diff --git a/docs/README.md b/docs/README.md index bccf051..8b929e1 100644 --- a/docs/README.md +++ b/docs/README.md @@ -1,5 +1,23 @@ # This branch contains a vectorized version of `tess-point`! +## To-DO list from Tyler +### We now have a complete pixel->radec & ra-dec->pixel transform for a given camera, sector, ccd +### This represents the 'guts' of the work being done, however, significant modifications remain. These include: +- For the pixel Row, Column it is reasonable to assume you know the camera/sector/ccd. However, for the RA, Dec case it is only reasonable to assume that you know the sector (if that?). Right now, the TESSPoint class needs a camera, sector, ccd - we need a parent-class that can take a generic ra, dec and check visibility across camera, ccd's (for a given sector), and then create the approporiate TESSPoint class from this information. We may (do we?) want the sector input to be optional, at which point it could do this across sectors as well. star_in_fov() is essentially the visibility check, see below. + +- We need to re-write tess_stars2px.py to call this module, and keeping options flagged as passed nad make sure they are all incorporated. E.G. Right now we're assuming combinedFits = False & args.noCollateral = False for our final ra,dec->pixel conversion, but stars2px has these as optional parameters. +- Right now our ra,dec->pixel converstion is approximately as accurate as the old version, but our pixel -> ra,dec appears to be significantly less accurate than the old version. (e.g. off by up to two pixels, vs \~1e-7 pixel). We strongly suspect, but have not strictly proven, that this is due to the replacement of the scipy.optimize step in tanth_of_r() in tess_stars2px.py with a homebrew grid-search in tesspoint.py. This accuracy needs to be increased to be comparable with tess_stars2px - we could either re-implement the scipy.optimize solution(which would have the downside of adding a dependency), or write a more sophisticated minimization funtion by hand. See mwe-test.ipynb for testing details. + + +- General cleanup and optimization: + - Right now I'm using a np.vectorize(star_in_fov) ir radec2pix because a: I'm lazy, but mostly b: its not clear that this check should be in the current TESSPoint class it currently is in. It should probably get moved to the futue, theoretical parent class described above and the check should happen there. Or maybe in both places depending on our speed vs redundancy cares. + - Rhere are sone functions or lines that may not need to exist. I'm looking at you, make_az_asym(), which I think does nothing. + - There are lots of unit-converting deg2rad variables (and vice-versa) that sould be replaced with actual units calls, but I was copying the legacy code and didn't think about it + - Similarily, variable names need a pass - re-used lots of the ones from the main b ranch which aren't bad but are also not the most descriptive if you don't have the math in front of you + - We need to do checks on speed & accuracy & make sure the speedup Christina demonstrated is maintained in this version. I've done some preliminary accuracy tests in mwe-test.ipynb + - There are a few inconsistencies with input/output - I patterned the radec->pix input off of Christina's pix-> ra,dec so it needs a Nx2 numpy array input, and I think that is the output for radec2pix, but I think Christina's pix2radec outputs a tuple or somethoing slightly different as I had to tweak the output when doinng the footpring tests. We should decide on our format and ensure consistancy. We should also write some smarter parsing code that will read what the user inputs and format it correctly/ give more options for input, especially in the case of only calculating a single point so that people can do (current) radec2pix([[a,b]])=radec2pix((a,b))=radec2pix(ra=a,dec=b) or whatever inputs we think are reasonable. + - We should codify some tests for accuracy & speed. One test for accuracy: we could use old tessplint to create a bunch of input/output files from footprints and then write some tests to try and reproduce them and look for overall deviation/variance across all cam/sect/ccd + This is an attempt to 1) make this tool faster by using Python niceties 2) make the API for this tool easier for Python users. Making the tool faster also means we can do calculations on the fly for updating interactive plots. This is a work in progress! Lots of documentation is missing. diff --git a/src/TESSPoint_test_against_files.ipynb b/src/TESSPoint_test_against_files.ipynb new file mode 100644 index 0000000..5c9508f --- /dev/null +++ b/src/TESSPoint_test_against_files.ipynb @@ -0,0 +1,436915 @@ +{ + "cells": [ + { + "cell_type": "markdown", + "id": "d153f808", + "metadata": {}, + "source": [ + "# In this notebook we will test the newest version of TESSPoint against the benchmark files created by a previous version of TESSPoint" + ] + }, + { + "cell_type": "code", + "execution_count": 391, + "id": "dc8dc865", + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "The autoreload extension is already loaded. To reload it, use:\n", + " %reload_ext autoreload\n" + ] + } + ], + "source": [ + "%load_ext autoreload\n", + "%autoreload 2\n", + "\n", + "from tesspoint import TESSPoint, footprint\n", + "\n", + "import numpy as np\n", + "import pandas as pd\n", + "import subprocess\n", + "from multiprocessing.pool import Pool\n", + "from itertools import product\n", + "\n", + "import matplotlib.pyplot as plt" + ] + }, + { + "cell_type": "code", + "execution_count": 392, + "id": "f0c48605", + "metadata": {}, + "outputs": [], + "source": [ + "dir_testfiles='/Users/tapritc2/tessgi/tesspoint/TESSPoint_CreateTestFiles/testfiles'\n", + "dir_testout='testout/'" + ] + }, + { + "cell_type": "code", + "execution_count": 393, + "id": "5e53082e", + "metadata": {}, + "outputs": [], + "source": [ + "\n", + "dir_testfiles='/Users/tapritc2/tessgi/tesspoint/TESSPoint_CreateTestFiles/testfiles'\n", + "dir_testout='testout/'\n", + "\n", + "fprfile=\"/Users/tapritc2/tessgi/tesspoint/TESSPoint_CreateTestFiles/footprint_input.dat\"\n", + "pixfile=dir_testfiles+\"/TEST_radec2pix_Sec{:02d}_Cam{}_CCD{}_stars2px.dat\".format(Sector,Camera,CCD)\n", + "wcsfile=dir_testfiles+\"/TEST_pix2radec_Sec{:02d}_Cam{}_CCD{}_stars2px.dat\".format(Sector,Camera,CCD)\n" + ] + }, + { + "cell_type": "code", + "execution_count": 394, + "id": "37a2aa39", + "metadata": {}, + "outputs": [], + "source": [ + "Camera_list=[1,2,3,4]\n", + "CCD_list=[1,2,3,4]\n", + "Sector_list = range(1,69)\n", + "inlist=list(product(Sector_list,Camera_list,CCD_list))" + ] + }, + { + "cell_type": "markdown", + "id": "76c70674", + "metadata": {}, + "source": [ + "## First, lets take the footprint file created in the testing repository, and compare pixel->ra, dec transform from tesspoint-vectorize vs the benchmark files created by tess_stars2px.py" + ] + }, + { + "cell_type": "code", + "execution_count": 395, + "id": "982ef32b", + "metadata": {}, + "outputs": [], + "source": [ + "def test_pix2radec_SectorCameraCCD(SectorCameraCCD):\n", + " Sector, Camera, CCD = SectorCameraCCD\n", + " \n", + " fprfile=\"/Users/tapritc2/tessgi/tesspoint/TESSPoint_CreateTestFiles/footprint_input.dat\"\n", + " footprint_df=pd.read_csv(fprfile,delimiter=' ',names=['tic','x','y'],index_col=False)\n", + "\n", + " pointing=TESSPoint(Sector,Camera,CCD)\n", + " \n", + " farr=np.array([footprint_df.x.to_numpy(),footprint_df.y.to_numpy()]).T\n", + " footprint_radec=pointing.pix2radec(farr)\n", + " \n", + " test_df = pd.DataFrame({'tic':footprint_df.tic.to_numpy(),\n", + " 'ra':footprint_radec[0],\n", + " 'dec':footprint_radec[1]})\n", + " test_df['index']=test_df['tic']\n", + " return test_df\n", + "\n", + "\n", + "def test_pix2radec_benchmark_SectorCameraCCD(SectorCameraCCD):\n", + " Sector, Camera, CCD = SectorCameraCCD\n", + "\n", + " dir_testfiles='/Users/tapritc2/tessgi/tesspoint/TESSPoint_CreateTestFiles/testfiles'\n", + " wcsfile=dir_testfiles+\"/TEST_pix2radec_Sec{:02d}_Cam{}_CCD{}_stars2px.dat\".format(Sector,Camera,CCD)\n", + "\n", + " test_df = test_pix2radec_SectorCameraCCD(SectorCameraCCD)\n", + " benchmark_df = pd.read_csv(wcsfile,delimiter=' ',names=['tic','ra','dec'],skiprows=1,index_col=False)\n", + " benchmark_df['index']=benchmark_df['tic']\n", + "\n", + " idx = test_df.index.intersection(benchmark_df.index)\n", + " dra = abs(test_df.loc[idx, 'ra'] - benchmark_df.loc[idx, 'ra'])\n", + " ddec= abs(test_df.loc[idx, 'dec'] - benchmark_df.loc[idx, 'dec'])\n", + " \n", + " return idx, dra, ddec, Sector, Camera, CCD\n" + ] + }, + { + "cell_type": "code", + "execution_count": 396, + "id": "25642cb8", + "metadata": {}, + "outputs": [ + { + "name": "stderr", + "output_type": "stream", + "text": [ + "DEBUG:root:fp_optics: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:fp_optics: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:fp_optics: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:fp_optics: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:fp_optics: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:fp_optics: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:fp_optics: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:fp_optics: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:fp_optics: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:fp_optics: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:cartToSphere: vec: [[ 0.25133563 0.50946768 -0.82296603]\n", + " [ 0.22645111 0.51996017 -0.82362693]\n", + " [ 0.20083545 0.53015952 -0.82376939]\n", + " [ 0.17459363 0.54001158 -0.82334959]\n", + " [ 0.14783066 0.54946613 -0.82233391]\n", + " [ 0.12065193 0.55847679 -0.82069896]\n", + " [ 0.09316358 0.56700125 -0.8184315 ]\n", + " [ 0.06547273 0.57500164 -0.81552832]\n", + " [ 0.25133563 0.50946768 -0.82296603]\n", + " [ 0.24548311 0.48773256 -0.83776786]\n", + " [ 0.23917658 0.46521407 -0.85227368]\n", + " [ 0.23244696 0.44198331 -0.86638281]\n", + " [ 0.22532477 0.4181159 -0.88000445]\n", + " [ 0.21784016 0.39369238 -0.89305765]\n", + " [ 0.2100234 0.36879841 -0.9054711 ]\n", + " [ 0.20190531 0.34352478 -0.91718317]\n", + " [ 0.06547273 0.57500164 -0.81552832]\n", + " [ 0.05764804 0.55318119 -0.83106394]\n", + " [ 0.04961458 0.53047047 -0.84625025]\n", + " [ 0.04140232 0.50693594 -0.86098885]\n", + " [ 0.03304146 0.4826491 -0.87519033]\n", + " [ 0.02456307 0.45768809 -0.88877346]\n", + " [ 0.01599938 0.43213878 -0.90166518]\n", + " [ 0.00738373 0.40609483 -0.91380111]\n", + " [ 0.20190531 0.34352478 -0.91718317]\n", + " [ 0.17558863 0.3530204 -0.91899142]\n", + " [ 0.14861067 0.36241179 -0.92009378]\n", + " [ 0.12107151 0.37164667 -0.92044578]\n", + " [ 0.09307268 0.38067632 -0.92001251]\n", + " [ 0.06471882 0.38945521 -0.9187688 ]\n", + " [ 0.03611847 0.39794098 -0.91669975]\n", + " [ 0.00738373 0.40609483 -0.91380111]\n", + " [ 0.2405628 0.51400183 -0.82336606]\n", + " [ 0.20955802 0.52667106 -0.82383435]\n", + " [ 0.17755937 0.53884586 -0.82347909]\n", + " [ 0.14476016 0.55043213 -0.82223413]\n", + " [ 0.11135446 0.56134453 -0.8200564 ]\n", + " [ 0.07753808 0.57150698 -0.81692571]\n", + " [ 0.24875751 0.50012796 -0.82945267]\n", + " [ 0.24127414 0.4729534 -0.84740892]\n", + " [ 0.23313975 0.44467223 -0.86481933]\n", + " [ 0.2244107 0.41542179 -0.88151266]\n", + " [ 0.21514256 0.38535035 -0.89733984]\n", + " [ 0.20539126 0.35461776 -0.9121736 ]\n", + " [ 0.06218403 0.56557488 -0.8223492 ]\n", + " [ 0.05245087 0.53822457 -0.84116777]\n", + " [ 0.04243372 0.50960265 -0.85936285]\n", + " [ 0.03218807 0.47983859 -0.87676614]\n", + " [ 0.02177114 0.44907637 -0.89322809]\n", + " [ 0.01124272 0.41747733 -0.90861778]\n", + " [ 0.19054723 0.34776151 -0.91801617]\n", + " [ 0.15783648 0.35933688 -0.91976337]\n", + " [ 0.12423179 0.37070317 -0.92040514]\n", + " [ 0.08991938 0.38176923 -0.91987323]\n", + " [ 0.05509196 0.39245123 -0.9181214 ]\n", + " [ 0.0199509 0.40267263 -0.91512661]\n", + " [ 0.25123269 0.50943108 -0.82302011]\n", + " [ 0.25123269 0.50943108 -0.82302011]\n", + " [ 0.00751161 0.40615735 -0.91377228]\n", + " [ 0.00751161 0.40615735 -0.91377228]\n", + " [ 0.23802713 0.50468337 -0.82984202]\n", + " [ 0.23038812 0.47745651 -0.84791308]\n", + " [ 0.22212137 0.44910968 -0.86542625]\n", + " [ 0.21328287 0.41977989 -0.88221044]\n", + " [ 0.20392768 0.38961525 -0.89811662]\n", + " [ 0.19411139 0.3587758 -0.91301736]\n", + " [ 0.20685552 0.51731917 -0.83041656]\n", + " [ 0.1987887 0.48997408 -0.84876879]\n", + " [ 0.19015995 0.46147325 -0.86653427]\n", + " [ 0.18102392 0.43195234 -0.88354259]\n", + " [ 0.17143442 0.40155889 -0.89964476]\n", + " [ 0.16144635 0.37045357 -0.91471265]\n", + " [ 0.17469657 0.5294754 -0.83014271]\n", + " [ 0.16622013 0.5020565 -0.84871087]\n", + " [ 0.15724676 0.47344916 -0.86667142]\n", + " [ 0.14783002 0.44378739 -0.88385465]\n", + " [ 0.13802309 0.41321795 -0.90011141]\n", + " [ 0.12788087 0.3819021 -0.91531266]\n", + " [ 0.14174311 0.54105783 -0.82895435]\n", + " [ 0.13287341 0.51360921 -0.84767343]\n", + " [ 0.12357082 0.48494278 -0.86577177]\n", + " [ 0.11388855 0.45519082 -0.88308024]\n", + " [ 0.10388006 0.42449924 -0.89944946]\n", + " [ 0.09360107 0.39302969 -0.91474942]\n", + " [ 0.10818887 0.55198079 -0.82680855]\n", + " [ 0.09894128 0.52454562 -0.84561369]\n", + " [ 0.08932422 0.49586701 -0.86379227]\n", + " [ 0.07939137 0.46607571 -0.8811756 ]\n", + " [ 0.06919738 0.43531674 -0.89761409]\n", + " [ 0.05879947 0.40375183 -0.91297704]\n", + " [ 0.07422974 0.56216777 -0.82368522]\n", + " [ 0.06462021 0.53478806 -0.8425117 ]\n", + " [ 0.05470437 0.50614335 -0.86071269]\n", + " [ 0.04453716 0.47636332 -0.87811983]\n", + " [ 0.03417505 0.4455922 -0.89458351]\n", + " [ 0.02367714 0.41399147 -0.90997278]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:fp_optics: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:cartToSphere: vec: [[ 0.17639465 0.85316031 -0.49091996]\n", + " [ 0.17706235 0.86618946 -0.46729515]\n", + " [ 0.17745517 0.87886641 -0.44283574]\n", + " [ 0.17758013 0.8910964 -0.41762723]\n", + " [ 0.17744269 0.90279549 -0.39175807]\n", + " [ 0.17704714 0.91389022 -0.36532037]\n", + " [ 0.1763971 0.9243173 -0.33841039]\n", + " [ 0.17549611 0.93402357 -0.31112874]\n", + " [ 0.17639465 0.85316031 -0.49091996]\n", + " [ 0.14990512 0.85596451 -0.49482644]\n", + " [ 0.122719 0.85826848 -0.49831242]\n", + " [ 0.09495002 0.86001595 -0.50135523]\n", + " [ 0.0667106 0.86116168 -0.50393477]\n", + " [ 0.03811271 0.86167125 -0.50603366]\n", + " [ 0.00926864 0.86152078 -0.5076377 ]\n", + " [-0.01970879 0.86069674 -0.50873636]\n", + " [ 0.17549611 0.93402357 -0.31112874]\n", + " [ 0.14798146 0.93796474 -0.31356599]\n", + " [ 0.11978265 0.94123498 -0.31579872]\n", + " [ 0.09100612 0.9437788 -0.31780412]\n", + " [ 0.06175916 0.94555042 -0.31956252]\n", + " [ 0.03215194 0.94651381 -0.3210574 ]\n", + " [ 0.00229841 0.94664313 -0.3222755 ]\n", + " [-0.02768398 0.94592326 -0.32320704]\n", + " [-0.01970879 0.86069674 -0.50873636]\n", + " [-0.02084093 0.87458197 -0.4844296 ]\n", + " [-0.02198486 0.88803536 -0.45924924]\n", + " [-0.02313459 0.90096515 -0.43327426]\n", + " [-0.02428453 0.9132886 -0.40658849]\n", + " [-0.02542941 0.9249315 -0.37928231]\n", + " [-0.02656418 0.93582839 -0.35145352]\n", + " [-0.02768398 0.94592326 -0.32320704]\n", + " [ 0.1766304 0.85888859 -0.4807412 ]\n", + " [ 0.17726185 0.87463381 -0.45121384]\n", + " [ 0.17748775 0.88975454 -0.42051749]\n", + " [ 0.1773188 0.90409178 -0.38881371]\n", + " [ 0.17676295 0.91751024 -0.35627212]\n", + " [ 0.1758268 0.92989762 -0.32307176]\n", + " [ 0.16494046 0.85448581 -0.49259379]\n", + " [ 0.13199077 0.85759487 -0.49710108]\n", + " [ 0.09810796 0.85989525 -0.50095407]\n", + " [ 0.06349949 0.86129912 -0.50411471]\n", + " [ 0.02837159 0.86174304 -0.50655106]\n", + " [-0.00706882 0.86118738 -0.50823846]\n", + " [ 0.16359413 0.93578842 -0.31230913]\n", + " [ 0.12939864 0.94017471 -0.31516268]\n", + " [ 0.09428129 0.94349708 -0.31768585]\n", + " [ 0.05843914 0.94566724 -0.31984112]\n", + " [ 0.0220751 0.94661891 -0.32159807]\n", + " [-0.01459955 0.94630896 -0.32293374]\n", + " [-0.02010096 0.86680154 -0.49824798]\n", + " [-0.02149625 0.88354096 -0.46786032]\n", + " [-0.02290343 0.89953952 -0.43623856]\n", + " [-0.02431205 0.91464121 -0.40353487]\n", + " [-0.02571241 0.92870943 -0.36991576]\n", + " [-0.0270953 0.94162756 -0.33556427]\n", + " [ 0.17630814 0.85321572 -0.49085473]\n", + " [ 0.17630814 0.85321572 -0.49085473]\n", + " [-0.02757757 0.94589407 -0.32330153]\n", + " [-0.02757757 0.94589407 -0.32330153]\n", + " [ 0.16521135 0.86020451 -0.48244525]\n", + " [ 0.13211779 0.86342715 -0.48686595]\n", + " [ 0.09809283 0.86581731 -0.49065078]\n", + " [ 0.06334304 0.86728746 -0.49376121]\n", + " [ 0.02807413 0.8677744 -0.49616472]\n", + " [-0.0075069 0.8672386 -0.49783617]\n", + " [ 0.16571488 0.87606911 -0.45281507]\n", + " [ 0.13226302 0.87958786 -0.45698106]\n", + " [ 0.09788344 0.88221261 -0.4605646 ]\n", + " [ 0.06277996 0.88385656 -0.4635259 ]\n", + " [ 0.02715704 0.88445683 -0.4658311 ]\n", + " [-0.00877774 0.88397385 -0.46745394]\n", + " [ 0.16583853 0.89129412 -0.42200993]\n", + " [ 0.13210014 0.89507219 -0.42590531]\n", + " [ 0.09743602 0.89790351 -0.42927322]\n", + " [ 0.06204742 0.89970158 -0.43207313]\n", + " [ 0.02613793 0.90040318 -0.43427056]\n", + " [-0.0100839 0.89996825 -0.43583881]\n", + " [ 0.16559238 0.90572092 -0.3901907 ]\n", + " [ 0.13163752 0.9097226 -0.39379735]\n", + " [ 0.09675788 0.91273327 -0.39693309]\n", + " [ 0.06115265 0.91466617 -0.39955745]\n", + " [ 0.02502494 0.91545731 -0.40163623]\n", + " [-0.01141561 0.91506576 -0.40314308]\n", + " [ 0.16498373 0.91921439 -0.35752662]\n", + " [ 0.13088095 0.9234041 -0.3608255 ]\n", + " [ 0.09585418 0.92656662 -0.36371181]\n", + " [ 0.06010122 0.92861456 -0.36614592]\n", + " [ 0.02382497 0.92948295 -0.36809485]\n", + " [-0.01276396 0.92912982 -0.36953329]\n", + " [ 0.16401867 0.93166209 -0.32419689]\n", + " [ 0.12983552 0.93600362 -0.32716962]\n", + " [ 0.09472978 0.93928949 -0.32979012]\n", + " [ 0.05889857 0.94143162 -0.33202028]\n", + " [ 0.02254477 0.94236404 -0.33382893]\n", + " [-0.01412041 0.94204387 -0.33519244]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:cartToSphere: vec: [[-0.22662385 0.21819831 -0.9492266 ]\n", + " [-0.20058972 0.21514607 -0.95575935]\n", + " [-0.173843 0.21201901 -0.96167903]\n", + " [-0.14649235 0.2088069 -0.96692279]\n", + " [-0.1186466 0.20550424 -0.97143759]\n", + " [-0.09041501 0.20211035 -0.97518026]\n", + " [-0.06190764 0.19862903 -0.97811755]\n", + " [-0.03323551 0.19506825 -0.98022639]\n", + " [-0.22662385 0.21819831 -0.9492266 ]\n", + " [-0.2248406 0.24440542 -0.94324583]\n", + " [-0.22270183 0.27098985 -0.93646591]\n", + " [-0.22022183 0.29782629 -0.92887127]\n", + " [-0.21741439 0.32479362 -0.92045645]\n", + " [-0.21429289 0.35177458 -0.91122621]\n", + " [-0.21087067 0.37865547 -0.90119565]\n", + " [-0.20716147 0.40532603 -0.89039033]\n", + " [-0.03323551 0.19506825 -0.98022639]\n", + " [-0.02956117 0.22214527 -0.97456535]\n", + " [-0.02578552 0.24959811 -0.96800614]\n", + " [-0.02192265 0.27730639 -0.9605314 ]\n", + " [-0.01798676 0.30515277 -0.95213353]\n", + " [-0.01399244 0.33302131 -0.94281548]\n", + " [-0.00995481 0.36079659 -0.9325914 ]\n", + " [-0.00588958 0.38836411 -0.92148719]\n", + " [-0.20716147 0.40532603 -0.89039033]\n", + " [-0.17992471 0.40398091 -0.89689828]\n", + " [-0.15200596 0.40228784 -0.902806 ]\n", + " [-0.12350882 0.40023555 -0.90805125]\n", + " [-0.09453832 0.3978171 -0.91258099]\n", + " [-0.06520279 0.39503004 -0.91635139]\n", + " [-0.03561454 0.39187667 -0.91932817]\n", + " [-0.00588958 0.38836411 -0.92148719]\n", + " [-0.21536152 0.21696511 -0.95212686]\n", + " [-0.18295989 0.21317652 -0.95972988]\n", + " [-0.14959588 0.20926465 -0.96634848]\n", + " [-0.11546977 0.20521742 -0.97188093]\n", + " [-0.08078274 0.20103352 -0.97624775]\n", + " [-0.04573782 0.19672171 -0.97939196]\n", + " [-0.22580285 0.22956021 -0.94673924]\n", + " [-0.22337526 0.2619506 -0.93887453]\n", + " [-0.22042806 0.29478277 -0.92979277]\n", + " [-0.21698689 0.32783198 -0.91947968]\n", + " [-0.21307639 0.36088234 -0.90794404]\n", + " [-0.20872129 0.39372594 -0.89521802]\n", + " [-0.03174545 0.20683216 -0.97786128]\n", + " [-0.02717326 0.24028605 -0.97032171]\n", + " [-0.02246272 0.27418436 -0.96141477]\n", + " [-0.0176399 0.30830993 -0.9511224 ]\n", + " [-0.01273167 0.34244919 -0.93945008]\n", + " [-0.00776612 0.37638999 -0.92642877]\n", + " [-0.19538985 0.40469036 -0.89333561]\n", + " [-0.16153694 0.40280854 -0.90091681]\n", + " [-0.1267625 0.40039259 -0.90753349]\n", + " [-0.09125922 0.39742793 -0.91308422]\n", + " [-0.05522658 0.39391011 -0.91748834]\n", + " [-0.01887294 0.38984534 -0.92068693]\n", + " [-0.22653068 0.21827682 -0.94923078]\n", + " [-0.22653068 0.21827682 -0.94923078]\n", + " [-0.00600526 0.38828293 -0.92152065]\n", + " [-0.00600526 0.38828293 -0.92152065]\n", + " [-0.21457878 0.22829891 -0.94965023]\n", + " [-0.21201193 0.26082992 -0.9418167 ]\n", + " [-0.20894962 0.29379965 -0.9327496 ]\n", + " [-0.20541718 0.32698376 -0.9224345 ]\n", + " [-0.20143879 0.36016657 -0.91088004]\n", + " [-0.19703878 0.39313995 -0.89811842]\n", + " [-0.18202362 0.22463361 -0.95729157]\n", + " [-0.17906823 0.25750898 -0.94953867]\n", + " [-0.17568569 0.29081688 -0.94051054]\n", + " [-0.17190026 0.32433456 -0.93019213]\n", + " [-0.16773495 0.35784693 -0.91859162]\n", + " [-0.16321329 0.39114503 -0.90574113]\n", + " [-0.1485089 0.22081607 -0.96394262]\n", + " [-0.1451726 0.25395598 -0.956259 ]\n", + " [-0.14147674 0.28752607 -0.94726611]\n", + " [-0.13744476 0.32130538 -0.93694813]\n", + " [-0.13309916 0.3550793 -0.92531254]\n", + " [-0.12846332 0.38863783 -0.91239126]\n", + " [-0.11423443 0.2168344 -0.96950159]\n", + " [-0.11052312 0.25015967 -0.96187566]\n", + " [-0.10651889 0.28391629 -0.95291409]\n", + " [-0.1022451 0.3178849 -0.94260019]\n", + " [-0.09772465 0.35185129 -0.93094069]\n", + " [-0.0929816 0.38560437 -0.91796715]\n", + " [-0.07940111 0.21268765 -0.97388882]\n", + " [-0.07531988 0.24611997 -0.96630838]\n", + " [-0.07101164 0.27998767 -0.95737362]\n", + " [-0.06650049 0.31407267 -0.94706707]\n", + " [-0.06181061 0.34816105 -0.93539475]\n", + " [-0.05696749 0.38204093 -0.9223879 ]\n", + " [-0.04421214 0.20838494 -0.97704708]\n", + " [-0.03976676 0.24184679 -0.96949922]\n", + " [-0.03515991 0.27575035 -0.96058603]\n", + " [-0.03041708 0.30987833 -0.95028955]\n", + " [-0.02556438 0.34401705 -0.93861533]\n", + " [-0.0206292 0.37795434 -0.92559438]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:fp_optics: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:fp_optics: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:cartToSphere: vec: [[-0.25092159 -0.1939714 -0.94837411]\n", + " [-0.23405939 -0.17449131 -0.95643556]\n", + " [-0.21678721 -0.15436783 -0.96393666]\n", + " [-0.19915792 -0.13369292 -0.97080499]\n", + " [-0.18122793 -0.11255551 -0.97697886]\n", + " [-0.16305751 -0.09104283 -0.98240697]\n", + " [-0.1447107 -0.06924149 -0.98704834]\n", + " [-0.12625498 -0.04723799 -0.99087247]\n", + " [-0.25092159 -0.1939714 -0.94837411]\n", + " [-0.27240555 -0.17797928 -0.94557844]\n", + " [-0.29406488 -0.16138499 -0.94206196]\n", + " [-0.31580165 -0.14426737 -0.93779328]\n", + " [-0.33752122 -0.12670202 -0.93275186]\n", + " [-0.35913147 -0.10876257 -0.92692788]\n", + " [-0.3805426 -0.09052189 -0.92032229]\n", + " [-0.40166737 -0.07205268 -0.91294673]\n", + " [-0.12625498 -0.04723799 -0.99087247]\n", + " [-0.1474476 -0.02922348 -0.98863805]\n", + " [-0.16895574 -0.01081301 -0.98556432]\n", + " [-0.19068662 0.0079207 -0.98161901]\n", + " [-0.21254887 0.02690463 -0.97677997]\n", + " [-0.23445151 0.0460645 -0.97103581]\n", + " [-0.25630387 0.06532464 -0.96438634]\n", + " [-0.27801617 0.08460831 -0.95684296]\n", + " [-0.40166737 -0.07205268 -0.91294673]\n", + " [-0.38561007 -0.05064763 -0.92127069]\n", + " [-0.36892703 -0.02877341 -0.92901288]\n", + " [-0.35166751 -0.00651529 -0.9361023 ]\n", + " [-0.33388515 0.01604066 -0.94247727]\n", + " [-0.3156388 0.03880659 -0.94808554]\n", + " [-0.2969927 0.0616928 -0.95288474]\n", + " [-0.27801617 0.08460831 -0.95684296]\n", + " [-0.24369641 -0.18550902 -0.95194457]\n", + " [-0.22274806 -0.16118812 -0.96145811]\n", + " [-0.20123587 -0.13599271 -0.97005675]\n", + " [-0.17926223 -0.1100877 -0.9776225 ]\n", + " [-0.15693808 -0.0836338 -0.98406089]\n", + " [-0.13438276 -0.0567904 -0.98930083]\n", + " [-0.26020389 -0.18701204 -0.94726999]\n", + " [-0.2866655 -0.16699537 -0.94336389]\n", + " [-0.31329292 -0.14615314 -0.93834258]\n", + " [-0.33991057 -0.12462575 -0.93216373]\n", + " [-0.36634886 -0.10254894 -0.92480929]\n", + " [-0.39244351 -0.08005674 -0.91628544]\n", + " [-0.13551367 -0.03951278 -0.98998727]\n", + " [-0.161712 -0.01715947 -0.9866888 ]\n", + " [-0.18829172 0.00571644 -0.98209651]\n", + " [-0.21508411 0.0289807 -0.97616543]\n", + " [-0.24192166 0.0524966 -0.96887461]\n", + " [-0.26863779 0.07612432 -0.96022853]\n", + " [-0.39467435 -0.06284689 -0.9166692 ]\n", + " [-0.374567 -0.03628723 -0.9264895 ]\n", + " [-0.35356843 -0.00910745 -0.93536432]\n", + " [-0.3317755 0.01853439 -0.94317628]\n", + " [-0.30929659 0.0464766 -0.94982922]\n", + " [-0.28625209 0.07455345 -0.95524946]\n", + " [-0.25093774 -0.19385242 -0.94839416]\n", + " [-0.25093774 -0.19385242 -0.94839416]\n", + " [-0.27800763 0.0844641 -0.95685818]\n", + " [-0.27800763 0.0844641 -0.95685818]\n", + " [-0.25297518 -0.17859641 -0.95084535]\n", + " [-0.27947973 -0.15839035 -0.94699714]\n", + " [-0.30616121 -0.13737992 -0.9420149 ]\n", + " [-0.33284442 -0.11570408 -0.93585638]\n", + " [-0.3593597 -0.09349766 -0.92850352]\n", + " [-0.38554235 -0.07089449 -0.91996253]\n", + " [-0.23204719 -0.15408407 -0.96042293]\n", + " [-0.2586311 -0.13337686 -0.95672387]\n", + " [-0.28542552 -0.11192254 -0.95184327]\n", + " [-0.31225629 -0.08985656 -0.94573876]\n", + " [-0.33895355 -0.06731214 -0.93839201]\n", + " [-0.36535143 -0.04442309 -0.92980908]\n", + " [-0.21053253 -0.12871538 -0.96907606]\n", + " [-0.23713286 -0.10755559 -0.96550495]\n", + " [-0.26397991 -0.08570253 -0.96071311]\n", + " [-0.29090065 -0.06328949 -0.95465766]\n", + " [-0.31772521 -0.04044927 -0.94731967]\n", + " [-0.34428672 -0.01731658 -0.93870485]\n", + " [-0.18853359 -0.10265377 -0.97668689]\n", + " [-0.21508719 -0.08108649 -0.97322273]\n", + " [-0.24192591 -0.05887762 -0.96850673]\n", + " [-0.26887792 -0.03615963 -0.96249527]\n", + " [-0.29577363 -0.01306592 -0.9551687 ]\n", + " [-0.32244562 0.0102674 -0.9465323 ]\n", + " [-0.16616158 -0.07605916 -0.98316089]\n", + " [-0.19260576 -0.05412802 -0.97978221]\n", + " [-0.21937512 -0.03160596 -0.97512851]\n", + " [-0.24629916 -0.00862572 -0.96915547]\n", + " [-0.27320893 0.01467806 -0.96184273]\n", + " [-0.29993699 0.03816762 -0.95319517]\n", + " [-0.14353627 -0.04909082 -0.98842674]\n", + " [-0.16980942 -0.02683971 -0.98511136]\n", + " [-0.19644909 -0.00404816 -0.98050567]\n", + " [-0.22328613 0.01915008 -0.97456482]\n", + " [-0.2501526 0.04261883 -0.96726796]\n", + " [-0.27688159 0.06621878 -0.95861966]]\n", + "DEBUG:root:cartToSphere: vec: [[-0.58931095 0.78491539 -0.19136467]\n", + " [-0.59884478 0.7834413 -0.16614651]\n", + " [-0.60823127 0.78125683 -0.14032995]\n", + " [-0.61740018 0.77834353 -0.11401037]\n", + " [-0.62628581 0.77469158 -0.08728717]\n", + " [-0.63482928 0.77029881 -0.06026218]\n", + " [-0.64297959 0.76517035 -0.033039 ]\n", + " [-0.6506939 0.75931857 -0.0057227 ]\n", + " [-0.58931095 0.78491539 -0.19136467]\n", + " [-0.60749459 0.76818161 -0.20210724]\n", + " [-0.62567139 0.7505022 -0.21279509]\n", + " [-0.64373676 0.73191703 -0.2233841 ]\n", + " [-0.66158981 0.71247568 -0.23383185]\n", + " [-0.67913616 0.692236 -0.24409711]\n", + " [-0.69628907 0.67126349 -0.25413945]\n", + " [-0.71296983 0.64963114 -0.26391932]\n", + " [-0.6506939 0.75931857 -0.0057227 ]\n", + " [-0.67035893 0.74188246 -0.01514332]\n", + " [-0.68988991 0.72349136 -0.02474206]\n", + " [-0.70917655 0.70418734 -0.03447926]\n", + " [-0.72811738 0.68401839 -0.0443162 ]\n", + " [-0.74661818 0.66304005 -0.05421426]\n", + " [-0.7645907 0.64131728 -0.06413427]\n", + " [-0.78195265 0.61892543 -0.07403626]\n", + " [-0.71296983 0.64963114 -0.26391932]\n", + " [-0.72423915 0.64702539 -0.23840258]\n", + " [-0.73515082 0.64384006 -0.21218682]\n", + " [-0.74562838 0.64006021 -0.18536786]\n", + " [-0.75560393 0.63567717 -0.1580419 ]\n", + " [-0.76501725 0.63068887 -0.13030793]\n", + " [-0.77381533 0.62510058 -0.1022697 ]\n", + " [-0.78195265 0.61892543 -0.07403626]\n", + " [-0.59354386 0.78430268 -0.18048546]\n", + " [-0.60513972 0.78202062 -0.14916326]\n", + " [-0.61644398 0.77865224 -0.11703634]\n", + " [-0.62733362 0.77417593 -0.08428618]\n", + " [-0.63770035 0.76858769 -0.05110015]\n", + " [-0.64745366 0.76189995 -0.01766963]\n", + " [-0.59726648 0.7777337 -0.19596697]\n", + " [-0.61956236 0.75658381 -0.20910146]\n", + " [-0.64174372 0.73405192 -0.22210984]\n", + " [-0.66362307 0.7102254 -0.23491339]\n", + " [-0.6850268 0.68521067 -0.24743611]\n", + " [-0.70579851 0.65913143 -0.25960396]\n", + " [-0.65925124 0.75185757 -0.00989946]\n", + " [-0.68327671 0.72984082 -0.02157118]\n", + " [-0.70699028 0.70643078 -0.03347073]\n", + " [-0.73020154 0.68171332 -0.04552646]\n", + " [-0.75273685 0.65579091 -0.05766721]\n", + " [-0.77443621 0.62878745 -0.06982048]\n", + " [-0.71786561 0.64864038 -0.25285297]\n", + " [-0.73144632 0.64505995 -0.22109713]\n", + " [-0.74441299 0.6405933 -0.18838663]\n", + " [-0.75663709 0.63522185 -0.15489837]\n", + " [-0.76800772 0.62894191 -0.12081479]\n", + " [-0.77843036 0.6217664 -0.08632917]\n", + " [-0.5894058 0.78485595 -0.19131633]\n", + " [-0.5894058 0.78485595 -0.19131633]\n", + " [-0.78186775 0.61902514 -0.07409922]\n", + " [-0.78186775 0.61902514 -0.07409922]\n", + " [-0.6014678 0.77715569 -0.18510946]\n", + " [-0.62393434 0.75592992 -0.19818148]\n", + " [-0.64627053 0.73331509 -0.21114777]\n", + " [-0.66828689 0.70939959 -0.22393048]\n", + " [-0.68980913 0.68429009 -0.23645389]\n", + " [-0.71068068 0.65811038 -0.24864373]\n", + " [-0.61322891 0.77480684 -0.15370318]\n", + " [-0.6361373 0.75338016 -0.1665763 ]\n", + " [-0.65887053 0.73055032 -0.17940419]\n", + " [-0.68123616 0.70640696 -0.19211063]\n", + " [-0.70305952 0.68105652 -0.20461996]\n", + " [-0.72418385 0.65462266 -0.21685691]\n", + " [-0.62467476 0.77137787 -0.12148096]\n", + " [-0.64795781 0.74977397 -0.13412558]\n", + " [-0.67102409 0.72675996 -0.1467877 ]\n", + " [-0.69368091 0.70242509 -0.15939195]\n", + " [-0.71575423 0.67687454 -0.17186255]\n", + " [-0.73708705 0.65023171 -0.18412332]\n", + " [-0.63568033 0.76684816 -0.08862516]\n", + " [-0.65926786 0.74509216 -0.10101269]\n", + " [-0.68260263 0.72192502 -0.11348092]\n", + " [-0.70549288 0.69743463 -0.12595531]\n", + " [-0.72776522 0.67172476 -0.13836051]\n", + " [-0.74926199 0.64491862 -0.1506202 ]\n", + " [-0.64613671 0.76121394 -0.05532346]\n", + " [-0.66995806 0.73933079 -0.0674254 ]\n", + " [-0.69349719 0.71604065 -0.07967086]\n", + " [-0.71656329 0.69143008 -0.09198639]\n", + " [-0.7389832 0.6656018 -0.10429801]\n", + " [-0.76059822 0.63867912 -0.11653039]\n", + " [-0.65595325 0.75448758 -0.02176755]\n", + " [-0.67993792 0.73250147 -0.03355616]\n", + " [-0.70361735 0.70911759 -0.04555063]\n", + " [-0.72680115 0.68442183 -0.05767886]\n", + " [-0.74931587 0.65851656 -0.06986889]\n", + " [-0.77100179 0.6315255 -0.08204738]]\n", + "DEBUG:root:cartToSphere: vec: [[ 0.46422409 -0.48431072 -0.7415788 ]\n", + " [ 0.47204697 -0.50314825 -0.72388777]\n", + " [ 0.47979911 -0.52191881 -0.70526135]\n", + " [ 0.48742127 -0.54052943 -0.68574663]\n", + " [ 0.49485752 -0.55889074 -0.66540001]\n", + " [ 0.50205756 -0.57691791 -0.6442856 ]\n", + " [ 0.50897775 -0.59453096 -0.62247457]\n", + " [ 0.51558141 -0.61165508 -0.60004489]\n", + " [ 0.46422409 -0.48431072 -0.7415788 ]\n", + " [ 0.48563315 -0.46831544 -0.73813352]\n", + " [ 0.50718721 -0.4517251 -0.73396564]\n", + " [ 0.52877365 -0.43458115 -0.72906628]\n", + " [ 0.55028206 -0.41693092 -0.72343504]\n", + " [ 0.57160711 -0.39882748 -0.71707876]\n", + " [ 0.5926498 -0.3803297 -0.71001093]\n", + " [ 0.61331788 -0.36150216 -0.70225164]\n", + " [ 0.51558141 -0.61165508 -0.60004489]\n", + " [ 0.53846911 -0.59639004 -0.59528979]\n", + " [ 0.56139482 -0.5803342 -0.58995599]\n", + " [ 0.58424028 -0.56352629 -0.58403889]\n", + " [ 0.60689499 -0.5460098 -0.57753941]\n", + " [ 0.62925438 -0.52783438 -0.57046454]\n", + " [ 0.65121815 -0.5090574 -0.56282811]\n", + " [ 0.67269008 -0.48974473 -0.55465139]\n", + " [ 0.61331788 -0.36150216 -0.70225164]\n", + " [ 0.62301304 -0.3800833 -0.68366032]\n", + " [ 0.63240187 -0.3987233 -0.66414426]\n", + " [ 0.64141845 -0.41733025 -0.64375293]\n", + " [ 0.65000427 -0.43581748 -0.62254123]\n", + " [ 0.65810748 -0.45410207 -0.60057128]\n", + " [ 0.66568247 -0.4721037 -0.5779143 ]\n", + " [ 0.67269008 -0.48974473 -0.55465139]\n", + " [ 0.46771312 -0.49247261 -0.73397218]\n", + " [ 0.47726212 -0.51552706 -0.71165491]\n", + " [ 0.48664564 -0.5383883 -0.68797824]\n", + " [ 0.49575913 -0.56089022 -0.66304227]\n", + " [ 0.5045101 -0.58287666 -0.63696495]\n", + " [ 0.51282112 -0.60420254 -0.60988014]\n", + " [ 0.47356085 -0.4774768 -0.74010541]\n", + " [ 0.49991287 -0.45746808 -0.7353979 ]\n", + " [ 0.52637068 -0.43660591 -0.72959522]\n", + " [ 0.55272985 -0.41497499 -0.72269321]\n", + " [ 0.57879661 -0.39267303 -0.7147044 ]\n", + " [ 0.6043915 -0.36981079 -0.70565636]\n", + " [ 0.52552583 -0.60504113 -0.59812026]\n", + " [ 0.55361771 -0.58579522 -0.59190488]\n", + " [ 0.58164831 -0.56539961 -0.58481495]\n", + " [ 0.60941105 -0.54393235 -0.57684987]\n", + " [ 0.63671319 -0.52148503 -0.56802261]\n", + " [ 0.66337174 -0.49816681 -0.55836168]\n", + " [ 0.61750789 -0.36965533 -0.69429024]\n", + " [ 0.6291923 -0.39248051 -0.67087711]\n", + " [ 0.64035038 -0.415302 -0.64612355]\n", + " [ 0.65087136 -0.43795816 -0.62012831]\n", + " [ 0.66065977 -0.46029616 -0.593006 ]\n", + " [ 0.66963426 -0.48216922 -0.56489185]\n", + " [ 0.46432374 -0.4843215 -0.74150937]\n", + " [ 0.46432374 -0.4843215 -0.74150937]\n", + " [ 0.67259464 -0.48975197 -0.55476072]\n", + " [ 0.67259464 -0.48975197 -0.55476072]\n", + " [ 0.47701464 -0.48564103 -0.73253657]\n", + " [ 0.50354259 -0.46565477 -0.72774343]\n", + " [ 0.53016336 -0.444793 -0.72186286]\n", + " [ 0.55667046 -0.42314009 -0.71489192]\n", + " [ 0.58286947 -0.40079364 -0.70684343]\n", + " [ 0.60858067 -0.3778646 -0.69774488]\n", + " [ 0.4867312 -0.5087388 -0.71012504]\n", + " [ 0.51371271 -0.48883465 -0.70508151]\n", + " [ 0.5407496 -0.46799435 -0.69897865]\n", + " [ 0.56763237 -0.44630149 -0.69181535]\n", + " [ 0.59416626 -0.42385337 -0.68360425]\n", + " [ 0.62017133 -0.40076155 -0.67437208]\n", + " [ 0.49625717 -0.53165174 -0.68634922]\n", + " [ 0.52362014 -0.51185593 -0.68104733]\n", + " [ 0.55100316 -0.49106708 -0.67472116]\n", + " [ 0.57819662 -0.46936779 -0.66736987]\n", + " [ 0.60500659 -0.44685479 -0.65900518]\n", + " [ 0.63125287 -0.42364003 -0.64965294]\n", + " [ 0.50548598 -0.55421343 -0.66131037]\n", + " [ 0.53315516 -0.53455195 -0.65574369]\n", + " [ 0.5608137 -0.51384504 -0.64919279]\n", + " [ 0.58825314 -0.49217399 -0.64165645]\n", + " [ 0.61528045 -0.46963435 -0.63314575]\n", + " [ 0.64171482 -0.44633795 -0.62368624]\n", + " [ 0.51432446 -0.57626756 -0.63512679]\n", + " [ 0.54222423 -0.55676612 -0.62928878]\n", + " [ 0.57008816 -0.53617171 -0.62251055]\n", + " [ 0.59770905 -0.51456409 -0.61479077]\n", + " [ 0.62489435 -0.49203715 -0.60614066]\n", + " [ 0.65146228 -0.46870191 -0.59658648]\n", + " [ 0.5226951 -0.59766874 -0.60793249]\n", + " [ 0.55075013 -0.57835203 -0.6018166 ]\n", + " [ 0.57874961 -0.5578996 -0.59480831]\n", + " [ 0.60648694 -0.53638987 -0.58690672]\n", + " [ 0.63376952 -0.51391497 -0.57812421]\n", + " [ 0.6604146 -0.4905846 -0.56848861]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:cartToSphere: vec: [[-9.10220713e-02 -2.42479917e-01 -9.65877048e-01]\n", + " [-8.86454355e-02 -2.68517140e-01 -9.59187433e-01]\n", + " [-8.59954720e-02 -2.94886764e-01 -9.51654651e-01]\n", + " [-8.30963081e-02 -3.21463641e-01 -9.43268854e-01]\n", + " [-7.99693311e-02 -3.48127603e-01 -9.34030020e-01]\n", + " [-7.66335805e-02 -3.74762739e-01 -9.23948150e-01]\n", + " [-7.31063521e-02 -4.01256891e-01 -9.13043465e-01]\n", + " [-6.94037692e-02 -4.27501580e-01 -9.01346502e-01]\n", + " [-9.10220713e-02 -2.42479917e-01 -9.65877048e-01]\n", + " [-6.46570151e-02 -2.38078600e-01 -9.69091353e-01]\n", + " [-3.76439556e-02 -2.33554012e-01 -9.71614870e-01]\n", + " [-1.01015217e-02 -2.28899481e-01 -9.73397651e-01]\n", + " [ 1.78542425e-02 -2.24113735e-01 -9.74399436e-01]\n", + " [ 4.61089838e-02 -2.19200762e-01 -9.74589651e-01]\n", + " [ 7.45492664e-02 -2.14169422e-01 -9.73947568e-01]\n", + " [ 1.03062228e-01 -2.09032955e-01 -9.72462545e-01]\n", + " [-6.94037692e-02 -4.27501580e-01 -9.01346502e-01]\n", + " [-4.17924820e-02 -4.24800824e-01 -9.04321651e-01]\n", + " [-1.35799868e-02 -4.21706355e-01 -9.06630759e-01]\n", + " [ 1.51224029e-02 -4.18211182e-01 -9.08223937e-01]\n", + " [ 4.42036140e-02 -4.14312677e-01 -9.09060529e-01]\n", + " [ 7.35508388e-02 -4.10012906e-01 -9.09109285e-01]\n", + " [ 1.03048671e-01 -4.05318923e-01 -9.08348800e-01]\n", + " [ 1.32579425e-01 -4.00242941e-01 -9.06768043e-01]\n", + " [ 1.03062228e-01 -2.09032955e-01 -9.72462545e-01]\n", + " [ 1.07370714e-01 -2.35908334e-01 -9.65825444e-01]\n", + " [ 1.11683954e-01 -2.63125007e-01 -9.58275495e-01]\n", + " [ 1.15979548e-01 -2.90564455e-01 -9.49800527e-01]\n", + " [ 1.20236436e-01 -3.18110694e-01 -9.40398206e-01]\n", + " [ 1.24434593e-01 -3.45648687e-01 -9.30076888e-01]\n", + " [ 1.28554941e-01 -3.73063896e-01 -9.18856331e-01]\n", + " [ 1.32579425e-01 -4.00242941e-01 -9.06768043e-01]\n", + " [-8.99317257e-02 -2.53768691e-01 -9.63075146e-01]\n", + " [-8.68306869e-02 -2.85920698e-01 -9.54311158e-01]\n", + " [-8.33435717e-02 -3.18447047e-01 -9.44269732e-01]\n", + " [-7.95108852e-02 -3.51124484e-01 -9.32946738e-01]\n", + " [-7.53677448e-02 -3.83739559e-01 -9.20360611e-01]\n", + " [-7.09454810e-02 -4.16087310e-01 -9.06552861e-01]\n", + " [-7.96060924e-02 -2.40664160e-01 -9.67338427e-01]\n", + " [-4.68408002e-02 -2.35189127e-01 -9.70820279e-01]\n", + " [-1.32203981e-02 -2.29521504e-01 -9.73213800e-01]\n", + " [ 2.10404446e-02 -2.23656699e-01 -9.74440855e-01]\n", + " [ 5.57311210e-02 -2.17602015e-01 -9.74445178e-01]\n", + " [ 9.06430336e-02 -2.11375605e-01 -9.73192784e-01]\n", + " [-5.74592874e-02 -4.26282264e-01 -9.02763458e-01]\n", + " [-2.32005659e-02 -4.22707637e-01 -9.05969087e-01]\n", + " [ 1.18504651e-02 -4.18534394e-01 -9.08123630e-01]\n", + " [ 4.74893492e-02 -4.13755876e-01 -9.09148413e-01]\n", + " [ 8.35083123e-02 -4.08375925e-01 -9.08985955e-01]\n", + " [ 1.19693893e-01 -4.02409678e-01 -9.07601137e-01]\n", + " [ 1.04840767e-01 -2.20718766e-01 -9.69686362e-01]\n", + " [ 1.10126388e-01 -2.53902052e-01 -9.60940127e-01]\n", + " [ 1.15396909e-01 -2.87479789e-01 -9.50809615e-01]\n", + " [ 1.20613026e-01 -3.21237516e-01 -9.39286408e-01]\n", + " [ 1.25737875e-01 -3.54963400e-01 -9.26385973e-01]\n", + " [ 1.30736750e-01 -3.88446996e-01 -9.12149568e-01]\n", + " [-9.09255180e-02 -2.42553393e-01 -9.65867694e-01]\n", + " [-9.09255180e-02 -2.42553393e-01 -9.65867694e-01]\n", + " [ 1.32464940e-01 -4.00168518e-01 -9.06817620e-01]\n", + " [ 1.32464940e-01 -4.00168518e-01 -9.06817620e-01]\n", + " [-7.85534958e-02 -2.51929111e-01 -9.64552265e-01]\n", + " [-4.56260639e-02 -2.46574852e-01 -9.68049123e-01]\n", + " [-1.18493904e-02 -2.40998771e-01 -9.70453082e-01]\n", + " [ 2.25628288e-02 -2.35196723e-01 -9.71685865e-01]\n", + " [ 5.74005540e-02 -2.29176512e-01 -9.71690950e-01]\n", + " [ 9.24551508e-02 -2.22956740e-01 -9.70434097e-01]\n", + " [-7.53044284e-02 -2.84219676e-01 -9.55797269e-01]\n", + " [-4.19692833e-02 -2.79203486e-01 -9.59314335e-01]\n", + " [-7.79958560e-03 -2.73885632e-01 -9.61730642e-01]\n", + " [ 2.69938510e-02 -2.68263035e-01 -9.62967432e-01]\n", + " [ 6.22023413e-02 -2.62344503e-01 -9.62967409e-01]\n", + " [ 9.76167386e-02 -2.56149505e-01 -9.61695588e-01]\n", + " [-7.16963444e-02 -3.16882060e-01 -9.45751233e-01]\n", + " [-3.80284222e-02 -3.12200027e-01 -9.49254962e-01]\n", + " [-3.53790961e-03 -3.07141061e-01 -9.51657424e-01]\n", + " [ 3.15669959e-02 -3.01702469e-01 -9.52879397e-01]\n", + " [ 6.70784652e-02 -2.95893194e-01 -9.52862895e-01]\n", + " [ 1.02786353e-01 -2.89732806e-01 -9.51572313e-01]\n", + " [-6.77690231e-02 -3.49693716e-01 -9.34409795e-01]\n", + " [-3.38413006e-02 -3.45344028e-01 -9.37865805e-01]\n", + " [ 8.99088032e-04 -3.40546583e-01 -9.40227215e-01]\n", + " [ 3.62459513e-02 -3.35298208e-01 -9.41414543e-01]\n", + " [ 7.19918261e-02 -3.29607046e-01 -9.41369413e-01]\n", + " [ 1.07925345e-01 -3.23491977e-01 -9.40055882e-01]\n", + " [-6.35568922e-02 -3.82441471e-01 -9.21791214e-01]\n", + " [-2.94407954e-02 -3.78422888e-01 -9.25164503e-01]\n", + " [ 5.47915721e-03 -3.73889870e-01 -9.27456923e-01]\n", + " [ 4.09980295e-02 -3.68838013e-01 -9.28589081e-01]\n", + " [ 7.69083585e-02 -3.63273901e-01 -9.28502653e-01]\n", + " [ 1.12997635e-01 -3.57215070e-01 -9.27161759e-01]\n", + " [-5.90908173e-02 -4.14920113e-01 -9.07936989e-01]\n", + " [-2.48568952e-02 -4.11230353e-01 -9.11192478e-01]\n", + " [ 1.01723719e-02 -4.06963303e-01 -9.13387865e-01]\n", + " [ 4.57925333e-02 -4.02112912e-01 -9.14444230e-01]\n", + " [ 8.17959152e-02 -3.96683758e-01 -9.14303792e-01]\n", + " [ 1.17969216e-01 -3.90691634e-01 -9.12931165e-01]]\n", + "DEBUG:root:cartToSphere: vec: [[ 0.3207565 0.79063018 -0.52155459]\n", + " [ 0.30213554 0.7853155 -0.5403644 ]\n", + " [ 0.28300268 0.77920706 -0.55923684]\n", + " [ 0.26341751 0.77230816 -0.57805823]\n", + " [ 0.2434434 0.76462742 -0.59672458]\n", + " [ 0.22314781 0.7561794 -0.61514044]\n", + " [ 0.20260245 0.74698531 -0.63321813]\n", + " [ 0.18188292 0.73707346 -0.65087734]\n", + " [ 0.3207565 0.79063018 -0.52155459]\n", + " [ 0.34001341 0.77522471 -0.53236973]\n", + " [ 0.35933543 0.75886715 -0.54313783]\n", + " [ 0.37863326 0.74159967 -0.55377503]\n", + " [ 0.39782094 0.72346973 -0.56420745]\n", + " [ 0.4168154 0.70453098 -0.5743701 ]\n", + " [ 0.43553632 0.68484407 -0.58420605]\n", + " [ 0.45390642 0.66447703 -0.59366593]\n", + " [ 0.18188292 0.73707346 -0.65087734]\n", + " [ 0.20063938 0.72074235 -0.66353169]\n", + " [ 0.21961834 0.70349587 -0.67591519]\n", + " [ 0.23873481 0.68537079 -0.68794809]\n", + " [ 0.25790571 0.66641129 -0.69955746]\n", + " [ 0.27704907 0.64667014 -0.71067682]\n", + " [ 0.29608401 0.62620919 -0.72124636]\n", + " [ 0.31493118 0.60509932 -0.73121349]\n", + " [ 0.45390642 0.66447703 -0.59366593]\n", + " [ 0.4358682 0.65795515 -0.61409603]\n", + " [ 0.41712374 0.65076746 -0.63443636]\n", + " [ 0.39772835 0.6429142 -0.65457886]\n", + " [ 0.3777423 0.6344024 -0.67442149]\n", + " [ 0.35723167 0.62524651 -0.69386766]\n", + " [ 0.33626866 0.61546877 -0.71282647]\n", + " [ 0.31493118 0.60509932 -0.73121349]\n", + " [ 0.31276998 0.78835929 -0.52977784]\n", + " [ 0.28959653 0.78131094 -0.55288973]\n", + " [ 0.26571286 0.77307312 -0.57598145]\n", + " [ 0.24123399 0.76365943 -0.59885761]\n", + " [ 0.21628419 0.75309676 -0.62134243]\n", + " [ 0.19099707 0.7414271 -0.64327752]\n", + " [ 0.329076 0.78401583 -0.52633465]\n", + " [ 0.35273275 0.76448875 -0.53957071]\n", + " [ 0.37639825 0.74357296 -0.55265144]\n", + " [ 0.39991292 0.72135355 -0.56543674]\n", + " [ 0.42312381 0.6979294 -0.57780689]\n", + " [ 0.44588428 0.67341521 -0.58966021]\n", + " [ 0.19009922 0.73010291 -0.65636273]\n", + " [ 0.21324837 0.70946796 -0.67169959]\n", + " [ 0.23664685 0.68749382 -0.68654971]\n", + " [ 0.260141 0.66425868 -0.70077604]\n", + " [ 0.28357994 0.63985973 -0.71425622]\n", + " [ 0.30681531 0.6144146 -0.72688312]\n", + " [ 0.44606953 0.66178609 -0.60254555]\n", + " [ 0.42347959 0.65334612 -0.62753796]\n", + " [ 0.39988345 0.64390547 -0.65228749]\n", + " [ 0.37538993 0.63347423 -0.67660388]\n", + " [ 0.35012074 0.62207904 -0.70030932]\n", + " [ 0.32421119 0.60976413 -0.72323911]\n", + " [ 0.32075939 0.79056234 -0.52165563]\n", + " [ 0.32075939 0.79056234 -0.52165563]\n", + " [ 0.31494064 0.60520895 -0.73111868]\n", + " [ 0.31494064 0.60520895 -0.73111868]\n", + " [ 0.3210918 0.78178055 -0.53452711]\n", + " [ 0.34477158 0.76216231 -0.54794267]\n", + " [ 0.3684727 0.7411547 -0.56117518]\n", + " [ 0.39203577 0.71884183 -0.57408569]\n", + " [ 0.41530767 0.695322 -0.58655507]\n", + " [ 0.43814132 0.67070981 -0.59848185]\n", + " [ 0.29791908 0.77464681 -0.55782304]\n", + " [ 0.32162565 0.7547885 -0.57170907]\n", + " [ 0.3453912 0.73354102 -0.58533963]\n", + " [ 0.36905698 0.71098593 -0.59857828]\n", + " [ 0.39246944 0.68722023 -0.61130687]\n", + " [ 0.41548035 0.66235857 -0.62342378]\n", + " [ 0.27401515 0.76633164 -0.58107789]\n", + " [ 0.29769077 0.74625819 -0.59538132]\n", + " [ 0.32146568 0.72479921 -0.60936518]\n", + " [ 0.34518192 0.70203428 -0.6228943 ]\n", + " [ 0.36868589 0.6780597 -0.63585043]\n", + " [ 0.39182842 0.65299058 -0.648131 ]\n", + " [ 0.2494949 0.75684779 -0.60409744]\n", + " [ 0.27308125 0.73658195 -0.61876786]\n", + " [ 0.29680948 0.71493836 -0.63306182]\n", + " [ 0.32052274 0.69199539 -0.64684431]\n", + " [ 0.3440677 0.66784914 -0.65999617]\n", + " [ 0.36729481 0.64261548 -0.67241347]\n", + " [ 0.22448275 0.74622151 -0.62670643]\n", + " [ 0.24792173 0.72578465 -0.64169421]\n", + " [ 0.27154717 0.70398271 -0.65625489]\n", + " [ 0.29520348 0.68089356 -0.67025284]\n", + " [ 0.31873811 0.65661359 -0.68356756]\n", + " [ 0.34200167 0.63125944 -0.69609366]\n", + " [ 0.19911271 0.73449448 -0.64874647]\n", + " [ 0.22234732 0.71390749 -0.66400133]\n", + " [ 0.24581459 0.69197355 -0.67878406]\n", + " [ 0.26936036 0.66877066 -0.69295801]\n", + " [ 0.29283326 0.64439577 -0.70640128]\n", + " [ 0.31608458 0.6189663 -0.71900714]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:fp_optics: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:fp_optics: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:fp_optics: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:fp_optics: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:fp_optics: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:cartToSphere: vec: [[ 0.51852022 -0.35368567 0.77848778]\n", + " [ 0.54028515 -0.35564964 0.76263051]\n", + " [ 0.56205301 -0.35752411 0.74583706]\n", + " [ 0.58371468 -0.35927783 0.72814601]\n", + " [ 0.60516453 -0.36088217 0.70960549]\n", + " [ 0.62630202 -0.3623131 0.69027168]\n", + " [ 0.64703241 -0.36355207 0.67020814]\n", + " [ 0.66726708 -0.36458617 0.64948562]\n", + " [ 0.51852022 -0.35368567 0.77848778]\n", + " [ 0.50904589 -0.37833578 0.7731328 ]\n", + " [ 0.49910372 -0.40324963 0.76699753]\n", + " [ 0.48870499 -0.42830745 0.76007905]\n", + " [ 0.47786642 -0.45339043 0.75238342]\n", + " [ 0.46661095 -0.47838349 0.74392436]\n", + " [ 0.45496809 -0.50317645 0.73472274]\n", + " [ 0.442974 -0.52766441 0.72480639]\n", + " [ 0.66726708 -0.36458617 0.64948562]\n", + " [ 0.65900014 -0.39042131 0.64287636]\n", + " [ 0.65003614 -0.41647333 0.63561229]\n", + " [ 0.64038191 -0.44261788 0.62769453]\n", + " [ 0.63005034 -0.46873714 0.61913008]\n", + " [ 0.61906124 -0.49471763 0.60993249]\n", + " [ 0.60744233 -0.52044831 0.6001228 ]\n", + " [ 0.59522986 -0.54582018 0.58973023]\n", + " [ 0.442974 -0.52766441 0.72480639]\n", + " [ 0.46506321 -0.53146475 0.70799818]\n", + " [ 0.48721389 -0.53491616 0.69028062]\n", + " [ 0.50931595 -0.53798075 0.67169485]\n", + " [ 0.53126583 -0.54062667 0.65228784]\n", + " [ 0.55296462 -0.54282781 0.63211399]\n", + " [ 0.57431672 -0.5445638 0.61123692]\n", + " [ 0.59522986 -0.54582018 0.58973023]\n", + " [ 0.52797108 -0.35463512 0.77167381]\n", + " [ 0.55466276 -0.35698711 0.75160457]\n", + " [ 0.58125018 -0.35917328 0.73016627]\n", + " [ 0.6075373 -0.36113967 0.70744369]\n", + " [ 0.6333391 -0.36284214 0.68354017]\n", + " [ 0.65848369 -0.36424887 0.65857573]\n", + " [ 0.51452198 -0.36440051 0.77619547]\n", + " [ 0.50259504 -0.39480533 0.76910791]\n", + " [ 0.48997586 -0.42548737 0.76084437]\n", + " [ 0.4766929 -0.45622725 0.75141239]\n", + " [ 0.46278841 -0.48681328 0.74083718]\n", + " [ 0.44831951 -0.51704475 0.72916003]\n", + " [ 0.66368003 -0.37581225 0.6467565 ]\n", + " [ 0.65307805 -0.4076377 0.63821671]\n", + " [ 0.64143531 -0.43966459 0.62869371]\n", + " [ 0.62877304 -0.47167337 0.61819795]\n", + " [ 0.61512781 -0.50345487 0.60675446]\n", + " [ 0.6005542 -0.53480548 0.59440538]\n", + " [ 0.45263178 -0.52927815 0.71762742]\n", + " [ 0.47976032 -0.53370547 0.69641116]\n", + " [ 0.50687095 -0.53757052 0.67386926]\n", + " [ 0.53377036 -0.54081216 0.65008569]\n", + " [ 0.56027631 -0.54338235 0.62516084]\n", + " [ 0.5862141 -0.54524603 0.59921599]\n", + " [ 0.51856293 -0.35377622 0.77841819]\n", + " [ 0.51856293 -0.35377622 0.77841819]\n", + " [ 0.59520192 -0.54573069 0.58984124]\n", + " [ 0.59520192 -0.54573069 0.58984124]\n", + " [ 0.52396244 -0.36531689 0.76941987]\n", + " [ 0.51211081 -0.39588221 0.76224655]\n", + " [ 0.49954164 -0.42671824 0.75390298]\n", + " [ 0.48628243 -0.45760377 0.74439787]\n", + " [ 0.47237514 -0.48832646 0.73375677]\n", + " [ 0.45787699 -0.51868537 0.72202088]\n", + " [ 0.55074806 -0.36781558 0.74925848]\n", + " [ 0.53911656 -0.39878722 0.74183697]\n", + " [ 0.5266969 -0.43001024 0.73326774]\n", + " [ 0.51351488 -0.46126078 0.72356131]\n", + " [ 0.49961209 -0.49232627 0.71274301]\n", + " [ 0.48504638 -0.52300533 0.70085336]\n", + " [ 0.57743141 -0.37012183 0.7277244 ]\n", + " [ 0.56602716 -0.40142312 0.72005051]\n", + " [ 0.55376765 -0.43295778 0.7112587 ]\n", + " [ 0.54067771 -0.46450215 0.70135965]\n", + " [ 0.52679862 -0.49584455 0.69037772]\n", + " [ 0.51218866 -0.52678322 0.67835257]\n", + " [ 0.60381547 -0.37217988 0.70490355]\n", + " [ 0.59264442 -0.40373121 0.69697468]\n", + " [ 0.5805561 -0.43550144 0.68796301]\n", + " [ 0.56757439 -0.46726834 0.67787875]\n", + " [ 0.55373976 -0.4988214 0.66674544]\n", + " [ 0.5391102 -0.52995828 0.65460249]\n", + " [ 0.62971488 -0.37394499 0.68089964]\n", + " [ 0.61878263 -0.40566645 0.672713 ]\n", + " [ 0.60687682 -0.43759656 0.66348306]\n", + " [ 0.59402019 -0.46951471 0.65321968]\n", + " [ 0.58025173 -0.50121126 0.64194642]\n", + " [ 0.56562834 -0.53248318 0.6297033 ]\n", + " [ 0.65495741 -0.37538534 0.65583278]\n", + " [ 0.64426866 -0.40719759 0.64738553]\n", + " [ 0.63255573 -0.43921245 0.63793861]\n", + " [ 0.6198402 -0.47121026 0.62750221]\n", + " [ 0.60615925 -0.50298184 0.61610083]\n", + " [ 0.59156812 -0.53432364 0.60377596]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:fp_optics: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:cartToSphere: vec: [[-0.31799364 -0.56127324 0.76410235]\n", + " [-0.34315916 -0.55952217 0.75443803]\n", + " [-0.36860884 -0.55718619 0.74409077]\n", + " [-0.39421679 -0.55426419 0.73306502]\n", + " [-0.41986259 -0.5507585 0.72137402]\n", + " [-0.44543103 -0.54667497 0.70903997]\n", + " [-0.47081179 -0.54202333 0.69609408]\n", + " [-0.49589946 -0.53681766 0.68257639]\n", + " [-0.31799364 -0.56127324 0.76410235]\n", + " [-0.31941152 -0.53909435 0.77932892]\n", + " [-0.32076534 -0.51601423 0.79425368]\n", + " [-0.32202083 -0.49211111 0.80878256]\n", + " [-0.32314973 -0.46746705 0.82282976]\n", + " [-0.32412984 -0.44216821 0.8363176 ]\n", + " [-0.32494468 -0.41630533 0.84917656]\n", + " [-0.32558316 -0.38997392 0.86134543]\n", + " [-0.49589946 -0.53681766 0.68257639]\n", + " [-0.49918946 -0.51367434 0.69781699]\n", + " [-0.50214812 -0.4896443 0.71280834]\n", + " [-0.50474091 -0.46480119 0.72745891]\n", + " [-0.5069386 -0.43922321 0.74168472]\n", + " [-0.50871717 -0.41299482 0.75540858]\n", + " [-0.51005793 -0.38620781 0.76855997]\n", + " [-0.51094784 -0.35896142 0.78107555]\n", + " [-0.32558316 -0.38997392 0.86134543]\n", + " [-0.35195288 -0.38668127 0.85241232]\n", + " [-0.37855638 -0.38300546 0.8426161 ]\n", + " [-0.40527232 -0.37894487 0.83195861]\n", + " [-0.43198331 -0.37450162 0.82045046]\n", + " [-0.45857441 -0.36968198 0.80811184]\n", + " [-0.4849327 -0.36449675 0.79497321]\n", + " [-0.51094784 -0.35896142 0.78107555]\n", + " [-0.32892808 -0.56050691 0.76002521]\n", + " [-0.35997958 -0.55796691 0.74772163]\n", + " [-0.39133216 -0.55454698 0.73439552]\n", + " [-0.42276187 -0.55024999 0.72006761]\n", + " [-0.45405654 -0.54508673 0.70477877]\n", + " [-0.48501514 -0.53907693 0.68859014]\n", + " [-0.31870319 -0.55171349 0.77074023]\n", + " [-0.32040374 -0.52391432 0.78921178]\n", + " [-0.32197315 -0.49483875 0.80713561]\n", + " [-0.3233569 -0.46463625 0.82435033]\n", + " [-0.32451405 -0.43346552 0.84071296]\n", + " [-0.32541656 -0.40149556 0.85609893]\n", + " [-0.49728669 -0.52685951 0.68929312]\n", + " [-0.50109987 -0.49788979 0.70781684]\n", + " [-0.50438062 -0.46766093 0.72587426]\n", + " [-0.50707295 -0.4363149 0.7433077 ]\n", + " [-0.50913264 -0.40400731 0.75997503]\n", + " [-0.51052764 -0.37091028 0.77574938]\n", + " [-0.33704182 -0.38867626 0.85751593]\n", + " [-0.36953329 -0.38438439 0.84598687]\n", + " [-0.40225482 -0.37951482 0.83316238]\n", + " [-0.43498875 -0.37406989 0.8190583 ]\n", + " [-0.46752344 -0.36806119 0.80371189]\n", + " [-0.49965201 -0.36151052 0.7871836 ]\n", + " [-0.31808398 -0.56119402 0.76412293]\n", + " [-0.31808398 -0.56119402 0.76412293]\n", + " [-0.51085732 -0.35907476 0.78108266]\n", + " [-0.51085732 -0.35907476 0.78108266]\n", + " [-0.32960737 -0.55098527 0.76666434]\n", + " [-0.33145836 -0.52306875 0.78519707]\n", + " [-0.33314884 -0.49387442 0.80318112]\n", + " [-0.33462451 -0.46355125 0.82045516]\n", + " [-0.3358448 -0.43225757 0.83687613]\n", + " [-0.33678197 -0.40016243 0.85231915]\n", + " [-0.36082315 -0.54833987 0.75440708]\n", + " [-0.36308516 -0.52012395 0.77307195]\n", + " [-0.36510647 -0.49062789 0.79118995]\n", + " [-0.36683354 -0.45999888 0.80860014]\n", + " [-0.36822664 -0.42839414 0.82515913]\n", + " [-0.36925858 -0.39598301 0.84074108]\n", + " [-0.39233134 -0.54483096 0.74110414]\n", + " [-0.39498303 -0.51636405 0.75983983]\n", + " [-0.39731879 -0.486617 0.77803707]\n", + " [-0.39928557 -0.455735 0.79553545]\n", + " [-0.40084377 -0.42387434 0.81219136]\n", + " [-0.40196609 -0.39120487 0.82787801]\n", + " [-0.42390834 -0.54046108 0.72677613]\n", + " [-0.42692982 -0.51179044 0.74552094]\n", + " [-0.42956524 -0.48184216 0.763742 ]\n", + " [-0.43176138 -0.45075971 0.78127959]\n", + " [-0.43347796 -0.41869874 0.79799012]\n", + " [-0.43468678 -0.38582981 0.81374613]\n", + " [-0.45534221 -0.53524057 0.71146399]\n", + " [-0.45871403 -0.50641225 0.7301562 ]\n", + " [-0.46163457 -0.47631175 0.74834526]\n", + " [-0.46404971 -0.44508143 0.76587231]\n", + " [-0.46591775 -0.41287665 0.7825941 ]\n", + " [-0.46720905 -0.37986873 0.79838302]\n", + " [-0.48643167 -0.5291888 0.69522906]\n", + " [-0.49013354 -0.50024802 0.71380742]\n", + " [-0.49332341 -0.47004403 0.73190889]\n", + " [-0.4959458 -0.43871877 0.74937548]\n", + " [-0.49795718 -0.40642772 0.76606472]\n", + " [-0.49932613 -0.37334283 0.78184944]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:fp_optics: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:cartToSphere: vec: [[-0.03144949 0.86012216 -0.50911766]\n", + " [-0.0326787 0.87400628 -0.48481453]\n", + " [-0.03390523 0.88745939 -0.4596371 ]\n", + " [-0.03512284 0.90038971 -0.43366433]\n", + " [-0.0363256 0.91271449 -0.40697998]\n", + " [-0.03750782 0.92435951 -0.37967441]\n", + " [-0.03866411 0.93525927 -0.35184539]\n", + " [-0.03978936 0.94535774 -0.32359783]\n", + " [-0.03144949 0.86012216 -0.50911766]\n", + " [-0.06042237 0.85835137 -0.50949197]\n", + " [-0.08925683 0.85591634 -0.50935296]\n", + " [-0.11784107 0.85283817 -0.50870477]\n", + " [-0.14606471 0.84914814 -0.50755545]\n", + " [-0.17381861 0.84488796 -0.50591642]\n", + " [-0.20099443 0.84011003 -0.50380193]\n", + " [-0.2274837 0.83487774 -0.50122882]\n", + " [-0.03978936 0.94535774 -0.32359783]\n", + " [-0.06975076 0.94344369 -0.32411238]\n", + " [-0.09955327 0.94069003 -0.32433225]\n", + " [-0.12907994 0.93711972 -0.32426071]\n", + " [-0.15821787 0.93276622 -0.32390476]\n", + " [-0.18685881 0.92767294 -0.32327495]\n", + " [-0.21489863 0.92189284 -0.32238514]\n", + " [-0.24223555 0.9154883 -0.32125241]\n", + " [-0.2274837 0.83487774 -0.50122882]\n", + " [-0.2303971 0.8478167 -0.4776233 ]\n", + " [-0.23305296 0.86042125 -0.45316839]\n", + " [-0.23544506 0.87259673 -0.42794927]\n", + " [-0.23756647 0.88425941 -0.40205406]\n", + " [-0.23940996 0.89533601 -0.37557464]\n", + " [-0.24096843 0.90576335 -0.34860719]\n", + " [-0.24223555 0.9154883 -0.32125241]\n", + " [-0.03208492 0.86621747 -0.49863599]\n", + " [-0.03359143 0.88295604 -0.46825233]\n", + " [-0.03508748 0.898955 -0.43663347]\n", + " [-0.03656204 0.91405829 -0.40393151]\n", + " [-0.03800464 0.92812931 -0.37031288]\n", + " [-0.03940544 0.94105137 -0.3359606 ]\n", + " [-0.04409619 0.85948076 -0.50926255]\n", + " [-0.07952749 0.85686146 -0.50937592]\n", + " [-0.11463963 0.85326411 -0.50872204]\n", + " [-0.14922875 0.84874209 -0.50731414]\n", + " [-0.18309394 0.84337221 -0.50517316]\n", + " [-0.21603569 0.83725547 -0.50232645]\n", + " [-0.05286076 0.94459435 -0.32395563]\n", + " [-0.08948946 0.94168161 -0.32438771]\n", + " [-0.12576291 0.93752943 -0.3243798 ]\n", + " [-0.16147153 0.9321951 -0.32394328]\n", + " [-0.19641598 0.92575848 -0.32309751]\n", + " [-0.23040562 0.91832094 -0.32186937]\n", + " [-0.2286956 0.84057275 -0.49105578]\n", + " [-0.2320929 0.85621944 -0.46154215]\n", + " [-0.23509743 0.87126843 -0.43083701]\n", + " [-0.23769675 0.88556106 -0.39910132]\n", + " [-0.23987755 0.89896239 -0.36650426]\n", + " [-0.2416271 0.91136028 -0.33322482]\n", + " [-0.03155288 0.86016536 -0.50903829]\n", + " [-0.03155288 0.86016536 -0.50903829]\n", + " [-0.24213955 0.91547918 -0.32135076]\n", + " [-0.24213955 0.91547918 -0.32135076]\n", + " [-0.04467736 0.86552877 -0.49886259]\n", + " [-0.08024651 0.86288224 -0.49899372]\n", + " [-0.115494 0.85923463 -0.49837435]\n", + " [-0.15021573 0.85463923 -0.49701812]\n", + " [-0.18421108 0.84917263 -0.49494659]\n", + " [-0.21728135 0.84293544 -0.49218762]\n", + " [-0.04630748 0.88225683 -0.46848533]\n", + " [-0.08222304 0.87953963 -0.4686677 ]\n", + " [-0.11780953 0.87576113 -0.46814887]\n", + " [-0.15286179 0.87097478 -0.46694348]\n", + " [-0.18717989 0.8652569 -0.46507439]\n", + " [-0.22056742 0.85870726 -0.46257092]\n", + " [-0.0479038 0.89824691 -0.43687264]\n", + " [-0.08409963 0.8954684 -0.43710823]\n", + " [-0.11995888 0.89157551 -0.43669553]\n", + " [-0.15527502 0.88662234 -0.4356495 ]\n", + " [-0.1898485 0.88068558 -0.43399362]\n", + " [-0.22348501 0.87386468 -0.43175801]\n", + " [-0.04945456 0.91334302 -0.40417667]\n", + " [-0.08586277 0.91051261 -0.40446802]\n", + " [-0.12192735 0.90652179 -0.40416824]\n", + " [-0.1574404 0.90142563 -0.4032919 ]\n", + " [-0.19220252 0.89530162 -0.40186216]\n", + " [-0.22602111 0.8882495 -0.39990909]\n", + " [-0.05094851 0.92740859 -0.37056383]\n", + " [-0.08749909 0.92453612 -0.37091357]\n", + " [-0.12370006 0.92046445 -0.37073373]\n", + " [-0.15934242 0.91524969 -0.37003784]\n", + " [-0.19422681 0.90897041 -0.36884787]\n", + " [-0.22816184 0.90172696 -0.36719295]\n", + " [-0.05237512 0.94032703 -0.33621708]\n", + " [-0.08899628 0.93742288 -0.33662739]\n", + " [-0.12526334 0.93328839 -0.33657374]\n", + " [-0.16096678 0.92798057 -0.33606809]\n", + " [-0.19590723 0.921579 -0.33513058]\n", + " [-0.22989396 0.9141848 -0.33378873]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:fp_optics: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:cartToSphere: vec: [[-2.05990295e-01 4.15969905e-01 -8.85740953e-01]\n", + " [-1.78746263e-01 4.14736932e-01 -8.92212447e-01]\n", + " [-1.50820614e-01 4.13143306e-01 -8.98090057e-01]\n", + " [-1.22316935e-01 4.11177424e-01 -9.03311515e-01]\n", + " [-9.33402961e-02 4.08831894e-01 -9.07823811e-01]\n", + " [-6.39990042e-02 4.06103792e-01 -9.11583149e-01]\n", + " [-3.44053988e-02 4.02994932e-01 -9.14555276e-01]\n", + " [-4.67550578e-03 3.99512054e-01 -9.16716019e-01]\n", + " [-2.05990295e-01 4.15969905e-01 -8.85740953e-01]\n", + " [-2.01918756e-01 4.42164317e-01 -8.73910483e-01]\n", + " [-1.97596221e-01 4.67899889e-01 -8.61408978e-01]\n", + " [-1.93039167e-01 4.93081374e-01 -8.48296315e-01]\n", + " [-1.88264367e-01 5.17618805e-01 -8.34642019e-01]\n", + " [-1.83288437e-01 5.41427399e-01 -8.20525271e-01]\n", + " [-1.78127502e-01 5.64427193e-01 -8.06035072e-01]\n", + " [-1.72797138e-01 5.86542660e-01 -7.91270407e-01]\n", + " [-4.67550578e-03 3.99512054e-01 -9.16716019e-01]\n", + " [-6.14947939e-04 4.26600430e-01 -9.04439990e-01]\n", + " [ 3.43488728e-03 4.53218035e-01 -8.91393075e-01]\n", + " [ 7.45802726e-03 4.79265427e-01 -8.77638324e-01]\n", + " [ 1.14389443e-02 5.04650937e-01 -8.63247695e-01]\n", + " [ 1.53626440e-02 5.29290860e-01 -8.48301347e-01]\n", + " [ 1.92145999e-02 5.53108646e-01 -8.32887522e-01]\n", + " [ 2.29805501e-02 5.76033317e-01 -8.17103122e-01]\n", + " [-1.72797138e-01 5.86542660e-01 -7.91270407e-01]\n", + " [-1.46211145e-01 5.86754610e-01 -7.96455478e-01]\n", + " [-1.18982393e-01 5.86408210e-01 -8.01229431e-01]\n", + " [-9.12196478e-02 5.85491831e-01 -8.05529820e-01]\n", + " [-6.30318925e-02 5.83997698e-01 -8.09304436e-01]\n", + " [-3.45287355e-02 5.81922025e-01 -8.12511245e-01]\n", + " [-5.82074515e-03 5.79265418e-01 -8.15118209e-01]\n", + " [ 2.29805501e-02 5.76033317e-01 -8.17103122e-01]\n", + " [-1.94188712e-01 4.15566355e-01 -8.88591778e-01]\n", + " [-1.60326826e-01 4.13815247e-01 -8.96131826e-01]\n", + " [-1.25544017e-01 4.11510273e-01 -9.02717007e-01]\n", + " [-9.00329968e-02 4.08636064e-01 -9.08245906e-01]\n", + " [-5.39932470e-02 4.05187263e-01 -9.12637941e-01]\n", + " [-1.76331722e-02 4.01169247e-01 -9.15834213e-01]\n", + " [-2.04155055e-01 4.27437614e-01 -8.80691660e-01]\n", + " [-1.98994127e-01 4.59246152e-01 -8.65733394e-01]\n", + " [-1.93472683e-01 4.90270229e-01 -8.49825525e-01]\n", + " [-1.87621503e-01 5.20342015e-01 -8.33092047e-01]\n", + " [-1.81471137e-01 5.49305387e-01 -8.15678747e-01]\n", + " [-1.75051033e-01 5.77014987e-01 -7.97753621e-01]\n", + " [-3.00655381e-03 4.11386433e-01 -9.11456068e-01]\n", + " [ 1.96506094e-03 4.44282199e-01 -8.95884739e-01]\n", + " [ 6.90485930e-03 4.76371203e-01 -8.79217152e-01]\n", + " [ 1.17840557e-02 5.07481409e-01 -8.61582123e-01]\n", + " [ 1.65750323e-02 5.37458627e-01 -8.43127210e-01]\n", + " [ 2.12511642e-02 5.66164333e-01 -8.24018408e-01]\n", + " [-1.61309708e-01 5.86628489e-01 -7.93628499e-01]\n", + " [-1.28278969e-01 5.86513689e-01 -7.99716324e-01]\n", + " [-9.43907992e-02 5.85548352e-01 -8.05123285e-01]\n", + " [-5.98457283e-02 5.83716568e-01 -8.09749009e-01]\n", + " [-2.48455810e-02 5.81011414e-01 -8.13516093e-01]\n", + " [ 1.04056741e-02 5.77435992e-01 -8.16369645e-01]\n", + " [-2.05884932e-01 4.16056534e-01 -8.85724763e-01]\n", + " [-2.05884932e-01 4.16056534e-01 -8.85724763e-01]\n", + " [ 2.28693096e-02 5.75968545e-01 -8.17151901e-01]\n", + " [ 2.28693096e-02 5.75968545e-01 -8.17151901e-01]\n", + " [-1.92453998e-01 4.26991713e-01 -8.83538078e-01]\n", + " [-1.87294878e-01 4.58922885e-01 -8.68510457e-01]\n", + " [-1.81798427e-01 4.90065048e-01 -8.52517202e-01]\n", + " [-1.75995839e-01 5.20250215e-01 -8.35682463e-01]\n", + " [-1.69918076e-01 5.49322511e-01 -8.18151958e-01]\n", + " [-1.63594831e-01 5.77137047e-01 -8.00093470e-01]\n", + " [-1.58580556e-01 4.25352006e-01 -8.91026306e-01]\n", + " [-1.53432946e-01 4.57592141e-01 -8.75824048e-01]\n", + " [-1.48014024e-01 4.89032099e-01 -8.59615876e-01]\n", + " [-1.42355936e-01 5.19503258e-01 -8.42526648e-01]\n", + " [-1.36490614e-01 5.48850477e-01 -8.24702047e-01]\n", + " [-1.30448453e-01 5.76930493e-01 -8.06309126e-01]\n", + " [-1.23789471e-01 4.23137390e-01 -8.97569449e-01]\n", + " [-1.18663603e-01 4.55628984e-01 -8.82225129e-01]\n", + " [-1.13333546e-01 4.87312155e-01 -8.65842001e-01]\n", + " [-1.07831818e-01 5.18017418e-01 -8.48545965e-01]\n", + " [-1.02190684e-01 5.47590240e-01 -8.30482988e-01]\n", + " [-9.64408202e-02 5.75889122e-01 -8.11819492e-01]\n", + " [-8.82735948e-02 4.20331922e-01 -9.03066358e-01]\n", + " [-8.31805095e-02 4.53016115e-01 -8.87613318e-01]\n", + " [-7.79519752e-02 4.84887193e-01 -8.71095804e-01]\n", + " [-7.26201448e-02 5.15774718e-01 -8.53640882e-01]\n", + " [-6.72167494e-02 5.45524542e-01 -8.35395046e-01]\n", + " [-6.17720107e-02 5.73996692e-01 -8.16524351e-01]\n", + " [-5.22325188e-02 4.16929550e-01 -9.07436782e-01]\n", + " [-4.71835881e-02 4.49745777e-01 -8.91909437e-01]\n", + " [-4.20695898e-02 4.81748399e-01 -8.75299166e-01]\n", + " [-3.69215900e-02 5.12766113e-01 -8.57734055e-01]\n", + " [-3.17699463e-02 5.42644902e-01 -8.39361174e-01]\n", + " [-2.66436745e-02 5.71245840e-01 -8.20346454e-01]\n", + " [-1.58746958e-02 4.12935034e-01 -9.10622124e-01]\n", + " [-1.08810439e-02 4.45821168e-01 -8.95055914e-01]\n", + " [-5.89384785e-03 4.77897892e-01 -8.78395621e-01]\n", + " [-9.42544713e-04 5.08993297e-01 -8.60769966e-01]\n", + " [ 3.94447919e-03 5.38953274e-01 -8.42326427e-01]\n", + " [ 8.73993559e-03 5.67639310e-01 -8.23230968e-01]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:fp_optics: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:cartToSphere: vec: [[ 1.98950123e-01 3.33149950e-01 -9.21645246e-01]\n", + " [ 1.72608089e-01 3.42544625e-01 -9.23509409e-01]\n", + " [ 1.45607323e-01 3.51848175e-01 -9.24662841e-01]\n", + " [ 1.18047978e-01 3.61008533e-01 -9.25060816e-01]\n", + " [ 9.00316435e-02 3.69977294e-01 -9.24668105e-01]\n", + " [ 6.16630393e-02 3.78709275e-01 -9.23459233e-01]\n", + " [ 3.30507845e-02 3.87162450e-01 -9.21418951e-01]\n", + " [ 4.30706047e-03 3.95298261e-01 -9.18542723e-01]\n", + " [ 1.98950123e-01 3.33149950e-01 -9.21645246e-01]\n", + " [ 1.90478579e-01 3.07504784e-01 -9.32286822e-01]\n", + " [ 1.81782930e-01 2.81717490e-01 -9.42120068e-01]\n", + " [ 1.72896669e-01 2.55893309e-01 -9.51117951e-01]\n", + " [ 1.63853427e-01 2.30140885e-01 -9.59263899e-01]\n", + " [ 1.54686536e-01 2.04572398e-01 -9.66551711e-01]\n", + " [ 1.45428765e-01 1.79303976e-01 -9.72985384e-01]\n", + " [ 1.36112324e-01 1.54456080e-01 -9.78578947e-01]\n", + " [ 4.30706047e-03 3.95298261e-01 -9.18542723e-01]\n", + " [-4.30804669e-03 3.68726252e-01 -9.29528048e-01]\n", + " [-1.28931488e-02 3.41910538e-01 -9.39644055e-01]\n", + " [-2.14144589e-02 3.14961563e-01 -9.48862811e-01]\n", + " [-2.98391854e-02 2.87991057e-01 -9.57168101e-01]\n", + " [-3.81356901e-02 2.61111416e-01 -9.64555078e-01]\n", + " [-4.62733158e-02 2.34436144e-01 -9.71029595e-01]\n", + " [-5.42219247e-02 2.08081312e-01 -9.76607470e-01]\n", + " [ 1.36112324e-01 1.54456080e-01 -9.78578947e-01]\n", + " [ 1.10135957e-01 1.61850953e-01 -9.80649958e-01]\n", + " [ 8.35785801e-02 1.69414913e-01 -9.81994505e-01]\n", + " [ 5.65454558e-02 1.77095041e-01 -9.82568042e-01]\n", + " [ 2.91421436e-02 1.84843219e-01 -9.82335849e-01]\n", + " [ 1.47488018e-03 1.92615937e-01 -9.81273115e-01]\n", + " [-2.63491572e-02 2.00373839e-01 -9.79365124e-01]\n", + " [-5.42219247e-02 2.08081312e-01 -9.76607470e-01]\n", + " [ 1.87523649e-01 3.37166077e-01 -9.22580033e-01]\n", + " [ 1.54782928e-01 3.48624843e-01 -9.24393295e-01]\n", + " [ 1.21152275e-01 3.59894728e-01 -9.25093461e-01]\n", + " [ 8.68180191e-02 3.70885139e-01 -9.24611727e-01]\n", + " [ 5.19730357e-02 3.81512893e-01 -9.22901249e-01]\n", + " [ 1.68188275e-02 3.91702042e-01 -9.19938388e-01]\n", + " [ 1.95197233e-01 3.22024492e-01 -9.26389911e-01]\n", + " [ 1.84659422e-01 2.90484081e-01 -9.38892910e-01]\n", + " [ 1.73818410e-01 2.58834309e-01 -9.50153651e-01]\n", + " [ 1.62736075e-01 2.27273780e-01 -9.60137281e-01]\n", + " [ 1.51473753e-01 1.96009063e-01 -9.68832364e-01]\n", + " [ 1.40091527e-01 1.65255737e-01 -9.76250432e-01]\n", + " [ 6.47721052e-04 3.83722485e-01 -9.23448231e-01]\n", + " [-9.89523597e-03 3.50978228e-01 -9.36331334e-01]\n", + " [-2.03596538e-02 3.17977513e-01 -9.47879626e-01]\n", + " [-3.06847269e-02 2.84925563e-01 -9.58058386e-01]\n", + " [-4.08121842e-02 2.52029341e-01 -9.66858613e-01]\n", + " [-5.06858264e-02 2.19498775e-01 -9.74295250e-01]\n", + " [ 1.24896367e-01 1.57740555e-01 -9.79550313e-01]\n", + " [ 9.26549419e-02 1.66925762e-01 -9.81606261e-01]\n", + " [ 5.96453195e-02 1.76311642e-01 -9.82525644e-01]\n", + " [ 2.60616941e-02 1.85807612e-01 -9.82240459e-01]\n", + " [-7.90032514e-03 1.95333518e-01 -9.80705053e-01]\n", + " [-4.20430486e-02 2.04818477e-01 -9.77896607e-01]\n", + " [ 1.98832728e-01 3.33094827e-01 -9.21690502e-01]\n", + " [ 1.98832728e-01 3.33094827e-01 -9.21690502e-01]\n", + " [-5.40998218e-02 2.08144521e-01 -9.76600772e-01]\n", + " [-5.40998218e-02 2.08144521e-01 -9.76600772e-01]\n", + " [ 1.83875818e-01 3.26051666e-01 -9.27297145e-01]\n", + " [ 1.73318104e-01 2.94378095e-01 -9.39841674e-01]\n", + " [ 1.62479752e-01 2.62583302e-01 -9.51131084e-01]\n", + " [ 1.51423084e-01 2.30866055e-01 -9.61130540e-01]\n", + " [ 1.40209803e-01 1.99432642e-01 -9.69828765e-01]\n", + " [ 1.28900152e-01 1.68498142e-01 -9.77237498e-01]\n", + " [ 1.51104667e-01 3.37399457e-01 -9.29154985e-01]\n", + " [ 1.40503686e-01 3.05389484e-01 -9.41804638e-01]\n", + " [ 1.29686398e-01 2.73227214e-01 -9.53167524e-01]\n", + " [ 1.18716197e-01 2.41112218e-01 -9.63208888e-01]\n", + " [ 1.07655639e-01 2.09250131e-01 -9.71918024e-01]\n", + " [ 9.65653846e-02 1.77854302e-01 -9.79307395e-01]\n", + " [ 1.17450415e-01 3.48579168e-01 -9.29891372e-01]\n", + " [ 1.06826451e-01 3.16293699e-01 -9.42627395e-01]\n", + " [ 9.60516379e-02 2.83828090e-01 -9.54052251e-01]\n", + " [ 8.51899278e-02 2.51383197e-01 -9.64131300e-01]\n", + " [ 7.43041335e-02 2.19164401e-01 -9.72854491e-01]\n", + " [ 6.34549058e-02 1.87383371e-01 -9.80235149e-01]\n", + " [ 8.30996280e-02 3.59500767e-01 -9.29437276e-01]\n", + " [ 7.24740000e-02 3.27002063e-01 -9.42240506e-01]\n", + " [ 6.17645213e-02 2.94297995e-01 -9.53715804e-01]\n", + " [ 5.10349898e-02 2.61590960e-01 -9.63828615e-01]\n", + " [ 4.03476684e-02 2.29086539e-01 -9.72569495e-01]\n", + " [ 2.97625197e-02 1.96995168e-01 -9.79952599e-01]\n", + " [ 4.82454090e-02 3.70081763e-01 -9.27745584e-01]\n", + " [ 3.76400740e-02 3.37433963e-01 -9.40596378e-01]\n", + " [ 2.70193550e-02 3.04557745e-01 -9.52110568e-01]\n", + " [ 1.64461617e-02 2.71656987e-01 -9.62253607e-01]\n", + " [ 5.98141671e-03 2.38937790e-01 -9.71016455e-01]\n", + " [-4.31626476e-03 2.06609969e-01 -9.78413865e-01]\n", + " [ 1.30894144e-02 3.80246836e-01 -9.24792415e-01]\n", + " [ 2.52636935e-03 3.47515909e-01 -9.37670683e-01]\n", + " [-7.98268138e-03 3.14535489e-01 -9.49212149e-01]\n", + " [-1.83763125e-02 2.81510548e-01 -9.59382157e-01]\n", + " [-2.85955100e-02 2.48647830e-01 -9.68171758e-01]\n", + " [-3.85834227e-02 2.16157139e-01 -9.75595926e-01]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:fp_optics: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:cartToSphere: vec: [[-0.71958005 0.64070795 -0.26776458]\n", + " [-0.73091358 0.63801628 -0.24228199]\n", + " [-0.74188118 0.63475581 -0.21609576]\n", + " [-0.75240633 0.63091173 -0.18930163]\n", + " [-0.76242096 0.6264756 -0.16199569]\n", + " [-0.77186459 0.62144574 -0.13427674]\n", + " [-0.78068393 0.61582781 -0.10624837]\n", + " [-0.78883319 0.60963527 -0.07801953]\n", + " [-0.71958005 0.64070795 -0.26776458]\n", + " [-0.73547679 0.61828675 -0.27711978]\n", + " [-0.75074613 0.59541086 -0.28612263]\n", + " [-0.7653384 0.57217693 -0.29473834]\n", + " [-0.77921303 0.54868775 -0.30293368]\n", + " [-0.79233849 0.52505197 -0.31067693]\n", + " [-0.80469233 0.50138334 -0.31793867]\n", + " [-0.81626114 0.477799 -0.32469349]\n", + " [-0.78883319 0.60963527 -0.07801953]\n", + " [-0.80520814 0.5864507 -0.08783756]\n", + " [-0.82080688 0.56281581 -0.09754193]\n", + " [-0.83557823 0.53883167 -0.10709548]\n", + " [-0.84948246 0.51460258 -0.11646344]\n", + " [-0.86249064 0.49023586 -0.12561326]\n", + " [-0.87458338 0.46584324 -0.13451389]\n", + " [-0.88574953 0.44154293 -0.14313491]\n", + " [-0.81626114 0.477799 -0.32469349]\n", + " [-0.82785581 0.47360749 -0.30058394]\n", + " [-0.83901006 0.46909416 -0.27570417]\n", + " [-0.84964664 0.46424905 -0.25014677]\n", + " [-0.85969596 0.45906709 -0.22400953]\n", + " [-0.86909668 0.45354927 -0.19739307]\n", + " [-0.87779593 0.44770317 -0.17040005]\n", + " [-0.88574953 0.44154293 -0.14313491]\n", + " [-0.72461682 0.639527 -0.25677943]\n", + " [-0.73827179 0.63584702 -0.22506295]\n", + " [-0.75130001 0.63129741 -0.19238468]\n", + " [-0.76357272 0.62585999 -0.1589213 ]\n", + " [-0.7749785 0.61953174 -0.12485494]\n", + " [-0.7854223 0.61232631 -0.0903786 ]\n", + " [-0.72662419 0.63098549 -0.27179883]\n", + " [-0.74569251 0.60318757 -0.28303255]\n", + " [-0.76376797 0.57480201 -0.29370245]\n", + " [-0.78077206 0.54601552 -0.30374667]\n", + " [-0.79664676 0.51702803 -0.31310694]\n", + " [-0.8113545 0.48805052 -0.32173059]\n", + " [-0.79603773 0.59961052 -0.08240846]\n", + " [-0.81559195 0.57088015 -0.09436961]\n", + " [-0.83392823 0.54157335 -0.10612267]\n", + " [-0.85096863 0.51188086 -0.11760263]\n", + " [-0.86665976 0.48200044 -0.1287495 ]\n", + " [-0.88096939 0.45214037 -0.13950638]\n", + " [-0.82132725 0.476091 -0.31425929]\n", + " [-0.83525189 0.47073978 -0.28418013]\n", + " [-0.84843745 0.46489463 -0.25303534]\n", + " [-0.86075258 0.45854409 -0.22100296]\n", + " [-0.87208441 0.45169002 -0.18826818]\n", + " [-0.88233918 0.44434913 -0.15502072]\n", + " [-0.71967471 0.6406239 -0.2677113 ]\n", + " [-0.71967471 0.6406239 -0.2677113 ]\n", + " [-0.88568705 0.44164731 -0.14319952]\n", + " [-0.88568705 0.44164731 -0.14319952]\n", + " [-0.73159235 0.62985057 -0.26088482]\n", + " [-0.75072138 0.60194166 -0.27218312]\n", + " [-0.76883789 0.57344068 -0.28293829]\n", + " [-0.78586326 0.54453468 -0.29308858]\n", + " [-0.80173957 0.51542393 -0.30257534]\n", + " [-0.81642942 0.48632055 -0.31134439]\n", + " [-0.74531268 0.62607511 -0.2292138 ]\n", + " [-0.76459247 0.59788893 -0.24068067]\n", + " [-0.78280807 0.56910197 -0.25166341]\n", + " [-0.79988046 0.53990214 -0.26210099]\n", + " [-0.815752 0.51048994 -0.27193509]\n", + " [-0.83038591 0.48107871 -0.28110942]\n", + " [-0.75839369 0.62144824 -0.1965734 ]\n", + " [-0.77779253 0.59304004 -0.20818811]\n", + " [-0.79608128 0.56402811 -0.21937844]\n", + " [-0.81318066 0.53460132 -0.23008397]\n", + " [-0.82903367 0.50495975 -0.24024742]\n", + " [-0.84360436 0.47531611 -0.2498125 ]\n", + " [-0.77070629 0.61595217 -0.16314025]\n", + " [-0.79019158 0.58737835 -0.17488266]\n", + " [-0.8085267 0.55820335 -0.18626218]\n", + " [-0.82563248 0.52861708 -0.19721813]\n", + " [-0.84145292 0.49881892 -0.20769371]\n", + " [-0.85595323 0.46902011 -0.2176332 ]\n", + " [-0.78213861 0.60958457 -0.12909626]\n", + " [-0.80167662 0.58090341 -0.14094614]\n", + " [-0.82003077 0.55162864 -0.15249717]\n", + " [-0.83712226 0.52195093 -0.16368734]\n", + " [-0.85289634 0.49206893 -0.17445919]\n", + " [-0.86731949 0.4621923 -0.18475707]\n", + " [-0.79259515 0.60235979 -0.09463407]\n", + " [-0.8121513 0.57363147 -0.10657017]\n", + " [-0.83049702 0.54432153 -0.11827411]\n", + " [-0.84755416 0.51462083 -0.12968174]\n", + " [-0.86326903 0.48472731 -0.14073385]\n", + " [-0.87760915 0.45484952 -0.151374 ]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:cartToSphere: vec: [[ 0.62156375 -0.35382815 -0.6989021 ]\n", + " [ 0.63133866 -0.37233756 -0.68027659]\n", + " [ 0.64079698 -0.39091506 -0.66073039]\n", + " [ 0.64987272 -0.40946882 -0.64031299]\n", + " [ 0.65850715 -0.42791243 -0.61907938]\n", + " [ 0.6666481 -0.44616329 -0.59709181]\n", + " [ 0.67424958 -0.46414142 -0.57442166]\n", + " [ 0.68127212 -0.48176944 -0.55115017]\n", + " [ 0.62156375 -0.35382815 -0.6989021 ]\n", + " [ 0.64156006 -0.33465052 -0.6902244 ]\n", + " [ 0.66098883 -0.31532009 -0.68093098]\n", + " [ 0.67978284 -0.29591861 -0.67106443]\n", + " [ 0.69788285 -0.27653236 -0.66067344]\n", + " [ 0.71523772 -0.25725186 -0.64981265]\n", + " [ 0.73180456 -0.23817096 -0.63854262]\n", + " [ 0.74754905 -0.2193843 -0.62692977]\n", + " [ 0.68127212 -0.48176944 -0.55115017]\n", + " [ 0.70189753 -0.46182402 -0.54227155]\n", + " [ 0.72182533 -0.44153145 -0.53293356]\n", + " [ 0.74098587 -0.42097792 -0.52318021]\n", + " [ 0.75932043 -0.40025193 -0.51306031]\n", + " [ 0.77678056 -0.37944418 -0.50262717]\n", + " [ 0.79332659 -0.35864882 -0.49193897]\n", + " [ 0.80892592 -0.33796524 -0.48105962]\n", + " [ 0.74754905 -0.2193843 -0.62692977]\n", + " [ 0.75792564 -0.23593788 -0.60817928]\n", + " [ 0.76786699 -0.25276095 -0.58863587]\n", + " [ 0.77730532 -0.2697671 -0.56835038]\n", + " [ 0.78617999 -0.28687069 -0.54738125]\n", + " [ 0.79443767 -0.30398945 -0.52579388]\n", + " [ 0.80203243 -0.32104543 -0.50366041]\n", + " [ 0.80892592 -0.33796524 -0.48105962]\n", + " [ 0.62592956 -0.36181832 -0.69086879]\n", + " [ 0.63770622 -0.38456053 -0.6674159 ]\n", + " [ 0.64894081 -0.40731324 -0.64262878]\n", + " [ 0.65952223 -0.42991519 -0.61660632]\n", + " [ 0.66935439 -0.45221415 -0.58946337]\n", + " [ 0.6783553 -0.47406393 -0.56133544]\n", + " [ 0.63038153 -0.34555325 -0.69513458]\n", + " [ 0.65451687 -0.32193548 -0.68407982]\n", + " [ 0.67773195 -0.29816878 -0.67214194]\n", + " [ 0.69991438 -0.2744101 -0.65940804]\n", + " [ 0.72097003 -0.25082602 -0.64597873]\n", + " [ 0.74082346 -0.22758984 -0.63196794]\n", + " [ 0.69032276 -0.47306166 -0.54741863]\n", + " [ 0.71514147 -0.44837253 -0.53622267]\n", + " [ 0.73884201 -0.42324743 -0.52437973]\n", + " [ 0.76131169 -0.39784837 -0.51197772]\n", + " [ 0.78246116 -0.37234249 -0.49911482]\n", + " [ 0.80222035 -0.34690521 -0.48590049]\n", + " [ 0.75206978 -0.22662736 -0.61889506]\n", + " [ 0.76450357 -0.24710898 -0.59537505]\n", + " [ 0.77621555 -0.2679095 -0.57071352]\n", + " [ 0.78709108 -0.28887072 -0.54501498]\n", + " [ 0.79703201 -0.30984128 -0.5183998 ]\n", + " [ 0.80595691 -0.33067956 -0.49100355]\n", + " [ 0.6216669 -0.35382599 -0.69881144]\n", + " [ 0.6216669 -0.35382599 -0.69881144]\n", + " [ 0.80885188 -0.33797811 -0.48117506]\n", + " [ 0.80885188 -0.33797811 -0.48117506]\n", + " [ 0.63467735 -0.35351147 -0.68717851]\n", + " [ 0.65889528 -0.32978258 -0.67609205]\n", + " [ 0.68217582 -0.30588357 -0.66413205]\n", + " [ 0.70440643 -0.28197154 -0.65138593]\n", + " [ 0.72549297 -0.25821358 -0.63795431]\n", + " [ 0.74535989 -0.23478487 -0.62395088]\n", + " [ 0.64653726 -0.37616756 -0.66369235]\n", + " [ 0.67096116 -0.35215568 -0.6525316 ]\n", + " [ 0.69440249 -0.32791664 -0.6405278 ]\n", + " [ 0.7167482 -0.30360752 -0.62776945]\n", + " [ 0.73790445 -0.27939537 -0.6143576 ]\n", + " [ 0.75779591 -0.25545781 -0.60040542]\n", + " [ 0.65783919 -0.39884978 -0.63887906]\n", + " [ 0.68242731 -0.37460173 -0.62766752]\n", + " [ 0.70599242 -0.35007373 -0.61564851]\n", + " [ 0.72842116 -0.32542302 -0.60291167]\n", + " [ 0.74962041 -0.30081572 -0.58955843]\n", + " [ 0.7695158 -0.27642918 -0.57570161]\n", + " [ 0.66847167 -0.42139711 -0.61283774]\n", + " [ 0.6931812 -0.39695988 -0.60160009]\n", + " [ 0.71683228 -0.3721933 -0.58959616]\n", + " [ 0.73931142 -0.34725551 -0.57691615]\n", + " [ 0.76052666 -0.32231198 -0.56366141]\n", + " [ 0.78040506 -0.29753886 -0.54994415]\n", + " [ 0.67833802 -0.44365789 -0.58568354]\n", + " [ 0.70312475 -0.41907962 -0.57444569]\n", + " [ 0.72682319 -0.39412517 -0.56248858]\n", + " [ 0.74932003 -0.36895421 -0.54990206]\n", + " [ 0.7705246 -0.34373241 -0.53678662]\n", + " [ 0.79036547 -0.318635 -0.52325344]\n", + " [ 0.68735565 -0.46548655 -0.55755222]\n", + " [ 0.71217414 -0.44081725 -0.54634069]\n", + " [ 0.73588099 -0.41572716 -0.53446244]\n", + " [ 0.75836332 -0.39037772 -0.52200604]\n", + " [ 0.77953154 -0.36493557 -0.50907034]\n", + " [ 0.79931533 -0.33957593 -0.49576526]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:fp_optics: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:fp_optics: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:cartToSphere: vec: [[ 0.4380559 -0.53746576 0.72058142]\n", + " [ 0.46010012 -0.54136016 0.70373081]\n", + " [ 0.4822116 -0.54489354 0.68597595]\n", + " [ 0.50428036 -0.54802788 0.66735804]\n", + " [ 0.52620301 -0.55073107 0.64792413]\n", + " [ 0.54788084 -0.55297661 0.62772881]\n", + " [ 0.56921846 -0.55474369 0.60683588]\n", + " [ 0.59012378 -0.5560175 0.58531912]\n", + " [ 0.4380559 -0.53746576 0.72058142]\n", + " [ 0.42563439 -0.56135779 0.70972727]\n", + " [ 0.41297448 -0.58471608 0.69825438]\n", + " [ 0.4001333 -0.60745639 0.6862143 ]\n", + " [ 0.38717387 -0.6295013 0.67366498]\n", + " [ 0.37416486 -0.65078033 0.66067059]\n", + " [ 0.3611797 -0.67123035 0.64730135]\n", + " [ 0.34829433 -0.69079658 0.63363329]\n", + " [ 0.59012378 -0.5560175 0.58531912]\n", + " [ 0.57714682 -0.58070659 0.5741789 ]\n", + " [ 0.56369644 -0.60479294 0.56255828]\n", + " [ 0.54983329 -0.6281889 0.55051072]\n", + " [ 0.53562262 -0.65081696 0.5380945 ]\n", + " [ 0.52113409 -0.67260917 0.52537241]\n", + " [ 0.5064425 -0.69350531 0.51241232]\n", + " [ 0.49162901 -0.71345093 0.49928818]\n", + " [ 0.34829433 -0.69079658 0.63363329]\n", + " [ 0.36862722 -0.69577117 0.61645474]\n", + " [ 0.3891783 -0.70022348 0.59852095]\n", + " [ 0.40984218 -0.70411248 0.57987498]\n", + " [ 0.4305154 -0.70740413 0.56056747]\n", + " [ 0.45109899 -0.71007085 0.54065616]\n", + " [ 0.47149944 -0.7120914 0.52020583]\n", + " [ 0.49162901 -0.71345093 0.49928818]\n", + " [ 0.44760945 -0.53928828 0.71331195]\n", + " [ 0.47468596 -0.5438244 0.69204643]\n", + " [ 0.50175351 -0.54777967 0.66946311]\n", + " [ 0.52861908 -0.55109252 0.64564611]\n", + " [ 0.5551008 -0.55371417 0.62069616]\n", + " [ 0.58102437 -0.55560878 0.59473487]\n", + " [ 0.43274775 -0.54795695 0.71587189]\n", + " [ 0.41735611 -0.57689189 0.70214644]\n", + " [ 0.40166233 -0.6049406 0.68754218]\n", + " [ 0.38577996 -0.63195768 0.67216316]\n", + " [ 0.36983533 -0.65781347 0.65612748]\n", + " [ 0.35396488 -0.6823951 0.63956688]\n", + " [ 0.58445702 -0.56684662 0.58059875]\n", + " [ 0.56822687 -0.59671176 0.56661566]\n", + " [ 0.55134547 -0.62558339 0.5519634 ]\n", + " [ 0.5339311 -0.65331457 0.53674729]\n", + " [ 0.51611208 -0.67977997 0.52108303]\n", + " [ 0.49802869 -0.70487121 0.50509802]\n", + " [ 0.35717039 -0.6929613 0.62628584]\n", + " [ 0.38225185 -0.69871213 0.60471885]\n", + " [ 0.40755621 -0.70363697 0.58205923]\n", + " [ 0.43289196 -0.70767029 0.55839709]\n", + " [ 0.45807701 -0.71076133 0.53383873]\n", + " [ 0.48294161 -0.71287359 0.50850629]\n", + " [ 0.43808903 -0.53756215 0.72048937]\n", + " [ 0.43808903 -0.53756215 0.72048937]\n", + " [ 0.4916115 -0.71338089 0.49940549]\n", + " [ 0.4916115 -0.71338089 0.49940549]\n", + " [ 0.44224527 -0.54972333 0.70867721]\n", + " [ 0.42677127 -0.57876535 0.69490788]\n", + " [ 0.41096943 -0.60691047 0.68026746]\n", + " [ 0.39495336 -0.63401312 0.66486029]\n", + " [ 0.37884989 -0.65994347 0.64880457]\n", + " [ 0.36279726 -0.6845881 0.63223199]\n", + " [ 0.46926377 -0.55436067 0.68736873]\n", + " [ 0.45357831 -0.58367145 0.67349413]\n", + " [ 0.43749563 -0.61205768 0.65877384]\n", + " [ 0.42112907 -0.63937338 0.64331329]\n", + " [ 0.40460546 -0.66548899 0.62723107]\n", + " [ 0.3880655 -0.69029067 0.61065862]\n", + " [ 0.49628352 -0.55839805 0.6647513 ]\n", + " [ 0.48041857 -0.58792618 0.65080013]\n", + " [ 0.46409185 -0.61650581 0.63603407]\n", + " [ 0.44741668 -0.64399065 0.62055971]\n", + " [ 0.43051916 -0.67025213 0.60449593]\n", + " [ 0.41353999 -0.69517734 0.58797376]\n", + " [ 0.52311165 -0.56177349 0.64090931]\n", + " [ 0.50709894 -0.59146654 0.62691147]\n", + " [ 0.49056396 -0.62019132 0.61213538]\n", + " [ 0.47362083 -0.6478012 0.59668829]\n", + " [ 0.45639532 -0.6741689 0.5806889 ]\n", + " [ 0.4390274 -0.69918319 0.5642675 ]\n", + " [ 0.54956662 -0.56443753 0.61594383]\n", + " [ 0.53343851 -0.59424148 0.60193058]\n", + " [ 0.51673103 -0.62306236 0.58718168]\n", + " [ 0.49955987 -0.65075333 0.5718042 ]\n", + " [ 0.48205137 -0.67718824 0.55591597]\n", + " [ 0.46434514 -0.70225752 0.53964614]\n", + " [ 0.57547457 -0.56635358 0.58997682]\n", + " [ 0.55926484 -0.59621275 0.5759802 ]\n", + " [ 0.54242197 -0.62507999 0.56129619]\n", + " [ 0.52506357 -0.65280835 0.54603068]\n", + " [ 0.50731735 -0.6792724 0.53030001]\n", + " [ 0.48932332 -0.70436362 0.51423202]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:cartToSphere: vec: [[ 0.46115962 0.65623267 -0.59723571]\n", + " [ 0.44318731 0.64963878 -0.61770095]\n", + " [ 0.42449968 0.64238915 -0.63807225]\n", + " [ 0.40515182 0.63448421 -0.65824144]\n", + " [ 0.38520373 0.62593121 -0.67810634]\n", + " [ 0.36472126 0.61674484 -0.69757022]\n", + " [ 0.34377639 0.60694754 -0.71654203]\n", + " [ 0.32244688 0.59656956 -0.73493726]\n", + " [ 0.46115962 0.65623267 -0.59723571]\n", + " [ 0.478918 0.63504451 -0.60609902]\n", + " [ 0.49615555 0.61336887 -0.61449842]\n", + " [ 0.5128088 0.59129732 -0.62241033]\n", + " [ 0.52881874 0.56892742 -0.62981929]\n", + " [ 0.54413033 0.54636253 -0.63671828]\n", + " [ 0.55869164 0.52371215 -0.64310904]\n", + " [ 0.57245269 0.50109272 -0.64900231]\n", + " [ 0.32244688 0.59656956 -0.73493726]\n", + " [ 0.34090557 0.57468813 -0.7439872 ]\n", + " [ 0.35899803 0.55236021 -0.75234209]\n", + " [ 0.37665726 0.52968108 -0.75997846]\n", + " [ 0.3938217 0.50675074 -0.7668821 ]\n", + " [ 0.41043557 0.48367297 -0.77304793]\n", + " [ 0.42644865 0.46055506 -0.77847966]\n", + " [ 0.44181551 0.43750844 -0.78318926]\n", + " [ 0.57245269 0.50109272 -0.64900231]\n", + " [ 0.55601161 0.49320773 -0.66902707]\n", + " [ 0.53872523 0.48490769 -0.68894097]\n", + " [ 0.52065389 0.47619455 -0.70863127]\n", + " [ 0.50185981 0.46707778 -0.72799387]\n", + " [ 0.48240834 0.45757421 -0.74693241]\n", + " [ 0.46236892 0.44770763 -0.76535799]\n", + " [ 0.44181551 0.43750844 -0.78318926]\n", + " [ 0.45347673 0.65336629 -0.60619415]\n", + " [ 0.43096267 0.64484341 -0.6312275 ]\n", + " [ 0.40742833 0.63533542 -0.65601147]\n", + " [ 0.38298205 0.62485282 -0.68035557]\n", + " [ 0.35774508 0.61342269 -0.70408171]\n", + " [ 0.33185237 0.60108959 -0.72702497]\n", + " [ 0.4689022 0.64703837 -0.60122547]\n", + " [ 0.49032559 0.62073032 -0.61177994]\n", + " [ 0.51090317 0.59378037 -0.62161308]\n", + " [ 0.53052447 0.56636566 -0.63069305]\n", + " [ 0.54908807 0.53867652 -0.63900696]\n", + " [ 0.56649923 0.51091734 -0.64656176]\n", + " [ 0.33060895 0.58712639 -0.73890481]\n", + " [ 0.35299418 0.5599965 -0.74953254]\n", + " [ 0.37476203 0.53229001 -0.75909207]\n", + " [ 0.39579688 0.5041891 -0.76755337]\n", + " [ 0.41599603 0.4758848 -0.77490707]\n", + " [ 0.43526906 0.44757627 -0.78116345]\n", + " [ 0.565346 0.49778314 -0.65772019]\n", + " [ 0.54461858 0.48784105 -0.68220357]\n", + " [ 0.52268136 0.47727642 -0.7064074 ]\n", + " [ 0.49964804 0.46610361 -0.73013647]\n", + " [ 0.47563903 0.4543535 -0.75321339]\n", + " [ 0.45078404 0.44207269 -0.77547759]\n", + " [ 0.46116098 0.6561397 -0.59733679]\n", + " [ 0.46116098 0.6561397 -0.59733679]\n", + " [ 0.44183519 0.4376224 -0.78311449]\n", + " [ 0.44183519 0.4376224 -0.78311449]\n", + " [ 0.46124932 0.64422942 -0.61009632]\n", + " [ 0.48276899 0.6178198 -0.62067124]\n", + " [ 0.50345362 0.59076746 -0.63049842]\n", + " [ 0.52319287 0.56324994 -0.63954572]\n", + " [ 0.54188598 0.53545754 -0.64779998]\n", + " [ 0.55943937 0.50759408 -0.65526776]\n", + " [ 0.43881459 0.63561738 -0.63516321]\n", + " [ 0.46058135 0.60895501 -0.64578527]\n", + " [ 0.48154534 0.58165117 -0.65558828]\n", + " [ 0.50159604 0.55388477 -0.66453974]\n", + " [ 0.52063393 0.52584636 -0.67262613]\n", + " [ 0.5385682 0.49773843 -0.67985348]\n", + " [ 0.41534523 0.62603757 -0.65997371]\n", + " [ 0.43732096 0.59917515 -0.67062622]\n", + " [ 0.45852954 0.57167777 -0.68039341]\n", + " [ 0.47885967 0.54372576 -0.68924286]\n", + " [ 0.49821208 0.51551013 -0.69716141]\n", + " [ 0.51649765 0.48723239 -0.70415536]\n", + " [ 0.3909492 0.61550101 -0.68433707]\n", + " [ 0.41309493 0.58849275 -0.69500278]\n", + " [ 0.4345132 0.5608612 -0.70472193]\n", + " [ 0.4550915 0.53278784 -0.71346257]\n", + " [ 0.47473002 0.50446408 -0.72121245]\n", + " [ 0.49334022 0.4760907 -0.72797875]\n", + " [ 0.36574731 0.60403528 -0.70807505]\n", + " [ 0.38802289 0.5769369 -0.71873643]\n", + " [ 0.40961501 0.54923185 -0.72839544]\n", + " [ 0.43040976 0.52110234 -0.73702089]\n", + " [ 0.45030628 0.49273988 -0.74460168]\n", + " [ 0.46921568 0.46434459 -0.75114629]\n", + " [ 0.33987414 0.59168536 -0.73102258]\n", + " [ 0.3622382 0.5645536 -0.74166213]\n", + " [ 0.38396696 0.53683659 -0.75124952]\n", + " [ 0.40494522 0.50871663 -0.75975441]\n", + " [ 0.42507075 0.48038494 -0.76716698]\n", + " [ 0.44425362 0.45204095 -0.77349706]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:fp_optics: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:cartToSphere: vec: [[-0.41002379 -0.06474337 -0.90977403]\n", + " [-0.39404223 -0.04327191 -0.91807313]\n", + " [-0.3774245 -0.02134004 -0.92579444]\n", + " [-0.36021963 0.00096679 -0.93286702]\n", + " [-0.34248096 0.02356228 -0.93922927]\n", + " [-0.32426706 0.04635835 -0.94482897]\n", + " [-0.30564194 0.06926509 -0.94962379]\n", + " [-0.28667476 0.09219138 -0.95358184]\n", + " [-0.41002379 -0.06474337 -0.90977403]\n", + " [-0.43060889 -0.04607949 -0.90136156]\n", + " [-0.45071159 -0.02736102 -0.89225021]\n", + " [-0.47025688 -0.00865953 -0.8824871 ]\n", + " [-0.48917383 0.00995477 -0.8721295 ]\n", + " [-0.50739522 0.02841341 -0.86124489]\n", + " [-0.52485663 0.04664975 -0.84991136]\n", + " [-0.54149519 0.06459875 -0.83821832]\n", + " [-0.28667476 0.09219138 -0.95358184]\n", + " [-0.30804631 0.11137663 -0.94482946]\n", + " [-0.32907199 0.13040236 -0.93525764]\n", + " [-0.34967282 0.14919501 -0.92491609]\n", + " [-0.36977513 0.16768392 -0.91386457]\n", + " [-0.389311 0.18580184 -0.90217217]\n", + " [-0.40821808 0.20348485 -0.8899168 ]\n", + " [-0.42643869 0.22067164 -0.87718531]\n", + " [-0.54149519 0.06459875 -0.83821832]\n", + " [-0.52716275 0.08644145 -0.84535632]\n", + " [-0.51203579 0.10858489 -0.85207316]\n", + " [-0.49616809 0.13093865 -0.85829616]\n", + " [-0.47961484 0.15341324 -0.86396411]\n", + " [-0.46243388 0.17591951 -0.8690266 ]\n", + " [-0.44468666 0.19836847 -0.8734436 ]\n", + " [-0.42643869 0.22067164 -0.87718531]\n", + " [-0.4032084 -0.05537993 -0.91343092]\n", + " [-0.38318827 -0.02874346 -0.92322292]\n", + " [-0.36226075 -0.00150044 -0.93207558]\n", + " [-0.3405222 0.02619068 -0.93987163]\n", + " [-0.31808046 0.05416774 -0.94651502]\n", + " [-0.29505552 0.08226467 -0.95193212]\n", + " [-0.41900009 -0.0565444 -0.90622385]\n", + " [-0.44391529 -0.03362358 -0.8954377 ]\n", + " [-0.46803096 -0.01069216 -0.88364738]\n", + " [-0.49121485 0.01212002 -0.87095412]\n", + " [-0.51334311 0.0346869 -0.85748217]\n", + " [-0.53429784 0.0568865 -0.84337996]\n", + " [-0.29609545 0.1004927 -0.9498572 ]\n", + " [-0.32206588 0.12390837 -0.93857354]\n", + " [-0.34743763 0.1470112 -0.92610734]\n", + " [-0.37207287 0.16966989 -0.91256447]\n", + " [-0.39584652 0.19176059 -0.89807205]\n", + " [-0.41864581 0.21316679 -0.88277721]\n", + " [-0.53529143 0.07401868 -0.84141804]\n", + " [-0.51718329 0.10100312 -0.849894 ]\n", + " [-0.49793516 0.12834941 -0.85766369]\n", + " [-0.47764802 0.15589247 -0.86460968]\n", + " [-0.45642846 0.18346814 -0.87063914]\n", + " [-0.43439126 0.21091279 -0.87568261]\n", + " [-0.41004141 -0.06460718 -0.90977577]\n", + " [-0.41004141 -0.06460718 -0.90977577]\n", + " [-0.42644079 0.22053786 -0.87721793]\n", + " [-0.42644079 0.22053786 -0.87721793]\n", + " [-0.4122031 -0.04728704 -0.90986402]\n", + " [-0.4372269 -0.02429409 -0.89902305]\n", + " [-0.46146059 -0.00131047 -0.88715974]\n", + " [-0.48477197 0.0215335 -0.87437546]\n", + " [-0.50703785 0.04411148 -0.86079428]\n", + " [-0.52814153 0.06630147 -0.84656402]\n", + " [-0.39227396 -0.02057529 -0.91961829]\n", + " [-0.41757526 0.00259352 -0.90863864]\n", + " [-0.4421146 0.02569651 -0.89659041]\n", + " [-0.46575947 0.04860215 -0.88357566]\n", + " [-0.48838782 0.07118355 -0.86971848]\n", + " [-0.50988584 0.09331891 -0.85516549]\n", + " [-0.37142079 0.00672786 -0.92844027]\n", + " [-0.39695465 0.03002929 -0.91734685]\n", + " [-0.42175769 0.05320809 -0.90514604]\n", + " [-0.44569644 0.07613194 -0.89194092]\n", + " [-0.46864909 0.09867385 -0.8778562 ]\n", + " [-0.4905036 0.12071268 -0.86303804]\n", + " [-0.34973948 0.03446351 -0.93621288]\n", + " [-0.37545992 0.05785297 -0.92503129]\n", + " [-0.40048437 0.08106269 -0.91271086]\n", + " [-0.42467802 0.10396005 -0.89935582]\n", + " [-0.44791852 0.12641851 -0.88509172]\n", + " [-0.47009457 0.14831799 -0.87006486]\n", + " [-0.32733736 0.06246908 -0.94284032]\n", + " [-0.35319706 0.08590093 -0.93159695]\n", + " [-0.37839952 0.10909599 -0.91919088]\n", + " [-0.40280853 0.13192187 -0.90572728]\n", + " [-0.42630074 0.15425295 -0.89133254]\n", + " [-0.44876464 0.17597056 -0.87615333]\n", + " [-0.30433401 0.09057818 -0.94824913]\n", + " [-0.33028429 0.11400623 -0.93697111]\n", + " [-0.35561997 0.13714108 -0.92451434]\n", + " [-0.38020359 0.15985106 -0.91098456]\n", + " [-0.40391055 0.18201183 -0.89650877]\n", + " [-0.42662845 0.2035063 -0.88123399]]\n", + "DEBUG:root:fp_optics: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:cartToSphere: vec: [[-0.32540211 -0.37933647 0.86615086]\n", + " [-0.35177202 -0.37594174 0.85727723]\n", + " [-0.37837722 -0.37217675 0.84753475]\n", + " [-0.40509631 -0.36804009 0.83692501]\n", + " [-0.43181184 -0.36353422 0.8254583 ]\n", + " [-0.45840885 -0.35866575 0.81315448]\n", + " [-0.48477434 -0.35344581 0.80004369]\n", + " [-0.51079793 -0.34789013 0.78616661]\n", + " [-0.32540211 -0.37933647 0.86615086]\n", + " [-0.32577008 -0.35252351 0.87726907]\n", + " [-0.32595611 -0.32548988 0.88758603]\n", + " [-0.32596606 -0.29834489 0.89707104]\n", + " [-0.3258111 -0.2712009 0.9057026 ]\n", + " [-0.32550806 -0.24417319 0.91346809]\n", + " [-0.32507976 -0.21738026 0.9203635 ]\n", + " [-0.3245551 -0.19094411 0.92639318]\n", + " [-0.51079793 -0.34789013 0.78616661]\n", + " [-0.51102939 -0.32018119 0.79770481]\n", + " [-0.5108036 -0.29227488 0.80848938]\n", + " [-0.510128 -0.26428532 0.81848806]\n", + " [-0.50901586 -0.23632723 0.82767886]\n", + " [-0.50748604 -0.20851534 0.8360498 ]\n", + " [-0.50556269 -0.18096482 0.8435983 ]\n", + " [-0.5032753 -0.15379282 0.85033037]\n", + " [-0.3245551 -0.19094411 0.92639318]\n", + " [-0.34986919 -0.18592266 0.91816355]\n", + " [-0.37545676 -0.18079857 0.90903471]\n", + " [-0.40119189 -0.17557196 0.89901032]\n", + " [-0.42695419 -0.17024728 0.88810246]\n", + " [-0.45262839 -0.16483336 0.87633185]\n", + " [-0.47810399 -0.15934303 0.86372818]\n", + " [-0.5032753 -0.15379282 0.85033037]\n", + " [-0.33686414 -0.37781009 0.86242802]\n", + " [-0.36935696 -0.37339997 0.8509688 ]\n", + " [-0.40208203 -0.36843209 0.83820513]\n", + " [-0.43482159 -0.36290931 0.8241523 ]\n", + " [-0.46736394 -0.3568439 0.80884694]\n", + " [-0.49950209 -0.35025824 0.79234893]\n", + " [-0.32567471 -0.36766857 0.8710659 ]\n", + " [-0.3260027 -0.33464359 0.8841583 ]\n", + " [-0.32606247 -0.30139544 0.89601566]\n", + " [-0.32587234 -0.26812971 0.90659455]\n", + " [-0.32546334 -0.23505867 0.91587174]\n", + " [-0.32488001 -0.20240191 0.9238433 ]\n", + " [-0.51086703 -0.33585999 0.79133618]\n", + " [-0.51084274 -0.30175289 0.80497509]\n", + " [-0.51013856 -0.26746257 0.81744873]\n", + " [-0.50877652 -0.23320004 0.82871237]\n", + " [-0.50679126 -0.19917654 0.83874389]\n", + " [-0.50422949 -0.16560485 0.84754213]\n", + " [-0.3355526 -0.18885722 0.9228962 ]\n", + " [-0.36677893 -0.18263502 0.91220484]\n", + " [-0.39829027 -0.1762581 0.90016551]\n", + " [-0.42986269 -0.16973284 0.88679695]\n", + " [-0.46128392 -0.16307544 0.87213734]\n", + " [-0.49235256 -0.15631109 0.85624518]\n", + " [-0.32549331 -0.37923429 0.86616133]\n", + " [-0.32549331 -0.37923429 0.86616133]\n", + " [-0.50319826 -0.15390402 0.85035585]\n", + " [-0.50319826 -0.15390402 0.85035585]\n", + " [-0.33704411 -0.36619928 0.86735192]\n", + " [-0.3373489 -0.33304596 0.88049765]\n", + " [-0.337357 -0.29966906 0.89240613]\n", + " [-0.33708645 -0.26627452 0.90303411]\n", + " [-0.33656791 -0.23307451 0.91235865]\n", + " [-0.33584567 -0.20028826 0.92037617]\n", + " [-0.36953281 -0.36167594 0.85594159]\n", + " [-0.36977329 -0.32820154 0.86922464]\n", + " [-0.36963896 -0.29450479 0.88126839]\n", + " [-0.36914736 -0.26079284 0.89202989]\n", + " [-0.3683284 -0.22727766 0.90148714]\n", + " [-0.36722556 -0.19417709 0.90963765]\n", + " [-0.40225361 -0.35661655 0.84321804]\n", + " [-0.40243123 -0.32288476 0.85661808]\n", + " [-0.40215913 -0.28893521 0.86878333]\n", + " [-0.40145495 -0.25497642 0.87967093]\n", + " [-0.40034852 -0.22122026 0.88925961]\n", + " [-0.39888298 -0.18788305 0.89754795]\n", + " [-0.4349887 -0.35102461 0.82919633]\n", + " [-0.4351045 -0.31710081 0.8426928 ]\n", + " [-0.43469837 -0.28296679 0.85496615]\n", + " [-0.43378876 -0.24883239 0.8659733 ]\n", + " [-0.43240628 -0.2149094 0.8756933 ]\n", + " [-0.43059442 -0.18141272 0.88412548]\n", + " [-0.46752636 -0.34491309 0.81391281]\n", + " [-0.46758143 -0.31086463 0.82748461]\n", + " [-0.46704515 -0.27661602 0.83985261]\n", + " [-0.46593732 -0.24237804 0.85097315]\n", + " [-0.46429 -0.20836232 0.86082515]\n", + " [-0.4621478 -0.17478263 0.8694081 ]\n", + " [-0.49965964 -0.33830502 0.79742708]\n", + " [-0.49965565 -0.3042009 0.81105243]\n", + " [-0.49899417 -0.26990882 0.82350109]\n", + " [-0.49769665 -0.23563985 0.83472864]\n", + " [-0.49579704 -0.20160538 0.8447133 ]\n", + " [-0.49334146 -0.16801835 0.85345418]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:fp_optics: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:fp_optics: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:cartToSphere: vec: [[ 0.11458694 -0.2068357 -0.97164234]\n", + " [ 0.11899116 -0.23369502 -0.96500142]\n", + " [ 0.12338595 -0.26089859 -0.95744861]\n", + " [ 0.12774868 -0.28832794 -0.94897169]\n", + " [ 0.13205794 -0.31586715 -0.93956833]\n", + " [ 0.1362933 -0.34340126 -0.92924685]\n", + " [ 0.14043534 -0.37081576 -0.91802701]\n", + " [ 0.14446575 -0.39799731 -0.90594028]\n", + " [ 0.11458694 -0.2068357 -0.97164234]\n", + " [ 0.14301281 -0.2015867 -0.96897376]\n", + " [ 0.17124401 -0.1962801 -0.96547895]\n", + " [ 0.19917242 -0.19094174 -0.9611824 ]\n", + " [ 0.22669238 -0.1856013 -0.95611857]\n", + " [ 0.25370068 -0.1802929 -0.95033175]\n", + " [ 0.2800961 -0.17505568 -0.94387589]\n", + " [ 0.3057786 -0.16993438 -0.93681468]\n", + " [ 0.14446575 -0.39799731 -0.90594028]\n", + " [ 0.17384345 -0.39242073 -0.90320785]\n", + " [ 0.20297097 -0.3865121 -0.89967282]\n", + " [ 0.23173534 -0.38029978 -0.89536071]\n", + " [ 0.2600288 -0.37381603 -0.89030703]\n", + " [ 0.28774927 -0.36709662 -0.88455663]\n", + " [ 0.31479978 -0.36018083 -0.87816335]\n", + " [ 0.3410868 -0.35311166 -0.87118996]\n", + " [ 0.3057786 -0.16993438 -0.93681468]\n", + " [ 0.31168704 -0.19542928 -0.9298702 ]\n", + " [ 0.31734498 -0.22134881 -0.92211543]\n", + " [ 0.32272908 -0.24756805 -0.91354037]\n", + " [ 0.32781657 -0.27396737 -0.904145 ]\n", + " [ 0.33258552 -0.30043156 -0.89393945]\n", + " [ 0.33701523 -0.32684905 -0.88294418]\n", + " [ 0.3410868 -0.35311166 -0.87118996]\n", + " [ 0.11660464 -0.21847848 -0.9688501 ]\n", + " [ 0.12200001 -0.25164377 -0.96009969]\n", + " [ 0.1273584 -0.28520806 -0.94996642]\n", + " [ 0.13263988 -0.31895702 -0.93844184]\n", + " [ 0.13780688 -0.35267892 -0.92554138]\n", + " [ 0.14282405 -0.3861634 -0.91130627]\n", + " [ 0.12701308 -0.20464674 -0.97056035]\n", + " [ 0.1617357 -0.1981714 -0.96673143]\n", + " [ 0.19605816 -0.19163462 -0.96168465]\n", + " [ 0.2297849 -0.18508942 -0.95547936]\n", + " [ 0.26272588 -0.17859868 -0.94819704]\n", + " [ 0.29469527 -0.17223676 -0.93994106]\n", + " [ 0.1572843 -0.39551596 -0.90489158]\n", + " [ 0.1931358 -0.38845482 -0.90100023]\n", + " [ 0.22849879 -0.38092285 -0.8959275 ]\n", + " [ 0.26317264 -0.37297782 -0.88973463]\n", + " [ 0.29696938 -0.36468561 -0.88250416]\n", + " [ 0.32971202 -0.35612 -0.87433891]\n", + " [ 0.30829719 -0.18100758 -0.93391065]\n", + " [ 0.31537238 -0.21255724 -0.92485658]\n", + " [ 0.32204819 -0.24461987 -0.91457426]\n", + " [ 0.32828251 -0.27697313 -0.90305951]\n", + " [ 0.33403498 -0.30940481 -0.890331 ]\n", + " [ 0.33926822 -0.34171091 -0.87643068]\n", + " [ 0.1146994 -0.206909 -0.97161346]\n", + " [ 0.1146994 -0.206909 -0.97161346]\n", + " [ 0.34098502 -0.35304661 -0.87125616]\n", + " [ 0.34098502 -0.35304661 -0.87125616]\n", + " [ 0.12896628 -0.21620534 -0.96779282]\n", + " [ 0.16382078 -0.20968073 -0.96394852]\n", + " [ 0.19826871 -0.20306729 -0.95888122]\n", + " [ 0.23211421 -0.19641773 -0.95265055]\n", + " [ 0.26516747 -0.18979428 -0.94533822]\n", + " [ 0.29724339 -0.18327056 -0.93704764]\n", + " [ 0.13448228 -0.24934274 -0.95903218]\n", + " [ 0.16966754 -0.24268802 -0.95515206]\n", + " [ 0.20442824 -0.23586896 -0.95003944]\n", + " [ 0.23856744 -0.22893782 -0.94375476]\n", + " [ 0.27189593 -0.22195562 -0.93638043]\n", + " [ 0.30423063 -0.21499404 -0.92802009]\n", + " [ 0.1399384 -0.28288348 -0.94889103]\n", + " [ 0.17539007 -0.27611213 -0.94498699]\n", + " [ 0.21039982 -0.26910319 -0.9398486 ]\n", + " [ 0.24476943 -0.26190928 -0.93353707]\n", + " [ 0.27831005 -0.25459117 -0.92613544]\n", + " [ 0.31084064 -0.24721947 -0.91774758]\n", + " [ 0.14529404 -0.31661329 -0.93736101]\n", + " [ 0.180946 -0.30973869 -0.93344549]\n", + " [ 0.21613981 -0.30255485 -0.92830175]\n", + " [ 0.25067607 -0.29511549 -0.92199152]\n", + " [ 0.28436618 -0.28748215 -0.91459821]\n", + " [ 0.31703083 -0.27972545 -0.90622576]\n", + " [ 0.15051082 -0.35032062 -0.92445766]\n", + " [ 0.18629492 -0.34335664 -0.92054355]\n", + " [ 0.22160639 -0.33601332 -0.91541557]\n", + " [ 0.25624495 -0.32834599 -0.90913554]\n", + " [ 0.29002225 -0.32041777 -0.90178686]\n", + " [ 0.32276031 -0.31230022 -0.8934732 ]\n", + " [ 0.15555275 -0.38379527 -0.91022224]\n", + " [ 0.19139914 -0.37675671 -0.90632265]\n", + " [ 0.2267607 -0.36927073 -0.90123177]\n", + " [ 0.26143679 -0.36139447 -0.89501108]\n", + " [ 0.29523934 -0.35319306 -0.88774343]\n", + " [ 0.32799119 -0.34473966 -0.87953189]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:fp_optics: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:cartToSphere: vec: [[-9.22490425e-01 3.82441564e-01 5.24391682e-02]\n", + " [-9.20530008e-01 3.89771011e-01 2.65153561e-02]\n", + " [-9.17780775e-01 3.97087449e-01 8.15432085e-05]\n", + " [-9.14218776e-01 4.04336530e-01 -2.67581962e-02]\n", + " [-9.09829917e-01 4.11466429e-01 -5.38971246e-02]\n", + " [-9.04609465e-01 4.18430157e-01 -8.12275800e-02]\n", + " [-8.98561825e-01 4.25186585e-01 -1.08641684e-01]\n", + " [-8.91700547e-01 4.31700721e-01 -1.36031691e-01]\n", + " [-9.22490425e-01 3.82441564e-01 5.24391682e-02]\n", + " [-9.12097832e-01 4.05186127e-01 6.24639686e-02]\n", + " [-9.00786711e-01 4.28163695e-01 7.25200097e-02]\n", + " [-8.88564492e-01 4.51259346e-01 8.25720738e-02]\n", + " [-8.75449082e-01 4.74359415e-01 9.25853648e-02]\n", + " [-8.61468057e-01 4.97354463e-01 1.02524753e-01]\n", + " [-8.46658335e-01 5.20140517e-01 1.12354378e-01]\n", + " [-8.31066125e-01 5.42619484e-01 1.22037662e-01]\n", + " [-8.91700547e-01 4.31700721e-01 -1.36031691e-01]\n", + " [-8.80846437e-01 4.55929163e-01 -1.27429009e-01]\n", + " [-8.69060525e-01 4.80291404e-01 -1.18549442e-01]\n", + " [-8.56351502e-01 5.04666855e-01 -1.09423354e-01]\n", + " [-8.42736021e-01 5.28942014e-01 -1.00081691e-01]\n", + " [-8.28239774e-01 5.53008456e-01 -9.05567440e-02]\n", + " [-8.12898897e-01 5.76761080e-01 -8.08828790e-02]\n", + " [-7.96760902e-01 6.00097747e-01 -7.10968241e-02]\n", + " [-8.31066125e-01 5.42619484e-01 1.22037662e-01]\n", + " [-8.28412842e-01 5.51879679e-01 9.57130243e-02]\n", + " [-8.25033064e-01 5.60881625e-01 6.87913221e-02]\n", + " [-8.20904717e-01 5.69564186e-01 4.13773305e-02]\n", + " [-8.16013883e-01 5.77872882e-01 1.35747743e-02]\n", + " [-8.10355256e-01 5.85759149e-01 -1.45112893e-02]\n", + " [-8.03932898e-01 5.93179912e-01 -4.27725025e-02]\n", + " [-7.96760902e-01 6.00097747e-01 -7.10968241e-02]\n", + " [-9.21696643e-01 3.85713120e-01 4.12393899e-02]\n", + " [-9.18766796e-01 3.94695545e-01 9.11053220e-03]\n", + " [-9.14627186e-01 4.03604135e-01 -2.36814673e-02]\n", + " [-9.09247813e-01 4.12342248e-01 -5.69410638e-02]\n", + " [-9.02619937e-01 4.20823485e-01 -9.04701280e-02]\n", + " [-8.94755462e-01 4.28974678e-01 -1.24070097e-01]\n", + " [-9.18066674e-01 3.92347908e-01 5.67159654e-02]\n", + " [-9.04711173e-01 4.20396155e-01 6.90272804e-02]\n", + " [-8.89982106e-01 4.48680209e-01 8.13506072e-02]\n", + " [-8.73908153e-01 4.76990048e-01 9.36217636e-02]\n", + " [-8.56540043e-01 5.05124326e-01 1.05776034e-01]\n", + " [-8.37949604e-01 5.32894065e-01 1.17747089e-01]\n", + " [-8.87107849e-01 4.42217985e-01 -1.32222986e-01]\n", + " [-8.73177966e-01 4.72017763e-01 -1.21488565e-01]\n", + " [-8.57856211e-01 5.01897903e-01 -1.10368548e-01]\n", + " [-8.41169921e-01 5.31646560e-01 -9.89196563e-02]\n", + " [-8.23166565e-01 5.61063915e-01 -8.72014252e-02]\n", + " [-8.03917383e-01 5.89957664e-01 -7.52781244e-02]\n", + " [-8.30051665e-01 5.46607956e-01 1.10607302e-01]\n", + " [-8.26314973e-01 5.57790901e-01 7.79286659e-02]\n", + " [-8.21464131e-01 5.68524586e-01 4.44575769e-02]\n", + " [-8.15470130e-01 5.78705981e-01 1.03853545e-02]\n", + " [-8.08323286e-01 5.88245635e-01 -2.40943548e-02]\n", + " [-8.00035227e-01 5.97066572e-01 -5.87804776e-02]\n", + " [-9.22451053e-01 3.82543846e-01 5.23856858e-02]\n", + " [-9.22451053e-01 3.82543846e-01 5.23856858e-02]\n", + " [-7.96843161e-01 5.99996004e-01 -7.10335996e-02]\n", + " [-7.96843161e-01 5.99996004e-01 -7.10335996e-02]\n", + " [-9.17301041e-01 3.95581955e-01 4.55380798e-02]\n", + " [-9.03907534e-01 4.23808101e-01 5.77742479e-02]\n", + " [-8.89132159e-01 4.52258444e-01 7.00450145e-02]\n", + " [-8.73004162e-01 4.80720859e-01 8.22872310e-02]\n", + " [-8.55574385e-01 5.08993343e-01 9.44364785e-02]\n", + " [-8.36914664e-01 5.36886674e-01 1.06426237e-01]\n", + " [-9.14338096e-01 4.04732780e-01 1.33125200e-02]\n", + " [-9.00837688e-01 4.33417208e-01 2.53176398e-02]\n", + " [-8.85937830e-01 4.62291723e-01 3.74235862e-02]\n", + " [-8.69668470e-01 4.91141184e-01 4.95690382e-02]\n", + " [-8.52080091e-01 5.19763310e-01 6.16897174e-02]\n", + " [-8.33244249e-01 5.47968664e-01 7.37181472e-02]\n", + " [-9.10164226e-01 4.13784371e-01 -1.95851223e-02]\n", + " [-8.96559692e-01 4.42853628e-01 -7.83474633e-03]\n", + " [-8.81546091e-01 4.72080302e-01 4.08385962e-03]\n", + " [-8.65152984e-01 5.01249212e-01 1.61103004e-02]\n", + " [-8.47429824e-01 5.30159002e-01 2.81802228e-02]\n", + " [-8.28447694e-01 5.58620034e-01 4.02253116e-02]\n", + " [-9.04749975e-01 4.22638026e-01 -5.29582942e-02]\n", + " [-8.91044871e-01 4.52015509e-01 -4.14851492e-02]\n", + " [-8.75928177e-01 4.81521707e-01 -2.97770796e-02]\n", + " [-8.59428500e-01 5.10942727e-01 -1.78936593e-02]\n", + " [-8.41594127e-01 5.40078262e-01 -5.89872483e-03]\n", + " [-8.22495779e-01 5.68738078e-01 6.13940544e-03]\n", + " [-8.98086721e-01 4.31206688e-01 -8.66085083e-02]\n", + " [-8.84284293e-01 4.60815431e-01 -7.54349234e-02]\n", + " [-8.69074319e-01 4.90529081e-01 -6.39613088e-02]\n", + " [-8.52484499e-01 5.20135098e-01 -5.22461328e-02]\n", + " [-8.34562309e-01 5.49433784e-01 -4.03518152e-02]\n", + " [-8.15378429e-01 5.78233990e-01 -2.83455513e-02]\n", + " [-8.90186295e-01 4.39417113e-01 -1.20336862e-01]\n", + " [-8.76289222e-01 4.69180543e-01 -1.09484325e-01]\n", + " [-8.60995049e-01 4.99029929e-01 -9.82682894e-02]\n", + " [-8.44331084e-01 5.28753408e-01 -8.67459162e-02]\n", + " [-8.26344665e-01 5.58151292e-01 -7.49775337e-02]\n", + " [-8.07106823e-01 5.87031527e-01 -6.30282699e-02]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:cartToSphere: vec: [[-0.25011601 0.96093907 -0.11848247]\n", + " [-0.25116343 0.95699864 -0.1451569 ]\n", + " [-0.25189129 0.95229509 -0.17229291]\n", + " [-0.25230165 0.94680401 -0.19976495]\n", + " [-0.25239597 0.94051157 -0.22745169]\n", + " [-0.25217532 0.93341447 -0.25523526]\n", + " [-0.25164098 0.92552011 -0.28300059]\n", + " [-0.250795 0.91684655 -0.31063528]\n", + " [-0.25011601 0.96093907 -0.11848247]\n", + " [-0.22399469 0.96745461 -0.11771981]\n", + " [-0.19713422 0.97336898 -0.11700827]\n", + " [-0.16964328 0.97861569 -0.11632923]\n", + " [-0.14163015 0.98313867 -0.1156687 ]\n", + " [-0.11320353 0.98689211 -0.11501704]\n", + " [-0.08447328 0.98984046 -0.11436843]\n", + " [-0.05555066 0.99195857 -0.11372035]\n", + " [-0.250795 0.91684655 -0.31063528]\n", + " [-0.22369564 0.92345673 -0.31174978]\n", + " [-0.19586204 0.92945921 -0.31263979]\n", + " [-0.16739569 0.93478857 -0.31328744]\n", + " [-0.13839978 0.93938889 -0.3136782 ]\n", + " [-0.10898118 0.94321373 -0.31380083]\n", + " [-0.07925137 0.94622641 -0.31364757]\n", + " [-0.04932619 0.94840064 -0.31321422]\n", + " [-0.05555066 0.99195857 -0.11372035]\n", + " [-0.05484588 0.9884187 -0.14149344]\n", + " [-0.05407695 0.98401017 -0.16970466]\n", + " [-0.05324505 0.97870714 -0.19823549]\n", + " [-0.05235169 0.97249388 -0.22696905]\n", + " [-0.05139891 0.96536545 -0.2557884 ]\n", + " [-0.05038932 0.95732827 -0.28457598]\n", + " [-0.04932619 0.94840064 -0.31321422]\n", + " [-0.25052381 0.95933624 -0.13004538]\n", + " [-0.25159132 0.95399764 -0.16306539]\n", + " [-0.25218113 0.94748726 -0.19665342]\n", + " [-0.25229617 0.93977522 -0.23058443]\n", + " [-0.25193849 0.9308555 -0.26464133]\n", + " [-0.25111073 0.92074614 -0.29861338]\n", + " [-0.23882862 0.96383704 -0.11823302]\n", + " [-0.20630233 0.97142756 -0.11733644]\n", + " [-0.17277387 0.97804782 -0.11649743]\n", + " [-0.13844268 0.98359028 -0.1156883 ]\n", + " [-0.10350898 0.98797059 -0.11489125]\n", + " [-0.0681756 0.99112763 -0.11409696]\n", + " [-0.23907981 0.91982981 -0.31105299]\n", + " [-0.20536028 0.92753165 -0.31226943]\n", + " [-0.17063868 0.93425456 -0.31313073]\n", + " [-0.13510413 0.93989171 -0.31360874]\n", + " [-0.09895349 0.9443576 -0.31368284]\n", + " [-0.06239384 0.94758901 -0.3133402 ]\n", + " [-0.05535083 0.99051409 -0.12577012]\n", + " [-0.05444475 0.98559516 -0.16011858]\n", + " [-0.05344327 0.97934471 -0.19500705]\n", + " [-0.05234904 0.9717296 -0.23021981]\n", + " [-0.05116577 0.96274076 -0.26554152]\n", + " [-0.04989857 0.95239496 -0.30075568]\n", + " [-0.25003219 0.96095008 -0.11857003]\n", + " [-0.25003219 0.96095008 -0.11857003]\n", + " [-0.04943244 0.94842667 -0.31311863]\n", + " [-0.04943244 0.94842667 -0.31311863]\n", + " [-0.23927144 0.96224228 -0.12976503]\n", + " [-0.20660765 0.9698814 -0.12900912]\n", + " [-0.1729421 0.97654229 -0.12828168]\n", + " [-0.13847334 0.98211746 -0.12755561]\n", + " [-0.1034011 0.98652243 -0.12681371]\n", + " [-0.06792829 0.98969585 -0.12604714]\n", + " [-0.24021739 0.95694597 -0.16294177]\n", + " [-0.2072111 0.96469315 -0.16257516]\n", + " [-0.17320344 0.97144511 -0.16215721]\n", + " [-0.13839028 0.97709437 -0.16166234]\n", + " [-0.10297011 0.98155597 -0.16107465]\n", + " [-0.06714641 0.98476781 -0.16038613]\n", + " [-0.24071001 0.95046045 -0.19668154]\n", + " [-0.20742967 0.95827178 -0.19669297]\n", + " [-0.17314735 0.96507893 -0.19657733]\n", + " [-0.13805639 0.97077437 -0.19630986]\n", + " [-0.1023544 0.97527256 -0.195875 ]\n", + " [-0.06624581 0.97851069 -0.19526477]\n", + " [-0.24075156 0.94275578 -0.23076012]\n", + " [-0.20726396 0.95058697 -0.23114079]\n", + " [-0.1727734 0.95741279 -0.23132252]\n", + " [-0.13747116 0.96312566 -0.23128044]\n", + " [-0.10155435 0.96763966 -0.23099827]\n", + " [-0.06522847 0.97089139 -0.23046725]\n", + " [-0.24034348 0.93382588 -0.26496082]\n", + " [-0.20671389 0.9416323 -0.26570281]\n", + " [-0.17208085 0.94843964 -0.26617745]\n", + " [-0.13663423 0.95414048 -0.26635884]\n", + " [-0.10057091 0.9586488 -0.26622917]\n", + " [-0.06409731 0.96190097 -0.2657782 ]\n", + " [-0.2394879 0.92368882 -0.29907275]\n", + " [-0.20578058 0.93142578 -0.30016724]\n", + " [-0.17107053 0.93817728 -0.30092902]\n", + " [-0.13554696 0.94383628 -0.30133056]\n", + " [-0.09940669 0.94831708 -0.30135201]\n", + " [-0.06285674 0.95155627 -0.30098123]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:fp_optics: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:fp_optics: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:cartToSphere: vec: [[ 0.22817304 0.54295239 -0.80817063]\n", + " [ 0.20220881 0.54982979 -0.81043124]\n", + " [ 0.17552243 0.5563143 -0.81222304]\n", + " [ 0.14822263 0.56236675 -0.81349474]\n", + " [ 0.12041825 0.5679519 -0.81420519]\n", + " [ 0.09221854 0.5730384 -0.81432348]\n", + " [ 0.06373351 0.57759907 -0.81382882]\n", + " [ 0.03507409 0.58161123 -0.8127104 ]\n", + " [ 0.22817304 0.54295239 -0.80817063]\n", + " [ 0.22641951 0.52068674 -0.82317648]\n", + " [ 0.22430747 0.49758046 -0.83791399]\n", + " [ 0.22185123 0.47370787 -0.85228099]\n", + " [ 0.21906465 0.44914782 -0.86618527]\n", + " [ 0.21596119 0.42398396 -0.87954441]\n", + " [ 0.21255425 0.39830503 -0.89228571]\n", + " [ 0.20885762 0.37220496 -0.90434615]\n", + " [ 0.03507409 0.58161123 -0.8127104 ]\n", + " [ 0.03142362 0.55896859 -0.82859319]\n", + " [ 0.02766909 0.53541327 -0.84413687]\n", + " [ 0.02382457 0.51101492 -0.85924161]\n", + " [ 0.01990423 0.4858482 -0.87381654]\n", + " [ 0.01592257 0.45999449 -0.88777899]\n", + " [ 0.01189464 0.43354298 -0.90105438]\n", + " [ 0.00783608 0.4065908 -0.91357677]\n", + " [ 0.20885762 0.37220496 -0.90434615]\n", + " [ 0.1816844 0.37787935 -0.9078535 ]\n", + " [ 0.15382016 0.38335683 -0.91070132]\n", + " [ 0.12536849 0.38859939 -0.91283802]\n", + " [ 0.09643429 0.39357277 -0.91422147]\n", + " [ 0.06712554 0.39824638 -0.9148191 ]\n", + " [ 0.03755423 0.40259334 -0.91460827]\n", + " [ 0.00783608 0.4065908 -0.91357677]\n", + " [ 0.21694247 0.54592178 -0.80926224]\n", + " [ 0.18462007 0.5540912 -0.81172555]\n", + " [ 0.15132099 0.56163123 -0.81343243]\n", + " [ 0.11724558 0.56847537 -0.81430291]\n", + " [ 0.08259499 0.57456595 -0.81428007]\n", + " [ 0.04757213 0.57985477 -0.81332978]\n", + " [ 0.22736562 0.53337636 -0.81474814]\n", + " [ 0.22497244 0.50551248 -0.83297331]\n", + " [ 0.22205517 0.47645921 -0.85069273]\n", + " [ 0.21863955 0.44635983 -0.86773248]\n", + " [ 0.21475041 0.41536834 -0.88394084]\n", + " [ 0.21041253 0.38365029 -0.89918798]\n", + " [ 0.03359476 0.57184267 -0.81967515]\n", + " [ 0.02904997 0.54346936 -0.83892619]\n", + " [ 0.02436269 0.51379394 -0.85756763]\n", + " [ 0.01955892 0.48295168 -0.87542854]\n", + " [ 0.0146654 0.45109253 -0.89235669]\n", + " [ 0.00971008 0.41838402 -0.90821832]\n", + " [ 0.1971148 0.37479083 -0.90591257]\n", + " [ 0.16333367 0.38161883 -0.90977425]\n", + " [ 0.12861747 0.38811269 -0.91259306]\n", + " [ 0.09315867 0.39420782 -0.91428751]\n", + " [ 0.05715616 0.39984788 -0.91479771]\n", + " [ 0.02081771 0.40498503 -0.91408629]\n", + " [ 0.22808023 0.5429019 -0.80823075]\n", + " [ 0.22808023 0.5429019 -0.80823075]\n", + " [ 0.00795173 0.40667065 -0.91354023]\n", + " [ 0.00795173 0.40667065 -0.91354023]\n", + " [ 0.21617277 0.53637225 -0.81582728]\n", + " [ 0.2136398 0.50843374 -0.83417814]\n", + " [ 0.21060689 0.47929582 -0.85200954]\n", + " [ 0.20709951 0.44910138 -0.86914771]\n", + " [ 0.203142 0.41800422 -0.88544102]\n", + " [ 0.19875877 0.38617002 -0.90075949]\n", + " [ 0.18369633 0.54448414 -0.81840863]\n", + " [ 0.18077338 0.51636551 -0.83707087]\n", + " [ 0.17741888 0.48702111 -0.85518009]\n", + " [ 0.17365723 0.45659237 -0.87256322]\n", + " [ 0.16951159 0.42523231 -0.88906878]\n", + " [ 0.16500549 0.39310714 -0.90456618]\n", + " [ 0.15024607 0.55198216 -0.82020839]\n", + " [ 0.14694095 0.52372971 -0.83911593]\n", + " [ 0.14327196 0.49422809 -0.85744489]\n", + " [ 0.13926267 0.46361693 -0.875023 ]\n", + " [ 0.13493563 0.43204843 -0.89169867]\n", + " [ 0.13031421 0.39968933 -0.90734042]\n", + " [ 0.11602188 0.55879967 -0.82114667]\n", + " [ 0.11234062 0.53045912 -0.84023372]\n", + " [ 0.10836224 0.50084918 -0.85872448]\n", + " [ 0.10411014 0.4701077 -0.87644728]\n", + " [ 0.0996072 0.43838605 -0.89325029]\n", + " [ 0.0948774 0.40585145 -0.90900103]\n", + " [ 0.0812246 0.5648786 -0.82116669]\n", + " [ 0.07717234 0.53649468 -0.84036771]\n", + " [ 0.07288893 0.50682474 -0.8589621 ]\n", + " [ 0.06839845 0.47600515 -0.87677862]\n", + " [ 0.06372498 0.44418655 -0.89366517]\n", + " [ 0.0588939 0.41153647 -0.90948845]\n", + " [ 0.04605728 0.57017033 -0.82023443]\n", + " [ 0.04163973 0.54178668 -0.83948396]\n", + " [ 0.03705658 0.51210437 -0.85812349]\n", + " [ 0.03233326 0.48125885 -0.87598201]\n", + " [ 0.02749574 0.44940019 -0.89290731]\n", + " [ 0.02257127 0.41669598 -0.90876565]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:fp_optics: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:cartToSphere: vec: [[-0.25279157 0.25302504 -0.93384943]\n", + " [-0.2279781 0.24634539 -0.94198723]\n", + " [-0.20242423 0.23948769 -0.9495631 ]\n", + " [-0.17623498 0.23245653 -0.95650677]\n", + " [-0.14951541 0.22526127 -0.96275776]\n", + " [-0.1223709 0.2179161 -0.96826543]\n", + " [-0.09490755 0.21043989 -0.97298901]\n", + " [-0.06723241 0.20285581 -0.97689781]\n", + " [-0.25279157 0.25302504 -0.93384943]\n", + " [-0.24697267 0.27865707 -0.92809199]\n", + " [-0.24069669 0.30460967 -0.92156283]\n", + " [-0.2339946 0.33076069 -0.91424498]\n", + " [-0.22689701 0.35699209 -0.90613156]\n", + " [-0.21943415 0.38318967 -0.89722591]\n", + " [-0.21163635 0.40924282 -0.88754176]\n", + " [-0.20353443 0.43504453 -0.87710318]\n", + " [-0.06723241 0.20285581 -0.97689781]\n", + " [-0.05943189 0.22910848 -0.97158487]\n", + " [-0.0514198 0.25571503 -0.96538377]\n", + " [-0.04322609 0.28255812 -0.95827575]\n", + " [-0.03488094 0.30952359 -0.95025179]\n", + " [-0.02641533 0.33649869 -0.94131337]\n", + " [-0.0178614 0.3633714 -0.93147313]\n", + " [-0.00925244 0.39003069 -0.92075537]\n", + " [-0.20353443 0.43504453 -0.87710318]\n", + " [-0.1772789 0.4299078 -0.88529739]\n", + " [-0.15035331 0.42432708 -0.8929392 ]\n", + " [-0.12285779 0.41830527 -0.89995926]\n", + " [-0.09489369 0.41184975 -0.9062974 ]\n", + " [-0.06656536 0.40497286 -0.91190243]\n", + " [-0.03798099 0.39769219 -0.91673244]\n", + " [-0.00925244 0.39003069 -0.92075537]\n", + " [-0.24205098 0.25022199 -0.93744348]\n", + " [-0.21112703 0.24191618 -0.94704907]\n", + " [-0.17919535 0.23334676 -0.95573967]\n", + " [-0.14644933 0.22452899 -0.96339988]\n", + " [-0.11308302 0.21548897 -0.96993646]\n", + " [-0.07929215 0.20626323 -0.97527854]\n", + " [-0.25022874 0.26413111 -0.9314614 ]\n", + " [-0.2427845 0.29577797 -0.92388911]\n", + " [-0.23468468 0.32778452 -0.91513956]\n", + " [-0.22598577 0.35993175 -0.90519587]\n", + " [-0.21674351 0.39200941 -0.89406425]\n", + " [-0.2070139 0.42381534 -0.88177424]\n", + " [-0.06395456 0.21427704 -0.97467695]\n", + " [-0.05424914 0.24670559 -0.96757087]\n", + " [-0.04425551 0.2795486 -0.95911106]\n", + " [-0.03402912 0.31259467 -0.94927688]\n", + " [-0.02362703 0.34563618 -0.9380711 ]\n", + " [-0.01310889 0.37846724 -0.92552186]\n", + " [-0.19220405 0.43277147 -0.88077606]\n", + " [-0.15956233 0.42617629 -0.89045698]\n", + " [-0.12601355 0.4189168 -0.89923818]\n", + " [-0.0917437 0.41100472 -0.90700508]\n", + " [-0.05694496 0.40246278 -0.91366349]\n", + " [-0.02181811 0.39332561 -0.91914032]\n", + " [-0.25268901 0.25308947 -0.93385972]\n", + " [-0.25268901 0.25308947 -0.93385972]\n", + " [-0.0093803 0.38996683 -0.92078113]\n", + " [-0.0093803 0.38996683 -0.92078113]\n", + " [-0.23952994 0.26130654 -0.93506379]\n", + " [-0.23192926 0.29307498 -0.92753214]\n", + " [-0.22369628 0.32520335 -0.91880507]\n", + " [-0.21488715 0.35747296 -0.90886555]\n", + " [-0.20555711 0.3896737 -0.89771971]\n", + " [-0.1957618 0.42160317 -0.88539713]\n", + " [-0.20843837 0.25310321 -0.94471806]\n", + " [-0.20040765 0.28516347 -0.93729321]\n", + " [-0.19181052 0.31758675 -0.92862661]\n", + " [-0.18270183 0.35015575 -0.91870071]\n", + " [-0.17313551 0.3826608 -0.90752125]\n", + " [-0.16316647 0.41489857 -0.8951178 ]\n", + " [-0.17634564 0.244608 -0.95345118]\n", + " [-0.16790325 0.27688204 -0.94612094]\n", + " [-0.15895956 0.30952595 -0.93751029]\n", + " [-0.1495683 0.34232407 -0.92760097]\n", + " [-0.13978269 0.37506714 -0.91639808]\n", + " [-0.1296576 0.4075508 -0.903931 ]\n", + " [-0.14344467 0.23583622 -0.9611477 ]\n", + " [-0.13460712 0.26824639 -0.95389978]\n", + " [-0.12533242 0.30103668 -0.94534052]\n", + " [-0.11567386 0.33399304 -0.9354508 ]\n", + " [-0.10568487 0.36690665 -0.92423494]\n", + " [-0.09542108 0.39957217 -0.91172194]\n", + " [-0.10992916 0.2268143 -0.96771424]\n", + " [-0.1007119 0.25928366 -0.96053584]\n", + " [-0.09112094 0.29214621 -0.95202288]\n", + " [-0.08121 0.32518931 -0.94215543]\n", + " [-0.07103363 0.3582046 -0.930937 ]\n", + " [-0.0606489 0.39098613 -0.91839619]\n", + " [-0.07599486 0.21757915 -0.97307969]\n", + " [-0.06641377 0.25003165 -0.96595724]\n", + " [-0.05652216 0.2828927 -0.95748471]\n", + " [-0.04637492 0.31595067 -0.94764157]\n", + " [-0.0360284 0.34899773 -0.93643074]\n", + " [-0.02554156 0.38182788 -0.92388046]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:fp_optics: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:cartToSphere: vec: [[ 0.61975702 -0.70922046 0.33601723]\n", + " [ 0.60369112 -0.71258166 0.35746944]\n", + " [ 0.58691892 -0.71537365 0.37916583]\n", + " [ 0.5694786 -0.71756148 0.40099831]\n", + " [ 0.5514157 -0.71911768 0.42285989]\n", + " [ 0.53278282 -0.72002158 0.44464749]\n", + " [ 0.51363962 -0.72025898 0.46626317]\n", + " [ 0.49405265 -0.71982218 0.4876146 ]\n", + " [ 0.61975702 -0.70922046 0.33601723]\n", + " [ 0.63509334 -0.6900501 0.34711283]\n", + " [ 0.65020246 -0.66996457 0.35830746]\n", + " [ 0.66499992 -0.64901532 0.36953243]\n", + " [ 0.67940652 -0.62726285 0.38072051]\n", + " [ 0.69334899 -0.60477525 0.39180872]\n", + " [ 0.70676029 -0.58162771 0.40273949]\n", + " [ 0.71957977 -0.55790226 0.41346102]\n", + " [ 0.49405265 -0.71982218 0.4876146 ]\n", + " [ 0.50894151 -0.70018746 0.50071555]\n", + " [ 0.52372649 -0.67958571 0.5136865 ]\n", + " [ 0.53832422 -0.65806988 0.5264514 ]\n", + " [ 0.5526579 -0.63569816 0.53894071]\n", + " [ 0.56665617 -0.61253584 0.5510904 ]\n", + " [ 0.58025216 -0.58865729 0.56284103]\n", + " [ 0.59338347 -0.56414701 0.57413779]\n", + " [ 0.71957977 -0.55790226 0.41346102]\n", + " [ 0.70396666 -0.56016376 0.43663199]\n", + " [ 0.68747715 -0.56201151 0.45991112]\n", + " [ 0.67014707 -0.56341413 0.48318467]\n", + " [ 0.65201838 -0.56434597 0.50634539]\n", + " [ 0.6331407 -0.56478704 0.52929052]\n", + " [ 0.61357285 -0.56472328 0.55192027]\n", + " [ 0.59338347 -0.56414701 0.57413779]\n", + " [ 0.61289398 -0.71068927 0.34537188]\n", + " [ 0.59272426 -0.71443038 0.37184296]\n", + " [ 0.57153059 -0.717281 0.39857341]\n", + " [ 0.54939376 -0.71918748 0.42536556]\n", + " [ 0.52641065 -0.72011174 0.45202978]\n", + " [ 0.50269392 -0.72003032 0.47838808]\n", + " [ 0.62641242 -0.70098974 0.34091182]\n", + " [ 0.64506692 -0.67687263 0.35458724]\n", + " [ 0.66329577 -0.65143084 0.36834302]\n", + " [ 0.68095092 -0.62477208 0.38205458]\n", + " [ 0.69789752 -0.59702168 0.39560607]\n", + " [ 0.71401479 -0.DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "56832089 0.40889393]\n", + " [ 0.50061931 DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "-0.71138612 0.493DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "26473]\n", + " [ 0.518808DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "82 -0.68666507 0.50924306]\n", + " [ 0.536DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "75858 -0.66054355 DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + " 0.52494994]\n", + " [ 0.55432452 -0.63312651 0.54025471]\n", + " [ 0.57137512 -0.60453437 0.55503934]\n", + " [ 0.58778909 -0.57490827 0.56919633]\n", + " [ 0.7128393 -0.55901924 0.42350634]\n", + " [ 0.69310984 -0.56151775 0.45199178]\n", + " [ 0.67209905 -0.56336282 0.48052595]\n", + " [ 0.6498816 -0.56450486 0.5089088 ]\n", + " [ 0.62654902 -0.56490709 0.53695093]\n", + " [ 0.60221369 -0.56454627 0.56446983]\n", + " [ 0.61975605 -0.70916893 0.33612776]\n", + " [ 0.61975605 -0.70916893 0.33612776]\n", + " [ 0.59340944 -0.56423465 0.57402482]\n", + " [ 0.59340944 -0.56423465 0.57402482]\n", + " [ 0.61955702 -0.70248927 0.35022553]\n", + " [ 0.6382355 -0.6783052 0.36408447]\n", + " [ 0.65649546 -0.65278598 0.3780002DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "4]\n", + " [ 0.67418869 -0.62604019 0.391846 ]\n", + " [ 0.6911803 -0.59819336 0.40550523]\n", + " [ 0.7073492 -0.5693869 0.41887428]\n", + " [ 0.59939226 -0.70617687 0.37688613]\n", + " [ 0.61810113 -0.68182273 0.39124003]\n", + " [ 0.63641507 -0.65610894 0.40558219]\n", + " [ 0.65418592 -0.62914511 0.41978234]\n", + " [ 0.67127857 -0.60105649 0.43372361]\n", + " [ 0.68757103 -0.57198456 0.44730274]\n", + " [ 0.57818287 -0.70898312 0.40379141]\n", + " [ 0.59686646 -0.68449034 0.41859694]\n", + " [ 0.61518361 -0.65861989 0.43332316]\n", + " [ 0.63298667 -0.63148077 0.44783916]\n", + " [ 0.65014054 -0.60319705 0.46202878]\n", + " [ 0.6665223 -0.57391007 0.47578909]\n", + " [ 0.55600954 -0.71085522 0.43074152]\n", + " [ 0.5746117 -0.68625655 0.44595218]\n", + " [ 0.59288041 -0.66026764 0.46102003]\n", + " [ 0.61066891 -0.63299601 0.47581459]\n", + " [ 0.62784258 -0.60456421 0.49022016]\n", + " [ 0.64427803 -0.57511342 0.50413329]\n", + " [ 0.53296907 -0.71175527 0.45754608]\n", + " [ 0.55143346 -0.68708323 0.47311497]\n", + " [ 0.5696015 -0.66101335 0.48848284]\n", + " [ 0.58732761 -0.63365158 0.50351956]\n", + " [ 0.6044782 -0.60511916 0.51810897]\n", + " [ 0.62093021 -0.57555719 0.53214621]\n", + " [ 0.50917433 -0.71165969 0.48402685]\n", + " [ 0.52744521 -0.68694594 0.49990682]\n", + " [ 0.54546084 -0.66083156 0.51553285]\n", + " [ 0.5630768 -0.63342158 0.53077454]\n", + " [ 0.58016102 -0.6048365 0.54551443]\n", + " [ 0.59659161 -0.57521743 0.55964574]]\n", + "DEBUG:root:cartToSphere: vec: [[ 0.84084645 -0.44599766 -0.30669747]\n", + " [ 0.83956083 -0.43181851 -0.32965192]\n", + " [ 0.83753772 -0.41713162 -0.35289062]\n", + " [ 0.83475506 -0.40197198 -0.37630111]\n", + " [ 0.83119991 -0.38637983 -0.39977161]\n", + " [ 0.82686767 -0.37040084 -0.42319391]\n", + " [ 0.82176173 -0.35408628 -0.44646451]\n", + " [ 0.81589352 -0.33749294 -0.46948513]\n", + " [ 0.84084645 -0.44599766 -0.30669747]\n", + " [ 0.82616403 -0.4667825 -0.31554252]\n", + " [ 0.81053741 -0.4875949 -0.32446928]\n", + " [ 0.79399532 -0.50833358 -0.33341925]\n", + " [ 0.77657657 -0.52890017 -0.34233529]\n", + " [ 0.75832879 -0.54920044 -0.35116424]\n", + " [ 0.73930798 -0.56914485 -0.35985809]\n", + " [ 0.71957836 -0.58864881 -0.36837422]\n", + " [ 0.81589352 -0.33749294 -0.46948513]\n", + " [ 0.80061431 -0.35816645 -0.4803473 ]\n", + " [ 0.78437663 -0.3789767 -0.49104985]\n", + " [ 0.76721106 -0.39982235 -0.50152695]\n", + " [ 0.74915486 -0.42060769 -0.51171884]\n", + " [ 0.73025345 -0.44124093 -0.52157102]\n", + " [ 0.71056214 -0.46163273 -0.53103358]\n", + " [ 0.69014709 -0.4816959 -0.54006116]\n", + " [ 0.71957836 -0.58864881 -0.36837422]\n", + " [ 0.71732195 -0.57535898 -0.39295199]\n", + " [ 0.71443592 -0.56134434 -0.41770066]\n", + " [ 0.71090115 -0.54663616 -0.44250251]\n", + " [ 0.7067055 -0.53127072 -0.46724593]\n", + " [ 0.70184426 -0.51529068 -0.49182329]\n", + " [ 0.69632078 -0.49874629 -0.51612936]\n", + " [ 0.69014709 -0.4816959 -0.54006116]\n", + " [ 0.84032605 -0.43995101 -0.31669424]\n", + " [ 0.83825732 -0.42222774 -0.34503392]\n", + " [ 0.8350579 -0.40377584 -0.37368886]\n", + " [ 0.83070025 -0.3846672 -0.40245279]\n", + " [ 0.82517583 -0.36498592 -0.43112658]\n", + " [ 0.81849425 -0.34482868 -0.45952186]\n", + " [ 0.83455899 -0.45500258 -0.31061864]\n", + " [ 0.81592575 -0.48050833 -0.32152281]\n", + " [ 0.79590155 -0.50595471 -0.33249144]\n", + " [ 0.77455375 -0.53115927 -0.34341857]\n", + " [ 0.75197002 -0.55594861 -0.35420647]\n", + " [ 0.72825685 -0.58015993 -0.36476898]\n", + " [ 0.8093727 -0.34654048 -0.4741577 ]\n", + " [ 0.78999862 -0.3719836 -0.48737089]\n", + " [ 0.7692145 -0.39753064 -0.50027837]\n", + " [ 0.74708616 -0.42300312 -0.51276762]\n", + " [ 0.72369742 -0.44823186 -0.52473825]\n", + " [ 0.69915461 -0.47305325 -0.53610023]\n", + " [ 0.71873932 -0.58287922 -0.37903246]\n", + " [ 0.71555389 -0.56609942 -0.40928483]\n", + " [ 0.71140285 -0.54826161 -0.43967623]\n", + " [ 0.70626097 -0.52943047 -0.46999874]\n", + " [ 0.70011963 -0.50968468 -0.50005403]\n", + " [ 0.69298859 -0.48912013 -0.52964923]\n", + " [ 0.84079469 -0.44602099 -0.3068054 ]\n", + " [ 0.84079469 -0.44602099 -0.3068054 ]\n", + " [ 0.69024025 -0.48168704 -0.53994999]\n", + " [ 0.69024025 -0.48168704 -0.53994999]\n", + " [ 0.8340709 -0.44895128 -0.32057525]\n", + " [ 0.81537634 -0.47451556 -0.33165705]\n", + " [ 0.79528297 -0.50002768 -0.34277882]\n", + " [ 0.77385896 -0.52530461 -0.35383241]\n", + " [ 0.75119218 -0.55017276 -0.36471941]\n", + " [ 0.72738918 -0.57446902 -0.37535361]\n", + " [ 0.83194879 -0.43126538 -0.34910083]\n", + " [ 0.81309013 -0.45695184 -0.36066531]\n", + " [ 0.79281624 -0.48260832 -0.37219836]\n", + " [ 0.77119636 -0.50805125 -0.38358845]\n", + " [ 0.74831804 -0.53310686 -0.39473685]\n", + " [ 0.72428767 -0.55761117 -0.40555783]\n", + " [ 0.82869967 -0.41282717 -0.37792934]\n", + " [ 0.80969341 -0.43856989 -0.38993978]\n", + " [ 0.78926303 -0.46430798 -0.4018482 ]\n", + " [ 0.76747733 -0.4898584 -0.41354238]\n", + " [ 0.74442269 -0.51504781 -0.42492424]\n", + " [ 0.72020513 -0.5397114 -0.43590844]\n", + " [ 0.82429679 -0.39370797 -0.40685236]\n", + " [ 0.80516064 -0.41943995 -0.41926898]\n", + " [ 0.78459785 -0.44519592 -0.43151687]\n", + " [ 0.76267602 -0.47079417 -0.44348409]\n", + " [ 0.73948017 -0.49606223 -0.45507289]\n", + " [ 0.71511606 -0.52083484 -0.46619748]\n", + " [ 0.81873182 -0.37399174 -0.43567004]\n", + " [ 0.79948324 -0.39964577 -0.44845269]\n", + " [ 0.77881127 -0.42535565 -0.46100497]\n", + " [ 0.75678231 -0.45094121 -0.47321514]\n", + " [ 0.73348039 -0.47623128 -0.48498482]\n", + " [ 0.7090113 -0.5010608 -0.49622681]\n", + " [ 0.81201429 -0.35377532 -0.46419373]\n", + " [ 0.79267003 DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "-0.379285 -0.4773019 ]\n", + " [ 0.77191126 -0.40488549 -0.49012319]\n", + " [ 0.74980379 -0.43039797 -0.50254539]\n", + " [ 0.72643134 -0.45565276 -0.51446872]\n", + " [ 0.70190006 -0.48048575 -0.52580391]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:fp_optics: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:fp_optics: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:cartToSphere: vec: [[ 0.287DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "45648 0.3501023 -0.89151397]\n", + " [ 0.30911209 0.3611167 -0.87979796]\n", + " [ 0.33090922 0.37222562 -0.86714888]\n", + " [ 0.35274806 0.3833504 -0.8535873 ]\n", + " [ 0.37453243 0.39442086 -0.83914102]\n", + " [ 0.3961691 0.40537419 -0.82384574]\n", + " [ 0.41756767 0.41615407 -0.80774565]\n", + " [ 0.43864071 0.42671014 -0.79089366]\n", + " [ 0.28745648 0.3501023 -0.89151397]\n", + " [ 0.2713222 0.37136392 -0.88796008]\n", + " [ 0.25475531 0.39288478 -0.88359565]\n", + " [ 0.23780375 0.41454516 -0.87840861]\n", + " [ 0.22051945 0.43623386 -0.87239395]\n", + " [ 0.20295856 0.45784675 -0.86555426]\n", + " [ 0.18518146 0.47928584 -0.85790029]\n", + " [ 0.16725244 0.50045884 -0.84945134]\n", + " [ 0.43864071 0.42671014 -0.79089366]\n", + " [ 0.42340934 0.44967758 -0.786457 ]\n", + " [ 0.40752821 0.47275589 -0.78129548]\n", + " [ 0.39104173 0.49583218 -0.77539462]\n", + " [ 0.37399878 0.51879814 -0.76874794]\n", + " [ 0.35645366 0.54154905 -0.76135761]\n", + " [ 0.33846641 0.5639838 -0.75323487]\n", + " [ 0.32010256 0.58600564 -0.74440025]\n", + " [ 0.16725244 0.50045884 -0.84945134]\n", + " [ 0.18873621 0.51347634 -0.83709061]\n", + " [ 0.21049335 0.52634369 -0.82380512]\n", + " [ 0.23242901 0.53898657 -0.80961116]\n", + " [ 0.25444991 0.55133589 -0.79453381]\n", + " [ 0.27646345 0.5633274 -0.77860786]\n", + " [ 0.29837781 0.57490187 -0.76187828]\n", + " [ 0.32010256 0.58600564 -0.74440025]\n", + " [ 0.29682019 0.35496029 -0.88651056]\n", + " [ 0.32346975 0.3685351 -0.8715212 ]\n", + " [ 0.35023235 0.38217252 -0.85514996]\n", + " [ 0.37692945 0.39573991 -0.83744499]\n", + " [ 0.40338943 0.40912154 -0.81847207]\n", + " [ 0.42944705 0.42221621 -0.79831617]\n", + " [ 0.28055181 0.35937051 -0.89002445]\n", + " [ 0.26048109 0.38562035 -0.88512516]\n", + " [ 0.23980762 0.41213947 -0.87899566]\n", + " [ 0.2186253 0.43871969 -0.87162378]\n", + " [ 0.19703752 0.46516925 -0.86301436]\n", + " [ 0.17515709 0.4913101 -0.85319071]\n", + " [ 0.43201067 0.4366671 -0.78910622]\n", + " [ 0.41290001 0.46490472 -0.783184 ]\n", + " [ 0.39285721 0.4931962 -0.77615767]\n", + " [ 0.37197036 0.5213403 -0.76801194]\n", + " [ 0.35033944 0.54914426 -0.75875085]\n", + " [ 0.32807731 0.5764237 -0.74839896]\n", + " [ 0.17664137 0.50607583 -0.84420678]\n", + " [ 0.20316839 0.52193804 -0.82843424]\n", + " [ 0.23001143 0.53750041 -0.8112879 ]\n", + " [ 0.25699816 0.5526336 -0.79281022]\n", + " [ 0.28395815 0.56721937 -0.7730653 ]\n", + " [ 0.31072286 0.58115095 -0.7521402 ]\n", + " [ 0.28747579 0.35021183 -0.89146472]\n", + " [ 0.28747579 0.35021183 -0.89146472]\n", + " [ 0.32009206 0.58589403 -0.74449262]\n", + " [ 0.32009206 0.58589403 -0.74449262]\n", + " [ 0.28991257 0.36419232 -0.88505065]\n", + " [ 0.26987249 0.39063586 -0.88009799]\n", + " [ 0.24920631 0.41732919 -0.87391793]\n", + " [ 0.22800797 0.44406551 -0.86649766]\n", + " [ 0.20638106 0.47065369 -0.85784146]\n", + " [ 0.18443879 0.49691572 -0.84797235]\n", + " [ 0.31661489 0.37795473 -0.87000301]\n", + " [ 0.29668127 0.40489368 -0.86489383]\n", + " [ 0.27605751 0.43203277 -0.85856854]\n", + " [ 0.25483727 0.45916837 -0.85101256]\n", + " [ 0.23312446 0.48611048 -0.84222894]\n", + " [ 0.2110332 0.51268049 -0.83224017]\n", + " [ 0.34344022 0.39175109 -0.85356892]\n", + " [ 0.32364365 0.41910967 -0.84829351]\n", + " [ 0.30309597 0.44662609 -0.84181825]\n", + " [ 0.28189005 0.47409872 -0.83412733]\n", + " [ 0.26012961 0.50133765 -0.82522309]\n", + " [ 0.23792924 0.52816299 -0.81512793]\n", + " [ 0.37021038 0.40544996 -0.83579579]\n", + " [ 0.35058237 0.4331552 -0.83034244]\n", + " [ 0.3301454 0.46098199 -0.82371088]\n", + " [ 0.30899111 0.48872964 -0.81588469]\n", + " [ 0.2872225 0.51620759 -0.80686613]\n", + " [ 0.26495414 0.54323439 -0.79667791]\n", + " [ 0.39675363 0.41893636 -0.81674897]\n", + " [ 0.3773254 0.44691648 -0.81110493]\n", + " [ 0.35703357 0.4749867 -0.80431006]\n", + " [ 0.33596828 0.50294645 -0.79634803]\n", + " [ 0.31423141 0.5306042 -0.78722158]\n", + " [ 0.29193706 0.55777699 -0.77695404]\n", + " [ 0.42290429 0.43210932 -0.79651334]\n", + " [ 0.40370575 0.46029252 -0.79066583]\n", + " [ 0.38359235 0.48853839 -0.78370093]\n", + " [ 0.36265266 0.51664594 -0.775603 ]\n", + " [ 0.34098721 0.54442267 -0.76637568]\n", + " [ 0.31870921 0.5716845 -0.75604317]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:cartToSphere: vec: [[-0.28935991 0.37688564 -0.8799023 ]\n", + " [-0.30891909 0.35834423 -0.88099853]\n", + " [-0.32855927 0.33904393 -0.88153163]\n", + " [-0.34819187 0.31906477 -0.8814534 ]\n", + " [-0.36773131 0.29848587 -0.8807269 ]\n", + " [-0.38709447 0.27738675 -0.87932614]\n", + " [-0.40620066 0.25584838 -0.87723579]\n", + " [-0.42497192 0.23395368 -0.87445099]\n", + " [-0.28935991 0.37688564 -0.8799023 ]\n", + " [-0.2706502 0.3618376 -0.89208857]\n", + " [-0.25143891 0.34607657 -0.90388577]\n", + " [-0.2317872 0.32966904 -0.91520108]\n", + " [-0.21175952 0.31268045 -0.92595294]\n", + " [-0.19142407 0.29517644 -0.93607035]\n", + " [-0.17085292 0.27722391 -0.94549256]\n", + " [-0.15012179 0.25889171 -0.95416903]\n", + " [-0.42497192 0.23395368 -0.87445099]\n", + " [-0.40690915 0.2170027 -0.88731887]\n", + " [-0.38815154 0.19952718 -0.89973734]\n", + " [-0.36875582 0.18158768 -0.91161673]\n", + " [-0.34878299 0.16324697 -0.9228764 ]\n", + " [-0.32829946 0.144571 -0.93344453]\n", + " [-0.30737736 0.12562921 -0.94325843]\n", + " [-0.28609426 0.10649418 -0.95226523]\n", + " [-0.15012179 0.25889171 -0.95416903]\n", + " [-0.16923916 0.23854705 -0.95627057]\n", + " [-0.18859776 0.21759938 -0.95764367]\n", + " [-0.20811325 0.1961221 -0.95824058]\n", + " [-0.22770261 0.17419126 -0.95802345]\n", + " [-0.24728349 0.15188663 -0.95696464]\n", + " [-0.26677418 0.12929188 -0.9550472 ]\n", + " [-0.28609426 0.10649418 -0.95226523]\n", + " [-0.29780901 0.36884932 -0.88048848]\n", + " [-0.32184681 0.34560295 -0.88146085]\n", + " [-0.34591801 0.32129647 -0.88153804]\n", + " [-0.36986383 0.29607584 -0.8806474 ]\n", + " [-0.39353126 0.2700876 -0.87874105]\n", + " [-0.41677285 0.24348159 -0.87579513]\n", + " [-0.28133456 0.37035409 -0.88526194]\n", + " [-0.25805909 0.35142178 -0.89994902]\n", + " [-0.2340905 0.33148489 -0.9139581 ]\n", + " [-0.20954604 0.31066426 -0.92713439]\n", + " [-0.18455129 0.28908085 -0.93934716]\n", + " [-0.15924046 0.26685862 -0.9504888 ]\n", + " [-0.41712163 0.22670701 -0.88012129]\n", + " [-0.394509 0.20557233 -0.89560184]\n", + " [-0.37090878 0.18370963 -0.91031722]\n", + " [-0.34643143 0.16123348 -0.92411DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "527]\n", + " [-0.32119925 0.13826531 -0.93686378]\n", + " [-0.29534731 0.11493429 -0.94845141]\n", + " [-0.15849322 0.25016367 -0.95514294]\n", + " [-0.18209713 0.22481521 -0.95723495]\n", + " [-0.20597922 0.19863359 -0.95818435]\n", + " [-0.2299862 0.17175767 -0.95791735]\n", + " [-0.25396643 0.14433428 -0.95638312]\n", + " [-0.27776998 0.11651896 -0.95355502]\n", + " [-0.28936349 0.37677345 -0.87994917]\n", + " [-0.28936349 0.37677345 -0.87994917]\n", + " [-0.28610187 0.10663806 -0.95224684]\n", + " [-0.28610187 0.10663806 -0.95224684]\n", + " [-0.28978658 0.36236413 -0.88584196]\n", + " [-0.26651569 0.34325834 -0.90063483]\n", + " [-0.24253102 0.32316599 -0.91473627]\n", + " [-0.21794961 0.30220649 -0.92799203]\n", + " [-0.19289716 0.28049995 -0.94027148]\n", + " [-0.16750825 0.25817007 -0.95146687]\n", + " [-0.31385137 0.3389422 -0.88691347]\n", + " [-0.29061907 0.31937485 -0.90196467]\n", + " [-0.26661596 0.29887034 -0.91629278]\n", + " [-0.24195837 0.2775447 -0.92974464]\n", + " [-0.21677208 0.25551634 -0.94218961]\n", + " [-0.19119266 0.23290885 -0.95351918]\n", + " [-0.33796264 0.31447507 -0.88706634]\n", + " [-0.31480776 0.29448671 -0.90231572]\n", + " [-0.29082748 0.2736089 -0.91681926]\n", + " [-0.26613706 0.25195547 -0.93042437]\n", + " [-0.24086203 0.22964431 -0.94299999]\n", + " [-0.21513856 0.20679974 -0.95443662]\n", + " [-0.36196175 0.28910727 -0.88622834]\n", + " [-0.33892362 0.26873504 -0.90161647]\n", + " [-0.31500815 0.24752049 -0.91624422]\n", + " [-0.29032925 0.22557657 -0.92995921]\n", + " [-0.2650118 0.20302159 -0.94262982]\n", + " [-0.23919216 0.17998118 -0.95414563]\n", + " [-0.38569547 0.26298454 -0.88435182]\n", + " [-0.36281292 0.242264 -0.89981939]\n", + " [-0.339004 0.22074881 -0.91451968]\n", + " [-0.31438112 0.19855209 -0.92830037]\n", + " [-0.2890682 0.17579329 -0.94102938]\n", + " [-0.26320134 0.15259956 -0.95259563]\n", + " [-0.40901591 0.23625655 -0.88141297]\n", + " [-0.38632647 0.21522343 -0.89690063]\n", + " [-0.36266482 0.19344463 -0.91162131]\n", + " [-0.3381419 0.17103422 -0.9254228 ]\n", + " [-0.31288044 0.14811312 -0.93817287]\n", + " [-0.28701587 0.12480999 -0.94976016]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:fp_optics: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:cartToSphere: vec: [[-0.66964941 -0.10553023 0.73514151]\n", + " [-0.64948048 -0.11058702 0.75229357]\n", + " [-0.62841216 -0.11582035 0.76920986]\n", + " [-0.60650632 -0.12118793 0.78578851]\n", + " [-0.58383055 -0.12665165 0.80193594]\n", + " [-0.5604585 -0.13217749 0.81756675]\n", + " [-0.53647008 -0.1377352 0.83260367]\n", + " [-0.51195164 -0.14329788 0.84697771]\n", + " [-0.66964941 -0.10553023 0.73514151]\n", + " [-0.67332577 -0.13110474 0.72762899]\n", + " [-0.6764644 -0.15717675 0.71950774]\n", + " [-0.67903353 -0.1836233 0.71077138]\n", + " [-0.68100666 -0.21032519 0.7014223 ]\n", + " [-0.68236249 -0.23716675 0.69147189]\n", + " [-0.6830852 -0.26403537 0.68094048]\n", + " [-0.68316488 -0.29082133 0.66985722]\n", + " [-0.51195164 -0.14329788 0.84697771]\n", + " [-0.51441964 -0.17031009 0.84045637]\n", + " [-0.51652212 -0.19774074 0.83312874]\n", + " [-0.51822781 -0.22547167 0.82498634]\n", + " [-0.51951067 -0.25338734 0.81602912]\n", + " [-0.52034988 -0.28137304 0.80626622]\n", + " [-0.52073015 -0.30931411 0.79571659]\n", + " [-0.52064199 -0.33709615 0.7844094 ]\n", + " [-0.68316488 -0.29082133 0.66985722]\n", + " [-0.6624693 -0.29790256 0.68730524]\n", + " [-0.6408253 -0.30489094 0.70454556]\n", + " [-0.61829035 -0.31174486 0.72147917]\n", + " [-0.59492829 -0.31842609 0.73801433]\n", + " [-0.57081091 -0.32489941 0.75406583]\n", + " [-0.54601891 -0.33113251 0.76955481]\n", + " [-0.52064199 -0.33709615 0.7844094 ]\n", + " [-0.66098323 -0.10779743 0.7426DEBUG:root:fp_optics: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "1759]\n", + " [-0.6356512 -0.11412066 0.76349461]\n", + " [-0.60902902 -0.12066641 0.78391535]\n", + " [-0.58123876 -0.12736275 0.80370407]\n", + " [-0.55241598 -0.13414702 0.82270357]\n", + " [-0.52271052 -0.14096493 0.840775 ]\n", + " [-0.67124861 -0.11662909 0.73199929]\n", + " [-0.67539651 -0.14832498 0.72238442]\n", + " [-0.67870466 -0.18064548 0.71184773]\n", + " [-0.68112208 -0.21336961 0.70038998]\n", + " [-0.68260959 -0.24628433 0.6880321 ]\n", + " [-0.68314051 -0.27918356 0.67481522]\n", + " [-0.5131554 -0.15499702 0.84418449]\n", + " [-0.51593944 -0.18839951 0.83565071]\n", + " [-0.51814267 -0.22231275 0.82589662]\n", + " [-0.51971493 -0.25652304 0.8149186 ]\n", + " [-0.52061797 -0.29081915 0.80273355]\n", + " [-0.52082602 -0.32499003 0.7893806 ]\n", + " [-0.67426245 -0.29382566 0.67752241]\n", + " [-0.64825319 -0.30244651 0.6987803 ]\n", + " [-0.62087585 -0.31088631 0.71962691]\n", + " [-0.59224523 -0.31907334 0.73989039]\n", + " [-0.56249361 -0.32694273 0.75941385]\n", + " [-0.53177333 -0.33443627 0.77805495]\n", + " [-0.66959548 -0.10563364 0.73517578]\n", + " [-0.66959548 -0.10563364 0.73517578]\n", + " [-0.52073076 -0.33698164 0.78439968]\n", + " [-0.52073076 -0.33698164 0.78439968]\n", + " [-0.66261115 -0.11885827 0.73947223]\n", + " [-0.66669599 -0.15073253 0.72992887]\n", + " [-0.66995348 -0.18322136 0.71943885]\n", + " [-0.67233245 -0.2161042 0.70800286]\n", + " [-0.67379332 -0.24916839 0.69564192]\n", + " [-0.67430904 -0.28220775 0.68239732]\n", + " [-0.63720194 -0.12534774 0.76043516]\n", + " [-0.64109392 -0.15767444 0.75109078]\n", + " [-0.64419659 -0.1905894 0.74073371]\n", + " [-0.64645808 -0.22387388 0.72936441]\n", + " [-0.64783778 -0.25731617 0.7170039 ]\n", + " [-0.64830765 -0.29070964 0.70369389]\n", + " [-0.61049388 -0.13203153 0.78093847]\n", + " [-0.61417102 -0.16473278 0.77178823]\n", + " [-0.61710074 -0.1979996 0.76156604]\n", + " [-0.61923065 -0.23161524 0.75027181]\n", + " [-0.6205195 -0.26536869 0.73792616]\n", + " [-0.62093868 -0.29905239 0.72457079]\n", + " [-0.58260867 -0.138838 0.80080656]\n", + " [-0.58604758 -0.17183707 0.7918461 ]\n", + " [-0.58878454 -0.20538242 0.78176136]\n", + " [-0.59076711 -0.23925898 0.77055134]\n", + " [-0.59195412 -0.27325602 0.75823576]\n", + " [-0.59231703 -0.30716479 0.74485591]\n", + " [-0.55368165 -0.14570495 0.81988212]\n", + " [-0.55685819 -0.1789262 0.81110688]\n", + " [-0.55938176 -0.21267725 0.80116193]\n", + " [-0.56120056 -0.24674408 0.79004512]\n", + " [-0.56227422 -0.28091588 0.77777501]\n", + " [-0.562575 -0.31498273 0.76439208]\n", + " [-0.52386276 -0.1525784 0.83802604]\n", + " [-0.52675319 -0.18594683 0.82943044]\n", + " [-0.5290433 -0.21983068 0.81962653]\n", + " [-0.53068247 -0.25401629 0.80861106]\n", + " [-0.53163178 -0.28829255 0.79640131]\n", + " [-0.53186489 -0.32244863 0.78303679]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:fp_optics: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:cartToSphere: vec: [[ 0.36629412 -0.53000227 -0.76480469]\n", + " [ 0.36530708 -0.50783642 -0.78016211]\n", + " [ 0.363878 -0.48486196 -0.79529975]\n", + " [ 0.36201286 -0.46115332 -0.81011376]\n", + " [ 0.35971812 -0.43678907 -0.82451087]\n", + " [ 0.35700113 -0.41185244 -0.83840787]\n", + " [ 0.3538706 -0.38643181 -0.85173121]\n", + " [ 0.35033729 -0.36062071 -0.86441685]\n", + " [ 0.36629412 -0.53000227 -0.76480469]\n", + " [ 0.34133209 -0.53836401 -0.77049114]\n", + " [ 0.31555706 -0.54637928 -0.7758179 ]\n", + " [ 0.289069 -0.55400255 -0.7807178 ]\n", + " [ 0.26196854 -0.56119199 -0.78513441]\n", + " [ 0.23435785 -0.56790947 -0.78902169]\n", + " [ 0.20634136 -0.57412089 -0.79234364]\n", + " [ 0.17802607 -0.5797966 -0.79507397]\n", + " [ 0.35033729 -0.36062071 -0.86441685]\n", + " [ 0.32431329 -0.36781094 -0.87151363]\n", + " [ 0.2974959 -0.37484978 -0.87805685]\n", + " [ 0.26997806 -0.3816928 -0.88398102]\n", + " [ 0.24185543 -0.38829936 -0.88922976]\n", + " [ 0.21322836 -0.39463229 -0.89375557]\n", + " [ 0.18420284 -0.40065793 -0.89752022]\n", + " [ 0.15489035 -0.40634645 -0.90049516]\n", + " [ 0.17802607 -0.5797966 -0.79507397]\n", + " [ 0.17529477 -0.55733208 -0.81157421]\n", + " [ 0.17236179 -0.53397141 -0.82774752]\n", + " [ 0.16923164 -0.50978305 -0.84349386]\n", + " [ 0.16591038 -0.48484105 -0.85872167]\n", + " [ 0.16240599 -0.45922671 -0.87334708]\n", + " [ 0.15872855 -0.43302942 -0.88729407]\n", + " [ 0.15489035 -0.40634645 -0.90049516]\n", + " [ 0.36583422 -0.52047086 -0.77154093]\n", + " [ 0.36432549 -0.49275082 -0.79023008]\n", + " [ 0.36215882 -0.46388966 -0.80848462]\n", + " [ 0.35934595 -0.43403024 -0.82612846]\n", + " [ 0.35590042 -0.40332588 -0.84300838]\n", + " [ 0.35183911 -0.37194141 -0.85899292]\n", + " [ 0.35551391 -0.53361303 -0.76737669]\n", + " [ 0.32435995 -0.54363372 -0.77411433]\n", + " [ 0.2920841 -0.55308844 -0.78024358]\n", + " [ 0.25887132 -0.56189868 -0.7856561 ]\n", + " [ 0.2249098 -0.56999428 -0.79026711]\n", + " [ 0.19039283 -0.57731426 -0.79401436]\n", + " [ 0.33910701 -0.36386044 -0.86753214]\n", + " [ 0.3066669 -0.3725777 -0.87586601]\n", + " [ 0.27312723 -0.38102281 -0.8833024 ]\n", + " [ 0.23866286 -0.38911941 -0.88973374]\n", + " [ 0.20345864 -0.39679905 -0.89507268]\n", + " [ 0.16771202 -0.40400135 -0.89925279]\n", + " [ 0.17695784 -0.57009786 -0.80229318]\n", + " [ 0.17347519 -0.5419541 -0.82230901]\n", + " [ 0.16969376 -0.51253184 -0.84173341]\n", + " [ 0.16562404 -0.48196498 -0.86039435]\n", + " [ 0.16128072 -0.45040329 -0.87813746]\n", + " [ 0.15668328 -0.41801465 -0.8948263 ]\n", + " [ 0.36620764 -0.52995706 -0.76487743]\n", + " [ 0.36620764 -0.52995706 -0.76487743]\n", + " [ 0.15500433 -0.40641956 -0.90044256]\n", + " [ 0.15500433 -0.40641956 -0.90044256]\n", + " [ 0.35509149 -0.52410493 -0.77409564]\n", + " [ 0.32379981 -0.53407422 -0.78097274]\n", + " [ 0.29138725 -0.54349326 -0.78721569]\n", + " [ 0.25803788 -0.55228322 -0.79271666]\n", + " [ 0.22393931 -0.56037349 -0.7973912 ]\n", + " [ 0.1892849 -0.56770262 -0.80117724]\n", + " [ 0.35345908 -0.4963155 -0.79292976]\n", + " [ 0.32182046 -0.50611976 -0.80017147]\n", + " [ 0.28906365 -0.5154202 -0.80671198]\n", + " [ 0.25536996 -0.52413724 -0.81244466]\n", + " [ 0.22092567 -0.53219919 -0.81728567]\n", + " [ 0.18592454 -0.53954338 -0.82117295]\n", + " [ 0.35119086 -0.46737363 -0.81131182]\n", + " [ 0.31926796 -0.47698246 -0.81887466]\n", + " [ 0.28622939 -0.48613649 -0.82567793]\n", + " [ 0.25225388 -0.49475584 -0.83161568]\n", + " [ 0.21752676 -0.5027683 -0.83660393]\n", + " [ 0.18224263 -0.51011057 -0.84058005]\n", + " [ 0.34829787 -0.43742162 -0.8290663 ]\n", + " [ 0.3161515 -0.4468028 -0.83690829]\n", + " [ 0.28289242 -0.45578067 -0.84394067]\n", + " [ 0.24869731 -0.46427572 -0.85005747]\n", + " [ 0.21375098 -0.47221602 -0.85517399]\n", + " [ 0.17824906 -0.47953832 -0.85922655]\n", + " [ 0.34479297 -0.40661254 -0.84604022]\n", + " [ 0.31248239 -0.41573317 -0.85411983]\n", + " [ 0.27906328 -0.42450448 -0.86134757]\n", + " [ 0.24471104 -0.43284798 -0.86761693]\n", + " [ 0.20961032 -0.44069283 -0.87284211]\n", + " [ 0.17395772 -0.44797658 -0.87695821]\n", + " [ 0.3406926 -0.37511144 -0.86210206]\n", + " [ 0.30827606 -0.38393936 -0.87037718]\n", + " [ 0.27475719 -0.39247452 -0.87776548]\n", + " [ 0.24031086 -0.40063996 -0.88415966]\n", + " [ 0.20512183 -0.40836655 -0.88947276]\n", + " [ 0.16938741 -0.41559328 -0.8936387 ]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:fp_optics: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:cartToSphere: vec: [[-0.04390813 0.99257931 -0.11339481]\n", + " [-0.04310608 0.9890469 -0.14116691]\n", + " [-0.04225422 0.984645 -0.16937769]\n", + " [-0.04135397 0.97934775 -0.19790867]\n", + " [-0.0404072 0.97313936 -0.22664299]\n", + " [-0.03941633 0.96601483 -0.25546371]\n", + " [-0.03838433 0.95798054 -0.28425327]\n", + " [-0.03731473 0.94905475 -0.31289406]\n", + " [-0.04390813 0.99257931 -0.11339481]\n", + " [-0.0149059 0.99351125 -0.11275289]\n", + " [ 0.0140176 0.99359617 -0.11211672]\n", + " [ 0.04274929 0.99284531 -0.111493 ]\n", + " [ 0.07117659 0.99128047 -0.11089152]\n", + " [ 0.09918738 0.98893382 -0.11032569]\n", + " [ 0.12666939 0.98584783 -0.10981313]\n", + " [ 0.15350936 0.98207522 -0.10937609]\n", + " [-0.03731473 0.94905475 -0.31289406]\n", + " [-0.00731605 0.95002997 -0.31207294]\n", + " [ 0.02259094 0.95014893 -0.31097696]\n", + " [ 0.05228792 0.94942343 -0.30961447]\n", + " [ 0.08165977 0.94787622 -0.30799734]\n", + " [ 0.11059519 0.94554037 -0.30614068]\n", + " [ 0.13898616 0.94245883 -0.30406284]\n", + " [ 0.16672622 0.93868417 -0.30178534]\n", + " [ 0.15350936 0.98207522 -0.10937609]\n", + " [ 0.15604683 0.97833417 -0.13605751]\n", + " [ 0.15837221 0.97379708 -0.16320997]\n", + " [ 0.16048417 0.96843957 -0.19070821]\n", + " [ 0.1623799 0.96224767 -0.21843122]\n", + " [ 0.16405533 0.95521788 -0.24626134]\n", + " [ 0.16550572 0.94735741 -0.27408355]\n", + " [ 0.16672622 0.93868417 -0.30178534]\n", + " [-0.04346505 0.99114867 -0.12543967]\n", + " [-0.04244743 0.98623843 -0.15978728]\n", + " [-0.04135652 0.9799954 -0.19467579]\n", + " [-0.04019562 0.97238631 -0.2298895 ]\n", + " [-0.03896917 0.963402 -0.26521309]\n", + " [-0.03768287 0.95305918 -0.30043003]\n", + " [-0.03125757 0.99307944 -0.1132086 ]\n", + " [ 0.00424999 0.99365114 -0.11242484]\n", + " [ 0.03952684 0.99296052 -0.11165586]\n", + " [ 0.07436554 0.99104333 -0.11091837]\n", + " [ 0.10855959 0.9879588 -0.11023712]\n", + " [ 0.14190193 0.98378935 -0.10964649]\n", + " [-0.02423532 0.94961753 -0.3124727 ]\n", + " [ 0.01248439 0.95023597 -0.3112808 ]\n", + " [ 0.04894852 0.94957873 -0.30968416]\n", + " [ 0.08494375 0.94768314 -0.30770315]\n", + " [ 0.12026512 0.94461005 -0.30536561]\n", + " [ 0.15471452 0.94044252 -0.3027066 ]\n", + " [ 0.15455083 0.98055411 -0.12094495]\n", + " [ 0.15751722 0.97543761 -0.15397985]\n", + " [ 0.16016409 0.96909996 -0.18759726]\n", + " [ 0.16248686 0.96151108 -0.22157271]\n", + " [ 0.1644781 0.9526646 -0.25568948]\n", + " [ 0.16612902 0.94257821 -0.28973688]\n", + " [-0.04380629 0.99257331 -0.1134867 ]\n", + " [-0.04380629 0.99257331 -0.1134867 ]\n", + " [ 0.16662881 0.93872921 -0.30169904]\n", + " [ 0.16662881 0.93872921 -0.30169904]\n", + " [-0.03086701 0.99165651 -0.1251583 ]\n", + " [ 0.00477982 0.99222729 -0.12434695]\n", + " [ 0.04019475 0.99152733 -0.12352305]\n", + " [ 0.07517007 0.98959257 -0.12270292]\n", + " [ 0.10949961 0.98648244 -0.12191071]\n", + " [ 0.14297712 0.98227945 -0.12118013]\n", + " [-0.02972524 0.98675077 -0.15949712]\n", + " [ 0.00627166 0.98732144 -0.15860969]\n", + " [ 0.04203248 0.98660267 -0.15763387]\n", + " [ 0.07734847 0.98463104 -0.15658523]\n", + " [ 0.11201415 0.98146661 -0.15548672]\n", + " [ 0.14582561 0.97719224 -0.15437043]\n", + " [-0.0285336 0.98051173 -0.19437743]\n", + " [ 0.00774671 0.98108618 -0.19341636]\n", + " [ 0.04378605 0.98036033 -0.19229252]\n", + " [ 0.07937424 0.97837135 -0.19102153]\n", + " [ 0.1143062 0.97518 -0.1896261 ]\n", + " [ 0.14838014 0.97086952 -0.18813749]\n", + " [-0.02729604 0.97290613 -0.22958351]\n", + " [ 0.00919925 0.97348853 -0.22855077]\n", + " [ 0.0454485 0.97276793 -0.22728175]\n", + " [ 0.08124013 0.97078195 -0.22579294]\n", + " [ 0.11636917 0.96759182 -0.22410776]\n", + " [ 0.15063556 0.96328108 -0.2222577 ]\n", + " [-0.02601784 0.96392481 -0.26490005]\n", + " [ 0.01062189 0.96451953 -0.26379774]\n", + " [ 0.04701092 0.96381704 -0.26238654]\n", + " [ 0.08293655 0.96185508 -0.26068437]\n", + " [ 0.11819382 0.95869501 -0.25871623]\n", + " [ 0.15258387 0.95442042 -0.25651477]\n", + " [-0.02470538 0.95358443 -0.30011062]\n", + " [ 0.0120064 0.95419591 -0.29894148]\n", + " [ 0.04846368 0.95352458 -0.29739224]\n", + " [ 0.0844532 0.95160794 -0.29548262]\n", + " [ 0.11976997 0.94850706 -0.29323968]\n", + " [ 0.15421578 0.94430518 -0.2906978 ]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:cartToSphere: vec: [[-0.82454251 0.55156497 0.12611791]\n", + " [-0.82183042 0.56091704 0.09983399]\n", + " [-0.81839987 0.57000028 0.07294749]\n", + " [-0.8142288 0.57875337 0.04556314]\n", + " [-0.80930342 0.58712153 0.01778451]\n", + " [-0.80361861 0.59505577 -0.01028355]\n", + " [-0.79717867 0.60251256 -0.03853286]\n", + " [-0.78999785 0.60945408 -0.06685153]\n", + " [-0.82454251 0.55156497 0.12611791]\n", + " [-0.80794833 0.57345215 0.13554381]\n", + " [-0.79072054 0.59482198 0.14473366]\n", + " [-0.77293586 0.61559871 0.1536502 ]\n", + " [-0.75467932 0.63571383 0.1622561 ]\n", + " [-0.73604401 0.65510624 0.17051401]\n", + " [-0.71713045 0.67372241 0.17838729]\n", + " [-0.69804516 0.69151699 0.18584191]\n", + " [-0.78999785 0.60945408 -0.06685153]\n", + " [-0.77284228 0.63203663 -0.05696061]\n", + " [-0.75504816 0.65397883 -0.04705287]\n", + " [-0.73669582 0.67520204 -0.03716821]\n", + " [-0.71787182 0.69563803 -0.0273457 ]\n", + " [-0.69866852 0.71522843 -0.01762373]\n", + " [-0.67918502 0.73392306 -0.00804064]\n", + " [-0.65952876 0.75167809 0.00136434]\n", + " [-0.69804516 0.69151699 0.18584191]\n", + " [-0.69411473 0.70162621 0.16101367]\n", + " [-0.68967744 0.71132541 0.13550347]\n", + " [-0.68471532 0.72055102 0.10941281]\n", + " [-0.67921761 0.72924608 0.08284685]\n", + " [-0.67318175 0.73736027 0.05591213]\n", + " [-0.66661387 0.7448499 0.02871557]\n", + " [-0.65952876 0.75167809 0.00136434]\n", + " [-0.82339081 0.55574728 0.11477164]\n", + " [-0.81958637 0.56703724 0.08213979]\n", + " [-0.81468006 0.5778616 0.04870704]\n", + " [-0.80864304 0.58811681 0.01466448]\n", + " [-0.80146602 0.59771264 -0.01979461]\n", + " [-0.793161 0.60657127 -0.05446951]\n", + " [-0.81738154 0.56119899 0.13016569]\n", + " [-0.79660773 0.58768666 0.14156452]\n", + " [-0.77495748 0.61332105 0.15257193]\n", + " [-0.75258388 0.63797305 0.16311925]\n", + " [-0.72965825 0.66153015 0.17313779]\n", + " [-0.70636826 0.68389718 0.18256102]\n", + " [-0.78262712 0.61935061 -0.06244688]\n", + " [-0.76116205 0.6466076 -0.0503084 ]\n", + " [-0.7388169 0.67282355 -0.03818455]\n", + " [-0.71574847 0.69786849 -0.02614764]\n", + " [-0.69212693 0.72163476 -0.0142684 ]\n", + " [-0.66813811 0.74403267 -0.00261776]\n", + " [-0.69645814 0.69591128 0.17508155]\n", + " [-0.6913035 0.70803369 0.14417965]\n", + " [-0.68536877 0.71947641 0.11235368]\n", + " [-0.67863106 0.73013183 0.07979598]\n", + " [-0.67108573 0.73990731 0.04670253]\n", + " [-0.66274764 0.74872522 0.0132703 ]\n", + " [-0.82447884 0.55167297 0.12606178]\n", + " [-0.82447884 0.55167297 0.12606178]\n", + " [-0.65962122 0.75159684 0.0014262 ]\n", + " [-0.65962122 0.75159684 0.0014262 ]\n", + " [-0.81626546 0.56530969 0.11889346]\n", + " [-0.79540743 0.5918899 0.13035862]\n", + " [-0.77366623 0.61760093 0.14145548]\n", + " [-0.75119529 0.64231342 0.15211542]\n", + " [-0.72816622 0.66591486 0.1622694 ]\n", + " [-0.70476761 0.68830984 0.17184929]\n", + " [-0.81239066 0.57669099 0.08630713]\n", + " [-0.79132287 0.60350216 0.09794515]\n", + " [-0.76935762 0.6294019 0.10927988]\n", + " [-0.74664915 0.65426032 0.12024339]\n", + " [-0.72336939 0.67796514 0.13076695]\n", + " [-0.69970797 0.70042106 0.14078028]\n", + " [-0.80742753 0.58758921 0.05291224]\n", + " [-0.78619292 0.61458476 0.06470135]\n", + " [-0.76405359 0.64063077 0.07625178]\n", + " [-0.74116475 0.6655969 0.08749616]\n", + " [-0.71769816 0.6893717 0.0983667 ]\n", + " [-0.69384308 0.71186083 0.10879316]\n", + " [-0.80134755 0.59790041 0.01889979]\n", + " [-0.77999001 0.62503263 0.03081881]\n", + " [-0.75772742 0.65118157 0.04256437]\n", + " [-0.73471599 0.67621668 0.05406869]\n", + " [-0.71112715 0.70002767 0.06526442]\n", + " [-0.68714906 0.72252178 0.07608184]\n", + " [-0.79414192 0.60753371 -0.01553718]\n", + " [-0.77270688 0.63475331 -0.00350958]\n", + " [-0.75037314 0.66096097 0.00841114]\n", + " [-0.7272976 0.68602619 0.02015576]\n", + " [-0.70365124 0.70983999 0.03165617]\n", + " [-0.67962102 0.73231125 0.0428427 ]\n", + " [-0.78582318 0.61641063 -0.05019827]\n", + " [-0.76435755 0.64366693 -0.03808453]\n", + " [-0.7420059 0.6698886 -0.02600965]\n", + " [-0.71892522 0.69494551 -0.01404508]\n", + " [-0.69528589 0.71872973 -0.00226074]\n", + " [-0.67127394 0.74115134 0.00927289]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:fp_optics: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:fp_optics: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:cartToSphere: vec: [[ 0.72471904 -0.54810631 0.41756651]\n", + " [ 0.70916117 -0.550275 0.44078096]\n", + " [ 0.69272044 -0.552042 0.46409915]\n", + " [ 0.67543256 -0.55337604 0.48740723]\n", + " [ 0.65733927 -0.55425169 0.51059783]\n", + " [ 0.63848989 -0.55464934 0.53356797]\n", + " [ 0.61894292 -0.55455532 0.55621764]\n", + " [ 0.59876678 -0.55396227 0.57844978]\n", + " [ 0.72471904 -0.54810631 0.41756651]\n", + " [ 0.73662274 -0.52372069 0.42790604]\n", + " [ 0.74781659 -0.4989816 0.43793574]\n", + " [ 0.75826383 -0.47399231 0.44762402]\n", + " [ 0.76793491 -0.44886149 0.45694566]\n", + " [ 0.77680752 -0.42370291 0.46588188]\n", + " [ 0.78486695 -0.39863461 0.47441997]\n", + " [ 0.79210726 -0.37377688 0.48255252]\n", + " [ 0.59876678 -0.55396227 0.57844978]\n", + " [ 0.61115724 -0.52872379 0.58901441]\n", + " [ 0.62295719 -0.50309272 0.59901757]\n", + " [ 0.63412787 -0.47717722 0.60842727]\n", + " [ 0.6446392 -0.45108776 0.61721967]\n", + " [ 0.65446929 -0.42493692 0.62537874]\n", + " [ 0.66360335 -0.39884092 0.63289534]\n", + " [ 0.67203279 -0.37292191 0.63976651]\n", + " [ 0.79210726 -0.37377688 0.48255252]\n", + " [ 0.77753416 -0.37419499 0.50538969]\n", + " [ 0.76203034 -0.37446915 0.52828271]\n", + " [ 0.74562957 -0.3745734 0.55111824]\n", + " [ 0.72837486 -0.37448527 0.57378641]\n", + " [ 0.71031708 -0.37418742 0.59618237]\n", + " [ 0.69151451 -0.37366823 0.61820686]\n", + " [ 0.67203279 -0.37292191 0.63976651]\n", + " [ 0.7180884 -0.549016 0.42770373]\n", + " [ 0.69842312 -0.55140726 0.45624025]\n", + " [ 0.67746655 -0.55316359 0.48481864]\n", + " [ 0.65529295 -0.55423578 0.51323858]\n", + " [ 0.63199334 -0.55458773 0.54131032]\n", + " [ 0.60767954 -0.5541969 0.56885092]\n", + " [ 0.72994223 -0.53753165 0.4221896 ]\n", + " [ 0.74405954 -0.50739324 0.43465791]\n", + " [ 0.75707333 -0.47682587 0.44662855]\n", + " [ 0.76892623 -0.44602737 0.45805245]\n", + " [ 0.77957718 -0.41520708 0.46889497]\n", + " [ 0.78900268 -0.38458345 0.479135 ]\n", + " [ 0.6043088 -0.54301615 0.58304745]\n", + " [ 0.61910263 -0.51180642 0.59562246]\n", + " [ 0.63296989 -0.48011417 0.60732158]\n", + " [ 0.6458516 -0.44814186 0.61809755]\n", + " [ 0.65770732 -0.41609694 0.62792071]\n", + " [ 0.66851243 -0.38419576 0.63677685]\n", + " [ 0.78584587 -0.37406009 0.4924686 ]\n", + " [ 0.76735475 -0.37448018 0.52051059]\n", + " [ 0.74749808 -0.3746578 0.54852361]\n", + " [ 0.72635129 -0.37455 0.57630383]\n", + " [ 0.704008 -0.37412489 0.60365827]\n", + " [ 0.68057854 -0.37336355 0.63040662]\n", + " [ 0.72470924 -0.54803169 0.41768143]\n", + " [ 0.72470924 -0.54803169 0.41768143]\n", + " [ 0.67207286 -0.37301304 0.63967127]\n", + " [ 0.67207286 -0.37301304 0.63967127]\n", + " [ 0.72334264 -0.53847436 0.4322277 ]\n", + " [ 0.73752414 -0.50821253 0.44472258]\n", + " [ 0.75060797 -0.47751387 0.45669265]\n", + " [ 0.76253683 -0.44657654 0.46808865]\n", + " [ 0.77326949 -0.41561029 0.47887616]\n", + " [ 0.78278153 -0.3848349 0.48903494]\n", + " [ 0.70373117 -0.54076108 0.46080353]\n", + " [ 0.71807845 -0.51018957 0.47336027]\n", + " [ 0.73134775 -0.47916251 0.4853182 ]\n", + " [ 0.74348232 -0.44787878 0.49662725]\n", + " [ 0.75444144 -0.41654826 0.50725305]\n", + " [ 0.76419955 -0.38539227 0.51717681]\n", + " [ 0.6828189 -0.54243266 0.48941307]\n", + " [ 0.69730848 -0.51161077 0.50201126]\n", + " [ 0.71074455 -0.4803199 0.51394064]\n", + " [ 0.72307094 -0.44875977 0.52515053]\n", + " [ 0.73424799 -0.41713962 0.53560659]\n", + " [ 0.74425053 -0.38568007 0.54529077]\n", + " [ 0.66067999 -0.5434403 0.51785577]\n", + " [ 0.67528859 -0.51242839 0.53047381]\n", + " [ 0.68887378 -0.48093888 0.54235662]\n", + " [ 0.70137938 -0.44917258 0.55345366]\n", + " [ 0.71276653 -0.41733793 0.56373125]\n", + " [ 0.72301086 -0.38565396 0.57317216]\n", + " [ 0.6374051 -0.54374863 0.54594154]\n", + " [ 0.65210914 -0.51260899 0.5585568 ]\n", + " [ 0.66582631 -0.48098728 0.57037405]\n", + " [ 0.67849967 -0.44908534 0.58134375]\n", + " [ 0.69009031 -0.41711101 0.59143365]\n", + " [ 0.70057429 -0.38528173 0.60062771]\n", + " [ 0.61310571 -0.54333587 0.57348716]\n", + " [ 0.62788062 -0.51213286 0.58607667]\n", + " [ 0.64171206 -0.48044687 0.5978097 ]\n", + " [ 0.65454164 -0.44848032 0.60863835]\n", + " [ 0.66632945 -0.41644073 0.61853228]\n", + " [ 0.67705121 -0.38454455 0.62747681]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:fp_optics: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:cartToSphere: vec: [[-0.20037631 0.44527092 -0.87268731]\n", + " [-0.1740935 0.44022623 -0.8808475 ]\n", + " [-0.14714412 0.43472495 -0.88846093]\n", + " [-0.11962832 0.42876975 -0.8954583 ]\n", + " [-0.09164753 0.4223677 -0.9017795 ]\n", + " [-0.06330619 0.41553073 -0.90737343]\n", + " [-0.03471259 0.40827607 -0.91219827]\n", + " [-0.00597867 0.40062641 -0.91622199]\n", + " [-0.20037631 0.44527092 -0.87268731]\n", + " [-0.19190276 0.47054744 -0.86125399]\n", + " [-0.18320243 0.49533267 -0.84916572]\n", + " [-0.17430877 0.51953492 -0.83648067]\n", + " [-0.1652554 0.54306779 -0.82326668]\n", + " [-0.15607563 0.56584998 -0.80960126]\n", + " [-0.14680221 0.58780494 -0.79557179]\n", + " [-0.13746737 0.6088605 -0.78127563]\n", + " [-0.00597867 0.40062641 -0.91622199]\n", + " [ 0.00264995 0.42680544 -0.90433959]\n", + " [ 0.01125152 0.45251736 -0.89168461]\n", + " [ 0.01979217 0.47766621 -0.87831843]\n", + " [ 0.02823899 0.50216369 -0.8643114 ]\n", + " [ 0.03656024 0.52592937 -0.84974211]\n", + " [ 0.04472516 0.54888987 -0.83469729]\n", + " [ 0.05270359 0.57097736 -0.81927235]\n", + " [-0.13746737 0.6088605 -0.78127563]\n", + " [-0.11153915 0.60534968 -0.78810582]\n", + " [-0.08502167 0.6011928 -0.79456815]\n", + " [-0.0580202 0.59639324 -0.80059275]\n", + " [-0.03064029 0.5909583 -0.80612 ]\n", + " [-0.00298814 0.5848993 -0.81110041]\n", + " [ 0.02482916 0.57823206 -0.81549445]\n", + " [ 0.05270359 0.57097736 -0.81927235]\n", + " [-0.18897663 0.44321507 -0.8762695 ]\n", + " [-0.1563032 0.43672598 -0.88591181]\n", + " [-0.12272808 0.42955311 -0.89466303]\n", + " [-0.08843738 0.4217076 -0.90240874]\n", + " [-0.05362345 0.41321149 -0.90905489]\n", + " [-0.01848723 0.40409876 -0.91452852]\n", + " [-0.19662309 0.45632978 -0.86781478]\n", + " [-0.18608102 0.48699107 -0.85335429]\n", + " [-0.17523168 0.51682273 -0.83796666]\n", + " [-0.16413693 0.54566346 -0.82177275]\n", + " [-0.15285805 0.57336358 -0.80491529]\n", + " [-0.14145511 0.59978398 -0.78755928]\n", + " [-0.00231379 0.41211835 -0.91112738]\n", + " [ 0.00824772 0.44390161 -0.89603758]\n", + " [ 0.01873505 0.47488703 -0.87984732]\n", + " [ 0.02908719 0.50490887 -0.86268243]\n", + " [ 0.03924568 0.53381893 -0.84468759]\n", + " [ 0.04915416 0.56148453 -0.82602602]\n", + " [-0.12627349 0.60733853 -0.78434362]\n", + " [-0.09408553 0.60260009 -0.79247779]\n", + " [-0.06111699 0.59689428 -0.79998871]\n", + " [-0.02756206 0.59023289 -0.80676234]\n", + " [ 0.00638375 0.58263683 -0.81270756]\n", + " [ 0.04052285 0.57413727 -0.81775564]\n", + " [-0.20025913 0.44534162 -0.87267813]\n", + " [-0.20025913 0.44534162 -0.87267813]\n", + " [ 0.05258136 0.57092917 -0.81931378]\n", + " [ 0.05258136 0.57092917 -0.81931378]\n", + " [-0.18532796 0.45424675 -0.87138593]\n", + " [-0.17476515 0.48503068 -0.8568561 ]\n", + " [-0.16391764 0.51498365 -0.84138151]\n", + " [-0.15284772 0.54394428 -0.82508315]\n", + " [-0.14161705 0.57176317 -0.80810364]\n", + " [-0.13028587 0.59830171 -0.79060778]\n", + " [-0.15262326 0.44786739 -0.88097726]\n", + " [-0.14201478 0.47896168 -0.86627219]\n", + " [-0.13118589 0.50922302 -0.85057756]\n", + " [-0.12019998 0.53848953 -0.83401498]\n", + " [-0.10911959 0.56661269 -0.81672699]\n", + " [-0.0980054 0.59345555 -0.79887762]\n", + " [-0.1190237 0.44078395 -0.88968695]\n", + " [-0.10838975 0.47213331 -0.87483816]\n", + " [-0.09760077 0.50265077 -0.85896233]\n", + " [-0.08672075 0.53217367 -0.8421821 ]\n", + " [-0.07581255 0.56055411 -0.82464025]\n", + " [-0.06493687 0.58765694 -0.80650017]\n", + " [-0.0847156 0.43300703 -0.89740079]\n", + " [-0.07407744 0.46455499 -0.88244048]\n", + " [-0.06335115 0.49527584 -0.8664228 ]\n", + " [-0.05260063 0.52500591 -0.84947158]\n", + " [-0.04188825 0.55359763 -0.83173015]\n", + " [-0.03127407 0.58091731 -0.81336155]\n", + " [-0.04989154 0.42455801 -0.90402507]\n", + " [-0.0392711 0.45624645 -0.88898648]\n", + " [-0.02863093 0.48711697 -0.8728673 ]\n", + " [-0.01803408 0.51700486 -0.85579246]\n", + " [-0.00754165 0.54576251 -0.83790597]\n", + " [ 0.00278762 0.5732571 -0.81937081]\n", + " [-0.01475265 0.41547025 -0.90948713]\n", + " [-0.00417194 0.44723948 -0.89440452]\n", + " [ 0.00635915 0.47820476 -0.87822535]\n", + " [ 0.01677899 0.50820057 -0.86107529]\n", + " [ 0.02702837 0.5370789 -0.84309888]\n", + " [ 0.03705031 0.56470715 -0.82445928]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:cartToSphere: vec: [[ 2.07462030e-01 3.61665747e-01 -9.08932007e-01]\n", + " [ 1.80277032e-01 3.67249594e-01 -9.12484481e-01]\n", + " [ 1.52402312e-01 3.72649613e-01 -9.15371947e-01]\n", + " [ 1.23941473e-01 3.77827961e-01 -9.17542666e-01]\n", + " [ 9.49994214e-02 3.82750688e-01 -9.18954308e-01]\n", + " [ 6.56841752e-02 3.87387519e-01 -9.19574086e-01]\n", + " [ 3.61077530e-02 3.91711885e-01 -9.19379154e-01]\n", + " [ 6.38592286e-03 3.95701178e-01 -9.18357119e-01]\n", + " [ 2.07462030e-01 3.61665747e-01 -9.08932007e-01]\n", + " [ 2.03384910e-01 3.35144966e-01 -9.19952406e-01]\n", + " [ 1.99054286e-01 3.08447707e-01 -9.30181382e-01]\n", + " [ 1.94486622e-01 2.81682683e-01 -9.39590241e-01]\n", + " [ 1.89698665e-01 2.54962072e-01 -9.48160724e-01]\n", + " [ 1.84707009e-01 2.28401582e-01 -9.55884950e-01]\n", + " [ 1.79527762e-01 2.02120803e-01 -9.62765269e-01]\n", + " [ 1.74176505e-01 1.76243555e-01 -9.68814097e-01]\n", + " [ 6.38592286e-03 3.95701178e-01 -9.18357119e-01]\n", + " [ 2.31144537e-03 3.68224769e-01 -9.29733928e-01]\n", + " [-1.75508358e-03 3.40506332e-01 -9.40240585e-01]\n", + " [-5.79759997e-03 3.12659830e-01 -9.49847471e-01]\n", + " [-9.80047003e-03 2.84800429e-01 -9.58536732e-01]\n", + " [-1.37485954e-02 2.57043836e-01 -9.66301942e-01]\n", + " [-1.76273659e-02 2.29506746e-01 -9.73147435e-01]\n", + " [-2.14224712e-02 2.02308328e-01 -9.79087544e-01]\n", + " [ 1.74176505e-01 1.76243555e-01 -9.68814097e-01]\n", + " [ 1.47641592e-01 1.79879919e-01 -9.72545719e-01]\n", + " [ 1.20455406e-01 1.83600819e-01 -9.75592761e-01]\n", + " [ 9.27267453e-02 1.87368253e-01 -9.77903312e-01]\n", + " [ 6.45645887e-02 1.91149051e-01 -9.79435273e-01]\n", + " [ 3.60785007e-02 1.94914763e-01 -9.80156404e-01]\n", + " [ 7.37898753e-03 1.98641266e-01 -9.80044488e-01]\n", + " [-2.14224712e-02 2.02308328e-01 -9.79087544e-01]\n", + " [ 1.95687176e-01 3.64029700e-01 -9.10598104e-01]\n", + " [ 1.61892171e-01 3.70753738e-01 -9.14512215e-01]\n", + " [ 1.27164105e-01 3.77163779e-01 -9.17374936e-01]\n", + " [ 9.16954623e-02 3.83195732e-01 -9.19104441e-01]\n", + " [ 5.56852038e-02 3.88793868e-01 -9.19640411e-01]\n", + " [ 1.93411658e-02 3.93910910e-01 -9.18945109e-01]\n", + " [ 2.05624878e-01 3.50150088e-01 -9.13845351e-01]\n", + " [ 2.00455420e-01 3.17512967e-01 -9.26824223e-01]\n", + " [ 1.94921666e-01 2.84718352e-01 -9.38584575e-01]\n", + " [ 1.89054356e-01 2.51971335e-01 -9.49088456e-01]\n", + " [ 1.82883997e-01 2.19484969e-01 -9.58321341e-01]\n", + " [ 1.76440017e-01 1.87481166e-01 -9.66291743e-01]\n", + " [ 4.71123775e-03 3.83745296e-01 -9.23426961e-01]\n", + " [-2.79307939e-04 3.49893276e-01 -9.36789527e-01]\n", + " [-5.24211566e-03 3.15790794e-01 -9.48814363e-01]\n", + " [-1.01482102e-02 2.81649433e-01 -9.59463710e-01]\n", + " [-1.49697844e-02 2.47682256e-01 -9.68725661e-01]\n", + " [-1.96800733e-02 2.14105022e-01 -9.76612377e-01]\n", + " [ 1.62712472e-01 1.77904166e-01 -9.70502323e-01]\n", + " [ 1.29738611e-01 1.82424089e-01 -9.74622668e-01]\n", + " [ 9.58945632e-02 1.87032502e-01 -9.77662046e-01]\n", + " [ 6.13808700e-02 1.91666322e-01 -9.79538876e-01]\n", + " [ 2.63992769e-02 1.96273128e-01 -9.80193826e-01]\n", + " [-8.84635779e-03 2.00810145e-01 -9.79590235e-01]\n", + " [ 2.07356868e-01 3.61594835e-01 -9.08984216e-01]\n", + " [ 2.07356868e-01 3.61594835e-01 -9.08984216e-01]\n", + " [-2.13111117e-02 2.02388202e-01 -9.79073466e-01]\n", + " [-2.13111117e-02 2.02388202e-01 -9.79073466e-01]\n", + " [ 1.93950134e-01 3.52539184e-01 -9.15477727e-01]\n", + " [ 1.88781877e-01 3.19766226e-01 -9.28499307e-01]\n", + " [ 1.83272513e-01 2.86827086e-01 -9.40287939e-01]\n", + " [ 1.77453199e-01 2.53927073e-01 -9.50805660e-01]\n", + " [ 1.71354856e-01 2.21279025e-01 -9.60038076e-01]\n", + " [ 1.65007153e-01 1.89104399e-01 -9.67993887e-01]\n", + " [ 1.60142962e-01 3.59147905e-01 -9.19438423e-01]\n", + " [ 1.54984458e-01 3.26032312e-01 -9.32567826e-01]\n", + " [ 1.49550839e-01 2.92728513e-01 -9.44428168e-01]\n", + " [ 1.43874239e-01 2.59442755e-01 -9.54981497e-01]\n", + " [ 1.37986579e-01 2.26387357e-01 -9.64213912e-01]\n", + " [ 1.31918248e-01 1.93782156e-01 -9.72134791e-01]\n", + " [ 1.25406002e-01 3.65464111e-01 -9.22339047e-01]\n", + " [ 1.20267421e-01 3.32068856e-01 -9.35556531e-01]\n", + " [ 1.14920770e-01 2.98466793e-01 -9.47476010e-01]\n", + " [ 1.09398605e-01 2.64865518e-01 -9.58059603e-01]\n", + " [ 1.03733233e-01 2.31477139e-01 -9.67294035e-01]\n", + " [ 9.79553647e-02 1.98519836e-01 -9.75189531e-01]\n", + " [ 8.99318751e-02 3.71424281e-01 -9.24097539e-01]\n", + " [ 8.48242087e-02 3.37813781e-01 -9.37382901e-01]\n", + " [ 7.95771187e-02 3.03980746e-01 -9.49348823e-01]\n", + " [ 7.42228495e-02 2.70134293e-01 -9.59957516e-01]\n", + " [ 6.87932355e-02 2.36486654e-01 -9.69196344e-01]\n", + " [ 6.33185836e-02 2.03254683e-01 -9.77076400e-01]\n", + " [ 5.39196545e-02 3.76973404e-01 -9.24653299e-01]\n", + " [ 4.88542652e-02 3.43214015e-01 -9.37985821e-01]\n", + " [ 4.37197561e-02 3.09218782e-01 -9.49985436e-01]\n", + " [ 3.85473368e-02 2.75198195e-01 -9.60614416e-01]\n", + " [ 3.33675203e-02 2.41364823e-01 -9.69860624e-01]\n", + " [ 2.82094476e-02 2.07934694e-01 -9.77735849e-01]\n", + " [ 1.75772329e-02 3.82064853e-01 -9.23968338e-01]\n", + " [ 1.25652822e-02 3.48224775e-01 -9.37326848e-01]\n", + " [ 7.55570491e-03 3.14137687e-01 -9.49347368e-01]\n", + " [ 2.57811948e-03 2.80014997e-01 -9.59992164e-01]\n", + " [-2.33890222e-03 2.46069651e-01 -9.69249326e-01]\n", + " [-7.16793038e-03 2.12517389e-01 -9.77130994e-01]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:fp_optics: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:fp_optics: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:cartToSphere: vec: [[ 0.71139726 -0.59652213 -0.37158484]\n", + " [ 0.70906497 -0.58331365 -0.39619699]\n", + " [ 0.7061131 -0.5693706 -0.42097673]\n", + " [ 0.70252257 -0.55472409 -0.44580625]\n", + " [ 0.69828144 -0.53941013 -0.47057384]\n", + " [ 0.69338527 -0.52347096 -0.49517171]\n", + " [ 0.68783772 -0.50695642 -0.51949443]\n", + " [ 0.68165105 -0.48992453 -0.54343887]\n", + " [ 0.71139726 -0.59652213 -0.37158484]\n", + " [ 0.69079767 -0.61527839 -0.37977768]\n", + " [ 0.66967673 -0.63341289 -0.38771276]\n", + " [ 0.64812504 -0.65086054 -0.39536628]\n", + " [ 0.62624019 -0.6675624 -0.40272033]\n", + " [ 0.60412648 -0.68346582 -0.40976295]\n", + " [ 0.58189423 -0.69852495 -0.4164877 ]\n", + " [ 0.5596581 -0.71270231 -0.4228927 ]\n", + " [ 0.68165105 -0.48992453 -0.54343887]\n", + " [ 0.66035156 -0.50939093 -0.55177595]\n", + " [ 0.63852806 -0.52833539 -0.55959238]\n", + " [ 0.61627538 -0.54668959 -0.56686431]\n", + " [ 0.59369268 -0.56439376 -0.57357535]\n", + " [ 0.57088317 -0.58139623 -0.57971616]\n", + " [ 0.54795533 -0.59765192 -0.58528381]\n", + " [ 0.52502488 -0.61312073 -0.59028116]\n", + " [ 0.5596581 -0.71270231 -0.4228927 ]\n", + " [ 0.55589878 -0.7008544 -0.44696718]\n", + " [ 0.55175695 -0.68815468 -0.47117661]\n", + " [ 0.54721815 -0.67463109 -0.49540406]\n", + " [ 0.54227367 -0.66031984 -0.51953535]\n", + " [ 0.53692167 -0.6452639 -0.54346077]\n", + " [ 0.53116775 -0.62951243 -0.56707576]\n", + " [ 0.52502488 -0.61312073 -0.59028116]\n", + " [ 0.7103853 -0.59092069 -0.38231592]\n", + " [ 0.70711228 -0.57423531 -0.41260882]\n", + " [ 0.70288901 -0.55647687 -0.4430356 ]\n", + " [ 0.69769055 -0.53770958 -0.47338812]\n", + " [ 0.6915088 -0.51801138 -0.50346777]\n", + " [ 0.68435407 -0.49747742 -0.53308135]\n", + " [ 0.70247813 -0.60472834 -0.37527072]\n", + " [ 0.67686883 -0.62730715 -0.38514196]\n", + " [ 0.65056564 -0.64888672 -0.39460155]\n", + " [ 0.62374535 -0.66935599 -0.40361404]\n", + " [ 0.59659989 -0.68861809 -0.41215737]\n", + " [ 0.56933431 -0.70659196 -0.42022166]\n", + " [ 0.6724569 -0.49853045 -0.54705494]\n", + " [ 0.64598817 -0.52204638 -0.55692626]\n", + " [ 0.61882601 -0.54470941 -0.5659912 ]\n", + " [ 0.59115122 -0.56640595 -0.57421645]\n", + " [ 0.56315398 -0.58704067 -0.58158477]\n", + " [ 0.53503693 -0.60653271 -0.58809315]\n", + " [ 0.5581412 -0.70759541 -0.43334413]\n", + " [ 0.55327946 -0.69249789 -0.46295627]\n", + " [ 0.54782807 -0.67614767 -0.49265478]\n", + " [ 0.54176849 -0.65860812 -0.52222816]\n", + " [ 0.53509742 -0.63995829 -0.55147451]\n", + " [ 0.52782822 -0.62029122 -0.58020356]\n", + " [ 0.71132085 -0.59654337 -0.37169701]\n", + " [ 0.71132085 -0.59654337 -0.37169701]\n", + " [ 0.5251248 -0.6131263 -0.59018648]\n", + " [ 0.5251248 -0.6131263 -0.59018648]\n", + " [ 0.70150772 -0.59913838 -0.38590168]\n", + " [ 0.6757956 -0.62181336 -0.3957884 ]\n", + " [ 0.64938395 -0.64349405 -0.4052356 ]\n", + " [ 0.6224499 -0.66406937 -0.41420767]\n", + " [ 0.59518572 -0.68344219 -0.42268277]\n", + " [ 0.56779751 -0.70153033 -0.43065205]\n", + " [ 0.69814719 -0.58253558 -0.41622446]\n", + " [ 0.67217837 -0.6054559 -0.42614479]\n", + " [ 0.64549829 -0.62739835 -0.4355494 ]\n", + " [ 0.61828489 -0.6482521 -0.44440185]\n", + " [ 0.5907307 -0.66792048 -0.45268031]\n", + " [ 0.563043 -0.68631997 -0.46037754]\n", + " [ 0.69385317 -0.56484467 -0.44667468]\n", + " [ 0.66767912 -0.58797045 -0.45661291]\n", + " [ 0.64078831 -0.61013839 -0.46596297]\n", + " [ 0.6133597 -0.63123796 -0.47468781]\n", + " [ 0.58558546 -0.65117367 -0.4827655 ]\n", + " [ 0.55767228 -0.6698626 -0.49018947]\n", + " [ 0.68860108 -0.54612962 -0.47704401]\n", + " [ 0.66227433 -0.56942077 -0.48698326]\n", + " [ 0.6352314 -0.59177865 -0.49626515]\n", + " [ 0.6076523 -0.61309243 -0.50485281]\n", + " [ 0.57972863 -0.63326768 -0.51272485]\n", + " [ 0.55166573 -0.65222275 -0.51987538]\n", + " [ 0.68238345 -0.52646783 -0.50713356]\n", + " [ 0.65595832 -0.54988338 -0.51705604]\n", + " [ 0.62882324 -0.57239569 -0.52625517]\n", + " [ 0.60115897 -0.59389306 -0.53469517]\n", + " [ 0.57315652 -0.61428129 -0.54235607]\n", + " [ 0.54501977 -0.63347967 -0.54923306]\n", + " [ 0.67521123 -0.50595387 -0.53674992]\n", + " [ 0.64874382 -0.52945132 -0.54663768]\n", + " [ 0.62157782 -0.55208168 -0.5557399 ]\n", + " [ 0.59389417 -0.57373186 -0.56402258]\n", + " [ 0.56588324 -0.59430697 -0.57146774]\n", + " [ 0.53774788 -0.61372638 -0.57807192]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:fp_optics: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:cartToSphere: vec: [[ 0.16029781 0.50887382 -0.84578487]\n", + " [ 0.18172585 0.52196199 -0.83338551]\n", + " [ 0.20343521 0.534889 -0.82006577]\n", + " [ 0.22533128 0.54758039 -0.80584213]\n", + " [ 0.24732097 0.55996686 -0.79073981]\n", + " [ 0.26931191 0.57198396 -0.77479381]\n", + " [ 0.29121243 0.58357228 -0.75804928]\n", + " [ 0.31293226 0.59467806 -0.74056155]\n", + " [ 0.16029781 0.50887382 -0.84578487]\n", + " [ 0.14227154 0.52953474 -0.83627254]\n", + " [ 0.12426024 0.5497321 -0.82604722]\n", + " [ 0.10633817 0.56939463 -0.81515762]\n", + " [ 0.08858217 0.58845816 -0.8036605 ]\n", + " [ 0.07107208 0.60686574 -0.79162032]\n", + " [ 0.05389175 0.62456751 -0.77910918]\n", + " [ 0.03713036 0.64152019 -0.76620701]\n", + " [ 0.31293226 0.59467806 -0.74056155]\n", + " [ 0.29416396 0.61597362 -0.73078318]\n", + " [ 0.27519427 0.63664874 -0.72037941]\n", + " [ 0.25610173 0.65662982 -0.70940058]\n", + " [ 0.23696665 0.67585213 -0.69790451]\n", + " [ 0.21787048 0.69426003 -0.68595588]\n", + " [ 0.19889566 0.71180669 -0.67362582]\n", + " [ 0.18012627 0.72845313 -0.6609921 ]\n", + " [ 0.03713036 0.64152019 -0.76620701]\n", + " [ 0.0566317 0.6551784 -0.7533486 ]\n", + " [ 0.0766017 0.66854168 -0.739719 ]\n", + " [ 0.09693985 0.68153311 -0.72533805]\n", + " [ 0.11755107 0.69408186 -0.71023385]\n", + " [ 0.13834425 0.70612297 -0.6944431 ]\n", + " [ 0.15923122 0.71759755 -0.67801119]\n", + " [ 0.18012627 0.72845313 -0.6609921 ]\n", + " [ 0.16953792 0.51466675 -0.8404612 ]\n", + " [ 0.19600078 0.53060964 -0.82464362]\n", + " [ 0.22279206 0.54623573 -0.80745912]\n", + " [ 0.24973984 0.56141535 -0.78895045]\n", + " [ 0.27667406 0.57602985 -0.76918208]\n", + " [ 0.30342651 0.5899722 -0.74824138]\n", + " [ 0.15251353 0.51797943 -0.84168696]\n", + " [ 0.13042055 0.54299972 -0.82954312]\n", + " [ 0.10842344 0.567252 -0.81637585]\n", + " [ 0.08666255 0.59061515 -0.80228632]\n", + " [ 0.065285 0.61298433 -0.78739322]\n", + " [ 0.04444728 0.6342705 -0.77183248]\n", + " [ 0.30470506 0.60399713 -0.73643893]\n", + " [ 0.28155759 0.62968947 -0.72402797]\n", + " [ 0.25818559 0.65437588 -0.71072668]\n", + " [ 0.2347362 0.67793347 -0.69663844]\n", + " [ 0.21135934 0.7002598 -0.68188228]\n", + " [ 0.18820739 0.72127197 -0.66659187]\n", + " [ 0.04562579 0.64744966 -0.76074124]\n", + " [ 0.06985649 0.66400097 -0.74446141]\n", + " [ 0.09469044 0.68003222 -0.72704188]\n", + " [ 0.11995044 0.69541051 -0.70853096]\n", + " [ 0.14546866 0.71001628 -0.68899619]\n", + " [ 0.17108379 0.72374376 -0.66852472]\n", + " [ 0.16030891 0.50899012 -0.84571278]\n", + " [ 0.16030891 0.50899012 -0.84571278]\n", + " [ 0.18011863 0.72836176 -0.66109486]\n", + " [ 0.18011863 0.72836176 -0.66109486]\n", + " [ 0.16171016 0.5236902 -0.83641999]\n", + " [ 0.13951088 0.54879467 -0.82423366]\n", + " [ 0.11738613 0.57311217 -0.81102585]\n", + " [ 0.09547617 0.59652131 -0.79689813]\n", + " [ 0.07392743 0.61891724 -0.78196943]\n", + " [ 0.05289507 0.64021119 -0.76637572]\n", + " [ 0.1880911 0.53971877 -0.82056407]\n", + " [ 0.16561931 0.56503233 -0.80827514]\n", + " [ 0.14316328 0.58950804 -0.79497456]\n", + " [ 0.12086371 0.61302369 -0.78076496]\n", + " [ 0.09886592 0.63547454 -0.76576605]\n", + " [ 0.07732206 0.6567728 -0.75011385]\n", + " [ 0.21481515 0.55541393 -0.80334912]\n", + " [ 0.1921134 0.58089225 -0.7909846 ]\n", + " [ 0.16937034 0.60548598 -0.77762485]\n", + " [ 0.14672786 0.62907228 -0.76337344]\n", + " [ 0.12433136 0.65154669 -0.7483506 ]\n", + " [ 0.10233134 0.67282259 -0.73269233]\n", + " [ 0.24171081 0.57064551 -0.78481819]\n", + " [ 0.2188226 0.59624299 -0.77240596]\n", + " [ 0.1958371 0.6209136 -0.75902182]\n", + " [ 0.17289781 0.64453413 -0.74476983]\n", + " [ 0.15015111 0.66700059 -0.72977041]\n", + " [ 0.12774712 0.6882276 -0.71415926]\n", + " [ 0.26860848 0.58529438 -0.76503593]\n", + " [ 0.24557869 0.6109643 -0.75260463]\n", + " [ 0.22239663 0.63567003 -0.7392316 ]\n", + " [ 0.19920751 0.65928828 -0.72502092]\n", + " [ 0.17615913 0.68171565 -0.71009276]\n", + " [ 0.15340223 0.70286795 -0.69458217]\n", + " [ 0.29534034 0.59925312 -0.7440899 ]\n", + " [ 0.27221525 0.62494803 -0.73166852]\n", + " [ 0.24888418 0.64964687 -0.71834226]\n", + " [ 0.22549384 0.67322661 -0.70421478]\n", + " [ 0.20219363 0.69558453 -0.68940547]\n", + " [ 0.17913543 0.71663745 -0.67404842]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:fp_optics: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:cartToSphere: vec: [[-1.42036146e-01 2.51361215e-01 -9.57414891e-01]\n", + " [-1.61087852e-01 2.30947294e-01 -9.59538457e-01]\n", + " [-1.80390229e-01 2.09940058e-01 -9.60928997e-01]\n", + " [-1.99859151e-01 1.88413086e-01 -9.61538782e-01]\n", + " [-2.19411870e-01 1.66442681e-01 -9.61329946e-01]\n", + " [-2.38966255e-01 1.44108860e-01 -9.60274838e-01]\n", + " [-2.58440812e-01 1.21495523e-01 -9.58356502e-01]\n", + " [-2.77755260e-01 9.86899830e-02 -9.55569099e-01]\n", + " [-1.42036146e-01 2.51361215e-01 -9.57414891e-01]\n", + " [-1.21214659e-01 2.32614187e-01 -9.64985827e-01]\n", + " [-1.00426379e-01 2.13660807e-01 -9.71732269e-01]\n", + " [-7.97559393e-02 1.94575864e-01 -9.77639618e-01]\n", + " [-5.92900710e-02 1.75434882e-01 -9.82704070e-01]\n", + " [-3.91180442e-02 1.56313744e-01 -9.86932516e-01]\n", + " [-1.93326467e-02 1.37288612e-01 -9.90342408e-01]\n", + " [-3.15764446e-05 1.18436239e-01 -9.92961659e-01]\n", + " [-2.77755260e-01 9.86899830e-02 -9.55569099e-01]\n", + " [-2.56108824e-01 7.94085031e-02 -9.63380797e-01]\n", + " [-2.34304227e-01 6.01161935e-02 -9.70302825e-01]\n", + " [-2.12430704e-01 4.08900851e-02 -9.76320233e-01]\n", + " [-1.90578569e-01 2.18064497e-02 -9.81429716e-01]\n", + " [-1.68838523e-01 2.94023942e-03 -9.85639340e-01]\n", + " [-1.47301552e-01 -1.56349588e-02 -9.88968048e-01]\n", + " [-1.26059673e-01 -3.38462659e-02 -9.91445101e-01]\n", + " [-3.15764446e-05 1.18436239e-01 -9.92961659e-01]\n", + " [-1.70813899e-02 9.75321875e-02 -9.95085774e-01]\n", + " [-3.45912203e-02 7.62114383e-02 -9.96491477e-01]\n", + " [-5.24715774e-02 5.45524238e-02 -9.97131269e-01]\n", + " [-7.06380578e-02 3.26348005e-02 -9.96968021e-01]\n", + " [-8.90099393e-02 1.05399974e-02 -9.95974969e-01]\n", + " [-1.07509138e-01 -1.16486693e-02 -9.94135853e-01]\n", + " [-1.26059673e-01 -3.38462659e-02 -9.91445101e-01]\n", + " [-1.50235003e-01 2.42474345e-01 -9.58454817e-01]\n", + " [-1.73763385e-01 2.17046207e-01 -9.60571304e-01]\n", + " [-1.97584611e-01 1.90799894e-01 -9.61538206e-01]\n", + " [-2.21545846e-01 1.63874669e-01 -9.61281713e-01]\n", + " [-2.45495898e-01 1.36417862e-01 -9.59750973e-01]\n", + " [-2.69285208e-01 1.08585390e-01 -9.56919375e-01]\n", + " [-1.33023477e-01 2.43148593e-01 -9.60824394e-01]\n", + " [-1.07515530e-01 2.20023489e-01 -9.69551481e-01]\n", + " [-8.21412065e-02 1.96662776e-01 -9.77024347e-01]\n", + " [-5.70593020e-02 1.73205217e-01 -9.83231503e-01]\n", + " [-3.24342677e-02 1.49790500e-01 -9.88185622e-01]\n", + " [-8.43888003e-03 1.26559050e-01 -9.91923179e-01]\n", + " [-2.68276755e-01 9.03676667e-02 -9.59093983e-01]\n", + " [-2.41629529e-01 6.67191837e-02 -9.68072167e-01]\n", + " [-2.14833377e-01 4.31308691e-02 -9.75697878e-01]\n", + " [-1.88054159e-01 1.97434944e-02 -9.81960197e-01]\n", + " [-1.61458832e-01 -3.30495947e-03 -9.86873914e-01]\n", + " [-1.35215254e-01 -2.58793729e-02 -9.90478214e-01]\n", + " [-7.46847920e-03 1.09442288e-01 -9.93965094e-01]\n", + " [-2.86873404e-02 8.35320319e-02 -9.96092082e-01]\n", + " [-5.05074565e-02 5.70735779e-02 -9.97091572e-01]\n", + " [-7.27714112e-02 3.02130195e-02 -9.96890914e-01]\n", + " [-9.53304825e-02 3.10027831e-03 -9.95440851e-01]\n", + " [-1.18041800e-01 -2.41105651e-02 -9.92715878e-01]\n", + " [-1.42029605e-01 2.51228826e-01 -9.57450609e-01]\n", + " [-1.42029605e-01 2.51228826e-01 -9.57450609e-01]\n", + " [-1.26068262e-01 -3.37088649e-02 -9.91448690e-01]\n", + " [-1.26068262e-01 -3.37088649e-02 -9.91448690e-01]\n", + " [-1.41191920e-01 2.34363685e-01 -9.61841206e-01]\n", + " [-1.15566365e-01 2.11163404e-01 -9.70594886e-01]\n", + " [-9.00556307e-02 1.87744279e-01 -9.78080809e-01]\n", + " [-6.48184775e-02 1.64245571e-01 -9.84287538e-01]\n", + " [-4.00186864e-02 1.40807251e-01 -9.89227892e-01]\n", + " [-1.58276698e-02 1.17569716e-01 -9.92938491e-01]\n", + " [-1.64626900e-01 2.08859454e-01 -9.63989477e-01]\n", + " [-1.38700978e-01 1.85475560e-01 -9.72810801e-01]\n", + " [-1.12838172e-01 1.61921372e-01 -9.80331075e-01]\n", + " [-8.71978068e-02 1.38337439e-01 -9.86539049e-01]\n", + " [-6.19426024e-02 1.14864337e-01 -9.91448081e-01]\n", + " [-3.72408718e-02 9.16422135e-02 -9.95095383e-01]\n", + " [-1.88371684e-01 1.82552293e-01 -9.64982264e-01]\n", + " [-1.62194258e-01 1.59029336e-01 -9.73859689e-01]\n", + " [-1.36029757e-01 1.35386448e-01 -9.81410421e-01]\n", + " [-1.10038812e-01 1.11765107e-01 -9.87623421e-01]\n", + " [-8.43842230e-02 8.83060857e-02 -9.92512639e-01]\n", + " [-5.92325360e-02 6.51489166e-02 -9.96116020e-01]\n", + " [-2.12273914e-01 1.55581928e-01 -9.64745588e-01]\n", + " [-1.85894974e-01 1.31965867e-01 -9.73667330e-01]\n", + " [-1.59479672e-01 1.08282068e-01 -9.81244734e-01]\n", + " [-1.33190326e-01 8.46724401e-02 -9.87466918e-01]\n", + " [-1.07190637e-01 6.12774638e-02 -9.92348346e-01]\n", + " [-8.16466277e-02 3.82356620e-02 -9.95927639e-01]\n", + " [-2.36182922e-01 1.28096129e-01 -9.63228430e-01]\n", + " [-2.09653998e-01 1.04434033e-01 -9.72182459e-01]\n", + " [-1.83040189e-01 8.07579187e-02 -9.79782857e-01]\n", + " [-1.56505515e-01 5.72095782e-02 -9.86018807e-01]\n", + " [-1.30215022e-01 3.39287050e-02 -9.90905087e-01]\n", + " [-1.04335147e-01 1.10524867e-02 -9.94480779e-01]\n", + " [-2.59949586e-01 1.00251140e-01 -9.60404041e-01]\n", + " [-2.33323700e-01 7.65906791e-02 -9.69378109e-01]\n", + " [-2.06565370e-01 5.29709372e-02 -9.76997865e-01]\n", + " [-1.79840053e-01 2.95330414e-02 -9.83252437e-01]\n", + " [-1.53314230e-01 6.41547709e-03 -9.88156662e-01]\n", + " [-1.27155332e-01 -1.62460911e-02 -9.91749760e-01]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:fp_optics: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:cartToSphere: vec: [[ 0.1666014 -0.58197171 -0.79596036]\n", + " [ 0.16377485 -0.55952565 -0.81247083]\n", + " [ 0.16076067 -0.5361806 -0.82865335]\n", + " [ 0.15756361 -0.51200494 -0.84440787]\n", + " [ 0.15419008 -0.48707265 -0.85964275]\n", + " [ 0.15064842 -0.46146493 -0.87427408]\n", + " [ 0.14694907 -0.43527108 -0.88822579]\n", + " [ 0.14310455 -0.40858834 -0.90143034]\n", + " [ 0.1666014 -0.58197171 -0.79596036]\n", + " [ 0.13805213 -0.5868526 -0.7978381 ]\n", + " [ 0.1094699 -0.59114725 -0.79910029]\n", + " [ 0.08096775 -0.59484363 -0.79975326]\n", + " [ 0.05265937 -0.59793466 -0.79981319]\n", + " [ 0.02465921 -0.60041767 -0.79930629]\n", + " [-0.00291707 -0.60229387 -0.79826912]\n", + " [-0.02995173 -0.60356794 -0.79674879]\n", + " [ 0.14310455 -0.40858834 -0.90143034]\n", + " [ 0.11358476 -0.41375864 -0.9032731 ]\n", + " [ 0.08405951 -0.41853853 -0.90430056]\n", + " [ 0.05464699 -0.42291447 -0.90452035]\n", + " [ 0.02546345 -0.42687818 -0.90395057]\n", + " [-0.00337748 -0.43042648 -0.90261932]\n", + " [-0.03176431 -0.43356094 -0.90056423]\n", + " [-0.05958602 -0.43628753 -0.89783222]\n", + " [-0.02995173 -0.60356794 -0.79674879]\n", + " [-0.03446157 -0.58199953 -0.81245858]\n", + " [-0.03889202 -0.55952404 -0.82790112]\n", + " [-0.04323789 -0.53621579 -0.84297278]\n", + " [-0.04749135 -0.51215283 -0.85758035]\n", + " [-0.05164218 -0.48741773 -0.87164043]\n", + " [-0.05567824 -0.46209824 -0.88507918]\n", + " [-0.05958602 -0.43628753 -0.89783222]\n", + " [ 0.16529449 -0.57231764 -0.80320001]\n", + " [ 0.16170261 -0.54419492 -0.82322789]\n", + " [ 0.15783363 -0.5147893 -0.84266275]\n", + " [ 0.15369865 -0.48423452 -0.86133249]\n", + " [ 0.14931306 -0.45268018 -0.87908263]\n", + " [ 0.14469696 -0.42029401 -0.89577661]\n", + " [ 0.15415533 -0.58409582 -0.79691167]\n", + " [ 0.11912791 -0.58968566 -0.7987987 ]\n", + " [ 0.08416324 -0.59438253 -0.79976619]\n", + " [ 0.04947038 -0.59817134 -0.79983982]\n", + " [ 0.01526007 -0.60104714 -0.79906787]\n", + " [-0.01825393 -0.60301361 -0.79752203]\n", + " [ 0.13025548 -0.41098147 -0.90229027]\n", + " [ 0.09405743 -0.41705745 -0.90400016]\n", + " [ 0.05796875 -0.42253281 -0.90449193]\n", + " [ 0.02220432 -0.42739012 -0.90379459]\n", + " [-0.01302662 -0.43162349 -0.9019598 ]\n", + " [-0.04751912 -0.43523766 -0.89906068]\n", + " [-0.03183581 -0.59427654 -0.80363044]\n", + " [-0.03730928 -0.56722217 -0.82271929]\n", + " [-0.04265883 -0.53887876 -0.84130251]\n", + " [-0.04787114 -0.50938842 -0.85920416]\n", + " [-0.05292745 -0.47890325 -0.87627071]\n", + " [-0.05780481 -0.44758702 -0.89237014]\n", + " [ 0.16649461 -0.58191423 -0.79602473]\n", + " [ 0.16649461 -0.58191423 -0.79602473]\n", + " [-0.05947884 -0.43636788 -0.89780028]\n", + " [-0.05947884 -0.43636788 -0.89780028]\n", + " [ 0.15290679 -0.57450919 -0.80408874]\n", + " [ 0.11774296 -0.58013663 -0.80596407]\n", + " [ 0.08264351 -0.58488509 -0.80689497]\n", + " [ 0.0478178 -0.58873988 -0.80690694]\n", + " [ 0.01347632 -0.59169667 -0.80604804]\n", + " [-0.02016794 -0.59375975 -0.80438959]\n", + " [ 0.14919312 -0.5464121 -0.82412088]\n", + " [ 0.11368706 -0.5521404 -0.82596382]\n", + " [ 0.07825137 -0.55703163 -0.82679652]\n", + " [ 0.04309659 -0.56107192 -0.82664441]\n", + " [ 0.00843263 -0.56425835 -0.82555521]\n", + " [-0.02552966 -0.56659691 -0.82359953]\n", + " [ 0.1452254 -0.51702828 -0.84355873]\n", + " [ 0.10944348 -0.5228496 -0.84536999]\n", + " [ 0.07373957 -0.52787989 -0.84611187]\n", + " [ 0.03832566 -0.53210545 -0.84581022]\n", + " [ 0.00341142 -0.53552407 -0.84451308]\n", + " [-0.03079433 -0.53814287 -0.8422909 ]\n", + " [ 0.14101544 -0.48649141 -0.86223011]\n", + " [ 0.10502581 -0.49239819 -0.86401018]\n", + " [ 0.06912302 -0.49756484 -0.86466828]\n", + " [ 0.03352046 -0.50197716 -0.86423105]\n", + " [-0.0015723 -0.50563272 -0.8627474 ]\n", + " [-0.03594812 -0.50853892 -0.86028827]\n", + " [ 0.13657942 -0.45495094 -0.87998051]\n", + " [ 0.10045237 -0.46093542 -0.88173004]\n", + " [ 0.06442163 -0.46623578 -0.88231177]\n", + " [ 0.02870164 -0.47083673 -0.88175336]\n", + " [-0.0064981 -0.47473478 -0.88010492]\n", + " [-0.04097172 -0.47793669 -0.87743823]\n", + " [ 0.1319381 -0.42257446 -0.89667339]\n", + " [ 0.0957457 -0.42862819 -0.89839336]\n", + " [ 0.05965928 -0.43405873 -0.898907 ]\n", + " [ 0.02389372 -0.43884925 -0.89824297]\n", + " [-0.01134165 -0.44299456 -0.89645256]\n", + " [-0.04584171 -0.44650003 -0.89360856]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:fp_optics: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:cartToSphere: vec: [[-0.68313417 -0.30141641 0.66518859]\n", + " [-0.66244144 -0.30859243 0.68259948]\n", + " [-0.64080007 -0.31566274 0.69980877]\n", + " [-0.61826747 -0.3225855 0.71671747]\n", + " [-0.59490744 -0.32932214 0.73323398]\n", + " [-0.57079172 -0.33583707 0.74927316]\n", + " [-0.54600096 -0.34209761 0.76475628]\n", + " [-0.52062483 -0.34807424 0.77961151]\n", + " [-0.68313417 -0.30141641 0.66518859]\n", + " [-0.68230957 -0.32790709 0.65339926]\n", + " [-0.68084377 -0.35406521 0.64116268]\n", + " [-0.67874839 -0.37979333 0.62853612]\n", + " [-0.67604101 -0.40499856 0.61558486]\n", + " [-0.67274482 -0.42959266 0.6023824 ]\n", + " [-0.66888824 -0.45349181 0.58901078]\n", + " [-0.6645049 -0.47661625 0.57556076]\n", + " [-0.52062483 -0.34807424 0.77961151]\n", + " [-0.51987699 -0.37544516 0.76731274]\n", + " [-0.51866281 -0.40239259 0.75436669]\n", + " [-0.51699366 -0.42881504 0.74083414]\n", + " [-0.51488674 -0.45461825 0.72678325]\n", + " [-0.5123647 -0.47971543 0.71228893]\n", + " [-0.50945538 -0.5040265 0.69743279]\n", + " [-0.50619179 -0.52747651 0.68230375]\n", + " [-0.6645049 -0.47661625 0.57556076]\n", + " [-0.64423718 -0.48501649 0.59136914]\n", + " [-0.62307386 -0.49310551 0.60714571]\n", + " [-0.6010767 -0.50083983 0.62278911]\n", + " [-0.57831314 -0.50817923 0.63820669]\n", + " [-0.55485674 -0.51508677 0.65331434]\n", + " [-0.53078746 -0.52152903 0.66803604]\n", + " [-0.50619179 -0.52747651 0.68230375]\n", + " [-0.67423044 -0.30464675 0.67275826]\n", + " [-0.64822446 -0.31337697 0.693974 ]\n", + " [-0.62085003 -0.32190628 0.71478779]\n", + " [-0.59222185 -0.33016235 0.73502796]\n", + " [-0.5624721 -0.33807963 0.75453781]\n", + " [-0.53175304 -0.34559924 0.77317519]\n", + " [-0.68278488 -0.31302595 0.66016632]\n", + " [-0.68134195 -0.34528273 0.64540916]\n", + " [-0.67894686 -0.37694259 0.63003606]\n", + " [-0.67562954 -0.40783261 0.61416389]\n", + " [-0.6714326 -0.43779033 0.597928 ]\n", + " [-0.66641056 -0.46666311 0.58148303]\n", + " [-0.52044424 -0.36003343 0.77428271]\n", + " [-0.51921281 -0.39330755 0.75876692]\n", + " [-0.51729139 -0.42584401 0.74233853]\n", + " [-0.51470925 -0.45746625 0.72512 ]\n", + " [-0.51150804 -0.48801438 0.70724924]\n", + " [-0.50774118 -0.5173432 0.68887946]\n", + " [-0.6557976 -0.48023627 0.5824969 ]\n", + " [-0.63034711 -0.49032753 0.60186496]\n", + " [-0.60361206 -0.49990786 0.62108341]\n", + " [-0.57571424 -0.50890191 0.63997809]\n", + " [-0.5467891 -0.51724167 0.65839406]\n", + " [-0.51698656 -0.52486723 0.67619471]\n", + " [-0.68306336 -0.30153212 0.66520886]\n", + " [-0.68306336 -0.30153212 0.66520886]\n", + " [-0.50628841 -0.5273784 0.6823079 ]\n", + " [-0.50628841 -0.5273784 0.6823079 ]\n", + " [-0.67395195 -0.31618531 0.66769426]\n", + " [-0.67251656 -0.34856163 0.65286007]\n", + " [-0.67014038 -0.38032988 0.63738611]\n", + " [-0.66685371 -0.41131689 0.62138921]\n", + " [-0.66269956 -0.44136028 0.60500446]\n", + " [-0.65773269 -0.47030779 0.58838618]\n", + " [-0.64794644 -0.32502808 0.68885569]\n", + " [-0.64653584 -0.35770384 0.67382443]\n", + " [-0.64421965 -0.38974138 0.65809019]\n", + " [-0.6410291 -0.42096657 0.64177008]\n", + " [-0.63700825 -0.45121741 0.62499866]\n", + " [-0.63221264 -0.48034295 0.60792913]\n", + " [-0.62057324 -0.33364864 0.70962486]\n", + " [-0.6191931 -0.3665651 0.69442777]\n", + " [-0.61694752 -0.39881536 0.67847039]\n", + " [-0.61386827 -0.43022428 0.66187069]\n", + " [-0.61000005 -0.46063032 0.64476325]\n", + " [-0.6053989 -0.4898841 0.62730036]\n", + " [-0.59194712 -0.3419741 0.72983034]\n", + " [-0.59060373 -0.37507098 0.71449912]\n", + " [-0.58844058 -0.40747627 0.69835576]\n", + " [-0.58548941 -0.43901398 0.68151954]\n", + " [-0.58179483 -0.46952304 0.66412565]\n", + " [-0.57741286 -0.49885569 0.64632607]\n", + " [-0.56220029 -0.3499382 0.74931575]\n", + " [-0.56090022 -0.38315345 0.73388308]\n", + " [-0.55883184 -0.41565492 0.71759178]\n", + " [-0.55602618 -0.44726607 0.7005626 ]\n", + " [-0.55252705 -0.47782635 0.6829318 ]\n", + " [-0.54838972 -0.50718938 0.6648516 ]\n", + " [-0.53148502 -0.35748143 0.76793926]\n", + " [-0.53023463 -0.39075153 0.75243902]\n", + " [-0.52827293 -0.42328946 0.73603923]\n", + " [-0.5256297 -0.45491858 0.71886195]\n", + " [-0.52234725 -0.48547883 0.70104469]\n", + " [-0.51847954 -0.51482481 0.68274035]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:fp_optics: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:cartToSphere: vec: [[-0.36480592 0.76659099 -0.52844573]\n", + " [-0.38150259 0.77225515 -0.50801353]\n", + " [-0.39837096 0.77736195 -0.48683569]\n", + " [-0.41530996 0.78186623 -0.46497617]\n", + " [-0.4322265 0.78572938 -0.44250379]\n", + " [-0.44903469 0.78891935 -0.41949269]\n", + " [-0.4656552 0.79141096 -0.39602262]\n", + " [-0.48201483 0.79318633 -0.37217892]\n", + " [-0.36480592 0.76659099 -0.52844573]\n", + " [-0.38148895 0.74955846 -0.5409513 ]\n", + " [-0.39835561 0.73162124 -0.55321168]\n", + " [-0.4153037 0.71282231 -0.56516121]\n", + " [-0.43223902 0.69321135 -0.57673864]\n", + " [-0.44907475 0.67284528 -0.58788698]\n", + " [-0.46573061 0.65178869 -0.59855367]\n", + " [-0.48213244 0.63011398 -0.60869096]\n", + " [-0.48201483 0.79318633 -0.37217892]\n", + " [-0.50061514 0.77593881 -0.38380131]\n", + " [-0.51919746 0.75771425 -0.39535188]\n", + " [-0.53766453 0.73855079 -0.40676724]\n", + " [-0.55592471 0.71849403 -0.41798809]\n", + " [-0.57389081 0.69759864 -0.4289586 ]\n", + " [-0.59147981 0.67592927 -0.43962627]\n", + " [-0.60861335 0.65356076 -0.44994235]\n", + " [-0.48213244 0.63011398 -0.60869096]\n", + " [-0.50075334 0.63492311 -0.58831856]\n", + " [-0.51934227 0.63930968 -0.56706855]\n", + " [-0.53780304 0.64322886 -0.54499956]\n", + " [-0.55604485 0.64664221 -0.5221762 ]\n", + " [-0.57398121 0.64951768 -0.49867059]\n", + " [-0.59152987 0.65182992 -0.47456313]\n", + " [-0.60861335 0.65356076 -0.44994235]\n", + " [-0.37211504 0.7690692 -0.51967583]\n", + " [-0.39270878 0.77564217 -0.49412452]\n", + " [-0.41345893 0.78133243 -0.46751614]\n", + " [-0.43419082 0.78606617 -0.43997535]\n", + " [-0.45474626 0.78978443 -0.41163866]\n", + " [-0.47498176 0.79244388 -0.38265524]\n", + " [-0.37210761 0.75929862 -0.53385535]\n", + " [-0.39269282 0.7378097 -0.54902568]\n", + " [-0.41345121 0.71500378 -0.56376208]\n", + " [-0.4342061 0.69096953 -0.57794997]\n", + " [-0.45479754 0.66581178 -0.59148447]\n", + " [-0.47508029 0.63965268 -0.60427078]\n", + " [-0.49006468 0.78578381 -0.3773333 ]\n", + " [-0.51286118 0.76398366 -0.39153848]\n", + " [-0.53553343 0.74075312 -0.40557215]\n", + " [-0.55791047 0.71617297 -0.41932348]\n", + " [-0.57983175 0.69034396 -0.43268968]\n", + " [-0.60114635 0.66338935 -0.44557562]\n", + " [-0.49019291 0.63233497 -0.59988615]\n", + " [-0.51300508 0.63795159 -0.57432009]\n", + " [-0.53567309 0.64288811 -0.54749357]\n", + " [-0.55802762 0.64707113 -0.51952298]\n", + " [-0.57990946 0.65044167 -0.49054118]\n", + " [-0.60116912 0.65295603 -0.4606996 ]\n", + " [-0.36491923 0.76655459 -0.5284203 ]\n", + " [-0.36491923 0.76655459 -0.5284203 ]\n", + " [-0.60849808 0.65363344 -0.44999269]\n", + " [-0.60849808 0.65363344 -0.44999269]\n", + " [-0.37937901 0.76180073 -0.52510115]\n", + " [-0.40016143 0.74026867 -0.54025283]\n", + " [-0.42109263 0.71740782 -0.5549838 ]\n", + " [-0.44199686 0.69330629 -0.56917937]\n", + " [-0.46271482 0.66806863 -0.58273433]\n", + " [-0.48310148 0.64181705 -0.59555339]\n", + " [-0.40016983 0.76834375 -0.49951175]\n", + " [-0.42146554 0.74670733 -0.51458232]\n", + " [-0.44284561 0.72371187 -0.52927204]\n", + " [-0.46413688 0.69944381 -0.54346602]\n", + " [-0.48518146 0.67400674 -0.55705823]\n", + " [-0.5058343 0.64752312 -0.56995217]\n", + " [-0.42109249 0.77401204 -0.47284931]\n", + " [-0.44283653 0.75229729 -0.48779565]\n", + " [-0.46460749 0.72919808 -0.50240427]\n", + " [-0.48623417 0.704799 -0.51656045]\n", + " [-0.50755917 0.67920275 -0.53015782]\n", + " [-0.52843664 0.65253208 -0.54309908]\n", + " [-0.44197318 0.7787315 -0.44523808]\n", + " [-0.46410313 0.75696358 -0.46001567]\n", + " [-0.48620889 0.73379085 -0.47450174]\n", + " [-0.50812031 0.70929624 -0.48858223]\n", + " [-0.52967959 0.68358161 -0.50215108]\n", + " [-0.55073949 0.65677 -0.51511084]\n", + " [-0.46265437 0.78244273 -0.41681448]\n", + " [-0.48510909 0.76064565 -0.43137845]\n", + " [-0.50749398 0.73742891 -0.44569997]\n", + " [-0.52963899 0.71287414 -0.45966618]\n", + " [-0.55138536 0.68708255 -0.47317202]\n", + " [-0.57258415 0.66017737 -0.48612059]\n", + " [-0.48299272 0.78510196 -0.38772792]\n", + " [-0.50571099 0.76329868 -0.40203424]\n", + " [-0.52831847 0.74006672 -0.41615002]\n", + " [-0.55064451 0.71548701 -0.42996391]\n", + " [-0.57252904 0.68966033 -0.44337245]\n", + " [-0.59382159 0.66270999 -0.45627995]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:fp_optics: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:cartToSphere: vec: [[-8.69607284e-01 1.23719947e-01 -4.77992204e-01]\n", + " [-8.82292595e-01 1.12176135e-01 -4.57139248e-01]\n", + " [-8.94559772e-01 1.00178238e-01 -4.35576784e-01]\n", + " [-9.06322563e-01 8.77787142e-02 -4.13369459e-01]\n", + " [-9.17502469e-01 7.50330830e-02 -3.90588345e-01]\n", + " [-9.28029986e-01 6.19973786e-02 -3.67310045e-01]\n", + " [-9.37845124e-01 4.87270328e-02 -3.43616355e-01]\n", + " [-9.46897672e-01 3.52765746e-02 -3.19594059e-01]\n", + " [-8.69607284e-01 1.23719947e-01 -4.77992204e-01]\n", + " [-8.65071985e-01 1.00800548e-01 -4.91416025e-01]\n", + " [-8.59860799e-01 7.72449277e-02 -5.04650995e-01]\n", + " [-8.53953139e-01 5.31497010e-02 -5.17628386e-01]\n", + " [-8.47337232e-01 2.86155079e-02 -5.30283668e-01]\n", + " [-8.40010893e-01 3.74395653e-03 -5.42556616e-01]\n", + " [-8.31981899e-01 -2.13636627e-02 -5.54391301e-01]\n", + " [-8.23268086e-01 -4.66067715e-02 -5.65736216e-01]\n", + " [-9.46897672e-01 3.52765746e-02 -3.19594059e-01]\n", + " [-9.43168455e-01 1.06181533e-02 -3.32145331e-01]\n", + " [-9.38605678e-01 -1.45567365e-02 -3.44684612e-01]\n", + " [-9.33185495e-01 -4.01452241e-02 -3.57145898e-01]\n", + " [-9.26893441e-01 -6.60467786e-02 -3.69467687e-01]\n", + " [-9.19724913e-01 -9.21610661e-02 -3.81591958e-01]\n", + " [-9.11685991e-01 -1.18385905e-01 -3.93463379e-01]\n", + " [-9.02794188e-01 -1.44616577e-01 -4.05029258e-01]\n", + " [-8.23268086e-01 -4.66067715e-02 -5.65736216e-01]\n", + " [-8.36277852e-01 -6.02158172e-02 -5.44989367e-01]\n", + " [-8.48868744e-01 -7.40525143e-02 -5.23390944e-01]\n", + " [-8.60953169e-01 -8.80574425e-02 -5.01004519e-01]\n", + " [-8.72453137e-01 -1.02173175e-01 -4.77897652e-01]\n", + " [-8.83299300e-01 -1.16343035e-01 -4.54143859e-01]\n", + " [-8.93430501e-01 -1.30510028e-01 -4.29824467e-01]\n", + " [-9.02794188e-01 -1.44616577e-01 -4.05029258e-01]\n", + " [-8.75169607e-01 1.18668032e-01 -4.69037372e-01]\n", + " [-8.90447383e-01 1.04206844e-01 -4.42994799e-01]\n", + " [-9.05010605e-01 8.91153419e-02 -4.15949831e-01]\n", + " [-9.18711431e-01 7.34946692e-02 -3.88030720e-01]\n", + " [-9.31421960e-01 5.74478663e-02 -3.59378457e-01]\n", + " [-9.43035801e-01 4.10766063e-02 -3.30145710e-01]\n", + " [-8.67755551e-01 1.13771925e-01 -4.83793606e-01]\n", + " [-8.61746126e-01 8.52407860e-02 -5.00127606e-01]\n", + " [-8.54699959e-01 5.58494016e-02 -5.16109314e-01]\n", + " [-8.46591655e-01 2.57816269e-02 -5.31618169e-01]\n", + " [-8.37417230e-01 -4.77561523e-03 -5.46543298e-01]\n", + " [-8.27195182e-01 -3.56361416e-02 -5.60783556e-01]\n", + " [-9.45342564e-01 2.46420690e-02 -3.25146436e-01]\n", + " [-9.40214661e-01 -5.93930280e-03 -3.40530640e-01]\n", + " [-9.33810051e-01 -3.71939938e-02 -3.55830571e-01]\n", + " [-9.26098213e-01 -6.89360077e-02 -3.70931162e-01]\n", + " [-9.17070772e-01 -1.00980389e-01 -3.85725499e-01]\n", + " [-9.06743655e-01 -1.33137937e-01 -4.00112778e-01]\n", + " [-8.29016906e-01 -5.24216718e-02 -5.56761113e-01]\n", + " [-8.44691857e-01 -6.92607823e-02 -5.30752872e-01]\n", + " [-8.59649457e-01 -8.63826985e-02 -5.03528391e-01]\n", + " [-8.73742182e-01 -1.03680910e-01 -4.75210340e-01]\n", + " [-8.86842307e-01 -1.21050953e-01 -4.45934288e-01]\n", + " [-8.98840768e-01 -1.38387642e-01 -4.15853502e-01]\n", + " [-8.69636887e-01 1.23604106e-01 -4.77968315e-01]\n", + " [-8.69636887e-01 1.23604106e-01 -4.77968315e-01]\n", + " [-9.02795357e-01 -1.44478918e-01 -4.05075777e-01]\n", + " [-9.02795357e-01 -1.44478918e-01 -4.05075777e-01]\n", + " [-8.73317113e-01 1.08769379e-01 -4.74854127e-01]\n", + " [-8.67375835e-01 8.00541224e-02 -4.91172575e-01]\n", + " [-8.60376633e-01 5.04883491e-02 -5.07151827e-01]\n", + " [-8.52293333e-01 2.02581710e-02 -5.22671676e-01]\n", + " [-8.43121665e-01 -1.04488085e-02 -5.37621317e-01]\n", + " [-8.32880130e-01 -4.14462137e-02 -5.51899357e-01]\n", + " [-8.88673201e-01 9.41310167e-02 -4.48775327e-01]\n", + " [-8.82916890e-01 6.49307820e-02 -4.65018020e-01]\n", + " [-8.76046021e-01 3.49118840e-02 -4.80962087e-01]\n", + " [-8.68033057e-01 4.26368616e-03 -4.96488099e-01]\n", + " [-8.58873274e-01 -2.68260931e-02 -5.11485151e-01]\n", + " [-8.48585301e-01 -5.81711629e-02 -5.25850837e-01]\n", + " [-9.03308420e-01 7.88821329e-02 -4.21677017e-01]\n", + " [-8.97722842e-01 4.92574889e-02 -4.37798355e-01]\n", + " [-8.90972554e-01 1.88488472e-02 -4.53665767e-01]\n", + " [-8.83029277e-01 -1.21544249e-02 -4.69160491e-01]\n", + " [-8.73887834e-01 -4.35658956e-02 -4.84171527e-01]\n", + " [-8.63566779e-01 -7.51994468e-02 -4.98595488e-01]\n", + " [-9.17074160e-01 6.31260889e-02 -3.93687798e-01]\n", + " [-9.11644001e-01 3.31409342e-02 -4.09642398e-01]\n", + " [-9.05006541e-01 2.40633567e-03 -4.25390845e-01]\n", + " [-8.97132830e-01 -2.88897738e-02 -4.40815228e-01]\n", + " [-8.88016910e-01 -6.05623333e-02 -4.55804971e-01]\n", + " [-8.77676837e-01 -9.24248710e-02 -4.70256328e-01]\n", + " [-9.29842206e-01 4.69666126e-02 -3.64948775e-01]\n", + " [-9.24551705e-01 1.66850395e-02 -3.80691153e-01]\n", + " [-9.18019183e-01 -1.43127334e-02 -3.96277585e-01]\n", + " [-9.10214954e-01 -4.58402051e-02 -4.11591317e-01]\n", + " [-9.01131992e-01 -7.77129905e-02 -4.26522947e-01]\n", + " [-8.90787496e-01 -1.09743651e-01 -4.40969351e-01]\n", + " [-9.41505933e-01 3.05054605e-02 -3.35612864e-01]\n", + " [-9.36338641e-01 -8.92700824e-06 -3.51098205e-01]\n", + " [-9.29902361e-01 -3.12076345e-02 -3.66480126e-01]\n", + " [-9.22166743e-01 -6.29047347e-02 -3.81643148e-01]\n", + " [-9.13123711e-01 -9.49155740e-02 -3.96479661e-01]\n", + " [-9.02789501e-01 -1.27051412e-01 -4.10888131e-01]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:cartToSphere: vec: [[-0.23508664 0.83108411 -0.50401734]\n", + " [-0.2358524 0.81661495 -0.52679566]\n", + " [-0.23630275 0.80125925 -0.54967684]\n", + " [-0.2364423 0.78504627 -0.57253593]\n", + " [-0.23627434 0.768013 -0.59525664]\n", + " [-0.23580139 0.75020466 -0.61773026]\n", + " [-0.23502603 0.7316751 -0.63985491]\n", + " [-0.23395142 0.71248685 -0.6615355 ]\n", + " [-0.23508664 0.83108411 -0.50401734]\n", + " [-0.20889208 0.83714101 -0.50552847]\n", + " [-0.18196404 0.84262292 -0.50682907]\n", + " [-0.15441305 0.84747765 -0.50787622]\n", + " [-0.12634841 0.85166045 -0.50863598]\n", + " [-0.09787949 0.8551341 -0.50908278]\n", + " [-0.06911668 0.8578692 -0.5091987 ]\n", + " [-0.04017167 0.85984455 -0.50897307]\n", + " [-0.23395142 0.71248685 -0.6615355 ]\n", + " [-0.2067613 0.71785191 -0.66478448]\n", + " [-0.17884608 0.72274906 -0.66756863]\n", + " [-0.15030842 0.72712645 -0.66984663]\n", + " [-0.12125321 0.73093952 -0.67158401]\n", + " [-0.09178898 0.73415107 -0.67275329]\n", + " [-0.06202832 0.73673161 -0.67333426]\n", + " [-0.03208724 0.73865974 -0.67331433]\n", + " [-0.04017167 0.85984455 -0.50897307]\n", + " [-0.03917298 0.84527654 -0.53289121]\n", + " [-0.03811668 0.82973645 -0.55685235]\n", + " [-0.03700577 0.8132492 -0.58073773]\n", + " [-0.03584351 0.79584873 -0.60443365]\n", + " [-0.03463354 0.77757901 -0.62783071]\n", + " [-0.03337994 0.75849442 -0.65082409]\n", + " [-0.03208724 0.73865974 -0.67331433]\n", + " [-0.23537107 0.82490765 -0.51393368]\n", + " [-0.23609576 0.80657452 -0.54193758]\n", + " [-0.23635164 0.78693791 -0.56997073]\n", + " [-0.23614525 0.76606267 -0.59781553]\n", + " [-0.23548136 0.74403212 -0.62527173]\n", + " [-0.23436491 0.72094898 -0.65215463]\n", + " [-0.22376583 0.83374399 -0.50477699]\n", + " [-0.19115325 0.84078753 -0.50649459]\n", + " [-0.15754899 0.84691475 -0.50785207]\n", + " [-0.12315468 0.8520402 -0.50878328]\n", + " [-0.0881718 0.85609538 -0.50924103]\n", + " [-0.0528041 0.85902956 -0.50919539]\n", + " [-0.22219634 0.71494687 -0.6629327 ]\n", + " [-0.18837163 0.72121522 -0.66660689]\n", + " [-0.15355965 0.72672829 -0.6695412 ]\n", + " [-0.11795247 0.73140105 -0.67166935]\n", + " [-0.08174993 0.73516504 -0.67294079]\n", + " [-0.04516077 0.73796931 -0.67332147]\n", + " [-0.03984307 0.85360817 -0.51938966]\n", + " [-0.03858093 0.83509713 -0.54874793]\n", + " [-0.03723504 0.81514985 -0.57805214]\n", + " [-0.03581127 0.79382499 -0.60709097]\n", + " [-0.03431633 0.77120352 -0.63566306]\n", + " [-0.0327579 0.74738992 -0.66357759]\n", + " [-0.2350016 0.83105779 -0.50410038]\n", + " [-0.2350016 0.83105779 -0.50410038]\n", + " [-0.03219428 0.7387233 -0.67323949]\n", + " [-0.03219428 0.7387233 -0.67323949]\n", + " [-0.22408547 0.82758761 -0.51466926]\n", + " [-0.19133334 0.83461675 -0.51653309]\n", + " [-0.1575907 0.84073432 -0.51800673]\n", + " [-0.12305796 0.84585454 -0.5190249 ]\n", + " [-0.08793605 0.8499085 -0.51954094]\n", + " [-0.05242887 0.85284509 -0.51952522]\n", + " [-0.22468641 0.80922787 -0.54283172]\n", + " [-0.19158719 0.81619349 -0.54508948]\n", + " [-0.15749917 0.8222647 -0.54687729]\n", + " [-0.12261968 0.82735493 -0.54813159]\n", + " [-0.0871486 0.83139428 -0.54880659]\n", + " [-0.0512906 0.83433076 -0.5488729 ]\n", + " [-0.22484352 0.78955099 -0.57101193]\n", + " [-0.19146655 0.79641801 -0.57363657]\n", + " [-0.15710082 0.80241328 -0.57571891]\n", + " [-0.12194131 0.80744973 -0.57719603]\n", + " [-0.08618745 0.81145693 -0.57802195]\n", + " [-0.05004507 0.81438239 -0.57816678]\n", + " [-0.22456238 0.76862135 -0.59899329]\n", + " [-0.19097487 0.77535324 -0.60196009]\n", + " [-0.15639806 0.78124153 -0.60431888]\n", + " [-0.12102534 0.7861992 -0.60600634]\n", + " [-0.08505614 0.79015579 -0.60697552]\n", + " [-0.0486975 0.79305876 -0.60719548]\n", + " [-0.22384704 0.74652203 -0.6265759 ]\n", + " [-0.19011476 0.75308167 -0.6298606 ]\n", + " [-0.15539314 0.75883146 -0.63247751]\n", + " [-0.11987463 0.7636849 -0.63436224]\n", + " [-0.08375886 0.76757209 -0.63546639]\n", + " [-0.04725388 0.77044089 -0.63575774]\n", + " [-0.22270198 0.72335588 -0.65357486]\n", + " [-0.18888994 0.72970655 -0.65715214]\n", + " [-0.15408982 0.73528671 -0.66000741]\n", + " [-0.11849366 0.74001089 -0.66207487]\n", + " [-0.0823013 0.74381018 -0.66330454]\n", + " [-0.04572137 0.74663327 -0.6636628 ]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:fp_optics: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:fp_optics: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:cartToSphere: vec: [[ 0.87196847 0.15562358 -0.46416839]\n", + " [ 0.8848482 0.14670095 -0.44217926]\n", + " [ 0.89733184 0.13762172 -0.41935167]\n", + " [ 0.90933092 0.1284081 -0.39576336]\n", + " [ 0.92076457 0.11908396 -0.37149914]\n", + " [ 0.93156111 0.10967571 -0.34664844]\n", + " [ 0.9416586 0.10021276 -0.32130435]\n", + " [ 0.9510052 0.09072752 -0.29556322]\n", + " [ 0.87196847 0.15562358 -0.46416839]\n", + " [ 0.8710444 0.18142957 -0.45647012]\n", + " [ 0.86951952 0.20761233 -0.44814387]\n", + " [ 0.86735773 0.23405916 -0.43921165]\n", + " [ 0.8645314 0.26065665 -0.42970172]\n", + " [ 0.8610225 0.28729262 -0.41964653]\n", + " [ 0.85682313 0.31385703 -0.40908175]\n", + " [ 0.85193572 0.34024227 -0.39804614]\n", + " [ 0.9510052 0.09072752 -0.29556322]\n", + " [ 0.95104882 0.11697487 -0.28604723]\n", + " [ 0.95033006 0.14366611 -0.27610294]\n", + " [ 0.94880895 0.17068671 -0.26575858]\n", + " [ 0.94645538 0.19792586 -0.25504426]\n", + " [ 0.94324919 0.22527415 -0.24399289]\n", + " [ 0.93918073 0.25262158 -0.23264111]\n", + " [ 0.93425153 0.27985692 -0.22102985]\n", + " [ 0.85193572 0.34024227 -0.39804614]\n", + " [ 0.86539915 0.33275226 -0.37464683]\n", + " [ 0.87842999 0.32484949 -0.35047619]\n", + " [ 0.8909375 0.31655087 -0.32561621]\n", + " [ 0.90284091 0.30787633 -0.30015071]\n", + " [ 0.91406843 0.29884961 -0.27416748]\n", + " [ 0.92455677 0.28949886 -0.24776036]\n", + " [ 0.93425153 0.27985692 -0.22102985]\n", + " [ 0.87762498 0.15184168 -0.45466306]\n", + " [ 0.89315628 0.14079869 -0.42713883]\n", + " [ 0.90800393 0.12954225 -0.3984315 ]\n", + " [ 0.9220158 0.11811552 -0.36869445]\n", + " [ 0.93505994 0.10656718 -0.33809222]\n", + " [ 0.94702653 0.09495264 -0.30679756]\n", + " [ 0.87168174 0.16679175 -0.46081608]\n", + " [ 0.87015081 0.19868784 -0.45095533]\n", + " [ 0.86768057 0.23103818 -0.44017246]\n", + " [ 0.86421652 0.26363408 -0.42851706]\n", + " [ 0.85972554 0.29626914 -0.41604878]\n", + " [ 0.85419738 0.32874177 -0.40283456]\n", + " [ 0.95108423 0.10214192 -0.29155757]\n", + " [ 0.95063023 0.13462421 -0.27960416]\n", + " [ 0.94899038 0.16765893 -0.26703511]\n", + " [ 0.94610512 0.20104056 -0.25390508]\n", + " [ 0.94193745 0.23456747 -0.24027473]\n", + " [ 0.9364742 0.26803657 -0.22621332]\n", + " [ 0.85787069 0.33693816 -0.38798267]\n", + " [ 0.87409272 0.32747795 -0.35877584]\n", + " [ 0.88957365 0.31741441 -0.32849172]\n", + " [ 0.90416069 0.30678299 -0.29728377]\n", + " [ 0.91772161 0.29562744 -0.26531388]\n", + " [ 0.93014355 0.28400155 -0.23275759]\n", + " [ 0.8720109 0.15568084 -0.46406946]\n", + " [ 0.8720109 0.15568084 -0.46406946]\n", + " [ 0.93423809 0.27979753 -0.22116179]\n", + " [ 0.93423809 0.27979753 -0.22116179]\n", + " [ 0.87733219 0.16298774 -0.45135709]\n", + " [ 0.87589082 0.1949885 -0.4413556 ]\n", + " [ 0.87348864 0.22744909 -0.43044688]\n", + " [ 0.87007013 0.26015963 -0.41868238]\n", + " [ 0.8656018 0.29291337 -0.40612226]\n", + " [ 0.86007337 0.32550837 -0.39283343]\n", + " [ 0.89296114 0.15202845 -0.42368355]\n", + " [ 0.89175919 0.18427899 -0.41328779]\n", + " [ 0.88953855 0.21700433 -0.4020327 ]\n", + " [ 0.88624199 0.24999314 -0.38997253]\n", + " [ 0.88183553 0.28303857 -0.37716743]\n", + " [ 0.87630899 0.31593799 -0.36368358]\n", + " [ 0.9078968 0.14083068 -0.39482922]\n", + " [ 0.9069102 0.1732587 -0.38405119]\n", + " [ 0.90485331 0.20617679 -0.37246693]\n", + " [ 0.90166821 0.2393742 -0.36013113]\n", + " [ 0.89732063 0.27264493 -0.3471029 ]\n", + " [ 0.89180029 0.30578577 -0.33344761]\n", + " [ 0.92198602 0.12943645 -0.36494928]\n", + " [ 0.9211892 0.1619677 -0.3538035 ]\n", + " [ 0.91927819 0.19500566 -0.34190701]\n", + " [ 0.9161946 0.22834125 -0.32931403]\n", + " [ 0.9119036 0.2617698 -0.3160829 ]\n", + " [ 0.90639432 0.29508767 -0.30227901]\n", + " [ 0.93509647 0.1178941 -0.33420887]\n", + " [ 0.93446342 0.15045416 -0.32270987]\n", + " [ 0.93268034 0.18353926 -0.31051686]\n", + " [ 0.92968838 0.2169422 -0.29768373]\n", + " [ 0.92545177 0.25045977 -0.28426911]\n", + " [ 0.91995873 0.28388822 -0.27033945]\n", + " [ 0.94711811 0.10625917 -0.30278091]\n", + " [ 0.94662221 0.13877455 -0.29094332]\n", + " [ 0.94494843 0.17183493 -0.27846941]\n", + " [ 0.9420374 0.20523451 -0.2654135 ]\n", + " [ 0.93785239 0.23877133 -0.25183557]\n", + " [ 0.93238056 0.27224203 -0.23780407]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:fp_optics: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:cartToSphere: vec: [[ 0.16764992 -0.25057078 0.95347144]\n", + " [ 0.19261266 -0.25825708 0.94668033]\n", + " [ 0.21789928 -0.26605626 0.93900691]\n", + " [ 0.24339709 -0.27390815 0.9304473 ]\n", + " [ 0.2689965 -0.28175919 0.92100632]\n", + " [ 0.29459047 -0.28956196 0.91069771]\n", + " [ 0.32007415 -0.29727448 0.89954457]\n", + " [ 0.34534495 -0.30485974 0.88757952]\n", + " [ 0.16764992 -0.25057078 0.95347144]\n", + " [ 0.15609877 -0.27444577 0.94884809]\n", + " [ 0.14432036 -0.29869143 0.9433743 ]\n", + " [ 0.13234455 -0.32318311 0.93703661]\n", + " [ 0.12020478 -0.3478027 0.92983014]\n", + " [ 0.10793821 -0.37243783 0.92175886]\n", + " [ 0.0955855 -0.39698103 0.91283595]\n", + " [ 0.08319044 -0.42132937 0.90308411]\n", + " [ 0.34534495 -0.30485974 0.88757952]\n", + " [ 0.33511493 -0.3302939 0.88238536]\n", + " [ 0.32440839 -0.35598625 0.87637491]\n", + " [ 0.31325294 -0.38181881 0.86953263]\n", + " [ 0.30167944 -0.40767754 0.86185181]\n", + " [ 0.28972282 -0.43345075 0.8533353 ]\n", + " [ 0.27742264 -0.45902848 0.84399617]\n", + " [ 0.264823 -0.48430296 0.83385816]\n", + " [ 0.08319044 -0.42132937 0.90308411]\n", + " [ 0.10843715 -0.43104203 0.89579247]\n", + " [ 0.13409436 -0.44060406 0.88762986]\n", + " [ 0.16005546 -0.4499581 0.87858975]\n", + " [ 0.18621502 -0.45905146 0.8686747 ]\n", + " [ 0.21246725 -0.46783556 0.85789717]\n", + " [ 0.23870553 -0.47626603 0.84628029]\n", + " [ 0.264823 -0.48430296 0.83385816]\n", + " [ 0.17844776 -0.25398545 0.95060391]\n", + " [ 0.2092751 -0.26349112 0.94168804]\n", + " [ 0.24047662 -0.27310561 0.93144206]\n", + " [ 0.27184934 -0.28272759 0.91987121]\n", + " [ 0.30319615 -0.29226965 0.90700085]\n", + " [ 0.33432493 -0.30165663 0.89287744]\n", + " [ 0.16272822 -0.26095311 0.95153718]\n", + " [ 0.14841529 -0.29048124 0.94530077]\n", + " [ 0.1337901 -0.32044143 0.93777263]\n", + " [ 0.11891271 -0.35061358 0.92894019]\n", + " [ 0.10385151 -0.38079069 0.91881081]\n", + " [ 0.08868267 -0.41077681 0.90741269]\n", + " [ 0.34085858 -0.31588379 0.8854563 ]\n", + " [ 0.327996 -0.34724445 0.87854421]\n", + " [ 0.31444494 -0.37887518 0.87038956]\n", + " [ 0.30026082 -0.41056455 0.8609763 ]\n", + " [ 0.28550805 -0.44210685 0.85030976]\n", + " [ 0.27026134 -0.4733005 0.83841842]\n", + " [ 0.09418324 -0.4254956 0.90004612]\n", + " [ 0.12541564 -0.43730481 0.89052536]\n", + " [ 0.15715838 -0.44883039 0.87968888]\n", + " [ 0.18921699 -0.45997341 0.86753754]\n", + " [ 0.22139665 -0.47064452 0.85409441]\n", + " [ 0.25350091 -0.4807638 0.83940661]\n", + " [ 0.16769552 -0.25067767 0.95343532]\n", + " [ 0.16769552 -0.25067767 0.95343532]\n", + " [ 0.26477755 -0.48419039 0.83393795]\n", + " [ 0.26477755 -0.48419039 0.83393795]\n", + " [ 0.17351182 -0.26433069 0.94869539]\n", + " [ 0.15927012 -0.29404604 0.94242769]\n", + " [ 0.1446901 -0.32417855 0.93486525]\n", + " [ 0.12983202 -0.3545091 0.92599511]\n", + " [ 0.11476459 -0.38483129 0.9158242 ]\n", + " [ 0.09956448 -0.4149492 0.90438049]\n", + " [ 0.20443177 -0.27401397 0.93974677]\n", + " [ 0.19040379 -0.30420494 0.93338403]\n", + " [ 0.17596553 -0.3347749 0.92572237]\n", + " [ 0.16117756 -0.36550753 0.91674753]\n", + " [ 0.14610926 -0.39619775 0.90646535]\n", + " [ 0.13083834 -0.42664921 0.89490322]\n", + " [ 0.23573196 -0.28377673 0.92946286]\n", + " [ 0.22193702 -0.31436413 0.92299467]\n", + " [ 0.20766285 -0.34529814 0.91522966]\n", + " [ 0.19296969 -0.37636485 0.90615241]\n", + " [ 0.17792693 -0.40735982 0.89576782]\n", + " [ 0.16261266 -0.43808561 0.884103 ]\n", + " [ 0.26720991 -0.29351846 0.91784845]\n", + " [ 0.25366892 -0.32442523 0.91126305]\n", + " [ 0.23958278 -0.35565135 0.90338929]\n", + " [ 0.22501077 -0.38698456 0.89421088]\n", + " [ 0.21002145 -0.41822039 0.88373225]\n", + " [ 0.1946926 -0.44916002 0.87198054]\n", + " [ 0.29866859 -0.30315242 0.90492855]\n", + " [ 0.28540265 -0.33430293 0.89821316]\n", + " [ 0.27152867 -0.36574968 0.89022433]\n", + " [ 0.25710441 -0.39728121 0.88094549]\n", + " [ 0.24219692 -0.42869265 0.8703811 ]\n", + " [ 0.22688302 -0.45978377 0.85855866]\n", + " [ 0.32991556 -0.31260379 0.89074946]\n", + " [ 0.31694453 -0.3439229 0.88389095]\n", + " [ 0.3033055 -0.37551842 0.87578062]\n", + " [ 0.28905451 -0.407179 0.86640219]\n", + " [ 0.27425666 -0.43869917 0.85576067]\n", + " [ 0.25898727 -0.46987759 0.84388426]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:fp_optics: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:cartToSphere: vec: [[ 0.27042172 -0.19106485 -0.94359224]\n", + " [ 0.28445787 -0.21239883 -0.93486387]\n", + " [ 0.29870146 -0.23392744 -0.92523261]\n", + " [ 0.31306508 -0.2555575 -0.91470248]\n", + " [ 0.32746839 -0.277198 -0.90328607]\n", + " [ 0.34183748 -0.29875966 -0.89100494]\n", + " [ 0.35610413 -0.32015482 -0.87788994]\n", + " [ 0.37020535 -0.34129768 -0.86398142]\n", + " [ 0.27042172 -0.19106485 -0.94359224]\n", + " [ 0.29052943 -0.17334617 -0.94103334]\n", + " [ 0.31094921 -0.1552291 -0.93766439]\n", + " [ 0.33156873 -0.13677315 -0.93346413]\n", + " [ 0.35228279 -0.11804046 -0.92841978]\n", + " [ 0.37299254 -0.09909611 -0.92252725]\n", + " [ 0.39360462 -0.08000821 -0.91579151]\n", + " [ 0.41403076 -0.06084765 -0.9082269 ]\n", + " [ 0.37020535 -0.34129768 -0.86398142]\n", + " [ 0.39217163 -0.32438984 -0.86079768]\n", + " [ 0.41427589 -0.30687647 -0.85685607]\n", + " [ 0.43641165 -0.28881299 -0.85213375]\n", + " [ 0.45847701 -0.2702578 -0.84661653]\n", + " [ 0.48037322 -0.25127358 -0.84029944]\n", + " [ 0.50200423 -0.231928 -0.83318735]\n", + " [ 0.52327715 -0.21229361 -0.82529537]\n", + " [ 0.41403076 -0.06084765 -0.9082269 ]\n", + " [ 0.43010491 -0.08188217 -0.89905788]\n", + " [ 0.44615454 -0.10326366 -0.88897848]\n", + " [ 0.4620966 -0.1249038 -0.87798962]\n", + " [ 0.47785268 -0.14671514 -0.86610131]\n", + " [ 0.49334813 -0.16860975 -0.85333368]\n", + " [ 0.50851192 -0.19049892 -0.83971768]\n", + " [ 0.52327715 -0.21229361 -0.82529537]\n", + " [ 0.27657884 -0.20027679 -0.93989008]\n", + " [ 0.2939341 -0.22656685 -0.92858506]\n", + " [ 0.31151311 -0.2530565 -0.91592685]\n", + " [ 0.32916506 -0.27957732 -0.90193508]\n", + " [ 0.34675377 -0.30596494 -0.88664947]\n", + " [ 0.36415586 -0.33205873 -0.87013074]\n", + " [ 0.27919104 -0.18346474 -0.94254605]\n", + " [ 0.30406116 -0.16147354 -0.93886799]\n", + " [ 0.32928746 -0.13894266 -0.93395113]\n", + " [ 0.35467333 -0.11598534 -0.92776841]\n", + " [ 0.38003669 -0.09272143 -0.92031236]\n", + " [ 0.40520781 -0.06927749 -0.911596 ]\n", + " [ 0.37971062 -0.33393167 -0.86273373]\n", + " [ 0.40673854 -0.31279457 -0.85832588]\n", + " [ 0.4338674 -0.2908029 -0.85275597]\n", + " [ 0.46090781 -0.26806285 -0.84599427]\n", + " [ 0.48767792 -0.24468991 -0.83803168]\n", + " [ 0.51400218 -0.22081071 -0.82888141]\n", + " [ 0.42096688 -0.07003618 -0.90436819]\n", + " [ 0.44066093 -0.09606129 -0.892519 ]\n", + " [ 0.46023519 -0.12251951 -0.8793023 ]\n", + " [ 0.47954344 -0.14924954 -0.86473271]\n", + " [ 0.49844825 -0.17608951 -0.84884735]\n", + " [ 0.51682055 -0.20287589 -0.83170782]\n", + " [ 0.27053736 -0.19107752 -0.94355653]\n", + " [ 0.27053736 -0.19107752 -0.94355653]\n", + " [ 0.52315537 -0.21228689 -0.8253743 ]\n", + " [ 0.52315537 -0.21228689 -0.8253743 ]\n", + " [ 0.28530824 -0.19267511 -0.93886927]\n", + " [ 0.31037814 -0.17070098 -0.93516126]\n", + " [ 0.33578309 -0.14816566 -0.93021323]\n", + " [ 0.3613275 -0.12518229 -0.92399774]\n", + " [ 0.38682995 -0.10187085 -0.91650691]\n", + " [ 0.41212084 -0.07835834 -0.90775348]\n", + " [ 0.3028596 -0.21900511 -0.9275305 ]\n", + " [ 0.32844585 -0.19710424 -0.9237279 ]\n", + " [ 0.3543116 -0.17458248 -0.91868615]\n", + " [ 0.38026408 -0.15155238 -0.91237663]\n", + " [ 0.40612332 -0.12813413 -0.9047903 ]\n", + " [ 0.4317196 -0.10445578 -0.89593927]\n", + " [ 0.32060807 -0.24554757 -0.9148316 ]\n", + " [ 0.34663942 -0.22375795 -0.91091904]\n", + " [ 0.37290101 -0.2012897 -0.90577441]\n", + " [ 0.39920232 -0.1782544 -0.89936804]\n", + " [ 0.425364 -0.15477192 -0.89169003]\n", + " [ 0.45121543 -0.13097095 -0.88275208]\n", + " [ 0.33840375 -0.2721343 -0.90079178]\n", + " [ 0.36481145 -0.25049473 -0.89675247]\n", + " [ 0.39140577 -0.22812105 -0.89149442]\n", + " [ 0.41799751 -0.2051234 -0.88498727]\n", + " [ 0.44440713 -0.18162081 -0.87722071]\n", + " [ 0.47046255 -0.15774205 -0.86820644]\n", + " [ 0.35611113 -0.29860083 -0.8854504 ]\n", + " [ 0.3828279 -0.27714981 -0.88126658]\n", + " [ 0.40969232 -0.2549117 -0.87588368]\n", + " [ 0.43651563 -0.23199492 -0.86927123]\n", + " [ 0.46311746 -0.20851717 -0.86141907]\n", + " [ 0.48932413 -0.18460668 -0.85233929]\n", + " [ 0.37360707 -0.32478607 -0.8688681 ]\n", + " [ 0.40056576 -0.30356079 -0.86452179]\n", + " [ 0.42763699 -0.28149806 -0.85900259]\n", + " [ 0.45463162 -0.25870462 -0.85228047]\n", + " [ 0.48136822 -0.23529655 -0.844346 ]\n", + " [ 0.50767162 -0.21140096 -0.83521204]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:fp_optics: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:cartToSphere: vec: [[ 3.12651246e-01 -1.64356240e-01 -9.35540606e-01]\n", + " [ 3.10231627e-01 -1.37948800e-01 -9.40598993e-01]\n", + " [ 3.07378260e-01 -1.10909374e-01 -9.45101961e-01]\n", + " [ 3.04106622e-01 -8.33478562e-02 -9.48984877e-01]\n", + " [ 3.00431348e-01 -5.53732119e-02 -9.52194734e-01]\n", + " [ 2.96367017e-01 -2.70945986e-02 -9.54689727e-01]\n", + " [ 2.91928950e-01 1.37801404e-03 -9.56439015e-01]\n", + " [ 2.87133838e-01 2.99337655e-02 -9.57422649e-01]\n", + " [ 3.12651246e-01 -1.64356240e-01 -9.35540606e-01]\n", + " [ 2.87428185e-01 -1.70766863e-01 -9.42456215e-01]\n", + " [ 2.61415963e-01 -1.77037948e-01 -9.48851548e-01]\n", + " [ 2.34719616e-01 -1.83151006e-01 -9.54653032e-01]\n", + " [ 2.07443392e-01 -1.89086204e-01 -9.59798753e-01]\n", + " [ 1.79692157e-01 -1.94822719e-01 -9.64237957e-01]\n", + " [ 1.51572348e-01 -2.00339285e-01 -9.67930780e-01]\n", + " [ 1.23192348e-01 -2.05614777e-01 -9.70848190e-01]\n", + " [ 2.87133838e-01 2.99337655e-02 -9.57422649e-01]\n", + " [ 2.60736702e-01 2.51221329e-02 -9.65083028e-01]\n", + " [ 2.33587061e-01 2.01941902e-02 -9.72126164e-01]\n", + " [ 2.05782119e-01 1.51683298e-02 -9.78480271e-01]\n", + " [ 1.77421820e-01 1.00632963e-02 -9.84083446e-01]\n", + " [ 1.48610308e-01 4.89841329e-03 -9.88883705e-01]\n", + " [ 1.19456293e-01 -3.06382562e-04 -9.92839413e-01]\n", + " [ 9.00725545e-02 -5.53065694e-03 -9.95919850e-01]\n", + " [ 1.23192348e-01 -2.05614777e-01 -9.70848190e-01]\n", + " [ 1.18948820e-01 -1.78543265e-01 -9.76715660e-01]\n", + " [ 1.14518949e-01 -1.50791836e-01 -9.81909992e-01]\n", + " [ 1.09915686e-01 -1.22463170e-01 -9.86367738e-01]\n", + " [ 1.05153121e-01 -9.36623157e-02 -9.90035450e-01]\n", + " [ 1.00246779e-01 -6.44978937e-02 -9.92869883e-01]\n", + " [ 9.52137331e-02 -3.50822292e-02 -9.94838470e-01]\n", + " [ 9.00725545e-02 -5.53065694e-03 -9.95919850e-01]\n", + " [ 3.11565440e-01 -1.52949122e-01 -9.37834496e-01]\n", + " [ 3.08305113e-01 -1.20144198e-01 -9.43670138e-01]\n", + " [ 3.04408948e-01 -8.64993197e-02 -9.48605851e-01]\n", + " [ 2.99904202e-01 -5.22154064e-02 -9.52539249e-01]\n", + " [ 2.94817802e-01 -1.74934810e-02 -9.55393344e-01]\n", + " [ 2.89178500e-01 1.74636196e-02 -9.57115885e-01]\n", + " [ 3.01749776e-01 -1.67077904e-01 -9.38633073e-01]\n", + " [ 2.70291073e-01 -1.74842374e-01 -9.46769708e-01]\n", + " [ 2.37751554e-01 -1.82379218e-01 -9.54050323e-01]\n", + " [ 2.04323384e-01 -1.89652474e-01 -9.60356129e-01]\n", + " [ 1.70199720e-01 -1.96623865e-01 -9.65593657e-01]\n", + " [ 1.35577324e-01 -2.03254276e-01 -9.69694018e-01]\n", + " [ 2.75740355e-01 2.77532903e-02 -9.60831417e-01]\n", + " [ 2.42869943e-01 2.17746289e-02 -9.69814444e-01]\n", + " [ 2.08965598e-01 1.56397021e-02 -9.77797923e-01]\n", + " [ 1.74210064e-01 9.38285875e-03 -9.84663808e-01]\n", + " [ 1.38795102e-01 3.03968183e-03 -9.90316454e-01]\n", + " [ 1.02922586e-01 -3.35290511e-03 -9.94683718e-01]\n", + " [ 1.21463616e-01 -1.93883980e-01 -9.73476036e-01]\n", + " [ 1.16136806e-01 -1.60234858e-01 -9.80222950e-01]\n", + " [ 1.10542682e-01 -1.25666372e-01 -9.85894659e-01]\n", + " [ 1.04706685e-01 -9.03708265e-02 -9.90388623e-01]\n", + " [ 9.86574036e-02 -5.45482029e-02 -9.93625287e-01]\n", + " [ 9.24268926e-02 -1.84065933e-02 -9.95549329e-01]\n", + " [ 3.12558938e-01 -1.64289277e-01 -9.35583210e-01]\n", + " [ 3.12558938e-01 -1.64289277e-01 -9.35583210e-01]\n", + " [ 9.01910400e-02 -5.61393666e-03 -9.95908660e-01]\n", + " [ 9.01910400e-02 -5.61393666e-03 -9.95908660e-01]\n", + " [ 3.00702807e-01 -1.55697215e-01 -9.40923057e-01]\n", + " [ 2.69095821e-01 -1.63364004e-01 -9.49157332e-01]\n", + " [ 2.36411491e-01 -1.70828045e-01 -9.56518367e-01]\n", + " [ 2.02840694e-01 -1.78052699e-01 -9.62887786e-01]\n", + " [ 1.68575966e-01 -1.84999084e-01 -9.68172238e-01]\n", + " [ 1.33814133e-01 -1.91627602e-01 -9.72302751e-01]\n", + " [ 2.97307541e-01 -1.22775346e-01 -9.46855026e-01]\n", + " [ 2.65326408e-01 -1.30158513e-01 -9.55332748e-01]\n", + " [ 2.32276386e-01 -1.37408226e-01 -9.62894937e-01]\n", + " [ 1.98345089e-01 -1.44486428e-01 -9.69424003e-01]\n", + " [ 1.63723837e-01 -1.51353100e-01 -9.74826520e-01]\n", + " [ 1.28610095e-01 -1.57967772e-01 -9.79033006e-01]\n", + " [ 2.93300030e-01 -8.90093950e-02 -9.51867858e-01]\n", + " [ 2.61010343e-01 -9.60958541e-02 -9.60541091e-01]\n", + " [ 2.27658861e-01 -1.03116673e-01 -9.68265663e-01]\n", + " [ 1.93430757e-01 -1.10033328e-01 -9.74924207e-01]\n", + " [ 1.58516864e-01 -1.16805621e-01 -9.80422792e-01]\n", + " [ 1.23115758e-01 -1.23392963e-01 -9.84691163e-01]\n", + " [ 2.88706471e-01 -5.45993501e-02 -9.55859553e-01]\n", + " [ 2.56171379e-01 -6.13736131e-02 -9.64681038e-01]\n", + " [ 2.22581359e-01 -6.81490390e-02 -9.72529304e-01]\n", + " [ 1.88120030e-01 -7.48876066e-02 -9.79286833e-01]\n", + " [ 1.52978271e-01 -8.15498214e-02 -9.84859013e-01]\n", + " [ 1.17355914e-01 -8.80956510e-02 -9.89174780e-01]\n", + " [ 2.83553013e-01 -1.97459312e-02 -9.58753246e-01]\n", + " [ 2.50834153e-01 -2.61919863e-02 -9.67675673e-01]\n", + " [ 2.17068106e-01 -3.27053854e-02 -9.75608423e-01]\n", + " [ 1.82437710e-01 -3.92493811e-02 -9.82433697e-01]\n", + " [ 1.47134181e-01 -4.57858683e-02 -9.88056267e-01]\n", + " [ 1.11358469e-01 -5.22759046e-02 -9.92404414e-01]\n", + " [ 2.77867985e-01 1.53477460e-02 -9.60496658e-01]\n", + " [ 2.45026354e-01 9.24480517e-03 -9.69472341e-01]\n", + " [ 2.11146966e-01 3.00874107e-03 -9.77449695e-01]\n", + " [ 1.76412500e-01 -3.32543854e-03 -9.84310709e-01]\n", + " [ 1.41014581e-01 -9.72145327e-03 -9.89959788e-01]\n", + " [ 1.05154926e-01 -1.61418133e-02 -9.94324838e-01]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:cartToSphere: vec: [[ 8.49956053e-03 1.17005906e-01 -9.93094847e-01]\n", + " [ 2.82791127e-02 1.35208876e-01 -9.90413475e-01]\n", + " [ 4.83399554e-02 1.53798142e-01 -9.86919136e-01]\n", + " [ 6.86050985e-02 1.72677318e-01 -9.82586324e-01]\n", + " [ 8.89971049e-02 1.91754511e-01 -9.77399469e-01]\n", + " [ 1.09437897e-01 2.10942106e-01 -9.71353064e-01]\n", + " [ 1.29848768e-01 2.30156335e-01 -9.64451844e-01]\n", + " [ 1.50150648e-01 2.49316972e-01 -9.56710944e-01]\n", + " [ 8.49956053e-03 1.17005906e-01 -9.93094847e-01]\n", + " [-1.17250187e-02 1.34657158e-01 -9.90822877e-01]\n", + " [-3.22736876e-02 1.52700300e-01 -9.87745426e-01]\n", + " [-5.30672927e-02 1.71040132e-01 -9.83833896e-01]\n", + " [-7.40262619e-02 1.89586039e-01 -9.79069582e-01]\n", + " [-9.50703560e-02 2.08251789e-01 -9.73443794e-01]\n", + " [-1.16118604e-01 2.26955050e-01 -9.66958053e-01]\n", + " [-1.37089520e-01 2.45617002e-01 -9.59624276e-01]\n", + " [ 1.50150648e-01 2.49316972e-01 -9.56710944e-01]\n", + " [ 1.30506590e-01 2.68984830e-01 -9.54261595e-01]\n", + " [ 1.10357154e-01 2.88841046e-01 -9.50995346e-01]\n", + " [ 8.97773933e-02 3.08793499e-01 -9.46882566e-01]\n", + " [ 6.88431522e-02 3.28753477e-01 -9.41903271e-01]\n", + " [ 4.76324152e-02 3.48634431e-01 -9.36047641e-01]\n", + " [ 2.62260285e-02 3.68351446e-01 -9.29316635e-01]\n", + " [ 4.70759980e-03 3.87821511e-01 -9.21722471e-01]\n", + " [-1.37089520e-01 2.45617002e-01 -9.59624276e-01]\n", + " [-1.17866541e-01 2.65826837e-01 -9.56788154e-01]\n", + " [-9.81744769e-02 2.86222751e-01 -9.53120301e-01]\n", + " [-7.80863330e-02 3.06711552e-01 -9.48593985e-01]\n", + " [-5.76762412e-02 3.27203157e-01 -9.43192210e-01]\n", + " [-3.70206394e-02 3.47609424e-01 -9.36908299e-01]\n", + " [-1.61987739e-02 3.67843754e-01 -9.29746510e-01]\n", + " [ 4.70759980e-03 3.87821511e-01 -9.21722471e-01]\n", + " [ 1.70155039e-02 1.24948818e-01 -9.92017271e-01]\n", + " [ 4.14563018e-02 1.47532214e-01 -9.88188049e-01]\n", + " [ 6.62432870e-02 1.70599435e-01 -9.83111214e-01]\n", + " [ 9.12340988e-02 1.93979433e-01 -9.76753970e-01]\n", + " [ 1.16285000e-01 2.17510863e-01 -9.69106198e-01]\n", + " [ 1.41250917e-01 2.41040987e-01 -9.60180931e-01]\n", + " [-2.06459334e-04 1.24709548e-01 -9.92193270e-01]\n", + " [-2.52217388e-02 1.46620373e-01 -9.88871240e-01]\n", + " [-5.06453356e-02 1.69024596e-01 -9.84309776e-01]\n", + " [-7.63309479e-02 1.91753479e-01 -9.78470331e-01]\n", + " [-1.02130850e-01 2.14648218e-01 -9.71336930e-01]\n", + " [-1.27895738e-01 2.37558708e-01 -9.62916684e-01]\n", + " [ 1.41583300e-01 2.57797371e-01 -9.55769159e-01]\n", + " [ 1.17157487e-01 2.82040166e-01 -9.52222384e-01]\n", + " [ 9.20472681e-02 3.06474026e-01 -9.47418056e-01]\n", + " [ 6.63918686e-02 3.30934293e-01 -9.41315364e-01]\n", + " [ 4.03349447e-02 3.55261579e-01 -9.33896302e-01]\n", + " [ 1.40265189e-02 3.79300309e-01 -9.25167300e-01]\n", + " [-1.28698823e-01 2.54335616e-01 -9.58514479e-01]\n", + " [-1.04813803e-01 2.79241252e-01 -9.54483311e-01]\n", + " [-8.02968198e-02 3.04333492e-01 -9.49175193e-01]\n", + " [-5.52838129e-02 3.29445286e-01 -9.42554775e-01]\n", + " [-2.99155647e-02 3.54414325e-01 -9.34609836e-01]\n", + " [-4.33905404e-03 3.79081953e-01 -9.25352930e-01]\n", + " [ 8.49811411e-03 1.17126969e-01 -9.93080589e-01]\n", + " [ 8.49811411e-03 1.17126969e-01 -9.93080589e-01]\n", + " [ 4.70973738e-03 3.87687657e-01 -9.21778769e-01]\n", + " [ 4.70973738e-03 3.87687657e-01 -9.21778769e-01]\n", + " [ 8.31100568e-03 1.32607310e-01 -9.91133810e-01]\n", + " [-1.67156532e-02 1.54718091e-01 -9.87817240e-01]\n", + " [-4.21679682e-02 1.77299954e-01 -9.83253064e-01]\n", + " [-6.78998111e-02 2.00184632e-01 -9.77402542e-01]\n", + " [-9.37633685e-02 2.23213786e-01 -9.70249471e-01]\n", + " [-1.19608946e-01 2.46237456e-01 -9.61800819e-01]\n", + " [ 3.27639731e-02 1.55390874e-01 -9.87309576e-01]\n", + " [ 7.73898469e-03 1.78027052e-01 -9.83995161e-01]\n", + " [-1.77609358e-02 2.01073579e-01 -9.79415114e-01]\n", + " [-4.35903731e-02 2.24363919e-01 -9.73530026e-01]\n", + " [-6.96014158e-02 2.47740922e-01 -9.66322968e-01]\n", + " [-9.56433019e-02 2.71054670e-01 -9.57800462e-01]\n", + " [ 5.75809842e-02 1.78636281e-01 -9.82228848e-01]\n", + " [ 3.26084823e-02 2.01738065e-01 -9.78896542e-01]\n", + " [ 7.11182379e-03 2.25193663e-01 -9.74288066e-01]\n", + " [-1.87646669e-02 2.48838184e-01 -9.68363282e-01]\n", + " [-4.48733509e-02 2.72515092e-01 -9.61104525e-01]\n", + " [-7.10626813e-02 2.96073828e-01 -9.52517918e-01]\n", + " [ 8.26197862e-02 2.02172932e-01 -9.75858635e-01]\n", + " [ 5.77510744e-02 2.25682220e-01 -9.72487712e-01]\n", + " [ 3.23094031e-02 2.49492913e-01 -9.67837481e-01]\n", + " [ 6.43765926e-03 2.73441131e-01 -9.61867197e-01]\n", + " [-1.97172662e-02 2.97370171e-01 -9.54558647e-01]\n", + " [-4.60035550e-02 3.21128223e-01 -9.45917722e-01]\n", + " [ 1.07736480e-01 2.25839902e-01 -9.68188613e-01]\n", + " [ 8.30225101e-02 2.49699657e-01 -9.64757661e-01]\n", + " [ 5.76875426e-02 2.73811987e-01 -9.60051636e-01]\n", + " [ 3.18728359e-02 2.98013185e-01 -9.54029488e-01]\n", + " [ 5.72408253e-03 3.22145683e-01 -9.46672802e-01]\n", + " [-2.06072603e-02 3.46056056e-01 -9.37987498e-01]\n", + " [ 1.32785559e-01 2.49484544e-01 -9.59231702e-01]\n", + " [ 1.08276042e-01 2.73637635e-01 -9.55718967e-01]\n", + " [ 8.30984792e-02 2.97997396e-01 -9.50942793e-01]\n", + " [ 5.73925699e-02 3.22399524e-01 -9.44862233e-01]\n", + " [ 3.13025177e-02 3.46685140e-01 -9.37459101e-01]\n", + " [ 4.97880752e-03 3.70699185e-01 -9.28739644e-01]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:fp_optics: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:fp_optics: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:cartToSphere: vec: [[ 2.88481342e-02 6.43599106e-01 -7.64818917e-01]\n", + " [ 6.93255809e-03 6.31687841e-01 -7.75191855e-01]\n", + " [-1.53497783e-02 6.18957854e-01 -7.85274194e-01]\n", + " [-3.79123871e-02 6.05446662e-01 -7.94982384e-01]\n", + " [-6.06683590e-02 5.91195907e-01 -8.04242967e-01]\n", + " [-8.35301404e-02 5.76251575e-01 -8.12992520e-01]\n", + " [-1.06409482e-01 5.60664418e-01 -8.21177467e-01]\n", + " [-1.29217661e-01 5.44490308e-01 -8.28753944e-01]\n", + " [ 2.88481342e-02 6.43599106e-01 -7.64818917e-01]\n", + " [ 4.66859782e-02 6.27601570e-01 -7.77133636e-01]\n", + " [ 6.47570566e-02 6.10714981e-01 -7.89198160e-01]\n", + " [ 8.29927302e-02 5.92992372e-01 -8.00919630e-01]\n", + " [ 1.01323910e-01 5.74490913e-01 -8.12215277e-01]\n", + " [ 1.19680839e-01 5.55272169e-01 -8.23012342e-01]\n", + " [ 1.37993100e-01 5.35402572e-01 -8.33247856e-01]\n", + " [ 1.56189880e-01 5.14953796e-01 -8.42868501e-01]\n", + " [-1.29217661e-01 5.44490308e-01 -8.28753944e-01]\n", + " [-1.12204395e-01 5.27068625e-01 -8.42382834e-01]\n", + " [-9.47545188e-02 5.08865725e-01 -8.55615133e-01]\n", + " [-7.69330279e-02 4.89931319e-01 -8.68359725e-01]\n", + " [-5.88056065e-02 4.70319918e-01 -8.80534540e-01]\n", + " [-4.04397956e-02 4.50092211e-01 -8.92065931e-01]\n", + " [-2.19056121e-02 4.29315955e-01 -9.02888672e-01]\n", + " [-3.27545742e-03 4.08066131e-01 -9.12946496e-01]\n", + " [ 1.56189880e-01 5.14953796e-01 -8.42868501e-01]\n", + " [ 1.34579556e-01 5.01506202e-01 -8.54622649e-01]\n", + " [ 1.12439102e-01 4.87384032e-01 -8.65918156e-01]\n", + " [ 8.98506133e-02 4.72622223e-01 -8.76672745e-01]\n", + " [ 6.68974324e-02 4.57260549e-01 -8.86813128e-01]\n", + " [ 4.36654897e-02 4.41344698e-01 -8.96274613e-01]\n", + " [ 2.02438811e-02 4.24926928e-01 -9.05001266e-01]\n", + " [-3.27545742e-03 4.08066131e-01 -9.12946496e-01]\n", + " [ 1.94039274e-02 6.38455117e-01 -7.69414421e-01]\n", + " [-7.71365283e-03 6.23300494e-01 -7.81944367e-01]\n", + " [-3.52963450e-02 6.06953002e-01 -7.93953538e-01]\n", + " [-6.31843388e-02 5.89487596e-01 -8.05302498e-01]\n", + " [-9.12164440e-02 5.70988980e-01 -8.15874467e-01]\n", + " [-1.19229977e-01 5.51552705e-01 -8.25574846e-01]\n", + " [ 3.65181538e-02 6.36696963e-01 -7.70248922e-01]\n", + " [ 5.85456273e-02 6.16484928e-01 -7.85187075e-01]\n", + " [ 8.08554130e-02 5.94989773e-01 -7.99655909e-01]\n", + " [ 1.03320522e-01 5.72315031e-01 -8.13498847e-01]\n", + " [ 1.25812534e-01 5.48574096e-01 -8.26581918e-01]\n", + " [ 1.48201625e-01 5.23891436e-01 -8.38793205e-01]\n", + " [-1.21779587e-01 5.37049945e-01 -8.34713777e-01]\n", + " [-1.00625504e-01 5.15167053e-01 -8.51162391e-01]\n", + " [-7.88803295e-02 4.92159575e-01 -8.66923783e-01]\n", + " [-5.66646394e-02 4.68125799e-01 -8.81843158e-01]\n", + " [-3.41028512e-02 4.43177550e-01 -8.95784938e-01]\n", + " [-1.13248905e-02 4.17442590e-01 -9.08632726e-01]\n", + " [ 1.46775958e-01 5.09246722e-01 -8.48012143e-01]\n", + " [ 1.19922904e-01 4.92308208e-01 -8.62120134e-01]\n", + " [ 9.23552061e-02 4.74390561e-01 -8.75456516e-01]\n", + " [ 6.42256987e-02 4.55564940e-01 -8.87882675e-01]\n", + " [ 3.56926486e-02 4.35915525e-01 -8.99279539e-01]\n", + " [ 6.92130910e-03 4.15541296e-01 -9.09547979e-01]\n", + " [ 2.88344370e-02 6.43506670e-01 -7.64897209e-01]\n", + " [ 2.88344370e-02 6.43506670e-01 -7.64897209e-01]\n", + " [-3.25875757e-03 4.08197854e-01 -9.12887667e-01]\n", + " [-3.25875757e-03 4.08197854e-01 -9.12887667e-01]\n", + " [ 2.70787410e-02 6.31596865e-01 -7.74823942e-01]\n", + " [ 4.90940013e-02 6.11252173e-01 -7.89911742e-01]\n", + " [ 7.14109987e-02 5.89631455e-01 -8.04509302e-01]\n", + " [ 9.39028504e-02 5.66837768e-01 -8.18460262e-01]\n", + " [ 1.16440984e-01 5.42984034e-01 -8.31630829e-01]\n", + " [ 1.38895160e-01 5.18194566e-01 -8.43909075e-01]\n", + " [-7.44523301e-05 6.16311898e-01 -7.87502152e-01]\n", + " [ 2.18767839e-02 5.95613530e-01 -8.02973181e-01]\n", + " [ 4.41849107e-02 5.73661263e-01 -8.17900024e-01]\n", + " [ 6.67235117e-02 5.50556413e-01 -8.32127159e-01]\n", + " [ 8.93637384e-02 5.26410579e-01 -8.45521156e-01]\n", + " [ 1.11974265e-01 5.01347851e-01 -8.57969753e-01]\n", + " [-2.77083070e-02 5.99844602e-01 -7.99636607e-01]\n", + " [-5.86540535e-03 5.78824483e-01 -8.15431061e-01]\n", + " [ 1.63893761e-02 5.56575200e-01 -8.30635561e-01]\n", + " [ 3.89304691e-02 5.33196294e-01 -8.45095338e-01]\n", + " [ 6.16291850e-02 5.08798386e-01 -8.58676916e-01]\n", + " [ 8.43534743e-02 4.83505800e-01 -8.71267257e-01]\n", + " [-5.56631836e-02 5.82269498e-01 -8.11088061e-01]\n", + " [-3.39736461e-02 5.60957972e-01 -8.27146870e-01]\n", + " [-1.18177674e-02 5.38444654e-01 -8.42578005e-01]\n", + " [ 1.06801588e-02 5.14827790e-01 -8.57227088e-01]\n", + " [ 3.33921765e-02 4.90217623e-01 -8.70960185e-01]\n", + " [ 5.61861045e-02 4.64739191e-01 -8.83663175e-01]\n", + " [-8.37777919e-02 5.63670840e-01 -8.21739902e-01]\n", + " [-6.22864620e-02 5.42096992e-01 -8.38004325e-01]\n", + " [-4.02751328e-02 5.19351750e-01 -8.53610961e-01]\n", + " [-1.78665196e-02 4.95532831e-01 -8.68405436e-01]\n", + " [ 4.81270224e-03 4.70750772e-01 -8.82253109e-01]\n", + " [ 2.76309031e-02 4.45131682e-01 -8.95038725e-01]\n", + " [-1.11889034e-01 5.44143983e-01 -8.31497546e-01]\n", + " [-9.06395315e-02 5.22336563e-01 -8.47908598e-01]\n", + " [-6.88173188e-02 4.99391667e-01 -8.63638894e-01]\n", + " [-4.65434903e-02 4.75407302e-01 -8.78533779e-01]\n", + " [-2.39430768e-02 4.50494881e-01 -8.92457893e-01]\n", + " [-1.14653316e-03 4.24781741e-01 -9.05295067e-01]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:fp_optics: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:cartToSphere: vec: [[0.66681007 0.32294136 0.67161984]\n", + " [0.67737509 0.33915534 0.65279142]\n", + " [0.68774108 0.35534085 0.6330443 ]\n", + " [0.69783137 0.3714243 0.61243398]\n", + " [0.70757458 0.38733448 0.59102471]\n", + " [0.7169069 0.40300284 0.56888769]\n", + " [0.72577307 0.41836352 0.54610019]\n", + " [0.73412671 0.43335355 0.52274532]\n", + " [0.66681007 0.32294136 0.67161984]\n", + " [0.6823355 0.30167641 0.66589008]\n", + " [0.69774602 0.27981213 0.65943587]\n", + " [0.7129448 0.25741982 0.65226126]\n", + " [0.72783976 0.23457571 0.6443784 ]\n", + " [0.74234619 0.21135998 0.63580586]\n", + " [0.75638778 0.18785652 0.626568 ]\n", + " [0.76989704 0.16415269 0.61669477]\n", + " [0.73412671 0.43335355 0.52274532]\n", + " [0.75110621 0.41240043 0.51552434]\n", + " [0.7678317 0.39068732 0.50773803]\n", + " [0.78420072 0.36828445 0.49939542]\n", + " [0.80012026 0.34526435 0.49051003]\n", + " [0.81550533 0.32170371 0.48110059]\n", + " [0.83027803 0.29768532 0.47119194]\n", + " [0.8443676 0.27329887 0.46081567]\n", + " [0.76989704 0.16415269 0.61669477]\n", + " [0.78206576 0.17961435 0.59675107]\n", + " [0.79384731 0.19523382 0.57592552]\n", + " [0.80515926 0.21094034 0.55427677]\n", + " [0.81592835 0.22666606 0.53186786]\n", + " [0.82608958 0.24234471 0.50876816]\n", + " [0.83558572 0.25791066 0.48505525]\n", + " [0.8443676 0.27329887 0.46081567]\n", + " [0.67148958 0.32993778 0.66350796]\n", + " [0.68431532 0.34979986 0.63980669]\n", + " [0.69676536 0.36954593 0.6147795 ]\n", + " [0.70870591 0.3890439 0.58854122]\n", + " [0.72001959 0.40816756 0.5612228 ]\n", + " [0.73060835 0.42679685 0.53296894]\n", + " [0.67362394 0.31380314 0.6691475 ]\n", + " [0.69258826 0.28732887 0.66163707]\n", + " [0.71128331 0.26002448 0.65304159]\n", + " [0.72953741 0.23202832 0.64338016]\n", + " [0.74719468 0.203488 0.63268693]\n", + " [0.76411832 0.17455939 0.62100903]\n", + " [0.74152633 0.42426503 0.51974791]\n", + " [0.76217875 0.39806449 0.51051759]\n", + " [0.78234682 0.37079209 0.50044647]\n", + " [0.80185541 0.34258035 0.48955756]\n", + " [0.82054795 0.3135707 0.47788542]\n", + " [0.83828395 0.28391845 0.4654786 ]\n", + " [0.77519915 0.17095156 0.60814623]\n", + " [0.78986322 0.1900174 0.58310333]\n", + " [0.80386287 0.20924945 0.55679363]\n", + " [0.81705948 0.22852163 0.52933134]\n", + " [0.82933332 0.24771184 0.50084437]\n", + " [0.84058236 0.26669943 0.47147928]\n", + " [0.66689963 0.32292514 0.67153871]\n", + " [0.66689963 0.32292514 0.67153871]\n", + " [0.84429189 0.27333054 0.46093559]\n", + " [0.84429189 0.27333054 0.46093559]\n", + " [0.67827509 0.32081097 0.66107732]\n", + " [0.69740294 0.29431074 0.65346027]\n", + " [0.71624397 0.26696267 0.6447678 ]\n", + " [0.73462456 0.23890537 0.63502046]\n", + " [0.75238823 0.21028651 0.62425278]\n", + " [0.76939797 0.18126221 0.61251185]\n", + " [0.69126116 0.34066958 0.63726152]\n", + " [0.71081379 0.31412614 0.62933975]\n", + " [0.73003041 0.28668659 0.62037601]\n", + " [0.74873457 0.25848957 0.61039306]\n", + " [0.76676934 0.22968258 0.5994253 ]\n", + " [0.78399759 0.20042241 0.58751906]\n", + " [0.70384936 0.36042732 0.61211782]\n", + " [0.72376441 0.33388609 0.60389168]\n", + " [0.74329818 0.30640334 0.59466361]\n", + " [0.76227386 0.27811684 0.58445665]\n", + " [0.78053504 0.24917326 0.57330422]\n", + " [0.79794435 0.21972991 0.56125179]\n", + " [0.71590401 0.37995233 0.58576248]\n", + " [0.73611626 0.35345933 0.57723423]\n", + " [0.75590822 0.32598239 0.5677484 ]\n", + " [0.77510378 0.29765765 0.5573276 ]\n", + " [0.79354699 0.26863046 0.54600444]\n", + " [0.8110998 0.23905815 0.53382424]\n", + " [0.72730709 0.39911844 0.55832685]\n", + " [0.74775085 0.37271955 0.54949868]\n", + " [0.76774239 0.34529732 0.53976048]\n", + " [0.78710635 0.3169861 0.52913459]\n", + " [0.80568678 0.28792948 0.51765377]\n", + " [0.82334458 0.25828429 0.50536415]\n", + " [0.7379604 0.41780531 0.52995582]\n", + " [0.75857001 0.39154533 0.52082991]\n", + " [0.77870247 0.36422564 0.51084455]\n", + " [0.79818268 0.33597911 0.50002245]\n", + " [0.8168543 0.30694765 0.48839758]\n", + " [0.83457715 0.27728704 0.47601774]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:fp_optics: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:cartToSphere: vec: [[-0.48862142 0.62116331 -0.61270323]\n", + " [-0.50729848 0.62590092 -0.59236499]\n", + " [-0.52593574 0.63022705 -0.571144 ]\n", + " [-0.54443687 0.63409703 -0.54909877]\n", + " [-0.56271083 0.63747267 -0.52629375]\n", + " [-0.58067093 0.64032219 -0.50280092]\n", + " [-0.59823467 0.64262049 -0.47870051]\n", + " [-0.61532439 0.64434955 -0.45408099]\n", + " [-0.48862142 0.62116331 -0.61270323]\n", + " [-0.50455564 0.59875879 -0.62202212]\n", + " [-0.52008242 0.57594085 -0.63071897]\n", + " [-0.53514897 0.55280619 -0.63876513]\n", + " [-0.5497096 0.52945783 -0.64613757]\n", + " [-0.56372595 0.50600523 -0.65281833]\n", + " [-0.57716705 0.48256479 -0.65879391]\n", + " [-0.59000918 0.45926068 -0.66405482]\n", + " [-0.61532439 0.64434955 -0.45408099]\n", + " [-0.63170081 0.6211444 -0.46382509]\n", + " [-0.64745906 0.59745668 -0.47311973]\n", + " [-0.66254489 0.573388 -0.48193409]\n", + " [-0.67691304 0.54904451 -0.49024368]\n", + " [-0.69052721 0.52453603 -0.49803024]\n", + " [-0.70335951 0.49997618 -0.50528133]\n", + " [-0.71538938 0.47548355 -0.51198967]\n", + " [-0.59000918 0.45926068 -0.66405482]\n", + " [-0.60877848 0.46223691 -0.64476802]\n", + " [-0.62741834 0.46505653 -0.62455475]\n", + " [-0.64582836 0.46767389 -0.60347896]\n", + " [-0.66391482 0.47005148 -0.58160873]\n", + " [-0.68159027 0.47215954 -0.55901705]\n", + " [-0.69877343 0.4739755 -0.53578253]\n", + " [-0.71538938 0.47548355 -0.51198967]\n", + " [-0.49681848 0.62320028 -0.6039808 ]\n", + " [-0.51969536 0.6287352 -0.57845378]\n", + " [-0.54241598 0.63360711 -0.55165834]\n", + " [-0.56481063 0.63774301 -0.52371061]\n", + " [-0.58671968 0.64108444 -0.49474312]\n", + " [-0.60799321 0.64358812 -0.46490708]\n", + " [-0.49567926 0.61146815 -0.61677287]\n", + " [-0.51494172 0.58371839 -0.62778012]\n", + " [-0.53353878 0.55544296 -0.63782402]\n", + " [-0.55138336 0.52682892 -0.64685985]\n", + " [-0.56840486 0.49807784 -0.65485448]\n", + " [-0.58454928 0.46940719 -0.66178474]\n", + " [-0.6224792 0.63429272 -0.45846744]\n", + " [-0.64214179 0.60551549 -0.47011159]\n", + " [-0.66082111 0.57611385 -0.48104916]\n", + " [-0.67843008 0.54628137 -0.49123242]\n", + " [-0.69490181 0.51622026 -0.50062772]\n", + " [-0.71018803 0.48614166 -0.50921435]\n", + " [-0.59815915 0.46065411 -0.65574646]\n", + " [-0.6210893 0.46420391 -0.63147669]\n", + " [-0.64372454 0.46747198 -0.60587843]\n", + " [-0.66588958 0.47038592 -0.57907526]\n", + " [-0.68742343 0.47289087 -0.55120165]\n", + " [-0.70817906 0.4749481 -0.52240475]\n", + " [-0.48874036 0.62110435 -0.61266814]\n", + " [-0.48874036 0.62110435 -0.61266814]\n", + " [-0.71529385 0.47556243 -0.51204988]\n", + " [-0.71529385 0.47556243 -0.51204988]\n", + " [-0.50378306 0.61352561 -0.60810276]\n", + " [-0.52310242 0.58565913 -0.61916657]\n", + " [-0.54173264 0.55725601 -0.62927854]\n", + " [-0.55958628 0.5285035 -0.63839427]\n", + " [-0.57659257 0.49960288 -0.64648122]\n", + " [-0.59269753 0.47077086 -0.65351697]\n", + " [-0.52672422 0.61896368 -0.58261956]\n", + " [-0.54618284 0.5908034 -0.59383133]\n", + " [-0.56488793 0.56207922 -0.60412629]\n", + " [-0.58275123 0.53297945 -0.6134606 ]\n", + " [-0.59970175 0.50370488 -0.62180319]\n", + " [-0.61568582 0.47447018 -0.62913355]\n", + " [-0.54949641 0.62375696 -0.55586055]\n", + " [-0.56906091 0.59535792 -0.56720245]\n", + " [-0.58781155 0.56637311 -0.57766693]\n", + " [-0.60565959 0.53699229 -0.58721014]\n", + " [-0.62253436 0.5074163 -0.5958017 ]\n", + " [-0.63838296 0.47785818 -0.60342254]\n", + " [-0.57192952 0.62783298 -0.52794163]\n", + " [-0.59156534 0.5992517 -0.53939582]\n", + " [-0.61033106 0.57006769 -0.55001712]\n", + " [-0.62813794 0.5404723 -0.55976103]\n", + " [-0.64491613 0.51066678 -0.56859708]\n", + " [-0.66061393 0.48086307 -0.57650667]\n", + " [-0.59386348 0.63113392 -0.49899512]\n", + " [-0.61353509 0.60242872 -0.51054318]\n", + " [-0.63228489 0.5731085 -0.52130842]\n", + " [-0.65002463 0.54336595 -0.53124517]\n", + " [-0.6666856 0.51340282 -0.54032199]\n", + " [-0.68221763 0.48343046 -0.54851991]\n", + " [-0.61514804 0.63361705 -0.46917194]\n", + " [-0.63481936 0.60484788 -0.48079458]\n", + " [-0.65352241 0.57545594 -0.49168985]\n", + " [-0.67116977 0.54563473 -0.50181061]\n", + " [-0.68769408 0.51558635 -0.51112383]\n", + " [-0.70304661 0.48552194 -0.51960938]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:fp_optics: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:cartToSphere: vec: [[-0.81956899 -0.05684934 -0.57015334]\n", + " [-0.83254438 -0.07055783 -0.5494465 ]\n", + " [-0.84510519 -0.08448137 -0.52788268]\n", + " [-0.85716388 -0.09856044 -0.50552539]\n", + " [-0.8686426 -0.11273734 -0.48244203]\n", + " [-0.87947216 -0.12695498 -0.45870595]\n", + " [-0.88959156 -0.14115589 -0.43439828]\n", + " [-0.89894839 -0.15528213 -0.40960867]\n", + " [-0.81956899 -0.05684934 -0.57015334]\n", + " [-0.80993807 -0.08211033 -0.58073937]\n", + " [-0.79970586 -0.10726915 -0.59073164]\n", + " [-0.78892357 -0.13222987 -0.60009571]\n", + " [-0.77765196 -0.15689881 -0.60880226]\n", + " [-0.76596104 -0.1811848 -0.61682717]\n", + " [-0.75392935 -0.20499948 -0.62415202]\n", + " [-0.7416421 -0.22825827 -0.63076553]\n", + " [-0.89894839 -0.15528213 -0.40960867]\n", + " [-0.88890568 -0.1813366 -0.42067057]\n", + " [-0.87809904 -0.20714338 -0.43131624]\n", + " [-0.86658274 -0.23260281 -0.4415091 ]\n", + " [-0.85441961 -0.25762104 -0.45121894]\n", + " [-0.84168055 -0.2821098 -0.46042145]\n", + " [-0.82844499 -0.30598455 -0.46909739]\n", + " [-0.8148019 -0.32916236 -0.4772316 ]\n", + " [-0.7416421 -0.22825827 -0.63076553]\n", + " [-0.75324967 -0.24296504 -0.6112143 ]\n", + " [-0.76459838 -0.25767673 -0.59075546]\n", + " [-0.77560478 -0.27233043 -0.56945005]\n", + " [-0.786192 -0.28686485 -0.54736706]\n", + " [-0.7962917 -0.30122022 -0.52458164]\n", + " [-0.80584484 -0.31533827 -0.50117448]\n", + " [-0.8148019 -0.32916236 -0.4772316 ]\n", + " [-0.82523926 -0.06288272 -0.5612717 ]\n", + " [-0.84087437 -0.07983698 -0.53530958]\n", + " [-0.85579876 -0.09705471 -0.50812289]\n", + " [-0.86986509 -0.11442895 -0.47983408]\n", + " [-0.88294594 -0.1318545 -0.45057837]\n", + " [-0.89493254 -0.14922532 -0.42050869]\n", + " [-0.81549152 -0.06791634 -0.57477035]\n", + " [-0.80327705 -0.09882057 -0.58735039]\n", + " [-0.79020911 -0.12947566 -0.59900386]\n", + " [-0.77639556 -0.1597082 -0.60967468]\n", + " [-0.76196524 -0.18935037 -0.61931851]\n", + " [-0.74706567 -0.218241 -0.62790426]\n", + " [-0.89463612 -0.16661772 -0.41456574]\n", + " [-0.88180775 -0.19839639 -0.42784806]\n", + " [-0.86788494 -0.22970349 -0.44046798]\n", + " [-0.85297983 -0.26036379 -0.45236723]\n", + " [-0.83722301 -0.29021454 -0.46350097]\n", + " [-0.82076463 -0.31910085 -0.47383548]\n", + " [-0.74677216 -0.23458718 -0.62233447]\n", + " [-0.76083627 -0.25262291 -0.59775399]\n", + " [-0.77442793 -0.27060349 -0.57186986]\n", + " [-0.78740272 -0.28841541 -0.54480594]\n", + " [-0.79963491 -0.30594864 -0.51670053]\n", + " [-0.81101976 -0.32309655 -0.48770438]\n", + " [-0.8195821 -0.05698223 -0.57012123]\n", + " [-0.8195821 -0.05698223 -0.57012123]\n", + " [-0.81481958 -0.32903767 -0.47728741]\n", + " [-0.81481958 -0.32903767 -0.47728741]\n", + " [-0.82113117 -0.07385874 -0.56594036]\n", + " [-0.80885232 -0.10487228 -0.57858425]\n", + " [-0.79569829 -0.13562238 -0.59031416]\n", + " [-0.7817771 -0.1659353 -0.60107408]\n", + " [-0.76721799 -0.19564308 -0.6108194 ]\n", + " [-0.75216991 -0.22458418 -0.61951786]\n", + " [-0.83672207 -0.09091806 -0.54002785]\n", + " [-0.82427957 -0.12220303 -0.55283778]\n", + " [-0.8109055 -0.1531843 -0.56477149]\n", + " [-0.79670805 -0.18368716 -0.57577366]\n", + " [-0.78181669 -0.21354366 -0.58580011]\n", + " [-0.7663823 -0.24259217 -0.59481696]\n", + " [-0.85161027 -0.10822057 -0.5128823 ]\n", + " [-0.83903166 -0.13971984 -0.52583671]\n", + " [-0.82547255 -0.17087537 -0.53795602]\n", + " [-0.8110415 -0.20151154 -0.54918556]\n", + " [-0.79586772 -0.23146102 -0.55948223]\n", + " [-0.78010213 -0.2605632 -0.56881234]\n", + " [-0.86564857 -0.12565884 -0.48462605]\n", + " [-0.85296147 -0.15731374 -0.49770384]\n", + " [-0.83925198 -0.1885852 -0.5099919 ]\n", + " [-0.82462951 -0.21929701 -0.52143551]\n", + " [-0.80922325 -0.24928296 -0.53199224]\n", + " [-0.79318358 -0.27838419 -0.54162908]\n", + " [-0.87870982 -0.14312688 -0.45539406]\n", + " [-0.86594261 -0.17487671 -0.46857394]\n", + " [-0.8521178 -0.2062043 -0.4810146 ]\n", + " [-0.83734604 -0.23693342 -0.49266028]\n", + " [-0.82175694 -0.26689933 -0.50346825]\n", + " [-0.80550048 -0.29594516 -0.51340573]\n", + " [-0.89068558 -0.16051791 -0.42533892]\n", + " [-0.8778678 -0.1923002 -0.43859863]\n", + " [-0.86396395 -0.22362332 -0.45117502]\n", + " [-0.84908587 -0.25431168 -0.46301053]\n", + " [-0.83336388 -0.28420205 -0.47406101]\n", + " [-0.81694799 -0.31313917 -0.48429314]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:fp_optics: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:cartToSphere: vec: [[-2.86452835e-02 8.60467983e-01 -5.08698631e-01]\n", + " [-2.75431449e-02 8.45907945e-01 -5.32617239e-01]\n", + " [-2.63975444e-02 8.30374914e-01 -5.56579439e-01]\n", + " [-2.52117852e-02 8.13893765e-01 -5.80466455e-01]\n", + " [-2.39894936e-02 7.96498378e-01 -6.04164579e-01]\n", + " [-2.27346717e-02 7.78232646e-01 -6.27564406e-01]\n", + " [-2.14517081e-02 7.59150923e-01 -6.50561065e-01]\n", + " [-2.01453541e-02 7.39317941e-01 -6.73055085e-01]\n", + " [-2.86452835e-02 8.60467983e-01 -5.08698631e-01]\n", + " [ 3.64188239e-04 8.61363799e-01 -5.07988457e-01]\n", + " [ 2.92847876e-02 8.61484220e-01 -5.06939188e-01]\n", + " [ 5.80036144e-02 8.60837554e-01 -5.05563336e-01]\n", + " [ 8.64085346e-02 8.59440535e-01 -5.03880474e-01]\n", + " [ 1.14388118e-01 8.57317919e-01 -5.01917667e-01]\n", + " [ 1.41830991e-01 8.54502079e-01 -4.99710082e-01]\n", + " [ 1.68624633e-01 8.51032741e-01 -4.97301726e-01]\n", + " [-2.01453541e-02 7.39317941e-01 -6.73055085e-01]\n", + " [ 9.84915127e-03 7.40316306e-01 -6.72186553e-01]\n", + " [ 3.97392191e-02 7.40645928e-01 -6.70719318e-01]\n", + " [ 6.94071562e-02 7.40314888e-01 -6.68667715e-01]\n", + " [ 9.87379404e-02 7.39339786e-01 -6.66053677e-01]\n", + " [ 1.27620017e-01 7.37745382e-01 -6.62906391e-01]\n", + " [ 1.55945286e-01 7.35564219e-01 -6.59261971e-01]\n", + " [ 1.83608027e-01 7.32836351e-01 -6.55163319e-01]\n", + " [ 1.68624633e-01 8.51032741e-01 -4.97301726e-01]\n", + " [ 1.71438096e-01 8.36712749e-01 -5.20116098e-01]\n", + " [ 1.74034308e-01 8.21475964e-01 -5.43037107e-01]\n", + " [ 1.76410386e-01 8.05351463e-01 -5.65940276e-01]\n", + " [ 1.78561709e-01 7.88375934e-01 -5.88709693e-01]\n", + " [ 1.80482529e-01 7.70594331e-01 -6.11236807e-01]\n", + " [ 1.82166651e-01 7.52060310e-01 -6.33419767e-01]\n", + " [ 1.83608027e-01 7.32836351e-01 -6.55163319e-01]\n", + " [-2.80706746e-02 8.54245051e-01 -5.19112156e-01]\n", + " [-2.66892848e-02 8.35743257e-01 -5.48471413e-01]\n", + " [-2.52460502e-02 8.15803774e-01 -5.77777500e-01]\n", + " [-2.37475140e-02 7.94485169e-01 -6.06819060e-01]\n", + " [-2.22010506e-02 7.71868298e-01 -6.35394715e-01]\n", + " [-2.06148964e-02 7.48057559e-01 -6.63313587e-01]\n", + " [-1.59892783e-02 8.60905986e-01 -5.08512760e-01]\n", + " [ 1.95203078e-02 8.61481914e-01 -5.07412919e-01]\n", + " [ 5.47841213e-02 8.60900504e-01 -5.05815206e-01]\n", + " [ 8.95953906e-02 8.59189078e-01 -5.03752711e-01]\n", + " [ 1.23748905e-01 8.56393169e-01 -5.01275321e-01]\n", + " [ 1.57039231e-01 8.52575433e-01 -4.98451413e-01]\n", + " [-7.06692005e-03 7.39904625e-01 -6.72674665e-01]\n", + " [ 2.96389924e-02 7.40677811e-01 -6.71206309e-01]\n", + " [ 6.60708595e-02 7.40453470e-01 -6.68852226e-01]\n", + " [ 1.02015761e-01 7.39258635e-01 -6.65649649e-01]\n", + " [ 1.37268330e-01 7.37138850e-01 -6.61652266e-01]\n", + " [ 1.71630644e-01 7.34157150e-01 -6.56929373e-01]\n", + " [ 1.69787162e-01 8.44916305e-01 -5.07236392e-01]\n", + " [ 1.73088541e-01 8.26745584e-01 -5.35286929e-01]\n", + " [ 1.76061135e-01 8.07225801e-01 -5.63372864e-01]\n", + " [ 1.78697133e-01 7.86421296e-01 -5.91277328e-01]\n", + " [ 1.80986028e-01 7.64414881e-01 -6.18800410e-01]\n", + " [ 1.82916450e-01 7.41309004e-01 -6.45757333e-01]\n", + " [-2.85423641e-02 8.60424259e-01 -5.08778368e-01]\n", + " [-2.85423641e-02 8.60424259e-01 -5.08778368e-01]\n", + " [ 1.83510170e-01 7.32913398e-01 -6.55104548e-01]\n", + " [ 1.83510170e-01 7.32913398e-01 -6.55104548e-01]\n", + " [-1.54684610e-02 8.54729252e-01 -5.18843554e-01]\n", + " [ 2.01795341e-02 8.55314439e-01 -5.17716135e-01]\n", + " [ 5.55800806e-02 8.54745750e-01 -5.16062552e-01]\n", + " [ 9.05260942e-02 8.53050827e-01 -5.13915666e-01]\n", + " [ 1.24812664e-01 8.50275644e-01 -5.11324875e-01]\n", + " [ 1.58235345e-01 8.46483305e-01 -5.08357738e-01]\n", + " [-1.39635403e-02 8.36234084e-01 -5.48194834e-01]\n", + " [ 2.20320343e-02 8.36847327e-01 -5.46992816e-01]\n", + " [ 5.77748945e-02 8.36320694e-01 -5.45187820e-01]\n", + " [ 9.30567158e-02 8.34682538e-01 -5.42812591e-01]\n", + " [ 1.27673011e-01 8.31979850e-01 -5.39915856e-01]\n", + " [ 1.61421765e-01 8.28276849e-01 -5.36563580e-01]\n", + " [-1.24203288e-02 8.16300678e-01 -5.77493670e-01]\n", + " [ 2.38559160e-02 8.16945068e-01 -5.76221877e-01]\n", + " [ 5.98738404e-02 8.16470277e-01 -5.74274681e-01]\n", + " [ 9.54236221e-02 8.14904993e-01 -5.71685390e-01]\n", + " [ 1.30300707e-01 8.12296750e-01 -5.68503048e-01]\n", + " [ 1.64304865e-01 8.08710440e-01 -5.64793179e-01]\n", + " [-1.08460563e-02 7.94987600e-01 -6.06528712e-01]\n", + " [ 2.56421418e-02 7.95666523e-01 -6.05191923e-01]\n", + " [ 6.18665640e-02 7.95254085e-01 -6.03111489e-01]\n", + " [ 9.76159631e-02 7.93778896e-01 -6.00321737e-01]\n", + " [ 1.32685468e-01 7.91288488e-01 -5.96872763e-01]\n", + " [ 1.66876029e-01 7.87847843e-01 -5.92830639e-01]\n", + " [-9.24880019e-03 7.72375684e-01 -6.35098624e-01]\n", + " [ 2.73807575e-02 7.73092546e-01 -6.33701988e-01]\n", + " [ 6.37416195e-02 7.72753132e-01 -6.31497904e-01]\n", + " [ 9.96214601e-02 7.71385595e-01 -6.28521940e-01]\n", + " [ 1.34815076e-01 7.69036922e-01 -6.24825662e-01]\n", + " [ 1.69124127e-01 7.65771595e-01 -6.20476344e-01]\n", + " [-7.63734998e-03 7.48569289e-01 -6.63012587e-01]\n", + " [ 2.90614907e-02 7.49327273e-01 -6.61561840e-01]\n", + " [ 6.54875172e-02 7.49071193e-01 -6.59244820e-01]\n", + " [ 1.01427856e-01 7.47828421e-01 -6.56098349e-01]\n", + " [ 1.36677139e-01 7.45644941e-01 -6.52175575e-01]\n", + " [ 1.71037385e-01 7.42584233e-01 -6.47545264e-01]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:fp_optics: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:cartToSphere: vec: [[ 7.80845713e-02 -4.31076064e-01 8.98930602e-01]\n", + " [ 1.03290698e-01 -4.40871127e-01 8.91607358e-01]\n", + " [ 1.28913848e-01 -4.50503629e-01 8.83418191e-01]\n", + " [ 1.54847534e-01 -4.59915997e-01 8.74356630e-01]\n", + " [ 1.80986485e-01 -4.69055210e-01 8.64425302e-01]\n", + " [ 2.07225076e-01 -4.77872376e-01 8.53636785e-01]\n", + " [ 2.33456831e-01 -4.86322776e-01 8.42014290e-01]\n", + " [ 2.59574968e-01 -4.94366283e-01 8.29591956e-01]\n", + " [ 7.80845713e-02 -4.31076064e-01 8.98930602e-01]\n", + " [ 6.57141414e-02 -4.54986868e-01 8.88070156e-01]\n", + " [ 5.34167237e-02 -4.78475115e-01 8.76474881e-01]\n", + " [ 4.12436676e-02 -5.01455437e-01 8.64199864e-01]\n", + " [ 2.92484574e-02 -5.23848598e-01 8.51309095e-01]\n", + " [ 1.74872436e-02 -5.45581548e-01 8.37875271e-01]\n", + " [ 6.01960082e-03 -5.66587139e-01 8.23979841e-01]\n", + " [-5.09075422e-03 -5.86803593e-01 8.09713299e-01]\n", + " [ 2.59574968e-01 -4.94366283e-01 8.29591956e-01]\n", + " [ 2.46642325e-01 -5.19041939e-01 8.18390512e-01]\n", + " [ 2.33532007e-01 -5.43173105e-01 8.06489789e-01]\n", + " [ 2.20299012e-01 -5.66670989e-01 7.93947313e-01]\n", + " [ 2.06999739e-01 -5.89455402e-01 7.80828686e-01]\n", + " [ 1.93691596e-01 -6.11454977e-01 7.67206867e-01]\n", + " [ 1.80433134e-01 -6.32606479e-01 7.53161953e-01]\n", + " [ 1.67284758e-01 -6.52853345e-01 7.38781646e-01]\n", + " [-5.09075422e-03 -5.86803593e-01 8.09713299e-01]\n", + " [ 1.84332882e-02 -5.97512799e-01 8.01647472e-01]\n", + " [ 4.25063829e-02 -6.07888519e-01 7.92883823e-01]\n", + " [ 6.70158230e-02 -6.17871300e-01 7.83418111e-01]\n", + " [ 9.18529330e-02 -6.27406500e-01 7.73255535e-01]\n", + " [ 1.16912090e-01 -6.36444240e-01 7.62410843e-01]\n", + " [ 1.42089890e-01 -6.44939657e-01 7.50908318e-01]\n", + " [ 1.67284758e-01 -6.52853345e-01 7.38781646e-01]\n", + " [ 8.89737859e-02 -4.35445546e-01 8.95807369e-01]\n", + " [ 1.20160034e-01 -4.47349402e-01 8.86250573e-01]\n", + " [ 1.51866700e-01 -4.58951188e-01 8.75385808e-01]\n", + " [ 1.83899586e-01 -4.70151439e-01 8.63214091e-01]\n", + " [ 2.16064187e-01 -4.80860147e-01 8.49758663e-01]\n", + " [ 2.48164300e-01 -4.90996860e-01 8.35066802e-01]\n", + " [ 7.27704255e-02 -4.41581538e-01 8.94265179e-01]\n", + " [ 5.76513448e-02 -4.70614337e-01 8.80453558e-01]\n", + " [ 4.26925661e-02 -4.98926828e-01 8.65591916e-01]\n", + " [ 2.79916518e-02 -5.26370576e-01 8.49794378e-01]\n", + " [ 1.36520573e-02 -5.52811067e-01 8.33194783e-01]\n", + " [-2.14850121e-04 -5.78126940e-01 8.15946809e-01]\n", + " [ 2.53872595e-01 -5.05159116e-01 8.24841181e-01]\n", + " [ 2.37896212e-01 -5.35047050e-01 8.10635582e-01]\n", + " [ 2.21707593e-01 -5.64028062e-01 7.95435786e-01]\n", + " [ 2.05410016e-01 -5.91950907e-01 7.79359256e-01]\n", + " [ 1.89109175e-01 -6.18684117e-01 7.62540283e-01]\n", + " [ 1.72913574e-01 -6.44114140e-01 7.45129432e-01]\n", + " [ 5.12878043e-03 -5.91442026e-01 8.06331213e-01]\n", + " [ 3.43451234e-02 -6.04350535e-01 7.95977916e-01]\n", + " [ 6.42735968e-02 -6.16698612e-01 7.84571046e-01]\n", + " [ 9.47125028e-02 -6.28383678e-01 7.72116245e-01]\n", + " [ 1.25467299e-01 -6.39313934e-01 7.58640660e-01]\n", + " [ 1.56348383e-01 -6.49409030e-01 7.44192915e-01]\n", + " [ 7.81275616e-02 -4.31192154e-01 8.98871187e-01]\n", + " [ 7.81275616e-02 -4.31192154e-01 8.98871187e-01]\n", + " [ 1.67243387e-01 -6.52759677e-01 7.38873774e-01]\n", + " [ 1.67243387e-01 -6.52759677e-01 7.38873774e-01]\n", + " [ 8.35938105e-02 -4.45874797e-01 8.91183337e-01]\n", + " [ 6.83937029e-02 -4.75010678e-01 8.77318162e-01]\n", + " [ 5.33298197e-02 -5.03411217e-01 8.62399604e-01]\n", + " [ 3.84994519e-02 -5.30927692e-01 8.46542130e-01]\n", + " [ 2.40053775e-02 -5.57425699e-01 8.29879709e-01]\n", + " [ 9.95803695e-03 -5.82784317e-01 8.12565860e-01]\n", + " [ 1.14722081e-01 -4.57878838e-01 8.81581428e-01]\n", + " [ 9.93122392e-02 -4.87272156e-01 8.67584535e-01]\n", + " [ 8.39718677e-02 -5.15889695e-01 8.52529500e-01]\n", + " [ 6.87980329e-02 -5.43581838e-01 8.36531898e-01]\n", + " [ 5.38921160e-02 -5.70214547e-01 8.19726180e-01]\n", + " [ 3.93621425e-02 -5.95668329e-01 8.02265457e-01]\n", + " [ 1.46380807e-01 -4.69561636e-01 8.70680498e-01]\n", + " [ 1.30790241e-01 -4.99160335e-01 8.56582088e-01]\n", + " [ 1.15203668e-01 -5.27946126e-01 8.41427955e-01]\n", + " [ 9.97187746e-02 -5.55768525e-01 8.25334788e-01]\n", + " [ 8.44365508e-02 -5.82493960e-01 8.08437540e-01]\n", + " [ 6.94634347e-02 -6.08004539e-01 7.90888938e-01]\n", + " [ 1.78376049e-01 -4.80823146e-01 8.58481850e-01]\n", + " [ 1.62634074e-01 -5.10573644e-01 8.44313160e-01]\n", + " [ 1.46831114e-01 -5.39477810e-01 8.29098496e-01]\n", + " [ 1.31066184e-01 -5.67384501e-01 8.12955400e-01]\n", + " [ 1.15440913e-01 -5.94160716e-01 7.96019120e-01]\n", + " [ 1.00061265e-01 -6.19690167e-01 7.78441931e-01]\n", + " [ 2.10513655e-01 -4.91572706e-01 8.45009039e-01]\n", + " [ 1.94650565e-01 -5.21419827e-01 8.30802336e-01]\n", + " [ 1.78661775e-01 -5.50391488e-01 8.15566785e-01]\n", + " [ 1.62648070e-01 -5.78336229e-01 7.99420297e-01]\n", + " [ 1.46712528e-01 -6.05121695e-01 7.82498031e-01]\n", + " [ 1.30961695e-01 -6.30633024e-01 7.64951648e-01]\n", + " [ 2.42597764e-01 -5.01729312e-01 8.30309594e-01]\n", + " [ 2.26645174e-01 -5.31616648e-01 8.16097852e-01]\n", + " [ 2.10502734e-01 -5.60604325e-01 8.00881633e-01]\n", + " [ 1.94273100e-01 -5.88540969e-01 7.84778625e-01]\n", + " [ 1.78061258e-01 -6.15294891e-01 7.67923424e-01]\n", + " [ 1.61975117e-01 -6.40752284e-01 7.50466902e-01]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:fp_optics: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:cartToSphere: vec: [[ 0.84978069 0.35083332 -0.39343203]\n", + " [ 0.86322457 0.34344385 -0.36998604]\n", + " [ 0.87623825 0.33562866 -0.34577439]\n", + " [ 0.88873105 0.32740451 -0.32087912]\n", + " [ 0.90062227 0.31879104 -0.29538415]\n", + " [ 0.91184023 0.30981154 -0.26937746]\n", + " [ 0.92232171 0.30049369 -0.24295308]\n", + " [ 0.93201242 0.29086997 -0.21621173]\n", + " [ 0.84978069 0.35083332 -0.39343203]\n", + " [ 0.84394598 0.37679323 -0.38181415]\n", + " [ 0.83747085 0.40232742 -0.36983134]\n", + " [ 0.83039229 0.42733967 -0.35753246]\n", + " [ 0.82275726 0.45173782 -0.34496875]\n", + " [ 0.81462252 0.47543401 -0.33219369]\n", + " [ 0.80605392 0.49834542 -0.31926308]\n", + " [ 0.79712478 0.52039608 -0.30623522]\n", + " [ 0.93201242 0.29086997 -0.21621173]\n", + " [ 0.92589388 0.31776303 -0.20432125]\n", + " [ 0.91896527 0.34428119 -0.1922844 ]\n", + " [ 0.91126602 0.37032376 -0.18015149]\n", + " [ 0.90284508 0.39579758 -0.16797334]\n", + " [ 0.89376043 0.42061651 -0.15580129]\n", + " [ 0.88407924 0.44469957 -0.1436878 ]\n", + " [ 0.87387855 0.46796866 -0.13168757]\n", + " [ 0.79712478 0.52039608 -0.30623522]\n", + " [ 0.80939963 0.51469075 -0.28278203]\n", + " [ 0.82136976 0.50836153 -0.25868954]\n", + " [ 0.83294795 0.50142061 -0.23404078]\n", + " [ 0.84405414 0.49388625 -0.20892339]\n", + " [ 0.85461725 0.48578113 -0.18342861]\n", + " [ 0.86457587 0.47713181 -0.15765087]\n", + " [ 0.87387855 0.46796866 -0.13168757]\n", + " [ 0.85567001 0.34775454 -0.38326964]\n", + " [ 0.87186935 0.3384106 -0.35400861]\n", + " [ 0.8873313 0.3284434 -0.32367899]\n", + " [ 0.90190321 0.31788789 -0.29243441]\n", + " [ 0.91545303 0.30678702 -0.2604371 ]\n", + " [ 0.92786805 0.29519375 -0.22786298]\n", + " [ 0.84736394 0.36217379 -0.38833556]\n", + " [ 0.83977775 0.3937173 -0.37384492]\n", + " [ 0.83126511 0.4245253 -0.35885455]\n", + " [ 0.82190835 0.45442645 -0.34345782]\n", + " [ 0.81181186 0.48325909 -0.32775318]\n", + " [ 0.80110014 0.51087341 -0.31184439]\n", + " [ 0.92941469 0.30266819 -0.21114046]\n", + " [ 0.92136668 0.33538915 -0.19646263]\n", + " [ 0.91214005 0.36744611 -0.18161465]\n", + " [ 0.90182104 0.39866436 -0.16668993]\n", + " [ 0.8905164 0.42888512 -0.15178306]\n", + " [ 0.87835383 0.45796057 -0.13699151]\n", + " [ 0.80253982 0.51791147 -0.29613773]\n", + " [ 0.81739133 0.51049733 -0.26695297]\n", + " [ 0.8316977 0.50215753 -0.23688974]\n", + " [ 0.84530842 0.49292326 -0.20610757]\n", + " [ 0.8580927 0.48283625 -0.17477438]\n", + " [ 0.86994162 0.47194694 -0.14306525]\n", + " [ 0.84980845 0.35089818 -0.3933142 ]\n", + " [ 0.84980845 0.35089818 -0.3933142 ]\n", + " [ 0.87388358 0.46792273 -0.13181734]\n", + " [ 0.87388358 0.46792273 -0.13181734]\n", + " [ 0.85321439 0.35907484 -0.378273 ]\n", + " [ 0.84558143 0.39074662 -0.36374323]\n", + " [ 0.83699941 0.42168505 -0.34873156]\n", + " [ 0.82755077 0.45171862 -0.33333167]\n", + " [ 0.8173403 0.48068534 -0.31764198]\n", + " [ 0.80649378 0.50843409 -0.30176574]\n", + " [ 0.86938566 0.34984345 -0.34896725]\n", + " [ 0.86163319 0.38183963 -0.33434523]\n", + " [ 0.85287286 0.41310969 -0.3192934 ]\n", + " [ 0.84318713 0.44348194 -0.30390661]\n", + " [ 0.83268108 0.47279468 -0.28828357]\n", + " [ 0.82148227 0.50089531 -0.27252663]\n", + " [ 0.8848245 0.33996793 -0.31860227]\n", + " [ 0.87697158 0.37223081 -0.30391622]\n", + " [ 0.86805954 0.40377647 -0.28885498]\n", + " [ 0.85817117 0.43443302 -0.27351452]\n", + " [ 0.84741139 0.46403998 -0.25799385]\n", + " [ 0.83590798 0.4924456 -0.2423947 ]\n", + " [ 0.89937834 0.32948283 -0.28733198]\n", + " [ 0.89144391 0.36195401 -0.27261154]\n", + " [ 0.88240635 0.39371929 -0.25757359]\n", + " [ 0.87234924 0.42460625 -0.24231453]\n", + " [ 0.86137765 0.45445566 -0.22693302]\n", + " [ 0.84961907 0.48311751 -0.21152992]\n", + " [ 0.91291529 0.31843035 -0.25531899]\n", + " [ 0.90491877 0.3510498 -0.24059522]\n", + " [ 0.89578214 0.3829782 -0.22561482]\n", + " [ 0.88559015 0.4140422 -0.21047359]\n", + " [ 0.87444844 0.4440833 -0.1952689 ]\n", + " [ 0.86248437 0.47295305 -0.18010033]\n", + " [ 0.92532287 0.30686263 -0.22273957]\n", + " [ 0.91728457 0.33956831 -0.20804418]\n", + " [ 0.90807638 0.37160211 -0.19315576]\n", + " [ 0.89778421 0.40278967 -0.17816846]\n", + " [ 0.8865145 0.4329724 -0.16317764]\n", + " [ 0.87439483 0.46200253 -0.14828132]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:fp_optics: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:cartToSphere: vec: [[ 0.42217379 -0.05301436 -0.90496341]\n", + " [ 0.4383174 -0.07398549 -0.89577006]\n", + " [ 0.4544266 -0.09531343 -0.88567026]\n", + " [ 0.47041815 -0.11691006 -0.87466496]\n", + " [ 0.48621338 -0.13868814 -0.86276425]\n", + " [ 0.50173736 -0.16056002 -0.84998829]\n", + " [ 0.51691878 -0.18243722 -0.83636812]\n", + " [ 0.53169054 -0.20423085 -0.82194582]\n", + " [ 0.42217379 -0.05301436 -0.90496341]\n", + " [ 0.44220163 -0.03388036 -0.89627554]\n", + " [ 0.46185231 -0.01485265 -0.88683248]\n", + " [ 0.48105593 0.00399196 -0.87668082]\n", + " [ 0.49974894 0.02257526 -0.86587606]\n", + " [ 0.51787432 0.04081724 -0.85448238]\n", + " [ 0.53538147 0.05863525 -0.8425726 ]\n", + " [ 0.55222595 0.07594313 -0.83022837]\n", + " [ 0.53169054 -0.20423085 -0.82194582]\n", + " [ 0.55231551 -0.18432541 -0.81300168]\n", + " [ 0.57237968 -0.1643203 -0.80335567]\n", + " [ 0.59181079 -0.144297 -0.79305635]\n", + " [ 0.61054507 -0.1243369 -0.7821605 ]\n", + " [ 0.62852746 -0.10452081 -0.77073253]\n", + " [ 0.6457109 -0.08492927 -0.75884416]\n", + " [ 0.66205515 -0.06564362 -0.74657478]\n", + " [ 0.55222595 0.07594313 -0.83022837]\n", + " [ 0.56882519 0.05689805 -0.82048798]\n", + " [ 0.58525678 0.0373085 -0.80998925]\n", + " [ 0.60143401 0.01726787 -0.79873585]\n", + " [ 0.61727571 -0.00313399 -0.78674066]\n", + " [ 0.63270597 -0.0238099 -0.77402599]\n", + " [ 0.64765414 -0.04467449 -0.76062363]\n", + " [ 0.66205515 -0.06564362 -0.74657478]\n", + " [ 0.42928045 -0.06204246 -0.90103775]\n", + " [ 0.4490544 -0.08799522 -0.88916083]\n", + " [ 0.46869326 -0.1143963 -0.87592244]\n", + " [ 0.48805037 -0.14108484 -0.86133728]\n", + " [ 0.50698775 -0.16789941 -0.84544261]\n", + " [ 0.52537585 -0.19467691 -0.82830014]\n", + " [ 0.43100308 -0.0447344 -0.90124091]\n", + " [ 0.45530533 -0.02134478 -0.89007947]\n", + " [ 0.47897077 0.00180912 -0.87782899]\n", + " [ 0.50187974 0.02458394 -0.86458797]\n", + " [ 0.52392726 0.04683228 -0.85047455]\n", + " [ 0.54502277 0.06840055 -0.83562644]\n", + " [ 0.54069735 -0.19549518 -0.81818581]\n", + " [ 0.56560777 -0.17102198 -0.80674614]\n", + " [ 0.58960323 -0.14648014 -0.79429944]\n", + " [ 0.61256279 -0.12201959 -0.78094689]\n", + " [ 0.63438498 -0.09778912 -0.766807 ]\n", + " [ 0.65498609 -0.07393726 -0.75201496]\n", + " [ 0.55942173 0.06765369 -0.82611761]\n", + " [ 0.57966448 0.04393228 -0.81367011]\n", + " [ 0.5995687 0.01948641 -0.80008603]\n", + " [ 0.61898268 -0.00551708 -0.78538526]\n", + " [ 0.63776665 -0.03091762 -0.76960886]\n", + " [ 0.65579285 -0.05655852 -0.75281929]\n", + " [ 0.422298 -0.05301984 -0.90490513]\n", + " [ 0.422298 -0.05301984 -0.90490513]\n", + " [ 0.66195248 -0.06563717 -0.74666638]\n", + " [ 0.66195248 -0.06563717 -0.74666638]\n", + " [ 0.43801835 -0.05372299 -0.89735933]\n", + " [ 0.46239982 -0.0302236 -0.88615627]\n", + " [ 0.48612375 -0.00694033 -0.87386242]\n", + " [ 0.50907013 0.01598361 -0.86057662]\n", + " [ 0.53113389 0.03840148 -0.84641722]\n", + " [ 0.55222466 0.06016072 -0.83152187]\n", + " [ 0.45787461 -0.07958972 -0.88544696]\n", + " [ 0.48245198 -0.05580929 -0.87414267]\n", + " [ 0.50631546 -0.03219078 -0.8617473 ]\n", + " [ 0.52934408 -0.00887754 -0.84836079]\n", + " [ 0.55143276 0.0139851 -0.83410211]\n", + " [ 0.57249188 0.03624728 -0.81910877]\n", + " [ 0.47757974 -0.10592025 -0.87218031]\n", + " [ 0.50230986 -0.08190308 -0.86080003]\n", + " [ 0.52627313 -0.05799473 -0.84833555]\n", + " [ 0.5493479 -0.03433946 -0.83488783]\n", + " [ 0.57142942 -0.01108218 -0.82057639]\n", + " [ 0.59242922 0.01162926 -0.80553856]\n", + " [ 0.49698659 -0.13255413 -0.85757433]\n", + " [ 0.52182488 -0.10834532 -0.84614425]\n", + " [ 0.54584695 -0.08419247 -0.83364425]\n", + " [ 0.56893087 -0.06024137 -0.82017599]\n", + " [ 0.59097258 -0.03663744 -0.80585924]\n", + " [ 0.61188506 -0.0135276 -0.79083101]\n", + " [ 0.51595665 -0.15933049 -0.84166652]\n", + " [ 0.54085723 -0.13497659 -0.83021369]\n", + " [ 0.56489633 -0.11062567 -0.81771272]\n", + " [ 0.58795216 -0.08642534 -0.80426545]\n", + " [ 0.60992169 -0.06252222 -0.78999146]\n", + " [ 0.6307194 -0.03906338 -0.77502716]\n", + " [ 0.5343599 -0.18608673 -0.82451879]\n", + " [ 0.55927604 -0.16163594 -0.8130708 ]\n", + " [ 0.58329024 -0.13713513 -0.80060381]\n", + " [ 0.60628126 -0.11273369 -0.78721925]\n", + " [ 0.62814722 -0.08857982 -0.77303602]\n", + " [ 0.64880401 -0.06482156 -0.75818963]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:fp_optics: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:cartToSphere: vec: [[-0.14574996 0.25278622 -0.95648109]\n", + " [-0.12661721 0.27306971 -0.9536252 ]\n", + " [-0.10700419 0.2935316 -0.94994174]\n", + " [-0.08698364 0.31407847 -0.94540391]\n", + " [-0.06662938 0.33461995 -0.93999469]\n", + " [-0.04601747 0.35506757 -0.93370735]\n", + " [-0.02522681 0.37533442 -0.9265461 ]\n", + " [-0.0043389 0.39533559 -0.91852651]\n", + " [-0.14574996 0.25278622 -0.95648109]\n", + " [-0.16648263 0.27125065 -0.94800138]\n", + " [-0.18694243 0.28949929 -0.93874527]\n", + " [-0.20704954 0.30746627 -0.92875991]\n", + " [-0.22672517 0.32509041 -0.91810235]\n", + " [-0.24589114 0.34231547 -0.90683938]\n", + " [-0.26446941 0.35909022 -0.89504756]\n", + " [-0.28238171 0.37536823 -0.88281327]\n", + " [-0.0043389 0.39533559 -0.91852651]\n", + " [-0.02588141 0.41431317 -0.90976632]\n", + " [-0.04732933 0.43285888 -0.90021837]\n", + " [-0.06859846 0.45090494 -0.88993201]\n", + " [-0.08960721 0.46839033 -0.8789659 ]\n", + " [-0.11027694 0.48526087 -0.86738739]\n", + " [-0.13053142 0.50146864 -0.85527233]\n", + " [-0.15029562 0.51697085 -0.84270538]\n", + " [-0.28238171 0.37536823 -0.88281327]\n", + " [-0.26511882 0.39592382 -0.87917935]\n", + " [-0.24719404 0.41652635 -0.87487194]\n", + " [-0.22868326 0.43707852 -0.8698657 ]\n", + " [-0.20966204 0.45748692 -0.86414556]\n", + " [-0.19020604 0.47766184 -0.85770673]\n", + " [-0.17039148 0.4975172 -0.85055475]\n", + " [-0.15029562 0.51697085 -0.84270538]\n", + " [-0.13754328 0.26166548 -0.95530782]\n", + " [-0.11376271 0.28665753 -0.9512547 ]\n", + " [-0.08933286 0.3118242 -0.94593092]\n", + " [-0.0643891 0.33699792 -0.93930104]\n", + " [-0.03907151 0.36201577 -0.93135278]\n", + " [-0.01352648 0.38671853 -0.92209859]\n", + " [-0.15475365 0.2609281 -0.95287346]\n", + " [-0.17999109 0.28342209 -0.94195283]\n", + " [-0.20473935 0.30552582 -0.9299117 ]\n", + " [-0.22885294 0.32712469 -0.91685101]\n", + " [-0.25218789 0.3481152 -0.90289373]\n", + " [-0.27460043 0.36840502 -0.88818486]\n", + " [-0.01380915 0.40359054 -0.9148355 ]\n", + " [-0.0401586 0.426568 -0.90356352]\n", + " [-0.06628191 0.44882885 -0.8911562 ]\n", + " [-0.09202776 0.4702579 -0.87771772]\n", + " [-0.11725132 0.49075534 -0.86337207]\n", + " [-0.14181283 0.51023514 -0.84826247]\n", + " [-0.27488071 0.38426372 -0.88135236]\n", + " [-0.25326713 0.40950109 -0.87645001]\n", + " [-0.23073492 0.43471192 -0.87050959]\n", + " [-0.20742333 0.45972266 -0.86349907]\n", + " [-0.18347167 0.48436811 -0.85540965]\n", + " [-0.15902071 0.50849144 -0.84625579]\n", + " [-0.1457567 0.2529186 -0.95644507]\n", + " [-0.1457567 0.2529186 -0.95644507]\n", + " [-0.15029807 0.51685334 -0.84277703]\n", + " [-0.15029807 0.51685334 -0.84277703]\n", + " [-0.14657668 0.2697046 -0.95172197]\n", + " [-0.17192803 0.29226753 -0.94075525]\n", + " [-0.19680571 0.3144177 -0.9286598 ]\n", + " [-0.22106432 0.33604013 -0.91553678]\n", + " [-0.24456034 0.35703114 -0.90150929]\n", + " [-0.26715055 0.37729853 -0.88672228]\n", + " [-0.12288817 0.2947707 -0.94763323]\n", + " [-0.1485306 0.3175022 -0.93655273]\n", + " [-0.17374314 0.33975885 -0.92432529]\n", + " [-0.19838025 0.36142462 -0.91105297]\n", + " [-0.22229955 0.38239561 -0.89685925]\n", + " [-0.24535969 0.40258006 -0.88188884]\n", + " [-0.09853366 0.31999661 -0.94228089]\n", + " [-0.12442029 0.34285619 -0.93111182]\n", + " [-0.14992127 0.365181 -0.91878531]\n", + " [-0.1748903 0.38685433 -0.90540439]\n", + " [-0.19918556 0.4077725 -0.89109298]\n", + " [-0.22266735 0.42784456 -0.87599559]\n", + " [-0.07364806 0.34521433 -0.93562975]\n", + " [-0.09973127 0.3681601 -0.92439808]\n", + " [-0.12547433 0.3905134 -0.91200629]\n", + " [-0.15072965 0.41215735 -0.89855823]\n", + " [-0.17535519 0.43298898 -0.88417821]\n", + " [-0.19921225 0.45291865 -0.86901046]\n", + " [-0.04837092 0.37026046 -0.92766774]\n", + " [-0.07460168 0.39324933 -0.91640033]\n", + " [-0.10053954 0.41559065 -0.90397799]\n", + " [-0.12603532 0.43716794 -0.89050508]\n", + " [-0.15094608 0.4578794 -0.87610601]\n", + " [-0.17513322 0.47763697 -0.86092467]\n", + " [-0.02284809 0.39497539 -0.91840754]\n", + " [-0.04917571 0.41796356 -0.90713186]\n", + " [-0.07525952 0.44025245 -0.89471436]\n", + " [-0.10094869 0.46172645 -0.88125935]\n", + " [-0.12609894 0.48228522 -0.86689101]\n", + " [-0.1505709 0.50184226 -0.85175275]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:fp_optics: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:cartToSphere: vec: [[ 0.1118801 -0.20773945 -0.97176497]\n", + " [ 0.10753519 -0.18068648 -0.9776444 ]\n", + " [ 0.10301779 -0.15295071 -0.98284964]\n", + " [ 0.09834114 -0.12463474 -0.98731717]\n", + " [ 0.09351969 -0.09584354 -0.99099348]\n", + " [ 0.08856932 -0.06668567 -0.99383525]\n", + " [ 0.0835074 -0.03727338 -0.99580983]\n", + " [ 0.07835272 -0.007722 -0.99689579]\n", + " [ 0.1118801 -0.20773945 -0.97176497]\n", + " [ 0.08332281 -0.21264646 -0.97357013]\n", + " [ 0.05477146 -0.21726467 -0.97457486]\n", + " [ 0.0263382 -0.22157585 -0.97478738]\n", + " [-0.00186492 -0.22556247 -0.97422692]\n", + " [-0.0297259 -0.22920702 -0.97292369]\n", + " [-0.05713226 -0.2324913 -0.970919 ]\n", + " [-0.08396992 -0.23539548 -0.96826547]\n", + " [ 0.07835272 -0.007722 -0.99689579]\n", + " [ 0.04884276 -0.0129418 -0.99872263]\n", + " [ 0.01938276 -0.01813127 -0.99964772]\n", + " [-0.00991052 -0.02327009 -0.99968009]\n", + " [-0.03892232 -0.02833853 -0.99884032]\n", + " [-0.06754064 -0.03331754 -0.99716007]\n", + " [-0.09565627 -0.03818877 -0.99468161]\n", + " [-0.12316176 -0.0429343 -0.99145743]\n", + " [-0.08396992 -0.23539548 -0.96826547]\n", + " [-0.08991493 -0.20952975 -0.97365938]\n", + " [-0.0957706 -0.18293935 -0.97844836]\n", + " [-0.10152323 -0.15573391 -0.98256806]\n", + " [-0.10715691 -0.12802177 -0.98596543]\n", + " [-0.11265392 -0.09991134 -0.98859841]\n", + " [-0.11799539 -0.071512 -0.99043582]\n", + " [-0.12316176 -0.0429343 -0.99145743]\n", + " [ 0.10990979 -0.19605206 -0.9744144 ]\n", + " [ 0.10446609 -0.16242403 -0.98117545]\n", + " [ 0.09877653 -0.12787216 -0.98685962]\n", + " [ 0.09286719 -0.09258861 -0.99136423]\n", + " [ 0.08676731 -0.05677322 -0.99460959]\n", + " [ 0.08050949 -0.02063401 -0.99654025]\n", + " [ 0.09942051 -0.20982208 -0.97267171]\n", + " [ 0.06440952 -0.21564456 -0.97434534]\n", + " [ 0.02951891 -0.22101521 -0.97482353]\n", + " [-0.00504496 -0.22590147 -0.97413709]\n", + " [-0.03907583 -0.23027106 -0.97234167]\n", + " [-0.07236606 -0.23408981 -0.96951798]\n", + " [ 0.06550541 -0.0101014 -0.99780108]\n", + " [ 0.02935686 -0.01648079 -0.99943312]\n", + " [-0.00660051 -0.02279417 -0.99971839]\n", + " [-0.04215453 -0.02900498 -0.99869 ]\n", + " [-0.07709902 -0.03507816 -0.99640617]\n", + " [-0.11123374 -0.04098011 -0.99294898]\n", + " [-0.08648117 -0.22420444 -0.97069737]\n", + " [-0.09370806 -0.19200081 -0.97691069]\n", + " [-0.1007876 -0.15881788 -0.98215006]\n", + " [-0.10769138 -0.12485552 -0.98631317]\n", + " [-0.11438689 -0.09031345 -0.98932256]\n", + " [-0.12083905 -0.05539349 -0.99112536]\n", + " [ 0.11176801 -0.20766547 -0.97179368]\n", + " [ 0.11176801 -0.20766547 -0.97179368]\n", + " [-0.12305152 -0.04301621 -0.99146756]\n", + " [-0.12305152 -0.04301621 -0.99146756]\n", + " [ 0.09751416 -0.19821893 -0.97529495]\n", + " [ 0.06236894 -0.20408575 -0.97696424]\n", + " [ 0.02734781 -0.20952341 -0.97742112]\n", + " [-0.0073425 -0.21449968 -0.97669646]\n", + " [-0.04149595 -0.21898297 -0.97484591]\n", + " [-0.07490577 -0.22294014 -0.97195001]\n", + " [ 0.0919495 -0.16461729 -0.98206234]\n", + " [ 0.05646812 -0.17060258 -0.98372054]\n", + " [ 0.02112221 -0.17622326 -0.98412358]\n", + " [-0.01388016 -0.18144749 -0.98330267]\n", + " [-0.0483332 -0.18624491 -0.98131378]\n", + " [-0.08203232 -0.19058461 -0.97823729]\n", + " [ 0.08616218 -0.13008783 -0.98775161]\n", + " [ 0.05041099 -0.13618146 -0.9894005 ]\n", + " [ 0.01480764 -0.14197629 -0.9897593 ]\n", + " [-0.02043834 -0.14744012 -0.98885979]\n", + " [-0.05512104 -0.15254273 -0.98675852]\n", + " [-0.08903749 -0.1572542 -0.98353619]\n", + " [ 0.08017896 -0.09482263 -0.99226005]\n", + " [ 0.04422616 -0.10101443 -0.99390147]\n", + " [ 0.00843409 -0.10697506 -0.99422593]\n", + " [-0.02698637 -0.11267133 -0.99326578]\n", + " [-0.06182906 -0.11807221 -0.99107826]\n", + " [-0.09589221 -0.1231476 -0.98774458]\n", + " [ 0.07402979 -0.05902139 -0.99550794]\n", + " [ 0.0379454 -0.06530071 -0.9971439 ]\n", + " [ 0.0020348 -0.07141823 -0.99744438]\n", + " [-0.03349019 -0.07733941 -0.99644218]\n", + " [-0.06842323 -0.08303174 -0.99419515]\n", + " [-0.1025634 -0.08846402 -0.99078498]\n", + " [ 0.06774777 -0.02289198 -0.99743982]\n", + " [ 0.03160323 -0.02924739 -0.99907248]\n", + " [-0.0043546 -0.03551168 -0.99935977]\n", + " [-0.03991354 -0.04164879 -0.99833476]\n", + " [-0.0748673 -0.04762437 -0.99605562]\n", + " [-0.10901553 -0.05340549 -0.99260439]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:cartToSphere: vec: [[ 0.16376271 0.5067895 -0.84637236]\n", + " [ 0.14223208 0.49326698 -0.85817115]\n", + " [ 0.12016135 0.47907944 -0.86950799]\n", + " [ 0.09763239 0.46426194 -0.88030039]\n", + " [ 0.07472826 0.44885447 -0.89047479]\n", + " [ 0.05153454 0.43290296 -0.89996623]\n", + " [ 0.02814004 0.41645987 -0.9087185 ]\n", + " [ 0.00463645 0.39958427 -0.91668474]\n", + " [ 0.16376271 0.5067895 -0.84637236]\n", + " [ 0.18168768 0.48566986 -0.85505227]\n", + " [ 0.19932771 0.46416439 -0.86302948]\n", + " [ 0.21661394 0.44236142 -0.87028431]\n", + " [ 0.23347844 0.42035317 -0.87680729]\n", + " [ 0.24985384 0.39823552 -0.88259931]\n", + " [ 0.26567279 0.37610804 -0.88767151]\n", + " [ 0.28086763 0.35407423 -0.8920453 ]\n", + " [ 0.00463645 0.39958427 -0.91668474]\n", + " [ 0.02328894 0.37781733 -0.92558722]\n", + " [ 0.0418584 0.35578129 -0.93363138]\n", + " [ 0.06027192 0.33356788 -0.94079741]\n", + " [ 0.0784589 0.31127072 -0.94707694]\n", + " [ 0.09635126 0.28898477 -0.9524727 ]\n", + " [ 0.11388304 0.26680662 -0.95699785]\n", + " [ 0.13098928 0.24483568 -0.96067544]\n", + " [ 0.28086763 0.35407423 -0.8920453 ]\n", + " [ 0.26111863 0.33957984 -0.90360533]\n", + " [ 0.24067302 0.32464293 -0.91470403]\n", + " [ 0.21961631 0.30930189 -0.92525727]\n", + " [ 0.19803378 0.29359997 -0.93519072]\n", + " [ 0.17601083 0.27758539 -0.9444398 ]\n", + " [ 0.15363361 0.26131135 -0.95294968]\n", + " [ 0.13098928 0.24483568 -0.96067544]\n", + " [ 0.15450888 0.50090573 -0.85159876]\n", + " [ 0.12774798 0.48388038 -0.86575991]\n", + " [ 0.10025703 0.46589064 -0.87914415]\n", + " [ 0.07218833 0.44700802 -0.8916124 ]\n", + " [ 0.04369954 0.42731714 -0.90304508]\n", + " [ 0.01495537 0.40691737 -0.91334254]\n", + " [ 0.17153629 0.49758882 -0.8502827 ]\n", + " [ 0.19332303 0.47143347 -0.86045145]\n", + " [ 0.21461336 0.44478597 -0.86954387]\n", + " [ 0.23528185 0.41781449 -0.87753832]\n", + " [ 0.25520441 0.39069558 -0.88443636]\n", + " [ 0.27425692 0.36361414 -0.89026283]\n", + " [ 0.01285491 0.39019102 -0.92064419]\n", + " [ 0.03566867 0.363321 -0.93098098]\n", + " [ 0.0582849 0.33613756 -0.94000766]\n", + " [ 0.08057261 0.30881232 -0.94770407]\n", + " [ 0.10240645 0.28152013 -0.95407512]\n", + " [ 0.12366547 0.25443991 -0.9591492 ]\n", + " [ 0.27229677 0.34788653 -0.89712286]\n", + " [ 0.24761165 0.32982034 -0.91099232]\n", + " [ 0.22196528 0.31112691 -0.92408412]\n", + " [ 0.19551475 0.29188382 -0.93625734]\n", + " [ 0.16841737 0.27217987 -0.94739311]\n", + " [ 0.14083213 0.25211491 -0.95739458]\n", + " [ 0.1637518 0.50667296 -0.84644424]\n", + " [ 0.1637518 0.50667296 -0.84644424]\n", + " [ 0.13100937 0.24496696 -0.96063923]\n", + " [ 0.13100937 0.24496696 -0.96063923]\n", + " [ 0.16232526 0.49178688 -0.85545086]\n", + " [ 0.18421437 0.46553784 -0.86564403]\n", + " [ 0.20562471 0.43880404 -0.87473967]\n", + " [ 0.22643099 0.4117541 -0.88271602]\n", + " [ 0.24650957 0.38456466 -0.88957465]\n", + " [ 0.2657369 0.35742048 -0.89534044]\n", + " [ 0.13564501 0.47467459 -0.86964617]\n", + " [ 0.15779683 0.44819421 -0.87989892]\n", + " [ 0.17951974 0.42125264 -0.8889988 ]\n", + " [ 0.20068848 0.39401986 -0.8969239 ]\n", + " [ 0.22118059 0.36667281 -0.90367594]\n", + " [ 0.24087428 0.33939559 -0.90928006]\n", + " [ 0.10822024 0.45661506 -0.88305779]\n", + " [ 0.13059441 0.42995462 -0.89335554]\n", + " [ 0.15259011 0.40286064 -0.90245197]\n", + " [ 0.17408147 0.37550434 -0.91032529]\n", + " [ 0.19494658 0.3480628 -0.91697771]\n", + " [ 0.21506519 0.32071917 -0.92243492]\n", + " [ 0.08020288 0.4376803 -0.89554646]\n", + " [ 0.1027585 0.41089268 -0.90587411]\n", + " [ 0.12498749 0.3837032 -0.91495901]\n", + " [ 0.14676275 0.35628394 -0.92277974]\n", + " [ 0.16796212 0.3288118 -0.9293393 ]\n", + " [ 0.18846614 0.30146874 -0.93466417]\n", + " [ 0.05175013 0.41795549 -0.90699236]\n", + " [ 0.07444507 0.39109519 -0.91733444]\n", + " [ 0.09686707 0.36386845 -0.92639976]\n", + " [ 0.11888742 0.33644763 -0.93416742]\n", + " [ 0.14038291 0.30900902 -0.94064131]\n", + " [ 0.16123398 0.28173327 -0.94584881]\n", + " [ 0.02302622 0.39754049 -0.91729568]\n", + " [ 0.04581687 0.37066313 -0.9276366 ]\n", + " [ 0.06839007 0.34345801 -0.93667465]\n", + " [ 0.09061539 0.31609709 -0.94438948]\n", + " [ 0.11236807 0.28875563 -0.95078578]\n", + " [ 0.13352764 0.26161298 -0.95589174]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:fp_optics: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:fp_optics: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:cartToSphere: vec: [[ 0.77521087 0.15454404 0.61250653]\n", + " [ 0.78743145 0.16991519 0.5925205 ]\n", + " [ 0.79925816 0.1854558 0.57165771]\n", + " [ 0.81060851 0.20109521 0.54997687]\n", + " [ 0.82140912 0.21676588 0.5275411 ]\n", + " [ 0.83159477 0.23240194 0.50441994]\n", + " [ 0.84110801 0.24793817 0.48069115]\n", + " [ 0.84989946 0.26330987 0.45644147]\n", + " [ 0.77521087 0.15454404 0.61250653]\n", + " [ 0.78787161 0.13070703 0.60180894]\n", + " [ 0.79987468 0.10689203 0.59057141]\n", + " [ 0.81118394 0.08319553 0.57884291]\n", + " [ 0.82177287 0.05971604 0.56667746]\n", + " [ 0.83162458 0.03655381 0.5541339 ]\n", + " [ 0.84073164 0.01380985 0.5412759 ]\n", + " [ 0.84909576 -0.00841654 0.52817189]\n", + " [ 0.84989946 0.26330987 0.45644147]\n", + " [ 0.86292142 0.23856378 0.4454817 ]\n", + " [ 0.8751265 0.21368661 0.43415624]\n", + " [ 0.88647769 0.18877978 0.42251568]\n", + " [ 0.89694956 0.1639438 0.41061406]\n", + " [ 0.9065277 0.13927833 0.39850857]\n", + " [ 0.91520754 0.11488383 0.38626011]\n", + " [ 0.92299344 0.09086373 0.37393435]\n", + " [ 0.84909576 -0.00841654 0.52817189]\n", + " [ 0.8613296 0.00491104 0.50802284]\n", + " [ 0.87312805 0.01863233 0.48713473]\n", + " [ 0.88440862 0.03268236 0.46556767]\n", + " [ 0.89509672 0.04699479 0.44338849]\n", + " [ 0.90512652 0.06150433 0.42066995]\n", + " [ 0.91444125 0.07614769 0.39749054]\n", + " [ 0.92299344 0.09086373 0.37393435]\n", + " [ 0.78062637 0.16113864 0.60386821]\n", + " [ 0.7953504 0.1800998 0.57877612]\n", + " [ 0.80939975 0.19924506 0.55242507]\n", + " [ 0.82263555 0.21844882 0.52492939]\n", + " [ 0.83493771 0.2375897 0.49641731]\n", + " [ 0.84620376 0.25654782 0.46703577]\n", + " [ 0.78085168 0.14420625 0.60784472]\n", + " [ 0.79593182 0.11499336 0.59436442]\n", + " [ 0.80998698 0.08590909 0.5801213 ]\n", + " [ 0.82296434 0.05713394 0.56521271]\n", + " [ 0.83483279 0.02885237 0.54974699]\n", + " [ 0.84558247 0.00124984 0.53384335]\n", + " [ 0.85564589 0.2524909 0.45179471]\n", + " [ 0.87106157 0.22206129 0.43811018]\n", + " [ 0.88521226 0.19153571 0.42392608]\n", + " [ 0.89804637 0.16109965 0.40934047]\n", + " [ 0.90953718 0.13093677 0.39445872]\n", + " [ 0.91968002 0.10123317 0.37939491]\n", + " [ 0.85445054 -0.00258249 0.51952633]\n", + " [ 0.86916274 0.01402601 0.49432722]\n", + " [ 0.88313819 0.03116151 0.46807681]\n", + " [ 0.89623621 0.04870224 0.44089539]\n", + " [ 0.90833565 0.06652813 0.41291689]\n", + " [ 0.91933583 0.08452353 0.38428817]\n", + " [ 0.77529759 0.15451478 0.61240414]\n", + " [ 0.77529759 0.15451478 0.61240414]\n", + " [ 0.92294042 0.09089473 0.37405765]\n", + " [ 0.92294042 0.09089473 0.37405765]\n", + " [ 0.78620093 0.15078833 0.59929206]\n", + " [ 0.80132496 0.12144628 0.58577223]\n", + " [ 0.81540297 0.0922171 0.57150154]\n", + " [ 0.82838203 0.06328149 0.55657764]\n", + " [ 0.84023117 0.03482438 0.54110889]\n", + " [ 0.85094097 0.00703309 0.52521425]\n", + " [ 0.80097628 0.16964418 0.57415838]\n", + " [ 0.81620874 0.13997428 0.56054482]\n", + " [ 0.8303399 0.11037454 0.54621709]\n", + " [ 0.84331653 0.08102576 0.531274 ]\n", + " [ 0.85510793 0.05211276 0.51582427]\n", + " [ 0.86570553 0.02382513 0.49998631]\n", + " [ 0.81506698 0.18870344 0.54777444]\n", + " [ 0.83038396 0.15876188 0.53409469]\n", + " [ 0.84455072 0.12885044 0.5197419 ]\n", + " [ 0.85751388 0.09915015 0.504816 ]\n", + " [ 0.86924325 0.06984471 0.48942608]\n", + " [ 0.87973101 0.04112321 0.47369002]\n", + " [ 0.82833394 0.20784085 0.52025481]\n", + " [ 0.84371074 0.17768426 0.50653775]\n", + " [ 0.85789475 0.14751952 0.49219365]\n", + " [ 0.8708328 0.11752853 0.47732303]\n", + " [ 0.88249563 0.08789408 0.46203473]\n", + " [ 0.89287635 0.05880369 0.4464459 ]\n", + " [ 0.84065668 0.22693574 0.4917281 ]\n", + " [ 0.85606771 0.1966222 0.47800395]\n", + " [ 0.87025016 0.16626305 0.46370384]\n", + " [ 0.88315142 0.13604162 0.44892789]\n", + " [ 0.89474336 0.10614053 0.43378393]\n", + " [ 0.90502021 0.07674604 0.41838793]\n", + " [ 0.85193236 0.24586898 0.46234154]\n", + " [ 0.86735147 0.21545874 0.44864124]\n", + " [ 0.88151367 0.18496563 0.43442072]\n", + " [ 0.89436709 0.15457462 0.41977875]\n", + " [ 0.90588472 0.12446897 0.40482138]\n", + " [ 0.91606167 0.09483464 0.38966319]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:fp_optics: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:cartToSphere: vec: [[-0.85584144 -0.42351302 -0.29693797]\n", + " [-0.85180217 -0.41346466 -0.32168313]\n", + " [-0.84711296 -0.40277725 -0.34665562]\n", + " [-0.84175251 -0.39148464 -0.37174249]\n", + " [-0.83570822 -0.37962655 -0.39683176]\n", + " [-0.82897698 -0.36724642 -0.42181422]\n", + " [-0.82156557 -0.35439044 -0.44658418]\n", + " [-0.81349076 -0.34110735 -0.47103987]\n", + " [-0.85584144 -0.42351302 -0.29693797]\n", + " [-0.86926447 -0.40214181 -0.2875087 ]\n", + " [-0.88230893 -0.37994973 -0.27779336]\n", + " [-0.89488448 -0.35701414 -0.26781089]\n", + " [-0.90690819 -0.33341923 -0.25758329]\n", + " [-0.91830598 -0.30925336 -0.24713657]\n", + " [-0.9290132 -0.28460795 -0.23650112]\n", + " [-0.93897491 -0.25957712 -0.22571183]\n", + " [-0.81349076 -0.34110735 -0.47103987]\n", + " [-0.82726533 -0.31820242 -0.46301112]\n", + " [-0.84065856 -0.29456856 -0.45444751]\n", + " [-0.85357829 -0.27028854 -0.445363 ]\n", + " [-0.86594217 -0.24544607 -0.43577562]\n", + " [-0.87767659 -0.22012787 -0.42570826]\n", + " [-0.88871609 -0.19442576 -0.41518952]\n", + " [-0.89900352 -0.1684375 -0.40425422]\n", + " [-0.93897491 -0.25957712 -0.22571183]\n", + " [-0.93579478 -0.24767336 -0.25089049]\n", + " [-0.93179638 -0.23532776 -0.27636273]\n", + " [-0.92695484 -0.22258018 -0.30201454]\n", + " [-0.92125478 -0.20947181 -0.32773646]\n", + " [-0.91469078 -0.19604635 -0.3534213 ]\n", + " [-0.90726813 -0.18235112 -0.37896255]\n", + " [-0.89900352 -0.1684375 -0.40425422]\n", + " [-0.85420521 -0.41914025 -0.30766037]\n", + " [-0.84882128 -0.40639019 -0.33815595]\n", + " [-0.84243889 -0.39271318 -0.36888084]\n", + " [-0.83503115 -0.37818009 -0.39962833]\n", + " [-0.82659239 -0.36287077 -0.43019743]\n", + " [-0.81713923 -0.34687133 -0.46039521]\n", + " [-0.86172197 -0.41426687 -0.29294745]\n", + " [-0.87793103 -0.38751179 -0.28119695]\n", + " [-0.89348094 -0.35959966 -0.2690351 ]\n", + " [-0.90821585 -0.33068287 -0.25650108]\n", + " [-0.92199943 -0.30092396 -0.2436428 ]\n", + " [-0.93471669 -0.27049236 -0.23051809]\n", + " [-0.81956591 -0.33126191 -0.46752248]\n", + " [-0.83620404 -0.30268945 -0.45732035]\n", + " [-0.85217665 -0.2731042 -0.44632842]\n", + " [-0.86732807 -0.24265985 -0.43457821]\n", + " [-0.88152276 -0.21151629 -0.42211194]\n", + " [-0.89464359 -0.17984503 -0.40898486]\n", + " [-0.93765412 -0.25453037 -0.23668343]\n", + " [-0.93320956 -0.23963986 -0.26775484]\n", + " [-0.92751026 -0.22412501 -0.29915331]\n", + " [-0.92052394 -0.20806107 -0.33067547]\n", + " [-0.91224071 -0.19152863 -0.36212383]\n", + " [-0.90267506 -0.1746165 -0.39330245]\n", + " [-0.85587514 -0.42340817 -0.29699034]\n", + " [-0.85587514 -0.42340817 -0.29699034]\n", + " [-0.89899935 -0.16857463 -0.40420634]\n", + " [-0.89899935 -0.16857463 -0.40420634]\n", + " [-0.86008244 -0.40994287 -0.30365283]\n", + " [-0.87637429 -0.38303018 -0.29198629]\n", + " [-0.89200062 -0.35496541 -0.27988291]\n", + " [-0.90680472 -0.3259029 -0.26738081]\n", + " [-0.92064994 -0.29600578 -0.25452754]\n", + " [-0.93342105 -0.26544359 -0.2413811 ]\n", + " [-0.85477055 -0.39704206 -0.33425277]\n", + " [-0.87125837 -0.36971146 -0.32283478]\n", + " [-0.88706606 -0.34124829 -0.3109074 ]\n", + " [-0.9020357 -0.3118097 -0.29850681]\n", + " [-0.91603026 -0.28155874 -0.2856803 ]\n", + " [-0.92893391 -0.25066477 -0.27248663]\n", + " [-0.84843816 -0.38322918 -0.3650864 ]\n", + " [-0.86506264 -0.3555285 -0.35392954]\n", + " [-0.88099862 -0.32671977 -0.34219237]\n", + " [-0.89608822 -0.29696002 -0.32991005]\n", + " [-0.91019445 -0.26641091 -0.31712976]\n", + " [-0.92320075 -0.2352415 -0.30391085]\n", + " [-0.84105754 -0.36857703 -0.39594593]\n", + " [-0.85775791 -0.34055695 -0.38506146]\n", + " [-0.87376842 -0.31145574 -0.37352921]\n", + " [-0.88893178 -0.281429 -0.36138347]\n", + " [-0.90311122 -0.25063694 -0.3486707 ]\n", + " [-0.91618953 -0.2192487 -0.33545007]\n", + " [-0.83262271 -0.35316604 -0.42663002]\n", + " [-0.84933782 -0.32487727 -0.41602888]\n", + " [-0.86536874 -0.29553559 -0.40471677]\n", + " [-0.88055897 -0.26529518 -0.39272685]\n", + " [-0.89477213 -0.23431545 -0.38010406]\n", + " [-0.9078907 -0.2027663 -0.36690641]\n", + " [-0.82315032 -0.33708236 -0.45694533]\n", + " [-0.83981921 -0.30857506 -0.44663757]\n", + " [-0.8558165 -0.27904425 -0.4355599 ]\n", + " [-0.87098636 -0.24864354 -0.42374421]\n", + " [-0.88519299 -0.21753254 -0.41123346]\n", + " [-0.89831907 -0.18588231 -0.39808368]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:fp_optics: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:cartToSphere: vec: [[-0.81808128 0.47012855 -0.33124338]\n", + " [-0.80731826 0.47065227 -0.35598267]\n", + " [-0.79565616 0.47097279 -0.38094082]\n", + " [-0.78311828 0.47105408 -0.40599731]\n", + " [-0.76973393 0.47086814 -0.43103697]\n", + " [-0.75553892 0.47039475 -0.45594925]\n", + " [-0.74057608 0.46962103 -0.48062788]\n", + " [-0.72489569 0.468541 -0.50497087]\n", + " [-0.81808128 0.47012855 -0.33124338]\n", + " [-0.80746475 0.49352424 -0.32316328]\n", + " [-0.79594751 0.51707223 -0.31480767]\n", + " [-0.78355175 0.54064592 -0.30618401]\n", + " [-0.77030559 0.56412655 -0.29730546]\n", + " [-0.75624355 0.58740249 -0.28819092]\n", + " [-0.74140716 0.61036865 -0.27886472]\n", + " [-0.72584542 0.63292625 -0.26935625]\n", + " [-0.72489569 0.468541 -0.50497087]\n", + " [-0.713165 0.49299265 -0.4983512 ]\n", + " [-0.70061954 0.51754833 -0.49119851]\n", + " [-0.68727771 0.54208753 -0.48351882]\n", + " [-0.67316489 0.56649528 -0.47532319]\n", + " [-0.65831452 0.59066064 -0.46662834]\n", + " [-0.64276892 0.61447627 -0.45745713]\n", + " [-0.62657948 0.63783906 -0.44783869]\n", + " [-0.72584542 0.63292625 -0.26935625]\n", + " [-0.71397724 0.63516342 -0.29462508]\n", + " [-0.70129289 0.6369364 -0.32015669]\n", + " [-0.68781184 0.63820988 -0.34583668]\n", + " [-0.67356069 0.63895523 -0.37155378]\n", + " [-0.65857423 0.63915055 -0.39719838]\n", + " [-0.64289621 0.638781 -0.42266215]\n", + " [-0.62657948 0.63783906 -0.44783869]\n", + " [-0.81346535 0.47045928 -0.34196812]\n", + " [-0.79966616 0.47097065 -0.37245225]\n", + " [-0.78453904 0.47113989 -0.40314477]\n", + " [-0.76813544 0.47091212 -0.43383145]\n", + " [-0.75052131 0.47025009 -0.46430875]\n", + " [-0.73177861 0.46913296 -0.49438278]\n", + " [-0.81352884 0.48030454 -0.32783895]\n", + " [-0.79990824 0.50909843 -0.31775084]\n", + " [-0.78495616 0.53799433 -0.30725548]\n", + " [-0.76872188 0.56677039 -0.29637473]\n", + " [-0.75126904 0.59522105 -0.28514335]\n", + " [-0.73267718 0.62315542 -0.27360824]\n", + " [-0.71993718 0.47918543 -0.50206751]\n", + " [-0.70501066 0.50923894 -0.49359463]\n", + " [-0.68887781 0.53932825 -0.48432675]\n", + " [-0.67158237 0.5692395 -0.4742821 ]\n", + " [-0.65318602 0.59876841 -0.46349155]\n", + " [-0.63377043 0.62771908 -0.45199977]\n", + " [-0.7208268 0.63387955 -0.28036662]\n", + " [-0.7057307 0.6363133 -0.31152778]\n", + " [-0.68942721 0.63801415 -0.34296947]\n", + " [-0.67196227 0.63892661 -0.37448565]\n", + " [-0.65340002 0.63901043 -0.40587447]\n", + " [-0.63382479 0.6382413 -0.43693727]\n", + " [-0.81801127 0.47021023 -0.33130031]\n", + " [-0.81801127 0.47021023 -0.33130031]\n", + " [-0.62669269 0.63776425 -0.44778682]\n", + " [-0.62669269 0.63776425 -0.44778682]\n", + " [-0.80894965 0.48061037 -0.33854709]\n", + " [-0.79523759 0.50955806 -0.32855405]\n", + " [-0.78019772 0.53859791 -0.31812546]\n", + " [-0.76387862 0.56750887 -0.30728348]\n", + " [-0.74634334 0.59608572 -0.29606323]\n", + " [-0.72767117 0.62413744 -0.28451207]\n", + " [-0.79505881 0.48126199 -0.36914548]\n", + " [-0.781097 0.51058987 -0.35942378]\n", + " [-0.76582056 0.53998669 -0.34918942]\n", + " [-0.74927597 0.56923359 -0.33846513]\n", + " [-0.73152477 0.59812614 -0.32728677]\n", + " [-0.7126458 0.62647254 -0.31570259]\n", + " [-0.7798434 0.48154131 -0.39995279]\n", + " [-0.76564418 0.51116835 -0.39050725]\n", + " [-0.75014748 0.54084776 -0.38047662]\n", + " [-0.73339799 0.57036262 -0.36988359]\n", + " [-0.7154562 0.59950883 -0.35876397]\n", + " [-0.69640095 0.6280934 -0.34716623]\n", + " [-0.7633542 0.48139401 -0.43075535]\n", + " [-0.74892782 0.51124052 -0.42159252]\n", + " [-0.73322539 0.5411288 -0.41177682]\n", + " [-0.71629038 0.57084342 -0.40133013]\n", + " [-0.6981829 0.60018027 -0.39028742]\n", + " [-0.67898227 0.6289451 -0.37869664]\n", + " [-0.74565661 0.48078331 -0.46134979]\n", + " [-0.7310119 0.5107706 -0.45247651]\n", + " [-0.71511727 0.54079418 -0.44288706]\n", + " [-0.69801576 0.57063962 -0.43260192]\n", + " [-0.67976778 0.60010266 -0.42165455]\n", + " [-0.6604535 0.62898802 -0.41009176]\n", + " [-0.72683234 0.47968874 -0.49154192]\n", + " [-0.71197778 0.50973871 -0.48296386]\n", + " [-0.69590454 0.5398239 -0.47361063]\n", + " [-0.67865609 0.56973037 -0.46350105]\n", + " [-0.66029367 0.59925383 -0.45266667]\n", + " [-0.64089857 0.62819842 -0.44115277]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:fp_optics: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:cartToSphere: vec: [[ 0.19422028 0.57755246 -0.79291339]\n", + " [ 0.19479013 0.59906181 -0.77664777]\n", + " [ 0.19506966 0.62059541 -0.75947953]\n", + " [ 0.19506624 0.64203096 -0.74144818]\n", + " [ 0.19478537 0.66325544 -0.72260008]\n", + " [ 0.19423132 0.68416407 -0.70298914]\n", + " [ 0.19340789 0.7046596 -0.68267725]\n", + " [ 0.19231902 0.72465227 -0.66173445]\n", + " [ 0.19422028 0.57755246 -0.79291339]\n", + " [ 0.16781835 0.57872832 -0.79806675]\n", + " [ 0.14070909 0.57962512 -0.80264293]\n", + " [ 0.11300584 0.58019933 -0.80659681]\n", + " [ 0.0848202 0.58041692 -0.80988995]\n", + " [ 0.05626337 0.58025284 -0.81249066]\n", + " [ 0.02744708 0.57969035 -0.81437446]\n", + " [-0.00151613 0.57872064 -0.81552445]\n", + " [ 0.19231902 0.72465227 -0.66173445]\n", + " [ 0.16488248 0.72747175 -0.666032 ]\n", + " [ 0.13675093 0.72976709 -0.66987998]\n", + " [ 0.10802975 0.73149614 -0.67323322]\n", + " [ 0.07882616 0.7326243 -0.67605331]\n", + " [ 0.04925058 0.73312462 -0.67830868]\n", + " [ 0.01941703 0.73297819 -0.67997496]\n", + " [-0.01055749 0.73217446 -0.68103532]\n", + " [-0.00151613 0.57872064 -0.81552445]\n", + " [-0.0027504 0.60130003 -0.79901859]\n", + " [-0.00401302 0.62384496 -0.78153782]\n", + " [-0.00529833 0.64623902 -0.76311667]\n", + " [-0.00660084 0.66837164 -0.74379821]\n", + " [-0.00791514 0.6901374 -0.72363507]\n", + " [-0.00923582 0.71143628 -0.70268991]\n", + " [-0.01055749 0.73217446 -0.68103532]\n", + " [ 0.19441564 0.58692429 -0.78595321]\n", + " [ 0.19491669 0.61331971 -0.76540605]\n", + " [ 0.19498941 0.63962887 -0.74354155]\n", + " [ 0.19464466 0.66563994 -0.72044218]\n", + " [ 0.1938904 0.6911599 -0.69620723]\n", + " [ 0.19273366 0.71601285 -0.67095405]\n", + " [ 0.18280531 0.57817007 -0.79517393]\n", + " [ 0.14995575 0.57943074 -0.80110754]\n", + " [ 0.11615664 0.58022768 -0.80612869]\n", + " [ 0.08161406 0.58049438 -0.81016382]\n", + " [ 0.04653284 0.58018461 -0.81315467]\n", + " [ 0.01111901 0.57927087 -0.81505928]\n", + " [ 0.18045298 0.72587531 -0.6637332 ]\n", + " [ 0.14634614 0.72898341 -0.66870472]\n", + " [ 0.11129998 0.73126165 -0.67295521]\n", + " [ 0.07551099 0.73264319 -0.67641115]\n", + " [ 0.03918252 0.73307849 -0.67901447]\n", + " [ 0.00252576 0.73253619 -0.6807234 ]\n", + " [-0.00195086 0.58856584 -0.80844694]\n", + " [-0.00348239 0.61623101 -0.78755775]\n", + " [-0.00505104 0.64372804 -0.76523768]\n", + " [-0.00664665 0.67085101 -0.74156237]\n", + " [-0.00825924 0.6974059 -0.71662877]\n", + " [-0.00987888 0.72321108 -0.6905564 ]\n", + " [ 0.19413378 0.57763027 -0.79287789]\n", + " [ 0.19413378 0.57763027 -0.79287789]\n", + " [-0.01045037 0.73210847 -0.68110791]\n", + " [-0.01045037 0.73210847 -0.68110791]\n", + " [ 0.18303556 0.58752079 -0.78823683]\n", + " [ 0.15004191 0.58892158 -0.79414029]\n", + " [ 0.1161006 0.58982904 -0.79913851]\n", + " [ 0.08141649 0.59017744 -0.80315749]\n", + " [ 0.04619388 0.58992104 -0.80613851]\n", + " [ 0.01063892 0.58903265 -0.8080392 ]\n", + " [ 0.18340833 0.61406816 -0.76764684]\n", + " [ 0.150056 0.61584526 -0.77344541]\n", + " [ 0.11575951 0.61705079 -0.77836242]\n", + " [ 0.08072063 0.61762061 -0.7823228 ]\n", + " [ 0.04514261 0.61750975 -0.78526674]\n", + " [ 0.00923239 0.61669122 -0.787151 ]\n", + " [ 0.18337851 0.64051745 -0.74572764]\n", + " [ 0.14973869 0.64264316 -0.75139077]\n", + " [ 0.11515616 0.64412686 -0.7562008 ]\n", + " [ 0.07983029 0.64490496 -0.76008205]\n", + " [ 0.04396392 0.64493227 -0.76297414]\n", + " [ 0.00776521 0.64418132 -0.7648334 ]\n", + " [ 0.18295598 0.66665777 -0.72256109]\n", + " [ 0.14909772 0.66910658 -0.72805649]\n", + " [ 0.1142972 0.67085 -0.73273217]\n", + " [ 0.07875221 0.67182403 -0.73651244]\n", + " [ 0.04266563 0.67198252 -0.73933696]\n", + " [ 0.00624686 0.67129701 -0.74116213]\n", + " [ 0.18214797 0.69229645 -0.69824619]\n", + " [ 0.14813886 0.69504323 -0.70354089]\n", + " [ 0.11318808 0.69702767 -0.7080543 ]\n", + " [ 0.07749249 0.6981847 -0.71171134]\n", + " [ 0.04125518 0.69846681 -0.71445233]\n", + " [ 0.00468664 0.6978443 -0.71623416]\n", + " [ 0.18096104 0.71725737 -0.67290041]\n", + " [ 0.14686794 0.72027604 -0.67796182]\n", + " [ 0.11183467 0.72248143 -0.68228556]\n", + " [ 0.07605774 0.72380716 -0.68579765]\n", + " [ 0.03974046 0.7242042 -0.68843951]\n", + " [ 0.0030939 0.72364162 -0.69016899]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:fp_optics: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:cartToSphere: vec: [[ 0.34008949 -0.69662791 0.63170301]\n", + " [ 0.31766919 -0.69369626 0.64643002]\n", + " [ 0.29461137 -0.69006981 0.66106566]\n", + " [ 0.27099543 -0.68574644 0.67550965]\n", + " [ 0.24690362 -0.68072861 0.68967178]\n", + " [ 0.22242155 -0.6750236 0.70347124]\n", + " [ 0.19763845 -0.66864414 0.71683614]\n", + " [ 0.17264712 -0.66160885 0.72970316]\n", + " [ 0.34008949 -0.69662791 0.63170301]\n", + " [ 0.3542434 -0.67760915 0.64448232]\n", + " [ 0.368315 -0.65764646 0.65714929]\n", + " [ 0.38224015 -0.63680039 0.66961013]\n", + " [ 0.39595709 -0.61513611 0.68178116]\n", + " [ 0.40940627 -0.5927241 0.69358824]\n", + " [ 0.42253042 -0.56964081 0.70496623]\n", + " [ 0.43527501 -0.54596898 0.71585861]\n", + " [ 0.17264712 -0.66160885 0.72970316]\n", + " [ 0.18583007 -0.64167182 0.74412665]\n", + " [ 0.19913055 -0.62081055 0.75824883]\n", + " [ 0.21248719 -0.5990799 0.77197958]\n", + " [ 0.22584069 -0.5765408 0.78523671]\n", + " [ 0.23913303 -0.55326195 0.79794524]\n", + " [ 0.25230717 -0.52932073 0.81003744]\n", + " [ 0.26530741 -0.50480332 0.82145334]\n", + " [ 0.43527501 -0.54596898 0.71585861]\n", + " [ 0.4129278 -0.54166452 0.73218179]\n", + " [ 0.38980488 -0.53683199 0.74824032]\n", + " [ 0.36597996 -0.53146729 0.76393795]\n", + " [ 0.34153093 -0.5255717 0.77918613]\n", + " [ 0.31654141 -0.51915237 0.79390324]\n", + " [ 0.29110147 -0.51222286 0.80801465]\n", + " [ 0.26530741 -0.50480332 0.82145334]\n", + " [ 0.33044588 -0.69537116 0.63817276]\n", + " [ 0.30252853 -0.69131061 0.65617538]\n", + " [ 0.27373209 -0.68620392 0.67393985]\n", + " [ 0.24420677 -0.6800537 0.69129589]\n", + " [ 0.21411018 -0.67287346 0.70809472]\n", + " [ 0.18360811 -0.66468902 0.72420754]\n", + " [ 0.34619096 -0.68844627 0.63733315]\n", + " [ 0.36349067 -0.66449382 0.65293376]\n", + " [ 0.38060287 -0.63918319 0.66827113]\n", + " [ 0.3974129 -0.61263242 0.68318702]\n", + " [ 0.4138111 -0.58497134 0.69754491]\n", + " [ 0.42969319 -0.55634329 0.71122845]\n", + " [ 0.17846248 -0.65305844 0.73597949]\n", + " [ 0.1947073 -0.62799565 0.75346568]\n", + " [ 0.21106723 -0.60159851 0.77040889]\n", + " [ 0.22743231 -0.57397657 0.78665459]\n", + " [ 0.24369566 -0.54525639 0.80206477]\n", + " [ 0.2597528 -0.51558414 0.81651789]\n", + " [ 0.4255885 -0.54423886 0.72296507]\n", + " [ 0.39766854 -0.53860977 0.74280499]\n", + " [ 0.36865639 -0.53218272 0.76215092]\n", + " [ 0.33869363 -0.52495777 0.78083671]\n", + " [ 0.30793426 -0.51694819 0.79871213]\n", + " [ 0.27654675 -0.50818165 0.81564288]\n", + " [ 0.34006246 -0.6965557 0.63179718]\n", + " [ 0.34006246 -0.6965557 0.63179718]\n", + " [ 0.265352 -0.50491422 0.82137077]\n", + " [ 0.265352 -0.50491422 0.82137077]\n", + " [ 0.33656132 -0.68722577 0.64377575]\n", + " [ 0.35383557 -0.66317063 0.65954917]\n", + " [ 0.37093948 -0.63775559 0.67503459]\n", + " [ 0.38775832 -0.6110979 0.69007452]\n", + " [ 0.4041821 -0.58332686 0.7045329 ]\n", + " [ 0.42010603 -0.55458574 0.71829353]\n", + " [ 0.30859698 -0.68307189 0.66195219]\n", + " [ 0.32577176 -0.65875169 0.67817326]\n", + " [ 0.34282622 -0.6330687 0.69404193]\n", + " [ 0.35964553 -0.60613778 0.70940263]\n", + " [ 0.37611896 -0.57808681 0.72412027]\n", + " [ 0.39214046 -0.54905914 0.73807854]\n", + " [ 0.27973842 -0.6778842 0.67986721]\n", + " [ 0.29677187 -0.65333599 0.6964758 ]\n", + " [ 0.31373674 -0.62742508 0.71267597]\n", + " [ 0.33051854 -0.60026402 0.72831353]\n", + " [ 0.34700633 -0.57197969 0.74325355]\n", + " [ 0.36309325 -0.54271583 0.75737891]\n", + " [ 0.25013542 -0.67166468 0.6973513 ]\n", + " [ 0.26698427 -0.64692372 0.71428922]\n", + " [ 0.2838178 -0.62082351 0.73077057]\n", + " [ 0.30052238 -0.59347485 0.74664175]\n", + " [ 0.31698755 -0.56500399 0.76176728]\n", + " [ 0.33310634 -0.53555538 0.77602874]\n", + " [ 0.21994552 -0.66442622 0.71425609]\n", + " [ 0.23656626 -0.63952625 0.73146605]\n", + " [ 0.25322625 -0.61327448 0.74817838]\n", + " [ 0.26981325 -0.58578065 0.76423939]\n", + " [ 0.28621799 -0.55717088 0.77951259]\n", + " [ 0.30233412 -0.52759039 0.79387811]\n", + " [ 0.18933483 -0.65619426 0.73045288]\n", + " [ 0.20568495 -0.63116817 0.74787729]\n", + " [ 0.22213017 -0.6048023 0.76476948]\n", + " [ 0.23855992 -0.57720614 0.78097519]\n", + " [ 0.25486663 -0.54850605 0.79635677]\n", + " [ 0.27094527 -0.51884801 0.81079307]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:fp_optics: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:cartToSphere: vec: [[ 9.16553098e-01 3.95661074e-01 5.81612636e-02]\n", + " [ 9.12635116e-01 4.07348165e-01 3.41265102e-02]\n", + " [ 9.08006030e-01 4.18849223e-01 9.50675724e-03]\n", + " [ 9.02642876e-01 4.30107705e-01 -1.55948722e-02]\n", + " [ 8.96532066e-01 4.41070669e-01 -4.10721247e-02]\n", + " [ 8.89670035e-01 4.51688523e-01 -6.68184666e-02]\n", + " [ 8.82063552e-01 4.61914876e-01 -9.27283005e-02]\n", + " [ 8.73729810e-01 4.71706634e-01 -1.18697394e-01]\n", + " [ 9.16553098e-01 3.95661074e-01 5.81612636e-02]\n", + " [ 9.26690437e-01 3.72699518e-01 4.83725403e-02]\n", + " [ 9.36335333e-01 3.49022363e-01 3.82038457e-02]\n", + " [ 9.45408900e-01 3.24706854e-01 2.77032671e-02]\n", + " [ 9.53840617e-01 2.99836197e-01 1.69213513e-02]\n", + " [ 9.61569462e-01 2.74498197e-01 5.90847359e-03]\n", + " [ 9.68544372e-01 2.48784757e-01 -5.28631274e-03]\n", + " [ 9.74724477e-01 2.22791648e-01 -1.66155480e-02]\n", + " [ 8.73729810e-01 4.71706634e-01 -1.18697394e-01]\n", + " [ 8.84100344e-01 4.48682270e-01 -1.30578720e-01]\n", + " [ 8.93973725e-01 4.24824043e-01 -1.42602636e-01]\n", + " [ 9.03269657e-01 4.00209473e-01 -1.54713622e-01]\n", + " [ 9.11917912e-01 3.74918483e-01 -1.66858779e-01]\n", + " [ 9.19857586e-01 3.49035444e-01 -1.78986816e-01]\n", + " [ 9.27036747e-01 3.22651315e-01 -1.91047111e-01]\n", + " [ 9.33412794e-01 2.95864582e-01 -2.02989420e-01]\n", + " [ 9.74724477e-01 2.22791648e-01 -1.66155480e-02]\n", + " [ 9.71450595e-01 2.33432954e-01 -4.23414489e-02]\n", + " [ 9.67326903e-01 2.44090537e-01 -6.85454004e-02]\n", + " [ 9.62327579e-01 2.54711610e-01 -9.51190080e-02]\n", + " [ 9.56436596e-01 2.65246391e-01 -1.21956510e-01]\n", + " [ 9.49648234e-01 2.75647235e-01 -1.48952451e-01]\n", + " [ 9.41967898e-01 2.85868083e-01 -1.75999767e-01]\n", + " [ 9.33412794e-01 2.95864582e-01 -2.02989420e-01]\n", + " [ 9.14966059e-01 4.00698449e-01 4.77269759e-02]\n", + " [ 9.09689792e-01 4.14904104e-01 1.78624179e-02]\n", + " [ 9.03321468e-01 4.28773864e-01 -1.27788744e-02]\n", + " [ 8.95832120e-01 4.42208780e-01 -4.40023547e-02]\n", + " [ 8.87215220e-01 4.55117540e-01 -7.56120245e-02]\n", + " [ 8.77487561e-01 4.67416093e-01 -1.07414038e-01]\n", + " [ 9.21016212e-01 3.85782448e-01 5.38613096e-02]\n", + " [ 9.33120239e-01 3.57149733e-01 4.16015298e-02]\n", + " [ 9.44405335e-01 3.27518027e-01 2.88184887e-02]\n", + " [ 9.54738099e-01 2.97038151e-01 1.56044300e-02]\n", + " [ 9.64006239e-01 2.65871701e-01 2.05197229e-03]\n", + " [ 9.72119972e-01 2.34189486e-01 -1.17492450e-02]\n", + " [ 8.78336776e-01 4.61742521e-01 -1.23767330e-01]\n", + " [ 8.90723553e-01 4.32953049e-01 -1.38431243e-01]\n", + " [ 9.02282615e-01 4.02987951e-01 -1.53254018e-01]\n", + " [ 9.12880522e-01 3.71993323e-01 -1.68137209e-01]\n", + " [ 9.22405103e-01 3.40124751e-01 -1.82986284e-01]\n", + " [ 9.30764589e-01 3.07552842e-01 -1.97708191e-01]\n", + " [ 9.73379660e-01 2.27515365e-01 -2.77271693e-02]\n", + " [ 9.68799260e-01 2.40576003e-01 -5.95917903e-02]\n", + " [ 9.62915724e-01 2.53608110e-01 -9.20664675e-02]\n", + " [ 9.55695479e-01 2.66518818e-01 -1.24955476e-01]\n", + " [ 9.47128096e-01 2.79220344e-01 -1.58064446e-01]\n", + " [ 9.37228413e-01 2.91628564e-01 -1.91195403e-01]\n", + " [ 9.16576290e-01 3.95624068e-01 5.80474002e-02]\n", + " [ 9.16576290e-01 3.95624068e-01 5.80474002e-02]\n", + " [ 9.33423115e-01 2.95922997e-01 -2.02856767e-01]\n", + " [ 9.33423115e-01 2.95922997e-01 -2.02856767e-01]\n", + " [ 9.19431035e-01 3.90840835e-01 4.34742837e-02]\n", + " [ 9.31602034e-01 3.62152303e-01 3.10380408e-02]\n", + " [ 9.42947034e-01 3.32450422e-01 1.80999330e-02]\n", + " [ 9.53331969e-01 3.01886656e-01 4.75442648e-03]\n", + " [ 9.62644280e-01 2.70622777e-01 -8.90520101e-03]\n", + " [ 9.70793985e-01 2.38829827e-01 -2.27892950e-02]\n", + " [ 9.14213042e-01 4.05011466e-01 1.34248392e-02]\n", + " [ 9.26539683e-01 3.76196706e-01 5.04163534e-04]\n", + " [ 9.38024358e-01 3.46330892e-01 -1.28537070e-02]\n", + " [ 9.48532060e-01 3.15566128e-01 -2.65508939e-02]\n", + " [ 9.57949838e-01 2.84063987e-01 -4.04939442e-02]\n", + " [ 9.66187102e-01 2.51996024e-01 -5.45938464e-02]\n", + " [ 9.07883240e-01 4.18862183e-01 -1.73923413e-02]\n", + " [ 9.20313369e-01 3.89970030e-01 -3.07681333e-02]\n", + " [ 9.31892478e-01 3.59992904e-01 -4.45142582e-02]\n", + " [ 9.42485517e-01 3.29082096e-01 -5.85322465e-02]\n", + " [ 9.51979384e-01 2.97398156e-01 -7.27295654e-02]\n", + " [ 9.60282785e-01 2.65112942e-01 -8.70178211e-02]\n", + " [ 9.00412006e-01 4.32294667e-01 -4.87805393e-02]\n", + " [ 9.12892324e-01 4.03375092e-01 -6.25790640e-02]\n", + " [ 9.24519969e-01 3.73339908e-01 -7.66820665e-02]\n", + " [ 9.35160277e-01 3.42338714e-01 -9.09915465e-02]\n", + " [ 9.44700139e-01 3.10530521e-01 -1.05415576e-01]\n", + " [ 9.53047618e-01 2.78087217e-01 -1.19865495e-01]\n", + " [ 8.91792564e-01 4.45217744e-01 -8.05430511e-02]\n", + " [ 9.04269366e-01 4.16320579e-01 -9.47316713e-02]\n", + " [ 9.15899217e-01 3.86280258e-01 -1.09161285e-01]\n", + " [ 9.26547997e-01 3.55244507e-01 -1.23734186e-01]\n", + " [ 9.36102811e-01 3.23370665e-01 -1.38358016e-01]\n", + " [ 9.44471418e-01 2.90830293e-01 -1.52942739e-01]\n", + " [ 8.82041705e-01 4.57547140e-01 -1.12485755e-01]\n", + " [ 8.94461369e-01 4.28721151e-01 -1.27031625e-01]\n", + " [ 9.06047031e-01 3.98727485e-01 -1.41757434e-01]\n", + " [ 9.16665097e-01 3.67712503e-01 -1.56565053e-01]\n", + " [ 9.26203164e-01 3.35832143e-01 -1.71360646e-01]\n", + " [ 9.34569238e-01 3.03257302e-01 -1.86052003e-01]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:fp_optics: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:cartToSphere: vec: [[-0.00708607 0.64553035 -0.76370174]\n", + " [-0.02683402 0.63119969 -0.77515604]\n", + " [-0.04686986 0.61600753 -0.78634467]\n", + " [-0.06711664 0.60000084 -0.797179 ]\n", + " [-0.08749696 0.58323078 -0.80758042]\n", + " [-0.10793283 0.5657529 -0.81748037]\n", + " [-0.12834559 0.54762752 -0.82682012]\n", + " [-0.14865622 0.52892011 -0.83555063]\n", + " [-0.00708607 0.64553035 -0.76370174]\n", + " [ 0.01313459 0.6318326 -0.77499358]\n", + " [ 0.03367798 0.61727759 -0.78602428]\n", + " [ 0.05446492 0.60190959 -0.79670473]\n", + " [ 0.07541582 0.58577694 -0.8069559 ]\n", + " [ 0.09645048 0.56893231 -0.81670884]\n", + " [ 0.11748794 0.55143311 -0.82590442]\n", + " [ 0.1384468 0.53334189 -0.83449321]\n", + " [-0.14865622 0.52892011 -0.83555063]\n", + " [-0.12900046 0.51370319 -0.84821454]\n", + " [-0.10884059 0.4977592 -0.86045889]\n", + " [-0.08825171 0.48112947 -0.87219612]\n", + " [-0.06730969 0.46386001 -0.88334778]\n", + " [-0.04609256 0.44600275 -0.89384396]\n", + " [-0.0246812 0.42761634 -0.90362332]\n", + " [-0.00315923 0.40876635 -0.9126336 ]\n", + " [ 0.1384468 0.53334189 -0.83449321]\n", + " [ 0.11927057 0.51751255 -0.84732242]\n", + " [ 0.09961898 0.50094517 -0.8597267 ]\n", + " [ 0.07956501 0.48368364 -0.87161892]\n", + " [ 0.05918264 0.4657767 -0.88292099]\n", + " [ 0.03854805 0.4472792 -0.8935633 ]\n", + " [ 0.01774024 0.42825285 -0.9034848 ]\n", + " [-0.00315923 0.40876635 -0.9126336 ]\n", + " [-0.01558743 0.63934516 -0.76876186]\n", + " [-0.03999393 0.62119533 -0.78263456]\n", + " [-0.06475655 0.60179775 -0.79601888]\n", + " [-0.08973304 0.58124488 -0.80876596]\n", + " [-0.11477978 0.55963899 -0.82074954]\n", + " [-0.13975179 0.53709329 -0.83186551]\n", + " [ 0.00161853 0.63961825 -0.76869101]\n", + " [ 0.0266281 0.62224732 -0.7823677 ]\n", + " [ 0.05204392 0.60363233 -0.79556234]\n", + " [ 0.07771966 0.58386059 -0.80812528]\n", + " [ 0.10350763 0.56302913 -0.81992949]\n", + " [ 0.1292586 0.54124574 -0.83087019]\n", + " [-0.14008358 0.52244252 -0.84108882]\n", + " [-0.11564428 0.50329935 -0.85633881]\n", + " [-0.09052252 0.48310459 -0.87087062]\n", + " [-0.0648576 0.46194093 -0.88453607]\n", + " [-0.03879324 0.43990406 -0.8972065 ]\n", + " [-0.01247952 0.41710485 -0.90877269]\n", + " [ 0.1300773 0.52659669 -0.84010465]\n", + " [ 0.10624534 0.50669523 -0.85555355]\n", + " [ 0.08177199 0.48572823 -0.87027664]\n", + " [ 0.05679293 0.46378333 -0.88412645]\n", + " [ 0.03144853 0.4409616 -0.89697484]\n", + " [ 0.0058853 0.41737958 -0.90871318]\n", + " [-0.00708452 0.64543753 -0.76378021]\n", + " [-0.00708452 0.64543753 -0.76378021]\n", + " [-0.00316139 0.40889886 -0.91257423]\n", + " [-0.00316139 0.40889886 -0.91257423]\n", + " [-0.00688405 0.63347649 -0.77373131]\n", + " [ 0.01813807 0.6159719 -0.78755929]\n", + " [ 0.04358377 0.59723246 -0.80088316]\n", + " [ 0.06930689 0.57734508 -0.81355345]\n", + " [ 0.09515963 0.55640628 -0.82544333]\n", + " [ 0.1209924 0.53452365 -0.83644803]\n", + " [-0.03130152 0.61519257 -0.78775524]\n", + " [-0.00627771 0.59732771 -0.80197269]\n", + " [ 0.01921894 0.57825624 -0.81562881]\n", + " [ 0.04504295 0.5580634 -0.82857491]\n", + " [ 0.07104643 0.53684435 -0.84068457]\n", + " [ 0.0970787 0.5147063 -0.85185277]\n", + " [-0.05609297 0.59566947 -0.80126865]\n", + " [-0.03111822 0.57747072 -0.81581813]\n", + " [-0.0056214 0.5580962 -0.82975721]\n", + " [ 0.02025307 0.53762946 -0.84293794]\n", + " [ 0.04635755 0.51616467 -0.85523389]\n", + " [ 0.07254056 0.49380913 -0.86653933]\n", + " [-0.08111625 0.57499923 -0.81412287]\n", + " [-0.05624184 0.55649132 -0.82894769]\n", + " [-0.03079655 0.53684103 -0.84312115]\n", + " [-0.00492335 0.51613074 -0.85649566]\n", + " [ 0.02123083 0.49445424 -0.86894433]\n", + " [ 0.04751421 0.47191948 -0.88036038]\n", + " [-0.10622759 0.55328366 -0.8261918 ]\n", + " [-0.08150454 0.53449004 -0.84123564]\n", + " [-0.05616251 0.51459032 -0.85559486]\n", + " [-0.03034287 0.49366647 -0.86912181]\n", + " [-0.00419136 0.47181267 -0.88168885]\n", + " [ 0.02214054 0.44913796 -0.89318805]\n", + " [-0.13128162 0.5306358 -0.83737135]\n", + " [-0.10675975 0.51157964 -0.85257764]\n", + " [-0.08157179 0.49145701 -0.86707327]\n", + " [-0.05585753 0.4703503 -0.88071024]\n", + " [-0.02976125 0.44835471 -0.89336013]\n", + " [-0.00343348 0.42558063 -0.904914 ]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:fp_optics: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:cartToSphere: vec: [[ 0.75106929 -0.20980331 -0.62600119]\n", + " [ 0.74215943 -0.19047344 -0.64258793]\n", + " [ 0.73241411 -0.17070105 -0.65911359]\n", + " [ 0.7218536 -0.15055306 -0.67547106]\n", + " [ 0.71050314 -0.13009891 -0.69156313]\n", + " [ 0.69839338 -0.10941099 -0.70730186]\n", + " [ 0.685561 -0.08856464 -0.72260807]\n", + " [ 0.67204918 -0.06763796 -0.73741102]\n", + " [ 0.75106929 -0.20980331 -0.62600119]\n", + " [ 0.73619814 -0.22957971 -0.63663605]\n", + " [ 0.72039617 -0.24950935 -0.64712784]\n", + " [ 0.70370657 -0.26950568 -0.65739162]\n", + " [ 0.6861775 -0.28948423 -0.66735247]\n", + " [ 0.66786263 -0.30936223 -0.67694498]\n", + " [ 0.64882186 -0.32905847 -0.68611275]\n", + " [ 0.62912174 -0.34849357 -0.69480793]\n", + " [ 0.67204918 -0.06763796 -0.73741102]\n", + " [ 0.65601233 -0.0868812 -0.74973294]\n", + " [ 0.63911878 -0.10644592 -0.76170628]\n", + " [ 0.62140689 -0.12625004 -0.77324925]\n", + " [ 0.60292135 -0.14621272 -0.78428802]\n", + " [ 0.5837145 -0.16625302 -0.79475614]\n", + " [ 0.56384727 -0.18628946 -0.80459462]\n", + " [ 0.54338927 -0.20624031 -0.81375244]\n", + " [ 0.62912174 -0.34849357 -0.69480793]\n", + " [ 0.61888041 -0.32974642 -0.71291958]\n", + " [ 0.60793129 -0.31036374 -0.73081728]\n", + " [ 0.59629118 -0.29040788 -0.74839835]\n", + " [ 0.58398303 -0.26994459 -0.7655676 ]\n", + " [ 0.57103684 -0.24904428 -0.78223646]\n", + " [ 0.55749038 -0.22778263 -0.79832296]\n", + " [ 0.54338927 -0.20624031 -0.81375244]\n", + " [ 0.74723884 -0.20150131 -0.63327035]\n", + " [ 0.73575389 -0.17750466 -0.65357349]\n", + " [ 0.72303371 -0.15290939 -0.6736772 ]\n", + " [ 0.70912267 -0.12784231 -0.69339843]\n", + " [ 0.69407728 -0.10243665 -0.71257524]\n", + " [ 0.67796774 -0.07683229 -0.73106534]\n", + " [ 0.74467309 -0.21833617 -0.63070699]\n", + " [ 0.72581492 -0.24268841 -0.64365755]\n", + " [ 0.70560103 -0.26718468 -0.6563075 ]\n", + " [ 0.68411797 -0.29166865 -0.66851477]\n", + " [ 0.66146465 -0.31598791 -0.68015892]\n", + " [ 0.63775408 -0.33999369 -0.69113965]\n", + " [ 0.66521214 -0.07605509 -0.74277078]\n", + " [ 0.64497715 -0.099867 -0.75764837]\n", + " [ 0.62349279 -0.12407988 -0.77192028]\n", + " [ 0.60083859 -0.14854447 -0.78544734]\n", + " [ 0.57711105 -0.17311171 -0.79810724]\n", + " [ 0.55242595 -0.19763144 -0.80979466]\n", + " [ 0.62481305 -0.34033561 -0.70269504]\n", + " [ 0.61178413 -0.31692333 -0.72476188]\n", + " [ 0.59770803 -0.29261825 -0.74640449]\n", + " [ 0.58262438 -0.26753991 -0.76744461]\n", + " [ 0.56658851 -0.24181802 -0.78771918]\n", + " [ 0.54967322 -0.21559401 -0.80708028]\n", + " [ 0.75099104 -0.2098053 -0.62609439]\n", + " [ 0.75099104 -0.2098053 -0.62609439]\n", + " [ 0.54350926 -0.20624637 -0.81367077]\n", + " [ 0.54350926 -0.20624637 -0.81367077]\n", + " [ 0.74088171 -0.21003554 -0.63794934]\n", + " [ 0.72191503 -0.23440695 -0.65106995]\n", + " [ 0.70159584 -0.25893688 -0.66386367]\n", + " [ 0.6800099 -0.2834692 -0.67618914]\n", + " [ 0.6572555 -0.30785137 -0.68792641]\n", + " [ 0.63344547 -0.33193418 -0.69897535]\n", + " [ 0.72929165 -0.18603506 -0.65842589]\n", + " [ 0.71003606 -0.21042364 -0.67199009]\n", + " [ 0.68943924 -0.23501319 -0.68515862]\n", + " [ 0.66758457 -0.25964826 -0.69779196]\n", + " [ 0.64456879 -0.28417608 -0.70977111]\n", + " [ 0.62050446 -0.30844618 -0.72099596]\n", + " [ 0.71647468 -0.16141592 -0.67868176]\n", + " [ 0.69695599 -0.18576593 -0.69263509]\n", + " [ 0.67611052 -0.21036106 -0.70613227]\n", + " [ 0.65401953 -0.23504692 -0.71903504]\n", + " [ 0.6307787 -0.25967079 -0.73122453]\n", + " [ 0.60650078 -0.28408127 -0.74259991]\n", + " [ 0.70247446 -0.13630477 -0.69853464]\n", + " [ 0.68271634 -0.16055977 -0.71282463]\n", + " [ 0.66164943 -0.18510539 -0.72660583]\n", + " [ 0.6393535 -0.20978861 -0.73974039]\n", + " [ 0.61592377 -0.23445726 -0.75210884]\n", + " [ 0.59147366 -0.25895953 -0.76360911]\n", + " [ 0.68734686 -0.11083496 -0.71782304]\n", + " [ 0.66737145 -0.13493874 -0.73239804]\n", + " [ 0.64610932 -0.15937959 -0.74641871]\n", + " [ 0.62363958 -0.18400609 -0.75974695]\n", + " [ 0.60005766 -0.20866714 -0.77226215]\n", + " [ 0.57547791 -0.2332112 -0.78386078]\n", + " [ 0.6711618 -0.0851468 -0.73640469]\n", + " [ 0.65099067 -0.10904432 -0.75121267]\n", + " [ 0.62955955 -0.13332603 -0.76542729]\n", + " [ 0.60694773 -0.15784215 -0.77890969]\n", + " [ 0.58325135 -0.18244305 -0.791538 ]\n", + " [ 0.55858582 -0.2069781 -0.80320729]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:fp_optics: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:cartToSphere: vec: [[-1.61729685e-01 1.60529819e-01 -9.73690755e-01]\n", + " [-1.58565775e-01 1.34124531e-01 -9.78196046e-01]\n", + " [-1.55060248e-01 1.07085356e-01 -9.82084032e-01]\n", + " [-1.51238605e-01 7.95225653e-02 -9.85293381e-01]\n", + " [-1.47123658e-01 5.15453970e-02 -9.87774114e-01]\n", + " [-1.42736374e-01 2.32631884e-02 -9.89487318e-01]\n", + " [-1.38096707e-01 -5.21397444e-03 -9.90405025e-01]\n", + " [-1.33224235e-01 -3.37751582e-02 -9.90510243e-01]\n", + " [-1.61729685e-01 1.60529819e-01 -9.73690755e-01]\n", + " [-1.35734440e-01 1.66924322e-01 -9.76582015e-01]\n", + " [-1.09042822e-01 1.73180409e-01 -9.78835129e-01]\n", + " [-8.17701522e-02 1.79279941e-01 -9.80393974e-01]\n", + " [-5.40291467e-02 1.85203375e-01 -9.81213820e-01]\n", + " [-2.59313677e-02 1.90930123e-01 -9.81261052e-01]\n", + " [ 2.41179772e-03 1.96439107e-01 -9.80513060e-01]\n", + " [ 3.08887658e-02 2.01709322e-01 -9.78958239e-01]\n", + " [-1.33224235e-01 -3.37751582e-02 -9.90510243e-01]\n", + " [-1.05941939e-01 -2.89765754e-02 -9.93950031e-01]\n", + " [-7.80146749e-02 -2.40599013e-02 -9.96661844e-01]\n", + " [-4.95497049e-02 -1.90432345e-02 -9.98590097e-01]\n", + " [-2.06554789e-02 -1.39450938e-02 -9.99689395e-01]\n", + " [ 8.55695148e-03 -8.78463438e-03 -9.99924802e-01]\n", + " [ 3.79736470e-02 -3.58167494e-03 -9.99272322e-01]\n", + " [ 6.74783797e-02 1.64342123e-03 -9.97719383e-01]\n", + " [ 3.08887658e-02 2.01709322e-01 -9.78958239e-01]\n", + " [ 3.59917196e-02 1.74642755e-01 -9.83973833e-01]\n", + " [ 4.11734005e-02 1.46895224e-01 -9.88294766e-01]\n", + " [ 4.64110594e-02 1.18569674e-01 -9.91860497e-01]\n", + " [ 5.16824030e-02 8.97712849e-02 -9.94620554e-01]\n", + " [ 5.69653286e-02 6.06087261e-02 -9.96534763e-01]\n", + " [ 6.22378816e-02 3.11943293e-02 -9.97573737e-01]\n", + " [ 6.74783797e-02 1.64342123e-03 -9.97719383e-01]\n", + " [-1.60305925e-01 1.49123846e-01 -9.75737715e-01]\n", + " [-1.56193867e-01 1.16320224e-01 -9.80853241e-01]\n", + " [-1.51594543e-01 8.26741832e-02 -9.84979225e-01]\n", + " [-1.46551027e-01 4.83871829e-02 -9.88018966e-01]\n", + " [-1.41102009e-01 1.36605820e-02 -9.89900809e-01]\n", + " [-1.35284044e-01 -2.13025870e-02 -9.90577825e-01]\n", + " [-1.50478130e-01 1.63244352e-01 -9.75042365e-01]\n", + " [-1.18133922e-01 1.70989772e-01 -9.78165055e-01]\n", + " [-8.48587121e-02 1.78509607e-01 -9.80272064e-01]\n", + " [-5.08610039e-02 1.85768451e-01 -9.81276333e-01]\n", + " [-1.63462881e-02 1.92728467e-01 -9.81115965e-01]\n", + " [ 1.84802881e-02 1.99350850e-01 -9.79753907e-01]\n", + " [-1.21432361e-01 -3.16005511e-02 -9.92096561e-01]\n", + " [-8.75480729e-02 -2.56367305e-02 -9.95830354e-01]\n", + " [-5.28015416e-02 -1.95136696e-02 -9.98414350e-01]\n", + " [-1.73918123e-02 -1.32652735e-02 -9.99760750e-01]\n", + " [ 1.84766433e-02 -6.92681438e-03 -9.99805297e-01]\n", + " [ 5.45930649e-02 -5.35018266e-04 -9.98508543e-01]\n", + " [ 3.30046298e-02 1.89980847e-01 -9.81232884e-01]\n", + " [ 3.93136905e-02 1.56337034e-01 -9.86921053e-01]\n", + " [ 4.57185106e-02 1.21772564e-01 -9.91504544e-01]\n", + " [ 5.21778872e-02 8.64800374e-02 -9.94886260e-01]\n", + " [ 5.86511308e-02 5.06595292e-02 -9.96992305e-01]\n", + " [ 6.50979315e-02 1.45191367e-02 -9.97773248e-01]\n", + " [-1.61631902e-01 1.60462810e-01 -9.73718037e-01]\n", + " [-1.61631902e-01 1.60462810e-01 -9.73718037e-01]\n", + " [ 6.73596255e-02 1.72669233e-03 -9.97727267e-01]\n", + " [ 6.73596255e-02 1.72669233e-03 -9.97727267e-01]\n", + " [-1.49092966e-01 1.51864829e-01 -9.77091788e-01]\n", + " [-1.16586134e-01 1.59512572e-01 -9.80287413e-01]\n", + " [-8.31544500e-02 1.66959710e-01 -9.82450911e-01]\n", + " [-4.90050816e-02 1.74170156e-01 -9.83495429e-01]\n", + " [-1.43428897e-02 1.81105455e-01 -9.83359088e-01]\n", + " [ 2.06269087e-02 1.87726315e-01 -9.82004766e-01]\n", + " [-1.44831679e-01 1.18944282e-01 -9.82281040e-01]\n", + " [-1.11914758e-01 1.26308650e-01 -9.85657756e-01]\n", + " [-7.80880113e-02 1.33541968e-01 -9.87961945e-01]\n", + " [-4.35552615e-02 1.40606699e-01 -9.89107019e-01]\n", + " [-8.52017321e-03 1.47463225e-01 -9.89030841e-01]\n", + " [ 2.68113252e-02 1.54071359e-01 -9.87695889e-01]\n", + " [-1.40109468e-01 8.51773105e-02 -9.86465490e-01]\n", + " [-1.06854829e-01 9.22455303e-02 -9.89986266e-01]\n", + " [-7.27025788e-02 9.92507218e-02 -9.92402957e-01]\n", + " [-3.78540904e-02 1.06154851e-01 -9.93628812e-01]\n", + " [-2.51262469e-03 1.12918091e-01 -9.93601123e-01]\n", + " [ 3.31146675e-02 1.19500110e-01 -9.92281786e-01]\n", + " [-1.34968293e-01 5.07644224e-02 -9.89548651e-01]\n", + " [-1.01445766e-01 5.75212572e-02 -9.93176752e-01]\n", + " [-6.70362460e-02 6.42820258e-02 -9.95677640e-01]\n", + " [-3.19395826e-02 7.10091708e-02 -9.96964172e-01]\n", + " [ 3.64080533e-03 7.76635418e-02 -9.96972978e-01]\n", + " [ 3.94963846e-02 8.42053440e-02 -9.95665353e-01]\n", + " [-1.29446052e-01 1.59066518e-02 -9.91458874e-01]\n", + " [-9.57239593e-02 2.23362805e-02 -9.95157281e-01]\n", + " [-6.11250582e-02 2.88361388e-02 -9.97713488e-01]\n", + " [-2.58484639e-02 3.53699266e-02 -9.99039952e-01]\n", + " [ 9.90196909e-03 4.18998636e-02 -9.99072746e-01]\n", + " [ 4.59164823e-02 4.83872249e-02 -9.97772696e-01]\n", + " [-1.23578873e-01 -1.91927053e-02 -9.92149133e-01]\n", + " [-8.97249489e-02 -1.31050417e-02 -9.95880360e-01]\n", + " [-5.50048322e-02 -6.88129562e-03 -9.98462376e-01]\n", + " [-1.96175030e-02 -5.56032679e-04 -9.99807404e-01]\n", + " [ 1.62327103e-02 5.83477979e-03 -9.99851216e-01]\n", + " [ 5.23352180e-02 1.22538538e-02 -9.98554389e-01]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:fp_optics: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:cartToSphere: vec: [[-3.03725804e-02 1.17475744e-01 -9.92611181e-01]\n", + " [-8.49662020e-03 1.33146922e-01 -9.91059889e-01]\n", + " [ 1.37535618e-02 1.49173619e-01 -9.88715364e-01]\n", + " [ 3.62914964e-02 1.65468772e-01 -9.85547063e-01]\n", + " [ 5.90303174e-02 1.81949854e-01 -9.81534346e-01]\n", + " [ 8.18825366e-02 1.98538739e-01 -9.76666586e-01]\n", + " [ 1.04759970e-01 2.15161278e-01 -9.70943342e-01]\n", + " [ 1.27573935e-01 2.31746946e-01 -9.64374535e-01]\n", + " [-3.03725804e-02 1.17475744e-01 -9.92611181e-01]\n", + " [-4.82117388e-02 1.37353517e-01 -9.89348088e-01]\n", + " [-6.62824242e-02 1.57659821e-01 -9.85266472e-01]\n", + " [-8.45159804e-02 1.78290550e-01 -9.80341537e-01]\n", + " [-1.02843320e-01 1.99146093e-01 -9.74558405e-01]\n", + " [-1.21194712e-01 2.20131159e-01 -9.67912245e-01]\n", + " [-1.39499784e-01 2.41154316e-01 -9.60408458e-01]\n", + " [-1.57687781e-01 2.62127644e-01 -9.52062846e-01]\n", + " [ 1.27573935e-01 2.31746946e-01 -9.64374535e-01]\n", + " [ 1.10546293e-01 2.53582455e-01 -9.60976303e-01]\n", + " [ 9.30836265e-02 2.75664867e-01 -9.56736285e-01]\n", + " [ 7.52509677e-02 2.97893650e-01 -9.51628428e-01]\n", + " [ 5.71140454e-02 3.20171639e-01 -9.45636351e-01]\n", + " [ 3.87404465e-02 3.42403626e-01 -9.38753927e-01]\n", + " [ 2.02002287e-02 3.64495731e-01 -9.30985936e-01]\n", + " [ 1.56582549e-03 3.86355664e-01 -9.22348551e-01]\n", + " [-1.57687781e-01 2.62127644e-01 -9.52062846e-01]\n", + " [-1.36129628e-01 2.79879926e-01 -9.50334652e-01]\n", + " [-1.14034260e-01 2.97766152e-01 -9.47803517e-01]\n", + " [-9.14837527e-02 3.15701996e-01 -9.44437914e-01]\n", + " [-6.85612791e-02 3.33606515e-01 -9.40215956e-01]\n", + " [-4.53525022e-02 3.51401077e-01 -9.35125892e-01]\n", + " [-2.19462307e-02 3.69008958e-01 -9.29166698e-01]\n", + " [ 1.56582549e-03 3.86355664e-01 -9.22348551e-01]\n", + " [-2.09465730e-02 1.24326710e-01 -9.92020217e-01]\n", + " [ 6.12746340e-03 1.43785258e-01 -9.89589942e-01]\n", + " [ 3.36778363e-02 1.63690650e-01 -9.85936699e-01]\n", + " [ 6.15448037e-02 1.83889060e-01 -9.81018374e-01]\n", + " [ 8.95672934e-02 2.04236611e-01 -9.74815422e-01]\n", + " [ 1.17582732e-01 2.24598311e-01 -9.67331329e-01]\n", + " [-3.80435325e-02 1.26136494e-01 -9.91283145e-01]\n", + " [-6.00714789e-02 1.50801920e-01 -9.86737148e-01]\n", + " [-8.23791545e-02 1.76006957e-01 -9.80935893e-01]\n", + " [-1.04839565e-01 2.01566345e-01 -9.73847870e-01]\n", + " [-1.27324337e-01 2.27304603e-01 -9.65464205e-01]\n", + " [-1.49703736e-01 2.53054873e-01 -9.55799154e-01]\n", + " [ 1.20129369e-01 2.41173504e-01 -9.63018315e-01]\n", + " [ 9.89587371e-02 2.68113486e-01 -9.58291358e-01]\n", + " [ 7.71994311e-02 2.95324090e-01 -9.52273033e-01]\n", + " [ 5.49721055e-02 3.22625126e-01 -9.44929148e-01]\n", + " [ 3.24012620e-02 3.49841252e-01 -9.36248501e-01]\n", + " [ 9.61689793e-03 3.76800255e-01 -9.26244613e-01]\n", + " [-1.48297512e-01 2.69773815e-01 -9.51435724e-01]\n", + " [-1.21503619e-01 2.91631219e-01 -9.48782432e-01]\n", + " [-9.39844362e-02 3.13605723e-01 -9.44890669e-01]\n", + " [-6.58925488e-02 3.35546977e-01 -9.39716126e-01]\n", + " [-3.73857403e-02 3.57310182e-01 -9.33237237e-01]\n", + " [-8.62875762e-03 3.78754981e-01 -9.25456757e-01]\n", + " [-3.03590387e-02 1.17595754e-01 -9.92597384e-01]\n", + " [-3.03590387e-02 1.17595754e-01 -9.92597384e-01]\n", + " [ 1.54914810e-03 3.86222617e-01 -9.22404299e-01]\n", + " [ 1.54914810e-03 3.86222617e-01 -9.22404299e-01]\n", + " [-2.86225062e-02 1.32943531e-01 -9.90710235e-01]\n", + " [-5.06392047e-02 1.57810823e-01 -9.86170074e-01]\n", + " [-7.29550472e-02 1.83197512e-01 -9.80365357e-01]\n", + " [-9.54431439e-02 2.08918792e-01 -9.73264376e-01]\n", + " [-1.17974969e-01 2.34799631e-01 -9.64858041e-01]\n", + " [-1.40420376e-01 2.60673284e-01 -9.55160487e-01]\n", + " [-1.51383837e-03 1.52601397e-01 -9.88286660e-01]\n", + " [-2.34692976e-02 1.77995674e-01 -9.83751357e-01]\n", + " [-4.57790475e-02 2.03854519e-01 -9.77930270e-01]\n", + " [-6.83166483e-02 2.29994895e-01 -9.70791009e-01]\n", + " [-9.09532833e-02 2.56242972e-01 -9.62323771e-01]\n", + " [-1.13557710e-01 2.82431971e-01 -9.52542297e-01]\n", + " [ 2.60866938e-02 1.72682094e-01 -9.84632103e-01]\n", + " [ 4.23670261e-03 1.98537725e-01 -9.80084089e-01]\n", + " [-1.80225875e-02 2.24807257e-01 -9.74236565e-01]\n", + " [-4.05655574e-02 2.51309448e-01 -9.67056357e-01]\n", + " [-6.32635189e-02 2.77871169e-01 -9.58532911e-01]\n", + " [-8.59844781e-02 3.04324971e-01 -9.48679599e-01]\n", + " [ 5.40195313e-02 1.93032209e-01 -9.79704270e-01]\n", + " [ 3.23200003e-02 2.19285165e-01 -9.75125343e-01]\n", + " [ 1.01566705e-02 2.45905469e-01 -9.69240601e-01]\n", + " [-1.23460869e-02 2.72713115e-01 -9.62016180e-01]\n", + " [-3.50602793e-02 2.99534961e-01 -9.53440918e-01]\n", + " [-5.78537403e-02 3.26202326e-01 -9.43527947e-01]\n", + " [ 8.21235256e-02 2.13508308e-01 -9.73483399e-01]\n", + " [ 6.06193379e-02 2.40095734e-01 -9.68854651e-01]\n", + " [ 3.85976416e-02 2.67007501e-01 -9.62921189e-01]\n", + " [ 1.61812442e-02 2.94064042e-01 -9.55648736e-01]\n", + " [-6.50311125e-03 3.21091548e-01 -9.47025832e-01]\n", + " [-2.93237668e-02 3.47919795e-01 -9.37065597e-01]\n", + " [ 1.10235712e-01 2.33975570e-01 -9.65972836e-01]\n", + " [ 8.89705974e-02 2.60834746e-01 -9.61274918e-01]\n", + " [ 6.71352085e-02 2.87978131e-01 -9.55280828e-01]\n", + " [ 4.48507258e-02 3.15225810e-01 -9.47956276e-01]\n", + " [ 2.22422635e-02 3.42402879e-01 -9.39289918e-01]\n", + " [-5.59660712e-04 3.69337592e-01 -9.29295125e-01]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:fp_optics: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:cartToSphere: vec: [[0.96244539 0.18871269 0.19515737]\n", + " [0.96004255 0.17505984 0.21833999]\n", + " [0.95682992 0.16112 0.24190257]\n", + " [0.95278264 0.14693488 0.26573554]\n", + " [0.9478861 0.13254862 0.28972884]\n", + " [0.94213556 0.11800825 0.31377482]\n", + " [0.93553605 0.10336382 0.33776948]\n", + " [0.92810239 0.08866838 0.36161289]\n", + " [0.96244539 0.18871269 0.19515737]\n", + " [0.9553156 0.21260962 0.20535153]\n", + " [0.94730374 0.23679466 0.21574036]\n", + " [0.93840191 0.26116359 0.22626407]\n", + " [0.92861277 0.2856121 0.23686296]\n", + " [0.91794903 0.31003735 0.24748014]\n", + " [0.9064333 0.33433859 0.25806273]\n", + " [0.89409805 0.35841744 0.26856213]\n", + " [0.92810239 0.08866838 0.36161289]\n", + " [0.92061661 0.11258992 0.3738831 ]\n", + " [0.91223644 0.13691256 0.3861083 ]\n", + " [0.90295483 0.16153159 0.39822119]\n", + " [0.89277339 0.18634577 0.41015963]\n", + " [0.88170326 0.21125524 0.4218656 ]\n", + " [0.86976619 0.23615966 0.43328443]\n", + " [0.85699545 0.26095764 0.44436461]\n", + " [0.89409805 0.35841744 0.26856213]\n", + " [0.89121412 0.34586107 0.29345787]\n", + " [0.887549 0.33278117 0.31861178]\n", + " [0.88307896 0.31921512 0.34390878]\n", + " [0.87778909 0.30520309 0.36923894]\n", + " [0.87167375 0.29078919 0.39449527]\n", + " [0.86473744 0.27602255 0.41957205]\n", + " [0.85699545 0.26095764 0.44436461]\n", + " [0.96147235 0.18287914 0.20524652]\n", + " [0.95798641 0.16594844 0.23392981]\n", + " [0.95325825 0.14862767 0.26307514]\n", + " [0.94725672 0.13099709 0.29247986]\n", + " [0.93997311 0.11314326 0.3219459 ]\n", + " [0.93142072 0.09515959 0.35128349]\n", + " [0.95943735 0.19904386 0.19965348]\n", + " [0.95010732 0.22853931 0.21228721]\n", + " [0.93944327 0.25836417 0.22515395]\n", + " [0.92744574 0.28832631 0.23814354]\n", + " [0.91413813 0.31823649 0.25115138]\n", + " [0.89956615 0.34791019 0.26408189]\n", + " [0.92497464 0.09909254 0.36688224]\n", + " [0.91520021 0.12869447 0.3818983 ]\n", + " [0.90407435 0.15879431 0.39677945]\n", + " [0.89159646 0.18920428 0.41140916]\n", + " [0.87778714 0.2197403 0.42568055]\n", + " [0.86269123 0.25021718 0.43949425]\n", + " [0.89297851 0.35292732 0.27934152]\n", + " [0.88892249 0.33718076 0.31004183]\n", + " [0.88366848 0.32068488 0.34101501]\n", + " [0.87718533 0.30351241 0.3720566 ]\n", + " [0.86946281 0.28574471 0.40296945]\n", + " [0.86051365 0.26747448 0.4335593 ]\n", + " [0.96241561 0.18874765 0.19527035]\n", + " [0.96241561 0.18874765 0.19527035]\n", + " [0.85706832 0.26092509 0.44424317]\n", + " [0.85706832 0.26092509 0.44424317]\n", + " [0.95848895 0.19319753 0.20969895]\n", + " [0.94913827 0.2227632 0.22251538]\n", + " [0.93844512 0.25266782 0.23554134]\n", + " [0.92641041 0.28271852 0.2486644 ]\n", + " [0.9130576 0.31272581 0.26177927]\n", + " [0.89843235 0.34250486 0.27479033]\n", + " [0.95498501 0.17631438 0.23857255]\n", + " [0.94557032 0.20603478 0.25188577]\n", + " [0.93479508 0.23612125 0.26533926]\n", + " [0.92266064 0.26638011 0.2788171 ]\n", + " [0.90919009 0.29662183 0.29221375]\n", + " [0.89442873 0.3266608 0.30543407]\n", + " [0.95023427 0.15901762 0.26789592]\n", + " [0.94074849 0.18882549 0.28166862]\n", + " [0.92989222 0.21902743 0.29551217]\n", + " [0.91766647 0.24943048 0.30931001]\n", + " [0.9040934 0.27984579 0.32295736]\n", + " [0.88921779 0.31008704 0.33635955]\n", + " [0.94420593 0.14138676 0.29746418]\n", + " [0.93464246 0.1712135 0.31165591]\n", + " [0.92370603 0.20146366 0.32585207]\n", + " [0.91139688 0.23194586 0.33993653]\n", + " [0.89773618 0.26247247 0.35380497]\n", + " [0.88276826 0.29285682 0.36736232]\n", + " [0.93689132 0.12350818 0.32707854]\n", + " [0.92724322 0.15328509 0.34164849]\n", + " [0.91622668 0.18351617 0.35616075]\n", + " [0.90384128 0.21401184 0.3704995 ]\n", + " [0.89010749 0.24458603 0.38455991]\n", + " [0.8750696 0.27505225 0.39824547]\n", + " [0.9283037 0.1054755 0.35654895]\n", + " [0.91856355 0.13513484 0.37145603]\n", + " [0.90746632 0.16528042 0.38624766]\n", + " [0.89501136 0.19572414 0.4008076 ]\n", + " [0.8812191 0.22628145 0.41502963]\n", + " [0.86613418 0.25676673 0.42881515]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:fp_optics: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:cartToSphere: vec: [[-9.42817121e-01 -2.49416364e-01 -2.21104847e-01]\n", + " [-9.39681051e-01 -2.37414053e-01 -2.46239903e-01]\n", + " [-9.35722140e-01 -2.24982051e-01 -2.71674718e-01]\n", + " [-9.30915394e-01 -2.12160340e-01 -2.97295340e-01]\n", + " [-9.25245225e-01 -1.98990390e-01 -3.22992412e-01]\n", + " [-9.18705955e-01 -1.85516303e-01 -3.48658959e-01]\n", + " [-9.11302627e-01 -1.71785837e-01 -3.74188653e-01]\n", + " [-9.03051698e-01 -1.57850730e-01 -3.99475629e-01]\n", + " [-9.42817121e-01 -2.49416364e-01 -2.21104847e-01]\n", + " [-9.51657416e-01 -2.24014992e-01 -2.10155767e-01]\n", + " [-9.59661138e-01 -1.98464664e-01 -1.99153905e-01]\n", + " [-9.66807941e-01 -1.72866692e-01 -1.88147583e-01]\n", + " [-9.73087800e-01 -1.47323577e-01 -1.77188873e-01]\n", + " [-9.78500961e-01 -1.21938719e-01 -1.66333456e-01]\n", + " [-9.83057945e-01 -9.68159711e-02 -1.55639791e-01]\n", + " [-9.86779680e-01 -7.20584421e-02 -1.45166949e-01]\n", + " [-9.03051698e-01 -1.57850730e-01 -3.99475629e-01]\n", + " [-9.12204380e-01 -1.31641128e-01 -3.88012607e-01]\n", + " [-9.20507724e-01 -1.05397555e-01 -3.76240462e-01]\n", + " [-9.27940663e-01 -7.92255116e-02 -3.64210715e-01]\n", + " [-9.34493735e-01 -5.32281580e-02 -3.51977587e-01]\n", + " [-9.40168424e-01 -2.75064033e-02 -3.39597898e-01]\n", + " [-9.44976272e-01 -2.16057389e-03 -3.27131742e-01]\n", + " [-9.48938250e-01 2.27073130e-02 -3.14643569e-01]\n", + " [-9.86779680e-01 -7.20584421e-02 -1.45166949e-01]\n", + " [-9.83914678e-01 -5.88696524e-02 -1.68660223e-01]\n", + " [-9.80227481e-01 -4.54885601e-02 -1.92574339e-01]\n", + " [-9.75692912e-01 -3.19591686e-02 -2.16799340e-01]\n", + " [-9.70296152e-01 -1.83268352e-02 -2.41225008e-01]\n", + " [-9.64032628e-01 -4.63866090e-03 -2.65743437e-01]\n", + " [-9.56908003e-01 9.05632843e-03 -2.90249990e-01]\n", + " [-9.48938250e-01 2.27073130e-02 -3.14643569e-01]\n", + " [-9.41580716e-01 -2.44151826e-01 -2.31981985e-01]\n", + " [-9.37187740e-01 -2.29146968e-01 -2.63003436e-01]\n", + " [-9.31532902e-01 -2.13536457e-01 -2.94361399e-01]\n", + " [-9.24583597e-01 -1.97395991e-01 -3.25852719e-01]\n", + " [-9.16329467e-01 -1.80806889e-01 -3.57280249e-01]\n", + " [-9.06784520e-01 -1.63858754e-01 -3.88448378e-01]\n", + " [-9.46763419e-01 -2.38325402e-01 -2.16425580e-01]\n", + " [-9.57038888e-01 -2.07079714e-01 -2.02964429e-01]\n", + " [-9.66036369e-01 -1.75710888e-01 -1.89471415e-01]\n", + " [-9.73733124e-01 -1.44407153e-01 -1.76040840e-01]\n", + " [-9.80129602e-01 -1.13358821e-01 -1.62775127e-01]\n", + " [-9.85249487e-01 -8.27568809e-02 -1.49782332e-01]\n", + " [-9.07174520e-01 -1.46482182e-01 -3.94432961e-01]\n", + " [-9.17824082e-01 -1.14323422e-01 -3.80169843e-01]\n", + " [-9.27175629e-01 -8.22185740e-02 -3.65493445e-01]\n", + " [-9.35206934e-01 -5.03585933e-02 -3.50502501e-01]\n", + " [-9.41920621e-01 -1.89294541e-02 -3.35301684e-01]\n", + " [-9.47341866e-01 1.18835222e-02 -3.20003391e-01]\n", + " [-9.85618249e-01 -6.64186078e-02 -1.55387375e-01]\n", + " [-9.81557693e-01 -5.01200233e-02 -1.84478936e-01]\n", + " [-9.76235943e-01 -3.35760112e-02 -2.14093518e-01]\n", + " [-9.69621425e-01 -1.68694859e-02 -2.44028096e-01]\n", + " [-9.61705718e-01 -8.71791785e-05 -2.74084118e-01]\n", + " [-9.52503525e-01 1.66798909e-02 -3.04070414e-01]\n", + " [-9.42839388e-01 -2.49289599e-01 -2.21152854e-01]\n", + " [-9.42839388e-01 -2.49289599e-01 -2.21152854e-01]\n", + " [-9.48954779e-01 2.25766575e-02 -3.14603118e-01]\n", + " [-9.48954779e-01 2.25766575e-02 -3.14603118e-01]\n", + " [-9.45519868e-01 -2.33145377e-01 -2.27234267e-01]\n", + " [-9.55832537e-01 -2.01785831e-01 -2.13697542e-01]\n", + " [-9.64858840e-01 -1.70312229e-01 -2.00102884e-01]\n", + " [-9.72576090e-01 -1.38913159e-01 -1.86544587e-01]\n", + " [-9.78984786e-01 -1.07779153e-01 -1.73125511e-01]\n", + " [-9.84108513e-01 -7.71017682e-02 -1.59955470e-01]\n", + " [-9.41165065e-01 -2.18034587e-01 -2.58203872e-01]\n", + " [-9.51573145e-01 -1.86392261e-01 -2.44471826e-01]\n", + " [-9.60675920e-01 -1.54663059e-01 -2.30610310e-01]\n", + " [-9.68451031e-01 -1.23036637e-01 -2.16713144e-01]\n", + " [-9.74899439e-01 -9.17036236e-02 -2.02883043e-01]\n", + " [-9.80044761e-01 -6.08559817e-02 -1.89232175e-01]\n", + " [-9.35541476e-01 -2.02338623e-01 -2.89518962e-01]\n", + " [-9.46030240e-01 -1.70472882e-01 -2.75618906e-01]\n", + " [-9.55201929e-01 -1.38549747e-01 -2.61521018e-01]\n", + " [-9.63034625e-01 -1.06759955e-01 -2.47318868e-01]\n", + " [-9.69530084e-01 -7.52936234e-02 -2.33114320e-01]\n", + " [-9.74712392e-01 -4.43417588e-02 -2.19019544e-01]\n", + " [-9.28616365e-01 -1.86133660e-01 -3.20976489e-01]\n", + " [-9.39171037e-01 -1.54105408e-01 -3.06935312e-01]\n", + " [-9.48404451e-01 -1.22051450e-01 -2.92630213e-01]\n", + " [-9.56295009e-01 -9.01633488e-02 -2.78155400e-01]\n", + " [-9.62845257e-01 -5.86302412e-02 -2.63612415e-01]\n", + " [-9.68079939e-01 -2.76413730e-02 -2.49112797e-01]\n", + " [-9.20379141e-01 -1.69501789e-01 -3.52379596e-01]\n", + " [-9.30984681e-01 -1.37374077e-01 -3.38224610e-01]\n", + " [-9.40272970e-01 -1.05254023e-01 -3.23741149e-01]\n", + " [-9.48222414e-01 -7.33334382e-02 -3.09025016e-01]\n", + " [-9.54835987e-01 -4.18001528e-02 -2.94178491e-01]\n", + " [-9.60138922e-01 -1.08414440e-02 -2.79312931e-01]\n", + " [-9.10843544e-01 -1.52533392e-01 -3.83533053e-01]\n", + " [-9.21484437e-01 -1.20371138e-01 -3.69292866e-01]\n", + " [-9.30820749e-01 -8.82507174e-02 -3.54661168e-01]\n", + " [-9.38830481e-01 -5.63634363e-02 -3.39735914e-01]\n", + " [-9.45516457e-01 -2.48957246e-02 -3.24621060e-01]\n", + " [-9.50903958e-01 5.96672597e-03 -3.09428604e-01]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:fp_optics: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:cartToSphere: vec: [[-0.01302768 0.57841581 -0.81563805]\n", + " [-0.01435962 0.60099343 -0.79912496]\n", + " [-0.01570563 0.62353609 -0.78163679]\n", + " [-0.01705978 0.64592745 -0.76320815]\n", + " [-0.01841625 0.66805701 -0.74388216]\n", + " [-0.01976928 0.6898194 -0.72371153]\n", + " [-0.02111318 0.71111463 -0.702759 ]\n", + " [-0.02244236 0.73184895 -0.68109725]\n", + " [-0.01302768 0.57841581 -0.81563805]\n", + " [-0.04200926 0.57687944 -0.81574833]\n", + " [-0.0708668 0.57494513 -0.81511716]\n", + " [-0.09948816 0.57262967 -0.8137551 ]\n", + " [-0.12776241 0.56995752 -0.81168047]\n", + " [-0.15557976 0.5669613 -0.80891892]\n", + " [-0.1828309 0.56368234 -0.805503 ]\n", + " [-0.20940584 0.56017143 -0.80147187]\n", + " [-0.02244236 0.73184895 -0.68109725]\n", + " [-0.05241514 0.73012877 -0.68129629]\n", + " [-0.08224415 0.72776094 -0.68088172]\n", + " [-0.11181249 0.72476415 -0.67986387]\n", + " [-0.14100643 0.7211653 -0.67826086]\n", + " [-0.16971618 0.71699905 -0.67609821]\n", + " [-0.19783583 0.71230751 -0.67340849]\n", + " [-0.22526223 0.7071401 -0.67023116]\n", + " [-0.20940584 0.56017143 -0.80147187]\n", + " [-0.21243172 0.5816094 -0.7852409 ]\n", + " [-0.21521464 0.60308849 -0.76809305]\n", + " [-0.21774916 0.62448686 -0.75006764]\n", + " [-0.22002853 0.64569197 -0.73121087]\n", + " [-0.22204535 0.66659934 -0.71157655]\n", + " [-0.22379219 0.68711196 -0.69122659]\n", + " [-0.22526223 0.7071401 -0.67023116]\n", + " [-0.01370588 0.58825171 -0.80856173]\n", + " [-0.0153495 0.61591433 -0.78766359]\n", + " [-0.01700817 0.64340814 -0.76533436]\n", + " [-0.01867112 0.67052735 -0.74164983]\n", + " [-0.02032773 0.69707803 -0.71670706]\n", + " [-0.02196757 0.72287863 -0.69062574]\n", + " [-0.02567671 0.57787273 -0.81572288]\n", + " [-0.06112839 0.5757202 -0.81535855]\n", + " [-0.09628218 0.57298559 -0.8138902 ]\n", + " [-0.13093333 0.56971074 -0.81134834]\n", + " [-0.16487965 0.56595576 -0.80778016]\n", + " [-0.19791971 0.56180062 -0.80324832]\n", + " [-0.03551618 0.73110959 -0.68133499]\n", + " [-0.07216893 0.72856401 -0.68116527]\n", + " [-0.1084893 0.72506344 -0.68008314]\n", + " [-0.14426653 0.72065399 -0.67811872]\n", + " [-0.17929849 0.71539943 -0.67531897]\n", + " [-0.21339145 0.70938031 -0.67174673]\n", + " [-0.21066476 0.569518 -0.79452477]\n", + " [-0.21420956 0.59583727 -0.77401048]\n", + " [-0.21738436 0.62209605 -0.75215726]\n", + " [-0.22017726 0.64808338 -0.72904726]\n", + " [-0.2225747 0.67360687 -0.70477961]\n", + " [-0.22456323 0.69849091 -0.67947171]\n", + " [-0.0131314 0.57848838 -0.81558492]\n", + " [-0.0131314 0.57848838 -0.81558492]\n", + " [-0.22516519 0.70709095 -0.67031561]\n", + " [-0.22516519 0.70709095 -0.67031561]\n", + " [-0.02630048 0.58763164 -0.80870102]\n", + " [-0.06189054 0.58544774 -0.8083443 ]\n", + " [-0.09718033 0.58265386 -0.80688937]\n", + " [-0.13196482 0.57929165 -0.80436712]\n", + " [-0.16604211 0.57542073 -0.8008252 ]\n", + " [-0.19921178 0.57112026 -0.79632676]\n", + " [-0.0280681 0.61528271 -0.78780668]\n", + " [-0.06400587 0.61301504 -0.78747433]\n", + " [-0.09963634 0.61006206 -0.78606417]\n", + " [-0.13475328 0.6064654 -0.78360786]\n", + " [-0.16915529 0.60228403 -0.78015411]\n", + " [-0.20264437 0.5975955 -0.77576728]\n", + " [-0.02982726 0.64276638 -0.76548136]\n", + " [-0.06604615 0.64042213 -0.76517802]\n", + " [-0.1019507 0.63732222 -0.76382357]\n", + " [-0.13733322 0.63350887 -0.76145 ]\n", + " [-0.1719923 0.6290414 -0.75810656]\n", + " [-0.20573176 0.62399689 -0.75385829]\n", + " [-0.0315665 0.66987691 -0.74180083]\n", + " [-0.06799816 0.6674633 -0.74153152]\n", + " [-0.10410892 0.66422842 -0.74024451]\n", + " [-0.13968968 0.66021554 -0.7379717 ]\n", + " [-0.17453877 0.65548503 -0.73476227]\n", + " [-0.20846125 0.65011444 -0.73068127]\n", + " [-0.0332745 0.69642043 -0.71686219]\n", + " [-0.06984872 0.6939451 -0.71663196]\n", + " [-0.10609634 0.69058788 -0.71542431]\n", + " [-0.14180722 0.68639331 -0.7132706 ]\n", + " [-0.17677939 0.68142314 -0.71021937]\n", + " [-0.21081865 0.67575606 -0.70633508]\n", + " [-0.03494029 0.72221546 -0.69078506]\n", + " [-0.07158533 0.71968666 -0.69059876]\n", + " [-0.10789928 0.71622089 -0.68948197]\n", + " [-0.14367142 0.71186386 -0.68746518]\n", + " [-0.17869962 0.70667886 -0.68459582]\n", + " [-0.21279009 0.70074594 -0.68093722]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:fp_optics: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:cartToSphere: vec: [[-0.71943141 0.64184354 -0.26543423]\n", + " [-0.70751076 0.64415696 -0.29067223]\n", + " [-0.69478175 0.6459952 -0.31617799]\n", + " [-0.68126396 0.64732275 -0.3418372 ]\n", + " [-0.66698414 0.64811068 -0.36753871]\n", + " [-0.6519773 0.64833677 -0.39317303]\n", + " [-0.63628736 0.64798588 -0.41863194]\n", + " [-0.61996728 0.64705028 -0.44380908]\n", + " [-0.71943141 0.64184354 -0.26543423]\n", + " [-0.70294853 0.66367478 -0.25573259]\n", + " [-0.68588867 0.68488793 -0.24593748]\n", + " [-0.6683257 0.70540835 -0.23609282]\n", + " [-0.65033994 0.72516918 -0.22624681]\n", + " [-0.63201793 0.74411134 -0.21645243]\n", + " [-0.61345248 0.76218303 -0.20676818]\n", + " [-0.59474311 0.77933925 -0.19725865]\n", + " [-0.61996728 0.64705028 -0.44380908]\n", + " [-0.60297642 0.66961606 -0.43362861]\n", + " [-0.58549891 0.69150704 -0.42309459]\n", + " [-0.56761166 0.71264534 -0.41225431]\n", + " [-0.54939655 0.73296318 -0.40115883]\n", + " [-0.53093973 0.75240291 -0.38986261]\n", + " [-0.51233162 0.77091631 -0.37842352]\n", + " [-0.49366776 0.78846312 -0.36690332]\n", + " [-0.59474311 0.77933925 -0.19725865]\n", + " [-0.58197703 0.78262986 -0.22089192]\n", + " [-0.56860315 0.78530626 -0.24491742]\n", + " [-0.5546442 0.78733301 -0.26921467]\n", + " [-0.54013016 0.78868105 -0.29366921]\n", + " [-0.52509838 0.78932789 -0.3181716 ]\n", + " [-0.50959361 0.78925797 -0.34261671]\n", + " [-0.49366776 0.78846312 -0.36690332]\n", + " [-0.71427882 0.64298399 -0.27636454]\n", + " [-0.69912256 0.64550534 -0.30749066]\n", + " [-0.68277094 0.6472768 -0.33890499]\n", + " [-0.66527018 0.64824237 -0.3704017 ]\n", + " [-0.6466848 0.6483612 -0.40177919]\n", + " [-0.62709944 0.64760848 -0.43283894]\n", + " [-0.71228061 0.65144191 -0.26130398]\n", + " [-0.69168162 0.6777932 -0.24934495]\n", + " [-0.67028869 0.70314098 -0.23728851]\n", + " [-0.64824702 0.72735894 -0.22522161]\n", + " [-0.62571594 0.75033823 -0.21324189]\n", + " [-0.60286908 0.77198636 -0.20145952]\n", + " [-0.61268054 0.65697082 -0.4393312 ]\n", + " [-0.59151981 0.68418391 -0.4266107 ]\n", + " [-0.56970383 0.71030497 -0.41340585]\n", + " [-0.54738133 0.73520496 -0.39980915]\n", + " [-0.5247109 0.75877769 -0.38592083]\n", + " [-0.50186107 0.78093776 -0.371849 ]\n", + " [-0.58931722 0.78078975 -0.20753934]\n", + " [-0.57326021 0.78441412 -0.23678518]\n", + " [-0.5563119 0.78708006 -0.26649964]\n", + " [-0.53852441 0.78873142 -0.29646956]\n", + " [-0.51996654 0.78932684 -0.32649339]\n", + " [-0.50072366 0.78884072 -0.35637919]\n", + " [-0.71933673 0.64192783 -0.26548697]\n", + " [-0.71933673 0.64192783 -0.26548697]\n", + " [-0.49378668 0.78840876 -0.3668601 ]\n", + " [-0.49378668 0.78840876 -0.3668601 ]\n", + " [-0.70719545 0.65253496 -0.27216304]\n", + " [-0.68652116 0.67898393 -0.26013367]\n", + " [-0.66505615 0.70441892 -0.24798045]\n", + " [-0.64294606 0.72871353 -0.23579008]\n", + " [-0.62035035 0.75175917 -0.22365953]\n", + " [-0.59744245 0.77346391 -0.21169814]\n", + " [-0.69197094 0.65514921 -0.30324204]\n", + " [-0.6711111 0.68184417 -0.29102992]\n", + " [-0.64947347 0.7074986 -0.2786215 ]\n", + " [-0.62720501 0.73198562 -0.26610321]\n", + " [-0.60446562 0.75519744 -0.2535708 ]\n", + " [-0.58142809 0.77704379 -0.24113136]\n", + " [-0.67556452 0.65699613 -0.33461719]\n", + " [-0.65456116 0.68389104 -0.32224639]\n", + " [-0.63279864 0.70972373 -0.3096096 ]\n", + " [-0.6104252 0.73436672 -0.29679385]\n", + " [-0.5876011 0.75771288 -0.28389459]\n", + " [-0.56449839 0.77967368 -0.27101757]\n", + " [-0.65802285 0.65801921 -0.36608285]\n", + " [-0.63691937 0.68506684 -0.35357761]\n", + " [-0.61508122 0.71103599 -0.34073877]\n", + " [-0.5926575 0.73579856 -0.32765466]\n", + " [-0.56980852 0.75924792 -0.31442145]\n", + " [-0.54670546 0.78129705 -0.30114458]\n", + " [-0.6394109 0.65817701 -0.3974377 ]\n", + " [-0.61825212 0.68532874 -0.38482311]\n", + " [-0.59638883 0.71139177 -0.37180924]\n", + " [-0.57397044 0.73623748 -0.35848613]\n", + " [-0.55115686 0.75975956 -0.34495148]\n", + " [-0.52811821 0.78187206 -0.33131141]\n", + " [-0.6198137 0.65744419 -0.42848352]\n", + " [-0.59864536 0.68465018 -0.41578584]\n", + " [-0.57680803 0.71076381 -0.40262551]\n", + " [-0.55445075 0.73565611 -0.3890944 ]\n", + " [-0.53173254 0.75922089 -0.37529208]\n", + " [-0.50882232 0.78137272 -0.36132607]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:fp_optics: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:cartToSphere: vec: [[ 0.44032684 -0.5363262 0.72004617]\n", + " [ 0.4180218 -0.53194222 0.73640699]\n", + " [ 0.39493466 -0.527042 0.75249807]\n", + " [ 0.37113902 -0.52162165 0.76822307]\n", + " [ 0.3467126 -0.51568268 0.7834933 ]\n", + " [ 0.32173881 -0.5092326 0.79822697]\n", + " [ 0.29630759 -0.50228522 0.81234929]\n", + " [ 0.2705151 -0.4948609 0.82579312]\n", + " [ 0.44032684 -0.5363262 0.72004617]\n", + " [ 0.45245011 -0.51198049 0.7301814 ]\n", + " [ 0.46407665 -0.48726974 0.7397304 ]\n", + " [ 0.47516417 -0.46229618 0.74866631]\n", + " [ 0.48567407 -0.43716677 0.75697154]\n", + " [ 0.49557086 -0.41199314 0.76463794]\n", + " [ 0.50482145 -0.38689202 0.77166694]\n", + " [ 0.51339458 -0.36198589 0.77806955]\n", + " [ 0.2705151 -0.4948609 0.82579312]\n", + " [ 0.28317809 -0.4696952 0.83617976]\n", + " [ 0.29554334 -0.44418998 0.8457833 ]\n", + " [ 0.30756563 -0.41845216 0.85457661]\n", + " [ 0.31920433 -0.3925912 0.86254318]\n", + " [ 0.33042349 -0.3667184 0.86967691]\n", + " [ 0.34119141 -0.34094701 0.87598148]\n", + " [ 0.35147987 -0.31539366 0.88146965]\n", + " [ 0.51339458 -0.36198589 0.77806955]\n", + " [ 0.49245443 -0.35608198 0.79416261]\n", + " [ 0.47064761 -0.34992166 0.80996646]\n", + " [ 0.44805359 -0.34350215 0.82538128]\n", + " [ 0.4247538 -0.33682698 0.84031649]\n", + " [ 0.40083241 -0.32990589 0.85469028]\n", + " [ 0.37637719 -0.32275446 0.86842948]\n", + " [ 0.35147987 -0.31539366 0.88146965]\n", + " [ 0.43074495 -0.53439493 0.72724195]\n", + " [ 0.40287319 -0.5286747 0.74712533]\n", + " [ 0.3738994 -0.52217476 0.76650686]\n", + " [ 0.34396481 -0.51489566 0.78522014]\n", + " [ 0.31322312 -0.50685124 0.80311463]\n", + " [ 0.28184249 -0.49806966 0.82005574]\n", + " [ 0.44559616 -0.52574815 0.72459158]\n", + " [ 0.46012647 -0.49565101 0.73662318]\n", + " [ 0.47386835 -0.46510661 0.74774636]\n", + " [ 0.4867492 -0.43430991 0.75792487]\n", + " [ 0.4987036 -0.4034665 0.76714373]\n", + " [ 0.50967143 -0.37279358 0.77540956]\n", + " [ 0.27615843 -0.48396319 0.83037109]\n", + " [ 0.2914837 -0.45287849 0.84257838]\n", + " [ 0.30631616 -0.42138966 0.85358137]\n", + " [ 0.3205791 -0.38969725 0.86334529]\n", + " [ 0.33420628 -0.35800613 0.8718588 ]\n", + " [ 0.34714083 -0.32652612 0.87913249]\n", + " [ 0.50434763 -0.3595279 0.78509436]\n", + " [ 0.47808938 -0.35212119 0.80463732]\n", + " [ 0.45060817 -0.34432566 0.82364562]\n", + " [ 0.42205305 -0.33614522 0.8419487 ]\n", + " [ 0.3925791 -0.32759773 0.85939594]\n", + " [ 0.36234953 -0.31871414 0.87585622]\n", + " [ 0.44029423 -0.53622955 0.72013808]\n", + " [ 0.44029423 -0.53622955 0.72013808]\n", + " [ 0.35153132 -0.31550604 0.88140891]\n", + " [ 0.35153132 -0.31550604 0.88140891]\n", + " [ 0.43606918 -0.52387233 0.73171132]\n", + " [ 0.45067303 -0.4936572 0.74377173]\n", + " [ 0.46450373 -0.4629934 0.75489959]\n", + " [ 0.47748901 -0.43207625 0.7650584 ]\n", + " [ 0.48956412 -0.40111118 0.77423304]\n", + " [ 0.50066978 -0.3703148 0.78243001]\n", + " [ 0.4082541 -0.51804856 0.75163441]\n", + " [ 0.42304897 -0.48753843 0.76376426]\n", + " [ 0.4371154 -0.45657885 0.77489734]\n", + " [ 0.45038156 -0.42536639 0.78499674]\n", + " [ 0.46278425 -0.39410632 0.79404719]\n", + " [ 0.47426648 -0.36301353 0.80205516]\n", + " [ 0.37932728 -0.51146485 0.77104768]\n", + " [ 0.39428789 -0.48071869 0.78322832]\n", + " [ 0.40856764 -0.44952681 0.79435391]\n", + " [ 0.42209447 -0.4180873 0.80438751]\n", + " [ 0.43480588 -0.38660545 0.81331425]\n", + " [ 0.44664651 -0.35529458 0.82114107]\n", + " [ 0.34942971 -0.50412234 0.78978449]\n", + " [ 0.3645306 -0.4732008 0.80199653]\n", + " [ 0.37900195 -0.44184154 0.81310121]\n", + " [ 0.39277078 -0.41024399 0.82306195]\n", + " [ 0.40577434 -0.37861356 0.83186475]\n", + " [ 0.41795794 -0.34716222 0.83951745]\n", + " [ 0.31871476 -0.49603555 0.80769403]\n", + " [ 0.33392965 -0.46500121 0.8199176 ]\n", + " [ 0.34857046 -0.43354104 0.83098785]\n", + " [ 0.36256277 -0.40185542 0.84086887]\n", + " [ 0.37584273 -0.37014968 0.8495478 ]\n", + " [ 0.38835527 -0.33863474 0.85703366]\n", + " [ 0.28735025 -0.48723322 0.82464151]\n", + " [ 0.30265174 -0.45615022 0.83685656]\n", + " [ 0.31743858 -0.42465684 0.84787931]\n", + " [ 0.33163466 -0.39295373 0.85767466]\n", + " [ 0.34517445 -0.36124592 0.86623091]\n", + " [ 0.35800164 -0.32974348 0.87355828]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:fp_optics: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:cartToSphere: vec: [[ 0.97702124 0.21210019 -0.02104786]\n", + " [ 0.97377643 0.22263773 -0.04681786]\n", + " [ 0.96967912 0.23320483 -0.07306107]\n", + " [ 0.96470337 0.24374882 -0.09966903]\n", + " [ 0.95883302 0.25422022 -0.12653586]\n", + " [ 0.95206214 0.26457184 -0.15355592]\n", + " [ 0.94439595 0.27475807 -0.18062196]\n", + " [ 0.93585147 0.28473494 -0.20762474]\n", + " [ 0.97702124 0.21210019 -0.02104786]\n", + " [ 0.98203562 0.18587985 -0.03247643]\n", + " [ 0.98619979 0.15962439 -0.04393201]\n", + " [ 0.98950878 0.13343992 -0.05537301]\n", + " [ 0.99196817 0.10743479 -0.06676008]\n", + " [ 0.99359407 0.08171932 -0.07805628]\n", + " [ 0.99441293 0.05640484 -0.08922677]\n", + " [ 0.99446149 0.03160137 -0.10023825]\n", + " [ 0.93585147 0.28473494 -0.20762474]\n", + " [ 0.94104731 0.25755617 -0.21930521]\n", + " [ 0.94538077 0.23023536 -0.23075285]\n", + " [ 0.94884685 0.20288385 -0.24192517]\n", + " [ 0.95145192 0.17561195 -0.25278388]\n", + " [ 0.95321303 0.14852894 -0.26329466]\n", + " [ 0.95415731 0.12174486 -0.27342643]\n", + " [ 0.95432169 0.09537287 -0.28315036]\n", + " [ 0.99446149 0.03160137 -0.10023825]\n", + " [ 0.99124949 0.04011062 -0.12576004]\n", + " [ 0.98722164 0.04889775 -0.15166558]\n", + " [ 0.98235253 0.05791574 -0.1778462 ]\n", + " [ 0.97662719 0.06711703 -0.20419265]\n", + " [ 0.97004112 0.07645562 -0.23059655]\n", + " [ 0.96260039 0.08588793 -0.25695089]\n", + " [ 0.95432169 0.09537287 -0.28315036]\n", + " [ 0.9757279 0.2165976 -0.03225753]\n", + " [ 0.97118171 0.22953825 -0.06417377]\n", + " [ 0.96532817 0.24247076 -0.09669258]\n", + " [ 0.95813343 0.25530274 -0.12961806]\n", + " [ 0.94958672 0.26794722 -0.16275549]\n", + " [ 0.93970251 0.28032092 -0.19590653]\n", + " [ 0.9793017 0.20071459 -0.02611203]\n", + " [ 0.98487689 0.16854101 -0.04014268]\n", + " [ 0.98916885 0.1364198 -0.05417214]\n", + " [ 0.99218351 0.10454949 -0.06812706]\n", + " [ 0.99395045 0.07313307 -0.08193935]\n", + " [ 0.99452269 0.04237518 -0.09554558]\n", + " [ 0.93825279 0.2728758 -0.21265112]\n", + " [ 0.94404205 0.23945603 -0.22681583]\n", + " [ 0.94852969 0.20593368 -0.24058836]\n", + " [ 0.95172271 0.17251229 -0.25389641]\n", + " [ 0.95365247 0.13939329 -0.26667673]\n", + " [ 0.95437297 0.10678044 -0.27887305]\n", + " [ 0.99316046 0.03535873 -0.1112747 ]\n", + " [ 0.98867905 0.04598168 -0.14282658]\n", + " [ 0.98294572 0.05697536 -0.17484715]\n", + " [ 0.97592857 0.06825223 -0.20713539]\n", + " [ 0.96761933 0.07972773 -0.23949181]\n", + " [ 0.95803358 0.09132266 -0.27172012]\n", + " [ 0.97703014 0.21204662 -0.02117404]\n", + " [ 0.97703014 0.21204662 -0.02117404]\n", + " [ 0.95435212 0.09542974 -0.28302862]\n", + " [ 0.95435212 0.09542974 -0.28302862]\n", + " [ 0.97800809 0.20522028 -0.03721302]\n", + " [ 0.98360193 0.17291023 -0.05127662]\n", + " [ 0.98790396 0.14064077 -0.06531412]\n", + " [ 0.99092021 0.1086107 -0.0792519 ]\n", + " [ 0.99268036 0.07702344 -0.09302202]\n", + " [ 0.99323749 0.04608532 -0.10656184]\n", + " [ 0.97348378 0.21804693 -0.06917275]\n", + " [ 0.97912651 0.18539201 -0.08331311]\n", + " [ 0.9834582 0.15274644 -0.0973576 ]\n", + " [ 0.98648528 0.12030933 -0.1112315 ]\n", + " [ 0.98823794 0.08828404 -0.12486676]\n", + " [ 0.98876944 0.05687885 -0.13820202]\n", + " [ 0.96764828 0.23088665 -0.10172596]\n", + " [ 0.97333416 0.19794865 -0.11591787]\n", + " [ 0.97769731 0.16499173 -0.12994502]\n", + " [ 0.98074474 0.13221549 -0.14373178]\n", + " [ 0.98250729 0.09982222 -0.15720989]\n", + " [ 0.98303859 0.06801951 -0.17031875]\n", + " [ 0.96046768 0.24364748 -0.13467644]\n", + " [ 0.96619108 0.21048894 -0.14889328]\n", + " [ 0.97058798 0.1772854 -0.16287684]\n", + " [ 0.97366585 0.14423745 -0.17655133]\n", + " [ 0.97545617 0.11154637 -0.18984905]\n", + " [ 0.97601297 0.07941803 -0.20271027]\n", + " [ 0.95193109 0.25624321 -0.16782912]\n", + " [ 0.95768641 0.22292845 -0.18204299]\n", + " [ 0.96211987 0.18954385 -0.19595533]\n", + " [ 0.96523906 0.15629131 -0.20949127]\n", + " [ 0.96707576 0.12337174 -0.22258458]\n", + " [ 0.96768423 0.09098946 -0.23517686]\n", + " [ 0.94205284 0.2685914 -0.20098534]\n", + " [ 0.94783431 0.235187 -0.21516783]\n", + " [ 0.95230732 0.20168849 -0.22898147]\n", + " [ 0.95547912 0.16829906 -0.2423532 ]\n", + " [ 0.95738126 0.13521987 -0.25521895]\n", + " [ 0.95806788 0.10265467 -0.2675219 ]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:fp_optics: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:cartToSphere: vec: [[ 0.14687652 0.52606618 -0.83766441]\n", + " [ 0.12777467 0.51017535 -0.85052616]\n", + " [ 0.10818682 0.49355521 -0.86295937]\n", + " [ 0.08818575 0.47624976 -0.87487681]\n", + " [ 0.06784519 0.45830792 -0.88620025]\n", + " [ 0.04724103 0.43978473 -0.8968599 ]\n", + " [ 0.02645197 0.42074213 -0.90679455]\n", + " [ 0.00555939 0.40124895 -0.91595217]\n", + " [ 0.14687652 0.52606618 -0.83766441]\n", + " [ 0.16758757 0.50726275 -0.84533953]\n", + " [ 0.18802524 0.48803839 -0.85232918]\n", + " [ 0.20810979 0.46847245 -0.85861742]\n", + " [ 0.22776238 0.44864831 -0.86419847]\n", + " [ 0.24690482 0.4286531 -0.86907682]\n", + " [ 0.26545905 0.40857767 -0.8732673 ]\n", + " [ 0.28334678 0.38851673 -0.87679493]\n", + " [ 0.00555939 0.40124895 -0.91595217]\n", + " [ 0.02709233 0.38187244 -0.92381787]\n", + " [ 0.0485301 0.36221342 -0.93083096]\n", + " [ 0.06978851 0.34235426 -0.93697552]\n", + " [ 0.09078601 0.32237954 -0.94224696]\n", + " [ 0.11144399 0.3023755 -0.94665162]\n", + " [ 0.13168626 0.28243027 -0.95020623]\n", + " [ 0.15143784 0.26263487 -0.95293731]\n", + " [ 0.28334678 0.38851673 -0.87679493]\n", + " [ 0.26612675 0.37185309 -0.88932662]\n", + " [ 0.24823892 0.354662 -0.90143902]\n", + " [ 0.22975923 0.33699117 -0.91304307]\n", + " [ 0.21076332 0.31889308 -0.92405954]\n", + " [ 0.19132681 0.30042519 -0.93441894]\n", + " [ 0.17152592 0.28165002 -0.9440615 ]\n", + " [ 0.15143784 0.26263487 -0.95293731]\n", + " [ 0.13868395 0.51916629 -0.84334638]\n", + " [ 0.11493739 0.49919405 -0.85883333]\n", + " [ 0.090533 0.47816971 -0.87358886]\n", + " [ 0.06560603 0.45618124 -0.88746522]\n", + " [ 0.04029627 0.43333007 -0.90033397]\n", + " [ 0.01474975 0.4097331 -0.9120862 ]\n", + " [ 0.15587096 0.51787116 -0.84113834]\n", + " [ 0.18108157 0.49453218 -0.8500867 ]\n", + " [ 0.2058023 0.4706394 -0.85798833]\n", + " [ 0.22988766 0.44634467 -0.86482836]\n", + " [ 0.25319364 0.42180841 -0.8706151 ]\n", + " [ 0.27557643 0.39719944 -0.87538005]\n", + " [ 0.01502557 0.39290795 -0.91945504]\n", + " [ 0.04136289 0.36895981 -0.92852451]\n", + " [ 0.06747321 0.34466875 -0.93629633]\n", + " [ 0.09320526 0.32018962 -0.94275733]\n", + " [ 0.11841428 0.29568122 -0.94791913]\n", + " [ 0.14296058 0.27130692 -0.95181659]\n", + " [ 0.27586528 0.3813876 -0.88229351]\n", + " [ 0.25430023 0.36060433 -0.89738281]\n", + " [ 0.23180774 0.33907553 -0.91175269]\n", + " [ 0.20852715 0.3168958 -0.9252532 ]\n", + " [ 0.18459777 0.29417098 -0.93775642]\n", + " [ 0.16016031 0.27101813 -0.94915639]\n", + " [ 0.14688331 0.52594962 -0.83773641]\n", + " [ 0.14688331 0.52594962 -0.83773641]\n", + " [ 0.15144031 0.26276755 -0.95290033]\n", + " [ 0.15144031 0.26276755 -0.95290033]\n", + " [ 0.14770836 0.51105676 -0.84676043]\n", + " [ 0.17303373 0.48763575 -0.85572817]\n", + " [ 0.19788477 0.46367022 -0.86362697]\n", + " [ 0.22211607 0.43931247 -0.87044184]\n", + " [ 0.24558406 0.4147231 -0.87618104]\n", + " [ 0.26814548 0.39007085 -0.88087612]\n", + " [ 0.12405472 0.49100667 -0.86227772]\n", + " [ 0.14967361 0.46738372 -0.8712923 ]\n", + " [ 0.17486198 0.44324518 -0.87917973]\n", + " [ 0.19947432 0.41874469 -0.88592487]\n", + " [ 0.2233682 0.3940433 -0.89153605]\n", + " [ 0.2464022 0.36930934 -0.89604496]\n", + " [ 0.09972654 0.46991973 -0.87705762]\n", + " [ 0.12559211 0.44614081 -0.88610665]\n", + " [ 0.15107138 0.42187931 -0.89397723]\n", + " [ 0.1760181 0.39729009 -0.90065432]\n", + " [ 0.20029045 0.37253444 -0.90614669]\n", + " [ 0.22374867 0.34777996 -0.91048648]\n", + " [ 0.07485865 0.44788434 -0.89095219]\n", + " [ 0.10092334 0.4239969 -0.90002284]\n", + " [ 0.12664717 0.39966409 -0.90787065]\n", + " [ 0.15188263 0.37504155 -0.914481 ]\n", + " [ 0.17648771 0.35029039 -0.91986343]\n", + " [ 0.20032368 0.32557716 -0.92405083]\n", + " [ 0.04959027 0.42500245 -0.90383279]\n", + " [ 0.07580515 0.40105541 -0.9129119 ]\n", + " [ 0.10172637 0.37670421 -0.92073106]\n", + " [ 0.12720479 0.35210462 -0.92727627]\n", + " [ 0.15209755 0.32741709 -0.93255798]\n", + " [ 0.17626604 0.30280686 -0.93661 ]\n", + " [ 0.02406694 0.40139139 -0.91559037]\n", + " [ 0.05038144 0.37743468 -0.92466468]\n", + " [ 0.07645128 0.35311854 -0.93244973]\n", + " [ 0.10212571 0.32859817 -0.93893215]\n", + " [ 0.12726048 0.30403288 -0.94412329]\n", + " [ 0.15171633 0.27958649 -0.94805778]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:cartToSphere: vec: [[ 0.62106439 -0.35625149 -0.69811453]\n", + " [ 0.61075669 -0.33756911 -0.71625649]\n", + " [ 0.59975105 -0.31824151 -0.73418051]\n", + " [ 0.58806442 -0.29833087 -0.75178383]\n", + " [ 0.57571994 -0.27790268 -0.76897116]\n", + " [ 0.56274791 -0.25702707 -0.78565379]\n", + " [ 0.5491863 -0.23577948 -0.80174962]\n", + " [ 0.5350809 -0.21424042 -0.81718387]\n", + " [ 0.62106439 -0.35625149 -0.69811453]\n", + " [ 0.60056384 -0.37518821 -0.70608561]\n", + " [ 0.57959072 -0.39368355 -0.71350393]\n", + " [ 0.55823312 -0.41166785 -0.72035086]\n", + " [ 0.5365845 -0.42907467 -0.72661682]\n", + " [ 0.5147435 -0.44584029 -0.73230155]\n", + " [ 0.49281414 -0.46190295 -0.73741433]\n", + " [ 0.47090631 -0.4772021 -0.74197399]\n", + " [ 0.5350809 -0.21424042 -0.81718387]\n", + " [ 0.51392555 -0.2339323 -0.82532188]\n", + " [ 0.49237729 -0.25334793 -0.83269408]\n", + " [ 0.47052796 -0.27241359 -0.839282 ]\n", + " [ 0.44847291 -0.29106036 -0.84507746]\n", + " [ 0.42631027 -0.30922437 -0.85008226]\n", + " [ 0.40414105 -0.3268463 -0.85430762]\n", + " [ 0.38207028 -0.34387021 -0.85777362]\n", + " [ 0.47090631 -0.4772021 -0.74197399]\n", + " [ 0.4594916 -0.46019698 -0.75966191]\n", + " [ 0.447608 -0.44239638 -0.77713095]\n", + " [ 0.43527514 -0.42386753 -0.79427443]\n", + " [ 0.4225191 -0.40467877 -0.81099489]\n", + " [ 0.40937254 -0.38490037 -0.82720362]\n", + " [ 0.39587454 -0.3646054 -0.84282042]\n", + " [ 0.38207028 -0.34387021 -0.85777362]\n", + " [ 0.61658739 -0.34825483 -0.70607263]\n", + " [ 0.60348237 -0.32491669 -0.72817455]\n", + " [ 0.58934535 -0.3006708 -0.74984607]\n", + " [ 0.57421634 -0.27563624 -0.77090872]\n", + " [ 0.55815115 -0.24994221 -0.79119921]\n", + " [ 0.54122296 -0.22372972 -0.81056938]\n", + " [ 0.61215526 -0.3644952 -0.70171874]\n", + " [ 0.58670042 -0.38741696 -0.71111934]\n", + " [ 0.56062273 -0.40960627 -0.71966997]\n", + " [ 0.53409201 -0.43093945 -0.72734924]\n", + " [ 0.50728989 -0.45129912 -0.7341567 ]\n", + " [ 0.48041028 -0.47057213 -0.74011339]\n", + " [ 0.52596021 -0.22292926 -0.82077306]\n", + " [ 0.49975658 -0.2468872 -0.83023495]\n", + " [ 0.47305351 -0.27035631 -0.83852719]\n", + " [ 0.44602514 -0.29320768 -0.84563044]\n", + " [ 0.41885213 -0.31532368 -0.85154793]\n", + " [ 0.39172202 -0.33659659 -0.85630403]\n", + " [ 0.46606308 -0.46983845 -0.74969129]\n", + " [ 0.45175625 -0.44845225 -0.77123723]\n", + " [ 0.43676374 -0.425938 -0.79234731]\n", + " [ 0.42113087 -0.402421 -0.81283831]\n", + " [ 0.40491774 -0.37803074 -0.83254692]\n", + " [ 0.38819886 -0.35290309 -0.85132899]\n", + " [ 0.62096114 -0.3562542 -0.69820499]\n", + " [ 0.62096114 -0.3562542 -0.69820499]\n", + " [ 0.38219314 -0.34388465 -0.8577131 ]\n", + " [ 0.38219314 -0.34388465 -0.8577131 ]\n", + " [ 0.60774731 -0.35652945 -0.70959845]\n", + " [ 0.5821973 -0.37955519 -0.71901611]\n", + " [ 0.55602743 -0.40186112 -0.72755834]\n", + " [ 0.52940798 -0.42332378 -0.73520348]\n", + " [ 0.50252061 -0.44382646 -0.74195088]\n", + " [ 0.47555886 -0.46325695 -0.74782135]\n", + " [ 0.59455649 -0.33327644 -0.73173041]\n", + " [ 0.56877043 -0.35656874 -0.74118752]\n", + " [ 0.54237642 -0.37917803 -0.74970117]\n", + " [ 0.51554611 -0.40098092 -0.75724931]\n", + " [ 0.48846137 -0.4218622 -0.76383099]\n", + " [ 0.46131468 -0.44171231 -0.7694667 ]\n", + " [ 0.58035035 -0.30910044 -0.75342576]\n", + " [ 0.55437885 -0.33261796 -0.7629085 ]\n", + " [ 0.52781636 -0.35549145 -0.77138558]\n", + " [ 0.50083589 -0.3775969 -0.77883503]\n", + " [ 0.47361953 -0.39881981 -0.7852562 ]\n", + " [ 0.44635867 -0.41905264 -0.79066986]\n", + " [ 0.56516941 -0.28412016 -0.77450583]\n", + " [ 0.5390647 -0.30782083 -0.78399973]\n", + " [ 0.51239092 -0.33091956 -0.79243157]\n", + " [ 0.48532216 -0.35329113 -0.79977983]\n", + " [ 0.45804052 -0.37482085 -0.80604479]\n", + " [ 0.43073626 -0.39540226 -0.81124801]\n", + " [ 0.54907005 -0.25846425 -0.79480709]\n", + " [ 0.522886 -0.28230473 -0.80429738]\n", + " [ 0.49615956 -0.30558894 -0.81267527]\n", + " [ 0.46906531 -0.32819009 -0.81992012]\n", + " [ 0.44178502 -0.34999257 -0.82603341]\n", + " [ 0.41450778 -0.37088997 -0.83103786]\n", + " [ 0.53212594 -0.23227324 -0.81418126]\n", + " [ 0.50591763 -0.25620865 -0.82365313]\n", + " [ 0.47919796 -0.27963705 -0.83196901]\n", + " [ 0.45214132 -0.30243005 -0.83910922]\n", + " [ 0.42492874 -0.32447061 -0.84507656]\n", + " [ 0.39774812 -0.34565146 -0.84989499]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:fp_optics: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:fp_optics: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:cartToSphere: vec: [[ 0.04223702 0.20350019 -0.97816344]\n", + " [ 0.04743682 0.17644231 -0.98316726]\n", + " [ 0.05270116 0.14870183 -0.98747676]\n", + " [ 0.05800703 0.12038165 -0.9910315 ]\n", + " [ 0.06333181 0.0915869 -0.99378112]\n", + " [ 0.06865306 0.06242624 -0.99568555]\n", + " [ 0.07394854 0.03301198 -0.99671552]\n", + " [ 0.07919637 0.00345946 -0.99685303]\n", + " [ 0.04223702 0.20350019 -0.97816344]\n", + " [ 0.07071704 0.20840037 -0.97548367]\n", + " [ 0.0990643 0.21301459 -0.97201391]\n", + " [ 0.1271694 0.21732457 -0.96777992]\n", + " [ 0.15492468 0.22131259 -0.9628183 ]\n", + " [ 0.18222428 0.22496094 -0.95717652]\n", + " [ 0.20896356 0.2282511 -0.95091307]\n", + " [ 0.23503805 0.23116284 -0.94409791]\n", + " [ 0.07919637 0.00345946 -0.99685303]\n", + " [ 0.1086285 0.00867754 -0.99404454]\n", + " [ 0.13786851 0.0138685 -0.99035344]\n", + " [ 0.16680254 0.01901196 -0.98580701]\n", + " [ 0.19532051 0.02408806 -0.98044361]\n", + " [ 0.22331683 0.02907761 -0.97431211]\n", + " [ 0.2506903 0.03396202 -0.96747142]\n", + " [ 0.27734306 0.03872309 -0.95999029]\n", + " [ 0.23503805 0.23116284 -0.94409791]\n", + " [ 0.24174984 0.20530024 -0.94837167]\n", + " [ 0.2482784 0.17871241 -0.95206077]\n", + " [ 0.2546002 0.15150941 -0.95510399]\n", + " [ 0.26069128 0.1237999 -0.95745164]\n", + " [ 0.26652761 0.09569249 -0.95906516]\n", + " [ 0.27208569 0.06729668 -0.95991694]\n", + " [ 0.27734306 0.03872309 -0.95999029]\n", + " [ 0.04459259 0.19181064 -0.98041837]\n", + " [ 0.05101277 0.15817668 -0.9860922 ]\n", + " [ 0.0575068 0.12361949 -0.990662 ]\n", + " [ 0.06403285 0.08833159 -0.99403085]\n", + " [ 0.07054964 0.05251302 -0.99612506]\n", + " [ 0.07701635 0.01637185 -0.9968954 ]\n", + " [ 0.0546817 0.20557948 -0.97711155]\n", + " [ 0.08951245 0.21139551 -0.9732931 ]\n", + " [ 0.12403483 0.21676392 -0.96831233]\n", + " [ 0.15804993 0.22165191 -0.96223212]\n", + " [ 0.19136277 0.22602676 -0.95513988]\n", + " [ 0.22378086 0.2298537 -0.94714803]\n", + " [ 0.09202725 0.00583772 -0.99573938]\n", + " [ 0.12798454 0.01221716 -0.99170091]\n", + " [ 0.1635398 0.01853536 -0.9863626 ]\n", + " [ 0.19848875 0.02475555 -0.97979048]\n", + " [ 0.23263697 0.03084239 -0.97207448]\n", + " [ 0.26579966 0.03676184 -0.9633271 ]\n", + " [ 0.23789725 0.21997324 -0.94605321]\n", + " [ 0.24600221 0.187773 -0.95090705]\n", + " [ 0.25380881 0.15459306 -0.95482044]\n", + " [ 0.26127308 0.12063392 -0.95769715]\n", + " [ 0.26835088 0.08609568 -0.95946618]\n", + " [ 0.27499932 0.05118036 -0.96008122]\n", + " [ 0.04235216 0.20342617 -0.97817385]\n", + " [ 0.04235216 0.20342617 -0.97817385]\n", + " [ 0.27723581 0.03880493 -0.96001796]\n", + " [ 0.27723581 0.03880493 -0.96001796]\n", + " [ 0.05697027 0.19397433 -0.97935098]\n", + " [ 0.09193346 0.19983512 -0.97550713]\n", + " [ 0.12658197 0.20527105 -0.97048483]\n", + " [ 0.16071653 0.21024965 -0.96434707]\n", + " [ 0.1941424 0.21473893 -0.95718124]\n", + " [ 0.22666793 0.21870515 -0.94909942]\n", + " [ 0.06351147 0.16036712 -0.98501202]\n", + " [ 0.09880652 0.16634754 -0.98110436]\n", + " [ 0.13376894 0.17196784 -0.97597794]\n", + " [ 0.16819824 0.17719599 -0.96969631]\n", + " [ 0.20190001 0.18200125 -0.96234709]\n", + " [ 0.23468474 0.18635217 -0.9540419 ]\n", + " [ 0.07010341 0.12583272 -0.98957144]\n", + " [ 0.10566509 0.1319226 -0.98561215]\n", + " [ 0.14087648 0.13771832 -0.98040169]\n", + " [ 0.17553569 0.14318748 -0.9740044 ]\n", + " [ 0.20944832 0.14829953 -0.96650848]\n", + " [ 0.24242658 0.15302404 -0.95802557]\n", + " [ 0.07670363 0.09056355 -0.99293242]\n", + " [ 0.11246494 0.09675273 -0.98893405]\n", + " [ 0.147859 0.10271545 -0.98366013]\n", + " [ 0.18268269 0.10841835 -0.97717577]\n", + " [ 0.21674149 0.11383008 -0.96956993]\n", + " [ 0.24984887 0.11892007 -0.9609545 ]\n", + " [ 0.08327012 0.05475951 -0.99502135]\n", + " [ 0.11916226 0.06103735 -0.99099687]\n", + " [ 0.15467133 0.06715813 -0.98568076]\n", + " [ 0.18959336 0.07308716 -0.97913872]\n", + " [ 0.22373375 0.0787916 -0.97146029]\n", + " [ 0.2569069 0.08423982 -0.96275776]\n", + " [ 0.08976154 0.01862854 -0.99578906]\n", + " [ 0.12571433 0.02498361 -0.99175185]\n", + " [ 0.16126974 0.03125231 -0.98641541]\n", + " [ 0.19622345 0.03739842 -0.97984576]\n", + " [ 0.23038097 0.04338727 -0.97213279]\n", + " [ 0.26355734 0.0491855 -0.96338897]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:fp_optics: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:cartToSphere: vec: [[-0.16501773 0.27035691 -0.94851267]\n", + " [-0.14352434 0.28818328 -0.94675824]\n", + " [-0.1214844 0.30613381 -0.94420529]\n", + " [-0.09897983 0.32412398 -0.94082232]\n", + " [-0.07609357 0.34207261 -0.93658747]\n", + " [-0.05291101 0.35990077 -0.93148906]\n", + " [-0.02952072 0.37753144 -0.92552609]\n", + " [-0.00601425 0.39488989 -0.91870877]\n", + " [-0.16501773 0.27035691 -0.94851267]\n", + " [-0.18292242 0.29111857 -0.9390364 ]\n", + " [-0.20054132 0.31163432 -0.92879881]\n", + " [-0.21780559 0.3318294 -0.91785074]\n", + " [-0.23464731 0.35163382 -0.90625289]\n", + " [-0.25099906 0.37098263 -0.8940757 ]\n", + " [-0.26679348 0.38981584 -0.88139937]\n", + " [-0.28196291 0.40807825 -0.86831392]\n", + " [-0.00601425 0.39488989 -0.91870877]\n", + " [-0.02465593 0.41627549 -0.90890417]\n", + " [-0.04321358 0.43722125 -0.89831518]\n", + " [-0.06161436 0.45764987 -0.88699508]\n", + " [-0.0797877 0.47749109 -0.87500639]\n", + " [-0.09766556 0.49668182 -0.8624202 ]\n", + " [-0.11518204 0.51516555 -0.84931593]\n", + " [-0.13227223 0.53289106 -0.83578178]\n", + " [-0.28196291 0.40807825 -0.86831392]\n", + " [-0.26226057 0.42641134 -0.86567475]\n", + " [-0.24185495 0.44471713 -0.86239948]\n", + " [-0.22083164 0.46290764 -0.85845787]\n", + " [-0.19927592 0.48089878 -0.85382988]\n", + " [-0.17727322 0.49861017 -0.84850581]\n", + " [-0.15490962 0.51596514 -0.84248619]\n", + " [-0.13227223 0.53289106 -0.83578178]\n", + " [-0.15578087 0.27818003 -0.94781232]\n", + " [-0.12906127 0.30012313 -0.94512925]\n", + " [-0.10160199 0.32216819 -0.94121448]\n", + " [-0.07355519 0.34416441 -0.93602377]\n", + " [-0.04507818 0.36596646 -0.92953564]\n", + " [-0.01633527 0.38743345 -0.92175294]\n", + " [-0.17278272 0.27949526 -0.94447262]\n", + " [-0.19454403 0.3047857 -0.93234023]\n", + " [-0.21580768 0.32963182 -0.91911365]\n", + " [-0.23644825 0.35390278 -0.90490057]\n", + " [-0.25634159 0.37747897 -0.88983067]\n", + " [-0.27536355 0.40025197 -0.87405565]\n", + " [-0.01422814 0.40420414 -0.91455813]\n", + " [-0.03702797 0.43012869 -0.90200789]\n", + " [-0.05962883 0.45531515 -0.88833131]\n", + " [-0.08189982 0.4796312 -0.8736397 ]\n", + " [-0.10371566 0.50296066 -0.85806389]\n", + " [-0.1249555 0.52520171 -0.8417537 ]\n", + " [-0.2734133 0.41600773 -0.86728469]\n", + " [-0.24878087 0.43846992 -0.86362736]\n", + " [-0.22317725 0.46080333 -0.85898324]\n", + " [-0.19675957 0.48285156 -0.85331122]\n", + " [-0.16968517 0.50446663 -0.84659339]\n", + " [-0.14211294 0.52550904 -0.83883501]\n", + " [-0.16500689 0.27048889 -0.94847693]\n", + " [-0.16500689 0.27048889 -0.94847693]\n", + " [-0.13229237 0.53277472 -0.83585276]\n", + " [-0.13229237 0.53277472 -0.83585276]\n", + " [-0.16358881 0.28722059 -0.94379184]\n", + " [-0.18545317 0.31259427 -0.93160718]\n", + " [-0.20683754 0.33750304 -0.91831908]\n", + " [-0.22761662 0.3618157 -0.90403544]\n", + " [-0.24766673 0.38541253 -0.88888603]\n", + " [-0.26686426 0.40818527 -0.87302248]\n", + " [-0.13695054 0.30924946 -0.94106818]\n", + " [-0.1590795 0.33482869 -0.92875372]\n", + " [-0.18077836 0.35988636 -0.9153147 ]\n", + " [-0.20192189 0.38429022 -0.90085991]\n", + " [-0.22238759 0.40792043 -0.88551944]\n", + " [-0.24205359 0.43066935 -0.86944464]\n", + " [-0.10955812 0.33136364 -0.93712067]\n", + " [-0.13191135 0.35710277 -0.92470374]\n", + " [-0.15388491 0.38226596 -0.91114882]\n", + " [-0.17535296 0.40672016 -0.8965657 ]\n", + " [-0.1961936 0.43034574 -0.88108491]\n", + " [-0.21628652 0.45303607 -0.86485748]\n", + " [-0.08156338 0.35341187 -0.93190529]\n", + " [-0.10410005 0.37926379 -0.91941403]\n", + " [-0.1263088 0.40448777 -0.90577908]\n", + " [-0.14806262 0.42895034 -0.89111114]\n", + " [-0.16923939 0.45253255 -0.87554116]\n", + " [-0.18971963 0.47512914 -0.85921986]\n", + " [-0.05312315 0.37524823 -0.92540083]\n", + " [-0.07580121 0.40116448 -0.9128643 ]\n", + " [-0.09820497 0.42640355 -0.89918619]\n", + " [-0.1202058 0.45083213 -0.88447779]\n", + " [-0.14168057 0.47433231 -0.86887023]\n", + " [-0.16250977 0.49680037 -0.85251391]\n", + " [-0.02440128 0.3967314 -0.91761036]\n", + " [-0.04717722 0.42266255 -0.90505838]\n", + " [-0.06973428 0.44787078 -0.89137472]\n", + " [-0.09194212 0.47222345 -0.87667078]\n", + " [-0.11367607 0.49560388 -0.86107755]\n", + " [-0.13481574 0.51790986 -0.84474499]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:fp_optics: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:cartToSphere: vec: [[0.88888469 0.36820183 0.27260122]\n", + " [0.88595528 0.35574412 0.29753885]\n", + " [0.88225113 0.34275077 0.32273031]\n", + " [0.8777485 0.32925901 0.34806045]\n", + " [0.87243255 0.31530866 0.37341921]\n", + " [0.86629779 0.30094338 0.3986994 ]\n", + " [0.85934888 0.28621184 0.42379511]\n", + " [0.8516012 0.27116809 0.44860146]\n", + " [0.88888469 0.36820183 0.27260122]\n", + " [0.87547318 0.39181066 0.28289771]\n", + " [0.86136058 0.41497214 0.29301206]\n", + " [0.84661219 0.43759894 0.30291082]\n", + " [0.83130243 0.45960757 0.31256544]\n", + " [0.81551453 0.48091864 0.32195235]\n", + " [0.79934006 0.50145749 0.33105265]\n", + " [0.78287761 0.5211562 0.33985124]\n", + " [0.8516012 0.27116809 0.44860146]\n", + " [0.83773812 0.29565134 0.45911342]\n", + " [0.82316747 0.31978837 0.4691809 ]\n", + " [0.80795769 0.34348756 0.47876996]\n", + " [0.79218461 0.36666418 0.48785339]\n", + " [0.77593105 0.38924001 0.49641034]\n", + " [0.75928746 0.41114157 0.50442557]\n", + " [0.74235326 0.43229811 0.51188864]\n", + " [0.78287761 0.5211562 0.33985124]\n", + " [0.77890269 0.51041182 0.36440414]\n", + " [0.77434229 0.49895375 0.38915186]\n", + " [0.76917631 0.48681484 0.4139796 ]\n", + " [0.76339273 0.47403428 0.43877448]\n", + " [0.75698854 0.46065571 0.4634271 ]\n", + " [0.74997011 0.44672659 0.48783213]\n", + " [0.74235326 0.43229811 0.51188864]\n", + " [0.88765605 0.36292009 0.2834709 ]\n", + " [0.88354777 0.34728791 0.31422039]\n", + " [0.87825132 0.33088776 0.34523603]\n", + " [0.87173568 0.31379185 0.37631314]\n", + " [0.86399086 0.29608069 0.40725424]\n", + " [0.85502987 0.27784611 0.43786467]\n", + " [0.88311831 0.37850331 0.27719542]\n", + " [0.86620139 0.40714959 0.28969701]\n", + " [0.84829524 0.43503677 0.30189103]\n", + " [0.82953306 0.46200957 0.3137229 ]\n", + " [0.81006806 0.48792186 0.32514919]\n", + " [0.79007184 0.51263885 0.33613673]\n", + " [0.84567571 0.28193121 0.45315271]\n", + " [0.82820106 0.3117168 0.46574202]\n", + " [0.8097307 0.3408905 0.47762942]\n", + " [0.79040122 0.36929342 0.48876199]\n", + " [0.77036517 0.39678133 0.49910128]\n", + " [0.74979273 0.42322018 0.50862121]\n", + " [0.78127188 0.51649484 0.35049583]\n", + " [0.77601008 0.50284176 0.38073418]\n", + " [0.76984789 0.48814857 0.41115106]\n", + " [0.76275975 0.47248495 0.44153769]\n", + " [0.75474017 0.45593117 0.47169275]\n", + " [0.74580479 0.43857616 0.50142414]\n", + " [0.88883135 0.36824158 0.27272141]\n", + " [0.88883135 0.36824158 0.27272141]\n", + " [0.74243859 0.43227724 0.5117825 ]\n", + " [0.74243859 0.43227724 0.5117825 ]\n", + " [0.88192036 0.37322275 0.28796052]\n", + " [0.86493414 0.40198975 0.30048822]\n", + " [0.84695133 0.43000446 0.31268131]\n", + " [0.82810543 0.45711148 0.32448496]\n", + " [0.80854993 0.48316435 0.33585597]\n", + " [0.78845722 0.50802687 0.34676205]\n", + " [0.87775532 0.35769372 0.31874881]\n", + " [0.86059695 0.38676726 0.33133665]\n", + " [0.84242616 0.41510885 0.34351538]\n", + " [0.82337723 0.44256312 0.35522925]\n", + " [0.80360401 0.46898398 0.36643502]\n", + " [0.78327984 0.49423361 0.37710189]\n", + " [0.87241311 0.34137773 0.3497951 ]\n", + " [0.8551186 0.37070543 0.36242195]\n", + " [0.83680327 0.3993232 0.3745681 ]\n", + " [0.81760237 0.42707567 0.38617708]\n", + " [0.79766971 0.45381801 0.39720555]\n", + " [0.77717836 0.4794131 0.40762345]\n", + " [0.86586296 0.32434663 0.38089447]\n", + " [0.84846916 0.35387566 0.39353793]\n", + " [0.83005358 0.38271937 0.40563152]\n", + " [0.8107524 0.41072184 0.41711883]\n", + " [0.79071927 0.43773936 0.4279571 ]\n", + " [0.77012639 0.46363644 0.4381171 ]\n", + " [0.85809529 0.30668026 0.4118491 ]\n", + " [0.8406404 0.33635644 0.42448565]\n", + " [0.82217005 0.36537555 0.43650557]\n", + " [0.80282104 0.39358058 0.44785344]\n", + " [0.78274669 0.4208282 0.458488 ]\n", + " [0.76211819 0.44698421 0.46838123]\n", + " [0.84912354 0.28846971 0.44246406]\n", + " [0.83164699 0.31823692 0.45506984]\n", + " [0.81316837 0.34737966 0.46699527]\n", + " [0.79382446 0.37573954 0.47818671]\n", + " [0.77376804 0.4031727 0.48860494]\n", + " [0.7531695 0.42954525 0.49822343]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:fp_optics: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:cartToSphere: vec: [[-0.61334763 0.32327965 -0.72062123]\n", + " [-0.63407542 0.31198289 -0.70754154]\n", + " [-0.65473696 0.30008097 -0.69373693]\n", + " [-0.67521773 0.28762646 -0.679229 ]\n", + " [-0.69541128 0.27467117 -0.66404736]\n", + " [-0.71521864 0.26126683 -0.64822985]\n", + " [-0.73454808 0.2474658 -0.63182259]\n", + " [-0.75331511 0.23332165 -0.61487995]\n", + " [-0.61334763 0.32327965 -0.72062123]\n", + " [-0.60712582 0.30150592 -0.73518189]\n", + " [-0.60043389 0.27895733 -0.74944109]\n", + " [-0.59326174 0.25572777 -0.76331108]\n", + " [-0.58560771 0.23191037 -0.77671178]\n", + " [-0.57747848 0.20759836 -0.78957047]\n", + " [-0.56888895 0.18288596 -0.80182173]\n", + " [-0.55986187 0.15786888 -0.81340771]\n", + " [-0.75331511 0.23332165 -0.61487995]\n", + " [-0.7483808 0.20988049 -0.62918706]\n", + " [-0.74274634 0.18578777 -0.64328126]\n", + " [-0.73640044 0.1611308 -0.65707782]\n", + " [-0.72933936 0.13599844 -0.67049872]\n", + " [-0.72156757 0.11048282 -0.68347186]\n", + " [-0.71309832 0.08468022 -0.69593106]\n", + " [-0.70395393 0.05869089 -0.70781654]\n", + " [-0.55986187 0.15786888 -0.81340771]\n", + " [-0.58111717 0.14460594 -0.8008695 ]\n", + " [-0.60232235 0.13095764 -0.78743755]\n", + " [-0.62336777 0.11697243 -0.77313005]\n", + " [-0.64414984 0.10270001 -0.75797341]\n", + " [-0.66456986 0.08819221 -0.74200339]\n", + " [-0.684534 0.07350352 -0.72526577]\n", + " [-0.70395393 0.05869089 -0.70781654]\n", + " [-0.62236533 0.31835848 -0.71505894]\n", + " [-0.64774058 0.30409811 -0.69853882]\n", + " [-0.6729016 0.28898123 -0.68095028]\n", + " [-0.69764908 0.27310355 -0.66234448]\n", + " [-0.72180081 0.25656035 -0.64279108]\n", + " [-0.74519091 0.23944852 -0.62237844]\n", + " [-0.61076289 0.31384948 -0.72695749]\n", + " [-0.60282377 0.28662913 -0.74461214]\n", + " [-0.59416737 0.25833839 -0.76172595]\n", + " [-0.58478708 0.22914896 -0.77814833]\n", + " [-0.57469521 0.19923262 -0.79374541]\n", + " [-0.56392247 0.16876341 -0.80839988]\n", + " [-0.75118541 0.22323602 -0.62119736]\n", + " [-0.74466823 0.19405784 -0.63860064]\n", + " [-0.73708749 0.1639876 -0.65559904]\n", + " [-0.72843315 0.13318811 -0.67204618]\n", + " [-0.71871352 0.1018291 -0.68780935]\n", + " [-0.70795676 0.07008951 -0.7027693 ]\n", + " [-0.56915979 0.15222297 -0.80801318]\n", + " [-0.59519106 0.13570352 -0.79204303]\n", + " [-0.62103731 0.11865317 -0.77474775]\n", + " [-0.64650539 0.10116278 -0.75617251]\n", + " [-0.67141362 0.08332788 -0.7363832 ]\n", + " [-0.69559146 0.0652498 -0.71546836]\n", + " [-0.613398 0.32316908 -0.72062795]\n", + " [-0.613398 0.32316908 -0.72062795]\n", + " [-0.70392093 0.05883076 -0.70783774]\n", + " [-0.70392093 0.05883076 -0.70783774]\n", + " [-0.61977012 0.30897404 -0.72140144]\n", + " [-0.61192532 0.28157844 -0.73909471]\n", + " [-0.60333561 0.2531242 -0.75625014]\n", + " [-0.59399464 0.22378201 -0.77271727]\n", + " [-0.58391498 0.19372288 -0.78836206]\n", + " [-0.57312765 0.16312071 -0.80306683]\n", + " [-0.64525535 0.29454456 -0.70490356]\n", + " [-0.63767206 0.26669345 -0.72266794]\n", + " [-0.62927009 0.23781609 -0.73990719]\n", + " [-0.62004349 0.20808011 -0.75647124]\n", + " [-0.61000527 0.17765477 -0.77222559]\n", + " [-0.59918698 0.14671396 -0.78705144]\n", + " [-0.67052228 0.27927954 -0.68731566]\n", + " [-0.66319362 0.25103151 -0.7050939 ]\n", + " [-0.65497922 0.22178824 -0.7223657 ]\n", + " [-0.64587293 0.19171471 -0.73898148]\n", + " [-0.63588751 0.16097916 -0.75480646]\n", + " [-0.6250545 0.12975616 -0.76972087]\n", + " [-0.69537204 0.26327378 -0.66868875]\n", + " [-0.68829246 0.23468479 -0.686423 ]\n", + " [-0.68026668 0.20513079 -0.70367507]\n", + " [-0.67128773 0.17477498 -0.72029612]\n", + " [-0.66136744 0.14378536 -0.7361514 ]\n", + " [-0.65053676 0.11233768 -0.75112061]\n", + " [-0.71962252 0.2466218 -0.64909253]\n", + " [-0.71278654 0.21774608 -0.66672482]\n", + " [-0.7049503 0.18793566 -0.68390443]\n", + " [-0.69610558 0.15735298 -0.70048345]\n", + " [-0.6862628 0.12616648 -0.71632771]\n", + " [-0.67545189 0.09455333 -0.7313169 ]\n", + " [-0.74310754 0.22942014 -0.62861561]\n", + " [-0.73650859 0.20031133 -0.6460886 ]\n", + " [-0.72886151 0.17029909 -0.66314336]\n", + " [-0.72015674 0.139546 -0.67963313]\n", + " [-0.71040311 0.1082214 -0.69542473]\n", + " [-0.69962923 0.07650381 -0.71039855]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:fp_optics: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:cartToSphere: vec: [[-1.21573506e-02 -5.91196250e-01 8.06436106e-01]\n", + " [-3.73130580e-02 -5.82917071e-01 8.11674457e-01]\n", + " [-6.29080472e-02 -5.73908136e-01 8.16499865e-01]\n", + " [-8.88350509e-02 -5.64196875e-01 8.20847258e-01]\n", + " [-1.14988538e-01 -5.53812878e-01 8.24662920e-01]\n", + " [-1.41263815e-01 -5.42788825e-01 8.27903875e-01]\n", + " [-1.67556623e-01 -5.31161324e-01 8.30537432e-01]\n", + " [-1.93763215e-01 -5.18971489e-01 8.32540936e-01]\n", + " [-1.21573506e-02 -5.91196250e-01 8.06436106e-01]\n", + " [ 8.08233711e-05 -5.71725615e-01 8.20444888e-01]\n", + " [ 1.24436823e-02 -5.51347126e-01 8.34183134e-01]\n", + " [ 2.48922747e-02 -5.30131857e-01 8.47549756e-01]\n", + " [ 3.73854893e-02 -5.08152986e-01 8.60455035e-01]\n", + " [ 4.98800709e-02 -4.85487050e-01 8.72819742e-01]\n", + " [ 6.23309161e-02 -4.62214906e-01 8.84574608e-01]\n", + " [ 7.46915318e-02 -4.38422218e-01 8.95660167e-01]\n", + " [-1.93763215e-01 -5.18971489e-01 8.32540936e-01]\n", + " [-1.82814692e-01 -4.98175812e-01 8.47584596e-01]\n", + " [-1.71496857e-01 -4.76551441e-01 8.62257242e-01]\n", + " [-1.59846644e-01 -4.54162767e-01 8.76461769e-01]\n", + " [-1.47902973e-01 -4.31079322e-01 8.90109728e-01]\n", + " [-1.35707354e-01 -4.07377067e-01 9.03120944e-01]\n", + " [-1.23304061e-01 -3.83138833e-01 9.15423805e-01]\n", + " [-1.10739937e-01 -3.58454053e-01 9.26955964e-01]\n", + " [ 7.46915318e-02 -4DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + ".38422218e-01 8.95660167e-01]\n", + " [ 4.93104494e-02 -4.28502121e-01 9.02194221e-01]\n", + " [ 2.33889946e-02 -4.18033736e-01 9.08130360e-01]\n", + " [-2.97191959e-03 -4.07040461e-01 9.13405294e-01]\n", + " [-2.96703361e-02 -3.95550161e-01 9.17965000e-01]\n", + " [-5.66021958e-02 -3.83595838e-01 9.21764842e-01]\n", + " [-8.36612846e-02 -3.71215896e-01 9.24769997e-01]\n", + " [-1.10739937e-01 -3.58454053e-01 9.26955964e-01]\n", + " [-2.30229873e-02 -5.87612556e-01 8.08814828e-01]\n", + " [-5.41636350e-02 -5.76970366e-01 8.14967176e-01]\n", + " [-8.58573448e-02 -5.65259211e-01 8.20433142e-01]\n", + " [-1.17909178e-01 -5.52532627e-01 8.25109158e-01]\n", + " [-1.50126352e-01 -5.38850864e-01 8.28916054e-01]\n", + " [-1.82317121e-01 -5.24283174e-01 8.31797824e-01]\n", + " [-6.92457681e-03 -5.82795660e-01 8.12589237e-01]\n", + " [ 8.16267341e-03 -5.58311859e-01 8.29591007e-01]\n", + " [ 2.33989134e-02 -5.32534900e-01 8.46084553e-01]\n", + " [ 3.87093661e-02 -5.05598561e-01 8.61900041e-01]\n", + " [ 5.40144321e-02 -4.77643848e-01 8.76891553e-01]\n", + " [ 6.92304726e-02 -4.48821609e-01 8.90935635e-01]\n", + " [-1.88947625e-01 -5.10053126e-01 8.39133245e-01]\n", + " [-1.75275259e-01 -4.84001163e-01 8.57333924e-01]\n", + " [-1.61084864e-01 -4.56767894e-01 8.74879853e-01]\n", + " [-1.46447224e-01 -4.28479098e-01 8.91604662e-01]\n", + " [-1.31438784e-01 -3.99274661e-01 9.07360783e-01]\n", + " [-1.16142140e-01 -3.69309849e-01 9.22020194e-01]\n", + " [ 6.36559941e-02 -4.34248251e-01 8.98541246e-01]\n", + " [ 3.21724252e-02 -4.21719526e-01 9.06155382e-01]\n", + " [-2.24811888e-05 -4.08389901e-01 9.12807586e-01]\n", + " [-3.27415499e-02 -3.94308769e-01 9.18394570e-01]\n", + " [-6.57932058e-02 -3.79536912e-01 9.22834214e-01]\n", + " [-9.89812556e-02 -3.64147251e-01 9.26066677e-01]\n", + " [-1.22009082e-02 -5.91104252e-01 8.06502883e-01]\n", + " [-1.22009082e-02 -5.91104252e-01 8.06502883e-01]\n", + " [-1.10690611e-01 -3.58583358e-01 9.26911843e-01]\n", + " [-1.10690611e-01 -3.58583358e-01 9.26911843e-01]\n", + " [-1.77748564e-02 -5.79254038e-01 8.14953259e-01]\n", + " [-2.75078818e-03 -5.54633278e-01 8.32090356e-01]\n", + " [ 1.24467999e-02 -5.28724829e-01 8.48702028e-01]\n", + " [ 2.77427896e-02 -5.01661205e-01 8.64619207e-01]\n", + " [ 4.30571531e-02 -4.73582706e-01 8.79696256e-01]\n", + " [ 5.83057810e-02 -4.44640078e-01 8.93809620e-01]\n", + " [-4.90006047e-02 -5.68481360e-01 8.21235584e-01]\n", + " [-3.41713316e-02 -5.43503745e-01 8.38710915e-01]\n", + " [-1.91004088e-02 -5.17254113e-01 8.55618698e-01]\n", + " [-3.86351926e-03 -4.89861799e-01 8.71791541e-01]\n", + " [ 1.14585522e-02 -4.61465640e-01 8.87084080e-01]\n", + " [ 2.67807346e-02 -4.32216584e-01 9.01372075e-01]\n", + " [-8.07878933e-02 -5.56654950e-01 8.26806255e-01]\n", + " [-6.61790344e-02 -5.31363881e-01 8.44554771e-01]\n", + " [-5.12623005e-02 -5.04817321e-01 8.61702761e-01]\n", + " [-3.61131913e-02 -4.77142294e-01 8.78083748e-01]\n", + " [-2.08124879e-02 -4.48476998e-01 8.93552025e-01]\n", + " [-5.44560008e-03 -4.18973157e-01 9.07982290e-01]\n", + " [-1.12942428e-01 -5.43827211e-01 8.31562368e-01]\n", + " [-9.85813173e-02 -5.18263352e-01 8.49520348e-01]\n", + " [-8.38478072e-02 -4.91462395e-01 8.66853078e-01]\n", + " [-6.88164868e-02 -4.63550034e-01 8.83394395e-01]\n", + " [-5.35674118e-02 -4.34664521e-01 8.98997934e-01]\n", + " [-3.81857179e-02 -4.04958671e-01 9.13537260e-01]\n", + " [-1.45271523e-01 -5.30057631e-01 8.35425097e-01]\n", + " [-1.31185589e-01 -5.04260094e-01 8.53529202e-01]\n", + " [-1.16664309e-01 -4.77246709e-01 8.70990825e-01]\n", + " [-1.01780817e-01 -4.49142732e-01 8.87643775e-01]\n", + " [-8.66138678e-02 -4.20086951e-01 9.03341016e-01]\n", + " [-7.12477893e-02 -3.90233333e-01 9.17955172e-01]\n", + " [-1.77583047e-01 -5.15415141e-01 8.38338532e-01]\n", + " [-1.63798452e-01 -4.89422658e-01 8.56525264e-01]\n", + " [-1.49517123e-01 -4.62239165e-01 8.74059257e-01]\n", + " [-1.34810461e-01 -4.33990202e-01 8.90774182e-01]\n", + " [-1.19755547e-01 -4.04815349e-01 9.06522555e-01]\n", + " [-1.04435485e-01 -3.74869581e-01 9.21176436e-01]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:fp_optics: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:cartToSphere: vec: [[-0.21622077 0.55512141 -0.80317421]\n", + " [-0.21670679 0.53263202 -0.81813281]\n", + " [-0.21688874 0.50929432 -0.83281365]\n", + " [-0.2167714 0.48518438 -0.84711645]\n", + " [-0.21635912 0.46038285 -0.86095085]\n", + " [-0.2156559 0.43497516 -0.87423632]\n", + " [-0.21466567 0.40905189 -0.88690203]\n", + " [-0.21339278 0.38270873 -0.89888684]\n", + " [-0.21622077 0.55512141 -0.80317421]\n", + " [-0.18992351 0.55996465 -0.80645437]\n", + " [-0.16290788 0.56436819 -0.80928955]\n", + " [-0.13528343 0.56830092 -0.81162335]\n", + " [-0.10715978 0.57173563 -0.81340959]\n", + " [-0.07864698 0.57464896 -0.81461232]\n", + " [-0.04985595 0.57702173 -0.81520568]\n", + " [-0.02089861 0.57883932 -0.81517378]\n", + " [-0.21339278 0.38270873 -0.89888684]\n", + " [-0.18608607 0.38621512 -0.90344333]\n", + " [-0.15807069 0.38948111 -0.90736879]\n", + " [-0.12945102 0.39247641 -0.91060678]\n", + " [-0.1003325 0.39517474 -0.91311024]\n", + " [-0.07082353 0.3975537 -0.91484156]\n", + " [-0.04103651 0.39959492 -0.91577285]\n", + " [-0.01108771 0.40128427 -0.91588645]\n", + " [-0.02089861 0.57883932 -0.81517378]\n", + " [-0.01961309 0.55579428 -0.83108847]\n", + " [-0.01828045 0.53184658 -0.84664339]\n", + " [-0.01690571 0.50706757 -0.86174049]\n", + " [-0.01549383 0.48153401 -0.87629044]\n", + " [-0.01404992 0.45532976 -0.890212 ]\n", + " [-0.01257934 0.42854663 -0.90343209]\n", + " [-0.01108771 0.40128427 -0.91588645]\n", + " [-0.2163814 0.54544198 -0.80973585]\n", + " [-0.21677094 0.51729839 -0.82789657]\n", + " [-0.21670871 0.48795563 -0.84553926]\n", + " [-0.21620293 0.45756024 -0.86249343]\n", + " [-0.21526095 0.42626956 -0.87861083]\n", + " [-0.2138902 0.39425247 -0.89376506]\n", + " [-0.20485218 0.55720937 -0.80470696]\n", + " [-0.17212417 0.56285311 -0.80843655]\n", + " [-0.13842596 0.56780516 -0.81144042]\n", + " [-0.10395934 0.57201381 -0.81362931]\n", + " [-0.06892697 0.57543613 -0.81493701]\n", + " [-0.03353345 0.57803865 -0.81532007]\n", + " [-0.20158565 0.38435603 -0.90090714]\n", + " [-0.16762881 0.38849675 -0.90607442]\n", + " [-0.13271122 0.39224566 -0.91023682]\n", + " [-0.09702644 0.39555273 -0.91330384]\n", + " [-0.06077415 0.39837673 -0.91520625]\n", + " [-0.02416293 0.40068558 -0.91589695]\n", + " [-0.02044381 0.56890172 -0.82215138]\n", + " [-0.01883692 0.54004187 -0.84142733]\n", + " [-0.01716406 0.50989659 -0.86006445]\n", + " [-0.01543439 0.47860486 -0.87789473]\n", + " [-0.01365733 0.44632117 -0.89476862]\n", + " [-0.01184282 0.41321782 -0.9105552 ]\n", + " [-0.21613437 0.5550633 -0.80323762]\n", + " [-0.21613437 0.5550633 -0.80323762]\n", + " [-0.01119539 0.40137303 -0.91584625]\n", + " [-0.01119539 0.40137303 -0.91584625]\n", + " [-0.20504943 0.54755881 -0.81125464]\n", + " [-0.17218103 0.55313041 -0.81510763]\n", + " [-0.13834322 0.55802622 -0.81821017]\n", + " [-0.10373728 0.56219435 -0.82047309]\n", + " [-0.06856556 0.56559144 -0.82183033]\n", + " [-0.03303281 0.56818364 -0.82223852]\n", + " [-0.20531436 0.5193269 -0.82954541]\n", + " [-0.17209506 0.52468029 -0.83372291]\n", + " [-0.13790827 0.52940515 -0.83708512]\n", + " [-0.10295345 0.53344893 -0.83954322]\n", + " [-0.06743199 0.53676729 -0.84103139]\n", + " [-0.0315492 0.53932534 -0.84150628]\n", + " [-0.20515186 0.48988753 -0.84730333]\n", + " [-0.17165061 0.49500115 -0.85176871]\n", + " [-0.13718319 0.49953632 -0.85536205]\n", + " [-0.101947 0.50344009 -0.85799469]\n", + " [-0.06614263 0.50666758 -0.85960056]\n", + " [-0.02997622 0.50918342 -0.86013584]\n", + " [-0.20456987 0.45938684 -0.86435808]\n", + " [-0.17085461 0.46423769 -0.86907541]\n", + " [-0.13617418 0.46856271 -0.87287203]\n", + " [-0.10072413 0.47230912 -0.87565903]\n", + " [-0.0647045 0.47543228 -0.87736963]\n", + " [-0.02832241 0.47789701 -0.87795916]\n", + " [-0.20357529 0.427982 -0.88056147]\n", + " [-0.16971282 0.43254645 -0.88549485]\n", + " [-0.13488643 0.43664022 -0.88946668]\n", + " [-0.09929037 0.44021134 -0.89238747]\n", + " [-0.06312438 0.44321624 -0.8941894 ]\n", + " [-0.0265964 0.44562065 -0.89482672]\n", + " [-0.20217516 0.39584206 -0.89578696]\n", + " [-0.16823138 0.40009714 -0.90089982]\n", + " [-0.1333258 0.40393934 -0.90501781]\n", + " [-0.09765205 0.40731806 -0.9080507 ]\n", + " [-0.06140978 0.4101914 -0.90992959]\n", + " [-0.02480749 0.41252663 -0.91060769]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:fp_optics: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:cartToSphere: vec: [[-0.59088798 0.45156989 -0.66853274]\n", + " [-0.57346168 0.4447559 -0.68799265]\n", + " [-0.55516234 0.43760143 -0.70731871]\n", + " [-0.53605404 0.43010418 -0.72639965]\n", + " [-0.51620294 0.42226924 -0.74513302]\n", + " [-0.49567842 0.41410878 -0.7634244 ]\n", + " [-0.47455402 0.40564168 -0.78118712]\n", + " [-0.45290786 0.39689312 -0.79834223]\n", + " [-0.59088798 0.45156989 -0.66853274]\n", + " [-0.57916645 0.47504832 -0.66249174]\n", + " [-0.56665018 0.49865395 -0.65593583]\n", + " [-0.5533807 0.52226469 -0.64885237]\n", + " [-0.53940141 0.54576566 -0.64123783]\n", + " [-0.52475864 0.5690481 -0.63309765]\n", + " [-0.50950259 0.59200879 -0.62444592]\n", + " [-0.49368799 0.61455009 -0.61530509]\n", + " [-0.45290786 0.39689312 -0.79834223]\n", + " [-0.43952823 0.420899 -0.79351053]\n", + " [-0.42551853 0.44505964 -0.78794409]\n", + " [-0.41091534 0.46925921 -0.78162931]\n", + " [-0.39575972 0.49338609 -0.77456078]\n", + " [-0.3800981 0.51733188 -0.76674191]\n", + " [-0.36398268 0.54099137 -0.7581853 ]\n", + " [-0.34747125 0.56426331 -0.74891298]\n", + " [-0.49368799 0.61455009 -0.61530509]\n", + " [-0.47476916 0.60913376 -0.63525609]\n", + " [-0.45508794 0.60312211 -0.65508678]\n", + " [-0.43470226 0.59651208 -0.67469051]\n", + " [-0.41367523 0.58930711 -0.69396681]\n", + " [-0.39207615 0.58151764 -0.71282083]\n", + " [-0.36998084 0.57316136 -0.73116362]\n", + " [-0.34747125 0.56426331 -0.74891298]\n", + " [-0.58336233 0.44872063 -0.67700679]\n", + " [-0.5614083 0.44014192 -0.70078228]\n", + " [-0.53820649 0.43104848 -0.72424511]\n", + " [-0.51387776 0.4214466 -0.74720306]\n", + " [-0.48854993 0.41135866 -0.7694823 ]\n", + " [-0.4623603 0.40082207 -0.79092643]\n", + " [-0.58581922 0.4617604 -0.66602791]\n", + " [-0.57091248 0.49063791 -0.65828062]\n", + " [-0.55485322 0.51958431 -0.64974614]\n", + " [-0.5377205 0.54838519 -0.6404142 ]\n", + " [-0.51959969 0.57684024 -0.63029477]\n", + " [-0.5005851 0.60476176 -0.61941729]\n", + " [-0.44722908 0.40736357 -0.79626696]\n", + " [-0.43040362 0.43690446 -0.78985266]\n", + " [-0.41266755 0.4665621 -0.78232046]\n", + " [-0.39409452 0.49612936 -0.77365701]\n", + " [-0.37477007 0.52540666 -0.7638686 ]\n", + " [-0.35479261 0.55420192 -0.75298236]\n", + " [-0.48559179 0.61218473 -0.62404364]\n", + " [-0.46188563 0.60514609 -0.64842877]\n", + " [-0.43709131 0.59720966 -0.67252643]\n", + " [-0.41132276 0.58837908 -0.69614915]\n", + " [-0.38470761 0.57867358 -0.71912234]\n", + " [-0.35738801 0.56812881 -0.74128501]\n", + " [-0.59079126 0.45162709 -0.66857958]\n", + " [-0.59079126 0.45162709 -0.66857958]\n", + " [-0.3476059 0.56421582 -0.74888627]\n", + " [-0.3476059 0.56421582 -0.74888627]\n", + " [-0.57833707 0.45889504 -0.67449357]\n", + " [-0.5632896 0.48788694 -0.66683668]\n", + " [-0.54710336 0.51694562 -0.65836551]\n", + " [-0.52985618 0.54585746 -0.64907015]\n", + " [-0.51163263 0.57442237 -0.63896087]\n", + " [-0.49252674 0.60245234 -0.62806734]\n", + " [-0.55623887 0.45041282 -0.69837426]\n", + " [-0.54081137 0.4796753 -0.69096647]\n", + " [-0.52428414 0.509003 -0.68267275]\n", + " [-0.50673202 0.53818429 -0.67348373]\n", + " [-0.48823796 0.56701931 -0.66340997]\n", + " [-0.46889572 0.59531896 -0.65248152]\n", + " [-0.53290148 0.44138679 -0.72193747]\n", + " [-0.51711832 0.47084171 -0.7147704 ]\n", + " [-0.50027515 0.50036622 -0.70665297]\n", + " [-0.48244481 0.52975023 -0.69757559]\n", + " [-0.46370969 0.5587938 -0.68754841]\n", + " [-0.44416401 0.58730657 -0.6766013 ]\n", + " [-0.5084445 0.43182377 -0.74499155]\n", + " [-0.49232698 0.46139393 -0.73805812]\n", + " [-0.47519074 0.49104312 -0.73011671]\n", + " [-0.45710782 0.52056236 -0.72115689]\n", + " [-0.4381609 0.54975158 -0.71118789]\n", + " [-0.41844524 0.57841934 -0.700239 ]\n", + " [-0.48299508 0.42174659 -0.76736273]\n", + " [-0.46656305 0.45135553 -0.76065571]\n", + " [-0.4491561 0.48105713 -0.75288966]\n", + " [-0.43084646 0.51064331 -0.74405291]\n", + " [-0.41171777 0.53991399 -0.7341535 ]\n", + " [-0.39186661 0.56867708 -0.72321984]\n", + " [-0.45669035 0.41119302 -0.78889431]\n", + " [-0.43996383 0.44076493 -0.78240533]\n", + " [-0.42230932 0.47044674 -0.77481269]\n", + " [-0.40380001 0.50003107 -0.76610344]\n", + " [-0.38452089 0.52931817 -0.75628431]\n", + " [-0.36456993 0.55811583 -0.74538278]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:fp_optics: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:cartToSphere: vec: [[ 0.60634303 0.22883966 -0.76156453]\n", + " [ 0.62757901 0.22439826 -0.74551325]\n", + " [ 0.64878548 0.21984746 -0.72852213]\n", + " [ 0.66984362 0.21518165 -0.71063801]\n", + " [ 0.69064311 0.21040054 -0.69191308]\n", + " [ 0.71108152 0.20550894 -0.6724055 ]\n", + " [ 0.73106392 0.20051638 -0.65217998]\n", + " [ 0.75050288 0.19543663 -0.63130812]\n", + " [ 0.60634303 0.22883966 -0.76156453]\n", + " [ 0.60366688 0.2549067 -0.75538657]\n", + " [ 0.60060494 0.28133682 -0.74841386]\n", + " [ 0.59713084 0.30800408 -0.74065393]\n", + " [ 0.59322704 0.33478757 -0.7321195 ]\n", + " [ 0.58888468 0.36157061 -0.72282884]\n", + " [ 0.58410327 0.38824016 -0.71280639]\n", + " [ 0.57889038 0.41468667 -0.70208326]\n", + " [ 0.75050288 0.19543663 -0.63130812]\n", + " [ 0.74929583 0.22228652 -0.62381444]\n", + " [ 0.74746455 0.24950907 -0.61566385]\n", + " [ 0.74498243 0.27698511 -0.60686113]\n", + " [ 0.74183054 0.30459837 -0.59741718]\n", + " [ 0.73799798 0.33223366 -0.58734979]\n", + " [ 0.73348236 0.35977617 -0.57668426]\n", + " [ 0.72829012 0.38711194 -0.56545367]\n", + " [ 0.57889038 0.41468667 -0.70208326]\n", + " [ 0.60092237 0.41190201 -0.68500295]\n", + " [ 0.62290445 0.40873474 -0.6670277 ]\n", + " [ 0.64472297 0.40517896 -0.64819928]\n", + " [ 0.66627051 0.40123313 -0.6285663 ]\n", + " [ 0.68744478 0.39690044 -0.60818559]\n", + " [ 0.7081485 0.392189 -0.58712306]\n", + " [ 0.72829012 0.38711194 -0.56545367]\n", + " [ 0.61558952 0.22700483 -0.7546644 ]\n", + " [ 0.64161305 0.22148983 -0.73435342]\n", + " [ 0.6674732 0.21580414 -0.71267672]\n", + " [ 0.69296334 0.209945 -0.68972814]\n", + " [ 0.71789488 0.20392124 -0.66561481]\n", + " [ 0.74209615 0.19775219 -0.64045873]\n", + " [ 0.60529452 0.24013744 -0.75891538]\n", + " [ 0.60175995 0.27234669 -0.75080772]\n", + " [ 0.59761853 0.30497559 -0.7415133 ]\n", + " [ 0.59283429 0.33779948 -0.73105336]\n", + " [ 0.58739089 0.37060348 -0.7194616 ]\n", + " [ 0.5812908 0.40318094 -0.70678578]\n", + " [ 0.74998562 0.2071072 -0.62819438]\n", + " [ 0.74808954 0.24028049 -0.61856878]\n", + " [ 0.7452287 0.27389465 -0.60796045]\n", + " [ 0.74136505 0.30773455 -0.59638688]\n", + " [ 0.73647859 0.34158804 -0.58388089]\n", + " [ 0.73056857 0.37524406 -0.5704923 ]\n", + " [ 0.58851355 0.41342875 -0.69478664]\n", + " [ 0.61549727 0.40975864 -0.67324658]\n", + " [ 0.64229229 0.40550768 -0.65040306]\n", + " [ 0.66869836 0.40067122 -0.62634262]\n", + " [ 0.69452716 0.39525514 -0.60117002]\n", + " [ 0.71960191 0.38927648 -0.57501036]\n", + " [ 0.60640703 0.22891302 -0.76149152]\n", + " [ 0.60640703 0.22891302 -0.76149152]\n", + " [ 0.72824119 0.3870369 -0.56556804]\n", + " [ 0.72824119 0.3870369 -0.56556804]\n", + " [ 0.61452529 0.23827754 -0.75205218]\n", + " [ 0.61110801 0.27062159 -0.74384874]\n", + " [ 0.60705523 0.30338293 -0.73446766]\n", + " [ 0.60233133 0.33633769 -0.7239295 ]\n", + " [ 0.59692032 0.36927135 -0.71226737]\n", + " [ 0.590825 0.40197703 -0.69952862]\n", + " [ 0.64068 0.23287933 -0.7316395 ]\n", + " [ 0.63758223 0.26555042 -0.72316794]\n", + " [ 0.63377253 0.29863532 -0.71354701]\n", + " [ 0.62921607 0.33191243 -0.70279532]\n", + " [ 0.6238975 0.36516805 -0.69094443]\n", + " [ 0.6178201 0.39819441 -0.67804096]\n", + " [ 0.6666635 0.22728106 -0.70986132]\n", + " [ 0.66386807 0.26019887 -0.70112462]\n", + " [ 0.66029141 0.29353143 -0.69127025]\n", + " [ 0.65589888 0.32705933 -0.68031526]\n", + " [ 0.65067496 0.36056935 -0.66829024]\n", + " [ 0.64462278 0.3938526 -0.65524164]\n", + " [ 0.69226976 0.22148045 -0.68681074]\n", + " [ 0.6897611 0.25456581 -0.67780961]\n", + " [ 0.68640885 0.28807062 -0.66772615]\n", + " [ 0.68217783 0.32177731 -0.65657656]\n", + " [ 0.67705163 0.35547299 -0.64439122]\n", + " [ 0.67103262 0.38894761 -0.63121706]\n", + " [ 0.71731034 0.21548685 -0.66259437]\n", + " [ 0.71507316 0.24866168 -0.6533282 ]\n", + " [ 0.71193665 0.2822636 -0.64301902]\n", + " [ 0.70786454 0.31607643 -0.63168306]\n", + " [ 0.70283901 0.34988753 -0.61935131]\n", + " [ 0.6968612 0.38348606 -0.6060717 ]\n", + " [ 0.74161336 0.20932003 -0.6373341 ]\n", + " [ 0.7396314 0.24250722 -0.62780224]\n", + " [ 0.73670067 0.27613136 -0.61727109]\n", + " [ 0.73278357 0.30997713 -0.60575772]\n", + " [ 0.72786068 0.34383225 -0.59329437]\n", + " [ 0.72193172 0.3774856 -0.57993035]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:fp_optics: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:cartToSphere: vec: [[-0.43825283 -0.49870659 -0.74781428]\n", + " [-0.44368073 -0.51887111 -0.73069842]\n", + " [-0.4487579 -0.5391238 -0.71271444]\n", + " [-0.45345299 -0.55935625 -0.69390271]\n", + " [-0.45773931 -0.57946287 -0.67431262]\n", + " [-0.46159396 -0.59934365 -0.65400169]\n", + " [-0.46499737 -0.61890528 -0.6330353 ]\n", + " [-0.4679333 -0.63806162 -0.61148654]\n", + " [-0.43825283 -0.49870659 -0.74781428]\n", + " [-0.41408584 -0.50796587 -0.75531689]\n", + " [-0.38911377 -0.51715655 -0.76232511]\n", + " [-0.36341957 -0.52621171 -0.7687831 ]\n", + " [-0.33709294 -0.53506778 -0.77464239]\n", + " [-0.31022839 -0.5436671 -0.7798618 ]\n", + " [-0.28292457 -0.55195904 -0.78440736]\n", + " [-0.25528393 -0.55990025 -0.78825239]\n", + " [-0.4679333 -0.63806162 -0.61148654]\n", + " [-0.44320995 -0.64917878 -0.61816815]\n", + " [-0.41762302 -0.66000471 -0.62448763]\n", + " [-0.39125739 -0.67046559 -0.63039158]\n", + " [-0.36420014 -0.68049544 -0.63583348]\n", + " [-0.33654273 -0.69003527 -0.64077322]\n", + " [-0.30838329 -0.6990325 -0.64517696]\n", + " [-0.27982759 -0.70744107 -0.64901745]\n", + " [-0.25528393 -0.55990025 -0.78825239]\n", + " [-0.25931521 -0.58161974 -0.77102147]\n", + " [-0.26321135 -0.60330323 -0.75282468]\n", + " [-0.26694581 -0.62483697 -0.73370205]\n", + " [-0.27049476 -0.64611509 -0.71370012]\n", + " [-0.27383688 -0.66703776 -0.69287372]\n", + " [-0.27695325 -0.68750986 -0.67128763]\n", + " [-0.27982759 -0.70744107 -0.64901745]\n", + " [-0.44057888 -0.50751286 -0.74048697]\n", + " [-0.4469991 -0.53230089 -0.71892111]\n", + " [-0.45286091 -0.55711342 -0.69609024]\n", + " [-0.45811332 -0.58175469 -0.6720816 ]\n", + " [-0.4627141 -0.60604067 -0.64700106]\n", + " [-0.4666286 -0.62980257 -0.6209722 ]\n", + " [-0.42783873 -0.502817 -0.75108527]\n", + " [-0.39766751 -0.51412889 -0.75995528]\n", + " [-0.36636848 -0.52527089 -0.76802645]\n", + " [-0.33410412 -0.53612437 -0.77520649]\n", + " [-0.30104836 -0.54658331 -0.78141959]\n", + " [-0.26738441 -0.5565575 -0.7866062 ]\n", + " [-0.45725613 -0.64287449 -0.61451544]\n", + " [-0.42636369 -0.65631292 -0.62246876]\n", + " [-0.39425829 -0.66923979 -0.62982418]\n", + " [-0.36109928 -0.68153043 -0.6364932 ]\n", + " [-0.3270553 -0.69307614 -0.64240197]\n", + " [-0.29231022 -0.70378283 -0.6474909 ]\n", + " [-0.25715172 -0.56934017 -0.78084875]\n", + " [-0.26200601 -0.59594989 -0.75907613]\n", + " [-0.26663045 -0.62239165 -0.73589187]\n", + " [-0.27098007 -0.64846731 -0.7113789 ]\n", + " [-0.27501558 -0.67399294 -0.68563835]\n", + " [-0.27870322 -0.69879537 -0.65879401]\n", + " [-0.43819076 -0.49880698 -0.74778369]\n", + " [-0.43819076 -0.49880698 -0.74778369]\n", + " [-0.27991638 -0.70734623 -0.64908253]\n", + " [-0.27991638 -0.70734623 -0.64908253]\n", + " [-0.43019638 -0.51158857 -0.74377967]\n", + " [-0.39993137 -0.52307238 -0.75262885]\n", + " [-0.3685294 -0.53436212 -0.76068601]\n", + " [-0.33615405 -0.54533709 -0.76785931]\n", + " [-0.30297961 -0.55589059 -0.774073 ]\n", + " [-0.26918948 -0.56593234 -0.77926735]\n", + " [-0.4365406 -0.53655488 -0.72217807]\n", + " [-0.40604301 -0.548501 -0.73094167]\n", + " [-0.37438652 -0.56018382 -0.73893763]\n", + " [-0.34173616 -0.57147939 -0.74607486]\n", + " [-0.30826603 -0.58228063 -0.75227742]\n", + " [-0.2741599 -0.59249755 -0.75748465]\n", + " [-0.44234318 -0.56153087 -0.6992965 ]\n", + " [-0.41166505 -0.57389674 -0.70793673]\n", + " [-0.37981062 -0.58593249 -0.71584007]\n", + " [-0.34694425 -0.5975135 -0.72291584]\n", + " [-0.31323886 -0.60853319 -0.72908763]\n", + " [-0.27887836 -0.61890179 -0.73429384]\n", + " [-0.44755423 -0.58631872 -0.6752226 ]\n", + " [-0.41674944 -0.59905879 -0.68370203]\n", + " [-0.3847542 -0.61140717 -0.69148064]\n", + " [-0.35173112 -0.62323955 -0.6984681 ]\n", + " [-0.31785153 -0.63444957 -0.70458793]\n", + " [-0.28329942 -0.64494691 -0.70977808]\n", + " [-0.45213184 -0.61073373 -0.65006239]\n", + " [-0.42125416 -0.62380199 -0.65834338]\n", + " [-0.38917464 -0.63642338 -0.66596424]\n", + " [-0.35605403 -0.64847378 -0.67283526]\n", + " [-0.32206214 -0.65984626 -0.67888061]\n", + " [-0.287383 -0.67044917 -0.68403869]\n", + " [-0.45604119 -0.63460681 -0.6239396 ]\n", + " [-0.42514343 -0.64795698 -0.63198483]\n", + " [-0.39303512 -0.66081141 -0.6394151 ]\n", + " [-0.3598758 -0.67304567 -0.64614158]\n", + " [-0.32583429 -0.68455159 -0.65208982]\n", + " [-0.29109452 -0.69523572 -0.65719957]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:fp_optics: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:cartToSphere: vec: [[ 0.55467567 0.08419271 -0.82779617]\n", + " [ 0.5400416 0.10571323 -0.83497292]\n", + " [ 0.52459515 0.12750865 -0.84174906]\n", + " [ 0.50839179 0.14948939 -0.84805113]\n", + " [ 0.49148845 0.171567 -0.85381723]\n", + " [ 0.47394466 0.19365355 -0.85899637]\n", + " [ 0.45582347 0.21566154 -0.86354795]\n", + " [ 0.43719197 0.23750411 -0.86744163]\n", + " [ 0.55467567 0.08419271 -0.82779617]\n", + " [ 0.53884928 0.0660189 -0.83981127]\n", + " [ 0.52218337 0.04751791 -0.85150841]\n", + " [ 0.504738 0.02875553 -0.86279353]\n", + " [ 0.48657451 0.00979905 -0.87358413]\n", + " [ 0.46775676 -0.00928236 -0.88380849]\n", + " [ 0.44835215 -0.02841761 -0.89340517]\n", + " [ 0.42843218 -0.04753404 -0.90232277]\n", + " [ 0.43719197 0.23750411 -0.86744163]\n", + " [ 0.41973383 0.22012525 -0.88055005]\n", + " [ 0.40157796 0.2022145 -0.89322138]\n", + " [ 0.38277843 0.18383359 -0.90536505]\n", + " [ 0.36339363 0.16504664 -0.91689949]\n", + " [ 0.34348731 0.14592109 -0.92775185]\n", + " [ 0.32312904 0.12652796 -0.93785836]\n", + " [ 0.30239392 0.10694153 -0.94716494]\n", + " [ 0.42843218 -0.04753404 -0.90232277]\n", + " [ 0.41213481 -0.02634874 -0.91074181]\n", + " [ 0.3951768 -0.00472624 -0.91859293]\n", + " [ 0.37760805 0.01724879 -0.92580486]\n", + " [ 0.3594829 0.03949091 -0.93231567]\n", + " [ 0.34086107 0.06191306 -0.93807276]\n", + " [ 0.32180785 0.08442652 -0.94303333]\n", + " [ 0.30239392 0.10694153 -0.94716494]\n", + " [ 0.54834549 0.0934747 -0.83101125]\n", + " [ 0.52985543 0.12004681 -0.83954868]\n", + " [ 0.51020022 0.14694279 -0.84740991]\n", + " [ 0.48948403 0.17399935 -0.85447622]\n", + " [ 0.46781654 0.20105464 -0.86065366]\n", + " [ 0.44531547 0.22794778 -0.86587178]\n", + " [ 0.5478333 0.07638634 -0.83309292]\n", + " [ 0.52786307 0.05388433 -0.84761846]\n", + " [ 0.50669152 0.03095596 -0.86157149]\n", + " [ 0.48443098 0.00772445 -0.87479538]\n", + " [ 0.46119912 -0.01568284 -0.88715806]\n", + " [ 0.43712171 -0.03913438 -0.89855056]\n", + " [ 0.42973404 0.22992155 -0.87319226]\n", + " [ 0.40786213 0.20825585 -0.8889758 ]\n", + " [ 0.38499541 0.18585253 -0.90401182]\n", + " [ 0.36123948 0.16282854 -0.91814645]\n", + " [ 0.33671179 0.13930809 -0.93124563]\n", + " [ 0.31154271 0.11542331 -0.94319595]\n", + " [ 0.42147994 -0.03829086 -0.90602895]\n", + " [ 0.40105619 -0.01202084 -0.91597458]\n", + " [ 0.37968917 0.01482163 -0.92499538]\n", + " [ 0.357477 0.04207965 -0.93297347]\n", + " [ 0.33452962 0.06959294 -0.93981209]\n", + " [ 0.31096952 0.0971977 -0.94543671]\n", + " [ 0.55457444 0.08420421 -0.82786281]\n", + " [ 0.55457444 0.08420421 -0.82786281]\n", + " [ 0.3025323 0.10693185 -0.94712184]\n", + " [ 0.3025323 0.10693185 -0.94712184]\n", + " [ 0.54154797 0.08566589 -0.8362937 ]\n", + " [ 0.52142692 0.06317584 -0.85095404]\n", + " [ 0.50011649 0.04023898 -0.86502273]\n", + " [ 0.47772769 0.01697845 -0.87834389]\n", + " [ 0.45437741 -0.0064782 -0.89078572]\n", + " [ 0.43019119 -0.02999899 -0.90223922]\n", + " [ 0.52290769 0.11227324 -0.84496288]\n", + " [ 0.50238601 0.08984479 -0.85996291]\n", + " [ 0.48070851 0.06691227 -0.87432378]\n", + " [ 0.45798296 0.04359839 -0.8878912 ]\n", + " [ 0.43432463 0.02003102 -0.90053366]\n", + " [ 0.40985902 -0.00365683 -0.91214155]\n", + " [ 0.50311517 0.13921902 -0.85293211]\n", + " [ 0.4822291 0.11689445 -0.86821125]\n", + " [ 0.46022096 0.09400969 -0.88281303]\n", + " [ 0.43719632 0.07068659 -0.89658395]\n", + " [ 0.41326983 0.04705289 -0.90939215]\n", + " [ 0.38856767 0.02324225 -0.92112701]\n", + " [ 0.48227329 0.16634025 -0.86008337]\n", + " [ 0.46105597 0.14416263 -0.87558239]\n", + " [ 0.43875155 0.12137 -0.8903743 ]\n", + " [ 0.41546456 0.09808298 -0.90430577]\n", + " [ 0.39130988 0.07442867 -0.91724421]\n", + " [ 0.36641486 0.05054087 -0.92907791]\n", + " [ 0.46049095 0.1934749 -0.866323 ]\n", + " [ 0.438974 0.17148696 -0.88198302]\n", + " [ 0.41640715 0.14883072 -0.89691388]\n", + " [ 0.39289487 0.12562526 -0.91096208]\n", + " [ 0.36855294 0.10199667 -0.92399427]\n", + " [ 0.34351001 0.07807832 -0.93589778]\n", + " [ 0.4378857 0.22046166 -0.87158062]\n", + " [ 0.41610068 0.19870483 -0.88734244]\n", + " [ 0.39330591 0.17622814 -0.9023603 ]\n", + " [ 0.36960659 0.15314907 -0.9164804 ]\n", + " [ 0.34511969 0.12959236 -0.92956883]\n", + " [ 0.31997519 0.10569053 -0.94151229]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:fp_optics: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:cartToSphere: vec: [[ 0.24102817 0.23669754 -0.94121182]\n", + " [ 0.23772732 0.2628044 -0.93510404]\n", + " [ 0.23403048 0.28924253 -0.92820714]\n", + " [ 0.229958 0.31588838 -0.92050739]\n", + " [ 0.22552981 0.34262248 -0.91200117]\n", + " [ 0.22076558 0.36932919 -0.90269513]\n", + " [ 0.21568504 0.39589647 -0.89260627]\n", + " [ 0.21030844 0.42221586 -0.88176194]\n", + " [ 0.24102817 0.23669754 -0.94121182]\n", + " [ 0.21544493 0.23237735 -0.94846415]\n", + " [ 0.18911842 0.22793709 -0.95513292]\n", + " [ 0.1621562 0.22337112 -0.96115072]\n", + " [ 0.13466584 0.21867858 -0.96645993]\n", + " [ 0.10675526 0.21386349 -0.97101273]\n", + " [ 0.0785332 0.20893451 -0.97477121]\n", + " [ 0.05010944 0.20390457 -0.97770751]\n", + " [ 0.21030844 0.42221586 -0.88176194]\n", + " [ 0.1834793 0.41959313 -0.88897523]\n", + " [ 0.15595303 0.41658197 -0.89562163]\n", + " [ 0.12783219 0.41317546 -0.90163461]\n", + " [ 0.09922037 0.40937095 -0.90695686]\n", + " [ 0.07022409 0.40517039 -0.9115402 ]\n", + " [ 0.04095377 0.4005806 -0.91534582]\n", + " [ 0.01152367 0.39561347 -0.91834481]\n", + " [ 0.05010944 0.20390457 -0.97770751]\n", + " [ 0.04492844 0.23084953 -0.97195161]\n", + " [ 0.03960334 0.25813644 -0.96529641]\n", + " [ 0.03415395 0.28564659 -0.95772623]\n", + " [ 0.02860029 0.31326395 -0.94923533]\n", + " [ 0.02296295 0.34087359 -0.93982865]\n", + " [ 0.01726334 0.36836116 -0.92952248]\n", + " [ 0.01152367 0.39561347 -0.91834481]\n", + " [ 0.23955244 0.24801724 -0.93867038]\n", + " [ 0.23523687 0.28025355 -0.93065652]\n", + " [ 0.23034692 0.31286421 -0.9214425 ]\n", + " [ 0.22491949 0.34562762 -0.91101744]\n", + " [ 0.2189908 0.37833084 -0.89939358]\n", + " [ 0.21259739 0.41076908 -0.88660652]\n", + " [ 0.22996101 0.2349171 -0.94442146]\n", + " [ 0.19809148 0.22954346 -0.95292684]\n", + " [ 0.16521241 0.22398315 -0.96048759]\n", + " [ 0.13152183 0.21823258 -0.96699356]\n", + " [ 0.09721848 0.21229912 -0.97235675]\n", + " [ 0.06250298 0.20620052 -0.97651151]\n", + " [ 0.19872209 0.42102966 -0.88501048]\n", + " [ 0.1653587 0.41755421 -0.89347915]\n", + " [ 0.13105005 0.41348815 -0.9010291 ]\n", + " [ 0.09598632 0.40882483 -0.90755104]\n", + " [ 0.06036372 0.40356787 -0.91295629]\n", + " [ 0.02438716 0.39773194 -0.9171775 ]\n", + " [ 0.0479673 0.21562026 -0.97529844]\n", + " [ 0.04151901 0.24888928 -0.96764162]\n", + " [ 0.03487378 0.28255355 -0.95861739]\n", + " [ 0.02806835 0.31639845 -0.94821105]\n", + " [ 0.02114064 0.35021232 -0.93643174]\n", + " [ 0.01413042 0.38378508 -0.92331433]\n", + " [ 0.24093148 0.23677153 -0.94121797]\n", + " [ 0.24093148 0.23677153 -0.94121797]\n", + " [ 0.01164412 0.39553841 -0.91837562]\n", + " [ 0.01164412 0.39553841 -0.91837562]\n", + " [ 0.22852608 0.24621195 -0.94188933]\n", + " [ 0.1965012 0.24095829 -0.95043484]\n", + " [ 0.16347101 0.23548937 -0.95803026]\n", + " [ 0.12963306 0.22980173 -0.96456541]\n", + " [ 0.09518569 0.22390308 -0.96995211]\n", + " [ 0.06032959 0.21781152 -0.97412447]\n", + " [ 0.22406828 0.27858604 -0.9339075 ]\n", + " [ 0.19164922 0.27366952 -0.94253677]\n", + " [ 0.15823661 0.26845899 -0.95020574]\n", + " [ 0.12402604 0.26295148 -0.95680409]\n", + " [ 0.08921479 0.25715541 -0.96224312]\n", + " [ 0.05400399 0.25108964 -0.96645619]\n", + " [ 0.21905995 0.31133251 -0.92470796]\n", + " [ 0.18631421 0.30675009 -0.93337634]\n", + " [ 0.15258599 0.30179882 -0.94108182]\n", + " [ 0.11806876 0.29647583 -0.94771401]\n", + " [ 0.08295896 0.29078963 -0.95318372]\n", + " [ 0.0474585 0.28475919 -0.95742357]\n", + " [ 0.21353765 0.34423009 -0.91427967]\n", + " [ 0.18053153 0.33998005 -0.922942 ]\n", + " [ 0.14655353 0.33529044 -0.93064622]\n", + " [ 0.11179534 0.33015786 -0.93728202]\n", + " [ 0.07645293 0.32459004 -0.94275991]\n", + " [ 0.04072924 0.31860534 -0.94701202]\n", + " [ 0.20753713 0.37706595 -0.90263481]\n", + " [ 0.17433569 0.37314692 -0.91124555]\n", + " [ 0.14017311 0.3687216 -0.91891016]\n", + " [ 0.10523995 0.36378542 -0.92551862]\n", + " [ 0.06973205 0.35834465 -0.9309815 ]\n", + " [ 0.03385339 0.35241633 -0.93523082]\n", + " [ 0.20109457 0.40963502 -0.88980904]\n", + " [ 0.1677621 0.40604455 -0.89832271]\n", + " [ 0.13348004 0.40188485 -0.90590929]\n", + " [ 0.09843851 0.39714981 -0.91245925]\n", + " [ 0.0628336 0.39184377 -0.91788365]\n", + " [ 0.02687003 0.38598206 -0.92211488]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:fp_optics: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:cartToSphere: vec: [[ 0.53551852 0.82654642 -0.17332319]\n", + " [ 0.54246538 0.8270747 -0.14723709]\n", + " [ 0.54902923 0.82707499 -0.12047352]\n", + " [ 0.55516782 0.8265072 -0.09313724]\n", + " [ 0.56084436 0.8253391 -0.06533737]\n", + " [ 0.56602691 0.82354771 -0.03718476]\n", + " [ 0.57068808 0.82111987 -0.00879094]\n", + " [ 0.57480508 0.81805242 0.0197323 ]\n", + " [ 0.53551852 0.82654642 -0.17332319]\n", + " [ 0.51310881 0.84122964 -0.17044658]\n", + " [ 0.4898665 0.85560633 -0.1672382 ]\n", + " [ 0.46586257 0.86958046 -0.16371284]\n", + " [ 0.44117549 0.88306281 -0.15988826]\n", + " [ 0.41588966 0.89597287 -0.15578318]\n", + " [ 0.39009478 0.90823958 -0.15141639]\n", + " [ 0.36388562 0.91980166 -0.14680656]\n", + " [ 0.57480508 0.81805242 0.0197323 ]\n", + " [ 0.5520288 0.83346353 0.02455085]\n", + " [ 0.52834162 0.8485209 0.02945192]\n", + " [ 0.50381571 0.86312537 0.03441396]\n", + " [ 0.47852676 0.87718784 0.03941625]\n", + " [ 0.45255601 0.89062802 0.04443852]\n", + " [ 0.42599243 0.90337373 0.04946052]\n", + " [ 0.39893372 0.91536102 0.05446182]\n", + " [ 0.36388562 0.91980166 -0.14680656]\n", + " [ 0.36963362 0.92146932 -0.11943739]\n", + " [ 0.37519177 0.92242751 -0.09142551]\n", + " [ 0.38052191 0.92263169 -0.06287956]\n", + " [ 0.3855899 0.92204704 -0.03390709]\n", + " [ 0.39036522 0.92064851 -0.00461704]\n", + " [ 0.3948209 0.91842122 0.02487811]\n", + " [ 0.39893372 0.91536102 0.05446182]\n", + " [ 0.5385162 0.82688979 -0.16202955]\n", + " [ 0.54677792 0.82718841 -0.12958873]\n", + " [ 0.55442183 0.8266532 -0.09623374]\n", + " [ 0.56137797 0.82522145 -0.06216386]\n", + " [ 0.56758751 0.8228509 -0.02758306]\n", + " [ 0.57300193 0.81952148 0.00730322]\n", + " [ 0.52587851 0.8329827 -0.17202213]\n", + " [ 0.4978442 0.85078559 -0.16827071]\n", + " [ 0.46862877 0.86803196 -0.16403533]\n", + " [ 0.43837371 0.88455459 -0.15934762]\n", + " [ 0.40723432 0.90020532 -0.15424196]\n", + " [ 0.37537786 0.91485739 -0.14875288]\n", + " [ 0.56497787 0.82482004 0.02172361]\n", + " [ 0.53644158 0.84348319 0.0276865 ]\n", + " [ 0.50660847 0.86151533 0.03375201]\n", + " [ 0.47561639 0.87874826 0.03988166]\n", + " [ 0.44361516 0.89503412 0.0460381 ]\n", + " [ 0.41077223 0.91024338 0.05218395]\n", + " [ 0.36650306 0.9205743 -0.13497582]\n", + " [ 0.37342606 0.92214681 -0.10098629]\n", + " [ 0.38002535 0.92260842 -0.06613951]\n", + " [ 0.38623642 0.92189099 -0.03063383]\n", + " [ 0.39200309 0.91994846 0.00532991]\n", + " [ 0.39727722 0.91675787 0.04154291]\n", + " [ 0.53546773 0.8265997 -0.17322599]\n", + " [ 0.53546773 0.8265997 -0.17322599]\n", + " [ 0.39901352 0.91533326 0.05434359]\n", + " [ 0.39901352 0.91533326 0.05434359]\n", + " [ 0.52890439 0.83331451 -0.16077026]\n", + " [ 0.50079718 0.85123001 -0.15687465]\n", + " [ 0.47149716 0.86857875 -0.15251684]\n", + " [ 0.44114671 0.88519226 -0.14773033]\n", + " [ 0.40990137 0.90092195 -0.14255005]\n", + " [ 0.37792859 0.91564082 -0.13701045]\n", + " [ 0.53711081 0.83371702 -0.12817137]\n", + " [ 0.50882542 0.8519115 -0.12386884]\n", + " [ 0.47931829 0.8695128 -0.11916994]\n", + " [ 0.44873282 0.88635067 -0.11411113]\n", + " [ 0.41722435 0.90227611 -0.10872746]\n", + " [ 0.38496066 0.91716163 -0.10305256]\n", + " [ 0.54471343 0.83326275 -0.09465973]\n", + " [ 0.5162942 0.85167355 -0.08995809]\n", + " [ 0.48662938 0.8694705 -0.08492877]\n", + " [ 0.45586169 0.88648324 -0.07960894]\n", + " [ 0.42414531 0.90256295 -0.07403293]\n", + " [ 0.39164815 0.91758155 -0.06823356]\n", + " [ 0.55164315 0.83188778 -0.06043644]\n", + " [ 0.52313585 0.85045029 -0.05534602]\n", + " [ 0.4933633 0.86838528 -0.04999659]\n", + " [ 0.46246653 0.88552307 -0.04442528]\n", + " [ 0.43059817 0.90171512 -0.0386661 ]\n", + " [ 0.39792611 0.91683266 -0.03275197]\n", + " [ 0.55784135 0.82954941 -0.02570609]\n", + " [ 0.52929161 0.84819858 -0.02023738]\n", + " [ 0.49946072 0.86621389 -0.01457705]\n", + " [ 0.46848791 0.88342645 -0.00876237]\n", + " [ 0.43652428 0.89968803 -0.00282814]\n", + " [ 0.40373761 0.91486926 0.00319143]\n", + " [ 0.56325933 0.82622754 0.00932559]\n", + " [ 0.5347118 0.84489846 0.01516168]\n", + " [ 0.50487089 0.86293637 0.02112343]\n", + " [ 0.47387464 0.88017298 0.02717278]\n", + " [ 0.44187306 0.89646031 0.03327313]\n", + " [ 0.40903373 0.91166879 0.03938804]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:fp_optics: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:cartToSphere: vec: [[ 4.24857664e-01 9.18674379e-02 9.00586664e-01]\n", + " [ 4.43120654e-01 1.08593104e-01 8.89860452e-01]\n", + " [ 4.61526468e-01 1.25463426e-01 8.78209683e-01]\n", + " [ 4.79966339e-01 1.42413211e-01 8.65650502e-01]\n", + " [ 4.98339885e-01 1.59377229e-01 8.52206699e-01]\n", + " [ 5.16554409e-01 1.76289977e-01 8.37910130e-01]\n", + " [ 5.34524223e-01 1.93085759e-01 8.22801157e-01]\n", + " [ 5.52170280e-01 2.09699032e-01 8.06928930e-01]\n", + " [ 4.24857664e-01 9.18674379e-02 9.00586664e-01]\n", + " [ 4.38770100e-01 6.92949087e-02 8.95923554e-01]\n", + " [ 4.52771032e-01 4.62668393e-02 8.90425613e-01]\n", + " [ 4.66767444e-01 2.28720398e-02 8.84084285e-01]\n", + " [ 4.80674877e-01 -8.00303654e-04 8.76898525e-01]\n", + " [ 4.94416776e-01 -2.46600745e-02 8.68875096e-01]\n", + " [ 5.07923788e-01 -4.86159487e-02 8.60029020e-01]\n", + " [ 5.21133269e-01 -7.25755050e-02 8.50383979e-01]\n", + " [ 5.52170280e-01 2.09699032e-01 8.06928930e-01]\n", + " [ 5.68003964e-01 1.87398057e-01 8.01407178e-01]\n", + " [ 5.83708857e-01 1.64490238e-01 7.95126991e-01]\n", + " [ 5.99196201e-01 1.41058848e-01 7.88077607e-01]\n", + " [ 6.14383459e-01 1.17188607e-01 7.80256237e-01]\n", + " [ 6.29193411e-01 9.29673109e-02 7.71668796e-01]\n", + " [ 6.43553977e-01 6.84865998e-02 7.62330548e-01]\n", + " [ 6.57398697e-01 4.38417622e-02 7.52266477e-01]\n", + " [ 5.21133269e-01 -7.25755050e-02 8.50383979e-01]\n", + " [ 5.41201370e-01 -5.66976139e-02 8.38979414e-01]\n", + " [ 5.61232821e-01 -4.04640369e-02 8.26668242e-01]\n", + " [ 5.81123996e-01 -2.39364367e-02 8.13462936e-01]\n", + " [ 6.00777023e-01 -7.17713937e-03 7.99384424e-01]\n", + " [ 6.20098722e-01 9.74988915e-03 7.84463202e-01]\n", + " [ 6.39000441e-01 2.67787143e-02 7.68740097e-01]\n", + " [ 6.57398697e-01 4.38417622e-02 7.52266477e-01]\n", + " [ 4.32843424e-01 9.90615307e-02 8.96009701e-01]\n", + " [ 4.55338403e-01 1.19665908e-01 8.82239769e-01]\n", + " [ 4.77938731e-01 1.40422925e-01 8.67096287e-01]\n", + " [ 5.00456157e-01 1.61212528e-01 8.50619866e-01]\n", + " [ 5.22719949e-01 1.81914139e-01 8.32869198e-01]\n", + " [ 5.44575124e-01 2.02406850e-01 8.13922233e-01]\n", + " [ 4.30969017e-01 8.21442151e-02 8.98620072e-01]\n", + " [ 4.48093417e-01 5.41614231e-02 8.92344569e-01]\n", + " [ 4.65257175e-01 2.55825034e-02 8.84805796e-01]\n", + " [ 4.82301271e-01 -3.42854354e-03 8.75998704e-01]\n", + " [ 4.99084694e-01 -3.27057839e-02 8.65935794e-01]\n", + " [ 5.15482564e-01 -6.20806159e-02 8.54648304e-01]\n", + " [ 5.59023718e-01 1.99999025e-01 8.04669418e-01]\n", + " [ 5.78353834e-01 1.72247769e-01 7.97394224e-01]\n", + " [ 5.97401670e-01 1.43667799e-01 7.88968192e-01]\n", + " [ 6.16012771e-01 1.14414380e-01 7.79382843e-01]\n", + " [ 6.34044958e-01 8.46492364e-02 7.68649139e-01]\n", + " [ 6.51367832e-01 5.45426359e-02 7.56799213e-01]\n", + " [ 5.29835822e-01 -6.56182352e-02 8.45557951e-01]\n", + " [ 5.54419601e-01 -4.59105164e-02 8.30969994e-01]\n", + " [ 5.78844738e-01 -2.57299590e-02 8.15031741e-01]\n", + " [ 6.02928750e-01 -5.19096608e-03 7.97778150e-01]\n", + " [ 6.26500081e-01 1.55886602e-02 7.79265450e-01]\n", + " [ 6.49397623e-01 3.64868140e-02 7.59573195e-01]\n", + " [ 4.24967060e-01 9.18479994e-02 9.00537030e-01]\n", + " [ 4.24967060e-01 9.18479994e-02 9.00537030e-01]\n", + " [ 6.57290334e-01 4.38678776e-02 7.52359638e-01]\n", + " [ 6.57290334e-01 4.38678776e-02 7.52359638e-01]\n", + " [ 4.38919377e-01 8.93474874e-02 8.94073156e-01]\n", + " [ 4.56235258e-01 6.13259317e-02 8.87743499e-01]\n", + " [ 4.73564237e-01 3.26935136e-02 8.80152287e-01]\n", + " [ 4.90748165e-01 3.61384436e-03 8.71293968e-01]\n", + " [ 5.07646661e-01 -2.57471802e-02 8.61180556e-01]\n", + " [ 5.24135071e-01 -5.52205924e-02 8.49842994e-01]\n", + " [ 4.61608249e-01 1.09936164e-01 8.80245343e-01]\n", + " [ 4.79425085e-01 8.18427324e-02 8.73758179e-01]\n", + " [ 4.97185558e-01 5.30965595e-02 8.66018058e-01]\n", + " [ 5.14733904e-01 2.38599474e-02 8.57017917e-01]\n", + " [ 5.31931056e-01 -5.70140677e-03 8.46768472e-01]\n", + " [ 5.48652438e-01 -3.54174761e-02 8.35300008e-01]\n", + " [ 4.84379832e-01 1.30697378e-01 8.65040099e-01]\n", + " [ 5.02638457e-01 1.02588658e-01 8.58388111e-01]\n", + " [ 5.20778565e-01 7.37853647e-02 8.50497152e-01]\n", + " [ 5.38646122e-01 4.44482264e-02 8.41358847e-01]\n", + " [ 5.56102465e-01 1.47425063e-02 8.30982977e-01]\n", + " [ 5.73022286e-01 -1.51608868e-02 8.19399541e-01]\n", + " [ 5.07046756e-01 1.51511061e-01 8.48497487e-01]\n", + " [ 5.25690467e-01 1.23443745e-01 8.41671655e-01]\n", + " [ 5.44160238e-01 9.46405137e-02 8.33626300e-01]\n", + " [ 5.62302832e-01 6.52603500e-02 8.24352238e-01]\n", + " [ 5.79979102e-01 3.54677698e-02 8.13858881e-01]\n", + " [ 5.97062391e-01 5.43415509e-03 8.02176397e-01]\n", + " [ 5.29438857e-01 1.72256340e-01 8.30675779e-01]\n", + " [ 5.48412115e-01 1.44286469e-01 8.23665932e-01]\n", + " [ 5.67161930e-01 1.15540312e-01 8.15461699e-01]\n", + " [ 5.85534964e-01 8.61751023e-02 8.06053756e-01]\n", + " [ 6.03390955e-01 5.63542971e-02 7.95451789e-01]\n", + " [ 6.20601591e-01 2.62491974e-02 7.83686573e-01]\n", + " [ 5.51401250e-01 1.92811805e-01 8.11652801e-01]\n", + " [ 5.70648272e-01 1.64994092e-01 8.04448568e-01]\n", + " [ 5.89627525e-01 1.36361076e-01 7.96081051e-01]\n", + " [ 6.08184917e-01 1.07068461e-01 7.86541449e-01]\n", + " [ 6.26178775e-01 7.72784350e-02 7.75840309e-01]\n", + " [ 6.43479189e-01 4.71616309e-02 7.64009368e-01]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:fp_optics: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:cartToSphere: vec: [[-0.5560163 0.14772017 -0.81793925]\n", + " [-0.57724284 0.13437328 -0.80544058]\n", + " [-0.59842418 0.12065343 -0.79204245]\n", + " [-0.61945078 0.10660928 -0.77776294]\n", + " [-0.64021912 0.09229079 -0.76262827]\n", + " [-0.66063063 0.07775015 -0.74667401]\n", + " [-0.68059154 0.06304215 -0.72994579]\n", + " [-0.70001357 0.04822395 -0.71249944]\n", + " [-0.5560163 0.14772017 -0.81793925]\n", + " [-0.54643179 0.12243784 -0.82850545]\n", + " [-0.53649491 0.09708644 -0.83830033]\n", + " [-0.52625309 0.07176511 -0.8472942 ]\n", + " [-0.5157609 0.04657285 -0.85546576]\n", + " [-0.50508046 0.02160833 -0.86280172]\n", + " [-0.49428204 -0.00302983 -0.86929631]\n", + " [-0.48344467 -0.02724256 -0.87495091]\n", + " [-0.70001357 0.04822395 -0.71249944]\n", + " [-0.68998012 0.02214405 -0.72348952]\n", + " [-0.67936133 -0.00387299 -0.73379369]\n", + " [-0.66820803 -0.02972399 -0.74338047]\n", + " [-0.65657777 -0.05530838 -0.75222777]\n", + " [-0.6445343 -0.08052877 -0.76032273]\n", + " [-0.63214737 -0.10529052 -0.76766113]\n", + " [-0.61949319 -0.12950026 -0.77424664]\n", + " [-0.48344467 -0.02724256 -0.87495091]\n", + " [-0.50311175 -0.04168587 -0.86321541]\n", + " [-0.5228787 -0.05627239 -0.85054764]\n", + " [-0.54263101 -0.07095037 -0.83696931]\n", + " [-0.56226293 -0.0856669 -0.82250932]\n", + " [-0.58167656 -0.10036776 -0.80720424]\n", + " [-0.60078123 -0.11499757 -0.7910989 ]\n", + " [-0.61949319 -0.12950026 -0.77424664]\n", + " [-0.56523713 0.14186326 -0.81263879]\n", + " [-0.59123588 0.12524753 -0.796714 ]\n", + " [-0.6170572 0.10812002 -0.77945524]\n", + " [-0.64250812 0.09057211 -0.76090736]\n", + " [-0.66740715 0.07269995 -0.7411359 ]\n", + " [-0.69158389 0.05460539 -0.72022912]\n", + " [-0.55195588 0.13666652 -0.82259769]\n", + " [-0.53996601 0.10562068 -0.83503352]\n", + " [-0.52749303 0.07456969 -0.84628037]\n", + " [-0.51463444 0.04369589 -0.85629554]\n", + " [-0.50150466 0.01318099 -0.86505453]\n", + " [-0.48823666 -0.01679333 -0.87254968]\n", + " [-0.69564848 0.03690276 -0.71743388]\n", + " [-0.68295196 0.00496837 -0.73044639]\n", + " [-0.66942609 -0.02676895 -0.74239621]\n", + " [-0.6551741 -0.0581229 -0.75323876]\n", + " [-0.64031327 -0.08891416 -0.76295032]\n", + " [-0.62497466 -0.11896909 -0.77152643]\n", + " [-0.49203719 -0.0334369 -0.86993182]\n", + " [-0.51622477 -0.05124108 -0.85491891]\n", + " [-0.54044746 -0.06920922 -0.83852646]\n", + " [-0.56450695 -0.08724443 -0.82080467]\n", + " [-0.58822296 -0.10524689 -0.80182095]\n", + " [-0.61143144 -0.12311435 -0.78166134]\n", + " [-0.55605671 0.14758899 -0.81793547]\n", + " [-0.55605671 0.14758899 -0.81793547]\n", + " [-0.6194736 -0.1293692 -0.77428423]\n", + " [-0.6194736 -0.1293692 -0.77428423]\n", + " [-0.56111843 0.13089878 -0.81731977]\n", + " [-0.54906024 0.09974141 -0.82980992]\n", + " [-0.53649287 0.06859048 -0.8411128 ]\n", + " [-0.52351365 0.03762877 -0.85118596]\n", + " [-0.51023651 0.007038 -0.86000533]\n", + " [-0.49679363 -0.02300054 -0.86756387]\n", + " [-0.58707183 0.11417762 -0.80144253]\n", + " [-0.57483745 0.08274317 -0.81407339]\n", + " [-0.56202385 0.05134884 -0.82552558]\n", + " [-0.54872843 0.02017881 -0.83575709]\n", + " [-0.53506419 -0.0105852 -0.84474509]\n", + " [-0.52116138 -0.04076319 -0.85248412]\n", + " [-0.6128557 0.09696508 -0.78422297]\n", + " [-0.6004706 0.06531219 -0.79697514]\n", + " [-0.58744122 0.03373438 -0.80856342]\n", + " [-0.57386577 0.00241712 -0.8189458 ]\n", + " [-0.55985722 -0.02845793 -0.82810026]\n", + " [-0.54554469 -0.05871226 -0.83602265]\n", + " [-0.63827726 0.07935317 -0.7657057 ]\n", + " [-0.62576724 0.04754233 -0.77855962]\n", + " [-0.61255236 0.01584256 -0.79027123]\n", + " [-0.59873216 -0.0155597 -0.80079816]\n", + " [-0.58442045 -0.04648312 -0.81011855]\n", + " [-0.56974611 -0.07675073 -0.818229 ]\n", + " [-0.6631553 0.06143874 -0.74595598]\n", + " [-0.65054709 0.02953225 -0.75889152]\n", + " [-0.63717782 -0.00222655 -0.77071361]\n", + " [-0.62314868 -0.03365084 -0.78137913]\n", + " [-0.60857485 -0.06455995 -0.79086577]\n", + " [-0.59358582 -0.09477846 -0.79917015]\n", + " [-0.68731971 0.04332423 -0.72506181]\n", + " [-0.67464116 0.01138579 -0.73805804]\n", + " [-0.66115015 -0.02036837 -0.74997707]\n", + " [-0.64694943 -0.05175171 -0.76077473]\n", + " [-0.63215575 -0.08258449 -0.77042774]\n", + " [-0.61689972 -0.11269269 -0.77893202]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:fp_optics: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:cartToSphere: vec: [[ 0.07966218 -0.4288769 0.89984362]\n", + " [ 0.05432482 -0.41887215 0.90641874]\n", + " [ 0.02844072 -0.40833073 0.91239089]\n", + " [ 0.00211066 -0.39727629 0.91769662]\n", + " [-0.02456358 -0.38573696 0.92228175]\n", + " [-0.0514781 -0.37374603 0.92610146]\n", + " [-0.07852679 -0.36134216 0.92912076]\n", + " [-0.10560209 -0.34856921 0.93131504]\n", + " [ 0.07966218 -0.4288769 0.89984362]\n", + " [ 0.09181936 -0.40451121 0.90991202]\n", + " [ 0.10377184 -0.37984924 0.91920942]\n", + " [ 0.1154715 -0.35499116 0.92771095]\n", + " [ 0.12686982 -0.33004031 0.93540229]\n", + " [ 0.13791738 -0.30510302 0.94227965]\n", + " [ 0.14856287 -0.28028889 0.94834973]\n", + " [ 0.15875199 -0.25571164 0.95362957]\n", + " [-0.10560209 -0.34856921 0.93131504]\n", + " [-0.09289276 -0.32342213 0.94168416]\n", + " [-0.08014254 -0.29806423 0.95117553]\n", + " [-0.06740288 -0.27259955 0.95976369]\n", + " [-0.05472523 -0.24713369 0.9674348 ]\n", + " [-0.04216065 -0.22177293 0.97418645]\n", + " [-0.02975979 -0.19662408 0.98002721]\n", + " [-0.01757335 -0.1717953 0.98497591]\n", + " [ 0.15875199 -0.25571164 0.95362957]\n", + " [ 0.13502522 -0.24443747 0.96021795]\n", + " [ 0.11063531 -0.23287454 0.96619319]\n", + " [ 0.08568973 -0.22104864 0.971491 ]\n", + " [ 0.06029307 -0.20899036 0.97605726]\n", + " [ 0.03454851 -0.19673497 0.97984782]\n", + " [ 0.00855879 -0.18432209 0.98282863]\n", + " [-0.01757335 -0.1717953 0.98497591]\n", + " [ 0.06873072 -0.42449909 0.90281593]\n", + " [ 0.03729725 -0.41187277 0.91047775]\n", + " [ 0.00514259 -0.39846355 0.91716975]\n", + " [-0.02754639 -0.38432132 0.92278834]\n", + " [-0.06057841 -0.3695074 0.92725107]\n", + " [-0.09375749 -0.35409513 0.93049781]\n", + " [ 0.08489943 -0.41826247 0.90434982]\n", + " [ 0.09966826 -0.3881873 0.91617513]\n", + " [ 0.11408199 -0.35776632 0.92681636]\n", + " [ 0.12805149 -0.32718849 0.93624276]\n", + " [ 0.14148564 -0.29664958 0.94444737]\n", + " [ 0.15428882 -0.26635302 0.95144681]\n", + " [-0.09997659 -0.33768174 0.93593575]\n", + " [-0.08436626 -0.30670668 0.94805767]\n", + " [-0.06874579 -0.27551804 0.95883462]\n", + " [-0.05320992 -0.24430962 0.96823629]\n", + " [-0.03785266 -0.21327706 0.9762582 ]\n", + " [-0.0227672 -0.18261749 0.9829204 ]\n", + " [ 0.14846107 -0.25091678 0.95655637]\n", + " [ 0.11892029 -0.23690253 0.96422775]\n", + " [ 0.08849072 -0.22247946 0.97091312]\n", + " [ 0.05736599 -0.20770188 0.97650861]\n", + " [ 0.02573617 -0.19263468 0.98093299]\n", + " [-0.00620959 -0.17735248 0.98412781]\n", + " [ 0.07961845 -0.42876092 0.89990276]\n", + " [ 0.07961845 -0.42876092 0.89990276]\n", + " [-0.01752511 -0.17192251 0.98495458]\n", + " [-0.01752511 -0.17192251 0.98495458]\n", + " [ 0.07403415 -0.41395999 0.90727949]\n", + " [ 0.08888172 -0.38377276 0.91914009]\n", + " [ 0.10339651 -0.35324486 0.92979957]\n", + " [ 0.11748961 -0.32256568 0.93922711]\n", + " [ 0.13107063 -0.29193101 0.94741584]\n", + " [ 0.14404518 -0.2615437 0.95438246]\n", + " [ 0.04265767 -0.40123169 0.91498276]\n", + " [ 0.05770958 -0.37076586 0.92693165]\n", + " [ 0.07249155 -0.33997626 0.93763592]\n", + " [ 0.08691465 -0.30905372 0.94706475]\n", + " [ 0.10088971 -0.27819421 0.95521163]\n", + " [ 0.11432508 -0.24759919 0.96209377]\n", + " [ 0.01055011 -0.38774034 0.92170826]\n", + " [ 0.02577877 -0.35705453 0.93372775]\n", + " [ 0.04080056 -0.32606526 0.94446639]\n", + " [ 0.05552576 -0.29496476 0.95389343]\n", + " [ 0.06986523 -0.26394932 0.96200291]\n", + " [ 0.08372869 -0.23321926 0.96881282]\n", + " [-0.02210192 -0.37353644 0.92735216]\n", + " [-0.00672462 -0.34269097 0.93942412]\n", + " [ 0.00850973 -0.31156555 0.95018656]\n", + " [ 0.02351006 -0.28035355 0.95960886]\n", + " [ 0.03818631 -0.24925145 0.96768565]\n", + " [ 0.05244831 -0.21845855 0.97443575]\n", + " [-0.05510745 -0.35868189 0.93183178]\n", + " [-0.03961059 -0.32773867 0.94393769]\n", + " [-0.0241919 -0.29654196 0.95471337]\n", + " [-0.00894405 -0.26528575 0.96412835]\n", + " [ 0.0060414 -0.23416642 0.97217775]\n", + " [ 0.02067338 -0.20338234 0.97888111]\n", + " [-0.08827079 -0.34325049 0.93508683]\n", + " [-0.07268458 -0.31227253 0.94720791]\n", + " [-0.05711128 -0.28107018 0.95798636]\n", + " [-0.04164511 -0.24983739 0.96739184]\n", + " [-0.02637944 -0.21877006 0.9754198 ]\n", + " [-0.01140685 -0.18806564 0.98209022]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:fp_optics: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:cartToSphere: vec: [[-9.26757816e-03 5.79743172e-01 -8.14746566e-01]\n", + " [-7.86534718e-03 5.56715949e-01 -8.30665690e-01]\n", + " [-6.42999816e-03 5.32784296e-01 -8.46226653e-01]\n", + " [-4.96683235e-03 5.08019451e-01 -8.61331277e-01]\n", + " [-3.48124434e-03 4.82498066e-01 -8.75890117e-01]\n", + " [-1.97880276e-03 4.56303853e-01 -8.89821824e-01]\n", + " [-4.65281134e-04 4.29528486e-01 -9.03053189e-01]\n", + " [ 1.05336903e-03 4.02271509e-01 -9.15519811e-01]\n", + " [-9.26757816e-03 5.79743172e-01 -8.14746566e-01]\n", + " [ 1.97281961e-02 5.80779695e-01 -8.13821691e-01]\n", + " [ 4.86189969e-02 5.81246279e-01 -8.12273941e-01]\n", + " [ 7.72924926e-02 5.81145679e-01 -8.10120713e-01]\n", + " [ 1.05637285e-01 5.80485439e-01 -8.07389261e-01]\n", + " [ 1.33542907e-01 5.79277462e-01 -8.04116853e-01]\n", + " [ 1.60899489e-01 5.77537645e-01 -8.00350937e-01]\n", + " [ 1.87597359e-01 5.75285750e-01 -7.96149193e-01]\n", + " [ 1.05336903e-03 4.02271509e-01 -9.15519811e-01]\n", + " [ 3.10272969e-02 4.03466162e-01 -9.14468350e-01]\n", + " [ 6.08760737e-02 4.04293416e-01 -9.12601193e-01]\n", + " [ 9.04824359e-02 4.04755193e-01 -9.09937450e-01]\n", + " [ 1.19732732e-01 4.04858107e-01 -9.06506473e-01]\n", + " [ 1.48517384e-01 4.04613229e-01 -9.02347340e-01]\n", + " [ 1.76730192e-01 4.04035858e-01 -8.97508476e-01]\n", + " [ 2.04266644e-01 4.03145380e-01 -8.92047611e-01]\n", + " [ 1.87597359e-01 5.75285750e-01 -7.96149193e-01]\n", + " [ 1.90683387e-01 5.52923042e-01 -8.11120186e-01]\n", + " [ 1.93545651e-01 5.29683207e-01 -8.25818250e-01]\n", + " [ 1.96177941e-01 5.05642092e-01 -8.40143018e-01]\n", + " [ 1.98573475e-01 4.80879995e-01 -8.54004102e-01]\n", + " [ 2.00724982e-01 4.55482055e-01 -8.67320921e-01]\n", + " [ 2.02625058e-01 4.29538629e-01 -8.80022529e-01]\n", + " [ 2.04266644e-01 4.03145380e-01 -8.92047611e-01]\n", + " [-8.56101488e-03 5.69823349e-01 -8.21722618e-01]\n", + " [-6.81852750e-03 5.40984218e-01 -8.41005103e-01]\n", + " [-5.03174276e-03 5.10856869e-01 -8.59651058e-01]\n", + " [-3.21055325e-03 4.79580078e-01 -8.77492246e-01]\n", + " [-1.36522041e-03 4.47308061e-01 -8.94378910e-01]\n", + " [ 4.93544201e-04 4.14212900e-01 -9.10179889e-01]\n", + " [ 3.38550271e-03 5.80188045e-01 -8.14475519e-01]\n", + " [ 3.88674024e-02 5.81075177e-01 -8.12921253e-01]\n", + " [ 7.40798871e-02 5.81108534e-01 -8.10447433e-01]\n", + " [ 1.08817473e-01 5.80300038e-01 -8.07100132e-01]\n", + " [ 1.42876753e-01 5.78671561e-01 -8.02947980e-01]\n", + " [ 1.76055556e-01 5.76253966e-01 -7.98082582e-01]\n", + " [ 1.41246755e-02 4.02931376e-01 -9.15121194e-01]\n", + " [ 5.07914429e-02 4.04148309e-01 -9.13282198e-01]\n", + " [ 8.71533803e-02 4.04814598e-01 -9.10235920e-01]\n", + " [ 1.22999695e-01 4.04940482e-01 -9.06032164e-01]\n", + " [ 1.58128577e-01 4.04546319e-01 -9.00742821e-01]\n", + " [ 1.92345319e-01 4.03661980e-01 -8.94460890e-01]\n", + " [ 1.88879600e-01 5.65656333e-01 -8.02718761e-01]\n", + " [ 1.92511204e-01 5.37648595e-01 -8.20897938e-01]\n", + " [ 1.95800764e-01 5.08398204e-01 -8.38566233e-01]\n", + " [ 1.98736046e-01 4.78051126e-01 -8.55553099e-01]\n", + " [ 2.01303700e-01 4.46764143e-01 -8.71710170e-01]\n", + " [ 2.03490220e-01 4.14705813e-01 -8.86910829e-01]\n", + " [-9.16363635e-03 5.79670560e-01 -8.14799404e-01]\n", + " [-9.16363635e-03 5.79670560e-01 -8.14799404e-01]\n", + " [ 2.04168585e-01 4.03239845e-01 -8.92027363e-01]\n", + " [ 2.04168585e-01 4.03239845e-01 -8.92027363e-01]\n", + " [ 4.03699315e-03 5.70344251e-01 -8.21395847e-01]\n", + " [ 3.96562386e-02 5.71250899e-01 -8.19816926e-01]\n", + " [ 7.50039423e-02 5.71318482e-01 -8.17294072e-01]\n", + " [ 1.09874340e-01 5.70559290e-01 -8.13873286e-01]\n", + " [ 1.44064202e-01 5.68995627e-01 -8.09623049e-01]\n", + " [ 1.77371814e-01 5.66658659e-01 -8.04634827e-01]\n", + " [ 5.90231740e-03 5.41514273e-01 -8.40670836e-01]\n", + " [ 4.18662650e-02 5.42476388e-01 -8.39027165e-01]\n", + " [ 7.75521232e-02 5.42643480e-01 -8.36375348e-01]\n", + " [ 1.12753103e-01 5.42028707e-01 -8.32761441e-01]\n", + " [ 1.47266469e-01 5.40655468e-01 -8.28253737e-01]\n", + " [ 1.80892131e-01 5.38555855e-01 -8.22943271e-01]\n", + " [ 7.78853578e-03 5.11395337e-01 -8.59310275e-01]\n", + " [ 4.40307111e-02 5.12413775e-01 -8.57609130e-01]\n", + " [ 7.99877924e-02 5.12685338e-01 -8.54842498e-01]\n", + " [ 1.15451737e-01 5.12223563e-01 -8.51056942e-01]\n", + " [ 1.50220187e-01 5.11052420e-01 -8.46321049e-01]\n", + " [ 1.84094834e-01 5.09204624e-01 -8.40725724e-01]\n", + " [ 9.68510807e-03 4.80126241e-01 -8.77145935e-01]\n", + " [ 4.61373638e-02 4.81202387e-01 -8.75394543e-01]\n", + " [ 8.22976025e-02 4.81584533e-01 -8.72527044e-01]\n", + " [ 1.17956533e-01 4.81285932e-01 -8.68590875e-01]\n", + " [ 1.52912037e-01 4.80330351e-01 -8.63655407e-01]\n", + " [ 1.86967412e-01 4.78750465e-01 -8.57811855e-01]\n", + " [ 1.15809956e-02 4.47861182e-01 -8.94028099e-01]\n", + " [ 4.81731682e-02 4.48996506e-01 -8.92233985e-01]\n", + " [ 8.44670651e-02 4.49495647e-01 -8.89280034e-01]\n", + " [ 1.20252417e-01 4.49370911e-01 -8.85214743e-01]\n", + " [ 1.55327254e-01 4.48645040e-01 -8.80108557e-01]\n", + " [ 1.89496088e-01 4.47349912e-01 -8.74053367e-01]\n", + " [ 1.34648043e-02 4.14772180e-01 -9.09825664e-01]\n", + " [ 5.01249654e-02 4.15967741e-01 -9.07996876e-01]\n", + " [ 8.64817536e-02 4.16589607e-01 -9.04971826e-01]\n", + " [ 1.22324409e-01 4.16648615e-01 -9.00800017e-01]\n", + " [ 1.57451079e-01 4.16165820e-01 -8.95552995e-01]\n", + " [ 1.91666960e-01 4.15171684e-01 -8.89323479e-01]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:fp_optics: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:cartToSphere: vec: [[ 0.57658473 0.4253156 -0.69760783]\n", + " [ 0.59860078 0.42261997 -0.68049207]\n", + " [ 0.62056996 0.4195286 -0.66248674]\n", + " [ 0.64237865 0.41603532 -0.64363366]\n", + " [ 0.66391949 0.4121383 -0.62398152]\n", + " [ 0.68509025 0.40784031 -0.6035873 ]\n", + " [ 0.70579368 0.40314914 -0.58251699]\n", + " [ 0.72593823 0.39807768 -0.56084565]\n", + " [ 0.57658473 0.4253156 -0.69760783]\n", + " [ 0.57079758 0.45126976 -0.68596336]\n", + " [ 0.56462835 0.47675403 -0.67372132]\n", + " [ 0.55811014 0.50167394 -0.66093595]\n", + " [ 0.55128356 0.52594032 -0.64766752]\n", + " [ 0.5441972 0.5494691 -0.63398196]\n", + " [ 0.5369081 0.57218073 -0.61995073]\n", + " [ 0.52948234 0.59399942 -0.605651 ]\n", + " [ 0.72593823 0.39807768 -0.56084565]\n", + " [ 0.71982815 0.42493461 -0.54888798]\n", + " [ 0.7130934 0.45132345 -0.53647456]\n", + " [ 0.7057698 0.47714528 -0.5236615 ]\n", + " [ 0.69790072 0.50230895 -0.51050985]\n", + " [ 0.68953651 0.52673137 -0.49708497]\n", + " [ 0.6807343 0.55033684 -0.48345649]\n", + " [ 0.67155821 0.57305545 -0.46969886]\n", + " [ 0.52948234 0.59399942 -0.605651 ]\n", + " [ 0.55013057 0.59279296 -0.58817758]\n", + " [ 0.57084533 0.5909936 -0.56996681]\n", + " [ 0.59150794 0.58859638 -0.55106501]\n", + " [ 0.61200859 0.58559966 -0.53152472]\n", + " [ 0.63224551 0.58200552 -0.51140511]\n", + " [ 0.65212441 0.57782037 -0.49077223]\n", + " [ 0.67155821 0.57305545 -0.46969886]\n", + " [ 0.5861628 0.42427819 -0.69021822]\n", + " [ 0.6131287 0.42071016 -0.66863754]\n", + " [ 0.63991056 0.41654097 -0.64576164]\n", + " [ 0.66630824 0.41176539 -0.62167724]\n", + " [ 0.69213352 0.40638862 -0.5964893 ]\n", + " [ 0.71720965 0.40042708 -0.57032313]\n", + " [ 0.57418544 0.43667503 -0.69255036]\n", + " [ 0.5668316 0.46818159 -0.67787014]\n", + " [ 0.55893574 0.49888787 -0.66234563]\n", + " [ 0.55056949 0.5286275 -0.64608529]\n", + " [ 0.54182234 0.55724565 -0.62921049]\n", + " [ 0.53280306 0.58459746 -0.61185514]\n", + " [ 0.72328516 0.40985629 -0.5557665 ]\n", + " [ 0.7153726 0.44247011 -0.54079779]\n", + " [ 0.70655663 0.47428172 -0.52519957]\n", + " [ 0.69691398 0.50512002 -0.50908219]\n", + " [ 0.68653733 0.53483197 -0.49256599]\n", + " [ 0.67553471 0.56328073 -0.47578113]\n", + " [ 0.53849495 0.59347253 -0.59817518]\n", + " [ 0.56386305 0.59159515 -0.5762583 ]\n", + " [ 0.58921205 0.58882203 -0.55327911]\n", + " [ 0.61433612 0.58514877 -0.5293317 ]\n", + " [ 0.63904786 0.58057927 -0.50452507]\n", + " [ 0.66317666 0.5751273 -0.47898361]\n", + " [ 0.57664086 0.42539649 -0.69751211]\n", + " [ 0.57664086 0.42539649 -0.69751211]\n", + " [ 0.67152454 0.57299661 -0.46981876]\n", + " [ 0.67152454 0.57299661 -0.46981876]\n", + " [ 0.5836959 0.43560097 -0.68523783]\n", + " [ 0.57629115 0.46723086 -0.67051013]\n", + " [ 0.56831719 0.49805712 -0.65494631]\n", + " [ 0.55984547 0.52791327 -0.63865533]\n", + " [ 0.55096499 0.55664487 -0.62175885]\n", + " [ 0.54178383 0.58410785 -0.60439085]\n", + " [ 0.61063253 0.43214437 -0.6636107 ]\n", + " [ 0.6030952 0.46408564 -0.6487686 ]\n", + " [ 0.59491555 0.49521545 -0.63311701]\n", + " [ 0.58616494 0.52536672 -0.61676614]\n", + " [ 0.57693152 0.55438599 -0.59983848]\n", + " [ 0.5673217 0.58213148 -0.58246805]\n", + " [ 0.63738995 0.42806577 -0.64069786]\n", + " [ 0.62973696 0.46026153 -0.62577208]\n", + " [ 0.62137363 0.49164102 -0.61006878]\n", + " [ 0.61237198 0.52203618 -0.59369924]\n", + " [ 0.60282017 0.55129419 -0.5767864 ]\n", + " [ 0.59282375 0.57927536 -0.55946408]\n", + " [ 0.66376814 0.42335934 -0.61658635]\n", + " [ 0.65601648 0.45575129 -0.60160879]\n", + " [ 0.64749114 0.48732585 -0.58589141]\n", + " [ 0.63826533 0.51791386 -0.56954596]\n", + " [ 0.62842809 0.54736276 -0.55269534]\n", + " [ 0.61808498 0.57553447 -0.53547272]\n", + " [ 0.68957904 0.41802954 -0.59138147]\n", + " [ 0.68174636 0.45055761 -0.57638506]\n", + " [ 0.67308134 0.4822715 -0.56069216]\n", + " [ 0.66365871 0.51300105 -0.5444144 ]\n", + " [ 0.65356894 0.54259361 -0.52767396]\n", + " [ 0.64291837 0.57091211 -0.51060292]\n", + " [ 0.71464612 0.41209218 -0.56520878]\n", + " [ 0.70675098 0.44469468 -0.55022695]\n", + " [ 0.69796999 0.47649098 -0.53459727]\n", + " [ 0.68837938 0.50731015 -0.51843056]\n", + " [ 0.67807127 0.5369993 -0.5018477 ]\n", + " [ 0.66715321 0.56542162 -0.48497936]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:cartToSphere: vec: [[-0.48732925 0.62339131 -0.61146829]\n", + " [-0.46835416 0.61805633 -0.63138796]\n", + " [-0.4486243 0.61211512 -0.65119223]\n", + " [-0.42819775 0.60556436 -0.67077455]\n", + " [-0.40713779 0.59840718 -0.69003454]\n", + " [-0.3855139 0.59065371 -0.70887744]\n", + " [-0.36340206 0.58232139 -0.72721437]\n", + " [-0.34088434 0.57343504 -0.74496317]\n", + " [-0.48732925 0.62339131 -0.61146829]\n", + " [-0.47083724 0.64519396 -0.60169515]\n", + " [-0.45393677 0.66636805 -0.59151926]\n", + " [-0.4366976 0.68683797 -0.58098951]\n", + " [-0.41919295 0.70653528 -0.57016241]\n", + " [-0.40149913 0.72539848 -0.5591024 ]\n", + " [-0.38369545 0.74337233 -0.54788263]\n", + " [-0.36586447 0.76040692 -0.53658597]\n", + " [-0.34088434 0.57343504 -0.74496317]\n", + " [-0.32392807 0.59600614 -0.734743 ]\n", + " [-0.30673372 0.61796991 -0.72389751]\n", + " [-0.28937315 0.63924733 -0.71247879]\n", + " [-0.27192046 0.6597681 -0.70054645]\n", + " [-0.25445138 0.67947092 -0.68816696]\n", + " [-0.23704305 0.69830323 -0.67541335]\n", + " [-0.21977458 0.71622016 -0.66236532]\n", + " [-0.36586447 0.76040692 -0.53658597]\n", + " [-0.34639236 0.75632666 -0.55496154]\n", + " [-0.32634285 0.75149509 -0.57337202]\n", + " [-0.30577868 0.74591113 -0.591706 ]\n", + " [-0.28476648 0.73957872 -0.60986176]\n", + " [-0.26337731 0.73250755 -0.62774603]\n", + " [-0.24168672 0.72471369 -0.64527327]\n", + " [-0.21977458 0.71622016 -0.66236532]\n", + " [-0.47909655 0.62121515 -0.62012759]\n", + " [-0.45532544 0.61427039 -0.64447703]\n", + " [-0.43047794 0.60641092 -0.66854658]\n", + " [-0.40466834 0.59763981 -0.69214897]\n", + " [-0.37802457 0.58797573 -0.71510975]\n", + " [-0.35068908 0.57745385 -0.73726808]\n", + " [-0.48012944 0.63295258 -0.60732755]\n", + " [-0.45963301 0.65926191 -0.59507245]\n", + " [-0.43859207 0.68455117 -0.58225998]\n", + " [-0.41714 0.70869138 -0.56899098]\n", + " [-0.39541729 0.73156924 -0.5553842 ]\n", + " [-0.37357125 0.75308533 -0.54157826]\n", + " [-0.3336027 0.58337669 -0.74052744]\n", + " [-0.31265197 0.6106417 -0.72757506]\n", + " [-0.2914146 0.63691497 -0.71373444]\n", + " [-0.27002614 0.66206342 -0.69911223]\n", + " [-0.24862595 0.6859742 -0.68383078]\n", + " [-0.22735683 0.70855378 -0.66802725]\n", + " [-0.35751036 0.75866317 -0.54462513]\n", + " [-0.33324924 0.75315682 -0.56718582]\n", + " [-0.30818263 0.74652043 -0.58968696]\n", + " [-0.28243155 0.73875916 -0.61193735]\n", + " [-0.2561268 0.72989089 -0.63376521]\n", + " [-0.22940932 0.71994809 -0.65501611]\n", + " [-0.48721009 0.62344963 -0.61150379]\n", + " [-0.48721009 0.62344963 -0.61150379]\n", + " [-0.21990852 0.7161907 -0.66235272]\n", + " [-0.21990852 0.7161907 -0.66235272]\n", + " [-0.47198926 0.63075539 -0.61593326]\n", + " [-0.45142551 0.65716851 -0.60360961]\n", + " [-0.4303298 0.68255848 -0.59070313]\n", + " [-0.40883602 0.70679627 -0.57731459]\n", + " [-0.38708496 0.72976902 -0.56356226]\n", + " [-0.36522391 0.7513782 -0.54958374]\n", + " [-0.44815156 0.62390461 -0.64023685]\n", + " [-0.42742398 0.65058076 -0.62773674]\n", + " [-0.40620235 0.67622793 -0.61458558]\n", + " [-0.38462186 0.70071662 -0.60088455]\n", + " [-0.36282399 0.72393487 -0.58675127]\n", + " [-0.34095593 0.74578644 -0.57232127]\n", + " [-0.42325095 0.61612156 -0.66426866]\n", + " [-0.40240036 0.64301435 -0.65161837]\n", + " [-0.38109735 0.66887713 -0.63825402]\n", + " [-0.35947807 0.69357964 -0.62427782]\n", + " [-0.33768434 0.71701026 -0.60980782]\n", + " [-0.31586291 0.73907445 -0.59497864]\n", + " [-0.39740211 0.6074088 -0.68784163]\n", + " [-0.37647064 0.63447067 -0.67506801]\n", + " [-0.35513218 0.66050698 -0.66152223]\n", + " [-0.33352337 0.68538649 -0.6473079 ]\n", + " [-0.31178588 0.70899752 -0.63254414]\n", + " [-0.29006563 0.73124652 -0.61736573]\n", + " [-0.37073339 0.59778448 -0.71078159]\n", + " [-0.34976418 0.62496658 -0.69791245]\n", + " [-0.32843703 0.65113341 -0.6842181 ]\n", + " [-0.30688848 0.67615282 -0.66980357]\n", + " [-0.28525954 0.69991273 -0.65478941]\n", + " [-0.26369496 0.72231997 -0.63931122]\n", + " [-0.3433875 0.58728335 -0.73292789]\n", + " [-0.32242424 0.61453567 -0.71999203]\n", + " [-0.30115525 0.64078905 -0.70618334]\n", + " [-0.27971642 0.6659106 -0.69160812]\n", + " [-0.25824764 0.68978769 -0.67638827]\n", + " [-0.23689223 0.71232697 -0.66066055]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:fp_optics: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:fp_optics: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:cartToSphere: vec: [[-0.24403495 -0.5630287 -0.78958573]\n", + " [-0.24795884 -0.58478016 -0.77236557]\n", + " [-0.25176127 -0.60649158 -0.75417785]\n", + " [-0.25541582 -0.6280492 -0.73506256]\n", + " [-0.25889902 -0.64934708 -0.7150662 ]\n", + " [-0.26218998 -0.67028526 -0.69424353]\n", + " [-0.26527029 -0.69076852 -0.67265929]\n", + " [-0.26812409 -0.71070637 -0.65038905]\n", + " [-0.24403495 -0.5630287 -0.78958573]\n", + " [-0.21609941 -0.570411 -0.79242182]\n", + " [-0.18808721 -0.57736848 -0.79452428]\n", + " [-0.16011103 -0.58388323 -0.79589248]\n", + " [-0.13228562 -0.58994508 -0.79653331]\n", + " [-0.10472755 -0.59555167 -0.79646114]\n", + " [-0.07755432 -0.60070793 -0.795698 ]\n", + " [-0.05088211 -0.60542513 -0.79427415]\n", + " [-0.26812409 -0.71070637 -0.65038905]\n", + " [-0.23920152 -0.71821641 -0.65341244]\n", + " [-0.21016004 -0.72505862 -0.65583745]\n", + " [-0.18111758 -0.73121526 -0.65766303]\n", + " [-0.1521905 -0.73667781 -0.65889594]\n", + " [-0.12349379 -0.74144641 -0.65955023]\n", + " [-0.09514284 -0.74552928 -0.65964682]\n", + " [-0.06725603 -0.74894216 -0.65921337]\n", + " [-0.05088211 -0.60542513 -0.79427415]\n", + " [-0.0528937 -0.62661379 -0.7775329 ]\n", + " [-0.05504761 -0.64775192 -0.75986 ]\n", + " [-0.05732309 -0.66872701 -0.74129498]\n", + " [-0.05969942 -0.68943133 -0.7218867 ]\n", + " [-0.06215761 -0.70976357 -0.70169232]\n", + " [-0.06468115 -0.72962947 -0.6807769 ]\n", + " [-0.06725603 -0.74894216 -0.65921337]\n", + " [-0.24566324 -0.57253574 -0.78220995]\n", + " [-0.25039324 -0.59918249 -0.76044959]\n", + " [-0.25491439 -0.62565509 -0.73727495]\n", + " [-0.25918227 -0.65175533 -0.71276892]\n", + " [-0.26315844 -0.67729904 -0.68703249]\n", + " [-0.26681004 -0.7021128 -0.66018938]\n", + " [-0.2318847 -0.56637258 -0.79085497]\n", + " [-0.19758018 -0.57513742 -0.79383816]\n", + " [-0.1632722 -0.5832453 -0.79571798]\n", + " [-0.12917118 -0.5906743 -0.79650403]\n", + " [-0.09549163 -0.59741999 -0.79622277]\n", + " [-0.06244949 -0.6034942 -0.79491812]\n", + " [-0.25552659 -0.71399423 -0.65185765]\n", + " [-0.21998429 -0.72275225 -0.65516112]\n", + " [-0.18438068 -0.73048867 -0.65756373]\n", + " [-0.14893074 -0.73718394 -0.65907471]\n", + " [-0.11384632 -0.74283829 -0.65971986]\n", + " [-0.07934102 -0.74746994 -0.65954052]\n", + " [-0.05183111 -0.6146473 -0.78709735]\n", + " [-0.05439589 -0.64059738 -0.76594783]\n", + " [-0.05715378 -0.66635938 -0.74343703]\n", + " [-0.06006646 -0.69173282 -0.71965111]\n", + " [-0.06309906 -0.71653125 -0.69469524]\n", + " [-0.06622223 -0.74058421 -0.66869249]\n", + " [-0.24395327 -0.56312896 -0.78953947]\n", + " [-0.24395327 -0.56312896 -0.78953947]\n", + " [-0.06734158 -0.7488666 -0.65929047]\n", + " [-0.06734158 -0.7488666 -0.65929047]\n", + " [-0.2335468 -0.57579014 -0.78353149]\n", + " [-0.19910245 -0.5845671 -0.7865364 ]\n", + " [-0.16464878 -0.59265969 -0.78844484]\n", + " [-0.13039651 -0.60004585 -0.78926658]\n", + " [-0.09656057 -0.60672143 -0.78902799]\n", + " [-0.0633584 -0.61269926 -0.78777238]\n", + " [-0.2381564 -0.60246362 -0.76178679]\n", + " [-0.20336022 -0.61126669 -0.7648514 ]\n", + " [-0.16854017 -0.61931135 -0.76684266]\n", + " [-0.13390756 -0.62657496 -0.76777118]\n", + " [-0.0996773 -0.63305347 -0.76766382]\n", + " [-0.06606855 -0.63876135 -0.76656304]\n", + " [-0.24257976 -0.62895724 -0.73862565]\n", + " [-0.20749748 -0.63777366 -0.74174764]\n", + " [-0.1723798 -0.64576287 -0.74382492]\n", + " [-0.13743873 -0.65290182 -0.74486899]\n", + " [-0.10288821 -0.65918648 -0.74490751]\n", + " [-0.06894661 -0.66463199 -0.74398299]\n", + " [-0.24677289 -0.65507258 -0.71413098]\n", + " [-0.21147128 -0.66388863 -0.71730871]\n", + " [-0.17612516 -0.67181348 -0.7194766 ]\n", + " [-0.14094752 -0.67882437 -0.72064643]\n", + " [-0.1061512 -0.68491787 -0.72084633]\n", + " [-0.07195271 -0.69010973 -0.720119 ]\n", + " [-0.25069817 -0.68062525 -0.68840373]\n", + " [-0.21524604 -0.68942645 -0.69163597]\n", + " [-0.17974179 -0.69727729 -0.69390004]\n", + " [-0.14439947 -0.70415607 -0.69520718]\n", + " [-0.10943119 -0.71006067 -0.69558512]\n", + " [-0.07505163 -0.71500778 -0.69507634]\n", + " [-0.25432365 -0.70544163 -0.66156753]\n", + " [-0.21879207 -0.71421342 -0.66485278]\n", + " [-0.18320153 -0.7219811 -0.66721847]\n", + " [-0.14776683 -0.72872455 -0.66867443]\n", + " [-0.11269981 -0.73444337 -0.66924711]\n", + " [-0.07821418 -0.7391554 -0.6689782 ]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:cartToSphere: vec: [[ 0.42044781 -0.05518839 -0.90563673]\n", + " [ 0.40407946 -0.03407102 -0.91408914]\n", + " [ 0.38706012 -0.01250684 -0.92196965]\n", + " [ 0.36943988 0.00941971 -0.92920689]\n", + " [ 0.35127331 0.03162342 -0.93573876]\n", + " [ 0.33262035 0.05401749 -0.94151251]\n", + " [ 0.31354652 0.07651339 -0.94648523]\n", + " [ 0.29412261 0.09902148 -0.95062434]\n", + " [ 0.42044781 -0.05518839 -0.90563673]\n", + " [ 0.39993787 -0.07415621 -0.91353739]\n", + " [ 0.37910082 -0.09292727 -0.92067752]\n", + " [ 0.35802121 -0.11142698 -0.92704091]\n", + " [ 0.33678636 -0.12958066 -0.932622 ]\n", + " [ 0.31548609 -0.14731299 -0.93742595]\n", + " [ 0.2942127 -0.16454706 -0.94146862]\n", + " [ 0.27306154 -0.18120304 -0.94477661]\n", + " [ 0.29412261 0.09902148 -0.95062434]\n", + " [ 0.2729976 0.07929161 -0.95874144]\n", + " [ 0.2516937 0.05955513 -0.96597281]\n", + " [ 0.23029834 0.03989085 -0.97230211]\n", + " [ 0.20890025 0.02037683 -0.97772464]\n", + " [ 0.18758876 0.0010898 -0.98224705]\n", + " [ 0.16645361 -0.01789487 -0.98588689]\n", + " [ 0.1455857 -0.03650241 -0.98867203]\n", + " [ 0.27306154 -0.18120304 -0.94477661]\n", + " [ 0.25588759 -0.1619623 -0.95304237]\n", + " [ 0.23827174 -0.14209793 -0.96074698]\n", + " [ 0.22026795 -0.12170016 -0.9678177 ]\n", + " [ 0.20193386 -0.10085626 -0.97419235]\n", + " [ 0.18333113 -0.0796519 -0.979819 ]\n", + " [ 0.16452534 -0.05817224 -0.98465598]\n", + " [ 0.1455857 -0.03650241 -0.98867203]\n", + " [ 0.41332449 -0.04610688 -0.90941576]\n", + " [ 0.39281884 -0.01991491 -0.91940022]\n", + " [ 0.37138484 0.0068644 -0.92845365]\n", + " [ 0.34912104 0.03407462 -0.93645791]\n", + " [ 0.3261378 0.0615559 -0.94331596]\n", + " [ 0.30255799 0.08914478 -0.94895304]\n", + " [ 0.41149582 -0.06340677 -0.90920337]\n", + " [ 0.38612766 -0.08653163 -0.91837776]\n", + " [ 0.36035194 -0.10928697 -0.92639238]\n", + " [ 0.3343283 -0.13153533 -0.93323258]\n", + " [ 0.30822208 -0.15313796 -0.93890783]\n", + " [ 0.28220443 -0.17395213 -0.94345181]\n", + " [ 0.28500647 0.09034818 -0.9542581 ]\n", + " [ 0.25898436 0.06615304 -0.96361345]\n", + " [ 0.23278012 0.04202647 -0.97162091]\n", + " [ 0.20655659 0.01811254 -0.97826699]\n", + " [ 0.18047819 -0.00544751 -0.9835639 ]\n", + " [ 0.15471058 -0.02851524 -0.98754824]\n", + " [ 0.26570339 -0.17284018 -0.94843449]\n", + " [ 0.24435134 -0.14882617 -0.95819789]\n", + " [ 0.2223886 -0.12396563 -0.9670449 ]\n", + " [ 0.19991974 -0.09842035 -0.97485667]\n", + " [ 0.17705824 -0.07234818 -0.98153763]\n", + " [ 0.15392638 -0.04590587 -0.98701536]\n", + " [ 0.42032351 -0.05518215 -0.9056948 ]\n", + " [ 0.42032351 -0.05518215 -0.9056948 ]\n", + " [ 0.14572141 -0.03651384 -0.98865161]\n", + " [ 0.14572141 -0.03651384 -0.98865161]\n", + " [ 0.40446315 -0.05436519 -0.91293701]\n", + " [ 0.37900679 -0.07759814 -0.92213469]\n", + " [ 0.35315392 -0.10047999 -0.9301538 ]\n", + " [ 0.32706466 -0.12287339 -0.93697963]\n", + " [ 0.30090454 -0.1446403 -0.94262168]\n", + " [ 0.2748445 -0.16563931 -0.94711357]\n", + " [ 0.38387325 -0.02825842 -0.9229533 ]\n", + " [ 0.35819985 -0.05176836 -0.93220862]\n", + " [ 0.33216331 -0.07497894 -0.94023704]\n", + " [ 0.30592516 -0.09775239 -0.9470239 ]\n", + " [ 0.27965142 -0.11995184 -0.95257894]\n", + " [ 0.25351238 -0.14143893 -0.956936 ]\n", + " [ 0.36237173 -0.00154888 -0.93203237]\n", + " [ 0.33653094 -0.02529244 -0.94133268]\n", + " [ 0.31036365 -0.04878841 -0.9493651 ]\n", + " [ 0.28403252 -0.07189793 -0.95611517]\n", + " [ 0.25770388 -0.09448411 -0.96159319]\n", + " [ 0.23154725 -0.11641028 -0.96583359]\n", + " [ 0.34005764 0.0256074 -0.94005588]\n", + " [ 0.31410065 0.0016746 -0.94938821]\n", + " [ 0.28785699 -0.02206314 -0.95741922]\n", + " [ 0.26149004 -0.04546536 -0.96413477]\n", + " [ 0.23516608 -0.06839431 -0.96954584]\n", + " [ 0.20905366 -0.09071378 -0.97368762]\n", + " [ 0.31704183 0.05305107 -0.94692664]\n", + " [ 0.29102111 0.02897478 -0.95627777]\n", + " [ 0.26475649 0.00504018 -0.96430213]\n", + " [ 0.23841153 -0.0186106 -0.97098589]\n", + " [ 0.21215199 -0.04183844 -0.97634066]\n", + " [ 0.18614529 -0.06450656 -0.98040238]\n", + " [ 0.29344751 0.08061906 -0.95256975]\n", + " [ 0.26741633 0.05644644 -0.96192635]\n", + " [ 0.24118653 0.03236152 -0.96993907]\n", + " [ 0.21492124 0.00850791 -0.97659433]\n", + " [ 0.1887853 -0.01497369 -0.98190422]\n", + " [ 0.16294484 -0.03794534 -0.98590523]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:fp_optics: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:fp_optics: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:cartToSphere: vec: [[ 3.87388602e-02 2.01466015e-01 -9.78729148e-01]\n", + " [ 3.34444091e-02 2.28386928e-01 -9.72995829e-01]\n", + " [ 2.80193937e-02 2.55653985e-01 -9.66362227e-01]\n", + " [ 2.24839155e-02 2.83148495e-01 -9.58812496e-01]\n", + " [ 1.68583809e-02 3.10754473e-01 -9.50340704e-01]\n", + " [ 1.11638318e-02 3.38357062e-01 -9.40951575e-01]\n", + " [ 5.42209161e-03 3.65841975e-01 -9.30661190e-01]\n", + " [-3.44311346e-04 3.93096026e-01 -9.19497360e-01]\n", + " [ 3.87388602e-02 2.01466015e-01 -9.78729148e-01]\n", + " [ 1.02256414e-02 1.96309907e-01 -9.80488581e-01]\n", + " [-1.82228154e-02 1.91099951e-01 -9.81401415e-01]\n", + " [-4.64959459e-02 1.85861582e-01 -9.81475216e-01]\n", + " [-7.44840430e-02 1.80624038e-01 -9.80727834e-01]\n", + " [-1.02078318e-01 1.75420764e-01 -9.79187200e-01]\n", + " [-1.29170628e-01 1.70289826e-01 -9.76891153e-01]\n", + " [-1.55653103e-01 1.65274079e-01 -9.73887360e-01]\n", + " [-3.44311346e-04 3.93096026e-01 -9.19497360e-01]\n", + " [-2.97979314e-02 3.87613576e-01 -9.21340219e-01]\n", + " [-5.91294688e-02 3.81803173e-01 -9.22350282e-01]\n", + " [-8.82236833e-02 3.75692701e-01 -9.22535406e-01]\n", + " [-1.16968877e-01 3.69313846e-01 -9.21914077e-01]\n", + " [-1.45257353e-01 3.62701812e-01 -9.20514908e-01]\n", + " [-1.72984735e-01 3.55895298e-01 -9.18376186e-01]\n", + " [-2.00048311e-01 3.48936777e-01 -9.15545629e-01]\n", + " [-1.55653103e-01 1.65274079e-01 -9.73887360e-01]\n", + " [-1.62473834e-01 1.90838157e-01 -9.68082151e-01]\n", + " [-1.69172121e-01 2.16825366e-01 -9.61440354e-01]\n", + " [-1.75726235e-01 2.43112438e-01 -9.53947919e-01]\n", + " [-1.82113870e-01 2.69580418e-01 -9.45600834e-01]\n", + " [-1.88312152e-01 2.96114271e-01 -9.36405293e-01]\n", + " [-1.94297948e-01 3.22602450e-01 -9.26377875e-01]\n", + " [-2.00048311e-01 3.48936777e-01 -9.15545629e-01]\n", + " [ 3.63499279e-02 2.13135713e-01 -9.76346174e-01]\n", + " [ 2.97697508e-02 2.46377795e-01 -9.68716545e-01]\n", + " [ 2.30136025e-02 2.80021504e-01 -9.59717840e-01]\n", + " [ 1.61189089e-02 3.13852288e-01 -9.49334989e-01]\n", + " [ 9.12443081e-03 3.47658641e-01 -9.37576778e-01]\n", + " [ 2.07065409e-03 3.81230556e-01 -9.24477677e-01]\n", + " [ 2.62878834e-02 1.99317279e-01 -9.79582344e-01]\n", + " [-8.62937137e-03 1.92958364e-01 -9.81168999e-01]\n", + " [-4.33393539e-02 1.86543240e-01 -9.81490357e-01]\n", + " [-7.76397217e-02 1.80124138e-01 -9.80575019e-01]\n", + " [-1.11330166e-01 1.73762676e-01 -9.78474387e-01]\n", + " [-1.44211727e-01 1.67530929e-01 -9.75262204e-01]\n", + " [-1.31739787e-02 3.90654935e-01 -9.20442920e-01]\n", + " [-4.92048894e-02 3.83711974e-01 -9.22140987e-01]\n", + " [-8.49376248e-02 3.76303870e-01 -9.22594709e-01]\n", + " [-1.20165018e-01 3.68487392e-01 -9.21833722e-01]\n", + " [-1.54688723e-01 3.60327339e-01 -9.19910652e-01]\n", + " [-1.88317377e-01 3.51896494e-01 -9.16899898e-01]\n", + " [-1.58550949e-01 1.76377434e-01 -9.71469298e-01]\n", + " [-1.66830075e-01 2.08010549e-01 -9.63794240e-01]\n", + " [-1.74903924e-01 2.40156199e-01 -9.54847432e-01]\n", + " [-1.82731682e-01 2.72593607e-01 -9.44617308e-01]\n", + " [-1.90271276e-01 3.05110945e-01 -9.33115294e-01]\n", + " [-1.97480169e-01 3.37504252e-01 -9.20376262e-01]\n", + " [ 3.86235079e-02 2.01539832e-01 -9.78718510e-01]\n", + " [ 3.86235079e-02 2.01539832e-01 -9.78718510e-01]\n", + " [-1.99937773e-01 3.48871105e-01 -9.15594801e-01]\n", + " [-1.99937773e-01 3.48871105e-01 -9.15594801e-01]\n", + " [ 2.39665408e-02 2.10902380e-01 -9.77213278e-01]\n", + " [-1.10827202e-02 2.04494459e-01 -9.78804980e-01]\n", + " [-4.59193043e-02 1.98002976e-01 -9.79125242e-01]\n", + " [-8.03405390e-02 1.91479895e-01 -9.78202866e-01]\n", + " [-1.14146227e-01 1.84986414e-01 -9.76089476e-01]\n", + " [-1.47137812e-01 1.78594239e-01 -9.72858963e-01]\n", + " [ 1.72663952e-02 2.44116806e-01 -9.69592108e-01]\n", + " [-1.81131578e-02 2.37579431e-01 -9.71199221e-01]\n", + " [-5.32641707e-02 2.30882991e-01 -9.71522502e-01]\n", + " [-8.79828466e-02 2.24079037e-01 -9.70591368e-01]\n", + " [-1.22069322e-01 2.17227828e-01 -9.68458131e-01]\n", + " [-1.55326507e-01 2.10399921e-01 -9.65197156e-01]\n", + " [ 1.04132913e-02 2.77737125e-01 -9.60600673e-01]\n", + " [-2.52310554e-02 2.71083679e-01 -9.62225043e-01]\n", + " [-6.06303993e-02 2.64197942e-01 -9.62560856e-01]\n", + " [-9.55796821e-02 2.57131742e-01 -9.61638077e-01]\n", + " [-1.29879356e-01 2.49945116e-01 -9.59509662e-01]\n", + " [-1.63334004e-01 2.42707874e-01 -9.56250433e-01]\n", + " [ 3.44529893e-03 3.11548862e-01 -9.50223888e-01]\n", + " [-3.23966156e-02 3.04792551e-01 -9.51867617e-01]\n", + " [-6.79769088e-02 2.97732404e-01 -9.52226105e-01]\n", + " [-1.03089373e-01 2.90421238e-01 -9.51329641e-01]\n", + " [-1.37534768e-01 2.82919762e-01 -9.49231582e-01]\n", + " [-1.71119289e-01 2.75297831e-01 -9.46007026e-01]\n", + " [-3.59805688e-03 3.45340651e-01 -9.38470505e-01]\n", + " [-3.95683233e-02 3.38495107e-01 -9.40135847e-01]\n", + " [-7.52607521e-02 3.31275760e-01 -9.40527612e-01]\n", + " [-1.10468350e-01 3.23736964e-01 -9.39676073e-01]\n", + " [-1.44992222e-01 3.15940882e-01 -9.37634585e-01]\n", + " [-1.78639904e-01 3.07958238e-01 -9.34478201e-01]\n", + " [-1.06756258e-02 3.78902659e-01 -9.25374954e-01]\n", + " [-4.67033646e-02 3.71982401e-01 -9.27064124e-01]\n", + " [-8.24380028e-02 3.64620371e-01 -9.27499844e-01]\n", + " [-1.17672311e-01 3.56872713e-01 -9.26711980e-01]\n", + " [-1.52207790e-01 3.48803511e-01 -9.24753426e-01]\n", + " [-1.85852888e-01 3.40484956e-01 -9.21698811e-01]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:fp_optics: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:cartToSphere: vec: [[ 0.35319415 0.92426902 -0.14484705]\n", + " [ 0.35884024 0.92597932 -0.11745629]\n", + " [ 0.36430944 0.92697451 -0.08942533]\n", + " [ 0.36956373 0.92720999 -0.06086281]\n", + " [ 0.37456927 0.92665083 -0.03187628]\n", + " [ 0.37929601 0.9252718 -0.00257478]\n", + " [ 0.38371744 0.92305783 0.02692913]\n", + " [ 0.38781072 0.9200046 0.0565188 ]\n", + " [ 0.35319415 0.92426902 -0.14484705]\n", + " [ 0.3265702 0.93475649 -0.1399364 ]\n", + " [ 0.29977892 0.9444332 -0.13482775]\n", + " [ 0.2729297 0.9532727 -0.12953969]\n", + " [ 0.2461354 0.96125903 -0.12409045]\n", + " [ 0.21951201 0.96838667 -0.1184978 ]\n", + " [ 0.19317774 0.97466053 -0.11277951]\n", + " [ 0.16725072 0.9800959 -0.10695433]\n", + " [ 0.38781072 0.9200046 0.0565188 ]\n", + " [ 0.36023435 0.93083593 0.06144659]\n", + " [ 0.33242609 0.94079567 0.06630542]\n", + " [ 0.30450055 0.94985657 0.07107684]\n", + " [ 0.27657238 0.95800344 0.07574382]\n", + " [ 0.24875627 0.96523247 0.08029071]\n", + " [ 0.22116871 0.97155021 0.08470298]\n", + " [ 0.19393041 0.97697282 0.08896683]\n", + " [ 0.16725072 0.9800959 -0.10695433]\n", + " [ 0.17095808 0.98200892 -0.08019856]\n", + " [ 0.17475057 0.98319339 -0.05284888]\n", + " [ 0.17859591 0.98360452 -0.02501299]\n", + " [ 0.18246292 0.98320753 0.00319846]\n", + " [ 0.18632337 0.98197779 0.03167372]\n", + " [ 0.19015276 0.97990089 0.06030062]\n", + " [ 0.19393041 0.97697282 0.08896683]\n", + " [ 0.355584 0.92513674 -0.13297384]\n", + " [ 0.36238903 0.92675848 -0.09895918]\n", + " [ 0.36889027 0.92726064 -0.06409108]\n", + " [ 0.37502374 0.92657491 -0.02856794]\n", + " [ 0.38073405 0.9246549 0.00740928]\n", + " [ 0.38597392 0.9214773 0.0436316 ]\n", + " [ 0.34163263 0.92894631 -0.14263903]\n", + " [ 0.30887513 0.94125873 -0.136485 ]\n", + " [ 0.27597455 0.95232582 -0.13005224]\n", + " [ 0.24313723 0.96211383 -0.12337448]\n", + " [ 0.2105766 0.97061262 -0.1164845 ]\n", + " [ 0.17851046 0.97783552 -0.10941532]\n", + " [ 0.37580972 0.92484388 0.0585734 ]\n", + " [ 0.34184185 0.93753665 0.06456909]\n", + " [ 0.30763952 0.94889184 0.07044293]\n", + " [ 0.27341384 0.95887647 0.07616294]\n", + " [ 0.23937617 0.96748339 0.08170029]\n", + " [ 0.20574263 0.97472868 0.08702854]\n", + " [ 0.16894297 0.98099917 -0.09538818]\n", + " [ 0.17354921 0.98286011 -0.06218266]\n", + " [ 0.17825109 0.9835811 -0.02819156]\n", + " [ 0.18299057 0.98309395 0.0063825 ]\n", + " [ 0.18771578 0.9813533 0.04133385]\n", + " [ 0.19238321 0.97833695 0.07645591]\n", + " [ 0.35312308 0.92431324 -0.14473816]\n", + " [ 0.35312308 0.92431324 -0.14473816]\n", + " [ 0.19401001 0.97696724 0.08885454]\n", + " [ 0.19401001 0.97696724 0.08885454]\n", + " [ 0.34404777 0.92978738 -0.13086847]\n", + " [ 0.31115434 0.94214098 -0.12471305]\n", + " [ 0.27810903 0.95323644 -0.11830324]\n", + " [ 0.24511845 0.96304003 -0.11167298]\n", + " [ 0.2123965 0.97154166 -0.10485483]\n", + " [ 0.18016253 0.97875473 -0.09788073]\n", + " [ 0.35073761 0.93145338 -0.09683869]\n", + " [ 0.31750193 0.94391127 -0.09068644]\n", + " [ 0.28409206 0.95507958 -0.08434865]\n", + " [ 0.2507152 0.96492469 -0.0778603 ]\n", + " [ 0.21758525 0.97343695 -0.07125419]\n", + " [ 0.18492341 0.98063003 -0.06456061]\n", + " [ 0.35714524 0.93199159 -0.06195935]\n", + " [ 0.32363075 0.94453539 -0.05582144]\n", + " [ 0.28992371 0.95576532 -0.04956699]\n", + " [ 0.256232 0.96564805 -0.04323191]\n", + " [ 0.22276861 0.97417466 -0.03684951]\n", + " [ 0.18975405 0.98135938 -0.03044954]\n", + " [ 0.36320709 0.93133351 -0.02642903]\n", + " [ 0.32947818 0.94394455 -0.02031789]\n", + " [ 0.29554168 0.9552249 -0.01416008]\n", + " [ 0.26160648 0.96514154 -0.00799158]\n", + " [ 0.22788459 0.9736864 -0.00184551]\n", + " [ 0.19459478 0.98087452 0.00424879]\n", + " [ 0.36886858 0.92943249 0.00955112]\n", + " [ 0.33499157 0.94209161 0.01562217]\n", + " [ 0.30089439 0.95341126 0.02166875]\n", + " [ 0.26678708 0.9633586 0.02765599]\n", + " [ 0.23288104 0.97192628 0.03355202]\n", + " [ 0.19939334 0.97913001 0.03932844]\n", + " [ 0.37408325 0.92626489 0.045772 ]\n", + " [ 0.34012674 0.93895242 0.0517896 ]\n", + " [ 0.30593923 0.9503003 0.05771075]\n", + " [ 0.27173165 0.96027565 0.06350264]\n", + " [ 0.2377153 0.96887136 0.06913556]\n", + " [ 0.20410635 0.9761035 0.07458252]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:fp_optics: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:cartToSphere: vec: [[ 5.26315124e-01 -8.23099302e-02 8.46296323e-01]\n", + " [ 5.46428807e-01 -6.65118528e-02 8.34860307e-01]\n", + " [ 5.66499630e-01 -5.03459361e-02 8.22522617e-01]\n", + " [ 5.86423847e-01 -3.38736308e-02 8.09295774e-01]\n", + " [ 6.06103415e-01 -1.71569589e-02 7.95200785e-01]\n", + " [ 6.25444957e-01 -2.59555736e-04 7.80268248e-01]\n", + " [ 6.44359634e-01 1.67529355e-02 7.64539078e-01]\n", + " [ 6.62763815e-01 3.38131368e-02 7.48064701e-01]\n", + " [ 5.26315124e-01 -8.23099302e-02 8.46296323e-01]\n", + " [ 5.39016846e-01 -1.06113653e-01 8.35584066e-01]\n", + " [ 5.51297610e-01 -1.29697226e-01 8.24165988e-01]\n", + " [ 5.63117858e-01 -1.52968199e-01 8.12095443e-01]\n", + " [ 5.74445525e-01 -1.75834740e-01 7.99433851e-01]\n", + " [ 5.85256322e-01 -1.98205229e-01 7.86250421e-01]\n", + " [ 5.95533879e-01 -2.19987457e-01 7.72622105e-01]\n", + " [ 6.05269705e-01 -2.41087722e-01 7.58633834e-01]\n", + " [ 6.62763815e-01 3.38131368e-02 7.48064701e-01]\n", + " [ 6.75788578e-01 9.10668605e-03 7.37039257e-01]\n", + " [ 6.88166489e-01 -1.55271302e-02 7.25386650e-01]\n", + " [ 6.99857237e-01 -3.99907787e-02 7.13162383e-01]\n", + " [ 7.10829631e-01 -6.41893198e-02 7.00429130e-01]\n", + " [ 7.21061484e-01 -8.80309092e-02 6.87256063e-01]\n", + " [ 7.30539071e-01 -1.11426349e-01 6.73718661e-01]\n", + " [ 7.39256302e-01 -1.34287683e-01 6.59899188e-01]\n", + " [ 6.05269705e-01 -2.41087722e-01 7.58633834e-01]\n", + " [ 6.25214803e-01 -2.27256642e-01 7.46633021e-01]\n", + " [ 6.45060267e-01 -2.12842958e-01 7.33890405e-01]\n", + " [ 6.64697904e-01 -1.97912264e-01 7.20421704e-01]\n", + " [ 6.84026909e-01 -1.82528428e-01 7.06251060e-01]\n", + " [ 7.02953352e-01 -1.66754396e-01 6.91411279e-01]\n", + " [ 7.21389964e-01 -1.50653030e-01 6.75943921e-01]\n", + " [ 7.39256302e-01 -1.34287683e-01 6.59899188e-01]\n", + " [ 5.35127379e-01 -7.55530853e-02 8.41386011e-01]\n", + " [ 5.59763778e-01 -5.59366146e-02 8.26762123e-01]\n", + " [ 5.84231928e-01 -3.58285472e-02 8.10795517e-01]\n", + " [ 6.08349046e-01 -1.53427526e-02 7.93521290e-01]\n", + " [ 6.31943211e-01 5.40357848e-03 7.74995858e-01]\n", + " [ 6.54852980e-01 2.62888473e-02 7.55298928e-01]\n", + " [ 5.31970946e-01 -9.26565752e-02 8.41677891e-01]\n", + " [ 5.47260779e-01 -1.21695033e-01 8.28067605e-01]\n", + " [ 5.61878010e-01 -1.50310963e-01 8.13449271e-01]\n", + " [ 5.75760476e-01 -1.78335050e-01 7.97932632e-01]\n", + " [ 5.88863475e-01 -2.05598534e-01 7.81645092e-01]\n", + " [ 6.01160154e-01 -2.31931083e-01 7.64731614e-01]\n", + " [ 6.68457272e-01 2.29800965e-02 7.43395447e-01]\n", + " [ 6.83991056e-01 -7.26352423e-03 7.29454232e-01]\n", + " [ 6.98512325e-01 -3.73007823e-02 7.14625205e-01]\n", + " [ 7.11959850e-01 -6.69557675e-02 6.99020813e-01]\n", + " [ 7.24292719e-01 -9.60593502e-02 6.82768378e-01]\n", + " [ 7.35488875e-01 -1.24447935e-01 6.66009629e-01]\n", + " [ 6.13938714e-01 -2.35061807e-01 7.53541772e-01]\n", + " [ 6.38331179e-01 -2.17708771e-01 7.38333392e-01]\n", + " [ 6.62465650e-01 -1.99546177e-01 7.22025336e-01]\n", + " [ 6.86153516e-01 -1.80692291e-01 7.04658533e-01]\n", + " [ 7.09221827e-01 -1.61263087e-01 6.86293390e-01]\n", + " [ 7.31512738e-01 -1.41374482e-01 6.67010022e-01]\n", + " [ 5.26427958e-01 -8.23382760e-02 8.46223383e-01]\n", + " [ 5.26427958e-01 -8.23382760e-02 8.46223383e-01]\n", + " [ 7.39167747e-01 -1.34266859e-01 6.60002615e-01]\n", + " [ 7.39167747e-01 -1.34266859e-01 6.60002615e-01]\n", + " [ 5.40690438e-01 -8.59129517e-02 8.36823049e-01]\n", + " [ 5.56020146e-01 -1.15078177e-01 8.23163781e-01]\n", + " [ 5.70651823e-01 -1.43833883e-01 8.08497564e-01]\n", + " [ 5.84522970e-01 -1.72010809e-01 7.92934537e-01]\n", + " [ 5.97588654e-01 -1.99440818e-01 7.76602318e-01]\n", + " [ 6.09821907e-01 -2.25954608e-01 7.59645811e-01]\n", + " [ 5.65377004e-01 -6.64014205e-02 8.22155518e-01]\n", + " [ 5.80802839e-01 -9.58893523e-02 8.08376951e-01]\n", + " [ 5.95461809e-01 -1.25004097e-01 7.93598897e-01]\n", + " [ 6.09290683e-01 -1.53576031e-01 7.77932687e-01]\n", + " [ 6.22244202e-01 -1.81438356e-01 7.61506583e-01]\n", + " [ 6.34295340e-01 -2.08424599e-01 7.44465317e-01]\n", + " [ 5.89885227e-01 -4.63790839e-02 8.06154080e-01]\n", + " [ 6.05381455e-01 -7.61355876e-02 7.92285723e-01]\n", + " [ 6.20046402e-01 -1.05555267e-01 7.77432019e-01]\n", + " [ 6.33816560e-01 -1.34467432e-01 7.61705375e-01]\n", + " [ 6.46646934e-01 -1.62705815e-01 7.45234568e-01]\n", + " [ 6.58511011e-01 -1.90106157e-01 7.28164060e-01]\n", + " [ 6.14032000e-01 -2.59592696e-02 7.88854118e-01]\n", + " [ 6.29571879e-01 -5.59290753e-02 7.74926570e-01]\n", + " [ 6.44220444e-01 -8.55993078e-02 7.60034721e-01]\n", + " [ 6.57914412e-01 -1.14797732e-01 7.44291682e-01]\n", + " [ 6.70609633e-01 -1.43357808e-01 7.27826393e-01]\n", + " [ 6.82280666e-01 -1.71116549e-01 7.10782822e-01]\n", + " [ 6.37645061e-01 -5.25850299e-03 7.70312355e-01]\n", + " [ 6.53201119e-01 -3.53845982e-02 7.56357209e-01]\n", + " [ 6.67810608e-01 -6.52497598e-02 7.41465751e-01]\n", + " [ 6.81410914e-01 -9.46800502e-02 7.25751235e-01]\n", + " [ 6.93959160e-01 -1.23508040e-01 7.09342264e-01]\n", + " [ 7.05431334e-01 -1.51571030e-01 6.92382016e-01]\n", + " [ 6.60562705e-01 1.56022171e-02 7.50608742e-01]\n", + " [ 6.76107182e-01 -1.46213347e-02 7.36658194e-01]\n", + " [ 6.90655282e-01 -4.46240624e-02 7.21806050e-01]\n", + " [ 7.04145382e-01 -7.42304994e-02 7.06165076e-01]\n", + " [ 7.16536062e-01 -1.03271980e-01 6.89863009e-01]\n", + " [ 7.27804790e-01 -1.31585259e-01 6.73041980e-01]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:fp_optics: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:cartToSphere: vec: [[-0.73509045 -0.23378441 -0.63638579]\n", + " [-0.72111692 -0.22205007 -0.65626531]\n", + " [-0.70637981 -0.20976538 -0.67603702]\n", + " [-0.69090509 -0.19698873 -0.6955901 ]\n", + " [-0.67472657 -0.18377671 -0.71482178]\n", + " [-0.65788617 -0.17018478 -0.73363678]\n", + " [-0.64043411 -0.15626797 -0.75194712]\n", + " [-0.6224288 -0.14208154 -0.76967215]\n", + " [-0.73509045 -0.23378441 -0.63638579]\n", + " [-0.74823757 -0.21153554 -0.62880303]\n", + " [-0.7610353 -0.18856781 -0.62069916]\n", + " [-0.77340252 -0.16498113 -0.61207007]\n", + " [-0.78526563 -0.14087363 -0.60291998]\n", + " [-0.79655832 -0.11634252 -0.59326154]\n", + " [-0.80722156 -0.09148499 -0.58311564]\n", + " [-0.81720386 -0.06639867 -0.5725112 ]\n", + " [-0.6224288 -0.14208154 -0.76967215]\n", + " [-0.63520694 -0.11810455 -0.76325845]\n", + " [-0.64773407 -0.09354051 -0.75610234]\n", + " [-0.65993168 -0.06848268 -0.74819804]\n", + " [-0.67172792 -0.04302498 -0.73954746]\n", + " [-0.68305701 -0.01726369 -0.730161 ]\n", + " [-0.69385924 0.00870175 -0.72005807]\n", + " [-0.7040815 0.03476898 -0.70926748]\n", + " [-0.81720386 -0.06639867 -0.5725112 ]\n", + " [-0.8036399 -0.05263563 -0.5927836 ]\n", + " [-0.78915872 -0.03855119 -0.61297823]\n", + " [-0.77378255 -0.02419957 -0.63298889]\n", + " [-0.75754183 -0.00963523 -0.65271551]\n", + " [-0.74047639 0.00508609 -0.67206313]\n", + " [-0.72263619 0.01990709 -0.69094185]\n", + " [-0.7040815 0.03476898 -0.70926748]\n", + " [-0.72913869 -0.22866439 -0.64503439]\n", + " [-0.71149644 -0.21390372 -0.66934148]\n", + " [-0.69273205 -0.1983748 -0.69337562]\n", + " [-0.6729045 -0.18218252 -0.71694425]\n", + " [-0.652091 -0.16542905 -0.73987199]\n", + " [-0.63038741 -0.14821581 -0.76199986]\n", + " [-0.7408137 -0.22413902 -0.63321146]\n", + " [-0.75670273 -0.19637312 -0.62356922]\n", + " [-0.77198554 -0.16762703 -0.61313905]\n", + " [-0.78652355 -0.13808213 -0.60192527]\n", + " [-0.80019466 -0.10791747 -0.58995112]\n", + " [-0.81289331 -0.07731216 -0.57725844]\n", + " [-0.62808833 -0.1317548 -0.76690659]\n", + " [-0.64359133 -0.10196249 -0.7585472 ]\n", + " [-0.6586384 -0.07138103 -0.74906622]\n", + " [-0.67309455 -0.04018291 -0.73846398]\n", + " [-0.68683868 -0.00854549 -0.72675966]\n", + " [-0.69976355 0.02334691 -0.71399292]\n", + " [-0.81137078 -0.06052737 -0.58138963]\n", + " [-0.79412722 -0.04343724 -0.6061973 ]\n", + " [-0.77552728 -0.0259181 -0.63078181]\n", + " [-0.75562352 -0.00807006 -0.65495647]\n", + " [-0.73448935 0.01000428 -0.67854647]\n", + " [-0.71222108 0.02819875 -0.7013886 ]\n", + " [-0.73508945 -0.23367054 -0.63642877]\n", + " [-0.73508945 -0.23367054 -0.63642877]\n", + " [-0.70411218 0.03462896 -0.70924388]\n", + " [-0.70411218 0.03462896 -0.70924388]\n", + " [-0.73487137 -0.21906483 -0.64185253]\n", + " [-0.75078685 -0.19111566 -0.63229258]\n", + " [-0.76610011 -0.16219963 -0.62191792]\n", + " [-0.78067261 -0.13249703 -0.61073301]\n", + " [-0.79438205 -0.10218619 -0.59876134]\n", + " [-0.80712247 -0.07144606 -0.58604504]\n", + " [-0.71723952 -0.20412708 -0.66625792]\n", + " [-0.73319453 -0.17570246 -0.65692802]\n", + " [-0.74856276 -0.14634717 -0.64671191]\n", + " [-0.76320583 -0.1162384 -0.63561426]\n", + " [-0.77700085 -0.0855528 -0.62365888]\n", + " [-0.78984073 -0.05446935 -0.61088846]\n", + " [-0.69846544 -0.18844366 -0.69038759]\n", + " [-0.71440691 -0.15960615 -0.68128455]\n", + " [-0.72978284 -0.12987194 -0.67123042]\n", + " [-0.74445518 -0.09941562 -0.66022953]\n", + " [-0.75830064 -0.06841284 -0.64830535]\n", + " [-0.77121122 -0.03704336 -0.63550063]\n", + " [-0.67860788 -0.17211854 -0.7140494 ]\n", + " [-0.69448193 -0.14292805 -0.7051712 ]\n", + " [-0.70981714 -0.11287327 -0.69528358]\n", + " [-0.72447605 -0.08212703 -0.68438995]\n", + " [-0.73833544 -0.05086482 -0.67251286]\n", + " [-0.7512868 -0.01926769 -0.65969455]\n", + " [-0.65774406 -0.1552531 -0.73706799]\n", + " [-0.67349654 -0.1257678 -0.72841257]\n", + " [-0.68874207 -0.09544997 -0.71869581]\n", + " [-0.70334408 -0.06447167 -0.70791984]\n", + " [-0.71717992 -0.03300892 -0.69610587]\n", + " [-0.73014119 -0.00124424 -0.68329517]\n", + " [-0.63597004 -0.13794841 -0.7592841 ]\n", + " [-0.65154741 -0.10822596 -0.75084826]\n", + " [-0.66665467 -0.07770291 -0.74130548]\n", + " [-0.6811564 -0.04655153 -0.7306565 ]\n", + " [-0.69493102 -0.01494876 -0.71892101]\n", + " [-0.7078709 0.01692147 -0.70613912]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:fp_optics: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:cartToSphere: vec: [[-0.05546007 0.64131118 -0.7652739 ]\n", + " [-0.07610194 0.65359789 -0.75300617]\n", + " [-0.097223 0.66555528 -0.7399891 ]\n", + " [-0.11871638 0.67711352 -0.72623942]\n", + " [-0.14048102 0.68820858 -0.71178229]\n", + " [-0.16242018 0.69878208 -0.69665148]\n", + " [-0.18444044 0.70878145 -0.68088955]\n", + " [-0.20645116 0.71816036 -0.66454767]\n", + " [-0.05546007 0.64131118 -0.7652739 ]\n", + " [-0.07049717 0.62344682 -0.77868107]\n", + " [-0.08593675 0.60479347 -0.79173211]\n", + " [-0.1016933 0.58539896 -0.8043423 ]\n", + " [-0.11768724 0.56531711 -0.8164351 ]\n", + " [-0.13384363 0.5446084 -0.82794177]\n", + " [-0.15009104 0.52334024 -0.83880133]\n", + " [-0.16636098 0.50158699 -0.84896084]\n", + " [-0.20645116 0.71816036 -0.66454767]\n", + " [-0.22358811 0.70049942 -0.67772334]\n", + " [-0.24089946 0.68191485 -0.69062261]\n", + " [-0.2583055 0.66244958 -0.70316344]\n", + " [-0.27572882 0.6421538 -0.71527066]\n", + " [-0.29309354 0.62108619 -0.72687558]\n", + " [-0.31032524 0.59931443 -0.7379163 ]\n", + " [-0.32735144 0.576915 -0.74833824]\n", + " [-0.16636098 0.50158699 -0.84896084]\n", + " [-0.18894617 0.51322187 -0.83719929]\n", + " [-0.21183352 0.52467044 -0.82452864]\n", + " [-0.2349231 0.53586479 -0.81096243]\n", + " [-0.25811669 0.546742 -0.79652305]\n", + " [-0.28131684 0.55724392 -0.78124263]\n", + " [-0.30442684 0.56731745 -0.76516352]\n", + " [-0.32735144 0.576915 -0.74833824]\n", + " [-0.06444522 0.6466443 -0.76006445]\n", + " [-0.09008169 0.66149056 -0.74452369]\n", + " [-0.1163309 0.67577221 -0.72787296]\n", + " [-0.14300445 0.68936897 -0.71015502]\n", + " [-0.16992414 0.70217337 -0.6914321 ]\n", + " [-0.19691915 0.71409121 -0.67178612]\n", + " [-0.06203132 0.63366457 -0.77111694]\n", + " [-0.08074428 0.61123351 -0.78732074]\n", + " [-0.09997593 0.58766412 -0.80290453]\n", + " [-0.11957737 0.56305296 -0.81772405]\n", + " [-0.1394105 0.53751138 -0.83165271]\n", + " [-0.15934508 0.5111664 -0.84458159]\n", + " [-0.21382079 0.71054509 -0.67037776]\n", + " [-0.23495056 0.68827331 -0.68635128]\n", + " [-0.25626293 0.66465618 -0.70182724]\n", + " [-0.27761448 0.63978303 -0.7166644 ]\n", + " [-0.29886553 0.61376195 -0.73073638]\n", + " [-0.31987982 0.5867212 -0.74393221]\n", + " [-0.1761087 0.50675359 -0.84391145]\n", + " [-0.20400448 0.52089758 -0.82888352]\n", + " [-0.23225466 0.53469352 -0.81250268]\n", + " [-0.2606778 0.54802355 -0.79480644]\n", + " [-0.2890945 0.56078066 -0.775854 ]\n", + " [-0.31732728 0.57286932 -0.75572756]\n", + " [-0.05558035 0.64129398 -0.76527959]\n", + " [-0.05558035 0.64129398 -0.76527959]\n", + " [-0.32721567 0.57696062 -0.74836245]\n", + " [-0.32721567 0.57696062 -0.74836245]\n", + " [-0.07097271 0.63901271 -0.7659149 ]\n", + " [-0.08988454 0.6165642 -0.78215686]\n", + " [-0.10928986 0.59296019 -0.79778063]\n", + " [-0.12904123 0.56829681 -0.81264205]\n", + " [-0.1490014 0.54268527 -0.82661435]\n", + " [-0.16904038 0.51625281 -0.83958822]\n", + " [-0.09681129 0.65385911 -0.75039712]\n", + " [-0.11624785 0.63138101 -0.76671015]\n", + " [-0.13611077 0.60770162 -0.7824146 ]\n", + " [-0.15625599 0.58291569 -0.79736652]\n", + " [-0.17654778 0.557134 -0.81143859]\n", + " [-0.19685612 0.53048441 -0.82452044]\n", + " [-0.1232423 0.66815024 -0.73374831]\n", + " [-0.14315031 0.64567204 -0.75007707]\n", + " [-0.16342301 0.6219511 -0.76581313]\n", + " [-0.18391837 0.5970807 -0.78081283]\n", + " [-0.2045009 0.57117112 -0.79494839]\n", + " [-0.22503966 0.54435068 -0.80810859]\n", + " [-0.1500788 0.68176565 -0.71601114]\n", + " [-0.17040845 0.65931644 -0.73229966]\n", + " [-0.19104533 0.63558773 -0.74801733]\n", + " [-0.21184803 0.61067136 -0.7630209 ]\n", + " [-0.23268037 0.58467699 -0.77718251]\n", + " [-0.25340988 0.55773324 -0.79039045]\n", + " [-0.17714336 0.6945975 -0.69724784]\n", + " [-0.19784622 0.67220548 -0.71344003]\n", + " [-0.21880186 0.64850227 -0.72908885]\n", + " [-0.23986847 0.62357845 -0.74405176]\n", + " [-0.26090851 0.59754301 -0.75820122]\n", + " [-0.28178783 0.57052461 -0.77142549]\n", + " [-0.20426527 0.70655114 -0.67754054]\n", + " [-0.22529249 0.68424337 -0.69358079]\n", + " [-0.24652028 0.66059818 -0.70911057]\n", + " [-0.26780572 0.63570513 -0.72398831]\n", + " [-0.28900969 0.60967256 -0.73808723]\n", + " [-0.30999642 0.58262888 -0.75129608]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:cartToSphere: vec: [[ 0.2159152 0.20509024 -0.9546301 ]\n", + " [ 0.21642621 0.23133264 -0.94849613]\n", + " [ 0.21663252 0.25796338 -0.9415547 ]\n", + " [ 0.216539 0.28485687 -0.93379196]\n", + " [ 0.21615009 0.31189166 -0.92520416]\n", + " [ 0.21546984 0.33895024 -0.91579773]\n", + " [ 0.21450223 0.36591868 -0.90558948]\n", + " [ 0.21325157 0.39268663 -0.89460661]\n", + " [ 0.2159152 0.20509024 -0.9546301 ]\n", + " [ 0.18964979 0.20414166 -0.9603953 ]\n", + " [ 0.16266493 0.20317255 -0.96553666]\n", + " [ 0.13507023 0.20216299 -0.96999286]\n", + " [ 0.1069754 0.2010978 -0.97371245]\n", + " [ 0.07849054 0.1999666 -0.97665377]\n", + " [ 0.04972658 0.19876356 -0.97878512]\n", + " [ 0.02079538 0.19748701 -0.98008491]\n", + " [ 0.21325157 0.39268663 -0.89460661]\n", + " [ 0.18595233 0.3935908 -0.90028218]\n", + " [ 0.15794346 0.39420137 -0.90535029]\n", + " [ 0.12932938 0.39449781 -0.90975018]\n", + " [ 0.10021553 0.39446379 -0.91343044]\n", + " [ 0.07071029 0.3940872 -0.91634891]\n", + " [ 0.04092603 0.39336029 -0.91847305]\n", + " [ 0.01097899 0.39227987 -0.91978039]\n", + " [ 0.02079538 0.19748701 -0.98008491]\n", + " [ 0.0195106 0.22481246 -0.9742067 ]\n", + " [ 0.01817814 0.25250301 -0.96742534]\n", + " [ 0.01680306 0.28043798 -0.95972506]\n", + " [ 0.01539036 0.3084995 -0.95109999]\n", + " [ 0.01394518 0.33657091 -0.94155486]\n", + " [ 0.01247285 0.36453609 -0.93110572]\n", + " [ 0.01097899 0.39227987 -0.91978039]\n", + " [ 0.21608692 0.21647329 -0.95207445]\n", + " [ 0.21650664 0.2489145 -0.94401613]\n", + " [ 0.21647372 0.28181374 -0.93472998]\n", + " [ 0.21599656 0.31494573 -0.92420489]\n", + " [ 0.21508263 0.34809404 -0.91245274]\n", + " [ 0.21373938 0.38105045 -0.89950877]\n", + " [ 0.20456072 0.2047671 -0.95719661]\n", + " [ 0.17187099 0.20359462 -0.96385144]\n", + " [ 0.1382095 0.20237079 -0.96950719]\n", + " [ 0.10377819 0.20106568 -0.97406503]\n", + " [ 0.06877981 0.19966016 -0.97744829]\n", + " [ 0.03341895 0.19814524 -0.9796028 ]\n", + " [ 0.20144775 0.39302402 -0.89719057]\n", + " [ 0.16749943 0.39393661 -0.90374658]\n", + " [ 0.13258895 0.39438751 -0.90932869]\n", + " [ 0.09690991 0.39434492 -0.91383836]\n", + " [ 0.06066194 0.39378657 -0.91719805]\n", + " [ 0.02405357 0.39270008 -0.91935199]\n", + " [ 0.02034089 0.20935269 -0.97762861]\n", + " [ 0.01873454 0.24310375 -0.96981936]\n", + " [ 0.01706142 0.27728287 -0.96063683]\n", + " [ 0.01533077 0.311672 -0.95006607]\n", + " [ 0.01355202 0.3460563 -0.93811587]\n", + " [ 0.01173512 0.38022231 -0.92482068]\n", + " [ 0.215829 0.20517594 -0.95463117]\n", + " [ 0.215829 0.20517594 -0.95463117]\n", + " [ 0.01108667 0.39218979 -0.91981751]\n", + " [ 0.01108667 0.39218979 -0.91981751]\n", + " [ 0.20476818 0.21612075 -0.95465272]\n", + " [ 0.17193615 0.21508825 -0.96134021]\n", + " [ 0.13813317 0.21397541 -0.96702314]\n", + " [ 0.1035607 0.21275245 -0.97160258]\n", + " [ 0.06842118 0.21140065 -0.9750017 ]\n", + " [ 0.03291932 0.20991136 -0.97716607]\n", + " [ 0.20506138 0.24871788 -0.94661991]\n", + " [ 0.17187305 0.24807304 -0.95337266]\n", + " [ 0.13771578 0.24726793 -0.95911049]\n", + " [ 0.10278924 0.24627351 -0.96373426]\n", + " [ 0.06729489 0.2450719 -0.96716656]\n", + " [ 0.031438 0.24365522 -0.96935225]\n", + " [ 0.2049263 0.28176788 -0.93734309]\n", + " [ 0.17145069 0.28149854 -0.94412035]\n", + " [ 0.13700756 0.28099295 -0.94987993]\n", + " [ 0.10179449 0.28022251 -0.95452251]\n", + " [ 0.06601214 0.27916959 -0.95797011]\n", + " [ 0.02986655 0.27782637 -0.96016691]\n", + " [ 0.20437107 0.31504581 -0.92681099]\n", + " [ 0.17067624 0.31514132 -0.9335714 ]\n", + " [ 0.13601493 0.3149288 -0.93931879]\n", + " [ 0.10058286 0.31437939 -0.94395375]\n", + " [ 0.06458008 0.31347484 -0.94739798]\n", + " [ 0.0282136 0.31220664 -0.94959518]\n", + " [ 0.20340273 0.34833547 -0.91503537]\n", + " [ 0.16955558 0.34878577 -0.92173716]\n", + " [ 0.1347432 0.34886025 -0.92743776]\n", + " [ 0.09915994 0.34852912 -0.93203796]\n", + " [ 0.06300552 0.34777272 -0.93545948]\n", + " [ 0.02648782 0.34658115 -0.93764594]\n", + " [ 0.20202832 0.38142841 -0.90205151]\n", + " [ 0.16809482 0.38222258 -0.90865287]\n", + " [ 0.13319816 0.38257686 -0.91427195]\n", + " [ 0.09753199 0.38246 -0.91881002]\n", + " [ 0.06129595 0.38185046 -0.92218926]\n", + " [ 0.02469845 0.38073652 -0.92435366]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:fp_optics: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:fp_optics: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:cartToSphere: vec: [[-0.20083607 -0.07407608 0.97682015]\n", + " [-0.17676462 -0.08567096 0.9805176 ]\n", + " [-0.15211912 -0.09758868 0.98353252]\n", + " [-0.12699291 -0.10975783 0.98581237]\n", + " [-0.10148008 -0.12211287 0.98731466]\n", + " [-0.07567632 -0.13459299 0.98800699]\n", + " [-0.04967934 -0.14714111 0.98786712]\n", + " [-0.02358878 -0.15970327 0.98688319]\n", + " [-0.20083607 -0.07407608 0.97682015]\n", + " [-0.21417088 -0.09696014 0.971972 ]\n", + " [-0.22749966 -0.12034762 0.96631276]\n", + " [-0.24076908 -0.14412219 0.9598224 ]\n", + " [-0.25392618 -0.16817348 0.95249104]\n", + " [-0.26691837 -0.19239549 0.9443191 ]\n", + " [-0.27969361 -0.21668557 0.93531751]\n", + " [-0.29220093 -0.2409439 0.92550778]\n", + " [-0.02358878 -0.15970327 0.98688319]\n", + " [-0.03578652 -0.18437129 0.98220494]\n", + " [-0.04820229 -0.20939843 0.97664161]\n", + " [-0.06078501 -0.23467589 0.97017133]\n", + " [-0.07348378 -0.26009675 0.96278233]\n", + " [-0.08624737 -0.28555471 0.95447362]\n", + " [-0.09902418 -0.31094405 0.94525553]\n", + " [-0.1117625 -0.33616022 0.93514996]\n", + " [-0.29220093 -0.2409439 0.92550778]\n", + " [-0.2680594 -0.25464786 0.92913865]\n", + " [-0.2432214 -0.26842504 0.93208977]\n", + " [-0.21777404 -0.28220882 0.93430865]\n", + " [-0.19180761 -0.29593517 0.93575222]\n", + " [-0.16541675 -0.30954207 0.93638721]\n", + " [-0.13870065 -0.32296956 0.93619058]\n", + " [-0.1117625 -0.33616022 0.93514996]\n", + " [-0.19046276 -0.0791648 0.97849725]\n", + " [-0.16056241 -0.09360356 0.98257727]\n", + " [-0.12989242 -0.10845539 0.98557871]\n", + " [-0.09862563 -0.12359725 0.98741921]\n", + " [-0.06693828 -0.1389171 0.98803912]\n", + " [-0.03501106 -0.15431114 0.98740179]\n", + " [-0.206566 -0.08402359 0.9748182 ]\n", + " [-0.22291151 -0.11242556 0.96833411]\n", + " [-0.23919506 -0.14146726 0.96061061]\n", + " [-0.25531903 -0.17094309 0.95162527]\n", + " [-0.27118661 -0.20065783 0.94137891]\n", + " [-0.28670242 -0.23042366 0.92989605]\n", + " [-0.02896654 -0.17036425 0.98495531]\n", + " [-0.04407011 -0.20085233 0.97862974]\n", + " [-0.05945017 -0.2317715 0.97095193]\n", + " [-0.075013 -0.26292423 0.96189599]\n", + " [-0.09066428 -0.29411485 0.95146016]\n", + " [-0.10630893 -0.32514916 0.93966826]\n", + " [-0.28172386 -0.24682234 0.92720569]\n", + " [-0.25165635 -0.26367489 0.93120601]\n", + " [-0.2206291 -0.28057105 0.93413205]\n", + " [-0.18880689 -0.29739191 0.93590064]\n", + " [-0.15636401 -0.31402332 0.93645056]\n", + " [-0.12348475 -0.33035593 0.93574381]\n", + " [-0.20080039 -0.07419236 0.97681866]\n", + " [-0.20080039 -0.07419236 0.97681866]\n", + " [-0.11181144 -0.33602976 0.935191 ]\n", + " [-0.11181144 -0.33602976 0.935191 ]\n", + " [-0.196208 -0.08907007 0.97650855]\n", + " [-0.21250991 -0.11766912 0.9700482 ]\n", + " [-0.22877067 -0.14689068 0.9623342 ]\n", + " [-0.24489239 -0.17653063 0.95334393]\n", + " [-0.26077781 -0.20639449 0.94307807]\n", + " [-0.27633107 -0.23629451 0.93156108]\n", + " [-0.16624209 -0.10369924 0.98061717]\n", + " [-0.18239826 -0.13280496 0.97421441]\n", + " [-0.19857226 -0.16248865 0.96652289]\n", + " [-0.21466573 -0.19254972 0.95751931]\n", + " [-0.23058059 -0.22279508 0.94720375]\n", + " [-0.24621991 -0.25303646 0.93560051]\n", + " [-0.13549427 -0.11871421 0.9836403 ]\n", + " [-0.15146971 -0.14825349 0.97728083]\n", + " [-0.16752207 -0.17833164 0.96960517]\n", + " [-0.18355314 -0.20875043 0.96058914]\n", + " [-0.19946471 -0.23931703 0.95023218]\n", + " [-0.2151593 -0.26984192 0.93855837]\n", + " [-0.10413677 -0.13399329 0.98549548]\n", + " [-0.11989486 -0.16389614 0.97916458]\n", + " [-0.13578913 -0.19430284 0.97149767]\n", + " [-0.15172221 -0.22501634 0.96246975]\n", + " [-0.16759643 -0.25584328 0.95207965]\n", + " [-0.18331441 -0.28659256 0.94035128]\n", + " [-0.07234574 -0.14942523 0.98612281]\n", + " [-0.08784965 -0.17962313 0.97980507]\n", + " [-0.10354924 -0.2102927 0.97213915]\n", + " [-0.1193485 -0.2412371 0.96309947]\n", + " [-0.13515091 -0.27226201 0.95268443]\n", + " [-0.15085976 -0.3031748 0.94091784]\n", + " [-0.04030222 -0.16490656 0.98548544]\n", + " [-0.05551626 -0.1953311 0.9791648 ]\n", + " [-0.07098568 -0.22619706 0.9714916 ]\n", + " [-0.08661615 -0.25730714 0.96243996]\n", + " [-0.10231272 -0.28846603 0.95200812]\n", + " [-0.11797982 -0.31947984 0.94021986]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:fp_optics: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:cartToSphere: vec: [[-0.07874527 -0.86829487 -0.48975832]\n", + " [-0.07591012 -0.85497448 -0.51308507]\n", + " [-0.07310601 -0.8407205 -0.53651146]\n", + " [-0.07033203 -0.8255562 -0.55991996]\n", + " [-0.06758753 -0.809515 -0.58319584]\n", + " [-0.06487364 -0.7926394 -0.60622949]\n", + " [-0.06219399 -0.77498054 -0.62891738]\n", + " [-0.05955478 -0.75659809 -0.65116247]\n", + " [-0.07874527 -0.86829487 -0.48975832]\n", + " [-0.10557139 -0.86607907 -0.48863251]\n", + " [-0.13288814 -0.86309575 -0.48724375]\n", + " [-0.16057934 -0.85932396 -0.48556834]\n", + " [-0.1885269 -0.85475223 -0.48358685]\n", + " [-0.21661343 -0.8493778 -0.48128575]\n", + " [-0.24472325 -0.84320626 -0.47865827]\n", + " [-0.27274278 -0.83625153 -0.47570449]\n", + " [-0.05955478 -0.75659809 -0.65116247]\n", + " [-0.08727836 -0.75344298 -0.65169484]\n", + " [-0.11550293 -0.74961589 -0.65171703]\n", + " [-0.14410878 -0.74509876 -0.65119928]\n", + " [-0.17297982 -0.73988085 -0.65011869]\n", + " [-0.20200119 -0.7339592 -0.64845926]\n", + " [-0.23105702 -0.72733932 -0.64621218]\n", + " [-0.26002973 -0.72003581 -0.64337623]\n", + " [-0.27274278 -0.83625153 -0.47570449]\n", + " [-0.27165312 -0.82231533 -0.50000208]\n", + " [-0.27032813 -0.80743585 -0.52437587]\n", + " [-0.26876063 -0.79163772 -0.54870525]\n", + " [-0.26694646 -0.77495281 -0.57287671]\n", + " [-0.26488457 -0.75742175 -0.59678175]\n", + " [-0.26257714 -0.73909543 -0.62031539]\n", + " [-0.26002973 -0.72003581 -0.64337623]\n", + " [-0.07759646 -0.86259649 -0.49990607]\n", + " [-0.07414358 -0.84564038 -0.52857835]\n", + " [-0.07073631 -0.82730385 -0.55728334]\n", + " [-0.06737322 -0.80764427 -0.58580848]\n", + " [-0.06405649 -0.78673985 -0.61395209]\n", + " [-0.06079384 -0.76468829 -0.64152624]\n", + " [-0.09036464 -0.86737729 -0.48937805]\n", + " [-0.1235882 -0.86414823 -0.48782558]\n", + " [-0.15743369 -0.85974442 -0.48585405]\n", + " [-0.19168429 -0.85414088 -0.48342578]\n", + " [-0.22612401 -0.84733248 -0.48051598]\n", + " [-0.26054072 -0.83933295 -0.477115 ]\n", + " [-0.07158189 -0.75536789 -0.65137961]\n", + " [-0.10591227 -0.75105239 -0.65169233]\n", + " [-0.14087574 -0.74570868 -0.65120856]\n", + " [-0.17625713 -0.73931395 -0.6498833 ]\n", + " [-0.21184472 -0.73186284 -0.64768712]\n", + " [-0.24742443 -0.72336922 -0.64460696]\n", + " [-0.27220013 -0.83031777 -0.48629157]\n", + " [-0.2707065 -0.81260071 -0.51613766]\n", + " [-0.26885211 -0.79349046 -0.5459775 ]\n", + " [-0.26662807 -0.77304268 -0.57559924]\n", + " [-0.26403243 -0.75133234 -0.60480294]\n", + " [-0.26107064 -0.72845771 -0.63339678]\n", + " [-0.0788263 -0.86824462 -0.48983435]\n", + " [-0.0788263 -0.86824462 -0.48983435]\n", + " [-0.25994004 -0.72012827 -0.64330899]\n", + " [-0.25994004 -0.72012827 -0.64330899]\n", + " [-0.08918288 -0.86171042 -0.49950131]\n", + " [-0.12254504 -0.85842912 -0.49807846]\n", + " [-0.15653001 -0.85397543 -0.49620995]\n", + " [-0.19091938 -0.84832514 -0.4938565 ]\n", + " [-0.22549664 -0.84147331 -0.4909928 ]\n", + " [-0.26004938 -0.83343357 -0.48760927]\n", + " [-0.08585063 -0.84469526 -0.5283177 ]\n", + " [-0.1195583 -0.84125375 -0.5272551 ]\n", + " [-0.15388933 -0.83665265 -0.52567139]\n", + " [-0.18862311 -0.83086898 -0.52352466]\n", + " [-0.22354308 -0.82389749 -0.52078922]\n", + " [-0.25843635 -0.81575112 -0.51745605]\n", + " [-0.08253871 -0.82629203 -0.55716141]\n", + " [-0.11651777 -0.82267463 -0.55644413]\n", + " [-0.15112003 -0.81791811 -0.55513304]\n", + " [-0.18612534 -0.81199959 -0.55318534]\n", + " [-0.22131821 -0.80491298 -0.55057546]\n", + " [-0.25648541 -0.79667038 -0.54729475]\n", + " [-0.07924411 -0.8065589 -0.58581833]\n", + " [-0.11341788 -0.80275088 -0.58542926]\n", + " [-0.1482158 -0.79783047 -0.58437883]\n", + " [-0.18341944 -0.79177445 -0.58262384]\n", + " [-0.21881476 -0.78457606 -0.58013835]\n", + " [-0.25418812 -0.77624703 -0.5769133 ]\n", + " [-0.07596852 -0.78557426 -0.61408621]\n", + " [-0.11026018 -0.78156066 -0.61400783]\n", + " [-0.14517865 -0.77646686 -0.61320663]\n", + " [-0.18050737 -0.77026948 -0.61163879]\n", + " [-0.2160336 -0.76296179 -0.60927726]\n", + " [-0.25154337 -0.75455592 -0.60611162]\n", + " [-0.07271976 -0.76343591 -0.64177679]\n", + " [-0.10705333 -0.75920173 -0.6419909 ]\n", + " [-0.14201806 -0.75392481 -0.64142673]\n", + " [-0.17739862 -0.74758211 -0.64003962]\n", + " [-0.21298313 -0.74016777 -0.6378008 ]\n", + " [-0.24855747 -0.73169512 -0.63469791]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:fp_optics: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:cartToSphere: vec: [[ 0.7916224 0.52902778 -0.30571813]\n", + " [ 0.77739024 0.53727445 -0.32710943]\n", + " [ 0.76232737 0.54516568 -0.34878556]\n", + " [ 0.7464608 0.5526572 -0.3706296 ]\n", + " [ 0.72982552 0.55970838 -0.39253184]\n", + " [ 0.71246484 0.56628228 -0.41438898]\n", + " [ 0.69443061 0.57234596 -0.43610346]\n", + " [ 0.67578323 0.57787091 -0.45758304]\n", + " [ 0.7916224 0.52902778 -0.30571813]\n", + " [ 0.80147677 0.50684876 -0.31739459]\n", + " [ 0.81086761 0.4838487 -0.32921747]\n", + " [ 0.81972676 0.46010222 -0.34110701]\n", + " [ 0.8279937 0.43568785 -0.35299084]\n", + " [ 0.83561548 0.41068872 -0.36480343]\n", + " [ 0.84254681 0.38519302 -0.37648533]\n", + " [ 0.84875038 0.35929414 -0.38798262]\n", + " [ 0.67578323 0.57787091 -0.45758304]\n", + " [ 0.68512029 0.55541903 -0.47129597]\n", + " [ 0.69409578 0.5320622 -0.48491326]\n", + " [ 0.70264317 0.50786902 -0.49835895]\n", + " [ 0.71070304 0.48291328 -0.51156227]\n", + " [ 0.71822273 0.45727576 -0.52445685]\n", + " [ 0.72515648 0.43104521 -0.53698054]\n", + " [ 0.73146593 0.40431833 -0.54907584]\n", + " [ 0.84875038 0.35929414 -0.38798262]\n", + " [ 0.83469319 0.36640422 -0.41113893]\n", + " [ 0.81968312 0.37335451 -0.43442606]\n", + " [ 0.8037432 0.38010172 -0.45773306]\n", + " [ 0.78690497 0.38660619 -0.48095344]\n", + " [ 0.76920971 0.39283166 -0.50398383]\n", + " [ 0.75070921 0.39874535 -0.52672367]\n", + " [ 0.73146593 0.40431833 -0.54907584]\n", + " [ 0.78555509 0.53258954 -0.31504218]\n", + " [ 0.76755045 0.54246301 -0.34146771]\n", + " [ 0.74832388 0.55175831 -0.36820394]\n", + " [ 0.72793648 0.56039914 -0.39504592]\n", + " [ 0.706468 0.56831754 -0.42180344]\n", + " [ 0.68401745 0.57545466 -0.44829908]\n", + " [ 0.79592403 0.5194918 -0.31085881]\n", + " [ 0.80769893 0.49174725 -0.32528002]\n", + " [ 0.81870902 0.4628431 -0.33984086]\n", + " [ 0.82883975 0.43292228 -0.35440509]\n", + " [ 0.83799366 0.40213787 -0.36885196]\n", + " [ 0.84609063 0.37065441 -0.38307433]\n", + " [ 0.6799591 0.5681793 -0.46349532]\n", + " [ 0.69116888 0.54004506 -0.48024672]\n", + " [ 0.70176853 0.51061928 -0.4967785 ]\n", + " [ 0.71164575 0.48003554 -0.51295829]\n", + " [ 0.72070359 0.44844268 -0.52866388]\n", + " [ 0.72886086 0.41600743 -0.54378275]\n", + " [ 0.84271971 0.36250036 -0.3980163 ]\n", + " [ 0.8248477 0.37111355 -0.42649854]\n", + " [ 0.8055665 0.37944313 -0.45506652]\n", + " [ 0.78493056 0.3874146 -0.48352244]\n", + " [ 0.76301595 0.3949612 -0.51167598]\n", + " [ 0.73992249 0.40202417 -0.53934337]\n", + " [ 0.79160958 0.52898217 -0.30583025]\n", + " [ 0.79160958 0.52898217 -0.30583025]\n", + " [ 0.73151245 0.40439201 -0.5489596 ]\n", + " [ 0.73151245 0.40439201 -0.5489596 ]\n", + " [ 0.78987135 0.52307789 -0.32014492]\n", + " [ 0.80165412 0.49526598 -0.33475705]\n", + " [ 0.81267626 0.46628352 -0.34948103]\n", + " [ 0.82282313 0.4362728 -0.36418146]\n", + " [ 0.83199699 0.40538663 -0.37873829]\n", + " [ 0.84011734 0.37378971 -0.39304467]\n", + " [ 0.77186031 0.5329018 -0.34676699]\n", + " [ 0.78363558 0.50493075 -0.36188426]\n", + " [ 0.79466616 0.47575975 -0.37703893]\n", + " [ 0.8048372 0.44552915 -0.39209801]\n", + " [ 0.81405018 0.4143909 -0.40694287]\n", + " [ 0.82222351 0.38251026 -0.42146695]\n", + " [ 0.75261009 0.54216329 -0.37368038]\n", + " [ 0.76433287 0.51407967 -0.3892523 ]\n", + " [ 0.77533274 0.48476929 -0.40479363]\n", + " [ 0.78549481 0.45437044 -0.42017306]\n", + " [ 0.79472005 0.42303422 -0.43527243]\n", + " [ 0.80292606 0.39092657 -0.44998461]\n", + " [ 0.73218148 0.55078575 -0.4006811 ]\n", + " [ 0.74380571 0.52263528 -0.41665984]\n", + " [ 0.75473438 0.49323426 -0.43254593]\n", + " [ 0.76485293 0.46271905 -0.44820874]\n", + " [ 0.77406227 0.43123997 -0.46352959]\n", + " [ 0.78227968 0.39896352 -0.47840005]\n", + " [ 0.71065412 0.55870073 -0.42757949]\n", + " [ 0.72213329 0.53052794 -0.44391848]\n", + " [ 0.73294962 0.50108439 -0.46010791]\n", + " [ 0.7429893 0.4705049 -0.47601684]\n", + " [ 0.7521538 0.43893904 -0.49152535]\n", + " [ 0.76036064 0.40655365 -0.50652328]\n", + " [ 0.68812719 0.56584888 -0.45419821]\n", + " [ 0.69941522 0.53769709 -0.4708505 ]\n", + " [ 0.71007843 0.50825841 -0.48730075]\n", + " [ 0.72000409 0.47766664 -0.50341702]\n", + " [ 0.72909477 0.44607077 -0.51907772]\n", + " [ 0.73726885 0.41363762 -0.53417092]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:fp_optics: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:cartToSphere: vec: [[-0.24097108 0.5265569 -0.81527343]\n", + " [-0.23770448 0.50432115 -0.83015466]\n", + " [-0.2340399 0.4812767 -0.84474734]\n", + " [-0.22999776 0.45749764 -0.85895107]\n", + " [-0.2255981 0.43306263 -0.87267534]\n", + " [-0.22086064 0.40805518 -0.88583946]\n", + " [-0.21580513 0.38256386 -0.89837244]\n", + " [-0.21045179 0.35668234 -0.91021302]\n", + " [-0.24097108 0.5265569 -0.81527343]\n", + " [-0.21542289 0.53481197 -0.81704904]\n", + " [-0.18912994 0.54272179 -0.81834157]\n", + " [-0.16219985 0.55024103 -0.81910074]\n", + " [-0.1347403 0.55732822 -0.81928646]\n", + " [-0.10685927 0.56394576 -0.8188689 ]\n", + " [-0.07866551 0.57006007 -0.81782838]\n", + " [-0.05026876 0.57564201 -0.81615521]\n", + " [-0.21045179 0.35668234 -0.91021302]\n", + " [-0.18363338 0.36375656 -0.91321407]\n", + " [-0.1561165 0.37068051 -0.91554552]\n", + " [-0.12800375 0.37741029 -0.91715676]\n", + " [-0.09939873 0.38390584 -0.91800665]\n", + " [-0.07040791 0.39013057 -0.91806365]\n", + " [-0.04114168 0.39605142 -0.91730618]\n", + " [-0.01171424 0.40163905 -0.91572313]\n", + " [-0.05026876 0.57564201 -0.81615521]\n", + " [-0.04509774 0.55309527 -0.83189652]\n", + " [-0.03978077 0.52965247 -0.84728139]\n", + " [-0.0343377 0.505383 -0.86221166]\n", + " [-0.02878855 0.48036148 -0.87659801]\n", + " [-0.02315389 0.45466944 -0.89035925]\n", + " [-0.01745506 0.42839623 -0.90342238]\n", + " [-0.01171424 0.40163905 -0.91572313]\n", + " [-0.23951065 0.5169946 -0.82179756]\n", + " [-0.23523569 0.48918891 -0.83985616]\n", + " [-0.23038343 0.46024155 -0.85738042]\n", + " [-0.22499096 0.43029543 -0.87419959]\n", + " [-0.21909459 0.39950428 -0.89016509]\n", + " [-0.21273086 0.36803331 -0.9051503 ]\n", + " [-0.2299195 0.53012076 -0.81615501]\n", + " [-0.1980919 0.54001152 -0.81801416]\n", + " [-0.16525259 0.54933832 -0.81909645]\n", + " [-0.13159976 0.55802325 -0.81932384]\n", + " [-0.09733227 0.56599709 -0.81864139]\n", + " [-0.06265073 0.57319984 -0.81701703]\n", + " [-0.19887022 0.35987164 -0.91156077]\n", + " [-0.16551908 0.36844739 -0.91479503]\n", + " [-0.13122072 0.37675322 -0.91697227]\n", + " [-0.09616533 0.38471377 -0.91801282]\n", + " [-0.06054906 0.39226171 -0.91785868]\n", + " [-0.02457674 0.39933768 -0.91647444]\n", + " [-0.04813112 0.56590779 -0.82306243]\n", + " [-0.04169382 0.53766321 -0.8421282 ]\n", + " [-0.03505685 0.5081412 -0.86056001]\n", + " [-0.02825696 0.47747689 -0.87818982]\n", + " [-0.02133203 0.44582047 -0.89486818]\n", + " [-0.01432172 0.41333974 -0.91046425]\n", + " [-0.24087463 0.52651108 -0.81533152]\n", + " [-0.24087463 0.52651108 -0.81533152]\n", + " [-0.01183469 0.40171275 -0.91568925]\n", + " [-0.01183469 0.40171275 -0.91568925]\n", + " [-0.22849896 0.52058218 -0.82266787]\n", + " [-0.19651408 0.53042073 -0.82464299]\n", + " [-0.16352177 0.53971082 -0.82581648]\n", + " [-0.12971972 0.5483744 -0.82611035]\n", + " [-0.09530641 0.55634191 -0.82546979]\n", + " [-0.06048251 0.56355294 -0.82386282]\n", + " [-0.22407985 0.49270628 -0.84085001]\n", + " [-0.19169539 0.50237703 -0.84313118]\n", + " [-0.15831533 0.5115455 -0.84454571]\n", + " [-0.12413549 0.52013322 -0.84501587]\n", + " [-0.08935324 0.52806974 -0.84448703]\n", + " [-0.05416966 0.53529357 -0.8429273 ]\n", + " [-0.21910732 0.46367726 -0.85848435]\n", + " [-0.18639088 0.47314983 -0.86103872]\n", + " [-0.15268999 0.4821692 -0.86266948]\n", + " [-0.11819837 0.49065678 -0.86329895]\n", + " [-0.0831125 0.49854164 -0.86287226]\n", + " [-0.0476342 0.50576163 -0.86135716]\n", + " [-0.21361813 0.43363771 -0.87540027]\n", + " [-0.18063612 0.44288037 -0.87819563]\n", + " [-0.14668033 0.45172153 -0.88001849]\n", + " [-0.11194266 0.46008296 -0.88079084]\n", + " [-0.07661904 0.46789398 -0.88045712]\n", + " [-0.04091233 0.47509246 -0.87898426]\n", + " [-0.20764812 0.40274121 -0.89144925]\n", + " [-0.17446571 0.41172169 -0.89445345]\n", + " [-0.14032029 0.42035485 -0.89644409]\n", + " [-0.1054025 0.42856342 -0.89734258]\n", + " [-0.06990817 0.43627774 -0.89709229]\n", + " [-0.03404116 0.44343643 -0.89565916]\n", + " [-0.20123348 0.37115317 -0.9065045 ]\n", + " [-0.16791503 0.37983986 -0.90968468]\n", + " [-0.13364505 0.38823596 -0.91181788]\n", + " [-0.09861371 0.39626559 -0.91282469]\n", + " [-0.06301703 0.40386072 -0.91264745]\n", + " [-0.02705965 0.4109614 -0.91125106]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:fp_optics: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:cartToSphere: vec: [[ 0.00360553 0.11522331 -0.99333307]\n", + " [ 0.02101537 0.09471372 -0.99528271]\n", + " [ 0.03889737 0.07380342 -0.99651395]\n", + " [ 0.0571591 0.05256892 -0.99698011]\n", + " [ 0.07571344 0.03108793 -0.99664488]\n", + " [ 0.09447725 0.00943996 -0.99548226]\n", + " [ 0.11337031 -0.0122936 -0.99347674]\n", + " [ 0.13231474 -0.03402976 -0.99062343]\n", + " [ 0.00360553 0.11522331 -0.99333307]\n", + " [ 0.02229523 0.13442286 -0.99067321]\n", + " [ 0.04148533 0.15382693 -0.98722654]\n", + " [ 0.06107778 0.17335625 -0.98296343]\n", + " [ 0.08097999 0.19293244 -0.97786467]\n", + " [ 0.10110336 0.21247756 -0.9719215 ]\n", + " [ 0.12136221 0.23191405 -0.96513579]\n", + " [ 0.14167311 0.25116502 -0.95752016]\n", + " [ 0.13231474 -0.03402976 -0.99062343]\n", + " [ 0.15302023 -0.01547966 -0.98810181]\n", + " [ 0.17402959 0.00346042 -0.98473434]\n", + " [ 0.19525148 0.02271549 -0.98049012]\n", + " [ 0.21659613 0.04221021 -0.97534836]\n", + " [ 0.23797432 0.06186803 -0.96929901]\n", + " [ 0.25929728 0.08161107 -0.96234326]\n", + " [ 0.28047724 0.10136048 -0.95449388]\n", + " [ 0.14167311 0.25116502 -0.95752016]\n", + " [ 0.16113813 0.23113874 -0.95948392]\n", + " [ 0.18086623 0.21052944 -0.96071055]\n", + " [ 0.20077124 0.18940885 -0.96115306]\n", + " [ 0.22076847 0.16785151 -0.96077425]\n", + " [ 0.24077392 0.14593566 -0.95954713]\n", + " [ 0.26070423 0.12374346 -0.95745541]\n", + " [ 0.28047724 0.10136048 -0.95449388]\n", + " [ 0.01119562 0.10640038 -0.99426034]\n", + " [ 0.03286433 0.08098459 -0.99617339]\n", + " [ 0.05514959 0.05504268 -0.99695979]\n", + " [ 0.07788888 0.02871721 -0.99654836]\n", + " [ 0.10092904 0.00215455 -0.99489129]\n", + " [ 0.12412337 -0.02449479 -0.99196441]\n", + " [ 0.01174548 0.12349473 -0.99227572]\n", + " [ 0.0350025 0.14717339 -0.98849118]\n", + " [ 0.05891291 0.17108048 -0.98349415]\n", + " [ 0.08330404 0.19507138 -0.9772449 ]\n", + " [ 0.10801269 0.21900258 -0.96972735]\n", + " [ 0.13288204 0.24273156 -0.9609494 ]\n", + " [ 0.14123403 -0.0259201 -0.98963685]\n", + " [ 0.16682602 -0.00291259 -0.98598205]\n", + " [ 0.19278356 0.02060598 -0.98102492]\n", + " [ 0.2189408 0.04449717 -0.974723 ]\n", + " [ 0.2451335 0.06862002 -0.96705784]\n", + " [ 0.27119861 0.09283069 -0.95803642]\n", + " [ 0.15005222 0.24244402 -0.95849112]\n", + " [ 0.17409575 0.21749815 -0.96040888]\n", + " [ 0.19844871 0.19174774 -0.96117164]\n", + " [ 0.22295467 0.16532873 -0.96070684]\n", + " [ 0.24745897 0.13838523 -0.95896485]\n", + " [ 0.2718086 0.11106994 -0.95592026]\n", + " [ 0.0037271 0.11521916 -0.9933331 ]\n", + " [ 0.0037271 0.11521916 -0.9933331 ]\n", + " [ 0.28033789 0.10136979 -0.95453383]\n", + " [ 0.28033789 0.10136979 -0.95453383]\n", + " [ 0.01929058 0.11467429 -0.99321583]\n", + " [ 0.04274883 0.13835954 -0.98945903]\n", + " [ 0.06683864 0.16229019 -0.98447676]\n", + " [ 0.09138886 0.18632174 -0.97822916]\n", + " [ 0.11623711 0.21031049 -0.97069997]\n", + " [ 0.14122678 0.23411347 -0.96189702]\n", + " [ 0.04115973 0.08924178 -0.99515917]\n", + " [ 0.06514414 0.11291195 -0.99146716]\n", + " [ 0.0897023 0.1368762 -0.98651832]\n", + " [ 0.1146666 0.16099055 -0.98027221]\n", + " [ 0.13987622 0.18511094 -0.97271197]\n", + " [ 0.16517431 0.20909323 -0.96384515]\n", + " [ 0.06362242 0.063265 -0.99596673]\n", + " [ 0.08807177 0.08686904 -0.99231907]\n", + " [ 0.11304215 0.11081656 -0.98739109]\n", + " [ 0.13836822 0.13496446 -0.98114159]\n", + " [ 0.16388944 0.15916866 -0.97355307]\n", + " [ 0.18944792 0.18328421 -0.96463277]\n", + " [ 0.08651758 0.03688629 -0.99556723]\n", + " [ 0.11137409 0.06037239 -0.99194304]\n", + " [ 0.13670271 0.08425187 -0.98702279]\n", + " [ 0.16233899 0.1083828 -0.98076461]\n", + " [ 0.18812177 0.13262155 -0.97315041]\n", + " [ 0.21389161 0.15682287 -0.9641872 ]\n", + " [ 0.10969287 0.01025217 -0.99391266]\n", + " [ 0.13490025 0.03356879 -0.99029039]\n", + " [ 0.16053335 0.05732889 -0.98536412]\n", + " [ 0.18642758 0.08139194 -0.97909147]\n", + " [ 0.21242059 0.10561522 -0.97145402]\n", + " [ 0.23835126 0.12985373 -0.96245867]\n", + " [ 0.13300177 -0.01648642 -0.99097867]\n", + " [ 0.15850355 0.00661038 -0.98733628]\n", + " [ 0.18438634 0.03020065 -0.98238974]\n", + " [ 0.21048472 0.05414541 -0.97609654]\n", + " [ 0.23663491 0.07830321 -0.96843819]\n", + " [ 0.26267432 0.10252981 -0.95942162]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:fp_optics: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:cartToSphere: vec: [[0.21096302 0.93312607 0.29115347]\n", + " [0.20775861 0.94141811 0.26564696]\n", + " [0.20447543 0.9491476 0.23939223]\n", + " [0.20110917 0.95624499 0.21248677]\n", + " [0.19765717 0.9626496 0.18503347]\n", + " [0.19411995 0.96831039 0.15713824]\n", + " [0.19050187 0.97318627 0.12890897]\n", + " [0.18681123 0.9772463 0.10045516]\n", + " [0.21096302 0.93312607 0.29115347]\n", + " [0.23721432 0.9275103 0.28888409]\n", + " [0.26384339 0.92112426 0.28621104]\n", + " [0.29073124 0.91395089 0.28314152]\n", + " [0.31775842 0.90598282 0.27968681]\n", + " [0.34480752 0.89722282 0.27586044]\n", + " [0.37176424 0.88768396 0.27167727]\n", + " [0.39851774 0.87738969 0.26715342]\n", + " [0.18681123 0.9772463 0.10045516]\n", + " [0.21392476 0.97208988 0.09631954]\n", + " [0.24142488 0.96604691 0.09201848]\n", + " [0.26918916 0.95909825 0.08756561]\n", + " [0.29710003 0.95123431 0.08297501]\n", + " [0.32504242 0.94245559 0.07826164]\n", + " [0.35290174 0.93277365 0.07344168]\n", + " [0.38056319 0.92221196 0.06853286]\n", + " [0.39851774 0.87738969 0.26715342]\n", + " [0.39701908 0.88575607 0.24044134]\n", + " [0.39517522 0.89356909 0.21300427]\n", + " [0.39297567 0.90075866 0.1849431 ]\n", + " [0.39041418 0.90726437 0.15635899]\n", + " [0.38748889 0.91303497 0.12735583]\n", + " [0.38420266 0.91802832 0.09804239]\n", + " [0.38056319 0.92221196 0.06853286]\n", + " [0.20966467 0.93678806 0.28012295]\n", + " [0.20568587 0.94658207 0.24834594]\n", + " [0.2015842 0.95546105 0.21554115]\n", + " [0.19735397 0.96330954 0.18189595]\n", + " [0.1929962 0.97003359 0.14760521]\n", + " [0.18852054 0.97556177 0.11286823]\n", + " [0.22234433 0.93080018 0.2901276 ]\n", + " [0.25478791 0.92340248 0.28707313]\n", + " [0.28768095 0.91482966 0.28341905]\n", + " [0.32080351 0.90506413 0.27918459]\n", + " [0.35393957 0.89411097 0.27439452]\n", + " [0.38688013 0.88199857 0.26907674]\n", + " [0.19859 0.97509295 0.09877117]\n", + " [0.23209621 0.96817981 0.09359058]\n", + " [0.26606084 0.95991501 0.08817481]\n", + " [0.30026546 0.95027692 0.0825496 ]\n", + " [0.33449802 0.93926656 0.07674249]\n", + " [0.36854739 0.92691017 0.07078393]\n", + " [0.39781454 0.88113718 0.2556186 ]\n", + " [0.39574628 0.8910286 0.22238012]\n", + " [0.39314881 0.90001804 0.18815295]\n", + " [0.39000885 0.90799031 0.15312312]\n", + " [0.38632304 0.91485105 0.11748217]\n", + " [0.38209864 0.92052667 0.08143262]\n", + " [0.21104119 0.93313738 0.29106055]\n", + " [0.21104119 0.93313738 0.29106055]\n", + " [0.3804821 0.92223664 0.06865089]\n", + " [0.3804821 0.92223664 0.06865089]\n", + " [0.22101589 0.93446973 0.27913851]\n", + " [0.2535973 0.92711383 0.2759499 ]\n", + " [0.28662793 0.91856498 0.27218156]\n", + " [0.31988624 0.90880513 0.26785448]\n", + " [0.35315571 0.8978392 0.26299394]\n", + " [0.38622705 0.88569555 0.25762774]\n", + " [0.21715706 0.94431368 0.24721345]\n", + " [0.25008037 0.93706872 0.24364322]\n", + " [0.28345097 0.92858458 0.23955423]\n", + " [0.31704519 0.91884238 0.23497026]\n", + " [0.35064641 0.90784659 0.22991663]\n", + " [0.38404477 0.89562556 0.2244203 ]\n", + " [0.21314907 0.95323664 0.21426009]\n", + " [0.24633809 0.94609028 0.21031103]\n", + " [0.27997289 0.93766578 0.2059079 ]\n", + " [0.31383022 0.92794363 0.20107512]\n", + " [0.34769441 0.91692767 0.19583729]\n", + " [0.38135518 0.904646 0.1902205 ]\n", + " [0.20898468 0.96112272 0.18046752]\n", + " [0.24236071 0.95406201 0.17614475]\n", + " [0.27618315 0.94569203 0.17143354]\n", + " [0.31023037 0.93599254 0.16635828]\n", + " [0.34428806 0.92496649 0.16094323]\n", + " [0.37814547 0.91264147 0.15521451]\n", + " [0.20466444 0.96787776 0.14603117]\n", + " [0.23814857 0.96088932 0.14133991]\n", + " [0.27208243 0.95256837 0.13632557]\n", + " [0.30624618 0.94289392 0.13101272]\n", + " [0.34042678 0.93186793 0.12542635]\n", + " [0.37441307 0.91951736 0.11959383]\n", + " [0.20019808 0.97343016 0.11115062]\n", + " [0.23371219 0.96649994 0.1060965 ]\n", + " [0.26768201 0.95822173 0.10078427]\n", + " [0.3018889 0.94857397 0.09523927]\n", + " [0.33612066 0.93755787 0.08948826]\n", + " [0.37016608 0.9251998 0.08356079]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:fp_optics: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:cartToSphere: vec: [[ 0.84966821 -0.01858146 0.52699018]\n", + " [ 0.83779698 -0.03494634 0.54486234]\n", + " [ 0.82499907 -0.05150233 0.56278241]\n", + " [ 0.81129951 -0.06818897 0.58064049]\n", + " [ 0.79672994 -0.08494493 0.59833583]\n", + " [ 0.78132911 -0.10170773 0.61577622]\n", + " [ 0.76514341 -0.11841388 0.63287733]\n", + " [ 0.74822719 -0.13499919 0.64956239]\n", + " [ 0.84966821 -0.01858146 0.52699018]\n", + " [ 0.84229382 0.00436885 0.53900096]\n", + " [ 0.83405798 0.02772813 0.55097953]\n", + " [ 0.82496747 0.05140267 0.56283785]\n", + " [ 0.81503558 0.07529925 0.57449719]\n", + " [ 0.8042825 0.09932455 0.58588761]\n", + " [ 0.79273585 0.12338488 0.59694727]\n", + " [ 0.78043115 0.1473863 0.60762201]\n", + " [ 0.74822719 -0.13499919 0.64956239]\n", + " [ 0.73979738 -0.11226514 0.6633976 ]\n", + " [ 0.73059877 -0.08897769 0.67698479]\n", + " [ 0.72063521 -0.06522493 0.69023953]\n", + " [ 0.70991778 -0.04109568 0.70308455]\n", + " [ 0.69846582 -0.01668109 0.71544897]\n", + " [ 0.68630754 0.00792462 0.72726829]\n", + " [ 0.67348033 0.03262448 0.73848486]\n", + " [ 0.78043115 0.1473863 0.60762201]\n", + " [ 0.76763786 0.13192567 0.62715846]\n", + " [ 0.7539673 0.11605565 0.646579 ]\n", + " [ 0.73944044 0.09983321 0.66577861]\n", + " [ 0.72408596 0.08331674 0.68465892]\n", + " [ 0.70794138 0.066567 0.70312718]\n", + " [ 0.69105386 0.04964756 0.72109617]\n", + " [ 0.67348033 0.03262448 0.73848486]\n", + " [ 0.84458361 -0.02561149 0.53481078]\n", + " [ 0.82940755 -0.04580423 0.55676304]\n", + " [ 0.81286372 -0.06622419 0.57867688]\n", + " [ 0.79500762 -0.08675883 0.60036305]\n", + " [ 0.77591063 -0.10729318 0.62165172]\n", + " [ 0.75566146 -0.12771 0.64239078]\n", + " [ 0.84651982 -0.00868681 0.53228633]\n", + " [ 0.83690128 0.01972838 0.54699821]\n", + " [ 0.82599486 0.04866479 0.561573 ]\n", + " [ 0.8138223 0.07795061 0.57586193]\n", + " [ 0.80042084 0.10741403 0.58973613]\n", + " [ 0.78584459 0.13688243 0.60308497]\n", + " [ 0.74470552 -0.12510412 0.65556285]\n", + " [ 0.73385739 -0.09685738 0.67236298]\n", + " [ 0.72185745 -0.06786708 0.68870595]\n", + " [ 0.70872307 -0.03829631 0.70444659]\n", + " [ 0.6944899 -0.00831298 0.71945443]\n", + " [ 0.67921368 0.02190828 0.73361352]\n", + " [ 0.77500566 0.14061719 0.61611122]\n", + " [ 0.75873438 0.12138538 0.63999042]\n", + " [ 0.74116539 0.10159531 0.66359043]\n", + " [ 0.72234821 0.08135384 0.68672746]\n", + " [ 0.70235202 0.06077288 0.70923078]\n", + " [ 0.68126769 0.03997053 0.73094233]\n", + " [ 0.84960547 -0.01855935 0.52709211]\n", + " [ 0.84960547 -0.01855935 0.52709211]\n", + " [ 0.67358647 0.03259828 0.7383892 ]\n", + " [ 0.67358647 0.03259828 0.7383892 ]\n", + " [ 0.84146958 -0.01572594 0.54007559]\n", + " [ 0.83177353 0.01273496 0.55496902]\n", + " [ 0.82079353 0.04173055 0.56969864]\n", + " [ 0.8085507 0.07108943 0.58411648]\n", + " [ 0.79508171 0.10063982 0.59809422]\n", + " [ 0.78044039 0.13020872 0.61152145]\n", + " [ 0.82621325 -0.03589606 0.56221271]\n", + " [ 0.81630031 -0.00734581 0.57758103]\n", + " [ 0.80511767 0.02177791 0.59271517]\n", + " [ 0.79268461 0.05130503 0.60746926]\n", + " [ 0.77903638 0.08106393 0.62171614]\n", + " [ 0.7642262 0.11088049 0.63534545]\n", + " [ 0.80958894 -0.05631461 0.58428967]\n", + " [ 0.79946157 -0.0277348 0.60007664]\n", + " [ 0.78808327 0.0014579 0.61556692]\n", + " [ 0.77547175 0.03109499 0.6306161 ]\n", + " [ 0.76166126 0.0610052 0.64509728]\n", + " [ 0.74670487 0.09101348 0.65889937]\n", + " [ 0.79165148 -0.07686899 0.60611805]\n", + " [ 0.78131019 -0.04831951 0.62226973]\n", + " [ 0.76974142 -0.01911755 0.63806949]\n", + " [ 0.75696189 0.0105701 0.65337353]\n", + " [ 0.74300552 0.04057286 0.66805437]\n", + " [ 0.72792573 0.07071511 0.68199964]\n", + " [ 0.77247178 -0.09744396 0.6275285 ]\n", + " [ 0.76191575 -0.06898406 0.64399192]\n", + " [ 0.75016071 -0.03983243 0.66005476]\n", + " [ 0.73722318 -0.01015416 0.675573 ]\n", + " [ 0.72313741 0.01988118 0.69041801]\n", + " [ 0.70795762 0.05009798 0.70447584]\n", + " [ 0.75213836 -0.11792178 0.64836899]\n", + " [ 0.74136652 -0.08960943 0.66509084]\n", + " [ 0.72942956 -0.06056687 0.68136933]\n", + " [ 0.71634452 -0.03095766 0.69705964]\n", + " [ 0.7021466 -0.00095014 0.71203178]\n", + " [ 0.68689111 0.02928068 0.72617026]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:fp_optics: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:cartToSphere: vec: [[-8.21042146e-01 -5.63140129e-02 -5.68083204e-01]\n", + " [-8.07511605e-01 -4.24660843e-02 -5.88321035e-01]\n", + " [-7.93058998e-01 -2.83090922e-02 -6.08486665e-01]\n", + " [-7.77706455e-01 -1.38974550e-02 -6.28473969e-01]\n", + " [-7.61484265e-01 7.14044674e-04 -6.48183002e-01]\n", + " [-7.44432097e-01 1.54693593e-02 -6.67518952e-01]\n", + " [-7.26599792e-01 3.03108458e-02 -6.86392013e-01]\n", + " [-7.08047498e-01 4.51795159e-02 -7.04718066e-01]\n", + " [-8.21042146e-01 -5.63140129e-02 -5.68083204e-01]\n", + " [-8.29996416e-01 -3.10706722e-02 -5.56902650e-01]\n", + " [-8.38179218e-01 -5.83428649e-03 -5.45363695e-01]\n", + " [-8.45567160e-01 1.92976044e-02 -5.33520179e-01]\n", + " [-8.52145137e-01 4.42286164e-02 -5.21433117e-01]\n", + " [-8.57905938e-01 6.88636948e-02 -5.09171084e-01]\n", + " [-8.62849772e-01 9.31088881e-02 -4.96810834e-01]\n", + " [-8.66983902e-01 1.16870795e-01 -4.84437953e-01]\n", + " [-7.08047498e-01 4.51795159e-02 -7.04718066e-01]\n", + " [-7.17379513e-01 7.12164248e-02 -6.93033084e-01]\n", + " [-7.26035771e-01 9.71053473e-02 -6.80766194e-01]\n", + " [-7.33991334e-01 1.22744854e-01 -6.67974867e-01]\n", + " [-7.41230437e-01 1.48037193e-01 -6.54723169e-01]\n", + " [-7.47746237e-01 1.72888782e-01 -6.41081144e-01]\n", + " [-7.53540265e-01 1.97209708e-01 -6.27124709e-01]\n", + " [-7.58621752e-01 2.20912259e-01 -6.12936221e-01]\n", + " [-8.66983902e-01 1.16870795e-01 -4.84437953e-01]\n", + " [-8.54158458e-01 1.31759526e-01 -5.03043493e-01]\n", + " [-8.40392212e-01 1.46735887e-01 -5.21737011e-01]\n", + " [-8.25711220e-01 1.61742317e-01 -5.40407627e-01]\n", + " [-8.10148675e-01 1.76721141e-01 -5.58953273e-01]\n", + " [-7.93745451e-01 1.91614406e-01 -5.77279896e-01]\n", + " [-7.76550620e-01 2.06364037e-01 -5.95300780e-01]\n", + " [-7.58621752e-01 2.20912259e-01 -6.12936221e-01]\n", + " [-8.15289300e-01 -5.02312078e-02 -5.76871028e-01]\n", + " [-7.98084076e-01 -3.30435918e-02 -6.01639368e-01]\n", + " [-7.79514974e-01 -1.54460014e-02 -6.26193123e-01]\n", + " [-7.59634297e-01 2.46091633e-03 -6.50345815e-01]\n", + " [-7.38515170e-01 2.05739365e-02 -6.73922887e-01]\n", + " [-7.16253644e-01 3.87863450e-02 -6.96761320e-01]\n", + " [-8.24994703e-01 -4.52661394e-02 -5.63324699e-01]\n", + " [-8.35453999e-01 -1.43193645e-02 -5.49373799e-01]\n", + " [-8.44730366e-01 1.65198261e-02 -5.34937104e-01]\n", + " [-8.52792564e-01 4.70734875e-02 -5.20123956e-01]\n", + " [-8.59627268e-01 7.71666013e-02 -5.05060666e-01]\n", + " [-8.65237801e-01 1.06626469e-01 -4.89892176e-01]\n", + " [-7.12261983e-01 5.64924602e-02 -6.99636670e-01]\n", + " [-7.23248349e-01 8.83167552e-02 -6.84917496e-01]\n", + " [-7.33193791e-01 1.19817734e-01 -6.69380740e-01]\n", + " [-7.42065478e-01 1.50813850e-01 -6.53141645e-01]\n", + " [-7.49850749e-01 1.81132761e-01 -6.36329142e-01]\n", + " [-7.56555654e-01 2.10609953e-01 -6.19085608e-01]\n", + " [-8.61496067e-01 1.23267413e-01 -4.92574533e-01]\n", + " [-8.45141041e-01 1.41580973e-01 -5.15452664e-01]\n", + " [-8.27397979e-01 1.59969117e-01 -5.38351619e-01]\n", + " [-8.08325003e-01 1.78325732e-01 -5.61079873e-01]\n", + " [-7.87997416e-01 1.96544145e-01 -5.83464200e-01]\n", + " [-7.66509087e-01 2.14517537e-01 -6.05347872e-01]\n", + " [-8.21029369e-01 -5.61810205e-02 -5.68114837e-01]\n", + " [-8.21029369e-01 -5.61810205e-02 -5.68114837e-01]\n", + " [-7.58668063e-01 2.20783015e-01 -6.12925469e-01]\n", + " [-7.58668063e-01 2.20783015e-01 -6.12925469e-01]\n", + " [-8.19270803e-01 -3.92744121e-02 -5.72060200e-01]\n", + " [-8.29777720e-01 -8.21741342e-03 -5.58033520e-01]\n", + " [-8.39104401e-01 2.27188607e-02 -5.43495776e-01]\n", + " [-8.47219870e-01 5.33560366e-02 -5.28556171e-01]\n", + " [-8.54111286e-01 8.35190904e-02 -5.13340503e-01]\n", + " [-8.59782517e-01 1.13035720e-01 -4.97992921e-01]\n", + " [-8.02106672e-01 -2.19815876e-02 -5.96776086e-01]\n", + " [-8.12737794e-01 9.34920228e-03 -5.82554608e-01]\n", + " [-8.22200067e-01 4.05216978e-02 -5.67754385e-01]\n", + " [-8.30463062e-01 7.13562104e-02 -5.52484745e-01]\n", + " [-8.37515168e-01 1.01677724e-01 -5.36870546e-01]\n", + " [-8.43361804e-01 1.31315228e-01 -5.21053912e-01]\n", + " [-7.83571628e-01 -4.29913793e-03 -6.21286586e-01]\n", + " [-7.94311333e-01 2.72474456e-02 -6.06899566e-01]\n", + " [-8.03899732e-01 5.85976403e-02 -5.91871217e-01]\n", + " [-8.12306532e-01 8.95705234e-02 -5.76311738e-01]\n", + " [-8.19520915e-01 1.19991233e-01 -5.60345942e-01]\n", + " [-8.25549544e-01 1.49690243e-01 -5.44114677e-01]\n", + " [-7.63717797e-01 1.36716675e-02 -6.45405464e-01]\n", + " [-7.74550404e-01 4.53742396e-02 -6.30882596e-01]\n", + " [-7.84256081e-01 7.68420249e-02 -6.15660380e-01]\n", + " [-7.92804215e-01 1.07893219e-01 -5.99850422e-01]\n", + " [-8.00184165e-01 1.38353374e-01 -5.83578312e-01]\n", + " [-8.06403237e-01 1.68054564e-01 -5.66984553e-01]\n", + " [-7.42618064e-01 3.18269044e-02 -6.68958489e-01]\n", + " [-7.53527454e-01 6.36238411e-02 -6.54330485e-01]\n", + " [-7.63341546e-01 9.51477673e-02 -6.38949596e-01]\n", + " [-7.72028985e-01 1.26216552e-01 -6.22929071e-01]\n", + " [-7.79578646e-01 1.56656469e-01 -6.06395816e-01]\n", + " [-7.85997752e-01 1.86301186e-01 -5.89490799e-01]\n", + " [-7.20368246e-01 5.00592770e-02 -6.91782956e-01]\n", + " [-7.31337606e-01 8.18876311e-02 -6.77081769e-01]\n", + " [-7.41250607e-01 1.13405559e-01 -6.61578958e-01]\n", + " [-7.50074835e-01 1.44431249e-01 -6.45389306e-01]\n", + " [-7.57798107e-01 1.74791968e-01 -6.28641230e-01]\n", + " [-7.64426878e-01 2.04322788e-01 -6.11476693e-01]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:fp_optics: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:cartToSphere: vec: [[ 9.24200257e-03 1.96799492e-01 -9.80400197e-01]\n", + " [ 7.85576843e-03 2.24120545e-01 -9.74529768e-01]\n", + " [ 6.43602589e-03 2.51808007e-01 -9.67755809e-01]\n", + " [ 4.98805573e-03 2.79741193e-01 -9.60062490e-01]\n", + " [ 3.51721177e-03 3.07802267e-01 -9.51443847e-01]\n", + " [ 2.02900700e-03 3.35874580e-01 -9.41904533e-01]\n", + " [ 5.29152027e-04 3.63841993e-01 -9.31460533e-01]\n", + " [-9.76464054e-04 3.91589339e-01 -9.20139574e-01]\n", + " [ 9.24200257e-03 1.96799492e-01 -9.80400197e-01]\n", + " [-1.97324558e-02 1.95424626e-01 -9.80520191e-01]\n", + " [-4.86036349e-02 1.93987570e-01 -9.79799219e-01]\n", + " [-7.72592501e-02 1.92499086e-01 -9.78251047e-01]\n", + " [-1.05587920e-01 1.90973868e-01 -9.75899674e-01]\n", + " [-1.33479164e-01 1.89430949e-01 -9.72779126e-01]\n", + " [-1.60823091e-01 1.87894055e-01 -9.68933309e-01]\n", + " [-1.87510029e-01 1.86391712e-01 -9.64415947e-01]\n", + " [-9.76464054e-04 3.91589339e-01 -9.20139574e-01]\n", + " [-3.09513755e-02 3.90017988e-01 -9.20286902e-01]\n", + " [-6.08029405e-02 3.88104714e-01 -9.19607380e-01]\n", + " [-9.04138518e-02 3.85862012e-01 -9.18115376e-01]\n", + " [-1.19670399e-01 3.83306642e-01 -9.15835691e-01]\n", + " [-1.48462949e-01 3.80459414e-01 -9.12803039e-01]\n", + " [-1.76685274e-01 3.77345087e-01 -9.09061604e-01]\n", + " [-2.04232877e-01 3.73992443e-01 -9.04664902e-01]\n", + " [-1.87510029e-01 1.86391712e-01 -9.64415947e-01]\n", + " [-1.90601884e-01 2.12568341e-01 -9.58376556e-01]\n", + " [-1.93470509e-01 2.39155163e-01 -9.51511414e-01]\n", + " [-1.96109741e-01 2.66026709e-01 -9.43806526e-01]\n", + " [-1.98512857e-01 2.93061785e-01 -9.35257952e-01]\n", + " [-2.00672626e-01 3.20143080e-01 -9.25871970e-01]\n", + " [-2.02581658e-01 3.47156777e-01 -9.15665247e-01]\n", + " [-2.04232877e-01 3.73992443e-01 -9.04664902e-01]\n", + " [ 8.54253281e-03 2.08654004e-01 -9.77952213e-01]\n", + " [ 6.81937719e-03 2.42400521e-01 -9.70152299e-01]\n", + " [ 5.05131953e-03 2.76577078e-01 -9.60978462e-01]\n", + " [ 3.24818557e-03 3.10965663e-01 -9.50415596e-01]\n", + " [ 1.42013520e-03 3.45351450e-01 -9.38472354e-01]\n", + " [-4.22235823e-04 3.79520974e-01 -9.25183037e-01]\n", + " [-3.40152947e-03 1.96300857e-01 -9.80537813e-01]\n", + " [-3.88584489e-02 1.94572619e-01 -9.80118114e-01]\n", + " [-7.40485483e-02 1.92761042e-01 -9.78447747e-01]\n", + " [-1.08766386e-01 1.90891529e-01 -9.75566654e-01]\n", + " [-1.42808536e-01 1.88999157e-01 -9.71537462e-01]\n", + " [-1.75972794e-01 1.87129608e-01 -9.66445076e-01]\n", + " [-1.40480142e-02 3.90852515e-01 -9.20346111e-01]\n", + " [-5.07171907e-02 3.88695555e-01 -9.19969310e-01]\n", + " [-8.70842071e-02 3.86037139e-01 -9.18363582e-01]\n", + " [-1.22938168e-01 3.82906354e-01 -9.15570276e-01]\n", + " [-1.58077164e-01 3.79341494e-01 -9.11653246e-01]\n", + " [-1.92306457e-01 3.75389795e-01 -9.06697705e-01]\n", + " [-1.88794776e-01 1.97751690e-01 -9.61899580e-01]\n", + " [-1.92433864e-01 2.30127015e-01 -9.53944844e-01]\n", + " [-1.95731753e-01 2.62993284e-01 -9.44734679e-01]\n", + " [-1.98676315e-01 2.96125611e-01 -9.34257643e-01]\n", + " [-2.01254275e-01 3.29307989e-01 -9.22525320e-01]\n", + " [-2.03452135e-01 3.62332274e-01 -9.09572730e-01]\n", + " [ 9.13819180e-03 1.96887568e-01 -9.80383486e-01]\n", + " [ 9.13819180e-03 1.96887568e-01 -9.80383486e-01]\n", + " [-2.04134743e-01 3.73912932e-01 -9.04719916e-01]\n", + " [-2.04134743e-01 3.73912932e-01 -9.04719916e-01]\n", + " [-4.04661771e-03 2.08062974e-01 -9.78107061e-01]\n", + " [-3.96424845e-02 2.06303697e-01 -9.77684641e-01]\n", + " [-7.49694328e-02 2.04433155e-01 -9.76005466e-01]\n", + " [-1.09821743e-01 2.02476438e-01 -9.73109694e-01]\n", + " [-1.43996159e-01 2.00468222e-01 -9.69060162e-01]\n", + " [-1.77290913e-01 1.98453885e-01 -9.63941901e-01]\n", + " [-5.89420845e-03 2.41798102e-01 -9.70308681e-01]\n", + " [-4.18393481e-02 2.39954500e-01 -9.69882110e-01]\n", + " [-7.75090970e-02 2.37922476e-01 -9.68186571e-01]\n", + " [-1.12696711e-01 2.35726539e-01 -9.65262892e-01]\n", + " [-1.47199411e-01 2.33400444e-01 -9.61174576e-01]\n", + " [-1.80817022e-01 2.30988615e-01 -9.56007042e-01]\n", + " [-7.76333297e-03 2.75964483e-01 -9.61136481e-01]\n", + " [-4.39913675e-02 2.74041290e-01 -9.60711263e-01]\n", + " [-7.99370596e-02 2.71854776e-01 -9.59012538e-01]\n", + " [-1.15392399e-01 2.69429513e-01 -9.56081760e-01]\n", + " [-1.50154969e-01 2.66799031e-01 -9.51983068e-01]\n", + " [-1.84026361e-01 2.64007192e-01 -9.46802250e-01]\n", + " [-9.64353382e-03 3.10344092e-01 -9.50575377e-01]\n", + " [-4.60864505e-02 3.08345618e-01 -9.50157365e-01]\n", + " [-8.22401197e-02 3.06010616e-01 -9.48469328e-01]\n", + " [-1.17895253e-01 3.03364444e-01 -9.45553131e-01]\n", + " [-1.52849660e-01 3.00441286e-01 -9.41473322e-01]\n", + " [-1.86906541e-01 2.97285211e-01 -9.36315891e-01]\n", + " [-1.15238753e-02 3.44722141e-01 -9.38634032e-01]\n", + " [-4.81116442e-02 3.42652818e-01 -9.38229352e-01]\n", + " [-8.44038862e-02 3.40175393e-01 -9.36566434e-01]\n", + " [-1.20190293e-01 3.37316608e-01 -9.33687206e-01]\n", + " [-1.55268808e-01 3.34112092e-01 -9.29656231e-01]\n", + " [-1.89443865e-01 3.30606912e-01 -9.24559404e-01]\n", + " [-1.33930649e-02 3.78885246e-01 -9.25346744e-01]\n", + " [-5.00538506e-02 3.76750130e-01 -9.24961595e-01]\n", + " [-8.64139582e-02 3.74137434e-01 -9.23338404e-01]\n", + " [-1.22262540e-01 3.71075618e-01 -9.20518743e-01]\n", + " [-1.57397650e-01 3.67602249e-01 -9.16566728e-01]\n", + " [-1.91624434e-01 3.63763952e-01 -9.11567805e-01]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:fp_optics: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:cartToSphere: vec: [[-0.17299614 0.49294419 -0.8526889 ]\n", + " [-0.19564083 0.50450509 -0.84095141]\n", + " [-0.21857882 0.51588981 -0.82830007]\n", + " [-0.24171004 0.52703069 -0.81474837]\n", + " [-0.2649361 0.53786513 -0.80031867]\n", + " [-0.28815935 0.54833526 -0.78504308]\n", + " [-0.31128293 0.55838824 -0.76896392]\n", + " [-0.33421147 0.56797667 -0.75213377]\n", + " [-0.17299614 0.49294419 -0.8526889 ]\n", + " [-0.18919188 0.47064993 -0.86179758]\n", + " [-0.20525712 0.44807469 -0.87011412]\n", + " [-0.22113362 0.42531353 -0.87761513]\n", + " [-0.2367671 0.40246685 -0.88428603]\n", + " [-0.25210758 0.37964065 -0.89012064]\n", + " [-0.26710958 0.35694738 -0.89512069]\n", + " [-0.28173206 0.33450724 -0.89929525]\n", + " [-0.33421147 0.56797667 -0.75213377]\n", + " [-0.35083763 0.5448454 -0.76161437]\n", + " [-0.36709727 0.52130096 -0.77037972]\n", + " [-0.38293081 0.49744311 -0.77840501]\n", + " [-0.39828412 0.47337586 -0.7856749 ]\n", + " [-0.41310877 0.4492066 -0.79218342]\n", + " [-0.4273619 0.4250458 -0.79793351]\n", + " [-0.44100546 0.40100773 -0.80293648]\n", + " [-0.28173206 0.33450724 -0.89929525]\n", + " [-0.30446427 0.34410997 -0.88819471]\n", + " [-0.32737315 0.35378425 -0.8761641 ]\n", + " [-0.35035343 0.36345915 -0.86322067]\n", + " [-0.37330367 0.37307182 -0.84938907]\n", + " [-0.39612554 0.38256638 -0.83470206]\n", + " [-0.41872358 0.39189307 -0.81920106]\n", + " [-0.44100546 0.40100773 -0.80293648]\n", + " [-0.18288248 0.49792593 -0.8477168 ]\n", + " [-0.21084637 0.51198456 -0.83271581]\n", + " [-0.23915103 0.5257109 -0.8163546 ]\n", + " [-0.26761468 0.53898761 -0.79867061]\n", + " [-0.29605756 0.55170824 -0.77972299]\n", + " [-0.32430193 0.56377772 -0.75959393]\n", + " [-0.18014675 0.48330365 -0.85671741]\n", + " [-0.19991648 0.45577822 -0.86735207]\n", + " [-0.21943174 0.4279245 -0.87677268]\n", + " [-0.23859092 0.39992511 -0.88494875]\n", + " [-0.25730202 0.37197531 -0.89186885]\n", + " [-0.27548319 0.34428524 -0.89753924]\n", + " [-0.34142362 0.5579164 -0.75641206]\n", + " [-0.36156203 0.52927666 -0.76755398]\n", + " [-0.38109031 0.50011499 -0.77759577]\n", + " [-0.39990649 0.47062118 -0.78650525]\n", + " [-0.4179214 0.44099286 -0.79427137]\n", + " [-0.43505818 0.41143491 -0.80090305]\n", + " [-0.29156559 0.33875709 -0.89455751]\n", + " [-0.31955906 0.35058524 -0.88032494]\n", + " [-0.34771289 0.36244923 -0.86471169]\n", + " [-0.3758388 0.37423006 -0.84776003]\n", + " [-0.40375574 0.38582476 -0.82953032]\n", + " [-0.43128925 0.39714409 -0.81010256]\n", + " [-0.1731285 0.49290828 -0.85268279]\n", + " [-0.1731285 0.49290828 -0.85268279]\n", + " [-0.44088432 0.40105883 -0.80297748]\n", + " [-0.44088432 0.40105883 -0.80297748]\n", + " [-0.18992658 0.48828235 -0.85176772]\n", + " [-0.20975373 0.46063558 -0.86244897]\n", + " [-0.22930263 0.43264465 -0.8719168 ]\n", + " [-0.24847124 0.40449229 -0.88014091]\n", + " [-0.26716726 0.3763733 -0.88711036]\n", + " [-0.28530865 0.34849663 -0.89283205]\n", + " [-0.21795504 0.50224278 -0.83680809]\n", + " [-0.23792116 0.47428863 -0.84761065]\n", + " [-0.25754298 0.44594857 -0.85720563]\n", + " [-0.27671748 0.4174063 -0.86556307]\n", + " [-0.29535182 0.388856 -0.87267309]\n", + " [-0.31336389 0.36050393 -0.87854425]\n", + " [-0.2463112 0.51588915 -0.82048106]\n", + " [-0.26638021 0.48768197 -0.83138912]\n", + " [-0.28604051 0.45905135 -0.84110206]\n", + " [-0.30518853 0.43018254 -0.84958987]\n", + " [-0.32373152 0.40127 -0.85684321]\n", + " [-0.34158791 0.37251844 -0.86287178]\n", + " [-0.2748129 0.52910465 -0.80282385]\n", + " [-0.29494756 0.50070019 -0.81382139]\n", + " [-0.31461073 0.47183853 -0.82364342]\n", + " [-0.33369881 0.44270664 -0.83225954]\n", + " [-0.35211969 0.41349986 -0.8396604 ]\n", + " [-0.36979285 0.38442231 -0.84585622]\n", + " [-0.30327999 0.54178338 -0.78389541]\n", + " [-0.32344224 0.51323902 -0.79496593]\n", + " [-0.34307224 0.48420739 -0.80488796]\n", + " [-0.36206684 0.45487697 -0.81363047]\n", + " [-0.38033498 0.42544416 -0.82118364]\n", + " [-0.39779761 0.3961132 -0.82755748]\n", + " [-0.33153447 0.55383072 -0.76377773]\n", + " [-0.35168588 0.52520533 -0.77490413]\n", + " [-0.37124691 0.49606636 -0.78491649]\n", + " [-0.39011524 0.46660335 -0.79378297]\n", + " [-0.40820118 0.43701368 -0.80149288]\n", + " [-0.4254273 0.40750203 -0.80805551]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:fp_optics: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:cartToSphere: vec: [[-0.28407455 -0.8333124 -0.47422789]\n", + " [-0.28309837 -0.81935263 -0.49851438]\n", + " [-0.28187309 -0.804453 -0.52287946]\n", + " [-0.28039137 -0.78863812 -0.54720252]\n", + " [-0.27864868 -0.77193988 -0.57137006]\n", + " [-0.27664345 -0.75439893 -0.59527359]\n", + " [-0.27437734 -0.73606624 -0.61880819]\n", + " [-0.27185544 -0.71700378 -0.64187242]\n", + " [-0.28407455 -0.8333124 -0.47422789]\n", + " [-0.31177804 -0.82530302 -0.47081777]\n", + " [-0.33912858 -0.81657857 -0.46710945]\n", + " [-0.36602275 -0.80718146 -0.46312572]\n", + " [-0.39236097 -0.79716202 -0.45889605]\n", + " [-0.4180477 -0.78657832 -0.45445646]\n", + " [-0.44299213 -0.77549597 -0.44984884]\n", + " [-0.46710976 -0.76398783 -0.44511915]\n", + " [-0.27185544 -0.71700378 -0.64187242]\n", + " [-0.30051216 -0.7087885 -0.63820945]\n", + " [-0.32880568 -0.69996219 -0.63398719]\n", + " [-0.35662797 -0.69056891 -0.62923054]\n", + " [-0.38387858 -0.68065951 -0.62397105]\n", + " [-0.41046422 -0.67029119 -0.61824659]\n", + " [-0.43629674 -0.65952783 -0.61210146]\n", + " [-0.46129075 -0.6484408 -0.60558681]\n", + " [-0.46710976 -0.76398783 -0.44511915]\n", + " [-0.4677134 -0.74972247 -0.46814569]\n", + " [-0.46785089 -0.73465166 -0.49132727]\n", + " [-0.46751047 -0.71880182 -0.51454632]\n", + " [-0.46668542 -0.70220805 -0.53768817]\n", + " [-0.46537287 -0.68491393 -0.56064338]\n", + " [-0.46357333 -0.66697141 -0.58330859]\n", + " [-0.46129075 -0.6484408 -0.60558681]\n", + " [-0.28377457 -0.82731651 -0.48478798]\n", + " [-0.28241265 -0.80957234 -0.51462192]\n", + " [-0.2806688 -0.7904402 -0.54445323]\n", + " [-0.2785335 -0.76997574 -0.57407008]\n", + " [-0.27600389 -0.748254 -0.60327257]\n", + " [-0.27308444 -0.72537338 -0.63186893]\n", + " [-0.29618746 -0.82986437 -0.47286163]\n", + " [-0.32991776 -0.819562 -0.46847882]\n", + " [-0.36301469 -0.80822685 -0.46366982]\n", + " [-0.39529333 -0.7959483 -0.45848608]\n", + " [-0.42657789 -0.78283323 -0.45299386]\n", + " [-0.45670362 -0.7690055 -0.44727212]\n", + " [-0.28439638 -0.71356588 -0.64026747]\n", + " [-0.31928772 -0.70308104 -0.6353994 ]\n", + " [-0.35352538 -0.69172128 -0.62971539]\n", + " [-0.38692123 -0.67957743 -0.62327079]\n", + " [-0.41930326 -0.66675486 -0.61613532]\n", + " [-0.45051043 -0.65337422 -0.60839336]\n", + " [-0.46734796 -0.75790847 -0.45514903]\n", + " [-0.46777531 -0.73988034 -0.48349078]\n", + " [-0.46749028 -0.72066753 -0.51194839]\n", + " [-0.46647851 -0.70033108 -0.54030934]\n", + " [-0.46473465 -0.67895117 -0.56837225]\n", + " [-0.46226106 -0.65662694 -0.59594948]\n", + " [-0.28416684 -0.83324016 -0.47429953]\n", + " [-0.28416684 -0.83324016 -0.47429953]\n", + " [-0.46121542 -0.64854347 -0.60553423]\n", + " [-0.46121542 -0.64854347 -0.60553423]\n", + " [-0.29584223 -0.82392806 -0.48334246]\n", + " [-0.32970392 -0.81359207 -0.47891886]\n", + " [-0.36292909 -0.80222688 -0.47404061]\n", + " [-0.39533257 -0.78992217 -0.46875913]\n", + " [-0.42673828 -0.77678491 -0.46314107]\n", + " [-0.45698044 -0.76293897 -0.45726689]\n", + " [-0.29459861 -0.80615242 -0.51315683]\n", + " [-0.32879086 -0.79573638 -0.50862579]\n", + " [-0.36233854 -0.78430548 -0.50356299]\n", + " [-0.39505604 -0.77195041 -0.49801937]\n", + " [-0.42676752 -0.75877857 -0.49206155]\n", + " [-0.45730615 -0.74491375 -0.48577216]\n", + " [-0.29295079 -0.7869954 -0.54297153]\n", + " [-0.3274117 -0.7765222 -0.53834454]\n", + " [-0.36122138 -0.76505487 -0.53311365]\n", + " [-0.39419374 -0.75268513 -0.52732949]\n", + " [-0.42615406 -0.73952079 -0.52105827]\n", + " [-0.45693649 -0.72568538 -0.5143829 ]\n", + " [-0.29088878 -0.76651284 -0.57257469]\n", + " [-0.32555543 -0.75600642 -0.56786262]\n", + " [-0.35956616 -0.74453332 -0.56247872]\n", + " [-0.39273422 -0.73218595 -0.55647422]\n", + " [-0.42488622 -0.71907214 -0.54991541]\n", + " [-0.45585819 -0.70531487 -0.54288511]\n", + " [-0.28840894 -0.74478006 -0.60176652]\n", + " [-0.32321648 -0.73426545 -0.5969802 ]\n", + " [-0.35736638 -0.7228186 -0.59145798]\n", + " [-0.39067118 -0.71053186 -0.58525251]\n", + " [-0.42295848 -0.6975124 -0.57843114]\n", + " [-0.45406612 -0.68388235 -0.57107696]\n", + " [-0.28551484 -0.7218957 -0.63035536]\n", + " [-0.32039635 -0.71139857 -0.6255064 ]\n", + " [-0.35462238 -0.70001045 -0.61986155]\n", + " [-0.38800493 -0.6878227 -0.61347544]\n", + " [-0.42037198 -0.67494123 -0.60641713]\n", + " [-0.45156241 -0.66148709 -0.59877059]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:cartToSphere: vec: [[-0.29687222 -0.25065001 0.92143445]\n", + " [-0.27276376 -0.2644373 0.92502586]\n", + " [-0.24795352 -0.27828532 0.92794199]\n", + " [-0.22252849 -0.29212726 0.93013049]\n", + " [-0.19657884 -0.30589882 0.93154853]\n", + " [-0.17019911 -0.31953771 0.93216303]\n", + " [-0.14348843 -0.33298375 0.93195112]\n", + " [-0.11654994 -0.34617937 0.93090062]\n", + " [-0.29687222 -0.25065001 0.92143445]\n", + " [-0.30892142 -0.27470589 0.91055161]\n", + " [-0.32058789 -0.29850296 0.89895461]\n", + " [-0.33182727 -0.32195293 0.88670005]\n", + " [-0.34259727 -0.34497191 0.87385439]\n", + " [-0.35285703 -0.36748069 0.86049396]\n", + " [-0.36256627 -0.3894044 0.84670533]\n", + " [-0.3716842 -0.41067199 0.83258596]\n", + " [-0.11654994 -0.34617937 0.93090062]\n", + " [-0.12914616 -0.37098522 0.91961472]\n", + " [-0.14158356 -0.39537921 0.90754029]\n", + " [-0.15381476 -0.41926998 0.89473667]\n", + " [-0.16579488 -0.44257249 0.88127274]\n", + " [-0.17748187 -0.46520856 0.86722614]\n", + " [-0.18883634 -0.48710665 0.85268279]\n", + " [-0.1998211 -0.50820086 0.83773708]\n", + " [-0.3716842 -0.41067199 0.83258596]\n", + " [-0.34905823 -0.42531088 0.83502635]\n", + " [-0.32563362 -0.43982498 0.83696878]\n", + " [-0.30150404 -0.45414478 0.83836021]\n", + " [-0.27676273 -0.46820393 0.83915879]\n", + " [-0.25150393 -0.48193911 0.83933335]\n", + " [-0.22582386 -0.49529022 0.83886303]\n", + " [-0.1998211 -0.50820086 0.83773708]\n", + " [-0.2864946 -0.25673237 0.92304352]\n", + " [-0.25646486 -0.27368032 0.92699776]\n", + " [-0.22546711 -0.29065264 0.92988474]\n", + " [-0.19366595 -0.30752995 0.93162161]\n", + " [-0.16123543 -0.32419757 0.93214756]\n", + " [-0.12835977 -0.34054578 0.9314249 ]\n", + " [-0.30208888 -0.26121175 0.91679372]\n", + " [-0.31660527 -0.29053275 0.90296834]\n", + " [-0.3305026 -0.31937666 0.88812531]\n", + " [-0.34370216 -0.34758723 0.87238291]\n", + " [-0.35612864 -0.37501855 0.8558817 ]\n", + " [-0.36770773 -0.40153445 0.8387855 ]\n", + " [-0.12215071 -0.35699472 0.9260853 ]\n", + " [-0.13748773 -0.38713165 0.91171608]\n", + " [-0.15253867 -0.41655859 0.89622034]\n", + " [-0.16721988 -0.44511634 0.87972095]\n", + " [-0.1814539 -0.47266093 0.86236079]\n", + " [-0.19516919 -0.49906308 0.8443015 ]\n", + " [-0.36189284 -0.41699375 0.83375643]\n", + " [-0.3336121 -0.43486011 0.83642074]\n", + " [-0.30422502 -0.45246971 0.83828295]\n", + " [-0.27390335 -0.46969911 0.83926141]\n", + " [-0.24282068 -0.48643176 0.83929867]\n", + " [-0.21115514 -0.50255853 0.83836056]\n", + " [-0.29683288 -0.25077958 0.92141188]\n", + " [-0.29683288 -0.25077958 0.92141188]\n", + " [-0.19987357 -0.50808683 0.83779373]\n", + " [-0.19987357 -0.50808683 0.83779373]\n", + " [-0.29177293 -0.26720445 0.91840641]\n", + " [-0.30636524 -0.29662756 0.90451779]\n", + " [-0.32035714 -0.32555693 0.88959766]\n", + " [-0.33367018 -0.3538359 0.87376448]\n", + " [-0.34622978 -0.38131857 0.85715873]\n", + " [-0.35796282 -0.40786916 0.83994367]\n", + " [-0.26179995 -0.28425256 0.922313 ]\n", + " [-0.27658963 -0.31392937 0.90826567]\n", + " [-0.29083252 -0.34306659 0.89315271]\n", + " [-0.30445026 -0.37150648 0.87709348]\n", + " [-0.31736964 -0.39910313 0.86022858]\n", + " [-0.32952023 -0.42572197 0.84272013]\n", + " [-0.23084921 -0.30130559 0.92516138]\n", + " [-0.24581025 -0.33118238 0.91098603]\n", + " [-0.26028006 -0.36047582 0.89571841]\n", + " [-0.27417966 -0.38902721 0.87947902]\n", + " [-0.28743603 -0.41669076 0.86240903]\n", + " [-0.29998022 -0.44333319 0.84467008]\n", + " [-0.19908507 -0.31824361 0.926869 ]\n", + " [-0.214191 -0.34826511 0.91259719]\n", + " [-0.22886388 -0.37766187 0.89721393]\n", + " [-0.24302353 -0.40627455 0.88084082]\n", + " [-0.25659622 -0.43395767 0.86361978]\n", + " [-0.26951322 -0.46057923 0.84571236]\n", + " [-0.16668127 -0.33495136 0.9273753 ]\n", + " [-0.18190473 -0.36506091 0.91303954]\n", + " [-0.19675602 -0.39450719 0.89758072]\n", + " [-0.2111535 -0.4231306 0.88112127]\n", + " [-0.22502206 -0.45078618 0.86380374]\n", + " [-0.23829221 -0.47734318 0.84578976]\n", + " [-0.13382173 -0.35131867 0.92664283]\n", + " [-0.14913429 -0.38145869 0.9122764 ]\n", + " [-0.16413795 -0.41090024 0.89678299]\n", + " [-0.17874959 -0.43948395 0.88028543]\n", + " [-0.19289236 -0.46706555 0.86292659]\n", + " [-0.20649535 -0.49351544 0.84486815]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:fp_optics: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:fp_optics: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:cartToSphere: vec: [[-3.89404752e-02 5.77843129e-01 -8.15218350e-01]\n", + " [-3.36700495e-02 5.55318242e-01 -8.30956063e-01]\n", + " [-2.82675008e-02 5.31894302e-01 -8.46338821e-01]\n", + " [-2.27529127e-02 5.07640594e-01 -8.61268444e-01]\n", + " [-1.71466276e-02 4.82631634e-01 -8.75655583e-01]\n", + " [-1.14695917e-02 4.56948826e-01 -8.89419035e-01]\n", + " [-5.74352093e-03 4.30681429e-01 -9.02485744e-01]\n", + " [ 9.15418534e-06 4.03926555e-01 -9.14791418e-01]\n", + " [-3.89404752e-02 5.77843129e-01 -8.15218350e-01]\n", + " [-1.04469704e-02 5.82640404e-01 -8.12662919e-01]\n", + " [ 1.79837776e-02 5.86855527e-01 -8.09491924e-01]\n", + " [ 4.62412520e-02 5.90476574e-01 -8.05728963e-01]\n", + " [ 7.42157637e-02 5.93496512e-01 -8.01407456e-01]\n", + " [ 1.01798516e-01 5.95912781e-01 -7.96570788e-01]\n", + " [ 1.28881347e-01 5.97726900e-01 -7.91272489e-01]\n", + " [ 1.55356382e-01 5.98944308e-01 -7.85576292e-01]\n", + " [ 9.15418534e-06 4.03926555e-01 -9.14791418e-01]\n", + " [ 2.94657431e-02 4.09006904e-01 -9.12055438e-01]\n", + " [ 5.88024010e-02 4.13701568e-01 -9.08511580e-01]\n", + " [ 8.79038319e-02 4.17997230e-01 -9.04185397e-01]\n", + " [ 1.16658266e-01 4.21885746e-01 -8.99112488e-01]\n", + " [ 1.44957937e-01 4.25363962e-01 -8.93337952e-01]\n", + " [ 1.72698429e-01 4.28433382e-01 -8.86916055e-01]\n", + " [ 1.99777036e-01 4.31099798e-01 -8.79910280e-01]\n", + " [ 1.55356382e-01 5.98944308e-01 -7.85576292e-01]\n", + " [ 1.62175265e-01 5.77291912e-01 -8.00270724e-01]\n", + " [ 1.68873458e-01 5.54733874e-01 -8.14709816e-01]\n", + " [ 1.75429275e-01 5.31343924e-01 -8.28793222e-01]\n", + " [ 1.81820465e-01 5.07200134e-01 -8.42430616e-01]\n", + " [ 1.88024205e-01 4.82385312e-01 -8.55541530e-01]\n", + " [ 1.94017380e-01 4.56987428e-01 -8.68055152e-01]\n", + " [ 1.99777036e-01 4.31099798e-01 -8.79910280e-01]\n", + " [-3.65622768e-02 5.68154461e-01 -8.22109304e-01]\n", + " [-3.00104831e-02 5.39934972e-01 -8.41171562e-01]\n", + " [-2.32803641e-02 5.10433394e-01 -8.59602102e-01]\n", + " [-1.64092467e-02 4.79784648e-01 -8.77232824e-01]\n", + " [-9.43571775e-03 4.48138709e-01 -8.93914238e-01]\n", + " [-2.40006856e-03 4.15663201e-01 -9.09515444e-01]\n", + " [-2.64984166e-02 5.79930021e-01 -8.14235227e-01]\n", + " [ 8.39603081e-03 5.85420109e-01 -8.10686624e-01]\n", + " [ 4.30862681e-02 5.90023477e-01 -8.06235617e-01]\n", + " [ 7.73699988e-02 5.93725165e-01 -8.00939643e-01]\n", + " [ 1.11046901e-01 5.96520415e-01 -7.94878595e-01]\n", + " [ 1.43917984e-01 5.98413649e-01 -7.88155263e-01]\n", + " [ 1.28398876e-02 4.06280152e-01 -9.13658347e-01]\n", + " [ 4.88758751e-02 4.12249035e-01 -9.09759244e-01]\n", + " [ 8.46168668e-02 4.17624623e-01 -9.04671023e-01]\n", + " [ 1.19855569e-01 4.22389777e-01 -8.98455073e-01]\n", + " [ 1.54393512e-01 4.26538660e-01 -8.91194376e-01]\n", + " [ 1.88039279e-01 4.30075839e-01 -8.82992640e-01]\n", + " [ 1.58253225e-01 5.89616218e-01 -7.92028177e-01]\n", + " [ 1.66531249e-01 5.62460019e-01 -8.09880281e-01]\n", + " [ 1.74606670e-01 5.34016265e-01 -8.27247931e-01]\n", + " [ 1.82438774e-01 5.04426873e-01 -8.43960676e-01]\n", + " [ 1.89985574e-01 4.73844338e-01 -8.59870354e-01]\n", + " [ 1.97204559e-01 4.42432835e-01 -8.74850586e-01]\n", + " [-3.88252785e-02 5.77785089e-01 -8.15264981e-01]\n", + " [-3.88252785e-02 5.77785089e-01 -8.15264981e-01]\n", + " [ 1.99666409e-01 4.31180610e-01 -8.79895793e-01]\n", + " [ 1.99666409e-01 4.31180610e-01 -8.79895793e-01]\n", + " [-2.41870816e-02 5.70309140e-01 -8.21073974e-01]\n", + " [ 1.08410024e-02 5.75836341e-01 -8.17493108e-01]\n", + " [ 4.56594987e-02 5.80490981e-01 -8.12985505e-01]\n", + " [ 8.00657822e-02 5.84258429e-01 -8.07608543e-01]\n", + " [ 1.13859635e-01 5.87134376e-01 -8.01441956e-01]\n", + " [ 1.46842453e-01 5.89123594e-01 -7.94588375e-01]\n", + " [-1.75136918e-02 5.42114694e-01 -8.40121973e-01]\n", + " [ 1.78493409e-02 5.47741396e-01 -8.36457270e-01]\n", + " [ 5.29869996e-02 5.52537907e-01 -8.31801803e-01]\n", + " [ 8.76955318e-02 5.56490345e-01 -8.26213041e-01]\n", + " [ 1.21775033e-01 5.59595565e-01 -8.19770483e-01]\n", + " [ 1.55028329e-01 5.61859474e-01 -8.12576242e-01]\n", + " [-1.06849547e-02 5.12634368e-01 -8.58540527e-01]\n", + " [ 2.49476302e-02 5.18352706e-01 -8.54802953e-01]\n", + " [ 6.03384408e-02 5.23287212e-01 -8.50017509e-01]\n", + " [ 9.52824440e-02 5.27424248e-01 -8.44242216e-01]\n", + " [ 1.29580029e-01 5.30761331e-01 -8.37556819e-01]\n", + " [ 1.63035676e-01 5.33305247e-01 -8.30063179e-01]\n", + " [-3.73882569e-03 4.82003019e-01 -8.76161578e-01]\n", + " [ 3.20962219e-02 4.87805458e-01 -8.72362120e-01]\n", + " [ 6.76729080e-02 4.92875109e-01 -8.67464411e-01]\n", + " [ 1.02785014e-01 4.97197937e-01 -8.61527395e-01]\n", + " [ 1.37233214e-01 5.00771343e-01 -8.54631562e-01]\n", + " [ 1.70823597e-01 5.03602333e-01 -8.46878970e-01]\n", + " [ 3.28534520e-03 4.50370507e-01 -8.92835714e-01]\n", + " [ 3.92537695e-02 4.56249360e-01 -8.88985749e-01]\n", + " [ 7.49476078e-02 4.61451482e-01 -8.83993996e-01]\n", + " [ 1.10159808e-01 4.65961814e-01 -8.77920500e-01]\n", + " [ 1.44691367e-01 4.69776812e-01 -8.70846804e-01]\n", + " [ 1.78349727e-01 4.72902896e-01 -8.62875556e-01]\n", + " [ 1.03465876e-02 4.17904306e-01 -9.08432133e-01]\n", + " [ 4.63775932e-02 4.23851285e-01 -9.04543646e-01]\n", + " [ 8.21187021e-02 4.29182428e-01 -8.99477049e-01]\n", + " [ 1.17362574e-01 4.33881186e-01 -8.93293425e-01]\n", + " [ 1.51910591e-01 4.37942395e-01 -8.86075409e-01]\n", + " [ 1.85571132e-01 4.41371195e-01 -8.77926434e-01]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:fp_optics: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:cartToSphere: vec: [[ 0.85106235 0.34878463 -0.39248206]\n", + " [ 0.83702586 0.35580807 -0.41567815]\n", + " [ 0.82203352 0.3626847 -0.43899966]\n", + " [ 0.8061083 0.36937145 -0.46233553]\n", + " [ 0.78928163 0.37582897 -0.48557913]\n", + " [ 0.77159468 0.38202134 -0.50862693]\n", + " [ 0.75309914 0.38791609 -0.5313782 ]\n", + " [ 0.73385742 0.39348449 -0.55373571]\n", + " [ 0.85106235 0.34878463 -0.39248206]\n", + " [ 0.85619683 0.32248878 -0.40364339]\n", + " [ 0.86054851 0.29603307 -0.41451259]\n", + " [ 0.86410923 0.26952546 -0.42505443]\n", + " [ 0.86687928 0.24307729 -0.43523987]\n", + " [ 0.86886702 0.21680352 -0.44504645]\n", + " [ 0.87008845 0.19082337 -0.45445851]\n", + " [ 0.87056697 0.16526126 -0.46346722]\n", + " [ 0.73385742 0.39348449 -0.55373571]\n", + " [ 0.73924045 0.36623892 -0.56514832]\n", + " [ 0.74394098 0.33875455 -0.57601837]\n", + " [ 0.74795002 0.31114479 -0.58631022]\n", + " [ 0.75126754 0.28352421 -0.5959959 ]\n", + " [ 0.75390214 0.2560078 -0.60505502]\n", + " [ 0.75587059 0.22871128 -0.61347437]\n", + " [ 0.75719738 0.20175262 -0.62124714]\n", + " [ 0.87056697 0.16526126 -0.46346722]\n", + " [ 0.85701194 0.17030785 -0.48633915]\n", + " [ 0.84251862 0.17547599 -0.50928436]\n", + " [ 0.827114 0.18072078 -0.53218646]\n", + " [ 0.81083265 0.18600293 -0.55493543]\n", + " [ 0.79371719 0.19128821 -0.57742692]\n", + " [ 0.77581879 0.19654677 -0.59956198]\n", + " [ 0.75719738 0.20175262 -0.62124714]\n", + " [ 0.84508003 0.35177211 -0.40261164]\n", + " [ 0.82723177 0.36028608 -0.43113981]\n", + " [ 0.80796972 0.36853646 -0.45974537]\n", + " [ 0.78734815 0.37644932 -0.48823027]\n", + " [ 0.76544295 0.38395852 -0.51640386]\n", + " [ 0.74235375 0.39100583 -0.54408211]\n", + " [ 0.8533501 0.33736981 -0.39746098]\n", + " [ 0.85911819 0.30501964 -0.41094886]\n", + " [ 0.86370144 0.27253618 -0.42396208]\n", + " [ 0.86709691 0.24012303 -0.43644459]\n", + " [ 0.86931992 0.20799189 -0.44835505]\n", + " [ 0.87040302 0.17636436 -0.45966749]\n", + " [ 0.73635438 0.38162341 -0.55870009]\n", + " [ 0.74249433 0.34805655 -0.57232753]\n", + " [ 0.74759908 0.31424355 -0.58510392]\n", + " [ 0.75166486 0.28039489 -0.59697457]\n", + " [ 0.75470747 0.24672231 -0.60790191]\n", + " [ 0.756761 0.21343967 -0.6178643 ]\n", + " [ 0.86477319 0.16753061 -0.47339289]\n", + " [ 0.84752569 0.17380479 -0.50148988]\n", + " [ 0.82889479 0.18021609 -0.52958058]\n", + " [ 0.80894095 0.18668987 -0.55745981]\n", + " [ 0.78774269 0.19316302 -0.58493546]\n", + " [ 0.76539786 0.19958223 -0.61182763]\n", + " [ 0.85103487 0.34871931 -0.39259966]\n", + " [ 0.85103487 0.34871931 -0.39259966]\n", + " [ 0.75725874 0.20182641 -0.62114837]\n", + " [ 0.75725874 0.20182641 -0.62114837]\n", + " [ 0.84740495 0.34037724 -0.4074901 ]\n", + " [ 0.85320245 0.30789161 -0.42100871]\n", + " [ 0.85781806 0.27526288 -0.43402594]\n", + " [ 0.86124913 0.2426948 -0.44648536]\n", + " [ 0.86351144 0.21039864 -0.4583453 ]\n", + " [ 0.86463798 0.1785951 -0.46957955]\n", + " [ 0.82958152 0.34877689 -0.43606099]\n", + " [ 0.83545759 0.31594926 -0.44965173]\n", + " [ 0.84016407 0.28295335 -0.46266806]\n", + " [ 0.84369903 0.24999381 -0.47505268]\n", + " [ 0.84607941 0.21728107 -0.48676336]\n", + " [ 0.84733948 0.1850333 -0.49777353]\n", + " [ 0.81034034 0.35693426 -0.4647004 ]\n", + " [ 0.81628828 0.32382704 -0.47834035]\n", + " [ 0.82108538 0.29052963 -0.49133628]\n", + " [ 0.82473002 0.25724815 -0.5036306 ]\n", + " [ 0.82723993 0.22419278 -0.51518122]\n", + " [ 0.82865036 0.19157961 -0.52596182]\n", + " [ 0.78973562 0.36477604 -0.49320999]\n", + " [ 0.79574892 0.33145316 -0.5068752 ]\n", + " [ 0.80063717 0.29792087 -0.51983005]\n", + " [ 0.80439863 0.26438693 -0.53201728]\n", + " [ 0.8070512 0.23106182 -0.54339562]\n", + " [ 0.80863053 0.19816017 -0.55393972]\n", + " [ 0.76784309 0.37223683 -0.52139882]\n", + " [ 0.77391508 0.33876425 -0.53506469]\n", + " [ 0.77889524 0.30506528 -0.54795747]\n", + " [ 0.7827812 0.27134918 -0.56002072]\n", + " [ 0.78559037 0.23782695 -0.57121459]\n", + " [ 0.78735815 0.20471251 -0.5815152 ]\n", + " [ 0.74476226 0.37925905 -0.54908264]\n", + " [ 0.75088583 0.34570462 -0.56272443]\n", + " [ 0.75595816 0.31190885 -0.57553464]\n", + " [ 0.75997591 0.27808202 -0.58745809]\n", + " [ 0.76295536 0.24443569 -0.59845661]\n", + " [ 0.76493105 0.21118365 -0.60850797]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:fp_optics: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:cartToSphere: vec: [[ 0.149889 0.25856223 -0.95429495]\n", + " [ 0.16942646 0.23859315 -0.95622591]\n", + " [ 0.18921626 0.21803227 -0.95742318]\n", + " [ 0.20917207 0.19695115 -0.95783991]\n", + " [ 0.22920897 0.17542413 -0.9574391 ]\n", + " [ 0.24924273 0.15352926 -0.95619393]\n", + " [ 0.26918977 0.13134857 -0.95408827]\n", + " [ 0.28896781 0.10896752 -0.95111707]\n", + " [ 0.149889 0.25856223 -0.95429495]\n", + " [ 0.17014099 0.27742715 -0.94556132]\n", + " [ 0.19025431 0.29592833 -0.93607143]\n", + " [ 0.21015439 0.31399476 -0.92587387]\n", + " [ 0.22977024 0.33155753 -0.91502745]\n", + " [ 0.24903482 0.3485494 -0.90360112]\n", + " [ 0.267885 0.36490374 -0.89167421]\n", + " [ 0.28626127 0.38055336 -0.87933704]\n", + " [ 0.28896781 0.10896752 -0.95111707]\n", + " [ 0.30980751 0.12859161 -0.94206343]\n", + " [ 0.33030361 0.14803504 -0.93219373]\n", + " [ 0.35037932 0.16722281 -0.92155893]\n", + " [ 0.36996315 0.18608305 -0.91021995]\n", + " [ 0.38898939 0.20454746 -0.89824696]\n", + " [ 0.40739786 0.22255121 -0.88571889]\n", + " [ 0.42513316 0.24003218 -0.87272352]\n", + " [ 0.28626127 0.38055336 -0.87933704]\n", + " [ 0.30625253 0.36234287 -0.88029372]\n", + " [ 0.32633948 0.34338206 -0.88067661]\n", + " [ 0.34643145 0.32374828 -0.8804387 ]\n", + " [ 0.36644075 0.30351817 -0.87954414]\n", + " [ 0.38628219 0.28276905 -0.87796796]\n", + " [ 0.40587299 0.26157997 -0.87569575]\n", + " [ 0.42513316 0.24003218 -0.87272352]\n", + " [ 0.15844043 0.24999823 -0.95519502]\n", + " [ 0.18256694 0.22511783 -0.95707433]\n", + " [ 0.20698635 0.1994193 -0.95780405]\n", + " [ 0.23154181 0.17303821 -0.95731195]\n", + " [ 0.25607822 0.14611833 -0.95554873]\n", + " [ 0.28044222 0.11881209 -0.95248929]\n", + " [ 0.15879763 0.26676057 -0.9505904 ]\n", + " [ 0.18353543 0.28964668 -0.93937189]\n", + " [ 0.20799031 0.31191573 -0.92706451]\n", + " [ 0.23203007 0.33344001 -0.9137723 ]\n", + " [ 0.25553127 0.35409558 -0.89962219]\n", + " [ 0.27837924 0.37375966 -0.88476478]\n", + " [ 0.29802388 0.11761776 -0.94728445]\n", + " [ 0.32334396 0.14155696 -0.93563364]\n", + " [ 0.34807121 0.16514982 -0.92280657]\n", + " [ 0.3720718 0.1882627 -0.90891129]\n", + " [ 0.39522471 0.21076983 -0.8940769 ]\n", + " [ 0.41742121 0.23255309 -0.87845239]\n", + " [ 0.29489791 0.37265804 -0.87986431]\n", + " [ 0.31947542 0.3498234 -0.8806583 ]\n", + " [ 0.34410631 0.32593884 -0.88054229]\n", + " [ 0.36862794 0.30114568 -0.87944569]\n", + " [ 0.39288345 0.27558639 -0.87732248]\n", + " [ 0.41672161 0.24940739 -0.87415047]\n", + " [ 0.15002469 0.25856008 -0.95427421]\n", + " [ 0.15002469 0.25856008 -0.95427421]\n", + " [ 0.42500851 0.24004757 -0.87278 ]\n", + " [ 0.42500851 0.24004757 -0.87278 ]\n", + " [ 0.16724637 0.25823234 -0.95149604]\n", + " [ 0.19206395 0.28122403 -0.94022576]\n", + " [ 0.21657788 0.30361365 -0.92785385]\n", + " [ 0.24065552 0.32527365 -0.91448454]\n", + " [ 0.26417324 0.34608077 -0.90024474]\n", + " [ 0.28701645 0.36591354 -0.88528461]\n", + " [ 0.19145553 0.23343706 -0.95333725]\n", + " [ 0.21646906 0.25669963 -0.9419376 ]\n", + " [ 0.24112125 0.2794032 -0.9294054 ]\n", + " [ 0.26527836 0.30141997 -0.91584572]\n", + " [ 0.28881642 0.32262797 -0.90138575]\n", + " [ 0.31162131 0.34290873 -0.88617479]\n", + " [ 0.2159412 0.20780836 -0.95403621]\n", + " [ 0.24110512 0.23129989 -0.94253312]\n", + " [ 0.2658514 0.25427719 -0.92987426]\n", + " [ 0.29004551 0.27661146 -0.91616576]\n", + " [ 0.31356355 0.29818093 -0.90153538]\n", + " [ 0.33629224 0.31886891 -0.88613213]\n", + " [ 0.24054607 0.18148142 -0.95352089]\n", + " [ 0.26581344 0.2051591 -0.94194106]\n", + " [ 0.29060834 0.22836968 -0.92919001]\n", + " [ 0.31479594 0.25098295 -0.91537483]\n", + " [ 0.33825279 0.27287645 -0.90062395]\n", + " [ 0.36086681 0.29393405 -0.88508639]\n", + " [ 0.26511456 0.15459951 -0.95174222]\n", + " [ 0.2904373 0.1784192 -0.94011317]\n", + " [ 0.31523468 0.20182151 -0.92730533]\n", + " [ 0.339372 0.22467468 -0.91342648]\n", + " [ 0.36272665 0.246855 -0.89860558]\n", + " [ 0.38518797 0.2682459 -0.88299171]\n", + " [ 0.28949297 0.12731467 -0.94867529]\n", + " [ 0.31482236 0.15123088 -0.93702514]\n", + " [ 0.339576 0.17478185 -0.92419665]\n", + " [ 0.36361976 0.19783438 -0.91029788]\n", + " [ 0.38683217 0.22026324 -0.89545797]\n", + " [ 0.40910401 0.2419508 -0.87982596]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:fp_optics: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:cartToSphere: vec: [[0.4093069 0.87293604 0.26542518]\n", + " [0.4079172 0.88126446 0.23869752]\n", + " [0.40616922 0.88904528 0.21124646]\n", + " [0.40405228 0.89620838 0.18317288]\n", + " [0.40155976 0.90269342 0.15457796]\n", + " [0.39868934 0.90844928 0.12556562]\n", + " [0.39544332 0.91343393 0.09624469]\n", + " [0.39182896 0.91761498 0.06672942]\n", + " [0.4093069 0.87293604 0.26542518]\n", + " [0.43559315 0.86163613 0.26046455]\n", + " [0.46142577 0.84967959 0.25520748]\n", + " [0.4867087 0.83712436 0.2496747 ]\n", + " [0.51135102 0.82403812 0.2438879 ]\n", + " [0.53526715 0.81049806 0.23786968]\n", + " [0.55837736 0.79659013 0.23164386]\n", + " [0.58060936 0.7824074 0.22523642]\n", + " [0.39182896 0.91761498 0.06672942]\n", + " [0.41902102 0.90587492 0.06174157]\n", + " [0.44574816 0.89336012 0.05671227]\n", + " [0.47191009 0.88013174 0.05166225]\n", + " [0.4974152 0.86625944 0.04661221]\n", + " [0.5221801 0.85182089 0.04158273]\n", + " [0.54612765 0.83690228 0.03659458]\n", + " [0.56918474 0.82159954 0.03166911]\n", + " [0.58060936 0.7824074 0.22523642]\n", + " [0.58068043 0.78941948 0.19906559]\n", + " [0.58019875 0.79605706 0.17222822]\n", + " [0.57914964 0.80225402 0.14482467]\n", + " [0.57752465 0.8079516 0.11695936]\n", + " [0.57532045 0.81310009 0.08873905]\n", + " [0.57253842 0.81765947 0.06027229]\n", + " [0.56918474 0.82159954 0.03166911]\n", + " [0.4088351 0.87659207 0.25385076]\n", + " [0.40689338 0.88644013 0.22059389]\n", + " [0.40440229 0.89539499 0.18635075]\n", + " [0.40134796 0.90334151 0.15130743]\n", + " [0.39772613 0.91018555 0.1156555 ]\n", + " [0.39354308 0.91585373 0.07959761]\n", + " [0.42081343 0.86812244 0.26320994]\n", + " [0.45273813 0.85382437 0.25692824]\n", + " [0.48388541 0.83859639 0.25022192]\n", + " [0.51408574 0.82255905 0.24313052]\n", + " [0.54318162 0.80585437 0.23569569]\n", + " [0.57102923 0.78864371 0.22796211]\n", + " [0.40374817 0.91258217 0.06466223]\n", + " [0.43677511 0.89766536 0.05851847]\n", + " [0.46900313 0.88164468 0.05233284]\n", + " [0.50025993 0.86464489 0.04614347]\n", + " [0.53039173 0.84680904 0.03998831]\n", + " [0.55925829 0.8282998 0.03390582]\n", + " [0.58063233 0.78555556 0.21393587]\n", + " [0.58034923 0.79390742 0.18139947]\n", + " [0.57922063 0.80163022 0.14796097]\n", + " [0.57722847 0.8086126 0.11381106]\n", + " [0.57436657 0.81476311 0.07914624]\n", + " [0.57063946 0.82001212 0.04416697]\n", + " [0.4093933 0.8729279 0.26531869]\n", + " [0.4093933 0.8729279 0.26531869]\n", + " [0.56911992 0.82164001 0.03178375]\n", + " [0.56911992 0.82164001 0.03178375]\n", + " [0.42029989 0.87176673 0.25173553]\n", + " [0.45234849 0.85740013 0.24545034]\n", + " [0.48361545 0.84208576 0.23876279]\n", + " [0.51393107 0.82594436 0.23171268]\n", + " [0.54313756 0.80911834 0.22434147]\n", + " [0.57109018 0.7917703 0.21669288]\n", + " [0.41847049 0.88156475 0.21846288]\n", + " [0.45083108 0.86702531 0.21217551]\n", + " [0.48239973 0.85149277 0.20554944]\n", + " [0.51300635 0.83508824 0.19862557]\n", + " [0.54249349 0.81795438 0.19144568]\n", + " [0.57071544 0.80025543 0.18405199]\n", + " [0.41607062 0.8904789 0.18420794]\n", + " [0.4486853 0.87579807 0.17793043]\n", + " [0.48050014 0.86008653 0.17137907]\n", + " [0.51134469 0.84346598 0.16459573]\n", + " [0.54106263 0.82607888 0.15762271]\n", + " [0.56950921 0.80808939 0.15050181]\n", + " [0.41308597 0.89839423 0.14915693]\n", + " [0.4458959 0.88360381 0.14290259]\n", + " [0.47790109 0.86775248 0.13644113]\n", + " [0.5089306 0.85096288 0.12981455]\n", + " [0.53882937 0.83337741 0.12306503]\n", + " [0.56745447 0.81515955 0.11623394]\n", + " [0.40951151 0.90521694 0.11350163]\n", + " [0.4424561 0.8903497 0.10728469]\n", + " [0.47459507 0.8743985 0.10092964]\n", + " [0.50575682 0.85748705 0.09447749]\n", + " [0.53578727 0.83975796 0.08796917]\n", + " [0.56454519 0.8213741 0.08144513]\n", + " [0.40535273 0.91087401 0.07744481]\n", + " [0.43836944 0.89596399 0.07127955]\n", + " [0.47058453 0.87995402 0.06504711]\n", + " [0.50182586 0.86296869 0.05878648]\n", + " [0.53193969 0.84515092 0.05253648]\n", + " [0.56078571 0.82666338 0.04633612]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:fp_optics: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:cartToSphere: vec: [[0.77531513 0.15702375 0.6117434 ]\n", + " [0.76248032 0.14164328 0.63131683]\n", + " [0.74877443 0.12584144 0.65076938]\n", + " [0.73421853 0.10967501 0.66999593]\n", + " [0.71884141 0.09320204 0.68889796]\n", + " [0.70268075 0.07648299 0.70738258]\n", + " [0.68578384 0.05958112 0.72536241]\n", + " [0.6682077 0.04256227 0.7427563 ]\n", + " [0.77531513 0.15702375 0.6117434 ]\n", + " [0.76202147 0.18078209 0.62180472]\n", + " [0.74808783 0.20425778 0.6313821 ]\n", + " [0.73357647 0.22735973 0.64044759]\n", + " [0.71855676 0.24999823 0.64898156]\n", + " [0.7031049 0.27208463 0.65697294]\n", + " [0.68730391 0.2935305 0.66441942]\n", + " [0.67124392 0.31424675 0.67132748]\n", + " [0.6682077 0.04256227 0.7427563 ]\n", + " [0.65452073 0.06722531 0.75304938]\n", + " [0.64028994 0.09174575 0.76263458]\n", + " [0.62558006 0.11602753 0.77148377]\n", + " [0.61046175 0.13997804 0.77957848]\n", + " [0.59501092 0.16350858 0.78690975]\n", + " [0.57930866 0.18653385 0.79347754]\n", + " [0.56344185 0.20897054 0.79929006]\n", + " [0.67124392 0.31424675 0.67132748]\n", + " [0.65776683 0.30079311 0.69055507]\n", + " [0.64359493 0.28671003 0.70963576]\n", + " [0.62875277 0.27205843 0.72846014]\n", + " [0.61327245 0.25689833 0.74692714]\n", + " [0.59719396 0.24128967 0.76494357]\n", + " [0.5805652 0.22529308 0.78242385]\n", + " [0.56344185 0.20897054 0.79929006]\n", + " [0.7697828 0.15045519 0.62032063]\n", + " [0.75346391 0.13131517 0.64424255]\n", + " [0.73585686 0.11159842 0.66787759]\n", + " [0.71701138 0.09141124 0.69104172]\n", + " [0.69699693 0.07086493 0.7135639 ]\n", + " [0.67590463 0.05007708 0.73528581]\n", + " [0.76955885 0.16735986 0.6162547 ]\n", + " [0.75282782 0.19630053 0.62826457]\n", + " [0.73519661 0.22472605 0.63951869]\n", + " [0.71678999 0.2524707 0.64997743]\n", + " [0.69774825 0.27937118 0.65962044]\n", + " [0.67822715 0.30526446 0.66844711]\n", + " [0.66237205 0.05338502 0.74727057]\n", + " [0.64522369 0.08352824 0.75941386]\n", + " [0.62732199 0.11336138 0.770465 ]\n", + " [0.60879463 0.14271245 0.78038596]\n", + " [0.58978135 0.17141812 0.78916018]\n", + " [0.57043378 0.19932227 0.79679102]\n", + " [0.66550992 0.30839223 0.67969903]\n", + " [0.64852266 0.29147097 0.70318065]\n", + " [0.63051516 0.27366506 0.72633193]\n", + " [0.61154339 0.25508533 0.74896339]\n", + " [0.59168095 0.23584221 0.77090343]\n", + " [0.57101928 0.21604789 0.79199766]\n", + " [0.77522844 0.15705356 0.61184561]\n", + " [0.77522844 0.15705356 0.61184561]\n", + " [0.56355562 0.20895121 0.7992149 ]\n", + " [0.56355562 0.20895121 0.7992149 ]\n", + " [0.76409145 0.1608031 0.62474524]\n", + " [0.74730077 0.18986983 0.63678176]\n", + " [0.72961322 0.21843316 0.64803666]\n", + " [0.71115401 0.24632746 0.65847001]\n", + " [0.69206363 0.27339006 0.66806123]\n", + " [0.67249773 0.29945892 0.67680954]\n", + " [0.74771817 0.1417682 0.64870588]\n", + " [0.73078161 0.171156 0.66080547]\n", + " [0.71296157 0.20007357 0.67205385]\n", + " [0.69438453 0.22835499 0.68241053]\n", + " [0.67519157 0.25583898 0.69185458]\n", + " [0.65553803 0.28236635 0.70038499]\n", + " [0.73006761 0.12213743 0.67237172]\n", + " [0.71302022 0.1517927 0.68451526]\n", + " [0.69510884 0.18101154 0.69574314]\n", + " [0.67646111 0.20962703 0.70601479]\n", + " [0.65721854 0.23747851 0.71530955]\n", + " [0.63753603 0.26440902 0.72362675]\n", + " [0.71118988 0.10201652 0.69555847]\n", + " [0.69406795 0.1318846 0.70772603]\n", + " [0.67610783 0.16135151 0.71891856]\n", + " [0.6574379 0.19024889 0.72909586]\n", + " [0.63819975 0.21841585 0.73823817]\n", + " [0.61854759 0.24569681 0.74634574]\n", + " [0.6911548 0.08151616 0.71809481]\n", + " [0.67399579 0.11154065 0.73026595]\n", + " [0.65603065 0.14120127 0.74140811]\n", + " [0.63738791 0.17032798 0.75148189]\n", + " [0.61820873 0.19875911 0.76046879]\n", + " [0.59864634 0.22633938 0.76837038]\n", + " [0.6700538 0.06075329 0.73982224]\n", + " [0.65289589 0.09087602 0.7519764 ]\n", + " [0.63496989 0.12067428 0.7630537 ]\n", + " [0.6164038 0.14997654 0.77301578]\n", + " [0.59733782 0.17861993 0.78184554]\n", + " [0.577924 0.20644867 0.78954594]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:fp_optics: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:cartToSphere: vec: [[-4.76960594e-01 -3.23930164e-02 -8.78327550e-01]\n", + " [-4.55258694e-01 -2.14739199e-02 -8.90100215e-01]\n", + " [-4.32820425e-01 -1.01659059e-02 -9.01422839e-01]\n", + " [-4.09718199e-01 1.46686719e-03 -9.12210966e-01]\n", + " [-3.86028282e-01 1.33649388e-02 -9.22390126e-01]\n", + " [-3.61831538e-01 2.54723949e-02 -9.31895431e-01]\n", + " [-3.37213794e-01 3.77358973e-02 -9.40671494e-01]\n", + " [-3.12265798e-01 5.01040744e-02 -9.48672574e-01]\n", + " [-4.76960594e-01 -3.23930164e-02 -8.78327550e-01]\n", + " [-4.88852387e-01 -8.99170703e-03 -8.72320178e-01]\n", + " [-5.00516514e-01 1.50001643e-02 -8.65597028e-01]\n", + " [-5.11893267e-01 3.94687573e-02 -8.58141888e-01]\n", + " [-5.22926414e-01 6.43050030e-02 -8.49948723e-01]\n", + " [-5.33563141e-01 8.94030732e-02 -8.41021679e-01]\n", + " [-5.43754320e-01 1.14659275e-01 -8.31375060e-01]\n", + " [-5.53454959e-01 1.39971540e-01 -8.21033237e-01]\n", + " [-3.12265798e-01 5.01040744e-02 -9.48672574e-01]\n", + " [-3.23152268e-01 7.52399095e-02 -9.43351243e-01]\n", + " [-3.34000677e-01 1.00833313e-01 -9.37163908e-01]\n", + " [-3.44753142e-01 1.26778109e-01 -9.30092781e-01]\n", + " [-3.55354997e-01 1.52968851e-01 -9.22129794e-01]\n", + " [-3.65754402e-01 1.79299575e-01 -9.13277274e-01]\n", + " [-3.75902437e-01 2.05663601e-01 -9.03548472e-01]\n", + " [-3.85753494e-01 2.31954143e-01 -8.92967814e-01]\n", + " [-5.53454959e-01 1.39971540e-01 -8.21033237e-01]\n", + " [-5.31709275e-01 1.52984558e-01 -8.32995181e-01]\n", + " [-5.09104506e-01 1.66137131e-01 -8.44518239e-01]\n", + " [-4.85707307e-01 1.79369720e-01 -8.55520260e-01]\n", + " [-4.61590278e-01 1.92624275e-01 -8.65927424e-01]\n", + " [-4.36833102e-01 2.05843708e-01 -8.75674145e-01]\n", + " [-4.11522837e-01 2.18971910e-01 -8.84703485e-01]\n", + " [-3.85753494e-01 2.31954143e-01 -8.92967814e-01]\n", + " [-4.67634389e-01 -2.76049381e-02 -8.83490829e-01]\n", + " [-4.40531932e-01 -1.39510134e-02 -8.97628535e-01]\n", + " [-4.12394872e-01 2.22575810e-04 -9.11005170e-01]\n", + " [-3.83361963e-01 1.48044736e-02 -9.23479525e-01]\n", + " [-3.53582112e-01 2.96916378e-02 -9.34932135e-01]\n", + " [-3.23215387e-01 4.47867070e-02 -9.45265024e-01]\n", + " [-4.82096486e-01 -2.22329189e-02 -8.75835986e-01]\n", + " [-4.96525451e-01 6.86117771e-03 -8.67995047e-01]\n", + " [-5.10552840e-01 3.67285067e-02 -8.59061589e-01]\n", + " [-5.24073706e-01 6.71663809e-02 -8.49020275e-01]\n", + " [-5.36990849e-01 9.79798519e-02 -8.37878736e-01]\n", + " [-5.49215517e-01 1.28978701e-01 -8.25667494e-01]\n", + " [-3.17099268e-01 6.09576415e-02 -9.46431308e-01]\n", + " [-3.30424496e-01 9.20849066e-02 -9.39329560e-01]\n", + " [-3.43634491e-01 1.23793859e-01 -9.30908383e-01]\n", + " [-3.56627313e-01 1.55890180e-01 -9.21148854e-01]\n", + " [-3.69307537e-01 1.88178774e-01 -9.10055324e-01]\n", + " [-3.81586447e-01 2.20463156e-01 -8.97656828e-01]\n", + " [-5.44051060e-01 1.45537308e-01 -8.26333671e-01]\n", + " [-5.16813369e-01 1.61586664e-01 -8.40710231e-01]\n", + " [-4.88351022e-01 1.77786432e-01 -8.54344933e-01]\n", + " [-4.58795122e-01 1.94029177e-01 -8.67098446e-01]\n", + " [-4.28292396e-01 2.10209814e-01 -8.78850077e-01]\n", + " [-3.97006042e-01 2.26225591e-01 -8.89498839e-01]\n", + " [-4.76928697e-01 -3.22775290e-02 -8.78349121e-01]\n", + " [-4.76928697e-01 -3.22775290e-02 -8.78349121e-01]\n", + " [-3.85809154e-01 2.31820399e-01 -8.92978499e-01]\n", + " [-3.85809154e-01 2.31820399e-01 -8.92978499e-01]\n", + " [-4.72787641e-01 -1.74885202e-02 -8.81002837e-01]\n", + " [-4.87185872e-01 1.17976760e-02 -8.73218610e-01]\n", + " [-5.01197904e-01 4.18417885e-02 -8.64320499e-01]\n", + " [-5.14718509e-01 7.24426170e-02 -8.54293230e-01]\n", + " [-5.27650062e-01 1.03405975e-01 -8.43144481e-01]\n", + " [-5.39903334e-01 1.34541694e-01 -8.30904882e-01]\n", + " [-4.45634649e-01 -3.64985721e-03 -8.95207483e-01]\n", + " [-4.59920393e-01 2.61301317e-02 -8.87575602e-01]\n", + " [-4.73865166e-01 5.66282810e-02 -8.78774739e-01]\n", + " [-4.87363189e-01 8.76469871e-02 -8.68789461e-01]\n", + " [-5.00315938e-01 1.18993456e-01 -8.57627262e-01]\n", + " [-5.12633102e-01 1.50477007e-01 -8.45318859e-01]\n", + " [-4.17432607e-01 1.06820453e-02 -9.08645097e-01]\n", + " [-4.31566391e-01 4.08845204e-02 -9.01154208e-01]\n", + " [-4.45406877e-01 7.17699400e-02 -8.92447079e-01]\n", + " [-4.58848276e-01 1.03143114e-01 -8.82507653e-01]\n", + " [-4.71791762e-01 1.34811580e-01 -8.71342855e-01]\n", + " [-4.84146468e-01 1.66583436e-01 -8.58983211e-01]\n", + " [-3.88319716e-01 2.53971673e-02 -9.21174675e-01]\n", + " [-4.02260472e-01 5.59539075e-02 -9.13813807e-01]\n", + " [-4.15958095e-01 8.71615664e-02 -9.05197064e-01]\n", + " [-4.29307396e-01 1.18826185e-01 -8.95307487e-01]\n", + " [-4.42209918e-01 1.50754855e-01 -8.84151210e-01]\n", + " [-4.54574812e-01 1.82754123e-01 -8.71758378e-01]\n", + " [-3.58444757e-01 4.03932931e-02 -9.32676652e-01]\n", + " [-3.72151122e-01 7.12375770e-02 -9.25434357e-01]\n", + " [-3.85667030e-01 1.02702693e-01 -9.16904084e-01]\n", + " [-3.98888443e-01 1.34594958e-01 -9.07067918e-01]\n", + " [-4.11717880e-01 1.66720590e-01 -8.95931154e-01]\n", + " [-4.24065077e-01 1.98884615e-01 -8.83523469e-01]\n", + " [-3.27968098e-01 5.55733651e-02 -9.43052771e-01]\n", + " [-3.41399649e-01 8.66386359e-02 -9.35916677e-01]\n", + " [-3.54695908e-01 1.18295695e-01 -9.27468027e-01]\n", + " [-3.67754357e-01 1.50350471e-01 -9.17688111e-01]\n", + " [-3.80478974e-01 1.82608196e-01 -9.06581489e-01]\n", + " [-3.92780568e-01 2.14872695e-01 -8.94177359e-01]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:fp_optics: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:cartToSphere: vec: [[-0.24135123 0.96373672 -0.11384687]\n", + " [-0.24603063 0.96532235 -0.08730235]\n", + " [-0.25076209 0.96617708 -0.06016832]\n", + " [-0.25550712 0.96625907 -0.0325503 ]\n", + " [-0.26022848 0.96553631 -0.00455732]\n", + " [-0.26489231 0.9639867 0.02370015]\n", + " [-0.26946918 0.96159805 0.05211101]\n", + " [-0.27393424 0.95836814 0.08056386]\n", + " [-0.24135123 0.96373672 -0.11384687]\n", + " [-0.2663664 0.9563026 -0.1205582 ]\n", + " [-0.29175167 0.94800104 -0.12718091]\n", + " [-0.31738926 0.93882405 -0.13369164]\n", + " [-0.34316111 0.92877408 -0.1400684 ]\n", + " [-0.36895177 0.91786381 -0.14628953]\n", + " [-0.39464967 0.90611603 -0.15233311]\n", + " [-0.42014752 0.89356371 -0.15817696]\n", + " [-0.27393424 0.95836814 0.08056386]\n", + " [-0.30032896 0.95084757 0.07544145]\n", + " [-0.32702485 0.94240798 0.07015653]\n", + " [-0.35389894 0.93304124 0.06472696]\n", + " [-0.38083392 0.92274824 0.05917107]\n", + " [-0.4077159 0.91153971 0.05350804]\n", + " [-0.43443241 0.89943739 0.04775833]\n", + " [-0.46087192 0.88647493 0.04194381]\n", + " [-0.42014752 0.89356371 -0.15817696]\n", + " [-0.42679029 0.89481395 -0.13098868]\n", + " [-0.43322559 0.89536295 -0.10315413]\n", + " [-0.43940799 0.89516953 -0.07478049]\n", + " [-0.44529724 0.89420174 -0.04597405]\n", + " [-0.45085776 0.89243689 -0.01684275]\n", + " [-0.45605826 0.88986211 0.01250181]\n", + " [-0.46087192 0.88647493 0.04194381]\n", + " [-0.24346792 0.96449091 -0.10237511]\n", + " [-0.24924408 0.96594856 -0.06943178]\n", + " [-0.25506003 0.96626569 -0.03570723]\n", + " [-0.2608465 0.96537927 -0.00140088]\n", + " [-0.26654129 0.96324863 0.03328398]\n", + " [-0.27209212 0.95985544 0.06814266]\n", + " [-0.25222141 0.96060775 -0.11669238]\n", + " [-0.28314495 0.95091471 -0.12486052]\n", + " [-0.31450758 0.93990954 -0.13287228]\n", + " [-0.34609182 0.92759242 -0.14068671]\n", + " [-0.37768526 0.91398669 -0.14826383]\n", + " [-0.40908429 0.89913855 -0.15556321]\n", + " [-0.28538214 0.95521377 0.07825395]\n", + " [-0.31794976 0.94538014 0.07186341]\n", + " [-0.35084691 0.93415701 0.06524666]\n", + " [-0.38385533 0.92154228 0.05843725]\n", + " [-0.41676512 0.90755585 0.05147053]\n", + " [-0.44936957 0.89224267 0.04438479]\n", + " [-0.42297908 0.89423644 -0.1463895 ]\n", + " [-0.43098609 0.89530326 -0.11261913]\n", + " [-0.43863591 0.89527477 -0.07798473]\n", + " [-0.44585231 0.89408833 -0.04268231]\n", + " [-0.45256973 0.89170224 -0.00691079]\n", + " [-0.45873244 0.88809708 0.02912255]\n", + " [-0.24145189 0.96371937 -0.11378028]\n", + " [-0.24145189 0.96371937 -0.11378028]\n", + " [-0.46076632 0.88653363 0.04186307]\n", + " [-0.46076632 0.88653363 0.04186307]\n", + " [-0.25429949 0.96138153 -0.10524888]\n", + " [-0.28539579 0.95168653 -0.11332251]\n", + " [-0.3169235 0.94066729 -0.12126232]\n", + " [-0.34866306 0.92832413 -0.12902863]\n", + " [-0.38040146 0.91468034 -0.13658186]\n", + " [-0.41193479 0.89978213 -0.14388138]\n", + " [-0.26023604 0.96284249 -0.07219108]\n", + " [-0.29177488 0.95313698 -0.07998329]\n", + " [-0.32372145 0.94207836 -0.08770856]\n", + " [-0.35585333 0.92966699 -0.09532939]\n", + " [-0.38795725 0.91592578 -0.10280632]\n", + " [-0.41982903 0.90090069 -0.11009778]\n", + " [-0.26618666 0.9631585 -0.03834545]\n", + " [-0.29809297 0.95343552 -0.0458399 ]\n", + " [-0.33038366 0.94233852 -0.0533362 ]\n", + " [-0.36283642 0.92986739 -0.06079773]\n", + " [-0.39523902 0.91604419 -0.06818474]\n", + " [-0.42738704 0.90091448 -0.07545478]\n", + " [-0.27208007 0.96226666 -0.00391266]\n", + " [-0.30427567 0.95251941 -0.01109461]\n", + " [-0.33683503 0.94138491 -0.0183469 ]\n", + " [-0.36953735 0.92886224 -0.0256335 ]\n", + " [-0.40217166 0.91497244 -0.03291491]\n", + " [-0.43453295 0.89976063 -0.04014867]\n", + " [-0.27785346 0.96012625 0.03090357]\n", + " [-0.31025984 0.95034756 0.0240487 ]\n", + " [-0.34301302 0.93917578 0.01705635]\n", + " [-0.37589379 0.92660921 0.00996167]\n", + " [-0.40869203 0.91266805 0.0028029 ]\n", + " [-0.44120196 0.89739716 -0.00437864]\n", + " [-0.2834545 0.95671886 0.06589822]\n", + " [-0.31599375 0.94690097 0.05938433]\n", + " [-0.34886644 0.93569139 0.0526672 ]\n", + " [-0.38185425 0.923088 0.0457808 ]\n", + " [-0.41474731 0.90911068 0.03876132]\n", + " [-0.44733912 0.89380429 0.03164792]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:fp_optics: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:cartToSphere: vec: [[-0.28156172 0.3264042 -0.90232106]\n", + " [-0.26056588 0.31333861 -0.91319458]\n", + " [-0.23885309 0.29989384 -0.92358697]\n", + " [-0.21651409 0.28610208 -0.93341697]\n", + " [-0.19363948 0.27200034 -0.94261316]\n", + " [-0.17032009 0.25763049 -0.95111387]\n", + " [-0.14664736 0.24303928 -0.95886728]\n", + " [-0.12271369 0.22827795 -0.96583152]\n", + " [-0.28156172 0.3264042 -0.90232106]\n", + " [-0.2683236 0.349413 -0.89772658]\n", + " [-0.25447385 0.37259319 -0.89242219]\n", + " [-0.2400732 0.39583545 -0.88638544]\n", + " [-0.22518203 0.41903443 -0.879604 ]\n", + " [-0.20986055 0.44208855 -0.87207584]\n", + " [-0.19416933 0.46489984 -0.86380924]\n", + " [-0.17816975 0.48737404 -0.85482283]\n", + " [-0.12271369 0.22827795 -0.96583152]\n", + " [-0.10748224 0.25132961 -0.96191528]\n", + " [-0.09185066 0.27465032 -0.95714714]\n", + " [-0.07587719 0.2981351 -0.95150308]\n", + " [-0.05962066 0.32168217 -0.94496876]\n", + " [-0.04314154 0.34519155 -0.93754019]\n", + " [-0.02650252 0.36856441 -0.92922435]\n", + " [-0.00976851 0.39170339 -0.92003969]\n", + " [-0.17816975 0.48737404 -0.85482283]\n", + " [-0.15540003 0.47538184 -0.86594627]\n", + " [-0.13205349 0.46277366 -0.87658566]\n", + " [-0.10821676 0.44957874 -0.8866612 ]\n", + " [-0.0839777 0.43583121 -0.89610206]\n", + " [-0.05942683 0.42157096 -0.90484605]\n", + " [-0.03465808 0.40684419 -0.91283987]\n", + " [-0.00976851 0.39170339 -0.92003969]\n", + " [-0.27245671 0.3208345 -0.90710119]\n", + " [-0.24622912 0.30456292 -0.92011556]\n", + " [-0.21901488 0.28775308 -0.9323254 ]\n", + " [-0.19098087 0.27047107 -0.9435951 ]\n", + " [-0.16229432 0.25279402 -0.95381116]\n", + " [-0.133124 0.23480984 -0.96288231]\n", + " [-0.27579793 0.33636408 -0.9004414 ]\n", + " [-0.25915284 0.36469357 -0.89433685]\n", + " [-0.24164956 0.39317147 -0.88714243]\n", + " [-0.2233994 0.42160221 -0.8788312 ]\n", + " [-0.20451329 0.44979877 -0.86939944]\n", + " [-0.18510304 0.4775823 -0.8588667 ]\n", + " [-0.11620819 0.23833947 -0.96420431]\n", + " [-0.09726489 0.26678652 -0.95883497]\n", + " [-0.07777831 0.29553285 -0.95216116]\n", + " [-0.05785642 0.32438984 -0.94415246]\n", + " [-0.0376106 0.35317336 -0.93480159]\n", + " [-0.01715722 0.38170202 -0.92412618]\n", + " [-0.16837395 0.48214637 -0.85975874]\n", + " [-0.1400691 0.46703028 -0.87307695]\n", + " [-0.11098378 0.45101768 -0.88558775]\n", + " [-0.08127912 0.4341693 -0.89715702]\n", + " [-0.05112187 0.41655869 -0.90767032]\n", + " [-0.02068628 0.39827352 -0.91703341]\n", + " [-0.28144709 0.32643846 -0.90234443]\n", + " [-0.28144709 0.32643846 -0.90234443]\n", + " [-0.00991103 0.39167719 -0.92004932]\n", + " [-0.00991103 0.39167719 -0.92004932]\n", + " [-0.26674051 0.33078456 -0.90522432]\n", + " [-0.24991903 0.35918747 -0.8991801 ]\n", + " [-0.23225938 0.38774513 -0.89202539]\n", + " [-0.21387242 0.41626221 -0.8837332 ]\n", + " [-0.19486854 0.44455168 -0.87429975]\n", + " [-0.17535929 0.47243435 -0.8637447 ]\n", + " [-0.24033197 0.31456506 -0.91830789]\n", + " [-0.22303663 0.3431287 -0.91242389]\n", + " [-0.20495966 0.3718675 -0.90537622]\n", + " [-0.1862102 0.40058711 -0.89713752]\n", + " [-0.16689727 0.42910054 -0.88770379]\n", + " [-0.14713203 0.45722752 -0.87709473]\n", + " [-0.21294998 0.29778174 -0.93057957]\n", + " [-0.19521792 0.32643584 -0.92484031]\n", + " [-0.17675988 0.35528899 -0.91789198]\n", + " [-0.15768343 0.3841481 -0.90970664]\n", + " [-0.13809679 0.41282643 -0.90027974]\n", + " [-0.11811142 0.44114265 -0.88963074]\n", + " [-0.18476093 0.28050069 -0.94190379]\n", + " [-0.16662738 0.30917483 -0.93629389]\n", + " [-0.14782261 0.33807501 -0.92943734]\n", + " [-0.12845329 0.36700959 -0.92130544]\n", + " [-0.10862771 0.39579228 -0.91189281]\n", + " [-0.08845832 0.42424105 -0.90121843]\n", + " [-0.15593162 0.26279924 -0.95216694]\n", + " [-0.13743066 0.29142343 -0.94667058]\n", + " [-0.11831276 0.3203033 -0.93989781]\n", + " [-0.09868459 0.34924863 -0.93181905]\n", + " [-0.07865536 0.37807387 -0.92242804]\n", + " [-0.05833906 0.40659686 -0.91174314]\n", + " [-0.12663075 0.2447657 -0.96127749]\n", + " [-0.10779663 0.27327096 -0.95587806]\n", + " [-0.08839992 0.30206375 -0.94918014]\n", + " [-0.06854815 0.33095511 -0.94115347]\n", + " [-0.04835207 0.35976051 -0.93179099]\n", + " [-0.02792744 0.38829824 -0.92111049]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:fp_optics: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:cartToSphere: vec: [[-0.37832479 -0.41382211 0.82802271]\n", + " [-0.40192536 -0.40174448 0.82283496]\n", + " [-0.4256652 -0.38899229 0.81700315]\n", + " [-0.44942994 -0.37561529 0.81050965]\n", + " [-0.47310996 -0.36166452 0.80334659]\n", + " [-0.49660018 -0.34719248 0.79551596]\n", + " [-0.51979993 -0.33225359 0.7870296 ]\n", + " [-0.54261311 -0.31690459 0.77790905]\n", + " [-0.37832479 -0.41382211 0.82802271]\n", + " [-0.3680271 -0.39352356 0.84243413]\n", + " [-0.35736206 -0.37241514 0.85650413]\n", + " [-0.34634672 -0.35057873 0.87013706]\n", + " [-0.33500363 -0.32809758 0.88324659]\n", + " [-0.323361 -0.30505659 0.89575562]\n", + " [-0.31145265 -0.28154283 0.90759621]\n", + " [-0.29931768 -0.25764587 0.91870971]\n", + " [-0.54261311 -0.31690459 0.77790905]\n", + " [-0.53360795 -0.29497148 0.79262499]\n", + " [-0.52399185 -0.27235118 0.80700519]\n", + " [-0.51377937 -0.24912158 0.82095627]\n", + " [-0.5029903 -0.22536287 0.83439339]\n", + " [-0.49165047 -0.20115913 0.84723953]\n", + " [-0.47979229 -0.17659925 0.85942543]\n", + " [-0.46745496 -0.15177691 0.87089014]\n", + " [-0.29931768 -0.25764587 0.91870971]\n", + " [-0.32325333 -0.24370071 0.91439447]\n", + " [-0.34739549 -0.22927916 0.90925653]\n", + " [-0.37163413 -0.21442859 0.90327651]\n", + " [-0.39586274 -0.19919853 0.89644444]\n", + " [-0.41997699 -0.18364169 0.8887604 ]\n", + " [-0.44387443 -0.16781447 0.88023508]\n", + " [-0.46745496 -0.15177691 0.87089014]\n", + " [-0.38855579 -0.40857385 0.82588849]\n", + " [-0.41758981 -0.39331033 0.81910056]\n", + " [-0.44671888 -0.377083 0.81132648]\n", + " [-0.47573923 -0.3599853 0.80254768]\n", + " [-0.50445738 -0.34211392 0.79276782]\n", + " [-0.53268991 -0.32356999 0.78201274]\n", + " [-0.3739616 -0.40503604 0.83432519]\n", + " [-0.36109247 -0.37960187 0.85177148]\n", + " [-0.34768771 -0.3530325 0.86860883]\n", + " [-0.33378654 -0.32548064 0.88467446]\n", + " [-0.31944089 -0.29710264 0.89982639]\n", + " [-0.30471523 -0.26805983 0.91394341]\n", + " [-0.53868513 -0.30748445 0.78439253]\n", + " [-0.52723517 -0.28013186 0.80221519]\n", + " [-0.51488163 -0.25182421 0.81943973]\n", + " [-0.50165874 -0.22270808 0.83590647]\n", + " [-0.48761411 -0.19293837 0.85147359]\n", + " [-0.47281024 -0.16268074 0.866017 ]\n", + " [-0.30976305 -0.25170988 0.91689094]\n", + " [-0.33925197 -0.23429324 0.91105147]\n", + " [-0.36894119 -0.21620776 0.90395608]\n", + " [-0.39863326 -0.1975437 0.8955825 ]\n", + " [-0.42813609 -0.17839813 0.88593092]\n", + " [-0.45726196 -0.15887642 0.87502559]\n", + " [-0.37837056 -0.41371407 0.82805579]\n", + " [-0.37837056 -0.41371407 0.82805579]\n", + " [-0.46741793 -0.15191726 0.87088554]\n", + " [-0.46741793 -0.15191726 0.87088554]\n", + " [-0.3841805 -0.39983485 0.83218834]\n", + " [-0.37138875 -0.37423511 0.84971671]\n", + " [-0.35803456 -0.34751063 0.86663003]\n", + " [-0.34415715 -0.3198136 0.88276561]\n", + " [-0.32980865 -0.29129989 0.89798142]\n", + " [-0.31505387 -0.26213071 0.91215599]\n", + " [-0.41331173 -0.38441057 0.82547073]\n", + " [-0.40074601 -0.35837651 0.84318972]\n", + " [-0.38754451 -0.33124792 0.86028139]\n", + " [-0.37374636 -0.30317502 0.87658346]\n", + " [-0.35940406 -0.27431235 0.89195373]\n", + " [-0.34458318 -0.24482111 0.90626986]\n", + " [-0.44254085 -0.36804012 0.81774328]\n", + " [-0.43021213 -0.34162237 0.83559062]\n", + " [-0.41717854 -0.31414063 0.8528058 ]\n", + " [-0.40347875 -0.28574317 0.86922709]\n", + " [-0.38916506 -0.25658356 0.88471206]\n", + " [-0.37430329 -0.2268235 0.89913744]\n", + " [-0.47166431 -0.3508165 0.80898737]\n", + " [-0.45958446 -0.32406402 0.82690062]\n", + " [-0.44673516 -0.29627857 0.84418405]\n", + " [-0.4331541 -0.26760695 0.86067651]\n", + " [-0.41889269 -0.23820242 0.87623543]\n", + " [-0.4040164 -0.20822765 0.89073677]\n", + " [-0.50048862 -0.33283591 0.79920673]\n", + " [-0.48866944 -0.30579636 0.81712347]\n", + " [-0.4760208 -0.27775584 0.8344195 ]\n", + " [-0.46257897 -0.24886047 0.85093429]\n", + " [-0.44839391 -0.21926389 0.86652539]\n", + " [-0.43353012 -0.18913003 0.88106837]\n", + " [-0.52882997 -0.31419926 0.78842735]\n", + " [-0.51728208 -0.28691992 0.80628544]\n", + " [-0.50484917 -0.25867319 0.8235384 ]\n", + " [-0.49156599 -0.2296054 0.84002633]\n", + " [-0.47748077 -0.19987106 0.8556072 ]\n", + " [-0.46265656 -0.16963541 0.87015673]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:cartToSphere: vec: [[-0.36144733 -0.14063173 -0.92172585]\n", + " [-0.36916544 -0.16546659 -0.914515 ]\n", + " [-0.37662721 -0.19075309 -0.90651266]\n", + " [-0.38379905 -0.21636819 -0.89770992]\n", + " [-0.39064891 -0.24219413 -0.88810778]\n", + " [-0.39714628 -0.26811759 -0.87771738]\n", + " [-0.40326258 -0.29402894 -0.86656003]\n", + " [-0.40897166 -0.31982196 -0.85466724]\n", + " [-0.36144733 -0.14063173 -0.92172585]\n", + " [-0.33679863 -0.14771343 -0.92991797]\n", + " [-0.311396 -0.15498744 -0.93755609]\n", + " [-0.28533258 -0.1623994 -0.94456961]\n", + " [-0.25870328 -0.16990057 -0.95089769]\n", + " [-0.23160554 -0.17744725 -0.95648907]\n", + " [-0.20413985 -0.18500015 -0.96130217]\n", + " [-0.17640992 -0.19252376 -0.96530521]\n", + " [-0.40897166 -0.31982196 -0.85466724]\n", + " [-0.38389633 -0.32898078 -0.86278343]\n", + " [-0.35799827 -0.33806641 -0.87037253]\n", + " [-0.33136401 -0.34702733 -0.87736533]\n", + " [-0.30408339 -0.35581568 -0.88370159]\n", + " [-0.27625156 -0.36438672 -0.88932975]\n", + " [-0.24796985 -0.37269871 -0.89420726]\n", + " [-0.21934577 -0.38071318 -0.89830112]\n", + " [-0.17640992 -0.19252376 -0.96530521]\n", + " [-0.18278112 -0.21893482 -0.9584668 ]\n", + " [-0.18912499 -0.2456944 -0.95071868]\n", + " [-0.19540883 -0.27268629 -0.94204967]\n", + " [-0.20160162 -0.29979675 -0.93245841]\n", + " [-0.20767381 -0.3269129 -0.9219542 ]\n", + " [-0.21359731 -0.35392221 -0.91055766]\n", + " [-0.21934577 -0.38071318 -0.89830112]\n", + " [-0.36475862 -0.15142057 -0.91870722]\n", + " [-0.37404929 -0.1821793 -0.90933923]\n", + " [-0.38292153 -0.21349347 -0.8987723 ]\n", + " [-0.39131569 -0.24514412 -0.88700417]\n", + " [-0.39917565 -0.27692253 -0.87405532]\n", + " [-0.4064498 -0.30862832 -0.85996926]\n", + " [-0.35082555 -0.14377659 -0.92533763]\n", + " [-0.32009665 -0.15259389 -0.9350151 ]\n", + " [-0.28832761 -0.16164521 -0.94378918]\n", + " [-0.25569241 -0.17083847 -0.9515438 ]\n", + " [-0.22237047 -0.18009319 -0.95818465]\n", + " [-0.18854816 -0.18933862 -0.96363918]\n", + " [-0.39812649 -0.32373251 -0.85830796]\n", + " [-0.36682986 -0.33491418 -0.86791033]\n", + " [-0.33438321 -0.34593443 -0.87665115]\n", + " [-0.30095048 -0.3567037 -0.88441579]\n", + " [-0.26670689 -0.3671396 -0.89110939]\n", + " [-0.23184163 -0.37716665 -0.89665756]\n", + " [-0.1792845 -0.20396286 -0.96242206]\n", + " [-0.18707982 -0.23658121 -0.9534309 ]\n", + " [-0.19480121 -0.26960725 -0.9430612 ]\n", + " [-0.20239089 -0.30283068 -0.93130634]\n", + " [-0.20979445 -0.33604362 -0.91818352]\n", + " [-0.21696086 -0.3690393 -0.90373557]\n", + " [-0.36139121 -0.14073957 -0.9217314 ]\n", + " [-0.36139121 -0.14073957 -0.9217314 ]\n", + " [-0.21942478 -0.3805952 -0.89833182]\n", + " [-0.21942478 -0.3805952 -0.89833182]\n", + " [-0.35416309 -0.15452721 -0.92232849]\n", + " [-0.3233445 -0.16352196 -0.93204555]\n", + " [-0.29147774 -0.172722 -0.94085485]\n", + " [-0.25873605 -0.18203606 -0.94864036]\n", + " [-0.22529853 -0.19138437 -0.95530759]\n", + " [-0.19135174 -0.20069658 -0.96078374]\n", + " [-0.36338303 -0.18547374 -0.91299084]\n", + " [-0.3323503 -0.19494654 -0.92278878]\n", + " [-0.30024706 -0.2045465 -0.93167185]\n", + " [-0.26724438 -0.21418458 -0.93952403]\n", + " [-0.23352043 -0.2237825 -0.94625028]\n", + " [-0.19926246 -0.23327051 -0.95177694]\n", + " [-0.37220496 -0.2169625 -0.90243601]\n", + " [-0.34101667 -0.22687937 -0.91226826]\n", + " [-0.30873643 -0.23685028 -0.92118606]\n", + " [-0.27553305 -0.24678765 -0.92907341]\n", + " [-0.24158389 -0.25661372 -0.93583472]\n", + " [-0.20707699 -0.26625844 -0.94139554]\n", + " [-0.38056882 -0.24877549 -0.89066162]\n", + " [-0.34928258 -0.25910524 -0.90048107]\n", + " [-0.31688433 -0.26942048 -0.90939372]\n", + " [-0.28354086 -0.27963406 -0.91728369]\n", + " [-0.2494288 -0.28966768 -0.92405515]\n", + " [-0.21473691 -0.29945014 -0.92963308]\n", + " [-0.388418 -0.28070454 -0.87768811]\n", + " [-0.35709014 -0.29141717 -0.88744727]\n", + " [-0.3246323 -0.30205067 -0.89631427]\n", + " [-0.29120964 -0.31251731 -0.90417359]\n", + " [-0.25699815 -0.32273738 -0.91092949]\n", + " [-0.22218703 -0.33263798 -0.9165069 ]\n", + " [-0.39570033 -0.31254924 -0.86355904]\n", + " [-0.36438598 -0.32361417 -0.87321059]\n", + " [-0.33192631 -0.33453865 -0.88199139]\n", + " [-0.29848546 -0.34523366 -0.88978658]\n", + " [-0.26423884 -0.35561754 -0.89650098]\n", + " [-0.22937573 -0.36561546 -0.90205993]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:cartToSphere: vec: [[ 0.45705933 -0.56511862 0.68683165]\n", + " [ 0.47289525 -0.5752318 0.66744172]\n", + " [ 0.48860392 -0.58522855 0.6471273 ]\n", + " [ 0.50410746 -0.59503708 0.62594453]\n", + " [ 0.5193317 -0.60458979 0.60395842]\n", + " [ 0.5342066 -0.61382569 0.58124119]\n", + " [ 0.54866638 -0.62269143 0.55787148]\n", + " [ 0.56264966 -0.63114159 0.53393413]\n", + " [ 0.45705933 -0.56511862 0.68683165]\n", + " [ 0.43751331 -0.58347922 0.68420326]\n", + " [ 0.41730176 -0.60185793 0.68090108]\n", + " [ 0.39648341 -0.62015014 0.67691558]\n", + " [ 0.37512308 -0.63825474 0.67224517]\n", + " [ 0.35329094 -0.65607681 0.66689484]\n", + " [ 0.33106236 -0.67352891 0.66087558]\n", + " [ 0.30851769 -0.69053138 0.65420429]\n", + " [ 0.56264966 -0.63114159 0.53393413]\n", + " [ 0.54347368 -0.6510291 0.52990326]\n", + " [ 0.52346874 -0.67080276 0.52536096]\n", + " [ 0.50269219 -0.69035213 0.52030231]\n", + " [ 0.48120519 -0.70957544 0.51472736]\n", + " [ 0.45907445 -0.72837796 0.50864152]\n", + " [ 0.43637408 -0.74667071 0.50205628]\n", + " [ 0.41318647 -0.76437043 0.49498969]\n", + " [ 0.30851769 -0.69053138 0.65420429]\n", + " [ 0.32372046 -0.702414 0.63389245]\n", + " [ 0.33895961 -0.7139689 0.61266206]\n", + " [ 0.35415957 -0.72511795 0.59057172]\n", + " [ 0.36924916 -0.73579143 0.56768479]\n", + " [ 0.38416033 -0.74592705 0.54407138]\n", + " [ 0.39882726 -0.75546945 0.51981027]\n", + " [ 0.41318647 -0.76437043 0.49498969]\n", + " [ 0.46390874 -0.56960081 0.67848625]\n", + " [ 0.48324174 -0.58192772 0.65409292]\n", + " [ 0.50230593 -0.59400795 0.62836559]\n", + " [ 0.52096321 -0.60571514 0.60142041]\n", + " [ 0.53908465 -0.6169371 0.57339024]\n", + " [ 0.55655094 -0.62757889 0.54442243]\n", + " [ 0.44867676 -0.57315019 0.68570258]\n", + " [ 0.42426644 -0.59567973 0.68202906]\n", + " [ 0.39891394 -0.61813226 0.67733314]\n", + " [ 0.37273612 -0.64031991 0.67160866]\n", + " [ 0.34586216 -0.66206813 0.66486476]\n", + " [ 0.3184329 -0.68321913 0.65712412]\n", + " [ 0.5543472 -0.63979089 0.53232208]\n", + " [ 0.53028009 -0.6641026 0.52703962]\n", + " [ 0.50502454 -0.68813263 0.52098339]\n", + " [ 0.47869154 -0.71169006 0.51415141]\n", + " [ 0.45140411 -0.73460034 0.50655372]\n", + " [ 0.42330215 -0.756702 0.49821419]\n", + " [ 0.31521446 -0.69568964 0.64548878]\n", + " [ 0.33388199 -0.71004233 0.61996993]\n", + " [ 0.35252841 -0.72382429 0.59312909]\n", + " [ 0.37102089 -0.73690372 0.56508088]\n", + " [ 0.38923403 -0.74916588 0.53595461]\n", + " [ 0.4070476 -0.7605118 0.50589925]\n", + " [ 0.45704796 -0.56521596 0.68675912]\n", + " [ 0.45704796 -0.56521596 0.68675912]\n", + " [ 0.41321799 -0.7642817 0.49510037]\n", + " [ 0.41321799 -0.7642817 0.49510037]\n", + " [ 0.45553728 -0.57759947 0.67739548]\n", + " [ 0.43111315 -0.60030284 0.67363043]\n", + " [ 0.40572791 -0.62291311 0.66885284]\n", + " [ 0.37949853 -0.64524038 0.66305786]\n", + " [ 0.35255423 -0.66710942 0.65625494]\n", + " [ 0.32503604 -0.68836224 0.64846666]\n", + " [ 0.47487768 -0.59009504 0.65290048]\n", + " [ 0.45043941 -0.61324938 0.64886789]\n", + " [ 0.42498884 -0.63626487 0.64385674]\n", + " [ 0.3986428 -0.6589486 0.63786414]\n", + " [ 0.37153026 -0.68112495 0.63089941]\n", + " [ 0.34379284 -0.70263577 0.62298431]\n", + " [ 0.49396129 -0.60232036 0.62706652]\n", + " [ 0.46954602 -0.62585857 0.62275804]\n", + " [ 0.44407112 -0.64921516 0.61751156]\n", + " [ 0.4176525 -0.67219694 0.61132451]\n", + " [ 0.39041835 -0.69462898 0.60420534]\n", + " [ 0.36251067 -0.71635292 0.5961749 ]\n", + " [ 0.51265015 -0.61414706 0.60001101]\n", + " [ 0.4882954 -0.63799897 0.59541995]\n", + " [ 0.46283775 -0.66163196 0.5899359 ]\n", + " [ 0.4363916 -0.68485377 0.58355606]\n", + " [ 0.40908378 -0.70749014 0.57628826]\n", + " [ 0.38105623 -0.72938206 0.56815312]\n", + " [ 0.5308153 -0.62546228 0.57186716]\n", + " [ 0.50655839 -0.64955728 0.56698671]\n", + " [ 0.48115946 -0.67340244 0.56126172]\n", + " [ 0.45473121 -0.69680648 0.55468934]\n", + " [ 0.42739874 -0.71959534 0.54727768]\n", + " [ 0.39930344 -0.74160896 0.53904816]\n", + " [ 0.54833716 -0.63617097 0.54278252]\n", + " [ 0.52421434 -0.66043859 0.53760598]\n", + " [ 0.4989145 -0.68443178 0.53163659]\n", + " [ 0.47254893 -0.70795965 0.52487203]\n", + " [ 0.44524113 -0.73084785 0.51732172]\n", + " [ 0.41713144 -0.75293522 0.50900877]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:fp_optics: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:fp_optics: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:fp_optics: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:cartToSphere: vec: [[ 0.52387947 0.60073888 -0.60387342]\n", + " [ 0.5016549 0.60460699 -0.61870247]\n", + " [ 0.4786282 0.60797677 -0.6334661 ]\n", + " [ 0.45487454 0.61082121 -0.64806373]\n", + " [ 0.43047287 0.61311694 -0.66240526]\n", + " [ 0.40550675 0.61484456 -0.67640997]\n", + " [ 0.38006486 0.61598922 -0.69000578]\n", + " [ 0.35424104 0.61654115 -0.70312893]\n", + " [ 0.52387947 0.60073888 -0.60387342]\n", + " [ 0.53243174 0.57908135 -0.61739876]\n", + " [ 0.54064654 0.55653297 -0.63085052]\n", + " [ 0.548478 0.53316629 -0.64413166]\n", + " [ 0.55588361 0.50905765 -0.65715578]\n", + " [ 0.56282442 0.48428814 -0.669846 ]\n", + " [ 0.56926541 0.45894434 -0.68213414]\n", + " [ 0.57517598 0.43311852 -0.69396033]\n", + " [ 0.35424104 0.61654115 -0.70312893]\n", + " [ 0.36161872 0.59433457 -0.71833023]\n", + " [ 0.36885524 0.57119432 -0.73326861]\n", + " [ 0.37590547 0.54718644 -0.74785164]\n", + " [ 0.38272792 0.52238312 -0.76199424]\n", + " [ 0.3892845 0.49686411 -0.77561823]\n", + " [ 0.39554071 0.47071722 -0.78865255]\n", + " [ 0.40146595 0.44403802 -0.80103392]\n", + " [ 0.57517598 0.43311852 -0.69396033]\n", + " [ 0.55265813 0.43571436 -0.71043788]\n", + " [ 0.52924815 0.43800374 -0.72666988]\n", + " [ 0.50501504 0.43995894 -0.7425604 ]\n", + " [ 0.48003397 0.44155655 -0.75802058]\n", + " [ 0.45438746 0.4427776 -0.77296833]\n", + " [ 0.42816566 0.44360785 -0.78732855]\n", + " [ 0.40146595 0.44403802 -0.80103392]\n", + " [ 0.51432237 0.6024121 -0.61038689]\n", + " [ 0.48653459 0.60682074 -0.62853216]\n", + " [ 0.45761621 0.61045376 -0.64647785]\n", + " [ 0.42771094 0.61326659 -0.66405379]\n", + " [ 0.39697268 0.6152236 -0.68111131]\n", + " [ 0.36556684 0.61629952 -0.69752117]\n", + " [ 0.52757198 0.59142399 -0.60982414]\n", + " [ 0.53783225 0.56427169 -0.62636565]\n", + " [ 0.54753978 0.53585298 -0.64269881]\n", + " [ 0.55661495 0.50630673 -0.65866022]\n", + " [ 0.56498606 0.47578233 -0.67410825]\n", + " [ 0.57259046 0.44444152 -0.68892082]\n", + " [ 0.35756124 0.60697696 -0.70973863]\n", + " [ 0.3665152 0.5791246 -0.72820416]\n", + " [ 0.3752117 0.54993487 -0.74618216]\n", + " [ 0.38357286 0.51953802 -0.76351301]\n", + " [ 0.39152859 0.48808092 -0.7800528 ]\n", + " [ 0.39901698 0.45572848 -0.79567393]\n", + " [ 0.56545269 0.43437542 -0.70112856]\n", + " [ 0.53724625 0.43735537 -0.7211704 ]\n", + " [ 0.5077678 0.43984683 -0.74074734]\n", + " [ 0.47715309 0.4418049 -0.75969294]\n", + " [ 0.44555404 0.4431947 -0.77785606]\n", + " [ 0.41313969 0.44399205 -0.79510167]\n", + " [ 0.52383469 0.60068045 -0.60397038]\n", + " [ 0.52383469 0.60068045 -0.60397038]\n", + " [ 0.40153828 0.44412926 -0.80094707]\n", + " [ 0.40153828 0.44412926 -0.80094707]\n", + " [ 0.51803769 0.59312717 -0.61630926]\n", + " [ 0.52824671 0.56589006 -0.63302753]\n", + " [ 0.53791897 0.53737945 -0.64951251]\n", + " [ 0.54697439 0.50773331 -0.66560191]\n", + " [ 0.55534078 0.47710056 -0.68115466]\n", + " [ 0.56295499 0.4456431 -0.69604878]\n", + " [ 0.4901805 0.59746586 -0.63463188]\n", + " [ 0.50022493 0.57001966 -0.65180718]\n", + " [ 0.5097794 0.54128118 -0.66868502]\n", + " [ 0.5187628 0.51138591 -0.68510554]\n", + " [ 0.52710188 0.48048183 -0.70092854]\n", + " [ 0.53473249 0.44873135 -0.71603166]\n", + " [ 0.46118136 0.60104425 -0.65273085]\n", + " [ 0.47103034 0.5734338 -0.6703015 ]\n", + " [ 0.48043843 0.54451462 -0.68751927]\n", + " [ 0.48932417 0.51442012 -0.70422567]\n", + " [ 0.49761393 0.48329768 -0.72028031]\n", + " [ 0.50524317 0.45131045 -0.7355598 ]\n", + " [ 0.43118327 0.60381709 -0.67043711]\n", + " [ 0.440804 0.57608563 -0.68834379]\n", + " [ 0.45003537 0.54703207 -0.70584989]\n", + " [ 0.45879635 0.51678825 -0.72279722]\n", + " [ 0.46701367 0.48550121 -0.73904452]\n", + " [ 0.47462296 0.45333491 -0.75446703]\n", + " [ 0.4003399 0.60574813 -0.68760248]\n", + " [ 0.40969906 0.57793758 -0.70578667]\n", + " [ 0.41872307 0.5487954 -0.72352926]\n", + " [ 0.42733194 0.5184524 -0.74067167]\n", + " [ 0.43545343 0.4870555 -0.7570715 ]\n", + " [ 0.44302393 0.45476925 -0.77260257]\n", + " [ 0.36881691 0.60681166 -0.70409779]\n", + " [ 0.37788206 0.57896305 -0.72250048]\n", + " [ 0.38666899 0.54977772 -0.7404266 ]\n", + " [ 0.39509924 0.51938598 -0.75771683]\n", + " [ 0.40310209 0.48793472 -0.77422762]\n", + " [ 0.41061512 0.45558881 -0.78983167]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:fp_optics: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:cartToSphere: vec: [[ 0.28764313 0.38820057 -0.87553512]\n", + " [ 0.26991378 0.40828092 -0.8720397 ]\n", + " [ 0.25150721 0.42838501 -0.86788848]\n", + " [ 0.23250156 0.44841748 -0.86305549]\n", + " [ 0.2129748 0.46828695 -0.85752497]\n", + " [ 0.19300497 0.48790576 -0.8512914 ]\n", + " [ 0.17267067 0.50719003 -0.84435959]\n", + " [ 0.15205137 0.52605991 -0.83674449]\n", + " [ 0.28764313 0.38820057 -0.87553512]\n", + " [ 0.27050521 0.37163815 -0.8880946 ]\n", + " [ 0.25268675 0.35454764 -0.9002474 ]\n", + " [ 0.23426387 0.33697604 -0.91190328]\n", + " [ 0.21531241 0.31897505 -0.92298184]\n", + " [ 0.1959082 0.30060135 -0.93341245]\n", + " [ 0.17612755 0.28191663 -0.94313419]\n", + " [ 0.15604766 0.26298739 -0.95209598]\n", + " [ 0.15205137 0.52605991 -0.83674449]\n", + " [ 0.13299379 0.51028782 -0.84965816]\n", + " [ 0.11343752 0.49378462 -0.86215351]\n", + " [ 0.09345542 0.47659365 -0.87414219]\n", + " [ 0.0731211 0.45876305 -0.8855449 ]\n", + " [ 0.0525102 0.44034697 -0.89629082]\n", + " [ 0.03170118 0.42140634 -0.90631768]\n", + " [ 0.01077522 0.40200908 -0.91557228]\n", + " [ 0.15604766 0.26298739 -0.95209598]\n", + " [ 0.13641438 0.28282147 -0.94942253]\n", + " [ 0.11628048 0.30281275 -0.94592985]\n", + " [ 0.09572069 0.32286961 -0.94159055]\n", + " [ 0.07481076 0.34290344 -0.93638698]\n", + " [ 0.05362875 0.36282761 -0.93031182]\n", + " [ 0.03225567 0.3825571 -0.92336864]\n", + " [ 0.01077522 0.40200908 -0.91557228]\n", + " [ 0.27994342 0.39689092 -0.87413344]\n", + " [ 0.25774754 0.42152999 -0.86941283]\n", + " [ 0.2346122 0.44610961 -0.86368011]\n", + " [ 0.21068104 0.47045988 -0.85690198]\n", + " [ 0.18609777 0.49441945 -0.84906833]\n", + " [ 0.16100744 0.51783556 -0.8401922 ]\n", + " [ 0.28019955 0.38111566 -0.8810443 ]\n", + " [ 0.25872654 0.36045612 -0.8961763 ]\n", + " [ 0.23630709 0.33904937 -0.91060666]\n", + " [ 0.21308097 0.31698866 -0.92418326]\n", + " [ 0.18918782 0.29437831 -0.93677606]\n", + " [ 0.16476847 0.27133391 -0.948277 ]\n", + " [ 0.14387939 0.51921174 -0.84244756]\n", + " [ 0.12017855 0.49938388 -0.85800516]\n", + " [ 0.09580092 0.47850058 -0.87284556]\n", + " [ 0.07088161 0.45664843 -0.88681904]\n", + " [ 0.04555998 0.43392717 -0.89979525]\n", + " [ 0.01998161 0.41045194 -0.91166328]\n", + " [ 0.14762319 0.27167507 -0.9509995 ]\n", + " [ 0.12321524 0.2961018 -0.94717566]\n", + " [ 0.09812944 0.32067311 -0.94209308]\n", + " [ 0.07250472 0.34522467 -0.93571523]\n", + " [ 0.04648487 0.36959694 -0.92802869]\n", + " [ 0.02022016 0.39363428 -0.91904472]\n", + " [ 0.28752638 0.38821339 -0.87556778]\n", + " [ 0.28752638 0.38821339 -0.87556778]\n", + " [ 0.01092042 0.40201015 -0.91557009]\n", + " [ 0.01092042 0.40201015 -0.91557009]\n", + " [ 0.27254848 0.38980679 -0.87964083]\n", + " [ 0.25089416 0.36917075 -0.89485478]\n", + " [ 0.2283106 0.34776506 -0.90935897]\n", + " [ 0.20493704 0.3256828 -0.92300137]\n", + " [ 0.18091261 0.30302836 -0.93565188]\n", + " [ 0.15637796 0.27991767 -0.94720221]\n", + " [ 0.25017095 0.41449084 -0.87499248]\n", + " [ 0.22803544 0.39394108 -0.89039893]\n", + " [ 0.20501913 0.3725602 -0.90507793]\n", + " [ 0.18125944 0.35044063 -0.91887778]\n", + " [ 0.1568941 0.32768681 -0.93166818]\n", + " [ 0.13206355 0.30441548 -0.94334004]\n", + " [ 0.22687064 0.43912506 -0.86930943]\n", + " [ 0.20430092 0.41869137 -0.88484952]\n", + " [ 0.18089799 0.3973685 -0.89965226]\n", + " [ 0.15679746 0.37524791 -0.9135664 ]\n", + " [ 0.1321362 0.35243361 -0.92646132]\n", + " [ 0.1070551 0.3290428 -0.93822707]\n", + " [ 0.20279067 0.46353968 -0.86255835]\n", + " [ 0.17983191 0.44325227 -0.87817305]\n", + " [ 0.15608668 0.4220214 -0.89304808]\n", + " [ 0.13168942 0.39993714 -0.90703262]\n", + " [ 0.10677694 0.37710257 -0.91999584]\n", + " [ 0.08149117 0.35363487 -0.931827 ]\n", + " [ 0.17807433 0.48757318 -0.85472916]\n", + " [ 0.15477044 0.4674619 -0.8703594 ]\n", + " [ 0.13072647 0.44635681 -0.88525487]\n", + " [ 0.10607658 0.42434642 -0.89926519]\n", + " [ 0.0809583 0.4015325 -0.91225951]\n", + " [ 0.05551504 0.37803165 -0.9241267 ]\n", + " [ 0.15286651 0.51107236 -0.84583501]\n", + " [ 0.12926135 0.49116576 -0.8614219 ]\n", + " [ 0.10496277 0.47021909 -0.87628581]\n", + " [ 0.08010551 0.44831936 -0.89027684]\n", + " [ 0.05482838 0.42556685 -0.90326447]\n", + " [ 0.02927643 0.40207713 -0.91513762]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:fp_optics: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:cartToSphere: vec: [[ 0.42463014 0.72028631 -0.54852245]\n", + " [ 0.4349492 0.73088655 -0.52595061]\n", + " [ 0.44502758 0.74124859 -0.50249476]\n", + " [ 0.4548164 0.75128689 -0.47823639]\n", + " [ 0.46426945 0.76092654 -0.45326005]\n", + " [ 0.47334317 0.77010276 -0.42765406]\n", + " [ 0.48199687 0.77876043 -0.40151115]\n", + " [ 0.49019327 0.78685388 -0.3749287 ]\n", + " [ 0.42463014 0.72028631 -0.54852245]\n", + " [ 0.40151196 0.73405768 -0.5476746 ]\n", + " [ 0.37764078 0.74764928 -0.54626733]\n", + " [ 0.35309844 0.76096163 -0.54429669]\n", + " [ 0.32796975 0.77390588 -0.54176151]\n", + " [ 0.30234317 0.78640328 -0.53866361]\n", + " [ 0.27631123 0.79838468 -0.53500841]\n", + " [ 0.24997065 0.80979024 -0.53080547]\n", + " [ 0.49019327 0.78685388 -0.3749287 ]\n", + " [ 0.46690378 0.80202673 -0.37249696]\n", + " [ 0.44276189 0.81686834 -0.36971343]\n", + " [ 0.41784329 0.83128297 -0.36657277]\n", + " [ 0.39222796 0.84518344 -0.36307325]\n", + " [ 0.36600188 0.85849034 -0.35921715]\n", + " [ 0.33925812 0.87113207 -0.35501104]\n", + " [ 0.31209667 0.88304544 -0.350466 ]\n", + " [ 0.24997065 0.80979024 -0.53080547]\n", + " [ 0.2591687 0.8218923 -0.50727175]\n", + " [ 0.26833405 0.83357237 -0.48286017]\n", + " [ 0.27741938 0.84474781 -0.45764575]\n", + " [ 0.2863799 0.85534454 -0.43170855]\n", + " [ 0.29517293 0.86529664 -0.40513537]\n", + " [ 0.30375788 0.87454649 -0.37802061]\n", + " [ 0.31209667 0.88304544 -0.350466 ]\n", + " [ 0.42907779 0.7249792 -0.53879255]\n", + " [ 0.44156892 0.73782335 -0.51052286]\n", + " [ 0.45364981 0.75022336 -0.48100599]\n", + " [ 0.46523427 0.76203692 -0.45039628]\n", + " [ 0.47624212 0.77314472 -0.41885641]\n", + " [ 0.48659987 0.78344923 -0.38655902]\n", + " [ 0.41468372 0.72634301 -0.54814528]\n", + " [ 0.38583294 0.74311478 -0.5467297 ]\n", + " [ 0.35593204 0.75951634 -0.54446976]\n", + " [ 0.32513589 0.77537972 -0.54136212]\n", + " [ 0.29360739 0.79055991 -0.53741021]\n", + " [ 0.26151864 0.80493345 -0.53262571]\n", + " [ 0.4801212 0.79347671 -0.37400313]\n", + " [ 0.45099467 0.8118621 -0.370788 ]\n", + " [ 0.42066272 0.82965387 -0.3670386 ]\n", + " [ 0.38927065 0.84668803 -0.36275024]\n", + " [ 0.35697693 0.86281843 -0.35792714]\n", + " [ 0.32395579 0.87791668 -0.35258326]\n", + " [ 0.25407274 0.81507487 -0.52067265]\n", + " [ 0.26533088 0.82963387 -0.49123025]\n", + " [ 0.27649241 0.843476 -0.46054335]\n", + " [ 0.28747384 0.85646139 -0.42875713]\n", + " [ 0.2981966 0.86846868 -0.39603148]\n", + " [ 0.30858698 0.8793955 -0.36254328]\n", + " [ 0.4245881 0.72037014 -0.54844491]\n", + " [ 0.4245881 0.72037014 -0.54844491]\n", + " [ 0.31216209 0.88297827 -0.35057696]\n", + " [ 0.31216209 0.88297827 -0.35057696]\n", + " [ 0.41915318 0.73101373 -0.53845105]\n", + " [ 0.39023747 0.74794525 -0.53692887]\n", + " [ 0.36025989 0.76448496 -0.5345798 ]\n", + " [ 0.32937473 0.78046555 -0.53139987]\n", + " [ 0.29774462 0.79574239 -0.52739188]\n", + " [ 0.26554187 0.81019209 -0.52256702]\n", + " [ 0.43159894 0.74401557 -0.51006194]\n", + " [ 0.40253414 0.76135537 -0.50823642]\n", + " [ 0.37237536 0.77824812 -0.5056347 ]\n", + " [ 0.34127497 0.79452829 -0.50225112]\n", + " [ 0.30939487 0.81005199 -0.49808693]\n", + " [ 0.27690807 0.82469551 -0.49315234]\n", + " [ 0.44365209 0.75654859 -0.48042383]\n", + " [ 0.4144896 0.77423266 -0.47829088]\n", + " [ 0.38420289 0.79142318 -0.475434 ]\n", + " [ 0.35294231 0.80795591 -0.47184635]\n", + " [ 0.32086896 0.82368702 -0.4675284 ]\n", + " [ 0.28815658 0.83849192 -0.46249009]\n", + " [ 0.45522617 0.76847108 -0.44969026]\n", + " [ 0.42601671 0.786437 -0.44724334]\n", + " [ 0.39565514 0.80387107 -0.44412647]\n", + " [ 0.36428986 0.82060966 -0.44033246]\n", + " [ 0.33208115 0.83650848 -0.43586199]\n", + " [ 0.29920331 0.8514417 -0.43072545]\n", + " [ 0.46624054 0.77966412 -0.41802347]\n", + " [ 0.43703373 0.79785019 -0.41525486]\n", + " [ 0.40664983 0.81547356 -0.4118723 ]\n", + " [ 0.37523557 0.83237069 -0.40786921]\n", + " [ 0.34295043 0.84839649 -0.40324731]\n", + " [ 0.30996894 0.86342385 -0.39801822]\n", + " [ 0.4766212 0.79003028 -0.38559614]\n", + " [ 0.44746537 0.80837467 -0.38249855]\n", + " [ 0.41711086 0.82613235 -0.37884544]\n", + " [ 0.38570325 0.8431395 -0.37463153]\n", + " [ 0.35340124 0.8592502 -0.36986031]\n", + " [ 0.32037921 0.87433634 -0.36454509]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:fp_optics: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:cartToSphere: vec: [[ 0.60501153 -0.24964998 0.7560661 ]\n", + " [ 0.58593946 -0.26636145 0.76532772]\n", + " [ 0.56596839 -0.28310364 0.77429459]\n", + " [ 0.54516727 -0.29980473 0.78288554]\n", + " [ 0.52360749 -0.31639459 0.79103076]\n", + " [ 0.50136412 -0.33280448 0.79867089]\n", + " [ 0.4785167 -0.34896724 0.80575656]\n", + " [ 0.45514969 -0.36481764 0.81224802]\n", + " [ 0.60501153 -0.24964998 0.7560661 ]\n", + " [ 0.59644721 -0.22799619 0.7695898 ]\n", + " [ 0.58713578 -0.20578885 0.78289369]\n", + " [ 0.57710475 -0.18310623 0.79587826]\n", + " [ 0.56638386 -0.16002864 0.80845541]\n", + " [ 0.55500603 -0.13663904 0.82054743]\n", + " [ 0.54300823 -0.11302341 0.8320864 ]\n", + " [ 0.53043214 -0.08927058 0.84301394]\n", + " [ 0.45514969 -0.36481764 0.81224802]\n", + " [ 0.44494126 -0.34349141 0.82706767]\n", + " [ 0.43416344 -0.32145251 0.8415286 ]\n", + " [ 0.42283962 -0.29877371 0.85553546]\n", + " [ 0.4109977 -0.27553144 0.86900133]\n", + " [ 0.39867086 -0.25180699 0.88184737]\n", + " [ 0.38589786 -0.22768682 0.89400311]\n", + " [ 0.37272304 -0.20326225 0.90540709]\n", + " [ 0.53043214 -0.08927058 0.84301394]\n", + " [ 0.51001876 -0.10521813 0.8537037 ]\n", + " [ 0.48878553 -0.12139166 0.86391711]\n", + " [ 0.46679498 -0.13772253 0.87357595]\n", + " [ 0.44411521 -0.15414278 0.88261072]\n", + " [ 0.42082101 -0.17058452 0.89096049]\n", + " [ 0.39699415 -0.18698003 0.89857338]\n", + " [ 0.37272304 -0.20326225 0.90540709]\n", + " [ 0.59678253 -0.25685473 0.76018173]\n", + " [ 0.57279346 -0.27736609 0.77134668]\n", + " [ 0.54752237 -0.29785217 0.78198679]\n", + " [ 0.52109964 -0.31818315 0.79196884]\n", + " [ 0.49366352 -0.33823254 0.80118355]\n", + " [ 0.46536249 -0.35787745 0.809544 ]\n", + " [ 0.601307 -0.24033882 0.76201519]\n", + " [ 0.59030366 -0.21341761 0.7784565 ]\n", + " [ 0.57820536 -0.18574242 0.79446732]\n", + " [ 0.56506587 -0.15746017 0.80988076]\n", + " [ 0.5509459 -0.12872366 0.82455372]\n", + " [ 0.53591544 -0.09969236 0.83836512]\n", + " [ 0.45085114 -0.35555771 0.81872582]\n", + " [ 0.43795485 -0.32893141 0.83665983]\n", + " [ 0.42422596 -0.30130675 0.85395935]\n", + " [ 0.40971389 -0.27282283 0.87046093]\n", + " [ 0.39447976 -0.24362931 0.88601945]\n", + " [ 0.37859727 -0.21388745 0.90050889]\n", + " [ 0.52168058 -0.0962732 0.84769148]\n", + " [ 0.4961034 -0.11597999 0.86048246]\n", + " [ 0.46935629 -0.13595773 0.87247932]\n", + " [ 0.44156223 -0.15608108 0.88355051]\n", + " [ 0.41285891 -0.17622506 0.89358393]\n", + " [ 0.3833997 -0.19626525 0.90248802]\n", + " [ 0.60491993 -0.24963398 0.75614467]\n", + " [ 0.60491993 -0.24963398 0.75614467]\n", + " [ 0.37285238 -0.20329077 0.90534743]\n", + " [ 0.37285238 -0.20329077 0.90534743]\n", + " [ 0.59311968 -0.24755347 0.76611117]\n", + " [ 0.58198559 -0.22060405 0.78270469]\n", + " [ 0.5697713 -0.192884 0.79884694]\n", + " [ 0.55652945 -0.16453982 0.81437191]\n", + " [ 0.54231996 -0.13572429 0.82913689]\n", + " [ 0.52721249 -0.10659723 0.84302077]\n", + " [ 0.5689936 -0.26805909 0.77742563]\n", + " [ 0.55750165 -0.24106305 0.79440576]\n", + " [ 0.54497171 -0.21324994 0.81088242]\n", + " [ 0.53145362 -0.18476495 0.82669158]\n", + " [ 0.51700571 -0.15576072 0.84169098]\n", + " [ 0.50169724 -0.12639806 0.85575897]\n", + " [ 0.54359084 -0.2885566 0.78819039]\n", + " [ 0.53175649 -0.26156359 0.80549334]\n", + " [ 0.51892731 -0.23370837 0.82224987]\n", + " [ 0.5051514 -0.2051347 0.83829697]\n", + " [ 0.49048649 -0.17599493 0.85349211]\n", + " [ 0.4750022 -0.14645064 0.86771258]\n", + " [ 0.51704059 -0.30891611 0.79827305]\n", + " [ 0.50487625 -0.28197571 0.81583679]\n", + " [ 0.49176208 -0.2541297 0.8328194 ]\n", + " [ 0.47774555 -0.22552034 0.84905816]\n", + " [ 0.4628847 -0.19629945 0.86440978]\n", + " [ 0.44725009 -0.16662903 0.87875032]\n", + " [ 0.48948045 -0.32901079 0.80756472]\n", + " [ 0.47699723 -0.30217182 0.82532771]\n", + " [ 0.4636118 -0.27438604 0.84248229]\n", + " [ 0.44937199 -0.24579426 0.85886553]\n", + " [ 0.43433689 -0.21654749 0.87433326]\n", + " [ 0.4185783 -0.18680775 0.88876041]\n", + " [ 0.46105885 -0.34871725 0.81597856]\n", + " [ 0.44826812 -0.32202728 0.83387896]\n", + " [ 0.43462602 -0.2943519 0.8511505 ]\n", + " [ 0.42018148 -0.26583062 0.86762988]\n", + " [ 0.40499502 -0.23661346 0.88317218]\n", + " [ 0.38913987 -0.20686196 0.89765154]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:fp_optics: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:cartToSphere: vec: [[-0.55724449 0.14997717 -0.81669176]\n", + " [-0.53553379 0.16308118 -0.82861818]\n", + " [-0.51295913 0.17631259 -0.84011118]\n", + " [-0.48958704 0.1896116 -0.8510887 ]\n", + " [-0.46548998 0.20291982 -0.861477 ]\n", + " [-0.44074747 0.21617986 -0.87121062]\n", + " [-0.41544646 0.2293353 -0.88023267]\n", + " [-0.38968088 0.24233122 -0.88849558]\n", + " [-0.55724449 0.14997717 -0.81669176]\n", + " [-0.56619496 0.17519778 -0.80543715]\n", + " [-0.57456643 0.20023736 -0.79358579]\n", + " [-0.58233075 0.22500144 -0.78119476]\n", + " [-0.58946472 0.24939891 -0.76833035]\n", + " [-0.59594953 0.27334221 -0.75506834]\n", + " [-0.60177002 0.29674703 -0.74149447]\n", + " [-0.60691384 0.31953163 -0.72770539]\n", + " [-0.38968088 0.24233122 -0.88849558]\n", + " [-0.39905033 0.26834081 -0.87678506]\n", + " [-0.40803009 0.29402758 -0.86432588]\n", + " [-0.41658979 0.31929371 -0.85117828]\n", + " [-0.42470443 0.34404665 -0.83741152]\n", + " [-0.43235436 0.36819968 -0.82310309]\n", + " [-0.43952511 0.39167184 -0.80833832]\n", + " [-0.44620686 0.41438686 -0.79321054]\n", + " [-0.60691384 0.31953163 -0.72770539]\n", + " [-0.58630303 0.33361715 -0.73820617]\n", + " [-0.56478288 0.34762516 -0.74844976]\n", + " [-0.5424259 0.36149329 -0.75835133]\n", + " [-0.51930761 0.37516106 -0.76783708]\n", + " [-0.49550767 0.38856985 -0.77684337]\n", + " [-0.47111076 0.4016631 -0.78531612]\n", + " [-0.44620686 0.41438686 -0.79321054]\n", + " [-0.54792052 0.15575777 -0.82190183]\n", + " [-0.52072304 0.17191223 -0.83623783]\n", + " [-0.49229333 0.18819826 -0.84984039]\n", + " [-0.46276224 0.20450785 -0.86257037]\n", + " [-0.43227622 0.2207353 -0.87430727]\n", + " [-0.40099826 0.23677737 -0.88495021]\n", + " [-0.56114354 0.1610344 -0.81190261]\n", + " [-0.57172811 0.19183597 -0.7977004 ]\n", + " [-0.58141455 0.22227128 -0.7826574 ]\n", + " [-0.59015811 0.25217119 -0.76689184]\n", + " [-0.5979241 0.28137445 -0.75054326]\n", + " [-0.60468581 0.30972698 -0.73377399]\n", + " [-0.39390052 0.25366062 -0.88345836]\n", + " [-0.40512558 0.28533348 -0.86859545]\n", + " [-0.41573439 0.31642381 -0.85266693]\n", + " [-0.42567867 0.34675897 -0.83579656]\n", + " [-0.43492224 0.37617934 -0.81812698]\n", + " [-0.44344042 0.40453788 -0.79981854]\n", + " [-0.59802704 0.32560155 -0.73235736]\n", + " [-0.57214482 0.34282041 -0.74506675]\n", + " [-0.54496853 0.35986078 -0.75730411]\n", + " [-0.51663585 0.37661056 -0.76892905]\n", + " [-0.48729356 0.39296184 -0.77982433]\n", + " [-0.45709975 0.40881156 -0.78989425]\n", + " [-0.55720335 0.15010814 -0.81669576]\n", + " [-0.55720335 0.15010814 -0.81669576]\n", + " [-0.44627077 0.41426773 -0.79323681]\n", + " [-0.44627077 0.41426773 -0.79323681]\n", + " [-0.5518774 0.16672584 -0.81708863]\n", + " [-0.56251833 0.19763616 -0.80281572]\n", + " [-0.57227457 0.22816537 -0.78768165]\n", + " [-0.58110164 0.25814391 -0.77180477]\n", + " [-0.58896551 0.28741056 -0.7553243 ]\n", + " [-0.59584045 0.31581168 -0.73840175]\n", + " [-0.52472241 0.1829852 -0.83137405]\n", + " [-0.53551117 0.2141658 -0.81692154]\n", + " [-0.54545557 0.244924 -0.80155503]\n", + " [-0.55451146 0.27508905 -0.78539357]\n", + " [-0.56264609 0.30449969 -0.76857616]\n", + " [-0.56983599 0.33300364 -0.75126262]\n", + " [-0.49632803 0.19935571 -0.84493537]\n", + " [-0.50724731 0.23074954 -0.83033416]\n", + " [-0.5173667 0.26168094 -0.81477284]\n", + " [-0.52664173 0.29197807 -0.79837165]\n", + " [-0.53503997 0.32147974 -0.78127012]\n", + " [-0.54253921 0.35003497 -0.76362735]\n", + " [-0.4668249 0.21572875 -0.85763373]\n", + " [-0.47785718 0.24727712 -0.8429155 ]\n", + " [-0.48813877 0.27832459 -0.82719766]\n", + " [-0.49762434 0.30869856 -0.81060176]\n", + " [-0.506281 0.33823804 -0.79326829]\n", + " [-0.5140867 0.36679335 -0.77535637]\n", + " [-0.43635926 0.23199804 -0.8693489 ]\n", + " [-0.44748638 0.26364075 -0.85454637]\n", + " [-0.45791687 0.29474614 -0.83871143]\n", + " [-0.46760423 0.32514124 -0.82196682]\n", + " [-0.47651443 0.3546655 -0.80445408]\n", + " [-0.48462473 0.38317045 -0.7863328 ]\n", + " [-0.4050939 0.24805985 -0.87998025]\n", + " [-0.41629688 0.27973572 -0.86512707]\n", + " [-0.42686188 0.31084033 -0.84921565]\n", + " [-0.43674112 0.34120089 -0.8323696 ]\n", + " [-0.445899 0.3706575 -0.8147313 ]\n", + " [-0.45431143 0.39906277 -0.79646094]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:fp_optics: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:cartToSphere: vec: [[-0.43038956 0.8882684 -0.1604496 ]\n", + " [-0.43713093 0.88946777 -0.13328028]\n", + " [-0.44365221 0.88997218 -0.10546202]\n", + " [-0.44990784 0.88974054 -0.07710193]\n", + " [-0.4558573 0.88874104 -0.04830625]\n", + " [-0.46146458 0.88695122 -0.01918277]\n", + " [-0.46669796 0.88435844 0.01015697]\n", + " [-0.47153022 0.88096045 0.03959723]\n", + " [-0.43038956 0.8882684 -0.1604496 ]\n", + " [-0.45543201 0.87466042 -0.16598444]\n", + " [-0.48003576 0.86036823 -0.17126641]\n", + " [-0.50411073 0.84545841 -0.17627378]\n", + " [-0.52757274 0.8300069 -0.18098494]\n", + " [-0.55034362 0.81409873 -0.18537843]\n", + " [-0.57235164 0.79782737 -0.18943359]\n", + " [-0.59353248 0.78129323 -0.1931323 ]\n", + " [-0.47153022 0.88096045 0.03959723]\n", + " [-0.49739437 0.86686893 0.03372086]\n", + " [-0.52272698 0.85204557 0.02783612]\n", + " [-0.54743439 0.83656025 0.02196665]\n", + " [-0.5714323 0.82049057 0.01613563]\n", + " [-0.59464525 0.80392138 0.01036588]\n", + " [-0.61700478 0.78694549 0.00468026]\n", + " [-0.63844728 0.76966503 -0.00089779]\n", + " [-0.59353248 0.78129323 -0.1931323 ]\n", + " [-0.60136269 0.78128338 -0.16721004]\n", + " [-0.60879353 0.78077091 -0.14059594]\n", + " [-0.61577624 0.77971876 -0.11339434]\n", + " [-0.62226787 0.77809761 -0.08571352]\n", + " [-0.62823087 0.77588718 -0.05766334]\n", + " [-0.63363297 0.7730767 -0.02935441]\n", + " [-0.63844728 0.76966503 -0.00089779]\n", + " [-0.43343936 0.88882828 -0.14870982]\n", + " [-0.44156046 0.88983609 -0.11496123]\n", + " [-0.44930498 0.88975828 -0.08034448]\n", + " [-0.45659623 0.88853244 -0.04505542]\n", + " [-0.46336789 0.88611728 -0.00929277]\n", + " [-0.46956341 0.88249384 0.02673632]\n", + " [-0.44137982 0.88242831 -0.16280092]\n", + " [-0.47178934 0.86528177 -0.16941746]\n", + " [-0.50144968 0.84717256 -0.17563275]\n", + " [-0.53020339 0.82823661 -0.18140696]\n", + " [-0.55790661 0.80863038 -0.18670063]\n", + " [-0.58443026 0.78852898 -0.19147667]\n", + " [-0.48285025 0.87492359 0.03693698]\n", + " [-0.51420416 0.8571525 0.02972646]\n", + " [-0.54466565 0.83835068 0.02252711]\n", + " [-0.57407558 0.81865782 0.01538179]\n", + " [-0.60229484 0.79823023 0.00833254]\n", + " [-0.62919945 0.77724258 0.00142168]\n", + " [-0.59692111 0.78140531 -0.1819091 ]\n", + " [-0.60625539 0.78106111 -0.14965946]\n", + " [-0.61494077 0.77992418 -0.11647371]\n", + " [-0.6228958 0.77793724 -0.08254975]\n", + " [-0.63005136 0.775063 -0.04808976]\n", + " [-0.63635024 0.77128564 -0.01329754]\n", + " [-0.43049921 0.88822833 -0.16037726]\n", + " [-0.43049921 0.88822833 -0.16037726]\n", + " [-0.63836015 0.7697372 -0.00097637]\n", + " [-0.63836015 0.7697372 -0.00097637]\n", + " [-0.44436199 0.88300488 -0.15114499]\n", + " [-0.47488259 0.86578433 -0.15781009]\n", + " [-0.50464189 0.84758985 -0.16409759]\n", + " [-0.53348219 0.8285576 -0.16996779]\n", + " [-0.56125952 0.80884442 -0.1753809 ]\n", + " [-0.58784425 0.78862644 -0.18029829]\n", + " [-0.45258863 0.88395401 -0.11742591]\n", + " [-0.48338724 0.86654849 -0.12421957]\n", + " [-0.51339224 0.84814225 -0.13070247]\n", + " [-0.54244539 0.82887212 -0.13683571]\n", + " [-0.57040291 0.80889525 -0.14257977]\n", + " [-0.59713485 0.78838908 -0.14789394]\n", + " [-0.46041864 0.88382871 -0.08283413]\n", + " [-0.49144063 0.86627489 -0.08974366]\n", + " [-0.52163968 0.84770119 -0.09640921]\n", + " [-0.55085702 0.82824527 -0.10279257]\n", + " [-0.57894981 0.80806416 -0.1088551 ]\n", + " [-0.60578909 0.78733507 -0.11455589]\n", + " [-0.46777491 0.8825668 -0.04756551]\n", + " [-0.4989645 0.86490205 -0.05457904]\n", + " [-0.5293051 0.84620574 -0.06141624]\n", + " [-0.55863755 0.82661649 -0.06803868]\n", + " [-0.58682028 0.80629115 -0.07440798]\n", + " [-0.61372609 0.78540607 -0.08048355]\n", + " [-0.47459036 0.88012744 -0.01181866]\n", + " [-0.50588999 0.86239039 -0.01892448]\n", + " [-0.53631868 0.84361737 -0.0259232 ]\n", + " [-0.56571708 0.8239478 -0.03277503]\n", + " [-0.59394491 0.80353834 -0.03944072]\n", + " [-0.62087677 0.78256445 -0.04587945]\n", + " [-0.48080768 0.87649207 0.0241995 ]\n", + " [-0.51215806 0.85872269 0.01701389]\n", + " [-0.5426206 0.83991998 0.00986463]\n", + " [-0.57203609 0.8202237 0.00279373]\n", + " [-0.60026517 0.79979025 -0.00415763]\n", + " [-0.62718368 0.77879444 -0.01094762]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:fp_optics: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:cartToSphere: vec: [[-0.29404004 -0.24816433 0.92301404]\n", + " [-0.31792445 -0.23412789 0.9187536 ]\n", + " [-0.34202292 -0.21962606 0.91366554]\n", + " [-0.36622548 -0.2047064 0.90773024]\n", + " [-0.39042576 -0.18941875 0.90093744]\n", + " [-0.41451962 -0.17381615 0.89328687]\n", + " [-0.43840473 -0.1579553 0.88478891]\n", + " [-0.46198108 -0.1418965 0.87546494]\n", + " [-0.29404004 -0.24816433 0.92301404]\n", + " [-0.28165143 -0.22389681 0.93302877]\n", + " [-0.2691502 -0.199471 0.9422152 ]\n", + " [-0.25659095 -0.1749834 0.95054821]\n", + " [-0.24403264 -0.15053153 0.9580127 ]\n", + " [-0.23153895 -0.12621361 0.96460346]\n", + " [-0.21917872 -0.10212873 0.9703249 ]\n", + " [-0.20702626 -0.07837705 0.97519084]\n", + " [-0.46198108 -0.1418965 0.87546494]\n", + " [-0.44903629 -0.11687968 0.88583608]\n", + " [-0.43573249 -0.09183835 0.89537864]\n", + " [-0.4221279 -0.06687271 0.90406641]\n", + " [-0.4082844 -0.04208157 0.91188431]\n", + " [-0.39426715 -0.01756188 0.91882805]\n", + " [-0.38014465 0.00659083 0.92490357]\n", + " [-0.36598943 0.030281 0.93012623]\n", + " [-0.20702626 -0.07837705 0.97519084]\n", + " [-0.22919529 -0.06330072 0.97132 ]\n", + " [-0.2517256 -0.04798734 0.96660821]\n", + " [-0.27450344 -0.03248777 0.96103715]\n", + " [-0.29742026 -0.01685496 0.95459787]\n", + " [-0.32037238 -0.00114408 0.947291 ]\n", + " [-0.34326049 0.01458759 0.93912696]\n", + " [-0.36598943 0.030281 0.93012623]\n", + " [-0.30437788 -0.24202167 0.92129236]\n", + " [-0.33380829 -0.22449889 0.91551749]\n", + " [-0.36345057 -0.2063243 0.90847893]\n", + " [-0.39310746 -0.18758864 0.90015389]\n", + " [-0.42258722 -0.16838963 0.89054196]\n", + " [-0.45170236 -0.14883317 0.87966679]\n", + " [-0.28873672 -0.23756171 0.92746727]\n", + " [-0.27347023 -0.20770005 0.93918833]\n", + " [-0.25808818 -0.17769649 0.94963911]\n", + " [-0.2426973 -0.14773013 0.95878769]\n", + " [-0.22741486 -0.11798186 0.96662442]\n", + " [-0.2123699 -0.0886345 0.97316132]\n", + " [-0.45630483 -0.13105371 0.88011978]\n", + " [-0.44019131 -0.10036389 0.89227725]\n", + " [-0.42359611 -0.06973681 0.90316284]\n", + " [-0.40663169 -0.03935503 0.91274413]\n", + " [-0.38941797 -0.00939705 0.92101322]\n", + " [-0.37208268 0.01996131 0.92798493]\n", + " [-0.21668182 -0.07191673 0.97358974]\n", + " [-0.24411136 -0.05327375 0.96828278]\n", + " [-0.27196984 -0.03432486 0.96169341]\n", + " [-0.30005527 -0.01516665 0.95380124]\n", + " [-0.32817672 0.00409933 0.94460745]\n", + " [-0.35615307 0.02336685 0.93413542]\n", + " [-0.29407911 -0.24803456 0.92303648]\n", + " [-0.29407911 -0.24803456 0.92303648]\n", + " [-0.36596045 0.03014735 0.93014197]\n", + " [-0.36596045 0.03014735 0.93014197]\n", + " [-0.29901272 -0.23150886 0.92574027]\n", + " [-0.28366448 -0.20154109 0.93750502]\n", + " [-0.26817531 -0.1714424 0.94799236]\n", + " [-0.25265179 -0.14139235 0.95717045]\n", + " [-0.23721078 -0.11157188 0.96502993]\n", + " [-0.22198087 -0.0821636 0.97158306]\n", + " [-0.32838538 -0.21388595 0.92000861]\n", + " [-0.31282628 -0.18365536 0.93188541]\n", + " [-0.29705691 -0.15332632 0.94246922]\n", + " [-0.2811838 -0.1230797 0.95172846]\n", + " [-0.26532289 -0.09309659 0.95965452]\n", + " [-0.24960131 -0.06355871 0.96626056]\n", + " [-0.35798003 -0.19563084 0.91300541]\n", + " [-0.34224055 -0.16519437 0.92497688]\n", + " [-0.3262245 -0.13469393 0.9356469 ]\n", + " [-0.31003907 -0.10431163 0.94498405]\n", + " [-0.29379997 -0.0742285 0.95298043]\n", + " [-0.2776332 -0.04462505 0.95965015]\n", + " [-0.38759966 -0.17683487 0.90470765]\n", + " [-0.37171059 -0.14625115 0.91675615]\n", + " [-0.35548106 -0.11563984 0.92750237]\n", + " [-0.33901954 -0.08518388 0.93691486]\n", + " [-0.32244233 -0.05506397 0.94498619]\n", + " [-0.30587508 -0.0254592 0.95173119]\n", + " [-0.41705286 -0.15759636 0.89511468]\n", + " [-0.40104595 -0.1269258 0.90722213]\n", + " [-0.38463686 -0.09626548 0.91803455]\n", + " [-0.36793574 -0.06579865 0.92752026]\n", + " [-0.3510602 -0.03570527 0.93567188]\n", + " [-0.33413636 -0.00616294 0.9425046 ]\n", + " [-0.44615248 -0.13802181 0.88424993]\n", + " [-0.43006077 -0.10732605 0.89639771]\n", + " [-0.4135076 -0.07667928 0.90726609]\n", + " [-0.39660487 -0.04626433 0.91682288]\n", + " [-0.37947188 -0.01626014 0.92506038]\n", + " [-0.36223588 0.01315707 0.93199359]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:cartToSphere: vec: [[-0.17200301 0.49645554 -0.85085067]\n", + " [-0.14917506 0.48456154 -0.86194369]\n", + " [-0.12577686 0.47204033 -0.87255837]\n", + " [-0.10189519 0.45892086 -0.88261487]\n", + " [-0.07761808 0.44523684 -0.89204237]\n", + " [-0.05303629 0.43102773 -0.90077869]\n", + " [-0.02824393 0.41633931 -0.90877052]\n", + " [-0.00333823 0.40122371 -0.91597401]\n", + " [-0.17200301 0.49645554 -0.85085067]\n", + " [-0.15569095 0.51830991 -0.8409014 ]\n", + " [-0.13922142 0.53961847 -0.8303188 ]\n", + " [-0.12265817 0.56030305 -0.81915533]\n", + " [-0.10606481 0.5802908 -0.80747312]\n", + " [-0.08950437 0.5995139 -0.79534399]\n", + " [-0.07303923 0.61790909 -0.78284968]\n", + " [-0.05673123 0.63541734 -0.77008205]\n", + " [-0.00333823 0.40122371 -0.91597401]\n", + " [ 0.01340324 0.42388295 -0.9056178 ]\n", + " [ 0.03007988 0.44608751 -0.89448373]\n", + " [ 0.04662613 0.46775529 -0.88262733]\n", + " [ 0.06297841 0.48881147 -0.87011325]\n", + " [ 0.07907539 0.50918861 -0.85701461]\n", + " [ 0.09485764 0.52882589 -0.84341284]\n", + " [ 0.11026669 0.54766782 -0.82939811]\n", + " [-0.05673123 0.63541734 -0.77008205]\n", + " [-0.03368488 0.62506186 -0.77984806]\n", + " [-0.01021507 0.61392101 -0.78930137]\n", + " [ 0.01358679 0.60202578 -0.79836105]\n", + " [ 0.03762888 0.58941116 -0.80695635]\n", + " [ 0.0618186 0.5761164 -0.81502659]\n", + " [ 0.08606255 0.56218556 -0.8225209 ]\n", + " [ 0.11026669 0.54766782 -0.82939811]\n", + " [-0.16206996 0.49142438 -0.85570755]\n", + " [-0.13369702 0.4764226 -0.86899172]\n", + " [-0.10455384 0.46050686 -0.88147713]\n", + " [-0.07480185 0.44373722 -0.89302965]\n", + " [-0.04460822 0.42618637 -0.90353488]\n", + " [-0.01414755 0.40794124 -0.91289856]\n", + " [-0.16483713 0.50600675 -0.84663209]\n", + " [-0.14473065 0.53243539 -0.83400575]\n", + " [-0.12445114 0.55796597 -0.82047906]\n", + " [-0.10411578 0.58246215 -0.80616236]\n", + " [-0.08384061 0.60579903 -0.7911879 ]\n", + " [-0.06374023 0.62786192 -0.77571038]\n", + " [ 0.00387958 0.41120593 -0.91153422]\n", + " [ 0.0243628 0.4386819 -0.89831211]\n", + " [ 0.04468348 0.46539247 -0.88397581]\n", + " [ 0.0647237 0.49119686 -0.8686406 ]\n", + " [ 0.08437053 0.51597079 -0.85244106]\n", + " [ 0.103515 0.53960462 -0.83553067]\n", + " [-0.04679617 0.63094202 -0.77441739]\n", + " [-0.01825389 0.61771744 -0.78618825]\n", + " [ 0.01083378 0.60334364 -0.79740773]\n", + " [ 0.04029795 0.58788336 -0.80794135]\n", + " [ 0.06996818 0.57140894 -0.81767736]\n", + " [ 0.09967222 0.55400359 -0.82652615]\n", + " [-0.17187057 0.49649154 -0.85085643]\n", + " [-0.17187057 0.49649154 -0.85085643]\n", + " [ 0.11013211 0.54765539 -0.8294242 ]\n", + " [ 0.11013211 0.54765539 -0.8294242 ]\n", + " [-0.15501067 0.50097733 -0.85146544]\n", + " [-0.13484411 0.5275162 -0.83877513]\n", + " [-0.11452437 0.55316162 -0.82516446]\n", + " [-0.09416909 0.57777729 -0.81074385]\n", + " [-0.07389455 0.60123868 -0.79564542]\n", + " [-0.05381537 0.62343164 -0.78002365]\n", + " [-0.12657327 0.48607077 -0.86470482]\n", + " [-0.10626161 0.51289015 -0.85185219]\n", + " [-0.08585351 0.53883106 -0.8380276 ]\n", + " [-0.06546782 0.56375701 -0.82334197]\n", + " [-0.04522141 0.58754454 -0.80792724]\n", + " [-0.02522874 0.61008125 -0.79193711]\n", + " [-0.09737878 0.47023271 -0.87715368]\n", + " [-0.07696015 0.49728541 -0.86416686]\n", + " [-0.05650291 0.52347798 -0.85016365]\n", + " [-0.03612677 0.54867336 -0.83525589]\n", + " [-0.01594873 0.57274879 -0.81957578]\n", + " [ 0.00391735 0.59559354 -0.80327641]\n", + " [-0.06758905 0.45352273 -0.88867815]\n", + " [-0.04710299 0.48076065 -0.8755858 ]\n", + " [-0.02663743 0.50716098 -0.8614396 ]\n", + " [-0.00631235 0.53258566 -0.84635257]\n", + " [ 0.0137558 0.55691211 -0.83045751]\n", + " [ 0.03345424 0.58003079 -0.8139073 ]\n", + " [-0.03737168 0.43601298 -0.89916408]\n", + " [-0.0168589 0.46338664 -0.88599582]\n", + " [ 0.00357324 0.48995001 -0.8717432 ]\n", + " [ 0.02380518 0.51556386 -0.85652042]\n", + " [ 0.04372167 0.54010516 -0.84046108]\n", + " [ 0.06321146 0.56346486 -0.8237182 ]\n", + " [-0.00690162 0.41778983 -0.90851749]\n", + " [ 0.01359659 0.44524827 -0.89530392]\n", + " [ 0.03395358 0.47192874 -0.88098264]\n", + " [ 0.05405092 0.49769082 -0.86566873]\n", + " [ 0.07377502 0.52241061 -0.84949656]\n", + " [ 0.09301634 0.54597875 -0.83261946]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:fp_optics: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:fp_optics: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:cartToSphere: vec: [[ 0.29934357 -0.69727856 0.65130334]\n", + " [ 0.31445993 -0.70922677 0.63096145]\n", + " [ 0.32962374 -0.72083881 0.60970452]\n", + " [ 0.34475956 -0.7320365 0.58759119]\n", + " [ 0.3597965 -0.74274994 0.56468487]\n", + " [ 0.37466687 -0.75291657 0.54105579]\n", + " [ 0.38930527 -0.76248074 0.51678286]\n", + " [ 0.40364854 -0.77139399 0.49195444]\n", + " [ 0.29934357 -0.69727856 0.65130334]\n", + " [ 0.2764944 -0.71352648 0.64376301]\n", + " [ 0.25354104 -0.72916641 0.63563613]\n", + " [ 0.23057835 -0.74414705 0.62695996]\n", + " [ 0.20770476 -0.75842597 0.61777729]\n", + " [ 0.18502205 -0.77196964 0.60813626]\n", + " [ 0.1626343 -0.78475341 0.59809044]\n", + " [ 0.14064545 -0.79676146 0.58769893]\n", + " [ 0.40364854 -0.77139399 0.49195444]\n", + " [ 0.3799245 -0.78812897 0.48426242]\n", + " [ 0.35593903 -0.80410196 0.47615905]\n", + " [ 0.33179187 -0.81926006 0.46768271]\n", + " [ 0.30758357 -0.83356169 0.45887609]\n", + " [ 0.2834155 -0.84697596 0.44978593]\n", + " [ 0.25939135 -0.85948135 0.44046331]\n", + " [ 0.23561924 -0.87106443 0.43096442]\n", + " [ 0.14064545 -0.79676146 0.58769893]\n", + " [ 0.15372955 -0.80897851 0.56738082]\n", + " [ 0.16708877 -0.8207802 0.54626111]\n", + " [ 0.18065339 -0.83208755 0.52439934]\n", + " [ 0.19435387 -0.84282901 0.50186237]\n", + " [ 0.20812329 -0.85294107 0.47872355]\n", + " [ 0.22189829 -0.86236847 0.45506238]\n", + " [ 0.23561924 -0.87106443 0.43096442]\n", + " [ 0.30584531 -0.70258074 0.64252545]\n", + " [ 0.32441287 -0.71700929 0.61697161]\n", + " [ 0.34297635 -0.73085417 0.59010119]\n", + " [ 0.36140338 -0.74398328 0.56202889]\n", + " [ 0.37956926 -0.75628141 0.53288423]\n", + " [ 0.39735449 -0.76764904 0.50281643]\n", + " [ 0.28945117 -0.70447538 0.64802196]\n", + " [ 0.26136443 -0.72398738 0.63838148]\n", + " [ 0.23321494 -0.74253406 0.62789646]\n", + " [ 0.20518242 -0.7600336 0.61664341]\n", + " [ 0.17745414 -0.77642429 0.60471096]\n", + " [ 0.15022187 -0.7916644 0.59220002]\n", + " [ 0.39329477 -0.77875102 0.48873926]\n", + " [ 0.36403042 -0.79875627 0.47903056]\n", + " [ 0.33447244 -0.81756323 0.46874146]\n", + " [ 0.30480569 -0.83509065 0.4579488 ]\n", + " [ 0.27521695 -0.85128151 0.44673866]\n", + " [ 0.24589887 -0.86609956 0.43520718]\n", + " [ 0.14638694 -0.80209424 0.57897814]\n", + " [ 0.16261798 -0.81679872 0.5535298 ]\n", + " [ 0.179193 -0.83080009 0.52693556]\n", + " [ 0.19598369 -0.84396347 0.49931558]\n", + " [ 0.21286695 -0.85617198 0.47080484]\n", + " [ 0.22972769 -0.86732739 0.44155224]\n", + " [ 0.29931723 -0.69737643 0.65121065]\n", + " [ 0.29931723 -0.69737643 0.65121065]\n", + " [ 0.23565321 -0.87099795 0.43108019]\n", + " [ 0.23565321 -0.87099795 0.43108019]\n", + " [ 0.29593915 -0.7097063 0.63932542]\n", + " [ 0.267727 -0.72928034 0.62966057]\n", + " [ 0.23943485 -0.7478691 0.61916295]\n", + " [ 0.21124264 -0.76539062 0.60790932]\n", + " [ 0.18333812 -0.78178326 0.59598832]\n", + " [ 0.15591493 -0.7970055 0.58350044]\n", + " [ 0.31440564 -0.72420158 0.61374357]\n", + " [ 0.28587531 -0.74392961 0.60402322]\n", + " [ 0.25721879 -0.76261964 0.59350635]\n", + " [ 0.22861617 -0.7801893 0.58227082]\n", + " [ 0.20025514 -0.7965772 0.57040568]\n", + " [ 0.17233168 -0.81174246 0.55801073]\n", + " [ 0.33288659 -0.73810032 0.58685128]\n", + " [ 0.30409288 -0.75794971 0.57709597]\n", + " [ 0.27513057 -0.77671399 0.56658499]\n", + " [ 0.24618006 -0.79431051 0.55539733]\n", + " [ 0.21742805 -0.8106785 0.54362249]\n", + " [ 0.18907002 -0.82577792 0.53135991]\n", + " [ 0.35124999 -0.75127013 0.55876349]\n", + " [ 0.32224812 -0.7712073 0.54899495]\n", + " [ 0.2930382 -0.79001792 0.53851676]\n", + " [ 0.26380156 -0.80761939 0.52740843]\n", + " [ 0.23472407 -0.82395199 0.51575938]\n", + " [ 0.20599976 -0.83897684 0.5036685 ]\n", + " [ 0.36937179 -0.7635953 0.52960995]\n", + " [ 0.34021845 -0.78358552 0.51985107]\n", + " [ 0.31081964 -0.80241393 0.50943404]\n", + " [ 0.28135817 -0.81999834 0.49843786]\n", + " [ 0.2520198 -0.83628027 0.48695106]\n", + " [ 0.22299734 -0.85122218 0.47507156]\n", + " [ 0.38713322 -0.77497582 0.49954013]\n", + " [ 0.35788718 -0.79498349 0.48981427]\n", + " [ 0.32835981 -0.81380104 0.47948691]\n", + " [ 0.29873547 -0.83134697 0.46863561]\n", + " [ 0.26920058 -0.84756393 0.45734717]\n", + " [ 0.23994765 -0.86241545 0.4457182 ]]\n", + "DEBUG:root:cartToSphere: vec: [[-1.65109782e-01 -1.95464299e-01 -9.66712195e-01]\n", + " [-1.71388593e-01 -2.21901648e-01 -9.59888331e-01]\n", + " [-1.77654079e-01 -2.48684121e-01 -9.52152948e-01]\n", + " [-1.83873756e-01 -2.75695468e-01 -9.43494807e-01]\n", + " [-1.90016952e-01 -3.02821857e-01 -9.33912459e-01]\n", + " [-1.96054478e-01 -3.29950291e-01 -9.23415100e-01]\n", + " [-2.01958578e-01 -3.56968151e-01 -9.12023285e-01]\n", + " [-2.07703137e-01 -3.83763831e-01 -8.99769264e-01]\n", + " [-1.65109782e-01 -1.95464299e-01 -9.66712195e-01]\n", + " [-1.37191412e-01 -2.02898187e-01 -9.69541563e-01]\n", + " [-1.09269059e-01 -2.10231562e-01 -9.71526100e-01]\n", + " [-8.14540475e-02 -2.17440845e-01 -9.72668863e-01]\n", + " [-5.38589933e-02 -2.24506602e-01 -9.72983039e-01]\n", + " [-2.65980126e-02 -2.31414021e-01 -9.72491695e-01]\n", + " [ 2.12598966e-04 -2.38153286e-01 -9.71227557e-01]\n", + " [ 2.64534483e-02 -2.44719754e-01 -9.69232922e-01]\n", + " [-2.07703137e-01 -3.83763831e-01 -8.99769264e-01]\n", + " [-1.78790162e-01 -3.91308285e-01 -9.02724711e-01]\n", + " [-1.49810215e-01 -3.98479435e-01 -9.04859680e-01]\n", + " [-1.20880184e-01 -4.05253924e-01 -9.06177266e-01]\n", + " [-9.21158322e-02 -4.11613682e-01 -9.06691155e-01]\n", + " [-6.36310949e-02 -4.17545873e-01 -9.06425136e-01]\n", + " [-3.55385107e-02 -4.23042595e-01 -9.05412600e-01]\n", + " [-7.95081625e-03 -4.28100424e-01 -9.03696194e-01]\n", + " [ 2.64534483e-02 -2.44719754e-01 -9.69232922e-01]\n", + " [ 2.21433233e-02 -2.70574416e-01 -9.62444366e-01]\n", + " [ 1.75799804e-02 -2.96740332e-01 -9.54796376e-01]\n", + " [ 1.27976155e-02 -3.23095002e-01 -9.46280001e-01]\n", + " [ 7.82685973e-03 -3.49520594e-01 -9.36895989e-01]\n", + " [ 2.69531752e-03 -3.75903155e-01 -9.26655035e-01]\n", + " [-2.57174659e-03 -4.02132143e-01 -9.15578028e-01]\n", + " [-7.95081625e-03 -4.28100424e-01 -9.03696194e-01]\n", + " [-1.67751118e-01 -2.06966695e-01 -9.63859092e-01]\n", + " [-1.75440741e-01 -2.39615547e-01 -9.54884776e-01]\n", + " [-1.83078026e-01 -2.72666857e-01 -9.44529100e-01]\n", + " [-1.90605787e-01 -3.05910170e-01 -9.32785292e-01]\n", + " [-1.97970286e-01 -3.39137409e-01 -9.19670367e-01]\n", + " [-2.05121098e-01 -3.72141602e-01 -9.05227023e-01]\n", + " [-1.52965894e-01 -1.98805964e-01 -9.68027698e-01]\n", + " [-1.18731408e-01 -2.07852634e-01 -9.70927461e-01]\n", + " [-8.46013736e-02 -2.16724262e-01 -9.72560128e-01]\n", + " [-5.07825882e-02 -2.25383327e-01 -9.72945777e-01]\n", + " [-1.74852115e-02 -2.33802598e-01 -9.72126850e-01]\n", + " [ 1.50754200e-02 -2.41966157e-01 -9.70167568e-01]\n", + " [-1.95093368e-01 -3.87006314e-01 -9.01201803e-01]\n", + " [-1.59597932e-01 -3.96005117e-01 -9.04272330e-01]\n", + " [-1.24118147e-01 -4.04419604e-01 -9.06112283e-01]\n", + " [-8.88676614e-02 -4.12214298e-01 -9.06742472e-01]\n", + " [-5.40562751e-02 -4.19365527e-01 -9.06206640e-01]\n", + " [-1.98911355e-02 -4.25860624e-01 -9.04570103e-01]\n", + " [ 2.45185724e-02 -2.55924341e-01 -9.66385829e-01]\n", + " [ 1.90599796e-02 -2.87837873e-01 -9.57489465e-01]\n", + " [ 1.32556225e-02 -3.20096661e-01 -9.47292149e-01]\n", + " [ 7.16335748e-03 -3.52481885e-01 -9.35791220e-01]\n", + " [ 8.34078851e-04 -3.84783710e-01 -9.23006393e-01]\n", + " [-5.68644984e-03 -4.16800024e-01 -9.08980420e-01]\n", + " [-1.65035896e-01 -1.95579545e-01 -9.66701502e-01]\n", + " [-1.65035896e-01 -1.95579545e-01 -9.66701502e-01]\n", + " [-8.02560569e-03 -4.27995635e-01 -9.03745167e-01]\n", + " [-8.02560569e-03 -4.27995635e-01 -9.03745167e-01]\n", + " [-1.55633216e-01 -2.10203818e-01 -9.65190477e-01]\n", + " [-1.21258061e-01 -2.19262562e-01 -9.68101447e-01]\n", + " [-8.69804788e-02 -2.28118990e-01 -9.69740235e-01]\n", + " [-5.30074324e-02 -2.36735141e-01 -9.70127149e-01]\n", + " [-1.95486415e-02 -2.45083321e-01 -9.69304914e-01]\n", + " [ 1.31814891e-02 -2.53147211e-01 -9.67337965e-01]\n", + " [-1.63202182e-01 -2.42879097e-01 -9.56229466e-01]\n", + " [-1.28471983e-01 -2.51962094e-01 -9.59171545e-01]\n", + " [-9.38214846e-02 -2.60767251e-01 -9.60831916e-01]\n", + " [-5.94585714e-02 -2.69255702e-01 -9.61231525e-01]\n", + " [-2.55920633e-02 -2.77398851e-01 -9.60413934e-01]\n", + " [ 7.56624858e-03 -2.85179516e-01 -9.58444258e-01]\n", + " [-1.70741377e-01 -2.75950927e-01 -9.45885018e-01]\n", + " [-1.35721090e-01 -2.85042568e-01 -9.48857482e-01]\n", + " [-1.00764448e-01 -2.93782817e-01 -9.50546255e-01]\n", + " [-6.60807676e-02 -3.02132559e-01 -9.50972791e-01]\n", + " [-3.18785440e-02 -3.10063120e-01 -9.50181362e-01]\n", + " [ 1.63262538e-03 -3.17557188e-01 -9.48237716e-01]\n", + " [-1.78194272e-01 -3.09208638e-01 -9.34150320e-01]\n", + " [-1.42950484e-01 -3.18292421e-01 -9.37152652e-01]\n", + " [-1.07755421e-01 -3.26952871e-01 -9.38877303e-01]\n", + " [-7.28200288e-02 -3.35151332e-01 -9.39345958e-01]\n", + " [-3.83529677e-02 -3.42859930e-01 -9.38603281e-01]\n", + " [-4.56230429e-03 -3.50062081e-01 -9.36715392e-01]\n", + " [-1.85507912e-01 -3.42443956e-01 -9.21042318e-01]\n", + " [-1.50109300e-01 -3.51502955e-01 -9.24074061e-01]\n", + " [-1.14745121e-01 -3.60068477e-01 -9.25842454e-01]\n", + " [-7.96277998e-02 -3.68102951e-01 -9.26369058e-01]\n", + " [-4.49664456e-02 -3.75580025e-01 -9.25698473e-01]\n", + " [-1.09683043e-02 -3.82484553e-01 -9.23896781e-01]\n", + " [-1.92632553e-01 -3.75449781e-01 -9.06603641e-01]\n", + " [-1.57149725e-01 -3.84467181e-01 -9.09664197e-01]\n", + " [-1.21687393e-01 -3.92923410e-01 -9.11484159e-01]\n", + " [-8.64589997e-02 -4.00782403e-01 -9.12084594e-01]\n", + " [-5.16741772e-02 -4.08019764e-01 -9.11509546e-01]\n", + " [-1.75399974e-02 -4.14622168e-01 -9.09824602e-01]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:fp_optics: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:fp_optics: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:cartToSphere: vec: [[ 0.57745411 0.42273133 -0.698459 ]\n", + " [ 0.55495771 0.42523552 -0.7149802 ]\n", + " [ 0.53156615 0.42744604 -0.73125051]\n", + " [ 0.50734835 0.42933543 -0.74717384]\n", + " [ 0.48237938 0.43088058 -0.76266117]\n", + " [ 0.45674165 0.43206285 -0.77763022]\n", + " [ 0.43052524 0.43286825 -0.79200574]\n", + " [ 0.40382748 0.43328766 -0.80572028]\n", + " [ 0.57745411 0.42273133 -0.698459 ]\n", + " [ 0.58258366 0.39639751 -0.70955288]\n", + " [ 0.58712991 0.36982444 -0.72007524]\n", + " [ 0.59107975 0.34312092 -0.72999505]\n", + " [ 0.59442509 0.31639957 -0.73929028]\n", + " [ 0.59716226 0.28977696 -0.74794823]\n", + " [ 0.59929132 0.26337425 -0.75596555]\n", + " [ 0.60081539 0.23731843 -0.76334844]\n", + " [ 0.40382748 0.43328766 -0.80572028]\n", + " [ 0.40924962 0.40603735 -0.81709756]\n", + " [ 0.41428544 0.37850973 -0.82770644]\n", + " [ 0.41892026 0.35081847 -0.8375155 ]\n", + " [ 0.42314451 0.32307953 -0.8465036 ]\n", + " [ 0.42695369 0.29541026 -0.85465977]\n", + " [ 0.4303481 0.26792917 -0.86198287]\n", + " [ 0.43333251 0.24075682 -0.86848091]\n", + " [ 0.60081539 0.23731843 -0.76334844]\n", + " [ 0.5792101 0.23798693 -0.77966524]\n", + " [ 0.55669961 0.23863393 -0.79570057]\n", + " [ 0.53335896 0.23923093 -0.8113549 ]\n", + " [ 0.5092665 0.23975582 -0.82653782]\n", + " [ 0.48450503 0.24019211 -0.84116742]\n", + " [ 0.45916256 0.24052818 -0.85517012]\n", + " [ 0.43333251 0.24075682 -0.86848091]\n", + " [ 0.56777847 0.42376745 -0.7057257 ]\n", + " [ 0.53959662 0.42664191 -0.72581827]\n", + " [ 0.51013807 0.42904766 -0.74543762]\n", + " [ 0.47953837 0.43094038 -0.76441699]\n", + " [ 0.44794927 0.43228576 -0.78260493]\n", + " [ 0.41553965 0.43306006 -0.7998661 ]\n", + " [ 0.57968604 0.41129457 -0.70342084]\n", + " [ 0.58558275 0.37884442 -0.71663781]\n", + " [ 0.59058983 0.34614253 -0.72896433]\n", + " [ 0.59469031 0.3133947 -0.74035613]\n", + " [ 0.59787737 0.28081558 -0.75078976]\n", + " [ 0.6001524 0.24863055 -0.76026307]\n", + " [ 0.40632989 0.42144691 -0.81072716]\n", + " [ 0.41271741 0.38784834 -0.82415897]\n", + " [ 0.41850934 0.35394587 -0.83640436]\n", + " [ 0.42368594 0.31995211 -0.84742013]\n", + " [ 0.42823889 0.28608305 -0.85718606]\n", + " [ 0.43217062 0.25255764 -0.86570387]\n", + " [ 0.5915069 0.23769926 -0.77046651]\n", + " [ 0.56440845 0.23850927 -0.79028883]\n", + " [ 0.53602458 0.23925772 -0.80958841]\n", + " [ 0.50649809 0.23990128 -0.82819506]\n", + " [ 0.4759815 0.2404095 -0.84595797]\n", + " [ 0.44463909 0.24076287 -0.86274522]\n", + " [ 0.5773973 0.42265083 -0.69855467]\n", + " [ 0.5773973 0.42265083 -0.69855467]\n", + " [ 0.43341205 0.24084848 -0.8684158 ]\n", + " [ 0.43341205 0.24084848 -0.8684158 ]\n", + " [ 0.57007747 0.41236629 -0.7106094 ]\n", + " [ 0.57601271 0.37978427 -0.72385998]\n", + " [ 0.58107238 0.3469441 -0.73619609]\n", + " [ 0.58523984 0.31405188 -0.74757324]\n", + " [ 0.5885089 0.28132195 -0.75796783]\n", + " [ 0.59088184 0.24897866 -0.76737753]\n", + " [ 0.54192197 0.41512783 -0.73074582]\n", + " [ 0.54796044 0.3822143 -0.74407768]\n", + " [ 0.55316558 0.34902712 -0.75643103]\n", + " [ 0.55752128 0.31577368 -0.76776103]\n", + " [ 0.56102258 0.28266802 -0.77804399]\n", + " [ 0.56367375 0.24993207 -0.7872775 ]\n", + " [ 0.51248571 0.41744214 -0.7504002 ]\n", + " [ 0.51861901 0.38426025 -0.76379211]\n", + " [ 0.52396553 0.35079276 -0.77614726]\n", + " [ 0.52850903 0.31724867 -0.78742078]\n", + " [ 0.53224492 0.28384234 -0.79758942]\n", + " [ 0.53517849 0.25079413 -0.80665128]\n", + " [ 0.48190413 0.41926552 -0.7694055 ]\n", + " [ 0.4881239 0.38588014 -0.7828356 ]\n", + " [ 0.49360828 0.35220034 -0.79517658]\n", + " [ 0.49834036 0.31843672 -0.80638387]\n", + " [ 0.5023151 0.28480423 -0.81643499]\n", + " [ 0.50553782 0.25152238 -0.82532903]\n", + " [ 0.45032886 0.42056431 -0.78761004]\n", + " [ 0.45662633 0.38704214 -0.80105604]\n", + " [ 0.46224474 0.35321963 -0.81336688]\n", + " [ 0.46716613 0.31930863 -0.82449852]\n", + " [ 0.47138432 0.28552471 -0.83442943]\n", + " [ 0.4749038 0.25208697 -0.84315985]\n", + " [ 0.41792864 0.42131529 -0.8048783 ]\n", + " [ 0.42429443 0.38772449 -0.81831776]\n", + " [ 0.43004211 0.35383024 -0.8305829 ]\n", + " [ 0.43515243 0.31984505 -0.84163027]\n", + " [ 0.43961766 0.28598488 -0.85143935]\n", + " [ 0.44344085 0.25246868 -0.8600115 ]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:cartToSphere: vec: [[ 0.14820296 0.25504246 -0.9555047 ]\n", + " [ 0.12849406 0.27479832 -0.9528773 ]\n", + " [ 0.10829327 0.29472194 -0.94942696]\n", + " [ 0.08767549 0.31472187 -0.945126 ]\n", + " [ 0.06671673 0.33470974 -0.93995653]\n", + " [ 0.04549534 0.35459917 -0.93391092]\n", + " [ 0.02409258 0.37430543 -0.92699244]\n", + " [ 0.00259237 0.39374583 -0.9192157 ]\n", + " [ 0.14820296 0.25504246 -0.9555047 ]\n", + " [ 0.12784898 0.23588287 -0.96333479]\n", + " [ 0.10738474 0.21665637 -0.97032393]\n", + " [ 0.08688955 0.19744284 -0.97645611]\n", + " [ 0.06644242 0.17832558 -0.98172572]\n", + " [ 0.04612163 0.15939164 -0.98613746]\n", + " [ 0.02600481 0.14073233 -0.9897061 ]\n", + " [ 0.00616906 0.1224435 -0.99245631]\n", + " [ 0.00259237 0.39374583 -0.9192157 ]\n", + " [-0.01834555 0.37382307 -0.92731858]\n", + " [-0.03920034 0.35363116 -0.93456318]\n", + " [-0.05989005 0.33325449 -0.94093285]\n", + " [-0.08033519 0.31277953 -0.94642233]\n", + " [-0.10045912 0.29229432 -0.95103733]\n", + " [-0.12018754 0.27188874 -0.95479394]\n", + " [-0.1394474 0.25165565 -0.95771805]\n", + " [ 0.00616906 0.1224435 -0.99245631]\n", + " [-0.01410256 0.1402439 -0.99001655]\n", + " [-0.03468382 0.15841377 -0.98676345]\n", + " [-0.05549569 0.17685874 -0.98267045]\n", + " [-0.0764586 0.19548903 -0.97772088]\n", + " [-0.09749228 0.21421917 -0.97190812]\n", + " [-0.1185157 0.23296747 -0.96523582]\n", + " [-0.1394474 0.25165565 -0.95771805]\n", + " [ 0.13960549 0.26356386 -0.95448646]\n", + " [ 0.11510933 0.28790058 -0.95071715]\n", + " [ 0.08994883 0.31239813 -0.94568315]\n", + " [ 0.06426341 0.33689261 -0.93934742]\n", + " [ 0.03819735 0.36122499 -0.93169602]\n", + " [ 0.01190143 0.38524005 -0.92273965]\n", + " [ 0.13928045 0.24676889 -0.95901307]\n", + " [ 0.1142498 0.22323117 -0.96804691]\n", + " [ 0.0891325 0.19967181 -0.97580047]\n", + " [ 0.06407414 0.17624272 -0.98225913]\n", + " [ 0.03921887 0.15310425 -0.9874315 ]\n", + " [ 0.01470934 0.13042635 -0.99134888]\n", + " [-0.00646795 0.3850319 -0.9228806 ]\n", + " [-0.03208409 0.36042322 -0.93223694]\n", + " [-0.05749384 0.33549399 -0.94028626]\n", + " [-0.08254981 0.31040256 -0.94701414]\n", + " [-0.10711083 0.28531104 -0.95243104]\n", + " [-0.13104071 0.26038606 -0.95657066]\n", + " [-0.00255906 0.13021528 -0.99148244]\n", + " [-0.02762227 0.15229369 -0.98794921]\n", + " [-0.05307222 0.17483263 -0.98316677]\n", + " [-0.07876268 0.19766491 -0.97710031]\n", + " [-0.10454584 0.22063313 -0.96973769]\n", + " [-0.13027235 0.24358831 -0.96108993]\n", + " [ 0.14806716 0.25504431 -0.95552526]\n", + " [ 0.14806716 0.25504431 -0.95552526]\n", + " [-0.13931108 0.25166072 -0.95773655]\n", + " [-0.13931108 0.25166072 -0.95773655]\n", + " [ 0.13078588 0.25525455 -0.95798756]\n", + " [ 0.10567342 0.23160655 -0.96705301]\n", + " [ 0.08049166 0.20791607 -0.97482922]\n", + " [ 0.05538662 0.18433499 -0.98130165]\n", + " [ 0.03050264 0.16102325 -0.98647914]\n", + " [ 0.00598226 0.13815029 -0.99039321]\n", + " [ 0.10620743 0.27950566 -0.95425184]\n", + " [ 0.08089448 0.25557611 -0.96339864]\n", + " [ 0.05556189 0.23154734 -0.97123566]\n", + " [ 0.03035696 0.20757153 -0.9777487 ]\n", + " [ 0.00542442 0.18380768 -0.98294726]\n", + " [-0.0190937 0.16042353 -0.98686358]\n", + " [ 0.08098107 0.30393316 -0.94924533]\n", + " [ 0.05551492 0.27976775 -0.95846132]\n", + " [ 0.03007982 0.25544915 -0.96635446]\n", + " [ 0.00482412 0.23113046 -0.97291081]\n", + " [-0.02010749 0.20697037 -0.97814056]\n", + " [-0.04457383 0.18313513 -0.98207673]\n", + " [ 0.0552467 0.32837356 -0.94293086]\n", + " [ 0.02967619 0.30401877 -0.95220371]\n", + " [ 0.00418852 0.27945885 -0.96014854]\n", + " [-0.02106749 0.25484834 -0.96675151]\n", + " [-0.04594763 0.23034639 -0.97202333]\n", + " [-0.07031202 0.20611846 -0.97599764]\n", + " [ 0.02914915 0.35266834 -0.93529427]\n", + " [ 0.0035246 0.32817205 -0.94461139]\n", + " [-0.02196461 0.30342035 -0.95260361]\n", + " [-0.0471698 0.27856952 -0.95925702]\n", + " [-0.07194783 0.25377973 -0.96458248]\n", + " [-0.09616037 0.22921651 -0.96861395]\n", + " [ 0.00283964 0.37666279 -0.92634609]\n", + " [-0.02278776 0.3520745 -0.93569454]\n", + " [-0.04822722 0.32718228 -0.94372978]\n", + " [-0.0733309 0.30214402 -0.95043757]\n", + " [-0.09795707 0.2771213 -0.95582854]\n", + " [-0.12196904 0.25228038 -0.95993654]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:fp_optics: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:fp_optics: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:cartToSphere: vec: [[ 0.23920929 0.81419037 -0.5290302 ]\n", + " [ 0.2483198 0.82633213 -0.50548242]\n", + " [ 0.25741097 0.83804658 -0.48105875]\n", + " [ 0.26643569 0.84925096 -0.45583422]\n", + " [ 0.2753495 0.85987103 -0.4298889 ]\n", + " [ 0.28411005 0.86984068 -0.40330964]\n", + " [ 0.29267709 0.87910213 -0.37619087]\n", + " [ 0.30101272 0.88760657 -0.34863436]\n", + " [ 0.23920929 0.81419037 -0.5290302 ]\n", + " [ 0.21260835 0.82470573 -0.52407839]\n", + " [ 0.18594604 0.83453981 -0.51862065]\n", + " [ 0.15932996 0.84366521 -0.51268214]\n", + " [ 0.13287002 0.85206452 -0.50629202]\n", + " [ 0.10667871 0.85973045 -0.49948294]\n", + " [ 0.0808718 0.86666583 -0.49229066]\n", + " [ 0.05556931 0.87288357 -0.48475389]\n", + " [ 0.30101272 0.88760657 -0.34863436]\n", + " [ 0.27344648 0.89841062 -0.34363554]\n", + " [ 0.24572419 0.90837443 -0.33834231]\n", + " [ 0.217959 0.91747008 -0.33277999]\n", + " [ 0.19026411 0.92568107 -0.32697726]\n", + " [ 0.16275213 0.93300197 -0.32096583]\n", + " [ 0.13553539 0.93943787 -0.3147803 ]\n", + " [ 0.10872747 0.94500357 -0.3084584 ]\n", + " [ 0.05556931 0.87288357 -0.48475389]\n", + " [ 0.06265912 0.88489925 -0.46154865]\n", + " [ 0.06999232 0.89646977 -0.43754202]\n", + " [ 0.07751948 0.90751003 -0.41281506]\n", + " [ 0.0851958 0.91794468 -0.38745224]\n", + " [ 0.09298047 0.92770785 -0.36154223]\n", + " [ 0.10083596 0.93674309 -0.33517829]\n", + " [ 0.10872747 0.94500357 -0.3084584 ]\n", + " [ 0.24308964 0.81956831 -0.51885953]\n", + " [ 0.25424769 0.83417318 -0.48940088]\n", + " [ 0.26532972 0.84805293 -0.45870075]\n", + " [ 0.27625283 0.86106739 -0.42690434]\n", + " [ 0.28693906 0.8730949 -0.39417163]\n", + " [ 0.29731527 0.88403274 -0.36067956]\n", + " [ 0.22765627 0.81889899 -0.52685583]\n", + " [ 0.19499839 0.83133271 -0.52044362]\n", + " [ 0.16235492 0.84271463 -0.51329614]\n", + " [ 0.12992726 0.85300856 -0.50546543]\n", + " [ 0.09792256 0.86220106 -0.49701158]\n", + " [ 0.0665557 0.87030154 -0.48800161]\n", + " [ 0.28899207 0.89239049 -0.34658737]\n", + " [ 0.25508784 0.90507102 -0.34025967]\n", + " [ 0.22106162 0.91646055 -0.33351434]\n", + " [ 0.18712189 0.92652394 -0.3264028 ]\n", + " [ 0.15347596 0.93525114 -0.31898343]\n", + " [ 0.12033104 0.94265559 -0.3113212 ]\n", + " [ 0.05871326 0.87815145 -0.47476603]\n", + " [ 0.06757412 0.89259031 -0.44577604]\n", + " [ 0.07675073 0.90627483 -0.41566243]\n", + " [ 0.08615869 0.91906226 -0.38457929]\n", + " [ 0.09572281 0.93083135 -0.35268987]\n", + " [ 0.10537516 0.94148215 -0.32016784]\n", + " [ 0.23914968 0.8142696 -0.52893521]\n", + " [ 0.23914968 0.8142696 -0.52893521]\n", + " [ 0.1087913 0.94495912 -0.30857207]\n", + " [ 0.1087913 0.94495912 -0.30857207]\n", + " [ 0.23155036 0.8242146 -0.51677337]\n", + " [ 0.19875516 0.83668193 -0.51035256]\n", + " [ 0.16596394 0.84807618 -0.50321245]\n", + " [ 0.13337819 0.85836099 -0.49540557]\n", + " [ 0.10120462 0.86752288 -0.48699249]\n", + " [ 0.06965712 0.87557126 -0.47804064]\n", + " [ 0.2425928 0.83886184 -0.4872982 ]\n", + " [ 0.20945041 0.85141184 -0.48086215]\n", + " [ 0.17628447 0.86283298 -0.47375418]\n", + " [ 0.14329735 0.87308865 -0.46602798]\n", + " [ 0.11069477 0.88216546 -0.4577453 ]\n", + " [ 0.07868797 0.89007307 -0.44897453]\n", + " [ 0.25358075 0.85277569 -0.45658562]\n", + " [ 0.22015358 0.86538929 -0.45014863]\n", + " [ 0.1866778 0.87682485 -0.44309095]\n", + " [ 0.15335717 0.88704576 -0.43546687]\n", + " [ 0.12039715 0.89603917 -0.42733866]\n", + " [ 0.08800681 0.90381535 -0.41877513]\n", + " [ 0.26443193 0.86581572 -0.424781 ]\n", + " [ 0.23078389 0.8784732 -0.41835826]\n", + " [ 0.19706394 0.88991021 -0.41137042]\n", + " [ 0.16347751 0.90009042 -0.40387168]\n", + " [ 0.13023034 0.90900178 -0.39592401]\n", + " [ 0.09753009 0.91665551 -0.38759586]\n", + " [ 0.27506912 0.87785997 -0.39204445]\n", + " [ 0.24126618 0.89054111 -0.38565161]\n", + " [ 0.2073693 0.90196653 -0.37875369]\n", + " [ 0.1735855 0.91210037 -0.37140409]\n", + " [ 0.14012115 0.92093149 -0.36366366]\n", + " [ 0.10718328 0.92847218 -0.35559972]\n", + " [ 0.28541985 0.88880552 -0.358553 ]\n", + " [ 0.25152987 0.90148984 -0.35220562]\n", + " [ 0.21752502 0.91289092 -0.3454172 ]\n", + " [ 0.1836135 0.92297343 -0.33823975]\n", + " [ 0.1500024 0.9317271 -0.33073234]\n", + " [ 0.11689878 0.93916511 -0.32296064]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:fp_optics: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:cartToSphere: vec: [[ 0.52535769 -0.07975304 0.84713562]\n", + " [ 0.50489965 -0.09561617 0.8578659 ]\n", + " [ 0.48362779 -0.11171712 0.86811488]\n", + " [ 0.46160474 -0.12798753 0.87780422]\n", + " [ 0.43889875 -0.14435971 0.88686423]\n", + " [ 0.41558472 -0.16076611 0.89523382]\n", + " [ 0.39174457 -0.17713922 0.90286095]\n", + " [ 0.3674668 -0.19341215 0.90970319]\n", + " [ 0.52535769 -0.07975304 0.84713562]\n", + " [ 0.51205525 -0.05596101 0.85712764]\n", + " [ 0.49829447 -0.03225367 0.86640771]\n", + " [ 0.48413316 -0.00872593 0.87495082]\n", + " [ 0.46963305 0.01452626 0.8827422 ]\n", + " [ 0.45485933 0.03740548 0.8897774 ]\n", + " [ 0.43988046 0.05981187 0.89606234]\n", + " [ 0.42476825 0.08164175 0.90161331]\n", + " [ 0.3674668 -0.19341215 0.90970319]\n", + " [ 0.35381679 -0.16872072 0.91997119]\n", + " [ 0.33989121 -0.14395783 0.92938157]\n", + " [ 0.32574941 -0.11922326 0.93790892]\n", + " [ 0.31145362 -0.09461658 0.94553918]\n", + " [ 0.29706837 -0.07023649 0.95226951]\n", + " [ 0.2826603 -0.04618067 0.95810777]\n", + " [ 0.26829853 -0.02254671 0.96307193]\n", + " [ 0.42476825 0.08164175 0.90161331]\n", + " [ 0.40404295 0.06780833 0.91222329]\n", + " [ 0.38265509 0.05350884 0.92234044]\n", + " [ 0.36067243 0.03881618 0.93188449]\n", + " [ 0.3381667 0.02379913 0.94078525]\n", + " [ 0.31521423 0.00852369 0.94898226]\n", + " [ 0.29189622 -0.00694592 0.95642478]\n", + " [ 0.26829853 -0.02254671 0.96307193]\n", + " [ 0.51649698 -0.08655402 0.85190333]\n", + " [ 0.49086819 -0.10616371 0.8647414 ]\n", + " [ 0.46407881 -0.12606271 0.87677765]\n", + " [ 0.43625203 -0.14612621 0.88788023]\n", + " [ 0.40752583 -0.1662298 0.89793672]\n", + " [ 0.37805376 -0.18624947 0.90685528]\n", + " [ 0.51954898 -0.06942867 0.85161524]\n", + " [ 0.5029298 -0.04031322 0.86338662]\n", + " [ 0.48567926 -0.01141907 0.8740625 ]\n", + " [ 0.46790941 0.01707756 0.88361142]\n", + " [ 0.44974025 0.04499721 0.8920252 ]\n", + " [ 0.43129917 0.07215456 0.89931905]\n", + " [ 0.36163655 -0.18260636 0.91426141]\n", + " [ 0.34471435 -0.15228409 0.92627295]\n", + " [ 0.3274367 -0.12195371 0.93696985]\n", + " [ 0.309917 -0.09179867 0.94632154]\n", + " [ 0.29227402 -0.06200064 0.9543227 ]\n", + " [ 0.27463144 -0.03273933 0.96099204]\n", + " [ 0.41586938 0.07559838 0.90627675]\n", + " [ 0.39001428 0.05831969 0.9189601 ]\n", + " [ 0.36323079 0.04041406 0.93082227]\n", + " [ 0.33564926 0.02200976 0.94172987]\n", + " [ 0.30741024 0.0032284 0.95157161]\n", + " [ 0.27866517 -0.01581233 0.96025814]\n", + " [ 0.52524454 -0.0797254 0.84720838]\n", + " [ 0.52524454 -0.0797254 0.84720838]\n", + " [ 0.26842855 -0.02257319 0.96303508]\n", + " [ 0.26842855 -0.02257319 0.96303508]\n", + " [ 0.51078028 -0.07621577 0.85632626]\n", + " [ 0.49410999 -0.04697236 0.86812955]\n", + " [ 0.47682173 -0.01793531 0.87881702]\n", + " [ 0.45902804 0.01071913 0.88835711]\n", + " [ 0.44084929 0.03881212 0.89674162]\n", + " [ 0.42241302 0.06615967 0.9039857 ]\n", + " [ 0.48509881 -0.09572073 0.86920463]\n", + " [ 0.46830586 -0.06615186 0.88108657]\n", + " [ 0.45093533 -0.03674814 0.89179981]\n", + " [ 0.43310095 -0.0076866 0.90131264]\n", + " [ 0.41492395 0.02085489 0.90961706]\n", + " [ 0.39653211 0.04869545 0.91672844]\n", + " [ 0.45826764 -0.11553436 0.88127328]\n", + " [ 0.44138573 -0.0856953 0.89321607]\n", + " [ 0.42397061 -0.05598116 0.90394415]\n", + " [ 0.40613683 -0.02657038 0.91342591]\n", + " [ 0.38800597 0.00235909 0.92165384]\n", + " [ 0.36970562 0.0306282 0.92864399]\n", + " [ 0.43041029 -0.13553239 0.89240011]\n", + " [ 0.41347427 -0.10547978 0.90438545]\n", + " [ 0.39605357 -0.07551219 0.91511719]\n", + " [ 0.37826305 -0.04580977 0.92456397]\n", + " [ 0.36022405 -0.0165513 0.93271898]\n", + " [ 0.34206349 0.01208485 0.93959913]\n", + " [ 0.40166506 -0.15559101 0.9024725 ]\n", + " [ 0.38471056 -0.12538318 0.91448173]\n", + " [ 0.36732394 -0.09522061 0.92520601]\n", + " [ 0.34961978 -0.06528508 0.93461429]\n", + " [ 0.33171864 -0.03575658 0.94270049]\n", + " [ 0.31374627 -0.00681372 0.94948241]\n", + " [ 0.37218572 -0.17558668 0.91139844]\n", + " [ 0.35524875 -0.14528353 0.9234127 ]\n", + " [ 0.33793578 -0.11498611 0.93411862]\n", + " [ 0.3203606 -0.08487752 0.9434855 ]\n", + " [ 0.30264251 -0.05513901 0.95150786]\n", + " [ 0.28490576 -0.02594996 0.95820421]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:fp_optics: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:cartToSphere: vec: [[-0.66087557 0.72330099 0.20019779]\n", + " [-0.66071458 0.7301738 0.17407602]\n", + " [-0.65994263 0.73673226 0.14731363]\n", + " [-0.65854202 0.74291306 0.1200108 ]\n", + " [-0.65650241 0.74865911 0.09227198]\n", + " [-0.65381968 0.75392153 0.06420402]\n", + " [-0.65049548 0.75866047 0.03591536]\n", + " [-0.64653717 0.76284547 0.00751569]\n", + " [-0.66087557 0.72330099 0.20019779]\n", + " [-0.64051245 0.7394246 0.20735254]\n", + " [-0.61922604 0.7553847 0.21436665]\n", + " [-0.59707613 0.77108087 0.22121118]\n", + " [-0.5741313 0.78641804 0.22785941]\n", + " [-0.55046712 0.80130899 0.23428583]\n", + " [-0.52616542 0.81567531 0.24046566]\n", + " [-0.50131411 0.82944777 0.24637484]\n", + " [-0.64653717 0.76284547 0.00751569]\n", + " [-0.62540671 0.78018841 0.01313365]\n", + " [-0.60333811 0.7972626 0.01885399]\n", + " [-0.58039374 0.81396274 0.02465298]\n", + " [-0.5566403 0.83019328 0.03050746]\n", + " [-0.53215075 0.84586703 0.03639434]\n", + " [-0.50700645 0.86090418 0.04229021]\n", + " [-0.48129811 0.87523235 0.04817125]\n", + " [-0.50131411 0.82944777 0.24637484]\n", + " [-0.49981556 0.83781423 0.21966277]\n", + " [-0.49787734 0.84567138 0.19224481]\n", + " [-0.49548609 0.85295048 0.16422243]\n", + " [-0.49263323 0.8595922 0.13569726]\n", + " [-0.48931525 0.86554607 0.10677352]\n", + " [-0.48553418 0.87077034 0.07756015]\n", + " [-0.48129811 0.87523235 0.04817125]\n", + " [-0.66081078 0.72638774 0.18891789]\n", + " [-0.66020464 0.73460901 0.15645908]\n", + " [-0.65866242 0.7422945 0.12313687]\n", + " [-0.65616212 0.74933637 0.08914197]\n", + " [-0.65269609 0.75564469 0.05467096]\n", + " [-0.64826974 0.76115003 0.01992404]\n", + " [-0.65211429 0.73036892 0.20324419]\n", + " [-0.62652862 0.75003408 0.2119216 ]\n", + " [-0.59961439 0.76935334 0.22035887]\n", + " [-0.57149432 0.78814928 0.22850594]\n", + " [-0.54230747 0.8062614 0.2363158 ]\n", + " [-0.51220703 0.82354918 0.24374312]\n", + " [-0.63745806 0.77041952 0.01004858]\n", + " [-0.61092214 0.791508 0.01700682]\n", + " [-0.58303859 0.81208709 0.02409502]\n", + " [-0.55392838 0.83197687 0.03127028]\n", + " [-0.52372612 0.85101673 0.03849007]\n", + " [-0.49258543 0.86906276 0.04571109]\n", + " [-0.50079989 0.83310718 0.23480183]\n", + " [-0.49867036 0.84302733 0.20157578]\n", + " [-0.49586648 0.85211319 0.16739038]\n", + " [-0.49237045 0.86025168 0.13243258]\n", + " [-0.48817586 0.86734986 0.09689451]\n", + " [-0.48328896 0.87333461 0.06097893]\n", + " [-0.66080803 0.72338026 0.20013433]\n", + " [-0.66080803 0.72338026 0.20013433]\n", + " [-0.48140212 0.8751707 0.04825186]\n", + " [-0.48140212 0.8751707 0.04825186]\n", + " [-0.65208614 0.7334321 0.19199223]\n", + " [-0.62640713 0.75324688 0.20058225]\n", + " [-0.59939286 0.77270093 0.2089533 ]\n", + " [-0.57116724 0.79161509 0.21705653]\n", + " [-0.54186965 0.8098283 0.22484528]\n", + " [-0.51165341 0.82719983 0.23227403]\n", + " [-0.65139874 0.74179715 0.15942604]\n", + " [-0.62547784 0.76199513 0.16775246]\n", + " [-0.59820813 0.78179156 0.17592324]\n", + " [-0.56971508 0.80100476 0.18389156]\n", + " [-0.54013781 0.81947327 0.19161084]\n", + " [-0.50962965 0.83705606 0.19903459]\n", + " [-0.64978617 0.74960312 0.12598843]\n", + " [-0.62366004 0.77011933 0.13403124]\n", + " [-0.59617789 0.7901977 0.14198423]\n", + " [-0.56746469 0.80965632 0.14980145]\n", + " [-0.53765829 0.82833415 0.15743602]\n", + " [-0.50691183 0.84608983 0.16484054]\n", + " [-0.64722757 0.75674048 0.09187126]\n", + " [-0.62093462 0.77750735 0.09961188]\n", + " [-0.5932833 0.79780663 0.10732893]\n", + " [-0.56439707 0.81745717 0.11497704]\n", + " [-0.53441221 0.83629839 0.12250959]\n", + " [-0.50348177 0.85418822 0.12987913]\n", + " [-0.64371561 0.76311872 0.05727152]\n", + " [-0.61729411 0.78406823 0.0646915 ]\n", + " [-0.58951607 0.80452761 0.07215357]\n", + " [-0.56050337 0.82431651 0.07961322]\n", + " [-0.53039107 0.84327454 0.08702506]\n", + " [-0.49933237 0.86125874 0.09434279]\n", + " [-0.6392556 0.76866831 0.02238972]\n", + " [-0.612743 0.78973252 0.02947132]\n", + " [-0.58487972 0.81029115 0.03666 ]\n", + " [-0.55578679 0.83016429 0.04391244]\n", + " [-0.52559876 0.84919138 0.05118528]\n", + " [-0.49446916 0.86722873 0.05843436]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:fp_optics: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:cartToSphere: vec: [[-0.25926319 0.49867029 -0.82710975]\n", + " [-0.28463513 0.49010324 -0.82388206]\n", + " [-0.310295 0.48085921 -0.82005575]\n", + " [-0.33612173 0.47097168 -0.81560276]\n", + " [-0.36199928 0.46047501 -0.81050557]\n", + " [-0.38781564 0.44940542 -0.80475698]\n", + " [-0.41346231 0.43780186 -0.79835985]\n", + " [-0.43883429 0.42570665 -0.79132694]\n", + " [-0.25926319 0.49867029 -0.82710975]\n", + " [-0.25115024 0.47766775 -0.84187712]\n", + " [-0.2428195 0.45579251 -0.85632463]\n", + " [-0.2342806 0.43312681 -0.87035267]\n", + " [-0.22554857 0.40975371 -0.88387201]\n", + " [-0.21664365 0.38575849 -0.89680316]\n", + " [-0.20759081 0.36122961 -0.90907603]\n", + " [-0.19841934 0.3362592 -0.92062996]\n", + " [-0.43883429 0.42570665 -0.79132694]\n", + " [-0.4322188 0.40327719 -0.80656954]\n", + " [-0.42512363 0.38006248 -0.82147575]\n", + " [-0.41755751 0.35613758 -0.83594961]\n", + " [-0.40953372 0.33158175 -0.84990333]\n", + " [-0.4010706 0.30647978 -0.86325693]\n", + " [-0.39219177 0.28092234 -0.8759385 ]\n", + " [-0.38292617 0.25500567 -0.88788493]\n", + " [-0.19841934 0.3362592 -0.92062996]\n", + " [-0.22433745 0.32591207 -0.91839754]\n", + " [-0.25059058 0.31508985 -0.9153812 ]\n", + " [-0.27706426 0.30382181 -0.91155236]\n", + " [-0.30364587 0.29214058 -0.90689198]\n", + " [-0.33022367 0.28008284 -0.90139111]\n", + " [-0.35668682 0.26768951 -0.8950513 ]\n", + " [-0.38292617 0.25500567 -0.88788493]\n", + " [-0.27025502 0.49494971 -0.82582505]\n", + " [-0.30156108 0.48398925 -0.82147144]\n", + " [-0.33317873 0.47204527 -0.81618944]\n", + " [-0.36489231 0.45918063 -0.80994244]\n", + " [-0.39649557 0.44546207 -0.80271714]\n", + " [-0.4277902 0.43096271 -0.79452293]\n", + " [-0.25583954 0.48959711 -0.83357111]\n", + " [-0.24574971 0.46325786 -0.85146887]\n", + " [-0.23534151 0.43568949 -0.86878596]\n", + " [-0.22464039 0.40704453 -0.88535386]\n", + " [-0.21368351 0.37748005 -0.90102618]\n", + " [-0.2025187 0.34716044 -0.91567779]\n", + " [-0.43592275 0.41607089 -0.79803281]\n", + " [-0.42749046 0.38804438 -0.81650074]\n", + " [-0.41834605 0.35891253 -0.83436706]\n", + " [-0.40851204 0.32881942 -0.8514668 ]\n", + " [-0.39802221 0.29792116 -0.86765275]\n", + " [-0.3869223 0.26638703 -0.88279618]\n", + " [-0.2097027 0.33189437 -0.9197124 ]\n", + " [-0.24170812 0.31889074 -0.91645288]\n", + " [-0.27410265 0.30520211 -0.91198652]\n", + " [-0.30667831 0.29088711 -0.9062743 ]\n", + " [-0.33922937 0.27601325 -0.89929979]\n", + " [-0.37155244 0.26065764 -0.89107036]\n", + " [-0.25932196 0.49857194 -0.82715062]\n", + " [-0.25932196 0.49857194 -0.82715062]\n", + " [-0.38286925 0.25513861 -0.88787129]\n", + " [-0.38286925 0.25513861 -0.88787129]\n", + " [-0.26681338 0.48591955 -0.83228169]\n", + " [-0.25681964 0.45942917 -0.85027555]\n", + " [-0.24647913 0.43171679 -0.86768004]\n", + " [-0.23581783 0.4029336 -0.88432713]\n", + " [-0.22487341 0.37323594 -0.90007049]\n", + " [-0.2136941 0.34278812 -0.91478475]\n", + " [-0.29823512 0.47481521 -0.82801349]\n", + " [-0.28851625 0.44793284 -0.84623551]\n", + " [-0.27837343 0.4198481 -0.86384941]\n", + " [-0.2678336 0.39070881 -0.88068824]\n", + " [-0.25693523 0.36066985 -0.89660557]\n", + " [-0.2457273 0.32989578 -0.91147511]\n", + " [-0.32996954 0.46274539 -0.82279208]\n", + " [-0.32053215 0.4355217 -0.84117774]\n", + " [-0.3105981 0.40711507 -0.85894478]\n", + " [-0.30019443 0.37767093 -0.87592692]\n", + " [-0.2893595 0.34734355 -0.89197732]\n", + " [-0.27814236 0.31629837 -0.90696867]\n", + " [-0.36180182 0.44977175 -0.81658118]\n", + " [-0.3526545 0.42225449 -0.83506643]\n", + " [-0.34294192 0.39357468 -0.85293013]\n", + " [-0.33269031 0.36387635 -0.87000641]\n", + " [-0.32193718 0.3333139 -0.88614801]\n", + " [-0.31073105 0.30205398 -0.90122673]\n", + " [-0.39352588 0.43596024 -0.80936769]\n", + " [-0.38467746 0.40819556 -0.82788866]\n", + " [-0.37519893 0.37929072 -0.84579212]\n", + " [-0.36511512 0.34938929 -0.86291255]\n", + " [-0.35446213 0.31864625 -0.87910248]\n", + " [-0.34328748 0.28722951 -0.89423314]\n", + " [-0.42494307 0.42138361 -0.80116118]\n", + " [-0.41640116 0.39341727 -0.81965415]\n", + " [-0.40716789 0.36433595 -0.83754022]\n", + " [-0.39726639 0.33428349 -0.85465429]\n", + " [-0.38673108 0.3034157 -0.870849 ]\n", + " [-0.37560817 0.27190155 -0.88599551]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:fp_optics: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:cartToSphere: vec: [[ 0.32288312 -0.91351601 0.24745703]\n", + " [ 0.31095337 -0.9108097 0.27153949]\n", + " [ 0.29866912 -0.90730425 0.29596579]\n", + " [ 0.28605962 -0.90297937 0.32062151]\n", + " [ 0.27315783 -0.89782458 0.34539228]\n", + " [ 0.26000096 -0.89183867 0.37016658]\n", + " [ 0.24663073 -0.88502941 0.39483696]\n", + " [ 0.2330934 -0.87741358 0.41930047]\n", + " [ 0.32288312 -0.91351601 0.24745703]\n", + " [ 0.3464435 -0.90277563 0.25489815]\n", + " [ 0.37019405 -0.89111204 0.26244179]\n", + " [ 0.39402587 -0.87853481 0.2700374 ]\n", + " [ 0.41783134 -0.86506393 0.27763532]\n", + " [ 0.44150577 -0.85072894 0.28518927]\n", + " [ 0.46494809 -0.83556858 0.29265751]\n", + " [ 0.48806116 -0.8196307 0.30000303]\n", + " [ 0.2330934 -0.87741358 0.41930047]\n", + " [ 0.25680116 -0.86614378 0.42877514]\n", + " [ 0.28078989 -0.85394535 0.43810316]\n", + " [ 0.30494977 -0.84082933 0.44722664]\n", + " [ 0.32917585 -0.82681456 0.45609313]\n", + " [ 0.3533661 -0.81192873 0.46465485]\n", + " [ 0.37741962 -0.79620985 0.47286817]\n", + " [ 0.40123615 -0.77970717 0.48069354]\n", + " [ 0.48806116 -0.8196307 0.30000303]\n", + " [ 0.47729371 -0.81617471 0.32565251]\n", + " [ 0.46593161 -0.81198614 0.35154835]\n", + " [ 0.45399953 -0.80704675 0.37757113]\n", + " [ 0.44152647 -0.80134625 0.40360695]\n", + " [ 0.42854669 -0.79488283 0.42954514]\n", + " [ 0.41510081 -0.78766398 0.45527658]\n", + " [ 0.40123615 -0.77970717 0.48069354]\n", + " [ 0.31780736 -0.91239732 0.25793336]\n", + " [ 0.30294481 -0.90854586 0.28769579]\n", + " [ 0.28757829 -0.90347276 0.31786114]\n", + " [ 0.2717669 -0.8971547 0.34821859]\n", + " [ 0.25557915 -0.88958944 0.37856298]\n", + " [ 0.23909377 -0.880795 0.40869834]\n", + " [ 0.33308528 -0.90893878 0.2507678 ]\n", + " [ 0.36210313 -0.89515357 0.25996424]\n", + " [ 0.39129848 -0.87998989 0.26926435]\n", + " [ 0.4204725 -0.86348029 0.27857613]\n", + " [ 0.44943257 -0.84567911 0.28781453]\n", + " [ 0.47799422 -0.82666146 0.29690463]\n", + " [ 0.24343496 -0.87264198 0.42336201]\n", + " [ 0.27269478 -0.85820448 0.43488231]\n", + " [ 0.30226684 -0.84238223 0.44612435]\n", + " [ 0.33195595 -0.82520664 0.45698934]\n", + " [ 0.36157406 -0.80672887 0.46738927]\n", + " [ 0.39093562 -0.78702357 0.47724547]\n", + " [ 0.48336238 -0.81826843 0.3111231 ]\n", + " [ 0.4697622 -0.81354337 0.34273992]\n", + " [ 0.45529308 -0.80769885 0.3746075 ]\n", + " [ 0.44000653 -0.80071262 0.40651391]\n", + " [ 0.4239658 -0.79258145 0.43825523]\n", + " [ 0.40724847 -0.78332326 0.46963109]\n", + " [ 0.32292309 -0.91347293 0.24756389]\n", + " [ 0.32292309 -0.91347293 0.24756389]\n", + " [ 0.40120329 -0.77979332 0.48058122]\n", + " [ 0.40120329 -0.77979332 0.48058122]\n", + " [ 0.32799645 -0.90784964 0.26120369]\n", + " [ 0.3570959 -0.89402034 0.27057373]\n", + " [ 0.38637933 -0.87880506 0.28002263]\n", + " [ 0.41564704 -0.86223699 0.28945625]\n", + " [ 0.44470611 -0.8443706 0.29878884]\n", + " [ 0.47337177 -0.825281 0.30794551]\n", + " [ 0.31319403 -0.90395877 0.29114952]\n", + " [ 0.34247857 -0.89000611 0.30099428]\n", + " [ 0.37196605 -0.87465218 0.31084534]\n", + " [ 0.40145575 -0.857931 0.32060518]\n", + " [ 0.43075465 -0.83989669 0.33018779]\n", + " [ 0.45967718 -0.82062408 0.3395188 ]\n", + " [ 0.29786279 -0.89884554 0.32148787]\n", + " [ 0.32726202 -0.88477361 0.33177586]\n", + " [ 0.35688503 -0.8692931 0.34199793]\n", + " [ 0.38653172 -0.85243763 0.35205585]\n", + " [ 0.41600966 -0.83426029 0.36186424]\n", + " [ 0.44513259 -0.81483541 0.37134921]\n", + " [ 0.28206098 -0.89248726 0.35200582]\n", + " [ 0.31150296 -0.87830106 0.36270257]\n", + " [ 0.34119209 -0.86270592 0.3732646 ]\n", + " [ 0.37092973 -0.8457345 0.38359392]\n", + " [ 0.40052461 -0.82743871 0.3936054 ]\n", + " [ 0.42979001 -0.80789253 0.40322476]\n", + " [ 0.26585685 -0.88488181 0.38249748]\n", + " [ 0.29526951 -0.87058603 0.39356815]\n", + " [ 0.32495524 -0.85488735 0.40443999]\n", + " [ 0.35471719 -0.83781754 0.41501504]\n", + " [ 0.38436547 -0.8194277 0.42520751]\n", + " [ 0.41371341 -0.79979182 0.43494168]\n", + " [ 0.24932931 -0.87604717 0.41276659]\n", + " [ 0.2786414 -0.86164593 0.42417597]\n", + " [ 0.30825505 -0.84585411 0.43532707]\n", + " [ 0.33797477 -0.82870305 0.4461214 ]\n", + " [ 0.36761208 -0.8102438 0.45647163]\n", + " [ 0.39698104 -0.79055073 0.46629989]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:fp_optics: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:cartToSphere: vec: [[-0.04113647 -0.60319502 -0.79653221]\n", + " [-0.03542599 -0.58209241 -0.81235055]\n", + " [-0.02972354 -0.56007989 -0.8279052 ]\n", + " [-0.02403632 -0.53723161 -0.8430922 ]\n", + " [-0.01837477 -0.51362523 -0.8DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "5781786]\n", + " [-0.01275243 -0.4893426 -0.87199839]\n", + " [-0.00718553 -0.4644704 -0.88555949]\n", + " [-0.00169251 -0.43910045 -0.89843638]\n", + " [-0.04113647 -0.60319502 -0.79653221]\n", + " [-0.06786159 -0.59992217 -0.79717514]\n", + " [-0.09509407 -0.59600564 -0.79732954]\n", + " [-0.12271359 -0.59144948 -0.79694974]\n", + " [-0.15060279 -0.58626094 -0.79600057]\n", + " [-0.17864645 -0.58045083 -0.79445723]\n", + " [-0.20673086 -0.57403413 -0.79230497]\n", + " [-0.23474377 -0.56703056 -0.78953892]\n", + " [-0.00169251 -0.43910045 -0.89843638]\n", + " [-0.02912117 -0.43425867 -0.90031737]\n", + " [-0.05708695 -0.42896602 -0.90151497]\n", + " [-0.08547655 -0.42322448 -0.90198381]\n", + " [-0.11417752 -0.41704024 -0.90168782]\n", + " [-0.14307639 -0.41042428 -0.90060038]\n", + " [-0.17205787 -0.40339276 -0.89870483]\n", + " [-0.20100522 -0.39596719 -0.89599491]\n", + " [-0.23474377 -0.56703056 -0.78953892]\n", + " [-0.23066305 -0.54486981 -0.80617086]\n", + " [-0.22632038 -0.52182647 -0.82248175]\n", + " [-0.22172244 -0.49796852 -0.83837135]\n", + " [-0.21687844 -0.4733693 -0.85374777]\n", + " [-0.21180039 -0.44810921 -0.86852676]\n", + " [-0.20650332 -0.4222765 -0.88263182]\n", + " [-0.20100522 -0.39596719 -0.89599491]\n", + " [-0.03873676 -0.59410026 -0.80345774]\n", + " [-0.03174354 -0.56761478 -0.82268208]\n", + " [-0.02476898 -0.53983588 -0.8414058 ]\n", + " [-0.01783095 -0.51090504 -0.85945221]\n", + " [-0.01095433 -0.48097302 -0.87666696]\n", + " [-0.00416995 -0.45020153 -0.89291724]\n", + " [-0.05269933 -0.60177644 -0.79692402]\n", + " [-0.08581126 -0.5973311 -0.79739074]\n", + " [-0.11956539 -0.59192271 -0.79707692]\n", + " [-0.15374445 -0.58556328 -0.79591349]\n", + " [-0.18813625 -0.57827279 -0.79385473]\n", + " [-0.22253207 -0.57008075 -0.79087763]\n", + " [-0.0135968 -0.43713267 -0.89929425]\n", + " [-0.04758919 -0.43089621 -0.90114578]\n", + " [-0.08227553 -0.42398389 -0.90192483]\n", + " [-0.11744858 -0.41640535 -0.9015611 ]\n", + " [-0.15289933 -0.40818081 -0.90000568]\n", + " [-0.18841489 -0.39934225 -0.89723219]\n", + " [-0.23290118 -0.55750613 -0.7968337 ]\n", + " [-0.22772202 -0.52974428 -0.8170151 ]\n", + " [-0.22215597 -0.50072375 -0.83661368]\n", + " [-0.21621889 -0.47057724 -0.85545686]\n", + " [-0.20993296 -0.43945285 -0.87338957]\n", + " [-0.20332708 -0.40751632 -0.89027442]\n", + " [-0.04120732 -0.60311439 -0.7965896 ]\n", + " [-0.04120732 -0.60311439 -0.7965896 ]\n", + " [-0.20092554 -0.39608389 -0.8959612 ]\n", + " [-0.20092554 -0.39608389 -0.8959612 ]\n", + " [-0.05027312 -0.59271938 -0.80383851]\n", + " [-0.08351099 -0.5881633 -0.80441895]\n", + " [-0.11739207 -0.58265988 -0.80419312]\n", + " [-0.15169989 -0.57622044 -0.80309224]\n", + " [-0.1862226 -0.56886431 -0.80107087]\n", + " [-0.22075128 -0.56062057 -0.79810617]\n", + " [-0.04338675 -0.56611262 -0.82318533]\n", + " [-0.0769292 -0.56124486 -0.82406681]\n", + " [-0.11111986 -0.55547566 -0.82407473]\n", + " [-0.14574459 -0.54881447 -0.82314105]\n", + " [-0.18059239 -0.54127901 -0.82122069]\n", + " [-0.21545345 -0.53289747 -0.81829096]\n", + " [-0.03649142 -0.53821232 -0.84201893]\n", + " [-0.070262 -0.53303379 -0.84317153]\n", + " [-0.10468863 -0.52700164 -0.8433917 ]\n", + " [-0.13955944 -0.52012393 -0.84261157]\n", + " [-0.17466404 -0.51241752 -0.8407858 ]\n", + " [-0.2097915 -0.50391038 -0.83789131]\n", + " [-0.02960546 -0.50915914 -0.86016306]\n", + " [-0.06352884 -0.50366826 -0.86155811]\n", + " [-0.09811832 -0.49737366 -0.86196998]\n", + " [-0.13316398 -0.49028286 -0.86133041]\n", + " [-0.16845586 -0.48241278 -0.85959324]\n", + " [-0.20378198 -0.47379194 -0.85673456]\n", + " [-0.02275429 -0.47910331 -0.87746354]\n", + " [-0.05675635 -0.4732972 -0.87907251]\n", + " [-0.09143593 -0.46673974 -0.87965532]\n", + " [-0.1265846 -0.45943883 -0.87914293]\n", + " [-0.16199283 -0.45141237 -0.877488 ]\n", + " [-0.19744784 -0.44269005 -0.87466558]\n", + " [-0.01596925 -0.44820654 -0.89378738]\n", + " [-0.04997693 -0.4420826 -0.89558097]\n", + " [-0.08467422 -0.43526255 -0.89631288]\n", + " [-0.11985367 -0.42775548 -0.89591314]\n", + " [-0.15530613 -0.41958092 -0.89433319]\n", + " [-0.19081863 -0.41077021 -0.89154702]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:fp_optics: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:cartToSphere:DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + " vec: [[-5.16207502e-01 1.45584096e-01 8.43999458e-01]\n", + " [-4.97122165e-01 1.32214956e-01 8.57548109e-01]\n", + " [-4.77340489e-01 1.18331375e-01 8.70714502e-01]\n", + " [-4.56918838e-01 1.04000662e-01 8.83407628e-01]\n", + " [-4.35918966e-01 8.92883360e-02 8.95545782e-01]\n", + " [-4.14408260e-01 7.42582697e-02 9.07056505e-01]\n", + " [-3.92459870e-01 5.89731322e-02 9.17876582e-01]\n", + " [-3.70152609e-01 4.34947917e-02 9.27952180e-01]\n", + " [-5.16207502e-01 1.45584096e-01 8.43999458e-01]\n", + " [-5.31104901e-01 1.23942704e-01 8.38191977e-01]\n", + " [-5.45825096e-01 1.01652418e-01 8.31710136e-01]\n", + " [-5.60291228e-01 7.88131974e-02 8.24537579e-01]\n", + " [-5.74431112e-01 5.55233369e-02 8.16667654e-01]\n", + " [-5.88177106e-01 3.18796888e-02 8.08103568e-01]\n", + " [-6.01466184e-01 7.97815543e-03 7.98858422e-01]\n", + " [-6.14240224e-01 -1.60859579e-02 7.88955125e-01]\n", + " [-3.70152609e-01 4.34947917e-02 9.27952180e-01]\n", + " [-3.84369184e-01 2.00156565e-02 9.22962461e-01]\n", + " [-3.98566012e-01 -3.96351118e-03 9.17131084e-01]\n", + " [-4.12668950e-01 -2.83468618e-02 9.10439890e-01]\n", + " [-4.26608124e-01 -5.30391629e-02 9.02880034e-01]\n", + " [-4.40317131e-01 -7.79441888e-02 8.94452641e-01]\n", + " [-4.53732802e-01 -1.02963879e-01 8.85169466e-01]\n", + " [-4.66795526e-01 -1.27998476e-01 8.75053328e-01]\n", + " [-6.14240224e-01 -1.60859579e-02 7.88955125e-01]\n", + " [-5.95443931e-01 -3.15298489e-02 8.02777923e-01]\n", + " [-5.75794020e-01 -4.72624897e-02 8.16227605e-01]\n", + " [-5.55342671e-01 -6.32190424e-02 8.29215213e-01]\n", + " [-5.34147888e-01 -7.93354823e-02 8.41660214e-01]\n", + " [-5.12274893e-01 -9.55475750e-02 8.53489950e-01]\n", + " [-4.89796977e-01 -1.11790393e-01 8.64639711e-01]\n", + " [-4.66795526e-01 -1.27998476e-01 8.75053328e-01]\n", + " [-5.08026369e-01 1.39749368e-01 8.49929010e-01]\n", + " [-4.84160105e-01 1.23008072e-01 8.66289794e-01]\n", + " [-4.59303187e-01 1.05561281e-01 8.81984920e-01]\n", + " [-4.33567050e-01 8.75303719e-02 8.96860105e-01]\n", + " [-4.07075767e-01 6.90329830e-02 9.10781954e-01]\n", + " [-3.79966374e-01 5.01841404e-02 9.23637974e-01]\n", + " [-5.22655466e-01 1.36189273e-01 8.41595952e-01]\n", + " [-5.40804538e-01 1.09214922e-01 8.34027909e-01]\n", + " [-5.58610638e-01 8.13654958e-02 8.25429471e-01]\n", + " [-5.75938944e-01 5.28226548e-02 8.15784346e-01]\n", + " [-5.92664939e-01 2.37647574e-02 8.05098445e-01]\n", + " [-6.08674604e-01 -5.63189662e-03 7.93399967e-01]\n", + " [-3.76425663e-01 3.33789197e-02 9.25845326e-01]\n", + " [-3.93846605e-01 4.25497380e-03 9.19166333e-01]\n", + " [-4.11163555e-01 -2.55247448e-02 9.11204158e-01]\n", + " [-4.28246152e-01 -5.57847534e-02 9.01938631e-01]\n", + " [-4.44972121e-01 -8.63478080e-02 8.91371902e-01]\n", + " [-4.61226606e-01 -1.17032637e-01 8.79530204e-01]\n", + " [-6.06110171e-01 -2.26970253e-02 7.95056794e-01]\n", + " [-5.82492637e-01 -4.18266720e-02 8.11759113e-01]\n", + " [-5.57644300e-01 -6.13256137e-02 8.27811575e-01]\n", + " [-5.31669453e-01 -8.10757094e-02 8.43062466e-01]\n", + " [-5.04688271e-01 -1.00958654e-01 8.57378037e-01]\n", + " [-4.76839077e-01 -1.20854672e-01 8.70642661e-01]\n", + " [-5.16194638e-01 1.45466543e-01 8.44027595e-01]\n", + " [-5.16194638e-01 1.45466543e-01 8.44027595e-01]\n", + " [-4.66830972e-01 -1.27857664e-01 8.75055005e-01]\n", + " [-4.66830972e-01 -1.27857664e-01 8.75055005e-01]\n", + " [-5.14485405e-01 1.30400995e-01 8.47526016e-01]\n", + " [-5.32637056e-01 1.03235454e-01 8.40023933e-01]\n", + " [-5.50457167e-01 7.52099485e-02 8.31468804e-01]\n", + " [-5.67810933e-01 4.65056391e-02 8.21844249e-01]\n", + " [-5.84573621e-01 1.73004110e-02 8.11156198e-01]\n", + " [-6.00630799e-01 -1.22295368e-02 7.99432975e-01]\n", + " [-4.90601638e-01 1.13473411e-01 8.63964014e-01]\n", + " [-5.08727170e-01 8.58090621e-02 8.56640806e-01]\n", + " [-5.26556290e-01 5.73265467e-02 8.48205247e-01]\n", + " [-5.43954333e-01 2.82051025e-02 8.38640659e-01]\n", + " [-5.60796021e-01 -1.37869733e-03 8.27952850e-01]\n", + " [-5.76965775e-01 -3.12486218e-02 8.16170336e-01]\n", + " [-4.65708637e-01 9.58627546e-02 8.79730526e-01]\n", + " [-4.83757828e-01 6.77621967e-02 8.72574724e-01]\n", + " [-5.01549466e-01 3.88832591e-02 8.64254722e-01]\n", + " [-5.18949308e-01 9.40317426e-03 8.54753295e-01]\n", + " [-5.35831851e-01 -2.05023679e-02 8.44075755e-01]\n", + " [-5.52080652e-01 -5.06565201e-02 8.32250485e-01]\n", + " [-4.39917610e-01 7.76899782e-02 8.94671316e-01]\n", + " [-4.57839337e-01 4.92141730e-02 8.87671734e-01]\n", + " [-4.75545744e-01 1.99978303e-02 8.79463662e-01]\n", + " [-4.92903396e-01 -9.78330470e-03 8.70029039e-01]\n", + " [-5.09787100e-01 -3.99537582e-02 8.59372335e-01]\n", + " [-5.26080087e-01 -7.03355443e-02 8.47521476e-01]\n", + " [-4.13352612e-01 5.90722275e-02 9.08652898e-01]\n", + " [-4.31095560e-01 3.02808185e-02 9.01798032e-01]\n", + " [-4.48668510e-01 7.85331902e-04 8.93697908e-01]\n", + " [-4.65939212e-01 -2.92391648e-02 8.84333490e-01]\n", + " [-4.82783384e-01 -5.96167548e-02 8.73708216e-01]\n", + " [-4.99084620e-01 -9.01680222e-02 8.61849331e-01]\n", + " [-3.86150962e-01 4.01242912e-02 9.21562519e-01]\n", + " [-4.03664610e-01 1.10765631e-02 9.14839982e-01]\n", + " [-4.21056527e-01 -1.86394916e-02 9.06842859e-01]\n", + " [-4.38195856e-01 -4.88486325e-02 8.97551226e-01]\n", + " [-4.54959742e-01 -7.93740138e-02 8.86967530e-01]\n", + " [-4.71232823e-01 -1.10034804e-01 8.75118260e-01]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:fp_optics: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:cartToSphere: vec: [[ 0.28268617 0.43418762 -0.85531844]\n", + " [ 0.26175847 0.45104903 -0.853251 ]\n", + " [ 0.24010578 0.46782566 -0.85058119]\n", + " [ 0.21781887 0.48443587 -0.84727612]\n", + " [ 0.19498844 0.50080192 -0.84331307]\n", + " [ 0.17170532 0.51684989 -0.8386796 ]\n", + " [ 0.14806092 0.53250968 -0.83337351]\n", + " [ 0.12414758 0.54771536 -0.DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "82740272]\n", + " [ 0.28268617 0.43418762 DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "-0.85531844]\n", + " [ 0.26948653 0.415105DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "82 -0.86894428]\n", + " [ 0.25567234 0.395DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "39055 -0.88221197]\n", + " [ 0.24130438 0.37510017 -0.89502629]\n", + " [ 0.22644311 0.3542977 -0.90730186]\n", + " [ 0.21114886 0.33305106 -0.91896308]\n", + " [ 0.19548223 0.31143325 -0.9299441 ]\n", + " [ 0.17950461 0.28952219 -0.94018881]\n", + " [ 0.12414758 0.54771536 -0.82740272]\n", + " [ 0.10893893 0.5290882 -0.841545 ]\n", + " [ 0.09332746 0.50965629 -0.85530138]\n", + " [ 0.07737144 0.48947386 -0.86857872]\n", + " [ 0.06112967 0.46860004 -0.8812929 ]\n", + " [ 0.04466253 0.44710026 -0.89336813]\n", + " [ 0.02803266 0.42504719 -0.90473701]\n", + " [ 0.01130487 0.4025208 -0.91534103]\n", + " [ 0.17950461 0.28952219 -0.94018881]\n", + " [ 0.15678699 0.3058191 -0.93909132]\n", + " [ 0.13348493 0.32219068 -0.93721659]\n", + " [ 0.10968511 0.33855836 -0.93453058]\n", + " [ 0.08547525 0.35484692 -0.93100894]\n", + " [ 0.06094563 0.37098352 -0.92663739]\n", + " [ 0.0361899 0.38689751 -0.92141229]\n", + " [ 0.01130487 0.4025208 -0.91534103]\n", + " [ 0.273612 0.4414802 -0.85453596]\n", + " [ 0.24746249 0.46209918 -0.85160241]\n", + " [ 0.22031429 0.48250934 -0.84773012]\n", + " [ 0.19233442 0.50256598 -0.84287301]\n", + " [ 0.16369013 0.52213299 -0.83700817]\n", + " [ 0.1345501 0.5410DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "8304 -0.83013578]\n", + " [ 0.27693976 0.42600704 -0.86129111]\n", + " [ 0.26033986 0.40218718 -0.87776342]\n", + " [ 0.24287742 0.37747316 -0.89360202]\n", + " [ 0.22466391 0.35197904 -0.90864563]\n", + " [ 0.20581042 0.32582989 -0.92275509]\n", + " [ 0.18642884 0.29916216 -0.93581317]\n", + " [ 0.1176523 0.53964476 -0.8336315 ]\n", + " [ 0.09873514 0.51626696 -0.85071723]\n", + " [ 0.07927069 0.49173391 -0.8671297 ]\n", + " [ 0.05936689 0.46615236 -0.88271034]\n", + " [ 0.039135 0.43964289 -0.89731967]\n", + " [ 0.01869123 0.41234233 -0.91083722]\n", + " [ 0.1697324 0.29668895 -0.93976943]\n", + " [ 0.14148627 0.31672349 -0.93790611]\n", + " [ 0.11244829 0.33679159 -0.93484053]\n", + " [ 0.08277943 0.35675338 -0.93052383]\n", + " [ 0.05264598 0.37647477 -0.92492981]\n", + " [ 0.02222169 0.3958267 -0.91805633]\n", + " [ 0.28257192 0.43418122 -0.85535945]\n", + " [ 0.28257192 0.43418122 -0.85535945]\n", + " [ 0.01144737 0.40254569 -0.91532832]\n", + " [ 0.01144737 0.40254569 -0.91532832]\n", + " [ 0.26791235 0.43330813 -0.86050395]\n", + " [ 0.25113477 0.40948124 -0.87707266]\n", + " [ 0.23351469 0.38474075 -0.89299801]\n", + " [ 0.21516314 0.35920051 -0.90811883]\n", + " [ 0.19619069 0.33298557 -0.92229595]\n", + " [ 0.17670897 0.30623266 -0.93541194]\n", + " [ 0.24158062 0.45394117 -0.8576574 ]\n", + " [ 0.22432559 0.43011884 -0.87445744]\n", + " [ 0.20628469 0.40532995 -0.89059208]\n", + " [ 0.18756728 0.37968744 -0.90590064]\n", + " [ 0.16828252 0.35331617 -0.92024382]\n", + " [ 0.14854157 0.32635364 -0.93350346]\n", + " [ 0.21426345 0.4743775 -0.85384844]\n", + " [ 0.19656826 0.45059644 -0.87081787]\n", + " [ 0.178143 0.42579912 -0.88710776]\n", + " [ 0.1590954 0.40009722 -0.90255796]\n", + " [ 0.13953375 0.37361508 -0.91702895]\n", + " [ 0.11956946 0.34649073 -0.9304017 ]\n", + " [ 0.18612736 0.49447244 -0.84903098]\n", + " [ 0.16802744 0.47076954 -0.86610786]\n", + " [ 0.14925229 0.44600427 -0.88249869]\n", + " [ 0.1299087 0.42028678 -0.89804385]\n", + " [ 0.11010494 0.39374049 -0.9126036 ]\n", + " [ 0.08995334 0.3665036 -0.92605805]\n", + " [ 0.15733916 0.51408967 -0.84318219]\n", + " [ 0.13886867 DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "0.49050129 -0.86030458]\n", + " [ 0.11977727 0.46580831 -0.87674171]\n", + " [ 0.10017167 0.44011924 -0.8923344 ]\n", + " [ 0.08016101 0.41355636 -0.90694286]\n", + " [ 0.0598591 0.38625756 -0.92044662]\n", + " [ 0.12806745 0.53310143 -0.83630233]\n", + " [ 0.10926062 0.50966271 -0.85340848]\n", + " [ 0.08988721 0.48508122 -0.86983706]\n", + " [ 0.07005473 0.45946409 -0.88542932]\n", + " [ 0.04987381 0.43293233 -0.90004567]\n", + " [ 0.02946005 0.4056231 -0.91356554]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:fp_optics: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:cartToSphere: vec: [[ 0.23946603 0.23163807 -0.94286787]\n", + " [ 0.26549474 0.23193217 -0.93579913]\n", + " [ 0.2918606 0.23221317 -0.92784397]\n", + " [ 0.31843796 0.23245311 -0.91900099]\n", + " [ 0.34510666 0.23263045 -0.90927689]\n", + " [ 0.37175082 0.23272937 -0.89868702]\n", + " [ 0.39825827 0.23273912 -0.8872558 ]\n", + " [ 0.42452039 0.23265339 -0.87501705]\n", + " [ 0.23946603 0.23163807 -0.94286787]\n", + " [ 0.23483148 0.25756893 -0.93728994]\n", + " [ 0.23007232 0.2838843 -0.93084716]\n", + " [ 0.22518252 0.31045504 -0.92353154]\n", + " [ 0.22016185 0.33715832 -0.91534312]\n", + " [ 0.21501548 0.36387625 -0.90629047]\n", + " [ 0.2097534 0.390495 -0.89639119]\n", + " [ 0.20438992 0.41690461 -0.88567223]\n", + " [ 0.42452039 0.23265339 -0.87501705]\n", + " [ 0.42157234 0.25970792 -0.8688087 ]\n", + " [ 0.41822845 0.28710838 -0.8617736 ]\n", + " [ 0.41448288 0.31473324 -0.85390101]\n", + " [ 0.41033421 0.34246349 -0.84518909]\n", + " [ 0.40578579 0.37018146 -0.83564561]\n", + " [ 0.40084589 0.39777069 -0.82528847]\n", + " [ 0.39552781 0.42511669 -0.81414591]\n", + " [ 0.20438992 0.41690461 -0.88567223]\n", + " [ 0.23123446 0.41905703 -0.87802154]\n", + " [ 0.25842775 0.42091943 -0.86950671]\n", + " [ 0.28585118 0.4224655 -0.86012325]\n", + " [ 0.31338811 0.42367332 -0.84987576]\n", + " [ 0.34092278 0.4245255 -0.83877873]\n", + " [ 0.36834037 0.42500926 -0.826857 ]\n", + " [ 0.39552781 0.42511669 -0.81414591]\n", + " [ 0.25074963 0.23185417 -0.93987673]\n", + " [ 0.28289451 0.23221092 -0.93061742]\n", + " [ 0.31542028 0.23251924 -0.92002437]\n", + " [ 0.34810351 0.23273686 -0.90810655]\n", + " [ 0.38073083 0.2328346 -0.89489222]\n", + " [ 0.41309718 0.2327945 -0.88043026]\n", + " [ 0.23754871 0.24288964 -0.9405186 ]\n", + " [ 0.23178688 0.27494713 -0.93310177]\n", + " [ 0.22583102 0.30745304 -0.92437708]\n", + " [ 0.21967831 0.34017871 -0.91434123]\n", + " [ 0.2133382 0.372907 -0.90301007]\n", + " [ 0.20683092 0.40542997 -0.89041985]\n", + " [ 0.42319352 0.24439922 -0.87245416]\n", + " [ 0.41931424 0.27780543 -0.86429145]\n", + " [ 0.41483428 0.31161009 -0.85487523]\n", + " [ 0.40974921 0.3455932 -0.84419839]\n", + " [ 0.40406518 0.37953809 -0.8322753 ]\n", + " [ 0.39779952 0.41323114 -0.81914319]\n", + " [ 0.21606217 0.41778666 -0.88248028]\n", + " [ 0.24921265 0.42023229 -0.87252385]\n", + " [ 0.28276877 0.42221583 -0.86126396]\n", + " [ 0.31651507 0.42369514 -0.84870527]\n", + " [ 0.35023847 0.42463819 -0.8348745 ]\n", + " [ 0.38372824 0.42502348 -0.81982174]\n", + " [ 0.23953867 0.23172693 -0.94282759]\n", + " [ 0.23953867 0.23172693 -0.94282759]\n", + " [ 0.39545417 0.42502399 -0.81423007]\n", + " [ 0.39545417 0.42502399 -0.81423007]\n", + " [ 0.24880891 0.24307548 -0.9375545 ]\n", + " [ 0.24316622 0.275293 -0.9300989 ]\n", + " [ 0.23730001 0.30795133 -0.9213331 ]\n", + " [ 0.2312082 0.340823 -0.91125323]\n", + " [ 0.2249008 0.37369136 -0.89987466]\n", + " [ 0.21839844 0.40634831 -0.88723344]\n", + " [ 0.28109086 0.24357715 -0.92825541]\n", + " [ 0.27578149 0.27619121 -0.92068615]\n", + " [ 0.27016868 0.30922879 -0.91180395]\n", + " [ 0.26425177 0.34246536 -0.90160328]\n", + " [ 0.25804175 0.37568506 -0.89009842]\n", + " [ 0.25155992 0.40867886 -0.87732502]\n", + " [ 0.31375123 0.24400004 -0.91761874]\n", + " [ 0.30877195 0.27692872 -0.90992877]\n", + " [ 0.30341421 0.31026918 -0.90092888]\n", + " [ 0.29767778 0.34379898 -0.89061226]\n", + " [ 0.29157361 0.37730241 -0.87899244]\n", + " [ 0.28512289 0.41056908 -0.86610506]\n", + " [ 0.34656754 0.2443028 -0.90565285]\n", + " [ 0.34191749 0.27746622 -0.89783346]\n", + " [ 0.33681832 0.31103403 -0.88871326]\n", + " [ 0.33126919 0.34478513 -0.87828466]\n", + " [ 0.32528018 0.37850354 -0.86656095]\n", + " [ 0.31887174 0.41197745 -0.853578 ]\n", + " [ 0.37932673 0.24445695 -0.89238559]\n", + " [ 0.37500548 0.2777764 -0.88442702]\n", + " [ 0.3701683 0.31149612 -0.87518318]\n", + " [ 0.36481303 0.34539572 -0.86464631]\n", + " [ 0.35894827 0.37925886 -0.85282991]\n", + " [ 0.35259329 0.41287259 -0.83977032]\n", + " [ 0.41182345 0.24444491 -0.87786567]\n", + " [ 0.40782943 0.27784225 -0.86975792]\n", + " [ 0.40325622 0.31163815 -0.86038717]\n", + " [ 0.39810001 0.34561257 -0.84974604]\n", + " [ 0.39236759 0.37954888 -0.83784862]\n", + " [ 0.38607684 0.41323353 -0.82473191]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:fp_optics: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:cartToSphere: vec: [[-0.28854504 0.37482247 -0.88105044]\n", + " [-0.27087927 0.35858524 -0.89333143]\n", + " [-0.25252927 0.34184942 -0.90518945]\n", + " [-0.23357328 0.32466085 -0.91653634]\n", + " [-0.21408933 0.30707007 -0.92729377]\n", + " [-0.19415551 0.28913256 -0.93739319]\n", + " [-0.17385036 0.27090873 -0.94677585]\n", + " [-0.15325332 0.25246369 -0.95539286]\n", + " [-0.28854504 0.37482247 -0.88105044]\n", + " [-0.27144704 0.39529834 -0.87752819]\n", + " [-0.25366575 0.41583819 -0.87334545]\n", + " [-0.23527736 0.436344 -0.8684748 ]\n", + " [-0.21635782 0.4567217 -0.86289894]\n", + " [-0.19698304 0.47688097 -0.85661089]\n", + " [-0.17722936 0.49673521 -0.84961397]\n", + " [-0.15717398 0.51620169 -0.8419217 ]\n", + " [-0.15325332 0.25246369 -0.95539286]\n", + " [-0.13421687 0.2726782 -0.95269745]\n", + " [-0.11467922 0.29308622 -0.94918341]\n", + " [-0.09471327 0.31359355 -0.94482193]\n", + " [-0.07439258 0.33410937 -0.93959389]\n", + " [-0.05379274 0.35454493 -0.93349035]\n", + " [-0.03299213 0.37481304 -0.9265132 ]\n", + " [-0.01207186 0.39482843 -0.91867556]\n", + " [-0.15717398 0.51620169 -0.8419217 ]\n", + " [-0.13758522 0.50075026 -0.85458732]\n", + " [-0.11748923 0.48458997 -0.86681535]\n", + " [-0.09696078 0.46776304 -0.8785194 ]\n", + " [-0.07607554 0.45031671 -0.88962204]\n", + " [-0.05491134 0.4323043 -0.9000543 ]\n", + " [-0.03354894 0.4137859 -0.90975584]\n", + " [-0.01207186 0.39482843 -0.91867556]\n", + " [-0.28087406 0.36787693 -0.88644026]\n", + " [-0.25875136 0.34763593 -0.90121973]\n", + " [-0.23567878 0.32669088 -0.91527514]\n", + " [-0.21180007 0.30513287 -0.92845822]\n", + " [-0.18725903 0.28306404 -0.94064276]\n", + " [-0.16220062 0.26059756 -0.95172468]\n", + " [-0.28111943 0.3836812 -0.87963663]\n", + " [-0.25969348 0.40883244 -0.87488018]\n", + " [-0.23731703 0.433982 -0.86910313]\n", + " [-0.21413001 0.45895509 -0.86226942]\n", + " [-0.19027223 0.48358544 -0.8543662 ]\n", + " [-0.16588458 0.50771519 -0.8454038 ]\n", + " [-0.1450908 0.2613109 -0.95428783]\n", + " [-0.12141418 0.28622869 -0.95043765]\n", + " [-0.09705703 0.31134298 -0.94532824]\n", + " [-0.07215444 0.33648524 -0.93892035]\n", + " [-0.04684565 0.36149202 -0.93119762]\n", + " [-0.02127611 0.38620356 -0.92216817]\n", + " [-0.14876967 0.50948844 -0.84751939]\n", + " [-0.12441184 0.4900687 -0.86275974]\n", + " [-0.09936627 0.46962583 -0.87725591]\n", + " [-0.07377181 0.44824463 -0.89086165]\n", + " [-0.04777184 0.42602334 -0.90345003]\n", + " [-0.02151622 0.40307548 -0.91491377]\n", + " [-0.28842867 0.37483763 -0.88108209]\n", + " [-0.28842867 0.37483763 -0.88108209]\n", + " [-0.01221705 0.394826 -0.91867468]\n", + " [-0.01221705 0.394826 -0.91867468]\n", + " [-0.27349618 0.37673427 -0.88502606]\n", + " [-0.2518874 0.40193076 -0.88034334]\n", + " [-0.22934532 0.42713492 -0.87461791]\n", + " [-0.20600941 0.45217209 -0.86781364]\n", + " [-0.18201895 0.47687592 -0.8599177 ]\n", + " [-0.15751462 0.50108817 -0.85094053]\n", + " [-0.25119033 0.35651684 -0.89988841]\n", + " [-0.22909609 0.38179916 -0.8954018 ]\n", + " [-0.20611712 0.40711801 -0.88981496]\n", + " [-0.18239106 0.43229939 -0.88309158]\n", + " [-0.15805577 0.45717677 -0.8752187 ]\n", + " [-0.13325168 0.4815908 -0.86620684]\n", + " [-0.22795129 0.33557231 -0.91401829]\n", + " [-0.20541875 0.36087718 -0.90970918]\n", + " [-0.18204919 0.3862508 -0.90425019]\n", + " [-0.15797841 0.41152016 -0.89760458]\n", + " [-0.13334337 0.43651879 -0.8897589 ]\n", + " [-0.10828485 0.46108634 -0.88072344]\n", + " [-0.20392238 0.31399164 -0.92726744]\n", + " [-0.18099687 0.33925531 -0.92311753]\n", + " [-0.15728117 0.36462296 -0.91777597]\n", + " [-0.13290986 0.3899228 -0.91120534]\n", + " [-0.10801973 0.41498882 -0.9033914 ]\n", + " [-0.0827526 0.4396601 -0.8943439 ]\n", + " [-0.17924688 0.29187709 -0.93950962]\n", + " [-0.15597241 0.317036 -0.93550028]\n", + " [-0.13195419 0.34233669 -0.93026538]\n", + " [-0.1073264 0.36760878 -0.92376665]\n", + " [-0.08222653 0.39268712 -0.91598888]\n", + " [-0.05679782 0.41741084 -0.90694112]\n", + " [-0.15406962 0.26934219 -0.95064049]\n", + " [-0.13049005 0.29433373 -0.94675234]\n", + " [-0.10621335 0.31950712 -0.94161241]\n", + " [-0.08137423 0.34469337 -0.93518165]\n", + " [-0.05611143 0.36972855 -0.92744397]\n", + " [-0.03056981 0.39445251 -0.9184077 ]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:fp_optics: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:cartToSphere: vec: [[-0.49109898 0.83478982 0.24889306]\n", + " [-0.48950307 0.84321453 0.22220714]\n", + " [-0.48747997 0.85112377 0.19481173]\n", + " [-0.48501643 0.85844864 0.16680825]\n", + " [-0.48210413 0.86512959 0.13829823]\n", + " [-0.47873994 0.87111585 0.10938575]\n", + " [-0.47492632 0.87636535 0.0801796 ]\n", + " [-0.47067168 0.88084514 0.05079379]\n", + " [-0.49109898 0.83478982 0.24889306]\n", + " [-0.46563729 0.84762339 0.25439439]\n", + " [-0.43986099 0.85973549 0.25957118]\n", + " [-0.4138763 0.87108974 0.26440324]\n", + " [-0.38779394 0.88165978 0.26887152]\n", + " [-0.36172882 0.89142928 0.27295807]\n", + " [-0.3357993 0.90039183 0.27664668]\n", + " [-0.3101253 0.90855083 0.27992444]\n", + " [-0.47067168 0.88084514 0.05079379]\n", + " [-0.44434115 0.8940662 0.05662668]\n", + " [-0.41769705 0.90644193 0.06238752]\n", + " [-0.39085048 0.91793492 0.06805431]\n", + " [-0.36391372 0.92851973 0.07360651]\n", + " [-0.33700009 0.93818228 0.07902494]\n", + " [-0.31022563 0.9469187 0.08429132]\n", + " [-0.28371138 0.95473435 0.08938774]\n", + " [-0.3101253 0.90855083 0.27992444]\n", + " [-0.3068717 0.91711355 0.25442581]\n", + " [-0.3034521 0.9251214 0.22818243]\n", + " [-0.29985839 0.93250519 0.20129336]\n", + " [-0.29608556 0.93920458 0.1738623 ]\n", + " [-0.29213303 0.94516856 0.14599549]\n", + " [-0.28800519 0.95035571 0.11780083]\n", + " [-0.28371138 0.95473435 0.08938774]\n", + " [-0.49036787 0.83856682 0.23737109]\n", + " [-0.48812571 0.84855516 0.204175 ]\n", + " [-0.48522836 0.85769963 0.17001404]\n", + " [-0.48165844 0.86588677 0.13507499]\n", + " [-0.47741025 0.87302308 0.09954973]\n", + " [-0.47249079 0.87903487 0.06364075]\n", + " [-0.48003777 0.84050104 0.25124039]\n", + " [-0.44860624 0.85575017 0.25776751]\n", + " [-0.41680716 0.86987823 0.26378713]\n", + " [-0.38484253 0.88283253 0.26926371]\n", + " [-0.35292382 0.89458299 0.27416428]\n", + " [-0.32126974 0.9051219 0.27846022]\n", + " [-0.45925234 0.88669663 0.05344499]\n", + " [-0.42675689 0.90233724 0.06054799]\n", + " [-0.39390062 0.91666967 0.06752054]\n", + " [-0.3608898 0.92964211 0.07432424]\n", + " [-0.32793329 0.94122851 0.08092372]\n", + " [-0.29524668 0.95142558 0.08728551]\n", + " [-0.30881415 0.91232123 0.26889363]\n", + " [-0.30471697 0.92245201 0.23712838]\n", + " [-0.30036195 0.93167965 0.2043422 ]\n", + " [-0.29573846 0.93988934 0.1707243 ]\n", + " [-0.2908455 0.94698722 0.13647014]\n", + " [-0.28569322 0.95290105 0.10177902]\n", + " [-0.49100781 0.83486448 0.24882247]\n", + " [-0.49100781 0.83486448 0.24882247]\n", + " [-0.28381641 0.95469561 0.08946804]\n", + " [-0.28381641 0.95469561 0.08946804]\n", + " [-0.47935469 0.84422445 0.23980026]\n", + " [-0.44779822 0.85952109 0.2463742 ]\n", + " [-0.4158706 0.87367854 0.25246279]\n", + " [-0.38377417 0.88664401 0.25803061]\n", + " [-0.35172076 0.89838753 0.26304439]\n", + " [-0.31993027 0.90890165 0.26747413]\n", + " [-0.47700419 0.85426565 0.20663302]\n", + " [-0.44513502 0.86968079 0.21333106]\n", + " [-0.41288765 0.88390987 0.21960677]\n", + " [-0.38046522 0.89689995 0.22542557]\n", + " [-0.34807972 0.9086214 0.23075455]\n", + " [-0.31595231 0.91906735 0.23556176]\n", + " [-0.47401911 0.86345288 0.17249642]\n", + " [-0.44189856 0.87896236 0.17930653]\n", + " [-0.40939742 0.8932456 0.18575802]\n", + " [-0.37671981 0.90624964 0.19181704]\n", + " [-0.34407704 0.91794546 0.19745156]\n", + " [-0.31168954 0.92832693 0.20262956]\n", + " [-0.47038253 0.8716724 0.13757725]\n", + " [-0.43807313 0.88725143 0.14448818]\n", + " [-0.40538507 0.90157083 0.15110585]\n", + " [-0.37252353 0.91457785 0.15739621]\n", + " [-0.33969897 0.92624442 0.16332754]\n", + " [-0.3071301 0.93656536 0.1688681 ]\n", + " [-0.46608952 0.87883038 0.10206726]\n", + " [-0.43365583 0.89445336 0.10906794]\n", + " [-0.4008491 0.90879062 0.11584305]\n", + " [-0.36787535 0.9217898 0.12235726]\n", + " [-0.33494423 0.93342384 0.12857796]\n", + " [-0.3022727 0.9436886 0.13447318]\n", + " [-0.46114787 0.88485272 0.06616874]\n", + " [-0.42865657 0.90049341 0.07324732]\n", + " [-0.39580081 0.91483028 0.08017035]\n", + " [-0.36278693 0.92781139 0.08690028]\n", + " [-0.32982395 0.93941052 0.0934026 ]\n", + " [-0.29712765 0.94962423 0.09964432]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:fp_optics: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:cartToSphere: vec: [[ 0.09131317 -0.12876385 0.98746229]\n", + " [ 0.11385062 -0.11395375 0.98694102]\n", + " [ 0.13686279 -0.09887805 0.98564279]\n", + " [ 0.16023468 -0.08358364 0.98353374]\n", + " [ 0.18385724 -0.06812026 0.98058969]\n", + " [ 0.20762596 -0.05254065 0.97679626]\n", + " [ 0.23143987 -0.03690033 0.97214914]\n", + " [ 0.25520104 -0.02125722 0.96665431]\n", + " [ 0.09131317 -0.12876385 0.98746229]\n", + " [ 0.10344977 -0.15236156 0.98289577]\n", + " [ 0.11591113 -0.17628153 0.9774914 ]\n", + " [ 0.12862233 -0.2004198 0.97123025]\n", + " [ 0.14151467 -0.22467498 0.96410308]\n", + " [ 0.15452439 -0.24894739 0.95611056]\n", + " [ 0.16759168 -0.27313871 0.94726357]\n", + " [ 0.18066001 -0.2971521 0.93758338]\n", + " [ 0.25520104 -0.02125722 0.96665431]\n", + " [ 0.26945589 -0.04479531 0.96197032]\n", + " [ 0.28378944 -0.06877797 0.95641683]\n", + " [ 0.29813182 -0.09310719 0.94997288]\n", + " [ 0.31241599 -0.11768528 0.94262741]\n", + " [ 0.32657704 -0.1424137 0.93437989]\n", + " [ 0.34055226 -0.16719294 0.92524088]\n", + " [ 0.3542815 -0.19192305 0.9152323 ]\n", + " [ 0.18066001 -0.2971521 0.93758338]\n", + " [ 0.20502264 -0.28337895 0.93683621]\n", + " [ 0.22970932 -0.26910655 0.93531561]\n", + " [ 0.25461229 -0.25437896 0.93298656]\n", + " [ 0.27962562 -0.23924352 0.92982367]\n", + " [ 0.3046442 -0.2237515 0.92581163]\n", + " [ 0.32956374 -0.20795828 0.92094576]\n", + " [ 0.3542815 -0.19192305 0.9152323 ]\n", + " [ 0.10111502 -0.12242232 0.98731379]\n", + " [ 0.12907274 -0.104087 0.98615725]\n", + " [ 0.15762838 -0.08539884 0.98379893]\n", + " [ 0.18657881 -0.06644823 0.98019028]\n", + " [ 0.21573152 -0.04733222 0.97530486]\n", + " [ 0.24490189 -0.02815405 0.96913901]\n", + " [ 0.09663649 -0.13895615 0.98557221]\n", + " [ 0.11174095 -0.16810806 0.97941495]\n", + " [ 0.12725785 -0.19764047 0.97197926]\n", + " [ 0.14305817 -0.22736572 0.9632441 ]\n", + " [ 0.15902445 -0.25710025 0.95321072]\n", + " [ 0.17504796 -0.28666366 0.94190348]\n", + " [ 0.26132052 -0.03151255 0.96473755]\n", + " [ 0.27885235 -0.06067278 0.95841545]\n", + " [ 0.29643278 -0.09040317 0.95076542]\n", + " [ 0.31393723 -0.12052382 0.94176293]\n", + " [ 0.33124626 -0.15085332 0.9314071 ]\n", + " [ 0.34824543 -0.18120823 0.91972208]\n", + " [ 0.1911905 -0.29112904 0.9373847 ]\n", + " [ 0.22128054 -0.2739067 0.93595408]\n", + " [ 0.25175004 -0.25597811 0.93332584]\n", + " [ 0.28240332 -0.23742897 0.92944922]\n", + " [ 0.31304688 -0.21835373 0.92429611]\n", + " [ 0.34348932 -0.19885593 0.91786241]\n", + " [ 0.09143016 -0.12879374 0.98744757]\n", + " [ 0.09143016 -0.12879374 0.98744757]\n", + " [ 0.35415097 -0.19189386 0.91528894]\n", + " [ 0.35415097 -0.19189386 0.91528894]\n", + " [ 0.10639633 -0.1326047 0.98544194]\n", + " [ 0.12169404 -0.16181949 0.97928801]\n", + " [ 0.13737709 -0.19142476 0.97184572]\n", + " [ 0.15331786 -0.22123339 0.96309367]\n", + " [ 0.16939972 -0.25106188 0.95303288]\n", + " [ 0.18551421 -0.28072943 0.94168756]\n", + " [ 0.13455334 -0.11430969 0.98429096]\n", + " [ 0.15036439 -0.14365771 0.97813752]\n", + " [ 0.16648834 -0.17342631 0.97067242]\n", + " [ 0.18280075 -0.20342985 0.96187327]\n", + " [ 0.19918648 -0.23348489 0.95174028]\n", + " [ 0.21553717 -0.26340946 0.94029739]\n", + " [ 0.16329031 -0.09563785 0.98193161]\n", + " [ 0.17956812 -0.12505266 0.97576489]\n", + " [ 0.19609201 -0.15492042 0.96827041]\n", + " [ 0.21273935 -0.18505691 0.95942478]\n", + " [ 0.2293952 -0.21527875 0.94922753]\n", + " [ 0.24595039 -0.24540291 0.93770241]\n", + " [ 0.19240551 -0.07667975 0.97831505]\n", + " [ 0.20910696 -0.10609515 0.97212041]\n", + " [ 0.22599206 -0.13599751 0.96458917]\n", + " [ 0.24293864 -0.16620399 0.95569716]\n", + " [ 0.25983097 -0.19653144 0.94544342]\n", + " [ 0.27655846 -0.22679611 0.93385167]\n", + " [ 0.22170718 -0.0575328 0.97341456]\n", + " [ 0.23879038 -0.08688326 0.96717654]\n", + " [ 0.25599812 -0.11675571 0.95960047]\n", + " [ 0.27320763 -0.14696862 0.95066178]\n", + " [ 0.29030177 -0.1773394 0.9403593 ]\n", + " [ 0.30716824 -0.20768404 0.92871686]\n", + " [ 0.25101073 -0.03830073 0.96722628]\n", + " [ 0.26843323 -0.06752178 0.96092893]\n", + " [ 0.28592374 -0.09730037 0.95329967]\n", + " [ 0.30335823 -0.12745622 0.94431388]\n", + " [ 0.32061785 -0.15780755 0.93397054]\n", + " [ 0.33758869 -0.18817068 0.9222937 ]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:cartToSphere: vec: [[ 0.15743913 0.98142773 -0.10960172]\n", + " [ 0.15002766 0.97935735 -0.13546546]\n", + " [ 0.14249816 0.97647927 -0.16181009]\n", + " [ 0.13486133 0.97276722 -0.18851088]\n", + " [ 0.12713208 0.96820435 -0.21544782]\n", + " [ 0.11932943 0.96278344 -0.24250473]\n", + " [ 0.11147617 0.9565071 -0.26956862]\n", + " [ 0.1035984 0.94938807 -0.29652938]\n", + " [ 0.15743913 0.98142773 -0.10960172]\n", + " [ 0.18355462 0.97639487 -0.11384537]\n", + " [ 0.21006766 0.97050952 -0.11824908]\n", + " [ 0.23685707 0.96375605 -0.1227722 ]\n", + " [ 0.26380558 0.95612822 -0.12737912]\n", + " [ 0.29079899 0.94762951 -0.13203884]\n", + " [ 0.31772572 0.93827332 -0.13672433]\n", + " [ 0.34447666 0.92808324 -0.14141192]\n", + " [ 0.1035984 0.94938807 -0.29652938]\n", + " [ 0.13028408 0.94410756 -0.30279857]\n", + " [ 0.15741013 0.93795967 -0.30895584]\n", + " [ 0.1848621 0.93092671 -0.31496264]\n", + " [ 0.21252739 0.92300049 -0.32078372]\n", + " [ 0.24029348 0.91418306 -0.32638686]\n", + " [ 0.26804722 0.90448739 -0.33174274]\n", + " [ 0.29567525 0.89393787 -0.33682522]\n", + " [ 0.34447666 0.92808324 -0.14141192]\n", + " [ 0.33859345 0.92568817 -0.16868871]\n", + " [ 0.33232496 0.92249543 -0.19637286]\n", + " [ 0.32568084 0.91847731 -0.22434664]\n", + " [ 0.31867431 0.91361551 -0.25249431]\n", + " [ 0.31132271 0.90790168 -0.2807004 ]\n", + " [ 0.30364768 0.90133805 -0.30884917]\n", + " [ 0.29567525 0.89393787 -0.33682522]\n", + " [ 0.15431155 0.98060648 -0.1208258 ]\n", + " [ 0.14514834 0.97752962 -0.1528653 ]\n", + " [ 0.13581782 0.97321237 -0.18550258]\n", + " [ 0.12634568 0.9676198 -0.21851476]\n", + " [ 0.11676689 0.96073862 -0.25168791]\n", + " [ 0.10712482 0.95257786 -0.28481519]\n", + " [ 0.16874397 0.97933106 -0.11151748]\n", + " [ 0.20103498 0.9725919 -0.11683291]\n", + " [ 0.23380229 0.96455563 -0.1223476 ]\n", + " [ 0.2668284 0.95520687 -0.1279939 ]\n", + " [ 0.29990305 0.94455203 -0.13371468]\n", + " [ 0.33282182 0.93262002 -0.13946158]\n", + " [ 0.11519888 0.94721675 -0.29918163]\n", + " [ 0.14821589 0.9401646 -0.30679402]\n", + " [ 0.18178026 0.93179099 -0.31419975]\n", + " [ 0.21568405 0.92207685 -0.32133265]\n", + " [ 0.24972004 0.91102602 -0.32813334]\n", + " [ 0.28367976 0.89866715 -0.33454918]\n", + " [ 0.34186799 0.92717128 -0.15323083]\n", + " [ 0.33439649 0.92370377 -0.18695006]\n", + " [ 0.32635567 0.91900953 -0.22116388]\n", + " [ 0.31776838 0.91305092 -0.25565851]\n", + " [ 0.30866655 0.90581265 -0.2902213 ]\n", + " [ 0.29909187 0.8973034 -0.32463927]\n", + " [ 0.15750248 0.9814062 -0.10970339]\n", + " [ 0.15750248 0.9814062 -0.10970339]\n", + " [ 0.29560885 0.89400207 -0.33671309]\n", + " [ 0.29560885 0.89400207 -0.33671309]\n", + " [ 0.16559418 0.97853053 -0.12270518]\n", + " [ 0.19800242 0.97178365 -0.12818569]\n", + " [ 0.23088854 0.96373144 -0.13383647]\n", + " [ 0.26403574 0.9543582 -0.13959063]\n", + " [ 0.29723405 0.94367006 -0.14539169]\n", + " [ 0.33027877 0.93169576 -0.15119175]\n", + " [ 0.15652847 0.97544753 -0.1549224 ]\n", + " [ 0.18921626 0.9686712 -0.16085184]\n", + " [ 0.22238893 0.96057107 -0.16687236]\n", + " [ 0.25583181 0.95113042 -0.17291907]\n", + " [ 0.28933559 0.94035445 -0.17893695]\n", + " [ 0.32269461 0.92827152 -0.18487881]\n", + " [ 0.14726739 0.9711183 -0.18772739]\n", + " [ 0.18015747 0.9643008 -0.19408051]\n", + " [ 0.21354295 0.9561481 -0.20045006]\n", + " [ 0.24721124 0.94664237 -0.20677239]\n", + " [ 0.28095352 0.93578796 -0.21299297]\n", + " [ 0.31456297 0.92361297 -0.21906443]\n", + " [ 0.13783701 0.96550761 -0.22089818]\n", + " [ 0.17085301 0.95863632 -0.22765248]\n", + " [ 0.20437781 0.95042544 -0.23435271]\n", + " [ 0.23820065 0.94085628 -0.24093548]\n", + " [ 0.27211312 0.92993256 -0.24734566]\n", + " [ 0.30590735 0.91768228 -0.25353485]\n", + " [ 0.12827278 0.95860189 -0.25422136]\n", + " [ 0.16133938 0.95166325 -0.26135542]\n", + " [ 0.19493024 0.94338779 -0.26836856]\n", + " [ 0.22883611 0.93375632 -0.2751966 ]\n", + " [ 0.262849 0.92277233 -0.28178294]\n", + " [ 0.29676042 0.91046393 -0.28807757]\n", + " [ 0.11861856 0.95040998 -0.28749002]\n", + " [ 0.15166148 0.94338992 -0.29498177]\n", + " [ 0.18524553 0.9350431 -0.30228877]\n", + " [ 0.21916254 0.92535031 -0.30934541]\n", + " [ 0.25320506 0.91431524 -0.31609308]\n", + " [ 0.2871645 0.90196636 -0.32247983]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:cartToSphere: vec: [[ 0.49740959 -0.81297462 0.30274735]\n", + " [ 0.48673739 -0.80945844 0.32842617]\n", + " [ 0.47545902 -0.80521785 0.35434861]\n", + " [ 0.46359899 -0.80023463 0.3803952 ]\n", + " [ 0.45118596 -0.79449862 0.40645192]\n", + " [ 0.43825376 -0.78800823 0.432408 ]\n", + " [ 0.42484253 -0.78077116 0.45815414]\n", + " [ 0.4109992 -0.77280506 0.48358246]\n", + " [ 0.49740959 -0.81297462 0.30274735]\n", + " [ 0.51990674 -0.7960446 0.30985478]\n", + " [ 0.54185903 -0.77848918 0.31677026]\n", + " [ 0.56318557 -0.76038613 0.32347326]\n", + " [ 0.58381086 -0.74182136 0.32994842]\n", + " [ 0.60366487 -0.72288861 0.33618563]\n", + " [ 0.62268374 -0.70368892 0.34217959]\n", + " [ 0.64081142 -0.68432912 0.34792869]\n", + " [ 0.4109992 -0.77280506 0.48358246]\n", + " [ 0.43432185 -0.75530659 0.4907917 ]\n", + " [ 0.45717765 -0.73718636 0.49753881]\n", + " [ 0.47948185 -0.71852578 0.5038034 ]\n", + " [ 0.50115795 -0.69941221 0.50957165]\n", + " [ 0.52213729 -0.67993861 0.51483603]\n", + " [ 0.54235732 -0.66020445 0.51959468]\n", + " [ 0.56175966 -0.64031734 0.52385091]\n", + " [ 0.64081142 -0.68432912 0.34792869]\n", + " [ 0.63167145 -0.67960786 0.37299374]\n", + " [ 0.62176817 -0.67437551 0.3982738 ]\n", + " [ 0.61112227 -0.6686179 0.42365041]\n", + " [ 0.59976188 -0.662328 0.44900702]\n", + " [ 0.58772097 -0.65550683 0.4742308 ]\n", + " [ 0.57503875 -0.64816393 0.49921334]\n", + " [ 0.56175966 -0.64031734 0.52385091]\n", + " [ 0.4929105 -0.81147215 0.31393023]\n", + " [ 0.47942085 -0.80667771 0.34558172]\n", + " [ 0.4650445 -0.8007763 0.3774797 ]\n", + " [ 0.44983245 -0.79374587 0.40941209]\n", + " [ 0.43384712 -0.78558357 0.44117472]\n", + " [ 0.41716522 -0.77630772 0.47256692]\n", + " [ 0.50724491 -0.80566355 0.30595563]\n", + " [ 0.53446234 -0.7844835 0.31454037]\n", + " [ 0.56078043 -0.76244042 0.32281561]\n", + " [ 0.58605792 -0.73968908 0.33075094]\n", + " [ 0.61016598 -0.71640202 0.33832769]\n", + " [ 0.63299014 -0.69276776 0.3455377 ]\n", + " [ 0.42126761 -0.76528549 0.48669468]\n", + " [ 0.44954888 -0.74341131 0.4952226 ]\n", + " [ 0.47704373 -0.72068335 0.50303558]\n", + " [ 0.50360787 -0.69726003 0.51010544]\n", + " [ 0.5291147 -0.6733126 0.51641822]\n", + " [ 0.55345087 -0.64902749 0.52197266]\n", + " [ 0.63686039 -0.68239897 0.35880424]\n", + " [ 0.62514204 -0.67627173 0.38968446]\n", + " [ 0.61229685 -0.66936184 0.42076988]\n", + " [ 0.59837366 -0.66165328 0.45184498]\n", + " [ 0.58343493 -0.65314802 0.48270213]\n", + " [ 0.56755502 -0.64386714 0.51314365]\n", + " [ 0.49745192 -0.81290706 0.30285921]\n", + " [ 0.49745192 -0.81290706 0.30285921]\n", + " [ 0.56174115 -0.64041314 0.52375365]\n", + " [ 0.56174115 -0.64041314 0.52375365]\n", + " [ 0.50274238 -0.80420008 0.3170368 ]\n", + " [ 0.53007261 -0.78293497 0.32563148]\n", + " [ 0.55650714 -0.76080102 0.33388862]\n", + " [ 0.58190459 -0.73795331 0.34177765]\n", + " [ 0.60613586 -0.7145647 0.34928014]\n", + " [ 0.62908527 -0.69082458 0.35638901]\n", + " [ 0.48935075 -0.79933401 0.34871333]\n", + " [ 0.5169674 -0.77785721 0.35732739]\n", + " [ 0.54370046 -0.75549976 0.36552692]\n", + " [ 0.56940862 -0.73241758 0.37328048]\n", + " [ 0.59396317 -0.70878384 0.3805696 ]\n", + " [ 0.61724707 -0.68478894 0.3873889 ]\n", + " [ 0.47505437 -0.79337478 0.38063079]\n", + " [ 0.50290844 -0.77172991 0.38925062]\n", + " [ 0.52989387 -0.74919948 0.39738222]\n", + " [ 0.5558694 -0.72594042 0.40499348]\n", + " [ 0.58070756 -0.70212574 0.41206574]\n", + " [ 0.60429204 -0.67794541 0.41859426]\n", + " [ 0.45990389 -0.78630066 0.41257689]\n", + " [ 0.48794595 -0.76453231 0.42118772]\n", + " [ 0.515138 -0.74188034 0.42923934]\n", + " [ 0.54133835 -0.71850267 0.43669979]\n", + " [ 0.5664207 -0.69457195 0.44355089]\n", + " [ 0.59027024 -0.67027706 0.44978852]\n", + " [ 0.44396108 -0.77810931 0.44434723]\n", + " [ 0.47214043 -0.75626366 0.45293342]\n", + " [ 0.49949312 -0.73354291 0.46089198]\n", + " [ 0.52587652 -0.71010564 0.46819213]\n", + " [ 0.55116479 -0.68612398 0.47481708]\n", + " [ 0.57524439 -0.66178557 0.48076373]\n", + " [ 0.42730195 -0.7688196 0.47574097]\n", + " [ 0.45556613 -0.74694432 0.48428678]\n", + " [ 0.4830324 -0.72420867 0.49213972]\n", + " [ 0.50955694 -0.70077123 0.49927088]\n", + " [ 0.53501345 -0.6768035 0.50566552]\n", + " [ 0.55928875 -0.65249215 0.51132191]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:fp_optics: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:fp_optics: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:fp_optics: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:cartToSphere: vec: [[-0.19497671 0.32616949 -0.92498516]\n", + " [-0.22086947 0.31573289 -0.92278352]\n", + " [-0.24710076 0.30483378 -0.91979214]\n", + " [-0.2735562 0.29350167 -0.91598241]\n", + " [-0.30012332 0.28176952 -0.91133525]\n", + " [-0.32669048 0.26967434 -0.90584164]\n", + " [-0.35314692 0.25725735 -0.89950315]\n", + " [-0.37938356 0.24456383 -0.89233214]\n", + " [-0.19497671 0.32616949 -0.92498516]\n", + " [-0.18569786 0.30074037 -0.93545259]\n", + " [-0.17638518 0.27510476 -0.94509557]\n", + " [-0.16707992 0.2493654 -0.95388741]\n", + " [-0.15782685 0.223627 -0.96181165]\n", + " [-0.1486748 0.19799611 -0.96886188]\n", + " [-0.13967752 0.17258142 -0.97504146]\n", + " [-0.13089477 0.14749463 -0.98036314]\n", + " [-0.37938356 0.24456383 -0.89233214]\n", + " [-0.36963894 0.21831372 -0.90316453]\n", + " [-0.35959644 0.19195155 -0.91315114]\n", + " [-0.34930039 0.165584 -0.92226416]\n", + " [-0.33879853 0.13931799 -0.930487 ]\n", + " [-0.32814154 0.11325986 -0.93781413]\n", + " [-0.31738294 0.08751526 -0.94425057]\n", + " [-0.30657932 0.06219008 -0.94981131]\n", + " [-0.13089477 0.14749463 -0.98036314]\n", + " [-0.15521274 0.13577391 -0.97850623]\n", + " [-0.17998401 0.12383923 -0.97584302]\n", + " [-0.20508743 0.11172229 -0.97234627]\n", + " [-0.23040779 0.09945842 -0.96799808]\n", + " [-0.25583426 0.08708653 -0.96279009]\n", + " [-0.28125951 0.07464877 -0.95672391]\n", + " [-0.30657932 0.06219008 -0.94981131]\n", + " [-0.20618521 0.3215909 -0.92415743]\n", + " [-0.23816133 0.30848433 -0.92093246]\n", + " [-0.27053204 0.2947122 -0.91649175]\n", + " [-0.30308959 0.28033372 -0.91079619]\n", + " [-0.33562848 0.26541705 -0.90382925]\n", + " [-0.36794544 0.25003976 -0.89559828]\n", + " [-0.19102545 0.31507895 -0.92964215]\n", + " [-0.179625 0.28376041 -0.94192085]\n", + " [-0.16821418 0.25223362 -0.95293347]\n", + " [-0.15687391 0.22069057 -0.96264544]\n", + " [-0.14569419 0.18932744 -0.97104497]\n", + " [-0.1347764 0.1583455 -0.97814213]\n", + " [-0.37508497 0.23318308 -0.89718276]\n", + " [-0.36293644 0.20092217 -0.90989418]\n", + " [-0.3503843 0.16859879 -0.9213063 ]\n", + " [-0.33751505 0.13640971 -0.93138391]\n", + " [-0.32442199 0.1045507 -0.94011676]\n", + " [-0.31120487 0.07321629 -0.94751829]\n", + " [-0.14146388 0.14249788 -0.97963377]\n", + " [-0.17159004 0.12798582 -0.97681958]\n", + " [-0.20227589 0.11318328 -0.97276616]\n", + " [-0.23330692 0.09815381 -0.96743667]\n", + " [-0.26447903 0.082969 -0.96081579]\n", + " [-0.29559589 0.06770763 -0.95291067]\n", + " [-0.19503291 0.32604813 -0.9250161 ]\n", + " [-0.19503291 0.32604813 -0.9250161 ]\n", + " [-0.30652998 0.06231843 -0.94981882]\n", + " [-0.30652998 0.06231843 -0.94981882]\n", + " [-0.20215993 0.31057914 -0.92880136]\n", + " [-0.19069125 0.27914416 -0.94112453]\n", + " [-0.17918598 0.24750772 -0.95217242]\n", + " [-0.16772482 0.21586222 -0.96191054]\n", + " [-0.15639706 0.18440382 -0.97032736]\n", + " [-0.14530293 0.15333323 -0.97743336]\n", + " [-0.23409067 0.29736567 -0.92562153]\n", + " [-0.22244416 0.26564092 -0.93805836]\n", + " [-0.21068865 0.23373571 -0.94919856]\n", + " [-0.19890485 0.20184385 -0.95900778]\n", + " [-0.18718094 0.17016163 -0.96747523]\n", + " [-0.17561462 0.13888825 -0.97461252]\n", + " [-0.26642363 0.28350734 -0.92121769]\n", + " [-0.25462196 0.25155325 -0.93374976]\n", + " [-0.24264086 0.21944228 -0.94497116]\n", + " [-0.23056186 0.18736966 -0.95484755]\n", + " [-0.21847324 0.1555319 -0.96336871]\n", + " [-0.2064715 0.12412692 -0.97054728]\n", + " [-0.29895124 0.26906398 -0.91555051]\n", + " [-0.28701745 0.23694272 -0.928159 ]\n", + " [-0.27483531 0.20469053 -0.93945055]\n", + " [-0.26248767 0.17250375 -0.94939069]\n", + " [-0.25006384 0.14057901 -0.95796953]\n", + " [-0.2376604 0.10911313 -0.96520043]\n", + " [-0.33146825 0.25410434 -0.90860321]\n", + " [-0.31942624 0.22187973 -0.92126883]\n", + " [-0.30706851 0.18955218 -0.93261938]\n", + " [-0.29447947 0.15731863 -0.94262012]\n", + " [-0.28175002 0.12537559 -0.95126121]\n", + " [-0.26897776 0.09391887 -0.95855632]\n", + " [-0.36377162 0.2387065 -0.90038293]\n", + " [-0.35164634 0.20644351 -0.91308594]\n", + " [-0.33913995 0.17410725 -0.92448405]\n", + " [-0.32633842 0.14189465 -0.93454221]\n", + " [-0.31333444 0.11000173 -0.94325031]\n", + " [-0.30022715 0.07862334 -0.95062192]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:fp_optics: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:cartToSphere: vec: [[-0.61928663 -0.02561893 0.78474693]\n", + " [-0.60053749 -0.04114703 0.79853719]\n", + " [-0.58092829 -0.05695242 0.81195981]\n", + " [-0.56051108 -0.07297008 0.82492587]\n", + " [-0.53934366 -0.08913571 0.83735491]\n", + " [-0.51749103 -0.10538475 0.84917436]\n", + " [-0.49502628 -0.12165196 0.86031958]\n", + " [-0.47203066 -0.13787163 0.87073444]\n", + " [-0.61928663 -0.02561893 0.78474693]\n", + " [-0.6312522 -0.04975044 0.77398034]\n", + " [-0.64258566 -0.07381903 0.7626496 ]\n", + " [-0.6532483 -0.09773298 0.75080951]\n", + " [-0.66320719 -0.12140266 0.73852394]\n", + " [-0.67243488 -0.14474075 0.725866 ]\n", + " [-0.68090891 -0.16766214 0.71291827]\n", + " [-0.68861162 -0.19008368 0.69977298]\n", + " [-0.47203066 -0.13787163 0.87073444]\n", + " [-0.48450797 -0.16275877 0.85951243]\n", + " [-0.49650864 -0.18742209 0.84755657]\n", + " [-0.50799151 -0.21176643 0.83492491]\n", + " [-0.51892224 -0.23570115 0.82168405]\n", + " [-0.52927324 -0.25914051 0.80790843]\n", + " [-0.53902312 -0.28200306 0.79368026]\n", + " [-0.54815589 -0.30421024 0.77909001]\n", + " [-0.68861162 -0.19008368 0.69977298]\n", + " [-0.67101608 -0.20650172 0.71210565]\n", + " [-0.65249595 -0.22299398 0.72423941]\n", + " [-0.63310688 -0.2394921 0.7360837 ]\n", + " [-0.61290952 -0.25592877 0.74755762]\n", + " [-0.59196976 -0.27223749 0.75858984]\n", + " [-0.57035931 -0.28835274 0.7691183 ]\n", + " [-0.54815589 -0.30421024 0.77909001]\n", + " [-0.61126294 -0.03243377 0.79076272]\n", + " [-0.58769969 -0.0516606 0.80742818]\n", + " [-0.56289567 -0.07123903 0.82345216]\n", + " [-0.53695484 -0.09105046 0.83868308]\n", + " [-0.50999696 -0.11097595 0.85298736]\n", + " [-0.48216 -0.1308952 0.86624949]\n", + " [-0.62451624 -0.03619503 0.78017267]\n", + " [-0.63876186 -0.06574077 0.76659079]\n", + " [-0.65201898 -0.09510053 0.75221482]\n", + " [-0.66422459 -0.12410841 0.7371586 ]\n", + " [-0.67532808 -0.15260364 0.72155673]\n", + " [-0.68529011 -0.18043036 0.70556527]\n", + " [-0.47760593 -0.14868847 0.86590087]\n", + " [-0.49258296 -0.17905187 0.85164691]\n", + " [-0.50680226 -0.20898419 0.83634746]\n", + " [-0.52019779 -0.23831664 0.8201216 ]\n", + " [-0.53271866 -0.26689128 0.80310639]\n", + " [-0.54432781 -0.29455946 0.78545653]\n", + " [-0.6810316 -0.19715265 0.705214 ]\n", + " [-0.65883699 -0.21733308 0.72020841]\n", + " [-0.63530838 -0.23755708 0.73481283]\n", + " [-0.61055531 -0.2577003 0.74887434]\n", + " [-0.58469918 -0.27764036 0.76226157]\n", + " [-0.55787448 -0.29725712 0.77486403]\n", + " [-0.61926598 -0.02575401 0.7847588 ]\n", + " [-0.61926598 -0.02575401 0.7847588 ]\n", + " [-0.54820257 -0.30408179 0.77910731]\n", + " [-0.54820257 -0.30408179 0.77910731]\n", + " [-0.61653491 -0.04291492 0.78615711]\n", + " [-0.63084881 -0.07256414 0.77250516]\n", + " [-0.64418409 -0.10201174 0.75803724]\n", + " [-0.65647799 -0.13109143 0.74286721]\n", + " [-0.66768033 -0.15964233 0.7271295 ]\n", + " [-0.67775221 -0.18750883 0.71097987]\n", + " [-0.5930268 -0.06224252 0.80277337]\n", + " [-0.60751774 -0.09214845 0.78894288]\n", + " [-0.62106058 -0.12180868 0.77423924]\n", + " [-0.63359299 -0.15105568 0.75877671]\n", + " [-0.64506597 -0.17972851 0.74268941]\n", + " [-0.65544204 -0.20767236 0.72613217]\n", + " [-0.56826837 -0.08190231 0.81875703]\n", + " [-0.58291238 -0.11201007 0.80477755]\n", + " [-0.59664311 -0.14182828 0.78987451]\n", + " [-0.60939818 -0.1711883 0.77416305]\n", + " [-0.62112932 -0.19992933 0.75777743]\n", + " [-0.63180031 -0.22789779 0.74087176]\n", + " [-0.54236334 -0.1017751 0.83395673]\n", + " [-0.55713631 -0.13202819 0.81985834]\n", + " [-0.57103589 -0.16194822 0.80479238]\n", + " [-0.58399909 -0.19136583 0.78887526]\n", + " [-0.59597767 -0.22012072 0.77224186]\n", + " [-0.60693607 -0.24806078 0.755046 ]\n", + " [-0.51543118 -0.12174136 0.8482392 ]\n", + " [-0.53030836 -0.15208158 0.8340529 ]\n", + " [-0.54435758 -0.18204603 0.81886144]\n", + " [-0.55751474 -0.2114652 0.80278252]\n", + " [-0.56973089 -0.24017961 0.78595195]\n", + " [-0.58097031 -0.26803874 0.76852373]\n", + " [-0.48760953 -0.14168018 0.86148922]\n", + " [-0.5025652 -0.1720481 0.84724711]\n", + " [-0.51674389 -0.20199902 0.83196884]\n", + " [-0.53008009 -0.23136384 0.81577318]\n", + " [-0.54252349 -0.25998422 0.79879689]\n", + " [-0.55403748 -0.28771106 0.78119448]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:fp_optics: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:cartToSphere: vec: [[-0.24595801 -0.56410973 -0.78821626]\n", + " [-0.24197144 -0.5419248 -0.80483994]\n", + " [-0.23770908 -0.51886073 -0.82114429]\n", + " [-0.23317736 -0.49498552 -0.83702906]\n", + " [-0.22838512 -0.47037259 -0.85240241]\n", + " [-0.22334401 -0.44510241 -0.86718008]\n", + " [-0.21806869 -0.41926332 -0.8812856 ]\n", + " [-0.21257691 -0.39295139 -0.89465092]\n", + " [-0.24595801 -0.56410973 -0.78821626]\n", + " [-0.27368388 -0.55632328 -0.78460279]\n", + " [-0.30107672 -0.54801814 -0.78040305]\n", + " [-0.3280324 -0.53923115 -0.77564458]\n", + " [-0.35445007 -0.53000353 -0.77036446]\n", + " [-0.38023201 -0.52038038 -0.76460963]\n", + " [-0.4052829 -0.51041038 -0.75843722]\n", + " [-0.42950905 -0.50014582 -0.75191498]\n", + " [-0.21257691 -0.39295139 -0.89465092]\n", + " [-0.24127956 -0.38501602 -0.89081246]\n", + " [-0.2696712 -0.37675902 -0.88618852]\n", + " [-0.29764269 -0.36821802 -0.8808089 ]\n", + " [-0.32509081 -0.35943414 -0.87471313]\n", + " [-0.35191867 -0.35045158 -0.86794985]\n", + " [-0.37803501 -0.34131757 -0.86057647]\n", + " [-0.40335259 -0.33208268 -0.85265924]\n", + " [-0.42950905 -0.50014582 -0.75191498]\n", + " [-0.42723994 -0.47807305 -0.76740615]\n", + " [-0.42446608 -0.45522468 -0.78268706]\n", + " [-0.42119535 -0.43167443 -0.79765385]\n", + " [-0.4174368 -0.40750009 -0.81221315]\n", + " [-0.41320109 -0.38278412 -0.82628154]\n", + " [-0.4085011 -0.35761409 -0.8397851 ]\n", + " [-0.40335259 -0.33208268 -0.85265924]\n", + " [-0.24434972 -0.5545235 -0.79548532]\n", + " [-0.23927856 -0.52673379 -0.81565758]\n", + " [-0.2337991 -0.49769071 -0.83524963]\n", + " [-0.22792663 -0.46752705 -0.85408893]\n", + " [-0.22168257 -0.43639107 -0.87202046]\n", + " [-0.21509523 -0.40444864 -0.88890682]\n", + " [-0.25806797 -0.56070636 -0.78677144]\n", + " [-0.29183918 -0.55080987 -0.78194525]\n", + " [-0.32500632 -0.5401705 -0.7762646 ]\n", + " [-0.35738237 -0.52886233 -0.76979379]\n", + " [-0.38878732 -0.51696837 -0.76261926]\n", + " [-0.41904643 -0.50457972 -0.75485058]\n", + " [-0.22514153 -0.38962399 -0.89303104]\n", + " [-0.26012427 -0.37967742 -0.88779526]\n", + " [-0.2945308 -0.36928455 -0.88140827]\n", + " [-0.32816856 -0.35851967 -0.87393881]\n", + " [-0.36085908 -0.34746414 -0.8654764 ]\n", + " [-0.39243616 -0.33620628 -0.85613036]\n", + " [-0.42850051 -0.49065734 -0.7587112 ]\n", + " [-0.42537809 -0.46307378 -0.77757068]\n", + " [-0.42150537 -0.43439797 -0.79600982]\n", + " [-0.41689851 -0.40477137 -0.81385243]\n", + " [-0.4115772 -0.37434586 -0.83094487]\n", + " [-0.40556634 -0.3432848 -0.84715494]\n", + " [-0.24604011 -0.56400973 -0.78826219]\n", + " [-0.24604011 -0.56400973 -0.78826219]\n", + " [-0.40328582 -0.33220219 -0.85264427]\n", + " [-0.40328582 -0.33220219 -0.85264427]\n", + " [-0.25642506 -0.55120851 -0.79398701]\n", + " [-0.29033101 -0.54128858 -0.78912266]\n", + " [-0.32363279 -0.53064016 -0.78337912]\n", + " [-0.35614328 -0.51933781 -0.77682058]\n", + " [-0.38768289 -0.50746499 -0.76953315]\n", + " [-0.41807777 -0.49511308 -0.76162591]\n", + " [-0.25147352 -0.52339008 -0.81413997]\n", + " [-0.2857197 -0.5134174 -0.80917664]\n", + " [-0.31936209 -0.50275939 -0.80326885]\n", + " [-0.35221286 -0.49149187 -0.79648091]\n", + " [-0.38409345 -0.47969934 -0.78889845]\n", + " [-0.41483252 -0.46747385 -0.78062935]\n", + " [-0.2460914 -0.49432467 -0.83371587]\n", + " [-0.28061579 -0.48432028 -0.82866679]\n", + " [-0.31453828 -0.4736779 -0.82261468]\n", + " [-0.34766989 -0.46247411 -0.81562451]\n", + " [-0.37983266 -0.45079392 -0.80778215]\n", + " [-0.41085749 -0.43872954 -0.79919492]\n", + " [-0.24029329 -0.4641453 -0.85254224]\n", + " [-0.27503236 -0.4541313 -0.84742077]\n", + " [-0.30917362 -0.44353127 -0.84124413]\n", + " [-0.34252681 -0.43242189 -0.83407835]\n", + " [-0.37491412 -0.42088791 -0.82601015]\n", + " [-0.40616813 -0.40902106 -0.817147 ]\n", + " [-0.23409989 -0.43300043 -0.87046417]\n", + " [-0.26898814 -0.42299961 -0.86528418]\n", + " [-0.30328555 -0.41246935 -0.85900344]\n", + " [-0.33680063 -0.40148572 -0.85168923]\n", + " [-0.36935541 -0.39013246 -0.84342945]\n", + " [-0.40078347 -0.37850013 -0.83433223]\n", + " [-0.22753881 -0.40105611 -0.8873444 ]\n", + " [-0.26250896 -0.39109139 -0.8821205 ]\n", + " [-0.29689847 -0.38065804 -0.87575725]\n", + " [-0.330515 -0.36983089 -0.86832307]\n", + " [-0.36318022 -0.35869201 -0.85990707]\n", + " [-0.39472799 -0.34733033 -0.85061828]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:fp_optics: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:cartToSphere: vec: [[ 0.20246668 0.42731551 -0.88114057]\n", + " [ 0.22929888 0.4295539 -0.8734446 ]\n", + " [ 0.25648142 0.43148912 -0.86488983]\n", + " [ 0.28389577 0.43309464 -0.85547193]\n", + " [ 0.31142537 0.43434828 -0.84519572]\n", + " [ 0.33895454 0.43523237 -0.8340759 ]\n", + " [ 0.36636849 0.4357339 -0.82213752]\n", + " [ 0.39355419 0.43584484 -0.80941607]\n", + " [ 0.20246668 0.42731551 -0.88114057]\n", + " [ 0.19699529 0.45325917 -0.86933824]\n", + " [ 0.19147165 0.47874765 -0.85681929]\n", + " [ 0.18592243 0.503687 -0.84364226]\n", + " [ 0.18037808 0.52798891 -0.82987436]\n", + " [ 0.17487342 0.55157068 -0.81559124]\n", + " [ 0.16944837 0.57435458 -0.80087706]\n", + " [ 0.16414897 0.59626698 -0.78582492]\n", + " [ 0.39355419 0.43584484 -0.80941607]\n", + " [ 0.38774295 0.46266637 -0.79724227]\n", + " [ 0.38160495 0.4889862 -0.78439159]\n", + " [ 0.37516937 0.51470651 -0.77092487]\n", + " [ 0.36846933 0.53973706 -0.756911 ]\n", + " [ 0.36154156 0.56399566 -0.74242615]\n", + " [ 0.35442622 0.58740791 -0.72755344]\n", + " [ 0.34716702 0.6099061 -0.71238305]\n", + " [ 0.16414897 0.59626698 -0.78582492]\n", + " [ 0.18959893 0.59981932 -0.77734743]\n", + " [ 0.21548117 0.60287419 -0.76818655]\n", + " [ 0.24167028 0.60540545 -0.7583401 ]\n", + " [ 0.26804674 0.60739052 -0.74781529]\n", + " [ 0.29449548 0.60881079 -0.73662869]\n", + " [ 0.32090497 0.60965228 -0.72480625]\n", + " [ 0.34716702 0.6099061 -0.71238305]\n", + " [ 0.21409615 0.42841659 -0.87785082]\n", + " [ 0.24723223 0.43096054 -0.86784171]\n", + " [ 0.28077651 0.43302211 -0.85653745]\n", + " [ 0.31451366 0.43455866 -0.84394308]\n", + " [ 0.34823071 0.43553766 -0.83008573]\n", + " [ 0.38171704 0.43593724 -0.81501584]\n", + " [ 0.20018005 0.43868526 -0.87606118]\n", + " [ 0.19343563 0.47018878 -0.86110694]\n", + " [ 0.18663863 0.50091455 -0.8451335 ]\n", + " [ 0.17984353 0.53069765 -0.82826101]\n", + " [ 0.17311449 0.55938576 -0.81062873]\n", + " [ 0.16652752 0.58683755 -0.79239528]\n", + " [ 0.39096991 0.44759455 -0.8042398 ]\n", + " [ 0.38362463 0.48014226 -0.78885712]\n", + " [ 0.37581727 0.51183841 -0.7725172 ]\n", + " [ 0.36760719 0.54251368 -0.75534354]\n", + " [ 0.35906197 0.57201673 -0.73747635]\n", + " [ 0.350257 0.60021345 -0.71907152]\n", + " [ 0.17520215 0.59780156 -0.78226434]\n", + " [ 0.20670201 0.60182364 -0.77141596]\n", + " [ 0.23872576 0.60507225 -0.75953774]\n", + " [ 0.27105101 0.60750433 -0.74663903]\n", + " [ 0.30346581 0.60908572 -0.73275036]\n", + " [ 0.33576624 0.60979274 -0.71792329]\n", + " [ 0.20253911 0.42741303 -0.88107662]\n", + " [ 0.20253911 0.42741303 -0.88107662]\n", + " [ 0.3471026 0.60983093 -0.71247879]\n", + " [ 0.3471026 0.60983093 -0.71247879]\n", + " [ 0.21172569 0.4397328 -0.87281573]\n", + " [ 0.20493052 0.47135579 -0.85780371]\n", + " [ 0.19805545 0.50219303 -0.84176968]\n", + " [ 0.19115471 0.53207939 -0.82483416]\n", + " [ 0.18429177 0.56086283 -0.80713656]\n", + " [ 0.17754156 0.58840287 -0.78883525]\n", + " [ 0.24483253 0.44238743 -0.86275744]\n", + " [ 0.23790327 0.47431093 -0.84760319]\n", + " [ 0.23081863 0.50542797 -0.83142367]\n", + " [ 0.22363264 0.53557256 -0.81434051]\n", + " [ 0.21640772 0.56459326 -0.79649366]\n", + " [ 0.20921654 0.59235174 -0.77804104]\n", + " [ 0.27835208 0.44453874 -0.85141378]\n", + " [ 0.27130271 0.4767057 -0.83614982]\n", + " [ 0.26402449 0.50804881 -0.8198643 ]\n", + " [ 0.25657209 0.53840104 -0.80267994]\n", + " [ 0.24900802 0.56761118 -0.78473725]\n", + " [ 0.241404 0.59554267 -0.76619386]\n", + " [ 0.31206915 0.44614348 -0.83879011]\n", + " [ 0.30491376 0.47849535 -0.82344994]\n", + " [ 0.29745765 0.51000984 -0.80709907]\n", + " [ 0.2897567 0.54051891 -0.78986097]\n", + " [ 0.28187442 0.56987138 -0.77187656]\n", + " [ 0.27388277 0.59793193 -0.75330315]\n", + " [ 0.34577093 0.4471685 -0.82491382]\n", + " [ 0.33852422 0.47964517 -0.80953188]\n", + " [ 0.33090668 0.51127527 -0.79315722]\n", + " [ 0.32297562 0.54188995 -0.77591367]\n", + " [ 0.31479616 0.57133797 -0.75794215]\n", + " [ 0.30644142 0.59948479 -0.73939952]\n", + " [ 0.37924693 0.44759143 -0.80983559]\n", + " [ 0.3719245 0.48013154 -0.7944469 ]\n", + " [ 0.3641633 0.51182055 -0.77809049]\n", + " [ 0.3560222 0.54248918 -0.76089006]\n", + " [ 0.34756811 0.5719861 -0.74298608]\n", + " [ 0.33887581 0.60017716 -0.72453472]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:fp_optics: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:cartToSphere: vec: [[ 0.1731898 0.28062467 -0.94406307]\n", + " [ 0.15041711 0.29684527 -0.94300455]\n", + " [ 0.1270674 0.31315175 -0.9411641 ]\n", + " [ 0.10322744 0.32946573 -0.93850755]\n", + " [ 0.07898513 0.34571221 -0.93501038]\n", + " [ 0.05443093 0.36181865 -0.93065812]\n", + " [ 0.0296587 0.37771466 -0.92544692]\n", + " [ 0.00476541 0.39333232 -0.91938402]\n", + " [ 0.1731898 0.28062467 -0.94406307]\n", + " [ 0.15688275 0.25844405 -0.95320222]\n", + " [ 0.14041542 0.23617504 -0.96151176]\n", + " [ 0.12385154 0.21390929 -0.96897039]\n", + " [ 0.10725468 0.19174188 -0.97556726]\n", + " [ 0.09068787 0.16977155 -0.98130185]\n", + " [ 0.07421349 0.1481012 -0.98618375]\n", + " [ 0.05789337 0.12683814 -0.99023252]\n", + " [ 0.00476541 0.39333232 -0.91938402]\n", + " [-0.01198784 0.37029051 -0.92883865]\n", + " [-0.02867933 0.34699182 -0.93742955]\n", + " [-0.04524341 0.32353283 -0.94513467]\n", + " [-0.06161638 0.3000118 -0.95194346]\n", + " [-0.07773679 0.27652814 -0.95785655]\n", + " [-0.09354515 0.25318278 -0.96288514]\n", + " [-0.10898296 0.23007937 -0.96705026]\n", + " [ 0.05789337 0.12683814 -0.99023252]\n", + " [ 0.03488603 0.14102281 -0.9893915 ]\n", + " [ 0.01144805 0.15552237 -0.98776603]\n", + " [-0.01232916 0.17025618 -0.9853227 ]\n", + " [-0.03635378 0.18514833 -0.98203793]\n", + " [-0.06053331 0.20012734 -0.97789814]\n", + " [-0.08477437 0.21512568 -0.97289992]\n", + " [-0.10898296 0.23007937 -0.96705026]\n", + " [ 0.1632817 0.28760526 -0.94372788]\n", + " [ 0.13497192 0.30755235 -0.94190983]\n", + " [ 0.10588173 0.32755027 -0.93888225]\n", + " [ 0.07617236 0.3474596 -0.93459595]\n", + " [ 0.0460105 0.36714677 -0.92902437]\n", + " [ 0.01557024 0.38648318 -0.92216502]\n", + " [ 0.16602664 0.27102534 -0.94814578]\n", + " [ 0.1459244 0.24376902 -0.95879233]\n", + " [ 0.1256449 0.2164705 -0.96817038]\n", + " [ 0.10530525 0.18930339 -0.97625562]\n", + " [ 0.08502147 0.16244956 -0.98304704]\n", + " [ 0.06490816 0.13610025 -0.98856646]\n", + " [-0.00245718 0.38327083 -0.92363274]\n", + " [-0.0229569 0.35484614 -0.93464282]\n", + " [-0.04329861 0.32613144 -0.94433231]\n", + " [-0.06336417 0.29730698 -0.95267704]\n", + " [-0.08304046 0.26855582 -0.9596781 ]\n", + " [-0.10221838 0.24006479 -0.96536019]\n", + " [ 0.04797625 0.13305113 -0.98994731]\n", + " [ 0.01947695 0.15065963 -0.98839381]\n", + " [-0.0095785 0.1686603 -0.9856277 ]\n", + " [-0.03902126 0.18691141 -0.98160148]\n", + " [-0.068681 0.20528132 -0.97629017]\n", + " [-0.09838554 0.2236472 -0.96969181]\n", + " [ 0.17305758 0.2806043 -0.94409337]\n", + " [ 0.17305758 0.2806043 -0.94409337]\n", + " [-0.10884824 0.23010685 -0.96705889]\n", + " [-0.10884824 0.23010685 -0.96705889]\n", + " [ 0.15622448 0.2779872 -0.94779588]\n", + " [ 0.13606096 0.25060783 -0.95847959]\n", + " [ 0.11574 0.22316842 -0.96788435]\n", + " [ 0.0953792 0.19584261 -0.9759859 ]\n", + " [ 0.07509482 0.16881189 -0.98278345]\n", + " [ 0.05500148 0.142267 -0.98829901]\n", + " [ 0.12784903 0.29783555 -0.94601724]\n", + " [ 0.10753692 0.27014311 -0.95679596]\n", + " [ 0.08712406 0.24234248 -0.96627094]\n", + " [ 0.06672928 0.21460777 -0.97441814]\n", + " [ 0.04646946 0.18711961 -0.9812374 ]\n", + " [ 0.02645907 0.16006701 -0.98675147]\n", + " [ 0.09870629 0.31775271 -0.94302189]\n", + " [ 0.07828364 0.2897999 -0.95388033]\n", + " [ 0.05781799 0.26169373 -0.9634176 ]\n", + " [ 0.03742906 0.23360938 -0.97160986]\n", + " [ 0.01723391 0.20572714 -0.97845763]\n", + " [-0.00265353 0.17823441 -0.98398448]\n", + " [ 0.06895792 0.33759973 -0.93876047]\n", + " [ 0.04846416 0.30944024 -0.94968309]\n", + " [ 0.02798643 0.28108447 -0.95927487]\n", + " [ 0.00764477 0.25270913 -0.9675121 ]\n", + " [-0.01244424 0.22449484 -0.97439582]\n", + " [-0.03216773 0.19662797 -0.97995034]\n", + " [ 0.03877103 0.35724364 -0.93320619]\n", + " [ 0.0182468 0.32893274 -0.94417705]\n", + " [-0.0022013 0.30038449 -0.95381566]\n", + " [-0.0224536 0.27177727 -0.9620982 ]\n", + " [-0.04239469 0.24329257 -0.96902601]\n", + " [-0.06191318 0.2151165 -0.97462385]\n", + " [ 0.00832007 0.37655639 -0.92635634]\n", + " [-0.01219333 0.34815112 -0.93735912]\n", + " [-0.03257005 0.31946922 -0.94703675]\n", + " [-0.05269146 0.29069054 -0.95536518]\n", + " [-0.07244378 0.26199772 -0.96234562]\n", + " [-0.09171733 0.2335773 -0.96800288]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:fp_optics: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:cartToSphere: vec: [[-0.14922088 0.52392812 -0.83858956]\n", + " [-0.12956261 0.50854696 -0.85123059]\n", + " [-0.10940658 0.49244724 -0.86343843]\n", + " [-0.08882771 0.47567103 -0.87512668]\n", + " [-0.06790186 0.45826527 -0.88621797]\n", + " [-0.04670714 0.44028297 -0.89664338]\n", + " [-0.02532457 0.42178398 -0.90634262]\n", + " [-0.00383783 0.40283497 -0.91526459]\n", + " [-0.14922088 0.52392812 -0.83858956]\n", + " [-0.12887593 0.54272065 -0.82996704]\n", + " [-0.10841793 0.56094543 -0.82072272]\n", + " [-0.08792618 0.57853614 -0.81090376]\n", + " [-0.06747965 0.59543171 -0.80056704]\n", + " [-0.04715662 0.61157594 -0.78977916]\n", + " [-0.02703471 0.62691713 -0.77861675]\n", + " [-0.00719104 0.6414077 -0.76716651]\n", + " [-0.00383783 0.40283497 -0.91526459]\n", + " [ 0.01711032 0.4223594 -0.90626694]\n", + " [ 0.03797838 0.44144083 -0.89648627]\n", + " [ 0.05868429 0.46000937 -0.88597265]\n", + " [ 0.07914845 0.47800205 -0.87478544]\n", + " [ 0.09929412 0.49536285 -0.86299266]\n", + " [ 0.11904694 0.51204202 -0.85067079]\n", + " [ 0.1383338 0.52799499 -0.83790515]\n", + " [-0.00719104 0.6414077 -0.76716651]\n", + " [ 0.01304867 0.62750937 -0.77849966]\n", + " [ 0.03360425 0.61276132 -0.78955324]\n", + " [ 0.05439666 0.59720843 -0.8002394 ]\n", + " [ 0.07534639 0.5808996 -0.81048046]\n", + " [ 0.09637322 0.56388812 -0.82020875]\n", + " [ 0.11739617 0.54623212 -0.82936639]\n", + " [ 0.1383338 0.52799499 -0.83790515]\n", + " [-0.14064625 0.51737817 -0.84411993]\n", + " [-0.11620817 0.49803933 -0.85933258]\n", + " [-0.09109697 0.47766238 -0.87380775]\n", + " [-0.06545186 0.45633167 -0.88739927]\n", + " [-0.03941672 0.43414488 -0.8999803 ]\n", + " [-0.01314183 0.41121501 -0.91144364]\n", + " [-0.14030282 0.53213602 -0.83495292]\n", + " [-0.11528136 0.55479573 -0.82396111]\n", + " [-0.09016905 0.57653623 -0.81208098]\n", + " [-0.06511141 0.59724289 -0.79941318]\n", + " [-0.04025259 0.61681224 -0.7860804 ]\n", + " [-0.01573524 0.63515079 -0.77222786]\n", + " [ 0.0052266 0.41146289 -0.91141153]\n", + " [ 0.03085732 0.4351031 -0.89985172]\n", + " [ 0.05628612 0.45800762 -0.88716452]\n", + " [ 0.08136539 0.4800576 -0.87345542]\n", + " [ 0.10595378 0.50114982 -0.85884961]\n", + " [ 0.12991499 0.52119494 -0.84349151]\n", + " [ 0.00152237 0.63540671 -0.77217614]\n", + " [ 0.02655065 0.61779495 -0.78589087]\n", + " [ 0.05197502 0.59895108 -0.79909711]\n", + " [ 0.07764931 0.57896347 -0.81164764]\n", + " [ 0.10342583 0.55793024 -0.82341785]\n", + " [ 0.12915529 0.53596061 -0.83430518]\n", + " [-0.1490853 0.52394195 -0.83860504]\n", + " [-0.1490853 0.52394195 -0.83860504]\n", + " [ 0.13819735 0.528005 -0.83792136]\n", + " [ 0.13819735 0.528005 -0.83792136]\n", + " [-0.13183038 0.5256054 -0.84045209]\n", + " [-0.10672572 0.54836437 -0.82940108]\n", + " [-0.08154753 0.57021177 -0.81744024]\n", + " [-0.0564418 0.59103309 -0.80467025]\n", + " [-0.03155284 0.61072528 -0.79121366]\n", + " [-0.00702323 0.62919536 -0.77721546]\n", + " [-0.10730862 0.50635043 -0.85562498]\n", + " [-0.08199949 0.52936347 -0.84442312]\n", + " [-0.05666643 0.55148858 -0.83225552]\n", + " [-0.03145672 0.5726113 -0.81922327]\n", + " [-0.00651509 0.59262972 -0.80544868]\n", + " [ 0.01801636 0.61145252 -0.791076 ]\n", + " [-0.08213015 0.48604228 -0.87006755]\n", + " [-0.05666373 0.50926927 -0.85873979]\n", + " [-0.031224 0.53163549 -0.84639752]\n", + " [-0.00595929 0.55302604 -0.83314266]\n", + " [ 0.01898561 0.57333975 -0.81909772]\n", + " [ 0.04346945 0.5924869 -0.80440642]\n", + " [-0.05643464 0.4647649 -0.88363381]\n", + " [-0.03085966 0.48816512 -0.87220554]\n", + " [-0.00536308 0.51073604 -0.85972085]\n", + " [ 0.01990621 0.53236187 -0.8462828 ]\n", + " [ 0.04480391 0.55294153 -0.83201458]\n", + " [ 0.06919002 0.57238636 -0.81705973]\n", + " [-0.03036651 0.4426155 -0.89619719]\n", + " [-0.00473321 0.46614706 -0.88469459]\n", + " [ 0.02076924 0.48888571 -0.87210057]\n", + " [ 0.04599203 0.5107144 -0.85851939]\n", + " [ 0.07079185 0.53153149 -0.84407511]\n", + " [ 0.09503026 0.55124856 -0.8289115 ]\n", + " [-0.00407652 0.4197066 -0.90765068]\n", + " [ 0.02156395 0.44332628 -0.89610089]\n", + " [ 0.04702094 0.46619446 -0.8834318 ]\n", + " [ 0.07214645 0.48819278 -0.86974864]\n", + " [ 0.09679857 0.50921847 -0.85517635]\n", + " [ 0.12084047 0.52918257 -0.83985915]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:fp_optics: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:cartToSphere: vec: [[ 0.18603741 -0.30648875 0.9335174 ]\n", + " [ 0.21044915 -0.29279014 0.93272991]\n", + " [ 0.23517758 -0.27858091 0.93117355]\n", + " [ 0.26011484 -0.26390494 0.92881346]\n", + " [ 0.28515487 -0.24880929 0.92562446]\n", + " [ 0.31019238 -0.233345 0.92159145]\n", + " [ 0.33512298 -0.21756725 0.91670992]\n", + " [ 0.35984384 -0.20153511 0.91098628]\n", + " [ 0.18603741 -0.30648875 0.9335174 ]\n", + " [ 0.19902213 -0.33009575 0.92272801]\n", + " [ 0.21188474 -0.35330181 0.91119849]\n", + " [ 0.22457982 -0.37601879 0.89898486]\n", + " [ 0.23706605 -0.39816177 0.88615286]\n", + " [ 0.24930661 -0.41964866 0.87277787]\n", + " [ 0.2612695 -0.4403993 0.85894511]\n", + " [ 0.27292766 -0.46033412 0.84475025]\n", + " [ 0.35984384 -0.20153511 0.91098628]\n", + " [ 0.37313836 -0.22602933 0.89982137]\n", + " [ 0.38605727 -0.25024029 0.88788489]\n", + " [ 0.39855444 -0.27407544 0.8752354 ]\n", + " [ 0.41058919 -0.2974469 0.86194075]\n", + " [ 0.42212636 -0.32027198 0.84807735]\n", + " [ 0.43313624 -0.34247303 0.8337297 ]\n", + " [ 0.44359396 -0.36397648 0.81899055]\n", + " [ 0.27292766 -0.46033412 0.84475025]\n", + " [ 0.29716412 -0.44843385 0.84297127]\n", + " [ 0.3216315 -0.43582986 0.84059831]\n", + " [ 0.34621618 -0.42257034 0.83759696]\n", + " [ 0.37080893 -0.40870384 0.83394359]\n", + " [ 0.395304 -0.39428047 0.82962501]\n", + " [ 0.41959879 -0.37935279 0.8246383 ]\n", + " [ 0.44359396 -0.36397648 0.81899055]\n", + " [ 0.19667978 -0.30066323 0.93323024]\n", + " [ 0.22682599 -0.28352622 0.93175257]\n", + " [ 0.25734035 -0.26566538 0.92908441]\n", + " [ 0.28802693 -0.24716599 0.92517537]\n", + " [ 0.31869194 -0.228122 0.91999772]\n", + " [ 0.34914377 -0.20863665 0.91354769]\n", + " [ 0.19179373 -0.31677942 0.92890579]\n", + " [ 0.20763194 -0.34545476 0.91517757]\n", + " [ 0.22324099 -0.37343997 0.90039216]\n", + " [ 0.23854307 -0.4005774 0.88466657]\n", + " [ 0.25347044 -0.42671582 0.86813959]\n", + " [ 0.26796624 -0.45170797 0.85097239]\n", + " [ 0.36559926 -0.21229859 0.90623755]\n", + " [ 0.38164663 -0.24213994 0.89202808]\n", + " [ 0.39708359 -0.27146328 0.87671678]\n", + " [ 0.41183291 -0.30010484 0.86042474]\n", + " [ 0.42582991 -0.32791239 0.84329256]\n", + " [ 0.43902192 -0.35474476 0.8254792 ]\n", + " [ 0.28341988 -0.45516802 0.84409433]\n", + " [ 0.31329473 -0.4401024 0.84152023]\n", + " [ 0.34340303 -0.42402778 0.83801837]\n", + " [ 0.37354194 -0.40703335 0.8335408 ]\n", + " [ 0.40351676 -0.3892114 0.82806323]\n", + " [ 0.43313991 -0.37066003 0.82158442]\n", + " [ 0.18616479 -0.30652413 0.93348038]\n", + " [ 0.18616479 -0.30652413 0.93348038]\n", + " [ 0.44347772 -0.3639575 0.81906193]\n", + " [ 0.44347772 -0.3639575 0.81906193]\n", + " [ 0.20232897 -0.31095975 0.92863719]\n", + " [ 0.21820752 -0.3397578 0.91484978]\n", + " [ 0.23383145 -0.36787414 0.89999526]\n", + " [ 0.2491225 -0.3951511 0.88419092]\n", + " [ 0.26401255 -0.42143811 0.86757553]\n", + " [ 0.27844441 -0.44658915 0.85030985]\n", + " [ 0.2325256 -0.29392683 0.92711319]\n", + " [ 0.24849976 -0.32303736 0.91317837]\n", + " [ 0.26414858 -0.35149093 0.89815347]\n", + " [ 0.27939296 -0.37912936 0.88215673]\n", + " [ 0.29416411 -0.40580317 0.86532726]\n", + " [ 0.30840434 -0.4313694 0.84782499]\n", + " [ 0.26307993 -0.27615099 0.92440769]\n", + " [ 0.27912109 -0.3055215 0.91035599]\n", + " [ 0.29476799 -0.33426194 0.89519874]\n", + " [ 0.30994119 -0.362213 0.87905529]\n", + " [ 0.32457196 -0.3892254 0.86206533]\n", + " [ 0.33860291 -0.41515811 0.84438842]\n", + " [ 0.29379569 -0.25771695 0.92047057]\n", + " [ 0.30987428 -0.28729371 0.90633341]\n", + " [ 0.32549139 -0.31627012 0.89108281]\n", + " [ 0.34056775 -0.34448543 0.87483907]\n", + " [ 0.35503539 -0.37178985 0.85774249]\n", + " [ 0.36883789 -0.39804323 0.8399525 ]\n", + " [ 0.32447883 -0.2387181 0.91527436]\n", + " [ 0.34056465 -0.2684458 0.90108411]\n", + " [ 0.35612384 -0.29760603 0.88578014]\n", + " [ 0.37107778 -0.3260366 0.86948342]\n", + " [ 0.38535968 -0.35358676 0.85233463]\n", + " [ 0.3989146 -0.38011633 0.83449309]\n", + " [ 0.3549375 -0.21925718 0.90881553]\n", + " [ 0.37100023 -0.24907905 0.89460519]\n", + " [ 0.38647383 -0.27836949 0.87928858]\n", + " [ 0.40128068 -0.30696508 0.86298682]\n", + " [ 0.41535551 -0.33471395 0.84584063]\n", + " [ 0.42864506 -0.36147527 0.82800908]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:fp_optics: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:cartToSphere: vec: [[ 0.21675161 -0.33387818 0.91735713]\n", + " [ 0.23471159 -0.35086706 0.90653338]\n", + " [ 0.25275785 -0.36805773 0.89478879]\n", + " [ 0.27081362 -0.38534894 0.88213728]\n", + " [ 0.28880373 -0.40264709 0.86860101]\n", + " [ 0.30665439 -0.41986557 0.85421074]\n", + " [ 0.32429316 -0.43692397 0.83900619]\n", + " [ 0.34164929 -0.45374774 0.8230363 ]\n", + " [ 0.21675161 -0.33387818 0.91735713]\n", + " [ 0.19579673 -0.35070821 0.91578785]\n", + " [ 0.17433508 -0.36774983 0.9134371 ]\n", + " [ 0.15244214 -0.38490122 0.91028152]\n", + " [ 0.13019543 -0.40206832 0.90630581]\n", + " [ 0.10767503 -0.41916416 0.90150291]\n", + " [ 0.08496377 -0.43610803 0.8958744 ]\n", + " [ 0.06214711 -0.45282504 0.88943084]\n", + " [ 0.34164929 -0.45374774 0.8230363 ]\n", + " [ 0.32113419 -0.47251858 0.82073079]\n", + " [ 0.29994167 -0.49129753 0.81771739]\n", + " [ 0.27814208 -0.50998782 0.81397138]\n", + " [ 0.25580864 -0.52849798 0.80947626]\n", + " [ 0.23301896 -0.54674073 0.80422431]\n", + " [ 0.20985587 -0.56463259 0.79821711]\n", + " [ 0.1864073 -0.58209444 0.79146597]\n", + " [ 0.06214711 -0.45282504 0.88943084]\n", + " [ 0.07944006 -0.47175726 0.87814257]\n", + " [ 0.09700693 -0.4906872 0.86591901]\n", + " [ 0.1147748 -0.50951858 0.85277052]\n", + " [ 0.13267146 -0.52816018 0.83871634]\n", + " [ 0.15062445 -0.54652485 0.82378569]\n", + " [ 0.16856077 -0.56452924 0.80801857]\n", + " [ 0.1864073 -0.58209444 0.79146597]\n", + " [ 0.2244959 -0.34131146 0.91274754]\n", + " [ 0.24657552 -0.36228359 0.89886101]\n", + " [ 0.26870837 -0.38345718 0.88360421]\n", + " [ 0.29075545 -0.40465677 0.86701452]\n", + " [ 0.31258088 -0.4257228 0.84914857]\n", + " [ 0.334052 -0.44650971 0.83008334]\n", + " [ 0.20774344 -0.34124151 0.91673164]\n", + " [ 0.18171072 -0.36202564 0.91428587]\n", + " [ 0.15499147 -0.38302535 0.91064221]\n", + " [ 0.12772754 -0.40406431 0.90576912]\n", + " [ 0.10006636 -0.42498231 0.89965369]\n", + " [ 0.07216153 -0.44563319 0.89230251]\n", + " [ 0.33273334 -0.46186714 0.82217229]\n", + " [ 0.30712508 -0.4848901 0.8188747 ]\n", + " [ 0.2805691 -0.50782853 0.81448828]\n", + " [ 0.25319889 -0.53051194 0.80897924]\n", + " [ 0.22515747 -0.55277957 0.80233339]\n", + " [ 0.19659947 -0.57447954 0.79455768]\n", + " [ 0.06972687 -0.46101647 0.88464794]\n", + " [ 0.09111536 -0.48423015 0.8701834 ]\n", + " [ 0.11284253 -0.5073442 0.85432337]\n", + " [ 0.13477523 -0.53018871 0.8370995 ]\n", + " [ 0.15678002 -0.55260315 0.81856569]\n", + " [ 0.17872242 -0.57443592 0.79880014]\n", + " [ 0.21674208 -0.33399289 0.91731762]\n", + " [ 0.21674208 -0.33399289 0.91731762]\n", + " [ 0.18642708 -0.58197632 0.79154817]\n", + " [ 0.18642708 -0.58197632 0.79154817]\n", + " [ 0.21549479 -0.34863616 0.91214846]\n", + " [ 0.18944336 -0.36961887 0.90966648]\n", + " [ 0.16268766 -0.39079279 0.9059877 ]\n", + " [ 0.13536925 -0.41198253 0.90108022]\n", + " [ 0.10763555 -0.43302855 0.89493065]\n", + " [ 0.07964054 -0.45378489 0.8875453 ]\n", + " [ 0.23757849 -0.36980685 0.8982201 ]\n", + " [ 0.21150599 -0.39130694 0.89562497]\n", + " [ 0.18467983 -0.41293376 0.89184027]\n", + " [ 0.15724041 -0.43451455 0.88683288]\n", + " [ 0.12933503 -0.45589121 0.88058824]\n", + " [ 0.10111867 -0.47691778 0.87311193]\n", + " [ 0.25973195 -0.39115456 0.88291416]\n", + " [ 0.23368635 -0.41310741 0.88018916]\n", + " [ 0.20683906 -0.43512927 0.87628769]\n", + " [ 0.17932906 -0.4570494 0.87117561]\n", + " [ 0.15130318 -0.47871021 0.86483749]\n", + " [ 0.12291715 -0.49996496 0.85727849]\n", + " [ 0.28181622 -0.41250477 0.86626753]\n", + " [ 0.25584575 -0.43484832 0.8633944 ]\n", + " [ 0.22902734 -0.4572093 0.8593638 ]\n", + " [ 0.20149827 -0.47941804 0.85414097]\n", + " [ 0.17340455 -0.5013166 0.84771017]\n", + " [ 0.14490223 -0.52275683 0.84007657]\n", + " [ 0.30369516 -0.43369855 0.8483365 ]\n", + " [ 0.27784746 -0.45637205 0.84529601]\n", + " [ 0.25110773 -0.47901669 0.84112301]\n", + " [ 0.2236115 -0.5014629 0.83578278]\n", + " [ 0.19550361 -0.52355173 0.82925987]\n", + " [ 0.16693987 -0.54513337 0.82155991]\n", + " [ 0.32523562 -0.45459048 0.82919798]\n", + " [ 0.29955697 -0.47753315 0.82597077]\n", + " [ 0.27294466 -0.50040509 0.82164223]\n", + " [ 0.24553267 -0.52303616 0.81617822]\n", + " [ 0.21746448 -0.54526608 0.80956414]\n", + " [ 0.1888951 -0.56694345 0.80180656]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:fp_optics: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:cartToSphere: vec: [[ 0.35515981 0.92376826 -0.14322605]\n", + " [ 0.34936649 0.92133927 -0.17051978]\n", + " [ 0.34317469 0.91811788 -0.19821879]\n", + " [ 0.3365938 0.91407645 -0.22620534]\n", + " [ 0.32963672 0.90919678 -0.25436363]\n", + " [ 0.32232041 0.90347062 -0.28257811]\n", + " [ 0.31466618 0.89690033 -0.31073299]\n", + " [ 0.30669981 0.88949922 -0.3387128 ]\n", + " [ 0.35515981 0.92376826 -0.14322605]\n", + " [ 0.38148482 0.91246857 -0.1478866 ]\n", + " [ 0.40738473 0.90043324 -0.15250464]\n", + " [ 0.43276236 0.88772 -0.15706668]\n", + " [ 0.45752483 0.87439607 -0.16156282]\n", + " [ 0.48158332 0.86053805 -0.16598724]\n", + " [ 0.50485245 0.8462321 -0.1703386 ]\n", + " [ 0.52724939 0.8315743 -0.17462034]\n", + " [ 0.30669981 0.88949922 -0.3387128 ]\n", + " [ 0.33396246 0.87781523 -0.34337953]\n", + " [ 0.36083545 0.86538138 -0.34772525]\n", + " [ 0.38721686 0.85225818 -0.35173724]\n", + " [ 0.41301157 0.83851486 -0.35540719]\n", + " [ 0.43813158 0.82422855 -0.35873113]\n", + " [ 0.46249533 0.8094841 -0.36170922]\n", + " [ 0.48602614 0.79437459 -0.36434544]\n", + " [ 0.52724939 0.8315743 -0.17462034]\n", + " [ 0.52311142 0.82818704 -0.20114837]\n", + " [ 0.51836665 0.82418479 -0.22806895]\n", + " [ 0.5130264 0.81954096 -0.25525779]\n", + " [ 0.50710423 0.81423917 -0.2825949 ]\n", + " [ 0.50061639 0.80827326 -0.3099638 ]\n", + " [ 0.49358251 0.80164714 -0.33725088]\n", + " [ 0.48602614 0.79437459 -0.36434544]\n", + " [ 0.35277437 0.92276702 -0.15508474]\n", + " [ 0.34540596 0.91926075 -0.1888237 ]\n", + " [ 0.33744783 0.91453586 -0.22305406]\n", + " [ 0.32892224 0.9085549 -0.25756194]\n", + " [ 0.31986042 0.90130278 -0.29213458]\n", + " [ 0.31030347 0.89278837 -0.32655886]\n", + " [ 0.36666473 0.91892815 -0.14535486]\n", + " [ 0.39865626 0.90457729 -0.15104011]\n", + " [ 0.42991222 0.88917773 -0.15664755]\n", + " [ 0.46025983 0.87284928 -0.16215741]\n", + " [ 0.48953553 0.85573298 -0.16755902]\n", + " [ 0.5175832 0.83799155 -0.17285191]\n", + " [ 0.31865528 0.88452735 -0.34069075]\n", + " [ 0.35181941 0.86969601 -0.34619641]\n", + " [ 0.38429623 0.85379744 -0.35120698]\n", + " [ 0.41590775 0.83695549 -0.3557053 ]\n", + " [ 0.44649188 0.81931214 -0.35968405]\n", + " [ 0.47590062 0.80102699 -0.3631451 ]\n", + " [ 0.52544508 0.83022182 -0.18611609]\n", + " [ 0.51996319 0.82566139 -0.2189099 ]\n", + " [ 0.51358099 0.8201495 -0.25216932]\n", + " [ 0.50632252 0.81365175 -0.28567172]\n", + " [ 0.49821777 0.80615679 -0.31920257]\n", + " [ 0.48930447 0.79767591 -0.35255394]\n", + " [ 0.35523133 0.92372394 -0.14333454]\n", + " [ 0.35523133 0.92372394 -0.14333454]\n", + " [ 0.48597388 0.79445272 -0.3642448 ]\n", + " [ 0.48597388 0.79445272 -0.3642448 ]\n", + " [ 0.36425298 0.91795204 -0.15711085]\n", + " [ 0.39637312 0.90354104 -0.16279419]\n", + " [ 0.42775804 0.8880731 -0.16837229]\n", + " [ 0.45823492 0.8716683 -0.173825 ]\n", + " [ 0.48764065 0.85446771 -0.17914109]\n", + " [ 0.51581999 0.83663375 -0.18431961]\n", + " [ 0.35699857 0.91439763 -0.19086384]\n", + " [ 0.38944409 0.89983719 -0.19653584]\n", + " [ 0.42115661 0.88420155 -0.20202656]\n", + " [ 0.45196275 0.86761176 -0.20731497]\n", + " [ 0.48170052 0.85020915 -0.21238879]\n", + " [ 0.5102172 0.8321554 -0.21724593]\n", + " [ 0.34913328 0.90963394 -0.22510454]\n", + " [ 0.38184603 0.89495554 -0.23075568]\n", + " [ 0.41383035 0.87919116 -0.23615112]\n", + " [ 0.44491185 0.86246298 -0.24126966]\n", + " [ 0.47492922 0.84491277 -0.24609887]\n", + " [ 0.50373194 0.82670164 -0.25063627]\n", + " [ 0.34067877 0.9036238 -0.25961895]\n", + " [ 0.37359922 0.88885991 -0.26523892]\n", + " [ 0.40579891 0.87300675 -0.27052995]\n", + " [ 0.43710224 0.85618756 -0.27547142]\n", + " [ 0.46734806 0.83854449 -0.28005167]\n", + " [ 0.49638747 0.82023823 -0.28426875]\n", + " [ 0.33166554 0.89635248 -0.29419417]\n", + " [ 0.36473232 0.88153663 -0.29977243]\n", + " [ 0.39708977 0.8656358 -0.30494979]\n", + " [ 0.42856109 0.84877386 -0.30970685]\n", + " [ 0.45898489 0.83109316 -0.31403349]\n", + " [ 0.48821315 0.81275396 -0.31792911]\n", + " [ 0.32213405 0.8878291 -0.32861702]\n", + " [ 0.35528409 0.87299567 -0.33414334]\n", + " [ 0.38774034 0.85708907 -0.33919868]\n", + " [ 0.41932505 0.84023327 -0.34376527]\n", + " [ 0.44987633 0.82257041 -0.34783502]\n", + " [ 0.47924631 0.80426027 -0.35140916]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:cartToSphere: vec: [[-0.10738227 0.86824232 -0.48438036]\n", + " [-0.11641061 0.8794444 -0.46154752]\n", + " [-0.12568828 0.89017976 -0.43792974]\n", + " [-0.13515451 0.90036839 -0.41360611]\n", + " [-0.14475384 0.90993971 -0.38865929]\n", + " [-0.15443555 0.91883226 -0.36317618]\n", + " [-0.16415296 0.92699374 -0.33724828]\n", + " [-0.1738629 0.93438121 -0.31097179]\n", + " [-0.10738227 0.86824232 -0.48438036]\n", + " [-0.13148721 0.85999044 -0.49307966]\n", + " [-0.15608245 0.85097897 -0.5014709 ]\n", + " [-0.18104728 0.84120287 -0.50950919]\n", + " [-0.20626622 0.8306667 -0.51715286]\n", + " [-0.23162821 0.81938477 -0.52436339]\n", + " [-0.25702569 0.80738125 -0.53110575]\n", + " [-0.28235424 0.79469007 -0.53734884]\n", + " [-0.1738629 0.93438121 -0.31097179]\n", + " [-0.19961655 0.92668201 -0.31845515]\n", + " [-0.22574009 0.91808154 -0.32583385]\n", + " [-0.25211965 0.90857246 -0.3330642 ]\n", + " [-0.27864403 0.89815674 -0.34010584]\n", + " [-0.30520298 0.8868465 -0.34692135]\n", + " [-0.33168645 0.87466486 -0.35347627]\n", + " [-0.35798512 0.86164625 -0.35973934]\n", + " [-0.28235424 0.79469007 -0.53734884]\n", + " [-0.29346551 0.80589977 -0.51420186]\n", + " [-0.30456533 0.81667756 -0.49018132]\n", + " [-0.31559624 0.82694553 -0.46536019]\n", + " [-0.326504 0.83663402 -0.43981662]\n", + " [-0.33723701 0.84568125 -0.41363561]\n", + " [-0.34774615 0.85403361 -0.38690982]\n", + " [-0.35798512 0.86164625 -0.35973934]\n", + " [-0.11136592 0.87315156 -0.47455662]\n", + " [-0.1226082 0.886578 -0.44603439]\n", + " [-0.13416381 0.89922285 -0.41641127]\n", + " [-0.14592845 0.91095224 -0.38583793]\n", + " [-0.15780867 0.92165305 -0.35447438]\n", + " [-0.16972002 0.93123286 -0.32249104]\n", + " [-0.11785482 0.86477631 -0.48813131]\n", + " [-0.1477447 0.85415345 -0.4985914 ]\n", + " [-0.17825038 0.84238345 -0.50854393]\n", + " [-0.20915716 0.82947069 -0.51791085]\n", + " [-0.24026043 0.81544156 -0.5266213 ]\n", + " [-0.27136352 0.80034458 -0.53461238]\n", + " [-0.18500534 0.93111031 -0.31433518]\n", + " [-0.21683202 0.92106921 -0.32344303]\n", + " [-0.2491008 0.90966613 -0.33234969]\n", + " [-0.28160598 0.8969008 -0.34097952]\n", + " [-0.31414448 0.88279565 -0.34926364]\n", + " [-0.34651399 0.86739793 -0.35713988]\n", + " [-0.28710962 0.79966998 -0.52734807]\n", + " [-0.30072649 0.81312883 -0.49838247]\n", + " [-0.31426881 0.8258605 -0.46817684]\n", + " [-0.32763547 0.83773335 -0.43687278]\n", + " [-0.34073145 0.8486337 -0.40462688]\n", + " [-0.35346748 0.85846644 -0.37161286]\n", + " [-0.1074941 0.86825438 -0.48433392]\n", + " [-0.1074941 0.86825438 -0.48433392]\n", + " [-0.35786112 0.86166742 -0.35981201]\n", + " [-0.35786112 0.86166742 -0.35981201]\n", + " [-0.12179771 0.86969256 -0.4783306 ]\n", + " [-0.15187853 0.85911013 -0.48873582]\n", + " [-0.18256044 0.84736032 -0.49865035]\n", + " [-0.21362978 0.83444745 -0.50799584]\n", + " [-0.2448826 0.82039783 -0.51670099]\n", + " [-0.27612229 0.80526014 -0.52470238]\n", + " [-0.133222 0.88317066 -0.44973491]\n", + " [-0.16379078 0.8726994 -0.45996559]\n", + " [-0.19492234 0.86100842 -0.46975502]\n", + " [-0.22640602 0.84810152 -0.47902414]\n", + " [-0.25803934 0.83400472 -0.48770054]\n", + " [-0.28962536 0.81876686 -0.49571965]\n", + " [-0.14493151 0.8958638 -0.42002727]\n", + " [-0.17591182 0.88549932 -0.43005346]\n", + " [-0.20742148 0.87387013 -0.43969003]\n", + " [-0.23925234 0.86097916 -0.44885766]\n", + " [-0.27120269 0.8468518 -0.45748348]\n", + " [-0.3030746 0.83153679 -0.46550226]\n", + " [-0.1568228 0.90763821 -0.38935779]\n", + " [-0.18814059 0.89737629 -0.39914773]\n", + " [-0.21995843 0.885812 -0.40860174]\n", + " [-0.2520699 0.87294721 -0.41764092]\n", + " [-0.28427336 0.85880639 -0.42619273]\n", + " [-0.31636945 0.84343797 -0.43419207]\n", + " [-0.16880313 0.91838061 -0.35788624]\n", + " [-0.20038591 0.90821649 -0.36740752]\n", + " [-0.23244261 0.8967197 -0.37664866]\n", + " [-0.26476764 0.88389101 -0.38553182]\n", + " [-0.29715891 0.86975393 -0.39398564]\n", + " [-0.32941561 0.85435642 -0.40194585]\n", + " [-0.18078844 0.92799828 -0.32578327]\n", + " [-0.21256423 0.91792623 -0.3350043 ]\n", + " [-0.24479009 0.90649857 -0.34400313]\n", + " [-0.27726049 0.89371519 -0.35270352]\n", + " [-0.30977261 0.87959879 -0.36103587]\n", + " [-0.34212445 0.86419678 -0.36893738]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:fp_optics: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:cartToSphere: vec: [[ 0.47259152 -0.14381167 0.86946849]\n", + " [ 0.49570874 -0.13627151 0.85773126]\n", + " [ 0.51895579 -0.12861375 0.84507005]\n", + " [ 0.5422153 -0.12085507 0.83150263]\n", + " [ 0.56537242 -0.11301356 0.81705689]\n", + " [ 0.58831733 -0.10510972 0.80176971]\n", + " [ 0.61094632 -0.09716701 0.78568643]\n", + " [ 0.63316222 -0.08921189 0.76886074]\n", + " [ 0.47259152 -0.14381167 0.86946849]\n", + " [ 0.47492061 -0.16997483 0.86345757]\n", + " [ 0.47707124 -0.19653859 0.85660704]\n", + " [ 0.4790059 -0.22338872 0.84891156]\n", + " [ 0.48069079 -0.25041005 0.84037561]\n", + " [ 0.48209786 -0.27748857 0.83101248]\n", + " [ 0.4832057 -0.30451238 0.82084375]\n", + " [ 0.48399979 -0.33137201 0.80989925]\n", + " [ 0.63316222 -0.08921189 0.76886074]\n", + " [ 0.63727171 -0.11592739 0.76186981]\n", + " [ 0.64095598 -0.14309742 0.75412105]\n", + " [ 0.64417099 -0.17060552 0.74561216]\n", + " [ 0.64687972 -0.19833896 0.73634793]\n", + " [ 0.649052 -0.22618646 0.72634096]\n", + " [ 0.65066441 -0.25403608 0.71561268]\n", + " [ 0.65170063 -0.28177459 0.70419413]\n", + " [ 0.48399979 -0.33137201 0.80989925]\n", + " [ 0.50831265 -0.32534637 0.79735061]\n", + " [ 0.53269895 -0.31894323 0.78390499]\n", + " [ 0.55703736 -0.31217371 0.76958232]\n", + " [ 0.58121379 -0.30505204 0.75440956]\n", + " [ 0.60511934 -0.29759612 0.73842205]\n", + " [ 0.62864882 -0.28982811 0.72166497]\n", + " [ 0.65170063 -0.28177459 0.70419413]\n", + " [ 0.48265595 -0.14062861 0.86444597]\n", + " [ 0.5110918 -0.13130695 0.84943726]\n", + " [ 0.5396059 -0.12182496 0.83305712]\n", + " [ 0.56798555 -0.11221526 0.81535278]\n", + " [ 0.59602871 -0.10251566 0.79639206]\n", + " [ 0.62354714 -0.0927706 0.77626192]\n", + " [ 0.47370565 -0.15513724 0.86691141]\n", + " [ 0.47644615 -0.18748734 0.85898053]\n", + " [ 0.47888088 -0.220326 0.84978207]\n", + " [ 0.4809459 -0.25344135 0.83932027]\n", + " [ 0.48258966 -0.28662366 0.82761954]\n", + " [ 0.48377562 -0.31966788 0.81472302]\n", + " [ 0.63492766 -0.1008237 0.76596439]\n", + " [ 0.63968347 -0.13388712 0.7568879 ]\n", + " [ 0.64375617 -0.16751701 0.74666997]\n", + " [ 0.64707474 -0.20150436 0.73531645]\n", + " [ 0.64958358 -0.23564406 0.72285064]\n", + " [ 0.65124254 -0.26972943 0.709316 ]\n", + " [ 0.49458094 -0.32870001 0.80457815]\n", + " [ 0.52444387 -0.32105897 0.78859353]\n", + " [ 0.5542957 -0.3128618 0.77128061]\n", + " [ 0.58392343 -0.3041334 0.75268606]\n", + " [ 0.61312644 -0.2949068 0.73287512]\n", + " [ 0.64171247 -0.28522465 0.71193539]\n", + " [ 0.47267845 -0.14387477 0.8694108 ]\n", + " [ 0.47267845 -0.14387477 0.8694108 ]\n", + " [ 0.65162018 -0.28170804 0.7042952 ]\n", + " [ 0.65162018 -0.28170804 0.7042952 ]\n", + " [ 0.48374074 -0.15192953 0.86192361]\n", + " [ 0.48662842 -0.18439302 0.85392739]\n", + " [ 0.48918397 -0.2173495 0.84466457]\n", + " [ 0.49134166 -0.25058583 0.83414035]\n", + " [ 0.49304934 -0.28389187 0.82237932]\n", + " [ 0.49427049 -0.31706226 0.80942462]\n", + " [ 0.51233608 -0.14270089 0.84684603]\n", + " [ 0.51562827 -0.17543844 0.83865896]\n", + " [ 0.51851314 -0.2086805 0.82921443]\n", + " [ 0.52092207 -0.24221231 0.81851903]\n", + " [ 0.52280252 -0.2758236 0.80659709]\n", + " [ 0.52411848 -0.30930838 0.79349112]\n", + " [ 0.54100139 -0.13328666 0.83039278]\n", + " [ 0.54467438 -0.16622508 0.82200915]\n", + " [ 0.54786732 -0.19967965 0.81238503]\n", + " [ 0.55051072 -0.23343614 0.80152699]\n", + " [ 0.55255235 -0.26728518 0.78945838]\n", + " [ 0.55395653 -0.30102026 0.77622095]\n", + " [ 0.56952216 -0.12371821 0.81261203]\n", + " [ 0.57354976 -0.1567822 0.80402738]\n", + " [ 0.57702961 -0.19037532 0.79422545]\n", + " [ 0.57989207 -0.22428504 0.78321224]\n", + " [ 0.58208475 -0.25830335 0.7710102 ]\n", + " [ 0.58357155 -0.29222328 0.75766074]\n", + " [ 0.59769574 -0.11403296 0.79357185]\n", + " [ 0.60205132 -0.14714706 0.78478147]\n", + " [ 0.60579756 -0.18080501 0.77480247]\n", + " [ 0.60886448 -0.21479619 0.76364039]\n", + " [ 0.61119873 -0.248914 0.75131747]\n", + " [ 0.61276284 -0.2829513 0.73787551]\n", + " [ 0.62533358 -0.10427549 0.77335925]\n", + " [ 0.62998996 -0.13736513 0.76435821]\n", + " [ 0.63398147 -0.17101505 0.75420246]\n", + " [ 0.63723741 -0.20501598 0.74289766]\n", + " [ 0.63970282 -0.23916251 0.7304667 ]\n", + " [ 0.64133827 -0.27324775 0.7169525 ]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:fp_optics: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:fp_optics: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:cartToSphere: vec: [[-1.23931381e-01 1.42624632e-01 -9.81987387e-01]\n", + " [-9.82171909e-02 1.50728349e-01 -9.83684069e-01]\n", + " [-7.19429833e-02 1.59031605e-01 -9.84648747e-01]\n", + " [-4.52130226e-02 1.67478249e-01 -9.84838473e-01]\n", + " [-1.81318930e-02 1.76016795e-01 -9.84220160e-01]\n", + " [ 9.19521779e-03 1.84600312e-01 -9.82770661e-01]\n", + " [ 3.66623122e-02 1.93186036e-01 -9.80476940e-01]\n", + " [ 6.41626647e-02 2.01734986e-01 -9.77336251e-01]\n", + " [-1.23931381e-01 1.42624632e-01 -9.81987387e-01]\n", + " [-1.34102418e-01 1.67023496e-01 -9.76790506e-01]\n", + " [-1.44250873e-01 1.91881189e-01 -9.70759133e-01]\n", + " [-1.54341078e-01 2.17077019e-01 -9.63875718e-01]\n", + " [-1.64336867e-01 2.42494680e-01 -9.56132692e-01]\n", + " [-1.74201465e-01 2.68021963e-01 -9.47532626e-01]\n", + " [-1.83897666e-01 2.93550301e-01 -9.38088412e-01]\n", + " [-1.93388223e-01 3.18974518e-01 -9.27823395e-01]\n", + " [ 6.41626647e-02 2.01734986e-01 -9.77336251e-01]\n", + " [ 5.53860162e-02 2.27712042e-01 -9.72152053e-01]\n", + " [ 4.63874202e-02 2.54038923e-01 -9.66080966e-01]\n", + " [ 3.72003803e-02 2.80599408e-01 -9.59103802e-01]\n", + " [ 2.78587755e-02 3.07280428e-01 -9.51211137e-01]\n", + " [ 1.83974495e-02 3.33970387e-01 -9.42404008e-01]\n", + " [ 8.85251560e-03 3.60558404e-01 -9.32694628e-01]\n", + " [-7.38704468e-04 3.86934626e-01 -9.22106854e-01]\n", + " [-1.93388223e-01 3.18974518e-01 -9.27823395e-01]\n", + " [-1.67299170e-01 3.29125440e-01 -9.29347853e-01]\n", + " [-1.40563641e-01 3.39214800e-01 -9.30147936e-01]\n", + " [-1.13280794e-01 3.49187626e-01 -9.30180339e-01]\n", + " [-8.55512553e-02 3.58992629e-01 -9.29411252e-01]\n", + " [-5.74787628e-02 3.68581665e-01 -9.27816656e-01]\n", + " [-2.91708950e-02 3.77909609e-01 -9.25382832e-01]\n", + " [-7.38704468e-04 3.86934626e-01 -9.22106854e-01]\n", + " [-1.12829942e-01 1.46212639e-01 -9.82797674e-01]\n", + " [-8.09240881e-02 1.56287526e-01 -9.84390929e-01]\n", + " [-4.82805633e-02 1.66605638e-01 -9.84840875e-01]\n", + " [-1.50917623e-02 1.77070238e-01 -9.84082501e-01]\n", + " [ 1.84486430e-02 1.87594887e-01 -9.82073218e-01]\n", + " [ 5.21451939e-02 1.98102440e-01 -9.78793289e-01]\n", + " [-1.28279388e-01 1.53226175e-01 -9.79829647e-01]\n", + " [-1.40733722e-01 1.83454994e-01 -9.72901991e-01]\n", + " [-1.53118908e-01 2.14252511e-01 -9.64702266e-01]\n", + " [-1.65368592e-01 2.45402782e-01 -9.55212386e-01]\n", + " [-1.77415089e-01 2.76699182e-01 -9.44437107e-01]\n", + " [-1.89189863e-01 3.07943248e-01 -9.32404500e-01]\n", + " [ 6.02710986e-02 2.12981176e-01 -9.75195577e-01]\n", + " [ 4.93599930e-02 2.45068524e-01 -9.68248424e-01]\n", + " [ 3.81489700e-02 2.77565456e-01 -9.59948995e-01]\n", + " [ 2.67002155e-02 3.10262605e-01 -9.50275862e-01]\n", + " [ 1.50779170e-02 3.42954443e-01 -9.39231019e-01]\n", + " [ 3.34908186e-03 3.75437214e-01 -9.26841778e-01]\n", + " [-1.82066967e-01 3.23317234e-01 -9.28610568e-01]\n", + " [-1.49644683e-01 3.35723096e-01 -9.29998103e-01]\n", + " [-1.16349890e-01 3.47981591e-01 -9.30253468e-01]\n", + " [-8.23671312e-02 3.59996809e-01 -9.29310472e-01]\n", + " [-4.78874716e-02 3.71680113e-01 -9.27124956e-01]\n", + " [-1.31104613e-02 3.82949771e-01 -9.23676128e-01]\n", + " [-1.23879298e-01 1.42734453e-01 -9.81978001e-01]\n", + " [-1.23879298e-01 1.42734453e-01 -9.81978001e-01]\n", + " [-8.03181650e-04 3.86814611e-01 -9.22157151e-01]\n", + " [-8.03181650e-04 3.86814611e-01 -9.22157151e-01]\n", + " [-1.17198826e-01 1.56773330e-01 -9.80656188e-01]\n", + " [-1.29580407e-01 1.87188479e-01 -9.73739899e-01]\n", + " [-1.41916134e-01 2.18159032e-01 -9.65539459e-01]\n", + " [-1.54139576e-01 2.49469536e-01 -9.56036580e-01]\n", + " [-1.66182734e-01 2.80913741e-01 -9.45235827e-01]\n", + " [-1.77976636e-01 3.12293146e-01 -9.33165209e-01]\n", + " [-8.51990992e-02 1.67024844e-01 -9.82264636e-01]\n", + " [-9.73592187e-02 1.97915857e-01 -9.75371978e-01]\n", + " [-1.09539507e-01 2.29327136e-01 -9.67166046e-01]\n", + " [-1.21673317e-01 2.61045069e-01 -9.57627838e-01]\n", + " [-1.33691933e-01 2.92864416e-01 -9.46761269e-01]\n", + " [-1.45525334e-01 3.24586247e-01 -9.34594107e-01]\n", + " [-5.24534255e-02 1.77491799e-01 -9.82723409e-01]\n", + " [-6.43683217e-02 2.08782329e-01 -9.75841513e-01]\n", + " [-7.63689631e-02 2.40562075e-01 -9.67624757e-01]\n", + " [-8.83888501e-02 2.72619345e-01 -9.58053289e-01]\n", + " [-1.00359119e-01 3.04749539e-01 -9.47130279e-01]\n", + " [-1.12209246e-01 3.36752804e-01 -9.34883220e-01]\n", + " [-1.91538791e-02 1.88077816e-01 -9.81967344e-01]\n", + " [-3.07985247e-02 2.19692815e-01 -9.75082826e-01]\n", + " [-4.25937312e-02 2.51769845e-01 -9.66849378e-01]\n", + " [-5.44737441e-02 2.84098707e-01 -9.57246330e-01]\n", + " [-6.63703342e-02 3.16474944e-01 -9.46276169e-01]\n", + " [-7.82132201e-02 3.48697441e-01 -9.33966159e-01]\n", + " [ 1.45059372e-02 1.98696890e-01 -9.79953633e-01]\n", + " [ 3.15682905e-03 2.30562399e-01 -9.73052421e-01]\n", + " [-8.40681576e-03 2.62865973e-01 -9.64795733e-01]\n", + " [-2.01205630e-02 2.95398244e-01 -9.55162311e-01]\n", + " [-3.19175752e-02 3.27954464e-01 -9.44154192e-01]\n", + " [-4.37285750e-02 3.60332205e-01 -9.31798537e-01]\n", + " [ 4.83302371e-02 2.09272141e-01 -9.76662357e-01]\n", + " [ 3.73008723e-02 2.41314619e-01 -9.69729807e-01]\n", + " [ 2.59937563e-02 2.73773735e-01 -9.61442805e-01]\n", + " [ 1.44716693e-02 3.06440237e-01 -9.51779886e-01]\n", + " [ 2.79953266e-03 3.39108821e-01 -9.40742988e-01]\n", + " [-8.95498547e-03 3.71576002e-01 -9.28359350e-01]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:fp_optics: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:cartToSphere: vec: [[ 0.03514893 -0.24264594 -0.96947795]\n", + " [ 0.04328642 -0.21752558 -0.97509431]\n", + " [ 0.05141002 -0.19167247 -0.98011156]\n", + " [ 0.05949867 -0.16519525 -0.98446454]\n", + " [ 0.06752884 -0.13820088 -0.98809937]\n", + " [ 0.07547479 -0.11079601 -0.99097316]\n", + " [ 0.08330909 -0.08308788 -0.99305388]\n", + " [ 0.09100313 -0.05518467 -0.99432041]\n", + " [ 0.03514893 -0.24264594 -0.96947795]\n", + " [ 0.00879467 -0.23744669 -0.97136076]\n", + " [-0.01810413 -0.2318077 -0.97259315]\n", + " [-0.04543296 -0.22575988 -0.97312297]\n", + " [-0.07307959 -0.21933214 -0.97290944]\n", + " [-0.10093287 -0.21255227 -0.97192288]\n", + " [-0.12888209 -0.2054479 -0.97014461]\n", + " [-0.15681685 -0.19804714 -0.96756695]\n", + " [ 0.09100313 -0.05518467 -0.99432041]\n", + " [ 0.06414999 -0.04800985 -0.99678475]\n", + " [ 0.03669402 -0.04064627 -0.99849959]\n", + " [ 0.00874241 -0.03312153 -0.9994131 ]\n", + " [-0.01959689 -0.02546368 -0.99948365]\n", + " [-0.04821379 -0.01770164 -0.99868017]\n", + " [-0.07699579 -0.00986524 -0.99698261]\n", + " [-0.10582858 -0.00198518 -0.99438241]\n", + " [-0.15681685 -0.19804714 -0.96756695]\n", + " [-0.15016311 -0.17151816 -0.97366964]\n", + " [-0.14326194 -0.14432302 -0.97910514]\n", + " [-0.13613377 -0.11656271 -0.9838093 ]\n", + " [-0.12880088 -0.08834043 -0.98772785]\n", + " [-0.12128767 -0.05976281 -0.99081669]\n", + " [-0.11362071 -0.03094003 -0.99304232]\n", + " [-0.10582858 -0.00198518 -0.99438241]\n", + " [ 0.03860802 -0.23177304 -0.97200344]\n", + " [ 0.04857378 -0.20047749 -0.97849341]\n", + " [ 0.05849822 -0.16818957 -0.98401739]\n", + " [ 0.06833905 -0.13510679 -0.98847151]\n", + " [ 0.07804893 -0.1014256 -0.9917768 ]\n", + " [ 0.08757685 -0.06734381 -0.99387882]\n", + " [ 0.02376031 -0.24035019 -0.9703954 ]\n", + " [-0.00892122 -0.23367692 -0.97227337]\n", + " [-0.04230661 -0.2263743 -0.97312118]\n", + " [-0.07618839 -0.21849633 -0.97285903]\n", + " [-0.11036186 -0.21009427 -0.97143227]\n", + " [-0.14462332 -0.20121917 -0.9688111 ]\n", + " [ 0.07934995 -0.05217742 -0.99548034]\n", + " [ 0.04601951 -0.04325451 -0.99800363]\n", + " [ 0.01189018 -0.0340753 -0.99934854]\n", + " [-0.02283974 -0.02469121 -0.99943419]\n", + " [-0.05796754 -0.01515546 -0.99820342]\n", + " [-0.09328532 -0.00552337 -0.9956241 ]\n", + " [-0.15385172 -0.18659465 -0.97031546]\n", + " [-0.14552707 -0.15362034 -0.97735493]\n", + " [-0.13685107 -0.11974558 -0.9833274 ]\n", + " [-0.12786395 -0.08515935 -0.98812889]\n", + " [-0.11861065 -0.05005794 -0.99167823]\n", + " [-0.10914092 -0.01464547 -0.99391839]\n", + " [ 0.0350877 -0.24254442 -0.96950557]\n", + " [ 0.0350877 -0.24254442 -0.96950557]\n", + " [-0.10575685 -0.00211127 -0.99438978]\n", + " [-0.10575685 -0.00211127 -0.99438978]\n", + " [ 0.02724332 -0.22951784 -0.9729231 ]\n", + " [-0.00554615 -0.22268922 -0.97487371]\n", + " [-0.0390438 -0.21525593 -0.97577685]\n", + " [-0.07304308 -0.2072708 -0.97555293]\n", + " [-0.10733962 -0.19878429 -0.97414733]\n", + " [-0.14172943 -0.18984701 -0.97153017]\n", + " [ 0.03712139 -0.19805524 -0.97948769]\n", + " [ 0.00407587 -0.19080114 -0.98162025]\n", + " [-0.02969196 -0.18301039 -0.9826625 ]\n", + " [-0.06397801 -0.17473311 -0.98253507]\n", + " [-0.09857848 -0.16601822 -0.98118308]\n", + " [-0.13328834 -0.15691584 -0.97857633]\n", + " [ 0.04698435 -0.16560733 -0.98507192]\n", + " [ 0.01375532 -0.15794576 -0.98735198]\n", + " [-0.02021245 -0.14981326 -0.98850769]\n", + " [-0.05471683 -0.14125848 -0.98845946]\n", + " [-0.08955432 -0.13232998 -0.98715186]\n", + " [-0.12451871 -0.1230783 -0.98455412]\n", + " [ 0.05678927 -0.13237035 -0.98957216]\n", + " [ 0.02344798 -0.12431608 -0.99196558]\n", + " [-0.0106498 -0.11585522 -0.99320902]\n", + " [-0.04530353 -0.10703624 -0.99322245]\n", + " [-0.08030982 -0.09790837 -0.99194974]\n", + " [-0.11546143 -0.08852323 -0.98935954]\n", + " [ 0.06648826 -0.09854012 -0.99290944]\n", + " [ 0.03310485 -0.09010679 -0.99538175]\n", + " [-0.00105326 -0.08133071 -0.99668661]\n", + " [-0.03578671 -0.07226115 -0.99674352]\n", + " [-0.07089228 -0.0629488 -0.99549572]\n", + " [-0.1061621 -0.05344673 -0.9929114 ]\n", + " [ 0.07602979 -0.06431453 -0.9950292 ]\n", + " [ 0.04267345 -0.05551655 -0.99754543]\n", + " [ 0.00852443 -0.04643966 -0.99888472]\n", + " [-0.02621876 -0.03713467 -0.99896626]\n", + " [-0.06135323 -0.02765409 -0.99773295]\n", + " [-0.096671 -0.01805266 -0.99515266]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:fp_optics: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:cartToSphere: vec: [[-0.81272453 0.48639925 -0.32077188]\n", + " [-0.82510564 0.48025928 -0.29757638]\n", + " [-0.83717224 0.47350727 -0.27373984]\n", + " [-0.84883712 0.4661583 -0.24934312]\n", + " [-0.86001989 0.45823362 -0.22447214]\n", + " [-0.87064899 0.44975888 -0.19921668]\n", + " [-0.88066256 0.44076321 -0.17366993]\n", + " [-0.89000873 0.43127915 -0.14792821]\n", + " [-0.81272453 0.48639925 -0.32077188]\n", + " [-0.8204065 0.46415823 -0.33390165]\n", + " [-0.82770982 0.44105364 -0.34694112]\n", + " [-0.83456441 0.41716256 -0.35983003]\n", + " [-0.84090717 0.39256949 -0.37251085]\n", + " [-0.84668396 0.36736389 -0.38492863]\n", + " [-0.85185045 0.34163918 -0.39703084]\n", + " [-0.85637239 0.31549239 -0.40876751]\n", + " [-0.89000873 0.43127915 -0.14792821]\n", + " [-0.89896845 0.40774834 -0.15999069]\n", + " [-0.90739074 0.38340549 -0.1721693 ]\n", + " [-0.91520053 0.35833217 -0.18440728]\n", + " [-0.92233289 0.33261178 -0.19665056]\n", + " [-0.92873243 0.30633172 -0.20884671]\n", + " [-0.93435304 0.27958554 -0.22094415]\n", + " [-0.93915828 0.25247389 -0.23289195]\n", + " [-0.85637239 0.31549239 -0.40876751]\n", + " [-0.86990666 0.30760572 -0.38554003]\n", + " [-0.88300808 0.29930779 -0.36154057]\n", + " [-0.89558518 0.29061941 -0.33684944]\n", + " [-0.90755665 0.28156366 -0.31154909]\n", + " [-0.91885025 0.2721667 -0.28572626]\n", + " [-0.92940236 0.26245863 -0.25947395]\n", + " [-0.93915828 0.25247389 -0.23289195]\n", + " [-0.81818289 0.48372318 -0.31078713]\n", + " [-0.83315801 0.47578394 -0.28191732]\n", + " [-0.84757335 0.46693965 -0.2521642 ]\n", + " [-0.86127792 0.45722705 -0.22168397]\n", + " [-0.87414007 0.44669321 -0.19064185]\n", + " [-0.88605005 0.43539323 -0.15921072]\n", + " [-0.81615896 0.47679243 -0.32642538]\n", + " [-0.82532951 0.44894278 -0.34246398]\n", + " [-0.8338609 0.4198716 -0.35830691]\n", + " [-0.84163392 0.38973155 -0.37384711]\n", + " [-0.84854898 0.35868724 -0.38898341]\n", + " [-0.85452866 0.32691215 -0.40362015]\n", + " [-0.89394513 0.42115801 -0.15325806]\n", + " [-0.90457446 0.39176265 -0.16812815]\n", + " [-0.91432087 0.3612284 -0.1831158 ]\n", + " [-0.92306065 0.329708 -0.19812034]\n", + " [-0.9306918 0.29736262 -0.21304519]\n", + " [-0.93713341 0.26436743 -0.2277956 ]\n", + " [-0.8623059 0.31219597 -0.39870066]\n", + " [-0.87861435 0.30225186 -0.36970345]\n", + " [-0.89418063 0.2917103 -0.33962641]\n", + " [-0.90885087 0.28061283 -0.30862036]\n", + " [-0.92249204 0.26900769 -0.27684525]\n", + " [-0.93499066 0.25695209 -0.24447513]\n", + " [-0.81279414 0.4863048 -0.32073872]\n", + " [-0.81279414 0.4863048 -0.32073872]\n", + " [-0.93911132 0.25260168 -0.23294274]\n", + " [-0.93911132 0.25260168 -0.23294274]\n", + " [-0.82159918 0.47416166 -0.31645775]\n", + " [-0.83090322 0.44617136 -0.33246195]\n", + " [-0.83954749 0.41696024 -0.34828748]\n", + " [-0.8474112 0.38668273 -0.36382787]\n", + " [-0.85439426 0.35550394 -0.37898206]\n", + " [-0.8604191 0.32359751 -0.39365419]\n", + " [-0.8367104 0.46609146 -0.28753167]\n", + " [-0.8463648 0.43773159 -0.30341009]\n", + " [-0.85530288 0.40815835 -0.31916099]\n", + " [-0.86340147 0.37752862 -0.33467902]\n", + " [-0.87055998 0.34600741 -0.34986311]\n", + " [-0.87670083 0.31376831 -0.36461638]\n", + " [-0.85124506 0.45713103 -0.25770734]\n", + " [-0.86120424 0.42844927 -0.27341996]\n", + " [-0.87039597 0.39856696 -0.28905923]\n", + " [-0.87869649 0.36764072 -0.30452059]\n", + " [-0.88600534 0.33583418 -0.3197029 ]\n", + " [-0.89224477 0.30332072 -0.33450833]\n", + " [-0.86505064 0.44731883 -0.22714148]\n", + " [-0.87526676 0.41836545 -0.24264884]\n", + " [-0.88467161 0.38822746 -0.25813868]\n", + " [-0.89314162 0.35705991 -0.27350735]\n", + " [-0.90057623 0.3250249 -0.28865424]\n", + " [-0.90689705 0.29229589 -0.30348123]\n", + " [-0.87799496 0.43670244 -0.19599955]\n", + " [-0.88841965 0.40752771 -0.21126214]\n", + " [-0.8979973 0.37718642 -0.22656401]\n", + " [-0.90660445 0.34583205 -0.24180273]\n", + " [-0.91414009 0.3136257 -0.25687898]\n", + " [-0.92052477 0.28074139 -0.27169546]\n", + " [-0.88996806 0.42533693 -0.1644547 ]\n", + " [-0.90055267 0.39599042 -0.17943379]\n", + " [-0.91026237 0.36549741 -0.19450982]\n", + " [-0.91897357 0.33401063 -0.20958169]\n", + " [-0.92658452 0.30169107 -0.22455205]\n", + " [-0.93301466 0.2687136 -0.23932539]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:cartToSphere: vec: [[ 1.57942019e-01 6.01603337e-01 -7.83024740e-01]\n", + " [ 1.31549330e-01 6.00552654e-01 -7.88689599e-01]\n", + " [ 1.04537587e-01 5.98904880e-01 -7.93967781e-01]\n", + " [ 7.70147557e-02 5.96653814e-01 -7.98794688e-01]\n", + " [ 4.90890708e-02 5.93797227e-01 -8.03115880e-01]\n", + " [ 2.08693353e-02 5.90336960e-01 -8.06887070e-01]\n", + " [-7.53481940e-03 5.86279279e-01 -8.10073968e-01]\n", + " [-3.60129559e-02 5.81635280e-01 -8.12652120e-01]\n", + " [ 1.57942019e-01 6.01603337e-01 -7.83024740e-01]\n", + " [ 1.64709095e-01 5.80074123e-01 -7.97737379e-01]\n", + " [ 1.71351881e-01 5.57631364e-01 -8.12210438e-01]\n", + " [ 1.77849082e-01 5.34348311e-01 -8.26342294e-01]\n", + " [ 1.84178905e-01 5.10302568e-01 -8.40041321e-01]\n", + " [ 1.90318989e-01 4.85576408e-01 -8.53225782e-01]\n", + " [ 1.96246648e-01 4.60257196e-01 -8.65823635e-01]\n", + " [ 2.01939301e-01 4.34437603e-01 -8.77772458e-01]\n", + " [-3.60129559e-02 5.81635280e-01 -8.12652120e-01]\n", + " [-3.08227744e-02 5.59221811e-01 -8.28444882e-01]\n", + " [-2.55038867e-02 5.35900033e-01 -8.43896147e-01]\n", + " [-2.00760855e-02 5.11738718e-01 -8.58906535e-01]\n", + " [-1.45594009e-02 4.86811648e-01 -8.73385621e-01]\n", + " [-8.97443910e-03 4.61199329e-01 -8.87251170e-01]\n", + " [-3.34255091e-03 4.34990060e-01 -9.00429050e-01]\n", + " [ 2.31421460e-03 4.08280055e-01 -9.12853790e-01]\n", + " [ 2.01939301e-01 4.34437603e-01 -8.77772458e-01]\n", + " [ 1.74911647e-01 4.31924714e-01 -8.84786391e-01]\n", + " [ 1.47212119e-01 4.29007483e-01 -8.91224535e-01]\n", + " [ 1.18943456e-01 4.25679292e-01 -8.97022628e-01]\n", + " [ 9.02099088e-02 4.21937744e-01 -9.02125663e-01]\n", + " [ 6.11189474e-02 4.17785043e-01 -9.06487800e-01]\n", + " [ 3.17820264e-02 4.13228362e-01 -9.10072647e-01]\n", + " [ 2.31421460e-03 4.08280055e-01 -9.12853790e-01]\n", + " [ 1.46540735e-01 6.01145796e-01 -7.85588661e-01]\n", + " [ 1.13762975e-01 5.99456743e-01 -7.92281263e-01]\n", + " [ 8.01625734e-02 5.96864333e-01 -7.98327583e-01]\n", + " [ 4.59386680e-02 5.93362823e-01 -8.03623170e-01]\n", + " [ 1.12915919e-02 5.88955641e-01 -8.08086476e-01]\n", + " [-2.35764760e-02 5.83656310e-01 -8.11658464e-01]\n", + " [ 1.60817031e-01 5.92330460e-01 -7.89482431e-01]\n", + " [ 1.69029076e-01 5.65319977e-01 -8.07367633e-01]\n", + " [ 1.77033490e-01 5.37009584e-01 -8.24790792e-01]\n", + " [ 1.84790375e-01 5.07540337e-01 -8.41579066e-01]\n", + " [ 1.92258592e-01 4.77063746e-01 -8.57581959e-01]\n", + " [ 1.99396398e-01 4.45742856e-01 -8.72670833e-01]\n", + " [-3.36693339e-02 5.71995793e-01 -8.19565244e-01]\n", + " [-2.72182062e-02 5.43906691e-01 -8.38704168e-01]\n", + " [-2.05935978e-02 5.14521114e-01 -8.57230381e-01]\n", + " [-1.38322701e-02 4.83972723e-01 -8.74973755e-01]\n", + " [-6.97218428e-03 4.52409850e-01 -8.91782886e-01]\n", + " [-5.29523488e-05 4.19998372e-01 -9.07524856e-01]\n", + " [ 1.90225237e-01 4.33480486e-01 -8.80856985e-01]\n", + " [ 1.56635199e-01 4.30130682e-01 -8.89074244e-01]\n", + " [ 1.22138036e-01 4.26166352e-01 -8.96361835e-01]\n", + " [ 8.69249424e-02 4.21581311e-01 -9.02614676e-01]\n", + " [ 5.11938557e-02 4.16379655e-01 -9.07748408e-01]\n", + " [ 1.51515215e-02 4.10576735e-01 -9.11700157e-01]\n", + " [ 1.57876268e-01 6.01528763e-01 -7.83095289e-01]\n", + " [ 1.57876268e-01 6.01528763e-01 -7.83095289e-01]\n", + " [ 2.39571300e-03 4.08389701e-01 -9.12804531e-01]\n", + " [ 2.39571300e-03 4.08389701e-01 -9.12804531e-01]\n", + " [ 1.49442382e-01 5.91909744e-01 -7.92028932e-01]\n", + " [ 1.57559811e-01 5.64790620e-01 -8.10053370e-01]\n", + " [ 1.65493690e-01 5.36368901e-01 -8.27599082e-01]\n", + " [ 1.73203973e-01 5.06785172e-01 -8.44493442e-01]\n", + " [ 1.80649152e-01 4.76190594e-01 -8.60586081e-01]\n", + " [ 1.87787053e-01 4.44748241e-01 -8.75748266e-01]\n", + " [ 1.16550493e-01 5.90124010e-01 -7.98855203e-01]\n", + " [ 1.24390666e-01 5.62727936e-01 -8.17229608e-01]\n", + " [ 1.32115498e-01 5.34023660e-01 -8.35083365e-01]\n", + " [ 1.39684466e-01 5.04150027e-01 -8.52244683e-01]\n", + " [ 1.47055189e-01 4.73257135e-01 -8.68563444e-01]\n", + " [ 1.54184496e-01 4.41508303e-01 -8.83910380e-01]\n", + " [ 8.28308703e-02 5.87450102e-01 -8.05010202e-01]\n", + " [ 9.03790330e-02 5.59822280e-01 -8.23669014e-01]\n", + " [ 9.78795226e-02 5.30883416e-01 -8.41773365e-01]\n", + " [ 1.05291677e-01 5.00770423e-01 -8.59152284e-01]\n", + " [ 1.12572850e-01 4.69632439e-01 -8.75655598e-01]\n", + " [ 1.19679471e-01 4.37633273e-01 -8.91153153e-01]\n", + " [ 4.84822822e-02 5.83881961e-01 -8.10389612e-01]\n", + " [ 5.57222391e-02 5.56066503e-01 -8.29267796e-01]\n", + " [ 6.29813611e-02 5.26940102e-01 -8.47565618e-01]\n", + " [ 7.02194948e-02 4.96637977e-01 -8.65112676e-01]\n", + " [ 7.73945682e-02 4.65308597e-01 -8.81758465e-01]\n", + " [ 8.44633949e-02 4.33116426e-01 -8.97371772e-01]\n", + " [ 1.37049275e-02 5.79422575e-01 -8.14912054e-01]\n", + " [ 2.06200533e-02 5.51462382e-01 -8.33944875e-01]\n", + " [ 2.76203553e-02 5.22194743e-01 -8.52378887e-01]\n", + " [ 3.46668535e-02 4.91753725e-01 -8.70043955e-01]\n", + " [ 4.17188668e-02 4.60287492e-01 -8.86789130e-01]\n", + " [ 4.87343608e-02 4.27961195e-01 -9.02482231e-01]\n", + " [-2.12987329e-02 5.74085112e-01 -8.18518569e-01]\n", + " [-1.47240753e-02 5.46022259e-01 -8.37641268e-01]\n", + " [-7.99889214e-03 5.16659333e-01 -8.56153696e-01]\n", + " [-1.16055062e-03 4.86129968e-01 -8.73885752e-01]\n", + " [ 5.75223051e-03 4.54582393e-01 -8.90686117e-01]\n", + " [ 1.26991472e-02 4.22182332e-01 -9.06421982e-01]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:fp_optics: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:fp_optics: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:cartToSphere: vec: [[ 0.75358399 -0.21031105 -0.62280048]\n", + " [ 0.76525998 -0.22476145 -0.60320763]\n", + " [ 0.77667273 -0.23922003 -0.58271198]\n", + " [ 0.7877389 -0.25362588 -0.56137451]\n", + " [ 0.79838136 -0.26791959 -0.53926459]\n", + " [ 0.80853129 -0.28204312 -0.51645796]\n", + " [ 0.81812917 -0.29593971 -0.49303584]\n", + " [ 0.82712507 -0.30955402 -0.46908467]\n", + " [ 0.75358399 -0.21031105 -0.62280048]\n", + " [ 0.76514087 -0.18689862 -0.61613988]\n", + " [ 0.77644077 -0.16291634 -0.60876761]\n", + " [ 0.78739979 -0.13844986 -0.60069393]\n", + " [ 0.79794006 -0.11358886 -0.59193684]\n", + " [ 0.807992 -0.08842579 -0.58252022]\n", + " [ 0.81749531 -0.06305534 -0.57247309]\n", + " [ 0.82639929 -0.03757427 -0.5618295 ]\n", + " [ 0.82712507 -0.30955402 -0.46908467]\n", + " [ 0.84006179 -0.2862287 -0.46083545]\n", + " [ 0.85259007 -0.26219592 -0.45204366]\n", + " [ 0.86462064 -0.23754112 -0.44272494]\n", + " [ 0.87607418 -0.21235047 -0.43289872]\n", + " [ 0.88688034 -0.186713 -0.42258906]\n", + " [ 0.89697709 -0.1607226 -0.41182563]\n", + " [ 0.906311 -0.13447879 -0.40064427]\n", + " [ 0.82639929 -0.03757427 -0.5618295 ]\n", + " [ 0.83946068 -0.05103531 -0.54101864]\n", + " [ 0.85210532 -0.06471792 -0.51935355]\n", + " [ 0.86424486 -0.07856487 -0.49689877]\n", + " [ 0.87580073 -0.09252034 -0.47372256]\n", + " [ 0.88670322 -0.10652876 -0.4498989 ]\n", + " [ 0.8968909 -0.1205339 -0.42550945]\n", + " [ 0.906311 -0.13447879 -0.40064427]\n", + " [ 0.75874196 -0.21652741 -0.61435048]\n", + " [ 0.77288694 -0.23425086 -0.58972223]\n", + " [ 0.78655306 -0.25192607 -0.56379743]\n", + " [ 0.79959555 -0.26944303 -0.53670048]\n", + " [ 0.81188784 -0.28669487 -0.50857072]\n", + " [ 0.82332432 -0.30357768 -0.47955986]\n", + " [ 0.75868965 -0.20022767 -0.61991846]\n", + " [ 0.77269292 -0.17113925 -0.61127491]\n", + " [ 0.7862262 -0.14127933 -0.60157171]\n", + " [ 0.79914343 -0.11081144 -0.59083889]\n", + " [ 0.81131664 -0.07990572 -0.57912036]\n", + " [ 0.82263878 -0.04873737 -0.56647163]\n", + " [ 0.83277978 -0.29943036 -0.46563858]\n", + " [ 0.84837186 -0.27035583 -0.45516251]\n", + " [ 0.86326068 -0.2403036 -0.44388646]\n", + " [ 0.87729612 -0.20943199 -0.43184461]\n", + " [ 0.89034857 -0.17790513 -0.41908137]\n", + " [ 0.90230738 -0.14589824 -0.40565391]\n", + " [ 0.83210975 -0.04349989 -0.55290246]\n", + " [ 0.84784891 -0.06015492 -0.52681459]\n", + " [ 0.86287324 -0.07708554 -0.49950734]\n", + " [ 0.87703411 -0.09418842 -0.47110477]\n", + " [ 0.89020308 -0.11136116 -0.44174333]\n", + " [ 0.90227062 -0.12849988 -0.41157685]\n", + " [ 0.75366413 -0.21028138 -0.62271351]\n", + " [ 0.75366413 -0.21028138 -0.62271351]\n", + " [ 0.90624958 -0.13452133 -0.4007689 ]\n", + " [ 0.90624958 -0.13452133 -0.4007689 ]\n", + " [ 0.76382433 -0.20645955 -0.61151194]\n", + " [ 0.77797734 -0.17732032 -0.602751 ]\n", + " [ 0.79164094 -0.1473948 -0.59294131]\n", + " [ 0.80466731 -0.11684709 -0.58211449]\n", + " [ 0.81692789 -0.08584747 -0.57031486]\n", + " [ 0.8283155 -0.05457141 -0.55759788]\n", + " [ 0.7781189 -0.22415495 -0.5867585 ]\n", + " [ 0.79266279 -0.19490784 -0.57766481]\n", + " [ 0.80666351 -0.16483432 -0.56755936]\n", + " [ 0.81997058 -0.13409898 -0.55647615]\n", + " [ 0.83245498 -0.10287198 -0.54445943]\n", + " [ 0.84400944 -0.0713295 -0.53156389]\n", + " [ 0.79191501 -0.24182056 -0.56070797]\n", + " [ 0.80679554 -0.21252022 -0.55128588]\n", + " [ 0.82108386 -0.18235556 -0.54089531]\n", + " [ 0.83462906 -0.15149032 -0.52957059]\n", + " [ 0.84730241 -0.12009381 -0.51735491]\n", + " [ 0.85899644 -0.08834271 -0.50430217]\n", + " [ 0.80506618 -0.2593469 -0.5334863 ]\n", + " [ 0.82022648 -0.23004904 -0.52374227]\n", + " [ 0.83475249 -0.19985086 -0.51307691]\n", + " [ 0.8484937 -0.16891441 -0.50152404]\n", + " [ 0.86132156 -0.13740759 -0.48912607]\n", + " [ 0.87312795 -0.10550725 -0.47593677]\n", + " [ 0.81744523 -0.27662721 -0.50523329]\n", + " [ 0.83282796 -0.24738747 -0.49517373]\n", + " [ 0.84754199 -0.21721327 -0.48424268]\n", + " [ 0.86143723 -0.18626477 -0.47247363]\n", + " [ 0.87438489 -0.15470815 -0.45990917]\n", + " [ 0.88627578 -0.1227199 -0.44660393]\n", + " [ 0.82894638 -0.29355736 -0.47610081]\n", + " [ 0.84449404 -0.2644303 -0.46573214]\n", + " [ 0.85934617 -0.23433652 -0.45454433]\n", + " [ 0.87335274 -0.20343466 -0.44257126]\n", + " [ 0.88638438 -0.17188931 -0.42985673]\n", + " [ 0.89833075 -0.13987608 -0.41645713]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:fp_optics: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "IOPub data rate exceeded.\n", + "The notebook server will temporarily stop sending output\n", + "to the client in order to avoid crashing it.\n", + "To change this limit, set the config variable\n", + "`--NotebookApp.iopub_data_rate_limit`.\n", + "\n", + "Current values:\n", + "NotebookApp.iopub_data_rate_limit=1000000.0 (bytes/sec)\n", + "NotebookApp.rate_limit_window=3.0 (secs)\n", + "\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:fp_optics: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:cartToSphere: vec: [[ 6.34202442e-01 7.44299599e-01 2.09297324e-01]\n", + " [ 6.30190415e-01 7.54203934e-01 1.84489748e-01]\n", + " [ 6.25734317e-01 7.63662533e-01 1.58984589e-01]\n", + " [ 6.20818808e-01 7.72610240e-01 1.32881239e-01]\n", + " [ 6.15434756e-01 7.80989007e-01 1.06283734e-01]\n", + " [ 6.09580447e-01 7.88748053e-01 7.92980956e-02]\n", + " [ 6.03262145e-01 7.95843917e-01 5.20311903e-02]\n", + " [ 5.96494206e-01 8.02240599e-01 2.45903254e-02]\n", + " [ 6.34202442e-01 7.44299599e-01 2.09297324e-01]\n", + " [ 6.54730922e-01 7.28232313e-01 2.02497207e-01]\n", + " [ 6.75196147e-01 7.11324497e-01 1.95262959e-01]\n", + " [ 6.95486560e-01 6.93610582e-01 1.87624107e-01]\n", + " [ 7.15495043e-01 6.75133836e-01 1.79613885e-01]\n", + " [ 7.35120976e-01 6.55945725e-01 1.71266917e-01]\n", + " [ 7.54271081e-01 6.36105700e-01 1.62618188e-01]\n", + " [ 7.72859767e-01 6.15681102e-01 1.53702832e-01]\n", + " [ 5.96494206e-01 8.02240599e-01 2.45903254e-02]\n", + " [ 6.17640887e-01 7.86301919e-01 1.57805811e-02]\n", + " [ 6.38726652e-01 7.69403912e-01 6.77385566e-03]\n", + " [ 6.59637209e-01 7.51580351e-01 -2.39329446e-03]\n", + " [ 6.80266661e-01 7.32871563e-01 -1.16851349e-02]\n", + " [ 7.00515781e-01 7.13325917e-01 -2.10659818e-02]\n", + " [ 7.20290632e-01 6.93001580e-01 -3.04994275e-02]\n", + " [ 7.39502425e-01 6.71967498e-01 -3.99480347e-02]\n", + " [ 7.72859767e-01 6.15681102e-01 1.53702832e-01]\n", + " [ 7.70173429e-01 6.24982502e-01 1.27396080e-01]\n", + " [ 7.66814548e-01 6.33957926e-01 1.00462909e-01]\n", + " [ 7.62762686e-01 6.42544188e-01 7.30072075e-02]\n", + " [ 7.58005298e-01 6.50685081e-01 4.51319506e-02]\n", + " [ 7.52538135e-01 6.58330720e-01 1.69416231e-02]\n", + " [ 7.46365837e-01 6.65437303e-01 -1.14557323e-02]\n", + " [ 7.39502425e-01 6.71967498e-01 -3.99480347e-02]\n", + " [ 6.32577105e-01 7.48614797e-01 1.98549974e-01]\n", + " [ 6.27364329e-01 7.60462392e-01 1.67663198e-01]\n", + " [ 6.21468506e-01 7.71575017e-01 1.35826687e-01]\n", + " [ 6.14870150e-01 7.81842830e-01 1.03230265e-01]\n", + " [ 6.07566163e-01 7.91172354e-01 7.00689918e-02]\n", + " [ 5.99571444e-01 7.99486664e-01 3.65398019e-02]\n", + " [ 6.43140842e-01 7.37433893e-01 2.06303445e-01]\n", + " [ 6.68273124e-01 7.17172622e-01 1.97672611e-01]\n", + " [ 6.93199203e-01 6.95681892e-01 1.88418605e-01]\n", + " [ 7.17719854e-01 6.73037743e-01 1.78601253e-01]\n", + " [ 7.41649930e-01 6.49334901e-01 1.68284186e-01]\n", + " [ 7.64820887e-01 6.24686098e-01 1.57531869e-01]\n", + " [ 6.05738006e-01 7.95390408e-01 2.08702469e-02]\n", + " [ 6.31629564e-01 7.75206652e-01 9.93683509e-03]\n", + " [ 6.57315048e-01 7.53614855e-01 -1.25619542e-03]\n", + " [ 6.82596062e-01 7.30686511e-01 -1.26427358e-02]\n", + " [ 7.07289767e-01 7.06510881e-01 -2.41570062e-02]\n", + " [ 7.31225312e-01 6.81199530e-01 -3.57315490e-02]\n", + " [ 7.71706804e-01 6.19843299e-01 1.42347791e-01]\n", + " [ 7.67964512e-01 6.31032917e-01 1.09672080e-01]\n", + " [ 7.63190985e-01 6.41669196e-01 7.61588070e-02]\n", + " [ 7.57359851e-01 6.51645790e-01 4.19978551e-02]\n", + " [ 7.50463361e-01 6.60870829e-01 7.38182132e-03]\n", + " [ 7.42513950e-01 6.69266320e-01 -2.74886618e-02]\n", + " [ 6.34259640e-01 7.44280667e-01 2.09191296e-01]\n", + " [ 6.34259640e-01 7.44280667e-01 2.09191296e-01]\n", + " [ 7.39462407e-01 6.72019236e-01 -3.98182760e-02]\n", + " [ 7.39462407e-01 6.72019236e-01 -3.98182760e-02]\n", + " [ 6.41499553e-01 7.41766936e-01 1.95601983e-01]\n", + " [ 6.66747344e-01 7.21490873e-01 1.86812470e-01]\n", + " [ 6.91784821e-01 6.99968480e-01 1.77420092e-01]\n", + " [ 7.16411486e-01 6.77276004e-01 1.67486709e-01]\n", + " [ 7.40441763e-01 6.53508190e-01 1.57076543e-01]\n", + " [ 7.63706826e-01 6.28777897e-01 1.46254025e-01]\n", + " [ 6.36387303e-01 7.53615208e-01 1.64545797e-01]\n", + " [ 6.61915723e-01 7.33311000e-01 1.55314370e-01]\n", + " [ 6.87223771e-01 7.11716905e-01 1.45542211e-01]\n", + " [ 7.12109220e-01 6.88909212e-01 1.35294332e-01]\n", + " [ 7.36386194e-01 6.64982311e-01 1.24635064e-01]\n", + " [ 7.59885232e-01 6.40049292e-01 1.13628074e-01]\n", + " [ 6.30566058e-01 7.64734217e-01 1.32544421e-01]\n", + " [ 6.56302756e-01 7.44422708e-01 1.22888261e-01]\n", + " [ 6.81813146e-01 7.22784023e-01 1.12756771e-01]\n", + " [ 7.06895201e-01 6.99893673e-01 1.02215568e-01]\n", + " [ 7.31363512e-01 6.75845095e-01 9.13280944e-02]\n", + " [ 7.55047978e-01 6.50751383e-01 8.01572678e-02]\n", + " [ 6.24015083e-01 7.75014322e-01 9.97896639e-02]\n", + " [ 6.49885646e-01 7.54716772e-01 8.97287095e-02]\n", + " [ 6.75529323e-01 7.33060907e-01 7.92580618e-02]\n", + " [ 7.00745228e-01 7.10120890e-01 6.84430190e-02]\n", + " [ 7.25348715e-01 6.85988791e-01 5.73464904e-02]\n", + " [ 7.49169051e-01 6.60777444e-01 4.60315380e-02]\n", + " [ 6.16730873e-01 7.84362039e-01 6.64772288e-02]\n", + " [ 6.42660542e-01 7.64099397e-01 5.60315965e-02]\n", + " [ 6.68368411e-01 7.42453323e-01 4.52408083e-02]\n", + " [ 6.93654923e-01 7.19496529e-01 3.41700523e-02]\n", + " [ 7.18336253e-01 6.95319643e-01 2.28827666e-02]\n", + " [ 7.42241283e-01 6.70035020e-01 1.14433235e-02]\n", + " [ 6.08728370e-01 7.92700226e-01 3.28043285e-02]\n", + " [ 6.34642873e-01 7.72492505e-01 2.19944004e-02]\n", + " [ 6.60346231e-01 7.50882139e-01 1.09026714e-02]\n", + " [ 6.85639859e-01 7.27940808e-01 -4.05103514e-04]\n", + " [ 7.10340688e-01 7.03758023e-01 -1.18638835e-02]\n", + " [ 7.34277700e-01 6.78445552e-01 -2.34070907e-02]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:fp_optics: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:cartToSphere: vec: [[-0.10461876 0.55270925 -0.82678135]\n", + " [-0.11810611 0.57204846 -0.81167204]\n", + " [-0.13176638 0.59131186 -0.79560537]\n", + " [-0.14553996 0.61039741 -0.77860974]\n", + " [-0.15936822 0.6292087 -0.76072215]\n", + " [-0.17319299 0.64765433 -0.74198926]\n", + " [-0.18695658 0.66564817 -0.72246782]\n", + " [-0.20060221 0.68311009 -0.70222458]\n", + " [-0.10461876 0.55270925 -0.82678135]\n", + " [-0.12983361 0.53932968 -0.83202568]\n", + " [-0.15490609 0.52561039 -0.83650333]\n", + " [-0.17974115 0.51161344 -0.84020522]\n", + " [-0.2042466 0.49740768 -0.84313043]\n", + " [-0.22833333 0.48306919 -0.84528578]\n", + " [-0.25191503 0.46868204 -0.84668528]\n", + " [-0.27490749 0.45433948 -0.8473497 ]\n", + " [-0.20060221 0.68311009 -0.70222458]\n", + " [-0.22660991 0.66915686 -0.70772668]\n", + " [-0.25233143 0.65464993 -0.71257443]\n", + " [-0.2776683 0.63965506 -0.71675778]\n", + " [-0.30252687 0.62424445 -0.72027519]\n", + " [-0.32681891 0.60849606 -0.72313342]\n", + " [-0.35046144 0.59249326 -0.72534717]\n", + " [-0.37337577 0.57632521 -0.72693864]\n", + " [-0.27490749 0.45433948 -0.8473497 ]\n", + " [-0.28938499 0.47195252 -0.83277677]\n", + " [-0.30382702 0.48966751 -0.81726059]\n", + " [-0.31817125 0.50737743 -0.80083406]\n", + " [-0.33235686 0.5249845 -0.78353697]\n", + " [-0.34632438 0.54239888 -0.7654168 ]\n", + " [-0.36001594 0.5595378 -0.74652929]\n", + " [-0.37337577 0.57632521 -0.72693864]\n", + " [-0.11056084 0.56109844 -0.82033215]\n", + " [-0.1272157 0.58476236 -0.80116736]\n", + " [-0.14407073 0.60821044 -0.78059188]\n", + " [-0.16101766 0.6312629 -0.7586702 ]\n", + " [-0.17794938 0.65375152 -0.73548825]\n", + " [-0.19476004 0.6755202 -0.71115469]\n", + " [-0.11566994 0.54698711 -0.82911131]\n", + " [-0.1464905 0.53035253 -0.83502498]\n", + " [-0.17700235 0.51326843 -0.83977716]\n", + " [-0.20703457 0.49585874 -0.84336279]\n", + " [-0.23642305 0.4782636 -0.84579434]\n", + " [-0.26500985 0.46064153 -0.84710044]\n", + " [-0.21192397 0.67703972 -0.70477333]\n", + " [-0.24361921 0.6595585 -0.71107824]\n", + " [-0.27478636 0.64131032 -0.71638923]\n", + " [-0.30525096 0.62242545 -0.72069994]\n", + " [-0.33485056 0.60304737 -0.72402277]\n", + " [-0.36343426 0.58333192 -0.72638792]\n", + " [-0.2811424 0.46204846 -0.84111246]\n", + " [-0.29886991 0.48371917 -0.82261324]\n", + " [-0.31648217 0.50543545 -0.80272912]\n", + " [-0.33386659 0.5270135 -0.78153047]\n", + " [-0.35091373 0.54828783 -0.75910474]\n", + " [-0.3675179 0.56910887 -0.73555808]\n", + " [-0.10475088 0.55273028 -0.82675056]\n", + " [-0.10475088 0.55273028 -0.82675056]\n", + " [-0.37325367 0.57632395 -0.72700234]\n", + " [-0.37325367 0.57632395 -0.72700234]\n", + " [-0.12152183 0.55533092 -0.82270287]\n", + " [-0.15245158 0.53861088 -0.8286476 ]\n", + " [-0.18305791 0.52141714 -0.83343504]\n", + " [-0.2131695 0.5038736 -0.83706042]\n", + " [-0.24262225 0.48611986 -0.83953673]\n", + " [-0.27125864 0.4683133 -0.84089321]\n", + " [-0.13828191 0.5789332 -0.8035636 ]\n", + " [-0.16948302 0.5619941 -0.80959134]\n", + " [-0.20031963 0.5445165 -0.81447764]\n", + " [-0.23061919 0.52662479 -0.81821826]\n", + " [-0.26021757 0.50845781 -0.82082731]\n", + " [-0.28895859 0.49017053 -0.82233557]\n", + " [-0.15522176 0.60233065 -0.78300958]\n", + " [-0.18663694 0.58520676 -0.78911324]\n", + " [-0.21764744 0.56748433 -0.79409768]\n", + " [-0.24807962 0.54928891 -0.79795877]\n", + " [-0.27776937 0.53075971 -0.80071113]\n", + " [-0.30656181 0.51205049 -0.80238653]\n", + " [-0.17223247 0.62534382 -0.76110518]\n", + " [-0.20380279 0.60807017 -0.76727771]\n", + " [-0.23492945 0.59014232 -0.77236014]\n", + " [-0.265438 0.57168737 -0.776348 ]\n", + " [-0.29516454 0.55284555 -0.77925585]\n", + " [-0.3239555 0.53377059 -0.78111573]\n", + " [-0.18920637 0.64780483 -0.73793621]\n", + " [-0.2208714 0.63041762 -0.74417031]\n", + " [-0.2520554 0.61232501 -0.74935049]\n", + " [-0.2825836 0.59365563 -0.75347164]\n", + " [-0.31229253 0.57455111 -0.75654768]\n", + " [-0.34102983 0.55516587 -0.75861025]\n", + " [-0.20603712 0.66955788 -0.71361121]\n", + " [-0.2377354 0.65209445 -0.71989909]\n", + " [-0.26891742 0.63387922 -0.72517622]\n", + " [-0.29940855 0.6150421 -0.72943658]\n", + " [-0.32904604 0.59572612 -0.73269304]\n", + " [-0.35767865 0.57608672 -0.73497624]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:cartToSphere: vec: [[ 0.48593299 -0.34018498 0.80507348]\n", + " [ 0.46126944 -0.34574694 0.81712273]\n", + " [ 0.43574234 -0.35114115 0.82875117]\n", + " [ 0.40943307 -0.35633087 0.8398767 ]\n", + " [ 0.38242756 -0.36128299 0.85042564]\n", + " [ 0.35481805 -0.3659678 0.86033233]\n", + " [ 0.32670398 -0.37035903 0.86953936]\n", + " [ 0.29819169 -0.37443414 0.87799817]\n", + " [ 0.48593299 -0.34018498 0.80507348]\n", + " [ 0.48527407 -0.31341163 0.81626113]\n", + " [ 0.48412406 -0.28648241 0.82677187]\n", + " [ 0.48249075 -0.25950686 0.83657568]\n", + " [ 0.48038551 -0.23259771 0.84565245]\n", + " [ 0.47782274 -0.20587107 0.85399212]\n", + " [ 0.47481939 -0.17944706 0.86159462]\n", + " [ 0.4713947 -0.15345071 0.86846987]\n", + " [ 0.29819169 -0.37443414 0.87799817]\n", + " [ 0.29764436 -0.34670288 0.88949702]\n", + " [ 0.29682938 -0.31875182 0.90016087]\n", + " [ 0.29575383 -0.29069595 0.90995909]\n", + " [ 0.29442809 -0.26265116 0.91887239]\n", + " [ 0.29286566 -0.23473348 0.9268926 ]\n", + " [ 0.29108294 -0.20705942 0.93402201]\n", + " [ 0.28909923 -0.1797475 0.94027255]\n", + " [ 0.4713947 -0.15345071 0.86846987]\n", + " [ 0.44739351 -0.15706346 0.88043746]\n", + " [ 0.42256061 -0.16077945 0.89195992]\n", + " [ 0.39698373 -0.16456047 0.90295281]\n", + " [ 0.37075326 -0.16837369 0.91334129]\n", + " [ 0.34396305 -0.17219115 0.92305993]\n", + " [ 0.316711 -0.17598911 0.93205256]\n", + " [ 0.28909923 -0.1797475 0.94027255]\n", + " [ 0.47528944 -0.3425366 0.81041263]\n", + " [ 0.44447093 -0.34924446 0.82490842]\n", + " [ 0.4124358 -0.35566361 0.83868952]\n", + " [ 0.37934024 -0.3617316 0.85161683]\n", + " [ 0.34535421 -0.36739374 0.86356952]\n", + " [ 0.31066364 -0.37260322 0.87444551]\n", + " [ 0.48562364 -0.32855662 0.81007421]\n", + " [ 0.48448512 -0.29562369 0.82333517]\n", + " [ 0.48261642 -0.26256508 0.83554831]\n", + " [ 0.48003699 -0.229587 0.84667249]\n", + " [ 0.4767733 -0.19690327 0.85668916]\n", + " [ 0.47285752 -0.16473704 0.86560237]\n", + " [ 0.29808431 -0.36236415 0.88308435]\n", + " [ 0.29723262 -0.32821459 0.89662029]\n", + " [ 0.29598538 -0.293849 0.90887041]\n", + " [ 0.29436035 -0.25948044 0.91979448]\n", + " [ 0.29238234 -0.22532253 0.92937738]\n", + " [ 0.29008277 -0.1915905 0.93762736]\n", + " [ 0.46105 -0.15509905 0.87371459]\n", + " [ 0.431063 -0.15960268 0.88809441]\n", + " [ 0.39991359 -0.16422262 0.90172061]\n", + " [ 0.36776705 -0.16889618 0.91445146]\n", + " [ 0.33479621 -0.17357183 0.92616646]\n", + " [ 0.30118306 -0.1782074 0.93676618]\n", + " [ 0.4858488 -0.34011307 0.80515467]\n", + " [ 0.4858488 -0.34011307 0.80515467]\n", + " [ 0.28920125 -0.17982737 0.94022591]\n", + " [ 0.28920125 -0.17982737 0.94022591]\n", + " [ 0.475065 -0.33093409 0.81535015]\n", + " [ 0.47394011 -0.2978647 0.82864793]\n", + " [ 0.47210243 -0.26466131 0.84087674]\n", + " [ 0.46957186 -0.23153031 0.85199529]\n", + " [ 0.46637547 -0.19868512 0.861985 ]\n", + " [ 0.46254594 -0.16634798 0.87084993]\n", + " [ 0.44424888 -0.3375259 0.82989108]\n", + " [ 0.44316497 -0.30411239 0.84327959]\n", + " [ 0.44141931 -0.27054381 0.85554371]\n", + " [ 0.43903284 -0.23702752 0.86664187]\n", + " [ 0.43603392 -0.20377614 0.87655559]\n", + " [ 0.43245663 -0.17100944 0.88528924]\n", + " [ 0.41221675 -0.34385069 0.84370851]\n", + " [ 0.41117805 -0.31015648 0.85716717]\n", + " [ 0.40953205 -0.27628933 0.86945253]\n", + " [ 0.40730005 -0.24245807 0.880523 ]\n", + " [ 0.40451101 -0.2088751 0.89036062]\n", + " [ 0.40119976 -0.17575809 0.89897044]\n", + " [ 0.37912488 -0.34984666 0.85666309]\n", + " [ 0.37813627 -0.31593676 0.87017063]\n", + " [ 0.37659883 -0.28183866 0.88246263]\n", + " [ 0.3745335 -0.24776282 0.89349775]\n", + " [ 0.37196893 -0.21392187 0.90325885]\n", + " [ 0.36893982 -0.18053201 0.91175194]\n", + " [ 0.34514321 -0.35545984 0.86863368]\n", + " [ 0.34420972 -0.32140133 0.88216827]\n", + " [ 0.34279002 -0.28714151 0.89445221]\n", + " [ 0.34090405 -0.25289229 0.9054446 ]\n", + " [ 0.33857923 -0.21886674 0.9151292 ]\n", + " [ 0.3358493 -0.18528027 0.92351311]\n", + " [ 0.31045769 -0.36064409 0.87951797]\n", + " [ 0.30958394 -0.32650592 0.89305748]\n", + " [ 0.30829043 -0.29215525 0.90531891]\n", + " [ 0.30659553 -0.25780493 0.91626186]\n", + " [ 0.3045248 -0.22366848 0.92587097]\n", + " [ 0.30211034 -0.18996108 0.93415423]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:fp_optics: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:fp_optics: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:cartToSphere: vec: [[0.75899813 0.54834324 0.35105774]\n", + " [0.75826349 0.53403487 0.37395619]\n", + " [0.75684745 0.51912801 0.39709955]\n", + " [0.75472992 0.50365493 0.42037418]\n", + " [0.75189914 0.48765429 0.44366764]\n", + " [0.7483507 0.47117119 0.46687144]\n", + " [0.74408715 0.45425728 0.48988227]\n", + " [0.73911798 0.43697069 0.51260241]\n", + " [0.75899813 0.54834324 0.35105774]\n", + " [0.7413232 0.56705813 0.35900555]\n", + " [0.72270519 0.58567984 0.36698274]\n", + " [0.70318867 0.6041118 0.37493283]\n", + " [0.68282775 0.62226156 0.38280127]\n", + " [0.66168455 0.64004192 0.39053796]\n", + " [0.63982856 0.65737138 0.39809834]\n", + " [0.6173365 0.67417435 0.4054437 ]\n", + " [0.73911798 0.43697069 0.51260241]\n", + " [0.72075489 0.45549205 0.52253171]\n", + " [0.701434 0.47402757 0.53224826]\n", + " [0.68120213 0.49248085 0.54168835]\n", + " [0.66011167 0.51076191 0.55079475]\n", + " [0.6382223 0.5287857 0.55951584]\n", + " [0.6156029 0.54647082 0.56780517]\n", + " [0.59233262 0.56373936 0.5756214 ]\n", + " [0.6173365 0.67417435 0.4054437 ]\n", + " [0.61543764 0.66061874 0.42990627]\n", + " [0.6129981 0.64626345 0.45450729]\n", + " [0.61000147 0.63113747 0.47912806]\n", + " [0.60643727 0.61527566 0.50365633]\n", + " [0.60230133 0.59872009 0.52798424]\n", + " [0.5975964 0.5815214 0.55200672]\n", + " [0.59233262 0.56373936 0.5756214 ]\n", + " [0.75870095 0.5422443 0.36103185]\n", + " [0.75734482 0.52430197 0.38927659]\n", + " [0.75494433 0.50549188 0.41777628]\n", + " [0.7514744 0.48588253 0.44632319]\n", + " [0.74692689 0.46555697 0.47471773]\n", + " [0.74130939 0.44461297 0.50277201]\n", + " [0.75140855 0.55646042 0.35459411]\n", + " [0.7291063 0.57934746 0.36436317]\n", + " [0.70543055 0.60199829 0.37412004]\n", + " [0.68047709 0.62424088 0.38376328]\n", + " [0.6543602 0.64591477 0.39320077]\n", + " [0.62721084 0.66687233 0.40235291]\n", + " [0.73125041 0.44509778 0.51687601]\n", + " [0.70809502 0.46782023 0.52890989]\n", + " [0.68354688 0.4904673 0.54056034]\n", + " [0.65770011 0.51287073 0.5517193 ]\n", + " [0.63066478 0.53487377 0.56229172]\n", + " [0.60257201 0.55632797 0.57219416]\n", + " [0.61665198 0.66830731 0.4160597 ]\n", + " [0.61396427 0.65115184 0.44614924]\n", + " [0.61044734 0.63282353 0.47632806]\n", + " [0.60607943 0.61338408 0.5063869 ]\n", + " [0.60085294 0.59291111 0.53612701]\n", + " [0.59477596 0.57150167 0.565356 ]\n", + " [0.75893795 0.54835941 0.35116257]\n", + " [0.75893795 0.54835941 0.35116257]\n", + " [0.59243214 0.56374283 0.57551557]\n", + " [0.59243214 0.56374283 0.57551557]\n", + " [0.75114617 0.55036112 0.36452992]\n", + " [0.72876595 0.57329779 0.37447275]\n", + " [0.70500487 0.59600447 0.38437847]\n", + " [0.67995974 0.6183087 0.39414352]\n", + " [0.6537451 0.64004982 0.40367509]\n", + " [0.626492 0.66107994 0.41289356]\n", + " [0.74972217 0.53244841 0.3929572 ]\n", + " [0.72713723 0.55548366 0.40337248]\n", + " [0.7031563 0.5783091 0.41367838]\n", + " [0.67787749 0.60075184 0.42376802]\n", + " [0.65141507 0.62265104 0.43354825]\n", + " [0.6239 0.64385791 0.44293993]\n", + " [0.74726113 0.51364495 0.4216274 ]\n", + " [0.72449824 0.53671564 0.43247962]\n", + " [0.70033123 0.55960076 0.44315139]\n", + " [0.67485773 0.58212794 0.45353512]\n", + " [0.64819078 0.60413658 0.46353825]\n", + " [0.62046105 0.62547702 0.47308201]\n", + " [0.74373898 0.49401882 0.4503307 ]\n", + " [0.72082641 0.51706088 0.46158135]\n", + " [0.69650726 0.53994568 0.4725847 ]\n", + " [0.67087779 0.562502 0.48323337]\n", + " [0.64404955 0.58456994 0.49343506]\n", + " [0.61615306 0.60599935 0.50311052]\n", + " [0.73914782 0.47365292 0.4788668 ]\n", + " [0.71611363 0.49660206 0.49047698]\n", + " [0.69167542 0.51942617 0.5017784 ]\n", + " [0.66592807 0.5419554 0.51266378]\n", + " [0.63898201 0.56403103 0.52304014]\n", + " [0.61096783 0.58550311 0.53282682]\n", + " [0.73349516 0.4526452 0.50704751]\n", + " [0.71036663 0.47543783 0.51897795]\n", + " [0.68584155 0.49814144 0.53054356]\n", + " [0.66001404 0.52058744 0.54163657]\n", + " [0.63299414 0.54261856 0.55216258]\n", + " [0.60491279 0.56408583 0.56203887]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:fp_optics: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:cartToSphere: vec: [[ 1.04984104e-01 1.34145203e-01 -9.85384901e-01]\n", + " [ 1.17516763e-01 1.57503937e-01 -9.80501056e-01]\n", + " [ 1.30086729e-01 1.81310134e-01 -9.74784119e-01]\n", + " [ 1.42648354e-01 2.05447212e-01 -9.68216345e-01]\n", + " [ 1.55155533e-01 2.29802938e-01 -9.60789972e-01]\n", + " [ 1.67561587e-01 2.54269209e-01 -9.52507367e-01]\n", + " [ 1.79819401e-01 2.78741648e-01 -9.43381194e-01]\n", + " [ 1.91881783e-01 3.03119373e-01 -9.33434533e-01]\n", + " [ 1.04984104e-01 1.34145203e-01 -9.85384901e-01]\n", + " [ 8.01604667e-02 1.44491277e-01 -9.86253806e-01]\n", + " [ 5.48007809e-02 1.55094391e-01 -9.86378530e-01]\n", + " [ 2.90053969e-02 1.65888198e-01 -9.85717907e-01]\n", + " [ 2.87496558e-03 1.76811011e-01 -9.84240622e-01]\n", + " [-2.34892770e-02 1.87805734e-01 -9.81925282e-01]\n", + " [-4.99852803e-02 1.98819460e-01 -9.78760591e-01]\n", + " [-7.65102339e-02 2.09803046e-01 -9.74745539e-01]\n", + " [ 1.91881783e-01 3.03119373e-01 -9.33434533e-01]\n", + " [ 1.66928273e-01 3.15575476e-01 -9.34102281e-01]\n", + " [ 1.41330362e-01 3.28037317e-01 -9.34032787e-01]\n", + " [ 1.15183442e-01 3.40440207e-01 -9.33184462e-01]\n", + " [ 8.85838769e-02 3.52723194e-01 -9.31525225e-01]\n", + " [ 6.16307261e-02 3.64828304e-01 -9.29032810e-01]\n", + " [ 3.44266801e-02 3.76700250e-01 -9.25695266e-01]\n", + " [ 7.07795000e-03 3.88286658e-01 -9.21511462e-01]\n", + " [-7.65102339e-02 2.09803046e-01 -9.74745539e-01]\n", + " [-6.51700144e-02 2.34905466e-01 -9.69831063e-01]\n", + " [-5.35560523e-02 2.60323013e-01 -9.64035102e-01]\n", + " [-4.17114277e-02 2.85943400e-01 -9.57338252e-01]\n", + " [-2.96798610e-02 3.11657333e-01 -9.49730916e-01]\n", + " [-1.75064050e-02 3.37356976e-01 -9.41214001e-01]\n", + " [-5.23774859e-03 3.62935332e-01 -9.31799609e-01]\n", + " [ 7.07795000e-03 3.88286658e-01 -9.21511462e-01]\n", + " [ 1.10356844e-01 1.44302498e-01 -9.83360644e-01]\n", + " [ 1.25747287e-01 1.73248437e-01 -9.76817587e-01]\n", + " [ 1.41148613e-01 2.02750077e-01 -9.69004373e-01]\n", + " [ 1.56476152e-01 2.32598982e-01 -9.59902561e-01]\n", + " [ 1.71643981e-01 2.62596093e-01 -9.49516528e-01]\n", + " [ 1.86565308e-01 2.92550704e-01 -9.37873910e-01]\n", + " [ 9.42757743e-02 1.38699664e-01 -9.85836945e-01]\n", + " [ 6.34781531e-02 1.51562830e-01 -9.86407235e-01]\n", + " [ 3.19749589e-02 1.64745472e-01 -9.85817697e-01]\n", + " [-4.86455084e-05 1.78132071e-01 -9.84006587e-01]\n", + " [-3.24062605e-02 1.91617473e-01 -9.80934543e-01]\n", + " [-6.49096816e-02 2.05105854e-01 -9.76585031e-01]\n", + " [ 1.81046303e-01 3.08461813e-01 -9.33848781e-01]\n", + " [ 1.50017458e-01 3.23739416e-01 -9.34177474e-01]\n", + " [ 1.18115547e-01 3.38961060e-01 -9.33356372e-01]\n", + " [ 8.55174721e-02 3.54013036e-01 -9.31322464e-01]\n", + " [ 5.24057125e-02 3.68788585e-01 -9.28034816e-01]\n", + " [ 1.89708280e-02 3.83187115e-01 -9.23475903e-01]\n", + " [-7.15112816e-02 2.20664049e-01 -9.72724788e-01]\n", + " [-5.74223005e-02 2.51655484e-01 -9.66111897e-01]\n", + " [-4.29650933e-02 2.83008332e-01 -9.58154625e-01]\n", + " [-2.82198448e-02 3.14520237e-01 -9.48831208e-01]\n", + " [-1.32695371e-02 3.45992610e-01 -9.38143397e-01]\n", + " [ 1.79923714e-03 3.77228939e-01 -9.26118292e-01]\n", + " [ 1.04942983e-01 1.34259051e-01 -9.85373776e-01]\n", + " [ 1.04942983e-01 1.34259051e-01 -9.85373776e-01]\n", + " [ 7.12945661e-03 3.88161393e-01 -9.21563836e-01]\n", + " [ 7.12945661e-03 3.88161393e-01 -9.21563836e-01]\n", + " [ 9.96659231e-02 1.48815806e-01 -9.83829538e-01]\n", + " [ 6.87942053e-02 1.61866797e-01 -9.84411752e-01]\n", + " [ 3.72064998e-02 1.75210385e-01 -9.83827728e-01]\n", + " [ 5.08764881e-03 1.88731410e-01 -9.82015565e-01]\n", + " [-2.73760410e-02 2.02325182e-01 -9.78935684e-01]\n", + " [-5.99960705e-02 2.15896146e-01 -9.74571355e-01]\n", + " [ 1.15004268e-01 1.77957161e-01 -9.77294872e-01]\n", + " [ 8.39655252e-02 1.91511503e-01 -9.77892190e-01]\n", + " [ 5.21810695e-02 2.05284650e-01 -9.77310262e-01]\n", + " [ 1.98344708e-02 2.19162828e-01 -9.75486673e-01]\n", + " [-1.28883421e-02 2.33042528e-01 -9.72381135e-01]\n", + " [-4.57979555e-02 2.46828611e-01 -9.67976334e-01]\n", + " [ 1.30375949e-01 2.07638689e-01 -9.69478358e-01]\n", + " [ 9.92339319e-02 2.21654874e-01 -9.70062752e-01]\n", + " [ 6.73162137e-02 2.35820208e-01 -9.69462406e-01]\n", + " [ 3.48047364e-02 2.50022165e-01 -9.67614359e-01]\n", + " [ 1.88488150e-03 2.64157784e-01 -9.64477637e-01]\n", + " [-3.12530555e-02 2.78131624e-01 -9.60034399e-01]\n", + " [ 1.45696252e-01 2.37652399e-01 -9.60361359e-01]\n", + " [ 1.14514595e-01 2.52090669e-01 -9.60904107e-01]\n", + " [ 8.25273232e-02 2.66612675e-01 -9.60263986e-01]\n", + " [ 4.99146231e-02 2.81106455e-01 -9.58377635e-01]\n", + " [ 1.68611516e-02 2.95468721e-01 -9.55203610e-01]\n", + " [-1.64421656e-02 3.09602975e-01 -9.50723752e-01]\n", + " [ 1.60878959e-01 2.67799591e-01 -9.49948072e-01]\n", + " [ 1.29720577e-01 2.82621174e-01 -9.50419825e-01]\n", + " [ 9.77272268e-02 2.97464930e-01 -9.49717855e-01]\n", + " [ 6.50774444e-02 3.12218615e-01 -9.47778699e-01]\n", + " [ 3.19550047e-02 3.26777798e-01 -9.44560823e-01]\n", + " [-1.44896950e-03 3.41044369e-01 -9.40046083e-01]\n", + " [ 1.75836833e-01 2.97889545e-01 -9.38266075e-01]\n", + " [ 1.44763479e-01 3.13055289e-01 -9.38637268e-01]\n", + " [ 1.12826790e-01 3.28184946e-01 -9.37851138e-01]\n", + " [ 8.02039994e-02 3.43165272e-01 -9.35844493e-01]\n", + " [ 4.70779208e-02 3.57890161e-01 -9.32576164e-01]\n", + " [ 1.36393510e-02 3.72259655e-01 -9.28028403e-01]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:fp_optics: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:cartToSphere: vec: [[-0.20440562 -0.14200583 0.9685312 ]\n", + " [-0.18786655 -0.16460257 0.96830375]\n", + " [-0.17084499 -0.18751671 0.96728976]\n", + " [-0.15340062 -0.21064965 0.96545066]\n", + " [-0.13559531 -0.23390414 0.9627579 ]\n", + " [-0.11749393 -0.25718333 0.95919336]\n", + " [-0.09916449 -0.28039084 0.95474991]\n", + " [-0.08067774 -0.30343139 0.94943167]\n", + " [-0.20440562 -0.14200583 0.9685312 ]\n", + " [-0.22699419 -0.15855475 0.96090271]\n", + " [-0.24926134 -0.1749975 0.95249392]\n", + " [-0.27112108 -0.19127399 0.94334915]\n", + " [-0.2924893 -0.20732777 0.93352301]\n", + " [-0.31328336 -0.22310634 0.92308022]\n", + " [-0.33342111 -0.23856142 0.91209584]\n", + " [-0.35281954 -0.25364875 0.9006557 ]\n", + " [-0.08067774 -0.30343139 0.94943167]\n", + " [-0.10413516 -0.32042344 0.94153316]\n", + " [-0.12742179 -0.33707507 0.93281514]\n", + " [-0.15044719 -0.35332478 0.92332402]\n", + " [-0.17312407 -0.36911619 0.91311625]\n", + " [-0.19536888 -0.38439833 0.90225768]\n", + " [-0.21710177 -0.39912551 0.89082302]\n", + " [-0.23824559 -0.4132566 0.87889591]\n", + " [-0.35281954 -0.25364875 0.9006557 ]\n", + " [-0.33816073 -0.2763683 0.89959318]\n", + " [-0.3228251 -0.29928283 0.89789406]\n", + " [-0.3068773 -0.32228853 0.8955202 ]\n", + " [-0.29038093 -0.34528504 0.89244448]\n", + " [-0.27339983 -0.3681748 0.88865058]\n", + " [-0.25599908 -0.39086275 0.88413279]\n", + " [-0.23824559 -0.4132566 0.87889591]\n", + " [-0.19733562 -0.15186957 0.96850105]\n", + " [-0.17673417 -0.17979072 0.96769847]\n", + " [-0.15546697 -0.20809031 0.96567512]\n", + " [-0.13364696 -0.23658883 0.96237426]\n", + " [-0.11139355 -0.265108 0.95776261]\n", + " [-0.08883313 -0.29347078 0.9518317 ]\n", + " [-0.21423291 -0.14930713 0.96530391]\n", + " [-0.24171318 -0.16952632 0.95542429]\n", + " [-0.26862508 -0.18952577 0.94441545]\n", + " [-0.294813 -0.20920002 0.93237366]\n", + " [-0.32012468 -0.22845247 0.91941811]\n", + " [-0.34440862 -0.24719589 0.90569139]\n", + " [-0.09098375 -0.31079931 0.94611085]\n", + " [-0.11962968 -0.33140395 0.93587401]\n", + " [-0.14792877 -0.35143577 0.92445118]\n", + " [-0.17571899 -0.37078882 0.91194215]\n", + " [-0.20284654 -0.38936925 0.89846807]\n", + " [-0.22916559 -0.40709489 0.88417017]\n", + " [-0.34645018 -0.263473 0.90030786]\n", + " [-0.32801949 -0.29146304 0.89858361]\n", + " [-0.30863673 -0.31964243 0.89586388]\n", + " [-0.28841936 -0.34782506 0.89209417]\n", + " [-0.267485 -0.37583126 0.88724441]\n", + " [-0.24595423 -0.40348718 0.88130847]\n", + " [-0.20442764 -0.14213915 0.968507 ]\n", + " [-0.20442764 -0.14213915 0.968507 ]\n", + " [-0.23823561 -0.41313336 0.87895655]\n", + " [-0.23823561 -0.41313336 0.87895655]\n", + " [-0.20718061 -0.15906401 0.96528485]\n", + " [-0.23478196 -0.17934262 0.95536049]\n", + " [-0.26182723 -0.19937812 0.94429596]\n", + " [-0.28816087 -0.2190646 0.93218776]\n", + " [-0.3136313 -0.23830514 0.91915508]\n", + " [-0.33808831 -0.25701239 0.90534023]\n", + " [-0.18667952 -0.18705126 0.96444937]\n", + " [-0.21458978 -0.20747384 0.95441387]\n", + " [-0.24197916 -0.22758823 0.94321243]\n", + " [-0.2686916 -0.24728748 0.93094238]\n", + " [-0.29457669 -0.26647417 0.91772332]\n", + " [-0.31948735 -0.28506086 0.90369693]\n", + " [-0.16549438 -0.21540361 0.96239955]\n", + " [-0.19366276 -0.23593308 0.95227639]\n", + " [-0.22134674 -0.25609066 0.94096929]\n", + " [-0.24838908 -0.27576883 0.92857656]\n", + " [-0.27463951 -0.2948702 0.91521839]\n", + " [-0.29995287 -0.31330789 0.90103631]\n", + " [-0.1437376 -0.24394111 0.95907885]\n", + " [-0.17211215 -0.26453921 0.9488922 ]\n", + " [-0.20004073 -0.28470309 0.93751152]\n", + " [-0.2273646 -0.30432517 0.92503596]\n", + " [-0.25393283 -0.32330868 0.91158632]\n", + " [-0.27960101 -0.34156781 0.89730413]\n", + " [-0.12152806 -0.27248511 0.95445419]\n", + " [-0.15005524 -0.29311271 0.94422898]\n", + " [-0.17817715 -0.31324554 0.93280766]\n", + " [-0.20573348 -0.33277643 0.92028994]\n", + " [-0.23257218 -0.35160966 0.90679702]\n", + " [-0.25854864 -0.36966087 0.89247041]\n", + " [-0.09899164 -0.30085829 0.94851723]\n", + " [-0.12761647 -0.32147588 0.9382789 ]\n", + " [-0.15587887 -0.34154051 0.9268505 ]\n", + " [-0.1836172 -0.36094584 0.9143319 ]\n", + " [-0.21067811 -0.37959751 0.90084431]\n", + " [-0.23691616 -0.39741278 0.88652908]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:cartToSphere: vec: [[-1.40088401e-01 6.12331137e-01 -7.78091138e-01]\n", + " [-1.49374050e-01 5.91450240e-01 -7.92385011e-01]\n", + " [-1.58597195e-01 5.69656982e-01 -8.06435275e-01]\n", + " [-1.67725993e-01 5.47022895e-01 -8.20142636e-01]\n", + " [-1.76728151e-01 5.23623883e-01 -8.33417776e-01]\n", + " [-1.85570832e-01 4.99540487e-01 -8.46181286e-01]\n", + " [-1.94220863e-01 4.74858265e-01 -8.58363492e-01]\n", + " [-2.02645119e-01 4.49667988e-01 -8.69904395e-01]\n", + " [-1.40088401e-01 6.12331137e-01 -7.78091138e-01]\n", + " [-1.14262551e-01 6.09022081e-01 -7.84879719e-01]\n", + " [-8.78341841e-02 6.05064522e-01 -7.91316675e-01]\n", + " [-6.09087108e-02 6.00461057e-01 -7.97330952e-01]\n", + " [-3.35917911e-02 5.95218255e-01 -8.02861645e-01]\n", + " [-5.98962935e-03 5.89346715e-01 -8.07858016e-01]\n", + " [ 2.17907396e-02 5.82861443e-01 -8.12279325e-01]\n", + " [ 4.96414420e-02 5.75782280e-01 -8.16094659e-01]\n", + " [-2.02645119e-01 4.49667988e-01 -8.69904395e-01]\n", + " [-1.76420283e-01 4.44802350e-01 -8.78081291e-01]\n", + " [-1.49516839e-01 4.39476463e-01 -8.85722955e-01]\n", + " [-1.22035058e-01 4.33692107e-01 -8.92758982e-01]\n", + " [-9.40762198e-02 4.27455323e-01 -8.99128251e-01]\n", + " [-6.57444330e-02 4.20776939e-01 -9.04778667e-01]\n", + " [-3.71476248e-02 4.13673014e-01 -9.09667352e-01]\n", + " [-8.39742962e-03 4.06165066e-01 -9.13761141e-01]\n", + " [ 4.96414420e-02 5.75782280e-01 -8.16094659e-01]\n", + " [ 4.17535928e-02 5.53847064e-01 -8.31570843e-01]\n", + " [ 3.36802491e-02 5.31024701e-01 -8.46686724e-01]\n", + " [ 2.54513243e-02 5.07382300e-01 -8.61345129e-01]\n", + " [ 1.70972112e-02 4.82992152e-01 -8.75457747e-01]\n", + " [ 8.64924271e-03 4.57933356e-01 -8.88944448e-01]\n", + " [ 1.39878897e-04 4.32292779e-01 -9.01733294e-01]\n", + " [-8.39742962e-03 4.06165066e-01 -9.13761141e-01]\n", + " [-1.44055211e-01 6.03333011e-01 -7.84370686e-01]\n", + " [-1.55397062e-01 5.77118035e-01 -8.01739688e-01]\n", + " [-1.66613599e-01 5.49603229e-01 -8.18642901e-01]\n", + " [-1.77645573e-01 5.20926515e-01 -8.34911742e-01]\n", + " [-1.88432556e-01 4.91236209e-01 -8.50399999e-01]\n", + " [-1.98913474e-01 4.60691989e-01 -8.64983422e-01]\n", + " [-1.28940614e-01 6.10897998e-01 -7.81138883e-01]\n", + " [-9.68691622e-02 6.06405297e-01 -7.89233160e-01]\n", + " [-6.39973512e-02 6.00940751e-01 -7.96727402e-01]\n", + " [-3.05195898e-02 5.94514816e-01 -8.03505251e-01]\n", + " [ 3.36856974e-03 5.87147048e-01 -8.09473283e-01]\n", + " [ 3.74697166e-02 5.78867060e-01 -8.14560585e-01]\n", + " [-1.91272384e-01 4.47690345e-01 -8.73491975e-01]\n", + " [-1.58661908e-01 4.41418364e-01 -8.83162628e-01]\n", + " [-1.25131809e-01 4.34456232e-01 -8.91958414e-01]\n", + " [-9.08680222e-02 4.26813277e-01 -8.99762985e-01]\n", + " [-5.60623257e-02 4.18509478e-01 -9.06480465e-01]\n", + " [-2.09149989e-02 4.09576662e-01 -9.12035921e-01]\n", + " [ 4.61314216e-02 5.66356967e-01 -8.22867959e-01]\n", + " [ 3.63346252e-02 5.38868572e-01 -8.41605880e-01]\n", + " [ 2.62890849e-02 5.10113802e-01 -8.59705062e-01]\n", + " [ 1.60505306e-02 4.80223502e-01 -8.76999298e-01]\n", + " [ 5.67667261e-03 4.49343402e-01 -8.93341078e-01]\n", + " [-4.77229631e-03 4.17636689e-01 -9.08601574e-01]\n", + " [-1.40033054e-01 6.12251150e-01 -7.78164040e-01]\n", + " [-1.40033054e-01 6.12251150e-01 -7.78164040e-01]\n", + " [-8.46667354e-03 4.06281464e-01 -9.13708754e-01]\n", + " [-8.46667354e-03 4.06281464e-01 -9.13708754e-01]\n", + " [-1.32930637e-01 6.01937793e-01 -7.87401003e-01]\n", + " [-1.00763289e-01 5.97335898e-01 -7.95635963e-01]\n", + " [-6.77882255e-02 5.91776953e-01 -8.03246410e-01]\n", + " [-3.41994854e-02 5.85271096e-01 -8.10116127e-01]\n", + " [-1.92460035e-04 5.77837423e-01 -8.16151870e-01]\n", + " [ 3.40351913e-02 5.69505188e-01 -8.21282805e-01]\n", + " [-1.44197269e-01 5.75603218e-01 -8.04914954e-01]\n", + " [-1.11803292e-01 5.70692571e-01 -8.13517064e-01]\n", + " [-7.85805261e-02 5.64868966e-01 -8.21430552e-01]\n", + " [-4.47215513e-02 5.58141384e-01 -8.28539787e-01]\n", + " [-1.04212018e-02 5.50527656e-01 -8.34751879e-01]\n", + " [ 2.41220392e-02 5.42056217e-01 -8.39995944e-01]\n", + " [-1.55362125e-01 5.47968054e-01 -8.21945024e-01]\n", + " [-1.22808304e-01 5.42748511e-01 -8.30868326e-01]\n", + " [-8.94042537e-02 5.36662793e-01 -8.39047035e-01]\n", + " [-5.53407561e-02 5.29718845e-01 -8.46365965e-01]\n", + " [-2.08119997e-02 5.21933695e-01 -8.52732126e-01]\n", + " [ 1.39826497e-02 5.13335490e-01 -8.58074099e-01]\n", + " [-1.66365845e-01 5.19169786e-01 -8.38322813e-01]\n", + " [-1.33718600e-01 5.13639525e-01 -8.47522138e-01]\n", + " [-1.00199628e-01 5.07292350e-01 -8.55929031e-01]\n", + " [-6.59978815e-02 5.00135749e-01 -8.63428348e-01]\n", + " [-3.13068453e-02 4.92186717e-01 -8.69926501e-01]\n", + " [ 3.67337690e-03 4.83473809e-01 -8.75351120e-01]\n", + " [-1.77147657e-01 4.89356392e-01 -8.53902236e-01]\n", + " [-1.44472540e-01 4.83512562e-01 -8.63332663e-01]\n", + " [-1.10904666e-01 4.76903692e-01 -8.71930630e-01]\n", + " [-7.66313845e-02 4.69537587e-01 -8.79580630e-01]\n", + " [-4.18454410e-02 4.61432061e-01 -8.86188136e-01]\n", + " [-6.74733376e-03 4.52616744e-01 -8.91679627e-01]\n", + " [-1.87646043e-01 4.58687571e-01 -8.68558965e-01]\n", + " [-1.55007487e-01 4.52527562e-01 -8.78175088e-01]\n", + " [-1.21456105e-01 4.45657303e-01 -8.86926143e-01]\n", + " [-8.71780932e-02 4.38085630e-01 -8.94696016e-01]\n", + " [-5.23654693e-02 4.29831877e-01 -9.01389159e-01]\n", + " [-1.72186571e-02 4.20927247e-01 -9.06930963e-01]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:fp_optics: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:fp_optics: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:cartToSphere: vec: [[-0.69372053 -0.61271304 -0.37859551]\n", + " [-0.69139544 -0.59949823 -0.40320494]\n", + " [-0.68846423 -0.58553652 -0.42797662]\n", + " [-0.68490864 -0.57085828 -0.45279243]\n", + " [-0.68071729 -0.55549899 -0.47754041]\n", + " [-0.67588609 -0.53950058 -0.50211266]\n", + " [-0.67041881 -0.52291279 -0.52640369]\n", + " [-0.66432764 -0.50579369 -0.55031039]\n", + " [-0.69372053 -0.61271304 -0.37859551]\n", + " [-0.71422791 -0.59382668 -0.37047048]\n", + " [-0.73406331 -0.57445648 -0.3621475 ]\n", + " [-0.75315737 -0.55468383 -0.35366626]\n", + " [-0.77144871 -0.53459539 -0.34507195]\n", + " [-0.78888406 -0.51428279 -0.33641516]\n", + " [-0.80541858 -0.49384225 -0.32775103]\n", + " [-0.82101691 -0.47337369 -0.31913726]\n", + " [-0.66432764 -0.50579369 -0.55031039]\n", + " [-0.68554529 -0.48632613 -0.54176983]\n", + " [-0.706078 -0.466484 -0.53277251]\n", + " [-0.72585341 -0.44635206 -0.52336094]\n", + " [-0.74480998 -0.42601772 -0.51358252]\n", + " [-0.76289637 -0.40557081 -0.50348927]\n", + " [-0.78006985 -0.38510474 -0.49313828]\n", + " [-0.79629456 -0.36471821 -0.48259258]\n", + " [-0.82101691 -0.47337369 -0.31913726]\n", + " [-0.81972905 -0.45926285 -0.34223081]\n", + " [-0.81771407 -0.44461577 -0.36559611]\n", + " [-0.81495113 -0.42946623 -0.38911876]\n", + " [-0.81142805 -0.41385361 -0.41268596]\n", + " [-0.80714064 -0.39782306 -0.43618895]\n", + " [-0.80209238 -0.38142564 -0.45952398]\n", + " [-0.79629456 -0.36471821 -0.48259258]\n", + " [-0.69285132 -0.606981 -0.38926998]\n", + " [-0.68959744 -0.5902784 -0.41955545]\n", + " [-0.68541411 -0.5724837 -0.44996656]\n", + " [-0.68027753 -0.55366007 -0.48029472]\n", + " [-0.67418021 -0.53388486 -0.51034106]\n", + " [-0.6671326 -0.51325312 -0.53991233]\n", + " [-0.70273302 -0.60449885 -0.37516323]\n", + " [-0.72742485 -0.5810157 -0.3650669 ]\n", + " [-0.7510375 -0.55688614 -0.35471186]\n", + " [-0.77345463 -0.53226753 -0.34417904]\n", + " [-0.79457821 -0.50732851 -0.33356147]\n", + " [-0.81432954 -0.48224786 -0.32296191]\n", + " [-0.67367963 -0.49741647 -0.54656437]\n", + " [-0.69923296 -0.47329455 -0.53578497]\n", + " [-0.72368438 -0.44869378 -0.52436133]\n", + " [-0.74691607 -0.42377403 -0.51237872]\n", + " [-0.76883334 -0.39870082 -0.49993295]\n", + " [-0.7893604 -0.37364825 -0.48713155]\n", + " [-0.82049119 -0.46735925 -0.32919529]\n", + " [-0.81842648 -0.44970073 -0.3576973 ]\n", + " [-0.81524792 -0.43126953 -0.38649377]\n", + " [-0.81092956 -0.4121358 -0.41537613]\n", + " [-0.80546364 -0.39238269 -0.44414429]\n", + " [-0.79885981 -0.37210662 -0.47260942]\n", + " [-0.69378478 -0.61260547 -0.37865184]\n", + " [-0.69378478 -0.61260547 -0.37865184]\n", + " [-0.79626182 -0.36484527 -0.48255057]\n", + " [-0.79626182 -0.36484527 -0.48255057]\n", + " [-0.70183445 -0.59884322 -0.38576574]\n", + " [-0.72662086 -0.57527547 -0.37560651]\n", + " [-0.75032157 -0.55106709 -0.36516108]\n", + " [-0.77282014 -0.52637577 -0.35451034]\n", + " [-0.7940184 -0.50137037 -0.34374778]\n", + " [-0.81383702 -0.47623006 -0.33297782]\n", + " [-0.69866837 -0.58206266 -0.4160115 ]\n", + " [-0.72369377 -0.55828637 -0.40568912]\n", + " [-0.74761821 -0.53388903 -0.39500572]\n", + " [-0.77032522 -0.50902947 -0.38404174]\n", + " [-0.791717 -0.48387684 -0.37289059]\n", + " [-0.81171366 -0.4586106 -0.36165902]\n", + " [-0.69455647 -0.5642053 -0.44638961]\n", + " [-0.71977788 -0.54026702 -0.43592585]\n", + " [-0.74388794 -0.51573225 -0.42503057]\n", + " [-0.76677013 -0.490761 -0.41378401]\n", + " [-0.78832776 -0.46552232 -0.4022789 ]\n", + " [-0.80848175 -0.44019499 -0.39062211]\n", + " [-0.6894746 -0.54533469 -0.47669157]\n", + " [-0.71484845 -0.52128236 -0.4661077 ]\n", + " [-0.73910595 -0.49666321 -0.45502533]\n", + " [-0.76213042 -0.47163808 -0.44352537]\n", + " [-0.78382632 -0.44637548 -0.4317004 ]\n", + " [-0.80411601 -0.42105291 -0.41965687]\n", + " [-0.6834147 -0.52552877 -0.50671871]\n", + " [-0.7088962 -0.50141218 -0.49603629]\n", + " [-0.73326266 -0.4767633 -0.48479133]\n", + " [-0.756397 -0.45174315 -0.47306628]\n", + " [-0.77820449 -0.4265192 -0.4609546 ]\n", + " [-0.79860877 -0.40126738 -0.44856273]\n", + " [-0.67638658 -0.50488317 -0.53627808]\n", + " [-0.7019295 -0.48075352 -0.52551977]\n", + " [-0.72636578 -0.45613043 -0.51413791]\n", + " [-0.74957779 -0.43117421 -0.50221702]\n", + " [-0.77147095 -0.40605093 -0.48985223]\n", + " [-0.79196951 -0.38093507 -0.47715067]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:fp_optics: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:cartToSphere: vec: [[-0.85876151 0.30582032 -0.41109926]\n", + " [-0.84457319 0.3136926 -0.43392751]\n", + " [-0.82942021 0.3214672 -0.45685989]\n", + " [-0.81332583 0.32909948 -0.47978602]\n", + " [-0.79632185 0.33654806 -0.50260015]\n", + " [-0.7784499 0.3437744 -0.52519988]\n", + " [-0.75976224 0.35074288 -0.54748586]\n", + " [-0.74032193 0.35742108 -0.56936246]\n", + " [-0.85876151 0.30582032 -0.41109926]\n", + " [-0.85448388 0.33207185 -0.39948164]\n", + " [-0.84945487 0.35798813 -0.38764793]\n", + " [-0.84370293 0.3834727 -0.37565151]\n", + " [-0.83726471 0.40843384 -0.36355138]\n", + " [-0.83018476 0.43278453 -0.35141261]\n", + " [-0.82251524 0.45644211 -0.33930707]\n", + " [-0.81431598 0.47932764 -0.32731408]\n", + " [-0.74032193 0.35742108 -0.56936246]\n", + " [-0.73596892 0.38453136 -0.55721215]\n", + " [-0.73096825 0.41120835 -0.54460362]\n", + " [-0.72534924 0.43735156 -0.53159392]\n", + " [-0.71914904 0.46286786 -0.51824512]\n", + " [-0.71241218 0.48767179 -0.50462374]\n", + " [-0.70519021 0.51168487 -0.49080073]\n", + " [-0.69754183 0.53483404 -0.47685212]\n", + " [-0.81431598 0.47932764 -0.32731408]\n", + " [-0.80004457 0.48837481 -0.34845191]\n", + " [-0.78491058 0.49712084 -0.36984625]\n", + " [-0.76894122 0.50551964 -0.39138125]\n", + " [-0.75217171 0.51352829 -0.41294844]\n", + " [-0.73464564 0.52110705 -0.43444588]\n", + " [-0.71641534 0.5282197 -0.45577736]\n", + " [-0.69754183 0.53483404 -0.47685212]\n", + " [-0.85268176 0.30935225 -0.42099288]\n", + " [-0.83464115 0.31894154 -0.44905506]\n", + " [-0.81517385 0.32833922 -0.47716345]\n", + " [-0.79433478 0.33746774 -0.50512155]\n", + " [-0.77220069 0.34625619 -0.53274079]\n", + " [-0.74887229 0.35464029 -0.55983976]\n", + " [-0.8569434 0.31732834 -0.40614127]\n", + " [-0.85119216 0.34929008 -0.39175037]\n", + " [-0.84433968 0.3806518 -0.37708713]\n", + " [-0.83645008 0.41124266 -0.36225784]\n", + " [-0.8276053 0.44090243 -0.34738238]\n", + " [-0.81790456 0.46948052 -0.33259612]\n", + " [-0.73857284 0.36926551 -0.56405066]\n", + " [-0.73279888 0.40221349 -0.54884434]\n", + " [-0.7260802 0.43441009 -0.53300602]\n", + " [-0.71848201 0.46568074 -0.51664789]\n", + " [-0.71008624 0.49586803 -0.49989242]\n", + " [-0.70099073 0.52482984 -0.48287228]\n", + " [-0.80822993 0.48322915 -0.33653227]\n", + " [-0.79015567 0.49412042 -0.36262794]\n", + " [-0.77081184 0.50451334 -0.3889928 ]\n", + " [-0.7502599 0.51432759 -0.41542414]\n", + " [-0.72858019 0.52349003 -0.44173419]\n", + " [-0.70587263 0.53193564 -0.46774813]\n", + " [-0.85870133 0.30593759 -0.41113771]\n", + " [-0.85870133 0.30593759 -0.41113771]\n", + " [-0.6976342 0.53473469 -0.4768284 ]\n", + " [-0.6976342 0.53473469 -0.4768284 ]\n", + " [-0.85091751 0.32078704 -0.41597483]\n", + " [-0.84515045 0.35286585 -0.40150518]\n", + " [-0.83828545 0.38433281 -0.38673736]\n", + " [-0.83038702 0.41501677 -0.37177745]\n", + " [-0.82153745 0.44475767 -0.35674477]\n", + " [-0.81183614 0.47340548 -0.34177379]\n", + " [-0.83286141 0.33048706 -0.44398217]\n", + " [-0.82705918 0.36285886 -0.4293094 ]\n", + " [-0.82017258 0.39458661 -0.41426845]\n", + " [-0.81226714 0.4254982 -0.39896538]\n", + " [-0.80342611 0.45543405 -0.38351834]\n", + " [-0.79374938 0.48424584 -0.36805963]\n", + " [-0.81338227 0.33997438 -0.47204523]\n", + " [-0.80755976 0.37258101 -0.45719866]\n", + " [-0.80067307 0.40451364 -0.44191781]\n", + " [-0.79278852 0.4355991 -0.4263095 ]\n", + " [-0.78398997 0.46567828 -0.41049174]\n", + " [-0.77437761 0.4946047 -0.39459537]\n", + " [-0.79253515 0.34917085 -0.49996775]\n", + " [-0.78670802 0.3819525 -0.48497709]\n", + " [-0.77984395 0.41403287 -0.46948929]\n", + " [-0.77200958 0.44523793 -0.45361261]\n", + " [-0.7632889 0.47540904 -0.43746578]\n", + " [-0.75378196 0.50440141 -0.42117927]\n", + " [-0.77039691 0.35800481 -0.52756152]\n", + " [-0.76458135 0.39089987 -0.51245746]\n", + " [-0.75776331 0.42306968 -0.49679656]\n", + " [-0.75000917 0.45433965 -0.4806888 ]\n", + " [-0.74140246 0.48455168 -0.46425431]\n", + " [-0.73204256 0.51356241 -0.4476241 ]\n", + " [-0.74706837 0.36641136 -0.55464545]\n", + " [-0.7412807 0.39935678 -0.53945999]\n", + " [-0.73453207 0.43155687 -0.52366144]\n", + " [-0.72688806 0.46283699 -0.50736147]\n", + " [-0.71843111 0.49303953 -0.49068194]\n", + " [-0.70925951 0.52202215 -0.47375503]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:fp_optics: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:cartToSphere: vec: [[ 7.80246338e-01 6.07166649e-01 1.50214225e-01]\n", + " [ 7.77637901e-01 6.16388333e-01 1.23873799e-01]\n", + " [ 7.74348014e-01 6.25294712e-01 9.69106667e-02]\n", + " [ 7.70356074e-01 6.33822663e-01 6.94287493e-02]\n", + " [ 7.65649252e-01 6.41916186e-01 4.15311030e-02]\n", + " [ 7.60222911e-01 6.49525705e-01 1.33223321e-02]\n", + " [ 7.54081279e-01 6.56607748e-01 -1.50893772e-02]\n", + " [ 7.47238031e-01 6.63125236e-01 -4.35918076e-02]\n", + " [ 7.80246338e-01 6.07166649e-01 1.50214225e-01]\n", + " [ 7.97916012e-01 5.86046130e-01 1.40996354e-01]\n", + " [ 8.14851645e-01 5.64534326e-01 1.31597076e-01]\n", + " [ 8.30996174e-01 5.42723395e-01 1.22051940e-01]\n", + " [ 8.46301372e-01 5.20712108e-01 1.12396122e-01]\n", + " [ 8.60727918e-01 4.98605545e-01 1.02664316e-01]\n", + " [ 8.74245647e-01 4.76514230e-01 9.28909941e-02]\n", + " [ 8.86834338e-01 4.54551875e-01 8.31110760e-02]\n", + " [ 7.47238031e-01 6.63125236e-01 -4.35918076e-02]\n", + " [ 7.65521457e-01 6.41225067e-01 -5.29840728e-02]\n", + " [ 7.83057631e-01 6.18820983e-01 -6.23003833e-02]\n", + " [ 7.99787081e-01 5.96009838e-01 -7.15045370e-02]\n", + " [ 8.15661619e-01 5.72892519e-01 -8.05623051e-02]\n", + " [ 8.30643708e-01 5.49573717e-01 -8.94413793e-02]\n", + " [ 8.44705017e-01 5.26163195e-01 -9.81107824e-02]\n", + " [ 8.57824981e-01 5.02777796e-01 -1.06540089e-01]\n", + " [ 8.86834338e-01 4.54551875e-01 8.31110760e-02]\n", + " [ 8.85069699e-01 4.61942344e-01 5.71042821e-02]\n", + " [ 8.82534319e-01 4.69253998e-01 3.05591209e-02]\n", + " [ 8.79205639e-01 4.76429041e-01 3.57957156e-03]\n", + " [ 8.75070464e-01 4.83413563e-01 -2.37278552e-02]\n", + " [ 8.70124389e-01 4.90159574e-01 -5.12556385e-02]\n", + " [ 8.64371605e-01 4.96625798e-01 -7.88957839e-02]\n", + " [ 8.57824981e-01 5.02777796e-01 -1.06540089e-01]\n", + " [ 7.79253043e-01 6.11150008e-01 1.38781710e-01]\n", + " [ 7.75601476e-01 6.22247729e-01 1.06066560e-01]\n", + " [ 7.70904909e-01 6.32808450e-01 7.25195703e-02]\n", + " [ 7.65136490e-01 6.42726151e-01 3.83307520e-02]\n", + " [ 7.58287760e-01 6.51909530e-01 3.69292497e-03]\n", + " [ 7.50370411e-01 6.60281185e-01 -3.11930111e-02]\n", + " [ 7.88029076e-01 5.98043452e-01 1.46130779e-01]\n", + " [ 8.09199670e-01 5.71882862e-01 1.34706666e-01]\n", + " [ 8.29209971e-01 5.45225279e-01 1.23045600e-01]\n", + " [ 8.47967523e-01 5.18249802e-01 1.11212510e-01]\n", + " [ 8.65399961e-01 4.91149792e-01 9.92712951e-02]\n", + " [ 8.81455814e-01 4.64130240e-01 8.72855526e-02]\n", + " [ 7.55321848e-01 6.53623358e-01 -4.75963401e-02]\n", + " [ 7.77235504e-01 6.26431753e-01 -5.90612356e-02]\n", + " [ 7.97966389e-01 5.98579027e-01 -7.03760673e-02]\n", + " [ 8.17421088e-01 5.70249304e-01 -8.14769732e-02]\n", + " [ 8.35530323e-01 5.41635466e-01 -9.23043968e-02]\n", + " [ 8.52245203e-01 5.12942445e-01 -1.02801563e-01]\n", + " [ 8.86116283e-01 4.57855334e-01 7.18778520e-02]\n", + " [ 8.83438251e-01 4.66868780e-01 3.96282501e-02]\n", + " [ 8.79579056e-01 4.75705957e-01 6.67282976e-03]\n", + " [ 8.74510563e-01 4.84265833e-01 -2.67932382e-02]\n", + " [ 8.68224643e-01 4.92460144e-01 -6.05720655e-02]\n", + " [ 8.60732608e-01 5.00215745e-01 -9.44647345e-02]\n", + " [ 7.80300153e-01 6.07127181e-01 1.50094158e-01]\n", + " [ 7.80300153e-01 6.07127181e-01 1.50094158e-01]\n", + " [ 8.57805455e-01 5.02837114e-01 -1.06417287e-01]\n", + " [ 8.57805455e-01 5.02837114e-01 -1.06417287e-01]\n", + " [ 7.87012049e-01 6.02029695e-01 1.34804601e-01]\n", + " [ 8.08263124e-01 5.75754915e-01 1.23357205e-01]\n", + " [ 8.28346709e-01 5.48967834e-01 1.11696226e-01]\n", + " [ 8.47170289e-01 5.21847790e-01 9.98868624e-02]\n", + " [ 8.64661413e-01 4.94588611e-01 8.79928724e-02]\n", + " [ 8.80768110e-01 4.67396859e-01 7.60770241e-02]\n", + " [ 7.83436231e-01 6.13035361e-01 1.02055470e-01]\n", + " [ 8.04891059e-01 5.86472511e-01 9.05559350e-02]\n", + " [ 8.25161761e-01 5.59358046e-01 7.89090947e-02]\n", + " [ 8.44155862e-01 5.31871748e-01 6.71812763e-02]\n", + " [ 8.61801339e-01 5.04207547e-01 5.54364684e-02]\n", + " [ 8.78045804e-01 4.76573940e-01 4.37360999e-02]\n", + " [ 7.78801338e-01 6.23521220e-01 6.84818583e-02]\n", + " [ 8.00423976e-01 5.96722719e-01 5.69513319e-02]\n", + " [ 8.20851458e-01 5.69339224e-01 4.53401708e-02]\n", + " [ 8.39991424e-01 5.41551160e-01 3.37157020e-02]\n", + " [ 8.57772869e-01 5.13551775e-01 2.21422491e-02]\n", + " [ 8.74144146e-01 4.85549107e-01 1.06806240e-02]\n", + " [ 7.73080236e-01 6.33381591e-01 3.42740219e-02]\n", + " [ 7.94834275e-01 6.06400523e-01 2.27350266e-02]\n", + " [ 8.15388278e-01 5.78806440e-01 1.11830773e-02]\n", + " [ 8.34649846e-01 5.50780842e-01 -3.14313853e-04]\n", + " [ 8.52549065e-01 5.22516373e-01 -1.16931891e-02]\n", + " [ 8.69035538e-01 4.94219712e-01 -2.28934569e-02]\n", + " [ 7.66263964e-01 6.42525795e-01 -3.74904716e-04]\n", + " [ 7.88112023e-01 6.15416819e-01 -1.18986532e-02]\n", + " [ 8.08762150e-01 5.87671502e-01 -2.33664520e-02]\n", + " [ 8.28121655e-01 5.59472628e-01 -3.47117180e-02]\n", + " [ 8.46121336e-01 5.31012671e-01 -4.58718734e-02]\n", + " [ 8.62711888e-01 5.02497083e-01 -5.67880295e-02]\n", + " [ 7.58363670e-01 6.50877109e-01 -3.52637698e-02]\n", + " [ 7.80267169e-01 6.23696843e-01 -4.67481947e-02]\n", + " [ 8.00982535e-01 5.95861180e-01 -5.81070792e-02]\n", + " [ 8.20416566e-01 5.67553989e-01 -6.92757432e-02]\n", + " [ 8.38500126e-01 5.38967992e-01 -8.01937820e-02]\n", + " [ 8.55184363e-01 5.10308106e-01 -9.08038670e-02]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:fp_optics: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:cartToSphere: vec: [[ 0.08622094 -0.57551361 0.81323431]\n", + " [ 0.05936756 -0.57824772 0.81369839]\n", + " [ 0.03189788 -0.5804756 0.81365263]\n", + " [ 0.00393069 -0.58217682 0.81305271]\n", + " [-0.0244179 -0.58333402 0.81186525]\n", + " [-0.05303315 -0.58393342 0.81006744]\n", + " [-0.08180092 -0.58396538 0.80764661]\n", + " [-0.11060748 -0.58342497 0.80460008]\n", + " [ 0.08622094 -0.57551361 0.81323431]\n", + " [ 0.08695035 -0.55329701 0.8284335 ]\n", + " [ 0.08747395 -0.53018974 0.8433547 ]\n", + " [ 0.08780292 -0.50626874 0.85789429]\n", + " [ 0.08794537 -0.4816142 0.8719595 ]\n", + " [ 0.08790701 -0.45631058 0.88546768]\n", + " [ 0.08769189 -0.43044745 0.89834577]\n", + " [ 0.08730302 -0.40411967 0.91053033]\n", + " [-0.11060748 -0.58342497 0.80460008]\n", + " [-0.11175046 -0.56055291 0.82054388]\n", + " [-0.11283002 -0.53676053 0.8361564 ]\n", + " [-0.11383656 -0.512118 0.851338 ]\n", + " [-0.11476166 -0.48670131 0.86599746]\n", + " [-0.11559813 -0.46059369 0.88005143]\n", + " [-0.11633998 -0.43388607 0.89342481]\n", + " [-0.11698247 -0.40667682 0.90605136]\n", + " [ 0.08730302 -0.40411967 0.91053033]\n", + " [ 0.05936141 -0.40549103 0.91216953]\n", + " [ 0.03081783 -0.406556 0.91310595]\n", + " [ 0.00178345 -0.40729307 0.91329577]\n", + " [-0.02762948 -0.40768475 0.91270464]\n", + " [-0.05730638 -0.40771773 0.91130798]\n", + " [-0.08713025 -0.40738315 0.90909146]\n", + " [-0.11698247 -0.40667682 0.90605136]\n", + " [ 0.07459872 -0.57669187 0.81354872]\n", + " [ 0.04125629 -0.57970443 0.81378172]\n", + " [ 0.00710655 -0.58193609 0.81320347]\n", + " [-0.02763569 -0.58335362 0.811748 ]\n", + " [-0.06275913 -0.58393171 0.80937325]\n", + " [-0.0980538 -0.58365453 0.80606007]\n", + " [ 0.08647405 -0.56595135 0.81989104]\n", + " [ 0.08722689 -0.53811332 0.8383469 ]\n", + " [ 0.08768226 -0.50901357 0.85628092]\n", + " [ 0.08785634 -0.47879829 0.87351787]\n", + " [ 0.08775973 -0.44762309 0.8899055 ]\n", + " [ 0.08739941 -0.41565506 0.90531332]\n", + " [-0.11101411 -0.57357298 0.81159713]\n", + " [-0.11237258 -0.54491348 0.83092822]\n", + " [-0.11362628 -0.5149408 0.84966172]\n", + " [-0.11475927 -0.48379232 0.86762625]\n", + " [-0.1157583 -0.4516213 0.88466842]\n", + " [-0.11661284 -0.41859829 0.9006536 ]\n", + " [ 0.07520317 -0.40484479 0.91128765]\n", + " [ 0.04053914 -0.40632329 0.91282965]\n", + " [ 0.00508135 -0.4073196 0.91327155]\n", + " [-0.03096409 -0.40779983 0.91254617]\n", + " [-0.06738621 -0.40773954 0.91060835]\n", + " [-0.10396893 -0.40712433 0.90743608]\n", + " [ 0.08613316 -0.57544942 0.81328903]\n", + " [ 0.08613316 -0.57544942 0.81328903]\n", + " [-0.11687845 -0.40677365 0.90602132]\n", + " [-0.11687845 -0.40677365 0.90602132]\n", + " [ 0.07488511 -0.56716139 0.82019521]\n", + " [ 0.07550249 -0.53922846 0.83876817]\n", + " [ 0.07584966 -0.51002832 0.85680683]\n", + " [ 0.07594184 -0.47970616 0.87413662]\n", + " [ 0.0757889 -0.44841714 0.89060547]\n", + " [ 0.07539739 -0.41632843 0.90608271]\n", + " [ 0.04139106 -0.57009359 0.82053646]\n", + " [ 0.04163091 -0.541925 0.83939512]\n", + " [ 0.04167542 -0.51247459 0.85769048]\n", + " [ 0.04153774 -0.48188492 0.87524941]\n", + " [ 0.04122644 -0.45031015 0.89191993]\n", + " [ 0.04074739 -0.41791797 0.90757051]\n", + " [ 0.00709262 -0.57226129 0.82004067]\n", + " [ 0.00696069 -0.54390465 0.83911815]\n", + " [ 0.00670534 -0.51425346 0.85761204]\n", + " [ 0.00633881 -0.48344814 0.87535005]\n", + " [ 0.00586944 -0.45164222 0.89217983]\n", + " [ 0.00530333 -0.41900422 0.9079688 ]\n", + " [-0.02779657 -0.57363054 0.81864239]\n", + " [-0.02829739 -0.54513168 0.83787273]\n", + " [-0.02885192 -0.51532825 0.85650707]\n", + " [-0.02944771 -0.48435908 0.87437356]\n", + " [-0.0300756 -0.45237744 0.89131931]\n", + " [-0.03072864 -0.41955271 0.90721071]\n", + " [-0.06306565 -0.57417534 0.81629982]\n", + " [-0.06393325 -0.54557875 0.83561736]\n", + " [-0.06478643 -0.51567107 0.8543337 ]\n", + " [-0.06561159 -0.48459016 0.87227719]\n", + " [-0.0663981 -0.45248924 0.88929454]\n", + " [-0.06713764 -0.41953836 0.9052514 ]\n", + " [-0.09850446 -0.57387946 0.81299399]\n", + " [-0.0997357 -0.54522874 0.83233311]\n", + " [-0.10088558 -0.51526459 0.85107256]\n", + " [-0.10193879 -0.48412443 0.86904086]\n", + " [-0.10288279 -0.45196151 0.8860846 ]\n", + " [-0.10370767 -0.4189463 0.90206913]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:fp_optics: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:cartToSphere: vec: [[ 8.30277013e-01 -2.97082130e-02 -5.56558626e-01]\n", + " [ 8.16546921e-01 -1.64341933e-02 -5.77045096e-01]\n", + " [ 8.01884091e-01 -2.88184239e-03 -5.97472677e-01]\n", + " [ 7.86311038e-01 1.08955330e-02 -6.17734764e-01]\n", + " [ 7.69858551e-01 2.48445836e-02 -6.37730789e-01]\n", + " [ 7.52566920e-01 3.89110469e-02 -6.57365166e-01]\n", + " [ 7.34486731e-01 5.30394249e-02 -6.76547162e-01]\n", + " [ 7.15679000e-01 6.71732226e-02 -6.95191576e-01]\n", + " [ 8.30277013e-01 -2.97082130e-02 -5.56558626e-01]\n", + " [ 8.21606856e-01 -5.52081625e-02 -5.67374861e-01]\n", + " [ 8.12228692e-01 -8.05323621e-02 -5.77753486e-01]\n", + " [ 8.02187613e-01 -1.05581182e-01 -5.87662869e-01]\n", + " [ 7.91536506e-01 -1.30255246e-01 -5.97079167e-01]\n", + " [ 7.80335728e-01 -1.54455064e-01 -6.05986620e-01]\n", + " [ 7.68652989e-01 -1.78080250e-01 -6.14377739e-01]\n", + " [ 7.56563489e-01 -2.01028599e-01 -6.22253316e-01]\n", + " [ 7.15679000e-01 6.71732226e-02 -6.95191576e-01]\n", + " [ 7.06779591e-01 4.07192056e-02 -7.06260969e-01]\n", + " [ 6.97273675e-01 1.43165679e-02 -7.16662025e-01]\n", + " [ 6.87207983e-01 -1.19297808e-02 -7.26362766e-01]\n", + " [ 6.76636292e-01 -3.79173700e-02 -7.35340466e-01]\n", + " [ 6.65618817e-01 -6.35467085e-02 -7.43581472e-01]\n", + " [ 6.54222006e-01 -8.87207998e-02 -7.51080679e-01]\n", + " [ 6.42518904e-01 -1.13343631e-01 -7.57840801e-01]\n", + " [ 7.56563489e-01 -2.01028599e-01 -6.22253316e-01]\n", + " [ 7.42480358e-01 -1.89760335e-01 -6.42428155e-01]\n", + " [ 7.27603616e-01 -1.77980658e-01 -6.62507256e-01]\n", + " [ 7.11959555e-01 -1.65746449e-01 -6.82379444e-01]\n", + " [ 6.95582380e-01 -1.53112479e-01 -7.01941395e-01]\n", + " [ 6.78514549e-01 -1.40132137e-01 -7.21097075e-01]\n", + " [ 6.60806962e-01 -1.26858241e-01 -7.39757491e-01]\n", + " [ 6.42518904e-01 -1.13343631e-01 -7.57840801e-01]\n", + " [ 8.24377957e-01 -2.40460956e-02 -5.65528752e-01]\n", + " [ 8.06920345e-01 -7.58437317e-03 -5.90611576e-01]\n", + " [ 7.88083310e-01 9.24255717e-03 -6.15499205e-01]\n", + " [ 7.67920028e-01 2.63365616e-02 -6.40004075e-01]\n", + " [ 7.46504772e-01 4.35977131e-02 -6.63950198e-01]\n", + " [ 7.23935020e-01 6.09234025e-02 -6.87172777e-01]\n", + " [ 8.26540944e-01 -4.07970102e-02 -5.61396181e-01]\n", + " [ 8.15433105e-01 -7.19451629e-02 -5.74362904e-01]\n", + " [ 8.03305768e-01 -1.02730372e-01 -5.86639850e-01]\n", + " [ 7.90253080e-01 -1.32969583e-01 -5.98179872e-01]\n", + " [ 7.76386147e-01 -1.62479551e-01 -6.08953977e-01]\n", + " [ 7.61832712e-01 -1.91074753e-01 -6.18951821e-01]\n", + " [ 7.11941547e-01 5.55913810e-02 -7.00034879e-01]\n", + " [ 7.00620968e-01 2.31907195e-02 -7.13156680e-01]\n", + " [ 6.88434889e-01 -9.02821630e-03 -7.25241956e-01]\n", + " [ 6.75479426e-01 -4.08757118e-02 -7.36245014e-01]\n", + " [ 6.61865412e-01 -7.21685547e-02 -7.46140654e-01]\n", + " [ 6.47717878e-01 -1.02728692e-01 -7.54922756e-01]\n", + " [ 7.50564131e-01 -1.96104470e-01 -6.31028147e-01]\n", + " [ 7.32767279e-01 -1.81941405e-01 -6.55705300e-01]\n", + " [ 7.13803515e-01 -1.67067111e-01 -6.80127284e-01]\n", + " [ 6.93732502e-01 -1.51583270e-01 -7.04100652e-01]\n", + " [ 6.72632428e-01 -1.35588259e-01 -7.27448583e-01]\n", + " [ 6.50600492e-01 -1.19179307e-01 -7.50010195e-01]\n", + " [ 8.30203271e-01 -2.97507459e-02 -5.56666347e-01]\n", + " [ 8.30203271e-01 -2.97507459e-02 -5.56666347e-01]\n", + " [ 6.42622813e-01 -1.13307045e-01 -7.57758163e-01]\n", + " [ 6.42622813e-01 -1.13307045e-01 -7.57758163e-01]\n", + " [ 8.20701805e-01 -3.51367997e-02 -5.70275330e-01]\n", + " [ 8.09556856e-01 -6.64186837e-02 -5.83272025e-01]\n", + " [ 7.97395766e-01 -9.73488525e-02 -5.95552847e-01]\n", + " [ 7.84313093e-01 -1.27744257e-01 -6.07070323e-01]\n", + " [ 7.70420224e-01 -1.57422247e-01 -6.17795204e-01]\n", + " [ 7.55844951e-01 -1.86198323e-01 -6.27716970e-01]\n", + " [ 8.03209789e-01 -1.87872388e-02 -5.95399928e-01]\n", + " [ 7.91975973e-01 -5.04087947e-02 -6.08467757e-01]\n", + " [ 7.79739676e-01 -8.17096723e-02 -6.20749198e-01]\n", + " [ 7.66596625e-01 -1.12506332e-01 -6.32196125e-01]\n", + " [ 7.52658990e-01 -1.42617404e-01 -6.42778905e-01]\n", + " [ 7.38054679e-01 -1.71861238e-01 -6.52486786e-01]\n", + " [ 7.84345530e-01 -2.05188692e-03 -6.20320787e-01]\n", + " [ 7.73047628e-01 -3.39547930e-02 -6.33438582e-01]\n", + " [ 7.60767373e-01 -6.55676682e-02 -6.45704177e-01]\n", + " [ 7.47601461e-01 -9.67058177e-02 -6.57069281e-01]\n", + " [ 7.33662617e-01 -1.27188404e-01 -6.67504513e-01]\n", + " [ 7.19078680e-01 -1.56836066e-01 -6.76999483e-01]\n", + " [ 7.64162448e-01 1.49717043e-02 -6.44850061e-01]\n", + " [ 7.52826250e-01 -1.71529514e-02 -6.57995755e-01]\n", + " [ 7.40534614e-01 -4.90186679e-02 -6.70228062e-01]\n", + " [ 7.27384767e-01 -8.04391812e-02 -6.81499038e-01]\n", + " [ 7.13489536e-01 -1.11233452e-01 -6.91780168e-01]\n", + " [ 6.98976356e-01 -1.41223536e-01 -7.01062028e-01]\n", + " [ 7.42735065e-01 3.21843201e-02 -6.68811477e-01]\n", + " [ 7.31387206e-01 -1.00617510e-04 -6.81962422e-01]\n", + " [ 7.19117680e-01 -3.21586808e-02 -6.94143776e-01]\n", + " [ 7.06023661e-01 -6.38019524e-02 -7.05308373e-01]\n", + " [ 6.92217499e-01 -9.48486444e-02 -7.15429010e-01]\n", + " [ 6.77825826e-01 -1.25121301e-01 -7.24497626e-01]\n", + " [ 7.20161051e-01 4.94839913e-02 -6.92040024e-01]\n", + " [ 7.08828586e-01 1.71021293e-02 -7.05173421e-01]\n", + " [ 6.96614860e-01 -1.50860506e-02 -7.17286656e-01]\n", + " [ 6.83616367e-01 -4.68912211e-02 -7.28333629e-01]\n", + " [ 6.69944417e-01 -7.81305562e-02 -7.38288625e-01]\n", + " [ 6.55724495e-01 -1.08626276e-01 -7.47145045e-01]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:fp_optics: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:cartToSphere: vec: [[-0.27859692 0.44699401 -0.85004712]\n", + " [-0.26704755 0.42692227 -0.86395775]\n", + " [-0.25492569 0.40619375 -0.87750757]\n", + " [-0.24228507 0.38487177 -0.89060186]\n", + " [-0.22917913 0.36302431 -0.90315573]\n", + " [-0.21566119 0.34072432 -0.91509409]\n", + " [-0.20178494 0.31804975 -0.92635155]\n", + " [-0.18760479 0.29508347 -0.93687256]\n", + " [-0.27859692 0.44699401 -0.85004712]\n", + " [-0.256538 0.46240423 -0.84874648]\n", + " [-0.23373577 0.47769415 -0.84686238]\n", + " [-0.21028524 0.49278797 -0.84435782]\n", + " [-0.18628131 0.50761379 -0.84120599]\n", + " [-0.16181899 0.52210343 -0.83739036]\n", + " [-0.136994 0.53619257 -0.83290466]\n", + " [-0.11190304 0.54982098 -0.82775274]\n", + " [-0.18760479 0.29508347 -0.93687256]\n", + " [-0.16386307 0.30974516 -0.9365932 ]\n", + " [-0.13950246 0.32445654 -0.93555706]\n", + " [-0.11461375 0.33914469 -0.93372617]\n", + " [-0.08928861 0.35374025 -0.93107217]\n", + " [-0.0636213 0.36817653 -0.92757661]\n", + " [-0.03770953 0.38238924 -0.92323153]\n", + " [-0.01165443 0.39631677 -0.91803986]\n", + " [-0.11190304 0.54982098 -0.82775274]\n", + " [-0.09837109 0.53001395 -0.84226382]\n", + " [-0.08448826 0.50939122 -0.85637744]\n", + " [-0.0703061 0.48801179 -0.87000089]\n", + " [-0.05587683 0.46593994 -0.88305026]\n", + " [-0.04125425 0.44324663 -0.89544989]\n", + " [-0.0264942 0.42001031 -0.90713252]\n", + " [-0.01165443 0.39631677 -0.91803986]\n", + " [-0.2735606 0.43838005 -0.85614691]\n", + " [-0.25901249 0.41333049 -0.87296646]\n", + " [-0.24365804 0.38735668 -0.88914879]\n", + " [-0.22759574 0.36058185 -0.90453353]\n", + " [-0.21092383 0.33314026 -0.91898243]\n", + " [-0.19374142 0.3051775 -0.93237919]\n", + " [-0.26903764 0.45365522 -0.84959737]\n", + " [-0.24148888 0.47247085 -0.8476169 ]\n", + " [-0.21291814 0.49103014 -0.84472201]\n", + " [-0.18350013 0.5091991 -0.84085907]\n", + " [-0.15340989 0.52685224 -0.83599768]\n", + " [-0.122824 0.54387282 -0.83013049]\n", + " [-0.17738439 0.30154431 -0.93680617]\n", + " [-0.14785935 0.31955732 -0.93595979]\n", + " [-0.11749482 0.33757193 -0.93393799]\n", + " [-0.08645912 0.355459 -0.93068454]\n", + " [-0.05492585 0.37309574 -0.9261656 ]\n", + " [-0.02307638 0.39036487 -0.92037098]\n", + " [-0.10613601 0.54124302 -0.83414096]\n", + " [-0.08930963 0.51641132 -0.85167079]\n", + " [-0.07200726 0.49041261 -0.86851046]\n", + " [-0.05432469 0.46336296 -0.88450189]\n", + " [-0.03636102 0.43539312 -0.89950581]\n", + " [-0.01821986 0.4066506 -0.91340206]\n", + " [-0.2784844 0.44697938 -0.85009169]\n", + " [-0.2784844 0.44697938 -0.85009169]\n", + " [-0.01179448 0.3963514 -0.91802313]\n", + " [-0.01179448 0.3963514 -0.91802313]\n", + " [-0.26404844 0.44505182 -0.85569112]\n", + " [-0.23632241 0.46386474 -0.85380397]\n", + " [-0.2075861 0.48243448 -0.85097884]\n", + " [-0.17801371 0.50062709 -0.84716211]\n", + " [-0.14777977 0.51831686 -0.84232344]\n", + " [-0.11706081 0.53538662 -0.83645558]\n", + " [-0.24932926 0.41997855 -0.87261271]\n", + " [-0.22114158 0.43875082 -0.87097309]\n", + " [-0.1919765 0.45731957 -0.86833394]\n", + " [-0.16200625 0.47555101 -0.86464167]\n", + " [-0.13140408 0.49331894 -0.85986592]\n", + " [-0.10034659 0.51050502 -0.85399952]\n", + " [-0.23382469 0.39396284 -0.88888655]\n", + " [-0.20523454 0.41264491 -0.88746998]\n", + " [-0.17569907 0.43116623 -0.8850003 ]\n", + " [-0.14538846 0.44939352 -0.88142366]\n", + " [-0.11447506 0.46720042 -0.87670932]\n", + " [-0.08313612 0.48446777 -0.8708498 ]\n", + " [-0.21763278 0.36712769 -0.90435238]\n", + " [-0.18869775 0.38566911 -0.90313481]\n", + " [-0.15884878 0.40409534 -0.90081853]\n", + " [-0.12825452 0.42227399 -0.89734913]\n", + " [-0.09708705 0.44007912 -0.89269506]\n", + " [-0.06552471 0.45739131 -0.88684819]\n", + " [-0.20085128 0.33960738 -0.91887191]\n", + " [-0.17162766 0.35795764 -0.91782911]\n", + " [-0.14152133 0.37624074 -0.91564983]\n", + " [-0.11070026 0.39432558 -0.9122789 ]\n", + " [-0.07933685 0.41208724 -0.90768374]\n", + " [-0.04761078 0.42940678 -0.90185533]\n", + " [-0.18357907 0.31154782 -0.93232863]\n", + " [-0.15412273 0.32965733 -0.93143557]\n", + " [-0.12381548 0.34775008 -0.92937593]\n", + " [-0.09282537 0.36569643 -0.92609372]\n", + " [-0.06132567 0.38337299 -0.92155538]\n", + " [-0.02949734 0.40066193 -0.91575102]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:cartToSphere: vec: [[-0.08714007 0.21401974 -0.97293482]\n", + " [-0.07589342 0.23916088 -0.96800943]\n", + " [-0.06435979 0.2646124 -0.96220481]\n", + " [-0.05258205 0.29026191 -0.95550152]\n", + " [-0.04060361 0.316 -0.94788995]\n", + " [-0.02846913 0.34171866 -0.93937099]\n", + " [-0.01622497 0.36731076 -0.92995675]\n", + " [-0.00391904 0.39267041 -0.91967091]\n", + " [-0.08714007 0.21401974 -0.97293482]\n", + " [-0.1135309 0.22488493 -0.96774868]\n", + " [-0.13970342 0.23561682 -0.96175239]\n", + " [-0.16555567 0.24617883 -0.95498026]\n", + " [-0.1909867 0.2565387 -0.94747663]\n", + " [-0.21589637 0.26666891 -0.93929572]\n", + " [-0.24018488 0.27654681 -0.93050152]\n", + " [-0.26375241 0.28615463 -0.92116784]\n", + " [-0.00391904 0.39267041 -0.91967091]\n", + " [-0.03128758 0.40377643 -0.91432252]\n", + " [-0.05853941 0.41448747 -0.90817029]\n", + " [-0.08556747 0.4247664 -0.90125009]\n", + " [-0.11226803 0.43458191 -0.89360755]\n", + " [-0.13854107 0.44390848 -0.88529748]\n", + " [-0.16428968 0.45272594 -0.87638355]\n", + " [-0.1894185 0.46101891 -0.86693841]\n", + " [-0.26375241 0.28615463 -0.92116784]\n", + " [-0.25447182 0.31096308 -0.9157216 ]\n", + " [-0.2446715 0.33601746 -0.90952082]\n", + " [-0.23439584 0.36120077 -0.90254783]\n", + " [-0.2236888 0.38640004 -0.89479513]\n", + " [-0.2125941 0.41150604 -0.8862655 ]\n", + " [-0.20115575 0.43641302 -0.87697209]\n", + " [-0.1894185 0.46101891 -0.86693841]\n", + " [-0.08236539 0.22497332 -0.97087741]\n", + " [-0.06838398 0.25600982 -0.96425236]\n", + " [-0.05401393 0.28740036 -0.95628632]\n", + " [-0.03933487 0.31894238 -0.94695751]\n", + " [-0.02442909 0.35043698 -0.93626766]\n", + " [-0.00938259 0.38168738 -0.92424386]\n", + " [-0.0986293 0.21885633 -0.97075958]\n", + " [-0.13084104 0.23208815 -0.96385461]\n", + " [-0.16262351 0.24508273 -0.95576569]\n", + " [-0.19379042 0.25777889 -0.94657029]\n", + " [-0.22415736 0.27012596 -0.93636822]\n", + " [-0.25354061 0.28208429 -0.92528137]\n", + " [-0.01590133 0.39747244 -0.91747633]\n", + " [-0.04937922 0.41082345 -0.91037673]\n", + " [-0.08257503 0.42354385 -0.90210419]\n", + " [-0.11529636 0.43557355 -0.89273872]\n", + " [-0.14735901 0.4468655 -0.88238118]\n", + " [-0.17858531 0.45738461 -0.87115246]\n", + " [-0.25969304 0.29690121 -0.9189174 ]\n", + " [-0.24796226 0.32748765 -0.91173821]\n", + " [-0.23549512 0.35832681 -0.90340685]\n", + " [-0.22237275 0.38920906 -0.89390529]\n", + " [-0.20867569 0.41993326 -0.88323865]\n", + " [-0.19448524 0.45030627 -0.87143546]\n", + " [-0.08719266 0.2141424 -0.97290312]\n", + " [-0.08719266 0.2141424 -0.97290312]\n", + " [-0.18937433 0.46090793 -0.86700706]\n", + " [-0.18937433 0.46090793 -0.86700706]\n", + " [-0.09384793 0.22970401 -0.96872526]\n", + " [-0.12619585 0.24296561 -0.9617912 ]\n", + " [-0.15812319 0.25596351 -0.95366647]\n", + " [-0.1894436 0.26863613 -0.9444288 ]\n", + " [-0.21997302 0.28093252 -0.93417814]\n", + " [-0.24952826 0.29281294 -0.92303642]\n", + " [-0.07998234 0.26078223 -0.96207871]\n", + " [-0.11267569 0.27411309 -0.95507393]\n", + " [-0.14497272 0.28710703 -0.94686454]\n", + " [-0.17668655 0.29970153 -0.93752912]\n", + " [-0.20763403 0.31184504 -0.92716815]\n", + " [-0.23763388 0.32349764 -0.91590361]\n", + " [-0.06570681 0.29220585 -0.95409557]\n", + " [-0.09868552 0.30558274 -0.94703768]\n", + " [-0.13129219 0.31855165 -0.93876899]\n", + " [-0.16333891 0.33104961 -0.9293689 ]\n", + " [-0.19464307 0.34302503 -0.91893847]\n", + " [-0.22502524 0.35443825 -0.90759967]\n", + " [-0.05110043 0.32377199 -0.94475417]\n", + " [-0.0843032 0.33717064 -0.93766141]\n", + " [-0.11715902 0.35009212 -0.9293596 ]\n", + " [-0.14947856 0.36247366 -0.91992881]\n", + " [-0.18107922 0.37426437 -0.90947045]\n", + " [-0.21178298 0.38542545 -0.89810645]\n", + " [-0.03624479 0.3552815 -0.93405641]\n", + " [-0.06960853 0.36867692 -0.92694767]\n", + " [-0.10265178 0.38152805 -0.91863973]\n", + " [-0.13518373 0.39377295 -0.90921297]\n", + " [-0.16702131 0.40536212 -0.89876884]\n", + " [-0.19798714 0.41625816 -0.887429 ]\n", + " [-0.0212252 0.38653736 -0.92202948]\n", + " [-0.05468498 0.39990436 -0.91492407]\n", + " [-0.08785238 0.41266267 -0.90663746]\n", + " [-0.12053532 0.42475166 -0.89724983]\n", + " [-0.15254994 0.43612363 -0.88686228]\n", + " [-0.18371876 0.44674287 -0.87559593]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:fp_optics: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:fp_optics: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:cartToSphere: vec: [[0.60805489 0.68093055 0.4081701 ]\n", + " [0.60606863 0.66744584 0.43266252]\n", + " [0.60355307 0.65315307 0.45729068]\n", + " [0.60049184 0.63808107 0.48193578]\n", + " [0.59687471 0.62226443 0.50648549]\n", + " [0.59269785 0.60574488 0.5308318 ]\n", + " [0.58796434 0.58857268 0.55486948]\n", + " [0.58268466 0.5708073 0.578496 ]\n", + " [0.60805489 0.68093055 0.4081701 ]\n", + " [0.58481433 0.69688229 0.4151473 ]\n", + " [0.56115085 0.71215186 0.42184056]\n", + " [0.53716378 0.72668631 0.42823135]\n", + " [0.51295826 0.74043969 0.43430737]\n", + " [0.48864494 0.75337309 0.44006262]\n", + " [0.46433926 0.76545512 0.44549693]\n", + " [0.44015966 0.77666318 0.45061488]\n", + " [0.58268466 0.5708073 0.578496 ]\n", + " [0.55865259 0.58737376 0.58557609]\n", + " [0.53419677 0.60335765 0.59210924]\n", + " [0.50942112 0.61870337 0.59807714]\n", + " [0.48443236 0.63336432 0.60346907]\n", + " [0.45933981 0.64730241 0.60828162]\n", + " [0.43425679 0.66048675 0.61251799]\n", + " [0.40930284 0.67289232 0.61618756]\n", + " [0.44015966 0.77666318 0.45061488]\n", + " [0.43661662 0.76434816 0.4744869 ]\n", + " [0.43279577 0.75113909 0.49847556]\n", + " [0.42868571 0.73706225 0.52246321]\n", + " [0.42427947 0.72215285 0.54633524]\n", + " [0.41957585 0.70645367 0.56998186]\n", + " [0.41457987 0.69001454 0.5932988 ]\n", + " [0.40930284 0.67289232 0.61618756]\n", + " [0.6071737 0.67520802 0.41884869]\n", + " [0.60438499 0.6581349 0.44897354]\n", + " [0.60078446 0.639876 0.4791834 ]\n", + " [0.59635074 0.62049257 0.50926886]\n", + " [0.59107682 0.60006157 0.5390309 ]\n", + " [0.58497147 0.57867938 0.56827683]\n", + " [0.5979738 0.68792129 0.41132912]\n", + " [0.56919265 0.70702065 0.41969218]\n", + " [0.53987428 0.72504201 0.42760945]\n", + " [0.51020986 0.74189787 0.43505569]\n", + " [0.48040301 0.75751663 0.4420198 ]\n", + " [0.45066766 0.77184405 0.44850353]\n", + " [0.57228416 0.57815971 0.58156873]\n", + " [0.54253258 0.59807913 0.58988113]\n", + " [0.51224738 0.61706716 0.59735311]\n", + " [0.48162391 0.63503426 0.60396183]\n", + " [0.4508636 0.65191016 0.60970087]\n", + " [0.42017759 0.66764046 0.61457872]\n", + " [0.43873088 0.77136786 0.46098464]\n", + " [0.43420423 0.75566978 0.49033649]\n", + " [0.42924836 0.73865383 0.51974644]\n", + " [0.42384852 0.72038124 0.54900209]\n", + " [0.41800252 0.70093071 0.5779014 ]\n", + " [0.41172225 0.6803969 0.60625477]\n", + " [0.60797033 0.68094149 0.4082778 ]\n", + " [0.60797033 0.68094149 0.4082778 ]\n", + " [0.40940632 0.6729109 0.61609852]\n", + " [0.40940632 0.6729109 0.61609852]\n", + " [0.59713781 0.68221579 0.42191001]\n", + " [0.56824174 0.70139739 0.4302825 ]\n", + " [0.53880378 0.71950528 0.43818106]\n", + " [0.50901542 0.73645197 0.44558028]\n", + " [0.47908067 0.75216569 0.45246933]\n", + " [0.44921457 0.76659117 0.45885102]\n", + " [0.59425028 0.66521333 0.45205956]\n", + " [0.5650669 0.68460547 0.46045058]\n", + " [0.53533212 0.70293896 0.46829087]\n", + " [0.50523827 0.72012668 0.47555426]\n", + " [0.47498953 0.73609731 0.48222992]\n", + " [0.44480221 0.75079443 0.48832235]\n", + " [0.59056979 0.64701232 0.48228869]\n", + " [0.56115602 0.66658205 0.49068553]\n", + " [0.53118685 0.68511256 0.49845893]\n", + " [0.50085562 0.70251713 0.50558216]\n", + " [0.470366 0.7187256 0.51204427]\n", + " [0.43993362 0.73368207 0.51785039]\n", + " [0.58607538 0.62767381 0.51238779]\n", + " [0.55648927 0.64738812 0.52077664]\n", + " [0.52634903 0.66608789 0.52847291]\n", + " [0.49584906 0.68368626 0.5354501 ]\n", + " [0.46519231 0.70011402 0.54169778]\n", + " [0.43459286 0.71531635 0.54722168]\n", + " [0.58076074 0.60727432 0.5421576 ]\n", + " [0.5510623 0.62709955 0.55052384]\n", + " [0.5208157 0.64594106 0.55813184]\n", + " [0.49021616 0.66371119 0.56495625]\n", + " [0.45946593 0.68034091 0.57098801]\n", + " [0.42877745 0.69577614 0.57623386]\n", + " [0.57463537 0.58590973 0.57140527]\n", + " [0.54488655 0.60581094 0.57973422]\n", + " [0.51459965 0.62476593 0.58724333]\n", + " [0.48397014 0.64268572 0.59390906]\n", + " [0.45319962 0.65950048 0.59972429]\n", + " [0.42249944 0.67515607 0.60469703]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:fp_optics: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:cartToSphere: vec: [[ 0.06079058 0.57292381 -0.8173511 ]\n", + " [ 0.05300079 0.550966 -0.83284295]\n", + " [ 0.0450117 0.52812427 -0.84797329]\n", + " [ 0.03685298 0.50446572 -0.86264488]\n", + " [ 0.02855471 0.48006271 -0.87676931]\n", + " [ 0.02014782 0.45499436 -0.89026636]\n", + " [ 0.01166441 0.42934762 -0.90306399]\n", + " [ 0.00313768 0.40321716 -0.91509894]\n", + " [ 0.06079058 0.57292381 -0.8173511 ]\n", + " [ 0.08855626 0.56505734 -0.82028531]\n", + " [ 0.11613241 0.5566655 -0.82257935]\n", + " [ 0.14341167 0.54778543 -0.82423554]\n", + " [ 0.17028766 0.53845871 -0.82526622]\n", + " [ 0.19665486 0.52873103 -0.82569386]\n", + " [ 0.22240819 0.51865192 -0.8255512 ]\n", + " [ 0.2474426 0.50827474 -0.82488117]\n", + " [ 0.00313768 0.40321716 -0.91509894]\n", + " [ 0.03191053 0.39519027 -0.91804486]\n", + " [ 0.060562 0.38683201 -0.92015936]\n", + " [ 0.08897952 0.37818035 -0.92144575]\n", + " [ 0.11705402 0.36927688 -0.92191808]\n", + " [ 0.14468032 0.36016636 -0.92160067]\n", + " [ 0.17175651 0.35089674 -0.92052766]\n", + " [ 0.19818231 0.34151951 -0.91874273]\n", + " [ 0.2474426 0.50827474 -0.82488117]\n", + " [ 0.24158798 0.48640527 -0.83966967]\n", + " [ 0.23528881 0.4637574 -0.85414767]\n", + " [ 0.22857565 0.44040285 -0.8682157 ]\n", + " [ 0.22147855 0.41641794 -0.88178418]\n", + " [ 0.21402725 0.39188393 -0.89477334]\n", + " [ 0.20625166 0.36688725 -0.907113 ]\n", + " [ 0.19818231 0.34151951 -0.91874273]\n", + " [ 0.05751614 0.56343687 -0.82415459]\n", + " [ 0.04783214 0.53592241 -0.84291118]\n", + " [ 0.03787808 0.50714651 -0.8610271 ]\n", + " [ 0.0277091 0.47724008 -0.87833599]\n", + " [ 0.01738222 0.44634895 -0.89469016]\n", + " [ 0.00695698 0.41463641 -0.90996058]\n", + " [ 0.07288703 0.56948717 -0.81876239]\n", + " [ 0.10680387 0.55948807 -0.82192824]\n", + " [ 0.14032926 0.54873634 -0.82413356]\n", + " [ 0.17326696 0.53730673 -0.8253969 ]\n", + " [ 0.20542265 0.52528329 -0.82575965]\n", + " [ 0.23660291 0.5127588 -0.8252863 ]\n", + " [ 0.01571953 0.39985047 -0.91644558]\n", + " [ 0.05091612 0.38978515 -0.91949719]\n", + " [ 0.08581817 0.37925924 -0.92130216]\n", + " [ 0.12022333 0.36834781 -0.9218819 ]\n", + " [ 0.15393793 0.35713329 -0.92128113]\n", + " [ 0.18677512 0.34570539 -0.91956666]\n", + " [ 0.24486185 0.49887549 -0.83136389]\n", + " [ 0.23738234 0.47153953 -0.84929388]\n", + " [ 0.22926567 0.44310504 -0.86665747]\n", + " [ 0.22056739 0.4137106 -0.88328566]\n", + " [ 0.21134229 0.38350583 -0.89903154]\n", + " [ 0.20164569 0.35265201 -0.91376998]\n", + " [ 0.06085946 0.57282433 -0.81741569]\n", + " [ 0.06085946 0.57282433 -0.81741569]\n", + " [ 0.19812123 0.34163897 -0.91871149]\n", + " [ 0.19812123 0.34163897 -0.91871149]\n", + " [ 0.06959172 0.56008777 -0.82550511]\n", + " [ 0.10364872 0.55006416 -0.82866541]\n", + " [ 0.13731999 0.53930199 -0.83084089]\n", + " [ 0.17040916 0.52787645 -0.83204998]\n", + " [ 0.20272222 0.51587197 -0.83233396]\n", + " [ 0.23406626 0.50338144 -0.83175724]\n", + " [ 0.06002876 0.53254373 -0.84427112]\n", + " [ 0.09444036 0.52246441 -0.84741487]\n", + " [ 0.12848202 0.5116889 -0.84950977]\n", + " [ 0.16195666 0.50029355 -0.85057416]\n", + " [ 0.19467109 0.48836369 -0.85064921]\n", + " [ 0.22643425 0.47599263 -0.84979912]\n", + " [ 0.05017335 0.50374468 -0.8623943 ]\n", + " [ 0.08487622 0.49363075 -0.86551991]\n", + " [ 0.11922481 0.48286716 -0.86753948]\n", + " [ 0.15302091 0.47153105 -0.86847169]\n", + " [ 0.18607182 0.45970822 -0.86835801]\n", + " [ 0.21818837 0.44749207 -0.86726275]\n", + " [ 0.04008004 0.47382173 -0.87970822]\n", + " [ 0.07500949 0.46369533 -0.88281381]\n", + " [ 0.1096009 0.45297038 -0.88476295]\n", + " [ 0.14365468 0.44172422 -0.88557498]\n", + " [ 0.17697819 0.43004245 -0.88529216]\n", + " [ 0.20938374 0.41801799 -0.8839793 ]\n", + " [ 0.02980509 0.44292094 -0.89606512]\n", + " [ 0.06489451 0.43280492 -0.89914882]\n", + " [ 0.09966334 0.42214614 -0.90103266]\n", + " [ 0.13391059 0.4110214 -0.90173686]\n", + " [ 0.16744332 0.39951537 -0.90130472]\n", + " [ 0.20007469 0.38771987 -0.89980188]\n", + " [ 0.01940737 0.41120575 -0.91133594]\n", + " [ 0.05458829 0.40112317 -0.91439615]\n", + " [ 0.08946758 0.39055791 -0.91622054]\n", + " [ 0.12384319 0.37958557 -0.91683022]\n", + " [ 0.15752163 0.36828925 -0.91626959]\n", + " [ 0.19031619 0.35675924 -0.91460516]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:fp_optics: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:cartToSphere: vec: [[-5.50077434e-01 6.50132891e-02 -8.32579179e-01]\n", + " [-5.66152508e-01 4.55465044e-02 -8.23041222e-01]\n", + " [-5.82046643e-01 2.55294382e-02 -8.12754547e-01]\n", + " [-5.97676108e-01 5.05864995e-03 -8.01721698e-01]\n", + " [-6.12962569e-01 -1.57730076e-02 -7.89954493e-01]\n", + " [-6.27832831e-01 -3.68755974e-02 -7.77474197e-01]\n", + " [-6.42218871e-01 -5.81612937e-02 -7.64311576e-01]\n", + " [-6.56058136e-01 -7.95438864e-02 -7.50506823e-01]\n", + " [-5.50077434e-01 6.50132891e-02 -8.32579179e-01]\n", + " [-5.32763813e-01 4.84643178e-02 -8.44875097e-01]\n", + " [-5.14761878e-01 3.13976643e-02 -8.56758073e-01]\n", + " [-4.96117996e-01 1.38991406e-02 -8.68143852e-01]\n", + " [-4.76884291e-01 -3.94932029e-03 -8.78957210e-01]\n", + " [-4.57119047e-01 -2.20689017e-02 -8.89131678e-01]\n", + " [-4.36886911e-01 -4.03830454e-02 -8.98609502e-01]\n", + " [-4.16258798e-01 -5.88168451e-02 -9.07341827e-01]\n", + " [-6.56058136e-01 -7.95438864e-02 -7.50506823e-01]\n", + " [-6.39236334e-01 -9.81552686e-02 -7.62720429e-01]\n", + " [-6.21557257e-01 -1.17072485e-01 -7.74571242e-01]\n", + " [-6.03062878e-01 -1.36215025e-01 -7.85977501e-01]\n", + " [-5.83801332e-01 -1.55503895e-01 -7.96865449e-01]\n", + " [-5.63828351e-01 -1.74860320e-01 -8.07168792e-01]\n", + " [-5.43208129e-01 -1.94205213e-01 -8.16828785e-01]\n", + " [-5.22013429e-01 -2.13459437e-01 -8.25794798e-01]\n", + " [-4.16258798e-01 -5.88168451e-02 -9.07341827e-01]\n", + " [-4.31879909e-01 -8.02661305e-02 -8.98352432e-01]\n", + " [-4.47457309e-01 -1.02079949e-01 -8.88460264e-01]\n", + " [-4.62910515e-01 -1.24167641e-01 -8.77665228e-01]\n", + " [-4.78163404e-01 -1.46439632e-01 -8.65976439e-01]\n", + " [-4.93143466e-01 -1.68806062e-01 -8.53413168e-01]\n", + " [-5.07781749e-01 -1.91176312e-01 -8.40005543e-01]\n", + " [-5.22013429e-01 -2.13459437e-01 -8.25794798e-01]\n", + " [-5.57044946e-01 5.65434907e-02 -8.28555225e-01]\n", + " [-5.76635945e-01 3.23008767e-02 -8.16362444e-01]\n", + " [-5.95871426e-01 7.32822755e-03 -8.03046413e-01]\n", + " [-6.14604958e-01 -1.82020078e-02 -7.88625027e-01]\n", + " [-6.32701795e-01 -4.41241687e-02 -7.73137437e-01]\n", + " [-6.50038957e-01 -7.02772503e-02 -7.56644212e-01]\n", + " [-5.42671228e-01 5.78010668e-02 -8.37954041e-01]\n", + " [-5.20983217e-01 3.71578120e-02 -8.52757752e-01]\n", + " [-4.98306632e-01 1.58228415e-02 -8.66856469e-01]\n", + " [-4.74735014e-01 -6.05142165e-03 -8.80107975e-01]\n", + " [-4.50375690e-01 -2.83197837e-02 -8.92389897e-01]\n", + " [-4.25350290e-01 -5.08420046e-02 -9.03599591e-01]\n", + " [-6.48785143e-01 -8.75421497e-02 -7.55919447e-01]\n", + " [-6.27586321e-01 -1.10567488e-01 -7.70655721e-01]\n", + " [-6.05141033e-01 -1.33972090e-01 -7.84764811e-01]\n", + " [-5.81535259e-01 -1.57609991e-01 -7.98107657e-01]\n", + " [-5.56871706e-01 -1.81336113e-01 -8.10562223e-01]\n", + " [-5.31272136e-01 -2.05004803e-01 -8.22023691e-01]\n", + " [-4.23141059e-01 -6.80546602e-02 -9.03504404e-01]\n", + " [-4.42267997e-01 -9.45989619e-02 -8.91880068e-01]\n", + " [-4.61248639e-01 -1.21600632e-01 -8.78898731e-01]\n", + " [-4.79941095e-01 -1.48894415e-01 -8.64573304e-01]\n", + " [-4.98211863e-01 -1.76314828e-01 -8.48939351e-01]\n", + " [-5.15935675e-01 -2.03694866e-01 -8.32056958e-01]\n", + " [-5.50074628e-01 6.48921569e-02 -8.32590482e-01]\n", + " [-5.50074628e-01 6.48921569e-02 -8.32590482e-01]\n", + " [-5.22038892e-01 -2.13317889e-01 -8.25815278e-01]\n", + " [-5.22038892e-01 -2.13317889e-01 -8.25815278e-01]\n", + " [-5.49647479e-01 4.93773873e-02 -8.33936162e-01]\n", + " [-5.27962820e-01 2.85371976e-02 -8.48787894e-01]\n", + " [-5.05269421e-01 7.02766513e-03 -8.62933036e-01]\n", + " [-4.81660558e-01 -1.49998259e-02 -8.76229486e-01]\n", + " [-4.57243528e-01 -3.74008698e-02 -8.88554743e-01]\n", + " [-4.32140239e-01 -6.00355266e-02 -8.99805840e-01]\n", + " [-5.69261317e-01 2.49361699e-02 -8.21778401e-01]\n", + " [-5.47605261e-01 3.57607178e-03 -8.36729162e-01]\n", + " [-5.24886129e-01 -1.83925430e-02 -8.50973717e-01]\n", + " [-5.01196198e-01 -4.08212181e-02 -8.64370291e-01]\n", + " [-4.76642495e-01 -6.35673313e-02 -8.76795943e-01]\n", + " [-4.51347631e-01 -8.64912255e-02 -8.88146713e-01]\n", + " [-5.88528739e-01 -2.15216052e-04 -8.08476269e-01]\n", + " [-5.66930150e-01 -2.20415212e-02 -8.23470932e-01]\n", + " [-5.44218441e-01 -4.44193411e-02 -8.37766800e-01]\n", + " [-5.20484533e-01 -6.72025092e-02 -8.51222459e-01]\n", + " [-4.95834842e-01 -9.02492422e-02 -8.63714585e-01]\n", + " [-4.70392420e-01 -1.13419293e-01 -8.75138295e-01]\n", + " [-6.07303356e-01 -2.59053559e-02 -7.94047572e-01]\n", + " [-5.85791293e-01 -4.81471163e-02 -8.09030541e-01]\n", + " [-5.63120591e-01 -7.08866396e-02 -8.23328782e-01]\n", + " [-5.39380583e-01 -9.39790039e-02 -8.36801371e-01]\n", + " [-5.14676744e-01 -1.17282253e-01 -8.49324863e-01]\n", + " [-4.89132195e-01 -1.40654831e-01 -8.60793770e-01]\n", + " [-6.25450179e-01 -5.19693114e-02 -7.78531480e-01]\n", + " [-6.04053040e-01 -7.45774069e-02 -7.93446996e-01]\n", + " [-5.81456540e-01 -9.76318917e-02 -8.07698152e-01]\n", + " [-5.57748398e-01 -1.20987993e-01 -8.21144707e-01]\n", + " [-5.33032930e-01 -1.44502749e-01 -8.33663512e-01]\n", + " [-5.07432918e-01 -1.68032876e-01 -8.45148973e-01]\n", + " [-6.42845770e-01 -7.82462723e-02 -7.61988738e-01]\n", + " [-6.21590645e-01 -1.01171588e-01 -7.76781423e-01]\n", + " [-5.99100445e-01 -1.24493487e-01 -7.90936172e-01]\n", + " [-5.75461522e-01 -1.48066435e-01 -8.04313600e-01]\n", + " [-5.50776984e-01 -1.71745946e-01 -8.16791310e-01]\n", + " [-5.25168908e-01 -1.95386949e-01 -8.28264184e-01]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:fp_optics: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:cartToSphere: vec: [[-0.36086365 -0.25361631 0.89747212]\n", + " [-0.37793451 -0.23272405 0.89610547]\n", + " [-0.39496762 -0.21113523 0.8941043 ]\n", + " [-0.41188424 -0.18894145 0.89143284]\n", + " [-0.4286087 -0.16623392 0.8880658 ]\n", + " [-0.44506823 -0.14310367 0.88398847]\n", + " [-0.46119303 -0.11964207 0.87919666]\n", + " [-0.47691662 -0.09594109 0.87369666]\n", + " [-0.36086365 -0.25361631 0.89747212]\n", + " [-0.34075602 -0.2399074 0.90902683]\n", + " [-0.32004814 -0.22559833 0.92014922]\n", + " [-0.29880589 -0.210753 0.93075142]\n", + " [-0.277099 -0.19543467 0.94075578]\n", + " [-0.25500126 -0.17970613 0.95009477]\n", + " [-0.23259075 -0.16363018 0.95871096]\n", + " [-0.20994966 -0.14727014 0.96655711]\n", + " [-0.47691662 -0.09594109 0.87369666]\n", + " [-0.45723964 -0.08022417 0.88571779]\n", + " [-0.43679392 -0.06411906 0.89727355]\n", + " [-0.41564108 -0.04768716 0.90827773]\n", + " [-0.39384685 -0.03099012 0.91865351]\n", + " [-0.37148254 -0.01409098 0.92833301]\n", + " [-0.34862595 0.00294528 0.93725731]\n", + " [-0.32536148 0.02005174 0.94537709]\n", + " [-0.20994966 -0.14727014 0.96655711]\n", + " [-0.2263982 -0.12457261 0.96603598]\n", + " [-0.24298226 -0.10132455 0.96472429]\n", + " [-0.25962633 -0.07761356 0.96258522]\n", + " [-0.27625728 -0.05352811 0.95959192]\n", + " [-0.29280343 -0.02915904 0.95572794]\n", + " [-0.3091944 -0.00460021 0.95098773]\n", + " [-0.32536148 0.02005174 0.94537709]\n", + " [-0.36823842 -0.24455239 0.89699197]\n", + " [-0.38914526 -0.2184653 0.89489602]\n", + " [-0.40991693 -0.1914231 0.89181013]\n", + " [-0.43041285 -0.16359385 0.88768341]\n", + " [-0.45049904 -0.13514523 0.88248874]\n", + " [-0.47004839 -0.10624566 0.87622278]\n", + " [-0.35223286 -0.24764637 0.90255376]\n", + " [-0.32717703 -0.23043155 0.91643684]\n", + " [-0.30128452 -0.21237895 0.92958207]\n", + " [-0.27468205 -0.19360532 0.94184221]\n", + " [-0.24750553 -0.1742263 0.95309297]\n", + " [-0.21990041 -0.15435771 0.96323284]\n", + " [-0.4683825 -0.08922183 0.87900927]\n", + " [-0.44374126 -0.06969115 0.89344101]\n", + " [-0.41800629 -0.04963829 0.90708697]\n", + " [-0.39129682 -0.02917658 0.9198019 ]\n", + " [-0.36374424 -0.0084221 0.93146079]\n", + " [-0.33549456 0.01250466 0.94195915]\n", + " [-0.21717766 -0.13750384 0.96639876]\n", + " [-0.23743856 -0.10930503 0.96523331]\n", + " [-0.25782752 -0.08036622 0.96284279]\n", + " [-0.27820897 -0.05084985 0.95917363]\n", + " [-0.29845096 -0.0209232 0.9541956 ]\n", + " [-0.31842455 0.00923971 0.94790318]\n", + " [-0.36085433 -0.25350036 0.89750862]\n", + " [-0.36085433 -0.25350036 0.89750862]\n", + " [-0.3253868 0.01990885 0.94537139]\n", + " [-0.3253868 0.01990885 0.94537139]\n", + " [-0.3596166 -0.23863021 0.90207069]\n", + " [-0.33454739 -0.22123594 0.91604187]\n", + " [-0.3086229 -0.2030242 0.9292648 ]\n", + " [-0.28196963 -0.18411126 0.94159236]\n", + " [-0.25472348 -0.16461223 0.95290019]\n", + " [-0.2270302 -0.14464269 0.96308659]\n", + " [-0.38053186 -0.21235946 0.90005498]\n", + " [-0.35545256 -0.19448408 0.91423707]\n", + " [-0.32946698 -0.17584837 0.92764695]\n", + " [-0.30270065 -0.15656689 0.94013782]\n", + " [-0.27528928 -0.13675337 0.95158517]\n", + " [-0.24737947 -0.11652302 0.96188658]\n", + " [-0.40132595 -0.1851476 0.89702723]\n", + " [-0.37627823 -0.16683032 0.9113629 ]\n", + " [-0.35027584 -0.14780872 0.92491049]\n", + " [-0.32344301 -0.12819576 0.93752358]\n", + " [-0.2959149 -0.1081044 0.94907735]\n", + " [-0.26783872 -0.08765015 0.95946854]\n", + " [-0.42185831 -0.15716219 0.89293651]\n", + " [-0.396884 -0.13844033 0.90736837]\n", + " [-0.37090959 -0.11906902 0.92100415]\n", + " [-0.34405771 -0.09916029 0.93369777]\n", + " [-0.31646266 -0.07882719 0.9453241 ]\n", + " [-0.28827182 -0.05818624 0.95577912]\n", + " [-0.44199474 -0.12857046 0.88775576]\n", + " [-0.41713508 -0.10948019 0.90222636]\n", + " [-0.39123315 -0.0897946 0.9159004 ]\n", + " [-0.36440996 -0.06962575 0.92863213]\n", + " [-0.33679861 -0.04908757 0.94029629]\n", + " [-0.30854623 -0.02829816 0.95078833]\n", + " [-0.46160767 -0.09954081 0.8814817 ]\n", + " [-0.43690262 -0.08011844 0.89593367]\n", + " [-0.41111663 -0.06015476 0.9095958 ]\n", + " [-0.38436931 -0.03976266 0.9223227 ]\n", + " [-0.3567925 -0.0190576 0.93398925]\n", + " [-0.32853256 0.00184055 0.94449085]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:cartToSphere: vec: [[-0.59586368 0.19888819 -0.7780681 ]\n", + " [-0.57405636 0.20042753 -0.79390686]\n", + " [-0.55135111 0.20200346 -0.80944831]\n", + " [-0.527824 0.20358383 -0.82459411]\n", + " [-0.50355443 0.20514275 -0.83925526]\n", + " [-0.47862615 0.20665978 -0.85335148]\n", + " [-0.45312799 0.20811924 -0.86681105]\n", + " [-0.4271541 0.20950963 -0.87957097]\n", + " [-0.59586368 0.19888819 -0.7780681 ]\n", + " [-0.59588517 0.22485778 -0.77094737]\n", + " [-0.59533472 0.25124554 -0.76318559]\n", + " [-0.59420253 0.27792267 -0.75477305]\n", + " [-0.59248173 0.30476647 -0.74570959]\n", + " [-0.59016902 0.33165904 -0.73600462]\n", + " [-0.58726532 0.35848628 -0.72567695]\n", + " [-0.58377636 0.38513766 -0.7147546 ]\n", + " [-0.4271541 0.20950963 -0.87957097]\n", + " [-0.42568825 0.23667637 -0.87336923]\n", + " [-0.42384796 0.26421175 -0.86634004]\n", + " [-0.42162164 0.29199461 -0.8584721 ]\n", + " [-0.419002 0.31990617 -0.84976312]\n", + " [-0.41598634 0.34782868 -0.84022055]\n", + " [-0.41257679 0.37564539 -0.829862 ]\n", + " [-0.40878048 0.40324122 -0.81871548]\n", + " [-0.58377636 0.38513766 -0.7147546 ]\n", + " [-0.56110779 0.38857581 -0.73086722]\n", + " [-0.53753526 0.39177343 -0.74670571]\n", + " [-0.51312824 0.39470034 -0.76217521]\n", + " [-0.48796237 0.39733044 -0.77718804]\n", + " [-0.46212071 0.39964172 -0.7916634 ]\n", + " [-0.43569404 0.40161642 -0.80552775]\n", + " [-0.40878048 0.40324122 -0.81871548]\n", + " [-0.58647151 0.19964094 -0.78498068]\n", + " [-0.55913021 0.20155783 -0.80420635]\n", + " [-0.53051542 0.2034968 -0.82288665]\n", + " [-0.50077188 0.20540761 -0.84085388]\n", + " [-0.47005383 0.20725257 -0.85796023]\n", + " [-0.43852704 0.20900457 -0.8740773 ]\n", + " [-0.59586937 0.21015672 -0.77509603]\n", + " [-0.59551166 0.24228431 -0.76594006]\n", + " [-0.59428494 0.27491121 -0.75581031]\n", + " [-0.59217535 0.30780914 -0.74470256]\n", + " [-0.58917685 0.34076087 -0.73263406]\n", + " [-0.58529311 0.37355786 -0.71964331]\n", + " [-0.42664999 0.22129652 -0.8769251 ]\n", + " [-0.42460422 0.25485542 -0.86876923]\n", + " [-0.42198389 0.2888473 -0.85935839]\n", + " [-0.41877376 0.32305258 -0.84868461]\n", + " [-0.4149689 0.35725453 -0.83676162]\n", + " [-0.41057529 0.39123882 -0.8236262 ]\n", + " [-0.57402116 0.38657309 -0.72184552]\n", + " [-0.5456223 0.39062826 -0.74142152]\n", + " [-0.51593407 0.39429187 -0.7604906 ]\n", + " [-0.48509308 0.39751419 -0.77888842]\n", + " [-0.45325225 0.40025474 -0.79646628]\n", + " [-0.42058181 0.40248264 -0.81309204]\n", + " [-0.59579175 0.1989813 -0.77809937]\n", + " [-0.59579175 0.1989813 -0.77809937]\n", + " [-0.40888685 0.40314241 -0.81871103]\n", + " [-0.40888685 0.40314241 -0.81871103]\n", + " [-0.58651122 0.21087687 -0.78200738]\n", + " [-0.58605755 0.24316924 -0.77291996]\n", + " [-0.58475111 0.27595243 -0.76283445]\n", + " [-0.58257718 0.30899939 -0.75174677]\n", + " [-0.57952906 0.34209342 -0.73967436]\n", + " [-0.57560999 0.37502583 -0.72665588]\n", + " [-0.55906104 0.21294412 -0.80131489]\n", + " [-0.55833188 0.24564665 -0.79241607]\n", + " [-0.55679692 0.27882012 -0.78245545]\n", + " [-0.55443946 0.31224051 -0.77142903]\n", + " [-0.5512514 0.34569206 -0.75935426]\n", + " [-0.54723522 0.37896514 -0.74627008]\n", + " [-0.53033419 0.21500324 -0.82007271]\n", + " [-0.52932131 0.24803433 -0.81135561]\n", + " [-0.52755134 0.28152192 -0.80152043]\n", + " [-0.52500647 0.31524417 -0.79056266]\n", + " [-0.52167808 0.34898547 -0.77849927]\n", + " [-0.51756864 0.38253484 -0.76536906]\n", + " [-0.50047438 0.21700496 -0.8381135 ]\n", + " [-0.49916694 0.25028521 -0.82957199]\n", + " [-0.4971534 0.28401173 -0.8198633 ]\n", + " [-0.49441581 0.31796403 -0.808982 ]\n", + " [-0.49094594 0.35192619 -0.79694419]\n", + " [-0.48674682 0.38568584 -0.78378822]\n", + " [-0.4696354 0.21891232 -0.85528942]\n", + " [-0.46802162 0.25236353 -0.84691701]\n", + " [-0.46575549 0.28625388 -0.83733538]\n", + " [-0.46281984 0.32036356 -0.82653795]\n", + " [-0.45920751 0.35447621 -0.8145398 ]\n", + " [-0.45492259 0.38837831 -0.80137864]\n", + " [-0.4379831 0.22069856 -0.87147171]\n", + " [-0.43605178 0.25424306 -0.86326086]\n", + " [-0.43352502 0.28822182 -0.85380574]\n", + " [-0.43038702 0.32241525 -0.8430987 ]\n", + " [-0.4266322 0.35660669 -0.8311538 ]\n", + " [-0.42226602 0.3905819 -0.81800806]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:fp_optics: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:fp_optics: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:cartToSphere: vec: [[ 0.58062258 0.4956934 -0.64588348]\n", + " [ 0.59838535 0.50001962 -0.62603143]\n", + " [ 0.61599556 0.50419548 -0.60525729]\n", + " [ 0.63335883 0.50816747 -0.58362866]\n", + " [ 0.65038704 0.51189069 -0.56121709]\n", + " [ 0.66699803 0.51532844 -0.53809873]\n", + " [ 0.68311548 0.51845175 -0.51435496]\n", + " [ 0.69866919 0.52123896 -0.49007276]\n", + " [ 0.58062258 0.4956934 -0.64588348]\n", + " [ 0.56605675 0.51788411 -0.64138584]\n", + " [ 0.5508487 0.54020678 -0.63619364]\n", + " [ 0.53502983 0.56253661 -0.63031392]\n", + " [ 0.51863823 0.5847573 -0.6237574 ]\n", + " [ 0.50171888 0.60676029 -0.61653882]\n", + " [ 0.48432381 0.62844413 -0.6086776 ]\n", + " [ 0.4665119 0.64971421 -0.60019838]\n", + " [ 0.69866919 0.52123896 -0.49007276]\n", + " [ 0.68483205 0.54470661 -0.48404522]\n", + " [ 0.67016253 0.56821945 -0.47750271]\n", + " [ 0.65468847 0.59165859 -0.47044992]\n", + " [ 0.63844439 0.61491126 -0.46289621]\n", + " [ 0.62147279 0.63786936 -0.4548563 ]\n", + " [ 0.60382486 0.66042906 -0.44635075]\n", + " [ 0.58556075 0.68249138 -0.43740613]\n", + " [ 0.4665119 0.64971421 -0.60019838]\n", + " [ 0.48408857 0.65583427 -0.57925786]\n", + " [ 0.50161871 0.66155004 -0.5574318 ]\n", + " [ 0.51901174 0.66680969 -0.53478187]\n", + " [ 0.53618199 0.6715683 -0.5113755 ]\n", + " [ 0.55304786 0.67578769 -0.48728744]\n", + " [ 0.56953177 0.67943667 -0.46260066]\n", + " [ 0.58556075 0.68249138 -0.43740613]\n", + " [ 0.58833111 0.49767037 -0.63733093]\n", + " [ 0.61001123 0.50287999 -0.61237081]\n", + " [ 0.63136776 0.50780942 -0.58609244]\n", + " [ 0.6522359 0.51237244 -0.55862583]\n", + " [ 0.67246436 0.51650143 -0.53011127]\n", + " [ 0.69191518 0.52014612 -0.50070091]\n", + " [ 0.57441355 0.50535955 -0.64394161]\n", + " [ 0.55612638 0.53266285 -0.63796061]\n", + " [ 0.53690489 0.56003931 -0.63094303]\n", + " [ 0.51681638 0.58727132 -0.62290708]\n", + " [ 0.49594369 0.61415895 -0.61387999]\n", + " [ 0.47438546 0.64051827 -0.60389964]\n", + " [ 0.69268767 0.53144847 -0.48759236]\n", + " [ 0.67516536 0.56025611 -0.47985917]\n", + " [ 0.65641986 0.58901274 -0.4713565 ]\n", + " [ 0.63651192 0.61750833 -0.46209961]\n", + " [ 0.61551982 0.6455438 -0.45211564]\n", + " [ 0.59354158 0.67292999 -0.44144493]\n", + " [ 0.47423684 0.65235645 -0.59121104]\n", + " [ 0.49575983 0.6595915 -0.56494357]\n", + " [ 0.5171222 0.66616715 -0.53740669]\n", + " [ 0.53816427 0.67199786 -0.50872202]\n", + " [ 0.55873582 0.67701339 -0.4790273 ]\n", + " [ 0.57869588 0.68115932 -0.4484786 ]\n", + " [ 0.58063478 0.4957839 -0.64580304]\n", + " [ 0.58063478 0.4957839 -0.64580304]\n", + " [ 0.58557022 0.68240748 -0.43752434]\n", + " [ 0.58557022 0.68240748 -0.43752434]\n", + " [ 0.58212557 0.50730868 -0.63542719]\n", + " [ 0.56386762 0.53477972 -0.62933612]\n", + " [ 0.54465261 0.56231001 -0.62222262]\n", + " [ 0.5245477 0.58968277 -0.61410417]\n", + " [ 0.50363581 0.61669852 -0.60500736]\n", + " [ 0.48201585 0.64317326 -0.59496964]\n", + " [ 0.60385377 0.5126754 -0.6103479 ]\n", + " [ 0.58569111 0.54056673 -0.60394829]\n", + " [ 0.5665103 0.56848291 -0.59656791]\n", + " [ 0.54637788 0.59620948 -0.5882223 ]\n", + " [ 0.52537667 0.62354789 -0.57893642]\n", + " [ 0.50360629 0.65031352 -0.56874689]\n", + " [ 0.62526394 0.51773206 -0.58395079]\n", + " [ 0.60721596 0.54596386 -0.57724539]\n", + " [ 0.58809382 0.57419328 -0.56960314]\n", + " [ 0.56796299 0.60220784 -0.5610381 ]\n", + " [ 0.54690578 0.62980935 -0.55157433]\n", + " [ 0.52502212 0.65681207 -0.54124825]\n", + " [ 0.64619145 0.52239305 -0.55636509]\n", + " [ 0.62827807 0.55088713 -0.5493542 ]\n", + " [ 0.60923973 0.57935809 -0.54145282]\n", + " [ 0.58914049 0.60759486 -0.53267435]\n", + " [ 0.56806171 0.63539914 -0.52304284]\n", + " [ 0.5461032 0.66258387 -0.51259527]\n", + " [ 0.66648487 0.52659131 -0.52773053]\n", + " [ 0.64872553 0.55527053 -0.52041313]\n", + " [ 0.62979579 0.58391153 -0.51225442]\n", + " [ 0.60975818 0.61230401 -0.50326808]\n", + " [ 0.58869278 0.64024936 -0.49347905]\n", + " [ 0.56669886 0.66755929 -0.48292546]\n", + " [ 0.6860058 0.53027687 -0.49819924]\n", + " [ 0.66841868 0.55906454 -0.49057448]\n", + " [ 0.64962117 0.58780374 -0.48216087]\n", + " [ 0.62967441 0.61628446 -0.47297316]\n", + " [ 0.60865715 0.64430772 -0.46303783]\n", + " [ 0.58666777 0.67168447 -0.45239462]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:fp_optics: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:cartToSphere: vec: [[ 8.72035636e-02 -3.93542852e-01 9.15160949e-01]\n", + " [ 5.92600474e-02 -3.94820700e-01 9.16845059e-01]\n", + " [ 3.07144116e-02 -3.95805170e-01 9.17820730e-01]\n", + " [ 1.67779065e-03 -3.96475010e-01 9.18043981e-01]\n", + " [-2.77375539e-02 -3.96813045e-01 9.17480264e-01]\n", + " [-5.74170348e-02 -3.96806295e-01 9.16104824e-01]\n", + " [-8.72436575e-02 -3.96446168e-01 9.13903157e-01]\n", + " [-1.17098780e-01 -3.95728640e-01 9.10871407e-01]\n", + " [ 8.72035636e-02 -3.93542852e-01 9.15160949e-01]\n", + " [ 8.65787316e-02 -3.66735121e-01 9.26288008e-01]\n", + " [ 8.57851705e-02 -3.39710177e-01 9.36609791e-01]\n", + " [ 8.48242287e-02 -3.12578108e-01 9.46097128e-01]\n", + " [ 8.36963552e-02 -2.85452431e-01 9.54731287e-01]\n", + " [ 8.24005234e-02 -2.58450149e-01 9.62503857e-01]\n", + " [ 8.09335327e-02 -2.31692409e-01 9.69416521e-01]\n", + " [ 7.92893315e-02 -2.05305726e-01 9.75480784e-01]\n", + " [-1.17098780e-01 -3.95728640e-01 9.10871407e-01]\n", + " [-1.17593920e-01 -3.67995130e-01 9.22361781e-01]\n", + " [-1.17984072e-01 -3.40019905e-01 9.32987794e-01]\n", + " [-1.18269214e-01 -3.11917906e-01 9.42719265e-01]\n", + " [-1.18450722e-01 -2.83805907e-01 9.51537511e-01]\n", + " [-1.18531336e-01 -2.55801584e-01 9.59435184e-01]\n", + " [-1.18515125e-01 -2.28023341e-01 9.66415812e-01]\n", + " [-1.18407453e-01 -2.00591201e-01 9.72493108e-01]\n", + " [ 7.92893315e-02 -2.05305726e-01 9.75480784e-01]\n", + " [ 5.22807605e-02 -2.04775124e-01 9.77411822e-01]\n", + " [ 2.46668922e-02 -2.04224360e-01 9.78613282e-01]\n", + " [-3.43409410e-03 -2.03631445e-01 9.79041593e-01]\n", + " [-3.19064621e-02 -2.02980311e-01 9.78662848e-01]\n", + " [-6.06355962e-02 -2.02260107e-01 9.77452901e-01]\n", + " [-8.95072561e-02 -2.01464514e-01 9.75397612e-01]\n", + " [-1.18407453e-01 -2.00591201e-01 9.72493108e-01]\n", + " [ 7.50994014e-02 -3.94043000e-01 9.16018665e-01]\n", + " [ 4.04328417e-02 -3.95413829e-01 9.17612712e-01]\n", + " [ 4.97227985e-03 -3.96322603e-01 9.18097855e-01]\n", + " [-3.10761868e-02 -3.96736013e-01 9.17406565e-01]\n", + " [-6.75016004e-02 -3.96630192e-01 9.15493323e-01]\n", + " [-1.04087836e-01 -3.95991216e-01 9.12335837e-01]\n", + " [ 8.68575941e-02 -3.81892658e-01 9.20116164e-01]\n", + " [ 8.59782574e-02 -3.48876304e-01 9.33216515e-01]\n", + " [ 8.48470836e-02 -3.15642665e-01 9.45077076e-01]\n", + " [ 8.34652944e-02 -2.82399314e-01 9.55659025e-01]\n", + " [ 8.18309239e-02 -2.49361727e-01 9.64946853e-01]\n", + " [ 7.99369260e-02 -2.16755074e-01 9.72947751e-01]\n", + " [-1.17225520e-01 -3.83676767e-01 9.15996897e-01]\n", + " [-1.17762017e-01 -3.49509729e-01 9.29502586e-01]\n", + " [-1.18140842e-01 -3.15093576e-01 9.41678703e-01]\n", + " [-1.18363945e-01 -2.80642580e-01 9.52486073e-01]\n", + " [-1.18436362e-01 -2.46373360e-01 9.61911116e-01]\n", + " [-1.18366114e-01 -2.12504473e-01 9.69964593e-01]\n", + " [ 6.76011545e-02 -2.05165090e-01 9.76389968e-01]\n", + " [ 3.40761005e-02 -2.04505481e-01 9.78272113e-01]\n", + " [-2.40363702e-04 -2.03792842e-01 9.79014004e-01]\n", + " [-3.51342415e-02 -2.02995165e-01 9.78549206e-01]\n", + " [-7.03944470e-02 -2.02092399e-01 9.76833294e-01]\n", + " [-1.05810755e-01 -2.01074590e-01 9.73844491e-01]\n", + " [ 8.71073123e-02 -3.93456510e-01 9.15207239e-01]\n", + " [ 8.71073123e-02 -3.93456510e-01 9.15207239e-01]\n", + " [-1.18309218e-01 -2.00687399e-01 9.72485217e-01]\n", + " [-1.18309218e-01 -2.00687399e-01 9.72485217e-01]\n", + " [ 7.48506367e-02 -3.82433541e-01 9.20946236e-01]\n", + " [ 7.39908664e-02 -3.49284310e-01 9.34090907e-01]\n", + " [ 7.29043547e-02 -3.15912886e-01 9.45983088e-01]\n", + " [ 7.15927151e-02 -2.82527160e-01 9.56583968e-01]\n", + " [ 7.00546181e-02 -2.49342320e-01 9.65878232e-01]\n", + " [ 6.82838808e-02 -2.16582531e-01 9.73873359e-01]\n", + " [ 4.01870704e-02 -3.83689684e-01 9.22587246e-01]\n", + " [ 3.93835616e-02 -3.50206675e-01 9.35844122e-01]\n", + " [ 3.84241624e-02 -3.16490060e-01 9.47817295e-01]\n", + " [ 3.73110636e-02 -2.82749044e-01 9.58467977e-01]\n", + " [ 3.60440471e-02 -2.49198523e-01 9.67781444e-01]\n", + " [ 3.46187263e-02 -2.16060297e-01 9.75766105e-01]\n", + " [ 4.72999149e-03 -3.84505625e-01 9.23110531e-01]\n", + " [ 3.98458745e-03 -3.50752904e-01 9.36459569e-01]\n", + " [ 3.15447814e-03 -3.16758450e-01 9.48500993e-01]\n", + " [ 2.24167859e-03 -2.82733091e-01 9.59196004e-01]\n", + " [ 1.24603266e-03 -2.48892017e-01 9.68530439e-01]\n", + " [ 1.63796965e-04 -2.15455442e-01 9.76513659e-01]\n", + " [-3.13144678e-02 -3.84848694e-01 9.22448311e-01]\n", + " [-3.19996102e-02 -3.50892070e-01 9.35868997e-01]\n", + " [-3.26975512e-02 -3.16688477e-01 9.47965864e-01]\n", + " [-3.34070623e-02 -2.82450308e-01 9.58700053e-01]\n", + " [-3.41291400e-02 -2.48393321e-01 9.68057829e-01]\n", + " [-3.48679885e-02 -2.14736806e-01 9.76049347e-01]\n", + " [-6.77353557e-02 -3.84695678e-01 9.20554809e-01]\n", + " [-6.83582567e-02 -3.50602800e-01 9.34026137e-01]\n", + " [-6.89214772e-02 -3.16260358e-01 9.46165533e-01]\n", + " [-6.94249968e-02 -2.81881943e-01 9.56934031e-01]\n", + " [-6.98713020e-02 -2.47683858e-01 9.66318119e-01]\n", + " [-7.02659055e-02 -2.13884914e-01 9.74328459e-01]\n", + " [-1.04316584e-01 -3.84033172e-01 9.17407528e-01]\n", + " [-1.04875783e-01 -3.49873157e-01 9.30908075e-01]\n", + " [-1.05302782e-01 -3.15463479e-01 9.43076941e-01]\n", + " [-1.05598999e-01 -2.81018354e-01 9.53875011e-01]\n", + " [-1.05768779e-01 -2.46754377e-01 9.63288764e-01]\n", + " [-1.05819449e-01 -2.12890145e-01 9.71329002e-01]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:fp_optics: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:cartToSphere: vec: [[0.1914026 0.22060999 0.95639755]\n", + " [0.20306829 0.24358816 0.94838182]\n", + " [0.21496448 0.26678897 0.93947534]\n", + " [0.22701622 0.29010886 0.92967762]\n", + " [0.23915486 0.31344728 0.91899715]\n", + " [0.25131736 0.33670619 0.90745166]\n", + " [0.26344564 0.35978987 0.89506851]\n", + " [0.275486 0.38260504 0.88188483]\n", + " [0.1914026 0.22060999 0.95639755]\n", + " [0.213713 0.20560488 0.95501486]\n", + " [0.23642789 0.19024721 0.95284199]\n", + " [0.25942961 0.17458179 0.94985129]\n", + " [0.28260678 0.1586569 0.94602399]\n", + " [0.30585343 0.14252451 0.94135033]\n", + " [0.32906819 0.12624029 0.93582985]\n", + " [0.35215379 0.10986325 0.92947177]\n", + " [0.275486 0.38260504 0.88188483]\n", + " [0.29956824 0.36864301 0.87997796]\n", + " [0.32390604 0.35410062 0.87732413]\n", + " [0.34838818 0.33901936 0.87389447]\n", + " [0.37290707 0.32344425 0.86966898]\n", + " [0.39735721 0.30742489 0.86463702]\n", + " [0.42163461 0.29101615 0.85879791]\n", + " [0.44563719 0.27427811 0.85216138]\n", + " [0.35215379 0.10986325 0.92947177]\n", + " [0.36590021 0.13280544 0.92112961]\n", + " [0.37962843 0.15609186 0.91187586]\n", + " [0.39326738 0.17962434 0.90170719]\n", + " [0.40674998 0.20330611 0.8906296 ]\n", + " [0.4200124 0.2270404 0.87865934]\n", + " [0.43299389 0.25073006 0.86582373]\n", + " [0.44563719 0.27427811 0.85216138]\n", + " [0.19653155 0.23054392 0.95300832]\n", + " [0.21099542 0.25886949 0.94258555]\n", + " [0.22573014 0.2874263 0.93082331]\n", + " [0.24060672 0.31602801 0.91773346]\n", + " [0.25550905 0.34449412 0.90334873]\n", + " [0.27033202 0.37264939 0.88772351]\n", + " [0.20111249 0.21419203 0.95586377]\n", + " [0.22874499 0.19555952 0.95364155]\n", + " [0.2568673 0.17644144 0.95020398]\n", + " [0.28527181 0.15692519 0.94551281]\n", + " [0.31376333 0.13710647 0.9395501 ]\n", + " [0.34215694 0.11708916 0.93231902]\n", + " [0.28590604 0.37651368 0.88118964]\n", + " [0.31560698 0.35900564 0.87835482]\n", + " [0.34558084 0.34066693 0.8743683 ]\n", + " [0.37562816 0.32157888 0.86918957]\n", + " [0.40555466 0.30183292 0.86279911]\n", + " [0.43516962 0.28153224 0.85519998]\n", + " [0.35806582 0.1198737 0.92596931]\n", + " [0.37490962 0.14823618 0.91513322]\n", + " [0.39165511 0.17701783 0.90292357]\n", + " [0.40817722 0.20603998 0.88934745]\n", + " [0.42435841 0.23512444 0.87443492]\n", + " [0.44008828 0.26409238 0.85824095]\n", + " [0.19151748 0.22063741 0.95636823]\n", + " [0.19151748 0.22063741 0.95636823]\n", + " [0.4455131 0.27425566 0.85223349]\n", + " [0.4455131 0.27425566 0.85223349]\n", + " [0.20620071 0.22411923 0.95249768]\n", + " [0.23403054 0.20552919 0.95025652]\n", + " [0.26233206 0.18642957 0.94679771]\n", + " [0.29089869 0.16690778 0.94208266]\n", + " [0.31953592 0.14705975 0.93609306]\n", + " [0.34805892 0.12698981 0.92883183]\n", + " [0.22085556 0.25250951 0.94205189]\n", + " [0.24919263 0.23405821 0.93974453]\n", + " [0.27795395 0.21503104 0.93621753]\n", + " [0.30693583 0.19551519 0.93143127]\n", + " [0.33594527 0.17560699 0.92536639]\n", + " [0.36479722 0.15541177 0.91802515]\n", + " [0.23575363 0.28114041 0.93025819]\n", + " [0.26452339 0.26285652 0.9278652 ]\n", + " [0.29367558 0.24393319 0.92425714]\n", + " [0.32300893 0.22445693 0.91939345]\n", + " [0.35233113 0.20452385 0.91325395]\n", + " [0.38145616 0.18423982 0.90584043]\n", + " [0.2507668 0.30982597 0.91712806]\n", + " [0.27989718 0.29173927 0.91462876]\n", + " [0.30937309 0.2729525 0.91092548]\n", + " [0.33899484 0.25355092 0.90597706]\n", + " [0.36857001 0.23362978 0.8997629 ]\n", + " [0.39791118 0.21329483 0.89228471]\n", + " [0.26577967 0.33838565 0.90269392]\n", + " [0.29520009 0.32052583 0.90006672]\n", + " [0.32493313 0.30190836 0.8962532 ]\n", + " [0.35477971 0.28261685 0.89121214]\n", + " [0.3845468 0.26274512 0.88492302]\n", + " [0.4140454 0.24239819 0.8773879 ]\n", + " [0.28068746 0.36664379 0.88701008]\n", + " [0.31032768 0.34903925 0.88423319]\n", + " [0.34025071 0.33062254 0.88029438]\n", + " [0.37025731 0.31147557 0.87515284]\n", + " [0.40015353 0.2916904 0.86878873]\n", + " [0.42974903 0.27137076 0.86120479]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:fp_optics: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:cartToSphere: vec: [[-1.01971161e-01 5.55436837e-01 -8.25282862e-01]\n", + " [-8.83416063e-02 5.35694451e-01 -8.39778075e-01]\n", + " [-7.43726440e-02 5.15129040e-01 -8.53879840e-01]\n", + " [-6.01160713e-02 4.93799364e-01 -8.67495387e-01]\n", + " [-4.56244422e-02 4.71769412e-01 -8.80540761e-01]\n", + " [-3.09519349e-02 4.49109839e-01 -8.92940272e-01]\n", + " [-1.61547436e-02 4.25898779e-01 -9.04626583e-01]\n", + " [-1.29089687e-03 4.02221793e-01 -9.15541350e-01]\n", + " [-1.01971161e-01 5.55436837e-01 -8.25282862e-01]\n", + " [-7.66829560e-02 5.68335685e-01 -8.19215645e-01]\n", + " [-5.13644104e-02 5.80648284e-01 -8.12532625e-01]\n", + " [-2.61138154e-02 5.92331362e-01 -8.05271151e-01]\n", + " [-1.02884288e-03 6.03346777e-01 -7.97478281e-01]\n", + " [ 2.37936578e-02 6.13661129e-01 -7.89210923e-01]\n", + " [ 4.82575459e-02 6.23245295e-01 -7.80536041e-01]\n", + " [ 7.22670928e-02 6.32074154e-01 -7.71530772e-01]\n", + " [-1.29089687e-03 4.02221793e-01 -9.15541350e-01]\n", + " [ 2.47823485e-02 4.15664070e-01 -9.09180519e-01]\n", + " [ 5.07495852e-02 4.28688432e-01 -9.02025891e-01]\n", + " [ 7.65087702e-02 4.41248879e-01 -8.94117350e-01]\n", + " [ 1.01960982e-01 4.53305570e-01 -8.85504386e-01]\n", + " [ 1.27010833e-01 4.64824788e-01 -8.76245493e-01]\n", + " [ 1.51565881e-01 4.75778424e-01 -8.66407915e-01]\n", + " [ 1.75535168e-01 4.86143149e-01 -8.56067896e-01]\n", + " [ 7.22670928e-02 6.32074154e-01 -7.71530772e-01]\n", + " [ 8.69548431e-02 6.13595470e-01 -7.84818103e-01]\n", + " [ 1.01756689e-01 5.94215694e-01 -7.97842895e-01]\n", + " [ 1.16617721e-01 5.73997316e-01 -8.10510572e-01]\n", + " [ 1.31482471e-01 5.53007031e-01 -8.22736643e-01]\n", + " [ 1.46294788e-01 5.31316117e-01 -8.34446534e-01]\n", + " [ 1.60997974e-01 5.09000925e-01 -8.45575373e-01]\n", + " [ 1.75535168e-01 4.86143149e-01 -8.56067896e-01]\n", + " [-9.59870223e-02 5.46979107e-01 -8.31625125e-01]\n", + " [-7.90470024e-02 5.22222589e-01 -8.49137880e-01]\n", + " [-6.16487751e-02 4.96287662e-01 -8.65966504e-01]\n", + " [-4.38887291e-02 4.69289874e-01 -8.81952829e-01]\n", + " [-2.58666559e-02 4.41359394e-01 -8.96957525e-01]\n", + " [-7.68680332e-03 4.12643180e-01 -9.10860318e-01]\n", + " [-9.09091351e-02 5.61064019e-01 -8.22765274e-01]\n", + " [-5.98822280e-02 5.76484887e-01 -8.14910605e-01]\n", + " [-2.89075678e-02 5.90981688e-01 -8.06166855e-01]\n", + " [ 1.83475334e-03 6.04482084e-01 -7.96616623e-01]\n", + " [ 3.21664250e-02 6.16924536e-01 -7.86364698e-01]\n", + " [ 6.19106411e-02 6.28257091e-01 -7.75538587e-01]\n", + " [ 1.00326622e-02 4.08212511e-01 -9.12831798e-01]\n", + " [ 4.19297762e-02 4.24412262e-01 -9.04497720e-01]\n", + " [ 7.35660736e-02 4.39937759e-01 -8.95009945e-01]\n", + " [ 1.04758088e-01 4.54713085e-01 -8.84455625e-01]\n", + " [ 1.35330145e-01 4.68676112e-01 -8.72942412e-01]\n", + " [ 1.65112761e-01 4.81777124e-01 -8.60597803e-01]\n", + " [ 7.85721162e-02 6.24102749e-01 -7.77381619e-01]\n", + " [ 9.66567684e-02 6.00840567e-01 -7.93503675e-01]\n", + " [ 1.14858448e-01 5.76286560e-01 -8.09136167e-01]\n", + " [ 1.33075288e-01 5.50561759e-01 -8.24119359e-01]\n", + " [ 1.51203928e-01 5.23797442e-01 -8.38315938e-01]\n", + " [ 1.69139896e-01 4.96136386e-01 -8.51610464e-01]\n", + " [-1.01838874e-01 5.55415847e-01 -8.25313323e-01]\n", + " [-1.01838874e-01 5.55415847e-01 -8.25313323e-01]\n", + " [ 1.75404937e-01 4.86187727e-01 -8.56069274e-01]\n", + " [ 1.75404937e-01 4.86187727e-01 -8.56069274e-01]\n", + " [-8.50155921e-02 5.52650485e-01 -8.29065613e-01]\n", + " [-5.38785770e-02 5.68144944e-01 -8.21162847e-01]\n", + " [-2.28061616e-02 5.82726880e-01 -8.12347993e-01]\n", + " [ 8.02114528e-03 5.96324175e-01 -8.02703643e-01]\n", + " [ 3.84249882e-02 6.08875747e-01 -7.92334427e-01]\n", + " [ 6.82288165e-02 6.20330102e-01 -7.81367643e-01]\n", + " [-6.79710530e-02 5.27952804e-01 -8.46549333e-01]\n", + " [-3.65608934e-02 5.43637743e-01 -8.38523288e-01]\n", + " [-5.25090573e-03 5.58444998e-01 -8.29524932e-01]\n", + " [ 2.57771374e-02 5.72302817e-01 -8.19637130e-01]\n", + " [ 5.63448336e-02 5.85151311e-01 -8.08964278e-01]\n", + " [ 8.62766241e-02 5.96940485e-01 -7.97632999e-01]\n", + " [-5.04887148e-02 5.02066397e-01 -8.63354054e-01]\n", + " [-1.88637976e-02 5.17915389e-01 -8.55223835e-01]\n", + " [ 1.26245010e-02 5.32925348e-01 -8.46068079e-01]\n", + " [ 4.37932240e-02 5.47024371e-01 -8.35970389e-01]\n", + " [ 7.44641218e-02 5.60153255e-01 -8.25035409e-01]\n", + " [ 1.04462945e-01 5.72263302e-01 -8.13389333e-01]\n", + " [-3.26655531e-02 4.75106570e-01 -8.79321732e-01]\n", + " [-8.85986286e-04 4.91092972e-01 -8.71106714e-01]\n", + " [ 3.07198385e-02 5.06283591e-01 -8.61819713e-01]\n", + " [ 6.19681234e-02 5.20605782e-01 -8.51545402e-01]\n", + " [ 9.26810573e-02 5.34000289e-01 -8.40389144e-01]\n", + " [ 1.22685897e-01 5.46419054e-01 -8.28477150e-01]\n", + " [-1.46020373e-02 4.47203151e-01 -8.94313212e-01]\n", + " [ 1.72702898e-02 4.63299576e-01 -8.86033431e-01]\n", + " [ 4.89315353e-02 4.78648508e-01 -8.76642065e-01]\n", + " [ 8.01976095e-02 4.93176077e-01 -8.66224971e-01]\n", + " [ 1.10891453e-01 5.06822199e-01 -8.54888498e-01]\n", + " [ 1.40841854e-01 5.19538619e-01 -8.42759275e-01]\n", + " [ 3.59701107e-03 4.18502764e-01 -9.08208400e-01]\n", + " [ 3.54988975e-02 4.34680742e-01 -8.99884704e-01]\n", + " [ 6.71527772e-02 4.50164533e-01 -8.90416980e-01]\n", + " [ 9.83749113e-02 4.64878766e-01 -8.79892101e-01]\n", + " [ 1.28989239e-01 4.78761914e-01 -8.68417414e-01]\n", + " [ 1.58825894e-01 4.91764750e-01 -8.56120182e-01]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:cartToSphere: vec: [[ 1.62737085e-01 9.80915512e-01 -1.06402069e-01]\n", + " [ 1.63975039e-01 9.83253233e-01 -7.95315457e-02]\n", + " [ 1.64969931e-01 9.84924561e-01 -5.20435513e-02]\n", + " [ 1.65719884e-01 9.85879637e-01 -2.40470850e-02]\n", + " [ 1.66225370e-01 9.86078214e-01 4.34526678e-03]\n", + " [ 1.66487648e-01 9.85490519e-01 3.30197027e-02]\n", + " [ 1.66508041e-01 9.84097628e-01 6.18621954e-02]\n", + " [ 1.66287829e-01 9.81891634e-01 9.07588950e-02]\n", + " [ 1.62737085e-01 9.80915512e-01 -1.06402069e-01]\n", + " [ 1.36129683e-01 9.84762129e-01 -1.08223186e-01]\n", + " [ 1.08849044e-01 9.87969310e-01 -1.09856850e-01]\n", + " [ 8.10011796e-02 9.90480147e-01 -1.11300884e-01]\n", + " [ 5.26964466e-02 9.92247180e-01 -1.12554958e-01]\n", + " [ 2.40470146e-02 9.93233343e-01 -1.13618960e-01]\n", + " [-4.83416178e-03 9.93412379e-01 -1.14492250e-01]\n", + " [-3.38337156e-02 9.92769024e-01 -1.15173541e-01]\n", + " [ 1.66287829e-01 9.81891634e-01 9.07588950e-02]\n", + " [ 1.38698113e-01 9.86167932e-01 9.07504400e-02]\n", + " [ 1.10430331e-01 9.89739202e-01 9.06722304e-02]\n", + " [ 8.15940901e-02 9.92546479e-01 9.05201179e-02]\n", + " [ 5.22977594e-02 9.94541338e-01 9.02910346e-02]\n", + " [ 2.26508823e-02 9.95685692e-01 8.99829955e-02]\n", + " [-7.23348987e-03 9.95952004e-01 8.95951016e-02]\n", + " [-3.72379685e-02 9.95323874e-01 8.91275440e-02]\n", + " [-3.38337156e-02 9.92769024e-01 -1.15173541e-01]\n", + " [-3.43716260e-02 9.95588480e-01 -8.73050424e-02]\n", + " [-3.48984986e-02 9.97658942e-01 -5.88109688e-02]\n", + " [-3.54100176e-02 9.98928376e-01 -2.98032072e-02]\n", + " [-3.59025412e-02 9.99355219e-01 -3.92227447e-04]\n", + " [-3.63730222e-02 9.98908356e-01 2.93103953e-02]\n", + " [-3.68188928e-02 9.97567508e-01 5.91898380e-02]\n", + " [-3.72379685e-02 9.95323874e-01 8.91275440e-02]\n", + " [ 1.63216337e-01 9.82027539e-01 -9.47752033e-02]\n", + " [ 1.64569602e-01 9.84451778e-01 -6.14128930e-02]\n", + " [ 1.65555707e-01 9.85824422e-01 -2.72308126e-02]\n", + " [ 1.66174671e-01 9.86067314e-01 7.56505918e-03]\n", + " [ 1.66428733e-01 9.85125679e-01 4.27653203e-02]\n", + " [ 1.66320304e-01 9.82969254e-01 7.81601086e-02]\n", + " [ 1.51229678e-01 9.82676565e-01 -1.07127746e-01]\n", + " [ 1.18152798e-01 9.86969119e-01 -1.09233124e-01]\n", + " [ 8.41693195e-02 9.90243603e-01 -1.11054633e-01]\n", + " [ 4.94808145e-02 9.92408641e-01 -1.12591021e-01]\n", + " [ 1.42936767e-02 9.93396038e-01 -1.13842005e-01]\n", + " [-2.11839645e-02 9.93162017e-01 -1.14806127e-01]\n", + " [ 1.54350264e-01 9.83847540e-01 9.06642944e-02]\n", + " [ 1.20066369e-01 9.88622532e-01 9.06066011e-02]\n", + " [ 8.48730902e-02 9.92278767e-01 9.04400784e-02]\n", + " [ 4.89703946e-02 9.94722736e-01 9.01586327e-02]\n", + " [ 1.25602289e-02 9.95884346e-01 8.97586162e-02]\n", + " [-2.41474400e-02 9.95717496e-01 8.92388344e-02]\n", + " [-3.39696644e-02 9.94090251e-01 -1.03104972e-01]\n", + " [-3.46211059e-02 9.97049225e-01 -6.85143888e-02]\n", + " [-3.52517918e-02 9.98830313e-01 -3.30955788e-02]\n", + " [-3.58547413e-02 9.99352665e-01 2.94757073e-03]\n", + " [-3.64243376e-02 9.98559045e-01 3.94093949e-02]\n", + " [-3.69560225e-02 9.96416859e-01 7.60768997e-02]\n", + " [ 1.62651997e-01 9.80938752e-01 -1.06317890e-01]\n", + " [ 1.62651997e-01 9.80938752e-01 -1.06317890e-01]\n", + " [-3.71339105e-02 9.95336766e-01 8.90269390e-02]\n", + " [-3.71339105e-02 9.95336766e-01 8.90269390e-02]\n", + " [ 1.51746437e-01 9.83791556e-01 -9.55363486e-02]\n", + " [ 1.18531474e-01 9.88150077e-01 -9.75177656e-02]\n", + " [ 8.44077315e-02 9.91477219e-01 -9.92383958e-02]\n", + " [ 4.95784249e-02 9.93680919e-01 -1.00698619e-01]\n", + " [ 1.42504460e-02 9.94692713e-01 -1.01898630e-01]\n", + " [-2.13678095e-02 9.94468701e-01 -1.02836859e-01]\n", + " [ 1.52978426e-01 9.86280650e-01 -6.20328938e-02]\n", + " [ 1.19414545e-01 9.90801614e-01 -6.36579054e-02]\n", + " [ 8.49390815e-02 9.94257770e-01 -6.50910001e-02]\n", + " [ 4.97574552e-02 9.96555987e-01 -6.63352071e-02]\n", + " [ 1.40765735e-02 9.97627346e-01 -6.73908698e-02]\n", + " [-2.18948208e-02 9.97427592e-01 -6.82555216e-02]\n", + " [ 1.53865565e-01 9.87703233e-01 -2.77076006e-02]\n", + " [ 1.20019827e-01 9.92348621e-01 -2.89733428e-02]\n", + " [ 8.52623692e-02 9.95903221e-01 -3.01181592e-02]\n", + " [ 4.97981578e-02 9.98273548e-01 -3.11458977e-02]\n", + " [ 1.38328768e-02 9.99390333e-01 -3.20564029e-02]\n", + " [-2.24245277e-02 9.99208815e-01 -3.28463722e-02]\n", + " [ 1.54409489e-01 9.87980470e-01 7.23195035e-03]\n", + " [ 1.20351518e-01 9.92711182e-01 6.32620981e-03]\n", + " [ 8.53824713e-02 9.96333229e-01 5.47089660e-03]\n", + " [ 4.97055399e-02 9.98753036e-01 4.66188861e-03]\n", + " [ 1.35248228e-02 9.99900932e-01 3.89934143e-03]\n", + " [-2.29504191e-02 9.99731526e-01 3.18649012e-03]\n", + " [ 1.54612913e-01 9.87057317e-01 4.25758251e-02]\n", + " [ 1.20412422e-01 9.91833794e-01 4.20306404e-02]\n", + " [ 8.53015511e-02 9.95491903e-01 4.14670578e-02]\n", + " [ 4.94815842e-02 9.97938056e-01 4.08804161e-02]\n", + " [ 1.31552838e-02 9.99102236e-01 4.02698362e-02]\n", + " [-2.34677071e-02 9.98938513e-01 3.96372802e-02]\n", + " [ 1.54478163e-01 9.84903409e-01 7.81138364e-02]\n", + " [ 1.20203991e-01 9.89685830e-01 7.79291886e-02]\n", + " [ 8.50201507e-02 9.93348198e-01 7.76590671e-02]\n", + " [ 4.91267506e-02 9.95796973e-01 7.72978037e-02]\n", + " [ 1.27258192e-02 9.96962022e-01 7.68425618e-02]\n", + " [-2.39727211e-02 9.96797210e-01 7.62930605e-02]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:fp_optics: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:fp_optics: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:cartToSphere: vec: [[-0.03906867 -0.6061491 -0.7943909 ]\n", + " [-0.03846833 -0.62740031 -0.77774613]\n", + " [-0.03767943 -0.6486183 -0.76018061]\n", + " [-0.0367128 -0.66969003 -0.74173273]\n", + " [-0.03558054 -0.69050664 -0.72245042]\n", + " [-0.0342942 -0.71096556 -0.70239012]\n", + " [-0.03286403 -0.73097138 -0.68161631]\n", + " [-0.03129876 -0.75043628 -0.66020132]\n", + " [-0.03906867 -0.6061491 -0.7943909 ]\n", + " [-0.01233287 -0.60395033 -0.79692653]\n", + " [ 0.01499646 -0.60136815 -0.79883131]\n", + " [ 0.04280708 -0.59837955 -0.80006841]\n", + " [ 0.0709836 -0.59496715 -0.80060941]\n", + " [ 0.09941013 -0.59112064 -0.80043364]\n", + " [ 0.1279715 -0.58683752 -0.799528 ]\n", + " [ 0.15655356 -0.5821232 -0.79788694]\n", + " [-0.03129876 -0.75043628 -0.66020132]\n", + " [-0.00343198 -0.74971558 -0.66175129]\n", + " [ 0.02501 -0.74837978 -0.66279876]\n", + " [ 0.05391075 -0.74640039 -0.66330995]\n", + " [ 0.08315651 -0.74375663 -0.66325792]\n", + " [ 0.11263378 -0.74043564 -0.66262259]\n", + " [ 0.142227 -0.73643295 -0.66139096]\n", + " [ 0.17181784 -0.73175293 -0.65955764]\n", + " [ 0.15655356 -0.5821232 -0.79788694]\n", + " [ 0.15903106 -0.60419246 -0.78080766]\n", + " [ 0.16143527 -0.6262118 -0.76275648]\n", + " [ 0.1637488 -0.64806541 -0.74377252]\n", + " [ 0.16595636 -0.66964549 -0.72390151]\n", + " [ 0.16804457 -0.69085043 -0.70319748]\n", + " [ 0.17000174 -0.71158349 -0.68172453]\n", + " [ 0.17181784 -0.73175293 -0.65955764]\n", + " [-0.03873995 -0.61540497 -0.7872585 ]\n", + " [-0.03787508 -0.64144352 -0.76623475]\n", + " [-0.03673767 -0.66731952 -0.74386491]\n", + " [-0.03534957 -0.69283065 -0.72023336]\n", + " [-0.03373201 -0.71778818 -0.69544395]\n", + " [-0.0319032 -0.74201959 -0.66961863]\n", + " [-0.02748951 -0.6053089 -0.79551584]\n", + " [ 0.00569208 -0.60236029 -0.79820403]\n", + " [ 0.03965423 -0.59881222 -0.79990716]\n", + " [ 0.07418555 -0.59463022 -0.80056942]\n", + " [ 0.10907288 -0.58979541 -0.80015279]\n", + " [ 0.14410456 -0.58430645 -0.79863624]\n", + " [-0.01923267 -0.75012971 -0.66101098]\n", + " [ 0.0153225 -0.74883611 -0.66257807]\n", + " [ 0.05062563 -0.74658956 -0.66335592]\n", + " [ 0.08646622 -0.74334862 -0.66329211]\n", + " [ 0.12263503 -0.73908968 -0.66234968]\n", + " [ 0.15891814 -0.73380816 -0.66050784]\n", + " [ 0.15754353 -0.59176072 -0.79056897]\n", + " [ 0.16053201 -0.61879045 -0.76897844]\n", + " [ 0.16339307 -0.64562917 -0.74596627]\n", + " [ 0.16609771 -0.67207514 -0.72161385]\n", + " [ 0.16862126 -0.69794113 -0.69602086]\n", + " [ 0.17094291 -0.72305107 -0.66930985]\n", + " [-0.03897665 -0.60621481 -0.79434528]\n", + " [-0.03897665 -0.60621481 -0.79434528]\n", + " [ 0.17171083 -0.73170216 -0.65964182]\n", + " [ 0.17171083 -0.73170216 -0.65964182]\n", + " [-0.02719953 -0.61454591 -0.78841202]\n", + " [ 0.00613436 -0.61171382 -0.79105535]\n", + " [ 0.04024793 -0.60825624 -0.79271966]\n", + " [ 0.07492798 -0.60413726 -0.79334984]\n", + " [ 0.10996078 -0.59933755 -0.79290802]\n", + " [ 0.14513442 -0.5938558 -0.79137304]\n", + " [-0.02619818 -0.6407149 -0.76733179]\n", + " [ 0.00752246 -0.63820572 -0.76982912]\n", + " [ 0.04201728 -0.63499811 -0.77137018]\n", + " [ 0.07707063 -0.6310538 -0.77190104]\n", + " [ 0.11246869 -0.62635305 -0.7713836 ]\n", + " [ 0.1479992 -0.62089501 -0.76979583]\n", + " [-0.02494818 -0.66671569 -0.74489447]\n", + " [ 0.00908802 -0.66451459 -0.74722003]\n", + " [ 0.04389113 -0.66154595 -0.74861908]\n", + " [ 0.07924585 -0.65777062 -0.74903799]\n", + " [ 0.11493956 -0.65316881 -0.74843797]\n", + " [ 0.15075978 -0.64773998 -0.7467961 ]\n", + " [-0.02347319 -0.69234454 -0.72118517]\n", + " [ 0.01080459 -0.69043474 -0.72331399]\n", + " [ 0.04584232 -0.68769423 -0.72455167]\n", + " [ 0.08142644 -0.68408337 -0.72484459]\n", + " [ 0.11734583 -0.67958188 -0.72415359]\n", + " [ 0.15338762 -0.67418878 -0.72245535]\n", + " [-0.02179497 -0.71741222 -0.6963079 ]\n", + " [ 0.01265026 -0.71577652 -0.69821483]\n", + " [ 0.04784959 -0.71325367 -0.69927077]\n", + " [ 0.08359131 -0.70980339 -0.69942236]\n", + " [ 0.11966552 -0.70540424 -0.69863082]\n", + " [ 0.15585884 -0.700054 -0.69687332]\n", + " [-0.01993167 -0.74174589 -0.67038478]\n", + " [ 0.01460767 -0.74036639 -0.67204481]\n", + " [ 0.04989639 -0.73804998 -0.67289863]\n", + " [ 0.08572389 -0.73475554 -0.67289353]\n", + " [ 0.12188088 -0.73046003 -0.67199196]\n", + " [ 0.15815354 -0.7251595 -0.67017248]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:fp_optics: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:cartToSphere: vec: [[ 0.60832967 0.3458621 -0.71436295]\n", + " [ 0.58754171 0.35941288 -0.72499457]\n", + " [ 0.56584312 0.37285088 -0.73539363]\n", + " [ 0.5433076 0.3861156 -0.74547408]\n", + " [ 0.52001178 0.39914864 -0.75516099]\n", + " [ 0.49603636 0.41189362 -0.76438967]\n", + " [ 0.47146692 0.42429647 -0.77310507]\n", + " [ 0.44639422 0.43630586 -0.78126141]\n", + " [ 0.60832967 0.3458621 -0.71436295]\n", + " [ 0.6042237 0.32320363 -0.72832214]\n", + " [ 0.59945381 0.29987971 -0.74211002]\n", + " [ 0.59402803 0.27597146 -0.75562587]\n", + " [ 0.587957 0.25156236 -0.76878017]\n", + " [ 0.58125477 0.22673911 -0.78149362]\n", + " [ 0.57393961 0.20159207 -0.79369639]\n", + " [ 0.56603462 0.17621519 -0.80532789]\n", + " [ 0.44639422 0.43630586 -0.78126141]\n", + " [ 0.44070536 0.41371906 -0.79662747]\n", + " [ 0.43454328 0.39033691 -0.81167065]\n", + " [ 0.42791302 0.36623446 -0.8262946 ]\n", + " [ 0.42082414 0.34149108 -0.84041114]\n", + " [ 0.41329113 0.31619185 -0.85393979]\n", + " [ 0.40533377 0.29042787 -0.86680804]\n", + " [ 0.39697718 0.26429598 -0.87895208]\n", + " [ 0.56603462 0.17621519 -0.80532789]\n", + " [ 0.54414292 0.18880817 -0.81747169]\n", + " [ 0.52137545 0.20149268 -0.82919741]\n", + " [ 0.49779929 0.21421034 -0.84042239]\n", + " [ 0.47348747 0.2269044 -0.85107227]\n", + " [ 0.44852021 0.23951926 -0.8610808 ]\n", + " [ 0.42298518 0.25200063 -0.87039027]\n", + " [ 0.39697718 0.26429598 -0.87895208]\n", + " [ 0.59936937 0.35170382 -0.71906938]\n", + " [ 0.57326902 0.36824336 -0.73195591]\n", + " [ 0.54587382 0.38455327 -0.74440617]\n", + " [ 0.51732357 0.40052518 -0.75627766]\n", + " [ 0.48776692 0.41605534 -0.76745122]\n", + " [ 0.45736358 0.4310453 -0.77782935]\n", + " [ 0.60655169 0.33611621 -0.72050048]\n", + " [ 0.60107109 0.30788791 -0.73750836]\n", + " [ 0.59460107 0.27874035 -0.7541574 ]\n", + " [ 0.58716012 0.24882619 -0.77027821]\n", + " [ 0.57877418 0.21830508 -0.78572472]\n", + " [ 0.56947889 0.18734488 -0.80037222]\n", + " [ 0.44405904 0.42651991 -0.78796722]\n", + " [ 0.43676898 0.39829294 -0.80659506]\n", + " [ 0.42877252 0.36894558 -0.8246413 ]\n", + " [ 0.42008532 0.33862209 -0.84194026]\n", + " [ 0.41073412 0.30747909 -0.85834381]\n", + " [ 0.40075754 0.27568674 -0.87372205]\n", + " [ 0.55662967 0.18177809 -0.81062947]\n", + " [ 0.52920234 0.19728191 -0.82524223]\n", + " [ 0.5005256 0.21286483 -0.83914402]\n", + " [ 0.47073135 0.22842172 -0.85219453]\n", + " [ 0.43996727 0.24385025 -0.86427186]\n", + " [ 0.40839778 0.25905117 -0.87527352]\n", + " [ 0.60824731 0.3458323 -0.7144475 ]\n", + " [ 0.60824731 0.3458323 -0.7144475 ]\n", + " [ 0.39709603 0.26434418 -0.87888389]\n", + " [ 0.39709603 0.26434418 -0.87888389]\n", + " [ 0.59762956 0.34197416 -0.72518451]\n", + " [ 0.59203497 0.31369825 -0.74235302]\n", + " [ 0.58546671 0.28448885 -0.75914085]\n", + " [ 0.57794227 0.25449802 -0.77537958]\n", + " [ 0.56948686 0.22388528 -0.79092357]\n", + " [ 0.56013571 0.19281879 -0.80564812]\n", + " [ 0.57140533 0.35848726 -0.73822953]\n", + " [ 0.5654919 0.33011108 -0.7558079 ]\n", + " [ 0.55865014 0.3007619 -0.77295039]\n", + " [ 0.5508951 0.27059007 -0.78949072]\n", + " [ 0.54225051 0.23975473 -0.80528383]\n", + " [ 0.532751 0.20842493 -0.8202045 ]\n", + " [ 0.54388712 0.37478842 -0.75081319]\n", + " [ 0.53765792 0.34636307 -0.76873701]\n", + " [ 0.53054708 0.31692672 -0.7861789 ]\n", + " [ 0.52256824 0.28662802 -0.80297373]\n", + " [ 0.51374456 0.25562573 -0.8189762 ]\n", + " [ 0.50411082 0.22408971 -0.83406 ]\n", + " [ 0.51521361 0.39076898 -0.7627939 ]\n", + " [ 0.50866883 0.36234505 -0.7810007 ]\n", + " [ 0.5012912 0.33287414 -0.79868763]\n", + " [ 0.493094 0.30250336 -0.8156899 ]\n", + " [ 0.48410074 0.27139097 -0.83186142]\n", + " [ 0.47434695 0.23970739 -0.84707458]\n", + " [ 0.48553291 0.40632476 -0.77405296]\n", + " [ 0.4786716 0.37795187 -0.79248084]\n", + " [ 0.47102898 0.34849868 -0.81035817]\n", + " [ 0.46261892 0.31811089 -0.82751991]\n", + " [ 0.45346598 0.28694614 -0.84381901]\n", + " [ 0.44360687 0.25517505 -0.85912667]\n", + " [ 0.45500473 0.4213568 -0.78449292]\n", + " [ 0.4478264 0.3930834 -0.80307967]\n", + " [ 0.43992152 0.36369946 -0.82109181]\n", + " [ 0.43130521 0.33334958 -0.83836381]\n", + " [ 0.42200359 0.30219065 -0.85474779]\n", + " [ 0.41205477 0.27039303 -0.87011406]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:fp_optics: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:cartToSphere: vec: [[-0.20057117 -0.14096498 0.96948444]\n", + " [-0.21692666 -0.11820744 0.96900455]\n", + " [-0.2334298 -0.09490611 0.96773104]\n", + " [-0.25000529 -0.07114872 0.96562685]\n", + " [-0.26658027 -0.04702394 0.9626649 ]\n", + " [-0.28308344 -0.02262284 0.95882844]\n", + " [-0.29944471 0.0019605 0.95411164]\n", + " [-0.3155956 0.02662928 0.94852006]\n", + " [-0.20057117 -0.14096498 0.96948444]\n", + " [-0.17774667 -0.12432911 0.97619076]\n", + " [-0.15490389 -0.1075633 0.98205648]\n", + " [-0.13213574 -0.09073213 0.98707033]\n", + " [-0.10953766 -0.07389961 0.99123173]\n", + " [-0.08720787 -0.0571289 0.99455069]\n", + " [-0.06524784 -0.04048216 0.9970476 ]\n", + " [-0.04376265 -0.02402069 0.99875314]\n", + " [-0.3155956 0.02662928 0.94852006]\n", + " [-0.29190265 0.0437057 0.95544893]\n", + " [-0.26802604 0.06068903 0.96149825]\n", + " [-0.24406364 0.07751287 0.96665645]\n", + " [-0.22011405 0.0941132 0.97092354]\n", + " [-0.19627608 0.11042863 0.97431064]\n", + " [-0.17264916 0.12639999 0.97683945]\n", + " [-0.14933468 0.14196944 0.97854169]\n", + " [-0.04376265 -0.02402069 0.99875314]\n", + " [-0.05808781 -0.00103506 0.99831094]\n", + " [-0.0727884 0.02234729 0.99709701]\n", + " [-0.08778685 0.04603403 0.99507504]\n", + " [-0.10300941 0.06993269 0.99221897]\n", + " [-0.11838589 0.09395044 0.98851307]\n", + " [-0.13384915 0.1179939 0.98395216]\n", + " [-0.14933468 0.14196944 0.97854169]\n", + " [-0.20760088 -0.13105829 0.96939445]\n", + " [-0.22775439 -0.1027893 0.96827801]\n", + " [-0.24805466 -0.07379077 0.96593158]\n", + " [-0.26836663 -0.04422549 0.96230113]\n", + " [-0.28855898 -0.01426115 0.95735591]\n", + " [-0.30850334 0.01592784 0.9510899 ]\n", + " [-0.19068296 -0.13365478 0.97251036]\n", + " [-0.16268442 -0.11316983 0.9801665 ]\n", + " [-0.13475036 -0.09255406 0.98654756]\n", + " [-0.10705543 -0.07192558 0.99164804]\n", + " [-0.07978049 -0.05140067 0.99548634]\n", + " [-0.05311385 -0.03109336 0.99810426]\n", + " [-0.30523939 0.0339974 0.95166858]\n", + " [-0.27606569 0.05487224 0.95957114]\n", + " [-0.24671334 0.07554123 0.96613977]\n", + " [-0.21736362 0.09588546 0.97136967]\n", + " [-0.18819848 0.11579187 0.97528128]\n", + " [-0.15940171 0.13515213 0.97791871]\n", + " [-0.05003032 -0.01410937 0.99864803]\n", + " [-0.06785127 0.01434066 0.99759238]\n", + " [-0.08615846 0.04329493 0.99534028]\n", + " [-0.10481455 0.07258331 0.99183949]\n", + " [-0.12369025 0.10203486 0.9870611 ]\n", + " [-0.14266307 0.13147756 0.98099995]\n", + " [-0.20054884 -0.14083159 0.96950845]\n", + " [-0.20054884 -0.14083159 0.96950845]\n", + " [-0.14936083 0.14183518 0.97855716]\n", + " [-0.14936083 0.14183518 0.97855716]\n", + " [-0.19769518 -0.1238551 0.97240759]\n", + " [-0.16957219 -0.10330872 0.98008805]\n", + " [-0.14149677 -0.08265167 0.98648232]\n", + " [-0.11364361 -0.06200254 0.991585 ]\n", + " [-0.08619317 -0.04147783 0.99541465]\n", + " [-0.05933324 -0.02119158 0.99801327]\n", + " [-0.21774824 -0.09552026 0.97131951]\n", + " [-0.18930884 -0.07482534 0.97906248]\n", + " [-0.16087109 -0.0540772 0.98549285]\n", + " [-0.13261015 -0.03339564 0.99060551]\n", + " [-0.10470557 -0.01289772 0.99441963]\n", + " [-0.07734331 0.00730271 0.99697777]\n", + " [-0.23796658 -0.06646929 0.96899625]\n", + " [-0.20926448 -0.04566452 0.97679226]\n", + " [-0.18052043 -0.02486483 0.98325689]\n", + " [-0.1519106 -0.00419088 0.98838535]\n", + " [-0.12361423 0.01624018 0.99219745]\n", + " [-0.09581558 0.03631511 0.99473644]\n", + " [-0.2582156 -0.0368654 0.96538368]\n", + " [-0.22930557 -0.01599087 0.97322312]\n", + " [-0.20031151 0.00481925 0.97972041]\n", + " [-0.17141113 0.02544403 0.98487097]\n", + " [-0.14278395 0.0457669 0.98869517]\n", + " [-0.11461321 0.06567572 0.99123686]\n", + " [-0.27836462 -0.00687673 0.96045086]\n", + " [-0.24930306 0.01402627 0.96832394]\n", + " [-0.22011652 0.03480476 0.97485247]\n", + " [-0.19098437 0.05533826 0.98003196]\n", + " [-0.16208699 0.07551139 0.98388304]\n", + " [-0.13360738 0.09521353 0.98644992]\n", + " [-0.29828581 0.02332198 0.95419163]\n", + " [-0.26913089 0.04421155 0.9620883 ]\n", + " [-0.2398111 0.0649164 0.96864673]\n", + " [-0.2105073 0.08531712 0.97386224]\n", + " [-0.18140102 0.10529999 0.97775538]\n", + " [-0.15267572 0.12475612 0.98037036]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:fp_optics: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:cartToSphere: vec: [[-0.58231202 0.39564456 -0.71019582]\n", + " [-0.55963129 0.39917862 -0.72627078]\n", + " [-0.53604819 0.40245929 -0.74207739]\n", + " [-0.51163218 0.40545609 -0.75752087]\n", + " [-0.48645891 0.40814257 -0.77251367]\n", + " [-0.46061147 0.41049636 -0.7869751 ]\n", + " [-0.43418066 0.41249941 -0.80083168]\n", + " [-0.40726462 0.41413817 -0.81401788]\n", + " [-0.58231202 0.39564456 -0.71019582]\n", + " [-0.57802716 0.42187098 -0.69850518]\n", + " [-0.57319216 0.44767294 -0.68632331]\n", + " [-0.56783051 0.47295499 -0.67370772]\n", + " [-0.56197042 0.49762708 -0.66072425]\n", + " [-0.55564426 0.52160457 -0.6474474 ]\n", + " [-0.54888807 0.54480766 -0.63396096]\n", + " [-0.54174133 0.56716046 -0.62035905]\n", + " [-0.40726462 0.41413817 -0.81401788]\n", + " [-0.40295177 0.44123786 -0.80183478]\n", + " [-0.39828929 0.46785535 -0.78897212]\n", + " [-0.39330066 0.49389133 -0.77549078]\n", + " [-0.38801355 0.51925382 -0.76145976]\n", + " [-0.38245953 0.54385869 -0.74695544]\n", + " [-0.37667385 0.56762943 -0.73206122]\n", + " [-0.37069542 0.59049606 -0.7168677 ]\n", + " [-0.54174133 0.56716046 -0.62035905]\n", + " [-0.51939184 0.57198456 -0.63487462]\n", + " [-0.49621427 0.57635659 -0.64929537]\n", + " [-0.47228402 0.58024607 -0.66352265]\n", + " [-0.44768032 0.58362589 -0.6774682 ]\n", + " [-0.42248721 0.58647269 -0.69105306]\n", + " [-0.39679402 0.58876747 -0.70420691]\n", + " [-0.37069542 0.59049606 -0.7168677 ]\n", + " [-0.57252459 0.3973051 -0.71719192]\n", + " [-0.5441116 0.401471 -0.73672491]\n", + " [-0.51441166 0.40522538 -0.7557599 ]\n", + " [-0.4835614 0.4085179 -0.77413274]\n", + " [-0.45171379 0.4113074 -0.79169494]\n", + " [-0.41903909 0.41356249 -0.80831449]\n", + " [-0.58043675 0.40713807 -0.70521753]\n", + " [-0.57481249 0.43900898 -0.69055175]\n", + " [-0.56838481 0.47014681 -0.67520418]\n", + " [-0.56120369 0.50038354 -0.65929259]\n", + " [-0.55332868 0.52956329 -0.64295419]\n", + " [-0.54482758 0.55754083 -0.62634745]\n", + " [-0.40552125 0.42600141 -0.80874923]\n", + " [-0.39999742 0.45890334 -0.79335351]\n", + " [-0.3939711 0.49098155 -0.77699671]\n", + " [-0.38749151 0.52206363 -0.75980254]\n", + " [-0.38061677 0.55199466 -0.74191156]\n", + " [-0.37341326 0.58063661 -0.72348025]\n", + " [-0.53212825 0.56924216 -0.62673989]\n", + " [-0.50416987 0.574854 -0.64448089]\n", + " [-0.47504214 0.5797563 -0.66198006]\n", + " [-0.44488929 0.58389771 -0.67907068]\n", + " [-0.41386606 0.58723532 -0.69560733]\n", + " [-0.38213915 0.58973611 -0.71146397]\n", + " [-0.58222238 0.39574733 -0.71021205]\n", + " [-0.58222238 0.39574733 -0.71021205]\n", + " [-0.37080598 0.59041455 -0.71687767]\n", + " [-0.37080598 0.59041455 -0.71687767]\n", + " [-0.57073327 0.40874003 -0.71217633]\n", + " [-0.56510251 0.44073043 -0.69743518]\n", + " [-0.55868283 0.47197893 -0.68198929]\n", + " [-0.55152464 0.50231724 -0.66595643]\n", + " [-0.54368801 0.53158975 -0.64947339]\n", + " [-0.53524128 0.55965201 -0.63269771]\n", + " [-0.54230651 0.41301701 -0.73165607]\n", + " [-0.53666586 0.44530744 -0.71672243]\n", + " [-0.53027991 0.47683276 -0.70102335]\n", + " [-0.52319998 0.50742378 -0.68467721]\n", + " [-0.51548726 0.53692538 -0.66782035]\n", + " [-0.50721126 0.56519517 -0.6506083 ]\n", + " [-0.51259637 0.41686129 -0.75064747]\n", + " [-0.50695912 0.44939382 -0.73555261]\n", + " [-0.50062458 0.48114115 -0.71963757]\n", + " [-0.49364442 0.511933 -0.7030219 ]\n", + " [-0.48608021 0.54161446 -0.68584241]\n", + " [-0.47800191 0.57004485 -0.66825373]\n", + " [-0.48173962 0.42022189 -0.76898667]\n", + " [-0.47611967 0.45293704 -0.75376262]\n", + " [-0.4698552 0.48485052 -0.73766935]\n", + " [-0.46299767 0.51579104 -0.72082783]\n", + " [-0.4556083 0.54560371 -0.70337591]\n", + " [-0.4477567 0.57414911 -0.68546826]\n", + " [-0.44988932 0.42305704 -0.78652549]\n", + " [-0.4443008 0.45589376 -0.77120534]\n", + " [-0.43812524 0.48791642 -0.75497274]\n", + " [-0.43141341 0.51895299 -0.73795004]\n", + " [-0.42422552 0.54884853 -0.72027633]\n", + " [-0.41663013 0.57746447 -0.70210692]\n", + " [-0.41721577 0.42533484 -0.80313217]\n", + " [-0.41167266 0.45823085 -0.78775003]\n", + " [-0.40560432 0.49030485 -0.77141836]\n", + " [-0.39906043 0.52138444 -0.75426059]\n", + " [-0.3920997 0.5513147 -0.73641695]\n", + " [-0.38478915 0.5799575 -0.7180436 ]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:fp_optics: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:cartToSphere: vec: [[-0.40775798 -0.06622473 -0.9106853 ]\n", + " [-0.4233111 -0.08773648 -0.90172613]\n", + " [-0.43883115 -0.10960382 -0.89185998]\n", + " [-0.45423779 -0.13173595 -0.88108664]\n", + " [-0.46945516 -0.15404307 -0.86941508]\n", + " [-0.48441101 -0.17643508 -0.85686442]\n", + " [-0.49903661 -0.19882111 -0.84346465]\n", + " [-0.51326731 -0.22111005 -0.82925691]\n", + " [-0.40775798 -0.06622473 -0.9106853 ]\n", + " [-0.38670825 -0.08470644 -0.91830363]\n", + " [-0.3654564 -0.10313413 -0.92509728]\n", + " [-0.34409158 -0.12143899 -0.93104971]\n", + " [-0.32270774 -0.13955498 -0.9361539 ]\n", + " [-0.30140393 -0.15741921 -0.94041207]\n", + " [-0.28028504 -0.17497194 -0.94383532]\n", + " [-0.25946268 -0.19215643 -0.94644335]\n", + " [-0.51326731 -0.22111005 -0.82925691]\n", + " [-0.49140669 -0.24010966 -0.83717789]\n", + " [-0.46917657 -0.25883444 -0.84432107]\n", + " [-0.44667113 -0.27721341 -0.85066893]\n", + " [-0.42398778 -0.2951804 -0.85621428]\n", + " [-0.40122637 -0.31267435 -0.86096002]\n", + " [-0.37848941 -0.32963883 -0.8649185 ]\n", + " [-0.35588319 -0.34602101 -0.86811095]\n", + " [-0.25946268 -0.19215643 -0.94644335]\n", + " [-0.27303021 -0.21397763 -0.93790622]\n", + " [-0.28679599 -0.23600822 -0.9284655 ]\n", + " [-0.30067596 -0.25815239 -0.9181238 ]\n", + " [-0.31459299 -0.2803166 -0.90689242]\n", + " [-0.32847609 -0.30240916 -0.89479168]\n", + " [-0.34225971 -0.32434001 -0.88185138]\n", + " [-0.35588319 -0.34602101 -0.86811095]\n", + " [-0.41446607 -0.07561776 -0.90691776]\n", + " [-0.43351545 -0.10223391 -0.8953282 ]\n", + " [-0.45243492 -0.12929362 -0.88237509]\n", + " [-0.47108301 -0.15663127 -0.86807111]\n", + " [-0.48932672 -0.1840809 -0.85245152]\n", + " [-0.50704118 -0.21147509 -0.83557617]\n", + " [-0.39866343 -0.07435806 -0.91407787]\n", + " [-0.37271706 -0.09698228 -0.92286317]\n", + " [-0.34655504 -0.11945654 -0.93039225]\n", + " [-0.32034833 -0.14165809 -0.93664824]\n", + " [-0.29427935 -0.16347113 -0.9416352 ]\n", + " [-0.26854396 -0.18478697 -0.94537713]\n", + " [-0.50373939 -0.22934707 -0.83285446]\n", + " [-0.476687 -0.25245745 -0.84204201]\n", + " [-0.44917287 -0.27508414 -0.85004262]\n", + " [-0.42137504 -0.29710331 -0.85683878]\n", + " [-0.39347737 -0.31840246 -0.86243575]\n", + " [-0.36567005 -0.33887929 -0.86685999]\n", + " [-0.26541928 -0.20158059 -0.94282441]\n", + " [-0.28219354 -0.22847806 -0.9317535 ]\n", + " [-0.29918109 -0.25559465 -0.91932695]\n", + " [-0.31623707 -0.28275727 -0.90556195]\n", + " [-0.33323074 -0.30979707 -0.89049596]\n", + " [-0.35004343 -0.33654903 -0.87418782]\n", + " [-0.40773958 -0.0663608 -0.91068363]\n", + " [-0.40773958 -0.0663608 -0.91068363]\n", + " [-0.35591389 -0.34589241 -0.86814961]\n", + " [-0.35591389 -0.34589241 -0.86814961]\n", + " [-0.405353 -0.08364486 -0.91032548]\n", + " [-0.37928921 -0.10633939 -0.91914723]\n", + " [-0.35299113 -0.12886244 -0.92671017]\n", + " [-0.32662972 -0.15109078 -0.93299764]\n", + " [-0.30038687 -0.17290837 -0.93801408]\n", + " [-0.27445749 -0.19420655 -0.94178389]\n", + " [-0.42430918 -0.11033569 -0.89877014]\n", + " [-0.39794689 -0.13320191 -0.90768691]\n", + " [-0.37130058 -0.15583639 -0.91534196]\n", + " [-0.34454177 -0.17811465 -0.92171912]\n", + " [-0.31785132 -0.19992018 -0.92682386]\n", + " [-0.29142157 -0.22114463 -0.93068175]\n", + " [-0.44315254 -0.13745522 -0.8858453 ]\n", + " [-0.41654252 -0.16045143 -0.89484505]\n", + " [-0.38960261 -0.18315631 -0.90258716]\n", + " [-0.36250555 -0.20544454 -0.9090557 ]\n", + " [-0.33543204 -0.22719965 -0.91425689]\n", + " [-0.30857253 -0.24831407 -0.91821736]\n", + " [-0.46174211 -0.16483736 -0.87156347]\n", + " [-0.43493624 -0.18792032 -0.8806341 ]\n", + " [-0.40775776 -0.21065301 -0.88845873]\n", + " [-0.3803811 -0.23290984 -0.89502136]\n", + " [-0.35298749 -0.25457495 -0.90032851]\n", + " [-0.32576644 -0.27554208 -0.90440743]\n", + " [-0.47994547 -0.19231564 -0.85595972]\n", + " [-0.45299732 -0.21544085 -0.86508882]\n", + " [-0.42563668 -0.23815787 -0.87299155]\n", + " [-0.39803975 -0.26034145 -0.87965146]\n", + " [-0.37038879 -0.28187693 -0.88507488]\n", + " [-0.34287318 -0.3026597 -0.88928909]\n", + " [-0.4976383 -0.21972225 -0.83909371]\n", + " [-0.47060315 -0.24284449 -0.84826837]\n", + " [-0.44311856 -0.26550232 -0.85624439]\n", + " [-0.41536217 -0.28757145 -0.86300459]\n", + " [-0.38751745 -0.3089388 -0.86855457]\n", + " [-0.35977429 -0.32950147 -0.87292109]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:fp_optics: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:cartToSphere: vec: [[ 0.45913604 0.65816655 -0.59666648]\n", + " [ 0.47665429 0.66435892 -0.57569776]\n", + " [ 0.49413527 0.67013663 -0.55384766]\n", + " [ 0.51148853 0.67544765 -0.5311779 ]\n", + " [ 0.52862862 0.68024676 -0.50775596]\n", + " [ 0.54547418 0.68449551 -0.48365672]\n", + " [ 0.5619478 0.68816238 -0.45896319]\n", + " [ 0.57797665 0.69122332 -0.43376644]\n", + " [ 0.45913604 0.65816655 -0.59666648]\n", + " [ 0.44085435 0.67870955 -0.58736767]\n", + " [ 0.4223233 0.69864071 -0.57753284]\n", + " [ 0.40362228 0.71789084 -0.56720526]\n", + " [ 0.38483621 0.73639898 -0.55643295]\n", + " [ 0.36605594 0.75411244 -0.54526826]\n", + " [ 0.34737896 0.77098638 -0.53376761]\n", + " [ 0.32891019 0.78698346 -0.52199148]\n", + " [ 0.57797665 0.69122332 -0.43376644]\n", + " [ 0.5589681 0.71243308 -0.42425673]\n", + " [ 0.53952038 0.73293559 -0.41439497]\n", + " [ 0.51971755 0.75265886 -0.40422557]\n", + " [ 0.49964794 0.77154136 -0.39379673]\n", + " [ 0.47940347 0.78953198 -0.38315997]\n", + " [ 0.4590797 0.80658936 -0.37237002]\n", + " [ 0.43877684 0.82268053 -0.36148532]\n", + " [ 0.32891019 0.78698346 -0.52199148]\n", + " [ 0.34451814 0.79392802 -0.50098457]\n", + " [ 0.360301 0.80033397 -0.47921679]\n", + " [ 0.37616415 0.80614837 -0.45675523]\n", + " [ 0.39202056 0.81132534 -0.43367162]\n", + " [ 0.40779 0.81582606 -0.41004287]\n", + " [ 0.42339829 0.81961903 -0.38595146]\n", + " [ 0.43877684 0.82268053 -0.36148532]\n", + " [ 0.46671035 0.66098529 -0.58760522]\n", + " [ 0.48816677 0.66830345 -0.56130536]\n", + " [ 0.50947684 0.67494616 -0.53374247]\n", + " [ 0.53048124 0.6808274 -0.50503832]\n", + " [ 0.55103018 0.68587635 -0.47533081]\n", + " [ 0.570983 0.69003809 -0.44477618]\n", + " [ 0.45126027 0.66721594 -0.59261038]\n", + " [ 0.42867601 0.69199182 -0.58084783]\n", + " [ 0.40579533 0.71577892 -0.5683227 ]\n", + " [ 0.38277227 0.73846162 -0.55512145]\n", + " [ 0.35977418 0.7599428 -0.54134044]\n", + " [ 0.33698356 0.78014312 -0.52708519]\n", + " [ 0.56969406 0.70054337 -0.42975303]\n", + " [ 0.54609164 0.72607201 -0.41785566]\n", + " [ 0.52191269 0.75046571 -0.40547302]\n", + " [ 0.49731809 0.7736068 -0.39269229]\n", + " [ 0.47247707 0.79540112 -0.37960831]\n", + " [ 0.4475674 0.81577609 -0.36632335]\n", + " [ 0.3357507 0.79002063 -0.51297064]\n", + " [ 0.35501139 0.79817658 -0.48670429]\n", + " [ 0.37443974 0.80547019 -0.45936114]\n", + " [ 0.39387243 0.81181405 -0.43107129]\n", + " [ 0.41316166 0.81713673 -0.40197637]\n", + " [ 0.4321732 0.82138345 -0.37223051]\n", + " [ 0.4591339 0.65825957 -0.5965655 ]\n", + " [ 0.4591339 0.65825957 -0.5965655 ]\n", + " [ 0.43879398 0.82261797 -0.36160684]\n", + " [ 0.43879398 0.82261797 -0.36160684]\n", + " [ 0.45880435 0.66997604 -0.58363574]\n", + " [ 0.4361139 0.69483993 -0.57184101]\n", + " [ 0.41310585 0.71870082 -0.5592966 ]\n", + " [ 0.38993421 0.74144292 -0.54608947]\n", + " [ 0.36676578 0.76296929 -0.53231638]\n", + " [ 0.34378214 0.78320098 -0.51808306]\n", + " [ 0.48017901 0.67738066 -0.55730024]\n", + " [ 0.45721789 0.70246527 -0.54543042]\n", + " [ 0.43388255 0.7265099 -0.53285017]\n", + " [ 0.41032742 0.7493982 -0.51964771]\n", + " [ 0.38671828 0.77103381 -0.50592079]\n", + " [ 0.36323426 0.79133914 -0.49177559]\n", + " [ 0.50142219 0.68409344 -0.52970932]\n", + " [ 0.47823516 0.70935575 -0.5177891 ]\n", + " [ 0.45462155 0.73354619 -0.50520217]\n", + " [ 0.43073693 0.75654787 -0.49203762]\n", + " [ 0.40674693 0.77826502 -0.47839366]\n", + " [ 0.38282898 0.79862157 -0.46437653]\n", + " [ 0.52237499 0.69002783 -0.50098499]\n", + " [ 0.49900774 0.71542364 -0.48904018]\n", + " [ 0.47516513 0.73972124 -0.47647726]\n", + " [ 0.45100438 0.7628033 -0.46338556]\n", + " [ 0.42669175 0.78457463 -0.44986309]\n", + " [ 0.40240389 0.80496062 -0.4360155 ]\n", + " [ 0.54288814 0.69511248 -0.47126543]\n", + " [ 0.51938784 0.72059628 -0.45932262]\n", + " [ 0.49536678 0.7449617 -0.4468152 ]\n", + " [ 0.47098392 0.7680911 -0.43383202]\n", + " [ 0.44640668 0.78988984 -0.42047012]\n", + " [ 0.42181181 0.81028446 -0.40683399]\n", + " [ 0.56282148 0.69929198 -0.44070705]\n", + " [ 0.53923691 0.72481723 -0.42879313]\n", + " [ 0.51508968 0.74921061 -0.41637253]\n", + " [ 0.49054027 0.77235443 -0.40353299]\n", + " [ 0.46575743 0.79415445 -0.39036999]\n", + " [ 0.44091861 0.81453792 -0.37698642]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:fp_optics: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:cartToSphere: vec: [[-0.32100444 -0.18458045 0.92891669]\n", + " [-0.29535 -0.18564553 0.93717881]\n", + " [-0.2689308 -0.18674995 0.9448813 ]\n", + " [-0.24185028 -0.18786396 0.95195356]\n", + " [-0.21421196 -0.18896388 0.95833496]\n", + " [-0.18612067 -0.19003135 0.96397468]\n", + " [-0.15768331 -0.19105262 0.9688317 ]\n", + " [-0.12900905 -0.19201794 0.97287501]\n", + " [-0.32100444 -0.18458045 0.92891669]\n", + " [-0.32294381 -0.21069892 0.92266639]\n", + " [-0.32453397 -0.23724558 0.91563761]\n", + " [-0.32577025 -0.26409183 0.90781565]\n", + " [-0.32664772 -0.29111503 0.89919592]\n", + " [-0.32716178 -0.31819707 0.88978413]\n", + " [-0.32730885 -0.34522353 0.87959629]\n", + " [-0.327087 -0.37208339 0.86865876]\n", + " [-0.12900905 -0.19201794 0.97287501]\n", + " [-0.12923865 -0.21931754 0.96705594]\n", + " [-0.12936557 -0.24700067 0.9603412 ]\n", + " [-0.1293838 -0.27494647 0.95271416]\n", + " [-0.12928854 -0.3030362 0.94416817]\n", + " [-0.12907632 -0.33115199 0.93470726]\n", + " [-0.12874506 -0.35917675 0.92434667]\n", + " [-0.12829414 -0.38699485 0.91311314]\n", + " [-0.327087 -0.37208339 0.86865876]\n", + " [-0.30050992 -0.37504733 0.87694543]\n", + " [-0.27315889 -0.37777313 0.88468734]\n", + " [-0.24512984 -0.38023291 0.89181517]\n", + " [-0.21652217 -0.38240282 0.89826847]\n", + " [-0.18744009 -0.38426293 0.90399569]\n", + " [-0.15799286 -0.38579744 0.90895467]\n", + " [-0.12829414 -0.38699485 0.91311314]\n", + " [-0.30992654 -0.18512673 0.93256294]\n", + " [-0.27795596 -0.1864639 0.9423225 ]\n", + " [-0.24493949 -0.18782967 0.95117015]\n", + " [-0.2110676 -0.18917798 0.95899018]\n", + " [-0.17653337 -0.19047494 0.96568901]\n", + " [-0.14153454 -0.19169693 0.97119528]\n", + " [-0.321806 -0.19591105 0.92631515]\n", + " [-0.32394766 -0.2282278 0.91813397]\n", + " [-0.32556036 -0.26105915 0.90876761]\n", + " [-0.32663512 -0.29417692 0.89820345]\n", + " [-0.32716355 -0.32736361 0.88645196]\n", + " [-0.32713971 -0.36040997 0.87354695]\n", + " [-0.12922008 -0.20386239 0.97043408]\n", + " [-0.12943424 -0.23759409 0.96270235]\n", + " [-0.12948788 -0.27178145 0.95360774]\n", + " [-0.12937167 -0.3062051 0.94313382]\n", + " [-0.12907921 -0.34064805 0.93128807]\n", + " [-0.12860726 -0.37489527 0.91810332]\n", + " [-0.31560193 -0.37331119 0.87237273]\n", + " [-0.28249663 -0.37678646 0.8821721 ]\n", + " [-0.24832387 -0.37987607 0.89108329]\n", + " [-0.21326509 -0.38253442 0.89899133]\n", + " [-0.17751216 -0.38472489 0.90580141]\n", + " [-0.1412681 -0.38642016 0.91143995]\n", + " [-0.32092535 -0.18467242 0.92892573]\n", + " [-0.32092535 -0.18467242 0.92892573]\n", + " [-0.12839774 -0.38689669 0.91314017]\n", + " [-0.12839774 -0.38689669 0.91314017]\n", + " [-0.31076116 -0.19642532 0.92997021]\n", + " [-0.31278853 -0.22890572 0.92182726]\n", + " [-0.31431008 -0.26189281 0.91248086]\n", + " [-0.31531596 -0.29515963 0.90191831]\n", + " [-0.31579706 -0.32848921 0.89015002]\n", + " [-0.31574698 -0.36167213 0.87720985]\n", + " [-0.27866007 -0.19791139 0.93977638]\n", + " [-0.28036275 -0.23079884 0.9317342 ]\n", + " [-0.28162442 -0.26417464 0.92244211]\n", + " [-0.28243325 -0.29781488 0.91188692]\n", + " [-0.28277876 -0.33150347 0.90007868]\n", + " [-0.28265373 -0.3650301 0.88705124]\n", + " [-0.24551182 -0.19939592 0.94866496]\n", + " [-0.24688527 -0.23260894 0.94071289]\n", + " [-0.24788175 -0.26629729 0.93147216]\n", + " [-0.24848849 -0.30023925 0.9209288 ]\n", + " [-0.24869465 -0.33421887 0.90909225]\n", + " [-0.24849301 -0.3680245 0.8959962 ]\n", + " [-0.21150578 -0.20083382 0.9565203 ]\n", + " [-0.21254265 -0.23429311 0.94864765]\n", + " [-0.21326645 -0.2682188 0.93945521]\n", + " [-0.21366454 -0.30239053 0.92892811]\n", + " [-0.21372666 -0.33659208 0.91707507]\n", + " [-0.21344632 -0.37061037 0.90392954]\n", + " [-0.17683457 -0.20219192 0.96324865]\n", + " [-0.17752662 -0.23581942 0.95544414]\n", + " [-0.17796991 -0.26990735 0.94629632]\n", + " [-0.17815283 -0.30423607 0.9357895 ]\n", + " [-0.17806646 -0.33858896 0.92393174]\n", + " [-0.17770548 -0.37275175 0.91075622]\n", + " [-0.1416961 -0.203447 0.96877837]\n", + " [-0.14203597 -0.23716517 0.9610299 ]\n", + " [-0.14219213 -0.27133995 0.95192228]\n", + " [-0.14215462 -0.30575194 0.94143923]\n", + " [-0.14191631 -0.34018422 0.92958833]\n", + " [-0.14147343 -0.37442185 0.9164025 ]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:fp_optics: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:cartToSphere: vec: [[-4.55736646e-02 9.92277295e-01 -1.15363822e-01]\n", + " [-4.62240381e-02 9.95092000e-01 -8.74942847e-02]\n", + " [-4.68490178e-02 9.97158102e-01 -5.89990589e-02]\n", + " [-4.74441467e-02 9.98423584e-01 -2.99900015e-02]\n", + " [-4.80054534e-02 9.98846907e-01 -5.77549139e-04]\n", + " [-4.85294105e-02 9.98396980e-01 2.91267432e-02]\n", + " [-4.90129283e-02 9.97053551e-01 5.90080523e-02]\n", + " [-4.94533953e-02 9.94807846e-01 8.89478011e-02]\n", + " [-4.55736646e-02 9.92277295e-01 -1.15363822e-01]\n", + " [-7.45479127e-02 9.90473231e-01 -1.15781636e-01]\n", + " [-1.03368190e-01 9.87855448e-01 -1.16002722e-01]\n", + " [-1.31922680e-01 9.84446406e-01 -1.16024479e-01]\n", + " [-1.60100940e-01 9.80279511e-01 -1.15843730e-01]\n", + " [-1.87794191e-01 9.75398938e-01 -1.15456720e-01]\n", + " [-2.14896025e-01 9.69859244e-01 -1.14859679e-01]\n", + " [-2.41304265e-01 9.63724439e-01 -1.14050240e-01]\n", + " [-4.94533953e-02 9.94807846e-01 8.89478011e-02]\n", + " [-7.94223343e-02 9.92917172e-01 8.83605267e-02]\n", + " [-1.09220989e-01 9.90141287e-01 8.76983913e-02]\n", + " [-1.38732598e-01 9.86504098e-01 8.69651134e-02]\n", + " [-1.67845666e-01 9.82040411e-01 8.61653309e-02]\n", + " [-1.96453659e-01 9.76795313e-01 8.53046090e-02]\n", + " [-2.24452980e-01 9.70824016e-01 8.43895079e-02]\n", + " [-2.51740405e-01 9.64192196e-01 8.34276744e-02]\n", + " [-2.41304265e-01 9.63724439e-01 -1.14050240e-01]\n", + " [-2.43650275e-01 9.65938394e-01 -8.71639979e-02]\n", + " [-2.45723626e-01 9.67502884e-01 -5.96495568e-02]\n", + " [-2.47514832e-01 9.68368105e-01 -3.16168024e-02]\n", + " [-2.49017084e-01 9.68493876e-01 -3.17872040e-03]\n", + " [-2.50224967e-01 9.67850518e-01 2.55507577e-02]\n", + " [-2.51133945e-01 9.66419225e-01 5.44575434e-02]\n", + " [-2.51740405e-01 9.64192196e-01 8.34276744e-02]\n", + " [-4.59596542e-02 9.93588001e-01 -1.03298573e-01]\n", + " [-4.67412449e-02 9.96541346e-01 -6.87066311e-02]\n", + " [-4.74800240e-02 9.98317421e-01 -3.32862574e-02]\n", + " [-4.81684772e-02 9.98835415e-01 2.75872325e-03]\n", + " [-4.88001030e-02 9.98038141e-01 3.92226830e-02]\n", + " [-4.93694016e-02 9.95893053e-01 7.58926188e-02]\n", + " [-5.82209318e-02 9.91602556e-01 -1.15475945e-01]\n", + " [-9.36434634e-02 9.88841870e-01 -1.15856193e-01]\n", + " [-1.28723450e-01 9.84879949e-01 -1.15938601e-01]\n", + " [-1.63256985e-01 9.79773750e-01 -1.15717572e-01]\n", + " [-1.97043884e-01 9.73604558e-01 -1.15186252e-01]\n", + " [-2.29889843e-01 9.66476820e-01 -1.14338166e-01]\n", + " [-6.25318000e-02 9.94102622e-01 8.85988221e-02]\n", + " [-9.91621259e-02 9.91187687e-01 8.78284833e-02]\n", + " [-1.35420136e-01 9.86965639e-01 8.69494966e-02]\n", + " [-1.71098319e-01 9.81496063e-01 8.59700127e-02]\n", + " [-2.06000305e-01 9.74861948e-01 8.49002784e-02]\n", + " [-2.39935615e-01 9.67169254e-01 8.37528149e-02]\n", + " [-2.42270525e-01 9.64788195e-01 -1.02414510e-01]\n", + " [-2.44962962e-01 9.67072188e-01 -6.90255779e-02]\n", + " [-2.47236200e-01 9.68330058e-01 -3.48017138e-02]\n", + " [-2.49076696e-01 9.68483762e-01 5.01761615e-05]\n", + " [-2.50474423e-01 9.67478698e-01 3.53204282e-02]\n", + " [-2.51421402e-01 9.65284815e-01 7.07990486e-02]\n", + " [-4.56751456e-02 9.92283361e-01 -1.15271475e-01]\n", + " [-4.56751456e-02 9.92283361e-01 -1.15271475e-01]\n", + " [-2.51646868e-01 9.64224888e-01 8.33319840e-02]\n", + " [-2.51646868e-01 9.64224888e-01 8.33319840e-02]\n", + " [-5.85546761e-02 9.92903760e-01 -1.03505905e-01]\n", + " [-9.41156721e-02 9.90123594e-01 -1.03911064e-01]\n", + " [-1.29332207e-01 9.86127860e-01 -1.04043377e-01]\n", + " [-1.64000083e-01 9.80973649e-01 -1.03897411e-01]\n", + " [-1.97918775e-01 9.74742500e-01 -1.03466017e-01]\n", + " [-2.30892813e-01 9.67539518e-01 -1.02741372e-01]\n", + " [-5.94600426e-02 9.95848531e-01 -6.89217474e-02]\n", + " [-9.53687445e-02 9.93020126e-01 -6.93961996e-02]\n", + " [-1.30927217e-01 9.88941050e-01 -6.96682360e-02]\n", + " [-1.65930630e-01 9.83668788e-01 -6.97333659e-02]\n", + " [-2.00178572e-01 9.77285277e-01 -6.95846710e-02]\n", + " [-2.33474344e-01 9.69896581e-01 -6.92123773e-02]\n", + " [-6.02992595e-02 9.97617744e-01 -3.35087335e-02]\n", + " [-9.64894759e-02 9.94751373e-01 -3.40512289e-02]\n", + " [-1.32323163e-01 9.90607383e-01 -3.44614661e-02]\n", + " [-1.67594825e-01 9.85243829e-01 -3.47357496e-02]\n", + " [-2.02105079e-01 9.78742954e-01 -3.48678499e-02]\n", + " [-2.35658183e-01 9.71211029e-01 -3.48476391e-02]\n", + " [-6.10643233e-02 9.98130628e-01 2.52922082e-03]\n", + " [-9.74686752e-02 9.95236743e-01 1.91888904e-03]\n", + " [-1.33510203e-01 9.91046492e-01 1.37009945e-03]\n", + " [-1.68982623e-01 9.85618632e-01 8.86661751e-04]\n", + " [-2.03687818e-01 9.79035774e-01 4.74766765e-04]\n", + " [-2.37432013e-01 9.71404148e-01 1.44616533e-04]\n", + " [-6.17478815e-02 9.97330064e-01 3.89864521e-02]\n", + " [-9.82969045e-02 9.94419538e-01 3.83079629e-02]\n", + " [-1.34477748e-01 9.90202268e-01 3.76191956e-02]\n", + " [-1.70083388e-01 9.84737614e-01 3.69252331e-02]\n", + " [-2.04916766e-01 9.78108513e-01 3.62333671e-02]\n", + " [-2.38786061e-01 9.70421096e-01 3.55543760e-02]\n", + " [-6.23435313e-02 9.95183581e-01 7.56500091e-02]\n", + " [-9.89655279e-02 9.92267754e-01 7.49034560e-02]\n", + " [-1.35215864e-01 9.88043380e-01 7.40739431e-02]\n", + " [-1.70887075e-01 9.82570070e-01 7.31687382e-02]\n", + " [-2.05782710e-01 9.75930857e-01 7.21972217e-02]\n", + " [-2.39712138e-01 9.68231751e-01 7.11713891e-02]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:cartToSphere: vec: [[-0.25166585 0.31200678 0.91614195]\n", + " [-0.23767516 0.29146918 0.9265831 ]\n", + " [-0.22334097 0.27019178 0.93654429]\n", + " [-0.20870225 0.24826253 0.94594349]\n", + " [-0.19380187 0.22576965 0.9547088 ]\n", + " [-0.17868676 0.20280178 0.96277852]\n", + " [-0.16340786 0.17944848 0.97010108]\n", + " [-0.14801985 0.15580054 0.9766352 ]\n", + " [-0.25166585 0.31200678 0.91614195]\n", + " [-0.27490703 0.29863108 0.91391772]\n", + " [-0.29837616 0.28461747 0.91102391]\n", + " [-0.32196637 0.27002611 0.90742689]\n", + " [-0.34557394 0.25491716 0.90310348]\n", + " [-0.36909804 0.23935096 0.89804106]\n", + " [-0.39244061 0.22338851 0.8922376 ]\n", + " [-0.41550646 0.20709188 0.8857016 ]\n", + " [-0.14801985 0.15580054 0.9766352 ]\n", + " [-0.17126111 0.14043956 0.97516479]\n", + " [-0.19483979 0.12464739 0.97288257]\n", + " [-0.21865347 0.10848161 0.96975378]\n", + " [-0.24260213 0.09200065 0.96575364]\n", + " [-0.26658668 0.07526485 0.9608677 ]\n", + " [-0.29050829 0.05833717 0.95509251]\n", + " [-0.31426862 0.04128313 0.94843605]\n", + " [-0.41550646 0.20709188 0.8857016 ]\n", + " [-0.40257726 0.18477223 0.89654379]\n", + " [-0.38906962 0.16185345 0.90687832]\n", + " [-0.37501942 0.13841949 0.9166245 ]\n", + " [-0.36046657 0.11455557 0.92571101]\n", + " [-0.34545597 0.0903498 0.93407553]\n", + " [-0.33003801 0.06589392 0.94166496]\n", + " [-0.31426862 0.04128313 0.94843605]\n", + " [-0.24568957 0.30310377 0.92074141]\n", + " [-0.22830724 0.27742279 0.93322687]\n", + " [-0.21044707 0.25071806 0.94490872]\n", + " [-0.19218636 0.22315184 0.95565039]\n", + " [-0.17361149 0.19488739 0.96533826]\n", + " [-0.15481783 0.16609011 0.97388167]\n", + " [-0.26171706 0.30618779 0.9152886 ]\n", + " [-0.29036899 0.28935651 0.91211768]\n", + " [-0.31925684 0.27162695 0.90790631]\n", + " [-0.34818836 0.25310988 0.90260747]\n", + " [-0.37697792 0.23391645 0.89619793]\n", + " [-0.40544616 0.21415938 0.88867833]\n", + " [-0.15815787 0.1492414 0.97607023]\n", + " [-0.18688291 0.13011857 0.97372683]\n", + " [-0.21601255 0.11040511 0.97012849]\n", + " [-0.24536176 0.09020815 0.96522541]\n", + " [-0.27474803 0.06963888 0.95899111]\n", + " [-0.30398955 0.04881428 0.95142394]\n", + " [-0.40986396 0.19749593 0.89050934]\n", + " [-0.39362382 0.16972806 0.90346703]\n", + " [-0.37655024 0.14114351 0.91558092]\n", + " [-0.35871498 0.11189858 0.92671585]\n", + " [-0.34020077 0.08215555 0.93675712]\n", + " [-0.32110269 0.05208478 0.94561104]\n", + " [-0.2516976 0.31189332 0.91617186]\n", + " [-0.2516976 0.31189332 0.91617186]\n", + " [-0.31424221 0.0414259 0.94843857]\n", + " [-0.31424221 0.0414259 0.94843857]\n", + " [-0.25573153 0.29733161 0.91988874]\n", + " [-0.28445252 0.28032467 0.91679051]\n", + " [-0.31341748 0.26243878 0.91263102]\n", + " [-0.3424344 0.24378427 0.90736316]\n", + " [-0.37131764 0.22447177 0.90096372]\n", + " [-0.3998875 0.20461372 0.89343339]\n", + " [-0.23839628 0.27147076 0.9324542 ]\n", + " [-0.26726686 0.25399177 0.92954645]\n", + " [-0.29640622 0.23568862 0.92552376]\n", + " [-0.32562332 0.21666996 0.92033884]\n", + " [-0.3547326 0.19704499 0.9139683 ]\n", + " [-0.38355326 0.17692572 0.90641281]\n", + " [-0.22055841 0.24459918 0.94420614]\n", + " [-0.24951001 0.22668499 0.94146623]\n", + " [-0.27875804 0.20800085 0.93756579]\n", + " [-0.30811275 0.18865376 0.93245713]\n", + " [-0.33738882 0.16875205 0.92611637]\n", + " [-0.36640447 0.14840794 0.91854387]\n", + " [-0.20229518 0.21687865 0.95500802]\n", + " [-0.23125904 0.19856425 0.95241351]\n", + " [-0.26054944 0.17953341 0.94862097]\n", + " [-0.28997812 0.15989216 0.9435821 ]\n", + " [-0.31936029 0.13974879 0.93727226]\n", + " [-0.34851346 0.11921643 0.92969124]\n", + " [-0.18369317 0.18847198 0.96474615]\n", + " [-0.21260096 0.16979108 0.96227429]\n", + " [-0.24186741 0.15044699 0.95857491]\n", + " [-0.27130575 0.13054562 0.95359899]\n", + " [-0.300732 0.1101961 0.947321 ]\n", + " [-0.32996357 0.08951304 0.9397401 ]\n", + " [-0.16484815 0.15954448 0.97332967]\n", + " [-0.19363256 0.14053082 0.97095701]\n", + " [-0.22280933 0.12090749 0.9673352 ]\n", + " [-0.25219303 0.10078117 0.96241458]\n", + " [-0.28160076 0.08026244 0.95616889]\n", + " [-0.3108504 0.05946767 0.94859666]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:cartToSphere: vec: [[ 0.27906636 0.31325765 -0.90773984]\n", + " [ 0.26756926 0.33709931 -0.90264652]\n", + " [ 0.25549479 0.36113656 -0.8968293 ]\n", + " [ 0.24289675 0.38525663 -0.89026878]\n", + " [ 0.22982867 0.40935073 -0.88295569]\n", + " [ 0.21634393 0.4333139 -0.87489106]\n", + " [ 0.2024962 0.45704482 -0.86608621]\n", + " [ 0.18833985 0.48044594 -0.85656278]\n", + " [ 0.27906636 0.31325765 -0.90773984]\n", + " [ 0.25704683 0.30175768 -0.9180791 ]\n", + " [ 0.23428173 0.28991705 -0.92793328]\n", + " [ 0.21086615 0.27776056 -0.93722171]\n", + " [ 0.18689508 0.26531774 -0.94587352]\n", + " [ 0.16246363 0.25262309 -0.95382763]\n", + " [ 0.13766752 0.23971592 -0.96103274]\n", + " [ 0.11260345 0.22664014 -0.96744752]\n", + " [ 0.18833985 0.48044594 -0.85656278]\n", + " [ 0.16461514 0.4702002 -0.86707187]\n", + " [ 0.1402695 0.45937009 -0.87709953]\n", + " [ 0.11539374 0.44797775 -0.88656653]\n", + " [ 0.09007953 0.43604993 -0.89540278]\n", + " [ 0.06442105 0.42361877 -0.90354693]\n", + " [ 0.03851598 0.41072244 -0.91094654]\n", + " [ 0.01246536 0.39740521 -0.91755856]\n", + " [ 0.11260345 0.22664014 -0.96744752]\n", + " [ 0.09910127 0.25073428 -0.96297002]\n", + " [ 0.08524361 0.27510542 -0.95762756]\n", + " [ 0.07108207 0.29964524 -0.95139901]\n", + " [ 0.0566688 0.3242484 -0.94427307]\n", + " [ 0.04205749 0.34881107 -0.9362489 ]\n", + " [ 0.0273038 0.37323045 -0.9273368 ]\n", + " [ 0.01246536 0.39740521 -0.91755856]\n", + " [ 0.27405357 0.3235828 -0.90564276]\n", + " [ 0.25956622 0.35294988 -0.89891699]\n", + " [ 0.24426525 0.38249829 -0.89108335]\n", + " [ 0.22824935 0.41202612 -0.88212057]\n", + " [ 0.21161682 0.4413401 -0.87203052]\n", + " [ 0.19446675 0.47025525 -0.86083836]\n", + " [ 0.26952471 0.30836822 -0.91228585]\n", + " [ 0.2420227 0.29404244 -0.92464267]\n", + " [ 0.21349536 0.2792289 -0.93618959]\n", + " [ 0.18411763 0.26398002 -0.94679208]\n", + " [ 0.15406465 0.24835925 -0.95633768]\n", + " [ 0.12351305 0.23244092 -0.9647361 ]\n", + " [ 0.17812705 0.47597219 -0.86123239]\n", + " [ 0.14862149 0.46301863 -0.8737994 ]\n", + " [ 0.11827341 0.44920902 -0.88556347]\n", + " [ 0.08725111 0.43459063 -0.89639178]\n", + " [ 0.0557281 0.41922273 -0.90617144]\n", + " [ 0.02388563 0.40317812 -0.91480975]\n", + " [ 0.10684988 0.23714921 -0.96557928]\n", + " [ 0.0900569 0.26687956 -0.95951293]\n", + " [ 0.07278107 0.29691786 -0.95212536]\n", + " [ 0.05511813 0.32706902 -0.94339167]\n", + " [ 0.03716694 0.35714183 -0.93331042]\n", + " [ 0.01903082 0.3869476 -0.9219053 ]\n", + " [ 0.27895416 0.31329999 -0.90775971]\n", + " [ 0.27895416 0.31329999 -0.90775971]\n", + " [ 0.0126054 0.39736927 -0.91757221]\n", + " [ 0.0126054 0.39736927 -0.91757221]\n", + " [ 0.2645581 0.31868187 -0.91019277]\n", + " [ 0.23687702 0.30442585 -0.92261269]\n", + " [ 0.20818236 0.28965582 -0.93421604]\n", + " [ 0.17864851 0.27442414 -0.9448683 ]\n", + " [ 0.14845017 0.25879447 -0.9544569 ]\n", + " [ 0.11776387 0.24284152 -0.9628913 ]\n", + " [ 0.24989789 0.34813946 -0.90352087]\n", + " [ 0.22175014 0.33409125 -0.91608401]\n", + " [ 0.19262179 0.31945676 -0.92781691]\n", + " [ 0.16268532 0.30428825 -0.93858518]\n", + " [ 0.13211408 0.28864977 -0.9482759 ]\n", + " [ 0.10108466 0.27261686 -0.95679775]\n", + " [ 0.23444506 0.3777831 -0.89572063]\n", + " [ 0.20588996 0.36395861 -0.90837407]\n", + " [ 0.17638646 0.34947919 -0.92019134]\n", + " [ 0.14610497 0.33439666 -0.93103824]\n", + " [ 0.11521788 0.3187749 -0.94080147]\n", + " [ 0.08390238 0.30268985 -0.94938888]\n", + " [ 0.21829786 0.40741113 -0.88677067]\n", + " [ 0.18939315 0.39382719 -0.89946116]\n", + " [ 0.15957151 0.37952364 -0.91131704]\n", + " [ 0.12900174 0.36455128 -0.92220438]\n", + " [ 0.09785593 0.3489732 -0.93200962]\n", + " [ 0.06631229 0.33286504 -0.94063997]\n", + " [ 0.20155409 0.43683026 -0.87667284]\n", + " [ 0.17235617 0.42350374 -0.88934691]\n", + " [ 0.14227258 0.40939694 -0.90119513]\n", + " [ 0.11147135 0.39455924 -0.91208396]\n", + " [ 0.08012484 0.37905231 -0.92189986]\n", + " [ 0.04841259 0.36295089 -0.93054977]\n", + " [ 0.18431259 0.46585515 -0.8654524 ]\n", + " [ 0.15487737 0.45280178 -0.87805669]\n", + " [ 0.12458821 0.43891143 -0.88985085]\n", + " [ 0.09361321 0.42423193 -0.90070186]\n", + " [ 0.06212552 0.40882316 -0.91049659]\n", + " [ 0.03030598 0.3927585 -0.91914216]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:fp_optics: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:fp_optics: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:fp_optics: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:cartToSphere: vec: [[ 0.3613955 0.10314209 0.92669035]\n", + " [ 0.37522014 0.12603033 0.91832794]\n", + " [ 0.38901529 0.1492713 0.9090573 ]\n", + " [ 0.4027097 0.17276698 0.89887511]\n", + " [ 0.41623599 0.1964208 0.8877874 ]\n", + " [ 0.42953002 0.22013621 0.87581049]\n", + " [ 0.44253072 0.24381625 0.86297172]\n", + " [ 0.45518062 0.26736407 0.84930975]\n", + " [ 0.3613955 0.10314209 0.92669035]\n", + " [ 0.38414527 0.08674465 0.91918865]\n", + " [ 0.40654966 0.07040726 0.91091173]\n", + " [ 0.42852712 0.05419708 0.90190198]\n", + " [ 0.45000168 0.03818335 0.89221103]\n", + " [ 0.47090314 0.02243798 0.88189952]\n", + " [ 0.49116686 0.00703623 0.87103709]\n", + " [ 0.51073334 -0.00794239 0.85970249]\n", + " [ 0.45518062 0.26736407 0.84930975]\n", + " [ 0.47863411 0.2502784 0.84158785]\n", + " [ 0.50158365 0.23302495 0.83313457]\n", + " [ 0.52394461 0.21567516 0.8239941 ]\n", + " [ 0.54564037 0.19830143 0.81421934]\n", + " [ 0.56660254 0.18097668 0.80387126]\n", + " [ 0.58677031 0.16377455 0.7930186 ]\n", + " [ 0.60608909 0.14677032 0.78173812]\n", + " [ 0.51073334 -0.00794239 0.85970249]\n", + " [ 0.52528462 0.01309544 0.85082582]\n", + " [ 0.5396424 0.03465463 0.8411808 ]\n", + " [ 0.55373249 0.05663149 0.83076663]\n", + " [ 0.56748526 0.07892655 0.81959202]\n", + " [ 0.58083537 0.10144359 0.80767535]\n", + " [ 0.59372198 0.1240888 0.79504477]\n", + " [ 0.60608909 0.14677032 0.78173812]\n", + " [ 0.36750056 0.11301536 0.92313101]\n", + " [ 0.38443422 0.14131636 0.9122719 ]\n", + " [ 0.40125216 0.17004964 0.90004435]\n", + " [ 0.41782879 0.1990369 0.88645553]\n", + " [ 0.43404599 0.22810036 0.8715356 ]\n", + " [ 0.4497928 0.25706151 0.85533959]\n", + " [ 0.37139905 0.0960669 0.92349006]\n", + " [ 0.39906022 0.07600147 0.91376951]\n", + " [ 0.42612084 0.05609259 0.90292561]\n", + " [ 0.45243871 0.03646688 0.89104959]\n", + " [ 0.47788457 0.01725677 0.87825312]\n", + " [ 0.50234159 -0.00139744 0.86466813]\n", + " [ 0.46542006 0.25985962 0.84608341]\n", + " [ 0.49383685 0.23879785 0.83612245]\n", + " [ 0.52141184 0.21755505 0.82510575]\n", + " [ 0.5480006 0.19626418 0.81312712]\n", + " [ 0.57347715 0.17505949 0.80029878]\n", + " [ 0.59773221 0.15407714 0.78675056]\n", + " [ 0.51703091 0.00121024 0.85596587]\n", + " [ 0.53474444 0.02735977 0.84457079]\n", + " [ 0.5520932 0.05418876 0.83201964]\n", + " [ 0.56894708 0.08151236 0.81832448]\n", + " [ 0.58518587 0.10915334 0.80351917]\n", + " [ 0.60069952 0.13693983 0.78765955]\n", + " [ 0.36152103 0.10316355 0.92663899]\n", + " [ 0.36152103 0.10316355 0.92663899]\n", + " [ 0.60598319 0.14675052 0.78182393]\n", + " [ 0.60598319 0.14675052 0.78182393]\n", + " [ 0.37741619 0.1058892 0.91996983]\n", + " [ 0.40517209 0.08572512 0.91021249]\n", + " [ 0.4323095 0.06569552 0.89932897]\n", + " [ 0.45868587 0.04592684 0.88741084]\n", + " [ 0.48417194 0.0265508 0.87456995]\n", + " [ 0.50865119 0.00770674 0.8609382 ]\n", + " [ 0.39444428 0.13411547 0.90908017]\n", + " [ 0.42243556 0.11369794 0.89923355]\n", + " [ 0.44975945 0.09335397 0.88825755]\n", + " [ 0.47627239 0.07320997 0.87624478]\n", + " [ 0.50184525 0.05339632 0.8633077 ]\n", + " [ 0.5263626 0.03404972 0.84957815]\n", + " [ 0.41133839 0.1627873 0.89682831]\n", + " [ 0.43951528 0.14215468 0.88691509]\n", + " [ 0.46697871 0.12153617 0.87587662]\n", + " [ 0.49358428 0.10105903 0.86380648]\n", + " [ 0.51920321 0.08085322 0.85081772]\n", + " [ 0.54372147 0.06105364 0.83704206]\n", + " [ 0.4279724 0.19172676 0.88322165]\n", + " [ 0.45628355 0.17091801 0.87326534]\n", + " [ 0.48383831 0.15006461 0.86219551]\n", + " [ 0.51049174 0.12929529 0.85010641]\n", + " [ 0.53611568 0.1087406 0.83711138]\n", + " [ 0.56059765 0.0885347 0.8233419 ]\n", + " [ 0.44422754 0.22075653 0.86829053]\n", + " [ 0.47262012 0.19981188 0.85831546]\n", + " [ 0.50021702 0.17876419 0.8472463 ]\n", + " [ 0.52687321 0.15774401 0.8351775 ]\n", + " [ 0.55246138 0.13688323 0.82222223]\n", + " [ 0.57687061 0.11631635 0.80851147]\n", + " [ 0.45999235 0.24969854 0.85209018]\n", + " [ 0.48841241 0.22865975 0.84212115]\n", + " [ 0.51600185 0.20746011 0.83108507]\n", + " [ 0.542616 0.18623198 0.81907602]\n", + " [ 0.56812854 0.16510899 0.80620654]\n", + " [ 0.59242983 0.14422677 0.7926068 ]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:fp_optics: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:cartToSphere: vec: [[ 0.16809915 -0.58012067 -0.79699604]\n", + " [ 0.17068741 -0.6021728 -0.77990623]\n", + " [ 0.17318822 -0.62417722 -0.76184555]\n", + " [ 0.17558407 -0.64601819 -0.7428531 ]\n", + " [ 0.17785934 -0.667588 -0.72297464]\n", + " [ 0.18000017 -0.6887851 -0.70226421]\n", + " [ 0.18199437 -0.70951286 -0.68078598]\n", + " [ 0.1838315 -0.72967959 -0.65861497]\n", + " [ 0.16809915 -0.58012067 -0.79699604]\n", + " [ 0.19651957 -0.57481744 -0.79433304]\n", + " [ 0.22469251 -0.56912785 -0.79095308]\n", + " [ 0.25251037 -0.56308355 -0.78687701]\n", + " [ 0.27986836 -0.55672382 -0.78213317]\n", + " [ 0.3066648 -0.55009539 -0.77675721]\n", + " [ 0.33280169 -0.54325174 -0.77079218]\n", + " [ 0.35818638 -0.53625112 -0.76428873]\n", + " [ 0.1838315 -0.72967959 -0.65861497]\n", + " [ 0.2132156 -0.724065 -0.65594892]\n", + " [ 0.24231137 -0.71782071 -0.65270102]\n", + " [ 0.27100656 -0.71098082 -0.64889269]\n", + " [ 0.29919563 -0.70358672 -0.64455233]\n", + " [ 0.32677932 -0.6956868 -0.6397149 ]\n", + " [ 0.35366266 -0.68733663 -0.63442185]\n", + " [ 0.37975249 -0.67859956 -0.62872147]\n", + " [ 0.35818638 -0.53625112 -0.76428873]\n", + " [ 0.36231897 -0.55696237 -0.74734054]\n", + " [ 0.36613245 -0.57772695 -0.72950573]\n", + " [ 0.36960471 -0.59843268 -0.71082395]\n", + " [ 0.37271738 -0.61897127 -0.69134385]\n", + " [ 0.37545477 -0.63924068 -0.67112224]\n", + " [ 0.37780349 -0.65914596 -0.6502239 ]\n", + " [ 0.37975249 -0.67859956 -0.62872147]\n", + " [ 0.16933505 -0.58971604 -0.78965855]\n", + " [ 0.1724517 -0.61672597 -0.76805565]\n", + " [ 0.17541919 -0.64354833 -0.74503265]\n", + " [ 0.178208 -0.66998153 -0.72067098]\n", + " [ 0.18079259 -0.69583851 -0.69507036]\n", + " [ 0.18315123 -0.72094334 -0.66835344]\n", + " [ 0.18052336 -0.57793292 -0.79586736]\n", + " [ 0.21520374 -0.5711695 -0.79211915]\n", + " [ 0.24940513 -0.56385617 -0.78731398]\n", + " [ 0.28293343 -0.55606205 -0.78150091]\n", + " [ 0.3156015 -0.54787313 -0.77474559]\n", + " [ 0.34723102 -0.53938997 -0.76713042]\n", + " [ 0.19666508 -0.727243 -0.65760206]\n", + " [ 0.23249876 -0.71993454 -0.65394081]\n", + " [ 0.26778715 -0.71171342 -0.64942594]\n", + " [ 0.3023331 -0.70265286 -0.64410687]\n", + " [ 0.33595363 -0.69284196 -0.63804794]\n", + " [ 0.36847475 -0.68238621 -0.6313283 ]\n", + " [ 0.35994011 -0.54529215 -0.75703341]\n", + " [ 0.36479272 -0.57072727 -0.73566069]\n", + " [ 0.36914372 -0.5961307 -0.71299447]\n", + " [ 0.37295778 -0.62130127 -0.68912062]\n", + " [ 0.37620601 -0.64605119 -0.66414373]\n", + " [ 0.3788647 -0.67020873 -0.63818633]\n", + " [ 0.16820562 -0.58017858 -0.79693142]\n", + " [ 0.16820562 -0.58017858 -0.79693142]\n", + " [ 0.37965875 -0.67856436 -0.62881607]\n", + " [ 0.37965875 -0.67856436 -0.62881607]\n", + " [ 0.18170092 -0.58745956 -0.78859117]\n", + " [ 0.21651441 -0.58064683 -0.78483805]\n", + " [ 0.25084371 -0.57325661 -0.7800348 ]\n", + " [ 0.28449448 -0.56535804 -0.7742307 ]\n", + " [ 0.31727926 -0.55703753 -0.76749141]\n", + " [ 0.34901874 -0.54839723 -0.75989894]\n", + " [ 0.18493853 -0.6144419 -0.76698037]\n", + " [ 0.22008597 -0.6075009 -0.76322004]\n", + " [ 0.25473495 -0.59990833 -0.75843266]\n", + " [ 0.28869048 -0.59173299 -0.75266851]\n", + " [ 0.32176528 -0.58306137 -0.74599366]\n", + " [ 0.35377904 -0.57399785 -0.73848957]\n", + " [ 0.18800412 -0.64124117 -0.74395175]\n", + " [ 0.2234214 -0.63418839 -0.74019455]\n", + " [ 0.2583265 -0.62641572 -0.73543916]\n", + " [ 0.29252381 -0.61799186 -0.72973686]\n", + " [ 0.32582704 -0.60900289 -0.72315436]\n", + " [ 0.3580569 -0.59955343 -0.71577296]\n", + " [ 0.1908677 -0.66765582 -0.71958685]\n", + " [ 0.22648951 -0.66050725 -0.71584403]\n", + " [ 0.26158646 -0.65257562 -0.71113823]\n", + " [ 0.29596224 -0.64393028 -0.70552119]\n", + " [ 0.3294319 -0.63465734 -0.69905985]\n", + " [ 0.36181807 -0.62486124 -0.69183533]\n", + " [ 0.19350289 -0.69349891 -0.69398551]\n", + " [ 0.22926187 -0.68627074 -0.69026913]\n", + " [ 0.26448526 -0.67820104 -0.68563175]\n", + " [ 0.2989762 -0.6693606 -0.68012471]\n", + " [ 0.33255086 -0.65983642 -0.67381438]\n", + " [ 0.36503383 -0.64973302 -0.6667813 ]\n", + " [ 0.19588706 -0.71859473 -0.66727046]\n", + " [ 0.23171373 -0.71130403 -0.66359274]\n", + " [ 0.26699702 -0.70311827 -0.65904271]\n", + " [ 0.30153978 -0.69411004 -0.65367042]\n", + " [ 0.33515891 -0.68436784 -0.64754085]\n", + " [ 0.36768026 -0.67399685 -0.64073355]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:fp_optics: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:cartToSphere: vec: [[ 0.56281483 0.16603997 -0.80973465]\n", + " [ 0.54089518 0.17854276 -0.82192146]\n", + " [ 0.51810351 0.19114971 -0.83368492]\n", + " [ 0.49450693 0.20380272 -0.84494222]\n", + " [ 0.47017856 0.21644532 -0.85561881]\n", + " [ 0.44519869 0.22902226 -0.86564827]\n", + " [ 0.41965508 0.2414795 -0.87497272]\n", + " [ 0.39364255 0.25376467 -0.88354346]\n", + " [ 0.56281483 0.16603997 -0.80973465]\n", + " [ 0.5541366 0.14050498 -0.82048216]\n", + " [ 0.54494491 0.11497764 -0.83055114]\n", + " [ 0.53528008 0.08956061 -0.83991317]\n", + " [ 0.5251868 0.06435829 -0.84854984]\n", + " [ 0.51471366 0.03947713 -0.8564528 ]\n", + " [ 0.5039128 0.01502654 -0.86362382]\n", + " [ 0.49283974 -0.00887969 -0.87007479]\n", + " [ 0.39364255 0.25376467 -0.88354346]\n", + " [ 0.3847823 0.22728829 -0.89458516]\n", + " [ 0.3756033 0.20069334 -0.90478967]\n", + " [ 0.36614659 0.17408753 -0.91412811]\n", + " [ 0.35645683 0.14757893 -0.92258278]\n", + " [ 0.34658186 0.12127512 -0.93014696]\n", + " [ 0.33657249 0.09528313 -0.93682447]\n", + " [ 0.3264827 0.06971029 -0.94262905]\n", + " [ 0.49283974 -0.00887969 -0.87007479]\n", + " [ 0.47096809 0.00157602 -0.88214884]\n", + " [ 0.44833672 0.01238501 -0.89377894]\n", + " [ 0.42501838 0.02348554 -0.90488 ]\n", + " [ 0.40108976 0.03482058 -0.91537672]\n", + " [ 0.37663234 0.04633666 -0.92520322]\n", + " [ 0.35173274 0.05798287 -0.93430299]\n", + " [ 0.3264827 0.06971029 -0.94262905]\n", + " [ 0.55334023 0.17138705 -0.81513254]\n", + " [ 0.52588057 0.18678711 -0.82979528]\n", + " [ 0.49717727 0.20228582 -0.84373883]\n", + " [ 0.46736235 0.21777864 -0.85682256]\n", + " [ 0.43658365 0.2331638 -0.86892425]\n", + " [ 0.40500571 0.24834252 -0.87994112]\n", + " [ 0.5590231 0.15495433 -0.81454425]\n", + " [ 0.54803669 0.1236499 -0.82726446]\n", + " [ 0.5363187 0.0924587 -0.83893602]\n", + " [ 0.52394963 0.06157222 -0.84952083]\n", + " [ 0.5110189 0.03118651 -0.85900354]\n", + " [ 0.49762387 0.00150472 -0.86739162]\n", + " [ 0.38991073 0.24220066 -0.88843034]\n", + " [ 0.37883215 0.20965807 -0.90140429]\n", + " [ 0.36731498 0.17704441 -0.9130909 ]\n", + " [ 0.35543995 0.14455853 -0.92345291]\n", + " [ 0.34329512 0.11239848 -0.9324779 ]\n", + " [ 0.33097534 0.08076131 -0.94017708]\n", + " [ 0.4834397 -0.00428733 -0.87536717]\n", + " [ 0.45611345 0.00877436 -0.88987838]\n", + " [ 0.42771785 0.02230458 -0.90363706]\n", + " [ 0.39839242 0.03619645 -0.91650057]\n", + " [ 0.36828717 0.05035141 -0.92834761]\n", + " [ 0.33756373 0.06467659 -0.93907809]\n", + " [ 0.56271267 0.16599526 -0.80981481]\n", + " [ 0.56271267 0.16599526 -0.80981481]\n", + " [ 0.32660411 0.06975671 -0.94258355]\n", + " [ 0.32660411 0.06975671 -0.94258355]\n", + " [ 0.54963747 0.16030189 -0.81987924]\n", + " [ 0.53862302 0.12886323 -0.83263408]\n", + " [ 0.52689116 0.09752503 -0.844319 ]\n", + " [ 0.51452285 0.0664789 -0.85489578]\n", + " [ 0.50160795 0.03592036 -0.864349 ]\n", + " [ 0.48824421 0.00605123 -0.87268607]\n", + " [ 0.52214514 0.17559045 -0.8345852 ]\n", + " [ 0.51106646 0.1438115 -0.84742512]\n", + " [ 0.49931301 0.11209841 -0.85913937]\n", + " [ 0.48696684 0.0806437 -0.86968954]\n", + " [ 0.4741188 0.04964209 -0.87906031]\n", + " [ 0.46086738 0.01929238 -0.8872593 ]\n", + " [ 0.49341631 0.19099845 -0.84856346]\n", + " [ 0.48229667 0.15893902 -0.86146869]\n", + " [ 0.47054918 0.12691244 -0.87319912]\n", + " [ 0.45825645 0.09511279 -0.88371635]\n", + " [ 0.44550972 0.06373489 -0.89300557]\n", + " [ 0.43240762 0.03297573 -0.90107505]\n", + " [ 0.46358323 0.20642193 -0.86167312]\n", + " [ 0.4524468 0.17414333 -0.87462334]\n", + " [ 0.44073396 0.14186561 -0.88635643]\n", + " [ 0.42852737 0.10978457 -0.89683423]\n", + " [ 0.41591796 0.07809584 -0.90604265]\n", + " [ 0.40300385 0.04699564 -0.91399087]\n", + " [ 0.43279396 0.22175978 -0.87379173]\n", + " [ 0.42166539 0.18932512 -0.8867662 ]\n", + " [ 0.41001631 0.15686017 -0.89848846]\n", + " [ 0.39792886 0.12456231 -0.90892071]\n", + " [ 0.38549307 0.09262826 -0.91804961]\n", + " [ 0.37280595 0.06125426 -0.92588533]\n", + " [ 0.40121314 0.23691369 -0.88481632]\n", + " [ 0.39011719 0.20438769 -0.8977941 ]\n", + " [ 0.37856064 0.17180106 -0.90949229]\n", + " [ 0.36662468 0.1393524 -0.9198735 ]\n", + " [ 0.35439793 0.10723942 -0.92892508]\n", + " [ 0.34197584 0.07565893 -0.93665802]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:fp_optics: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:cartToSphere: vec: [[-0.44002032 -0.49464544 -0.74947182]\n", + " [-0.42889963 -0.47734026 -0.76693636]\n", + " [-0.41735026 -0.45922006 -0.78417836]\n", + " [-0.40539094 -0.44035315 -0.80109131]\n", + " [-0.39304672 -0.4208092 -0.81757807]\n", + " [-0.38034894 -0.4006599 -0.83355044]\n", + " [-0.36733517 -0.37997982 -0.84892886]\n", + " [-0.35404885 -0.35884679 -0.86364251]\n", + " [-0.44002032 -0.49464544 -0.74947182]\n", + " [-0.46242384 -0.48028857 -0.74531006]\n", + " [-0.48491286 -0.46515427 -0.7406018 ]\n", + " [-0.50737409 -0.44929928 -0.73532421]\n", + " [-0.52970016 -0.43278155 -0.7294641 ]\n", + " [-0.551789 -0.41566093 -0.72301791]\n", + " [-0.57354354 -0.39799994 -0.71599152]\n", + " [-0.5948718 -0.37986438 -0.70840003]\n", + " [-0.35404885 -0.35884679 -0.86364251]\n", + " [-0.37663646 -0.34272075 -0.86063202]\n", + " [-0.39938204 -0.325987 -0.85687015]\n", + " [-0.42217769 -0.30869745 -0.8523332 ]\n", + " [-0.44491977 -0.29090703 -0.8470062 ]\n", + " [-0.46750751 -0.27267506 -0.84088349]\n", + " [-0.48984255 -0.25406588 -0.83396931]\n", + " [-0.51182949 -0.2351489 -0.82627814]\n", + " [-0.5948718 -0.37986438 -0.70840003]\n", + " [-0.58489484 -0.36087532 -0.72640693]\n", + " [-0.57425106 -0.34121322 -0.74418362]\n", + " [-0.5629568 -0.32094085 -0.76162761]\n", + " [-0.55103447 -0.30012442 -0.77864392]\n", + " [-0.53851339 -0.27883501 -0.79514424]\n", + " [-0.52543032 -0.25714918 -0.81104703]\n", + " [-0.51182949 -0.2351489 -0.82627814]\n", + " [-0.43530189 -0.48715667 -0.75709355]\n", + " [-0.42138257 -0.46538943 -0.77836328]\n", + " [-0.40683711 -0.44246584 -0.79919181]\n", + " [-0.39170893 -0.41851353 -0.81939645]\n", + " [-0.37605577 -0.39366461 -0.83881478]\n", + " [-0.35994924 -0.36805769 -0.85730396]\n", + " [-0.44973328 -0.48842678 -0.7477829 ]\n", + " [-0.47726389 -0.47029974 -0.74231889]\n", + " [-0.50480971 -0.45106134 -0.73601007]\n", + " [-0.53217064 -0.43081773 -0.72882816]\n", + " [-0.55915875 -0.40967916 -0.72076659]\n", + " [-0.58559743 -0.3877621 -0.71184002]\n", + " [-0.36391658 -0.35196699 -0.86237113]\n", + " [-0.39172055 -0.33178853 -0.85817911]\n", + " [-0.41965395 -0.31074844 -0.85283408]\n", + " [-0.44752429 -0.28894653 -0.84630486]\n", + " [-0.475146 -0.26649207 -0.8385811 ]\n", + " [-0.50233919 -0.24350563 -0.82967484]\n", + " [-0.59053223 -0.37173478 -0.71629948]\n", + " [-0.57785355 -0.348002 -0.73822753]\n", + " [-0.56418903 -0.32332025 -0.75970702]\n", + " [-0.54957737 -0.29780992 -0.78056004]\n", + " [-0.53407261 -0.27160189 -0.80062405]\n", + " [-0.51774555 -0.24483942 -0.81975192]\n", + " [-0.44005938 -0.49454002 -0.74951846]\n", + " [-0.44005938 -0.49454002 -0.74951846]\n", + " [-0.51180234 -0.23528971 -0.82625488]\n", + " [-0.51180234 -0.23528971 -0.82625488]\n", + " [-0.44500537 -0.48098383 -0.7553971 ]\n", + " [-0.4726214 -0.46269837 -0.75002615]\n", + " [-0.5002555 -0.44331637 -0.74378427]\n", + " [-0.527708 -0.42294304 -0.73664337]\n", + " [-0.55479106 -0.40168788 -0.72859709]\n", + " [-0.58132773 -0.37966703 -0.71966035]\n", + " [-0.4311517 -0.4590564 -0.77677245]\n", + " [-0.4589605 -0.44034705 -0.7716539 ]\n", + " [-0.4867989 -0.42058334 -0.76559551]\n", + " [-0.51446866 -0.39986775 -0.75856956]\n", + " [-0.54178206 -0.37830795 -0.75056998]\n", + " [-0.56856103 -0.35601965 -0.74161201]\n", + " [-0.41664504 -0.43598477 -0.79769931]\n", + " [-0.44457373 -0.41688614 -0.79281785]\n", + " [-0.47254845 -0.39677549 -0.7869353 ]\n", + " [-0.50037242 -0.37575306 -0.78002377]\n", + " [-0.52785805 -0.35392552 -0.77207681]\n", + " [-0.5548261 -0.33140886 -0.76310954]\n", + " [-0.40152897 -0.41189563 -0.8179954 ]\n", + " [-0.42950485 -0.39243953 -0.81333683]\n", + " [-0.45754754 -0.37201436 -0.80762341]\n", + " [-0.48546167 -0.35071905 -0.80082652]\n", + " [-0.51305993 -0.32866018 -0.79293883]\n", + " [-0.54016221 -0.30595472 -0.78397481]\n", + " [-0.38586149 -0.3869204 -0.83749837]\n", + " [-0.4138124 -0.36713696 -0.83304847]\n", + " [-0.4418546 -0.3464287 -0.82749723]\n", + " [-0.46979407 -0.32489434 -0.82081496]\n", + " [-0.49744402 -0.30264117 -0.81299309]\n", + " [-0.524624 -0.27978761 -0.80404512]\n", + " [-0.36971464 -0.36119745 -0.85606512]\n", + " [-0.39756935 -0.34111662 -0.8518087 ]\n", + " [-0.42554301 -0.32015725 -0.84641153]\n", + " [-0.45344279 -0.29841872 -0.83984278]\n", + " [-0.48108276 -0.27600973 -0.83209255]\n", + " [-0.50828276 -0.2530503 -0.82317324]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:fp_optics: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:cartToSphere: vec: [[-0.17487963 0.59226378 -0.78653717]\n", + " [-0.20052544 0.5946952 -0.77854169]\n", + " [-0.22659965 0.59660406 -0.76988063]\n", + " [-0.25297519 0.59797035 -0.76054915]\n", + " [-0.27953102 0.59877733 -0.75055188]\n", + " [-0.30615078 0.59901197 -0.73990294]\n", + " [-0.33272191 0.59866558 -0.72862587]\n", + " [-0.35913537 0.59773433 -0.71675341]\n", + " [-0.17487963 0.59226378 -0.78653717]\n", + " [-0.17881305 0.57036022 -0.80169515]\n", + " [-0.18285141 0.54755965 -0.81654381]\n", + " [-0.18695208 0.52393715 -0.83098663]\n", + " [-0.19107878 0.49957124 -0.84493637]\n", + " [-0.19520068 0.4745449 -0.85831453]\n", + " [-0.1992916 0.44894632 -0.87105112]\n", + " [-0.20332937 0.42286919 -0.88308483]\n", + " [-0.35913537 0.59773433 -0.71675341]\n", + " [-0.36507679 0.57515957 -0.73205902]\n", + " [-0.37085 0.55165987 -0.7470888 ]\n", + " [-0.37641513 0.5273036 -0.76174967]\n", + " [-0.38173616 0.50216513 -0.77595598]\n", + " [-0.38678069 0.47632618 -0.78962907]\n", + " [-0.39152008 0.44987636 -0.80269751]\n", + " [-0.39592974 0.42291285 -0.81509776]\n", + " [-0.20332937 0.42286919 -0.88308483]\n", + " [-0.23036785 0.4239385 -0.87590342]\n", + " [-0.25776156 0.42468153 -0.86787359]\n", + " [-0.28539099 0.42507709 -0.85898862]\n", + " [-0.31313859 0.42510822 -0.84925098]\n", + " [-0.34088776 0.42476234 -0.83867305]\n", + " [-0.36852279 0.42403156 -0.82727758]\n", + " [-0.39592974 0.42291285 -0.81509776]\n", + " [-0.18601394 0.59331318 -0.7831847 ]\n", + " [-0.21775146 0.59594373 -0.77293944]\n", + " [-0.25000538 0.59776926 -0.7616884 ]\n", + " [-0.28255046 0.59875756 -0.7494362 ]\n", + " [-0.31517239 0.59888474 -0.73620882]\n", + " [-0.3476654 0.59813678 -0.72205343]\n", + " [-0.17666605 0.58283766 -0.79315154]\n", + " [-0.18156455 0.55537926 -0.81153447]\n", + " [-0.18657735 0.52664776 -0.82935579]\n", + " [-0.19163508 0.4967862 -0.8464511 ]\n", + " [-0.19668091 0.46594742 -0.86267585]\n", + " [-0.20166832 0.43429608 -0.87790478]\n", + " [-0.36165351 0.58801377 -0.72349606]\n", + " [-0.36882651 0.55971579 -0.74208169]\n", + " [-0.37570699 0.53009589 -0.7601596 ]\n", + " [-0.38222702 0.49928836 -0.77756906]\n", + " [-0.388327 0.46744374 -0.79416528]\n", + " [-0.39395588 0.43473016 -0.80982001]\n", + " [-0.215053 0.42346424 -0.88001719]\n", + " [-0.24844533 0.42455913 -0.870646 ]\n", + " [-0.28225219 0.42514227 -0.85999288]\n", + " [-0.31625648 0.42518064 -0.84805853]\n", + " [-0.35024352 0.42465114 -0.83486579]\n", + " [-0.38400097 0.42354124 -0.82046089]\n", + " [-0.17497967 0.59219967 -0.7865632 ]\n", + " [-0.17497967 0.59219967 -0.7865632 ]\n", + " [-0.39582204 0.4230103 -0.8150995 ]\n", + " [-0.39582204 0.4230103 -0.8150995 ]\n", + " [-0.18776586 0.58391875 -0.78979926]\n", + " [-0.19282916 0.55636547 -0.80825391]\n", + " [-0.1979769 0.52753364 -0.82614369]\n", + " [-0.2031408 0.49756533 -0.84330455]\n", + " [-0.20826477 0.4666129 -0.85959187]\n", + " [-0.21330268 0.43484111 -0.87488009]\n", + " [-0.21968086 0.58646862 -0.77961201]\n", + " [-0.22519086 0.55867891 -0.79822738]\n", + " [-0.23070484 0.52959629 -0.81627388]\n", + " [-0.23615696 0.4993602 -0.8335882 ]\n", + " [-0.24149244 0.46812199 -0.85002541]\n", + " [-0.24666554 0.43604693 -0.86545895]\n", + " [-0.25210149 0.58822942 -0.76839507]\n", + " [-0.25803196 0.56024971 -0.78710849]\n", + " [-0.26389152 0.53096471 -0.80525632]\n", + " [-0.2696155 0.50051173 -0.82267581]\n", + " [-0.27514921 0.46904151 -0.83922165]\n", + " [-0.2804464 0.43672012 -0.85476626]\n", + " [-0.28480377 0.58916821 -0.75615318]\n", + " [-0.29113155 0.56104312 -0.77490195]\n", + " [-0.29731815 0.53160319 -0.79309518]\n", + " [-0.30329882 0.50098413 -0.81057062]\n", + " [-0.30901797 0.46933646 -0.82718268]\n", + " [-0.31442825 0.43682707 -0.84280305]\n", + " [-0.31757393 0.58926043 -0.74291247]\n", + " [-0.32427676 0.56103322 -0.76163397]\n", + " [-0.33077191 0.53148523 -0.77981626]\n", + " [-0.33699362 0.50075121 -0.79729764]\n", + " [-0.34288479 0.46898162 -0.81393259]\n", + " [-0.34839653 0.43634407 -0.8295925 ]\n", + " [-0.35020608 0.58849162 -0.72872032]\n", + " [-0.35726078 0.56020469 -0.74735229]\n", + " [-0.36404455 0.53059531 -0.7654673 ]\n", + " [-0.37049009 0.49979782 -0.78290436]\n", + " [-0.37653843 0.46796273 -0.79951841]\n", + " [-0.38213911 0.4352581 -0.81518101]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:fp_optics: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:cartToSphere: vec: [[ 0.53376292 0.82699976 -0.17654612]\n", + " [ 0.52157838 0.82930752 -0.20051194]\n", + " [ 0.50886037 0.83095314 -0.22489555]\n", + " [ 0.49563012 0.8319032 -0.24957532]\n", + " [ 0.48191573 0.83213127 -0.27443538]\n", + " [ 0.46775227 0.83161801 -0.29936482]\n", + " [ 0.45318175 0.83035159 -0.32425692]\n", + " [ 0.43825285 0.82832802 -0.34900879]\n", + " [ 0.53376292 0.82699976 -0.17654612]\n", + " [ 0.55405567 0.8115984 -0.18528452]\n", + " [ 0.57431258 0.79526374 -0.19421801]\n", + " [ 0.5944269 0.77803106 -0.20328388]\n", + " [ 0.61429835 0.75994275 -0.21242543]\n", + " [ 0.63383266 0.74104884 -0.22159148]\n", + " [ 0.65294133 0.72140744 -0.2307356 ]\n", + " [ 0.67154175 0.70108499 -0.23981558]\n", + " [ 0.43825285 0.82832802 -0.34900879]\n", + " [ 0.45857709 0.81254458 -0.35983102]\n", + " [ 0.47894698 0.79578517 -0.37058839]\n", + " [ 0.49926047 0.77808048 -0.38122138]\n", + " [ 0.51942056 0.75946915 -0.39167447]\n", + " [ 0.53933408 0.73999916 -0.4018955 ]\n", + " [ 0.55891139 0.71972882 -0.41183551]\n", + " [ 0.57806688 0.69872695 -0.42144909]\n", + " [ 0.67154175 0.70108499 -0.23981558]\n", + " [ 0.66031901 0.70251173 -0.26543563]\n", + " [ 0.64834316 0.70339513 -0.29135276]\n", + " [ 0.6356326 0.70370124 -0.317452 ]\n", + " [ 0.62221252 0.70340314 -0.34362131]\n", + " [ 0.6081159 0.70248126 -0.36975009]\n", + " [ 0.59338409 0.70092376 -0.3957287 ]\n", + " [ 0.57806688 0.69872695 -0.42144909]\n", + " [ 0.52858661 0.82803377 -0.18696595]\n", + " [ 0.51329257 0.83042114 -0.21663671]\n", + " [ 0.49721741 0.83178002 -0.24681339]\n", + " [ 0.48040997 0.83205882 -0.27728032]\n", + " [ 0.46293481 0.83122203 -0.30783323]\n", + " [ 0.44487208 0.82925107 -0.33827724]\n", + " [ 0.54256739 0.82041029 -0.18040951]\n", + " [ 0.56742852 0.80090223 -0.19126027]\n", + " [ 0.59212904 0.78002652 -0.20234086]\n", + " [ 0.61648168 0.75785824 -0.21354444]\n", + " [ 0.64031287 0.73448953 -0.22477669]\n", + " [ 0.6634621 0.71003084 -0.23595392]\n", + " [ 0.44715368 0.82157631 -0.35364665]\n", + " [ 0.47210749 0.80157235 -0.36687365]\n", + " [ 0.49702774 0.78013214 -0.37994377]\n", + " [ 0.52173383 0.75732341 -0.39275318]\n", + " [ 0.54605421 0.73323464 -0.40520583]\n", + " [ 0.56982547 0.70797754 -0.41721306]\n", + " [ 0.66667923 0.70184224 -0.2509109 ]\n", + " [ 0.65241555 0.7032308 -0.28252502]\n", + " [ 0.63703839 0.7037686 -0.31447075]\n", + " [ 0.62059124 0.70340317 -0.34654074]\n", + " [ 0.6031349 0.70209853 -0.37853131]\n", + " [ 0.584749 0.69983623 -0.41024123]\n", + " [ 0.53379152 0.8269577 -0.17665669]\n", + " [ 0.53379152 0.8269577 -0.17665669]\n", + " [ 0.5780555 0.69880853 -0.42132942]\n", + " [ 0.5780555 0.69880853 -0.42132942]\n", + " [ 0.53738674 0.82147094 -0.19079039]\n", + " [ 0.56231854 0.80191318 -0.20182443]\n", + " [ 0.58709296 0.78097848 -0.21305978]\n", + " [ 0.61152309 0.75874136 -0.22439044]\n", + " [ 0.63543535 0.7352936 -0.2357228 ]\n", + " [ 0.65866889 0.71074564 -0.24697354]\n", + " [ 0.5221442 0.82381888 -0.2206533 ]\n", + " [ 0.54722973 0.80413487 -0.23217823]\n", + " [ 0.5721708 0.783051 -0.24382721]\n", + " [ 0.59678157 0.76064004 -0.25549655]\n", + " [ 0.62088841 0.73699273 -0.26709417]\n", + " [ 0.6443293 0.7122196 -0.27853724]\n", + " [ 0.50609498 0.82514447 -0.25100692]\n", + " [ 0.53126532 0.80535515 -0.26298334]\n", + " [ 0.55630937 0.78414815 -0.27501193]\n", + " [ 0.58104246 0.76159442 -0.28699059]\n", + " [ 0.60529095 0.73778375 -0.29882772]\n", + " [ 0.62889169 0.71282689 -0.31044012]\n", + " [ 0.48928797 0.82539574 -0.28163656]\n", + " [ 0.51447409 0.80552096 -0.29402788]\n", + " [ 0.53955685 0.78421601 -0.3064044 ]\n", + " [ 0.5643528 0.76155027 -0.31866455]\n", + " [ 0.58868852 0.73761278 -0.33071621]\n", + " [ 0.61240007 0.71251459 -0.34247497]\n", + " [ 0.47178796 0.8245367 -0.31233851]\n", + " [ 0.49692116 0.80459509 -0.32510936]\n", + " [ 0.52197812 0.78321657 -0.33780268]\n", + " [ 0.54677667 0.76046939 -0.35031639]\n", + " [ 0.57114393 0.73644214 -0.362557 ]\n", + " [ 0.59491575 0.71124618 -0.3744384 ]\n", + " [ 0.45367545 0.82254842 -0.34291789]\n", + " [ 0.47868786 0.80255768 -0.35603245]\n", + " [ 0.50365494 0.78112939 -0.36901027]\n", + " [ 0.52839572 0.75833132 -0.38174806]\n", + " [ 0.55273824 0.73425189 -0.39415046]\n", + " [ 0.57651879 0.70900277 -0.40612947]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:fp_optics: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:cartToSphere: vec: [[-4.24682168e-01 2.00641222e-01 8.82829630e-01]\n", + " [-4.11835496e-01 1.78265469e-01 8.93651468e-01]\n", + " [-3.98398949e-01 1.55298180e-01 9.03969442e-01]\n", + " [-3.84408196e-01 1.31823387e-01 9.13702869e-01]\n", + " [-3.69902853e-01 1.07926506e-01 9.22780445e-01]\n", + " [-3.54927463e-01 8.36958373e-02 9.31139894e-01]\n", + " [-3.39532109e-01 5.92233161e-02 9.38728153e-01]\n", + " [-3.23772461e-01 3.46043118e-02 9.45501949e-01]\n", + " [-4.24682168e-01 2.00641222e-01 8.82829630e-01]\n", + " [-4.47206310e-01 1.83984570e-01 8.75303487e-01]\n", + " [-4.69239738e-01 1.67147491e-01 8.67107712e-01]\n", + " [-4.90700409e-01 1.50195525e-01 8.58285741e-01]\n", + " [-5.11510720e-01 1.33194353e-01 8.48891069e-01]\n", + " [-5.31597245e-01 1.16209439e-01 8.38987327e-01]\n", + " [-5.50890276e-01 9.93059143e-02 8.28648441e-01]\n", + " [-5.69323470e-01 8.25487117e-02 8.17958738e-01]\n", + " [-3.23772461e-01 3.46043118e-02 9.45501949e-01]\n", + " [-3.47145530e-01 1.74869298e-02 9.37648222e-01]\n", + " [-3.70131064e-01 4.06062699e-04 9.28979456e-01]\n", + " [-3.92642844e-01 -1.65707195e-02 9.19541738e-01]\n", + " [-4.14601104e-01 -3.33775141e-02 9.09390932e-01]\n", + " [-4.35932709e-01 -4.99504105e-02 8.98592026e-01]\n", + " [-4.56570458e-01 -6.62271536e-02 8.87218902e-01]\n", + " [-4.76451714e-01 -8.21462241e-02 8.75354649e-01]\n", + " [-5.69323470e-01 8.25487117e-02 8.17958738e-01]\n", + " [-5.58133246e-01 5.98920254e-02 8.27586989e-01]\n", + " [-5.46182020e-01 3.67958077e-02 8.36857975e-01]\n", + " [-5.33507644e-01 1.33486730e-02 8.45689900e-01]\n", + " [-5.20151083e-01 -1.03600346e-02 8.54011429e-01]\n", + " [-5.06156688e-01 -3.42399381e-02 8.61761588e-01]\n", + " [-4.91572707e-01 -5.81995024e-02 8.68889574e-01]\n", + " [-4.76451714e-01 -8.21462241e-02 8.75354649e-01]\n", + " [-4.19233726e-01 1.90906617e-01 8.87579713e-01]\n", + " [-4.03088586e-01 1.63073916e-01 9.00514569e-01]\n", + " [-3.86092347e-01 1.34436240e-01 9.12611416e-01]\n", + " [-3.68316244e-01 1.05150177e-01 9.23735127e-01]\n", + " [-3.49842348e-01 7.53783794e-02 9.33771081e-01]\n", + " [-3.30765197e-01 4.52915698e-02 9.42625619e-01]\n", + " [-4.34515109e-01 1.93329587e-01 8.79670558e-01]\n", + " [-4.61802165e-01 1.72785105e-01 8.69990843e-01]\n", + " [-4.88270169e-01 1.52034849e-01 8.59347221e-01]\n", + " [-5.13774412e-01 1.31199702e-01 8.47834000e-01]\n", + " [-5.38179668e-01 1.10400171e-01 8.35568338e-01]\n", + " [-5.61359007e-01 8.97560643e-02 8.22690655e-01]\n", + " [-3.34059518e-01 2.72252766e-02 9.42158704e-01]\n", + " [-3.62455969e-01 6.26207951e-03 9.31979859e-01]\n", + " [-3.90183877e-01 -1.45791482e-02 9.20621524e-01]\n", + " [-4.17093679e-01 -3.51763469e-02 9.08182519e-01]\n", + " [-4.43050656e-01 -5.54118148e-02 8.94782458e-01]\n", + " [-4.67933069e-01 -7.51713020e-02 8.80561138e-01]\n", + " [-5.64478434e-01 7.27868985e-02 8.22232428e-01]\n", + " [-5.50246170e-01 4.47117958e-02 8.33804538e-01]\n", + " [-5.34908206e-01 1.60643622e-02 8.44757449e-01]\n", + " [-5.18538667e-01 -1.29912407e-02 8.54955483e-01]\n", + " [-5.01219261e-01 -4.22886165e-02 8.64286368e-01]\n", + " [-4.83040593e-01 -7.16588266e-02 8.72660758e-01]\n", + " [-4.24717046e-01 2.00509229e-01 8.82842840e-01]\n", + " [-4.24717046e-01 2.00509229e-01 8.82842840e-01]\n", + " [-4.76437646e-01 -8.20107017e-02 8.75375013e-01]\n", + " [-4.76437646e-01 -8.20107017e-02 8.75375013e-01]\n", + " [-4.29071161e-01 1.83700079e-01 8.84393702e-01]\n", + " [-4.56474220e-01 1.63092056e-01 8.74661230e-01]\n", + " [-4.83064557e-01 1.42297410e-01 8.63944489e-01]\n", + " [-5.08697489e-01 1.21437490e-01 8.52337844e-01]\n", + " [-5.33238189e-01 1.00633056e-01 8.39958346e-01]\n", + " [-5.56560242e-01 8.00039120e-02 8.26946233e-01]\n", + " [-4.13025461e-01 1.55800110e-01 8.97293873e-01]\n", + " [-4.40724015e-01 1.35037791e-01 8.87427258e-01]\n", + " [-4.67629222e-01 1.14143744e-01 8.76523883e-01]\n", + " [-4.93596204e-01 9.32405874e-02 8.64678541e-01]\n", + " [-5.18491205e-01 7.24496776e-02 8.52008166e-01]\n", + " [-5.42189594e-01 5.18906607e-02 8.38652373e-01]\n", + " [-3.96110558e-01 1.27108594e-01 9.09362321e-01]\n", + " [-4.24055383e-01 1.06230984e-01 8.99384239e-01]\n", + " [-4.51228967e-01 8.52778466e-02 8.88324326e-01]\n", + " [-4.77485775e-01 6.43727443e-02 8.76278200e-01]\n", + " [-5.02692745e-01 4.36371898e-02 8.63363075e-01]\n", + " [-5.26726999e-01 2.31902785e-02 8.49718117e-01]\n", + " [-3.78397226e-01 9.77825221e-02 9.20464077e-01]\n", + " [-4.06538210e-01 7.68300455e-02 9.10397621e-01]\n", + " [-4.33933594e-01 5.58597518e-02 8.99211502e-01]\n", + " [-4.60436778e-01 3.49955629e-02 8.87002415e-01]\n", + " [-4.85914823e-01 1.43585255e-02 8.73888218e-01]\n", + " [-5.10246094e-01 -5.93332393e-03 8.60007976e-01]\n", + " [-3.59966940e-01 6.79849947e-02 9.30484735e-01]\n", + " [-3.88252539e-01 4.69993141e-02 9.20353753e-01]\n", + " [-4.15822323e-01 2.60548212e-02 9.09072573e-01]\n", + " [-4.42528403e-01 5.27509290e-03 8.96738973e-01]\n", + " [-4.68237376e-01 -1.52199337e-02 8.83471626e-01]\n", + " [-4.92828094e-01 -3.53137198e-02 8.69409806e-01]\n", + " [-3.40913677e-01 3.78871014e-02 9.39330843e-01]\n", + " [-3.69290772e-01 1.69105597e-02 9.29160029e-01]\n", + " [-3.96986230e-01 -3.96509599e-03 9.17816001e-01]\n", + " [-4.23850888e-01 -2.46173115e-02 9.05397378e-01]\n", + " [-4.49750424e-01 -4.49277527e-02 8.92023572e-01]\n", + " [-4.74563377e-01 -6.47815823e-02 8.77834237e-01]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:cartToSphere: vec: [[-0.326673 -0.38269101 0.86419462]\n", + " [-0.30008526 -0.38574303 0.87243977]\n", + " [-0.2727246 -0.3885435 0.88014501]\n", + " [-0.24468694 -0.39106434 0.88724122]\n", + " [-0.21607173 -0.39328141 0.89366814]\n", + " [-0.18698322 -0.39517452 0.89937444]\n", + " [-0.15753073 -0.39672762 0.90431812]\n", + " [-0.12782799 -0.39792906 0.9084671 ]\n", + " [-0.326673 -0.38269101 0.86419462]\n", + " [-0.32593373 -0.40914182 0.85227353]\n", + " [-0.32483001 -0.43517562 0.83970688]\n", + " [-0.32336736 -0.46069587 0.82655482]\n", + " [-0.32155306 -0.48561127 0.81288703]\n", + " [-0.31939556 -0.50983574 0.79878282]\n", + " [-0.31690384 -0.5332878 0.78433161]\n", + " [-0.31408679 -0.55588963 0.76963381]\n", + " [-0.12782799 -0.39792906 0.9084671 ]\n", + " [-0.12720859 -0.42527107 0.89608174]\n", + " [-0.12647459 -0.45214333 0.88293294]\n", + " [-0.12563048 -0.47844538 0.869084 ]\n", + " [-0.12468213 -0.50408393 0.85460737]\n", + " [-0.12363671 -0.52897342 0.83958388]\n", + " [-0.12250256 -0.55303572 0.82410231]\n", + " [-0.12128918 -0.57619907 0.80825959]\n", + " [-0.31408679 -0.55588963 0.76963381]\n", + " [-0.28828853 -0.56027435 0.7765194 ]\n", + " [-0.26173579 -0.56420541 0.78304958]\n", + " [-0.23453146 -0.56765489 0.78915329]\n", + " [-0.20677876 -0.57059807 0.79477065]\n", + " [-0.1785824 -0.57301375 0.79985222]\n", + " [-0.1500494 -0.57488487 0.80435848]\n", + " [-0.12128918 -0.57619907 0.80825959]\n", + " [-0.31517984 -0.38414208 0.86781135]\n", + " [-0.2820621 -0.38771812 0.87756233]\n", + " [-0.24787842 -0.39088782 0.88643274]\n", + " [-0.21281033 -0.3936051 0.894308 ]\n", + " [-0.17704979 -0.39583279 0.90109366]\n", + " [-0.14079991 -0.39754318 0.9067165 ]\n", + " [-0.32630626 -0.39427974 0.85910867]\n", + " [-0.32515464 -0.42643081 0.84405641]\n", + " [-0.32346102 -0.45785893 0.82809309]\n", + " [-0.3212381 -0.48839386 0.81134303]\n", + " [-0.31850136 -0.51787703 0.7939523 ]\n", + " [-0.31526733 -0.54616004 0.77609003]\n", + " [-0.1276741 -0.40989782 0.90315176]\n", + " [-0.12683722 -0.44310524 0.88745144]\n", + " [-0.12583232 -0.47550652 0.87066628]\n", + " [-0.12466964 -0.50692689 0.85292591]\n", + " [-0.12336234 -0.53720879 0.83437908]\n", + " [-0.12192629 -0.56621113 0.81519257]\n", + " [-0.30294787 -0.55777926 0.77272562]\n", + " [-0.27080809 -0.56285116 0.78093633]\n", + " [-0.2376373 -0.56721369 0.78854115]\n", + " [-0.20362527 -0.57081999 0.79542523]\n", + " [-0.16896492 -0.57363109 0.80149749]\n", + " [-0.13385424 -0.57561753 0.80668922]\n", + " [-0.32658161 -0.38279289 0.86418404]\n", + " [-0.32658161 -0.38279289 0.86418404]\n", + " [-0.12139207 -0.57611793 0.80830198]\n", + " [-0.12139207 -0.57611793 0.80830198]\n", + " [-0.31490522 -0.39567372 0.86271491]\n", + " [-0.31376975 -0.4279464 0.84759096]\n", + " [-0.31211333 -0.45948787 0.83153843]\n", + " [-0.30994908 -0.49012766 0.8146818 ]\n", + " [-0.30729314 -0.51970748 0.7971669 ]\n", + " [-0.30416281 -0.54807974 0.7791621 ]\n", + " [-0.28178991 -0.39936245 0.87241279]\n", + " [-0.28070218 -0.43194073 0.85710763]\n", + " [-0.27915417 -0.46376616 0.84082929]\n", + " [-0.27715971 -0.49466735 0.82370305]\n", + " [-0.27473614 -0.52448654 0.80587463]\n", + " [-0.27190254 -0.5530783 0.78751089]\n", + " [-0.24760932 -0.40262348 0.88124001]\n", + " [-0.24657288 -0.43544888 0.8657864 ]\n", + " [-0.24513907 -0.46750277 0.84932208]\n", + " [-0.24332171 -0.49861263 0.83197355]\n", + " [-0.2411384 -0.52862097 0.81388706]\n", + " [-0.23860893 -0.55738407 0.79522876]\n", + " [-0.21254499 -0.4054101 0.88908227]\n", + " [-0.21156379 -0.43842259 0.87351382]\n", + " [-0.2102508 -0.47064839 0.85690413]\n", + " [-0.20861924 -0.50191396 0.83938095]\n", + " [-0.20668606 -0.53206181 0.82109141]\n", + " [-0.20447071 -0.5609495 0.80220158]\n", + " [-0.1767889 -0.40768452 0.89584542]\n", + " [-0.17586679 -0.44082247 0.88019681]\n", + " [-0.17468109 -0.47316252 0.8634835 ]\n", + " [-0.17324393 -0.50453035 0.8458343 ]\n", + " [-0.17157095 -0.5347684 0.82739722]\n", + " [-0.16968042 -0.5637351 0.8083386 ]\n", + " [-0.14054412 -0.40941851 0.90145651]\n", + " [-0.1396845 -0.44261902 0.88576331]\n", + " [-0.13863163 -0.47501474 0.86898922]\n", + " [-0.1373963 -0.50643095 0.85126374]\n", + " [-0.13599233 -0.53671007 0.83273548]\n", + " [-0.13443629 -0.56571096 0.81357114]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:fp_optics: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:fp_optics: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:cartToSphere: vec: [[-0.25488178 0.92341622 0.28694558]\n", + " [-0.25657896 0.93062466 0.26096932]\n", + " [-0.25797564 0.93731957 0.23426609]\n", + " [-0.25906424 0.94343212 0.20693368]\n", + " [-0.25984042 0.94890202 0.17907517]\n", + " [-0.26030156 0.9536789 0.15079675]\n", + " [-0.26044617 0.95772296 0.12220687]\n", + " [-0.26027376 0.96100522 0.09341589]\n", + " [-0.25488178 0.92341622 0.28694558]\n", + " [-0.22875363 0.92938039 0.28969618]\n", + " [-0.20189414 0.93481949 0.2921494 ]\n", + " [-0.17440343 0.93966802 0.29429145]\n", + " [-0.14638681 0.94386892 0.29611207]\n", + " [-0.1179524 0.9473751 0.29760317]\n", + " [-0.08921011 0.95015007 0.29875811]\n", + " [-0.06027134 0.95216813 0.29957173]\n", + " [-0.26027376 0.96100522 0.09341589]\n", + " [-0.23323188 0.96782138 0.09447045]\n", + " [-0.20544538 0.97400106 0.09546799]\n", + " [-0.17701772 0.9794752 0.09640048]\n", + " [-0.14805214 0.98418539 0.09726085]\n", + " [-0.11865395 0.98808341 0.09804292]\n", + " [-0.08893298 0.99113121 0.09874138]\n", + " [-0.05900441 0.9933014 0.09935191]\n", + " [-0.06027134 0.95216813 0.29957173]\n", + " [-0.06026264 0.96020515 0.27271687]\n", + " [-0.06019867 0.96762471 0.24510922]\n", + " [-0.06007776 0.97435478 0.21684885]\n", + " [-0.05989855 0.98033385 0.18803643]\n", + " [-0.0596601 0.98551049 0.15877578]\n", + " [-0.05936197 0.98984328 0.12917597]\n", + " [-0.05900441 0.9933014 0.09935191]\n", + " [-0.25556969 0.9266391 0.2757247 ]\n", + " [-0.25744797 0.93513829 0.24338637]\n", + " [-0.25886707 0.94279679 0.21005249]\n", + " [-0.25981773 0.94949995 0.17591077]\n", + " [-0.26029511 0.9551551 0.14115664]\n", + " [-0.26029684 0.95969347 0.10599056]\n", + " [-0.24359175 0.92610246 0.2880925 ]\n", + " [-0.21106402 0.93306848 0.2912648 ]\n", + " [-0.17753647 0.9391798 0.29397638]\n", + " [-0.14320102 0.94432774 0.29620701]\n", + " [-0.10825659 0.94842568 0.29794168]\n", + " [-0.07290618 0.9514109 0.29916881]\n", + " [-0.24858277 0.96404053 0.09398121]\n", + " [-0.21492637 0.97197556 0.0952374 ]\n", + " [-0.1802544 0.9788848 0.09639967]\n", + " [-0.14475695 0.9846563 0.09745462]\n", + " [-0.10862822 0.98920127 0.09839084]\n", + " [-0.07207263 0.99245408 0.09919896]\n", + " [-0.06037378 0.95573752 0.28795971]\n", + " [-0.06032715 0.96518205 0.25452749]\n", + " [-0.06019562 0.97362638 0.220064 ]\n", + " [-0.05997656 0.98095295 0.18475425]\n", + " [-0.05966823 0.98706705 0.1487896 ]\n", + " [-0.0592701 0.99189681 0.11237336]\n", + " [-0.25480009 0.92346287 0.28686798]\n", + " [-0.25480009 0.92346287 0.28686798]\n", + " [-0.0591083 0.99328519 0.09945221]\n", + " [-0.0591083 0.99328519 0.09945221]\n", + " [-0.2443171 0.92931797 0.27690659]\n", + " [-0.21165984 0.93638491 0.27997037]\n", + " [-0.17799912 0.94258005 0.28259364]\n", + " [-0.14352841 0.94779359 0.28475762]\n", + " [-0.10844711 0.95193851 0.28644772]\n", + " [-0.07295844 0.95495197 0.28765222]\n", + " [-0.24608263 0.93791855 0.24444251]\n", + " [-0.21309823 0.94524433 0.24718879]\n", + " [-0.1791038 0.95165311 0.24955598]\n", + " [-0.14429487 0.95703334 0.25152767]\n", + " [-0.10887079 0.96129753 0.25308934]\n", + " [-0.07303507 0.96438263 0.2542283 ]\n", + " [-0.24740979 0.94566207 0.21097784]\n", + " [-0.21416141 0.95320355 0.21339606]\n", + " [-0.17989979 0.95978946 0.21550003]\n", + " [-0.14481995 0.9653078 0.2172741 ]\n", + " [-0.10911995 0.96967094 0.21870321]\n", + " [-0.07300345 0.97281549 0.21977378]\n", + " [-0.24829085 0.95243275 0.17670173]\n", + " [-0.21484407 0.96014509 0.17878317]\n", + " [-0.18038238 0.96687123 0.18061623]\n", + " [-0.14509904 0.97249921 0.18218552]\n", + " [-0.10919045 0.97694116 0.18347594]\n", + " [-0.07286051 0.98013302 0.18447388]\n", + " [-0.24872139 0.95813755 0.14181008]\n", + " [-0.21514181 0.96597542 0.14354612]\n", + " [-0.18054651 0.97280475 0.14509953]\n", + " [-0.14512683 0.97851367 0.14645546]\n", + " [-0.10907782 0.9830139 0.14759981]\n", + " [-0.07260365 0.98624058 0.14852012]\n", + " [-0.24869895 0.96270754 0.10650364]\n", + " [-0.21505129 0.97062532 0.10788622]\n", + " [-0.18038786 0.9775204 0.10915171]\n", + " [-0.14489888 0.98328086 0.11028627]\n", + " [-0.10877862 0.98781804 0.1112777 ]\n", + " [-0.07223149 0.99106643 0.11211573]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:fp_optics: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:cartToSphere: vec: [[ 0.38905647 -0.79844435 -0.45947979]\n", + " [ 0.39020731 -0.78422671 -0.48241758]\n", + " [ 0.39095252 -0.76917376 -0.50549762]\n", + " [ 0.39128119 -0.75331104 -0.52860335]\n", + " [ 0.39118694 -0.73667325 -0.55162061]\n", + " [ 0.39066666 -0.71930385 -0.57444019]\n", + " [ 0.38971978 -0.70125492 -0.59695898]\n", + " [ 0.38834829 -0.68258709 -0.61908035]\n", + " [ 0.38905647 -0.79844435 -0.45947979]\n", + " [ 0.3641282 -0.80787828 -0.46340407]\n", + " [ 0.33839068 -0.8168373 -0.46719223]\n", + " [ 0.31193366 -0.82525408 -0.47080049]\n", + " [ 0.28485336 -0.83306893 -0.47418849]\n", + " [ 0.25725018 -0.84023006 -0.47732148]\n", + " [ 0.2292278 -0.84669368 -0.48017126]\n", + " [ 0.20089282 -0.85242415 -0.48271642]\n", + " [ 0.38834829 -0.68258709 -0.61908035]\n", + " [ 0.36253082 -0.69148388 -0.62483714]\n", + " [ 0.33588999 -0.7000068 -0.63021298]\n", + " [ 0.30851877 -0.7080899 -0.63515735]\n", + " [ 0.28051129 -0.71567515 -0.63962684]\n", + " [ 0.25196517 -0.72271174 -0.64358472]\n", + " [ 0.22298383 -0.72915582 -0.64700078]\n", + " [ 0.19367749 -0.73497072 -0.64985158]\n", + " [ 0.20089282 -0.85242415 -0.48271642]\n", + " [ 0.20041356 -0.83835053 -0.50695444]\n", + " [ 0.1997564 -0.82332069 -0.53126304]\n", + " [ 0.19891594 -0.80735888 -0.55552146]\n", + " [ 0.19788851 -0.79049685 -0.57961614]\n", + " [ 0.19667234 -0.7727754 -0.60343863]\n", + " [ 0.19526775 -0.75424582 -0.62688415]\n", + " [ 0.19367749 -0.73497072 -0.64985158]\n", + " [ 0.38952307 -0.79238235 -0.46946991]\n", + " [ 0.39066162 -0.77439269 -0.49769414]\n", + " [ 0.39117958 -0.75517256 -0.5260161 ]\n", + " [ 0.39106347 -0.73478207 -0.55422438]\n", + " [ 0.39030742 -0.71330122 -0.5821181 ]\n", + " [ 0.3889115 -0.69082944 -0.60951008]\n", + " [ 0.3782968 -0.80256422 -0.46128322]\n", + " [ 0.34718868 -0.81381599 -0.4660081 ]\n", + " [ 0.31495328 -0.82428676 -0.47048461]\n", + " [ 0.28176523 -0.83386343 -0.47463685]\n", + " [ 0.24780928 -0.84245065 -0.47840095]\n", + " [ 0.21327752 -0.84997118 -0.48172782]\n", + " [ 0.37720438 -0.6865726 -0.62155846]\n", + " [ 0.34499712 -0.69723449 -0.62836379]\n", + " [ 0.31164542 -0.70726828 -0.63454607]\n", + " [ 0.27732205 -0.71656385 -0.64002244]\n", + " [ 0.24220701 -0.72502765 -0.64472527]\n", + " [ 0.20649354 -0.73258187 -0.64860174]\n", + " [ 0.20080301 -0.84638845 -0.49325931]\n", + " [ 0.20009771 -0.8284939 -0.52302846]\n", + " [ 0.19911946 -0.8091864 -0.55278278]\n", + " [ 0.1978608 -0.78852129 -0.5823103 ]\n", + " [ 0.19631845 -0.76657382 -0.6114112 ]\n", + " [ 0.19449402 -0.74344315 -0.63989403]\n", + " [ 0.38897731 -0.79843017 -0.45957146]\n", + " [ 0.38897731 -0.79843017 -0.45957146]\n", + " [ 0.19378388 -0.73501904 -0.6497652 ]\n", + " [ 0.19378388 -0.73501904 -0.6497652 ]\n", + " [ 0.37880148 -0.79651773 -0.47124192]\n", + " [ 0.34757217 -0.80777574 -0.47612176]\n", + " [ 0.3152109 -0.81825636 -0.48072718]\n", + " [ 0.28189376 -0.82784656 -0.48498038]\n", + " [ 0.24780594 -0.836451 -0.48881688]\n", + " [ 0.21313973 -0.84399221 -0.49218758]\n", + " [ 0.37983454 -0.77851992 -0.49963232]\n", + " [ 0.34829724 -0.78976482 -0.50493619]\n", + " [ 0.31561904 -0.80024727 -0.5098911 ]\n", + " [ 0.281978 -0.80985452 -0.51441624]\n", + " [ 0.24755918 -0.81849095 -0.51844673]\n", + " [ 0.21255509 -0.82607823 -0.52193399]\n", + " [ 0.3802652 -0.75927422 -0.52811082]\n", + " [ 0.3484762 -0.77046097 -0.53381105]\n", + " [ 0.31554175 -0.78090673 -0.53909005]\n", + " [ 0.28163939 -0.79049908 -0.54386621]\n", + " [ 0.24695288 -0.79914207 -0.54807501]\n", + " [ 0.21167476 -0.80675647 -0.5516682 ]\n", + " [ 0.38008139 -0.73884082 -0.55646417]\n", + " [ 0.34809925 -0.74992426 -0.56253046]\n", + " [ 0.31496975 -0.76029407 -0.56810825]\n", + " [ 0.28086868 -0.7698383 -0.57311585]\n", + " [ 0.24597814 -0.77846101 -0.57748871]\n", + " [ 0.21049081 -0.78608247 -0.58117808]\n", + " [ 0.37927769 -0.71729973 -0.58449083]\n", + " [ 0.34716094 -0.72823444 -0.59089245]\n", + " [ 0.31389682 -0.7384883 -0.59674435]\n", + " [ 0.2796593 -0.74795003 -0.60196464]\n", + " [ 0.24462911 -0.75652435 -0.60648785]\n", + " [ 0.20899917 -0.76413177 -0.61026387]\n", + " [ 0.37785403 -0.69475053 -0.6120033 ]\n", + " [ 0.34566031 -0.70549141 -0.618709 ]\n", + " [ 0.31232105 -0.71558947 -0.62480979]\n", + " [ 0.27800913 -0.7249343 -0.63022312]\n", + " [ 0.24290459 -0.73343182 -0.63488198]\n", + " [ 0.2072006 -0.74100367 -0.63873427]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:cartToSphere: vec: [[ 0.10263134 0.2212488 -0.96980193]\n", + " [ 0.08904182 0.24529728 -0.96535009]\n", + " [ 0.07510886 0.2696298 -0.96003043]\n", + " [ 0.06088423 0.29413813 -0.95382172]\n", + " [ 0.0464204 0.31871709 -0.9467125 ]\n", + " [ 0.03177135 0.34326301 -0.93870181]\n", + " [ 0.01699309 0.36767324 -0.92979978]\n", + " [ 0.00214347 0.39184656 -0.92002809]\n", + " [ 0.10263134 0.2212488 -0.96980193]\n", + " [ 0.07735779 0.20801946 -0.97506086]\n", + " [ 0.05205138 0.19474333 -0.97947215]\n", + " [ 0.02681035 0.18147715 -0.98302963]\n", + " [ 0.00173235 0.16828131 -0.98573749]\n", + " [-0.02308577 0.15522015 -0.98761012]\n", + " [-0.04754786 0.14236241 -0.98867191]\n", + " [-0.07155819 0.12978151 -0.98895712]\n", + " [ 0.00214347 0.39184656 -0.92002809]\n", + " [-0.02393696 0.3780258 -0.92548556]\n", + " [-0.04991411 0.36391263 -0.93009471]\n", + " [-0.07568587 0.34956751 -0.93384913]\n", + " [-0.10115322 0.33505367 -0.93675347]\n", + " [-0.12622068 0.32043676 -0.938823 ]\n", + " [-0.15079574 0.30578495 -0.94008309]\n", + " [-0.17478744 0.29116975 -0.94056873]\n", + " [-0.07155819 0.12978151 -0.98895712]\n", + " [-0.08622719 0.15207696 -0.98460016]\n", + " [-0.10101462 0.1748055 -0.97940752]\n", + " [-0.11586561 0.19785501 -0.97335942]\n", + " [-0.13072472 0.22111786 -0.96644604]\n", + " [-0.14553587 0.24449059 -0.95866765]\n", + " [-0.16024239 0.26787337 -0.95003486]\n", + " [-0.17478744 0.29116975 -0.94056873]\n", + " [ 0.09666521 0.23164671 -0.96798535]\n", + " [ 0.07977152 0.26132499 -0.96194894]\n", + " [ 0.06241356 0.29132204 -0.95458683]\n", + " [ 0.04468756 0.32144303 -0.94587388]\n", + " [ 0.02669299 0.35149707 -0.93580836]\n", + " [ 0.00853374 0.38129574 -0.92441372]\n", + " [ 0.09157615 0.21557143 -0.97218453]\n", + " [ 0.06056551 0.19931847 -0.97806133]\n", + " [ 0.02960327 0.18305104 -0.9826576 ]\n", + " [-0.00113052 0.1668788 -0.98597677]\n", + " [-0.03145756 0.15092024 -0.98804529]\n", + " [-0.06120101 0.13530386 -0.98891218]\n", + " [-0.00918292 0.38577821 -0.92254585]\n", + " [-0.04109067 0.36863558 -0.92866537]\n", + " [-0.07274164 0.35111363 -0.93350301]\n", + " [-0.10395219 0.33332766 -0.93706276]\n", + " [-0.13454648 0.31539852 -0.93937267]\n", + " [-0.16435494 0.29745305 -0.94048346]\n", + " [-0.07785449 0.13948485 -0.98715888]\n", + " [-0.09591907 0.16711739 -0.98126006]\n", + " [-0.11410721 0.19528844 -0.9740852 ]\n", + " [-0.13231713 0.22379799 -0.96561205]\n", + " [-0.15044557 0.2524555 -0.95584117]\n", + " [-0.16838811 0.2810786 -0.94479641]\n", + " [ 0.10249926 0.22128532 -0.96980756]\n", + " [ 0.10249926 0.22128532 -0.96980756]\n", + " [-0.17465709 0.29114016 -0.9406021 ]\n", + " [-0.17465709 0.29114016 -0.9406021 ]\n", + " [ 0.08569987 0.22590847 -0.97037152]\n", + " [ 0.05457754 0.2095697 -0.97626935]\n", + " [ 0.02351595 0.19319169 -0.98087918]\n", + " [-0.00730444 0.17688394 -0.98420461]\n", + " [-0.03770527 0.1607645 -0.98627232]\n", + " [-0.06750997 0.14496143 -0.98713149]\n", + " [ 0.06870009 0.25552499 -0.96435848]\n", + " [ 0.03730011 0.23896489 -0.97031154]\n", + " [ 0.00599638 0.22229758 -0.97496042]\n", + " [-0.02502938 0.20563245 -0.97830917]\n", + " [-0.05559873 0.18908657 -0.98038515]\n", + " [-0.08553606 0.17278648 -0.9812382 ]\n", + " [ 0.05125641 0.28547104 -0.95701571]\n", + " [ 0.01963708 0.2687216 -0.9630177 ]\n", + " [-0.01184965 0.25179951 -0.96770687]\n", + " [-0.04302081 0.23481478 -0.97108765]\n", + " [-0.07369811 0.21788414 -0.97318811]\n", + " [-0.10370718 0.2011329 -0.97405871]\n", + " [ 0.03346565 0.31555206 -0.94831796]\n", + " [ 0.00168693 0.29864555 -0.95436261]\n", + " [-0.02992211 0.2815028 -0.95909376]\n", + " [-0.06117765 0.26423506 -0.96251604]\n", + " [-0.09190175 0.24695959 -0.96465798]\n", + " [-0.12192156 0.22980124 -0.96557057]\n", + " [ 0.01542794 0.34557752 -0.93826337]\n", + " [-0.01644839 0.32854718 -0.94434433]\n", + " [-0.04811772 0.31121854 -0.94911944]\n", + " [-0.07939587 0.29370457 -0.95259326]\n", + " [-0.11010563 0.27612375 -0.95479444]\n", + " [-0.14007568 0.25860134 -0.95577411]\n", + " [-0.00275223 0.37535933 -0.92687529]\n", + " [-0.03466302 0.35823971 -0.93298595]\n", + " [-0.06632986 0.34076152 -0.93780698]\n", + " [-0.09756886 0.32303948 -0.94134256]\n", + " [-0.12820379 0.3051938 -0.94362097]\n", + " [-0.15806469 0.28735083 -0.9446931 ]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:fp_optics: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:fp_optics: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:cartToSphere: vec: [[ 0.13706566 0.14687361 -0.97961275]\n", + " [ 0.16156468 0.13579325 -0.97747483]\n", + " [ 0.1865202 0.12452115 -0.97452794]\n", + " [ 0.2118092 0.1130853 -0.9707464 ]\n", + " [ 0.23731478 0.10151753 -0.96611381]\n", + " [ 0.2629247 0.08985339 -0.96062322]\n", + " [ 0.28853043 0.07813179 -0.95427753]\n", + " [ 0.31402682 0.06639455 -0.94708971]\n", + " [ 0.13706566 0.14687361 -0.97961275]\n", + " [ 0.14499612 0.17206252 -0.97435651]\n", + " [ 0.15313862 0.19761627 -0.96824396]\n", + " [ 0.16143444 0.22342029 -0.96126078]\n", + " [ 0.16983122 0.24936358 -0.95340189]\n", + " [ 0.17828188 0.27533769 -0.94467176]\n", + " [ 0.18674372 0.30123616 -0.93508479]\n", + " [ 0.19517776 0.32695457 -0.92466554]\n", + " [ 0.31402682 0.06639455 -0.94708971]\n", + " [ 0.32404549 0.0918574 -0.94157142]\n", + " [ 0.33401238 0.11776696 -0.93518269]\n", + " [ 0.34387267 0.14401533 -0.92790688]\n", + " [ 0.35357491 0.17049541 -0.91973697]\n", + " [ 0.36307066 0.19709969 -0.91067635]\n", + " [ 0.37231449 0.22372007 -0.90073928]\n", + " [ 0.38126441 0.25024853 -0.88995119]\n", + " [ 0.19517776 0.32695457 -0.92466554]\n", + " [ 0.22129626 0.31718431 -0.92218332]\n", + " [ 0.24775982 0.30696787 -0.91890467]\n", + " [ 0.27445297 0.29633159 -0.91480225]\n", + " [ 0.30126214 0.2853054 -0.9098582 ]\n", + " [ 0.32807468 0.27392332 -0.90406472]\n", + " [ 0.3547788 0.26222359 -0.89742453]\n", + " [ 0.38126441 0.25024853 -0.88995119]\n", + " [ 0.14771029 0.14215338 -0.97876151]\n", + " [ 0.17806079 0.1284416 -0.9756009 ]\n", + " [ 0.2089739 0.11446901 -0.97119862]\n", + " [ 0.24023194 0.10029262 -0.96552059]\n", + " [ 0.27162819 0.08597782 -0.95855409]\n", + " [ 0.30296425 0.0715975 -0.95030861]\n", + " [ 0.14057667 0.15776642 -0.97741903]\n", + " [ 0.15044814 0.18889879 -0.97040332]\n", + " [ 0.1605788 0.22046492 -0.9620861 ]\n", + " [ 0.17086967 0.25225906 -0.95245416]\n", + " [ 0.18123399 0.28408147 -0.94151578]\n", + " [ 0.1915947 0.31573701 -0.92930168]\n", + " [ 0.31831045 0.07747479 -0.94481539]\n", + " [ 0.33056074 0.10899659 -0.93746965]\n", + " [ 0.34267854 0.14108189 -0.92879886]\n", + " [ 0.35456779 0.1735333 -0.91878609]\n", + " [ 0.36613929 0.20615288 -0.90743761]\n", + " [ 0.37731085 0.23874158 -0.89478432]\n", + " [ 0.20648667 0.32266326 -0.92371623]\n", + " [ 0.23874398 0.31038475 -0.92014272]\n", + " [ 0.27140458 0.29746205 -0.91534468]\n", + " [ 0.30425874 0.28394873 -0.90928529]\n", + " [ 0.33709905 0.26990742 -0.90195023]\n", + " [ 0.36972037 0.25541026 -0.89334901]\n", + " [ 0.1371752 0.14692145 -0.97959025]\n", + " [ 0.1371752 0.14692145 -0.97959025]\n", + " [ 0.38114427 0.25019945 -0.89001645]\n", + " [ 0.38114427 0.25019945 -0.89001645]\n", + " [ 0.15118272 0.15302989 -0.97658878]\n", + " [ 0.1612349 0.18425478 -0.96956355]\n", + " [ 0.17151733 0.21591898 -0.9612288 ]\n", + " [ 0.18193228 0.24781748 -0.95157088]\n", + " [ 0.19239381 0.27975072 -0.94059777]\n", + " [ 0.20282517 0.31152322 -0.92834004]\n", + " [ 0.1817236 0.13938932 -0.97342034]\n", + " [ 0.19226057 0.17082659 -0.96636129]\n", + " [ 0.2029501 0.20272136 -0.95797459]\n", + " [ 0.21369728 0.23487058 -0.94824537]\n", + " [ 0.22441758 0.26707499 -0.93718072]\n", + " [ 0.23503452 0.29913795 -0.92481093]\n", + " [ 0.2128127 0.12546137 -0.96900475]\n", + " [ 0.22379809 0.15703801 -0.96190097]\n", + " [ 0.23486402 0.1890935 -0.9534582 ]\n", + " [ 0.24591707 0.22142648 -0.94366048]\n", + " [ 0.25687285 0.25383778 -0.93251419]\n", + " [ 0.26765423 0.28612959 -0.92004949]\n", + " [ 0.24423372 0.11130348 -0.96330754]\n", + " [ 0.25563446 0.14294724 -0.95614701]\n", + " [ 0.26704829 0.17509356 -0.94764311]\n", + " [ 0.27838196 0.20754251 -0.93777907]\n", + " [ 0.28955023 0.24009502 -0.92656087]\n", + " [ 0.3004747 0.27255234 -0.9140187 ]\n", + " [ 0.27578056 0.09698151 -0.95631567]\n", + " [ 0.28756466 0.12862099 -0.94908546]\n", + " [ 0.29929799 0.16078832 -0.94051466]\n", + " [ 0.3108865 0.19328476 -0.93058615]\n", + " [ 0.32224343 0.22591156 -0.91930579]\n", + " [ 0.33328878 0.25846945 -0.90670399]\n", + " [ 0.30725478 0.0825688 -0.94803845]\n", + " [ 0.31938947 0.11413358 -0.94072519]\n", + " [ 0.33141253 0.14625244 -0.93208152]\n", + " [ 0.34322845 0.17872769 -0.92209037]\n", + " [ 0.35474869 0.21136111 -0.91075784]\n", + " [ 0.36589159 0.24395351 -0.89811471]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:fp_optics: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:cartToSphere: vec: [[-0.60332045 -0.37250735 -0.70515438]\n", + " [-0.59341511 -0.35345672 -0.72313682]\n", + " [-0.58283244 -0.33374197 -0.74089314]\n", + " [-0.57158861 -0.31342603 -0.7583209 ]\n", + " [-0.55970574 -0.29257531 -0.7753252 ]\n", + " [-0.54721285 -0.27126111 -0.79181785]\n", + " [-0.53414642 -0.24956024 -0.80771733]\n", + " [-0.5205505 -0.22755481 -0.82294957]\n", + " [-0.60332045 -0.37250735 -0.70515438]\n", + " [-0.623905 -0.35382146 -0.69681628]\n", + " [-0.64386565 -0.33483277 -0.6879855 ]\n", + " [-0.66313091 -0.31561774 -0.67870674]\n", + " [-0.68163581 -0.296255 -0.66903332]\n", + " [-0.69932162 -0.27682496 -0.65902748]\n", + " [-0.71613515 -0.2574098 -0.64876085]\n", + " [-0.73202812 -0.23809383 -0.63831509]\n", + " [-0.5205505 -0.22755481 -0.82294957]\n", + " [-0.54189556 -0.20832804 -0.81421657]\n", + " [-0.56268335 -0.18897553 -0.80478301]\n", + " [-0.58283869 -0.1695765 -0.79469672]\n", + " [-0.6022949 -0.15021039 -0.78401384]\n", + " [-0.62099392 -0.13095637 -0.77279815]\n", + " [-0.63888558 -0.11189356 -0.76112091]\n", + " [-0.65592635 -0.09310206 -0.74906117]\n", + " [-0.73202812 -0.23809383 -0.63831509]\n", + " [-0.72348321 -0.21846093 -0.654864 ]\n", + " [-0.71412232 -0.19835042 -0.67133183]\n", + " [-0.70396463 -0.17782989 -0.68761205]\n", + " [-0.69303404 -0.15696968 -0.70360808]\n", + " [-0.6813597 -0.13584331 -0.71923262]\n", + " [-0.66897664 -0.11452752 -0.73440704]\n", + " [-0.65592635 -0.09310206 -0.74906117]\n", + " [-0.59915743 -0.36422325 -0.71298793]\n", + " [-0.58656089 -0.34041973 -0.73488825]\n", + " [-0.57296229 -0.31568101 -0.75634629]\n", + " [-0.55839985 -0.29012785 -0.7771843 ]\n", + " [-0.54292704 -0.26389157 -0.79723991]\n", + " [-0.52661418 -0.23711582 -0.81636609]\n", + " [-0.61233484 -0.36433807 -0.70164365]\n", + " [-0.63715384 -0.34122288 -0.6910875 ]\n", + " [-0.66096396 -0.31772871 -0.67983462]\n", + " [-0.68364289 -0.29399942 -0.6679796 ]\n", + " [-0.70508241 -0.27018305 -0.65563703]\n", + " [-0.72518668 -0.24643176 -0.64294297]\n", + " [-0.52996772 -0.21926803 -0.81917992]\n", + " [-0.55576324 -0.19560911 -0.80800018]\n", + " [-0.58064602 -0.17183981 -0.79581485]\n", + " [-0.60448975 -0.14810635 -0.78272387]\n", + " [-0.62718744 -0.12455451 -0.76884464]\n", + " [-0.64864959 -0.10133029 -0.75431153]\n", + " [-0.72835083 -0.22966258 -0.64556964]\n", + " [-0.71732638 -0.20527085 -0.66581284]\n", + " [-0.70509491 -0.18022846 -0.68582714]\n", + " [-0.69169844 -0.15466375 -0.70543064]\n", + " [-0.67719069 -0.12871203 -0.72446254]\n", + " [-0.66163885 -0.10251588 -0.74278161]\n", + " [-0.60335912 -0.37238011 -0.7051885 ]\n", + " [-0.60335912 -0.37238011 -0.7051885 ]\n", + " [-0.65591528 -0.09323913 -0.74905381]\n", + " [-0.65591528 -0.09323913 -0.74905381]\n", + " [-0.60816888 -0.35615081 -0.70942739]\n", + " [-0.63309024 -0.3329587 -0.69880988]\n", + " [-0.6570042 -0.30940167 -0.68747079]\n", + " [-0.67978853 -0.28562409 -0.67550458]\n", + " [-0.70133553 -0.26177423 -0.66302544]\n", + " [-0.72155016 -0.23800415 -0.65016874]\n", + " [-0.59566254 -0.33227123 -0.73128788]\n", + " [-0.62084463 -0.30889077 -0.72051262]\n", + " [-0.64502598 -0.28518698 -0.70894983]\n", + " [-0.6680843 -0.26130564 -0.69669414]\n", + " [-0.68991314 -0.23739556 -0.68385906]\n", + " [-0.71041975 -0.21360837 -0.67057829]\n", + " [-0.58213769 -0.30747159 -0.75271305]\n", + " [-0.60753696 -0.28394766 -0.74180359]\n", + " [-0.6319465 -0.26014482 -0.73004677]\n", + " [-0.65524345 -0.23621001 -0.71753805]\n", + " [-0.67732215 -0.21229223 -0.70439102]\n", + " [-0.69809181 -0.18854233 -0.69073845]\n", + " [-0.56763207 -0.28187311 -0.7735253 ]\n", + " [-0.59320409 -0.25825217 -0.76250556]\n", + " [-0.61780251 -0.23439971 -0.75058433]\n", + " [-0.64130355 -0.21046327 -0.73785837]\n", + " [-0.66360174 -0.18659152 -0.72444209]\n", + " [-0.6846076 -0.16293415 -0.71046808]\n", + " [-0.55219859 -0.25560765 -0.7935625 ]\n", + " [-0.5778976 -0.23193758 -0.78245724]\n", + " [-0.60264484 -0.20808608 -0.77040209]\n", + " [-0.62631544 -0.18420062 -0.75749529]\n", + " [-0.64880356 -0.16042895 -0.74385247]\n", + " [-0.67002024 -0.13691926 -0.72960674]\n", + " [-0.53590706 -0.22881927 -0.8126779 ]\n", + " [-0.56168588 -0.20514881 -0.8015129 ]\n", + " [-0.58654074 -0.18134916 -0.78935571]\n", + " [-0.61034568 -0.15756698 -0.77630587]\n", + " [-0.63299405 -0.13394863 -0.76248036]\n", + " [-0.65439662 -0.11064064 -0.74801318]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:fp_optics: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:cartToSphere: vec: [[0.68254115 0.30151502 0.66575241]\n", + " [0.67526326 0.28114962 0.68189032]\n", + " [0.66721772 0.26023914 0.69792271]\n", + " [0.65842199 0.23885291 0.71374349]\n", + " [0.64889757 0.21706338 0.72925676]\n", + " [0.63867047 0.19494655 0.74437616]\n", + " [0.62777178 0.1725821 0.75902438]\n", + " [0.61623823 0.15005324 0.77313289]\n", + " [0.68254115 0.30151502 0.66575241]\n", + " [0.66470893 0.31919934 0.67548043]\n", + " [0.64594329 0.33691764 0.6850137 ]\n", + " [0.6263027 0.35458987 0.69427008]\n", + " [0.60584974 0.37213866 0.70317772]\n", + " [0.58465172 0.38948895 0.71167459]\n", + " [0.56278141 0.40656805 0.71970793]\n", + " [0.54031745 0.42330584 0.72723395]\n", + " [0.61623823 0.15005324 0.77313289]\n", + " [0.59722638 0.16705437 0.78448294]\n", + " [0.57734442 0.1842665 0.79543654]\n", + " [0.55664531 0.20161341 0.80591441]\n", + " [0.53518766 0.21902086 0.81584559]\n", + " [0.5130373 0.23641548 0.82516692]\n", + " [0.49026819 0.2537244 0.83382314]\n", + " [0.46696249 0.27087562 0.84176744]\n", + " [0.54031745 0.42330584 0.72723395]\n", + " [0.53156263 0.4033435 0.7448189 ]\n", + " [0.5221996 0.38266143 0.7621534 ]\n", + " [0.51224272 0.361324 0.77913565]\n", + " [0.50171159 0.33939966 0.79567163]\n", + " [0.49063187 0.31696239 0.81167433]\n", + " [0.47903582 0.29409234 0.82706371]\n", + " [0.46696249 0.27087562 0.84176744]\n", + " [0.67940364 0.29276728 0.67282837]\n", + " [0.66996467 0.26743211 0.69255137]\n", + " [0.65938966 0.24134664 0.71200918]\n", + " [0.6477165 0.21464292 0.73102104]\n", + " [0.63499311 0.18746086 0.7494279 ]\n", + " [0.62127907 0.15994865 0.76709109]\n", + " [0.67486068 0.30914738 0.67006788]\n", + " [0.65236961 0.33085445 0.68187186]\n", + " [0.62853418 0.35253282 0.69330037]\n", + " [0.60346786 0.37403895 0.70421687]\n", + " [0.57729465 0.3952347 0.71450711]\n", + " [0.55015096 0.41598725 0.72407771]\n", + " [0.60809984 0.15751237 0.7780774 ]\n", + " [0.58420772 0.1785014 0.79173139]\n", + " [0.55906068 0.19973121 0.80471026]\n", + " [0.53276419 0.22106434 0.81687996]\n", + " [0.50543952 0.24236569 0.82812424]\n", + " [0.47722628 0.26350143 0.83834484]\n", + " [0.53665388 0.41463789 0.73490001]\n", + " [0.52551415 0.38967953 0.75629673]\n", + " [0.51347447 0.3637038 0.77721523]\n", + " [0.50056868 0.33683495 0.79747929]\n", + " [0.48684408 0.30920926 0.81692869]\n", + " [0.47236291 0.28097678 0.83541926]\n", + " [0.68245825 0.30150671 0.66584115]\n", + " [0.68245825 0.30150671 0.66584115]\n", + " [0.46708505 0.2708972 0.8416925 ]\n", + " [0.46708505 0.2708972 0.8416925 ]\n", + " [0.67176316 0.30040607 0.67711923]\n", + " [0.6491528 0.32211773 0.68908694]\n", + " [0.62520088 0.34381557 0.70065307]\n", + " [0.60001999 0.36535614 0.71168174]\n", + " [0.57373354 0.38660109 0.72205915]\n", + " [0.54647777 0.40741714 0.73169209]\n", + " [0.66221103 0.2750531 0.69700957]\n", + " [0.63928789 0.29674345 0.7094042 ]\n", + " [0.61503275 0.31846375 0.72132903]\n", + " [0.58955566 0.34007094 0.7326499 ]\n", + " [0.56297846 0.36142621 0.74325389]\n", + " [0.53543729 0.38239503 0.75304777]\n", + " [0.65153481 0.24893109 0.71661405]\n", + " [0.62833455 0.27054831 0.72938282]\n", + " [0.60381431 0.29224133 0.74162206]\n", + " [0.57808186 0.31386785 0.75319874]\n", + " [0.55125794 0.335289 0.76399998]\n", + " [0.52347908 0.35636932 0.77393188]\n", + " [0.63977167 0.22217183 0.7357526 ]\n", + " [0.61632782 0.24366315 0.74884464]\n", + " [0.59157891 0.26527786 0.7613554 ]\n", + " [0.56563104 0.28687485 0.77315222]\n", + " [0.53860448 0.30831573 0.78412156]\n", + " [0.5106365 0.32946473 0.79416834]\n", + " [0.62696888 0.19491529 0.75426657]\n", + " [0.60331336 0.21622794 0.76763173]\n", + " [0.57837125 0.23771303 0.7803712 ]\n", + " [0.55224779 0.25923095 0.792352 ]\n", + " [0.52506338 0.28064441 0.8034595 ]\n", + " [0.49695626 0.301818 0.81359718]\n", + " [0.61318567 0.16731003 0.77201729]\n", + " [0.58934973 0.18839235 0.785605 ]\n", + " [0.56424982 0.20969741 0.79852936]\n", + " [0.53799119 0.23108722 0.81065663]\n", + " [0.51069484 0.25242603 0.82187096]\n", + " [0.48250004 0.27357952 0.83207449]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:fp_optics: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:cartToSphere: vec: [[-0.20514111 0.4124279 -0.88759245]\n", + " [-0.2321989 0.41340644 -0.88044238]\n", + " [-0.25960889 0.41407137 -0.87243803]\n", + " [-0.28725156 0.41440179 -0.86357264]\n", + " [-0.31500933 0.41438106 -0.85384862]\n", + " [-0.34276555 0.41399697 -0.8432783 ]\n", + " [-0.37040447 0.41324192 -0.83188439]\n", + " [-0.39781213 0.4121131 -0.81970013]\n", + " [-0.20514111 0.4124279 -0.88759245]\n", + " [-0.20907771 0.38584709 -0.89855914]\n", + " [-0.21292237 0.35903268 -0.90871315]\n", + " [-0.21666531 0.3320942 -0.91802483]\n", + " [-0.2203009 0.30514479 -0.92647405]\n", + " [-0.2238282 0.27830131 -0.93404995]\n", + " [-0.22725152 0.25168498 -0.94075046]\n", + " [-0.23058098 0.22542257 -0.94658178]\n", + " [-0.39781213 0.4121131 -0.81970013]\n", + " [-0.40173182 0.38460725 -0.8310769 ]\n", + " [-0.40528076 0.3568452 -0.84167037]\n", + " [-0.40845015 0.32894128 -0.85144942]\n", + " [-0.4112361 0.30101187 -0.86039336]\n", + " [-0.41363956 0.27317443 -0.86849182]\n", + " [-0.41566617 0.24554739 -0.87574432]\n", + " [-0.41732597 0.21825097 -0.88215959]\n", + " [-0.23058098 0.22542257 -0.94658178]\n", + " [-0.25681453 0.2245998 -0.94000065]\n", + " [-0.28339854 0.22373635 -0.9325381 ]\n", + " [-0.31020678 0.22281058 -0.92419002]\n", + " [-0.33711848 0.22180696 -0.91496055]\n", + " [-0.36401703 0.22071535 -0.9048626 ]\n", + " [-0.39078939 0.21953041 -0.89391837]\n", + " [-0.41732597 0.21825097 -0.88215959]\n", + " [-0.21690096 0.41280085 -0.88461824]\n", + " [-0.25031524 0.41379121 -0.8752823 ]\n", + " [-0.28413943 0.41428946 -0.86465544]\n", + " [-0.3181564 0.41426319 -0.85273825]\n", + " [-0.35215137 0.41368995 -0.83955348]\n", + " [-0.38591194 0.41255773 -0.82514732]\n", + " [-0.20695983 0.40087762 -0.89244874]\n", + " [-0.21172412 0.36812846 -0.90534763]\n", + " [-0.21633994 0.3351368 -0.91699529]\n", + " [-0.2207952 0.30210948 -0.92735071]\n", + " [-0.22508822 0.26926171 -0.93639384]\n", + " [-0.22922932 0.23681885 -0.94412433]\n", + " [-0.39947275 0.40016365 -0.82479729]\n", + " [-0.40402893 0.36626599 -0.83821826]\n", + " [-0.40801913 0.33209681 -0.85043054]\n", + " [-0.41143413 0.29786958 -0.8613917 ]\n", + " [-0.41427569 0.26380055 -0.87108262]\n", + " [-0.416556 0.23010837 -0.87950625]\n", + " [-0.24195663 0.22515669 -0.9438016 ]\n", + " [-0.27436159 0.22412516 -0.93514364]\n", + " [-0.30716685 0.22301011 -0.92515675]\n", + " [-0.34014787 0.22178043 -0.9138451 ]\n", + " [-0.37308994 0.22041742 -0.90123252]\n", + " [-0.40578635 0.21891298 -0.88736382]\n", + " [-0.2052465 0.41234137 -0.88760829]\n", + " [-0.2052465 0.41234137 -0.88760829]\n", + " [-0.41723068 0.21834815 -0.88218062]\n", + " [-0.41723068 0.21834815 -0.88218062]\n", + " [-0.21861891 0.40129168 -0.8894778 ]\n", + " [-0.22337755 0.36841015 -0.90242807]\n", + " [-0.22795986 0.33528125 -0.91412296]\n", + " [-0.23235338 0.30211211 -0.9245216 ]\n", + " [-0.23655584 0.26911764 -0.93360432]\n", + " [-0.24057685 0.23652221 -0.94137135]\n", + " [-0.25204423 0.40216774 -0.88019022]\n", + " [-0.25678219 0.36895364 -0.8932727 ]\n", + " [-0.26126662 0.33548093 -0.90509243]\n", + " [-0.26548451 0.30195801 -0.91560873]\n", + " [-0.2694327 0.2685995 -0.92480286]\n", + " [-0.27311932 0.2356274 -0.93267656]\n", + " [-0.28587637 0.40257335 -0.86960301]\n", + " [-0.29058598 0.36909036 -0.88279788]\n", + " [-0.29496689 0.33534094 -0.89472956]\n", + " [-0.29900623 0.30153512 -0.9053573 ]\n", + " [-0.30270094 0.2678878 -0.91466293]\n", + " [-0.30605878 0.23461937 -0.92264932]\n", + " [-0.31989807 0.40247676 -0.85771655]\n", + " [-0.32457123 0.36879026 -0.87100359]\n", + " [-0.32884225 0.33483259 -0.88303449]\n", + " [-0.332699 0.30081533 -0.89376815]\n", + " [-0.33613934 0.26695393 -0.90318655]\n", + " [-0.33917167 0.23346782 -0.91129323]\n", + " [-0.35389448 0.40185616 -0.84455333]\n", + " [-0.3585231 0.36803337 -0.85791178]\n", + " [-0.36267815 0.33393748 -0.87002892]\n", + " [-0.3663486 0.29978126 -0.88086315]\n", + " [-0.3695338 0.26578067 -0.89039621]\n", + " [-0.37224355 0.23215466 -0.89863171]\n", + " [-0.38765319 0.40070005 -0.8301593 ]\n", + " [-0.39222955 0.36680967 -0.84356781]\n", + " [-0.39626348 0.33264691 -0.85575773]\n", + " [-0.39974528 0.29842516 -0.86668687]\n", + " [-0.40267607 0.26436066 -0.87633637]\n", + " [-0.40506738 0.23067211 -0.88470944]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:fp_optics: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:cartToSphere: vec: [[ 5.14343961e-01 -1.58042785e-02 8.57438344e-01]\n", + " [ 5.02195512e-01 -3.90381243e-02 8.63872498e-01]\n", + " [ 4.89299643e-01 -6.26466402e-02 8.69862781e-01]\n", + " [ 4.75703949e-01 -8.65336740e-02 8.75338607e-01]\n", + " [ 4.61456967e-01 -1.10604020e-01 8.80241000e-01]\n", + " [ 4.46609264e-01 -1.34762714e-01 8.84522005e-01]\n", + " [ 4.31214370e-01 -1.58914784e-01 8.88144278e-01]\n", + " [ 4.15329351e-01 -1.82965438e-01 8.91080905e-01]\n", + " [ 5.14343961e-01 -1.58042785e-02 8.57438344e-01]\n", + " [ 4.95693629e-01 1.64005516e-04 8.68497438e-01]\n", + " [ 4.76187788e-01 1.63510379e-02 8.79191580e-01]\n", + " [ 4.55899486e-01 3.26995370e-02 8.89430379e-01]\n", + " [ 4.34902592e-01 4.91508657e-02 8.99135100e-01]\n", + " [ 4.13273114e-01 6.56447985e-02 9.08237906e-01]\n", + " [ 3.91090233e-01 8.21196355e-02 9.16681403e-01]\n", + " [ 3.68436859e-01 9.85125764e-02 9.24418495e-01]\n", + " [ 4.15329351e-01 -1.82965438e-01 8.91080905e-01]\n", + " [ 3.95103934e-01 -1.67997251e-01 9.03144399e-01]\n", + " [ 3.74143938e-01 -1.52588796e-01 9.14731093e-01]\n", + " [ 3.52515770e-01 -1.36794107e-01 9.25753749e-01]\n", + " [ 3.30289909e-01 -1.20669055e-01 9.36134368e-01]\n", + " [ 3.07542116e-01 -1.04272155e-01 9.45803978e-01]\n", + " [ 2.84353833e-01 -8.76647677e-02 9.54702983e-01]\n", + " [ 2.60811879e-01 -7.09108090e-02 9.62781814e-01]\n", + " [ 3.68436859e-01 9.85125764e-02 9.24418495e-01]\n", + " [ 3.54529950e-01 7.53950640e-02 9.32000053e-01]\n", + " [ 3.40055804e-01 5.17618017e-02 9.38979641e-01]\n", + " [ 3.25056992e-01 2.77033740e-02 9.45288567e-01]\n", + " [ 3.09579872e-01 3.31166093e-03 9.50867675e-01]\n", + " [ 2.93675380e-01 -2.13191948e-02 9.55667444e-01]\n", + " [ 2.77399269e-01 -4.60927329e-02 9.59648428e-01]\n", + " [ 2.60811879e-01 -7.09108090e-02 9.62781814e-01]\n", + " [ 5.09079426e-01 -2.58280008e-02 8.60331943e-01]\n", + " [ 4.93680384e-01 -5.45680560e-02 8.67929724e-01]\n", + " [ 4.77206031e-01 -8.37752941e-02 8.74789177e-01]\n", + " [ 4.59745274e-01 -1.13274103e-01 8.80796946e-01]\n", + " [ 4.41391309e-01 -1.42889627e-01 8.85864700e-01]\n", + " [ 4.22244137e-01 -1.72447078e-01 8.89928027e-01]\n", + " [ 5.06281532e-01 -8.95139764e-03 8.62321798e-01]\n", + " [ 4.82837826e-01 1.07733653e-02 8.75643517e-01]\n", + " [ 4.58181726e-01 3.07700735e-02 8.88325790e-01]\n", + " [ 4.32448812e-01 5.09313653e-02 9.00218874e-01]\n", + " [ 4.05779127e-01 7.11463794e-02 9.11197834e-01]\n", + " [ 3.78319980e-01 9.13010444e-02 9.21161284e-01]\n", + " [ 4.06660769e-01 -1.76414515e-01 8.96384369e-01]\n", + " [ 3.81370828e-01 -1.57765830e-01 9.10860162e-01]\n", + " [ 3.55043041e-01 -1.38509546e-01 9.24532068e-01]\n", + " [ 3.27805372e-01 -1.18747700e-01 9.37252699e-01]\n", + " [ 2.99797338e-01 -9.85880412e-02 9.48895123e-01]\n", + " [ 2.71171137e-01 -7.81446269e-02 9.59353757e-01]\n", + " [ 3.62524232e-01 8.84464178e-02 9.27767973e-01]\n", + " [ 3.45094031e-01 5.97548216e-02 9.36664012e-01]\n", + " [ 3.26853613e-01 3.03785997e-02 9.44586606e-01]\n", + " [ 3.07886686e-01 4.86280490e-04 9.51422909e-01]\n", + " [ 2.88287044e-01 -2.97488155e-02 9.57081809e-01]\n", + " [ 2.68159253e-01 -6.01483585e-02 9.61495081e-01]\n", + " [ 5.14241505e-01 -1.58288132e-02 8.57499343e-01]\n", + " [ 5.14241505e-01 -1.58288132e-02 8.57499343e-01]\n", + " [ 2.60950065e-01 -7.08834444e-02 9.62746384e-01]\n", + " [ 2.60950065e-01 -7.08834444e-02 9.62746384e-01]\n", + " [ 5.01061890e-01 -1.89669312e-02 8.65203582e-01]\n", + " [ 4.77462899e-01 7.26282489e-04 8.78651611e-01]\n", + " [ 4.52661796e-01 2.07133214e-02 8.91441673e-01]\n", + " [ 4.26792808e-01 4.08867262e-02 9.03424692e-01]\n", + " [ 3.99995192e-01 6.11353330e-02 9.14475980e-01]\n", + " [ 3.72416101e-01 8.13446105e-02 9.24494079e-01]\n", + " [ 4.85511304e-01 -4.77615219e-02 8.72924745e-01]\n", + " [ 4.61504651e-01 -2.81816163e-02 8.86690055e-01]\n", + " [ 4.36324458e-01 -8.24665653e-03 8.99751610e-01]\n", + " [ 4.10101590e-01 1.19359204e-02 9.11961743e-01]\n", + " [ 3.82973736e-01 3.22544234e-02 9.23195954e-01]\n", + " [ 3.55088171e-01 5.25932815e-02 9.33352204e-01]\n", + " [ 4.68901342e-01 -7.70360351e-02 8.79884640e-01]\n", + " [ 4.44531653e-01 -5.76065343e-02 8.93908886e-01]\n", + " [ 4.19016804e-01 -3.77618934e-02 9.07192900e-01]\n", + " [ 3.92485331e-01 -1.76089765e-02 9.19589685e-01]\n", + " [ 3.65074324e-01 2.74058228e-03 9.30974343e-01]\n", + " [ 3.36931859e-01 2.31706758e-02 9.41243880e-01]\n", + " [ 4.51319652e-01 -1.06615283e-01 8.85970515e-01]\n", + " [ 4.26628496e-01 -8.73744873e-02 9.00196548e-01]\n", + " [ 4.00821476e-01 -6.76596267e-02 9.13654376e-01]\n", + " [ 3.74025920e-01 -4.75764602e-02 9.26197113e-01]\n", + " [ 3.46379125e-01 -2.72359746e-02 9.37699154e-01]\n", + " [ 3.18030379e-01 -6.75425672e-03 9.48056463e-01]\n", + " [ 4.32858634e-01 -1.36324371e-01 8.91094310e-01]\n", + " [ 4.07886006e-01 -1.17310433e-01 9.05465222e-01]\n", + " [ 3.81828782e-01 -9.77647460e-02 9.19047787e-01]\n", + " [ 3.54814067e-01 -7.77915780e-02 9.31694933e-01]\n", + " [ 3.26979924e-01 -5.75007657e-02 9.43280335e-01]\n", + " [ 2.98476970e-01 -3.70078397e-02 9.53699071e-01]\n", + " [ 4.13618018e-01 -1.65988081e-01 8.95191651e-01]\n", + " [ 3.88403731e-01 -1.47237867e-01 9.09650236e-01]\n", + " [ 3.62138855e-01 -1.27899589e-01 9.23307720e-01]\n", + " [ 3.34951030e-01 -1.08075854e-01 9.36016782e-01]\n", + " [ 3.06979376e-01 -8.78749953e-02 9.47650594e-01]\n", + " [ 2.78375722e-01 -6.74115215e-02 9.58103671e-01]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:fp_optics: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:cartToSphere: vec: [[ 0.67887697 0.69274436 -0.24337484]\n", + " [ 0.66771665 0.69410315 -0.26902657]\n", + " [ 0.65579409 0.69492886 -0.29497116]\n", + " [ 0.64312752 0.6951877 -0.32109354]\n", + " [ 0.62974187 0.69485298 -0.34728159]\n", + " [ 0.61566986 0.6939054 -0.37342457]\n", + " [ 0.60095259 0.69233335 -0.39941272]\n", + " [ 0.58563968 0.69013329 -0.42513787]\n", + " [ 0.67887697 0.69274436 -0.24337484]\n", + " [ 0.69663602 0.67159542 -0.25230505]\n", + " [ 0.71371504 0.64995777 -0.2610857 ]\n", + " [ 0.73005452 0.62792412 -0.26968815]\n", + " [ 0.74560216 0.60559413 -0.27808843]\n", + " [ 0.76031247 0.5830744 -0.28626769]\n", + " [ 0.77414618 0.56047896 -0.29421256]\n", + " [ 0.78706967 0.53792989 -0.30191518]\n", + " [ 0.58563968 0.69013329 -0.42513787]\n", + " [ 0.60406817 0.66824101 -0.4342299 ]\n", + " [ 0.62189301 0.64582079 -0.44290472]\n", + " [ 0.63905155 0.62296992 -0.45113367]\n", + " [ 0.65549004 0.59979088 -0.458894 ]\n", + " [ 0.67116358 0.5763905 -0.4661689 ]\n", + " [ 0.68603553 0.55288004 -0.47294706]\n", + " [ 0.70007629 0.52937631 -0.47922219]\n", + " [ 0.78706967 0.53792989 -0.30191518]\n", + " [ 0.77711517 0.53769116 -0.32707832]\n", + " [ 0.7662906 0.53716742 -0.35249097]\n", + " [ 0.75461753 0.53632469 -0.37803202]\n", + " [ 0.74212303 0.53513755 -0.40358544]\n", + " [ 0.72884025 0.53358879 -0.4290395 ]\n", + " [ 0.71480901 0.53166904 -0.45428638]\n", + " [ 0.70007629 0.52937631 -0.47922219]\n", + " [ 0.67416773 0.6933282 -0.2545464 ]\n", + " [ 0.65997566 0.69463898 -0.28619717]\n", + " [ 0.64465598 0.69511481 -0.31817302]\n", + " [ 0.62825177 0.69470365 -0.35026639]\n", + " [ 0.61082332 0.69336998 -0.38227338]\n", + " [ 0.59244983 0.69109578 -0.41399253]\n", + " [ 0.68666289 0.68359429 -0.24737201]\n", + " [ 0.70797963 0.65733333 -0.25822031]\n", + " [ 0.72821502 0.6304296 -0.26881481]\n", + " [ 0.74726976 0.6030637 -0.27910942]\n", + " [ 0.76506006 0.57543195 -0.28906948]\n", + " [ 0.781516 0.54774755 -0.29867266]\n", + " [ 0.59379773 0.68066766 -0.42906386]\n", + " [ 0.61598595 0.65346953 -0.43993054]\n", + " [ 0.63720416 0.62557445 -0.45014161]\n", + " [ 0.65734967 0.59716897 -0.45965273]\n", + " [ 0.67633978 0.56844978 -0.46843286]\n", + " [ 0.69411003 0.53962392 -0.47646332]\n", + " [ 0.78279472 0.53793563 -0.31282214]\n", + " [ 0.77000611 0.5374572 -0.3438464 ]\n", + " [ 0.7559315 0.53651576 -0.37512453]\n", + " [ 0.74061842 0.53506094 -0.40644082]\n", + " [ 0.72412796 0.53306104 -0.43758957]\n", + " [ 0.70653639 0.53050187 -0.46837388]\n", + " [ 0.67890194 0.69267848 -0.24349268]\n", + " [ 0.67890194 0.69267848 -0.24349268]\n", + " [ 0.70008124 0.529465 -0.47911696]\n", + " [ 0.70008124 0.529465 -0.47911696]\n", + " [ 0.68195968 0.6842078 -0.25843891]\n", + " [ 0.70336562 0.65783804 -0.26930638]\n", + " [ 0.72369205 0.63081678 -0.27989286]\n", + " [ 0.74283983 0.60332487 -0.29015184]\n", + " [ 0.76072568 0.57555842 -0.30004824]\n", + " [ 0.77728042 0.54772999 -0.30955936]\n", + " [ 0.66784596 0.68542746 -0.29012234]\n", + " [ 0.68947989 0.65878462 -0.30103207]\n", + " [ 0.71004248 0.6314697 -0.31158577]\n", + " [ 0.72943467 0.60366464 -0.32173601]\n", + " [ 0.74757448 0.57556525 -0.3314469 ]\n", + " [ 0.76439485 0.54738231 -0.34069504]\n", + " [ 0.65259047 0.68582941 -0.32212374]\n", + " [ 0.67441577 0.65896615 -0.33305702]\n", + " [ 0.69518284 0.63141608 -0.34356157]\n", + " [ 0.71479225 0.60336257 -0.35358966]\n", + " [ 0.73316282 0.57500155 -0.36310536]\n", + " [ 0.75022929 0.54654236 -0.3720853 ]\n", + " [ 0.63623589 0.68536211 -0.35423533]\n", + " [ 0.65821526 0.65833254 -0.36517248]\n", + " [ 0.67915524 0.63060695 -0.37561022]\n", + " [ 0.69895563 0.60237018 -0.38550122]\n", + " [ 0.71753543 0.57381852 -0.39481035]\n", + " [ 0.73483055 0.54516023 -0.40351505]\n", + " [ 0.61884201 0.68399066 -0.38625296]\n", + " [ 0.64093705 0.65685058 -0.39717378]\n", + " [ 0.6620178 0.62901062 -0.40752676]\n", + " [ 0.68198306 0.60065675 -0.41726558]\n", + " [ 0.70075142 0.57198557 -0.42635661]\n", + " [ 0.71825913 0.54320464 -0.43477873]\n", + " [ 0.60048761 0.68169753 -0.417975 ]\n", + " [ 0.62265867 0.6545043 -0.4288593 ]\n", + " [ 0.64384705 0.62661245 -0.43911026]\n", + " [ 0.66395042 0.59820852 -0.44868296]\n", + " [ 0.68288648 0.56948923 -0.45754569]\n", + " [ 0.70059108 0.54066172 -0.46567912]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:cartToSphere: vec: [[-0.35715165 0.14347218 0.92296177]\n", + " [-0.364698 0.16836736 0.91577716]\n", + " [-0.37198716 0.19371215 0.90780018]\n", + " [-0.37898657 0.21938325 0.89902179]\n", + " [-0.38566508 0.24526265 0.88944291]\n", + " [-0.39199305 0.27123678 0.87907454]\n", + " [-0.39794271 0.29719581 0.86793793]\n", + " [-0.40348864 0.3230333 0.85606449]\n", + " [-0.35715165 0.14347218 0.92296177]\n", + " [-0.33241972 0.15035874 0.93106894]\n", + " [-0.30693427 0.15743164 0.93861953]\n", + " [-0.28078911 0.16463729 0.94554325]\n", + " [-0.25407974 0.17192766 0.95177958]\n", + " [-0.22690412 0.17925987 0.95727761]\n", + " [-0.1993632 0.18659539 0.96199609]\n", + " [-0.17156107 0.19389954 0.9659036 ]\n", + " [-0.40348864 0.3230333 0.85606449]\n", + " [-0.37831393 0.33199354 0.86409424]\n", + " [-0.35231891 0.3408741 0.87159407]\n", + " [-0.32559076 0.34962414 0.87849509]\n", + " [-0.2982199 0.35819651 0.88473733]\n", + " [-0.27030199 0.36654724 0.8902696 ]\n", + " [-0.24193887 0.37463537 0.89504968]\n", + " [-0.21323842 0.3824233 0.89904493]\n", + " [-0.17156107 0.19389954 0.9659036 ]\n", + " [-0.17774681 0.22036022 0.95908678]\n", + " [-0.1839056 0.2471692 0.95136014]\n", + " [-0.19000569 0.27421003 0.94271242]\n", + " [-0.19601697 0.30136872 0.93314213]\n", + " [-0.20191075 0.32853214 0.92265849]\n", + " [-0.20765976 0.35558758 0.91128201]\n", + " [-0.21323842 0.3824233 0.89904493]\n", + " [-0.36038794 0.15428689 0.9199544 ]\n", + " [-0.36946738 0.18511822 0.91061798]\n", + " [-0.37812814 0.21650166 0.90008118]\n", + " [-0.38631231 0.24821782 0.88834155]\n", + " [-0.39396536 0.28005754 0.87541937]\n", + " [-0.4010371 0.31182001 0.86135796]\n", + " [-0.34649299 0.14653295 0.92653694]\n", + " [-0.31566225 0.15510697 0.93610853]\n", + " [-0.28379268 0.16390679 0.94477314]\n", + " [-0.25105935 0.17284173 0.95241532]\n", + " [-0.21764266 0.18183271 0.95894136]\n", + " [-0.18372977 0.19081046 0.96427939]\n", + " [-0.39260043 0.32685797 0.85966783]\n", + " [-0.36118356 0.3377918 0.86916232]\n", + " [-0.32862095 0.34855514 0.87779131]\n", + " [-0.29507763 0.35905973 0.88544074]\n", + " [-0.2607298 0.36922457 0.89201636]\n", + " [-0.2257675 0.37897567 0.89744441]\n", + " [-0.17435504 0.20536103 0.9630302 ]\n", + " [-0.1819232 0.2380401 0.95406544]\n", + " [-0.18941895 0.27112627 0.94372189]\n", + " [-0.1967862 0.3044088 0.93199274]\n", + " [-0.20397211 0.33767939 0.91889499]\n", + " [-0.21092718 0.37073086 0.90447131]\n", + " [-0.35709467 0.14357957 0.92296712]\n", + " [-0.35709467 0.14357957 0.92296712]\n", + " [-0.21331825 0.38230595 0.8990759 ]\n", + " [-0.21331825 0.38230595 0.8990759 ]\n", + " [-0.34975579 0.15730964 0.92353915]\n", + " [-0.31883383 0.16606041 0.93315 ]\n", + " [-0.28686523 0.17500818 0.9418495 ]\n", + " [-0.25402436 0.18406307 0.9495222 ]\n", + " [-0.22049126 0.19314672 0.95607424]\n", + " [-0.18645329 0.20219025 0.96143345]\n", + " [-0.35876291 0.1883282 0.91423283]\n", + " [-0.32762276 0.19755531 0.92392382]\n", + " [-0.29541428 0.20690111 0.93269627]\n", + " [-0.26230964 0.21627795 0.94043474]\n", + " [-0.22848795 0.22560894 0.94704481]\n", + " [-0.19413725 0.23482581 0.95245345]\n", + " [-0.36737194 0.21988584 0.90370796]\n", + " [-0.33607262 0.22955577 0.91343272]\n", + " [-0.30368409 0.23927112 0.92223929]\n", + " [-0.27037627 0.24894564 0.93001223]\n", + " [-0.23632745 0.258503 0.93665657]\n", + " [-0.20172647 0.26787461 0.94209852]\n", + " [-0.37552456 0.25176409 0.89196196]\n", + " [-0.34412406 0.26184612 0.90167358]\n", + " [-0.31161482 0.27190485 0.91047458]\n", + " [-0.27816473 0.28185447 0.91824966]\n", + " [-0.24395133 0.29161808 0.92490359]\n", + " [-0.20916423 0.30112597 0.93036201]\n", + " [-0.38316572 0.28375435 0.87901507]\n", + " [-0.35172078 0.29421892 0.88866626]\n", + " [-0.3191496 0.30459543 0.8974214 ]\n", + " [-0.28561842 0.31479748 0.90516554]\n", + " [-0.25130418 0.32474674 0.91180358]\n", + " [-0.21639692 0.33437183 0.91726106]\n", + " [-0.39024469 0.3156558 0.86491069]\n", + " [-0.35881084 0.32647276 0.8744543 ]\n", + " [-0.32623583 0.33714023 0.88312323]\n", + " [-0.29268488 0.3475705 0.89080318]\n", + " [-0.25833437 0.35768329 0.89739959]\n", + " [-0.2233744 0.36740528 0.90283843]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:fp_optics: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:fp_optics: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:cartToSphere: vec: [[-4.84920417e-02 9.52703873e-01 3.00006421e-01]\n", + " [-4.83676548e-02 9.60752593e-01 2.73157509e-01]\n", + " [-4.82023400e-02 9.68183551e-01 2.45554773e-01]\n", + " [-4.79945787e-02 9.74924612e-01 2.17298230e-01]\n", + " [-4.77433710e-02 9.80914191e-01 1.88488513e-01]\n", + " [-4.74482542e-02 9.86100740e-01 1.59229372e-01]\n", + " [-4.71093300e-02 9.90442737e-01 1.29629838e-01]\n", + " [-4.67272871e-02 9.93909234e-01 9.98047871e-02]\n", + " [-4.84920417e-02 9.52703873e-01 3.00006421e-01]\n", + " [-1.94698632e-02 9.53631439e-01 3.00346473e-01]\n", + " [ 9.47657102e-03 9.53785336e-01 3.00339354e-01]\n", + " [ 3.82337826e-02 9.53177191e-01 2.99985701e-01]\n", + " [ 6.66886125e-02 9.51829569e-01 2.99287655e-01]\n", + " [ 9.47285197e-02 9.49775841e-01 2.98248822e-01]\n", + " [ 1.22242296e-01 9.47059772e-01 2.96874737e-01]\n", + " [ 1.49121984e-01 9.43734548e-01 2.95174080e-01]\n", + " [-4.67272871e-02 9.93909234e-01 9.98047871e-02]\n", + " [-1.67098465e-02 9.94816932e-01 1.00299814e-01]\n", + " [ 1.32249663e-02 9.94828842e-01 1.00700917e-01]\n", + " [ 4.29585540e-02 9.93957734e-01 1.01007848e-01]\n", + " [ 7.23765064e-02 9.92227715e-01 1.01221549e-01]\n", + " [ 1.01368384e-01 9.89673601e-01 1.01344040e-01]\n", + " [ 1.29825742e-01 9.86340569e-01 1.01378298e-01]\n", + " [ 1.57639541e-01 9.82284260e-01 1.01328219e-01]\n", + " [ 1.49121984e-01 9.43734548e-01 2.95174080e-01]\n", + " [ 1.50996038e-01 9.51176697e-01 2.69189687e-01]\n", + " [ 1.52655254e-01 9.58074638e-01 2.42465177e-01]\n", + " [ 1.54096019e-01 9.64358213e-01 2.15099171e-01]\n", + " [ 1.55316441e-01 9.69966392e-01 1.87195091e-01]\n", + " [ 1.56314991e-01 9.74848380e-01 1.58859243e-01]\n", + " [ 1.57089968e-01 9.78964079e-01 1.30200132e-01]\n", + " [ 1.57639541e-01 9.82284260e-01 1.01328219e-01]\n", + " [-4.83430843e-02 9.56288539e-01 2.88401070e-01]\n", + " [-4.81623527e-02 9.65747335e-01 2.54975437e-01]\n", + " [-4.79187649e-02 9.74205359e-01 2.20516917e-01]\n", + " [-4.76102687e-02 9.81544881e-01 1.85210445e-01]\n", + " [-4.72360222e-02 9.87671002e-01 1.49247281e-01]\n", + " [-4.67964634e-02 9.92511632e-01 1.12830627e-01]\n", + " [-3.58354617e-02 9.53232207e-01 3.00106947e-01]\n", + " [-3.01417530e-04 9.53847779e-01 3.00290397e-01]\n", + " [ 3.50060584e-02 9.53311478e-01 2.99952999e-01]\n", + " [ 6.98784961e-02 9.51660303e-01 2.99098083e-01]\n", + " [ 1.04108784e-01 9.48955645e-01 2.97732339e-01]\n", + " [ 1.37493371e-01 9.45282073e-01 2.95867159e-01]\n", + " [-3.36385306e-02 9.94405132e-01 1.00134326e-01]\n", + " [ 3.11036072e-03 9.94914222e-01 1.00677782e-01]\n", + " [ 3.96168989e-02 9.94089242e-01 1.01079574e-01]\n", + " [ 7.56686490e-02 9.91969892e-01 1.01340957e-01]\n", + " [ 1.11062058e-01 9.88620222e-01 1.01465639e-01]\n", + " [ 1.45597324e-01 9.84127731e-01 1.01459486e-01]\n", + " [ 1.49874040e-01 9.47054069e-01 2.83947818e-01]\n", + " [ 1.52026085e-01 9.55819159e-01 2.51590550e-01]\n", + " [ 1.53851726e-01 9.63696101e-01 2.18218861e-01]\n", + " [ 1.55346875e-01 9.70568648e-01 1.84021325e-01]\n", + " [ 1.56508659e-01 9.76343339e-01 1.49193579e-01]\n", + " [ 1.57333879e-01 9.80950861e-01 1.13936201e-01]\n", + " [-4.83924351e-02 9.52736852e-01 2.99917759e-01]\n", + " [-4.83924351e-02 9.52736852e-01 2.99917759e-01]\n", + " [ 1.57544156e-01 9.82289316e-01 1.01427499e-01]\n", + " [ 1.57544156e-01 9.82289316e-01 1.01427499e-01]\n", + " [-3.57368688e-02 9.56784768e-01 2.88592766e-01]\n", + " [-6.32553059e-05 9.57390059e-01 2.88797977e-01]\n", + " [ 3.53834722e-02 9.56824619e-01 2.88504173e-01]\n", + " [ 7.03945425e-02 9.55125519e-01 2.87714878e-01]\n", + " [ 1.04762494e-01 9.52354410e-01 2.86436551e-01]\n", + " [ 1.38282578e-01 9.48596628e-01 2.84679410e-01]\n", + " [-3.54323824e-02 9.66245714e-01 2.55173991e-01]\n", + " [ 5.91607517e-04 9.66824598e-01 2.55440495e-01]\n", + " [ 3.63869439e-02 9.66184747e-01 2.55270494e-01]\n", + " [ 7.17441836e-02 9.64363376e-01 2.54668511e-01]\n", + " [ 1.06455961e-01 9.61422486e-01 2.53641345e-01]\n", + " [ 1.40316274e-01 9.57448562e-01 2.52197531e-01]\n", + " [-3.50884393e-02 9.74705388e-01 2.20722017e-01]\n", + " [ 1.21905467e-03 9.75261734e-01 2.21049915e-01]\n", + " [ 3.72948287e-02 9.74559308e-01 2.21005092e-01]\n", + " [ 7.29287008e-02 9.72635675e-01 2.20592945e-01]\n", + " [ 1.07914299e-01 9.69553105e-01 2.19821019e-01]\n", + " [ 1.42046594e-01 9.65398432e-01 2.18697582e-01]\n", + " [-3.47034835e-02 9.82046028e-01 1.85421864e-01]\n", + " [ 1.81943081e-03 9.82583576e-01 1.85812287e-01]\n", + " [ 3.81068041e-02 9.81830224e-01 1.85895891e-01]\n", + " [ 7.39475695e-02 9.79824175e-01 1.85678065e-01]\n", + " [ 1.09136558e-01 9.76628176e-01 1.85166459e-01]\n", + " [ 1.43470714e-01 9.72329225e-01 1.84369282e-01]\n", + " [-3.42775306e-02 9.88172716e-01 1.49464829e-01]\n", + " [ 2.39059158e-03 9.88695321e-01 1.49919469e-01]\n", + " [ 3.88195104e-02 9.87902963e-01 1.50135874e-01]\n", + " [ 7.47973310e-02 9.85834602e-01 1.50118277e-01]\n", + " [ 1.10119871e-01 9.82553617e-01 1.49873294e-01]\n", + " [ 1.44586018e-01 9.78147212e-01 1.49408553e-01]\n", + " [-3.38119240e-02 9.93013359e-01 1.13054070e-01]\n", + " [ 2.92891934e-03 9.93525192e-01 1.13574269e-01]\n", + " [ 3.94279561e-02 9.92706406e-01 1.13927296e-01]\n", + " [ 7.54728024e-02 9.90596568e-01 1.14115277e-01]\n", + " [ 1.10859832e-01 9.87259603e-01 1.14142782e-01]\n", + " [ 1.45389099e-01 9.82782943e-01 1.14016209e-01]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:fp_optics: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:cartToSphere: vec: [[ 1.89327867e-01 -8.54638995e-01 -4.83474039e-01]\n", + " [ 1.88735956e-01 -8.40592698e-01 -5.07723011e-01]\n", + " [ 1.87980242e-01 -8.25587345e-01 -5.32042257e-01]\n", + " [ 1.87055466e-01 -8.09647068e-01 -5.56310955e-01]\n", + " [ 1.85958294e-01 -7.92803495e-01 -5.80415481e-01]\n", + " [ 1.84687412e-01 -7.75097226e-01 -6.04247342e-01]\n", + " [ 1.83243670e-01 -7.56579388e-01 -6.27701670e-01]\n", + " [ 1.81630210e-01 -7.37312415e-01 -6.50677239e-01]\n", + " [ 1.89327867e-01 -8.54638995e-01 -4.83474039e-01]\n", + " [ 1.60741197e-01 -8.59300339e-01 -4.85556582e-01]\n", + " [ 1.32108870e-01 -8.63177438e-01 -4.87310944e-01]\n", + " [ 1.03544766e-01 -8.66263791e-01 -4.88738710e-01]\n", + " [ 7.51639589e-02 -8.68561413e-01 -4.89848396e-01]\n", + " [ 4.70824044e-02 -8.70080762e-01 -4.90655394e-01]\n", + " [ 1.94162053e-02 -8.70840882e-01 -4.91181401e-01]\n", + " [-7.72034538e-03 -8.70869890e-01 -4.91452980e-01]\n", + " [ 1.81630210e-01 -7.37312415e-01 -6.50677239e-01]\n", + " [ 1.52064577e-01 -7.42202792e-01 -6.52695473e-01]\n", + " [ 1.22458494e-01 -7.46409478e-01 -6.54122931e-01]\n", + " [ 9.29310028e-02 -7.49925433e-01 -6.54962345e-01]\n", + " [ 6.35985515e-02 -7.52752683e-01 -6.55224101e-01]\n", + " [ 3.45751146e-02 -7.54901779e-01 -6.54925848e-01]\n", + " [ 5.97409847e-03 -7.56391226e-01 -6.54092214e-01]\n", + " [-2.20890823e-02 -7.57247179e-01 -6.52754764e-01]\n", + " [-7.72034538e-03 -8.70869890e-01 -4.91452980e-01]\n", + " [-1.00743773e-02 -8.57270264e-01 -5.14768104e-01]\n", + " [-1.23286719e-02 -8.42737804e-01 -5.38183052e-01]\n", + " [-1.44832296e-02 -8.27296291e-01 -5.61579098e-01]\n", + " [-1.65382916e-02 -8.10979375e-01 -5.84840951e-01]\n", + " [-1.84929564e-02 -7.93829763e-01 -6.07858797e-01]\n", + " [-2.03446364e-02 -7.75898951e-01 -6.30529074e-01]\n", + " [-2.20890823e-02 -7.57247179e-01 -6.52754764e-01]\n", + " [ 1.88991580e-01 -8.48651264e-01 -4.94037665e-01]\n", + " [ 1.88155779e-01 -8.30788632e-01 -5.23820247e-01]\n", + " [ 1.87068685e-01 -8.11508620e-01 -5.53587451e-01]\n", + " [ 1.85723364e-01 -7.90866309e-01 -5.83127184e-01]\n", + " [ 1.84117421e-01 -7.68936626e-01 -6.12239528e-01]\n", + " [ 1.82253379e-01 -7.45818404e-01 -6.40732873e-01]\n", + " [ 1.76874671e-01 -8.56720708e-01 -4.84504881e-01]\n", + " [ 1.41792784e-01 -8.61907721e-01 -4.86836613e-01]\n", + " [ 1.06755338e-01 -8.65909381e-01 -4.88676010e-01]\n", + " [ 7.19736994e-02 -8.68725872e-01 -4.90035862e-01]\n", + " [ 3.76612661e-02 -8.70376458e-01 -4.90944447e-01]\n", + " [ 4.03120181e-03 -8.70899933e-01 -4.91443849e-01]\n", + " [ 1.68757959e-01 -7.39594937e-01 -6.51552055e-01]\n", + " [ 1.32480055e-01 -7.45130054e-01 -6.53628516e-01]\n", + " [ 9.62598928e-02 -7.49630104e-01 -6.54819624e-01]\n", + " [ 6.03129989e-02 -7.53095068e-01 -6.55141329e-01]\n", + " [ 2.48494264e-02 -7.55544306e-01 -6.54626083e-01]\n", + " [-9.92130321e-03 -7.57015064e-01 -6.53322095e-01]\n", + " [-8.66675266e-03 -8.65057163e-01 -5.01598436e-01]\n", + " [-1.14839051e-02 -8.47759333e-01 -5.30256762e-01]\n", + " [-1.41513043e-02 -8.29082748e-01 -5.58946812e-01]\n", + " [-1.66694064e-02 -8.09085331e-01 -5.87454728e-01]\n", + " [-1.90364944e-02 -7.87845676e-01 -6.15578430e-01]\n", + " [-2.12471000e-02 -7.65462219e-01 -6.43129965e-01]\n", + " [ 1.89228561e-01 -8.54609880e-01 -4.83564375e-01]\n", + " [ 1.89228561e-01 -8.54609880e-01 -4.83564375e-01]\n", + " [-2.19883899e-02 -7.57310232e-01 -6.52685010e-01]\n", + " [-2.19883899e-02 -7.57310232e-01 -6.52685010e-01]\n", + " [ 1.76589205e-01 -8.50770932e-01 -4.94979873e-01]\n", + " [ 1.41369058e-01 -8.55985023e-01 -4.97297125e-01]\n", + " [ 1.06192440e-01 -8.60016845e-01 -4.99093370e-01]\n", + " [ 7.12710371e-02 -8.62866729e-01 -5.00381302e-01]\n", + " [ 3.68186136e-02 -8.64553904e-01 -5.01189522e-01]\n", + " [ 3.04955197e-03 -8.65116669e-01 -5.01561411e-01]\n", + " [ 1.75631576e-01 -8.32930885e-01 -5.24766320e-01]\n", + " [ 1.40064638e-01 -8.38217391e-01 -5.27042220e-01]\n", + " [ 1.04540250e-01 -8.42334383e-01 -5.28719324e-01]\n", + " [ 6.92708396e-02 -8.45282927e-01 -5.29809706e-01]\n", + " [ 3.44701400e-02 -8.47082746e-01 -5.30341995e-01]\n", + " [ 3.53828352e-04 -8.47771530e-01 -5.30361487e-01]\n", + " [ 1.74445733e-01 -8.13669838e-01 -5.54535914e-01]\n", + " [ 1.38598707e-01 -8.19022717e-01 -5.56769421e-01]\n", + " [ 1.02795650e-01 -8.23224968e-01 -5.58331179e-01]\n", + " [ 6.72498154e-02 -8.26278435e-01 -5.59232876e-01]\n", + " [ 3.21740307e-02 -8.28203692e-01 -5.59502883e-01]\n", + " [-2.21695781e-03 -8.29038599e-01 -5.59186986e-01]\n", + " [ 1.73025234e-01 -7.93042850e-01 -5.84076455e-01]\n", + " [ 1.36966064e-01 -7.98456560e-01 -5.86265656e-01]\n", + " [ 1.00954180e-01 -8.02745308e-01 -5.87714407e-01]\n", + " [ 6.52037956e-02 -8.05911248e-01 -5.88434810e-01]\n", + " [ 2.99266157e-02 -8.07975510e-01 -5.88455583e-01]\n", + " [-4.66455096e-03 -8.08976279e-01 -5.87822781e-01]\n", + " [ 1.71368532e-01 -7.71124750e-01 -6.13187937e-01]\n", + " [ 1.35167314e-01 -7.76593957e-01 -6.15330499e-01]\n", + " [ 9.90177482e-02 -7.80971281e-01 -6.16667936e-01]\n", + " [ 6.31349000e-02 -7.84258439e-01 -6.17213646e-01]\n", + " [ 2.77295212e-02 -7.86476367e-01 -6.16997567e-01]\n", + " [-6.98750579e-03 -7.87663219e-01 -6.16066415e-01]\n", + " [ 1.69479042e-01 -7.48014216e-01 -6.41678726e-01]\n", + " [ 1.33208146e-01 -7.53533247e-01 -6.43772658e-01]\n", + " [ 9.69934575e-02 -7.58001089e-01 -6.45001254e-01]\n", + " [ 6.10504850e-02 -7.61418274e-01 -6.45379773e-01]\n", + " [ 2.55893859e-02 -7.63804692e-01 -6.44939978e-01]\n", + " [-9.18015268e-03 -7.65197914e-01 -6.43729662e-01]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:cartToSphere: vec: [[ 0.19872828 0.33699915 -0.92029269]\n", + " [ 0.22488068 0.32731002 -0.91776731]\n", + " [ 0.25137299 0.31716234 -0.91445047]\n", + " [ 0.27808968 0.30658226 -0.91031503]\n", + " [ 0.30491711 0.29559943 -0.90534332]\n", + " [ 0.3317425 0.2842476 -0.89952777]\n", + " [ 0.35845402 0.2725648 -0.89287129]\n", + " [ 0.38494149 0.26059322 -0.88538761]\n", + " [ 0.19872828 0.33699915 -0.92029269]\n", + " [ 0.20706823 0.36229709 -0.90877036]\n", + " [ 0.21530048 0.38717586 -0.89651579]\n", + " [ 0.22339801 0.41154158 -0.88358749]\n", + " [ 0.23133795 0.43530424 -0.87005343]\n", + " [ 0.23910208 0.4583774 -0.85599086]\n", + " [ 0.24667733 0.4806773 -0.84148656]\n", + " [ 0.25405607 0.50212165 -0.82663738]\n", + " [ 0.38494149 0.26059322 -0.88538761]\n", + " [ 0.39342136 0.28681403 -0.8734743 ]\n", + " [ 0.40152313 0.31269182 -0.86081531]\n", + " [ 0.40921993 0.33812824 -0.84747174]\n", + " [ 0.41649012 0.36303047 -0.83351356]\n", + " [ 0.42331733 0.38731175 -0.81901896]\n", + " [ 0.42969025 0.41089116 -0.80407384]\n", + " [ 0.43560229 0.43369265 -0.78877204]\n", + " [ 0.25405607 0.50212165 -0.82663738]\n", + " [ 0.27968506 0.49417545 -0.82314452]\n", + " [ 0.3056118 0.48556745 -0.81903949]\n", + " [ 0.3317144 0.47632717 -0.814296 ]\n", + " [ 0.35787601 0.46648524 -0.80889819]\n", + " [ 0.38398367 0.45607439 -0.80284039]\n", + " [ 0.40992781 0.4451304 -0.79612695]\n", + " [ 0.43560229 0.43369265 -0.78877204]\n", + " [ 0.21011028 0.33292005 -0.91924856]\n", + " [ 0.24240628 0.32073439 -0.91562473]\n", + " [ 0.27509769 0.30788545 -0.91078417]\n", + " [ 0.30797462 0.29442631 -0.90469043]\n", + " [ 0.34082947 0.28041912 -0.89732959]\n", + " [ 0.37345695 0.26593563 -0.88871151]\n", + " [ 0.2024647 0.34804255 -0.91535481]\n", + " [ 0.21261748 0.37877883 -0.90073326]\n", + " [ 0.22258099 0.40879181 -0.8850689 ]\n", + " [ 0.2323114 0.43791418 -0.86848292]\n", + " [ 0.24177523 0.46598669 -0.85111758]\n", + " [ 0.25095064 0.49285583 -0.83313679]\n", + " [ 0.38859324 0.27210264 -0.88031554]\n", + " [ 0.39873569 0.3040207 -0.86520591]\n", + " [ 0.40828315 0.33532517 -0.84903587]\n", + " [ 0.41719357 0.36584282 -0.83193062]\n", + " [ 0.42543679 0.3954139 -0.81403402]\n", + " [ 0.43299397 0.42389156 -0.79550749]\n", + " [ 0.26516119 0.49866811 -0.82523916]\n", + " [ 0.29678898 0.48847933 -0.82055119]\n", + " [ 0.32874229 0.47732588 -0.81491626]\n", + " [ 0.36080398 0.46526363 -0.80830084]\n", + " [ 0.39276604 0.45235296 -0.80069447]\n", + " [ 0.42442815 0.43866119 -0.79210928]\n", + " [ 0.19884567 0.33705395 -0.92024727]\n", + " [ 0.19884567 0.33705395 -0.92024727]\n", + " [ 0.43549564 0.43365599 -0.78885108]\n", + " [ 0.43549564 0.43365599 -0.78885108]\n", + " [ 0.21374149 0.34395246 -0.91433652]\n", + " [ 0.22391067 0.37481595 -0.89965383]\n", + " [ 0.23386348 0.40496039 -0.88392022]\n", + " [ 0.24355569 0.43421839 -0.86725718]\n", + " [ 0.25295333 0.46243128 -0.84980699]\n", + " [ 0.26203401 0.48944674 -0.83173317]\n", + " [ 0.24606763 0.33187728 -0.9106636 ]\n", + " [ 0.25627174 0.3630636 -0.89582901]\n", + " [ 0.26618438 0.39354406 -0.87992554]\n", + " [ 0.27576057 0.42315062 -0.8630757 ]\n", + " [ 0.28496557 0.45172562 -0.84542214]\n", + " [ 0.29377598 0.47911963 -0.8271276 ]\n", + " [ 0.27878249 0.31911836 -0.90578353]\n", + " [ 0.28900371 0.35057133 -0.89082916]\n", + " [ 0.29886027 0.38133406 -0.87479533]\n", + " [ 0.30830711 0.41123735 -0.85780567]\n", + " [ 0.31730957 0.44012374 -0.84000341]\n", + " [ 0.32584419 0.46784578 -0.82155091]\n", + " [ 0.31167597 0.30572821 -0.89966013]\n", + " [ 0.32189576 0.33739028 -0.88461908]\n", + " [ 0.33167945 0.36838084 -0.86849542]\n", + " [ 0.34098246 0.3985293 -0.85141374]\n", + " [ 0.34977096 0.42767781 -0.83351783]\n", + " [ 0.35802232 0.45567994 -0.81496982]\n", + " [ 0.3445403 0.29176834 -0.89227979]\n", + " [ 0.35473984 0.32358032 -0.87718608]\n", + " [ 0.36443389 0.35474301 -0.86101413]\n", + " [ 0.37357878 0.38508448 -0.84388911]\n", + " [ 0.38214206 0.41444613 -0.82595511]\n", + " [ 0.39010252 0.44268176 -0.80737407]\n", + " [ 0.37717008 0.27731 -0.88365259]\n", + " [ 0.38733067 0.30921125 -0.86854093]\n", + " [ 0.39691905 0.34048897 -0.85236291]\n", + " [ 0.40589272 0.37097022 -0.8352438 ]\n", + " [ 0.41422089 0.40049552 -0.81732759]\n", + " [ 0.42188411 0.42891829 -0.79877587]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:fp_optics: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:fp_optics: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:cartToSphere: vec: [[-0.87231318 -0.16289027 0.46101679]\n", + " [-0.88509591 -0.15191884 0.43991579]\n", + " [-0.89746759 -0.14047467 0.41811338]\n", + " [-0.90934098 -0.12860632 0.39567587]\n", + " [-0.92063657 -0.11636576 0.37267589]\n", + " [-0.9312839 -0.10380588 0.3491914 ]\n", + " [-0.94122216 -0.0909794 0.32530538]\n", + " [-0.95040044 -0.07793856 0.30110559]\n", + " [-0.87231318 -0.16289027 0.46101679]\n", + " [-0.86907479 -0.13979625 0.47451662]\n", + " [-0.86518623 -0.11603618 0.48784053]\n", + " [-0.86062128 -0.09170564 0.50092025]\n", + " [-0.85536238 -0.0669046 0.51369152]\n", + " [-0.84940161 -0.04173445 0.52609423]\n", + " [-0.84274111 -0.01629669 0.53807234]\n", + " [-0.83539316 0.00930742 0.54957406]\n", + " [-0.95040044 -0.07793856 0.30110559]\n", + " [-0.94802833 -0.0531431 0.3137166 ]\n", + " [-0.94484663 -0.02779423 0.32633163]\n", + " [-0.94082562 -0.00199361 0.33888521]\n", + " [-0.93594514 0.024159 0.35131616]\n", + " [-0.93019494 0.05056361 0.36356662]\n", + " [-0.92357545 0.07711789 0.37558118]\n", + " [-0.91609841 0.10371646 0.38730686]\n", + " [-0.83539316 0.00930742 0.54957406]\n", + " [-0.84859483 0.02232737 0.52857195]\n", + " [-0.86137177 0.03559395 0.50672649]\n", + " [-0.87363507 0.04905171 0.48410297]\n", + " [-0.88530557 0.06264675 0.46077048]\n", + " [-0.89631287 0.07632553 0.4368039 ]\n", + " [-0.90659493 0.09003384 0.41228576]\n", + " [-0.91609841 0.10371646 0.38730686]\n", + " [-0.87792145 -0.15808941 0.45195316]\n", + " [-0.89332356 -0.14431773 0.4256118 ]\n", + " [-0.90802079 -0.1298838 0.39828188]\n", + " [-0.9218634 -0.11488209 0.37009455]\n", + " [-0.93472178 -0.09940984 0.34119332]\n", + " [-0.94648806 -0.08356392 0.31173293]\n", + " [-0.87102373 -0.15287169 0.46684891]\n", + " [-0.86662186 -0.12410665 0.48328469]\n", + " [-0.86121629 -0.09443549 0.49938807]\n", + " [-0.85477104 -0.06404068 0.51503908]\n", + " [-0.84727158 -0.03310871 0.53012704]\n", + " [-0.83872605 -0.00182638 0.54455053]\n", + " [-0.94943327 -0.06724741 0.30668267]\n", + " [-0.9459855 -0.0364734 0.32215078]\n", + " [-0.94129117 -0.00496934 0.33755922]\n", + " [-0.93530921 0.02708039 0.35279362]\n", + " [-0.92802084 0.05949144 0.36774731]\n", + " [-0.91943152 0.09207414 0.38231928]\n", + " [-0.8412216 0.01486212 0.54048621]\n", + " [-0.85712794 0.03099147 0.51417042]\n", + " [-0.87230682 0.04743611 0.48665247]\n", + " [-0.88660848 0.06409624 0.45805793]\n", + " [-0.89990331 0.08087316 0.42852487]\n", + " [-0.91208062 0.09766663 0.39820871]\n", + " [-0.87234749 -0.16277587 0.46099228]\n", + " [-0.87234749 -0.16277587 0.46099228]\n", + " [-0.91609429 0.10357887 0.38735341]\n", + " [-0.91609429 0.10357887 0.38735341]\n", + " [-0.87662932 -0.14812012 0.45780067]\n", + " [-0.87230349 -0.11917421 0.4742195 ]\n", + " [-0.86695262 -0.08933094 0.49031943]\n", + " [-0.86053986 -0.05877502 0.50598088]\n", + " [-0.85305036 -0.0276936 0.52109323]\n", + " [-0.84449225 0.00372632 0.53555481]\n", + " [-0.89211691 -0.13417494 0.43142149]\n", + " [-0.88799614 -0.10475282 0.44776076]\n", + " [-0.88279313 -0.07446264 0.46382282]\n", + " [-0.87646952 -0.04349228 0.47948889]\n", + " [-0.86901002 -0.01202901 0.49464824]\n", + " [-0.86042286 0.01974028 0.50919821]\n", + " [-0.90689208 -0.11958701 0.40403677]\n", + " [-0.90295854 -0.08974852 0.4202512 ]\n", + " [-0.89789199 -0.05907437 0.43623411]\n", + " [-0.89165334 -0.02775242 0.45186738]\n", + " [-0.88422688 0.00403139 0.46704022]\n", + " [-0.87562078 0.03609033 0.48164898]\n", + " [-0.92080425 -0.10445294 0.37577802]\n", + " [-0.9170389 -0.07426122 0.39182257]\n", + " [-0.91209737 -0.04326647 0.4076842 ]\n", + " [-0.90593999 -0.01165506 0.42324566]\n", + " [-0.89855035 0.02038843 0.4383966 ]\n", + " [-0.88993607 0.05267697 0.45303302]\n", + " [-0.93372345 -0.08887068 0.34678888]\n", + " [-0.93010678 -0.05838903 0.36261839]\n", + " [-0.92527873 -0.027136 0.37831588]\n", + " [-0.919199 0.00470346 0.39376527]\n", + " [-0.91185014 0.03694552 0.40885738]\n", + " [-0.9032389 0.06940221 0.42348886]\n", + " [-0.94554159 -0.07293716 0.31722434]\n", + " [-0.94205344 -0.04222834 0.33279437]\n", + " [-0.93732656 -0.01077882 0.34828542]\n", + " [-0.93132004 0.02122708 0.36358272]\n", + " [-0.92401542 0.05360531 0.37857889]\n", + " [-0.91541845 0.08616662 0.3931722 ]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:fp_optics: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:cartToSphere: vec: [[-0.24020678 -0.23554012 0.94171203]\n", + " [-0.21469405 -0.23057376 0.9490744 ]\n", + " [-0.18845689 -0.22547921 0.95584681]\n", + " [-0.16160237 -0.22025424 0.96196296]\n", + " [-0.13423766 -0.21490141 0.96736634]\n", + " [-0.10647032 -0.20942805 0.97201027]\n", + " [-0.07840872 -0.20384609 0.975858 ]\n", + " [-0.05016215 -0.19817168 0.97888291]\n", + " [-0.24020678 -0.23554012 0.94171203]\n", + " [-0.23629397 -0.26153567 0.93582277]\n", + " [-0.23197316 -0.28788018 0.92914663]\n", + " [-0.22726736 -0.31444973 0.92166746]\n", + " [-0.22219913 -0.34112455 0.91337922]\n", + " [-0.21679065 -0.36778869 0.90428607]\n", + " [-0.21106412 -0.39432977 0.89440257]\n", + " [-0.20504227 -0.42063891 0.88375369]\n", + " [-0.05016215 -0.19817168 0.97888291]\n", + " [-0.04431021 -0.2248949 0.973375 ]\n", + " [-0.03830056 -0.25198433 0.96697309]\n", + " [-0.03215563 -0.27932092 0.95965923]\n", + " [-0.025898 -0.30678872 0.95142523]\n", + " [-0.01955092 -0.33427317 0.94227343]\n", + " [-0.01313848 -0.36166033 0.93221735]\n", + " [-0.00668564 -0.38883718 0.92128223]\n", + " [-0.20504227 -0.42063891 0.88375369]\n", + " [-0.17820346 -0.41728576 0.89113193]\n", + " [-0.15069141 -0.41353434 0.89793176]\n", + " [-0.12260819 -0.409381 0.90408762]\n", + " [-0.09405733 -0.40482655 0.90954312]\n", + " [-0.06514555 -0.39987653 0.91425096]\n", + " [-0.03598355 -0.39454152 0.91817328]\n", + " [-0.00668564 -0.38883718 0.92128223]\n", + " [-0.22916592 -0.23347872 0.94497125]\n", + " [-0.1973955 -0.22730718 0.95360708]\n", + " [-0.16464335 -0.22094017 0.96128976]\n", + " [-0.13110673 -0.21438036 0.9679112 ]\n", + " [-0.0969837 -0.20764126 0.97338547]\n", + " [-0.06247415 -0.20074659 0.97764911]\n", + " [-0.23846607 -0.24680687 0.93926583]\n", + " [-0.23339202 -0.27891864 0.93152163]\n", + " [-0.22772819 -0.31143098 0.92257824]\n", + " [-0.22151634 -0.34412167 0.91242029]\n", + " [-0.21479733 -0.37677723 0.9010555 ]\n", + " [-0.20761225 -0.40919221 0.88851499]\n", + " [-0.04772869 -0.20978987 0.97658086]\n", + " [-0.04044864 -0.24280359 0.96923182]\n", + " [-0.0329538 -0.2762486 0.96052109]\n", + " [-0.02528568 -0.30991025 0.95042952]\n", + " [-0.01748707 -0.34357757 0.93896148]\n", + " [-0.00960269 -0.37704111 0.92614674]\n", + " [-0.19345094 -0.41913568 0.88707498]\n", + " [-0.1600919 -0.41475803 0.89573788]\n", + " [-0.12582295 -0.40977824 0.90346576]\n", + " [-0.09083398 -0.40419592 0.910151 ]\n", + " [-0.05532155 -0.39802133 0.91570658]\n", + " [-0.01949099 -0.39127606 0.92006692]\n", + " [-0.24010823 -0.23561151 0.94171931]\n", + " [-0.24010823 -0.23561151 0.94171931]\n", + " [-0.00680804 -0.38876485 0.92131186]\n", + " [-0.00680804 -0.38876485 0.92131186]\n", + " [-0.22746579 -0.2447203 0.9425345 ]\n", + " [-0.2222435 -0.27696202 0.93482612]\n", + " [-0.21645521 -0.30960302 0.92590124]\n", + " [-0.21014232 -0.34242146 0.91574437]\n", + " [-0.20334521 -0.37520406 0.90436311]\n", + " [-0.1961046 -0.40774508 0.89178861]\n", + " [-0.19553443 -0.23866038 0.95121371]\n", + " [-0.18990193 -0.27121679 0.94359881]\n", + " [-0.18377063 -0.30417134 0.93472357]\n", + " [-0.17718074 -0.33730367 0.92457191]\n", + " [-0.17017141 -0.370401 0.91315102]\n", + " [-0.16278261 -0.40325672 0.900492 ]\n", + " [-0.16262611 -0.2323763 0.95893379]\n", + " [-0.15659656 -0.26516836 0.95140068]\n", + " [-0.15013466 -0.29836119 0.94257105]\n", + " [-0.14327964 -0.33173615 0.93242805]\n", + " [-0.13607008 -0.3650809 0.92097821]\n", + " [-0.1285459 -0.39818778 0.90825241]\n", + " [-0.1289376 -0.22587089 0.96558657]\n", + " [-0.12252238 -0.25882007 0.95812339]\n", + " [-0.1157403 -0.29217608 0.9493352 ]\n", + " [-0.10863036 -0.3257219 0.93920428]\n", + " [-0.10123148 -0.35924559 0.92773638]\n", + " [-0.09358433 -0.39253848 0.91496203]\n", + " [-0.09466667 -0.21915802 0.97108598]\n", + " [-0.08787625 -0.25218657 0.96368029]\n", + " [-0.08078377 -0.28563085 0.95492879]\n", + " [-0.07342886 -0.31927515 0.94481299]\n", + " [-0.06585165 -0.35290792 0.93333786]\n", + " [-0.05809429 -0.3863198 0.92053358]\n", + " [-0.06001331 -0.21226177 0.97536831]\n", + " [-0.0528588 -0.24529282 0.96800691]\n", + " [-0.04546672 -0.27875075 0.95928661]\n", + " [-0.03787802 -0.31242073 0.94918836]\n", + " [-0.03013474 -0.34609163 0.93771663]\n", + " [-0.02228089 -0.37955392 0.92490128]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:fp_optics: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:cartToSphere: vec: [[0.5311678 0.429963 0.73006341]\n", + " [0.52233733 0.41005635 0.74767473]\n", + " [0.51290986 0.38942162 0.7650322 ]\n", + " [0.50289992 0.36812304 0.78203395]\n", + " [0.49232736 0.34622882 0.79858586]\n", + " [0.48121813 0.32381271 0.81460078]\n", + " [0.46960478 0.30095465 0.82999859]\n", + " [0.45752652 0.2777406 0.84470684]\n", + " [0.5311678 0.429963 0.73006341]\n", + " [0.50801457 0.44610711 0.73682402]\n", + " [0.48448005 0.46175522 0.7430082 ]\n", + " [0.46066138 0.47684953 0.74860244]\n", + " [0.4366601 0.49133604 0.75360258]\n", + " [0.41258201 0.50516413 0.75801404]\n", + " [0.38853748 0.51828576 0.76185201]\n", + " [0.36464202 0.5306548 0.76514161]\n", + " [0.45752652 0.2777406 0.84470684]\n", + " [0.43361947 0.29454976 0.85159532]\n", + " [0.40940075 0.3110376 0.85769845]\n", + " [0.38497171 0.32714275 0.86300313]\n", + " [0.36043602 0.34280903 0.86750668]\n", + " [0.33589887 0.35798557 0.87121655]\n", + " [0.31146726 0.37262637 0.87414972]\n", + " [0.28725118 0.38668922 0.87633224]\n", + " [0.36464202 0.5306548 0.76514161]\n", + " [0.35452676 0.51227238 0.78223256]\n", + " [0.34406051 0.49304205 0.79908191]\n", + " [0.33326003 0.47303335 0.81558396]\n", + " [0.32214785 0.45231771 0.83164262]\n", + " [0.31075223 0.43096932 0.84717088]\n", + " [0.29910702 0.40906592 0.86209052]\n", + " [0.28725118 0.38668922 0.87633224]\n", + " [0.52731309 0.42143335 0.73779051]\n", + " [0.51608662 0.39653872 0.75921778]\n", + " [0.50397747 0.37061384 0.78016158]\n", + " [0.49101995 0.34378256 0.80044548]\n", + " [0.47726188 0.31618071 0.81990905]\n", + " [0.46276597 0.28795799 0.83840793]\n", + " [0.52109633 0.43699248 0.73314131]\n", + " [0.49245046 0.45645334 0.74104176]\n", + " [0.46332794 0.47511139 0.74806175]\n", + " [0.43391387 0.49286569 0.75418974]\n", + " [0.40440309 0.50962293 0.75943572]\n", + " [0.37500088 0.52529549 0.76383178]\n", + " [0.44718969 0.2851847 0.84775649]\n", + " [0.41766697 0.30557774 0.85567315]\n", + " [0.38777643 0.32542646 0.86239612]\n", + " [0.35770801 0.34462524 0.86791614]\n", + " [0.32765541 0.36308042 0.87224683]\n", + " [0.29781675 0.38070894 0.87542326]\n", + " [0.36035732 0.52270723 0.77260582]\n", + " [0.34772282 0.49959757 0.79340475]\n", + " [0.33457696 0.47528329 0.81373463]\n", + " [0.32095878 0.44989507 0.83341459]\n", + " [0.30692032 0.42356959 0.85228441]\n", + " [0.29252602 0.39645159 0.8702038 ]\n", + " [0.53106021 0.42995222 0.73014803]\n", + " [0.53106021 0.42995222 0.73014803]\n", + " [0.28737435 0.3867194 0.87627855]\n", + " [0.28737435 0.3867194 0.87627855]\n", + " [0.5173104 0.42850257 0.74079383]\n", + " [0.4885561 0.44805437 0.7487057 ]\n", + " [0.45932791 0.4668164 0.7557118 ]\n", + " [0.42981136 0.48468794 0.76180036]\n", + " [0.40020126 0.50157638 0.76698115]\n", + " [0.37070241 0.51739499 0.77128604]\n", + " [0.50598646 0.40368134 0.76224607]\n", + " [0.47696228 0.42346734 0.77018336]\n", + " [0.44747507 0.44250181 0.77714748]\n", + " [0.41771173 0.46068431 0.78312635]\n", + " [0.38786711 0.47792372 0.78812945]\n", + " [0.35814465 0.4941358 0.79218825]\n", + " [0.49379865 0.3778169 0.78320961]\n", + " [0.46456073 0.39780258 0.79116145]\n", + " [0.43487505 0.41707777 0.79807883]\n", + " [0.40492993 0.4355416 0.8039498 ]\n", + " [0.37492032 0.45310366 0.80878416]\n", + " [0.34504831 0.4696816 0.81261359]\n", + " [0.48078182 0.35103278 0.80350783]\n", + " [0.45138805 0.37118313 0.81146283]\n", + " [0.42156597 0.39066772 0.81832809]\n", + " [0.39150511 0.4093846 0.82409222]\n", + " [0.36140042 0.42724322 0.82876593]\n", + " [0.33145266 0.44416211 0.83238161]\n", + " [0.46698447 0.32346435 0.82298015]\n", + " [0.43749452 0.34374328 0.83092665]\n", + " [0.40759965 0.36340532 0.83773451]\n", + " [0.37749003 0.38234704 0.84339316]\n", + " [0.34736032 0.4004769 0.84791453]\n", + " [0.31741005 0.41771335 0.85133214]\n", + " [0.45246984 0.29526089 0.84148205]\n", + " [0.4229448 0.31563095 0.8494085 ]\n", + " [0.3930417 0.33543709 0.8561543 ]\n", + " [0.36295067 0.35457426 0.86170987]\n", + " [0.33286574 0.37294939 0.86608842]\n", + " [0.30298535 0.39047994 0.86932462]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:cartToSphere: vec: [[-0.22180264 -0.37909766 0.89838107]\n", + " [-0.21242609 -0.35651404 0.90982026]\n", + " [-0.20254954 -0.3332557 0.92082263]\n", + " [-0.19222276 -0.3094022 0.93130054]\n", + " [-0.18149298 -0.28503599 0.94117734]\n", + " [-0.17040602 -0.26024312 0.95038692]\n", + " [-0.15900722 -0.23511361 0.95887345]\n", + " [-0.14734206 -0.20974139 0.96659136]\n", + " [-0.22180264 -0.37909766 0.89838107]\n", + " [-0.19822112 -0.39209888 0.89831334]\n", + " [-0.1739128 -0.40496416 0.89764044]\n", + " [-0.14898356 -0.41763327 0.89631822]\n", + " [-0.12353671 -0.43004846 0.8943137 ]\n", + " [-0.0976745 -0.44215438 0.89160484]\n", + " [-0.07149919 -0.45389827 0.88818029]\n", + " [-0.0451136 -0.46523046 0.88403924]\n", + " [-0.14734206 -0.20974139 0.96659136]\n", + " [-0.12214882 -0.22170953 0.96743193]\n", + " [-0.09633843 -0.23374325 0.96751382]\n", + " [-0.07000902 -0.24578449 0.96679301]\n", + " [-0.04326003 -0.25777737 0.96523541]\n", + " [-0.01619354 -0.26966766 0.96281728]\n", + " [ 0.01108546 -0.28140289 0.95952568]\n", + " [ 0.03846955 -0.29293265 0.95535886]\n", + " [-0.0451136 -0.46523046 0.88403924]\n", + " [-0.03371901 -0.44263103 0.89606964]\n", + " [-0.02206569 -0.41922799 0.9076128 ]\n", + " [-0.01019907 -0.39509504 0.91858363]\n", + " [ 0.00183503 -0.37031094 0.92890604]\n", + " [ 0.01398983 -0.34496062 0.9385129 ]\n", + " [ 0.02621752 -0.31913542 0.94734641]\n", + " [ 0.03846955 -0.29293265 0.95535886]\n", + " [-0.21769941 -0.36938357 0.90341726]\n", + " [-0.20586339 -0.34124095 0.91715586]\n", + " [-0.19332628 -0.31216356 0.93014991]\n", + " [-0.18017607 -0.2823019 0.9422538 ]\n", + " [-0.16649718 -0.25181443 0.95334578]\n", + " [-0.15237313 -0.22086855 0.96332731]\n", + " [-0.21158561 -0.38470288 0.8984627 ]\n", + " [-0.18218027 -0.40055324 0.89797965]\n", + " [-0.15178887 -0.41613941 0.89654232]\n", + " [-0.12060259 -0.43135407 0.89408539]\n", + " [-0.0888098 -0.44609531 0.89056824]\n", + " [-0.05659897 -0.46026728 0.88597437]\n", + " [-0.13648035 -0.21503506 0.96702277]\n", + " [-0.10517651 -0.22975567 0.96754857]\n", + " [-0.07304308 -0.24451665 0.96689002]\n", + " [-0.04026246 -0.25921425 0.96498026]\n", + " [-0.0070226 -0.27374867 0.96177562]\n", + " [ 0.02648215 -0.28802413 0.95725691]\n", + " [-0.04027108 -0.45544226 0.88935403]\n", + " [-0.02612704 -0.42719454 0.90378217]\n", + " [-0.01163935 -0.39781259 0.91739286]\n", + " [ 0.00310785 -0.36743924 0.93004234]\n", + " [ 0.01802845 -0.33623084 0.94160703]\n", + " [ 0.03303409 -0.3043581 0.95198471]\n", + " [-0.22169221 -0.37906629 0.89842157]\n", + " [-0.22169221 -0.37906629 0.89842157]\n", + " [ 0.03833397 -0.29298376 0.95534864]\n", + " [ 0.03833397 -0.29298376 0.95534864]\n", + " [-0.20752664 -0.37500466 0.90349554]\n", + " [-0.17794258 -0.3908228 0.90310242]\n", + " [-0.14738404 -0.40639396 0.90173272]\n", + " [-0.11604072 -0.42161059 0.89932145]\n", + " [-0.08410022 -0.43637036 0.89582814]\n", + " [-0.051751 -0.45057694 0.89123636]\n", + " [-0.19552023 -0.34680887 0.91733061]\n", + " [-0.16547661 -0.36251018 0.91717167]\n", + " [-0.1344888 -0.37801447 0.91597916]\n", + " [-0.10274296 -0.39321372 0.9136886 ]\n", + " [-0.07042524 -0.40800479 0.91025951]\n", + " [-0.03772456 -0.42229024 0.90567533]\n", + " [-0.18283687 -0.31766397 0.93040866]\n", + " [-0.15239967 -0.3332088 0.93045485]\n", + " [-0.12104578 -0.34860825 0.92941928]\n", + " [-0.08895885 -0.36375444 0.92723731]\n", + " [-0.05632457 -0.37854397 0.92386796]\n", + " [-0.02333302 -0.39287884 0.91929418]\n", + " [-0.16956323 -0.28771994 0.9425845 ]\n", + " [-0.13879544 -0.30306708 0.9428076 ]\n", + " [-0.10713689 -0.31832223 0.94190904]\n", + " [-0.07476986 -0.33337821 0.93982362]\n", + " [-0.04188038 -0.34813207 0.93650953]\n", + " [-0.00865995 -0.36248584 0.93194904]\n", + " [-0.15578292 -0.25713515 0.95373644]\n", + " [-0.12474594 -0.27224318 0.95410801]\n", + " [-0.09284378 -0.28731433 0.95332602]\n", + " [-0.06025835 -0.30224269 0.95132449]\n", + " [-0.02717638 -0.31692633 0.94806073]\n", + " [ 0.0062092 -0.33126789 0.94351631]\n", + " [-0.14157911 -0.2260773 0.96376575]\n", + " [-0.11033403 -0.24090585 0.96425659]\n", + " [-0.07824992 -0.25575433 0.96356976]\n", + " [-0.04550894 -0.27051839 0.96163857]\n", + " [-0.01229874 -0.28509764 0.95841957]\n", + " [ 0.02118662 -0.2993958 0.95389375]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:fp_optics: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:fp_optics: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:cartToSphere: vec: [[ 0.35937226 0.10507628 0.9272597 ]\n", + " [ 0.34538457 0.08201699 0.93487043]\n", + " [ 0.33084065 0.05843365 0.94187577]\n", + " [ 0.31578327 0.03441667 0.94820695]\n", + " [ 0.30025907 0.0100577 0.95380466]\n", + " [ 0.28431926 -0.01454933 0.95861925]\n", + " [ 0.26801982 -0.03930811 0.96261116]\n", + " [ 0.25142127 -0.06412063 0.96575147]\n", + " [ 0.35937226 0.10507628 0.9272597 ]\n", + " [ 0.33620966 0.1212503 0.93394937]\n", + " [ 0.31279015 0.13719018 0.93986232]\n", + " [ 0.28920783 0.15283279 0.94498728]\n", + " [ 0.26555902 0.16811519 0.94932381]\n", + " [ 0.24194195 0.18297407 0.95288225]\n", + " [ 0.21845695 0.19734487 0.95568382]\n", + " [ 0.19520717 0.21116045 0.95776063]\n", + " [ 0.25142127 -0.06412063 0.96575147]\n", + " [ 0.22754057 -0.04726985 0.97262061]\n", + " [ 0.20353077 -0.03043216 0.97859548]\n", + " [ 0.17948937 -0.01367455 0.98366487]\n", + " [ 0.15551444 0.00293688 0.98782925]\n", + " [ 0.13170384 0.01933737 0.99110048]\n", + " [ 0.10815509 0.03546353 0.99350129]\n", + " [ 0.08496617 0.05125267 0.99506478]\n", + " [ 0.19520717 0.21116045 0.95776063]\n", + " [ 0.18019303 0.18986059 0.96513389]\n", + " [ 0.16485165 0.16788788 0.97192469]\n", + " [ 0.14922897 0.14533898 0.97806303]\n", + " [ 0.13337441 0.12230797 0.98348972]\n", + " [ 0.11734098 0.09888788 0.988156 ]\n", + " [ 0.10118509 0.07517166 0.99202359]\n", + " [ 0.08496617 0.05125267 0.99506478]\n", + " [ 0.3532656 0.09514842 0.9306719 ]\n", + " [ 0.33574221 0.06652368 0.93960192]\n", + " [ 0.31742562 0.03720146 0.94755318]\n", + " [ 0.29840003 0.00734989 0.9544126 ]\n", + " [ 0.27875973 -0.02285808 0.96008881]\n", + " [ 0.25860971 -0.05324444 0.96451337]\n", + " [ 0.34926364 0.11207532 0.93029782]\n", + " [ 0.32069024 0.13174945 0.93797647]\n", + " [ 0.29182428 0.15100927 0.94447593]\n", + " [ 0.26284217 0.16973881 0.94979089]\n", + " [ 0.23392477 0.18782148 0.9539404 ]\n", + " [ 0.20525792 0.20513738 0.95696804]\n", + " [ 0.24108846 -0.05669151 0.96884593]\n", + " [ 0.21172118 -0.03603972 0.97666539]\n", + " [ 0.18225664 -0.01547438 0.98312922]\n", + " [ 0.15287521 0.00488241 0.98823344]\n", + " [ 0.12375703 0.02491144 0.99199981]\n", + " [ 0.09508175 0.04449636 0.9944745 ]\n", + " [ 0.18878313 0.20191592 0.96103636]\n", + " [ 0.17015643 0.1753444 0.96969125]\n", + " [ 0.1510833 0.14785873 0.97740045]\n", + " [ 0.13165327 0.11963311 0.98405047]\n", + " [ 0.11196388 0.09083889 0.98955161]\n", + " [ 0.09212029 0.06164737 0.99383774]\n", + " [ 0.35924675 0.10505406 0.92731085]\n", + " [ 0.35924675 0.10505406 0.92731085]\n", + " [ 0.08510025 0.05128136 0.99505184]\n", + " [ 0.08510025 0.05128136 0.99505184]\n", + " [ 0.34324418 0.10219878 0.93366956]\n", + " [ 0.31456839 0.1219688 0.94136621]\n", + " [ 0.28560966 0.14134426 0.94786545]\n", + " [ 0.25654489 0.16020936 0.95316194]\n", + " [ 0.22755504 0.17844822 0.95727474]\n", + " [ 0.19882555 0.19594225 0.96024738]\n", + " [ 0.32562475 0.07364769 0.9426264 ]\n", + " [ 0.29669557 0.09366462 0.95036765]\n", + " [ 0.26751259 0.11334271 0.9568649 ]\n", + " [ 0.23825413 0.13256595 0.9621129 ]\n", + " [ 0.20910148 0.15121967 0.96613104]\n", + " [ 0.18023905 0.16918821 0.96896297]\n", + " [ 0.307231 0.04438599 0.95059928]\n", + " [ 0.27810382 0.06461316 0.9583754 ]\n", + " [ 0.24875479 0.08455766 0.96486841]\n", + " [ 0.21936349 0.10410252 0.97007336]\n", + " [ 0.19011149 0.1231331 0.9740102 ]\n", + " [ 0.16118217 0.14153533 0.97672312]\n", + " [ 0.28814767 0.01458145 0.95747496]\n", + " [ 0.25887955 0.03498141 0.96527596]\n", + " [ 0.22942419 0.05515598 0.9717625 ]\n", + " [ 0.19996205 0.07498672 0.97692997]\n", + " [ 0.17067473 0.09435812 0.980799 ]\n", + " [ 0.14174456 0.11315641 0.98341451]\n", + " [ 0.26846962 -0.01559342 0.96316193]\n", + " [ 0.23911909 0.00494068 0.97097768]\n", + " [ 0.20961827 0.02530787 0.97745572]\n", + " [ 0.18014801 0.04538805 0.98259179]\n", + " [ 0.15088954 0.0650643 0.98640711]\n", + " [ 0.12202409 0.08422216 0.98894729]\n", + " [ 0.24830225 -0.04596092 0.96759164]\n", + " [ 0.21892878 -0.02533263 0.97541194]\n", + " [ 0.18944395 -0.00481187 0.98187975]\n", + " [ 0.16002834 0.01547974 0.98699104]\n", + " [ 0.13086245 0.03542358 0.99076748]\n", + " [ 0.10212633 0.05490386 0.99325514]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:fp_optics: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:cartToSphere: vec: [[ 0.06217205 -0.2458111 -0.96732184]\n", + " [ 0.06973588 -0.2707002 -0.96013453]\n", + " [ 0.07755697 -0.29586042 -0.95207748]\n", + " [ 0.08558253 -0.3211755 -0.9431447 ]\n", + " [ 0.0937645 -0.34653328 -0.93333965]\n", + " [ 0.10205907 -0.37182512 -0.92267547]\n", + " [ 0.11042598 -0.39694551 -0.91117527]\n", + " [ 0.11882794 -0.42179213 -0.89887225]\n", + " [ 0.06217205 -0.2458111 -0.96732184]\n", + " [ 0.08703053 -0.23549344 -0.96797135]\n", + " [ 0.11242065 -0.22491626 -0.967871 ]\n", + " [ 0.13822107 -0.21410061 -0.96698287]\n", + " [ 0.16431509 -0.20307209 -0.96527834]\n", + " [ 0.19058983 -0.19186094 -0.96273823]\n", + " [ 0.21693536 -0.18050182 -0.95935298]\n", + " [ 0.24324429 -0.1690334 -0.95512299]\n", + " [ 0.11882794 -0.42179213 -0.89887225]\n", + " [ 0.14525688 -0.4128497 -0.89914157]\n", + " [ 0.17211309 -0.40339477 -0.89869335]\n", + " [ 0.19928222 -0.39344642 -0.89748901]\n", + " [ 0.22665205 -0.38302779 -0.89549906]\n", + " [ 0.25411068 -0.37216692 -0.8927035 ]\n", + " [ 0.2815458 -0.36089716 -0.88909235]\n", + " [ 0.30884509 -0.34925729 -0.88466607]\n", + " [ 0.24324429 -0.1690334 -0.95512299]\n", + " [ 0.25287546 -0.19429875 -0.94778795]\n", + " [ 0.26249886 -0.21990575 -0.93954021]\n", + " [ 0.27206464 -0.24574421 -0.93037123]\n", + " [ 0.28152578 -0.27170602 -0.92028206]\n", + " [ 0.29083755 -0.29768362 -0.90928432]\n", + " [ 0.29995738 -0.3235696 -0.89740085]\n", + " [ 0.30884509 -0.34925729 -0.88466607]\n", + " [ 0.06551921 -0.25658734 -0.96429776]\n", + " [ 0.07497083 -0.28728952 -0.95490529]\n", + " [ 0.08475568 -0.31828297 -0.94419936]\n", + " [ 0.09478333 -0.34935954 -0.9321824 ]\n", + " [ 0.10497306 -0.38031918 -0.91887865]\n", + " [ 0.11525199 -0.41096895 -0.90433484]\n", + " [ 0.07296301 -0.24143043 -0.9676713 ]\n", + " [ 0.10380425 -0.22860882 -0.96796833]\n", + " [ 0.13532283 -0.21541761 -0.9671003 ]\n", + " [ 0.16730204 -0.20190205 -0.96501067]\n", + " [ 0.19953396 -0.18811778 -0.96166413]\n", + " [ 0.23181728 -0.1741303 -0.95704722]\n", + " [ 0.13026216 -0.41787256 -0.89911862]\n", + " [ 0.16295514 -0.40656499 -0.89897193]\n", + " [ 0.19617597 -0.39450631 -0.89770806]\n", + " [ 0.22971731 -0.38173745 -0.89526894]\n", + " [ 0.26337307 -0.36831004 -0.89161782]\n", + " [ 0.29693643 -0.35428776 -0.88674063]\n", + " [ 0.24735099 -0.18003947 -0.95205214]\n", + " [ 0.25915529 -0.21124887 -0.94245024]\n", + " [ 0.2708982 -0.24286156 -0.93146789]\n", + " [ 0.28249205 -0.27467774 -0.91910303]\n", + " [ 0.29385446 -0.30649935 -0.9053771 ]\n", + " [ 0.30490804 -0.3381289 -0.89033698]\n", + " [ 0.06228138 -0.2458608 -0.96730218]\n", + " [ 0.06228138 -0.2458608 -0.96730218]\n", + " [ 0.30872214 -0.34921029 -0.88472754]\n", + " [ 0.30872214 -0.34921029 -0.88472754]\n", + " [ 0.07626973 -0.25219188 -0.96466688]\n", + " [ 0.10729699 -0.23945083 -0.96496148]\n", + " [ 0.13898881 -0.22631311 -0.96408739]\n", + " [ 0.17112951 -0.21282417 -0.96198782]\n", + " [ 0.20351181 -0.19904002 -0.95862715]\n", + " [ 0.23593443 -0.1850266 -0.95399167]\n", + " [ 0.08589716 -0.28299522 -0.95526718]\n", + " [ 0.11739827 -0.27049041 -0.95553785]\n", + " [ 0.14953079 -0.25751462 -0.95463436]\n", + " [ 0.18208202 -0.24411369 -0.95249916]\n", + " [ 0.21484613 -0.23034429 -0.9490957 ]\n", + " [ 0.24762149 -0.21627335 -0.94440957]\n", + " [ 0.09582968 -0.31409367 -0.94454319]\n", + " [ 0.12772786 -0.30183872 -0.94476398]\n", + " [ 0.16022869 -0.28904222 -0.94381214]\n", + " [ 0.19312205 -0.2757498 -0.9416294 ]\n", + " [ 0.22620291 -0.26201809 -0.93817843]\n", + " [ 0.25926862 -0.24791432 -0.93344431]\n", + " [ 0.10597772 -0.34527962 -0.93249703]\n", + " [ 0.13819847 -0.33328976 -0.93264094]\n", + " [ 0.1709968 -0.32069156 -0.93162064]\n", + " [ 0.20416441 -0.30752974 -0.9293774 ]\n", + " [ 0.2374964 -0.29386005 -0.9258735 ]\n", + " [ 0.27078874 -0.27974937 -0.92109378]\n", + " [ 0.11626126 -0.37635314 -0.91915267]\n", + " [ 0.14873164 -0.36464379 -0.91919193]\n", + " [ 0.18175726 -0.35226302 -0.91808227]\n", + " [ 0.21513076 -0.33925407 -0.91576494]\n", + " [ 0.24864689 -0.32567117 -0.91220229]\n", + " [ 0.28210022 -0.31158014 -0.90737935]\n", + " [ 0.12660781 -0.40712093 -0.9045568 ]\n", + " [ 0.1592555 -0.39570631 -0.90446349]\n", + " [ 0.19243795 -0.38356078 -0.90324347]\n", + " [ 0.22594791 -0.37072583 -0.90083844]\n", + " [ 0.25957956 -0.3572538 -0.89721133]\n", + " [ 0.29312634 -0.34320898 -0.89234777]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:cartToSphere: vec: [[-1.60233270e-01 1.96750655e-01 9.67271668e-01]\n", + " [-1.66326368e-01 2.23236892e-01 9.60469067e-01]\n", + " [-1.72406550e-01 2.50068150e-01 9.52754901e-01]\n", + " [-1.78442289e-01 2.77127924e-01 9.44117823e-01]\n", + " [-1.84403821e-01 3.04302144e-01 9.34556277e-01]\n", + " [-1.90262818e-01 3.31477585e-01 9.24079364e-01]\n", + " [-1.95992345e-01 3.58541414e-01 9.12707541e-01]\n", + " [-2.01567058e-01 3.85381819e-01 9.00472973e-01]\n", + " [-1.60233270e-01 1.96750655e-01 9.67271668e-01]\n", + " [-1.32247449e-01 2.03963615e-01 9.70004874e-01]\n", + " [-1.04261345e-01 2.11076045e-01 9.71893243e-01]\n", + " [-7.63864559e-02 2.18065245e-01 9.72940213e-01]\n", + " [-4.87355003e-02 2.24912674e-01 9.73159360e-01]\n", + " [-2.14226283e-02 2.31604420e-01 9.72574143e-01]\n", + " [ 5.43590390e-03 2.38131587e-01 9.71217688e-01]\n", + " [ 3.17208164e-02 2.44490475e-01 9.69132704e-01]\n", + " [-2.01567058e-01 3.85381819e-01 9.00472973e-01]\n", + " [-1.72585361e-01 3.92697478e-01 9.03328835e-01]\n", + " [-1.43542467e-01 3.99639327e-01 9.05363998e-01]\n", + " [-1.14555436e-01 4.06184933e-01 9.06581961e-01]\n", + " [-8.57401187e-02 4.12317140e-01 9.06996807e-01]\n", + " [-5.72104683e-02 4.18024013e-01 9.06632719e-01]\n", + " [-2.90789664e-02 4.23298541e-01 9.05523472e-01]\n", + " [-1.45822558e-03 4.28138189e-01 9.03712103e-01]\n", + " [ 3.17208164e-02 2.44490475e-01 9.69132704e-01]\n", + " [ 2.75918470e-02 2.70378484e-01 9.62358647e-01]\n", + " [ 2.32091728e-02 2.96579749e-01 9.54726027e-01]\n", + " [ 1.86059893e-02 3.22971504e-01 9.46225779e-01]\n", + " [ 1.38119979e-02 3.49435680e-01 9.36858545e-01]\n", + " [ 8.85393807e-03 3.75858108e-01 9.26634928e-01]\n", + " [ 3.75627151e-03 4.02128050e-01 9.15575733e-01]\n", + " [-1.45822558e-03 4.28138189e-01 9.03712103e-01]\n", + " [-1.62793410e-01 2.08273605e-01 9.64427504e-01]\n", + " [-1.70255572e-01 2.40982330e-01 9.55479229e-01]\n", + " [-1.77666969e-01 2.74093105e-01 9.45149416e-01]\n", + " [-1.84972102e-01 3.07395029e-01 9.33431099e-01]\n", + " [-1.92118824e-01 3.40679607e-01 9.20341112e-01]\n", + " [-1.99058199e-01 3.73739474e-01 9.05921983e-01]\n", + " [-1.48058896e-01 1.99996217e-01 9.68545340e-01]\n", + " [-1.13744204e-01 2.08771986e-01 9.71327192e-01]\n", + " [-7.95397027e-02 2.17373561e-01 9.72842315e-01]\n", + " [-4.56524082e-02 2.25765057e-01 9.73111503e-01]\n", + " [-1.22925421e-02 2.33920902e-01 9.72177918e-01]\n", + " [ 2.03246623e-02 2.41826881e-01 9.70106524e-01]\n", + " [-1.88927201e-01 3.88524518e-01 9.01862080e-01]\n", + " [-1.53351398e-01 3.97242454e-01 9.04810357e-01]\n", + " [-1.17800096e-01 4.05376232e-01 9.06528129e-01]\n", + " [-8.24871450e-02 4.12892064e-01 9.07036942e-01]\n", + " [-4.76223738e-02 4.19767937e-01 9.06381260e-01]\n", + " [-1.34127977e-02 4.25992820e-01 9.04627113e-01]\n", + " [ 2.98647763e-02 2.55710042e-01 9.66292124e-01]\n", + " [ 2.46280187e-02 2.87665836e-01 9.57414136e-01]\n", + " [ 1.90437631e-02 3.19969624e-01 9.47236388e-01]\n", + " [ 1.31681252e-02 3.52402138e-01 9.35756023e-01]\n", + " [ 7.05040670e-03 3.84753143e-01 9.22992584e-01]\n", + " [ 7.34919147e-04 4.16820176e-01 9.08988669e-01]\n", + " [-1.60158512e-01 1.96865314e-01 9.67260719e-01]\n", + " [-1.60158512e-01 1.96865314e-01 9.67260719e-01]\n", + " [-1.53367201e-03 4.28033993e-01 9.03761334e-01]\n", + " [-1.53367201e-03 4.28033993e-01 9.03761334e-01]\n", + " [-1.50645794e-01 2.11414833e-01 9.65717150e-01]\n", + " [-1.16190304e-01 2.20201564e-01 9.68509723e-01]\n", + " [-8.18383591e-02 2.28786774e-01 9.70030461e-01]\n", + " [-4.77971443e-02 2.37134137e-01 9.70300383e-01]\n", + " [-1.42764432e-02 2.45217618e-01 9.69362937e-01]\n", + " [ 1.85094399e-02 2.53022592e-01 9.67283293e-01]\n", + " [-1.57987048e-01 2.44149031e-01 9.56781764e-01]\n", + " [-1.23176228e-01 2.52957207e-01 9.59604225e-01]\n", + " [-8.84517125e-02 2.61488200e-01 9.61145263e-01]\n", + " [-5.40216109e-02 2.69704786e-01 9.61426541e-01]\n", + " [-2.00948123e-02 2.77580019e-01 9.60492338e-01]\n", + " [ 1.31169882e-02 2.85098392e-01 9.58408499e-01]\n", + " [-1.65300157e-01 2.77279549e-01 9.46462841e-01]\n", + " [-1.30199088e-01 2.86094077e-01 9.49314688e-01]\n", + " [-9.51688550e-02 2.94557743e-01 9.50883076e-01]\n", + " [-6.04190014e-02 3.02633089e-01 9.51190180e-01]\n", + " [-2.61580900e-02 3.10293088e-01 9.50280987e-01]\n", + " [ 7.40437923e-03 3.17522084e-01 9.48221969e-01]\n", + " [-1.72530282e-01 3.10595279e-01 9.34753376e-01]\n", + " [-1.37205680e-01 3.19400183e-01 9.37634324e-01]\n", + " [-1.01937542e-01 3.27782167e-01 9.39237770e-01]\n", + " [-6.69370372e-02 3.35704246e-01 9.39586128e-01]\n", + " [-3.24128848e-02 3.43140195e-01 9.38724779e-01]\n", + " [ 1.42695271e-03 3.50075073e-01 9.36720560e-01]\n", + " [-1.79626059e-01 3.43887534e-01 9.21670138e-01]\n", + " [-1.44146734e-01 3.52666429e-01 9.24579963e-01]\n", + " [-1.08710085e-01 3.60952153e-01 9.26226571e-01]\n", + " [-7.35287552e-02 3.68708811e-01 9.26632254e-01]\n", + " [-3.88118988e-02 3.75911706e-01 9.25842333e-01]\n", + " [-4.76664695e-03 3.82547330e-01 9.23923600e-01]\n", + " [-1.86539236e-01 3.76948826e-01 9.07255585e-01]\n", + " [-1.50975926e-01 3.85685458e-01 9.10193934e-01]\n", + " [-1.15441815e-01 3.93861115e-01 9.11891775e-01]\n", + " [-8.01505504e-02 4.01441419e-01 9.12370909e-01]\n", + " [-4.53117962e-02 4.08403631e-01 9.11676102e-01]\n", + " [-1.11324972e-02 4.14736064e-01 9.09873653e-01]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:fp_optics: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:fp_optics: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:cartToSphere: vec: [[ 0.77653268 -0.1719375 -0.60616375]\n", + " [ 0.78848971 -0.18579531 -0.58631398]\n", + " [ 0.80016467 -0.19967497 -0.56556734]\n", + " [ 0.81147264 -0.2135198 -0.54398663]\n", + " [ 0.82233512 -0.2272743 -0.52164293]\n", + " [ 0.83268215 -0.24088388 -0.49861347]\n", + " [ 0.84245319 -0.25429482 -0.4749808 ]\n", + " [ 0.85159751 -0.2674543 -0.45083243]\n", + " [ 0.77653268 -0.1719375 -0.60616375]\n", + " [ 0.78675419 -0.14797895 -0.59926628]\n", + " [ 0.79667508 -0.12346452 -0.59166318]\n", + " [ 0.8062161 -0.09848398 -0.58336653]\n", + " [ 0.81530436 -0.07313078 -0.57439593]\n", + " [ 0.82387555 -0.04750071 -0.56477673]\n", + " [ 0.83187484 -0.02169138 -0.55453922]\n", + " [ 0.83925718 0.00419809 -0.54371846]\n", + " [ 0.85159751 -0.2674543 -0.45083243]\n", + " [ 0.86316665 -0.24351446 -0.44231667]\n", + " [ 0.87428071 -0.21888882 -0.43326774]\n", + " [ 0.88485517 -0.19366716 -0.42370315]\n", + " [ 0.8948156 -0.16793954 -0.413644 ]\n", + " [ 0.9040967 -0.14179836 -0.40311585]\n", + " [ 0.9126419 -0.1153405 -0.39214963]\n", + " [ 0.92040362 -0.08866801 -0.3807823 ]\n", + " [ 0.83925718 0.00419809 -0.54371846]\n", + " [ 0.85252148 -0.00860284 -0.52262139]\n", + " [ 0.8653622 -0.02164641 -0.50067924]\n", + " [ 0.87768964 -0.03487986 -0.47795847]\n", + " [ 0.88942405 -0.04825134 -0.45452905]\n", + " [ 0.90049464 -0.06170881 -0.43046652]\n", + " [ 0.91083902 -0.07519913 -0.40585387]\n", + " [ 0.92040362 -0.08866801 -0.3807823 ]\n", + " [ 0.78181088 -0.17789218 -0.5976003 ]\n", + " [ 0.79628782 -0.19489794 -0.57266089]\n", + " [ 0.81025603 -0.21188024 -0.54643567]\n", + " [ 0.82356813 -0.22873637 -0.51905222]\n", + " [ 0.83609543 -0.24536588 -0.49065264]\n", + " [ 0.84773055 -0.26167021 -0.46139096]\n", + " [ 0.78106274 -0.1616125 -0.60317692]\n", + " [ 0.79339942 -0.13186356 -0.59424688]\n", + " [ 0.80520513 -0.10136823 -0.58426807]\n", + " [ 0.81634288 -0.07029714 -0.5732736 ]\n", + " [ 0.82669434 -0.03882659 -0.56131005]\n", + " [ 0.83616263 -0.00713691 -0.54843516]\n", + " [ 0.85666153 -0.25706185 -0.44726976]\n", + " [ 0.87054553 -0.22724816 -0.43647309]\n", + " [ 0.88366093 -0.19649369 -0.42489244]\n", + " [ 0.89586653 -0.16496406 -0.41256517]\n", + " [ 0.90704209 -0.13282967 -0.39953839]\n", + " [ 0.91708715 -0.10027101 -0.38587158]\n", + " [ 0.8450621 -0.00143879 -0.53466623]\n", + " [ 0.86104558 -0.01729838 -0.50823348]\n", + " [ 0.87630262 -0.0334697 -0.48059703]\n", + " [ 0.89068231 -0.04985695 -0.45188418]\n", + " [ 0.90405424 -0.0663642 -0.4222342 ]\n", + " [ 0.91630719 -0.08289312 -0.39180334]\n", + " [ 0.77660933 -0.1719039 -0.60607508]\n", + " [ 0.77660933 -0.1719039 -0.60607508]\n", + " [ 0.92034713 -0.08871351 -0.38090822]\n", + " [ 0.92034713 -0.08871351 -0.38090822]\n", + " [ 0.7863194 -0.16758381 -0.59465744]\n", + " [ 0.79880051 -0.13777669 -0.5856068 ]\n", + " [ 0.81073074 -0.10720937 -0.57551874]\n", + " [ 0.82197142 -0.07605314 -0.56442795]\n", + " [ 0.83240365 -0.04448447 -0.55238147]\n", + " [ 0.84193043 -0.01268398 -0.53943699]\n", + " [ 0.80094158 -0.18455413 -0.56958964]\n", + " [ 0.81380036 -0.15461986 -0.56019789]\n", + " [ 0.82605336 -0.123888 -0.54980688]\n", + " [ 0.83755934 -0.09253044 -0.53845378]\n", + " [ 0.84819894 -0.06072358 -0.52618552]\n", + " [ 0.85787509 -0.02864873 -0.51305904]\n", + " [ 0.81503637 -0.20152039 -0.5432359 ]\n", + " [ 0.82822147 -0.17151627 -0.53350854]\n", + " [ 0.84075089 -0.14067912 -0.52282629]\n", + " [ 0.85248288 -0.10918002 -0.51122662]\n", + " [ 0.86329834 -0.0771945 -0.49875544]\n", + " [ 0.87309998 -0.04490439 -0.48546887]\n", + " [ 0.82845475 -0.21838051 -0.51572539]\n", + " [ 0.84191234 -0.18836502 -0.50567009]\n", + " [ 0.85467143 -0.15748263 -0.49470796]\n", + " [ 0.86659062 -0.12590272 -0.48287597]\n", + " [ 0.87755087 -0.09379939 -0.47021925]\n", + " [ 0.88745425 -0.06135467 -0.45679379]\n", + " [ 0.84106743 -0.23503419 -0.48720068]\n", + " [ 0.85474317 -0.20506576 -0.47682507]\n", + " [ 0.86768543 -0.17419805 -0.46559321]\n", + " [ 0.87975311 -0.1425985 -0.45354176]\n", + " [ 0.89082687 -0.11043952 -0.44071601]\n", + " [ 0.9008077 -0.07790283 -0.42717285]\n", + " [ 0.85276685 -0.25138262 -0.45781599]\n", + " [ 0.86660621 -0.22151864 -0.4471277 ]\n", + " [ 0.87968482 -0.19072446 -0.43563609]\n", + " [ 0.89186157 -0.15916602 -0.42337823]\n", + " [ 0.90301647 -0.12701417 -0.4104006 ]\n", + " [ 0.91304941 -0.0944498 -0.39676191]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:fp_optics: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:cartToSphere: vec: [[-0.83224483 0.01970389 0.55405802]\n", + " [-0.84541742 0.03282471 0.53309654]\n", + " [-0.8581689 0.04617939 0.51128623]\n", + " [-0.8704104 0.05971236 0.48869231]\n", + " [-0.88206288 0.07336945 0.46538372]\n", + " [-0.89305609 0.08709669 0.44143515]\n", + " [-0.90332811 0.10083941 0.41692894]\n", + " [-0.91282573 0.11454202 0.39195576]\n", + " [-0.83224483 0.01970389 0.55405802]\n", + " [-0.8239669 0.04536742 0.56481885]\n", + " [-0.81507224 0.07095617 0.57499779]\n", + " [-0.80560703 0.09637202 0.58455944]\n", + " [-0.79562716 0.12151868 0.59347336]\n", + " [-0.785198 0.14630191 0.6017141 ]\n", + " [-0.77439366 0.17062995 0.60926174]\n", + " [-0.76329524 0.19441446 0.6161034 ]\n", + " [-0.91282573 0.11454202 0.39195576]\n", + " [-0.90418143 0.14101651 0.40320005]\n", + " [-0.89475488 0.16727809 0.41404318]\n", + " [-0.88459509 0.19322476 0.42444755]\n", + " [-0.87376001 0.21875997 0.43438178]\n", + " [-0.86231601 0.24379234 0.44382022]\n", + " [-0.85033826 0.26823389 0.45274212]\n", + " [-0.83791161 0.29199775 0.46113063]\n", + " [-0.76329524 0.19441446 0.6161034 ]\n", + " [-0.77516902 0.20859351 0.59632352]\n", + " [-0.78676679 0.22278951 0.57564126]\n", + " [-0.79800357 0.23694334 0.55411926]\n", + " [-0.80880117 0.2509972 0.53182805]\n", + " [-0.8190901 0.26489442 0.50884413]\n", + " [-0.82881036 0.2785794 0.48524932]\n", + " [-0.83791161 0.29199775 0.46113063]\n", + " [-0.83800646 0.02548035 0.54506506]\n", + " [-0.85387909 0.04172649 0.5187961 ]\n", + " [-0.86902983 0.05826832 0.49131655]\n", + " [-0.88330912 0.07500558 0.46275173]\n", + " [-0.89658758 0.0918388 0.43323936]\n", + " [-0.9087548 0.1086669 0.40293451]\n", + " [-0.82875954 0.03094088 0.55874886]\n", + " [-0.81819361 0.06235715 0.57155123]\n", + " [-0.80674598 0.09356331 0.58344394]\n", + " [-0.79451552 0.1243813 0.59436889]\n", + " [-0.78162248 0.15463769 0.6042793 ]\n", + " [-0.76820638 0.18416486 0.6131413 ]\n", + " [-0.90912461 0.12605772 0.39699105]\n", + " [-0.89799849 0.15837482 0.41050715]\n", + " [-0.88574515 0.19027032 0.4233825 ]\n", + " [-0.87246758 0.22156414 0.43555672]\n", + " [-0.85828804 0.25208784 0.44698251]\n", + " [-0.84334886 0.28167996 0.45762331]\n", + " [-0.76853936 0.20051022 0.60757132]\n", + " [-0.78291838 0.21790673 0.58271388]\n", + " [-0.79679765 0.23526995 0.55656227]\n", + " [-0.81003023 0.25249294 0.52924318]\n", + " [-0.8224883 0.26947136 0.50089738]\n", + " [-0.83406538 0.28610333 0.47167767]\n", + " [-0.83226327 0.01983607 0.55402561]\n", + " [-0.83226327 0.01983607 0.55402561]\n", + " [-0.83792474 0.29187236 0.46118614]\n", + " [-0.83792474 0.29187236 0.46118614]\n", + " [-0.8344875 0.03662779 0.54980817]\n", + " [-0.82386342 0.06815613 0.56267558]\n", + " [-0.81233557 0.09946104 0.57464635]\n", + " [-0.80000293 0.13036412 0.58566245]\n", + " [-0.78698619 0.1606918 0.59567682]\n", + " [-0.77342622 0.19027602 0.60465437]\n", + " [-0.85032166 0.05298086 0.52358963]\n", + " [-0.83954955 0.08478764 0.53662613]\n", + " [-0.82781629 0.11633328 0.54880485]\n", + " [-0.81522098 0.14743841 0.56006845]\n", + " [-0.80188455 0.17792946 0.5703703 ]\n", + " [-0.78794975 0.20763819 0.57967367]\n", + " [-0.86544087 0.069609 0.49615187]\n", + " [-0.85454526 0.10163591 0.50933538]\n", + " [-0.84263863 0.13336386 0.5217032 ]\n", + " [-0.82982042 0.16461257 0.53319862]\n", + " [-0.81621135 0.19520908 0.5437761 ]\n", + " [-0.80195428 0.22498617 0.5533991 ]\n", + " [-0.87969568 0.08641145 0.46762012]\n", + " [-0.86870111 0.11859866 0.48092903]\n", + " [-0.85665276 0.15044912 0.49346845]\n", + " [-0.84365094 0.18178189 0.50518159]\n", + " [-0.82981636 0.21242516 0.5160236 ]\n", + " [-0.81529147 0.24221348 0.5259586 ]\n", + " [-0.89295693 0.103288 0.43813184]\n", + " [-0.8818886 0.13557359 0.45154434]\n", + " [-0.86973057 0.16748523 0.46423854]\n", + " [-0.85658436 0.19884192 0.47615662]\n", + " [-0.84257115 0.22947327 0.48725339]\n", + " [-0.82783309 0.25921587 0.49749323]\n", + " [-0.90511451 0.12013677 0.40784172]\n", + " [-0.89399869 0.15245703 0.42133502]\n", + " [-0.88176416 0.18436769 0.43416647]\n", + " [-0.86851361 0.21568835 0.44627642]\n", + " [-0.854369 0.24625011 0.45761828]\n", + " [-0.83947256 0.27589112 0.46815586]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:fp_optics: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:cartToSphere: vec: [[-0.01030778 0.87429459 -0.48528623]\n", + " [-0.01928805 0.86154156 -0.50732052]\n", + " [-0.02829159 0.84785055 -0.52947997]\n", + " [-0.03729436 0.8332474 -0.5516411 ]\n", + " [-0.04626972 0.81776497 -0.57368944]\n", + " [-0.05518864 0.80144384 -0.59551825]\n", + " [-0.06402022 0.78433285 -0.61702787]\n", + " [-0.07273217 0.76648942 -0.63812539]\n", + " [-0.01030778 0.87429459 -0.48528623]\n", + " [ 0.01586039 0.8711309 -0.49079466]\n", + " [ 0.04254561 0.86717201 -0.49618804]\n", + " [ 0.0696338 0.86240529 -0.50140627]\n", + " [ 0.09701324 0.85682491 -0.50639857]\n", + " [ 0.12457344 0.85043236 -0.51112255]\n", + " [ 0.1522045 0.84323703 -0.51554351]\n", + " [ 0.17979705 0.83525664 -0.51963388]\n", + " [-0.07273217 0.76648942 -0.63812539]\n", + " [-0.04613009 0.76238216 -0.64548079]\n", + " [-0.01894492 0.75757664 -0.65247125]\n", + " [ 0.00871646 0.7520579 -0.65903941]\n", + " [ 0.03674654 0.74581878 -0.6651346 ]\n", + " [ 0.06503591 0.73886047 -0.67071271]\n", + " [ 0.09347295 0.73119293 -0.67573642]\n", + " [ 0.12194446 0.72283516 -0.68017563]\n", + " [ 0.17979705 0.83525664 -0.51963388]\n", + " [ 0.17225444 0.8218409 -0.54305243]\n", + " [ 0.16442883 0.80749276 -0.56649678]\n", + " [ 0.15634339 0.79223361 -0.58984969]\n", + " [ 0.14802335 0.7760935 -0.61299915]\n", + " [ 0.13949639 0.75911218 -0.63583761]\n", + " [ 0.13079261 0.74133944 -0.6582622 ]\n", + " [ 0.12194446 0.72283516 -0.68017563]\n", + " [-0.01413016 0.86884128 -0.49488904]\n", + " [-0.02515424 0.85257693 -0.52199602]\n", + " [-0.03618987 0.83492859 -0.54916714]\n", + " [-0.04718907 0.8159538 -0.57618799]\n", + " [-0.05809848 0.79572731 -0.60286201]\n", + " [-0.06886059 0.77434263 -0.62900852]\n", + " [ 0.00100027 0.87296974 -0.48777334]\n", + " [ 0.03343515 0.86855903 -0.49445658]\n", + " [ 0.06653304 0.86294062 -0.50090602]\n", + " [ 0.10008734 0.85610095 -0.50702434]\n", + " [ 0.13389458 0.84804284 -0.51273344]\n", + " [ 0.16775264 0.83878701 -0.5179724 ]\n", + " [-0.06118249 0.76484567 -0.64130164]\n", + " [-0.02817302 0.75934514 -0.65007787]\n", + " [ 0.00560597 0.75277999 -0.65824833]\n", + " [ 0.03995695 0.74513376 -0.665717 ]\n", + " [ 0.07467845 0.73640869 -0.67240268]\n", + " [ 0.10956429 0.72662688 -0.67823967]\n", + " [ 0.17645012 0.82955174 -0.52982004]\n", + " [ 0.16701183 0.81248038 -0.5585541 ]\n", + " [ 0.15717146 0.79402882 -0.58720982]\n", + " [ 0.1469746 0.77424875 -0.61557887]\n", + " [ 0.13647216 0.75321335 -0.64346329]\n", + " [ 0.1257206 0.73101851 -0.67067598]\n", + " [-0.01024995 0.87424311 -0.48538018]\n", + " [-0.01024995 0.87424311 -0.48538018]\n", + " [ 0.12187764 0.72292933 -0.68008751]\n", + " [ 0.12187764 0.72292933 -0.68008751]\n", + " [-0.00284446 0.86754665 -0.49734769]\n", + " [ 0.02969363 0.86307879 -0.50419569]\n", + " [ 0.06289968 0.85740731 -0.51078012]\n", + " [ 0.096568 0.85051796 -0.51700467]\n", + " [ 0.13049538 0.84241299 -0.52279184]\n", + " [ 0.16447943 0.83311283 -0.52808099]\n", + " [-0.01378597 0.85121935 -0.52462898]\n", + " [ 0.01899497 0.84658409 -0.53191595]\n", + " [ 0.05245985 0.84075987 -0.53886066]\n", + " [ 0.08640532 0.83373066 -0.54536897]\n", + " [ 0.1206287 0.82549747 -0.55136435]\n", + " [ 0.15492652 0.81608016 -0.55678626]\n", + " [-0.02476518 0.83350341 -0.55195901]\n", + " [ 0.00818626 0.82869062 -0.55964708]\n", + " [ 0.04183994 0.82270829 -0.56692194]\n", + " [ 0.07599446 0.81553919 -0.5736904 ]\n", + " [ 0.11044738 0.80718363 -0.57987582]\n", + " [ 0.14499407 0.79766141 -0.58541695]\n", + " [-0.03573353 0.81445562 -0.57912447]\n", + " [-0.00268279 0.80945313 -0.58717836]\n", + " [ 0.03108993 0.80330571 -0.59475487]\n", + " [ 0.06538477 0.79599557 -0.60176066]\n", + " [ 0.09999945 0.78752299 -0.60811812]\n", + " [ 0.13472833 0.77790812 -0.6137648 ]\n", + " [-0.04663712 0.79415029 -0.60592928]\n", + " [-0.01355721 0.78894493 -0.61431434]\n", + " [ 0.02026498 0.78262478 -0.62216379]\n", + " [ 0.0546308 0.77517224 -0.6293834 ]\n", + " [ 0.08933818 0.76658814 -0.6358941 ]\n", + " [ 0.12418089 0.75689329 -0.64163203]\n", + " [-0.05741793 0.77268085 -0.6321926 ]\n", + " [-0.02437801 0.76725951 -0.64087328]\n", + " [ 0.0094244 0.7607594 -0.64896558]\n", + " [ 0.04379153 0.75316369 -0.65637395]\n", + " [ 0.07852172 0.74447418 -0.66301775]\n", + " [ 0.11340867 0.73471262 -0.6688317 ]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:fp_optics: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:cartToSphere: vec: [[ 1.45241213e-01 6.08830586e-01 -7.79891215e-01]\n", + " [ 1.19051159e-01 6.06526642e-01 -7.86099392e-01]\n", + " [ 9.22633431e-02 6.03596605e-01 -7.91933466e-01]\n", + " [ 6.49845470e-02 6.00039391e-01 -7.97326619e-01]\n", + " [ 3.73218421e-02 5.95857905e-01 -8.02222187e-01]\n", + " [ 9.38288212e-03 5.91059144e-01 -8.06573648e-01]\n", + " [-1.87238560e-02 5.85654574e-01 -8.10344456e-01]\n", + " [-4.68891174e-02 5.79660527e-01 -8.13507888e-01]\n", + " [ 1.45241213e-01 6.08830586e-01 -7.79891215e-01]\n", + " [ 1.53328569e-01 5.87655437e-01 -7.94450400e-01]\n", + " [ 1.61330372e-01 5.65561740e-01 -8.08772174e-01]\n", + " [ 1.69219769e-01 5.42621601e-01 -8.22755412e-01]\n", + " [ 1.76969407e-01 5.18911451e-01 -8.36308995e-01]\n", + " [ 1.84551348e-01 4.94512363e-01 -8.49351707e-01]\n", + " [ 1.91937288e-01 4.69510489e-01 -8.61812032e-01]\n", + " [ 1.99098970e-01 4.43997286e-01 -8.73628073e-01]\n", + " [-4.68891174e-02 5.79660527e-01 -8.13507888e-01]\n", + " [-4.03121013e-02 5.57527543e-01 -8.29179096e-01]\n", + " [-3.35703364e-02 5.34493243e-01 -8.44505776e-01]\n", + " [-2.66889171e-02 5.10625330e-01 -8.59389012e-01]\n", + " [-1.96932285e-02 4.85996503e-01 -8.73738849e-01]\n", + " [-1.26093824e-02 4.60686155e-01 -8.87473532e-01]\n", + " [-5.46443777e-03 4.34781431e-01 -9.00519432e-01]\n", + " [ 1.71365058e-03 4.08377352e-01 -9.12811592e-01]\n", + " [ 1.99098970e-01 4.43997286e-01 -8.73628073e-01]\n", + " [ 1.72372321e-01 4.40203214e-01 -8.81197431e-01]\n", + " [ 1.44982074e-01 4.35972971e-01 -8.88204800e-01]\n", + " [ 1.17029819e-01 4.31304806e-01 -8.94583806e-01]\n", + " [ 8.86186441e-02 4.26201265e-01 -9.00277301e-01]\n", + " [ 5.98548221e-02 4.20669647e-01 -9.05237233e-01]\n", + " [ 3.08485644e-02 4.14722406e-01 -9.09424924e-01]\n", + " [ 1.71365058e-03 4.08377352e-01 -9.12811592e-01]\n", + " [ 1.33930051e-01 6.07831715e-01 -7.82689815e-01]\n", + " [ 1.01415171e-01 6.04586472e-01 -7.90057062e-01]\n", + " [ 6.81084444e-02 6.00399391e-01 -7.96794711e-01]\n", + " [ 3.42068580e-02 5.95274170e-01 -8.02794216e-01]\n", + " [-9.13730178e-05 5.89223737e-01 -8.07969913e-01]\n", + " [-3.45862060e-02 5.82271200e-01 -8.12258606e-01]\n", + " [ 1.48687433e-01 5.99708380e-01 -7.86283604e-01]\n", + " [ 1.58544434e-01 5.73128584e-01 -8.03982145e-01]\n", + " [ 1.68246463e-01 5.45240235e-01 -8.21222390e-01]\n", + " [ 1.77743391e-01 5.16182243e-01 -8.37832429e-01]\n", + " [ 1.86983807e-01 4.86103913e-01 -8.53662721e-01]\n", + " [ 1.95915601e-01 4.55166050e-01 -8.68585600e-01]\n", + " [-4.39467023e-02 5.70147038e-01 -8.20366407e-01]\n", + " [-3.57709722e-02 5.42406584e-01 -8.39354237e-01]\n", + " [-2.73728891e-02 5.13379087e-01 -8.57725269e-01]\n", + " [-1.87990456e-02 4.83196224e-01 -8.75310234e-01]\n", + " [-1.00975442e-02 4.52004273e-01 -8.91958618e-01]\n", + " [-1.31859016e-03 4.19966971e-01 -9.07538431e-01]\n", + " [ 1.87509998e-01 4.42484763e-01 -8.76953382e-01]\n", + " [ 1.54294534e-01 4.37542714e-01 -8.85860921e-01]\n", + " [ 1.20183243e-01 4.31943165e-01 -8.93857422e-01]\n", + " [ 8.53651862e-02 4.25688994e-01 -9.00833872e-01]\n", + " [ 5.00360974e-02 4.18793682e-01 -9.06701848e-01]\n", + " [ 1.44004138e-02 4.11282377e-01 -9.11394226e-01]\n", + " [ 1.45180561e-01 6.08752999e-01 -7.79963070e-01]\n", + " [ 1.45180561e-01 6.08752999e-01 -7.79963070e-01]\n", + " [ 1.78879864e-03 4.08490732e-01 -9.12760715e-01]\n", + " [ 1.78879864e-03 4.08490732e-01 -9.12760715e-01]\n", + " [ 1.37400755e-01 5.98747553e-01 -7.89064256e-01]\n", + " [ 1.47171318e-01 5.72054800e-01 -8.06903903e-01]\n", + " [ 1.56810742e-01 5.44051953e-01 -8.24268078e-01]\n", + " [ 1.66268775e-01 5.14877441e-01 -8.40985086e-01]\n", + " [ 1.75493658e-01 4.84680204e-01 -8.56905523e-01]\n", + " [ 1.84432847e-01 4.53621058e-01 -8.71901635e-01]\n", + " [ 1.04779266e-01 5.95400368e-01 -7.96567453e-01]\n", + " [ 1.14293366e-01 5.68417946e-01 -8.14762582e-01]\n", + " [ 1.23743847e-01 5.40123055e-01 -8.32438914e-01]\n", + " [ 1.33080078e-01 5.10652369e-01 -8.49425601e-01]\n", + " [ 1.42249487e-01 4.80153721e-01 -8.65573502e-01]\n", + " [ 1.51198509e-01 4.48788125e-01 -8.80754353e-01]\n", + " [ 7.13596060e-02 5.91126255e-01 -8.03416179e-01]\n", + " [ 8.05990029e-02 5.63898579e-01 -8.21901572e-01]\n", + " [ 8.98417941e-02 5.35358804e-01 -8.39832962e-01]\n", + " [ 9.90373193e-02 5.05641666e-01 -8.57040323e-01]\n", + " [ 1.08132784e-01 4.74894030e-01 -8.73374468e-01]\n", + " [ 1.17074186e-01 4.43277378e-01 -8.88706251e-01]\n", + " [ 3.73384101e-02 5.85928582e-01 -8.09502032e-01]\n", + " [ 4.62834855e-02 5.58498908e-01 -8.28213022e-01]\n", + " [ 5.52981637e-02 5.29760406e-01 -8.46342735e-01]\n", + " [ 6.43323847e-02 4.99846145e-01 -8.63721700e-01]\n", + " [ 7.33339528e-02 4.68902347e-01 -8.80200386e-01]\n", + " [ 8.22491959e-02 4.37091165e-01 -8.95648582e-01]\n", + " [ 2.91378420e-03 5.79819826e-01 -8.14739516e-01]\n", + " [ 1.15445548e-02 5.52230185e-01 -8.33611748e-01]\n", + " [ 2.03103025e-02 5.23338343e-01 -8.51882897e-01]\n", + " [ 2.91621999e-02 4.93276276e-01 -8.69383736e-01]\n", + " [ 3.80494455e-02 4.62189967e-01 -8.85964262e-01]\n", + " [ 4.69194649e-02 4.30242312e-01 -9.01493271e-01]\n", + " [-3.17139288e-02 5.72822759e-01 -8.19065512e-01]\n", + " [-2.34164208e-02 5.45114399e-01 -8.38034584e-01]\n", + " [-1.49192624e-02 5.16114312e-01 -8.56389766e-01]\n", + " [-6.26964900e-03 4.85954116e-01 -8.73961835e-01]\n", + " [ 2.48356690e-03 4.54779952e-01 -8.90600375e-01]\n", + " [ 1.12894984e-02 4.22755370e-01 -9.06173518e-01]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:fp_optics: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:cartToSphere: vec: [[-0.2029363 -0.43116106 0.87915698]\n", + " [-0.17608076 -0.42791917 0.88649916]\n", + " [-0.14855348 -0.42426636 0.89326923]\n", + " [-0.12045658 -0.42019868 0.89940162]\n", + " [-0.09189363 -0.41571648 0.90483997]\n", + " [-0.06297139 -0.41082481 0.90953701]\n", + " [-0.0338006 -0.40553379 0.91345491]\n", + " [-0.00449562 -0.39985869 0.91656577]\n", + " [-0.2029363 -0.43116106 0.87915698]\n", + " [-0.19655566 -0.45696725 0.86749456]\n", + " [-0.18993729 -0.48229646 0.85516896]\n", + " [-0.18310662 -0.50705498 0.8422394 ]\n", + " [-0.17608927 -0.53115442 0.82877473]\n", + " [-0.16891062 -0.55451157 0.81485344]\n", + " [-0.16159554 -0.57704798 0.80056387]\n", + " [-0.15416834 -0.5986896 0.78600438]\n", + " [-0.00449562 -0.39985869 0.91656577]\n", + " [ 0.00195468 -0.42655667 0.90445873]\n", + " [ 0.00838417 -0.45278505 0.89158029]\n", + " [ 0.01476751 -0.47844591 0.87799284]\n", + " [ 0.02108012 -0.50344908 0.86376771]\n", + " [ 0.02729828 -0.52771229 0.84898442]\n", + " [ 0.03339899 -0.55116038 0.83373062]\n", + " [ 0.03935966 -0.57372376 0.8181026 ]\n", + " [-0.15416834 -0.5986896 0.78600438]\n", + " [-0.12782021 -0.5969359 0.79204136]\n", + " [-0.10085961 -0.59457724 0.79768744]\n", + " [-0.0733938 -0.59161001 0.80287667]\n", + " [-0.04553032 -0.58803446 0.80755338]\n", + " [-0.01737734 -0.58385491 0.81167202]\n", + " [ 0.010956 -0.57908012 0.81519702]\n", + " [ 0.03935966 -0.57372376 0.8181026 ]\n", + " [-0.19129485 -0.42988698 0.8823851 ]\n", + " [-0.15791585 -0.42563897 0.89100733]\n", + " [-0.12362932 -0.42076918 0.89870412]\n", + " [-0.08862523 -0.41527646 0.9053679 ]\n", + " [-0.05310021 -0.40917017 0.91091171]\n", + " [-0.01725969 -0.40247104 0.91526999]\n", + " [-0.2000945 -0.44245505 0.87418288]\n", + " [-0.19211124 -0.47377539 0.85943595]\n", + " [-0.1837963 -0.50428555 0.84375056]\n", + " [-0.17519678 -0.53382061 0.82724945]\n", + " [-0.16635939 -0.5622273 0.81007717]\n", + " [-0.15732966 -0.58936306 0.7924005 ]\n", + " [-0.00178264 -0.41157032 0.91137627]\n", + " [ 0.00611224 -0.44398819 0.89601179]\n", + " [ 0.01395082 -0.47560256 0.87954964]\n", + " [ 0.0216875 -0.50624417 0.86211745]\n", + " [ 0.02927859 -0.53576146 0.84386161]\n", + " [ 0.03668195 -0.56401847 0.82494703]\n", + " [-0.1427879 -0.59792626 0.7887305 ]\n", + " [-0.11006933 -0.59536993 0.79587649]\n", + " [-0.07653732 -0.59190102 0.80236851]\n", + " [-0.04238971 -0.58751839 0.80809978]\n", + " [-0.00782567 -0.58223003 0.81298644]\n", + " [ 0.02695349 -0.57605409 0.81696707]\n", + " [-0.20282434 -0.43123962 0.87914429]\n", + " [-0.20282434 -0.43123962 0.87914429]\n", + " [ 0.03924242 -0.57366747 0.8181477 ]\n", + " [ 0.03924242 -0.57366747 0.8181477 ]\n", + " [-0.18855625 -0.44114619 0.87740332]\n", + " [-0.18056347 -0.47258887 0.86258715]\n", + " [-0.17226194 -0.50321855 0.84681575]\n", + " [-0.16369918 -0.53287015 0.83021201]\n", + " [-0.15492232 -0.56139072 0.81292038]\n", + " [-0.14597707 -0.58863814 0.79510743]\n", + " [-0.1551558 -0.43700835 0.88597425]\n", + " [-0.14714598 -0.46875979 0.87098354]\n", + " [-0.13889273 -0.49969193 0.85499519]\n", + " [-0.13044463 -0.52963915 0.83813279]\n", + " [-0.12184967 -0.55844928 0.82054071]\n", + " [-0.11315415 -0.5859819 0.80238479]\n", + " [-0.12085298 -0.43222801 0.8936294 ]\n", + " [-0.11284161 -0.46423166 0.87849629]\n", + " [-0.10465329 -0.49541272 0.86233052]\n", + " [-0.09633702 -0.52560475 0.84525666]\n", + " [-0.08794113 -0.55465619 0.8274194 ]\n", + " [-0.07951203 -0.58242842 0.80898391]\n", + " [-0.08583792 -0.42680345 0.90026144]\n", + " [-0.07784145 -0.45900146 0.88501885]\n", + " [-0.06973607 -0.49037728 0.86871572]\n", + " [-0.06157053 -0.52076348 0.85147782]\n", + " [-0.0533926 -0.55000884 0.83345036]\n", + " [-0.04524812 -0.57797624 0.81479818]\n", + " [-0.05030744 -0.42074333 0.90578375]\n", + " [-0.04234281 -0.4530762 0.89046563]\n", + " [-0.03433885 -0.48459159 0.87406627]\n", + " [-0.02634334 -0.51512111 0.85671248]\n", + " [-0.0184027 -0.5445136 0.83855011]\n", + " [-0.01056146 -0.57263287 0.8197439 ]\n", + " [-0.01446707 -0.41406779 0.91013107]\n", + " [-0.00655111 -0.44647443 0.89477241]\n", + " [ 0.00133357 -0.47807305 0.87831906]\n", + " [ 0.00914073 -0.50869456 0.86089854]\n", + " [ 0.01682591 -0.53818756 0.84265713]\n", + " [ 0.02434631 -0.56641612 0.82375969]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:fp_optics: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:cartToSphere: vec: [[-3.46328663e-02 -4.69692393e-01 8.82150566e-01]\n", + " [-2.31437469e-02 -4.47133631e-01 8.94167704e-01]\n", + " [-1.14086615e-02 -4.23765555e-01 9.05700059e-01]\n", + " [ 5.26700236e-04 -3.99661721e-01 9.16662551e-01]\n", + " [ 1.26161807e-02 -3.74900715e-01 9.26979119e-01]\n", + " [ 2.48126687e-02 -3.49567305e-01 9.36582634e-01]\n", + " [ 3.70680712e-02 -3.23752714e-01 9.45415326e-01]\n", + " [ 4.93336283e-02 -2.97554154e-01 9.53429451e-01]\n", + " [-3.46328663e-02 -4.69692393e-01 8.82150566e-01]\n", + " [-8.12856081e-03 -4.80374779e-01 8.77025655e-01]\n", + " [ 1.83384748e-02 -4.90541537e-01 8.71224828e-01]\n", + " [ 4.46658609e-02 -5.00156398e-01 8.64782365e-01]\n", + " [ 7.07525107e-02 -5.09187091e-01 8.57742729e-01]\n", + " [ 9.64987871e-02 -5.17604793e-01 8.50160727e-01]\n", + " [ 1.21806178e-01 -5.25383304e-01 8.42101917e-01]\n", + " [ 1.46576464e-01 -5.32498089e-01 8.33643284e-01]\n", + " [ 4.93336283e-02 -2.97554154e-01 9.53429451e-01]\n", + " [ 7.66810475e-02 -3.08720007e-01 9.48056947e-01]\n", + " [ 1.03873284e-01 -3.19571438e-01 9.41851600e-01]\n", + " [ 1.30804134e-01 -3.30069571e-01 9.34849911e-01]\n", + " [ 1.57370611e-01 -3.40179988e-01 9.27098736e-01]\n", + " [ 1.83473633e-01 -3.49872865e-01 9.18654671e-01]\n", + " [ 2.09017993e-01 -3.59122795e-01 9.09583584e-01]\n", + " [ 2.33911364e-01 -3.67908272e-01 8.99960542e-01]\n", + " [ 1.46576464e-01 -5.32498089e-01 8.33643284e-01]\n", + " [ 1.59254818e-01 -5.11208060e-01 8.44573396e-01]\n", + " [ 1.71946270e-01 -4.89039986e-01 8.55145819e-01]\n", + " [ 1.84602879e-01 -4.66073632e-01 8.65272874e-01]\n", + " [ 1.97176315e-01 -4.42390575e-01 8.74878323e-01]\n", + " [ 2.09617907e-01 -4.18075494e-01 8.83896609e-01]\n", + " [ 2.21878983e-01 -3.93217058e-01 8.92272415e-01]\n", + " [ 2.33911364e-01 -3.67908272e-01 8.99960542e-01]\n", + " [-2.95658040e-02 -4.59998268e-01 8.87427438e-01]\n", + " [-1.53126618e-02 -4.31797267e-01 9.01840697e-01]\n", + " [-7.35626529e-04 -4.02453198e-01 9.15440267e-01]\n", + " [ 1.40805591e-02 -3.72108552e-01 9.28082412e-01]\n", + " [ 2.90491581e-02 -3.40919413e-01 9.39643603e-01]\n", + " [ 4.40813277e-02 -3.09056248e-01 9.50021617e-01]\n", + " [-2.30397262e-02 -4.74335333e-01 8.80042705e-01]\n", + " [ 9.43277518e-03 -4.87086197e-01 8.73302960e-01]\n", + " [ 4.17473473e-02 -4.99026178e-01 8.65580749e-01]\n", + " [ 7.37173310e-02 -5.10094218e-01 8.56953700e-01]\n", + " [ 1.05159261e-01 -5.20237167e-01 8.47522755e-01]\n", + " [ 1.35891962e-01 -5.29407529e-01 8.37413305e-01]\n", + " [ 6.12274744e-02 -3.02548615e-01 9.51165355e-01]\n", + " [ 9.46536483e-02 -3.16026980e-01 9.44016756e-01]\n", + " [ 1.27740982e-01 -3.28993789e-01 9.35652354e-01]\n", + " [ 1.60298486e-01 -3.41383819e-01 9.26154136e-01]\n", + " [ 1.92143756e-01 -3.53142146e-01 9.15626235e-01]\n", + " [ 2.23102798e-01 -3.64223661e-01 9.04193710e-01]\n", + " [ 1.52015745e-01 -5.23305009e-01 8.38476643e-01]\n", + " [ 1.67568771e-01 -4.96610277e-01 8.51644843e-01]\n", + " [ 1.83094036e-01 -4.68675834e-01 8.64187212e-01]\n", + " [ 1.98502734e-01 -4.39651030e-01 8.75958696e-01]\n", + " [ 2.13705301e-01 -4.09691858e-01 8.86838557e-01]\n", + " [ 2.28612312e-01 -3.78963357e-01 8.96729159e-01]\n", + " [-3.45034642e-02 -4.69654075e-01 8.82176037e-01]\n", + " [-3.45034642e-02 -4.69654075e-01 8.82176037e-01]\n", + " [ 2.33786746e-01 -3.67966250e-01 8.99969220e-01]\n", + " [ 2.33786746e-01 -3.67966250e-01 8.99969220e-01]\n", + " [-1.80579387e-02 -4.64699224e-01 8.85284441e-01]\n", + " [ 1.45323536e-02 -4.77516193e-01 8.78502758e-01]\n", + " [ 4.69534944e-02 -4.89537469e-01 8.70717196e-01]\n", + " [ 7.90183984e-02 -5.00702261e-01 8.62005417e-01]\n", + " [ 1.10543636e-01 -5.10958106e-01 8.52468133e-01]\n", + " [ 1.41348599e-01 -5.20258577e-01 8.42230127e-01]\n", + " [-3.69406041e-03 -4.36548291e-01 8.99673243e-01]\n", + " [ 2.91893906e-02 -4.49537667e-01 8.92784333e-01]\n", + " [ 6.18716493e-02 -4.61776161e-01 8.84835960e-01]\n", + " [ 9.41643041e-02 -4.73203208e-01 8.75906278e-01]\n", + " [ 1.25883904e-01 -4.83767633e-01 8.66095907e-01]\n", + " [ 1.56851370e-01 -4.93425462e-01 8.55528469e-01]\n", + " [ 1.09722033e-02 -4.07245694e-01 9.13252734e-01]\n", + " [ 4.40876765e-02 -4.20385649e-01 9.06273790e-01]\n", + " [ 7.69696759e-02 -4.32822951e-01 8.98187042e-01]\n", + " [ 1.09428513e-01 -4.44496558e-01 8.89071544e-01]\n", + " [ 1.41280669e-01 -4.55355578e-01 8.79028481e-01]\n", + " [ 1.72348448e-01 -4.65357385e-01 8.68181154e-01]\n", + " [ 2.58554750e-02 -3.76933696e-01 9.25879303e-01]\n", + " [ 5.91400858e-02 -3.90202065e-01 9.18827948e-01]\n", + " [ 9.21590046e-02 -4.02820041e-01 9.10627658e-01]\n", + " [ 1.24721561e-01 -4.14725582e-01 9.01358543e-01]\n", + " [ 1.56644275e-01 -4.25867207e-01 8.91122715e-01]\n", + " [ 1.87750703e-01 -4.36202509e-01 8.80043774e-01]\n", + " [ 4.08683838e-02 -3.45768108e-01 9.37429566e-01]\n", + " [ 7.42576196e-02 -3.59141954e-01 9.30324063e-01]\n", + " [ 1.07349420e-01 -3.71921824e-01 9.22035932e-01]\n", + " [ 1.39952599e-01 -3.84044374e-01 9.12646256e-01]\n", + " [ 1.71883943e-01 -3.95456898e-01 9.02258140e-01]\n", + " [ 2.02968143e-01 -4.06116261e-01 8.90995800e-01]\n", + " [ 5.59216001e-02 -3.13919155e-01 9.47801424e-01]\n", + " [ 8.93498039e-02 -3.27374596e-01 9.40660665e-01]\n", + " [ 1.22449748e-01 -3.40296364e-01 9.32311345e-01]\n", + " [ 1.55030290e-01 -3.52619720e-01 9.22835274e-01]\n", + " [ 1.86908765e-01 -3.64290350e-01 9.12336371e-01]\n", + " [ 2.17910869e-01 -3.75263732e-01 9.00939501e-01]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:fp_optics: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:cartToSphere: vec: [[-0.18463266 0.85083152 -0.4919314 ]\n", + " [-0.19608993 0.86081261 -0.46962792]\n", + " [-0.20777941 0.87029827 -0.44655195]\n", + " [-0.21962728 0.87921654 -0.42277907]\n", + " [-0.2315659 0.88750414 -0.39838879]\n", + " [-0.24353322 0.89510636 -0.37346508]\n", + " [-0.25547205 0.90197709 -0.34809677]\n", + " [-0.26732951 0.90807909 -0.32237756]\n", + " [-0.18463266 0.85083152 -0.4919314 ]\n", + " [-0.20710767 0.83980292 -0.50183411]\n", + " [-0.22999452 0.82796094 -0.51145206]\n", + " [-0.25317523 0.81531478 -0.5207342 ]\n", + " [-0.276538 0.80188256 -0.52963298]\n", + " [-0.29997635 0.78769156 -0.53810426]\n", + " [-0.32338833 0.77277841 -0.54610761]\n", + " [-0.34667602 0.75718914 -0.55360668]\n", + " [-0.26732951 0.90807909 -0.32237756]\n", + " [-0.29156754 0.8973998 -0.33115248]\n", + " [-0.31607074 0.88578137 -0.33983914]\n", + " [-0.34072757 0.87322993 -0.34838803]\n", + " [-0.36543008 0.85976047 -0.35675312]\n", + " [-0.3900723 0.84539804 -0.36489142]\n", + " [-0.41454964 0.83017854 -0.3727629 ]\n", + " [-0.43875938 0.81414904 -0.38033084]\n", + " [-0.34667602 0.75718914 -0.55360668]\n", + " [-0.36021576 0.76692954 -0.53109668]\n", + " [-0.37373784 0.77623977 -0.50771237]\n", + " [-0.38717225 0.78504953 -0.48352341]\n", + " [-0.40045292 0.79329631 -0.45860486]\n", + " [-0.41351699 0.80092517 -0.43303876]\n", + " [-0.42630461 0.80788899 -0.40691494]\n", + " [-0.43875938 0.81414904 -0.38033084]\n", + " [-0.18967115 0.85520302 -0.4823408 ]\n", + " [-0.20388058 0.86711247 -0.45447626]\n", + " [-0.21836455 0.8782053 -0.42552601]\n", + " [-0.23299602 0.88836142 -0.39563474]\n", + " [-0.24766064 0.8974801 -0.36495709]\n", + " [-0.26225494 0.90548013 -0.33365864]\n", + " [-0.19441268 0.84615821 -0.49620559]\n", + " [-0.2222519 0.832094 -0.50815713]\n", + " [-0.25059167 0.8168161 -0.51962994]\n", + " [-0.27922363 0.80035413 -0.53053504]\n", + " [-0.30795169 0.78275833 -0.54079123]\n", + " [-0.3365898 0.76410007 -0.55032571]\n", + " [-0.27781689 0.90351881 -0.32629977]\n", + " [-0.30771528 0.88979815 -0.33700231]\n", + " [-0.3379007 0.87467207 -0.3475225 ]\n", + " [-0.36817306 0.85816445 -0.35777419]\n", + " [-0.39833719 0.84032149 -0.36767823]\n", + " [-0.42820128 0.82121391 -0.37716226]\n", + " [-0.35249724 0.76153864 -0.54387921]\n", + " [-0.36908795 0.773197 -0.51569418]\n", + " [-0.38558222 0.78413839 -0.48626468]\n", + " [-0.40185687 0.79424453 -0.45572654]\n", + " [-0.41779613 0.8034143 -0.42423089]\n", + " [-0.43329124 0.8115644 -0.39194633]\n", + " [-0.18474738 0.85083008 -0.49189082]\n", + " [-0.18474738 0.85083008 -0.49189082]\n", + " [-0.4386352 0.814185 -0.38039709]\n", + " [-0.4386352 0.814185 -0.38039709]\n", + " [-0.1994104 0.85054158 -0.48663591]\n", + " [-0.22744657 0.83649467 -0.4985426 ]\n", + " [-0.25596545 0.82121579 -0.50998659]\n", + " [-0.28475969 0.80473433 -0.52087866]\n", + " [-0.31363388 0.78710043 -0.53113718]\n", + " [-0.34240207 0.76838556 -0.54068886]\n", + " [-0.21381022 0.86248049 -0.45870753]\n", + " [-0.24235243 0.84848551 -0.47046535]\n", + " [-0.2713306 0.83321127 -0.48180773]\n", + " [-0.30054034 0.81668632 -0.49264487]\n", + " [-0.3297877 0.79896031 -0.50289412]\n", + " [-0.35888652 0.78010492 -0.51248101]\n", + " [-0.22845688 0.87360274 -0.42968093]\n", + " [-0.25743037 0.8596643 -0.44125605]\n", + " [-0.28679865 0.84440605 -0.45246542]\n", + " [-0.31635977 0.82785539 -0.46321911]\n", + " [-0.34592048 0.81006124 -0.47343406]\n", + " [-0.37529364 0.7910953 -0.4830351 ]\n", + " [-0.24322422 0.88378824 -0.3997003 ]\n", + " [-0.27255669 0.86991083 -0.41105717]\n", + " [-0.30224767 0.85467989 -0.42210027]\n", + " [-0.33209675 0.83812151 -0.43274021]\n", + " [-0.36191064 0.82028372 -0.44289424]\n", + " [-0.39150076 0.80123808 -0.45248723]\n", + " [-0.25799861 0.89293599 -0.36892008]\n", + " [-0.28761927 0.87912342 -0.38002258]\n", + " [-0.31756607 0.86393048 -0.3908656 ]\n", + " [-0.34763923 0.84738212 -0.40136082]\n", + " [-0.37764484 0.82952545 -0.41142666]\n", + " [-0.40739278 0.81043173 -0.42098875]\n", + " [-0.2726769 0.90096446 -0.33750608]\n", + " [-0.30251532 0.88721948 -0.34831894]\n", + " [-0.33265053 0.87207435 -0.35892889]\n", + " [-0.36288263 0.85555317 -0.36924921]\n", + " [-0.39301678 0.83770231 -0.37920002]\n", + " [-0.42286154 0.81859265 -0.38870836]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:fp_optics: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:cartToSphere: vec: [[-3.65790497e-02 -1.17331267e-01 9.92418937e-01]\n", + " [-2.20566363e-02 -9.47788992e-02 9.95253970e-01]\n", + " [-7.07800260e-03 -7.17664478e-02 9.97396350e-01]\n", + " [ 8.27762544e-03 -4.83813719e-02 9.98794635e-01]\n", + " [ 2.39358805e-02 -2.47117380e-02 9.99408027e-01]\n", + " [ 3.98259806e-02 -8.46896476e-04 9.99206272e-01]\n", + " [ 5.58796970e-02 2.31222772e-02 9.98169735e-01]\n", + " [ 7.20307488e-02 4.71035537e-02 9.96289529e-01]\n", + " [-3.65790497e-02 -1.17331267e-01 9.92418937e-01]\n", + " [-1.54788178e-02 -1.33985375e-01 9.90862415e-01]\n", + " [ 6.18644461e-03 -1.50775858e-01 9.88548617e-01]\n", + " [ 2.83111744e-02 -1.67636459e-01 9.85442284e-01]\n", + " [ 5.07947478e-02 -1.84501157e-01 9.81518832e-01]\n", + " [ 7.35399904e-02 -2.01303895e-01 9.76764358e-01]\n", + " [ 9.64520564e-02 -2.17978663e-01 9.71175732e-01]\n", + " [ 1.19437859e-01 -2.34459874e-01 9.64760678e-01]\n", + " [ 7.20307488e-02 4.71035537e-02 9.96289529e-01]\n", + " [ 9.50369587e-02 3.13497735e-02 9.94979984e-01]\n", + " [ 1.18440427e-01 1.52508578e-02 9.92844034e-01]\n", + " [ 1.42142866e-01 -1.13031579e-03 9.89845507e-01]\n", + " [ 1.66046922e-01 -1.77303949e-02 9.85958444e-01]\n", + " [ 1.90055051e-01 -3.44847825e-02 9.81167609e-01]\n", + " [ 2.14069358e-01 -5.13275123e-02 9.75469013e-01]\n", + " [ 2.37992172e-01 -6.81916237e-02 9.68870285e-01]\n", + " [ 1.19437859e-01 -2.34459874e-01 9.64760678e-01]\n", + " [ 1.36056333e-01 -2.12125262e-01 9.67724934e-01]\n", + " [ 1.52901783e-01 -1.89176281e-01 9.69965659e-01]\n", + " [ 1.69900604e-01 -1.65694885e-01 9.71431413e-01]\n", + " [ 1.86980477e-01 -1.41765643e-01 9.72080657e-01]\n", + " [ 2.04069655e-01 -1.17476780e-01 9.71882082e-01]\n", + " [ 2.21096943e-01 -9.29203344e-02 9.70815097e-01]\n", + " [ 2.37992172e-01 -6.81916237e-02 9.68870285e-01]\n", + " [-3.02369526e-02 -1.07617066e-01 9.93732506e-01]\n", + " [-1.21195403e-02 -7.96560754e-02 9.96748728e-01]\n", + " [ 6.60364685e-03 -5.10907782e-02 9.98672181e-01]\n", + " [ 2.57937514e-02 -2.20830015e-02 9.99423345e-01]\n", + " [ 4.53203527e-02 7.20273642e-03 9.98946538e-01]\n", + " [ 6.50586656e-02 3.65985510e-02 9.97210066e-01]\n", + " [-2.74063515e-02 -1.24495161e-01 9.91841644e-01]\n", + " [-1.15061242e-03 -1.45006399e-01 9.89430048e-01]\n", + " [ 2.58481939e-02 -1.65656739e-01 9.85844671e-01]\n", + " [ 5.34028532e-02 -1.86324571e-01 9.81035825e-01]\n", + " [ 8.13343479e-02 -2.06888292e-01 9.74977927e-01]\n", + " [ 1.09468806e-01 -2.27226530e-01 9.67669719e-01]\n", + " [ 8.19507489e-02 4.01990808e-02 9.95825340e-01]\n", + " [ 1.10426260e-01 2.06503697e-02 9.93669766e-01]\n", + " [ 1.39400719e-01 6.45889773e-04 9.90235842e-01]\n", + " [ 1.68694612e-01 -1.96979854e-02 9.85471520e-01]\n", + " [ 1.98128350e-01 -4.02623172e-02 9.79348816e-01]\n", + " [ 2.27521761e-01 -6.09252163e-02 9.71865200e-01]\n", + " [ 1.26571912e-01 -2.24746468e-01 9.66161775e-01]\n", + " [ 1.47100748e-01 -1.96949219e-01 9.69315416e-01]\n", + " [ 1.67897323e-01 -1.68310497e-01 9.71330050e-01]\n", + " [ 1.88828033e-01 -1.38984820e-01 9.72125092e-01]\n", + " [ 2.09760799e-01 -1.09134628e-01 9.71642959e-01]\n", + " [ 2.30564947e-01 -7.89307692e-02 9.69850369e-01]\n", + " [-3.64591880e-02 -1.17311672e-01 9.92425664e-01]\n", + " [-3.64591880e-02 -1.17311672e-01 9.92425664e-01]\n", + " [ 2.37853159e-01 -6.82187409e-02 9.68902512e-01]\n", + " [ 2.37853159e-01 -6.82187409e-02 9.68902512e-01]\n", + " [-2.11091999e-02 -1.14789210e-01 9.93165565e-01]\n", + " [ 5.34513299e-03 -1.35281462e-01 9.90792791e-01]\n", + " [ 3.25237951e-02 -1.55932374e-01 9.87232140e-01]\n", + " [ 6.02410855e-02 -1.76620274e-01 9.82433861e-01]\n", + " [ 8.83188055e-02 -1.97223261e-01 9.76372252e-01]\n", + " [ 1.16583210e-01 -2.17619486e-01 9.69045982e-01]\n", + " [-2.79707947e-03 -8.67862210e-02 9.96223031e-01]\n", + " [ 2.41728267e-02 -1.07196750e-01 9.93943928e-01]\n", + " [ 5.18177286e-02 -1.27821473e-01 9.90442625e-01]\n", + " [ 7.99555584e-02 -1.48538791e-01 9.85668979e-01]\n", + " [ 1.08409620e-01 -1.69226224e-01 9.79596774e-01]\n", + " [ 1.37005830e-01 -1.89760801e-01 9.72224378e-01]\n", + " [ 1.60962096e-02 -5.81638201e-02 9.98177280e-01]\n", + " [ 4.35156892e-02 -7.84497099e-02 9.95967885e-01]\n", + " [ 7.15655557e-02 -9.90054381e-02 9.92510098e-01]\n", + " [ 1.00066106e-01 -1.19709955e-01 9.87753158e-01]\n", + " [ 1.28840989e-01 -1.40440734e-01 9.81670209e-01]\n", + " [ 1.57714985e-01 -1.61074148e-01 9.74259258e-01]\n", + " [ 3.54332338e-02 -2.90834363e-02 9.98948767e-01]\n", + " [ 6.32396262e-02 -4.92005875e-02 9.96784857e-01]\n", + " [ 9.16351683e-02 -6.96432429e-02 9.93354325e-01]\n", + " [ 1.20441250e-01 -9.02913984e-02 9.88605770e-01]\n", + " [ 1.49480981e-01 -1.11023054e-01 9.82511739e-01]\n", + " [ 1.78577578e-01 -1.31714476e-01 9.75069918e-01]\n", + " [ 5.50844168e-02 2.90380151e-04 9.98481659e-01]\n", + " [ 8.32165984e-02 -1.96140120e-02 9.96338441e-01]\n", + " [ 1.11898809e-01 -3.98994630e-02 9.92918269e-01]\n", + " [ 1.40952505e-01 -6.04474007e-02 9.88169268e-01]\n", + " [ 1.70199742e-01 -8.11368709e-02 9.82063570e-01]\n", + " [ 1.99462118e-01 -1.01844589e-01 9.74598658e-01]\n", + " [ 7.49252282e-02 2.97893328e-02 9.96744102e-01]\n", + " [ 1.03322080e-01 1.01405290e-02 9.94596259e-01]\n", + " [ 1.32231063e-01 -9.94461803e-03 9.91169032e-01]\n", + " [ 1.61472998e-01 -3.03491614e-02 9.86410360e-01]\n", + " [ 1.90868716e-01 -5.09535902e-02 9.80292234e-01]\n", + " [ 2.20238435e-01 -7.16355748e-02 9.72812097e-01]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:fp_optics: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:cartToSphere: vec: [[ 0.25382892 -0.16428251 -0.95319575]\n", + " [ 0.26354881 -0.1895105 -0.94584766]\n", + " [ 0.27324796 -0.21508622 -0.93758918]\n", + " [ 0.28287628 -0.2408996 -0.92841176]\n", + " [ 0.29238646 -0.26684267 -0.91831647]\n", + " [ 0.30173338 -0.29280803 -0.90731495]\n", + " [ 0.31087413 -0.31868838 -0.89543006]\n", + " [ 0.3197683 -0.34437714 -0.88269622]\n", + " [ 0.25382892 -0.16428251 -0.95319575]\n", + " [ 0.27991122 -0.15273779 -0.94779791]\n", + " [ 0.30571038 -0.14119067 -0.94159777]\n", + " [ 0.33112994 -0.1296906 -0.93463004]\n", + " [ 0.35607768 -0.11829013 -0.92693912]\n", + " [ 0.38046574 -0.10704543 -0.91857885]\n", + " [ 0.40421026 -0.09601703 -0.90961244]\n", + " [ 0.42723081 -0.08527053 -0.90011264]\n", + " [ 0.3197683 -0.34437714 -0.88269622]\n", + " [ 0.34669195 -0.33229775 -0.87714474]\n", + " [ 0.37321859 -0.31996103 -0.87082307]\n", + " [ 0.39924776 -0.30742004 -0.86376741]\n", + " [ 0.42468588 -0.29473028 -0.85602334]\n", + " [ 0.44944662 -0.28194928 -0.84764517]\n", + " [ 0.47345028 -0.26913672 -0.83869557]\n", + " [ 0.49662219 -0.25635503 -0.82924574]\n", + " [ 0.42723081 -0.08527053 -0.90011264]\n", + " [ 0.4380678 -0.10883133 -0.89232973]\n", + " [ 0.44867879 -0.1328718 -0.88376039]\n", + " [ 0.45901176 -0.15727572 -0.8743984 ]\n", + " [ 0.46901747 -0.18193178 -0.86424733]\n", + " [ 0.47864946 -0.20673266 -0.85332075]\n", + " [ 0.48786433 -0.23157421 -0.84164231]\n", + " [ 0.49662219 -0.25635503 -0.82924574]\n", + " [ 0.25815595 -0.17519247 -0.95008584]\n", + " [ 0.27006208 -0.20635944 -0.94046917]\n", + " [ 0.28188678 -0.23793909 -0.92947557]\n", + " [ 0.29354183 -0.26973188 -0.917103 ]\n", + " [ 0.30494416 -0.30154003 -0.90337294]\n", + " [ 0.3160158 -0.33316627 -0.88833229]\n", + " [ 0.26526294 -0.15933769 -0.95091907]\n", + " [ 0.29705228 -0.1451802 -0.94375985]\n", + " [ 0.32831991 -0.13106774 -0.93542893]\n", + " [ 0.3588943 -0.11709574 -0.92600403]\n", + " [ 0.38861365 -0.10336771 -0.91558427]\n", + " [ 0.41732503 -0.08999715 -0.90428996]\n", + " [ 0.33151928 -0.33905801 -0.8804173 ]\n", + " [ 0.36426292 -0.32407411 -0.87309135]\n", + " [ 0.39630975 -0.30875628 -0.86464336]\n", + " [ 0.4274846 -0.29320571 -0.85515339]\n", + " [ 0.45762847 -0.27752833 -0.84472138]\n", + " [ 0.48659681 -0.26183509 -0.83346621]\n", + " [ 0.43190256 -0.09551324 -0.89684859]\n", + " [ 0.44503876 -0.12472848 -0.88678256]\n", + " [ 0.45778363 -0.15454803 -0.87552787]\n", + " [ 0.47004537 -0.184765 -0.86308704]\n", + " [ 0.48173848 -0.21518172 -0.84948506]\n", + " [ 0.49278447 -0.24560758 -0.83476966]\n", + " [ 0.2539517 -0.16432864 -0.95315509]\n", + " [ 0.2539517 -0.16432864 -0.95315509]\n", + " [ 0.49651532 -0.25631408 -0.82932239]\n", + " [ 0.49651532 -0.25631408 -0.82932239]\n", + " [ 0.26951077 -0.17018007 -0.94784107]\n", + " [ 0.30141516 -0.15594479 -0.94065409]\n", + " [ 0.33278489 -0.14172939 -0.93229126]\n", + " [ 0.36344809 -0.12762905 -0.9228306 ]\n", + " [ 0.39324309 -0.11374661 -0.9123714 ]\n", + " [ 0.42201747 -0.10019467 -0.90103401]\n", + " [ 0.28152641 -0.20129258 -0.93820263]\n", + " [ 0.31371812 -0.18685579 -0.9309489 ]\n", + " [ 0.34533964 -0.17236956 -0.92251248]\n", + " [ 0.37621803 -0.15792887 -0.91297232]\n", + " [ 0.40619197 -0.14363522 -0.90242839]\n", + " [ 0.43511062 -0.12959886 -0.89100105]\n", + " [ 0.29343967 -0.23282715 -0.92719182]\n", + " [ 0.3258606 -0.21821649 -0.91988936]\n", + " [ 0.35767768 -0.20348903 -0.9114049 ]\n", + " [ 0.38871688 -0.18874039 -0.9018183 ]\n", + " [ 0.41881727 -0.17407172 -0.89123012]\n", + " [ 0.44782972 -0.15959179 -0.87976076]\n", + " [ 0.30516166 -0.2645845 -0.91480676]\n", + " [ 0.33775202 -0.24982789 -0.9074743 ]\n", + " [ 0.36970712 -0.23488833 -0.89896836]\n", + " [ 0.40085209 -0.21986276 -0.88936942]\n", + " [ 0.43102643 -0.20485306 -0.87877838]\n", + " [ 0.46008274 -0.18996757 -0.86731551]\n", + " [ 0.31660864 -0.29636717 -0.90106907]\n", + " [ 0.34930682 -0.28149346 -0.89372601]\n", + " [ 0.3813412 -0.26637168 -0.88522597]\n", + " [ 0.41253642 -0.25110053 -0.8756496 ]\n", + " [ 0.44273257 -0.23578336 -0.86509773]\n", + " [ 0.47178373 -0.22052913 -0.85369023]\n", + " [ 0.32770199 -0.32797821 -0.88602579]\n", + " [ 0.36044499 -0.31301755 -0.87869188]\n", + " [ 0.39249912 -0.29774504 -0.87022545]\n", + " [ 0.42368904 -0.28226123 -0.8607068 ]\n", + " [ 0.45385552 -0.26667138 -0.85023617]\n", + " [ 0.48285373 -0.25108583 -0.83893276]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:fp_optics: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:cartToSphere: vec: [[-3.36273878e-02 6.03490992e-01 7.96660418e-01]\n", + " [-2.80294957e-02 5.82343708e-01 8.12459324e-01]\n", + " [-2.24477325e-02 5.60286599e-01 8.27994581e-01]\n", + " [-1.68890665e-02 5.37393888e-01 8.43162243e-01]\n", + " [-1.13636476e-02 5.13743309e-01 8.57868684e-01]\n", + " [-5.88465827e-03 4.89416817e-01 8.72030131e-01]\n", + " [-4.67902808e-04 4.64501219e-01 8.85572357e-01]\n", + " [ 4.86869809e-03 4.39088472e-01 8.98430637e-01]\n", + " [-3.36273878e-02 6.03490992e-01 7.96660418e-01]\n", + " [-6.03751775e-02 6.00429461e-01 7.97395323e-01]\n", + " [-8.76370678e-02 5.96728292e-01 7.97643461e-01]\n", + " [-1.15292881e-01 5.92390577e-01 7.97358737e-01]\n", + " [-1.43225319e-01 5.87422637e-01 7.96505589e-01]\n", + " [-1.71319159e-01 5.81834378e-01 7.95058804e-01]\n", + " [-1.99460653e-01 5.75639882e-01 7.93003263e-01]\n", + " [-2.27537387e-01 5.68857968e-01 7.90333695e-01]\n", + " [ 4.86869809e-03 4.39088472e-01 8.98430637e-01]\n", + " [-2.25907401e-02 4.34463611e-01 9.00406036e-01]\n", + " [-5.05931932e-02 4.29392144e-01 9.01699903e-01]\n", + " [-7.90255032e-02 4.23875158e-01 9.02266491e-01]\n", + " [-1.07775308e-01 4.17917966e-01 9.02069319e-01]\n", + " [-1.36729139e-01 4.11530636e-01 9.01081394e-01]\n", + " [-1.65771632e-01 4.04728413e-01 8.99285648e-01]\n", + " [-1.94785920e-01 3.97531907e-01 8.96675431e-01]\n", + " [-2.27537387e-01 5.68857968e-01 7.90333695e-01]\n", + " [-2.23574756e-01 5.46665444e-01 8.06951808e-01]\n", + " [-2.19358270e-01 5.23588290e-01 8.23247990e-01]\n", + " [-2.14894410e-01 4.99694538e-01 8.39122018e-01]\n", + " [-2.10192115e-01 4.75057606e-01 8.54482034e-01]\n", + " [-2.05263064e-01 4.49757975e-01 8.69243831e-01]\n", + " [-2.00121841e-01 4.23884028e-01 8.83330957e-01]\n", + " [-1.94785920e-01 3.97531907e-01 8.96675431e-01]\n", + " [-3.12758298e-02 5.94377461e-01 8.03577785e-01]\n", + " [-2.44260717e-02 5.67837284e-01 8.22778333e-01]\n", + " [-1.76069169e-02 5.40003886e-01 8.41478342e-01]\n", + " [-1.08357246e-02 5.11018884e-01 8.59501185e-01]\n", + " [-4.13671900e-03 4.81033225e-01 8.76692605e-01]\n", + " [ 2.46009968e-03 4.50208857e-01 8.92919892e-01]\n", + " [-4.51996808e-02 6.02163840e-01 7.97092027e-01]\n", + " [-7.83439183e-02 5.97980342e-01 7.97672703e-01]\n", + " [-1.12140615e-01 5.92838910e-01 7.97475084e-01]\n", + " [-1.46372671e-01 5.86749835e-01 7.96429327e-01]\n", + " [-1.80827896e-01 5.79731419e-01 7.94488989e-01]\n", + " [-2.15297427e-01 5.71811529e-01 7.91630339e-01]\n", + " [-7.04775066e-03 4.37214833e-01 8.99329483e-01]\n", + " [-4.10818020e-02 4.31247213e-01 9.01298024e-01]\n", + " [-7.58188053e-02 4.24609251e-01 9.02196482e-01]\n", + " [-1.11051697e-01 4.17308946e-01 9.01953859e-01]\n", + " [-1.46571491e-01 4.09364876e-01 9.00520514e-01]\n", + " [-1.82165126e-01 4.00807331e-01 8.97869339e-01]\n", + " [-2.25745047e-01 5.59319187e-01 7.97622230e-01]\n", + " [-2.20716085e-01 5.31517001e-01 8.17786089e-01]\n", + " [-2.15312190e-01 5.02453131e-01 8.37365817e-01]\n", + " [-2.09548784e-01 4.72260399e-01 8.56188894e-01]\n", + " [-2.03447397e-01 4.41087065e-01 8.74100313e-01]\n", + " [-1.97036090e-01 4.09099100e-01 8.90962797e-01]\n", + " [-3.36986783e-02 6.03410926e-01 7.96718051e-01]\n", + " [-3.36986783e-02 6.03410926e-01 7.96718051e-01]\n", + " [-1.94705439e-01 3.97647975e-01 8.96641445e-01]\n", + " [-1.94705439e-01 3.97647975e-01 8.96641445e-01]\n", + " [-4.28213648e-02 5.93087804e-01 8.03998251e-01]\n", + " [-7.60920096e-02 5.88794562e-01 8.04693091e-01]\n", + " [-1.10016107e-01 5.83559099e-01 8.04583889e-01]\n", + " [-1.44377336e-01 5.77391037e-01 8.03601129e-01]\n", + " [-1.78963860e-01 5.70308021e-01 8.01698633e-01]\n", + " [-2.13566611e-01 5.62337475e-01 7.98852844e-01]\n", + " [-3.60789905e-02 5.66427194e-01 8.23321651e-01]\n", + " [-6.96556391e-02 5.61824682e-01 8.24318578e-01]\n", + " [-1.03890599e-01 5.56325899e-01 8.24444199e-01]\n", + " [-1.38569902e-01 5.49938594e-01 8.23629726e-01]\n", + " [-1.73482567e-01 5.42678824e-01 8.21829358e-01]\n", + " [-2.08418657e-01 5.34573110e-01 8.19019690e-01]\n", + " [-2.93396440e-02 5.38473021e-01 8.42131813e-01]\n", + " [-6.31459324e-02 5.33561548e-01 8.43400656e-01]\n", + " [-9.76182018e-02 5.27801687e-01 8.43739336e-01]\n", + " [-1.32544760e-01 5.21199810e-01 8.43079264e-01]\n", + " [-1.67715243e-01 5.13771122e-01 8.41374371e-01]\n", + " [-2.02918597e-01 5.05541926e-01 8.38600861e-01]\n", + " [-2.26211490e-02 5.09366086e-01 8.60252564e-01]\n", + " [-5.65818728e-02 5.04143479e-01 8.61764379e-01]\n", + " [-9.12184011e-02 4.98122460e-01 8.62295320e-01]\n", + " [-1.26320999e-01 4.91308878e-01 8.61776416e-01]\n", + " [-1.61679753e-01 4.83718008e-01 8.60160767e-01]\n", + " [-1.97082531e-01 4.75376682e-01 8.57423750e-01]\n", + " [-1.59482792e-02 4.79256824e-01 8.77529799e-01]\n", + " [-4.99894320e-02 4.73719621e-01 8.79255809e-01]\n", + " [-8.47175414e-02 4.67436454e-01 8.79958010e-01]\n", + " [-1.19924379e-01 4.60413585e-01 8.79566640e-01]\n", + " [-1.55400416e-01 4.52667249e-01 8.78033640e-01]\n", + " [-1.90932764e-01 4.44225464e-01 8.75333317e-01]\n", + " [-9.35153531e-03 4.48307177e-01 8.93830646e-01]\n", + " [-4.34001861e-02 4.42452198e-01 8.95741300e-01]\n", + " [-7.81475681e-02 4.35906591e-01 8.96592662e-01]\n", + " [-1.13386420e-01 4.28677804e-01 8.96314041e-01]\n", + " [-1.48907611e-01 4.20783726e-01 8.94856178e-01]\n", + " [-1.84498016e-01 4.12254012e-01 8.92192307e-01]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:cartToSphere: vec: [[-0.87963055 0.38448975 0.28003164]\n", + " [-0.87562651 0.37462195 0.30485506]\n", + " [-0.87094901 0.36414485 0.32991871]\n", + " [-0.8655761 0.35309328 0.35511004]\n", + " [-0.85949481 0.34150754 0.38031733]\n", + " [-0.85270185 0.32943119 0.40543143]\n", + " [-0.84520401 0.31691014 0.43034653]\n", + " [-0.83701826 0.30399237 0.45496051]\n", + " [-0.87963055 0.38448975 0.28003164]\n", + " [-0.89189339 0.36254113 0.27035184]\n", + " [-0.90373565 0.33978962 0.26039374]\n", + " [-0.91507094 0.31631653 0.250178 ]\n", + " [-0.92582064 0.29220971 0.23972822]\n", + " [-0.93591526 0.26756073 0.22907179]\n", + " [-0.9452949 0.24246381 0.21824033]\n", + " [-0.95390962 0.21701544 0.20726974]\n", + " [-0.83701826 0.30399237 0.45496051]\n", + " [-0.84959056 0.28049516 0.44667477]\n", + " [-0.86173881 0.25628713 0.437862 ]\n", + " [-0.87337493 0.2314551 0.42853793]\n", + " [-0.8844208 0.20608641 0.41872216]\n", + " [-0.89480724 0.18027097 0.40843895]\n", + " [-0.90447355 0.15410343 0.39771815]\n", + " [-0.91336773 0.12768402 0.38659564]\n", + " [-0.95390962 0.21701544 0.20726974]\n", + " [-0.95068873 0.20525531 0.23251064]\n", + " [-0.94663642 0.19309043 0.25806118]\n", + " [-0.94172742 0.18056178 0.28380787]\n", + " [-0.93594608 0.16771126 0.30964151]\n", + " [-0.92928686 0.15458282 0.33545505]\n", + " [-0.9217551 0.14122353 0.36114187]\n", + " [-0.91336773 0.12768402 0.38659564]\n", + " [-0.87800862 0.38019011 0.29078574]\n", + " [-0.8726521 0.36768119 0.32138584]\n", + " [-0.86626113 0.35429102 0.35223504]\n", + " [-0.85880801 0.3400917 0.38312717]\n", + " [-0.85028675 0.32516336 0.41386137]\n", + " [-0.84071407 0.30959135 0.44424436]\n", + " [-0.88501078 0.37499046 0.27593128]\n", + " [-0.89976913 0.34753925 0.26387873]\n", + " [-0.91380912 0.31896197 0.25142822]\n", + " [-0.92698269 0.28941783 0.23862192]\n", + " [-0.9391619 0.25907533 0.2255103 ]\n", + " [-0.95024065 0.22810885 0.21215337]\n", + " [-0.84257515 0.29388544 0.45132967]\n", + " [-0.85771054 0.26459872 0.44081759]\n", + " [-0.87212031 0.23433048 0.42952927]\n", + " [-0.8856565 0.20324126 0.41749916]\n", + " [-0.89819174 0.17149685 0.40477207]\n", + " [-0.90961782 0.13927383 0.39140544]\n", + " [-0.95257729 0.21202822 0.21826713]\n", + " [-0.94807404 0.19733853 0.24942557]\n", + " [-0.94229587 0.18208138 0.2809357 ]\n", + " [-0.93520996 0.16633348 0.3125948 ]\n", + " [-0.9268062 0.15017587 0.34420558]\n", + " [-0.91709924 0.1336967 0.3755718 ]\n", + " [-0.87966053 0.38438347 0.28008339]\n", + " [-0.87966053 0.38438347 0.28008339]\n", + " [-0.91336879 0.12782122 0.38654779]\n", + " [-0.91336879 0.12782122 0.38654779]\n", + " [-0.8833874 0.3707397 0.28666842]\n", + " [-0.89822299 0.34312729 0.27469824]\n", + " [-0.91233359 0.31439406 0.26230478]\n", + " [-0.92557033 0.28470123 0.2495291 ]\n", + " [-0.937805 0.25421788 0.23642136]\n", + " [-0.94893125 0.22311854 0.22304171]\n", + " [-0.8780981 0.35807689 0.31737151]\n", + " [-0.89311549 0.33003807 0.3056462 ]\n", + " [-0.90739274 0.30089862 0.29342534]\n", + " [-0.9207799 0.2708226 0.2807481 ]\n", + " [-0.93314836 0.23997904 0.26766434]\n", + " [-0.94439115 0.20854233 0.25423503]\n", + " [-0.87175308 0.3445487 0.34832852]\n", + " [-0.88689542 0.31613391 0.33686179]\n", + " [-0.90128899 0.2866434 0.32482874]\n", + " [-0.91478384 0.25624109 0.31226755]\n", + " [-0.92725133 0.22509466 0.29922796]\n", + " [-0.93858378 0.19337817 0.28577154]\n", + " [-0.86432388 0.33022918 0.3793322 ]\n", + " [-0.87953298 0.30149177 0.36813646]\n", + " [-0.89399183 0.27170564 0.35630697]\n", + " [-0.907551 0.24103325 0.34388101]\n", + " [-0.92008201 0.20964077 0.33090761]\n", + " [-0.93147652 0.17770245 0.31744815]\n", + " [-0.85580422 0.31519903 0.41018131]\n", + " [-0.87102147 0.28619242 0.39926869]\n", + " [-0.88549419 0.25616504 0.387659 ]\n", + " [-0.89907364 0.22527792 0.37538839]\n", + " [-0.91163165 0.19369641 0.36250439]\n", + " [-0.92305958 0.16159552 0.34906718]\n", + " [-0.84621082 0.29954368 0.44068223]\n", + " [-0.86137781 0.27032071 0.43006392]\n", + " [-0.87581301 0.24010579 0.41868936]\n", + " [-0.8893683 0.20905937 0.40659341]\n", + " [-0.90191607 0.17734697 0.39382161]\n", + " [-0.91334789 0.14514474 0.38043216]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:fp_optics: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:cartToSphere: vec: [[ 8.42074894e-01 1.46574499e-02 -5.39161416e-01]\n", + " [ 8.55367245e-01 1.95537962e-03 -5.18018391e-01]\n", + " [ 8.68232334e-01 -1.10020461e-02 -4.96035855e-01]\n", + " [ 8.80580456e-01 -2.41622106e-02 -4.73280306e-01]\n", + " [ 8.92331805e-01 -3.74735740e-02 -4.49821832e-01]\n", + " [ 9.03415470e-01 -5.08845187e-02 -4.25736133e-01]\n", + " [ 9.13768951e-01 -6.43423795e-02 -4.01106423e-01]\n", + " [ 9.23338556e-01 -7.77932323e-02 -3.76024099e-01]\n", + " [ 8.42074894e-01 1.46574499e-02 -5.39161416e-01]\n", + " [ 8.48529185e-01 4.04942320e-02 -5.27596854e-01]\n", + " [ 8.54298883e-01 6.61685746e-02 -5.15553234e-01]\n", + " [ 8.59373098e-01 9.15790652e-02 -5.03081657e-01]\n", + " [ 8.63751175e-01 1.16624353e-01 -4.90237359e-01]\n", + " [ 8.67442629e-01 1.41203423e-01 -4.77079530e-01]\n", + " [ 8.70466791e-01 1.65216500e-01 -4.63671300e-01]\n", + " [ 8.72851968e-01 1.88567439e-01 -4.50079730e-01]\n", + " [ 9.23338556e-01 -7.77932323e-02 -3.76024099e-01]\n", + " [ 9.29933537e-01 -5.09948648e-02 -3.64174602e-01]\n", + " [ 9.35672794e-01 -2.42404043e-02 -3.52035262e-01]\n", + " [ 9.40545734e-01 2.36374528e-03 -3.39658851e-01]\n", + " [ 9.44553196e-01 2.87145129e-02 -3.27100499e-01]\n", + " [ 9.47706825e-01 5.47119334e-02 -3.14417523e-01]\n", + " [ 9.50028384e-01 8.02573517e-02 -3.01670063e-01]\n", + " [ 9.51549366e-01 1.05251094e-01 -2.88922153e-01]\n", + " [ 8.72851968e-01 1.88567439e-01 -4.50079730e-01]\n", + " [ 8.85720526e-01 1.77865994e-01 -4.28792301e-01]\n", + " [ 8.98180032e-01 1.66682491e-01 -4.06804102e-01]\n", + " [ 9.10142054e-01 1.55064021e-01 -3.84183017e-01]\n", + " [ 9.21526208e-01 1.43060713e-01 -3.61002880e-01]\n", + " [ 9.32261382e-01 1.30723522e-01 -3.37342670e-01]\n", + " [ 9.42286221e-01 1.18103381e-01 -3.13286241e-01]\n", + " [ 9.51549366e-01 1.05251094e-01 -2.88922153e-01]\n", + " [ 8.47940068e-01 9.24299948e-03 -5.30011517e-01]\n", + " [ 8.63955953e-01 -6.50224669e-03 -5.03525403e-01]\n", + " [ 8.79239768e-01 -2.25787758e-02 -4.75844122e-01]\n", + " [ 8.93640524e-01 -3.88912949e-02 -4.47095159e-01]\n", + " [ 9.07027613e-01 -5.53446671e-02 -4.17418108e-01]\n", + " [ 9.19289586e-01 -7.18413941e-02 -3.86969599e-01]\n", + " [ 8.45018198e-01 2.58932906e-02 -5.34110272e-01]\n", + " [ 8.52470210e-01 5.74634341e-02 -5.19608021e-01]\n", + " [ 8.58881819e-01 8.86888876e-02 -5.04436619e-01]\n", + " [ 8.64247565e-01 1.19383035e-01 -4.88696058e-01]\n", + " [ 8.68584930e-01 1.49360001e-01 -4.72495300e-01]\n", + " [ 8.71933297e-01 1.78437405e-01 -4.55952210e-01]\n", + " [ 9.26286715e-01 -6.60646589e-02 -3.70982996e-01]\n", + " [ 9.33796051e-01 -3.32366843e-02 -3.56258696e-01]\n", + " [ 9.40008325e-01 -5.80794867e-04 -3.41151011e-01]\n", + " [ 9.44920343e-01 3.17118165e-02 -3.25760504e-01]\n", + " [ 9.48553459e-01 6.34569046e-02 -3.10192772e-01]\n", + " [ 9.50951779e-01 9.44725056e-02 -2.94560112e-01]\n", + " [ 8.78500229e-01 1.83884497e-01 -4.40935188e-01]\n", + " [ 8.94009055e-01 1.70437623e-01 -4.14365571e-01]\n", + " [ 9.08814761e-01 1.56313107e-01 -3.86809958e-01]\n", + " [ 9.22765907e-01 1.41602157e-01 -3.58401883e-01]\n", + " [ 9.35731629e-01 1.26398490e-01 -3.29286714e-01]\n", + " [ 9.47603116e-01 1.10795814e-01 -2.99620796e-01]\n", + " [ 8.42144184e-01 1.47030267e-02 -5.39051940e-01]\n", + " [ 8.42144184e-01 1.47030267e-02 -5.39051940e-01]\n", + " [ 9.51515155e-01 1.05210969e-01 -2.89049410e-01]\n", + " [ 9.51515155e-01 1.05210969e-01 -2.89049410e-01]\n", + " [ 8.50823903e-01 2.04782054e-02 -5.25051739e-01]\n", + " [ 8.58288462e-01 5.21834179e-02 -5.10507401e-01]\n", + " [ 8.64689929e-01 8.35551049e-02 -4.95307854e-01]\n", + " [ 8.70022818e-01 1.14406460e-01 -4.79553395e-01]\n", + " [ 8.74304848e-01 1.44551148e-01 -4.63352996e-01]\n", + " [ 8.77576166e-01 1.73805083e-01 -4.46824201e-01]\n", + " [ 8.66864308e-01 4.84621029e-03 -4.98520597e-01]\n", + " [ 8.74358403e-01 3.68937037e-02 -4.83876262e-01]\n", + " [ 8.80730018e-01 6.86383823e-02 -4.68618617e-01]\n", + " [ 8.85973471e-01 9.98932949e-02 -4.52849135e-01]\n", + " [ 8.90106780e-01 1.30472282e-01 -4.36677117e-01]\n", + " [ 8.93171329e-01 1.60189184e-01 -4.20219470e-01]\n", + " [ 8.82167707e-01 -1.11379405e-02 -4.70803656e-01]\n", + " [ 8.89682120e-01 2.11921786e-02 -4.56088387e-01]\n", + " [ 8.96021792e-01 5.32489459e-02 -4.40805511e-01]\n", + " [ 9.01181052e-01 8.48451513e-02 -4.25057656e-01]\n", + " [ 9.05178216e-01 1.15795839e-01 -4.08954424e-01]\n", + " [ 9.08055256e-01 1.45915508e-01 -3.92612170e-01]\n", + " [ 8.96582970e-01 -2.73793448e-02 -4.42028675e-01]\n", + " [ 9.04107905e-01 5.17317408e-03 -4.27272904e-01]\n", + " [ 9.10412843e-01 3.74814143e-02 -4.11999513e-01]\n", + " [ 9.15492555e-01 6.93573611e-02 -3.96311667e-01]\n", + " [ 9.19366021e-01 1.00617162e-01 -3.80318689e-01]\n", + " [ 9.22075763e-01 1.31077016e-01 -3.64136105e-01]\n", + " [ 9.09979296e-01 -4.37836037e-02 -4.12335636e-01]\n", + " [ 9.17504538e-01 -1.10705326e-02 -3.97571209e-01]\n", + " [ 9.23771737e-01 2.14280057e-02 -3.82343588e-01]\n", + " [ 9.28776470e-01 5.35227004e-02 -3.66755489e-01]\n", + " [ 9.32538724e-01 8.50300897e-02 -3.50915106e-01]\n", + " [ 9.35101710e-01 1.15767830e-01 -3.34936713e-01]\n", + " [ 9.22245068e-01 -6.02540440e-02 -3.81881506e-01]\n", + " [ 9.29760335e-01 -2.74444645e-02 -3.67141008e-01]\n", + " [ 9.35987263e-01 5.18169373e-03 -3.51995730e-01]\n", + " [ 9.40922357e-01 3.74336904e-02 -3.36546931e-01]\n", + " [ 9.44586657e-01 6.91276111e-02 -3.20900953e-01]\n", + " [ 9.47024067e-01 1.00081600e-01 -3.05170591e-01]]\n", + "DEBUG:root:fp_optics: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:fp_optics: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:cartToSphere: vec: [[ 0.20229389 0.43368253 -0.87806415]\n", + " [ 0.17560377 0.42979032 -0.88568821]\n", + " [ 0.14824517 0.42547445 -0.89274569]\n", + " [ 0.12031957 0.42073339 -0.89916996]\n", + " [ 0.09192992 0.41556996 -0.90490359]\n", + " [ 0.06318232 0.4099918 -0.90989819]\n", + " [ 0.03418682 0.40401169 -0.91411477]\n", + " [ 0.00505711 0.39764764 -0.91752427]\n", + " [ 0.20229389 0.43368253 -0.87806415]\n", + " [ 0.20910803 0.40762215 -0.88888583]\n", + " [ 0.21563205 0.3812908 -0.89895503]\n", + " [ 0.22184024 0.35479568 -0.90824387]\n", + " [ 0.22770756 0.32824758 -0.91673486]\n", + " [ 0.23320915 0.30176079 -0.92442085]\n", + " [ 0.23831989 0.27545338 -0.93130503]\n", + " [ 0.24301417 0.24944745 -0.93740071]\n", + " [ 0.00505711 0.39764764 -0.91752427]\n", + " [ 0.01224931 0.37071917 -0.92866423]\n", + " [ 0.01940526 0.34354542 -0.93893556]\n", + " [ 0.02649691 0.31623829 -0.94830969]\n", + " [ 0.03349713 0.28891091 -0.95676979]\n", + " [ 0.04037976 0.26167706 -0.96431042]\n", + " [ 0.04711947 0.23465157 -0.97093687]\n", + " [ 0.05369129 0.20795181 -0.97666437]\n", + " [ 0.24301417 0.24944745 -0.93740071]\n", + " [ 0.21761333 0.24397007 -0.94505187]\n", + " [ 0.19148641 0.23833429 -0.95211854]\n", + " [ 0.16473975 0.23254021 -0.95853318]\n", + " [ 0.13747966 0.2265928 -0.96423807]\n", + " [ 0.10981292 0.2205019 -0.96918524]\n", + " [ 0.08184721 0.214282 -0.97333666]\n", + " [ 0.05369129 0.20795181 -0.97666437]\n", + " [ 0.19076946 0.43194845 -0.88149166]\n", + " [ 0.15759591 0.42689279 -0.89046397]\n", + " [ 0.12351901 0.42119895 -0.89851795]\n", + " [ 0.08872757 0.41487032 -0.90554406]\n", + " [ 0.05341701 0.407921 -0.91145328]\n", + " [ 0.01779149 0.4003767 -0.91617791]\n", + " [ 0.20520896 0.42234718 -0.88289985]\n", + " [ 0.21336895 0.39021106 -0.89566122]\n", + " [ 0.22106769 0.35777405 -0.90726336]\n", + " [ 0.22825882 0.32523864 -0.91766973]\n", + " [ 0.23489652 0.29281528 -0.92686721]\n", + " [ 0.24093434 0.26072298 -0.93486586]\n", + " [ 0.00829526 0.38596635 -0.92247556]\n", + " [ 0.01708902 0.35278389 -0.93554876]\n", + " [ 0.02580019 0.31934395 -0.9472876 ]\n", + " [ 0.0343784 0.28585437 -0.9576562 ]\n", + " [ 0.04277551 0.25252465 -0.96664448]\n", + " [ 0.05094505 0.21956716 -0.97426632]\n", + " [ 0.23201962 0.24716721 -0.94078439]\n", + " [ 0.20038533 0.24034874 -0.94977798]\n", + " [ 0.16776612 0.23329171 -0.9578254 ]\n", + " [ 0.13435775 0.22600323 -0.96481632]\n", + " [ 0.1003568 0.2185014 -0.97066248]\n", + " [ 0.06596198 0.21081467 -0.975298 ]\n", + " [ 0.20222764 0.4335814 -0.87812935]\n", + " [ 0.20222764 0.4335814 -0.87812935]\n", + " [ 0.05376561 0.20806423 -0.97663634]\n", + " [ 0.05376561 0.20806423 -0.97663634]\n", + " [ 0.19376429 0.42067045 -0.88627974]\n", + " [ 0.20197762 0.38840955 -0.89907901]\n", + " [ 0.20975208 0.35584716 -0.91070131]\n", + " [ 0.21704159 0.32318611 -0.92111003]\n", + " [ 0.22380083 0.29063679 -0.93029213]\n", + " [ 0.22998375 0.25841784 -0.9382578 ]\n", + " [ 0.1606253 0.41550485 -0.89529617]\n", + " [ 0.16897949 0.382932 -0.90818997]\n", + " [ 0.1769583 0.3500586 -0.91986126]\n", + " [ 0.18451623 0.31708872 -0.93027335]\n", + " [ 0.19160909 0.28423258 -0.93941354]\n", + " [ 0.19819218 0.25170753 -0.94729255]\n", + " [ 0.12657745 0.4097222 -0.90338578]\n", + " [ 0.13505778 0.3768997 -0.91635474]\n", + " [ 0.14322714 0.34378135 -0.9280627 ]\n", + " [ 0.15103996 0.31057261 -0.93847301]\n", + " [ 0.15845252 0.27748364 -0.94757355]\n", + " [ 0.16542104 0.24473035 -0.95537581]\n", + " [ 0.09180944 0.40332649 -0.91043878]\n", + " [ 0.10040136 0.37031829 -0.92346301]\n", + " [ 0.10874838 0.33702237 -0.93519501]\n", + " [ 0.1168041 0.30364546 -0.94559835]\n", + " [ 0.12452435 0.27039769 -0.9546616 ]\n", + " [ 0.13186551 0.23749358 -0.96239716]\n", + " [ 0.05651653 0.39633252 -0.91636587]\n", + " [ 0.06520506 0.36320452 -0.92942497]\n", + " [ 0.07371666 0.32979992 -0.94116835]\n", + " [ 0.08200347 0.29632636 -0.95155984]\n", + " [ 0.09002 0.26299381 -0.9605887 ]\n", + " [ 0.09772188 0.23001565 -0.96826816]\n", + " [ 0.02090266 0.38876661 -0.92109913]\n", + " [ 0.02967193 0.35558631 -0.93417233]\n", + " [ 0.03833381 0.32214314 -0.94591454]\n", + " [ 0.04683862 0.288645 -0.95628982]\n", + " [ 0.05513895 0.25530155 -0.96528794]\n", + " [ 0.06318897 0.22232536 -0.97292271]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:fp_optics: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:cartToSphere: vec: [[ 0.24171521 -0.52550867 0.81572936]\n", + " [ 0.21627321 -0.53429504 0.8171626 ]\n", + " [ 0.19009734 -0.54274258 0.8181036 ]\n", + " [ 0.16329473 -0.5508041 0.81850453]\n", + " [ 0.13597259 -0.55843635 0.81832775]\n", + " [ 0.10823846 -0.56559993 0.81754581]\n", + " [ 0.08020065 -0.57225954 0.81614146]\n", + " [ 0.0519684 -0.57838433 0.8141074 ]\n", + " [ 0.24171521 -0.52550867 0.81572936]\n", + " [ 0.23783427 -0.50345236 0.83064468]\n", + " [ 0.23354227 -0.48058399 0.84527927]\n", + " [ 0.22886228 -0.45697649 0.85953158]\n", + " [ 0.22381693 -0.43270737 0.87330997]\n", + " [ 0.21842849 -0.40785894 0.88653261]\n", + " [ 0.21271923 -0.38251862 0.89912737]\n", + " [ 0.20671187 -0.35677898 0.91103181]\n", + " [ 0.0519684 -0.57838433 0.8141074 ]\n", + " [ 0.04614058 -0.55609377 0.8298378 ]\n", + " [ 0.04015226 -0.53290035 0.84522483]\n", + " [ 0.03402585 -0.50887237 0.86016926]\n", + " [ 0.02778391 -0.48408312 0.87458081]\n", + " [ 0.0214496 -0.45861257 0.88837741]\n", + " [ 0.01504693 -0.43254849 0.90148511]\n", + " [ 0.0086008 -0.40598648 0.91383861]\n", + " [ 0.20671187 -0.35677898 0.91103181]\n", + " [ 0.17993555 -0.36445678 0.91367087]\n", + " [ 0.15247707 -0.37198867 0.91562829]\n", + " [ 0.12443852 -0.37932897 0.91685581]\n", + " [ 0.09592326 -0.38643573 0.91731464]\n", + " [ 0.0670377 -0.39327036 0.91697567]\n", + " [ 0.0378922 -0.39979773 0.91581983]\n", + " [ 0.0086008 -0.40598648 0.91383861]\n", + " [ 0.23070647 -0.52930392 0.81646304]\n", + " [ 0.19901637 -0.53985043 0.81789608]\n", + " [ 0.16633043 -0.54984079 0.81854096]\n", + " [ 0.13284597 -0.55919374 0.81832409]\n", + " [ 0.09876104 -0.56783678 0.81719499]\n", + " [ 0.06427542 -0.57570675 0.815126 ]\n", + " [ 0.23998903 -0.51602678 0.82226616]\n", + " [ 0.23495197 -0.48843894 0.84037193]\n", + " [ 0.2293206 -0.45970324 0.85795396]\n", + " [ 0.22313679 -0.42996043 0.87483941]\n", + " [ 0.21644156 -0.3993621 0.89087764]\n", + " [ 0.20927609 -0.36807132 0.90593985]\n", + " [ 0.04954577 -0.56876072 0.82100942]\n", + " [ 0.04229341 -0.54082562 0.84007078]\n", + " [ 0.03482206 -0.51160182 0.85851674]\n", + " [ 0.02717316 -0.4812221 0.87617744]\n", + " [ 0.01938938 -0.44983383 0.89290177]\n", + " [ 0.0115153 -0.41760185 0.90855715]\n", + " [ 0.19514885 -0.36023032 0.91222313]\n", + " [ 0.16186039 -0.36954894 0.91500535]\n", + " [ 0.12764866 -0.37860242 0.9167148 ]\n", + " [ 0.09270332 -0.38731199 0.91727614]\n", + " [ 0.05722036 -0.39560662 0.91663582]\n", + " [ 0.02140453 -0.40342318 0.91476313]\n", + " [ 0.24161703 -0.52546528 0.8157864 ]\n", + " [ 0.24161703 -0.52546528 0.8157864 ]\n", + " [ 0.00872317 -0.40605749 0.9138059 ]\n", + " [ 0.00872317 -0.40605749 0.9138059 ]\n", + " [ 0.22902025 -0.51984563 0.82298861]\n", + " [ 0.22383428 -0.49219388 0.84121543]\n", + " [ 0.21807778 -0.46338247 0.85890556]\n", + " [ 0.21179229 -0.4335518 0.87588633]\n", + " [ 0.20501836 -0.40285325 0.89200713]\n", + " [ 0.19779678 -0.37145009 0.90713905]\n", + " [ 0.19716855 -0.53034633 0.82453461]\n", + " [ 0.19157052 -0.50254425 0.84305991]\n", + " [ 0.18546924 -0.47355111 0.86101714]\n", + " [ 0.17890507 -0.44350592 0.87823429]\n", + " [ 0.17191731 -0.41255941 0.89456088]\n", + " [ 0.16454594 -0.3808754 0.90986733]\n", + " [ 0.16432582 -0.54030613 0.82526742]\n", + " [ 0.15832907 -0.51239922 0.84402544]\n", + " [ 0.15189561 -0.48327287 0.86219201]\n", + " [ 0.14506481 -0.45306437 0.87959586]\n", + " [ 0.13787532 -0.42192364 0.8960864 ]\n", + " [ 0.13036702 -0.39001507 0.91153315]\n", + " [ 0.13068891 -0.54964362 0.8251135 ]\n", + " [ 0.12430495 -0.52167697 0.84403876]\n", + " [ 0.11754988 -0.49246573 0.86235696]\n", + " [ 0.11046276 -0.46214545 0.87989747]\n", + " [ 0.1030825 -0.43086519 0.89650945]\n", + " [ 0.09544966 -0.39878977 0.91206145]\n", + " [ 0.09645554 -0.55828597 0.82402251]\n", + " [ 0.08969491 -0.53030372 0.8430497 ]\n", + " [ 0.08262803 -0.50105539 0.86146161]\n", + " [ 0.0752945 -0.470675 0.87908804]\n", + " [ 0.06773439 -0.43931079 0.89577792]\n", + " [ 0.05998971 -0.40712781 0.91139902]\n", + " [ 0.06182556 -0.56616959 0.82196691]\n", + " [ 0.0546993 -0.53821474 0.84103084]\n", + " [ 0.04733129 -0.50897636 0.85947822]\n", + " [ 0.03976242 -0.47858741 0.87713912]\n", + " [ 0.03203459 -0.44719547 0.8938624 ]\n", + " [ 0.02419167 -0.41496548 0.90951548]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:cartToSphere: vec: [[ 0.19075662 0.83192051 -0.52107598]\n", + " [ 0.18331275 0.81847713 -0.54451044]\n", + " [ 0.17557234 0.80410533 -0.56796916]\n", + " [ 0.16755825 0.78882653 -0.59133488]\n", + " [ 0.15929539 0.77267087 -0.61449549]\n", + " [ 0.15081103 0.75567813 -0.63734339]\n", + " [ 0.14213502 0.7378982 -0.65977563]\n", + " [ 0.13329958 0.71939097 -0.68169484]\n", + " [ 0.19075662 0.83192051 -0.52107598]\n", + " [ 0.21811372 0.8228907 -0.52466875]\n", + " [ 0.24517481 0.81315327 -0.52789305]\n", + " [ 0.27183601 0.80275471 -0.53074482]\n", + " [ 0.29799594 0.79174933 -0.53322736]\n", + " [ 0.32355552 0.78019898 -0.53535165]\n", + " [ 0.34841709 0.76817282 -0.5371369 ]\n", + " [ 0.37248316 0.75574757 -0.53861109]\n", + " [ 0.13329958 0.71939097 -0.68169484]\n", + " [ 0.16162987 0.71011889 -0.68527874]\n", + " [ 0.18972416 0.70023801 -0.68823795]\n", + " [ 0.21747374 0.68979629 -0.69056951]\n", + " [ 0.24477418 0.67884896 -0.69227862]\n", + " [ 0.27152596 0.66745797 -0.69337833]\n", + " [ 0.2976344 0.65569155 -0.6938893 ]\n", + " [ 0.32300857 0.64362439 -0.6938394 ]\n", + " [ 0.37248316 0.75574757 -0.53861109]\n", + " [ 0.36687316 0.74191997 -0.56121195]\n", + " [ 0.36073423 0.72730697 -0.58386247]\n", + " [ 0.35409191 0.71193366 -0.60643993]\n", + " [ 0.34697143 0.6958331 -0.62882997]\n", + " [ 0.33939871 0.67904669 -0.65092558]\n", + " [ 0.33140121 0.66162434 -0.67262654]\n", + " [ 0.32300857 0.64362439 -0.6938394 ]\n", + " [ 0.18764323 0.82614461 -0.53129569]\n", + " [ 0.17831872 0.80904145 -0.56004853]\n", + " [ 0.16857115 0.79056422 -0.58872063]\n", + " [ 0.15844547 0.7707647 -0.61710356]\n", + " [ 0.14799192 0.74971622 -0.64499921]\n", + " [ 0.13726645 0.72751476 -0.67222034]\n", + " [ 0.20268951 0.82802864 -0.52276719]\n", + " [ 0.23603359 0.81648008 -0.52692354]\n", + " [ 0.26882957 0.80391398 -0.53052141]\n", + " [ 0.30088976 0.79042713 -0.53356378]\n", + " [ 0.33203166 0.77613331 -0.53607094]\n", + " [ 0.36207565 0.761163 -0.53808188]\n", + " [ 0.14570404 0.71549036 -0.68325975]\n", + " [ 0.18028071 0.70371135 -0.687233 ]\n", + " [ 0.2143944 0.6910646 -0.69026426]\n", + " [ 0.24785103 0.67764882 -0.6923597 ]\n", + " [ 0.28046738 0.66357796 -0.69354332]\n", + " [ 0.3120708 0.64898032 -0.69385615]\n", + " [ 0.37002261 0.74985968 -0.54844666]\n", + " [ 0.36278683 0.7323817 -0.5761968 ]\n", + " [ 0.35478219 0.71374795 -0.60389855]\n", + " [ 0.34605521 0.69401595 -0.63133799]\n", + " [ 0.33665369 0.67326193 -0.65831806]\n", + " [ 0.32662909 0.6515813 -0.68465703]\n", + " [ 0.19082563 0.83184651 -0.52116884]\n", + " [ 0.19082563 0.83184651 -0.52116884]\n", + " [ 0.32295249 0.64372854 -0.69376888]\n", + " [ 0.32295249 0.64372854 -0.69376888]\n", + " [ 0.19955403 0.8223123 -0.53289837]\n", + " [ 0.23303389 0.81072472 -0.53704808]\n", + " [ 0.26596943 0.79812269 -0.54061117]\n", + " [ 0.29817283 0.78460339 -0.54359037]\n", + " [ 0.32946207 0.77028093 -0.54600553]\n", + " [ 0.35965873 0.75528582 -0.54789499]\n", + " [ 0.1903477 0.80517321 -0.5616617 ]\n", + " [ 0.22417096 0.79349201 -0.56578955]\n", + " [ 0.25746107 0.78080932 -0.56925443]\n", + " [ 0.29002932 0.76722341 -0.57205877]\n", + " [ 0.32169454 0.75284918 -0.57422186]\n", + " [ 0.35228116 0.73781732 -0.57578085]\n", + " [ 0.18069614 0.78666754 -0.59034151]\n", + " [ 0.21480098 0.77491848 -0.5944425 ]\n", + " [ 0.24838516 0.76218742 -0.59780863]\n", + " [ 0.2812586 0.74857345 -0.60044266]\n", + " [ 0.31324021 0.73419202 -0.60236421]\n", + " [ 0.34415639 0.71917386 -0.60361026]\n", + " [ 0.17064364 0.76684733 -0.61872928]\n", + " [ 0.20496668 0.75505706 -0.62279812]\n", + " [ 0.23878348 0.74231102 -0.62606453]\n", + " [ 0.27190248 0.72870876 -0.62853209]\n", + " [ 0.30414213 0.71436585 -0.63022139]\n", + " [ 0.33532986 0.69941271 -0.63117014]\n", + " [ 0.16023981 0.7457861 -0.64662686]\n", + " [ 0.19471586 0.73398193 -0.65065832]\n", + " [ 0.22870242 0.721255 -0.65382446]\n", + " [ 0.26200658 0.70770482 -0.6561299 ]\n", + " [ 0.29444608 0.69344659 -0.65759663]\n", + " [ 0.32584867 0.67861007 -0.65826363]\n", + " [ 0.14954003 0.72358001 -0.67384698]\n", + " [ 0.18410238 0.71178957 -0.67783621]\n", + " [ 0.21819441 0.69911592 -0.68090243]\n", + " [ 0.25162225 0.68565807 -0.68305142]\n", + " [ 0.28420293 0.67153038 -0.68430669]\n", + " [ 0.31576396 0.65686157 -0.6847087 ]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:fp_optics: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:fp_optics: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:cartToSphere: vec: [[ 0.31811577 -0.18038889 0.93073208]\n", + " [ 0.30923809 -0.20575749 0.92845875]\n", + " [ 0.29979968 -0.23146101 0.92549768]\n", + " [ 0.28984403 -0.25738285 0.92181588]\n", + " [ 0.27941324 -0.28341035 0.91739131]\n", + " [ 0.26854908 -0.30943378 0.91221277]\n", + " [ 0.25729388 -0.33534589 0.90627976]\n", + " [ 0.24569123 -0.36104191 0.89960245]\n", + " [ 0.31811577 -0.18038889 0.93073208]\n", + " [ 0.29503274 -0.1702588 0.94019553]\n", + " [ 0.27116535 -0.15992654 0.94915376]\n", + " [ 0.246613 -0.14941425 0.95752672]\n", + " [ 0.22147366 -0.13874836 0.96524521]\n", + " [ 0.19584537 -0.12795946 0.97225046]\n", + " [ 0.16982728 -0.11708194 0.978494 ]\n", + " [ 0.14352014 -0.10615351 0.9839377 ]\n", + " [ 0.24569123 -0.36104191 0.89960245]\n", + " [ 0.22105277 -0.35231652 0.90940021]\n", + " [ 0.19573023 -0.34313244 0.91866741]\n", + " [ 0.16981531 -0.33351035 0.92732605]\n", + " [ 0.14340207 -0.32347469 0.93530742]\n", + " [ 0.11658823 -0.31305422 0.94255198]\n", + " [ 0.08947552 -0.30228222 0.9490098 ]\n", + " [ 0.06216919 -0.29119641 0.95464111]\n", + " [ 0.14352014 -0.10615351 0.9839377 ]\n", + " [ 0.13268187 -0.13191738 0.98234074]\n", + " [ 0.12151448 -0.15808747 0.97991968]\n", + " [ 0.11005712 -0.18455372 0.97664085]\n", + " [ 0.09835035 -0.211207 0.97248075]\n", + " [ 0.0864367 -0.23793804 0.96742658]\n", + " [ 0.0743608 -0.26463744 0.96147673]\n", + " [ 0.06216919 -0.29119641 0.95464111]\n", + " [ 0.31423889 -0.19136687 0.92985625]\n", + " [ 0.30297435 -0.2226997 0.92661286]\n", + " [ 0.29091115 -0.25441928 0.9223023 ]\n", + " [ 0.27812731 -0.28631665 0.91687948]\n", + " [ 0.26469981 -0.31818974 0.91032373]\n", + " [ 0.2507071 -0.34984212 0.9026386 ]\n", + " [ 0.30812452 -0.17608456 0.93490829]\n", + " [ 0.27929237 -0.16353126 0.94617826]\n", + " [ 0.24938112 -0.15069563 0.95660853]\n", + " [ 0.21857166 -0.13762453 0.96606724]\n", + " [ 0.18704459 -0.12437424 0.97444619]\n", + " [ 0.15498309 -0.11100947 0.9816604 ]\n", + " [ 0.23507911 -0.35720746 0.90395832]\n", + " [ 0.20441107 -0.34620183 0.91562023]\n", + " [ 0.17280639 -0.33452757 0.92640664]\n", + " [ 0.14043716 -0.32222808 0.9361872 ]\n", + " [ 0.1074833 -0.30935631 0.94485237]\n", + " [ 0.07413361 -0.29597542 0.95231442]\n", + " [ 0.13892826 -0.1173671 0.98332289]\n", + " [ 0.12541955 -0.14923081 0.98081604]\n", + " [ 0.11145512 -0.18159507 0.97703684]\n", + " [ 0.09710899 -0.21425866 0.97193779]\n", + " [ 0.08245946 -0.24702043 0.96549539]\n", + " [ 0.06758951 -0.27967918 0.95771145]\n", + " [ 0.31800893 -0.18044066 0.93075856]\n", + " [ 0.31800893 -0.18044066 0.93075856]\n", + " [ 0.06230461 -0.29114435 0.95464816]\n", + " [ 0.06230461 -0.29114435 0.95464816]\n", + " [ 0.30429149 -0.18704616 0.93403449]\n", + " [ 0.27528849 -0.17457459 0.94537821]\n", + " [ 0.24521628 -0.16179356 0.95587228]\n", + " [ 0.21425432 -0.14875039 0.96538511]\n", + " [ 0.18258247 -0.13550179 0.97380845]\n", + " [ 0.15038384 -0.12211294 0.98105715]\n", + " [ 0.29286442 -0.21848149 0.93085781]\n", + " [ 0.26342124 -0.20624967 0.94237483]\n", + " [ 0.23293505 -0.19363413 0.95301998]\n", + " [ 0.20158178 -0.18068295 0.96266217]\n", + " [ 0.16953981 -0.16745363 0.97119284]\n", + " [ 0.13699268 -0.15401219 0.97852606]\n", + " [ 0.28066111 -0.25030776 0.92659342]\n", + " [ 0.25083956 -0.23833033 0.93823141]\n", + " [ 0.21999924 -0.22589849 0.94898378]\n", + " [ 0.18831359 -0.21306027 0.95871962]\n", + " [ 0.15596048 -0.19987313 0.96732986]\n", + " [ 0.1231245 -0.18640325 0.97472775]\n", + " [ 0.26775832 -0.28231673 0.92119637]\n", + " [ 0.23761719 -0.2706102 0.9329031 ]\n", + " [ 0.20648082 -0.25838185 0.94371844]\n", + " [ 0.17452125 -0.24567886 0.95351153]\n", + " [ 0.14191656 -0.23255784 0.96217282]\n", + " [ 0.10885275 -0.2190846 0.96961488]\n", + " [ 0.25423216 -0.3143065 0.91464607]\n", + " [ 0.22382864 -0.30288756 0.92636918]\n", + " [ 0.19245385 -0.29088242 0.93720272]\n", + " [ 0.16027937 -0.27833682 0.94701591]\n", + " [ 0.12748399 -0.26530601 0.95569899]\n", + " [ 0.09425508 -0.25185489 0.96316411]\n", + " [ 0.24016076 -0.34608025 0.90694612]\n", + " [ 0.20955164 -0.33496435 0.91863322]\n", + " [ 0.17799655 -0.32320081 0.92943987]\n", + " [ 0.14566733 -0.31083363 0.93923558]\n", + " [ 0.11274363 -0.29791642 0.94791069]\n", + " [ 0.07941393 -0.28451279 0.95537736]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:fp_optics: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:cartToSphere: vec: [[-0.35600148 0.75066323 -0.55656775]\n", + " [-0.3696201 0.76035282 -0.53408293]\n", + " [-0.38320966 0.76962036 -0.51071993]\n", + " [-0.39669998 0.77839568 -0.48654834]\n", + " [-0.41002469 0.78661644 -0.46164307]\n", + " [-0.42312059 0.79422788 -0.43608604]\n", + " [-0.43592754 0.80118303 -0.409967 ]\n", + " [-0.44838891 0.80744327 -0.3833833 ]\n", + " [-0.35600148 0.75066323 -0.55656775]\n", + " [-0.37895884 0.73422182 -0.56330145]\n", + " [-0.40157379 0.717252 -0.56946296]\n", + " [-0.42376385 0.69982976 -0.57503261]\n", + " [-0.4454521 0.68203931 -0.57999552]\n", + " [-0.46656729 0.66397331 -0.58434101]\n", + " [-0.48704366 0.64573333 -0.58806202]\n", + " [-0.50682052 0.62743058 -0.59115466]\n", + " [-0.44838891 0.80744327 -0.3833833 ]\n", + " [-0.47205828 0.79037819 -0.39046549]\n", + " [-0.4952289 0.77265928 -0.39717247]\n", + " [-0.51781518 0.75436673 -0.4034827 ]\n", + " [-0.53973947 0.73558782 -0.40937985]\n", + " [-0.56093235 0.71641618 -0.4148527 ]\n", + " [-0.5813319 0.69695164 -0.41989478]\n", + " [-0.60088239 0.67730112 -0.42450389]\n", + " [-0.50682052 0.62743058 -0.59115466]\n", + " [-0.5211878 0.63548771 -0.56966538]\n", + " [-0.53535958 0.64333842 -0.54727123]\n", + " [-0.5492628 0.65091044 -0.52404768]\n", + " [-0.56282883 0.6581414 -0.50007361]\n", + " [-0.57599329 0.66497824 -0.4754321 ]\n", + " [-0.5886962 0.67137673 -0.45021114]\n", + " [-0.60088239 0.67730112 -0.42450389]\n", + " [-0.36201743 0.75487952 -0.54690063]\n", + " [-0.37869876 0.76648 -0.51874431]\n", + " [-0.39526608 0.77737603 -0.48933755]\n", + " [-0.41159568 0.78744964 -0.45881594]\n", + " [-0.42757119 0.79660003 -0.42733039]\n", + " [-0.44308332 0.80474419 -0.39504932]\n", + " [-0.36609442 0.74359774 -0.55949734]\n", + " [-0.39401213 0.72308193 -0.56736845]\n", + " [-0.42133283 0.70184691 -0.57436013]\n", + " [-0.44791259 0.6800443 -0.58044299]\n", + " [-0.47362021 0.65784473 -0.58559731]\n", + " [-0.49833677 0.63543915 -0.58981145]\n", + " [-0.45872241 0.80006785 -0.38660727]\n", + " [-0.4874074 0.77870357 -0.39503769]\n", + " [-0.51525744 0.7564361 -0.40288237]\n", + " [-0.54212626 0.73342324 -0.4101091 ]\n", + " [-0.56788595 0.70983732 -0.41669717]\n", + " [-0.59242518 0.685865 -0.42263649]\n", + " [-0.51303747 0.63102692 -0.58189138]\n", + " [-0.53052398 0.64077389 -0.55493525]\n", + " [-0.54764384 0.65013771 -0.52669459]\n", + " [-0.56426887 0.65899944 -0.49731317]\n", + " [-0.58028058 0.66726136 -0.46694402]\n", + " [-0.59557052 0.67484559 -0.43575129]\n", + " [-0.35612701 0.75064176 -0.55651641]\n", + " [-0.35612701 0.75064176 -0.55651641]\n", + " [-0.6007763 0.67734908 -0.4245775 ]\n", + " [-0.6007763 0.67734908 -0.4245775 ]\n", + " [-0.37202283 0.74780678 -0.54989456]\n", + " [-0.40003648 0.72719771 -0.55781208]\n", + " [-0.42743544 0.70585207 -0.56486441]\n", + " [-0.4540754 0.68392161 -0.57102256]\n", + " [-0.4798252 0.66157663 -0.57626743]\n", + " [-0.50456623 0.63900739 -0.58058805]\n", + " [-0.38879951 0.75933489 -0.52177147]\n", + " [-0.41705164 0.73848992 -0.52981183]\n", + " [-0.44464084 0.71686388 -0.53702952]\n", + " [-0.47142179 0.69460925 -0.54339625]\n", + " [-0.49726347 0.67189586 -0.54889434]\n", + " [-0.52204841 0.64891213 -0.55351468]\n", + " [-0.40544376 0.770172 -0.49239258]\n", + " [-0.43388407 0.74913336 -0.50054353]\n", + " [-0.46161602 0.72727555 -0.50791823]\n", + " [-0.48849341 0.70475232 -0.51448844]\n", + " [-0.51438557 0.68173363 -0.5202372 ]\n", + " [-0.53917645 0.65840663 -0.52515662]\n", + " [-0.42183132 0.78020051 -0.46189338]\n", + " [-0.45040797 0.75901146 -0.47014281]\n", + " [-0.47823388 0.73697118 -0.47766708]\n", + " [-0.50516232 0.71423489 -0.48443735]\n", + " [-0.53106324 0.6909732 -0.49043641]\n", + " [-0.55582212 0.66737258 -0.49565675]\n", + " [-0.43784519 0.78932012 -0.4304246 ]\n", + " [-0.46650478 0.76802535 -0.43876001]\n", + " [-0.4943749 0.74585319 -0.44642634]\n", + " [-0.52130868 0.72296027 -0.45339354]\n", + " [-0.54717691 0.69951799 -0.45964335]\n", + " [-0.57186663 0.67571269 -0.46516762]\n", + " [-0.45337554 0.79744821 -0.39815445]\n", + " [-0.48206359 0.77609379 -0.40656256]\n", + " [-0.50992771 0.75384183 -0.41436243]\n", + " [-0.5368214 0.73084993 -0.42152245]\n", + " [-0.56261639 0.70729021 -0.42802261]\n", + " [-0.58720102 0.68334923 -0.43385342]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:fp_optics: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:cartToSphere: vec: [[ 0.12869411 -0.24073936 0.96201995]\n", + " [ 0.14539341 -0.21845214 0.96495566]\n", + " [ 0.16230774 -0.19554323 0.96717064]\n", + " [ 0.17936332 -0.17209442 0.9686136 ]\n", + " [ 0.19648755 -0.14819013 0.96924317]\n", + " [ 0.21360843 -0.12391841 0.96902821]\n", + " [ 0.23065453 -0.0993712 0.96794827]\n", + " [ 0.24755552 -0.07464373 0.96599409]\n", + " [ 0.12869411 -0.24073936 0.96201995]\n", + " [ 0.15163411 -0.25684122 0.95448399]\n", + " [ 0.17443222 -0.27259729 0.94618398]\n", + " [ 0.19700285 -0.2879468 0.93716408]\n", + " [ 0.21926368 -0.30283066 0.92747886]\n", + " [ 0.24113595 -0.31719093 0.9171932 ]\n", + " [ 0.26254428 -0.33096988 0.90638261]\n", + " [ 0.28341621 -0.34410873 0.89513375]\n", + " [ 0.24755552 -0.07464373 0.96599409]\n", + " [ 0.27119188 -0.09142261 0.95817372]\n", + " [ 0.29451 -0.10806318 0.94951894]\n", + " [ 0.31742145 -0.12450099 0.94007613]\n", + " [ 0.33984296 -0.14067409 0.92990191]\n", + " [ 0.36169686 -0.15652333 0.91906247]\n", + " [ 0.38291095 -0.17199236 0.90763309]\n", + " [ 0.40341761 -0.18702694 0.89569814]\n", + " [ 0.28341621 -0.34410873 0.89513375]\n", + " [ 0.3008426 -0.32350457 0.89712793]\n", + " [ 0.31829989 -0.30214198 0.89855184]\n", + " [ 0.33571072 -0.28010907 0.89935378]\n", + " [ 0.353 -0.2574929 0.89949342]\n", + " [ 0.37009456 -0.23438092 0.89894138]\n", + " [ 0.38692332 -0.21086201 0.89767898]\n", + " [ 0.40341761 -0.18702694 0.89569814]\n", + " [ 0.13602271 -0.23115948 0.96336033]\n", + " [ 0.15664418 -0.20341647 0.96648039]\n", + " [ 0.17751498 -0.17482063 0.96846589]\n", + " [ 0.19850105 -0.14552617 0.96923654]\n", + " [ 0.21946979 -0.11569524 0.96873506]\n", + " [ 0.24029015 -0.08549847 0.96692846]\n", + " [ 0.13876484 -0.24772356 0.95884167]\n", + " [ 0.16679639 -0.26723393 0.9490864 ]\n", + " [ 0.19452928 -0.28616444 0.93822613]\n", + " [ 0.22181059 -0.30440564 0.92635699]\n", + " [ 0.2484953 -0.32185074 0.91359848]\n", + " [ 0.27444588 -0.3383931 0.9000942 ]\n", + " [ 0.25783687 -0.08205692 0.96269767]\n", + " [ 0.28660301 -0.10253614 0.95254662]\n", + " [ 0.31480288 -0.12274317 0.94118716]\n", + " [ 0.34228096 -0.14256287 0.92871932]\n", + " [ 0.36889425 -0.16188639 0.9152649 ]\n", + " [ 0.39451183 -0.18061091 0.90096621]\n", + " [ 0.29093491 -0.33517992 0.89610897]\n", + " [ 0.3123234 -0.30940475 0.89817749]\n", + " [ 0.33368127 -0.2825782 0.89933663]\n", + " [ 0.35486938 -0.2548609 0.89950745]\n", + " [ 0.37575305 -0.22641398 0.89863583]\n", + " [ 0.39620239 -0.19740183 0.8966918 ]\n", + " [ 0.12882935 -0.24071988 0.96200672]\n", + " [ 0.12882935 -0.24071988 0.96200672]\n", + " [ 0.403293 -0.18705827 0.89574771]\n", + " [ 0.403293 -0.18705827 0.89574771]\n", + " [ 0.145996 -0.23819226 0.96018207]\n", + " [ 0.17412286 -0.25779701 0.95037989]\n", + " [ 0.20193314 -0.27683937 0.93945887]\n", + " [ 0.22927351 -0.29521007 0.92751532]\n", + " [ 0.25599882 -0.31280307 0.91466871]\n", + " [ 0.28197184 -0.329513 0.90106219]\n", + " [ 0.16671225 -0.21052301 0.96326896]\n", + " [ 0.19507479 -0.23037102 0.95334937]\n", + " [ 0.22307082 -0.24970661 0.94227704]\n", + " [ 0.25054582 -0.26842039 0.93014907]\n", + " [ 0.27735447 -0.28640764 0.91708515]\n", + " [ 0.30336042 -0.3035659 0.90322766]\n", + " [ 0.18765927 -0.1819879 0.96522764]\n", + " [ 0.21620561 -0.20204349 0.95521388]\n", + " [ 0.24433666 -0.22163814 0.94402126]\n", + " [ 0.27189694 -0.24066161 0.93174784]\n", + " [ 0.29874118 -0.25900933 0.91851395]\n", + " [ 0.32473414 -0.27658051 0.9044617 ]\n", + " [ 0.20870245 -0.15274076 0.96597803]\n", + " [ 0.23737916 -0.17296755 0.95589401]\n", + " [ 0.26559316 -0.19278706 0.94461284]\n", + " [ 0.2931884 -0.21208771 0.93223354]\n", + " [ 0.32001995 -0.23076419 0.9188771 ]\n", + " [ 0.34595382 -0.2487161 0.90468572]\n", + " [ 0.22970865 -0.12294335 0.96546303]\n", + " [ 0.258461 -0.14330377 0.95533342]\n", + " [ 0.286705 -0.16331294 0.94399636]\n", + " [ 0.3142845 -0.18285771 0.93155156]\n", + " [ 0.34105523 -0.20183143 0.91812058]\n", + " [ 0.36688453 -0.22013311 0.90384576]\n", + " [ 0.2505464 -0.09276595 0.96364982]\n", + " [ 0.2793188 -0.11322119 0.95349985]\n", + " [ 0.30753954 -0.1333833 0.94214029]\n", + " [ 0.33505288 -0.15313764 0.92967114]\n", + " [ 0.36171544 -0.17237593 0.91621421]\n", + " [ 0.38739586 -0.1909959 0.90191186]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:fp_optics: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:cartToSphere: vec: [[ 0.55078014 -0.42407903 -0.71888679]\n", + " [ 0.54629736 -0.40254493 -0.73451806]\n", + " [ 0.54118079 -0.38032647 -0.74998342]\n", + " [ 0.53544291 -0.35749598 -0.76517809]\n", + " [ 0.52909866 -0.33412952 -0.78000774]\n", + " [ 0.52216586 -0.31030743 -0.79438789]\n", + " [ 0.51466583 -0.28611461 -0.80824348]\n", + " [ 0.50662391 -0.26164045 -0.82150866]\n", + " [ 0.55078014 -0.42407903 -0.71888679]\n", + " [ 0.52905894 -0.4378327 -0.7269107 ]\n", + " [ 0.50643586 -0.45143796 -0.7346608 ]\n", + " [ 0.48299077 -0.46482853 -0.74206089]\n", + " [ 0.45880609 -0.47794141 -0.74904538]\n", + " [ 0.43396761 -0.49071679 -0.75555883]\n", + " [ 0.40856518 -0.50309812 -0.7615555 ]\n", + " [ 0.38269313 -0.51503248 -0.76699903]\n", + " [ 0.50662391 -0.26164045 -0.82150866]\n", + " [ 0.4837465 -0.2744788 -0.83105398]\n", + " [ 0.46001146 -0.28735646 -0.84012839]\n", + " [ 0.43549227 -0.30020978 -0.8486581 ]\n", + " [ 0.4102668 -0.31297806 -0.85657801]\n", + " [ 0.38441914 -0.32560283 -0.86383142]\n", + " [ 0.35804056 -0.33802767 -0.87037018]\n", + " [ 0.33122945 -0.35019848 -0.87615528]\n", + " [ 0.38269313 -0.51503248 -0.76699903]\n", + " [ 0.37656525 -0.49359118 -0.78394283]\n", + " [ 0.37000597 -0.47132685 -0.80059139]\n", + " [ 0.36302537 -0.44830627 -0.81684397]\n", + " [ 0.35563713 -0.42460121 -0.83260798]\n", + " [ 0.34785921 -0.40028997 -0.84779827]\n", + " [ 0.33971419 -0.37545816 -0.8623372 ]\n", + " [ 0.33122945 -0.35019848 -0.87615528]\n", + " [ 0.54883123 -0.41482583 -0.72574363]\n", + " [ 0.54290846 -0.38796411 -0.74480485]\n", + " [ 0.53604596 -0.3601458 -0.76351145]\n", + " [ 0.52827021 -0.33150936 -0.78168544]\n", + " [ 0.51961409 -0.30220272 -0.79917127]\n", + " [ 0.51011849 -0.27238406 -0.81583457]\n", + " [ 0.54141091 -0.43001706 -0.72246769]\n", + " [ 0.51417183 -0.44678216 -0.73212911]\n", + " [ 0.48565719 -0.4632582 -0.74130219]\n", + " [ 0.45601764 -0.4793279 -0.74986177]\n", + " [ 0.42541119 -0.49488112 -0.75770575]\n", + " [ 0.39400511 -0.50981524 -0.76475381]\n", + " [ 0.49678783 -0.26731335 -0.82567877]\n", + " [ 0.46816369 -0.28308355 -0.83707017]\n", + " [ 0.43832394 -0.298849 -0.84768001]\n", + " [ 0.40741 -0.3144968 -0.85738489]\n", + " [ 0.3755768 -0.32991929 -0.86608044]\n", + " [ 0.34299534 -0.34501351 -0.87368179]\n", + " [ 0.38016443 -0.50574918 -0.77439833]\n", + " [ 0.37236376 -0.47890863 -0.79497909]\n", + " [ 0.3639246 -0.45089783 -0.81501536]\n", + " [ 0.3548706 -0.42184675 -0.83433337]\n", + " [ 0.34523485 -0.39189963 -0.8527764 ]\n", + " [ 0.33506093 -0.36121706 -0.87020481]\n", + " [ 0.55069325 -0.42405384 -0.71896821]\n", + " [ 0.55069325 -0.42405384 -0.71896821]\n", + " [ 0.33135131 -0.35024435 -0.87609086]\n", + " [ 0.33135131 -0.35024435 -0.87609086]\n", + " [ 0.53950189 -0.42077823 -0.72930336]\n", + " [ 0.51213145 -0.43752301 -0.73911772]\n", + " [ 0.48348746 -0.4539941 -0.74841782]\n", + " [ 0.45371969 -0.47007411 -0.75707911]\n", + " [ 0.42298553 -0.48565259 -0.76499988]\n", + " [ 0.39145219 -0.50062642 -0.77209998]\n", + " [ 0.53345781 -0.39387541 -0.74852182]\n", + " [ 0.50574967 -0.41053424 -0.75873507]\n", + " [ 0.47677454 -0.42696474 -0.76836655]\n", + " [ 0.44667946 -0.44304941 -0.77729318]\n", + " [ 0.41562032 -0.45867702 -0.78541399]\n", + " [ 0.38376449 -0.47374321 -0.79264884]\n", + " [ 0.52649114 -0.36600016 -0.76736625]\n", + " [ 0.49849481 -0.38252968 -0.77792929]\n", + " [ 0.46923931 -0.39887869 -0.78785167]\n", + " [ 0.43886921 -0.41492998 -0.79701125]\n", + " [ 0.40753934 -0.43057205 -0.80530702]\n", + " [ 0.37541766 -0.44569971 -0.8126582 ]\n", + " [ 0.51862762 -0.33729051 -0.78565928]\n", + " [ 0.49039055 -0.353646 -0.79652471]\n", + " [ 0.46090394 -0.36987102 -0.80669882]\n", + " [ 0.43031047 -0.38584917 -0.81605963]\n", + " [ 0.39876446 -0.40146935 -0.82450547]\n", + " [ 0.36643478 -0.41662623 -0.83195441]\n", + " [ 0.50989945 -0.30789434 -0.80324568]\n", + " [ 0.48146746 -0.32403075 -0.81436672]\n", + " [ 0.45179811 -0.3400888 -0.82475334]\n", + " [ 0.42103299 -0.35595337 -0.83428318]\n", + " [ 0.38932641 -0.37151449 -0.84285345]\n", + " [ 0.35684825 -0.38666737 -0.8503809 ]\n", + " [ 0.5003471 -0.27797012 -0.81999109]\n", + " [ 0.47176516 -0.29384338 -0.83132046]\n", + " [ 0.4419613 -0.30969233 -0.84187937]\n", + " [ 0.41107684 -0.3254035 -0.85154471]\n", + " [ 0.37926648 -0.34086854 -0.86021252]\n", + " [ 0.346701 -0.35598393 -0.86779828]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:fp_optics: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:cartToSphere: vec: [[-9.57200851e-01 2.06694351e-01 2.02593127e-01]\n", + " [-9.54018699e-01 1.94833810e-01 2.27789613e-01]\n", + " [-9.50001222e-01 1.82580857e-01 2.53302011e-01]\n", + " [-9.45123032e-01 1.69976606e-01 2.79016860e-01]\n", + " [-9.39368293e-01 1.57063238e-01 3.04825112e-01]\n", + " [-9.32731235e-01 1.43885110e-01 3.30619900e-01]\n", + " [-9.25216969e-01 1.30489755e-01 3.56294800e-01]\n", + " [-9.16842194e-01 1.16928167e-01 3.81743625e-01]\n", + " [-9.57200851e-01 2.06694351e-01 2.02593127e-01]\n", + " [-9.64675729e-01 1.80926279e-01 1.91484775e-01]\n", + " [-9.71307316e-01 1.55047020e-01 1.80340008e-01]\n", + " [-9.77080785e-01 1.29158677e-01 1.69207493e-01]\n", + " [-9.81991744e-01 1.03364076e-01 1.58139443e-01]\n", + " [-9.86046167e-01 7.77664759e-02 1.47191480e-01]\n", + " [-9.89260372e-01 5.24691248e-02 1.36421803e-01]\n", + " [-9.91661044e-01 2.75740609e-02 1.25889018e-01]\n", + " [-9.16842194e-01 1.16928167e-01 3.81743625e-01]\n", + " [-9.24582752e-01 9.03388735e-02 3.70115688e-01]\n", + " [-9.31467444e-01 6.37539510e-02 3.58195246e-01]\n", + " [-9.37480973e-01 3.72797183e-02 3.46034171e-01]\n", + " [-9.42619581e-01 1.10196319e-02 3.33686818e-01]\n", + " [-9.46890391e-01 -1.49255932e-02 3.21209922e-01]\n", + " [-9.50310611e-01 -4.04562778e-02 3.08663299e-01]\n", + " [-9.52907026e-01 -6.54714792e-02 2.96110933e-01]\n", + " [-9.91661044e-01 2.75740609e-02 1.25889018e-01]\n", + " [-9.88664336e-01 1.45167959e-02 1.49439260e-01]\n", + " [-9.84845976e-01 1.30418328e-03 1.73426361e-01]\n", + " [-9.80180650e-01 -1.20186370e-02 1.97740855e-01]\n", + " [-9.74653451e-01 -2.54056382e-02 2.22272815e-01]\n", + " [-9.68259825e-01 -3.88095127e-02 2.46914424e-01]\n", + " [-9.61005594e-01 -5.21814916e-02 2.71560935e-01]\n", + " [-9.52907026e-01 -6.54714792e-02 2.96110933e-01]\n", + " [-9.55941188e-01 2.01485810e-01 2.13494527e-01]\n", + " [-9.51483349e-01 1.86679597e-01 2.44602052e-01]\n", + " [-9.45744499e-01 1.71324900e-01 2.76070862e-01]\n", + " [-9.38691515e-01 1.55498898e-01 3.07698442e-01]\n", + " [-9.30313869e-01 1.39283381e-01 3.39287850e-01]\n", + " [-9.20625767e-01 1.22767321e-01 3.70643200e-01]\n", + " [-9.60552841e-01 1.95439349e-01 1.97842616e-01]\n", + " [-9.69149596e-01 1.63769497e-01 1.84197209e-01]\n", + " [-9.76463744e-01 1.32034080e-01 1.70544889e-01]\n", + " [-9.82482867e-01 1.00422114e-01 1.56980303e-01]\n", + " [-9.87217962e-01 6.91236539e-02 1.43605764e-01]\n", + " [-9.90703374e-01 3.83283834e-02 1.30528767e-01]\n", + " [-9.20350943e-01 1.05388091e-01 3.76626462e-01]\n", + " [-9.29264689e-01 7.27896378e-02 3.62172344e-01]\n", + " [-9.36876351e-01 4.03035611e-02 3.47330283e-01]\n", + " [-9.43174234e-01 8.12157809e-03 3.32199344e-01]\n", + " [-9.48171355e-01 -2.35706901e-02 3.16884053e-01]\n", + " [-9.51903378e-01 -5.45892911e-02 3.01496216e-01]\n", + " [-9.90446608e-01 2.19875282e-02 1.36132532e-01]\n", + " [-9.86225062e-01 5.87482392e-03 1.65304611e-01]\n", + " [-9.80742992e-01 -1.04266164e-02 1.95024281e-01]\n", + " [-9.73968635e-01 -2.68324519e-02 2.25089135e-01]\n", + " [-9.65893609e-01 -4.32555707e-02 2.55300785e-01]\n", + " [-9.56532969e-01 -5.96056216e-02 2.85467774e-01]\n", + " [-9.57218330e-01 2.06566691e-01 2.02640745e-01]\n", + " [-9.57218330e-01 2.06566691e-01 2.02640745e-01]\n", + " [-9.52928619e-01 -6.53416803e-02 2.96070113e-01]\n", + " [-9.52928619e-01 -6.53416803e-02 2.96070113e-01]\n", + " [-9.59288506e-01 1.90315588e-01 2.08675681e-01]\n", + " [-9.67915828e-01 1.58530355e-01 1.94954039e-01]\n", + " [-9.75252073e-01 1.26689017e-01 1.81199577e-01]\n", + " [-9.81284895e-01 9.49809489e-02 1.67506935e-01]\n", + " [-9.86025357e-01 6.35964223e-02 1.53978862e-01]\n", + " [-9.89507763e-01 3.27256896e-02 1.40724608e-01]\n", + " [-9.54863023e-01 1.75401857e-01 2.39730673e-01]\n", + " [-9.63569130e-01 1.43329931e-01 2.25812008e-01]\n", + " [-9.70965071e-01 1.11229934e-01 2.11789359e-01]\n", + " [-9.77038867e-01 7.92922958e-02 1.97756882e-01]\n", + " [-9.81802044e-01 4.77073622e-02 1.83817173e-01]\n", + " [-9.85289003e-01 1.66657905e-02 1.70081836e-01]\n", + " [-9.49150708e-01 1.59960409e-01 2.71156044e-01]\n", + " [-9.57924089e-01 1.27661743e-01 2.57067926e-01]\n", + " [-9.65375543e-01 9.53650182e-02 2.42807690e-01]\n", + " [-9.71493573e-01 6.32617239e-02 2.28469236e-01]\n", + " [-9.76290461e-01 3.15416607e-02 2.14154291e-01]\n", + " [-9.79801032e-01 3.94508752e-04 1.99974454e-01]\n", + " [-9.42118334e-01 1.44068903e-01 3.02749394e-01]\n", + " [-9.50947491e-01 1.11604991e-01 2.88518967e-01]\n", + " [-9.58450680e-01 7.91748955e-02 2.74050413e-01]\n", + " [-9.64616774e-01 4.69709133e-02 2.59438262e-01]\n", + " [-9.69458793e-01 1.51818313e-02 2.44783906e-01]\n", + " [-9.73012127e-01 -1.60044587e-02 2.30198300e-01]\n", + " [-9.33755175e-01 1.27809912e-01 3.34314073e-01]\n", + " [-9.42628453e-01 9.52444050e-02 3.19968909e-01]\n", + " [-9.50180008e-01 6.27458945e-02 3.05320987e-01]\n", + " [-9.56398757e-01 3.05069237e-02 2.90466428e-01]\n", + " [-9.61298104e-01 -1.28504540e-03 2.75507356e-01]\n", + " [-9.64913837e-01 -3.24441092e-02 2.60554536e-01]\n", + " [-9.24075215e-01 1.11273196e-01 3.65654580e-01]\n", + " [-9.32980593e-01 7.86716320e-02 3.51223558e-01]\n", + " [-9.40577209e-01 4.61706633e-02 3.36426491e-01]\n", + " [-9.46853597e-01 1.39623475e-02 3.21361663e-01]\n", + " [-9.51822981e-01 -1.77672475e-02 3.06132875e-01]\n", + " [-9.55521138e-01 -4.88338040e-02 2.90851532e-01]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:fp_optics: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:cartToSphere: vec: [[-0.23877885 0.56602588 0.78904966]\n", + " [-0.23491059 0.54380993 0.80565984]\n", + " [-0.23077459 0.52071267 0.82194976]\n", + " [-0.22637709 0.49680219 0.83781919]\n", + " [-0.22172668 0.47215195 0.85317631]\n", + " [-0.21683465 0.44684253 0.86793692]\n", + " [-0.21171523 0.42096237 0.88202457]\n", + " [-0.20638564 0.39460767 0.89537129]\n", + " [-0.23877885 0.56602588 0.78904966]\n", + " [-0.26657766 0.55845886 0.7855317 ]\n", + " [-0.29404957 0.55037054 0.78142633]\n", + " [-0.32109006 0.54179694 0.77676074]\n", + " [-0.34759785 0.53277847 0.77157166]\n", + " [-0.37347469 0.52335947 0.76590569]\n", + " [-0.39862468 0.51358786 0.75981963]\n", + " [-0.4229535 0.50351518 0.75338091]\n", + " [-0.20638564 0.39460767 0.89537129]\n", + " [-0.23516315 0.38689946 0.89163171]\n", + " [-0.2636349 0.37886718 0.88710558]\n", + " [-0.29169136 0.37054759 0.88182233]\n", + " [-0.31922886 0.36198101 0.87582115]\n", + " [-0.34614998 0.35321086 0.86915032]\n", + " [-0.37236291 0.34428364 0.86186695]\n", + " [-0.39777977 0.33524925 0.854037 ]\n", + " [-0.4229535 0.50351518 0.75338091]\n", + " [-0.42080564 0.48142496 0.7688645 ]\n", + " [-0.4181599 0.45855519 0.78413611]\n", + " [-0.41502394 0.43497963 0.79909189]\n", + " [-0.41140652 0.41077614 0.81363852]\n", + " [-0.40731791 0.38602729 0.82769261]\n", + " [-0.40277059 0.36082072 0.84118028]\n", + " [-0.39777977 0.33524925 0.854037 ]\n", + " [-0.23722138 0.55642715 0.79631328]\n", + " [-0.23230065 0.52859797 0.81646837]\n", + " [-0.22698355 0.49951223 0.83604186]\n", + " [-0.22128489 0.46930286 0.85486129]\n", + " [-0.21522548 0.43811826 0.87277167]\n", + " [-0.20883276 0.40612454 0.88963573]\n", + " [-0.25092023 0.56271836 0.78764655]\n", + " [-0.28478501 0.55308915 0.78293671]\n", + " [-0.31805454 0.54271233 0.77737033]\n", + " [-0.35054102 0.53166049 0.7710111 ]\n", + " [-0.3820635 0.52001521 0.76394481]\n", + " [-0.41244613 0.50786621 0.75628044]\n", + " [-0.21898167 0.39137971 0.89379469]\n", + " [-0.25405974 0.38171001 0.88867942]\n", + " [-0.2885691 0.37158949 0.88241098]\n", + " [-0.32231638 0.3610909 0.87505743]\n", + " [-0.35512218 0.35029421 0.86670768]\n", + " [-0.38681922 0.3392864 0.85747049]\n", + " [-0.42199661 0.49401894 0.76017376]\n", + " [-0.41902744 0.46641132 0.77902278]\n", + " [-0.41531808 0.43770555 0.7974489 ]\n", + " [-0.41088418 0.40804323 0.81527597]\n", + " [-0.40574474 0.3775764 0.83235045]\n", + " [-0.39992384 0.34646859 0.84854018]\n", + " [-0.23886158 0.56592654 0.78909587]\n", + " [-0.23886158 0.56592654 0.78909587]\n", + " [-0.39771212 0.33536823 0.85402179]\n", + " [-0.39771212 0.33536823 0.85402179]\n", + " [-0.24932762 0.55320772 0.79485656]\n", + " [-0.28332745 0.54355615 0.79010902]\n", + " [-0.31673192 0.53317134 0.78448022]\n", + " [-0.34935309 0.52212639 0.77803371]\n", + " [-0.38101044 0.51050331 0.77085499]\n", + " [-0.41152901 0.49839212 0.76305253]\n", + " [-0.24452682 0.52535077 0.81499276]\n", + " [-0.27886761 0.51564913 0.81014741]\n", + " [-0.31261332 0.50525743 0.80435554]\n", + " [-0.34557527 0.49424999 0.79768081]\n", + " [-0.37757397 0.48270991 0.79020823]\n", + " [-0.40843696 0.47072786 0.7820451 ]\n", + " [-0.23930727 0.49624347 0.83455045]\n", + " [-0.27392682 0.48651233 0.82962031]\n", + " [-0.30795298 0.47613848 0.82368508]\n", + " [-0.34119596 0.46519699 0.81680908]\n", + " [-0.37347683 0.45377147 0.80907757]\n", + " [-0.4046254 0.44195279 0.80059729]\n", + " [-0.23368315 0.46601897 0.8533572 ]\n", + " [-0.26851769 0.45627992 0.8483554 ]\n", + " [-0.30276271 0.44595015 0.84229639]\n", + " [-0.33622712 0.43510482 0.83524555]\n", + " [-0.36873214 0.42382729 0.82728897]\n", + " [-0.40010927 0.41220795 0.81853356]\n", + " [-0.22767449 0.43482589 0.87125815]\n", + " [-0.2626583 0.4251012 0.86619835]\n", + " [-0.29705927 0.41484243 0.86003578]\n", + " [-0.33068508 0.40412413 0.85283707]\n", + " [-0.3633568 0.39302864 0.84468949]\n", + " [-0.39490692 0.38164518 0.83570059]\n", + " [-0.22130806 0.40283049 0.88811617]\n", + " [-0.25637364 0.39314255 0.88301274]\n", + " [-0.29086623 0.38298141 0.87676797]\n", + " [-0.32459266 0.37242039 0.86944963]\n", + " [-0.35737365 0.36154015 0.86114621]\n", + " [-0.389042 0.35042829 0.85196616]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:fp_optics: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:cartToSphere: vec: [[-1.46920627e-01 1.52882784e-01 -9.77262085e-01]\n", + " [-1.20791109e-01 1.58966636e-01 -9.79866887e-01]\n", + " [-9.40545114e-02 1.65210028e-01 -9.81763411e-01]\n", + " [-6.68176331e-02 1.71564497e-01 -9.82904384e-01]\n", + " [-3.91875409e-02 1.77986245e-01 -9.83252375e-01]\n", + " [-1.12718449e-02 1.84436112e-01 -9.82779867e-01]\n", + " [ 1.68210450e-02 1.90879209e-01 -9.81469399e-01]\n", + " [ 4.49819340e-02 1.97284531e-01 -9.79313760e-01]\n", + " [-1.46920627e-01 1.52882784e-01 -9.77262085e-01]\n", + " [-1.55025816e-01 1.77941988e-01 -9.71752873e-01]\n", + " [-1.63042844e-01 2.03458356e-01 -9.65412724e-01]\n", + " [-1.70944870e-01 2.29308709e-01 -9.58225113e-01]\n", + " [-1.78704585e-01 2.55374185e-01 -9.50183507e-01]\n", + " [-1.86294108e-01 2.81539999e-01 -9.41291525e-01]\n", + " [-1.93685194e-01 3.07695024e-01 -9.31563105e-01]\n", + " [-2.00849631e-01 3.33731573e-01 -9.21022618e-01]\n", + " [ 4.49819340e-02 1.97284531e-01 -9.79313760e-01]\n", + " [ 3.83837780e-02 2.23838427e-01 -9.73870137e-01]\n", + " [ 3.16232769e-02 2.50758528e-01 -9.67533012e-01]\n", + " [ 2.47255473e-02 2.77926300e-01 -9.60284135e-01]\n", + " [ 1.77160242e-02 3.05226370e-01 -9.52115017e-01]\n", + " [ 1.06208848e-02 3.32544805e-01 -9.43027650e-01]\n", + " [ 3.46725608e-03 3.59768316e-01 -9.33035228e-01]\n", + " [-3.71685060e-03 3.86784553e-01 -9.22162618e-01]\n", + " [-2.00849631e-01 3.33731573e-01 -9.21022618e-01]\n", + " [-1.74186278e-01 3.41853386e-01 -9.23469222e-01]\n", + " [-1.46850493e-01 3.49867561e-01 -9.25217608e-01]\n", + " [-1.18943872e-01 3.57726453e-01 -9.26220352e-01]\n", + " [-9.05693137e-02 3.65386281e-01 -9.26439456e-01]\n", + " [-6.18327749e-02 3.72806682e-01 -9.25846578e-01]\n", + " [-3.28441193e-02 3.79950609e-01 -9.24423495e-01]\n", + " [-3.71685060e-03 3.86784553e-01 -9.22162618e-01]\n", + " [-1.35637070e-01 1.55597778e-01 -9.78464060e-01]\n", + " [-1.03190117e-01 1.63169200e-01 -9.81186838e-01]\n", + " [-6.99373369e-02 1.70931403e-01 -9.82797652e-01]\n", + " [-3.60757215e-02 1.78801805e-01 -9.83223503e-01]\n", + " [-1.80340721e-03 1.86708266e-01 -9.82413747e-01]\n", + " [ 3.26796855e-02 1.94588190e-01 -9.80340489e-01]\n", + " [-1.50375166e-01 1.63765443e-01 -9.74970866e-01]\n", + " [-1.60252270e-01 1.94802731e-01 -9.67662702e-01]\n", + " [-1.69970495e-01 2.26403768e-01 -9.59088820e-01]\n", + " [-1.79479776e-01 2.58347930e-01 -9.49233036e-01]\n", + " [-1.88728808e-01 2.90423854e-01 -9.38102032e-01]\n", + " [-1.97665584e-01 3.22428384e-01 -9.25725798e-01]\n", + " [ 4.20300056e-02 2.08787407e-01 -9.77057469e-01]\n", + " [ 3.38299843e-02 2.41593100e-01 -9.69787764e-01]\n", + " [ 2.54112392e-02 2.74830664e-01 -9.61156790e-01]\n", + " [ 1.68204436e-02 3.08286491e-01 -9.51144843e-01]\n", + " [ 8.10581920e-03 3.41750744e-01 -9.39755673e-01]\n", + " [-6.82308163e-04 3.75015197e-01 -9.27018412e-01]\n", + " [-1.89289345e-01 3.37193643e-01 -9.22209299e-01]\n", + " [-1.56145499e-01 3.47080692e-01 -9.24745141e-01]\n", + " [-1.22092585e-01 3.56758438e-01 -9.26184008e-01]\n", + " [-8.73193953e-02 3.66144711e-01 -9.26452035e-01]\n", + " [-5.20210932e-02 3.75165198e-01 -9.25497099e-01]\n", + " [-1.64015016e-02 3.83753153e-01 -9.23290046e-01]\n", + " [-1.46860263e-01 1.52988034e-01 -9.77254688e-01]\n", + " [-1.46860263e-01 1.52988034e-01 -9.77254688e-01]\n", + " [-3.79197370e-03 3.86669840e-01 -9.22210419e-01]\n", + " [-3.79197370e-03 3.86669840e-01 -9.22210419e-01]\n", + " [-1.39115876e-01 1.66442348e-01 -9.76188362e-01]\n", + " [-1.48906733e-01 1.97662032e-01 -9.68894476e-01]\n", + " [-1.58562538e-01 2.29433885e-01 -9.60321828e-01]\n", + " [-1.68033120e-01 2.61537740e-01 -9.50454039e-01]\n", + " [-1.77266826e-01 2.93762582e-01 -9.39297619e-01]\n", + " [-1.86211212e-01 3.25905198e-01 -9.26882510e-01]\n", + " [-1.06562521e-01 1.74184922e-01 -9.78930050e-01]\n", + " [-1.16097511e-01 2.05868262e-01 -9.71668476e-01]\n", + " [-1.25565010e-01 2.38073447e-01 -9.63096289e-01]\n", + " [-1.34914463e-01 2.70582093e-01 -9.53196422e-01]\n", + " [-1.44093379e-01 3.03184162e-01 -9.41974767e-01]\n", + " [-1.53048265e-01 3.35675979e-01 -9.29461062e-01]\n", + " [-7.31970488e-02 1.82089907e-01 -9.80553649e-01]\n", + " [-8.24580722e-02 2.14158821e-01 -9.73312214e-01]\n", + " [-9.17186867e-02 2.46723298e-01 -9.64735869e-01]\n", + " [-1.00928273e-01 2.79566899e-01 -9.54806699e-01]\n", + " [-1.10034065e-01 3.12480256e-01 -9.43529859e-01]\n", + " [-1.18982078e-01 3.45258778e-01 -9.30934821e-01]\n", + " [-3.92160976e-02 1.90075025e-01 -9.80986026e-01]\n", + " [-4.81836397e-02 2.22452604e-01 -9.73752112e-01]\n", + " [-5.72170538e-02 2.55303314e-01 -9.65166528e-01]\n", + " [-6.62662693e-02 2.88412310e-01 -9.55210511e-01]\n", + " [-7.52790568e-02 3.21570459e-01 -9.43888502e-01]\n", + " [-8.42017066e-02 3.54571957e-01 -9.31229724e-01]\n", + " [-4.81766767e-03 1.98068570e-01 -9.80176327e-01]\n", + " [-1.34717515e-02 2.30679004e-01 -9.72936642e-01]\n", + " [-2.22571402e-02 2.63743358e-01 -9.64336073e-01]\n", + " [-3.11249504e-02 2.97047773e-01 -9.54355205e-01]\n", + " [-4.00242942e-02 3.30382967e-01 -9.42997959e-01]\n", + " [-4.89025111e-02 3.63541904e-01 -9.30293410e-01]\n", + " [ 2.97980518e-02 2.06008247e-01 -9.78096456e-01]\n", + " [ 2.14764806e-02 2.38776279e-01 -9.70837087e-01]\n", + " [ 1.29588949e-02 2.71981557e-01 -9.62215204e-01]\n", + " [ 4.29256942e-03 3.05410527e-01 -9.52211103e-01]\n", + " [-4.47352732e-03 3.38853516e-01 -9.40828509e-01]\n", + " [-1.32883925e-02 3.72102527e-01 -9.28096508e-01]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:fp_optics: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:cartToSphere: vec: [[ 0.99419243 0.0159903 -0.10642239]\n", + " [ 0.99110694 0.02906905 -0.12985387]\n", + " [ 0.98720718 0.04226486 -0.15373895]\n", + " [ 0.98246775 0.0555308 -0.17797036]\n", + " [ 0.97687367 0.06881961 -0.20243938]\n", + " [ 0.97042039 0.0820833 -0.22703877]\n", + " [ 0.96311384 0.09527296 -0.25166404]\n", + " [ 0.95497048 0.10833882 -0.27621384]\n", + " [ 0.99419243 0.0159903 -0.10642239]\n", + " [ 0.99309442 -0.00876738 -0.11698977]\n", + " [ 0.99121392 -0.03398732 -0.1278273 ]\n", + " [ 0.98851636 -0.05956974 -0.13887713]\n", + " [ 0.98497742 -0.08541259 -0.15008054]\n", + " [ 0.98058318 -0.11141316 -0.16138069]\n", + " [ 0.97533011 -0.13746872 -0.17272384]\n", + " [ 0.96922517 -0.16347674 -0.1840596 ]\n", + " [ 0.95497048 0.10833882 -0.27621384]\n", + " [ 0.95371658 0.08350297 -0.28888048]\n", + " [ 0.95167008 0.05808955 -0.30157862]\n", + " [ 0.94879643 0.03219887 -0.31424284]\n", + " [ 0.94507075 0.00592978 -0.32681205]\n", + " [ 0.94047805 -0.02061829 -0.33922844]\n", + " [ 0.93501391 -0.04734318 -0.3514365 ]\n", + " [ 0.9286852 -0.0741393 -0.36338294]\n", + " [ 0.96922517 -0.16347674 -0.1840596 ]\n", + " [ 0.9660508 -0.1515541 -0.20923005]\n", + " [ 0.96203028 -0.13927819 -0.23473247]\n", + " [ 0.9571379 -0.12669155 -0.26045402]\n", + " [ 0.95135757 -0.1138376 -0.28628618]\n", + " [ 0.94468335 -0.10076165 -0.31212249]\n", + " [ 0.93712031 -0.08751185 -0.33785678]\n", + " [ 0.9286852 -0.0741393 -0.36338294]\n", + " [ 0.99294279 0.02159135 -0.11661232]\n", + " [ 0.98861745 0.03770493 -0.14564981]\n", + " [ 0.98304259 0.05394789 -0.17526234]\n", + " [ 0.97618629 0.07023339 -0.20525011]\n", + " [ 0.96804018 0.08647307 -0.23541585]\n", + " [ 0.95861955 0.1025765 -0.26556848]\n", + " [ 0.99379812 0.0053032 -0.11107283]\n", + " [ 0.99193118 -0.02536363 -0.12421445]\n", + " [ 0.98885335 -0.05662612 -0.13770449]\n", + " [ 0.98451564 -0.08829721 -0.15143499]\n", + " [ 0.97889238 -0.12018788 -0.16530146]\n", + " [ 0.97198144 -0.15210907 -0.17920634]\n", + " [ 0.95454798 0.09754325 -0.28164422]\n", + " [ 0.95248334 0.06670277 -0.2971973 ]\n", + " [ 0.94919273 0.03509473 -0.31273235]\n", + " [ 0.94462634 0.00290165 -0.32813513]\n", + " [ 0.93875666 -0.02969313 -0.34329908]\n", + " [ 0.93158021 -0.06250009 -0.35812295]\n", + " [ 0.96796552 -0.15823549 -0.19494687]\n", + " [ 0.96350993 -0.14337931 -0.22603314]\n", + " [ 0.95775676 -0.1280349 -0.25750545]\n", + " [ 0.95067238 -0.11228176 -0.28916229]\n", + " [ 0.94224597 -0.09620345 -0.32080746]\n", + " [ 0.93249168 -0.07988987 -0.35224547]\n", + " [ 0.99418076 0.01595101 -0.10653724]\n", + " [ 0.99418076 0.01595101 -0.10653724]\n", + " [ 0.9287386 -0.07409354 -0.36325578]\n", + " [ 0.9287386 -0.07409354 -0.36325578]\n", + " [ 0.99256593 0.01092143 -0.12121717]\n", + " [ 0.99070973 -0.01981666 -0.13454194]\n", + " [ 0.98763429 -0.0511617 -0.14819241]\n", + " [ 0.98329059 -0.08292586 -0.16205835]\n", + " [ 0.97765293 -0.11491988 -0.17603455]\n", + " [ 0.97071906 -0.14695439 -0.19002343]\n", + " [ 0.98824993 0.02698655 -0.15044536]\n", + " [ 0.98640779 -0.00391149 -0.16426919]\n", + " [ 0.98332821 -0.0354474 -0.1783511 ]\n", + " [ 0.97896211 -0.06743249 -0.19257736]\n", + " [ 0.97328339 -0.09967756 -0.20684253]\n", + " [ 0.96628932 -0.13199253 -0.22104958]\n", + " [ 0.98267396 0.04320303 -0.180237 ]\n", + " [ 0.98082178 0.01220903 -0.19452399]\n", + " [ 0.97772202 -0.01945294 -0.20900055]\n", + " [ 0.97332539 -0.05159496 -0.22355233]\n", + " [ 0.96760508 -0.08402869 -0.23807475]\n", + " [ 0.96055777 -0.11656347 -0.25247126]\n", + " [ 0.97580612 0.05948479 -0.21039006]\n", + " [ 0.97391965 0.02846021 -0.22510115]\n", + " [ 0.97078332 -0.00326219 -0.23993562]\n", + " [ 0.96634744 -0.0354962 -0.25477959]\n", + " [ 0.96058454 -0.06805486 -0.26952901]\n", + " [ 0.95349074 -0.10074725 -0.28408697]\n", + " [ 0.96763798 0.07574367 -0.24070653]\n", + " [ 0.96569263 0.0447539 -0.25580234]\n", + " [ 0.96250261 0.01303658 -0.27095899]\n", + " [ 0.95801798 -0.01922397 -0.2860629 ]\n", + " [ 0.95221089 -0.05184247 -0.30100961]\n", + " [ 0.94507729 -0.08462822 -0.31570077]\n", + " [ 0.95818479 0.09188902 -0.27099505]\n", + " [ 0.95615565 0.06099843 -0.28643597]\n", + " [ 0.95289437 0.02935072 -0.30187887]\n", + " [ 0.94835104 -0.00287131 -0.3172098 ]\n", + " [ 0.94249796 -0.03548386 -0.33232286]\n", + " [ 0.93533143 -0.06829702 -0.3471176 ]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:fp_optics: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:cartToSphere: vec: [[ 0.25983744 0.4975953 -0.82757684]\n", + " [ 0.27006804 0.51720283 -0.81213576]\n", + " [ 0.28017009 0.53690837 -0.79576009]\n", + " [ 0.29010309 0.55659545 -0.7784868 ]\n", + " [ 0.29982692 0.57615717 -0.76035961]\n", + " [ 0.30930203 0.59549492 -0.74142973]\n", + " [ 0.31848981 0.61451762 -0.72175642]\n", + " [ 0.32735311 0.63314133 -0.70140716]\n", + " [ 0.25983744 0.4975953 -0.82757684]\n", + " [ 0.23495201 0.50780237 -0.828815 ]\n", + " [ 0.20939972 0.51797237 -0.82937108]\n", + " [ 0.18327771 0.52802469 -0.82921602]\n", + " [ 0.15668374 0.53788845 -0.82832736]\n", + " [ 0.12971728 0.54750149 -0.82668951]\n", + " [ 0.10248004 0.5568095 -0.82429426]\n", + " [ 0.07507605 0.56576552 -0.82114125]\n", + " [ 0.32735311 0.63314133 -0.70140716]\n", + " [ 0.30219089 0.64522295 -0.7016894 ]\n", + " [ 0.27627122 0.65703619 -0.70141119]\n", + " [ 0.24968432 0.66850447 -0.70054229]\n", + " [ 0.22252368 0.67955784 -0.69905962]\n", + " [ 0.19488738 0.69013263 -0.69694753]\n", + " [ 0.16687852 0.7001717 -0.69419821]\n", + " [ 0.13860465 0.70962496 -0.69081196]\n", + " [ 0.07507605 0.56576552 -0.82114125]\n", + " [ 0.08402954 0.58698567 -0.80522473]\n", + " [ 0.09308856 0.60815777 -0.78833917]\n", + " [ 0.10221373 0.62917134 -0.77051656]\n", + " [ 0.11136625 0.64992169 -0.75179741]\n", + " [ 0.12050759 0.67030924 -0.73223183]\n", + " [ 0.12959957 0.69023971 -0.71187997]\n", + " [ 0.13860465 0.70962496 -0.69081196]\n", + " [ 0.26422715 0.50615975 -0.8209667 ]\n", + " [ 0.27668395 0.53027347 -0.80140878]\n", + " [ 0.28890754 0.55441742 -0.78048303]\n", + " [ 0.30082391 0.57839089 -0.75826708]\n", + " [ 0.31236027 0.60201228 -0.73485528]\n", + " [ 0.32344612 0.62511686 -0.71036013]\n", + " [ 0.24911046 0.5021119 -0.8281471 ]\n", + " [ 0.21814944 0.51460899 -0.82920951]\n", + " [ 0.1862832 0.52696898 -0.82921786]\n", + " [ 0.15369139 0.5390574 -0.82812805]\n", + " [ 0.12055718 0.55075972 -0.82591143]\n", + " [ 0.08706881 0.56197901 -0.82255615]\n", + " [ 0.31645131 0.63837357 -0.70166784]\n", + " [ 0.28509152 0.65300972 -0.70164174]\n", + " [ 0.25268347 0.667166 -0.70074288]\n", + " [ 0.21939778 0.68071094 -0.69892577]\n", + " [ 0.1854151 0.69352737 -0.69616164]\n", + " [ 0.15092709 0.70551299 -0.69243948]\n", + " [ 0.07905851 0.57498601 -0.8143346 ]\n", + " [ 0.09010881 0.60097507 -0.79417212]\n", + " [ 0.10127823 0.62678154 -0.77258502]\n", + " [ 0.1124951 0.65221036 -0.74964425]\n", + " [ 0.12368853 0.67707821 -0.7254421 ]\n", + " [ 0.13478845 0.70121407 -0.7000935 ]\n", + " [ 0.25978874 0.49769691 -0.82753102]\n", + " [ 0.25978874 0.49769691 -0.82753102]\n", + " [ 0.13867105 0.70952842 -0.6908978 ]\n", + " [ 0.13867105 0.70952842 -0.6908978 ]\n", + " [ 0.25352201 0.51064525 -0.82156437]\n", + " [ 0.22247917 0.52332225 -0.82257938]\n", + " [ 0.19052175 0.53583386 -0.82254698]\n", + " [ 0.1578286 0.54804674 -0.82142249]\n", + " [ 0.12458263 0.55984702 -0.81917671]\n", + " [ 0.09097234 0.57113797 -0.81579744]\n", + " [ 0.26591757 0.53494429 -0.80194916]\n", + " [ 0.2346848 0.54809421 -0.8028174 ]\n", + " [ 0.20251064 0.56100458 -0.80266014]\n", + " [ 0.16957177 0.57354463 -0.8014312 ]\n", + " [ 0.13605053 0.5856015 -0.7991002 ]\n", + " [ 0.10213637 0.59707839 -0.79565417]\n", + " [ 0.27810155 0.5592534 -0.78095785]\n", + " [ 0.24674009 0.57282521 -0.78165889]\n", + " [ 0.21441044 0.58609151 -0.78136093]\n", + " [ 0.18128737 0.59892281 -0.78001689]\n", + " [ 0.14755285 0.61120618 -0.77759575]\n", + " [ 0.11339733 0.62284395 -0.77408427]\n", + " [ 0.28999946 0.58337307 -0.75866737]\n", + " [ 0.25856952 0.5973185 -0.75917878]\n", + " [ 0.22614539 0.61089954 -0.75872262]\n", + " [ 0.19290019 0.62398686 -0.75725155]\n", + " [ 0.1590156 0.63646662 -0.75473458]\n", + " [ 0.12468291 0.64823978 -0.75115868]\n", + " [ 0.30153799 0.60712225 -0.73517169]\n", + " [ 0.27009869 0.62139388 -0.73547015]\n", + " [ 0.23764072 0.63524835 -0.73483768]\n", + " [ 0.20433592 0.6485557 -0.73322734]\n", + " [ 0.17036562 0.6612007 -0.73060878]\n", + " [ 0.13592157 0.67308284 -0.72696961]\n", + " [ 0.31264611 0.6303362 -0.71058334]\n", + " [ 0.28125548 0.64488593 -0.71064582]\n", + " [ 0.24882387 0.65897125 -0.7098194 ]\n", + " [ 0.21552217 0.67246107 -0.70805812]\n", + " [ 0.1815312 0.68523873 -0.70533276]\n", + " [ 0.14704276 0.69720235 -0.70163189]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:cartToSphere: vec: [[ 1.32939275e-01 -1.02032981e-01 9.85858215e-01]\n", + " [ 1.22008478e-01 -1.27766308e-01 9.84271153e-01]\n", + " [ 1.10761840e-01 -1.53910237e-01 9.81857145e-01]\n", + " [ 9.92387809e-02 -1.80354847e-01 9.78582543e-01]\n", + " [ 8.74801785e-02 -2.06991135e-01 9.74423875e-01]\n", + " [ 7.55288878e-02 -2.33709955e-01 9.69368374e-01]\n", + " [ 6.34298309e-02 -2.60402001e-01 9.63414477e-01]\n", + " [ 5.12297416e-02 -2.86958559e-01 9.56572161e-01]\n", + " [ 1.32939275e-01 -1.02032981e-01 9.85858215e-01]\n", + " [ 1.06396591e-01 -9.11038759e-02 9.90141328e-01]\n", + " [ 7.98119096e-02 -8.02248699e-02 9.93576383e-01]\n", + " [ 5.32892952e-02 -6.94421874e-02 9.96161650e-01]\n", + " [ 2.69326291e-02 -5.88044930e-02 9.97906140e-01]\n", + " [ 8.45461730e-04 -4.83634432e-02 9.98829446e-01]\n", + " [-2.48686395e-02 -3.81746009e-02 9.98961586e-01]\n", + " [-5.01052220e-02 -2.82985718e-02 9.98342956e-01]\n", + " [ 5.12297416e-02 -2.86958559e-01 9.56572161e-01]\n", + " [ 2.38321322e-02 -2.75508515e-01 9.61003167e-01]\n", + " [-3.49933296e-03 -2.63850563e-01 9.64557222e-01]\n", + " [-3.06566395e-02 -2.52034201e-01 9.67232615e-01]\n", + " [-5.75338542e-02 -2.40111107e-01 9.69038963e-01]\n", + " [-8.40278665e-02 -2.28134703e-01 9.69996843e-01]\n", + " [-1.10038392e-01 -2.16160055e-01 9.70137301e-01]\n", + " [-1.35466994e-01 -2.04244233e-01 9.69501412e-01]\n", + " [-5.01052220e-02 -2.82985718e-02 9.98342956e-01]\n", + " [-6.22928932e-02 -5.24001753e-02 9.96681402e-01]\n", + " [-7.45545276e-02 -7.70339362e-02 9.94237092e-01]\n", + " [-8.68485625e-02 -1.02083109e-01 9.90977480e-01]\n", + " [-9.91318966e-02 -1.27435893e-01 9.86880418e-01]\n", + " [-1.11359969e-01 -1.52983930e-01 9.81934252e-01]\n", + " [-1.23487102e-01 -1.78621316e-01 9.76137983e-01]\n", + " [-1.35466994e-01 -2.04244233e-01 9.69501412e-01]\n", + " [ 1.28123796e-01 -1.13157626e-01 9.85281505e-01]\n", + " [ 1.14508781e-01 -1.44986140e-01 9.82785205e-01]\n", + " [ 1.00458580e-01 -1.77322053e-01 9.79012238e-01]\n", + " [ 8.60478049e-02 -2.09964411e-01 9.73915151e-01]\n", + " [ 7.13553638e-02 -2.42712282e-01 9.67470496e-01]\n", + " [ 5.64647355e-02 -2.75364631e-01 9.59680183e-01]\n", + " [ 1.21341229e-01 -9.73515627e-02 9.87825379e-01]\n", + " [ 8.87682145e-02 -8.39842688e-02 9.92505338e-01]\n", + " [ 5.62356070e-02 -7.07377266e-02 9.95908495e-01]\n", + " [ 2.39347490e-02 -5.77005003e-02 9.98046983e-01]\n", + " [-7.94368789e-03 -4.49677880e-02 9.98956854e-01]\n", + " [-3.92087337e-02 -3.26439111e-02 9.98697677e-01]\n", + " [ 3.93249622e-02 -2.81904482e-01 9.58636224e-01]\n", + " [ 5.77723399e-03 -2.67725574e-01 9.63477888e-01]\n", + " [-2.75637182e-02 -2.53283480e-01 9.66999338e-01]\n", + " [-6.05019549e-02 -2.38672452e-01 9.69213586e-01]\n", + " [-9.28476542e-02 -2.23990823e-01 9.70158453e-01]\n", + " [-1.24417050e-01 -2.09340755e-01 9.69895276e-01]\n", + " [-5.53218202e-02 -3.87675347e-02 9.97715678e-01]\n", + " [-7.03134576e-02 -6.86809653e-02 9.95157748e-01]\n", + " [-8.53752326e-02 -9.92769962e-02 9.91390512e-01]\n", + " [-1.00428444e-01 -1.30347844e-01 9.86368880e-01]\n", + " [-1.15391092e-01 -1.61693915e-01 9.80071413e-01]\n", + " [-1.30178801e-01 -1.93121105e-01 9.72500755e-01]\n", + " [ 1.32811898e-01 -1.02082743e-01 9.85870231e-01]\n", + " [ 1.32811898e-01 -1.02082743e-01 9.85870231e-01]\n", + " [-1.35340475e-01 -2.04197330e-01 9.69528961e-01]\n", + " [-1.35340475e-01 -2.04197330e-01 9.69528961e-01]\n", + " [ 1.16608708e-01 -1.08405844e-01 9.87243932e-01]\n", + " [ 8.39159458e-02 -9.49632867e-02 9.91937543e-01]\n", + " [ 5.12731407e-02 -8.16165668e-02 9.95344062e-01]\n", + " [ 1.88720629e-02 -6.84540194e-02 9.97475760e-01]\n", + " [-1.30966613e-02 -5.55701303e-02 9.98368889e-01]\n", + " [-4.44426633e-02 -4.30679963e-02 9.98083162e-01]\n", + " [ 1.02882169e-01 -1.40181962e-01 9.84766103e-01]\n", + " [ 6.98911616e-02 -1.26543805e-01 9.89495776e-01]\n", + " [ 3.69779573e-02 -1.12932293e-01 9.92914361e-01]\n", + " [ 4.33568414e-03 -9.94357737e-02 9.95034536e-01]\n", + " [-2.78450034e-02 -8.61475637e-02 9.95893194e-01]\n", + " [-5.93753196e-02 -7.31680750e-02 9.95550604e-01]\n", + " [ 8.87419999e-02 -1.72474410e-01 9.81008377e-01]\n", + " [ 5.55145542e-02 -1.58666555e-01 9.85770287e-01]\n", + " [ 2.23937973e-02 -1.44817389e-01 9.89204954e-01]\n", + " [-1.04258065e-02 -1.31016101e-01 9.91325418e-01]\n", + " [-4.27534872e-02 -1.17356044e-01 9.92169188e-01]\n", + " [-7.44018487e-02 -1.03936319e-01 9.91797160e-01]\n", + " [ 7.42634473e-02 -2.05082474e-01 9.75923214e-01]\n", + " [ 4.08631348e-02 -1.91131266e-01 9.80713538e-01]\n", + " [ 7.59915008e-03 -1.77071497e-01 9.84168653e-01]\n", + " [-2.53329918e-02 -1.62993734e-01 9.86301821e-01]\n", + " [-5.77424979e-02 -1.48992309e-01 9.87151000e-01]\n", + " [-8.94431993e-02 -1.35166302e-01 9.86777576e-01]\n", + " [ 5.95260583e-02 -2.37805510e-01 9.69487075e-01]\n", + " [ 2.60181149e-02 -2.23738238e-01 9.74301934e-01]\n", + " [-7.32349359e-03 -2.09495879e-01 9.77782104e-01]\n", + " [-4.03026756e-02 -1.95170602e-01 9.79940881e-01]\n", + " [-7.27288467e-02 -1.80858309e-01 9.80816388e-01]\n", + " [-1.04416943e-01 -1.66659027e-01 9.80470229e-01]\n", + " [ 4.46138050e-02 -2.70442742e-01 9.61701790e-01]\n", + " [ 1.10646502e-02 -2.56287803e-01 9.66537188e-01]\n", + " [-2.22882134e-02 -2.41892376e-01 9.70047068e-01]\n", + " [-5.52486991e-02 -2.27350208e-01 9.72244550e-01]\n", + " [-8.76267325e-02 -2.12758997e-01 9.73167593e-01]\n", + " [-1.19238236e-01 -1.98220299e-01 9.72877667e-01]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:fp_optics: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:fp_optics: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:cartToSphere: vec: [[ 2.04392013e-01 -3.46377774e-01 9.15557941e-01]\n", + " [ 1.77595799e-01 -3.53966210e-01 9.18241610e-01]\n", + " [ 1.50119857e-01 -3.61421667e-01 9.20238234e-01]\n", + " [ 1.22066310e-01 -3.68698663e-01 9.21499382e-01]\n", + " [ 9.35385640e-02 -3.75755512e-01 9.21986080e-01]\n", + " [ 6.46430908e-02 -3.82553973e-01 9.21668991e-01]\n", + " [ 3.54903077e-02 -3.89059217e-01 9.20528850e-01]\n", + " [ 6.19432593e-03 -3.95240100e-01 9.18556963e-01]\n", + " [ 2.04392013e-01 -3.46377774e-01 9.15557941e-01]\n", + " [ 1.98007635e-01 -3.20245549e-01 9.26410149e-01]\n", + " [ 1.91382928e-01 -2.93955178e-01 9.36462988e-01]\n", + " [ 1.84543286e-01 -2.67613821e-01 9.45688436e-01]\n", + " [ 1.77514307e-01 -2.41332083e-01 9.54068916e-01]\n", + " [ 1.70321360e-01 -2.15224114e-01 9.61597221e-01]\n", + " [ 1.62989295e-01 -1.89407981e-01 9.68276358e-01]\n", + " [ 1.55542423e-01 -1.64006026e-01 9.74119386e-01]\n", + " [ 6.19432593e-03 -3.95240100e-01 9.18556963e-01]\n", + " [-2.69729153e-04 -3.68155110e-01 9.29764348e-01]\n", + " [-6.71584564e-03 -3.40827124e-01 9.40101999e-01]\n", + " [-1.31186099e-02 -3.13368566e-01 9.49540965e-01]\n", + " [-1.94533264e-02 -2.85893104e-01 9.58064038e-01]\n", + " [-2.56961603e-02 -2.58514999e-01 9.65665420e-01]\n", + " [-3.18240358e-02 -2.31349545e-01 9.72350050e-01]\n", + " [-3.78143137e-02 -2.04514542e-01 9.78132854e-01]\n", + " [ 1.55542423e-01 -1.64006026e-01 9.74119386e-01]\n", + " [ 1.29244010e-01 -1.69604353e-01 9.77000691e-01]\n", + " [ 1.02324720e-01 -1.75334453e-01 9.79176941e-01]\n", + " [ 7.48918469e-02 -1.81150298e-01 9.80599705e-01]\n", + " [ 4.70529064e-02 -1.87010679e-01 9.81230365e-01]\n", + " [ 1.89160312e-02 -1.92879062e-01 9.81040188e-01]\n", + " [-9.40970882e-03 -1.98723167e-01 9.80010490e-01]\n", + " [-3.78143137e-02 -2.04514542e-01 9.78132854e-01]\n", + " [ 1.92777412e-01 -3.49610294e-01 9.16847594e-01]\n", + " [ 1.59465732e-01 -3.58826331e-01 9.19681654e-01]\n", + " [ 1.25234545e-01 -3.67797159e-01 9.21434511e-01]\n", + " [ 9.02735854e-02 -3.76444491e-01 9.22030490e-01]\n", + " [ 5.47789684e-02 -3.84697928e-01 9.21415633e-01]\n", + " [ 1.89555581e-02 -3.92494868e-01 9.19558843e-01]\n", + " [ 2.01549121e-01 -3.35035939e-01 9.20396041e-01]\n", + " [ 1.93559529e-01 -3.02887558e-01 9.33163349e-01]\n", + " [ 1.85234313e-01 -2.70607668e-01 9.44700873e-01]\n", + " [ 1.76620536e-01 -2.38398468e-01 9.54971914e-01]\n", + " [ 1.67764871e-01 -2.06470147e-01 9.63963187e-01]\n", + " [ 1.58712831e-01 -1.75041833e-01 9.71684411e-01]\n", + " [ 3.47569871e-03 -3.83447395e-01 9.23556179e-01]\n", + " [-4.43797735e-03 -3.50074655e-01 9.36711290e-01]\n", + " [-1.22995899e-02 -3.16448481e-01 9.48529957e-01]\n", + " [-2.00633567e-02 -2.82777680e-01 9.58975623e-01]\n", + " [-2.76853808e-02 -2.49272651e-01 9.68037533e-01]\n", + " [-3.51233776e-02 -2.16146590e-01 9.75728958e-01]\n", + " [ 1.44184765e-01 -1.66514120e-01 9.75440312e-01]\n", + " [ 1.11521485e-01 -1.73471473e-01 9.78504270e-01]\n", + " [ 7.80321619e-02 -1.80580297e-01 9.80459963e-01]\n", + " [ 4.39146257e-02 -1.87762715e-01 9.81232219e-01]\n", + " [ 9.36798157e-03 -1.94951422e-01 9.80768160e-01]\n", + " [-2.54065726e-02 -2.02088599e-01 9.79037642e-01]\n", + " [ 2.04280259e-01 -3.46314918e-01 9.15606659e-01]\n", + " [ 2.04280259e-01 -3.46314918e-01 9.15606659e-01]\n", + " [-3.76969436e-02 -2.04585922e-01 9.78122457e-01]\n", + " [-3.76969436e-02 -2.04585922e-01 9.78122457e-01]\n", + " [ 1.90037251e-01 -3.38286069e-01 9.21655239e-01]\n", + " [ 1.82037411e-01 -3.06002188e-01 9.34465110e-01]\n", + " [ 1.73724881e-01 -2.73576396e-01 9.46031512e-01]\n", + " [ 1.65147153e-01 -2.41211079e-01 9.56317747e-01]\n", + " [ 1.56351296e-01 -2.09116181e-01 9.65310673e-01]\n", + " [ 1.47383020e-01 -1.77510358e-01 9.73020204e-01]\n", + " [ 1.56703395e-01 -3.47388065e-01 9.24535331e-01]\n", + " [ 1.48684407e-01 -3.14761898e-01 9.37452876e-01]\n", + " [ 1.40418029e-01 -2.81966920e-01 9.49092953e-01]\n", + " [ 1.31952803e-01 -2.49206382e-01 9.59418906e-01]\n", + " [ 1.23336736e-01 -2.16689633e-01 9.68418119e-01]\n", + " [ 1.14616115e-01 -1.84633666e-01 9.76101202e-01]\n", + " [ 1.22455169e-01 -3.56266020e-01 9.26325674e-01]\n", + " [ 1.14432471e-01 -3.23359590e-01 9.39331563e-01]\n", + " [ 1.06228762e-01 -2.90260792e-01 9.51033187e-01]\n", + " [ 9.78930985e-02 -2.57174190e-01 9.61393976e-01]\n", + " [ 8.94738371e-02 -2.24308899e-01 9.70401953e-01]\n", + " [ 8.10174367e-02 -1.91880230e-01 9.78068583e-01]\n", + " [ 8.74824882e-02 -3.64842209e-01 9.26950364e-01]\n", + " [ 7.94724635e-02 -3.31718916e-01 9.40024834e-01]\n", + " [ 7.13493705e-02 -2.98382456e-01 9.51775802e-01]\n", + " [ 6.31620680e-02 -2.65038932e-01 9.62166783e-01]\n", + " [ 5.49584288e-02 -2.31897618e-01 9.71186422e-01]\n", + " [ 4.67843836e-02 -1.99172537e-01 9.78847037e-01]\n", + " [ 5.19816454e-02 -3.73046937e-01 9.26355165e-01]\n", + " [ 4.40012043e-02 -3.39772087e-01 9.39477952e-01]\n", + " [ 3.59772147e-02 -3.06265568e-01 9.51266021e-01]\n", + " [ 2.79576037e-02 -2.72734931e-01 9.61682915e-01]\n", + " [ 1.99889362e-02 -2.39389882e-01 9.70717738e-01]\n", + " [ 1.21158971e-02 -2.06443709e-01 9.78383463e-01]\n", + " [ 1.61576162e-02 -3.80818247e-01 9.24508731e-01]\n", + " [ 8.22362100e-03 -3.47458999e-01 9.37659115e-01]\n", + " [ 3.16671925e-04 -3.13851639e-01 9.49471984e-01]\n", + " [-7.51682135e-03 -2.80204752e-01 9.59910826e-01]\n", + " [-1.52322082e-02 -2.46728566e-01 9.68964909e-01]\n", + " [-2.27865419e-02 -2.13636206e-01 9.76647503e-01]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:fp_optics: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:cartToSphere: vec: [[-0.67621676 0.69924378 -0.23192462]\n", + " [-0.66908176 0.69702306 -0.25785355]\n", + " [-0.66118544 0.69434456 -0.28411169]\n", + " [-0.65254502 0.69117844 -0.31057586]\n", + " [-0.64318167 0.68750447 -0.33712749]\n", + " [-0.63312098 0.68331183 -0.36365198]\n", + " [-0.62239357 0.67859891 -0.39003817]\n", + " [-0.61103557 0.67337296 -0.41617832]\n", + " [-0.67621676 0.69924378 -0.23192462]\n", + " [-0.65815266 0.71824199 -0.22575101]\n", + " [-0.63915573 0.73711137 -0.21942376]\n", + " [-0.61928568 0.75573786 -0.21294489]\n", + " [-0.59860623 0.77401682 -0.20632146]\n", + " [-0.57718578 0.79185237 -0.19956551]\n", + " [-0.55509811 0.80915711 -0.19269372]\n", + " [-0.5324228 0.82585196 -0.18572693]\n", + " [-0.61103557 0.67337296 -0.41617832]\n", + " [-0.59179171 0.6930754 -0.41161763]\n", + " [-0.57167737 0.71262347 -0.40663592]\n", + " [-0.5507467 0.7319078 -0.40123441]\n", + " [-0.52905942 0.75082645 -0.39541848]\n", + " [-0.50668242 0.76928387 -0.38919821]\n", + " [-0.48369069 0.78719073 -0.38258865]\n", + " [-0.46016737 0.8044645 -0.37560998]\n", + " [-0.5324228 0.82585196 -0.18572693]\n", + " [-0.5238 0.82494711 -0.21235775]\n", + " [-0.51457785 0.82336104 -0.23934544]\n", + " [-0.50477048 0.82106358 -0.26657336]\n", + " [-0.49439721 0.81803313 -0.29392719]\n", + " [-0.4834833 0.81425702 -0.32129332]\n", + " [-0.47206054 0.80973199 -0.3485584 ]\n", + " [-0.46016737 0.8044645 -0.37560998]\n", + " [-0.67313996 0.69839493 -0.24316068]\n", + " [-0.6638804 0.69537053 -0.27517746]\n", + " [-0.65349407 0.69162763 -0.3075658 ]\n", + " [-0.6420183 0.68712496 -0.34010554]\n", + " [-0.62950027 0.68184262 -0.37258564]\n", + " [-0.61599859 0.67578131 -0.40480287]\n", + " [-0.66843568 0.70752872 -0.22934004]\n", + " [-0.64566064 0.73074222 -0.22167125]\n", + " [-0.62154337 0.75364777 -0.21377294]\n", + " [-0.5961995 0.77604882 -0.20565598]\n", + " [-0.56975499 0.79776887 -0.19734254]\n", + " [-0.5423481 0.81865043 -0.18886505]\n", + " [-0.60279553 0.6819937 -0.41415231]\n", + " [-0.57861865 0.70605164 -0.40827875]\n", + " [-0.5531875 0.72976809 -0.40177373]\n", + " [-0.52660959 0.7529524 -0.39464544]\n", + " [-0.49900819 0.77542865 -0.38691244]\n", + " [-0.47052475 0.79703514 -0.3786046 ]\n", + " [-0.52881641 0.82548273 -0.19731059]\n", + " [-0.51784447 0.82391931 -0.23020444]\n", + " [-0.50598567 0.82130187 -0.26351801]\n", + " [-0.49327334 0.81758709 -0.29704 ]\n", + " [-0.47975408 0.8127517 -0.3305612 ]\n", + " [-0.46548916 0.80679371 -0.36387325]\n", + " [-0.67613355 0.69930198 -0.23199173]\n", + " [-0.67613355 0.69930198 -0.23199173]\n", + " [-0.46029004 0.80442586 -0.37554243]\n", + " [-0.46029004 0.80442586 -0.37554243]\n", + " [-0.66539891 0.70666674 -0.2405544 ]\n", + " [-0.64250379 0.7300016 -0.23299474]\n", + " [-0.61826919 0.75301966 -0.22517683]\n", + " [-0.59280987 0.77552489 -0.21711195]\n", + " [-0.5662512 0.79734099 -0.20882271]\n", + " [-0.53873128 0.81831026 -0.20034202]\n", + " [-0.6560256 0.7037511 -0.2726991 ]\n", + " [-0.63281599 0.72737964 -0.26544829]\n", + " [-0.6082763 0.7506716 -0.25786061]\n", + " [-0.58251873 0.77343248 -0.24994824]\n", + " [-0.55566712 0.79548625 -0.24173472]\n", + " [-0.52785946 0.81667437 -0.23325388]\n", + " [-0.64553779 0.70008919 -0.30521483]\n", + " [-0.62205012 0.72393784 -0.29827445]\n", + " [-0.5972442 0.7474378 -0.29092284]\n", + " [-0.57122991 0.77039586 -0.28317242]\n", + " [-0.54412998 0.79263599 -0.27504681]\n", + " [-0.51608281 0.81399853 -0.26658004]\n", + " [-0.63397206 0.69564006 -0.33788213]\n", + " [-0.61024067 0.71963598 -0.33125576]\n", + " [-0.58520567 0.74327815 -0.32414798]\n", + " [-0.55897528 0.76637439 -0.31657059]\n", + " [-0.53167173 0.78874854 -0.30854644]\n", + " [-0.50343421 0.81023985 -0.30010895]\n", + " [-0.62137492 0.69038412 -0.37049018]\n", + " [-0.59743252 0.71445499 -0.36418189]\n", + " [-0.57220466 0.73817342 -0.35732595]\n", + " [-0.54579868 0.76134801 -0.34993286]\n", + " [-0.51833695 0.78380256 -0.3420239 ]\n", + " [-0.48995961 0.80537554 -0.33363125]\n", + " [-0.60780466 0.68432235 -0.40283548]\n", + " [-0.58368328 0.70839628 -0.39684826]\n", + " [-0.55829869 0.73212489 -0.39025084]\n", + " [-0.53175824 0.75531737 -0.383052 ]\n", + " [-0.50418489 0.77779768 -0.37527106]\n", + " [-0.47571977 0.79940404 -0.36693851]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:fp_optics: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:cartToSphere: vec: [[ 0.2859682 -0.35150429 0.89144093]\n", + " [ 0.27116002 -0.37366614 0.88704332]\n", + " [ 0.25572039 -0.39593544 0.88195363]\n", + " [ 0.23971599 -0.41820758 0.87614991]\n", + " [ 0.22321326 -0.44038193 0.86962038]\n", + " [ 0.20627863 -0.4623616 0.86236354]\n", + " [ 0.188979 -0.48405339 0.85438823]\n", + " [ 0.17138206 -0.50536805 0.8457135 ]\n", + " [ 0.2859682 -0.35150429 0.89144093]\n", + " [ 0.26619416 -0.33730318 0.90297687]\n", + " [ 0.24570136 -0.3226635 0.91406734]\n", + " [ 0.22457615 -0.30762185 0.9246266 ]\n", + " [ 0.20290468 -0.29221958 0.93457873]\n", + " [ 0.18077314 -0.27650298 0.9438576 ]\n", + " [ 0.15826832 -0.26052333 0.95240681]\n", + " [ 0.13547796 -0.24433657 0.96017986]\n", + " [ 0.17138206 -0.50536805 0.8457135 ]\n", + " [ 0.14978802 -0.4921965 0.85749994]\n", + " [ 0.12763009 -0.47836182 0.86883861]\n", + " [ 0.10499086 -0.46389741 0.87964545]\n", + " [ 0.08195371 -0.44884135 0.88984551]\n", + " [ 0.05860436 -0.43323747 0.89937246]\n", + " [ 0.03503169 -0.41713601 0.90816867]\n", + " [ 0.0113277 -0.4005938 0.91618573]\n", + " [ 0.13547796 -0.24433657 0.96017986]\n", + " [ 0.11870756 -0.26649947 0.95649702]\n", + " [ 0.1015066 -0.28887913 0.95196915]\n", + " [ 0.08393896 -0.31137508 0.94657266]\n", + " [ 0.06606932 -0.33388973 0.94029383]\n", + " [ 0.04796438 -0.35632716 0.93312934]\n", + " [ 0.02969333 -0.37859278 0.92508692]\n", + " [ 0.0113277 -0.4005938 0.91618573]\n", + " [ 0.27952685 -0.36109928 0.88964715]\n", + " [ 0.2609434 -0.38834708 0.88379584]\n", + " [ 0.24147789 -0.41565197 0.8768819 ]\n", + " [ 0.22125274 -0.44282702 0.86887943]\n", + " [ 0.2003903 -0.46969385 0.85978568]\n", + " [ 0.17901405 -0.49608253 0.84962115]\n", + " [ 0.27739051 -0.34544429 0.89650585]\n", + " [ 0.25265968 -0.32774047 0.91035667]\n", + " [ 0.22693516 -0.30941357 0.92345204]\n", + " [ 0.20037561 -0.29053772 0.93564814]\n", + " [ 0.1731398 -0.27119817 0.94682319]\n", + " [ 0.14538788 -0.25149125 0.95687748]\n", + " [ 0.16210247 -0.49963628 0.85093265]\n", + " [ 0.13524777 -0.48304253 0.86508841]\n", + " [ 0.10762803 -0.46548559 0.87848698]\n", + " [ 0.07939633 -0.44703358 0.89098664]\n", + " [ 0.05071058 -0.42776727 0.90246529]\n", + " [ 0.02173574 -0.4077819 0.91282062]\n", + " [ 0.12830167 -0.25402226 0.95865081]\n", + " [ 0.10745105 -0.28134428 0.95357206]\n", + " [ 0.086017 -0.30889155 0.9471996 ]\n", + " [ 0.06411821 -0.3364833 0.93950404]\n", + " [ 0.04187752 -0.3639429 0.93047936]\n", + " [ 0.0194233 -0.39109689 0.92014453]\n", + " [ 0.28585241 -0.351532 0.89146714]\n", + " [ 0.28585241 -0.351532 0.89146714]\n", + " [ 0.01147176 -0.40057636 0.91619156]\n", + " [ 0.01147176 -0.40057636 0.91619156]\n", + " [ 0.27099753 -0.35503385 0.89471297]\n", + " [ 0.24608561 -0.33737672 0.90863569]\n", + " [ 0.22019461 -0.31907202 0.92179574]\n", + " [ 0.19348268 -0.3001938 0.93404932]\n", + " [ 0.16610807 -0.28082744 0.94527459]\n", + " [ 0.1382308 -0.26106963 0.9553716 ]\n", + " [ 0.25223593 -0.38234965 0.88892395]\n", + " [ 0.22684784 -0.36484005 0.90301262]\n", + " [ 0.2005218 -0.34661567 0.91632341]\n", + " [ 0.17341404 -0.32775017 0.92871276]\n", + " [ 0.14568144 -0.30832914 0.94005854]\n", + " [ 0.11748397 -0.28845009 0.95026 ]\n", + " [ 0.23261125 -0.40972988 0.8820507 ]\n", + " [ 0.20680055 -0.39239115 0.89624925]\n", + " [ 0.18009219 -0.37427397 0.90966246]\n", + " [ 0.15264044 -0.35545126 0.92214711]\n", + " [ 0.12460132 -0.33600829 0.93358071]\n", + " [ 0.09613532 -0.31604297 0.94386166]\n", + " [ 0.21224544 -0.43698779 0.87406724]\n", + " [ 0.18606397 -0.41984395 0.88831934]\n", + " [ 0.15902435 -0.40186186 0.90178617]\n", + " [ 0.13127948 -0.38311321 0.91432487]\n", + " [ 0.10298522 -0.36368236 0.92581272]\n", + " [ 0.07430313 -0.34366707 0.93614742]\n", + " [ 0.19126038 -0.4639449 0.86497086]\n", + " [ 0.16475869 -0.44701975 0.87922006]\n", + " [ 0.13743811 -0.42920054 0.89269125]\n", + " [ 0.10945104 -0.41055741 0.905242 ]\n", + " [ 0.08095387 -0.39117336 0.91674962]\n", + " [ 0.05210961 -0.37114537 0.92711149]\n", + " [ 0.16977934 -0.49043088 0.85478215]\n", + " [ 0.14300775 -0.47374695 0.86897216]\n", + " [ 0.11545693 -0.45611717 0.88239834]\n", + " [ 0.08727965 -0.43761013 0.89491879]\n", + " [ 0.05863336 -0.41830719 0.90641118]\n", + " [ 0.02968255 -0.3983041 0.91677303]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:fp_optics: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:cartToSphere: vec: [[ 0.37220691 -0.51973831 -0.76898252]\n", + " [ 0.36599195 -0.49833653 -0.78594567]\n", + " [ 0.35935847 -0.47610576 -0.80261123]\n", + " [ 0.35231674 -0.45311268 -0.81887839]\n", + " [ 0.34488077 -0.42942887 -0.83465448]\n", + " [ 0.33706882 -0.40513248 -0.84985427]\n", + " [ 0.32890383 -0.38030896 -0.86440001]\n", + " [ 0.32041337 -0.35505089 -0.87822215]\n", + " [ 0.37220691 -0.51973831 -0.76898252]\n", + " [ 0.34584339 -0.53096164 -0.77360977]\n", + " [ 0.31925396 -0.54162864 -0.77763444]\n", + " [ 0.29254599 -0.55170181 -0.78105182]\n", + " [ 0.26582965 -0.56114822 -0.78386688]\n", + " [ 0.23921776 -0.56993894 -0.78609444]\n", + " [ 0.21282628 -0.57804844 -0.78775946]\n", + " [ 0.18677496 -0.58545396 -0.78889719]\n", + " [ 0.32041337 -0.35505089 -0.87822215]\n", + " [ 0.29317197 -0.36677713 -0.88290698]\n", + " [ 0.26575613 -0.37813374 -0.88678552]\n", + " [ 0.23827804 -0.38908057 -0.88985386]\n", + " [ 0.21085021 -0.39958292 -0.89211865]\n", + " [ 0.18358477 -0.40961153 -0.89359668]\n", + " [ 0.1565938 -0.41914215 -0.8943144 ]\n", + " [ 0.12999084 -0.42815481 -0.89430746]\n", + " [ 0.18677496 -0.58545396 -0.78889719]\n", + " [ 0.17904988 -0.56529868 -0.80521956]\n", + " [ 0.1711691 -0.54424512 -0.82127851]\n", + " [ 0.16314433 -0.52236567 -0.83696955]\n", + " [ 0.15499173 -0.4997356 -0.85219827]\n", + " [ 0.14673174 -0.47643394 -0.86687975]\n", + " [ 0.1383888 -0.45254422 -0.88093829]\n", + " [ 0.12999084 -0.42815481 -0.89430746]\n", + " [ 0.36945914 -0.51055254 -0.77642517]\n", + " [ 0.36155862 -0.48375718 -0.79702845]\n", + " [ 0.35303946 -0.45578238 -0.81708357]\n", + " [ 0.34392586 -0.4267578 -0.83641663]\n", + " [ 0.33425152 -0.39682736 -0.85487073]\n", + " [ 0.32406059 -0.3661514 -0.87230608]\n", + " [ 0.36072595 -0.524626 -0.77113186]\n", + " [ 0.32824854 -0.53801267 -0.77639891]\n", + " [ 0.2955382 -0.55052603 -0.78075493]\n", + " [ 0.2627966 -0.56210354 -0.78420504]\n", + " [ 0.23023152 -0.57269193 -0.78677659]\n", + " [ 0.19805795 -0.58224534 -0.78851976]\n", + " [ 0.30859415 -0.36029322 -0.88031724]\n", + " [ 0.27507572 -0.37442148 -0.88551787]\n", + " [ 0.24140658 -0.3879539 -0.88950247]\n", + " [ 0.2077938 -0.4008243 -0.89227889]\n", + " [ 0.17444387 -0.41297879 -0.89387799]\n", + " [ 0.1415636 -0.42437455 -0.89435227]\n", + " [ 0.1835152 -0.57675667 -0.79603638]\n", + " [ 0.17394217 -0.55144016 -0.81587859]\n", + " [ 0.16414623 -0.52484604 -0.83522012]\n", + " [ 0.15415524 -0.49711167 -0.85388298]\n", + " [ 0.14400685 -0.46838263 -0.87171081]\n", + " [ 0.1337475 -0.43881468 -0.88856811]\n", + " [ 0.37209673 -0.51970589 -0.76905775]\n", + " [ 0.37209673 -0.51970589 -0.76905775]\n", + " [ 0.1301098 -0.42820905 -0.8942642 ]\n", + " [ 0.1301098 -0.42820905 -0.8942642 ]\n", + " [ 0.35804391 -0.51549334 -0.77850573]\n", + " [ 0.32544173 -0.52894778 -0.78377416]\n", + " [ 0.29260894 -0.54154244 -0.78810646]\n", + " [ 0.25974756 -0.55321512 -0.79150757]\n", + " [ 0.22706524 -0.56391318 -0.7940046 ]\n", + " [ 0.19477635 -0.57359157 -0.79564746]\n", + " [ 0.35003164 -0.48875059 -0.79912497]\n", + " [ 0.31711766 -0.50238142 -0.80439374]\n", + " [ 0.28398192 -0.51519268 -0.80865986]\n", + " [ 0.25082773 -0.52712269 -0.81192803]\n", + " [ 0.21786251 -0.53812031 -0.81422507]\n", + " [ 0.18529885 -0.54814265 -0.81560038]\n", + " [ 0.34142208 -0.46081943 -0.81919254]\n", + " [ 0.30825887 -0.47460393 -0.82445593]\n", + " [ 0.27488594 -0.48761262 -0.82865654]\n", + " [ 0.2415081 -0.49978366 -0.83179933]\n", + " [ 0.20833272 -0.51106666 -0.83391148]\n", + " [ 0.17557065 -0.52142027 -0.83504242]\n", + " [ 0.33224007 -0.43182931 -0.83853443]\n", + " [ 0.29889199 -0.44574463 -0.84378629]\n", + " [ 0.26534914 -0.45893227 -0.84792158]\n", + " [ 0.23181764 -0.4713296 -0.85094594]\n", + " [ 0.19850479 -0.48288604 -0.8528874 ]\n", + " [ 0.16561996 -0.49356088 -0.85379605]\n", + " [ 0.32252005 -0.40192385 -0.8569936 ]\n", + " [ 0.2890535 -0.41594642 -0.86222773]\n", + " [ 0.25540957 -0.42929423 -0.86629811]\n", + " [ 0.22179525 -0.44190332 -0.86921132]\n", + " [ 0.18841765 -0.45372208 -0.87099659]\n", + " [ 0.15548485 -0.46470946 -0.87170498]\n", + " [ 0.31230679 -0.37126307 -0.87443022]\n", + " [ 0.27878975 -0.38536826 -0.8796406 ]\n", + " [ 0.24511476 -0.39885627 -0.88364723]\n", + " [ 0.21148899 -0.41166152 -0.88645767]\n", + " [ 0.17811912 -0.42373076 -0.88810237]\n", + " [ 0.14521224 -0.43502176 -0.88863348]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:cartToSphere: vec: [[-0.61211834 -0.35084093 0.70867608]\n", + " [-0.63307419 -0.34048122 0.69519034]\n", + " [-0.65397694 -0.32951366 0.68098084]\n", + " [-0.67471028 -0.31798563 0.66607145]\n", + " [-0.69516612 -0.30594412 0.65049386]\n", + " [-0.71524404 -0.29343637 0.63428784]\n", + " [-0.73485095 -0.28051058 0.61750133]\n", + " [-0.75390112 -0.26721651 0.60019034]\n", + " [-0.61211834 -0.35084093 0.70867608]\n", + " [-0.60716612 -0.32881612 0.72334588]\n", + " [-0.60177328 -0.30599599 0.7377231 ]\n", + " [-0.59592384 -0.28247382 0.75172024]\n", + " [-0.58961036 -0.25834253 0.76525731]\n", + " [-0.58283394 -0.23369553 0.77826153]\n", + " [-0.57560391 -0.20862759 0.79066723]\n", + " [-0.56793761 -0.18323531 0.80241616]\n", + " [-0.75390112 -0.26721651 0.60019034]\n", + " [-0.75030484 -0.24358372 0.61458085]\n", + " [-0.7460344 -0.21926846 0.62877183]\n", + " [-0.74107292 -0.19435742 0.64267886]\n", + " [-0.73541118 -0.16893915 0.65622402]\n", + " [-0.72904808 -0.14310587 0.66933519]\n", + " [-0.72199125 -0.11695433 0.68194598]\n", + " [-0.71425729 -0.09058565 0.69399622]\n", + " [-0.56793761 -0.18323531 0.80241616]\n", + " [-0.58951925 -0.17093536 0.78946068]\n", + " [-0.61105073 -0.15824778 0.77561244]\n", + " [-0.63242074 -0.14521607 0.76089178]\n", + " [-0.65352407 -0.13188521 0.74532716]\n", + " [-0.67426054 -0.11830258 0.72895626]\n", + " [-0.69453483 -0.10451841 0.71182671]\n", + " [-0.71425729 -0.09058565 0.69399622]\n", + " [-0.62123804 -0.34632749 0.70293711]\n", + " [-0.64690194 -0.33321448 0.68591981]\n", + " [-0.67236956 -0.31923572 0.6678381 ]\n", + " [-0.69743852 -0.30447788 0.64874705]\n", + " [-0.72192389 -0.28902801 0.62871989]\n", + " [-0.74565736 -0.27297545 0.60784825]\n", + " [-0.61008391 -0.34130698 0.71505746]\n", + " [-0.60372147 -0.31376528 0.73285178]\n", + " [-0.59668018 -0.28512178 0.75011888]\n", + " [-0.5889428 -0.25554768 0.7667084 ]\n", + " [-0.58051128 -0.22521504 0.78248632]\n", + " [-0.57140619 -0.19429906 0.79733483]\n", + " [-0.75235027 -0.2570482 0.60654373]\n", + " [-0.74749115 -0.22761445 0.6240582 ]\n", + " [-0.74160196 -0.19724154 0.6411882 ]\n", + " [-0.73466249 -0.16609163 0.65778765]\n", + " [-0.72667084 -0.13433459 0.67372376]\n", + " [-0.71764476 -0.10215037 0.68887684]\n", + " [-0.57737304 -0.17801053 0.79683915]\n", + " [-0.60380441 -0.16267046 0.78035797]\n", + " [-0.63004905 -0.1467911 0.76255529]\n", + " [-0.65591081 -0.13045459 0.74348007]\n", + " [-0.68120522 -0.11374821 0.72320176]\n", + " [-0.70575914 -0.09676556 0.70181227]\n", + " [-0.61217374 -0.35073273 0.70868178]\n", + " [-0.61217374 -0.35073273 0.70868178]\n", + " [-0.71421846 -0.09072391 0.69401813]\n", + " [-0.71421846 -0.09072391 0.69401813]\n", + " [-0.61919122 -0.33683875 0.70932495]\n", + " [-0.61293161 -0.30912623 0.72715597]\n", + " [-0.6059651 -0.28032243 0.74446332]\n", + " [-0.59827472 -0.2505975 0.76109674]\n", + " [-0.58986275 -0.22012279 0.77692207]\n", + " [-0.58075004 -0.18907336 0.7918211 ]\n", + " [-0.64497301 -0.32356175 0.69232767]\n", + " [-0.63899645 -0.29540597 0.7102245 ]\n", + " [-0.63223811 -0.26618795 0.72761181]\n", + " [-0.62468155 -0.23607481 0.74433974]\n", + " [-0.61632955 -0.20523617 0.76027364]\n", + " [-0.60720351 -0.1738471 0.77529419]\n", + " [-0.67055308 -0.30943977 0.67424447]\n", + " [-0.66484896 -0.28089891 0.69215003]\n", + " [-0.65829503 -0.25132379 0.70956607]\n", + " [-0.65087481 -0.22087887 0.72634324]\n", + " [-0.64259087 -0.18973274 0.74234659]\n", + " [-0.63346453 -0.15806116 0.75745585]\n", + " [-0.69572953 -0.29455857 0.65513027]\n", + " [-0.69028866 -0.26568828 0.67298685]\n", + " [-0.6839367 -0.23581121 0.69037936]\n", + " [-0.67665646 -0.20509002 0.70715919]\n", + " [-0.66844958 -0.17369301 0.72319146]\n", + " [-0.65933673 -0.1417971 0.73835537]\n", + " [-0.72031759 -0.27900444 0.63505833]\n", + " [-0.71513093 -0.2498586 0.65280811]\n", + " [-0.70897839 -0.21973386 0.67012437]\n", + " [-0.7018416 -0.18879205 0.68685947]\n", + " [-0.69372078 -0.15720184 0.70287913]\n", + " [-0.68463549 -0.12514152 0.71806256]\n", + " [-0.74414866 -0.26286638 0.61412054]\n", + " [-0.73920611 -0.23349828 0.63170633]\n", + " [-0.73324915 -0.20318037 0.648894 ]\n", + " [-0.72625806 -0.17207457 0.66553706]\n", + " [-0.71823145 -0.14035037 0.68150228]\n", + " [-0.70918756 -0.10818737 0.69666958]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:fp_optics: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:cartToSphere: vec: [[ 4.04004312e-02 2.42347997e-01 9.69347850e-01]\n", + " [ 4.83583954e-02 2.17164031e-01 9.74936536e-01]\n", + " [ 5.62946117e-02 1.91247457e-01 9.79926184e-01]\n", + " [ 6.41886692e-02 1.64707077e-01 9.84251692e-01]\n", + " [ 7.20176876e-02 1.37650036e-01 9.87859261e-01]\n", + " [ 7.97566299e-02 1.10183181e-01 9.90706085e-01]\n", + " [ 8.73787979e-02 8.24139688e-02 9.92760235e-01]\n", + " [ 9.48563660e-02 5.44507999e-02 9.94000694e-01]\n", + " [ 4.04004312e-02 2.42347997e-01 9.69347850e-01]\n", + " [ 1.40125263e-02 2.37357184e-01 9.71321376e-01]\n", + " [-1.29256037e-02 2.31930948e-01 9.72646372e-01]\n", + " [-4.02993945e-02 2.26099314e-01 9.73270291e-01]\n", + " [-6.79965312e-02 2.19890288e-01 9.73151958e-01]\n", + " [-9.59057582e-02 2.13330791e-01 9.72261312e-01]\n", + " [-1.23916205e-01 2.06447566e-01 9.70579300e-01]\n", + " [-1.51917289e-01 1.99267856e-01 9.68097856e-01]\n", + " [ 9.48563660e-02 5.44507999e-02 9.94000694e-01]\n", + " [ 6.79559931e-02 4.74884196e-02 9.96557491e-01]\n", + " [ 4.04487417e-02 4.03420475e-02 9.98366876e-01]\n", + " [ 1.24418383e-02 3.30384522e-02 9.99376636e-01]\n", + " [-1.59566915e-02 2.56048321e-02 9.99544785e-01]\n", + " [-4.46366383e-02 1.80692164e-02 9.98839864e-01]\n", + " [-7.34853409e-02 1.04605722e-02 9.97241436e-01]\n", + " [-1.02388286e-01 2.80867622e-03 9.94740544e-01]\n", + " [-1.51917289e-01 1.99267856e-01 9.68097856e-01]\n", + " [-1.45452488e-01 1.72687039e-01 9.74177992e-01]\n", + " [-1.38747815e-01 1.45438132e-01 9.79590115e-01]\n", + " [-1.31823136e-01 1.17622286e-01 9.84270115e-01]\n", + " [-1.24700099e-01 8.93428813e-02 9.88163820e-01]\n", + " [-1.17402412e-01 6.07067299e-02 9.91227202e-01]\n", + " [-1.09955887e-01 3.18242268e-02 9.93426858e-01]\n", + " [-1.02388286e-01 2.80867622e-03 9.94740544e-01]\n", + " [ 4.37821380e-02 2.31448066e-01 9.71861573e-01]\n", + " [ 5.35224990e-02 2.00074644e-01 9.78317678e-01]\n", + " [ 6.32103832e-02 1.67709214e-01 9.83807942e-01]\n", + " [ 7.28046873e-02 1.34549634e-01 9.88228654e-01]\n", + " [ 8.22593727e-02 1.00792707e-01 9.91500996e-01]\n", + " [ 9.15247943e-02 6.66366539e-02 9.93570716e-01]\n", + " [ 2.89972458e-02 2.40142314e-01 9.70304503e-01]\n", + " [-3.72935565e-03 2.33727537e-01 9.72294981e-01]\n", + " [-3.71683126e-02 2.26689005e-01 9.73257731e-01]\n", + " [-7.11119975e-02 2.19079072e-01 9.73112246e-01]\n", + " [-1.05355518e-01 2.10947398e-01 9.71803175e-01]\n", + " [-1.39694867e-01 2.02343399e-01 9.69300002e-01]\n", + " [ 8.31838378e-02 5.15357363e-02 9.95200742e-01]\n", + " [ 4.97927985e-02 4.28765065e-02 9.97838806e-01]\n", + " [ 1.55968124e-02 3.39673145e-02 9.99301236e-01]\n", + " [-1.92056908e-02 2.48580173e-02 9.99506488e-01]\n", + " [-5.44117899e-02 1.56002218e-02 9.98396710e-01]\n", + " [-8.98132569e-02 6.24760016e-03 9.95939027e-01]\n", + " [-1.49033330e-01 1.87792256e-01 9.70836307e-01]\n", + " [-1.40945398e-01 1.54753089e-01 9.77847573e-01]\n", + " [-1.32516914e-01 1.20810736e-01 9.83790645e-01]\n", + " [-1.23786973e-01 8.61544885e-02 9.88561677e-01]\n", + " [-1.14799234e-01 5.09809982e-02 9.92079671e-01]\n", + " [-1.05602042e-01 1.54947585e-02 9.94287746e-01]\n", + " [ 4.03384914e-02 2.42246958e-01 9.69375684e-01]\n", + " [ 4.03384914e-02 2.42246958e-01 9.69375684e-01]\n", + " [-1.02315539e-01 2.93420141e-03 9.94747667e-01]\n", + " [-1.02315539e-01 2.93420141e-03 9.94747667e-01]\n", + " [ 3.24032032e-02 2.29282749e-01 9.72820360e-01]\n", + " [-4.32313585e-04 2.22713473e-01 9.74883851e-01]\n", + " [-3.39843648e-02 2.15545163e-01 9.75902324e-01]\n", + " [-6.80462657e-02 2.07829005e-01 9.75795476e-01]\n", + " [-1.02413441e-01 1.99613845e-01 9.74507978e-01]\n", + " [-1.36881615e-01 1.90948692e-01 9.72009270e-01]\n", + " [ 4.20548145e-02 1.97742967e-01 9.79351373e-01]\n", + " [ 8.96052871e-03 1.90750251e-01 9.81597703e-01]\n", + " [-2.48640461e-02 1.83226624e-01 9.82756218e-01]\n", + " [-5.92146779e-02 1.75220592e-01 9.82746847e-01]\n", + " [-9.38873899e-02 1.66779462e-01 9.81514019e-01]\n", + " [-1.28676878e-01 1.57951740e-01 9.79026817e-01]\n", + " [ 5.16801564e-02 1.65218050e-01 9.84902106e-01]\n", + " [ 1.83996491e-02 1.57819324e-01 9.87296568e-01]\n", + " [-1.56271551e-02 1.49955532e-01 9.88569234e-01]\n", + " [-5.01980408e-02 1.41673729e-01 9.88639829e-01]\n", + " [-8.51092993e-02 1.33020875e-01 9.87452203e-01]\n", + " [-1.20154448e-01 1.24045862e-01 9.84974889e-01]\n", + " [ 6.12375009e-02 1.31904554e-01 9.89369070e-01]\n", + " [ 2.78420231e-02 1.24114021e-01 9.91877276e-01]\n", + " [-6.31708908e-03 1.15922912e-01 9.93238125e-01]\n", + " [-4.10391878e-02 1.07378095e-01 9.93370892e-01]\n", + " [-7.61206933e-02 9.85272149e-02 9.92218740e-01]\n", + " [-1.11354089e-01 8.94202278e-02 9.89749610e-01]\n", + " [ 7.06802232e-02 9.79986768e-02 9.92673443e-01]\n", + " [ 3.72399077e-02 8.98294345e-02 9.95260701e-01]\n", + " [ 3.01819142e-03 8.13235824e-02 9.96683182e-01]\n", + " [-3.17854538e-02 7.25288298e-02 9.96859696e-01]\n", + " [-6.69676171e-02 6.34942489e-02 9.95732805e-01]\n", + " [-1.02320123e-01 5.42712781e-02 9.93269964e-01]\n", + " [ 7.99581869e-02 6.36987162e-02 9.94760857e-01]\n", + " [ 4.65422038e-02 5.51646134e-02 9.97391943e-01]\n", + " [ 1.23273124e-02 4.63578958e-02 9.98848829e-01]\n", + " [-2.24878467e-02 3.73277930e-02 9.99050015e-01]\n", + " [-5.77001904e-02 2.81252208e-02 9.97937703e-01]\n", + " [-9.31014036e-02 1.88032695e-02 9.95479063e-01]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:fp_optics: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:fp_optics: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:cartToSphere: vec: [[-0.20379121 0.3440122 -0.91658319]\n", + " [-0.17715417 0.35222629 -0.91899567]\n", + " [-0.14984067 0.36032029 -0.92071552]\n", + " [-0.12195224 0.36824632 -0.92169534]\n", + " [-0.09359166 0.37596028 -0.92189721]\n", + " [-0.06486478 0.38342144 -0.92129287]\n", + " [-0.03588135 0.39059239 -0.91986418]\n", + " [-0.00675481 0.39743935 -0.91760358]\n", + " [-0.20379121 0.3440122 -0.91658319]\n", + " [-0.21059178 0.36970783 -0.90496808]\n", + " [-0.21710033 0.39504216 -0.89264166]\n", + " [-0.22329117 0.41992154 -0.87966297]\n", + " [-0.22913925 0.44425743 -0.86610077]\n", + " [-0.23461967 0.46796642 -0.85203347]\n", + " [-0.23970729 0.49097006 -0.83754929]\n", + " [-0.24437652 0.51319451 -0.82274632]\n", + " [-0.00675481 0.39743935 -0.91760358]\n", + " [-0.01393346 0.42398162 -0.90556361]\n", + " [-0.02107376 0.4500596 -0.89274983]\n", + " [-0.02814772 0.47557587 -0.87922426]\n", + " [-0.0351283 0.50044066 -0.86505789]\n", + " [-0.04198943 0.52457211 -0.85032993]\n", + " [-0.04870584 0.54789548 -0.83512771]\n", + " [-0.05525261 0.57034161 -0.81954719]\n", + " [-0.24437652 0.51319451 -0.82274632]\n", + " [-0.21902897 0.52253055 -0.82400736]\n", + " [-0.19294704 0.53155217 -0.82475677]\n", + " [-0.1662371 0.54020972 -0.82494769]\n", + " [-0.13900548 0.54845739 -0.82454349]\n", + " [-0.11135893 0.55625317 -0.82351782]\n", + " [-0.08340507 0.56355909 -0.82185446]\n", + " [-0.05525261 0.57034161 -0.81954719]\n", + " [-0.19229087 0.34769383 -0.91767817]\n", + " [-0.15917699 0.3576874 -0.92017521]\n", + " [-0.12514785 0.36745241 -0.92158382]\n", + " [-0.09039203 0.37690613 -0.92183027]\n", + " [-0.05510449 0.38597355 -0.92086259]\n", + " [-0.01948887 0.3945873 -0.91865175]\n", + " [-0.2067008 0.35528241 -0.91161899]\n", + " [-0.21484286 0.38654496 -0.89689773]\n", + " [-0.22252087 0.41717112 -0.88116555]\n", + " [-0.22968841 0.44699574 -0.86454499]\n", + " [-0.23629963 0.47586524 -0.84718047]\n", + " [-0.24230805 0.50363715 -0.82923846]\n", + " [-0.00998732 0.40903959 -0.91246198]\n", + " [-0.01876306 0.44127021 -0.8971781 ]\n", + " [-0.02745309 0.47270588 -0.88079253]\n", + " [-0.03600724 0.50317814 -0.86343225]\n", + " [-0.04437749 0.53253616 -0.84524309]\n", + " [-0.05251751 0.56064478 -0.82638934]\n", + " [-0.23340631 0.51722564 -0.82340703]\n", + " [-0.20183175 0.52846255 -0.82461584]\n", + " [-0.16925984 0.53917754 -0.82500829]\n", + " [-0.13588635 0.5492847 -0.82451272]\n", + " [-0.10190785 0.5587067 -0.82308057]\n", + " [-0.06752292 0.56737545 -0.82068615]\n", + " [-0.20372512 0.34412882 -0.91655411]\n", + " [-0.20372512 0.34412882 -0.91655411]\n", + " [-0.05532703 0.57024415 -0.81960998]\n", + " [-0.05532703 0.57024415 -0.81960998]\n", + " [-0.19528005 0.35889072 -0.91272293]\n", + " [-0.20347546 0.39026774 -0.89793587]\n", + " [-0.21122918 0.42099579 -0.88212515]\n", + " [-0.21849514 0.45090942 -0.86541353]\n", + " [-0.22522794 0.47985516 -0.8479454 ]\n", + " [-0.23138151 0.50769086 -0.82988709]\n", + " [-0.16220072 0.3689932 -0.91516935]\n", + " [-0.17053695 0.40065674 -0.90021738]\n", + " [-0.17849498 0.43163729 -0.88421083]\n", + " [-0.18602934 0.46176852 -0.86727327]\n", + " [-0.19309581 0.49089728 -0.84954922]\n", + " [-0.19964962 0.51888265 -0.83120444]\n", + " [-0.12820061 0.37884649 -0.91653693]\n", + " [-0.13666291 0.41073989 -0.90145216]\n", + " [-0.14481138 0.44191886 -0.88528944]\n", + " [-0.15260049 0.47221611 -0.86817339]\n", + " [-0.15998654 0.50147894 -0.85024889]\n", + " [-0.16692576 0.52956797 -0.83168116]\n", + " [-0.09346824 0.38836728 -0.91675217]\n", + " [-0.10204206 0.42043239 -0.90156753]\n", + " [-0.11036804 0.45175457 -0.88528905]\n", + " [-0.11839985 0.48216574 -0.86804244]\n", + " [-0.12609341 0.51151375 -0.84997302]\n", + " [-0.13340515 0.53966077 -0.83124564]\n", + " [-0.05819837 0.39747991 -0.91576344]\n", + " [-0.06686878 0.42965687 -0.90051293]\n", + " [-0.07535923 0.46106593 -0.88416017]\n", + " [-0.08362197 0.49153856 -0.86683171]\n", + " [-0.09161165 0.52092319 -0.84867328]\n", + " [-0.09928399 0.54908339 -0.82984946]\n", + " [-0.02259443 0.40611637 -0.913542 ]\n", + " [-0.03134563 0.43834391 -0.89826058]\n", + " [-0.03998635 0.46978276 -0.88187598]\n", + " [-0.04846706 0.50026435 -0.8645152 ]\n", + " [-0.0567405 0.52963767 -0.84632408]\n", + " [-0.06476096 0.55776732 -0.827467 ]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:fp_optics: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:cartToSphere: vec: [[ 0.96652828 -0.17408868 -0.18845746]\n", + " [ 0.96333373 -0.16227157 -0.21367278]\n", + " [ 0.95929642 -0.15008806 -0.23921528]\n", + " [ 0.95439059 -0.13758052 -0.26497206]\n", + " [ 0.94860016 -0.12479203 -0.29083446]\n", + " [ 0.94191921 -0.11176745 -0.31669581]\n", + " [ 0.93435282 -0.09855441 -0.34244976]\n", + " [ 0.92591778 -0.08520361 -0.36798997]\n", + " [ 0.96652828 -0.17408868 -0.18845746]\n", + " [ 0.95925946 -0.19986104 -0.1996919 ]\n", + " [ 0.95119883 -0.22534224 -0.2108119 ]\n", + " [ 0.94238899 -0.25043365 -0.22177912]\n", + " [ 0.93288264 -0.27503851 -0.23255925]\n", + " [ 0.92274237 -0.29906213 -0.2431221 ]\n", + " [ 0.9120403 -0.32241276 -0.25344133]\n", + " [ 0.90085708 -0.34500372 -0.26349375]\n", + " [ 0.92591778 -0.08520361 -0.36798997]\n", + " [ 0.91840888 -0.11192275 -0.37947125]\n", + " [ 0.91009927 -0.13845346 -0.39057644]\n", + " [ 0.90103365 -0.1646923 -0.4012665 ]\n", + " [ 0.89126599 -0.19054096 -0.4115083 ]\n", + " [ 0.88085895 -0.21590597 -0.4212744 ]\n", + " [ 0.86988411 -0.24069694 -0.43054223]\n", + " [ 0.8584228 -0.26482418 -0.43929313]\n", + " [ 0.90085708 -0.34500372 -0.26349375]\n", + " [ 0.8969633 -0.33508249 -0.28840347]\n", + " [ 0.89236911 -0.32458209 -0.31356632]\n", + " [ 0.88705142 -0.3135399 -0.33886947]\n", + " [ 0.88099649 -0.30199779 -0.3642012 ]\n", + " [ 0.87420064 -0.29000012 -0.38945241]\n", + " [ 0.86667043 -0.277593 -0.41451719]\n", + " [ 0.8584228 -0.26482418 -0.43929313]\n", + " [ 0.96521346 -0.169073 -0.19944247]\n", + " [ 0.96073498 -0.15433906 -0.23058133]\n", + " [ 0.95496404 -0.13909668 -0.26209883]\n", + " [ 0.947867 -0.12342482 -0.29379324]\n", + " [ 0.93943307 -0.10740617 -0.325468 ]\n", + " [ 0.92967646 -0.09112973 -0.35692724]\n", + " [ 0.96344908 -0.18531556 -0.19345285]\n", + " [ 0.95400278 -0.21671991 -0.20715012]\n", + " [ 0.9434083 -0.24758877 -0.22063677]\n", + " [ 0.93175847 -0.27774322 -0.23384794]\n", + " [ 0.91916849 -0.30700905 -0.24672804]\n", + " [ 0.90577475 -0.33521924 -0.25922993]\n", + " [ 0.92277507 -0.09691543 -0.3729525 ]\n", + " [ 0.91302853 -0.12954884 -0.38677642]\n", + " [ 0.9021226 -0.16179584 -0.39999615]\n", + " [ 0.89015281 -0.19347323 -0.41254827]\n", + " [ 0.87723457 -0.22440877 -0.42438215]\n", + " [ 0.86350366 -0.25443638 -0.43545787]\n", + " [ 0.89928284 -0.34067502 -0.27428254]\n", + " [ 0.89404348 -0.32812047 -0.30499708]\n", + " [ 0.88772798 -0.31473259 -0.33597979]\n", + " [ 0.88030716 -0.30058679 -0.36702438]\n", + " [ 0.87177419 -0.28576464 -0.39793006]\n", + " [ 0.86214552 -0.27035169 -0.42850329]\n", + " [ 0.96649529 -0.17413746 -0.18858156]\n", + " [ 0.96649529 -0.17413746 -0.18858156]\n", + " [ 0.85849212 -0.26478713 -0.43917998]\n", + " [ 0.85849212 -0.26478713 -0.43917998]\n", + " [ 0.96215505 -0.18029568 -0.20433095]\n", + " [ 0.95266849 -0.21183221 -0.2180593 ]\n", + " [ 0.94202558 -0.24284169 -0.23155068]\n", + " [ 0.93031937 -0.27314501 -0.24474 ]\n", + " [ 0.9176653 -0.30256759 -0.25757182]\n", + " [ 0.90420032 -0.33094087 -0.26999986]\n", + " [ 0.95764605 -0.16567403 -0.23551256]\n", + " [ 0.94806046 -0.19754546 -0.24931336]\n", + " [ 0.93730062 -0.22891372 -0.26280421]\n", + " [ 0.92546029 -0.25959958 -0.27591903]\n", + " [ 0.91265531 -0.28942871 -0.28860234]\n", + " [ 0.89902334 -0.31823078 -0.30080924]\n", + " [ 0.95185065 -0.15052315 -0.2670639 ]\n", + " [ 0.9421884 -0.18267101 -0.28091336]\n", + " [ 0.93134187 -0.21433964 -0.29438212]\n", + " [ 0.91940567 -0.24534962 -0.30740329]\n", + " [ 0.90649587 -0.27552788 -0.31992129]\n", + " [ 0.89275008 -0.30470481 -0.33189196]\n", + " [ 0.94473536 -0.13492162 -0.29878296]\n", + " [ 0.93501945 -0.16728681 -0.31265597]\n", + " [ 0.9241172 -0.1991977 -0.32607924]\n", + " [ 0.91212404 -0.23047413 -0.33898587]\n", + " [ 0.89915616 -0.26094417 -0.35132086]\n", + " [ 0.88535073 -0.29043994 -0.36304094]\n", + " [ 0.93628963 -0.11895139 -0.33047283]\n", + " [ 0.92654397 -0.15147323 -0.34434305]\n", + " [ 0.91561799 -0.18356773 -0.35769621]\n", + " [ 0.90360758 -0.21505353 -0.37046635]\n", + " [ 0.89062882 -0.24575912 -0.38259999]\n", + " [ 0.87681829 -0.27551809 -0.39405515]\n", + " [ 0.92652791 -0.10270063 -0.36193731]\n", + " [ 0.91677719 -0.1353163 -0.37577797]\n", + " [ 0.90586023 -0.16753435 -0.38903662]\n", + " [ 0.89387277 -0.19917206 -0.40164906]\n", + " [ 0.88093044 -0.2300575 -0.4135639 ]\n", + " [ 0.86716922 -0.26002473 -0.42474072]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:fp_optics: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:cartToSphere: vec: [[-0.05488991 -0.02109126 0.99826963]\n", + " [-0.04615639 0.00446388 0.99892425]\n", + " [-0.03706182 0.03049255 0.99884765]\n", + " [-0.02765749 0.05688778 0.99799742]\n", + " [-0.01799204 0.08354326 0.99634171]\n", + " [-0.00811157 0.11035302 0.99385935]\n", + " [ 0.0019399 0.13721128 0.9905399 ]\n", + " [ 0.01212005 0.16401257 0.98638379]\n", + " [-0.05488991 -0.02109126 0.99826963]\n", + " [-0.03041203 -0.03231804 0.99901484]\n", + " [-0.00532251 -0.04362242 0.99903391]\n", + " [ 0.02026527 -0.05496808 0.99828244]\n", + " [ 0.04624034 -0.06631722 0.99672657]\n", + " [ 0.07249379 -0.07763043 0.99434308]\n", + " [ 0.09891834 -0.08886685 0.99111949]\n", + " [ 0.125408 -0.09998456 0.98705416]\n", + " [ 0.01212005 0.16401257 0.98638379]\n", + " [ 0.0382031 0.15413694 0.98731065]\n", + " [ 0.06479043 0.14393751 0.98746351]\n", + " [ 0.09177325 0.13344821 0.98679747]\n", + " [ 0.11904402 0.12270428 0.98527772]\n", + " [ 0.14649466 0.11174303 0.98287986]\n", + " [ 0.17401568 0.10060421 0.97959039]\n", + " [ 0.20149641 0.08932998 0.97540727]\n", + " [ 0.125408 -0.09998456 0.98705416]\n", + " [ 0.13619783 -0.07412223 0.98790488]\n", + " [ 0.14709505 -0.04769365 0.98797184]\n", + " [ 0.1580498 -0.02080075 0.98721203]\n", + " [ 0.16901396 0.006454 0.98559253]\n", + " [ 0.17994046 0.03396601 0.98309091]\n", + " [ 0.19078303 0.06162792 0.97969579]\n", + " [ 0.20149641 0.08932998 0.97540727]\n", + " [-0.05104676 -0.01005219 0.99864567]\n", + " [-0.04009211 0.02160094 0.99896247]\n", + " [-0.02864657 0.05385903 0.99813755]\n", + " [-0.0168008 0.08652611 0.99610791]\n", + " [-0.00463973 0.11940707 0.99283454]\n", + " [ 0.00775634 0.15230729 0.98830275]\n", + " [-0.04427028 -0.02588766 0.99868412]\n", + " [-0.01384291 -0.03970335 0.99911562]\n", + " [ 0.01739019 -0.05359983 0.99841106]\n", + " [ 0.04922371 -0.06750815 0.99650373]\n", + " [ 0.08145711 -0.08135578 0.99335088]\n", + " [ 0.11389341 -0.09506703 0.98893405]\n", + " [ 0.02338814 0.1596569 0.98689547]\n", + " [ 0.05570817 0.14733042 0.98751727]\n", + " [ 0.08867738 0.13455133 0.98693073]\n", + " [ 0.12209738 0.12138397 0.98506759]\n", + " [ 0.15576909 0.10789706 0.98188299]\n", + " [ 0.18949042 0.0941648 0.97735683]\n", + " [ 0.13000497 -0.08874678 0.98753365]\n", + " [ 0.14330672 -0.05665587 0.98805531]\n", + " [ 0.15672017 -0.02381581 0.98735586]\n", + " [ 0.17015605 0.00958506 0.98537051]\n", + " [ 0.18352769 0.04335412 0.98205805]\n", + " [ 0.19675032 0.07729268 0.97740225]\n", + " [-0.05477818 -0.02104302 0.99827679]\n", + " [-0.05477818 -0.02104302 0.99827679]\n", + " [ 0.20136627 0.08927405 0.97543927]\n", + " [ 0.20136627 0.08927405 0.97543927]\n", + " [-0.04047122 -0.01486666 0.9990701 ]\n", + " [-0.00986022 -0.02861309 0.99954193]\n", + " [ 0.02154479 -0.04246446 0.99886565]\n", + " [ 0.05353902 -0.05635176 0.99697445]\n", + " [ 0.08592237 -0.07020219 0.99382544]\n", + " [ 0.11849784 -0.08393964 0.98940002]\n", + " [-0.02934228 0.01687735 0.99942693]\n", + " [ 0.00174026 0.00334267 0.9999929 ]\n", + " [ 0.03358511 -0.01036489 0.99938211]\n", + " [ 0.06598944 -0.02417624 0.99752739]\n", + " [ 0.09875429 -0.03801794 0.99438535]\n", + " [ 0.13168233 -0.05181286 0.98993696]\n", + " [-0.0177481 0.04923452 0.99862954]\n", + " [ 0.01373465 0.03593557 0.99925972]\n", + " [ 0.04595059 0.02239696 0.9986926 ]\n", + " [ 0.07869893 0.00868749 0.99686057]\n", + " [ 0.11178147 -0.00511934 0.99371963]\n", + " [ 0.14500008 -0.01894591 0.98925024]\n", + " [-0.00577894 0.08200913 0.99661482]\n", + " [ 0.02603412 0.06897108 0.9972789 ]\n", + " [ 0.05855362 0.05562805 0.99673316]\n", + " [ 0.09158036 0.042048 0.99490955]\n", + " [ 0.12491638 0.0283037 0.99176348]\n", + " [ 0.15836234 0.01447255 0.98727499]\n", + " [ 0.00648073 0.11500614 0.99334364]\n", + " [ 0.03855542 0.10225431 0.99401083]\n", + " [ 0.07131153 0.08913376 0.99346356]\n", + " [ 0.10455074 0.07571104 0.99163349]\n", + " [ 0.13807484 0.06205752 0.9884757 ]\n", + " [ 0.17168317 0.04824961 0.98396995]\n", + " [ 0.0189509 0.14803057 0.9888012 ]\n", + " [ 0.05121899 0.13558913 0.98944035]\n", + " [ 0.08414456 0.12271674 0.98886819]\n", + " [ 0.11752937 0.10947829 0.98701639]\n", + " [ 0.15117459 0.09594322 0.98384 ]\n", + " [ 0.18487844 0.08218639 0.97931882]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:fp_optics: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:cartToSphere: vec: [[ 0.06426217 0.56939199 -0.81955057]\n", + " [ 0.0731254 0.59064346 -0.80361245]\n", + " [ 0.08210728 0.61184156 -0.78670725]\n", + " [ 0.09116868 0.63287579 -0.76886703]\n", + " [ 0.10027114 0.65364139 -0.75013241]\n", + " [ 0.10937646 0.67403872 -0.73055362]\n", + " [ 0.11844672 0.69397347 -0.71019096]\n", + " [ 0.12744456 0.71335745 -0.68911467]\n", + " [ 0.06426217 0.56939199 -0.81955057]\n", + " [ 0.03680174 0.57779453 -0.81535214]\n", + " [ 0.00943055 0.58576158 -0.81042855]\n", + " [-0.01774308 0.59327109 -0.80480718]\n", + " [-0.04461049 0.60030888 -0.79852311]\n", + " [-0.07106239 0.60686897 -0.79161872]\n", + " [-0.09698799 0.61295394 -0.78414335]\n", + " [-0.12227363 0.6185752 -0.77615326]\n", + " [ 0.12744456 0.71335745 -0.68911467]\n", + " [ 0.09898785 0.72192616 -0.68485328]\n", + " [ 0.07053507 0.72982121 -0.67998956]\n", + " [ 0.04219964 0.73702074 -0.67455142]\n", + " [ 0.01409366 0.74351187 -0.66857421]\n", + " [-0.01367284 0.74929056 -0.66210023]\n", + " [-0.04099198 0.75436127 -0.65517839]\n", + " [-0.06775697 0.75873647 -0.64786415]\n", + " [-0.12227363 0.6185752 -0.77615326]\n", + " [-0.11541262 0.63933789 -0.7602151 ]\n", + " [-0.10817694 0.66003293 -0.74340721]\n", + " [-0.1006087 0.68054495 -0.72576612]\n", + " [-0.09274667 0.70076704 -0.70733557]\n", + " [-0.08462737 0.72059987 -0.68816715]\n", + " [-0.07628598 0.7399513 -0.66832067]\n", + " [-0.06775697 0.75873647 -0.64786415]\n", + " [ 0.06801512 0.57868648 -0.81270899]\n", + " [ 0.07896175 0.60471097 -0.79252109]\n", + " [ 0.0900478 0.63054476 -0.77091161]\n", + " [ 0.1012022 0.65599267 -0.74795169]\n", + " [ 0.11235465 0.68087127 -0.72373389]\n", + " [ 0.12343556 0.70500946 -0.69837334]\n", + " [ 0.05231494 0.57318008 -0.81775775]\n", + " [ 0.01870473 0.58318871 -0.81212134]\n", + " [-0.01466389 0.59252025 -0.80542208]\n", + " [-0.04759102 0.60114531 -0.79772139]\n", + " [-0.07987535 0.60905293 -0.78909724]\n", + " [-0.11131183 0.61625152 -0.77964334]\n", + " [ 0.11501354 0.71710926 -0.68740541]\n", + " [ 0.08012543 0.72716136 -0.68177436]\n", + " [ 0.04535608 0.73617902 -0.67526533]\n", + " [ 0.01091246 0.7441348 -0.66794035]\n", + " [-0.02300289 0.75102123 -0.65987725]\n", + " [-0.05619189 0.75684984 -0.65116878]\n", + " [-0.11924537 0.62761023 -0.76934124]\n", + " [-0.11057766 0.65302744 -0.74921808]\n", + " [-0.10138961 0.6782274 -0.72782397]\n", + " [-0.09175394 0.70300984 -0.7052364 ]\n", + " [-0.081738 0.72719183 -0.68155039]\n", + " [-0.07140621 0.75060677 -0.65687947]\n", + " [ 0.06419829 0.56949407 -0.81948464]\n", + " [ 0.06419829 0.56949407 -0.81948464]\n", + " [-0.06769596 0.75865949 -0.64796067]\n", + " [-0.06769596 0.75865949 -0.64796067]\n", + " [ 0.05608429 0.5823851 -0.81097604]\n", + " [ 0.02233376 0.59241143 -0.80532596]\n", + " [-0.01118332 0.6017338 -0.79861841]\n", + " [-0.04426686 0.61032252 -0.79091521]\n", + " [-0.07671612 0.61816631 -0.78229473]\n", + " [-0.10832728 0.62527315 -0.77285101]\n", + " [ 0.06691124 0.60844096 -0.79077335]\n", + " [ 0.03280567 0.61850726 -0.78509398]\n", + " [-0.00108851 0.62779693 -0.77837641]\n", + " [-0.03457024 0.63627985 -0.77068336]\n", + " [-0.06743957 0.64394434 -0.76209421]\n", + " [-0.0994957 0.65079772 -0.75270375]\n", + " [ 0.07789992 0.63429945 -0.76915266]\n", + " [ 0.04350291 0.64439 -0.76345859]\n", + " [ 0.00929601 0.65363606 -0.75675193]\n", + " [-0.02451821 0.66200761 -0.74909597]\n", + " [-0.05773976 0.6694933 -0.74057062]\n", + " [-0.09016979 0.67610062 -0.73127105]\n", + " [ 0.08897991 0.65976522 -0.74618525]\n", + " [ 0.05435668 0.66986371 -0.7404917 ]\n", + " [ 0.01990245 0.67905466 -0.73381787]\n", + " [-0.01417854 0.68730857 -0.72622717]\n", + " [-0.04768568 0.69461496 -0.71779951]\n", + " [-0.08042112 0.70098221 -0.70862993]\n", + " [ 0.10008159 0.68465465 -0.72196377]\n", + " [ 0.06529921 0.69474455 -0.71628627]\n", + " [ 0.03066461 0.70386903 -0.70966757]\n", + " [-0.00361651 0.7119994 -0.70217076]\n", + " [-0.03734268 0.71912637 -0.69387519]\n", + " [-0.07031629 0.72525964 -0.68487523]\n", + " [ 0.11113589 0.70879652 -0.69660341]\n", + " [ 0.07626309 0.71886134 -0.69095753]\n", + " [ 0.04151662 0.72790864 -0.68441608]\n", + " [ 0.00710326 0.73591063 -0.67704142]\n", + " [-0.02677473 0.74285937 -0.66891186]\n", + " [-0.05991943 0.74876594 -0.66012061]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:cartToSphere: vec: [[-0.23555438 -0.76407307 0.60058845]\n", + " [-0.25220503 -0.77345458 0.58151581]\n", + " [-0.26911919 -0.78236867 0.56167083]\n", + " [-0.28621035 -0.7907513 0.54110628]\n", + " [-0.30339223 -0.79854578 0.51988248]\n", + " [-0.32058165 -0.8057029 0.49806651]\n", + " [-0.33769979 -0.812181 0.47573193]\n", + " [-0.35467258 -0.8179461 0.45295865]\n", + " [-0.23555438 -0.76407307 0.60058845]\n", + " [-0.25385685 -0.74843765 0.61269714]\n", + " [-0.27245799 -0.73195428 0.62450747]\n", + " [-0.29126441 -0.71465501 0.63595068]\n", + " [-0.31018258 -0.69658091 0.64696352]\n", + " [-0.32912199 -0.67778145 0.65748842]\n", + " [-0.34799644 -0.65831426 0.66747345]\n", + " [-0.36672445 -0.63824509 0.6768725 ]\n", + " [-0.35467258 -0.8179461 0.45295865]\n", + " [-0.37492549 -0.80241806 0.46428024]\n", + " [-0.39529495 -0.78592689 0.47545854]\n", + " [-0.41568039 -0.76850403 0.48642715]\n", + " [-0.43598713 -0.75018765 0.49712544]\n", + " [-0.45612471 -0.73102422 0.50749763]\n", + " [-0.47600538 -0.71107013 0.51749217]\n", + " [-0.49554381 -0.69039277 0.52706182]\n", + " [-0.36672445 -0.63824509 0.6768725 ]\n", + " [-0.38537823 -0.64702809 0.65790445]\n", + " [-0.40409588 -0.65545869 0.63802855]\n", + " [-0.42278403 -0.66347474 0.61729647]\n", + " [-0.44135505 -0.6710213 0.59576516]\n", + " [-0.45972537 -0.67805002 0.5734987 ]\n", + " [-0.47781427 -0.68451891 0.55057005]\n", + " [-0.49554381 -0.69039277 0.52706182]\n", + " [-0.24283887 -0.76816453 0.59241248]\n", + " [-0.26343543 -0.77935664 0.56851122]\n", + " [-0.28434189 -0.78978228 0.54350128]\n", + " [-0.30539907 -0.79933402 0.51749062]\n", + " [-0.32645398 -0.80792127 0.49060271]\n", + " [-0.34736348 -0.81547052 0.46297565]\n", + " [-0.24354874 -0.75739466 0.60583606]\n", + " [-0.26619428 -0.73765801 0.62048471]\n", + " [-0.28919574 -0.71667836 0.63461638]\n", + " [-0.31238076 -0.69452765 0.64811234]\n", + " [-0.33558286 -0.67129691 0.66086656]\n", + " [-0.35864528 -0.64709562 0.67278586]\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + " [-0.36342392 -0.81127744 0.45798686]\n", + " [-0.38833673 -0.79159475 0.47177573]\n", + " [-0.41332408 -0.77049595 0.4852826 ]\n", + " [-0.43820928 -0.74804851 0.49839347]\n", + " [-0.46282561 -0.72433816 0.51100556]\n", + " [-0.4870125 -0.6994733 0.52302574]\n", + " [-0.3747795 -0.64218338 0.6686859 ]\n", + " [-0.39769599 -0.65271975 0.64482154]\n", + " [-0.4206151 -0.6626641 0.61964444]\n", + " [-0.44337314 -0.67191232 0.59325719]\n", + " [-0.46581613 -0.68037536 0.56577796]\n", + " [-0.48779659 -0.68797871 0.53734513]\n", + " [-0.23567276 -0.76405387 0.60056643]\n", + " [-0.23567276 -0.76405387 0.60056643]\n", + " [-0.49541774 -0.69044559 0.52711114]\n", + " [-0.49541774 -0.69044559 0.52711114]\n", + " [-0.25078757 -0.7615042 0.59767629]\n", + " [-0.27362925 -0.74175278 0.61231515]\n", + " [-0.29680857 -0.72074171 0.62644717]\n", + " [-0.3201508 -0.69854311 0.6399539 ]\n", + " [-0.34348868 -0.67524803 0.65272936]\n", + " [-0.36666533 -0.65096609 0.66468013]\n", + " [-0.27157911 -0.77269648 0.57374641]\n", + " [-0.29494115 -0.75291595 0.58832584]\n", + " [-0.31858645 -0.73183288 0.60243117]\n", + " [-0.34233671 -0.70951945 0.61594458]\n", + " [-0.36602441 -0.68606637 0.62875995]\n", + " [-0.38949281 -0.66158346 0.64078286]\n", + " [-0.29266065 -0.78312741 0.54869045]\n", + " [-0.31648403 -0.76333702 0.56316467]\n", + " [-0.3405363 -0.74220764 0.57720261]\n", + " [-0.36463883 -0.71981066 0.590687 ]\n", + " [-0.38862506 -0.69623589 0.60351152]\n", + " [-0.41233843 -0.67159313 0.61558077]\n", + " [-0.31387066 -0.79268974 0.52261667]\n", + " [-0.33809288 -0.77290918 0.53694004]\n", + " [-0.36249279 -0.75175944 0.55086906]\n", + " [-0.38689275 -0.72931062 0.56428718]\n", + " [-0.41112708 -0.70565115 0.57708836]\n", + " [-0.43503871 -0.68089062 0.58917678]\n", + " [-0.3350554 -0.80129291 0.49564862]\n", + " [-0.35961359 -0.78154154 0.50977534]\n", + " [-0.38430269 -0.76039697 0.52355314]\n", + " [-0.40894599 -0.73792787 0.5368665 ]\n", + " [-0.43337792 -0.71422127 0.54961036]\n", + " [-0.45744016 -0.68938631 0.56168943]\n", + " [-0.35607153 -0.80886317 0.4679246 ]\n", + " [-0.38090296 -0.78915945 0.48180941]\n", + " [-0.40582293 -0.76804454 0.49539412]\n", + " [-0.4306549 -0.74558611 0.50856437]\n", + " [-0.45523256 -0.72187011 0.52121671]\n", + " [-0.47939594 -0.69700513 0.53325733]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:fp_optics: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:fp_optics: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:cartToSphere: vec: [[-0.52318986 0.83237016 -0.18284497]\n", + " [-0.5144907 0.83152182 -0.20945354]\n", + " [-0.5052035 0.82998418 -0.23642267]\n", + " [-0.49534258 0.82772694 -0.26363582]\n", + " [-0.48492748 0.82472827 -0.29097874]\n", + " [-0.47398379 0.82097524 -0.31833792]\n", + " [-0.46254355 0.81646435 -0.3456001 ]\n", + " [-0.45064541 0.81120194 -0.37265283]\n", + " [-0.52318986 0.83237016 -0.18284497]\n", + " [-0.49983517 0.84809326 -0.1757914 ]\n", + " [-0.47610717 0.86305257 -0.1687075 ]\n", + " [-0.45210364 0.87719975 -0.16162579]\n", + " [-0.42792672 0.89049594 -0.15458236]\n", + " [-0.40368272 0.90291161 -0.14761738]\n", + " [-0.37948244 0.91442619 -0.14077577]\n", + " [-0.35544176 0.9250277 -0.13410785]\n", + " [-0.45064541 0.81120194 -0.37265283]\n", + " [-0.42652929 0.82746494 -0.36520478]\n", + " [-0.40210856 0.84293183 -0.35745579]\n", + " [-0.37748528 0.85755216 -0.34944122]\n", + " [-0.35276371 0.87128668 -0.34119977]\n", + " [-0.32804957 0.88410718 -0.33277315]\n", + " [-0.30345023 0.89599575 -0.32420608]\n", + " [-0.27907603 0.90694371 -0.31554663]\n", + " [-0.35544176 0.9250277 -0.13410785]\n", + " [-0.34544406 0.92482782 -0.15925419]\n", + " [-0.33510555 0.92386828 -0.18485581]\n", + " [-0.32444271 0.92211966 -0.21078962]\n", + " [-0.31347776 0.91956089 -0.23693769]\n", + " [-0.30223858 0.91617948 -0.26318625]\n", + " [-0.29075852 0.91197186 -0.28942497]\n", + " [-0.27907603 0.90694371 -0.31554663]\n", + " [-0.51939059 0.83213797 -0.19437031]\n", + " [-0.50833109 0.83063949 -0.22723893]\n", + " [-0.49640217 0.82807453 -0.26053301]\n", + " [-0.48363762 0.82439937 -0.29404138]\n", + " [-0.47008457 0.81959026 -0.32755503]\n", + " [-0.45580479 0.81364485 -0.36086571]\n", + " [-0.51303005 0.83931437 -0.17986539]\n", + " [-0.48414254 0.85807809 -0.17119578]\n", + " [-0.45479101 0.8756454 -0.16251237]\n", + " [-0.42516168 0.89194084 -0.15388008]\n", + " [-0.39545033 0.90691 -0.14537294]\n", + " [-0.365863 0.92051859 -0.13707589]\n", + " [-0.44021598 0.81840612 -0.36935256]\n", + " [-0.41044168 0.83780955 -0.36001777]\n", + " [-0.38031087 0.8559658 -0.35026588]\n", + " [-0.35001466 0.87279797 -0.34016677]\n", + " [-0.31974768 0.88825402 -0.32979724]\n", + " [-0.28970873 0.90230487 -0.31924094]\n", + " [-0.35120753 0.92499696 -0.14503064]\n", + " [-0.33872401 0.92424507 -0.17617351]\n", + " [-0.32574413 0.92232197 -0.20787724]\n", + " [-0.3123064 0.91918543 -0.23992263]\n", + " [-0.29846212 0.91481248 -0.27210015]\n", + " [-0.28427485 0.90920038 -0.30420796]\n", + " [-0.523082 0.8324234 -0.18291118]\n", + " [-0.523082 0.8324234 -0.18291118]\n", + " [-0.27919911 0.90692646 -0.31548733]\n", + " [-0.27919911 0.90692646 -0.31548733]\n", + " [-0.50929947 0.83905564 -0.19131042]\n", + " [-0.48030251 0.85788871 -0.18258275]\n", + " [-0.45084428 0.87551583 -0.17381445]\n", + " [-0.42111142 0.89186156 -0.16507011]\n", + " [-0.39129965 0.90687176 -0.15642311]\n", + " [-0.36161456 0.92051261 -0.14795759]\n", + " [-0.49814162 0.83762452 -0.224143 ]\n", + " [-0.46887219 0.85663335 -0.21526302]\n", + " [-0.43915224 0.87441332 -0.20626839]\n", + " [-0.4091698 0.89088891 -0.19722326]\n", + " [-0.37912062 0.90600685 -0.18819973]\n", + " [-0.34920887 0.91973469 -0.17927984]\n", + " [-0.48613331 0.83511445 -0.25740681]\n", + " [-0.45664796 0.85426812 -0.24839205]\n", + " [-0.42672721 0.87217641 -0.2391907 ]\n", + " [-0.3965605 0.88876363 -0.22986733]\n", + " [-0.36634369 0.90397722 -0.22049373]\n", + " [-0.33627957 0.91778615 -0.21115072]\n", + " [-0.47330889 0.83148134 -0.29089083]\n", + " [-0.44366594 0.85074822 -0.28175877]\n", + " [-0.41360681 0.86876016 -0.27236959]\n", + " [-0.38332217 0.88544115 -0.26278904]\n", + " [-0.35300786 0.90073919 -0.25308962]\n", + " [-0.32286535 0.91462439 -0.243352 ]\n", + " [-0.45971616 0.82670104 -0.32438625]\n", + " [-0.42997571 0.84604859 -0.31515499]\n", + " [-0.39984217 0.86413915 -0.30559739]\n", + " [-0.36950687 0.88089634 -0.29578086]\n", + " [-0.33916535 0.89626835 -0.28577946]\n", + " [-0.30901787 0.91022603 -0.27567468]\n", + " [-0.44541744 0.82077081 -0.35768503]\n", + " [-0.41564101 0.84016564 -0.34837371]\n", + " [-0.385498 0.85830933 -0.33866856]\n", + " [-0.35517968 0.87512508 -0.32863884]\n", + " [-0.32488099 0.89056099 -0.31836058]\n", + " [-0.29480108 0.90458805 -0.30791684]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:fp_optics: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:cartToSphere: vec: [[ 1.26509458e-01 -2.37467209e-01 9.63122361e-01]\n", + " [ 1.09651669e-01 -2.59562314e-01 9.59481066e-01]\n", + " [ 9.23735165e-02 -2.81883542e-01 9.54991519e-01]\n", + " [ 7.47390739e-02 -3.04330542e-01 9.49629924e-01]\n", + " [ 5.68133471e-02 -3.26805932e-01 9.43382280e-01]\n", + " [ 3.86633483e-02 -3.49214041e-01 9.36244999e-01]\n", + " [ 2.03585840e-02 -3.71460475e-01 9.28225535e-01]\n", + " [ 1.97083298e-03 -3.93452594e-01 9.19342794e-01]\n", + " [ 1.26509458e-01 -2.37467209e-01 9.63122361e-01]\n", + " [ 1.03480796e-01 -2.21082873e-01 9.69749498e-01]\n", + " [ 8.03808199e-02 -2.04643259e-01 9.75530656e-01]\n", + " [ 5.72991543e-02 -1.88217413e-01 9.80454493e-01]\n", + " [ 3.43249299e-02 -1.71877889e-01 9.84520081e-01]\n", + " [ 1.15465240e-02 -1.55701085e-01 9.87736731e-01]\n", + " [-1.09483983e-02 -1.39767722e-01 9.90123788e-01]\n", + " [-3.30726326e-02 -1.24163153e-01 9.91710498e-01]\n", + " [ 1.97083298e-03 -3.93452594e-01 9.19342794e-01]\n", + " [-2.17483421e-02 -3.76386626e-01 9.26207383e-01]\n", + " [-4.53721087e-02 -3.59040083e-01 9.32218639e-01]\n", + " [-6.88076228e-02 -3.41486180e-01 9.37364764e-01]\n", + " [-9.19648722e-02 -3.23800543e-01 9.41645194e-01]\n", + " [-1.14757058e-01 -3.06060748e-01 9.45070175e-01]\n", + " [-1.37100059e-01 -2.88346557e-01 9.47660191e-01]\n", + " [-1.58911113e-01 -2.70740848e-01 9.49445444e-01]\n", + " [-3.30726326e-02 -1.24163153e-01 9.91710498e-01]\n", + " [-5.07470312e-02 -1.44391031e-01 9.88218584e-01]\n", + " [-6.86361552e-02 -1.65021936e-01 9.83898795e-01]\n", + " [-8.66722660e-02 -1.85952088e-01 9.78728634e-01]\n", + " [-1.04787094e-01 -2.07082266e-01 9.72695533e-01]\n", + " [-1.22911654e-01 -2.28317443e-01 9.65797013e-01]\n", + " [-1.40976311e-01 -2.49566285e-01 9.58040891e-01]\n", + " [-1.58911113e-01 -2.70740848e-01 9.49445444e-01]\n", + " [ 1.19136356e-01 -2.47010273e-01 9.61661299e-01]\n", + " [ 9.81838947e-02 -2.74254441e-01 9.56631812e-01]\n", + " [ 7.66638041e-02 -3.01738239e-01 9.50303476e-01]\n", + " [ 5.46953102e-02 -3.29281246e-01 9.42646426e-01]\n", + " [ 3.24018421e-02 -3.56707286e-01 9.33654129e-01]\n", + " [ 9.91234353e-03 -3.83843261e-01 9.23345058e-01]\n", + " [ 1.16426224e-01 -2.30409470e-01 9.66103727e-01]\n", + " [ 8.81422592e-02 -2.10282376e-01 9.73659214e-01]\n", + " [ 5.98403890e-02 -1.90140324e-01 9.79931521e-01]\n", + " [ 3.16849304e-02 -1.70115419e-01 9.84914620e-01]\n", + " [ 3.83858904e-03 -1.50348361e-01 9.88625630e-01]\n", + " [-2.35374529e-02 -1.30989682e-01 9.91104279e-01]\n", + " [-8.31357770e-03 -3.85976178e-01 9.22471287e-01]\n", + " [-3.73315261e-02 -3.64862537e-01 9.30312682e-01]\n", + " [-6.61137716e-02 -3.43400053e-01 9.36859313e-01]\n", + " [-9.44933747e-02 -3.21726993e-01 9.42105485e-01]\n", + " [-1.22310475e-01 -2.99986192e-01 9.46069993e-01]\n", + " [-1.49410852e-01 -2.78325716e-01 9.48794600e-01]\n", + " [-4.06730199e-02 -1.32979495e-01 9.90283878e-01]\n", + " [-6.24876089e-02 -1.58056774e-01 9.85450838e-01]\n", + " [-8.45576129e-02 -1.83635660e-01 9.79350782e-01]\n", + " [-1.06757586e-01 -2.09531599e-01 9.71956443e-01]\n", + " [-1.28960534e-01 -2.35569592e-01 9.63263281e-01]\n", + " [-1.51038105e-01 -2.61582905e-01 9.53290026e-01]\n", + " [ 1.26374071e-01 -2.37486403e-01 9.63135402e-01]\n", + " [ 1.26374071e-01 -2.37486403e-01 9.63135402e-01]\n", + " [-1.58776496e-01 -2.70728582e-01 9.49471463e-01]\n", + " [-1.58776496e-01 -2.70728582e-01 9.49471463e-01]\n", + " [ 1.09150876e-01 -2.39903956e-01 9.64640958e-01]\n", + " [ 8.07701086e-02 -2.19678013e-01 9.72223102e-01]\n", + " [ 5.23864472e-02 -1.99414203e-01 9.78513994e-01]\n", + " [ 2.41646497e-02 -1.79244537e-01 9.83507735e-01]\n", + " [-3.73246571e-03 -1.59309293e-01 9.87221666e-01]\n", + " [-3.11438986e-02 -1.39758508e-01 9.89695719e-01]\n", + " [ 8.81041701e-02 -2.67073802e-01 9.59640162e-01]\n", + " [ 5.94845129e-02 -2.46594409e-01 9.67291471e-01]\n", + " [ 3.09050563e-02 -2.26014492e-01 9.73633569e-01]\n", + " [ 2.53184234e-03 -2.05466171e-01 9.78660943e-01]\n", + " [-2.54720976e-02 -1.85088760e-01 9.82391634e-01]\n", + " [-5.29465127e-02 -1.65030661e-01 9.84866259e-01]\n", + " [ 6.65084189e-02 -2.94496608e-01 9.53335396e-01]\n", + " [ 3.77031891e-02 -2.73803033e-01 9.61046497e-01]\n", + " [ 8.98222208e-03 -2.52948893e-01 9.67437945e-01]\n", + " [-1.94873294e-02 -2.32067102e-01 9.72504552e-01]\n", + " [-4.75425094e-02 -2.11296667e-01 9.76265040e-01]\n", + " [-7.50241727e-02 -1.90784637e-01 9.78760745e-01]\n", + " [ 4.44833905e-02 -3.21992283e-01 9.45696673e-01]\n", + " [ 1.55475673e-02 -3.01124355e-01 9.53458125e-01]\n", + " [-1.32590470e-02 -2.80037728e-01 9.59897426e-01]\n", + " [-4.17686226e-02 -2.58866703e-01 9.65009540e-01]\n", + " [-6.98186854e-02 -2.37750788e-01 9.68813663e-01]\n", + " [-9.72514986e-02 -2.16836419e-01 9.71351694e-01]\n", + " [ 2.21531317e-02 -3.49385096e-01 9.36717296e-01]\n", + " [-6.85667571e-03 -3.28383857e-01 9.44519470e-01]\n", + " [-3.56918461e-02 -3.07107381e-01 9.51005336e-01]\n", + " [-6.41844851e-02 -2.85691691e-01 9.56169760e-01]\n", + " [-9.21730250e-02 -2.64277477e-01 9.60032056e-01]\n", + " [-1.19501295e-01 -2.43011410e-01 9.62634352e-01]\n", + " [-3.52899257e-04 -3.76502381e-01 9.26415583e-01]\n", + " [-2.93789687e-02 -3.55410364e-01 9.34248548e-01]\n", + " [-5.81851357e-02 -3.33988329e-01 9.40779616e-01]\n", + " [-8.66041045e-02 -3.12374007e-01 9.46003282e-01]\n", + " [-1.14475539e-01 -2.90709655e-01 9.49938549e-01]\n", + " [-1.41644760e-01 -2.69142889e-01 9.52627350e-01]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:fp_optics: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:cartToSphere: vec: [[-1.63043085e-01 1.96435718e-01 9.66866051e-01]\n", + " [-1.56678464e-01 1.69828914e-01 9.72938846e-01]\n", + " [-1.50060239e-01 1.42557231e-01 9.78345215e-01]\n", + " [-1.43207977e-01 1.14721875e-01 9.83021041e-01]\n", + " [-1.36142961e-01 8.64263037e-02 9.86912148e-01]\n", + " [-1.28888539e-01 5.77774150e-02 9.89974502e-01]\n", + " [-1.21470219e-01 2.88856828e-02 9.92174684e-01]\n", + " [-1.13915554e-01 -1.35525224e-04 9.93490427e-01]\n", + " [-1.63043085e-01 1.96435718e-01 9.66866051e-01]\n", + " [-1.90846810e-01 1.88891960e-01 9.63274272e-01]\n", + " [-2.18379738e-01 1.81120534e-01 9.58908568e-01]\n", + " [-2.45535910e-01 1.73151405e-01 9.53798044e-01]\n", + " [-2.72211686e-01 1.65014671e-01 9.47982572e-01]\n", + " [-2.98305511e-01 1.56740023e-01 9.41512819e-01]\n", + " [-3.23717102e-01 1.48356242e-01 9.34450461e-01]\n", + " [-3.48346138e-01 1.39890863e-01 9.26868661e-01]\n", + " [-1.13915554e-01 -1.35525224e-04 9.93490427e-01]\n", + " [-1.42702096e-01 -7.79406204e-03 9.89734997e-01]\n", + " [-1.71268246e-01 -1.54232042e-02 9.85103707e-01]\n", + " [-1.99503208e-01 -2.29930016e-02 9.79627374e-01]\n", + " [-2.27300266e-01 -3.04742603e-02 9.73347784e-01]\n", + " [-2.54557475e-01 -3.78387559e-02 9.66317091e-01]\n", + " [-2.81177579e-01 -4.50592463e-02 9.58597326e-01]\n", + " [-3.07066927e-01 -5.21092199e-02 9.50260244e-01]\n", + " [-3.48346138e-01 1.39890863e-01 9.26868661e-01]\n", + " [-3.43814182e-01 1.13712968e-01 9.32127228e-01]\n", + " [-3.38790537e-01 8.69387579e-02 9.36836498e-01]\n", + " [-3.33297151e-01 5.96760463e-02 9.40931336e-01]\n", + " [-3.27355484e-01 3.20319402e-02 9.44358164e-01]\n", + " [-3.20987438e-01 4.11393110e-03 9.47074517e-01]\n", + " [-3.14216214e-01 -2.39695632e-02 9.49048803e-01]\n", + " [-3.07066927e-01 -5.21092199e-02 9.50260244e-01]\n", + " [-1.60396261e-01 1.84897778e-01 9.69580245e-01]\n", + " [-1.52423775e-01 1.51828370e-01 9.76583401e-01]\n", + " [-1.44089465e-01 1.17860745e-01 9.82520774e-01]\n", + " [-1.35431769e-01 8.31843299e-02 9.87288511e-01]\n", + " [-1.26493677e-01 4.79959366e-02 9.90805601e-01]\n", + " [-1.17323003e-01 1.25002000e-02 9.93015135e-01]\n", + " [-1.75171109e-01 1.93086675e-01 9.65418365e-01]\n", + " [-2.09079785e-01 1.83684042e-01 9.60492486e-01]\n", + " [-2.42476184e-01 1.73969348e-01 9.54431750e-01]\n", + " [-2.75168535e-01 1.63997974e-01 9.47305094e-01]\n", + " [-3.06969789e-01 1.53824526e-01 9.39205816e-01]\n", + " [-3.37695393e-01 1.43501478e-01 9.30252196e-01]\n", + " [-1.26512480e-01 -3.37702968e-03 9.91959267e-01]\n", + " [-1.61659091e-01 -1.27475287e-02 9.86764328e-01]\n", + " [-1.96364123e-01 -2.20442426e-02 9.80283215e-01]\n", + " [-2.30429369e-01 -3.12130931e-02 9.72588324e-01]\n", + " [-2.63667143e-01 -4.02021167e-02 9.63775610e-01]\n", + " [-2.95899997e-01 -4.89614831e-02 9.53963293e-01]\n", + " [-3.46348878e-01 1.28586274e-01 9.29251325e-01]\n", + " [-3.40459864e-01 9.60870886e-02 9.35336492e-01]\n", + " [-3.33854373e-01 6.27994262e-02 9.40530430e-01]\n", + " [-3.26572070e-01 2.89206877e-02 9.44729737e-01]\n", + " [-3.18653372e-01 -5.35117847e-03 9.47856209e-01]\n", + " [-3.10141765e-01 -3.98161811e-02 9.49856177e-01]\n", + " [-1.63117195e-01 1.96320603e-01 9.66876932e-01]\n", + " [-1.63117195e-01 1.96320603e-01 9.66876932e-01]\n", + " [-3.07004808e-01 -5.19892302e-02 9.50286887e-01]\n", + " [-3.07004808e-01 -5.19892302e-02 9.50286887e-01]\n", + " [-1.72497777e-01 1.81652958e-01 9.68115034e-01]\n", + " [-2.06543706e-01 1.72234694e-01 9.63158817e-01]\n", + " [-2.40080446e-01 1.62527168e-01 9.57050834e-01]\n", + " [-2.72916054e-01 1.52586221e-01 9.49860133e-01]\n", + " [-3.04863959e-01 1.42467001e-01 9.41679946e-01]\n", + " [-3.35740781e-01 1.32222552e-01 9.32628181e-01]\n", + " [-1.64645161e-01 1.48556738e-01 9.75101465e-01]\n", + " [-1.99037883e-01 1.39106078e-01 9.70068771e-01]\n", + " [-2.32930489e-01 1.29431210e-01 9.63841766e-01]\n", + " [-2.66130088e-01 1.19588876e-01 9.56490082e-01]\n", + " [-2.98450900e-01 1.09635225e-01 9.48107155e-01]\n", + " [-3.29712380e-01 9.96244230e-02 9.38810269e-01]\n", + " [-1.56408179e-01 1.14568433e-01 9.81025257e-01]\n", + " [-1.91084688e-01 1.05103807e-01 9.75930239e-01]\n", + " [-2.25271256e-01 9.54812826e-02 9.69606201e-01]\n", + " [-2.58773602e-01 8.57578592e-02 9.62123595e-01]\n", + " [-2.91406002e-01 7.59898283e-02 9.53576472e-01]\n", + " [-3.22989858e-01 6.62315676e-02 9.44082057e-01]\n", + " [-1.47824620e-01 7.98776708e-02 9.85782653e-01]\n", + " [-1.82720293e-01 7.04182649e-02 9.80639874e-01]\n", + " [-2.17137920e-01 6.08687998e-02 9.74241301e-01]\n", + " [-2.50881719e-01 5.12859286e-02 9.66658221e-01]\n", + " [-2.83765527e-01 4.17252847e-02 9.57985452e-01]\n", + " [-3.15611822e-01 3.22405663e-02 9.48340510e-01]\n", + " [-1.38936795e-01 4.46814259e-02 9.89292746e-01]\n", + " [-1.73985192e-01 3.52467333e-02 9.84117280e-01]\n", + " [-2.08569531e-01 2.57911464e-02 9.77667411e-01]\n", + " [-2.42492715e-01 1.63704668e-02 9.70015098e-01]\n", + " [-2.75567917e-01 7.03903566e-03 9.61255832e-01]\n", + " [-3.07617980e-01 -2.15083196e-03 9.51507516e-01]\n", + " [-1.29791977e-01 9.18443175e-03 9.91498708e-01]\n", + " [-1.64925112e-01 -2.06173285e-04 9.86306071e-01]\n", + " [-1.99610414e-01 -9.54773057e-03 9.79828824e-01]\n", + " [-2.33649871e-01 -1.87856655e-02 9.72139309e-01]\n", + " [-2.66856001e-01 -2.78673517e-02 9.63333424e-01]\n", + " [-2.99051495e-01 -3.67422804e-02 9.53529343e-01]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:fp_optics: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:cartToSphere: vec: [[-5.64641013e-01 -1.72926065e-01 8.07017411e-01]\n", + " [-5.86198457e-01 -1.60540979e-01 7.94101985e-01]\n", + " [-6.07710009e-01 -1.47780876e-01 7.80287997e-01]\n", + " [-6.29064409e-01 -1.34689442e-01 7.65595666e-01]\n", + " [-6.50156534e-01 -1.21311957e-01 7.50053259e-01]\n", + " [-6.70886274e-01 -1.07696146e-01 7.33698268e-01]\n", + " [-6.91158398e-01 -9.38925408e-02 7.16578160e-01]\n", + " [-7.10883267e-01 -7.99543129e-02 6.98750519e-01]\n", + " [-5.64641013e-01 -1.72926065e-01 8.07017411e-01]\n", + " [-5.56410001e-01 -1.47243299e-01 8.17757495e-01]\n", + " [-5.47815126e-01 -1.21475352e-01 8.27733246e-01]\n", + " [-5.38898724e-01 -9.57233745e-02 8.36914094e-01]\n", + " [-5.29710443e-01 -7.00887114e-02 8.45277717e-01]\n", + " [-5.20307629e-01 -4.46727355e-02 8.52809661e-01]\n", + " [-5.10755918e-01 -1.95771020e-02 8.59502838e-01]\n", + " [-5.01129824e-01 5.09565688e-03 8.65357113e-01]\n", + " [-7.10883267e-01 -7.99543129e-02 6.98750519e-01]\n", + " [-7.02247954e-01 -5.34547879e-02 7.09922811e-01]\n", + " [-6.93011827e-01 -2.69914573e-02 7.20420759e-01]\n", + " [-6.83220388e-01 -6.69655591e-04 7.30211923e-01]\n", + " [-6.72926191e-01 2.54075782e-02 7.39273155e-01]\n", + " [-6.62188261e-01 5.11400927e-02 7.47590394e-01]\n", + " [-6.51071929e-01 7.64301966e-02 7.55158108e-01]\n", + " [-6.39649209e-01 1.01181199e-01 7.61978513e-01]\n", + " [-5.01129824e-01 5.09565688e-03 8.65357113e-01]\n", + " [-5.21193825e-01 1.86458028e-02 8.53234628e-01]\n", + " [-5.41345845e-01 3.23349381e-02 8.40178034e-01]\n", + " [-5.61469635e-01 4.61165110e-02 8.26211302e-01]\n", + " [-5.81457731e-01 5.99424030e-02 8.11365402e-01]\n", + " [-6.01210634e-01 7.37628247e-02 7.95678841e-01]\n", + " [-6.20636169e-01 8.75265192e-02 7.79198212e-01]\n", + " [-6.39649209e-01 1.01181199e-01 7.61978513e-01]\n", + " [-5.74010753e-01 -1.67487084e-01 8.01535858e-01]\n", + " [-6.00414855e-01 -1.52049385e-01 7.85100622e-01]\n", + " [-6.26638769e-01 -1.36091845e-01 7.67334909e-01]\n", + " [-6.52486504e-01 -1.19697112e-01 7.48287354e-01]\n", + " [-6.77773752e-01 -1.02953094e-01 7.28027061e-01]\n", + " [-7.02327462e-01 -8.59539460e-02 7.06645636e-01]\n", + " [-5.61172954e-01 -1.61703199e-01 8.11749340e-01]\n", + " [-5.50834901e-01 -1.30155487e-01 8.24403094e-01]\n", + " [-5.39991397e-01 -9.85803869e-02 8.35877502e-01]\n", + " [-5.28730792e-01 -6.71644151e-02 8.46128058e-01]\n", + " [-5.17158727e-01 -3.60942250e-02 8.55128094e-01]\n", + " [-5.05399697e-01 -5.55728761e-03 8.62867465e-01]\n", + " [-7.07128303e-01 -6.84506092e-02 7.03764220e-01]\n", + " [-6.96135617e-01 -3.59837421e-02 7.17007931e-01]\n", + " [-6.84285024e-01 -3.67600656e-03 7.29205385e-01]\n", + " [-6.71670376e-01 2.82818891e-02 7.40310098e-01]\n", + " [-6.58400313e-01 5.97055180e-02 7.50296128e-01]\n", + " [-6.44597836e-01 9.04155485e-02 7.59156544e-01]\n", + " [-5.09892653e-01 1.08998419e-02 8.60168981e-01]\n", + " [-5.34558929e-01 2.76057739e-02 8.44680219e-01]\n", + " [-5.59240777e-01 4.44745509e-02 8.27811433e-01]\n", + " [-5.83736747e-01 6.14182557e-02 8.09616704e-01]\n", + " [-6.07863597e-01 7.83452487e-02 7.90166989e-01]\n", + " [-6.31454556e-01 9.51607113e-02 7.69551546e-01]\n", + " [-5.64687191e-01 -1.72796831e-01 8.07012783e-01]\n", + " [-5.64687191e-01 -1.72796831e-01 8.07012783e-01]\n", + " [-6.39624479e-01 1.01051138e-01 7.62016531e-01]\n", + " [-6.39624479e-01 1.01051138e-01 7.62016531e-01]\n", + " [-5.70480916e-01 -1.56350694e-01 8.06291501e-01]\n", + " [-5.60080695e-01 -1.24688511e-01 8.19000849e-01]\n", + " [-5.49148494e-01 -9.30093502e-02 8.30533077e-01]\n", + " [-5.37772489e-01 -6.15001623e-02 8.40843909e-01]\n", + " [-5.26057822e-01 -3.03475895e-02 8.49907167e-01]\n", + " [-5.14128248e-01 2.61338511e-04 8.57713283e-01]\n", + " [-5.96845390e-01 -1.40805651e-01 7.89904646e-01]\n", + " [-5.86284384e-01 -1.08858816e-01 8.02757983e-01]\n", + " [-5.75120099e-01 -7.69255107e-02 8.14444189e-01]\n", + " [-5.63440719e-01 -4.51940618e-02 8.24919422e-01]\n", + " [-5.51350483e-01 -1.38511034e-02 8.34158733e-01]\n", + " [-5.38971311e-01 1.69177192e-02 8.42154212e-01]\n", + " [-6.23036477e-01 -1.24761502e-01 7.72178811e-01]\n", + " [-6.12337113e-01 -9.25897360e-02 7.85156291e-01]\n", + " [-6.00968206e-01 -6.04634946e-02 7.96982673e-01]\n", + " [-5.89018684e-01 -2.85724522e-02 8.07614144e-01]\n", + " [-5.76592791e-01 2.89683955e-03 8.17026537e-01]\n", + " [-5.63811385e-01 3.37602493e-02 8.25213286e-01]\n", + " [-6.48858360e-01 -1.08301527e-01 7.53162404e-01]\n", + " [-6.38043315e-01 -7.59663933e-02 7.66243979e-01]\n", + " [-6.26497004e-01 -4.37100347e-02 7.78197235e-01]\n", + " [-6.14309661e-01 -1.17231492e-02 7.88977951e-01]\n", + " [-6.01586372e-01 1.98080057e-02 7.98562133e-01]\n", + " [-5.88447862e-01 5.07008647e-02 8.06943949e-01]\n", + " [-6.74126975e-01 -9.15143485e-02 7.32924243e-01]\n", + " [-6.63219734e-01 -5.90792990e-02 7.46089285e-01]\n", + " [-6.51524032e-01 -2.67570793e-02 7.58155983e-01]\n", + " [-6.39131690e-01 5.26114774e-03 7.69079322e-01]\n", + " [-6.26149193e-01 3.67897140e-02 7.78834838e-01]\n", + " [-6.12697930e-01 6.76475729e-02 7.87416695e-01]\n", + " [-6.98669510e-01 -7.44947166e-02 7.11555657e-01]\n", + " [-6.87694634e-01 -4.20246076e-02 7.24782742e-01]\n", + " [-6.75879018e-01 -9.70159762e-03 7.36948731e-01]\n", + " [-6.63316030e-01 2.22833650e-02 7.48007550e-01]\n", + " [-6.50113764e-01 5.37454910e-02 7.57933715e-01]\n", + " [-6.36394760e-01 8.45050609e-02 7.66720682e-01]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:fp_optics: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:cartToSphere: vec: [[ 0.76584892 0.578429 -0.28088311]\n", + " [ 0.77654734 0.57559308 -0.2562554 ]\n", + " [ 0.78680882 0.5723855 -0.23088246]\n", + " [ 0.79656335 0.56878758 -0.20485976]\n", + " [ 0.8057481 0.56478608 -0.17828818]\n", + " [ 0.81430782 0.56037465 -0.15127137]\n", + " [ 0.82219491 0.5555544 -0.12391467]\n", + " [ 0.82936958 0.55033413 -0.09632469]\n", + " [ 0.76584892 0.578429 -0.28088311]\n", + " [ 0.75111752 0.6001935 -0.27493678]\n", + " [ 0.73556296 0.62196717 -0.26852183]\n", + " [ 0.71921292 0.64363514 -0.2616612 ]\n", + " [ 0.70210395 0.66508628 -0.25438216]\n", + " [ 0.68428104 0.68621541 -0.24671413]\n", + " [ 0.66579753 0.70692419 -0.23868772]\n", + " [ 0.64671499 0.72712154 -0.23033451]\n", + " [ 0.82936958 0.55033413 -0.09632469]\n", + " [ 0.81487574 0.57285112 -0.08842576]\n", + " [ 0.79943018 0.5953695 -0.08029036]\n", + " [ 0.78305944 0.61777129 -0.0719482 ]\n", + " [ 0.76579709 0.63994654 -0.06342903]\n", + " [ 0.74768509 0.6617915 -0.05476331]\n", + " [ 0.72877544 0.68320709 -0.04598293]\n", + " [ 0.70913114 0.70409872 -0.03712161]\n", + " [ 0.64671499 0.72712154 -0.23033451]\n", + " [ 0.6569336 0.72574505 -0.204285 ]\n", + " [ 0.6668206 0.72375853 -0.17754967]\n", + " [ 0.67630747 0.72113775 -0.15022836]\n", + " [ 0.68533313 0.71786605 -0.12242073]\n", + " [ 0.69384318 0.71393458 -0.09422872]\n", + " [ 0.70178961 0.70934276 -0.06575861]\n", + " [ 0.70913114 0.70409872 -0.03712161]\n", + " [ 0.77051352 0.5773115 -0.27022276]\n", + " [ 0.78334097 0.57358933 -0.23952498]\n", + " [ 0.79544181 0.56928964 -0.2078019 ]\n", + " [ 0.8066974 0.5643857 -0.17523723]\n", + " [ 0.81700599 0.55886587 -0.14202166]\n", + " [ 0.8262832 0.55273541 -0.10834966]\n", + " [ 0.75956583 0.58790116 -0.278266 ]\n", + " [ 0.74095445 0.61459747 -0.2706593 ]\n", + " [ 0.72113298 0.64119316 -0.26237101]\n", + " [ 0.70016509 0.66748191 -0.25344971]\n", + " [ 0.67813359 0.69327014 -0.24394946]\n", + " [ 0.6551401 0.71837985 -0.23392701]\n", + " [ 0.82314528 0.56016211 -0.09300673]\n", + " [ 0.80473836 0.58777541 -0.08316396]\n", + " [ 0.78492758 0.6152726 -0.07299537]\n", + " [ 0.7637718 0.64244799 -0.06255569]\n", + " [ 0.74134849 0.66911038 -0.05190105]\n", + " [ 0.71775794 0.69507919 -0.04109095]\n", + " [ 0.65127285 0.72652616 -0.21909681]\n", + " [ 0.66358347 0.72443166 -0.18669696]\n", + " [ 0.67532694 0.7213961 -0.15336622]\n", + " [ 0.68638776 0.71738567 -0.11928808]\n", + " [ 0.69666575 0.71238412 -0.08465043]\n", + " [ 0.70607526 0.70639401 -0.04965104]\n", + " [ 0.76583722 0.57849419 -0.28078074]\n", + " [ 0.76583722 0.57849419 -0.28078074]\n", + " [ 0.70917545 0.7040473 -0.0372501 ]\n", + " [ 0.70917545 0.7040473 -0.0372501 ]\n", + " [ 0.76424546 0.58676386 -0.26765099]\n", + " [ 0.74563121 0.61358723 -0.25989385]\n", + " [ 0.72578898 0.64030537 -0.25147442]\n", + " [ 0.70478246 0.66671055 -0.24244324]\n", + " [ 0.68269447 0.69260871 -0.23285494]\n", + " [ 0.65962673 0.71782156 -0.22276623]\n", + " [ 0.77708521 0.58315377 -0.23679159]\n", + " [ 0.75847399 0.6102895 -0.22861304]\n", + " [ 0.73858816 0.63730802 -0.2198318 ]\n", + " [ 0.71749124 0.6639996 -0.21050142]\n", + " [ 0.69526569 0.69016992 -0.20067662]\n", + " [ 0.67201347 0.71564004 -0.19041331]\n", + " [ 0.78920259 0.57893975 -0.20490981]\n", + " [ 0.77061093 0.6063136 -0.19632272]\n", + " [ 0.75070435 0.63356178 -0.18719631]\n", + " [ 0.72954557 0.66047477 -0.17758474]\n", + " [ 0.70721619 0.68685879 -0.16754183]\n", + " [ 0.6838182 0.7125343 -0.15712271]\n", + " [ 0.800479 0.57409366 -0.17219127]\n", + " [ 0.78192363 0.6016291 -0.16321111]\n", + " [ 0.76201941 0.62903541 -0.15375589]\n", + " [ 0.74082781 0.65610431 -0.14387946]\n", + " [ 0.71842911 0.68264286 -0.13363509]\n", + " [ 0.69492505 0.70847088 -0.12307798]\n", + " [ 0.81081266 0.56860339 -0.13882729]\n", + " [ 0.79230998 0.59622353 -0.12946969]\n", + " [ 0.77243088 0.62371649 -0.11970081]\n", + " [ 0.75123542 0.6508754 -0.10957441]\n", + " [ 0.7288025 0.67750818 -0.09914429]\n", + " [ 0.7052333 0.70343415 -0.08846689]\n", + " [ 0.82011894 0.56247426 -0.10501258]\n", + " [ 0.80168444 0.59010272 -0.09529341]\n", + " [ 0.78185218 0.61761126 -0.08522616]\n", + " [ 0.76068119 0.64479402 -0.07486518]\n", + " [ 0.73824921 0.67145961 -0.06426587]\n", + " [ 0.71465677 0.69742731 -0.05348686]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:fp_optics: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:cartToSphere: vec: [[ 0.51356314 0.00631248 -0.85802859]\n", + " [ 0.53385167 -0.00637998 -0.84555407]\n", + " [ 0.55422645 -0.01919314 -0.83214462]\n", + " [ 0.57456949 -0.03208551 -0.81782664]\n", + " [ 0.59477164 -0.04501381 -0.80263345]\n", + " [ 0.61473191 -0.05793277 -0.78660566]\n", + " [ 0.63435685 -0.07079546 -0.76979178]\n", + " [ 0.65356031 -0.08355361 -0.75224844]\n", + " [ 0.51356314 0.00631248 -0.85802859]\n", + " [ 0.52203848 0.03122719 -0.85235009]\n", + " [ 0.53043121 0.05659806 -0.84583651]\n", + " [ 0.53866827 0.08231889 -0.83848679]\n", + " [ 0.54668569 0.10828498 -0.83030664]\n", + " [ 0.55442812 0.1343924 -0.8213088 ]\n", + " [ 0.56184818 0.16053762 -0.81151358]\n", + " [ 0.56890605 0.18661751 -0.80094932]\n", + " [ 0.65356031 -0.08355361 -0.75224844]\n", + " [ 0.66388679 -0.05851579 -0.74554023]\n", + " [ 0.67389453 -0.03291795 -0.73809388]\n", + " [ 0.68351329 -0.00685999 -0.72990583]\n", + " [ 0.6926799 0.01955811 -0.72097991]\n", + " [ 0.70133779 0.04623457 -0.7113281 ]\n", + " [ 0.70943702 0.07306499 -0.7009712 ]\n", + " [ 0.71693475 0.09994263 -0.68993915]\n", + " [ 0.56890605 0.18661751 -0.80094932]\n", + " [ 0.5907175 0.175121 -0.78764553]\n", + " [ 0.61248553 0.16326042 -0.77343875]\n", + " [ 0.63409757 0.15107482 -0.75835129]\n", + " [ 0.65544724 0.13860516 -0.74241331]\n", + " [ 0.67643328 0.12589506 -0.72566414]\n", + " [ 0.69695935 0.1129911 -0.708153 ]\n", + " [ 0.71693475 0.09994263 -0.68993915]\n", + " [ 0.52242006 0.00088044 -0.85268781]\n", + " [ 0.54736058 -0.0147613 -0.8367667 ]\n", + " [ 0.57231228 -0.0305435 -0.81946674]\n", + " [ 0.5970706 -0.04638719 -0.80084638]\n", + " [ 0.62144952 -0.06220912 -0.78098049]\n", + " [ 0.64528005 -0.07792228 -0.75996169]\n", + " [ 0.51733316 0.01706948 -0.85561383]\n", + " [ 0.52767614 0.04792587 -0.84809257]\n", + " [ 0.53782122 0.07936181 -0.83931522]\n", + " [ 0.5476469 0.11118393 -0.82928946]\n", + " [ 0.55705116 0.14320088 -0.81803882]\n", + " [ 0.56594997 0.1752222 -0.80560401]\n", + " [ 0.65803193 -0.07266879 -0.7494753 ]\n", + " [ 0.67048232 -0.04159269 -0.74075874]\n", + " [ 0.68238346 -0.00977489 -0.73092905]\n", + " [ 0.69361616 0.02260075 -0.71999016]\n", + " [ 0.7040763 0.05534671 -0.7079642 ]\n", + " [ 0.71367485 0.08826978 -0.69489327]\n", + " [ 0.57839014 0.1815629 -0.79529853]\n", + " [ 0.60510739 0.16722222 -0.77838408]\n", + " [ 0.63164683 0.1523735 -0.7601346 ]\n", + " [ 0.65781016 0.1370913 -0.7406023 ]\n", + " [ 0.68341094 0.12145598 -0.71985966]\n", + " [ 0.7082741 0.10555446 -0.69800147]\n", + " [ 0.51366127 0.00635363 -0.85796954]\n", + " [ 0.51366127 0.00635363 -0.85796954]\n", + " [ 0.71684291 0.09989557 -0.69004139]\n", + " [ 0.71684291 0.09989557 -0.69004139]\n", + " [ 0.52616018 0.01162143 -0.85030607]\n", + " [ 0.53667687 0.0425548 -0.84271408]\n", + " [ 0.54696718 0.07407671 -0.83387022]\n", + " [ 0.55691034 0.10599437 -0.82378157]\n", + " [ 0.5664049 0.13811659 -0.81247111]\n", + " [ 0.57536707 0.17025259 -0.79997924]\n", + " [ 0.55128119 -0.00396544 -0.83431009]\n", + " [ 0.56225702 0.02714024 -0.82651706]\n", + " [ 0.57293092 0.05886118 -0.81748732]\n", + " [ 0.58318403 0.09100633 -0.80722626]\n", + " [ 0.59291601 0.12338497 -0.79575546]\n", + " [ 0.60204334 0.15580528 -0.78311463]\n", + " [ 0.57639509 -0.01971695 -0.81693326]\n", + " [ 0.58778345 0.0114934 -0.80893666]\n", + " [ 0.59880194 0.04334722 -0.79972323]\n", + " [ 0.60933293 0.07565537 -0.78929693]\n", + " [ 0.61927631 0.1082276 -0.77767836]\n", + " [ 0.628548 0.1408711 -0.76490702]\n", + " [ 0.60129811 -0.03555395 -0.79823336]\n", + " [ 0.61305466 -0.00430619 -0.79002876]\n", + " [ 0.62438054 0.02761422 -0.78063205]\n", + " [ 0.63515846 0.06002 -0.77004632]\n", + " [ 0.64528767 0.09272154 -0.75829186]\n", + " [ 0.65468286 0.12552528 -0.74540845]\n", + " [ 0.62580471 -0.05139276 -0.77828481]\n", + " [ 0.637886 -0.02017401 -0.76986652]\n", + " [ 0.6494823 0.01174692 -0.76028597]\n", + " [ 0.66047584 0.04418441 -0.74954613]\n", + " [ 0.6707646 0.07694967 -0.73766767]\n", + " [ 0.6802617 0.10984889 -0.72469114]\n", + " [ 0.64974586 -0.06714589 -0.75718013]\n", + " [ 0.66210791 -0.03602127 -0.7485423 ]\n", + " [ 0.67393651 -0.00416518 -0.73877753]\n", + " [ 0.68511289 0.02823813 -0.72788937]\n", + " [ 0.69553345 0.06100083 -0.71589952]\n", + " [ 0.70510972 0.09392942 -0.70284959]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:cartToSphere: vec: [[ 4.32494977e-01 -7.82905784e-02 -8.98230861e-01]\n", + " [ 4.24644521e-01 -5.30693307e-02 -9.03803450e-01]\n", + " [ 4.16175386e-01 -2.73376543e-02 -9.08873314e-01]\n", + " [ 4.07121184e-01 -1.19977138e-03 -9.13373364e-01]\n", + " [ 3.97515646e-01 2.52409372e-02 -9.17248170e-01]\n", + " [ 3.87393597e-01 5.18810204e-02 -9.20453454e-01]\n", + " [ 3.76791849e-01 7.86165303e-02 -9.22955765e-01]\n", + " [ 3.65749812e-01 1.05343086e-01 -9.24732345e-01]\n", + " [ 4.32494977e-01 -7.82905784e-02 -8.98230861e-01]\n", + " [ 4.10198375e-01 -9.01897347e-02 -9.07525815e-01]\n", + " [ 3.87054215e-01 -1.02138395e-01 -9.16382444e-01]\n", + " [ 3.63152799e-01 -1.14095509e-01 -9.24717394e-01]\n", + " [ 3.38584511e-01 -1.26018764e-01 -9.32459007e-01]\n", + " [ 3.13441202e-01 -1.37864614e-01 -9.39546678e-01]\n", + " [ 2.87817228e-01 -1.49588606e-01 -9.45930490e-01]\n", + " [ 2.61809922e-01 -1.61145850e-01 -9.51571111e-01]\n", + " [ 3.65749812e-01 1.05343086e-01 -9.24732345e-01]\n", + " [ 3.42025579e-01 9.47424227e-02 -9.34902335e-01]\n", + " [ 3.17537921e-01 8.38503586e-02 -9.44530987e-01]\n", + " [ 2.92369750e-01 7.27060888e-02 -9.53537495e-01]\n", + " [ 2.66607528e-01 6.13498882e-02 -9.61850621e-01]\n", + " [ 2.40342629e-01 4.98236624e-02 -9.69408595e-01]\n", + " [ 2.13671735e-01 3.81710714e-02 -9.76159495e-01]\n", + " [ 1.86696431e-01 2.64373081e-02 -9.82061867e-01]\n", + " [ 2.61809922e-01 -1.61145850e-01 -9.51571111e-01]\n", + " [ 2.52121213e-01 -1.35683511e-01 -9.58136148e-01]\n", + " [ 2.42031008e-01 -1.09609151e-01 -9.64057480e-01]\n", + " [ 2.31568947e-01 -8.30205318e-02 -9.69269526e-01]\n", + " [ 2.20767298e-01 -5.60173465e-02 -9.73716518e-01]\n", + " [ 2.09661542e-01 -2.87023252e-02 -9.77352656e-01]\n", + " [ 1.98290548e-01 -1.18133192e-03 -9.80142573e-01]\n", + " [ 1.86696431e-01 2.64373081e-02 -9.82061867e-01]\n", + " [ 4.29075231e-01 -6.74038512e-02 -9.00750336e-01]\n", + " [ 4.19032147e-01 -3.61354699e-02 -9.07252053e-01]\n", + " [ 4.08093347e-01 -4.20403126e-03 -9.12930526e-01]\n", + " [ 3.96320833e-01 2.81998561e-02 -9.17678901e-01]\n", + " [ 3.83778812e-01 6.08856947e-02 -9.21415626e-01]\n", + " [ 3.70536117e-01 9.36619188e-02 -9.24083563e-01]\n", + " [ 4.22857388e-01 -8.33845088e-02 -9.02351735e-01]\n", + " [ 3.94947926e-01 -9.80060170e-02 -9.13460977e-01]\n", + " [ 3.65855224e-01 -1.12661400e-01 -9.23827562e-01]\n", + " [ 3.35745561e-01 -1.27273294e-01 -9.33314752e-01]\n", + " [ 3.04788152e-01 -1.41761570e-01 -9.41810936e-01]\n", + " [ 2.73157934e-01 -1.56044181e-01 -9.49228612e-01]\n", + " [ 3.55543676e-01 1.00667849e-01 -9.29222620e-01]\n", + " [ 3.25943900e-01 8.74738654e-02 -9.41333574e-01]\n", + " [ 2.95279450e-01 7.38812251e-02 -9.52550057e-01]\n", + " [ 2.63707920e-01 5.99635863e-02 -9.62736984e-01]\n", + " [ 2.31397570e-01 4.57981145e-02 -9.71780684e-01]\n", + " [ 1.98528466e-01 3.14658472e-02 -9.79589888e-01]\n", + " [ 2.57726625e-01 -1.50086342e-01 -9.54489956e-01]\n", + " [ 2.45579398e-01 -1.18455472e-01 -9.62111771e-01]\n", + " [ 2.32858144e-01 -8.60024129e-02 -9.68700506e-01]\n", + " [ 2.19621131e-01 -5.29098031e-02 -9.74149430e-01]\n", + " [ 2.05933690e-01 -1.93667756e-02 -9.78374286e-01]\n", + " [ 1.91868740e-01 1.44307021e-02 -9.81314497e-01]\n", + " [ 4.32394522e-01 -7.82458793e-02 -8.98283118e-01]\n", + " [ 4.32394522e-01 -7.82458793e-02 -8.98283118e-01]\n", + " [ 1.86829054e-01 2.63830315e-02 -9.82038105e-01]\n", + " [ 1.86829054e-01 2.63830315e-02 -9.82038105e-01]\n", + " [ 4.19480890e-01 -7.25147295e-02 -9.04863192e-01]\n", + " [ 3.91415185e-01 -8.70737301e-02 -9.16085323e-01]\n", + " [ 3.62173563e-01 -1.01690235e-01 -9.26547034e-01]\n", + " [ 3.31920942e-01 -1.16286513e-01 -9.36112138e-01]\n", + " [ 3.00825810e-01 -1.30781983e-01 -9.44669204e-01]\n", + " [ 2.69063047e-01 -1.45094114e-01 -9.52130650e-01]\n", + " [ 4.09289982e-01 -4.11620629e-02 -9.11475395e-01]\n", + " [ 3.80821306e-01 -5.55271985e-02 -9.22979882e-01]\n", + " [ 3.51196493e-01 -7.00158725e-02 -9.33680245e-01]\n", + " [ 3.20577056e-01 -8.45497032e-02 -9.43441412e-01]\n", + " [ 2.89130036e-01 -9.90472819e-02 -9.52152014e-01]\n", + " [ 2.57030683e-01 -1.13425089e-01 -9.59723907e-01]\n", + " [ 3.98223381e-01 -9.13717268e-03 -9.17242962e-01]\n", + " [ 3.69407582e-01 -2.32813310e-02 -9.28975790e-01]\n", + " [ 3.39454671e-01 -3.76138246e-02 -9.39870058e-01]\n", + " [ 3.08523716e-01 -5.20563701e-02 -9.49791162e-01]\n", + " [ 2.76781194e-01 -6.65275005e-02 -9.58627280e-01]\n", + " [ 2.44403329e-01 -8.09433360e-02 -9.66289392e-01]\n", + " [ 3.86341888e-01 2.33700012e-02 -9.22059536e-01]\n", + " [ 3.57231963e-01 9.47572307e-03 -9.33967631e-01]\n", + " [ 3.27004350e-01 -4.67065700e-03 -9.45011291e-01]\n", + " [ 2.95816707e-01 -1.89917002e-02 -9.55055910e-01]\n", + " [ 2.63835652e-01 -3.34066213e-02 -9.63988976e-01]\n", + " [ 2.31238672e-01 -4.78318072e-02 -9.71720533e-01]\n", + " [ 3.73708905e-01 5.61690821e-02 -9.25843771e-01]\n", + " [ 3.44356262e-01 4.25537526e-02 -9.37874161e-01]\n", + " [ 3.13906858e-01 2.86234513e-02 -9.49022224e-01]\n", + " [ 2.82517857e-01 1.44541957e-02 -9.59153135e-01]\n", + " [ 2.50356456e-01 1.25487770e-04 -9.68153722e-01]\n", + " [ 2.17601411e-01 -1.42798739e-02 -9.75933251e-01]\n", + " [ 3.60392909e-01 8.90681351e-02 -9.28538539e-01]\n", + " [ 3.30848553e-01 7.57595971e-02 -9.40637931e-01]\n", + " [ 3.00230677e-01 6.20740812e-02 -9.51844709e-01]\n", + " [ 2.68696663e-01 4.80858726e-02 -9.62023831e-01]\n", + " [ 2.36414488e-01 3.38727857e-02 -9.71061700e-01]\n", + " [ 2.03563940e-01 1.95163741e-02 -9.78867117e-01]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:fp_optics: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:fp_optics: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:cartToSphere: vec: [[ 1.35881987e-01 -1.04782446e-01 9.85168374e-01]\n", + " [ 1.46777966e-01 -7.89715253e-02 9.86012032e-01]\n", + " [ 1.57769204e-01 -5.25875041e-02 9.86074760e-01]\n", + " [ 1.68805559e-01 -2.57322012e-02 9.85313421e-01]\n", + " [ 1.79838509e-01 1.49210204e-03 9.83695016e-01]\n", + " [ 1.90820549e-01 2.89810352e-02 9.81197033e-01]\n", + " [ 2.01705001e-01 5.66274270e-02 9.77807970e-01]\n", + " [ 2.12446269e-01 8.43216749e-02 9.73527831e-01]\n", + " [ 1.35881987e-01 -1.04782446e-01 9.85168374e-01]\n", + " [ 1.62277660e-01 -1.15674336e-01 9.79941533e-01]\n", + " [ 1.88490499e-01 -1.26344267e-01 9.73913989e-01]\n", + " [ 2.14421296e-01 -1.36749343e-01 9.67121050e-01]\n", + " [ 2.39973898e-01 -1.46846447e-01 9.59608592e-01]\n", + " [ 2.65055336e-01 -1.56591810e-01 9.51432958e-01]\n", + " [ 2.89575641e-01 -1.65940520e-01 9.42660963e-01]\n", + " [ 3.13447515e-01 -1.74846271e-01 9.33369936e-01]\n", + " [ 2.12446269e-01 8.43216749e-02 9.73527831e-01]\n", + " [ 2.39677809e-01 7.29171499e-02 9.68110344e-01]\n", + " [ 2.66606630e-01 6.14861101e-02 9.61842172e-01]\n", + " [ 2.93129662e-01 5.00745523e-02 9.54760462e-01]\n", + " [ 3.19149510e-01 3.87280681e-02 9.46912735e-01]\n", + " [ 3.44574768e-01 2.74916427e-02 9.38356243e-01]\n", + " [ 3.69319299e-01 1.64099077e-02 9.29157667e-01]\n", + " [ 3.93300682e-01 5.52779580e-03 9.19393287e-01]\n", + " [ 3.13447515e-01 -1.74846271e-01 9.33369936e-01]\n", + " [ 3.25473098e-01 -1.50574539e-01 9.33485174e-01]\n", + " [ 3.37377369e-01 -1.25628265e-01 9.32949114e-01]\n", + " [ 3.49107737e-01 -1.00113772e-01 9.31719389e-01]\n", + " [ 3.60613377e-01 -7.41363227e-02 9.29764378e-01]\n", + " [ 3.71845166e-01 -4.78005513e-02 9.27063255e-01]\n", + " [ 3.82755895e-01 -2.12109703e-02 9.23605987e-01]\n", + " [ 3.93300682e-01 5.52779580e-03 9.19393287e-01]\n", + " [ 1.40708474e-01 -9.36435419e-02 9.85612506e-01]\n", + " [ 1.54133980e-01 -6.16117302e-02 9.86127127e-01]\n", + " [ 1.67652361e-01 -2.88202450e-02 9.85424822e-01]\n", + " [ 1.81173651e-01 4.54290923e-03 9.83440629e-01]\n", + " [ 1.94610369e-01 3.82855092e-02 9.80133166e-01]\n", + " [ 2.07877000e-01 7.22091919e-02 9.75486025e-01]\n", + " [ 1.47444009e-01 -1.09468890e-01 9.82993808e-01]\n", + " [ 1.79685156e-01 -1.22674676e-01 9.76045167e-01]\n", + " [ 2.11552675e-01 -1.35504616e-01 9.67927665e-01]\n", + " [ 2.42868262e-01 -1.47879439e-01 9.58721377e-01]\n", + " [ 2.73460740e-01 -1.59718511e-01 9.48530032e-01]\n", + " [ 3.03165605e-01 -1.70938568e-01 9.37480998e-01]\n", + " [ 2.24313298e-01 7.92608256e-02 9.71288457e-01]\n", + " [ 2.57497970e-01 6.52599970e-02 9.64072574e-01]\n", + " [ 2.90125027e-01 5.12652556e-02 9.55614641e-01]\n", + " [ 3.22012757e-01 3.73607226e-02 9.45997865e-01]\n", + " [ 3.52992797e-01 2.36292381e-02 9.35327613e-01]\n", + " [ 3.82908205e-01 1.01530461e-02 9.23730600e-01]\n", + " [ 3.18621598e-01 -1.64323329e-01 9.33529925e-01]\n", + " [ 3.33284961e-01 -1.34107340e-01 9.33239710e-01]\n", + " [ 3.47713789e-01 -1.02983989e-01 9.31927797e-01]\n", + " [ 3.61813795e-01 -7.11474954e-02 9.29531501e-01]\n", + " [ 3.75494566e-01 -3.87905468e-02 9.26012486e-01]\n", + " [ 3.88670133e-01 -6.10559787e-03 9.21356744e-01]\n", + " [ 1.36009490e-01 -1.04732852e-01 9.85156053e-01]\n", + " [ 1.36009490e-01 -1.04732852e-01 9.85156053e-01]\n", + " [ 3.93184678e-01 5.47304139e-03 9.19443231e-01]\n", + " [ 3.93184678e-01 5.47304139e-03 9.19443231e-01]\n", + " [ 1.52186729e-01 -9.83999216e-02 9.83441231e-01]\n", + " [ 1.84543588e-01 -1.11678602e-01 9.76458680e-01]\n", + " [ 2.16514203e-01 -1.24603988e-01 9.68295123e-01]\n", + " [ 2.47919915e-01 -1.37097056e-01 9.59030820e-01]\n", + " [ 2.78589580e-01 -1.49077651e-01 9.48769572e-01]\n", + " [ 3.08359012e-01 -1.60462977e-01 9.37638711e-01]\n", + " [ 1.65721982e-01 -6.64198163e-02 9.83933246e-01]\n", + " [ 1.98367054e-01 -7.98881111e-02 9.76866624e-01]\n", + " [ 2.30590734e-01 -9.30665761e-02 9.68589968e-01]\n", + " [ 2.62213258e-01 -1.05876539e-01 9.59184219e-01]\n", + " [ 2.93063663e-01 -1.18239001e-01 9.48753513e-01]\n", + " [ 3.22978953e-01 -1.30072665e-01 9.37425036e-01]\n", + " [ 1.79328860e-01 -3.36712185e-02 9.83212799e-01]\n", + " [ 2.12202633e-01 -4.73044788e-02 9.76080083e-01]\n", + " [ 2.44620814e-01 -6.07114852e-02 9.67716267e-01]\n", + " [ 2.76402561e-01 -7.38132308e-02 9.58203126e-01]\n", + " [ 3.07377246e-01 -8.65311810e-02 9.47645284e-01]\n", + " [ 3.37383357e-01 -9.87852022e-02 9.36169832e-01]\n", + " [ 1.92916796e-01 -3.41934850e-04 9.81215060e-01]\n", + " [ 2.25958085e-01 -1.41154176e-02 9.74034752e-01]\n", + " [ 2.58510860e-01 -2.77270921e-02 9.65610348e-01]\n", + " [ 2.90393456e-01 -4.10969056e-02 9.56024417e-01]\n", + " [ 3.21435754e-01 -5.41458782e-02 9.45382082e-01]\n", + " [ 3.51477839e-01 -6.67942350e-02 9.33810398e-01]\n", + " [ 2.06397603e-01 3.33761042e-02 9.77898801e-01]\n", + " [ 2.39543431e-01 1.94878771e-02 9.70690047e-01]\n", + " [ 2.72169654e-01 5.69584663e-03 9.62232424e-01]\n", + " [ 3.04094221e-01 -7.91834494e-03 9.52609051e-01]\n", + " [ 3.35147698e-01 -2.12744297e-02 9.41925379e-01]\n", + " [ 3.65171665e-01 -3.42920695e-02 9.30308394e-01]\n", + " [ 2.19685163e-01 6.72848392e-02 9.73247748e-01]\n", + " [ 2.52871164e-01 5.33085082e-02 9.66030216e-01]\n", + " [ 2.85508944e-01 3.93618451e-02 9.57567380e-01]\n", + " [ 3.17416609e-01 2.55283286e-02 9.47942509e-01]\n", + " [ 3.48425512e-01 1.18900812e-02 9.37261057e-01]\n", + " [ 3.78378413e-01 -1.47123838e-03 9.25649832e-01]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:fp_optics: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:cartToSphere: vec: [[-1.30570344e-01 6.16186196e-01 -7.76701974e-01]\n", + " [-1.40863493e-01 5.95594888e-01 -7.90837661e-01]\n", + " [-1.51121416e-01 5.74095511e-01 -8.04721481e-01]\n", + " [-1.61307949e-01 5.51758636e-01 -8.18255555e-01]\n", + " [-1.71386449e-01 5.28659202e-01 -8.31351991e-01]\n", + " [-1.81319730e-01 5.04876811e-01 -8.43932794e-01]\n", + " [-1.91070267e-01 4.80496111e-01 -8.55929694e-01]\n", + " [-2.00600586e-01 4.55606983e-01 -8.67284084e-01]\n", + " [-1.30570344e-01 6.16186196e-01 -7.76701974e-01]\n", + " [-1.04979522e-01 6.11892425e-01 -7.83943212e-01]\n", + " [-7.88051986e-02 6.06929707e-01 -7.90838840e-01]\n", + " [-5.21513959e-02 6.01304542e-01 -7.97316173e-01]\n", + " [-2.51223984e-02 5.95027378e-01 -8.03312694e-01]\n", + " [ 2.17692190e-03 5.88112718e-01 -8.08776046e-01]\n", + " [ 2.96408242e-02 5.80579521e-01 -8.13663838e-01]\n", + " [ 5.71627147e-02 5.72451650e-01 -8.17943477e-01]\n", + " [-2.00600586e-01 4.55606983e-01 -8.67284084e-01]\n", + " [-1.74714063e-01 4.49746536e-01 -8.75901278e-01]\n", + " [-1.48157963e-01 4.43402984e-01 -8.83992654e-01]\n", + " [-1.21031219e-01 4.36581858e-01 -8.91486245e-01]\n", + " [-9.34337825e-02 4.29293032e-01 -8.98319331e-01]\n", + " [-6.54684187e-02 4.21551298e-01 -9.04438162e-01]\n", + " [-3.72416719e-02 4.13376831e-01 -9.09798139e-01]\n", + " [-8.86374911e-03 4.04795399e-01 -9.14364325e-01]\n", + " [ 5.71627147e-02 5.72451650e-01 -8.17943477e-01]\n", + " [ 4.81857101e-02 5.50760970e-01 -8.33270959e-01]\n", + " [ 3.89988461e-02 5.28196292e-01 -8.48226248e-01]\n", + " [ 2.96361456e-02 5.04823843e-01 -8.62713502e-01]\n", + " [ 2.01322134e-02 4.80715187e-01 -8.76645654e-01]\n", + " [ 1.05227473e-02 4.55948788e-01 -8.89943804e-01]\n", + " [ 8.44729856e-04 4.30610880e-01 -9.02537288e-01]\n", + " [-8.86374911e-03 4.04795399e-01 -9.14364325e-01]\n", + " [-1.34973594e-01 6.07310407e-01 -7.82915192e-01]\n", + " [-1.47569195e-01 5.81453339e-01 -8.00084588e-01]\n", + " [-1.60076162e-01 5.54301942e-01 -8.16777191e-01]\n", + " [-1.72427254e-01 5.25992360e-01 -8.32827040e-01]\n", + " [-1.84554030e-01 4.96671183e-01 -8.48090529e-01]\n", + " [-1.96387408e-01 4.66496421e-01 -8.62445984e-01]\n", + " [-1.19526024e-01 6.14327456e-01 -7.79945707e-01]\n", + " [-8.77556500e-02 6.08613619e-01 -7.88599017e-01]\n", + " [-5.52120947e-02 6.01901109e-01 -7.96659701e-01]\n", + " [-2.20872258e-02 5.94207532e-01 -8.04008435e-01]\n", + " [ 1.14258579e-02 5.85559632e-01 -8.10548806e-01]\n", + " [ 4.51321205e-02 5.75994332e-01 -8.16206850e-01]\n", + " [-1.89370353e-01 4.53197617e-01 -8.71063023e-01]\n", + " [-1.57180705e-01 4.45690542e-01 -8.81279846e-01]\n", + " [-1.24083674e-01 4.37462710e-01 -8.90634391e-01]\n", + " [-9.02627484e-02 4.28530465e-01 -8.99007384e-01]\n", + " [-5.59072285e-02 4.18921088e-01 -9.06299897e-01]\n", + " [-2.12148302e-02 4.08674043e-01 -9.12433810e-01]\n", + " [ 5.31822297e-02 5.63134870e-01 -8.24651907e-01]\n", + " [ 4.20336899e-02 5.35955174e-01 -8.43199396e-01]\n", + " [ 3.06038834e-02 5.07527952e-01 -8.61091621e-01]\n", + " [ 1.89562474e-02 4.77982648e-01 -8.78164705e-01]\n", + " [ 7.15652879e-03 4.47463811e-01 -8.94273404e-01]\n", + " [-4.72670264e-03 4.16133435e-01 -9.09291275e-01]\n", + " [-1.30519161e-01 6.16103863e-01 -7.76775887e-01]\n", + " [-1.30519161e-01 6.16103863e-01 -7.76775887e-01]\n", + " [-8.92771395e-03 4.04914385e-01 -9.14311018e-01]\n", + " [-8.92771395e-03 4.04914385e-01 -9.14311018e-01]\n", + " [-1.23951425e-01 6.05490881e-01 -7.86140469e-01]\n", + " [-9.20933150e-02 5.99664739e-01 -7.94934603e-01]\n", + " [-5.94537045e-02 5.92854497e-01 -8.03111949e-01]\n", + " [-2.62240876e-02 5.85077410e-01 -8.10553343e-01]\n", + " [ 7.40257881e-03 5.76359751e-01 -8.17162554e-01]\n", + " [ 4.12309865e-02 5.66738100e-01 -8.22865683e-01]\n", + " [-1.36480417e-01 5.79511820e-01 -8.03454508e-01]\n", + " [-1.04418246e-01 5.73369742e-01 -8.12615511e-01]\n", + " [-7.15507637e-02 5.66286971e-01 -8.21096556e-01]\n", + " [-3.80680279e-02 5.58279534e-01 -8.28779094e-01]\n", + " [-4.16249356e-03 5.49372442e-01 -8.35567229e-01]\n", + " [ 2.99696562e-02 5.39601522e-01 -8.41386960e-01]\n", + " [-1.48944029e-01 5.52238515e-01 -8.20273307e-01]\n", + " [-1.16743771e-01 5.45782704e-01 -8.29754260e-01]\n", + " [-8.37140659e-02 5.38432259e-01 -8.38500243e-01]\n", + " [-5.00432146e-02 5.30202135e-01 -8.46393155e-01]\n", + " [-1.59230610e-02 5.21116570e-01 -8.53336966e-01]\n", + " [ 1.84493198e-02 5.11211192e-01 -8.59257086e-01]\n", + " [-1.61274904e-01 5.23806660e-01 -8.36431102e-01]\n", + " [-1.29002199e-01 5.17037636e-01 -8.46185863e-01]\n", + " [-9.58759305e-02 5.09422526e-01 -8.55158755e-01]\n", + " [-6.20826010e-02 5.00975817e-01 -8.63231708e-01]\n", + " [-2.78133499e-02 4.91721759e-01 -8.70308066e-01]\n", + " [ 6.73405072e-03 4.81696469e-01 -8.76312253e-01]\n", + " [-1.73404260e-01 4.94362512e-01 -8.51784403e-01]\n", + " [-1.41123894e-01 4.87279815e-01 -8.61767038e-01]\n", + " [-1.07966390e-01 4.79402244e-01 -8.70928669e-01]\n", + " [-7.41166582e-02 4.70744611e-01 -8.79150859e-01]\n", + " [-3.97650598e-02 4.61332015e-01 -8.86336004e-01]\n", + " [-5.10967809e-03 4.51201708e-01 -8.92407368e-01]\n", + " [-1.85262564e-01 4.64064119e-01 -8.66211450e-01]\n", + " [-1.53038180e-01 4.56667592e-01 -8.76375505e-01]\n", + " [-1.19914089e-01 4.48530396e-01 -8.85686793e-01]\n", + " [-8.60740440e-02 4.39668382e-01 -8.94026271e-01]\n", + " [-5.17076111e-02 4.30108184e-01 -9.01295331e-01]\n", + " [-1.70126911e-02 4.19888646e-01 -9.07416163e-01]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:fp_optics: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:cartToSphere: vec: [[-0.37426204 -0.6299816 0.68047859]\n", + " [-0.39298977 -0.63868615 0.66154293]\n", + " [-0.41177198 -0.64704822 0.64169497]\n", + " [-0.43051526 -0.65500579 0.62098633]\n", + " [-0.44913176 -0.66250416 0.59947385]\n", + " [-0.46753763 -0.66949532 0.57722143]\n", + " [-0.4856518 -0.67593765 0.55430192]\n", + " [-0.50339605 -0.68179625 0.53079779]\n", + " [-0.37426204 -0.6299816 0.68047859]\n", + " [-0.39264994 -0.60918985 0.68899474]\n", + " [-0.41071558 -0.587986 0.69683942]\n", + " [-0.42839509 -0.5664613 0.7039881 ]\n", + " [-0.44563043 -0.54471389 0.71042262]\n", + " [-0.46236953 -0.52284839 0.71613125]\n", + " [-0.47856628 -0.5009751 0.72110905]\n", + " [-0.49418045 -0.47920766 0.72535902]\n", + " [-0.50339605 -0.68179625 0.53079779]\n", + " [-0.52230963 -0.66023358 0.53970758]\n", + " [-0.54069337 -0.63815001 0.54810149]\n", + " [-0.55848136 -0.61564142 0.55595343]\n", + " [-0.57561634 -0.59280799 0.56324463]\n", + " [-0.59204926 -0.56975396 0.56996325]\n", + " [-0.60773784 -0.54658888 0.57610356]\n", + " [-0.62264513 -0.52342964 0.58166524]\n", + " [-0.49418045 -0.47920766 0.72535902]\n", + " [-0.51318851 -0.48610385 0.70734758]\n", + " [-0.53212846 -0.49289299 0.6884009 ]\n", + " [-0.55090567 -0.49951845 0.66856881]\n", + " [-0.5694294 -0.50592775 0.64790993]\n", + " [-0.58761364 -0.5120745 0.62649016]\n", + " [-0.60537744 -0.51791925 0.60438216]\n", + " [-0.62264513 -0.52342964 0.58166524]\n", + " [-0.38247805 -0.63374405 0.67236822]\n", + " [-0.40548017 -0.64418958 0.64854115]\n", + " [-0.42847051 -0.65405836 0.62339449]\n", + " [-0.4512851 -0.66324669 0.59703065]\n", + " [-0.4737694 -0.67166614 0.56956751]\n", + " [-0.49577533 -0.67924287 0.54114319]\n", + " [-0.38237861 -0.62100252 0.68420937]\n", + " [-0.40470701 -0.59523101 0.69419902]\n", + " [-0.42648709 -0.56893031 0.70315507]\n", + " [-0.44760956 -0.54227824 0.71104148]\n", + " [-0.46797858 -0.51546734 0.71783666]\n", + " [-0.48751167 -0.48870223 0.72353473]\n", + " [-0.51164307 -0.67244582 0.53482519]\n", + " [-0.53447606 -0.64565657 0.54540163]\n", + " [-0.55644691 -0.61817968 0.55517629]\n", + " [-0.5774466 -0.59019787 0.5641116 ]\n", + " [-0.59738461 -0.56190318 0.57218567]\n", + " [-0.61618539 -0.53350028 0.57939021]\n", + " [-0.50241798 -0.48229852 0.71761014]\n", + " [-0.5256809 -0.49068703 0.69489987]\n", + " [-0.5487472 -0.498858 0.67083322]\n", + " [-0.57144813 -0.5067129 0.64551458]\n", + " [-0.5936254 -0.51416644 0.61906523]\n", + " [-0.61513214 -0.52114894 0.5916217 ]\n", + " [-0.37438923 -0.62994157 0.68044568]\n", + " [-0.37438923 -0.62994157 0.68044568]\n", + " [-0.6225374 -0.52349045 0.58172583]\n", + " [-0.6225374 -0.52349045 0.58172583]\n", + " [-0.39049721 -0.62476886 0.67614776]\n", + " [-0.41289487 -0.59888453 0.68618886]\n", + " [-0.43472159 -0.57245589 0.69520601]\n", + " [-0.45586784 -0.54566099 0.70316328]\n", + " [-0.47623784 -0.51869286 0.7100389 ]\n", + " [-0.49574943 -0.4917577 0.715826 ]\n", + " [-0.41357382 -0.63512342 0.65236104]\n", + " [-0.43614157 -0.60895451 0.66253674]\n", + " [-0.45807658 -0.58220259 0.67171868]\n", + " [-0.4792685 -0.55504617 0.67987164]\n", + " [-0.49962165 -0.52767841 0.68697431]\n", + " [-0.51905465 -0.50030751 0.69301852]\n", + " [-0.43662402 -0.64491819 0.62724796]\n", + " [-0.45932258 -0.61851655 0.63754219]\n", + " [-0.48132985 -0.59149931 0.64687722]\n", + " [-0.50253477 -0.5640456 0.65521856]\n", + " [-0.52284205 -0.53634793 0.66254592]\n", + " [-0.54217125 -0.5086141 0.66885128]\n", + " [-0.45948345 -0.65404977 0.60091085]\n", + " [-0.48227222 -0.62746793 0.61130803]\n", + " [-0.50431422 -0.60024342 0.62078579]\n", + " [-0.52549822 -0.57255645 0.62930972]\n", + " [-0.54572992 -0.54459892 0.63686017]\n", + " [-0.56493022 -0.5165773 0.64342967]\n", + " [-0.48199702 -0.66243038 0.57346741]\n", + " [-0.50483383 -0.63572238 0.58395193]\n", + " [-0.52687184 -0.60834959 0.59356284]\n", + " [-0.54800037 -0.58049343 0.60226487]\n", + " [-0.56812662 -0.55234562 0.61003808]\n", + " [-0.58717312 -0.52411139 0.61687517]\n", + " [-0.50401608 -0.66998682 0.54505545]\n", + " [-0.52685774 -0.64320866 0.55561096]\n", + " [-0.54885287 -0.61574805 0.56534491]\n", + " [-0.56989194 -0.58778746 0.5742204 ]\n", + " [-0.5898839 -0.5595188 0.5822162 ]\n", + " [-0.60875276 -0.53114673 0.58932438]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:fp_optics: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:cartToSphere: vec: [[-0.51052502 0.62044251 -0.59532789]\n", + " [-0.49859504 0.60912725 -0.61673899]\n", + " [-0.48592373 0.59722398 -0.63812354]\n", + " [-0.47255798 0.58474741 -0.65936289]\n", + " [-0.45854558 0.57172012 -0.68034702]\n", + " [-0.4439363 0.55817253 -0.7009736 ]\n", + " [-0.42878283 0.54414291 -0.72114754]\n", + " [-0.41314136 0.52967699 -0.74078101]\n", + " [-0.51052502 0.62044251 -0.59532789]\n", + " [-0.49165499 0.63923044 -0.5913204 ]\n", + " [-0.47192886 0.65789245 -0.58690772]\n", + " [-0.4514207 0.67632419 -0.58206954]\n", + " [-0.43020536 0.6944289 -0.57679446]\n", + " [-0.4083598 0.71211671 -0.57107973]\n", + " [-0.38596412 0.72930441 -0.56493077]\n", + " [-0.36310211 0.74591557 -0.55836083]\n", + " [-0.41314136 0.52967699 -0.74078101]\n", + " [-0.39270236 0.54849756 -0.73819732]\n", + " [-0.37152635 0.56726329 -0.73496975]\n", + " [-0.34968069 0.58587428 -0.73107779]\n", + " [-0.32723683 0.60423616 -0.72650858]\n", + " [-0.30427145 0.62225941 -0.72125731]\n", + " [-0.28086693 0.63985945 -0.71532765]\n", + " [-0.25711098 0.65695734 -0.70873196]\n", + " [-0.36310211 0.74591557 -0.55836083]\n", + " [-0.34940727 0.73549851 -0.58047954]\n", + " [-0.33515349 0.72428354 -0.60256576]\n", + " [-0.3203827 0.7122829 -0.6245062 ]\n", + " [-0.30514054 0.69951671 -0.64619317]\n", + " [-0.28947718 0.68601374 -0.66752387]\n", + " [-0.27344752 0.67181172 -0.68840066]\n", + " [-0.25711098 0.65695734 -0.70873196]\n", + " [-0.5053542 0.61564646 -0.60464582]\n", + " [-0.4902271 0.60138202 -0.63088594]\n", + " [-0.47403313 0.58624793 -0.65696724]\n", + " [-0.45685986 0.57028248 -0.68268365]\n", + " [-0.43879901 0.55354169 -0.70784675]\n", + " [-0.41994903 0.53609912 -0.73228447]\n", + " [-0.50236767 0.6286051 -0.59370224]\n", + " [-0.47865417 0.65156111 -0.58852214]\n", + " [-0.45372841 0.67422342 -0.58271202]\n", + " [-0.4277278 0.69641082 -0.57624725]\n", + " [-0.40079411 0.71795784 -0.56912268]\n", + " [-0.37307635 0.73871406 -0.56135157]\n", + " [-0.40437918 0.53793325 -0.73966566]\n", + " [-0.3788257 0.56097631 -0.73606838]\n", + " [-0.35223169 0.58383696 -0.7314829 ]\n", + " [-0.32472685 0.60633926 -0.72588234]\n", + " [-0.29645244 0.6283184 -0.71925791]\n", + " [-0.26756234 0.64962098 -0.71161997]\n", + " [-0.35728159 0.74141633 -0.56802437]\n", + " [-0.34011697 0.72811088 -0.59512603]\n", + " [-0.32215396 0.71361839 -0.62206561]\n", + " [-0.30347498 0.6979726 -0.64864257]\n", + " [-0.28417242 0.68122647 -0.67466772]\n", + " [-0.26434923 0.66345324 -0.69996378]\n", + " [-0.51042255 0.62046917 -0.59538797]\n", + " [-0.51042255 0.62046917 -0.59538797]\n", + " [-0.25724903 0.65695166 -0.70868713]\n", + " [-0.25724903 0.65695166 -0.70868713]\n", + " [-0.49724171 0.62380651 -0.60300591]\n", + " [-0.47337269 0.64683148 -0.5979359 ]\n", + " [-0.44830154 0.66956431 -0.5922072 ]\n", + " [-0.42216432 0.69182418 -0.5857957 ]\n", + " [-0.39510202 0.71344557 -0.57869664]\n", + " [-0.36726348 0.73427774 -0.57092359]\n", + " [-0.48196309 0.60959321 -0.62937087]\n", + " [-0.45768617 0.63276795 -0.62460234]\n", + " [-0.43223526 0.65565929 -0.619099 ]\n", + " [-0.40574304 0.67808741 -0.6128377 ]\n", + " [-0.37834894 0.69988657 -0.60581421]\n", + " [-0.35020193 0.72090487 -0.59804245]\n", + " [-0.46563378 0.59448501 -0.65557056]\n", + " [-0.44099426 0.61774204 -0.65109049]\n", + " [-0.41520865 0.64073044 -0.64580669]\n", + " [-0.3884073 0.66327122 -0.63969607]\n", + " [-0.36072904 0.6851984 -0.63275407]\n", + " [-0.33232366 0.70635901 -0.62499435]\n", + " [-0.44834007 0.57852028 -0.68139964]\n", + " [-0.42338019 0.60179217 -0.67719672]\n", + " [-0.39730301 0.6248156 -0.67212781]\n", + " [-0.37023766 0.64741241 -0.66616908]\n", + " [-0.34232319 0.66941655 -0.65931504]\n", + " [-0.31371059 0.69067431 -0.6515786 ]\n", + " [-0.43017292 0.5617553 -0.70666982]\n", + " [-0.40493333 0.58497486 -0.70273281]\n", + " [-0.37860719 0.60797102 -0.6978738 ]\n", + " [-0.35132339 0.63056651 -0.69206774]\n", + " [-0.32322172 0.65259553 -0.6853078 ]\n", + " [-0.29445452 0.67390415 -0.67760589]\n", + " [-0.41123047 0.54426392 -0.73120878]\n", + " [-0.38575164 0.56736463 -0.72752529]\n", + " [-0.35921973 0.59027147 -0.72286982]\n", + " [-0.33176413 0.61280816 -0.71721595]\n", + " [-0.3035257 0.63480956 -0.71055539]\n", + " [-0.27465796 0.65612204 -0.70289891]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:fp_optics: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:cartToSphere: vec: [[-0.28665282 -0.41161771 0.86510174]\n", + " [-0.27190313 -0.39330679 0.87828153]\n", + " [-0.25651599 -0.37441273 0.891075 ]\n", + " [-0.24055816 -0.35499064 0.90338996]\n", + " [-0.22409616 -0.33510031 0.91514408]\n", + " [-0.20719646 -0.31480647 0.92626482]\n", + " [-0.18992594 -0.29417884 0.93668936]\n", + " [-0.17235225 -0.27329193 0.94636474]\n", + " [-0.28665282 -0.41161771 0.86510174]\n", + " [-0.26691877 -0.42973737 0.86260081]\n", + " [-0.24646345 -0.44783117 0.85947834]\n", + " [-0.22537328 -0.46581146 0.85570238]\n", + " [-0.20373448 -0.48359457 0.85125117]\n", + " [-0.18163336 -0.50110056 0.8461132 ]\n", + " [-0.15915672 -0.51825325 0.84028728]\n", + " [-0.1363923 -0.53498049 0.83378236]\n", + " [-0.17235225 -0.27329193 0.94636474]\n", + " [-0.15077743 -0.29090847 0.94479545]\n", + " [-0.12863643 -0.30865022 0.94243711]\n", + " [-0.10601186 -0.32643297 0.93925662]\n", + " [-0.08298709 -0.34417591 0.9352305 ]\n", + " [-0.05964777 -0.3618006 0.93034535]\n", + " [-0.03608272 -0.37923056 0.92459841]\n", + " [-0.01238386 -0.39639159 0.91799801]\n", + " [-0.1363923 -0.53498049 0.83378236]\n", + " [-0.11965941 -0.51720547 0.84745509]\n", + " [-0.10249031 -0.49866124 0.86071639]\n", + " [-0.0849489 -0.4793989 0.87347603]\n", + " [-0.06709982 -0.45947464 0.88565268]\n", + " [-0.04900956 -0.43895103 0.89717337]\n", + " [-0.03074712 -0.41789774 0.90797362]\n", + " [-0.01238386 -0.39639159 0.91799801]\n", + " [-0.28023785 -0.40377106 0.87088213]\n", + " [-0.26172203 -0.38093032 0.8867884 ]\n", + " [-0.24231521 -0.35726776 0.90202167]\n", + " [-0.22213996 -0.33289152 0.91642625]\n", + " [-0.20131872 -0.30792076 0.92986858]\n", + " [-0.1799749 -0.28248582 0.94223712]\n", + " [-0.27809309 -0.41945384 0.86413119]\n", + " [-0.25340957 -0.44165537 0.86065331]\n", + " [-0.22772863 -0.46373062 0.85620884]\n", + " [-0.20120912 -0.4855239 0.85075345]\n", + " [-0.17400995 -0.50688805 0.84426598]\n", + " [-0.14629133 -0.52768447 0.83674844]\n", + " [-0.16308126 -0.28102389 0.94574313]\n", + " [-0.13624858 -0.30271051 0.94329352]\n", + " [-0.10864745 -0.32450094 0.93962486]\n", + " [-0.08043093 -0.34624508 0.9346899 ]\n", + " [-0.05175683 -0.36779847 0.92846406]\n", + " [-0.02278997 -0.38902123 0.92094685]\n", + " [-0.129233 -0.52727159 0.83981159]\n", + " [-0.10842454 -0.50496245 0.85630429]\n", + " [-0.08702421 -0.48154833 0.8720883 ]\n", + " [-0.06515062 -0.45713048 0.88701021]\n", + " [-0.04292627 -0.43182418 0.90093574]\n", + " [-0.02047918 -0.40576069 0.91374989]\n", + " [-0.28653738 -0.41161805 0.86513982]\n", + " [-0.28653738 -0.41161805 0.86513982]\n", + " [-0.01252791 -0.39640767 0.91798911]\n", + " [-0.01252791 -0.39640767 0.91798911]\n", + " [-0.27172555 -0.41161189 0.86990855]\n", + " [-0.24685927 -0.43383528 0.86651454]\n", + " [-0.22101021 -0.45594378 0.86213094]\n", + " [-0.19433671 -0.47778176 0.85671339]\n", + " [-0.16699719 -0.49920192 0.85024078]\n", + " [-0.1391517 -0.52006527 0.84271521]\n", + " [-0.25302992 -0.38877149 0.88590777]\n", + " [-0.22768278 -0.4110189 0.88273666]\n", + " [-0.2013941 -0.43318601 0.87851596]\n", + " [-0.17432033 -0.45511763 0.87320121]\n", + " [-0.1466185 -0.47666611 0.86677127]\n", + " [-0.11844854 -0.4976913 0.85922832]\n", + " [-0.2334623 -0.36508851 0.90122457]\n", + " [-0.20768802 -0.38730311 0.89825497]\n", + " [-0.18101261 -0.40947526 0.89418367]\n", + " [-0.15359055 -0.43145054 0.8889659 ]\n", + " [-0.12557792 -0.4530812 0.88258009]\n", + " [-0.09713515 -0.47422619 0.87502816]\n", + " [-0.21314483 -0.3406709 0.91570335]\n", + " [-0.18699542 -0.36279516 0.91291423]\n", + " [-0.15998446 -0.38491774 0.90897927]\n", + " [-0.13226503 -0.40688524 0.90385306]\n", + " [-0.10399296 -0.42855038 0.89751325]\n", + " [-0.07532972 -0.44977164 0.88996118]\n", + " [-0.19219944 -0.31563788 0.92921047]\n", + " [-0.16572554 -0.3376143 0.92658061]\n", + " [-0.13842939 -0.35963231 0.92276861]\n", + " [-0.11046347 -0.3815399 0.91772824]\n", + " [-0.08198411 -0.40319068 0.91143617]\n", + " [-0.05315417 -0.42444338 0.90389294]\n", + " [-0.17074933 -0.29012012 0.94163421]\n", + " [-0.14400128 -0.31189211 0.9391416 ]\n", + " [-0.1164706 -0.33375129 0.93543823]\n", + " [-0.08831008 -0.35554706 0.93047709]\n", + " [-0.05967707 -0.37713443 0.92423388]\n", + " [-0.03073592 -0.39837304 0.91670836]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:fp_optics: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:cartToSphere: vec: [[-7.57109262e-01 2.00226927e-01 6.21847846e-01]\n", + " [-7.43012339e-01 1.89123484e-01 6.42000757e-01]\n", + " [-7.28125922e-01 1.77504618e-01 6.62060988e-01]\n", + " [-7.12476413e-01 1.65427535e-01 6.81917218e-01]\n", + " [-6.96098115e-01 1.52947298e-01 7.01465992e-01]\n", + " [-6.79033551e-01 1.40117455e-01 7.20611224e-01]\n", + " [-6.61333632e-01 1.26990788e-01 7.39263936e-01]\n", + " [-6.43057612e-01 1.13619899e-01 7.57342344e-01]\n", + " [-7.57109262e-01 2.00226927e-01 6.21847846e-01]\n", + " [-7.69093038e-01 1.77413108e-01 6.14019942e-01]\n", + " [-7.80685383e-01 1.53897095e-01 6.05678146e-01]\n", + " [-7.91809691e-01 1.29782336e-01 5.96819871e-01]\n", + " [-8.02396947e-01 1.05170168e-01 5.87450742e-01]\n", + " [-8.12385525e-01 8.01606879e-02 5.77584646e-01]\n", + " [-8.21721236e-01 5.48536181e-02 5.67243590e-01]\n", + " [-8.30357620e-01 2.93488044e-02 5.56457429e-01]\n", + " [-6.43057612e-01 1.13619899e-01 7.57342344e-01]\n", + " [-6.54617948e-01 8.90957623e-02 7.50691206e-01]\n", + " [-6.65886742e-01 6.39967777e-02 7.43302939e-01]\n", + " [-6.76789648e-01 3.84196563e-02 7.35173246e-01]\n", + " [-6.87259164e-01 1.24614377e-02 7.26305414e-01]\n", + " [-6.97234110e-01 -1.37787424e-02 7.16711059e-01]\n", + " [-7.06659698e-01 -4.01988660e-02 7.06410732e-01]\n", + " [-7.15488041e-01 -6.66943005e-02 6.95434205e-01]\n", + " [-8.30357620e-01 2.93488044e-02 5.56457429e-01]\n", + " [-8.16586264e-01 1.62001357e-02 5.76996039e-01]\n", + " [-8.01882823e-01 2.77164332e-03 5.97474900e-01]\n", + " [-7.86269877e-01 -1.08834608e-02 6.17787366e-01]\n", + " [-7.69778325e-01 -2.47120732e-02 6.37832771e-01]\n", + " [-7.52448600e-01 -3.86602899e-02 6.57515388e-01]\n", + " [-7.34331446e-01 -5.26730434e-02 6.76744322e-01]\n", + " [-7.15488041e-01 -6.66943005e-02 6.95434205e-01]\n", + " [-7.51102996e-01 1.95375666e-01 6.30612907e-01]\n", + " [-7.33291979e-01 1.81411845e-01 6.55265302e-01]\n", + " [-7.14320340e-01 1.66731091e-01 6.79666974e-01]\n", + " [-6.94247931e-01 1.51435647e-01 7.03624229e-01]\n", + " [-6.73153054e-01 1.35624174e-01 7.26960143e-01]\n", + " [-6.51132913e-01 1.19393752e-01 7.49513884e-01]\n", + " [-7.62330349e-01 1.90335501e-01 6.18566759e-01]\n", + " [-7.76764689e-01 1.61887927e-01 6.08628718e-01]\n", + " [-7.90534145e-01 1.32488760e-01 5.97915123e-01]\n", + " [-8.03508529e-01 1.02325401e-01 5.86432909e-01]\n", + " [-8.15574391e-01 7.15822214e-02 5.74207627e-01]\n", + " [-8.26635163e-01 4.04428536e-02 5.61283069e-01]\n", + " [-6.48192390e-01 1.03050489e-01 7.54471486e-01]\n", + " [-6.62175084e-01 7.25953261e-02 7.45824428e-01]\n", + " [-6.75645086e-01 4.13728011e-02 7.36065220e-01]\n", + " [-6.88475328e-01 9.56131085e-03 7.25196735e-01]\n", + " [-7.00553187e-01 -2.26565513e-02 7.13240432e-01]\n", + " [-7.11780626e-01 -5.50918409e-02 7.00237981e-01]\n", + " [-8.24440601e-01 2.37415871e-02 5.65450291e-01]\n", + " [-8.06932868e-01 7.43251488e-03 5.90596397e-01]\n", + " [-7.88046752e-01 -9.24408384e-03 6.15545988e-01]\n", + " [-7.67835619e-01 -2.61904661e-02 6.40111336e-01]\n", + " [-7.46373999e-01 -4.33073605e-02 6.64116199e-01]\n", + " [-7.23759665e-01 -6.04929650e-02 6.87395482e-01]\n", + " [-7.57103978e-01 2.00113199e-01 6.21890886e-01]\n", + " [-7.57103978e-01 2.00113199e-01 6.21890886e-01]\n", + " [-7.15524514e-01 -6.65557896e-02 6.95409949e-01]\n", + " [-7.15524514e-01 -6.65557896e-02 6.95409949e-01]\n", + " [-7.56335410e-01 1.85529605e-01 6.27324089e-01]\n", + " [-7.70789534e-01 1.56897732e-01 6.17467891e-01]\n", + " [-7.84582845e-01 1.27327396e-01 6.06809272e-01]\n", + " [-7.97585157e-01 9.70049315e-02 5.95355323e-01]\n", + " [-8.09682781e-01 6.61139944e-02 5.83131832e-01]\n", + " [-8.20778757e-01 3.48380770e-02 5.70182901e-01]\n", + " [-7.38528739e-01 1.71388370e-01 6.52074633e-01]\n", + " [-7.53005468e-01 1.42279641e-01 6.42447872e-01]\n", + " [-7.66837033e-01 1.12267942e-01 6.31946892e-01]\n", + " [-7.79893274e-01 8.15365187e-02 6.20578985e-01]\n", + " [-7.92059849e-01 5.02673388e-02 6.08370274e-01]\n", + " [-8.03238683e-01 1.86440025e-02 5.95365450e-01]\n", + " [-7.19542333e-01 1.56553671e-01 6.76572080e-01]\n", + " [-7.33991400e-01 1.27032975e-01 6.67172578e-01]\n", + " [-7.47816781e-01 9.66423261e-02 6.56833557e-01]\n", + " [-7.60888515e-01 6.55623349e-02 6.45561963e-01]\n", + " [-7.73091828e-01 3.39740186e-02 6.33383605e-01]\n", + " [-7.84327755e-01 2.06178451e-03 6.20343229e-01]\n", + " [-6.99435805e-01 1.41126819e-01 7.00623134e-01]\n", + " [-7.13806036e-01 1.11256433e-01 6.91449889e-01]\n", + " [-7.27579582e-01 8.05472917e-02 6.81278273e-01]\n", + " [-7.40626975e-01 4.91782314e-02 6.70114307e-01]\n", + " [-7.52833454e-01 1.73301041e-02 6.57982870e-01]\n", + " [-7.64099617e-01 -1.48113824e-02 6.44928212e-01]\n", + " [-6.78287401e-01 1.25205713e-01 7.24050918e-01]\n", + " [-6.92527308e-01 9.50461742e-02 7.15102896e-01]\n", + " [-7.06202783e-01 6.40781941e-02 7.05103974e-01]\n", + " [-7.19185207e-01 3.24798177e-02 6.94058859e-01]\n", + " [-7.31360380e-01 4.32377629e-04 6.81991061e-01]\n", + " [-7.42629064e-01 -3.18769316e-02 6.68943895e-01]\n", + " [-6.56194527e-01 1.08887064e-01 7.46694282e-01]\n", + " [-6.70253148e-01 7.84983773e-02 7.37969324e-01]\n", + " [-6.83784685e-01 4.73315327e-02 7.28147122e-01]\n", + " [-6.96661641e-01 1.55646971e-02 7.17230993e-01]\n", + " [-7.08770910e-01 -1.66199031e-02 7.05242920e-01]\n", + " [-7.20014041e-01 -4.90337183e-02 6.92225017e-01]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:fp_optics: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:cartToSphere: vec: [[-0.25322293 -0.25219866 0.93395609]\n", + " [-0.26224847 -0.22708828 0.93790013]\n", + " [-0.27112282 -0.20123514 0.94127405]\n", + " [-0.27981151 -0.17474754 0.94401738]\n", + " [-0.28828019 -0.14773216 0.94608125]\n", + " [-0.29649484 -0.12029546 0.947428 ]\n", + " [-0.30442218 -0.09254458 0.94803093]\n", + " [-0.31203023 -0.06458772 0.94787423]\n", + " [-0.25322293 -0.25219866 0.93395609]\n", + " [-0.22792942 -0.24726292 0.94175858]\n", + " [-0.20195815 -0.2418852 0.94905451]\n", + " [-0.1754092 -0.23609495 0.95576712]\n", + " [-0.14838301 -0.22991972 0.96183128]\n", + " [-0.12098142 -0.22338605 0.96719293]\n", + " [-0.09330833 -0.21652043 0.97180886]\n", + " [-0.06546976 -0.20934992 0.97564662]\n", + " [-0.31203023 -0.06458772 0.94787423]\n", + " [-0.28635649 -0.05768774 0.9563849 ]\n", + " [-0.25992737 -0.0505965 0.96430169]\n", + " [-0.23283588 -0.04334013 0.97154984]\n", + " [-0.20517808 -0.03594532 0.97806436]\n", + " [-0.17705455 -0.02843964 0.98379006]\n", + " [-0.14857067 -0.02085172 0.98868193]\n", + " [-0.11983615 -0.01321113 0.99270578]\n", + " [-0.06546976 -0.20934992 0.97564662]\n", + " [-0.0731373 -0.1828499 0.98041667]\n", + " [-0.08089336 -0.15567109 0.98449113]\n", + " [-0.08870427 -0.127914 0.98781049]\n", + " [-0.0965368 -0.09968141 0.99032533]\n", + " [-0.10435799 -0.07107958 0.99199652]\n", + " [-0.11213515 -0.04221848 0.9927957 ]\n", + " [-0.11983615 -0.01321113 0.99270578]\n", + " [-0.25708901 -0.24133223 0.9357692 ]\n", + " [-0.26805281 -0.21004224 0.94022867]\n", + " [-0.27875542 -0.17774448 0.94377027]\n", + " [-0.28913355 -0.14463596 0.94629923]\n", + " [-0.2991246 -0.11091275 0.94774619]\n", + " [-0.30866784 -0.07677254 0.94806653]\n", + " [-0.24231546 -0.25001803 0.93742957]\n", + " [-0.2108465 -0.24366643 0.94666278]\n", + " [-0.17845892 -0.23668063 0.95505743]\n", + " [-0.14533739 -0.2291121 0.9624888 ]\n", + " [-0.11166949 -0.22100983 0.96885736]\n", + " [-0.07764737 -0.21242278 0.97408801]\n", + " [-0.30090963 -0.06170071 0.95165457]\n", + " [-0.268924 -0.05311315 0.96169583]\n", + " [-0.23589599 -0.04426408 0.97076968]\n", + " [-0.20200109 -0.03520233 0.97875245]\n", + " [-0.16742447 -0.0259787 0.98554257]\n", + " [-0.13236198 -0.01664629 0.99106166]\n", + " [-0.06889549 -0.19791081 0.97779585]\n", + " [-0.07835758 -0.16496355 0.98318214]\n", + " [-0.08791892 -0.13109639 0.98746342]\n", + " [-0.09751818 -0.0964975 0.99054451]\n", + " [-0.10709467 -0.06136254 0.99235345]\n", + " [-0.11658842 -0.02589525 0.99284267]\n", + " [-0.25316878 -0.25209809 0.93399792]\n", + " [-0.25316878 -0.25209809 0.93399792]\n", + " [-0.11990854 -0.01333663 0.99269536]\n", + " [-0.11990854 -0.01333663 0.99269536]\n", + " [-0.24620532 -0.23919182 0.93923917]\n", + " [-0.21464555 -0.23268656 0.94856958]\n", + " [-0.18215922 -0.22557169 0.95704516]\n", + " [-0.14893015 -0.2178975 0.9645416 ]\n", + " [-0.1151456 -0.20971216 0.97095947]\n", + " [-0.08099799 -0.20106423 0.97622359]\n", + " [-0.25709841 -0.20773632 0.94379342]\n", + " [-0.22532462 -0.20080981 0.95336469]\n", + " [-0.19260128 -0.19334149 0.96204148]\n", + " [-0.1591099 -0.18537894 0.96970031]\n", + " [-0.12503711 -0.17696878 0.97624166]\n", + " [-0.09057626 -0.16815902 0.98158977]\n", + " [-0.26775268 -0.17527981 0.94740988]\n", + " [-0.23582793 -0.16794919 0.95717201]\n", + " [-0.2029304 -0.16014236 0.96600915]\n", + " [-0.16923957 -0.15190541 0.97379809]\n", + " [-0.13494171 -0.14328456 0.98043881]\n", + " [-0.10023122 -0.13432819 0.98585478]\n", + " [-0.27810429 -0.14201797 0.94999416]\n", + " [-0.24609048 -0.13429711 0.95989779]\n", + " [-0.21308119 -0.12616433 0.96885446]\n", + " [-0.17925428 -0.11766551 0.97674087]\n", + " [-0.14479575 -0.10884752 0.98345636]\n", + " [-0.1099009 -0.09975977 0.98892355]\n", + " [-0.28809006 -0.10814624 0.95147701]\n", + " [-0.25604793 -0.10004784 0.96147277]\n", + " [-0.22298898 -0.09160134 0.97050766]\n", + " [-0.18908983 -0.08285345 0.97845814]\n", + " [-0.15453621 -0.07385245 0.98522301]\n", + " [-0.11952395 -0.06464922 0.99072423]\n", + " [-0.29764875 -0.07386238 0.95181383]\n", + " [-0.26563798 -0.06539982 0.96185203]\n", + " [-0.23259108 -0.05665309 0.97092318]\n", + " [-0.19868378 -0.04767041 0.97890362]\n", + " [-0.1641014 -0.0385019 0.98569181]\n", + " [-0.12903989 -0.02920006 0.99120939]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:cartToSphere: vec: [[ 0.5715782 0.1971736 -0.79650545]\n", + " [ 0.59341477 0.1857643 -0.78316699]\n", + " [ 0.61520481 0.17397781 -0.76893092]\n", + " [ 0.63683569 0.16185293 -0.75381956]\n", + " [ 0.65820094 0.1494303 -0.7378632 ]\n", + " [ 0.67919919 0.13675318 -0.72110126]\n", + " [ 0.69973396 0.12386782 -0.70358307]\n", + " [ 0.71971448 0.11082335 -0.68536797]\n", + " [ 0.5715782 0.1971736 -0.79650545]\n", + " [ 0.57807798 0.22298614 -0.78492231]\n", + " [ 0.58414988 0.24848973 -0.77267184]\n", + " [ 0.58977923 0.27358623 -0.75980987]\n", + " [ 0.59495927 0.29817976 -0.74639956]\n", + " [ 0.59969144 0.3221763 -0.73251117]\n", + " [ 0.60398573 0.34548298 -0.71822194]\n", + " [ 0.60786083 0.36800717 -0.70361633]\n", + " [ 0.71971448 0.11082335 -0.68536797]\n", + " [ 0.7263145 0.1375829 -0.67345244]\n", + " [ 0.73224313 0.1641319 -0.66096953]\n", + " [ 0.73748619 0.19036712 -0.64797722]\n", + " [ 0.74203852 0.21618981 -0.63453983]\n", + " [ 0.74590368 0.24150617 -0.62072737]\n", + " [ 0.74909346 0.26622682 -0.60661542]\n", + " [ 0.75162747 0.29026521 -0.59228562]\n", + " [ 0.60786083 0.36800717 -0.70361633]\n", + " [ 0.62907627 0.35848225 -0.68974889]\n", + " [ 0.65024856 0.34835978 -0.67514612]\n", + " [ 0.67126013 0.33768174 -0.65983398]\n", + " [ 0.69200174 0.32649003 -0.64384614]\n", + " [ 0.71237181 0.31482713 -0.62722427]\n", + " [ 0.73227604 0.30273691 -0.61001816]\n", + " [ 0.75162747 0.29026521 -0.59228562]\n", + " [ 0.58112024 0.19233696 -0.79076277]\n", + " [ 0.60786669 0.17809609 -0.77380868]\n", + " [ 0.63443053 0.16332691 -0.75552778]\n", + " [ 0.66061328 0.14810341 -0.73597247]\n", + " [ 0.68622829 0.13250525 -0.71521541]\n", + " [ 0.71110028 0.11661882 -0.6933516 ]\n", + " [ 0.57453818 0.20842161 -0.79149625]\n", + " [ 0.5822189 0.2398632 -0.77684413]\n", + " [ 0.58924129 0.27074301 -0.76124433]\n", + " [ 0.5955896 0.30088358 -0.74481011]\n", + " [ 0.60126653 0.33011175 -0.7276708 ]\n", + " [ 0.60629408 0.3582567 -0.70997156]\n", + " [ 0.72260611 0.12255454 -0.68030933]\n", + " [ 0.73024595 0.15522253 -0.66531708]\n", + " [ 0.73686241 0.18747116 -0.64952934]\n", + " [ 0.74244221 0.21911673 -0.63306194]\n", + " [ 0.74699185 0.2499865 -0.61604377]\n", + " [ 0.7505363 0.27991718 -0.59861643]\n", + " [ 0.61709604 0.36385437 -0.69771231]\n", + " [ 0.64308497 0.35177216 -0.68021914]\n", + " [ 0.66889127 0.33883429 -0.66164627]\n", + " [ 0.69431043 0.3251179 -0.64205247]\n", + " [ 0.71915538 0.3107013 -0.62151447]\n", + " [ 0.74325556 0.29566604 -0.60012728]\n", + " [ 0.57167575 0.19722396 -0.79642297]\n", + " [ 0.57167575 0.19722396 -0.79642297]\n", + " [ 0.75155475 0.29022752 -0.59239636]\n", + " [ 0.75155475 0.29022752 -0.59239636]\n", + " [ 0.58399207 0.20357927 -0.78581724]\n", + " [ 0.59168107 0.23515265 -0.77111396]\n", + " [ 0.59868438 0.26617175 -0.75546648]\n", + " [ 0.60498594 0.29645909 -0.73898852]\n", + " [ 0.61058811 0.32584207 -0.7218096 ]\n", + " [ 0.61551258 0.35415083 -0.70407489]\n", + " [ 0.61076182 0.18945102 -0.76881618]\n", + " [ 0.61846713 0.22135888 -0.7539885 ]\n", + " [ 0.62541287 0.25273385 -0.73823055]\n", + " [ 0.63158241 0.28339795 -0.7216573 ]\n", + " [ 0.63697759 0.31317986 -0.70439898]\n", + " [ 0.64161944 0.34191246 -0.68660058]\n", + " [ 0.63734387 0.17477367 -0.7504978 ]\n", + " [ 0.64505426 0.20695799 -0.73557691]\n", + " [ 0.65193606 0.23863183 -0.71974595]\n", + " [ 0.6579727 0.26961612 -0.70312095]\n", + " [ 0.66316623 0.29974011 -0.68583265]\n", + " [ 0.66753766 0.32883895 -0.66802576]\n", + " [ 0.66353959 0.1596206 -0.73091482]\n", + " [ 0.67124315 0.19202208 -0.71593307]\n", + " [ 0.67805382 0.22393732 -0.70006792]\n", + " [ 0.68395563 0.25518579 -0.6834361 ]\n", + " [ 0.68895152 0.28559665 -0.66616841]\n", + " [ 0.69306325 0.31500652 -0.64840899]\n", + " [ 0.68916214 0.14407078 -0.71014024]\n", + " [ 0.69684671 0.17662825 -0.69513101]\n", + " [ 0.70357907 0.20872614 -0.67927158]\n", + " [ 0.70934429 0.24018239 -0.66267873]\n", + " [ 0.71414668 0.27082555 -0.6454828 ]\n", + " [ 0.71800928 0.3004928 -0.62782701]\n", + " [ 0.71403613 0.12820993 -0.68826929]\n", + " [ 0.7216897 0.16086041 -0.67326659]\n", + " [ 0.72833736 0.19308058 -0.6574531 ]\n", + " [ 0.7339654 0.22468709 -0.64094501]\n", + " [ 0.73857974 0.25550758 -0.62387165]\n", + " [ 0.74220488 0.28537899 -0.60637508]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:fp_optics: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:fp_optics: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:cartToSphere: vec: [[ 6.38852136e-01 7.35126447e-01 -2.26841476e-01]\n", + " [ 6.48996275e-01 7.33826236e-01 -2.00755798e-01]\n", + " [ 6.58818227e-01 7.31906065e-01 -1.73988664e-01]\n", + " [ 6.68249593e-01 7.29341632e-01 -1.46639915e-01]\n", + " [ 6.77229526e-01 7.26116051e-01 -1.18809302e-01]\n", + " [ 6.85703959e-01 7.22220135e-01 -9.05988819e-02]\n", + " [ 6.93625223e-01 7.17652955e-01 -6.21151031e-02]\n", + " [ 7.00952330e-01 7.12422371e-01 -3.34693311e-02]\n", + " [ 6.38852136e-01 7.35126447e-01 -2.26841476e-01]\n", + " [ 6.19044008e-01 7.54466614e-01 -2.18093204e-01]\n", + " [ 5.98817412e-01 7.73107704e-01 -2.09098505e-01]\n", + " [ 5.78260080e-01 7.90985688e-01 -1.99892271e-01]\n", + " [ 5.57466805e-01 8.08045014e-01 -1.90509889e-01]\n", + " [ 5.36539129e-01 8.24238694e-01 -1.80987123e-01]\n", + " [ 5.15584457e-01 8.39528611e-01 -1.71360377e-01]\n", + " [ 4.94713771e-01 8.53886384e-01 -1.61667338e-01]\n", + " [ 7.00952330e-01 7.12422371e-01 -3.34693311e-02]\n", + " [ 6.80399040e-01 7.32430048e-01 -2.45636061e-02]\n", + " [ 6.59303536e-01 7.51713724e-01 -1.56628556e-02]\n", + " [ 6.37758058e-01 7.70206715e-01 -6.80263202e-03]\n", + " [ 6.15859507e-01 7.87853500e-01 1.98254551e-03]\n", + " [ 5.93709206e-01 8.04609073e-01 1.06591860e-02]\n", + " [ 5.71414093e-01 8.20437391e-01 1.91942911e-02]\n", + " [ 5.49088618e-01 8.35309783e-01 2.75546068e-02]\n", + " [ 4.94713771e-01 8.53886384e-01 -1.61667338e-01]\n", + " [ 5.03053174e-01 8.53502622e-01 -1.35907244e-01]\n", + " [ 5.11298458e-01 8.52392009e-01 -1.09552496e-01]\n", + " [ 5.19386590e-01 8.50527952e-01 -8.27029197e-02]\n", + " [ 5.27258705e-01 8.47892833e-01 -5.54617185e-02]\n", + " [ 5.34862205e-01 8.44477422e-01 -2.79339590e-02]\n", + " [ 5.42151591e-01 8.40280668e-01 -2.26032007e-04]\n", + " [ 5.49088618e-01 8.35309783e-01 2.75546068e-02]\n", + " [ 6.43242723e-01 7.34701427e-01 -2.15528682e-01]\n", + " [ 6.55467110e-01 7.32695083e-01 -1.83086819e-01]\n", + " [ 6.67138859e-01 7.29732449e-01 -1.49720725e-01]\n", + " [ 6.78142852e-01 7.25779356e-01 -1.15614009e-01]\n", + " [ 6.88379511e-01 7.20818956e-01 -8.09548082e-02]\n", + " [ 6.97763824e-01 7.14853169e-01 -4.59411860e-02]\n", + " [ 6.30307364e-01 7.43637185e-01 -2.22971668e-01]\n", + " [ 6.05737578e-01 7.66879565e-01 -2.12079510e-01]\n", + " [ 5.80625515e-01 7.89007284e-01 -2.00851980e-01]\n", + " [ 5.55142758e-01 8.09914544e-01 -1.89354034e-01]\n", + " [ 5.29476156e-01 8.29514876e-01 -1.77651543e-01]\n", + " [ 5.03825121e-01 8.47742074e-01 -1.65812010e-01]\n", + " [ 6.92039373e-01 7.21249081e-01 -2.96861889e-02]\n", + " [ 6.66473365e-01 7.45292520e-01 -1.87699924e-02]\n", + " [ 6.40184065e-01 7.68180974e-01 -7.89649329e-03]\n", + " [ 6.13347993e-01 7.89807572e-01 2.87030047e-03]\n", + " [ 5.86151823e-01 8.10089276e-01 1.34686622e-02]\n", + " [ 5.58795470e-01 8.28962836e-01 2.38377594e-02]\n", + " [ 4.98428857e-01 8.53758714e-01 -1.50548108e-01]\n", + " [ 5.08595709e-01 8.52803070e-01 -1.18563604e-01]\n", + " [ 5.18558080e-01 8.50728238e-01 -8.57845103e-02]\n", + " [ 5.28205693e-01 8.47498101e-01 -5.23995578e-02]\n", + " [ 5.37441805e-01 8.43095646e-01 -1.86021156e-02]\n", + " [ 5.46185668e-01 8.37522359e-01 1.54114955e-02]\n", + " [ 6.38820358e-01 7.35190273e-01 -2.26724090e-01]\n", + " [ 6.38820358e-01 7.35190273e-01 -2.26724090e-01]\n", + " [ 5.49141792e-01 8.35278883e-01 2.74313496e-02]\n", + " [ 5.49141792e-01 8.35278883e-01 2.74313496e-02]\n", + " [ 6.34695145e-01 7.43181234e-01 -2.11763374e-01]\n", + " [ 6.10015963e-01 7.66511566e-01 -2.00849554e-01]\n", + " [ 5.84777883e-01 7.88719278e-01 -1.89622594e-01]\n", + " [ 5.59152721e-01 8.09698479e-01 -1.78147712e-01]\n", + " [ 5.33327809e-01 8.29362596e-01 -1.66490637e-01]\n", + " [ 5.07504181e-01 8.47644874e-01 -1.54718048e-01]\n", + " [ 6.46832455e-01 7.41257707e-01 -1.79289675e-01]\n", + " [ 6.21876972e-01 7.64810270e-01 -1.68327900e-01]\n", + " [ 5.96319740e-01 7.87221182e-01 -1.57116446e-01]\n", + " [ 5.70332961e-01 8.08384506e-01 -1.45721666e-01]\n", + " [ 5.44104112e-01 8.28214054e-01 -1.34209526e-01]\n", + " [ 5.17836284e-01 8.46642602e-01 -1.22645371e-01]\n", + " [ 6.58433294e-01 7.38362481e-01 -1.45898746e-01]\n", + " [ 6.33251213e-01 7.62097315e-01 -1.34909541e-01]\n", + " [ 6.07430730e-01 7.84676704e-01 -1.23735111e-01]\n", + " [ 5.81144632e-01 8.05994743e-01 -1.12442840e-01]\n", + " [ 5.54579745e-01 8.25966274e-01 -1.01099066e-01]\n", + " [ 5.27938810e-01 8.44524850e-01 -8.97685360e-02]\n", + " [ 6.69382851e-01 7.34461078e-01 -1.11774433e-01]\n", + " [ 6.44024435e-01 7.58337643e-01 -1.00779695e-01]\n", + " [ 6.17996601e-01 7.81050732e-01 -8.96658040e-02]\n", + " [ 5.91473170e-01 8.02494349e-01 -7.85003712e-02]\n", + " [ 5.64640416e-01 8.22584497e-01 -6.73494315e-02]\n", + " [ 5.37699820e-01 8.41256083e-01 -5.62770510e-02]\n", + " [ 6.79582130e-01 7.29536099e-01 -7.71051787e-02]\n", + " [ 6.54099102e-01 7.53512742e-01 -6.61280008e-02]\n", + " [ 6.27920636e-01 7.76324487e-01 -5.50996072e-02]\n", + " [ 6.01221844e-01 7.97865061e-01 -4.40867174e-02]\n", + " [ 5.74188892e-01 8.18051298e-01 -3.31540468e-02]\n", + " [ 5.47022133e-01 8.36819344e-01 -2.23645054e-02]\n", + " [ 6.88946760e-01 7.23588871e-01 -4.20892856e-02]\n", + " [ 6.63392718e-01 7.47622622e-01 -3.11531168e-02]\n", + " [ 6.37121843e-01 7.70497437e-01 -2.02350478e-02]\n", + " [ 6.10310372e-01 7.92106616e-01 -9.39990765e-03]\n", + " [ 5.83144799e-01 8.12367208e-01 1.28972969e-03]\n", + " [ 5.55825006e-01 8.31215960e-01 1.17724829e-02]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:fp_optics: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:cartToSphere: vec: [[ 2.51424140e-01 -1.65776654e-01 -9.53574330e-01]\n", + " [ 2.41642607e-01 -1.40355286e-01 -9.60161051e-01]\n", + " [ 2.31472241e-01 -1.14315951e-01 -9.66101685e-01]\n", + " [ 2.20942938e-01 -8.77562723e-02 -9.71330559e-01]\n", + " [ 2.10087286e-01 -6.07757849e-02 -9.75791800e-01]\n", + " [ 1.98941085e-01 -3.34770675e-02 -9.79439498e-01]\n", + " [ 1.87543479e-01 -5.96586310e-03 -9.82238185e-01]\n", + " [ 1.75936769e-01 2.16495784e-02 -9.84163375e-01]\n", + " [ 2.51424140e-01 -1.65776654e-01 -9.53574330e-01]\n", + " [ 2.25051636e-01 -1.77028075e-01 -9.58129856e-01]\n", + " [ 1.98540317e-01 -1.88006039e-01 -9.61891611e-01]\n", + " [ 1.71995481e-01 -1.98667218e-01 -9.64856928e-01]\n", + " [ 1.45523604e-01 -2.08968817e-01 -9.67034081e-01]\n", + " [ 1.19232192e-01 -2.18867997e-01 -9.68442298e-01]\n", + " [ 9.32301394e-02 -2.28320971e-01 -9.69111797e-01]\n", + " [ 6.76286393e-02 -2.37281894e-01 -9.69083933e-01]\n", + " [ 1.75936769e-01 2.16495784e-02 -9.84163375e-01]\n", + " [ 1.48714586e-01 9.87719404e-03 -9.88830831e-01]\n", + " [ 1.21445021e-01 -1.86456088e-03 -9.92596409e-01]\n", + " [ 9.42374412e-02 -1.35292559e-02 -9.95457816e-01]\n", + " [ 6.72005839e-02 -2.50713382e-02 -9.97424438e-01]\n", + " [ 4.04417480e-02 -3.64464403e-02 -9.98516961e-01]\n", + " [ 1.40667183e-02 -4.76113642e-02 -9.98766882e-01]\n", + " [-1.18193080e-02 -5.85236362e-02 -9.98216053e-01]\n", + " [ 6.76286393e-02 -2.37281894e-01 -9.69083933e-01]\n", + " [ 5.65190452e-02 -2.13385973e-01 -9.75331751e-01]\n", + " [ 4.52715846e-02 -1.88770984e-01 -9.80977063e-01]\n", + " [ 3.39181099e-02 -1.63541306e-01 -9.85953246e-01]\n", + " [ 2.24934510e-02 -1.37799407e-01 -9.90204710e-01]\n", + " [ 1.10352643e-02 -1.11647312e-01 -9.93686621e-01]\n", + " [-4.16344103e-04 -8.51875746e-02 -9.96364845e-01]\n", + " [-1.18193080e-02 -5.85236362e-02 -9.98216053e-01]\n", + " [ 2.47118807e-01 -1.54814103e-01 -9.56537970e-01]\n", + " [ 2.34864524e-01 -1.23230185e-01 -9.64185136e-01]\n", + " [ 2.22055814e-01 -9.08148653e-02 -9.70795486e-01]\n", + " [ 2.08751521e-01 -5.77504936e-02 -9.76262097e-01]\n", + " [ 1.95017569e-01 -2.42259228e-02 -9.80500511e-01]\n", + " [ 1.80927354e-01 9.56308646e-03 -9.83449968e-01]\n", + " [ 2.39916265e-01 -1.70627535e-01 -9.55681134e-01]\n", + " [ 2.07486626e-01 -1.84239432e-01 -9.60731561e-01]\n", + " [ 1.74953027e-01 -1.97397610e-01 -9.64585726e-01]\n", + " [ 1.42511023e-01 -2.10023074e-01 -9.67254319e-01]\n", + " [ 1.10358568e-01 -2.22036863e-01 -9.68772738e-01]\n", + " [ 7.86970232e-02 -2.33357568e-01 -9.69201230e-01]\n", + " [ 1.64120618e-01 1.64215346e-02 -9.86303582e-01]\n", + " [ 1.30711453e-01 2.00820731e-03 -9.91418420e-01]\n", + " [ 9.73397304e-02 -1.23127164e-02 -9.95175047e-01]\n", + " [ 6.42059506e-02 -2.64569918e-02 -9.97585898e-01]\n", + " [ 3.15076379e-02 -4.03429441e-02 -9.98688998e-01]\n", + " [-5.60791487e-04 -5.38913931e-02 -9.98546646e-01]\n", + " [ 6.28906656e-02 -2.26928138e-01 -9.71878791e-01]\n", + " [ 4.91787427e-02 -1.97142947e-01 -9.79140495e-01]\n", + " [ 3.52908721e-02 -1.66381752e-01 -9.85429686e-01]\n", + " [ 2.12899352e-02 -1.34833900e-01 -9.90639469e-01]\n", + " [ 7.24521529e-03 -1.02687324e-01 -9.94687298e-01]\n", + " [-6.76861256e-03 -7.01311956e-02 -9.97514813e-01]\n", + " [ 2.51301553e-01 -1.65729779e-01 -9.53614791e-01]\n", + " [ 2.51301553e-01 -1.65729779e-01 -9.53614791e-01]\n", + " [-1.16928773e-02 -5.85782127e-02 -9.98214341e-01]\n", + " [-1.16928773e-02 -5.85782127e-02 -9.98214341e-01]\n", + " [ 2.35689467e-01 -1.59732766e-01 -9.58611454e-01]\n", + " [ 2.03139439e-01 -1.73418414e-01 -9.63670287e-01]\n", + " [ 1.70492528e-01 -1.86671758e-01 -9.67515350e-01]\n", + " [ 1.37944725e-01 -1.99414053e-01 -9.70157352e-01]\n", + " [ 1.05693936e-01 -2.11567062e-01 -9.71631705e-01]\n", + " [ 7.39408928e-02 -2.23050571e-01 -9.71998553e-01]\n", + " [ 2.23324625e-01 -1.28201976e-01 -9.66276547e-01]\n", + " [ 1.90474774e-01 -1.42079558e-01 -9.71356145e-01]\n", + " [ 1.57549532e-01 -1.55585579e-01 -9.75177560e-01]\n", + " [ 1.24746302e-01 -1.68641380e-01 -9.77751730e-01]\n", + " [ 9.22630595e-02 -1.81169974e-01 -9.79114380e-01]\n", + " [ 6.02989256e-02 -1.93093810e-01 -9.79325697e-01]\n", + " [ 2.10426809e-01 -9.58306569e-02 -9.72901353e-01]\n", + " [ 1.77339290e-01 -1.09875179e-01 -9.77997046e-01]\n", + " [ 1.44199870e-01 -1.23609831e-01 -9.81797844e-01]\n", + " [ 1.11207368e-01 -1.36955236e-01 -9.84315084e-01]\n", + " [ 7.85599648e-02 -1.49834499e-01 -9.85585082e-01]\n", + " [ 4.64554345e-02 -1.62171425e-01 -9.85668464e-01]\n", + " [ 1.97055496e-01 -6.28009087e-02 -9.78378852e-01]\n", + " [ 1.63794243e-01 -7.69869574e-02 -9.83485869e-01]\n", + " [ 1.30506308e-01 -9.09263532e-02 -9.87269214e-01]\n", + " [ 9.73916438e-02 -1.04538458e-01 -9.89740662e-01]\n", + " [ 6.46485616e-02 -1.17745522e-01 -9.90937211e-01]\n", + " [ 3.24736948e-02 -1.30471438e-01 -9.90920109e-01]\n", + " [ 1.83277244e-01 -2.93012940e-02 -9.82624489e-01]\n", + " [ 1.49907877e-01 -4.36025478e-02 -9.87738045e-01]\n", + " [ 1.16538428e-01 -5.77219378e-02 -9.91507424e-01]\n", + " [ 8.33694986e-02 -7.15772938e-02 -9.93944776e-01]\n", + " [ 5.05992892e-02 -8.50893808e-02 -9.95087689e-01]\n", + " [ 1.84234221e-02 -9.81811868e-02 -9.94998006e-01]\n", + " [ 1.69165938e-01 4.47268593e-03 -9.85577435e-01]\n", + " [ 1.35755278e-01 -9.91637902e-03 -9.90692773e-01]\n", + " [ 1.02372144e-01 -2.41895728e-02 -9.94452014e-01]\n", + " [ 6.92171771e-02 -3.82631679e-02 -9.96867550e-01]\n", + " [ 3.64881378e-02 -5.20561390e-02 -9.97977342e-01]\n", + " [ 4.37973535e-03 -6.54899325e-02 -9.97843618e-01]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:fp_optics: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:cartToSphere: vec: [[-0.73270264 -0.54540884 0.40703322]\n", + " [-0.72089732 -0.5425906 0.43116411]\n", + " [-0.70822977 -0.53942928 0.45544114]\n", + " [-0.69472624 -0.53590728 0.47974873]\n", + " [-0.6804219 -0.53201212 0.50397335]\n", + " [-0.66535919 -0.5277379 0.52800555]\n", + " [-0.64958709 -0.52308588 0.55174067]\n", + " [-0.63316093 -0.51806468 0.57507932]\n", + " [-0.73270264 -0.54540884 0.40703322]\n", + " [-0.7193911 -0.56778728 0.40011755]\n", + " [-0.70518792 -0.59021421 0.39288316]\n", + " [-0.69012427 -0.61257339 0.38533406]\n", + " [-0.67424051 -0.63475187 0.3774782 ]\n", + " [-0.65758438 -0.65664231 0.36932867]\n", + " [-0.64021016 -0.67814389 0.36090417]\n", + " [-0.62217851 -0.69916272 0.35222918]\n", + " [-0.63316093 -0.51806468 0.57507932]\n", + " [-0.61855201 -0.54121139 0.56963465]\n", + " [-0.60314361 -0.56439996 0.56362263]\n", + " [-0.58697121 -0.5875109 0.55704195]\n", + " [-0.57007517 -0.61043253 0.54989674]\n", + " [-0.55250206 -0.63305908 0.54219708]\n", + " [-0.53430625 -0.65528908 0.53395979]\n", + " [-0.51555077 -0.67702512 0.52520889]\n", + " [-0.62217851 -0.69916272 0.35222918]\n", + " [-0.60903771 -0.69783834 0.37695453]\n", + " [-0.59513959 -0.69592749 0.40186291]\n", + " [-0.58051438 -0.69340695 0.42683703]\n", + " [-0.56519732 -0.6902608 0.45176545]\n", + " [-0.54923001 -0.68648065 0.47654036]\n", + " [-0.53266188 -0.68206609 0.50105605]\n", + " [-0.51555077 -0.67702512 0.52520889]\n", + " [-0.72761844 -0.54429766 0.41750625]\n", + " [-0.71256638 -0.54061623 0.44719487]\n", + " [-0.6962442 -0.53640132 0.47698808]\n", + " [-0.67871311 -0.53162774 0.5066759 ]\n", + " [-0.66005114 -0.52628466 0.53605686]\n", + " [-0.6403511 -0.52037748 0.56494048]\n", + " [-0.72697073 -0.55514379 0.40413974]\n", + " [-0.71005226 -0.58261916 0.39544999]\n", + " [-0.69182434 -0.61005166 0.38628493]\n", + " [-0.67235763 -0.63723179 0.37665749]\n", + " [-0.65173989 -0.66396203 0.36659179]\n", + " [-0.63007371 -0.69005965 0.3561247 ]\n", + " [-0.62694923 -0.52816142 0.57269553]\n", + " [-0.60850321 -0.55657391 0.56564064]\n", + " [-0.58889098 -0.58492959 0.55773182]\n", + " [-0.5681848 -0.61301969 0.54897441]\n", + " [-0.54647057 -0.64064927 0.53938708]\n", + " [-0.52385199 -0.66763319 0.52900379]\n", + " [-0.6166069 -0.69858437 0.36300938]\n", + " [-0.59998928 -0.69656941 0.39345128]\n", + " [-0.58226354 -0.69364983 0.4240508 ]\n", + " [-0.56349244 -0.68979326 0.4546004 ]\n", + " [-0.54375276 -0.68498434 0.48490142]\n", + " [-0.52313898 -0.67922579 0.51476007]\n", + " [-0.73261978 -0.54547608 0.40709225]\n", + " [-0.73261978 -0.54547608 0.40709225]\n", + " [-0.51567515 -0.67697003 0.5251578 ]\n", + " [-0.51567515 -0.67697003 0.5251578 ]\n", + " [-0.72192999 -0.55401138 0.41459436]\n", + " [-0.70490032 -0.58161585 0.40600313]\n", + " [-0.68656403 -0.6091732 0.39691037]\n", + " [-0.66699324 -0.63647248 0.38732776]\n", + " [-0.64627612 -0.6633157 0.37727902]\n", + " [-0.62451527 -0.68951984 0.36680112]\n", + " [-0.70676757 -0.55044368 0.4444 ]\n", + " [-0.68943204 -0.57836575 0.43609233]\n", + " [-0.67080432 -0.6062295 0.42720879]\n", + " [-0.65095865 -0.63382198 0.41775894]\n", + " [-0.62998299 -0.66094492 0.40776616]\n", + " [-0.60797947 -0.68741473 0.39726811]\n", + " [-0.69033905 -0.54631585 0.47431106]\n", + " [-0.67271543 -0.57448044 0.4662898 ]\n", + " [-0.65382118 -0.60257874 0.45762073]\n", + " [-0.63373046 -0.63039803 0.44831242]\n", + " [-0.61253001 -0.65774067 0.43838818]\n", + " [-0.59032135 -0.68442247 0.42788618]\n", + " [-0.67270703 -0.54160129 0.50411635]\n", + " [-0.65481514 -0.56993097 0.49638273]\n", + " [-0.63567915 -0.59819116 0.48793377]\n", + " [-0.61537222 -0.62617041 0.47877725]\n", + " [-0.59397988 -0.65367199 0.46893585]\n", + " [-0.57160348 -0.68051112 0.45844746]\n", + " [-0.65394999 -0.53628871 0.53361393]\n", + " [-0.63580951 -0.56470575 0.52616888]\n", + " [-0.61645543 -0.59305525 0.51794611]\n", + " [-0.59596002 -0.62112723 0.50895247]\n", + " [-0.5744083 -0.64872587 0.49920922]\n", + " [-0.55190222 -0.67566594 0.48875299]\n", + " [-0.63416078 -0.53038355 0.562613 ]\n", + " [-0.61579102 -0.55881074 0.55545654]\n", + " [-0.59624198 -0.58717745 0.54746519]\n", + " [-0.57558575 -0.61527472 0.53864465]\n", + " [-0.55390786 -0.64290743 0.5290143 ]\n", + " [-0.53131146 -0.66989031 0.51860881]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:fp_optics: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:cartToSphere: vec: [[0.46302458 0.19380147 0.86489839]\n", + " [0.45637711 0.16915701 0.87355929]\n", + " [0.44911402 0.14392492 0.88180622]\n", + " [0.44126018 0.11820107 0.88956054]\n", + " [0.43284247 0.0920826 0.89675425]\n", + " [0.42388986 0.0656682 0.90332999]\n", + " [0.41443383 0.03905832 0.90924092]\n", + " [0.40450877 0.01235509 0.91445066]\n", + " [0.46302458 0.19380147 0.86489839]\n", + " [0.4406813 0.20592017 0.87372586]\n", + " [0.41747664 0.2180102 0.88214784]\n", + " [0.39349671 0.23002378 0.89008393]\n", + " [0.36882992 0.24191363 0.89746436]\n", + " [0.34356722 0.25363283 0.90423003]\n", + " [0.31780255 0.26513498 0.91033235]\n", + " [0.29163317 0.27637453 0.91573316]\n", + " [0.40450877 0.01235509 0.91445066]\n", + " [0.3808129 0.02324503 0.92435989]\n", + " [0.35632378 0.03433614 0.93373143]\n", + " [0.33112303 0.04558307 0.94248593]\n", + " [0.30529533 0.05694094 0.95055378]\n", + " [0.2789302 0.06836462 0.95787485]\n", + " [0.25212306 0.07980842 0.96439856]\n", + " [0.2249752 0.09122621 0.9700845 ]\n", + " [0.29163317 0.27637453 0.91573316]\n", + " [0.28318781 0.2515472 0.92548834]\n", + " [0.27433941 0.22602265 0.93469335]\n", + " [0.26511145 0.19989173 0.94327049]\n", + " [0.25552994 0.17324749 0.95115181]\n", + " [0.24562413 0.14618675 0.95827878]\n", + " [0.23542697 0.11881101 0.96460255]\n", + " [0.2249752 0.09122621 0.9700845 ]\n", + " [0.46012818 0.18317597 0.86875119]\n", + " [0.45156286 0.15256387 0.87909911]\n", + " [0.44209746 0.12116416 0.88874579]\n", + " [0.43178065 0.08915513 0.89756161]\n", + " [0.42066579 0.05671849 0.90544094]\n", + " [0.40881205 0.02403989 0.91230192]\n", + " [0.45337206 0.19900235 0.8688221 ]\n", + " [0.42539687 0.21384139 0.8793801 ]\n", + " [0.39621319 0.22858998 0.88924785]\n", + " [0.3659828 0.24316088 0.89829248]\n", + " [0.33487321 0.25746773 0.90640515]\n", + " [0.30305872 0.27142546 0.91350076]\n", + " [0.39431482 0.01716718 0.91881506]\n", + " [0.36472986 0.03065588 0.93060859]\n", + " [0.33403418 0.04440142 0.94151457]\n", + " [0.30238234 0.05832102 0.95140085]\n", + " [0.26993926 0.07233156 0.96015673]\n", + " [0.23688305 0.08634871 0.9676933 ]\n", + " [0.28809237 0.26560316 0.92003138]\n", + " [0.27746873 0.23469414 0.93162748]\n", + " [0.26626264 0.20282807 0.94231894]\n", + " [0.25452088 0.17017522 0.95197664]\n", + " [0.24229734 0.13691398 0.96049287]\n", + " [0.22965428 0.1032331 0.96778192]\n", + " [0.46292808 0.19375974 0.86495939]\n", + " [0.46292808 0.19375974 0.86495939]\n", + " [0.22510463 0.09128183 0.97004924]\n", + " [0.22510463 0.09128183 0.97004924]\n", + " [0.45051835 0.18839464 0.87266298]\n", + " [0.42239395 0.20318008 0.88334659]\n", + " [0.39306578 0.21789627 0.89331994]\n", + " [0.36269514 0.23245593 0.90245026]\n", + " [0.33144908 0.24677243 0.91062883]\n", + " [0.29950189 0.26076024 0.91777051]\n", + " [0.44181304 0.15770729 0.88313626]\n", + " [0.41330247 0.17232032 0.89414024]\n", + " [0.38360247 0.18692475 0.90438282]\n", + " [0.35287245 0.20143321 0.91373174]\n", + " [0.32127823 0.21575838 0.92207843]\n", + " [0.2889942 0.22981362 0.92933743]\n", + " [0.43222613 0.12622116 0.8928879 ]\n", + " [0.40338287 0.14063038 0.90416003]\n", + " [0.37336559 0.15509204 0.91462812]\n", + " [0.34233164 0.16951901 0.92416035]\n", + " [0.31044582 0.18382381 0.93264795]\n", + " [0.27788309 0.19791914 0.94000479]\n", + " [0.42180591 0.09411424 0.90178838]\n", + " [0.39268205 0.10828704 0.91327692]\n", + " [0.36240076 0.12257336 0.9239272 ]\n", + " [0.33111769 0.13688687 0.93360755]\n", + " [0.29899711 0.15114063 0.9422087 ]\n", + " [0.26621483 0.16524742 0.94964359]\n", + " [0.41060528 0.06156818 0.9097322 ]\n", + " [0.38125157 0.07547167 0.92138551]\n", + " [0.35075872 0.08954965 0.93217444]\n", + " [0.31928135 0.10371711 0.94196719]\n", + " [0.28698372 0.11788841 0.95065381]\n", + " [0.25404265 0.13197713 0.95814632]\n", + " [0.39868304 0.02876893 0.91663743]\n", + " [0.36914957 0.0423712 0.92840362]\n", + " [0.3384975 0.05620884 0.93928697]\n", + " [0.30688126 0.07019846 0.94915545]\n", + " [0.27446554 0.08425624 0.95789851]\n", + " [0.24142816 0.09829723 0.96542742]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:fp_optics: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:cartToSphere: vec: [[ 0.06833724 0.56933966 -0.81925721]\n", + " [ 0.05947405 0.5476262 -0.83460672]\n", + " [ 0.05038716 0.52504188 -0.84958352]\n", + " [ 0.0411103 0.50165291 -0.8640916 ]\n", + " [ 0.03167767 0.47753089 -0.87804372]\n", + " [ 0.02212449 0.45275431 -0.89136078]\n", + " [ 0.01248734 0.4274094 -0.90397194]\n", + " [ 0.00280398 0.40159013 -0.91581521]\n", + " [ 0.06833724 0.56933966 -0.81925721]\n", + " [ 0.09576102 0.56044122 -0.82263933]\n", + " [ 0.12298542 0.55102645 -0.82537533]\n", + " [ 0.14990446 0.54113653 -0.82746595]\n", + " [ 0.17641321 0.5308171 -0.82892194]\n", + " [ 0.20240759 0.52011785 -0.82976418]\n", + " [ 0.22778397 0.50909226 -0.83002381]\n", + " [ 0.25243869 0.49779767 -0.82974225]\n", + " [ 0.00280398 0.40159013 -0.91581521]\n", + " [ 0.03120877 0.39250484 -0.9192203 ]\n", + " [ 0.05949262 0.38309549 -0.92179091]\n", + " [ 0.08754444 0.3734042 -0.92352871]\n", + " [ 0.11525657 0.36347658 -0.92444616]\n", + " [ 0.14252524 0.35336124 -0.92456605]\n", + " [ 0.16924985 0.34310992 -0.92392103]\n", + " [ 0.1953314 0.33277782 -0.92255328]\n", + " [ 0.25243869 0.49779767 -0.82974225]\n", + " [ 0.24550499 0.47611246 -0.84441946]\n", + " [ 0.23810568 0.45367152 -0.85877112]\n", + " [ 0.23027554 0.43054567 -0.87269903]\n", + " [ 0.22204885 0.40681035 -0.88611492]\n", + " [ 0.21345963 0.382546 -0.89894023]\n", + " [ 0.20454217 0.35783824 -0.91110608]\n", + " [ 0.1953314 0.33277782 -0.92255328]\n", + " [ 0.06459689 0.55995404 -0.82600165]\n", + " [ 0.05358039 0.53274793 -0.8445761 ]\n", + " [ 0.04226121 0.5042991 -0.86249429]\n", + " [ 0.03070205 0.47473703 -0.87959203]\n", + " [ 0.01896784 0.44420632 -0.89572371]\n", + " [ 0.00712638 0.41286898 -0.91076255]\n", + " [ 0.0802823 0.56545303 -0.82086395]\n", + " [ 0.11377328 0.55419468 -0.82457498]\n", + " [ 0.1468594 0.5422013 -0.82731497]\n", + " [ 0.17934703 0.52955508 -0.82909954]\n", + " [ 0.21104455 0.51634746 -0.82996717]\n", + " [ 0.24176114 0.5026785 -0.82997944]\n", + " [ 0.01522936 0.39776027 -0.91736298]\n", + " [ 0.04997497 0.38640216 -0.9209755 ]\n", + " [ 0.08442815 0.37459857 -0.92333515]\n", + " [ 0.11838923 0.36243204 -0.92446039]\n", + " [ 0.15166707 0.34999211 -0.92439311]\n", + " [ 0.18407724 0.33737541 -0.92319738]\n", + " [ 0.24939161 0.48847901 -0.83617707]\n", + " [ 0.24057486 0.46138428 -0.85396035]\n", + " [ 0.23109351 0.43322416 -0.87115591]\n", + " [ 0.22101089 0.40413563 -0.88759708]\n", + " [ 0.2103897 0.37426676 -0.90313929]\n", + " [ 0.19929328 0.34377734 -0.9176597 ]\n", + " [ 0.06840135 0.56923745 -0.81932288]\n", + " [ 0.06840135 0.56923745 -0.81932288]\n", + " [ 0.19527538 0.33289942 -0.92252127]\n", + " [ 0.19527538 0.33289942 -0.92252127]\n", + " [ 0.07652482 0.55615615 -0.82754715]\n", + " [ 0.11015365 0.54486887 -0.83125453]\n", + " [ 0.14338422 0.53286046 -0.83396684]\n", + " [ 0.1760228 0.52021358 -0.83569959]\n", + " [ 0.20787808 0.50702 -0.83649114]\n", + " [ 0.23875981 0.4933799 -0.83640303]\n", + " [ 0.06562664 0.52891673 -0.84613252]\n", + " [ 0.09960405 0.51756283 -0.84982807]\n", + " [ 0.13320155 0.50552978 -0.85246524]\n", + " [ 0.16622471 0.49290138 -0.85405947]\n", + " [ 0.1984831 0.47977027 -0.85464902]\n", + " [ 0.22978835 0.46623695 -0.85429528]\n", + " [ 0.05440364 0.50044187 -0.86405913]\n", + " [ 0.08866711 0.48904493 -0.86774028]\n", + " [ 0.12256894 0.477015 -0.87030658]\n", + " [ 0.15591363 0.46443668 -0.87177377]\n", + " [ 0.18851123 0.45140301 -0.8721805 ]\n", + " [ 0.22017526 0.43801449 -0.8715883 ]\n", + " [ 0.04291794 0.47086129 -0.8811627 ]\n", + " [ 0.07740356 0.45944594 -0.8848266 ]\n", + " [ 0.11154654 0.44744836 -0.88732595]\n", + " [ 0.14514996 0.43495332 -0.88867716]\n", + " [ 0.17802393 0.42205361 -0.8889197 ]\n", + " [ 0.20998339 0.40884914 -0.88811562]\n", + " [ 0.03123372 0.44031982 -0.89729756]\n", + " [ 0.06587571 0.42891148 -0.90094136]\n", + " [ 0.10019531 0.41697626 -0.90337794]\n", + " [ 0.13399424 0.40459839 -0.90462461]\n", + " [ 0.16708223 0.3918697 -0.90472187]\n", + " [ 0.19927498 0.37888893 -0.90373263]\n", + " [ 0.01941811 0.40897968 -0.91233687]\n", + " [ 0.05414883 0.39760398 -0.91595796]\n", + " [ 0.08857901 0.38576093 -0.91833668]\n", + " [ 0.12250927 0.37353359 -0.91949124]\n", + " [ 0.15574872 0.36101218 -0.91946318]\n", + " [ 0.18811307 0.3482939 -0.9183163 ]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:fp_optics: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:cartToSphere: vec: [[-0.35395515 0.75237936 -0.55555472]\n", + " [-0.34017878 0.74202252 -0.57765125]\n", + " [-0.32585458 0.73085974 -0.59971896]\n", + " [-0.31102469 0.71890304 -0.62164464]\n", + " [-0.29573502 0.70617231 -0.64332065]\n", + " [-0.28003602 0.69269607 -0.66464425]\n", + " [-0.26398283 0.67851186 -0.68551785]\n", + " [-0.24763503 0.66366622 -0.70584988]\n", + " [-0.35395515 0.75237936 -0.55555472]\n", + " [-0.33059111 0.76807103 -0.54843086]\n", + " [-0.30697624 0.78303306 -0.54094807]\n", + " [-0.28320538 0.79721507 -0.5331443 ]\n", + " [-0.25937549 0.81057472 -0.52506473]\n", + " [-0.23558544 0.82307737 -0.51676218]\n", + " [-0.21193614 0.8346954 -0.50829781]\n", + " [-0.18853128 0.84540747 -0.49974211]\n", + " [-0.24763503 0.66366622 -0.70584988]\n", + " [-0.22354491 0.67994384 -0.69835811]\n", + " [-0.19932994 0.69555848 -0.69026515]\n", + " [-0.17508841 0.71045721 -0.68161176]\n", + " [-0.15091908 0.72459625 -0.67244607]\n", + " [-0.12692042 0.737941 -0.66282297]\n", + " [-0.10319053 0.75046576 -0.65280384]\n", + " [-0.0798279 0.7621529 -0.64245659]\n", + " [-0.18853128 0.84540747 -0.49974211]\n", + " [-0.17371089 0.83606908 -0.52039698]\n", + " [-0.15857313 0.82584219 -0.54114623]\n", + " [-0.14316323 0.81474227 -0.56187127]\n", + " [-0.12752988 0.80279095 -0.58246272]\n", + " [-0.11172532 0.79001681 -0.60281912]\n", + " [-0.09580514 0.77645605 -0.62284619]\n", + " [-0.0798279 0.7621529 -0.64245659]\n", + " [-0.34793886 0.74801837 -0.5651611 ]\n", + " [-0.33068018 0.73478242 -0.59223763]\n", + " [-0.3126403 0.72034696 -0.61915774]\n", + " [-0.29390212 0.70474526 -0.64572104]\n", + " [-0.27455854 0.68802988 -0.67173841]\n", + " [-0.25471293 0.67027366 -0.69703267]\n", + " [-0.34375871 0.75927333 -0.55257032]\n", + " [-0.31494241 0.77802173 -0.5435931 ]\n", + " [-0.28584342 0.79562323 -0.53411348]\n", + " [-0.25663939 0.81199654 -0.52421164]\n", + " [-0.22751233 0.82707781 -0.51398486]\n", + " [-0.19864913 0.84081885 -0.50354959]\n", + " [-0.23720957 0.6708929 -0.70259116]\n", + " [-0.20758839 0.69040392 -0.69300035]\n", + " [-0.17787713 0.70886544 -0.68254635]\n", + " [-0.14825746 0.72619303 -0.67131469]\n", + " [-0.11891067 0.74232298 -0.65940643]\n", + " [-0.09001744 0.75721139 -0.64693722]\n", + " [-0.18219098 0.8414106 -0.50875795]\n", + " [-0.16380848 0.82936562 -0.53415301]\n", + " [-0.14499368 0.81600083 -0.55957079]\n", + " [-0.12583474 0.80135345 -0.58480617]\n", + " [-0.10642783 0.78547616 -0.60967231]\n", + " [-0.08687655 0.76843892 -0.6339985 ]\n", + " [-0.35382965 0.75240017 -0.55560648]\n", + " [-0.35382965 0.75240017 -0.55560648]\n", + " [-0.07996172 0.76216449 -0.64242619]\n", + " [-0.07996172 0.76216449 -0.64242619]\n", + " [-0.33782924 0.75491881 -0.56211119]\n", + " [-0.30890946 0.77374481 -0.55307677]\n", + " [-0.27971648 0.79142421 -0.54351303]\n", + " [-0.25042844 0.80787582 -0.5335 ]\n", + " [-0.22122743 0.82303629 -0.52313448]\n", + " [-0.19229995 0.83685828 -0.5125319 ]\n", + " [-0.32047363 0.74175177 -0.58915275]\n", + " [-0.29129763 0.7607764 -0.57996979]\n", + " [-0.2618772 0.77865882 -0.57018486]\n", + " [-0.23239189 0.7953178 -0.5598782 ]\n", + " [-0.20302412 0.81069103 -0.54914594]\n", + " [-0.17395931 0.82473327 -0.53810147]\n", + " [-0.30235584 0.72737263 -0.61604383]\n", + " [-0.27297947 0.74656431 -0.60673218]\n", + " [-0.24339018 0.76462398 -0.59675069]\n", + " [-0.21376881 0.78146997 -0.5861805 ]\n", + " [-0.18429806 0.79704042 -0.57511808]\n", + " [-0.1551623 0.81129155 -0.56367605]\n", + " [-0.28355936 0.71181434 -0.64258419]\n", + " [-0.2540401 0.73114079 -0.63316409]\n", + " [-0.22434207 0.74935187 -0.62301076]\n", + " [-0.194647 0.76636517 -0.61220664]\n", + " [-0.16513761 0.78211873 -0.60084929]\n", + " [-0.13599723 0.79656949 -0.58905161]\n", + " [-0.26417762 0.69512903 -0.66858493]\n", + " [-0.23457445 0.71455707 -0.6590774 ]\n", + " [-0.20482896 0.73289313 -0.6487779 ]\n", + " [-0.17512326 0.75005393 -0.63777029]\n", + " [-0.14563972 0.76597698 -0.62615361]\n", + " [-0.11656058 0.78061924 -0.61404172]\n", + " [-0.24431444 0.67738927 -0.69386903]\n", + " [-0.21468732 0.69688477 -0.68429597]\n", + " [-0.18495621 0.71531851 -0.67387731]\n", + " [-0.15530302 0.73260634 -0.66269822]\n", + " [-0.12590939 0.74868491 -0.65085923]\n", + " [-0.09695638 0.76351061 -0.63847553]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:fp_optics: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:cartToSphere: vec: [[-1.27348486e-01 -5.41619596e-01 8.30921522e-01]\n", + " [-1.10536462e-01 -5.23905338e-01 8.44573790e-01]\n", + " [-9.32990760e-02 -5.05413473e-01 8.57818456e-01]\n", + " [-7.57003995e-02 -4.86194951e-01 8.70565287e-01]\n", + " [-5.78053125e-02 -4.66305724e-01 8.82732982e-01]\n", + " [-3.96806195e-02 -4.45808079e-01 8.94248626e-01]\n", + " [-2.13955955e-02 -4.24771455e-01 9.05047756e-01]\n", + " [-3.02182462e-03 -4.03272478e-01 9.15074957e-01]\n", + " [-1.27348486e-01 -5.41619596e-01 8.30921522e-01]\n", + " [-1.04331762e-01 -5.57638203e-01 8.23501377e-01]\n", + " [-8.12410567e-02 -5.73077101e-01 8.15464608e-01]\n", + " [-5.81659528e-02 -5.87880775e-01 8.06853714e-01]\n", + " [-3.51955558e-02 -6.01998887e-01 7.97720886e-01]\n", + " [-1.24182372e-02 -6.15385923e-01 7.88128132e-01]\n", + " [ 1.00783311e-02 -6.28000742e-01 7.78147476e-01]\n", + " [ 3.22069407e-02 -6.39806284e-01 7.67861076e-01]\n", + " [-3.02182462e-03 -4.03272478e-01 9.15074957e-01]\n", + " [ 2.07061540e-02 -4.19938908e-01 9.07316135e-01]\n", + " [ 4.43416255e-02 -4.36173371e-01 8.98769498e-01]\n", + " [ 6.77916609e-02 -4.51917191e-01 8.89480266e-01]\n", + " [ 9.09661444e-02 -4.67118242e-01 8.79503103e-01]\n", + " [ 1.13778177e-01 -4.81730964e-01 8.68901493e-01]\n", + " [ 1.36143571e-01 -4.95715775e-01 8.57747515e-01]\n", + " [ 1.57979544e-01 -5.09038057e-01 8.46122166e-01]\n", + " [ 3.22069407e-02 -6.39806284e-01 7.67861076e-01]\n", + " [ 4.98557548e-02 -6.23484133e-01 7.80244794e-01]\n", + " [ 6.77246307e-02 -6.06277987e-01 7.92363791e-01]\n", + " [ 8.57458448e-02 -5.88242098e-01 8.04126162e-01]\n", + " [ 1.03851171e-01 -5.69434829e-01 8.15450127e-01]\n", + " [ 1.21971681e-01 -5.49918998e-01 8.26263883e-01]\n", + " [ 1.40037784e-01 -5.29762381e-01 8.36505373e-01]\n", + " [ 1.57979544e-01 -5.09038057e-01 8.46122166e-01]\n", + " [-1.19995998e-01 -5.34050744e-01 8.36893520e-01]\n", + " [-9.90962451e-02 -5.11811532e-01 8.53363281e-01]\n", + " [-7.76213660e-02 -4.88454368e-01 8.69130171e-01]\n", + " [-5.56904063e-02 -4.64080104e-01 8.84040856e-01]\n", + " [-3.34264198e-02 -4.38803504e-01 8.97961112e-01]\n", + " [-1.09579370e-02 -4.12755414e-01 9.10775983e-01]\n", + " [-1.17270943e-01 -5.48612309e-01 8.27811609e-01]\n", + " [-8.89998094e-02 -5.67862806e-01 8.18297542e-01]\n", + " [-6.07067211e-02 -5.86186878e-01 8.07898284e-01]\n", + " [-3.25559412e-02 -6.03489710e-01 7.96705893e-01]\n", + " [-4.71016388e-03 -6.19687464e-01 7.84834544e-01]\n", + " [ 2.26694165e-02 -6.34706094e-01 7.72421046e-01]\n", + " [ 7.26609697e-03 -4.10662398e-01 9.11758520e-01]\n", + " [ 3.62967822e-02 -4.30805836e-01 9.01714409e-01]\n", + " [ 6.50960415e-02 -4.50241297e-01 8.90530898e-01]\n", + " [ 9.34967516e-02 -4.68870078e-01 8.78304735e-01]\n", + " [ 1.21338872e-01 -4.86608239e-01 8.65152761e-01]\n", + " [ 1.48468077e-01 -5.03385030e-01 8.51211338e-01]\n", + " [ 3.97954927e-02 -6.32762419e-01 7.73322727e-01]\n", + " [ 6.15823025e-02 -6.12155791e-01 7.88335530e-01]\n", + " [ 8.36325545e-02 -5.90274860e-01 8.02858135e-01]\n", + " [ 1.05820871e-01 -5.67225361e-01 8.16735779e-01]\n", + " [ 1.28020360e-01 -5.43122998e-01 8.29836247e-01]\n", + " [ 1.50102739e-01 -5.18094740e-01 8.42049291e-01]\n", + " [-1.27213309e-01 -5.41616099e-01 8.30944508e-01]\n", + " [-1.27213309e-01 -5.41616099e-01 8.30944508e-01]\n", + " [ 1.57844804e-01 -5.09065416e-01 8.46130853e-01]\n", + " [ 1.57844804e-01 -5.09065416e-01 8.46130853e-01]\n", + " [-1.10015474e-01 -5.41075542e-01 8.33746876e-01]\n", + " [-8.16460437e-02 -5.60413679e-01 8.24178641e-01]\n", + " [-5.32696521e-02 -5.78835110e-01 8.13702808e-01]\n", + " [-2.50510033e-02 -5.96245185e-01 8.02411444e-01]\n", + " [ 2.84708893e-03 -6.12560509e-01 7.90418571e-01]\n", + " [ 3.02636014e-02 -6.27707510e-01 7.77860782e-01]\n", + " [-8.90199821e-02 -5.18908719e-01 8.50181854e-01]\n", + " [-6.04073827e-02 -5.38472297e-01 8.40475183e-01]\n", + " [-3.18308469e-02 -5.57148730e-01 8.29802440e-01]\n", + " [-3.45637769e-03 -5.74843583e-01 8.18256017e-01]\n", + " [ 2.45529686e-02 -5.91474643e-01 8.05949687e-01]\n", + " [ 5.20368842e-02 -6.06969940e-01 7.93019328e-01]\n", + " [-6.74679188e-02 -4.95611103e-01 8.65920155e-01]\n", + " [-3.86653624e-02 -5.15366421e-01 8.56097215e-01]\n", + " [-9.94284953e-03 -5.34267796e-01 8.45256802e-01]\n", + " [ 1.85324691e-02 -5.52220513e-01 8.33492083e-01]\n", + " [ 4.65975715e-02 -5.69143091e-01 8.20917053e-01]\n", + " [ 7.40932209e-02 -5.84965032e-01 8.07667076e-01]\n", + " [-4.54788589e-02 -4.71283236e-01 8.80808597e-01]\n", + " [-1.65412010e-02 -4.91196191e-01 8.70891894e-01]\n", + " [ 1.22715353e-02 -5.10292858e-01 8.59913140e-01]\n", + " [ 4.07914693e-02 -5.28477707e-01 8.47966609e-01]\n", + " [ 6.88560149e-02 -5.45669297e-01 8.35166970e-01]\n", + " [ 9.63073169e-02 -5.61798002e-01 8.21649503e-01]\n", + " [-2.31764744e-02 -4.46039459e-01 8.94713167e-01]\n", + " [ 5.83977675e-03 -4.66075006e-01 8.84725938e-01]\n", + " [ 3.46857089e-02 -4.85336897e-01 8.73638940e-01]\n", + " [ 6.31933161e-02 -5.03728369e-01 8.61547639e-01]\n", + " [ 9.12008786e-02 -5.21167296e-01 8.48567646e-01]\n", + " [ 1.18552097e-01 -5.37584101e-01 8.34834555e-01]\n", + " [-6.89824995e-04 -4.20010209e-01 9.07519117e-01]\n", + " [ 2.83473418e-02 -4.40132071e-01 8.97485481e-01]\n", + " [ 5.71689033e-02 -4.59527972e-01 8.86321476e-01]\n", + " [ 8.56073962e-02 -4.78099713e-01 8.74123583e-01]\n", + " [ 1.13502308e-01 -4.95763896e-01 8.61008354e-01]\n", + " [ 1.40698843e-01 -5.12450193e-01 8.47111938e-01]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:cartToSphere: vec: [[-0.83365185 0.01910383 0.55195982]\n", + " [-0.81990938 0.00586887 0.57246325]\n", + " [-0.80523065 -0.00763337 0.59291259]\n", + " [-0.78963815 -0.02134947 0.61320127]\n", + " [-0.77316264 -0.03522603 0.63322875]\n", + " [-0.75584443 -0.04920879 0.65289945]\n", + " [-0.73773412 -0.06324237 0.67212258]\n", + " [-0.71889282 -0.0772705 0.69081285]\n", + " [-0.83365185 0.01910383 0.55195982]\n", + " [-0.84124316 -0.00651139 0.54061775]\n", + " [-0.84805726 -0.03208483 0.52893237]\n", + " [-0.85407622 -0.05751802 0.51695792]\n", + " [-0.85929047 -0.08271403 0.50475567]\n", + " [-0.86369841 -0.1075776 0.49239426]\n", + " [-0.86730598 -0.13201491 0.47995041]\n", + " [-0.87012629 -0.15593304 0.46750949]\n", + " [-0.71889282 -0.0772705 0.69081285]\n", + " [-0.72681593 -0.10369524 0.67895943]\n", + " [-0.73405941 -0.12994151 0.66653731]\n", + " [-0.74060404 -0.15590689 0.65360439]\n", + " [-0.7464397 -0.18149304 0.640225 ]\n", + " [-0.75156513 -0.20660621 0.62646925]\n", + " [-0.75598738 -0.23115668 0.61241299]\n", + " [-0.75972122 -0.25505727 0.59813833]\n", + " [-0.87012629 -0.15593304 0.46750949]\n", + " [-0.8570095 -0.17023871 0.48636765]\n", + " [-0.84295082 -0.18458967 0.50533214]\n", + " [-0.82797669 -0.19892956 0.52429155]\n", + " [-0.81212087 -0.21320219 0.54314318]\n", + " [-0.79542496 -0.22735148 0.56179217]\n", + " [-0.77793889 -0.24132156 0.58015083]\n", + " [-0.75972122 -0.25505727 0.59813833]\n", + " [-0.8278037 0.01328176 0.56086062]\n", + " [-0.8103291 -0.00312641 0.58596669]\n", + " [-0.79146967 -0.01988274 0.61088497]\n", + " [-0.77127851 -0.03688897 0.63542793]\n", + " [-0.74982993 -0.05404518 0.65941959]\n", + " [-0.72722146 -0.07124901 0.68269505]\n", + " [-0.83701048 0.00789163 0.54712994]\n", + " [-0.84579474 -0.02348765 0.53299117]\n", + " [-0.85339286 -0.05470608 0.51838969]\n", + " [-0.85978377 -0.08558453 0.50343536]\n", + " [-0.86496448 -0.11594762 0.48825464]\n", + " [-0.8689489 -0.14562305 0.47299232]\n", + " [-0.72249486 -0.08875914 0.68565515]\n", + " [-0.73175116 -0.12103839 0.67073836]\n", + " [-0.73996638 -0.15294751 0.65502428]\n", + " [-0.74711815 -0.18430371 0.63862869]\n", + " [-0.75320408 -0.21493431 0.62168068]\n", + " [-0.75824036 -0.24467529 0.6043224 ]\n", + " [-0.86451605 -0.16208023 0.47575414]\n", + " [-0.84780322 -0.17965056 0.49895429]\n", + " [-0.82970107 -0.19723303 0.52220233]\n", + " [-0.81026869 -0.21472416 0.54530558]\n", + " [-0.78958273 -0.23202069 0.56808935]\n", + " [-0.76773867 -0.24902006 0.59039507]\n", + " [-0.83363373 0.01897154 0.55199175]\n", + " [-0.83363373 0.01897154 0.55199175]\n", + " [-0.75977307 -0.25493023 0.59812662]\n", + " [-0.75977307 -0.25493023 0.59812662]\n", + " [-0.83119432 0.00215927 0.55597783]\n", + " [-0.84001971 -0.02933223 0.54176241]\n", + " [-0.84766175 -0.06064986 0.52705896]\n", + " [-0.85409965 -0.09161408 0.51197719]\n", + " [-0.8593309 -0.12204952 0.49664305]\n", + " [-0.86336991 -0.1517843 0.48120051]\n", + " [-0.81375502 -0.01435582 0.5810307 ]\n", + " [-0.82268837 -0.04612633 0.56661822]\n", + " [-0.83045011 -0.07768592 0.55164981]\n", + " [-0.83702006 -0.10885376 0.53623528]\n", + " [-0.84239692 -0.13945454 0.52049962]\n", + " [-0.84659656 -0.16931774 0.50458475]\n", + " [-0.79492494 -0.03119845 0.6059051 ]\n", + " [-0.80395382 -0.06318934 0.59132509]\n", + " [-0.81182911 -0.09493201 0.57612621]\n", + " [-0.81853083 -0.12624441 0.56041915]\n", + " [-0.82405847 -0.15695143 0.54432885]\n", + " [-0.82842904 -0.18688406 0.52799591]\n", + " [-0.77475707 -0.04826969 0.63041376]\n", + " [-0.78386909 -0.08042053 0.61569619]\n", + " [-0.79185245 -0.11228585 0.60030124]\n", + " [-0.79868694 -0.14368273 0.58434103]\n", + " [-0.80437221 -0.17443645 0.56794126]\n", + " [-0.80892583 -0.20437966 0.55124219]\n", + " [-0.75332549 -0.06546893 0.65438103]\n", + " [-0.7625079 -0.09771744 0.63955688]\n", + " [-0.77059394 -0.12964365 0.6240012 ]\n", + " [-0.77756268 -0.16106427 0.60782776]\n", + " [-0.78341327 -0.19180528 0.59116358]\n", + " [-0.78816317 -0.22170093 0.57414939]\n", + " [-0.73072754 -0.08269322 0.6776423 ]\n", + " [-0.73996702 -0.11497578 0.66274383]\n", + " [-0.74814974 -0.14690039 0.64706432]\n", + " [-0.75525375 -0.17828402 0.6307191 ]\n", + " [-0.76127712 -0.20895362 0.61383673]\n", + " [-0.76623649 -0.23874479 0.59655893]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:fp_optics: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:fp_optics: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:cartToSphere: vec: [[ 0.58072202 0.78218467 0.22571902]\n", + " [ 0.57677217 0.7918407 0.20080381]\n", + " [ 0.57242588 0.80102478 0.17517965]\n", + " [ 0.56766922 0.80967085 0.14894554]\n", + " [ 0.56249388 0.81772031 0.12220529]\n", + " [ 0.55689845 0.82512228 0.09506487]\n", + " [ 0.55088901 0.8318337 0.06763132]\n", + " [ 0.54447922 0.83781943 0.04001232]\n", + " [ 0.58072202 0.78218467 0.22571902]\n", + " [ 0.60238765 0.76743311 0.21948928]\n", + " [ 0.62405426 0.75183907 0.21282457]\n", + " [ 0.64560759 0.73542995 0.20575136]\n", + " [ 0.6669372 0.71824224 0.19829995]\n", + " [ 0.68793854 0.70032099 0.19050218]\n", + " [ 0.70851391 0.6817197 0.18239046]\n", + " [ 0.72857278 0.66250024 0.17399755]\n", + " [ 0.54447922 0.83781943 0.04001232]\n", + " [ 0.56680788 0.82323642 0.03179027]\n", + " [ 0.58914085 0.80769232 0.02337048]\n", + " [ 0.611361 0.79121369 0.01478636]\n", + " [ 0.6333592 0.77383414 0.00607076]\n", + " [ 0.65503248 0.75559574 -0.00274337]\n", + " [ 0.67628252 0.73655066 -0.01162224]\n", + " [ 0.69701542 0.71676216 -0.02053087]\n", + " [ 0.72857278 0.66250024 0.17399755]\n", + " [ 0.7260236 0.67163834 0.14762001]\n", + " [ 0.72284065 0.68040974 0.1205984 ]\n", + " [ 0.71900468 0.68875 0.09303607]\n", + " [ 0.71450388 0.69660216 0.06503565]\n", + " [ 0.7093343 0.70391608 0.03670153]\n", + " [ 0.70350038 0.71064824 0.00814187]\n", + " [ 0.69701542 0.71676216 -0.02053087]\n", + " [ 0.57912185 0.78639927 0.21492806]\n", + " [ 0.57401713 0.7979251 0.18390181]\n", + " [ 0.56830237 0.80867563 0.15190834]\n", + " [ 0.56195984 0.81853987 0.11913697]\n", + " [ 0.55498702 0.82742416 0.0857827 ]\n", + " [ 0.54739823 0.83525249 0.05204285]\n", + " [ 0.59014833 0.77589162 0.22297339]\n", + " [ 0.61671784 0.75724255 0.21504146]\n", + " [ 0.64317503 0.73735408 0.20648205]\n", + " [ 0.66931479 0.71628966 0.19734953]\n", + " [ 0.69494479 0.69413223 0.18770242]\n", + " [ 0.71988809 0.67098375 0.17760051]\n", + " [ 0.55422887 0.8315615 0.03654899]\n", + " [ 0.58161325 0.81303902 0.02633576]\n", + " [ 0.60888675 0.79309863 0.01585863]\n", + " [ 0.6358452 0.77179924 0.00517826]\n", + " [ 0.66229884 0.74921852 -0.0056446 ]\n", + " [ 0.68806845 0.7254571 -0.01654722]\n", + " [ 0.72746982 0.66659207 0.16261201]\n", + " [ 0.72392149 0.67755431 0.12983773]\n", + " [ 0.71940139 0.68790074 0.09619882]\n", + " [ 0.71388471 0.69752343 0.06188446]\n", + " [ 0.70736423 0.70633005 0.02708705]\n", + " [ 0.69985181 0.71424335 -0.00799245]\n", + " [ 0.58078313 0.78216943 0.22561459]\n", + " [ 0.58078313 0.78216943 0.22561459]\n", + " [ 0.69696877 0.71681119 -0.02040229]\n", + " [ 0.69696877 0.71681119 -0.02040229]\n", + " [ 0.58852989 0.780123 0.21222786]\n", + " [ 0.61521984 0.7614665 0.20414044]\n", + " [ 0.64179388 0.74155348 0.19544575]\n", + " [ 0.66804556 0.72044753 0.18620014]\n", + " [ 0.69378209 0.69823157 0.17646272]\n", + " [ 0.71882625 0.67500768 0.16629325]\n", + " [ 0.58353 0.79165591 0.18103497]\n", + " [ 0.61051362 0.77298916 0.1725134 ]\n", + " [ 0.63737233 0.75302177 0.16344643]\n", + " [ 0.66389786 0.7318172 0.15389352]\n", + " [ 0.68989715 0.70945804 0.14391389]\n", + " [ 0.71519236 0.68604655 0.13356651]\n", + " [ 0.5778937 0.8024176 0.1488787 ]\n", + " [ 0.60509704 0.7837569 0.13993818]\n", + " [ 0.63217011 0.7637579 0.13051751]\n", + " [ 0.65890486 0.74248333 0.12067677]\n", + " [ 0.68510879 0.72001485 0.11047429]\n", + " [ 0.71060344 0.69645466 0.09996827]\n", + " [ 0.57160196 0.81229719 0.11595033]\n", + " [ 0.59894892 0.7936591 0.10660877]\n", + " [ 0.62616519 0.77365155 0.09685268]\n", + " [ 0.65304397 0.75233597 0.08674185]\n", + " [ 0.67939361 0.72979272 0.07633411]\n", + " [ 0.70503504 0.70612372 0.06568779]\n", + " [ 0.56465181 0.821201 0.08244547]\n", + " [ 0.59206595 0.80260175 0.07272094]\n", + " [ 0.61935431 0.78260824 0.06264655]\n", + " [ 0.64631149 0.76128054 0.05228203]\n", + " [ 0.67274673 0.73869759 0.04168574]\n", + " [ 0.69848058 0.71496084 0.03091732]\n", + " [ 0.55705765 0.82905279 0.04856174]\n", + " [ 0.58446308 0.81050772 0.03847258]\n", + " [ 0.61175283 0.79054982 0.02809721]\n", + " [ 0.63872255 0.76923819 0.01749593]\n", + " [ 0.66518225 0.74665072 0.00672874]\n", + " [ 0.69095254 0.72288825 -0.00414252]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:fp_optics: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:cartToSphere: vec: [[ 0.87120432 0.19861987 -0.44894675]\n", + " [ 0.85785782 0.21234654 -0.46796251]\n", + " [ 0.84357325 0.22606923 -0.48711075]\n", + " [ 0.82837763 0.23973294 -0.50627919]\n", + " [ 0.81230545 0.25328322 -0.52536412]\n", + " [ 0.79539912 0.26666612 -0.54426962]\n", + " [ 0.77770938 0.2798283 -0.56290696]\n", + " [ 0.75929558 0.29271745 -0.58119422]\n", + " [ 0.87120432 0.19861987 -0.44894675]\n", + " [ 0.86983511 0.17475484 -0.46135413]\n", + " [ 0.86770815 0.15031146 -0.47380274]\n", + " [ 0.86480282 0.12538196 -0.48620515]\n", + " [ 0.86110575 0.10005956 -0.49848266]\n", + " [ 0.85661109 0.07443908 -0.51056466]\n", + " [ 0.85132084 0.04861732 -0.52238796]\n", + " [ 0.84524537 0.022693 -0.53389633]\n", + " [ 0.75929558 0.29271745 -0.58119422]\n", + " [ 0.75701673 0.26886311 -0.59551516]\n", + " [ 0.75408092 0.2443062 -0.60965272]\n", + " [ 0.75046613 0.21913293 -0.62352333]\n", + " [ 0.74615792 0.19343174 -0.63704986]\n", + " [ 0.74114993 0.16729517 -0.65016083]\n", + " [ 0.73544442 0.14082059 -0.66279037]\n", + " [ 0.72905262 0.11411009 -0.67487862]\n", + " [ 0.84524537 0.022693 -0.53389633]\n", + " [ 0.83133628 0.03536011 -0.55464372]\n", + " [ 0.81647749 0.04824547 -0.57535804]\n", + " [ 0.80069182 0.06129669 -0.59593231]\n", + " [ 0.78401045 0.07446165 -0.61626543]\n", + " [ 0.76647418 0.08768777 -0.6362611 ]\n", + " [ 0.74813429 0.10092179 -0.65582763]\n", + " [ 0.72905262 0.11411009 -0.67487862]\n", + " [ 0.8654984 0.20452102 -0.45725669]\n", + " [ 0.84850657 0.22134844 -0.48066773]\n", + " [ 0.83013171 0.2381153 -0.5041651 ]\n", + " [ 0.81043419 0.25472118 -0.5275543 ]\n", + " [ 0.78949212 0.27106672 -0.55065872]\n", + " [ 0.76740249 0.28705415 -0.57331783]\n", + " [ 0.87065472 0.18833836 -0.45441063]\n", + " [ 0.86846961 0.15868831 -0.46965791]\n", + " [ 0.86512506 0.12826103 -0.48487909]\n", + " [ 0.86059347 0.09722767 -0.49992566]\n", + " [ 0.85486405 0.06576283 -0.51466756]\n", + " [ 0.847944 0.03404554 -0.52899137]\n", + " [ 0.75844544 0.28236502 -0.58739298]\n", + " [ 0.75521449 0.25264539 -0.6048317 ]\n", + " [ 0.75097394 0.22195607 -0.62191129]\n", + " [ 0.74569404 0.19045886 -0.63848713]\n", + " [ 0.73936316 0.15832418 -0.65442766]\n", + " [ 0.73198917 0.12573331 -0.66961406]\n", + " [ 0.83932107 0.02827473 -0.54290025]\n", + " [ 0.82163315 0.04395383 -0.56831947]\n", + " [ 0.80254054 0.05990845 -0.59358206]\n", + " [ 0.78209708 0.07604258 -0.61849955]\n", + " [ 0.760378 0.09225937 -0.64289463]\n", + " [ 0.7374821 0.10846061 -0.66660066]\n", + " [ 0.87115688 0.19858623 -0.44905367]\n", + " [ 0.87115688 0.19858623 -0.44905367]\n", + " [ 0.72914207 0.11415675 -0.6747741 ]\n", + " [ 0.72914207 0.11415675 -0.6747741 ]\n", + " [ 0.86497759 0.19425522 -0.46268637]\n", + " [ 0.86274266 0.16454615 -0.47812097]\n", + " [ 0.85935251 0.13404721 -0.49350239]\n", + " [ 0.85477907 0.10292907 -0.50868295]\n", + " [ 0.8490111 0.07136617 -0.5235332 ]\n", + " [ 0.84205543 0.03953784 -0.53793997]\n", + " [ 0.84792879 0.21104566 -0.4862885 ]\n", + " [ 0.8455435 0.18120883 -0.50221464]\n", + " [ 0.8420186 0.15054646 -0.51801588]\n", + " [ 0.83732468 0.11922757 -0.53354679]\n", + " [ 0.83144923 0.08742616 -0.54867918]\n", + " [ 0.82439828 0.05532254 -0.56330001]\n", + " [ 0.82949041 0.22779604 -0.50995552]\n", + " [ 0.82693979 0.19788992 -0.52631755]\n", + " [ 0.82327039 0.16712298 -0.54249034]\n", + " [ 0.81845172 0.13566241 -0.55833009]\n", + " [ 0.81247041 0.10368164 -0.57370894]\n", + " [ 0.80533208 0.07136186 -0.58851315]\n", + " [ 0.80972228 0.24440576 -0.53349382]\n", + " [ 0.80698962 0.21448854 -0.55023851]\n", + " [ 0.80316426 0.1836761 -0.5667365 ]\n", + " [ 0.79821516 0.15213374 -0.58284465]\n", + " [ 0.79212871 0.12003416 -0.59843455]\n", + " [ 0.78491063 0.08755916 -0.61339115]\n", + " [ 0.78870212 0.2607751 -0.55672732]\n", + " [ 0.78576965 0.23090409 -0.57380255]\n", + " [ 0.78177596 0.2001049 -0.5905797 ]\n", + " [ 0.77669016 0.16854108 -0.6069154 ]\n", + " [ 0.77049906 0.13638443 -0.62268009]\n", + " [ 0.76320902 0.1038169 -0.63775704]\n", + " [ 0.76652689 0.27680576 -0.57949555]\n", + " [ 0.76337682 0.24703696 -0.59684887]\n", + " [ 0.75920266 0.21630892 -0.61385811]\n", + " [ 0.75397427 0.18478381 -0.63037905]\n", + " [ 0.74767953 0.15263241 -0.64628064]\n", + " [ 0.74032587 0.12003627 -0.66144456]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:fp_optics: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:cartToSphere: vec: [[-9.72024976e-02 1.30624060e-01 -9.86655476e-01]\n", + " [-8.76886862e-02 1.05683059e-01 -9.90526014e-01]\n", + " [-7.77606260e-02 8.01954724e-02 -9.93741401e-01]\n", + " [-6.74741434e-02 5.42621795e-02 -9.96244376e-01]\n", + " [-5.68811059e-02 2.79837919e-02 -9.97988701e-01]\n", + " [-4.60305248e-02 1.46156466e-03 -9.98938964e-01]\n", + " [-3.49695220e-02 -2.52021635e-02 -9.99070560e-01]\n", + " [-2.37439660e-02 -5.19040185e-02 -9.98369770e-01]\n", + " [-9.72024976e-02 1.30624060e-01 -9.86655476e-01]\n", + " [-7.31873887e-02 1.42794782e-01 -9.87042682e-01]\n", + " [-4.85290676e-02 1.54981810e-01 -9.86724667e-01]\n", + " [-2.33406628e-02 1.67140619e-01 -9.85656749e-01]\n", + " [ 2.26865998e-03 1.79226038e-01 -9.83805306e-01]\n", + " [ 2.81921870e-02 1.91192270e-01 -9.81147653e-01]\n", + " [ 5.43245713e-02 2.02993200e-01 -9.77672032e-01]\n", + " [ 8.05613427e-02 2.14582873e-01 -9.73377656e-01]\n", + " [-2.37439660e-02 -5.19040185e-02 -9.98369770e-01]\n", + " [ 1.93501733e-03 -4.09883830e-02 -9.99157749e-01]\n", + " [ 2.81402296e-02 -2.98193833e-02 -9.99159112e-01]\n", + " [ 5.47663905e-02 -1.84396667e-02 -9.98328914e-01]\n", + " [ 8.17081702e-02 -6.89244372e-03 -9.96632464e-01]\n", + " [ 1.08858894e-01 4.77798293e-03 -9.94045729e-01]\n", + " [ 1.36110318e-01 1.65261324e-02 -9.90555838e-01]\n", + " [ 1.63353233e-01 2.83056031e-02 -9.86161505e-01]\n", + " [ 8.05613427e-02 2.14582873e-01 -9.73377656e-01]\n", + " [ 9.21543763e-02 1.89444704e-01 -9.77557300e-01]\n", + " [ 1.03910051e-01 1.63653449e-01 -9.81030198e-01]\n", + " [ 1.15776951e-01 1.37303486e-01 -9.83739524e-01]\n", + " [ 1.27704584e-01 1.10491588e-01 -9.85638447e-01]\n", + " [ 1.39642866e-01 8.33180882e-02 -9.86690410e-01]\n", + " [ 1.51542087e-01 5.58870392e-02 -9.86869614e-01]\n", + " [ 1.63353233e-01 2.83056031e-02 -9.86161505e-01]\n", + " [-9.30276856e-02 1.19864727e-01 -9.88422125e-01]\n", + " [-8.10801899e-02 8.89159954e-02 -9.92733574e-01]\n", + " [-6.85666150e-02 5.72465052e-02 -9.96002739e-01]\n", + " [-5.55840351e-02 2.50415293e-02 -9.98139939e-01]\n", + " [-4.22227844e-02 -7.51247592e-03 -9.99079976e-01]\n", + " [-2.85690747e-02 -4.02266580e-02 -9.98782070e-01]\n", + " [-8.67860324e-02 1.35841259e-01 -9.86922153e-01]\n", + " [-5.69044323e-02 1.50773789e-01 -9.86929152e-01]\n", + " [-2.61697043e-02 1.65686799e-01 -9.85831137e-01]\n", + " [ 5.21562100e-03 1.80497412e-01 -9.83561631e-01]\n", + " [ 3.70549677e-02 1.95121348e-01 -9.80078869e-01]\n", + " [ 6.91547601e-02 2.09473752e-01 -9.75365760e-01]\n", + " [-1.26581250e-02 -4.70870244e-02 -9.98810585e-01]\n", + " [ 1.91808766e-02 -3.35321335e-02 -9.99253566e-01]\n", + " [ 5.17056631e-02 -1.96392056e-02 -9.98469241e-01]\n", + " [ 8.47224540e-02 -5.48751752e-03 -9.96389479e-01]\n", + " [ 1.18034844e-01 8.84135713e-03 -9.92970093e-01]\n", + " [ 1.51443110e-01 2.32632814e-02 -9.88192190e-01]\n", + " [ 8.55024457e-02 2.03669482e-01 -9.75298966e-01]\n", + " [ 9.98259044e-02 1.72408740e-01 -9.79954088e-01]\n", + " [ 1.14342592e-01 1.40260717e-01 -9.83490062e-01]\n", + " [ 1.28959222e-01 1.07402481e-01 -9.85816528e-01]\n", + " [ 1.43583595e-01 7.40187583e-02 -9.86866240e-01]\n", + " [ 1.58124463e-01 4.03024508e-02 -9.86596354e-01]\n", + " [-9.70898382e-02 1.30581358e-01 -9.86672221e-01]\n", + " [-9.70898382e-02 1.30581358e-01 -9.86672221e-01]\n", + " [ 1.63220026e-01 2.83597725e-02 -9.86182005e-01]\n", + " [ 1.63220026e-01 2.83597725e-02 -9.86182005e-01]\n", + " [-8.26543843e-02 1.25098932e-01 -9.88695357e-01]\n", + " [-5.25858323e-02 1.39974161e-01 -9.88757789e-01]\n", + " [-2.16774131e-02 1.54852609e-01 -9.87699731e-01]\n", + " [ 9.86981409e-03 1.69651039e-01 -9.85454774e-01]\n", + " [ 4.18600246e-02 1.84284718e-01 -9.81981100e-01]\n", + " [ 7.40996794e-02 1.98668296e-01 -9.77261554e-01]\n", + " [-7.05284592e-02 9.40711213e-02 -9.93064127e-01]\n", + " [-3.99803227e-02 1.08765732e-01 -9.93263102e-01]\n", + " [-8.62667559e-03 1.23527414e-01 -9.92303662e-01]\n", + " [ 2.33350191e-02 1.38272281e-01 -9.90119313e-01]\n", + " [ 5.57103350e-02 1.52914736e-01 -9.86667848e-01]\n", + " [ 8.83052081e-02 1.67368392e-01 -9.81931775e-01]\n", + " [-5.78625679e-02 6.23124867e-02 -9.96377979e-01]\n", + " [-2.69057061e-02 7.67971643e-02 -9.96683640e-01]\n", + " [ 4.82625383e-03 9.14120110e-02 -9.95801462e-01]\n", + " [ 3.71383196e-02 1.06073213e-01 -9.93664540e-01]\n", + " [ 6.98364469e-02 1.20695053e-01 -9.90230062e-01]\n", + " [ 1.02725363e-01 1.35190720e-01 -9.85480070e-01]\n", + " [-4.47524698e-02 3.00076311e-02 -9.98547324e-01]\n", + " [-1.34546903e-02 4.42512411e-02 -9.98929827e-01]\n", + " [ 1.85903944e-02 5.86875459e-02 -9.98103286e-01]\n", + " [ 5.11891194e-02 7.32335369e-02 -9.96000263e-01]\n", + " [ 8.41470684e-02 8.78041134e-02 -9.92577306e-01]\n", + " [ 1.17267449e-01 1.02312665e-01 -9.87816007e-01]\n", + " [-3.12876556e-02 -2.65712495e-03 -9.99506890e-01]\n", + " [ 2.84799344e-04 1.13140541e-02 -9.99935953e-01]\n", + " [ 3.25781396e-02 2.55399959e-02 -9.99142819e-01]\n", + " [ 6.53990869e-02 3.99390785e-02 -9.97059592e-01]\n", + " [ 9.85524362e-02 5.44274301e-02 -9.93642326e-01]\n", + " [ 1.31839918e-01 6.89191984e-02 -9.88872277e-01]\n", + " [-1.75539933e-02 -3.54925764e-02 -9.99215760e-01]\n", + " [ 1.42271779e-02 -2.18240290e-02 -9.99660592e-01]\n", + " [ 4.67032832e-02 -7.83908947e-03 -9.98878047e-01]\n", + " [ 7.96807583e-02 6.38233729e-03 -9.96800001e-01]\n", + " [ 1.12963498e-01 2.07580336e-02 -9.93382279e-01]\n", + " [ 1.46352074e-01 3.52033546e-02 -9.88605985e-01]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:fp_optics: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:cartToSphere: vec: [[-5.44733927e-02 -2.06204619e-01 9.76991456e-01]\n", + " [-6.20489332e-02 -1.79671569e-01 9.81767822e-01]\n", + " [-6.97263830e-02 -1.52464177e-01 9.85846289e-01]\n", + " [-7.74723191e-02 -1.24683034e-01 9.89167418e-01]\n", + " [-8.52538620e-02 -9.64310171e-02 9.91681823e-01]\n", + " [-9.30383672e-02 -6.78145177e-02 9.93350418e-01]\n", + " [-1.00793427e-01 -3.89436111e-02 9.94144899e-01]\n", + " [-1.08487097e-01 -9.93140166e-03 9.94048247e-01]\n", + " [-5.44733927e-02 -2.06204619e-01 9.76991456e-01]\n", + " [-2.65830029e-02 -1.98651955e-01 9.79709521e-01]\n", + " [ 1.21276312e-03 -1.90863561e-01 9.81615826e-01]\n", + " [ 2.88041817e-02 -1.82869560e-01 9.82715138e-01]\n", + " [ 5.60813856e-02 -1.74700297e-01 9.83023237e-01]\n", + " [ 8.29341182e-02 -1.66385803e-01 9.82566892e-01]\n", + " [ 1.09250881e-01 -1.57955292e-01 9.81383906e-01]\n", + " [ 1.34917549e-01 -1.49436839e-01 9.79523295e-01]\n", + " [-1.08487097e-01 -9.93140166e-03 9.94048247e-01]\n", + " [-7.95928751e-02 -2.26455434e-03 9.96824882e-01]\n", + " [-5.07212834e-02 5.38197934e-03 9.98698346e-01]\n", + " [-2.19871393e-02 1.29780613e-02 9.99674015e-01]\n", + " [ 6.49630135e-03 2.04942013e-02 9.99768866e-01]\n", + " [ 3.46181437e-02 2.79017754e-02 9.99011049e-01]\n", + " [ 6.22698686e-02 3.51730447e-02 9.97439382e-01]\n", + " [ 8.93442920e-02 4.22809075e-02 9.95102971e-01]\n", + " [ 1.34917549e-01 -1.49436839e-01 9.79523295e-01]\n", + " [ 1.29319621e-01 -1.23328178e-01 9.83903753e-01]\n", + " [ 1.23361511e-01 -9.66143298e-02 9.87647512e-01]\n", + " [ 1.17079316e-01 -6.94025872e-02 9.90694562e-01]\n", + " [ 1.10506065e-01 -4.17995933e-02 9.92996074e-01]\n", + " [ 1.03672713e-01 -1.39124417e-02 9.94514159e-01]\n", + " [ 9.66090441e-02 1.41507629e-02 9.95221809e-01]\n", + " [ 8.93442920e-02 4.22809075e-02 9.95102971e-01]\n", + " [-5.76658545e-02 -1.94699944e-01 9.79166268e-01]\n", + " [-6.70222927e-02 -1.61714641e-01 9.84558981e-01]\n", + " [-7.64986854e-02 -1.27816296e-01 9.88843236e-01]\n", + " [-8.60343101e-02 -9.31932494e-02 9.91923947e-01]\n", + " [-9.55690761e-02 -5.80413833e-02 9.93729213e-01]\n", + " [-1.05043502e-01 -2.25646552e-02 9.94211597e-01]\n", + " [-4.23337608e-02 -2.02852958e-01 9.78293683e-01]\n", + " [-8.20001795e-03 -1.93433973e-01 9.81079027e-01]\n", + " [ 2.56826248e-02 -1.83690963e-01 9.82648479e-01]\n", + " [ 5.91119545e-02 -1.73679727e-01 9.83026515e-01]\n", + " [ 9.18848983e-02 -1.63455497e-01 9.82262422e-01]\n", + " [ 1.23795186e-01 -1.53071588e-01 9.80430436e-01]\n", + " [-9.58675553e-02 -6.68738704e-03 9.95371634e-01]\n", + " [-6.04556136e-02 2.69942289e-03 9.98167236e-01]\n", + " [-2.51919218e-02 1.20259130e-02 9.99610296e-01]\n", + " [ 9.71431518e-03 2.12375043e-02 9.99727263e-01]\n", + " [ 4.40589496e-02 3.02814986e-02 9.98569897e-01]\n", + " [ 7.76428525e-02 3.91071121e-02 9.96213944e-01]\n", + " [ 1.32436550e-01 -1.38163685e-01 9.81514827e-01]\n", + " [ 1.25327433e-01 -1.05743460e-01 9.86464067e-01]\n", + " [ 1.17713744e-01 -7.25209064e-02 9.90395978e-01]\n", + " [ 1.09657510e-01 -3.86925479e-02 9.93216048e-01]\n", + " [ 1.01215820e-01 -4.45560261e-03 9.94854515e-01]\n", + " [ 9.24432583e-02 2.99904727e-02 9.95266203e-01]\n", + " [-5.44036707e-02 -2.06089755e-01 9.77019577e-01]\n", + " [-5.44036707e-02 -2.06089755e-01 9.77019577e-01]\n", + " [ 8.92779662e-02 4.21607225e-02 9.95114023e-01]\n", + " [ 8.92779662e-02 4.21607225e-02 9.95114023e-01]\n", + " [-4.55478296e-02 -1.91452269e-01 9.80444503e-01]\n", + " [-1.12728655e-02 -1.82017588e-01 9.83230655e-01]\n", + " [ 2.27577930e-02 -1.72281528e-01 9.84784828e-01]\n", + " [ 5.63417573e-02 -1.62300359e-01 9.85131565e-01]\n", + " [ 8.92764526e-02 -1.52129856e-01 9.84320183e-01]\n", + " [ 1.21356850e-01 -1.41823912e-01 9.82424803e-01]\n", + " [-5.47830257e-02 -1.58440201e-01 9.85847616e-01]\n", + " [-2.01510663e-02 -1.48972973e-01 9.88635923e-01]\n", + " [ 1.42549487e-02 -1.39269019e-01 9.90151977e-01]\n", + " [ 4.82316116e-02 -1.29385530e-01 9.90420666e-01]\n", + " [ 8.15771213e-02 -1.19379312e-01 9.89491664e-01]\n", + " [ 1.14089402e-01 -1.09305394e-01 9.87439081e-01]\n", + " [-6.41608335e-02 -1.24521230e-01 9.90140319e-01]\n", + " [-2.92364035e-02 -1.15039949e-01 9.92930533e-01]\n", + " [ 5.47975933e-03 -1.05387901e-01 9.94416091e-01]\n", + " [ 3.97827304e-02 -9.56225575e-02 9.94622371e-01]\n", + " [ 7.34706662e-02 -8.58008937e-02 9.93599652e-01]\n", + " [ 1.06343453e-01 -7.59781803e-02 9.91422406e-01]\n", + " [-7.36211818e-02 -8.98839019e-02 9.93227469e-01]\n", + " [-3.84704546e-02 -8.04078313e-02 9.96019380e-01]\n", + " [-3.51040875e-03 -7.08285537e-02 9.97482327e-01]\n", + " [ 3.10523889e-02 -6.12032085e-02 9.97642179e-01]\n", + " [ 6.50155216e-02 -5.15881382e-02 9.96549871e-01]\n", + " [ 9.81798998e-02 -4.20379604e-02 9.94280402e-01]\n", + " [-8.31046645e-02 -5.47242618e-02 9.95037120e-01]\n", + " [-4.77956982e-02 -4.52729879e-02 9.97830611e-01]\n", + " [-1.26595950e-02 -3.57874734e-02 9.99279236e-01]\n", + " [ 2.20956407e-02 -2.63240171e-02 9.99409240e-01]\n", + " [ 5.62668054e-02 -1.69376858e-02 9.98272088e-01]\n", + " [ 8.96551076e-02 -7.68173509e-03 9.95943248e-01]\n", + " [-9.25523542e-02 -1.92463657e-02 9.95521792e-01]\n", + " [-5.71548241e-02 -9.83936146e-03 9.98316840e-01]\n", + " [-2.19120140e-02 -4.67953375e-04 9.99759793e-01]\n", + " [ 1.29670828e-02 8.81278284e-03 9.99877087e-01]\n", + " [ 4.72785289e-02 1.79494870e-02 9.98720460e-01]\n", + " [ 8.08233423e-02 2.68906985e-02 9.96365635e-01]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:cartToSphere: vec: [[-0.61478308 -0.7075462 0.34845393]\n", + " [-0.60157337 -0.70630907 0.37314471]\n", + " [-0.58761517 -0.70447537 0.3980237 ]\n", + " [-0.57293876 -0.70202171 0.42297364]\n", + " [-0.55757953 -0.69893184 0.44788318]\n", + " [-0.54157937 -0.69519697 0.47264464]\n", + " [-0.52498794 -0.69081624 0.49715247]\n", + " [-0.50786333 -0.68579727 0.52130312]\n", + " [-0.61478308 -0.7075462 0.34845393]\n", + " [-0.5959491 -0.72774031 0.33946827]\n", + " [-0.57662936 -0.74725596 0.33031366]\n", + " [-0.55690507 -0.7660253 0.32103268]\n", + " [-0.53686275 -0.7839887 0.31167308]\n", + " [-0.51659389 -0.80109484 0.30228764]\n", + " [-0.49619463 -0.81730102 0.29293333]\n", + " [-0.4757648 -0.83257408 0.28366927]\n", + " [-0.50786333 -0.68579727 0.52130312]\n", + " [-0.48844991 -0.70668488 0.51187222]\n", + " [-0.46865983 -0.72686974 0.50201429]\n", + " [-0.44857769 -0.74628112 0.4917749 ]\n", + " [-0.42829073 -0.76485932 0.48120399]\n", + " [-0.40788868 -0.78255502 0.47035568]\n", + " [-0.38746485 -0.79932771 0.4592888 ]\n", + " [-0.36711788 -0.81514397 0.44806782]\n", + " [-0.4757648 -0.83257408 0.28366927]\n", + " [-0.46166119 -0.83231106 0.30680162]\n", + " [-0.44701949 -0.83133467 0.33023666]\n", + " [-0.43187336 -0.82961907 0.35386099]\n", + " [-0.41626209 -0.82714721 0.3775624 ]\n", + " [-0.40023076 -0.82391013 0.4012324 ]\n", + " [-0.38383041 -0.81990674 0.42476717]\n", + " [-0.36711788 -0.81514397 0.44806782]\n", + " [-0.60905363 -0.70714877 0.35915775]\n", + " [-0.59235623 -0.70523537 0.38956022]\n", + " [-0.57456425 -0.70240173 0.42012823]\n", + " [-0.5557407 -0.698615 0.45065437]\n", + " [-0.53596282 -0.69385902 0.48094025]\n", + " [-0.51532558 -0.68813571 0.51079232]\n", + " [-0.60659197 -0.71642668 0.34464328]\n", + " [-0.58317176 -0.74073002 0.33351123]\n", + " [-0.55910206 -0.76394589 0.32216697]\n", + " [-0.53453997 -0.78596111 0.31069624]\n", + " [-0.50965389 -0.80668123 0.29919612]\n", + " [-0.48462243 -0.82603151 0.28777256]\n", + " [-0.49950998 -0.69500401 0.51716458]\n", + " [-0.47545304 -0.72014068 0.50531358]\n", + " [-0.45091393 -0.74415029 0.49286608]\n", + " [-0.42605224 -0.76691833 0.47991224]\n", + " [-0.4010333 -0.78835381 0.46655178]\n", + " [-0.37603103 -0.80838513 0.45289529]\n", + " [-0.46975361 -0.83249432 0.29374265]\n", + " [-0.45210272 -0.83169558 0.3223129 ]\n", + " [-0.43367624 -0.82979868 0.3512251 ]\n", + " [-0.41454416 -0.82676862 0.38027198]\n", + " [-0.39478951 -0.82258889 0.40925391]\n", + " [-0.37450865 -0.8172608 0.43798179]\n", + " [-0.61467572 -0.70761308 0.34850751]\n", + " [-0.61467572 -0.70761308 0.34850751]\n", + " [-0.36724482 -0.81510911 0.44802721]\n", + " [-0.36724482 -0.81510911 0.44802721]\n", + " [-0.60093882 -0.71599665 0.35527642]\n", + " [-0.57743424 -0.74039203 0.34407754]\n", + " [-0.55328591 -0.76369224 0.33263923]\n", + " [-0.52865128 -0.785784 0.32104725]\n", + " [-0.50369895 -0.80657273 0.30939909]\n", + " [-0.47860795 -0.82598313 0.29780244]\n", + " [-0.58416368 -0.71416949 0.38563549]\n", + " [-0.56045113 -0.73879725 0.37426349]\n", + " [-0.53611435 -0.76231137 0.36257795]\n", + " [-0.51131191 -0.78459847 0.35066418]\n", + " [-0.48621271 -0.80556438 0.3386196 ]\n", + " [-0.46099604 -0.82513332 0.3265542 ]\n", + " [-0.56630922 -0.71140598 0.41616751]\n", + " [-0.54243515 -0.73622399 0.40464595]\n", + " [-0.51796136 -0.7599149 0.39274086]\n", + " [-0.49304757 -0.78236528 0.38053733]\n", + " [-0.4678626 -0.80348203 0.36813206]\n", + " [-0.44258508 -0.82319019 0.35563516]\n", + " [-0.54743883 -0.70767293 0.44666515]\n", + " [-0.52345108 -0.73263843 0.43501713]\n", + " [-0.49889321 -0.7564689 0.42291887]\n", + " [-0.47392581 -0.77905077 0.41045612]\n", + " [-0.44871716 -0.80029208 0.3977254 ]\n", + " [-0.42344459 -0.82011932 0.38483631]\n", + " [-0.52763033 -0.70295359 0.47693027]\n", + " [-0.50357856 -0.72802262 0.46517922]\n", + " [-0.47899119 -0.75195509 0.45291387]\n", + " [-0.45402897 -0.77463712 0.44022156]\n", + " [-0.42885914 -0.79597759 0.42719961]\n", + " [-0.40365747 -0.81590426 0.41395759]\n", + " [-0.50697928 -0.69724928 0.50676963]\n", + " [-0.48291459 -0.72237647 0.49494014]\n", + " [-0.45835314 -0.74637279 0.48253503]\n", + " [-0.43345497 -0.7691239 0.46964372]\n", + " [-0.40838593 -0.79053889 0.4563652 ]\n", + " [-0.38332033 -0.81054617 0.4428097 ]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:fp_optics: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:fp_optics: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:cartToSphere: vec: [[0.28115301 0.28091696 0.91762664]\n", + " [0.27261689 0.25613045 0.92740349]\n", + " [0.2636905 0.23064076 0.93662808]\n", + " [0.25439749 0.20453865 0.94522265]\n", + " [0.24476418 0.17791698 0.95311911]\n", + " [0.23482014 0.15087242 0.96025883]\n", + " [0.22459864 0.12350629 0.9665928 ]\n", + " [0.21413666 0.09592444 0.9720823 ]\n", + " [0.28115301 0.28091696 0.91762664]\n", + " [0.25458818 0.2917147 0.92200184]\n", + " [0.2278643 0.3021465 0.92562701]\n", + " [0.20108778 0.31217253 0.92849988]\n", + " [0.17436664 0.32175464 0.93062894]\n", + " [0.14781042 0.33085598 0.93203348]\n", + " [0.12153031 0.3394405 0.93274355]\n", + " [0.09563946 0.34747274 0.93279997]\n", + " [0.21413666 0.09592444 0.9720823 ]\n", + " [0.18669131 0.10722868 0.97654921]\n", + " [0.15916516 0.11839788 0.98012672]\n", + " [0.13166912 0.12938936 0.98281312]\n", + " [0.10431322 0.14016288 0.98461826]\n", + " [0.07720607 0.1506807 0.98556306]\n", + " [0.05045536 0.16090727 0.98567901]\n", + " [0.02416932 0.17080854 0.98500776]\n", + " [0.09563946 0.34747274 0.93279997]\n", + " [0.08569331 0.3241203 0.94212668]\n", + " [0.07561108 0.29997883 0.95094462]\n", + " [0.06541879 0.27514355 0.95917486]\n", + " [0.05514529 0.24971057 0.966749 ]\n", + " [0.04482244 0.22377728 0.9736091 ]\n", + " [0.03448479 0.19744286 0.97970767]\n", + " [0.02416932 0.17080854 0.98500776]\n", + " [0.27738983 0.27023984 0.92196817]\n", + " [0.26666173 0.23937755 0.9335898 ]\n", + " [0.25537084 0.20754904 0.94430352]\n", + " [0.24356446 0.17492427 0.95398001]\n", + " [0.23129712 0.14168132 0.96251132]\n", + " [0.21863161 0.10800865 0.9698115 ]\n", + " [0.26956807 0.28558388 0.91966021]\n", + " [0.23688896 0.29857715 0.92451896]\n", + " [0.20407655 0.31098112 0.92824755]\n", + " [0.17132906 0.32272487 0.93085714]\n", + " [0.13884814 0.33374051 0.93238322]\n", + " [0.1068393 0.34396193 0.93288561]\n", + " [0.20222357 0.10096146 0.97412135]\n", + " [0.16851823 0.11473042 0.97899874]\n", + " [0.13480169 0.12825371 0.98253727]\n", + " [0.10127696 0.14145621 0.98475028]\n", + " [0.06814404 0.1542684 0.98567624]\n", + " [0.0356013 0.16662552 0.98537733]\n", + " [0.0914092 0.33736711 0.93692465]\n", + " [0.0791252 0.30820243 0.94802451]\n", + " [0.06666215 0.27794715 0.95828051]\n", + " [0.054072 0.24677785 0.96756236]\n", + " [0.04141333 0.21487386 0.97576337]\n", + " [0.02875081 0.18241861 0.98280051]\n", + " [0.28103405 0.28087101 0.91767714]\n", + " [0.28103405 0.28087101 0.91767714]\n", + " [0.02429348 0.17086675 0.98499461]\n", + " [0.02429348 0.17086675 0.98499461]\n", + " [0.26587901 0.27497291 0.92395792]\n", + " [0.23307629 0.28803666 0.92882201]\n", + " [0.20014578 0.3005307 0.93253577]\n", + " [0.16728609 0.31238441 0.93511034]\n", + " [0.13469887 0.32353035 0.93658119]\n", + " [0.10258932 0.33390287 0.93700817]\n", + " [0.25503823 0.24416199 0.93559629]\n", + " [0.22192686 0.25740932 0.94047271]\n", + " [0.18870503 0.27014299 0.9441468 ]\n", + " [0.15557265 0.2822928 0.94662977]\n", + " [0.12273129 0.29379255 0.94795726]\n", + " [0.09038499 0.30457808 0.94818919]\n", + " [0.24365613 0.21237614 0.94632345]\n", + " [0.21029849 0.22578364 0.95120781]\n", + " [0.17685017 0.23873499 0.95484534]\n", + " [0.14351242 0.25115981 0.95724758]\n", + " [0.11048674 0.26299248 0.95845064]\n", + " [0.07797575 0.27417006 0.95851477]\n", + " [0.2317806 0.17978515 0.95600997]\n", + " [0.19824079 0.19332938 0.96089767]\n", + " [0.16463223 0.20647724 0.96450162]\n", + " [0.13115735 0.21915745 0.96683389]\n", + " [0.09801744 0.23130413 0.96793129]\n", + " [0.06541364 0.24285479 0.96785464]\n", + " [0.21946688 0.14656679 0.9645478 ]\n", + " [0.18581092 0.16022365 0.96943421]\n", + " [0.15210989 0.17354657 0.97300779]\n", + " [0.11856691 0.1864628 0.97528125]\n", + " [0.08538286 0.19890534 0.97629219]\n", + " [0.05275752 0.21081121 0.97610208]\n", + " [0.20677841 0.11290924 0.97185091]\n", + " [0.17307389 0.12665357 0.97673144]\n", + " [0.13934921 0.14012884 0.98027838]\n", + " [0.1058075 0.15326056 0.98250495]\n", + " [0.07264903 0.16597995 0.98344943]\n", + " [0.04007248 0.17822278 0.98317386]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:fp_optics: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:cartToSphere: vec: [[ 0.12966359 0.14423482 -0.98101155]\n", + " [ 0.13995527 0.16857498 -0.97570231]\n", + " [ 0.15021471 0.19336282 -0.96955988]\n", + " [ 0.16040581 0.21847824 -0.96256804]\n", + " [ 0.170492 0.24380546 -0.95472058]\n", + " [ 0.18043618 0.26923276 -0.94602141]\n", + " [ 0.19020086 0.29465214 -0.93648478]\n", + " [ 0.19974858 0.31995908 -0.92613535]\n", + " [ 0.12966359 0.14423482 -0.98101155]\n", + " [ 0.10409328 0.15241401 -0.9828197 ]\n", + " [ 0.07793953 0.16080211 -0.98390452]\n", + " [ 0.05130643 0.16934154 -0.98422106]\n", + " [ 0.0242983 0.17797945 -0.98373416]\n", + " [-0.00297996 0.18666761 -0.98241861]\n", + " [-0.03042262 0.19536203 -0.98025922]\n", + " [-0.05792315 0.20402258 -0.97725109]\n", + " [ 0.19974858 0.31995908 -0.92613535]\n", + " [ 0.17386042 0.33022905 -0.92775068]\n", + " [ 0.14730278 0.34044825 -0.92865326]\n", + " [ 0.12017462 0.35056037 -0.92879787]\n", + " [ 0.09257593 0.36051289 -0.92814878]\n", + " [ 0.06460948 0.37025652 -0.92667995]\n", + " [ 0.03638181 0.37974496 -0.92437553]\n", + " [ 0.00800311 0.38893515 -0.92123037]\n", + " [-0.05792315 0.20402258 -0.97725109]\n", + " [-0.04896945 0.22999761 -0.97195838]\n", + " [-0.03980303 0.25630869 -0.96577511]\n", + " [-0.03045787 0.28284022 -0.95868333]\n", + " [-0.02096848 0.30947953 -0.95067489]\n", + " [-0.01137043 0.33611532 -0.9417522 ]\n", + " [-0.00170057 0.36263701 -0.93192892]\n", + " [ 0.00800311 0.38893515 -0.92123037]\n", + " [ 0.1340659 0.15481244 -0.97880511]\n", + " [ 0.14666169 0.18496175 -0.97174045]\n", + " [ 0.15917339 0.21566362 -0.96340699]\n", + " [ 0.1715339 0.24670308 -0.95378913]\n", + " [ 0.18367491 0.27787445 -0.94289412]\n", + " [ 0.19552742 0.3089803 -0.93075249]\n", + " [ 0.11862819 0.14785433 -0.98186886]\n", + " [ 0.08688298 0.15802822 -0.98360481]\n", + " [ 0.05436474 0.16845801 -0.9842085 ]\n", + " [ 0.02126544 0.17904439 -0.98361115]\n", + " [-0.01222179 0.18969854 -0.98176631]\n", + " [-0.04590196 0.2003411 -0.97865032]\n", + " [ 0.18851757 0.32435268 -0.92696087]\n", + " [ 0.15632598 0.33691188 -0.92846786]\n", + " [ 0.12322719 0.34933856 -0.92885824]\n", + " [ 0.08940474 0.36153452 -0.92806227]\n", + " [ 0.05504795 0.373409 -0.9260321 ]\n", + " [ 0.02035451 0.38487808 -0.92274295]\n", + " [-0.05395324 0.21526923 -0.97506318]\n", + " [-0.04283133 0.24734471 -0.96798041]\n", + " [-0.03142382 0.27980971 -0.95954107]\n", + " [-0.01979399 0.31245572 -0.94972608]\n", + " [-0.00800736 0.34507775 -0.93853995]\n", + " [ 0.00386773 0.37747263 -0.92601266]\n", + " [ 0.12961246 0.14434471 -0.98100215]\n", + " [ 0.12961246 0.14434471 -0.98100215]\n", + " [ 0.00806709 0.38881485 -0.9212806 ]\n", + " [ 0.00806709 0.38881485 -0.9212806 ]\n", + " [ 0.12305199 0.15839246 -0.97967854]\n", + " [ 0.09121734 0.16874714 -0.98142947]\n", + " [ 0.05860135 0.17933004 -0.98204207]\n", + " [ 0.02539564 0.19004218 -0.98144742]\n", + " [-0.00820679 0.20079518 -0.97959887]\n", + " [-0.04201069 0.21150999 -0.97647254]\n", + " [ 0.13557945 0.18873202 -0.97262451]\n", + " [ 0.10353588 0.19957389 -0.97439755]\n", + " [ 0.07068722 0.21056788 -0.97502025]\n", + " [ 0.03722369 0.22161629 -0.97442322]\n", + " [ 0.00333778 0.23263189 -0.97255913]\n", + " [-0.0307744 0.2435361 -0.96940348]\n", + " [ 0.14804608 0.21961056 -0.96428915]\n", + " [ 0.11585957 0.23090369 -0.96605385]\n", + " [ 0.0828439 0.24227695 -0.96666373]\n", + " [ 0.04918752 0.25363376 -0.96604891]\n", + " [ 0.01508231 0.26488738 -0.9641614 ]\n", + " [-0.01927473 0.27595901 -0.96097612]\n", + " [ 0.16038468 0.25081357 -0.95465664]\n", + " [ 0.12812094 0.26252376 -0.95638188]\n", + " [ 0.09500393 0.27424635 -0.95695517]\n", + " [ 0.0612203 0.28588516 -0.95630631]\n", + " [ 0.02696123 0.29735306 -0.95438685]\n", + " [-0.0075756 0.30857026 -0.95117139]\n", + " [ 0.17252661 0.2821357 -0.94373408]\n", + " [ 0.14025051 0.29422966 -0.94538812]\n", + " [ 0.10709754 0.3062722 -0.94590034]\n", + " [ 0.07325273 0.31816669 -0.94520051]\n", + " [ 0.03890647 0.32982479 -0.94324011]\n", + " [ 0.00425677 0.34116512 -0.93999374]\n", + " [ 0.18440243 0.31337947 -0.93155196]\n", + " [ 0.15217771 0.32582346 -0.9331029 ]\n", + " [ 0.11905349 0.33815557 -0.93352937]\n", + " [ 0.08521359 0.35027807 -0.93276145]\n", + " [ 0.05084761 0.36210087 -0.93075103]\n", + " [ 0.01615341 0.37354073 -0.92747312]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:fp_optics: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:cartToSphere: vec: [[ 0.03990243 0.6436912 -0.76424436]\n", + " [ 0.02563413 0.6613307 -0.74965632]\n", + " [ 0.01091134 0.67878404 -0.73425689]\n", + " [-0.00418789 0.69595304 -0.71807508]\n", + " [-0.01959031 0.71274696 -0.70114763]\n", + " [-0.03522624 0.72908187 -0.68351938]\n", + " [-0.05102851 0.7448806 -0.66524355]\n", + " [-0.06693187 0.76007292 -0.64638169]\n", + " [ 0.03990243 0.6436912 -0.76424436]\n", + " [ 0.01861917 0.63139567 -0.77523728]\n", + " [-0.00323403 0.61846025 -0.78580943]\n", + " [-0.02555107 0.60490339 -0.79588883]\n", + " [-0.04823073 0.5907512 -0.80541096]\n", + " [-0.07117522 0.57603766 -0.81431855]\n", + " [-0.094289 0.56080459 -0.82256173]\n", + " [-0.11747827 0.54510147 -0.83009833]\n", + " [-0.06693187 0.76007292 -0.64638169]\n", + " [-0.09011026 0.74859334 -0.65687758]\n", + " [-0.11369337 0.73627895 -0.66705856]\n", + " [-0.13758241 0.72314527 -0.67685449]\n", + " [-0.16167947 0.70921564 -0.68620181]\n", + " [-0.18588642 0.69452205 -0.69504342]\n", + " [-0.21010466 0.67910564 -0.70332891]\n", + " [-0.2342358 0.66301671 -0.71101508]\n", + " [-0.11747827 0.54510147 -0.83009833]\n", + " [-0.13384422 0.56270873 -0.81574788]\n", + " [-0.15043392 0.58021033 -0.80045338]\n", + " [-0.16717489 0.5975119 -0.78423981]\n", + " [-0.1839959 0.61452457 -0.76714084]\n", + " [-0.2008263 0.6311644 -0.74919977]\n", + " [-0.21759597 0.64735271 -0.73047003]\n", + " [-0.2342358 0.66301671 -0.71101508]\n", + " [ 0.03367022 0.6513576 -0.75802348]\n", + " [ 0.01586557 0.6728647 -0.73959541]\n", + " [-0.00254343 0.69399382 -0.71997647]\n", + " [-0.02142 0.71457481 -0.69923102]\n", + " [-0.04063575 0.73445319 -0.67744169]\n", + " [-0.06006783 0.75348974 -0.65470991]\n", + " [ 0.03065143 0.63847054 -0.76903567]\n", + " [ 0.00416801 0.62296923 -0.78223523]\n", + " [-0.02306532 0.60652411 -0.79473045]\n", + " [-0.0508603 0.58918004 -0.80639948]\n", + " [-0.07903673 0.57099956 -0.81713689]\n", + " [-0.10741948 0.55206288 -0.82685406]\n", + " [-0.07692684 0.75512008 -0.65105755]\n", + " [-0.10561846 0.74048719 -0.66371941]\n", + " [-0.13481974 0.72461511 -0.67583769]\n", + " [-0.16435017 0.70754348 -0.68729269]\n", + " [-0.19402905 0.68933128 -0.69797931]\n", + " [-0.22367493 0.67005806 -0.70780769]\n", + " [-0.12450199 0.55283963 -0.82393422]\n", + " [-0.14471901 0.57436076 -0.80570846]\n", + " [-0.16520005 0.59562868 -0.78608868]\n", + " [-0.18581353 0.61647752 -0.76513319]\n", + " [-0.20642936 0.63675281 -0.74292178]\n", + " [-0.22691887 0.6563121 -0.71955699]\n", + " [ 0.03978282 0.64371078 -0.7642341 ]\n", + " [ 0.03978282 0.64371078 -0.7642341 ]\n", + " [-0.23409693 0.66302021 -0.71105754]\n", + " [-0.23409693 0.66302021 -0.71105754]\n", + " [ 0.02446412 0.64613837 -0.7628281 ]\n", + " [-0.0022175 0.63068049 -0.77603943]\n", + " [-0.02963057 0.61425494 -0.78855114]\n", + " [-0.05758833 0.59690659 -0.80024128]\n", + " [-0.08591141 0.57869812 -0.81100414]\n", + " [-0.1144248 0.55971 -0.82075068]\n", + " [ 0.00646541 0.66770636 -0.74439668]\n", + " [-0.02073045 0.65237819 -0.75761002]\n", + " [-0.04860917 0.63601881 -0.77014104]\n", + " [-0.07698764 0.61867281 -0.78186754]\n", + " [-0.10568799 0.60040289 -0.79268305]\n", + " [-0.13453485 0.58129007 -0.8024975 ]\n", + " [-0.01211292 0.68889879 -0.72475632]\n", + " [-0.03975668 0.67371148 -0.73792428]\n", + " [-0.06803941 0.65743534 -0.75043282]\n", + " [-0.09678036 0.64011413 -0.76215973]\n", + " [-0.12580202 0.62181016 -0.77299805]\n", + " [-0.15492787 0.60260459 -0.78285699]\n", + " [-0.03113554 0.70954581 -0.70397111]\n", + " [-0.05916418 0.69451116 -0.71704522]\n", + " [-0.08779123 0.67833587 -0.72948828]\n", + " [-0.11683705 0.66106256 -0.74117838]\n", + " [-0.1461236 0.64275272 -0.75200853]\n", + " [-0.1754728 0.62348734 -0.76188768]\n", + " [-0.05047488 0.7294928 -0.68212355]\n", + " [-0.07882692 0.71462215 -0.69505503]\n", + " [-0.1077389 0.69856493 -0.70738912]\n", + " [-0.13703126 0.68136244 -0.71900463]\n", + " [-0.16652491 0.66307513 -0.72979506]\n", + " [-0.19604015 0.64378352 -0.73966955]\n", + " [-0.07000836 0.74860015 -0.65931528]\n", + " [-0.09862236 0.73390365 -0.67205584]\n", + " [-0.12775899 0.71798062 -0.68423787]\n", + " [-0.1572381 0.70087109 -0.69574125]\n", + " [-0.18687937 0.68263442 -0.70646044]\n", + " [-0.21650174 0.66335044 -0.71630524]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:fp_optics: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:cartToSphere: vec: [[-0.03172317 0.60641936 0.79451192]\n", + " [-0.03101481 0.62766558 0.77786503]\n", + " [-0.03012125 0.64887714 0.76029676]\n", + " [-0.02905406 0.66994109 0.74184553]\n", + " [-0.02782601 0.69074867 0.72255934]\n", + " [-0.02644926 0.71119738 0.70249464]\n", + " [-0.02493457 0.73119192 0.68171595]\n", + " [-0.02329112 0.75064452 0.66029564]\n", + " [-0.03172317 0.60641936 0.79451192]\n", + " [-0.00499677 0.60401437 0.79695776]\n", + " [ 0.02231807 0.6012214 0.79877077]\n", + " [ 0.05010881 0.59801832 0.79991449]\n", + " [ 0.07825982 0.59438865 0.80036088]\n", + " [ 0.10665509 0.59032296 0.80008968]\n", + " [ 0.13517936 0.58581964 0.79908816]\n", + " [ 0.16371853 0.580885 0.79735115]\n", + " [-0.02329112 0.75064452 0.66029564]\n", + " [ 0.00457432 0.74970883 0.66175202]\n", + " [ 0.0330085 0.74815365 0.66270397]\n", + " [ 0.06189467 0.74595135 0.66311811]\n", + " [ 0.09111883 0.74308206 0.66296788]\n", + " [ 0.1205673 0.73953378 0.66223358]\n", + " [ 0.15012446 0.73530292 0.66090261]\n", + " [ 0.179672 0.7303948 0.65896996]\n", + " [ 0.16371853 0.580885 0.79735115]\n", + " [ 0.16630883 0.60293477 0.78026344]\n", + " [ 0.1688222 0.6249352 0.76220408]\n", + " [ 0.17124047 0.64677063 0.74321225]\n", + " [ 0.1735477 0.66833337 0.72333374]\n", + " [ 0.17572989 0.68952191 0.70262262]\n", + " [ 0.17777481 0.71023961 0.68114302]\n", + " [ 0.179672 0.7303948 0.65896996]\n", + " [-0.03134701 0.61567253 0.78737837]\n", + " [-0.03035192 0.64170398 0.76635159]\n", + " [-0.02909005 0.66757081 0.74397781]\n", + " [-0.02758457 0.69307087 0.72034149]\n", + " [-0.02585779 0.71801558 0.69554655]\n", + " [-0.02392884 0.74223259 0.66971501]\n", + " [-0.02014713 0.60548985 0.79559798]\n", + " [ 0.01301957 0.6022853 0.79817474]\n", + " [ 0.04695886 0.5984753 0.79976382]\n", + " [ 0.08145893 0.59402703 0.80031015]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + " [ 0.11630632 0.58892323 0.79977639]\n", + " [ 0.15128933 0.58316421 0.79814224]\n", + " [-0.01122511 0.75024487 0.66106478]\n", + " [ 0.02332413 0.7486847 0.66251581]\n", + " [ 0.05861128 0.74616586 0.66317511]\n", + " [ 0.09442539 0.74264853 0.66299096]\n", + " [ 0.1305569 0.73811071 0.6619271 ]\n", + " [ 0.1667918 0.73254947 0.65996346]\n", + " [ 0.16475823 0.59051471 0.79002981]\n", + " [ 0.16788261 0.61752095 0.76842912]\n", + " [ 0.17087333 0.64433717 0.74540721]\n", + " [ 0.1737001 0.67076189 0.7210456 ]\n", + " [ 0.17633715 0.69660807 0.69544403]\n", + " [ 0.17876271 0.72169979 0.66872513]\n", + " [-0.0316308 0.60648436 0.79446599]\n", + " [-0.0316308 0.60648436 0.79446599]\n", + " [ 0.17956488 0.73034486 0.6590545 ]\n", + " [ 0.17956488 0.73034486 0.6590545 ]\n", + " [-0.01980976 0.61472446 0.78849313]\n", + " [ 0.01350998 0.61163525 0.79102452]\n", + " [ 0.04760126 0.60791458 0.79257428]\n", + " [ 0.08225042 0.60352818 0.79308802]\n", + " [ 0.11724348 0.59845835 DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + " 0.79252859]\n", + " [ 0.15236843 0.59270545 0.79087554]\n", + " [-0.01867736 0.64088529 0.76740941]\n", + " [ 0.01503111 0.63811601 0.7697935 ]\n", + " [ 0.04950514 0.63464235 0.77121873]\n", + " [ 0.08452861 0.63042774 0.77163189]\n", + " [ 0.11988741 0.62545406 0.77099561]\n", + " [ 0.15536923 0.61972211 0.76928858]\n", + " [-0.01730218 0.66687603 0.74496778]\n", + " [ 0.01672364 0.66441239 0.74717903]\n", + " [ 0.05150732 0.66117532 0.74846121]\n", + " [ 0.08683307 0.65712736 0.74876141]\n", + " [ 0.122488 0.65225034 0.74804156]\n", + " [ 0.15825956 0.64654536 0.74627944]\n", + " [-0.01570916 0.69249314 0.72125341]\n", + " [ 0.01855982 0.69031892 0.72326711]\n", + " [ 0.05357933 0.68730818 0.72438714]\n", + " [ 0.08913531 0.6834229 0.72456058]\n", + " [ 0.12501638 0.67864446 0.72374899]\n", + " [ 0.16100959 0.67297351 0.72192975]\n", + " [-0.01392117 0.71754753 0.69637041]\n", + " [ 0.02051663 0.71564612 0.69816166]\n", + " [ 0.0556988 0.71285179 0.69909DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "94 ]\n", + " [ 0.09141314 0.70912588 0.69913098]\n", + " [ 0.12744949 0.70444858 0.69821833]\n", + " [ 0.16359435 0.69881931 0.69633933]\n", + " [-0.01195728 0.74186653 0.67044095]\n", + " [ 0.02257577 0.74022059 0.67198498]\n", + " [ 0.05784824 0.73763201 0.6727203 ]\n", + " [ 0.09364904 0.73406127 0.6725949 ]\n", + " [ 0.12976859 0.72948697 0.67157194]\n", + " [ 0.16599296 0.72390681 0.6696307 ]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:fp_optics: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:cartToSphere: vec: [[ 7.36566904e-01 6.54465392e-01 1.70716859e-01]\n", + " [ 7.34101324e-01 6.63528820e-01 1.44307834e-01]\n", + " [ 7.30992323e-01 6.72235628e-01 1.17258193e-01]\n", + " [ 7.27220472e-01 6.80521447e-01 8.96713182e-02]\n", + " [ 7.22773677e-01 6.88329498e-01 6.16499279e-02]\n", + " [ 7.17647575e-01 6.95609925e-01 3.32985053e-02]\n", + " [ 7.11846171e-01 7.02319514e-01 4.72534772e-03]\n", + " [ 7.05382388e-01 7.08422014e-01 -2.39569680e-02]\n", + " [ 7.36566904e-01 6.54465392e-01 1.70716859e-01]\n", + " [ 7.55760398e-01 6.34494360e-01 1.61997310e-01]\n", + " [ 7.74250818e-01 6.14087229e-01 1.53076930e-01]\n", + " [ 7.91974530e-01 5.93332393e-01 1.43989634e-01]\n", + " [ 8.08876319e-01 5.72325399e-01 1.34769200e-01]\n", + " [ 8.24909470e-01 5.51168644e-01 1.25449159e-01]\n", + " [ 8.40036074e-01 5.29970528e-01 1.16063064e-01]\n", + " [ 8.54227926e-01 5.08843253e-01 1.06645178e-01]\n", + " [ 7.05382388e-01 7.08422014e-01 -2.39569680e-02]\n", + " [ 7.25241493e-01 6.87711226e-01 -3.28336158e-02]\n", + " [ 7.44384411e-01 6.66450887e-01 -4.16540903e-02]\n", + " [ 7.62744795e-01 6.44733931e-01 -5.03838900e-02]\n", + " [ 7.80267359e-01 6.22658017e-01 -5.89901852e-02]\n", + " [ 7.96907259e-01 6.00325268e-01 -6.74417811e-02]\n", + " [ 8.12628556e-01 5.77843441e-01 -7.57085695e-02]\n", + " [ 8.27402631e-01 5.55327846e-01 -8.37607903e-02]\n", + " [ 8.54227926e-01 5.08843253e-01 1.06645178e-01]\n", + " [ 8.52709261e-01 5.16131306e-01 8.05939931e-02]\n", + " [ 8.50441081e-01 5.23293138e-01 5.39838906e-02]\n", + " [ 8.47401670e-01 5.30269570e-01 2.69182518e-02]\n", + " [ 8.43578348e-01 5.37005888e-01 -4.96762435e-04]\n", + " [ 8.38966806e-01 5.43453830e-01 -2.81537490e-02]\n", + " [ 8.33570880e-01 5.49572369e-01 -5.59446046e-02]\n", + " [ 8.27402631e-01 5.55327846e-01 -8.37607903e-02]\n", + " [ 7.35636485e-01 6.58388749e-01 1.59258335e-01]\n", + " [ 7.32185457e-01 6.69264949e-01 1.26447162e-01]\n", + " [ 7.27747756e-01 6.79540794e-01 9.27766869e-02]\n", + " [ 7.22298064e-01 6.89108638e-01 5.84362156e-02]\n", + " [ 7.15828422e-01 6.97876668e-01 2.36183465e-02]\n", + " [ 7.08349892e-01 7.05768190e-01 -1.14757131e-02]\n", + " [ 7.45010270e-01 6.45848166e-01 1.66852760e-01]\n", + " [ 7.68070146e-01 6.21066793e-01 1.56026564e-01]\n", + " [ 7.90009765e-01 5.95717313e-01 1.44932587e-01]\n", + " [ 8.10723974e-01 5.69972662e-01 1.33633089e-01]\n", + " [ 8.30126803e-01 5.44021265e-01 1.22189827e-01]\n", + " [ 8.48152416e-01 5.18064455e-01 1.10664813e-01]\n", + " [ 7.14147596e-01 6.99445532e-01 -2.77337327e-02]\n", + " [ 7.38014146e-01 6.73681469e-01 -3.85797622e-02]\n", + " [ 7.60737786e-01 6.47183764e-01 -4.93071643e-02]\n", + " [ 7.82212123e-01 6.20130309e-01 -5.98547781e-02]\n", + " [ 8.02354413e-01 5.92709249e-01 -7.01651023e-02]\n", + " [ 8.21101581e-01 5.65122022e-01 -8.01828751e-02]\n", + " [ 8.53609083e-01 5.12105009e-01 9.53938787e-02]\n", + " [ 8.51246610e-01 5.20961237e-01 6.30761304e-02]\n", + " [ 8.47735739e-01 5.29568552e-01 3.00210743e-02]\n", + " [ 8.43049426e-01 5.37824202e-01 -3.57686468e-03]\n", + " [ 8.37179712e-01 5.45639422e-01 -3.75200156e-02]\n", + " [ 8.30137068e-01 5.52941746e-01 -7.16091660e-02]\n", + " [ 7.36626297e-01 6.54429455e-01 1.70598322e-01]\n", + " [ 7.36626297e-01 6.54429455e-01 1.70598322e-01]\n", + " [ 8.27376139e-01 5.55385729e-01 -8.36386099e-02]\n", + " [ 8.27376139e-01 5.55385729e-01 -8.36386099e-02]\n", + " [ 7.44053121e-01 6.49772834e-01 1.55499892e-01]\n", + " [ 7.67201035e-01 6.24882526e-01 1.44652689e-01]\n", + " [ 7.89221834e-01 5.99408364e-01 1.33560888e-01]\n", + " [ 8.10010282e-01 5.73523521e-01 1.22287013e-01]\n", + " [ 8.29480303e-01 5.47416880e-01 1.10892678e-01]\n", + " [ 8.47565480e-01 5.21291312e-01 9.94390509e-02]\n", + " [ 7.40684320e-01 6.60561905e-01 1.22656872e-01]\n", + " [ 7.64054870e-01 6.35396822e-01 1.11763296e-01]\n", + " [ 7.86282365e-01 6.09607557e-01 1.00690957e-01]\n", + " [ 8.07261555e-01 5.83367725e-01 8.95035106e-02]\n", + " [ 8.26906774e-01 5.56866339e-01 7.82628128e-02]\n", + " [ 8.45151108e-01 5.30308175e-01 6.70286801e-02]\n", + " [ 7.36313533e-01 6.70766897e-01 8.89615136e-02]\n", + " [ 7.59867022e-01 6.45377102e-01 7.80416871e-02]\n", + " [ 7.82266731e-01 6.19329066e-01 6.70094751e-02]\n", + " [ 8.03407456e-01 5.92797053e-01 5.59295337e-02]\n", + " [ 8.23204583e-01 5.65969459e-01 4.48640828e-02]\n", + " [ 8.41591979e-01 5.39050651e-01 3.38723419e-02]\n", + " [ 7.30915134e-01 6.80280487e-01 5.46033573e-02]\n", + " [ 7.54611321e-01 6.54716671e-01 4.36787672e-02]\n", + " [ 7.77148779e-01 6.28466287e-01 3.27093396e-02]\n", + " [ 7.98422192e-01 6.01704670e-01 2.17599135e-02]\n", + " [ 8.18348079e-01 5.74619681e-01 1.08923731e-02]\n", + " [ 8.36861661e-01 5.47414407e-01 1.65252811e-04]\n", + " [ 7.24480615e-01 6.89011448e-01 1.97753022e-02]\n", + " [ 7.48278162e-01 6.63325818e-01 8.86860019e-03]\n", + " [ 7.70918670e-01 6.36930411e-01 -2.01398447e-03]\n", + " [ 7.92296480e-01 6.10001827e-01 -1.28085502e-02]\n", + " [ 8.12328868e-01 5.82727804e-01 -2.34545729e-02]\n", + " [ 8.30952256e-01 5.55310272e-01 -3.38946900e-02]\n", + " [ 7.17020447e-01 6.96883734e-01 -1.53212076e-02]\n", + " [ 7.40876685e-01 6.71130372e-01 -2.61870433e-02]\n", + " [ 7.63584969e-01 6.44648768e-01 -3.69589155e-02]\n", + " [ 7.85039111e-01 6.17616571e-01 -4.75748398e-02]\n", + " [ 8.05156498e-01 5.90221774e-01 -5.79764629e-02]\n", + " [ 8.23874079e-01 5.62665804e-01 -6.81079691e-02]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:cartToSphere: vec: [[-4.94950758e-01 1.05307917e-02 8.68857209e-01]\n", + " [-4.73013486e-01 5.92731898e-04 8.81054987e-01]\n", + " [-4.50314484e-01 -9.70055730e-03 8.92817319e-01]\n", + " [-4.26927317e-01 -2.02881988e-02 9.04058325e-01]\n", + " [-4.02929382e-01 -3.11141860e-02 9.14702039e-01]\n", + " [-3.78402693e-01 -4.21262663e-02 9.24681988e-01]\n", + " [-3.53434293e-01 -5.32749876e-02 9.33941099e-01]\n", + " [-3.28116240e-01 -6.45130879e-02 9.42431851e-01]\n", + " [-4.94950758e-01 1.05307917e-02 8.68857209e-01]\n", + " [-5.05659604e-01 -1.33785957e-02 8.62629340e-01]\n", + " [-5.16100576e-01 -3.78673953e-02 8.55690514e-01]\n", + " [-5.26218838e-01 -6.28191911e-02 8.48025639e-01]\n", + " [-5.35963009e-01 -8.81224948e-02 8.39629727e-01]\n", + " [-5.45285176e-01 -1.13669213e-01 8.30507909e-01]\n", + " [-5.54141209e-01 -1.39353557e-01 8.20675397e-01]\n", + " [-5.62491231e-01 -1.65071550e-01 8.10157391e-01]\n", + " [-3.28116240e-01 -6.45130879e-02 9.42431851e-01]\n", + " [-3.37756381e-01 -9.01103770e-02 9.36910213e-01]\n", + " [-3.47321075e-01 -1.16162673e-01 9.30523672e-01]\n", + " [-3.56756937e-01 -1.42561296e-01 9.23255525e-01]\n", + " [-3.66013944e-01 -1.69198449e-01 9.15098726e-01]\n", + " [-3.75045130e-01 -1.95965944e-01 9.06056565e-01]\n", + " [-3.83806683e-01 -2.22755017e-01 8.96143199e-01]\n", + " [-3.92258326e-01 -2.49456951e-01 8.85383892e-01]\n", + " [-5.62491231e-01 -1.65071550e-01 8.10157391e-01]\n", + " [-5.40419811e-01 -1.77099533e-01 8.22546159e-01]\n", + " [-5.17475517e-01 -1.89228125e-01 8.34512915e-01]\n", + " [-4.93726000e-01 -2.01400806e-01 8.45974203e-01]\n", + " [-4.69244944e-01 -2.13562814e-01 8.56854776e-01]\n", + " [-4.44113226e-01 -2.25660670e-01 8.67087484e-01]\n", + " [-4.18419209e-01 -2.37642208e-01 8.76613681e-01]\n", + " [-3.92258326e-01 -2.49456951e-01 8.85383892e-01]\n", + " [-4.85521131e-01 6.16435542e-03 8.74203199e-01]\n", + " [-4.58112941e-01 -6.26412831e-03 8.88871922e-01]\n", + " [-4.29633212e-01 -1.91649138e-02 9.02800094e-01]\n", + " [-4.00222787e-01 -3.24329301e-02 9.15843778e-01]\n", + " [-3.70032698e-01 -4.59718774e-02 9.27880590e-01]\n", + " [-3.39225285e-01 -5.96916419e-02 9.38809413e-01]\n", + " [-4.99575357e-01 1.51270408e-04 8.66270419e-01]\n", + " [-5.12526780e-01 -2.95583498e-02 8.58162341e-01]\n", + " [-5.25021081e-01 -6.00218832e-02 8.48970104e-01]\n", + " [-5.36962249e-01 -9.10321241e-02 8.38680330e-01]\n", + " [-5.48262111e-01 -1.22389956e-01 8.27302458e-01]\n", + " [-5.58841163e-01 -1.53901379e-01 8.14868652e-01]\n", + " [-3.32412490e-01 -7.55718996e-02 9.40101497e-01]\n", + " [-3.44184525e-01 -1.07263364e-01 9.32754836e-01]\n", + " [-3.55789628e-01 -1.39530156e-01 9.24091487e-01]\n", + " [-3.67134342e-01 -1.72173564e-01 9.14094437e-01]\n", + " [-3.78132210e-01 -2.04994403e-01 9.02769808e-01]\n", + " [-3.88704019e-01 -2.37792412e-01 8.90148277e-01]\n", + " [-5.52951723e-01 -1.70211460e-01 8.15642354e-01]\n", + " [-5.25305461e-01 -1.85026985e-01 8.30553543e-01]\n", + " [-4.96414805e-01 -1.99937399e-01 8.44746931e-01]\n", + " [-4.66412814e-01 -2.14841207e-01 8.58080616e-01]\n", + " [-4.35448411e-01 -2.29639968e-01 8.70431024e-01]\n", + " [-4.03687250e-01 -2.44238323e-01 8.81693964e-01]\n", + " [-4.94914130e-01 1.04168448e-02 8.68879447e-01]\n", + " [-4.94914130e-01 1.04168448e-02 8.68879447e-01]\n", + " [-3.92320138e-01 -2.49325848e-01 8.85393433e-01]\n", + " [-3.92320138e-01 -2.49325848e-01 8.85393433e-01]\n", + " [-4.90165101e-01 -4.17231213e-03 8.71619622e-01]\n", + " [-5.03078299e-01 -3.40724821e-02 8.63568927e-01]\n", + " [-5.15550005e-01 -6.47119461e-02 8.54412404e-01]\n", + " [-5.27483862e-01 -9.58849713e-02 8.44136747e-01]\n", + " [-5.38791240e-01 -1.27393184e-01 8.32751450e-01]\n", + " [-5.49392158e-01 -1.59042610e-01 8.20288794e-01]\n", + " [-4.62699438e-01 -1.67831065e-02 8.86356337e-01]\n", + " [-4.75481059e-01 -4.71715834e-02 8.78460360e-01]\n", + " [-4.87867076e-01 -7.82616465e-02 8.69402571e-01]\n", + " [-4.99760417e-01 -1.09851131e-01 8.59169514e-01]\n", + " [-5.11071486e-01 -1.41743013e-01 8.47770520e-01]\n", + " [-5.21719248e-01 -1.73742761e-01 8.35237977e-01]\n", + " [-4.34148879e-01 -2.98391524e-02 9.00346809e-01]\n", + " [-4.46762481e-01 -6.06429229e-02 8.92594937e-01]\n", + " [-4.59028759e-01 -9.21152204e-02 8.83633060e-01]\n", + " [-4.70850505e-01 -1.24056290e-01 8.73447101e-01]\n", + " [-4.82137802e-01 -1.56269427e-01 8.62045826e-01]\n", + " [-4.92809105e-01 -1.88558853e-01 8.49461444e-01]\n", + " [-4.04653655e-01 -4.32366886e-02 9.13447321e-01]\n", + " [-4.17061073e-01 -7.43857499e-02 9.05829355e-01]\n", + " [-4.29171938e-01 -1.06173581e-01 8.96960768e-01]\n", + " [-4.40889571e-01 -1.38401686e-01 8.86826567e-01]\n", + " [-4.52124424e-01 -1.70872926e-01 8.75434720e-01]\n", + " [-4.62795038e-01 -2.03389977e-01 8.62817055e-01]\n", + " [-3.74364637e-01 -5.68802354e-02 9.25535390e-01]\n", + " [-3.86527332e-01 -8.83060695e-02 9.18040663e-01]\n", + " [-3.98446813e-01 -1.20342970e-01 9.09262177e-01]\n", + " [-4.10027522e-01 -1.52792768e-01 8.99183964e-01]\n", + " [-4.21180905e-01 -1.85457495e-01 8.87813135e-01]\n", + " [-4.31826150e-01 -2.18138335e-01 8.75181035e-01]\n", + " [-3.43444445e-01 -7.06799959e-02 9.36509611e-01]\n", + " [-3.55324794e-01 -1.02314291e-01 9.29126513e-01]\n", + " [-3.67017853e-01 -1.34533106e-01 9.20433995e-01]\n", + " [-3.78429585e-01 -1.67137952e-01 9.10415264e-01]\n", + " [-3.89472926e-01 -1.99929942e-01 8.99076670e-01]\n", + " [-4.00068176e-01 -2.32709106e-01 8.86449055e-01]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:fp_optics: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:fp_optics: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:cartToSphere: vec: [[ 0.09106993 0.21889822 -0.97148847]\n", + " [ 0.10275366 0.19379039 -0.97564695]\n", + " [ 0.11458669 0.16802467 -0.9791004 ]\n", + " [ 0.12651737 0.14169532 -0.98179213]\n", + " [ 0.13849491 0.114899 -0.98367544]\n", + " [ 0.15046892 0.08773595 -0.98471392]\n", + " [ 0.16238943 0.06031015 -0.9848819 ]\n", + " [ 0.17420725 0.03272872 -0.98416496]\n", + " [ 0.09106993 0.21889822 -0.97148847]\n", + " [ 0.11728291 0.23011546 -0.96607018]\n", + " [ 0.14335443 0.24101506 -0.95987564]\n", + " [ 0.16918517 0.25155464 -0.95294105]\n", + " [ 0.1946785 0.2616929 -0.94531323]\n", + " [ 0.21974056 0.27138904 -0.93704967]\n", + " [ 0.24427995 0.2806019 -0.92821866]\n", + " [ 0.26820695 0.28928883 -0.91889989]\n", + " [ 0.17420725 0.03272872 -0.98416496]\n", + " [ 0.20125765 0.04447055 -0.97852835]\n", + " [ 0.22804109 0.05613224 -0.97203212]\n", + " [ 0.25445458 0.06766835 -0.96471439]\n", + " [ 0.28039977 0.07903496 -0.95662398]\n", + " [ 0.30578354 0.09018993 -0.94781971]\n", + " [ 0.33051791 0.10109281 -0.93836995]\n", + " [ 0.35451896 0.1117044 -0.92835254]\n", + " [ 0.26820695 0.28928883 -0.91889989]\n", + " [ 0.28101172 0.2656804 -0.92219647]\n", + " [ 0.29374626 0.24131747 -0.92492109]\n", + " [ 0.3063567 0.21630115 -0.92701639]\n", + " [ 0.31879023 0.19073124 -0.92843653]\n", + " [ 0.33099507 0.1647076 -0.92914674]\n", + " [ 0.34292083 0.13833118 -0.92912313]\n", + " [ 0.35451896 0.1117044 -0.92835254]\n", + " [ 0.09623248 0.20807701 -0.97336698]\n", + " [ 0.11065994 0.17685096 -0.97799699]\n", + " [ 0.12526004 0.14473016 -0.98151062]\n", + " [ 0.13993895 0.11189145 -0.98381777]\n", + " [ 0.1546039 0.07851938 -0.98485143]\n", + " [ 0.16916319 0.04480672 -0.98456903]\n", + " [ 0.10254982 0.2237408 -0.96923866]\n", + " [ 0.13459487 0.23728101 -0.96207169]\n", + " [ 0.16632838 0.250302 -0.95377344]\n", + " [ 0.1975713 0.2627273 -0.94442572]\n", + " [ 0.22815079 0.27448174 -0.93413435]\n", + " [ 0.25789937 0.28548895 -0.92302978]\n", + " [ 0.18598721 0.03794954 -0.98181902]\n", + " [ 0.21897385 0.05229203 -0.97432849]\n", + " [ 0.25145679 0.06646866 -0.96558345]\n", + " [ 0.28325299 0.08039793 -0.95566936]\n", + " [ 0.31419101 0.09400225 -0.94469444]\n", + " [ 0.34411064 0.10720773 -0.93278849]\n", + " [ 0.27371419 0.27906555 -0.92043629]\n", + " [ 0.289367 0.24960935 -0.9241006 ]\n", + " [ 0.30486083 0.21912062 -0.92684736]\n", + " [ 0.32009801 0.18778351 -0.92858743]\n", + " [ 0.33498327 0.15578201 -0.92925679]\n", + " [ 0.34942456 0.12330257 -0.92881589]\n", + " [ 0.09119934 0.21885244 -0.97148664]\n", + " [ 0.09119934 0.21885244 -0.97148664]\n", + " [ 0.35439917 0.11176002 -0.92839158]\n", + " [ 0.35439917 0.11176002 -0.92839158]\n", + " [ 0.10762672 0.21298637 -0.97110931]\n", + " [ 0.13978741 0.22659999 -0.96390452]\n", + " [ 0.17162366 0.23971493 -0.95555328]\n", + " [ 0.20295604 0.25225498 -0.94613755]\n", + " [ 0.23361176 0.26414571 -0.93576311]\n", + " [ 0.26342388 0.27531194 -0.92456 ]\n", + " [ 0.12216408 0.18181375 -0.97571497]\n", + " [ 0.15461277 0.19561859 -0.96841533]\n", + " [ 0.18670095 0.20898326 -0.95993164]\n", + " [ 0.21824795 0.22183169 -0.95034653]\n", + " [ 0.24908102 0.23409075 -0.93976602]\n", + " [ 0.27903476 0.24568797 -0.92831946]\n", + " [ 0.13685284 0.14973728 -0.97920889]\n", + " [ 0.16952987 0.16370875 -0.97183284]\n", + " [ 0.20181107 0.17729988 -0.96324298]\n", + " [ 0.23351459 0.19043397 -0.95352286]\n", + " [ 0.26446773 0.20303803 -0.94277907]\n", + " [ 0.29450648 0.21504103 -0.93114086]\n", + " [ 0.15159856 0.11693358 -0.9815011 ]\n", + " [ 0.18444255 0.13104669 -0.97406761]\n", + " [ 0.2168565 0.14484126 -0.9653985 ]\n", + " [ 0.24865764 0.15823935 -0.95557819]\n", + " [ 0.2796734 0.17116721 -0.94471402]\n", + " [ 0.30974107 0.18355393 -0.93293538]\n", + " [ 0.16630784 0.0835869 -0.98252477]\n", + " [ 0.19925584 0.0978158 -0.97505342]\n", + " [ 0.23174111 0.11178995 -0.96633279]\n", + " [ 0.26358042 0.12542993 -0.95644796]\n", + " [ 0.2946015 0.13866054 -0.94550685]\n", + " [ 0.32464285 0.15141005 -0.93363913]\n", + " [ 0.18088849 0.04988977 -0.98223743]\n", + " [ 0.21387643 0.06420751 -0.97474831]\n", + " [ 0.24637095 0.078336 -0.96600457]\n", + " [ 0.27818886 0.09219425 -0.95609161]\n", + " [ 0.30915847 0.1057053 -0.94511768]\n", + " [ 0.33911927 0.1187959 -0.93321255]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:fp_optics: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:cartToSphere: vec: [[ 0.06312308 -0.58525968 0.80838517]\n", + " [ 0.04361683 -0.60085975 0.7981636 ]\n", + " [ 0.02356115 -0.6162456 0.78720152]\n", + " [ 0.00305281 -0.63133396 0.77550507]\n", + " [-0.01781512 -0.64604731 0.76308944]\n", + " [-0.0389525 -0.66031369 0.74997903]\n", + " [-0.06027136 -0.67406668 0.73620749]\n", + " [-0.08168532 -0.68724575 0.72181769]\n", + " [ 0.06312308 -0.58525968 0.80838517]\n", + " [ 0.04661582 -0.56844071 0.82140254]\n", + " [ 0.02959295 -0.55091501 0.83403652]\n", + " [ 0.0121402 -0.53272556 0.84620098]\n", + " [-0.00566061 -0.51392145 0.85781857]\n", + " [-0.02373079 -0.4945583 0.86882043]\n", + " [-0.04199393 -0.47469844 0.87914612]\n", + " [-0.06037529 -0.45441084 0.88874384]\n", + " [-0.08168532 -0.68724575 0.72181769]\n", + " [-0.10025629 -0.67090896 0.73473114]\n", + " [-0.11913058 -0.65369936 0.74731857]\n", + " [-0.13822776 -0.63565563 0.75949655]\n", + " [-0.15746893 -0.61682293 0.77118935]\n", + " [-0.17677544 -0.59725432 0.7823284 ]\n", + " [-0.19606834 -0.57701166 0.79285229]\n", + " [-0.21526869 -0.5561657 0.80270736]\n", + " [-0.06037529 -0.45441084 0.88874384]\n", + " [-0.08186305 -0.4695753 0.87908901]\n", + " [-0.10371479 -0.48465659 0.86853396]\n", + " [-0.12583966 -0.49957453 0.85708207]\n", + " [-0.14814786 -0.51425373 0.84474571]\n", + " [-0.17054934 -0.52862279 0.83154728]\n", + " [-0.19295332 -0.54261436 0.81751983]\n", + " [-0.21526869 -0.5561657 0.80270736]\n", + " [ 0.05463613 -0.59202592 0.8040648 ]\n", + " [ 0.03034568 -0.61101234 0.79103923]\n", + " [ 0.0053267 -0.62959366 0.77690633]\n", + " [-0.02024798 -0.64762482 0.7616903 ]\n", + " [-0.04621235 -0.66497331 0.74543606]\n", + " [-0.0724051 -0.68151931 0.72820941]\n", + " [ 0.05592865 -0.57806961 0.81406849]\n", + " [ 0.03533792 -0.55697592 0.82977651]\n", + " [ 0.01405851 -0.53486259 0.84482209]\n", + " [-0.00775736 -0.51181743 0.85905922]\n", + " [-0.02996471 -0.48794285 0.8723611 ]\n", + " [-0.05242361 -0.46335638 0.88462005]\n", + " [-0.08966617 -0.68018822 0.72753279]\n", + " [-0.11264028 -0.65957384 0.74315174]\n", + " [-0.13598995 -0.63768634 0.75819711]\n", + " [-0.15956939 -0.6146061 0.77252634]\n", + " [-0.18323375 -0.59043092 0.78601318]\n", + " [-0.20683766 -0.56527839 0.79854776]\n", + " [-0.06963012 -0.46109775 0.8846132 ]\n", + " [-0.09622123 -0.47963844 0.87217455]\n", + " [-0.12326869 -0.49797384 0.85838621]\n", + " [-0.15060684 -0.5159632 0.84326719]\n", + " [-0.17806986 -0.5334751 0.82685878]\n", + " [-0.20549044 -0.55038742 0.8092264 ]\n", + " [ 0.06300195 -0.58525703 0.80839654]\n", + " [ 0.06300195 -0.58525703 0.80839654]\n", + " [-0.21512722 -0.5561924 0.80272678]\n", + " [-0.21512722 -0.5561924 0.80272678]\n", + " [ 0.04748778 -0.58484496 0.80975384]\n", + " [ 0.02670009 -0.56375613 0.82550962]\n", + " [ 0.00524614 -0.5416275 0.84060224]\n", + " [-0.01672287 -0.51854662 0.85488581]\n", + " [-0.03906277 -0.49461588 0.8682334 ]\n", + " [-0.06163391 -0.46995304 0.88053699]\n", + " [ 0.02299866 -0.60385515 0.79676221]\n", + " [ 0.00169094 -0.58279768 0.81261553]\n", + " [-0.02022207 -0.56064632 0.82780841]\n", + " [-0.04259209 -0.53748762 0.84219533]\n", + " [-0.06527673 -0.51342366 0.85564893]\n", + " [-0.08813662 -0.48857288 0.86806018]\n", + " [-0.00219915 -0.62246848 0.78264178]\n", + " [-0.02397326 -0.60146902 0.79853635]\n", + " [-0.04629551 -0.57932614 0.81378004]\n", + " [-0.06901993 -0.55612504 0.82822774]\n", + " [-0.09200496 -0.53196718 0.84175175]\n", + " [-0.11511064 -0.50697142 0.85424207]\n", + " [-0.02793385 -0.64053994 0.76741663]\n", + " [-0.05012364 -0.61962528 0.78329569]\n", + " [-0.07280771 -0.59752247 0.79853988]\n", + " [-0.09584131 -0.57431515 0.81300464]\n", + " [-0.11908272 -0.55010383 0.82656221]\n", + " [-0.14239067 -0.5250074 0.83910198]\n", + " [-0.05404013 -0.65793677 0.75113173]\n", + " [-0.07659654 -0.63713304 0.76693836]\n", + " [-0.09959575 -0.61510149 0.78213224]\n", + " [-0.12289317 -0.59192418 0.79656954]\n", + " [-0.14634605 -0.56770045 0.81012285]\n", + " [-0.1698114 -0.54254888 0.82268147]\n", + " [-0.0803569 -0.67453868 0.73385308]\n", + " [-0.10323086 -0.65387073 0.74953082]\n", + " [-0.12649773 -0.63194054 0.76462375]\n", + " [-0.15001214 -0.60882883 0.77898897]\n", + " [-0.17362984 -0.5846338 0.79249984]\n", + " [-0.19720605 -0.55947334 0.80504619]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:cartToSphere: vec: [[ 0.84262035 0.01224571 -0.53836882]\n", + " [ 0.82869067 0.02482616 -0.559156 ]\n", + " [ 0.81381441 0.0376378 -0.57990473]\n", + " [ 0.79801442 0.05062849 -0.6005079 ]\n", + " [ 0.78132192 0.06374641 -0.62086428]\n", + " [ 0.76377779 0.07693934 -0.64087739]\n", + " [ 0.74543334 0.09015434 -0.66045539]\n", + " [ 0.72635049 0.10333799 -0.67951176]\n", + " [ 0.84262035 0.01224571 -0.53836882]\n", + " [ 0.83547617 -0.01365079 -0.54935709]\n", + " [ 0.82760673 -0.03940748 -0.55992334]\n", + " [ 0.81905137 -0.06492263 -0.57003501]\n", + " [ 0.80985739 -0.09009433 -0.57966716]\n", + " [ 0.80007974 -0.1148202 -0.5888028 ]\n", + " [ 0.78978082 -0.13899661 -0.59743301]\n", + " [ 0.77903063 -0.16251769 -0.605557 ]\n", + " [ 0.72635049 0.10333799 -0.67951176]\n", + " [ 0.71903072 0.07647727 -0.69075759]\n", + " [ 0.71108825 0.04963711 -0.70134845]\n", + " [ 0.7025638 0.02292459 -0.71125141]\n", + " [ 0.69350542 -0.00355524 -0.72044264]\n", + " [ 0.68396795 -0.02970002 -0.72890723]\n", + " [ 0.67401279 -0.05540954 -0.73663868]\n", + " [ 0.6637081 -0.08058425 -0.74363818]\n", + " [ 0.77903063 -0.16251769 -0.605557 ]\n", + " [ 0.76484219 -0.15195835 -0.62603921]\n", + " [ 0.74983361 -0.14092806 -0.64644322]\n", + " [ 0.73403158 -0.12948237 -0.6666573 ]\n", + " [ 0.71747076 -0.11767434 -0.68657735]\n", + " [ 0.70019413 -0.10555522 -0.70610643]\n", + " [ 0.68225321 -0.09317524 -0.72515442]\n", + " [ 0.6637081 -0.08058425 -0.74363818]\n", + " [ 0.83664125 0.01760998 -0.54746809]\n", + " [ 0.81892974 0.03318983 -0.57293326]\n", + " [ 0.79981831 0.04906518 -0.59823346]\n", + " [ 0.77936092 0.0651406 -0.62317996]\n", + " [ 0.7576329 0.0813199 -0.64759513]\n", + " [ 0.73473316 0.0975054 -0.67131206]\n", + " [ 0.83955072 0.00098626 -0.54328042]\n", + " [ 0.83030231 -0.03067234 -0.55646858]\n", + " [ 0.82000275 -0.06201992 -0.56898948]\n", + " [ 0.80873583 -0.09286897 -0.58079403]\n", + " [ 0.7966027 -0.12303092 -0.59185093]\n", + " [ 0.78372138 -0.15231409 -0.60214718]\n", + " [ 0.72330432 0.09158605 -0.68442886]\n", + " [ 0.71390963 0.05866594 -0.69777601]\n", + " [ 0.7036191 0.02588339 -0.71010578]\n", + " [ 0.6925182 -0.00656735 -0.72137051]\n", + " [ 0.68070787 -0.03849774 -0.7315427 ]\n", + " [ 0.6683039 -0.0697237 -0.7406136 ]\n", + " [ 0.77298412 -0.15789562 -0.61446279]\n", + " [ 0.75504026 -0.14462876 -0.63952852]\n", + " [ 0.73589004 -0.1307102 -0.66436488]\n", + " [ 0.71559393 -0.11623859 -0.68877712]\n", + " [ 0.69423108 -0.10130837 -0.71258672]\n", + " [ 0.67189993 -0.08601186 -0.73563065]\n", + " [ 0.84255119 0.01219959 -0.5384781 ]\n", + " [ 0.84255119 0.01219959 -0.5384781 ]\n", + " [ 0.66380822 -0.08054255 -0.74355332]\n", + " [ 0.66380822 -0.08054255 -0.74355332]\n", + " [ 0.83362957 0.00635158 -0.55228742]\n", + " [ 0.82435146 -0.02544243 -0.56550628]\n", + " [ 0.81402554 -0.05693647 -0.57803171]\n", + " [ 0.80273603 -0.08794304 -0.58981429]\n", + " [ 0.79058435 -0.11827412 -0.60082245]\n", + " [ 0.77768863 -0.14773907 -0.61104301]\n", + " [ 0.81589023 0.0218177 -0.57779505]\n", + " [ 0.80654196 -0.01031996 -0.59108677]\n", + " [ 0.79615954 -0.04218802 -0.60361425]\n", + " [ 0.78482831 -0.0735984 -0.61532739]\n", + " [ 0.77265055 -0.10436435 -0.62619423]\n", + " [ 0.75974463 -0.13429804 -0.63620133]\n", + " [ 0.79675694 0.03760025 -0.60312901]\n", + " [ 0.78735986 0.00517841 -0.61647193]\n", + " [ 0.77694884 -0.02700347 -0.62898435]\n", + " [ 0.76561012 -0.0587561 -0.640616 ]\n", + " [ 0.75344656 -0.08989324 -0.65133515]\n", + " [ 0.7405766 -0.12022934 -0.66112873]\n", + " [ 0.77628383 0.05360436 -0.6281003 ]\n", + " [ 0.76686023 0.02095914 -0.64147182]\n", + " [ 0.7564498 -0.01147585 -0.65395107]\n", + " [ 0.74513923 -0.04350973 -0.66548812]\n", + " [ 0.73303149 -0.07495606 -0.67605208]\n", + " [ 0.72024471 -0.10563073 -0.68563088]\n", + " [ 0.75454647 0.06973459 -0.652531 ]\n", + " [ 0.74511938 0.03692871 -0.66590794]\n", + " [ 0.73473955 0.00430269 -0.67833567]\n", + " [ 0.72349358 -0.02795093 -0.68976502]\n", + " [ 0.71148394 -0.05964498 -0.70016646]\n", + " [ 0.69882802 -0.0905959 -0.70952927]\n", + " [ 0.73164391 0.08589389 -0.67625397]\n", + " [ 0.72223666 0.05299197 -0.68961298]\n", + " [ 0.71191759 0.02023877 -0.70197132]\n", + " [ 0.70077256 -0.01217183 -0.71328092]\n", + " [ 0.68890299 -0.04405165 -0.72351373]\n", + " [ 0.67642513 -0.07521686 -0.73266054]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:fp_optics: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:fp_optics: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:cartToSphere: vec: [[ 1.43085014e-01 -1.51843966e-01 9.77992888e-01]\n", + " [ 1.52154083e-01 -1.76676551e-01 9.72437418e-01]\n", + " [ 1.61151746e-01 -2.01943663e-01 9.66048069e-01]\n", + " [ 1.70047004e-01 -2.27524099e-01 9.58810096e-01]\n", + " [ 1.78808387e-01 -2.53300938e-01 9.50718778e-01]\n", + " [ 1.87403895e-01 -2.79161268e-01 9.41779574e-01]\n", + " [ 1.95801228e-01 -3.04995812e-01 9.32008280e-01]\n", + " [ 2.03968188e-01 -3.30698773e-01 9.21431115e-01]\n", + " [ 1.43085014e-01 -1.51843966e-01 9.77992888e-01]\n", + " [ 1.17188446e-01 -1.58896237e-01 9.80315691e-01]\n", + " [ 9.06855505e-02 -1.66126579e-01 9.81925705e-01]\n", + " [ 6.36819454e-02 -1.73482254e-01 9.82775924e-01]\n", + " [ 3.62834904e-02 -1.80915260e-01 9.82829170e-01]\n", + " [ 8.59661587e-03 -1.88382264e-01 9.82058155e-01]\n", + " [-1.92713737e-02 -1.95844199e-01 9.80445645e-01]\n", + " [-4.72122921e-02 -2.03265836e-01 9.77984662e-01]\n", + " [ 2.03968188e-01 -3.30698773e-01 9.21431115e-01]\n", + " [ 1.77678200e-01 -3.39810647e-01 9.23557893e-01]\n", + " [ 1.50707881e-01 -3.48838391e-01 9.24985898e-01]\n", + " [ 1.23157710e-01 -3.57730225e-01 9.25668010e-01]\n", + " [ 9.51291963e-02 -3.66438192e-01 9.25566576e-01]\n", + " [ 6.67267069e-02 -3.74917650e-01 9.24653612e-01]\n", + " [ 3.80584473e-02 -3.83127128e-01 9.22911241e-01]\n", + " [ 9.23634489e-03 -3.91028552e-01 9.20332202e-01]\n", + " [-4.72122921e-02 -2.03265836e-01 9.77984662e-01]\n", + " [-3.95310317e-02 -2.29658453e-01 9.72468145e-01]\n", + " [-3.16724829e-02 -2.56385687e-01 9.66055502e-01]\n", + " [-2.36657404e-02 -2.83330884e-01 9.58730172e-01]\n", + " [-1.55404105e-02 -3.10380121e-01 9.50485495e-01]\n", + " [-7.32703883e-03 -3.37420670e-01 9.41325452e-01]\n", + " [ 9.42736203e-04 -3.64340450e-01 9.31265348e-01]\n", + " [ 9.23634489e-03 -3.91028552e-01 9.20332202e-01]\n", + " [ 1.46958311e-01 -1.62634013e-01 9.75681010e-01]\n", + " [ 1.58028627e-01 -1.93378110e-01 9.68313926e-01]\n", + " [ 1.68961100e-01 -2.24653908e-01 9.59678471e-01]\n", + " [ 1.79698005e-01 -2.56244376e-01 9.49761784e-01]\n", + " [ 1.90180456e-01 -2.87941606e-01 9.38573932e-01]\n", + " [ 2.00349009e-01 -3.19545862e-01 9.26148323e-01]\n", + " [ 1.31906154e-01 -1.54977916e-01 9.79072322e-01]\n", + " [ 9.97454415e-02 -1.63749274e-01 9.81446393e-01]\n", + " [ 6.67788571e-02 -1.72734996e-01 9.82701992e-01]\n", + " [ 3.32011777e-02 -1.81844728e-01 9.82766593e-01]\n", + " [-7.91626301e-04 -1.90998648e-01 9.81589980e-01]\n", + " [-3.50016293e-02 -2.00126448e-01 9.79144673e-01]\n", + " [ 1.92568156e-01 -3.34590521e-01 9.22478557e-01]\n", + " [ 1.59876641e-01 -3.45707329e-01 9.24622032e-01]\n", + " [ 1.26263119e-01 -3.56646032e-01 9.25667993e-01]\n", + " [ 9.19139364e-02 -3.67316793e-01 9.25543193e-01]\n", + " [ 5.70213464e-02 -3.77637417e-01 9.24196163e-01]\n", + " [ 2.17861472e-02 -3.87532951e-01 9.21598381e-01]\n", + " [-4.37909726e-02 -2.14698934e-01 9.75698067e-01]\n", + " [-3.42530069e-02 -2.47285403e-01 9.68337060e-01]\n", + " [-2.44778058e-02 -2.80258222e-01 9.59612508e-01]\n", + " [-1.45196392e-02 -3.13406626e-01 9.49508013e-01]\n", + " [-4.43476440e-03 -3.46523028e-01 9.38030982e-01]\n", + " [ 5.71816305e-03 -3.79401514e-01 9.25214458e-01]\n", + " [ 1.43028707e-01 -1.51951757e-01 9.77984383e-01]\n", + " [ 1.43028707e-01 -1.51951757e-01 9.77984383e-01]\n", + " [ 9.30667447e-03 -3.90911352e-01 9.20381280e-01]\n", + " [ 9.30667447e-03 -3.90911352e-01 9.20381280e-01]\n", + " [ 1.35803716e-01 -1.65728739e-01 9.76775991e-01]\n", + " [ 1.03547514e-01 -1.74675493e-01 9.79166168e-01]\n", + " [ 7.04782676e-02 -1.83808662e-01 9.80432144e-01]\n", + " [ 3.67903603e-02 -1.93038234e-01 9.80501254e-01]\n", + " [ 2.67959633e-03 -2.02284833e-01 9.79323065e-01]\n", + " [-3.16558439e-02 -2.11478444e-01 9.76869887e-01]\n", + " [ 1.46799131e-01 -1.96658587e-01 9.69420144e-01]\n", + " [ 1.14317581e-01 -2.06079336e-01 9.71834759e-01]\n", + " [ 8.10024147e-02 -2.15609715e-01 9.73114104e-01]\n", + " [ 4.70465134e-02 -2.25160934e-01 9.73185070e-01]\n", + " [ 1.26451161e-02 -2.34654699e-01 9.71996540e-01]\n", + " [-2.20027550e-02 -2.44021476e-01 9.69520190e-01]\n", + " [ 1.57680293e-01 -2.28107679e-01 9.60782916e-01]\n", + " [ 1.25040312e-01 -2.37969687e-01 9.63190193e-01]\n", + " [ 9.15457764e-02 -2.47868667e-01 9.64458654e-01]\n", + " [ 5.73877574e-02 -2.57716805e-01 9.64514745e-01]\n", + " [ 2.27608508e-02 -2.67436212e-01 9.63306709e-01]\n", + " [-1.21350276e-02 -2.76957099e-01 9.60805655e-01]\n", + " [ 1.68389341e-01 -2.59859428e-01 9.50851254e-01]\n", + " [ 1.35657417e-01 -2.70131661e-01 9.53218732e-01]\n", + " [ 1.02049976e-01 -2.80372426e-01 9.54451206e-01]\n", + " [ 6.77562692e-02 -2.90494170e-01 9.54474843e-01]\n", + " [ 3.29702022e-02 -3.00418507e-01 9.53237476e-01]\n", + " [-2.10757173e-03 -3.10074627e-01 9.50709884e-01]\n", + " [ 1.78867027e-01 -2.91706223e-01 9.39635071e-01]\n", + " [ 1.46108750e-01 -3.02358428e-01 9.41929729e-01]\n", + " [ 1.12454501e-01 -3.12914594e-01 9.43100441e-01]\n", + " [ 7.80919638e-02 -3.23286608e-01 9.43073388e-01]\n", + " [ 4.32143233e-02 -3.33394776e-01 9.41796393e-01]\n", + " [ 8.02261818e-03 -3.43166681e-01 9.39240260e-01]\n", + " [ 1.89053463e-01 -3.23448217e-01 9.27167751e-01]\n", + " [ 1.56333304e-01 -3.34449503e-01 9.29356459e-01]\n", + " [ 1.22697714e-01 -3.45293560e-01 9.30439481e-01]\n", + " [ 8.83332787e-02 -3.55891070e-01 9.30343366e-01]\n", + " [ 5.34324799e-02 -3.66160524e-01 9.29016383e-01]\n", + " [ 1.81962664e-02 -3.76027627e-01 9.26429771e-01]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:fp_optics: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:cartToSphere: vec: [[ 0.21266225 -0.77414079 0.59622211]\n", + " [ 0.21485266 -0.78988016 0.5743933 ]\n", + " [ 0.21678315 -0.80538225 0.55169239]\n", + " [ 0.21844575 -0.82054849 0.52818712]\n", + " [ 0.21983527 -0.83528652 0.50395325]\n", + " [ 0.22094785 -0.84951228 0.47907299]\n", + " [ 0.22178026 -0.86315087 0.45363432]\n", + " [ 0.22232985 -0.87613689 0.42773074]\n", + " [ 0.21266225 -0.77414079 0.59622211]\n", + " [ 0.18626092 -0.77816096 0.59981029]\n", + " [ 0.15915857 -0.78177273 0.60290957]\n", + " [ 0.13145794 -0.78492189 0.60548859]\n", + " [ 0.10326661 -0.78756113 0.60752241]\n", + " [ 0.07469451 -0.78965175 0.60899166]\n", + " [ 0.04585295 -0.79116457 0.60988207]\n", + " [ 0.01685428 -0.79208007 0.61018447]\n", + " [ 0.22232985 -0.87613689 0.42773074]\n", + " [ 0.19502739 -0.88151821 0.42998832]\n", + " [ 0.16700759 -0.88630307 0.43194366]\n", + " [ 0.13837649 -0.89043204 0.43356976]\n", + " [ 0.1092395 -0.89385531 0.43484412]\n", + " [ 0.07970382 -0.89653245 0.43574864]\n", + " [ 0.04988074 -0.89843234 0.43626969]\n", + " [ 0.01988653 -0.89953371 0.43639848]\n", + " [ 0.01685428 -0.79208007 0.61018447]\n", + " [ 0.01732934 -0.8088559 0.5877515 ]\n", + " [ 0.0177938 -0.82531204 0.5643965 ]\n", + " [ 0.01824569 -0.8413462 0.54018855]\n", + " [ 0.01868299 -0.85686578 0.51520091]\n", + " [ 0.01910359 -0.87178661 0.48951319]\n", + " [ 0.01950542 -0.88603212 0.46321336]\n", + " [ 0.01988653 -0.89953371 0.43639848]\n", + " [ 0.21355922 -0.78104071 0.58682866]\n", + " [ 0.21606933 -0.80018505 0.55948006]\n", + " [ 0.21818085 -0.81887442 0.53088775]\n", + " [ 0.21988322 -0.83693605 0.50118802]\n", + " [ 0.22116921 -0.85421526 0.47053211]\n", + " [ 0.22203314 -0.87057811 0.43908432]\n", + " [ 0.20125119 -0.77599466 0.59777106]\n", + " [ 0.16840868 -0.78065526 0.60184374]\n", + " [ 0.13461454 -0.78464778 0.60515022]\n", + " [ 0.100065 -0.78788208 0.60764202]\n", + " [ 0.06496234 -0.79028704 0.60928342]\n", + " [ 0.02951194 -0.79181295 0.61005024]\n", + " [ 0.21051954 -0.87850888 0.42883991]\n", + " [ 0.17656175 -0.88471069 0.4314081 ]\n", + " [ 0.14163197 -0.88995653 0.43349482]\n", + " [ 0.10592449 -0.89415077 0.43505677]\n", + " [ 0.06963691 -0.89721893 0.43606064]\n", + " [ 0.03297625 -0.89910781 0.43648334]\n", + " [ 0.01716228 -0.79942459 0.60052126]\n", + " [ 0.01773861 -0.81978347 0.57239881]\n", + " [ 0.01829689 -0.83955942 0.54295968]\n", + " [ 0.01883339 -0.85857798 0.51233695]\n", + " [ 0.01934427 -0.87668411 0.48067741]\n", + " [ 0.01982573 -0.8937401 0.44814683]\n", + " [ 0.21258119 -0.77420929 0.59616207]\n", + " [ 0.21258119 -0.77420929 0.59616207]\n", + " [ 0.01998799 -0.89948649 0.43649117]\n", + " [ 0.01998799 -0.89948649 0.43649117]\n", + " [ 0.20218467 -0.78287652 0.58840947]\n", + " [ 0.16921176 -0.78766594 0.59241012]\n", + " [ 0.13528361 -0.79176416 0.59565751]\n", + " [ 0.100598 -0.79507951 0.59810419]\n", + " [ 0.06535768 -0.79754038 0.5997147 ]\n", + " [ 0.02976829 -0.79909696 0.60046473]\n", + " [ 0.20458162 -0.80215651 0.56097352]\n", + " [ 0.17128031 -0.80729 0.56475297]\n", + " [ 0.13701702 -0.81166845 0.56782097]\n", + " [ 0.1019916 -0.8151978 0.5701318 ]\n", + " [ 0.06640676 -0.81780594 0.57164988]\n", + " [ 0.03046851 -0.81944323 0.57234995]\n", + " [ 0.20660151 -0.82096844 0.53228436]\n", + " [ 0.17303675 -0.82641075 0.53582046]\n", + " [ 0.13850627 -0.83103931 0.53869257]\n", + " [ 0.10320941 -0.83475934 0.54085549]\n", + " [ 0.06734768 -0.83749879 0.54227305]\n", + " [ 0.03112728 -0.83920799 0.542919 ]\n", + " [ 0.20823527 -0.83913803 0.5024793 ]\n", + " [ 0.17447444 -0.84485173 0.50575115]\n", + " [ 0.13974538 -0.8497001 0.50841024]\n", + " [ 0.10424566 -0.85358825 0.51041154]\n", + " [ 0.06817517 -0.85644389 0.51171868]\n", + " [ 0.03174039 -0.85821675 0.51230514]\n", + " [ 0.20947616 -0.85651007 0.47170991]\n", + " [ 0.17558669 -0.86245725 0.47469655]\n", + " [ 0.14072703 -0.86749536 0.47712441]\n", + " [ 0.10509284 -0.87152935 0.47894894]\n", + " [ 0.06888262 -0.87448618 0.48013446]\n", + " [ 0.03230316 -0.87631444 0.48065528]\n", + " [ 0.21031837 -0.87295037 0.4401407 ]\n", + " [ 0.17636678 -0.87909264 0.44282151]\n", + " [ 0.14144357 -0.88428987 0.44500016]\n", + " [ 0.10574317 -0.8884466 0.44663299]\n", + " [ 0.0694633 -0.89148872 0.44768595]\n", + " [ 0.03281094 -0.89336349 0.44813516]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:fp_optics: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:cartToSphere: vec: [[-0.06893558 0.20730868 -0.97584374]\n", + " [-0.06007876 0.23331425 -0.97054366]\n", + " [-0.05099556 0.25965226 -0.96435479]\n", + " [-0.04171974 0.28620706 -0.9572591 ]\n", + " [-0.03228547 0.31286587 -0.94924844]\n", + " [-0.02272793 0.33951727 -0.94032519]\n", + " [-0.01308364 0.36605054 -0.93050299]\n", + " [-0.0033903 0.39235614 -0.91980714]\n", + " [-0.06893558 0.20730868 -0.97584374]\n", + " [-0.09633596 0.2158609 -0.97166015]\n", + " [-0.1235377 0.22429776 -0.96665865]\n", + " [-0.15043484 0.2325916 -0.96086966]\n", + " [-0.17692248 0.24071902 -0.95433369]\n", + " [-0.20289652 0.24866128 -0.94710114]\n", + " [-0.22825328 0.2564045 -0.93923223]\n", + " [-0.25288912 0.26393962 -0.93079695]\n", + " [-0.0033903 0.39235614 -0.91980714]\n", + " [-0.03179082 0.40106415 -0.91549816]\n", + " [-0.06007114 0.40938736 -0.91038094]\n", + " [-0.08812016 0.41729804 -0.90448725]\n", + " [-0.11583021 0.42477395 -0.89785881]\n", + " [-0.14309749 0.43179834 -0.89054663]\n", + " [-0.16982142 0.43835955 -0.88261067]\n", + " [-0.19590302 0.44445051 -0.87411998]\n", + " [-0.25288912 0.26393962 -0.93079695]\n", + " [-0.24598057 0.28944418 -0.92504898]\n", + " [-0.23860373 0.31523717 -0.91852806]\n", + " [-0.23079343 0.34119815 -0.91121798]\n", + " [-0.22258401 0.36721081 -0.90311272]\n", + " [-0.21400952 0.39316256 -0.89421649]\n", + " [-0.20510421 0.4189443 -0.88454391]\n", + " [-0.19590302 0.44445051 -0.87411998]\n", + " [-0.06519826 0.21862826 -0.97362768]\n", + " [-0.05418777 0.25073938 -0.96653683]\n", + " [-0.0428706 0.28323445 -0.95809204]\n", + " [-0.03130946 0.31590477 -0.94827417]\n", + " [-0.01956914 0.34854513 -0.93708769]\n", + " [-0.00771737 0.38095212 -0.92456256]\n", + " [-0.08087038 0.21113806 -0.97410508]\n", + " [-0.11433318 0.22154594 -0.96842414]\n", + " [-0.14739226 0.23175241 -0.96154373]\n", + " [-0.17985403 0.2417126 -0.95353424]\n", + " [-0.21152683 0.25139203 -0.94448846]\n", + " [-0.2422198 0.26076715 -0.9345213 ]\n", + " [-0.01581376 0.39610875 -0.91806742]\n", + " [-0.05055463 0.40652642 -0.91223928]\n", + " [-0.08500417 0.41633814 -0.90522751]\n", + " [-0.11896268 0.42550069 -0.89710481]\n", + " [-0.15223899 0.43398313 -0.88796505]\n", + " [-0.18464872 0.44176595 -0.87792237]\n", + " [-0.2498534 0.27499128 -0.92841428]\n", + " [-0.24106566 0.30645999 -0.92085266]\n", + " [-0.23160933 0.33824184 -0.9121127 ]\n", + " [-0.22154787 0.37012097 -0.90217903]\n", + " [-0.210944 0.40189009 -0.89105947]\n", + " [-0.19986105 0.43334982 -0.87878524]\n", + " [-0.06899964 0.20742632 -0.97581421]\n", + " [-0.06899964 0.20742632 -0.97581421]\n", + " [-0.19584697 0.44434385 -0.87418677]\n", + " [-0.19584697 0.44434385 -0.87418677]\n", + " [-0.07711646 0.22235275 -0.97191168]\n", + " [-0.11071848 0.23277857 -0.96620679]\n", + " [-0.14392342 0.24297586 -0.95929598]\n", + " [-0.17653757 0.25289936 -0.95124992]\n", + " [-0.20836959 0.26251427 -0.94216154]\n", + " [-0.23922915 0.27179691 -0.93214583]\n", + " [-0.06622566 0.25449547 -0.96480372]\n", + " [-0.10018016 0.26496054 -0.95904111]\n", + " [-0.13375599 0.27512202 -0.95205946]\n", + " [-0.16675876 0.28493377 -0.94393022]\n", + " [-0.198998 0.29436032 -0.93474692]\n", + " [-0.23028524 0.30337764 -0.92462463]\n", + " [-0.05500607 0.28701534 -0.9563454 ]\n", + " [-0.08925061 0.29750171 -0.95054041]\n", + " [-0.12313477 0.30761158 -0.94351097]\n", + " [-0.1564631 0.31729849 -0.93532934]\n", + " [-0.18904561 0.32652685 -0.92608961]\n", + " [-0.22069572 0.33527275 -0.91590697]\n", + " [-0.04351983 0.31970344 -0.94651769]\n", + " [-0.07799061 0.33019221 -0.94068622]\n", + " [-0.11211998 0.34023339 -0.93363288]\n", + " [-0.14571109 0.34978084 -0.92543052]\n", + " [-0.178574 0.35879969 -0.91617363]\n", + " [-0.21052358 0.36726674 -0.90597735]\n", + " [-0.031831 0.35235434 -0.93532519]\n", + " [-0.06646237 0.36282604 -0.92948374]\n", + " [-0.10077254 0.37278104 -0.92243113]\n", + " [-0.13456326 0.38217414 -0.91424048]\n", + " [-0.16764422 0.39097188 -0.9050063 ]\n", + " [-0.19983108 0.39915242 -0.8948435 ]\n", + " [-0.02000662 0.38476446 -0.92279795]\n", + " [-0.05473104 0.39519961 -0.91696335]\n", + " [-0.08915606 0.40505151 -0.90993652]\n", + " [-0.12308227 0.41427639 -0.90179035]\n", + " [-0.15631875 0.42284263 -0.89261893]\n", + " [-0.18868123 0.43073009 -0.88253668]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:fp_optics: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:cartToSphere: vec: [[-0.12681337 0.53890733 -0.83276483]\n", + " [-0.14326077 0.55646222 -0.81842907]\n", + " [-0.1599199 0.57391837 -0.80314589]\n", + " [-0.17671808 0.59118164 -0.78694027]\n", + " [-0.19358381 0.60816337 -0.76984585]\n", + " [-0.21044616 0.62477985 -0.75190594]\n", + " [-0.22723479 0.6409526 -0.733174 ]\n", + " [-0.24388044 0.65660897 -0.71371352]\n", + " [-0.12681337 0.53890733 -0.83276483]\n", + " [-0.14995797 0.52264498 -0.8392585 ]\n", + " [-0.17296052 0.50605987 -0.84497815]\n", + " [-0.1957346 0.48922487 -0.84990999]\n", + " [-0.21819702 0.47221929 -0.85404859]\n", + " [-0.24026809 0.45512928 -0.8573964 ]\n", + " [-0.26187149 0.43804861 -0.85996322]\n", + " [-0.28293372 0.42107991 -0.86176576]\n", + " [-0.24388044 0.65660897 -0.71371352]\n", + " [-0.26772986 0.63968368 -0.72050365]\n", + " [-0.29126344 0.62224058 -0.72662388]\n", + " [-0.31439186 0.60435663 -0.73205931]\n", + " [-0.33703092 0.58611462 -0.73680378]\n", + " [-0.35910202 0.56760246 -0.74085976]\n", + " [-0.38053203 0.54891284 -0.74423791]\n", + " [-0.40125237 0.53014368 -0.74695663]\n", + " [-0.28293372 0.42107991 -0.86176576]\n", + " [-0.30013042 0.43680493 -0.84801131]\n", + " [-0.31735258 0.4526325 -0.83331336]\n", + " [-0.33452401 0.46846387 -0.81770122]\n", + " [-0.35157074 0.48420929 -0.8012112 ]\n", + " [-0.36842068 0.49978674 -0.78388737]\n", + " [-0.38500377 0.51512111 -0.76578218]\n", + " [-0.40125237 0.53014368 -0.74695663]\n", + " [-0.13403333 0.54651197 -0.82665575]\n", + " [-0.15434371 0.56797251 -0.80844619]\n", + " [-0.17489957 0.58919064 -0.78883746]\n", + " [-0.19556884 0.61000093 -0.76788782]\n", + " [-0.21622095 0.63024932 -0.74567707]\n", + " [-0.2367268 0.64979371 -0.7223078 ]\n", + " [-0.13697242 0.53192082 -0.83564275]\n", + " [-0.16525474 0.51176303 -0.84308331]\n", + " [-0.19323733 0.49119199 -0.84934667]\n", + " [-0.22076569 0.47035104 -0.85441934]\n", + " [-0.24769311 0.44939885 -0.85830577]\n", + " [-0.27388029 0.42851165 -0.86102692]\n", + " [-0.25425521 0.64924524 -0.71682279]\n", + " [-0.2832842 0.62814415 -0.72469648]\n", + " [-0.31174963 0.60634119 -0.73154804]\n", + " [-0.3394943 0.58398639 -0.73736254]\n", + " [-0.36637352 0.56124154 -0.74214445]\n", + " [-0.3922546 0.53827938 -0.74591664]\n", + " [-0.29035238 0.42797503 -0.85588134]\n", + " [-0.31145552 0.44733116 -0.83838553]\n", + " [-0.33252106 0.46674196 -0.81950088]\n", + " [-0.35341191 0.48603855 -0.79929128]\n", + " [-0.37399539 0.50506985 -0.77783796]\n", + " [-0.39414349 0.52370023 -0.75524101]\n", + " [-0.12694846 0.53891243 -0.83274094]\n", + " [-0.12694846 0.53891243 -0.83274094]\n", + " [-0.40112787 0.53015712 -0.74701396]\n", + " [-0.40112787 0.53015712 -0.74701396]\n", + " [-0.14409546 0.53949123 -0.82956959]\n", + " [-0.17247429 0.51923571 -0.83704653]\n", + " [-0.20053575 0.4985447 -0.84334963]\n", + " [-0.22812488 0.47756156 -0.84846567]\n", + " [-0.25509488 0.45644439 -0.85239962]\n", + " [-0.28130675 0.43536827 -0.85517307]\n", + " [-0.16450156 0.56087814 -0.81139075]\n", + " [-0.19311919 0.54037316 -0.81896387]\n", + " [-0.2213702 0.51937326 -0.82537667]\n", + " [-0.24909846 0.49802243 -0.8306164 ]\n", + " [-0.27615699 0.47647808 -0.83468914]\n", + " [-0.30240772 0.45491269 -0.83761806]\n", + " [-0.18513439 0.582036 -0.79180764]\n", + " [-0.21393846 0.56132235 -0.79946704]\n", + " [-0.24232778 0.54005901 -0.80598605]\n", + " [-0.27014529 0.51839126 -0.81135197]\n", + " [-0.29724403 0.49647683 -0.81557142]\n", + " [-0.32348706 0.4744869 -0.81866862]\n", + " [-0.20586137 0.60279976 -0.77087843]\n", + " [-0.23479794 0.5819192 -0.77861413]\n", + " [-0.26327302 0.56043841 -0.78523634]\n", + " [-0.29112892 0.53850428 -0.790732 ]\n", + " [-0.31821904 0.51627556 -0.79510766]\n", + " [-0.34440767 0.4939232 -0.79838789]\n", + " [-0.22655135 0.62301577 -0.74868273]\n", + " [-0.25556519 0.6020114 -0.75648444]\n", + " [-0.28407254 0.5803605 -0.76320671]\n", + " [-0.3119156 0.55821153 -0.76883584]\n", + " [-0.33894841 0.53572457 -0.77337776]\n", + " [-0.36503659 0.51307112 -0.77685669]\n", + " [-0.24707483 0.64254228 -0.725323 ]\n", + " [-0.27610982 0.62145845 -0.7331799 ]\n", + " [-0.30459565 0.59968633 -0.73999851]\n", + " [-0.33237489 0.57737564 -0.74576424]\n", + " [-0.35930247 0.55468774 -0.75048201]\n", + " [-0.3852453 0.53179504 -0.75417511]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:fp_optics: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:cartToSphere: vec: [[0.17524527 0.57879348 0.7964215 ]\n", + " [0.17794615 0.60082526 0.77932289]\n", + " [0.18055598 0.62281004 0.7612537 ]\n", + " [0.18305644 0.64463219 0.74225311]\n", + " [0.18543127 0.66618412 0.72236691]\n", + " [0.187666 0.68736442 0.70164922]\n", + " [0.18974789 0.70807653 0.68016421]\n", + " [0.19166607 0.72822886 0.65798697]\n", + " [0.17524527 0.57879348 0.7964215 ]\n", + " [0.20361483 0.5732712 0.79366311]\n", + " [0.23173153 0.56736449 0.79018861]\n", + " [0.25948808 0.56110584 0.78601919]\n", + " [0.28678011 0.55453533 0.78118355]\n", + " [0.31350641 0.54770047 0.77571769]\n", + " [0.33956954 0.54065548 0.76966498]\n", + " [0.36487748 0.53345935 0.76307637]\n", + " [0.19166607 0.72822886 0.65798697]\n", + " [0.22099686 0.7223878 0.6552223 ]\n", + " [0.25003252 0.71591929 0.65187675]\n", + " [0.27866114 0.70885829 0.64797213]\n", + " [0.30677759 0.70124702 0.64353719]\n", + " [0.33428311 0.69313463 0.63860722]\n", + " [0.36108331 0.68457741 0.63322399]\n", + " [0.38708566 0.67563942 0.6274361 ]\n", + " [0.36487748 0.53345935 0.76307637]\n", + " [0.36911278 0.55413839 0.7461142 ]\n", + " [0.37302642 0.57487322 0.72826649]\n", + " [0.37659555 0.59555185 0.70957296]\n", + " [0.37980113 0.61606615 0.69008232]\n", + " [0.38262688 0.63631417 0.66985144]\n", + " [0.38505888 0.65620108 0.64894514]\n", + " [0.38708566 0.67563942 0.6274361 ]\n", + " [0.17653051 0.58837915 0.78907982]\n", + " [0.17978286 0.61536459 0.76746632]\n", + " [0.18287984 0.64216363 0.74443323]\n", + " [0.18579065 0.66857494 0.72006207]\n", + " [0.18848864 0.69441163 0.69445268]\n", + " [0.19095113 0.71949796 0.66772775]\n", + " [0.18764837 0.57650997 0.79525112]\n", + " [0.22226276 0.56947927 0.79138652]\n", + " [0.25639037 0.56190239 0.78646658]\n", + " [0.28983784 0.55384994 0.78054101]\n", + " [0.3224189 0.54540936 0.77367609]\n", + " [0.35395627 0.53668258 0.76595481]\n", + " [0.20447699 0.72569335 0.65693099]\n", + " [0.24024073 0.71810873 0.65314948]\n", + " [0.27544929 0.7096157 0.64851619]\n", + " [0.30990625 0.700289 0.64308121]\n", + " [0.34342955 0.69021913 0.63690949]\n", + " [0.37584629 0.67951291 0.63008076]\n", + " [0.36667653 0.5424867 0.75581512]\n", + " [0.37165341 0.56788399 0.73442598]\n", + " [0.3761241 0.59325346 0.71174503]\n", + " [0.38005203 0.61839425 0.68785827]\n", + " [0.38340719 0.64311879 0.66287038]\n", + " [0.38616497 0.66725554 0.63690397]\n", + " [0.17535196 0.57885056 0.79635653]\n", + " [0.17535196 0.57885056 0.79635653]\n", + " [0.38699198 0.67560494 0.62753102]\n", + " [0.38699198 0.67560494 0.62753102]\n", + " [0.18887495 0.58602736 0.78797093]\n", + " [0.22362204 0.57894632 0.78410098]\n", + " [0.25787698 0.57129157 0.77918252]\n", + " [0.29144613 0.56313373 0.77326551]\n", + " [0.32414293 0.55456066 0.76641623]\n", + " [0.35578913 0.54567589 0.75871728]\n", + " [0.19224801 0.61298427 0.76634913]\n", + " [0.22732803 0.6057724 0.76247083]\n", + " [0.26190113 0.59791283 0.75756719]\n", + " [0.29577303 0.58947588 0.7516891 ]\n", + " [0.32875735 0.58054948 0.74490329]\n", + " [0.36067486 0.57123939 0.73729181]\n", + " [0.1954429 0.63975947 0.74331009]\n", + " [0.2307919 0.63243374 0.73943402]\n", + " [0.26561983 0.62439211 0.73456151]\n", + " [0.29973178 0.61570478 0.72874446]\n", + " [0.33294239 0.60645927 0.72205022]\n", + " [0.36507342 0.59676158 0.71456072]\n", + " [0.19842831 0.66615165 0.71893545]\n", + " [0.23398114 0.65872855 0.71507308]\n", + " [0.26899986 0.65052648 0.71024952]\n", + " [0.30328887 0.6416163 0.70451713]\n", + " [0.33666411 0.63208555 0.69794351]\n", + " [0.36894929 0.62204001 0.69061034]\n", + " [0.20117679 0.69197407 0.69332517]\n", + " [0.23686626 0.68447031 0.68948878]\n", + " [0.27201059 0.67612919 0.6847332 ]\n", + " [0.30641361 0.66702303 0.67911043]\n", + " [0.33989241 0.65724023 0.67268747]\n", + " [0.37227267 0.64688666 0.66554543]\n", + " [0.20366476 0.71705119 0.66660203]\n", + " [0.23942156 0.70948438 0.66280407]\n", + " [0.27462517 0.70102674 0.65813564]\n", + " [0.30907917 0.69175239 0.65264745]\n", + " [0.34260138 0.68175124 0.6464051 ]\n", + " [0.3750187 0.67112978 0.6394887 ]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:fp_optics: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:cartToSphere: vec: [[-0.565742 -0.17523542 0.80574719]\n", + " [-0.54370074 -0.18735586 0.8180998 ]\n", + " [-0.52078239 -0.19956455 0.83003596]\n", + " [-0.49705449 -0.2118047 0.84147228]\n", + " [-0.47259059 -0.22402121 0.85233364]\n", + " [-0.44747144 -0.23616028 0.86255297]\n", + " [-0.4217853 -0.24816945 0.87207172]\n", + " [-0.39562754 -0.25999803 0.88084044]\n", + " [-0.565742 -0.17523542 0.80574719]\n", + " [-0.57332909 -0.20082773 0.79433115]\n", + " [-0.58033439 -0.2262129 0.78232967]\n", + " [-0.58673515 -0.25129532 0.76980032]\n", + " [-0.59251355 -0.27598297 0.75680981]\n", + " [-0.59765625 -0.30018755 0.74343422]\n", + " [-0.60215356 -0.32382419 0.72975954]\n", + " [-0.60599868 -0.34681074 0.71588261]\n", + " [-0.39562754 -0.25999803 0.88084044]\n", + " [-0.40358878 -0.28639714 0.86896074]\n", + " [-0.41116071 -0.31245592 0.85633998]\n", + " [-0.4183186 -0.33807529 0.84303894]\n", + " [-0.42504295 -0.3631617 0.82912729]\n", + " [-0.43131957 -0.3876277 0.81468288]\n", + " [-0.43713928 -0.41139176 0.79979126]\n", + " [-0.44249755 -0.43437731 0.7845459 ]\n", + " [-0.60599868 -0.34681074 0.71588261]\n", + " [-0.58498412 -0.35996049 0.72678885]\n", + " [-0.56305978 -0.37299182 0.73745562]\n", + " [-0.54029924 -0.38584565 0.74779667]\n", + " [-0.5167792 -0.39846493 0.75773673]\n", + " [-0.49258064 -0.41079463 0.76721059]\n", + " [-0.46778961 -0.42278205 0.77616249]\n", + " [-0.44249755 -0.43437731 0.7845459 ]\n", + " [-0.55627091 -0.1805935 0.81114035]\n", + " [-0.52865929 -0.19551581 0.82601024]\n", + " [-0.49979674 -0.21051385 0.8401709 ]\n", + " [-0.46981606 -0.22548554 0.8534806 ]\n", + " [-0.43886595 -0.24033181 0.86581597]\n", + " [-0.40711188 -0.25495681 0.87707294]\n", + " [-0.56904617 -0.18645456 0.80088773]\n", + " [-0.57795718 -0.21769429 0.7864952 ]\n", + " [-0.58597122 -0.2485274 0.77127936]\n", + " [-0.59305351 -0.27878296 0.75535925]\n", + " [-0.59917934 -0.30829837 0.73887497]\n", + " [-0.60433215 -0.3369186 0.72198928]\n", + " [-0.39923486 -0.27150336 0.87572681]\n", + " [-0.40873357 -0.303642 0.86066161]\n", + " [-0.41762219 -0.33517051 0.84454274]\n", + " [-0.42586267 -0.36591434 0.82749482]\n", + " [-0.43342883 -0.39571246 0.8096611 ]\n", + " [-0.44030575 -0.42441693 0.79120232]\n", + " [-0.59694036 -0.35247724 0.72070937]\n", + " [-0.57056292 -0.36852125 0.73392782]\n", + " [-0.54289179 -0.38432858 0.74669944]\n", + " [-0.51406678 -0.39979338 0.75888115]\n", + " [-0.48423707 -0.41481438 0.77035284]\n", + " [-0.45356333 -0.42929569 0.7810157 ]\n", + " [-0.5656951 -0.17536442 0.80575206]\n", + " [-0.5656951 -0.17536442 0.80575206]\n", + " [-0.44256725 -0.43426119 0.78457087]\n", + " [-0.44256725 -0.43426119 0.78457087]\n", + " [-0.55963639 -0.19172615 0.80625567]\n", + " [-0.56859742 -0.22307703 0.79179139]\n", + " [-0.57667518 -0.25400704 0.7764832 ]\n", + " [-0.58383517 -0.28434485 0.76045019]\n", + " [-0.59005336 -0.31392793 0.74383217]\n", + " [-0.59531409 -0.34260171 0.72679103]\n", + " [-0.53206151 -0.20675514 0.82107421]\n", + " [-0.54115455 -0.23838259 0.80642761]\n", + " [-0.54940543 -0.26954971 0.79088344]\n", + " [-0.55678005 -0.300084 0.77456153]\n", + " [-0.56325564 -0.32982294 0.75760142]\n", + " [-0.5688187 -0.35861343 0.74016329]\n", + " [-0.50322963 -0.22183915 0.83519299]\n", + " [-0.51244057 -0.25368541 0.82039526]\n", + " [-0.52085465 -0.28503333 0.80465299]\n", + " [-0.52843753 -0.31570931 0.78808718]\n", + " [-0.53516679 -0.3455509 0.77083791]\n", + " [-0.54103011 -0.37440638 0.7530646 ]\n", + " [-0.47327342 -0.23687547 0.84847055]\n", + " [-0.48258799 -0.26888113 0.8335537 ]\n", + " [-0.49115581 -0.30035223 0.81765182]\n", + " [-0.49894175 -0.33111434 0.80088727]\n", + " [-0.50592289 -0.36100522 0.78340108]\n", + " [-0.51208707 -0.38987442 0.76535271]\n", + " [-0.44234137 -0.25176443 0.86078382]\n", + " [-0.45174478 -0.28386858 0.84578087]\n", + " [-0.46045644 -0.31540417 0.82975905]\n", + " [-0.46844007 -0.3461964 0.8128419 ]\n", + " [-0.47567165 -0.37608339 0.79517153]\n", + " [-0.48213824 -0.40491587 0.77690788]\n", + " [-0.41059876 -0.26640972 0.87202897]\n", + " [-0.42007547 -0.29855037 0.85697391]\n", + " [-0.42892003 -0.3300912 0.840873 ]\n", + " [-0.43709488 -0.36085749 0.82385067]\n", + " [-0.44457444 -0.39068797 0.80604992]\n", + " [-0.45134437 -0.41943438 0.78763129]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:fp_optics: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:cartToSphere: vec: [[ 0.56584549 0.5314427 -0.63038682]\n", + " [ 0.5827617 0.53685033 -0.610066 ]\n", + " [ 0.59951016 0.54209762 -0.58882743]\n", + " [ 0.61600187 0.54712534 -0.56674117]\n", + " [ 0.63215367 0.55188323 -0.5438811 ]\n", + " [ 0.64788789 0.55632962 -0.52032551]\n", + " [ 0.66313242 0.56043092 -0.49615782]\n", + " [ 0.6778209 0.5641612 -0.47146683]\n", + " [ 0.56584549 0.5314427 -0.63038682]\n", + " [ 0.54980948 0.55267916 -0.62630287]\n", + " [ 0.53310574 0.57400674 -0.62154206]\n", + " [ 0.5157736 0.59530283 -0.61611049]\n", + " [ 0.49785856 0.61645375 -0.61001773]\n", + " [ 0.47941268 0.63735396 -0.60327723]\n", + " [ 0.46049469 0.65790547 -0.5959069 ]\n", + " [ 0.44116992 0.67801753 -0.5879297 ]\n", + " [ 0.6778209 0.5641612 -0.47146683]\n", + " [ 0.66239104 0.58671623 -0.46583492]\n", + " [ 0.646114 0.60926408 -0.45971077]\n", + " [ 0.62902508 0.63168782 -0.45309817]\n", + " [ 0.61116601 0.65387706 -0.44600548]\n", + " [ 0.59258632 0.67572658 -0.43844617]\n", + " [ 0.5733441 0.69713596 -0.4304393 ]\n", + " [ 0.55350626 0.71801016 -0.42200975]\n", + " [ 0.44116992 0.67801753 -0.5879297 ]\n", + " [ 0.45775932 0.68520302 -0.56652734]\n", + " [ 0.47430357 0.69198135 -0.54424069]\n", + " [ 0.49071719 0.69829522 -0.52113379]\n", + " [ 0.50691932 0.7040945 -0.49727631]\n", + " [ 0.52283297 0.70933609 -0.47274517]\n", + " [ 0.5383849 0.71398407 -0.44762535]\n", + " [ 0.55350626 0.71801016 -0.42200975]\n", + " [ 0.57318212 0.53388883 -0.6216309 ]\n", + " [ 0.59381368 0.54041788 -0.59609884]\n", + " [ 0.61410424 0.54664602 -0.56925751]\n", + " [ 0.63389827 0.55247703 -0.54124127]\n", + " [ 0.65305285 0.55783414 -0.51219435]\n", + " [ 0.67143755 0.56265868 -0.48227256]\n", + " [ 0.55899621 0.54070165 -0.62862148]\n", + " [ 0.5388889 0.56680772 -0.6231595 ]\n", + " [ 0.51781688 0.59292772 -0.61668663]\n", + " [ 0.49586134 0.61884868 -0.60921904]\n", + " [ 0.47311812 0.64437626 -0.60078156]\n", + " [ 0.44969812 0.66933304 -0.59140924]\n", + " [ 0.67115022 0.57397618 -0.46915746]\n", + " [ 0.65166498 0.60162984 -0.46192456]\n", + " [ 0.63094178 0.62915573 -0.45395544]\n", + " [ 0.6090547 0.65634804 -0.44526354]\n", + " [ 0.58609501 0.68301299 -0.43587373]\n", + " [ 0.56217334 0.70896789 -0.4258235 ]\n", + " [ 0.44846975 0.6811283 -0.57873926]\n", + " [ 0.46878306 0.68966796 -0.55190628]\n", + " [ 0.48894292 0.69753843 -0.52380813]\n", + " [ 0.50879862 0.70464448 -0.49457064]\n", + " [ 0.5282084 0.71090678 -0.46433548]\n", + " [ 0.5470392 0.71626236 -0.43326244]\n", + " [ 0.56584985 0.53153372 -0.63030616]\n", + " [ 0.56584985 0.53153372 -0.63030616]\n", + " [ 0.55352413 0.71792711 -0.42212759]\n", + " [ 0.55352413 0.71792711 -0.42212759]\n", + " [ 0.56633909 0.54312026 -0.61990356]\n", + " [ 0.54624752 0.56939545 -0.61433091]\n", + " [ 0.52516979 0.59566931 -0.6077621 ]\n", + " [ 0.5031869 0.62172966 -0.6002126 ]\n", + " [ 0.4803947 0.64738261 -0.59170659]\n", + " [ 0.45690437 0.67245069 -0.58227868]\n", + " [ 0.58700561 0.54980899 -0.59425121]\n", + " [ 0.56697459 0.57650934 -0.58836791]\n", + " [ 0.54589974 0.60317024 -0.58153172]\n", + " [ 0.52386122 0.62958182 -0.57375618]\n", + " [ 0.50095471 0.65555107 -0.56506386]\n", + " [ 0.47729208 0.68089999 -0.5554885 ]\n", + " [ 0.60733855 0.55616735 -0.56728984]\n", + " [ 0.58739249 0.5832144 -0.56109806]\n", + " [ 0.56634958 0.61019137 -0.55399878]\n", + " [ 0.54428879 0.63689029 -0.54600409]\n", + " [ 0.52130521 0.6631185 -0.53713568]\n", + " [ 0.49751111 0.68869687 -0.52742708]\n", + " [ 0.62718251 0.56209975 -0.53915302]\n", + " [ 0.60734614 0.58941669 -0.53265245]\n", + " [ 0.5863648 0.61663974 -0.52529207]\n", + " [ 0.56431592 0.64356222 -0.51708337]\n", + " [ 0.54129366 0.66999132 -0.50804803]\n", + " [ 0.51741026 0.69574658 -0.49822016]\n", + " [ 0.64639433 0.56752993 -0.50998446]\n", + " [ 0.62669184 0.59504099 -0.50317348]\n", + " [ 0.60580131 0.6224403 -0.49555307]\n", + " [ 0.5837986 0.64952185 -0.48713505]\n", + " [ 0.56077665 0.67609244 -0.47794201]\n", + " [ 0.53684725 0.70197037 -0.46800921]\n", + " [ 0.66484318 0.57239954 -0.47993991]\n", + " [ 0.64529744 0.60002931 -0.47281713]\n", + " [ 0.62452584 0.62753464 -0.46493843]\n", + " [ 0.60260284 0.65470975 -0.45631673]\n", + " [ 0.57962012 0.68136098 -0.44697621]\n", + " [ 0.55568867 0.70730581 -0.43695377]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:fp_optics: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:cartToSphere: vec: [[ 0.2724671 0.29600743 -0.91550056]\n", + " [ 0.26273051 0.32060845 -0.91004555]\n", + " [ 0.25245717 0.34543301 -0.90384811]\n", + " [ 0.24169352 0.37036528 -0.89689119]\n", + " [ 0.23048571 0.3952934 -0.88916785]\n", + " [ 0.21887971 0.42010934 -0.88068145]\n", + " [ 0.20692181 0.44470866 -0.87144568]\n", + " [ 0.19465899 0.46899068 -0.86148454]\n", + " [ 0.2724671 0.29600743 -0.91550056]\n", + " [ 0.24937939 0.28606573 -0.92518988]\n", + " [ 0.22554139 0.27583146 -0.93437042]\n", + " [ 0.20105191 0.2653228 -0.94296444]\n", + " [ 0.1760097 0.25456273 -0.95090399]\n", + " [ 0.15051369 0.24357916 -0.9581309 ]\n", + " [ 0.12466351 0.23240483 -0.96459681]\n", + " [ 0.09855984 0.22107695 -0.97026334]\n", + " [ 0.19465899 0.46899068 -0.86148454]\n", + " [ 0.16997441 0.4604181 -0.87127715]\n", + " [ 0.14464689 0.45130232 -0.88056998]\n", + " [ 0.11877081 0.44165915 -0.88928662]\n", + " [ 0.09244149 0.43150892 -0.89735981]\n", + " [ 0.06575692 0.4208772 -0.90473113]\n", + " [ 0.03881871 0.4097953 -0.91135115]\n", + " [ 0.01173198 0.39830046 -0.91717997]\n", + " [ 0.09855984 0.22107695 -0.97026334]\n", + " [ 0.08684586 0.24607053 -0.96535335]\n", + " [ 0.07482588 0.27135406 -0.9595666 ]\n", + " [ 0.06254452 0.2968163 -0.95288418]\n", + " [ 0.05004701 0.32234873 -0.94529709]\n", + " [ 0.0373799 0.34784419 -0.9368069 ]\n", + " [ 0.02459155 0.37319638 -0.92742639]\n", + " [ 0.01173198 0.39830046 -0.91717997]\n", + " [ 0.26821281 0.30666531 -0.91324601]\n", + " [ 0.25591145 0.33698234 -0.90606414]\n", + " [ 0.24285018 0.36751963 -0.89774892]\n", + " [ 0.22911409 0.39806963 -0.88828335]\n", + " [ 0.21478789 0.42843339 -0.87767362]\n", + " [ 0.19995706 0.45842021 -0.86594924]\n", + " [ 0.26246651 0.29179366 -0.91976508]\n", + " [ 0.23365172 0.27941097 -0.93130896]\n", + " [ 0.20380822 0.26660618 -0.94201027]\n", + " [ 0.17311781 0.25341958 -0.95173985]\n", + " [ 0.14176268 0.23990256 -0.9603906 ]\n", + " [ 0.1099267 0.22611724 -0.96787763]\n", + " [ 0.18402411 0.46523792 -0.86584571]\n", + " [ 0.15332681 0.45436344 -0.87752194]\n", + " [ 0.12175748 0.44268846 -0.88837044]\n", + " [ 0.0894911 0.43024849 -0.89826365]\n", + " [ 0.0567082 0.41709067 -0.90709401]\n", + " [ 0.02359732 0.40327512 -0.91477448]\n", + " [ 0.09358293 0.23197038 -0.96821071]\n", + " [ 0.07901575 0.2628121 -0.96160611]\n", + " [ 0.06403309 0.29397834 -0.95366477]\n", + " [ 0.04871791 0.32526828 -0.94436599]\n", + " [ 0.03315598 0.35648457 -0.93371271]\n", + " [ 0.01743703 0.38743209 -0.92173333]\n", + " [ 0.2723572 0.29605756 -0.91551705]\n", + " [ 0.2723572 0.29605756 -0.91551705]\n", + " [ 0.01186877 0.39825512 -0.9171979 ]\n", + " [ 0.01186877 0.39825512 -0.9171979 ]\n", + " [ 0.25825832 0.30243672 -0.91751549]\n", + " [ 0.22926969 0.29013599 -0.92911598]\n", + " [ 0.19926243 0.27738622 -0.93986774]\n", + " [ 0.16841781 0.26422773 -0.94964159]\n", + " [ 0.13691756 0.2507121 -0.95833033]\n", + " [ 0.1049455 0.23690187 -0.96584882]\n", + " [ 0.24579099 0.33285594 -0.91038108]\n", + " [ 0.21635208 0.32079481 -0.92210762]\n", + " [ 0.18592281 0.30821053 -0.93297319]\n", + " [ 0.15468247 0.29514342 -0.94284871]\n", + " [ 0.12281153 0.28164554 -0.95162657]\n", + " [ 0.09049398 0.26778022 -0.95922083]\n", + " [ 0.23258558 0.36349871 -0.90209347]\n", + " [ 0.20275807 0.35168907 -0.91389494]\n", + " [ 0.17196768 0.33928587 -0.92483091]\n", + " [ 0.14039163 0.3263291 -0.93477244]\n", + " [ 0.10820949 0.31287065 -0.9436115 ]\n", + " [ 0.07560592 0.29897418 -0.95126137]\n", + " [ 0.21872676 0.39415775 -0.89263558]\n", + " [ 0.18857081 0.38261248 -0.90446047]\n", + " [ 0.1574788 0.37040727 -0.91542279]\n", + " [ 0.12562637 0.35758114 -0.92539383]\n", + " [ 0.09319277 0.34418517 -0.93426531]\n", + " [ 0.06036374 0.3302826 -0.9419499 ]\n", + " [ 0.20429873 0.4246341 -0.88201355]\n", + " [ 0.1738732 0.41336613 -0.89381013]\n", + " [ 0.14253838 0.40137584 -0.90475425]\n", + " [ 0.11046907 0.38870086 -0.91471756]\n", + " [ 0.07784477 0.3753908 -0.92359187]\n", + " [ 0.04485252 0.36150786 -0.9312896 ]\n", + " [ 0.18938671 0.4547367 -0.87025698]\n", + " [ 0.15874996 0.44375776 -0.88197364]\n", + " [ 0.12723129 0.43199805 -0.89285491]\n", + " [ 0.0950055 0.41949362 -0.90277298]\n", + " [ 0.06225278 0.40629225 -0.91162009]\n", + " [ 0.02916133 0.39245466 -0.91930895]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:fp_optics: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:cartToSphere: vec: [[-0.05854009 -0.2058416 0.97683279]\n", + " [-0.05097397 -0.23226067 0.97131696]\n", + " [-0.04321659 -0.25901247 0.96490666]\n", + " [-0.03529674 -0.28598024 0.95758521]\n", + " [-0.02724362 -0.31304993 0.94934584]\n", + " [-0.01908731 -0.34010867 0.94019241]\n", + " [-0.01085901 -0.36704427 0.93014009]\n", + " [-0.00259098 -0.39374567 0.91921577]\n", + " [-0.05854009 -0.2058416 0.97683279]\n", + " [-0.08640032 -0.21313901 0.9731941 ]\n", + " [-0.11407213 -0.22032663 0.96873305]\n", + " [-0.1414478 -0.22738169 0.96347812]\n", + " [-0.16842069 -0.23428563 0.95746787]\n", + " [-0.194885 -0.24102449 0.95075077]\n", + " [-0.22073541 -0.24758917 0.94338512]\n", + " [-0.2458666 -0.25397545 0.93543898]\n", + " [-0.00259098 -0.39374567 0.91921577]\n", + " [-0.03143994 -0.4011429 0.91547578]\n", + " [-0.06016641 -0.40815814 0.91092642]\n", + " [-0.08865754 -0.4147689 0.90559737]\n", + " [-0.11680399 -0.42095804 0.8995283 ]\n", + " [-0.14450036 -0.42671366 0.89276822]\n", + " [-0.17164446 -0.43202886 0.8853752 ]\n", + " [-0.19813575 -0.43690119 0.87741642]\n", + " [-0.2458666 -0.25397545 0.93543898]\n", + " [-0.24021312 -0.27979737 0.92952197]\n", + " [-0.23412247 -0.30591881 0.92282195]\n", + " [-0.22762424 -0.33221822 0.91532413]\n", + " [-0.22074751 -0.35857814 0.90702384]\n", + " [-0.21352109 -0.38488485 0.89792672]\n", + " [-0.20597396 -0.4110281 0.88804878]\n", + " [-0.19813575 -0.43690119 0.87741642]\n", + " [-0.05536245 -0.21733706 0.97452532]\n", + " [-0.04595809 -0.24995524 0.96716608]\n", + " [-0.03629486 -0.28295673 0.95844571]\n", + " [-0.02642631 -0.31613055 0.94834758]\n", + " [-0.01640785 -0.34926885 0.93687889]\n", + " [-0.00629737 -0.38216549 0.92407244]\n", + " [-0.07067836 -0.2091249 0.9753314 ]\n", + " [-0.10471185 -0.21799796 0.97031558]\n", + " [-0.13835521 -0.22668284 0.96409166]\n", + " [-0.17141164 -0.23514359 0.95672647]\n", + " [-0.20368636 -0.24335455 0.94830925]\n", + " [-0.23498545 -0.25130101 0.93895135]\n", + " [-0.01520525 -0.39692542 0.91772491]\n", + " [-0.05049443 -0.40573785 0.91259362]\n", + " [-0.0854871 -0.41395376 0.90627493]\n", + " [-0.11998047 -0.42153936 0.89883772]\n", + " [-0.15378038 -0.42847274 0.89037223]\n", + " [-0.18669953 -0.43474303 0.88098909]\n", + " [-0.24337226 -0.26516794 0.93298227]\n", + " [-0.23614436 -0.29703327 0.92520651]\n", + " [-0.22828943 -0.32922727 0.91623869]\n", + " [-0.21986123 -0.36153202 0.90606602]\n", + " [-0.21091284 -0.39373812 0.89469887]\n", + " [-0.20149786 -0.42564406 0.88217104]\n", + " [-0.05861005 -0.20595636 0.9768044 ]\n", + " [-0.05861005 -0.20595636 0.9768044 ]\n", + " [-0.19807366 -0.43679738 0.87748212]\n", + " [-0.19807366 -0.43679738 0.87748212]\n", + " [-0.06747838 -0.2205159 0.97304646]\n", + " [-0.10165079 -0.2293998 0.96800974]\n", + " [-0.13543856 -0.23806819 0.96175877]\n", + " [-0.16864477 -0.24648475 0.95436063]\n", + " [-0.20107492 -0.25462349 0.94590473]\n", + " [-0.23253566 -0.26246953 0.93650249]\n", + " [-0.05819392 -0.25315941 0.96567271]\n", + " [-0.09271728 -0.26206435 0.96058617]\n", + " [-0.12687116 -0.27067813 0.95427305]\n", + " [-0.16045792 -0.27896359 0.94680123]\n", + " [-0.19328389 -0.28689407 0.93826069]\n", + " [-0.22515758 -0.29445428 0.92876302]\n", + " [-0.04862811 -0.28618045 0.95694099]\n", + " [-0.08343884 -0.2950913 0.95181883]\n", + " [-0.11789516 -0.30363745 0.94546551]\n", + " [-0.15179828 -0.3117815 0.93794967]\n", + " [-0.18495503 -0.31949673 0.92936186]\n", + " [-0.2171758 -0.3267679 0.91981379]\n", + " [-0.03883388 -0.31936783 0.94683479]\n", + " [-0.07386699 -0.32826859 0.94169178]\n", + " [-0.10856137 -0.33673289 0.93532101]\n", + " [-0.14271686 -0.34472377 0.92779169]\n", + " [-0.17614034 -0.35221527 0.91919475]\n", + " [-0.20864368 -0.35919286 0.90964185]\n", + " [-0.0288659 -0.35251352 0.93536142]\n", + " [-0.06405447 -0.36138774 0.93021284]\n", + " [-0.09892121 -0.36975569 0.92384811]\n", + " [-0.13326459 -0.37758147 0.91633661]\n", + " [-0.16689123 -0.38484057 0.90776927]\n", + " [-0.19961378 -0.39151984 0.89825751]\n", + " [-0.01878138 -0.38541124 0.92255376]\n", + " [-0.05405664 -0.3942426 0.9174152 ]\n", + " [-0.08902851 -0.40250041 0.91108032]\n", + " [-0.12349443 -0.41015029 0.90361821]\n", + " [-0.15726046 -0.41716964 0.89511934]\n", + " [-0.19013942 -0.42354698 0.88569462]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:cartToSphere: vec: [[ 0.00510471 -0.79229685 0.61011445]\n", + " [ 0.00546729 -0.80907619 0.58767834]\n", + " [ 0.00583364 -0.82553534 0.56432027]\n", + " [ 0.00620191 -0.84157202 0.54010931]\n", + " [ 0.00657041 -0.85709365 0.51511872]\n", + " [ 0.00693753 -0.87201607 0.48942809]\n", + " [ 0.0073017 -0.8862627 0.46312538]\n", + " [ 0.00766141 -0.8997649 0.43630772]\n", + " [ 0.00510471 -0.79229685 0.61011445]\n", + " [-0.02392392 -0.79235342 0.60959306]\n", + " [-0.05283722 -0.79180548 0.60848361]\n", + " [-0.08152229 -0.79066657 0.60679526]\n", + " [-0.10986698 -0.78895999 0.60454229]\n", + " [-0.13776021 -0.78671863 0.60174406]\n", + " [-0.16509268 -0.78398445 0.59842526]\n", + " [-0.19175885 -0.780807 0.59461665]\n", + " [ 0.00766141 -0.8997649 0.43630772]\n", + " [-0.0223699 -0.89972254 0.43588868]\n", + " [-0.05228186 -0.89887384 0.4350775 ]\n", + " [-0.08195652 -0.89723385 0.43388311]\n", + " [-0.11128057 -0.89482773 0.43231928]\n", + " [-0.14014505 -0.89169026 0.43040429]\n", + " [-0.16844335 -0.88786553 0.42816076]\n", + " [-0.19606864 -0.88340719 0.42561581]\n", + " [-0.19175885 -0.780807 0.59461665]\n", + " [-0.19315163 -0.79667304 0.57271678]\n", + " [-0.19428838 -0.8122895 0.54994345]\n", + " [-0.19516573 -0.82755668 0.52636516]\n", + " [-0.19578256 -0.84238169 0.50205804]\n", + " [-0.19613859 -0.85668021 0.47710446]\n", + " [-0.19623384 -0.87037721 0.4515925 ]\n", + " [-0.19606864 -0.88340719 0.42561581]\n", + " [ 0.00516248 -0.79964632 0.60044909]\n", + " [ 0.00560865 -0.82000924 0.5723228 ]\n", + " [ 0.00605882 -0.83978847 0.54287993]\n", + " [ 0.0065098 -0.8588096 0.51225354]\n", + " [ 0.00695864 -0.87691758 0.4805904 ]\n", + " [ 0.00740248 -0.8939747 0.4480563 ]\n", + " [-0.00755798 -0.7924541 0.60988472]\n", + " [-0.04307326 -0.79211556 0.60884944]\n", + " [-0.07830304 -0.79088121 0.60693948]\n", + " [-0.11304054 -0.7887899 0.60417906]\n", + " [-0.14708131 -0.78590213 0.6006038 ]\n", + " [-0.18022554 -0.78229841 0.59626165]\n", + " [-0.00544052 -0.89980128 0.43626605]\n", + " [-0.04218165 -0.89920584 0.43548773]\n", + " [-0.07862587 -0.89741315 0.43412856]\n", + " [-0.11456255 -0.89446538 0.43221188]\n", + " [-0.14979088 -0.89042647 0.42977132]\n", + " [-0.18411459 -0.88538158 0.42685041]\n", + " [-0.19230691 -0.78776071 0.58519323]\n", + " [-0.19384139 -0.80705215 0.55775653]\n", + " [-0.19498778 -0.82586895 0.52907489]\n", + " [-0.19574319 -0.84403713 0.49928542]\n", + " [-0.19610704 -0.86140152 0.4685397 ]\n", + " [-0.19607948 -0.87782796 0.4370022 ]\n", + " [ 0.0050066 -0.79235588 0.6100386 ]\n", + " [ 0.0050066 -0.79235588 0.6100386 ]\n", + " [-0.19597644 -0.88338009 0.42571451]\n", + " [-0.19597644 -0.88338009 0.42571451]\n", + " [-0.00745152 -0.79974321 0.60029598]\n", + " [-0.04310682 -0.79938387 0.59927225]\n", + " [-0.07847626 -0.79810349 0.59738789]\n", + " [-0.11335277 -0.79594092 0.5946673 ]\n", + " [-0.14753153 -0.79295703 0.59114601]\n", + " [-0.18081149 -0.78923349 0.58687112]\n", + " [-0.00712959 -0.82010254 0.57217216]\n", + " [-0.04313668 -0.81968808 0.57118357]\n", + " [-0.07885624 -0.81828598 0.56937663]\n", + " [-0.11408056 -0.8159349 0.56677673]\n", + " [-0.14860494 -0.81269593 0.56341982]\n", + " [-0.18222699 -0.8086525 0.55935182]\n", + " [-0.00678026 -0.83987841 0.54273224]\n", + " [-0.04307248 -0.83941411 0.5417829 ]\n", + " [-0.07907451 -0.83790266 0.54006144]\n", + " [-0.11457797 -0.83538274 0.53759424]\n", + " [-0.1493792 -0.83191542 0.53441799]\n", + " [-0.18327673 -0.82758454 0.53057842]\n", + " [-0.00640623 -0.85889636 0.51210937]\n", + " [-0.04291576 -0.85838706 0.51120436]\n", + " [-0.07913201 -0.8567778 0.50957818]\n", + " [-0.11484579 -0.8541079 0.50725747]\n", + " [-0.14985466 -0.85043878 0.50427915]\n", + " [-0.18395913 -0.84585443 0.50068884]\n", + " [-0.00600961 -0.87700132 0.48045039]\n", + " [-0.04266653 -0.87645179 0.47959548]\n", + " [-0.07902761 -0.87475617 0.47807559]\n", + " [-0.11488283 -0.87195489 0.4759166 ]\n", + " [-0.15003078 -0.86811028 0.47315464]\n", + " [-0.18427389 -0.86330666 0.4698348 ]\n", + " [-0.00559234 -0.89405561 0.44792108]\n", + " [-0.04232447 -0.89347112 0.44712191]\n", + " [-0.07875963 -0.8917014 0.44571912]\n", + " [-0.11468727 -0.88878819 0.44373684]\n", + " [-0.14990652 -0.88479503 0.44120946]\n", + " [-0.18422096 -0.87980683 0.43818099]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:cartToSphere: vec: [[ 0.6056108 0.37630702 -0.70116231]\n", + " [ 0.58440576 0.38880475 -0.7122505 ]\n", + " [ 0.56229207 0.40114408 -0.7231259 ]\n", + " [ 0.53934445 0.41326823 -0.73370085]\n", + " [ 0.51564072 0.42512267 -0.74389876]\n", + " [ 0.4912629 0.4366551 -0.75365317]\n", + " [ 0.46629793 0.44781577 -0.76290712]\n", + " [ 0.44083802 0.45855795 -0.77161289]\n", + " [ 0.6056108 0.37630702 -0.70116231]\n", + " [ 0.60294988 0.35347889 -0.71519516]\n", + " [ 0.59965567 0.32995279 -0.7290708 ]\n", + " [ 0.59572992 0.30581007 -0.7426884 ]\n", + " [ 0.59117712 0.28113459 -0.7559583 ]\n", + " [ 0.58600525 0.25601361 -0.76880094]\n", + " [ 0.58022649 0.23053825 -0.78114617]\n", + " [ 0.57385789 0.20480346 -0.79293295]\n", + " [ 0.44083802 0.45855795 -0.77161289]\n", + " [ 0.43662356 0.43572286 -0.78708669]\n", + " [ 0.43196942 0.41206951 -0.80224755]\n", + " [ 0.42687481 0.38767307 -0.81699907]\n", + " [ 0.42134334 0.36261326 -0.83125292]\n", + " [ 0.4153835 0.3369757 -0.84492836]\n", + " [ 0.40900888 0.31085235 -0.85795253]\n", + " [ 0.40223833 0.28434114 -0.87026113]\n", + " [ 0.57385789 0.20480346 -0.79293295]\n", + " [ 0.55163163 0.21629011 -0.80555641]\n", + " [ 0.52851725 0.22782405 -0.81778098]\n", + " [ 0.50458282 0.23935031 -0.82952252]\n", + " [ 0.47990254 0.2508158 -0.84070506]\n", + " [ 0.45455781 0.26216899 -0.85126061]\n", + " [ 0.42863767 0.27336002 -0.86112952]\n", + " [ 0.40223833 0.28434114 -0.87026113]\n", + " [ 0.59647338 0.38169491 -0.70606551]\n", + " [ 0.5698631 0.39691264 -0.71952513]\n", + " [ 0.54196193 0.41183589 -0.73257659]\n", + " [ 0.5129118 0.42636336 -0.74507433]\n", + " [ 0.48286376 0.44039882 -0.75689595]\n", + " [ 0.45198007 0.45385189 -0.76794042]\n", + " [ 0.60445728 0.36648763 -0.70733175]\n", + " [ 0.60076919 0.33802946 -0.72443942]\n", + " [ 0.59613143 0.3086034 -0.74120933]\n", + " [ 0.59055112 0.27836275 -0.75747182]\n", + " [ 0.58404301 0.24746818 -0.77308037]\n", + " [ 0.57663154 0.21608906 -0.78790963]\n", + " [ 0.43914249 0.44867095 -0.77836255]\n", + " [ 0.43368277 0.42012431 -0.79712911]\n", + " [ 0.42756123 0.39042296 -0.81532896]\n", + " [ 0.42078265 0.35971168 -0.83279618]\n", + " [ 0.41336268 0.32814815 -0.84938218]\n", + " [ 0.40532853 0.29590419 -0.86495636]\n", + " [ 0.56430339 0.20989092 -0.79844066]\n", + " [ 0.53645754 0.22400867 -0.81365437]\n", + " [ 0.50734472 0.23814242 -0.82818447]\n", + " [ 0.47709887 0.25219369 -0.84188777]\n", + " [ 0.44586993 0.26606763 -0.85463912]\n", + " [ 0.41382481 0.27967329 -0.86633243]\n", + " [ 0.60553189 0.37627317 -0.70124862]\n", + " [ 0.60553189 0.37627317 -0.70124862]\n", + " [ 0.40235311 0.2843952 -0.8701904 ]\n", + " [ 0.40235311 0.2843952 -0.8701904 ]\n", + " [ 0.59535667 0.37189364 -0.71221173]\n", + " [ 0.59156063 0.34338228 -0.72948244]\n", + " [ 0.58683089 0.31388961 -0.74639321]\n", + " [ 0.58117362 0.28356827 -0.76277536]\n", + " [ 0.57460285 0.25257876 -0.77848284]\n", + " [ 0.56714262 0.22109073 -0.79339028]\n", + " [ 0.56862746 0.38707884 -0.72583248]\n", + " [ 0.564527 0.35845158 -0.74351982]\n", + " [ 0.55953887 0.32880579 -0.76079104]\n", + " [ 0.55366699 0.29829228 -0.77747963]\n", + " [ 0.54692388 0.26707111 -0.79344016]\n", + " [ 0.53933296 0.23531278 -0.80854676]\n", + " [ 0.54060681 0.40198725 -0.73901998]\n", + " [ 0.53620101 0.37329526 -0.75705952]\n", + " [ 0.53095509 0.34354909 -0.77463586]\n", + " [ 0.52487162 0.3128978 -0.7915837 ]\n", + " [ 0.51796261 0.28150102 -0.80775733]\n", + " [ 0.51025154 0.24953009 -0.82302983]\n", + " [ 0.51143555 0.41651725 -0.7516296 ]\n", + " [ 0.50672072 0.38781101 -0.76995891]\n", + " [ 0.50121547 0.3580171 -0.78778602]\n", + " [ 0.49492208 0.32728298 -0.80494595]\n", + " [ 0.48785294 0.29576783 -0.82129221]\n", + " [ 0.48003221 0.26364357 -0.83669657]\n", + " [ 0.48126421 0.43057212 -0.76353939]\n", + " [ 0.47623557 0.40190112 -0.78209665]\n", + " [ 0.47046897 0.37211172 -0.80011988]\n", + " [ 0.46396735 0.34135003 -0.81744385]\n", + " [ 0.45674416 0.30977467 -0.83392111]\n", + " [ 0.44882471 0.27755779 -0.84942219]\n", + " [ 0.4502551 0.444061 -0.77464842]\n", + " [ 0.44490838 0.41547355 -0.79337145]\n", + " [ 0.43887937 0.38574025 -0.81153519]\n", + " [ 0.43217231 0.35500615 -0.8289739 ]\n", + " [ 0.42480222 0.32342918 -0.84553926]\n", + " [ 0.41679579 0.29118134 -0.86110086]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:fp_optics: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:fp_optics: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:cartToSphere: vec: [[-0.06776146 -0.44603998 0.89244424]\n", + " [-0.0893115 -0.46113764 0.88282248]\n", + " [-0.11121663 -0.47616259 0.87229585]\n", + " [-0.13338581 -0.49103482 0.86086761]\n", + " [-0.15572905 -0.50567916 0.84854997]\n", + " [-0.17815605 -0.52002449 0.83536516]\n", + " [-0.20057578 -0.5340037 0.8213461 ]\n", + " [-0.22289696 -0.54755416 0.80653666]\n", + " [-0.06776146 -0.44603998 0.89244424]\n", + " [-0.08618906 -0.42528352 0.90094693]\n", + " [-0.10456171 -0.40429009 0.90863434]\n", + " [-0.12281084 -0.38314827 0.91548616]\n", + " [-0.14087066 -0.36195178 0.92149138]\n", + " [-0.15867853 -0.34079987 0.92664803]\n", + " [-0.17617504 -0.31979796 0.93096274]\n", + " [-0.19330373 -0.29905855 0.93445045]\n", + " [-0.22289696 -0.54755416 0.80653666]\n", + " [-0.2418404 -0.52599903 0.81537614]\n", + " [-0.26050763 -0.50404231 0.82345438]\n", + " [-0.27882792 -0.48177757 0.83074988]\n", + " [-0.29673539 -0.45930198 0.83725134]\n", + " [-0.31416922 -0.4367156 0.8429574 ]\n", + " [-0.3310733 -0.41412155 0.84787606]\n", + " [-0.34739508 -0.39162704 0.85202401]\n", + " [-0.19330373 -0.29905855 0.93445045]\n", + " [-0.21515799 -0.31218957 0.92533492]\n", + " [-0.23722176 -0.32547955 0.91530809]\n", + " [-0.259399 -0.33884488 0.9043762 ]\n", + " [-0.28159599 -0.35220923 0.89255384]\n", + " [-0.30372082 -0.36550281 0.8798644 ]\n", + " [-0.32568328 -0.37866164 0.86634044]\n", + " [-0.34739508 -0.39162704 0.85202401]\n", + " [-0.07717105 -0.45255544 0.8883908 ]\n", + " [-0.10383381 -0.47101993 0.87599016]\n", + " [-0.13093916 -0.48929526 0.86223262]\n", + " [-0.15832106 -0.50724108 0.8471369 ]\n", + " [-0.18581323 -0.52472648 0.83074398]\n", + " [-0.21324794 -0.54162972 0.81311904]\n", + " [-0.07587145 -0.43707604 0.89621876]\n", + " [-0.09842871 -0.41146578 0.90609475]\n", + " [-0.12083483 -0.3855869 0.91472493]\n", + " [-0.14296754 -0.35960982 0.92208517]\n", + " [-0.16471152 -0.3337173 0.92817179]\n", + " [-0.18595864 -0.30810635 0.93300046]\n", + " [-0.23110957 -0.5381657 0.81053442]\n", + " [-0.25415014 -0.51146623 0.82085931]\n", + " [-0.27670522 -0.48425617 0.83001819]\n", + " [-0.29865143 -0.45671296 0.83798603]\n", + " [-0.31987681 -0.42902086 0.84476028]\n", + " [-0.34027957 -0.40137127 0.85035929]\n", + " [-0.20274246 -0.30482944 0.93057751]\n", + " [-0.22968056 -0.32104224 0.91879199]\n", + " [-0.25683774 -0.33740972 0.9056429 ]\n", + " [-0.28404052 -0.35378835 0.89115362]\n", + " [-0.31111971 -0.37004959 0.87536725]\n", + " [-0.33790998 -0.38607784 0.85834768]\n", + " [-0.06789747 -0.44602116 0.89244331]\n", + " [-0.06789747 -0.44602116 0.89244331]\n", + " [-0.34726659 -0.39165972 0.85206137]\n", + " [-0.34726659 -0.39165972 0.85206137]\n", + " [-0.08517478 -0.44357392 0.89218128]\n", + " [-0.10780203 -0.4178477 0.90209868]\n", + " [-0.13025658 -0.39183419 0.91076846]\n", + " [-0.15241567 -0.36570383 0.91816675]\n", + " [-0.17416374 -0.33963885 0.92429024]\n", + " [-0.19539268 -0.31383532 0.92915504]\n", + " [-0.11191198 -0.46194655 0.87981878]\n", + " [-0.13471016 -0.43592568 0.88984379]\n", + " [-0.15727523 -0.40956789 0.89862041]\n", + " [-0.17948319 -0.38304418 0.90612524]\n", + " [-0.20121802 -0.3565358 0.91235603]\n", + " [-0.2223719 -0.33023631 0.91733021]\n", + " [-0.13907695 -0.48014689 0.8660927 ]\n", + " [-0.16200447 -0.4538817 0.87621113]\n", + " [-0.18463918 -0.42723409 0.88508723]\n", + " [-0.20685623 -0.40037631 0.89269777]\n", + " [-0.22853964 -0.37348947 0.8990413 ]\n", + " [-0.24958236 -0.34676529 0.90413632]\n", + " [-0.16650319 -0.49803507 0.8510216 ]\n", + " [-0.18951697 -0.471577 0.86121917]\n", + " [-0.21217888 -0.44469447 0.87018788]\n", + " [-0.2343638 -0.41756144 0.87790435]\n", + " [-0.25595638 -0.39035957 0.88436742]\n", + " [-0.27685088 -0.36327963 0.88959626]\n", + " [-0.19402392 -0.51548075 0.83464622]\n", + " [-0.21707958 -0.4888829 0.84490826]\n", + " [-0.23972535 -0.46182176 0.85396277]\n", + " [-0.26183647 -0.43447301 0.86178586]\n", + " [-0.28329878 -0.40701934 0.8683761 ]\n", + " [-0.30400818 -0.37965139 0.87375274]\n", + " [-0.22147098 -0.53236274 0.81703153]\n", + " [-0.24452346 -0.50567992 0.82734279]\n", + " [-0.26710975 -0.47849823 0.83647584]\n", + " [-0.28910603 -0.45099476 0.84440596]\n", + " [-0.31039972 -0.42335337 0.85113098]\n", + " [-0.33088847 -0.39576518 0.85666956]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:fp_optics: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:fp_optics: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:cartToSphere: vec: [[ 6.11660386e-02 9.92986728e-01 -1.01173481e-01]\n", + " [ 6.08928257e-02 9.95376553e-01 -7.42804224e-02]\n", + " [ 6.04210750e-02 9.97076178e-01 -4.67802095e-02]\n", + " [ 5.97593553e-02 9.98036105e-01 -1.87816847e-02]\n", + " [ 5.89177058e-02 9.98216655e-01 9.60281137e-03]\n", + " [ 5.79058746e-02 9.97588644e-01 3.82597347e-02]\n", + " [ 5.67325214e-02 9.96133689e-01 6.70752911e-02]\n", + " [ 5.54050672e-02 9.93844351e-01 9.59358342e-02]\n", + " [ 6.11660386e-02 9.92986728e-01 -1.01173481e-01]\n", + " [ 3.44132097e-02 9.93956462e-01 -1.04241466e-01]\n", + " [ 7.05175847e-03 9.94217649e-01 -1.07151949e-01]\n", + " [-2.08070187e-02 9.93725097e-01 -1.09897674e-01]\n", + " [-4.90484403e-02 9.92443481e-01 -1.12473054e-01]\n", + " [-7.75571308e-02 9.90348001e-01 -1.14872659e-01]\n", + " [-1.06218121e-01 9.87424691e-01 -1.17090523e-01]\n", + " [-1.34917244e-01 9.83670551e-01 -1.19120042e-01]\n", + " [ 5.54050672e-02 9.93844351e-01 9.59358342e-02]\n", + " [ 2.75460908e-02 9.95131174e-01 9.46317091e-02]\n", + " [-9.07276389e-04 9.95644363e-01 9.32280987e-02]\n", + " [-2.98396518e-02 9.95337086e-01 9.17261120e-02]\n", + " [-5.91380658e-02 9.94172852e-01 9.01278533e-02]\n", + " [-8.86895435e-02 9.92125569e-01 8.84365372e-02]\n", + " [-1.18378811e-01 9.89180009e-01 8.66566002e-02]\n", + " [-1.48087533e-01 9.85332484e-01 8.47937412e-02]\n", + " [-1.34917244e-01 9.83670551e-01 -1.19120042e-01]\n", + " [-1.37052346e-01 9.86345987e-01 -9.13140125e-02]\n", + " [-1.39125135e-01 9.88276386e-01 -6.28806915e-02]\n", + " [-1.41120524e-01 9.89410759e-01 -3.39315125e-02]\n", + " [-1.43025285e-01 9.89708454e-01 -4.57655087e-03]\n", + " [-1.44827851e-01 9.89139141e-01 2.50729597e-02]\n", + " [-1.46518146e-01 9.87683223e-01 5.49024916e-02]\n", + " [-1.48087533e-01 9.85332484e-01 8.47937412e-02]\n", + " [ 6.09809982e-02 9.94114657e-01 -8.95397440e-02]\n", + " [ 6.05106630e-02 9.96586611e-01 -5.61568107e-02]\n", + " [ 5.97505176e-02 9.97971552e-01 -2.19694549e-02]\n", + " [ 5.87185718e-02 9.98192296e-01 1.28167660e-02]\n", + " [ 5.74326873e-02 9.97195149e-01 4.79929200e-02]\n", + " [ 5.59082849e-02 9.94950810e-01 8.33495616e-02]\n", + " [ 4.95823812e-02 9.93502841e-01 -1.02438726e-01]\n", + " [ 1.63699155e-02 9.94221446e-01 -1.06093085e-01]\n", + " [-1.76467315e-02 9.93829747e-01 -1.09503547e-01]\n", + " [-5.22576139e-02 9.92258553e-01 -1.12659244e-01]\n", + " [-8.72504437e-02 9.89462244e-01 -1.15550109e-01]\n", + " [-1.22413887e-01 9.85419657e-01 -1.18164882e-01]\n", + " [ 4.33438834e-02 9.94506381e-01 9.52804543e-02]\n", + " [ 8.78549935e-03 9.95569792e-01 9.36141246e-02]\n", + " [-2.65507216e-02 9.95423479e-01 9.17995446e-02]\n", + " [-6.24558586e-02 9.93995980e-01 8.98401750e-02]\n", + " [-9.87216524e-02 9.91239318e-01 8.77419537e-02]\n", + " [-1.35134571e-01 9.87130222e-01 8.55135820e-02]\n", + " [-1.35756303e-01 9.84939251e-01 -1.07074260e-01]\n", + " [-1.38332215e-01 9.87724342e-01 -7.25590997e-02]\n", + " [-1.40799513e-01 9.89338523e-01 -3.72126856e-02]\n", + " [-1.43133084e-01 9.89702676e-01 -1.23815468e-03]\n", + " [-1.45311619e-01 9.88761016e-01 3.51594573e-02]\n", + " [-1.47317169e-01 9.86482160e-01 7.17676824e-02]\n", + " [ 6.10751182e-02 9.93000479e-01 -1.01093415e-01]\n", + " [ 6.10751182e-02 9.93000479e-01 -1.01093415e-01]\n", + " [-1.47980891e-01 9.85356735e-01 8.46980596e-02]\n", + " [-1.47980891e-01 9.85356735e-01 8.46980596e-02]\n", + " [ 4.94359233e-02 9.94637835e-01 -9.08386804e-02]\n", + " [ 1.60734631e-02 9.95406877e-01 -9.43758100e-02]\n", + " [-1.80928395e-02 9.95052204e-01 -9.76921677e-02]\n", + " [-5.28512563e-02 9.93504127e-01 -1.00778437e-01]\n", + " [-8.79889537e-02 9.90716812e-01 -1.03625006e-01]\n", + " [-1.23294325e-01 9.86669001e-01 -1.06220488e-01]\n", + " [ 4.88316044e-02 9.97160883e-01 -5.73205674e-02]\n", + " [ 1.50885726e-02 9.98053038e-01 -6.05183379e-02]\n", + " [-1.94542854e-02 9.97788117e-01 -6.35641780e-02]\n", + " [-5.45828145e-02 9.96295608e-01 -6.64513124e-02]\n", + " [-9.00841092e-02 9.93529228e-01 -6.91702748e-02]\n", + " [-1.25746223e-01 9.89467402e-01 -7.17087682e-02]\n", + " [ 4.79611381e-02 9.98584480e-01 -2.29948893e-02]\n", + " [ 1.39080858e-02 9.99569150e-01 -2.58472212e-02]\n", + " [-2.09388303e-02 9.99371076e-01 -2.86184774e-02]\n", + " [-5.63658302e-02 9.97919352e-01 -3.13027210e-02]\n", + " [-9.21612091e-02 9.95167210e-01 -3.38900434e-02]\n", + " [-1.28112803e-01 9.91092594e-01 -3.63673015e-02]\n", + " [ 4.68442856e-02 9.98830945e-01 1.19312732e-02]\n", + " [ 1.25545258e-02 9.99876736e-01 9.42845250e-03]\n", + " [-2.25232534e-02 9.99722256e-01 6.93636051e-03]\n", + " [-5.81770133e-02 9.98296318e-01 4.46057801e-03]\n", + " [-9.41965796e-02 9.95551586e-01 2.01094107e-03]\n", + " [-1.30369405e-01 9.91465410e-01 -3.99458815e-04]\n", + " [ 4.54994368e-02 9.97846372e-01 4.72484797e-02]\n", + " [ 1.10464282e-02 9.98921444e-01 4.50990698e-02]\n", + " [-2.41896612e-02 9.98786846e-01 4.28916952e-02]\n", + " [-5.99986597e-02 9.97371173e-01 4.06313092e-02]\n", + " [-9.61716348e-02 9.94626605e-01 3.83266530e-02]\n", + " [-1.32495542e-01 9.90530001e-01 3.59895657e-02]\n", + " [ 4.39419543e-02 9.95601349e-01 8.27469563e-02]\n", + " [ 9.39834143e-03 9.96673508e-01 8.09542445e-02]\n", + " [-2.59243407e-02 9.96534567e-01 7.90366024e-02]\n", + " [-6.18170452e-02 9.95113045e-01 7.69979229e-02]\n", + " [-9.80714657e-02 9.92360932e-01 7.48449577e-02]\n", + " [-1.34474154e-01 9.88254918e-01 7.25873189e-02]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:fp_optics: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:cartToSphere: vec: [[-0.28558128 0.41335667 -0.86462685]\n", + " [-0.27103028 0.39484068 -0.87786299]\n", + " [-0.2558522 0.37573944 -0.89070732]\n", + " [-0.24011271 0.35610912 -0.90306821]\n", + " [-0.22387722 0.33601064 -0.91486384]\n", + " [-0.20721116 0.31550985 -0.92602218]\n", + " [-0.19018035 0.29467759 -0.93648094]\n", + " [-0.17285148 0.27358951 -0.94618769]\n", + " [-0.28558128 0.41335667 -0.86462685]\n", + " [-0.26560423 0.43127269 -0.86224026]\n", + " [-0.24490585 0.44915573 -0.85923236]\n", + " [-0.22357328 0.46691913 -0.85557087]\n", + " [-0.20169344 0.48448013 -0.85123367]\n", + " [-0.17935332 0.50175974 -0.84620893]\n", + " [-0.1566405 0.51868267 -0.84049512]\n", + " [-0.13364354 0.53517769 -0.83410086]\n", + " [-0.17285148 0.27358951 -0.94618769]\n", + " [-0.15106434 0.29096522 -0.94473213]\n", + " [-0.12870837 0.30846142 -0.9424891 ]\n", + " [-0.10586688 0.32599482 -0.93942513]\n", + " [-0.08262399 0.34348557 -0.9355164 ]\n", + " [-0.0590662 0.36085623 -0.93074914]\n", + " [-0.03528318 0.37803132 -0.92512022]\n", + " [-0.01136774 0.39493767 -0.91863759]\n", + " [-0.13364354 0.53517769 -0.83410086]\n", + " [-0.11712716 0.51716175 -0.84783545]\n", + " [-0.10018646 0.49837634 -0.86115254]\n", + " [-0.08288433 0.47887361 -0.87396239]\n", + " [-0.0652845 0.45871094 -0.88618407]\n", + " [-0.04745265 0.43795217 -0.89774503]\n", + " [-0.02945691 0.41666836 -0.90858118]\n", + " [-0.01136774 0.39493767 -0.91863759]\n", + " [-0.27925077 0.40542025 -0.8704329 ]\n", + " [-0.26098559 0.38232659 -0.88640448]\n", + " [-0.24184391 0.358409 -0.90169535]\n", + " [-0.22194628 0.33377766 -0.91615082]\n", + " [-0.20141315 0.30855378 -0.92963827]\n", + " [-0.18036609 0.28286982 -0.9420471 ]\n", + " [-0.27691632 0.42110423 -0.8637063 ]\n", + " [-0.25193486 0.44305125 -0.86036877]\n", + " [-0.22595661 0.46486227 -0.85606464]\n", + " [-0.19914171 0.48638335 -0.85074898]\n", + " [-0.17165035 0.50746901 -0.8444 ]\n", + " [-0.14364417 0.52798235 -0.83701911]\n", + " [-0.16348744 0.2812178 -0.94561536]\n", + " [-0.13639265 0.30260597 -0.94330624]\n", + " [-0.10852612 0.32409179 -0.93978008]\n", + " [-0.08004228 0.34552689 -0.93498898]\n", + " [-0.05110046 0.36676864 -0.9289077 ]\n", + " [-0.0218671 0.38767901 -0.92153503]\n", + " [-0.12657789 0.52736464 -0.84015747]\n", + " [-0.10604291 0.50475995 -0.85672183]\n", + " [-0.0849329 0.48105092 -0.87256886]\n", + " [-0.06336478 0.45634091 -0.88754599]\n", + " [-0.04145948 0.43074759 -0.90151962]\n", + " [-0.01934345 0.40440472 -0.91437555]\n", + " [-0.28546568 0.41335563 -0.86466553]\n", + " [-0.28546568 0.41335563 -0.86466553]\n", + " [-0.01151157 0.39495537 -0.91862818]\n", + " [-0.01151157 0.39495537 -0.91862818]\n", + " [-0.27063411 0.41317269 -0.86950877]\n", + " [-0.24547173 0.43513834 -0.8662553 ]\n", + " [-0.21932696 0.45697961 -0.86201236]\n", + " [-0.19235939 0.47854264 -0.85673497]\n", + " [-0.16472873 0.4996818 -0.8504014 ]\n", + " [-0.13659647 0.52025977 -0.84301315]\n", + " [-0.25219123 0.39007612 -0.88557338]\n", + " [-0.22655352 0.41205697 -0.88254323]\n", + " [-0.1999739 0.43394872 -0.87846397]\n", + " [-0.17261003 0.45559792 -0.87329051]\n", + " [-0.14462027 0.4768586 -0.86700107]\n", + " [-0.11616606 0.49759227 -0.85959722]\n", + " [-0.232891 0.36613503 -0.90094779]\n", + " [-0.20683203 0.38807478 -0.89811941]\n", + " [-0.17987078 0.40996393 -0.89419018]\n", + " [-0.15216297 0.43164977 -0.88911467]\n", + " [-0.12386606 0.45298628 -0.88287067]\n", + " [-0.09514206 0.47383408 -0.87545945]\n", + " [-0.21285352 0.34145943 -0.91547738]\n", + " [-0.18642562 0.36330109 -0.91282956]\n", + " [-0.15913432 0.38513351 -0.9090371 ]\n", + " [-0.13113395 0.40680506 -0.90405394]\n", + " [-0.1025818 0.42817015 -0.89785706]\n", + " [-0.07364095 0.44908903 -0.89044711]\n", + " [-0.19219875 0.31617062 -0.92902948]\n", + " [-0.16545299 0.33785726 -0.92654076]\n", + " [-0.13788247 0.35957854 -0.92287144]\n", + " [-0.10964098 0.38118417 -0.91797466]\n", + " [-0.08088635 0.40252956 -0.91182638]\n", + " [-0.05178307 0.42347522 -0.90442648]\n", + " [-0.17104805 0.29040138 -0.94149328]\n", + " [-0.14403526 0.31187706 -0.93914138]\n", + " [-0.11623674 0.33343356 -0.93558061]\n", + " [-0.08780664 0.35492202 -0.93076332]\n", + " [-0.05890383 0.37619925 -0.92466451]\n", + " [-0.02969428 0.39712675 -0.91728327]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:fp_optics: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:cartToSphere: vec: [[0.39674546 0.79541166 0.458163 ]\n", + " [0.39786361 0.78118519 0.48109693]\n", + " [0.39857019 0.76612656 0.50417448]\n", + " [0.39885407 0.75026139 0.52727913]\n", + " [0.39870878 0.73362444 0.55029672]\n", + " [0.39813115 0.7162592 0.57311809]\n", + " [0.3971207 0.69821774 0.59564011]\n", + " [0.39567954 0.67956068 0.61776613]\n", + " [0.39674546 0.79541166 0.458163 ]\n", + " [0.37190403 0.80503755 0.46217089]\n", + " [0.34624925 0.81419479 0.46604539]\n", + " [0.31987022 0.82281536 0.4697424 ]\n", + " [0.29286254 0.83083883 0.47322127]\n", + " [0.26532611 0.83821264 0.47644688]\n", + " [0.23736415 0.8448922 0.47939069]\n", + " [0.20908293 0.85084105 0.48203096]\n", + " [0.39567954 0.67956068 0.61776613]\n", + " [0.36995096 0.68865627 0.62360952]\n", + " [0.34339488 0.69738437 0.62907472]\n", + " [0.31610359 0.70567831 0.63411091]\n", + " [0.28817063 0.71347932 0.63867437]\n", + " [0.25969309 0.72073585 0.64272804]\n", + " [0.23077397 0.72740325 0.64624135]\n", + " [0.2015231 0.73344402 0.64919051]\n", + " [0.20908293 0.85084105 0.48203096]\n", + " [0.20857652 0.83677114 0.50627057]\n", + " [0.20788508 0.82174642 0.53058139]\n", + " [0.20700298 0.80579117 0.55484265]\n", + " [0.20592644 0.78893717 0.57894079]\n", + " [0.2046536 0.77122523 0.60276741]\n", + " [0.20318486 0.75270666 0.62621769]\n", + " [0.2015231 0.73344402 0.64919051]\n", + " [0.39719883 0.78934607 0.46815155]\n", + " [0.39829334 0.7713477 0.49637197]\n", + " [0.39875814 0.75212368 0.52469221]\n", + " [0.39857946 0.73173423 0.55290092]\n", + " [0.39775142 0.71025939 0.58079722]\n", + " [0.39627418 0.68779859 0.60819394]\n", + " [0.386024 0.79961438 0.46000252]\n", + " [0.35501966 0.81110572 0.46483174]\n", + " [0.3228812 0.82182479 0.46941639]\n", + " [0.28978215 0.83165712 0.47367999]\n", + " [0.2559063 0.84050598 0.47755803]\n", + " [0.22144495 0.84829263 0.48100078]\n", + " [0.3845751 0.683632 0.62028162]\n", + " [0.35247409 0.69454192 0.62719498]\n", + " [0.31922173 0.7048326 0.63348914]\n", + " [0.28498968 0.71439259 0.63908067]\n", + " [0.24995697 0.72312695 0.64390133]\n", + " [0.21431607 0.7309564 0.64789766]\n", + " [0.20898197 0.84480604 0.49257414]\n", + " [0.20823863 0.82691698 0.52234566]\n", + " [0.2072114 0.80761711 0.55210328]\n", + " [0.20589253 0.78696184 0.58163505]\n", + " [0.20427866 0.76502644 0.61074117]\n", + " [0.20237152 0.74191006 0.63923019]\n", + " [0.39666649 0.79539808 0.45825493]\n", + " [0.39666649 0.79539808 0.45825493]\n", + " [0.20162957 0.73349152 0.64910377]\n", + " [0.20162957 0.73349152 0.64910377]\n", + " [0.38651547 0.79356401 0.46995952]\n", + " [0.35539051 0.80506253 0.47494412]\n", + " [0.3231267 0.8157924 0.4796581 ]\n", + " [0.28989901 0.82563928 0.48402309]\n", + " [0.25589166 0.83450636 0.48797396]\n", + " [0.22129617 0.84231472 0.491461 ]\n", + " [0.387505 0.7755583 0.49834647]\n", + " [0.35607337 0.78704607 0.50375612]\n", + " [0.32349384 0.79778022 0.50882065]\n", + " [0.28994331 0.80764663 0.51345866]\n", + " [0.25560587 0.81654826 0.51760465]\n", + " [0.22067326 0.8244053 0.52120938]\n", + " [0.38788282 0.75630938 0.52682354]\n", + " [0.35620039 0.76774094 0.53263039]\n", + " [0.32336542 0.77844037 0.53801988]\n", + " [0.2895543 0.7882939 0.54290979]\n", + " [0.25494983 0.79720415 0.54723498]\n", + " [0.21974377 0.80509041 0.55094656]\n", + " [0.38763661 0.73587754 0.55517754]\n", + " [0.35576148 0.74720727 0.5613511 ]\n", + " [0.32273188 0.75783227 0.56704003]\n", + " [0.28872246 0.76763919 0.57216205]\n", + " [0.25391436 0.77653074 0.57665198]\n", + " [0.21849948 0.78442568 0.58046045]\n", + " [0.38676088 0.71434283 0.58320694]\n", + " [0.35475113 0.72552487 0.58971629]\n", + " [0.32158695 0.73603494 0.59567978]\n", + " [0.28744116 0.74576043 0.60101494]\n", + " [0.25249355 0.75460466 0.6056557 ]\n", + " [0.21693624 0.76248665 0.60955129]\n", + " [0.38525572 0.69180483 0.61072425]\n", + " [0.35316853 0.70279363 0.61753794]\n", + " [0.31992884 0.71314849 0.62375057]\n", + " [0.2857084 0.72275765 0.62927902]\n", + " [0.2506863 0.73152565 0.63405567]\n", + " [0.21505494 0.73937266 0.63802778]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:fp_optics: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:cartToSphere: vec: [[ 0.43318919 0.68599101 -0.58460539]\n", + " [ 0.44971503 0.69324501 -0.56317648]\n", + " [ 0.46620572 0.70008208 -0.54086718]\n", + " [ 0.48257593 0.70644471 -0.51774157]\n", + " [ 0.49874504 0.71228254 -0.49386939]\n", + " [ 0.51463628 0.71755214 -0.46932763]\n", + " [ 0.53017665 0.72221733 -0.44420136]\n", + " [ 0.54529742 0.72624963 -0.41858355]\n", + " [ 0.43318919 0.68599101 -0.58460539]\n", + " [ 0.41341887 0.70534746 -0.57582097]\n", + " [ 0.39342343 0.72407727 -0.56650694]\n", + " [ 0.37328751 0.74211636 -0.55670436]\n", + " [ 0.35310096 0.75940924 -0.54645889]\n", + " [ 0.3329591 0.77590901 -0.53582035]\n", + " [ 0.31296352 0.79157704 -0.52484247]\n", + " [ 0.29322285 0.80638267 -0.51358286]\n", + " [ 0.54529742 0.72624963 -0.41858355]\n", + " [ 0.5247547 0.74622609 -0.4096085 ]\n", + " [ 0.50380838 0.76546901 -0.40029279]\n", + " [ 0.48254799 0.78391183 -0.39067849]\n", + " [ 0.46106682 0.80149867 -0.38081133]\n", + " [ 0.43946113 0.8181843 -0.3707403 ]\n", + " [ 0.41783032 0.83393342 -0.3605175 ]\n", + " [ 0.396278 0.84871944 -0.35019859]\n", + " [ 0.29322285 0.80638267 -0.51358286]\n", + " [ 0.30779491 0.81426835 -0.492168 ]\n", + " [ 0.32255449 0.82162672 -0.46998737]\n", + " [ 0.33741228 0.82839912 -0.44711056]\n", + " [ 0.35228627 0.83453438 -0.42361155]\n", + " [ 0.36710089 0.83998883 -0.3995694 ]\n", + " [ 0.38178633 0.84472648 -0.37506849]\n", + " [ 0.396278 0.84871944 -0.35019859]\n", + " [ 0.44032574 0.68926849 -0.57534528]\n", + " [ 0.46056658 0.69788692 -0.54848178]\n", + " [ 0.48066938 0.70582104 -0.52035911]\n", + " [ 0.50048382 0.71297516 -0.4911032 ]\n", + " [ 0.51986861 0.7192694 -0.4608559 ]\n", + " [ 0.53869105 0.7246403 -0.42977713]\n", + " [ 0.42465834 0.6945288 -0.58077107]\n", + " [ 0.40026517 0.71783981 -0.56964357]\n", + " [ 0.37561728 0.74014485 -0.55776093]\n", + " [ 0.35087788 0.7613382 -0.54520534]\n", + " [ 0.32622257 0.78133343 -0.53206851]\n", + " [ 0.30184125 0.80006281 -0.51845093]\n", + " [ 0.53634499 0.73503226 -0.41480313]\n", + " [ 0.51088549 0.75903102 -0.40356899]\n", + " [ 0.48490838 0.78186072 -0.39186435]\n", + " [ 0.45858386 0.80341403 -0.37977195]\n", + " [ 0.4320892 0.82360758 -0.36738192]\n", + " [ 0.40560903 0.84238008 -0.35479165]\n", + " [ 0.29961477 0.80983247 -0.50438315]\n", + " [ 0.31761367 0.81915031 -0.47761316]\n", + " [ 0.33580448 0.82761702 -0.44976151]\n", + " [ 0.35403321 0.83513532 -0.42096257]\n", + " [ 0.37216069 0.84162479 -0.39136189]\n", + " [ 0.39006056 0.84702256 -0.36111708]\n", + " [ 0.43317852 0.68608364 -0.58450458]\n", + " [ 0.43317852 0.68608364 -0.58450458]\n", + " [ 0.39630229 0.84865818 -0.35031955]\n", + " [ 0.39630229 0.84865818 -0.35031955]\n", + " [ 0.43177073 0.69774594 -0.57159832]\n", + " [ 0.40726526 0.72113815 -0.56044159]\n", + " [ 0.38248518 0.74350889 -0.54854318]\n", + " [ 0.35759368 0.76475226 -0.53598577]\n", + " [ 0.33276583 0.78478198 -0.5228615 ]\n", + " [ 0.30819056 0.80353068 -0.50927108]\n", + " [ 0.45192364 0.70644555 -0.54470148]\n", + " [ 0.42713236 0.73004112 -0.53347719]\n", + " [ 0.40201333 0.75257482 -0.52155194]\n", + " [ 0.37673024 0.77394022 -0.50900968]\n", + " [ 0.35145713 0.79405156 -0.49594355]\n", + " [ 0.32638044 0.81284265 -0.48245479]\n", + " [ 0.47195458 0.71444541 -0.51655265]\n", + " [ 0.44692549 0.73820422 -0.50528422]\n", + " [ 0.42151956 0.7608661 -0.49335995]\n", + " [ 0.3959017 0.78232417 -0.48086457]\n", + " [ 0.37024578 0.80249324 -0.46789172]\n", + " [ 0.34473642 0.82130852 -0.45454275]\n", + " [ 0.49171369 0.72164935 -0.48727801]\n", + " [ 0.46649581 0.74553015 -0.47598997]\n", + " [ 0.44085539 0.76828475 -0.46409597]\n", + " [ 0.41495899 0.7898059 -0.45168095]\n", + " [ 0.38898109 0.81000905 -0.4388383 ]\n", + " [ 0.36310542 0.82883081 -0.42566882]\n", + " [ 0.51106023 0.72797698 -0.45701965]\n", + " [ 0.48570418 0.75193731 -0.44573729]\n", + " [ 0.45988298 0.77474852 -0.43390364]\n", + " [ 0.43376497 0.79630318 -0.42160313]\n", + " [ 0.40752571 0.81651733 -0.40892817]\n", + " [ 0.3813489 0.83532876 -0.39597837]\n", + " [ 0.52986202 0.73336439 -0.42593768]\n", + " [ 0.50442009 0.75736086 -0.4146865 ]\n", + " [ 0.47847362 0.7801922 -0.40294308]\n", + " [ 0.45219243 0.801751 -0.39079067]\n", + " [ 0.42575333 0.82195378 -0.37832008]\n", + " [ 0.39934065 0.8407391 -0.36562933]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:cartToSphere: vec: [[-0.25265074 -0.51018947 0.82211575]\n", + " [-0.27831437 -0.50276986 0.81839085]\n", + " [-0.30428436 -0.49468662 0.81406153]\n", + " [-0.33043771 -0.48596774 0.80910214]\n", + " [-0.35665665 -0.47664234 0.80349743]\n", + " [-0.38282754 -0.46674154 0.79724238]\n", + " [-0.4088403 -0.4562994 0.79034199]\n", + " [-0.43458842 -0.44535349 0.78281108]\n", + " [-0.25265074 -0.51018947 0.82211575]\n", + " [-0.24577901 -0.48885019 0.83702937]\n", + " [-0.23872275 -0.46662916 0.85162707]\n", + " [-0.23148592 -0.44360892 0.8658091 ]\n", + " [-0.22407809 -0.4198731 0.87948598]\n", + " [-0.21651407 -0.39550774 0.89257789]\n", + " [-0.20881348 -0.37060231 0.90501429]\n", + " [-0.20100023 -0.34525016 0.916734 ]\n", + " [-0.43458842 -0.44535349 0.78281108]\n", + " [-0.42928574 -0.42265624 0.79817007]\n", + " [-0.42353269 -0.39915282 0.81320175]\n", + " [-0.41733275 -0.37491857 0.82781002]\n", + " [-0.41069392 -0.35003324 0.8419069 ]\n", + " [-0.40362914 -0.32458229 0.85541209]\n", + " [-0.39615654 -0.29865736 0.86825329]\n", + " [-0.38829945 -0.27235584 0.88036687]\n", + " [-0.20100023 -0.34525016 0.916734 ]\n", + " [-0.22730876 -0.33607725 0.91399278]\n", + " [-0.253958 -0.32644444 0.91046107]\n", + " [-0.28083172 -0.3163758 0.90611252]\n", + " [-0.30781562 -0.30589887 0.90093031]\n", + " [-0.33479627 -0.29504526 0.89490768]\n", + " [-0.36166115 -0.28385088 0.88804836]\n", + " [-0.38829945 -0.27235584 0.88036687]\n", + " [-0.26377156 -0.50696605 0.82061562]\n", + " [-0.29544782 -0.49742162 0.8156484 ]\n", + " [-0.32746141 -0.48690825 0.80974649]\n", + " [-0.35959341 -0.47547902 0.8028775 ]\n", + " [-0.39163454 -0.46319134 0.79503218]\n", + " [-0.42338362 -0.45010934 0.78622382]\n", + " [-0.2497648 -0.50097451 0.8286387 ]\n", + " [-0.24121937 -0.47421647 0.84671834]\n", + " [-0.23239988 -0.44621599 0.86422311]\n", + " [-0.22332161 -0.4171265 0.88098408]\n", + " [-0.21401178 -0.38710653 0.89685422]\n", + " [-0.20450832 -0.35632238 0.91170758]\n", + " [-0.43224402 -0.43559963 0.78956828]\n", + " [-0.42544108 -0.40723079 0.80818499]\n", + " [-0.41796482 -0.37772544 0.82621359]\n", + " [-0.40982806 -0.34722848 0.84348879]\n", + " [-0.40105466 -0.3158973 0.85986281]\n", + " [-0.39168018 -0.283903 0.8752061 ]\n", + " [-0.21244835 -0.34139641 0.91559499]\n", + " [-0.24493626 -0.32984279 0.91170717]\n", + " [-0.2778201 -0.31762181 0.90660486]\n", + " [-0.31088872 -0.30478267 0.90025315]\n", + " [-0.34393332 -0.29138357 0.89263962]\n", + " [-0.3767474 -0.27749239 0.88377563]\n", + " [-0.25271465 -0.51009388 0.82215542]\n", + " [-0.25271465 -0.51009388 0.82215542]\n", + " [-0.38823636 -0.27248608 0.8803544 ]\n", + " [-0.38823636 -0.27248608 0.8803544 ]\n", + " [-0.26086563 -0.49779324 0.82713422]\n", + " [-0.25242483 -0.47088859 0.84530801]\n", + " [-0.24368113 -0.44274733 0.86289878]\n", + " [-0.2346504 -0.41352158 0.87973808]\n", + " [-0.22536037 -0.38336916 0.89567896]\n", + " [-0.2158494 -0.35245631 0.91059518]\n", + " [-0.29266555 -0.48811031 0.82225008]\n", + " [-0.28452137 -0.46082653 0.84064647]\n", + " [-0.27599593 -0.43232226 0.85844261]\n", + " [-0.26710625 -0.40274632 0.8754711 ]\n", + " [-0.25788095 -0.37225508 0.89158486]\n", + " [-0.24835909 -0.3410151 0.90665675]\n", + " [-0.32480262 -0.47747651 0.81640642]\n", + " [-0.3169581 -0.44986446 0.8349608 ]\n", + " [-0.30865863 -0.42104808 0.85290583]\n", + " [-0.29992144 -0.39117378 0.87007483]\n", + " [-0.29077505 -0.36039732 0.88632028]\n", + " [-0.28125855 -0.32888615 0.90151402]\n", + " [-0.35705877 -0.46594374 0.80957116]\n", + " [-0.3495191 -0.43805151 0.82821934]\n", + " [-0.341455 -0.40897222 0.84625659]\n", + " [-0.33288294 -0.37885086 0.86351663]\n", + " [-0.3238306 -0.34784329 0.87985157]\n", + " [-0.31433644 -0.31611812 0.89513236]\n", + " [-0.38922496 -0.45356864 0.80173526]\n", + " [-0.38199565 -0.42544269 0.82041321]\n", + " [-0.3741762 -0.39614913 0.83848556]\n", + " [-0.36578173 -0.36583244 0.8557864 ]\n", + " [-0.35683847 -0.33464898 0.87216763]\n", + " [-0.34738381 -0.30276859 0.88749967]\n", + " [-0.42109969 -0.44041496 0.79291217]\n", + " [-0.41418504 -0.41210131 0.81155607]\n", + " [-0.40661815 -0.38264246 0.82960619]\n", + " [-0.39841244 -0.35218308 0.84689705]\n", + " [-0.38959241 -0.32088029 0.86328071]\n", + " [-0.38019412 -0.28890493 0.87862755]]\n", + "DEBUG:root:fp_optics: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:fp_optics: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:cartToSphere: vec: [[ 8.81992551e-02 2.16128436e-01 -9.72373072e-01]\n", + " [ 7.63830677e-02 2.41073058e-01 -9.67496464e-01]\n", + " [ 6.42729291e-02 2.66314790e-01 -9.61740829e-01]\n", + " [ 5.19137409e-02 2.91742452e-01 -9.55087067e-01]\n", + " [ 3.93510630e-02 3.17247674e-01 -9.47525940e-01]\n", + " [ 2.66318645e-02 3.42723459e-01 -9.39058771e-01]\n", + " [ 1.38048620e-02 3.68063664e-01 -9.29698104e-01]\n", + " [ 9.20360453e-04 3.93163516e-01 -9.19468109e-01]\n", + " [ 8.81992551e-02 2.16128436e-01 -9.72373072e-01]\n", + " [ 6.19215867e-02 2.04643961e-01 -9.76875922e-01]\n", + " [ 3.56354480e-02 1.93112138e-01 -9.80529356e-01]\n", + " [ 9.44291551e-03 1.81582963e-01 -9.83330290e-01]\n", + " [-1.65546154e-02 1.70110056e-01 -9.85286006e-01]\n", + " [-4.22566019e-02 1.58751041e-01 -9.86413953e-01]\n", + " [-6.75632021e-02 1.47568005e-01 -9.86741556e-01]\n", + " [-9.23749571e-02 1.36627751e-01 -9.86306101e-01]\n", + " [ 9.20360453e-04 3.93163516e-01 -9.19468109e-01]\n", + " [-2.61859350e-02 3.81148375e-01 -9.24142961e-01]\n", + " [-5.31814771e-02 3.68832172e-01 -9.27973361e-01]\n", + " [-7.99601876e-02 3.56268356e-01 -9.30956082e-01]\n", + " [-1.06419237e-01 3.43513388e-01 -9.33098868e-01]\n", + " [-1.32459472e-01 3.30626365e-01 -9.34419978e-01]\n", + " [-1.57984799e-01 3.17669138e-01 -9.34947657e-01]\n", + " [-1.82900665e-01 3.04706968e-01 -9.34719750e-01]\n", + " [-9.23749571e-02 1.36627751e-01 -9.86306101e-01]\n", + " [-1.05368350e-01 1.59903283e-01 -9.81492970e-01]\n", + " [-1.18421808e-01 1.83609151e-01 -9.75840128e-01]\n", + " [-1.31487634e-01 2.07630104e-01 -9.69330048e-01]\n", + " [-1.44517563e-01 2.31855340e-01 -9.61955184e-01]\n", + " [-1.57462667e-01 2.56178114e-01 -9.53718136e-01]\n", + " [-1.70273533e-01 2.80495261e-01 -9.44631850e-01]\n", + " [-1.82900665e-01 3.04706968e-01 -9.34719750e-01]\n", + " [ 8.29962905e-02 2.26921265e-01 -9.70370216e-01]\n", + " [ 6.83101400e-02 2.57707070e-01 -9.63805370e-01]\n", + " [ 5.32272183e-02 2.88828347e-01 -9.55900125e-01]\n", + " [ 3.78310860e-02 3.20084522e-01 -9.46633354e-01]\n", + " [ 2.22082568e-02 3.51278554e-01 -9.36007570e-01]\n", + " [ 6.44910665e-03 3.82215553e-01 -9.24050691e-01]\n", + " [ 7.67094770e-02 2.11214534e-01 -9.74424998e-01]\n", + " [ 4.44840638e-02 1.97100616e-01 -9.79373532e-01]\n", + " [ 1.23475062e-02 1.82964690e-01 -9.83041943e-01]\n", + " [-1.95132241e-02 1.68903953e-01 -9.85439338e-01]\n", + " [-5.09130127e-02 1.55024541e-01 -9.86597819e-01]\n", + " [-8.16682277e-02 1.41442718e-01 -9.86571973e-01]\n", + " [-1.08607071e-02 3.87879876e-01 -9.21645944e-01]\n", + " [-4.40212365e-02 3.72945278e-01 -9.26808476e-01]\n", + " [-7.69097875e-02 3.57611388e-01 -9.30698114e-01]\n", + " [-1.09335645e-01 3.41980931e-01 -9.33324573e-01]\n", + " [-1.41116197e-01 3.26162708e-01 -9.34721406e-01]\n", + " [-1.72075270e-01 3.10271952e-01 -9.34944607e-01]\n", + " [-9.79456318e-02 1.46752986e-01 -9.84312051e-01]\n", + " [-1.13916327e-01 1.75585229e-01 -9.77851163e-01]\n", + " [-1.29930066e-01 2.04948743e-01 -9.70110401e-01]\n", + " [-1.45898245e-01 2.34637700e-01 -9.61071720e-01]\n", + " [-1.61730808e-01 2.64455533e-01 -9.50739931e-01]\n", + " [-1.77336728e-01 2.94213706e-01 -9.39143216e-01]\n", + " [ 8.80696674e-02 2.16173962e-01 -9.72374697e-01]\n", + " [ 8.80696674e-02 2.16173962e-01 -9.72374697e-01]\n", + " [-1.82773795e-01 3.04668717e-01 -9.34757034e-01]\n", + " [-1.82773795e-01 3.04668717e-01 -9.34757034e-01]\n", + " [ 7.15926016e-02 2.21940515e-01 -9.72428356e-01]\n", + " [ 3.92509420e-02 2.07748918e-01 -9.77394368e-01]\n", + " [ 7.00898852e-03 1.93509837e-01 -9.81073298e-01]\n", + " [-2.49458867e-02 1.79320288e-01 -9.83474421e-01]\n", + " [-5.64285603e-02 1.65285972e-01 -9.84630065e-01]\n", + " [-8.72556928e-02 1.51522707e-01 -9.84595000e-01]\n", + " [ 5.67973486e-02 2.52672206e-01 -9.65883439e-01]\n", + " [ 2.41666590e-02 2.38279623e-01 -9.70895872e-01]\n", + " [-8.33300858e-03 2.23769502e-01 -9.74606470e-01]\n", + " [-4.05130387e-02 2.09238720e-01 -9.77025001e-01]\n", + " [-7.21883496e-02 1.94791996e-01 -9.78184502e-01]\n", + " [-1.03176713e-01 1.80543699e-01 -9.78140347e-01]\n", + " [ 4.16265315e-02 2.83748745e-01 -9.57994719e-01]\n", + " [ 8.76740531e-03 2.69183121e-01 -9.63049106e-01]\n", + " [-2.39285642e-02 2.54432348e-01 -9.66794499e-01]\n", + " [-5.62715484e-02 2.39593864e-01 -9.69241091e-01]\n", + " [-8.80766573e-02 2.24772107e-01 -9.70422590e-01]\n", + " [-1.19163069e-01 2.10080343e-01 -9.70394978e-01]\n", + " [ 2.61643167e-02 3.14969772e-01 -9.48740993e-01]\n", + " [-6.86091373e-03 3.00259281e-01 -9.53832948e-01]\n", + " [-3.96902912e-02 2.85297790e-01 -9.57616756e-01]\n", + " [-7.21330663e-02 2.70183965e-01 -9.60102831e-01]\n", + " [-1.04004761e-01 2.55022837e-01 -9.61325316e-01]\n", + " [-1.35126100e-01 2.39927349e-01 -9.61340629e-01]\n", + " [ 1.04979226e-02 3.46138564e-01 -9.38124666e-01]\n", + " [-2.26292331e-02 3.31312242e-01 -9.43249763e-01]\n", + " [-5.55277655e-02 3.16170612e-01 -9.47075927e-01]\n", + " [-8.80065157e-02 3.00814014e-01 -9.49613491e-01]\n", + " [-1.19881669e-01 2.85348816e-01 -9.50896650e-01]\n", + " [-1.50975452e-01 2.69888504e-01 -9.50981918e-01]\n", + " [-5.28167491e-03 3.77060547e-01 -9.26173552e-01]\n", + " [-3.84451710e-02 3.62148675e-01 -9.31327175e-01]\n", + " [-7.13478172e-02 3.46859012e-01 -9.35199612e-01]\n", + " [-1.03798672e-01 3.31293689e-01 -9.37800793e-01]\n", + " [-1.35614789e-01 3.15560849e-01 -9.39164511e-01]\n", + " [-1.66619651e-01 2.99775194e-01 -9.39346967e-01]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:fp_optics: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:cartToSphere: vec: [[-1.42246265e-01 -6.11214869e-01 7.78577154e-01]\n", + " [-1.51317362e-01 -5.90261418e-01 7.92902588e-01]\n", + " [-1.60319583e-01 -5.68396125e-01 8.06984186e-01]\n", + " [-1.69221996e-01 -5.45690771e-01 8.20722546e-01]\n", + " [-1.77993213e-01 -5.22221511e-01 8.34028242e-01]\n", + " [-1.86601311e-01 -4.98069143e-01 8.46821752e-01]\n", + " [-1.95014032e-01 -4.73319482e-01 8.59033291e-01]\n", + " [-2.03199178e-01 -4.48063558e-01 8.70602746e-01]\n", + " [-1.42246265e-01 -6.11214869e-01 7.78577154e-01]\n", + " [-1.16371869e-01 -6.08110125e-01 7.85276807e-01]\n", + " [-8.98910610e-02 -6.04361655e-01 7.91622756e-01]\n", + " [-6.29095145e-02 -5.99971223e-01 7.97544309e-01]\n", + " [-3.55331464e-02 -5.94944562e-01 8.02980924e-01]\n", + " [-7.86841565e-03 -5.89291431e-01 8.07882230e-01]\n", + " [ 1.99773882e-02 -5.83025987e-01 8.12207857e-01]\n", + " [ 4.78961324e-02 -5.76167218e-01 8.15927262e-01]\n", + " [-2.03199178e-01 -4.48063558e-01 8.70602746e-01]\n", + " [-1.76908731e-01 -4.43405452e-01 8.78689311e-01]\n", + " [-1.49937905e-01 -4.38292469e-01 8.86238307e-01]\n", + " [-1.22387224e-01 -4.32725593e-01 8.93179673e-01]\n", + " [-9.43582197e-02 -4.26710065e-01 8.99452637e-01]\n", + " [-6.59552640e-02 -4.20255890e-01 9.05005464e-01]\n", + " [-3.72865537e-02 -4.13378270e-01 9.09795647e-01]\n", + " [-8.46400334e-03 -4.06097844e-01 9.13790404e-01]\n", + " [ 4.78961324e-02 -5.76167218e-01 8.15927262e-01]\n", + " [ 4.02351842e-02 -5.54170544e-01 8.31430176e-01]\n", + " [ 3.23945205e-02 -5.31285280e-01 8.46573414e-01]\n", + " [ 2.44031893e-02 -5.07578768e-01 8.61259704e-01]\n", + " [ 1.62907069e-02 -4.83123536e-01 8.75400629e-01]\n", + " [ 8.08750417e-03 -4.57998928e-01 8.88915955e-01]\n", + " [-1.74893936e-04 -4.32292062e-01 9.01733632e-01]\n", + " [-8.46400334e-03 -4.06097844e-01 9.13790404e-01]\n", + " [-1.46120208e-01 -6.02185753e-01 7.84870183e-01]\n", + " [-1.57194692e-01 -5.75882178e-01 8.02277724e-01]\n", + " [-1.68135196e-01 -5.48279797e-01 8.19219030e-01]\n", + " [-1.78884143e-01 -5.19516996e-01 8.35525317e-01]\n", + " [-1.89382782e-01 -4.89742561e-01 8.51050167e-01]\n", + " [-1.99571731e-01 -4.59116645e-01 8.65669123e-01]\n", + " [-1.31077082e-01 -6.09869923e-01 7.81586512e-01]\n", + " [-9.89434678e-02 -6.05630951e-01 7.89570353e-01]\n", + " [-6.60039077e-02 -6.00426483e-01 7.96951393e-01]\n", + " [-3.24532855e-02 -5.94265435e-01 8.03613948e-01]\n", + " [ 1.51237783e-03 -5.87165818e-01 8.09465265e-01]\n", + " [ 3.56952008e-02 -5.79155680e-01 8.14435111e-01]\n", + " [-1.91798893e-01 -4.46175911e-01 8.74151155e-01]\n", + " [-1.59106790e-01 -4.40161995e-01 8.83709481e-01]\n", + " [-1.25492653e-01 -4.33465208e-01 8.92389773e-01]\n", + " [-9.11428833e-02 -4.26093404e-01 9.00076322e-01]\n", + " [-5.62497409e-02 -4.18065045e-01 9.06673913e-01]\n", + " [-2.10140067e-02 -4.09410376e-01 9.12108303e-01]\n", + " [ 4.44840377e-02 -5.66714545e-01 8.22712462e-01]\n", + " [ 3.49693242e-02 -5.39149820e-01 8.41483581e-01]\n", + " [ 2.52136879e-02 -5.10316785e-01 8.59616803e-01]\n", + " [ 1.52712507e-02 -4.80346720e-01 8.76945732e-01]\n", + " [ 5.19806150e-03 -4.49385805e-01 8.93322662e-01]\n", + " [-4.94742212e-03 -4.17597694e-01 9.08618561e-01]\n", + " [-1.42190037e-01 -6.11135323e-01 7.78649864e-01]\n", + " [-1.42190037e-01 -6.11135323e-01 7.78649864e-01]\n", + " [-8.53434488e-03 -4.06213690e-01 9.13738257e-01]\n", + " [-8.53434488e-03 -4.06213690e-01 9.13738257e-01]\n", + " [-1.34974595e-01 -6.00878542e-01 7.87862193e-01]\n", + " [-1.02743742e-01 -5.96531140e-01 7.95986384e-01]\n", + " [-6.96997877e-02 -5.91233093e-01 8.03483273e-01]\n", + " [-3.60372431e-02 -5.84993005e-01 8.10237312e-01]\n", + " [-1.95196465e-03 -5.77828425e-01 8.16155930e-01]\n", + " [ 3.23579211e-02 -5.69767042e-01 8.21168973e-01]\n", + " [-1.45972420e-01 -5.74455969e-01 8.05414423e-01]\n", + " [-1.13511243e-01 -5.69801620e-01 8.13904977e-01]\n", + " [-8.02164607e-02 -5.64240883e-01 8.21704050e-01]\n", + " [-4.62811152e-02 -5.57781215e-01 8.28696672e-01]\n", + " [-1.19004937e-02 -5.50438906e-01 8.34790626e-01]\n", + " [ 2.27264595e-02 -5.42240819e-01 8.39915711e-01]\n", + " [-1.56859857e-01 -5.46733645e-01 8.22482405e-01]\n", + " [-1.24235296e-01 -5.41771676e-01 8.31293595e-01]\n", + " [-9.07562518e-02 -5.35950271e-01 8.39357260e-01]\n", + " [-5.66139597e-02 -5.29275863e-01 8.46558870e-01]\n", + " [-2.20030548e-02 -5.21763945e-01 8.52806104e-01]\n", + " [ 1.28766361e-02 -5.13441085e-01 8.58028230e-01]\n", + " [-1.67579215e-01 -5.17849518e-01 8.38897540e-01]\n", + " [-1.34857828e-01 -5.12577584e-01 8.47984426e-01]\n", + " [-1.01261016e-01 -5.06495641e-01 8.56275874e-01]\n", + " [-6.69781780e-02 -4.99609681e-01 8.63657392e-01]\n", + " [-3.22032501e-02 -4.91935171e-01 8.70036056e-01]\n", + " [ 2.86319759e-03 -4.83499079e-01 8.75340187e-01]\n", + " [-1.78071397e-01 -4.87952040e-01 8.54513536e-01]\n", + " [-1.45318865e-01 -4.82366770e-01 8.63831422e-01]\n", + " [-1.11670427e-01 -4.76023530e-01 8.72313771e-01]\n", + " [-7.73138828e-02 -4.68928641e-01 8.79845721e-01]\n", + " [-4.24424380e-02 -4.61098392e-01 8.86333409e-01]\n", + " [-7.25707026e-03 -4.52560827e-01 8.91704005e-01]\n", + " [-1.88276576e-01 -4.57201391e-01 8.69205856e-01]\n", + " [-1.55557466e-01 -4.51299665e-01 8.78709558e-01]\n", + " [-1.21922926e-01 -4.44694914e-01 8.87345047e-01]\n", + " [-8.75596153e-02 -4.37394504e-01 8.94996850e-01]\n", + " [-5.26600250e-02 -4.29416244e-01 9.01570081e-01]\n", + " [-1.74250751e-02 -4.20789754e-01 9.06990821e-01]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:fp_optics: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:cartToSphere: vec: [[-1.95162373e-01 -9.53377726e-01 2.30179406e-01]\n", + " [-1.97262717e-01 -9.46292466e-01 2.56160086e-01]\n", + " [-1.99113548e-01 -9.38375309e-01 2.82498804e-01]\n", + " [-2.00708062e-01 -9.29617198e-01 3.09076269e-01]\n", + " [-2.02042024e-01 -9.20019274e-01 3.35773073e-01]\n", + " [-2.03112315e-01 -9.09592908e-01 3.62472246e-01]\n", + " [-2.03916269e-01 -8.98359738e-01 3.89060324e-01]\n", + " [-2.04451580e-01 -8.86351679e-01 4.15427795e-01]\n", + " [-1.95162373e-01 -9.53377726e-01 2.30179406e-01]\n", + " [-1.68675433e-01 -9.58257386e-01 2.30849258e-01]\n", + " [-1.41496409e-01 -9.62489206e-01 2.31502255e-01]\n", + " [-1.13729203e-01 -9.66016319e-01 2.32116650e-01]\n", + " [-8.54823548e-02 -9.68791255e-01 2.32672023e-01]\n", + " [-5.68665800e-02 -9.70776333e-01 2.33151248e-01]\n", + " [-2.79937831e-02 -9.71943813e-01 2.33541374e-01]\n", + " [ 1.02329966e-03 -9.72276041e-01 2.33833814e-01]\n", + " [-2.04451580e-01 -8.86351679e-01 4.15427795e-01]\n", + " [-1.77058450e-01 -8.91030748e-01 4.17988651e-01]\n", + " [-1.48958641e-01 -8.95089436e-01 4.20269229e-01]\n", + " [-1.20259438e-01 -8.98471032e-01 4.22241012e-01]\n", + " [-9.10672642e-02 -9.01128392e-01 4.23880142e-01]\n", + " [-6.14900669e-02 -9.03023680e-01 4.25167266e-01]\n", + " [-3.16396767e-02 -9.04128508e-01 4.26087517e-01]\n", + " [-1.63269123e-03 -9.04424451e-01 4.26630692e-01]\n", + " [ 1.02329966e-03 -9.72276041e-01 2.33833814e-01]\n", + " [ 6.43637012e-04 -9.65340897e-01 2.60991452e-01]\n", + " [ 2.62269297e-04 -9.57487051e-01 2.88476132e-01]\n", + " [-1.19982083e-04 -9.48704214e-01 3.16164988e-01]\n", + " [-5.02029917e-04 -9.38991478e-01 3.43940041e-01]\n", + " [-8.82529032e-04 -9.28358161e-01 3.71685816e-01]\n", + " [-1.25995013e-03 -9.16824910e-01 3.99287487e-01]\n", + " [-1.63269123e-03 -9.04424451e-01 4.26630692e-01]\n", + " [-1.96018567e-01 -9.50407602e-01 2.41458303e-01]\n", + " [-1.98425121e-01 -9.41166267e-01 2.73557176e-01]\n", + " [-2.00449913e-01 -9.30665150e-01 3.06075499e-01]\n", + " [-2.02084193e-01 -9.18902113e-01 3.38793279e-01]\n", + " [-2.03322147e-01 -9.05898094e-01 3.71495286e-01]\n", + " [-2.04159010e-01 -8.91697198e-01 4.03974264e-01]\n", + " [-1.83712636e-01 -9.55558171e-01 2.30560726e-01]\n", + " [-1.50771050e-01 -9.61110847e-01 2.31374219e-01]\n", + " [-1.16892426e-01 -9.65632906e-01 2.32140586e-01]\n", + " [-8.22748609e-02 -9.69033014e-01 2.32821531e-01]\n", + " [-4.71220782e-02 -9.71241816e-01 2.33385616e-01]\n", + " [-1.16404474e-02 -9.72212425e-01 2.33810821e-01]\n", + " [-1.92600535e-01 -8.88506517e-01 4.16486737e-01]\n", + " [-1.58538618e-01 -8.93832078e-01 4.19439774e-01]\n", + " [-1.23521993e-01 -8.98168308e-01 4.21943134e-01]\n", + " [-8.77468894e-02 -9.01424458e-01 4.23950975e-01]\n", + " [-5.14123212e-02 -9.03530891e-01 4.25427670e-01]\n", + " [-1.47261827e-02 -9.04439445e-01 4.26347780e-01]\n", + " [ 7.58280727e-04 -9.69364513e-01 2.45625460e-01]\n", + " [ 2.90753781e-04 -9.60248748e-01 2.79145584e-01]\n", + " [-1.78358607e-04 -9.49741825e-01 3.13034239e-01]\n", + " [-6.47164189e-04 -9.37838160e-01 3.47072279e-01]\n", + " [-1.11318857e-03 -9.24555043e-01 3.81046892e-01]\n", + " [-1.57357358e-03 -9.09935494e-01 4.14746815e-01]\n", + " [-1.95080681e-01 -9.53372615e-01 2.30269808e-01]\n", + " [-1.95080681e-01 -9.53372615e-01 2.30269808e-01]\n", + " [-1.73417042e-03 -9.04468664e-01 4.26536550e-01]\n", + " [-1.73417042e-03 -9.04468664e-01 4.26536550e-01]\n", + " [-1.84605529e-01 -9.52602064e-01 2.41805927e-01]\n", + " [-1.51532498e-01 -9.58177148e-01 2.42764196e-01]\n", + " [-1.17519111e-01 -9.62717157e-01 2.43649203e-01]\n", + " [-8.27650326e-02 -9.66130637e-01 2.44420829e-01]\n", + " [-4.74744497e-02 -9.68348132e-01 2.45047079e-01]\n", + " [-1.18539886e-02 -9.69322594e-01 2.45505990e-01]\n", + " [-1.86897894e-01 -9.43375727e-01 2.74064618e-01]\n", + " [-1.53494014e-01 -9.48988470e-01 2.75427798e-01]\n", + " [-1.19143802e-01 -9.53558641e-01 2.76641777e-01]\n", + " [-8.40489952e-02 -9.56994643e-01 2.77663500e-01]\n", + " [-4.84137499e-02 -9.59226646e-01 2.78460681e-01]\n", + " [-1.24450267e-02 -9.60206950e-01 2.79012069e-01]\n", + " [-1.88830317e-01 -9.32874322e-01 3.06738669e-01]\n", + " [-1.55161316e-01 -9.38486339e-01 3.08493692e-01]\n", + " [-1.20542874e-01 -9.43055936e-01 3.10024060e-01]\n", + " [-8.51762309e-02 -9.46491486e-01 3.11285844e-01]\n", + " [-4.92642966e-02 -9.48722693e-01 3.12247146e-01]\n", + " [-1.30142117e-02 -9.49701092e-01 3.12887305e-01]\n", + " [-1.90395578e-01 -9.21095589e-01 3.39606302e-01]\n", + " [-1.56529617e-01 -9.26668147e-01 3.41737654e-01]\n", + " [-1.21712192e-01 -9.31205852e-01 3.43572123e-01]\n", + " [-8.61427638e-02 -9.34617134e-01 3.45065554e-01]\n", + " [-5.00226230e-02 -9.36831371e-01 3.46185961e-01]\n", + " [-1.35591681e-02 -9.37799530e-01 3.46912368e-01]\n", + " [-1.91588312e-01 -9.08060387e-01 3.72451678e-01]\n", + " [-1.57593602e-01 -9.13554391e-01 3.74943505e-01]\n", + " [-1.22645803e-01 -9.18028199e-01 3.77070593e-01]\n", + " [-8.69424665e-02 -9.21390467e-01 3.78788351e-01]\n", + " [-5.06834970e-02 -9.23570644e-01 3.80063742e-01]\n", + " [-1.40765879e-02 -9.24519637e-01 3.80874376e-01]\n", + " [-1.92403657e-01 -8.93812842e-01 4.05067201e-01]\n", + " [-1.58347511e-01 -8.99189181e-01 4.07903031e-01]\n", + " [-1.23337000e-01 -9.03566908e-01 4.10310648e-01]\n", + " [-8.75684976e-02 -9.06855094e-01 4.12244584e-01]\n", + " [-5.12411157e-02 -9.08983782e-01 4.13669955e-01]\n", + " [-1.45627339e-02 -9.09904464e-01 4.14562170e-01]]\n", + "DEBUG:root:cartToSphere: vec: [[-0.49619404 -0.4702189 0.72985318]\n", + " [-0.4788666 -0.45990077 0.74778209]\n", + " [-0.46072288 -0.4491471 0.76550722]\n", + " [-0.44183119 -0.4379719 0.78292134]\n", + " [-0.42226119 -0.42639581 0.79992631]\n", + " [-0.40208465 -0.41444623 0.81643264]\n", + " [-0.38137618 -0.40215708 0.83235923]\n", + " [-0.36021373 -0.38956853 0.84763343]\n", + " [-0.49619404 -0.4702189 0.72985318]\n", + " [-0.48189656 -0.49246397 0.72474474]\n", + " [-0.46682163 -0.51477331 0.71908693]\n", + " [-0.45102567 -0.53703259 0.71286173]\n", + " [-0.43456634 -0.5591338 0.70606054]\n", + " [-0.4175032 -0.58097467 0.69868413]\n", + " [-0.39989852 -0.60245829 0.69074249]\n", + " [-0.38181783 -0.62349323 0.6822546 ]\n", + " [-0.36021373 -0.38956853 0.84763343]\n", + " [-0.34414812 -0.41205149 0.84366797]\n", + " [-0.32747489 -0.43466191 0.8389453 ]\n", + " [-0.31024563 -0.45729083 0.8334463 ]\n", + " [-0.292515 -0.47983392 0.82716043]\n", + " [-0.27434203 -0.50219009 0.82008631]\n", + " [-0.2557908 -0.52426108 0.81223235]\n", + " [-0.23693045 -0.54595199 0.80361706]\n", + " [-0.38181783 -0.62349323 0.6822546 ]\n", + " [-0.36280991 -0.61434556 0.70067718]\n", + " [-0.34312701 -0.6045237 0.71889843]\n", + " [-0.32283192 -0.59403945 0.73681523]\n", + " [-0.30199085 -0.58291096 0.75433171]\n", + " [-0.28067493 -0.57116358 0.77135838]\n", + " [-0.25896078 -0.55883031 0.78781216]\n", + " [-0.23693045 -0.54595199 0.80361706]\n", + " [-0.48869592 -0.46585041 0.7376718 ]\n", + " [-0.46690057 -0.45291077 0.75952333]\n", + " [-0.44394694 -0.43932992 0.78096116]\n", + " [-0.41996271 -0.42514312 0.80180088]\n", + " [-0.39508009 -0.41040074 0.8218777 ]\n", + " [-0.36943779 -0.39516787 0.84104582]\n", + " [-0.49000118 -0.47986806 0.72775373]\n", + " [-0.47194697 -0.50719039 0.72112688]\n", + " [-0.45278103 -0.53449495 0.71365572]\n", + " [-0.43260899 -0.56158031 0.7053205 ]\n", + " [-0.41154057 -0.58825814 0.69612263]\n", + " [-0.38969175 -0.6143523 0.68608425]\n", + " [-0.35336034 -0.39939195 0.84594476]\n", + " [-0.33325605 -0.42704728 0.84057779]\n", + " [-0.31228995 -0.45478512 0.83405365]\n", + " [-0.29056131 -0.48241155 0.82634933]\n", + " [-0.26817888 -0.50974043 0.8174624 ]\n", + " [-0.24526277 -0.53659222 0.80741251]\n", + " [-0.37368005 -0.61951687 0.69033475]\n", + " [-0.34992286 -0.60785022 0.71279177]\n", + " [-0.32521379 -0.5951821 0.73484301]\n", + " [-0.29967326 -0.58154328 0.75630903]\n", + " [-0.27343223 -0.56698045 0.77702509]\n", + " [-0.24663408 -0.55155766 0.79684112]\n", + " [-0.49608874 -0.47026019 0.72989815]\n", + " [-0.49608874 -0.47026019 0.72989815]\n", + " [-0.23707117 -0.54592349 0.80359493]\n", + " [-0.23707117 -0.54592349 0.80359493]\n", + " [-0.48254885 -0.47548967 0.73556521]\n", + " [-0.46433649 -0.50290175 0.72902775]\n", + " [-0.44502724 -0.53029774 0.72161975]\n", + " [-0.42472575 -0.5574767 0.71332164]\n", + " [-0.40354101 -0.58425037 0.70413504]\n", + " [-0.38158866 -0.61044229 0.69408235]\n", + " [-0.46059353 -0.46262057 0.75751951]\n", + " [-0.44195793 -0.49023716 0.75122615]\n", + " [-0.42226761 -0.51784615 0.7439929 ]\n", + " [-0.4016245 -0.54524801 0.7358005 ]\n", + " [-0.38013578 -0.57225463 0.72665083]\n", + " [-0.35791663 -0.59868845 0.71656669]\n", + " [-0.43749202 -0.44908308 0.77905399]\n", + " [-0.41846757 -0.47683063 0.77299252]\n", + " [-0.39843077 -0.50458428 0.76592926]\n", + " [-0.37748131 -0.53214593 0.75784469]\n", + " [-0.35572533 -0.55932761 0.74874035]\n", + " [-0.33327834 -0.58595057 0.73863893]\n", + " [-0.41337105 -0.43491264 0.79998461]\n", + " [-0.39398936 -0.46271784 0.79414393]\n", + " [-0.3736383 -0.49054746 0.78724685]\n", + " [-0.35241626 -0.51820484 0.77927307]\n", + " [-0.33042929 -0.54550221 0.77022323]\n", + " [-0.30779386 -0.57225994 0.7601194 ]\n", + " [-0.38836211 -0.42015992 0.82014664]\n", + " [-0.36865311 -0.44794997 0.81451563]\n", + " [-0.34801904 -0.4757868 0.8077807 ]\n", + " [-0.32655806 -0.50347503 0.79992045]\n", + " [-0.30437696 -0.53082739 0.79093422]\n", + " [-0.28159367 -0.55766384 0.78084316]\n", + " [-0.3626037 -0.4048904 0.83939402]\n", + " [-0.34259714 -0.4325934 0.83396052]\n", + " [-0.32171184 -0.46036902 0.82738253]\n", + " [-0.30004665 -0.488023 0.81963745]\n", + " [-0.27770974 -0.51536887 0.81072328]\n", + " [-0.25482064 -0.54222683 0.80066005]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:fp_optics: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:fp_optics: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:cartToSphere: vec: [[-0.1465147 0.9819206 -0.11985564]\n", + " [-0.14876103 0.98457923 -0.0920538 ]\n", + " [-0.15093083 0.98649475 -0.06362389]\n", + " [-0.15300889 0.9876162 -0.0346773 ]\n", + " [-0.15498165 0.987903 -0.00532406]\n", + " [-0.15683708 0.98732489 0.02432464]\n", + " [-0.15856457 0.98586236 0.05415429]\n", + " [-0.16015507 0.98350726 0.08404659]\n", + " [-0.1465147 0.9819206 -0.11985564]\n", + " [-0.17507624 0.97701454 -0.12161787]\n", + " [-0.20340658 0.97131552 -0.12317437]\n", + " [-0.23139723 0.96485789 -0.1245174 ]\n", + " [-0.25894223 0.95768671 -0.1256387 ]\n", + " [-0.28593847 0.9498576 -0.12652959]\n", + " [-0.31228632 0.9414362 -0.12718148]\n", + " [-0.3378913 0.93249715 -0.1275874 ]\n", + " [-0.16015507 0.98350726 0.08404659]\n", + " [-0.18968726 0.97840862 0.08206897]\n", + " [-0.21895172 0.97244839 0.08002673]\n", + " [-0.24783524 0.96566287 0.07792896]\n", + " [-0.27623106 0.95809863 0.0757854 ]\n", + " [-0.30403847 0.94981193 0.07360645]\n", + " [-0.33116082 0.94086878 0.07140335]\n", + " [-0.35750303 0.93134556 0.06918839]\n", + " [-0.3378913 0.93249715 -0.1275874 ]\n", + " [-0.34171124 0.93437876 -0.10084524]\n", + " [-0.34521987 0.93564239 -0.07346124]\n", + " [-0.3483973 0.93623983 -0.04554459]\n", + " [-0.35122717 0.93613213 -0.01720774]\n", + " [-0.35369563 0.93529066 0.01143584]\n", + " [-0.35579083 0.9336975 0.04027243]\n", + " [-0.35750303 0.93134556 0.06918839]\n", + " [-0.14760079 0.98315198 -0.10782479]\n", + " [-0.15030542 0.98591749 -0.07331432]\n", + " [-0.1528796 0.98751506 -0.03797137]\n", + " [-0.1552977 0.98786569 -0.00199898]\n", + " [-0.15753755 0.98691373 0.03439789]\n", + " [-0.15958025 0.98462794 0.07100679]\n", + " [-0.1589972 0.97989101 -0.12055496]\n", + " [-0.1938616 0.97334085 -0.12257758]\n", + " [-0.2282706 0.96563248 -0.1242837 ]\n", + " [-0.26202808 0.95684442 -0.1256584 ]\n", + " [-0.29494429 0.94707898 -0.12668569]\n", + " [-0.32683778 0.93646087 -0.12735033]\n", + " [-0.17305144 0.98140162 0.08309066]\n", + " [-0.20908058 0.9745693 0.08062252]\n", + " [-0.24459444 0.96647772 0.07806647]\n", + " [-0.27939373 0.9572084 0.07544018]\n", + " [-0.31329283 0.94686492 0.07276281]\n", + " [-0.34611453 0.93557307 0.07005547]\n", + " [-0.33950712 0.93342173 -0.11601201]\n", + " [-0.34398149 0.93531944 -0.08279055]\n", + " [-0.34796816 0.93623993 -0.04871296]\n", + " [-0.35143567 0.93610757 -0.0139851 ]\n", + " [-0.35435842 0.93486969 0.0211842 ]\n", + " [-0.35671548 0.93249779 0.05658562]\n", + " [-0.14662044 0.9819155 -0.11976814]\n", + " [-0.14662044 0.9819155 -0.11976814]\n", + " [-0.35740919 0.93138835 0.06909708]\n", + " [-0.35740919 0.93138835 0.06909708]\n", + " [-0.16002596 0.9811188 -0.10861676]\n", + " [-0.19502461 0.97453446 -0.11067066]\n", + " [-0.22956326 0.96677792 -0.11243291]\n", + " [-0.2634455 0.95792788 -0.11388873]\n", + " [-0.29648128 0.94808693 -0.11502182]\n", + " [-0.32848814 0.93738055 -0.11581554]\n", + " [-0.16285222 0.98386249 -0.07411981]\n", + " [-0.19818778 0.97719301 -0.076259 ]\n", + " [-0.23305055 0.96931722 -0.07817654]\n", + " [-0.2672435 0.96031428 -0.07985855]\n", + " [-0.30057673 0.95028718 -0.08128898]\n", + " [-0.33286674 0.93936248 -0.08244919]\n", + " [-0.16552507 0.98544248 -0.03878887]\n", + " [-0.20113296 0.97870516 -0.04100904]\n", + " [-0.23625564 0.97073561 -0.04307729]\n", + " [-0.27069544 0.96161361 -0.04498048]\n", + " [-0.30426348 0.95144234 -0.04670333]\n", + " [-0.33677726 0.94034847 -0.04822686]\n", + " [-0.16801838 0.98577981 -0.00282705]\n", + " [-0.20383281 0.9789923 -0.0051249 ]\n", + " [-0.23915048 0.97095477 -0.0073411 ]\n", + " [-0.27377301 0.96174779 -0.00946241]\n", + " [-0.30751281 0.95147476 -0.01147362]\n", + " [-0.34018934 0.94026211 -0.01335578]\n", + " [-0.17030913 0.98481901 0.03356068]\n", + " [-0.20626228 0.97799958 0.03118806]\n", + " [-0.24170888 0.96992057 0.02882561]\n", + " [-0.27644995 0.96066322 0.02648789]\n", + " [-0.31029905 0.95033115 0.02419116]\n", + " [-0.34307757 0.93905046 0.02195485]\n", + " [-0.17237756 0.98252902 0.07016199]\n", + " [-0.20839944 0.97569665 0.067718 ]\n", + " [-0.24390773 0.96760346 0.06521173]\n", + " [-0.27870316 0.95833098 0.06265997]\n", + " [-0.31259997 0.94798287 0.06008102]\n", + " [-0.34542081 0.93668497 0.05749548]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:cartToSphere: vec: [[ 0.57124863 0.19448207 -0.79740312]\n", + " [ 0.54899992 0.20587728 -0.81007014]\n", + " [ 0.52586607 0.21733256 -0.82233292]\n", + " [ 0.50191521 0.22879323 -0.83410718]\n", + " [ 0.47722155 0.24020652 -0.84531676]\n", + " [ 0.45186659 0.25152122 -0.85589349]\n", + " [ 0.42593941 0.26268772 -0.86577756]\n", + " [ 0.39953626 0.27365846 -0.87491818]\n", + " [ 0.57124863 0.19448207 -0.79740312]\n", + " [ 0.56409666 0.16855014 -0.80832284]\n", + " [ 0.55641686 0.14259974 -0.81857534]\n", + " [ 0.54824374 0.1167354 -0.82813142]\n", + " [ 0.53961629 0.09106364 -0.83697173]\n", + " [ 0.53057751 0.0656932 -0.84508692]\n", + " [ 0.52117401 0.04073596 -0.8524777 ]\n", + " [ 0.51145579 0.01630835 -0.85915482]\n", + " [ 0.39953626 0.27365846 -0.87491818]\n", + " [ 0.39225612 0.24677736 -0.88613547]\n", + " [ 0.38464545 0.2197614 -0.89652262]\n", + " [ 0.3767392 0.1927202 -0.90604994]\n", + " [ 0.36857618 0.16576392 -0.91469882]\n", + " [ 0.36019861 0.13900241 -0.92246154]\n", + " [ 0.35165195 0.1125451 -0.9293409 ]\n", + " [ 0.34298501 0.0865019 -0.93534951]\n", + " [ 0.51145579 0.01630835 -0.85915482]\n", + " [ 0.48935516 0.02566138 -0.87170696]\n", + " [ 0.46646858 0.03532893 -0.88383196]\n", + " [ 0.44286995 0.04525293 -0.89544312]\n", + " [ 0.41863707 0.05538024 -0.90646348]\n", + " [ 0.39385253 0.06566148 -0.91682537]\n", + " [ 0.36860417 0.07605013 -0.92647037]\n", + " [ 0.34298501 0.0865019 -0.93534951]\n", + " [ 0.56163749 0.19935055 -0.80300852]\n", + " [ 0.53376564 0.21336308 -0.81827284]\n", + " [ 0.50463143 0.22741142 -0.83284523]\n", + " [ 0.47436887 0.24139767 -0.84658215]\n", + " [ 0.44312803 0.25522758 -0.85935815]\n", + " [ 0.41107592 0.26881065 -0.87106683]\n", + " [ 0.56812266 0.18322297 -0.80228797]\n", + " [ 0.55899797 0.15141425 -0.81522696]\n", + " [ 0.54911434 0.11968137 -0.82713349]\n", + " [ 0.53854171 0.0882196 -0.83796786]\n", + " [ 0.5273592 0.05722922 -0.84771286]\n", + " [ 0.51565403 0.026918 -0.85637395]\n", + " [ 0.39649577 0.26192463 -0.87987874]\n", + " [ 0.38734662 0.22887483 -0.89307273]\n", + " [ 0.37773511 0.19573136 -0.90498918]\n", + " [ 0.3677311 0.16269683 -0.9155892 ]\n", + " [ 0.35741231 0.12997348 -0.92485855]\n", + " [ 0.34686381 0.09776286 -0.93280648]\n", + " [ 0.50195463 0.02042673 -0.8646527 ]\n", + " [ 0.47432989 0.03211043 -0.87976137]\n", + " [ 0.44559757 0.04420806 -0.89414118]\n", + " [ 0.41589922 0.05661981 -0.90764643]\n", + " [ 0.38538695 0.06925467 -0.92015254]\n", + " [ 0.35422461 0.08202794 -0.93155587]\n", + " [ 0.5711506 0.19443234 -0.79748546]\n", + " [ 0.5711506 0.19443234 -0.79748546]\n", + " [ 0.34310292 0.08655433 -0.93530141]\n", + " [ 0.34310292 0.08655433 -0.93530141]\n", + " [ 0.55859896 0.18809635 -0.80782855]\n", + " [ 0.54945377 0.15615218 -0.82080269]\n", + " [ 0.53956394 0.1242718 -0.83272281]\n", + " [ 0.52899988 0.09265062 -0.84354904]\n", + " [ 0.51784121 0.06148839 -0.85326412]\n", + " [ 0.50617556 0.03099161 -0.86187344]\n", + " [ 0.53070102 0.2019959 -0.82313673]\n", + " [ 0.52151058 0.1697087 -0.83619715]\n", + " [ 0.51161863 0.13745283 -0.84814686]\n", + " [ 0.50109658 0.10542468 -0.85894578]\n", + " [ 0.49002509 0.07382325 -0.86857673]\n", + " [ 0.47849267 0.04285206 -0.8770453 ]\n", + " [ 0.50154662 0.21595238 -0.83774433]\n", + " [ 0.49233077 0.18338303 -0.85087078]\n", + " [ 0.48246082 0.15081438 -0.86283636]\n", + " [ 0.47200871 0.11844437 -0.873601 ]\n", + " [ 0.46105546 0.08647217 -0.88314802]\n", + " [ 0.44968985 0.05509944 -0.89148365]\n", + " [ 0.47126998 0.2298685 -0.85150753]\n", + " [ 0.46204931 0.19707944 -0.86467921]\n", + " [ 0.45222661 0.1642617 -0.87664656]\n", + " [ 0.44187375 0.13161495 -0.88736976]\n", + " [ 0.43107144 0.09933915 -0.89683284]\n", + " [ 0.41990799 0.06763516 -0.90504296]\n", + " [ 0.44002131 0.24365063 -0.86430065]\n", + " [ 0.43081685 0.21070611 -0.87749631]\n", + " [ 0.42106696 0.17770456 -0.88945135]\n", + " [ 0.41084294 0.14484722 -0.9001263 ]\n", + " [ 0.40022456 0.11233506 -0.90950598]\n", + " [ 0.38929904 0.08036893 -0.91759855]\n", + " [ 0.40796774 0.25720879 -0.8760171 ]\n", + " [ 0.39880049 0.22417467 -0.88921532]\n", + " [ 0.38914857 0.19105623 -0.90114422]\n", + " [ 0.37908227 0.15805583 -0.91176477]\n", + " [ 0.3686799 0.1253754 -0.92106251]\n", + " [ 0.35802713 0.09321627 -0.92904645]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:fp_optics: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:fp_optics: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:cartToSphere: vec: [[ 0.48578179 0.85879184 -0.16276556]\n", + " [ 0.47412877 0.86035624 -0.18705361]\n", + " [ 0.46199605 0.86122691 -0.21177314]\n", + " [ 0.4494036 0.86137172 -0.23680196]\n", + " [ 0.43637796 0.86076592 -0.26202349]\n", + " [ 0.42295234 0.85939233 -0.28732586]\n", + " [ 0.40916651 0.85724164 -0.31260126]\n", + " [ 0.3950665 0.85431283 -0.33774553]\n", + " [ 0.48578179 0.85879184 -0.16276556]\n", + " [ 0.50722309 0.84469185 -0.17093981]\n", + " [ 0.52869205 0.82965831 -0.17930925]\n", + " [ 0.55007825 0.81371972 -0.18781411]\n", + " [ 0.57127748 0.7969121 -0.19640047]\n", + " [ 0.59219121 0.77927946 -0.20501974]\n", + " [ 0.61272625 0.76087426 -0.21362796]\n", + " [ 0.6327949 0.7417576 -0.22218521]\n", + " [ 0.3950665 0.85431283 -0.33774553]\n", + " [ 0.4166193 0.83983522 -0.34800166]\n", + " [ 0.43827668 0.82438633 -0.35819091]\n", + " [ 0.45993332 0.80799038 -0.36825655]\n", + " [ 0.48148853 0.79067983 -0.37814574]\n", + " [ 0.50284497 0.77249674 -0.38780887]\n", + " [ 0.52390823 0.75349368 -0.3971995 ]\n", + " [ 0.5445874 0.73373396 -0.40627459]\n", + " [ 0.6327949 0.7417576 -0.22218521]\n", + " [ 0.62220102 0.74250401 -0.24810016]\n", + " [ 0.61089763 0.74266146 -0.27433197]\n", + " [ 0.59890211 0.74219713 -0.30076517]\n", + " [ 0.58623824 0.74108562 -0.32728707]\n", + " [ 0.57293715 0.73930937 -0.35378619]\n", + " [ 0.55903787 0.73685904 -0.38015182]\n", + " [ 0.5445874 0.73373396 -0.40627459]\n", + " [ 0.48083439 0.85951015 -0.17332224]\n", + " [ 0.46622815 0.8609651 -0.20339718]\n", + " [ 0.45092031 0.86134533 -0.23399807]\n", + " [ 0.434957 0.86060221 -0.26490799]\n", + " [ 0.41839934 0.85870414 -0.29592093]\n", + " [ 0.40132317 0.85563741 -0.32683992]\n", + " [ 0.49508075 0.85276687 -0.16638423]\n", + " [ 0.52139276 0.83485452 -0.17654324]\n", + " [ 0.54763592 0.81556737 -0.18693517]\n", + " [ 0.57361585 0.79496859 -0.19745836]\n", + " [ 0.59915108 0.77313925 -0.20802327]\n", + " [ 0.62407235 0.75017952 -0.21855068]\n", + " [ 0.40449263 0.8481326 -0.34213564]\n", + " [ 0.43099216 0.82973309 -0.3546671 ]\n", + " [ 0.45754343 0.80989789 -0.36704143]\n", + " [ 0.48395925 0.78868328 -0.37915977]\n", + " [ 0.51006036 0.76616677 -0.39093082]\n", + " [ 0.53567437 0.74244963 -0.40227045]\n", + " [ 0.62819604 0.74221981 -0.23340842]\n", + " [ 0.61473248 0.74274371 -0.26539734]\n", + " [ 0.60021995 0.74234942 -0.29774711]\n", + " [ 0.58469954 0.74098712 -0.33024921]\n", + " [ 0.56822861 0.73862448 -0.36269839]\n", + " [ 0.55088235 0.73524791 -0.39489131]\n", + " [ 0.48581593 0.85875173 -0.16287529]\n", + " [ 0.48581593 0.85875173 -0.16287529]\n", + " [ 0.54456773 0.73381457 -0.40615534]\n", + " [ 0.54456773 0.73381457 -0.40615534]\n", + " [ 0.49012631 0.85351148 -0.17690212]\n", + " [ 0.51651686 0.83555408 -0.18724238]\n", + " [ 0.54284161 0.81621278 -0.19778697]\n", + " [ 0.56890657 0.79555022 -0.20843504]\n", + " [ 0.59453032 0.77364712 -0.21909777]\n", + " [ 0.61954324 0.75060361 -0.22969632]\n", + " [ 0.47557909 0.85493045 -0.20716771]\n", + " [ 0.50214414 0.83685703 -0.21799443]\n", + " [ 0.52865561 0.81737758 -0.22894787]\n", + " [ 0.55492077 0.79655306 -0.23992948]\n", + " [ 0.58075825 0.77446314 -0.25085194]\n", + " [ 0.60599726 0.75120798 -0.26163696]\n", + " [ 0.46030399 0.85527921 -0.23794476]\n", + " [ 0.4869724 0.83710636 -0.24922043]\n", + " [ 0.51360454 0.81751075 -0.26055046]\n", + " [ 0.54000899 0.79655162 -0.27183784]\n", + " [ 0.56600442 0.77430768 -0.28299577]\n", + " [ 0.59141894 0.75087924 -0.29394558]\n", + " [ 0.44434723 0.85450877 -0.26901728]\n", + " [ 0.47104791 0.83625196 -0.28070719]\n", + " [ 0.49773416 0.8165613 -0.2923839 ]\n", + " [ 0.52421591 0.79549453 -0.30395088]\n", + " [ 0.55031207 0.77312963 -0.3153208 ]\n", + " [ 0.57584989 0.74956716 -0.32641381]\n", + " [ 0.42777018 0.85258708 -0.30017986]\n", + " [ 0.45443247 0.83426058 -0.31225055]\n", + " [ 0.48110613 0.81449515 -0.32424457]\n", + " [ 0.50760238 0.79334748 -0.33606488]\n", + " [ 0.53374071 0.77089512 -0.34762275]\n", + " [ 0.55934807 0.74723893 -0.35883663]\n", + " [ 0.41064907 0.84950007 -0.33123551]\n", + " [ 0.43720321 0.83111731 -0.34365299]\n", + " [ 0.46379797 0.81129685 -0.3559338 ]\n", + " [ 0.49024581 0.79009496 -0.36797962]\n", + " [ 0.51636707 0.76758913 -0.37969986]\n", + " [ 0.54198908 0.7438805 -0.39101103]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:fp_optics: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:cartToSphere: vec: [[-1.24588956e-01 5.41925356e-01 -8.31140482e-01]\n", + " [-1.07984282e-01 5.23985150e-01 -8.44854400e-01]\n", + " [-9.09655881e-02 5.05266835e-01 -8.58155398e-01]\n", + " [-7.35959878e-02 4.85822320e-01 -8.70953675e-01]\n", + " [-5.59395095e-02 4.65708646e-01 -8.83168290e-01]\n", + " [-3.80621590e-02 4.44989306e-01 -8.94726656e-01]\n", + " [-2.00323991e-02 4.23735001e-01 -9.05564659e-01]\n", + " [-1.92093054e-03 4.02023619e-01 -9.15627282e-01]\n", + " [-1.24588956e-01 5.41925356e-01 -8.31140482e-01]\n", + " [-1.01356889e-01 5.57716581e-01 -8.23819760e-01]\n", + " [-7.80568235e-02 5.72927423e-01 -8.15880690e-01]\n", + " [-5.47791661e-02 5.87503361e-01 -8.07365495e-01]\n", + " [-3.16138178e-02 6.01395073e-01 -7.98326081e-01]\n", + " [-8.64992030e-03 6.14558071e-01 -7.88824160e-01]\n", + " [ 1.40240971e-02 6.26952229e-01 -7.78931465e-01]\n", + " [ 3.63202621e-02 6.38541474e-01 -7.68729877e-01]\n", + " [-1.92093054e-03 4.02023619e-01 -9.15627282e-01]\n", + " [ 2.20099537e-02 4.18446729e-01 -9.07974613e-01]\n", + " [ 4.58444889e-02 4.34439867e-01 -8.99533371e-01]\n", + " [ 6.94890035e-02 4.49945365e-01 -8.90348497e-01]\n", + " [ 9.28526837e-02 4.64912074e-01 -8.80474385e-01]\n", + " [ 1.15847958e-01 4.79295368e-01 -8.69974253e-01]\n", + " [ 1.38389956e-01 4.93056569e-01 -8.58919926e-01]\n", + " [ 1.60395179e-01 5.06161947e-01 -8.47392158e-01]\n", + " [ 3.63202621e-02 6.38541474e-01 -7.68729877e-01]\n", + " [ 5.37620563e-02 6.21977961e-01 -7.81186954e-01]\n", + " [ 7.14104551e-02 6.04532475e-01 -7.93373200e-01]\n", + " [ 8.91987254e-02 5.86260255e-01 -8.05197181e-01]\n", + " [ 1.07059600e-01 5.67220680e-01 -8.16577579e-01]\n", + " [ 1.24925100e-01 5.47477631e-01 -8.27443027e-01]\n", + " [ 1.42726601e-01 5.27099988e-01 -8.37731890e-01]\n", + " [ 1.60395179e-01 5.06161947e-01 -8.47392158e-01]\n", + " [-1.17324668e-01 5.34257328e-01 -8.37140388e-01]\n", + " [-9.66868051e-02 5.11740730e-01 -8.53682076e-01]\n", + " [-7.54898895e-02 4.88106366e-01 -8.69513342e-01]\n", + " [-5.38513560e-02 4.63457042e-01 -8.84481544e-01]\n", + " [-3.18927802e-02 4.37909730e-01 -8.98453070e-01]\n", + " [-9.74116951e-03 4.11597605e-01 -9.11313624e-01]\n", + " [-1.14417530e-01 5.48818299e-01 -8.28074334e-01]\n", + " [-8.58863939e-02 5.67789527e-01 -8.18681000e-01]\n", + " [-5.73431093e-02 5.85834304e-01 -8.08399614e-01]\n", + " [-2.89534164e-02 6.02859677e-01 -7.97321710e-01]\n", + " [-8.81428580e-04 6.18783693e-01 -7.85560924e-01]\n", + " [ 2.67102635e-02 6.33534166e-01 -7.73253531e-01]\n", + " [ 8.45679347e-03 4.09307988e-01 -9.12357087e-01]\n", + " [ 3.77336834e-02 4.29154431e-01 -9.02442598e-01]\n", + " [ 6.67726310e-02 4.48296897e-01 -8.91387294e-01]\n", + " [ 9.54052101e-02 4.66638493e-01 -8.79287418e-01]\n", + " [ 1.23470137e-01 4.84097001e-01 -8.66259325e-01]\n", + " [ 1.50811818e-01 5.00603328e-01 -8.52438915e-01]\n", + " [ 4.38197150e-02 6.31392922e-01 -7.74224005e-01]\n", + " [ 6.53436187e-02 6.10491720e-01 -7.89322540e-01]\n", + " [ 8.71117401e-02 5.88320230e-01 -8.03922168e-01]\n", + " [ 1.09000480e-01 5.64986045e-01 -8.17868978e-01]\n", + " [ 1.30884697e-01 5.40606822e-01 -8.31031564e-01]\n", + " [ 1.52637905e-01 5.15311572e-01 -8.43300453e-01]\n", + " [-1.24453722e-01 5.41920313e-01 -8.31164030e-01]\n", + " [-1.24453722e-01 5.41920313e-01 -8.31164030e-01]\n", + " [ 1.60260821e-01 5.06190753e-01 -8.47400372e-01]\n", + " [ 1.60260821e-01 5.06190753e-01 -8.47400372e-01]\n", + " [-1.07250480e-01 5.41183272e-01 -8.34037170e-01]\n", + " [-7.86213725e-02 5.60240494e-01 -8.24590364e-01]\n", + " [-4.99949206e-02 5.78381192e-01 -8.14233200e-01]\n", + " [-2.15373032e-02 5.95512580e-01 -8.03057228e-01]\n", + " [ 6.58725899e-03 6.11553152e-01 -7.91175928e-01]\n", + " [ 3.42163634e-02 6.26431211e-01 -7.78725355e-01]\n", + " [-8.65174557e-02 5.18737413e-01 -8.50544665e-01]\n", + " [-5.76464577e-02 5.38015819e-01 -8.40961274e-01]\n", + " [-2.88206229e-02 5.56407884e-01 -8.30409320e-01]\n", + " [-2.07413543e-04 5.73821038e-01 -8.18980692e-01]\n", + " [ 2.80287499e-02 5.90174955e-01 -8.06788641e-01]\n", + " [ 5.57262351e-02 6.05399539e-01 -7.93968504e-01]\n", + " [-6.52441266e-02 4.95161139e-01 -8.66347881e-01]\n", + " [-3.61850131e-02 5.14627613e-01 -8.56649908e-01]\n", + " [-7.21453077e-03 5.33241636e-01 -8.45932212e-01]\n", + " [ 2.14987401e-02 5.50910346e-01 -8.34287477e-01]\n", + " [ 4.97904611e-02 5.67554119e-01 -8.21829199e-01]\n", + " [ 7.75001231e-02 5.83104300e-01 -8.08692220e-01]\n", + " [-4.35484741e-02 4.70556943e-01 -8.81294329e-01]\n", + " [-1.43566879e-02 4.90177956e-01 -8.71504135e-01]\n", + " [ 1.47021312e-02 5.08984910e-01 -8.60649876e-01]\n", + " [ 4.34587121e-02 5.26884114e-01 -8.48825347e-01]\n", + " [ 7.17491949e-02 5.43795944e-01 -8.36144739e-01]\n", + " [ 9.94144879e-02 5.59652559e-01 -8.22742835e-01]\n", + " [-2.15526969e-02 4.45041380e-01 -8.95250608e-01]\n", + " [ 7.71467529e-03 4.64782452e-01 -8.85391301e-01]\n", + " [ 3.68042841e-02 4.83752859e-01 -8.74430452e-01]\n", + " [ 6.55467750e-02 5.01857664e-01 -8.62463046e-01]\n", + " [ 9.37791826e-02 5.19016509e-01 -8.49604218e-01]\n", + " [ 1.21343979e-01 5.35161545e-01 -8.35989091e-01]\n", + " [ 6.15677954e-04 4.18747225e-01 -9.08102628e-01]\n", + " [ 2.99004193e-02 4.38572648e-01 -8.98198195e-01]\n", + " [ 5.89627845e-02 4.57675852e-01 -8.87161882e-01]\n", + " [ 8.76339977e-02 4.75960452e-01 -8.75089670e-01]\n", + " [ 1.15752306e-01 4.93344784e-01 -8.62097632e-01]\n", + " [ 1.43161665e-01 5.09760190e-01 -8.48321452e-01]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:fp_optics: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:cartToSphere: vec: [[-0.1981 -0.33501789 0.92115113]\n", + " [-0.22438784 -0.32575448 0.91844114]\n", + " [-0.25101919 -0.31604388 0.91493477]\n", + " [-0.27787795 -0.30591043 0.91060565]\n", + " [-0.30484993 -0.29538198 0.90543691]\n", + " [-0.33182176 -0.2844905 0.89942174]\n", + " [-0.35868103 -0.27327217 0.89256386]\n", + " [-0.38531697 -0.26176734 0.88487779]\n", + " [-0.1981 -0.33501789 0.92115113]\n", + " [-0.19017896 -0.30920216 0.93178645]\n", + " [-0.18221735 -0.28317828 0.94159806]\n", + " [-0.17425124 -0.25705069 0.95055849]\n", + " [-0.16632032 -0.23092603 0.95865047]\n", + " [-0.15846844 -0.20491291 0.96586669]\n", + " [-0.15074446 -0.17912233 0.97220949]\n", + " [-0.14320332 -0.15366858 0.97769053]\n", + " [-0.38531697 -0.26176734 0.88487779]\n", + " [-0.37697472 -0.2351107 0.89588672]\n", + " [-0.36832351 -0.20832834 0.90605579]\n", + " [-0.35940229 -0.18152882 0.91535637]\n", + " [-0.35025359 -0.15482108 0.923771 ]\n", + " [-0.34092318 -0.12831364 0.93129319]\n", + " [-0.33145983 -0.10211445 0.93792698]\n", + " [-0.32191561 -0.07633184 0.94368628]\n", + " [-0.14320332 -0.15366858 0.97769053]\n", + " [-0.16798268 -0.14305172 0.97535533]\n", + " [-0.19320869 -0.13224115 0.97220506]\n", + " [-0.21875843 -0.12126303 0.96821487]\n", + " [-0.24451485 -0.11014751 0.96336909]\n", + " [-0.27036538 -0.09892846 0.95766159]\n", + " [-0.29620093 -0.08764317 0.95109604]\n", + " [-0.32191561 -0.07633184 0.94368628]\n", + " [-0.2094847 -0.33094727 0.92010329]\n", + " [-0.24194864 -0.31928951 0.91625055]\n", + " [-0.27481294 -0.30698406 0.91117432]\n", + " [-0.30786666 -0.2940807 0.90483957]\n", + " [-0.34090117 -0.28063828 0.89723383]\n", + " [-0.37371009 -0.26672517 0.88836842]\n", + " [-0.1947426 -0.32376308 0.92587947]\n", + " [-0.18500246 -0.29196935 0.93836453]\n", + " [-0.17523666 -0.25996656 0.94958386]\n", + " [-0.16551673 -0.22795011 0.95950141]\n", + " [-0.1559235 -0.19612002 0.96810371]\n", + " [-0.14654939 -0.16468193 0.97539896]\n", + " [-0.38162947 -0.25020709 0.88980636]\n", + " [-0.37119292 -0.21743853 0.90273822]\n", + " [-0.36033076 -0.18458883 0.91437886]\n", + " [-0.34911983 -0.15185846 0.92469149]\n", + " [-0.33764434 -0.11944716 0.93366411]\n", + " [-0.32599543 -0.08755375 0.9413083 ]\n", + " [-0.1539701 -0.14915152 0.97675331]\n", + " [-0.18465748 -0.13600675 0.97334669]\n", + " [-0.21589278 -0.12259639 0.96869006]\n", + " [-0.24745821 -0.10897426 0.96275077]\n", + " [-0.27914637 -0.0952027 0.95551753]\n", + " [-0.31075777 -0.0813516 0.94700133]\n", + " [-0.19816219 -0.33489919 0.92118092]\n", + " [-0.19816219 -0.33489919 0.92118092]\n", + " [-0.32186071 -0.07645785 0.9436948 ]\n", + " [-0.32186071 -0.07645785 0.9436948 ]\n", + " [-0.20604957 -0.31976782 0.92482004]\n", + " [-0.19624738 -0.28785474 0.93735085]\n", + " [-0.18639286 -0.25573817 0.94860724]\n", + " [-0.17655729 -0.22361395 0.95855324]\n", + " [-0.16682082 -0.19168205 0.96717568]\n", + " [-0.15727474 -0.16014747 0.97448317]\n", + " [-0.23847388 -0.30800126 0.92101327]\n", + " [-0.2285093 -0.27579076 0.93366105]\n", + " [-0.21841872 -0.24339448 0.94501449]\n", + " [-0.20827335 -0.21100969 0.95503776]\n", + " [-0.19815226 -0.17883641 0.96371843]\n", + " [-0.18814427 -0.14707804 0.97106631]\n", + " [-0.27130506 -0.29560801 0.9159746 ]\n", + " [-0.26119767 -0.26316147 0.92872053]\n", + " [-0.2508926 -0.23054955 0.94015946]\n", + " [-0.24046183 -0.19797094 0.95025555]\n", + " [-0.22998449 -0.16562591 0.95899697]\n", + " [-0.21954832 -0.13371653 0.96639455]\n", + " [-0.30433234 -0.2826385 0.90966879]\n", + " [-0.294102 -0.25001906 0.92249362]\n", + " [-0.28360384 -0.21725706 0.93400655]\n", + " [-0.27291112 -0.18455235 0.94417157]\n", + " [-0.262104 -0.15210539 0.95297715]\n", + " [-0.25127038 -0.12011715 0.96043483]\n", + " [-0.33734731 -0.26915219 0.90208308]\n", + " [-0.32701464 -0.23642466 0.91496711]\n", + " [-0.31634563 -0.20357951 0.9265424 ]\n", + " [-0.30541508 -0.17081726 0.9367727 ]\n", + " [-0.29430476 -0.13833832 0.94564646]\n", + " [-0.28310359 -0.10634267 0.95317553]\n", + " [-0.37014381 -0.25521794 0.89322862]\n", + " [-0.35973041 -0.22244834 0.90615162]\n", + " [-0.34891423 -0.18958783 0.91777738]\n", + " [-0.33777162 -0.156837 0.92806923]\n", + " [-0.32638615 -0.12439581 0.93701535]\n", + " [-0.31484833 -0.09246339 0.94462747]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:fp_optics: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:cartToSphere: vec: [[ 1.97538019e-01 8.53145032e-01 4.82827387e-01]\n", + " [ 1.96919210e-01 8.39103319e-01 5.07078342e-01]\n", + " [ 1.96129442e-01 8.24103842e-01 5.31400131e-01]\n", + " [ 1.95163235e-01 8.08170773e-01 5.55671947e-01]\n", + " [ 1.94017119e-01 7.91335768e-01 5.79780182e-01]\n", + " [ 1.92689727e-01 7.73639437e-01 6.03616344e-01]\n", + " [ 1.91181953e-01 7.55132902e-01 6.27075563e-01]\n", + " [ 1.89497081e-01 7.35878570e-01 6.50056602e-01]\n", + " [ 1.97538019e-01 8.53145032e-01 4.82827387e-01]\n", + " [ 1.68995314e-01 8.58026734e-01 4.85005884e-01]\n", + " [ 1.40399803e-01 8.62124572e-01 4.86856363e-01]\n", + " [ 1.11865315e-01 8.65431165e-01 4.88380026e-01]\n", + " [ 8.35069642e-02 8.67947643e-01 4.89585003e-01]\n", + " [ 5.54408350e-02 8.69683567e-01 4.90486296e-01]\n", + " [ 2.77832457e-02 8.70657086e-01 4.91105212e-01]\n", + " [ 6.48791471e-04 8.70895432e-01 4.91467929e-01]\n", + " [ 1.89497081e-01 7.35878570e-01 6.50056602e-01]\n", + " [ 1.59976999e-01 7.40996851e-01 6.52174077e-01]\n", + " [ 1.30409210e-01 7.45431783e-01 6.53700921e-01]\n", + " [ 1.00912707e-01 7.49175409e-01 6.54639468e-01]\n", + " [ 7.16039842e-02 7.52228854e-01 6.54999710e-01]\n", + " [ 4.25971520e-02 7.54601791e-01 6.54798916e-01]\n", + " [ 1.40058389e-02 7.56311848e-01 6.54061331e-01]\n", + " [-1.40542372e-02 7.57384291e-01 6.52818133e-01]\n", + " [ 6.48791471e-04 8.70895432e-01 4.91467929e-01]\n", + " [-1.73176624e-03 8.57313987e-01 5.14790956e-01]\n", + " [-4.01945125e-03 8.42798964e-01 5.38213480e-01]\n", + " [-6.21447914e-03 8.27374146e-01 5.61616776e-01]\n", + " [-8.31721891e-03 8.11073186e-01 5.84885553e-01]\n", + " [-1.03268083e-02 7.93938784e-01 6.07909997e-01]\n", + " [-1.22406104e-02 7.76022417e-01 6.30586534e-01]\n", + " [-1.40542372e-02 7.57384291e-01 6.52818133e-01]\n", + " [ 1.97191030e-01 8.47159900e-01 4.93392138e-01]\n", + " [ 1.96317483e-01 8.29303756e-01 5.23177528e-01]\n", + " [ 1.95181667e-01 8.10032213e-01 5.52948397e-01]\n", + " [ 1.93776360e-01 7.89400408e-01 5.82492677e-01]\n", + " [ 1.92099073e-01 7.67483286e-01 6.11610457e-01]\n", + " [ 1.90152448e-01 7.44379662e-01 6.40110119e-01]\n", + " [ 1.85104785e-01 8.55322735e-01 4.83900028e-01]\n", + " [ 1.50071986e-01 8.60780193e-01 4.86349523e-01]\n", + " [ 1.15072828e-01 8.65051999e-01 4.88306547e-01]\n", + " [ 8.03187160e-02 8.68136705e-01 4.89783182e-01]\n", + " [ 4.60232821e-02 8.70051929e-01 4.90806987e-01]\n", + " [ 1.24001238e-02 8.70834818e-01 4.91419329e-01]\n", + " [ 1.76645832e-01 7.38260312e-01 6.50974624e-01]\n", + " [ 1.40418887e-01 7.44075095e-01 6.53172863e-01]\n", + " [ 1.04238722e-01 7.48854410e-01 6.54485570e-01]\n", + " [ 6.83209112e-02 7.52596576e-01 6.54927970e-01]\n", + " [ 3.28757581e-02 7.55319332e-01 6.54531811e-01]\n", + " [-1.88677407e-03 7.57058306e-01 6.53344597e-01]\n", + " [-3.08350479e-04 8.65090013e-01 5.01616562e-01]\n", + " [-3.16259661e-03 8.47813957e-01 5.30284350e-01]\n", + " [-5.87762472e-03 8.29158032e-01 5.58983373e-01]\n", + " [-8.45416216e-03 8.09180167e-01 5.87499774e-01]\n", + " [-1.08905644e-02 7.87958940e-01 6.15631468e-01]\n", + " [-1.31812354e-02 7.65592750e-01 6.43190482e-01]\n", + " [ 1.97438795e-01 8.53116682e-01 4.82918056e-01]\n", + " [ 1.97438795e-01 8.53116682e-01 4.82918056e-01]\n", + " [-1.39532962e-02 7.57446566e-01 6.52748041e-01]\n", + " [-1.39532962e-02 7.57446566e-01 6.52748041e-01]\n", + " [ 1.84808610e-01 8.49375166e-01 4.94375976e-01]\n", + " [ 1.49637716e-01 8.54860768e-01 4.96811454e-01]\n", + " [ 1.14499479e-01 8.59163809e-01 4.98725795e-01]\n", + " [ 7.96056239e-02 8.62282987e-01 5.00130978e-01]\n", + " [ 4.51701500e-02 8.64235880e-01 5.01054888e-01]\n", + " [ 1.14078741e-02 8.65059132e-01 5.01540186e-01]\n", + " [ 1.83813428e-01 8.31542546e-01 5.24165639e-01]\n", + " [ 1.48296175e-01 8.37103238e-01 5.26560931e-01]\n", + " [ 1.12810438e-01 8.41494130e-01 5.28357298e-01]\n", + " [ 7.75686840e-02 8.44714653e-01 5.29566100e-01]\n", + " [ 4.27848886e-02 8.46782878e-01 5.30215249e-01]\n", + " [ 8.67516361e-03 8.47734831e-01 5.30349317e-01]\n", + " [ 1.82579020e-01 8.12290731e-01 5.53939230e-01]\n", + " [ 1.46782059e-01 8.17919953e-01 5.56293068e-01]\n", + " [ 1.11017933e-01 8.22398255e-01 5.57975025e-01]\n", + " [ 7.54999407e-02 8.25725833e-01 5.58996071e-01]\n", + " [ 4.04411567e-02 8.27921619e-01 5.59383863e-01]\n", + " [ 6.05676542e-03 8.29021814e-01 5.59183464e-01]\n", + " [ 1.81098659e-01 7.91674828e-01 5.83484569e-01]\n", + " [ 1.45089881e-01 7.97366517e-01 5.85794814e-01]\n", + " [ 1.09117223e-01 8.01932926e-01 5.87364464e-01]\n", + " [ 7.33949471e-02 8.05374554e-01 5.88204904e-01]\n", + " [ 3.81350103e-02 8.07710899e-01 5.88344138e-01]\n", + " [ 3.55066322e-03 8.08978501e-01 5.87827507e-01]\n", + " [ 1.79370701e-01 7.69769681e-01 6.12601657e-01]\n", + " [ 1.43220152e-01 7.75517962e-01 6.14865741e-01]\n", + " [ 1.07110126e-01 7.80174008e-01 6.16324539e-01]\n", + " [ 7.12557397e-02 7.83737876e-01 6.16990730e-01]\n", + " [ 3.58679986e-02 7.86228875e-01 6.16893543e-01]\n", + " [ 1.15822905e-03 7.87683530e-01 6.16078984e-01]\n", + " [ 1.77398679e-01 7.46673941e-01 6.41098849e-01]\n", + " [ 1.41178676e-01 7.52472583e-01 6.43314536e-01]\n", + " [ 1.05003863e-01 7.57219649e-01 6.44664713e-01]\n", + " [ 6.90897957e-02 7.60914006e-01 6.45163914e-01]\n", + " [ 3.36468848e-02 7.63573924e-01 6.44843198e-01]\n", + " [-1.11474001e-03 7.65235352e-01 6.43749651e-01]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:fp_optics: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:cartToSphere: vec: [[-0.27282166 0.46721448 -0.84099879]\n", + " [-0.26313366 0.44647501 -0.8552314 ]\n", + " [-0.25290464 0.42503529 -0.86912844]\n", + " [-0.24218114 0.40296168 -0.88259287]\n", + " [-0.23100938 0.38032519 -0.8955375 ]\n", + " [-0.21943541 0.35720173 -0.90788492]\n", + " [-0.20750548 0.33367225 -0.91956746]\n", + " [-0.19526656 0.30982266 -0.93052721]\n", + " [-0.27282166 0.46721448 -0.84099879]\n", + " [-0.24977272 0.48108254 -0.84034111]\n", + " [-0.22597138 0.49477828 -0.83912537]\n", + " [-0.20151654 0.50823249 -0.83731166]\n", + " [-0.17650704 0.52137988 -0.83487022]\n", + " [-0.15104188 0.53415892 -0.83178158]\n", + " [-0.12522073 0.54651198 -0.82803649]\n", + " [-0.09914422 0.5583856 -0.82363581]\n", + " [-0.19526656 0.30982266 -0.93052721]\n", + " [-0.17059771 0.32284368 -0.93095026]\n", + " [-0.14528402 0.33586958 -0.93063644]\n", + " [-0.1194199 0.34883371 -0.92954501]\n", + " [-0.09310065 0.36167304 -0.92764481]\n", + " [-0.06642422 0.37432736 -0.92491451]\n", + " [-0.03949216 0.38673913 -0.92134316]\n", + " [-0.01240954 0.3988537 -0.9169306 ]\n", + " [-0.09914422 0.5583856 -0.82363581]\n", + " [-0.08745572 0.53778615 -0.83853298]\n", + " [-0.07545718 0.51634332 -0.85305087]\n", + " [-0.06319332 0.49411903 -0.86709457]\n", + " [-0.0507093 0.47118036 -0.88057801]\n", + " [-0.03805157 0.44760111 -0.89342338]\n", + " [-0.02526835 0.4234626 -0.90556112]\n", + " [-0.01240954 0.3988537 -0.9169306 ]\n", + " [-0.26858922 0.45830972 -0.84723788]\n", + " [-0.25634451 0.43241208 -0.86446937]\n", + " [-0.24333357 0.40552794 -0.88109924]\n", + " [-0.22964166 0.37778608 -0.89696286]\n", + " [-0.21535358 0.34932627 -0.91191776]\n", + " [-0.20055477 0.32029959 -0.92584337]\n", + " [-0.2628384 0.47320788 -0.84082714]\n", + " [-0.23406969 0.49009753 -0.83965218]\n", + " [-0.20426918 0.50665926 -0.83759805]\n", + " [-0.17361885 0.52277123 -0.83460574]\n", + " [-0.14230102 0.5383202 -0.83063938]\n", + " [-0.11049957 0.55320176 -0.82568617]\n", + " [-0.18463871 0.31557715 -0.93076292]\n", + " [-0.15395941 0.33154845 -0.93079113]\n", + " [-0.12240526 0.34746027 -0.92967108]\n", + " [-0.09015125 0.36319508 -0.92734141]\n", + " [-0.0573778 0.37864207 -0.92376294]\n", + " [-0.02427334 0.39369643 -0.91891998]\n", + " [-0.09417884 0.54947179 -0.83018739]\n", + " [-0.07964016 0.52364996 -0.8482029 ]\n", + " [-0.06468006 0.49662244 -0.86555337]\n", + " [-0.04938142 0.46851054 -0.88207673]\n", + " [-0.03382984 0.43945018 -0.8976297 ]\n", + " [-0.01811478 0.40959426 -0.91208793]\n", + " [-0.27271208 0.46719246 -0.84104657]\n", + " [-0.27271208 0.46719246 -0.84104657]\n", + " [-0.01254633 0.39889769 -0.91690961]\n", + " [-0.01254633 0.39889769 -0.91690961]\n", + " [-0.25865111 0.46431701 -0.84705922]\n", + " [-0.22970673 0.48119292 -0.84598357]\n", + " [-0.19974064 0.49775472 -0.84400469]\n", + " [-0.16893433 0.5138806 -0.84106357]\n", + " [-0.13746967 0.52945704 -0.83712445]\n", + " [-0.10553047 0.54437923 -0.83217461]\n", + " [-0.2462386 0.43838518 -0.86439863]\n", + " [-0.21683878 0.45519205 -0.86358621]\n", + " [-0.18644563 0.47172634 -0.86180757]\n", + " [-0.15523869 0.48786627 -0.85900376]\n", + " [-0.12339853 0.50349771 -0.85513909]\n", + " [-0.09110913 0.51851469 -0.85020094]\n", + " [-0.23308173 0.41145014 -0.88112524]\n", + " [-0.20328828 0.42814263 -0.8805497 ]\n", + " [-0.1725291 0.44460717 -0.87895289]\n", + " [-0.14098163 0.46072228 -0.87627573]\n", + " [-0.10882551 0.47637362 -0.8724822 ]\n", + " [-0.07624531 0.4914544 -0.86755935]\n", + " [-0.21926534 0.38364041 -0.89707455]\n", + " [-0.18913857 0.40017216 -0.89671001]\n", + " [-0.15807298 0.41652332 -0.8952772 ]\n", + " [-0.12624436 0.43257318 -0.89271653]\n", + " [-0.09383196 0.44820774 -0.88899122]\n", + " [-0.06102141 0.46331999 -0.88408765]\n", + " [-0.20487373 0.3550957 -0.91210405]\n", + " [-0.17447261 0.3714201 -0.91192457]\n", + " [-0.14315946 0.38761376 -0.91063766]\n", + " [-0.11110915 0.40355717 -0.908183 ]\n", + " [-0.07850115 0.41913734 -0.90452278]\n", + " [-0.04552234 0.43424774 -0.89964249]\n", + " [-0.18999207 0.32596741 -0.92609301]\n", + " [-0.159375 0.34203868 -0.92607189]\n", + " [-0.12787322 0.35803144 -0.92491185]\n", + " [-0.09566153 0.37382767 -0.92255176]\n", + " [-0.06292006 0.38931589 -0.91895278]\n", + " [-0.0298369 0.40439077 -0.91409948]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:cartToSphere: vec: [[ 0.05907177 -0.57339697 0.8171453 ]\n", + " [ 0.05150911 -0.55137848 0.83266355]\n", + " [ 0.0437529 -0.52847451 0.84782096]\n", + " [ 0.03583195 -0.50475242 0.86252018]\n", + " [ 0.02777544 -0.48028476 0.87667273]\n", + " [ 0.01961343 -0.45515092 0.89019826]\n", + " [ 0.01137707 -0.4294381 0.90302463]\n", + " [ 0.00309858 -0.40324122 0.91508848]\n", + " [ 0.05907177 -0.57339697 0.8171453 ]\n", + " [ 0.08690868 -0.56575024 0.81998387]\n", + " [ 0.11455803 -0.55757665 0.82218291]\n", + " [ 0.14191216 -0.54891248 0.82374512]\n", + " [ 0.16886442 -0.53979849 0.82468321]\n", + " [ 0.19530899 -0.53027952 0.82502002]\n", + " [ 0.22114054 -0.52040427 0.82478861]\n", + " [ 0.24625372 -0.51022527 0.82403233]\n", + " [ 0.00309858 -0.40324122 0.91508848]\n", + " [ 0.03194393 -0.39544203 0.91793529]\n", + " [ 0.06066767 -0.38731051 0.91995109]\n", + " [ 0.08915695 -0.37888375 0.92113959]\n", + " [ 0.1173024 -0.37020245 0.92151522]\n", + " [ 0.14499859 -0.36131056 0.92110265]\n", + " [ 0.17214334 -0.35225522 0.91993637]\n", + " [ 0.19863614 -0.34308712 0.91806041]\n", + " [ 0.24625372 -0.51022527 0.82403233]\n", + " [ 0.24062305 -0.4883104 0.83884057]\n", + " [ 0.23455292 -0.46561364 0.85333983]\n", + " [ 0.22807299 -0.44220694 0.86743053]\n", + " [ 0.2212124 -0.41816686 0.88102301]\n", + " [ 0.21399997 -0.39357489 0.89403737]\n", + " [ 0.20646468 -0.36851769 0.90640336]\n", + " [ 0.19863614 -0.34308712 0.91806041]\n", + " [ 0.05589584 -0.56388454 0.82395988]\n", + " [ 0.04649418 -0.53629464 0.84274928]\n", + " [ 0.03683025 -0.5074412 0.86089893]\n", + " [ 0.02695757 -0.47745555 0.87824227]\n", + " [ 0.01693148 -0.44648398 0.89463142]\n", + " [ 0.0068098 -0.41469023 0.90993716]\n", + " [ 0.07119979 -0.57005606 0.81851492]\n", + " [ 0.10520529 -0.56032539 0.82156394]\n", + " [ 0.138822 -0.549839 0.82365376]\n", + " [ 0.17185315 -0.53867009 0.82480363]\n", + " [ 0.20410393 -0.52690119 0.82505559]\n", + " [ 0.2353804 -0.51462352 0.82447481]\n", + " [ 0.0157112 -0.3999741 0.91639177]\n", + " [ 0.05099654 -0.39018731 0.91932215]\n", + " [ 0.08598669 -0.37993761 0.92100689]\n", + " [ 0.12047881 -0.36929846 0.92146813]\n", + " [ 0.15427872 -0.35835075 0.92075122]\n", + " [ 0.18719913 -0.34718272 0.91892363]\n", + " [ 0.24376966 -0.500806 0.83052375]\n", + " [ 0.23656817 -0.473412 0.84847898]\n", + " [ 0.22873627 -0.44491448 0.86586998]\n", + " [ 0.22032783 -0.41545243 0.88252758]\n", + " [ 0.21139598 -0.38517588 0.89830467]\n", + " [ 0.2019943 -0.35424658 0.91307593]\n", + " [ 0.05914166 -0.57329804 0.81720965]\n", + " [ 0.05914166 -0.57329804 0.81720965]\n", + " [ 0.198574 -0.34320609 0.91802938]\n", + " [ 0.198574 -0.34320609 0.91802938]\n", + " [ 0.06800209 -0.560631 0.8252688 ]\n", + " [ 0.10214791 -0.55087692 0.82831179]\n", + " [ 0.13591048 -0.54038125 0.83037127]\n", + " [ 0.16909288 -0.52921761 0.83146637]\n", + " [ 0.2015006 -0.5174689 0.83163901]\n", + " [ 0.23294022 -0.50522648 0.8309543 ]\n", + " [ 0.05872174 -0.53301248 0.84406721]\n", + " [ 0.09322254 -0.5232055 0.84709242]\n", + " [ 0.12735531 -0.5126994 0.84907005]\n", + " [ 0.16092243 -0.501569 0.85001913]\n", + " [ 0.19373019 -0.48989808 0.84998146]\n", + " [ 0.22558703 -0.47777844 0.84902194]\n", + " [ 0.04915666 -0.50413667 0.86222378]\n", + " [ 0.08394893 -0.49429738 0.86522984]\n", + " [ 0.11838826 -0.48380564 0.86713109]\n", + " [ 0.15227591 -0.472737 0.86794687]\n", + " [ 0.18541865 -0.46117577 0.86771933]\n", + " [ 0.21762678 -0.44921383 0.86651343]\n", + " [ 0.03935979 -0.4741351 0.87957189]\n", + " [ 0.07437865 -0.46428513 0.88255715]\n", + " [ 0.10906026 -0.45383395 0.88438714]\n", + " [ 0.14320444 -0.4428573 0.88508186]\n", + " [ 0.17661808 -0.43143928 0.88468424]\n", + " [ 0.20911295 -0.4196713 0.88325974]\n", + " [ 0.02938572 -0.44315428 0.8959636 ]\n", + " [ 0.0645644 -0.43331595 0.89892643]\n", + " [ 0.09942266 -0.42293234 0.9006905 ]\n", + " [ 0.13375898 -0.41207863 0.90127673]\n", + " [ 0.16737992 -0.40083799 0.90072908]\n", + " [ 0.20009814 -0.38930075 0.89911382]\n", + " [ 0.01929158 -0.4113581 0.91126964]\n", + " [ 0.05456141 -0.40155394 0.91420867]\n", + " [ 0.08952919 -0.39126471 0.91591291]\n", + " [ 0.12399233 -0.38056441 0.91640418]\n", + " [ 0.15775688 -0.36953462 0.91572754]\n", + " [ 0.19063562 -0.35826415 0.91395014]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:fp_optics: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:fp_optics: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:cartToSphere: vec: [[ 0.01282207 -0.97222013 0.23371696]\n", + " [ 0.01255869 -0.96529081 0.26087532]\n", + " [ 0.01227925 -0.95744288 0.28836149]\n", + " [ 0.01198439 -0.94866598 0.31605258]\n", + " [ 0.01167486 -0.93895911 0.34383061]\n", + " [ 0.0113515 -0.9283315 0.37158009]\n", + " [ 0.0110153 -0.91680371 0.3991862 ]\n", + " [ 0.01066742 -0.90440837 0.42653453]\n", + " [ 0.01282207 -0.97222013 0.23371696]\n", + " [ 0.04184831 -0.97137084 0.2338534 ]\n", + " [ 0.07074606 -0.969686 0.23388899]\n", + " [ 0.09940271 -0.96718299 0.23382937]\n", + " [ 0.12770662 -0.96388929 0.23368452]\n", + " [ 0.1555474 -0.95984236 0.23346873]\n", + " [ 0.18281663 -0.95508944 0.2332 ]\n", + " [ 0.20940972 -0.94968725 0.23289848]\n", + " [ 0.01066742 -0.90440837 0.42653453]\n", + " [ 0.04069066 -0.90355945 0.42652619]\n", + " [ 0.07057967 -0.90190117 0.42613705]\n", + " [ 0.10021677 -0.89945177 0.42537409]\n", + " [ 0.12948911 -0.8962395 0.42424914]\n", + " [ 0.15828845 -0.89230211 0.42277857]\n", + " [ 0.1865091 -0.88768656 0.42098329]\n", + " [ 0.2140454 -0.88244927 0.41888883]\n", + " [ 0.20940972 -0.94968725 0.23289848]\n", + " [ 0.21088609 -0.94257406 0.25900038]\n", + " [ 0.21209557 -0.93462825 0.28545666]\n", + " [ 0.21303375 -0.92584074 0.31214668]\n", + " [ 0.21369861 -0.91621262 0.33895034]\n", + " [ 0.21408911 -0.90575522 0.36575037]\n", + " [ 0.21420471 -0.89449013 0.39243311]\n", + " [ 0.2140454 -0.88244927 0.41888883]\n", + " [ 0.01280899 -0.96930935 0.24551032]\n", + " [ 0.01247629 -0.96020078 0.27903192]\n", + " [ 0.01211991 -0.94970111 0.31292318]\n", + " [ 0.01174118 -0.93780461 0.34696492]\n", + " [ 0.01134164 -0.9245284 0.38094435]\n", + " [ 0.01092319 -0.90991535 0.41465015]\n", + " [ 0.02548571 -0.9719311 0.23388119]\n", + " [ 0.06098918 -0.9703266 0.23397994]\n", + " [ 0.09618765 -0.96748318 0.23393213]\n", + " [ 0.13087517 -0.96344725 0.23375432]\n", + " [ 0.16484859 -0.95828775 0.23347277]\n", + " [ 0.19790972 -0.95209561 0.23312162]\n", + " [ 0.02376767 -0.9041823 0.42648502]\n", + " [ 0.06048888 -0.90259575 0.42621826]\n", + " [ 0.09689106 -0.89981041 0.42538611]\n", + " [ 0.1327644 -0.89587419 0.42400831]\n", + " [ 0.16790935 -0.89085652 0.42211504]\n", + " [ 0.20213147 -0.88484779 0.41974667]\n", + " [ 0.20999576 -0.94670684 0.24422929]\n", + " [ 0.21162554 -0.9374308 0.27647445]\n", + " [ 0.21284987 -0.92689388 0.30913211]\n", + " [ 0.21366412 -0.91509387 0.34198079]\n", + " [ 0.21406636 -0.90205159 0.37480465]\n", + " [ 0.21405578 -0.8878111 0.40739608]\n", + " [ 0.01292055 -0.97219651 0.23380977]\n", + " [ 0.01292055 -0.97219651 0.23380977]\n", + " [ 0.21395354 -0.88251062 0.4188065 ]\n", + " [ 0.21395354 -0.88251062 0.4188065 ]\n", + " [ 0.02542342 -0.9690429 0.24557996]\n", + " [ 0.0610663 -0.96743205 0.24565452]\n", + " [ 0.0964035 -0.9645774 0.24555409]\n", + " [ 0.13122878 -0.96052554 0.24529512]\n", + " [ 0.16533866 -0.95534553 0.24490417]\n", + " [ 0.19853376 -0.94912843 0.2444168 ]\n", + " [ 0.02521456 -0.95993194 0.27909658]\n", + " [ 0.06120757 -0.95830808 0.27910439]\n", + " [ 0.09689244 -0.95543161 0.27885892]\n", + " [ 0.13206231 -0.9513498 0.27837582]\n", + " [ 0.16651381 -0.94613218 0.27768155]\n", + " [ 0.20004633 -0.93987001 0.2768137 ]\n", + " [ 0.02495863 -0.94943076 0.3129829 ]\n", + " [ 0.06123525 -0.94780144 0.312926 ]\n", + " [ 0.09720045 -0.94491825 0.31254052]\n", + " [ 0.13264667 -0.94082927 0.31184155]\n", + " [ 0.16737159 -0.93560456 0.31085506]\n", + " [ 0.20117555 -0.92933549 0.30961903]\n", + " [ 0.02465646 -0.93753368 0.34701967]\n", + " [ 0.06114898 -0.93590694 0.34689913]\n", + " [ 0.09732654 -0.93303298 0.34637698]\n", + " [ 0.13298074 -0.92896046 0.34546864]\n", + " [ 0.16791046 -0.92375985 0.34420025]\n", + " [ 0.20191807 -0.9175225 0.34260991]\n", + " [ 0.02430875 -0.92425788 0.38099405]\n", + " [ 0.06094735 -0.92264228 0.38081051]\n", + " [ 0.09726814 -0.91979438 0.3801542 ]\n", + " [ 0.13306189 -0.91576294 0.37904191]\n", + " [ 0.16812848 -0.91061837 0.37750098]\n", + " [ 0.20227218 -0.90445179 0.37557014]\n", + " [ 0.02391648 -0.90964623 0.41469476]\n", + " [ 0.06062909 -0.90805057 0.41444936]\n", + " [ 0.09702262 -0.90524593 0.41366221]\n", + " [ 0.13288733 -0.90128053 0.41235224]\n", + " [ 0.16802361 -0.89622416 0.41054881]\n", + " [ 0.20223689 -0.89016742 0.40829182]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:fp_optics: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:cartToSphere: vec: [[-0.37448243 -0.631816 0.67865415]\n", + " [-0.35541312 -0.622739 0.69704925]\n", + " [-0.33567774 -0.61297748 0.71524756]\n", + " [-0.3153392 -0.60254304 0.73314601]\n", + " [-0.29446395 -0.59145356 0.75064883]\n", + " [-0.27312331 -0.57973408 0.76766663]\n", + " [-0.25139416 -0.56741734 0.78411641]\n", + " [-0.22935869 -0.55454398 0.79992223]\n", + " [-0.37448243 -0.631816 0.67865415]\n", + " [-0.35584903 -0.65207757 0.66945224]\n", + " [-0.3369109 -0.67169565 0.65978481]\n", + " [-0.31774434 -0.69060048 0.64969955]\n", + " [-0.29842779 -0.70872924 0.63925247]\n", + " [-0.27904155 -0.72602565 0.62850821]\n", + " [-0.25966768 -0.74243942 0.61754061]\n", + " [-0.2403904 -0.75792556 0.60643326]\n", + " [-0.22935869 -0.55454398 0.79992223]\n", + " [-0.21018632 -0.57555003 0.79029354]\n", + " [-0.19088636 -0.59596978 0.77998873]\n", + " [-0.17153784 -0.61572995 0.76905877]\n", + " [-0.15222005 -0.6347661 0.75756257]\n", + " [-0.13301204 -0.65302272 0.74556631]\n", + " [-0.11399283 -0.67045251 0.73314328]\n", + " [-0.09524241 -0.68701513 0.72037428]\n", + " [-0.2403904 -0.75792556 0.60643326]\n", + " [-0.22074189 -0.75014822 0.62333832]\n", + " [-0.20061348 -0.7415535 0.64019734]\n", + " [-0.18007279 -0.73215584 0.65690305]\n", + " [-0.15919019 -0.7219748 0.67335791]\n", + " [-0.13803922 -0.71103557 0.68947342]\n", + " [-0.11669668 -0.69936961 0.70516951]\n", + " [-0.09524241 -0.68701513 0.72037428]\n", + " [-0.36619061 -0.62801365 0.68666098]\n", + " [-0.34236288 -0.61642806 0.70908681]\n", + " [-0.31759702 -0.60382505 0.73111384]\n", + " [-0.29201379 -0.59023488 0.75256278]\n", + " [-0.26574459 -0.57570369 0.77326909]\n", + " [-0.23893319 -0.56029506 0.79308283]\n", + " [-0.3663362 -0.64069491 0.67476501]\n", + " [-0.34328407 -0.66510468 0.66316801]\n", + " [-0.31984989 -0.68847781 0.65091809]\n", + " [-0.29617721 -0.71069575 0.63811489]\n", + " [-0.27241384 -0.73165486 0.62487747]\n", + " [-0.24871173 -0.75126479 0.61134581]\n", + " [-0.22109595 -0.56381465 0.79575727]\n", + " [-0.19750247 -0.58917494 0.7834958 ]\n", + " [-0.17379566 -0.61358074 0.77026862]\n", + " [-0.15012143 -0.63690972 0.75618091]\n", + " [-0.12662532 -0.6590596 0.74135448]\n", + " [-0.10345314 -0.67994628 0.72592734]\n", + " [-0.23195249 -0.75458421 0.61384095]\n", + " [-0.20754009 -0.74450023 0.63454434]\n", + " [-0.18247362 -0.73320237 0.65507073]\n", + " [-0.15688146 -0.72072449 0.67523657]\n", + " [-0.13089899 -0.70711303 0.69487885]\n", + " [-0.10466891 -0.69242871 0.71385356]\n", + " [-0.37435531 -0.63185644 0.67868663]\n", + " [-0.37435531 -0.63185644 0.67868663]\n", + " [-0.09537944 -0.68700338 0.72036735]\n", + " [-0.09537944 -0.68700338 0.72036735]\n", + " [-0.35814119 -0.63688723 0.68272216]\n", + " [-0.33501239 -0.66139686 0.67105953]\n", + " [-0.31151559 -0.68487023 0.65871907]\n", + " [-0.28779486 -0.70718887 0.6458003 ]\n", + " [-0.26399823 -0.72824963 0.63242186]\n", + " [-0.24027756 -0.74796292 0.61872301]\n", + " [-0.33423763 -0.62539028 0.70510439]\n", + " [-0.31092113 -0.65015418 0.6932731 ]\n", + " [-0.2872782 -0.67388557 0.68069778]\n", + " [-0.26345432 -0.69646589 0.66747815]\n", + " [-0.23959808 -0.71779322 0.65373209]\n", + " [-0.2158609 -0.73778019 0.63959711]\n", + " [-0.30941103 -0.61285972 0.72709544]\n", + " [-0.28595159 -0.63783528 0.71512086]\n", + " [-0.26221015 -0.66178664 0.702342 ]\n", + " [-0.23833334 -0.68459473 0.6888594 ]\n", + " [-0.21446993 -0.70615841 0.67479104]\n", + " [-0.19077058 -0.72639223 0.66027336]\n", + " [-0.28378263 -0.59932534 0.74851624]\n", + " [-0.26022659 -0.62446906 0.73642414]\n", + " [-0.23643597 -0.64860225 0.72347298]\n", + " [-0.21255799 -0.67160498 0.70976464]\n", + " [-0.18874109 -0.69337635 0.69541789]\n", + " [-0.16513478 -0.71383219 0.68056896]\n", + " [-0.25748435 -0.58483274 0.76920249]\n", + " [-0.23387949 -0.61009981 0.75701955]\n", + " [-0.21009018 -0.63437598 0.74392825]\n", + " [-0.18626355 -0.65754026 0.73003198]\n", + " [-0.16254715 -0.67949145 0.71545076]\n", + " [-0.13908896 -0.70014592 0.70032132]\n", + " [-0.23066038 -0.56944499 0.78900456]\n", + " [-0.20705533 -0.59478926 0.77675854]\n", + " [-0.1833181 -0.61916846 0.76356067]\n", + " [-0.15959506 -0.64246057 0.74951573]\n", + " [-0.13603232 -0.66456365 0.7347451 ]\n", + " [-0.11277625 -0.68539384 0.71938641]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:cartToSphere: vec: [[ 0.1507872 0.15409538 -0.97648238]\n", + " [ 0.17575851 0.14425562 -0.97380658]\n", + " [ 0.20117766 0.13424677 -0.97031199]\n", + " [ 0.22691987 0.12409065 -0.96597561]\n", + " [ 0.25286645 0.11381315 -0.9607836 ]\n", + " [ 0.27890339 0.10344417 -0.95473148]\n", + " [ 0.30492047 0.09301713 -0.94782452]\n", + " [ 0.33081084 0.08256852 -0.94007799]\n", + " [ 0.1507872 0.15409538 -0.97648238]\n", + " [ 0.15732919 0.17964721 -0.97106869]\n", + " [ 0.16404601 0.20557358 -0.96479449]\n", + " [ 0.17088446 0.2317571 -0.95764667]\n", + " [ 0.17779771 0.25808431 -0.94962122]\n", + " [ 0.18474429 0.28444451 -0.94072359]\n", + " [ 0.1916872 0.31072926 -0.93096903]\n", + " [ 0.19859328 0.33683233 -0.9203829 ]\n", + " [ 0.33081084 0.08256852 -0.94007799]\n", + " [ 0.3394185 0.10849846 -0.93435709]\n", + " [ 0.34793315 0.13487146 -0.92776733]\n", + " [ 0.3563051 0.16157703 -0.92029318]\n", + " [ 0.3644882 0.18850561 -0.91192872]\n", + " [ 0.37243954 0.21554739 -0.9026783 ]\n", + " [ 0.38011948 0.24259214 -0.89255713]\n", + " [ 0.38749206 0.26952989 -0.88159148]\n", + " [ 0.19859328 0.33683233 -0.9203829 ]\n", + " [ 0.2251085 0.32838199 -0.91732842]\n", + " [ 0.25197334 0.31950288 -0.91346995]\n", + " [ 0.27907055 0.31021552 -0.90878268]\n", + " [ 0.30628486 0.3005441 -0.90325125]\n", + " [ 0.33350192 0.29051692 -0.89687033]\n", + " [ 0.36060824 0.2801666 -0.88964508]\n", + " [ 0.38749206 0.26952989 -0.88159148]\n", + " [ 0.16163401 0.1499141 -0.97539746]\n", + " [ 0.19255772 0.13773892 -0.97157064]\n", + " [ 0.22402928 0.12533077 -0.96649008]\n", + " [ 0.25582776 0.11273566 -0.96012647]\n", + " [ 0.28774317 0.10000854 -0.95247161]\n", + " [ 0.31957397 0.08721226 -0.94353935]\n", + " [ 0.15369938 0.16514926 -0.97421877]\n", + " [ 0.16184337 0.1967334 -0.96700708]\n", + " [ 0.17019615 0.22876302 -0.95848879]\n", + " [ 0.1786689 0.26102767 -0.94865272]\n", + " [ 0.18718519 0.29332353 -0.93750894]\n", + " [ 0.19567852 0.32545184 -0.92508974]\n", + " [ 0.33448333 0.09384827 -0.93771712]\n", + " [ 0.34497591 0.12594038 -0.93012399]\n", + " [ 0.35527916 0.15858792 -0.92120931]\n", + " [ 0.36530668 0.19158892 -0.91095813]\n", + " [ 0.37497949 0.22474121 -0.89937855]\n", + " [ 0.38422613 0.25784191 -0.88650315]\n", + " [ 0.21007975 0.33311267 -0.91918575]\n", + " [ 0.24282661 0.3224643 -0.91490547]\n", + " [ 0.27598184 0.31119208 -0.90939184]\n", + " [ 0.30933253 0.29933899 -0.90261263]\n", + " [ 0.34266813 0.28695719 -0.89455806]\n", + " [ 0.3757804 0.27410844 -0.88524214]\n", + " [ 0.1508937 0.15414865 -0.97645752]\n", + " [ 0.1508937 0.15414865 -0.97645752]\n", + " [ 0.38737598 0.2694749 -0.8816593 ]\n", + " [ 0.38737598 0.2694749 -0.8816593 ]\n", + " [ 0.16450894 0.16094978 -0.97315568]\n", + " [ 0.17282853 0.19263537 -0.9659306 ]\n", + " [ 0.18132755 0.22477054 -0.95739152]\n", + " [ 0.18991841 0.25714562 -0.94752685]\n", + " [ 0.19852544 0.28955702 -0.93634629]\n", + " [ 0.20708251 0.32180566 -0.923882 ]\n", + " [ 0.195619 0.14885526 -0.96931693]\n", + " [ 0.20441127 0.18077724 -0.96204762]\n", + " [ 0.2133041 0.21316305 -0.95344789]\n", + " [ 0.22221258 0.24580516 -0.94350484]\n", + " [ 0.23106243 0.2785003 -0.9322273 ]\n", + " [ 0.2397878 0.31104828 -0.91964709]\n", + " [ 0.22726377 0.13650051 -0.96421927]\n", + " [ 0.23649584 0.16858413 -0.95689556]\n", + " [ 0.24575524 0.20114929 -0.94823168]\n", + " [ 0.25495842 0.23399022 -0.93821361]\n", + " [ 0.26403125 0.26690376 -0.92684944]\n", + " [ 0.27290728 0.29968848 -0.9141709 ]\n", + " [ 0.25922363 0.12393203 -0.95783295]\n", + " [ 0.26886584 0.15610348 -0.95044351]\n", + " [ 0.27846673 0.18877676 -0.941711 ]\n", + " [ 0.28794286 0.22174754 -0.9316206 ]\n", + " [ 0.29721923 0.25481272 -0.92017999]\n", + " [ 0.30622816 0.28776988 -0.90742097]\n", + " [ 0.29128922 0.11120528 -0.95014945]\n", + " [ 0.3013129 0.14339163 -0.94268201]\n", + " [ 0.31123032 0.17610187 -0.9338757 ]\n", + " [ 0.32095713 0.20913282 -0.92371532]\n", + " [ 0.3304168 0.24228161 -0.9122085 ]\n", + " [ 0.33954009 0.27534524 -0.8993873 ]\n", + " [ 0.3232589 0.09838356 -0.94118242]\n", + " [ 0.33363461 0.13051282 -0.93362431]\n", + " [ 0.34384216 0.16318915 -0.92473881]\n", + " [ 0.35379574 0.19621029 -0.91451085]\n", + " [ 0.36341701 0.22937385 -0.90294834]\n", + " [ 0.37263508 0.26247681 -0.89008371]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:fp_optics: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:fp_optics: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:cartToSphere: vec: [[-0.36571956 0.88995791 0.27244103]\n", + " [-0.36696987 0.89700735 0.24639588]\n", + " [-0.3678327 0.90358035 0.21963983]\n", + " [-0.3682977 0.90960905 0.1922711 ]\n", + " [-0.36835885 0.91503371 0.164393 ]\n", + " [-0.36801312 0.91980427 0.13611187]\n", + " [-0.36725979 0.92388106 0.1075362 ]\n", + " [-0.36610038 0.92723503 0.07877633]\n", + " [-0.36571956 0.88995791 0.27244103]\n", + " [-0.34054021 0.8986883 0.2763905 ]\n", + " [-0.31456429 0.90697599 0.2800783 ]\n", + " [-0.28788354 0.91474514 0.28348615]\n", + " [-0.26059593 0.92192774 0.28659904]\n", + " [-0.2328034 0.92846536 0.28940396]\n", + " [-0.20461089 0.93430992 0.29188928]\n", + " [-0.17612602 0.93942394 0.29404469]\n", + " [-0.36610038 0.92723503 0.07877633]\n", + " [-0.34002616 0.93691491 0.08107202]\n", + " [-0.31314138 0.94604215 0.08334703]\n", + " [-0.28554103 0.95453701 0.08558869]\n", + " [-0.25732099 0.96233032 0.08778529]\n", + " [-0.22858041 0.96936285 0.08992586]\n", + " [-0.199424 0.97558498 0.09200008]\n", + " [-0.16996303 0.98095712 0.09399834]\n", + " [-0.17612602 0.93942394 0.29404469]\n", + " [-0.1757303 0.94748268 0.26719925]\n", + " [-0.17517829 0.95493536 0.23960597]\n", + " [-0.17446523 0.96171029 0.21136507]\n", + " [-0.17358788 0.96774623 0.18257732]\n", + " [-0.17254457 0.97299188 0.1533466 ]\n", + " [-0.17133553 0.97740583 0.12378199]\n", + " [-0.16996303 0.98095712 0.09399834]\n", + " [-0.36622646 0.89311634 0.26119223]\n", + " [-0.36749903 0.90144554 0.22878025]\n", + " [-0.36817886 0.90899077 0.19539729]\n", + " [-0.3682532 0.91563855 0.1612316 ]\n", + " [-0.36771637 0.92129679 0.12647884]\n", + " [-0.36656798 0.92589687 0.09133954]\n", + " [-0.3548493 0.89383892 0.27410577]\n", + " [-0.32344171 0.90425197 0.278772 ]\n", + " [-0.29092788 0.91392387 0.28302673]\n", + " [-0.25748579 0.922726 0.28684108]\n", + " [-0.22330298 0.93055089 0.29019102]\n", + " [-0.18857378 0.93731441 0.29305568]\n", + " [-0.35484234 0.93150762 0.07987788]\n", + " [-0.32232873 0.94301016 0.08268022]\n", + " [-0.28869195 0.95360222 0.08543863]\n", + " [-0.2541081 0.9631521 0.08813113]\n", + " [-0.21875999 0.9715507 0.09073751]\n", + " [-0.18284315 0.97871081 0.09323907]\n", + " [-0.1760705 0.94299077 0.28243156]\n", + " [-0.17548204 0.95246942 0.24901415]\n", + " [-0.17465375 0.96096538 0.21457306]\n", + " [-0.17357901 0.96836159 0.17929351]\n", + " [-0.17225483 0.97456358 0.143367 ]\n", + " [-0.17068242 0.97949947 0.10699678]\n", + " [-0.36563983 0.89001327 0.27236721]\n", + " [-0.36563983 0.89001327 0.27236721]\n", + " [-0.17006913 0.98092959 0.09409374]\n", + " [-0.17006913 0.98092959 0.09409374]\n", + " [-0.35539422 0.8969859 0.26289016]\n", + " [-0.32386378 0.90751349 0.26745377]\n", + " [-0.29122259 0.91728325 0.27162628]\n", + " [-0.25765012 0.9261653 0.27538019]\n", + " [-0.22333436 0.93405172 0.27869187]\n", + " [-0.18846983 0.94085822 0.28154028]\n", + " [-0.35655985 0.90542834 0.23035756]\n", + " [-0.32471754 0.91624922 0.2346186 ]\n", + " [-0.29175597 0.92626789 0.23855031]\n", + " [-0.25785657 0.93535249 0.24212748]\n", + " [-0.22320721 0.94339464 0.24532652]\n", + " [-0.18800267 0.95030982 0.24812546]\n", + " [-0.35715142 0.9130683 0.19684803]\n", + " [-0.32505486 0.92413281 0.20079312]\n", + " [-0.29183471 0.93435696 0.2044739 ]\n", + " [-0.25767189 0.94360847 0.20786593]\n", + " [-0.22275298 0.95177899 0.21094516]\n", + " [-0.18727279 0.95878363 0.21368869]\n", + " [-0.35715763 0.91979103 0.16255117]\n", + " [-0.32486672 0.93104758 0.16616866]\n", + " [-0.29145033 0.94143332 0.16958778]\n", + " [-0.25708764 0.95081622 0.17278445]\n", + " [-0.22196359 0.95908784 0.17573466]\n", + " [-0.18627313 0.96616264 0.17841547]\n", + " [-0.35657322 0.92550401 0.12766309]\n", + " [-0.32414782 0.93690049 0.13094142]\n", + " [-0.2905968 0.94740389 0.13408717]\n", + " [-0.25609749 0.95688244 0.13707686]\n", + " [-0.22083344 0.96522747 0.13988755]\n", + " [-0.18499987 0.97235257 0.14249745]\n", + " [-0.35539769 0.93013846 0.09238463]\n", + " [-0.32289679 0.9416226 0.09531286]\n", + " [-0.28927177 0.9521994 0.098174 ]\n", + " [-0.25469886 0.96173721 0.10094566]\n", + " [-0.21936091 0.97012701 0.10360682]\n", + " [-0.18345337 0.97728175 0.10613787]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:fp_optics: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:cartToSphere: vec: [[ 0.64072888 0.7338931 -0.22553805]\n", + " [ 0.63020236 0.7345756 -0.25148294]\n", + " [ 0.61895648 0.73467883 -0.2777407 ]\n", + " [ 0.60700841 0.73417007 -0.30419582]\n", + " [ 0.59438168 0.73302419 -0.33073549]\n", + " [ 0.58110713 0.73122383 -0.35724812]\n", + " [ 0.56722352 0.72875988 -0.38362287]\n", + " [ 0.55277767 0.72563183 -0.40975029]\n", + " [ 0.64072888 0.7338931 -0.22553805]\n", + " [ 0.66000555 0.71389904 -0.23396761]\n", + " [ 0.67863016 0.69337471 -0.24226561]\n", + " [ 0.69653679 0.67240894 -0.25040511]\n", + " [ 0.71366641 0.65109791 -0.25836365]\n", + " [ 0.72996648 0.62954517 -0.26612371]\n", + " [ 0.74539036 0.60786205 -0.27367305]\n", + " [ 0.75989669 0.58616831 -0.28100486]\n", + " [ 0.55277767 0.72563183 -0.40975029]\n", + " [ 0.5727729 0.7049377 -0.4183229 ]\n", + " [ 0.59218751 0.6836787 -0.42649431]\n", + " [ 0.61095214 0.66194801 -0.43423763]\n", + " [ 0.62900615 0.63984453 -0.44153169]\n", + " [ 0.64629767 0.61747208 -0.44836095]\n", + " [ 0.66278289 0.59493942 -0.45471522]\n", + " [ 0.67842485 0.57236127 -0.46058908]\n", + " [ 0.75989669 0.58616831 -0.28100486]\n", + " [ 0.75065954 0.5853311 -0.30642742]\n", + " [ 0.74057881 0.58415543 -0.33212266]\n", + " [ 0.72967487 0.58260866 -0.3579689 ]\n", + " [ 0.71797319 0.58066698 -0.38384938]\n", + " [ 0.70550489 0.5783152 -0.40965153]\n", + " [ 0.69230738 0.57554634 -0.43526647]\n", + " [ 0.67842485 0.57236127 -0.46058908]\n", + " [ 0.63629581 0.73419185 -0.23683319]\n", + " [ 0.62290952 0.73464261 -0.26885676]\n", + " [ 0.60845902 0.73419009 -0.30123502]\n", + " [ 0.59298492 0.73278483 -0.3337593 ]\n", + " [ 0.57654407 0.73039498 -0.36622412]\n", + " [ 0.55921119 0.72700731 -0.39842593]\n", + " [ 0.64917476 0.72524919 -0.2293158 ]\n", + " [ 0.67237116 0.70037626 -0.23956236]\n", + " [ 0.69452187 0.67479423 -0.24958388]\n", + " [ 0.71551536 0.64867714 -0.2593371 ]\n", + " [ 0.73525485 0.62221566 -0.26878982]\n", + " [ 0.7536567 0.59561821 -0.27792178]\n", + " [ 0.56161256 0.71669608 -0.41344656]\n", + " [ 0.58573729 0.69094211 -0.42368718]\n", + " [ 0.60891997 0.66443156 -0.43329802]\n", + " [ 0.63104531 0.63734419 -0.44223771]\n", + " [ 0.65201773 0.60987114 -0.45047761]\n", + " [ 0.67175949 0.582215 -0.45800097]\n", + " [ 0.75592578 0.5859169 -0.29202328]\n", + " [ 0.74403426 0.58466884 -0.32338116]\n", + " [ 0.73089539 0.58287876 -0.35502714]\n", + " [ 0.71655394 0.58049919 -0.38674429]\n", + " [ 0.70106724 0.57750211 -0.41832528]\n", + " [ 0.68450698 0.57387795 -0.44957123]\n", + " [ 0.64076108 0.73382901 -0.22565512]\n", + " [ 0.64076108 0.73382901 -0.22565512]\n", + " [ 0.67842142 0.57245002 -0.46048383]\n", + " [ 0.67842142 0.57245002 -0.46048383]\n", + " [ 0.64474304 0.72557783 -0.24050618]\n", + " [ 0.66803571 0.70060188 -0.2507694 ]\n", + " [ 0.69028437 0.67490822 -0.26078034]\n", + " [ 0.71137757 0.64867113 -0.27049534]\n", + " [ 0.73121906 0.62208111 -0.27988172]\n", + " [ 0.74972598 0.59534599 -0.28891887]\n", + " [ 0.63144148 0.72594256 -0.2725602 ]\n", + " [ 0.65497977 0.70070831 -0.28285928]\n", + " [ 0.67748145 0.67473624 -0.29283083]\n", + " [ 0.69883507 0.64820173 -0.30243025]\n", + " [ 0.71894566 0.62129508 -0.31162406]\n", + " [ 0.73773257 0.59422248 -0.32039085]\n", + " [ 0.61706031 0.72542031 -0.30496221]\n", + " [ 0.64080389 0.69997801 -0.31527948]\n", + " [ 0.6635229 0.67378394 -0.32519617]\n", + " [ 0.68510542 0.6470149 -0.33466742]\n", + " [ 0.70545727 0.61986134 -0.34365965]\n", + " [ 0.72449968 0.59252812 -0.35215146]\n", + " [ 0.60163971 0.72396213 -0.33750332]\n", + " [ 0.62554748 0.69836344 -0.34782016]\n", + " [ 0.64844813 0.67200491 -0.35766525]\n", + " [ 0.67022889 0.64506475 -0.36699414]\n", + " [ 0.69079579 0.61773378 -0.37577407]\n", + " [ 0.71007129 0.59021585 -0.38398439]\n", + " [ 0.585236 0.72153673 -0.3699778 ]\n", + " [ 0.60926561 0.69583494 -0.3802751 ]\n", + " [ 0.63231154 0.66937096 -0.39003157]\n", + " [ 0.65425999 0.64232407 -0.39920379]\n", + " [ 0.67501656 0.61488538 -0.4077605 ]\n", + " [ 0.69450417 0.58725806 -0.4156825 ]\n", + " [ 0.56792341 0.71813137 -0.40218196]\n", + " [ 0.5920312 0.69238123 -0.41244066]\n", + " [ 0.61518498 0.66587208 -0.42209219]\n", + " [ 0.63726985 0.63878369 -0.43109458]\n", + " [ 0.65819057 0.61130724 -0.43941851]\n", + " [ 0.67786973 0.58364544 -0.44704657]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:cartToSphere: vec: [[ 0.2862399 0.34694935 -0.89313654]\n", + " [ 0.27174688 0.36924175 -0.88871489]\n", + " [ 0.25662087 0.3916576 -0.88360062]\n", + " [ 0.24092762 0.41409125 -0.87777122]\n", + " [ 0.22473263 0.43644102 -0.87121437]\n", + " [ 0.20810136 0.45860901 -0.86392801]\n", + " [ 0.19109963 0.48050103 -0.85592038]\n", + " [ 0.17379405 0.50202675 -0.84720999]\n", + " [ 0.2862399 0.34694935 -0.89313654]\n", + " [ 0.26630278 0.33294824 -0.90455973]\n", + " [ 0.24564184 0.31851887 -0.91553581]\n", + " [ 0.22434428 0.30369692 -0.92597939]\n", + " [ 0.20249713 0.28852279 -0.93581489]\n", + " [ 0.18018746 0.2730418 -0.94497654]\n", + " [ 0.15750289 0.25730422 -0.9534083 ]\n", + " [ 0.13453197 0.24136499 -0.96106404]\n", + " [ 0.17379405 0.50202675 -0.84720999]\n", + " [ 0.15202593 0.48906907 -0.85889439]\n", + " [ 0.12968669 0.47545596 -0.87012815]\n", + " [ 0.1068597 0.46121995 -0.88082754]\n", + " [ 0.08362904 0.44639827 -0.89091794]\n", + " [ 0.06008117 0.43103382 -0.90033333]\n", + " [ 0.03630568 0.41517594 -0.90901641]\n", + " [ 0.01239531 0.39888044 -0.91691916]\n", + " [ 0.13453197 0.24136499 -0.96106404]\n", + " [ 0.11805244 0.26367192 -0.95736134]\n", + " [ 0.10114302 0.28620905 -0.95281397]\n", + " [ 0.08386666 0.30887488 -0.94739785]\n", + " [ 0.06628699 0.33157096 -0.94109868]\n", + " [ 0.04846952 0.35420059 -0.93391255]\n", + " [ 0.0304822 0.37666832 -0.92584654]\n", + " [ 0.01239531 0.39888044 -0.91691916]\n", + " [ 0.27993554 0.35659989 -0.89133193]\n", + " [ 0.26173742 0.38401861 -0.88545086]\n", + " [ 0.242654 0.4115174 -0.87850581]\n", + " [ 0.22280599 0.43890742 -0.87046985]\n", + " [ 0.20231392 0.46600845 -0.86133919]\n", + " [ 0.1812993 0.49264865 -0.85113329]\n", + " [ 0.27759286 0.34097564 -0.89815245]\n", + " [ 0.25265864 0.32352401 -0.91186393]\n", + " [ 0.22672396 0.30546386 -0.92481786]\n", + " [ 0.19994911 0.2868676 -0.93687103]\n", + " [ 0.17249445 0.26781869 -0.94790232]\n", + " [ 0.14452166 0.24841161 -0.9578127 ]\n", + " [ 0.16443852 0.49638648 -0.85238514]\n", + " [ 0.13736551 0.48006014 -0.86641386]\n", + " [ 0.10951737 0.46278131 -0.87968142]\n", + " [ 0.08104854 0.44461653 -0.89204668]\n", + " [ 0.05211824 0.42564489 -0.90338813]\n", + " [ 0.02289277 0.40595991 -0.91360411]\n", + " [ 0.127483 0.2511109 -0.95952665]\n", + " [ 0.10698944 0.27861862 -0.95442387]\n", + " [ 0.08591254 0.30637074 -0.94802743]\n", + " [ 0.06436913 0.33418483 -0.94030693]\n", + " [ 0.04247985 0.36188279 -0.93125523]\n", + " [ 0.02037078 0.3892896 -0.92089013]\n", + " [ 0.28612464 0.34697813 -0.89316228]\n", + " [ 0.28612464 0.34697813 -0.89316228]\n", + " [ 0.01253914 0.39886143 -0.91692548]\n", + " [ 0.01253914 0.39886143 -0.91692548]\n", + " [ 0.27133586 0.35062026 -0.89634942]\n", + " [ 0.24621905 0.33321683 -0.91013336]\n", + " [ 0.22011618 0.31518018 -0.92315238]\n", + " [ 0.19318705 0.29658262 -0.93526334]\n", + " [ 0.16559152 0.27750775 -0.94634502]\n", + " [ 0.13749113 0.25805042 -0.95629816]\n", + " [ 0.25295837 0.37810849 -0.89053132]\n", + " [ 0.2273615 0.36085644 -0.90448293]\n", + " [ 0.20081917 0.34290329 -0.91765407]\n", + " [ 0.17348927 0.324321 -0.9299018 ]\n", + " [ 0.14553028 0.30519341 -0.94110463]\n", + " [ 0.11710365 0.28561622 -0.9511625 ]\n", + " [ 0.23371477 0.40568392 -0.88362773]\n", + " [ 0.20769207 0.3886059 -0.89769118]\n", + " [ 0.18076367 0.37076245 -0.91096636]\n", + " [ 0.15308548 0.35222481 -0.92331063]\n", + " [ 0.12481505 0.33307656 -0.93460217]\n", + " [ 0.0961143 0.31341383 -0.94474008]\n", + " [ 0.21372533 0.43315788 -0.87561164]\n", + " [ 0.18732931 0.41627732 -0.88973081]\n", + " [ 0.16006654 0.39857084 -0.90306145]\n", + " [ 0.13209151 0.3801085 -0.91546128]\n", + " [ 0.10356151 0.36097302 -0.92680823]\n", + " [ 0.07463949 0.34126039 -0.93700069]\n", + " [ 0.19311008 0.46035007 -0.86647926]\n", + " [ 0.1663919 0.44369026 -0.88059792]\n", + " [ 0.13884564 0.42614801 -0.89393499]\n", + " [ 0.11062518 0.4077919 -0.90634863]\n", + " [ 0.08188826 0.38870328 -0.91771677]\n", + " [ 0.05279926 0.36897739 -0.92793746]\n", + " [ 0.1719903 0.4870883 -0.85625015]\n", + " [ 0.14500081 0.47067131 -0.87031217]\n", + " [ 0.11722223 0.45331942 -0.8836065 ]\n", + " [ 0.08880873 0.43509964 -0.8959918 ]\n", + " [ 0.05991908 0.41609166 -0.90734637]\n", + " [ 0.0307191 0.39638951 -0.91756836]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:fp_optics: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:fp_optics: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:cartToSphere: vec: [[-0.08590431 0.24315897 0.96617502]\n", + " [-0.08334936 0.26917719 0.95947721]\n", + " [-0.08052136 0.29552571 0.95193533]\n", + " [-0.07744544 0.32207957 0.94353959]\n", + " [-0.0741439 0.34871877 0.93429005]\n", + " [-0.07063666 0.37532754 0.92419679]\n", + " [-0.06694179 0.40179388 0.91328007]\n", + " [-0.06307616 0.42800941 0.90157049]\n", + " [-0.08590431 0.24315897 0.96617502]\n", + " [-0.05956334 0.23855433 0.9693008 ]\n", + " [-0.03257767 0.23382145 0.97173362]\n", + " [-0.00506613 0.22895455 0.97342393]\n", + " [ 0.02285509 0.22395327 0.97433186]\n", + " [ 0.05107157 0.21882247 0.97442723]\n", + " [ 0.07946987 0.21357189 0.97368968]\n", + " [ 0.10793721 0.20821564 0.97210895]\n", + " [-0.06307616 0.42800941 0.90157049]\n", + " [-0.03547669 0.42509568 0.90445291]\n", + " [-0.00728131 0.42178362 0.90666728]\n", + " [ 0.02139845 0.4180671 0.90816408]\n", + " [ 0.05045137 0.41394436 0.90890304]\n", + " [ 0.07976455 0.40941831 0.90885327]\n", + " [ 0.10922257 0.40449692 0.90799376]\n", + " [ 0.13870781 0.3991933 0.90631388]\n", + " [ 0.10793721 0.20821564 0.97210895]\n", + " [ 0.11243058 0.23505709 0.96545716]\n", + " [ 0.11692828 0.2622398 0.95789251]\n", + " [ 0.12140694 0.28964543 0.94940291]\n", + " [ 0.1258446 0.31715817 0.93998608]\n", + " [ 0.13022039 0.34466312 0.92965046]\n", + " [ 0.1345144 0.37204592 0.91841587]\n", + " [ 0.13870781 0.3991933 0.90631388]\n", + " [-0.08473633 0.25443904 0.96336936]\n", + " [-0.08141679 0.28656631 0.95459471]\n", + " [-0.0777126 0.31906496 0.94454132]\n", + " [-0.07366599 0.35171204 0.93320521]\n", + " [-0.06931366 0.38429439 0.92060493]\n", + " [-0.06468838 0.41660729 0.9067821 ]\n", + " [-0.07449783 0.24125517 0.96759807]\n", + " [-0.04176424 0.23552748 0.9709699 ]\n", + " [-0.00818072 0.22960062 0.97325055]\n", + " [ 0.02603779 0.22347167 0.97436259]\n", + " [ 0.06068055 0.21714954 0.97425045]\n", + " [ 0.09553898 0.21065401 0.97288087]\n", + " [-0.05113674 0.42669796 0.90294733]\n", + " [-0.01689605 0.4228591 0.90603791]\n", + " [ 0.01812879 0.41841555 0.90807476]\n", + " [ 0.05373299 0.41336222 0.90897989]\n", + " [ 0.08970863 0.40770457 0.90869651]\n", + " [ 0.12584225 0.40145937 0.90719022]\n", + " [ 0.10979651 0.21988742 0.9693267 ]\n", + " [ 0.11530857 0.25302909 0.96056245]\n", + " [ 0.12080391 0.28656534 0.95041397]\n", + " [ 0.12624157 0.32028201 0.938873 ]\n", + " [ 0.13158308 0.35396757 0.9259551 ]\n", + " [ 0.13679228 0.38741184 0.91170167]\n", + " [-0.08580722 0.24323169 0.96616534]\n", + " [-0.08580722 0.24323169 0.96616534]\n", + " [ 0.13859292 0.39911977 0.90636384]\n", + " [ 0.13859292 0.39911977 0.90636384]\n", + " [-0.07336773 0.25251171 0.96480828]\n", + " [-0.04047102 0.24690354 0.96819458]\n", + " [-0.00673049 0.24106701 0.97048513]\n", + " [ 0.02763989 0.23499965 0.97160239]\n", + " [ 0.06242996 0.22871086 0.97149053]\n", + " [ 0.09743111 0.22222087 0.97011601]\n", + " [-0.06989908 0.2847764 0.95604211]\n", + " [-0.036592 0.27950313 0.95944725]\n", + " [-0.00245642 0.2739218 0.96174883]\n", + " [ 0.03229657 0.26803094 0.96286881]\n", + " [ 0.06745815 0.26184097 0.96275059]\n", + " [ 0.10281923 0.25537297 0.9613599 ]\n", + " [-0.06607289 0.31741014 0.94598371]\n", + " [-0.03243051 0.31246846 0.94937439]\n", + " [ 0.00202783 0.30714353 0.95166104]\n", + " [ 0.03709364 0.30143426 0.95276516]\n", + " [ 0.07255898 0.29535121 0.95262944]\n", + " [ 0.10821374 0.28891556 0.951219 ]\n", + " [-0.06193067 0.35019071 0.93462884]\n", + " [-0.0280261 0.34557936 0.93797092]\n", + " [ 0.00668398 0.34051401 0.94021568]\n", + " [ 0.04199309 0.33499309 0.94128434]\n", + " [ 0.07769365 0.32902634 0.94111921]\n", + " [ 0.11357431 0.32263427 0.93968506]\n", + " [-0.05750844 0.3829052 0.92199587]\n", + " [-0.02341322 0.3786235 0.9252546 ]\n", + " [ 0.01147823 0.37382119 0.92742977]\n", + " [ 0.04696067 0.36849545 0.92844267]\n", + " [ 0.08282651 0.36265448 0.92823569]\n", + " [ 0.11886327 0.35631744 0.92677365]\n", + " [-0.05283849 0.41534865 0.90812642]\n", + " [-0.01862331 0.41139485 0.91126695]\n", + " [ 0.01637917 0.40685766 0.91334471]\n", + " [ 0.0519642 0.40173261 0.91428149]\n", + " [ 0.08792395 0.39602587 0.91402018]\n", + " [ 0.12404514 0.38975489 0.91252613]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:fp_optics: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:cartToSphere: vec: [[-0.08876227 0.56309426 -0.8216119 ]\n", + " [-0.07698278 0.54253866 -0.83649594]\n", + " [-0.06490584 0.52113362 -0.85100351]\n", + " [-0.05257634 0.49894093 -0.8650397 ]\n", + " [-0.04003974 0.4760275 -0.87851844]\n", + " [-0.02734284 0.4524669 -0.89136192]\n", + " [-0.01453419 0.42834028 -0.90350061]\n", + " [-0.00166394 0.40373638 -0.91487385]\n", + " [-0.08876227 0.56309426 -0.8216119 ]\n", + " [-0.06250057 0.57421578 -0.81631484]\n", + " [-0.03622797 0.58474916 -0.81040481]\n", + " [-0.0100465 0.59465792 -0.80391606]\n", + " [ 0.01594246 0.60391066 -0.79689256]\n", + " [ 0.04163837 0.61248063 -0.7893882 ]\n", + " [ 0.06694139 0.62034533 -0.78146691]\n", + " [ 0.09175203 0.62748625 -0.7732028 ]\n", + " [-0.00166394 0.40373638 -0.91487385]\n", + " [ 0.02544862 0.41535048 -0.90930542]\n", + " [ 0.05245307 0.42655256 -0.90294052]\n", + " [ 0.07924323 0.43730372 -0.89581581]\n", + " [ 0.1057162 0.44757102 -0.88797763]\n", + " [ 0.13177272 0.45732739 -0.87948144]\n", + " [ 0.15731666 0.46655118 -0.87039156]\n", + " [ 0.18225345 0.47522539 -0.86078134]\n", + " [ 0.09175203 0.62748625 -0.7732028 ]\n", + " [ 0.10473042 0.60812046 -0.786906 ]\n", + " [ 0.11777265 0.58784246 -0.8003567 ]\n", + " [ 0.13083105 0.56671798 -0.81345803]\n", + " [ 0.14385743 0.54481694 -0.8261232 ]\n", + " [ 0.15680289 0.52221387 -0.83827533]\n", + " [ 0.16961806 0.49898837 -0.84984723]\n", + " [ 0.18225345 0.47522539 -0.86078134]\n", + " [-0.08357579 0.55427932 -0.8281241 ]\n", + " [-0.06893225 0.52850792 -0.84612512]\n", + " [-0.05388667 0.50152146 -0.86346537]\n", + " [-0.03852248 0.47344092 -0.87998279]\n", + " [-0.0229259 0.44440186 -0.89553414]\n", + " [-0.00718697 0.41455684 -0.90999504]\n", + " [-0.07727987 0.56794443 -0.81943086]\n", + " [-0.04507239 0.58118482 -0.81252242]\n", + " [-0.01295007 0.59350506 -0.80472607]\n", + " [ 0.01890017 0.60484524 -0.79611872]\n", + " [ 0.05029322 0.61515609 -0.78679958]\n", + " [ 0.08104542 0.62439783 -0.77689059]\n", + " [ 0.01011957 0.40893293 -0.91250833]\n", + " [ 0.04328955 0.42289512 -0.90514404]\n", + " [ 0.07619142 0.43619899 -0.89661882]\n", + " [ 0.10863432 0.44878139 -0.88701401]\n", + " [ 0.14043547 0.46059245 -0.87643167]\n", + " [ 0.17141862 0.47159429 -0.86499392]\n", + " [ 0.09731569 0.61913535 -0.77923108]\n", + " [ 0.11327052 0.59477808 -0.79586986]\n", + " [ 0.1292741 0.56911548 -0.81203188]\n", + " [ 0.14523791 0.54227454 -0.82755319]\n", + " [ 0.16107198 0.51439252 -0.8422922 ]\n", + " [ 0.17668536 0.48561818 -0.85612924]\n", + " [-0.08863287 0.56306447 -0.82164629]\n", + " [-0.08863287 0.56306447 -0.82164629]\n", + " [ 0.18212647 0.47527876 -0.86077875]\n", + " [ 0.18212647 0.47527876 -0.86077875]\n", + " [-0.07217873 0.5591797 -0.82589847]\n", + " [-0.03985341 0.57248625 -0.81894518]\n", + " [-0.00762407 0.58488493 -0.81108044]\n", + " [ 0.02432197 0.5963161 -0.80238118]\n", + " [ 0.05579956 0.60673091 -0.79294641]\n", + " [ 0.08662534 0.61609004 -0.78289789]\n", + " [-0.05742449 0.53346018 -0.84387361]\n", + " [-0.02480556 0.54693882 -0.836805 ]\n", + " [ 0.00768615 0.55954655 -0.82876329]\n", + " [ 0.03986206 0.57122416 -0.81982558]\n", + " [ 0.07153705 0.58192404 -0.81009065]\n", + " [ 0.10252882 0.59160827 -0.79967962]\n", + " [-0.04228939 0.5065167 -0.86119245]\n", + " [-0.00943733 0.52014504 -0.8540258 ]\n", + " [ 0.02325543 0.53294322 -0.84583137]\n", + " [ 0.0555991 0.54485201 -0.83668694]\n", + " [ 0.08740871 0.55582449 -0.82669151]\n", + " [ 0.11850333 0.56582398 -0.8159658 ]\n", + " [-0.02685744 0.47847005 -0.87769305]\n", + " [ 0.00616554 0.49222561 -0.87044582]\n", + " [ 0.03899659 0.50519638 -0.86212289]\n", + " [ 0.07144492 0.51732246 -0.85280308]\n", + " [ 0.10332596 0.52855691 -0.8425861 ]\n", + " [ 0.13446031 0.53886363 -0.8315927 ]\n", + " [-0.01121556 0.44945549 -0.89323232]\n", + " [ 0.02191428 0.46331522 -0.88592255]\n", + " [ 0.05481942 0.47644055 -0.877496 ]\n", + " [ 0.08730864 0.48877041 -0.86803265]\n", + " [ 0.11919796 0.50025704 -0.85763322]\n", + " [ 0.15030951 0.51086407 -0.8464189 ]\n", + " [ 0.00454557 0.4196253 -0.90768604]\n", + " [ 0.03771674 0.43356516 -0.90033255]\n", + " [ 0.07063097 0.44682601 -0.89182834]\n", + " [ 0.10309716 0.4593453 -0.88225442]\n", + " [ 0.13493222 0.47107378 -0.87171256]\n", + " [ 0.16595952 0.48197404 -0.86032463]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:cartToSphere: vec: [[-1.36498789e-01 -1.48491291e-01 9.79448017e-01]\n", + " [-1.10484320e-01 -1.55431975e-01 9.81648672e-01]\n", + " [-8.38872823e-02 -1.62546499e-01 9.83128455e-01]\n", + " [-5.68135007e-02 -1.69783436e-01 9.83842371e-01]\n", + " [-2.93691037e-02 -1.77096038e-01 9.83755279e-01]\n", + " [-1.66081093e-03 -1.84442138e-01 9.82841971e-01]\n", + " [ 2.62038392e-02 -1.91783772e-01 9.81087327e-01]\n", + " [ 5.41165509e-02 -1.99086794e-01 9.78486509e-01]\n", + " [-1.36498789e-01 -1.48491291e-01 9.79448017e-01]\n", + " [-1.45459899e-01 -1.73320258e-01 9.74064426e-01]\n", + " [-1.54361581e-01 -1.98606200e-01 9.67847137e-01]\n", + " [-1.63173291e-01 -2.24226937e-01 9.60779245e-01]\n", + " [-1.71863988e-01 -2.50064652e-01 9.52853839e-01]\n", + " [-1.80402032e-01 -2.76005597e-01 9.44074159e-01]\n", + " [-1.88755393e-01 -3.01939648e-01 9.34453771e-01]\n", + " [-1.96892050e-01 -3.27760073e-01 9.24016696e-01]\n", + " [ 5.41165509e-02 -1.99086794e-01 9.78486509e-01]\n", + " [ 4.66188339e-02 -2.25429699e-01 9.73143430e-01]\n", + " [ 3.89324308e-02 -2.52131652e-01 9.66909456e-01]\n", + " [ 3.10859556e-02 -2.79075034e-01 9.59766007e-01]\n", + " [ 2.31083488e-02 -3.06145364e-01 9.51704271e-01]\n", + " [ 1.50293770e-02 -3.33229594e-01 9.42725918e-01]\n", + " [ 6.87988900e-03 -3.60215337e-01 9.32843812e-01]\n", + " [-1.30823966e-03 -3.86991183e-01 9.22082487e-01]\n", + " [-1.96892050e-01 -3.27760073e-01 9.24016696e-01]\n", + " [-1.70407810e-01 -3.36728969e-01 9.26053335e-01]\n", + " [-1.43266530e-01 -3.45606987e-01 9.27378300e-01]\n", + " [-1.15568874e-01 -3.54343646e-01 9.27946343e-01]\n", + " [-8.74169943e-02 -3.62892218e-01 9.27721676e-01]\n", + " [-5.89161998e-02 -3.71209258e-01 9.26678244e-01]\n", + " [-3.01757007e-02 -3.79254513e-01 9.24800217e-01]\n", + " [-1.30823966e-03 -3.86991183e-01 9.22082487e-01]\n", + " [-1.25265208e-01 -1.51577133e-01 9.80475905e-01]\n", + " [-9.29759072e-02 -1.60208692e-01 9.82694589e-01]\n", + " [-5.99166222e-02 -1.69049565e-01 9.83784653e-01]\n", + " [-2.62825982e-02 -1.78011731e-01 9.83677309e-01]\n", + " [ 7.72967024e-03 -1.87017521e-01 9.82326167e-01]\n", + " [ 4.19218765e-02 -1.95998644e-01 9.79707654e-01]\n", + " [-1.40323111e-01 -1.59276555e-01 9.77210522e-01]\n", + " [-1.51269065e-01 -1.90031420e-01 9.70054498e-01]\n", + " [-1.62095622e-01 -2.21350730e-01 9.61628236e-01]\n", + " [-1.72745858e-01 -2.53015768e-01 9.51914854e-01]\n", + " [-1.83161549e-01 -2.84817079e-01 9.40920336e-01]\n", + " [-1.93283705e-01 -3.16553332e-01 9.28673999e-01]\n", + " [ 5.07767603e-02 -2.10495547e-01 9.76275241e-01]\n", + " [ 4.14560851e-02 -2.43037702e-01 9.69130574e-01]\n", + " [ 3.18805974e-02 -2.76001898e-01 9.60628222e-01]\n", + " [ 2.21034165e-02 -3.09176174e-01 9.50747881e-01]\n", + " [ 1.21793774e-02 -3.42352327e-01 9.39492707e-01]\n", + " [ 2.16571842e-03 -3.75323810e-01 9.26891227e-01]\n", + " [-1.85404548e-01 -3.31589972e-01 9.25026078e-01]\n", + " [-1.52490674e-01 -3.42526850e-01 9.27050134e-01]\n", + " [-1.18689911e-01 -3.53276789e-01 9.27959167e-01]\n", + " [-8.41896004e-02 -3.63752242e-01 9.27683360e-01]\n", + " [-4.91837019e-02 -3.73873226e-01 9.26174808e-01]\n", + " [-1.38747940e-02 -3.83567052e-01 9.23408797e-01]\n", + " [-1.36441650e-01 -1.48598657e-01 9.79439695e-01]\n", + " [-1.36441650e-01 -1.48598657e-01 9.79439695e-01]\n", + " [-1.37901264e-03 -3.86874210e-01 9.22131468e-01]\n", + " [-1.37901264e-03 -3.86874210e-01 9.22131468e-01]\n", + " [-1.29112535e-01 -1.62322531e-01 9.78254236e-01]\n", + " [-1.39977671e-01 -1.93260274e-01 9.71111074e-01]\n", + " [-1.50747038e-01 -2.24750222e-01 9.62685134e-01]\n", + " [-1.61363609e-01 -2.56574146e-01 9.52959335e-01]\n", + " [-1.71768826e-01 -2.88522950e-01 9.41939477e-01]\n", + " [-1.81903266e-01 -3.20395249e-01 9.29654821e-01]\n", + " [-9.67218318e-02 -1.71126326e-01 9.80490014e-01]\n", + " [-1.07344847e-01 -2.02529510e-01 9.73374995e-01]\n", + " [-1.17939048e-01 -2.34452751e-01 9.64946780e-01]\n", + " [-1.28447096e-01 -2.66679648e-01 9.55187578e-01]\n", + " [-1.38809660e-01 -2.99002084e-01 9.44102554e-01]\n", + " [-1.48966282e-01 -3.31218194e-01 9.31720749e-01]\n", + " [-6.35540033e-02 -1.80111305e-01 9.81590957e-01]\n", + " [-7.39143448e-02 -2.11902587e-01 9.74491643e-01]\n", + " [-8.43123442e-02 -2.44185844e-01 9.66056262e-01]\n", + " [-9.46907088e-02 -2.76746601e-01 9.56266170e-01]\n", + " [-1.04989914e-01 -3.09377372e-01 9.45125791e-01]\n", + " [-1.15149038e-01 -3.41875346e-01 9.32663898e-01]\n", + " [-2.98039552e-02 -1.89189789e-01 9.81488129e-01]\n", + " [-3.98797375e-02 -2.21293066e-01 9.74391598e-01]\n", + " [-5.00588634e-02 -2.53864066e-01 9.65943656e-01]\n", + " [-6.02847012e-02 -2.86689841e-01 9.56124830e-01]\n", + " [-7.04983405e-02 -3.19563073e-01 9.44938848e-01]\n", + " [-8.06391535e-02 -3.52279704e-01 9.32414252e-01]\n", + " [ 4.33191068e-03 -1.98284541e-01 9.80134927e-01]\n", + " [-5.43710568e-03 -2.30624785e-01 9.73027567e-01]\n", + " [-1.53743141e-02 -2.63411684e-01 9.64560996e-01]\n", + " [-2.54243529e-02 -2.96433176e-01 9.54715127e-01]\n", + " [-3.55297059e-02 -3.29481716e-01 9.43493211e-01]\n", + " [-4.56308053e-02 -3.62351982e-01 9.30923665e-01]\n", + " [ 3.86549759e-02 -2.07327547e-01 9.77507586e-01]\n", + " [ 2.92138826e-02 -2.39830198e-01 9.70375198e-01]\n", + " [ 1.95404757e-02 -2.72760939e-01 9.61883382e-01]\n", + " [ 9.68847411e-03 -3.05907900e-01 9.52011812e-01]\n", + " [-2.86543024e-04 -3.39063068e-01 9.40763602e-01]\n", + " [-1.03266640e-02 -3.72020132e-01 9.28167216e-01]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:fp_optics: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:fp_optics: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:cartToSphere: vec: [[-0.74544399 0.22281941 0.6282235 ]\n", + " [-0.75579481 0.23930633 0.60951348]\n", + " [-0.76571125 0.25606441 0.59001466]\n", + " [-0.77512595 0.27300823 0.56977739]\n", + " [-0.78397859 0.2900525 0.54885983]\n", + " [-0.79221618 0.30711489 0.5273272 ]\n", + " [-0.79979307 0.3241173 0.50525145]\n", + " [-0.80667114 0.34098625 0.48271115]\n", + " [-0.74544399 0.22281941 0.6282235 ]\n", + " [-0.72968557 0.24138423 0.63975981]\n", + " [-0.7130958 0.26026185 0.65096708]\n", + " [-0.69570767 0.27935834 0.66177773]\n", + " [-0.67756295 0.29857948 0.67213001]\n", + " [-0.65871165 0.31783394 0.68196815]\n", + " [-0.63921182 0.33703454 0.69124234]\n", + " [-0.61912946 0.3560987 0.69990888]\n", + " [-0.80667114 0.34098625 0.48271115]\n", + " [-0.79108151 0.36149927 0.49346562]\n", + " [-0.77453675 0.38214496 0.50404172]\n", + " [-0.75706897 0.40282223 0.51437421]\n", + " [-0.73871697 0.42343575 0.52440386]\n", + " [-0.71952768 0.44389428 0.53407657]\n", + " [-0.69955789 0.46410913 0.54334287]\n", + " [-0.67887519 0.48399384 0.55215798]\n", + " [-0.61912946 0.3560987 0.69990888]\n", + " [-0.62891204 0.37459853 0.68128231]\n", + " [-0.63837677 0.39316795 0.66173564]\n", + " [-0.64745811 0.41171467 0.6413182 ]\n", + " [-0.6560976 0.43015198 0.62008485]\n", + " [-0.66424318 0.44839716 0.59809781]\n", + " [-0.67184888 0.46637022 0.57542845]\n", + " [-0.67887519 0.48399384 0.55215798]\n", + " [-0.74995338 0.23003252 0.62020559]\n", + " [-0.76235613 0.25043341 0.596738 ]\n", + " [-0.77403877 0.27115679 0.57213458]\n", + " [-0.78488734 0.29204534 0.54649921]\n", + " [-0.79480425 0.31294762 0.51995192]\n", + " [-0.80370858 0.33372179 0.49262794]\n", + " [-0.73871325 0.23092582 0.63322665]\n", + " [-0.71883691 0.25390245 0.64715303]\n", + " [-0.69774346 0.27725572 0.66051747]\n", + " [-0.67550623 0.30081206 0.67320387]\n", + " [-0.65221724 0.32440343 0.68510954]\n", + " [-0.62798669 0.34787127 0.69614531]\n", + " [-0.79997086 0.34984933 0.48749572]\n", + " [-0.78021792 0.37509183 0.50056579]\n", + " [-0.75906159 0.40043258 0.5133023 ]\n", + " [-0.73657048 0.42569375 0.52559372]\n", + " [-0.7128312 0.45070719 0.5373404 ]\n", + " [-0.6879528 0.47531049 0.54845317]\n", + " [-0.62349912 0.36408482 0.69187505]\n", + " [-0.63528424 0.38681634 0.66842132]\n", + " [-0.64652586 0.40956013 0.64363406]\n", + " [-0.65711348 0.43215431 0.61761195]\n", + " [-0.66695119 0.45444645 0.59046976]\n", + " [-0.67595702 0.47629035 0.56234296]\n", + " [-0.74542761 0.22293809 0.62820084]\n", + " [-0.74542761 0.22293809 0.62820084]\n", + " [-0.67892405 0.48386692 0.55220915]\n", + " [-0.67892405 0.48386692 0.55220915]\n", + " [-0.74323934 0.23809298 0.62522558]\n", + " [-0.7233519 0.26126597 0.63914171]\n", + " [-0.70223002 0.2847976 0.65250542]\n", + " [-0.67994718 0.30851192 0.6652009 ]\n", + " [-0.65659541 0.33224015 0.6771255 ]\n", + " [-0.63228504 0.35582356 0.68818982]\n", + " [-0.75564657 0.25868881 0.60172947]\n", + " [-0.73574095 0.28238257 0.61558537]\n", + " [-0.71455592 0.30638132 0.62891996]\n", + " [-0.69216495 0.33050554 0.64161809]\n", + " [-0.66865972 0.35458619 0.65357694]\n", + " [-0.6441508 0.3784647 0.66470611]\n", + " [-0.76733912 0.27958715 0.57708033]\n", + " [-0.74743523 0.30374232 0.59083092]\n", + " [-0.72621323 0.32814875 0.60409664]\n", + " [-0.70374575 0.35262659 0.61676285]\n", + " [-0.6801236 0.37700778 0.62872651]\n", + " [-0.65545737 0.40113392 0.63989625]\n", + " [-0.77820315 0.30062832 0.55138233]\n", + " [-0.75832129 0.32518208 0.56498269]\n", + " [-0.73708876 0.34993641 0.57813896]\n", + " [-0.71457689 0.37471249 0.59073718]\n", + " [-0.69087514 0.39934317 0.60267452]\n", + " [-0.66609386 0.42366952 0.61385919]\n", + " [-0.78814107 0.32166013 0.52475558]\n", + " [-0.7683012 0.34654928 0.53816062]\n", + " [-0.74708423 0.37159265 0.55116609]\n", + " [-0.72456001 0.39661235 0.56365897]\n", + " [-0.70081658 0.42144138 0.57553739]\n", + " [-0.6759638 0.44591957 0.58671005]\n", + " [-0.79707174 0.34254054 0.49733552]\n", + " [-0.77729291 0.36770205 0.51050067]\n", + " [-0.75611651 0.39297571 0.52331436]\n", + " [-0.73361135 0.41818385 0.53566468]\n", + " [-0.70986431 0.44315873 0.54745137]\n", + " [-0.68498465 0.46773853 0.55858455]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:cartToSphere: vec: [[ 0.20154006 0.34703984 -0.91593938]\n", + " [ 0.22808414 0.3386722 -0.91284104]\n", + " [ 0.2549734 0.32986318 -0.90894381]\n", + " [ 0.28209058 0.32063311 -0.90422304]\n", + " [ 0.30932035 0.31100589 -0.8986636 ]\n", + " [ 0.33654825 0.30100956 -0.89226034]\n", + " [ 0.36366074 0.29067652 -0.88501866]\n", + " [ 0.39054603 0.28004337 -0.87695468]\n", + " [ 0.20154006 0.34703984 -0.91593938]\n", + " [ 0.2083493 0.37271765 -0.90425225]\n", + " [ 0.21505611 0.39797101 -0.89183516]\n", + " [ 0.22163946 0.42270485 -0.87874716]\n", + " [ 0.22808251 0.44682816 -0.86505663]\n", + " [ 0.23437309 0.47025373 -0.85084116]\n", + " [ 0.24050423 0.49289731 -0.83618775]\n", + " [ 0.24647454 0.51467637 -0.82119336]\n", + " [ 0.39054603 0.28004337 -0.87695468]\n", + " [ 0.39744023 0.30664969 -0.86487411]\n", + " [ 0.40395789 0.33289405 -0.85205609]\n", + " [ 0.41007843 0.35867693 -0.83856219]\n", + " [ 0.41578641 0.38390458 -0.82446281]\n", + " [ 0.42107153 0.40848956 -0.80983643]\n", + " [ 0.42592843 0.43235054 -0.79476914]\n", + " [ 0.43035637 0.45541128 -0.77935484]\n", + " [ 0.24647454 0.51467637 -0.82119336]\n", + " [ 0.27238761 0.5080227 -0.81714009]\n", + " [ 0.29861784 0.50072266 -0.81246797]\n", + " [ 0.3250415 0.49279959 -0.80715338]\n", + " [ 0.35154001 0.48427823 -0.80118301]\n", + " [ 0.37799881 0.4751856 -0.79455367]\n", + " [ 0.40430682 0.46555195 -0.78727211]\n", + " [ 0.43035637 0.45541128 -0.77935484]\n", + " [ 0.21308681 0.34353573 -0.91464595]\n", + " [ 0.24586657 0.332982 -0.91031457]\n", + " [ 0.27904794 0.32178497 -0.9047578 ]\n", + " [ 0.3124179 0.30998712 -0.89794378]\n", + " [ 0.34576575 0.29764011 -0.88986314]\n", + " [ 0.37888312 0.28480531 -0.88053025]\n", + " [ 0.20461013 0.35825391 -0.91092746]\n", + " [ 0.21288959 0.38945238 -0.89610539]\n", + " [ 0.22099366 0.41991841 -0.88024447]\n", + " [ 0.22888958 0.44948274 -0.86346675]\n", + " [ 0.23655499 0.47798476 -0.84591507]\n", + " [ 0.24397936 0.50527012 -0.82775369]\n", + " [ 0.39350529 0.29171855 -0.87181069]\n", + " [ 0.40170461 0.32409654 -0.85650152]\n", + " [ 0.40931752 0.35583129 -0.84014479]\n", + " [ 0.41631346 0.38674778 -0.82286648]\n", + " [ 0.42267344 0.41668502 -0.80481101]\n", + " [ 0.42838952 0.44549548 -0.78614006]\n", + " [ 0.25770577 0.51178296 -0.81955228]\n", + " [ 0.28969511 0.50318953 -0.81417261]\n", + " [ 0.32203725 0.49364843 -0.80783862]\n", + " [ 0.35451185 0.48320457 -0.80052151]\n", + " [ 0.38690794 0.47190782 -0.79221541]\n", + " [ 0.41902242 0.45981539 -0.78293679]\n", + " [ 0.20165354 0.34710042 -0.91589145]\n", + " [ 0.20165354 0.34710042 -0.91589145]\n", + " [ 0.43025344 0.45536937 -0.77943616]\n", + " [ 0.43025344 0.45536937 -0.77943616]\n", + " [ 0.21605295 0.35473357 -0.90966215]\n", + " [ 0.22434107 0.38605988 -0.89477866]\n", + " [ 0.23242637 0.41665662 -0.87884882]\n", + " [ 0.24027566 0.44635447 -0.86199495]\n", + " [ 0.24786611 0.47499332 -0.84435996]\n", + " [ 0.25518654 0.50242002 -0.82610772]\n", + " [ 0.24885619 0.34429166 -0.90528109]\n", + " [ 0.25715971 0.37594206 -0.89024516]\n", + " [ 0.26518436 0.40687229 -0.87414655]\n", + " [ 0.27289629 0.43691234 -0.85710864]\n", + " [ 0.28027182 0.46590308 -0.8392747 ]\n", + " [ 0.2872986 0.49369419 -0.82080787]\n", + " [ 0.2820556 0.3331857 -0.89968435]\n", + " [ 0.29036025 0.3651032 -0.88452845]\n", + " [ 0.29831192 0.39631247 -0.86830089]\n", + " [ 0.30587678 0.42664231 -0.85112615]\n", + " [ 0.31303123 0.45593382 -0.83314813]\n", + " [ 0.31976277 0.48403864 -0.81452954]\n", + " [ 0.31543799 0.32145756 -0.89284036]\n", + " [ 0.32372884 0.35358378 -0.87759794]\n", + " [ 0.33159438 0.38501689 -0.86128228]\n", + " [ 0.33900134 0.41558434 -0.84401881]\n", + " [ 0.34592698 0.44512687 -0.82595193]\n", + " [ 0.35235957 0.47349717 -0.80724418]\n", + " [ 0.34879251 0.30915827 -0.88474005]\n", + " [ 0.35705449 0.34143318 -0.8694455 ]\n", + " [ 0.36482085 0.37303367 -0.8530836 ]\n", + " [ 0.37205931 0.40378594 -0.83578034]\n", + " [ 0.37874855 0.43353004 -0.8176804 ]\n", + " [ 0.38487825 0.46211895 -0.79894606]\n", + " [ 0.38191072 0.29634871 -0.87539799]\n", + " [ 0.39012895 0.3287108 -0.8600864 ]\n", + " [ 0.39778389 0.36042089 -0.84372079]\n", + " [ 0.4048445 0.39130418 -0.82642723]\n", + " [ 0.41129118 0.42119994 -0.80835028]\n", + " [ 0.41711535 0.44996088 -0.78965182]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:fp_optics: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:fp_optics: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:cartToSphere: vec: [[-0.19509623 -0.29060261 0.93674307]\n", + " [-0.17557384 -0.2741532 0.94552306]\n", + " [-0.15540668 -0.25727207 0.9537609 ]\n", + " [-0.13468683 -0.24000867 0.96138197]\n", + " [-0.11350333 -0.22241652 0.9683222 ]\n", + " [-0.09194356 -0.20455338 0.97452773]\n", + " [-0.07009428 -0.18648126 0.97995486]\n", + " [-0.04804217 -0.16826603 0.98457021]\n", + " [-0.19509623 -0.29060261 0.93674307]\n", + " [-0.17916162 -0.31199173 0.93303927]\n", + " [-0.16262499 -0.33352697 0.92860803]\n", + " [-0.1455649 -0.35510895 0.92342216]\n", + " [-0.12805667 -0.37664202 0.91746514]\n", + " [-0.11017369 -0.39803352 0.91073107]\n", + " [-0.09198856 -0.41919359 0.90322469]\n", + " [-0.07357377 -0.44003535 0.89496134]\n", + " [-0.04804217 -0.16826603 0.98457021]\n", + " [-0.03008465 -0.18939357 0.98144026]\n", + " [-0.01173164 -0.21080164 0.97745846]\n", + " [ 0.00694441 -0.23239598 0.97259647]\n", + " [ 0.02587072 -0.25408413 0.96683606]\n", + " [ 0.04497329 -0.27577452 0.96016968]\n", + " [ 0.06417668 -0.29737634 0.952601 ]\n", + " [ 0.08340439 -0.31880018 0.9441452 ]\n", + " [-0.07357377 -0.44003535 0.89496134]\n", + " [-0.05212875 -0.4244066 0.90396993]\n", + " [-0.03021258 -0.40812916 0.91242413]\n", + " [-0.00791064 -0.39124899 0.92025086]\n", + " [ 0.01469089 -0.37381681 0.9273862 ]\n", + " [ 0.03750403 -0.35588894 0.93377541]\n", + " [ 0.06043892 -0.33752751 0.93937336]\n", + " [ 0.08340439 -0.31880018 0.9441452 ]\n", + " [-0.18661578 -0.28355958 0.94062134]\n", + " [-0.16224209 -0.263103 0.95102803]\n", + " [-0.13699195 -0.24204649 0.960545 ]\n", + " [-0.11103045 -0.22048686 0.96904994]\n", + " [-0.08451859 -0.19853047 0.97644368]\n", + " [-0.05761604 -0.17629307 0.98265006]\n", + " [-0.18816177 -0.29984849 0.93524651]\n", + " [-0.16821572 -0.32617444 0.9302224 ]\n", + " [-0.14744406 -0.35262075 0.9240773 ]\n", + " [-0.12598667 -0.37900982 0.91677637]\n", + " [-0.10397883 -0.40517107 0.90830876]\n", + " [-0.08155413 -0.43094027 0.8986876 ]\n", + " [-0.0403419 -0.17749976 0.98329363]\n", + " [-0.01805879 -0.20359501 0.97888863]\n", + " [ 0.00474648 -0.23001756 0.9731749 ]\n", + " [ 0.02794014 -0.25659655 0.96611467]\n", + " [ 0.05138594 -0.28316338 0.9576941 ]\n", + " [ 0.07494452 -0.30955141 0.94792471]\n", + " [-0.06435062 -0.43323279 0.89898184]\n", + " [-0.03774063 -0.41363569 0.90965991]\n", + " [-0.01050765 -0.39310957 0.91943159]\n", + " [ 0.01719006 -0.37174576 0.92817541]\n", + " [ 0.04519055 -0.34964799 0.93579063]\n", + " [ 0.07332779 -0.32693296 0.94219843]\n", + " [-0.1949773 -0.29061992 0.93676246]\n", + " [-0.1949773 -0.29061992 0.93676246]\n", + " [ 0.08326021 -0.3187919 0.94416072]\n", + " [ 0.08326021 -0.3187919 0.94416072]\n", + " [-0.17972806 -0.29280202 0.93912981]\n", + " [-0.15959277 -0.31917384 0.93416177]\n", + " [-0.13865307 -0.3456763 0.92805346]\n", + " [-0.11704742 -0.37213215 0.92077009]\n", + " [-0.09491019 -0.39837074 0.91230083]\n", + " [-0.07237474 -0.42422744 0.90265884]\n", + " [-0.15516302 -0.27236904 0.94959967]\n", + " [-0.13452687 -0.2988279 0.94477744]\n", + " [-0.11314364 -0.32544874 0.93876602]\n", + " [-0.09114828 -0.35205539 0.93153046]\n", + " [-0.06867355 -0.37847699 0.92305965]\n", + " [-0.0458528 -0.40454772 0.91336666]\n", + " [-0.12973961 -0.25131286 0.95917125]\n", + " [-0.10865098 -0.27779482 0.9544763 ]\n", + " [-0.0868692 -0.30447313 0.94855145]\n", + " [-0.06452705 -0.33117272 0.94136119]\n", + " [-0.04175688 -0.35772269 0.9328938 ]\n", + " [-0.01869291 -0.3839562 0.92316207]\n", + " [-0.10362146 -0.2297303 0.96772237]\n", + " [-0.08212528 -0.25617126 0.9631364 ]\n", + " [-0.0599877 -0.28284546 0.9572878 ]\n", + " [-0.03734071 -0.309579 0.95014026]\n", + " [-0.01431724 -0.33620124 0.94168134]\n", + " [ 0.00894706 -0.36254477 0.93192341]\n", + " [-0.07696879 -0.207728 0.97515377]\n", + " [-0.05510848 -0.23406428 0.97065801]\n", + " [-0.03265755 -0.26067271 0.96487472]\n", + " [-0.00974825 -0.28738066 0.95776684]\n", + " [ 0.01348524 -0.31401812 0.94932121]\n", + " [ 0.03690563 -0.34041762 0.9395498 ]\n", + " [-0.04994112 -0.18542214 0.98138907]\n", + " [-0.02776041 -0.21159112 0.97696395]\n", + " [-0.00503966 -0.23807277 0.97123425]\n", + " [ 0.01808786 -0.26469577 0.96416232]\n", + " [ 0.04148644 -0.2912911 0.95573447]\n", + " [ 0.06501722 -0.3176918 0.94596231]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:cartToSphere: vec: [[ 0.2074831 -0.46628179 0.8599605 ]\n", + " [ 0.20958778 -0.489533 0.84642212]\n", + " [ 0.21142463 -0.51292934 0.83198745]\n", + " [ 0.2129928 -0.53634533 0.81668094]\n", + " [ 0.21429047 -0.55966336 0.80053515]\n", + " [ 0.21531507 -0.58277295 0.78359116]\n", + " [ 0.21606379 -0.60557025 0.76589889]\n", + " [ 0.21653416 -0.62795781 0.74751718]\n", + " [ 0.2074831 -0.46628179 0.8599605 ]\n", + " [ 0.18107832 -0.46833059 0.86479888]\n", + " [ 0.15396399 -0.47021136 0.86902035]\n", + " [ 0.12625122 -0.47188051 0.87257631]\n", + " [ 0.09805036 -0.47330264 0.87542603]\n", + " [ 0.06947183 -0.47445021 0.8775367 ]\n", + " [ 0.04062682 -0.47530309 0.87888363]\n", + " [ 0.01162753 -0.47584804 0.87945065]\n", + " [ 0.21653416 -0.62795781 0.74751718]\n", + " [ 0.18921356 -0.63179885 0.75168373]\n", + " [ 0.16117983 -0.63521401 0.75533054]\n", + " [ 0.13253688 -0.63816089 0.75840929]\n", + " [ 0.1033899 -0.64060372 0.76087936]\n", + " [ 0.07384738 -0.64251328 0.76270784]\n", + " [ 0.04402204 -0.64386716 0.76386984]\n", + " [ 0.01403059 -0.64465008 0.76434902]\n", + " [ 0.01162753 -0.47584804 0.87945065]\n", + " [ 0.01200363 -0.50029491 0.86577186]\n", + " [ 0.01237129 -0.52482236 0.85112188]\n", + " [ 0.01272907 -0.54931089 0.8355211 ]\n", + " [ 0.01307543 -0.5736463 0.81899875]\n", + " [ 0.01340882 -0.59771829 0.80159407]\n", + " [ 0.01372769 -0.62142028 0.78335713]\n", + " [ 0.01403059 -0.64465008 0.76434902]\n", + " [ 0.20834433 -0.47640091 0.85418664]\n", + " [ 0.21074278 -0.50501284 0.83698836]\n", + " [ 0.21273839 -0.5337171 0.81846712]\n", + " [ 0.21432821 -0.56229396 0.79867949]\n", + " [ 0.21550754 -0.59053997 0.77770113]\n", + " [ 0.21627136 -0.61826658 0.75562764]\n", + " [ 0.19607219 -0.46727221 0.86209766]\n", + " [ 0.16321809 -0.46967741 0.86761915]\n", + " [ 0.12940872 -0.47178578 0.87216487]\n", + " [ 0.09484752 -0.47352877 0.87565659]\n", + " [ 0.05973783 -0.47485562 0.8780339 ]\n", + " [ 0.02428478 -0.47573215 0.8792549 ]\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + " [ 0.20471551IOPub data rate exceeded.\n", + "The notebook server will temporarily stop sending output\n", + "to the client in order to avoid crashing it.\n", + "To change this limit, set the config variable\n", + "`--NotebookApp.iopub_data_rate_limit`.\n", + "\n", + "Current values:\n", + "NotebookApp.iopub_data_rate_limit=1000000.0 (bytes/sec)\n", + "NotebookApp.rate_limit_window=3.0 (secs)\n", + "\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:cartToSphere: vec: [[-0.09722013 0.85368033 -0.51164259]\n", + " [-0.09344703 0.83938306 -0.53544723]\n", + " [-0.08952418 0.82412321 -0.55929095]\n", + " [-0.08546307 0.80792486 -0.5830553 ]\n", + " [-0.08127623 0.79082102 -0.60662698]\n", + " [-0.07697746 0.77285463 -0.62989697]\n", + " [-0.07258183 0.75407899 -0.65276088]\n", + " [-0.06810565 0.73455769 -0.67511971]\n", + " [-0.09722013 0.85368033 -0.51164259]\n", + " [-0.06853963 0.85768646 -0.50958439]\n", + " [-0.03987986 0.86091129 -0.50718966]\n", + " [-0.01135326 0.86335097 -0.50447616]\n", + " [ 0.01692793 0.86501015 -0.50146873]\n", + " [ 0.04485164 0.86590153 -0.49819964]\n", + " [ 0.07230543 0.86604541 -0.49470928]\n", + " [ 0.09917532 0.86546931 -0.49104697]\n", + " [-0.06810565 0.73455769 -0.67511971]\n", + " [-0.03846529 0.73877123 -0.67285771]\n", + " [-0.00888467 0.74230717 -0.67000084]\n", + " [ 0.02051912 0.74516095 -0.66656892]\n", + " [ 0.0496311 0.74733675 -0.66258926]\n", + " [ 0.07833917 0.74884729 -0.65809628]\n", + " [ 0.10653416 0.74971339 -0.65313115]\n", + " [ 0.13410877 0.74996362 -0.64774178]\n", + " [ 0.09917532 0.86546931 -0.49104697]\n", + " [ 0.10457075 0.85159182 -0.51366948]\n", + " [ 0.1098539 0.83677976 -0.53640633]\n", + " [ 0.11501299 0.82106144 -0.55913337]\n", + " [ 0.1200341 0.80447253 -0.58173513]\n", + " [ 0.12490162 0.78705684 -0.60410356]\n", + " [ 0.1295989 0.76886679 -0.62613735]\n", + " [ 0.13410877 0.74996362 -0.64774178]\n", + " [-0.09549579 0.84758131 -0.52200238]\n", + " [-0.0907684 0.82940877 -0.55121883]\n", + " [-0.08582758 0.80981338 -0.58037567]\n", + " [-0.08069596 0.78885213 -0.60926224]\n", + " [-0.07539893 0.76660413 -0.63767791]\n", + " [-0.06996479 0.74317179 -0.66543266]\n", + " [-0.08470694 0.85547531 -0.5108686 ]\n", + " [-0.04955484 0.85986092 -0.50811763]\n", + " [-0.01454563 0.86306823 -0.50487786]\n", + " [ 0.02011392 0.86510228 -0.50119205]\n", + " [ 0.05421746 0.86598641 -0.49711971]\n", + " [ 0.08755742 0.86576101 -0.49273885]\n", + " [-0.05519798 0.7365454 -0.67413208]\n", + " [-0.01889614 0.74125475 -0.67095778]\n", + " [ 0.01719949 0.74494068 -0.66690896]\n", + " [ 0.05287626 0.74760729 -0.66203281]\n", + " [ 0.08792785 0.74927791 -0.65639264]\n", + " [ 0.12215414 0.74999413 -0.65006705]\n", + " [ 0.1014498 0.85953814 -0.50090131]\n", + " [ 0.10798743 0.84189779 -0.52872188]\n", + " [ 0.11434516 0.82288095 -0.55658973]\n", + " [ 0.12049821 0.80255021 -0.58428875]\n", + " [ 0.12641794 0.78098626 -0.61161995]\n", + " [ 0.13207344 0.75828928 -0.63839954]\n", + " [-0.09710951 0.85364812 -0.51171734]\n", + " [-0.09710951 0.85364812 -0.51171734]\n", + " [ 0.13400057 0.75002956 -0.64768782]\n", + " [ 0.13400057 0.75002956 -0.64768782]\n", + " [-0.08304484 0.84941623 -0.52114836]\n", + " [-0.04775755 0.85382585 -0.51836342]\n", + " [-0.01261653 0.85706036 -0.51506151]\n", + " [ 0.02217114 0.85912509 -0.51128517]\n", + " [ 0.05639931 0.86004384 -0.5070934 ]\n", + " [ 0.08986131 0.85985755 -0.50256337]\n", + " [-0.07819585 0.83126353 -0.55035111]\n", + " [-0.04256987 0.8357382 -0.54747553]\n", + " [-0.00710046 0.83905094 -0.54400654]\n", + " [ 0.02800397 0.84120761 -0.5399866 ]\n", + " [ 0.06253756 0.8422331 -0.53547405]\n", + " [ 0.09629586 0.8421697 -0.53054434]\n", + " [-0.07315673 0.81168491 -0.57949607]\n", + " [-0.03725861 0.81622053 -0.5765378 ]\n", + " [-0.00152822 0.81961401 -0.57291408]\n", + " [ 0.03382453 0.82187139 -0.56866802]\n", + " [ 0.06859366 0.82301808 -0.56385827]\n", + " [ 0.10257641 0.82309725 -0.55855975]\n", + " [-0.0679508 0.79073728 -0.60837261]\n", + " [-0.03184892 0.79532985 -0.60533963]\n", + " [ 0.00407365 0.79880717 -0.60157336]\n", + " [ 0.03960562 0.80117508 -0.59711798]\n", + " [ 0.07454077 0.80245893 -0.59203322]\n", + " [ 0.10867751 0.80270212 -0.5863945 ]\n", + " [-0.06260413 0.76849965 -0.63678019]\n", + " [-0.02636872 0.77314498 -0.63368094]\n", + " [ 0.00967573 0.77670925 -0.62978498]\n", + " [ 0.04531701 0.77919773 -0.62513779]\n", + " [ 0.08034867 0.78063522 -0.61980057]\n", + " [ 0.11456994 0.78106467 -0.61384991]\n", + " [-0.05714556 0.74507433 -0.66452887]\n", + " [-0.02084828 0.74976786 -0.66137244]\n", + " [ 0.01524667 0.7534217 -0.65736084]\n", + " [ 0.05092669 0.7560403 -0.65254083]\n", + " [ 0.08598533 0.75764743 -0.64697519]\n", + " [ 0.12022236 0.75828511 -0.64074197]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:fp_optics: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:cartToSphere: vec: [[ 0.04395083 -0.2038361 0.97801798]\n", + " [ 0.04937599 -0.17681921 0.98300406]\n", + " [ 0.05486862 -0.14912024 0.98729559]\n", + " [ 0.06040472 -0.12084189 0.99083223]\n", + " [ 0.06596068 -0.09208913 0.99356368]\n", + " [ 0.07151309 -0.06297041 0.99544995]\n", + " [ 0.07703876 -0.0335979 0.99646185]\n", + " [ 0.08251485 -0.00408674 0.99658146]\n", + " [ 0.04395083 -0.2038361 0.97801798]\n", + " [ 0.07238303 -0.20895579 0.97524262]\n", + " [ 0.10068205 -0.2137885 0.97167772]\n", + " [ 0.12873868 -0.2183151 0.96734941]\n", + " [ 0.15644555 -0.22251703 0.96229463]\n", + " [ 0.18369709 -0.22637579 0.95656123]\n", + " [ 0.210389 -0.22987202 0.95020804]\n", + " [ 0.23641722 -0.23298472 0.94330537]\n", + " [ 0.08251485 -0.00408674 0.99658146]\n", + " [ 0.11189625 -0.00953168 0.99367418]\n", + " [ 0.14108278 -0.014948 0.98988495]\n", + " [ 0.16996084 -0.02031443 0.98524141]\n", + " [ 0.19842063 -0.0256103 0.97978231]\n", + " [ 0.22635687 -0.03081557 0.97355686]\n", + " [ 0.25366872 -0.03591089 0.96662433]\n", + " [ 0.28025868 -0.04087731 0.95905376]\n", + " [ 0.23641722 -0.23298472 0.94330537]\n", + " [ 0.24334264 -0.20717474 0.94755632]\n", + " [ 0.25008848 -0.18063812 0.95122323]\n", + " [ 0.25663013 -0.15348475 0.95424494]\n", + " [ 0.26294264 -0.12582309 0.95657186]\n", + " [ 0.26900102 -0.09776157 0.9581655 ]\n", + " [ 0.27478082 -0.0694095 0.95899834]\n", + " [ 0.28025868 -0.04087731 0.95905376]\n", + " [ 0.04640407 -0.1921651 0.98026488]\n", + " [ 0.05310255 -0.15858176 0.9859168 ]\n", + " [ 0.05987828 -0.12407577 0.99046443]\n", + " [ 0.06668765 -0.08883933 0.99381101]\n", + " [ 0.07348756 -0.05307213 0.99588299]\n", + " [ 0.08023544 -0.01698193 0.99663127]\n", + " [ 0.0563755 -0.20601131 0.97692433]\n", + " [ 0.09114732 -0.2120958 0.97298897]\n", + " [ 0.12561034 -0.2177303 0.96789233]\n", + " [ 0.1595661 -0.22288044 0.96169796]\n", + " [ 0.19282019 -0.22751204 0.95449392]\n", + " [ 0.22518078 -0.23158883 0.94639328]\n", + " [ 0.09532319 -0.0065639 0.99542474]\n", + " [ 0.13121643 -0.01322048 0.99126559]\n", + " [ 0.16670376 -0.01981269 0.98580795]\n", + " [ 0.20158141 -0.0263022 0.97911855]\n", + " [ 0.23565555 -0.03265216 0.97128796]\n", + " [ 0.26874203 -0.03882713 0.96242931]\n", + " [ 0.23936921 -0.22181754 0.94525095]\n", + " [ 0.2477386 -0.18968086 0.95007724]\n", + " [ 0.25581402 -0.15656219 0.95396408]\n", + " [ 0.26354967 -0.1226617 0.95681538]\n", + " [ 0.2708996 -0.08817911 0.9585603 ]\n", + " [ 0.27781923 -0.05331613 0.95915268]\n", + " [ 0.04406657 -0.20376296 0.97802801]\n", + " [ 0.04406657 -0.20376296 0.97802801]\n", + " [ 0.2801509 -0.04095832 0.95908179]\n", + " [ 0.2801509 -0.04095832 0.95908179]\n", + " [ 0.05876103 -0.1944242 0.97915595]\n", + " [ 0.09366487 -0.20055447 0.97519475]\n", + " [ 0.12825335 -0.20625745 0.97005615]\n", + " [ 0.16232768 -0.21149913 0.96380384]\n", + " [ 0.19569366 -0.21624602 0.95652582]\n", + " [ 0.2281603 -0.22046291 0.94833485]\n", + " [ 0.06558028 -0.16086854 0.98479467]\n", + " [ 0.10081482 -0.167121 0.98076855]\n", + " [ 0.13571543 -0.17301077 0.97552478]\n", + " [ 0.17008208 -0.17850426 0.96912761]\n", + " [ 0.2037209 -0.18356925 0.96166529]\n", + " [ 0.23644301 -0.18817282 0.95325007]\n", + " [ 0.07245371 -0.1263861 0.9893316 ]\n", + " [ 0.10795386 -0.13275007 0.98525295]\n", + " [ 0.14310179 -0.13881716 0.97992432]\n", + " [ 0.1776961 -0.14455344 0.9734107 ]\n", + " [ 0.21154291 -0.14992683 0.96580098]\n", + " [ 0.24445506 -0.15490547 0.95720741]\n", + " [ 0.07933707 -0.09116895 0.99267006]\n", + " [ 0.11503594 -0.09763376 0.98855166]\n", + " [ 0.15036503 -0.10386926 0.98315896]\n", + " [ 0.18512172 -0.10984053 0.97655773]\n", + " [ 0.21911202 -0.11551472 0.96883759]\n", + " [ 0.25215003 -0.12085982 0.96011107]\n", + " [ 0.08618655 -0.05541667 0.99473658]\n", + " [ 0.12201547 -0.06197114 0.99059164]\n", + " [ 0.15745821 -0.06836559 0.98515636]\n", + " [ 0.1923113 -0.07456373 0.97849712]\n", + " [ 0.22638068 -0.08053126 0.97070413]\n", + " [ 0.2594814 -0.08623508 0.96189028]\n", + " [ 0.09295905 -0.01933687 0.99548214]\n", + " [ 0.12884798 -0.02596903 0.99132427]\n", + " [ 0.16433585 -0.03251175 0.98586851]\n", + " [ 0.19921885 -0.03892721 0.97918156]\n", + " [ 0.23330305 -0.04517926 0.97135396]\n", + " [ 0.26640415 -0.05123312 0.96249883]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:fp_optics: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:cartToSphere: vec: [[-0.97100323 -0.23888005 0.00943652]\n", + " [-0.96779313 -0.24926342 0.03527336]\n", + " [-0.96373633 -0.25965051 0.06159461]\n", + " [-0.95880697 -0.26998837 0.08829194]\n", + " [-0.95298889 -0.28022743 0.11525951]\n", + " [-0.94627616 -0.29032062 0.14239162]\n", + " [-0.93867387 -0.30022276 0.16958083]\n", + " [-0.9301989 -0.30989063 0.19671758]\n", + " [-0.97100323 -0.23888005 0.00943652]\n", + " [-0.96429483 -0.26482526 -0.00174858]\n", + " [-0.95678857 -0.29050241 -0.01280569]\n", + " [-0.94852492 -0.31581533 -0.02368871]\n", + " [-0.93955454 -0.34067189 -0.03435008]\n", + " [-0.92993806 -0.36498421 -0.04474083]\n", + " [-0.91974567 -0.38866903 -0.05481144]\n", + " [-0.90905626 -0.41164873 -0.06451388]\n", + " [-0.9301989 -0.30989063 0.19671758]\n", + " [-0.9232697 -0.33666743 0.1850084 ]\n", + " [-0.91553353 -0.36305561 0.17317329]\n", + " [-0.90703289 -0.38895513 0.1612614 ]\n", + " [-0.89781969 -0.41427366 0.14932225]\n", + " [-0.88795465 -0.43892618 0.13740579]\n", + " [-0.87750752 -0.46283308 0.12556311]\n", + " [-0.86655781 -0.48591799 0.11384757]\n", + " [-0.90905626 -0.41164873 -0.06451388]\n", + " [-0.90517924 -0.42311756 -0.04027505]\n", + " [-0.90059337 -0.43438807 -0.01544604]\n", + " [-0.89527537 -0.44540388 0.00986854]\n", + " [-0.8892114 -0.45611233 0.03556166]\n", + " [-0.88239769 -0.46646418 0.06152632]\n", + " [-0.87484082 -0.47641354 0.08765654]\n", + " [-0.86655781 -0.48591799 0.11384757]\n", + " [-0.96968403 -0.24349265 0.02059627]\n", + " [-0.96518388 -0.25622878 0.05260117]\n", + " [-0.95938524 -0.26891732 0.08522576]\n", + " [-0.95225433 -0.28146563 0.11827422]\n", + " [-0.94378031 -0.29378697 0.15155175]\n", + " [-0.93397747 -0.30579897 0.18485962]\n", + " [-0.96816895 -0.2502547 0.00463417]\n", + " [-0.95940572 -0.2818861 -0.00899452]\n", + " [-0.94948309 -0.31301876 -0.0223855 ]\n", + " [-0.93849013 -0.34348137 -0.03545179]\n", + " [-0.92653837 -0.3731122 -0.04810336]\n", + " [-0.91376076 -0.40176023 -0.06024948]\n", + " [-0.92730971 -0.32157388 0.19153837]\n", + " [-0.91826972 -0.35414318 0.17709694]\n", + " [-0.90805874 -0.38602862 0.16251531]\n", + " [-0.89676845 -0.41705697 0.14788453]\n", + " [-0.88451068 -0.44707144 0.13329661]\n", + " [-0.87141784 -0.47592694 0.11884652]\n", + " [-0.90748868 -0.41659237 -0.05399167]\n", + " [-0.9022642 -0.43052222 -0.02387332]\n", + " [-0.89595072 -0.44409787 0.00702798]\n", + " [-0.88851878 -0.45722084 0.03851596]\n", + " [-0.87996149 -0.46980048 0.07039376]\n", + " [-0.87029531 -0.48175372 0.10246677]\n", + " [-0.97097211 -0.23900456 0.00948551]\n", + " [-0.97097211 -0.23900456 0.00948551]\n", + " [-0.86662554 -0.48580884 0.1137978 ]\n", + " [-0.86662554 -0.48580884 0.1137978 ]\n", + " [-0.96686961 -0.25478602 0.01572405]\n", + " [-0.95806879 -0.28653118 0.00201983]\n", + " [-0.94810035 -0.31776428 -0.01147091]\n", + " [-0.93705356 -0.34831373 -0.02466124]\n", + " [-0.9250402 -0.37801763 -0.03746071]\n", + " [-0.91219375 -0.40672451 -0.04977689]\n", + " [-0.96234133 -0.26763065 0.047676 ]\n", + " [-0.95344818 -0.29965937 0.03377612]\n", + " [-0.94336938 -0.33113943 0.02002226]\n", + " [-0.93219488 -0.3618984 0.00650079]\n", + " [-0.92003687 -0.39177453 -0.00669811]\n", + " [-0.90702955 -0.42061613 -0.01947971]\n", + " [-0.95652017 -0.28040687 0.08025675]\n", + " [-0.94755581 -0.31266142 0.06618781]\n", + " [-0.93739564 -0.34433223 0.05219896]\n", + " [-0.92613045 -0.37524612 0.03837616]\n", + " [-0.91387272 -0.40524213 0.02480864]\n", + " [-0.90075656 -0.43416962 0.01159108]\n", + " [-0.94937249 -0.29302157 0.1132706 ]\n", + " [-0.94035863 -0.32544281 0.09905872]\n", + " [-0.93014681 -0.35724701 0.08486154]\n", + " [-0.91882863 -0.38826046 0.07076554]\n", + " [-0.9065167 -0.41832339 0.05685952]\n", + " [-0.89334476 -0.44728701 0.04323749]\n", + " [-0.94088768 -0.30538724 0.14652303]\n", + " [-0.9318469 -0.33791406 0.13219469]\n", + " [-0.92161416 -0.36979301 0.1178154 ]\n", + " [-0.91028148 -0.40085026 0.10347317]\n", + " [-0.89796138 -0.43092744 0.08925751]\n", + " [-0.88478703 -0.4598777 0.07526225]\n", + " [-0.93108024 -0.31742071 0.17981569]\n", + " [-0.92203588 -0.34999018 0.16539864]\n", + " [-0.91181365 -0.38188443 0.15086463]\n", + " [-0.90050545 -0.41293 0.13630391]\n", + " [-0.88822332 -0.44296977 0.12180771]\n", + " [-0.87509988 -0.47185833 0.10747058]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:fp_optics: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:cartToSphere: vec: [[-0.52714226 0.55985797 -0.63928092]\n", + " [-0.54728742 0.56225268 -0.61995839]\n", + " [-0.56738964 0.5642409 -0.59975095]\n", + " [-0.58734504 0.56579005 -0.57871186]\n", + " [-0.6070554 0.56687337 -0.55690064]\n", + " [-0.6264272 0.56746995 -0.53438453]\n", + " [-0.64537147 0.56756503 -0.51123928]\n", + " [-0.66380444 0.56715033 -0.48754914]\n", + " [-0.52714226 0.55985797 -0.63928092]\n", + " [-0.53976103 0.5357302 -0.64934674]\n", + " [-0.55195858 0.51123901 -0.65876885]\n", + " [-0.56369572 0.48648667 -0.66751618]\n", + " [-0.5749407 0.46158088 -0.67556368]\n", + " [-0.5856696 0.43663483 -0.68289175]\n", + " [-0.59586642 0.41176779 -0.68948567]\n", + " [-0.60552304 0.38710582 -0.69533512]\n", + " [-0.66380444 0.56715033 -0.48754914]\n", + " [-0.67674322 0.54217593 -0.49806011]\n", + " [-0.68903457 0.51679533 -0.50808852]\n", + " [-0.70063853 0.49111585 -0.51760107]\n", + " [-0.71152427 0.46524821 -0.52657127]\n", + " [-0.72166996 0.43930576 -0.53497936]\n", + " [-0.73106223 0.41340459 -0.54281181]\n", + " [-0.73969534 0.38766489 -0.55006066]\n", + " [-0.60552304 0.38710582 -0.69533512]\n", + " [-0.62549317 0.38774415 -0.67706187]\n", + " [-0.64536442 0.38823964 -0.65785617]\n", + " [-0.66502844 0.38855925 -0.63777651]\n", + " [-0.68438426 0.38867723 -0.61688589]\n", + " [-0.70333781 0.38857476 -0.59525254]\n", + " [-0.72180169 0.38823946 -0.57295064]\n", + " [-0.73969534 0.38766489 -0.55006066]\n", + " [-0.53596795 0.56086762 -0.63100386]\n", + " [-0.5606429 0.56353282 -0.60672094]\n", + " [-0.58514933 0.56555461 -0.58116112]\n", + " [-0.60930418 0.56688128 -0.55443127]\n", + " [-0.63293526 0.56747441 -0.52665525]\n", + " [-0.65588087 0.5673095 -0.49797612]\n", + " [-0.53276207 0.54939768 -0.6436822 ]\n", + " [-0.54795002 0.51956873 -0.65559065]\n", + " [-0.56246533 0.48929489 -0.66650077]\n", + " [-0.57624646 0.45877215 -0.6763639 ]\n", + " [-0.58924938 0.42820902 -0.68514393]\n", + " [-0.6014479 0.39782779 -0.69281561]\n", + " [-0.66946041 0.55632033 -0.49227071]\n", + " [-0.68488838 0.52542529 -0.50483282]\n", + " [-0.69930331 0.49402631 -0.51663612]\n", + " [-0.71264465 0.46232589 -0.52762901]\n", + " [-0.72487212 0.43053271 -0.53777504]\n", + " [-0.73596433 0.39886209 -0.54705169]\n", + " [-0.61420313 0.38748357 -0.68746709]\n", + " [-0.63862681 0.38817558 -0.66443624]\n", + " [-0.66279346 0.38861919 -0.64006246]\n", + " [-0.68651419 0.38876395 -0.61445981]\n", + " [-0.70961578 0.38857519 -0.587754 ]\n", + " [-0.73194016 0.38803259 -0.5600842 ]\n", + " [-0.52725492 0.55978503 -0.63925189]\n", + " [-0.52725492 0.55978503 -0.63925189]\n", + " [-0.73960698 0.38775487 -0.55011606]\n", + " [-0.73960698 0.38775487 -0.55011606]\n", + " [-0.54149503 0.55043904 -0.63545259]\n", + " [-0.55672242 0.52048758 -0.64742013]\n", + " [-0.57125171 0.49008319 -0.65839954]\n", + " [-0.58502102 0.45942215 -0.6683425 ]\n", + " [-0.59798608 0.42871267 -0.67721348]\n", + " [-0.61012059 0.39817633 -0.68498794]\n", + " [-0.56621978 0.55300051 -0.61121649]\n", + " [-0.58154221 0.52274108 -0.62333812]\n", + " [-0.5960976 0.49200955 -0.63450316]\n", + " [-0.60982336 0.46100329 -0.64466381]\n", + " [-0.62267488 0.42993009 -0.65378599]\n", + " [-0.63462579 0.39900944 -0.66184709]\n", + " [-0.59076599 0.55493815 -0.58569548]\n", + " [-0.60615792 0.52442939 -0.59795183]\n", + " [-0.6207183 0.49343416 -0.60928771]\n", + " [-0.63438428 0.46215139 -0.61965529]\n", + " [-0.6471115 0.43078883 -0.62902122]\n", + " [-0.65887411 0.39956431 -0.63736432]\n", + " [-0.61495027 0.55620085 -0.55899622]\n", + " [-0.63038515 0.52550294 -0.57136784]\n", + " [-0.64492838 0.49430865 -0.58286049]\n", + " [-0.65851731 0.46281844 -0.59342569]\n", + " [-0.67110844 0.43124039 -0.60303 ]\n", + " [-0.682677 0.39979108 -0.61165284]\n", + " [-0.63860009 0.55675085 -0.53124233]\n", + " [-0.65405066 0.52592592 -0.54370917]\n", + " [-0.66855424 0.49459877 -0.55534429]\n", + " [-0.68204887 0.46297114 -0.5660981 ]\n", + " [-0.69449233 0.43125147 -0.57593626]\n", + " [-0.70586124 0.39965557 -0.58483787]\n", + " [-0.6615535 0.55656427 -0.50257655]\n", + " [-0.67699221 0.5256761 -0.51511764]\n", + " [-0.69143405 0.49428378 -0.52687997]\n", + " [-0.70481805 0.46258973 -0.53781247]\n", + " [-0.71710345 0.4308026 -0.54787933]\n", + " [-0.72826837 0.39913779 -0.55705852]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:fp_optics: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:cartToSphere: vec: [[-1.08162667e-02 1.16190074e-01 -9.93168100e-01]\n", + " [ 9.99110805e-03 1.33192242e-01 -9.91039860e-01]\n", + " [ 3.11282743e-02 1.50571883e-01 -9.88108870e-01]\n", + " [ 5.25135609e-02 1.68236691e-01 -9.84346861e-01]\n", + " [ 7.40648857e-02 1.86098871e-01 -9.79735476e-01]\n", + " [ 9.56995424e-02 2.04074989e-01 -9.74266389e-01]\n", + " [ 1.17334158e-01 2.22085548e-01 -9.67941478e-01]\n", + " [ 1.38884914e-01 2.40054642e-01 -9.60772996e-01]\n", + " [-1.08162667e-02 1.16190074e-01 -9.93168100e-01]\n", + " [-2.99406367e-02 1.34915224e-01 -9.90404685e-01]\n", + " [-4.93447974e-02 1.54052961e-01 -9.86829659e-01]\n", + " [-6.89544354e-02 1.73503638e-01 -9.82416293e-01]\n", + " [-8.86948191e-02 1.93172128e-01 -9.77147767e-01]\n", + " [-1.08490574e-01 2.12967666e-01 -9.71017285e-01]\n", + " [-1.28265647e-01 2.32803386e-01 -9.64028271e-01]\n", + " [-1.47943544e-01 2.52595958e-01 -9.56194535e-01]\n", + " [ 1.38884914e-01 2.40054642e-01 -9.60772996e-01]\n", + " [ 1.20444583e-01 2.60784164e-01 -9.57854228e-01]\n", + " [ 1.01532121e-01 2.81732302e-01 -9.54105937e-01]\n", + " [ 8.22179670e-02 3.02802748e-01 -9.49500238e-01]\n", + " [ 6.25733092e-02 3.23902607e-01 -9.44018899e-01]\n", + " [ 4.26713437e-02 3.44941063e-01 -9.37653891e-01]\n", + " [ 2.25879440e-02 3.65828783e-01 -9.30408021e-01]\n", + " [ 2.40156209e-03 3.86478185e-01 -9.22295422e-01]\n", + " [-1.47943544e-01 2.52595958e-01 -9.56194535e-01]\n", + " [-1.27587660e-01 2.71655242e-01 -9.53899795e-01]\n", + " [-1.06725827e-01 2.90880999e-01 -9.50788011e-01]\n", + " [-8.54355289e-02 3.10183928e-01 -9.46829816e-01]\n", + " [-6.37952966e-02 3.29478044e-01 -9.42005509e-01]\n", + " [-4.18860142e-02 3.48679522e-01 -9.36305587e-01]\n", + " [-1.97915336e-02 3.67706254e-01 -9.29731362e-01]\n", + " [ 2.40156209e-03 3.86478185e-01 -9.22295422e-01]\n", + " [-1.85474023e-03 1.23614417e-01 -9.92328593e-01]\n", + " [ 2.38790510e-02 1.44719666e-01 -9.89184517e-01]\n", + " [ 5.00272192e-02 1.66299536e-01 -9.84805433e-01]\n", + " [ 7.64388363e-02 1.88190513e-01 -9.79153428e-01]\n", + " [ 1.02961637e-01 2.10238949e-01 -9.72213189e-01]\n", + " [ 1.29441925e-01 2.32299990e-01 -9.63992480e-01]\n", + " [-1.90448901e-02 1.24355033e-01 -9.92054997e-01]\n", + " [-4.26812662e-02 1.47596520e-01 -9.88126296e-01]\n", + " [-6.66642370e-02 1.71358092e-01 -9.82950804e-01]\n", + " [-9.08564114e-02 1.95462728e-01 -9.76493438e-01]\n", + " [-1.15119022e-01 2.19743281e-01 -9.68741710e-01]\n", + " [-1.39311851e-01 2.44041308e-01 -9.59706230e-01]\n", + " [ 1.30833688e-01 2.48998000e-01 -9.59626251e-01]\n", + " [ 1.07906071e-01 2.74562879e-01 -9.55495424e-01]\n", + " [ 8.43394084e-02 3.00360098e-01 -9.50089825e-01]\n", + " [ 6.02643779e-02 3.26217305e-01 -9.43371865e-01]\n", + " [ 3.58158139e-02 3.51967243e-01 -9.35326834e-01]\n", + " [ 1.11345066e-02 3.77446144e-01 -9.25964595e-01]\n", + " [-1.39068187e-01 2.60811704e-01 -9.55320519e-01]\n", + " [-1.13769348e-01 2.84293512e-01 -9.51963095e-01]\n", + " [-8.77876313e-02 3.07936330e-01 -9.47348166e-01]\n", + " [-6.12671003e-02 3.31580562e-01 -9.41435433e-01]\n", + " [-3.43567365e-02 3.55071840e-01 -9.34207473e-01]\n", + " [-7.21208899e-03 3.78259821e-01 -9.25671374e-01]\n", + " [-1.08106047e-02 1.16310683e-01 -9.93154044e-01]\n", + " [-1.08106047e-02 1.16310683e-01 -9.93154044e-01]\n", + " [ 2.39471659e-03 3.86344405e-01 -9.22351487e-01]\n", + " [ 2.39471659e-03 3.86344405e-01 -9.22351487e-01]\n", + " [-1.00851092e-02 1.31735236e-01 -9.91233635e-01]\n", + " [-3.37226806e-02 1.55178904e-01 -9.87310634e-01]\n", + " [-5.77252088e-02 1.79121262e-01 -9.82132055e-01]\n", + " [-8.19554406e-02 2.03385741e-01 -9.75662619e-01]\n", + " [-1.06274489e-01 2.27805647e-01 -9.67889622e-01]\n", + " [-1.30541739e-01 2.52222679e-01 -9.58823537e-01]\n", + " [ 1.56709983e-02 1.53041578e-01 -9.88095489e-01]\n", + " [-7.93817196e-03 1.77015028e-01 -9.84176135e-01]\n", + " [-3.19644760e-02 2.01428990e-01 -9.78981427e-01]\n", + " [-5.62712384e-02 2.26108635e-01 -9.72475415e-01]\n", + " [-8.07193760e-02 2.50888485e-01 -9.64644676e-01]\n", + " [-1.05167189e-01 2.75610274e-01 -9.55499262e-01]\n", + " [ 4.18582542e-02 1.74799537e-01 -9.83713885e-01]\n", + " [ 1.83252259e-02 1.99240002e-01 -9.79779367e-01]\n", + " [-5.67703180e-03 2.24066975e-01 -9.74557213e-01]\n", + " [-3.00127955e-02 2.49107363e-01 -9.68010720e-01]\n", + " [-5.45431738e-02 2.74196381e-01 -9.60125714e-01]\n", + " [-7.91256857e-02 2.99175140e-01 -9.50911858e-01]\n", + " [ 6.83258824e-02 1.96846019e-01 -9.78050724e-01]\n", + " [ 4.49173815e-02 2.21692385e-01 -9.74081575e-01]\n", + " [ 2.09880066e-02 2.46875395e-01 -9.68819923e-01]\n", + " [-3.32785908e-03 2.72223112e-01 -9.62228405e-01]\n", + " [-2.78920343e-02 2.97570695e-01 -9.54292259e-01]\n", + " [-5.25617952e-02 3.22758035e-01 -9.45020904e-01]\n", + " [ 9.49215075e-02 2.19027816e-01 -9.71090482e-01]\n", + " [ 7.16857185e-02 2.44220128e-01 -9.67066537e-01]\n", + " [ 4.78781783e-02 2.69702817e-01 -9.61752603e-01]\n", + " [ 2.36316717e-02 2.95304285e-01 -9.55110948e-01]\n", + " [-9.16833254e-04 3.20858948e-01 -9.47126546e-01]\n", + " [-2.56250242e-02 3.46205123e-01 -9.37808814e-01]\n", + " [ 1.21491029e-01 2.41200219e-01 -9.62840789e-01]\n", + " [ 9.84749660e-02 2.66678588e-01 -9.58741473e-01]\n", + " [ 7.48372379e-02 2.92403999e-01 -9.53362098e-01]\n", + " [ 5.07090280e-02 3.18204408e-01 -9.46664961e-01]\n", + " [ 2.62257508e-02 3.43913034e-01 -9.38635198e-01]\n", + " [ 1.52868266e-03 3.69366607e-01 -9.29282504e-01]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:fp_optics: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:cartToSphere: vec: [[ 5.26077651e-01 1.09572012e-01 8.43348255e-01]\n", + " [ 5.10128691e-01 8.99828456e-02 8.55378165e-01]\n", + " [ 4.93449293e-01 6.99283969e-02 8.66958946e-01]\n", + " [ 4.76083695e-01 4.94849988e-02 8.78006578e-01]\n", + " [ 4.58081054e-01 2.87294962e-02 8.88446039e-01]\n", + " [ 4.39496660e-01 7.74053929e-03 8.98210872e-01]\n", + " [ 4.20392677e-01 -1.34007914e-02 9.07243306e-01]\n", + " [ 4.00838199e-01 -3.46111831e-02 9.15494841e-01]\n", + " [ 5.26077651e-01 1.09572012e-01 8.43348255e-01]\n", + " [ 5.07327371e-01 1.29988573e-01 8.51893133e-01]\n", + " [ 4.88155736e-01 1.50162403e-01 8.59741374e-01]\n", + " [ 4.68641880e-01 1.70014272e-01 8.66873656e-01]\n", + " [ 4.48868972e-01 1.89465452e-01 8.73280876e-01]\n", + " [ 4.28923924e-01 2.08437390e-01 8.78964232e-01]\n", + " [ 4.08897360e-01 2.26851208e-01 8.83935223e-01]\n", + " [ 3.88883781e-01 2.44627364e-01 8.88215547e-01]\n", + " [ 4.00838199e-01 -3.46111831e-02 9.15494841e-01]\n", + " [ 3.81516997e-01 -1.33800269e-02 9.24264981e-01]\n", + " [ 3.61913428e-01 7.79317674e-03 9.32179134e-01]\n", + " [ 3.42109629e-01 2.88247757e-02 9.39217831e-01]\n", + " [ 3.22189962e-01 4.96332539e-02 9.45373032e-01]\n", + " [ 3.02240447e-01 7.01395652e-02 9.50647755e-01]\n", + " [ 2.82348998e-01 9.02666405e-02 9.55055484e-01]\n", + " [ 2.62606415e-01 1.09938178e-01 9.58619564e-01]\n", + " [ 3.88883781e-01 2.44627364e-01 8.88215547e-01]\n", + " [ 3.72167309e-01 2.26934492e-01 8.99995683e-01]\n", + " [ 3.54921760e-01 2.08593768e-01 9.11328253e-01]\n", + " [ 3.37195090e-01 1.89684730e-01 9.22127526e-01]\n", + " [ 3.19040017e-01 1.70286165e-01 9.32317590e-01]\n", + " [ 3.00514255e-01 1.50476449e-01 9.41832268e-01]\n", + " [ 2.81680542e-01 1.30334098e-01 9.50615114e-01]\n", + " [ 2.62606415e-01 1.09938178e-01 9.58619564e-01]\n", + " [ 5.19152758e-01 1.01163606e-01 8.48673281e-01]\n", + " [ 4.99108482e-01 7.68332459e-02 8.63126512e-01]\n", + " [ 4.78010657e-01 5.18797474e-02 8.76820565e-01]\n", + " [ 4.55947678e-01 2.64442877e-02 8.89613632e-01]\n", + " [ 4.33021420e-01 6.71728022e-04 9.01383381e-01]\n", + " [ 4.09349235e-01 -2.52877018e-02 9.12027267e-01]\n", + " [ 5.17905653e-01 1.18432644e-01 8.47199766e-01]\n", + " [ 4.94631550e-01 1.43302836e-01 8.57207050e-01]\n", + " [ 4.70802800e-01 1.67729757e-01 8.66147477e-01]\n", + " [ 4.46570863e-01 1.91568267e-01 8.74000036e-01]\n", + " [ 4.22095738e-01 2.14673696e-01 8.80766934e-01]\n", + " [ 3.97545861e-01 2.36900555e-01 8.86473584e-01]\n", + " [ 3.92521492e-01 -2.52800805e-02 9.19395342e-01]\n", + " [ 3.68641260e-01 7.12302218e-04 9.29571468e-01]\n", + " [ 3.44418095e-01 2.65341800e-02 9.38441321e-01]\n", + " [ 3.20006432e-01 5.20345559e-02 9.45985353e-01]\n", + " [ 2.95564665e-01 7.70678556e-02 9.52209050e-01]\n", + " [ 2.71255772e-01 1.01492594e-01 9.57141348e-01]\n", + " [ 3.81731676e-01 2.36937820e-01 8.93387596e-01]\n", + " [ 3.60882519e-01 2.14806176e-01 9.07536288e-01]\n", + " [ 3.39285635e-01 1.91780661e-01 9.20926401e-01]\n", + " [ 3.17036083e-01 1.68006633e-01 9.33414106e-01]\n", + " [ 2.94240115e-01 1.43628440e-01 9.44877572e-01]\n", + " [ 2.71015245e-01 1.18790852e-01 9.55216975e-01]\n", + " [ 5.25961086e-01 1.09576047e-01 8.43420433e-01]\n", + " [ 5.25961086e-01 1.09576047e-01 8.43420433e-01]\n", + " [ 2.62739125e-01 1.09941863e-01 9.58582776e-01]\n", + " [ 2.62739125e-01 1.09941863e-01 9.58582776e-01]\n", + " [ 5.11066357e-01 1.10056487e-01 8.52466274e-01]\n", + " [ 4.87710527e-01 1.35040743e-01 8.62497791e-01]\n", + " [ 4.63809384e-01 1.59598179e-01 8.71440920e-01]\n", + " [ 4.39514838e-01 1.83583741e-01 8.79274540e-01]\n", + " [ 4.14987073e-01 2.06853206e-01 8.86000836e-01]\n", + " [ 3.90394432e-01 2.29261624e-01 8.91645274e-01]\n", + " [ 4.90944472e-01 8.58178861e-02 8.66953757e-01]\n", + " [ 4.67387487e-01 1.11093943e-01 8.77044510e-01]\n", + " [ 4.43314260e-01 1.35989365e-01 8.85990609e-01]\n", + " [ 4.18878042e-01 1.60358990e-01 8.93770765e-01]\n", + " [ 3.94239489e-01 1.84059726e-01 9.00387274e-01]\n", + " [ 3.69566518e-01 2.06948454e-01 9.05865843e-01]\n", + " [ 4.69784240e-01 6.09396604e-02 8.80675380e-01]\n", + " [ 4.46071944e-01 8.64611323e-02 8.90811031e-01]\n", + " [ 4.21876566e-01 1.11648241e-01 8.99752651e-01]\n", + " [ 3.97352565e-01 1.36355093e-01 9.07479051e-01]\n", + " [ 3.72660838e-01 1.60439160e-01 9.13992985e-01]\n", + " [ 3.47968580e-01 1.83758993e-01 9.19320673e-01]\n", + " [ 4.47674497e-01 3.55625773e-02 8.93489143e-01]\n", + " [ 4.23854217e-01 6.12823676e-02 9.03654843e-01]\n", + " [ 3.99588204e-01 8.67149872e-02 9.12584121e-01]\n", + " [ 3.75031698e-01 1.11713246e-01 9.20256147e-01]\n", + " [ 3.50345421e-01 1.36134418e-01 9.26674434e-01]\n", + " [ 3.25695532e-01 1.59838040e-01 9.31865989e-01]\n", + " [ 4.24717628e-01 9.83095354e-03 9.05272494e-01]\n", + " [ 4.00838159e-01 3.57005983e-02 9.15453023e-01]\n", + " [ 3.76554309e-01 6.13316897e-02 9.24362092e-01]\n", + " [ 3.52021455e-01 8.65754066e-02 9.31979396e-01]\n", + " [ 3.27399638e-01 1.11288112e-01 9.38309348e-01]\n", + " [ 3.02853716e-01 1.35329451e-01 9.43379863e-01]\n", + " [ 4.01031416e-01 -1.61055042e-02 9.15922713e-01]\n", + " [ 3.77142548e-01 9.86390478e-03 9.26102695e-01]\n", + " [ 3.52894180e-01 3.56448443e-02 9.34984033e-01]\n", + " [ 3.28441115e-01 6.10868432e-02 9.42546992e-01]\n", + " [ 3.03942236e-01 8.60448744e-02 9.48796815e-01]\n", + " [ 2.79560997e-01 1.10377864e-01 9.53762222e-01]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:cartToSphere: vec: [[-0.61277061 0.36396387 0.7014574 ]\n", + " [-0.60270825 0.34505337 0.71950048]\n", + " [-0.59195794 0.32548836 0.73732159]\n", + " [-0.58053611 0.30533151 0.75481819]\n", + " [-0.56846522 0.28464892 0.77189525]\n", + " [-0.55577477 0.2635115 0.78846439]\n", + " [-0.5425018 0.24199552 0.80444388]\n", + " [-0.52869106 0.22018249 0.81975937]\n", + " [-0.61277061 0.36396387 0.7014574 ]\n", + " [-0.63303959 0.34499111 0.69299495]\n", + " [-0.65267751 0.32572437 0.68404364]\n", + " [-0.6716142 0.30624111 0.6746486 ]\n", + " [-0.68978616 0.28662085 0.66486355]\n", + " [-0.70713615 0.26694481 0.65475104]\n", + " [-0.72361259 0.24729592 0.64438308]\n", + " [-0.73916888 0.22775914 0.63384157]\n", + " [-0.52869106 0.22018249 0.81975937]\n", + " [-0.54971048 0.20065825 0.81089744]\n", + " [-0.57016666 0.18101615 0.80133834]\n", + " [-0.58998583 0.16133643 0.79113038]\n", + " [-0.6091028 0.14169948 0.78033008]\n", + " [-0.62746099 0.12218528 0.7690016 ]\n", + " [-0.64501181 0.10287363 0.75721647]\n", + " [-0.66171331 0.08384522 0.74505401]\n", + " [-0.73916888 0.22775914 0.63384157]\n", + " [-0.7304499 0.2082474 0.6504429 ]\n", + " [-0.72090783 0.18826956 0.66696812]\n", + " [-0.71056216 0.16789294 0.68331061]\n", + " [-0.69943717 0.14718755 0.69937363]\n", + " [-0.68756252 0.12622648 0.71506969]\n", + " [-0.67497385 0.10508598 0.73031996]\n", + " [-0.66171331 0.08384522 0.74505401]\n", + " [-0.60853938 0.35573868 0.70931644]\n", + " [-0.59574321 0.33211337 0.73129388]\n", + " [-0.58192928 0.30756707 0.75283518]\n", + " [-0.56713641 0.28221996 0.77376236]\n", + " [-0.55141894 0.25620262 0.7939127 ]\n", + " [-0.53484827 0.22965771 0.81313877]\n", + " [-0.62164785 0.35566895 0.69789222]\n", + " [-0.6460751 0.33220797 0.68718617]\n", + " [-0.66948402 0.30838225 0.67578957]\n", + " [-0.69175492 0.28433735 0.66379771]\n", + " [-0.71278236 0.26022281 0.65132587]\n", + " [-0.73247349 0.23619211 0.63851067]\n", + " [-0.53796787 0.21176444 0.81593283]\n", + " [-0.56336009 0.1877461 0.80459729]\n", + " [-0.58783201 0.16363026 0.79226174]\n", + " [-0.61125999 0.13956489 0.77902687]\n", + " [-0.63353983 0.11569726 0.76501073]\n", + " [-0.6545849 0.09217459 0.75034822]\n", + " [-0.73541774 0.21938002 0.64111868]\n", + " [-0.72417514 0.19514457 0.66142949]\n", + " [-0.71171513 0.17027548 0.68151877]\n", + " [-0.69808043 0.14490051 0.70120437]\n", + " [-0.68332566 0.1191542 0.72032515]\n", + " [-0.66751916 0.09317819 0.73873947]\n", + " [-0.61280769 0.36383609 0.70149129]\n", + " [-0.61280769 0.36383609 0.70149129]\n", + " [-0.66170412 0.08398244 0.74504671]\n", + " [-0.66170412 0.08398244 0.74504671]\n", + " [-0.61741474 0.34754064 0.70570145]\n", + " [-0.64194288 0.32400131 0.69493344]\n", + " [-0.66545422 0.30011128 0.68345 ]\n", + " [-0.68782915 0.27601662 0.67134632]\n", + " [-0.70896276 0.25186709 0.65873725]\n", + " [-0.72876299 0.22781606 0.64575874]\n", + " [-0.60470746 0.32383802 0.72763853]\n", + " [-0.62949269 0.30010671 0.71671118]\n", + " [-0.65326797 0.2760662 0.70500242]\n", + " [-0.67591364 0.25186395 0.69260761]\n", + " [-0.69732605 0.22765026 0.67964089]\n", + " [-0.7174154 0.20357804 0.66623654]\n", + " [-0.59096621 0.29922976 0.7491465 ]\n", + " [-0.61596577 0.27535195 0.73808365]\n", + " [-0.63996664 0.2512092 0.72617948]\n", + " [-0.66284862 0.22695015 0.71353019]\n", + " [-0.68450886 0.20272527 0.70025002]\n", + " [-0.70485949 0.17868665 0.68647227]\n", + " [-0.57622937 0.27383655 0.77004757]\n", + " [-0.60139962 0.2498593 0.75887339]\n", + " [-0.62558765 0.22566429 0.74680367]\n", + " [-0.64867235 0.20140076 0.7339359 ]\n", + " [-0.67055106 0.17721884 0.72038514]\n", + " [-0.69113721 0.15326945 0.70628452]\n", + " [-0.56055069 0.24778948 0.79017928]\n", + " [-0.5858467 0.22376133 0.7789188 ]\n", + " [-0.61018274 0.1995652 0.76671426]\n", + " [-0.6334366 0.17535027 0.75366462]\n", + " [-0.65550524 0.15126576 0.73988617]\n", + " [-0.6763026 0.12746108 0.72551255]\n", + " [-0.5440011 0.22123164 0.80939444]\n", + " [-0.56937656 0.19720199 0.79807375]\n", + " [-0.59382031 0.17305619 0.7857665 ]\n", + " [-0.61720907 0.14894265 0.77257301]\n", + " [-0.63943899 0.1250092 0.75861089]\n", + " [-0.6604237 0.10140361 0.74401468]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:fp_optics: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:fp_optics: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:cartToSphere: vec: [[-0.00655585 -0.07616076 0.997074 ]\n", + " [-0.00614485 -0.10404772 0.99455332]\n", + " [-0.00571977 -0.13240706 0.99117892]\n", + " [-0.00528213 -0.16112109 0.98692051]\n", + " [-0.00483345 -0.19007277 0.98175811]\n", + " [-0.00437536 -0.21914449 0.97568261]\n", + " [-0.00390958 -0.24821812 0.96869628]\n", + " [-0.00343788 -0.27717573 0.96081309]\n", + " [-0.00655585 -0.07616076 0.997074 ]\n", + " [-0.03556772 -0.0766049 0.99642693]\n", + " [-0.06445468 -0.07708217 0.99493916]\n", + " [-0.09310421 -0.07759444 0.99262818]\n", + " [-0.12140484 -0.0781463 0.98952212]\n", + " [-0.14924599 -0.07874556 0.98565956]\n", + " [-0.17651733 -0.07940401 0.98108951]\n", + " [-0.20310751 -0.08013806 0.97587152]\n", + " [-0.00343788 -0.27717573 0.96081309]\n", + " [-0.03345176 -0.27747908 0.96014912]\n", + " [-0.0633386 -0.27753498 0.95862535]\n", + " [-0.09298103 -0.27734678 0.95626006]\n", + " [-0.12226463 -0.27692104 0.95308242]\n", + " [-0.15107871 -0.27626742 0.94913199]\n", + " [-0.17931628 -0.27539855 0.94445821]\n", + " [-0.20687291 -0.27432997 0.93912015]\n", + " [-0.20310751 -0.08013806 0.97587152]\n", + " [-0.20445799 -0.10701121 0.97300849]\n", + " [-0.20553552 -0.13437579 0.96938037]\n", + " [-0.20634251 -0.16210703 0.96495807]\n", + " [-0.20687981 -0.19008447 0.95972321]\n", + " [-0.20714737 -0.21819064 0.95366808]\n", + " [-0.20714499 -0.24631022 0.94679577]\n", + " [-0.20687291 -0.27432997 0.93912015]\n", + " [-0.00647817 -0.08825534 0.99607682]\n", + " [-0.00596578 -0.12276625 0.99241768]\n", + " [-0.00543354 -0.15786958 0.98744502]\n", + " [-0.00488429 -0.19334969 0.98111775]\n", + " [-0.004321 -0.2289901 0.97341916]\n", + " [-0.00374684 -0.26457334 0.96435829]\n", + " [-0.01921227 -0.07644477 0.9968887 ]\n", + " [-0.05470054 -0.07701113 0.99552857]\n", + " [-0.08988927 -0.07762863 0.99292181]\n", + " [-0.12457276 -0.07830458 0.98911578]\n", + " [-0.15854742 -0.07905345 0.98418152]\n", + " [-0.19160975 -0.0798988 0.97821362]\n", + " [-0.01653367 -0.27723982 0.96065848]\n", + " [-0.05324809 -0.27744512 0.95926474]\n", + " [-0.08965478 -0.27728191 0.95659645]\n", + " [-0.12554184 -0.27676094 0.9527028 ]\n", + " [-0.16070547 -0.27589996 0.94765656]\n", + " [-0.19494989 -0.27472342 0.94155275]\n", + " [-0.20364008 -0.091784 0.97473402]\n", + " [-0.20511025 -0.12506752 0.97071515]\n", + " [-0.20617322 -0.15896464 0.96551688]\n", + " [-0.20683115 -0.19325189 0.95910092]\n", + " [-0.20708406 -0.22771292 0.95145311]\n", + " [-0.20693173 -0.26213628 0.94258359]\n", + " [-0.00665377 -0.07625665 0.99706602]\n", + " [-0.00665377 -0.07625665 0.99706602]\n", + " [-0.20678135 -0.27423842 0.93916706]\n", + " [-0.20678135 -0.27423842 0.93916706]\n", + " [-0.01908614 -0.08844208 0.99589845]\n", + " [-0.05471446 -0.08898636 0.99452891]\n", + " [-0.09004258 -0.08955479 0.99190336]\n", + " [-0.12486452 -0.09015427 0.98806936]\n", + " [-0.15897702 -0.09079867 0.98309812]\n", + " [-0.19217767 -0.09151065 0.97708421]\n", + " [-0.01869826 -0.12294891 0.99223684]\n", + " [-0.05467892 -0.12343078 0.99084563]\n", + " [-0.0903571 -0.12386144 0.98817708]\n", + " [-0.12552567 -0.12424729 0.98427939]\n", + " [-0.1599819 -0.12460113 0.97922436]\n", + " [-0.19352594 -0.12494379 0.97310676]\n", + " [-0.01826699 -0.15804787 0.98726247]\n", + " [-0.0545333 -0.15846692 0.98585717]\n", + " [-0.09049476 -0.15876041 0.98316114]\n", + " [-0.12594275 -0.158935 0.97922321]\n", + " [-0.16067455 -0.1590035 0.97411579]\n", + " [-0.19449217 -0.1589861 0.96793399]\n", + " [-0.01779448 -0.19352327 0.9809343 ]\n", + " [-0.05427798 -0.19387882 0.97952279]\n", + " [-0.09045467 -0.19403509 0.9768154 ]\n", + " [-0.12611451 -0.19399962 0.97286139]\n", + " [-0.16105443 -0.1937861 0.96773365]\n", + " [-0.19507765 -0.19341523 0.96152757]\n", + " [-0.017283 -0.22915866 0.97323564]\n", + " [-0.05391333 -0.22945024 0.97182609]\n", + " [-0.09023574 -0.22946964 0.96912393]\n", + " [-0.12603903 -0.22922565 0.96517862]\n", + " [-0.16111973 -0.2287335 0.96006324]\n", + " [-0.19528173 -0.22801518 0.95387322]\n", + " [-0.01673516 -0.26473659 0.96417554]\n", + " [-0.05344046 -0.26496429 0.96277622]\n", + " [-0.08983778 -0.26484826 0.96009613]\n", + " [-0.12571528 -0.26439875 0.95618459]\n", + " [-0.16086923 -0.26363282 0.95111452]\n", + " [-0.1951038 -0.26257426 0.94498109]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:fp_optics: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:cartToSphere: vec: [[ 0.78447798 -0.15243747 -0.60112987]\n", + " [ 0.77469213 -0.13380608 -0.61801944]\n", + " [ 0.76403861 -0.11479579 -0.63487553]\n", + " [ 0.75253914 -0.09547195 -0.65159033]\n", + " [ 0.74022091 -0.07590206 -0.66806578]\n", + " [ 0.72711703 -0.05615612 -0.68421292]\n", + " [ 0.71326712 -0.03630661 -0.69995132]\n", + " [ 0.69871775 -0.01642829 -0.71520879]\n", + " [ 0.78447798 -0.15243747 -0.60112987]\n", + " [ 0.7714752 -0.17325522 -0.61221617]\n", + " [ 0.75755149 -0.1942954 -0.62318941]\n", + " [ 0.74274069 -0.21546857 -0.63396337]\n", + " [ 0.72708208 -0.23668699 -0.64446173]\n", + " [ 0.71062085 -0.2578642 -0.65461749]\n", + " [ 0.69340884 -0.27891482 -0.66437242]\n", + " [ 0.67550489 -0.29975478 -0.67367664]\n", + " [ 0.69871775 -0.01642829 -0.71520879]\n", + " [ 0.68456793 -0.03679929 -0.72801962]\n", + " [ 0.66957694 -0.05755519 -0.74050937]\n", + " [ 0.65377427 -0.0786114 -0.75259515]\n", + " [ 0.63719602 -0.09988404 -0.76420181]\n", + " [ 0.61988619 -0.12128858 -0.77526137]\n", + " [ 0.60189752 -0.1427393 -0.78571297]\n", + " [ 0.58329164 -0.16414955 -0.79550348]\n", + " [ 0.67550489 -0.29975478 -0.67367664]\n", + " [ 0.66448476 -0.28180197 -0.69213268]\n", + " [ 0.65270487 -0.26326844 -0.71039854]\n", + " [ 0.64018328 -0.24421526 -0.72837098]\n", + " [ 0.62694468 -0.22470639 -0.74595403]\n", + " [ 0.61302138 -0.20480992 -0.76305811]\n", + " [ 0.59845401 -0.18459859 -0.7796 ]\n", + " [ 0.58329164 -0.16414955 -0.79550348]\n", + " [ 0.78027602 -0.14443556 -0.60852913]\n", + " [ 0.76769568 -0.12133799 -0.62922209]\n", + " [ 0.7538331 -0.09773585 -0.64975639]\n", + " [ 0.73873604 -0.07375251 -0.66994749]\n", + " [ 0.72246552 -0.04951681 -0.68963154]\n", + " [ 0.70509735 -0.02516316 -0.70866391]\n", + " [ 0.77889164 -0.16141799 -0.60602973]\n", + " [ 0.76233127 -0.18709345 -0.61955393]\n", + " [ 0.74442068 -0.21301403 -0.63282136]\n", + " [ 0.7252299 -0.23901755 -0.64568739]\n", + " [ 0.70484223 -0.26494479 -0.65802864]\n", + " [ 0.68335597 -0.2906391 -0.66974139]\n", + " [ 0.69270455 -0.0253255 -0.72077668]\n", + " [ 0.67479394 -0.0505625 -0.73627208]\n", + " [ 0.6556484 -0.0762933 -0.75120204]\n", + " [ 0.63533159 -0.10236326 -0.76542507]\n", + " [ 0.6139246 -0.12861669 -0.77881598]\n", + " [ 0.59152823 -0.15489536 -0.79126593]\n", + " [ 0.67085699 -0.29193145 -0.68170883]\n", + " [ 0.65683843 -0.26952966 -0.70421378]\n", + " [ 0.64169583 -0.24631618 -0.72632967]\n", + " [ 0.62547186 -0.22240749 -0.74787691]\n", + " [ 0.60822605 -0.197929 -0.76869056]\n", + " [ 0.59003673 -0.17301649 -0.78862028]\n", + " [ 0.78440315 -0.15244518 -0.60122555]\n", + " [ 0.78440315 -0.15244518 -0.60122555]\n", + " [ 0.58340904 -0.16414674 -0.79541797]\n", + " [ 0.58340904 -0.16414674 -0.79541797]\n", + " [ 0.77472785 -0.15341457 -0.61340095]\n", + " [ 0.75806625 -0.17911703 -0.62709859]\n", + " [ 0.74005788 -0.20507886 -0.64051307]\n", + " [ 0.72077198 -0.23113812 -0.65350051]\n", + " [ 0.70029127 -0.25713553 -0.66593802]\n", + " [ 0.67871383 -0.28291399 -0.67772207]\n", + " [ 0.76204808 -0.13032081 -0.63427062]\n", + " [ 0.74511416 -0.15606141 -0.64842095]\n", + " [ 0.72684564 -0.18210294 -0.66221895]\n", + " [ 0.70730952 -0.20828436 -0.67552266]\n", + " [ 0.68658698 -0.23444621 -0.68821021]\n", + " [ 0.66477575 -0.26043019 -0.70017807]\n", + " [ 0.74809217 -0.1067019 -0.65496016]\n", + " [ 0.73090573 -0.1324232 -0.66950796]\n", + " [ 0.71240043 -0.15848845 -0.68364248]\n", + " [ 0.69264128 -0.18473781 -0.69722306]\n", + " [ 0.6717084 -0.21101198 -0.710128 ]\n", + " [ 0.64969962 -0.2371517 -0.72225305]\n", + " [ 0.73290719 -0.0826811 -0.67528578]\n", + " [ 0.71548592 -0.10832511 -0.69017793]\n", + " [ 0.6967654 -0.13435717 -0.70460353]\n", + " [ 0.67680928 -0.1606189 -0.71842241]\n", + " [ 0.65569726 -0.1869516 -0.73151227]\n", + " [ 0.63352775 -0.21319555 -0.74376761]\n", + " [ 0.71655356 -0.05838742 -0.6950841 ]\n", + " [ 0.69891365 -0.08389649 -0.71026832]\n", + " [ 0.67999849 -0.10983835 -0.72493972]\n", + " [ 0.65987118 -0.13605625 -0.73895786]\n", + " [ 0.63861165 -0.16239255 -0.75219933]\n", + " [ 0.61631921 -0.18868772 -0.76455711]\n", + " [ 0.69910682 -0.03395574 -0.71421051]\n", + " [ 0.68126399 -0.05927344 -0.72963418]\n", + " [ 0.6621748 -0.08506897 -0.74450507]\n", + " [ 0.64190263 -0.11118722 -0.75868203]\n", + " [ 0.62052819 -0.13747193 -0.77204031]\n", + " [ 0.59815188 -0.16376444 -0.7844715 ]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:fp_optics: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:cartToSphere: vec: [[ 0.89526795 0.43884434 0.07688265]\n", + " [ 0.89129487 0.45034339 0.05276637]\n", + " [ 0.88663258 0.46162303 0.02805063]\n", + " [ 0.88125873 0.47262564 0.00283808]\n", + " [ 0.87516006 0.48329764 -0.02276531]\n", + " [ 0.86833318 0.49358926 -0.04865308]\n", + " [ 0.86078488 0.50345445 -0.07471949]\n", + " [ 0.85253223 0.51285092 -0.10085995]\n", + " [ 0.89526795 0.43884434 0.07688265]\n", + " [ 0.90668757 0.41639659 0.06731663]\n", + " [ 0.91765735 0.39321079 0.05736091]\n", + " [ 0.92809382 0.3693603 0.04706188]\n", + " [ 0.93792158 0.34492486 0.0364686 ]\n", + " [ 0.94707443 0.31998924 0.02563012]\n", + " [ 0.95549602 0.29464278 0.01459438]\n", + " [ 0.96313997 0.26897917 0.00340795]\n", + " [ 0.85253223 0.51285092 -0.10085995]\n", + " [ 0.86423094 0.49035258 -0.11251328]\n", + " [ 0.87547583 0.4669977 -0.12431902]\n", + " [ 0.88618188 0.44285988 -0.13622337]\n", + " [ 0.89627405 0.41801557 -0.14817492]\n", + " [ 0.90568645 0.39254613 -0.16012371]\n", + " [ 0.91436183 0.36653989 -0.17202022]\n", + " [ 0.92225192 0.3400932 -0.18381516]\n", + " [ 0.96313997 0.26897917 0.00340795]\n", + " [ 0.95989486 0.27946514 -0.0223853 ]\n", + " [ 0.95581018 0.28992712 -0.04867405]\n", + " [ 0.95086043 0.3003111 -0.07535044]\n", + " [ 0.94502978 0.31056654 -0.10230904]\n", + " [ 0.93831261 0.32064553 -0.12944452]\n", + " [ 0.93071431 0.33050226 -0.15664969]\n", + " [ 0.92225192 0.3400932 -0.18381516]\n", + " [ 0.89365857 0.44380555 0.06641534]\n", + " [ 0.88832945 0.45775847 0.03644122]\n", + " [ 0.88194179 0.47132425 0.00566814]\n", + " [ 0.87446736 0.48440256 -0.02570993]\n", + " [ 0.86589993 0.49690179 -0.05749714]\n", + " [ 0.85625628 0.50873869 -0.08949929]\n", + " [ 0.90028442 0.42919166 0.07268063]\n", + " [ 0.91398926 0.4011741 0.06068748]\n", + " [ 0.92693467 0.37211993 0.04815476]\n", + " [ 0.93897833 0.34217339 0.03517187]\n", + " [ 0.9499985 0.31149052 0.02182899]\n", + " [ 0.95989553 0.2802376 0.00821383]\n", + " [ 0.85771234 0.50312008 -0.10582877]\n", + " [ 0.87175666 0.4749606 -0.12021963]\n", + " [ 0.88503367 0.44558747 -0.13478582]\n", + " [ 0.89740111 0.41514022 -0.14943177]\n", + " [ 0.90873759 0.38376888 -0.16406534]\n", + " [ 0.91894144 0.35163943 -0.17859548]\n", + " [ 0.96180141 0.27363895 -0.0077314 ]\n", + " [ 0.95726307 0.28648229 -0.03969022]\n", + " [ 0.95143731 0.29923536 -0.07228586]\n", + " [ 0.94429098 0.3118037 -0.1053233 ]\n", + " [ 0.93581384 0.32409903 -0.13860836]\n", + " [ 0.92602062 0.33603793 -0.17194278]\n", + " [ 0.89529522 0.43880854 0.0767693 ]\n", + " [ 0.89529522 0.43880854 0.0767693 ]\n", + " [ 0.9222567 0.34015198 -0.18368235]\n", + " [ 0.9222567 0.34015198 -0.18368235]\n", + " [ 0.89867493 0.43417392 0.0622606 ]\n", + " [ 0.91245295 0.40610388 0.05009244]\n", + " [ 0.92546472 0.37698254 0.03740596]\n", + " [ 0.9375672 0.34695477 0.02429276]\n", + " [ 0.94863833 0.31617673 0.0108437 ]\n", + " [ 0.95857827 0.28481495 -0.00285352]\n", + " [ 0.89340949 0.44809473 0.03210285]\n", + " [ 0.90735896 0.41990626 0.01945364]\n", + " [ 0.9205267 0.39062803 0.00635045]\n", + " [ 0.93276862 0.36040551 -0.00711172]\n", + " [ 0.94396228 0.32939465 -0.02084184]\n", + " [ 0.95400721 0.29776244 -0.03475289]\n", + " [ 0.88706484 0.4616434 0.00115473]\n", + " [ 0.90113075 0.43338278 -0.01194733]\n", + " [ 0.91440611 0.40399806 -0.02543668]\n", + " [ 0.92674683 0.37363388 -0.03921775]\n", + " [ 0.93803039 0.34244518 -0.05320043]\n", + " [ 0.94815561 0.31059922 -0.06729831]\n", + " [ 0.87961201 0.47472023 -0.03038765]\n", + " [ 0.89373808 0.44643482 -0.0439113 ]\n", + " [ 0.90707205 0.41699459 -0.05775643]\n", + " [ 0.9194703 0.38654253 -0.07182791]\n", + " [ 0.93081039 0.35523201 -0.08603624]\n", + " [ 0.9409905 0.32323032 -0.10029476]\n", + " [ 0.87104452 0.48723371 -0.06232773]\n", + " [ 0.88517406 0.45897071 -0.07624148]\n", + " [ 0.89851723 0.42952562 -0.0904131 ]\n", + " [ 0.91093102 0.39903957 -0.10474775]\n", + " [ 0.9222933 0.36766429 -0.11915549]\n", + " [ 0.93250192 0.33556672 -0.13354831]\n", + " [ 0.86137914 0.49910038 -0.09447104]\n", + " [ 0.87545561 0.47090593 -0.10874317]\n", + " [ 0.88875854 0.44150549 -0.12321186]\n", + " [ 0.90114552 0.41103883 -0.13778182]\n", + " [ 0.91249493 0.37965633 -0.15236164]\n", + " [ 0.92270486 0.34752426 -0.1668611 ]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:fp_optics: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:cartToSphere: vec: [[ 1.67749836e-01 5.97065151e-01 -7.84457264e-01]\n", + " [ 1.65246891e-01 6.18470333e-01 -7.68236886e-01]\n", + " [ 1.62410976e-01 6.39866164e-01 -7.51128462e-01]\n", + " [ 1.59264396e-01 6.61131942e-01 -7.33170790e-01]\n", + " [ 1.55826912e-01 6.82156020e-01 -7.14409643e-01]\n", + " [ 1.52116546e-01 7.02834796e-01 -6.94898414e-01]\n", + " [ 1.48150402e-01 7.23072173e-01 -6.74698518e-01]\n", + " [ 1.43945299e-01 7.42779488e-01 -6.53879486e-01]\n", + " [ 1.67749836e-01 5.97065151e-01 -7.84457264e-01]\n", + " [ 1.41643248e-01 5.95410030e-01 -7.90837586e-01]\n", + " [ 1.14837306e-01 5.93400022e-01 -7.96673589e-01]\n", + " [ 8.74471486e-02 5.91003890e-01 -8.01914832e-01]\n", + " [ 5.95854603e-02 5.88199724e-01 -8.06517611e-01]\n", + " [ 3.13639082e-02 5.84974466e-01 -8.10445050e-01]\n", + " [ 2.89410628e-03 5.81323433e-01 -8.13667433e-01]\n", + " [-2.57120256e-02 5.77249911e-01 -8.16162626e-01]\n", + " [ 1.43945299e-01 7.42779488e-01 -6.53879486e-01]\n", + " [ 1.16594745e-01 7.42645147e-01 -6.59457240e-01]\n", + " [ 8.85893482e-02 7.41913892e-01 -6.64616961e-01]\n", + " [ 6.00361981e-02 7.40555033e-01 -6.69308522e-01]\n", + " [ 3.10436834e-02 7.38545577e-01 -6.73488470e-01]\n", + " [ 1.72291400e-03 7.35870537e-01 -6.77120066e-01]\n", + " [-2.78119881e-02 7.32523295e-01 -6.80173592e-01]\n", + " [-5.74444850e-02 7.28505888e-01 -6.82626767e-01]\n", + " [-2.57120256e-02 5.77249911e-01 -8.16162626e-01]\n", + " [-3.01328581e-02 5.99524463e-01 -7.99788990e-01]\n", + " [-3.46235410e-02 6.21759270e-01 -7.82442726e-01]\n", + " [-3.91643384e-02 6.43839279e-01 -7.64157796e-01]\n", + " [-4.37359205e-02 6.65655264e-01 -7.44976670e-01]\n", + " [-4.83191256e-02 6.87103139e-01 -7.24951404e-01]\n", + " [-5.28949167e-02 7.08084185e-01 -7.04144101e-01]\n", + " [-5.74444850e-02 7.28505888e-01 -6.82626767e-01]\n", + " [ 1.66612620e-01 6.06386219e-01 -7.77519124e-01]\n", + " [ 1.63316897e-01 6.32631040e-01 -7.57037356e-01]\n", + " [ 1.59543704e-01 6.58740768e-01 -7.35259415e-01]\n", + " [ 1.55330437e-01 6.84506170e-01 -7.12266635e-01]\n", + " [ 1.50710366e-01 7.09736459e-01 -6.88157354e-01]\n", + " [ 1.45714836e-01 7.34257798e-01 -6.63048016e-01]\n", + " [ 1.56452336e-01 5.96458228e-01 -7.87248531e-01]\n", + " [ 1.23969718e-01 5.94196534e-01 -7.94708744e-01]\n", + " [ 9.05514160e-02 5.91369486e-01 -8.01300550e-01]\n", + " [ 5.64058144e-02 5.87932897e-01 -8.06940700e-01]\n", + " [ 2.17385947e-02 5.83862676e-01 -8.11561340e-01]\n", + " [-1.32446320e-02 5.79153528e-01 -8.15110895e-01]\n", + " [ 1.32122585e-01 7.42725362e-01 -6.56431762e-01]\n", + " [ 9.81480035e-02 7.42162882e-01 -6.62994137e-01]\n", + " [ 6.32961675e-02 7.40672610e-01 -6.68877926e-01]\n", + " [ 2.77659630e-02 7.38209016e-01 -6.74000371e-01]\n", + " [-8.23803062e-03 7.34744556e-01 -6.78293868e-01]\n", + " [-4.45046633e-02 7.30270638e-01 -6.81706777e-01]\n", + " [-2.75313234e-02 5.86973608e-01 -8.09137819e-01]\n", + " [-3.29980188e-02 6.14261549e-01 -7.88412252e-01]\n", + " [-3.85501431e-02 6.41374737e-01 -7.66258660e-01]\n", + " [-4.41519672e-02 6.68109746e-01 -7.42751621e-01]\n", + " [-4.97682158e-02 6.94274985e-01 -7.17987027e-01]\n", + " [-5.53639333e-02 7.19691242e-01 -6.92083341e-01]\n", + " [ 1.67653918e-01 5.97133124e-01 -7.84426030e-01]\n", + " [ 1.67653918e-01 5.97133124e-01 -7.84426030e-01]\n", + " [-5.73276277e-02 7.28451975e-01 -6.82694121e-01]\n", + " [-5.73276277e-02 7.28451975e-01 -6.82694121e-01]\n", + " [ 1.55353113e-01 6.05762120e-01 -7.80331765e-01]\n", + " [ 1.22710931e-01 6.03624181e-01 -7.87768923e-01]\n", + " [ 8.91384665e-02 6.00891671e-01 -7.94344720e-01]\n", + " [ 5.48427854e-02 5.97521053e-01 -7.99975537e-01]\n", + " [ 2.00289543e-02 5.93488686e-01 -8.04593078e-01]\n", + " [-1.50973352e-02 5.88789555e-01 -8.08145364e-01]\n", + " [ 1.51911673e-01 6.32144113e-01 -7.59813572e-01]\n", + " [ 1.18867954e-01 6.30341502e-01 -7.67163607e-01]\n", + " [ 8.49069474e-02 6.27866962e-01 -7.73675571e-01]\n", + " [ 5.02324126e-02 6.24678214e-01 -7.79264931e-01]\n", + " [ 1.50482444e-02 6.20752253e-01 -7.83862355e-01]\n", + " [-2.04391374e-02 6.16084368e-01 -7.87414944e-01]\n", + " [ 1.48019035e-01 6.58382001e-01 -7.37986115e-01]\n", + " [ 1.14646050e-01 6.56894743e-01 -7.45215123e-01]\n", + " [ 8.03660885e-02 6.54665759e-01 -7.51634244e-01]\n", + " [ 4.53804682e-02 6.51653050e-01 -7.57158448e-01]\n", + " [ 9.89268092e-03 6.47833347e-01 -7.61717854e-01]\n", + " [-2.58896345e-02 6.43201583e-01 -7.65259074e-01]\n", + " [ 1.43711509e-01 6.84267384e-01 -7.14930171e-01]\n", + " [ 1.10079051e-01 6.83077459e-01 -7.22002623e-01]\n", + " [ 7.55484380e-02 6.81082926e-01 -7.28298346e-01]\n", + " [ 4.03194529e-02 6.78241211e-01 -7.33732378e-01]\n", + " [ 4.59572172e-03 6.74528091e-01 -7.38234877e-01]\n", + " [-3.14137533e-02 6.69937666e-01 -7.41752452e-01]\n", + " [ 1.39021577e-01 7.09609720e-01 -6.90743835e-01]\n", + " [ 1.05197941e-01 7.08699337e-01 -6.97623568e-01]\n", + " [ 7.04846382e-02 7.06927869e-01 -7.03764807e-01]\n", + " [ 3.50806826e-02 7.04251608e-01 -7.09083223e-01]\n", + " [-8.09901203e-04 7.00644981e-01 -7.13509604e-01]\n", + " [-3.69769157e-02 6.96100983e-01 -7.16991025e-01]\n", + " [ 1.33980153e-01 7.34234932e-01 -6.65543675e-01]\n", + " [ 1.00033017e-01 7.33585246e-01 -6.72194974e-01]\n", + " [ 6.52052234e-02 7.32024111e-01 -6.78151148e-01]\n", + " [ 2.96956089e-02 7.29506468e-01 -6.83328972e-01]\n", + " [-6.29137418e-03 7.26005272e-01 -6.87660355e-01]\n", + " [-4.25447330e-02 7.21512337e-01 -6.91093260e-01]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:fp_optics: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:cartToSphere: vec: [[ 0.24235474 -0.23856541 0.94039924]\n", + " [ 0.23883209 -0.26464593 0.93430282]\n", + " [ 0.23490827 -0.29105464 0.92741862]\n", + " [ 0.23060451 -0.31766815 0.91973285]\n", + " [ 0.22594167 -0.34436716 0.9112418 ]\n", + " [ 0.22094033 -0.37103617 0.90195207]\n", + " [ 0.21562113 -0.39756329 0.89188057]\n", + " [ 0.21000526 -0.42384025 0.88105461]\n", + " [ 0.24235474 -0.23856541 0.94039924]\n", + " [ 0.21683009 -0.23404811 0.94773741]\n", + " [ 0.19056117 -0.229405 0.95449452]\n", + " [ 0.16365533 -0.22463126 0.96060279]\n", + " [ 0.13621998 -0.21972687 0.96600425]\n", + " [ 0.10836282 -0.21469669 0.97065073]\n", + " [ 0.08019241 -0.2095502 0.97450392]\n", + " [ 0.05181832 -0.20430119 0.97753562]\n", + " [ 0.21000526 -0.42384025 0.88105461]\n", + " [ 0.18322153 -0.42101074 0.88835794]\n", + " [ 0.15574178 -0.41778743 0.89509673]\n", + " [ 0.12766841 -0.41416419 0.90120409]\n", + " [ 0.09910483 -0.41013915 0.90662236]\n", + " [ 0.07015738 -0.4057151 0.91130302]\n", + " [ 0.04093628 -0.4008997 0.91520689]\n", + " [ 0.01155561 -0.39570573 0.91830466]\n", + " [ 0.05181832 -0.20430119 0.97753562]\n", + " [ 0.0464103 -0.23120528 0.97179741]\n", + " [ 0.04085254 -0.25845019 0.96516039]\n", + " [ 0.03516569 -0.28591736 0.95760881]\n", + " [ 0.02937066 -0.31349091 0.94913688]\n", + " [ 0.02348893 -0.34105608 0.93974944]\n", + " [ 0.01754286 -0.3684987 0.92946273]\n", + " [ 0.01155561 -0.39570573 0.91830466]\n", + " [ 0.2407832 -0.24987335 0.93786287]\n", + " [ 0.23619218 -0.28207527 0.92986386]\n", + " [ 0.23101988 -0.3146471 0.92066662]\n", + " [ 0.22530488 -0.34736748 0.91026015]\n", + " [ 0.21908508 -0.3800238 0.89865657]\n", + " [ 0.2123987 -0.41241155 0.88589136]\n", + " [ 0.23131248 -0.2366997 0.94364601]\n", + " [ 0.1995141 -0.23108051 0.95225833]\n", + " [ 0.16670448 -0.22526684 0.95992941]\n", + " [ 0.13308131 -0.21925664 0.96654844]\n", + " [ 0.09884296 -0.21305882 0.97202675]\n", + " [ 0.0641897 -0.20669266 0.97629802]\n", + " [ 0.19843938 -0.42256476 0.88434204]\n", + " [ 0.16513242 -0.41883216 0.89292267]\n", + " [ 0.13088171 -0.41450168 0.90058777]\n", + " [ 0.09587711 -0.40956811 0.90722739]\n", + " [ 0.06031447 -0.40403658 0.91275221]\n", + " [ 0.02439838 -0.39792336 0.91709417]\n", + " [ 0.04957778 -0.21599996 0.97513387]\n", + " [ 0.04284735 -0.24921812 0.96749906]\n", + " [ 0.03591235 -0.28282998 0.95849752]\n", + " [ 0.02881111 -0.31662119 0.94811441]\n", + " [ 0.02158324 -0.35038042 0.93635876]\n", + " [ 0.01427021 -0.38389788 0.92326528]\n", + " [ 0.2422575 -0.23863866 0.94040571]\n", + " [ 0.2422575 -0.23863866 0.94040571]\n", + " [ 0.01167674 -0.39563161 0.91833506]\n", + " [ 0.01167674 -0.39563161 0.91833506]\n", + " [ 0.22978197 -0.2479831 0.94111882]\n", + " [ 0.19782745 -0.24248269 0.94977179]\n", + " [ 0.16486614 -0.23675924 0.95747805]\n", + " [ 0.1310952 -0.23081084 0.96412676]\n", + " [ 0.09671265 -0.22464671 0.96962906]\n", + " [ 0.06191879 -0.2182865 0.97391841]\n", + " [ 0.22504777 -0.28032171 0.93315231]\n", + " [ 0.19269677 -0.27515538 0.94189037]\n", + " [ 0.15935129 -0.26968738 0.94967146]\n", + " [ 0.12520658 -0.26391622 0.95638462]\n", + " [ 0.09045955 -0.25785186 0.96194048]\n", + " [ 0.05531094 -0.25151471 0.96627173]\n", + " [ 0.2197561 -0.31302842 0.92396995]\n", + " [ 0.18707599 -0.30819366 0.93274822]\n", + " [ 0.15341303 -0.30298247 0.94056689]\n", + " [ 0.11896036 -0.29739347 0.94731492]\n", + " [ 0.08391404 -0.29143667 0.95290246]\n", + " [ 0.0484756 -0.28513262 0.95726146]\n", + " [ 0.21394519 -0.34588224 0.91356058]\n", + " [ 0.18100212 -0.34137786 0.92233367]\n", + " [ 0.14708736 -0.33642639 0.93015192]\n", + " [ 0.11239229 -0.33102593 0.93690437]\n", + " [ 0.07711248 -0.32518572 0.94250088]\n", + " [ 0.0414505 -0.31892567 0.94687289]\n", + " [ 0.20765246 -0.37867065 0.90193625]\n", + " [ 0.17451134 -0.37449574 0.9106584 ]\n", + " [ 0.14040985 -0.36980713 0.91843767]\n", + " [ 0.1055382 -0.36460172 0.92516338]\n", + " [ 0.07009188 -0.35888728 0.93074543]\n", + " [ 0.0342745 -0.35268242 0.93511516]\n", + " [ 0.2009158 -0.41118884 0.88913249]\n", + " [ 0.1676408 -0.40734147 0.89775803]\n", + " [ 0.13341752 -0.40291755 0.90545967]\n", + " [ 0.09843576 -0.39791243 0.91212724]\n", + " [ 0.06289125 -0.39233197 0.91767114]\n", + " [ 0.02698839 -0.38619306 0.92202307]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:cartToSphere: vec: [[-0.52013121 -0.6124833 0.59525435]\n", + " [-0.54054863 -0.61168425 0.57762407]\n", + " [-0.56104709 -0.61028382 0.55926722]\n", + " [-0.58150808 -0.60827511 0.5402312 ]\n", + " [-0.60182195 -0.60565479 0.52056951]\n", + " [-0.6218872 -0.60242346 0.50034216]\n", + " [-0.64160996 -0.59858611 0.47961582]\n", + " [-0.66090364 -0.59415265 0.45846375]\n", + " [-0.52013121 -0.6124833 0.59525435]\n", + " [-0.52810547 -0.59115681 0.60962139]\n", + " [-0.5359822 -0.56891065 0.62374975]\n", + " [-0.5436903 -0.54581796 0.63756067]\n", + " [-0.55116777 -0.52195563 0.65098111]\n", + " [-0.55836125 -0.49740499 0.66394351]\n", + " [-0.56522544 -0.47225249 0.67638583]\n", + " [-0.57172262 -0.44659003 0.68825184]\n", + " [-0.66090364 -0.59415265 0.45846375]\n", + " [-0.67071828 -0.5719568 0.47223131]\n", + " [-0.6801982 -0.54884534 0.4859004 ]\n", + " [-0.68927495 -0.52488525 0.49939515]\n", + " [-0.69788724 -0.50014879 0.51264471]\n", + " [-0.70598045 -0.47471529 0.52558254]\n", + " [-0.71350672 -0.44867221 0.53814626]\n", + " [-0.72042543 -0.42211512 0.55027813]\n", + " [-0.57172262 -0.44659003 0.68825184]\n", + " [-0.59363428 -0.44434064 0.67093944]\n", + " [-0.61550204 -0.44168191 0.65274369]\n", + " [-0.6372128 -0.43860544 0.63370744]\n", + " [-0.6586597 -0.43510722 0.61388036]\n", + " [-0.67974102 -0.43118798 0.59332038]\n", + " [-0.70035996 -0.42685356 0.57209437]\n", + " [-0.72042543 -0.42211512 0.55027813]\n", + " [-0.52904324 -0.61213668 0.58770906]\n", + " [-0.55413828 -0.61075321 0.565607 ]\n", + " [-0.57923616 -0.6084593 0.54245991]\n", + " [-0.60413137 -0.60524734 0.51836372]\n", + " [-0.62863702 -0.60111847 0.49342891]\n", + " [-0.65258328 -0.59608391 0.46778097]\n", + " [-0.52368516 -0.60330047 0.6014835 ]\n", + " [-0.53340372 -0.57653429 0.61894159]\n", + " [-0.54290392 -0.54845898 0.63596233]\n", + " [-0.55206786 -0.51921451 0.6524089 ]\n", + " [-0.56079723 -0.48895067 0.66815694]\n", + " [-0.56901181 -0.4578289 0.68309462]\n", + " [-0.66515389 -0.58460813 0.46454671]\n", + " [-0.67696598 -0.55678106 0.48136464]\n", + " [-0.6882066 -0.52764475 0.49795852]\n", + " [-0.69875998 -0.49732993 0.51419591]\n", + " [-0.70852558 -0.4659828 0.52995427]\n", + " [-0.71741829 -0.43376774 0.54512067]\n", + " [-0.58125236 -0.44574778 0.680775 ]\n", + " [-0.60809219 -0.44271779 0.6589574 ]\n", + " [-0.63475295 -0.43906398 0.63585494]\n", + " [-0.66103545 -0.43477713 0.61155619]\n", + " [-0.68675238 -0.42985862 0.58616784]\n", + " [-0.71172787 -0.42432139 0.55981676]\n", + " [-0.5202281 -0.61241029 0.59524479]\n", + " [-0.5202281 -0.61241029 0.59524479]\n", + " [-0.72033527 -0.42222358 0.55031296]\n", + " [-0.72033527 -0.42222358 0.55031296]\n", + " [-0.53256784 -0.60298943 0.59394885]\n", + " [-0.54245812 -0.57611587 0.61141614]\n", + " [-0.55210143 -0.54793061 0.62845529]\n", + " [-0.56138059 -0.51857279 0.64492953]\n", + " [-0.57019784 -0.48819172 0.66071421]\n", + " [-0.57847323 -0.45694877 0.67569708]\n", + " [-0.55784174 -0.60151054 0.57183709]\n", + " [-0.56818634 -0.57436411 0.58929632]\n", + " [-0.57820806 -0.54590018 0.60635668]\n", + " [-0.58779159 -0.51625542 0.62288152]\n", + " [-0.59684029 -0.48557775 0.63874559]\n", + " [-0.60527443 -0.45402878 0.65383541]\n", + " [-0.58310062 -0.59913659 0.54866112]\n", + " [-0.59385415 -0.57176254 0.56606082]\n", + " [-0.60421651 -0.54306745 0.58309531]\n", + " [-0.61407359 -0.51318563 0.59962833]\n", + " [-0.62332894 -0.48226396 0.61553433]\n", + " [-0.63190231 -0.45046457 0.63069894]\n", + " [-0.60813976 -0.59585937 0.52451659]\n", + " [-0.61925907 -0.56830125 0.5418043 ]\n", + " [-0.6299261 -0.53942129 0.55876451]\n", + " [-0.64002702 -0.50935189 0.57526174]\n", + " [-0.64946473 -0.47823928 0.59117067]\n", + " [-0.65815776 -0.44624634 0.60637659]\n", + " [-0.63277271 -0.5916794 0.49951396]\n", + " [-0.64421554 -0.56397922 0.51663699]\n", + " [-0.65515147 -0.53495982 0.53347403]\n", + " [-0.66546618 -0.50475234 0.54989075]\n", + " [-0.67506126 -0.47350279 0.56576268]\n", + " [-0.6838537 -0.44137477 0.58097541]\n", + " [-0.65682963 -0.58660745 0.473779 ]\n", + " [-0.66855314 -0.55880629 0.49068547]\n", + " [-0.67972105 -0.52969251 0.50735109]\n", + " [-0.69021801 -0.49939683 0.52364292]\n", + " [-0.69994403 -0.46806533 0.53943786]\n", + " [-0.70881451 -0.43586223 0.55462248]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:fp_optics: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:cartToSphere: vec: [[-0.15586508 0.26034964 -0.95285053]\n", + " [-0.13557913 0.27947882 -0.95053137]\n", + " [-0.1147772 0.29876528 -0.94739934]\n", + " [-0.09353658 0.31811956 -0.94342507]\n", + " [-0.07193557 0.33745543 -0.93858889]\n", + " [-0.05005477 0.3566888 -0.93288135]\n", + " [-0.02797776 0.37573727 -0.92630381]\n", + " [-0.00579094 0.39452058 -0.91886886]\n", + " [-0.15586508 0.26034964 -0.95285053]\n", + " [-0.17527767 0.27994766 -0.94387873]\n", + " [-0.19441036 0.2993174 -0.93413795]\n", + " [-0.21318847 0.31838859 -0.9236771 ]\n", + " [-0.2315382 0.33709566 -0.91255497]\n", + " [-0.24938636 0.35537803 -0.90084011]\n", + " [-0.26665982 0.37318011 -0.8886108 ]\n", + " [-0.28328524 0.39045108 -0.87595515]\n", + " [-0.00579094 0.39452058 -0.91886886]\n", + " [-0.02598655 0.41469514 -0.90958927]\n", + " [-0.04609211 0.43443529 -0.89952293]\n", + " [-0.06602869 0.45366845 -0.88872107]\n", + " [-0.08571981 0.47232896 -0.87724425]\n", + " [-0.10509176 0.49035816 -0.8651616 ]\n", + " [-0.12407311 0.50770379 -0.85255072]\n", + " [-0.14259352 0.52431888 -0.83949795]\n", + " [-0.28328524 0.39045108 -0.87595515]\n", + " [-0.26484167 0.40997367 -0.87280037]\n", + " [-0.24571192 0.42951229 -0.8689907 ]\n", + " [-0.22597671 0.44897377 -0.86449817]\n", + " [-0.20571644 0.46826886 -0.85930496]\n", + " [-0.18501159 0.487312 -0.85340361]\n", + " [-0.16394325 0.50602131 -0.84679693]\n", + " [-0.14259352 0.52431888 -0.83949795]\n", + " [-0.14715578 0.26873238 -0.9519076 ]\n", + " [-0.12193721 0.29229506 -0.94852249]\n", + " [-0.09602027 0.31600455 -0.94388624]\n", + " [-0.06954858 0.33970082 -0.93795861]\n", + " [-0.04267061 0.363229 -0.93072225]\n", + " [-0.01554145 0.38643825 -0.92218433]\n", + " [-0.16429051 0.26898314 -0.94902935]\n", + " [-0.18790466 0.29285866 -0.93751034]\n", + " [-0.21102417 0.3163208 -0.92488375]\n", + " [-0.23351285 0.33924689 -0.9112537 ]\n", + " [-0.25523587 0.36152538 -0.89674637]\n", + " [-0.27605853 0.38305593 -0.88150998]\n", + " [-0.01467818 0.40330158 -0.91494939]\n", + " [-0.03937923 0.42774493 -0.90304128]\n", + " [-0.06386622 0.45146307 -0.89000124]\n", + " [-0.08799728 0.4743322 -0.87593689]\n", + " [-0.11163667 0.49624425 -0.86097555]\n", + " [-0.13465341 0.51710528 -0.84526362]\n", + " [-0.27527711 0.39889688 -0.87470212]\n", + " [-0.25219954 0.42284681 -0.87039989]\n", + " [-0.22817163 0.44672788 -0.86508491]\n", + " [-0.20334155 0.47037417 -0.85872018]\n", + " [-0.17785751 0.49362816 -0.85129193]\n", + " [-0.15186922 0.51634075 -0.84280957]\n", + " [-0.15586346 0.26048201 -0.95281462]\n", + " [-0.15586346 0.26048201 -0.95281462]\n", + " [-0.14260445 0.52420157 -0.83956934]\n", + " [-0.14260445 0.52420157 -0.83956934]\n", + " [-0.15561744 0.27726561 -0.94810706]\n", + " [-0.179341 0.30121774 -0.93653867]\n", + " [-0.20258651 0.32473485 -0.92385388]\n", + " [-0.22521787 0.34769386 -0.91015707]\n", + " [-0.24710075 0.36998312 -0.89557451]\n", + " [-0.26810095 0.3915024 -0.88025436]\n", + " [-0.13048644 0.3009088 -0.94468364]\n", + " [-0.1544903 0.32504949 -0.93299281]\n", + " [-0.17806293 0.34869548 -0.92016577]\n", + " [-0.20106822 0.37172268 -0.9063078 ]\n", + " [-0.22337295 0.3940192 -0.89154551]\n", + " [-0.24484476 0.41548535 -0.87602681]\n", + " [-0.1046414 0.32468308 -0.94001653]\n", + " [-0.12888175 0.3489693 -0.92822946]\n", + " [-0.15273814 0.3727034 -0.91529407]\n", + " [-0.1760738 0.39576051 -0.90131661]\n", + " [-0.1987561 0.41802894 -0.88642417]\n", + " [-0.22065433 0.4394099 -0.87076438]\n", + " [-0.07822557 0.34842799 -0.93406568]\n", + " [-0.10265795 0.3728153 -0.92220936]\n", + " [-0.12675494 0.39659535 -0.90920037]\n", + " [-0.15037853 0.41964295 -0.89514585]\n", + " [-0.17339589 0.44184708 -0.88017329]\n", + " [-0.19567724 0.46311026 -0.86443005]\n", + " [-0.05138687 0.37198812 -0.92681402]\n", + " [-0.07596556 0.39643078 -0.91491632]\n", + " [-0.10025921 0.42021371 -0.90186947]\n", + " [-0.1241282 0.44321196 -0.88778114]\n", + " [-0.14743879 0.46531562 -0.87277899]\n", + " [-0.17006123 0.48642876 -0.85701006]\n", + " [-0.02427992 0.39521219 -0.91826892]\n", + " [-0.0489576 0.41966362 -0.90635843]\n", + " [-0.07340243 0.44340622 -0.89331014]\n", + " [-0.0974731 0.46631581 -0.8792318 ]\n", + " [-0.12103443 0.48828383 -0.86425087]\n", + " [-0.14395588 0.50921587 -0.84851394]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:fp_optics: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:cartToSphere: vec: [[-0.85027584 0.36943927 -0.37489416]\n", + " [-0.83837957 0.37133041 -0.39904062]\n", + " [-0.82555613 0.37312858 -0.42335816]\n", + " [-0.81183059 0.37479481 -0.44772753]\n", + " [-0.79723464 0.37629743 -0.47203514]\n", + " [-0.7818071 0.37761171 -0.4961724 ]\n", + " [-0.76559442 0.37871939 -0.52003539]\n", + " [-0.74865105 0.37960815 -0.54352485]\n", + " [-0.85027584 0.36943927 -0.37489416]\n", + " [-0.84298353 0.39391582 -0.3663456 ]\n", + " [-0.83483092 0.41865095 -0.35747547]\n", + " [-0.82582442 0.44351633 -0.34829195]\n", + " [-0.81597695 0.46839073 -0.33880931]\n", + " [-0.80530831 0.49315925 -0.32904783]\n", + " [-0.7938458 0.51771263 -0.31903367]\n", + " [-0.78162458 0.54194701 -0.30879841]\n", + " [-0.74865105 0.37960815 -0.54352485]\n", + " [-0.740305 0.40527149 -0.53638002]\n", + " [-0.73119147 0.43113436 -0.52866076]\n", + " [-0.7213139 0.45707492 -0.52037368]\n", + " [-0.71068307 0.48297601 -0.51153078]\n", + " [-0.69931793 0.50872355 -0.50215016]\n", + " [-0.68724633 0.53420597 -0.4922565 ]\n", + " [-0.67450533 0.55931478 -0.48188125]\n", + " [-0.78162458 0.54194701 -0.30879841]\n", + " [-0.76881101 0.54567366 -0.3334215 ]\n", + " [-0.75511882 0.5490384 -0.35826304]\n", + " [-0.74056904 0.55200349 -0.38320966]\n", + " [-0.72519037 0.55453694 -0.40815157]\n", + " [-0.70902042 0.5566125 -0.43298103]\n", + " [-0.69210639 0.55820983 -0.45759209]\n", + " [-0.67450533 0.55931478 -0.48188125]\n", + " [-0.84518066 0.37035605 -0.38536483]\n", + " [-0.82997359 0.37261786 -0.41509008]\n", + " [-0.81339804 0.37470029 -0.44495316]\n", + " [-0.79550961 0.37654198 -0.47474266]\n", + " [-0.7763798 0.37809739 -0.50425864]\n", + " [-0.75609745 0.37933536 -0.53331166]\n", + " [-0.84716298 0.38007789 -0.37128922]\n", + " [-0.83764587 0.41026822 -0.36059588]\n", + " [-0.82684223 0.44071856 -0.34942679]\n", + " [-0.81477312 0.47120282 -0.33780566]\n", + " [-0.80147511 0.50150938 -0.32576985]\n", + " [-0.78700166 0.53143934 -0.31336978]\n", + " [-0.74516581 0.39076219 -0.54040062]\n", + " [-0.73442127 0.42236502 -0.53125624]\n", + " [-0.7225265 0.45414588 -0.52125519]\n", + " [-0.70949824 0.48588725 -0.5104173 ]\n", + " [-0.69537147 0.51737903 -0.49877597]\n", + " [-0.68020127 0.54841705 -0.48637945]\n", + " [-0.77619012 0.54353112 -0.3195353 ]\n", + " [-0.75989308 0.54785938 -0.34987514]\n", + " [-0.74229635 0.55160604 -0.38042991]\n", + " [-0.72344953 0.55470984 -0.41099607]\n", + " [-0.70342191 0.5571225 -0.44137527]\n", + " [-0.68230452 0.55880912 -0.47137343]\n", + " [-0.85021329 0.36952896 -0.37494762]\n", + " [-0.85021329 0.36952896 -0.37494762]\n", + " [-0.67461127 0.55922675 -0.48183511]\n", + " [-0.67461127 0.55922675 -0.48183511]\n", + " [-0.8421021 0.38096547 -0.38174515]\n", + " [-0.83250785 0.41131977 -0.37114246]\n", + " [-0.821631 0.44192378 -0.36003594]\n", + " [-0.80949199 0.47255227 -0.34844952]\n", + " [-0.79612683 0.50299405 -0.33642094]\n", + " [-0.78158871 0.53305012 -0.32400102]\n", + " [-0.82681506 0.3833779 -0.41158017]\n", + " [-0.81700478 0.4141405 -0.40123664]\n", + " [-0.80592617 0.44512793 -0.39031287]\n", + " [-0.79359785 0.4761174 -0.3788333 ]\n", + " [-0.7800544 0.50689867 -0.3668363 ]\n", + " [-0.76534839 0.53727202 -0.35437355]\n", + " [-0.81015924 0.38558058 -0.44155364]\n", + " [-0.80013515 0.41666957 -0.43147446]\n", + " [-0.78886154 0.44796465 -0.42074357]\n", + " [-0.77635545 0.47924517 -0.40938524]\n", + " [-0.76265047 0.51030136 -0.39743777]\n", + " [-0.74779904 0.5409323 -0.38495305]\n", + " [-0.79218958 0.3875128 -0.47145466]\n", + " [-0.78195193 0.41884786 -0.46164667]\n", + " [-0.77048827 0.4503757 -0.45112034]\n", + " [-0.75781465 0.48187729 -0.43989912]\n", + " [-0.74396431 0.51314289 -0.42802042]\n", + " [-0.72899004 0.54397027 -0.41553564]\n", + " [-0.77297709 0.38912957 -0.50108343]\n", + " [-0.76252483 0.42063153 -0.49155365]\n", + " [-0.75087509 0.4523175 -0.48124368]\n", + " [-0.73804371 0.48396947 -0.47017553]\n", + " [-0.72406428 0.51537754 -0.45838511]\n", + " [-0.70899037 0.54633832 -0.44592275]\n", + " [-0.75261044 0.39040011 -0.5302502 ]\n", + " [-0.74194228 0.42199045 -0.52100451]\n", + " [-0.73011058 0.45375978 -0.51092133]\n", + " [-0.7171317 0.48549056 -0.50002104]\n", + " [-0.7030402 0.51697271 -0.48833769]\n", + " [-0.68789074 0.54800216 -0.47592012]]\n", + "DEBUG:root:fp_optics: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:fp_optics: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:cartToSphere: vec: [[-0.25938498 0.19038324 0.94682293]\n", + " [-0.2423002 0.17114151 0.95498754]\n", + " [-0.22479305 0.15126223 0.96259432]\n", + " [-0.20691723 0.13083663 0.96957054]\n", + " [-0.18873003 0.10995283 0.97585417]\n", + " [-0.17029262 0.0886972 0.98139351]\n", + " [-0.15167001 0.06715546 0.98614723]\n", + " [-0.13293068 0.04541315 0.99008438]\n", + " [-0.25938498 0.19038324 0.94682293]\n", + " [-0.28062482 0.17409109 0.94389724]\n", + " [-0.30202716 0.15719441 0.94024971]\n", + " [-0.32349502 0.13977341 0.93584954]\n", + " [-0.34493468 0.12190498 0.93067677]\n", + " [-0.36625502 0.10366408 0.92472213]\n", + " [-0.38736729 0.0851248 0.91798712]\n", + " [-0.40818533 0.06636107 0.91048391]\n", + " [-0.13293068 0.04541315 0.99008438]\n", + " [-0.15385422 0.02710289 0.98772178]\n", + " [-0.17508258 0.00839231 0.98451798]\n", + " [-0.19652381 -0.01064456 0.98044127]\n", + " [-0.21808745 -0.02993343 0.97547007]\n", + " [-0.23968349 -0.04939876 0.96959352]\n", + " [-0.26122235 -0.06896358 0.96281198]\n", + " [-0.28261539 -0.08854993 0.9551374 ]\n", + " [-0.40818533 0.06636107 0.91048391]\n", + " [-0.39187992 0.04518326 0.9189062 ]\n", + " [-0.37493872 0.02354513 0.92675055]\n", + " [-0.35741173 0.00153127 0.93394567]\n", + " [-0.33935344 -0.02077301 0.94042954]\n", + " [-0.3208236 -0.0432807 0.94614956]\n", + " [-0.30188745 -0.06590301 0.95106296]\n", + " [-0.28261539 -0.08854993 0.9551374 ]\n", + " [-0.25206352 0.18202299 0.95043759]\n", + " [-0.23083391 0.15799825 0.9600793 ]\n", + " [-0.20902269 0.13310705 0.96880959]\n", + " [-0.18673382 0.10751284 0.97650984]\n", + " [-0.16407991 0.08137477 0.9830849 ]\n", + " [-0.1411821 0.05485054 0.98846296]\n", + " [-0.26856173 0.18329425 0.94566263]\n", + " [-0.29471537 0.1629081 0.94159641]\n", + " [-0.32101641 0.14169419 0.93641402]\n", + " [-0.34729102 0.11979539 0.9300742 ]\n", + " [-0.37337141 0.09734979 0.92255992]\n", + " [-0.39909527 0.07449374 0.91387836]\n", + " [-0.1420744 0.03755871 0.98914317]\n", + " [-0.16793566 0.01483982 0.98568626]\n", + " [-0.19416306 -0.0084069 0.98093325]\n", + " [-0.22058949 -0.03204488 0.97484019]\n", + " [-0.24704929 -0.05593503 0.96738716]\n", + " [-0.27337786 -0.07993523 0.95857963]\n", + " [-0.40108648 0.05725423 0.9142492 ]\n", + " [-0.3806682 0.03097912 0.92419263]\n", + " [-0.35934435 0.00409652 0.93319605]\n", + " [-0.33721327 -0.0232369 0.94114146]\n", + " [-0.31438502 -0.05086096 0.94793208]\n", + " [-0.29098187 -0.07861166 0.95349345]\n", + " [-0.25939958 0.19026404 0.94684289]\n", + " [-0.25939958 0.19026404 0.94684289]\n", + " [-0.28260897 -0.08840562 0.95515267]\n", + " [-0.28260897 -0.08840562 0.95515267]\n", + " [-0.26123743 0.1749808 0.94928221]\n", + " [-0.28743168 0.15440467 0.94527363]\n", + " [-0.31378465 0.13302183 0.94012998]\n", + " [-0.34012285 0.11097366 0.93381009]\n", + " [-0.36627842 0.0883974 0.92629694]\n", + " [-0.39208861 0.06542913 0.91759771]\n", + " [-0.24002589 0.15076435 0.95898784]\n", + " [-0.26629336 0.129686 0.95512794]\n", + " [-0.29275364 0.10785771 0.95008527]\n", + " [-0.31923422 0.08541737 0.94381851]\n", + " [-0.34556705 0.06250058 0.93631036]\n", + " [-0.37158817 0.03924345 0.92756789]\n", + " [-0.21821008 0.12569991 0.96777265]\n", + " [-0.24448839 0.10416879 0.9640406 ]\n", + " [-0.27099624 0.08194106 0.95908639]\n", + " [-0.29756222 0.05915243 0.95286815]\n", + " [-0.32401822 0.03593808 0.945368 ]\n", + " [-0.35019933 0.01243503 0.93659265]\n", + " [-0.195894 0.09994947 0.97551814]\n", + " [-0.22212051 0.07801155 0.97189335]\n", + " [-0.24861549 0.05542817 0.96701502]\n", + " [-0.27520871 0.03233417 0.9608406 ]\n", + " [-0.30173237 0.00886535 0.95335145]\n", + " [-0.328021 -0.01483985 0.94455386]\n", + " [-0.17319047 0.07367139 0.98212911]\n", + " [-0.19930299 0.05137117 0.97859048]\n", + " [-0.2257246 0.02847559 0.97377489]\n", + " [-0.25228641 0.00511977 0.96763906]\n", + " [-0.27882126 -0.0185593 0.96016366]\n", + " [-0.30516369 -0.04242151 0.95135458]\n", + " [-0.15022109 0.04702321 0.98753351]\n", + " [-0.17615848 0.02440547 0.98405923]\n", + " [-0.20244693 0.00124224 0.97929245]\n", + " [-0.22891888 -0.02233034 0.97318935]\n", + " [-0.25540821 -0.04617376 0.9657301 ]\n", + " [-0.28175002 -0.07014636 0.95692028]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:fp_optics: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:cartToSphere: vec: [[-0.21023701 -0.07536984 0.97474088]\n", + " [-0.21240972 -0.04847155 0.97597778]\n", + " [-0.21431669 -0.02097143 0.97653907]\n", + " [-0.21595545 0.00701359 0.97637803]\n", + " [-0.21732318 0.03536779 0.97545874]\n", + " [-0.21841669 0.06397644 0.97375621]\n", + " [-0.21923282 0.09272538 0.97125639]\n", + " [-0.21976878 0.12150105 0.96795618]\n", + " [-0.21023701 -0.07536984 0.97474088]\n", + " [-0.18382815 -0.07617898 0.98000203]\n", + " [-0.15671262 -0.07679585 0.98465403]\n", + " [-0.12899971 -0.07722968 0.98863272]\n", + " [-0.1007989 -0.07748782 0.99188468]\n", + " [-0.07222019 -0.07757568 0.99436727]\n", + " [-0.04337452 -0.07749707 0.99604862]\n", + " [-0.01437392 -0.07725469 0.99690777]\n", + " [-0.21976878 0.12150105 0.96795618]\n", + " [-0.19246469 0.12255494 0.97362089]\n", + " [-0.16444701 0.12353437 0.97861966]\n", + " [-0.13581983 0.12442965 0.98288872]\n", + " [-0.10668837 0.1252325 0.98637438]\n", + " [-0.07716087 0.12593593 0.98903303]\n", + " [-0.04734967 0.12653428 0.99083151]\n", + " [-0.01737102 0.12702327 0.99174762]\n", + " [-0.01437392 -0.07725469 0.99690777]\n", + " [-0.01483832 -0.04927852 0.99867485]\n", + " [-0.01529388 -0.0207123 0.99966849]\n", + " [-0.01573867 0.00833222 0.99984142]\n", + " [-0.01617072 0.03774312 0.99915663]\n", + " [-0.01658806 0.06740659 0.99758768]\n", + " [-0.01698877 0.09720618 0.99511926]\n", + " [-0.01737102 0.12702327 0.99174762]\n", + " [-0.21112749 -0.0637263 0.97537897]\n", + " [-0.21361101 -0.03033894 0.97644758]\n", + " [-0.21569312 0.00383606 0.97645367]\n", + " [-0.21736879 0.03858518 0.97532661]\n", + " [-0.21863221 0.07369713 0.9730204 ]\n", + " [-0.21947767 0.10896202 0.96951371]\n", + " [-0.19882402 -0.07565568 0.97711065]\n", + " [-0.1659672 -0.0765157 0.9831583 ]\n", + " [-0.13215748 -0.07709649 0.98822595]\n", + " [-0.09759633 -0.07741236 0.99221081]\n", + " [-0.06248632 -0.0774733 0.99503435]\n", + " [-0.02703213 -0.07728587 0.99664244]\n", + " [-0.20795717 0.12187031 0.97051607]\n", + " [-0.17400022 0.12311218 0.97701961]\n", + " [-0.13907483 0.12423262 0.98245837]\n", + " [-0.10337414 0.12521578 0.98672934]\n", + " [-0.06709756 0.12604883 0.9897523 ]\n", + " [-0.03045355 0.12672191 0.9914707 ]\n", + " [-0.01467706 -0.06513787 0.99776833]\n", + " [-0.0152415 -0.03043935 0.9994204 ]\n", + " [-0.01579055 0.00503433 0.99986265]\n", + " [-0.01632062 0.0410773 0.99902267]\n", + " [-0.01682807 0.07747996 0.99685188]\n", + " [-0.01730938 0.11402695 0.99332685]\n", + " [-0.2101559 -0.07528212 0.97476515]\n", + " [-0.2101559 -0.07528212 0.97476515]\n", + " [-0.01747242 0.12691993 0.99175907]\n", + " [-0.01747242 0.12691993 0.99175907]\n", + " [-0.19974904 -0.0640463 0.9777517 ]\n", + " [-0.16675985 -0.06477237 0.98386772]\n", + " [-0.1328169 -0.06524557 0.98899074]\n", + " [-0.0981212 -0.06547998 0.99301793]\n", + " [-0.06287502 -0.06548515 0.99587069]\n", + " [-0.02728319 -0.06526725 0.99749477]\n", + " [-0.20211702 -0.03050872 0.97888607]\n", + " [-0.16879951 -0.0308593 0.98516721]\n", + " [-0.13452561 -0.0310309 0.99042412]\n", + " [-0.0994945 -0.03103673 0.99455395]\n", + " [-0.06390758 -0.03088531 0.99747778]\n", + " [-0.02797033 -0.03058198 0.99914083]\n", + " [-0.20410788 0.00381445 0.97894097]\n", + " [-0.17053092 0.00383466 0.98534486]\n", + " [-0.1359944 0.00396174 0.99070168]\n", + " [-0.1006955 0.00418305 0.9949085 ]\n", + " [-0.0648348 0.00449042 0.99788591]\n", + " [-0.02861865 0.00487868 0.9995785 ]\n", + " [-0.20571633 0.03871013 0.97784575]\n", + " [-0.17194788 0.03909806 0.98432986]\n", + " [-0.13721649 0.03952277 0.98975228]\n", + " [-0.10171749 0.03997145 0.99400998]\n", + " [-0.06565088 0.0404354 0.99702304]\n", + " [-0.02922392 0.04090878 0.99873542]\n", + " [-0.20693613 0.07396725 0.97555435]\n", + " [-0.17304303 0.07472048 0.98207584]\n", + " [-0.13818399 0.07544224 0.98752907]\n", + " [-0.10255294 0.07611878 0.99181088]\n", + " [-0.06634951 0.07674002 0.99484105]\n", + " [-0.02978173 0.0772987 0.99656307]\n", + " [-0.20776117 0.1093757 0.9720454 ]\n", + " [-0.17380933 0.11049094 0.97856122]\n", + " [-0.13888948 0.111508 0.98401 ]\n", + " [-0.10319483 0.11241163 0.98828865]\n", + " [-0.06692484 0.11318975 0.99131687]\n", + " [-0.03028791 0.11383323 0.99303808]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:fp_optics: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:cartToSphere: vec: [[-0.0086391 -0.81590809 0.57811708]\n", + " [-0.01648587 -0.8304895 0.55679027]\n", + " [-0.02462281 -0.84472102 0.53464017]\n", + " [-0.03300724 -0.85851118 0.51173144]\n", + " [-0.04159501 -0.87177561 0.4881364 ]\n", + " [-0.05034294 -0.88443827 0.46393376]\n", + " [-0.05920987 -0.89643205 0.43920813]\n", + " [-0.06815689 -0.90769896 0.41404979]\n", + " [-0.0086391 -0.81590809 0.57811708]\n", + " [-0.03349753 -0.80943424 0.58625431]\n", + " [-0.05891387 -0.80229427 0.59401436]\n", + " [-0.08477928 -0.79447728 0.60134709]\n", + " [-0.11098213 -0.78598082 0.60820812]\n", + " [-0.13741112 -0.7768115 0.61455844]\n", + " [-0.16395652 -0.76698538 0.62036415]\n", + " [-0.19051056 -0.75652802 0.62559658]\n", + " [-0.06815689 -0.90769896 0.41404979]\n", + " [-0.09458683 -0.90208007 0.42107585]\n", + " [-0.12148454 -0.8956221 0.42790485]\n", + " [-0.14873542 -0.88831078 0.43449019]\n", + " [-0.17622844 -0.88014064 0.44079018]\n", + " [-0.20385385 -0.87111564 0.44676745]\n", + " [-0.23150108 -0.86125008 0.45238871]\n", + " [-0.25905809 -0.85056945 0.45762487]\n", + " [-0.19051056 -0.75652802 0.62559658]\n", + " [-0.20041638 -0.77137319 0.60400057]\n", + " [-0.21036299 -0.78588816 0.58148708]\n", + " [-0.22030059 -0.79998041 0.55812095]\n", + " [-0.23018254 -0.81356649 0.5339715 ]\n", + " [-0.23996443 -0.82657089 0.50911457]\n", + " [-0.24960342 -0.83892539 0.4836345 ]\n", + " [-0.25905809 -0.85056945 0.45762487]\n", + " [-0.01210653 -0.82228179 0.56895175]\n", + " [-0.0219252 -0.83992993 0.54225178]\n", + " [-0.03213747 -0.85696094 0.5143784 ]\n", + " [-0.04266249 -0.87321641 0.48546165]\n", + " [-0.05342089 -0.88855646 0.45564639]\n", + " [-0.0643378 -0.90286128 0.42509077]\n", + " [-0.01942898 -0.81321693 0.58163626]\n", + " [-0.05028551 -0.80483692 0.5913619 ]\n", + " [-0.08187239 -0.7954445 0.60047062]\n", + " [-0.11398502 -0.78503157 0.60887835]\n", + " [-0.14641863 -0.77361037 0.61651325]\n", + " [-0.17897201 -0.76121439 0.62331506]\n", + " [-0.07958458 -0.90531362 0.41722122]\n", + " [-0.11230608 -0.8978647 0.42570686]\n", + " [-0.14561594 -0.88914038 0.4338495 ]\n", + " [-0.1793083 -0.87912693 0.44157034]\n", + " [-0.21318089 -0.86783176 0.44880057]\n", + " [-0.24702949 -0.85528583 0.45548061]\n", + " [-0.19473012 -0.76307177 0.6162805 ]\n", + " [-0.20690368 -0.78105648 0.58918728]\n", + " [-0.21908884 -0.79845217 0.56078 ]\n", + " [-0.23119843 -0.81510151 0.53118435]\n", + " [-0.24315063 -0.83086539 0.50054019]\n", + " [-0.25486714 -0.84562135 0.46900668]\n", + " [-0.00874934 -0.81593742 0.57807403]\n", + " [-0.00874934 -0.81593742 0.57807403]\n", + " [-0.25893216 -0.85056878 0.45769738]\n", + " [-0.25893216 -0.85056878 0.45769738]\n", + " [-0.02285093 -0.81958936 0.57249552]\n", + " [-0.05388792 -0.81127453 0.58217672]\n", + " [-0.08564731 -0.80192505 0.59125354]\n", + " [-0.11792235 -0.79153207 0.59964264]\n", + " [-0.15050759 -0.78010755 0.60727233]\n", + " [-0.18320158 -0.76768501 0.61408216]\n", + " [-0.0328397 -0.83731517 0.54573333]\n", + " [-0.06434553 -0.8291812 0.55526408]\n", + " [-0.09654789 -0.81995266 0.56423057]\n", + " [-0.12923695 -0.80961935 0.57255072]\n", + " [-0.1622071 -0.79819277 0.58015271]\n", + " [-0.19525678 -0.7857067 0.58697511]\n", + " [-0.04319909 -0.85441985 0.51778428]\n", + " [-0.07510498 -0.84645887 0.52713056]\n", + " [-0.10767986 -0.83734947 0.53595794]\n", + " [-0.14071398 -0.82708064 0.54418489]\n", + " [-0.17400297 -0.81566341 0.55173922]\n", + " [-0.20734524 -0.80313159 0.5585585 ]\n", + " [-0.05384612 -0.87074426 0.48877912]\n", + " [-0.08608001 -0.86294738 0.49790767]\n", + " [-0.11895638 -0.85395542 0.5065664 ]\n", + " [-0.15226703 -0.84375657 0.51467427]\n", + " [-0.18580896 -0.83236101 0.52215916]\n", + " [-0.21938016 -0.81980209 0.52895829]\n", + " [-0.06470074 -0.8861482 0.45886292]\n", + " [-0.09719035 -0.87850611 0.46774037]\n", + " [-0.13029803 -0.8696298 0.47619999]\n", + " [-0.16381716 -0.85950658 0.48416152]\n", + " [-0.1975456 -0.84814542 0.49155375]\n", + " [-0.23128046 -0.83557878 0.49831461]\n", + " [-0.07568805 -0.90051162 0.42819405]\n", + " [-0.10836168 -0.89301423 0.43678752]\n", + " [-0.14163108 -0.88425092 0.44501793]\n", + " [-0.17529042 -0.87420817 0.45280608]\n", + " [-0.20913758 -0.86289374 0.46008246]\n", + " [-0.24296868 -0.85033898 0.46678671]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:fp_optics: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:cartToSphere: vec: [[ 0.66815984 -0.30808813 -0.6772327 ]\n", + " [ 0.65707938 -0.29020481 -0.6957211 ]\n", + " [ 0.64524811 -0.2717304 -0.71401503]\n", + " [ 0.63268424 -0.25272575 -0.73201116]\n", + " [ 0.61941265 -0.23325457 -0.74961342]\n", + " [ 0.60546588 -0.21338465 -0.76673207]\n", + " [ 0.59088475 -0.19318846 -0.78328375]\n", + " [ 0.57571851 -0.17274298 -0.79919213]\n", + " [ 0.66815984 -0.30808813 -0.6772327 ]\n", + " [ 0.64939751 -0.32849168 -0.68583969]\n", + " [ 0.63011339 -0.348491 -0.69391004]\n", + " [ 0.61038946 -0.36801008 -0.70142233]\n", + " [ 0.5903136 -0.38697569 -0.70836408]\n", + " [ 0.56997938 -0.40531694 -0.7147319 ]\n", + " [ 0.54948614 -0.42296448 -0.72053177]\n", + " [ 0.52893953 -0.43984969 -0.72577904]\n", + " [ 0.57571851 -0.17274298 -0.79919213]\n", + " [ 0.55636529 -0.19394823 -0.80798623]\n", + " [ 0.53657508 -0.21490824 -0.81602796]\n", + " [ 0.51643333 -0.23554265 -0.82329599]\n", + " [ 0.49602966 -0.25577564 -0.82977913]\n", + " [ 0.47545718 -0.2755362 -0.83547608]\n", + " [ 0.45481251 -0.29475763 -0.84039486]\n", + " [ 0.43419678 -0.31337627 -0.84455223]\n", + " [ 0.52893953 -0.43984969 -0.72577904]\n", + " [ 0.51686615 -0.42372208 -0.74384742]\n", + " [ 0.50425903 -0.40683646 -0.76171316]\n", + " [ 0.49113927 -0.38925851 -0.7792689 ]\n", + " [ 0.47753483 -0.37105457 -0.79641634]\n", + " [ 0.46348063 -0.35229238 -0.81306567]\n", + " [ 0.44901848 -0.333042 -0.82913535]\n", + " [ 0.43419678 -0.31337627 -0.84455223]\n", + " [ 0.66335853 -0.3004381 -0.68534109]\n", + " [ 0.64927078 -0.27811589 -0.70788347]\n", + " [ 0.63407281 -0.25496595 -0.73003016]\n", + " [ 0.61780762 -0.23110427 -0.75160133]\n", + " [ 0.60053518 -0.20665573 -0.77243181]\n", + " [ 0.58233417 -0.18175566 -0.79237099]\n", + " [ 0.6600117 -0.31696908 -0.68111318]\n", + " [ 0.63665499 -0.34171441 -0.69130434]\n", + " [ 0.61259535 -0.36577681 -0.70066701]\n", + " [ 0.58799215 -0.38902031 -0.70917447]\n", + " [ 0.56301764 -0.41131432 -0.71682053]\n", + " [ 0.53785731 -0.4325315 -0.72362008]\n", + " [ 0.56739222 -0.18208362 -0.8030639 ]\n", + " [ 0.54336848 -0.20791802 -0.81333929]\n", + " [ 0.51877265 -0.23330362 -0.82246238]\n", + " [ 0.49376806 -0.2580989 -0.83040837]\n", + " [ 0.4685261 -0.28217308 -0.8371748 ]\n", + " [ 0.44322647 -0.30540473 -0.84278007]\n", + " [ 0.52381263 -0.43285853 -0.73365784]\n", + " [ 0.50865467 -0.41257313 -0.75568104]\n", + " [ 0.49271506 -0.3912145 -0.77729215]\n", + " [ 0.4760424 -0.36890443 -0.79830643]\n", + " [ 0.45870095 -0.34576776 -0.81855855]\n", + " [ 0.44077045 -0.32193459 -0.83790186]\n", + " [ 0.66806006 -0.30809843 -0.67732645]\n", + " [ 0.66806006 -0.30809843 -0.67732645]\n", + " [ 0.43431835 -0.31338157 -0.84448775]\n", + " [ 0.43431835 -0.31338157 -0.84448775]\n", + " [ 0.65527898 -0.30934483 -0.68914094]\n", + " [ 0.63183571 -0.33420092 -0.69935212]\n", + " [ 0.60769264 -0.35838651 -0.70870923]\n", + " [ 0.58300955 -0.38176579 -0.71718529]\n", + " [ 0.55795879 -0.40420884 -0.7247739 ]\n", + " [ 0.53272555 -0.42558929 -0.73148974]\n", + " [ 0.64111304 -0.28711387 -0.71171603]\n", + " [ 0.61745566 -0.31225334 -0.72197394]\n", + " [ 0.59311089 -0.33675819 -0.73130937]\n", + " [ 0.56823988 -0.3604926 -0.73969488]\n", + " [ 0.54301529 -0.38332812 -0.74712378]\n", + " [ 0.51762144 -0.4051411 -0.75361047]\n", + " [ 0.62585217 -0.26403876 -0.73388868]\n", + " [ 0.6020276 -0.28941662 -0.74417793]\n", + " [ 0.57753343 -0.31419754 -0.75348195]\n", + " [ 0.55253213 -0.33824499 -0.7617733 ]\n", + " [ 0.52719665 -0.3614312 -0.76904563]\n", + " [ 0.50171037 -0.38363462 -0.7753136 ]\n", + " [ 0.60953983 -0.24023506 -0.75547887]\n", + " [ 0.58559651 -0.26580549 -0.76578337]\n", + " [ 0.56100676 -0.29081939 -0.77504548]\n", + " [ 0.53593405 -0.31513892 -0.78323825]\n", + " [ 0.51055134 -0.33863614 -0.79035619]\n", + " [ 0.485041 -0.36119065 -0.7964148 ]\n", + " [ 0.59223652 -0.21582707 -0.77632118]\n", + " [ 0.56822445 -0.24154284 -0.78662446]\n", + " [ 0.54359429 -0.26674568 -0.79583414]\n", + " [ 0.51850996 -0.29129619 -0.8039241 ]\n", + " [ 0.49314404 -0.31506549 -0.81089006]\n", + " [ 0.46767778 -0.33793334 -0.81674877]\n", + " [ 0.57402138 -0.19094959 -0.79626485]\n", + " [ 0.5499916 -0.21676186 -0.80655039]\n", + " [ 0.52537695 -0.24210807 -0.8156977 ]\n", + " [ 0.50034103 -0.26684721 -0.82368162]\n", + " [ 0.47505562 -0.29084905 -0.83049924]\n", + " [ 0.44970079 -0.31399258 -0.83616856]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:fp_optics: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:cartToSphere: vec: [[-0.03710631 0.57571013 -0.81681146]\n", + " [-0.04162428 0.59797241 -0.80043514]\n", + " [-0.04619788 0.62019598 -0.78308537]\n", + " [-0.05080711 0.64226589 -0.76479616]\n", + " [-0.0554323 0.66407302 -0.74561001]\n", + " [-0.06005395 0.68551335 -0.72557906]\n", + " [-0.06465275 0.70648826 -0.70476547]\n", + " [-0.0692097 0.7269053 -0.68324132]\n", + " [-0.03710631 0.57571013 -0.81681146]\n", + " [-0.06571822 0.57106864 -0.81826751]\n", + " [-0.09419871 0.566043 -0.81897614]\n", + " [-0.12243773 0.56066196 -0.81894272]\n", + " [-0.15032688 0.55496181 -0.81818043]\n", + " [-0.17775944 0.54898684 -0.81670988]\n", + " [-0.20462979 0.54278996 -0.81455859]\n", + " [-0.23083232 0.53643361 -0.81176069]\n", + " [-0.0692097 0.7269053 -0.68324132]\n", + " [-0.0987821 0.72197479 -0.68483173]\n", + " [-0.1281707 0.71641429 -0.68580088]\n", + " [-0.15726094 0.71025497 -0.68615368]\n", + " [-0.18594191 0.70353583 -0.68590301]\n", + " [-0.21410711 0.69630322 -0.68506932]\n", + " [-0.24165437 0.68861045 -0.68368035]\n", + " [-0.26848473 0.68051784 -0.6817708 ]\n", + " [-0.23083232 0.53643361 -0.81176069]\n", + " [-0.23689697 0.55738153 -0.7957422 ]\n", + " [-0.24276745 0.57839413 -0.77879663]\n", + " [-0.24842344 0.59935098 -0.76096268]\n", + " [-0.25384398 0.62014101 -0.7422859 ]\n", + " [-0.25900801 0.64066131 -0.72281944]\n", + " [-0.26389482 0.66081635 -0.70262456]\n", + " [-0.26848473 0.68051784 -0.6817708 ]\n", + " [-0.03916635 0.58539842 -0.80979916]\n", + " [-0.04474451 0.61267176 -0.78906986]\n", + " [-0.05038611 0.63977205 -0.76691131]\n", + " [-0.05605483 0.66649606 -0.74339818]\n", + " [-0.06171477 0.69265235 -0.71862647]\n", + " [-0.06733048 0.71806187 -0.69271478]\n", + " [-0.04960599 0.57381117 -0.81748393]\n", + " [-0.08459936 0.56786065 -0.81876567]\n", + " [-0.11928576 0.56136066 -0.81892925]\n", + " [-0.15346492 0.55437489 -0.81799572]\n", + " [-0.18694032 0.54698492 -0.81600295]\n", + " [-0.21951756 0.53929209 -0.81300436]\n", + " [-0.08210302 0.72476594 -0.68408583]\n", + " [-0.11823791 0.71829608 -0.68561691]\n", + " [-0.15398256 0.71091018 -0.68621869]\n", + " [-0.18913124 0.70267681 -0.68591157]\n", + " [-0.22348787 0.69368122 -0.68473319]\n", + " [-0.25686578 0.68402448 -0.68273749]\n", + " [-0.23341048 0.54557333 -0.80490328]\n", + " [-0.2407145 0.57130776 -0.78464258]\n", + " [-0.24770692 0.59701846 -0.76302702]\n", + " [-0.25434944 0.62249716 -0.74013759]\n", + " [-0.26060328 0.6475543 -0.71607217]\n", + " [-0.26643077 0.67201704 -0.69094699]\n", + " [-0.03721959 0.575771 -0.81676341]\n", + " [-0.03721959 0.575771 -0.81676341]\n", + " [-0.26837914 0.68047961 -0.68185052]\n", + " [-0.26837914 0.68047961 -0.68185052]\n", + " [-0.05160116 0.58342891 -0.8105233 ]\n", + " [-0.08672823 0.57743235 -0.811819 ]\n", + " [-0.12154271 0.57085885 -0.81200218]\n", + " [-0.15584399 0.56377194 -0.81109423]\n", + " [-0.18943578 0.55625271 -0.8091335 ]\n", + " [-0.22212457 0.54840154 -0.80617394]\n", + " [-0.05730104 0.61067744 -0.78980355]\n", + " [-0.09276329 0.60456029 -0.79113957]\n", + " [-0.12789692 0.59779213 -0.79138294]\n", + " [-0.16250011 0.59043656 -0.79055574]\n", + " [-0.1963769 0.582574 -0.78869744]\n", + " [-0.22933601 0.57430298 -0.78586327]\n", + " [-0.06304117 0.63775687 -0.76765356]\n", + " [-0.09877304 0.63153345 -0.76903146]\n", + " [-0.13416048 0.62458989 -0.76934286]\n", + " [-0.16900028 0.61699056 -0.76861015]\n", + " [-0.20309648 0.60881621 -0.76687329]\n", + " [-0.23625955 0.60016472 -0.76418829]\n", + " [-0.06878454 0.66446406 -0.74414796]\n", + " [-0.10471868 0.65814891 -0.74556959]\n", + " [-0.14029326 0.65104916 -0.74595763]\n", + " [-0.1753038 0.64323041 -0.74533429]\n", + " [-0.20955421 0.63477446 -0.74373948]\n", + " [-0.2428562 0.62577953 -0.74122928]\n", + " [-0.07449456 0.69060773 -0.71938274]\n", + " [-0.11056181 0.68421598 -0.7208499 ]\n", + " [-0.14625547 0.67698011 -0.72132327]\n", + " [-0.18137017 0.66896703 -0.72082451]\n", + " [-0.21570969 0.66025999 -0.71939286]\n", + " [-0.24908663 0.65095822 -0.71708384]\n", + " [-0.08013524 0.71600892 -0.69347643]\n", + " [-0.11626504 0.70955652 -0.69499063]\n", + " [-0.15200867 0.70220582 -0.69555758]\n", + " [-0.18716037 0.69402499 -0.69519803]\n", + " [-0.22152399 0.68509879 -0.69395012]\n", + " [-0.25491271 0.67552779 -0.69186828]]\n", + "DEBUG:root:cartToSphere: vec: [[ 9.66034462e-01 2.58411448e-01 -9.70739909e-04]\n", + " [ 9.62824239e-01 2.68795175e-01 -2.68074213e-02]\n", + " [ 9.58771032e-01 2.79168046e-01 -5.31348314e-02]\n", + " [ 9.53849209e-01 2.89476172e-01 -7.98450451e-02]\n", + " [ 9.48042784e-01 2.99669308e-01 -1.06832512e-01]\n", + " [ 9.41345924e-01 3.09699969e-01 -1.33991720e-01]\n", + " [ 9.33763783e-01 3.19522810e-01 -1.61215298e-01]\n", + " [ 9.25313209e-01 3.29094654e-01 -1.88393668e-01]\n", + " [ 9.66034462e-01 2.58411448e-01 -9.70739909e-04]\n", + " [ 9.72527139e-01 2.32465381e-01 -1.22804544e-02]\n", + " [ 9.78172979e-01 2.06443752e-01 -2.36347095e-02]\n", + " [ 9.82961101e-01 1.80452288e-01 -3.49920764e-02]\n", + " [ 9.86891127e-01 1.54599465e-01 -4.63131701e-02]\n", + " [ 9.89973098e-01 1.28996213e-01 -5.75607617e-02]\n", + " [ 9.92227430e-01 1.03755002e-01 -6.86995352e-02]\n", + " [ 9.93684867e-01 7.89874423e-02 -7.96954820e-02]\n", + " [ 9.25313209e-01 3.29094654e-01 -1.88393668e-01]\n", + " [ 9.32037953e-01 3.02200016e-01 -1.99951003e-01]\n", + " [ 9.37903438e-01 2.75122305e-01 -2.11293298e-01]\n", + " [ 9.42898493e-01 2.47972483e-01 -2.22378236e-01]\n", + " [ 9.47023422e-01 2.20860999e-01 -2.33167444e-01]\n", + " [ 9.50289350e-01 1.93897821e-01 -2.43626325e-01]\n", + " [ 9.52717490e-01 1.67194132e-01 -2.53723287e-01]\n", + " [ 9.54338724e-01 1.40864715e-01 -2.63428797e-01]\n", + " [ 9.93684867e-01 7.89874423e-02 -7.96954820e-02]\n", + " [ 9.90598908e-01 8.73466200e-02 -1.05282340e-01]\n", + " [ 9.86692883e-01 9.59446880e-02 -1.31269842e-01]\n", + " [ 9.81941420e-01 1.04733421e-01 -1.57549857e-01]\n", + " [ 9.76329570e-01 1.13664532e-01 -1.84013439e-01]\n", + " [ 9.69852798e-01 1.22691816e-01 -2.10552293e-01]\n", + " [ 9.62517031e-01 1.31771974e-01 -2.37059300e-01]\n", + " [ 9.54338724e-01 1.40864715e-01 -2.63428797e-01]\n", + " [ 9.64760121e-01 2.62847675e-01 -1.22069374e-02]\n", + " [ 9.60262730e-01 2.75572825e-01 -4.42165983e-02]\n", + " [ 9.54472578e-01 2.88227857e-01 -7.68557070e-02]\n", + " [ 9.47356225e-01 3.00718791e-01 -1.09929032e-01]\n", + " [ 9.38903032e-01 3.12958140e-01 -1.43242100e-01]\n", + " [ 9.29127329e-01 3.24863304e-01 -1.76596264e-01]\n", + " [ 9.68958797e-01 2.47149904e-01 -5.98114548e-03]\n", + " [ 9.76348852e-01 2.15285367e-01 -1.98778804e-02]\n", + " [ 9.82454885e-01 1.83411999e-01 -3.37999520e-02]\n", + " [ 9.87271843e-01 1.51728372e-01 -4.76739880e-02]\n", + " [ 9.90818208e-01 1.20438609e-01 -6.14314252e-02]\n", + " [ 9.93135857e-01 8.97496172e-02 -7.50078358e-02]\n", + " [ 9.28380015e-01 3.17365847e-01 -1.93363560e-01]\n", + " [ 9.36045977e-01 2.84266793e-01 -2.07389295e-01]\n", + " [ 9.42408862e-01 2.51003075e-01 -2.21049752e-01]\n", + " [ 9.47464483e-01 2.17778309e-01 -2.34272621e-01]\n", + " [ 9.51233233e-01 1.84795140e-01 -2.46994113e-01]\n", + " [ 9.53758183e-01 1.52259664e-01 -2.59156947e-01]\n", + " [ 9.92434525e-01 8.26840073e-02 -9.07582945e-02]\n", + " [ 9.88104700e-01 9.30969911e-02 -1.22401197e-01]\n", + " [ 9.82516670e-01 1.03820879e-01 -1.54538729e-01]\n", + " [ 9.75638583e-01 1.14766619e-01 -1.86970527e-01]\n", + " [ 9.67462100e-01 1.25849237e-01 -2.19497276e-01]\n", + " [ 9.58002499e-01 1.36990278e-01 -2.51922360e-01]\n", + " [ 9.66048508e-01 2.58358427e-01 -1.09668246e-03]\n", + " [ 9.66048508e-01 2.58358427e-01 -1.09668246e-03]\n", + " [ 9.54363888e-01 1.40922907e-01 -2.63306482e-01]\n", + " [ 9.54363888e-01 1.40922907e-01 -2.63306482e-01]\n", + " [ 9.67681550e-01 2.51594336e-01 -1.71086991e-02]\n", + " [ 9.75097408e-01 2.19594382e-01 -3.10379198e-02]\n", + " [ 9.81220725e-01 1.87573427e-01 -4.49677444e-02]\n", + " [ 9.86046527e-01 1.55730282e-01 -5.88245358e-02]\n", + " [ 9.89593376e-01 1.24269533e-01 -7.25398706e-02]\n", + " [ 9.91903153e-01 9.33997584e-02 -8.60501070e-02]\n", + " [ 9.63212331e-01 2.64206676e-01 -4.91613387e-02]\n", + " [ 9.70695031e-01 2.31864611e-01 -6.31661240e-02]\n", + " [ 9.76866022e-01 1.99469383e-01 -7.71021370e-02]\n", + " [ 9.81720725e-01 1.67220155e-01 -9.08946481e-02]\n", + " [ 9.85278166e-01 1.35321443e-01 -1.04475081e-01]\n", + " [ 9.87580365e-01 1.03983813e-01 -1.17781108e-01]\n", + " [ 9.57445324e-01 2.76769906e-01 -8.18344123e-02]\n", + " [ 9.64985661e-01 2.44147167e-01 -9.58897070e-02]\n", + " [ 9.71202550e-01 2.11442430e-01 -1.09807588e-01]\n", + " [ 9.76091924e-01 1.78855381e-01 -1.23512379e-01]\n", + " [ 9.79673535e-01 1.46589503e-01 -1.36935320e-01]\n", + " [ 9.81989798e-01 1.14854678e-01 -1.50014800e-01]\n", + " [ 9.50346999e-01 2.89190460e-01 -1.14932413e-01]\n", + " [ 9.57935824e-01 2.56349226e-01 -1.29011750e-01]\n", + " [ 9.64197267e-01 2.23399736e-01 -1.42885229e-01]\n", + " [ 9.69127665e-01 1.90542675e-01 -1.56477022e-01]\n", + " [ 9.72747470e-01 1.57980565e-01 -1.69718888e-01]\n", + " [ 9.75099595e-01 1.25921579e-01 -1.82550089e-01]\n", + " [ 9.41906553e-01 3.01381606e-01 -1.48260494e-01]\n", + " [ 9.49534633e-01 2.68385848e-01 -1.62336122e-01]\n", + " [ 9.55839740e-01 2.35257206e-01 -1.76137553e-01]\n", + " [ 9.60818284e-01 2.02197694e-01 -1.89589868e-01]\n", + " [ 9.64491068e-01 1.69409451e-01 -2.02626298e-01]\n", + " [ 9.66901337e-01 1.37099140e-01 -2.15187432e-01]\n", + " [ 9.32138120e-01 3.13261571e-01 -1.81619692e-01]\n", + " [ 9.39795939e-01 2.80177511e-01 -1.95663372e-01]\n", + " [ 9.46143934e-01 2.46936930e-01 -2.09365250e-01]\n", + " [ 9.51178149e-01 2.13743099e-01 -2.22652234e-01]\n", + " [ 9.DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "54919184e-01 1.80798434e-01 -2.35459718e-01]\n", + " [ 9.57410231e-01 1.48308982e-01 -2.47729885e-01]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:fp_optics: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:fp_optics: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:cartToSphere: vec: [[ 4.04703868e-02 -2.01775003e-01 9.78595420e-01]\n", + " [ 3.49491870e-02 -2.28654177e-01 9.72880168e-01]\n", + " [ 2.92917335e-02 -2.55878462e-01 9.66265081e-01]\n", + " [ 2.35189896e-02 -2.83329326e-01 9.58734244e-01]\n", + " [ 1.76522358e-02 -3.10890945e-01 9.50281653e-01]\n", + " [ 1.17134152e-02 -3.38448628e-01 9.40911963e-01]\n", + " [ 5.72528604e-03 -3.65888258e-01 9.30641179e-01]\n", + " [-2.88657508e-04 -3.93096830e-01 9.19497036e-01]\n", + " [ 4.04703868e-02 -2.01775003e-01 9.78595420e-01]\n", + " [ 1.20038630e-02 -1.96399114e-01 9.80450557e-01]\n", + " [-1.64003290e-02 -1.90969863e-01 9.81458884e-01]\n", + " [-4.46317996e-02 -1.85513540e-01 9.81627592e-01]\n", + " [-7.25810112e-02 -1.80060226e-01 9.80974165e-01]\n", + " [-1.00139343e-01 -1.74644207e-01 9.79526168e-01]\n", + " [-1.27198823e-01 -1.69304381e-01 9.77321076e-01]\n", + " [-1.53651755e-01 -1.64084435e-01 9.74406197e-01]\n", + " [-2.88657508e-04 -3.93096830e-01 9.19497036e-01]\n", + " [-2.96927515e-02 -3.87387354e-01 9.21438754e-01]\n", + " [-5.89750341e-02 -3.81350864e-01 9.22547269e-01]\n", + " [-8.80204580e-02 -3.75016131e-01 9.22830050e-01]\n", + " [-1.16717512e-01 -3.68415702e-01 9.22305206e-01]\n", + " [-1.44958677e-01 -3.61585612e-01 9.21000992e-01]\n", + " [-1.72639752e-01 -3.54565363e-01 9.18955341e-01]\n", + " [-1.99658195e-01 -3.47398221e-01 9.16215630e-01]\n", + " [-1.53651755e-01 -1.64084435e-01 9.74406197e-01]\n", + " [-1.60688955e-01 -1.89595039e-01 9.68624169e-01]\n", + " [-1.67609789e-01 -2.15529692e-01 9.62005151e-01]\n", + " [-1.74391626e-01 -2.41765296e-01 9.54535019e-01]\n", + " [-1.81011255e-01 -2.68183074e-01 9.46209683e-01]\n", + " [-1.87444896e-01 -2.94668169e-01 9.37035261e-01]\n", + " [-1.93668499e-01 -3.21109218e-01 9.27028253e-01]\n", + " [-1.99658195e-01 -3.47398221e-01 9.16215630e-01]\n", + " [ 3.79835102e-02 -2.13425885e-01 9.76220592e-01]\n", + " [ 3.11214966e-02 -2.46616090e-01 9.68613420e-01]\n", + " [ 2.40758216e-02 -2.80206529e-01 9.59637773e-01]\n", + " [ 1.68855143e-02 -3.13982947e-01 9.49278457e-01]\n", + " [ 9.59099524e-03 -3.47734141e-01 9.37544121e-01]\n", + " [ 2.23448485e-03 -3.81250425e-01 9.24469102e-01]\n", + " [ 2.80392925e-02 -1.99530293e-01 9.79490409e-01]\n", + " [-6.82234175e-03 -1.92902225e-01 9.81194266e-01]\n", + " [-4.14805271e-02 -1.86219528e-01 9.81632137e-01]\n", + " [-7.57332350e-02 -1.79535994e-01 9.80831945e-01]\n", + " [-1.09380466e-01 -1.72914783e-01 9.78844416e-01]\n", + " [-1.42223577e-01 -1.66429505e-01 9.75742627e-01]\n", + " [-1.30958633e-02 -3.90556853e-01 9.20485656e-01]\n", + " [-4.90662344e-02 -3.83336168e-01 9.22304661e-01]\n", + " [-8.47390314e-02 -3.75652633e-01 9.22878321e-01]\n", + " [-1.19907434e-01 -3.67564614e-01 9.22235578e-01]\n", + " [-1.54373425e-01 -3.59138441e-01 9.20428393e-01]\n", + " [-1.87945960e-01 -3.50448371e-01 9.17530520e-01]\n", + " [-1.56643277e-01 -1.75165065e-01 9.71997986e-01]\n", + " [-1.65191919e-01 -2.06733244e-01 9.64351075e-01]\n", + " [-1.73543517e-01 -2.38815504e-01 9.55431736e-01]\n", + " [-1.81655594e-01 -2.71191391e-01 9.45228266e-01]\n", + " [-1.89484405e-01 -3.03649408e-01 9.33751946e-01]\n", + " [-1.96985725e-01 -3.35985928e-01 9.21037502e-01]\n", + " [ 4.03544334e-02 -2.01847927e-01 9.78585169e-01]\n", + " [ 4.03544334e-02 -2.01847927e-01 9.78585169e-01]\n", + " [-1.99546989e-01 -3.47333405e-01 9.16264430e-01]\n", + " [-1.99546989e-01 -3.47333405e-01 9.16264430e-01]\n", + " [ 2.56207026e-02 -2.11097101e-01 9.77129261e-01]\n", + " [-9.37253822e-03 -2.04419012e-01 9.78838609e-01]\n", + " [-4.41567353e-02 -1.97658982e-01 9.79275809e-01]\n", + " [-7.85295273e-02 -1.90870539e-01 9.78468983e-01]\n", + " [-1.12291023e-01 -1.84116423e-01 9.76469082e-01]\n", + " [-1.45242978e-01 -1.77469873e-01 9.73349332e-01]\n", + " [ 1.86389665e-02 -2.44258725e-01 9.69530951e-01]\n", + " [-1.66835042e-02 -2.37448638e-01 9.71256817e-01]\n", + " [-5.17805277e-02 -2.30481231e-01 9.71698091e-01]\n", + " [-8.64486129e-02 -2.23409629e-01 9.70883502e-01]\n", + " [-1.20488193e-01 -2.16295630e-01 9.68864694e-01]\n", + " [-1.53702479e-01 -2.09211311e-01 9.65715370e-01]\n", + " [ 1.14965442e-02 -2.77825028e-01 9.60562899e-01]\n", + " [-2.40897575e-02 -2.70896830e-01 9.62306911e-01]\n", + " [-5.94336007e-02 -2.63738217e-01 9.62761549e-01]\n", + " [-9.43302336e-02 -2.56402597e-01 9.61956088e-01]\n", + " [-1.28580401e-01 -2.48951547e-01 9.59942815e-01]\n", + " [-1.61988979e-01 -2.41456382e-01 9.56795896e-01]\n", + " [ 4.23310799e-03 -3.11581833e-01 9.50209894e-01]\n", + " [-3.15498960e-02 -3.04549250e-01 9.51973927e-01]\n", + " [-6.70732604e-02 -2.97214837e-01 9.52451846e-01]\n", + " [-1.02131090e-01 -2.89632999e-01 9.51673246e-01]\n", + " [-1.36524443e-01 -2.81865985e-01 9.49690814e-01]\n", + " [-1.70059806e-01 -2.73985140e-01 9.46579001e-01]\n", + " [-3.11015843e-03 -3.45318088e-01 9.38480551e-01]\n", + " [-3.90207488e-02 -3.38195284e-01 9.40266628e-01]\n", + " [-7.46549049e-02 -3.30700811e-01 9.40778199e-01]\n", + " [-1.09805959e-01 -3.22890617e-01 9.40044840e-01]\n", + " [-1.44275322e-01 -3.14828401e-01 9.38119240e-01]\n", + " [-1.77870832e-01 -3.06586369e-01 9.35075807e-01]\n", + " [-1.04903718e-02 -3.78824282e-01 9.25409161e-01]\n", + " [-4.64577761e-02 -3.71626323e-01 9.27219257e-01]\n", + " [-8.21328919e-02 -3.63988846e-01 9.27774923e-01]\n", + " [-1.17308829e-01 -3.55969592e-01 9.27105328e-01]\n", + " [-1.51787415e-01 -3.47634175e-01 9.25262698e-01]\n", + " [-1.85377408e-01 -3.39056264e-01 9.22321021e-01]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:cartToSphere: vec: [[-0.77654188 0.55155815 -0.30457563]\n", + " [-0.76368706 0.55536671 -0.32916544]\n", + " [-0.74995978 0.55880154 -0.35397905]\n", + " [-0.73538116 0.56182465 -0.37890318]\n", + " [-0.71998001 0.56440376 -0.40382815]\n", + " [-0.70379408 0.56651229 -0.42864638]\n", + " [-0.68687073 0.56812956 -0.45325203]\n", + " [-0.66926708 0.56924122 -0.47754163]\n", + " [-0.77654188 0.55155815 -0.30457563]\n", + " [-0.76333023 0.57518154 -0.29409719]\n", + " [-0.74947716 0.59826038 -0.28349339]\n", + " [-0.73504463 0.62071181 -0.27281172]\n", + " [-0.72010174 0.64245998 -0.26210428]\n", + " [-0.70472441 0.66343599 -0.25142831]\n", + " [-0.6889954 0.68357744 -0.24084688]\n", + " [-0.67300457 0.7028279 -0.23042956]\n", + " [-0.66926708 0.56924122 -0.47754163]\n", + " [-0.65566505 0.59365337 -0.46656085]\n", + " [-0.64151789 0.61745299 -0.45519953]\n", + " [-0.62689001 0.64055367 -0.44350864]\n", + " [-0.61185178 0.66287844 -0.43154324]\n", + " [-0.59647886 0.6843599 -0.41936202]\n", + " [-0.58085206 0.70493947 -0.40702731]\n", + " [-0.56505805 0.72456592 -0.39460567]\n", + " [-0.67300457 0.7028279 -0.23042956]\n", + " [-0.65951266 0.70770314 -0.25337586]\n", + " [-0.64532392 0.71204289 -0.27668026]\n", + " [-0.63046293 0.71580887 -0.30022351]\n", + " [-0.61496186 0.71896828 -0.32389277]\n", + " [-0.59886074 0.72149394 -0.34758064]\n", + " [-0.58220756 0.72336471 -0.37118441]\n", + " [-0.56505805 0.72456592 -0.39460567]\n", + " [-0.77100127 0.55334391 -0.31522619]\n", + " [-0.75465694 0.55776625 -0.34552817]\n", + " [-0.7370224 0.5615887 -0.37605333]\n", + " [-0.71814748 0.56474948 -0.40659835]\n", + " [-0.69810173 0.56719964 -0.43696515]\n", + " [-0.67697642 0.56890375 -0.46695979]\n", + " [-0.77082145 0.56193334 -0.30010868]\n", + " [-0.75419 0.5905316 -0.28717569]\n", + " [-0.73665591 0.61822872 -0.27410091]\n", + " [-0.71834344 0.64488217 -0.26097833]\n", + " [-0.69939236 0.67036502 -0.24791341]\n", + " [-0.67995796 0.69456494 -0.23502493]\n", + " [-0.6634687 0.57995148 -0.47272144]\n", + " [-0.6464236 0.60947041 -0.45900148]\n", + " [-0.62862288 0.63798244 -0.44476025]\n", + " [-0.61019366 0.66534192 -0.43009746]\n", + " [-0.5912752 0.69142466 -0.41512116]\n", + " [-0.57201867 0.71612597 -0.39994779]\n", + " [-0.66726413 0.70495227 -0.24041812]\n", + " [-0.65025733 0.71057198 -0.26879893]\n", + " [-0.6322273 0.7153488 -0.29759827]\n", + " [-0.6132301 0.71922006 -0.3266058 ]\n", + " [-0.59333942 0.72213579 -0.35562371]\n", + " [-0.57264685 0.72405973 -0.38446469]\n", + " [-0.7764554 0.55165338 -0.30462363]\n", + " [-0.7764554 0.55165338 -0.30462363]\n", + " [-0.56517166 0.72449752 -0.39456854]\n", + " [-0.56517166 0.72449752 -0.39456854]\n", + " [-0.7653457 0.56366372 -0.31069144]\n", + " [-0.748655 0.59236777 -0.29768459]\n", + " [-0.73106498 0.62015984 -0.28450969]\n", + " [-0.71270033 0.64689721 -0.27126047]\n", + " [-0.69370101 0.67245323 -0.25804178]\n", + " [-0.67422223 0.69671612 -0.24497151]\n", + " [-0.74894732 0.56818634 -0.3409431 ]\n", + " [-0.73211176 0.59715632 -0.32774486]\n", + " [-0.71439028 0.62518618 -0.3143068 ]\n", + " [-0.69590882 0.65213258 -0.30072248]\n", + " [-0.67680797 0.67786956 -0.28709549]\n", + " [-0.6572426 0.70228712 -0.27354153]\n", + " [-0.73126957 0.57209016 -0.37142652]\n", + " [-0.71432401 0.6012754 -0.35806297]\n", + " [-0.69651205 0.62949653 -0.3443909 ]\n", + " [-0.67796076 0.65660944 -0.33050454]\n", + " [-0.65881119 0.68248882 -0.31650723]\n", + " [-0.63921775 0.70702645 -0.30251324]\n", + " [-0.71236262 0.57531285 -0.40193858]\n", + " [-0.69534317 0.60466132 -0.38843605]\n", + " [-0.67748314 0.63302636 -0.3745587 ]\n", + " [-0.65891036 0.66026318 -0.36040209]\n", + " [-0.63976593 0.68624697 -0.34607031]\n", + " [-0.6202036 0.71087107 -0.33167728]\n", + " [-0.69229639 0.57780482 -0.43228151]\n", + " [-0.67524033 0.60726293 -0.41866721]\n", + " [-0.65737578 0.63572365 -0.40461405]\n", + " [-0.63883073 0.66304161 -0.39021933]\n", + " [-0.61974583 0.68909239 -0.37558858]\n", + " [-0.60027389 0.71377052 -0.3608364 ]\n", + " [-0.67116246 0.57953006 -0.46226168]\n", + " [-0.65410777 0.60904293 -0.44856408]\n", + " [-0.63628268 0.6375503 -0.43436617]\n", + " [-0.61781464 0.66490652 -0.41976706]\n", + " [-0.59884337 0.69098738 -0.40487412]\n", + " [-0.57952046 0.7156881 -0.38980325]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:fp_optics: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:cartToSphere: vec: [[-0.57416654 -0.43608374 0.6929385 ]\n", + " [-0.59610144 -0.433749 0.67566624]\n", + " [-0.61798963 -0.43101785 0.6575047 ]\n", + " [-0.63971793 -0.4278821 0.63849658]\n", + " [-0.6611794 -0.42433804 0.61869138]\n", + " [-0.68227222 -0.42038672 0.59814683]\n", + " [-0.70289947 -0.41603428 0.57692964]\n", + " [-0.72296997 -0.4112921 0.55511551]\n", + " [-0.57416654 -0.43608374 0.6929385 ]\n", + " [-0.58010255 -0.40987063 0.70390845]\n", + " [-0.58561113 -0.38338948 0.71419333]\n", + " [-0.59067985 -0.35674835 0.72375958]\n", + " [-0.59530417 -0.33005903 0.73258036]\n", + " [-0.59948783 -0.30343698 0.74063509]\n", + " [-0.60324311 -0.27700188 0.74790889]\n", + " [-0.60659105 -0.25087835 0.75439204]\n", + " [-0.72296997 -0.4112921 0.55511551]\n", + " [-0.72898631 -0.38418736 0.56655012]\n", + " [-0.73433073 -0.35682471 0.57743788]\n", + " [-0.73899143 -0.32931727 0.58774298]\n", + " [-0.74296554 -0.30177956 0.59743728]\n", + " [-0.74625887 -0.27432672 0.60650024]\n", + " [-0.74888547 -0.24707477 0.61491838]\n", + " [-0.75086715 -0.2201421 0.6226845 ]\n", + " [-0.60659105 -0.25087835 0.75439204]\n", + " [-0.62786641 -0.24688103 0.7381284 ]\n", + " [-0.6491037 -0.24275626 0.72092565]\n", + " [-0.67018483 -0.23849646 0.70283122]\n", + " [-0.69100009 -0.23409954 0.68389786]\n", + " [-0.71144745 -0.22956872 0.66418425]\n", + " [-0.73143225 -0.2249121 0.64375571]\n", + " [-0.75086715 -0.2201421 0.6226845 ]\n", + " [-0.58374951 -0.43502441 0.68555836]\n", + " [-0.6106164 -0.43189674 0.66378673]\n", + " [-0.63729986 -0.42816521 0.64072104]\n", + " [-0.66360052 -0.42382109 0.61644954]\n", + " [-0.68933088 -0.41886639 0.59107857]\n", + " [-0.71431488 -0.41331458 0.56473472]\n", + " [-0.57688113 -0.42468675 0.69774589]\n", + " [-0.58387089 -0.39236529 0.71073501]\n", + " [-0.59020522 -0.35974819 0.72266108]\n", + " [-0.59587249 -0.32703968 0.7334719 ]\n", + " [-0.60087957 -0.29445242 0.74312954]\n", + " [-0.60525274 -0.26220873 0.75160874]\n", + " [-0.72560702 -0.39953006 0.56024118]\n", + " [-0.73253086 -0.36612293 0.57389244]\n", + " [-0.73843287 -0.33244057 0.58668575]\n", + " [-0.74330407 -0.29869328 0.59856611]\n", + " [-0.74715509 -0.26509306 0.60949564]\n", + " [-0.75001503 -0.23185438 0.61945218]\n", + " [-0.61585352 -0.2492395 0.74739823]\n", + " [-0.64191939 -0.24425691 0.72682739]\n", + " [-0.66780975 -0.23907452 0.70489255]\n", + " [-0.69331917 -0.23368623 0.68168855]\n", + " [-0.7182598 -0.22809791 0.65732352]\n", + " [-0.74246038 -0.22232627 0.63192057]\n", + " [-0.5742625 -0.43598735 0.69291963]\n", + " [-0.5742625 -0.43598735 0.69291963]\n", + " [-0.75079601 -0.22025 0.62273212]\n", + " [-0.75079601 -0.22025 0.62273212]\n", + " [-0.58637658 -0.4236794 0.69040442]\n", + " [-0.59337182 -0.39123037 0.70345482]\n", + " [-0.59968415 -0.35848362 0.7154498 ]\n", + " [-0.60530165 -0.32564373 0.72633744]\n", + " [-0.61023086 -0.29292314 0.73608039]\n", + " [-0.61449769 -0.26054347 0.74465407]\n", + " [-0.61326433 -0.42044005 0.66868305]\n", + " [-0.6202688 -0.38767134 0.68189262]\n", + " [-0.6265162 -0.35460182 0.69407132]\n", + " [-0.63199408 -0.32143729 0.70516775]\n", + " [-0.63670844 -0.28838988 0.71514589]\n", + " [-0.64068448 -0.25567923 0.7239831 ]\n", + " [-0.63996404 -0.41661807 0.6456589 ]\n", + " [-0.64696779 -0.3835923 0.65900654]\n", + " [-0.65314524 -0.35026639 0.67135293]\n", + " [-0.658484 -0.3168477 0.68264658]\n", + " [-0.66299026 -0.2835483 0.69285228]\n", + " [-0.66668919 -0.25058608 0.70194882]\n", + " [-0.66627615 -0.41220539 0.62141999]\n", + " [-0.67326864 -0.37898691 0.63488444]\n", + " [-0.6793703 -0.34547237 0.64738307]\n", + " [-0.68456938 -0.31187061 0.65886378]\n", + " [-0.68887297 -0.27839379 0.66929136]\n", + " [-0.69230695 -0.24525837 0.67864528]\n", + " [-0.69201303 -0.40720473 0.59607237]\n", + " [-0.69898348 -0.37385994 0.60963173]\n", + " [-0.70500356 -0.34022616 0.62226694]\n", + " [-0.71006259 -0.30651332 0.63392484]\n", + " [-0.71416905 -0.27293364 0.64456946]\n", + " [-0.71735007 -0.23970249 0.65418009]\n", + " [-0.71699851 -0.4016302 0.56974233]\n", + " [-0.72393631 -0.36822717 0.58337378]\n", + " [-0.72986983 -0.33454489 0.59612896]\n", + " [-0.73478965 -0.30079371 0.60795339]\n", + " [-0.73870583 -0.26718572 0.61880973]\n", + " [-0.74164697 -0.23393556 0.62867632]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:fp_optics: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:fp_optics: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:cartToSphere: vec: [[ 0.46869254 0.86972642 -0.15460678]\n", + " [ 0.47459337 0.87080713 -0.12828122]\n", + " [ 0.48013298 0.87132786 -0.10129207]\n", + " [ 0.48527663 0.87124519 -0.07374551]\n", + " [ 0.48999454 0.87052405 -0.04575191]\n", + " [ 0.49426097 0.86913896 -0.01742318]\n", + " [ 0.49805396 0.86707463 0.0111282 ]\n", + " [ 0.50135523 0.86432616 0.03978971]\n", + " [ 0.46869254 0.86972642 -0.15460678]\n", + " [ 0.4450141 0.8824279 -0.15258915]\n", + " [ 0.42052067 0.89475201 -0.15027047]\n", + " [ 0.39529171 0.90660917 -0.1476627 ]\n", + " [ 0.36941367 0.91791728 -0.14478054]\n", + " [ 0.34297818 0.92860338 -0.14163945]\n", + " [ 0.31608133 0.9386044 -0.13825472]\n", + " [ 0.28882345 0.94786745 -0.1346414 ]\n", + " [ 0.50135523 0.86432616 0.03978971]\n", + " [ 0.47717715 0.87771828 0.04373312]\n", + " [ 0.45211943 0.89067967 0.04772569]\n", + " [ 0.42626326 0.90311777 0.05174871]\n", + " [ 0.3996924 0.91495032 0.05578444]\n", + " [ 0.37249538 0.92610435 0.05981578]\n", + " [ 0.34476774 0.93651559 0.0638259 ]\n", + " [ 0.31661299 0.94612876 0.06779814]\n", + " [ 0.28882345 0.94786745 -0.1346414 ]\n", + " [ 0.29338518 0.94997842 -0.10708008]\n", + " [ 0.29779488 0.95136522 -0.07888242]\n", + " [ 0.30202239 0.95198036 -0.05015834]\n", + " [ 0.30604073 0.95178641 -0.02101652]\n", + " [ 0.30982571 0.95075597 0.00843308]\n", + " [ 0.31335594 0.94887206 0.03807707]\n", + " [ 0.31661299 0.94612876 0.06779814]\n", + " [ 0.47122756 0.87030769 -0.14321002]\n", + " [ 0.47822083 0.87126226 -0.11048487]\n", + " [ 0.48463655 0.87133159 -0.07686784]\n", + " [ 0.49041786 0.87044754 -0.04256056]\n", + " [ 0.4955174 0.86856327 -0.00776898]\n", + " [ 0.49989622 0.86565495 0.02729982]\n", + " [ 0.45849409 0.87530967 -0.15367546]\n", + " [ 0.42891547 0.89063527 -0.15099782]\n", + " [ 0.39819066 0.90530427 -0.1478796 ]\n", + " [ 0.36647605 0.91916227 -0.14434688]\n", + " [ 0.33394027 0.93207504 -0.140428 ]\n", + " [ 0.30076198 0.94393068 -0.13615102]\n", + " [ 0.49091631 0.87022235 0.04140329]\n", + " [ 0.46068183 0.88635843 0.04627082]\n", + " [ 0.42920655 0.90175437 0.05119367]\n", + " [ 0.39664357 0.9162545 0.05613879]\n", + " [ 0.36315614 0.92972442 0.06107465]\n", + " [ 0.32892347 0.9420495 0.06597035]\n", + " [ 0.29092308 0.94884292 -0.12272274]\n", + " [ 0.29641659 0.95094933 -0.0885018 ]\n", + " [ 0.30165125 0.95191979 -0.05343446]\n", + " [ 0.30657606 0.95168118 -0.01772123]\n", + " [ 0.31114651 0.95018314 0.01843517]\n", + " [ 0.3153244 0.94739898 0.05482434]\n", + " [ 0.46863378 0.86977499 -0.15451162]\n", + " [ 0.46863378 0.86977499 -0.15451162]\n", + " [ 0.31669921 0.94610814 0.06768301]\n", + " [ 0.31669921 0.94610814 0.06768301]\n", + " [ 0.46105973 0.87588191 -0.14231937]\n", + " [ 0.4313935 0.89131321 -0.13950054]\n", + " [ 0.40057113 0.90607675 -0.13626329]\n", + " [ 0.36875008 0.92001695 -0.13263553]\n", + " [ 0.33609925 0.93299918 -0.12864614]\n", + " [ 0.30279756 0.94491132 -0.12432312]\n", + " [ 0.46798316 0.87693499 -0.1094385 ]\n", + " [ 0.43810046 0.8926283 -0.1062201 ]\n", + " [ 0.40703753 0.90762515 -0.1026501 ]\n", + " [ 0.3749531 0.92176828 -0.09875932]\n", + " [ 0.34201594 0.93492263 -0.09457678]\n", + " [ 0.30840527 0.94697563 -0.09012964]\n", + " [ 0.474345 0.87708117 -0.07566658]\n", + " [ 0.44429564 0.89297789 -0.07205468]\n", + " [ 0.41304663 0.9081556 -0.06816067]\n", + " [ 0.38075607 0.92245691 -0.06401611]\n", + " [ 0.34759152 0.93574681 -0.05964935]\n", + " [ 0.31373236 0.94791216 -0.05508672]\n", + " [ 0.48008943 0.87625117 -0.04120708]\n", + " [ 0.4499249 0.89229086 -0.03721018]\n", + " [ 0.41854489 0.90759636 -0.03300051]\n", + " [ 0.38610573 0.92201076 -0.02860964]\n", + " [ 0.35277341 0.93539926 -0.02406567]\n", + " [ 0.31872735 0.94764799 -0.01939502]\n", + " [ 0.48516935 0.87439775 -0.00626652]\n", + " [ 0.45494107 0.89051953 -0.00189332]\n", + " [ 0.42348451 0.90589954 0.00262475]\n", + " [ 0.39095418 0.92038154 0.00725586]\n", + " [ 0.35751452 0.93383085 0.01197111]\n", + " [ 0.32334497 0.94613303 0.01674275]\n", + " [ 0.48954566 0.87149703 0.0289477 ]\n", + " [ 0.45930405 0.88764008 0.03368808]\n", + " [ 0.42782436 0.90304127 0.03850695]\n", + " [ 0.3952599 0.91754483 0.04337165]\n", + " [ 0.36177408 0.93101628 0.04825146]\n", + " [ 0.32754621 0.94334094 0.05311638]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:fp_optics: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:cartToSphere: vec: [[-0.41641882 0.05893528 0.90726071]\n", + " [-0.40018805 0.03769 0.91565768]\n", + " [-0.38331122 0.01599331 0.92348077]\n", + " [-0.36583809 -0.00607003 0.93065872]\n", + " [-0.34782285 -0.02841446 0.9371296 ]\n", + " [-0.32932499 -0.05095274 0.94284085]\n", + " [-0.3104095 -0.07359587 0.94774975]\n", + " [-0.29114663 -0.0962537 0.95182397]\n", + " [-0.41641882 0.05893528 0.90726071]\n", + " [-0.43668821 0.03998453 0.8987239 ]\n", + " [-0.45647025 0.02098601 0.88949115]\n", + " [-0.47569121 0.00201233 0.87961004]\n", + " [-0.49428151 -0.01686533 0.86913828]\n", + " [-0.51217532 -0.03557754 0.85814374]\n", + " [-0.52930963 -0.05405678 0.8467049 ]\n", + " [-0.54562303 -0.07223714 0.83491155]\n", + " [-0.29114663 -0.0962537 0.95182397]\n", + " [-0.31219299 -0.1157368 0.94294248]\n", + " [-0.33289078 -0.13505549 0.93324367]\n", + " [-0.35316236 -0.15413512 0.92277772]\n", + " [-0.37293543 -0.17290402 0.91160483]\n", + " [-0.39214344 -0.19129396 0.8997945 ]\n", + " [-0.41072541 -0.20924018 0.88742503]\n", + " [-0.42862506 -0.22668058 0.8745836 ]\n", + " [-0.54562303 -0.07223714 0.83491155]\n", + " [-0.53102892 -0.09387673 0.84213743]\n", + " [-0.51563359 -0.11580585 0.848947 ]\n", + " [-0.49949165 -0.13793485 0.85526725]\n", + " [-0.48265917 -0.16017501 0.86103664]\n", + " [-0.46519494 -0.182438 0.86620439]\n", + " [-0.44716137 -0.20463571 0.87073012]\n", + " [-0.42862506 -0.22668058 0.8745836 ]\n", + " [-0.40949496 0.04966831 0.91095935]\n", + " [-0.38916264 0.02331517 0.92087396]\n", + " [-0.36790881 -0.00363167 0.92985478]\n", + " [-0.34583132 -0.03101512 0.93778396]\n", + " [-0.32303968 -0.05867455 0.9445648 ]\n", + " [-0.29965579 -0.0864456 0.95012292]\n", + " [-0.42525732 0.05061121 0.90365631]\n", + " [-0.44978208 0.02734325 0.89271968]\n", + " [-0.47350115 0.00407596 0.88078377]\n", + " [-0.49628474 -0.01905897 0.86795058]\n", + " [-0.51801152 -0.04193377 0.85434515]\n", + " [-0.53856623 -0.06442481 0.84011658]\n", + " [-0.30042697 -0.10468633 0.94804241]\n", + " [-0.32599686 -0.1284639 0.93660187]\n", + " [-0.35096535 -0.1519202 0.92398245]\n", + " [-0.3751971 -0.17492199 0.91029085]\n", + " [-0.39856957 -0.19734372 0.89565493]\n", + " [-0.42097251 -0.21906728 0.88022251]\n", + " [-0.53930716 -0.08156916 0.83814931]\n", + " [-0.52087371 -0.10829702 0.84673628]\n", + " [-0.50129104 -0.13537065 0.85462394]\n", + " [-0.48066169 -0.16262641 0.86169425]\n", + " [-0.45909401 -0.18990162 0.86785371]\n", + " [-0.43670462 -0.2170343 0.87303218]\n", + " [-0.41643453 0.05879885 0.90726235]\n", + " [-0.41643453 0.05879885 0.90726235]\n", + " [-0.42862924 -0.22654684 0.8746162 ]\n", + " [-0.42862924 -0.22654684 0.8746162 ]\n", + " [-0.41835325 0.04145006 0.90733811]\n", + " [-0.44298526 0.01810844 0.896346 ]\n", + " [-0.46682115 -0.0052127 0.88433638]\n", + " [-0.48973122 -0.02838121 0.87141141]\n", + " [-0.51159478 -0.05126903 0.85769591]\n", + " [-0.53229779 -0.07375254 0.84333838]\n", + " [-0.39811062 0.01502038 0.91721444]\n", + " [-0.42301678 -0.00850097 0.90608197]\n", + " [-0.4471555 -0.03194575 0.89388558]\n", + " [-0.47039674 -0.0551806 0.88072811]\n", + " [-0.49262101 -0.07807692 0.86673441]\n", + " [-0.5137171 -0.10051133 0.85205176]\n", + " [-0.3769301 -0.01198763 0.92616413]\n", + " [-0.40206623 -0.03564485 0.91491649]\n", + " [-0.42646663 -0.05916913 0.90256592]\n", + " [-0.4500003 -0.08242629 0.8892163 ]\n", + " [-0.47254799 -0.10528768 0.87499309]\n", + " [-0.49400029 -0.12763056 0.86004311]\n", + " [-0.35490907 -0.03941641 0.93406954]\n", + " [-0.38023 -0.06316427 0.92273258]\n", + " [-0.40485061 -0.08672257 0.91026105]\n", + " [-0.42863861 -0.10995682 0.89675997]\n", + " [-0.45147421 -0.13273878 0.88235563]\n", + " [-0.47324869 -0.15494685 0.86719499]\n", + " [-0.33215656 -0.06710491 0.94083418]\n", + " [-0.35761575 -0.0908971 0.92943461]\n", + " [-0.38241404 -0.11444324 0.91687635]\n", + " [-0.40641773 -0.13760904 0.9032654 ]\n", + " [-0.429506 -0.16026716 0.88872888]\n", + " [-0.45156992 -0.18229741 0.87341414]\n", + " [-0.30879403 -0.09488842 0.94638387]\n", + " [-0.33434363 -0.11867808 0.93494911]\n", + " [-0.35927567 -0.14216588 0.92233934]\n", + " [-0.38345516 -0.16521825 0.90866114]\n", + " [-0.40676005 -0.18770909 0.89404226]\n", + " [-0.42908051 -0.20951978 0.8786304 ]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:fp_optics: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:cartToSphere: vec: [[-0.20124206 -0.75214242 0.62752164]\n", + " [-0.21125158 -0.76694685 0.60594166]\n", + " [-0.22128869 -0.78142621 0.58344185]\n", + " [-0.23130348 -0.79548807 0.56008699]\n", + " [-0.241249 -0.80904911 0.53594633]\n", + " [-0.25108041 -0.822034 0.51109562]\n", + " [-0.2607544 -0.83437474 0.48561913]\n", + " [-0.27022915 -0.84601092 0.4596104 ]\n", + " [-0.20124206 -0.75214242 0.62752164]\n", + " [-0.22762751 -0.74085451 0.63191796]\n", + " [-0.25377221 -0.72903498 0.63569463]\n", + " [-0.27957772 -0.71674065 0.63884204]\n", + " [-0.30494919 -0.70403718 0.6413561 ]\n", + " [-0.32979562 -0.69099885 0.64323824]\n", + " [-0.35403029 -0.67770774 0.64449575]\n", + " [-0.37757178 -0.66425168 0.64514282]\n", + " [-0.27022915 -0.84601092 0.4596104 ]\n", + " [-0.29746628 -0.83424445 0.46427364]\n", + " [-0.32434719 -0.82176899 0.46850253]\n", + " [-0.35076947 -0.80864471 0.47228646]\n", + " [-0.37663806 -0.79493945 0.47562069]\n", + " [-0.40186478 -0.78072831 0.47850601]\n", + " [-0.42636653 -0.76609425 0.48094821]\n", + " [-0.45006293 -0.75112923 0.48295779]\n", + " [-0.37757178 -0.66425168 0.64514282]\n", + " [-0.38872329 -0.67754965 0.62435621]\n", + " [-0.39969339 -0.6906876 0.60265731]\n", + " [-0.41042856 -0.70357747 0.58010959]\n", + " [-0.42087869 -0.71613686 0.55678463]\n", + " [-0.43099672 -0.72829114 0.53276059]\n", + " [-0.44073849 -0.73997432 0.50812163]\n", + " [-0.45006293 -0.75112923 0.48295779]\n", + " [-0.2056904 -0.75859306 0.61824593]\n", + " [-0.21798401 -0.77653058 0.59117107]\n", + " [-0.23026893 -0.79388701 0.56277849]\n", + " [-0.24245754 -0.81050523 0.53319378]\n", + " [-0.25446723 -0.82624649 0.50255663]\n", + " [-0.26621883 -0.8409887 0.47102605]\n", + " [-0.21280385 -0.74734039 0.62944171]\n", + " [-0.24499347 -0.73314116 0.63441489]\n", + " [-0.27672315 -0.71819873 0.63844724]\n", + " [-0.3078168 -0.70263033 0.64152898]\n", + " [-0.33810694 -0.6865726 0.64366277]\n", + " [-0.36743598 -0.67017923 0.64486479]\n", + " [-0.28210959 -0.84093286 0.46178578]\n", + " [-0.31526514 -0.82602803 0.46721044]\n", + " [-0.34778317 -0.81011725 0.47197131]\n", + " [-0.37948557 -0.79332226 0.47605724]\n", + " [-0.4102098 -0.7757814 0.47946964]\n", + " [-0.43980407 -0.75765109 0.48222111]\n", + " [-0.38237323 -0.67011024 0.63619414]\n", + " [-0.39592512 -0.6863132 0.6100963 ]\n", + " [-0.4091511 -0.70218769 0.58269016]\n", + " [-0.42195749 -0.7175795 0.55410426]\n", + " [-0.43425766 -0.73235134 0.52448242]\n", + " [-0.44597157 -0.74638535 0.49398204]\n", + " [-0.20136671 -0.75215585 0.62746555]\n", + " [-0.20136671 -0.75215585 0.62746555]\n", + " [-0.44995223 -0.75114367 0.48303848]\n", + " [-0.44995223 -0.75114367 0.48303848]\n", + " [-0.21717162 -0.75375713 0.62023115]\n", + " [-0.24947791 -0.73948454 0.62523866]\n", + " [-0.28131173 -0.72444618 0.62931824]\n", + " [-0.31249667 -0.70875937 0.63246026]\n", + " [-0.3428651 -0.69256124 0.63466719]\n", + " [-0.3722589 -0.676007 0.63595427]\n", + " [-0.22957587 -0.77164298 0.5931796 ]\n", + " [-0.26217313 -0.75718369 0.59827929]\n", + " [-0.2942633 -0.74189944 0.60249011]\n", + " [-0.32566914 -0.7259077 0.60580329]\n", + " [-0.35622312 -0.70934575 0.60822175]\n", + " [-0.38576682 -0.6923709 0.60975938]\n", + " [-0.24195026 -0.78895709 0.56480686]\n", + " [-0.27477954 -0.77434209 0.5699917 ]\n", + " [-0.30706827 -0.75885001 0.57433069]\n", + " [-0.33863849 -0.74259862 0.57781593]\n", + " [-0.36932345 -0.72572483 0.58045125]\n", + " [-0.39896577 -0.70838595 0.58225051]\n", + " [-0.25420669 -0.80554248 0.53523852]\n", + " [-0.28720761 -0.79080285 0.54050221]\n", + " [-0.319636 -0.77514053 0.54496788]\n", + " [-0.35131332 -0.75867418 0.54862778]\n", + " [-0.38207406 -0.74154057 0.55148617]\n", + " [-0.41176268 -0.72389637 0.55355717]\n", + " [-0.26626176 -0.82126074 0.50461419]\n", + " [-0.29937194 -0.80642835 0.50995075]\n", + " [-0.33187976 -0.79063374 0.51454262]\n", + " [-0.36360652 -0.77399693 0.51838118]\n", + " [-0.39438812 -0.75665509 0.52147012]\n", + " [-0.42407099 -0.73876441 0.52382339]\n", + " [-0.2780355 -0.83599015 0.47309273]\n", + " [-0.31119069 -0.82109818 0.4784957 ]\n", + " [-0.34371687 -0.80521056 0.48321287]\n", + " [-0.37543565 -0.78844863 0.48723386]\n", + " [-0.40618418 -0.77095041 0.49056078]\n", + " [-0.43581036 -0.75287215 0.4932067 ]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:fp_optics: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:cartToSphere: vec: [[-0.00270326 -0.07751908 0.9969872 ]\n", + " [-0.00305035 -0.04954857 0.99876706]\n", + " [-0.00340271 -0.02098654 0.99977397]\n", + " [-0.00375871 0.00805527 0.99996049]\n", + " [-0.00411681 0.03746495 0.99928946]\n", + " [-0.00447549 0.06712872 0.99773429]\n", + " [-0.00483326 0.09693016 0.99527945]\n", + " [-0.00518864 0.12675064 0.99192104]\n", + " [-0.00270326 -0.07751908 0.9969872 ]\n", + " [ 0.02632058 -0.07706537 0.99667856]\n", + " [ 0.05522774 -0.07645102 0.99554264]\n", + " [ 0.08390572 -0.07567647 0.99359595]\n", + " [ 0.11224291 -0.07474113 0.99086593]\n", + " [ 0.14012856 -0.07364296 0.98739086]\n", + " [ 0.16745242 -0.07237802 0.98321977]\n", + " [ 0.19410435 -0.07094042 0.97841247]\n", + " [-0.00518864 0.12675064 0.99192104]\n", + " [ 0.02482396 0.12706525 0.99158368]\n", + " [ 0.05471673 0.12726685 0.99035813]\n", + " [ 0.08437214 0.12735627 0.98826197]\n", + " [ 0.11367623 0.12733582 0.98532396]\n", + " [ 0.14251903 0.12720927 0.98158348]\n", + " [ 0.1707939 0.12698178 0.9770901 ]\n", + " [ 0.19839581 0.12665992 0.97190348]\n", + " [ 0.19410435 -0.07094042 0.97841247]\n", + " [ 0.1955032 -0.04392041 0.97971909]\n", + " [ 0.19663927 -0.01630449 0.98034033]\n", + " [ 0.19751359 0.01179046 0.98022924]\n", + " [ 0.19812656 0.04024886 0.97934973]\n", + " [ 0.19847805 0.06895598 0.9776766 ]\n", + " [ 0.19856778 0.0977976 0.9751956 ]\n", + " [ 0.19839581 0.12665992 0.97190348]\n", + " [-0.00275413 -0.0654025 0.99785516]\n", + " [-0.0031823 -0.03070985 0.99952328]\n", + " [-0.00361694 0.00476016 0.99998213]\n", + " [-0.00405519 0.04080171 0.99915903]\n", + " [-0.00449426 0.07720522 0.99700509]\n", + " [-0.0049314 0.11375538 0.99349655]\n", + " [ 0.00995758 -0.07724657 0.99696229]\n", + " [ 0.04546604 -0.07658251 0.99602608]\n", + " [ 0.08068734 -0.07567788 0.99386237]\n", + " [ 0.11541563 -0.07453206 0.99051714]\n", + " [ 0.149447 -0.0731412 0.98606083]\n", + " [ 0.18257852 -0.07149725 0.98058821]\n", + " [ 0.00790526 0.12679984 0.99189682]\n", + " [ 0.04462302 0.12710959 0.99088442]\n", + " [ 0.08104367 0.12725044 0.98855412]\n", + " [ 0.11695587 0.12722606 0.98495424]\n", + " [ 0.1521571 0.12704335 0.98015723]\n", + " [ 0.18645179 0.12671239 0.97425854]\n", + " [ 0.19465639 -0.05924522 0.97908064]\n", + " [ 0.19619296 -0.02571274 0.98022813]\n", + " [ 0.19733608 0.00859853 0.98029819]\n", + " [ 0.19808677 0.04347529 0.97921986]\n", + " [ 0.19844482 0.0787063 0.97694676]\n", + " [ 0.19840984 0.11408142 0.97345722]\n", + " [-0.00260511 -0.07742329 0.99699491]\n", + " [-0.00260511 -0.07742329 0.99699491]\n", + " [ 0.19830373 0.12656256 0.97193495]\n", + " [ 0.19830373 0.12656256 0.97193495]\n", + " [ 0.00985762 -0.06522713 0.99782175]\n", + " [ 0.04550497 -0.06458384 0.99687423]\n", + " [ 0.0808646 -0.06372523 0.99468589]\n", + " [ 0.1157304 -0.06265105 0.99130284]\n", + " [ 0.14989865 -0.06135789 0.98679562]\n", + " [ 0.18316691 -0.059838 0.98125904]\n", + " [ 0.00955277 -0.03053847 0.99948794]\n", + " [ 0.04554917 -0.02995433 0.9985129 ]\n", + " [ 0.0812557 -0.02922598 0.9962647 ]\n", + " [ 0.11646525 -0.02835393 0.99278996]\n", + " [ 0.15097468 -0.02733578 0.9881596 ]\n", + " [ 0.18458324 -0.02616471 0.98246854]\n", + " [ 0.00921802 0.00492723 0.99994537]\n", + " [ 0.04549695 0.00545106 0.99894961]\n", + " [ 0.08148339 0.00604799 0.99665635]\n", + " [ 0.11696903 0.00671737 0.99311284]\n", + " [ 0.1517511 0.00746129 0.98839058]\n", + " [ 0.18563066 0.00828609 0.98258465]\n", + " [ 0.0088556 0.04096407 0.99912138]\n", + " [ 0.04534889 0.04142585 0.99811191]\n", + " [ 0.08154723 0.04188906 0.99578881]\n", + " [ 0.11724101 0.04235363 0.99219994]\n", + " [ 0.15222767 0.04282225 0.98741733]\n", + " [ 0.18630987 0.04330156 0.98153635]\n", + " [ 0.00846751 0.07736248 0.99696707]\n", + " [ 0.04510498 0.07776044 0.99595123]\n", + " [ 0.08144577 0.07808748 0.99361408]\n", + " [ 0.11727918 0.07834485 0.99000388]\n", + " [ 0.15240273 0.07853668 0.98519308]\n", + " [ 0.18662022 0.07867069 0.97927719]\n", + " [ 0.0080558 0.11390719 0.99345873]\n", + " [ 0.04476548 0.11424005 0.99244409]\n", + " [ 0.08117792 0.1144295 0.9901091 ]\n", + " [ 0.11708183 0.11447852 0.98650216]\n", + " [ 0.15227471 0.11439324 0.98169578]\n", + " [ 0.18656094 0.1141831 0.97578545]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:fp_optics: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:cartToSphere: vec: [[ 0.61035136 0.25783971 -0.74899259]\n", + " [ 0.63143879 0.25440704 -0.73250401]\n", + " [ 0.65248255 0.25086321 -0.71507634]\n", + " [ 0.67336523 0.247197 -0.69675887]\n", + " [ 0.69397772 0.24340288 -0.67760605]\n", + " [ 0.71421873 0.23948082 -0.65767815]\n", + " [ 0.73399432 0.23543584 -0.63704184]\n", + " [ 0.75321802 0.23127755 -0.6157705 ]\n", + " [ 0.61035136 0.25783971 -0.74899259]\n", + " [ 0.6063095 0.28374662 -0.74288401]\n", + " [ 0.60184866 0.30999743 -0.73598899]\n", + " [ 0.59694866 0.33646509 -0.72831555]\n", + " [ 0.59159802 0.363028 -0.7198767 ]\n", + " [ 0.5857938 0.38956919 -0.71069084]\n", + " [ 0.57954142 0.41597575 -0.70078236]\n", + " [ 0.5728543 0.44213861 -0.69018215]\n", + " [ 0.75321802 0.23127755 -0.6157705 ]\n", + " [ 0.75057881 0.25803576 -0.60831652]\n", + " [ 0.7472849 0.28513614 -0.60021885]\n", + " [ 0.74331548 0.3124584 -0.59148275]\n", + " [ 0.73865742 0.33988551 -0.58211946]\n", + " [ 0.73330569 0.36730188 -0.57214692]\n", + " [ 0.72726387 0.39459274 -0.56159044]\n", + " [ 0.72054453 0.42164459 -0.55048289]\n", + " [ 0.5728543 0.44213861 -0.69018215]\n", + " [ 0.5946365 0.4403982 -0.67264913]\n", + " [ 0.6163686 0.4382728 -0.65422221]\n", + " [ 0.63793825 0.43575111 -0.63494548]\n", + " [ 0.65923924 0.43282652 -0.61486976]\n", + " [ 0.68017046 0.42949736 -0.59405401]\n", + " [ 0.70063573 0.42576711 -0.5725661 ]\n", + " [ 0.72054453 0.42164459 -0.55048289]\n", + " [ 0.61953028 0.25644403 -0.74190208]\n", + " [ 0.64536199 0.25216493 -0.72105531]\n", + " [ 0.67101045 0.24770687 -0.6988464 ]\n", + " [ 0.69627141 0.24305731 -0.67537343]\n", + " [ 0.72095829 0.23821614 -0.65074743]\n", + " [ 0.74490129 0.23319453 -0.6250939 ]\n", + " [ 0.60871137 0.2690734 -0.7463712 ]\n", + " [ 0.6034798 0.30107372 -0.73835408]\n", + " [ 0.59759771 0.33346369 -0.72916318]\n", + " [ 0.5910403 0.36601725 -0.71882038]\n", + " [ 0.58380219 0.39851898 -0.70735961]\n", + " [ 0.57589669 0.43076261 -0.69482845]\n", + " [ 0.75208121 0.2429087 -0.61267383]\n", + " [ 0.74840865 0.27594924 -0.60310572]\n", + " [ 0.74373134 0.30938372 -0.59257523]\n", + " [ 0.73802188 0.34299544 -0.58110053]\n", + " [ 0.7312711 0.37657155 -0.56871474]\n", + " [ 0.7234893 0.40990121 -0.55546757]\n", + " [ 0.58237374 0.44133693 -0.68268774]\n", + " [ 0.60905107 0.43894576 -0.66059323]\n", + " [ 0.6355407 0.43596476 -0.63719915]\n", + " [ 0.66164466 0.4323798 -0.61259615]\n", + " [ 0.68717678 0.42818784 -0.58689287]\n", + " [ 0.71196229 0.42339752 -0.56021803]\n", + " [ 0.61041027 0.257916 -0.74891831]\n", + " [ 0.61041027 0.257916 -0.74891831]\n", + " [ 0.72050161 0.42156737 -0.55059821]\n", + " [ 0.72050161 0.42156737 -0.55059821]\n", + " [ 0.61787655 0.26765195 -0.73931793]\n", + " [ 0.61275372 0.29979244 -0.73120269]\n", + " [ 0.60695205 0.3323189 -0.72192338]\n", + " [ 0.60044705 0.36500601 -0.7115012 ]\n", + " [ 0.59323366 0.39763876 -0.69996946]\n", + " [ 0.58532551 0.43001066 -0.68737536]\n", + " [ 0.64383159 0.26349571 -0.71836683]\n", + " [ 0.63900672 0.29597796 -0.70997708]\n", + " [ 0.63342743 0.32883906 -0.70045311]\n", + " [ 0.62706989 0.36185603 -0.68981415]\n", + " [ 0.61992958 0.39481468 -0.67809194]\n", + " [ 0.61202064 0.42750767 -0.66533294]\n", + " [ 0.66959699 0.2591308 -0.69605395]\n", + " [ 0.66505682 0.29187376 -0.687393 ]\n", + " [ 0.65969364 0.32499323 -0.67763095]\n", + " [ 0.65348365 0.35826841 -0.66678547]\n", + " [ 0.64642215 0.3914856 -0.65488734]\n", + " [ 0.63852317 0.42443632 -0.64198285]\n", + " [ 0.69496901 0.25454519 -0.67247664]\n", + " [ 0.69070178 0.28746903 -0.66354548]\n", + " [ 0.68554977 0.32077114 -0.65354984]\n", + " [ 0.67948854 0.3542325 -0.64250655]\n", + " [ 0.67251248 0.38763972 -0.63044621]\n", + " [ 0.66463491 0.4207831 -0.61741559]\n", + " [ 0.71976122 0.24973927 -0.64774538]\n", + " [ 0.71575538 0.28276529 -0.63854367]\n", + " [ 0.71080953 0.31617457 -0.62831795]\n", + " [ 0.70489809 0.34974943 -0.6170851 ]\n", + " [ 0.69801403 0.38327666 -0.60487636]\n", + " [ 0.69016954 0.41654572 -0.59173952]\n", + " [ 0.74380357 0.24472469 -0.62198559]\n", + " [ 0.74004653 0.27777508 -0.61251297]\n", + " [ 0.73530054 0.31121624 -0.6020611 ]\n", + " [ 0.72953867 0.34483131 -0.59064769]\n", + " [ 0.7227523 0.37840733 -0.57830528]\n", + " [ 0.71495224 0.41173344 -0.56508307]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:cartToSphere: vec: [[ 0.57333018 0.12633295 -0.80952609]\n", + " [ 0.55737135 0.14671055 -0.81719838]\n", + " [ 0.54056936 0.16730118 -0.82449687]\n", + " [ 0.52298381 0.18801959 -0.83134624]\n", + " [ 0.50467604 0.20878174 -0.83768268]\n", + " [ 0.4857103 0.22950433 -0.84345318]\n", + " [ 0.46615463 0.25010474 -0.84861504]\n", + " [ 0.44608139 0.27050133 -0.85313564]\n", + " [ 0.57333018 0.12633295 -0.80952609]\n", + " [ 0.55930042 0.10704373 -0.82202475]\n", + " [ 0.54444804 0.08736523 -0.83423237]\n", + " [ 0.52882495 0.06736743 -0.84605307]\n", + " [ 0.51248461 0.04712191 -0.8574025 ]\n", + " [ 0.49548319 0.02670232 -0.868207 ]\n", + " [ 0.47788056 0.0061845 -0.87840305]\n", + " [ 0.45974091 -0.0143538 -0.88793708]\n", + " [ 0.44608139 0.27050133 -0.85313564]\n", + " [ 0.43040134 0.25188445 -0.86678077]\n", + " [ 0.41405142 0.23268458 -0.88001097]\n", + " [ 0.39707797 0.21296721 -0.89273403]\n", + " [ 0.37953176 0.19280054 -0.90486662]\n", + " [ 0.36146898 0.17225649 -0.91633394]\n", + " [ 0.34295157 0.15141099 -0.92707008]\n", + " [ 0.32404711 0.13034364 -0.93701868]\n", + " [ 0.45974091 -0.0143538 -0.88793708]\n", + " [ 0.44218946 0.00556692 -0.89690439]\n", + " [ 0.42392858 0.02587367 -0.90532597]\n", + " [ 0.40501202 0.04648563 -0.91312888]\n", + " [ 0.3854983 0.06732159 -0.92024935]\n", + " [ 0.36545173 0.08829912 -0.92663277]\n", + " [ 0.34494264 0.10933456 -0.93223416]\n", + " [ 0.32404711 0.13034364 -0.93701868]\n", + " [ 0.56643255 0.13512076 -0.81295544]\n", + " [ 0.54629767 0.16024987 -0.8221185 ]\n", + " [ 0.52495548 0.18561421 -0.83064379]\n", + " [ 0.50251813 0.2110586 -0.83840909]\n", + " [ 0.47910398 0.23642967 -0.84531674]\n", + " [ 0.45484008 0.26157571 -0.85129234]\n", + " [ 0.56726407 0.11804433 -0.81503191]\n", + " [ 0.54950824 0.09413289 -0.83016847]\n", + " [ 0.53056835 0.06970598 -0.84477115]\n", + " [ 0.51054211 0.04489466 -0.85867993]\n", + " [ 0.48953303 0.01983456 -0.87175914]\n", + " [ 0.46765312 -0.00533392 -0.88389599]\n", + " [ 0.43939975 0.26239053 -0.85911528]\n", + " [ 0.41972683 0.23917274 -0.87557169]\n", + " [ 0.39909324 0.21514426 -0.89131225]\n", + " [ 0.37759054 0.19042944 -0.9061799 ]\n", + " [ 0.35532217 0.16516072 -0.92003701]\n", + " [ 0.33240456 0.13947945 -0.93276615]\n", + " [ 0.45224206 -0.00565051 -0.89187734]\n", + " [ 0.43024797 0.0190348 -0.90251003]\n", + " [ 0.40724112 0.0442195 -0.91224958]\n", + " [ 0.38332721 0.06975429 -0.9209748 ]\n", + " [ 0.35862462 0.09548741 -0.92858523]\n", + " [ 0.33326526 0.12126457 -0.93500223]\n", + " [ 0.57323058 0.12633695 -0.80959599]\n", + " [ 0.57323058 0.12633695 -0.80959599]\n", + " [ 0.32418436 0.13034427 -0.93697112]\n", + " [ 0.32418436 0.13034427 -0.93697112]\n", + " [ 0.56041086 0.12683303 -0.81844551]\n", + " [ 0.54250817 0.10292243 -0.83372169]\n", + " [ 0.52343424 0.07847683 -0.84844445]\n", + " [ 0.50328548 0.05362713 -0.86245456]\n", + " [ 0.4821646 0.02850907 -0.87561666]\n", + " [ 0.46018338 0.00326349 -0.88781789]\n", + " [ 0.5401279 0.15198623 -0.82774515]\n", + " [ 0.52183229 0.12810759 -0.84337388]\n", + " [ 0.50240163 0.1036393 -0.85840055]\n", + " [ 0.48192917 0.07871156 -0.87266761]\n", + " [ 0.46051602 0.05346034 -0.88604006]\n", + " [ 0.43827379 0.02802752 -0.89840445]\n", + " [ 0.51864863 0.17739014 -0.83638289]\n", + " [ 0.49999112 0.15358823 -0.85230249]\n", + " [ 0.48023514 0.12914319 -0.86758069]\n", + " [ 0.45947185 0.1041842 -0.88206081]\n", + " [ 0.43780173 0.07884704 -0.8956075 ]\n", + " [ 0.415337 0.05327427 -0.90810629]\n", + " [ 0.49608392 0.20288973 -0.84423723]\n", + " [ 0.47709242 0.17920992 -0.86038749]\n", + " [ 0.45704041 0.15483489 -0.87586541]\n", + " [ 0.43601814 0.12989249 -0.89051453]\n", + " [ 0.41412634 0.10451792 -0.90419875]\n", + " [ 0.39147834 0.07885394 -0.91680247]\n", + " [ 0.4725514 0.22833145 -0.85121086]\n", + " [ 0.45325231 0.20481864 -0.86753194]\n", + " [ 0.43293306 0.1805602 -0.8831574 ]\n", + " [ 0.41168393 0.15568248 -0.89793057]\n", + " [ 0.38960661 0.13031969 -0.91171457]\n", + " [ 0.36681573 0.10461431 -0.92439281]\n", + " [ 0.44817795 0.25356312 -0.85722941]\n", + " [ 0.42859774 0.23026091 -0.8736612 ]\n", + " [ 0.40804074 0.20616462 -0.88938119]\n", + " [ 0.3865981 0.18139908 -0.90423243]\n", + " [ 0.36437275 0.15609722 -0.91807742]\n", + " [ 0.34148068 0.13040078 -0.93079889]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:fp_optics: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:fp_optics: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:cartToSphere: vec: [[-0.2369784 0.5306848 -0.81376586]\n", + " [-0.23434776 0.50831099 -0.82867428]\n", + " [-0.23133692 0.48512575 -0.84328894]\n", + " [-0.22796347 0.46120398 -0.85751009]\n", + " [-0.22424461 0.43662512 -0.87124787]\n", + " [-0.22019724 0.41147352 -0.88442225]\n", + " [-0.21583829 0.38583859 -0.89696288]\n", + " [-0.21118523 0.35981489 -0.90880913]\n", + " [-0.2369784 0.5306848 -0.81376586]\n", + " [-0.21122979 0.53833405 -0.8158299 ]\n", + " [-0.18474123 0.54562222 -0.81741487]\n", + " [-0.15762079 0.55250647 -0.81846948]\n", + " [-0.12997657 0.55894786 -0.81895262]\n", + " [-0.10191703 0.56491124 -0.81883344]\n", + " [-0.07355147 0.57036557 -0.81809126]\n", + " [-0.04499021 0.57528423 -0.81671533]\n", + " [-0.21118523 0.35981489 -0.90880913]\n", + " [-0.18423102 0.36624671 -0.91209774]\n", + " [-0.15657656 0.37251408 -0.91472239]\n", + " [-0.12832491 0.37857554 -0.91663148]\n", + " [-0.09958014 0.38439352 -0.91778288]\n", + " [-0.07044925 0.389934 -0.91814398]\n", + " [-0.04104318 0.39516657 -0.91769213]\n", + " [-0.01147673 0.40006465 -0.91641506]\n", + " [-0.04499021 0.57528423 -0.81671533]\n", + " [-0.04049598 0.55255075 -0.83249489]\n", + " [-0.03587472 0.528924 -0.84791061]\n", + " [-0.03114362 0.50447412 -0.86286496]\n", + " [-0.02632006 0.4792767 -0.87726912]\n", + " [-0.02142188 0.45341433 -0.89104239]\n", + " [-0.01646768 0.42697755 -0.90411227]\n", + " [-0.01147673 0.40006465 -0.91641506]\n", + " [-0.23579221 0.52106064 -0.82030351]\n", + " [-0.23230903 0.49308378 -0.83839185]\n", + " [-0.22827246 0.46396195 -0.85593866]\n", + " [-0.22371434 0.43383952 -0.87277441]\n", + " [-0.21866579 0.40287176 -0.88875172]\n", + " [-0.21315822 0.37122545 -0.90374512]\n", + " [-0.22584103 0.53398615 -0.81477274]\n", + " [-0.19377101 0.54312341 -0.81698822]\n", + " [-0.16069693 0.55167543 -0.81843186]\n", + " [-0.12681781 0.55956889 -0.81902375]\n", + " [-0.09233337 0.56673915 -0.81870708]\n", + " [-0.05744525 0.57313086 -0.8174479 ]\n", + " [-0.19954228 0.36272648 -0.91028148]\n", + " [-0.16602342 0.37050508 -0.9138721 ]\n", + " [-0.13155511 0.37799487 -0.91641319]\n", + " [-0.09632843 0.38512507 -0.91782325]\n", + " [-0.06054048 0.39183306 -0.91804232]\n", + " [-0.02439714 0.39806442 -0.91703298]\n", + " [-0.0431457 0.56547057 -0.82363917]\n", + " [-0.03755093 0.53699893 -0.84274674]\n", + " [-0.03178226 0.50725479 -0.86120989]\n", + " [-0.02587155 0.47637493 -0.87886153]\n", + " [-0.01985173 0.44451154 -0.89555312]\n", + " [-0.01375728 0.41183455 -0.91115478]\n", + " [-0.2368834 0.53063647 -0.81382504]\n", + " [-0.2368834 0.53063647 -0.81382504]\n", + " [-0.01159508 0.40014122 -0.91638014]\n", + " [-0.01159508 0.40014122 -0.91638014]\n", + " [-0.22469495 0.52438672 -0.82129821]\n", + " [-0.19247201 0.53346766 -0.82363025]\n", + " [-0.15924866 0.54197902 -0.82516581]\n", + " [-0.12522337 0.54984734 -0.82582505]\n", + " [-0.09059553 0.55700762 -0.82555131]\n", + " [-0.05556684 0.56340409 -0.82431072]\n", + " [-0.22107247 0.49633577 -0.83951043]\n", + " [-0.18846249 0.50523828 -0.84214973]\n", + " [-0.1548621 0.51361783 -0.84392799]\n", + " [-0.12046788 0.52140051 -0.84476565]\n", + " [-0.08547814 0.52852042 -0.84460621]\n", + " [-0.05009505 0.53492072 -0.84341586]\n", + " [-0.21692058 0.46712895 -0.85716743]\n", + " [-0.1839914 0.4758241 -0.86008057]\n", + " [-0.15008117 0.48404579 -0.86207617]\n", + " [-0.11538434 0.49171994 -0.86307471]\n", + " [-0.08009839 0.49878021 -0.86301944]\n", + " [-0.04442629 0.50516917 -0.8618761 ]\n", + " [-0.21227077 0.43691027 -0.87409984]\n", + " [-0.17908909 0.44536781 -0.87725402]\n", + " [-0.14493526 0.45340397 -0.87944222]\n", + " [-0.11000196 0.46094503 -0.88058461]\n", + " [-0.07448614 0.46792497 -0.88062367]\n", + " [-0.03859181 0.47428643 -0.87952434]\n", + " [-0.20715372 0.40583488 -0.89016031]\n", + " [-0.173785 0.41402404 -0.89352273]\n", + " [-0.1394532 0.4218464 -0.89587857]\n", + " [-0.10434982 0.42922923 -0.89714736]\n", + " [-0.06867169 0.43610754 -0.89727053]\n", + " [-0.03262378 0.44242483 -0.89621201]\n", + " [-0.20160045 0.37406978 -0.90522321]\n", + " [-0.16810938 0.38196054 -0.90876036]\n", + " [-0.1336651 0.38954167 -0.91125788]\n", + " [-0.09845866 0.39674184 -0.91263454]\n", + " [-0.06268706 0.40349774 -0.91283071]\n", + " [-0.02655601 0.40975434 -0.91180928]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:fp_optics: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:cartToSphere: vec: [[-0.87095877 -0.17599065 0.45875714]\n", + " [-0.85751486 -0.18072986 0.48166895]\n", + " [-0.84313419 -0.18558558 0.504661 ]\n", + " [-0.82784389 -0.19051298 0.52761662]\n", + " [-0.81167861 -0.19547293 0.55042544]\n", + " [-0.79468097 -0.20043156 0.57298284]\n", + " [-0.77690199 -0.20535964 0.59518964]\n", + " [-0.7584013 -0.21023204 0.61695215]\n", + " [-0.87095877 -0.17599065 0.45875714]\n", + " [-0.87012329 -0.20138066 0.4498125 ]\n", + " [-0.8685411 -0.22720986 0.44046798]\n", + " [-0.86618919 -0.25335178 0.43073096]\n", + " [-0.86305188 -0.27968551 0.42061558]\n", + " [-0.85912102 -0.30609484 0.41014269]\n", + " [-0.85439636 -0.33246746 0.39933976]\n", + " [-0.84888602 -0.35869466 0.38824048]\n", + " [-0.7584013 -0.21023204 0.61695215]\n", + " [-0.75667131 -0.23702781 0.6093163 ]\n", + " [-0.75429585 -0.2641819 0.60103718]\n", + " [-0.75125068 -0.29157482 0.59212038]\n", + " [-0.74751913 -0.31909008 0.58257761]\n", + " [-0.7430926 -0.34661241 0.57242748]\n", + " [-0.73797104 -0.37402714 0.56169604]\n", + " [-0.73216337 -0.40122061 0.55041696]\n", + " [-0.84888602 -0.35869466 0.38824048]\n", + " [-0.83491266 -0.36543198 0.41155841]\n", + " [-0.81998554 -0.37201333 0.43500551]\n", + " [-0.80412759 -0.37839603 0.45847057]\n", + " [-0.78737013 -0.38454134 0.48184669]\n", + " [-0.76975417 -0.39041419 0.50502998]\n", + " [-0.7513312 -0.39598312 0.52791931]\n", + " [-0.73216337 -0.40122061 0.55041696]\n", + " [-0.86521203 -0.17812598 0.46869956]\n", + " [-0.84810171 -0.18402005 0.49685019]\n", + " [-0.82961041 -0.19004374 0.5250047 ]\n", + " [-0.8097988 -0.19612264 0.55295733]\n", + " [-0.78874538 -0.20219434 0.58051544]\n", + " [-0.76654765 -0.20820674 0.60749869]\n", + " [-0.87064004 -0.18701493 0.45498498]\n", + " [-0.86911682 -0.21844606 0.44375362]\n", + " [-0.86644836 -0.25041049 0.43192803]\n", + " [-0.86260277 -0.28268337 0.41953139]\n", + " [-0.85756505 -0.31505065 0.40660211]\n", + " [-0.85133823 -0.34730707 0.39319335]\n", + " [-0.7577892 -0.22184657 0.61362825]\n", + " [-0.75523894 -0.25494358 0.603836 ]\n", + " [-0.75169414 -0.28845966 0.59308258]\n", + " [-0.74712094 -0.32217923 0.581387 ]\n", + " [-0.74150358 -0.35589001 0.56878356]\n", + " [-0.73484566 -0.38938126 0.55532341]\n", + " [-0.84293226 -0.36155873 0.3984225 ]\n", + " [-0.82516282 -0.36971583 0.42710249]\n", + " [-0.80598268 -0.37759594 0.45586536]\n", + " [-0.78544597 -0.38512616 0.48451261]\n", + " [-0.76362825 -0.39224192 0.51285297]\n", + " [-0.74062878 -0.39888693 0.54070161]\n", + " [-0.8709128 -0.17609253 0.45880532]\n", + " [-0.8709128 -0.17609253 0.45880532]\n", + " [-0.73225111 -0.40111081 0.55038026]\n", + " [-0.73225111 -0.40111081 0.55038026]\n", + " [-0.86492154 -0.18911404 0.4649157 ]\n", + " [-0.86335107 -0.22072312 0.45376893]\n", + " [-0.86063959 -0.25285429 0.44200024]\n", + " [-0.85675476 -0.28528366 0.42963299]\n", + " [-0.85168114 -0.31779774 0.41670592]\n", + " [-0.84542139 -0.35019124 0.40327257]\n", + " [-0.84775643 -0.19517387 0.49316954]\n", + " [-0.84604185 -0.22723172 0.48226438]\n", + " [-0.84320195 -0.25978342 0.47066235]\n", + " [-0.8392031 -0.29260786 0.45838717]\n", + " [-0.8340286 -0.32549281 0.44547808]\n", + " [-0.82768031 -0.35823242 0.4319894 ]\n", + " [-0.82920327 -0.20133379 0.5214275 ]\n", + " [-0.82732811 -0.23376011 0.51076846]\n", + " [-0.82434858 -0.26665706 0.499343 ]\n", + " [-0.82023003 -0.29980599 0.48717457]\n", + " [-0.81495492 -0.33299531 0.47430223]\n", + " [-0.80852465 -0.36601807 0.46078049]\n", + " [-0.80932218 -0.20752016 0.5494843 ]\n", + " [-0.80726823 -0.24023664 0.53907732]\n", + " [-0.80413617 -0.27340486 0.52783975]\n", + " [-0.79989084 -0.30680794 0.51579408]\n", + " [-0.79451444 -0.34023439 0.50297849]\n", + " [-0.78800848 -0.3734759 0.48944703]\n", + " [-0.78819128 -0.21367122 0.5771474 ]\n", + " [-0.78593932 -0.24660098 0.56699854]\n", + " [-0.78264094 -0.27996694 0.55596014]\n", + " [-0.77826111 -0.31355324 0.54405331]\n", + " [-0.77278251 -0.34714816 0.53131473]\n", + " [-0.76620725 -0.38054205 0.51779745]\n", + " [-0.76590803 -0.21973528 0.60423613]\n", + " [-0.76343885 -0.2528021 0.59435025]\n", + " [-0.75996057 -0.28629209 0.58352102]\n", + " [-0.75543895 -0.31998971 0.57176794]\n", + " [-0.74985772 -0.35368285 0.55912597]\n", + " [-0.74322004 -0.38716092 0.54564676]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:cartToSphere: vec: [[-0.28938492 -0.3809541 0.87814028]\n", + " [-0.30920888 -0.36268927 0.87911681]\n", + " [-0.32912106 -0.34366673 0.8795297 ]\n", + " [-0.34903149 -0.32396527 0.87933129]\n", + " [-0.36885324 -0.30366278 0.87848517]\n", + " [-0.38850194 -0.28283762 0.87696586]\n", + " [-0.40789567 -0.26156961 0.87475852]\n", + " [-0.4269553 -0.23994058 0.87185876]\n", + " [-0.28938492 -0.3809541 0.87814028]\n", + " [-0.27096286 -0.36564536 0.89043955]\n", + " [-0.25204694 -0.34961663 0.90235279]\n", + " [-0.2326968 -0.33293525 0.9137868 ]\n", + " [-0.21297546 -0.31566757 0.92465963]\n", + " [-0.19294976 -0.29788016 0.93489989]\n", + " [-0.17269047 -0.27964095 0.94444637]\n", + " [-0.15227201 -0.26101981 0.95324808]\n", + " [-0.4269553 -0.23994058 0.87185876]\n", + " [-0.40921097 -0.22273819 0.88483562]\n", + " [-0.39077654 -0.20500155 0.89736729]\n", + " [-0.37170729 -0.18679198 0.90936376]\n", + " [-0.35206288 -0.1681731 0.92074401]\n", + " [-0.33190833 -0.1492118 0.93143583]\n", + " [-0.3113144 -0.1299785 0.94137609]\n", + " [-0.29035731 -0.11054687 0.95051145]\n", + " [-0.15227201 -0.26101981 0.95324808]\n", + " [-0.17168565 -0.24094575 0.95523253]\n", + " [-0.19134453 -0.22027209 0.95648705]\n", + " [-0.211163 -0.19907104 0.95696442]\n", + " [-0.23105676 -0.17741747 0.95662731]\n", + " [-0.25094216 -0.15539 0.95544858]\n", + " [-0.27073624 -0.13307112 0.95341175]\n", + " [-0.29035731 -0.11054687 0.95051145]\n", + " [-0.29794947 -0.37303727 0.87867475]\n", + " [-0.32231685 -0.35013083 0.8795 ]\n", + " [-0.34672707 -0.32616482 0.87942984]\n", + " [-0.37101888 -0.30128294 0.87839261]\n", + " [-0.39503693 -0.27562957 0.87634135]\n", + " [-0.41863155 -0.24935245 0.8732531 ]\n", + " [-0.28148485 -0.37431074 0.88354839]\n", + " [-0.25856733 -0.3550541 0.89837605]\n", + " [-0.23496676 -0.33478321 0.9125299 ]\n", + " [-0.21079774 -0.31362055 0.92585445]\n", + " [-0.18618333 -0.29168881 0.93821821]\n", + " [-0.16125533 -0.26911383 0.94951275]\n", + " [-0.41924219 -0.23258463 0.87757642]\n", + " [-0.3970232 -0.21113519 0.89319343]\n", + " [-0.3738223 -0.1889439 0.90805126]\n", + " [-0.34974741 -0.16612684 0.92199708]\n", + " [-0.3249183 -0.14280717 0.93489797]\n", + " [-0.29946754 -0.11911593 0.94664174]\n", + " [-0.16077096 -0.25241025 0.95417072]\n", + " [-0.18474083 -0.22739589 0.95611816]\n", + " [-0.20899361 -0.20155231 0.95692128]\n", + " [-0.23337362 -0.17501619 0.95650723]\n", + " [-0.25772685 -0.14793222 0.95482612]\n", + " [-0.28190106 -0.12045382 0.95185223]\n", + " [-0.28939036 -0.38084197 0.87818712]\n", + " [-0.28939036 -0.38084197 0.87818712]\n", + " [-0.29036279 -0.11069085 0.95049302]\n", + " [-0.29036279 -0.11069085 0.95049302]\n", + " [-0.29005161 -0.3664403 0.88407668]\n", + " [-0.26714176 -0.34701027 0.8990101 ]\n", + " [-0.24352786 -0.32658371 0.91325641]\n", + " [-0.21932433 -0.30528168 0.92666064]\n", + " [-0.19465435 -0.28322601 0.93909143]\n", + " [-0.16965013 -0.26054229 0.95044019]\n", + " [-0.31444906 -0.34335871 0.8850009 ]\n", + " [-0.29158584 -0.32346771 0.90019239]\n", + " [-0.26796067 -0.30262879 0.91466545]\n", + " [-0.24368729 -0.28095959 0.92826624]\n", + " [-0.21888903 -0.25858026 0.94086335]\n", + " [-0.19369903 -0.2356163 0.95234744]\n", + " [-0.33890206 -0.31923262 0.88500617]\n", + " [-0.31612337 -0.29892176 0.90039536]\n", + " [-0.29252734 -0.27770991 0.9150437 ]\n", + " [-0.26822667 -0.2557125 0.92879792]\n", + " [-0.24334445 -0.23304915 0.94152619]\n", + " [-0.2180144 -0.20984611 0.95311822]\n", + " [-0.36324953 -0.29420434 0.88402126]\n", + " [-0.34059382 -0.27351129 0.89954845]\n", + " [-0.31706808 -0.25196365 0.9143206 ]\n", + " [-0.29278368 -0.22967594 0.92818462]\n", + " [-0.26786303 -0.20676821 0.94100813]\n", + " [-0.24244006 -0.183368 0.9526799 ]\n", + " [-0.38733594 -0.26841742 0.88199941]\n", + " [-0.36484116 -0.24737829 0.8976051 ]\n", + " [-0.34142662 -0.22553154 0.91244912]\n", + " [-0.31720218 -0.20299185 0.92637848]\n", + " [-0.29228929 -0.17988039 0.93926036]\n", + " [-0.26682156 -0.15632621 0.95098284]\n", + " [-0.41101115 -0.24201945 0.87891775]\n", + " [-0.38871398 -0.22067049 0.89454233]\n", + " [-0.36545051 -0.19856221 0.90940584]\n", + " [-0.34132915 -0.17581026 0.92335538]\n", + " [-0.31647013 -0.15253724 0.936258 ]\n", + " [-0.29100634 -0.12887371 0.94800152]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:fp_optics: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:fp_optics: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:cartToSphere: vec: [[-0.24228653 -0.52469571 0.81608312]\n", + " [-0.23879853 -0.50248607 0.83095308]\n", + " [-0.23490729 -0.47947081 0.84553315]\n", + " [-0.23063415 -0.45572388 0.859723 ]\n", + " [-0.22600005 -0.43132377 0.87343219]\n", + " [-0.22102563 -0.40635382 0.88658008]\n", + " [-0.21573155 -0.38090247 0.89909577]\n", + " [-0.21013897 -0.35506321 0.91091807]\n", + " [-0.24228653 -0.52469571 0.81608312]\n", + " [-0.21679696 -0.53314765 0.81777299]\n", + " [-0.19056162 -0.5412601 0.81897727]\n", + " [-0.16368795 -0.54898688 0.81964606]\n", + " [-0.13628342 -0.5562857 0.81973963]\n", + " [-0.10845583 -0.56311811 0.81922849]\n", + " [-0.08031373 -0.56944973 0.81809334]\n", + " [-0.05196667 -0.57525054 0.81632486]\n", + " [-0.21013897 -0.35506321 0.91091807]\n", + " [-0.183366 -0.36234416 0.9138291 ]\n", + " [-0.15589568 -0.36948021 0.91606818]\n", + " [-0.12783043 -0.3764267 0.91758505]\n", + " [-0.09927368 -0.38314274 0.91833892]\n", + " [-0.07033171 -0.38959094 0.91829862]\n", + " [-0.04111474 -0.39573737 0.91744292]\n", + " [-0.01173676 -0.40155183 0.91576109]\n", + " [-0.05196667 -0.57525054 0.81632486]\n", + " [-0.04656903 -0.55274462 0.83204851]\n", + " [-0.04101972 -0.52934379 0.84741521]\n", + " [-0.03533947 -0.50511728 0.86232689]\n", + " [-0.02954918 -0.48013955 0.87669428]\n", + " [-0.02367029 -0.45449196 0.89043628]\n", + " [-0.01772511 -0.42826372 0.90347994]\n", + " [-0.01173676 -0.40155183 0.91576109]\n", + " [-0.24073047 -0.51514507 0.82260221]\n", + " [-0.23618051 -0.48737349 0.84064609]\n", + " [-0.23104625 -0.45846471 0.85815368]\n", + " [-0.22536646 -0.42856135 0.87495436]\n", + " [-0.21917914 -0.39781687 0.89089968]\n", + " [-0.21252253 -0.36639618 0.90586313]\n", + " [-0.23125987 -0.52834474 0.8169276 ]\n", + " [-0.19950345 -0.53848076 0.81867994]\n", + " [-0.16673362 -0.54806064 0.81965202]\n", + " [-0.13314822 -0.55700493 0.81976646]\n", + " [-0.09894575 -0.56524287 0.81896901]\n", + " [-0.06432647 -0.57271294 0.81722824]\n", + " [-0.19857788 -0.35834178 0.91222694]\n", + " [-0.16528322 -0.36717462 0.91534925]\n", + " [-0.13104284 -0.37574483 0.91741136]\n", + " [-0.09604661 -0.38397559 0.91833425]\n", + " [-0.06049034 -0.39179807 0.91806056]\n", + " [-0.02457854 -0.39915131 0.91655558]\n", + " [-0.04973081 -0.56553321 0.82322478]\n", + " [-0.04301181 -0.53733944 0.84226855]\n", + " [-0.03608542 -0.50786982 0.86067769]\n", + " [-0.02899 -0.47725917 0.87828427]\n", + " [-0.02176509 -0.44565739 0.89493898]\n", + " [-0.01445208 -0.41323197 0.91051111]\n", + " [-0.24218954 -0.52465064 0.81614088]\n", + " [-0.24218954 -0.52465064 0.81614088]\n", + " [-0.01185789 -0.40162459 0.91572762]\n", + " [-0.01185789 -0.40162459 0.91572762]\n", + " [-0.22974392 -0.51881751 0.82343556]\n", + " [-0.19782944 -0.52890255 0.82530334]\n", + " [-0.16490603 -0.53844689 0.82636611]\n", + " [-0.13117102 -0.54737098 0.82654653]\n", + " [-0.09682254 -0.55560372 0.82579047]\n", + " [-0.06206091 -0.56308316 0.82406662]\n", + " [-0.22504886 -0.49097682 0.8416025 ]\n", + " [-0.19273249 -0.50089716 0.84377499]\n", + " [-0.15941959 -0.51032288 0.84507748]\n", + " [-0.12530563 -0.51917403 0.84543292]\n", + " [-0.09058761 -0.52737864 0.84478734]\n", + " [-0.05546624 -0.53487365 0.84310953]\n", + " [-0.21979333 -0.46198732 0.85921977]\n", + " [-0.18714254 -0.47171204 0.86166433]\n", + " [-0.15350696 -0.48099116 0.86318197]\n", + " [-0.11907992 -0.48974457 0.86369568]\n", + " [-0.08405755 -0.49789986 0.86315124]\n", + " [-0.0486413 -0.50539331 0.86151705]\n", + " [-0.21401578 -0.43199129 0.87611687]\n", + " [-0.18109685 -0.44148816 0.87880153]\n", + " [-0.14720436 -0.45059104 0.88051042]\n", + " [-0.11252982 -0.45922021 0.88116618]\n", + " [-0.07726884 -0.4673035 0.88071389]\n", + " [-0.04162386 -0.4747772 0.87912119]\n", + " [-0.20775374 -0.40114203 0.89214542]\n", + " [-0.17463169 -0.41037827 0.89503824]\n", + " [-0.14054739 -0.41927463 0.89691428]\n", + " [-0.10569114 -0.42775234 0.89769556]\n", + " [-0.07025843 -0.43574024 0.89732614]\n", + " [-0.03445272 -0.44317539 0.89577262]\n", + " [-0.20104507 -0.36960467 0.90717874]\n", + " [-0.16778414 -0.37854818 0.91024709]\n", + " [-0.13357298 -0.38720844 0.91226525]\n", + " [-0.09860144 -0.39550809 0.91315448]\n", + " [-0.06306521 -0.40337761 0.91285776]\n", + " [-0.02716857 -0.41075544 0.91134068]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:fp_optics: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:cartToSphere: vec: [[-0.60523667 0.37937927 -0.69982851]\n", + " [-0.58612772 0.37477016 -0.71833253]\n", + " [-0.5661193 0.36992755 -0.73665633]\n", + " [-0.54528048 0.36484109 -0.7546921 ]\n", + " [-0.52368278 0.35950758 -0.77234102]\n", + " [-0.50140136 0.35393045 -0.78951245]\n", + " [-0.47851592 0.34811935 -0.80612371]\n", + " [-0.45511105 0.34208962 -0.82210013]\n", + " [-0.60523667 0.37937927 -0.69982851]\n", + " [-0.59675258 0.40407716 -0.69325897]\n", + " [-0.58752272 0.42899522 -0.68613421]\n", + " [-0.57757423 0.45400723 -0.67844339]\n", + " [-0.56693653 0.47899391 -0.6701849 ]\n", + " [-0.55564219 0.50384172 -0.66136622]\n", + " [-0.54372783 0.52844223 -0.65200372]\n", + " [-0.53123483 0.55269198 -0.64212237]\n", + " [-0.45511105 0.34208962 -0.82210013]\n", + " [-0.44498353 0.36751421 -0.81665351]\n", + " [-0.43428826 0.39316586 -0.81044081]\n", + " [-0.42304828 0.41892513 -0.80344999]\n", + " [-0.41129116 0.44467627 -0.79567745]\n", + " [-0.39904973 0.47030608 -0.78712865]\n", + " [-0.38636243 0.49570389 -0.77781857]\n", + " [-0.37327326 0.52076231 -0.7677719 ]\n", + " [-0.53123483 0.55269198 -0.64212237]\n", + " [-0.51078859 0.54965131 -0.66104346]\n", + " [-0.48952126 0.54611089 -0.67980279]\n", + " [-0.46749545 0.54206038 -0.69829689]\n", + " [-0.44477937 0.5374953 -0.71642872]\n", + " [-0.42144793 0.53241738 -0.7341072 ]\n", + " [-0.39758304 0.52683481 -0.7512475 ]\n", + " [-0.37327326 0.52076231 -0.7677719 ]\n", + " [-0.59699192 0.37748174 -0.70788995]\n", + " [-0.57295733 0.37167842 -0.73046222]\n", + " [-0.54764013 0.36551308 -0.75265562]\n", + " [-0.52117091 0.35897685 -0.77428451]\n", + " [-0.49368816 0.35207603 -0.79518204]\n", + " [-0.4653406 0.34483076 -0.81519928]\n", + " [-0.60156681 0.39009717 -0.6970951 ]\n", + " [-0.59066274 0.42053243 -0.68867264]\n", + " [-0.57866537 0.45117213 -0.67940422]\n", + " [-0.56562784 0.48179387 -0.66928306]\n", + " [-0.5516102 0.51218857 -0.65832291]\n", + " [-0.53668186 0.54215864 -0.64655749]\n", + " [-0.45084769 0.3531601 -0.81976478]\n", + " [-0.43805171 0.38448871 -0.81257561]\n", + " [-0.42442523 0.41603916 -0.804223 ]\n", + " [-0.41001709 0.44759692 -0.79469679]\n", + " [-0.39488775 0.4789536 -0.78400708]\n", + " [-0.37911031 0.50990677 -0.77218551]\n", + " [-0.52246882 0.55134424 -0.65041975]\n", + " [-0.49685052 0.54728231 -0.67351439]\n", + " [-0.4700605 0.54245899 -0.69626243]\n", + " [-0.44222194 0.53686358 -0.7184826 ]\n", + " [-0.41347276 0.53049932 -0.74000726]\n", + " [-0.38396656 0.52338399 -0.76068317]\n", + " [-0.60514522 0.37944782 -0.69987043]\n", + " [-0.60514522 0.37944782 -0.69987043]\n", + " [-0.37340243 0.52069889 -0.7677521 ]\n", + " [-0.37340243 0.52069889 -0.7677521 ]\n", + " [-0.59336369 0.38817841 -0.70515037]\n", + " [-0.58232914 0.41874443 -0.69681122]\n", + " [-0.57021608 0.44951105 -0.68759977]\n", + " [-0.55707651 0.48025682 -0.67750952]\n", + " [-0.5429697 0.51077295 -0.6665545 ]\n", + " [-0.52796472 0.54086162 -0.65476864]\n", + " [-0.56919228 0.38248854 -0.72782049]\n", + " [-0.55780051 0.41336964 -0.71971115]\n", + " [-0.54537249 0.44444486 -0.71065998]\n", + " [-0.53195744 0.4754951 -0.70066089]\n", + " [-0.51761306 0.50631202 -0.6897281 ]\n", + " [-0.502408 0.53669669 -0.6778959 ]\n", + " [-0.54374354 0.37640674 -0.75010728]\n", + " [-0.53200976 0.40752237 -0.74222041]\n", + " [-0.51928298 0.43883151 -0.73332945]\n", + " [-0.50561068 0.47011679 -0.72342799]\n", + " [-0.49104994 0.50116986 -0.71252981]\n", + " [-0.47566978 0.5317905 -0.70066906]\n", + " [-0.51714685 0.3699248 -0.77182561]\n", + " [-0.50508326 0.40119576 -0.764155 ]\n", + " [-0.49207175 0.43266444 -0.75542496]\n", + " [-0.47815917 0.4641147 -0.74562816]\n", + " [-0.46340294 0.495338 -0.73477751]\n", + " [-0.44787297 0.52613293 -0.7229066 ]\n", + " [-0.48954005 0.36304955 -0.79280865]\n", + " [-0.47715753 0.39439752 -0.78534788]\n", + " [-0.4638748 0.42595133 -0.77677901]\n", + " [-0.44973908 0.45749567 -0.76709352]\n", + " [-0.43480882 0.4888219 -0.75630314]\n", + " [-0.41915519 0.5197278 -0.74444069]\n", + " [-0.4610718 0.35580153 -0.81290717]\n", + " [-0.44838152 0.38714882 -0.80564868]\n", + " [-0.43484196 0.41871327 -0.79724003]\n", + " [-0.42050141 0.45028018 -0.78767146]\n", + " [-0.4054198 0.48164104 -0.77695347]\n", + " [-0.38966971 0.51259336 -0.76511801]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:fp_optics: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:cartToSphere: vec: [[ 2.77722624e-01 9.51397769e-01 -1.33088052e-01]\n", + " [ 2.82178424e-01 9.53542439e-01 -1.05509022e-01]\n", + " [ 2.86495671e-01 9.54958434e-01 -7.72956630e-02]\n", + " [ 2.90644365e-01 9.55598234e-01 -4.85578827e-02]\n", + " [ 2.94597824e-01 9.55424299e-01 -1.94043832e-02]\n", + " [ 2.98332338e-01 9.54409093e-01 1.00548209e-02]\n", + " [ 3.01826989e-01 9.52535501e-01 3.97062676e-02]\n", + " [ 3.05063763e-01 9.49797463e-01 6.94325558e-02]\n", + " [ 2.77722624e-01 9.51397769e-01 -1.33088052e-01]\n", + " [ 2.50132793e-01 9.59554108e-01 -1.29187843e-01]\n", + " [ 2.22438567e-01 9.66887999e-01 -1.25094688e-01]\n", + " [ 1.94751828e-01 9.73382511e-01 -1.20823064e-01]\n", + " [ 1.67186988e-01 9.79031454e-01 -1.16386957e-01]\n", + " [ 1.39860653e-01 9.83839315e-01 -1.11799822e-01]\n", + " [ 1.12890757e-01 9.87821147e-01 -1.07075010e-01]\n", + " [ 8.63943095e-02 9.91002364e-01 -1.02226891e-01]\n", + " [ 3.05063763e-01 9.49797463e-01 6.94325558e-02]\n", + " [ 2.76495545e-01 9.58214632e-01 7.33139269e-02]\n", + " [ 2.47773810e-01 9.65743638e-01 7.71191590e-02]\n", + " [ 2.19015691e-01 9.72367201e-01 8.08341156e-02]\n", + " [ 1.90337265e-01 9.78080052e-01 8.44460617e-02]\n", + " [ 1.61853634e-01 9.82888252e-01 8.79436433e-02]\n", + " [ 1.33680751e-01 9.86808352e-01 9.13166601e-02]\n", + " [ 1.05937940e-01 9.89866839e-01 9.45557700e-02]\n", + " [ 8.63943095e-02 9.91002364e-01 -1.02226891e-01]\n", + " [ 8.89261040e-02 9.93183667e-01 -7.53548364e-02]\n", + " [ 9.15830854e-02 9.94645449e-01 -4.78849524e-02]\n", + " [ 9.43409681e-02 9.95340513e-01 -1.99259947e-02]\n", + " [ 9.71757907e-02 9.95231697e-01 8.41036052e-03]\n", + " [ 1.00065727e-01 9.94292213e-01 3.70114346e-02]\n", + " [ 1.02991801e-01 9.92505795e-01 6.57642415e-02]\n", + " [ 1.05937940e-01 9.89866839e-01 9.45557700e-02]\n", + " [ 2.79585920e-01 9.52448363e-01 -1.21135581e-01]\n", + " [ 2.84956817e-01 9.54593656e-01 -8.68939872e-02]\n", + " [ 2.90089590e-01 9.55596072e-01 -5.18090488e-02]\n", + " [ 2.94933759e-01 9.55382368e-01 -1.60813106e-02]\n", + " [ 2.99445658e-01 9.53901899e-01 2.00864367e-02]\n", + " [ 3.03587975e-01 9.51127721e-01 5.64836184e-02]\n", + " [ 2.65728293e-01 9.55062184e-01 -1.31319069e-01]\n", + " [ 2.31828950e-01 9.64508430e-01 -1.26407380e-01]\n", + " [ 1.97883648e-01 9.72701216e-01 -1.21220490e-01]\n", + " [ 1.64101977e-01 9.79624684e-01 -1.15784365e-01]\n", + " [ 1.30698516e-01 9.85287086e-01 -1.10123817e-01]\n", + " [ 9.78901959e-02 9.89720454e-01 -1.04263763e-01]\n", + " [ 2.92623695e-01 9.53585802e-01 7.10316212e-02]\n", + " [ 2.57492540e-01 9.63307389e-01 7.57394560e-02]\n", + " [ 2.22247262e-01 9.71676398e-01 8.03189357e-02]\n", + " [ 1.87102066e-01 9.78678154e-01 8.47460179e-02]\n", + " [ 1.52269069e-01 9.84323713e-01 8.89997659e-02]\n", + " [ 1.17963049e-01 9.88647676e-01 9.30617639e-02]\n", + " [ 8.75714363e-02 9.92029016e-01 -9.06072608e-02]\n", + " [ 9.07627533e-02 9.94225239e-01 -5.72564175e-02]\n", + " [ 9.41178886e-02 9.95292677e-01 -2.31151468e-02]\n", + " [ 9.75924465e-02 9.95158719e-01 1.16120009e-02]\n", + " [ 1.01146321e-01 9.93774060e-01 4.67176581e-02]\n", + " [ 1.04745793e-01 9.91113180e-01 8.19937962e-02]\n", + " [ 2.77644012e-01 9.51435548e-01 -1.32981957e-01]\n", + " [ 2.77644012e-01 9.51435548e-01 -1.32981957e-01]\n", + " [ 1.06021845e-01 9.89868285e-01 9.44465339e-02]\n", + " [ 1.06021845e-01 9.89868285e-01 9.44465339e-02]\n", + " [ 2.67622875e-01 9.56088568e-01 -1.19468185e-01]\n", + " [ 2.33584620e-01 9.65564176e-01 -1.14560232e-01]\n", + " [ 1.99493638e-01 9.73772846e-01 -1.09401701e-01]\n", + " [ 1.65559811e-01 9.80698753e-01 -1.04018770e-01]\n", + " [ 1.31998163e-01 9.86350261e-01 -9.84360103e-02]\n", + " [ 9.90271275e-02 9.90759590e-01 -9.26771977e-02]\n", + " [ 2.72874732e-01 9.58268043e-01 -8.52158387e-02]\n", + " [ 2.38486888e-01 9.67818200e-01 -8.03239487e-02]\n", + " [ 2.04029382e-01 9.76068281e-01 -7.52510580e-02]\n", + " [ 1.69712674e-01 9.83002642e-01 -7.00243788e-02]\n", + " [ 1.35751789e-01 9.88630067e-01 -6.46687066e-02]\n", + " [ 1.02366914e-01 9.92983209e-01 -5.92060925e-02]\n", + " [ 2.77910790e-01 9.59298315e-01 -5.01232096e-02]\n", + " [ 2.43238519e-01 9.68910162e-01 -4.52561596e-02]\n", + " [ 2.08482953e-01 9.77196277e-01 -4.02777066e-02]\n", + " [ 1.73855249e-01 9.84141346e-01 -3.52159620e-02]\n", + " [ 1.39569477e-01 9.89754806e-01 -3.00962589e-02]\n", + " [ 1.05845059e-01 9.94069822e-01 -2.49401629e-02]\n", + " [ 2.82681021e-01 9.59106010e-01 -1.43910052e-02]\n", + " [ 2.47790495e-01 9.68766484e-01 -9.55878333e-03]\n", + " [ 2.12805740e-01 9.77083294e-01 -4.68552037e-03]\n", + " [ 1.77938901e-01 9.84041517e-01 2.00650892e-04]\n", + " [ 1.43402992e-01 9.89651368e-01 5.07453604e-03]\n", + " [ 1.09415603e-01 9.93946638e-01 9.91493389e-03]\n", + " [ 2.87142569e-01 9.57640262e-01 2.17778218e-02]\n", + " [ 2.52101963e-01 9.67335998e-01 2.65643871e-02]\n", + " [ 2.16958001e-01 9.75678356e-01 3.13204612e-02]\n", + " [ 1.81923910e-01 9.82652695e-01 3.60190453e-02]\n", + " [ 1.47211991e-01 9.88269867e-01 4.06361812e-02]\n", + " [ 1.13038072e-01 9.92564222e-01 4.51515277e-02]\n", + " [ 2.91258994e-01 9.54873890e-01 5.81726129e-02]\n", + " [ 2.56138776e-01 9.64591193e-01 6.29027625e-02]\n", + " [ 2.20907121e-01 9.72954126e-01 6.75300902e-02]\n", + " [ 1.85778072e-01 9.79948076e-01 7.20296867e-02]\n", + " [ 1.50963705e-01 9.85584139e-01 7.63797454e-02]\n", + " [ 1.16678882e-01 9.89896921e-01 8.05613071e-02]]\n", + "DEBUG:root:cartToSphere: vec: [[-0.5095759 -0.80910193 0.29272252]\n", + " [-0.50432097 -0.80266245 0.31842324]\n", + " [-0.49845519 -0.7955672 0.34440564]\n", + " [-0.49198905 -0.78780639 0.37055076]\n", + " [-0.48493935 -0.77937857 0.39674031]\n", + " [-0.47732747 -0.77029138 0.42285894]\n", + " [-0.46917862 -0.76056184 0.44879518]\n", + " [-0.46052169 -0.75021642 0.47444188]\n", + " [-0.5095759 -0.80910193 0.29272252]\n", + " [-0.48739122 -0.82394574 0.28907302]\n", + " [-0.46433028 -0.83846279 0.28526748]\n", + " [-0.44046861 -0.85255948 0.28130009]\n", + " [-0.41588941 -0.86614907 0.27716742]\n", + " [-0.39068109 -0.87915313 0.27287004]\n", + " [-0.3649363 -0.89150204 0.26841313]\n", + " [-0.33875166 -0.90313528 0.26380671]\n", + " [-0.46052169 -0.75021642 0.47444188]\n", + " [-0.43711882 -0.76529455 0.47249486]\n", + " [-0.41288172 -0.78006776 0.47013081]\n", + " [-0.38789021 -0.79444103 0.46733782]\n", + " [-0.36222625 -0.80832865 0.46410876]\n", + " [-0.33597608 -0.82165303 0.46044149]\n", + " [-0.30923236 -0.83434392 0.45633931]\n", + " [-0.28209517 -0.84633854 0.45181123]\n", + " [-0.33875166 -0.90313528 0.26380671]\n", + " [-0.33179881 -0.89754578 0.290381 ]\n", + " [-0.32443389 -0.89112159 0.31724591]\n", + " [-0.31667292 -0.8838493 0.34427994]\n", + " [-0.30853451 -0.87572443 0.37136664]\n", + " [-0.3000406 -0.86675207 0.39839238]\n", + " [-0.29121727 -0.85694785 0.4252445 ]\n", + " [-0.28209517 -0.84633854 0.45181123]\n", + " [-0.50728551 -0.8064254 0.30387413]\n", + " [-0.5004324 -0.79809433 0.33557839]\n", + " [-0.49267147 -0.78876749 0.36758764]\n", + " [-0.48403116 -0.7784387 0.39968366]\n", + " [-0.47455077 -0.76712205 0.43165418]\n", + " [-0.46427824 -0.7548528 0.46329577]\n", + " [-0.49999815 -0.81558716 0.29123776]\n", + " [-0.47220926 -0.83357271 0.28666174]\n", + " [-0.44317821 -0.85097377 0.2818452 ]\n", + " [-0.41305517 -0.86762771 0.27678076]\n", + " [-0.38200279 -0.88339017 0.27146948]\n", + " [-0.35019331 -0.89813676 0.26592294]\n", + " [-0.45045613 -0.75685807 0.47355584]\n", + " [-0.42120286 -0.77514565 0.47088999]\n", + " [-0.3907756 -0.79287968 0.46758554]\n", + " [-0.35932432 -0.80989856 0.46362739]\n", + " [-0.32700802 -0.82605934 0.45901168]\n", + " [-0.29400041 -0.84123575 0.45374683]\n", + " [-0.33586232 -0.90076099 0.27536545]\n", + " [-0.32706278 -0.89335093 0.30814614]\n", + " [-0.31765978 -0.88467293 0.34124195]\n", + " [-0.30768648 -0.874715 0.3744365 ]\n", + " [-0.29718337 -0.86348666 0.40752035]\n", + " [-0.28620034 -0.85102128 0.44028643]\n", + " [-0.50948468 -0.80913221 0.29279758]\n", + " [-0.50948468 -0.80913221 0.29279758]\n", + " [-0.28222018 -0.84633639 0.45173719]\n", + " [-0.28222018 -0.84633639 0.45173719]\n", + " [-0.49775213 -0.81290805 0.30236288]\n", + " [-0.46982853 -0.8309705 0.29790801]\n", + " [-0.44066245 -0.84844474 0.29318617]\n", + " [-0.41040572 -0.86516737 0.28818843]\n", + " [-0.37922149 -0.88099373 0.28291538]\n", + " [-0.34728215 -0.89579917 0.27737871]\n", + " [-0.49077449 -0.80464086 0.33420576]\n", + " [-0.46249765 -0.82288101 0.3300951 ]\n", + " [-0.43298283 -0.84052576 0.32564139]\n", + " [-0.4023842 -0.85741066 0.32083316]\n", + " [-0.37086476 -0.87339071 0.31567071]\n", + " [-0.33859683 -0.88834057 0.31016645]\n", + " [-0.48290351 -0.79535516 0.36635278]\n", + " [-0.45432016 -0.81371161 0.36258324]\n", + " [-0.42450884 -0.8314714 0.3583958 ]\n", + " [-0.39362339 -0.84847022 0.35377805]\n", + " [-0.36182545 -0.86456314 0.34873045]\n", + " [-0.32928709 -0.87962405 0.34326599]\n", + " [-0.47416928 -0.78504404 0.39858419]\n", + " [-0.44532863 -0.80345402 0.39515066]\n", + " [-0.41527335 -0.8212726 0.39122801]\n", + " [-0.38415572 -0.8383362 0.38680332]\n", + " [-0.3521358 -0.85450021 0.38187664]\n", + " [-0.31938574 -0.86963791 0.37646071]\n", + " [-0.46461156 -0.77372129 0.4306872 ]\n", + " [-0.43556279 -0.79212168 0.42758425]\n", + " [-0.40531511 -0.80994245 0.42392558]\n", + " [-0.37401922 -0.82702094 0.4196975 ]\n", + " [-0.34183415 -0.84321312 0.41489884]\n", + " [-0.30893253 -0.85839204 0.40954095]\n", + " [-0.45427826 -0.76142224 0.46245804]\n", + " [-0.42506983 -0.77975023 0.45967947]\n", + " [-0.39468048 -0.79751675 0.45628319]\n", + " [-0.36326017 -0.81455997 0.45225446]\n", + " [-0.33096773 -0.83073665 0.44759018]\n", + " [-0.29797658 -0.84592023 0.44229958]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:fp_optics: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:cartToSphere: vec: [[0.19728824 0.32898094 0.92349818]\n", + " [0.19941896 0.30341178 0.93175821]\n", + " [0.20129162 0.27707615 0.93952674]\n", + " [0.20290467 0.25007466 0.94672718]\n", + " [0.20425602 0.22250954 0.95329376]\n", + " [0.20534311 0.19448489 0.95917143]\n", + " [0.20616316 0.16610702 0.96431593]\n", + " [0.20671364 0.13748461 0.96869368]\n", + " [0.19728824 0.32898094 0.92349818]\n", + " [0.17084516 0.33111198 0.92799611]\n", + " [0.14370214 0.33289473 0.93195 ]\n", + " [0.11596936 0.33432157 0.93529685]\n", + " [0.08775707 0.33538589 0.93798454]\n", + " [0.05917588 0.33608206 0.93997184]\n", + " [0.03033716 0.33640568 0.94122839]\n", + " [0.00135313 0.33635411 0.94173461]\n", + " [0.20671364 0.13748461 0.96869368]\n", + " [0.17934262 0.13792002 0.97407099]\n", + " [0.15126604 0.13824976 0.9787776 ]\n", + " [0.12258887 0.13846668 0.9827507 ]\n", + " [0.09341704 0.13856493 0.98593763]\n", + " [0.06385936 0.13853997 0.98829584]\n", + " [0.03402855 0.13838873 0.98979322]\n", + " [0.00404112 0.13810967 0.9904087 ]\n", + " [0.00135313 0.33635411 0.94173461]\n", + " [0.0017428 0.30987759 0.95077486]\n", + " [0.00213261 0.28262137 0.95922918]\n", + " [0.00252152 0.25468089 0.96702186]\n", + " [0.00290826 0.22615427 0.97408716]\n", + " [0.00329145 0.19714403 0.98036901]\n", + " [0.00366959 0.16775811 0.98582136]\n", + " [0.00404112 0.13810967 0.9904087 ]\n", + " [0.19815939 0.31794081 0.92717123]\n", + " [0.20059647 0.28607412 0.93697527]\n", + " [0.2026446 0.25315592 0.94596366]\n", + " [0.2043002 0.21937373 0.95401079]\n", + " [0.20555856 0.18491924 0.96101538]\n", + " [0.20641466 0.14998917 0.96690032]\n", + " [0.18585941 0.32986599 0.92555103]\n", + " [0.15296502 0.33224368 0.93070717]\n", + " [0.11912875 0.33409068 0.93498222]\n", + " [0.08455353 0.33539444 0.93827569]\n", + " [0.04944304 0.33614458 0.94051167]\n", + " [0.01400266 0.33633374 0.94163875]\n", + " [0.19487186 0.1377855 0.97110253]\n", + " [0.16083817 0.13825004 0.97725023]\n", + " [0.125849 0.13854843 0.98232701]\n", + " [0.09009887 0.13866935 0.98623172]\n", + " [0.0537882 0.13860447 0.98888606]\n", + " [0.01712614 0.13834875 0.99023549]\n", + " [0.00162258 0.32491302 0.94574251]\n", + " [0.00210136 0.29192711 0.95643826]\n", + " [0.00257915 0.25786471 0.96617759]\n", + " [0.00305372 0.2229052 0.97483534]\n", + " [0.0035225 0.18723749 0.98230836]\n", + " [0.00398269 0.1510625 0.98851619]\n", + " [0.19720686 0.32890279 0.9235434 ]\n", + " [0.19720686 0.32890279 0.9235434 ]\n", + " [0.00414254 0.13821254 0.99039393]\n", + " [0.00414254 0.13821254 0.99039393]\n", + " [0.18676427 0.3188593 0.92921895]\n", + " [0.1537345 0.32112513 0.93447544]\n", + " [0.11976223 0.32288231 0.9388312 ]\n", + " [0.08504995 0.32411806 0.94218575]\n", + " [0.04980104 0.32482157 0.94446324]\n", + " [0.01422102 0.32498505 0.94561222]\n", + " [0.18908279 0.28686443 0.93912539]\n", + " [0.15571656 0.28880991 0.94463813]\n", + " [0.1214058 0.29030991 0.94920008]\n", + " [0.08635124 0.2913508 0.95271096]\n", + " [0.05075539 0.29192068 0.95509487]\n", + " [0.01482434 0.29201078 0.95630013]\n", + " [0.1910369 0.25381568 0.94819961]\n", + " [0.15740368 0.25543458 0.95392728]\n", + " [0.12282329 0.25667166 0.95866266]\n", + " [0.08749442 0.25751269 0.96230553]\n", + " [0.05161875 0.25794521 0.96477965]\n", + " [0.01540325 0.25796012 0.96603277]\n", + " [0.19262276 0.21990016 0.95631605]\n", + " [0.15879118 0.22118458 0.96221762]\n", + " [0.12400941 0.22215105 0.96709388]\n", + " [0.08847426 0.22278539 0.97084447]\n", + " [0.0523868 0.22307546 0.9733925 ]\n", + " [0.01595491 0.22301257 0.97468499]\n", + " [0.19383526 0.1853093 0.96337343]\n", + " [0.15987282 0.18625057 0.96940776]\n", + " [0.12495736 0.18693801 0.97439203]\n", + " [0.0892843 0.1873583 0.97822553]\n", + " [0.05305429 0.18750047 0.98083068]\n", + " [0.01647599 0.18735704 0.9821537 ]\n", + " [0.19466894 0.15023997 0.96929456]\n", + " [0.16064218 0.15083005 0.97542011]\n", + " [0.12566039 0.15123098 0.98047879]\n", + " [0.08991819 0.15143083 0.98436956]\n", + " [0.05361602 0.15142054 0.98701426]\n", + " [0.016963 0.15119436 0.9883585 ]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:fp_optics: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:fp_optics: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:cartToSphere: vec: [[ 4.52461118e-01 -2.25784171e-02 -8.91498263e-01]\n", + " [ 4.34845076e-01 -2.73068408e-03 -9.00501140e-01]\n", + " [ 4.16528374e-01 1.75133720e-02 -9.08954012e-01]\n", + " [ 3.97564923e-01 3.80731769e-02 -9.16783816e-01]\n", + " [ 3.78013465e-01 5.88677759e-02 -9.23926623e-01]\n", + " [ 3.57938507e-01 7.98149956e-02 -9.30327680e-01]\n", + " [ 3.37410569e-01 1.00831403e-01 -9.35941844e-01]\n", + " [ 3.16505853e-01 1.21832855e-01 -9.40734182e-01]\n", + " [ 4.52461118e-01 -2.25784171e-02 -8.91498263e-01]\n", + " [ 4.33689480e-01 -4.30137699e-02 -9.00035139e-01]\n", + " [ 4.14552542e-01 -6.32782221e-02 -9.07822701e-01]\n", + " [ 3.95128484e-01 -8.32911214e-02 -9.14842101e-01]\n", + " [ 3.75498596e-01 -1.02971472e-01 -9.21085056e-01]\n", + " [ 3.55746929e-01 -1.22237469e-01 -9.26553897e-01]\n", + " [ 3.35960271e-01 -1.41005513e-01 -9.31261586e-01]\n", + " [ 3.16228566e-01 -1.59188842e-01 -9.35231739e-01]\n", + " [ 3.16505853e-01 1.21832855e-01 -9.40734182e-01]\n", + " [ 2.97185018e-01 1.00591958e-01 -9.49506358e-01]\n", + " [ 2.77657743e-01 7.93300512e-02 -9.57399039e-01]\n", + " [ 2.58004754e-01 5.81322374e-02 -9.64393172e-01]\n", + " [ 2.38308510e-01 3.70829652e-02 -9.70481276e-01]\n", + " [ 2.18652525e-01 1.62654205e-02 -9.75667212e-01]\n", + " [ 1.99121212e-01 -4.23850553e-03 -9.79965702e-01]\n", + " [ 1.79800474e-01 -2.43474625e-02 -9.83401744e-01]\n", + " [ 3.16228566e-01 -1.59188842e-01 -9.35231739e-01]\n", + " [ 2.97943533e-01 -1.41272829e-01 -9.44071840e-01]\n", + " [ 2.79153404e-01 -1.22768552e-01 -9.52366137e-01]\n", + " [ 2.59916324e-01 -1.03762081e-01 -9.60040070e-01]\n", + " [ 2.40294252e-01 -8.43361925e-02 -9.67029513e-01]\n", + " [ 2.20353344e-01 -6.45717943e-02 -9.73280477e-01]\n", + " [ 2.00163979e-01 -4.45489627e-02 -9.78749085e-01]\n", + " [ 1.79800474e-01 -2.43474625e-02 -9.83401744e-01]\n", + " [ 4.44806169e-01 -1.40490105e-02 -8.95516665e-01]\n", + " [ 4.22737526e-01 1.05524105e-02 -9.06190726e-01]\n", + " [ 3.99669688e-01 3.56691666e-02 -9.15964983e-01]\n", + " [ 3.75708726e-01 6.11524588e-02 -9.24717973e-01]\n", + " [ 3.50973424e-01 8.68510099e-02 -9.32348946e-01]\n", + " [ 3.25596002e-01 1.12610889e-01 -9.38779011e-01]\n", + " [ 4.44267153e-01 -3.14373562e-02 -8.95342610e-01]\n", + " [ 4.21004664e-01 -5.63790233e-02 -9.05304633e-01]\n", + " [ 3.97270893e-01 -8.09839991e-02 -9.14121124e-01]\n", + " [ 3.73214228e-01 -1.05103319e-01 -9.21772441e-01]\n", + " [ 3.48989402e-01 -1.28586273e-01 -9.28262877e-01]\n", + " [ 3.24757460e-01 -1.51277724e-01 -9.33620716e-01]\n", + " [ 3.08184386e-01 1.12508100e-01 -9.44650365e-01]\n", + " [ 2.84355800e-01 8.64505681e-02 -9.54813112e-01]\n", + " [ 2.60296976e-01 6.04462140e-02 -9.63634650e-01]\n", + " [ 2.36159044e-01 3.46508170e-02 -9.71096405e-01]\n", + " [ 2.12095732e-01 9.21750979e-03 -9.77205423e-01]\n", + " [ 1.88263005e-01 -1.57032474e-02 -9.81993100e-01]\n", + " [ 3.08389244e-01 -1.51393754e-01 -9.39135776e-01]\n", + " [ 2.85632326e-01 -1.29027617e-01 -9.49613631e-01]\n", + " [ 2.62173955e-01 -1.05863976e-01 -9.59196349e-01]\n", + " [ 2.38126577e-01 -8.20565062e-02 -9.67761573e-01]\n", + " [ 2.13611988e-01 -5.77542707e-02 -9.75209907e-01]\n", + " [ 1.88761414e-01 -3.31045528e-02 -9.81464832e-01]\n", + " [ 4.52338643e-01 -2.25813963e-02 -8.91560336e-01]\n", + " [ 4.52338643e-01 -2.25813963e-02 -8.91560336e-01]\n", + " [ 1.79935933e-01 -2.43487612e-02 -9.83376936e-01]\n", + " [ 1.79935933e-01 -2.43487612e-02 -9.83376936e-01]\n", + " [ 4.36704064e-01 -2.29410662e-02 -8.99312664e-01]\n", + " [ 4.13362484e-01 -4.79970662e-02 -9.09300687e-01]\n", + " [ 3.89561395e-01 -7.27339546e-02 -9.18124006e-01]\n", + " [ 3.65449685e-01 -9.70028276e-02 -9.25762918e-01]\n", + " [ 3.41182322e-01 -1.20653659e-01 -9.32221711e-01]\n", + " [ 3.16920231e-01 -1.43532662e-01 -9.37528635e-01]\n", + " [ 4.14558840e-01 1.56915455e-03 -9.10021157e-01]\n", + " [ 3.91023460e-01 -2.37791992e-02 -9.20073477e-01]\n", + " [ 3.67064140e-01 -4.88575780e-02 -9.28911650e-01]\n", + " [ 3.42831117e-01 -7.35165990e-02 -9.36515955e-01]\n", + " [ 3.18479962e-01 -9.76073513e-02 -9.42890937e-01]\n", + " [ 2.94171178e-01 -1.20979124e-01 -9.48065066e-01]\n", + " [ 3.91429742e-01 2.66113208e-02 -9.19823132e-01]\n", + " [ 3.67746414e-01 1.01757820e-03 -9.29925556e-01]\n", + " [ 3.43678188e-01 -2.43551580e-02 -9.38771607e-01]\n", + " [ 3.19376371e-01 -4.93562834e-02 -9.46341741e-01]\n", + " [ 2.94996855e-01 -7.38368713e-02 -9.52641051e-01]\n", + " [ 2.70699523e-01 -9.76479660e-02 -9.57698618e-01]\n", + " [ 3.67423298e-01 5.20371026e-02 -9.28596931e-01]\n", + " [ 3.43639308e-01 2.62460118e-02 -9.38734879e-01]\n", + " [ 3.19512952e-01 6.26492600e-04 -9.47581702e-01]\n", + " [ 2.95196151e-01 -2.46692331e-02 -9.55118140e-01]\n", + " [ 2.70844699e-01 -4.94913773e-02 -9.61349964e-01]\n", + " [ 2.46617582e-01 -7.36914872e-02 -9.66307059e-01]\n", + " [ 3.42658740e-01 7.76957339e-02 -9.36241614e-01]\n", + " [ 3.18822545e-01 5.17568233e-02 -9.46400241e-01]\n", + " [ 2.94689770e-01 2.59394213e-02 -9.55240852e-01]\n", + " [ 2.70412392e-01 3.97424770e-04 -9.62744504e-01]\n", + " [ 2.46145628e-01 -2.47180330e-02 -9.68917617e-01]\n", + " [ 2.22047297e-01 -4.92580370e-02 -9.73790862e-01]\n", + " [ 3.17268621e-01 1.03433710e-01 -9.42678148e-01]\n", + " [ 2.93429355e-01 7.73979630e-02 -9.52842468e-01]\n", + " [ 2.69342119e-01 5.14332374e-02 -9.61670133e-01]\n", + " [ 2.45158362e-01 2.56948881e-02 -9.69142482e-01]\n", + " [ 2.21032270e-01 3.35539492e-04 -9.75266437e-01]\n", + " [ 1.97120303e-01 -2.44948145e-02 -9.80073258e-01]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:fp_optics: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:cartToSphere: vec: [[ 0.56995302 0.45264343 -0.68576051]\n", + " [ 0.59171432 0.45099118 -0.66819242]\n", + " [ 0.6134293 0.44894095 -0.64973573]\n", + " [ 0.63498564 0.44648122 -0.63043457]\n", + " [ 0.65627723 0.44360505 -0.61033987]\n", + " [ 0.67720302 0.44031037 -0.58951069]\n", + " [ 0.69766686 0.43660036 -0.56801503]\n", + " [ 0.71757829 0.43248358 -0.54592981]\n", + " [ 0.56995302 0.45264343 -0.68576051]\n", + " [ 0.56269684 0.4782867 -0.67425077]\n", + " [ 0.55506914 0.50344211 -0.66215126]\n", + " [ 0.54710859 0.52801691 -0.64951546]\n", + " [ 0.53886126 0.55192399 -0.63640275]\n", + " [ 0.530381 0.57508174 -0.62287799]\n", + " [ 0.52173007 0.59741343 -0.60901143]\n", + " [ 0.51297966 0.61884656 -0.59487881]\n", + " [ 0.71757829 0.43248358 -0.54592981]\n", + " [ 0.70995015 0.45901304 -0.53411405]\n", + " [ 0.70171106 0.48504498 -0.52185531]\n", + " [ 0.69290267 0.5104823 -0.5092089 ]\n", + " [ 0.6835739 0.53523605 -0.49623491]\n", + " [ 0.67378034 0.55922567 -0.48299762]\n", + " [ 0.66358408 0.58237831 -0.46956541]\n", + " [ 0.65305403 0.60462722 -0.45601136]\n", + " [ 0.51297966 0.61884656 -0.59487881]\n", + " [ 0.53329666 0.61861645 -0.57698212]\n", + " [ 0.55369313 0.61779692 -0.55834657]\n", + " [ 0.57405172 0.61637738 -0.53902092]\n", + " [ 0.59426394 0.61435099 -0.51905995]\n", + " [ 0.61422928 0.61171501 -0.49852496]\n", + " [ 0.63385464 0.60847138 -0.4774839 ]\n", + " [ 0.65305403 0.60462722 -0.45601136]\n", + " [ 0.57941498 0.45205981 -0.67817417]\n", + " [ 0.60606881 0.44976974 -0.65603946]\n", + " [ 0.63254074 0.44686977 -0.63261332]\n", + " [ 0.65863294 0.44334522 -0.60798657]\n", + " [ 0.68415935 0.43919234 -0.58226804]\n", + " [ 0.70894529 0.43441918 -0.55558667]\n", + " [ 0.5669114 0.46387317 -0.68075924]\n", + " [ 0.55776346 0.49498641 -0.66624949]\n", + " [ 0.54809491 0.52527403 -0.65090642]\n", + " [ 0.53798746 0.55457333 -0.63483692]\n", + " [ 0.52754037 0.58273397 -0.6181604 ]\n", + " [ 0.5168719 0.60961652 -0.60100844]\n", + " [ 0.71426282 0.44411992 -0.54091231]\n", + " [ 0.7044982 0.4763124 -0.52612621]\n", + " [ 0.69385661 0.50766023 -0.51072898]\n", + " [ 0.6824251 0.53799622 -0.49482931]\n", + " [ 0.670306 0.56717198 -0.47854552]\n", + " [ 0.6576164 0.59505603 -0.46200541]\n", + " [ 0.52185083 0.6187459 -0.58721821]\n", + " [ 0.54682154 0.61806828 -0.5647812 ]\n", + " [ 0.5717939 0.61649449 -0.54128206]\n", + " [ 0.59656452 0.6140104 -0.51681912]\n", + " [ 0.62094832 0.61061102 -0.49150521]\n", + " [ 0.64477683 0.60630204 -0.46546823]\n", + " [ 0.57000324 0.45272686 -0.68566369]\n", + " [ 0.57000324 0.45272686 -0.68566369]\n", + " [ 0.65302568 0.60456691 -0.4561319 ]\n", + " [ 0.65302568 0.60456691 -0.4561319 ]\n", + " [ 0.57630919 0.46324976 -0.67325135]\n", + " [ 0.56710355 0.49448374 -0.65869522]\n", + " [ 0.55735048 0.52488747 -0.64331453]\n", + " [ 0.54713152 0.55429811 -0.62721663]\n", + " [ 0.53654542 0.58256572 -0.61052125]\n", + " [ 0.52570974 0.60955159 -0.59336003]\n", + " [ 0.60292751 0.46106958 -0.65107085]\n", + " [ 0.59357228 0.4926082 -0.63640326]\n", + " [ 0.58359753 0.5233053 -0.6209392 ]\n", + " [ 0.57308476 0.55299742 -0.60478733]\n", + " [ 0.56213184 0.58153554 -0.5880682 ]\n", + " [ 0.55085457 0.60878317 -0.57091356]\n", + " [ 0.62936996 0.45825892 -0.62760833]\n", + " [ 0.61988536 0.4900462 -0.61285958]\n", + " [ 0.60971422 0.52098391 -0.59734775]\n", + " [ 0.59893875 0.55090768 -0.58118251]\n", + " [ 0.58765681 0.57966911 -0.5644849 ]\n", + " [ 0.57598323 0.60713377 -0.54738644]\n", + " [ 0.65543884 0.45480249 -0.60295491]\n", + " [ 0.64584529 0.48678101 -0.58815653]\n", + " [ 0.63550278 0.51790584 -0.57263405]\n", + " [ 0.62449475 0.54801158 -0.55649763]\n", + " [ 0.61291996 0.57695012 -0.53986821]\n", + " [ 0.60089313 0.60458863 -0.52287669]\n", + " [ 0.68094831 0.45069584 -0.57721977]\n", + " [ 0.67126698 0.48280645 -0.56240428]\n", + " [ 0.66077884 0.51406382 -0.54690924]\n", + " [ 0.64956892 0.54430158 -0.53084462]\n", + " [ 0.63773737 0.57337165 -0.51433064]\n", + " [ 0.62539963 0.60114221 -0.49749709]\n", + " [ 0.70572391 0.4459464 -0.55053208]\n", + " [ 0.69597697 0.47812839 -0.53573249]\n", + " [ 0.68537039 0.50946258 -0.5203031 ]\n", + " [ 0.67399074 0.53978192 -0.50435301]\n", + " [ 0.66193979 0.56893814 -0.48800114]\n", + " [ 0.64933418 0.59679977 -0.47137582]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:fp_optics: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:cartToSphere: vec: [[-3.35562401e-02 5.77431616e-01 -8.15749170e-01]\n", + " [-2.89478119e-02 5.54728400e-01 -8.31527767e-01]\n", + " [-2.42259865e-02 5.31128654e-01 -8.46944776e-01]\n", + " [-1.94082562e-02 5.06702388e-01 -8.61902552e-01]\n", + " [-1.45123811e-02 4.81525006e-01 -8.76312193e-01]\n", + " [-9.55667558e-03 4.55678933e-01 -8.90092905e-01]\n", + " [-4.56013404e-03 4.29254507e-01 -9.03172062e-01]\n", + " [ 4.57636927e-04 4.02349894e-01 -9.15485857e-01]\n", + " [-3.35562401e-02 5.77431616e-01 -8.15749170e-01]\n", + " [-4.91446375e-03 5.81575629e-01 -8.13477496e-01]\n", + " [ 2.36552965e-02 5.85140163e-01 -8.10587081e-01]\n", + " [ 5.20419963e-02 5.88115929e-01 -8.07100542e-01]\n", + " [ 8.01354630e-02 5.90498526e-01 -8.03050309e-01]\n", + " [ 1.07826445e-01 5.92288011e-01 -7.98478785e-01]\n", + " [ 1.35006332e-01 5.93488501e-01 -7.93438523e-01]\n", + " [ 1.61566769e-01 5.94108002e-01 -7.87992297e-01]\n", + " [ 4.57636927e-04 4.02349894e-01 -9.15485857e-01]\n", + " [ 3.00479478e-02 4.06755913e-01 -9.13042577e-01]\n", + " [ 5.95154591e-02 4.10781168e-01 -9.09789394e-01]\n", + " [ 8.87443977e-02 4.14415017e-01 -9.05750863e-01]\n", + " [ 1.17622551e-01 4.17651896e-01 -9.00961614e-01]\n", + " [ 1.46041725e-01 4.20491134e-01 -8.95465812e-01]\n", + " [ 1.73897061e-01 4.22936653e-01 -8.89316816e-01]\n", + " [ 2.01085374e-01 4.24996639e-01 -8.82577209e-01]\n", + " [ 1.61566769e-01 5.94108002e-01 -7.87992297e-01]\n", + " [ 1.67731842e-01 5.72244011e-01 -8.02747047e-01]\n", + " [ 1.73756234e-01 5.49483244e-01 -8.17237381e-01]\n", + " [ 1.79620952e-01 5.25900191e-01 -8.31363520e-01]\n", + " [ 1.85306424e-01 5.01573728e-01 -8.45035694e-01]\n", + " [ 1.90792525e-01 4.76587520e-01 -8.58173962e-01]\n", + " [ 1.96058891e-01 4.51030424e-01 -8.70708027e-01]\n", + " [ 2.01085374e-01 4.24996639e-01 -8.82577209e-01]\n", + " [-3.14636851e-02 5.67662682e-01 -8.22659782e-01]\n", + " [-2.57361676e-02 5.39226226e-01 -8.41767621e-01]\n", + " [-1.98558744e-02 5.09512179e-01 -8.60234319e-01]\n", + " [-1.38553775e-02 4.78657029e-01 -8.77892634e-01]\n", + " [-7.76841418e-03 4.46812619e-01 -8.94593838e-01]\n", + " [-1.63022227e-03 4.14148555e-01 -9.10207843e-01]\n", + " [-2.10506629e-02 5.79232901e-01 -8.14890248e-01]\n", + " [ 1.40193436e-02 5.83923793e-01 -8.11687417e-01]\n", + " [ 4.88707070e-02 5.87734600e-01 -8.07576432e-01]\n", + " [ 8.33002222e-02 5.90655209e-01 -8.02612918e-01]\n", + " [ 1.17106729e-01 5.92685681e-01 -7.96874957e-01]\n", + " [ 1.50090396e-01 5.93835204e-01 -7.90463550e-01]\n", + " [ 1.33495175e-02 4.04409549e-01 -9.14480567e-01]\n", + " [ 4.95475375e-02 4.09554940e-01 -9.10938962e-01]\n", + " [ 8.54457690e-02 4.14117094e-01 -9.06204200e-01]\n", + " [ 1.20836090e-01 4.18083663e-01 -9.00335876e-01]\n", + " [ 1.55519238e-01 4.21453384e-01 -8.93415252e-01]\n", + " [ 1.89302969e-01 4.24235262e-01 -8.85544369e-01]\n", + " [ 1.64180902e-01 5.84688634e-01 -7.94470788e-01]\n", + " [ 1.71643812e-01 5.57278987e-01 -8.12390628e-01]\n", + " [ 1.78876771e-01 5.28595851e-01 -8.29812947e-01]\n", + " [ 1.85844001e-01 4.98782602e-01 -8.46568322e-01]\n", + " [ 1.92508486e-01 4.67993309e-01 -8.62509563e-01]\n", + " [ 1.98832803e-01 4.36393784e-01 -8.77511243e-01]\n", + " [-3.34427501e-02 5.77370727e-01 -8.15796927e-01]\n", + " [-3.34427501e-02 5.77370727e-01 -8.15796927e-01]\n", + " [ 2.00976895e-01 4.25079969e-01 -8.82561787e-01]\n", + " [ 2.00976895e-01 4.25079969e-01 -8.82561787e-01]\n", + " [-1.90235669e-02 5.69533498e-01 -8.21747953e-01]\n", + " [ 1.61795948e-02 5.74258490e-01 -8.18514146e-01]\n", + " [ 5.11592853e-02 5.78117732e-01 -8.14347970e-01]\n", + " [ 8.57119776e-02 5.81101447e-01 -8.09304989e-01]\n", + " [ 1.19636635e-01 5.83210143e-01 -8.03463132e-01]\n", + " [ 1.52733840e-01 5.84453359e-01 -7.96923237e-01]\n", + " [-1.31753906e-02 5.41119323e-01 -8.40842606e-01]\n", + " [ 2.23611251e-02 5.45936339e-01 -8.37528205e-01]\n", + " [ 5.76599438e-02 5.49930527e-01 -8.33217707e-01]\n", + " [ 9.25164306e-02 5.53092864e-01 -8.27966783e-01]\n", + " [ 1.26729911e-01 5.55424998e-01 -8.21853151e-01]\n", + " [ 1.60102465e-01 5.56937563e-01 -8.14977148e-01]\n", + " [-7.19755537e-03 5.11424308e-01 -8.59298186e-01]\n", + " [ 2.86065443e-02 5.16327075e-01 -8.55913557e-01]\n", + " [ 6.41581461e-02 5.20453986e-01 -8.51476001e-01]\n", + " [ 9.92513534e-02 5.23796261e-01 -8.46041752e-01]\n", + " [ 1.33685819e-01 5.26356160e-01 -8.39688808e-01]\n", + " [ 1.67265317e-01 5.28145123e-01 -8.32517293e-01]\n", + " [-1.12327886e-03 4.80584895e-01 -8.76947488e-01]\n", + " [ 3.48809142e-02 4.85567484e-01 -8.73503028e-01]\n", + " [ 7.06176947e-02 4.89825915e-01 -8.68955531e-01]\n", + " [ 1.05879997e-01 4.93350994e-01 -8.63362162e-01]\n", + " [ 1.40467771e-01 4.96144806e-01 -8.56801691e-01]\n", + " [ 1.74186403e-01 4.98218926e-01 -8.49374475e-01]\n", + " [ 5.01293404e-03 4.48752824e-01 -8.93641860e-01]\n", + " [ 4.11477322e-02 4.53809176e-01 -8.90148356e-01]\n", + " [ 7.70006528e-02 4.58198070e-01 -8.85508570e-01]\n", + " [ 1.12363809e-01 4.61909269e-01 -8.79780769e-01]\n", + " [ 1.47037460e-01 4.64943854e-01 -8.73044786e-01]\n", + " [ 1.80828316e-01 4.67312744e-01 -8.65401595e-01]\n", + " [ 1.11751768e-02 4.16097566e-01 -9.09251303e-01]\n", + " [ 4.73694079e-02 4.21221025e-01 -9.05720149e-01]\n", + " [ 8.32682879e-02 4.25738513e-01 -9.01006721e-01]\n", + " [ 1.18663648e-01 4.29638281e-01 -8.95170311e-01]\n", + " [ 1.53356096e-01 4.32919751e-01 -8.88291842e-01]\n", + " [ 1.87153211e-01 4.35592507e-01 -8.80473079e-01]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:fp_optics: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:cartToSphere: vec: [[-4.06589063e-02 -5.77538967e-01 8.15349983e-01]\n", + " [-3.51620439e-02 -5.55055669e-01 8.31069693e-01]\n", + " [-2.95273195e-02 -5.31674358e-01 8.46433999e-01]\n", + " [-2.37756803e-02 -5.07464160e-01 8.61344788e-01]\n", + " [-1.79283431e-02 -4.82499430e-01 8.75712781e-01]\n", + " [-1.20071538e-02 -4.56861408e-01 8.89456847e-01]\n", + " [-6.03476162e-03 -4.30639182e-01 9.02504003e-01]\n", + " [-3.45613671e-05 -4.03929685e-01 9.14790035e-01]\n", + " [-4.06589063e-02 -5.77538967e-01 8.15349983e-01]\n", + " [-1.22120010e-02 -5.82555870e-01 8.12698914e-01]\n", + " [ 1.61745733e-02 -5.86990143e-01 8.09432490e-01]\n", + " [ 4.43904749e-02 -5.90829011e-01 8.05574680e-01]\n", + " [ 7.23261853e-02 -5.94064596e-01 8.01159272e-01]\n", + " [ 9.98730764e-02 -5.96693499e-01 7.96230015e-01]\n", + " [ 1.26923159e-01 -5.98716407e-01 7.90840803e-01]\n", + " [ 1.53368735e-01 -6.00137925e-01 7.85055732e-01]\n", + " [-3.45613671e-05 -4.03929685e-01 9.14790035e-01]\n", + " [ 2.93726037e-02 -4.09237080e-01 9.11955187e-01]\n", + " [ 5.86601042e-02 -4.14157862e-01 9.08312863e-01]\n", + " [ 8.77128366e-02 -4.18677827e-01 9.03889006e-01]\n", + " [ 1.16419217e-01 -4.22787969e-01 8.98719589e-01]\n", + " [ 1.44671660e-01 -4.26484302e-01 8.92850072e-01]\n", + " [ 1.72365923e-01 -4.29767529e-01 8.86335072e-01]\n", + " [ 1.99399473e-01 -4.32642646e-01 8.79238416e-01]\n", + " [ 1.53368735e-01 -6.00137925e-01 7.85055732e-01]\n", + " [ 1.60403765e-01 -5.78539020e-01 7.99726975e-01]\n", + " [ 1.67324239e-01 -5.56033564e-01 8.14143277e-01]\n", + " [ 1.74107564e-01 -5.32695116e-01 8.28204364e-01]\n", + " [ 1.80730587e-01 -5.08601575e-01 8.41819989e-01]\n", + " [ 1.87169573e-01 -4.83835566e-01 8.54909759e-01]\n", + " [ 1.93400495e-01 -4.58484878e-01 8.67402943e-01]\n", + " [ 1.99399473e-01 -4.32642646e-01 8.79238416e-01]\n", + " [-3.81829056e-02 -5.67869049e-01 8.22232819e-01]\n", + " [-3.13496241e-02 -5.39701256e-01 8.41272699e-01]\n", + " [-2.43302545e-02 -5.10252780e-01 8.59680254e-01]\n", + " [-1.71637281e-02 -4.79658243e-01 8.77287510e-01]\n", + " [-9.89028914e-03 -4.48067318e-01 8.93945110e-01]\n", + " [-2.55196040e-03 -4.15647309e-01 9.09522293e-01]\n", + " [-2.82366892e-02 -5.79721766e-01 8.14325097e-01]\n", + " [ 6.60225181e-03 -5.85480823e-01 8.10659371e-01]\n", + " [ 4.12407997e-02 -5.90351597e-01 8.06091923e-01]\n", + " [ 7.54769736e-02 -5.94317568e-01 8.00680870e-01]\n", + " [ 1.09110763e-01 -5.97372434e-01 7.94506775e-01]\n", + " [ 1.41943497e-01 -5.99519083e-01 7.87673100e-01]\n", + " [ 1.27737556e-02 -4.06382176e-01 9.13613900e-01]\n", + " [ 4.87493255e-02 -4.12628815e-01 9.09593846e-01]\n", + " [ 8.44304933e-02 -4.18279881e-01 9.04385666e-01]\n", + " [ 1.19610311e-01 -4.23316640e-01 8.98051444e-01]\n", + " [ 1.54090639e-01 -4.27731720e-01 8.90674829e-01]\n", + " [ 1.87680382e-01 -4.31528218e-01 8.82360171e-01]\n", + " [ 1.56359106e-01 -5.90832566e-01 7.91497763e-01]\n", + " [ 1.64906289e-01 -5.63741331e-01 8.09321709e-01]\n", + " [ 1.73259182e-01 -5.35361006e-01 8.26661871e-01]\n", + " [ 1.81375406e-01 -5.05833191e-01 8.43347938e-01]\n", + " [ 1.89211300e-01 -4.75310048e-01 8.59231891e-01]\n", + " [ 1.96722665e-01 -4.43955417e-01 8.74187497e-01]\n", + " [-4.05431093e-02 -5.77481819e-01 8.15396226e-01]\n", + " [-4.05431093e-02 -5.77481819e-01 8.15396226e-01]\n", + " [ 1.99288177e-01 -4.32722602e-01 8.79224302e-01]\n", + " [ 1.99288177e-01 -4.32722602e-01 8.79224302e-01]\n", + " [-2.58282478e-02 -5.70119114e-01 8.21155952e-01]\n", + " [ 9.14393041e-03 -5.75916314e-01 8.17457514e-01]\n", + " [ 4.39101472e-02 -5.80839347e-01 8.12833041e-01]\n", + " [ 7.82680902e-02 -5.84872020e-01 8.07340589e-01]\n", + " [ 1.12017850e-01 -5.88008481e-01 8.01060564e-01]\n", + " [ 1.44961136e-01 -5.90251971e-01 7.94096266e-01]\n", + " [-1.88736156e-02 -5.41977303e-01 8.40181165e-01]\n", + " [ 1.64324503e-02 -5.47876583e-01 8.36397767e-01]\n", + " [ 5.15162271e-02 -5.52943943e-01 8.31624359e-01]\n", + " [ 8.61742697e-02 -5.57163929e-01 8.25919095e-01]\n", + " [ 1.20206972e-01 -5.60531855e-01 8.19362144e-01]\n", + " [ 1.53417464e-01 -5.63052109e-01 8.12056281e-01]\n", + " [-1.17558357e-02 -5.12550837e-01 8.58576403e-01]\n", + " [ 2.38188212e-02 -5.18543830e-01 8.54719229e-01]\n", + " [ 5.91542399e-02 -5.23751131e-01 8.49814997e-01]\n", + " [ 9.40456945e-02 -5.28157523e-01 8.43922413e-01]\n", + " [ 1.28293868e-01 -5.31758984e-01 8.37121895e-01]\n", + " [ 1.61703539e-01 -5.34560793e-01 8.29515958e-01]\n", + " [-4.51446693e-03 -4.81974276e-01 8.76173736e-01]\n", + " [ 3.12617888e-02 -4.88052928e-01 8.72254000e-01]\n", + " [ 6.67816568e-02 -4.93396802e-01 8.67236880e-01]\n", + " [ 1.01839232e-01 -4.97990274e-01 8.61182012e-01]\n", + " [ 1.36235486e-01 -5.01829210e-01 8.54170555e-01]\n", + " [ 1.69776803e-01 -5.04919119e-01 8.46305217e-01]\n", + " [ 2.80948412e-03 -4.50397168e-01 8.92823890e-01]\n", + " [ 3.87183528e-02 -4.56553260e-01 8.88853199e-01]\n", + " [ 7.43540310e-02 -4.62030503e-01 8.83741644e-01]\n", + " [ 1.09509792e-01 -4.66812244e-01 8.77549961e-01]\n", + " [ 1.43986940e-01 -4.70893404e-01 8.70360364e-01]\n", + " [ 1.77593221e-01 -4.74278920e-01 8.62276147e-01]\n", + " [ 1.01733172e-02 -4.17986663e-01 9.08396198e-01]\n", + " [ 4.61441100e-02 -4.24211362e-01 9.04386777e-01]\n", + " [ 8.18258106e-02 -4.29817986e-01 8.99200220e-01]\n", + " [ 1.17011419e-01 -4.34788389e-01 8.92898306e-01]\n", + " [ 1.51502641e-01 -4.39115878e-01 8.85564337e-01]\n", + " [ 1.85108170e-01 -4.42804114e-01 8.77302389e-01]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:cartToSphere: vec: [[-0.52619334 0.56222123 -0.63798735]\n", + " [-0.50570274 0.55926798 -0.65687446]\n", + " [-0.48439703 0.55580326 -0.6756051 ]\n", + " [-0.46233894 0.55181643 -0.69407588]\n", + " [-0.43959681 0.54730271 -0.71218986]\n", + " [-0.41624568 0.54226348 -0.72985605]\n", + " [-0.39236759 0.53670665 -0.74698973]\n", + " [-0.36805117 0.53064674 -0.76351317]\n", + " [-0.52619334 0.56222123 -0.63798735]\n", + " [-0.51297292 0.58581711 -0.62743693]\n", + " [-0.49929301 0.60883681 -0.61646106]\n", + " [-0.48521111 0.63119705 -0.60511194]\n", + " [-0.47078867 0.65282125 -0.59344961]\n", + " [-0.45609058 0.6736394 -0.58154221]\n", + " [-0.44118501 0.69358735 -0.56946675]\n", + " [-0.42614349 0.71260589 -0.55731012]\n", + " [-0.36805117 0.53064674 -0.76351317]\n", + " [-0.35448615 0.5550599 -0.75249457]\n", + " [-0.34064468 0.57889677 -0.74083718]\n", + " [-0.32658579 0.60207045 -0.72859653]\n", + " [-0.31237141 0.62450241 -0.71583576]\n", + " [-0.29806577 0.64612294 -0.70262504]\n", + " [-0.28373524 0.66687079 -0.68904112]\n", + " [-0.26944868 0.68669216 -0.6751676 ]\n", + " [-0.42614349 0.71260589 -0.55731012]\n", + " [-0.4053914 0.71095315 -0.5746333 ]\n", + " [-0.38397478 0.70862405 -0.59195889]\n", + " [-0.36196148 0.70560964 -0.60917889]\n", + " [-0.33942336 0.70190549 -0.62619523]\n", + " [-0.31643686 0.69751239 -0.64291848]\n", + " [-0.2930833 0.69243695 -0.65926721]\n", + " [-0.26944868 0.68669216 -0.6751676 ]\n", + " [-0.51731888 0.56107748 -0.64619907]\n", + " [-0.49164932 0.55711644 -0.66925497]\n", + " [-0.46481731 0.55237582 -0.69197241]\n", + " [-0.43694625 0.54684433 -0.71417032]\n", + " [-0.40817432 0.54052459 -0.73568124]\n", + " [-0.37865534 0.53343388 -0.75635205]\n", + " [-0.5204204 0.57256544 -0.63350724]\n", + " [-0.50390101 0.60110879 -0.62028381]\n", + " [-0.48674824 0.62870315 -0.60647218]\n", + " [-0.46907357 0.65520477 -0.59217961]\n", + " [-0.45099648 0.68048466 -0.57753164]\n", + " [-0.43264384 0.70442685 -0.56267408]\n", + " [-0.36225819 0.54137748 -0.75873541]\n", + " [-0.3454396 0.57092198 -0.74479499]\n", + " [-0.32826393 0.59951359 -0.72994948]\n", + " [-0.310844 0.62700425 -0.71431203]\n", + " [-0.29329804 0.65326555 -0.69801174]\n", + " [-0.27574923 0.67818792 -0.68119271]\n", + " [-0.41723295 0.71190406 -0.56489758]\n", + " [-0.39134367 0.70942427 -0.58614617]\n", + " [-0.36452314 0.70591926 -0.60728978]\n", + " [-0.33690191 0.70137901 -0.62814376]\n", + " [-0.30862075 0.695805 -0.64854347]\n", + " [-0.27983133 0.68921205 -0.66834211]\n", + " [-0.52608036 0.56229356 -0.63801678]\n", + " [-0.52608036 0.56229356 -0.63801678]\n", + " [-0.26957858 0.68664678 -0.6751619 ]\n", + " [-0.26957858 0.68664678 -0.6751619 ]\n", + " [-0.51163792 0.57138953 -0.6416702 ]\n", + " [-0.49506784 0.60004378 -0.62837512]\n", + " [-0.47787777 0.62774441 -0.61446708]\n", + " [-0.46017972 0.65434754 -0.60005327]\n", + " [-0.4420935 0.67972458 -0.58525877]\n", + " [-0.42374616 0.70376046 -0.57022837]\n", + " [-0.48591604 0.56752965 -0.66467714]\n", + " [-0.46922434 0.59646417 -0.65119814]\n", + " [-0.4519531 0.62443449 -0.63704 ]\n", + " [-0.43421551 0.65129614 -0.62231039]\n", + " [-0.41613225 0.67692133 -0.6071338 ]\n", + " [-0.39783061 0.70119727 -0.59165294]\n", + " [-0.45904252 0.56287116 -0.68735437]\n", + " [-0.44226273 0.59203504 -0.67371966]\n", + " [-0.42494783 0.62022853 -0.65934506]\n", + " [-0.40721182 0.64730625 -0.64433931]\n", + " [-0.38917573 0.67314072 -0.62882734]\n", + " [-0.37096667 0.69762087 -0.61295094]\n", + " [-0.43114111 0.55740222 -0.70952104]\n", + " [-0.41430788 0.5867433 -0.6957595 ]\n", + " [-0.39698815 0.61511274 -0.68120241]\n", + " [-0.37929619 0.64236417 -0.66595996]\n", + " [-0.36135284 0.66837006 -0.65015813]\n", + " [-0.3432845 0.69302043 -0.63393883]\n", + " [-0.40235031 0.55112488 -0.73100998]\n", + " [-0.38549909 0.58058955 -0.71715147]\n", + " [-0.368214 0.60908674 -0.70244701]\n", + " [-0.35060903 0.63646918 -0.68700822]\n", + " [-0.33280423 0.66260904 -0.67096245]\n", + " [-0.31492486 0.68739684 -0.65445238]\n", + " [-0.37282415 0.54405597 -0.75166831]\n", + " [-0.35599074 0.57358944 -0.73774369]\n", + " [-0.33877966 0.6021652 -0.72292836]\n", + " [-0.32130412 0.62963535 -0.70733513]\n", + " [-0.30368291 0.65587165 -0.69109267]\n", + " [-0.28603976 0.68076461 -0.67434472]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:fp_optics: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:fp_optics: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:cartToSphere: vec: [[-1.44312814e-01 -2.53376649e-01 9.56542778e-01]\n", + " [-1.63661908e-01 -2.33232413e-01 9.58549645e-01]\n", + " [-1.83265518e-01 -2.12498406e-01 9.59821951e-01]\n", + " [-2.03038204e-01 -1.91247016e-01 9.60312484e-01]\n", + " [-2.22895926e-01 -1.69553376e-01 9.59983885e-01]\n", + " [-2.42755269e-01 -1.47496339e-01 9.58809006e-01]\n", + " [-2.62533469e-01 -1.25158650e-01 9.56771389e-01]\n", + " [-2.82148993e-01 -1.02626488e-01 9.53865687e-01]\n", + " [-1.44312814e-01 -2.53376649e-01 9.56542778e-01]\n", + " [-1.23803109e-01 -2.34339403e-01 9.64239511e-01]\n", + " [-1.03324490e-01 -2.15096252e-01 9.71111555e-01]\n", + " [-8.29604412e-02 -1.95723166e-01 9.77143801e-01]\n", + " [-6.27966002e-02 -1.76296880e-01 9.82331918e-01]\n", + " [-4.29212024e-02 -1.56894524e-01 9.86682258e-01]\n", + " [-2.34260615e-02 -1.37593555e-01 9.90211711e-01]\n", + " [-4.40795557e-03 -1.18472093e-01 9.92947598e-01]\n", + " [-2.82148993e-01 -1.02626488e-01 9.53865687e-01]\n", + " [-2.60823406e-01 -8.30432683e-02 9.61808176e-01]\n", + " [-2.39334417e-01 -6.34469560e-02 9.68861972e-01]\n", + " [-2.17770078e-01 -4.39158276e-02 9.75011586e-01]\n", + " [-1.96219602e-01 -2.45274154e-02 9.80253168e-01]\n", + " [-1.74772673e-01 -5.35793841e-03 9.84594234e-01]\n", + " [-1.53519351e-01 1.35177449e-02 9.88053176e-01]\n", + " [-1.32550795e-01 3.20254690e-02 9.90658698e-01]\n", + " [-4.40795557e-03 -1.18472093e-01 9.92947598e-01]\n", + " [-2.17622786e-02 -9.78096587e-02 9.94967172e-01]\n", + " [-3.95780474e-02 -7.67369951e-02 9.96265533e-01]\n", + " [-5.77643914e-02 -5.53312670e-02 9.96795729e-01]\n", + " [-7.62355727e-02 -3.36709359e-02 9.96521152e-01]\n", + " [-9.49095721e-02 -1.18362881e-02 9.95415529e-01]\n", + " [-1.13707046e-01 1.00904663e-02 9.93463079e-01]\n", + " [-1.32550795e-01 3.20254690e-02 9.90658698e-01]\n", + " [-1.52641848e-01 -2.44605853e-01 9.57532476e-01]\n", + " [-1.76537472e-01 -2.19510767e-01 9.59504843e-01]\n", + " [-2.00730405e-01 -1.93601644e-01 9.60325834e-01]\n", + " [-2.25065424e-01 -1.67015586e-01 9.59922574e-01]\n", + " [-2.49388977e-01 -1.39897780e-01 9.58245140e-01]\n", + " [-2.73549170e-01 -1.12402026e-01 9.55267835e-01]\n", + " [-1.35437281e-01 -2.45038420e-01 9.60006727e-01]\n", + " [-1.10310185e-01 -2.21557766e-01 9.68887929e-01]\n", + " [-8.53123771e-02 -1.97843343e-01 9.76514111e-01]\n", + " [-6.06006152e-02 -1.74036130e-01 9.82872825e-01]\n", + " [-3.63374465e-02 -1.50278113e-01 9.87975748e-01]\n", + " [-1.26938771e-02 -1.26712129e-01 9.91858307e-01]\n", + " [-2.72809921e-01 -9.41720397e-02 9.57447844e-01]\n", + " [-2.46552557e-01 -7.01520692e-02 9.66587049e-01]\n", + " [-2.20137214e-01 -4.61901054e-02 9.74374713e-01]\n", + " [-1.93727686e-01 -2.24292347e-02 9.80798916e-01]\n", + " [-1.67489067e-01 9.90229699e-04 9.85873436e-01]\n", + " [-1.41587532e-01 2.39308225e-02 9.89636442e-01]\n", + " [-1.19764061e-02 -1.09583524e-01 9.93905437e-01]\n", + " [-3.35696157e-02 -8.39739310e-02 9.95902334e-01]\n", + " [-5.57648508e-02 -5.78245855e-02 9.96768077e-01]\n", + " [-7.84022198e-02 -3.12793519e-02 9.96430978e-01]\n", + " [-1.01330613e-01 -4.48604600e-03 9.94842692e-01]\n", + " [-1.24404858e-01 2.24032747e-02 9.91978591e-01]\n", + " [-1.44308350e-01 -2.53244183e-01 9.56578530e-01]\n", + " [-1.44308350e-01 -2.53244183e-01 9.56578530e-01]\n", + " [-1.32557475e-01 3.18879607e-02 9.90662240e-01]\n", + " [-1.32557475e-01 3.18879607e-02 9.90662240e-01]\n", + " [-1.43734332e-01 -2.36369148e-01 9.60973500e-01]\n", + " [-1.18490859e-01 -2.12811674e-01 9.69882007e-01]\n", + " [-9.33575559e-02 -1.89036929e-01 9.77522074e-01]\n", + " [-6.84911388e-02 -1.65186392e-01 9.83881304e-01]\n", + " [-4.40534817e-02 -1.41402318e-01 9.88971524e-01]\n", + " [-2.02142277e-02 -1.17827502e-01 9.92828316e-01]\n", + " [-1.67537827e-01 -2.11196666e-01 9.62978216e-01]\n", + " [-1.41997013e-01 -1.87451382e-01 9.71956186e-01]\n", + " [-1.16513786e-01 -1.63536645e-01 9.79632739e-01]\n", + " [-9.12454081e-02 -1.39595227e-01 9.85995663e-01]\n", + " [-6.63526890e-02 -1.15769978e-01 9.91057331e-01]\n", + " [-4.20021795e-02 -9.22033950e-02 9.94853934e-01]\n", + " [-1.91655340e-01 -1.85225630e-01 9.63825553e-01]\n", + " [-1.65865345e-01 -1.61337766e-01 9.72861148e-01]\n", + " [-1.40081888e-01 -1.37330102e-01 9.80569991e-01]\n", + " [-1.14463528e-01 -1.13346356e-01 9.86940071e-01]\n", + " [-8.91711532e-02 -8.95295765e-02 9.91984355e-01]\n", + " [-6.43695605e-02 -6.60216205e-02 9.95739778e-01]\n", + " [-2.15932115e-01 -1.58593607e-01 9.63442468e-01]\n", + " [-1.89942207e-01 -1.34609821e-01 9.72523601e-01]\n", + " [-1.63908716e-01 -1.10557728e-01 9.80260640e-01]\n", + " [-1.37991882e-01 -8.65815050e-02 9.86641720e-01]\n", + " [-1.12353499e-01 -6.28239163e-02 9.91680315e-01]\n", + " [-8.71578638e-02 -3.94258051e-02 9.95414041e-01]\n", + " [-2.40215119e-01 -1.31446236e-01 9.61778864e-01]\n", + " [-2.14076087e-01 -1.07414315e-01 9.70893194e-01]\n", + " [-1.87844144e-01 -8.33671195e-02 9.78654434e-01]\n", + " [-1.61681233e-01 -5.94487323e-02 9.85050774e-01]\n", + " [-1.35750508e-01 -3.58011513e-02 9.90095994e-01]\n", + " [-1.10216699e-01 -1.25638901e-02 9.93828168e-01]\n", + " [-2.64352888e-01 -1.03937650e-01 9.58808905e-01]\n", + " [-2.38117004e-01 -7.99060020e-02 9.67943864e-01]\n", + " [-2.11739884e-01 -5.59131449e-02 9.75725341e-01]\n", + " [-1.85384914e-01 -3.21025149e-02 9.82141468e-01]\n", + " [-1.59216703e-01 -8.61492248e-03 9.87206070e-01]\n", + " [-1.33400994e-01 1.44116277e-02 9.90957355e-01]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:cartToSphere: vec: [[-0.84648747 -0.36914661 0.38365316]\n", + " [-0.83249541 -0.37597258 0.40693489]\n", + " [-0.81755245 -0.38262973 0.43035158]\n", + " [-0.80168152 -0.38907515 0.4537921 ]\n", + " [-0.78491398 -0.39526979 0.4771497 ]\n", + " [-0.76729089 -0.40117819 0.50032064]\n", + " [-0.74886381 -0.40676858 0.52320389]\n", + " [-0.72969491 -0.41201319 0.54570182]\n", + " [-0.84648747 -0.36914661 0.38365316]\n", + " [-0.83990401 -0.39499475 0.37221016]\n", + " [-0.83258954 -0.42045257 0.36057494]\n", + " [-0.82458128 -0.44542609 0.34879981]\n", + " [-0.81592448 -0.4698266 0.33694244]\n", + " [-0.80667206 -0.49357071 0.32506637]\n", + " [-0.79688446 -0.51657995 0.31324162]\n", + " [-0.78662971 -0.53878012 0.30154547]\n", + " [-0.72969491 -0.41201319 0.54570182]\n", + " [-0.72295552 -0.43871148 0.53372985]\n", + " [-0.715588 -0.4649291 0.5213202 ]\n", + " [-0.70763084 -0.49056808 0.50852881]\n", + " [-0.69912998 -0.51553838 0.49541644]\n", + " [-0.69013828 -0.53975814 0.48204803]\n", + " [-0.68071522 -0.56315302 0.46849275]\n", + " [-0.67092717 -0.58565461 0.4548246 ]\n", + " [-0.78662971 -0.53878012 0.30154547]\n", + " [-0.77241341 -0.54676956 0.32314173]\n", + " [-0.75736792 -0.55439503 0.34502172]\n", + " [-0.74152006 -0.56161246 0.36706872]\n", + " [-0.72490462 -0.56838152 0.38917315]\n", + " [-0.70756474 -0.57466569 0.41123167]\n", + " [-0.68955215 -0.58043262 0.43314639]\n", + " [-0.67092717 -0.58565461 0.4548246 ]\n", + " [-0.84048364 -0.37222989 0.39374123]\n", + " [-0.82269278 -0.38048878 0.42238002]\n", + " [-0.80349558 -0.38845085 0.45111061]\n", + " [-0.78294624 -0.39604263 0.47973474]\n", + " [-0.76112043 -0.40319883 0.50806141]\n", + " [-0.73811748 -0.40986262 0.53590598]\n", + " [-0.84366269 -0.38048219 0.37876982]\n", + " [-0.83509792 -0.41191221 0.36460911]\n", + " [-0.82547125 -0.44266189 0.35021088]\n", + " [-0.81486267 -0.47256573 0.33567909]\n", + " [-0.8033696 -0.50147017 0.32113075]\n", + " [-0.79110643 -0.52923254 0.30669778]\n", + " [-0.72690261 -0.42368894 0.54046302]\n", + " [-0.71821586 -0.45609983 0.52548922]\n", + " [-0.70862289 -0.4876906 0.5099132 ]\n", + " [-0.69820525 -0.51829214 0.49384481]\n", + " [-0.68706018 -0.54775367 0.47740363]\n", + " [-0.67530002 -0.57594091 0.46071895]\n", + " [-0.7805705 -0.54223069 0.31095911]\n", + " [-0.76258637 -0.55178312 0.33763502]\n", + " [-0.74338242 -0.56074476 0.36462019]\n", + " [-0.72301936 -0.56903983 0.39170995]\n", + " [-0.70157664 -0.57660111 0.41871395]\n", + " [-0.67915307 -0.58337097 0.44545417]\n", + " [-0.84642003 -0.36925914 0.38369366]\n", + " [-0.84642003 -0.36925914 0.38369366]\n", + " [-0.67102584 -0.58556236 0.45479781]\n", + " [-0.67102584 -0.58556236 0.45479781]\n", + " [-0.83771605 -0.38349636 0.38879604]\n", + " [-0.8291243 -0.41504187 0.37455726]\n", + " [-0.81947399 -0.44589544 0.36005503]\n", + " [-0.80884552 -0.47589131 0.34539309]\n", + " [-0.7973366 -0.50487611 0.33068786]\n", + " [-0.78506176 -0.53270775 0.31607037]\n", + " [-0.81989978 -0.39186446 0.41738064]\n", + " [-0.81124472 -0.4236993 0.40294033]\n", + " [-0.80154476 -0.45481102 0.38816611]\n", + " [-0.7908814 -0.48503296 0.37316168]\n", + " [-0.77935322 -0.5142123 0.35804227]\n", + " [-0.76707505 -0.54220872 0.3429367 ]\n", + " [-0.80068267 -0.399915 0.44606641]\n", + " [-0.79198441 -0.43198231 0.43145332]\n", + " [-0.78226147 -0.46329805 0.41643957]\n", + " [-0.77159622 -0.49369456 0.4011296 ]\n", + " [-0.76008784 -0.52301956 0.38563845]\n", + " [-0.74785127 -0.55113452 0.37009352]\n", + " [-0.78011912 -0.40757389 0.47465533]\n", + " [-0.77139865 -0.43981522 0.45989858]\n", + " [-0.76168064 -0.47127972 0.44467744]\n", + " [-0.75104791 -0.50179891 0.42909776]\n", + " [-0.73959976 -0.53122095 0.41327532]\n", + " [-0.72745083 -0.55940904 0.39733715]\n", + " [-0.75828498 -0.41477514 0.50295673]\n", + " [-0.74956399 -0.44713029 0.4880864 ]\n", + " [-0.73987966 -0.47868719 0.47269087]\n", + " [-0.72931468 -0.50927679 0.45687773]\n", + " [-0.71796784 -0.53874774 0.44076417]\n", + " [-0.70595307 -0.56696462 0.42447777]\n", + " [-0.73527974 -0.42146128 0.53078629]\n", + " [-0.7265802 -0.45386863 0.51583377]\n", + " [-0.71695839 -0.48546071 0.50029847]\n", + " [-0.70649624 -0.51606836 0.48428969]\n", + " [-0.6952915 -0.54554066 0.4679264 ]\n", + " [-0.68345696 -0.57374312 0.45133736]]\n", + "DEBUG:root:fp_optics: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:fp_optics: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:cartToSphere: vec: [[-0.01022478 0.33638077 0.94167055]\n", + " [-0.00993684 0.30990566 0.95071538]\n", + " [-0.00963453 0.28265042 0.9591746 ]\n", + " [-0.00931868 0.25471048 0.96697246]\n", + " [-0.00899019 0.22618389 0.97404313]\n", + " [-0.00865007 0.19717319 0.98033051]\n", + " [-0.00829945 0.16778627 0.98578846]\n", + " [-0.00793957 0.13813629 0.99038141]\n", + " [-0.01022478 0.33638077 0.94167055]\n", + " [-0.03922103 0.33580392 0.941115 ]\n", + " [-0.0680917 0.33485429 0.93980643]\n", + " [-0.09672457 0.3335368 0.937762 ]\n", + " [-0.12500841 0.33185818 0.93500965]\n", + " [-0.15283296 0.32982657 0.93158817]\n", + " [-0.18008862 0.32745114 0.92754722]\n", + " [-0.20666601 0.32474198 0.92294735]\n", + " [-0.00793957 0.13813629 0.99038141]\n", + " [-0.03794587 0.13767891 0.98974978]\n", + " [-0.06782227 0.13709654 0.98823311]\n", + " [-0.09745144 0.13639323 0.98584994]\n", + " [-0.12671975 0.13557453 0.98262997]\n", + " [-0.15551771 0.13464734 0.97861348]\n", + " [-0.18373932 0.13361986 0.97385091]\n", + " [-0.21128036 0.13250154 0.96840278]\n", + " [-0.20666601 0.32474198 0.92294735]\n", + " [-0.20813759 0.29905207 0.93126076]\n", + " [-0.20933856 0.27260066 0.93907734]\n", + " [-0.2102692 0.24548826 0.94632044]\n", + " [-0.2109293 0.21781693 0.95292424]\n", + " [-0.21131821 0.1896907 0.95883369]\n", + " [-0.2114353 0.16121595 0.96400442]\n", + " [-0.21128036 0.13250154 0.96840278]\n", + " [-0.01020069 0.32493817 0.94568025]\n", + " [-0.00983902 0.29195363 0.95638186]\n", + " [-0.00945639 0.25789194 0.96612749]\n", + " [-0.00905443 0.22293243 0.97479185]\n", + " [-0.00863499 0.18726394 0.98227168]\n", + " [-0.0082002 0.15108736 0.9884864 ]\n", + " [-0.02287491 0.33608623 0.94155339]\n", + " [-0.05834355 0.33512815 0.94036437]\n", + " [-0.09351194 0.33361495 0.93806001]\n", + " [-0.12817487 0.33155831 0.93468727]\n", + " [-0.16212934 0.32897316 0.93031755]\n", + " [-0.19517366 0.32587676 0.9250468 ]\n", + " [-0.02103201 0.13805412 0.99020135]\n", + " [-0.05773524 0.1374089 0.98883034]\n", + " [-0.09412642 0.13657959 0.98614717]\n", + " [-0.12999476 0.13557579 0.9822019 ]\n", + " [-0.16513863 0.13441023 0.97706864]\n", + " [-0.19936372 0.1330985 0.97084442]\n", + " [-0.20725093 0.31365057 0.92664468]\n", + " [-0.20887147 0.28163931 0.93651055]\n", + " [-0.21008605 0.24858391 0.94555269]\n", + " [-0.21089446 0.21467162 0.95364544]\n", + " [-0.21129562 0.18009398 0.96068742]\n", + " [-0.21128847 0.14504789 0.96660141]\n", + " [-0.01032306 0.33629034 0.94170178]\n", + " [-0.01032306 0.33629034 0.94170178]\n", + " [-0.21118845 0.13260399 0.96840881]\n", + " [-0.21118845 0.13260399 0.96840881]\n", + " [-0.02280212 0.32473493 0.94553016]\n", + " [-0.05841105 0.3237933 0.94432306]\n", + " [-0.09371896 0.32231743 0.94198101]\n", + " [-0.1285204 0.32031941 0.938551 ]\n", + " [-0.16261257 0.31781461 0.9341044 ]\n", + " [-0.19579424 0.31482058 0.92873711]\n", + " [-0.02256531 0.29175313 0.95622744]\n", + " [-0.05852729 0.29085961 0.95497395]\n", + " [-0.09418564 0.28949199 0.95253528]\n", + " [-0.12933392 0.28766325 0.94895869]\n", + " [-0.16376988 0.28538985 0.94431566]\n", + " [-0.19729394 0.28269026 0.93870193]\n", + " [-0.02228416 0.25769465 0.9659694 ]\n", + " [-0.05853286 0.2568522 0.96467655]\n", + " [-0.09447494 0.25559781 0.96215604]\n", + " [-0.12990272 0.2539448 0.9584557 ]\n", + " [-0.16461432 0.25191015 0.95364742]\n", + " [-0.19841199 0.24951289 0.94782699]\n", + " [-0.02195966 0.2227389 0.97463078]\n", + " [-0.05842716 0.22195109 0.9733057 ]\n", + " [-0.09458523 0.22081618 0.97071821]\n", + " [-0.13022491 0.21934711 0.96691691]\n", + " [-0.16514453 0.21756051 0.96197438]\n", + " [-0.19914791 0.21547522 0.95598668]\n", + " [-0.02159289 0.18707472 0.98210834]\n", + " [-0.05820923 0.1863453 0.98075844]\n", + " [-0.09451415 0.18533645 0.97811936]\n", + " [-0.13029759 0.18406004 0.97424044]\n", + " [-0.16535792 0.18253144 0.96919504]\n", + " [-0.19950016 0.18076852 0.96307966]\n", + " [-0.02118528 0.150903 0.98832154]\n", + " [-0.05787868 0.15023532 0.98695461]\n", + " [-0.09425994 0.14935836 0.98428001]\n", + " [-0.13011834 0.14828235 0.98034767]\n", + " [-0.16525226 0.14702078 0.97523155]\n", + " [-0.19946732 0.14558991 0.96902857]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:cartToSphere: vec: [[-0.32806997 -0.90768162 0.26169483]\n", + " [-0.32101401 -0.90214285 0.28825037]\n", + " [-0.3135589 -0.89576391 0.31509973]\n", + " [-0.30572076 -0.88853125 0.34212138]\n", + " [-0.2975185 -0.88044016 0.36919895]\n", + " [-0.28897446 -0.87149547 0.39621888]\n", + " [-0.2801152 -0.8617125 0.4230686 ]\n", + " [-0.27097172 -0.85111778 0.44963634]\n", + " [-0.32806997 -0.90768162 0.26169483]\n", + " [-0.30144258 -0.91822585 0.25689229]\n", + " [-0.27462267 -0.92794765 0.25198322]\n", + " [-0.24771798 -0.93681927 0.24699282]\n", + " [-0.2208386 -0.94482282 0.24195073]\n", + " [-0.19409663 -0.95195019 0.236891 ]\n", + " [-0.1676056 -0.95820318 0.23185131]\n", + " [-0.14147888 -0.9635939 0.22687117]\n", + " [-0.27097172 -0.85111778 0.44963634]\n", + " [-0.24346653 -0.8620462 0.44452265]\n", + " [-0.21583156 -0.87216436 0.43902855]\n", + " [-0.18817924 -0.88144336 0.43318145]\n", + " [-0.16062074 -0.88986563 0.42701304]\n", + " [-0.13326601 -0.89742422 0.42055908]\n", + " [-0.10622547 -0.90412186 0.41385966]\n", + " [-0.07961246 -0.90997014 0.40695971]\n", + " [-0.14147888 -0.9635939 0.22687117]\n", + " [-0.1329551 -0.95852793 0.2520856 ]\n", + " [-0.12428823 -0.95260399 0.2776654 ]\n", + " [-0.11549913 -0.94580784 0.30349216]\n", + " [-0.10661035 -0.93813553 0.32944797]\n", + " [-0.09764708 -0.92959302 0.35541788]\n", + " [-0.08863745 -0.92019603 0.38129079]\n", + " [-0.07961246 -0.90997014 0.40695971]\n", + " [-0.32495259 -0.90540634 0.27321269]\n", + " [-0.31603357 -0.89805553 0.30597229]\n", + " [-0.30653091 -0.88942827 0.33905184]\n", + " [-0.29647825 -0.87951219 0.37223507]\n", + " [-0.28591684 -0.86831631 0.40531266]\n", + " [-0.2748974 -0.85587346 0.43807766]\n", + " [-0.31646699 -0.9123605 0.25970552]\n", + " [-0.28368858 -0.92473481 0.2537446 ]\n", + " [-0.2507278 -0.93584509 0.247648 ]\n", + " [-0.21778639 -0.94565431 0.24146847]\n", + " [-0.18507065 -0.95414755 0.23526859]\n", + " [-0.15278968 -0.96133239 0.22911865]\n", + " [-0.25903425 -0.85601749 0.44736486]\n", + " [-0.2252224 -0.86887062 0.44083866]\n", + " [-0.19132735 -0.88047668 0.43376799]\n", + " [-0.15755436 -0.8907986 0.42620943]\n", + " [-0.12410603 -0.8998235 0.41822885]\n", + " [-0.09118679 -0.90756008 0.40990202]\n", + " [-0.13787025 -0.96147221 0.23782973]\n", + " [-0.12732539 -0.95468856 0.26899443]\n", + " [-0.116586 -0.94660083 0.30059037]\n", + " [-0.10569286 -0.93719754 0.33240005]\n", + " [-0.09469233 -0.92648962 0.36421196]\n", + " [-0.08363742 -0.91451011 0.39582325]\n", + " [-0.32795592 -0.9077015 0.26176878]\n", + " [-0.32795592 -0.9077015 0.26176878]\n", + " [-0.07973346 -0.90998791 0.40689628]\n", + " [-0.07973346 -0.90998791 0.40689628]\n", + " [-0.31341895 -0.91008353 0.27113931]\n", + " [-0.28051597 -0.92250553 0.26513078]\n", + " [-0.24743414 -0.93365777 0.25895851]\n", + " [-0.21437554 -0.94350325 0.25267518]\n", + " [-0.18154678 -0.95202706 0.24634377]\n", + " [-0.14915785 -0.95923646 0.24003615]\n", + " [-0.30438775 -0.90277866 0.30387298]\n", + " [-0.27117405 -0.91532294 0.29773906]\n", + " [-0.23779354 -0.92658568 0.29136439]\n", + " [-0.20444925 -0.93653024 0.28480099]\n", + " [-0.17134789 -0.94514219 0.27811175]\n", + " [-0.1387003 -0.95242855 0.27137075]\n", + " [-0.29479443 -0.89418901 0.33693064]\n", + " [-0.26133283 -0.90683664 0.33068483]\n", + " [-0.22771963 -0.91819769 0.32412462]\n", + " [-0.19415889 -0.92823596 0.31730164]\n", + " [-0.1608567 -0.9369379 0.31027808]\n", + " [-0.12802296 -0.94431105 0.3031283 ]\n", + " [-0.28467307 -0.88430209 0.370096 ]\n", + " [-0.25102783 -0.8970341 0.36375109]\n", + " [-0.21724912 -0.90848173 0.35702067]\n", + " [-0.18354196 -0.91860903 0.34995687]\n", + " [-0.15011144 -0.92740327 0.34262184]\n", + " [-0.11716565 -0.93487276 0.33508974]\n", + " [-0.27406576 -0.87312661 0.40315987]\n", + " [-0.24030328 -0.88592367 0.3967286 ]\n", + " [-0.20642778 -0.8974465 0.38984272]\n", + " [-0.1726448 -0.90765896 0.38255586]\n", + " [-0.13915834 -0.91654872 0.37493119]\n", + " [-0.10617453 -0.92412462 0.36704311]\n", + " [-0.26302404 -0.8606951 0.43591548]\n", + " [-0.22921281 -0.87353723 0.42941145]\n", + " [-0.19531045 -0.88512371 0.4223859 ]\n", + " [-0.16152243 -0.89541777 0.4148946 ]\n", + " [-0.12805165 -0.90440678 0.40700264]\n", + " [-0.09510286 -0.9120996 0.39878535]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:fp_optics: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:fp_optics: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:cartToSphere: vec: [[0.1191382 0.94732006 0.29730589]\n", + " [0.11618499 0.95534733 0.27168461]\n", + " [0.11322946 0.96280856 0.24531361]\n", + " [0.11026966 0.96963394 0.21829024]\n", + " [0.10730431 0.97576262 0.19071734]\n", + " [0.10433439 0.98114361 0.16270083]\n", + " [0.10136373 0.98573617 0.13434876]\n", + " [0.0983992 0.98951004 0.10577091]\n", + " [0.1191382 0.94732006 0.29730589]\n", + " [0.14584074 0.94398125 0.29602345]\n", + " [0.1730005 0.93990807 0.29435292]\n", + " [0.20050021 0.93507331 0.29229707]\n", + " [0.22822116 0.92945935 0.28986276]\n", + " [0.25604572 0.92305886 0.28705911]\n", + " [0.2838584 0.91587502 0.28389673]\n", + " [0.31154625 0.90792167 0.28038755]\n", + " [0.0983992 0.98951004 0.10577091]\n", + " [0.12599018 0.98670586 0.10265487]\n", + " [0.15404828 0.98305183 0.09938929]\n", + " [0.18245276 0.97851837 0.09598329]\n", + " [0.21108683 0.9730858 0.09244658]\n", + " [0.23983537 0.96674473 0.0887898 ]\n", + " [0.26858265 0.95949681 0.08502487]\n", + " [0.29721174 0.95135556 0.08116519]\n", + " [0.31154625 0.90792167 0.28038755]\n", + " [0.31032977 0.91617131 0.25362486]\n", + " [0.30884406 0.92384116 0.22612574]\n", + " [0.30708093 0.93086034 0.19799071]\n", + " [0.30503557 0.93716796 0.16932074]\n", + " [0.30270669 0.94271263 0.14021966]\n", + " [0.30009667 0.94745246 0.11079633]\n", + " [0.29721174 0.95135556 0.08116519]\n", + " [0.11794157 0.95087477 0.28622887]\n", + " [0.11432172 0.96034205 0.25431024]\n", + " [0.11069627 0.96888877 0.22136143]\n", + " [0.10706251 0.97639912 0.18756966]\n", + " [0.10342226 0.98277927 0.15312985]\n", + " [0.09978387 0.98795855 0.11824164]\n", + " [0.13070736 0.94598102 0.29670777]\n", + " [0.16375715 0.94139946 0.29487396]\n", + " [0.19737756 0.93568665 0.29245955]\n", + " [0.23135042 0.92880615 0.2894756 ]\n", + " [0.26545929 0.92074445 0.28593884]\n", + " [0.29949262 0.91151186 0.28186931]\n", + " [0.11037375 0.98837806 0.10452963]\n", + " [0.144519 0.98437386 0.10060992]\n", + " [0.1792454 0.9790627 0.09647441]\n", + " [0.21433637 0.97240424 0.09214073]\n", + " [0.24957967 0.96438127 0.0876285 ]\n", + " [0.28476173 0.95500176 0.08296027]\n", + " [0.31095358 0.91161344 0.26882858]\n", + " [0.30928189 0.92134405 0.2355204 ]\n", + " [0.30719748 0.93013218 0.20120596]\n", + " [0.30469008 0.93786162 0.16607088]\n", + " [0.30175735 0.94443777 0.13030657]\n", + " [0.29840528 0.94978761 0.09411581]\n", + " [0.11921851 0.94733819 0.29721592]\n", + " [0.11921851 0.94733819 0.29721592]\n", + " [0.29712449 0.951373 0.08128008]\n", + " [0.29712449 0.951373 0.08128008]\n", + " [0.12947859 0.94954061 0.28567102]\n", + " [0.16266701 0.94501275 0.28370822]\n", + " [0.1964266 0.9393358 0.28118471]\n", + " [0.23053756 0.93247276 0.27811325]\n", + " [0.26478299 0.9244099 0.27451105]\n", + " [0.298951 0.91515747 0.27039805]\n", + " [0.1259794 0.95906817 0.25360882]\n", + " [0.15951288 0.95468079 0.25127721]\n", + " [0.19361733 0.949098 0.24844581]\n", + " [0.22807078 0.94228178 0.2451301 ]\n", + " [0.26265623 0.93421794 0.24134734]\n", + " [0.29716132 0.92491669 0.23711658]\n", + " [0.12244897 0.96766699 0.22051496]\n", + " [0.15625263 0.96340124 0.2178145 ]\n", + " [0.19062669 0.95790105 0.21467892]\n", + " [0.22534963 0.95112778 0.21112433]\n", + " [0.26020548 0.94306671 0.2071673 ]\n", + " [0.29498152 0.93372775 0.20282602]\n", + " [0.11888303 0.97522067 0.18657831]\n", + " [0.15287943 0.9710569 0.18351122]\n", + " [0.18744707 0.96562763 0.18007466]\n", + " [0.22236614 0.95889362 0.17628479]\n", + " [0.25742211 0.95083938 0.17215787]\n", + " [0.2924018 0.94147428 0.16771213]\n", + " [0.1152829 0.98163515 0.15199434]\n", + " [0.14939444 0.97755325 0.14856292]\n", + " [0.18408008 0.97218286 0.14482751]\n", + " [0.21912187 0.96548418 0.1408045 ]\n", + " [0.25430656 0.95744082 0.13651096]\n", + " [0.28942063 0.94806149 0.13196633]\n", + " [0.11165702 0.98683959 0.11696298]\n", + " [0.1458069 0.98281886 0.11316997]\n", + " [0.18053576 0.97749461 0.10913814]\n", + " [0.21562684 0.97082659 0.1048847 ]\n", + " [0.25086775 0.96279774 0.10042852]\n", + " [0.28604486 0.95341616 0.09579121]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:fp_optics: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:cartToSphere: vec: [[ 0.0271232 0.11637013 -0.9928355 ]\n", + " [ 0.04606836 0.09721872 -0.99419627]\n", + " [ 0.06549077 0.07770209 -0.99482327]\n", + " [ 0.08529109 0.05788954 -0.99467293]\n", + " [ 0.10537552 0.03785206 -0.99371184]\n", + " [ 0.12565443 0.01766269 -0.99191683]\n", + " [ 0.14604128 -0.00260341 -0.98927507]\n", + " [ 0.16645211 -0.02286929 -0.9857843 ]\n", + " [ 0.0271232 0.11637013 -0.9928355 ]\n", + " [ 0.04423282 0.13690711 -0.98959583]\n", + " [ 0.06180049 0.15768442 -0.98555382]\n", + " [ 0.07973343 0.17861566 -0.98068294]\n", + " [ 0.09794459 0.19961574 -0.97496688]\n", + " [ 0.11635118 0.2206003 -0.96839966]\n", + " [ 0.13487365 0.24148563 -0.96098584]\n", + " [ 0.153435 0.26218884 -0.95274063]\n", + " [ 0.16645211 -0.02286929 -0.9857843 ]\n", + " [ 0.18562377 -0.00282941 -0.98261682]\n", + " [ 0.20504185 0.01762101 -0.97859457]\n", + " [ 0.2246199 0.03840032 -0.97368954]\n", + " [ 0.24427341 0.0594267 -0.96788376]\n", + " [ 0.26391882 0.08061714 -0.96116998]\n", + " [ 0.28347352 0.10188733 -0.95355217]\n", + " [ 0.30285632 0.12315213 -0.94504582]\n", + " [ 0.153435 0.26218884 -0.95274063]\n", + " [ 0.17439295 0.24367273 -0.95404963]\n", + " [ 0.19563274 0.22459395 -0.95461269]\n", + " [ 0.21706164 0.20501755 -0.95438569]\n", + " [ 0.23858848 0.18501151 -0.9533343 ]\n", + " [ 0.26012281 0.16464754 -0.95143434]\n", + " [ 0.2815749 0.14400135 -0.94867233]\n", + " [ 0.30285632 0.12315213 -0.94504582]\n", + " [ 0.03537629 0.10813909 -0.99350614]\n", + " [ 0.058931 0.0844128 -0.99468669]\n", + " [ 0.08310304 0.06020649 -0.9947206 ]\n", + " [ 0.10771748 0.03565011 -0.99354216]\n", + " [ 0.1326092 0.01087813 -0.99110871]\n", + " [ 0.15761997 -0.0139703 -0.98740102]\n", + " [ 0.034585 0.12522442 -0.99152545]\n", + " [ 0.05587634 0.15056736 -0.9870194 ]\n", + " [ 0.07776265 0.17618538 -0.98128063]\n", + " [ 0.10008135 0.20192132 -0.97427486]\n", + " [ 0.12267994 0.22761989 -0.96599111]\n", + " [ 0.14541303 0.25312726 -0.95644218]\n", + " [ 0.17470503 -0.01411809 -0.98451959]\n", + " [ 0.19837787 0.01072991 -0.98006688]\n", + " [ 0.22233481 0.03611325 -0.97430132]\n", + " [ 0.2464195 0.06188143 -0.96718567]\n", + " [ 0.27047817 0.08788163 -0.95870662]\n", + " [ 0.29435925 0.11395826 -0.94887626]\n", + " [ 0.16246831 0.25411836 -0.95342955]\n", + " [ 0.18835509 0.23103784 -0.95453857]\n", + " [ 0.21457294 0.20717669 -0.9544822 ]\n", + " [ 0.24095344 0.18265876 -0.95319317]\n", + " [ 0.26733011 0.15761613 -0.95062704]\n", + " [ 0.29353824 0.13218963 -0.94676354]\n", + " [ 0.02724468 0.11637506 -0.99283159]\n", + " [ 0.02724468 0.11637506 -0.99283159]\n", + " [ 0.30271803 0.12315107 -0.94509026]\n", + " [ 0.30271803 0.12315107 -0.94509026]\n", + " [ 0.04279348 0.11699252 -0.9922104 ]\n", + " [ 0.06428579 0.14235708 -0.98772557]\n", + " [ 0.08634963 0.16801199 -0.98199578]\n", + " [ 0.10882391 0.19380034 -0.97498656]\n", + " [ 0.13155698 0.21956669 -0.96668673]\n", + " [ 0.15440365 0.2451568 -0.95710901]\n", + " [ 0.06655021 0.09326454 -0.99341471]\n", + " [ 0.08857015 0.1186534 -0.9889776 ]\n", + " [ 0.11109936 0.14437679 -0.98326613]\n", + " [ 0.13398022 0.1702786 -0.9762451 ]\n", + " [ 0.15706263 0.19620314 -0.96790271]\n", + " [ 0.18020128 0.22199499 -0.95825139]\n", + " [ 0.09090236 0.06903672 -0.99346399]\n", + " [ 0.11339208 0.09439436 -0.98905609]\n", + " [ 0.13633407 0.12013185 -0.9833521 ]\n", + " [ 0.15957289 0.1460941 -0.97631604]\n", + " [ 0.18295871 0.17212542 -0.96793541]\n", + " [ 0.20634521 0.19806952 -0.95822238]\n", + " [ 0.11567651 0.04443889 -0.99229236]\n", + " [ 0.1385816 0.06970932 -0.98789461]\n", + " [ 0.16188597 0.09540569 -0.98218669]\n", + " [ 0.18543495 0.12137414 -0.97513189]\n", + " [ 0.20907806 0.1474594 -0.96671717]\n", + " [ 0.23266743 0.17350475 -0.95695453]\n", + " [ 0.14070832 0.01960574 -0.98985695]\n", + " [ 0.16397582 0.04473334 -0.98544957]\n", + " [ 0.18759237 0.07033336 -0.97972563]\n", + " [ 0.21140306 0.09625335 -0.97264795]\n", + " [ 0.2352561 0.12233885 -0.96420318]\n", + " [ 0.25900195 0.14843324 -0.95440325]\n", + " [ 0.16583972 -0.00532316 -0.98613835]\n", + " [ 0.18941639 0.01960716 -0.98170107]\n", + " [ 0.21329382 0.04505644 -0.9759486 ]\n", + " [ 0.23731613 0.07087367 -0.96884363]\n", + " [ 0.26133004 0.09690556 -0.9603728 ]\n", + " [ 0.28518447 0.12299615 -0.95054814]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:fp_optics: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:cartToSphere: vec: [[ 0.7716672 0.56628801 -0.28956454]\n", + " [ 0.75750315 0.57385791 -0.31124923]\n", + " [ 0.74253232 0.58103334 -0.33323567]\n", + " [ 0.72678139 0.58777131 -0.35540639]\n", + " [ 0.71028496 0.59403285 -0.37765096]\n", + " [ 0.69308592 0.59978308 -0.39986518]\n", + " [ 0.67523559 0.60499151 -0.42195043]\n", + " [ 0.65679375 0.6096325 -0.44381323]\n", + " [ 0.7716672 0.56628801 -0.28956454]\n", + " [ 0.78280593 0.54460936 -0.30102411]\n", + " [ 0.79352391 0.5220886 -0.31263925]\n", + " [ 0.80374783 0.49879696 -0.32433164]\n", + " [ 0.81341205 0.47480998 -0.33603023]\n", + " [ 0.82245836 0.45020814 -0.34767064]\n", + " [ 0.83083611 0.42507734 -0.35919439]\n", + " [ 0.83850247 0.39950905 -0.3705484 ]\n", + " [ 0.65679375 0.6096325 -0.44381323]\n", + " [ 0.66747093 0.58765766 -0.4573194 ]\n", + " [ 0.67782816 0.56476163 -0.47073696]\n", + " [ 0.68779416 0.54100972 -0.48399139]\n", + " [ 0.69730463 0.51647278 -0.4970132 ]\n", + " [ 0.70630174 0.49122894 -0.50973716]\n", + " [ 0.7147343 0.46536466 -0.52210211]\n", + " [ 0.7225582 0.43897465 -0.53405141]\n", + " [ 0.83850247 0.39950905 -0.3705484 ]\n", + " [ 0.82460375 0.40595286 -0.39399356]\n", + " [ 0.80976374 0.41219173 -0.41758911]\n", + " [ 0.79400523 0.41818346 -0.44122363]\n", + " [ 0.77735939 0.4238899 -0.46478998]\n", + " [ 0.75986705 0.42927674 -0.48818394]\n", + " [ 0.7415794 0.43431364 -0.51130388]\n", + " [ 0.7225582 0.43897465 -0.53405141]\n", + " [ 0.76563096 0.56956131 -0.29901364]\n", + " [ 0.74772598 0.57857893 -0.32581019]\n", + " [ 0.72863468 0.58696099 -0.35294233]\n", + " [ 0.70841748 0.59463409 -0.38020386]\n", + " [ 0.68715333 0.60153402 -0.4074029 ]\n", + " [ 0.66494024 0.60760666 -0.43436002]\n", + " [ 0.77652345 0.55697031 -0.29461061]\n", + " [ 0.78990192 0.52982529 -0.30877195]\n", + " [ 0.80257475 0.50148562 -0.32308813]\n", + " [ 0.81441791 0.47208855 -0.33742535]\n", + " [ 0.82532427 0.44178229 -0.35166499]\n", + " [ 0.83520379 0.41072731 -0.36570167]\n", + " [ 0.66154775 0.60015374 -0.44963326]\n", + " [ 0.67442857 0.5725937 -0.46613578]\n", + " [ 0.68675706 0.54371441 -0.4824307 ]\n", + " [ 0.69841198 0.5136439 -0.49838805]\n", + " [ 0.70928691 0.48252615 -0.51388772]\n", + " [ 0.7192905 0.45052376 -0.52881899]\n", + " [ 0.83253441 0.40242931 -0.38070606]\n", + " [ 0.8148644 0.41019542 -0.40955552]\n", + " [ 0.79580237 0.41761116 -0.43851967]\n", + " [ 0.77540218 0.42460461 -0.4673996 ]\n", + " [ 0.75373905 0.43111261 -0.49600339]\n", + " [ 0.73091165 0.43708113 -0.52414526]\n", + " [ 0.77165888 0.5662419 -0.28967687]\n", + " [ 0.77165888 0.5662419 -0.28967687]\n", + " [ 0.72259874 0.4390504 -0.53393428]\n", + " [ 0.72259874 0.4390504 -0.53393428]\n", + " [ 0.77049987 0.56026859 -0.30402148]\n", + " [ 0.78389336 0.53305675 -0.31837352]\n", + " [ 0.79658532 0.50463951 -0.33285251]\n", + " [ 0.80845169 0.47515349 -0.34732553]\n", + " [ 0.81938509 0.44474658 -0.36167464]\n", + " [ 0.8292951 0.41357942 -0.37579477]\n", + " [ 0.75259492 0.5692365 -0.33101465]\n", + " [ 0.76599894 0.5418656 -0.34587179]\n", + " [ 0.7787172 0.51326066 -0.36078112]\n", + " [ 0.79062559 0.48355633 -0.3756121 ]\n", + " [ 0.80161601 0.45289963 -0.39024825]\n", + " [ 0.81159694 0.42145171 -0.4045848 ]\n", + " [ 0.73348528 0.57758375 -0.35832438]\n", + " [ 0.74685163 0.55009814 -0.37363711]\n", + " [ 0.75955384 0.5213527 -0.38893357]\n", + " [ 0.77146791 0.49148004 -0.40408494]\n", + " [ 0.78248527 0.4606263 -0.4189752 ]\n", + " [ 0.79251353 0.42895327 -0.43349902]\n", + " [ 0.71323108 0.58523661 -0.38574544]\n", + " [ 0.7265106 0.55767972 -0.40146691]\n", + " [ 0.73915315 0.52884052 -0.41710949]\n", + " [ 0.75103514 0.49884971 -0.43254502]\n", + " [ 0.762048 0.46785263 -0.44765697]\n", + " [ 0.77209895 0.43601161 -0.46233871]\n", + " [ 0.6919112 0.59213039 -0.41308655]\n", + " [ 0.70505435 0.56454448 -0.42917117]\n", + " [ 0.717593 0.53565761 -0.44511932]\n", + " [ 0.72940438 0.50559893 -0.46080252]\n", + " [ 0.74038047 0.47451314 -0.47610297]\n", + " [ 0.75042868 0.44256286 -0.49091232]\n", + " [ 0.66962384 0.59821047 -0.44016831]\n", + " [ 0.68258158 0.57063658 -0.45657012]\n", + " [ 0.69497248 0.5417474 -0.47278219]\n", + " [ 0.70667486 0.51167114 -0.48867504]\n", + " [ 0.7175818 0.48055192 -0.50412916]\n", + " [ 0.72760154 0.44855243 -0.51903441]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:fp_optics: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:cartToSphere: vec: [[ 0.23685091 0.22949759 -0.94405111]\n", + " [ 0.23425279 0.25562748 -0.937966 ]\n", + " [ 0.23127273 0.2821087 -0.93108947]\n", + " [ 0.22792841 0.30881686 -0.92340716]\n", + " [ 0.22423712 0.33563171 -0.91491479]\n", + " [ 0.22021583 0.36243684 -0.90561831]\n", + " [ 0.21588149 0.38911946 -0.89553405]\n", + " [ 0.21125152 0.41557039 -0.88468867]\n", + " [ 0.23685091 0.22949759 -0.94405111]\n", + " [ 0.21113669 0.22574654 -0.95103091]\n", + " [ 0.18468112 0.22189622 -0.95742099]\n", + " [ 0.15759234 0.21793842 -0.96315497]\n", + " [ 0.12997855 0.21386972 -0.96817629]\n", + " [ 0.10194826 0.20969154 -0.97243818]\n", + " [ 0.07361078 0.20540991 -0.9759038 ]\n", + " [ 0.04507639 0.20103515 -0.97854637]\n", + " [ 0.21125152 0.41557039 -0.88468867]\n", + " [ 0.18430731 0.41355005 -0.89163174]\n", + " [ 0.15666162 0.41116003 -0.89800032]\n", + " [ 0.12841751 0.40839099 -0.9037288 ]\n", + " [ 0.09967907 0.40523789 -0.90876088]\n", + " [ 0.07055328 0.40170024 -0.91304937]\n", + " [ 0.04115102 0.39778233 -0.9165565 ]\n", + " [ 0.01158705 0.3934934 -0.91925442]\n", + " [ 0.04507639 0.20103515 -0.97854637]\n", + " [ 0.04059036 0.22804949 -0.97280309]\n", + " [ 0.03597569 0.25541942 -0.96616079]\n", + " [ 0.03124962 0.28302547 -0.95860317]\n", + " [ 0.02642954 0.31075099 -0.95012384]\n", + " [ 0.02153328 0.33848054 -0.94072697]\n", + " [ 0.01657937 0.36609928 -0.9304281 ]\n", + " [ 0.01158705 0.3934934 -0.91925442]\n", + " [ 0.23567923 0.24082673 -0.94151887]\n", + " [ 0.23223471 0.27310489 -0.93353134]\n", + " [ 0.22823427 0.30578671 -0.92433955]\n", + " [ 0.22370993 0.33864907 -0.91393144]\n", + " [ 0.21869293 0.37147767 -0.90231798]\n", + " [ 0.21321467 0.40406634 -0.88953353]\n", + " [ 0.22572882 0.22796263 -0.94714283]\n", + " [ 0.19369998 0.22330087 -0.95530992]\n", + " [ 0.16066506 0.21848114 -0.96252415]\n", + " [ 0.12682321 0.21349511 -0.9686773 ]\n", + " [ 0.09237428 0.20834537 -0.97368331]\n", + " [ 0.0575199 0.20304485 -0.97747852]\n", + " [ 0.19961302 0.4146439 -0.88782041]\n", + " [ 0.16610559 0.41191964 -0.89595265]\n", + " [ 0.13164688 0.40863054 -0.90315568]\n", + " [ 0.09642797 0.40476552 -0.90932201]\n", + " [ 0.06064593 0.40032371 -0.91436481]\n", + " [ 0.02450655 0.39531507 -0.91821861]\n", + " [ 0.04323557 0.21277709 -0.97614374]\n", + " [ 0.03764977 0.24614041 -0.96850266]\n", + " [ 0.03188771 0.27991869 -0.95949398]\n", + " [ 0.02598129 0.31389612 -0.94910179]\n", + " [ 0.01996338 0.3478601 -0.93733388]\n", + " [ 0.01386839 0.38159959 -0.92422368]\n", + " [ 0.23675615 0.22957353 -0.94405642]\n", + " [ 0.23675615 0.22957353 -0.94405642]\n", + " [ 0.01170541 0.39341552 -0.91928625]\n", + " [ 0.01170541 0.39341552 -0.91928625]\n", + " [ 0.22459634 0.23926641 -0.94462059]\n", + " [ 0.19241267 0.23472862 -0.95282729]\n", + " [ 0.15922657 0.23000409 -0.96007553]\n", + " [ 0.12523671 0.22508463 -0.96625704]\n", + " [ 0.09064257 0.21997318 -0.9712856 ]\n", + " [ 0.05564586 0.214683 -0.9750973 ]\n", + " [ 0.22101061 0.27168606 -0.93666483]\n", + " [ 0.18843446 0.26749555 -0.94495428]\n", + " [ 0.154866 0.26303904 -0.95227464]\n", + " [ 0.12050201 0.25830885 -0.9585175 ]\n", + " [ 0.08554091 0.25330868 -0.96359611]\n", + " [ 0.0501848 0.2480526 -0.96744581]\n", + " [ 0.21689294 0.3045068 -0.9274875 ]\n", + " [ 0.18399229 0.30065881 -0.93581575]\n", + " [ 0.15010875 0.29646943 -0.9431719 ]\n", + " [ 0.11543702 0.29193118 -0.94944746]\n", + " [ 0.08017462 0.28704792 -0.95455514]\n", + " [ 0.04452443 0.28183387 -0.95842957]\n", + " [ 0.21227507 0.33750586 -0.91707638]\n", + " [ 0.17911671 0.33399701 -0.92539894]\n", + " [ 0.14498444 0.33007552 -0.93275381]\n", + " [ 0.11007111 0.32573347 -0.93903251]\n", + " [ 0.0745737 0.32097403 -0.94414747]\n", + " [ 0.03869609 0.31581083 -0.94803277]\n", + " [ 0.20718775 0.37046908 -0.90544238]\n", + " [ 0.17383726 0.36729644 -0.91371436]\n", + " [ 0.13952193 0.36364394 -0.92103025]\n", + " [ 0.10443338 0.35950257 -0.92728182]\n", + " [ 0.0687684 0.35487407 -0.93238152]\n", + " [ 0.03273187 0.34977078 -0.93626333]\n", + " [ 0.20166201 0.40319005 -0.89261986]\n", + " [ 0.16818414 0.40034976 -0.90079641]\n", + " [ 0.13375126 0.39696617 -0.9080355 ]\n", + " [ 0.09855445 0.39302877 -0.91422941]\n", + " [ 0.06279066 0.3885374 -0.91929105]\n", + " [ 0.02666551 0.38350266 -0.92315473]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:fp_optics: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:cartToSphere: vec: [[-0.09218557 0.63239753 -0.76913925]\n", + " [-0.11476539 0.64207579 -0.75800236]\n", + " [-0.13781973 0.65136717 -0.74614109]\n", + " [-0.1612334 0.66021526 -0.73356636]\n", + " [-0.18489717 0.66856871 -0.7202978 ]\n", + " [-0.20870637 0.67638127 -0.70636394]\n", + " [-0.23255985 0.68361216 -0.69180224]\n", + " [-0.25635954 0.6902264 -0.67665892]\n", + " [-0.09218557 0.63239753 -0.76913925]\n", + " [-0.10424759 0.61289764 -0.78325533]\n", + " [-0.11663236 0.592565 -0.79703426]\n", + " [-0.12926525 0.57145709 -0.81038712]\n", + " [-0.14207785 0.54963668 -0.82323351]\n", + " [-0.1550DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "0668 0.52717258 -0.83550105]\n", + " [-0.16799224 0.50414012 -0.84712534]\n", + " [-0.18097831 0.48062119 -0.85805019]\n", + " [-0.25635954 0.6902264 -0.67665892]\n", + " [-0.27053982 0.67067536 -0.69065387]\n", + " [-0.2847964 0.65018557 -0.70437897]\n", + " [-0.29905968 0.62880896 -0.71774829]\n", + " [-0.31326288 0.60660442 -0.73068286]\n", + " [-0.32734139 0.58363912 -0.74311035]\n", + " [-0.34123279 0.55998898 -0.75496525]\n", + " [-0.35487727 0.53573849 -0.76618953]\n", + " [-0.18097831 0.48062119 -0.85805019]\n", + " [-0.20538 0.48942039 -0.84751799]\n", + " [-0.23010621 0.49799545 -0.83609309]\n", + " [-0.25504903 0.50629102 -0.82378359]\n", + " [-0.28010233 0.51425651 -0.81060652]\n", + " [-0.30516085 0.52184601 -0.79658873]\n", + " [-0.33012013 0.52901854 -0.78176728]\n", + " [-0.35487727 0.53573849 -0.76618953]\n", + " [-0.10200566 0.63659574 -0.76442181]\n", + " [-0.13001519 0.64820445 -0.75028464]\n", + " [-0.15862216 0.6591755 -0.73506916]\n", + " [-0.18762309 0.66941229 -0.71880787]\n", + " [-0.21682518 0.67882972 -0.70155331]\n", + " [-0.24604348 0.68735509 -0.68337807]\n", + " [-0.09747678 0.62403498 -0.77529261]\n", + " [-0.11248845 0.59956853 -0.79237865]\n", + " [-0.12790982 0.57390771 -0.80886897]\n", + " [-0.14361242 0.54716584 -0.82461204]\n", + " [-0.15947931 0.51946965 -0.83947462]\n", + " [-0.1754023 0.49096055 -0.85334153]\n", + " [-0.26244668 0.68179897 -0.68284105]\n", + " [-0.27988548 0.65719945 -0.69982355]\n", + " [-0.29736952 0.63124084 -0.71631443]\n", + " [-0.31477476 0.6040286 -0.73216549]\n", + " [-0.33198224 0.57568643 -0.74724355]\n", + " [-0.34887812 0.54635769 -0.76143111]\n", + " [-0.19152605 0.48456294 -0.8535318 ]\n", + " [-0.2216643 0.49520455 -0.84002226]\n", + " [-0.25218256 0.50545378 -0.82517903]\n", + " [-0.28288483 0.51521557 -0.80902972]\n", + " [-0.3135773 0.52440542 -0.79162379]\n", + " [-0.34406827 0.53295009 -0.77303378]\n", + " [-0.09230245 0.63236602 -0.76915114]\n", + " [-0.09230245 0.63236602 -0.76915114]\n", + " [-0.35474689 0.53580017 -0.76620678]\n", + " [-0.35474689 0.53580017 -0.76620678]\n", + " [-0.10725491 0.62825339 -0.77058034]\n", + " [-0.12245964 0.60374583 -0.7877148 ]\n", + " [-0.13804695 0.5780299 -0.80425399]\n", + " [-0.15388973 0.55121829 -0.82004655]\n", + " [-0.16987189 0.52343752 -0.8349591 ]\n", + " [-0.18588552 0.49482918 -0.84887611]\n", + " [-0.13546363 0.63983801 -0.75647665]\n", + " [-0.15118131 0.61523824 -0.77370933]\n", + " [-0.16720901 0.58939272 -0.79035268]\n", + " [-0.1834228 0.56241241 -0.80625577]\n", + " [-0.19970807 0.53442319 -0.82128469]\n", + " [-0.21595703 0.50556725 -0.83532288]\n", + " [-0.16425187 0.65079664 -0.74127259]\n", + " [-0.1804361 0.62614015 -0.75854554]\n", + " [-0.19686342 0.60020424 -0.77524168]\n", + " [-0.21341169 0.57309815 -0.79121044]\n", + " [-0.22996651 0.54494721 -0.80631752]\n", + " [-0.24641928 0.51589422 -0.82044542]\n", + " [-0.19341759 0.6610323 -0.72500065]\n", + " [-0.21002542 0.63635378 -0.74225547]\n", + " [-0.22681379 0.61036634 -0.7589522 ]\n", + " [-0.24366104 0.58317768 -0.7749407 ]\n", + " [-0.26045197 0.55491263 -0.79008654]\n", + " [-0.27707655 0.52571445 -0.80427166]\n", + " [-0.2227687 0.67045944 -0.70771339]\n", + " [-0.23975841 0.64579255 -0.72489164]\n", + " [-0.25686946 0.6197919 -0.7415363 ]\n", + " [-0.27397956 0.592564 -0.75749793]\n", + " [-0.2909721 0.56423318 -0.77264232]\n", + " [-0.30773537 0.53494293 -0.78685132]\n", + " [-0.25212031 0.67900489 -0.68948365]\n", + " [-0.26944963 0.65438218 -0.70652732]\n", + " [-0.28684365 0.62840604 -0.72306747]\n", + " [-0.30417884 0.60118212 -0.73895554]\n", + " [-0.32133687 0.57283429 -0.75405802]\n", + " [-0.33820439 0.543506 -0.76825713]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:cartToSphere: vec: [[-0.43172243 0.50214516 0.74931034]\n", + " [-0.43704964 0.52235217 0.73221297]\n", + " [-0.44202841 0.54264459 0.71424627]\n", + " [-0.44662812 0.56291376 0.69545051]\n", + " [-0.45082276 0.58305388 0.67587499]\n", + " [-0.45459001 0.60296477 0.65557716]\n", + " [-0.4579108 0.62255296 0.63462233]\n", + " [-0.46076934 0.64173219 0.61308353]\n", + " [-0.43172243 0.50214516 0.74931034]\n", + " [-0.40745735 0.51121304 0.75672963]\n", + " [-0.38238946 0.52020597 0.76365179]\n", + " [-0.35660243 0.52905768 0.77002122]\n", + " [-0.33018662 0.53770532 0.77578978]\n", + " [-0.30323715 0.54609198 0.78091663]\n", + " [-0.27585317 0.55416779 0.78536812]\n", + " [-0.24813756 0.56189025 0.78911792]\n", + " [-0.46076934 0.64173219 0.61308353]\n", + " [-0.43593606 0.65265351 0.61967988]\n", + " [-0.41024277 0.66327678 0.62591116]\n", + " [-0.38377514 0.67352887 0.63172423]\n", + " [-0.3566209 0.68334449 0.63707287]\n", + " [-0.32887213 0.69266536 0.6419173 ]\n", + " [-0.30062747 0.70143968 0.64622403]\n", + " [-0.27199316 0.70962225 0.64996615]\n", + " [-0.24813756 0.56189025 0.78911792]\n", + " [-0.2520563 0.58364114 0.77190066]\n", + " [-0.25584352 0.60535498 0.75371708]\n", + " [-0.25947342 0.62691782 0.7346071 ]\n", + " [-0.26292288 0.64822359 0.7146172 ]\n", + " [-0.26617115 0.66917228 0.69380212]\n", + " [-0.26919985 0.68966866 0.67222659]\n", + " [-0.27199316 0.70962225 0.64996615]\n", + " [-0.434004 0.51096963 0.74199095]\n", + " [-0.44030226 0.53580791 0.72044695]\n", + " [-0.44604627 0.56066629 0.69763603]\n", + " [-0.45118632 0.58534861 0.67364524]\n", + " [-0.45568125 0.60967053 0.64858033]\n", + " [-0.45949734 0.63346296 0.62256475]\n", + " [-0.42126498 0.50617309 0.75254543]\n", + " [-0.39097496 0.51724605 0.76131144]\n", + " [-0.35956127 0.52814021 0.76927473]\n", + " [-0.32718762 0.53873825 0.77634358]\n", + " [-0.29402906 0.54893552 0.78244278]\n", + " [-0.26026968 0.55864327 0.78751342]\n", + " [-0.45004411 0.64646047 0.61607561]\n", + " [-0DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + ".41901924 0.65965422 0.62392242]\n", + " [-0.38678757 0.67232684 0.63116717]\n", + " [-0.3535097 0.68435493 0.6377219 ]\n", + " [-0.31935541 0.69563113 0.64351337]\n", + " [-0.28450949 0.7060628 0.64848259]\n", + " [-0.24995615 0.57134473 0.78172062]\n", + " [-0.25467484 0.59799227 0.75996445]\n", + " [-0.25916987 0.62447005 0.73679586]\n", + " [-0.26339756 0.6505796 0.71229763]\n", + " [-0.26731972 0.67613666 0.68657075]\n", + " [-0.27090354 0.7009678 0.6597389 ]\n", + " [-0.43165968 0.50224506 0.74927954]\n", + " [-0.43165968 0.50224506 0.74927954]\n", + " [-0.27208248 0.70952811 0.65003153]\n", + " [-0.27208248 0.70952811 0.65003153]\n", + " [-0.42357835 0.51496312 0.74524786]\n", + " [-0.39319326 0.52620724 0.75399271]\n", + " [-0.3616755 0.53724833 0.76194164]\n", + " [-0.32918994 0.54796698 0.76900337]\n", + " [-0.29591194 0.55825787 0.77510275]\n", + " [-0.26202584 0.56803217 0.78018069]\n", + " [-0.42979931 0.53997906 0.72366785]\n", + " [-0.39917829 0.55168366 0.73232632]\n", + " [-0.36740314 0.5631158 0.74021316]\n", + " [-0.33464015 0.57415287 0.74723788]\n", + " [-0.30106457 0.58468915 0.75332511]\n", + " [-0.26686104 0.59463612 0.75841484]\n", + " [-0.43548299 0.56500043 0.70080602]\n", + " [-0.40467854 0.57712334 0.70934049]\n", + " [-0.37270298 0.58890683 0.71713404]\n", + " [-0.33972195 0.60022762 0.72409654]\n", + " [-0.30590949 0.61098049 0.73015219]\n", + " [-0.27145041 0.62107712 0.73524002]\n", + " [-0.44058075 0.58982901 0.67674984]\n", + " [-0.40964723 0.60232509 0.68512307]\n", + " [-0.37752882 0.61442011 0.6927914 ]\n", + " [-0.34438941 0.62599102 0.69966504]\n", + " [-0.31040143 0.63693284 0.70566813]\n", + " [-0.27574978 0.6471567 0.71073924]\n", + " [-0.44505176 0.61427976 0.65160518]\n", + " [-0.41404346 0.62710346 0.65977971]\n", + " [-0.38183916 0.63947081 0.66729 ]\n", + " [-0.3486009 0.65125896 0.67404687]\n", + " [-0.31449959 0.66236235 0.67997509]\n", + " [-0.27972019 0.67269076 0.68501369]\n", + " [-0.44886215 0.63818333 0.62549565]\n", + " [-0.41783234 0.65128877 0.63343435]\n", + " [-0.38559807 0.66388893 0.64075394]\n", + " [-0.35232014 0.67586063 0.64736614]\n", + " [-0.31816849 0.68709707 0.65319708]\n", + " [-0.28332799 0.69750622 0.65818715]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:fp_optics: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:fp_optics: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:cartToSphere: vec: [[ 0.00410128 -0.11692209 0.99313262]\n", + " [ 0.02415048 -0.13484535 0.9905723 ]\n", + " [ 0.0444913 -0.15315087 0.98720076]\n", + " [ 0.06504558 -0.17174337 0.98299201]\n", + " [ 0.08573467 -0.19053204 0.97793001]\n", + " [ 0.10647933 -0.20943037 0.97200878]\n", + " [ 0.12719964 -0.22835572 0.96523257]\n", + " [ 0.14781533 -0.24722897 0.95761603]\n", + " [ 0.00410128 -0.11692209 0.99313262]\n", + " [-0.0158592 -0.13485554 0.99073835]\n", + " [-0.03613334 -0.15318535 0.98753665]\n", + " [-0.05664315 -0.17181522 0.98349941]\n", + " [-0.07731021 -0.19065343 0.9786084 ]\n", + " [-0.09805547 -0.20961263 0.97285542]\n", + " [-0.11879913 -0.22860935 0.96624248]\n", + " [-0.13946088 -0.24756363 0.95878199]\n", + " [ 0.14781533 -0.24722897 0.95761603]\n", + " [ 0.12846469 -0.26717066 0.95504799]\n", + " [ 0.10861636 -0.28730775 0.95165999]\n", + " [ 0.08834424 -0.30754707 0.94742287]\n", + " [ 0.06772307 -0.32779886 0.94231709]\n", + " [ 0.04682965 -0.34797547 0.93633331]\n", + " [ 0.02574363 -0.36799086 0.92947297]\n", + " [ 0.00454736 -0.38776086 0.92174879]\n", + " [-0.13946088 -0.24756363 0.95878199]\n", + " [-0.11993907 -0.26750137 0.95606362]\n", + " [-0.09994055 -0.28761853 0.95251639]\n", + " [-0.07953947 -0.30782297 0.94811312]\n", + " [-0.05881112 -0.32802565 0.94283637]\n", + " [-0.0378DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "3312 -0.34813951 0.93667899]\n", + " [-0.01668595 -0.36807907 0.92964476]\n", + " [ 0.00454736 -0.38776086 0.92174879]\n", + " [ 0.01273434 -0.12474457 0.99210717]\n", + " [ 0.03751274 -0.1469823 0.98842754]\n", + " [ 0.06265167 -0.16969888 0.98350244]\n", + " [ 0.08800658 -0.19272529 0.97729822]\n", + " [ 0.11343155 -0.21590221 0.96980386]\n", + " [ 0.1387793 -0.23907896 0.96103151]\n", + " [-0.00449004 -0.1247472 0.9921784 ]\n", + " [-0.02917446 -0.14700704 0.9887051 ]\n", + " [-0.05425267 -0.16976589 0.98398993]\n", + " [-0.07958054 -0.192853 0.97799522]\n", + " [-0.10501249 -0.21610749 0.97070589]\n", + " [-0.13040138 -0.23937717 0.96212996]\n", + " [ 0.13937382 -0.25582881 0.95662247]\n", + " [ 0.11531291 -0.28041209 0.95292811]\n", + " [ 0.09057802 -0.30519598 0.94797207]\n", + " [ 0.06530628 -0.33001386 0.94171436]\n", + " [ 0.0396392 -0.35470435 0.93413787]\n", + " [ 0.01372456 -0.37910978 0.92524992]\n", + " [-0.13094197 -0.25616349 0.95772359]\n", + " [-0.10668544 -0.28073103 0.95383872]\n", + " [-0.08178663 -0.30547622 0.94868078]\n", + " [-0.0563836 -0.33023392 0.94221359]\n", + " [-0.03061932 -0.35484384 0.93442405]\n", + " [-0.00464306 -0.37914939 0.92532383]\n", + " [ 0.00410162 -0.11704316 0.99311836]\n", + " [ 0.00410162 -0.11704316 0.99311836]\n", + " [ 0.00454727 -0.38762699 0.9218051 ]\n", + " [ 0.00454727 -0.38762699 0.9218051 ]\n", + " [ 0.00414379 -0.13252451 0.99117107]\n", + " [-0.02054923 -0.15498444 0.98770317]\n", + " [-0.04565365 -0.17792132 0.98298512]\n", + " [-0.07102549 -0.20116486 0.97697906]\n", + " [-0.09651907 -0.22455464 0.96966968]\n", + " [-0.12198688 -0.24793863 0.96106485]\n", + " [ 0.02893714 -0.15496222 0.98749651]\n", + " [ 0.00425316 -0.17794747 0.9840308 ]\n", + " [-0.02089224 -0.20134964 0.9792966 ]\n", + " [-0.04635576 -0.22500016 0.9732554 ]\n", + " [-0.0719916 -0.24873983 0.96589115]\n", + " [-0.09765116 -0.27241662 0.95721128]\n", + " [ 0.05410862 -0.17785655 0.98256771]\n", + " [ 0.02948376 -0.20130662 0.97908445]\n", + " [ 0.00434754 -0.22511778 0.97432186]\n", + " [-0.0211578 -0.24912311 0.96824069]\n", + " [-0.04688675 -0.27316402 0.96082415]\n", + " [-0.07268991 -0.2970DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "8784 0.9520793 ]\n", + " [ 0.0795138 -0.20103892 0.97635081]\n", + " [ 0.05499868 -0.224895 0.97282958]\n", + " [ 0.02992268 -0.24906044 0.96802558]\n", + " [ 0.00442662 -0.27336936 0.96189895]\n", + " [-0.02134472 -0.29766303 0.95443236]\n", + " [-0.0472417 -0.32178751 0.9456326 ]\n", + " [ 0.10500659 -0.22435044 0.96883461]\n", + " [ 0.08065148 -0.24855478 0.9652543 ]\n", + " [ 0.05568675 -0.27302032 0.96039517]\n", + " [ 0.03025159 -0.2975814 0.95421704]\n", + " [ 0.00448958 -0.32207841 0.94670235]\n", + " [-0.02145004 -0.34635583 0.93785795]\n", + " [ 0.13043929 -0.24764053 0.96003112]\n", + " [ 0.10629323 -0.27213529 0.95637029]\n", + " [ 0.08148979 -0.29684603 0.95144198]\n", + " [ 0.05616659 -0.32160649 0.9452061 ]\n", + " [ 0.0304657 -0.34625578 0.93764534]\n", + " [ 0.00453538 -0.37063674 0.92876684]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:cartToSphere: vec: [[-0.60417066 -0.24345602 0.75875357]\n", + " [-0.5828295 -0.24339316 0.77528675]\n", + " [-0.56058107 -0.24329986 0.79155167]\n", + " [-0.53750043 -0.24314958 0.80744756]\n", + " [-0.51366578 -0.24292227 0.82288288]\n", + " [-0.48915952 -0.24260367 0.83777468]\n", + " [-0.46406906 -0.24218464 0.85204842]\n", + " [-0.43848707 -0.2416606 0.86563806]\n", + " [-0.60417066 -0.24345602 0.75875357]\n", + " [-0.60203767 -0.26934715 0.75166666]\n", + " [-0.599283 -0.29561213 0.74395789]\n", + " [-0.59590613 -0.32212175 0.73561774]\n", + " [-0.5919093 -0.34875318 0.72664613]\n", + " [-0.58729827 -0.37538857 0.71705241]\n", + " [-0.58208301 -0.40191425 0.70685522]\n", + " [-0.57627834 -0.42822044 0.69608227]\n", + " [-0.43848707 -0.2416606 0.86563806]\n", + " [-0.43481236 -0.26863641 0.85951887]\n", + " [-0.43071052 -0.29595109 0.85258513]\n", + " [-0.42617862 -0.32348294 0.84482577]\n", + " [-0.42121811 -0.35111295 0.8362386 ]\n", + " [-0.41583527 -0.37872353 0.82683101]\n", + " [-0.41004146 -0.40619841 0.81662039]\n", + " [-0.4038532 -0.43342338 0.80563438]\n", + " [-0.57627834 -0.42822044 0.69608227]\n", + " [-0.55394675 -0.42998764 0.71291909]\n", + " [-0.53072318 -0.43144762 0.72951069]\n", + " [-0.50667607 -0.43257531 0.74575999]\n", + " [-0.48187993 -0.43335019 0.76157688]\n", + " [-0.45641657 -0.43375639 0.77687793]\n", + " [-0.43037544 -0.43378281 0.79158667]\n", + " [-0.4038532 -0.43342338 0.80563438]\n", + " [-0.59497552 -0.24351859 0.76596529]\n", + " [-0.56819932 -0.24342597 0.78606191]\n", + " [-0.54013464 -0.2432603 0.80565439]\n", + " [-0.51092406 -0.242982 0.8245704 ]\n", + " [-0.48071939 -0.24256474 0.84265723]\n", + " [-0.44968372 -0.24199363 0.85978116]\n", + " [-0.60324528 -0.25469037 0.75579623]\n", + " [-0.60021234 -0.28669199 0.74669462]\n", + " [-0.5962449 -0.31912595 0.73664825]\n", + " [-0.59134595 -0.35176354 0.72565307]\n", + " [-0.58552615 -0.38438773 0.71372628]\n", + " [-0.57880584 -0.41679086 0.70090597]\n", + " [-0.43702561 -0.25337449 0.86302374]\n", + " [-0.43223613 -0.28667951 0.85497765]\n", + " [-0.42680153 -0.32037221 0.84569622]\n", + " [-0.42072266 -0.35423248 0.83517172]\n", + " [-0.4140111 -0.38804383 0.82341775]\n", + " [-0.4066899 -0.42159301 0.81047064]\n", + " [-0.56667647 -0.4289371 0.70348471]\n", + " [-0.53869888 -0.4308989 0.723968 ]\n", + " [-0.50944888 -0.43237399 0.7439856 ]\n", + " [-0.47906103 -0.43332273 0.76336881]\n", + " [-0.44768599 -0.43371591 0.78196404]\n", + " [-0.41549147 -0.43353519 0.79963371]\n", + " [-0.60409307 -0.24354357 0.75878725]\n", + " [-0.60409307 -0.24354357 0.75878725]\n", + " [-0.40396641 -0.43333273 0.80562639]\n", + " [-0.40396641 -0.43333273 0.80562639]\n", + " [-0.59408644 -0.25472295 0.76300558]\n", + " [-0.59094783 -0.28688187 0.75397577]\n", + " [-0.58689076 -0.31946582 0.74397636]\n", + " [-0.58191729 -0.35224729 0.73300349]\n", + " [-0.57603735 -0.3850097 0.72107455]\n", + " [-0.56927089 -0.41754522 0.70822782]\n", + " [-0.5671932 -0.25477232 0.78318768]\n", + " [-0.56375564 -0.28732006 0.77435571]\n", + " [-0.55944588 -0.32027642 0.76448893]\n", + " [-0.55426376 -0.35341676 0.75358362]\n", + " [-0.54821775 -0.38652532 0.74165725]\n", + " [-0.54132713 -0.4193933 0.72874838]\n", + " [-0.5390104 -0.25471825 0.80286139]\n", + " [-0.53527153 -0.28757282 0.79422054]\n", + " [-0.53070827 -0.32082517 0.78448706]\n", + " [-0.52531917 -0.35425272 0.77365676]\n", + " [-0.51911217 -0.38763985 0.76174661]\n", + " [-0.51210663 -0.42077638 0.74879506]\n", + " [-0.50967956 -0.25452207 0.82185477]\n", + " [-0.50563426 -0.28760349 0.81339918]\n", + " [-0.50081458 -0.3210762 0.80380025]\n", + " [-0.49521879 -0.35471897 0.79305284]\n", + " [-0.48885522 -0.38831589 0.78117306]\n", + " [-0.48174386 -0.42165545 0.76819889]\n", + " [-0.47935196 -0.25415815 0.84001508]\n", + " [-0.47499407 -0.28738755 0.83173856]\n", + " [-0.46991457 -0.32100506 0.82227492]\n", + " [-0.46411239 -0.3547902 0.81161789]\n", + " [-0.45759694 -0.38852668 0.79978251]\n", + " [-0.45038934 -0.42200192 0.78680609]\n", + " [-0.44819075 -0.25361196 0.85720828]\n", + " [-0.44351464 -0.28691104 0.84910354]\n", + " [-0.43817286 -0.32059754 0.83977483]\n", + " [-0.43216569 -0.3544513 0.82921475]\n", + " [-0.42550408 -0.38825584 0.81743726]\n", + " [-0.41821057 -0.421798 0.80447894]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:fp_optics: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:fp_optics: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:cartToSphere: vec: [[ 1.51336925e-01 -5.39739091e-01 8.28117654e-01]\n", + " [ 1.41884435e-01 -5.61486063e-01 8.15231383e-01]\n", + " [ 1.31981367e-01 -5.83231084e-01 8.01512583e-01]\n", + " [ 1.21680041e-01 -6.04859224e-01 7.86981123e-01]\n", + " [ 1.11030179e-01 -6.26262671e-01 7.71665320e-01]\n", + " [ 1.00079487e-01 -6.47340196e-01 7.55602254e-01]\n", + " [ 8.88743791e-02 -6.67996860e-01 7.38837965e-01]\n", + " [ 7.74605600e-02 -6.88144087e-01 7.21427458e-01]\n", + " [ 1.51336925e-01 -5.39739091e-01 8.28117654e-01]\n", + " [ 1.27455629e-01 -5.31493218e-01 8.37418666e-01]\n", + " [ 1.02893307e-01 -5.22794628e-01 8.46226178e-01]\n", + " [ 7.77593295e-02 -5.13644876e-01 8.54472017e-01]\n", + " [ 5.21605035e-02 -5.04053015e-01 8.62096189e-01]\n", + " [ 2.62019613e-02 -4.94035642e-01 8.69046743e-01]\n", + " [-1.19782013e-05 -4.83616728e-01 8.75279875e-01]\n", + " [-2.63773304e-02 -4.72827311e-01 8.80760223e-01]\n", + " [ 7.74605600e-02 -6.88144087e-01 7.21427458e-01]DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "\n", + " [ 5.19377001e-02 -6.81166897e-01 DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "7.30283598e-01]\n", + " [ 2.58475798e-02 -6DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + ".73501696e-01 7.38733624e-01]\n", + " [-7.DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "07380604e-04 -6.65148339e-01 7.46710912e-01]\n", + " [-2.76248775e-02 -6.56113527e-01 7.54156420e-01]\n", + " [-5.48008838e-02 -6.46411554e-01 7.61018375e-01]\n", + " [-8.21288343e-02 -6.36064890e-01 7.67252443e-01]\n", + " [-1.09499904e-01 -6.25104431e-01 7.72822244e-01]\n", + " [-2.63773304e-02 -4.72827311e-01 8.80760223e-01]\n", + " [-3.78845216e-02 -4.94995419e-01 8.68069294e-01]\n", + " [-4.95949863e-02 -5.17200763e-01 8.54425952e-01]\n", + " [-6.14599721e-02 -5.39333539e-01 8.39846418e-01]\n", + " [-7.34313766e-02 -5.61289064e-01 8.24355761e-01]\n", + " [-8.54609703e-02 -5.82966608e-01 8.07989082e-01]\n", + " [-9.75001038e-02 -6.04269220e-01 7.90792286e-01]\n", + " [-1.09499904e-01 -6.25104431e-01 7.72822244e-01]\n", + " [ 1.47193544e-01 -5.49186296e-01 8.22635079e-01]\n", + " [ 1.35297354e-01 -5.75853845e-01 8.06279713e-01]\n", + " [ 1.22776837e-01 -6.02403454e-01 7.88692543e-01]\n", + " [ 1.09724593e-01 -6.28633719e-01 7.69922178e-01]\n", + " [ 9.62285269e-02 -6.54358248e-01 7.50036902e-01]\n", + " [ 8.23737712e-02 -6.79404884e-01 7.29125205e-01]\n", + " [ 1.40983406e-01 -5.36273847e-01 8.32186302e-01]\n", + " [ 1.11241001e-01 -5.25864151e-01 8.43262909e-01]\n", + " [ 8.05847265e-02 -5.14774980e-01 8.53529626e-01]\n", + " [ 4.92122407e-02 -5.03019875e-01 8.62872622e-01]\n", + " [ 1.73171845e-02 -4.90629371e-01 8.71196267e-01]\n", + " [-1.49085369e-02 -4.77650556e-01 8.78423407e-01]\n", + " [ 6.64483851e-02 -6.85118119e-01 7.25394910e-01]\n", + " [ 3.47734729e-02 -6.76103846e-01 7.35985322e-01]\n", + " [ 2.34833392e-03 -6.66055421e-01 7.45898560e-01]\n", + " [-3.06387637e-02 -6.54982305e-01 7.55022812e-01]\n", + " [-6.39962180e-02 -6.42910888e-01 7.63262782e-01]\n", + " [-9.75268583e-02 -6.29886044e-01 7.70540124e-01]\n", + " [-3.12756675e-02 -4.82518425e-01 8.75327254e-01]\n", + " [-4.55208992e-02 -5.09727218e-01 8.59130963e-01]\n", + " [-6.00230606e-02 -5.36882119e-01 8.41519354e-01]\n", + " [-7.46933836e-02 -5.63788371e-01 8.22534845e-01]\n", + " [-8.94430517e-02 -5.90260513e-01 8.02242150e-01]\n", + " [-1.04182390e-01 -6.16121865e-01 7.80730349e-01]\n", + " [ 1.51225048e-01 -5.39785896e-01 8.28107584e-01]\n", + " [ 1.51225048e-01 -5.39785896e-01 8.28107584e-01]\n", + " [-1.09365444e-01 -6.25072564e-01 7.72867058e-01]\n", + " [-1.09365444e-01 -6.25072564e-01 7.72867058e-01]\n", + " [ 1.36884108e-01 -5.45711026e-01 8.26717737e-01]\n", + " [ 1.06958363e-01 -5.35386911e-01 8.37807116e-01]\n", + " [ 7.61309056e-02 -5.24355826e-01 8.48089060e-01]\n", + " [ 4.45983301e-02 -5.12631494e-01 8.57449672e-01]\n", + " [ 1.25535787e-02 -5.00244730e-01 8.65793057e-01]\n", + " [-1.98115497e-02 -4.87242970e-01 8.73041689e-01]\n", + " [ 1.24813072e-01 -5.72481628e-01 8.10361946e-01]\n", + " [ 9.44157387e-02 -5.62399368e-01 8.21457619e-01]\n", + " [ 6.31491939e-02 -5.51536194e-01 8.31757180e-01]\n", + " [ 3.12069415e-02 -5.39906114e-01 8.41146548e-01]\n", + " [-1.21972165e-03 -5.27540377e-01 8.49529083e-01]\n", + " [-3.39388084e-02 -5.14487097e-01 8.56826227e-01]\n", + " [ 1.12142619e-01 -5.99133035e-01 7.92756986e-01]\n", + " [ 8.13424592e-02 -5.89293283e-01 8.03813928e-01]\n", + " [ 4.97027908e-02 -5.78604656e-01 8.14092307e-01]\n", + " [ 1.74144490e-02 -5.67080873e-01DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:cartToSphere: vec: [[ 0.17829698 -0.59006735 -0.78742029]\n", + " [ 0.18207023 -0.61081342 -0.77055655]\n", + " [ 0.18592784 -0.63149476 -0.7527584 ]\n", + " [ 0.18983739 -0.6520033 -0.73406638]\n", + " [ 0.19376715 -0.67223527 -0.71453064]\n", + " [ 0.19768813 -0.69209276 -0.69420963]\n", + " [ 0.2015751 -0.71148448 -0.67316961]\n", + " [ 0.20540673 -0.73032605 -0.65148441]\n", + " [ 0.17829698 -0.59006735 -0.78742029]\n", + " [ 0.20394857 -0.58181781 -0.78733285]\n", + " [ 0.2300258 -0.57306715 -0.78656352]\n", + " [ 0.25641108 -0.5638189 -0.785087 ]\n", + " [ 0.28298584 -0.55408271 -0.78288656]\n", + " [ 0.30963345 -0.54387511 -0.7799532 ]\n", + " [ 0.33624044 -0.53322002 -0.77628524]\n", + " [ 0.36269693 -0.52214873 -0.77188836]\n", + " [ 0.20540673 -0.73032605 -0.65148441]\n", + " [ 0.23239296 -0.7232698 -0.65028786]\n", + " [ 0.25974704 -0.71548954 -0.64854159]\n", + " [ 0.28734636 -0.70698437 -0.64622378]\n", + " [ 0.31507334 -0.69776023 -0.64331909]\n", + " [ 0.34281309 -0.68783066 -0.63981886]\n", + " [ 0.37045137 -0.6772177 -0.63572161]\n", + " [ 0.39787403 -0.6659526 -0.63103359]\n", + " [ 0.36269693 -0.52214873 -0.77188836]\n", + " [ 0.36843197 -0.54326945 -0.7543979 ]\n", + " [ 0.37398884 -0.5643693 -0.73594812]\n", + " [ 0.37932822 -0.58533902 -0.716581 ]\n", + " [ 0.3844153 -0.60607659 -0.69634477]\n", + " [ 0.38921933 -0.6264855 -0.67529567]\n", + " [ 0.39371329 -0.64647347 -0.65349973]\n", + " [ 0.39787403 -0.6659526 -0.63103359]\n", + " [ 0.1800171 -0.59908658 -0.78018531]\n", + " [ 0.18470358 -0.62448397 -0.75888363]\n", + " [ 0.18948445 -0.64967643 -0.73621748]\n", + " [ 0.19430083 -0.67447097 -0.7122753 ]\n", + " [ 0.19909948 -0.69868745 -0.68716464]\n", + " [ 0.20383556 -0.72216064 -0.66101065]\n", + " [ 0.1894347 -0.58660334 -0.78740778]\n", + " [ 0.2211755 -0.57615617 -0.78684526]\n", + " [ 0.25343909 -0.56495899 -0.78523243]\n", + " [ 0.28600734 -0.55302696 -0.78253497]\n", + " [ 0.31866567 -0.5403906 -0.77873628]\n", + " [ 0.35120668 -0.52709698 -0.77383632]\n", + " [ 0.21710645 -0.72727453 -0.6511041 ]\n", + " [ 0.25044382 -0.7181393 -0.64927177]\n", + " [ 0.28421129 -0.70791507 -0.64659121]\n", + " [ 0.31819037 -0.69660993 -0.64303149]\n", + " [ 0.35216932 -0.6842489 -0.63857671]\n", + " [ 0.38593782 -0.6708764 -0.63322734]\n", + " [ 0.36512616 -0.53139134 -0.7643992 ]\n", + " [ 0.37203952 -0.55727743 -0.74231291]\n", + " [ 0.37864586 -0.58302268 -0.71882673]\n", + " [ 0.38487922 -0.60843633 -0.69402681]\n", + " [ 0.39068297 -0.63334055 -0.66801689]\n", + " [ 0.39600897 -0.65756721 -0.64092298]\n", + " [ 0.17839657 -0.59011092 -0.78736507]\n", + " [ 0.17839657 -0.59011092 -0.78736507]\n", + " [ 0.39776711 -0.66592655 -0.63112848]\n", + " [ 0.39776711 -0.66592655 -0.63112848]\n", + " [ 0.19111581 -0.5956127 -0.78020527]\n", + " [ 0.22302624 -0.58524486 -0.77958178]\n", + " [ 0.25545327 -0.5741018 -0.77791436]\n", + " [ 0.28817677 -0.56219769 -0.7751696 ]\n", + " [ 0.32098155 -0.54956271 -0.77133111]\n", + " [ 0.3536599 -0.53624403 -0.76639873]\n", + " [ 0.19595862 -0.6211067 -0.75883245]\n", + " [ 0.22830276 -0.61096701 -0.75802187]\n", + " [ 0.26114384 -0.59998207 -0.75619138]\n", + " [ 0.29425892 -0.58816429 -0.753309 ]\n", + " [ 0.3274326 -0.57554347 -0.74935813]\n", + " [ 0.36045689 -0.56216732 -0.74433778]\n", + " [ 0.20087028 -0.64639584 -0.73608664]\n", + " [ 0.23357326 -0.63648633 -0.73507052]\n", + " [ 0.26675336 -0.6256656 -0.73306562]\n", + " [ 0.3001878 -0.6139451 -0.7300402 ]\n", + " [ 0.33366227 -0.60135434 -0.72597689]\n", + " [ 0.36696853 -0.58794137 -0.72087381]\n", + " [ 0.20578995 -0.67128613 -0.71205718]\n", + " [ 0.23877382 -0.66160758 -0.71081817]\n", + " [ 0.27221719 -0.65095748 -0.70862696]\n", + " [ 0.30589884 -0.63934639 -0.70545169]\n", + " [ 0.33960579 -0.62680303 -0.70127446]\n", + " [ 0.37312927 -0.61337512 -0.69609303]\n", + " [ 0.21066376 -0.69559707 -0.68685187]\n", + " [ 0.24385031 -0.68614987 -0.68537244]\n", + " [ 0.27748182 -0.67567704 -0.68298198]\n", + " [ 0.31133874 -0.66418809 -0.67964872]\n", + " [ 0.34520904 -0.65171031 -0.67535501]DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "\n", + " [ 0.37888324 -0.63829035 -0.67009919]\n", + " [ 0.21544686 -0.71916311 -0.66059599]\n", + " [ 0.24875851 -0.70994679 -0.65885868]\n", + " [ 0.28250363 -0.69965695 -0.65625593]\n", + " [ 0.31646365 -0.68830202 -0.65275653]\n", + " [ 0.35042687 -0.6759076 -0.64834399]\n", + " [ 0.38418312 -0.6625187 -0.64301812]]\n", + " 8.23478003e-01]\n", + " [-1.53322129e-02 -5.54752929e-01 8.31873855e-01]\n", + " [-4.83443512e-02 -5.41669036e-01 8.39200500e-01]\n", + " [ 9.89644505e-02 -6.25464291e-01 7.73951199e-01]\n", + " [ 6.78277262e-02 -6.15869019e-01 7.84923404e-01]\n", + " [ 3.58790685e-02 -6.05362858e-01 7.95140555e-01]\n", + " [ 3.30746701e-03 -5.93958606e-01 8.04488804e-01]\n", + " [-2.96969327e-02 -5.81686325e-01 8.12870907e-01]\n", + " [-6.29399867e-02 -5.68593719e-01 8.20207133e-01]\n", + " [ 8.53657186e-02 -6.51289070e-01 7.54012759e-01]\n", + " [ 5.39569821e-02 -6.41940291e-01 7.64853781e-01]\n", + " [ 2.17627079e-02 -6.31624418e-01 7.74969018e-01]\n", + " [-1.10290133e-02 -6.20352889e-01 7.84245276e-01]\n", + " [-4.42276501e-02 -6.08154326e-01 7.92585787e-01]\n", + " [-7.76376275e-02 -5.95075423e-01 7.99911020e-01]\n", + " [ 7.14311679e-02 -6.76434892e-01 7.33030303e-01]\n", + " [ 3.98143721e-02 -6.67333455e-01 7.43694074e-01]\n", + " [ 7.43811080e-03 -6.57214381e-01 7.53666990e-01]\n", + " [-2.55095316e-02 -6.46087622e-01 7.62836843e-01]\n", + " [-5.88372665e-02 -6.33980143e-01 7.71107875e-01]\n", + " [-9.23482703e-02 -6.20937315e-01 7.78401341e-01]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:fp_optics: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:fp_optics: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:cartToSphere: vec: [[0.32273456 0.90441304 0.27906892]\n", + " [0.32163041 0.91263422 0.25229479]\n", + " [0.32024344 0.92028024 0.22478529]\n", + " [0.31856529 0.92728015 0.19664098]\n", + " [0.31659078 0.93357312 0.1679628 ]\n", + " [0.31431812 0.93910783 0.13885461]\n", + " [0.31174916 0.94384245 0.10942531]\n", + " [0.30888967 0.94774513 0.07978937]\n", + " [0.32273456 0.90441304 0.27906892]\n", + " [0.35005975 0.89541836 0.2751075 ]\n", + " [0.37700066 0.88573102 0.27083402]\n", + " [0.40345592 0.87540047 0.26626553]\n", + " [0.4293284 0.86448632 0.26142022]\n", + " [0.4545254 0.85305807 0.25631736]\n", + " [0.47895932 0.84119449 0.25097767]\n", + " [0.50254921 0.82898205 0.24542425]\n", + " [0.30888967 0.94774513 0.07978937]\n", + " [0.33715547 0.93838969 0.07583514]\n", + " [0.36502642 0.92822255 0.07182344]\n", + " [0.39239663 0.917296 0.06777115]\n", + " [0.41916817 0.90567154 0.06369543]\n", + " [0.44525055 0.89341937 0.05961364]\n", + " [0.47055882 0.88061871 0.05554351]\n", + " [0.49501117 0.86735882 0.05150352]\n", + " [0.50254921 0.82898205 0.24542425]\n", + " [0.50299167 0.83601622 0.219263 ]\n", + " [0.50294073 0.8426309 0.1924157 ]\n", + " [0.50238371 0.84875879 0.16498221]\n", + " [0.50131336 0.85434047 0.13706667]\n", + " [0.49972666 0.85932596 0.1087757 ]\n", + " [0.49762439 0.86367532 0.08021791]\n", + " [0.49501117 0.86735882 0.05150352]\n", + " [0.32238161 0.9080336 0.26747914]\n", + " [0.32084031 0.9177319 0.23415735]\n", + " [0.31886537 0.92649472 0.19983097]\n", + " [0.31644594 0.93420587 0.16468563]\n", + " [0.31357874 0.94077089 0.12891276]\n", + " [0.31026879 0.94611689 0.09271522]\n", + " [0.33468611 0.90060811 0.2772909 ]\n", + " [0.36793143 0.88911228 0.27222383]\n", + " [0.40049834 0.87662394 0.266705 ]\n", + " [0.43220622 0.86324859 0.26076745]\n", + " [0.46288452 0.84911413 0.25444668]\n", + " [0.49237455 0.83436892 0.24778175]\n", + " [0.32126539 0.94375697 0.07817499]\n", + " [0.35565609 0.93173905 0.07328775]\n", + " [0.38934765 0.91855284 0.06833073]\n", + " [0.4221564 0.9043078 0.0633354 ]\n", + " [0.45391556 0.88913319 0.05833376]\n", + " [0.4844701 0.873179 0.05335876]\n", + " [0.50272226 0.83213864 0.23412736]\n", + " [0.50293389 0.84048743 0.20158963]\n", + " [0.50239126 0.84813837 0.16811998]\n", + " [0.50107885 0.85497866 0.13390848]\n", + " [0.49899105 0.86091633 0.09915141]\n", + " [0.49613089 0.8658821 0.06404936]\n", + " [0.32282524 0.90441251 0.27896573]\n", + " [0.32282524 0.90441251 0.27896573]\n", + " [0.4949389 0.8673934 0.0516156 ]\n", + " [0.4949389 0.8673934 0.0516156 ]\n", + " [0.33428889 0.90421323 0.26579951]\n", + " [0.36766357 0.89265976 0.26073367]\n", + " [0.40035636 0.88009559 0.2552382 ]\n", + " [0.4321864 0.8666264 0.24934635]\n", + " [0.46298289 0.85238044 0.24309347]\n", + " [0.4925861 0.83750723 0.2365176 ]\n", + " [0.33286429 0.91387134 0.23246622]\n", + " [0.36656451 0.90217244 0.22741008]\n", + " [0.39957409 0.88941669 0.22198761]\n", + " [0.43171176 0.8757101 0.21623317]\n", + " [0.46280695 0.86118121 0.2101824 ]\n", + " [0.49269894 0.8459811 0.20387184]\n", + " [0.3309841 0.92260145 0.1981315 ]\n", + " [0.36494907 0.91078347 0.1930949 ]\n", + " [0.39821634 0.89787039 0.18775653]\n", + " [0.4306042 0.88396876 0.18215171]\n", + " [0.46194322 0.86920705 0.17631666]\n", + " [0.49207365 0.85373631 0.17028751]\n", + " [0.32863701 0.93028752 0.16298111]\n", + " [0.36280492 0.91837708 0.1579751 ]\n", + " [0.39627036 0.90534091 0.15273388]\n", + " [0.42885104 0.89128648 0.14729287]\n", + " [0.4603788 0.87634229 0.14168821]\n", + " [0.49069579 0.86065888 0.13595567]\n", + " [0.32581894 0.93683535 0.12720668]\n", + " [0.36012611 0.92485988 0.12224316]\n", + " [0.39372935 0.91173551 0.11711342]\n", + " [0.42644567 0.89757076 0.11185182]\n", + " [0.45810789 0.88249438 0.10649332]\n", + " [0.48855993 0.86665649 0.10107283]\n", + " [0.32253406 0.94217236 0.09101112]\n", + " [0.35691478 0.93016035 0.08610201]\n", + " [0.3905943 0.91698378 0.08109771]\n", + " [0.42338906 0.90275193 0.07603058]\n", + " [0.4551323 0.88759396 0.07093346]\n", + " [0.48566891 0.87165981 0.06583987]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:fp_optics: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:cartToSphere: vec: [[ 0.16096761 0.27017441 -0.94926035]\n", + " [ 0.18199241 0.25172069 -0.9505343 ]\n", + " [ 0.20328914 0.23269476 -0.95106607]\n", + " [ 0.22476489 0.21316149 -0.95081172]\n", + " [ 0.2463283 0.19318861 -0.94973708]\n", + " [ 0.2678887 0.17284767 -0.94781819]\n", + " [ 0.28935616 0.15221418 -0.94504172]\n", + " [ 0.31064213 0.13136725 -0.94140539]\n", + " [ 0.16096761 0.27017441 -0.94926035]\n", + " [ 0.17946288 0.2904869 -0.93989916]\n", + " [ 0.19782263 0.31042541 -0.92978614]\n", + " [ 0.21597938 0.32991361 -0.91897221]\n", + " [ 0.23386943 0.34887759 -0.90751833]\n", + " [ 0.2514332 0.36724533 -0.89549551]\n", + " [ 0.26861532 0.38494582 -0.88298501]\n", + " [ 0.2853644 0.40190771 -0.87007894]\n", + " [ 0.31064213 0.13136725 -0.94140539]\n", + " [ 0.3296562 0.15248025 -0.93170626]\n", + " [ 0.34831489 0.17338648 -0.9212024 ]\n", + " [ 0.3665489 0.19400548 -0.90994713]\n", + " [ 0.38429433 0.21426032 -0.89800356]\n", + " [ 0.40149302 0.23407806 -0.88544385]\n", + " [ 0.41809241 0.25338969 -0.87234878]\n", + " [ 0.43404475 0.27212922 -0.85880781]\n", + " [ 0.2853644 0.40190771 -0.87007894]\n", + " [ 0.30667881 0.38524036 -0.87036657]\n", + " [ 0.32812602 0.36783123 -0.87007672]\n", + " [ 0.34960835 0.34975062 -0.86916541]\n", + " [ 0.37103153 0.33106839 -0.86759975]\n", + " [ 0.39230406 0.31185525 -0.86535763]\n", + " [ 0.41333711 0.29218384 -0.86242741]\n", + " [ 0.43404475 0.27212922 -0.85880781]\n", + " [ 0.17015866 0.26227324 -0.94987303]\n", + " [ 0.19612201 0.23926416 -0.95094102]\n", + " [ 0.22240114 0.21545967 -0.95084955]\n", + " [ 0.24882727 0.19098321 -0.94953167]\n", + " [ 0.2752335 0.1659665 -0.94694331]\n", + " [ 0.3014548 0.14055008 -0.94306451]\n", + " [ 0.16911539 0.27900996 -0.94527955]\n", + " [ 0.19170131 0.30366405 -0.93329457]\n", + " [ 0.21401605 0.32768038 -0.9202297 ]\n", + " [ 0.23594076 0.35092187 -0.90619302]\n", + " [ 0.25736575 0.37325586 -0.89131528]\n", + " [ 0.27819076 0.39455153 -0.87575053]\n", + " [ 0.31889901 0.14066429 -0.93729237]\n", + " [ 0.34197275 0.16641145 -0.92485776]\n", + " [ 0.36444341 0.1917676 -0.91126626]\n", + " [ 0.38619108 0.2165896 -0.89663002]\n", + " [ 0.40710869 0.24074319 -0.88108186]\n", + " [ 0.42710149 0.26410262 -0.86477403]\n", + " [ 0.29457844 0.39467927 -0.87031708]\n", + " [ 0.3208036 0.37374257 -0.87028819]\n", + " [ 0.34713085 0.35176176 -0.86934679]\n", + " [ 0.37338526 0.32886554 -0.86742775]\n", + " [ 0.39939839 0.30518425 -0.86449031]\n", + " [ 0.42500785 0.28085257 -0.86051738]\n", + " [ 0.16110233 0.27018236 -0.94923523]\n", + " [ 0.16110233 0.27018236 -0.94923523]\n", + " [ 0.43392119 0.27213533 -0.85886831]\n", + " [ 0.43392119 0.27213533 -0.85886831]\n", + " [ 0.1782016 0.27113682 -0.94590116]\n", + " [ 0.20085749 0.29590209 -0.93386199]\n", + " [ 0.22322001 0.32004299 -0.92073086]\n", + " [ 0.24516986 0.34342254 -0.90661607]\n", + " [ 0.26659711 0.36590878 -0.89164833]\n", + " [ 0.28740147 0.3873722 -0.87598126]\n", + " [ 0.20423974 0.24821873 -0.9469285 ]\n", + " [ 0.22706654 0.27326858 -0.93475402]\n", + " [ 0.24953827 0.29773267 -0.92145858]\n", + " [ 0.27153456 0.32147371 -0.90715139]\n", + " [ 0.29294506 0.34436096 -0.89196341]\n", + " [ 0.31366969 0.36626796 -0.87604743]\n", + " [ 0.23057872 0.22448879 -0.94680422]\n", + " [ 0.25353499 0.24977806 -0.93452177]\n", + " [ 0.27607597 0.27452197 -0.92109703]\n", + " [ 0.29808064 0.29858221 -0.90664028]\n", + " [ 0.3194387 0.32182823 -0.89128307]\n", + " [ 0.3400508 0.34413539 -0.87517786]\n", + " [ 0.25704931 0.20006998 -0.94546161]\n", + " [ 0.28009231 0.2255525 -0.93309934]\n", + " [ 0.30266138 0.25053257 -0.91958117]\n", + " [ 0.32463529 0.27487041 -0.90501833]\n", + " [ 0.3459043 0.29843484 -0.88954306]\n", + " [ 0.3663702 0.32110188 -0.87330777]\n", + " [ 0.28348418 0.17509351 -0.94285682]\n", + " [ 0.30657018 0.20072171 -0.93044372]\n", + " [ 0.32912558 0.2258931 -0.91686894]\n", + " [ 0.35102943 0.25046634 -0.9022444 ]\n", + " [ 0.37217292 0.27430908 -0.88670279]\n", + " [ 0.39245929 0.29729702 -0.87039657]\n", + " [ 0.30971799 0.1496995 -0.93897009]\n", + " [ 0.33280274 0.17542443 -0.92653581]\n", + " [ 0.35530279 0.20074077 -0.91294199]\n", + " [ 0.37709787 0.2255058 -0.8983008 ]\n", + " [ 0.39808044 0.24958577 -0.8827451 ]\n", + " [ 0.41815524 0.27285537 -0.86642723]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:fp_optics: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:cartToSphere: vec: [[ 0.84140487 0.38912383 -0.37499398]\n", + " [ 0.82753178 0.3954821 -0.39847844]\n", + " [ 0.8127137 0.40164826 -0.42210795]\n", + " [ 0.79697334 0.40758031 -0.445771 ]\n", + " [ 0.78034176 0.41324042 -0.46936031]\n", + " [ 0.76285964 0.41859459 -0.49277148]\n", + " [ 0.74457809 0.42361282 -0.51590275]\n", + " [ 0.72555877 0.42826934 -0.53865559]\n", + " [ 0.84140487 0.38912383 -0.37499398]\n", + " [ 0.84801556 0.36310793 -0.38603399]\n", + " [ 0.85384609 0.33689493 -0.39679802]\n", + " [ 0.85888243 0.31059224 -0.40725106]\n", + " [ 0.86311899 0.28431108 -0.41736414]\n", + " [ 0.86655814 0.25816666 -0.42711469]\n", + " [ 0.8692099 0.23227884 -0.43648676]\n", + " [ 0.8710915 0.206773 -0.44547112]\n", + " [ 0.72555877 0.42826934 -0.53865559]\n", + " [ 0.7324681 0.40131675 -0.54994122]\n", + " [ 0.73869603 0.37409287 -0.5606984 ]\n", + " [ 0.74422743 0.34671052 -0.57089171]\n", + " [ 0.74905623 0.31928411 -0.58049325]\n", + " [ 0.75318514 0.29192891 -0.58948253]\n", + " [ 0.75662512 0.26476131 -0.59784603]\n", + " [ 0.75939485 0.2379003 -0.60557651]\n", + " [ 0.8710915 0.206773 -0.44547112]\n", + " [ 0.85778668 0.21117944 -0.46862058]\n", + " [ 0.84354056 0.21566263 -0.49186273]\n", + " [ 0.82837984 0.22017895 -0.51508065]\n", + " [ 0.81233862 0.22469075 -0.53816358]\n", + " [ 0.79545895 0.22916581 -0.56100632]\n", + " [ 0.77779131 0.23357672 -0.58350887]\n", + " [ 0.75939485 0.2379003 -0.60557651]\n", + " [ 0.8354975 0.39182795 -0.3852464 ]\n", + " [ 0.81785688 0.3994961 -0.41414126]\n", + " [ 0.79881853 0.40683367 -0.44314255]\n", + " [ 0.77843609 0.41376926 -0.47205111]\n", + " [ 0.75678454 0.42024036 -0.50067475]\n", + " [ 0.73396236 0.42619345 -0.52882738]\n", + " [ 0.84433612 0.37783341 -0.37991899]\n", + " [ 0.85191601 0.34580139 -0.39326899]\n", + " [ 0.85830922 0.31357958 -0.40616884]\n", + " [ 0.86350193 0.28137113 -0.41856266]\n", + " [ 0.86749852 0.24938825 -0.43040891]\n", + " [ 0.87032039 0.2178538 -0.44168104]\n", + " [ 0.7287199 0.41654312 -0.54356153]\n", + " [ 0.736732 0.38331358 -0.55704278]\n", + " [ 0.74370444 0.34978844 -0.56969444]\n", + " [ 0.7496223 0.31617776 -0.58146197]\n", + " [ 0.75449051 0.28269374 -0.59230763]\n", + " [ 0.75833247 0.24955163 -0.60220914]\n", + " [ 0.8654024 0.20876868 -0.45551544]\n", + " [ 0.84845953 0.214228 -0.4839657 ]\n", + " [ 0.83012845 0.21975838 -0.5124383 ]\n", + " [ 0.81046887 0.22528804 -0.54072683]\n", + " [ 0.78955826 0.2307576 -0.56863757]\n", + " [ 0.76749313 0.23611837 -0.5959886 ]\n", + " [ 0.84138298 0.38905734 -0.37511209]\n", + " [ 0.84138298 0.38905734 -0.37511209]\n", + " [ 0.75945057 0.23797688 -0.60547653]\n", + " [ 0.75945057 0.23797688 -0.60547653]\n", + " [ 0.83846284 0.38055917 -0.39007022]\n", + " [ 0.8460792 0.34839326 -0.40345028]\n", + " [ 0.85251172 0.31602788 -0.4163534 ]\n", + " [ 0.85774688 0.28366637 -0.42872332]\n", + " [ 0.86178953 0.2515205 -0.44051815]\n", + " [ 0.86466156 0.21981228 -0.45171113]\n", + " [ 0.82085335 0.38811434 -0.41900721]\n", + " [ 0.82856594 0.35561061 -0.4324576 ]\n", + " [ 0.83510668 0.32288279 -0.44535775]\n", + " [ 0.8404627 0.29013517 -0.45765055]\n", + " [ 0.84464002 0.25757875 -0.46929353]\n", + " [ 0.84766193 0.22543305 -0.4802595 ]\n", + " [ 0.80184097 0.39536001 -0.44804187]\n", + " [ 0.80963967 0.36258045 -0.46153983]\n", + " [ 0.81628485 0.32955578 -0.47441757]\n", + " [ 0.82176388 0.29649177 -0.48661768]\n", + " [ 0.82608358 0.2635992 -0.49809777]\n", + " [ 0.8292683 0.23109557 -0.50883094]\n", + " [ 0.78147924 0.40222543 -0.47697474]\n", + " [ 0.78935401 0.36923358 -0.4904965 ]\n", + " [ 0.79610056 0.33597861 -0.50333118]\n", + " [ 0.80170606 0.30266795 -0.51542167]\n", + " [ 0.80617752 0.26951264 -0.52672645]\n", + " [ 0.80953978 0.23672879 -0.53721954]\n", + " [ 0.75984297 0.40864878 -0.50561332]\n", + " [ 0.7677835 0.3755102 -0.51913446]\n", + " [ 0.77462848 0.3420931 -0.53190509]\n", + " [ 0.78036444 0.30860635 -0.54386898]\n", + " [ 0.78499786 0.27526151 -0.55498599]\n", + " [ 0.78855343 0.24227397 -0.56523165]\n", + " [ 0.73703046 0.41457721 -0.53377133]\n", + " [ 0.7450259 0.38135932 -0.54726728]\n", + " [ 0.75196584 0.34784987 -0.55995343]\n", + " [ 0.75783579 0.31425872 -0.57177476]\n", + " [ 0.76264115 0.28079795 -0.58269288]\n", + " [ 0.76640575 0.24768274 -0.59268498]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:fp_optics: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:cartToSphere: vec: [[ 3.36910786e-02 1.99110900e-01 -9.79397652e-01]\n", + " [ 2.91051319e-02 2.26109987e-01 -9.73666866e-01]\n", + " [ 2.44044539e-02 2.53467493e-01 -9.67036014e-01]\n", + " [ 1.96065202e-02 2.81063962e-01 -9.59488736e-01]\n", + " [ 1.47290324e-02 3.08782800e-01 -9.51018527e-01]\n", + " [ 9.79021723e-03 3.36508636e-01 -9.41629486e-01]\n", + " [ 4.80897027e-03 3.64126660e-01 -9.31337022e-01]\n", + " [-1.95192991e-04 3.91523075e-01 -9.20168269e-01]\n", + " [ 3.36910786e-02 1.99110900e-01 -9.79397652e-01]\n", + " [ 5.06934305e-03 1.94630777e-01 -9.80863478e-01]\n", + " [-2.34823075e-02 1.90097813e-01 -9.81484286e-01]\n", + " [-5.18528765e-02 1.85534808e-01 -9.81268625e-01]\n", + " [-7.99322100e-02 1.80968402e-01 -9.80235318e-01]\n", + " [-1.07611049e-01 1.76429473e-01 -9.78413258e-01]\n", + " [-1.34780764e-01 1.71953528e-01 -9.75841242e-01]\n", + " [-1.61332998e-01 1.67580849e-01 -9.72567901e-01]\n", + " [-1.95192991e-04 3.91523075e-01 -9.20168269e-01]\n", + " [-2.97881099e-02 3.86740167e-01 -9.21707498e-01]\n", + " [-5.92602960e-02 3.81628498e-01 -9.22414173e-01]\n", + " [-8.84959249e-02 3.76213133e-01 -9.22297213e-01]\n", + " [-1.17382714e-01 3.70523015e-01 -9.21376141e-01]\n", + " [-1.45812405e-01 3.64590701e-01 -9.19680577e-01]\n", + " [-1.73680104e-01 3.58452333e-01 -9.17249773e-01]\n", + " [-2.00882633e-01 3.52147891e-01 -9.14132392e-01]\n", + " [-1.61332998e-01 1.67580849e-01 -9.72567901e-01]\n", + " [-1.67497720e-01 1.93258437e-01 -9.66744894e-01]\n", + " [-1.73523285e-01 2.19365758e-01 -9.60087670e-01]\n", + " [-1.79390740e-01 2.45778698e-01 -9.52581647e-01]\n", + " [-1.85080569e-01 2.72377477e-01 -9.44222269e-01]\n", + " [-1.90572694e-01 2.99046258e-01 -9.35015178e-01]\n", + " [-1.95846768e-01 3.25672717e-01 -9.24976392e-01]\n", + " [-2.00882633e-01 3.52147891e-01 -9.14132392e-01]\n", + " [ 3.16085576e-02 2.10815431e-01 -9.77014715e-01]\n", + " [ 2.59076826e-02 2.44161713e-01 -9.69388390e-01]\n", + " [ 2.00520157e-02 2.77927273e-01 -9.60392809e-01]\n", + " [ 1.40740386e-02 3.11896381e-01 -9.50011878e-01]\n", + " [ 8.00732894e-03 3.45856568e-01 -9.38253227e-01]\n", + " [ 1.88694537e-03 3.79596831e-01 -9.25150088e-01]\n", + " [ 2.11945473e-02 1.97256856e-01 -9.80122709e-01]\n", + " [-1.38522014e-02 1.91727466e-01 -9.81350445e-01]\n", + " [-4.86832581e-02 1.86140754e-01 -9.81316239e-01]\n", + " [-8.30954648e-02 1.80544155e-01 -9.80050484e-01]\n", + " [-1.16887648e-01 1.74994557e-01 -9.77606354e-01]\n", + " [-1.49859949e-01 1.69559321e-01 -9.74059358e-01]\n", + " [-1.30879918e-02 3.89386401e-01 -9.20981506e-01]\n", + " [-4.92905878e-02 3.83300614e-01 -9.22307475e-01]\n", + " [-8.51964529e-02 3.76745662e-01 -9.22390519e-01]\n", + " [-1.20597343e-01 3.69773234e-01 -9.21262198e-01]\n", + " [-1.55293879e-01 3.62443254e-01 -9.18976985e-01]\n", + " [-1.89093770e-01 3.54823828e-01 -9.15611051e-01]\n", + " [-1.63946812e-01 1.78730648e-01 -9.70142669e-01]\n", + " [-1.71410300e-01 2.10507412e-01 -9.62447473e-01]\n", + " [-1.78646163e-01 2.42805792e-01 -9.53483558e-01]\n", + " [-1.85618721e-01 2.75403480e-01 -9.43238365e-01]\n", + " [-1.92291041e-01 3.08087175e-01 -9.31722302e-01]\n", + " [-1.98625721e-01 3.40651478e-01 -9.18969201e-01]\n", + " [ 3.35777395e-02 1.99187269e-01 -9.79386016e-01]\n", + " [ 3.35777395e-02 1.99187269e-01 -9.79386016e-01]\n", + " [-2.00774068e-01 3.52079524e-01 -9.14182576e-01]\n", + " [-2.00774068e-01 3.52079524e-01 -9.14182576e-01]\n", + " [ 1.91767647e-02 2.08875415e-01 -9.77754219e-01]\n", + " [-1.60047664e-02 2.03300227e-01 -9.78985631e-01]\n", + " [-5.09658044e-02 1.97640164e-01 -9.78948851e-01]\n", + " [-8.55028707e-02 1.91942380e-01 -9.77674476e-01]\n", + " [-1.19414908e-01 1.86263345e-01 -9.75215897e-01]\n", + " [-1.52502455e-01 1.80670072e-01 -9.71648767e-01]\n", + " [ 1.33536061e-02 2.42197006e-01 -9.70135192e-01]\n", + " [-2.21659262e-02 2.36500439e-01 -9.71378512e-01]\n", + " [-5.74508154e-02 2.30642953e-01 -9.71340945e-01]\n", + " [-9.22964724e-02 2.24671233e-01 -9.70053709e-01]\n", + " [-1.26502183e-01 2.18640787e-01 -9.67570878e-01]\n", + " [-1.59869945e-01 2.12617508e-01 -9.63968566e-01]\n", + " [ 7.39873766e-03 2.75941593e-01 -9.61145929e-01]\n", + " [-2.83931271e-02 2.70135500e-01 -9.62403575e-01]\n", + " [-6.39356078e-02 2.64094759e-01 -9.62375289e-01]\n", + " [-9.90228353e-02 2.57866255e-01 -9.61092853e-01]\n", + " [-1.33454402e-01 2.51505235e-01 -9.58610995e-01]\n", + " [-1.67033983e-01 2.45076843e-01 -9.55006277e-01]\n", + " [ 1.34527060e-03 3.09893500e-01 -9.50770324e-01]\n", + " [-3.46515725e-02 3.03989490e-01 -9.52044988e-01]\n", + " [-7.03841452e-02 2.97778799e-01 -9.52036690e-01]\n", + " [-1.05645375e-01 2.91309232e-01 -9.50777569e-01]\n", + " [-1.40235128e-01 2.84636665e-01 -9.48322771e-01]\n", + " [-1.73958692e-01 2.77826273e-01 -9.44749139e-01]\n", + " [-4.77245044e-03 3.43840379e-01 -9.39015984e-01]\n", + " [-4.09049147e-02 3.37850398e-01 -9.40310532e-01]\n", + " [-7.67586324e-02 3.31483283e-01 -9.40333423e-01]\n", + " [-1.12125663e-01 3.24788321e-01 -9.39116810e-01]\n", + " [-1.46806163e-01 3.17822811e-01 -9.36715865e-01]\n", + " [-1.80606753e-01 3.10652791e-01 -9.33207396e-01]\n", + " [-1.09186838e-02 3.77571383e-01 -9.25916105e-01]\n", + " [-4.71156828e-02 3.71508194e-01 -9.27233398e-01]\n", + " [-8.30204128e-02 3.64999396e-01 -9.27298793e-01]\n", + " [-1.18424600e-01 3.58096049e-01 -9.26144068e-01]\n", + " [-1.53128737e-01 3.50857361e-01 -9.23823956e-01]\n", + " [-1.86940342e-01 3.43350840e-01 -9.20414857e-01]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:fp_optics: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:cartToSphere: vec: [[-0.57389323 -0.43858436 0.69158537]\n", + " [-0.5515412 -0.44044626 0.70838506]\n", + " [-0.52829992 -0.44198824 0.72494523]\n", + " [-0.50423782 -0.44318493 0.7411689 ]\n", + " [-0.47942948 -0.44401546 0.75696608]\n", + " [-0.45395676 -0.44446361 0.77225343]\n", + " [-0.42790915 -0.44451799 0.78695458]\n", + " [-0.40138336 -0.4441723 0.80100085]\n", + " [-0.57389323 -0.43858436 0.69158537]\n", + " [-0.56730207 -0.46440683 0.68006959]\n", + " [-0.56017827 -0.48976463 0.66808002]\n", + " [-0.55255416 -0.51456437 0.65567325]\n", + " [-0.54446663 -0.53871844 0.64291409]\n", + " [-0.53595663 -0.56214491 0.62987585]\n", + " [-0.52706871 -0.58476698 0.61664103]\n", + " [-0.51785083 -0.606512 0.60330234]\n", + " [-0.40138336 -0.4441723 0.80100085]\n", + " [-0.39468374 -0.47086297 0.78899481]\n", + " [-0.38764955 -0.49704602 0.77632022]\n", + " [-0.3803135 -0.52262424 0.76303706]\n", + " [-0.37271223 -0.54750803 0.74921329]\n", + " [-0.36488589 -0.57161593 0.73492415]\n", + " [-0.35687797 -0.59487436 0.72025177]\n", + " [-0.34873534 -0.61721651 0.70528536]\n", + " [-0.51785083 -0.606512 0.60330234]\n", + " [-0.4956832 -0.60968307 0.61853434]\n", + " [-0.47272066 -0.6123418 0.63369763]\n", + " [-0.44903747 -0.61446328 0.64869117]\n", + " [-0.42471177 -0.61602622 0.66342416]\n", + " [-0.39982652 -0.61701348 0.67781496]\n", + " [-0.3744699 -0.61741264 0.69179038]\n", + " [-0.34873534 -0.61721651 0.70528536]\n", + " [-0.5642395 -0.43952302 0.69889434]\n", + " [-0.53623823 -0.44159413 0.71933524]\n", + " [-0.50696873 -0.44315884 0.73931925]\n", + " [-0.47656564 -0.44417686 0.75867787]\n", + " [-0.44517971 -0.44461833 0.77725772]\n", + " [-0.41297873 -0.44446441 0.79492135]\n", + " [-0.5710119 -0.44990121 0.68668356]\n", + " [-0.56257159 -0.48124974 0.67224392]\n", + " [-0.55336295 -0.51180682 0.6571478 ]\n", + " [-0.54345202 -0.54140875 0.64151108]\n", + " [-0.53291413 -0.56990463 0.62546882]\n", + " [-0.5218327 -0.59715488 0.60917706]\n", + " [-0.39859676 -0.45586729 0.79580503]\n", + " [-0.39015665 -0.48825057 0.78063382]\n", + " [-0.38124589 -0.51977399 0.76451721]\n", + " [-0.37193031 -0.55026941 0.74757704]\n", + " [-0.36228381 -0.57958682 0.72995175]\n", + " [-0.35238784 -0.60759366 0.71179544]\n", + " [-0.50831989 -0.60788283 0.60999128]\n", + " [-0.48060695 -0.61142747 0.6286282 ]\n", + " [-0.45177332 -0.61417751 0.64706016]\n", + " [-0.42196121 -0.61609227 0.66511582]\n", + " [-0.39132337 -0.61714024 0.68264482]\n", + " [-0.36002434 -0.61730069 0.69951578]\n", + " [-0.57379678 -0.43868023 0.69160459]\n", + " [-0.57379678 -0.43868023 0.69160459]\n", + " [-0.3488519 -0.61714343 0.70529167]\n", + " [-0.3488519 -0.61714343 0.70529167]\n", + " [-0.56144499 -0.45078762 0.69395248]\n", + " [-0.55298693 -0.48225474 0.67943787]\n", + " [-0.54377489 -0.51292266 0.66424334]\n", + " [-0.53387538 -0.54262744 0.6484848 ]\n", + " [-0.52336421 -0.5712185 0.63229686]\n", + " [-0.51232528 -0.59855706 0.6158346 ]\n", + " [-0.53342005 -0.45296843 0.71434072]\n", + " [-0.5249237 -0.48473379 0.69963438]\n", + " [-0.51571662 -0.51567996 0.68418605]\n", + " [-0.50586631 -0.54564218 0.66811218]\n", + " [-0.49544965 -0.57447043 0.6515469 ]\n", + " [-0.48455147 -0.60202809 0.63464325]\n", + " [-0.50413232 -0.45462198 0.7342816 ]\n", + " [-0.49561622 -0.48662882 0.71941431]\n", + " [-0.48643698 -0.51779995 0.70374873]\n", + " [-0.47666256 -0.54796952 0.6874025 ]\n", + " [-0.46637022 -0.57698778 0.6705102 ]\n", + " [-0.45564509 -0.60471979 0.65322395]\n", + " [-0.47371663 -0.45570737 0.75360689]\n", + " [-0.46520009 -0.48789747 0.73861014]\n", + " [-0.45607264 -0.51923927 0.72276437]\n", + " [-0.44640217 -0.54956592 0.70618864]\n", + " [-0.43626562 -0.57872766 0.68901858]\n", + " [-0.42574766 -0.6065908 0.67140639]\n", + " [-0.44232388 -0.45619414 0.77216352]\n", + " [-0.43382657 -0.48850769 0.75706984]\n", + " [-0.42477517 -0.5199648 0.74108209]\n", + " [-0.41523698 -0.55039781 0.72432071]\n", + " [-0.40528797 -0.57965687 0.70692261]\n", + " [-0.39501174 -0.60760904 0.68904062]\n", + " [-0.41012195 -0.45606293 0.78981428]\n", + " [-0.40166351 -0.4884389 0.77465726]\n", + " [-0.39271198 -0.51995504 0.75856711]\n", + " [-0.38333365 -0.55044325 0.74166538]\n", + " [-0.37360303 -0.57975357 0.72409017]\n", + " [-0.36360217 -0.6077534 0.70599523]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:fp_optics: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:cartToSphere: vec: [[-0.23685969 0.56492967 0.79041252]\n", + " [-0.24067075 0.58671169 0.77320565]\n", + " [-0.244364 0.60845272 0.75503081]\n", + " [-0.2479138 0.63003879 0.7359279 ]\n", + " [-0.25129732 0.6513638 0.71594334]\n", + " [-0.2544943 0.67232761 0.69513181]\n", + " [-0.25748685 0.69283485 0.67355801]\n", + " [-0.26025957 0.71279493 0.65129743]\n", + " [-0.23685969 0.56492967 0.79041252]\n", + " [-0.20885708 0.57209091 0.79315239]\n", + " [-0.18078371 0.57882675 0.79515838]\n", + " [-0.15275236 0.58512016 0.79643023]\n", + " [-0.12487787 0.59096189 0.79697526]\n", + " [-0.09727677 0.59635049 0.79680821]\n", + " [-0.07006641 0.60129183 0.79595153]\n", + " [-0.04336281 0.60579809 0.79443586]\n", + " [-0.26025957 0.71279493 0.65129743]\n", + " [-0.23126831 0.7200761 0.6542212 ]\n", + " [-0.2021655 0.72668853 0.65654619]\n", + " [-0.17306917 0.73261541 0.65827177]\n", + " [-0.14409576 0.73784914 0.65940509]\n", + " [-0.11536017 0.74239077 0.65996058]\n", + " [-0.08697766 0.74624944 0.65995959]\n", + " [-0.05906641 0.74944181 0.65943016]\n", + " [-0.04336281 0.60579809 0.79443586]\n", + " [-0.04526445 0.62700221 0.77770133]\n", + " [-0.047312 0.64815692 0.76003564]\n", + " [-0.04948548 0.66914959 0.74147826]\n", + " [-0.05176484 0.6898723 0.72207798]\n", + " [-0.05413171 0.71022359 0.70189188]\n", + " [-0.05657009 0.73010909 0.68098498]\n", + " [-0.05906641 0.74944181 0.65943016]\n", + " [-0.23843816 0.57444938 0.78304225]\n", + " [-0.24303222 0.60113296 0.76129791]\n", + " [-0.2474237 0.62764077 0.73813859]\n", + " [-0.25156943 0.65377425 0.71364701]\n", + " [-0.25543209 0.67934892 0.68792405]\n", + " [-0.25897977 0.70419112 0.6610933 ]\n", + " [-0.22467909 0.5681774 0.79163991]\n", + " [-0.19029631 0.57667079 0.79450495]\n", + " [-0.15591906 0.58450723 0.79626663]\n", + " [-0.12175789 0.59166647 0.79693526]\n", + " [-0.08802724 0.59814576 0.79653804]\n", + " [-0.05494281 0.60395863 0.79511965]\n", + " [-0.2476315 0.7159831 0.65272264]\n", + " [-0.21200994 0.72445989 0.65590369]\n", + " [-0.17633824 0.73191463 0.65818371]\n", + " [-0.14083149 0.73832949 0.65957263]\n", + " [-0.10570147 0.74370635 0.66009701]\n", + " [-0.07116147 0.74806514 0.6597989 ]\n", + " [-0.04426357 0.61502756 0.78726224]\n", + " [-0.04669591 0.64099738 0.7661213 ]\n", + " [-0.04932752 0.66678066 0.74361976]\n", + " [-0.05212137 0.69217664 0.71984364]\n", + " [-0.05504371 0.71699859 0.69489799]\n", + " [-0.0580661 0.74107582 0.66890579]\n", + " [-0.23677738 0.56502928 0.79036598]\n", + " [-0.23677738 0.56502928 0.79036598]\n", + " [-0.05915229 0.74936692 0.65950756]\n", + " [-0.05915229 0.74936692 0.65950756]\n", + " [-0.2262919 0.5776079 0.78432206]\n", + " [-0.19176912 0.58611231 0.78720834]\n", + " [-0.1572462 0.5939323 0.78899813]\n", + " [-0.12293399 0.6010475 0.78970192]\n", + " [-0.08904737 0.60745545 0.78934685]\n", + " [-0.05580351 0.61317069 0.78797695]\n", + " [-0.23076531 0.60431726 0.76259296]\n", + " [-0.1958903 0.61284499 0.76553772]\n", + " [-0.16100111 0.62061417 0.76740908]\n", + " [-0.12630918 0.62760381 0.76821836]\n", + " [-0.09202936 0.63381158 0.76799315]\n", + " [-0.05838053 0.63925365 0.76677668]\n", + " [-0.23505877 0.63084531 0.7394468 ]\n", + " [-0.19989738 0.63938413 0.74244796]\n", + " [-0.16471071 0.64709551 0.74440431]\n", + " [-0.12971092 0.65395806 0.74532807]\n", + " [-0.09511189 0.65996944 0.74524765]\n", + " [-0.06113168 0.66514653 0.7442063 ]\n", + " [-0.2391296 0.6569933 0.71496632]\n", + " [-0.2037487 0.66553001 0.71802247]\n", + " [-0.1683338 0.67317522 0.72006864]\n", + " [-0.13309802 0.67990784 0.72111736]\n", + " [-0.09825415 0.68572613 0.72119748]\n", + " [-0.06401839 0.69064754 0.72035243]\n", + " [-0.24294128 0.68257652 0.68925237]\n", + " [-0.20740978 0.6910972 0.69236251]\n", + " [-0.17183701 0.69866715 0.69450432]\n", + " [-0.13643715 0.70526637 0.69568977]\n", + " [-0.10142219 0.71089439 0.69594734]\n", + " [-0.06700657 0.71556963 0.69532023]\n", + " [-0.2464628 0.70742113 0.66242844]\n", + " [-0.21085191 0.71591177 0.66559132]\n", + " [-0.17519316 0.72339788 0.66783446]\n", + " [-0.13970147 0.72986104 0.66916842]\n", + " [-0.10458859 0.73530251 0.66962038]\n", + " [-0.07006791 0.73974183 0.66923277]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:fp_optics: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:cartToSphere: vec: [[-0.14800049 -0.25485363 0.95558646]\n", + " [-0.12856775 -0.27486627 0.95284777]\n", + " [-0.10864724 -0.29505051 0.94928445]\n", + " [-0.08831287 -0.31531397 0.94486927]\n", + " [-0.0676396 -0.3355673 0.93958473]\n", + " [-0.04670468 -0.35572312 0.93342366]\n", + " [-0.02558826 -0.37569564 0.92638978]\n", + " [-0.00437311 -0.3954011 0.91849815]\n", + " [-0.14800049 -0.25485363 0.95558646]\n", + " [-0.16841984 -0.27360702 0.9469815 ]\n", + " [-0.18856464 -0.29214077 0.93760181]\n", + " [-0.20835633 -0.31038789 0.92749501]\n", + " [-0.22771731 -0.32828612 0.91671863]\n", + " [-0.24657061 -0.34577812 0.90533995]\n", + " [-0.26483939 -0.36281158 0.89343598]\n", + " [-0.28244655 -0.37933898 0.88109357]\n", + " [-0.00437311 -0.3954011 0.91849815]\n", + " [-0.02559328 -0.41467894 0.9096078 ]\n", + " [-0.04672015 -0.4335236 0.89993028]\n", + " [-0.06767078 -0.4518661 0.88951542]\n", + " [-0.08836479 -0.4696443 0.87842239]\n", + " [-0.10872473 -0.48680293 0.86671901]\n", + " [-0.12867552 -0.50329298 0.85448159]\n", + " [-0.14814324 -0.51907065 0.84179525]\n", + " [-0.28244655 -0.37933898 0.88109357]\n", + " [-0.26487489 -0.39964992 0.87756552]\n", + " [-0.24663666 -0.41999847 0.87336799]\n", + " [-0.22780895 -0.44028839 0.86847522]\n", + " [-0.20846854 -0.46042737 0.86287166]\n", + " [-0.1886923 -0.48032675 0.85655206]\n", + " [-0.16855771 -0.49990152 0.8495215 ]\n", + " [-0.14814324 -0.51907065 0.84179525]\n", + " [-0.13966294 -0.2636167 0.95446346]\n", + " [-0.1155095 -0.28827211 0.95055602]\n", + " [-0.09069668 -0.31309294 0.94538189]\n", + " [-0.06536196 -0.33791353 0.93890482]\n", + " [-0.03964763 -0.36257297 0.93111165]\n", + " [-0.01370236 -0.38691409 0.92201395]\n", + " [-0.15686684 -0.26312099 0.95192444]\n", + " [-0.18171899 -0.28596668 0.94085135]\n", + " [-0.20608067 -0.30841524 0.92866076]\n", + " [-0.22980864 -0.33035002 0.91545445]\n", + " [-0.25276116 -0.35166552 0.90135629]\n", + " [-0.27479665 -0.37226742 0.88651214]\n", + " [-0.01370386 -0.40378806 0.91474991]\n", + " [-0.03965896 -0.42713279 0.90331874]\n", + " [-0.0653911 -0.44975774 0.8907536 ]\n", + " [-0.09075124 -0.47154562 0.87715959]\n", + " [-0.1155967 -0.49239461 0.86266155]\n", + " [-0.13978984 -0.51221673 0.84740358]\n", + " [-0.27481261 -0.38812817 0.87967866]\n", + " [-0.2528173 -0.41305927 0.87490882]\n", + " [-0.22989752 -0.43795088 0.86910653]\n", + " [-0.20619476 -0.46263142 0.86223888]\n", + " [-0.18185056 -0.48693767 0.85429625]\n", + " [-0.15700799 -0.51071478 0.8452922 ]\n", + " [-0.14800516 -0.25498609 0.9555504 ]\n", + " [-0.14800516 -0.25498609 0.9555504 ]\n", + " [-0.14814777 -0.51895318 0.84186687]\n", + " [-0.14814777 -0.51895318 0.84186687]\n", + " [-0.14856056 -0.27178172 0.95082304]\n", + " [-0.17352535 -0.29469795 0.93970318]\n", + " [-0.19801547 -0.31719476 0.92745747]\n", + " [-0.22188773 -0.33915513 0.91418796]\n", + " [-0.24500087 -0.3604734 0.90001861]\n", + " [-0.26721385 -0.38105536 0.88509523]\n", + " [-0.12449792 -0.29651246 0.94687942]\n", + " [-0.14975069 -0.31960134 0.93564401]\n", + " [-0.17457332 -0.3422093 0.92326429]\n", + " [-0.19882254 -0.36421832 0.90984318]\n", + " [-0.22235817 -0.38552251 0.89550502]\n", + " [-0.24504107 -0.40602812 0.88039539]\n", + " [-0.09975942 -0.32139359 0.94167628]\n", + " [-0.12525403 -0.34461395 0.93035082]\n", + " [-0.15036351 -0.36729412 0.91787028]\n", + " [-0.17494384 -0.38931535 0.90433855]\n", + " [-0.19885541 -0.41057199 0.88988042]\n", + " [-0.22196072 -0.43097115 0.87464124]\n", + " [-0.07448211 -0.34625901 0.93517759]\n", + " [-0.10017169 -0.3695683 0.92378834]\n", + " [-0.12552242 -0.39228035 0.91124105]\n", + " [-0.150389 -0.41427623 0.89764044]\n", + " [-0.17463162 -0.43545097 0.88311168]\n", + " [-0.19811373 -0.45571301 0.86779986]\n", + " [-0.04880774 -0.37094728 0.92737043]\n", + " [-0.07464402 -0.39430174 0.91594454]\n", + " [-0.10018952 -0.41700455 0.90336552]\n", + " [-0.12529732 -0.43893715 0.88973859]\n", + " [-0.1498267 -0.45999575 0.87518905]\n", + " [-0.17364117 -0.48009034 0.85986162]\n", + " [-0.02288446 -0.39530087 0.91826658]\n", + " [-0.04881756 -0.41865601 0.90683184]\n", + " [-0.07450975 -0.44130844 0.89425676]\n", + " [-0.09981248 -0.46314047 0.88064657]\n", + " [-0.12458364 -0.48404976 0.86612629]\n", + " [-0.148686 -0.50394784 0.8508402 ]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:fp_optics: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:cartToSphere: vec: [[-0.18632334 0.47125535 -0.86209165]\n", + " [-0.21077388 0.47997402 -0.85158635]\n", + " [-0.23554161 0.48847968 -0.84018317]\n", + " [-0.26051853 0.49671721 -0.82789016]\n", + " [-0.28559837 0.50463636 -0.81472431]\n", + " [-0.31067572 0.51219155 -0.80071244]\n", + " [-0.33564599 0.51934204 -0.7858916 ]\n", + " [-0.3604062 0.52605245 -0.77030915]\n", + " [-0.18632334 0.47125535 -0.86209165]\n", + " [-0.19922558 0.44720494 -0.87196153]\n", + " [-0.21200594 0.4228888 -0.88103266]\n", + " [-0.22461933 0.3984082 -0.88927896]\n", + " [-0.23702477 0.37386929 -0.89668334]\n", + " [-0.24918576 0.34938331 -0.90323738]\n", + " [-0.26107065 0.32506736 -0.90894077]\n", + " [-0.27265272 0.30104572 -0.91380084]\n", + " [-0.3604062 0.52605245 -0.77030915]\n", + " [-0.37361518 0.50112055 -0.78057023]\n", + " [-0.3864484 0.47582027 -0.79009664]\n", + " [-0.39886008 0.45025774 -0.79886082]\n", + " [-0.41080986 0.42454269 -0.80684494]\n", + " [-0.42226296 0.39878749 -0.81404087]\n", + " [-0.43318997 0.37310701 -0.82044964]\n", + " [-0.44356635 0.34761928 -0.82608095]\n", + " [-0.27265272 0.30104572 -0.91380084]\n", + " [-0.29692149 0.30781191 -0.90393001]\n", + " [-0.32142247 0.31462498 -0.89313981]\n", + " [-0.34604186 0.32142721 -0.88144176]\n", + " [-0.37067027 0.32816849 -0.86885499]\n", + " [-0.39520178 0.33480525 -0.85540692]\n", + " [-0.41953364 0.34129971 -0.84113378]\n", + " [-0.44356635 0.34761928 -0.82608095]\n", + " [-0.19698227 0.47499716 -0.85765709]\n", + " [-0.22717639 0.48554593 -0.84417773]\n", + " [-0.25773926 0.49571958 -0.82935672]\n", + " [-0.28847464 0.50542361 -0.81322159]\n", + " [-0.31918844 0.51457412 -0.79582172]\n", + " [-0.34968873 0.52309834 -0.77722964]\n", + " [-0.19204382 0.46083801 -0.86645687]\n", + " [-0.20778106 0.43116963 -0.87802038]\n", + " [-0.2232898 0.40120212 -0.88835721]\n", + " [-0.23849287 0.37112888 -0.89743217]\n", + " [-0.25332312 0.34115478 -0.9052297 ]\n", + " [-0.26772433 0.31149829 -0.91175243]\n", + " [-0.36612423 0.51521181 -0.7749257 ]\n", + " [-0.38206662 0.48439449 -0.78701148]\n", + " [-0.39739871 0.4531289 -0.7979652 ]\n", + " [-0.41204392 0.42161561 -0.80775001]\n", + " [-0.42593818 0.39006149 -0.81635085]\n", + " [-0.43902943 0.35867921 -0.82377326]\n", + " [-0.28315912 0.30406804 -0.90959526]\n", + " [-0.31307445 0.31240136 -0.8968778 ]\n", + " [-0.34322501 0.32074665 -0.88279 ]\n", + " [-0.37340763 0.32900853 -0.8673639 ]\n", + " [-0.4034273 0.33710674 -0.85065002]\n", + " [-0.43309616 0.34497389 -0.83271888]\n", + " [-0.18645057 0.47120378 -0.86209233]\n", + " [-0.18645057 0.47120378 -0.86209233]\n", + " [-0.44345026 0.3476847 -0.82611574]\n", + " [-0.44345026 0.3476847 -0.82611574]\n", + " [-0.20259562 0.46458968 -0.86203912]\n", + " [-0.21837277 0.43479409 -0.87365178]\n", + " [-0.23389592 0.40468646 -0.88403708]\n", + " [-0.24908745 0.37446039 -0.89316004]\n", + " [-0.26387984 0.34432029 -0.90100553]\n", + " [-0.27821652 0.3144835 -0.90757683]\n", + " [-0.2328398 0.47503332 -0.84860413]\n", + " [-0.24871145 0.44491626 -0.86034419]\n", + " [-0.26425831 0.41445367 -0.87085917]\n", + " [-0.27940187 0.38384022 -0.88011436]\n", + " [-0.29407395 0.3532798 -0.88809566]\n", + " [-0.3082175 0.32298706 -0.89480798]\n", + " [-0.26344235 0.48512151 -0.83381968]\n", + " [-0.27938009 0.45474122 -0.84566967]\n", + " [-0.29492403 0.42398593 -0.85630354]\n", + " [-0.30999531 0.39305189 -0.8656865 ]\n", + " [-0.32452583 0.36214329 -0.87380503]\n", + " [-0.33845881 0.33147317 -0.88066519]\n", + " [-0.29420669 0.49476028 -0.81771309]\n", + " [-0.31018115 0.46417652 -0.82965523]\n", + " [-0.32569448 0.43319187 -0.84039747]\n", + " [-0.34066804 0.40200427 -0.84990461]\n", + " [-0.35503444 0.3708187 -0.85816317]\n", + " [-0.36873789 0.3398475 -0.86517977]\n", + " [-0.32493845 0.50386634 -0.8003335 ]\n", + " [-0.34091965 0.47314062 -0.81234952]\n", + " [-0.35637446 0.44199153 -0.82318937]\n", + " [-0.37122489 0.41061846 -0.83281724]\n", + " [-0.38540478 0.37922734 -0.84121922]\n", + " [-0.39885978 0.34803043 -0.84840185]\n", + " [-0.35544551 0.51236741 -0.78175324]\n", + " [-0.37140331 0.48156272 -0.79382424]\n", + " [-0.38677214 0.45031564 -0.80475036]\n", + " [-0.401475 0.41882652 -0.81449504]\n", + " [-0.41544724 0.38730206 -0.82304356]\n", + " [-0.42863621 0.35595478 -0.83040183]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:fp_optics: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:cartToSphere: vec: [[ 0.3733391 -0.51758351 -0.7698865 ]\n", + " [ 0.3791765 -0.53866248 -0.75237485]\n", + " [ 0.38482264 -0.55972595 -0.73390626]\n", + " [ 0.39023806 -0.58066474 -0.71452272]\n", + " [ 0.39538766 -0.60137698 -0.69427251]\n", + " [ 0.40024026 -0.62176637 -0.67321195]\n", + " [ 0.40476838 -0.64174082 -0.65140716]\n", + " [ 0.40894845 -0.66121258 -0.62893489]\n", + " [ 0.3733391 -0.51758351 -0.7698865 ]\n", + " [ 0.39940434 -0.50598716 -0.76449537]\n", + " [ 0.42507128 -0.49407904 -0.75841961]\n", + " [ 0.45024494 -0.48191421 -0.75169022]\n", + " [ 0.47483553 -0.4695544 -0.74434527]\n", + " [ 0.49875867 -0.45706785 -0.73642975]\n", + " [ 0.52193582 -0.44452841 -0.72799553]\n", + " [ 0.54429547 -0.43201331 -0.71910148]\n", + " [ 0.40894845 -0.66121258 -0.62893489]\n", + " [ 0.4358762 -0.64909395 -0.62344926]\n", + " [ 0.46232406 -0.63643436 -0.61742025]\n", + " [ 0.48819316 -0.62329227 -0.61087985]\n", + " [ 0.51339346 -0.60973168 -0.60386624]\n", + " [ 0.53784323 -0.59582189 -0.59642345]\n", + " [ 0.56146722 -0.5816381 -0.58860146]\n", + " [ 0.58419431 -0.56726267 -0.58045678]\n", + " [ 0.54429547 -0.43201331 -0.71910148]\n", + " [ 0.55133808 -0.45143384 -0.70159377]\n", + " [ 0.55799625 -0.47098895 -0.68323465]\n", + " [ 0.56422698 -0.490574 -0.66406707]\n", + " [ 0.56999263 -0.51008717 -0.64414244]\n", + " [ 0.5752604 -0.529432 -0.62352003]\n", + " [ 0.58000211 -0.54851835 -0.60226669]\n", + " [ 0.58419431 -0.56726267 -0.58045678]\n", + " [ 0.37599509 -0.52672937 -0.76235416]\n", + " [ 0.38302689 -0.55256717 -0.74024315]\n", + " [ 0.38973154 -0.57827242 -0.71673589]\n", + " [ 0.39604264 -0.6036546 -0.6919186 ]\n", + " [ 0.40190272 -0.62853624 -0.66589518]\n", + " [ 0.40726281 -0.65274959 -0.63879181]\n", + " [ 0.38476692 -0.51264084 -0.76756354]\n", + " [ 0.41645779 -0.49821152 -0.76049208]\n", + " [ 0.44745535 -0.48336768 -0.75242235]\n", + " [ 0.47759215 -0.46822023 -0.74342152]\n", + " [ 0.5067129 -0.45289468 -0.73357239]\n", + " [ 0.53467582 -0.43752858 -0.72297338]\n", + " [ 0.42072769 -0.6559332 -0.6266896 ]\n", + " [ 0.45342051 -0.64070991 -0.61959718]\n", + " [ 0.48529336 -0.62473164 -0.61171949]\n", + " [ 0.51617676 -0.60811397 -0.60312432]\n", + " [ 0.54592007 -0.59098453 -0.59389272]\n", + " [ 0.57438649 -0.5734847 -0.58411939]\n", + " [ 0.54733518 -0.4405007 -0.71160617]\n", + " [ 0.55571337 -0.46440768 -0.68957099]\n", + " [ 0.56347087 -0.4884126 -0.66629852]\n", + " [ 0.5705362 -0.51232662 -0.64187996]\n", + " [ 0.57684896 -0.53597227 -0.61642437]\n", + " [ 0.58235921 -0.55918632 -0.59005797]\n", + " [ 0.37344904 -0.51761642 -0.76981105]\n", + " [ 0.37344904 -0.51761642 -0.76981105]\n", + " [ 0.58410482 -0.56724862 -0.58056056]\n", + " [ 0.58410482 -0.56724862 -0.58056056]\n", + " [ 0.3873568 -0.52173235 -0.76009872]\n", + " [ 0.41916491 -0.50722479 -0.75300982]\n", + " [ 0.45026912 -0.49227698 -0.74493026]\n", + " [ 0.48050169 -0.47699987 -0.73592748]\n", + " [ 0.50970716 -0.46151947 -0.72608429]\n", + " [ 0.53774313 -0.44597508 -0.71549882]\n", + " [ 0.39449873 -0.54751587 -0.73796824]\n", + " [ 0.4266005 -0.53280756 -0.73084069]\n", + " [ 0.45796996 -0.51758984 -0.72274773]\n", + " [ 0.48843879 -0.50197346 -0.7137578 ]\n", + " [ 0.51785175 -0.48608449 -0.70395414]\n", + " [ 0.54606591 -0.47006463 -0.6934344 ]\n", + " [ 0.40129263 -0.57317638 -0.71444598]\n", + " [ 0.43363071 -0.55829783 -0.70729622]\n", + " [ 0.4652105 -0.54284614 -0.69921189]\n", + " [ 0.49586314 -0.52693209 -0.6902625 ]\n", + " [ 0.52543434 -0.5106811 -0.68053182]\n", + " [ 0.55378219 -0.49423491 -0.67011726]\n", + " [ 0.40767161 -0.59852354 -0.68961832]\n", + " [ 0.44018748 -0.58350505 -0.6824638 ]\n", + " [ 0.47192187 -0.56785437 -0.67441171]\n", + " [ 0.50270547 -0.5516831 -0.66553209]\n", + " [ 0.53238528 -0.53511639 -0.65590881]\n", + " [ 0.56082119 -0.51829531 -0.64563888]\n", + " [ 0.41357748 -0.62338016 -0.66358936]\n", + " [ 0.44621075 -0.60825266 -0.65644853]\n", + " [ 0.47804299 -0.59243801 -0.64845362]\n", + " [ 0.50890463 -0.57604933 -0.63967433]\n", + " [ 0.53864391 -0.55921238 -0.63019383]\n", + " [ 0.5671226 -0.54206788 -0.62010835]\n", + " [ 0.41896045 -0.6475789 -0.63648543]\n", + " [ 0.45164889 -0.63237469 -0.62937711]\n", + " [ 0.48352137 -0.61643241 -0.62146454]\n", + " [ 0.51440834 -0.59986702 -0.61281614]\n", + " [ 0.54415896 -0.5828056 -0.6035136 ]\n", + " [ 0.57263623 -0.56538925 -0.59365204]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:fp_optics: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:cartToSphere: vec: [[-0.03703253 -0.46828601 0.88280055]\n", + " [-0.04862838 -0.49041936 0.8701288 ]\n", + " [-0.06041447 -0.51259574 0.85650201]\n", + " [-0.07234182 -0.53470545 0.84193631]\n", + " [-0.08436202 -0.55664392 0.82645665]\n", + " [-0.09642647 -0.57831055 0.81009804]\n", + " [-0.10848621 -0.59960851 0.79290629]\n", + " [-0.12049212 -0.62044537 0.77493818]\n", + " [-0.03703253 -0.46828601 0.88280055]\n", + " [-0.06343708 -0.45704586 0.88717801]\n", + " [-0.08974533 -0.44553664 0.89075411]\n", + " [-0.11585643 -0.43381095 0.89352412]\n", + " [-0.14167161 -0.4219276 0.89549218]\n", + " [-0.16709426 -0.40995202 0.89667098]\n", + " [-0.19202965 -0.39795693 0.89708132]\n", + " [-0.21638437 -0.38602301 0.89675194]\n", + " [-0.12049212 -0.62044537 0.77493818]\n", + " [-0.14774074 -0.60869522 0.7795273 ]\n", + " [-0.17477007 -0.5964383 0.78340078]\n", + " [-0.20147512 -0.58373087 0.78655327]\n", + " [-0.22775554 -0.57063484 0.78898878]\n", + " [-0.25351616 -0.55721715 0.79072031]\n", + " [-0.2786664 -0.54354975 0.79176935]\n", + " [-0.30311875 -0.52971018 0.79216548]\n", + " [-0.21638437 -0.38602301 0.89675194]\n", + " [-0.22913443 -0.40649929 0.88445223]\n", + " [-0.24184948 -0.42717157 0.87122516]\n", + " [-0.25447801 -0.44792492 0.85709055]\n", + " [-0.26696911 -0.46865231 0.84207631]\n", + " [-0.27927245 -0.48925376 0.82621889]\n", + " [-0.29133844 -0.50963561 0.80956375]\n", + " [-0.30311875 -0.52971018 0.79216548]\n", + " [-0.04215248 -0.47788557 0.87741014]\n", + " [-0.05649943 -0.50505496 0.86123592]\n", + " [-0.07108319 -0.53217939 0.84364227]\n", + " [-0.08581443 -0.55906433 0.82467143]\n", + " [-0.10060367 -0.58552455 0.8043879 ]\n", + " [-0.11536066 -0.61138357 0.78288061]\n", + " [-0.04858995 -0.46349678 0.88476537]\n", + " [-0.08090033 -0.44953301 0.88959272]\n", + " [-0.11296556 -0.43521651 0.89321071]\n", + " [-0.14460288 -0.42065294 0.89562331]\n", + " [-0.17563442 -0.40596283 0.89685379]\n", + " [-0.20588639 -0.39128334 0.89694378]\n", + " [-0.13235178 -0.61531756 0.77708899]\n", + " [-0.16561369 -0.60056916 0.78223321]\n", + " [-0.1984415 -0.58511496 0.78629603]\n", + " [-0.23064852 -0.56906661 0.78928097]\n", + " [-0.26205943 -0.55254736 0.7912119 ]\n", + " [-0.29250889 -0.53569193 0.79213175]\n", + " [-0.22186206 -0.39496012 0.89150644]\n", + " [-0.23747117 -0.42020418 0.87580585]\n", + " [-0.25297657 -0.4456274 0.85873109]\n", + " [-0.26828434 -0.4710295 0.84033013]\n", + " [-0.2833018 -0.49622634 0.82067016]\n", + " [-0.29793817 -0.52104798 0.79983864]\n", + " [-0.03716215 -0.46832357 0.88277517]\n", + " [-0.03716215 -0.46832357 0.88277517]\n", + " [-0.30299668 -0.52968968 0.79222589]\n", + " [-0.30299668 -0.52968968 0.79222589]\n", + " [-0.05362431 -0.47303804 0.87940858]\n", + " [-0.08605153 -0.45899797 0.88426014]\n", + " [-0.11822143 -0.44457934 0.88790365]\n", + " [-0.14995087 -0.42988764 0.89034339]\n", + " [-0.18106203 -0.41504284 0.89160304]\n", + " [-0.21138158 -0.40018125 0.89172462]\n", + " [-0.06808181 -0.50015483 0.86325547]\n", + " [-0.10080012 -0.48591819 0.86817213]\n", + " [-0.13322671 -0.47123322 0.87188869]\n", + " [-0.16517717 -0.45620546 0.87441013]\n", + " [-0.19647384 -0.44095382 0.87576124]\n", + " [-0.22694491 -0.42561252 0.87598516]\n", + " [-0.08275485 -0.52723588 0.84567959]\n", + " [-0.11570413 -0.51283141 0.85065651]\n", + " [-0.14832745 -0.49791315 0.85444805]\n", + " [-0.18043915 -0.48258748 0.85705953]\n", + " [-0.21186183 -0.46697322 0.8585165 ]\n", + " [-0.24242528 -0.45120323 0.85886299]\n", + " [-0.09755345 -0.55408688 0.82672308]\n", + " [-0.13067177 -0.53954371 0.83175566]\n", + " [-0.16343036 -0.52442504 0.83562485]\n", + " [-0.19564263 -0.50883864 0.83833597]\n", + " [-0.22713153 -0.49290412 0.83991475]\n", + " [-0.25772856 -0.47675404 0.8404056 ]\n", + " [-0.11238741 -0.58052295 0.80645035]\n", + " [-0.14561095 -0.56587122 0.81153386]\n", + " [-0.178442 -0.55058589 0.81548368]\n", + " [-0.21069351 -0.53477644 0.81830459]\n", + " [-0.24218906 -0.51856388 0.82002193]\n", + " [-0.27276167 -0.50208131 0.82067986]\n", + " [-0.12716586 -0.6063679 0.7849502 ]\n", + " [-0.16042937 -0.59163901 0.79007955]\n", + " [-0.19326928 -0.57622238 0.79411256]\n", + " [-0.22549866 -0.56022914 0.79705311]\n", + " [-0.25694192 -0.54378196 0.79892555]\n", + " [-0.28743334 -0.52701509 0.7997732 ]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:fp_optics: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:cartToSphere: vec: [[ 0.28604828 0.40963209 -0.86624357]\n", + " [ 0.2667667 0.42832976 -0.86334764]\n", + " [ 0.24678717 0.44699978 -0.85981817]\n", + " [ 0.22619383 0.46555289 -0.85562659]\n", + " [ 0.2050707 0.48390372 -0.85075449]\n", + " [ 0.18350194 0.50197069 -0.84519374]\n", + " [ 0.16157229 0.51967603 -0.8389465 ]\n", + " [ 0.13936738 0.53694605 -0.83202504]\n", + " [ 0.28604828 0.40963209 -0.86624357]\n", + " [ 0.27060875 0.3918526 -0.87933068]\n", + " [ 0.25451715 0.37349523 -0.8920327 ]\n", + " [ 0.23784296 0.35461242 -0.90425702]\n", + " [ 0.2206553 0.3352613 -0.9159209 ]\n", + " [ 0.20302323 0.31550395 -0.92695136]\n", + " [ 0.18501624 0.2954075 -0.93728512]\n", + " [ 0.16670466 0.27504398 -0.94686872]\n", + " [ 0.13936738 0.53694605 -0.83202504]\n", + " [ 0.12196704 0.51981191 -0.8455292 ]\n", + " [ 0.10411066 0.50191099 -0.8586305 ]\n", + " [ 0.08586478 0.48329185 -0.87123833]\n", + " [ 0.0672966 0.46400788 -0.88327111]\n", + " [ 0.0484752 0.44411862 -0.89465569]\n", + " [ 0.0294722 0.42369065 -0.90532736]\n", + " [ 0.01036174 0.40279765 -0.9152304 ]\n", + " [ 0.16670466 0.27504398 -0.94686872]\n", + " [ 0.14557041 0.29335503 -0.94485559]\n", + " [ 0.12389898 0.3117845 -0.94204006]\n", + " [ 0.10177079 0.33024659 -0.93839219]\n", + " [ 0.07926739 0.34865855 -0.9338918 ]\n", + " [ 0.05647281 0.36693979 -0.92852895]\n", + " [ 0.03347423 0.38501161 -0.92230447]\n", + " [ 0.01036174 0.40279765 -0.9152304 ]\n", + " [ 0.27768049 0.41772218 -0.86510215]\n", + " [ 0.25356748 0.4406312 -0.86113163]\n", + " [ 0.22848984 0.46340964 -0.85617983]\n", + " [ 0.2026023 0.48589874 -0.85020864]\n", + " [ 0.17605983 0.50794831 -0.84320309]\n", + " [ 0.1490188 0.52941685 -0.83517136]\n", + " [ 0.27933601 0.40201834 -0.87198202]\n", + " [ 0.25996455 0.37983286 -0.88777555]\n", + " [ 0.23968283 0.35683083 -0.90289751]\n", + " [ 0.21861827 0.33311544 -0.91719145]\n", + " [ 0.19689808 0.308801 -0.93052302]\n", + " [ 0.17465049 0.28401316 -0.94277979]\n", + " [ 0.13191774 0.52951426 -0.83798112]\n", + " [ 0.11027754 0.50799248 -0.85427308]\n", + " [ 0.08801834 0.48536686 -0.86986883]\n", + " [ 0.06526348 0.46173363 -0.88461446]\n", + " [ 0.0421402 0.4372025 -0.8983753 ]\n", + " [ 0.01878145 0.41189901 -0.91103593]\n", + " [ 0.15762457 0.28307771 -0.94605576]\n", + " [ 0.13135167 0.30561106 -0.94305282]\n", + " [ 0.10435166 0.32823649 -0.9388139 ]\n", + " [ 0.0767741 0.35080048 -0.93329779]\n", + " [ 0.04877378 0.37315461 -0.92648624]\n", + " [ 0.02051243 0.39515492 -0.91838545]\n", + " [ 0.28593202 0.40963622 -0.86628001]\n", + " [ 0.28593202 0.40963622 -0.86628001]\n", + " [ 0.01050632 0.40280955 -0.91522352]\n", + " [ 0.01050632 0.40280955 -0.91522352]\n", + " [ 0.27101657 0.41011282 -0.87083723]\n", + " [ 0.2514653 0.38793736 -0.88671856]\n", + " [ 0.23102231 0.36492423 -0.90191962]\n", + " [ 0.20981454 0.34117643 -0.91628407]\n", + " [ 0.18796866 0.31680831 -0.92967751]\n", + " [ 0.16561271 0.29194582 -0.9419873 ]\n", + " [ 0.2467215 0.43305323 -0.86694487]\n", + " [ 0.22669042 0.41092815 -0.88303426]\n", + " [ 0.20581993 0.38790768 -0.89842406]\n", + " [ 0.18423518 0.36409408 -0.91295832]\n", + " [ 0.16206146 0.33960159 -0.92650248]\n", + " [ 0.13942649 0.31455697 -0.93894311]\n", + " [ 0.22147696 0.45587387 -0.86204812]\n", + " [ 0.20100877 0.4338323 -0.87828527]\n", + " [ 0.17975261 0.410841 -0.89381132]\n", + " [ 0.15783192 0.38700108 -0.90847083]\n", + " [ 0.13537116 0.36242633 -0.92212895]\n", + " [ 0.11249841 0.337244 -0.93467138]\n", + " [ 0.1954372 0.47841607 -0.85610885]\n", + " [ 0.17457275 0.45649145 -0.87243333]\n", + " [ 0.1529709 0.43356644 -0.88804282]\n", + " [ 0.13075403 0.4097407 -0.90278233]\n", + " [ 0.10804659 0.38512708 -0.91651681]\n", + " [ 0.08497771 0.35985289 -0.92913115]\n", + " [ 0.16875671 0.50052944 -0.84911215]\n", + " [ 0.14753565 0.47875473 -0.86546354]\n", + " [ 0.12562732 0.4559329 -0.88110327]\n", + " [ 0.10315399 0.43216201 -0.89587681]\n", + " [ 0.08024089 0.40755367 -0.90964906]\n", + " [ 0.05701868 0.38223471 -0.92230445]\n", + " [ 0.1415918 0.52207204 -0.84106631]\n", + " [ 0.12005379 0.50047892 -0.85738436]\n", + " [ 0.09787886 0.47779603 -0.87300096]\n", + " [ 0.07518996 0.45412 -0.88776207]\n", + " [ 0.05211375 0.42956104 -0.90153284]\n", + " [ 0.02878257 0.40424508 -0.91419772]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:fp_optics: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:cartToSphere: vec: [[ 0.3813635 0.75494318 -0.5335004 ]\n", + " [ 0.38988819 0.76635369 -0.51057734]\n", + " [ 0.39816082 0.7775048 -0.48677947]\n", + " [ 0.40614309 0.78830724 -0.46218989]\n", + " [ 0.41379856 0.79868254 -0.43689468]\n", + " [ 0.42109271 0.80856255 -0.41098362]\n", + " [ 0.42799321 0.81788904 -0.38455082]\n", + " [ 0.43447048 0.82661344 -0.35769488]\n", + " [ 0.3813635 0.75494318 -0.5335004 ]\n", + " [ 0.3571334 0.76667862 -0.53353502]\n", + " [ 0.33214822 0.77816946 -0.53303832]\n", + " [ 0.30649782 0.78932357 -0.53200318]\n", + " [ 0.28027424 0.80005973 -0.53042509]\n", + " [ 0.25357236 0.81030707 -0.52830249]\n", + " [ 0.22649045 0.82000463 -0.52563722]\n", + " [ 0.19913029 0.82910111 -0.52243515]\n", + " [ 0.43447048 0.82661344 -0.35769488]\n", + " [ 0.40989065 0.83972796 -0.35615532]\n", + " [ 0.38447748 0.85243876 -0.3542954 ]\n", + " [ 0.35831438 0.86465693 -0.35210679]\n", + " [ 0.33148836 0.87630247 -0.34958467]\n", + " [ 0.30409196 0.88730366 -0.34672798]\n", + " [ 0.27622418 0.89759716 -0.34353972]\n", + " [ 0.24799046 0.90712859 -0.34002713]\n", + " [ 0.19913029 0.82910111 -0.52243515]\n", + " [ 0.20637424 0.84191016 -0.49859498]\n", + " [ 0.21358919 0.85429456 -0.4738781 ]\n", + " [ 0.22073791 0.86616805 -0.44836112]\n", + " [ 0.22778515 0.87745309 -0.42212556]\n", + " [ 0.23469728 0.8880805 -0.39525968]\n", + " [ 0.24144238 0.89798953 -0.36785919]\n", + " [ 0.24799046 0.90712859 -0.34002713]\n", + " [ 0.38502707 0.75998485 -0.52361931]\n", + " [ 0.39530984 0.77380825 -0.49492517]\n", + " [ 0.40517588 0.78715195 -0.46499926]\n", + " [ 0.41455735 0.79986703 -0.43399878]\n", + " [ 0.4233907 0.81182797 -0.40208911]\n", + " [ 0.43161756 0.8229316 -0.36944535]\n", + " [ 0.37092692 0.76012343 -0.53350312]\n", + " [ 0.34071077 0.77435539 -0.53318843]\n", + " [ 0.30944946 0.78812704 -0.53206842]\n", + " [ 0.27731148 0.80128432 -0.53013374]\n", + " [ 0.24447157 0.81369674 -0.52738152]\n", + " [ 0.21111212 0.82525608 -0.52381684]\n", + " [ 0.42383983 0.83234608 -0.35715516]\n", + " [ 0.39314374 0.84815915 -0.355055 ]\n", + " [ 0.36127857 0.86327652 -0.35246482]\n", + " [ 0.3284029 0.87754723 -0.34937428]\n", + " [ 0.29468719 0.89083929 -0.34578146]\n", + " [ 0.26031645 0.90303977 -0.34169362]\n", + " [ 0.20238404 0.83470203 -0.51216523]\n", + " [ 0.21124846 0.85012628 -0.48234779]\n", + " [ 0.22003191 0.86482603 -0.45128916]\n", + " [ 0.22866868 0.87865498 -0.41913729]\n", + " [ 0.2370969 0.89148574 -0.38605471]\n", + " [ 0.24525855 0.90321027 -0.35222073]\n", + " [ 0.38131156 0.75502297 -0.5334246 ]\n", + " [ 0.38131156 0.75502297 -0.5334246 ]\n", + " [ 0.24806548 0.90706746 -0.34013547]\n", + " [ 0.24806548 0.90706746 -0.34013547]\n", + " [ 0.37461544 0.76514494 -0.52365685]\n", + " [ 0.34431696 0.77953032 -0.5232383 ]\n", + " [ 0.31296414 0.79343288 -0.52203229]\n", + " [ 0.28072479 0.80669918 -0.52002887]\n", + " [ 0.24777333 0.81919909 -0.51722454]\n", + " [ 0.21429235 0.83082446 -0.51362389]\n", + " [ 0.38483506 0.77912137 -0.49484529]\n", + " [ 0.35434183 0.79390024 -0.49412981]\n", + " [ 0.32276891 0.80813859 -0.49267865]\n", + " [ 0.29028199 0.82168458 -0.4904802 ]\n", + " [ 0.25705465 0.83440872 -0.48752947]\n", + " [ 0.22327015 0.84620265 -0.48383004]\n", + " [ 0.39465756 0.79259502 -0.46479947]\n", + " [ 0.3640261 0.80770801 -0.46378095]\n", + " [ 0.33229077 0.82223165 -0.46208003]\n", + " [ 0.2996151 0.83601519 -0.45968402]\n", + " [ 0.26617184 0.84892915 -0.45658717]\n", + " [ 0.23214505 0.86086434 -0.45279273]\n", + " [ 0.40401475 0.80541753 -0.43367579]\n", + " [ 0.37330065 0.8208068 -0.43234572]\n", + " [ 0.34146022 0.83556625 -0.43038816]\n", + " [ 0.30865497 0.84954558 -0.42779016]\n", + " [ 0.27505688 0.86261478 -0.42454618]\n", + " [ 0.24085069 0.87466345 -0.42065995]\n", + " [ 0.41284256 0.81746376 -0.40163918]\n", + " [ 0.38210025 0.83307208 -0.39998789]\n", + " [ 0.35021145 0.84801779 -0.39776597]\n", + " [ 0.31733606 0.86215054 -0.3949611 ]\n", + " [ 0.28364535 0.87533945 -0.39156886]\n", + " [ 0.24932444 0.88747288 -0.38759414]\n", + " [ 0.4210821 0.82863057 -0.3688648 ]\n", + " [ 0.39036472 0.84440047 -0.36688313]\n", + " [ 0.3584836 0.85948209 -0.36438996]\n", + " [ 0.32559754 0.87372468 -0.36137435]\n", + " [ 0.2918772 0.88699649 -0.35783365]\n", + " [ 0.25750768 0.89918486 -0.35377447]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:fp_optics: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:cartToSphere: vec: [[ 0.5070266 0.62531058 -0.59322062]\n", + " [ 0.48495398 0.62812293 -0.60850738]\n", + " [ 0.4621027 0.63039926 -0.62374504]\n", + " [ 0.43854704 0.63211614 -0.63883149]\n", + " [ 0.41436509 0.63325394 -0.65367502]\n", + " [ 0.38963955 0.63379722 -0.66819317]\n", + " [ 0.36445822 0.63373533 -0.68231205]\n", + " [ 0.33891395 0.63306296 -0.69596597]\n", + " [ 0.5070266 0.62531058 -0.59322062]\n", + " [ 0.51687833 0.60409172 -0.60655584]\n", + " [ 0.52643397 0.5819669 -0.61982401]\n", + " [ 0.53564223 0.55900637 -0.63292912]\n", + " [ 0.54445527 0.53528431 -0.64578569]\n", + " [ 0.55282872 0.51087982 -0.65831771]\n", + " [ 0.56072207 0.48587769 -0.67045778]\n", + " [ 0.56809914 0.46036858 -0.68214671]\n", + " [ 0.33891395 0.63306296 -0.69596597]\n", + " [ 0.34765345 0.61124054 -0.71100076]\n", + " [ 0.35629102 0.58847866 -0.72577516]\n", + " [ 0.36477654 0.56484109 -0.74019769]\n", + " [ 0.37306339 0.5403979 -0.75418421]\n", + " [ 0.38110811 0.51522692 -0.76765736]\n", + " [ 0.3888706 0.48941417 -0.78054688]\n", + " [ 0.39631443 0.46305363 -0.79279014]\n", + " [ 0.56809914 0.46036858 -0.68214671]\n", + " [ 0.54582829 0.46189694 -0.69908704]\n", + " [ 0.52267603 0.46307657 -0.71580015]\n", + " [ 0.49871063 0.46388302 -0.73218868]\n", + " [ 0.47400642 0.46429644 -0.74816224]\n", + " [ 0.44864502 0.46430178 -0.76363702]\n", + " [ 0.42271559 0.46388907 -0.7785361 ]\n", + " [ 0.39631443 0.46305363 -0.79279014]\n", + " [ 0.49753719 0.62652986 -0.5999309 ]\n", + " [ 0.4699516 0.62961874 -0.61864831]\n", + " [ 0.44126976 0.63187893 -0.63718915]\n", + " [ 0.4116338 0.63327266 -0.65538031]\n", + " [ 0.38119603 0.63377161 -0.67306993]\n", + " [ 0.35012018 0.63335836 -0.69012539]\n", + " [ 0.51128074 0.6161851 -0.59908925]\n", + " [ 0.52316221 0.58956056 -0.61540202]\n", + " [ 0.53454771 0.56164461 -0.63151728]\n", + " [ 0.54534774 0.5325721 -0.64727337]\n", + " [ 0.55548065 0.50248874 -0.66253024]\n", + " [ 0.56487365 0.47155307 -0.67716723]\n", + " [ 0.34282178 0.62367106 -0.70250099]\n", + " [ 0.35347177 0.59628597 -0.72076401]\n", + " [ 0.3639183 0.56755252 -0.73854425]\n", + " [ 0.37407408 0.53759703 -0.75568381]\n", + " [ 0.38385915 0.50656279 -0.77204034]\n", + " [ 0.39320119 0.47461152 -0.78748761]\n", + " [ 0.55847712 0.46116441 -0.68951482]\n", + " [ 0.53058066 0.46280722 -0.71013635]\n", + " [ 0.50142757 0.46390127 -0.73031911]\n", + " [ 0.47115213 0.4644081 -0.74989385]\n", + " [ 0.43990459 0.46430003 -0.76870634]\n", + " [ 0.40785211 0.46356088 -0.78661806]\n", + " [ 0.50698666 0.62525014 -0.59331846]\n", + " [ 0.50698666 0.62525014 -0.59331846]\n", + " [ 0.39638053 0.46314817 -0.79270186]\n", + " [ 0.39638053 0.46314817 -0.79270186]\n", + " [ 0.50181211 0.61743538 -0.60577072]\n", + " [ 0.51365008 0.59072376 -0.62226122]\n", + " [ 0.52500787 0.56271441 -0.63852895]\n", + " [ 0.53579558 0.53354123 -0.65441336]\n", + " [ 0.5459311 0.50334949 -0.66977498]\n", + " [ 0.55534114 0.47229781 -0.68449324]\n", + " [ 0.47416419 0.62045117 -0.62466684]\n", + " [ 0.4858572 0.59352309 -0.64161758]\n", + " [ 0.49711632 0.56528071 -0.6582804 ]\n", + " [ 0.50785082 0.53585542 -0.67449723]\n", + " [ 0.51797757 0.50539149 -0.69012947]\n", + " [ 0.52742226 0.474048 -0.7050562 ]\n", + " [ 0.44540747 0.62265301 -0.64336258]\n", + " [ 0.45692128 0.59555176 -0.66071253]\n", + " [ 0.46804985 0.56712208 -0.67771815]\n", + " [ 0.4787022 0.53749328 -0.69422271]\n", + " [ 0.48879489 0.50680899 -0.71008746]\n", + " [ 0.49825313 0.47522905 -0.72519043]\n", + " [ 0.4156834 0.62400245 -0.66168592]\n", + " [ 0.42698198 0.59676962 -0.67937649]\n", + " [ 0.43794643 0.56819743 -0.69667396]\n", + " [ 0.44848627 0.53841365 -0.7134219 ]\n", + " [ 0.45851843 0.5075616 -0.72948068]\n", + " [ 0.46796825 0.47580191 -0.74472697]\n", + " [ 0.38514413 0.62447051 -0.67948553]\n", + " [ 0.39619099 0.59714635 -0.69745891]\n", + " [ 0.40695746 0.56847589 -0.71499706]\n", + " [ 0.41735415 0.53858589 -0.73194313]\n", + " [ 0.427299 0.50761961 -0.74815633]\n", + " [ 0.43671802 0.47573832 -0.7635119 ]\n", + " [ 0.35395364 0.62403934 -0.69662883]\n", + " [ 0.36471321 0.59666326 -0.71482672]\n", + " [ 0.37524877 0.56793849 -0.73255323]\n", + " [ 0.38547246 0.53799138 -0.74965076]\n", + " [ 0.39530371 0.50696521 -0.76597732]\n", + " [ 0.40466968 0.47502162 -0.78140701]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:fp_optics: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:cartToSphere: vec: [[-0.34787903 0.92861141 -0.12907765]\n", + " [-0.35407323 0.92954904 -0.10281408]\n", + " [-0.36026263 0.92975297 -0.07596221]\n", + " [-0.36639864 0.92918653 -0.04862533]\n", + " [-0.37243494 0.92782271 -0.02091028]\n", + " [-0.37832964 0.92564391 0.00707441]\n", + " [-0.38404638 0.92264185 0.03521932]\n", + " [-0.38955455 0.91881764 0.06341453]\n", + " [-0.34787903 0.92861141 -0.12907765]\n", + " [-0.37145598 0.91828062 -0.13704438]\n", + " [-0.39530151 0.90704432 -0.14493899]\n", + " [-0.41929907 0.89490849 -0.15273205]\n", + " [-0.443333 0.88188952 -0.16039556]\n", + " [-0.46729146 0.86801361 -0.16790195]\n", + " [-0.49106765 0.8533166 -0.17522369]\n", + " [-0.51456024 0.83784388 -0.1823332 ]\n", + " [-0.38955455 0.91881764 0.06341453]\n", + " [-0.41457096 0.90823237 0.05696389]\n", + " [-0.43976853 0.89669933 0.05033827]\n", + " [-0.4650253 0.88422499 0.04356189]\n", + " [-0.49022597 0.8708241 0.03665907]\n", + " [-0.51525989 0.85652078 0.02965479]\n", + " [-0.54001915 0.84134991 0.0225752 ]\n", + " [-0.5643983 0.82535806 0.0154478 ]\n", + " [-0.51456024 0.83784388 -0.1823332 ]\n", + " [-0.52269462 0.83821344 -0.15552672]\n", + " [-0.53057328 0.83790937 -0.128062 ]\n", + " [-0.53814076 0.83689653 -0.1000436 ]\n", + " [-0.5453479 0.83514826 -0.07157553]\n", + " [-0.55215115 0.83264661 -0.04276365]\n", + " [-0.55851224 0.82938284 -0.01371779]\n", + " [-0.5643983 0.82535806 0.0154478 ]\n", + " [-0.35065776 0.92907385 -0.11773238]\n", + " [-0.35825358 0.92973463 -0.08513455]\n", + " [-0.36579365 0.92925584 -0.05175507]\n", + " [-0.37319154 0.92758375 -0.01778935]\n", + " [-0.38037028 0.92468596 0.01656291]\n", + " [-0.38726532 0.92055111 0.05110006]\n", + " [-0.35813994 0.92422277 -0.13246909]\n", + " [-0.38723245 0.91095206 -0.14218778]\n", + " [-0.41661264 0.8963259 -0.15176885]\n", + " [-0.44606697 0.88037018 -0.16116021]\n", + " [-0.47538965 0.86313313 -0.17031111]\n", + " [-0.50438635 0.8446847 -0.17917079]\n", + " [-0.40041286 0.91433356 0.06052833]\n", + " [-0.43121041 0.90072263 0.05250071]\n", + " [-0.46215813 0.88569361 0.04423451]\n", + " [-0.49304106 0.86927021 0.03577446]\n", + " [-0.52365523 0.85149702 0.0271666 ]\n", + " [-0.553803 0.83244308 0.01845967]\n", + " [-0.51805441 0.83813961 -0.17070918]\n", + " [-0.52785848 0.83814494 -0.13739899]\n", + " [-0.53722279 0.83710249 -0.10320418]\n", + " [-0.54605422 0.83495968 -0.06831637]\n", + " [-0.55427259 0.83168351 -0.03293072]\n", + " [-0.56180965 0.82726197 0.00274868]\n", + " [-0.34798021 0.92858202 -0.12901628]\n", + " [-0.34798021 0.92858202 -0.12901628]\n", + " [-0.56429641 0.82542913 0.01537241]\n", + " [-0.56429641 0.82542913 0.01537241]\n", + " [-0.36088126 0.92470934 -0.12115012]\n", + " [-0.39014971 0.91141589 -0.1307833 ]\n", + " [-0.41969562 0.89675595 -0.14030096]\n", + " [-0.44930335 0.88075577 -0.14965219]\n", + " [-0.47876648 0.86346366 -0.15878656]\n", + " [-0.5078904 0.84494956 -0.16765315]\n", + " [-0.36864239 0.92535401 -0.08844624]\n", + " [-0.3983629 0.91199673 -0.0978211 ]\n", + " [-0.42833052 0.8972473 -0.10714594]\n", + " [-0.45832666 0.88113238 -0.11637186]\n", + " [-0.48814461 0.86369989 -0.12544855]\n", + " [-0.51758948 0.84501962 -0.13432411]\n", + " [-0.3763221 0.92485776 -0.05495277]\n", + " [-0.40642024 0.91143859 -0.06404913]\n", + " [-0.43673631 0.8966095 -0.07316289]\n", + " [-0.46705173 0.88039665 -0.08224605]\n", + " [-0.49716074 0.86284703 -0.09124805]\n", + " [-0.52686821 0.84403001 -0.10011611]\n", + " [-0.3838319 0.9231672 -0.02086626]\n", + " [-0.41423009 0.90968863 -0.02966535]\n", + " [-0.44482067 0.89478966 -0.03854915]\n", + " [-0.47538644 0.87849548 -0.04747028]\n", + " [-0.50572273 0.86085189 -0.05637854]\n", + " [-0.53563381 0.84192792 -0.06522109]\n", + " [-0.39109418 0.92024998 0.01361318]\n", + " [-0.42171448 0.90671417 0.00512999]\n", + " [-0.4525062 0.89175437 -0.00350407]\n", + " [-0.48325358 0.87539482 -0.01224259]\n", + " [-0.51375264 0.85768041 -0.02103664]\n", + " [-0.54380677 0.83867997 -0.02983451]\n", + " [-0.39804432 0.91609465 0.04828358]\n", + " [-0.42880927 0.90250311 0.04013419]\n", + " [-0.45972917 0.88749074 0.03176896]\n", + " [-0.49058904 0.87108129 0.02323305]\n", + " [-0.521185 0.85331929 0.01457333]\n", + " [-0.55131962 0.83427368 0.0058394 ]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:fp_optics: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:cartToSphere: vec: [[-0.07019482 0.86888378 0.49001394]\n", + " [-0.06738481 0.85554111 0.51333099]\n", + " [-0.06461288 0.8412651 0.5367478 ]\n", + " [-0.06187833 0.82607905 0.56014683]\n", + " [-0.05918065 0.81001636 0.58341336]\n", + " [-0.05652101 0.79311953 0.60643778]\n", + " [-0.05390298 0.77543975 0.62911658]\n", + " [-0.05133263 0.75703673 0.65135271]\n", + " [-0.07019482 0.86888378 0.49001394]\n", + " [-0.09704132 0.86688009 0.48898045]\n", + " [-0.12438542 0.86411279 0.48768571]\n", + " [-0.15211116 0.86056 0.48610563]\n", + " [-0.18010063 0.85620933 0.48422035]\n", + " [-0.20823652 0.85105709 0.48201596]\n", + " [-0.23640311 0.84510794 0.47948528]\n", + " [-0.26448672 0.83837493 0.476628 ]\n", + " [-0.05133263 0.75703673 0.65135271]\n", + " [-0.07907829 0.75410083 0.6519805 ]\n", + " [-0.10733198 0.75049694 0.65209983]\n", + " [-0.13597425 0.74620605 0.65168055]\n", + " [-0.16488918 0.7412165 0.65069936]\n", + " [-0.19396198 0.73552444 0.64913985]\n", + " [-0.22307678 0.72913444 0.64699283]\n", + " [-0.25211589 0.72206019 0.64425668]\n", + " [-0.26448672 0.83837493 0.476628 ]\n", + " [-0.26342368 0.82443024 0.5009219 ]\n", + " [-0.26213248 0.80954044 0.52529119]\n", + " [-0.26060622 0.79373009 0.54961527]\n", + " [-0.25884084 0.77703106 0.57378058]\n", + " [-0.25683535 0.75948394 0.59767863]\n", + " [-0.2545919 0.74113965 0.62120446]\n", + " [-0.25211589 0.72206019 0.64425668]\n", + " [-0.06905618 0.86317638 0.50015776]\n", + " [-0.06563881 0.84619313 0.52881824]\n", + " [-0.06227785 0.82782987 0.5575116 ]\n", + " [-0.05897214 0.80814396 0.58602528]\n", + " [-0.05572394 0.78721361 0.61415761]\n", + " [-0.05254085 0.7651366 0.64172069]\n", + " [-0.08182231 0.86805807 0.48967366]\n", + " [-0.1150755 0.86509173 0.48823553]\n", + " [-0.14896132 0.86095559 0.48638051]\n", + " [-0.1832633 0.85562296 0.48407015]\n", + " [-0.21776555 0.84908701 0.48127893]\n", + " [-0.25225591 0.8413598 0.47799649]\n", + " [-0.06336827 0.75590162 0.65161124]\n", + " [-0.0977304 0.75185759 0.65204212]\n", + " [-0.13273648 0.7467904 0.6516787 ]\n", + " [-0.16817166 0.74067553 0.65047525]\n", + " [-0.20382437 0.73350595 0.64840161]\n", + " [-0.23948048 0.72529385 0.64544398]\n", + " [-0.26395457 0.83243693 0.48721324]\n", + " [-0.26249836 0.81470823 0.51705426]\n", + " [-0.26069244 0.79558354 0.54688782]\n", + " [-0.25852819 0.77511844 0.57650202]\n", + " [-0.25600378 0.75338787 0.60569693]\n", + " [-0.25312454 0.73049019 0.63428074]\n", + " [-0.07027598 0.86883418 0.49009026]\n", + " [-0.07027598 0.86883418 0.49009026]\n", + " [-0.25202571 0.72215194 0.64418912]\n", + " [-0.25202571 0.72215194 0.64418912]\n", + " [-0.08065056 0.86238191 0.49979288]\n", + " [-0.11404231 0.85936442 0.49848485]\n", + " [-0.14806766 0.8551795 0.49673332]\n", + " [-0.1825085 0.84980122 0.49449826]\n", + " [-0.21714847 0.84322293 0.49175362]\n", + " [-0.25177511 0.83545659 0.48848909]\n", + " [-0.07735379 0.84534057 0.52859787]\n", + " [-0.11109107 0.8421656 0.52765128]\n", + " [-0.14546263 0.83783601 0.52618575]\n", + " [-0.18024823 0.83232707 0.52415859]\n", + " [-0.2152314 0.82563183 0.5215434 ]\n", + " [-0.25019924 0.81776154 0.51833039]\n", + " [-0.07408823 0.82691137 0.55743028]\n", + " [-0.10809708 0.82356265 0.55682994]\n", + " [-0.14274016 0.81907979 0.55563797]\n", + " [-0.17779765 0.81343815 0.55381078]\n", + " [-0.2130542 0.80662995 0.55132208]\n", + " [-0.24829653 0.7986656 0.54816248]\n", + " [-0.07085113 0.80715244 0.58607598]\n", + " [-0.10505508 0.80361464 0.58580452]\n", + " [-0.13989421 0.79896944 0.58487388]\n", + " [-0.17515044 0.79319187 0.58324008]\n", + " [-0.21060988 0.78627349 0.58087647]\n", + " [-0.24605886 0.77822434 0.57777324]\n", + " [-0.06764428 0.7861422 0.61433272]\n", + " [-0.10196667 0.78239977 0.61437237]\n", + " [-0.13692685 0.77758212 0.61369136]\n", + " [-0.17230863 0.77166418 0.61224515]\n", + " [-0.20789943 0.76463754 0.61000595]\n", + " [-0.2434852 0.75651263 0.6069626 ]\n", + " [-0.06447536 0.7639785 0.64201228]\n", + " [-0.09884038 0.76001582 0.64234456]\n", + " [-0.13384747 0.75501542 0.64190075]\n", + " [-0.16928162 0.74895258 0.64063544]\n", + " [-0.2049311 0.74181975 0.63851915]\n", + " [-0.24058176 0.73362858 0.63553877]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:cartToSphere: vec: [[-0.15566771 -0.6045437 0.78121346]\n", + " [-0.18079243 -0.60886041 0.77240087]\n", + " [-0.20636151 -0.61268696 0.76290866]\n", + " [-0.23224961 -0.61599397 0.75273604]\n", + " [-0.25833749 -0.61875578 0.74189152]\n", + " [-0.28451059 -0.62095079 0.73039294]\n", + " [-0.31065812 -0.622562 0.71826742]\n", + " [-0.33667272 -0.62357756 0.7055512 ]\n", + " [-0.15566771 -0.6045437 0.78121346]\n", + " [-0.16169947 -0.5830103 0.7962112 ]\n", + " [-0.16789239 -0.56058975 0.81089535]\n", + " [-0.17419532 -0.53735368 0.8251709 ]\n", + " [-0.18056346 -0.51337758 0.8389519 ]\n", + " [-0.18695743 -0.48874183 0.85216098]\n", + " [-0.19334234 -0.46353236 0.86472914]\n", + " [-0.19968716 -0.43784086 0.87659593]\n", + " [-0.33667272 -0.62357756 0.7055512 ]\n", + " [-0.34476042 -0.60152386 0.72063118]\n", + " [-0.35274017 -0.57853498 0.73543977]\n", + " [-0.36056419 -0.55467601 0.74988532]\n", + " [-0.36818829 -0.53001833 0.76388346]\n", + " [-0.3755716 -0.50464098 0.77735671]\n", + " [-0.38267663 -0.47863109 0.7902347 ]\n", + " [-0.38946963 -0.45208366 0.80245484]\n", + " [-0.19968716 -0.43784086 0.87659593]\n", + " [-0.22632715 -0.44090344 0.86855062]\n", + " [-0.25331814 -0.44366597 0.85964553]\n", + " [-0.28054235 -0.44609843 0.84987774]\n", + " [-0.30788398 -0.44817521 0.8392535 ]\n", + " [-0.33522812 -0.44987512 0.82778891]\n", + " [-0.36246077 -0.45118175 0.81551041]\n", + " [-0.38946963 -0.45208366 0.80245484]\n", + " [-0.16658007 -0.60641177 0.77750617]\n", + " [-0.19768951 -0.61137604 0.76624943]\n", + " [-0.22934104 -0.61557459 0.7539699 ]\n", + " [-0.26131267 -0.61895861 0.74067937]\n", + " [-0.29339342 -0.6214884 0.72641067]\n", + " [-0.32538074 -0.6231348 0.71121755]\n", + " [-0.15835977 -0.59528393 0.78775582]\n", + " [-0.16586895 -0.56828641 0.80593923]\n", + " [-0.17356842 -0.54002709 0.82355616]\n", + " [-0.18137313 -0.51064328 0.84044466]\n", + " [-0.18921046 -0.48028301 0.85646227]\n", + " [-0.19701781 -0.44910691 0.8714855 ]\n", + " [-0.34012005 -0.61407857 0.71219791]\n", + " [-0.34996508 -0.58641267 0.73050984]\n", + " [-0.35960022 -0.55740619 0.74832214]\n", + " [-0.36894269 -0.52718782 0.76547652]\n", + " [-0.37791724 -0.49590309 0.78183034]\n", + " [-0.3864564 -0.46371575 0.79725727]\n", + " [-0.21122975 -0.43929986 0.87315384]\n", + " [-0.24413055 -0.44285646 0.86271573]\n", + " [-0.27744126 -0.4459319 0.85098242]\n", + " [-0.31094799 -0.44847718 0.83796156]\n", + " [-0.34443918 -0.45045337 0.82368284]\n", + " [-0.37770563 -0.45183227 0.80819927]\n", + " [-0.15577302 -0.60448722 0.78123618]\n", + " [-0.15577302 -0.60448722 0.78123618]\n", + " [-0.38935512 -0.45217286 0.80246015]\n", + " [-0.38935512 -0.45217286 0.80246015]\n", + " [-0.16923539 -0.59718105 0.78404986]\n", + " [-0.17691818 -0.57010121 0.80229955]\n", + " [-0.18476178 -0.54175193 0.81998045]\n", + " [-0.19268233 -0.51226961 0.83693092]\n", + " [-0.20060799 -0.48180188 0.85300843]\n", + " [-0.20847651 -0.45050947 0.86808915]\n", + " [-0.20052958 -0.60207808 0.77284531]\n", + " [-0.2086803 -0.57479579 0.79124101]\n", + " [-0.21691257 -0.54622375 0.80906647]\n", + " [-0.22514519 -0.51649595 0.82616075]\n", + " [-0.23330767 -0.48575909 0.84238094]\n", + " [-0.24133809 -0.45417443 0.85760219]\n", + " [-0.23235316 -0.60622449 0.76059442]\n", + " [-0.24094022 -0.578784 0.77907438]\n", + " [-0.2495352 -0.55003589 0.79698978]\n", + " [-0.25805825 -0.52011208 0.81418018]\n", + " [-0.266439 -0.48915867 0.83050229]\n", + " [-0.27461495 -0.4573377 0.84583027]\n", + " [-0.26448549 -0.6095708 0.74730908]\n", + " [-0.27348047 -0.58201484 0.76581144]\n", + " [-0.28241438 -0.55313652 0.78376152]\n", + " [-0.29120738 -0.52306619 0.80099939]\n", + " [-0.29978826 -0.49194965 0.81738151]\n", + " [-0.30809329 -0.45994968 0.83278138]\n", + " [-0.29671615 -0.6120767 0.73302226]\n", + " [-0.30609165 -0.58444668 0.75148518]\n", + " [-0.31534075 -0.55548346 0.76941428]\n", + " [-0.32438273 -0.52531637 0.78665021]\n", + " [-0.33314483 -0.49409103 0.80304955]\n", + " [-0.34156177 -0.46197082 0.8184855 ]\n", + " [-0.32884251 -0.61371258 0.7177879 ]\n", + " [-0.33857028 -0.58604897 0.73614996]\n", + " [-0.34810946 -0.55704586 0.75400246]\n", + " [-0.35737781 -0.52683202 0.77118683]\n", + " [-0.36630076 -0.49555299 0.78756015]\n", + " [-0.37481141 -0.46337248 0.80299586]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:fp_optics: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:fp_optics: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:cartToSphere: vec: [[-0.00266437 -0.64560242 0.76366905]\n", + " [-0.02268094 -0.63155107 0.77500246]\n", + " [-0.04299586 -0.61664233 0.78606844]\n", + " [-0.06353097 -0.60092208 0.79677881]\n", + " [-0.0842077 -0.58444041 0.80705543]\n", + " [-0.10494686 -0.56725173 0.81683023]\n", + " [-0.12566861 -0.54941527 0.82604496]\n", + " [-0.14629269 -0.53099536 0.83465105]\n", + " [-0.00266437 -0.64560242 0.76366905]\n", + " [ 0.01729286 -0.63162257 0.77508315]\n", + " [ 0.03756233 -0.616781 0.78623805]\n", + " [ 0.05806603 -0.60112308 0.79704415]\n", + " [ 0.07872556 -0.58469826 0.80742197]\n", + " [ 0.09946185 -0.56756033 0.81730203]\n", + " [ 0.12019515 -0.54976783 0.82662474]\n", + " [ 0.14084523 -0.53138445 0.83534016]\n", + " [-0.14629269 -0.53099536 0.83465105]\n", + " [-0.12692998 -0.5155045 0.84743371]\n", + " [-0.10707087 -0.49927952 0.85979985]\n", + " [-0.08678935 -0.48236283 0.87166147]\n", + " [-0.06616015 -0.46480148 0.88293964]\n", + " [-0.04526015 -0.4466485 0.89356401]\n", + " [-0.02416901 -0.42796365 0.90347273]\n", + " [-0.00296911 -0.40881369 0.91261304]\n", + " [ 0.14084523 -0.53138445 0.83534016]\n", + " [ 0.1213709 -0.51582661 0.8480519 ]\n", + " [ 0.10141348 -0.49953744 0.86033578]\n", + " [ 0.0810471 -0.48255983 0.87210514]\n", + " [ 0.06034687 -0.46494145 0.88328235]\n", + " [ 0.03939018 -0.44673607 0.89379824]\n", + " [ 0.01825725 -0.42800431 0.90359227]\n", + " [-0.00296911 -0.40881369 0.91261304]\n", + " [-0.01128238 -0.63953747 0.76867713]\n", + " [-0.0360253 -0.62173287 0.78240042]\n", + " [-0.06113887 -0.60268562 0.79563314]\n", + " [-0.08647862 -0.58248615 0.80822727]\n", + " [-0.11189876 -0.56123474 0.82005746]\n", + " [-0.13725211 -0.53904251 0.83102048]\n", + " [ 0.00592583 -0.63956889 0.76871095]\n", + " [ 0.03060532 -0.62184908 0.78253884]\n", + " [ 0.05567647 -0.60287959 0.79588713]\n", + " [ 0.0809951 -0.5827498 0.80860526]\n", + " [ 0.10641568 -0.56155877 0.82056532]\n", + " [ 0.13179115 -0.53941639 0.83166162]\n", + " [-0.13784572 -0.52439828 0.84024104]\n", + " [-0.1137709 -0.50491448 0.85563868]\n", + " [-0.0890241 -0.48436958 0.87032225]\n", + " [-0.06374253 -0.46284821 0.88414276]\n", + " [-0.03806779 -0.44044805 0.89697065]\n", + " [-0.01214771 -0.41728208 0.90869583]\n", + " [ 0.13234785 -0.52475773 0.84090033]\n", + " [ 0.10814521 -0.50519367 0.85620323]\n", + " [ 0.08329069 -0.48457315 0.87077639]\n", + " [ 0.05792212 -0.46298189 0.88447317]\n", + " [ 0.03218201 -0.44051897 0.89716629]\n", + " [ 0.00621918 -0.41729885 0.90874803]\n", + " [-0.0026646 -0.64550959 0.76374752]\n", + " [-0.0026646 -0.64550959 0.76374752]\n", + " [-0.00296904 -0.40894621 0.91255366]\n", + " [-0.00296904 -0.40894621 0.91255366]\n", + " [-0.00269267 -0.63354739 0.7736992 ]\n", + " [ 0.02199657 -0.61569375 0.78767846]\n", + " [ 0.04709506 -0.59659943 0.80115615]\n", + " [ 0.07245879 -0.57635335 0.81398191]\n", + " [ 0.09794211 -0.55505408 0.82602803]\n", + " [ 0.12339758 -0.53281132 0.83718883]\n", + " [-0.02744937 -0.61560886 0.78757365]\n", + " [-0.00276587 -0.597395 0.80194237]\n", + " [ 0.02237688 -0.57796797 0.8157526 ]\n", + " [ 0.04783553 -0.55741505 0.82885477]\n", + " [ 0.07346429 -0.53583346 0.84112157]\n", + " [ 0.09911466 -0.51333252 0.85244707]\n", + " [-0.05259431 -0.59643652 0.80093528]\n", + " [-0.02796657 -0.5778895 0.8156357 ]\n", + " [-0.00282963 -0.55815945 0.82972888]\n", + " [ 0.0226742 -0.53733197 0.84306597]\n", + " [ 0.04839937 -0.51550326 0.85551966]\n", + " [ 0.07419657 -0.49278273 0.86698331]\n", + " [-0.07798314 -0.57612036 0.81363626]\n", + " [-0.05346175 -0.55726563 0.8286114 ]\n", + " [-0.02838163 -0.53726059 0.84293864]\n", + " [-0.00288367 -0.5161896 0.85646949]\n", + " [ 0.02288729 -0.49414851 0.86907619]\n", + " [ 0.04878165 -0.47124738 0.88065104]\n", + " [-0.10346993 -0.55476018 0.8255514 ]\n", + " [-0.07910523 -0.53562191 0.84074463]\n", + " [-0.05413299 -0.51536892 0.85525698]\n", + " [-0.02869252 -0.49408515 0.86893993]\n", + " [-0.00292744 -0.47186682 0.88166498]\n", + " [ 0.02301298 -0.44882507 0.89332327]\n", + " [-0.12890711 -0.53246696 0.83657749]\n", + " [-0.10474823 -0.513069 0.85193193]\n", + " [-0.07993401 -0.49259529 0.86657973]\n", + " [-0.05460214 -0.47113017 0.88037206]\n", + " [-0.02889478 -0.44877084 0.89317962]\n", + " [-0.00296022 -0.42562979 0.90489255]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:fp_optics: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:cartToSphere: vec: [[ 0.60377676 -0.68377124 -0.40976887]\n", + " [ 0.60391981 -0.66940413 -0.43264186]\n", + " [ 0.60349398 -0.65431427 -0.45570589]\n", + " [ 0.60248298 -0.63853033 -0.47884577]\n", + " [ 0.6008773 -0.62208886 -0.50194812]\n", + " [ 0.59867302 -0.60503412 -0.52490411]\n", + " [ 0.59587128 -0.58741814 -0.54761058]\n", + " [ 0.59247826 -0.56930058 -0.56997049]\n", + " [ 0.60377676 -0.68377124 -0.40976887]\n", + " [ 0.58215836 -0.69858132 -0.41602378]\n", + " [ 0.55963454 -0.71311454 -0.42222842]\n", + " [ 0.53627264 -0.72728542 -0.42833115]\n", + " [ 0.51214831 -0.74101442 -0.43428301]\n", + " [ 0.48734363 -0.75422867 -0.4400401 ]\n", + " [ 0.4619463 -0.76686229 -0.44556464]\n", + " [ 0.43604938 -0.77885656 -0.45082524]\n", + " [ 0.59247826 -0.56930058 -0.56997049]\n", + " [ 0.57005691 -0.58376897 -0.57814264]\n", + " [ 0.54671532 -0.59806487 -0.58602113]\n", + " [ 0.52252358 -0.61210352 -0.5935473 ]\n", + " [ 0.4975554 -0.62580747 -0.60066932]\n", + " [ 0.47189019 -0.63910549 -0.6073416 ]\n", + " [ 0.4456152 -0.65193169 -0.61352438]\n", + " [ 0.41882655 -0.66422558 -0.6191839 ]\n", + " [ 0.43604938 -0.77885656 -0.45082524]\n", + " [ 0.43477412 -0.76498557 -0.47515108]\n", + " [ 0.43311603 -0.75022312 -0.4995756 ]\n", + " [ 0.43106348 -0.73459542 -0.52397886]\n", + " [ 0.42860895 -0.71813554 -0.54824786]\n", + " [ 0.4257493 -0.70088482 -0.57227441]\n", + " [ 0.4224862 -0.68289434 -0.59595363]\n", + " [ 0.41882655 -0.66422558 -0.6191839 ]\n", + " [ 0.60383512 -0.67764859 -0.4197327 ]\n", + " [ 0.60362966 -0.65955113 -0.44791019]\n", + " [ 0.6025528 -0.64039553 -0.47626011]\n", + " [ 0.6005843 -0.62024578 -0.50457275]\n", + " [ 0.59771689 -0.59918341 -0.53264788]\n", + " [ 0.59395476 -0.57730735 -0.5602981 ]\n", + " [ 0.59446741 -0.69020908 -0.41257717]\n", + " [ 0.56735428 -0.70818543 -0.42021723]\n", + " [ 0.53894694 -0.72566046 -0.42773017]\n", + " [ 0.5093814 -0.74248518 -0.43502454]\n", + " [ 0.47880866 -0.75852549 -0.44201963]\n", + " [ 0.44739241 -0.77366304 -0.44864856]\n", + " [ 0.58283263 -0.57568729 -0.57348955]\n", + " [ 0.5547256 -0.5933155 -0.58331486]\n", + " [ 0.52530557 -0.61059945 -0.59264017]\n", + " [ 0.49470675 -0.62739355 -0.60136725]\n", + " [ 0.46307555 -0.64356656 -0.60941211]\n", + " [ 0.43057631 -0.65899937 -0.61670404]\n", + " [ 0.43562916 -0.77287976 -0.46139365]\n", + " [ 0.43381131 -0.75527661 -0.49128912]\n", + " [ 0.43140625 -0.73635985 -0.52121283]\n", + " [ 0.42839845 -0.71618749 -0.55095394]\n", + " [ 0.42478216 -0.69483581 -0.58031312]\n", + " [ 0.42056261 -0.67240319 -0.60909855]\n", + " [ 0.60370587 -0.68377438 -0.40986805]\n", + " [ 0.60370587 -0.68377438 -0.40986805]\n", + " [ 0.41893209 -0.66424943 -0.61908691]\n", + " [ 0.41893209 -0.66424943 -0.61908691]\n", + " [ 0.59456311 -0.68409324 -0.4225058 ]\n", + " [ 0.56734926 -0.70210145 -0.43031194]\n", + " [ 0.53883493 -0.71961322 -0.43796545]\n", + " [ 0.50915736 -0.73647934 -0.44537284]\n", + " [ 0.47846791 -0.75256557 -0.45245278]\n", + " [ 0.44693043 -0.76775333 -0.45913835]\n", + " [ 0.59426997 -0.66600994 -0.45085914]\n", + " [ 0.56679656 -0.6840706 -0.45911772]\n", + " [ 0.53801006 -0.70165223 -0.46715022]\n", + " [ 0.50804938 -0.7186055 -0.47485994]\n", + " [ 0.47706566 -0.73479595 -0.48216518]\n", + " [ 0.44522281 -0.75010407 -0.48899952]\n", + " [ 0.59311815 -0.6468475 -0.47937373]\n", + " [ 0.56542674 -0.66490426 -0.48805219]\n", + " [ 0.53641559 -0.68250475 -0.49643285]\n", + " [ 0.5062231 -0.69950008 -0.50441829]\n", + " [ 0.47499911 -0.71575576 -0.51192728]\n", + " [ 0.44290739 -0.73115139 -0.51889372]\n", + " [ 0.59108862 -0.62666972 -0.50783788]\n", + " [ 0.56322269 -0.64466562 -0.5169008 ]\n", + " [ 0.53403475 -0.66223312 -0.52559888]\n", + " [ 0.50366162 -0.67922414 -0.53383475]\n", + " [ 0.47225153 -0.6955046 -0.54152733]\n", + " [ 0.43996821 -0.71095359 -0.54861003]\n", + " [ 0.58817444 -0.60555802 -0.53605067]\n", + " [ 0.56017733 -0.62343589 -0.54546223]\n", + " [ 0.53085964 -0.64091796 -0.55444766]\n", + " [ 0.50035652 -0.65785726 -0.56290956]\n", + " [ 0.46881495 -0.67412064 -0.57076607]\n", + " [ 0.43639883 -0.6895874 -0.5779492 ]\n", + " [ 0.58437971 -0.58361151 -0.56382441]\n", + " [ 0.55629394 -0.60131468 -0.57354835]\n", + " [ 0.52689256 -0.61865931 -0.58279061]\n", + " [ 0.49630981 -0.6354995 -0.59145326]\n", + " [ 0.46469212 -0.65170346 -0.59945295]\n", + " [ 0.43220368 -0.66715156 -0.60671968]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:cartToSphere: vec: [[-0.27135236 0.29303142 -0.91678813]\n", + " [-0.24840064 0.2826181 -0.92651181]\n", + " [-0.22471766 0.27191299 -0.93571646]\n", + " [-0.20040145 0.26093691 -0.94432578]\n", + " [-0.17555002 0.24971547 -0.95227327]\n", + " [-0.15026165 0.23827915 -0.95950221]\n", + " [-0.12463532 0.22666318 -0.96596576]\n", + " [-0.09877097 0.21490721 -0.97162708]\n", + " [-0.27135236 0.29303142 -0.91678813]\n", + " [-0.26123294 0.3174499 -0.91158264]\n", + " [-0.25056475 0.34210982 -0.90563689]\n", + " [-0.23939602 0.36689525 -0.89893127]\n", + " [-0.22777459 0.39169433 -0.89145627]\n", + " [-0.21574806 0.41639898 -0.88321269]\n", + " [-0.20336427 0.44090467 -0.87421167]\n", + " [-0.19067177 0.46511053 -0.86447468]\n", + " [-0.09877097 0.21490721 -0.97162708]\n", + " [-0.08664522 0.23960994 -0.96699518]\n", + " [-0.07419949 0.26462518 -0.96149256]\n", + " [-0.06148019 0.28984164 -0.95509791]\n", + " [-0.04853413 0.31515115 -0.94779966]\n", + " [-0.03540945 0.3404472 -0.93959666]\n", + " [-0.02215609 0.36562414 -0.93049884]\n", + " [-0.0088257 0.39057759 -0.9205277 ]\n", + " [-0.19067177 0.46511053 -0.86447468]\n", + " [-0.16607744 0.45597677 -0.87435889]\n", + " [-0.14086245 0.44629932 -0.88372772]\n", + " [-0.11512036 0.43609652 -0.8925061 ]\n", + " [-0.08894605 0.42539147 -0.90062795]\n", + " [-0.06243732 0.41421271 -0.90803602]\n", + " [-0.0356956 0.40259466 -0.91468211]\n", + " [-0.0088257 0.39057759 -0.9205277 ]\n", + " [-0.26140737 0.28861141 -0.92106984]\n", + " [-0.23277213 0.27565083 -0.93264878]\n", + " [-0.20313598 0.26227195 -0.94337119]\n", + " [-0.17267936 0.2485199 -0.95311054]\n", + " [-0.14158325 0.23445078 -0.96176245]\n", + " [-0.11003026 0.22013132 -0.96924483]\n", + " [-0.26693317 0.30360587 -0.91464209]\n", + " [-0.25415427 0.33371117 -0.90776785]\n", + " [-0.2405992 0.36406352 -0.89976096]\n", + " [-0.2263562 0.39445531 -0.89059973]\n", + " [-0.21151296 0.42468752 -0.88028562]\n", + " [-0.19615782 0.45456923 -0.86884344]\n", + " [-0.09361552 0.22567249 -0.96969483]\n", + " [-0.07853405 0.25617302 -0.96343541]\n", + " [-0.06301789 0.28703184 -0.95584594]\n", + " [-0.04715303 0.31804865 -0.94690108]\n", + " [-0.03102813 0.34902724 -0.93659876]\n", + " [-0.01473584 0.37977359 -0.92496209]\n", + " [-0.18007492 0.46111356 -0.86887704]\n", + " [-0.14950337 0.4495507 -0.88065482]\n", + " [-0.1180924 0.43718909 -0.8915828 ]\n", + " [-0.08601603 0.42406926 -0.90153564]\n", + " [-0.05345438 0.41024379 -0.91040796]\n", + " [-0.02059564 0.39577849 -0.91811503]\n", + " [-0.27124161 0.29307929 -0.91680561]\n", + " [-0.27124161 0.29307929 -0.91680561]\n", + " [-0.00896334 0.39053448 -0.92054466]\n", + " [-0.00896334 0.39053448 -0.92054466]\n", + " [-0.25703403 0.2991704 -0.91892904]\n", + " [-0.24408594 0.32936996 -0.91210607]\n", + " [-0.23038337 0.35982041 -0.90413095]\n", + " [-0.21601413 0.39031441 -0.89498187]\n", + " [-0.20106539 0.42065302 -0.88466024]\n", + " [-0.18562519 0.45064498 -0.87319092]\n", + " [-0.22822206 0.28628348 -0.93056782]\n", + " [-0.21481517 0.31670008 -0.92388068]\n", + " [-0.20071506 0.34738084 -0.91599127]\n", + " [-0.186008 0.37811963 -0.90687737]\n", + " [-0.17077981 0.40871772 -0.89654006]\n", + " [-0.155118 0.43898281 -0.88500424]\n", + " [-0.19841958 0.27295129 -0.94134333]\n", + " [-0.18458305 0.30351063 -0.93477826]\n", + " [-0.17011372 0.33435102 -0.92696856]\n", + " [-0.15509647 0.36526777 -0.91789135]\n", + " [-0.1396164 0.39606247 -0.90754712]\n", + " [-0.12376118 0.42654177 -0.89596054]\n", + " [-0.16780653 0.259219 -0.95112906]\n", + " [-0.15356765 0.28984688 -0.94467231]\n", + " [-0.13875544 0.32077593 -0.93693635]\n", + " [-0.12345413 0.35180297 -0.92789749]\n", + " [-0.10774897 0.38273003 -0.91755539]\n", + " [-0.09172856 0.41336296 -0.90593429]\n", + " [-0.13656349 0.24514297 -0.95982047]\n", + " [-0.12194844 0.27576578 -0.95345782]\n", + " [-0.106819 0.30671256 -0.94578915]\n", + " [-0.09125959 0.33778155 -0.9367899 ]\n", + " [-0.07535653 0.36877539 -0.9264589 ]\n", + " [-0.05919994 0.39949962 -0.91481988]\n", + " [-0.10487309 0.23079031 -0.96733524]\n", + " [-0.08990842 0.2613354 -0.96105166]\n", + " [-0.0744882 0.29222948 -0.95344294]\n", + " [-0.05869793 0.32327192 -0.94448389]\n", + " [-0.04262557 0.35426621 -0.93417264]\n", + " [-0.02636313 0.38501811 -0.92253241]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:fp_optics: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:fp_optics: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:cartToSphere: vec: [[ 1.59588824e-01 2.66540138e-01 -9.50519733e-01]\n", + " [ 1.38386530e-01 2.84767599e-01 -9.48554997e-01]\n", + " [ 1.16654835e-01 3.03124667e-01 -9.45783847e-01]\n", + " [ 9.44743369e-02 3.21525695e-01 -9.42176113e-01]\n", + " [ 7.19267987e-02 3.39888214e-01 -9.37711329e-01]\n", + " [ 4.90965050e-02 3.58131929e-01 -9.32379244e-01]\n", + " [ 2.60708782e-02 3.76178392e-01 -9.26180396e-01]\n", + " [ 2.94020301e-03 3.93951433e-01 -9.19126555e-01]\n", + " [ 1.59588824e-01 2.66540138e-01 -9.50519733e-01]\n", + " [ 1.40984657e-01 2.45925094e-01 -9.58980800e-01]\n", + " [ 1.22248376e-01 2.25234100e-01 -9.66604849e-01]\n", + " [ 1.03452582e-01 2.04552687e-01 -9.73373393e-01]\n", + " [ 8.46695981e-02 1.83969817e-01 -9.79278390e-01]\n", + " [ 6.59711309e-02 1.63578155e-01 -9.84322100e-01]\n", + " [ 4.74281979e-02 1.43474545e-01 -9.88516879e-01]\n", + " [ 2.91112984e-02 1.23760369e-01 -9.91885025e-01]\n", + " [ 2.94020301e-03 3.93951433e-01 -9.19126555e-01]\n", + " [-1.61802190e-02 3.72532126e-01 -9.27878233e-01]\n", + " [-3.52254803e-02 3.50849577e-01 -9.35769063e-01]\n", + " [-5.41207134e-02 3.28994044e-01 -9.42779862e-01]\n", + " [-7.27933210e-02 3.07057679e-01 -9.48902900e-01]\n", + " [-9.11732910e-02 2.85133990e-01 -9.54141519e-01]\n", + " [-1.09192773e-01 2.63318183e-01 -9.58509506e-01]\n", + " [-1.26785023e-01 2.41708331e-01 -9.62030478e-01]\n", + " [ 2.91112984e-02 1.23760369e-01 -9.91885025e-01]\n", + " [ 7.50008235e-03 1.39996065e-01 -9.90123654e-01]\n", + " [-1.44736251e-02 1.56576131e-01 -9.87559836e-01]\n", + " [-3.67248488e-02 1.73412306e-01 -9.84164345e-01]\n", + " [-5.91681463e-02 1.90420990e-01 -9.79917842e-01]\n", + " [-8.17173411e-02 2.07522923e-01 -9.74811014e-01]\n", + " [-1.04285468e-01 2.24642684e-01 -9.68844779e-01]\n", + " [-1.26785023e-01 2.41708331e-01 -9.62030478e-01]\n", + " [ 1.50351241e-01 2.74395234e-01 -9.49790377e-01]\n", + " [ 1.23998890e-01 2.96832312e-01 -9.46844683e-01]\n", + " [ 9.69315115e-02 3.19378679e-01 -9.42656640e-01]\n", + " [ 6.92990685e-02 3.41881267e-01 -9.37184528e-01]\n", + " [ 4.12568015e-02 3.64192217e-01 -9.30409536e-01]\n", + " [ 1.29668906e-02 3.86168018e-01 -9.22337314e-01]\n", + " [ 1.51426474e-01 2.57628291e-01 -9.54304818e-01]\n", + " [ 1.28526628e-01 2.32299924e-01 -9.64114957e-01]\n", + " [ 1.05500636e-01 2.06941959e-01 -9.72648262e-01]\n", + " [ 8.24817829e-02 1.81716747e-01 -9.79885595e-01]\n", + " [ 5.96020719e-02 1.56794933e-01 -9.85831092e-01]\n", + " [ 3.69920138e-02 1.32356692e-01 -9.90511634e-01]\n", + " [-5.32158220e-03 3.84590361e-01 -9.23072010e-01]\n", + " [-2.87146636e-02 3.58150737e-01 -9.33222116e-01]\n", + " [-5.19204025e-02 3.31405260e-01 -9.42058823e-01]\n", + " [-7.48041617e-02 3.04522843e-01 -9.49563150e-01]\n", + " [-9.72369971e-02 2.77675669e-01 -9.55741173e-01]\n", + " [-1.19094519e-01 2.51040116e-01 -9.60622379e-01]\n", + " [ 1.98008454e-02 1.30858241e-01 -9.91203333e-01]\n", + " [-6.94058216e-03 1.51001283e-01 -9.88509201e-01]\n", + " [-3.41422171e-02 1.71573213e-01 -9.84579576e-01]\n", + " [-6.16469723e-02 1.92418185e-01 -9.79374746e-01]\n", + " [-8.92961926e-02 2.13390229e-01 -9.72877587e-01]\n", + " [-1.16929529e-01 2.34351949e-01 -9.65094114e-01]\n", + " [ 1.59453999e-01 2.66531873e-01 -9.50544677e-01]\n", + " [ 1.59453999e-01 2.66531873e-01 -9.50544677e-01]\n", + " [-1.26648941e-01 2.41723574e-01 -9.62044573e-01]\n", + " [-1.26648941e-01 2.41723574e-01 -9.62044573e-01]\n", + " [ 1.42293881e-01 2.65455412e-01 -9.53564825e-01]\n", + " [ 1.19321746e-01 2.40011011e-01 -9.63409070e-01]\n", + " [ 9.62420080e-02 2.14517517e-01 -9.71966929e-01]\n", + " [ 7.31884148e-02 1.89137271e-01 -9.79219357e-01]\n", + " [ 5.02931823e-02 1.64040535e-01 -9.85170695e-01]\n", + " [ 2.76867612e-02 1.39406961e-01 -9.89848040e-01]\n", + " [ 1.15866988e-01 2.87801016e-01 -9.50655256e-01]\n", + " [ 9.27186593e-02 2.62060986e-01 -9.60586951e-01]\n", + " [ 6.95157951e-02 2.36218975e-01 -9.69210065e-01]\n", + " [ 4.63934070e-02 2.10437697e-01 -9.76505826e-01]\n", + " [ 2.34841746e-02 1.84886515e-01 -9.82479247e-01]\n", + " [ 9.18203723e-04 1.59743338e-01 -9.87158155e-01]\n", + " [ 8.87400805e-02 3.10272653e-01 -9.46496740e-01]\n", + " [ 6.54588831e-02 2.84286080e-01 -9.56502253e-01]\n", + " [ 4.21772905e-02 2.58147466e-01 -9.65184419e-01]\n", + " [ 1.90312672e-02 2.32020526e-01 -9.72524697e-01]\n", + " [-3.84646035e-03 2.06074315e-01 -9.78528784e-01]\n", + " [-2.63265307e-02 1.80485200e-01 -9.83225308e-01]\n", + " [ 6.10635714e-02 3.32717685e-01 -9.41047386e-01]\n", + " [ 3.76943337e-02 3.06534543e-01 -9.51112880e-01]\n", + " [ 1.43800123e-02 2.80151412e-01 -9.59848114e-01]\n", + " [-8.74303320e-03 2.53733506e-01 -9.67234650e-01]\n", + " [-3.15426058e-02 2.27450277e-01 -9.73278704e-01]\n", + " [-5.38905459e-02 2.01477213e-01 -9.78009582e-01]\n", + " [ 3.29932009e-02 3.54988815e-01 -9.34288173e-01]\n", + " [ 9.58208200e-03 3.28660587e-01 -9.44399493e-01]\n", + " [-1.37179336e-02 3.02086159e-01 -9.53181919e-01]\n", + " [-3.67707774e-02 2.75432443e-01 -9.60616926e-01]\n", + " [-5.94453640e-02 2.48869868e-01 -9.66710938e-01]\n", + " [-8.16150892e-02 2.22573840e-01 -9.71493625e-01]\n", + " [ 4.69155120e-03 3.76943053e-01 -9.26224554e-01]\n", + " [-1.87145297e-02 3.50522906e-01 -9.36367160e-01]\n", + " [-4.19530859e-02 3.23812112e-01 -9.45190803e-01]\n", + " [-6.48890087e-02 2.96979131e-01 -9.52676657e-01]\n", + " [-8.73927552e-02 2.70195679e-01 -9.58830956e-01]\n", + " [-1.09339385e-01 2.43637785e-01 -9.63683313e-01]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:fp_optics: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:cartToSphere: vec: [[-0.38378795 -0.65700982 0.64887973]\n", + " [-0.3755108 -0.64125678 0.66916469]\n", + " [-0.36664021 -0.62476895 0.6893756 ]\n", + " [-0.35721318 -0.60758271 0.70939552]\n", + " [-0.34726683 -0.58974138 0.72911649]\n", + " [-0.33683898 -0.5712956 0.74843894]\n", + " [-0.32596882 -0.55230344 0.76727129]\n", + " [-0.31469748 -0.53283036 0.78552995]\n", + " [-0.38378795 -0.65700982 0.64887973]\n", + " [-0.36108694 -0.6714014 0.6471757 ]\n", + " [-0.33756561 -0.68551809 0.64506931]\n", + " [-0.31331757 -0.69927742 0.64252875]\n", + " [-0.28843664 -0.71260353 0.63953148]\n", + " [-0.26301769 -0.72542692 0.63606405]\n", + " [-0.23715743 -0.73768444 0.63212183]\n", + " [-0.21095493 -0.74931959 0.62770867]\n", + " [-0.31469748 -0.53283036 0.78552995]\n", + " [-0.29051178 -0.54676937 0.78526821]\n", + " [-0.26559658 -0.56055202 0.78437229]\n", + " [-0.24003878 -0.57409874 0.78281034]\n", + " [-0.21392769 -0.58733575 0.78055855]\n", + " [-0.18735683 -0.60019436 0.77760154]\n", + " [-0.16042483 -0.61261083 0.77393271]\n", + " [-0.1332353 -0.62452695 0.7695547 ]\n", + " [-0.21095493 -0.74931959 0.62770867]\n", + " [-0.20078262 -0.73397802 0.64881631]\n", + " [-0.19024043 -0.71774048 0.66981877]\n", + " [-0.17936197 -0.70063921 0.69060407]\n", + " [-0.16818271 -0.68271397 0.71106695]\n", + " [-0.15674065 -0.66401325 0.73110791]\n", + " [-0.14507685 -0.64459505 0.75063302]\n", + " [-0.1332353 -0.62452695 0.7695547 ]\n", + " [-0.38017781 -0.65028346 0.6577205 ]\n", + " [-0.36962829 -0.63047818 0.6825483 ]\n", + " [-0.35822431 -0.60960446 0.70714761]\n", + " [-0.34603415 -0.58773914 0.73131598]\n", + " [-0.33312748 -0.56497547 0.75487006]\n", + " [-0.31957724 -0.54142344 0.77764455]\n", + " [-0.37396935 -0.66326031 0.64825357]\n", + " [-0.34558214 -0.68072473 0.64590001]\n", + " [-0.31605584 -0.69769362 0.64290926]\n", + " [-0.28556305 -0.7140246 0.63923596]\n", + " [-0.2542785 -0.72958971 0.63485534]\n", + " [-0.22238122 -0.74427543 0.6297624 ]\n", + " [-0.304287 -0.53898927 0.78542981]\n", + " [-0.2741439 -0.55597883 0.78468635]\n", + " [-0.24299118 -0.57265365 0.78295791]\n", + " [-0.21099213 -0.58887556 0.78019734]\n", + " [-0.17831905 -0.60451807 0.77637634]\n", + " [-0.14515561 -0.61946611 0.77148661]\n", + " [-0.20665779 -0.74270376 0.63693303]\n", + " [-0.19393858 -0.72329449 0.6627465 ]\n", + " [-0.18069687 -0.7025708 0.68828984]\n", + " [-0.16699713 -0.68060269 0.71336662]\n", + " [-0.15290939 -0.65747952 0.7377936 ]\n", + " [-0.13851045 -0.63331208 0.76140046]\n", + " [-0.38368457 -0.65700682 0.6489439 ]\n", + " [-0.38368457 -0.65700682 0.6489439 ]\n", + " [-0.13336934 -0.62455677 0.76950729]\n", + " [-0.13336934 -0.62455677 0.76950729]\n", + " [-0.3704031 -0.65654307 0.65707894]\n", + " [-0.34185325 -0.67402916 0.65484429]\n", + " [-0.31217238 -0.69102625 0.65194411]\n", + " [-0.28153207 -0.70739204 0.6483334 ]\n", + " [-0.25010636 -0.72299833 0.64398775]\n", + " [-0.21807417 -0.7377312 0.63890245]\n", + " [-0.35969939 -0.63674165 0.68203843]\n", + " [-0.33072954 -0.65425326 0.68012547]\n", + " [-0.30065102 -0.67129805 0.67747169]\n", + " [-0.26963245 -0.68773393 0.67403293]\n", + " [-0.23784622 -0.70343213 0.66978535]\n", + " [-0.20547137 -0.71827754 0.66472468]\n", + " [-0.34816196 -0.61585158 0.70676027]\n", + " [-0.31883051 -0.63333486 0.70514826]\n", + " [-0.28841211 -0.65037862 0.70272762]\n", + " [-0.25707275 -0.66684117 0.6994544 ]\n", + " [-0.22498381 -0.68259343 0.6953046 ]\n", + " [-0.19232504 -0.69751935 0.69027374]\n", + " [-0.33585823 -0.5939495 0.73104258]\n", + " [-0.30622118 -0.61134972 0.72971235]\n", + " [-0.27551886 -0.62834249 0.72751294]\n", + " [-0.24391541 -0.64478684 0.72439989]\n", + " [-0.21158184 -0.66055385 0.72034835]\n", + " [-0.17869905 -0.67552698 0.71535302]\n", + " [-0.32285713 -0.57112862 0.75470218]\n", + " [-0.29296875 -0.58839087 0.75363485]\n", + " [-0.26203761 -0.6052822 0.75164469]\n", + " [-0.23022689 -0.6216627 0.74868623]\n", + " [-0.19770787 -0.63740412 0.74473323]\n", + " [-0.16466275 -0.65239013 0.73977922]\n", + " [-0.3092312 -0.54749922 0.77757358]\n", + " [-0.27914507 -0.56456929 0.77674934]\n", + " [-0.24804031 -0.58130923 0.77495522]\n", + " [-0.21608004 -0.59758039 0.77214448]\n", + " [-0.18343624 -0.61325576 0.76828935]\n", + " [-0.15029226 -0.62821984 0.763382 ]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:fp_optics: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:cartToSphere: vec: [[ 1.87972491e-01 8.32558741e-01 -5.21068408e-01]\n", + " [ 1.95125358e-01 8.45399813e-01 -4.97217509e-01]\n", + " [ 2.02263049e-01 8.57812083e-01 -4.72491364e-01]\n", + " [ 2.09348571e-01 8.69709182e-01 -4.46966571e-01]\n", + " [ 2.16346994e-01 8.81013461e-01 -4.20724685e-01]\n", + " [ 2.23225068e-01 8.91655556e-01 -3.93853956e-01]\n", + " [ 2.29951178e-01 9.01574593e-01 -3.66450146e-01]\n", + " [ 2.36495575e-01 9.10718860e-01 -3.38616305e-01]\n", + " [ 1.87972491e-01 8.32558741e-01 -5.21068408e-01]\n", + " [ 1.60401642e-01 8.40744767e-01 -5.17126243e-01]\n", + " [ 1.32809345e-01 8.48245962e-01 -5.12679691e-01]\n", + " [ 1.05305999e-01 8.55044287e-01 -5.07749854e-01]\n", + " [ 7.80036133e-02 8.61131875e-01 -5.02361752e-01]\n", + " [ 5.10160270e-02 8.66511165e-01 -4.96543820e-01]\n", + " [ 2.44596025e-02 8.71194977e-01 -4.90327482e-01]\n", + " [-1.54585405e-03 8.75206527e-01 -4.83746985e-01]\n", + " [ 2.36495575e-01 9.10718860e-01 -3.38616305e-01]\n", + " [ 2.07937134e-01 9.19109607e-01 -3.34663531e-01]\n", + " [ 1.79284490e-01 9.26649356e-01 -3.30421009e-01]\n", + " [ 1.50653609e-01 9.33320039e-01 -3.25909796e-01]\n", + " [ 1.22159702e-01 9.39114964e-01 -3.21154311e-01]\n", + " [ 9.39165147e-02 9.44038457e-01 -3.16182037e-01]\n", + " [ 6.60367385e-02 9.48105267e-01 -3.11023393e-01]\n", + " [ 3.86335792e-02 9.51339949e-01 -3.05711871e-01]\n", + " [-1.54585405e-03 8.75206527e-01 -4.83746985e-01]\n", + " [ 3.61872040e-03 8.87749135e-01 -4.60313347e-01]\n", + " [ 9.03401630e-03 8.99867831e-01 -4.36069115e-01]\n", + " [ 1.46611340e-02 9.11473709e-01 -4.11096982e-01]\n", + " [ 2.04650675e-02 9.22487992e-01 -3.85482925e-01]\n", + " [ 2.64141419e-02 9.32841696e-01 -3.59316940e-01]\n", + " [ 3.24793131e-02 9.42475516e-01 -3.32693547e-01]\n", + " [ 3.86335792e-02 9.51339949e-01 -3.05711871e-01]\n", + " [ 1.90996066e-01 8.38233542e-01 -5.10769059e-01]\n", + " [ 1.99756284e-01 8.53694873e-01 -4.80939175e-01]\n", + " [ 2.08456872e-01 8.68425251e-01 -4.49870332e-01]\n", + " [ 2.17032699e-01 8.82278153e-01 -4.17710507e-01]\n", + " [ 2.25422559e-01 8.95125905e-01 -3.84622260e-01]\n", + " [ 2.33569009e-01 9.06860203e-01 -3.50784964e-01]\n", + " [ 1.75985189e-01 8.36255155e-01 -5.19332774e-01]\n", + " [ 1.42165019e-01 8.45830385e-01 -5.14159574e-01]\n", + " [ 1.08422107e-01 8.54357769e-01 -5.08249397e-01]\n", + " [ 7.49619962e-02 8.61818590e-01 -5.01646706e-01]\n", + " [ 4.19943416e-02 8.68217346e-01 -4.94403797e-01]\n", + " [ 9.73474557e-03 8.73581958e-01 -4.86579693e-01]\n", + " [ 2.24040965e-01 9.14450364e-01 -3.37025485e-01]\n", + " [ 1.88961874e-01 9.24164691e-01 -3.31983485e-01]\n", + " [ 1.53856578e-01 9.32581642e-01 -3.26526621e-01]\n", + " [ 1.18937560e-01 9.39684174e-01 -3.20698473e-01]\n", + " [ 8.44142655e-02 9.45480176e-01 -3.14549627e-01]\n", + " [ 5.04942558e-02 9.50000897e-01 -3.08137348e-01]\n", + " [ 7.60795807e-04 8.80708783e-01 -4.73657535e-01]\n", + " [ 7.26557188e-03 8.95808348e-01 -4.44381161e-01]\n", + " [ 1.41076502e-02 9.10181651e-01 -4.13969003e-01]\n", + " [ 2.12209855e-02 9.23679484e-01 -3.82577940e-01]\n", + " [ 2.85471881e-02 9.36174834e-01 -3.50373711e-01]\n", + " [ 3.60336578e-02 9.47562582e-01 -3.17532250e-01]\n", + " [ 1.87902808e-01 8.32632409e-01 -5.20975821e-01]\n", + " [ 1.87902808e-01 8.32632409e-01 -5.20975821e-01]\n", + " [ 3.87051767e-02 9.51301314e-01 -3.05823019e-01]\n", + " [ 3.87051767e-02 9.51301314e-01 -3.05823019e-01]\n", + " [ 1.79031072e-01 8.41869176e-01 -5.09120974e-01]\n", + " [ 1.45070984e-01 8.51466094e-01 -5.03944343e-01]\n", + " [ 1.11180177e-01 8.59993087e-01 -4.98047045e-01]\n", + " [ 7.75643476e-02 8.67431300e-01 -4.91474020e-01]\n", + " [ 4.44326976e-02 8.73785137e-01 -4.84278091e-01]\n", + " [ 1.19998869e-02 8.79082435e-01 -4.76518704e-01]\n", + " [ 1.87671939e-01 8.57362778e-01 -4.79278947e-01]\n", + " [ 1.53358516e-01 8.67012246e-01 -4.74100128e-01]\n", + " [ 1.19093533e-01 8.75533932e-01 -4.68248934e-01]\n", + " [ 8.50835860e-02 8.82908794e-01 -4.61771421e-01]\n", + " [ 5.15369560e-02 8.89141264e-01 -4.54721623e-01]\n", + " [ 1.86656710e-02 8.94259185e-01 -4.47160042e-01]\n", + " [ 1.96275469e-01 8.72119033e-01 -4.48201219e-01]\n", + " [ 1.61673017e-01 8.81807430e-01 -4.43032157e-01]\n", + " [ 1.27100175e-01 8.90316972e-01 -4.37242764e-01]\n", + " [ 9.27649702e-02 8.97628761e-01 -4.30879645e-01]\n", + " [ 5.88753681e-02 9.03747706e-01 -4.23997375e-01]\n", + " [ 2.56412099e-02 9.08702107e-01 -4.16656945e-01]\n", + " [ 2.04777180e-01 8.85991216e-01 -4.16035902e-01]\n", + " [ 1.69951603e-01 8.95704405e-01 -4.10889366e-01]\n", + " [ 1.35138132e-01 9.04194551e-01 -4.05178849e-01]\n", + " [ 1.00546444e-01 9.11443178e-01 -3.98950806e-01]\n", + " [ 6.63847047e-02 9.17456024e-01 -3.92259500e-01]\n", + " [ 3.28612583e-02 9.22262210e-01 -3.85165618e-01]\n", + " [ 2.13116638e-01 8.98851441e-01 -3.82945670e-01]\n", + " [ 1.78135914e-01 9.08574957e-01 -3.77834810e-01]\n", + " [ 1.43150624e-01 9.17038518e-01 -3.72220708e-01]\n", + " [ 1.08371957e-01 9.24224244e-01 -3.66148968e-01]\n", + " [ 7.40085861e-02 9.30138847e-01 -3.59672705e-01]\n", + " [ 4.02680882e-02 9.34812434e-01 -3.52851518e-01]\n", + " [ 2.21237076e-01 9.10591237e-01 -3.49109948e-01]\n", + " [ 1.86171115e-01 9.20310518e-01 -3.44047768e-01]\n", + " [ 1.51084498e-01 9.28740738e-01 -3.38547067e-01]\n", + " [ 1.16189479e-01 9.35864646e-01 -3.32652025e-01]\n", + " [ 8.16953151e-02 9.41689865e-01 -3.26413960e-01]\n", + " [ 4.78094724e-02 9.46247394e-01 -3.19890801e-01]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:fp_optics: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:cartToSphere: vec: [[ 0.57096191 0.45010393 -0.68659227]\n", + " [ 0.54871775 0.45154178 -0.70357576]\n", + " [ 0.52558843 0.45264354 -0.72032675]\n", + " [ 0.50164213 0.45338499 -0.73674773]\n", + " [ 0.47695306 0.45374661 -0.75274816]\n", + " [ 0.45160272 0.45371364 -0.76824405]\n", + " [ 0.42568018 0.45327637 -0.7831583 ]\n", + " [ 0.39928167 0.45243029 -0.79742146]\n", + " [ 0.57096191 0.45010393 -0.68659227]\n", + " [ 0.57756809 0.42404984 -0.69756493]\n", + " [ 0.58359134 0.3977287 -0.70797812]\n", + " [ 0.58901278 0.37124854 -0.71780113]\n", + " [ 0.59381847 0.34472148 -0.72701219]\n", + " [ 0.59799895 0.31826377 -0.73559869]\n", + " [ 0.60154843 0.29199641 -0.74355738]\n", + " [ 0.60446411 0.26604641 -0.75089443]\n", + " [ 0.39928167 0.45243029 -0.79742146]\n", + " [ 0.40622956 0.42547482 -0.80867096]\n", + " [ 0.41278898 0.39822359 -0.81916008]\n", + " [ 0.41893923 0.37078939 -0.82885774]\n", + " [ 0.42466478 0.34328761 -0.83774306]\n", + " [ 0.42995532 0.31583523 -0.84580525]\n", + " [ 0.43480548 0.28855066 -0.85304321]\n", + " [ 0.43921445 0.26155454 -0.85946489]\n", + " [ 0.60446411 0.26604641 -0.75089443]\n", + " [ 0.58319308 0.26569302 -0.76765425]\n", + " [ 0.56101328 0.26527488 -0.78415135]\n", + " [ 0.53799896 0.26476707 -0.80028465]\n", + " [ 0.51422753 0.26415118 -0.81596213]\n", + " [ 0.4897808 0.26341465 -0.83110017]\n", + " [ 0.46474566 0.26255003 -0.84562341]\n", + " [ 0.43921445 0.26155454 -0.85946489]\n", + " [ 0.56140003 0.45068155 -0.69405774]\n", + " [ 0.5335342 0.45222018 -0.71472944]\n", + " [ 0.50440594 0.45322959 -0.73495414]\n", + " [ 0.4741493 0.45367187 -0.75456231]\n", + " [ 0.44291431 0.45351991 -0.77339938]\n", + " [ 0.41086799 0.45275799 -0.79132654]\n", + " [ 0.5738381 0.43878892 -0.69150135]\n", + " [ 0.58154561 0.40666303 -0.70457781]\n", + " [ 0.58835829 0.37424288 -0.71678224]\n", + " [ 0.59424849 0.34173319 -0.72807085]\n", + " [ 0.59919866 0.30934802 -0.73842046]\n", + " [ 0.60319944 0.27731259 -0.74782897]\n", + " [ 0.40244815 0.44072465 -0.80236978]\n", + " [ 0.41070495 0.40747514 -0.81565033]\n", + " [ 0.41835694 0.37389312 -0.82775685]\n", + " [ 0.42537338 0.34018999 -0.83864668]\n", + " [ 0.43173527 0.30658108 -0.84829989]\n", + " [ 0.43743463 0.27328523 -0.85671823]\n", + " [ 0.59529704 0.26598691 -0.7582034 ]\n", + " [ 0.5686059 0.26551491 -0.77858151]\n", + " [ 0.54062322 0.26491993 -0.7984635 ]\n", + " [ 0.51149015 0.26416542 -0.81767626]\n", + " [ 0.48135734 0.26322813 -0.83606583]\n", + " [ 0.45038704 0.26209634 -0.85349694]\n", + " [ 0.57091099 0.45002086 -0.68668906]\n", + " [ 0.57091099 0.45002086 -0.68668906]\n", + " [ 0.43928817 0.26164985 -0.8593982 ]\n", + " [ 0.43928817 0.26164985 -0.8593982 ]\n", + " [ 0.56433989 0.43940526 -0.69888733]\n", + " [ 0.57209285 0.40714951 -0.71199652]\n", + " [ 0.57896484 0.37459374 -0.72420939]\n", + " [ 0.5849285 0.341943 -0.73548191]\n", + " [ 0.58996694 0.30941108 -0.74579071]\n", + " [ 0.59407172 0.2772222 -0.75513353]\n", + " [ 0.53650666 0.44083238 -0.71960226]\n", + " [ 0.54438018 0.40825044 -0.73279041]\n", + " [ 0.55141433 0.375355 -0.74501735]\n", + " [ 0.5575822 0.3423524 -0.75623867]\n", + " [ 0.56286817 0.30945619 -0.76643088]\n", + " [ 0.56726587 0.27688826 -0.7755916 ]\n", + " [ 0.50740574 0.44175153 -0.73986147]\n", + " [ 0.51538799 0.40890609 -0.75310758]\n", + " [ 0.52257672 0.37573739 -0.76533326]\n", + " [ 0.52894482 0.34245338 -0.77649408]\n", + " [ 0.53447701 0.30926796 -0.786567 ]\n", + " [ 0.53916806 0.27640149 -0.79555013]\n", + " [ 0.47717103 0.44212543 -0.75949517]\n", + " [ 0.48525011 0.40908087 -0.77277757]\n", + " [ 0.49258633 0.37570666 -0.78498612]\n", + " [ 0.49915185 0.34221232 -0.79607673]\n", + " [ 0.50493093 0.30881232 -0.80602712]\n", + " [ 0.5099184 0.27572617 -0.81483637]\n", + " [ 0.44595242 0.4419276 -0.77834853]\n", + " [ 0.45411595 0.40875012 -0.79164515]\n", + " [ 0.4615922 0.37523973 -0.80382074]\n", + " [ 0.46835222 0.34160716 -0.81483173]\n", + " [ 0.47437915 0.30806743 -0.82465682]\n", + " [ 0.47966703 0.27483962 -0.8332963 ]\n", + " [ 0.41391674 0.44114282 -0.79628258]\n", + " [ 0.42215163 0.40790004 -0.80957122]\n", + " [ 0.42975944 0.37432412 -0.82169841]\n", + " [ 0.43670994 0.34062641 -0.83262121]\n", + " [ 0.44298469 0.30702223 -0.84231937]\n", + " [ 0.44857634 0.27373044 -0.85079428]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:fp_optics: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:cartToSphere: vec: [[-5.23970571e-01 8.31377059e-01 -1.85113552e-01]\n", + " [-5.32195716e-01 8.31684459e-01 -1.58330924e-01]\n", + " [-5.40153498e-01 8.31325963e-01 -1.30886754e-01]\n", + " [-5.47788362e-01 8.30266508e-01 -1.02885550e-01]\n", + " [-5.55050883e-01 8.28479639e-01 -7.44312089e-02]\n", + " [-5.61897141e-01 8.25947670e-01 -4.56294757e-02]\n", + " [-5.68288442e-01 8.22662152e-01 -1.65900566e-02]\n", + " [-5.74191573e-01 8.18624432e-01 1.25728587e-02]\n", + " [-5.23970571e-01 8.31377059e-01 -1.85113552e-01]\n", + " [-5.46902161e-01 8.14909263e-01 -1.91887778e-01]\n", + " [-5.69330510e-01 7.97813415e-01 -1.98384790e-01]\n", + " [-5.91175342e-01 7.80166243e-01 -2.04578465e-01]\n", + " [-6.12363290e-01 7.62053079e-01 -2.10443115e-01]\n", + " [-6.32828057e-01 7.43567560e-01 -2.15953548e-01]\n", + " [-6.52510660e-01 7.24810965e-01 -2.21085737e-01]\n", + " [-6.71360184e-01 7.05890556e-01 -2.25818571e-01]\n", + " [-5.74191573e-01 8.18624432e-01 1.25728587e-02]\n", + " [-5.97862972e-01 8.01580018e-01 5.41676516e-03]\n", + " [-6.20919988e-01 7.83872066e-01 -1.71809607e-03]\n", + " [-6.43279252e-01 7.65581023e-01 -8.80349808e-03]\n", + " [-6.64867579e-01 7.46793865e-01 -1.58121875e-02]\n", + " [-6.85621400e-01 7.27603737e-01 -2.27177679e-02]\n", + " [-7.05485022e-01 7.08110851e-01 -2.94941727e-02]\n", + " [-7.24408704e-01 6.88424095e-01 -3.61150233e-02]\n", + " [-6.71360184e-01 7.05890556e-01 -2.25818571e-01]\n", + " [-6.80457279e-01 7.04871843e-01 -2.00333664e-01]\n", + " [-6.89134296e-01 7.03399369e-01 -1.74135723e-01]\n", + " [-6.97333105e-01 7.01442433e-01 -1.47326354e-01]\n", + " [-7.05002065e-01 6.98977365e-01 -1.20011384e-01]\n", + " [-7.12095891e-01 6.95988809e-01 -9.22985359e-02]\n", + " [-7.18575607e-01 6.92470250e-01 -6.42965694e-02]\n", + " [-7.24408704e-01 6.88424095e-01 -3.61150233e-02]\n", + " [-5.27665301e-01 8.31534972e-01 -1.73548033e-01]\n", + " [-5.37574379e-01 8.31468241e-01 -1.40265286e-01]\n", + " [-5.47025821e-01 8.30365622e-01 -1.06092818e-01]\n", + " [-5.55926111e-01 8.28174846e-01 -7.12220813e-02]\n", + " [-5.64194357e-01 8.24863412e-01 -3.58480023e-02]\n", + " [-5.71761566e-01 8.20419820e-01 -1.74461027e-04]\n", + " [-5.34054114e-01 8.24280721e-01 -1.88009300e-01]\n", + " [-5.61831896e-01 8.03665542e-01 -1.96129084e-01]\n", + " [-5.88773153e-01 7.82182223e-01 -2.03806636e-01]\n", + " [-6.14739939e-01 7.59984297e-01 -2.10994492e-01]\n", + " [-6.39610224e-01 7.37244078e-01 -2.17646345e-01]\n", + " [-6.63278707e-01 7.14150652e-01 -2.23719027e-01]\n", + " [-5.84562862e-01 8.11294519e-01 9.35221948e-03]\n", + " [-6.13172384e-01 7.89948908e-01 5.92582514e-04]\n", + " [-6.40775185e-01 7.67685770e-01 -8.10682108e-03]\n", + " [-6.67232271e-01 7.44662581e-01 -1.66954070e-02]\n", + " [-6.92426400e-01 7.21050926e-01 -2.51245239e-02]\n", + " [-7.16257572e-01 6.97038829e-01 -3.33460787e-02]\n", + " [-6.75311149e-01 7.05565200e-01 -2.14785010e-01]\n", + " [-6.86185557e-01 7.04016575e-01 -1.83057488e-01]\n", + " [-6.96370588e-01 7.01755009e-01 -1.50359274e-01]\n", + " [-7.05768479e-01 6.98733903e-01 -1.16883643e-01]\n", + " [-7.14295859e-01 6.94925041e-01 -8.28288220e-02]\n", + " [-7.21883641e-01 6.90320142e-01 -4.83953664e-02]\n", + " [-5.24078266e-01 8.31324032e-01 -1.85046821e-01]\n", + " [-5.24078266e-01 8.31324032e-01 -1.85046821e-01]\n", + " [-7.24326831e-01 6.88506341e-01 -3.61892329e-02]\n", + " [-7.24326831e-01 6.88506341e-01 -3.61892329e-02]\n", + " [-5.37679444e-01 8.24463498e-01 -1.76524095e-01]\n", + " [-5.65556083e-01 8.03761793e-01 -1.84697852e-01]\n", + " [-5.92581625e-01 7.82182275e-01 -1.92452351e-01]\n", + " [-6.18617914e-01 7.59878750e-01 -1.99740235e-01]\n", + " [-6.43542836e-01 7.37023906e-01 -2.06514843e-01]\n", + " [-6.67250769e-01 7.13807907e-01 -2.12731481e-01]\n", + " [-5.47684694e-01 8.24326055e-01 -1.43276066e-01]\n", + " [-5.75808422e-01 8.03408078e-01 -1.51591955e-01]\n", + " [-6.03042410e-01 7.81589731e-01 -1.59553578e-01]\n", + " [-6.29247974e-01 7.59025541e-01 -1.67114377e-01]\n", + " [-6.54303248e-01 7.35888494e-01 -1.74227966e-01]\n", + " [-6.78102523e-01 7.12370083e-01 -1.80847540e-01]\n", + " [-5.57213991e-01 8.23166206e-01 -1.09132791e-01]\n", + " [-5.85535661e-01 8.02074813e-01 -1.17575438e-01]\n", + " [-6.12932780e-01 7.80067716e-01 -1.25728942e-01]\n", + " [-6.39266229e-01 7.57300323e-01 -1.33547404e-01]\n", + " [-6.64414997e-01 7.33945393e-01 -1.40985361e-01]\n", + " [-6.88274352e-01 7.10194082e-01 -1.47995888e-01]\n", + " [-5.66173413e-01 8.20931970e-01 -7.42857041e-02]\n", + " [-5.94642757e-01 7.99710850e-01 -8.28404951e-02]\n", + " [-6.22156849e-01 7.77565728e-01 -9.11723277e-02]\n", + " [-6.48576309e-01 7.54653015e-01 -9.92350621e-02]\n", + " [-6.73781352e-01 7.31145132e-01 -1.06983577e-01]\n", + " [-6.97668867e-01 7.07232178e-01 -1.14371315e-01]\n", + " [-5.74481395e-01 8.17591350e-01 -3.89295792e-02]\n", + " [-6.03046518e-01 7.96285660e-01 -4.75819733e-02]\n", + " [-6.30630538e-01 7.74054406e-01 -5.60794076e-02]\n", + " [-6.57094059e-01 7.51054816e-01 -6.43743765e-02]\n", + " [-6.82318585e-01 7.27458971e-01 -7.24209458e-02]\n", + " [-7.06202702e-01 7.03455845e-01 -8.01724277e-02]\n", + " [-5.82068244e-01 8.13133371e-01 -3.26804902e-03]\n", + " [-6.10675740e-01 7.91789794e-01 -1.20026323e-02]\n", + " [-6.38282064e-01 7.69525503e-01 -2.06520536e-02]\n", + " [-6.64748075e-01 7.46498028e-01 -2.91665998e-02]\n", + " [-6.89956295e-01 7.22879089e-01 -3.74984467e-02]\n", + " [-7.13806504e-01 6.98856864e-01 -4.55999816e-02]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:fp_optics: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:cartToSphere: vec: [[-0.20241202 -0.42756806 0.88103061]\n", + " [-0.229079 -0.43054159 0.87301589]\n", + " [-0.25609282 -0.43322747 0.86413565]\n", + " [-0.28333569 -0.43559598 0.85438693]\n", + " [-0.31069174 -0.43762181 0.84377591]\n", + " [-0.33804598 -0.43928416 0.83231866]\n", + " [-0.36528436 -0.44056687 0.82004157]\n", + " [-0.39229454 -0.44145874 0.80698152]\n", + " [-0.20241202 -0.42756806 0.88103061]\n", + " [-0.20865907 -0.40136549 0.89183358]\n", + " [-0.21480568 -0.37492217 0.90182697]\n", + " [-0.22083303 -0.34834656 0.91098158]\n", + " [-0.22672648 -0.32175106 0.91927763]\n", + " [-0.23247608 -0.29525213 0.9267044 ]\n", + " [-0.23807706 -0.26897095 0.93325985]\n", + " [-0.24353032 -0.24303473 0.93895 ]\n", + " [-0.39229454 -0.44145874 0.80698152]\n", + " [-0.39860649 -0.41433292 0.8181938 ]\n", + " [-0.40454274 -0.38692316 0.8286348 ]\n", + " [-0.41008502 -0.35934281 0.83827383]\n", + " [-0.41522017 -0.3317076 0.84709047]\n", + " [-0.4199401 -0.30413475 0.85507448]\n", + " [-0.42424162 -0.27674275 0.86222532]\n", + " [-0.42812611 -0.24965226 0.86855154]\n", + " [-0.24353032 -0.24303473 0.93895 ]\n", + " [-0.26952759 -0.24415148 0.93152828]\n", + " [-0.29584887 -0.24525259 0.92321428]\n", + " [-0.32236981 -0.24630712 0.91400794]\n", + " [-0.34897132 -0.24729062 0.90391723]\n", + " [-0.37553835 -0.24818437 0.89295883]\n", + " [-0.40195932 -0.24897466 0.88115851]\n", + " [-0.42812611 -0.24965226 0.86855154]\n", + " [-0.21401018 -0.42880838 0.87768047]\n", + " [-0.24694174 -0.4322624 0.86727677]\n", + " [-0.28027687 -0.4352545 0.85556905]\n", + " [-0.31380158 -0.43773628 0.84256485]\n", + " [-0.34730417 -0.43966944 0.82829378]\n", + " [-0.38057534 -0.44102632 0.81280883]\n", + " [-0.20523728 -0.41619027 0.88581224]\n", + " [-0.21282876 -0.38390001 0.89851249]\n", + " [-0.22025004 -0.35135543 0.90996664]\n", + " [-0.2274724 -0.31876182 0.92013434]\n", + " [-0.23447756 -0.28633366 0.92899586]\n", + " [-0.2412591 -0.25429646 0.93655078]\n", + " [-0.39499955 -0.42967145 0.8120085 ]\n", + " [-0.40248554 -0.39622105 0.82523589]\n", + " [-0.40938869 -0.36245648 0.83727308]\n", + " [-0.41568263 -0.32858986 0.84807821]\n", + " [-0.42135245 -0.29483695 0.85763237]\n", + " [-0.42639419 -0.26141673 0.86593839]\n", + " [-0.25479914 -0.24360972 0.93580538]\n", + " [-0.28689638 -0.24497339 0.92610934]\n", + " [-0.3193561 -0.24628185 0.91507209]\n", + " [-0.35195693 -0.24748745 0.90270498]\n", + " [-0.38448703 -0.24855563 0.88903871]\n", + " [-0.41674239 -0.24946305 0.87412469]\n", + " [-0.20252399 -0.4274896 0.88104295]\n", + " [-0.20252399 -0.4274896 0.88104295]\n", + " [-0.4280246 -0.24974213 0.86857574]\n", + " [-0.4280246 -0.24974213 0.86857574]\n", + " [-0.21673205 -0.41746411 0.88246866]\n", + " [-0.22432938 -0.3850415 0.89522029]\n", + " [-0.23172895 -0.35235762 0.90672256]\n", + " [-0.23890166 -0.31961805 0.91693527]\n", + " [-0.24582872 -0.28703693 0.9258391 ]\n", + " [-0.25250304 -0.25483872 0.93343422]\n", + " [-0.24968464 -0.42080502 0.87211279]\n", + " [-0.25729026 -0.38804938 0.88499684]\n", + " [-0.26462177 -0.35501552 0.89662662]\n", + " [-0.27164945 -0.32191027 0.90696216]\n", + " [-0.27835364 -0.2889474 0.91598507]\n", + " [-0.28472603 -0.25634889 0.9236971 ]\n", + " [-0.28303584 -0.42370538 0.86044434]\n", + " [-0.29063675 -0.39067962 0.8734413 ]\n", + " [-0.29788919 -0.35736228 0.88518599]\n", + " [-0.30476346 -0.32396181 0.89563831]\n", + " [-0.31124 -0.29069224 0.90478046]\n", + " [-0.31731028 -0.25777398 0.91261534]\n", + " [-0.31657146 -0.42611742 0.84747062]\n", + " [-0.32415409 -0.39288612 0.86056064]\n", + " [-0.33131564 -0.35935307 0.87240777]\n", + " [-0.338027 -0.32572833 0.88297157]\n", + " [-0.34426949 -0.29222655 0.89223437]\n", + " [-0.35003533 -0.25906722 0.90019967]\n", + " [-0.35007971 -0.42800348 0.83322099]\n", + " [-0.35763034 -0.39463306 0.84638365]\n", + " [-0.36468931 -0.36095367 0.85832054]\n", + " [-0.37122852 -0.32717665 0.86899069]\n", + " [-0.37723071 -0.2935173 0.87837611]\n", + " [-0.38268953 -0.26019468 0.88648037]\n", + " [-0.38335118 -0.42933641 0.8177482 ]\n", + " [-0.39085634 -0.39589476 0.83096249]\n", + " [-0.39780189 -0.3621398 0.84297593]\n", + " [-0.40416098 -0.32828356 0.85374692]\n", + " [-0.40991806 -0.29454174 0.86325682]\n", + " [-0.41506855 -0.26113331 0.87150874]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:fp_optics: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:cartToSphere: vec: [[-0.27584638 0.83552548 0.47519044]\n", + " [-0.27489703 0.82155811 0.49947362]\n", + " [-0.27370574 0.80664895 0.52383455]\n", + " [-0.2722654 0.79082253 0.5481526 ]\n", + " [-0.27057162 0.77411073 0.57231423]\n", + " [-0.26862288 0.75655417 0.59621098]\n", + " [-0.26642079 0.73820383 0.6197379 ]\n", + " [-0.26397031 0.71912174 0.64279359]\n", + " [-0.27584638 0.83552548 0.47519044]\n", + " [-0.30362388 0.82773536 0.47187574]\n", + " [-0.33105512 0.8192274 0.46826165]\n", + " [-0.35803627 0.8100432 0.4643706 ]\n", + " [-0.38446724 0.80023229 0.4602317 ]\n", + " [-0.41025195 0.78985199 0.45588065]\n", + " [-0.43529889 0.77896721 0.45135902]\n", + " [-0.45952285 0.76765011 0.4467125 ]\n", + " [-0.26397031 0.71912174 0.64279359]\n", + " [-0.2927035 0.71113326 0.63922934]\n", + " [-0.32108024 0.70253091 0.63510456]\n", + " [-0.3489921 0.69335788 0.63044378]\n", + " [-0.37633812 0.68366423 0.62527821]\n", + " [-0.40302441 0.67350644 0.61964538]\n", + " [-0.42896218 0.66294768 0.6135893 ]\n", + " [-0.4540653 0.65205861 0.60716083]\n", + " [-0.45952285 0.76765011 0.4467125 ]\n", + " [-0.46016 0.75338967 0.46974118]\n", + " [-0.46033686 0.73832011 0.49292331]\n", + " [-0.46004185 0.72246777 0.51614127]\n", + " [-0.45926838 0.70586771 0.53928038]\n", + " [-0.45801361 0.68856346 0.56223118]\n", + " [-0.45627797 0.67060698 0.58489033]\n", + " [-0.4540653 0.65205861 0.60716083]\n", + " [-0.27555748 0.82952727 0.48574952]\n", + " [-0.27423323 0.8117725 0.51557885]\n", + " [-0.27253803 0.79262678 0.54540426]\n", + " [-0.27046268 0.77214571 0.57501387]\n", + " [-0.26800439 0.75040428 0.6042078 ]\n", + " [-0.26516752 0.72750092 0.63279427]\n", + " [-0.28799079 0.83217331 0.4738659 ]\n", + " [-0.32181634 0.82213791 0.46959929]\n", + " [-0.35501818 0.81106476 0.46490433]\n", + " [-0.3874105 0.79904179 0.45983184]\n", + " [-0.41881644 0.78617447 0.45444746]\n", + " [-0.44907004 0.77258534 0.44882958]\n", + " [-0.27654347 0.71578309 0.64123185]\n", + " [-0.31153313 0.70557442 0.63648398]\n", + " [-0.34587885 0.69448569 0.63091794]\n", + " [-0.37939161 0.68260625 0.62458843]\n", + " [-0.41189833 0.67004011 0.61756458]\n", + " [-0.44323674 0.65690664 0.60993021]\n", + " [-0.45977459 0.76157269 0.45674321]\n", + " [-0.46024692 0.74354814 0.48508653]\n", + " [-0.46001586 0.7243333 0.51354326]\n", + " [-0.4590673 0.70398912 0.54190085]\n", + " [-0.45739594 0.68259573 0.56995791]\n", + " [-0.45500402 0.6602523 0.59752677]\n", + " [-0.275939 0.83545396 0.47526239]\n", + " [-0.275939 0.83545396 0.47526239]\n", + " [-0.45398934 0.65216069 0.60710799]\n", + " [-0.45398934 0.65216069 0.60710799]\n", + " [-0.28765645 0.82623432 0.48434556]\n", + " [-0.32161379 0.81616634 0.48003862]\n", + " [-0.35494433 0.80506418 0.47527486]\n", + " [-0.38746202 0.79301603 0.47010505]\n", + " [-0.41898973 0.78012747 0.46459524]\n", + " [-0.44936041 0.76652106 0.45882533]\n", + " [-0.2864508 0.80844902 0.51415574]\n", + " [-0.32073969 0.79830361 0.50974249]\n", + " [-0.35439389 0.78713829 0.50479529]\n", + " [-0.3872269 0.77504226 0.49936442]\n", + " [-0.4190618 0.76212155 0.49351591]\n", + " [-0.44973052 0.74849861 0.48733181]\n", + " [-0.28485189 0.78927919 0.54396486]\n", + " [-0.31941022 0.77907875 0.53945659]\n", + " [-0.35332727 0.76787906 0.5343422 ]\n", + " [-0.38641607 0.75577039 0.52867168]\n", + " [-0.41850082 0.74285915 0.52251062]\n", + " [-0.44941442 0.72926756 0.51594138]\n", + " [-0.28285002 0.76878059 0.57356104]\n", + " [-0.31761462 0.75854855 0.56896841]\n", + " [-0.35173329 0.74734469 0.5637017 ]\n", + " [-0.38501837 0.73525994 0.55781151]\n", + " [-0.41729538 0.72240074 0.55136352]\n", + " [-0.44839912 0.70888879 0.54444 ]\n", + " [-0.28044161 0.74702851 0.60274448]\n", + " [-0.31534743 0.73678939 0.59807808]\n", + " [-0.34960553 0.72561289 0.59267352]\n", + " [-0.38302756 0.71358984 0.58658284]\n", + " [-0.41544002 0.70082607 0.57987275]\n", + " [-0.44667953 0.6874424 0.57262583]\n", + " [-0.27763015 0.72412161 0.63132352]\n", + " [-0.31261002 0.71390057 0.62659473]\n", + " [-0.3469442 0.70278339 0.62106781]\n", + " [-0.3804438 0.69085995 0.61479675]\n", + " [-0.41293574 0.6782348 0.60785 ]\n", + " [-0.44425766 0.6650277 0.600311 ]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:fp_optics: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:cartToSphere: vec: [[ 0.14915249 -0.52399122 0.83856231]\n", + " [ 0.12975147 -0.50837084 0.85130702]\n", + " [ 0.10985686 -0.49202803 0.86362022]\n", + " [ 0.08954261 -0.47500576 0.87541513]\n", + " [ 0.06888357 -0.4573519 0.88661395]\n", + " [ 0.04795683 -0.43912042 0.89714737]\n", + " [ 0.02684234 -0.42037213 0.90695466]\n", + " [ 0.00562273 -0.40117473 0.91598429]\n", + " [ 0.14915249 -0.52399122 0.83856231]\n", + " [ 0.16955034 -0.50489913 0.84636254]\n", + " [ 0.18967312 -0.48538996 0.85347565]\n", + " [ 0.20944226 -0.46554418 0.8598852 ]\n", + " [ 0.22878018 -0.44544625 0.86558493]\n", + " [ 0.24760989 -0.4251844 0.87057887]\n", + " [ 0.26585451 -0.40485056 0.87488137]\n", + " [ 0.28343694 -0.38454054 0.87851697]\n", + " [ 0.00562273 -0.40117473 0.91598429]\n", + " [ 0.02683318 -0.38149809 0.92398008]\n", + " [ 0.04794967 -0.36154026 0.93112269]\n", + " [ 0.06888931 -0.34138479 0.9373957 ]\n", + " [ 0.08957175 -0.32111739 0.942794 ]\n", + " [ 0.10991957 -0.3008254 0.94732347]\n", + " [ 0.12985772 -0.28059802 0.95100038]\n", + " [ 0.14931236 -0.26052729 0.9538508 ]\n", + " [ 0.28343694 -0.38454054 0.87851697]\n", + " [ 0.26590867 -0.36812099 0.89094305]\n", + " [ 0.24770782 -0.35118339 0.90294577]\n", + " [ 0.22891154 -0.33377439 0.91443653]\n", + " [ 0.20959666 -0.31594539 0.92533656]\n", + " [ 0.18984005 -0.2977528 0.93557684]\n", + " [ 0.16971914 -0.27925803 0.94509807]\n", + " [ 0.14931236 -0.26052729 0.9538508 ]\n", + " [ 0.14082942 -0.51720734 0.84419408]\n", + " [ 0.11671094 -0.49757131 0.85953554]\n", + " [ 0.09192438 -0.4768925 0.87414155]\n", + " [ 0.06660711 -0.45525694 0.8878652 ]\n", + " [ 0.0409011 -0.43276409 0.90057889]\n", + " [ 0.01495468 -0.40952879 0.91217462]\n", + " [ 0.15800966 -0.51567085 0.84209057]\n", + " [ 0.1828351 -0.49198052 0.85119122]\n", + " [ 0.20716931 -0.46774329 0.85924216]\n", + " [ 0.23086903 -0.44311302 0.86622765]\n", + " [ 0.25379248 -0.41825213 0.87215511]\n", + " [ 0.27579805 -0.39333146 0.87705519]\n", + " [ 0.01494935 -0.39270178 0.91954436]\n", + " [ 0.04089207 -0.36838653 0.92877295]\n", + " [ 0.06661091 -0.34373154 0.93670252]\n", + " [ 0.09195686 -0.31889374 0.94331899]\n", + " [ 0.11678731 -0.29403395 0.9486331 ]\n", + " [ 0.14096471 -0.2693175 0.95267887]\n", + " [ 0.27582274 -0.37751745 0.88396967]\n", + " [ 0.25387656 -0.35703981 0.89892673]\n", + " [ 0.23099693 -0.33582971 0.91315871]\n", + " [ 0.20732545 -0.31397978 0.92651652]\n", + " [ 0.18300366 -0.29159386 0.93887309]\n", + " [ 0.15817455 -0.26878704 0.95012333]\n", + " [ 0.14915721 -0.52387458 0.83863433]\n", + " [ 0.14915721 -0.52387458 0.83863433]\n", + " [ 0.14931692 -0.26065993 0.95381385]\n", + " [ 0.14931692 -0.26065993 0.95381385]\n", + " [ 0.1497181 -0.50897203 0.84766264]\n", + " [ 0.17465703 -0.48519807 0.85678338]\n", + " [ 0.19912053 -0.46088626 0.86483228]\n", + " [ 0.22296545 -0.43619093 0.87179349]\n", + " [ 0.24605043 -0.41127466 0.87767439]\n", + " [ 0.26823442 -0.38630819 0.88250568]\n", + " [ 0.12569126 -0.48925686 0.86303501]\n", + " [ 0.15092054 -0.46527686 0.87220435]\n", + " [ 0.17571898 -0.44078731 0.88024394]\n", + " [ 0.19994331 -0.41594389 0.88713773]\n", + " [ 0.22345335 -0.39090963 0.8928932 ]\n", + " [ 0.24610984 -0.36585482 0.89754119]\n", + " [ 0.10097987 -0.46851438 0.87766585]\n", + " [ 0.12645341 -0.44437496 0.88687115]\n", + " [ 0.15154108 -0.41975838 0.89489564]\n", + " [ 0.17609893 -0.39482154 0.90172341]\n", + " [ 0.19998734 -0.3697277 0.90736238]\n", + " [ 0.22306875 -0.34464641 0.91184384]\n", + " [ 0.0757209 -0.44683107 0.89140806]\n", + " [ 0.10139188 -0.42258035 0.90063618]\n", + " [ 0.12672323 -0.39788904 0.90863939]\n", + " [ 0.15156971 -0.37291482 0.91540219]\n", + " [ 0.17579155 -0.34782079 0.92093324]\n", + " [ 0.19925217 -0.32277544 0.92526461]\n", + " [ 0.05005578 -0.42430693 0.90413387]\n", + " [ 0.07587604 -0.39999451 0.91337135]\n", + " [ 0.10140466 -0.37528203 0.92134711]\n", + " [ 0.1264948 -0.35032735 0.92804623]\n", + " [ 0.15100579 -0.3252929 0.93347832]\n", + " [ 0.17480117 -0.30034586 0.93767634]\n", + " [ 0.02413231 -0.40105722 0.91573508]\n", + " [ 0.05005208 -0.37673372 0.92496837]\n", + " [ 0.07573001 -0.35205421 0.93291093]\n", + " [ 0.10101762 -0.32717599 0.93954846]\n", + " [ 0.12577287 -0.30226036 0.94489145]\n", + " [ 0.14985858 -0.2774731 0.9489737 ]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:fp_optics: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:cartToSphere: vec: [[-0.18585655 0.47485482 -0.86021523]\n", + " [-0.16121788 0.46582545 -0.87006634]\n", + " [-0.13596342 0.45624047 -0.87940809]\n", + " [-0.11018683 0.44611791 -0.88816534]\n", + " [-0.08398314 0.43548045 -0.89627206]\n", + " [-0.05745029 0.42435616 -0.90367102]\n", + " [-0.03068988 0.412779 -0.91031403]\n", + " [-0.00380683 0.4007889 -0.91616252]\n", + " [-0.18585655 0.47485482 -0.86021523]\n", + " [-0.17282993 0.49847986 -0.84949846]\n", + " [-0.15961459 0.52157999 -0.83813931]\n", + " [-0.14626162 0.54407011 -0.82619323]\n", + " [-0.13282206 0.56587043 -0.81372535]\n", + " [-0.11934653 0.5869063 -0.80081047]\n", + " [-0.10588501 0.60710766 -0.78753327]\n", + " [-0.09248692 0.62640877 -0.77398852]\n", + " [-0.00380683 0.4007889 -0.91616252]\n", + " [ 0.00952757 0.42526331 -0.90501953]\n", + " [ 0.02281182 0.44927609 -0.89310168]\n", + " [ 0.03599368 0.47273806 -0.88046759]\n", + " [ 0.04902247 0.49556749 -0.86718491]\n", + " [ 0.06184932 0.51769027 -0.85332962]\n", + " [ 0.07442686 0.53903916 -0.83898595]\n", + " [ 0.08670849 0.55955233 -0.82424683]\n", + " [-0.09248692 0.62640877 -0.77398852]\n", + " [-0.06788579 0.61892885 -0.78250789]\n", + " [-0.04278674 0.61071917 -0.79069045]\n", + " [-0.01728833 0.60179925 -0.79846025]\n", + " [ 0.00851048 0.59219257 -0.80575153]\n", + " [ 0.03451004 0.58192679 -0.81250862]\n", + " [ 0.06060981 0.57103424 -0.81868575]\n", + " [ 0.08670849 0.55955233 -0.82424683]\n", + " [-0.17515138 0.47106919 -0.86453214]\n", + " [-0.14452784 0.45962788 -0.87627274]\n", + " [-0.11307246 0.44736932 -0.88717265]\n", + " [-0.08095951 0.43433328 -0.89710655]\n", + " [-0.04836939 0.42057148 -0.90596911]\n", + " [-0.01549057 0.40614896 -0.91367558]\n", + " [-0.18012009 0.48518472 -0.85565913]\n", + " [-0.16402097 0.51379847 -0.84208566]\n", + " [-0.14768929 0.54153864 -0.82760121]\n", + " [-0.13121908 0.56825616 -0.81232167]\n", + " [-0.11470348 0.59381348 -0.79638475]\n", + " [-0.09823426 0.61808346 -0.77995056]\n", + " [ 0.00191778 0.41155224 -0.91138415]\n", + " [ 0.01823348 0.44124913 -0.89719939]\n", + " [ 0.03442199 0.47016314 -0.88190801]\n", + " [ 0.05038932 0.4981407 -0.86563084]\n", + " [ 0.06604545 0.52504529 -0.84850777]\n", + " [ 0.08130354 0.55075544 -0.83069741]\n", + " [-0.08187374 0.62317355 -0.77778623]\n", + " [-0.05137475 0.61351216 -0.78801235]\n", + " [-0.02022568 0.6027737 -0.79765581]\n", + " [ 0.01139149 0.59099973 -0.80659132]\n", + " [ 0.04329327 0.57824124 -0.81471637]\n", + " [ 0.07529422 0.56455985 -0.8219507 ]\n", + " [-0.18572928 0.47490649 -0.8602142 ]\n", + " [-0.18572928 0.47490649 -0.8602142 ]\n", + " [ 0.08657792 0.55952389 -0.82427985]\n", + " [ 0.08657792 0.55952389 -0.82427985]\n", + " [-0.16952203 0.48138794 -0.8599581 ]\n", + " [-0.15337993 0.51011814 -0.84631796]\n", + " [-0.13702654 0.53797689 -0.83174791]\n", + " [-0.12055635 0.56481509 -0.81636394]\n", + " [-0.10406281 0.59049556 -0.80030365]\n", + " [-0.08763775 0.61489166 -0.78372691]\n", + " [-0.13884836 0.47004876 -0.8716509 ]\n", + " [-0.12260458 0.49907438 -0.85784199]\n", + " [-0.10621024 0.52723642 -0.84305465]\n", + " [-0.08976101 0.55438547 -0.82740541]\n", + " [-0.07335103 0.58038534 -0.81103174]\n", + " [-0.05707224 0.60511115 -0.79409273]\n", + " [-0.10735336 0.45787336 -0.88251189]\n", + " [-0.09103856 0.48714303 -0.86856413]\n", + " [-0.07463506 0.51556026 -0.85359664]\n", + " [-0.05823926 0.54297494 -0.83772692]\n", + " [-0.04194548 0.56925157 -0.82109271]\n", + " [-0.02584533 0.594267 -0.80385244]\n", + " [-0.07521163 0.444901 -0.892416 ]\n", + " [-0.05885774 0.47436232 -0.87835992]\n", + " [-0.04247841 0.50298635 -0.86324986]\n", + " [-0.02617012 0.53062198 -0.84720449]\n", + " [-0.01002665 0.55713391 -0.83036213]\n", + " [ 0.00586132 0.58240035 -0.81288097]\n", + " [-0.04260392 0.4311828 -0.90125818]\n", + " [-0.0262438 0.46078185 -0.88712533]\n", + " [-0.00992275 0.48956339 -0.87191125]\n", + " [ 0.00626339 0.51737518 -0.85573576]\n", + " [ 0.02222213 0.54408167 -0.83873793]\n", + " [ 0.03786424 0.5695617 -0.82107598]\n", + " [-0.00971897 0.41678319 -0.90895397]\n", + " [ 0.00661415 0.44646451 -0.8947769 ]\n", + " [ 0.02284305 0.47535305 -0.87949853]\n", + " [ 0.0388732 0.50329554 -0.86323952]\n", + " [ 0.05461387 0.53015575 -0.84613959]\n", + " [ 0.0699776 0.55581242 -0.82835722]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:fp_optics: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:cartToSphere: vec: [[ 0.42542359 -0.78363445 -0.45269396]\n", + " [ 0.42404649 -0.76981555 -0.4770415 ]\n", + " [ 0.42229953 -0.75509923 -0.50148604]\n", + " [ 0.42017121 -0.73951156 -0.5259076 ]\n", + " [ 0.41765429 -0.7230854 -0.55019306]\n", + " [ 0.41474601 -0.7058618 -0.57423416]\n", + " [ 0.41144851 -0.68789155 -0.59792587]\n", + " [ 0.40776904 -0.66923589 -0.62116643]\n", + " [ 0.42542359 -0.78363445 -0.45269396]\n", + " [ 0.3989941 -0.79465018 -0.4575312 ]\n", + " [ 0.3723097 -0.80491638 -0.4620553 ]\n", + " [ 0.34547938 -0.81440081 -0.4662567 ]\n", + " [ 0.31861593 -0.82307917 -0.47013251]\n", + " [ 0.29183558 -0.83093509 -0.47368647]\n", + " [ 0.26525728 -0.83796047 -0.47692854]\n", + " [ 0.23900076 -0.8441564 -0.47987354]\n", + " [ 0.40776904 -0.66923589 -0.62116643]\n", + " [ 0.38043687 -0.68069798 -0.62603358]\n", + " [ 0.35285182 -0.69151027 -0.63032464]\n", + " [ 0.32512786 -0.70163878 -0.63403067]\n", + " [ 0.29737931 -0.71105891 -0.63715051]\n", + " [ 0.26972071 -0.71975481 -0.63969036]\n", + " [ 0.24226857 -0.72771842 -0.64166334]\n", + " [ 0.21514377 -0.73494861 -0.64308919]\n", + " [ 0.23900076 -0.8441564 -0.47987354]\n", + " [ 0.23592604 -0.83118377 -0.50346047]\n", + " [ 0.23274565 -0.81727899 -0.52714752]\n", + " [ 0.22945331 -0.80246658 -0.55081628]\n", + " [ 0.22604507 -0.78678065 -0.57435166]\n", + " [ 0.22252069 -0.77026385 -0.59764383]\n", + " [ 0.21888417 -0.7529669 -0.62058889]\n", + " [ 0.21514377 -0.73494861 -0.64308919]\n", + " [ 0.42477755 -0.77776017 -0.46330676]\n", + " [ 0.42284184 -0.76021762 -0.4932281 ]\n", + " [ 0.42033885 -0.74135223 -0.52317504]\n", + " [ 0.41725349 -0.72122163 -0.5529366 ]\n", + " [ 0.41358076 -0.69990161 -0.58231322]\n", + " [ 0.4093267 -0.67749 -0.61111288]\n", + " [ 0.41393393 -0.78848157 -0.45492363]\n", + " [ 0.38135598 -0.80148332 -0.46064314]\n", + " [ 0.34850301 -0.81332635 -0.46588185]\n", + " [ 0.31558108 -0.82396263 -0.47063167]\n", + " [ 0.28280412 -0.83336207 -0.47489946]\n", + " [ 0.25039159 -0.84151349 -0.47870565]\n", + " [ 0.39590368 -0.67437561 -0.62327988]\n", + " [ 0.36222103 -0.6879912 -0.62885931]\n", + " [ 0.32827166 -0.70059586 -0.63356386]\n", + " [ 0.29426596 -0.71214037 -0.63738813]\n", + " [ 0.26041502 -0.72259547 -0.64034351]\n", + " [ 0.22693506 -0.73194921 -0.64245687]\n", + " [ 0.23776221 -0.83859602 -0.49012839]\n", + " [ 0.23392458 -0.82206679 -0.51911991]\n", + " [ 0.22992163 -0.80416061 -0.54814393]\n", + " [ 0.22574501 -0.7849364 -0.57698703]\n", + " [ 0.22139434 -0.76447262 -0.60544707]\n", + " [ 0.21687876 -0.74286601 -0.63333537]\n", + " [ 0.42532966 -0.78362765 -0.45279397]\n", + " [ 0.42532966 -0.78362765 -0.45279397]\n", + " [ 0.21524878 -0.7349879 -0.64300913]\n", + " [ 0.21524878 -0.7349879 -0.64300913]\n", + " [ 0.41333702 -0.7826337 -0.4654428 ]\n", + " [ 0.38062985 -0.79569342 -0.47116122]\n", + " [ 0.34764466 -0.80759796 -0.47637037]\n", + " [ 0.31458783 -0.81829935 -0.48106202]\n", + " [ 0.28167367 -0.8277674 -0.48524332]\n", + " [ 0.24912285 -0.83599013 -0.48893589]\n", + " [ 0.4112888 -0.7651408 -0.49537973]\n", + " [ 0.37825806 -0.77835036 -0.50109037]\n", + " [ 0.34494356 -0.79041827 -0.50621428]\n", + " [ 0.31155255 -0.80129712 -0.51074253]\n", + " [ 0.27829939 -0.81095719 -0.51468232]\n", + " [ 0.24540607 -0.81938561 -0.51805702]\n", + " [ 0.4086947 -0.74631631 -0.52533857]\n", + " [ 0.37540352 -0.75965467 -0.53103388]\n", + " [ 0.34182706 -0.77187029 -0.53606951]\n", + " [ 0.30817351 -0.78291631 -0.54043607]\n", + " [ 0.27465652 -0.79276406 -0.54414056]\n", + " [ 0.24149726 -0.80140105 -0.54720694]\n", + " [ 0.40554007 -0.72621772 -0.55510817]\n", + " [ 0.37205283 -0.73966406 -0.56077961]\n", + " [ 0.33828259 -0.75201267 -0.56572239]\n", + " [ 0.30443857 -0.76321679 -0.56992743]\n", + " [ 0.27073351 -0.77324853 -0.57340219]\n", + " [ 0.23738679 -0.78209615 -0.57617108]\n", + " [ 0.40182071 -0.70492052 -0.58448881]\n", + " [ 0.36820388 -0.71845374 -0.59012721]\n", + " [ 0.33430943 -0.73092118 -0.5949718 ]\n", + " [ 0.30034742 -0.74227544 -0.59901469]\n", + " [ 0.26652975 -0.75248866 -0.60226465]\n", + " [ 0.23307401 -0.7615495 -0.60474695]\n", + " [ 0.39754349 -0.68252222 -0.61328835]\n", + " [ 0.36386569 -0.69612035 -0.61888466]\n", + " [ 0.329918 -0.70869197 -0.62362633]\n", + " [ 0.29591083 -0.72018843 -0.6275073 ]\n", + " [ 0.26205544 -0.73058093 -0.63053822]\n", + " [ 0.22856823 -0.73985783 -0.63274557]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:fp_optics: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:cartToSphere: vec: [[-0.20038217 -0.75384108 0.62575603]\n", + " [-0.19012143 -0.73853838 0.64684999]\n", + " [-0.17950376 -0.72233401 0.66784128]\n", + " [-0.16856301 -0.70526011 0.68861795]\n", + " [-0.15733492 -0.68735626 0.70907482]\n", + " [-0.14585787 -0.66867077 0.7291124 ]\n", + " [-0.13417324 -0.64926149 0.7486368 ]\n", + " [-0.12232522 -0.62919588 0.76756047]\n", + " [-0.20038217 -0.75384108 0.62575603]\n", + " [-0.17387003 -0.76451982 0.62070819]\n", + " [-0.1472621 -0.77447004 0.61523169]\n", + " [-0.12066337 -0.78366049 0.60935753]\n", + " [-0.09417942 -0.79206738 0.60312478]\n", + " [-0.06791635 -0.79967402 0.59658096]\n", + " [-0.04198107 -0.80647022 0.58978249]\n", + " [-0.01648194 -0.81245187 0.58279525]\n", + " [-0.12232522 -0.62919588 0.76756047]\n", + " [-0.09495432 -0.64032241 0.76221447]\n", + " [-0.06758694 -0.6508363 0.75620376]\n", + " [-0.04033253 -0.66070427 0.74956197]\n", + " [-0.01329856 -0.66990155 0.74233083]\n", + " [ 0.01341001 -0.67841166 0.73455959]\n", + " [ 0.03969035 -0.68622592 0.7263048 ]\n", + " [ 0.06544019 -0.69334266 0.71763051]\n", + " [-0.01648194 -0.81245187 0.58279525]\n", + " [-0.00491685 -0.79804901 0.60257248]\n", + " [ 0.00675803 -0.78270361 0.62235793]\n", + " [ 0.01850653 -0.76645212 0.64203478]\n", + " [ 0.03029035 -0.74933718 0.66149549]\n", + " [ 0.04206903 -0.73140817 0.68064108]\n", + " [ 0.05380023 -0.71272185 0.69938051]\n", + " [ 0.06544019 -0.69334266 0.71763051]\n", + " [-0.19586372 -0.74731957 0.63494162]\n", + " [-0.18304302 -0.72795486 0.66073972]\n", + " [-0.16971983 -0.70726692 0.68627158]\n", + " [-0.15595913 -0.68532546 0.71134082]\n", + " [-0.14183163 -0.66221951 0.7357643 ]\n", + " [-0.12741469 -0.63805959 0.75937175]\n", + " [-0.18880643 -0.7585337 0.62368161]\n", + " [-0.1562346 -0.77113642 0.61720286]\n", + " [-0.12362319 -0.78261301 0.61010997]\n", + " [-0.09116638 -0.79291661 0.60247153]\n", + " [-0.0590595 -0.80201639 0.59437503]\n", + " [-0.02749992 -0.80989617 0.58592828]\n", + " [-0.11043877 -0.63418957 0.76524954]\n", + " [-0.07688149 -0.64741874 0.7582468 ]\n", + " [-0.04343832 -0.65969357 0.75027828]\n", + " [-0.01030802 -0.67096491 0.74141745]\n", + " [ 0.02231616 -0.68120239 0.73175494]\n", + " [ 0.05424523 -0.69039297 0.72139795]\n", + " [-0.01154181 -0.80627085 0.59143394]\n", + " [ 0.00271012 -0.78797983 0.61569509]\n", + " [ 0.01709143 -0.76830863 0.63985134]\n", + " [ 0.0315325 -0.74733314 0.6637009 ]\n", + " [ 0.04595889 -0.72514435 0.68706147]\n", + " [ 0.06029202 -0.70184992 0.70976867]\n", + " [-0.20025735 -0.75382804 0.6258117 ]\n", + " [-0.20025735 -0.75382804 0.6258117 ]\n", + " [ 0.06531355 -0.69338688 0.71759932]\n", + " [ 0.06531355 -0.69338688 0.71759932]\n", + " [-0.18436843 -0.75204449 0.63280121]\n", + " [-0.151676 -0.7647052 0.62627498]\n", + " [-0.11895213 -0.77624487 0.61910766]\n", + " [-0.08639138 -0.7866169 0.61136764]\n", + " [-0.05418903 -0.79579101 0.60314196]\n", + " [-0.02254192 -0.80375163 0.59453779]\n", + " [-0.17143627 -0.73272866 0.65857294]\n", + " [-0.13844329 -0.74554001 0.65192297]\n", + " [-0.10544314 -0.75724803 0.64455967]\n", + " [-0.07263173 -0.76780663 0.63655135]\n", + " [-0.04020418 -0.77718685 0.62798425]\n", + " [-0.00835577 -0.78537492 0.61896399]\n", + " [-0.15802303 -0.71208117 0.68408269]\n", + " [-0.12479132 -0.72502315 0.67732456]\n", + " [-0.09157847 -0.73688509 0.66978635]\n", + " [-0.05858178 -0.7476209 0.66153697]\n", + " [-0.02599626 -0.75720242 0.65266277]\n", + " [ 0.00598448 -0.76561728 0.6432685 ]\n", + " [-0.14419436 -0.69017148 0.7091342 ]\n", + " [-0.11078757 -0.70322396 0.70228354]\n", + " [-0.07742717 -0.71522597 0.69459114]\n", + " [-0.04431156 -0.72613093 0.68612708]\n", + " [-0.0116355 -0.73591079 0.67697853]\n", + " [ 0.02040899 -0.74455388 0.66725032]\n", + " [-0.13002168 -0.66708836 0.73354447]\n", + " [-0.09650546 -0.6802306 0.72661752]\n", + " [-0.06306414 -0.69235868 0.7187923 ]\n", + " [-0.02989674 -0.7034251 0.71014035]\n", + " [ 0.00280245 -0.7134012 0.70075022]\n", + " [ 0.0348429 -0.72227523 0.69072749]\n", + " [-0.11558299 -0.64294203 0.75714339]\n", + " [-0.08202446 -0.65615246 0.75015728]\n", + " [-0.04856981 -0.66839179 0.74222193]\n", + " [-0.01541799 -0.67961133 0.73341034]\n", + " [ 0.01723744 -0.68978123 0.72381263]\n", + " [ 0.04920717 -0.69888889 0.71353555]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:fp_optics: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:cartToSphere: vec: [[-0.28705607 0.35331751 -0.89037382]\n", + " [-0.2678404 0.33845813 -0.90205743]\n", + " [-0.24791927 0.32315207 -0.91329556]\n", + " [-0.2273769 0.30743911 -0.92400267]\n", + " [-0.20629738 0.29136373 -0.93410308]\n", + " [-0.1847649 0.27497535 -0.94353086]\n", + " [-0.16286414 0.25832827 -0.9522299 ]\n", + " [-0.14068071 0.24148146 -0.96015397]\n", + " [-0.28705607 0.35331751 -0.89037382]\n", + " [-0.27165597 0.37500749 -0.88632523]\n", + " [-0.25560097 0.39681144 -0.88159448]\n", + " [-0.23896059 0.4186259 -0.87615649]\n", + " [-0.22180407 0.44035137 -0.86999634]\n", + " [-0.20420056 0.46189212 -0.86310938]\n", + " [-0.18621957 0.48315609 -0.85550129]\n", + " [-0.16793145 0.50405507 -0.84718801]\n", + " [-0.14068071 0.24148146 -0.96015397]\n", + " [-0.12330234 0.2630564 -0.95686878]\n", + " [-0.10546534 0.2848607 -0.95274941]\n", + " [-0.08723627 0.30679497 -0.94776932]\n", + " [-0.0686823 0.32876312 -0.94191165]\n", + " [-0.04987243 0.35067099 -0.93516982]\n", + " [-0.03087821 0.37242581 -0.92754814]\n", + " [-0.0117737 0.39393649 -0.91906225]\n", + " [-0.16793145 0.50405507 -0.84718801]\n", + " [-0.14684534 0.4901232 -0.8591948 ]\n", + " [-0.12521495 0.47552174 -0.87074697]\n", + " [-0.10312077 0.46028715 -0.88176065]\n", + " [-0.0806442 0.44446076 -0.89216094]\n", + " [-0.05786906 0.42808986 -0.9018815 ]\n", + " [-0.03488227 0.4112283 -0.91086471]\n", + " [-0.0117737 0.39393649 -0.91906225]\n", + " [-0.27871808 0.34697005 -0.89550434]\n", + " [-0.25468078 0.32845352 -0.90953614]\n", + " [-0.22966764 0.30930489 -0.92281269]\n", + " [-0.20383354 0.2896041 -0.93519054]\n", + " [-0.17733348 0.2694421 -0.94654836]\n", + " [-0.15032377 0.24892082 -0.95678691]\n", + " [-0.28036158 0.36270376 -0.88873132]\n", + " [-0.26103652 0.38937742 -0.88331487]\n", + " [-0.240797 0.41611909 -0.8768476 ]\n", + " [-0.2197706 0.44274396 -0.8692978 ]\n", + " [-0.19808468 0.46907579 -0.86065694]\n", + " [-0.17586755 0.49494666 -0.85093972]\n", + " [-0.13324091 0.25091156 -0.95879625]\n", + " [-0.11162591 0.27752141 -0.95421252]\n", + " [-0.08938803 0.30437646 -0.94834843]\n", + " [-0.06665058 0.33129851 -0.94116895]\n", + " [-0.0435407 0.35811417 -0.93266202]\n", + " [-0.02019116 0.38465329 -0.92284027]\n", + " [-0.15887316 0.49799419 -0.85250285]\n", + " [-0.13265448 0.48046393 -0.86692399]\n", + " [-0.10569811 0.46196378 -0.88057787]\n", + " [-0.07815344 0.44256779 -0.89332289]\n", + " [-0.05017486 0.42236308 -0.90503697]\n", + " [-0.02192364 0.40145152 -0.91561784]\n", + " [-0.28694019 0.35334136 -0.89040171]\n", + " [-0.28694019 0.35334136 -0.89040171]\n", + " [-0.01191826 0.39392324 -0.91906607]\n", + " [-0.01191826 0.39392324 -0.91906607]\n", + " [-0.27207107 0.35635135 -0.89386299]\n", + " [-0.25256478 0.38308387 -0.88851437]\n", + " [-0.23216258 0.40989239 -0.8820934 ]\n", + " [-0.21099161 0.4365923 -0.87456829]\n", + " [-0.18917869 0.46300731 -0.86593051]\n", + " [-0.16685191 0.48896914 -0.85619485]\n", + " [-0.2478503 0.3378721 -0.90797174]\n", + " [-0.22786023 0.36472665 -0.90280352]\n", + " [-0.20702665 0.3916823 -0.89650708]\n", + " [-0.18547496 0.41855522 -0.88905037]\n", + " [-0.16333056 0.44516905 -0.8804247 ]\n", + " [-0.14072118 0.47135441 -0.87064492]\n", + " [-0.22266889 0.31873649 -0.92131733]\n", + " [-0.20223791 0.34564643 -0.91631238]\n", + " [-0.18101498 0.372686 -0.91013116]\n", + " [-0.15912377 0.39967246 -0.90274113]\n", + " [-0.13668877 0.42642959 -0.89413309]\n", + " [-0.11383802 0.452787 -0.88432168]\n", + " [-0.19668125 0.29902437 -0.93375634]\n", + " [-0.17585037 0.32592275 -0.92889774]\n", + " [-0.15427822 0.35298231 -0.92282269]\n", + " [-0.13208731 0.38002168 -0.91549793]\n", + " [-0.10940208 0.40686508 -0.90691344]\n", + " [-0.08635153 0.43334147 -0.89708338]\n", + " [-0.17004191 0.27882688 -0.94516735]\n", + " [-0.14885087 0.30564699 -0.94043784]\n", + " [-0.12696874 0.33266248 -0.93445953]\n", + " [-0.10451782 0.35969339 -0.9271983 ]\n", + " [-0.08162327 0.38656476 -0.9186432 ]\n", + " [-0.05841561 0.41310551 -0.90880771]\n", + " [-0.14290705 0.2582463 -0.9554509 ]\n", + " [-0.12139551 0.28492241 -0.95083245]\n", + " [-0.0992432 0.31183034 -0.94494054]\n", + " [-0.07657304 0.3387915 -0.93774031]\n", + " [-0.05351159 0.36563204 -0.92921995]\n", + " [-0.03019104 0.39218145 -0.9193923 ]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:fp_optics: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:cartToSphere: vec: [[-7.51491862e-01 6.39110114e-01 1.63701689e-01]\n", + " [-7.50804025e-01 6.46033327e-01 1.37601803e-01]\n", + " [-7.49440072e-01 6.52718912e-01 1.10894546e-01]\n", + " [-7.47380106e-01 6.59105800e-01 8.36810779e-02]\n", + " [-7.44612457e-01 6.65138215e-01 5.60664248e-02]\n", + " [-7.41132743e-01 6.70767772e-01 2.81576430e-02]\n", + " [-7.36943449e-01 6.75954398e-01 6.30691634e-05]\n", + " [-7.32053894e-01 6.80666611e-01 -2.81080313e-02]\n", + " [-7.51491862e-01 6.39110114e-01 1.63701689e-01]\n", + " [-7.33582277e-01 6.57515235e-01 1.71845158e-01]\n", + " [-7.14730524e-01 6.75868064e-01 1.79896189e-01]\n", + " [-6.94982466e-01 6.94061850e-01 1.87823109e-01]\n", + " [-6.74393448e-01 7.11994161e-01 1.95595992e-01]\n", + " [-6.53026736e-01 7.29569486e-01 2.03185746e-01]\n", + " [-6.30952901e-01 7.46700330e-01 2.10563657e-01]\n", + " [-6.08249632e-01 7.63307601e-01 2.17701382e-01]\n", + " [-7.32053894e-01 6.80666611e-01 -2.81080313e-02]\n", + " [-7.13449109e-01 7.00378243e-01 -2.14635753e-02]\n", + " [-6.93887431e-01 7.19934087e-01 -1.46677734e-02]\n", + " [-6.73416978e-01 7.39222263e-01 -7.74720959e-03]\n", + " [-6.52091362e-01 7.58140044e-01 -7.28162252e-04]\n", + " [-6.29971401e-01 7.76592267e-01 6.36283180e-03]\n", + " [-6.07127065e-01 7.94490100e-01 1.34984579e-02]\n", + " [-5.83638504e-01 8.11750980e-01 2.06504746e-02]\n", + " [-6.08249632e-01 7.63307601e-01 2.17701382e-01]\n", + " [-6.06382427e-01 7.71874493e-01 1.91076214e-01]\n", + " [-6.03982460e-01 7.79990053e-01 1.63770284e-01]\n", + " [-6.01033544e-01 7.87587279e-01 1.35885824e-01]\n", + " [-5.97525357e-01 7.94607974e-01 1.07524948e-01]\n", + " [-5.93453782e-01 8.01002132e-01 7.87920876e-02]\n", + " [-5.88821497e-01 8.06727710e-01 4.97960488e-02]\n", + " [-5.83638504e-01 8.11750980e-01 2.06504746e-02]\n", + " [-7.51213644e-01 6.42217224e-01 1.52430635e-01]\n", + " [-7.49918400e-01 6.50551598e-01 1.20020883e-01]\n", + " [-7.47586916e-01 6.58467757e-01 8.67987041e-02]\n", + " [-7.44194364e-01 6.65860654e-01 5.29559989e-02]\n", + " [-7.39732629e-01 6.72641308e-01 1.86897775e-02]\n", + " [-7.34209120e-01 6.78739512e-01 -1.58001137e-02]\n", + " [-7.43800093e-01 6.47158842e-01 1.67173130e-01]\n", + " [-7.21210679e-01 6.69695818e-01 1.77095082e-01]\n", + " [-6.97250434e-01 6.92047808e-01 1.86846632e-01]\n", + " [-6.72017436e-01 7.14024225e-01 1.96372024e-01]\n", + " [-6.45628092e-01 7.35449351e-01 2.05617652e-01]\n", + " [-6.18215281e-01 7.56165593e-01 2.14530795e-01]\n", + " [-7.24080642e-01 6.89257191e-01 -2.51346261e-02]\n", + " [-7.00629465e-01 7.13325486e-01 -1.68850363e-02]\n", + " [-6.75788206e-01 7.37047594e-01 -8.43476150e-03]\n", + " [-6.49653250e-01 7.60230640e-01 1.67704335e-04]\n", + " [-6.22336796e-01 7.82699287e-01 8.87343866e-03]\n", + " [-5.93971894e-01 8.04292553e-01 1.76317519e-02]\n", + " [-6.07578674e-01 7.67037571e-01 2.06158969e-01]\n", + " [-6.04935059e-01 7.77242006e-01 1.73056171e-01]\n", + " [-6.01474345e-01 7.86701061e-01 1.39032559e-01]\n", + " [-5.97175090e-01 7.95303972e-01 1.04276099e-01]\n", + " [-5.92029779e-01 8.02958652e-01 6.89792951e-02]\n", + " [-5.86046368e-01 8.09591130e-01 3.33445227e-02]\n", + " [-7.51431033e-01 6.39197033e-01 1.63641546e-01]\n", + " [-7.51431033e-01 6.39197033e-01 1.63641546e-01]\n", + " [-5.83738469e-01 8.11677177e-01 2.07258118e-02]\n", + " [-5.83738469e-01 8.11677177e-01 2.07258118e-02]\n", + " [-7.43556853e-01 6.50238121e-01 1.55928164e-01]\n", + " [-7.20888144e-01 6.72935010e-01 1.65767172e-01]\n", + " [-6.96841298e-01 6.95432910e-01 1.75457326e-01]\n", + " [-6.71515418e-01 7.17539376e-01 1.84944011e-01]\n", + " [-6.45027177e-01 7.39078089e-01 1.94173943e-01]\n", + " [-6.17509560e-01 7.59891231e-01 2.03094218e-01]\n", + " [-7.42192577e-01 6.58725235e-01 1.23414921e-01]\n", + " [-7.19315941e-01 6.81832133e-01 1.33001951e-01]\n", + " [-6.95046151e-01 7.04700933e-01 1.42504190e-01]\n", + " [-6.69483638e-01 7.27136487e-01 1.51868983e-01]\n", + " [-6.42744801e-01 7.48962099e-01 1.61043146e-01]\n", + " [-6.14962548e-01 7.70019684e-01 1.69972794e-01]\n", + " [-7.39799697e-01 6.66769727e-01 9.00807398e-02]\n", + " [-7.16742733e-01 6.90217838e-01 9.93941167e-02]\n", + " [-6.92284551e-01 7.13392470e-01 1.08688930e-01]\n", + " [-6.66525108e-01 7.36098303e-01 1.17913395e-01]\n", + " [-6.39579561e-01 7.58159220e-01 1.27014102e-01]\n", + " [-6.11580540e-01 7.79416815e-01 1.35936275e-01]\n", + " [-7.36354381e-01 6.74264729e-01 5.61186332e-02]\n", + " [-7.13146215e-01 6.97982458e-01 6.51380423e-02]\n", + " [-6.88534380e-01 7.21397247e-01 7.42052522e-02]\n", + " [-6.62617443e-01 7.44314701e-01 8.32691435e-02]\n", + " [-6.35509079e-01 7.66559346e-01 9.22766462e-02]\n", + " [-6.07341752e-01 7.87972100e-01 1.01172948e-01]\n", + " [-7.31848778e-01 6.81120656e-01 2.17259938e-02]\n", + " [-7.08518327e-01 7.05035971e-01 3.04312444e-02]\n", + " [-6.83786713e-01 7.28625542e-01 3.92498365e-02]\n", + " [-6.57751101e-01 7.51695975e-01 4.81316025e-02]\n", + " [-6.30524032e-01 7.74072104e-01 5.70247602e-02]\n", + " [-6.02238060e-01 7.95593942e-01 6.58756239e-02]\n", + " [-7.26290204e-01 6.87267202e-01 -1.28970023e-02]\n", + " [-7.02865622e-01 7.11308258e-01 -4.52534783e-03]\n", + " [-6.78047203e-01 7.35007344e-01 4.02429770e-03]\n", + " [-6.51931367e-01 7.58171568e-01 1.27029996e-02]\n", + " [-6.24630253e-01 7.80625692e-01 2.14610307e-02]\n", + " [-5.96276749e-01 8.02208931e-01 3.02468185e-02]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:cartToSphere: vec: [[ 0.24758001 0.24324777 -0.93783509]\n", + " [ 0.27341362 0.24477796 -0.93023048]\n", + " [ 0.29956625 0.24631069 -0.92173266]\n", + " [ 0.32591372 0.24781204 -0.91234283]\n", + " [ 0.35233719 0.24925477 -0.90207016]\n", + " [ 0.37872201 0.25061759 -0.89093236]\n", + " [ 0.40495717 0.2518844 -0.87895617]\n", + " [ 0.43093521 0.25304375 -0.86617764]\n", + " [ 0.24758001 0.24324777 -0.93783509]\n", + " [ 0.24160127 0.26892566 -0.93236678]\n", + " [ 0.23546191 0.29498127 -0.92603658]\n", + " [ 0.22916189 0.3212853 -0.91883654]\n", + " [ 0.22270685 0.34771505 -0.91076666]\n", + " [ 0.21610773 0.37415302 -0.90183533]\n", + " [ 0.2093803 0.400486 -0.89205989]\n", + " [ 0.20254463 0.42660484 -0.88146695]\n", + " [ 0.43093521 0.25304375 -0.86617764]\n", + " [ 0.42657414 0.27992407 -0.86004478]\n", + " [ 0.42178422 0.30713066 -0.85309368]\n", + " [ 0.41656518 0.33454184 -0.84531368]\n", + " [ 0.41092123 0.36203868 -0.8367029 ]\n", + " [ 0.40486148 0.38950379 -0.82726899]\n", + " [ 0.3984001 0.41682127 -0.81702962]\n", + " [ 0.39155642 0.44387739 -0.80601268]\n", + " [ 0.20254463 0.42660484 -0.88146695]\n", + " [ 0.22909244 0.43002981 -0.87326457]\n", + " [ 0.25598449 0.43318129 -0.8641909 ]\n", + " [ 0.28310351 0.43602731 -0.85424387]\n", + " [ 0.31033413 0.43854047 -0.84343049]\n", + " [ 0.3375619 0.44069785 -0.83176762]\n", + " [ 0.36467327 0.44248125 -0.81928246]\n", + " [ 0.39155642 0.44387739 -0.80601268]\n", + " [ 0.25877633 0.24399967 -0.93461167]\n", + " [ 0.29066964 0.2458827 -0.92469068]\n", + " [ 0.3229181 0.24773485 -0.91342835]\n", + " [ 0.35530076 0.24950324 -0.90083822]\n", + " [ 0.38760653 0.25114859 -0.88695297]\n", + " [ 0.41963247 0.25264322 -0.87182567]\n", + " [ 0.24508078 0.25439408 -0.93553143]\n", + " [ 0.23764645 0.28613703 -0.92825091]\n", + " [ 0.22996998 0.31831802 -0.91966703]\n", + " [ 0.22205939 0.35070849 -0.90977645]\n", + " [ 0.21393478 0.383092 -0.8985947 ]\n", + " [ 0.20562699 0.41526185 -0.88615751]\n", + " [ 0.42899767 0.26471178 -0.86364847]\n", + " [ 0.4233637 0.29789123 -0.855584 ]\n", + " [ 0.41708501 0.33143946 -0.8462789 ]\n", + " [ 0.41016748 0.36513647 -0.83572603]\n", + " [ 0.40262787 0.39876617 -0.82393952]\n", + " [ 0.39449446 0.43211602 -0.81095615]\n", + " [ 0.21409321 0.42804034 -0.87803506]\n", + " [ 0.24687686 0.43205744 -0.86739736]\n", + " [ 0.2800607 0.43563166 -0.85544787]\n", + " [ 0.31343167 0.43871064 -0.84219568]\n", + " [ 0.34677903 0.44125224 -0.82767189]\n", + " [ 0.37989443 0.44322499 -0.81193093]\n", + " [ 0.24764749 0.24333997 -0.93779336]\n", + " [ 0.24764749 0.24333997 -0.93779336]\n", + " [ 0.39148904 0.44378133 -0.8060983 ]\n", + " [ 0.39148904 0.44378133 -0.8060983 ]\n", + " [ 0.25625572 0.25511464 -0.93233552]\n", + " [ 0.24893195 0.2870231 -0.92501385]\n", + " [ 0.24133691 0.31936058 -0.9163871 ]\n", + " [ 0.23347927 0.35189976 -0.90645132]\n", + " [ 0.22537966 0.38442473 -0.89522156]\n", + " [ 0.21706936 0.4167286 -0.88273335]\n", + " [ 0.2882782 0.25714894 -0.922372 ]\n", + " [ 0.28126607 0.28946932 -0.91493001]\n", + " [ 0.2739036 0.32219763 -0.90618183]\n", + " [ 0.26620075 0.35510956 -0.89612185]\n", + " [ 0.25817905 0.38799005 -0.88476398]\n", + " [ 0.24987048 0.42063131 -0.87214336]\n", + " [ 0.32065471 0.25912192 -0.91106333]\n", + " [ 0.31395474 0.29177222 -0.90349399]\n", + " [ 0.30683016 0.32481516 -0.89462303]\n", + " [ 0.29929118 0.35802853 -0.88444353]\n", + " [ 0.29135929 0.39119742 -0.8729687 ]\n", + " [ 0.28306643 0.42411266 -0.8602336 ]\n", + " [ 0.35316523 0.26098168 -0.89842244]\n", + " [ 0.34678019 0.29388207 -0.89071703]\n", + " [ 0.3399005 0.32716436 -0.88172055]\n", + " [ 0.33253572 0.36060765 -0.87142534]\n", + " [ 0.32470646 0.3939967 -0.85984436]\n", + " [ 0.31644397 0.42712092 -0.84701295]\n", + " [ 0.3855989 0.26268962 -0.88448157]\n", + " [ 0.37953192 0.29576147 -0.8766303 ]\n", + " [ 0.37290408 0.32920791 -0.86750487]\n", + " [ 0.36572358 0.36280873 -0.85709748]\n", + " [ 0.35800959 0.3963482 -0.84542134]\n", + " [ 0.34979226 0.42961459 -0.83251227]\n", + " [ 0.41775251 0.26421846 -0.86929365]\n", + " [ 0.41200552 0.29738362 -0.8612865 ]\n", + " [ 0.40563506 0.33091867 -0.85202878]\n", + " [ 0.39864763 0.36460364 -0.84151307]\n", + " [ 0.39106064 0.39822248 -0.82975324]\n", + " [ 0.38290288 0.43156274 -0.81678577]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:fp_optics: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:cartToSphere: vec: [[ 0.0766099 0.99149159 -0.10523951]\n", + " [ 0.07037056 0.98883424 -0.13135767]\n", + " [ 0.06410089 0.98536281 -0.15795949]\n", + " [ 0.05780917 0.98105185 -0.18491989]\n", + " [ 0.05150723 0.97588566 -0.21211833]\n", + " [ 0.04521031 0.96985847 -0.23943803]\n", + " [ 0.03893665 0.96297469 -0.26676522]\n", + " [ 0.03270707 0.95524906 -0.29398891]\n", + " [ 0.0766099 0.99149159 -0.10523951]\n", + " [ 0.10320064 0.98872504 -0.10850082]\n", + " [ 0.13026628 0.98514352 -0.11190594]\n", + " [ 0.15768602 0.98072098 -0.11541872]\n", + " [ 0.18534231 0.9754411 -0.11900792]\n", + " [ 0.21312 0.96929749 -0.12264682]\n", + " [ 0.24090583 0.96229388 -0.12631258]\n", + " [ 0.26858827 0.95444438 -0.12998564]\n", + " [ 0.03270707 0.95524906 -0.29398891]\n", + " [ 0.05996209 0.95228795 -0.29925276]\n", + " [ 0.08772581 0.94850026 -0.304387 ]\n", + " [ 0.11588437 0.94385849 -0.30935733]\n", + " [ 0.14432506 0.93834477 -0.31413272]\n", + " [ 0.17293448 0.93195142 -0.31868513]\n", + " [ 0.20159776 0.92468163 -0.32298952]\n", + " [ 0.23019898 0.91654991 -0.327024 ]\n", + " [ 0.26858827 0.95444438 -0.12998564]\n", + " [ 0.2639509 0.95159694 -0.15745852]\n", + " [ 0.25901355 0.94792236 -0.18535152]\n", + " [ 0.2537838 0.94339368 -0.21354661]\n", + " [ 0.2482721 0.93799361 -0.2419276 ]\n", + " [ 0.24249212 0.93171513 -0.27037843]\n", + " [ 0.23646092 0.92456214 -0.29878265]\n", + " [ 0.23019898 0.91654991 -0.327024 ]\n", + " [ 0.07398397 0.99042295 -0.11657082]\n", + " [ 0.06631663 0.98662239 -0.14892401]\n", + " [ 0.05861139 0.98157262 -0.1818788 ]\n", + " [ 0.05088852 0.97524068 -0.21521146]\n", + " [ 0.04317603 0.967616 -0.24870688]\n", + " [ 0.03550862 0.95871095 -0.28215678]\n", + " [ 0.08811637 0.99037578 -0.10673011]\n", + " [ 0.12104183 0.98644086 -0.11083004]\n", + " [ 0.15456023 0.9812548 -0.11510931]\n", + " [ 0.18845381 0.97478352 -0.11950837]\n", + " [ 0.22251056 0.96701526 -0.12397796]\n", + " [ 0.25652268 0.9579612 -0.12847741]\n", + " [ 0.04454168 0.95408543 -0.29620438]\n", + " [ 0.07830225 0.94990465 -0.30257217]\n", + " [ 0.1127135 0.94445391 -0.30871098]\n", + " [ 0.14756756 0.93769629 -0.31456238]\n", + " [ 0.18265558 0.92961772 -0.32007474]\n", + " [ 0.21776559 0.92022877 -0.32520326]\n", + " [ 0.26650889 0.95333084 -0.14189193]\n", + " [ 0.26062184 0.94928893 -0.17586014]\n", + " [ 0.25429162 0.94397675 -0.2103418 ]\n", + " [ 0.24753628 0.93735842 -0.24512239]\n", + " [ 0.24038098 0.92942111 -0.27998818]\n", + " [ 0.23285858 0.92017671 -0.3147248 ]\n", + " [ 0.07667861 0.99147574 -0.10533872]\n", + " [ 0.07667861 0.99147574 -0.10533872]\n", + " [ 0.23012319 0.91660799 -0.32691452]\n", + " [ 0.23012319 0.91660799 -0.32691452]\n", + " [ 0.08546519 0.98932582 -0.11802593]\n", + " [ 0.11851418 0.98539353 -0.12228646]\n", + " [ 0.15215729 0.980202 -0.12669728]\n", + " [ 0.18617754 0.9737169 -0.13119957]\n", + " [ 0.22036325 0.96592619 -0.13574473]\n", + " [ 0.25450638 0.9568409 -0.14029255]\n", + " [ 0.07790206 0.9855278 -0.15055309]\n", + " [ 0.11124859 0.98159087 -0.15525178]\n", + " [ 0.14519486 0.97637678 -0.16002134]\n", + " [ 0.17952617 0.96985035 -0.16480488]\n", + " [ 0.21403161 0.9619987 -0.16955521]\n", + " [ 0.24850226 0.95283238 -0.17423287]\n", + " [ 0.07027321 0.98047231 -0.18367286]\n", + " [ 0.10384044 0.97651241 -0.18878736]\n", + " [ 0.13801608 0.97126476 -0.19389771]\n", + " [ 0.17258765 0.96469328 -0.1989482 ]\n", + " [ 0.20734481 0.95678427 -0.20389209]\n", + " [ 0.2420775 0.94754792 -0.20868979]\n", + " [ 0.06259937 0.97412617 -0.21716244]\n", + " [ 0.09631151 0.97012412 -0.22267306]\n", + " [ 0.13064315 0.96483099 -0.2281086 ]\n", + " [ 0.16538372 0.95820998 -0.23341349]\n", + " [ 0.20032332 0.95024683 -0.23854041]\n", + " [ 0.23525083 0.94095151 -0.24344877]\n", + " [ 0.05490907 0.96647852 -0.25080721]\n", + " [ 0.08869149 0.96241432 -0.25669535]\n", + " [ 0.12310608 0.95706302 -0.262441 ]\n", + " [ 0.15794377 0.95038745 -0.26798781]\n", + " [ 0.19299509 0.94237314 -0.27328694]\n", + " [ 0.22804818 0.93303014 -0.27829622]\n", + " [ 0.0472375 0.95754162 -0.28439879]\n", + " [ 0.08101663 0.95339484 -0.29064512]\n", + " [ 0.1154415 0.94797232 -0.29668457]\n", + " [ 0.15030405 0.94123699 -0.3024593 ]\n", + " [ 0.18539525 0.93317459 -0.30791846]\n", + " [ 0.22050305 0.92379553 -0.31301794]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:fp_optics: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:fp_optics: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:cartToSphere: vec: [[-0.84634677 0.39031546 -0.36242377]\n", + " [-0.85908135 0.38272074 -0.33985891]\n", + " [-0.87146536 0.3745525 -0.31663631]\n", + " [-0.88340998 0.365836 -0.29283241]\n", + " [-0.89483363 0.3566019 -0.26852907]\n", + " [-0.90566377 0.34688416 -0.24381246]\n", + " [-0.91583773 0.33671915 -0.21877263]\n", + " [-0.92530299 0.32614544 -0.19350329]\n", + " [-0.84634677 0.39031546 -0.36242377]\n", + " [-0.85074509 0.36737488 -0.375857 ]\n", + " [-0.85467266 0.34361994 -0.3891786 ]\n", + " [-0.85807184 0.31913509 -0.40232512]\n", + " [-0.86089268 0.29401139 -0.41523618]\n", + " [-0.86309454 0.26834379 -0.42785445]\n", + " [-0.86464682 0.24223004 -0.44012553]\n", + " [-0.86552926 0.21577033 -0.45199807]\n", + " [-0.92530299 0.32614544 -0.19350329]\n", + " [-0.9308735 0.30177318 -0.20593074]\n", + " [-0.93581135 0.27665666 -0.21844495]\n", + " [-0.94005432 0.25088538 -0.23098572]\n", + " [-0.94355032 0.22454952 -0.24349602]\n", + " [-0.9462571 0.19774215 -0.25592099]\n", + " [-0.94814229 0.17056135 -0.26820706]\n", + " [-0.9491839 0.14311116 -0.28030184]\n", + " [-0.86552926 0.21577033 -0.45199807]\n", + " [-0.87920793 0.20630746 -0.42945389]\n", + " [-0.89244834 0.19648376 -0.40611587]\n", + " [-0.90515814 0.18633071 -0.38205969]\n", + " [-0.91725521 0.17588085 -0.3573637 ]\n", + " [-0.92866655 0.16516875 -0.332111 ]\n", + " [-0.93932787 0.15423191 -0.30639137]\n", + " [-0.9491839 0.14311116 -0.28030184]\n", + " [-0.85195244 0.38699854 -0.35271683]\n", + " [-0.86733666 0.37730082 -0.32460932]\n", + " [-0.88210529 0.36676613 -0.295589 ]\n", + " [-0.89610499 0.35544881 -0.26580441]\n", + " [-0.90920232 0.34341131 -0.23541415]\n", + " [-0.92128609 0.33072151 -0.20458552]\n", + " [-0.84836282 0.38039301 -0.36821419]\n", + " [-0.85344535 0.35171799 -0.38461083]\n", + " [-0.85776265 0.32190277 -0.40077655]\n", + " [-0.86121942 0.29111245 -0.41659891]\n", + " [-0.86374092 0.25952172 -0.43197235]\n", + " [-0.86527512 0.22731156 -0.44679796]\n", + " [-0.92777388 0.31565326 -0.19899407]\n", + " [-0.93418372 0.28527117 -0.21429217]\n", + " [-0.93958037 0.25386 -0.22966023]\n", + " [-0.94386377 0.22158546 -0.24499197]\n", + " [-0.94695614 0.18861911 -0.26018627]\n", + " [-0.94880217 0.15514405 -0.27514499]\n", + " [-0.87153885 0.21178216 -0.4422311 ]\n", + " [-0.88802088 0.19993878 -0.41405725]\n", + " [-0.90375171 0.18758443 -0.38476607]\n", + " [-0.91857594 0.17477855 -0.35450063]\n", + " [-0.93235916 0.1615849 -0.32341416]\n", + " [-0.94498668 0.14807389 -0.29167497]\n", + " [-0.84640658 0.39021351 -0.36239386]\n", + " [-0.84640658 0.39021351 -0.36239386]\n", + " [-0.94914951 0.14324366 -0.2803506 ]\n", + " [-0.94914951 0.14324366 -0.2803506 ]\n", + " [-0.85395487 0.37712323 -0.35852356]\n", + " [-0.85915533 0.348293 -0.37489213]\n", + " [-0.86356933 0.31832571 -0.39104572]\n", + " [-0.86710021 0.28738839 -0.4068724 ]\n", + " [-0.86967275 0.25565628 -0.42226672]\n", + " [-0.87123485 0.22331054 -0.43712955]\n", + " [-0.86946181 0.36727956 -0.33036629]\n", + " [-0.87497349 0.33804145 -0.34662568]\n", + " [-0.87964094 0.30768035 -0.36271838]\n", + " [-0.8833653 0.27636599 -0.37853346]\n", + " [-0.8860709 0.2442736 -0.39396543]\n", + " [-0.88770565 0.21158427 -0.40891414]\n", + " [-0.88433898 0.35661554 -0.30128047]\n", + " [-0.89012419 0.32702203 -0.31738859]\n", + " [-0.89501318 0.29632434 -0.33338159]\n", + " [-0.89890651 0.26469198 -0.34914932]\n", + " [-0.90172843 0.23229882 -0.36458621]\n", + " [-0.9034267 0.19932574 -0.37959115]\n", + " [-0.89843168 0.34518738 -0.27141514]\n", + " [-0.90445071 0.31529384 -0.28733031]\n", + " [-0.90952912 0.28431715 -0.30318399]\n", + " [-0.91356738 0.25242528 -0.31886693]\n", + " [-0.91648948 0.21979056 -0.33427407]\n", + " [-0.91824255 0.18659405 -0.34930399]\n", + " [-0.91160599 0.33305811 -0.24092905]\n", + " [-0.91781864 0.30291992 -0.25660956]\n", + " [-0.92305442 0.27172081 -0.27228357]\n", + " [-0.92721368 0.23962717 -0.28784303]\n", + " [-0.93021977 0.20681039 -0.30318417]\n", + " [-0.9320188 0.17345221 -0.31820635]\n", + " [-0.92375051 0.3202956 -0.20998981]\n", + " [-0.93011617 0.28996751 -0.22539468]\n", + " [-0.93547674 0.25860179 -0.24084929]\n", + " [-0.93973229 0.22636415 -0.25624694]\n", + " [-0.94280533 0.19342592 -0.27148577]\n", + " [-0.94464088 0.15996983 -0.28646686]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:fp_optics: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:cartToSphere: vec: [[-9.33473318e-02 1.31169404e-01 -9.86955350e-01]\n", + " [-6.85775114e-02 1.41936516e-01 -9.87497418e-01]\n", + " [-4.33057196e-02 1.52959188e-01 -9.87283192e-01]\n", + " [-1.76315866e-02 1.64170512e-01 -9.86274389e-01]\n", + " [ 8.34489920e-03 1.75508210e-01 -9.84442599e-01]\n", + " [ 3.45231236e-02 1.86914493e-01 -9.81769385e-01]\n", + " [ 6.08016907e-02 1.98335656e-01 -9.78246453e-01]\n", + " [ 8.70785529e-02 2.09721701e-01 -9.73875831e-01]\n", + " [-9.33473318e-02 1.31169404e-01 -9.86955350e-01]\n", + " [-1.06254190e-01 1.54350709e-01 -9.82286061e-01]\n", + " [-1.19224912e-01 1.77988657e-01 -9.76783220e-01]\n", + " [-1.32212170e-01 2.01966937e-01 -9.70427379e-01]\n", + " [-1.45168153e-01 2.26173672e-01 -9.63209052e-01]\n", + " [-1.58044407e-01 2.50501150e-01 -9.55128860e-01]\n", + " [-1.70791969e-01 2.74845350e-01 -9.46197726e-01]\n", + " [-1.83361710e-01 2.99105652e-01 -9.36437020e-01]\n", + " [ 8.70785529e-02 2.09721701e-01 -9.73875831e-01]\n", + " [ 7.53914979e-02 2.34619114e-01 -9.69159426e-01]\n", + " [ 6.34067371e-02 2.59838930e-01 -9.63568013e-01]\n", + " [ 5.11689010e-02 2.85269050e-01 -9.57080620e-01]\n", + " [ 3.87231070e-02 3.10800571e-01 -9.49686014e-01]\n", + " [ 2.61157525e-02 3.36326185e-01 -9.41383378e-01]\n", + " [ 1.33949303e-02 3.61739453e-01 -9.32182999e-01]\n", + " [ 6.10356880e-04 3.86935113e-01 -9.22106743e-01]\n", + " [-1.83361710e-01 2.99105652e-01 -9.36437020e-01]\n", + " [-1.58442645e-01 3.11947618e-01 -9.36794861e-01]\n", + " [-1.32907914e-01 3.24794603e-01 -9.36399462e-01]\n", + " [-1.06852214e-01 3.37581406e-01 -9.35211954e-01]\n", + " [-8.03716552e-02 3.50246361e-01 -9.33203024e-01]\n", + " [-5.35653234e-02 3.62730624e-01 -9.30353294e-01]\n", + " [-2.65359678e-02 3.74977970e-01 -9.26653854e-01]\n", + " [ 6.10356880e-04 3.86935113e-01 -9.22106743e-01]\n", + " [-8.26594594e-02 1.35906955e-01 -9.87267296e-01]\n", + " [-5.19507996e-02 1.49285204e-01 -9.87428500e-01]\n", + " [-2.05870307e-02 1.62980147e-01 -9.86414541e-01]\n", + " [ 1.12479303e-02 1.76875196e-01 -9.84169014e-01]\n", + " [ 4.33688372e-02 1.90863918e-01 -9.80657998e-01]\n", + " [ 7.55887325e-02 2.04848995e-01 -9.75870500e-01]\n", + " [-9.88799749e-02 1.41249658e-01 -9.85023495e-01]\n", + " [-1.14747100e-01 1.69984269e-01 -9.78743302e-01]\n", + " [-1.30663332e-01 1.99288626e-01 -9.71190577e-01]\n", + " [-1.46540867e-01 2.28954916e-01 -9.62343712e-01]\n", + " [-1.62290521e-01 2.58784792e-01 -9.52203874e-01]\n", + " [-1.77822057e-01 2.88588166e-01 -9.40795507e-01]\n", + " [ 8.19323246e-02 2.20491068e-01 -9.71941759e-01]\n", + " [ 6.74019131e-02 2.51236145e-01 -9.65576191e-01]\n", + " [ 5.24688394e-02 2.82353730e-01 -9.57874414e-01]\n", + " [ 3.72159207e-02 3.13642105e-01 -9.48811681e-01]\n", + " [ 2.17286274e-02 3.44903636e-01 -9.38386567e-01]\n", + " [ 6.09619825e-03 3.75942814e-01 -9.26622813e-01]\n", + " [-1.72535892e-01 3.04616786e-01 -9.36717663e-01]\n", + " [-1.41568725e-01 3.20366892e-01 -9.36655407e-01]\n", + " [-1.09770914e-01 3.36059474e-01 -9.35422031e-01]\n", + " [-7.73187177e-02 3.51579590e-01 -9.32959596e-01]\n", + " [-4.43946328e-02 3.66818890e-01 -9.29232489e-01]\n", + " [-1.11892469e-02 3.81675064e-01 -9.24228839e-01]\n", + " [-9.33075690e-02 1.31284071e-01 -9.86943864e-01]\n", + " [-9.33075690e-02 1.31284071e-01 -9.86943864e-01]\n", + " [ 5.61219172e-04 3.86809104e-01 -9.22159640e-01]\n", + " [ 5.61219172e-04 3.86809104e-01 -9.22159640e-01]\n", + " [-8.82078052e-02 1.45944426e-01 -9.85352530e-01]\n", + " [-1.04021734e-01 1.74872013e-01 -9.79080823e-01]\n", + " [-1.19907063e-01 2.04353645e-01 -9.71525545e-01]\n", + " [-1.35775973e-01 2.34182007e-01 -9.62664881e-01]\n", + " [-1.51539015e-01 2.64159157e-01 -9.52499799e-01]\n", + " [-1.67105520e-01 2.94095017e-01 -9.41054656e-01]\n", + " [-5.74237739e-02 1.59508231e-01 -9.85525055e-01]\n", + " [-7.30666684e-02 1.88932388e-01 -9.79267999e-01]\n", + " [-8.88441823e-02 2.18868635e-01 -9.71701205e-01]\n", + " [-1.04668510e-01 2.49111507e-01 -9.62802140e-01]\n", + " [-1.20449624e-01 2.79464141e-01 -9.52571090e-01]\n", + " [-1.36095781e-01 3.09736139e-01 -9.41032126e-01]\n", + " [-2.59737802e-02 1.73361956e-01 -9.84515614e-01]\n", + " [-4.14145930e-02 2.03209229e-01 -9.78259087e-01]\n", + " [-5.70528880e-02 2.33530765e-01 -9.70674173e-01]\n", + " [-7.28012463e-02 2.64122992e-01 -9.61737503e-01]\n", + " [-8.85695964e-02 2.94789696e-01 -9.51448612e-01]\n", + " [-1.04265608e-01 3.25339614e-01 -9.39831271e-01]\n", + " [ 5.95853269e-03 1.87389399e-01 -9.82267636e-01]\n", + " [-9.24805339e-03 2.17587756e-01 -9.75996948e-01]\n", + " [-2.47142928e-02 2.48226491e-01 -9.68386706e-01]\n", + " [-4.03537011e-02 2.79103437e-01 -9.59412763e-01]\n", + " [-5.60768830e-02 3.10022453e-01 -9.49074002e-01]\n", + " [-7.17916271e-02 3.40790998e-01 -9.37393972e-01]\n", + " [ 3.81879312e-02 2.01484571e-01 -9.78746979e-01]\n", + " [ 2.32478285e-02 2.31963087e-01 -9.72446741e-01]\n", + " [ 7.98674012e-03 2.62851406e-01 -9.64803270e-01]\n", + " [-7.51027468e-03 2.93948045e-01 -9.55791893e-01]\n", + " [-2.31551936e-02 3.25056425e-01 -9.45411105e-01]\n", + " [-3.88566690e-02 3.55982596e-01 -9.33684396e-01]\n", + " [ 7.05270967e-02 2.15550377e-01 -9.73942485e-01]\n", + " [ 5.58845901e-02 2.46238431e-01 -9.67596790e-01]\n", + " [ 4.08606002e-02 2.77308333e-01 -9.59911715e-01]\n", + " [ 2.55385211e-02 3.08558543e-01 -9.50862455e-01]\n", + " [ 1.00045257e-02 3.39791729e-01 -9.40447495e-01]\n", + " [-5.65152215e-03 3.70812716e-01 -9.28690471e-01]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:cartToSphere: vec: [[ 0.09528019 -0.23670016 -0.96689954]\n", + " [ 0.10131393 -0.21093365 -0.97223582]\n", + " [ 0.10724355 -0.18443977 -0.97697533]\n", + " [ 0.11305544 -0.15732874 -0.98105358]\n", + " [ 0.11873377 -0.12970933 -0.98441748]\n", + " [ 0.12426094 -0.10169014 -0.98702499]\n", + " [ 0.12961815 -0.07338053 -0.988845 ]\n", + " [ 0.13478593 -0.04489086 -0.98985735]\n", + " [ 0.09528019 -0.23670016 -0.96689954]\n", + " [ 0.06865706 -0.23391648 -0.96982952]\n", + " [ 0.04142643 -0.23074558 -0.97213185]\n", + " [ 0.013703 -0.22720794 -0.97374986]\n", + " [-0.01440054 -0.22332219 -0.9746383 ]\n", + " [-0.04277224 -0.21910597 -0.9747631 ]\n", + " [-0.07130014 -0.21457673 -0.97410118]\n", + " [-0.09987213 -0.20975246 -0.97264046]\n", + " [ 0.13478593 -0.04489086 -0.98985735]\n", + " [ 0.10750961 -0.04018415 -0.99339162]\n", + " [ 0.0795867 -0.03534564 -0.99620111]\n", + " [ 0.05112433 -0.03039316 -0.99822971]\n", + " [ 0.02223083 -0.02534491 -0.99943155]\n", + " [-0.00698285 -0.02021972 -0.99977118]\n", + " [-0.03640283 -0.01503711 -0.99922406]\n", + " [-0.06591292 -0.00981725 -0.99777708]\n", + " [-0.09987213 -0.20975246 -0.97264046]\n", + " [-0.09542381 -0.18271728 -0.97852373]\n", + " [-0.09081616 -0.15499739 -0.98373179]\n", + " [-0.0860629 -0.12669533 -0.98820113]\n", + " [-0.08117892 -0.09791602 -0.99187824]\n", + " [-0.07618056 -0.06876792 -0.99471981]\n", + " [-0.07108555 -0.03936325 -0.99669322]\n", + " [-0.06591292 -0.00981725 -0.99777708]\n", + " [ 0.09783274 -0.22555315 -0.96930621]\n", + " [ 0.10515844 -0.19346919 -0.97545445]\n", + " [ 0.11231467 -0.16040245 -0.98064085]\n", + " [ 0.11927319 -0.1265537 -0.98476295]\n", + " [ 0.12600168 -0.09212298 -0.98774335]\n", + " [ 0.1324652 -0.05731205 -0.98952933]\n", + " [ 0.08377503 -0.23544827 -0.96826952]\n", + " [ 0.05072153 -0.23177227 -0.97144683]\n", + " [ 0.01686976 -0.22753541 -0.97362367]\n", + " [-0.01757205 -0.22277273 -0.97471203]\n", + " [-0.05239772 -0.21751678 -0.97464913]\n", + " [-0.08740108 -0.21179988 -0.97339707]\n", + " [ 0.12296234 -0.04295407 -0.99148132]\n", + " [ 0.08908395 -0.03709563 -0.99533309]\n", + " [ 0.05434081 -0.03105674 -0.99803936]\n", + " [ 0.01893174 -0.02487073 -0.9995114 ]\n", + " [-0.01693896 -0.01857224 -0.99968402]\n", + " [-0.05306064 -0.01219751 -0.99851679]\n", + " [-0.09785503 -0.19807281 -0.9752905 ]\n", + " [-0.0922934 -0.16446534 -0.98205554]\n", + " [-0.08650613 -0.12993112 -0.98774217]\n", + " [-0.08052018 -0.09466218 -0.99224774]\n", + " [-0.07436559 -0.05885824 -0.99549258]\n", + " [-0.06807557 -0.02272718 -0.99742127]\n", + " [ 0.09521111 -0.23660457 -0.96692974]\n", + " [ 0.09521111 -0.23660457 -0.96692974]\n", + " [-0.06582979 -0.00993629 -0.99778139]\n", + " [-0.06582979 -0.00993629 -0.99778139]\n", + " [ 0.08635516 -0.22433948 -0.97067739]\n", + " [ 0.05318299 -0.22051846 -0.97393182]\n", + " [ 0.01920981 -0.21616158 -0.97616861]\n", + " [-0.01535716 -0.21130281 -0.97729999]\n", + " [-0.05031214 -0.2059739 -0.97726324]\n", + " [-0.08544872 -0.20020676 -0.97602037]\n", + " [ 0.09358135 -0.19209699 -0.97690392]\n", + " [ 0.06012287 -0.18787522 -0.98035103]\n", + " [ 0.02585381 -0.1831867 -0.98273812]\n", + " [-0.00902129 -0.1780629 -0.98397775]\n", + " [-0.04429736 -0.17253411 -0.98400697]\n", + " [-0.07976702 -0.16663165 -0.98278742]\n", + " [ 0.10066422 -0.15887643 -0.98215324]\n", + " [ 0.06699187 -0.15426531 -0.9857557 ]\n", + " [ 0.03249726 -0.14925443 -0.98826466]\n", + " [-0.00261723 -0.143874 -0.98959255]\n", + " [-0.03814683 -0.13815398 -0.98967586]\n", + " [-0.07388299 -0.13212596 -0.98847561]\n", + " [ 0.10757481 -0.12487729 -0.98632313]\n", + " [ 0.0737595 -0.1198851 -0.99004399]\n", + " [ 0.0391091 -0.1145589 -0.99264633]\n", + " [ 0.0038244 -0.10892884 -0.99404219]\n", + " [-0.03188992 -0.10302557 -0.99416737]\n", + " [-0.06782423 -0.09688167 -0.99298228]\n", + " [ 0.11428015 -0.09029909 -0.9893362 ]\n", + " [ 0.08039157 -0.08493311 -0.99313824]\n", + " [ 0.04565489 -0.07929837 -0.9958049 ]\n", + " [ 0.01026979 -0.07342595 -0.99724779]\n", + " [-0.02555914 -0.06734793 -0.99740212]\n", + " [-0.06162148 -0.06109834 -0.99622778]\n", + " [ 0.12074485 -0.05534368 -0.99113963]\n", + " [ 0.08685176 -0.04961201 -0.99498514]\n", + " [ 0.0520981 -0.04367683 -0.99768638]\n", + " [ 0.01668287 -0.03757079 -0.9991547 ]\n", + " [-0.01918955 -0.03132786 -0.99932494]\n", + " [-0.05530847 -0.02498367 -0.9981567 ]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:fp_optics: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:fp_optics: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:cartToSphere: vec: [[ 0.2097002 -0.31401542 0.92596984]\n", + " [ 0.22958298 -0.32924107 0.91591046]\n", + " [ 0.24960746 -0.34465788 0.90493484]\n", + " [ 0.26968729 -0.3601722 0.89305361]\n", + " [ 0.2897381 -0.37569788 0.88028571]\n", + " [ 0.30967718 -0.39115557 0.86665873]\n", + " [ 0.3294234 -0.40647205 0.8522093 ]\n", + " [ 0.34889747 -0.42157972 0.83698333]\n", + " [ 0.2097002 -0.31401542 0.92596984]\n", + " [ 0.19048061 -0.33271724 0.92358886]\n", + " [ 0.17080802 -0.35167535 0.92040701]\n", + " [ 0.15074898 -0.37078132 0.91640382]\n", + " [ 0.13037251 -0.38993428 0.91156693]\n", + " [ 0.10975047 -0.40904016 0.90589237]\n", + " [ 0.0889577 -0.42801092 0.89938489]\n", + " [ 0.06807183 -0.44676405 0.89205836]\n", + " [ 0.34889747 -0.42157972 0.83698333]\n", + " [ 0.33032546 -0.44217168 0.83388806]\n", + " [ 0.31110879 -0.46283334 0.8300582 ]\n", + " [ 0.29130945 -0.48346176 0.8254717 ]\n", + " [ 0.27099246 -0.50395905 0.82011485]\n", + " [ 0.25022722 -0.52423105 0.81398289]\n", + " [ 0.22908831 -0.54418697 0.80708059]\n", + " [ 0.2076554 -0.56373988 0.79942266]\n", + " [ 0.06807183 -0.44676405 0.89205836]\n", + " [ 0.08749035 -0.46398575 0.88151158]\n", + " [ 0.10721886 -0.48117795 0.87004132]\n", + " [ 0.12717545 -0.4982516 0.8576548 ]\n", + " [ 0.14727902 -0.51512262 0.84436815]\n", + " [ 0.16744822 -0.531711 0.8302075 ]\n", + " [ 0.18760106 -0.54794065 0.81520972]\n", + " [ 0.2076554 -0.56373988 0.79942266]\n", + " [ 0.21828129 -0.32068804 0.92169 ]\n", + " [ 0.24275615 -0.33949103 0.9087438 ]\n", + " [ 0.26735792 -0.35848707 0.89443097]\n", + " [ 0.29193049 -0.37751447 0.87878292]\n", + " [ 0.31632158 -0.39642707 0.86185047]\n", + " [ 0.34038255 -0.41509244 0.84370492]\n", + " [ 0.20144795 -0.32218294 0.92499561]\n", + " [ 0.17757948 -0.34529202 0.92154161]\n", + " [ 0.15309632 -0.36867731 0.91686343]\n", + " [ 0.12812446 -0.39214999 0.91093496]\n", + " [ 0.10279623 -0.41553681 0.90374891]\n", + " [ 0.07725057 -0.43867799 0.89531781]\n", + " [ 0.34081687 -0.43049101 0.8357759 ]\n", + " [ 0.31761308 -0.45578818 0.83149207]\n", + " [ 0.29350246 -0.48108723 0.82608195]\n", + " [ 0.26860335 -0.5062059 0.81951682]\n", + " [ 0.24304365 -0.53097085 0.81178799]\n", + " [ 0.21696279 -0.55521648 0.80290834]\n", + " [ 0.07656668 -0.45420651 0.88760013]\n", + " [ 0.10058561 -0.47530448 0.87405274]\n", + " [ 0.12498845 -0.49626916 0.85912445]\n", + " [ 0.14962567 -0.51694377 0.8428412 ]\n", + " [ 0.17434743 -0.53718103 0.82525119]\n", + " [ 0.19900268 -0.5568426 0.80642684]\n", + " [ 0.20970298 -0.31413044 0.9259302 ]\n", + " [ 0.20970298 -0.31413044 0.9259302 ]\n", + " [ 0.20766078 -0.56362058 0.79950537]\n", + " [ 0.20766078 -0.56362058 0.79950537]\n", + " [ 0.21003142 -0.32881649 0.92074237]\n", + " [ 0.18616423 -0.35212497 0.91725181]\n", + " [ 0.16166242 -0.37568704 0.9125374 ]\n", + " [ 0.13665176 -0.39931484 0.90657264]\n", + " [ 0.11126466 -0.4228358 0.8993498 ]\n", + " [ 0.08564046 -0.4460903 0.89088111]\n", + " [ 0.23453048 -0.34781672 0.90775491]\n", + " [ 0.21069499 -0.37164209 0.90415141]\n", + " [ 0.18616943 -0.39566144 0.89932918]\n", + " [ 0.16107876 -0.41968966 0.89326044]\n", + " [ 0.13555543 -0.4435556 0.88593632]\n", + " [ 0.1097398 -0.46709956 0.87736832]\n", + " [ 0.25917092 -0.36698413 0.89339414]\n", + " [ 0.2354095 -0.39125754 0.8896628 ]\n", + " [ 0.21090435 -0.41567197 0.88472378]\n", + " [ 0.18577922 -0.44004441 0.87854823]\n", + " [ 0.16016617 -0.46420431 0.87112637]\n", + " [ 0.1342063 -0.48799107 0.86246935]\n", + " [ 0.28379678 -0.38615792 0.87769098]\n", + " [ 0.26015239 -0.41081308 0.8738154 ]\n", + " [ 0.23571269 -0.43556223 0.86874914]\n", + " [ 0.21059988 -0.46022361 0.86246271]\n", + " [ 0.18494518 -0.48462635 0.85494595]\n", + " [ 0.15888985 -0.50860845 0.84621006]\n", + " [ 0.30825559 -0.40519262 0.8606959 ]\n", + " [ 0.28477076 -0.43016459 0.85665865]\n", + " [ 0.26044143 -0.45518858 0.85145383]\n", + " [ 0.23538809 -0.48008312 0.84505186]\n", + " [ 0.20974069 -0.50467646 0.83744284]\n", + " [ 0.18364007 -0.52880494 0.82863844]\n", + " [ 0.33239827 -0.42395597 0.8424801 ]\n", + " [ 0.30911415 -0.44917987 0.83826361]\n", + " [ 0.28493899 -0.47441806 0.83290892]\n", + " [ 0.25999163 -0.49948859 0.82638701]\n", + " [ 0.2344005 -0.52421854 0.81868878]\n", + " [ 0.2083055 -0.54844276 0.80982675]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:fp_optics: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:cartToSphere: vec: [[ 0.27263119 0.46769854 -0.84079147]\n", + " [ 0.24974965 0.481916 -0.83987028]\n", + " [ 0.22612816 0.49596028 -0.83838503]\n", + " [ 0.20186482 0.50976112 -0.83629791]\n", + " [ 0.17705771 0.52325219 -0.83358126]\n", + " [ 0.1518051 0.53637096 -0.83021768]\n", + " [ 0.12620594 0.54905885 -0.8262 ]\n", + " [ 0.1003601 0.5612615 -0.82153112]\n", + " [ 0.27263119 0.46769854 -0.84079147]\n", + " [ 0.26254851 0.44721156 -0.85502637]\n", + " [ 0.25191404 0.42602073 -0.86893363]\n", + " [ 0.24077607 0.40419097 -0.88241517]\n", + " [ 0.22918252 0.38179186 -0.89538279]\n", + " [ 0.21718109 0.35889784 -0.90775807]\n", + " [ 0.20481966 0.33558845 -0.91947229]\n", + " [ 0.1921468 0.31194825 -0.93046649]\n", + " [ 0.1003601 0.5612615 -0.82153112]\n", + " [ 0.08825798 0.54098604 -0.83638785]\n", + " [ 0.07583312 0.51986204 -0.85087766]\n", + " [ 0.06313193 0.49795005 -0.86490468]\n", + " [ 0.0502012 0.47531557 -0.878382 ]\n", + " [ 0.03708898 0.45203059 -0.89123103]\n", + " [ 0.02384513 0.42817454 -0.90338141]\n", + " [ 0.01052123 0.40383445 -0.91477158]\n", + " [ 0.1921468 0.31194825 -0.93046649]\n", + " [ 0.16760913 0.32539324 -0.93060541]\n", + " [ 0.14244259 0.33883966 -0.92999881]\n", + " [ 0.11674078 0.35221986 -0.92860797]\n", + " [ 0.09059843 0.36546959 -0.92640375]\n", + " [ 0.06411306 0.37852738 -0.92336696]\n", + " [ 0.03738581 0.39133431 -0.91948886]\n", + " [ 0.01052123 0.40383445 -0.91477158]\n", + " [ 0.262718 0.47384521 -0.84050578]\n", + " [ 0.23416291 0.49116269 -0.83900354]\n", + " [ 0.20459393 0.50814989 -0.83661521]\n", + " [ 0.17419162 0.5246831 -0.83328562]\n", + " [ 0.14313696 0.5406472 -0.82898276]\n", + " [ 0.11161248 0.55593608 -0.8236976 ]\n", + " [ 0.26822865 0.45890544 -0.84702963]\n", + " [ 0.25549273 0.43331505 -0.86426936]\n", + " [ 0.24197616 0.40673133 -0.88091836]\n", + " [ 0.22776732 0.37928041 -0.89681013]\n", + " [ 0.21295407 0.35109937 -0.9118003 ]\n", + " [ 0.19762484 0.32233673 -0.92576641]\n", + " [ 0.09521525 0.55248838 -0.8280644 ]\n", + " [ 0.08016089 0.52706028 -0.84603883]\n", + " [ 0.0646677 0.50041742 -0.86336579]\n", + " [ 0.04882163 0.47267825 -0.87988165]\n", + " [ 0.0327112 0.4439754 -0.89544169]\n", + " [ 0.01642892 0.41445831 -0.90992 ]\n", + " [ 0.18157562 0.31788725 -0.93057938]\n", + " [ 0.15106798 0.33437593 -0.9302533 ]\n", + " [ 0.11970864 0.35079895 -0.92876797]\n", + " [ 0.08767144 0.36703671 -0.92606575]\n", + " [ 0.055136 0.38297595 -0.9221114 ]\n", + " [ 0.02228997 0.39850945 -0.91689333]\n", + " [ 0.27252083 0.46767859 -0.84083835]\n", + " [ 0.27252083 0.46767859 -0.84083835]\n", + " [ 0.01065885 0.40387624 -0.91475153]\n", + " [ 0.01065885 0.40387624 -0.91475153]\n", + " [ 0.25836054 0.46506615 -0.84673686]\n", + " [ 0.24545434 0.43944773 -0.86408209]\n", + " [ 0.23178919 0.41281907 -0.88082585]\n", + " [ 0.21745308 0.38530601 -0.89680178]\n", + " [ 0.20253333 0.35704557 -0.91186551]\n", + " [ 0.18711806 0.32818653 -0.9258944 ]\n", + " [ 0.22962764 0.48237597 -0.84533104]\n", + " [ 0.21625962 0.45670542 -0.86293217]\n", + " [ 0.20219399 0.42997879 -0.87990672]\n", + " [ 0.18751724 0.40232083 -0.89608886]\n", + " [ 0.17231531 0.37386817 -0.9113342 ]\n", + " [ 0.15667573 0.34477032 -0.92551939]\n", + " [ 0.1998913 0.49936904 -0.84301485]\n", + " [ 0.18609078 0.47368709 -0.8608082 ]\n", + " [ 0.1716532 0.44690639 -0.87795778]\n", + " [ 0.15666362 0.41915024 -0.89429838]\n", + " [ 0.14120717 0.39055464 -0.90968544]\n", + " [ 0.12537151 0.36126966 -0.92399471]\n", + " [ 0.16933157 0.51592162 -0.83973311]\n", + " [ 0.15512602 0.49026896 -0.8576551 ]\n", + " [ 0.14034298 0.46347834 -0.87492381]\n", + " [ 0.12506677 0.43567143 -0.89137462]\n", + " [ 0.10938263 0.40698333 -0.90686273]\n", + " [ 0.09337906 0.37756436 -0.92126299]\n", + " [ 0.13812904 0.53191833 -0.83545392]\n", + " [ 0.12354471 0.50633498 -0.85344103]\n", + " [ 0.10844187 0.47957825 -0.87077268]\n", + " [ 0.09290498 0.45176822 -0.8872847 ]\n", + " [ 0.07702025 0.42303894 -0.90283218]\n", + " [ 0.06087768 0.3935406 -0.91728932]\n", + " [ 0.10646621 0.54725262 -0.83016836]\n", + " [ 0.09152961 0.52177737 -0.84815724]\n", + " [ 0.07613334 0.49509741 -0.86549539]\n", + " [ 0.06036285 0.46733152 -0.88201903]\n", + " [ 0.04430601 0.4386127 -0.89758336]\n", + " [ 0.02805464 0.40909062 -0.91206239]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:fp_optics: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:cartToSphere: vec: [[ 8.65149177e-01 5.01497708e-01 4.11708217e-03]\n", + " [ 8.77134280e-01 4.80189071e-01 -7.34248995e-03]\n", + " [ 8.88737656e-01 4.58026427e-01 -1.88989535e-02]\n", + " [ 8.99873039e-01 4.35083274e-01 -3.05132426e-02]\n", + " [ 9.10461671e-01 4.11440477e-01 -4.21459386e-02]\n", + " [ 9.20434041e-01 3.87183931e-01 -5.37566773e-02]\n", + " [ 9.29730638e-01 3.62403572e-01 -6.53038436e-02]\n", + " [ 9.38302251e-01 3.37193048e-01 -7.67446077e-02]\n", + " [ 8.65149177e-01 5.01497708e-01 4.11708217e-03]\n", + " [ 8.69222173e-01 4.93538678e-01 2.95361951e-02]\n", + " [ 8.72799458e-01 4.84922013e-01 5.54233399e-02]\n", + " [ 8.75824306e-01 4.75669058e-01 8.16745532e-02]\n", + " [ 8.78247898e-01 4.65807810e-01 1.08183703e-01]\n", + " [ 8.80030915e-01 4.55370853e-01 1.34844261e-01]\n", + " [ 8.81144240e-01 4.44394451e-01 1.61549993e-01]\n", + " [ 8.81569185e-01 4.32918364e-01 1.88195275e-01]\n", + " [ 9.38302251e-01 3.37193048e-01 -7.67446077e-02]\n", + " [ 9.43483229e-01 3.27457808e-01 -5.10957913e-02]\n", + " [ 9.48013315e-01 3.17256543e-01 -2.48805266e-02]\n", + " [ 9.51831389e-01 3.06616666e-01 1.79620610e-03]\n", + " [ 9.54886579e-01 2.95567889e-01 2.88313181e-02]\n", + " [ 9.57137958e-01 2.84143131e-01 5.61213883e-02]\n", + " [ 9.58554651e-01 2.72379540e-01 8.35605573e-02]\n", + " [ 9.59116339e-01 2.60319041e-01 1.11039836e-01]\n", + " [ 8.81569185e-01 4.32918364e-01 1.88195275e-01]\n", + " [ 8.94446292e-01 4.10214638e-01 1.78016238e-01]\n", + " [ 9.06856753e-01 3.86724582e-01 1.67496049e-01]\n", + " [ 9.18710945e-01 3.62525886e-01 1.56669017e-01]\n", + " [ 9.29929526e-01 3.37698461e-01 1.45570690e-01]\n", + " [ 9.40442480e-01 3.12326582e-01 1.34238770e-01]\n", + " [ 9.50188687e-01 2.86500886e-01 1.22713900e-01]\n", + " [ 9.59116339e-01 2.60319041e-01 1.11039836e-01]\n", + " [ 8.70430974e-01 4.92289867e-01 -7.78690860e-04]\n", + " [ 8.84875330e-01 4.65589781e-01 -1.48931493e-02]\n", + " [ 8.98659808e-01 4.37678987e-01 -2.91145037e-02]\n", + " [ 9.11636150e-01 4.08703487e-01 -4.33703724e-02]\n", + " [ 9.23676469e-01 3.78821310e-01 -5.75864136e-02]\n", + " [ 9.34675476e-01 3.48199575e-01 -7.16854975e-02]\n", + " [ 8.67023973e-01 4.98037657e-01 1.50971333e-02]\n", + " [ 8.71690863e-01 4.87837499e-01 4.65791207e-02]\n", + " [ 8.75555905e-01 4.76669971e-01 7.86612764e-02]\n", + " [ 8.78525811e-01 4.64584016e-01 1.11148960e-01]\n", + " [ 8.80528269e-01 4.51639523e-01 1.43846129e-01]\n", + " [ 8.81514005e-01 4.37904701e-01 1.76557447e-01]\n", + " [ 9.40608709e-01 3.33094608e-01 -6.55990707e-02]\n", + " [ 9.46528768e-01 3.20847217e-01 -3.37691517e-02]\n", + " [ 9.51409342e-01 3.07926680e-01 -1.19305088e-03]\n", + " [ 9.55152541e-01 2.94386723e-01 3.19387127e-02]\n", + " [ 9.57683036e-01 2.80288064e-01 6.54354876e-02]\n", + " [ 9.58948341e-01 2.65701077e-01 9.91010455e-02]\n", + " [ 8.87234554e-01 4.23161279e-01 1.83710038e-01]\n", + " [ 9.02714774e-01 3.94797459e-01 1.71000009e-01]\n", + " [ 9.17403856e-01 3.65329479e-01 1.57811711e-01]\n", + " [ 9.31151506e-01 3.34903472e-01 1.44210047e-01]\n", + " [ 9.43828773e-01 3.03674826e-01 1.30264529e-01]\n", + " [ 9.55326958e-01 2.71813355e-01 1.16051298e-01]\n", + " [ 8.65205416e-01 5.01400287e-01 4.16411867e-03]\n", + " [ 8.65205416e-01 5.01400287e-01 4.16411867e-03]\n", + " [ 9.59086805e-01 2.60450760e-01 1.10986047e-01]\n", + " [ 9.59086805e-01 2.60450760e-01 1.10986047e-01]\n", + " [ 8.72293851e-01 4.88876032e-01 1.01814699e-02]\n", + " [ 8.77073614e-01 4.78538383e-01 4.17479606e-02]\n", + " [ 8.81030780e-01 4.67247231e-01 7.39242092e-02]\n", + " [ 8.84070757e-01 4.55053323e-01 1.06514642e-01]\n", + " [ 8.86120783e-01 4.42017060e-01 1.39322920e-01]\n", + " [ 8.87131498e-01 4.28206621e-01 1.72153405e-01]\n", + " [ 8.86855620e-01 4.62030439e-01 -3.87071451e-03]\n", + " [ 8.91932502e-01 4.51307500e-01 2.78918060e-02]\n", + " [ 8.96130564e-01 4.39676160e-01 6.02900246e-02]\n", + " [ 8.99353147e-01 4.27189919e-01 9.31272814e-02]\n", + " [ 9.01527011e-01 4.13909149e-01 1.26207230e-01]\n", + " [ 9.02602784e-01 3.99901292e-01 1.59333525e-01]\n", + " [ 9.00743430e-01 4.33976238e-01 -1.80526397e-02]\n", + " [ 9.06080219e-01 4.22879546e-01 1.38393320e-02]\n", + " [ 9.10487983e-01 4.10925051e-01 4.63921865e-02]\n", + " [ 9.13869459e-01 3.98166636e-01 7.94099611e-02]\n", + " [ 9.16151318e-01 3.84663628e-01 1.12697189e-01]\n", + " [ 9.17284012e-01 3.70482669e-01 1.46056952e-01]\n", + " [ 9.13807738e-01 4.04861200e-01 -3.22928422e-02]\n", + " [ 9.19365317e-01 3.93404752e-01 -3.39617818e-04]\n", + " [ 9.23951346e-01 3.81143860e-01 3.22996810e-02]\n", + " [ 9.27468453e-01 3.68131877e-01 6.54308092e-02]\n", + " [ 9.29843006e-01 3.54427346e-01 9.88597004e-02]\n", + " [ 9.31024835e-01 3.40096872e-01 1.32389104e-01]\n", + " [ 9.25920189e-01 3.74843901e-01 -4.65172363e-02]\n", + " [ 9.31658948e-01 3.63041720e-01 -1.45710202e-02]\n", + " [ 9.36391837e-01 3.50489941e-01 1.80866776e-02]\n", + " [ 9.40021359e-01 3.37241592e-01 5.12635617e-02]\n", + " [ 9.42473238e-01 3.23355418e-01 8.47671538e-02]\n", + " [ 9.43696317e-01 3.08899062e-01 1.18400296e-01]\n", + " [ 9.36975285e-01 3.44091665e-01 -6.06484983e-02]\n", + " [ 9.42855198e-01 3.31957807e-01 -2.87765569e-02]\n", + " [ 9.47703013e-01 3.19130555e-01 3.83247272e-03]\n", + " [ 9.51420958e-01 3.05663321e-01 3.69877692e-02]\n", + " [ 9.53933963e-01 2.91616163e-01 7.04982830e-02]\n", + " [ 9.55189847e-01 2.77058652e-01 1.04167462e-01]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:fp_optics: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:cartToSphere: vec: [[-0.16068879 0.5123492 -0.84360975]\n", + " [-0.13953944 0.49849256 -0.85558981]\n", + " [-0.11785439 0.48395597 -0.86711993]\n", + " [-0.09571423 0.46877568 -0.87811625]\n", + " [-0.07320059 0.45299276 -0.88850393]\n", + " [-0.0503975 0.43665418 -0.89821669]\n", + " [-0.02739212 0.41981346 -0.90719696]\n", + " [-0.00427449 0.40253081 -0.91539646]\n", + " [-0.16068879 0.5123492 -0.84360975]\n", + " [-0.14209186 0.53259657 -0.83435652]\n", + " [-0.12336002 0.55228545 -0.82447746]\n", + " [-0.10456583 0.57134387 -0.81402222]\n", + " [-0.08578159 0.58970506 -0.8030501 ]\n", + " [-0.067079 0.60730727 -0.79163015]\n", + " [-0.04852907 0.62409321 -0.77984139]\n", + " [-0.0302023 0.64000981 -0.76777292]\n", + " [-0.00427449 0.40253081 -0.91539646]\n", + " [ 0.01485691 0.42355259 -0.90574967]\n", + " [ 0.03391621 0.44412568 -0.89532233]\n", + " [ 0.05282845 0.46417433 -0.88416703]\n", + " [ 0.07152092 0.48362988 -0.87234563]\n", + " [ 0.08992349 0.50243081 -0.85992851]\n", + " [ 0.10796825 0.52052209 -0.84699446]\n", + " [ 0.12558841 0.53785388 -0.83363106]\n", + " [-0.0302023 0.64000981 -0.76777292]\n", + " [-0.00862635 0.62767366 -0.77842878]\n", + " [ 0.01331878 0.61451339 -0.78879396]\n", + " [ 0.03554811 0.60056773 -0.79878328]\n", + " [ 0.05797623 0.58587945 -0.80832173]\n", + " [ 0.08051702 0.5704956 -0.81734435]\n", + " [ 0.10308357 0.55446805 -0.82579596]\n", + " [ 0.12558841 0.53785388 -0.83363106]\n", + " [-0.1514751 0.5064638 -0.848852 ]\n", + " [-0.12518338 0.48902015 -0.86324296]\n", + " [-0.09816718 0.47059062 -0.87687381]\n", + " [-0.07057626 0.45124874 -0.88960304]\n", + " [-0.04256543 0.43108104 -0.90130867]\n", + " [-0.01429635 0.41018887 -0.91188854]\n", + " [-0.15253013 0.52119507 -0.83969653]\n", + " [-0.12963726 0.54564483 -0.82792868]\n", + " [-0.10661401 0.56918364 -0.81526893]\n", + " [-0.08359361 0.59168646 -0.80182245]\n", + " [-0.06070804 0.61303951 -0.78771638]\n", + " [-0.03808781 0.6331391 -0.77310038]\n", + " [ 0.00399173 0.4118062 -0.91126271]\n", + " [ 0.02740033 0.43727849 -0.89890864]\n", + " [ 0.05062608 0.46200071 -0.88543342]\n", + " [ 0.07353417 0.48584346 -0.8709471 ]\n", + " [ 0.09599544 0.50869343 -0.85557926]\n", + " [ 0.11788539 0.53045153 -0.83947854]\n", + " [-0.02090809 0.63468156 -0.77249088]\n", + " [ 0.00579461 0.61900241 -0.78536771]\n", + " [ 0.03296755 0.60212351 -0.79772202]\n", + " [ 0.06045369 0.5841219 -0.80941149]\n", + " [ 0.08809449 0.56508428 -0.82031648]\n", + " [ 0.11572968 0.54510829 -0.83033945]\n", + " [-0.16055419 0.51237312 -0.84362085]\n", + " [-0.16055419 0.51237312 -0.84362085]\n", + " [ 0.1254522 0.53785371 -0.83365169]\n", + " [ 0.1254522 0.53785371 -0.83365169]\n", + " [-0.14342074 0.51532129 -0.84491092]\n", + " [-0.12045427 0.53987615 -0.83308133]\n", + " [-0.09737595 0.56352639 -0.82033891]\n", + " [-0.07431947 0.58614702 -0.80678887]\n", + " [-0.05141703 0.60762467 -0.79255823]\n", + " [-0.0287991 0.62785615 -0.77779642]\n", + " [-0.11705316 0.49796747 -0.85925954]\n", + " [-0.09390673 0.52279078 -0.84727288]\n", + " [-0.07070145 0.54672925 -0.83431914]\n", + " [-0.0475723 0.56965788 -0.82050398]\n", + " [-0.02465197 0.59146439 -0.80595419]\n", + " [-0.00207062 0.6120473 -0.79081845]\n", + " [-0.08997609 0.47961152 -0.87285571]\n", + " [-0.06669292 0.50465976 -0.86073839]\n", + " [-0.04340496 0.52884642 -0.84760691]\n", + " [-0.02024818 0.55204597 -0.83356779]\n", + " [ 0.00264463 0.57414686 -0.81874806]\n", + " [ 0.02514403 0.59504928 -0.80329579]\n", + " [-0.06233974 0.46032656 -0.88555814]\n", + " [-0.03896455 0.48555552 -0.87333705]\n", + " [-0.0156398 0.50995037 -0.86006163]\n", + " [ 0.00749809 0.53338466 -0.84583957]\n", + " [ 0.0303168 0.55574699 -0.83079852]\n", + " [ 0.05268805 0.57693864 -0.81508636]\n", + " [-0.03429939 0.44019858 -0.8972451 ]\n", + " [-0.01087826 0.46556279 -0.884948 ]\n", + " [ 0.01243628 0.4901252 -0.87156332]\n", + " [ 0.03550806 0.51375815 -0.85719994]\n", + " [ 0.05820581 0.53634972 -0.84198638]\n", + " [ 0.0804028 0.5578016 -0.82607068]\n", + " [-0.00601715 0.41932843 -0.90781466]\n", + " [ 0.01740301 0.44478099 -0.89547027]\n", + " [ 0.04066017 0.4694691 -0.8820122 ]\n", + " [ 0.06361904 0.49326382 -0.86755024]\n", + " [ 0.08614987 0.51605224 -0.85221375]\n", + " [ 0.1081276 0.53773561 -0.83615121]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:cartToSphere: vec: [[-0.59888417 0.76981688 0.22072547]\n", + " [-0.59692868 0.77845309 0.19413123]\n", + " [-0.59445189 0.78663038 0.16685203]\n", + " [-0.5914377 0.79428157 0.13899003]\n", + " [-0.58787601 0.80134823 0.11064722]\n", + " [-0.58376304 0.80778001 0.08192788]\n", + " [-0.57910184 0.81353448 0.05294065]\n", + " [-0.5739027 0.8185776 0.02379906]\n", + " [-0.59888417 0.76981688 0.22072547]\n", + " [-0.5754432 0.78556562 0.22749018]\n", + " [-0.55158792 0.80063634 0.23394919]\n", + " [-0.52741829 0.81498036 0.24007699]\n", + " [-0.50303999 0.82855843 0.24584892]\n", + " [-0.4785641 0.84134075 0.25124121]\n", + " [-0.4541064 0.85330695 0.25623158]\n", + " [-0.42978553 0.8644462 0.26080098]\n", + " [-0.5739027 0.8185776 0.02379906]\n", + " [-0.54966327 0.83481322 0.03093841]\n", + " [-0.52500883 0.85024694 0.03802455]\n", + " [-0.500044 0.86482849 0.04502988]\n", + " [-0.474876 0.87851935 0.05192821]\n", + " [-0.44961458 0.89129214 0.0586946 ]\n", + " [-0.42437338 0.90312929 0.06530482]\n", + " [-0.39927214 0.91402182 0.07173476]\n", + " [-0.42978553 0.8644462 0.26080098]\n", + " [-0.42626377 0.87341263 0.23547734]\n", + " [-0.42247321 0.88185008 0.2094202 ]\n", + " [-0.41840269 0.88969055 0.18272909]\n", + " [-0.41404541 0.89687438 0.15550804]\n", + " [-0.40940021 0.90335068 0.12786331]\n", + " [-0.40447207 0.90907745 0.09990259]\n", + " [-0.39927214 0.91402182 0.07173476]\n", + " [-0.59801472 0.77368921 0.20924482]\n", + " [-0.59526906 0.78397463 0.17617752]\n", + " [-0.59172388 0.7935029 0.14218295]\n", + " [-0.5873581 0.80216283 0.10744887]\n", + " [-0.58216482 0.8098617 0.07216749]\n", + " [-0.57615267 0.81652487 0.0365409 ]\n", + " [-0.58871477 0.7767937 0.22362127]\n", + " [-0.5596937 0.7956465 0.23171017]\n", + " [-0.53014898 0.81343136 0.23931461]\n", + " [-0.50027281 0.83007208 0.24638885]\n", + " [-0.4702696 0.84551379 0.25288919]\n", + " [-0.44035386 0.85972296 0.25877581]\n", + " [-0.56341047 0.82573528 0.02701634]\n", + " [-0.53341055 0.84510134 0.03573389]\n", + " [-0.50289082 0.86321171 0.04434376]\n", + " [-0.47204769 0.87999059 0.05279713]\n", + " [-0.44108336 0.89538741 0.06104803]\n", + " [-0.41020948 0.90937342 0.06905193]\n", + " [-0.42836542 0.86837934 0.24984072]\n", + " [-0.42387086 0.87902204 0.21829737]\n", + " [-0.41896088 0.88880174 0.1857505 ]\n", + " [-0.41362104 0.89760511 0.15238996]\n", + " [-0.40784927 0.90533847 0.11841129]\n", + " [-0.40165729 0.91192829 0.08401322]\n", + " [-0.598799 0.76990206 0.22065943]\n", + " [-0.598799 0.76990206 0.22065943]\n", + " [-0.39937583 0.91397064 0.07180966]\n", + " [-0.39937583 0.91397064 0.07180966]\n", + " [-0.5878908 0.78060685 0.21222006]\n", + " [-0.5587539 0.79952153 0.220362 ]\n", + " [-0.52908875 0.81735061 0.22804183]\n", + " [-0.4990879 0.83401779 0.23521394]\n", + " [-0.46895614 0.84946825 0.24183429]\n", + " [-0.43890907 0.86366859 0.24786163]\n", + " [-0.58504546 0.79095754 0.17918698]\n", + " [-0.55561895 0.81002661 0.18746859]\n", + " [-0.52565487 0.82796421 0.19535152]\n", + " [-0.49534661 0.84469377 0.20279098]\n", + " [-0.46489913 0.86016078 0.20974326]\n", + " [-0.43452931 0.87433227 0.21616512]\n", + " [-0.58141962 0.8005386 0.14522113]\n", + " [-0.55176081 0.81973085 0.15362729]\n", + " [-0.52156057 0.83775182 0.16169867]\n", + " [-0.49101328 0.85452479 0.16939111]\n", + " [-0.46032339 0.86999596 0.17666185]\n", + " [-0.42970709 0.88413317 0.18346757]\n", + " [-0.57699261 0.80923854 0.11051023]\n", + " [-0.54715997 0.82852196 0.11902658]\n", + " [-0.51678723 0.84660051 0.12727342]\n", + " [-0.48606982 0.86339758 0.13520636]\n", + " [-0.45521146 0.87886037 0.14278295]\n", + " [-0.42442679 0.8929579 0.14996028]\n", + " [-0.57175825 0.8169642 0.07524634]\n", + " [-0.54181221 0.83630573 0.08385858]\n", + " [-0.51133201 0.85441562 0.09226872]\n", + " [-0.48051392 0.87121753 0.10043099]\n", + " [-0.44956092 0.88665981 0.10830216]\n", + " [-0.41868603 0.90071266 0.11583913]\n", + " [-0.56572588 0.82364045 0.03963131]\n", + " [-0.53572882 0.84300616 0.04832427]\n", + " [-0.50520758 0.86112104 0.05688464]\n", + " [-0.47435865 0.87790912 0.06526447]\n", + " [-0.44338441 0.89331963 0.07341862]\n", + " [-0.41249673 0.90732368 0.08130306]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:fp_optics: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:cartToSphere: vec: [[ 0.27966235 0.95106494 -0.13139426]\n", + " [ 0.27511801 0.94819144 -0.15888067]\n", + " [ 0.27026001 0.94449492 -0.18678562]\n", + " [ 0.26509569 0.93994846 -0.21499108]\n", + " [ 0.25963516 0.93453484 -0.24338081]\n", + " [ 0.25389168 0.92824713 -0.2718387 ]\n", + " [ 0.24788199 0.92108931 -0.30024825]\n", + " [ 0.24162631 0.91307666 -0.32849313]\n", + " [ 0.27966235 0.95106494 -0.13139426]\n", + " [ 0.30701494 0.94207332 -0.13505438]\n", + " [ 0.33400584 0.93231224 -0.13868664]\n", + " [ 0.36053284 0.92183085 -0.14228129]\n", + " [ 0.38649732 0.91068812 -0.14583199]\n", + " [ 0.41180408 0.89895276 -0.14933634]\n", + " [ 0.43636065 0.88670326 -0.15279633]\n", + " [ 0.46007646 0.87402826 -0.15621863]\n", + " [ 0.24162631 0.91307666 -0.32849313]\n", + " [ 0.26994563 0.90378264 -0.33212392]\n", + " [ 0.29792942 0.89370757 -0.33544723]\n", + " [ 0.32547052 0.88290298 -0.33845422]\n", + " [ 0.35246798 0.87142967 -0.34114023]\n", + " [ 0.37882742 0.85935692 -0.3435047 ]\n", + " [ 0.40446037 0.84676227 -0.34555095]\n", + " [ 0.42928263 0.8337319 -0.34728598]\n", + " [ 0.46007646 0.87402826 -0.15621863]\n", + " [ 0.45723397 0.87034084 -0.18287676]\n", + " [ 0.45385471 0.86598927 -0.20994875]\n", + " [ 0.44994761 0.86094781 -0.23730994]\n", + " [ 0.44552313 0.85520113 -0.2648399 ]\n", + " [ 0.44059362 0.84874429 -0.29242159]\n", + " [ 0.43517407 0.84158269 -0.31994078]\n", + " [ 0.42928263 0.8337319 -0.34728598]\n", + " [ 0.27781434 0.94988166 -0.14333187]\n", + " [ 0.272034 0.94581001 -0.17731589]\n", + " [ 0.26578936 0.94047442 -0.21181095]\n", + " [ 0.25909785 0.93383914 -0.24660245]\n", + " [ 0.25198394 0.92589148 -0.28147657]\n", + " [ 0.24447988 0.91664346 -0.31621883]\n", + " [ 0.29161134 0.94723332 -0.13308594]\n", + " [ 0.32490555 0.93568967 -0.13755441]\n", + " [ 0.35755451 0.92303796 -0.14197079]\n", + " [ 0.38937518 0.90938267 -0.14632197]\n", + " [ 0.42019221 0.8948503 -0.15060357]\n", + " [ 0.4498362 0.87958955 -0.15482121]\n", + " [ 0.25402958 0.90915219 -0.33001707]\n", + " [ 0.2885258 0.89723017 -0.33426169]\n", + " [ 0.32241088 0.88418509 -0.33803541]\n", + " [ 0.35549636 0.87012504 -0.34132792]\n", + " [ 0.38760839 0.85517757 -0.34413814]\n", + " [ 0.41858601 0.83948896 -0.34647372]\n", + " [ 0.45882369 0.87254432 -0.16777136]\n", + " [ 0.45497689 0.86758278 -0.20073903]\n", + " [ 0.45033269 0.86159676 -0.23420396]\n", + " [ 0.4449097 0.85455372 -0.26794272]\n", + " [ 0.43873076 0.84644458 -0.30173979]\n", + " [ 0.43182473 0.83728349 -0.335386 ]\n", + " [ 0.27974138 0.95102709 -0.13149996]\n", + " [ 0.27974138 0.95102709 -0.13149996]\n", + " [ 0.42922015 0.83380509 -0.34718747]\n", + " [ 0.42922015 0.83380509 -0.34718747]\n", + " [ 0.28973118 0.94607266 -0.14492193]\n", + " [ 0.32315852 0.93448013 -0.1493836 ]\n", + " [ 0.35594066 0.9217713 -0.15376576]\n", + " [ 0.38789445 0.90805096 -0.1580549 ]\n", + " [ 0.41884499 0.89344563 -0.16224607]\n", + " [ 0.44862376 0.8781038 -0.16634437]\n", + " [ 0.28406898 0.94196285 -0.17891565]\n", + " [ 0.31783268 0.93024934 -0.18335365]\n", + " [ 0.35095212 0.9174014 -0.18763605]\n", + " [ 0.38324349 0.90352474 -0.19174845]\n", + " [ 0.41453295 0.88874624 -0.19568485]\n", + " [ 0.44465448 0.87321386 -0.1994491 ]\n", + " [ 0.27792049 0.93659658 -0.21341755]\n", + " [ 0.31195959 0.92478845 -0.21782457]\n", + " [ 0.34535714 0.91183541 -0.22200143]\n", + " [ 0.37792823 0.89784423 -0.22593362]\n", + " [ 0.40949962 0.88294226 -0.22961495]\n", + " [ 0.43990754 0.86727713 -0.23304878]\n", + " [ 0.27130249 0.92993835 -0.24821288]\n", + " [ 0.30555456 0.9180628 -0.25258089]\n", + " [ 0.33917026 0.90503964 -0.25664526]\n", + " [ 0.37196343 0.89097652 -0.2603921 ]\n", + " [ 0.40376099 0.87600125 -0.26381599]\n", + " [ 0.43440082 0.86026114 -0.26692078]\n", + " [ 0.26423871 0.92197573 -0.28308774]\n", + " [ 0.29863938 0.9100609 -0.28740855]\n", + " [ 0.33241202 0.8970036 -0.29135338]\n", + " [ 0.36536924 0.88291202 -0.29490962]\n", + " [ 0.39733779 0.86791412 -0.2980734 ]\n", + " [ 0.42815652 0.85215688 -0.30084988]\n", + " [ 0.25676071 0.91272096 -0.31782761]\n", + " [ 0.29124385 0.90079569 -0.32209339]\n", + " [ 0.32511081 0.88774092 -0.3259126 ]\n", + " [ 0.35817332 0.87366487 -0.3292743 ]\n", + " [ 0.39025771 0.85869528 -0.33217666]\n", + " [ 0.42120307 0.84297864 -0.33462664]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:fp_optics: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:fp_optics: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:cartToSphere: vec: [[-0.86570864 0.20498098 -0.45665232]\n", + " [-0.87939013 0.19541376 -0.43415028]\n", + " [-0.89263289 0.1854989 -0.41084873]\n", + " [-0.90534461 0.17526801 -0.38682328]\n", + " [-0.91744317 0.16475392 -0.36215214]\n", + " [-0.92885559 0.15399163 -0.3369182 ]\n", + " [-0.93951755 0.14301913 -0.31121104]\n", + " [-0.94937377 0.13187765 -0.28512755]\n", + " [-0.86570864 0.20498098 -0.45665232]\n", + " [-0.86563114 0.17821176 -0.4678924 ]\n", + " [-0.86487725 0.15134621 -0.47862477]\n", + " [-0.86346186 0.12449052 -0.48881052]\n", + " [-0.86141019 0.09775173 -0.49841457]\n", + " [-0.85875765 0.07123739 -0.50740568]\n", + " [-0.85554932 0.04505507 -0.51575712]\n", + " [-0.85183861 0.01931088 -0.52344825]\n", + " [-0.94937377 0.13187765 -0.28512755]\n", + " [-0.94920943 0.1042375 -0.29687709]\n", + " [-0.94819441 0.07659417 -0.30831913]\n", + " [-0.94634509 0.04905834 -0.31941235]\n", + " [-0.94368848 0.02173777 -0.33012047]\n", + " [-0.94026168 -0.00526246 -0.34041193]\n", + " [-0.93611164 -0.03183818 -0.35025895]\n", + " [-0.93129534 -0.05788379 -0.35963655]\n", + " [-0.85183861 0.01931088 -0.52344825]\n", + " [-0.86468139 0.00840257 -0.50225043]\n", + " [-0.87716238 -0.00260707 -0.48018681]\n", + " [-0.88919177 -0.01368208 -0.45733007]\n", + " [-0.90068751 -0.02478584 -0.43375993]\n", + " [-0.91157684 -0.03588052 -0.40956104]\n", + " [-0.92179699 -0.04692676 -0.38482228]\n", + " [-0.93129534 -0.05788379 -0.35963655]\n", + " [-0.8717223 0.20076274 -0.44698383]\n", + " [-0.88820753 0.18879853 -0.41885857]\n", + " [-0.90394088 0.1763436 -0.38960726]\n", + " [-0.91876699 0.16345788 -0.35937271]\n", + " [-0.93255144 0.15020592 -0.32830779]\n", + " [-0.94517953 0.13665902 -0.29658047]\n", + " [-0.86580595 0.19329564 -0.46153748]\n", + " [-0.86525463 0.16040821 -0.47497751]\n", + " [-0.86370082 0.12748157 -0.48761598]\n", + " [-0.86118668 0.09471243 -0.49938669]\n", + " [-0.85777733 0.06229875 -0.51023222]\n", + " [-0.85355934 0.03043806 -0.52010574]\n", + " [-0.94937503 0.11987234 -0.29037506]\n", + " [-0.94860012 0.08598036 -0.30457379]\n", + " [-0.94656259 0.05219374 -0.31826886]\n", + " [-0.9433078 0.0187122 -0.33139139]\n", + " [-0.938904 -0.01427063 -0.34388315]\n", + " [-0.93344178 -0.04656246 -0.35569422]\n", + " [-0.85749044 0.01465698 -0.51429109]\n", + " [-0.87299982 0.00121562 -0.48771901]\n", + " [-0.88787573 -0.01234242 -0.45991776]\n", + " [-0.90196374 -0.02595005 -0.43103133]\n", + " [-0.91512999 -0.03953758 -0.4012155 ]\n", + " [-0.92726311 -0.05303194 -0.37063558]\n", + " [-0.86575696 0.20485763 -0.45661607]\n", + " [-0.86575696 0.20485763 -0.45661607]\n", + " [-0.93128167 -0.05775847 -0.35969209]\n", + " [-0.93128167 -0.05775847 -0.35969209]\n", + " [-0.87176997 0.18915593 -0.45192604]\n", + " [-0.87119923 0.15614617 -0.46543558]\n", + " [-0.86960285 0.12310452 -0.47815914]\n", + " [-0.867023 0.09022807 -0.49003062]\n", + " [-0.86352516 0.05771503 -0.50099229]\n", + " [-0.85919694 0.02576368 -0.51099594]\n", + " [-0.88825169 0.17707924 -0.42385361]\n", + " [-0.88763015 0.14376472 -0.43754363]\n", + " [-0.88592251 0.11044044 -0.45049331]\n", + " [-0.88317089 0.07730445 -0.46263722]\n", + " [-0.87944105 0.04455503 -0.47391801]\n", + " [-0.87482219 0.0123911 -0.48428565]\n", + " [-0.90398187 0.16453341 -0.39464608]\n", + " [-0.90331546 0.13097649 -0.40849277]\n", + " [-0.90151003 0.09743401 -0.4216471 ]\n", + " [-0.89860789 0.06410502 -0.43404425]\n", + " [-0.89467484 0.03118717 -0.44562798]\n", + " [-0.88980048 -0.00112157 -0.45634839]\n", + " [-0.91880511 0.15157888 -0.36444618]\n", + " [-0.91809943 0.11784336 -0.3784262 ]\n", + " [-0.91620911 0.08414839 -0.39176512]\n", + " [-0.91317709 0.05069386 -0.40439798]\n", + " [-0.90906959 0.01767633 -0.41626917]\n", + " [-0.9039763 -0.01470806 -0.42732952]\n", + " [-0.93258699 0.13828098 -0.33340647]\n", + " [-0.9318477 0.10443287 -0.34749624]\n", + " [-0.92988544 0.07065268 -0.36100038]\n", + " [-0.92674415 0.03714067 -0.37385272]\n", + " [-0.92249084 0.00409211 -0.38599729]\n", + " [-0.91721548 -0.02829884 -0.39738514]\n", + " [-0.94521286 0.12471184 -0.30169457]\n", + " [-0.94444607 0.09081914 -0.31586944]\n", + " [-0.9424256 0.0570221 -0.32951854]\n", + " [-0.93919645 0.02352068 -0.34257379]\n", + " [-0.9348266 -0.00949108 -0.35497767]\n", + " [-0.92940644 -0.04182058 -0.36668065]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:fp_optics: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:cartToSphere: vec: [[ 0.20003447 0.43691007 -0.87698108]\n", + " [ 0.22656492 0.4404203 -0.86873373]\n", + " [ 0.25344194 0.44364398 -0.85962038]\n", + " [ 0.28054834 0.44654894 -0.84963914]\n", + " [ 0.30776888 0.4491075 -0.83879722]\n", + " [ 0.33498916 0.45129648 -0.82711169]\n", + " [ 0.3620957 0.45309745 -0.81460997]\n", + " [ 0.38897675 0.45449701 -0.80132987]\n", + " [ 0.20003447 0.43691007 -0.87698108]\n", + " [ 0.19309087 0.46255781 -0.86530699]\n", + " [ 0.18610196 0.48774805 -0.85291729]\n", + " [ 0.17910008 0.51238823 -0.83986991]\n", + " [ 0.17212124 0.53639164 -0.82623138]\n", + " [ 0.16520569 0.55967736 -0.81207656]\n", + " [ 0.15839875 0.5821697 -0.79748873]\n", + " [ 0.15175182 0.60379735 -0.78256 ]\n", + " [ 0.38897675 0.45449701 -0.80132987]\n", + " [ 0.38164426 0.48100525 -0.78929184]\n", + " [ 0.37399537 0.50699646 -0.77658358]\n", + " [ 0.36606515 0.53237435 -0.76326526]\n", + " [ 0.35789238 0.5570504 -0.74940503]\n", + " [ 0.34951923 0.5809443 -0.73507825]\n", + " [ 0.34099107 0.60398368 -0.72036713]\n", + " [ 0.33235665 0.62610303 -0.70536094]\n", + " [ 0.15175182 0.60379735 -0.78256 ]\n", + " [ 0.17682317 0.60855381 -0.77356049]\n", + " [ 0.2023358 0.61283362 -0.76386856]\n", + " [ 0.22816566 0.6166047 -0.75348462]\n", + " [ 0.25419464 0.6198388 -0.74241831]\n", + " [ 0.28030902 0.62251186 -0.7306886 ]\n", + " [ 0.30639866 0.6246046 -0.71832371]\n", + " [ 0.33235665 0.62610303 -0.70536094]\n", + " [ 0.21152786 0.43856225 -0.87345241]\n", + " [ 0.24429137 0.44267686 -0.86276238]\n", + " [ 0.27745875 0.44632843 -0.85076881]\n", + " [ 0.31081711 0.44946414 -0.83748117]\n", + " [ 0.34415588 0.45204134 -0.82293096]\n", + " [ 0.3772668 0.45402819 -0.80717294]\n", + " [ 0.19710441 0.44815547 -0.87195557]\n", + " [ 0.18855955 0.47929456 -0.85715927]\n", + " [ 0.17997818 0.50965377 -0.84134469]\n", + " [ 0.17142506 0.53907104 -0.82463074]\n", + " [ 0.16297437 0.56739733 -0.80715527]\n", + " [ 0.15471203 0.59449517 -0.7890752 ]\n", + " [ 0.38572934 0.46610771 -0.79621384]\n", + " [ 0.37652584 0.49826097 -0.78100211]\n", + " [ 0.36688168 0.52954116 -0.76484246]\n", + " [ 0.35686676 0.55978203 -0.74785707]\n", + " [ 0.34655867 0.5888357 -0.73018464]\n", + " [ 0.3360423 0.61657189 -0.71197941]\n", + " [ 0.16264347 0.60585496 -0.77877267]\n", + " [ 0.19368521 0.61136765 -0.76727807]\n", + " [ 0.22526572 0.61613221 -0.75474264]\n", + " [ 0.25716514 0.62009501 -0.74118032]\n", + " [ 0.28917407 0.62321187 -0.72662598]\n", + " [ 0.32109105 0.62544944 -0.71113538]\n", + " [ 0.20010083 0.4370109 -0.87691569]\n", + " [ 0.20010083 0.4370109 -0.87691569]\n", + " [ 0.33229787 0.62602493 -0.70545795]\n", + " [ 0.33229787 0.62602493 -0.70545795]\n", + " [ 0.20851755 0.44975021 -0.8684729 ]\n", + " [ 0.19991513 0.48100619 -0.85361993]\n", + " [ 0.19124924 0.511473 -0.83774644]\n", + " [ 0.18258439 0.54098835 -0.82097171]\n", + " [ 0.17399409 0.56940345 -0.80343374]\n", + " [ 0.16556314 0.59658163 -0.78528925]\n", + " [ 0.24124557 0.45397395 -0.85773436]\n", + " [ 0.23249198 0.48552364 -0.84274211]\n", + " [ 0.22360047 0.51625988 -0.82672763]\n", + " [ 0.21463541 0.5460195 -0.8098113 ]\n", + " [ 0.20566924 0.57465427 -0.79213171]\n", + " [ 0.19678437 0.60202956 -0.77384515]\n", + " [ 0.27438317 0.45771396 -0.84570196]\n", + " [ 0.26549577 0.48950106 -0.83060262]\n", + " [ 0.25639798 0.52045384 -0.81448627]\n", + " [ 0.24715488 0.55040812 -0.79747437]\n", + " [ 0.23783902 0.57921592 -0.77970605]\n", + " [ 0.22853175 0.60674431 -0.76133736]\n", + " [ 0.30771763 0.46091681 -0.83238546]\n", + " [ 0.29871396 0.49288352 -0.81721221]\n", + " [ 0.28942902 0.52399898 -0.80103428]\n", + " [ 0.27992912 0.55409806 -0.78397387]\n", + " [ 0.27028783 0.58303284 -0.76617048]\n", + " [ 0.2605867 0.61067167 -0.74777984]\n", + " [ 0.34103855 0.46353924 -0.81781665]\n", + " [ 0.3319369 0.49562624 -0.80260359]\n", + " [ 0.32248473 0.52684947 -0.78640526]\n", + " [ 0.3127499 0.55704308 -0.76934421]\n", + " [ 0.30280755 0.58605915 -0.75155989]\n", + " [ 0.29274033 0.61376687 -0.73320756]\n", + " [ 0.37413788 0.46554892 -0.80205053]\n", + " [ 0.36495743 0.49769568 -0.78683231]\n", + " [ 0.35535938 0.52897092 -0.77065523]\n", + " [ 0.3454131 0.55920842 -0.75364164]\n", + " [ 0.33519556 0.5882603 -0.73593054]\n", + " [ 0.32479102 0.61599618 -0.71767646]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:fp_optics: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:cartToSphere: vec: [[-0.18871038 0.30861316 -0.93228017]\n", + " [-0.1638492 0.3215535 -0.93260752]\n", + " [-0.13836494 0.33448808 -0.93218714]\n", + " [-0.11235213 0.3473514 -0.93098013]\n", + " [-0.08590667 0.36008141 -0.92895717]\n", + " [-0.05912739 0.37261883 -0.92609889]\n", + " [-0.03211681 0.38490703 -0.92239638]\n", + " [-0.00498081 0.3968924 -0.91785163]\n", + " [-0.18871038 0.30861316 -0.93228017]\n", + " [-0.20096045 0.33258282 -0.92141389]\n", + " [-0.21291609 0.356242 -0.90981228]\n", + " [-0.22453052 0.37950369 -0.89753161]\n", + " [-0.23575772 0.40228588 -0.88463799]\n", + " [-0.24655207 0.42451169 -0.87120715]\n", + " [-0.25686781 0.4461092 -0.85732462]\n", + " [-0.26665877 0.46701122 -0.84308578]\n", + " [-0.00498081 0.3968924 -0.91785163]\n", + " [-0.01778373 0.42160265 -0.90660628]\n", + " [-0.03052732 0.44585535 -0.89458431]\n", + " [-0.04316159 0.4695603 -0.88184477]\n", + " [-0.05563811 0.49263479 -0.86845573]\n", + " [-0.06791023 0.51500373 -0.85449363]\n", + " [-0.07993271 0.53659891 -0.84004308]\n", + " [-0.09166101 0.5573576 -0.82519741]\n", + " [-0.26665877 0.46701122 -0.84308578]\n", + " [-0.24335073 0.480795 -0.84238743]\n", + " [-0.21931371 0.49439357 -0.84111622]\n", + " [-0.1946466 0.50773879 -0.83923419]\n", + " [-0.16944822 0.52076638 -0.83671362]\n", + " [-0.14381768 0.53341577 -0.83353709]\n", + " [-0.11785493 0.54563031 -0.8296974 ]\n", + " [-0.09166101 0.5573576 -0.82519741]\n", + " [-0.17799599 0.31433426 -0.93247595]\n", + " [-0.14709558 0.33019936 -0.93237936]\n", + " [-0.11535308 0.34599015 -0.93112002]\n", + " [-0.08294436 0.36159099 -0.92863997]\n", + " [-0.05005145 0.37689277 -0.92490361]\n", + " [-0.01686455 0.39179242 -0.91989906]\n", + " [-0.19400096 0.31914094 -0.92763823]\n", + " [-0.20882318 0.34832137 -0.91381897]\n", + " [-0.22315671 0.37694833 -0.89894997]\n", + " [-0.23691654 0.40486874 -0.88314883]\n", + " [-0.25001861 0.43194102 -0.86655505]\n", + " [-0.26237851 0.45803479 -0.84933012]\n", + " [-0.01065984 0.40767595 -0.91306445]\n", + " [-0.02631738 0.43766489 -0.89875293]\n", + " [-0.04183579 0.46687626 -0.88333251]\n", + " [-0.05712527 0.4951546 -0.86692481]\n", + " [-0.07209987 0.52236161 -0.8496705 ]\n", + " [-0.08667666 0.54837407 -0.83172895]\n", + " [-0.25655931 0.47296897 -0.84289838]\n", + " [-0.22748882 0.48974652 -0.84166334]\n", + " [-0.19742173 0.50617785 -0.83952882]\n", + " [-0.16653995 0.52214302 -0.83643955]\n", + " [-0.13502601 0.53753055 -0.83236343]\n", + " [-0.10306438 0.55223789 -0.82729139]\n", + " [-0.18866887 0.30873974 -0.93224666]\n", + " [-0.18866887 0.30873974 -0.93224666]\n", + " [-0.09171131 0.55724889 -0.82526523]\n", + " [-0.09171131 0.55724889 -0.82526523]\n", + " [-0.18335063 0.32477491 -0.92784902]\n", + " [-0.19825072 0.3540563 -0.91396979]\n", + " [-0.21268277 0.38276775 -0.89902997]\n", + " [-0.22656199 0.41075585 -0.88314738]\n", + " [-0.23980481 0.43787902 -0.86646155]\n", + " [-0.2523273 0.46400715 -0.84913385]\n", + " [-0.15250747 0.34073898 -0.927706 ]\n", + " [-0.16760958 0.37027125 -0.91367731]\n", + " [-0.18230213 0.39918855 -0.89856243]\n", + " [-0.19650069 0.42733646 -0.88248004]\n", + " [-0.21012286 0.45457358 -0.86556989]\n", + " [-0.22308628 0.48077079 -0.8479929 ]\n", + " [-0.12081233 0.3566095 -0.92640922]\n", + " [-0.13608921 0.38633977 -0.91226164]\n", + " [-0.15101582 0.41541244 -0.89700988]\n", + " [-0.16550737 0.44367222 -0.88077368]\n", + " [-0.179482 0.4709781 -0.86369314]\n", + " [-0.19285858 0.49720227 -0.84592876]\n", + " [-0.08844085 0.37227028 -0.923901 ]\n", + " [-0.1038651 0.40214415 -0.90966594]\n", + " [-0.11899992 0.43132047 -0.89431632]\n", + " [-0.1337595 0.45964339 -0.87797286]\n", + " [-0.14806161 0.48697252 -0.86077612]\n", + " [-0.16182557 0.51318159 -0.8428862 ]\n", + " [-0.05557473 0.38761155 -0.92014604]\n", + " [-0.07111814 0.41757303 -0.90585593]\n", + " [-0.08643488 0.44680026 -0.89044851]\n", + " [-0.10143758 0.47513723 -0.87404521]\n", + " [-0.11604279 0.5024444 -0.85678685]\n", + " [-0.13016938 0.52859699 -0.83883321]\n", + " [-0.02240384 0.40252974 -0.91513271]\n", + " [-0.03803697 0.43252168 -0.90082084]\n", + " [-0.05350793 0.46174656 -0.88539653]\n", + " [-0.06872752 0.49004873 -0.86898145]\n", + " [-0.0836105 0.51728954 -0.85171639]\n", + " [-0.09807451 0.54334547 -0.83376081]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:cartToSphere: vec: [[-1.11231916e-01 -2.07856514e-01 -9.71814350e-01]\n", + " [-1.06885779e-01 -1.80803773e-01 -9.77693933e-01]\n", + " [-1.02366330e-01 -1.53068376e-01 -9.82899388e-01]\n", + " [-9.76869528e-02 -1.24752902e-01 -9.87367192e-01]\n", + " [-9.28621984e-02 -9.59623010e-02 -9.91043818e-01]\n", + " [-8.79080212e-02 -6.68051072e-02 -9.93885938e-01]\n", + " [-8.28418475e-02 -3.73935818e-02 -9.95860908e-01]\n", + " [-7.76824965e-02 -7.84302314e-03 -9.96947299e-01]\n", + " [-1.11231916e-01 -2.07856514e-01 -9.71814350e-01]\n", + " [-1.39677604e-01 -2.02654715e-01 -9.69237450e-01]\n", + " [-1.67900396e-01 -1.97204692e-01 -9.65877718e-01]\n", + " [-1.95791231e-01 -1.91527457e-01 -9.61760379e-01]\n", + " [-2.23242957e-01 -1.85644332e-01 -9.56921504e-01]\n", + " [-2.50150146e-01 -1.79576391e-01 -9.51408022e-01]\n", + " [-2.76408315e-01 -1.73343888e-01 -9.45277917e-01]\n", + " [-3.01912629e-01 -1.66965819e-01 -9.38600650e-01]\n", + " [-7.76824965e-02 -7.84302314e-03 -9.96947299e-01]\n", + " [-1.07122393e-01 -2.60875886e-03 -9.94242419e-01]\n", + " [-1.36371902e-01 2.61321489e-03 -9.90654266e-01]\n", + " [-1.65317083e-01 7.80230481e-03 -9.86209606e-01]\n", + " [-1.93847727e-01 1.29383489e-02 -9.80946307e-01]\n", + " [-2.21858085e-01 1.80017699e-02 -9.74912779e-01]\n", + " [-2.49246803e-01 2.29735947e-02 -9.68167467e-01]\n", + " [-2.75915830e-01 2.78352935e-02 -9.60778669e-01]\n", + " [-3.01912629e-01 -1.66965819e-01 -9.38600650e-01]\n", + " [-2.99385304e-01 -1.40494015e-01 -9.43731885e-01]\n", + " [-2.96437645e-01 -1.13387923e-01 -9.48297370e-01]\n", + " [-2.93084895e-01 -8.57569045e-02 -9.52232638e-01]\n", + " [-2.89341456e-01 -5.77095602e-02 -9.55484761e-01]\n", + " [-2.85221736e-01 -2.93548930e-02 -9.58011927e-01]\n", + " [-2.80740969e-01 -8.02920855e-04 -9.59783238e-01]\n", + " [-2.75915830e-01 2.78352935e-02 -9.60778669e-01]\n", + " [-1.09457027e-01 -1.96134479e-01 -9.74448780e-01]\n", + " [-1.04013169e-01 -1.62506485e-01 -9.81209918e-01]\n", + " [-9.83219948e-02 -1.27954912e-01 -9.86894283e-01]\n", + " [-9.24097834e-02 -9.26718807e-02 -9.91399190e-01]\n", + " [-8.63059091e-02 -5.68572145e-02 -9.94644935e-01]\n", + " [-8.00430353e-02 -2.07188999e-02 -9.96576058e-01]\n", + " [-1.23640535e-01 -2.05529060e-01 -9.70809365e-01]\n", + " [-1.58368598e-01 -1.98984135e-01 -9.67121865e-01]\n", + " [-1.92653288e-01 -1.92087359e-01 -9.62282265e-01]\n", + " [-2.26296539e-01 -1.84877881e-01 -9.56352469e-01]\n", + " [-2.59104171e-01 -1.77394435e-01 -9.49418898e-01]\n", + " [-2.90883771e-01 -1.69673800e-01 -9.41593030e-01]\n", + " [-9.05521600e-02 -5.66182676e-03 -9.95875620e-01]\n", + " [-1.26520089e-01 7.47801186e-04 -9.91963763e-01]\n", + " [-1.62088439e-01 7.11866746e-03 -9.86750557e-01]\n", + " [-1.97052715e-01 1.34134606e-02 -9.80301131e-01]\n", + " [-2.31218231e-01 1.95961370e-02 -9.72704539e-01]\n", + " [-2.64399867e-01 2.56319619e-02 -9.64072463e-01]\n", + " [-3.00777182e-01 -1.55530801e-01 -9.40926807e-01]\n", + " [-2.97393906e-01 -1.22645569e-01 -9.46844723e-01]\n", + " [-2.93394713e-01 -8.89163834e-02 -9.51847372e-01]\n", + " [-2.88806425e-01 -5.45434143e-02 -9.55832551e-01]\n", + " [-2.83655659e-01 -1.97274006e-02 -9.58723264e-01]\n", + " [-2.77971036e-01 1.53286642e-02 -9.60467144e-01]\n", + " [-1.11314895e-01 -2.07747940e-01 -9.71828065e-01]\n", + " [-1.11314895e-01 -2.07747940e-01 -9.71828065e-01]\n", + " [-2.75843035e-01 2.77209210e-02 -9.60802878e-01]\n", + " [-2.75843035e-01 2.77209210e-02 -9.60802878e-01]\n", + " [-1.21831217e-01 -1.93908711e-01 -9.73425172e-01]\n", + " [-1.56698361e-01 -1.87359660e-01 -9.69712319e-01]\n", + " [-1.91123921e-01 -1.80481759e-01 -9.64830546e-01]\n", + " [-2.24909617e-01 -1.73314603e-01 -9.58841860e-01]\n", + " [-2.57861705e-01 -1.65897505e-01 -9.51832632e-01]\n", + " [-2.89788905e-01 -1.58267911e-01 -9.43914010e-01]\n", + " [-1.16509566e-01 -1.60263984e-01 -9.80173952e-01]\n", + " [-1.51727524e-01 -1.53711582e-01 -9.76397208e-01]\n", + " [-1.86509060e-01 -1.46895977e-01 -9.71409256e-01]\n", + " [-2.20654854e-01 -1.39857582e-01 -9.65272652e-01]\n", + " [-2.53971858e-01 -1.32636773e-01 -9.58073996e-01]\n", + " [-2.86271546e-01 -1.25272349e-01 -9.49923913e-01]\n", + " [-1.10917528e-01 -1.25699912e-01 -9.85848282e-01]\n", + " [-1.46421511e-01 -1.19157268e-01 -9.82019494e-01]\n", + " [-1.81494946e-01 -1.12418398e-01 -9.76945079e-01]\n", + " [-2.15937076e-01 -1.05523856e-01 -9.70688361e-01]\n", + " [-2.49554875e-01 -9.85141638e-02 -9.63336558e-01]\n", + " [-2.82161741e-01 -9.14284931e-02 -9.55000305e-01]\n", + " [-1.05080713e-01 -9.04087586e-02 -9.90345546e-01]\n", + " [-1.40804246e-01 -8.38896004e-02 -9.86476913e-01]\n", + " [-1.76104403e-01 -7.72428504e-02 -9.81336222e-01]\n", + " [-2.10778931e-01 -7.05085894e-02 -9.74987580e-01]\n", + " [-2.44634397e-01 -6.37266465e-02 -9.67518954e-01]\n", + " [-2.77485312e-01 -5.69356056e-02 -9.59041312e-01]\n", + " [-9.90278042e-02 -5.45904557e-02 -9.93586119e-01]\n", + " [-1.34902556e-01 -4.81086656e-02 -9.89690283e-01]\n", + " [-1.70362787e-01 -4.15693996e-02 -9.84504193e-01]\n", + " [-2.05204978e-01 -3.50117796e-02 -9.78092579e-01]\n", + " [-2.39235119e-01 -2.84742907e-02 -9.70544060e-01]\n", + " [-2.72268185e-01 -2.19941684e-02 -9.61970006e-01]\n", + " [-9.27909130e-02 -1.84530418e-02 -9.95514606e-01]\n", + " [-1.28747010e-01 -1.20222541e-02 -9.91604595e-01]\n", + " [-1.64299297e-01 -5.60505414e-03 -9.86394609e-01]\n", + " [-1.99243438e-01 7.60735367e-04 -9.79949730e-01]\n", + " [-2.33384894e-01 7.03839364e-03 -9.72358963e-01]\n", + " [-2.66538630e-01 1.31924978e-02 -9.63733945e-01]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:fp_optics: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:fp_optics: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:cartToSphere: vec: [[ 5.95412023e-02 -4.54218166e-01 8.88898590e-01]\n", + " [ 7.88905021e-02 -4.71503814e-01 8.78328209e-01]\n", + " [ 9.85605037e-02 -4.88750922e-01 8.66838141e-01]\n", + " [ 1.18469457e-01 -5.05870271e-01 8.54435636e-01]\n", + " [ 1.38536547e-01 -5.22777555e-01 8.41136881e-01]\n", + " [ 1.58680691e-01 -5.39392494e-01 8.26968062e-01]\n", + " [ 1.78820153e-01 -5.55638726e-01 8.11966107e-01]\n", + " [ 1.98872953e-01 -5.71444391e-01 7.96178910e-01]\n", + " [ 5.95412023e-02 -4.54218166e-01 8.88898590e-01]\n", + " [ 3.86643626e-02 -4.72539412e-01 8.80460999e-01]\n", + " [ 1.78896323e-02 -4.90467537e-01 8.71275821e-01]\n", + " [-2.69943608e-03 -5.07939854e-01 8.61388308e-01]\n", + " [-2.30180324e-02 -5.24900379e-01 8.50852374e-01]\n", + " [-4.29796382e-02 -5.41300047e-01 8.39730320e-01]\n", + " [-6.24952187e-02 -5.57096692e-01 8.28092762e-01]\n", + " [-8.14723389e-02 -5.72254793e-01 8.16018817e-01]\n", + " [ 1.98872953e-01 -5.71444391e-01 7.96178910e-01]\n", + " [ 1.77173522e-01 -5.90297673e-01 7.87501238e-01]\n", + " [ 1.55386478e-01 -6.08561863e-01 7.78143625e-01]\n", + " [ 1.33600246e-01 -6.26172279e-01 7.68153143e-01]\n", + " [ 1.11902897e-01 -6.43073022e-01 7.57584866e-01]\n", + " [ 9.03816168e-02 -6.59217034e-01 7.46501216e-01]\n", + " [ 6.91230173e-02 -6.74565484e-01 7.34971711e-01]\n", + " [ 4.82143486e-02 -6.89086634e-01 7.23073293e-01]\n", + " [-8.14723389e-02 -5.72254793e-01 8.16018817e-01]\n", + " [-6.40979436e-02 -5.89839769e-01 8.04972360e-01]\n", + " [-4.62000849e-02 -6.07271567e-01 7.93149920e-01]\n", + " [-2.78654042e-02 -6.24457219e-01 7.80561786e-01]\n", + " [-9.17700697e-03 -6.41309840e-01 7.67227132e-01]\n", + " [ 9.78465153e-03 -6.57748268e-01 7.53174267e-01]\n", + " [ 2.89409058e-02 -6.73697032e-01 7.38440745e-01]\n", + " [ 4.82143486e-02 -6.89086634e-01 7.23073293e-01]\n", + " [ 6.78610565e-02 -4.61817045e-01 8.84375426e-01]\n", + " [ 9.18009581e-02 -4.82988616e-01 8.70801115e-01]\n", + " [ 1.16141286e-01 -5.04012922e-01 8.55851726e-01]\n", + " [ 1.40732962e-01 -5.24732786e-01 8.39553296e-01]\n", + " [ 1.65426676e-01 -5.45000399e-01 8.21954123e-01]\n", + " [ 1.90071810e-01 -5.64677002e-01 8.03126759e-01]\n", + " [ 5.04967957e-02 -4.62309668e-01 8.85279529e-01]\n", + " [ 2.49674424e-02 -4.84508616e-01 8.74430116e-01]\n", + " [-3.25767822e-04 -5.06053900e-01 8.62501794e-01]\n", + " [-2.52272290e-02 -5.26839648e-01 8.49590238e-01]\n", + " [-4.95775737e-02 -5.46775533e-01 8.35810134e-01]\n", + " [-7.32115184e-02 -5.65786707e-01 8.21294999e-01]\n", + " [ 1.89360025e-01 -5.79679215e-01 7.92536932e-01]\n", + " [ 1.62695318e-01 -6.02398292e-01 7.81438757e-01]\n", + " [ 1.35987003e-01 -6.24167428e-01 7.69365034e-01]\n", + " [ 1.09397411e-01 -6.44880036e-01 7.56413872e-01]\n", + " [ 8.30870777e-02 -6.64449405e-01 7.42700158e-01]\n", + " [ 5.72156285e-02 -6.82807061e-01 7.28354919e-01]\n", + " [-7.39026534e-02 -5.79883918e-01 8.11340274e-01]\n", + " [-5.22438262e-02 -6.01345466e-01 7.97279257e-01]\n", + " [-2.98853907e-02 -6.22483918e-01 7.82061785e-01]\n", + " [-6.98177398e-03 -6.43136821e-01 7.65719455e-01]\n", + " [ 1.63188129e-02 -6.63154756e-01 7.48304394e-01]\n", + " [ 3.98720810e-02 -6.82401237e-01 7.29889559e-01]\n", + " [ 5.95352549e-02 -4.54340483e-01 8.88836475e-01]\n", + " [ 5.95352549e-02 -4.54340483e-01 8.88836475e-01]\n", + " [ 4.82191285e-02 -6.88986815e-01 7.23168088e-01]\n", + " [ 4.82191285e-02 -6.88986815e-01 7.23168088e-01]\n", + " [ 5.87857308e-02 -4.69816060e-01 8.80804807e-01]\n", + " [ 3.31395285e-02 -4.92084822e-01 8.69916260e-01]\n", + " [ 7.71137259e-03 -5.13677796e-01 8.57948516e-01]\n", + " [-1.73432428e-02 -5.34488760e-01 8.44997620e-01]\n", + " [-4.18656018e-02 -5.54427271e-01 8.31178484e-01]\n", + " [-6.56914521e-02 -5.73418592e-01 8.16624609e-01]\n", + " [ 8.26324676e-02 -4.91062404e-01 8.67196397e-01]\n", + " [ 5.66878340e-02 -5.13503171e-01 8.56213164e-01]\n", + " [ 3.09113133e-02 -5.35208096e-01 8.44154479e-01]\n", + " [ 5.45863724e-03 -5.56070061e-01 8.31117495e-01]\n", + " [-1.95128355e-02 -5.75998531e-01 8.17217806e-01]\n", + " [-4.38416329e-02 -5.94919319e-01 8.02588883e-01]\n", + " [ 1.06896516e-01 -5.12146838e-01 8.52219896e-01]\n", + " [ 8.07017701e-02 -5.34720553e-01 8.41166544e-01]\n", + " [ 5.46263342e-02 -5.56502084e-01 8.29048487e-01]\n", + " [ 2.88269574e-02 -5.77383724e-01 8.15963873e-01]\n", + " [ 3.46055324e-03 -5.97275259e-01 8.02028858e-01]\n", + " [-2.13134658e-02 -6.16103493e-01 7.87376798e-01]\n", + " [ 1.31429267e-01 -5.32911727e-01 8.35901573e-01]\n", + " [ 1.05033656e-01 -5.55578016e-01 8.24803612e-01]\n", + " [ 7.87088455e-02 -5.77399618e-01 8.12658968e-01]\n", + " [ 5.26131636e-02 -5.98268656e-01 7.99566427e-01]\n", + " [ 2.69039763e-02 -6.18095669e-01 7.85642361e-01]\n", + " [ 1.73966666e-03 -6.36808814e-01 7.71019784e-01]\n", + " [ 1.56081998e-01 -5.53208763e-01 8.18289969e-01]\n", + " [ 1.29536347e-01 -5.75926089e-01 8.07173758e-01]\n", + " [ 1.03012877e-01 -5.97750546e-01 7.95036245e-01]\n", + " [ 7.66717267e-02 -6.18574541e-01 7.81976332e-01]\n", + " [ 5.06713923e-02 -6.38309696e-01 7.68110111e-01]\n", + " [ 2.51702527e-02 -6.56885688e-01 7.53569938e-01]\n", + " [ 1.80704628e-01 -5.72898785e-01 7.99457828e-01]\n", + " [ 1.54061497e-01 -5.95624891e-01 7.88350204e-01]\n", + " [ 1.27391876e-01 -6.17414962e-01 7.76253873e-01]\n", + " [ 1.00857591e-01 -6.38162089e-01 7.63267250e-01]\n", + " [ 7.46186273e-02 -6.57779130e-01 7.49505621e-01]\n", + " [ 4.88341821e-02 -6.76197186e-01 7.35100393e-01]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:fp_optics: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:cartToSphere: vec: [[ 1.87157580e-01 3.02368497e-01 -9.34636470e-01]\n", + " [ 1.62576525e-01 3.15731231e-01 -9.34816914e-01]\n", + " [ 1.37372350e-01 3.29107417e-01 -9.34246833e-01]\n", + " [ 1.11638737e-01 3.42429563e-01 -9.32887339e-01]\n", + " [ 8.54705443e-02 3.55633704e-01 -9.30709114e-01]\n", + " [ 5.89654437e-02 3.68658652e-01 -9.27692769e-01]\n", + " [ 3.22247242e-02 3.81445788e-01 -9.23829355e-01]\n", + " [ 5.35306020e-03 3.93939376e-01 -9.19120837e-01]\n", + " [ 1.87157580e-01 3.02368497e-01 -9.34636470e-01]\n", + " [ 1.74132926e-01 2.78417625e-01 -9.44542932e-01]\n", + " [ 1.60916770e-01 2.54357143e-01 -9.53628983e-01]\n", + " [ 1.47560176e-01 2.30285617e-01 -9.61870329e-01]\n", + " [ 1.34114169e-01 2.06305042e-01 -9.69253124e-01]\n", + " [ 1.20629338e-01 1.82521031e-01 -9.75773865e-01]\n", + " [ 1.07155658e-01 1.59043241e-01 -9.81439205e-01]\n", + " [ 9.37425586e-02 1.35985726e-01 -9.86265793e-01]\n", + " [ 5.35306020e-03 3.93939376e-01 -9.19120837e-01]\n", + " [-7.99401155e-03 3.69080929e-01 -9.29362881e-01]\n", + " [-2.12939889e-02 3.43972179e-01 -9.38738359e-01]\n", + " [-3.44945327e-02 3.18716813e-01 -9.47222107e-01]\n", + " [-4.75448531e-02 2.93420014e-01 -9.54800598e-01]\n", + " [-6.03959595e-02 2.68187859e-01 -9.61471581e-01]\n", + " [-7.30003997e-02 2.43127714e-01 -9.67243432e-01]\n", + " [-8.53115495e-02 2.18349596e-01 -9.72134452e-01]\n", + " [ 9.37425586e-02 1.35985726e-01 -9.86265793e-01]\n", + " [ 6.91848866e-02 1.47299775e-01 -9.86669260e-01]\n", + " [ 4.41215677e-02 1.58872209e-01 -9.86312784e-01]\n", + " [ 1.86511784e-02 1.70633863e-01 -9.85157966e-01]\n", + " [-7.12736245e-03 1.82520327e-01 -9.83176246e-01]\n", + " [-3.31144517e-02 1.94471718e-01 -9.80349011e-01]\n", + " [-5.92095987e-02 2.06432207e-01 -9.76667788e-01]\n", + " [-8.53115495e-02 2.18349596e-01 -9.72134452e-01]\n", + " [ 1.76478443e-01 3.08106613e-01 -9.34839919e-01]\n", + " [ 1.45920571e-01 3.24500959e-01 -9.34562098e-01]\n", + " [ 1.14519879e-01 3.40848168e-01 -9.33117208e-01]\n", + " [ 8.24504181e-02 3.57029067e-01 -9.30447298e-01]\n", + " [ 4.98920954e-02 3.72930997e-01 -9.26516730e-01]\n", + " [ 1.70328390e-02 3.88447208e-01 -9.21313546e-01]\n", + " [ 1.81422528e-01 2.91990724e-01 -9.39056592e-01]\n", + " [ 1.65323939e-01 2.62549581e-01 -9.50650152e-01]\n", + " [ 1.48988592e-01 2.33041262e-01 -9.60986040e-01]\n", + " [ 1.32510461e-01 2.03652117e-01 -9.70034429e-01]\n", + " [ 1.15982662e-01 1.74576622e-01 -9.77788845e-01]\n", + " [ 9.94969568e-02 1.46018479e-01 -9.84265695e-01]\n", + " [-3.76718348e-04 3.83096173e-01 -9.23708385e-01]\n", + " [-1.67100104e-02 3.52448516e-01 -9.35682007e-01]\n", + " [-3.29205967e-02 3.21527786e-01 -9.46327701e-01]\n", + " [-4.89142971e-02 2.90527061e-01 -9.55615727e-01]\n", + " [-6.46008856e-02 2.59641665e-01 -9.63541868e-01]\n", + " [-7.98933881e-02 2.29070267e-01 -9.70125692e-01]\n", + " [ 8.31493346e-02 1.40960882e-01 -9.86517216e-01]\n", + " [ 5.26984184e-02 1.55011649e-01 -9.86506090e-01]\n", + " [ 2.15858279e-02 1.69381095e-01 -9.85314212e-01]\n", + " [-1.00064869e-02 1.83948660e-01 -9.82884917e-01]\n", + " [-4.18951355e-02 1.98604051e-01 -9.79183960e-01]\n", + " [-7.38947796e-02 2.13246006e-01 -9.74200032e-01]\n", + " [ 1.87030533e-01 3.02332480e-01 -9.34673553e-01]\n", + " [ 1.87030533e-01 3.02332480e-01 -9.34673553e-01]\n", + " [-8.51808440e-02 2.18393094e-01 -9.72136143e-01]\n", + " [-8.51808440e-02 2.18393094e-01 -9.72136143e-01]\n", + " [ 1.70849907e-01 2.97722933e-01 -9.39239780e-01]\n", + " [ 1.54707280e-01 2.68152391e-01 -9.50873258e-01]\n", + " [ 1.38349160e-01 2.38499303e-01 -9.61237532e-01]\n", + " [ 1.21869981e-01 2.08950108e-01 -9.70302819e-01]\n", + " [ 1.05363173e-01 1.79698955e-01 -9.78062824e-01]\n", + " [ 8.89205672e-02 1.50949045e-01 -9.84534163e-01]\n", + " [ 1.40240841e-01 3.14011484e-01 -9.39004417e-01]\n", + " [ 1.23993492e-01 2.84112577e-01 -9.50739532e-01]\n", + " [ 1.07591329e-01 2.54090067e-01 -9.61177582e-01]\n", + " [ 9.11299873e-02 2.24131000e-01 -9.70288936e-01]\n", + " [ 7.47036282e-02 1.94428749e-01 -9.78067906e-01]\n", + " [ 5.84042058e-02 1.65184768e-01 -9.84531839e-01]\n", + " [ 1.08799447e-01 3.30272310e-01 -9.37594199e-01]\n", + " [ 9.24779507e-02 3.00101890e-01 -9.49413864e-01]\n", + " [ 7.60634106e-02 2.69769907e-01 -9.59915910e-01]\n", + " [ 5.96522471e-02 2.39464576e-01 -9.69070857e-01]\n", + " [ 4.33388460e-02 2.09378967e-01 -9.76873683e-01]\n", + " [ 2.72148745e-02 1.79712870e-01 -9.83342583e-01]\n", + " [ 7.67001004e-02 3.46386742e-01 -9.34950972e-01]\n", + " [ 6.03362923e-02 3.16002790e-01 -9.46837773e-01]\n", + " [ 4.39426154e-02 2.85421739e-01 -9.57394108e-01]\n", + " [ 2.76156302e-02 2.54833351e-01 -9.66590575e-01]\n", + " [ 1.14492292e-02 2.24430965e-01 -9.74422730e-01]\n", + " [-4.46580115e-03 1.94413237e-01 -9.80909552e-01]\n", + " [ 4.41230616e-02 3.62242766e-01 -9.31038847e-01]\n", + " [ 2.77497600e-02 3.31704998e-01 -9.42974944e-01]\n", + " [ 1.14110339e-02 3.00936575e-01 -9.53575884e-01]\n", + " [-4.79714349e-03 2.70128873e-01 -9.62812224e-01]\n", + " [-2.07820967e-02 2.39475950e-01 -9.70679851e-01]\n", + " [-3.64544737e-02 2.09176029e-01 -9.77198271e-01]\n", + " [ 1.12565342e-02 3.77734233e-01 -9.25845635e-01]\n", + " [-5.09303443e-03 3.47104181e-01 -9.37812747e-01]\n", + " [-2.13428936e-02 3.16211774e-01 -9.48448520e-01]\n", + " [-3.73983077e-02 2.85249736e-01 -9.57723318e-01]\n", + " [-5.31683595e-02 2.54413056e-01 -9.65633016e-01]\n", + " [-6.85654479e-02 2.23900190e-01 -9.72197246e-01]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:fp_optics: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:cartToSphere: vec: [[0.88155774 0.42811896 0.19892234]\n", + " [0.89443576 0.40536683 0.18884493]\n", + " [0.90684689 0.38183427 0.17841328]\n", + " [0.91870156 0.357599 0.16766155]\n", + " [0.92992043 0.33274105 0.15662498]\n", + " [0.9404335 0.30734489 0.14534083]\n", + " [0.95017965 0.28150136 0.13384927]\n", + " [0.95910706 0.25530834 0.12219367]\n", + " [0.88155774 0.42811896 0.19892234]\n", + " [0.88099992 0.41602239 0.2253098 ]\n", + " [0.87975156 0.40353624 0.25138753]\n", + " [0.87782958 0.39071183 0.27705504]\n", + " [0.87526133 0.37760327 0.30221413]\n", + " [0.87208445 0.36426731 0.32676908]\n", + " [0.86834636 0.35076337 0.35062751]\n", + " [0.86410291 0.33715367 0.3737025 ]\n", + " [0.95910706 0.25530834 0.12219367]\n", + " [0.9584502 0.24291848 0.14954539]\n", + " [0.95693593 0.2303493 0.17667152]\n", + " [0.9545827 0.21765372 0.20346678]\n", + " [0.95141965 0.20488552 0.2298316 ]\n", + " [0.94748606 0.19209936 0.25567168]\n", + " [0.94283107 0.17935137 0.28089618]\n", + " [0.93751398 0.16670034 0.30541535]\n", + " [0.86410291 0.33715367 0.3737025 ]\n", + " [0.8761361 0.31432698 0.36549156]\n", + " [0.8877846 0.29085347 0.35671103]\n", + " [0.89896137 0.26681204 0.34738998]\n", + " [0.90958727 0.2422865 0.33756221]\n", + " [0.91959267 0.21736458 0.32726437]\n", + " [0.92891799 0.19213761 0.31653516]\n", + " [0.93751398 0.16670034 0.30541535]\n", + " [0.88722309 0.41825902 0.19466528]\n", + " [0.9027043 0.38983901 0.18207278]\n", + " [0.91739404 0.36032388 0.16898189]\n", + " [0.93114207 0.32985993 0.155457 ]\n", + " [0.94381944 0.29860291 0.1415668 ]\n", + " [0.95531748 0.26672303 0.12738659]\n", + " [0.8814448 0.42281933 0.21042549]\n", + " [0.88029501 0.40772512 0.24257148]\n", + " [0.87812349 0.39209655 0.27415219]\n", + " [0.87497628 0.37603209 0.30498586]\n", + " [0.87092262 0.35963622 0.33489638]\n", + " [0.86605339 0.34301949 0.36371575]\n", + " [0.95889773 0.25002173 0.13417999]\n", + " [0.9575144 0.23470939 0.16756396]\n", + " [0.95486039 0.21917997 0.20050383]\n", + " [0.95098495 0.20353219 0.23281383]\n", + " [0.94596032 0.18786672 0.26432019]\n", + " [0.93988121 0.17228798 0.29485618]\n", + " [0.86940656 0.32733201 0.37011618]\n", + " [0.88390797 0.29891062 0.35966532]\n", + " [0.89774422 0.26959533 0.34838725]\n", + " [0.91076622 0.23953848 0.33634241]\n", + " [0.92284581 0.20890155 0.32359815]\n", + " [0.9338776 0.17785411 0.31022659]\n", + " [0.88160175 0.42800193 0.19897918]\n", + " [0.88160175 0.42800193 0.19897918]\n", + " [0.93750511 0.1668306 0.30537146]\n", + " [0.93750511 0.1668306 0.30537146]\n", + " [0.88706406 0.41305755 0.20615724]\n", + " [0.8858931 0.39792102 0.23843714]\n", + " [0.88367784 0.3822669 0.27015826]\n", + " [0.88046435 0.366194 0.30113864]\n", + " [0.87632222 0.34980675 0.33120177]\n", + " [0.87134338 0.33321529 0.36017814]\n", + " [0.90253987 0.38459061 0.19367974]\n", + " [0.90131391 0.3693537 0.22629865]\n", + " [0.89898492 0.35364853 0.25837732]\n", + " [0.89559895 0.33757507 0.28973365]\n", + " [0.89122589 0.32123808 0.32019135]\n", + " [0.88595924 0.30474687 0.34957914]\n", + " [0.91722495 0.35503832 0.18068258]\n", + " [0.91595108 0.33973057 0.21358079]\n", + " [0.9135231 0.32400675 0.24595764]\n", + " [0.90998729 0.30796797 0.2776308 ]\n", + " [0.90541359 0.29171925 0.30842522]\n", + " [0.89989586 0.27536928 0.33817038]\n", + " [0.93096901 0.32454725 0.16722975]\n", + " [0.92965407 0.30919966 0.20034691]\n", + " [0.92714135 0.29349153 0.23296274]\n", + " [0.9234778 0.27752445 0.26489421]\n", + " [0.91873373 0.26140308 0.2959675 ]\n", + " [0.9130031 0.24523524 0.32601383]\n", + " [0.94364314 0.29327357 0.1533892 ]\n", + " [0.94229406 0.27791855 0.18666331]\n", + " [0.93971095 0.26226203 0.21945834]\n", + " [0.93594175 0.24640502 0.25159016]\n", + " [0.93105753 0.23045096 0.28288553]\n", + " [0.92515246 0.21450634 0.31317721]\n", + " [0.95513869 0.26138783 0.13923538]\n", + " [0.95376289 0.24605853 0.17260228]\n", + " [0.95112455 0.23048974 0.20551538]\n", + " [0.94727261 0.21478092 0.23778932]\n", + " [0.94227904 0.19903349 0.26925059]\n", + " [0.93623837 0.18335243 0.29973254]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:fp_optics: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:cartToSphere: vec: [[-0.39493491 0.73271543 0.55421522]\n", + " [-0.41927538 0.72139946 0.55117237]\n", + " [-0.44382546 0.70939141 0.54752424]\n", + " [-0.46845995 0.69670422 0.54327572]\n", + " [-0.49305983 0.68335922 0.53843493]\n", + " [-0.51751207 0.66938626 0.53301341]\n", + " [-0.54170932 0.65482377 0.52702642]\n", + " [-0.56554989 0.63971863 0.52049342]\n", + " [-0.39493491 0.73271543 0.55421522]\n", + " [-0.39636031 0.74812921 0.53216651]\n", + " [-0.39765965 0.7632592 0.50921724]\n", + " [-0.39879595 0.77801274 0.48544614]\n", + " [-0.39973902 0.79230497 0.46093552]\n", + " [-0.4004654 0.80605866 0.43577162]\n", + " [-0.40095815 0.81920426 0.41004506]\n", + " [-0.40120645 0.83168007 0.38385108]\n", + " [-0.56554989 0.63971863 0.52049342]\n", + " [-0.56879743 0.65503382 0.49739339]\n", + " [-0.57165677 0.67013551 0.47342047]\n", + " [-0.57409067 0.68493365 0.44864886]\n", + " [-0.57606789 0.69934532 0.42315707]\n", + " [-0.57756314 0.71329391 0.39702975]\n", + " [-0.57855723 0.72670902 0.37035866]\n", + " [-0.57903742 0.7395269 0.34324282]\n", + " [-0.40120645 0.83168007 0.38385108]\n", + " [-0.42672559 0.82103441 0.37921994]\n", + " [-0.45240118 0.80951742 0.3741854 ]\n", + " [-0.47811236 0.79713917 0.36875156]\n", + " [-0.50374293 0.78391814 0.36292619]\n", + " [-0.52918002 0.76988213 0.35672121]\n", + " [-0.55431367 0.75506901 0.35015304]\n", + " [-0.57903742 0.7395269 0.34324282]\n", + " [-0.40551893 0.72792044 0.55288899]\n", + " [-0.43550905 0.71358526 0.54875127]\n", + " [-0.46568886 0.69822233 0.54370899]\n", + " [-0.49583672 0.6818674 0.53777579]\n", + " [-0.52574446 0.66457544 0.53097292]\n", + " [-0.55521682 0.64642073 0.52333022]\n", + " [-0.39565247 0.73942718 0.54470779]\n", + " [-0.39732089 0.75814001 0.5170685 ]\n", + " [-0.3987623 0.77633367 0.48815434]\n", + " [-0.39991824 0.79384868 0.45811536]\n", + " [-0.40074552 0.81054288 0.42711038]\n", + " [-0.40121552 0.82629146 0.39530815]\n", + " [-0.56692979 0.64646899 0.51055702]\n", + " [-0.5706531 0.66510801 0.48164963]\n", + " [-0.57375581 0.68333595 0.45150442]\n", + " [-0.57617793 0.70099722 0.42026407]\n", + " [-0.5778729 0.7179508 0.38808448]\n", + " [-0.57880808 0.73406979 0.35513766]\n", + " [-0.41230521 0.82710436 0.38197223]\n", + " [-0.44370221 0.81346981 0.37602556]\n", + " [-0.47521349 0.7985357 0.36947649]\n", + " [-0.50662333 0.7823325 0.36233778]\n", + " [-0.53772387 0.76491151 0.3546314 ]\n", + " [-0.56831406 0.7463467 0.34638955]\n", + " [-0.39502269 0.73273101 0.55413207]\n", + " [-0.39502269 0.73273101 0.55413207]\n", + " [-0.57895293 0.73953848 0.34336037]\n", + " [-0.57895293 0.73953848 0.34336037]\n", + " [-0.40620817 0.73463493 0.54342105]\n", + " [-0.40802527 0.75340032 0.51565816]\n", + " [-0.40958595 0.77164758 0.48662035]\n", + " [-0.41083196 0.7892173 0.45645718]\n", + " [-0.41172046 0.80596721 0.42532708]\n", + " [-0.41222311 0.82177216 0.39339881]\n", + " [-0.43636029 0.72033638 0.53917084]\n", + " [-0.43858219 0.73921014 0.51109102]\n", + " [-0.44046775 0.75757303 0.48173776]\n", + " [-0.44195945 0.77526599 0.45125878]\n", + " [-0.4430152 0.7921464 0.4198114 ]\n", + " [-0.44360714 0.8080881 0.38756461]\n", + " [-0.46669265 0.70498733 0.53403262]\n", + " [-0.46929613 0.72390903 0.50568454]\n", + " [-0.47148886 0.74233334 0.47606665]\n", + " [-0.47321377 0.76010174 0.44532469]\n", + " [-0.47442884 0.77707137 0.413615 ]\n", + " [-0.47510605 0.79311513 0.3811071 ]\n", + " [-0.49698394 0.6886234 0.52801967]\n", + " [-0.49994714 0.70753216 0.4994508 ]\n", + " [-0.50243084 0.72596289 0.46961807]\n", + " [-0.50437773 0.7437578 0.43866553]\n", + " [-0.50574509 0.76077409 0.40674892]\n", + " [-0.50650403 0.77688408 0.37403849]\n", + " [-0.52702617 0.67129962 0.5211528 ]\n", + " [-0.53032765 0.69013451 0.49240933]\n", + " [-0.53308629 0.70851625 0.46241078]\n", + " [-0.53524388 0.72628796 0.4313001 ]\n", + " [-0.53675632 0.74330734 0.39923284]\n", + " [-0.53759325 0.7594466 0.36638008]\n", + " [-0.55662385 0.65309048 0.5134615 ]\n", + " [-0.5602413 0.67179112 0.48458888]\n", + " [-0.56325759 0.69006877 0.4544733 ]\n", + " [-0.56561323 0.70776754 0.42325735]\n", + " [-0.5672623 0.724746 0.3910968 ]\n", + " [-0.56817279 0.74087693 0.35816345]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:fp_optics: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:cartToSphere: vec: [[-0.73431882 -0.62713093 0.25977427]\n", + " [-0.74575358 -0.62315774 0.23563959]\n", + " [-0.75694016 -0.61852135 0.21088606]\n", + " [-0.76779664 -0.61322142 0.1856012 ]\n", + " [-0.77824709 -0.607265 0.15987709]\n", + " [-0.78822374 -0.60066504 0.13380902]\n", + " [-0.79766793 -0.59343973 0.10749491]\n", + " [-0.80653048 -0.58561241 0.08103509]\n", + " [-0.73431882 -0.62713093 0.25977427]\n", + " [-0.74688377 -0.60673163 0.27210542]\n", + " [-0.75922599 -0.58541406 0.28436997]\n", + " [-0.77125814 -0.56324097 0.29651388]\n", + " [-0.78289866 -0.54028371 0.30848532]\n", + " [-0.79407405 -0.51662013 0.32023436]\n", + " [-0.8047199 -0.49233374 0.33171278]\n", + " [-0.81478126 -0.46751347 0.34287412]\n", + " [-0.80653048 -0.58561241 0.08103509]\n", + " [-0.82049734 -0.56416711 0.09219327]\n", + " [-0.8340926 -0.54182708 0.10350342]\n", + " [-0.84722353 -0.5186586 0.11491539]\n", + " [-0.85980722 -0.49473165 0.12638094]\n", + " [-0.8717695 -0.47012184 0.13785277]\n", + " [-0.8830443 -0.44491252 0.14928369]\n", + " [-0.89357375 -0.41919574 0.16062652]\n", + " [-0.81478126 -0.46751347 0.34287412]\n", + " [-0.82765893 -0.46202976 0.31860508]\n", + " [-0.84012598 -0.45605806 0.29359732]\n", + " [-0.85209525 -0.44960294 0.26793819]\n", + " [-0.8634893 -0.44267304 0.24171639]\n", + " [-0.87423934 -0.43528169 0.21502423]\n", + " [-0.88428484 -0.42744767 0.1879596 ]\n", + " [-0.89357375 -0.41919574 0.16062652]\n", + " [-0.73937326 -0.62541132 0.24937495]\n", + " [-0.75323255 -0.62009547 0.21936805]\n", + " [-0.76663703 -0.61378228 0.18851785]\n", + " [-0.77944423 -0.6064818 0.1569921 ]\n", + " [-0.7915295 -0.59821778 0.12496614]\n", + " [-0.80278879 -0.58902586 0.09262128]\n", + " [-0.73985876 -0.61834045 0.26507379]\n", + " [-0.75512098 -0.59271328 0.28014865]\n", + " [-0.7699613 -0.56576806 0.29506967]\n", + " [-0.78422694 -0.53763271 0.30974052]\n", + " [-0.7977827 -0.50845047 0.32406927]\n", + " [-0.81051393 -0.47837736 0.33796786]\n", + " [-0.81263001 -0.57640419 0.08596908]\n", + " [-0.82950984 -0.54951119 0.09975412]\n", + " [-0.84573832 -0.52133972 0.11371719]\n", + " [-0.86115876 -0.49201702 0.1277687 ]\n", + " [-0.87563457 -0.46168255 0.14182148]\n", + " [-0.88904744 -0.43049338 0.15578863]\n", + " [-0.82040695 -0.4652687 0.33235143]\n", + " [-0.83592487 -0.45822017 0.30209915]\n", + " [-0.85073838 -0.4504426 0.27082405]\n", + " [-0.86470091 -0.4419502 0.23868884]\n", + " [-0.8776858 -0.43276759 0.20586368]\n", + " [-0.88958507 -0.42293183 0.17253137]\n", + " [-0.7344015 -0.62705033 0.2597351 ]\n", + " [-0.7344015 -0.62705033 0.2597351 ]\n", + " [-0.89350865 -0.41931333 0.16068174]\n", + " [-0.89350865 -0.41931333 0.16068174]\n", + " [-0.74488859 -0.61666225 0.25469327]\n", + " [-0.76030436 -0.59092055 0.26972242]\n", + " [-0.7752792 -0.5638579 0.28461628]\n", + " [-0.78965855 -0.53560368 0.29927925]\n", + " [-0.80330661 -0.50630154 0.31361958]\n", + " [-0.81610857 -0.47610763 0.32754898]\n", + " [-0.75890052 -0.61124171 0.22461872]\n", + " [-0.7747166 -0.58519872 0.23949248]\n", + " [-0.79003895 -0.5578323 0.25428642]\n", + " [-0.80471031 -0.52927379 0.26890625]\n", + " [-0.81859443 -0.49966667 0.28326025]\n", + " [-0.83157641 -0.46916702 0.29725912]\n", + " [-0.77243736 -0.60483528 0.19368738]\n", + " [-0.78859734 -0.57852942 0.20836976]\n", + " [-0.80421536 -0.55090389 0.22303041]\n", + " [-0.81913372 -0.52208971 0.23757586]\n", + " [-0.83321652 -0.49222902 0.25191432]\n", + " [-0.84634866 -0.46147763 0.26595553]\n", + " [-0.78535487 -0.59745443 0.16206767]\n", + " [-0.80179968 -0.57092623 0.17652342]\n", + " [-0.81766108 -0.54308655 0.19101663]\n", + " [-0.83278186 -0.5140649 0.20545474]\n", + " [-0.84702638 -0.48400188 0.21974642]\n", + " [-0.86027884 -0.4530533 0.23380124]\n", + " [-0.79752779 -0.5891233 0.1299352 ]\n", + " [-0.81419787 -0.56241323 0.14412907]\n", + " [-0.83025065 -0.53440338 0.15841996]\n", + " [-0.84552942 -0.50522176 0.17271646]\n", + " [-0.85989835 -0.47500791 0.18692862]\n", + " [-0.87324059 -0.443918 0.20096687]\n", + " [-0.8088519 -0.57987749 0.09747157]\n", + " [-0.82568759 -0.55302525 0.11136911]\n", + " [-0.84187955 -0.52488836 0.12542345]\n", + " [-0.85727116 -0.49559406 0.13954455]\n", + " [-0.87172607 -0.46528168 0.15364447]\n", + " [-0.8851263 -0.43410802 0.1676355 ]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:fp_optics: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:cartToSphere: vec: [[-0.97493895 -0.13907941 -0.17364034]\n", + " [-0.97132979 -0.13021912 -0.19890053]\n", + " [-0.96694365 -0.12094147 -0.22448416]\n", + " [-0.96175587 -0.11128745 -0.25028136]\n", + " [-0.95575186 -0.101301 -0.27618197]\n", + " [-0.94892753 -0.09102668 -0.30207728]\n", + " [-0.94128939 -0.08050861 -0.32786072]\n", + " [-0.93285467 -0.06979026 -0.3534282 ]\n", + " [-0.97493895 -0.13907941 -0.17364034]\n", + " [-0.97992358 -0.11484844 -0.16297118]\n", + " [-0.98426535 -0.0899553 -0.15208473]\n", + " [-0.98790478 -0.06450061 -0.14101001]\n", + " [-0.99079188 -0.03858923 -0.12977801]\n", + " [-0.99288679 -0.01232721 -0.11842238]\n", + " [-0.99416007 0.01417942 -0.10697988]\n", + " [-0.99459284 0.04082506 -0.09549033]\n", + " [-0.93285467 -0.06979026 -0.3534282 ]\n", + " [-0.93789135 -0.04396287 -0.34413236]\n", + " [-0.94227775 -0.01756682 -0.33437113]\n", + " [-0.94595365 0.00929144 -0.32416874]\n", + " [-0.94886893 0.03650762 -0.31355214]\n", + " [-0.95098332 0.06397729 -0.30255188]\n", + " [-0.95226644 0.09159378 -0.29120302]\n", + " [-0.95269845 0.11924734 -0.27954558]\n", + " [-0.99459284 0.04082506 -0.09549033]\n", + " [-0.99129123 0.051722 -0.12110544]\n", + " [-0.98712195 0.06279886 -0.14712766]\n", + " [-0.98205864 0.07400782 -0.17344646]\n", + " [-0.97608486 0.08530274 -0.19995449]\n", + " [-0.96919465 0.09663814 -0.22654536]\n", + " [-0.96139339 0.10796837 -0.25311182]\n", + " [-0.95269845 0.11924734 -0.27954558]\n", + " [-0.97347709 -0.13518788 -0.18457136]\n", + " [-0.96853511 -0.12404182 -0.21576228]\n", + " [-0.96240036 -0.11230925 -0.24733009]\n", + " [-0.9550418 -0.10007002 -0.27907195]\n", + " [-0.94645186 -0.08740606 -0.3107878 ]\n", + " [-0.936647 -0.07439832 -0.34228246]\n", + " [-0.97717623 -0.1285721 -0.16910302]\n", + " [-0.98286138 -0.09841561 -0.15587778]\n", + " [-0.98752077 -0.06736384 -0.14235464]\n", + " [-0.99105838 -0.03560831 -0.12858976]\n", + " [-0.99340088 -0.00334415 -0.11464517]\n", + " [-0.99449841 0.02923363 -0.10058982]\n", + " [-0.93515664 -0.05864338 -0.34934655]\n", + " [-0.94090073 -0.02659369 -0.33763678]\n", + " [-0.94560705 0.00620417 -0.32525192]\n", + " [-0.94917918 0.03955734 -0.31224046]\n", + " [-0.95154294 0.07327334 -0.29865876]\n", + " [-0.95264678 0.10715445 -0.28457343]\n", + " [-0.99325787 0.04545929 -0.10664075]\n", + " [-0.98863175 0.05894082 -0.13832295]\n", + " [-0.98267507 0.07264503 -0.17050632]\n", + " [-0.97535346 0.08648632 -0.20299198]\n", + " [-0.96665606 0.10038088 -0.23558384]\n", + " [-0.95659772 0.11424445 -0.26808397]\n", + " [-0.97494596 -0.13896823 -0.17368997]\n", + " [-0.97494596 -0.13896823 -0.17368997]\n", + " [-0.95272966 0.11911441 -0.27949588]\n", + " [-0.95272966 0.11911441 -0.27949588]\n", + " [-0.97572375 -0.12472839 -0.18001662]\n", + " [-0.98145046 -0.09439498 -0.16686694]\n", + " [-0.98614356 -0.06317346 -0.15339486]\n", + " [-0.98970668 -0.03125751 -0.13965553]\n", + " [-0.99206627 0.00115711 -0.12571065]\n", + " [-0.99317237 0.03387517 -0.11162936]\n", + " [-0.97081793 -0.11341478 -0.21130461]\n", + " [-0.976636 -0.08261881 -0.19838413]\n", + " [-0.98140305 -0.05095923 -0.18507085]\n", + " [-0.98502216 -0.01863277 -0.1714181 ]\n", + " [-0.98741941 0.01416474 -0.15748739]\n", + " [-0.98854424 0.04723808 -0.14334868]\n", + " [-0.9647036 -0.1015354 -0.24297641]\n", + " [-0.97057311 -0.07034012 -0.23030439]\n", + " [-0.97538183 -0.03830857 -0.21716986]\n", + " [-0.97903269 -0.00563737 -0.20362517]\n", + " [-0.98145137 0.02747895 -0.1897317 ]\n", + " [-0.98258663 0.06084531 -0.17556014]\n", + " [-0.95734935 -0.08917223 -0.2748282 ]\n", + " [-0.96322971 -0.05764406 -0.26242273]\n", + " [-0.96804728 -0.02530709 -0.24948751]\n", + " [-0.97170503 0.00764362 -0.23607396]\n", + " [-0.97412829 0.041015 -0.22224277]\n", + " [-0.97526522 0.07461162 -0.20806453]\n", + " [-0.94874747 -0.07640783 -0.30665957]\n", + " [-0.95459768 -0.04461338 -0.29453846]\n", + " [-0.95939072 -0.01203656 -0.28182366]\n", + " [-0.9630297 0.02112907 -0.26856538]\n", + " [-0.9654399 0.05469133 -0.25482279]\n", + " [-0.96656925 0.08845394 -0.24066531]\n", + " [-0.93891438 -0.06332323 -0.33827496]\n", + " [-0.94469337 -0.03132849 -0.32645514]\n", + " [-0.94942822 0.00142319 -0.31398095]\n", + " [-0.95302236 0.034739 -0.3009013 ]\n", + " [-0.95540141 0.06842667 -0.28727328]\n", + " [-0.95651359 0.10228886 -0.27316433]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:cartToSphere: vec: [[-0.88999801 0.28089098 0.35917099]\n", + " [-0.9003178 0.25731293 0.35102409]\n", + " [-0.91021235 0.23311396 0.34230303]\n", + " [-0.91959623 0.20838199 0.33304613]\n", + " [-0.92839555 0.18320661 0.32329094]\n", + " [-0.93654736 0.15767994 0.3130752 ]\n", + " [-0.94399925 0.131897 0.30243777]\n", + " [-0.95070934 0.10595557 0.29141922]\n", + " [-0.88999801 0.28089098 0.35917099]\n", + " [-0.89473607 0.29402796 0.33614719]\n", + " [-0.89897187 0.30709939 0.31231322]\n", + " [-0.9026402 0.32004913 0.28776593]\n", + " [-0.9056875 0.33282232 0.26260133]\n", + " [-0.90807135 0.34536535 0.23691603]\n", + " [-0.90976011 0.35762608 0.21080826]\n", + " [-0.91073278 0.36955434 0.18437841]\n", + " [-0.95070934 0.10595557 0.29141922]\n", + " [-0.95647241 0.11798366 0.26690894]\n", + " [-0.9615867 0.13016179 0.24167938]\n", + " [-0.96598851 0.14243599 0.21581982]\n", + " [-0.96962393 0.15475343 0.18942232]\n", + " [-0.97244902 0.1670618 0.16258309]\n", + " [-0.9744302 0.17930938 0.13540284]\n", + " [-0.97554479 0.19144531 0.10798637]\n", + " [-0.91073278 0.36955434 0.18437841]\n", + " [-0.92192972 0.34591574 0.17432123]\n", + " [-0.93260307 0.3215313 0.16391809]\n", + " [-0.94266997 0.29648284 0.15320329]\n", + " [-0.95205691 0.27085627 0.14221295]\n", + " [-0.96069964 0.24474268 0.13098559]\n", + " [-0.96854364 0.21823858 0.11956227]\n", + " [-0.97554479 0.19144531 0.10798637]\n", + " [-0.89456113 0.27073761 0.35561429]\n", + " [-0.90693548 0.24141121 0.34523711]\n", + " [-0.91858478 0.21123928 0.33403588]\n", + " [-0.92936826 0.18038601 0.32208 ]\n", + " [-0.93916996 0.14902103 0.30943903]\n", + " [-0.9478978 0.11732042 0.29618521]\n", + " [-0.89215717 0.28654354 0.34921109]\n", + " [-0.89763617 0.30260698 0.32043457]\n", + " [-0.9022945 0.31851617 0.29053759]\n", + " [-0.90602873 0.3341696 0.25969717]\n", + " [-0.90876074 0.3494686 0.22809126]\n", + " [-0.9104367 0.36431796 0.19590162]\n", + " [-0.9532756 0.11126711 0.2808652 ]\n", + " [-0.95991085 0.12611743 0.25033088]\n", + " [-0.96550726 0.14113917 0.21880462]\n", + " [-0.96996156 0.15623461 0.18645461]\n", + " [-0.97319288 0.1713075 0.15345803]\n", + " [-0.97514391 0.18626291 0.12000202]\n", + " [-0.91567124 0.35930434 0.1801293 ]\n", + " [-0.92905301 0.32982076 0.16756721]\n", + " [-0.94156496 0.29929792 0.15451923]\n", + " [-0.95306788 0.26789217 0.14105104]\n", + " [-0.96344358 0.23577126 0.12723358]\n", + " [-0.97259596 0.2031149 0.1131434 ]\n", + " [-0.89005089 0.28085648 0.3590669 ]\n", + " [-0.89005089 0.28085648 0.3590669 ]\n", + " [-0.97552001 0.19149606 0.1081202 ]\n", + " [-0.97552001 0.19149606 0.1081202 ]\n", + " [-0.89671212 0.27640591 0.34569806]\n", + " [-0.9023026 0.2924294 0.31675711]\n", + " [-0.90705053 0.308318 0.2867043 ]\n", + " [-0.910853 0.32396994 0.25571524]\n", + " [-0.91363211 0.33928613 0.22396716]\n", + " [-0.91533405 0.35417087 0.19164177]\n", + " [-0.909201 0.24701798 0.33516514]\n", + " [-0.91507756 0.26290464 0.30580094]\n", + " [-0.92005616 0.27871181 0.27534777]\n", + " [-0.92403487 0.29433725 0.24397775]\n", + " [-0.92693591 0.30968103 0.21186667]\n", + " [-0.92870516 0.3246464 0.17919664]\n", + " [-0.92094755 0.21677135 0.32382987]\n", + " [-0.92706784 0.23248424 0.29410254]\n", + " [-0.93224399 0.24817382 0.26330762]\n", + " [-0.93637432 0.263738 0.23161478]\n", + " [-0.93938057 0.27907668 0.19919927]\n", + " [-0.94120795 0.29409258 0.16624424]\n", + " [-0.93181155 0.18582967 0.31176042]\n", + " [-0.93813429 0.20133023 0.28172715]\n", + " [-0.9434753 0.21686453 0.25064741]\n", + " [-0.94773261 0.23233126 0.21868945]\n", + " [-0.95082715 0.24763085 0.18602871]\n", + " [-0.95270325 0.26266611 0.15284969]\n", + " [-0.9416772 0.15436248 0.29902554]\n", + " [-0.94816114 0.16961198 0.26874195]\n", + " [-0.95363384 0.18495316 0.23743385]\n", + " [-0.95799276 0.20028603 0.20526904]\n", + " [-0.96115796 0.21551216 0.17242357]\n", + " [-0.96307293 0.23053498 0.13908326]\n", + " [-0.95045231 0.1225462 0.28569712]\n", + " [-0.95705558 0.13750703 0.25521841]\n", + " [-0.96262586 0.15261834 0.2237389 ]\n", + " [-0.96706005 0.16778178 0.19142657]\n", + " [-0.97027747 0.18290049 0.1584583 ]\n", + " [-0.97222098 0.19787905 0.12502097]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:fp_optics: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:fp_optics: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:cartToSphere: vec: [[-0.58471277 -0.14394362 0.79836784]\n", + " [-0.60272498 -0.12684794 0.78780213]\n", + " [-0.62058955 -0.10917912 0.7764976 ]\n", + " [-0.6382105 -0.09102123 0.76446222]\n", + " [-0.65549826 -0.07245545 0.75171287]\n", + " [-0.6723693 -0.05356079 0.73827554]\n", + " [-0.68874607 -0.03441497 0.72418538]\n", + " [-0.70455722 -0.01509488 0.70948662]\n", + " [-0.58471277 -0.14394362 0.79836784]\n", + " [-0.57062327 -0.12521023 0.81161042]\n", + " [-0.55590018 -0.10586722 0.82447991]\n", + " [-0.5405724 -0.08600563 0.83688978]\n", + " [-0.52467563 -0.06571349 0.84876217]\n", + " [-0.50825259 -0.04507666 0.86002756]\n", + " [-0.49135315 -0.02417965 0.87062474]\n", + " [-0.4740341 -0.00310627 0.880501 ]\n", + " [-0.70455722 -0.01509488 0.70948662]\n", + " [-0.69123426 0.00561338 0.72260895]\n", + " [-0.67708438 0.02674463 0.73541925]\n", + " [-0.66213302 0.04821366 0.74783374]\n", + " [-0.64641244 0.06993588 0.75977624]\n", + " [-0.62996285 0.09182585 0.77117755]\n", + " [-0.61283325 0.11379661 0.78197554]\n", + " [-0.59508159 0.13575993 0.79211561]\n", + " [-0.4740341 -0.00310627 0.880501 ]\n", + " [-0.49190465 0.01601335 0.8705018 ]\n", + " [-0.50972829 0.03550379 0.85960256]\n", + " [-0.5274129 0.05528642 0.84780838]\n", + " [-0.5448714 0.075283 0.8351333 ]\n", + " [-0.56202082 0.09541449 0.82160128]\n", + " [-0.57878228 0.11560056 0.80724691]\n", + " [-0.59508159 0.13575993 0.79211561]\n", + " [-0.59253097 -0.13650231 0.79389809]\n", + " [-0.61452036 -0.11515202 0.78045163]\n", + " [-0.63619194 -0.09302487 0.76590221]\n", + " [-0.65737816 -0.07027146 0.7502772 ]\n", + " [-0.67792525 -0.04703738 0.73362445]\n", + " [-0.697693 -0.02346534 0.71601247]\n", + " [-0.57871105 -0.13579873 0.80414689]\n", + " [-0.56101383 -0.11241583 0.82013789]\n", + " [-0.54239275 -0.08820819 0.83548155]\n", + " [-0.52291067 -0.06333912 0.85003093]\n", + " [-0.50264627 -0.03796674 0.86365806]\n", + " [-0.48169424 -0.01224634 0.87625378]\n", + " [-0.69879818 -0.0061901 0.7152921 ]\n", + " [-0.68191001 0.01948458 0.73117651]\n", + " [-0.66380448 0.0457099 0.74650802]\n", + " [-0.64453806 0.07232999 0.76114326]\n", + " [-0.6241849 0.09918746 0.77495488]\n", + " [-0.60283893 0.12612167 0.78783155]\n", + " [-0.48188544 0.00510668 0.87621935]\n", + " [-0.50376852 0.02879833 0.86335852]\n", + " [-0.5254889 0.05296884 0.84915 ]\n", + " [-0.5468842 0.07747411 0.83361588]\n", + " [-0.56780171 0.10216858 0.81680035]\n", + " [-0.58809807 0.12690391 0.79877159]\n", + " [-0.58472743 -0.14382331 0.79837879]\n", + " [-0.58472743 -0.14382331 0.79837879]\n", + " [-0.59508841 0.13561614 0.79213512]\n", + " [-0.59508841 0.13561614 0.79213512]\n", + " [-0.58653187 -0.12840433 0.79968287]\n", + " [-0.56886808 -0.10482706 0.81572078]\n", + " [-0.55025731 -0.0804444 0.83111106]\n", + " [-0.5307623 -0.05541861 0.8457069 ]\n", + " [-0.51046181 -0.02990702 0.85938019]\n", + " [-0.48945081 -0.00406467 0.87202144]\n", + " [-0.60857341 -0.10686066 0.78626917]\n", + " [-0.59101575 -0.08277284 0.80240204]\n", + " [-0.572449 -0.05793238 0.81789118]\n", + " [-0.55293535 -0.03249846 0.83259015]\n", + " [-0.53255349 -0.00662664 0.84637041]\n", + " [-0.51139909 0.01952824 0.85912142]\n", + " [-0.63030212 -0.08456096 0.77173096]\n", + " [-0.61286839 -0.06001956 0.78790227]\n", + " [-0.59436866 -0.03477507 0.80344047]\n", + " [-0.5748641 -0.00898423 0.81819958]\n", + " [-0.55443292 0.01719832 0.83205069]\n", + " [-0.53317107 0.0436171 0.84488233]\n", + " [-0.65155064 -0.06165484 0.75609553]\n", + " [-0.63425921 -0.0367139 0.77224824]\n", + " [-0.61585019 -0.01111686 0.78778484]\n", + " [-0.59638339 0.01498096 0.80255992]\n", + " [-0.57593604 0.04142492 0.81644452]\n", + " [-0.55460395 0.06805822 0.82932655]\n", + " [-0.67216505 -0.03828713 0.73941074]\n", + " [-0.65503386 -0.01299899 0.7554877 ]\n", + " [-0.63673894 0.0128999 0.77097154]\n", + " [-0.61733856 0.03925463 0.78571762]\n", + " [-0.59690869 0.06590969 0.79959736]\n", + " [-0.57554456 0.09270662 0.81249858]\n", + " [-0.69200473 -0.01460028 0.7217453 ]\n", + " [-0.67505045 0.0109829 0.73768982]\n", + " [-0.65689182 0.03713233 0.75306994]\n", + " [-0.63758572 0.06369253 0.76774196]\n", + " [-0.61720675 0.09050665 0.78157813]\n", + " [-0.59584923 0.11741457 0.79446681]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:fp_optics: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:cartToSphere: vec: [[ 0.18045146 -0.78414404 0.59376375]\n", + " [ 0.16251828 -0.77442828 0.61143164]\n", + " [ 0.14420214 -0.76384614 0.62908252]\n", + " [ 0.12556384 -0.7524191 0.64660592]\n", + " [ 0.10666677 -0.74017408 0.663901 ]\n", + " [ 0.08757719 -0.72714391 0.68087588]\n", + " [ 0.06836426 -0.71336794 0.69744713]\n", + " [ 0.04909978 -0.69889246 0.71353944]\n", + " [ 0.18045146 -0.78414404 0.59376375]\n", + " [ 0.20167505 -0.77107298 0.60396493]\n", + " [ 0.22311289 -0.75708018 0.61404417]\n", + " [ 0.24467212 -0.74219977 0.6239191 ]\n", + " [ 0.26626198 -0.72647131 0.63351717]\n", + " [ 0.28779339 -0.70994027 0.64277507]\n", + " [ 0.30917877 -0.69265874 0.65163821]\n", + " [ 0.33033221 -0.67468587 0.6600603 ]\n", + " [ 0.04909978 -0.69889246 0.71353944]\n", + " [ 0.06994607 -0.68467647 0.72548306]\n", + " [ 0.09116044 -0.66961789 0.73709 ]\n", + " [ 0.11265494 -0.65374645 0.74828099]\n", + " [ 0.13434272 -0.63709854 0.75898451]\n", + " [ 0.1561366 -0.61971841 0.76913617]\n", + " [ 0.17794853 -0.60165908 0.7786788 ]\n", + " [ 0.19968992 -0.58298247 0.78756293]\n", + " [ 0.33033221 -0.67468587 0.6600603 ]\n", + " [ 0.31313907 -0.66373401 0.67926511]\n", + " [ 0.29535507 -0.65202432 0.69830485]\n", + " [ 0.27703691 -0.63957465 0.71707379]\n", + " [ 0.25824452 -0.62640941 0.73547333]\n", + " [ 0.23904224 -0.61256067 0.75341106]\n", + " [ 0.21949937 -0.59806876 0.77080074]\n", + " [ 0.19968992 -0.58298247 0.78756293]\n", + " [ 0.17275559 -0.77997223 0.60149716]\n", + " [ 0.15051167 -0.76747869 0.62315544]\n", + " [ 0.12775251 -0.75370461 0.64467717]\n", + " [ 0.10459371 -0.73869727 0.66587273]\n", + " [ 0.08115727 -0.72251718 0.68657295]\n", + " [ 0.05757162 -0.70523964 0.70662759]\n", + " [ 0.1896121 -0.77852829 0.59828167]\n", + " [ 0.21577997 -0.76188364 0.61071459]\n", + " [ 0.24217723 -0.74388787 0.62288123]\n", + " [ 0.26863594 -0.72461148 0.63464394]\n", + " [ 0.29499211 -0.7041383 0.64588614]\n", + " [ 0.32108517 -0.68256715 0.65651078]\n", + " [ 0.05820399 -0.69285036 0.71872852]\n", + " [ 0.08401262 -0.67485765 0.73315008]\n", + " [ 0.11028639 -0.65562813 0.74698639]\n", + " [ 0.13686506 -0.63522594 0.7601026 ]\n", + " [ 0.16358807 -0.61373268 0.77238018]\n", + " [ 0.19029303 -0.59124963 0.78371706]\n", + " [ 0.32284001 -0.67006772 0.66841872]\n", + " [ 0.30136301 -0.65613416 0.69185859]\n", + " [ 0.27905472 -0.64107925 0.71494465]\n", + " [ 0.25602404 -0.62494519 0.73749251]\n", + " [ 0.23238949 -0.60779103 0.75933206]\n", + " [ 0.20828065 -0.58969458 0.78030729]\n", + " [ 0.18046296 -0.78406922 0.59385906]\n", + " [ 0.18046296 -0.78406922 0.59385906]\n", + " [ 0.1996839 -0.58309985 0.78747756]\n", + " [ 0.1996839 -0.58309985 0.78747756]\n", + " [ 0.18191366 -0.77439464 0.6059871 ]\n", + " [ 0.2081155 -0.75764874 0.61859222]\n", + " [ 0.23455986 -0.73955508 0.63090408]\n", + " [ 0.26107908 -0.72018343 0.64278577]\n", + " [ 0.28750911 -0.699617 0.65412121]\n", + " [ 0.31368894 -0.6779544 0.66481357]\n", + " [ 0.15968069 -0.76180171 0.62782181]\n", + " [ 0.18593887 -0.74478351 0.64087773]\n", + " [ 0.2124782 -0.72642956 0.65356952]\n", + " [ 0.23913199 -0.70680737 0.66576215]\n", + " [ 0.26573606 -0.68599863 0.67734055]\n", + " [ 0.29212821 -0.66410158 0.68820796]\n", + " [ 0.13691103 -0.74793442 0.6494994 ]\n", + " [ 0.16316588 -0.73066389 0.66295337]\n", + " [ 0.18974234 -0.71207319 0.67598048]\n", + " [ 0.21647497 -0.69222783 0.68844696]\n", + " [ 0.24319974 -0.67120843 0.70023791]\n", + " [ 0.26975346 -0.64911335 0.71125588]\n", + " [ 0.1137202 -0.73283933 0.670831 ]\n", + " [ 0.1399116 -0.71533436 0.68463238]\n", + " [ 0.16646648 -0.69652865 0.69795183]\n", + " [ 0.19322088 -0.67648636 0.71065597]\n", + " [ 0.22001134 -0.65528768 0.72262927]\n", + " [ 0.24667416 -0.63303155 0.73377307]\n", + " [ 0.09023038 -0.71657637 0.69164788]\n", + " [ 0.11629858 -0.69885332 0.70574689]\n", + " [ 0.14277307 -0.67985336 0.71931582]\n", + " [ 0.16949153 -0.6596401 0.73222098]\n", + " [ 0.19629151 -0.63829395 0.74434567]\n", + " [ 0.22300942 -0.61591476 0.75558971]\n", + " [ 0.06657048 -0.69922057 0.71179981]\n", + " [ 0.09245692 -0.68129534 0.72614625]\n", + " [ 0.11879307 -0.66212193 0.73992078]\n", + " [ 0.14541819 -0.64176419 0.75298889]\n", + " [ 0.17217117 -0.62030335 0.76523254]\n", + " [ 0.19888923 -0.59784032 0.77655008]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:fp_optics: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:cartToSphere: vec: [[ 0.09498131 0.63086055 -0.77006072]\n", + " [ 0.07026345 0.62395181 -0.77829762]\n", + " [ 0.04503497 0.61631485 -0.78621108]\n", + " [ 0.0193955 0.60796717 -0.79372523]\n", + " [-0.00655499 0.59893033 -0.80077431]\n", + " [-0.03271594 0.58923006 -0.80730267]\n", + " [-0.05898603 0.57889665 -0.81326461]\n", + " [-0.08526325 0.56796535 -0.81862418]\n", + " [ 0.09498131 0.63086055 -0.77006072]\n", + " [ 0.10789852 0.61163168 -0.78375034]\n", + " [ 0.12087735 0.59148141 -0.79720663]\n", + " [ 0.13387049 0.5704751 -0.81033133]\n", + " [ 0.14683014 0.54868236 -0.8230362 ]\n", + " [ 0.15970789 0.52617733 -0.83524296]\n", + " [ 0.17245485 0.5030391 -0.84688311]\n", + " [ 0.18502192 0.47935199 -0.85789776]\n", + " [-0.08526325 0.56796535 -0.81862418]\n", + " [-0.07355783 0.54751387 -0.83355732]\n", + " [-0.06155678 0.52620183 -0.84812876]\n", + " [-0.04930474 0.50409055 -0.86224229]\n", + " [-0.03684689 0.48124625 -0.87581069]\n", + " [-0.02422967 0.45774162 -0.88875505]\n", + " [-0.01150124 0.43365686 -0.90100469]\n", + " [ 0.00128864 0.4090798 -0.9124977 ]\n", + " [ 0.18502192 0.47935199 -0.85789776]\n", + " [ 0.16016228 0.47087281 -0.86754068]\n", + " [ 0.13467877 0.46183907 -0.87667913]\n", + " [ 0.10866609 0.45226666 -0.88523813]\n", + " [ 0.08222015 0.44217597 -0.89315187]\n", + " [ 0.05543976 0.43159264 -0.90036338]\n", + " [ 0.02842732 0.42054811 -0.90682478]\n", + " [ 0.00128864 0.4090798 -0.9124977 ]\n", + " [ 0.0843172 0.62787432 -0.77373409]\n", + " [ 0.0536664 0.61891427 -0.78362303]\n", + " [ 0.02234751 0.60887742 -0.79294948]\n", + " [-0.00945558 0.5978018 -0.80158818]\n", + " [-0.04155774 0.5857348 -0.80943665]\n", + " [-0.07377212 0.57273425 -0.81641482]\n", + " [ 0.10051894 0.62257125 -0.77608053]\n", + " [ 0.11639725 0.59837563 -0.79271576]\n", + " [ 0.1323213 0.57286051 -0.80890167]\n", + " [ 0.14820334 0.54615227 -0.82447163]\n", + " [ 0.16395425 0.51838746 -0.83928151]\n", + " [ 0.1794839 0.48971382 -0.85320918]\n", + " [-0.08010875 0.55919653 -0.82515564]\n", + " [-0.06555723 0.53354532 -0.84322692]\n", + " [-0.05060617 0.50666192 -0.8606583 ]\n", + " [-0.03533848 0.47866611 -0.87728556]\n", + " [-0.01983972 0.44969185 -0.8929634 ]\n", + " [-0.00419924 0.41988996 -0.90756531]\n", + " [ 0.17422304 0.47580625 -0.86212224]\n", + " [ 0.14332317 0.46504024 -0.87361092]\n", + " [ 0.11158035 0.45345644 -0.88426641]\n", + " [ 0.07917058 0.44109049 -0.89396376]\n", + " [ 0.04627581 0.42798963 -0.90259815]\n", + " [ 0.01308605 0.41421424 -0.91008534]\n", + " [ 0.09494178 0.63077406 -0.77013644]\n", + " [ 0.09494178 0.63077406 -0.77013644]\n", + " [ 0.00133775 0.40920447 -0.91244173]\n", + " [ 0.00133775 0.40920447 -0.91244173]\n", + " [ 0.08987049 0.61962604 -0.77973513]\n", + " [ 0.10569617 0.59530345 -0.79651875]\n", + " [ 0.12158987 0.56966397 -0.81283385]\n", + " [ 0.13746384 0.54283353 -0.828514 ]\n", + " [ 0.15322869 0.51494823 -0.84341525]\n", + " [ 0.16879387 0.48615577 -0.85741541]\n", + " [ 0.05914491 0.61054621 -0.78976908]\n", + " [ 0.07480119 0.58589135 -0.80693005]\n", + " [ 0.09058875 0.55992904 -0.8235734 ]\n", + " [ 0.10641981 0.53278346 -0.83953357]\n", + " [ 0.1222044 0.50458947 -0.85466693]\n", + " [ 0.13785086 0.47549473 -0.86885091]\n", + " [ 0.0277404 0.60040295 -0.79921635]\n", + " [ 0.04319637 0.57545582 -0.8166913 ]\n", + " [ 0.05884652 0.54921336 -0.83360768]\n", + " [ 0.07460343 0.52179784 -0.84980076]\n", + " [ 0.09037706 0.49334308 -0.86512692]\n", + " [ 0.10607509 0.46399708 -0.87946278]\n", + " [-0.00415942 0.5892339 -0.8079518 ]\n", + " [ 0.01106416 0.56403316 -0.82567801]\n", + " [ 0.02654415 0.53755194 -0.84281274]\n", + " [ 0.04219403 0.50991094 -0.85919177]\n", + " [ 0.05792437 0.4812434 -0.87467111]\n", + " [ 0.07364293 0.451698 -0.88912633]\n", + " [-0.03636944 0.57708602 -0.81587315]\n", + " [-0.02141052 0.551669 -0.83378829]\n", + " [-0.0061338 0.52498951 -0.85108659]\n", + " [ 0.00937559 0.49716734 -0.86760402]\n", + " [ 0.02502955 0.4683357 -0.88319601]\n", + " [ 0.04073667 0.43864415 -0.89773706]\n", + " [-0.06870249 0.5640168 -0.82290037]\n", + " [-0.05403945 0.5384202 -0.84094199]\n", + " [-0.03899806 0.51158281 -0.85834852]\n", + " [-0.0236618 0.48362427 -0.87495582]\n", + " [-0.00811696 0.45467826 -0.89061877]\n", + " [ 0.00754653 0.42489532 -0.90521103]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:fp_optics: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:cartToSphere: vec: [[-0.23950757 0.23168244 -0.94284642]\n", + " [-0.24626733 0.20591483 -0.94707523]\n", + " [-0.25283533 0.17941874 -0.95072773]\n", + " [-0.25918841 0.15230486 -0.95374242]\n", + " [-0.26530301 0.1246823 -0.95606937]\n", + " [-0.27115543 0.09665991 -0.95766988]\n", + " [-0.27672239 0.06834719 -0.95851624]\n", + " [-0.28198162 0.0398546 -0.95859166]\n", + " [-0.23950757 0.23168244 -0.94284642]\n", + " [-0.21362688 0.22887735 -0.9497256 ]\n", + " [-0.18705272 0.22568736 -0.95607348]\n", + " [-0.15988998 0.22213341 -0.961817 ]\n", + " [-0.13224332 0.21823449 -0.96689473]\n", + " [-0.10421833 0.21400852 -0.97125635]\n", + " [-0.07592221 0.20947318 -0.97486245]\n", + " [-0.04746398 0.20464661 -0.97768448]\n", + " [-0.28198162 0.0398546 -0.95859166]\n", + " [-0.25553353 0.03512471 -0.96616193]\n", + " [-0.22833865 0.03026612 -0.97311121]\n", + " [-0.20049448 0.02529701 -0.97936818]\n", + " [-0.17210125 0.02023589 -0.9848714 ]\n", + " [-0.14326339 0.0151018 -0.98956937]\n", + " [-0.11408986 0.00991447 -0.99342096]\n", + " [-0.0846936 0.00469417 -0.99639599]\n", + " [-0.04746398 0.20464661 -0.97768448]\n", + " [-0.05272609 0.17760826 -0.98268778]\n", + " [-0.05804501 0.14988506 -0.9869981 ]\n", + " [-0.06339769 0.12157989 -0.99055493]\n", + " [-0.06876136 0.09279787 -0.99330782]\n", + " [-0.07411342 0.06364757 -0.99521665]\n", + " [-0.0794315 0.03424124 -0.99625206]\n", + " [-0.0846936 0.00469417 -0.99639599]\n", + " [-0.24238948 0.22053505 -0.94478126]\n", + " [-0.25054745 0.18844891 -0.94958569]\n", + " [-0.25839461 0.15537883 -0.95346193]\n", + " [-0.26588772 0.12152623 -0.95631328]\n", + " [-0.27298322 0.08709161 -0.95806848]\n", + " [-0.27963867 0.05227696 -0.95868104]\n", + " [-0.22833864 0.23042096 -0.94592159]\n", + " [-0.19613869 0.22672022 -0.95400606]\n", + " [-0.16300139 0.22246257 -0.96121847]\n", + " [-0.12911943 0.21768374 -0.96744093]\n", + " [-0.09468726 0.21241683 -0.9725808 ]\n", + " [-0.05990302 0.20669455 -0.97657001]\n", + " [-0.27053067 0.03790736 -0.96196475]\n", + " [-0.23760128 0.03202254 -0.97083479]\n", + " [-0.2036469 0.02596229 -0.97870011]\n", + " [-0.1688508 0.0197605 -0.98544352]\n", + " [-0.13340527 0.01345226 -0.99097027]\n", + " [-0.09751261 0.00707409 -0.99520915]\n", + " [-0.04984765 0.19296562 -0.97993851]\n", + " [-0.05633899 0.15935412 -0.98561259]\n", + " [-0.06289252 0.12481601 -0.99018458]\n", + " [-0.06946623 0.08954376 -0.99355743]\n", + " [-0.07601852 0.05373726 -0.99565732]\n", + " [-0.08250832 0.01760449 -0.99643487]\n", + " [-0.23944378 0.23158678 -0.94288612]\n", + " [-0.23944378 0.23158678 -0.94288612]\n", + " [-0.08477649 0.0048132 -0.99638837]\n", + " [-0.08477649 0.0048132 -0.99638837]\n", + " [-0.23124769 0.21931168 -0.94785384]\n", + " [-0.19894104 0.2154655 -0.95603195]\n", + " [-0.16569176 0.21108754 -0.96332149]\n", + " [-0.13169158 0.20621246 -0.96960495]\n", + " [-0.09713456 0.20087254 -0.97478977]\n", + " [-0.06221908 0.19510006 -0.97880782]\n", + " [-0.23931807 0.18706662 -0.9527502 ]\n", + " [-0.2067546 0.18281879 -0.96116066]\n", + " [-0.17323268 0.17810861 -0.96864223]\n", + " [-0.13894145 0.17296821 -0.97507809]\n", + " [-0.10407424 0.16742838 -0.98037559]\n", + " [-0.06883034 0.16152079 -0.98446606]\n", + " [-0.24710121 0.15384246 -0.95669927]\n", + " [-0.21434695 0.14920476 -0.96529442]\n", + " [-0.18061764 0.14417194 -0.97292945]\n", + " [-0.14610029 0.13877485 -0.97948775]\n", + " [-0.11098786 0.13304391 -0.98487614]\n", + " [-0.07548071 0.12701107 -0.9890252 ]\n", + " [-0.25455318 0.11983935 -0.95960472]\n", + " [-0.22167269 0.11482038 -0.96833749]\n", + " [-0.18780069 0.10947221 -0.97608746]\n", + " [-0.15312255 0.10382561 -0.98273787]\n", + " [-0.11783104 0.09791168 -0.9881949 ]\n", + " [-0.08212753 0.09176331 -0.99238831]\n", + " [-0.26162979 0.08525723 -0.96139537]\n", + " [-0.2286864 0.0798645 -0.97021863]\n", + " [-0.19473606 0.07420795 -0.9780445 ]\n", + " [-0.15996298 0.06831924 -0.98475597]\n", + " [-0.12455977 0.06223091 -0.99025864]\n", + " [-0.08872851 0.05597727 -0.99448167]\n", + " [-0.26828809 0.05029817 -0.96202474]\n", + " [-0.23534415 0.04454 -0.97089099]\n", + " [-0.20137956 0.03858331 -0.97875309]\n", + " [-0.16657776 0.03246135 -0.98549384]\n", + " [-0.13113116 0.0262085 -0.99101853]\n", + " [-0.09524207 0.01986071 -0.995256 ]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:fp_optics: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:cartToSphere: vec: [[-0.28773684 -0.37746275 0.88018713]\n", + " [-0.27029811 -0.36094931 0.89255506]\n", + " [-0.25218635 -0.34393199 0.9044959 ]\n", + " [-0.23347856 -0.32645807 0.91592188]\n", + " [-0.21425157 -0.30857953 0.92675506]\n", + " [-0.19458229 -0.29035333 0.93692725]\n", + " [-0.17454813 -0.27184134 0.94638007]\n", + " [-0.15422741 -0.25311013 0.95506501]\n", + " [-0.28773684 -0.37746275 0.88018713]\n", + " [-0.27030659 -0.39772052 0.87678546]\n", + " [-0.25219116 -0.41803337 0.87272431]\n", + " [-0.23346781 -0.43830433 0.86797586]\n", + " [-0.21421354 -0.4584404 0.86252244]\n", + " [-0.19450534 -0.4783523 0.85635667]\n", + " [-0.17442067 -0.49795443 0.8494815 ]\n", + " [-0.15403792 -0.51716509 0.84191008]\n", + " [-0.15422741 -0.25311013 0.95506501]\n", + " [-0.13488622 -0.27306053 0.95249339]\n", + " [-0.11503903 -0.2931987 0.94910513]\n", + " [-0.0947598 -0.31343153 0.94487103]\n", + " [-0.07412321 -0.3336692 0.93977157]\n", + " [-0.05320606 -0.35382406 0.93379743]\n", + " [-0.03208795 -0.37381004 0.92695006]\n", + " [-0.01085127 -0.39354299 0.91924217]\n", + " [-0.15403792 -0.51716509 0.84191008]\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + " [-0.13468742 -0.5013944 0.85467125]\n", + " [-0.11484319 -0.48491172 0.86699 ]\n", + " [-0.0945789 -0.46776064 0.8787803 ]\n", + " [-0.0739692 -0.44998988 0.88996498]\n", + " [-0.05309102 -0.43165437 0.90047535]\n", + " [-0.03202421 -0.41281587 0.91025134]\n", + " [-0.01085127 -0.39354299 0.91924217]\n", + " [-0.28016227 -0.37039678 0.88561579]\n", + " [-0.25832553 -0.34981348 0.900499 ]\n", + " [-0.2355545 -0.32851962 0.91465236]\n", + " [-0.21199072 -0.30660896 0.92792828]\n", + " [-0.18777578 -0.28418631 0.94020125]\n", + " [-0.16305261 -0.26136756 0.95136788]\n", + " [-0.28016743 -0.38622661 0.87882604]\n", + " [-0.25833287 -0.41110438 0.87421812]\n", + " [-0.23554604 -0.43596818 0.8685907 ]\n", + " [-0.21194882 -0.46064513 0.86190705]\n", + " [-0.18768298 -0.48497088 0.85415358]\n", + " [-0.16289152 -0.50878944 0.84533996]\n", + " [-0.14593172 -0.26184394 0.95401346]\n", + " [-0.12187823 -0.28643407 0.95031638]\n", + " [-0.09713805 -0.31121314 0.94536267]\n", + " [-0.07184832 -0.33601455 0.93911237]\n", + " [-0.04615045 -0.36067683 0.93154837]\n", + " [-0.02019221 -0.38504229 0.92267801]\n", + " [-0.14573687 -0.51031399 0.84754964]\n", + " [-0.12168028 -0.49050072 0.86290379]\n", + " [-0.09695511 -0.46966096 0.87750686]\n", + " [-0.07169833 -0.44788219 0.89121316]\n", + " [-0.04605163 -0.42526562 0.90389623]\n", + " [-0.02016313 -0.40192784 0.91544932]\n", + " [-0.28762008 -0.37747626 0.8802195 ]\n", + " [-0.28762008 -0.37747626 0.8802195 ]\n", + " [-0.01099649 -0.3935426 0.91924061]\n", + " [-0.01099649 -0.3935426 0.91924061]\n", + " [-0.27264151 -0.37915945 0.88425376]\n", + " [-0.2506255 -0.40407854 0.87972006]\n", + " [-0.22767416 -0.4289933 0.87414485]\n", + " [-0.20392885 -0.45373104 0.86749131]\n", + " [-0.17953083 -0.47812728 0.85974588]\n", + " [-0.15462291 -0.50202566 0.85091832]\n", + " [-0.25062333 -0.35859572 0.89922025]\n", + " [-0.22812622 -0.38358989 0.89488392]\n", + " [-0.20474151 -0.40860948 0.88944882]\n", + " [-0.18060869 -0.43348246 0.88287794]\n", + " [-0.15586766 -0.45804417 0.87515759]\n", + " [-0.13066102 -0.4821371 0.86629759]\n", + " [-0.22768779 -0.33729858 0.91344838]\n", + " [-0.20475729 -0.36230514 0.90929062]\n", + " [-0.18098606 -0.38737023 0.90398471]\n", + " [-0.15651176 -0.41232275 0.89749319]\n", + " [-0.13147343 -0.43699813 0.88980187]\n", + " [-0.10601412 -0.4612379 0.88092032]\n", + " [-0.20397592 -0.31536169 0.92679061]\n", + " [-0.18065795 -0.3403175 0.92279288]\n", + " [-0.15654526 -0.36536789 0.91760552]\n", + " [-0.13177435 -0.390343 0.91119035]\n", + " [-0.10648415 -0.41507872 0.90353239]\n", + " [-0.08081879 -0.43941604 0.89464064]\n", + " [-0.17962888 -0.29288998 0.93912136]\n", + " [-0.15596809 -0.31773215 0.9352648 ]\n", + " [-0.13155826 -0.34270747 0.93018493]\n", + " [-0.10653558 -0.36764753 0.92384277]\n", + " [-0.0810397 -0.39238908 0.91622234]\n", + " [-0.05521621 -0.41677325 0.90733193]\n", + " [-0.15478944 -0.26999973 0.95033698]\n", + " [-0.1308304 -0.29466633 0.9466019 ]\n", + " [-0.10616828 -0.31950693 0.94161755]\n", + " [-0.08093985 -0.3443545 0.93534417]\n", + " [-0.05528599 -0.36904707 0.92776491]\n", + " [-0.02935394 -0.39342653 0.91888732]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:fp_optics: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:cartToSphere: vec: [[-0.40086173 0.83663942 0.37328858]\n", + " [-0.42638039 0.82605456 0.36855614]\n", + " [-0.45205722 0.81459235 0.36343304]\n", + " [-0.47777126 0.80226261 0.35792362]\n", + " [-0.50340629 0.78908351 0.35203595]\n", + " [-0.52884938 0.77508253 0.3457823 ]\n", + " [-0.55399051 0.76029719 0.33917944]\n", + " [-0.57872314 0.74477534 0.33224873]\n", + " [-0.40086173 0.83663942 0.37328858]\n", + " [-0.40074657 0.84809229 0.34661456]\n", + " [-0.40038527 0.85876129 0.3197197 ]\n", + " [-0.39978666 0.86861383 0.29271257]\n", + " [-0.39896558 0.87762607 0.26570462]\n", + " [-0.39794327 0.88578265 0.23881007]\n", + " [-0.39674769 0.8930763 0.21214615]\n", + " [-0.39541358 0.89950767 0.18583342]\n", + " [-0.57872314 0.74477534 0.33224873]\n", + " [-0.57845914 0.75666932 0.30469093]\n", + " [-0.57767895 0.7678452 0.27694906]\n", + " [-0.57639307 0.77826864 0.24913641]\n", + " [-0.57461855 0.78791517 0.22136668]\n", + " [-0.57237863 0.79676992 0.19375345]\n", + " [-0.56970256 0.80482701 0.16641058]\n", + " [-0.56662555 0.81208875 0.13945377]\n", + " [-0.39541358 0.89950767 0.18583342]\n", + " [-0.41984869 0.88966001 0.17953314]\n", + " [-0.44449033 0.87889828 0.17310735]\n", + " [-0.46921326 0.86723466 0.16656216]\n", + " [-0.49389853 0.85468926 0.15990783]\n", + " [-0.51843306 0.8412904 0.15315882]\n", + " [-0.54270938 0.82707499 0.14633349]\n", + " [-0.56662555 0.81208875 0.13945377]\n", + " [-0.41196054 0.83217318 0.37118231]\n", + " [-0.44335817 0.81860991 0.36511826]\n", + " [-0.47487258 0.80373765 0.35847151]\n", + " [-0.50628793 0.78758632 0.35125536]\n", + " [-0.53739628 0.77020659 0.34349243]\n", + " [-0.56799647 0.75167184 0.33521553]\n", + " [-0.40092894 0.84169231 0.3616767 ]\n", + " [-0.40062129 0.8552068 0.32882199]\n", + " [-0.39995185 0.86751053 0.29574315]\n", + " [-0.39894541 0.87855598 0.26264416]\n", + " [-0.39764114 0.88831481 0.22973533]\n", + " [-0.39609331 0.89677695 0.19723385]\n", + " [-0.57858815 0.75010111 0.32028749]\n", + " [-0.57791663 0.76420018 0.28637466]\n", + " [-0.57647966 0.77718533 0.25229776]\n", + " [-0.57430588 0.78900741 0.21826603]\n", + " [-0.57143808 0.79963897 0.18448857]\n", + " [-0.56793256 0.80907263 0.1511757 ]\n", + " [-0.40603893 0.8953062 0.18319171]\n", + " [-0.43614292 0.88262059 0.17538598]\n", + " [-0.46643194 0.86857322 0.16739714]\n", + " [-0.49668439 0.8531978 0.15924234]\n", + " [-0.52669208 0.83654653 0.15094818]\n", + " [-0.55625942 0.81869101 0.14254997]\n", + " [-0.40094861 0.83664518 0.37318234]\n", + " [-0.40094861 0.83664518 0.37318234]\n", + " [-0.56655565 0.81211776 0.13956876]\n", + " [-0.56655565 0.81211776 0.13956876]\n", + " [-0.41193869 0.83724034 0.35963193]\n", + " [-0.41160562 0.85081145 0.32665072]\n", + " [-0.41088222 0.86317153 0.29344628]\n", + " [-0.40979303 0.87427323 0.26022297]\n", + " [-0.40837685 0.88408856 0.22719102]\n", + " [-0.40668773 0.8926078 0.19456725]\n", + " [-0.44333032 0.82372776 0.35345552]\n", + " [-0.44292766 0.83744482 0.32015818]\n", + " [-0.44205674 0.84995406 0.2866425 ]\n", + " [-0.44074168 0.86120848 0.25311406]\n", + " [-0.43902058 0.87118103 0.21978294]\n", + " [-0.43694668 0.87986317 0.18686465]\n", + " [-0.47483897 0.80889713 0.34671803]\n", + " [-0.47436975 0.82273885 0.31316787]\n", + " [-0.47335812 0.83538226 0.27940753]\n", + " [-0.47182838 0.84678038 0.24564398]\n", + " [-0.4698186 0.85690695 0.21208718]\n", + " [-0.46738168 0.8657545 0.17895115]\n", + " [-0.50624878 0.79277814 0.33943335]\n", + " [-0.50571564 0.80672301 0.30569541]\n", + " [-0.50456928 0.81948596 0.27175835]\n", + " [-0.50283484 0.83101975 0.2378304 ]\n", + " [-0.50055118 0.84129838 0.20412144]\n", + " [-0.49777155 0.85031511 0.17084407]\n", + " [-0.53735181 0.77542117 0.33162485]\n", + " [-0.53675753 0.78944709 0.29776609]\n", + " [-0.53548261 0.8023149 0.26372177]\n", + " [-0.53355355 0.8139767 0.22970097]\n", + " [-0.53101067 0.82440623 0.19591335]\n", + " [-0.52790826 0.83359688 0.16257031]\n", + " [-0.56794696 0.75689933 0.32332592]\n", + " [-0.56729489 0.77098346 0.28941496]\n", + " [-0.56589868 0.78394083 0.25533401]\n", + " [-0.56378644 0.79572264 0.22129241]\n", + " [-0.5610003 0.80630183 0.18749943]\n", + " [-0.55759599 0.81567131 0.15416558]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:fp_optics: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:cartToSphere: vec: [[ 9.74503458e-01 -2.03945696e-02 2.23443666e-01]\n", + " [ 9.71736212e-01 3.33594573e-03 2.36045771e-01]\n", + " [ 9.68211699e-01 2.76205278e-02 2.48602518e-01]\n", + " [ 9.63901553e-01 5.23556278e-02 2.61060692e-01]\n", + " [ 9.58787401e-01 7.74349592e-02 2.73368882e-01]\n", + " [ 9.52861341e-01 1.02752377e-01 2.85477168e-01]\n", + " [ 9.46126160e-01 1.28203107e-01 2.97336933e-01]\n", + " [ 9.38595425e-01 1.53684179e-01 3.08900956e-01]\n", + " [ 9.74503458e-01 -2.03945696e-02 2.23443666e-01]\n", + " [ 9.79907995e-01 -9.95828284e-03 1.99201292e-01]\n", + " [ 9.84683393eDEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "-01 8.41748850e-04 1.74349956e-01]\n", + " [ 9.88768110e-01 1.19532630e-02 1.48979006e-01]\n", + " [ 9.92110003e-01 2.33218639e-02 1.23182111e-01]\n", + " [ 9.94667084e-01 3.48937130e-02 9.70557565e-02]\n", + " [ 9.96407837e-01 4.66167044e-02 7.06986916e-02]\n", + " [ 9.97311390e-01 5.84407478e-02 4.42116650e-02]\n", + " [ 9.38595425e-01 1.53684179e-01 3.08900956e-01]\n", + " [ 9.44128610e-01 1.66221907e-01 2.84589960e-01]\n", + " [ 9.49016821e-01 1.78887077e-01 2.59550550e-01]\n", + " [ 9.53197496e-01 1.91619937e-01 2.33872473e-01]\n", + " [ 9.56618290e-01 2.04363782e-01 2.07646076e-01]\n", + " [ 9.59236749e-01 2.17063896e-01 1.80964431e-01]\n", + " [ 9.61020400e-01 2.29666574e-01 1.53925489e-01]\n", + " [ 9.61947278e-01 2.42118845e-01 1.26632932e-01]\n", + " [ 9.97311390e-01 5.84407478e-02 4.42116650e-02]\n", + " [ 9.94916456e-01 8.38987943e-02 5.56977363e-02]\n", + " [ 9.91668987e-01 1.09796055e-01 6.73605746e-02]\n", + " [ 9.87538707e-01 1.36023554e-01 7.91510850e-02]\n", + " [ 9.82505400e-01 1.62475359e-01 9.10214116e-02]\n", + " [ 9.76559349e-01 1.89046287e-01 1.02923953e-01]\n", + " [ 9.69702122e-01 2.15630035e-01 1.14810641e-01]\n", + " [ 9.61947278e-01 2.42118845e-01 1.26632932e-01]\n", + " [ 9.73407460e-01 -1.00869231e-02 2.28858406e-01]\n", + " [ 9.69511096e-01 1.93840534e-02 2.44279540e-01]\n", + " [ 9.64447912e-01 4.95848299e-02 2.59579600e-01]\n", + " [ 9.58179897e-01 8.03206338e-02 2.74663213e-01]\n", + " [ 9.50692523e-01 1.11396183e-01 2.89438452e-01]\n", + " [ 9.41995399e-01 1.42619332e-01 3.03816384e-01]\n", + " [ 9.76924865e-01 -1.58115367e-02 2.12997191e-01]\n", + " [ 9.83134182e-01 -2.76844802e-03 1.82864746e-01]\n", + " [ 9.88336321e-01 1.07693488e-02 1.51905687e-01]\n", + " [ 9.92431317e-01 2.47023832e-02 1.20290789e-01]\n", + " [ 9.95341903e-01 3.89316639e-02 8.81976251e-02]\n", + " [ 9.97014473e-01 5.33621060e-02 5.58088330e-02]\n", + " [ 9.41109965e-01 1.59043605e-01 2.98357446e-01]\n", + " [ 9.47466410e-01 1.74502391e-01 2.68060288e-01]\n", + " [ 9.52790726e-01 1.90093032e-01 2.36758255e-01]\n", + " [ 9.56982323e-01 2.05709897e-01 2.04617377e-01]\n", + " [ 9.59963055e-01 2.21252143e-01 1.71809263e-01]\n", + " [ 9.61677467e-01 2.36621190e-01 1.38516651e-01]\n", + " [ 9.96367999e-01 6.94386657e-02 4.92857142e-02]\n", + " [ 9.92863758e-01 1.00948965e-01 6.34890844e-02]\n", + " [ 9.88047800e-01 1.33010368e-01 7.79088428e-02]\n", + " [ 9.81878726e-01 1.65426664e-01 9.24564034e-02]\n", + " [ 9.74338746e-01 1.98003991e-01 1.07044041e-01]\n", + " [ 9.65435712e-01 2.30545992e-01 1.21583027e-01]\n", + " [ 9.74514723e-01 -2.02794574e-02 2.23405008e-01]\n", + " [ 9.74514723e-01 -2.02794574e-02 2.23405008e-01]\n", + " [ 9.61973606e-01 2.41986280e-01 1.26686309e-01]\n", + " [ 9.61973606e-01 2.41986280e-01 1.26686309e-01]\n", + " [ 9.75836501e-01 -5.55120382e-03 2.18431472e-01]\n", + " [ 9.82094045e-01 7.67166420e-03 1.88235047e-01]\n", + " [ 9.87335789e-01 2.13676753e-02 1.57198797e-01]\n", + " [ 9.91461324e-01 3.54351031e-02 1.25494213e-01]\n", + " [ 9.94393183e-01 4.97742845e-02 9.32990764e-02]\n", + " [ 9.96077604e-01 6.42901084e-02 6.07962918e-02]\n", + " [ 9.71983206e-01 2.41073926e-02 2.33810781e-01]\n", + " [ 9.78350292e-01 3.78222917e-02 2.03470344e-01]\n", + " [ 9.83681844e-01 5.19453462e-02 1.72254784e-01]\n", + " [ 9.87876791e-01 6.63713732e-02 1.40336331e-01]\n", + " [ 9.90857252e-01 8.10005184e-02 1.07892641e-01]\n", + " [ 9.92568932e-01 9.57382814e-02 7.51072397e-02]\n", + " [ 9.66946949e-01 5.44857717e-02 2.49088135e-01]\n", + " [ 9.73382380e-01 6.86606422e-02 2.18660603e-01]\n", + " [ 9.78770113e-01 8.31767681e-02 1.87325092e-01]\n", + " [ 9.83008915e-01 9.79283814e-02 1.55253033e-01]\n", + " [ 9.86020531e-01 1.12816549e-01 1.22621115e-01]\n", + " [ 9.87750004e-01 1.27747354e-01 8.96133024e-02]\n", + " [ 9.60689274e-01 8.53869560e-02 2.64168859e-01]\n", + " [ 9.67151065e-01 9.99866128e-02 2.33712420e-01]\n", + " [ 9.72560817e-01 1.14861934e-01 2.02317062e-01]\n", + " [ 9.76817348e-01 1.29907654e-01 1.70152490e-01]\n", + " [ 9.79842097e-01 1.45025457e-01 1.37393894e-01]\n", + " [ 9.81579490e-01 1.60121128e-01 1.04225374e-01]\n", + " [ 9.53195470e-01 1.16614947e-01 2.78961199e-01]\n", + " [ 9.59641219e-01 1.31603934e-01 2.48533972e-01]\n", + " [ 9.65038293e-01 1.46805669e-01 2.17138638e-01]\n", + " [ 9.69285693e-01 1.62115218e-01 1.84942969e-01]\n", + " [ 9.72304782e-01 1.77433862e-01 1.52120463e-01]\n", + " [ 9.74039690e-01 1.92666000e-01 1.18854932e-01]\n", + " [ 9.44475112e-01 1.47977324e-01 2.93375995e-01]\n", + " [ 9.50862321e-01 1.63319991e-01 2.63035030e-01]\n", + " [ 9.56211759e-01 1.78815213e-01 2.31698493e-01]\n", + " [ 9.60422717e-01 1.94357671e-01 1.99532705e-01]\n", + " [ 9.63416855e-01 2.09847202e-01 1.66709676e-01]\n", + " [ 9.65138514e-01 2.25186052e-01 1.33412485e-01]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:fp_optics: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:cartToSphere: vec: [[-0.46685556 0.00539227 0.88431715]\n", + " [-0.48466935 0.02458302 0.87435193]\n", + " [-0.50244525 0.0441343 0.86348187]\n", + " [-0.52009128 0.06396729 0.85171195]\n", + " [-0.53752056 0.0840035 0.83905605]\n", + " [-0.55465034 0.10416362 0.82553797]\n", + " [-0.57140192 0.12436704 0.81119214]\n", + " [-0.58770123 0.14453229 0.79606387]\n", + " [-0.46685556 0.00539227 0.88431715]\n", + " [-0.44905956 0.02657606 0.8931065 ]\n", + " [-0.43100683 0.04773775 0.90108502]\n", + " [-0.41277502 0.06879692 0.90823112]\n", + " [-0.39444741 0.0896752 0.91453245]\n", + " [-0.37611338 0.1102966 0.91998554]\n", + " [-0.35786901 0.1305874 0.92459543]\n", + " [-0.33981797 0.15047587 0.92837533]\n", + " [-0.58770123 0.14453229 0.79606387]\n", + " [-0.5691934 0.16633991 0.80520178]\n", + " [-0.55023563 0.18792969 0.81358661]\n", + " [-0.53091018 0.20921838 0.8211955 ]\n", + " [-0.51130375 0.23012701 0.82801572]\n", + " [-0.49150679 0.25058127 0.83404442]\n", + " [-0.47161356 0.27051106 0.83928804]\n", + " [-0.45172311 0.28984926 0.8437616 ]\n", + " [-0.33981797 0.15047587 0.92837533]\n", + " [-0.35573696 0.170246 0.91894914]\n", + " [-0.37182673 0.19019984 0.90860822]\n", + " [-0.38799108 0.21025411 0.89736065]\n", + " [-0.4041415 0.23032683 0.88522268]\n", + " [-0.42019635 0.25033689 0.87221928]\n", + " [-0.43608015 0.27020406 0.85838445]\n", + " [-0.45172311 0.28984926 0.8437616 ]\n", + " [-0.47456038 0.01378274 0.88011504]\n", + " [-0.49637881 0.03755613 0.86729327]\n", + " [-0.51804843 0.06179247 0.85311635]\n", + " [-0.53940723 0.08634723 0.83760611]\n", + " [-0.56030288 0.11107431 0.82080642]\n", + " [-0.58059239 0.13582492 0.8027852 ]\n", + " [-0.45919335 0.01469118 0.88821486]\n", + " [-0.43719964 0.04065009 0.89844535]\n", + " [-0.41489669 0.06649553 0.90743544]\n", + " [-0.3924355 0.09208238 0.91515857]\n", + " [-0.36998066 0.11727069 0.92160832]\n", + " [-0.34771218 0.14192562 0.92679737]\n", + " [-0.57963725 0.153993 0.80019174]\n", + " [-0.55664151 0.18058469 0.81088803]\n", + " [-0.53305125 0.20676616 0.82042922]\n", + " [-0.50902429 0.23239022 0.8287877 ]\n", + " [-0.48472715 0.25731999 0.83595814]\n", + " [-0.46033527 0.28142773 0.84195598]\n", + " [-0.34679309 0.1590005 0.92436648]\n", + " [-0.36643242 0.18336504 0.91219764]\n", + " [-0.38623164 0.20792274 0.89866192]\n", + " [-0.40602462 0.23252214 0.88378587]\n", + " [-0.42566102 0.25701394 0.86761543]\n", + " [-0.44500424 0.28125087 0.85021713]\n", + " [-0.46685609 0.00552958 0.88431602]\n", + " [-0.46685609 0.00552958 0.88431602]\n", + " [-0.451738 0.2897175 0.84379888]\n", + " [-0.451738 0.2897175 0.84379888]\n", + " [-0.46686607 0.02297895 0.88402943]\n", + " [-0.44476819 0.04902357 0.89430305]\n", + " [-0.42233951 0.07493601 0.9033349 ]\n", + " [-0.39973099 0.10057066 0.91109861]\n", + " [-0.37710666 0.1257874 0.91758819]\n", + " [-0.35464563 0.15045156 0.92281678]\n", + " [-0.48860476 0.04683905 0.87124709]\n", + " [-0.46624123 0.07309461 0.88163274]\n", + " [-0.44348924 0.09916519 0.89077694]\n", + " [-0.42050014 0.12490387 0.8986538 ]\n", + " [-0.39743695 0.15017021 0.9052584 ]\n", + " [-0.37447636 0.1748302 0.91060522]\n", + " [-0.51020911 0.07114504 0.85710271]\n", + " [-0.48762365 0.09756325 0.86758549]\n", + " [-0.46459636 0.12374381 0.8768339 ]\n", + " [-0.44127974 0.14953877 0.88482221]\n", + " [-0.41783667 0.17480776 0.89154628]\n", + " [-0.39444216 0.19941779 0.8970217 ]\n", + " [-0.53151754 0.09575186 0.8416179 ]\n", + " [-0.50875471 0.12228279 0.85218282]\n", + " [-0.48550038 0.14852355 0.86152779]\n", + " [-0.46190864 0.17432569 0.86962691]\n", + " [-0.43814305 0.19954939 0.8764763 ]\n", + " [-0.41437784 0.22406306 0.88209226]\n", + " [-0.55237822 0.12051284 0.82483632]\n", + " [-0.52948408 0.14710505 0.83546796]\n", + " [-0.50605219 0.17335515 0.84490187]\n", + " [-0.4822384 0.19911481 0.85311161]\n", + " [-0.45820744 0.22424524 0.86009303]\n", + " [-0.43413366 0.24861651 0.86586246]\n", + " [-0.57264862 0.1452787 0.80682567]\n", + " [-0.5496708 0.17187981 0.81750801]\n", + " [-0.52611257 0.19808814 0.82702276]\n", + " [-0.50213134 0.2237561 0.83534264]\n", + " [-0.4DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "7789315 0.24874627 0.84246271]\n", + " [-0.45357311 0.27293041 0.84839874]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:fp_optics: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:cartToSphere: vec: [[-0.99454844 0.05157581 -0.09062749]\n", + " [-0.99125296 0.06257911 -0.11619561]\n", + " [-0.98708998 0.07374948 -0.14217733]\n", + " [-0.98203303 0.08503896 -0.16846216]\n", + " [-0.97606562 0.09640108 -0.19494291]\n", + " [-0.96918169 0.10778993 -0.22151339]\n", + " [-0.96138651 0.11915934 -0.24806658]\n", + " [-0.95269738 0.13046283 -0.27449434]\n", + " [-0.99454844 0.05157581 -0.09062749]\n", + " [-0.99378945 0.07823261 -0.07913395]\n", + " [-0.99218863 0.10477762 -0.06770066]\n", + " [-0.98976368 0.13110909 -0.05637613]\n", + " [-0.98654292 0.15712739 -0.0452112 ]\n", + " [-0.98256511 0.18273516 -0.03425892]\n", + " [-0.9778792 0.2078378 -0.02357374]\n", + " [-0.97254384 0.23234455 -0.01320938]\n", + " [-0.95269738 0.13046283 -0.27449434]\n", + " [-0.95192194 0.15797383 -0.26246692]\n", + " [-0.95029377 0.18525438 -0.25024501]\n", + " [-0.94783159 0.21219859 -0.23788028]\n", + " [-0.94456474 0.2387064 -0.22542563]\n", + " [-0.94053252 0.26468323 -0.21293513]\n", + " [-0.93578402 0.29003818 -0.20046478]\n", + " [-0.93037828 0.31468167 -0.18807365]\n", + " [-0.97254384 0.23234455 -0.01320938]\n", + " [-0.96893096 0.24452711 -0.03713883]\n", + " [-0.96453873 0.25665316 -0.06159699]\n", + " [-0.95934228 0.26867093 -0.08647726]\n", + " [-0.95332689 0.28053045 -0.11167141]\n", + " [-0.94648833 0.29218326 -0.13707215]\n", + " [-0.93883307 0.30358223 -0.162574 ]\n", + " [-0.93037828 0.31468167 -0.18807365]\n", + " [-0.993215 0.05644118 -0.10167767]\n", + " [-0.98859651 0.07004625 -0.13330591]\n", + " [-0.98264761 0.08385424 -0.16544525]\n", + " [-0.9753338 0.09777902 -0.19789705]\n", + " [-0.96664403 0.11173595 -0.23046561]\n", + " [-0.95659299 0.12563988 -0.26295337]\n", + " [-0.99431188 0.06324308 -0.08569829]\n", + " [-0.99281379 0.09585233 -0.07164576]\n", + " [-0.99006758 0.12819225 -0.05773148]\n", + " [-0.986121 0.16007851 -0.0440481 ]\n", + " [-0.98104537 0.19133195 -0.03069319]\n", + " [-0.97493488 0.22177989 -0.01776687]\n", + " [-0.95249608 0.14244059 -0.26918748]\n", + " [-0.95097041 0.17601673 -0.25430963]\n", + " [-0.94818126 0.209141 -0.23919101]\n", + " [-0.94417824 0.24162671 -0.22392852]\n", + " [-0.93903372 0.27329951 -0.20862178]\n", + " [-0.93284216 0.3039927 -0.19337513]\n", + " [-0.97108185 0.23757689 -0.02360645]\n", + " [-0.96613376 0.25247611 -0.05330461]\n", + " [-0.95998913 0.26723892 -0.08369131]\n", + " [-0.95261661 0.28177264 -0.11456777]\n", + " [-0.94400845 0.29598802 -0.14573652]\n", + " [-0.934181 0.30979886 -0.17700431]\n", + " [-0.99453746 0.05170433 -0.09067474]\n", + " [-0.99453746 0.05170433 -0.09067474]\n", + " [-0.93042806 0.31456132 -0.18802873]\n", + " [-0.93042806 0.31456132 -0.18802873]\n", + " [-0.99298827 0.06802436 -0.09667984]\n", + " [-0.99148101 0.10075181 -0.08254984]\n", + " [-0.98871707 0.13319823 -0.06853317]\n", + " [-0.98474432 0.16517895 -0.05472244]\n", + " [-0.97963426 0.19651461 -0.04121567]\n", + " [-0.9734814 0.227032 -0.0281147 ]\n", + " [-0.98836703 0.08174086 -0.12825385]\n", + " [-0.98683887 0.11476267 -0.11392351]\n", + " [-0.98403499 0.14747037 -0.09963752]\n", + " [-0.98000383 0.17967834 -0.08548796]\n", + " [-0.97481733 0.2112073 -0.07157263]\n", + " [-0.96857048 0.2418837 -0.05799571]\n", + " [-0.98241621 0.09563886 -0.16034834]\n", + " [-0.98087476 0.12889455 -0.14584545]\n", + " [-0.97804642 0.16180309 -0.1313201 ]\n", + " [-0.97398035 0.19417795 -0.11686402]\n", + " [-0.96874898 0DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + ".22584057 -0.1025741 ]\n", + " [-0.96244745 0.25661844 -0.08855446]\n", + " [-0.97510134 0.10963173 -0.19276479]\n", + " [-0.97355455 0.14305935 -0.1781167 ]\n", + " [-0.97071784 0.17610699 -0.16338054]\n", + " [-0.96664101 0.20858748 -0.14864863]\n", + " [-0.9613969 0.2403234 -0.13401743]\n", + " [-0.95508062 0.27114412 -0.11959042]\n", + " [-0.96641142 0.12363403 -0.22530779]\n", + " [-0.96486772 0.15716949 -0.21054225]\n", + " [-0.9620395 0.19029307 -0.19562347]\n", + " [-0.95797687 0.2228174 -0.18064531]\n", + " [-0.95275274 0.25456644 -0.16570497]\n", + " [-0.94646211 0.28537158 -0.15090569]\n", + " [-0.95636116 0.1375598 -0.2577802 ]\n", + " [-0.95482925 0.17113712 -0.24292629]\n", + " [-0.95202687 0.20427254 -0.22785429]\n", + " [-0.94800383 0.23677908 -0.21266029]\n", + " [-0.94283275 0.26848203 -0.19744317]\n", + " [-0.93660824 0.29921433 -0.18230684]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:fp_optics: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:cartToSphere: vec: [[-9.10875262e-01 3.74278819e-01 1.73843671e-01]\n", + " [-9.22077245e-01 3.50682864e-01 1.63692037e-01]\n", + " [-9.32755585e-01 3.26335020e-01 1.53207286e-01]\n", + " [-9.42827394e-01 3.01316970e-01 1.42423977e-01]\n", + " [-9.52219101e-01 2.75714447e-01 1.31378564e-01]\n", + " [-9.60866419e-01 2.49618386e-01 1.20109891e-01]\n", + " [-9.68714780e-01 2.23125153e-01 1.08659289e-01]\n", + " [-9.75719999e-01 1.96336012e-01 9.70703509e-02]\n", + " [-9.10875262e-01 3.74278819e-01 1.73843671e-01]\n", + " [-9.10830912e-01 3.85665062e-01 1.47137721e-01]\n", + " [-9.10063282e-01 3.96609106e-01 1.20357968e-01]\n", + " [-9.08587300e-01 4.07070416e-01 9.36097970e-02]\n", + " [-9.06428520e-01 4.17011375e-01 6.69988937e-02]\n", + " [-9.03623232e-01 4.26396727e-01 4.06310962e-02]\n", + " [-9.00218741e-01 4.35192700e-01 1.46127572e-02]\n", + " [-8.96273805e-01 4.43365988e-01 -1.09483573e-02]\n", + " [-9.75719999e-01 1.96336012e-01 9.70703509e-02]\n", + " [-9.75605765e-01 2.08236184e-01 6.95059847e-02]\n", + " [-9.74617128e-01 2.19909698e-01 4.19663905e-02]\n", + " [-9.72770373e-01 2.31313162e-01 1.45609954e-02]\n", + " [-9.70092904e-01 2.42406558e-01 -1.26023371e-02]\n", + " [-9.66622753e-01 2.53153449e-01 -3.94180832e-02]\n", + " [-9.62408097e-01 2.63520850e-01 -6.57830951e-02]\n", + " [-9.57506987e-01 2.73478717e-01 -9.15956396e-02]\n", + " [-8.96273805e-01 4.43365988e-01 -1.09483573e-02]\n", + " [-9.06711532e-01 4.21155847e-01 -2.24042234e-02]\n", + " [-9.16709316e-01 3.98110158e-01 -3.39460211e-02]\n", + " [-9.26182015e-01 3.74317028e-01 -4.55371983e-02]\n", + " [-9.35055874e-01 3.49865167e-01 -5.71391051e-02]\n", + " [-9.43267909e-01 3.24845243e-01 -6.87111287e-02]\n", + " [-9.50765623e-01 2.99350821e-01 -8.02110697e-02]\n", + " [-9.57506987e-01 2.73478717e-01 -9.15956396e-02]\n", + " [-9.15819132e-01 3.64128262e-01 1.69369198e-01]\n", + " [-9.29207112e-01 3.34693641e-01 1.56698146e-01]\n", + " [-9.41725150e-01 3.04210385e-01 1.43561079e-01]\n", + " [-9.53233966e-01 2.72834549e-01 1.30024285e-01]\n", + " [-9.63615260e-01 2.40733565e-01 1.16159291e-01]\n", + " [-9.72772856e-01 2.08086918e-01 1.02043149e-01]\n", + " [-9.10984465e-01 3.79215762e-01 1.62181102e-01]\n", + " [-9.10442256e-01 3.92879173e-01 1.29386449e-01]\n", + " [-9.08827164e-01 4.05837889e-01 9.65856801e-02]\n", + " [-9.06181815e-01 4.18021460e-01 6.39732582e-02]\n", + " [-9.02573050e-01 4.29364883e-01 3.17440682e-02]\n", + " [-8.98092684e-01 4.39806233e-01 9.44249906e-05]\n", + " [-9.75755804e-01 2.01641471e-01 8.50959958e-02]\n", + " [-9.75026356e-01 2.16079343e-01 5.13159180e-02]\n", + " [-9.72998511e-01 2.30133115e-01 1.76818234e-02]\n", + " [-9.69718119e-01 2.43727700e-01 -1.56070090e-02]\n", + " [-9.65255135e-01 2.56796009e-01 -4.83563182e-02]\n", + " [-9.59702350e-01 2.69278583e-01 -8.03768869e-02]\n", + " [-9.00887515e-01 4.33763375e-01 -1.58435998e-02]\n", + " [-9.1339DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "6406e-01 4.05968302e-01 -2.99456671e-02]\n", + " [-9.25158481e-01 3.77005792e-01 -4.41408985e-02]\n", + " [-9.36033269e-01 3.47038824e-01 -5.83590163e-02]\n", + " [-9.45904790e-01 3.16234424e-01 -7.25252944e-02]\n", + " [-9.54680738e-01 2.84766193e-01 -8.65615651e-02]\n", + " [-9.10915448e-01 3.74239144e-01 1.73718479e-01]\n", + " [-9.10915448e-01 3.74239144e-01 1.73718479e-01]\n", + " [-9.57503116e-01 2.73534402e-01 -9.14697409e-02]\n", + " [-9.57503116e-01 2.73534402e-01 -9.14697409e-02]\n", + " [-9.15887159e-01 3.69125858e-01 1.57787239e-01]\n", + " [-9.15327812e-01 3.82860409e-01 1.24871554e-01]\n", + " [-9.13674419e-01 3.95907519e-01 9.19580969e-02]\n", + " [-9.10969606e-01 4.08196999e-01 5.92417644e-02]\n", + " [-9.07280065e-01 4.19664553e-01 2.69173894e-02]\n", + " [-9.02697202e-01 4.30249387e-01 -4.81933977e-03]\n", + " [-9.29272515e-01 3.39744534e-01 1.45004294e-01]\n", + " [-9.28668516e-01 3.53664275e-01 1.11787155e-01]\n", + " [-9.26915664e-01 3.66946DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "696e-01 7.85969122e-02]\n", + " [-9.24056895e-01 3.79521767e-01 4.56298494e-02]\n", + " [-9.20158941e-01 3.91326482e-01 1.30808383e-02]\n", + " [-9.15312542e-01 4.02302622e-01 -1.88560550e-02]\n", + " [-9.41788187e-01 3.09305387e-01 1.31777039e-01]\n", + " [-9.41145212e-01 3.23386289e-01 9.83208974e-02]\n", + " [-9.39306015e-01 3.36882627e-01 6.49176926e-02]\n", + " [-9.36314183e-01 3.49723790e-01 3.17650910e-02]\n", + " [-9.32237022e-01 3.61846996e-01 -9.41879090e-04]\n", + " [-9.27165298e-01 3.73195411e-01 -3.30105342e-02]\n", + " [-9.53294904e-01 2.77964222e-01 1.18172404e-01]\n", + " [-9.52618757e-01 2.92181860e-01 8.45414932e-02]\n", + " [-9.50706538e-01 3.05870941e-01 5.09906432e-02]\n", + " [-9.47602623e-01 3.18959745e-01 1.77186221e-02]\n", + " [-9.43375176e-01 3.31384803e-01 -1.50794617e-02]\n", + " [-9.38115464e-01 3.43089481e-01 -4.72121124e-02]\n", + " [-9.63674386e-01 2.45888182e-01 1.04262555e-01]\n", + " [-9.62971185e-01 2.60217281e-01 7.052279DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "44e-02]\n", + " [-9.60999872e-01 2.74077190e-01 3.68909298e-02]\n", + " [-9.57805574e-01 2.87394787e-01 3.56635137e-03]\n", + " [-9.53457343e-01 3.00105285e-01 -2.92559812e-02]\n", + " [-9.48047146e-01 3.12151268e-01 -6.13856234e-02]\n", + " [-9.72830481e-01 2.13256493e-01 9.01250388e-02]\n", + " [-9.72106696e-01 2.27670762e-01 5.63435483e-02]\n", + " [-9.70090929e-01 2.41678269e-01 2.26981028e-02]\n", + " [-9.66828883e-01 2.55204425e-01 -1.06118793e-02]\n", + " [-9.62390330e-01 2.68182764e-01 -4.33918984e-02]\n", + " [-9.56867880e-01 2.80554433e-01 -7.54524434e-02]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:fp_optics: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:cartToSphere: vec: [[-0.8186892 -0.45733641 0.34726274]\n", + " [-0.83160533 -0.45175454 0.32303315]\n", + " [-0.84410583 -0.44569705 0.29805953]\n", + " [-0.85610354 -0.43916864 0.27242916]\n", + " [-0.86752088 -0.43217822 0.24623059]\n", + " [-0.87828897 -0.42473953 0.21955596]\n", + " [-0.88834705 -0.41687184 0.19250294]\n", + " [-0.89764297 -0.40860026 0.16517543]\n", + " [-0.8186892 -0.45733641 0.34726274]\n", + " [-0.82785078 -0.43192801 0.35791239]\n", + " [-0.83633499 -0.40622046 0.36814225]\n", + " [-0.84412003 -0.38031892 0.37791386]\n", + " [-0.85119412 -0.35433245 0.38719127]\n", + " [-0.8575555 -0.32837363 0.39594106]\n", + " [-0.86321212 -0.30255797 0.40413303]\n", + " [-0.86818104 -0.27700216 0.411742 ]\n", + " [-0.89764297 -0.40860026 0.16517543]\n", + " [-0.90704087 -0.38234332 0.17632482]\n", + " [-0.91559432 -0.35582923 0.1872768 ]\n", + " [-0.92328129 -0.32916782 0.19799042]\n", + " [-0.93009135 -0.30246936 0.20842833]\n", + " [-0.93602502 -0.27584455 0.21855651]\n", + " [-0.94109289 -0.24940616 0.22834346]\n", + " [-0.945315 -0.22327138 0.23775921]\n", + " [-0.86818104 -0.27700216 0.411742 ]\n", + " [-0.88085846 -0.26991776 0.38888659]\n", + " [-0.89311291 -0.26261446 0.36521634]\n", + " [-0.90485796 -0.25510183 0.34081538]\n", + " [-0.91601521 -0.24739244 0.31577385]\n", + " [-0.92651535 -0.23950283 0.29018563]\n", + " [-0.93629862 -0.23145401 0.26414756]\n", + " [-0.945315 -0.22327138 0.23775921]\n", + " [-0.82439835 -0.4548747 0.33683284]\n", + " [-0.83996072 -0.44771247 0.30662604]\n", + " [-0.85481103 -0.43984021 0.27538826]\n", + " [-0.86880254 -0.43127259 0.24328193]\n", + " [-0.88180834 -0.42203499 0.21047689]\n", + " [-0.89372012 -0.4121653 0.1771556 ]\n", + " [-0.82281005 -0.44628297 0.35187374]\n", + " [-0.83358644 -0.41492727 0.36464915]\n", + " [-0.84332247 -0.3832263 0.37675565]\n", + " [-0.85199227 -0.35137922 0.38812602]\n", + " [-0.85959258 -0.31959326 0.39869881]\n", + " [-0.86614187 -0.2880817 0.40842037]\n", + " [-0.90181199 -0.39721967 0.1701519 ]\n", + " [-0.9127656 -0.36485246 0.18368898]\n", + " [-0.92242771 -0.33220795 0.1968883 ]\n", + " [-0.9307743 -0.29948905 0.20967956]\n", + " [-0.93780621 -0.26689977 0.22200007]\n", + " [-0.94354687 -0.23464945 0.2337925 ]\n", + " [-0.87373901 -0.27402792 0.40185675]\n", + " [-0.88900386 -0.26519774 0.3732858 ]\n", + " [-0.90354669 -0.25604781 0.34357372]\n", + " [-0.91721971 -0.24659995 0.31288412]\n", + " [-0.9298954 -0.23688468 0.28138976]\n", + " [-0.94146776 -0.22694249 0.24927005]\n", + " [-0.81876642 -0.45723187 0.34721833]\n", + " [-0.81876642 -0.45723187 0.34721833]\n", + " [-0.9452725 -0.22338827 0.2378184 ]\n", + " [-0.9452725 -0.22338827 0.2378184 ]\n", + " [-0.82845644 -0.44388295 0.3415082 ]\n", + " [-0.83925893 -0.41240591 0.35435266]\n", + " [-0.84899892 -0.38058416 0.36654677]\n", + " [-0.85765051 -0.34861719 0.37802336]\n", + " [-0.86521061 -0.31671259 0.38872064]\n", + " [-0.87169832 -0.28508461 0.39858349]\n", + " [-0.844055 -0.43661313 0.3113521 ]\n", + " [-0.85492111 -0.40483326 0.32437622]\n", + " [-0.86466671 -0.37271304 0.3368033 ]\n", + " [-0.87326568 -0.34045291 0.34856688]\n", + " [-0.8807152 -0.30826059 0.35960554]\n", + " [-0.88703546 -0.2763514 0.36986212]\n", + " [-0.85893437 -0.42865386 0.28015643]\n", + " [-0.8698485 -0.39663205 0.293337 ]\n", + " [-0.87959098 -0.3642785 0.30597528]\n", + " [-0.8881356 -0.33179468 0.31800541]\n", + " [-0.89547996 -0.29938773 0.32936702]\n", + " [-0.90164489 -0.26727216 0.34000305]\n", + " [-0.87294763 -0.42002024 0.24808351]\n", + " [-0.88389353 -0.38781872 0.2613979 ]\n", + " [-0.89362339 -0.35529807 0.27422711]\n", + " [-0.90211135 -0.32266075 0.28650505]\n", + " [-0.90935578 -0.290113 0.29817195]\n", + " [-0.91537825 -0.25786764 0.30917139]\n", + " [-0.8859676 -0.41073844 0.21530293]\n", + " [-0.89692838 -0.37842152 0.22872829]\n", + " [-0.90663581 -0.34580151 0.24172883]\n", + " [-0.91506471 -0.31308148 0.2542372 ]\n", + " [-0.92221455 -0.28046669 0.26619307]\n", + " [-0.92810776 -0.24816811 0.27754024]\n", + " [-0.89788571 -0.40084713 0.18199679]\n", + " [-0.90884421 -0.36848115 0.19550917]\n", + " [-0.91851971 -0.33583078 0.20866054]\n", + " [-0.92688791 -0.30309909 0.22138146]\n", + " [-0.93394932 -0.27049038 0.23360996]\n", + " [-0.93972719 -0.23821427 0.24528916]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:fp_optics: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:cartToSphere: vec: [[ 0.33878331 -0.66731322 0.66326385]\n", + " [ 0.32166076 -0.65630079 0.68249808]\n", + " [ 0.30393684 -0.64453953 0.70156339]\n", + " [ 0.28566803 -0.63204742 0.72035397]\n", + " [ 0.26691399 -0.61884907 0.73877111]\n", + " [ 0.24773877 -0.60497676 0.75672229]\n", + " [ 0.22821139 -0.59047105 0.77412111]\n", + " [ 0.2084057 -0.57538087 0.79088805]\n", + " [ 0.33878331 -0.66731322 0.66326385]\n", + " [ 0.35946826 -0.64848325 0.67100823]\n", + " [ 0.37972483 -0.62913272 0.67823379]\n", + " [ 0.39947646 -0.60934385 0.68492235]\n", + " [ 0.41864974 -0.5892048 0.69106447]\n", + " [ 0.43717404 -0.56880934 0.69665974]\n", + " [ 0.45498066 -0.54825709 0.70171701]\n", + " [ 0.47200207 -0.52765392 0.70625448]\n", + " [ 0.2084057 -0.57538087 0.79088805]\n", + " [ 0.22989752 -0.55595731 0.79878571]\n", + " [ 0.25111096 -0.53609736 0.80594225]\n", + " [ 0.27196513 -0.51588674 0.81233973]\n", + " [ 0.2923841 -0.49541534 0.81797016]\n", + " [ 0.31229721 -0.4747765 0.82283518]\n", + " [ 0.33163847 -0.45406707 0.8269456 ]\n", + " [ 0.35034536 -0.43338843 0.83032078]\n", + " [ 0.47200207 -0.52765392 0.70625448]\n", + " [ 0.45661244 -0.51564236 0.72499519]\n", + " [ 0.44045507 -0.50309962 0.7435658 ]\n", + " [ 0.42359112 -0.49004654 0.76185625]\n", + " [ 0.40608277 -0.47651082 0.77976549]\n", + " [ 0.38799405 -0.4625271 0.79720092]\n", + " [ 0.36939163 -0.44813692 0.81407808]\n", + " [ 0.35034536 -0.43338843 0.83032078]\n", + " [ 0.33146695 -0.66254107 0.67169114]\n", + " [ 0.31007081 -0.64853806 0.69516507]\n", + " [ 0.28782711 -0.63342758 0.71827924]\n", + " [ 0.26484427 -0.61725214 0.74084904]\n", + " [ 0.24124028 -0.60007125 0.76270415]\n", + " [ 0.21714422 -0.58196307 0.78368831]\n", + " [ 0.34779249 -0.65913568 0.66676873]\n", + " [ 0.37286656 -0.63569686 0.67591422]\n", + " [ 0.39722082 -0.61155721 0.68426121]\n", + " [ 0.42071884 -0.58687655 0.69178867]\n", + " [ 0.44323048 -0.56182758 0.69849589]\n", + " [ 0.46462978 -0.53659624 0.70440304]\n", + " [ 0.21787318 -0.5670236 0.79436485]\n", + " [ 0.2440366 -0.54291401 0.8035487 ]\n", + " [ 0.26970087 -0.51823352 0.81160056]\n", + " [ 0.29472412 -0.49314592 0.81850156]\n", + " [ 0.31897616 -0.46782306 0.82425469]\n", + " [ 0.34233706 -0.44244506 0.82888341]\n", + " [ 0.46533314 -0.52255383 0.71442464]\n", + " [ 0.44594631 -0.5074734 0.73729413]\n", + " [ 0.42546707 -0.49161491 0.75979771]\n", + " [ 0.40400946 -0.47502645 0.78174563]\n", + " [ 0.38169143 -0.45777182 0.80296738]\n", + " [ 0.35863702 -0.43993026 0.82331091]\n", + " [ 0.33879722 -0.66721343 0.66335713]\n", + " [ 0.33879722 -0.66721343 0.66335713]\n", + " [ 0.35034834 -0.43350996 0.83025608]\n", + " [ 0.35034834 -0.43350996 0.83025608]\n", + " [ 0.34049871 -0.65443201 0.67511434]\n", + " [ 0.36568399 -0.63090626 0.68427517]\n", + " [ 0.39016081 -0.60668274 0.69261143]\n", + " [ 0.41379288 -0.58192172 0.70010182]\n", + " [ 0.43645073 -0.55679597 0.70674536]\n", + " [ 0.45800936 -0.53149114 0.712562 ]\n", + " [ 0.31919485 -0.6403505 0.69861712]\n", + " [ 0.3446645 -0.61660968 0.70781275]\n", + " [ 0.36945868 -0.59218336 0.71611393]\n", + " [ 0.39344108 -0.56723316 0.7234989 ]\n", + " [ 0.41648368 -0.54193216 0.72996635]\n", + " [ 0.43846419 -0.51646514 0.7355358 ]\n", + " [ 0.2970268 -0.62517686 0.72175409]\n", + " [ 0.32273536 -0.60126803 0.73097102]\n", + " [ 0.34780352 -0.57669135 0.73922919]\n", + " [ 0.37209425 -0.55160975 0.74650691]\n", + " [ 0.39548021 -0.5261966 0.75280312]\n", + " [ 0.41784123 -0.50063573 0.75813757]\n", + " [ 0.27410253 -0.60895409 0.74434046]\n", + " [ 0.30000373 -0.58492585 0.75356454]\n", + " [ 0.32530255 -0.56025277 0.76177102]\n", + " [ 0.34986069 -0.53509877 0.76893875]\n", + " [ 0.37355068 -0.50963727 0.77506757]\n", + " [ 0.39625354 -0.48405106 0.780178 ]\n", + " [ 0.25053943 -0.5917422 0.76620569]\n", + " [ 0.27658556 -0.5676447 0.77542242]\n", + " [ 0.3020708 -0.54293054 0.78356854]\n", + " [ 0.32685531 -0.51776409 0.79062377]\n", + " [ 0.35081077 -0.49231839 0.79658923]\n", + " [ 0.37381836 -0.4667751 0.80148664]\n", + " [ 0.2264661 -0.5736198 0.78719339]\n", + " [ 0.25260783 -0.54950426 0.79638832]\n", + " [ 0.27823371 -0.52480509 0.80446605]\n", + " [ 0.30320236 -0.49968637 0.81140733]\n", + " [ 0.32738414 -0.47432033 0.81721469]\n", + " [ 0.35065953 -0.44888745 0.82191116]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:fp_optics: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:cartToSphere: vec: [[-3.62029995e-02 2.02427999e-01 -9.78627737e-01]\n", + " [-4.13705240e-02 1.75364382e-01 -9.83633983e-01]\n", + " [-4.66086333e-02 1.47619240e-01 -9.87945441e-01]\n", + " [-5.18945412e-02 1.19295508e-01 -9.91501658e-01]\n", + " [-5.72058308e-02 9.04983633e-02 -9.94252251e-01]\n", + " [-6.25202402e-02 6.13364839e-02 -9.96157144e-01]\n", + " [-6.78156616e-02 3.19222151e-02 -9.97187048e-01]\n", + " [-7.30702933e-02 2.37089885e-03 -9.97323975e-01]\n", + " [-3.62029995e-02 2.02427999e-01 -9.78627737e-01]\n", + " [-7.70172587e-03 1.97223218e-01 -9.80328356e-01]\n", + " [ 2.06956699e-02 1.91774443e-01 -9.81220797e-01]\n", + " [ 4.88775836e-02 1.86102582e-01 -9.81313819e-01]\n", + " [ 7.67326460e-02 1.80228769e-01 -9.80627193e-01]\n", + " [ 1.04149522e-01 1.74173809e-01 -9.79191688e-01]\n", + " [ 1.31016105e-01 1.67957606e-01 -9.77049140e-01]\n", + " [ 1.57218171e-01 1.61598728e-01 -9.74252687e-01]\n", + " [-7.30702933e-02 2.37089885e-03 -9.97323975e-01]\n", + " [-4.35577153e-02 -2.86416525e-03 -9.99046807e-01]\n", + " [-1.41018862e-02 -8.08221951e-03 -9.99867899e-01]\n", + " [ 1.51805374e-02 -1.32627633e-02 -9.99796805e-01]\n", + " [ 4.41749262e-02 -1.83857947e-02 -9.98854613e-01]\n", + " [ 7.27694756e-02 -2.34319616e-02 -9.97073491e-01]\n", + " [ 1.00855206e-01 -2.83825811e-02 -9.94496182e-01]\n", + " [ 1.28324889e-01 -3.32194785e-02 -9.91175660e-01]\n", + " [ 1.57218171e-01 1.61598728e-01 -9.74252687e-01]\n", + " [ 1.53970609e-01 1.35121776e-01 -9.78792704e-01]\n", + " [ 1.50391707e-01 1.08010846e-01 -9.82708498e-01]\n", + " [ 1.46506339e-01 8.03757699e-02 -9.85938958e-01]\n", + " [ 1.42336775e-01 5.23254922e-02 -9.88434259e-01]\n", + " [ 1.37903581e-01 2.39692523e-02 -9.90155582e-01]\n", + " [ 1.33226463e-01 -4.58278490e-03 -9.91075026e-01]\n", + " [ 1.28324889e-01 -3.32194785e-02 -9.91175660e-01]\n", + " [-3.83479922e-02 1.90701095e-01 -9.80898835e-01]\n", + " [-4.47307216e-02 1.57060480e-01 -9.86575475e-01]\n", + " [-5.11969553e-02 1.22498352e-01 -9.91147328e-01]\n", + " [-5.77052956e-02 8.72073056e-02 -9.94517463e-01]\n", + " [-6.42147655e-02 5.13874300e-02 -9.96612159e-01]\n", + " [-7.06847856e-02 1.52468488e-02 -9.97382171e-01]\n", + " [-2.37878411e-02 2.00098684e-01 -9.79486935e-01]\n", + " [ 1.10886411e-02 1.93552959e-01 -9.81027163e-01]\n", + " [ 4.56981965e-02 1.86661643e-01 -9.81360844e-01]\n", + " [ 7.98356875e-02 1.79463574e-01 -9.80519805e-01]\n", + " [ 1.13296061e-01 1.71996991e-01 -9.78560697e-01]\n", + " [ 1.45872138e-01 1.64297997e-01 -9.75565214e-01]\n", + " [-6.01853809e-02 1.88769064e-04 -9.98187199e-01]\n", + " [-2.40382571e-02 -6.21865865e-03 -9.99691698e-01]\n", + " [ 1.19075077e-02 -1.25803209e-02 -9.99849962e-01]\n", + " [ 4.74399852e-02 -1.88591726e-02 -9.98696040e-01]\n", + " [ 8.23533515e-02 -2.50195851e-02 -9.96289087e-01]\n", + " [ 1.16447803e-01 -3.10273845e-02 -9.92712048e-01]\n", + " [ 1.55755878e-01 1.50161391e-01 -9.76315350e-01]\n", + " [ 1.51548307e-01 1.17269985e-01 -9.81468727e-01]\n", + " [ 1.46868276e-01 8.35355734e-02 -9.85622401e-01]\n", + " [ 1.41757823e-01 4.91590117e-02 -9.88679984e-01]\n", + " [ 1.36254901e-01 1.43414758e-02 -9.90570000e-01]\n", + " [ 1.30395668e-01 -2.07137998e-02 -9.91245635e-01]\n", + " [-3.61230063e-02 2.02319369e-01 -9.78653157e-01]\n", + " [-3.61230063e-02 2.02319369e-01 -9.78653157e-01]\n", + " [ 1.28249246e-01 -3.31052045e-02 -9.91189274e-01]\n", + " [ 1.28249246e-01 -3.31052045e-02 -9.91189274e-01]\n", + " [-2.59638573e-02 1.88473574e-01 -9.81734990e-01]\n", + " [ 9.05459924e-03 1.81923944e-01 -9.83270915e-01]\n", + " [ 4.38104343e-02 1.75051832e-01 -9.83584009e-01]\n", + " [ 7.80982988e-02 1.67896528e-01 -9.82706168e-01]\n", + " [ 1.11713592e-01 1.60496858e-01 -9.80694056e-01]\n", + " [ 1.44450317e-01 1.52889599e-01 -9.77629212e-01]\n", + " [-3.22232440e-02 1.54816376e-01 -9.87417618e-01]\n", + " [ 3.15352286e-03 1.48263982e-01 -9.88942793e-01]\n", + " [ 3.82791311e-02 1.41454999e-01 -9.89204322e-01]\n", + " [ 7.29471528e-02 1.34429554e-01 -9.88234490e-01]\n", + " [ 1.06953684e-01 1.27227562e-01 -9.86090288e-01]\n", + " [ 1.40095576e-01 1.19887180e-01 -9.82853139e-01]\n", + " [-3.85892799e-02 1.20241900e-01 -9.91994331e-01]\n", + " [-2.92000774e-03 1.13699808e-01 -9.93510859e-01]\n", + " [ 3.25090623e-02 1.06968279e-01 -9.93730823e-01]\n", + " [ 6.74899858e-02 1.00087593e-01 -9.92687048e-01]\n", + " [ 1.01818825e-01 9.30978320e-02 -9.90437136e-01]\n", + " [ 1.35294377e-01 8.60375569e-02 -9.87062800e-01]\n", + " [-4.50212344e-02 8.49428864e-02 -9.95368170e-01]\n", + " [-9.12696697e-03 7.84247945e-02 -9.96878252e-01]\n", + " [ 2.65381224e-02 7.17860163e-02 -9.97066947e-01]\n", + " [ 6.17644990e-02 6.50663668e-02 -9.95967627e-01]\n", + " [ 9.63477303e-02 5.83052489e-02 -9.93638573e-01]\n", + " [ 1.30087707e-01 5.15406595e-02 -9.90161981e-01]\n", + " [-5.14788279e-02 4.91195319e-02 -9.97465389e-01]\n", + " [-1.54289754e-02 4.26393028e-02 -9.98971389e-01]\n", + " [ 2.04031405e-02 3.61085722e-02 -9.99139571e-01]\n", + " [ 5.58066366e-02 2.95661982e-02 -9.98003737e-01]\n", + " [ 9.05764219e-02 2.30502482e-02 -9.95622719e-01]\n", + " [ 1.24512814e-01 1.65973869e-02 -9.92079173e-01]\n", + " [-5.79220418e-02 1.29800119e-02 -9.98236724e-01]\n", + " [-2.17876121e-02 6.55126136e-03 -9.99741157e-01]\n", + " [ 1.41410856e-02 1.43101159e-04 -9.99900000e-01]\n", + " [ 4.96522921e-02 -6.20691114e-03 -9.98747277e-01]\n", + " [ 8.45403371e-02 -1.24624696e-02 -9.96342119e-01]\n", + " [ 1.18605507e-01 -1.85887135e-02 -9.92767442e-01]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:fp_optics: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:cartToSphere: vec: [[ 0.19011632 0.46981893 -0.86204754]\n", + " [ 0.16530187 0.46125831 -0.87173165]\n", + " [ 0.13985691 0.45215473 -0.88090643]\n", + " [ 0.11387601 0.44252427 -0.88949678]\n", + " [ 0.08745495 0.43238755 -0.8974367 ]\n", + " [ 0.0606923 0.4217705 -0.90466905]\n", + " [ 0.03369032 0.41070484 -0.91114571]\n", + " [ 0.00655469 0.39922818 -0.91682817]\n", + " [ 0.19011632 0.46981893 -0.86204754]\n", + " [ 0.20234931 0.44551673 -0.87210641]\n", + " [ 0.21428645 0.42088862 -0.88143864]\n", + " [ 0.22588096 0.39603506 -0.89001911]\n", + " [ 0.23708682 0.37106026 -0.89783301]\n", + " [ 0.24785838 0.34607203 -0.90487589]\n", + " [ 0.25814983 0.32118189 -0.91115358]\n", + " [ 0.26791503 0.29650534 -0.91668213]\n", + " [ 0.00655469 0.39922818 -0.91682817]\n", + " [ 0.01934504 0.37412269 -0.92717743]\n", + " [ 0.03207446 0.34876075 -0.93666278]\n", + " [ 0.04469301 0.3232471 -0.94525861]\n", + " [ 0.05715232 0.29768803 -0.95295092]\n", + " [ 0.0694058 0.27219065 -0.95973699]\n", + " [ 0.08140829 0.24686337 -0.96562475]\n", + " [ 0.0931153 0.22181713 -0.97063211]\n", + " [ 0.26791503 0.29650534 -0.91668213]\n", + " [ 0.24465833 0.28659779 -0.92628506]\n", + " [ 0.22066493 0.27639723 -0.93536707]\n", + " [ 0.19603377 0.26592216 -0.94385177]\n", + " [ 0.17086371 0.25519594 -0.95167254]\n", + " [ 0.14525383 0.24424688 -0.95877254]\n", + " [ 0.11930403 0.23310809 -0.96510474]\n", + " [ 0.0931153 0.22181713 -0.97063211]\n", + " [ 0.17942317 0.46607132 -0.866363 ]\n", + " [ 0.14857502 0.45521165 -0.87789966]\n", + " [ 0.11687369 0.44355209 -0.88859557]\n", + " [ 0.08449486 0.4311287 -0.89832548]\n", + " [ 0.05162014 0.41798927 -0.9069842 ]\n", + " [ 0.01843925 0.40419466 -0.91448711]\n", + " [ 0.1953998 0.45924076 -0.86655458]\n", + " [ 0.21020013 0.42922345 -0.87839805]\n", + " [ 0.22450965 0.39881604 -0.88912383]\n", + " [ 0.23824332 0.36820885 -0.89870037]\n", + " [ 0.25131705 0.33760036 -0.90711947]\n", + " [ 0.26364638 0.3071975 -0.91439613]\n", + " [ 0.01222845 0.38836014 -0.92142654]\n", + " [ 0.0278695 0.35740529 -0.93353347]\n", + " [ 0.04336907 0.32616903 -0.9443161 ]\n", + " [ 0.05863744 0.29484642 -0.9537438 ]\n", + " [ 0.07358882 0.26363475 -0.96181152]\n", + " [ 0.08814038 0.23273452 -0.96853803]\n", + " [ 0.257839 0.29230679 -0.9209103 ]\n", + " [ 0.22882623 0.27996562 -0.93233997]\n", + " [ 0.19880531 0.26720198 -0.94291015]\n", + " [ 0.16795823 0.25405687 -0.95249417]\n", + " [ 0.13646748 0.24058238 -0.96098738]\n", + " [ 0.10451744 0.22684133 -0.96830734]\n", + " [ 0.19007493 0.46970816 -0.86211703]\n", + " [ 0.19007493 0.46970816 -0.86211703]\n", + " [ 0.09316567 0.221941 -0.97059897]\n", + " [ 0.09316567 0.221941 -0.97059897]\n", + " [ 0.1847707 0.45556294 -0.87081697]\n", + " [ 0.19964923 0.4254314 -0.88269378]\n", + " [ 0.21405759 0.39491298 -0.89343331]\n", + " [ 0.22791102 0.36419843 -0.90300392]\n", + " [ 0.24112587 0.33348623 -0.91139741]\n", + " [ 0.25361818 0.30298308 -0.91862891]\n", + " [ 0.15398012 0.4446003 -0.88239487]\n", + " [ 0.16906154 0.41418396 -0.89435443]\n", + " [ 0.18373131 0.3833926 -0.90512591]\n", + " [ 0.19790501 0.35241824 -0.91467753]\n", + " [ 0.21150021 0.32145946 -0.92300134]\n", + " [ 0.22443449 0.29072194 -0.93011285]\n", + " [ 0.12232647 0.43285745 -0.8931241 ]\n", + " [ 0.13758353 0.40221465 -0.90514869]\n", + " [ 0.15248819 0.37121258 -0.91594136]\n", + " [ 0.16695572 0.34004463 -0.92547039]\n", + " [ 0.18090424 0.30890944 -0.93372834]\n", + " [ 0.19425262 0.27801148 -0.94073139]\n", + " [ 0.08998522 0.42037101 -0.90287921]\n", + " [ 0.10539056 0.38956171 -0.91495055]\n", + " [ 0.12050426 0.35841261 -0.92575327]\n", + " [ 0.1352406 0.32711827 -0.93525591]\n", + " [ 0.14951738 0.29587725 -0.94345175]\n", + " [ 0.16325399 0.26489269 -0.95035783]\n", + " [ 0.05713766 0.40718942 -0.91155475]\n", + " [ 0.07266312 0.3762754 -0.9236541 ]\n", + " [ 0.08795963 0.34504445 -0.93445569]\n", + " [ 0.10293991 0.31369181 -0.9439284 ]\n", + " [ 0.11752061 0.28241566 -0.95206633]\n", + " [ 0.13162069 0.25141793 -0.95888739]\n", + " [ 0.02397316 0.39337412 -0.91906588]\n", + " [ 0.03958941 0.36241864 -0.93117421]\n", + " [ 0.05504113 0.33117204 -0.94196367]\n", + " [ 0.07023924 0.29982954 -0.95140354]\n", + " [ 0.08509864 0.26858872 -0.95948857]\n", + " [ 0.09953707 0.23765039 -0.96623737]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:fp_optics: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:cartToSphere: vec: [[-0.1460681 -0.52497852 0.83848773]\n", + " [-0.12664067 -0.50929391 0.85122374]\n", + " [-0.10672841 -0.49288746 0.86352244]\n", + " [-0.08640514 -0.47580251 0.87529773]\n", + " [-0.0657458 -0.45808741 0.88647246]\n", + " [-0.04482761 -0.43979667 0.89697791]\n", + " [-0.02373067 -0.42099169 0.90675402]\n", + " [-0.00253771 -0.40174078 0.91574992]\n", + " [-0.1460681 -0.52497852 0.83848773]\n", + " [-0.12541477 -0.54351705 0.82997611]\n", + " [-0.10465515 -0.56148612 0.82084142]\n", + " [-0.08386973 -0.57882049 0.81113051]\n", + " [-0.06313863 -0.59546021 0.8008999 ]\n", + " [-0.04254129 -0.61135023 0.79021588]\n", + " [-0.02215644 -0.62643996 0.77915471]\n", + " [-0.00206232 -0.64068293 0.76780279]\n", + " [-0.00253771 -0.40174078 0.91574992]\n", + " [ 0.01871128 -0.42099223 0.90687123]\n", + " [ 0.0398758 -0.4398024 0.89720888]\n", + " [ 0.06087265 -0.45810254 0.8868126 ]\n", + " [ 0.08162118 -0.47583076 0.87574144]\n", + " [ 0.1020436 -0.4929321 0.86406311]\n", + " [ 0.12206453 -0.50935783 0.85185377]\n", + " [ 0.14160982 -0.52506437 0.83919847]\n", + " [-0.00206232 -0.64068293 0.76780279]\n", + " [ 0.017955 -0.62646435 0.77924324]\n", + " [ 0.03827229 -0.61139551 0.79039911]\n", + " [ 0.05881161 -0.5955226 0.80118289]\n", + " [ 0.07949453 -0.57889587 0.81151722]\n", + " [ 0.10024188 -0.56156998 0.82133472]\n", + " [ 0.12097376 -0.54360453 0.83057779]\n", + " [ 0.14160982 -0.52506437 0.83919847]\n", + " [-0.13759138 -0.51829587 0.84406042]\n", + " [-0.11344506 -0.49858275 0.85938668]\n", + " [-0.08864395 -0.47782785 0.87396956]\n", + " [-0.06332545 -0.45611803 0.88766335]\n", + " [-0.03763182 -0.43355375 0.9003416 ]\n", + " [-0.01171164 -0.41025092 0.91189748]\n", + " [-0.13701559 -0.53307492 0.83489991]\n", + " [-0.11162058 -0.55542202 0.82404322]\n", + " [-0.08614604 -0.57684842 0.81229598]\n", + " [-0.06073967 -0.59724154 0.79975824]\n", + " [-0.0355477 -0.61649999 0.78655205]\n", + " [-0.01071485 -0.63453235 0.77282203]\n", + " [ 0.00665938 -0.41025056 0.91194853]\n", + " [ 0.03265601 -0.43355724 0.90053412]\n", + " [ 0.05844301 -0.45613192 0.88799104]\n", + " [ 0.08387077 -0.4778578 0.87442416]\n", + " [ 0.10879605 -0.49863361 0.8599581 ]\n", + " [ 0.13308065 -0.51837186 0.84473673]\n", + " [ 0.00655532 -0.63454331 0.77285951]\n", + " [ 0.03130019 -0.61653852 0.78670232]\n", + " [ 0.05641836 -0.59730211 0.80002947]\n", + " [ 0.08176567 -0.5769249 0.8126943 ]\n", + " [ 0.10719637 -0.5555076 0.82457277]\n", + " [ 0.13256314 -0.53316206 0.83556282]\n", + " [-0.14593221 -0.52499045 0.83850392]\n", + " [-0.14593221 -0.52499045 0.83850392]\n", + " [ 0.14147356 -0.52507623 0.83921402]\n", + " [ 0.14147356 -0.52507623 0.83921402]\n", + " [-0.12864133 -0.52641277 0.84044096]\n", + " [-0.10316286 -0.54885723 0.82952587]\n", + " [-0.07762198 -0.57038891 0.8176988 ]\n", + " [-0.05216682 -0.59089535 0.80505982]\n", + " [-0.02694379 -0.61027559 0.79173085]\n", + " [-0.00209751 -0.62843872 0.77785627]\n", + " [-0.10441139 -0.50678158 0.85572817]\n", + " [-0.07872821 -0.52947518 0.84466437]\n", + " [-0.05303165 -0.55128045 0.83263288]\n", + " [-0.0274711 -0.572085 0.81973416]\n", + " [-0.00219335 -0.591789 0.80608993]\n", + " [ 0.02265753 -0.61030322 0.79184381]\n", + " [-0.07954333 -0.48609375 0.87027911]\n", + " [-0.05370341 -0.508997 0.85909138]\n", + " [-0.02790015 -0.53103997 0.84688732]\n", + " [-0.00228399 -0.55210982 0.83376827]\n", + " [ 0.0229983 -0.57210744 0.81985618]\n", + " [ 0.04780354 -0.59094517 0.80529413]\n", + " [-0.05417505 -0.46443575 0.88394825]\n", + " [-0.02822792 -0.48750856 0.87266178]\n", + " [-0.00236856 -0.5097535 0.86031724]\n", + " [ 0.02325206 -0.53105683 0.84701711]\n", + " [ 0.04848771 -0.55131951 0.83288399]\n", + " [ 0.0731965 -0.57045486 0.81806083]\n", + " [-0.02844934 -0.44190755 0.89660936]\n", + " [-0.00244602 -0.46510867 0.88525021]\n", + " [ 0.02341771 -0.48751927 0.87279813]\n", + " [ 0.04899104 -0.50902436 0.85935678]\n", + " [ 0.07412874 -0.52952429 0.84504968]\n", + " [ 0.0986905 -0.54893256 0.83002002]\n", + " [-0.00251525 -0.41862461 0.90815588]\n", + " [ 0.02349232 -0.44191144 0.89675102]\n", + " [ 0.04930844 -0.46445015 0.8842255 ]\n", + " [ 0.07478308 -0.48612439 0.87068396]\n", + " [ 0.09977244 -0.50683338 0.85625077]\n", + " [ 0.1241378 -0.52649 0.84106961]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:fp_optics: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:cartToSphere: vec: [[-0.72235326 0.68663119 0.08211812]\n", + " [-0.70365552 0.7050319 0.08831153]\n", + " [-0.68405354 0.72325562 0.09472098]\n", + " [-0.66360008 0.74119715 0.10130019]\n", + " [-0.64235437 0.75875911 0.10800685]\n", + " [-0.6203824 0.77585183 0.11480255]\n", + " [-0.59775716 0.79239325 0.12165245]\n", + " [-0.57455874 0.80830911 0.12852484]\n", + " [-0.72235326 0.68663119 0.08211812]\n", + " [-0.72668749 0.67852003 0.10740513]\n", + " [-0.73046731 0.66983076 0.13320755]\n", + " [-0.73365499 0.66056092 0.15940399]\n", + " [-0.73621872 0.65071642 0.18587667]\n", + " [-0.73813273 0.6403117 0.21251116]\n", + " [-0.73937744 0.62936975 0.23919599]\n", + " [-0.73993986 0.6179219 0.26582236]\n", + " [-0.57455874 0.80830911 0.12852484]\n", + " [-0.57782273 0.80124769 0.1553159 ]\n", + " [-0.58068683 0.79340058 0.18253308]\n", + " [-0.58311385 0.78476311 0.21005973]\n", + " [-0.58507248 0.77533869 0.23778166]\n", + " [-0.5865373 0.76513946 0.26558541]\n", + " [-0.58748906 0.75418703 0.29335735]\n", + " [-0.587915 0.74251277 0.32098402]\n", + " [-0.73993986 0.6179219 0.26582236]\n", + " [-0.72083102 0.6366243 0.27406596]\n", + " [-0.70075853 0.65518489 0.28225916]\n", + " [-0.67977101 0.67350163 0.29035658]\n", + " [-0.65792404 0.69147923 0.29831599]\n", + " [-0.63528175 0.70902833 0.3060979 ]\n", + " [-0.61191769 0.7260653 0.31366531]\n", + " [-0.587915 0.74251277 0.32098402]\n", + " [-0.71433082 0.69464218 0.08487479]\n", + " [-0.69079993 0.71708949 0.09261816]\n", + " [-0.66596245 0.73916556 0.10063944]\n", + " [-0.63992475 0.76068786 0.10885904]\n", + " [-0.61280832 0.7814913 0.11720625]\n", + " [-0.58475051 0.80142804 0.12561822]\n", + " [-0.72424599 0.68322864 0.09309337]\n", + " [-0.72918988 0.67290016 0.12444876]\n", + " [-0.73326292 0.6616998 0.15645724]\n", + " [-0.73640414 0.64963493 0.18890048]\n", + " [-0.73856609 0.63673216 0.2215678 ]\n", + " [-0.73971544 0.62303727 0.25425504]\n", + " [-0.57610892 0.8052728 0.14012219]\n", + " [-0.57984616 0.79609039 0.17325856]\n", + " [-0.58294499 0.78572245 0.20691874]\n", + " [-0.58534533 0.77417187 0.24089161]\n", + " [-0.58700043 0.7614611 0.27496815]\n", + " [-0.58787752 0.74763398 0.30893924]\n", + " [-0.73172894 0.6261269 0.26932854]\n", + " [-0.70765529 0.64896684 0.279403 ]\n", + " [-0.6821818 0.6714915 0.28935646]\n", + " [-0.65540787 0.69352273 0.29910992]\n", + " [-0.62745163 0.714896 0.30859062]\n", + " [-0.59845251 0.73545986 0.31773161]\n", + " [-0.72230663 0.68666753 0.08222434]\n", + " [-0.72230663 0.68666753 0.08222434]\n", + " [-0.58799751 0.74249872 0.32086535]\n", + " [-0.58799751 0.74249872 0.32086535]\n", + " [-0.71625021 0.6912351 0.09581066]\n", + " [-0.72114436 0.68097966 0.127348 ]\n", + " [-0.72517788 0.66982685 0.15952751]\n", + " [-0.7282896 0.65778401 0.19213134]\n", + " [-0.7304317 0.64487782 0.22494916]\n", + " [-0.73157049 0.6311543 0.25777678]\n", + " [-0.69265593 0.71377093 0.10372468]\n", + " [-0.69739236 0.70372051 0.13572524]\n", + " [-0.70130034 0.69270466 0.16833917]\n", + " [-0.7043181 0.6807305 0.20135045]\n", + " [-0.70639682 0.66782479 0.23454976]\n", + " [-0.70750182 0.654034 0.2677325 ]\n", + " [-0.66774488 0.7359332 0.1118888 ]\n", + " [-0.67229774 0.72608556 0.14427577]\n", + " [-0.67605882 0.71521089 0.17725082]\n", + " [-0.67896587 0.70331574 0.2105999 ]\n", + " [-0.68096944 0.69042651 0.24411445]\n", + " [-0.68203425 0.67658972 0.27758896]\n", + " [-0.64162305 0.7575395 0.12022378]\n", + " [-0.6459652 0.74789301 0.15292156]\n", + " [-0.64955641 0.73716446 0.18618544]\n", + " [-0.65233443 0.72535951 0.21980302]\n", + " [-0.65424981 0.71250366 0.25356601]\n", + " [-0.65526728 0.69864301 0.28726771]\n", + " [-0.61441175 0.77842468 0.12865934]\n", + " [-0.61851531 0.76897748 0.16159348]\n", + " [-0.62191289 0.75839984 0.19507443]\n", + " [-0.62454285 0.74669621 0.22889082]\n", + " [-0.62635644 0.73389085 0.26283422]\n", + " [-0.62731909 0.72002905 0.2966967 ]\n", + " [-0.5862484 0.79844059 0.13713294]\n", + " [-0.59008588 0.78918981 0.17022958]\n", + " [-0.59326655 0.77876674 0.20385576]\n", + " [-0.59572987 0.76717462 0.23780039]\n", + " [-0.59742849 0.75443638 0.27185466]\n", + " [-0.59832907 0.74059623 0.30580965]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:fp_optics: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:cartToSphere: vec: [[-0.54834397 0.42589988 0.71967227]\n", + " [-0.53600373 0.41022669 0.7378442 ]\n", + " [-0.52311363 0.39380654 0.75582309]\n", + " [-0.50969526 0.37670495 0.77350121]\n", + " [-0.49577718 0.35898784 0.79077982]\n", + " [-0.48139501 0.34072226 0.80756869]\n", + " [-0.46659144 0.32197718 0.82378585]\n", + " [-0.45141593 0.30282399 0.83935767]\n", + " [-0.54834397 0.42589988 0.71967227]\n", + " [-0.56825607 0.40859958 0.71423485]\n", + " [-0.58811239 0.39051978 0.70825004]\n", + " [-0.60780743 0.37173244 0.70170159]\n", + " [-0.62724225 0.35230986 0.69458256]\n", + " [-0.64632402 0.33232544 0.68689524]\n", + " [-0.66496578 0.31185452 0.67865106]\n", + " [-0.68308662 0.2909749 0.66987035]\n", + " [-0.45141593 0.30282399 0.83935767]\n", + " [-0.47133432 0.28374128 0.83506578]\n", + " [-0.49127977 0.26403799 0.83001694]\n", + " [-0.51115137 0.24378055 0.82419374]\n", + " [-0.53085337 0.22303776 0.81758722]\n", + " [-0.55029401 0.20188233 0.81019752]\n", + " [-0.56938522 0.18039157 0.80203451]\n", + " [-0.58804314 0.15864736 0.79311807]\n", + " [-0.68308662 0.2909749 0.66987035]\n", + " [-0.67167664 0.27347357 0.68852211]\n", + " [-0.65950056 0.25539887 0.70698687]\n", + " [-0.64657707 0.23681113 0.72516107]\n", + " [-0.6329318 0.21777323 0.74294829]\n", + " [-0.61859827 0.19835186 0.76025833]\n", + " [-0.6036185 0.17861811 0.77700725]\n", + " [-0.58804314 0.15864736 0.79311807]\n", + " [-0.54310054 0.41910408 0.72759437]\n", + " [-0.52760459 0.39938303 0.74975102]\n", + " [-0.51130325 0.37860519 0.77150962]\n", + " [-0.49424616 0.35689173 0.7926847 ]\n", + " [-0.47649892 0.33436619 0.8131101 ]\n", + " [-0.45814295 0.31115651 0.83263837]\n", + " [-0.55698449 0.41840457 0.71743006]\n", + " [-0.58136551 0.39666662 0.71040111]\n", + " [-0.60555721 0.3738294 0.7025326 ]\n", + " [-0.62937473 0.35002586 0.69380786]\n", + " [-0.65264716 0.32539121 0.68423113]\n", + " [-0.6752169 0.30006515 0.67382716]\n", + " [-0.46014303 0.29465075 0.83752572]\n", + " [-0.4845868 0.270838 0.83175863]\n", + " [-0.5089702 0.24615881 0.82483645]\n", + " [-0.5331149 0.22073878 0.81673918]\n", + " [-0.55685193 0.19471184 0.80746717]\n", + " [-0.58002086 0.16822225 0.79704271]\n", + " [-0.67814574 0.28349087 0.67804962]\n", + " [-0.66364383 0.26164884 0.70079723]\n", + " [-0.6480092 0.23900519 0.72316014]\n", + " [-0.63128608 0.21567456 0.74495796]\n", + " [-0.61353627 0.19177976 0.76602465]\n", + " [-0.59484073 0.1674535 0.78620851]\n", + " [-0.54837079 0.42578988 0.71971693]\n", + " [-0.54837079 0.42578988 0.71971693]\n", + " [-0.58803438 0.15879066 0.79309589]\n", + " [-0.58803438 0.15879066 0.79309589]\n", + " [-0.55173758 0.41165549 0.72534502]\n", + " [-0.57618672 0.38974843 0.7184045 ]\n", + " [-0.60044982 0.36675651 0.71059811]\n", + " [-0.62434239 0.34281167 0.70190935]\n", + " [-0.64769348 0.31804835 0.69234269]\n", + " [-0.67034513 0.29260599 0.68192312]\n", + " [-0.53629071 0.39176626 0.74760382]\n", + " [-0.5608869 0.36941168 0.74090546]\n", + " [-0.58531018 0.3460127 0.73327158]\n", + " [-0.60937706 0.32169835 0.72468598]\n", + " [-0.63291652 0.29660127 0.71515338]\n", + " [-0.65576943 0.2708606 0.70469921]\n", + " [-0.52001314 0.37083604 0.76945888]\n", + " [-0.54468822 0.34807835 0.76299162]\n", + " [-0.56920882 0.32431617 0.75552653]\n", + " [-0.59339257 0.29967614 0.74704716]\n", + " [-0.61706841 0.27428985 0.7375579 ]\n", + " [-0.6400761 0.24829691 0.72708406]\n", + " [-0.50295457 0.34898502 0.79072508]\n", + " [-0.52764022 0.32586584 0.78447897]\n", + " [-0.55219464 0.30178206 0.77717994]\n", + " [-0.57643666 0.27685883 0.76881075]\n", + " [-0.6001954 0.2512276 0.75937486]\n", + " [-0.62330986 0.22502909 0.74889701]\n", + " [-0.48518078 0.326336 0.81123635]\n", + " [-0.50980899 0.30289522 0.80520139]\n", + " [-0.53433348 0.27853048 0.79806547]\n", + " [-0.55857435 0.25336649 0.78981018]\n", + " [-0.58236126 0.22753542 0.7804377 ]\n", + " [-0.60553301 0.20117942 0.76997182]\n", + " [-0.46677354 0.30301667 0.83084497]\n", + " [-0.49127711 0.27929385 0.82501015]\n", + " [-0.51570836 0.25468925 0.81803318]\n", + " [-0.53988856 0.22932809 0.80989442]\n", + " [-0.56364834 0.20334377 0.80059469]\n", + " [-0.58682695 0.17688004 0.79015668]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:fp_optics: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:cartToSphere: vec: [[ 0.99745175 0.0630658 0.03335731]\n", + " [ 0.9950648 0.08857012 0.04473684]\n", + " [ 0.99182526 0.11450858 0.05630659]\n", + " [ 0.98770279 0.14077213 0.06801762]\n", + " [ 0.98267708 0.16725472 0.0798224 ]\n", + " [ 0.97673831 0.19385097 0.09167378]\n", + " [ 0.96988794 0.22045436 0.1035242 ]\n", + " [ 0.96213944 0.24695693 0.11532549]\n", + " [ 0.99745175 0.0630658 0.03335731]\n", + " [ 0.99716456 0.07493869 0.00685798]\n", + " [ 0.99603439 0.08680066 -0.01952262]\n", + " [ 0.99407726 0.098609 -0.04567994]\n", + " [ 0.99131989 0.11032372 -0.07150905]\n", + " [ 0.98779955 0.12190764 -0.09690498]\n", + " [ 0.98356381 0.13332619 -0.12176354]\n", + " [ 0.97867001 0.14454677 -0.14598371]\n", + " [ 0.96213944 0.24695693 0.11532549]\n", + " [ 0.96184702 0.25909805 0.08785508]\n", + " [ 0.96069146 0.27096908 0.06039606]\n", + " [ 0.95868974 0.28252637 0.03305815]\n", + " [ 0.95586962 0.29373097 0.00594804]\n", + " [ 0.95226905 0.30454843 -0.02083042]\n", + " [ 0.94793585 0.31494793 -0.0471744 ]\n", + " [ 0.94292793 0.32490133 -0.07297971]\n", + " [ 0.97867001 0.14454677 -0.14598371]\n", + " [ 0.97596017 0.16982249 -0.13660921]\n", + " [ 0.97248234 0.19544243 -0.12680832]\n", + " [ 0.96820773 0.22129733 -0.11662454]\n", + " [ 0.96311769 0.24727779 -0.10610381]\n", + " [ 0.95720413 0.27327574 -0.09529235]\n", + " [ 0.95046971 0.29918495 -0.08423593]\n", + " [ 0.94292793 0.32490133 -0.07297971]\n", + " [ 0.99651396 0.07416597 0.03820117]\n", + " [ 0.99301951 0.10573043 0.05228124]\n", + " [ 0.98821319 0.13783815 0.06659838]\n", + " [ 0.98205343 0.17029271 0.08106453]\n", + " [ 0.97452226 0.2028999 0.09559282]\n", + " [ 0.96562736 0.23546297 0.11009541]\n", + " [ 0.99742401 0.06832743 0.02183374]\n", + " [ 0.99650361 0.08287731 -0.01057821]\n", + " [ 0.9943317 0.09736787 -0.04270804]\n", + " [ 0.990953 0.11172435 -0.07436274]\n", + " [ 0.98643612 0.12587828 -0.10534914]\n", + " [ 0.98087274 0.13976687 -0.13547654]\n", + " [ 0.96214669 0.25219041 0.1033138 ]\n", + " [ 0.96120625 0.26689481 0.0696399 ]\n", + " [ 0.95898493 0.28114984 0.03609248]\n", + " [ 0.95552943 0.29488181 0.00286928]\n", + " [ 0.95090953 0.30802717 -0.0298383 ]\n", + " [ 0.94521747 0.32053034 -0.06184046]\n", + " [ 0.97759862 0.15548008 -0.14186927]\n", + " [ 0.97376545 0.18670388 -0.13008657]\n", + " [ 0.96874891 0.21833636 -0.11770636]\n", + " [ 0.96251043 0.25017603 -0.10481236]\n", + " [ 0.95503513 0.28202401 -0.09148963]\n", + " [ 0.94633243 0.31368558 -0.07782213]\n", + " [ 0.99744546 0.06319272 0.03330514]\n", + " [ 0.99744546 0.06319272 0.03330514]\n", + " [ 0.94297328 0.32478059 -0.07293129]\n", + " [ 0.94297328 0.32478059 -0.07293129]\n", + " [ 0.99649208 0.07931895 0.02668396]\n", + " [ 0.995564 0.09390379 -0.00586502]\n", + " [ 0.99337491 0.10840413 -0.03814233]\n", + " [ 0.9899697 0.12274497 -0.06995475]\n", + " [ 0.98541714 0.13685798 -0.10110866]\n", + " [ 0.97980924 0.15068114 -0.13141174]\n", + " [ 0.99299671 0.11092885 0.0406487 ]\n", + " [ 0.99205123 0.12559559 0.00775301]\n", + " [ 0.98982316 0.14010757 -0.02489945]\n", + " [ 0.98635794 0.15438867 -0.05711523]\n", + " [ 0.98172478 0.16837047 -0.08870089]\n", + " [ 0.97601619 0.18199225 -0.11946218]\n", + " [ 0.98818992 0.14307255 0.05487192]\n", + " [ 0.9872336 0.15779523 0.02169091]\n", + " [ 0.98498105 0.17229404 -0.01127373]\n", + " [ 0.98147839 0.18649198 -0.04382819]\n", + " [ 0.9767953 0.2003205 -0.0757802 ]\n", + " [ 0.9710245 0.21371961 -0.10693624]\n", + " [ 0.98203017 0.17555335 0.06926597]\n", + " [ 0.98106988 0.19030456 0.03586171]\n", + " [ 0.97880789 0.20476352 0.00264771]\n", + " [ 0.97529094 0.21885308 -0.03018135]\n", + " [ 0.97058913 0.23250526 -0.06243429]\n", + " [ 0.96479523 0.245661 -0.09391934]\n", + " [ 0.97449951 0.20817666 0.08374475]\n", + " [ 0.97354255 0.22292771 0.05018105]\n", + " [ 0.97128688 0.23731876 0.01678119]\n", + " [ 0.96777954 0.25127358 -0.01625884]\n", + " [ 0.96309082 0.26472566 -0.04874829]\n", + " [ 0.95731337 0.2776173 -0.08049689]\n", + " [ 0.96560564 0.24074539 0.09822125]\n", + " [ 0.96465955 0.25546706 0.06456417]\n", + " [ 0.96242641 0.2697623 0.03104352]\n", + " [ 0.95895309 0.28355664 -0.00214338]\n", + " [ 0.9543096 0.29678574 -0.03480538]\n", + " [ 0.94858828 0.30939349 -0.06675281]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:fp_optics: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:cartToSphere: vec: [[-0.57586361 0.5080419 -0.64052676]\n", + " [-0.59713554 0.50327014 -0.62461854]\n", + " [-0.61843277 0.49788687 -0.60798814]\n", + " [-0.63963415 0.49190801 -0.59067306]\n", + " [-0.66062736 0.4853514 -0.57271764]\n", + " [-0.6813083 0.47823723 -0.55417339]\n", + " [-0.70158056 0.47058862 -0.53509912]\n", + " [-0.7213553 0.46243222 -0.51556084]\n", + " [-0.57586361 0.5080419 -0.64052676]\n", + " [-0.57847224 0.48570693 -0.65533094]\n", + " [-0.58083153 0.46248534 -0.66988211]\n", + " [-0.58289212 0.43846175 -0.68409654]\n", + " [-0.58461379 0.41372279 -0.69789696]\n", + " [-0.5859652 0.38835788 -0.71121231]\n", + " [-0.58692336 0.36245996 -0.72397773]\n", + " [-0.58747329 0.33612595 -0.73613483]\n", + " [-0.7213553 0.46243222 -0.51556084]\n", + " [-0.72565011 0.43889182 -0.52991121]\n", + " [-0.72945275 0.41451461 -0.54412896]\n", + " [-0.73271506 0.38937869 -0.55813338]\n", + " [-0.73539648 0.363566 -0.57184944]\n", + " [-0.73746395 0.33716425 -0.58520696]\n", + " [-0.73889223 0.31026786 -0.59814056]\n", + " [-0.73966428 0.28297788 -0.6105901 ]\n", + " [-0.58747329 0.33612595 -0.73613483]\n", + " [-0.60990813 0.32965064 -0.72065424]\n", + " [-0.63229501 0.32277473 -0.70428652]\n", + " [-0.65451817 0.31551166 -0.68706504]\n", + " [-0.67646822 0.307878 -0.66903055]\n", + " [-0.69804101 0.29989411 -0.65023248]\n", + " [-0.71913744 0.29158449 -0.63072959]\n", + " [-0.73966428 0.28297788 -0.6105901 ]\n", + " [-0.58513676 0.50596236 -0.63373264]\n", + " [-0.61124176 0.49969988 -0.6137455 ]\n", + " [-0.63726329 0.49253462 -0.59271 ]\n", + " [-0.66299095 0.48449865 -0.57070488]\n", + " [-0.68823302 0.47562915 -0.54782499]\n", + " [-0.71281516 0.46597016 -0.5241816 ]\n", + " [-0.57710113 0.49840248 -0.64695383]\n", + " [-0.58013853 0.47042073 -0.66493881]\n", + " [-0.58275113 0.44119115 -0.68245988]\n", + " [-0.58486113 0.41087233 -0.69937214]\n", + " [-0.58641072 0.37962897 -0.71554476]\n", + " [-0.58736097 0.34763385 -0.730861 ]\n", + " [-0.72321801 0.45230516 -0.52189631]\n", + " [-0.72815654 0.42288186 -0.53940614]\n", + " [-0.73230725 0.39227885 -0.55663578]\n", + " [-0.73559231 0.36064532 -0.57344477]\n", + " [-0.73795092 0.32814282 -0.58970394]\n", + " [-0.73933999 0.29494797 -0.60529504]\n", + " [-0.59725192 0.33344374 -0.72945556]\n", + " [-0.62473076 0.32523754 -0.70988169]\n", + " [-0.65202176 0.31644249 -0.68900781]\n", + " [-0.67892098 0.30708779 -0.66690583]\n", + " [-0.70523666 0.29721091 -0.64366679]\n", + " [-0.73078874 0.28685875 -0.61940284]\n", + " [-0.57594545 0.50795187 -0.64052458]\n", + " [-0.57594545 0.50795187 -0.64052458]\n", + " [-0.73959364 0.28310166 -0.61061829]\n", + " [-0.73959364 0.28310166 -0.61061829]\n", + " [-0.5863514 0.49636349 -0.6401682 ]\n", + " [-0.58953585 0.46824399 -0.65817555]\n", + " [-0.59226627 0.43887958 -0.67572581]\n", + " [-0.59446539 0.40842796 -0.69267417]\n", + " [-0.59607589 0.37705318 -0.70888958]\n", + " [-0.59705912 0.34492794 -0.72425488]\n", + " [-0.61261425 0.4899735 -0.62018526]\n", + " [-0.61619253 0.4615003 -0.63821959]\n", + " [-0.61923901 0.43179105 -0.65581975]\n", + " [-0.62167777 0.40100063 -0.67284118]\n", + " [-0.62345235 0.36929157 -0.68915231]\n", + " [-0.6245245 0.3368367 -0.70463479]\n", + " [-0.63878061 0.48269906 -0.5991335 ]\n", + " [-0.64272104 0.45392477 -0.61714016]\n", + " [-0.64605942 0.42392408 -0.63474057]\n", + " [-0.64872052 0.39284935 -0.65179066]\n", + " [-0.65064792 0.36086203 -0.66815858]\n", + " [-0.65180299 0.32813558 -0.68372502]\n", + " [-0.66464077 0.47457148 -0.57709146]\n", + " [-0.66891363 0.44554658 -0.59501496]\n", + " [-0.67252138 0.41530632 -0.61256481]\n", + " [-0.67538868 0.38400113 -0.6295977 ]\n", + " [-0.67745829 0.35179194 -0.64598196]\n", + " [-0.67869061 0.31885317 -0.66159785]\n", + " [-0.69000333 0.46562727 -0.55415399]\n", + " [-0.69457947 0.43640059 -0.57193871]\n", + " [-0.69843416 0.40597173 -0.58938669]\n", + " [-0.70149123 0.37449 -0.60635575]\n", + " [-0.70369207 0.34211637 -0.62271492]\n", + " [-0.70499564 0.30902626 -0.63834467]\n", + " [-0.71469382 0.45591003 -0.53043264]\n", + " [-0.71954332 0.42652956 -0.54802368]\n", + " [-0.72362125 0.39596295 -0.56531905]\n", + " [-0.72685025 0.36435927 -0.58217784]\n", + " [-0.72917008 0.33187986 -0.59847034]\n", + " [-0.73053817 0.2987011 -0.61407788]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:fp_optics: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:cartToSphere: vec: [[-9.80960266e-01 8.44901962e-02 -1.74866702e-01]\n", + " [-9.80016501e-01 1.09880795e-01 -1.65812751e-01]\n", + " [-9.78347904e-01 1.35671795e-01 -1.56296331e-01]\n", + " [-9.75916484e-01 1.61751087e-01 -1.46368038e-01]\n", + " [-9.72695218e-01 1.88009302e-01 -1.36075401e-01]\n", + " [-9.68667977e-01 2.14338855e-01 -1.25463962e-01]\n", + " [-9.63829524e-01 2.40633490e-01 -1.14578235e-01]\n", + " [-9.58185540e-01 2.66788331e-01 -1.03462347e-01]\n", + " [-9.80960266e-01 8.44901962e-02 -1.74866702e-01]\n", + " [-9.85833131e-01 7.32273287e-02 -1.50899957e-01]\n", + " [-9.90072767e-01 6.18097202e-02 -1.26235787e-01]\n", + " [-9.93617318e-01 5.02686282e-02 -1.00983615e-01]\n", + " [-9.96415847e-01 3.86384263e-02 -7.52498000e-02]\n", + " [-9.98428110e-01 2.69565275e-02 -4.91391297e-02]\n", + " [-9.99624534e-01 1.52630555e-02 -2.27559022e-02]\n", + " [-9.99986315e-01 3.60038029e-03 3.79558505e-03]\n", + " [-9.58185540e-01 2.66788331e-01 -1.03462347e-01]\n", + " [-9.63302230e-01 2.56874071e-01 -7.78750626e-02]\n", + " [-9.67749227e-01 2.46553471e-01 -5.16993267e-02]\n", + " [-9.71465427e-01 2.35856072e-01 -2.50367098e-02]\n", + " [-9.74399579e-01 2.24814189e-01 2.01034834e-03]\n", + " [-9.76510455e-01 2.13463483e-01 2.93372127e-02]\n", + " [-9.77767314e-01 2.01843154e-01 5.68367905e-02]\n", + " [-9.78150408e-01 1.89995796e-01 8.44000965e-02]\n", + " [-9.99986315e-01 3.60038029e-03 3.79558505e-03]\n", + " [-9.99459760e-01 2.92964294e-02 1.48965388e-02]\n", + " [-9.98115652e-01 5.54800594e-02 2.62127509e-02]\n", + " [-9.95915342e-01 8.20456956e-02 3.76979545e-02]\n", + " [-9.92830501e-01 1.08887617e-01 4.93060208e-02]\n", + " [-9.88843600e-01 1.35898868e-01 6.09904250e-02]\n", + " [-9.83948419e-01 1.62971201e-01 7.27041762e-02]\n", + " [-9.78150408e-01 1.89995796e-01 8.44000965e-02]\n", + " [-9.80652858e-01 9.54660786e-02 -1.70898218e-01]\n", + " [-9.79014550e-01 1.26869201e-01 -1.59482655e-01]\n", + " [-9.76248426e-01 1.58762047e-01 -1.47423278e-01]\n", + " [-9.72300192e-01 1.90942197e-01 -1.34808808e-01]\n", + " [-9.67140152e-01 2.23211540e-01 -1.21723190e-01]\n", + " [-9.60763201e-01 2.55375017e-01 -1.08248195e-01]\n", + " [-9.83156428e-01 7.96867124e-02 -1.64479380e-01]\n", + " [-9.88711638e-01 6.57756854e-02 -1.34621157e-01]\n", + " [-9.93252946e-01 5.16627601e-02 -1.03824585e-01]\n", + " [-9.96682065e-01 3.74099166e-02 -7.22866530e-02]\n", + " [-9.98924905e-01 2.30859955e-02 -4.02003928e-02]\n", + " [-9.99931486e-01 8.76582296e-03 -7.75781244e-03]\n", + " [-9.60515186e-01 2.62427998e-01 -9.24236029e-02]\n", + " [-9.66344265e-01 2.49999308e-01 -6.06556504e-02]\n", + " [-9.71105601e-01 2.36989535e-01 -2.81046774e-02]\n", + " [-9.74700756e-01 2.23456980e-01 5.04119701e-03]\n", + " [-9.77053891e-01 2.09467323e-01 3.85893179e-02]\n", + " [-9.78112952e-01 1.95094161e-01 7.23416975e-02]\n", + " [-9.99854557e-01 1.47771089e-02 8.51484438e-03]\n", + " [-9.98664804e-01 4.66118188e-02 2.22698933e-02]\n", + " [-9.96207540e-01 7.90738433e-02 3.63024099e-02]\n", + " [-9.92426312e-01 1.11968708e-01 5.05274651e-02]\n", + " [-9.87288910e-01 1.45099504e-01 6.48594068e-02]\n", + " [-9.80788721e-01 1.78266661e-01 7.92116304e-02]\n", + " [-9.80975885e-01 8.45379941e-02 -1.74755943e-01]\n", + " [-9.80975885e-01 8.45379941e-02 -1.74755943e-01]\n", + " [-9.78171949e-01 1.89944436e-01 8.42659439e-02]\n", + " [-9.78171949e-01 1.89944436e-01 8.42659439e-02]\n", + " [-9.82855796e-01 9.06464666e-02 -1.60554362e-01]\n", + " [-9.88466780e-01 7.68075218e-02 -1.30514479e-01]\n", + " [-9.93052747e-01 6.27408365e-02 -9.95481204e-02]\n", + " [-9.96515511e-01 4.85087873e-02 -6.78508185e-02]\n", + " [-9.98780889e-01 3.41806654e-02 -3.56148526e-02]\n", + " [-9.99798733e-01 1.98317635e-02 -3.03219180e-03]\n", + " [-9.81269695e-01 1.22143147e-01 -1.48965890e-01]\n", + " [-9.87010919e-01 1.08520701e-01 -1.18459708e-01]\n", + " [-9.91701517e-01 9.45992110e-02 -8.70579665e-02]\n", + " [-9.95243355e-01 8.04417470e-02 -5.49526083e-02]\n", + " [-9.97561792e-01 6.61183904e-02 -2.23344926e-02]\n", + " [-9.98606085e-01 5.17053619e-02 1.06039101e-02]\n", + " [-9.78539290e-01 1.54136054e-01 -1.36758676e-01]\n", + " [-9.84369877e-01 1.40750671e-01 -1.05854593e-01]\n", + " [-9.89132637e-01 1.26997608e-01 -7.40826141e-02]\n", + " [-9.92729246e-01 1.12939830e-01 -4.16321878e-02]\n", + " [-9.95084472e-01 9.86474122e-02 -8.69374405e-03]\n", + " [-9.96146938e-01 8.41968618e-02 2.45390762e-02]\n", + " [-9.74610329e-01 1.86423473e-01 -1.24020141e-01]\n", + " [-9.80489252e-01 1.73297562e-01 -9.27835202e-02]\n", + " [-9.85291223e-01 1.59737735e-01 -6.07047158e-02]\n", + " [-9.88917673e-01 1.45806086e-01 -2.79718053e-02]\n", + " [-9.91292858e-01 1.31571939e-01 5.22446422e-03]\n", + " [-9.92364885e-01 1.17111476e-01 3.86889736e-02]\n", + " [-9.69453078e-01 2.18807427e-01 -1.10833384e-01]\n", + " [-9.75338957e-01 2.05963561e-01 -7.93279966e-02]\n", + " [-9.80146594e-01 1.92621768e-01 -4.70054121e-02]\n", + " [-9.83777310e-01 1.78842696e-01 -1.40532790e-02]\n", + " [-9.86155087e-01 1.64694348e-01 1.93369146e-02]\n", + " [-9.87227758e-01 1.50252058e-01 5.29686080e-02]\n", + " [-9.63062406e-01 2.51092490e-01 -9.72798198e-02]\n", + " [-9.68913636e-01 2.38552003e-01 -6.55691086e-02]\n", + " [-9.73693035e-01 2.25451745e-01 -3.30663563e-02]\n", + " [-9.77302055e-01 2.11850635e-01 4.05295423e-05]\n", + " [-9.79664744e-01 1.97814989e-01 3.35591894e-02]\n", + " [-9.80728964e-01 1.83418908e-01 6.72919272e-02]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:fp_optics: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:cartToSphere: vec: [[-9.86857067e-01 -1.54841819e-01 4.62292170e-02]\n", + " [-9.84045347e-01 -1.62739669e-01 7.19065661e-02]\n", + " [-9.80416116e-01 -1.70815982e-01 9.80109120e-02]\n", + " [-9.75944053e-01 -1.79022283e-01 1.24435633e-01]\n", + " [-9.70614232e-01 -1.87310209e-01 1.51072493e-01]\n", + " [-9.64422001e-01 -1.95633891e-01 1.77813341e-01]\n", + " [-9.57372941e-01 -2.03951013e-01 2.04550817e-01]\n", + " [-9.49482900e-01 -2.12223079e-01 2.31178693e-01]\n", + " [-9.86857067e-01 -1.54841819e-01 4.62292170e-02]\n", + " [-9.83160769e-01 -1.79266000e-01 3.54767972e-02]\n", + " [-9.78634240e-01 -2.04131644e-01 2.46027771e-02]\n", + " [-9.73254139e-01 -2.29325726e-01 1.36415503e-02]\n", + " [-9.67007597e-01 -2.54733979e-01 2.62817124e-03]\n", + " [-9.59892043e-01 -2.80243984e-01 -8.40093991e-03]\n", + " [-9.51915150e-01 -3.05746450e-01 -1.94076216e-02]\n", + " [-9.43094877e-01 -3.31135636e-01 -3.03519807e-02]\n", + " [-9.49482900e-01 -2.12223079e-01 2.31178693e-01]\n", + " [-9.45543762e-01 -2.38215076e-01 2.21812020e-01]\n", + " [-9.40763267e-01 -2.64552243e-01 2.12076842e-01]\n", + " [-9.35118458e-01 -2.91115692e-01 2.02002780e-01]\n", + " [-9.28595682e-01 -3.17791562e-01 1.91620936e-01]\n", + " [-9.21191075e-01 -3.44468825e-01 1.80964725e-01]\n", + " [-9.12911440e-01 -3.71037261e-01 1.70070730e-01]\n", + " [-9.03775033e-01 -3.97386893e-01 1.58979078e-01]\n", + " [-9.43094877e-01 -3.31135636e-01 -3.03519807e-02]\n", + " [-9.40025215e-01 -3.41077567e-01 -4.32290352e-03]\n", + " [-9.36131949e-01 -3.50946016e-01 2.22231354e-02]\n", + " [-9.31390053e-01 -3.60685463e-01 4.91789259e-02]\n", + " [-9.25783840e-01 -3.70244958e-01 7.64392128e-02]\n", + " [-9.19307472e-01 -3.79577269e-01 1.03898362e-01]\n", + " [-9.11965790e-01 -3.88638260e-01 1.31448475e-01]\n", + " [-9.03775033e-01 -3.97386893e-01 1.58979078e-01]\n", + " [-9.85718361e-01 -1.58343539e-01 5.73291948e-02]\n", + " [-9.81726284e-01 -1.68150522e-01 8.91005323e-02]\n", + " [-9.76479900e-01 -1.78177383e-01 1.21407684e-01]\n", + " [-9.69947418e-01 -1.88334850e-01 1.54051912e-01]\n", + " [-9.62120270e-01 -1.98538591e-01 1.86834189e-01]\n", + " [-9.53012993e-01 -2.08712289e-01 2.19557319e-01]\n", + " [-9.85337368e-01 -1.65456717e-01 4.16454764e-02]\n", + " [-9.80252352e-01 -1.95703350e-01 2.83817727e-02]\n", + " [-9.73895875e-01 -2.26501087e-01 1.49693848e-02]\n", + " [-9.66239904e-01 -2.57639826e-01 1.47252474e-03]\n", + " [-9.57279701e-01 -2.88912740e-01 -1.20417185e-02]\n", + " [-9.47033662e-01 -3.20120093e-01 -2.55023579e-02]\n", + " [-9.47895516e-01 -2.23477096e-01 2.27050827e-01]\n", + " [-9.42505562e-01 -2.55580051e-01 2.15318611e-01]\n", + " [-9.35827974e-01 -2.88082780e-01 2.03062342e-01]\n", + " [-9.27833752e-01 -3.20773637e-01 1.90338652e-01]\n", + " [-9.18515890e-01 -3.53447977e-01 1.77209163e-01]\n", + " [-9.07891645e-01 -3.85902946e-01 1.63742716e-01]\n", + " [-9.41887464e-01 -3.35388764e-01 -1.90363624e-02]\n", + " [-9.37575358e-01 -3.47530584e-01 1.32265630e-02]\n", + " [-9.32000223e-01 -3.59506497e-01 4.61590974e-02]\n", + " [-9.25129300e-01 -3.71220842e-01 7.95667277e-02]\n", + " [-9.16951940e-01 -3.82586592e-01 1.13254755e-01]\n", + " [-9.07481770e-01 -3.93523766e-01 1.47023411e-01]\n", + " [-9.86837547e-01 -1.54951121e-01 4.62796581e-02]\n", + " [-9.86837547e-01 -1.54951121e-01 4.62796581e-02]\n", + " [-9.03837133e-01 -3.97267943e-01 1.58923311e-01]\n", + " [-9.03837133e-01 -3.97267943e-01 1.58923311e-01]\n", + " [-9.84219308e-01 -1.68915112e-01 5.27260822e-02]\n", + " [-9.79131617e-01 -1.99344492e-01 3.95354264e-02]\n", + " [-9.72764014e-01 -2.30315363e-01 2.61726338e-02]\n", + " [-9.65088623e-01 -2.61615435e-01 1.27009202e-02]\n", + " [-9.56100691e-01 -2.93037211e-01 -8.12917550e-04]\n", + " [-9.45818548e-01 -3.24380719e-01 -1.42977040e-02]\n", + " [-9.80224884e-01 -1.78894718e-01 8.45922931e-02]\n", + " [-9.75117803e-01 -2.09797431e-01 7.16261678e-02]\n", + " [-9.68712544e-01 -2.41211798e-01 5.84198246e-02]\n", + " [-9.60981391e-01 -2.72922412e-01 4.50346962e-02]\n", + " [-9.51919191e-01 -3.04721588e-01 3.15373997e-02]\n", + " [-9.41543857e-01 -3.36409222e-01 1.80000316e-02]\n", + " [-9.74968165e-01 -1.89069894e-01 1.17002786e-01]\n", + " [-9.69824746e-01 -2.20374175e-01 1.04284153e-01]\n", + " [-9.63373044e-01 -2.52159793e-01 9.12568792e-02]\n", + " [-9.55585049e-01 -2.84211381e-01 7.79814360e-02]\n", + " [-9.46454828e-01 -3.16322395e-01 6.45244220e-02]\n", + " [-9.35999698e-01 -3.48292657e-01 5.09587169e-02]\n", + " [-9.68417510e-01 -1.99349225e-01 1.49757849e-01]\n", + " [-9.63220945e-01 -2.30980050e-01 1.37308510e-01]\n", + " [-9.56713708e-01 -2.63064098e-01 1.24483580e-01]\n", + " [-9.48867252e-01 -2.95387466e-01 1.11342634e-01]\n", + " [-9.39674814e-01 -3.27744897e-01 9.79516506e-02]\n", + " [-9.29153221e-01 -3.59935719e-01 8.43834678e-02]\n", + " [-9.60564342e-01 -2.09647708e-01 1.82658106e-01]\n", + " [-9.55297458e-01 -2.41529771e-01 1.70499667e-01]\n", + " [-9.48724845e-01 -2.73840179e-01 1.57900998e-01]\n", + " [-9.40817512e-01 -3.06366543e-01 1.44920496e-01]\n", + " [-9.31568196e-01 -3.38904371e-01 1.31622655e-01]\n", + " [-9.20993586e-01 -3.71252099e-01 1.18079182e-01]\n", + " [-9.51423146e-01 -2.19888964e-01 2.15506010e-01]\n", + " [-9.46068395e-01 -2.51947466e-01 2.03659192e-01]\n", + " [-9.39420022e-01 -2.84412672e-01 1.91309839e-01]\n", + " [-9.31448949e-01 -3.17072932e-01 1.78515016e-01]\n", + " [-9.22147993e-01 -3.49723768e-01 1.65337125e-01]\n", + " [-9.11534183e-01 -3.82162628e-01 1.51845839e-01]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:fp_optics: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:cartToSphere: vec: [[ 1.65096929e-01 1.64673947e-01 -9.72432772e-01]\n", + " [ 1.71865097e-01 1.90165928e-01 -9.66591593e-01]\n", + " [ 1.78496013e-01 2.16083749e-01 -9.59920302e-01]\n", + " [ 1.84968350e-01 2.42304030e-01 -9.52405096e-01]\n", + " [ 1.91260311e-01 2.68707630e-01 -9.44042215e-01]\n", + " [ 1.97349608e-01 2.95179379e-01 -9.34838096e-01]\n", + " [ 2.03213724e-01 3.21607716e-01 -9.24809526e-01]\n", + " [ 2.08830327e-01 3.47884574e-01 -9.13983708e-01]\n", + " [ 1.65096929e-01 1.64673947e-01 -9.72432772e-01]\n", + " [ 1.38804391e-01 1.69553304e-01 -9.75697196e-01]\n", + " [ 1.11867551e-01 1.74558662e-01 -9.78271396e-01]\n", + " [ 8.43942836e-02 1.79646173e-01 -9.80104514e-01]\n", + " [ 5.64926631e-02 1.84776742e-01 -9.81155510e-01]\n", + " [ 2.82713012e-02 1.89915989e-01 -9.81393219e-01]\n", + " [-1.60313063e-04 1.95033873e-01 -9.80796494e-01]\n", + " [-2.86917616e-02 2.00104267e-01 -9.79354412e-01]\n", + " [ 2.08830327e-01 3.47884574e-01 -9.13983708e-01]\n", + " [ 1.81967774e-01 3.54783421e-01 -9.17069492e-01]\n", + " [ 1.54409514e-01 3.61540848e-01 -9.19481331e-01]\n", + " [ 1.26258219e-01 3.68113532e-01 -9.21168437e-01]\n", + " [ 9.76176102e-02 3.74462061e-01 -9.22089457e-01]\n", + " [ 6.85943281e-02 3.80550578e-01 -9.22212598e-01]\n", + " [ 3.92989358e-02 3.86346722e-01 -9.21516036e-01]\n", + " [ 9.84580320e-03 3.91821841e-01 -9.19988427e-01]\n", + " [-2.86917616e-02 2.00104267e-01 -9.79354412e-01]\n", + " [-2.34339350e-02 2.27035614e-01 -9.73604479e-01]\n", + " [-1.80596251e-02 2.54313811e-01 -9.66953120e-01]\n", + " [-1.25887095e-02 2.81820164e-01 -9.59384657e-01]\n", + " [-7.04144571e-03 3.09438675e-01 -9.50893330e-01]\n", + " [-1.43874304e-03 3.37054473e-01 -9.41484048e-01]\n", + " [ 4.19775546e-03 3.64553259e-01 -9.31173078e-01]\n", + " [ 9.84580320e-03 3.91821841e-01 -9.19988427e-01]\n", + " [ 1.67974409e-01 1.75745067e-01 -9.69999108e-01]\n", + " [ 1.76179118e-01 2.07291696e-01 -9.62284299e-01]\n", + " [ 1.84156691e-01 2.39354832e-01 -9.53307704e-01]\n", + " [ 1.91867214e-01 2.71713378e-01 -9.43058223e-01]\n", + " [ 1.99269680e-01 3.04155267e-01 -9.31547727e-01]\n", + " [ 2.06322692e-01 3.36476565e-01 -9.18811443e-01]\n", + " [ 1.53742451e-01 1.66869712e-01 -9.73918763e-01]\n", + " [ 1.21070502e-01 1.72941737e-01 -9.77462577e-01]\n", + " [ 8.75379027e-02 1.79158741e-01 -9.79917987e-01]\n", + " [ 5.33435258e-02 1.85446761e-01 -9.81205364e-01]\n", + " [ 1.86873613e-02 1.91742460e-01 -9.81267350e-01]\n", + " [-1.62286254e-02 1.97992179e-01 -9.80069247e-01]\n", + " [ 1.97191461e-01 3.50817088e-01 -9.15446830e-01]\n", + " [ 1.63787681e-01 3.59181994e-01 -9.18782831e-01]\n", + " [ 1.29440961e-01 3.67291148e-01 -9.21054966e-01]\n", + " [ 9.43417104e-02 3.75070400e-01 -9.22183190e-01]\n", + " [ 5.86863683e-02 3.82453739e-01 -9.22109022e-01]\n", + " [ 2.26801096e-02 3.89383114e-01 -9.20796613e-01]\n", + " [-2.63169290e-02 2.11778693e-01 -9.76963257e-01]\n", + " [-1.97911547e-02 2.45033990e-01 -9.69312464e-01]\n", + " [-1.31103275e-02 2.78691973e-01 -9.60291052e-01]\n", + " [-6.31157035e-03 3.12538071e-01 -9.49884266e-01]\n", + " [ 5.66607967e-04 3.46360749e-01 -9.38101226e-01]\n", + " [ 7.48409394e-03 3.79949985e-01 -9.24976755e-01]\n", + " [ 1.65031590e-01 1.64776673e-01 -9.72426461e-01]\n", + " [ 1.65031590e-01 1.64776673e-01 -9.72426461e-01]\n", + " [ 9.92735035e-03 3.91710964e-01 -9.20034765e-01]\n", + " [ 9.92735035e-03 3.91710964e-01 -9.20034765e-01]\n", + " [ 1.56647915e-01 1.77903784e-01 -9.71499704e-01]\n", + " [ 1.23866874e-01 1.84142687e-01 -9.75063315e-01]\n", + " [ 9.02201551e-02 1.90498114e-01 -9.77533013e-01]\n", + " [ 5.59062071e-02 1.96896405e-01 -9.78829046e-01]\n", + " [ 2.11248091e-02 2.03274657e-01 -9.78893843e-01]\n", + " [-1.39218516e-02 2.09579524e-01 -9.77692490e-01]\n", + " [ 1.64762999e-01 2.09629315e-01 -9.63799100e-01]\n", + " [ 1.31719028e-01 2.16321882e-01 -9.67395959e-01]\n", + " [ 9.77948730e-02 2.23052728e-01 -9.69888469e-01]\n", + " [ 6.31873704e-02 2.29749286e-01 -9.71196490e-01]\n", + " [ 2.80956217e-02 2.36349683e-01 -9.71261789e-01]\n", + " [-7.27741033e-03 2.42801119e-01 -9.70048790e-01]\n", + " [ 1.72675009e-01 2.41860878e-01 -9.54822841e-01]\n", + " [ 1.39436324e-01 2.48980002e-01 -9.58418734e-01]\n", + " [ 1.05302514e-01 2.56063251e-01 -9.60907380e-01]\n", + " [ 7.04685152e-02 2.63038883e-01 -9.62208259e-01]\n", + " [ 3.51327309e-02 2.69845371e-01 -9.62262525e-01]\n", + " [-5.00985400e-04 2.76429738e-01 -9.61034000e-01]\n", + " [ 1.80343846e-01 2.74377809e-01 -9.44559641e-01]\n", + " [ 1.46978074e-01 2.81898039e-01 -9.48119687e-01]\n", + " [ 1.12702125e-01 2.89312455e-01 -9.50576948e-01]\n", + " [ 7.77090905e-02 2.96549421e-01 -9.51850691e-01]\n", + " [ 4.21967140e-02 3.03546861e-01 -9.51881684e-01]\n", + " [ 6.36965628e-03 3.10250838e-01 -9.50633392e-01]\n", + " [ 1.87728118e-01 3.06968307e-01 -9.33021228e-01]\n", + " [ 1.54301903e-01 3.14864896e-01 -9.36510021e-01]\n", + " [ 1.19950905e-01 3.22589639e-01 -9.38907719e-01]\n", + " [ 8.48667005e-02 3.30070214e-01 -9.40133659e-01]\n", + " [ 4.92464235e-02 3.37243179e-01 -9.40128623e-01]\n", + " [ 1.32952534e-02 3.44053030e-01 -9.38856085e-01]\n", + " [ 1.94785992e-01 3.39428290e-01 -9.20242823e-01]\n", + " [ 1.61364915e-01 3.47675761e-01 -9.23624886e-01]\n", + " [ 1.27005417e-01 3.55688818e-01 -9.25934711e-01]\n", + " [ 9.18980970e-02 3.63393848e-01 -9.27092040e-01]\n", + " [ 5.62395539e-02 3.70725542e-01 -9.27038125e-01]\n", + " [ 2.02350499e-02 3.77626517e-01 -9.25736872e-01]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:cartToSphere: vec: [[-0.08997097 -0.57403062 0.81387596]\n", + " [-0.11006028 -0.55814491 0.82241169]\n", + " [-0.13038116 -0.54141666 0.83058338]\n", + " [-0.15085142 -0.52390515 0.83831214]\n", + " [-0.17138957 -0.50567142 0.84553062]\n", + " [-0.19191443 -0.48677938 0.85218231]\n", + " [-0.21234502 -0.46729679 0.85822101]\n", + " [-0.23260091 -0.44729573 0.86361064]\n", + " [-0.08997097 -0.57403062 0.81387596]\n", + " [-0.07021828 -0.55993833 0.82555342]\n", + " [-0.05009182 -0.54502199 0.83692403]\n", + " [-0.02966538 -0.52933371 0.84789491]\n", + " [-0.00901387 -0.51292717 0.8583848 ]\n", + " [ 0.01178621 -0.49585877 0.86832319]\n", + " [ 0.0326566 -0.47818863 0.87764981]\n", + " [ 0.05351759 -0.45998118 0.88631438]\n", + " [-0.23260091 -0.44729573 0.86361064]\n", + " [-0.21347709 -0.43155587 0.87646281]\n", + " [-0.19379068 -0.41514398 0.88887606]\n", + " [-0.17361086 -0.39810662 0.90076101]\n", + " [-0.15300912 -0.38049475 0.91203725]\n", + " [-0.13206028 -0.36236478 0.92263311]\n", + " [-0.11084278 -0.34377891 0.93248589]\n", + " [-0.08943832 -0.32480496 0.94154263]\n", + " [ 0.05351759 -0.45998118 0.88631438]\n", + " [ 0.03393408 -0.44250171 0.89612539]\n", + " [ 0.01393937 -0.42431397 0.90540784]\n", + " [-0.00638875 -0.4054714 0.91408541]\n", + " [-0.02697161 -0.38603223 0.92209091]\n", + " [-0.04772894 -0.36606046 0.92936628]\n", + " [-0.06857885 -0.34562611 0.93586299]\n", + " [-0.08943832 -0.32480496 0.94154263]\n", + " [-0.0986294 -0.56716457 0.81767756]\n", + " [-0.1234172 -0.54711976 0.82790589]\n", + " [-0.14847116 -0.52586826 0.83750754]\n", + " [-0.17364105 -0.50352164 0.8463538 ]\n", + " [-0.19877735 -0.48019767 0.85434054]\n", + " [-0.22373123 -0.45602289 0.86138694]\n", + " [-0.08147761 -0.56793769 0.8190288 ]\n", + " [-0.05700802 -0.55010424 0.83314789]\n", + " [-0.03205009 -0.53108477 0.84671232]\n", + " [-0.00674123 -0.5109774 0.85956771]\n", + " [ 0.01877769 -0.48988606 0.87158422]\n", + " [ 0.04436199 -0.46792321 0.88265502]\n", + " [-0.22426725 -0.44058804 0.86924472]\n", + " [-0.2004414 -0.42084034 0.88471275]\n", + " [-0.17583921 -0.40012894 0.89943171]\n", + " [-0.15059124 -0.37854577 0.9132499 ]\n", + " [-0.12483529 -0.35619469 0.92603536]\n", + " [-0.09871716 -0.33319257 0.93767672]\n", + " [ 0.04496316 -0.45251378 0.89062315]\n", + " [ 0.02067459 -0.43060873 0.90230188]\n", + " [-0.00415421 -0.40769236 0.9131099 ]\n", + " [-0.02937886 -0.3838698 0.92291974]\n", + " [-0.05485158 -0.3592589 0.93162457]\n", + " [-0.08042109 -0.33399098 0.93913922]\n", + " [-0.08997236 -0.57393107 0.81394601]\n", + " [-0.08997236 -0.57393107 0.81394601]\n", + " [-0.08944049 -0.32494219 0.94149507]\n", + " [-0.08944049 -0.32494219 0.94149507]\n", + " [-0.09013744 -0.56111605 0.82281469]\n", + " [-0.06566328 -0.54313579 0.83707338]\n", + " [-0.04068207 -0.52398225 0.85075706]\n", + " [-0.01533098 -0.50375226 0.86371212]\n", + " [ 0.01024897 -0.48254896 0.87580903]\n", + " [ 0.03591267 -0.46048455 0.88694096]\n", + " [-0.11494403 -0.5409233 0.83318057]\n", + " [-0.09048822 -0.52255035 0.84779303]\n", + " [-0.06547269 -0.5030401 0.86177954]\n", + " [-0.04003388 -0.48248624 0.87498818]\n", + " [-0.014313 -0.46099026 0.88728976]\n", + " [ 0.01154379 -0.43866425 0.89857688]\n", + " [-0.14003323 -0.51953489 0.84289631]\n", + " [-0.11564302 -0.5008004 0.85780281]\n", + " [-0.0906412 -0.480965 0.87204177]\n", + " [-0.06516314 -0.46012026 0.88546209]\n", + " [-0.0393499 -0.43836709 0.89793423]\n", + " [-0.01334836 -0.41581815 0.90934982]\n", + " [-0.16525494 -0.49706112 0.85183393]\n", + " [-0.1409781 -0.47799314 0.8669762 ]\n", + " [-0.11603879 -0.45786203 0.88141781]\n", + " [-0.09057105 -0.43675842 0.8950078 ]\n", + " [-0.06471537 -0.41478349 0.90761588]\n", + " [-0.03861889 -0.39205099 0.91913253]\n", + " [-0.19045946 -0.47361906 0.85988963]\n", + " [-0.16634329 -0.45424412 0.8752098 ]\n", + " [-0.14151513 -0.43384622 0.88980387]\n", + " [-0.11610754 -0.41251603 0.90352065]\n", + " [-0.09026005 -0.39035564 0.91622901]\n", + " [-0.06411955 -0.36748015 0.92781842]\n", + " [-0.21549744 -0.44933503 0.86698263]\n", + " [-0.19158797 -0.42967974 0.88242245]\n", + " [-0.16691862 -0.40904469 0.89711795]\n", + " [-0.14162047 -0.38752139 0.91091757]\n", + " [-0.11583178 -0.36521321 0.92368951]\n", + " [-0.08969873 -0.34223658 0.93532254]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:fp_optics: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:fp_optics: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:cartToSphere: vec: [[-0.68655841 -0.30070276 -0.6619784 ]\n", + " [-0.69592866 -0.31826221 -0.64373322]\n", + " [-0.70487524 -0.33604616 -0.62467901]\n", + " [-0.71333815 -0.35396226 -0.60486313]\n", + " [-0.72126402 -0.37191902 -0.58434105]\n", + " [-0.72860606 -0.3898287 -0.56317562]\n", + " [-0.73532406 -0.40760853 -0.54143681]\n", + " [-0.74138441 -0.42518113 -0.51920147]\n", + " [-0.68655841 -0.30070276 -0.6619784 ]\n", + " [-0.66835607 -0.31742057 -0.67271416]\n", + " [-0.64930976 -0.33436008 -0.68308138]\n", + " [-0.62946558 -0.35143163 -0.69301435]\n", + " [-0.60887814 -0.36854626 -0.7024536 ]\n", + " [-0.58760961 -0.38561874 -0.711346 ]\n", + " [-0.56572943 -0.40256883 -0.71964474]\n", + " [-0.54331413 -0.41932168 -0.72730949]\n", + " [-0.74138441 -0.42518113 -0.51920147]\n", + " [-0.72317525 -0.44385596 -0.52915919]\n", + " [-0.70401163 -0.46255959 -0.53889354]\n", + " [-0.68393949 -0.48119519 -0.5483411 ]\n", + " [-0.66301046 -0.49967235 -0.55744477]\n", + " [-0.64128356 -0.51790559 -0.56615297]\n", + " [-0.61882714 -0.53581303 -0.57441916]\n", + " [-0.59571978 -0.55331615 -0.58220201]\n", + " [-0.54331413 -0.41932168 -0.72730949]\n", + " [-0.55189802 -0.43882038 -0.70911582]\n", + " [-0.56020196 -0.45835615 -0.68998797]\n", + " [-0.56816857 -0.47783002 -0.66997235]\n", + " [-0.57574661 -0.49714932 -0.64912125]\n", + " [-0.58289044 -0.516226 -0.62749458]\n", + " [-0.58955972 -0.5349754 -0.60516168]\n", + " [-0.59571978 -0.55331615 -0.58220201]\n", + " [-0.69063104 -0.3083826 -0.65416277]\n", + " [-0.70183811 -0.33006752 -0.63125169]\n", + " [-0.71234853 -0.35199787 -0.60717137]\n", + " [-0.72206129 -0.37400464 -0.58202064]\n", + " [-0.73089027 -0.39592642 -0.55591519]\n", + " [-0.73876414 -0.41761305 -0.52898667]\n", + " [-0.67876108 -0.30801904 -0.66663908]\n", + " [-0.65587916 -0.3286702 -0.67955752]\n", + " [-0.63177424 -0.34956529 -0.6918565 ]\n", + " [-0.60654338 -0.37054 -0.70342394]\n", + " [-0.58030102 -0.39143754 -0.71416201]\n", + " [-0.55317794 -0.41211243 -0.72398723]\n", + " [-0.73354558 -0.43325348 -0.5236433 ]\n", + " [-0.71058083 -0.45617271 -0.53570639]\n", + " [-0.68622754 -0.47903835 -0.5473701 ]\n", + " [-0.66057835 -0.50168134 -0.5585267 ]\n", + " [-0.63374217 -0.52394415 -0.56908117]\n", + " [-0.60584909 -0.5456774 -0.57894996]\n", + " [-0.54716497 -0.42775488 -0.71946942]\n", + " [-0.55750547 -0.4516897 -0.6965372 ]\n", + " [-0.56736759 -0.47558122 -0.67224736]\n", + " [-0.57665452 -0.49925627 -0.6466937 ]\n", + " [-0.58528215 -0.52255264 -0.61998673]\n", + " [-0.59317856 -0.54531576 -0.59225832]\n", + " [-0.68653034 -0.30081902 -0.66195469]\n", + " [-0.68653034 -0.30081902 -0.66195469]\n", + " [-0.59577965 -0.55319513 -0.58225574]\n", + " [-0.59577965 -0.55319513 -0.58225574]\n", + " [-0.68285448 -0.31565497 -0.65884118]\n", + " [-0.65994075 -0.33650016 -0.67174836]\n", + " [-0.63578829 -0.35756948 -0.68404482]\n", + " [-0.61049459 -0.37869628 -0.69561878]\n", + " [-0.58417417 -0.39972301 -0.70637246]\n", + " [-0.55695796 -0.42050406 -0.71622215]\n", + " [-0.69404622 -0.33753424 -0.63590131]\n", + " [-0.67106081 -0.35889531 -0.64874614]\n", + " [-0.64679639 -0.38042222 -0.66100935]\n", + " [-0.62135076 -0.40194478 -0.67257983]\n", + " [-0.59483813 -0.42330513 -0.68335961]\n", + " [-0.56738974 -0.44435786 -0.693264 ]\n", + " [-0.70454965 -0.35963971 -0.61177534]\n", + " [-0.6815209 -0.38145993 -0.62451387]\n", + " [-0.6571788 -0.40338829 -0.63670551]\n", + " [-0.63162038 -0.42525417 -0.64823961]\n", + " [-0.60495885 -0.4469006 -0.65901794]\n", + " [-0.5773255 -0.46818234 -0.66895483]\n", + " [-0.71426417 -0.38180003 -0.58656238]\n", + " [-0.69122114 -0.40401926 -0.59915087]\n", + " [-0.66683603 -0.42629262 -0.6112318 ]\n", + " [-0.64120439 -0.44845034 -0.62269513]\n", + " [-0.61443801 -0.47033623 -0.63344279]\n", + " [-0.58666801 -0.4918045 -0.64338868]\n", + " [-0.7231037 -0.40385305 -0.56037822]\n", + " [-0.7000752 -0.42641075 -0.57277272]\n", + " [-0.67568128 -0.4489735 -0.584703 ]\n", + " [-0.65001592 -0.47137234 -0.59605991]\n", + " [-0.62318942 -0.49345104 -0.60674625]\n", + " [-0.59533253 -0.51506253 -0.61667639]\n", + " [-0.73099672 -0.4256484 -0.5333547 ]\n", + " [-0.70801057 -0.44848408 -0.54551174]\n", + " [-0.683641 -0.47128065 -0.55725177]\n", + " [-0.65798084 -0.49386925 -0.5684667 ]\n", + " [-0.63113925 -0.51609279 -0.57906086]\n", + " [-0.6032465 -0.53780248 -0.58895004]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:fp_optics: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:cartToSphere: vec: [[-0.6902265 0.28253355 0.66615477]\n", + " [-0.67887733 0.26496143 0.68477808]\n", + " [-0.66675316 0.24682622 0.70321905]\n", + " [-0.65387253 0.22818842 0.72137422]\n", + " [-0.64026081 0.20911115 0.73914723]\n", + " [-0.62595125 0.18966136 0.75644802]\n", + " [-0.61098566 0.16991043 0.77319271]\n", + " [-0.59541449 0.14993389 0.78930438]\n", + " [-0.6902265 0.28253355 0.66615477]\n", + " [-0.70749123 0.26121488 0.65667568]\n", + " [-0.72406778 0.23968467 0.64674346]\n", + " [-0.73989873 0.21802836 0.63640672]\n", + " [-0.75493391 0.19633258 0.62572223]\n", + " [-0.76913012 0.17468482 0.61475529]\n", + " [-0.78245045 0.15317355 0.60358028]\n", + " [-0.79486372 0.13188859 0.59228124]\n", + " [-0.59541449 0.14993389 0.78930438]\n", + " [-0.61333257 0.12797599 0.77938777]\n", + " [-0.63064034 0.10597357 0.7688058 ]\n", + " [-0.64727732 0.08401527 0.75761039]\n", + " [-0.66319196 0.06218877 0.74586123]\n", + " [-0.67834162 0.04058024 0.73362517]\n", + " [-0.69269193 0.01927467 0.72097599]\n", + " [-0.70621566 -0.00164291 0.70799488]\n", + " [-0.79486372 0.13188859 0.59228124]\n", + " [-0.78469296 0.11355761 0.60939448]\n", + " [-0.77364461 0.09486681 0.6264777 ]\n", + " [-0.76174061 0.07588093 0.64342313]\n", + " [-0.74900852 0.05666674 0.66013265]\n", + " [-0.73548209 0.03729337 0.67651704]\n", + " [-0.72120186 0.0178323 0.6924954 ]\n", + " [-0.70621566 -0.00164291 0.70799488]\n", + " [-0.68543482 0.27487236 0.67425833]\n", + " [-0.67100267 0.25294901 0.69697362]\n", + " [-0.65542404 0.23023992 0.71931141]\n", + " [-0.63874275 0.20686013 0.74109148]\n", + " [-0.62102011 0.18293296 0.76214798]\n", + " [-0.60233668 0.15859159 0.78232937]\n", + " [-0.69779739 0.2732106 0.66214407]\n", + " [-0.71850255 0.24692876 0.65021556]\n", + " [-0.73811615 0.22041405 0.63765366]\n", + " [-0.75654288 0.19382546 0.62455949]\n", + " [-0.77370309 0.1673241 0.61105334]\n", + " [-0.78953124 0.14107334 0.5972761 ]\n", + " [-0.60335185 0.14043993 0.78501157]\n", + " [-0.62490977 0.11348712 0.77240433]\n", + " [-0.64548981 0.08655544 0.75884851]\n", + " [-0.66499335 0.05980675 0.7444508 ]\n", + " [-0.68334182 0.03339975 0.72933423]\n", + " [-0.70047498 0.00749082 0.71363765]\n", + " [-0.79049716 0.12401689 0.59977834]\n", + " [-0.77743842 0.10130045 0.62074771]\n", + " [-0.76308274 0.07810751 0.64156368]\n", + " [-0.74747849 0.05456014 0.66204162]\n", + " [-0.73068787 0.03078558 0.68201722]\n", + " [-0.71278853 0.00691633 0.7013449 ]\n", + " [-0.69024917 0.28240203 0.66618705]\n", + " [-0.69024917 0.28240203 0.66618705]\n", + " [-0.70622324 -0.0015056 0.70798762]\n", + " [-0.70622324 -0.0015056 0.70798762]\n", + " [-0.69301322 0.26564594 0.67019767]\n", + " [-0.71380525 0.23927402 0.65820211]\n", + " [-0.73350764 0.21268304 0.64554818]\n", + " [-0.75202522 0.18603251 0.63233691]\n", + " [-0.76927886 0.15948368 0.61868812]\n", + " [-0.78520375 0.13319973 0.60474201]\n", + " [-0.67865733 0.24363495 0.69286812]\n", + " [-0.69967159 0.2170411 0.68070024]\n", + " [-0.71960462 0.19026872 0.66780761]\n", + " [-0.73836135 0.16347874 0.65429139]\n", + " [-0.75586393 0.13683276 0.64027065]\n", + " [-0.77204968 0.11049324 0.6258838 ]\n", + " [-0.66314121 0.22085546 0.71516893]\n", + " [-0.68434228 0.19409003 0.70285468]\n", + " [-0.70447556 0.16718881 0.6897551 ]\n", + " [-0.72344562 0.14031391 0.67597222]\n", + " [-0.74117544 0.11362704 0.66162516]\n", + " [-0.75760411 0.08728962 0.64685125]\n", + " [-0.64650829 0.19742303 0.73692006]\n", + " [-0.6678601 0.17053808 0.72448578]\n", + " [-0.68816337 0.14356227 0.71121097]\n", + " [-0.70732195 0.11665844 0.69719902]\n", + " [-0.72525898 0.08998793 0.68256984]\n", + " [-0.74191467 0.06371081 0.66746052]\n", + " [-0.62881939 0.17346161 0.75795597]\n", + " [-0.65028481 0.14651079 0.7454289 ]\n", + " [-0.67072731 0.11951591 0.73201149]\n", + " [-0.69004971 0.09263986 0.71780864]\n", + " [-0.70817477 0.06604314 0.70294153]\n", + " [-0.72504301 0.03988425 0.68754773]\n", + " [-0.61015464 0.14910482 0.77812536]\n", + " [-0.63169534 0.12214283 0.76553388]\n", + " [-0.65224528 0.09518484 0.75200794]\n", + " [-0.67170619 0.06839309 0.73765383]\n", + " [-0.68999992 0.0419268 0.72259411]\n", + " [-0.70706655 0.01594289 0.70696727]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:fp_optics: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:cartToSphere: vec: [[ 0.28860098 -0.38293143 0.87753803]\n", + " [ 0.27122527 -0.40322884 0.87398133]\n", + " [ 0.25316964 -0.4235675 0.86976762]\n", + " [ 0.23451117 -0.44385071 0.86487054]\n", + " [ 0.21532677 -0.46398571 0.8592739 ]\n", + " [ 0.19569336 -0.48388352 0.85297177]\n", + " [ 0.17568836 -0.50345891 0.84596852]\n", + " [ 0.15539002 -0.52263062 0.8382787 ]\n", + " [ 0.28860098 -0.38293143 0.87753803]\n", + " [ 0.27121061 -0.36659353 0.88997415]\n", + " [ 0.25313234 -0.349739 0.90200147]\n", + " [ 0.23444351 -0.33241381 0.91353013]\n", + " [ 0.21522122 -0.31466864 0.92448011]\n", + " [ 0.19554253 -0.2965591 0.93478116]\n", + " [ 0.17548497 -0.27814577 0.94437278]\n", + " [ 0.1551269 -0.25949407 0.95320432]\n", + " [ 0.15539002 -0.52263062 0.8382787 ]\n", + " [ 0.13606968 -0.5071007 0.85107809]\n", + " [ 0.11624087 -0.49084777 0.86345615]\n", + " [ 0.09597758 -0.47391422 0.87532486]\n", + " [ 0.07535445 -0.4563472 0.88660529]\n", + " [ 0.05444822 -0.43819983 0.897227 ]\n", + " [ 0.03333842 -0.41953204 0.90712812]\n", + " [ 0.01210736 -0.40041061 0.91625584]\n", + " [ 0.1551269 -0.25949407 0.95320432]\n", + " [ 0.13582013 -0.27956075 0.95047287]\n", + " [ 0.11601313 -0.2997994 0.946922 ]\n", + " [ 0.09577961 -0.32011709 0.94252391]\n", + " [ 0.07519412 -0.34042402 0.93726055]\n", + " [ 0.0543334 -0.36063237 0.93112415]\n", + " [ 0.03327704 -0.38065595 0.92411779]\n", + " [ 0.01210736 -0.40041061 0.91625584]\n", + " [ 0.28105488 -0.39171493 0.87610934]\n", + " [ 0.25929072 -0.41663199 0.87131287]\n", + " [ 0.236582 -0.44151457 0.86550208]\n", + " [ 0.21307039 -0.46619026 0.85864291]\n", + " [ 0.18889757 -0.49049525 0.85072447]\n", + " [ 0.16420638 -0.51427425 0.84175903]\n", + " [ 0.28104952 -0.37594366 0.88299351]\n", + " [ 0.25926199 -0.35556713 0.89797285]\n", + " [ 0.23651818 -0.33445961 0.91224773]\n", + " [ 0.21296014 -0.3127124 0.92566675]\n", + " [ 0.1887298 -0.2904279 0.93810058]\n", + " [ 0.1639702 -0.26771967 0.94944192]\n", + " [ 0.14710367 -0.51588592 0.84393259]\n", + " [ 0.12307408 -0.49636044 0.85934806]\n", + " [ 0.09835412 -0.47579073 0.87404213]\n", + " [ 0.07308089 -0.45426158 0.88786575]\n", + " [ 0.0473957 -0.4318709 0.90068928]\n", + " [ 0.02144618 -0.40873186 0.9124025 ]\n", + " [ 0.14684565 -0.26828029 0.952083 ]\n", + " [ 0.12283827 -0.29300222 0.94818799]\n", + " [ 0.09815262 -0.31788957 0.94303355]\n", + " [ 0.07292552 -0.34277581 0.93658241]\n", + " [ 0.04729831 -0.36749922 0.92882032]\n", + " [ 0.02141867 -0.39190192 0.91975764]\n", + " [ 0.28848459 -0.38294572 0.87757006]\n", + " [ 0.28848459 -0.38294572 0.87757006]\n", + " [ 0.01225257 -0.40040968 0.91625431]\n", + " [ 0.01225257 -0.40040968 0.91625431]\n", + " [ 0.27355116 -0.38472719 0.88156381]\n", + " [ 0.25158064 -0.36437598 0.89662552]\n", + " [ 0.2286708 -0.34327102 0.91097457]\n", + " [ 0.20496319 -0.32150349 0.92445962]\n", + " [ 0.18059924 -0.29917585 0.93695129]\n", + " [ 0.1557218 -0.276402 0.94834206]\n", + " [ 0.25160403 -0.40969107 0.87684014]\n", + " [ 0.2291481 -0.3894308 0.89209574]\n", + " [ 0.20580067 -0.36835444 0.9066207 ]\n", + " [ 0.18170149 -0.34655258 0.92026403]\n", + " [ 0.15699057 -0.32412775 0.93289612]\n", + " [ 0.1318105 -0.30119467 0.94440868]\n", + " [ 0.2287293 -0.43462987 0.87107967]\n", + " [ 0.20583584 -0.41448958 0.88647053]\n", + " [ 0.18209787 -0.39347431 0.9011206 ]\n", + " [ 0.15765328 -0.37167367 0.9148793 ]\n", + " [ 0.13264117 -0.34918982 0.92761673]\n", + " [ 0.10720451 -0.32613798 0.93922373]\n", + " [ 0.20506819 -0.45937128 0.86424827]\n", + " [ 0.18178327 -0.43938059 0.8797156 ]\n", + " [ 0.15769996 -0.41845972 0.89443959]\n", + " [ 0.1329549 -0.39669699 0.90827005]\n", + " [ 0.10768702 -0.37419365 0.92107688]\n", + " [ 0.0820403 -0.35106491 0.93275014]\n", + " [ 0.18076187 -0.48375137 0.85633507]\n", + " [ 0.15713024 -0.46393954 0.87182004]\n", + " [ 0.13274595 -0.44314633 0.88656632]\n", + " [ 0.10774524 -0.42145846 0.90042419]\n", + " [ 0.08226767 -0.3989759 0.91326352]\n", + " [ 0.0564587 -0.37581329 0.92497394]\n", + " [ 0.15595303 -0.50761446 0.84735247]\n", + " [ 0.13201927 -0.48800956 0.86279637]\n", + " [ 0.10737879 -0.46737612 0.87751317]\n", + " [ 0.08216831 -0.44579936 0.89135363]\n", + " [ 0.05652863 -0.42337773 0.90418793]\n", + " [ 0.03060683 -0.40022485 0.91590572]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:cartToSphere: vec: [[-0.7400809 0.61311394 0.27635404]\n", + " [-0.72097676 0.63177774 0.28469177]\n", + " [-0.70090856 0.65030602 0.29296633]\n", + " [-0.67992487 0.66859676 0.30113211]\n", + " [-0.65808122 0.68655481 0.30914658]\n", + " [-0.63544166 0.70409092 0.31696982]\n", + " [-0.61207971 0.72112156 0.32456452]\n", + " [-0.58807845 0.73756943 0.33189618]\n", + " [-0.7400809 0.61311394 0.27635404]\n", + " [-0.73968035 0.60102705 0.30272013]\n", + " [-0.73859492 0.58854207 0.32877923]\n", + " [-0.73683559 0.57571675 0.35443411]\n", + " [-0.73442004 0.56261639 0.3795919 ]\n", + " [-0.7313723 0.549314 0.40416419]\n", + " [-0.72772242 0.53589071 0.42806684]\n", + " [-0.72350642 0.52243595 0.45121961]\n", + " [-0.58807845 0.73756943 0.33189618]\n", + " [-0.58776037 0.72495645 0.35913214]\n", + " [-0.58691384 0.71173533 0.3859598 ]\n", + " [-0.58554966 0.6979674 0.41227795]\n", + " [-0.58368523 0.68372086 0.43799239]\n", + " [-0.58134423 0.66907016 0.46301621]\n", + " [-0.57855627 0.65409598 0.48726901]\n", + " [-0.57535683 0.63888588 0.51067538]\n", + " [-0.72350642 0.52243595 0.45121961]\n", + " [-0.70477322 0.53945473 0.46074212]\n", + " [-0.68513092 0.55650675 0.4699956 ]\n", + " [-0.66463212 0.57348735 0.47893256]\n", + " [-0.64333589 0.59030014 0.48750864]\n", + " [-0.62130808 0.60685674 0.49568253]\n", + " [-0.59862167 0.62307642 0.5034162 ]\n", + " [-0.57535683 0.63888588 0.51067538]\n", + " [-0.73187263 0.62122047 0.28008495]\n", + " [-0.70780443 0.64401657 0.29026804]\n", + " [-0.68233575 0.66650701 0.30031039]\n", + " [-0.65556585 0.68851383 0.31013243]\n", + " [-0.62761276 0.7098727 0.31966072]\n", + " [-0.59861581 0.73043239 0.32882766]\n", + " [-0.73992725 0.6079601 0.28791003]\n", + " [-0.73897478 0.5928712 0.32003127]\n", + " [-0.73700382 0.57724075 0.35159421]\n", + " [-0.73404414 0.5611858 0.38242606]\n", + " [-0.73013996 0.54484084 0.41236404]\n", + " [-0.72534906 0.52835866 0.44125488]\n", + " [-0.5880882 0.73209336 0.34379002]\n", + " [-0.58734184 0.7162187 0.37690892]\n", + " [-0.58581154 0.69949087 0.40931328]\n", + " [-0.58352665 0.68203257 0.44082674]\n", + " [-0.58053069 0.66398088 0.4712892 ]\n", + " [-0.57688063 0.64548713 0.5005548 ]\n", + " [-0.71546874 0.52989159 0.45532339]\n", + " [-0.69189115 0.5507873 0.466819 ]\n", + " [-0.66699955 0.57162788 0.47786312]\n", + " [-0.64089995 0.59223246 0.48837277]\n", + " [-0.61371365 0.61243828 0.49827193]\n", + " [-0.58557798 0.63209981 0.50749213]\n", + " [-0.74001707 0.61313728 0.27647318]\n", + " [-0.74001707 0.61313728 0.27647318]\n", + " [-0.57544888 0.6388849 0.51057288]\n", + " [-0.57544888 0.6388849 0.51057288]\n", + " [-0.73178341 0.61602124 0.29156624]\n", + " [-0.73083873 0.60085327 0.32380565]\n", + " [-0.72888475 0.58511935 0.35547484]\n", + " [-0.72595161 0.56893651 0.38640072]\n", + " [-0.72208388 0.55243892 0.41642059]\n", + " [-0.71733961 0.53577904 0.44538152]\n", + " [-0.70771718 0.63876151 0.30186111]\n", + " [-0.70679763 0.62339095 0.33439623]\n", + " [-0.70489814 0.60738945 0.36632864]\n", + " [-0.70204977 0.59087424 0.39748427]\n", + " [-0.69829813 0.57397892 0.42770073]\n", + " [-0.69370202 0.55685473 0.45682635]\n", + " [-0.6822509 0.66120603 0.31199405]\n", + " [-0.68136153 0.64566451 0.3447663 ]\n", + " [-0.67952704 0.62943258 0.37690534]\n", + " [-0.67677904 0.61262829 0.4082361 ]\n", + " [-0.67316378 0.5953852 0.43859662]\n", + " [-0.6687406 0.57785361 0.46783675]\n", + " [-0.6554839 0.6831771 0.32188492]\n", + " [-0.65463036 0.66749669 0.35483414]\n", + " [-0.65287251 0.65107142 0.38712206]\n", + " [-0.65024198 0.63402066 0.41857277]\n", + " [-0.64678502 0.6164786 0.44902479]\n", + " [-0.64256097 0.59859518 0.4783296 ]\n", + " [-0.62753422 0.70451073 0.33145956]\n", + " [-0.6267224 0.68872448 0.36452383]\n", + " [-0.62505336 0.67214384 0.3969017 ]\n", + " [-0.62255811 0.65488969 0.42841673]\n", + " [-0.61928215 0.63709734 0.45890805]\n", + " [-0.61528419 0.61891702 0.48822853]\n", + " [-0.59854119 0.72505599 0.34064976]\n", + " [-0.59777682 0.70919819 0.37376571]\n", + " [-0.59620839 0.69250158 0.40617376]\n", + " [-0.59386575 0.67508847 0.43769743]\n", + " [-0.59079303 0.65709546 0.46817642]\n", + " [-0.58704771 0.63867356 0.49746465]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:fp_optics: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:fp_optics: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:cartToSphere: vec: [[0.60464901 0.78599946 0.1288582 ]\n", + " [0.62540061 0.7709585 0.12040379]\n", + " [0.64614354 0.75497833 0.11183131]\n", + " [0.66675804 0.73810045 0.10315742]\n", + " [0.6871334 0.72037202 0.09440252]\n", + " [0.70716737 0.70184652 0.08559074]\n", + " [0.72676563 0.68258422 0.07674958]\n", + " [0.74584168 0.66265261 0.06790951]\n", + " [0.60464901 0.78599946 0.1288582 ]\n", + " [0.60698253 0.7794781 0.15487446]\n", + " [0.60903628 0.77214229 0.18130387]\n", + " [0.61076132 0.76399948 0.20802741]\n", + " [0.61211806 0.75506265 0.23492952]\n", + " [0.61307597 0.74535067 0.26189735]\n", + " [0.61361317 0.73488895 0.28882021]\n", + " [0.61371601 0.72370984 0.31558949]\n", + " [0.74584168 0.66265261 0.06790951]\n", + " [0.74981609 0.65487605 0.09440966]\n", + " [0.75327227 0.64641192 0.12137753]\n", + " [0.75616239 0.63726488 0.14870079]\n", + " [0.75844639 0.62744596 0.17626866]\n", + " [0.76009206 0.61697347 0.20397008]\n", + " [0.76107526 0.60587359 0.23169299]\n", + " [0.76138035 0.59418066 0.25932472]\n", + " [0.61371601 0.72370984 0.31558949]\n", + " [0.63559242 0.70766212 0.30860427]\n", + " [0.65738894 0.69072153 0.30123671]\n", + " [0.67899103 0.67292473 0.29350211]\n", + " [0.7002908 0.65431547 0.2854191 ]\n", + " [0.72118589 0.6349459 0.27701014]\n", + " [0.74157933 0.61487741 0.2683018 ]\n", + " [0.76138035 0.59418066 0.25932472]\n", + " [0.61369865 0.77953827 0.1252759 ]\n", + " [0.63914289 0.7604667 0.11483361]\n", + " [0.664454 0.740025 0.10422991]\n", + " [0.68942445 0.71829766 0.09350081]\n", + " [0.71386592 0.69538314 0.08269068]\n", + " [0.73760801 0.67139541 0.07185142]\n", + " [0.60576861 0.78320645 0.14011443]\n", + " [0.6084483 0.77466474 0.17229396]\n", + " [0.61065788 0.76490655 0.20497542]\n", + " [0.61232061 0.75395345 0.23794467]\n", + " [0.61338024 0.74184028 0.27099389]\n", + " [0.6137999 0.72861666 0.30392014]\n", + " [0.74757035 0.6594161 0.07942914]\n", + " [0.75209867 0.64942318 0.11223691]\n", + " [0.75580031 0.63840133 0.14563526]\n", + " [0.75859835 0.6263682 0.17941971]\n", + " [0.76043347 0.61335754 0.21338574]\n", + " [0.76126476 0.59942094 0.24732672]\n", + " [0.62325674 0.71686443 0.31250027]\n", + " [0.65002957 0.69659198 0.30367939]\n", + " [0.67656778 0.67501406 0.29429925]\n", + " [0.70267008 0.65220819 0.28439276]\n", + " [0.72814799 0.62827047 0.2740013 ]\n", + " [0.75282554 0.6033178 0.26317549]\n", + " [0.60472824 0.78592875 0.12891763]\n", + " [0.60472824 0.78592875 0.12891763]\n", + " [0.76131386 0.59429337 0.25926163]\n", + " [0.76131386 0.59429337 0.25926163]\n", + " [0.61479672 0.77678167 0.13651091]\n", + " [0.61762005 0.76814837 0.16880034]\n", + " [0.61994431 0.75830642 0.20159468]\n", + " [0.62169327 0.74727675 0.23468051]\n", + " [0.62281111 0.73509358 0.26785024]\n", + " [0.62326126 0.72180619 0.30090069]\n", + " [0.64039525 0.75761337 0.12615822]\n", + " [0.64360296 0.74872371 0.15870739]\n", + " [0.64623465 0.73865024 0.19177226]\n", + " [0.64821538 0.72741195 0.22514147]\n", + " [0.64949015 0.71504154 0.25860809]\n", + " [0.65002275 0.70158758 0.29196798]\n", + " [0.66584768 0.73707507 0.11561664]\n", + " [0.66940827 0.72793196 0.14834968]\n", + " [0.67232357 0.71763359 0.18161235]\n", + " [0.67451926 0.70619737 0.21519535]\n", + " [0.67594034 0.69365503 0.24889227]\n", + " [0.67655022 0.68005496 0.28249786]\n", + " [0.69094712 0.71525054 0.10492252]\n", + " [0.694831 0.7058547 0.13776438]\n", + " [0.69800766 0.69533604 0.1711523 ]\n", + " [0.70040259 0.6837111 0.20487886]\n", + " [0.70196 0.67101137 0.23873813]\n", + " [0.70264234 0.65728568 0.27252389]\n", + " [0.71550557 0.69223772 0.09412072]\n", + " [0.71968367 0.68258853 0.12699735]\n", + " [0.72309945 0.67185323 0.16043822]\n", + " [0.72567762 0.66004832 0.19423749]\n", + " [0.72736101 0.64720584 0.22818974]\n", + " [0.72811068 0.63337557 0.26208819]\n", + " [0.73935249 0.66815048 0.08326362]\n", + " [0.74379494 0.65824722 0.11610208]\n", + " [0.74742641 0.64729924 0.1495241 ]\n", + " [0.75017041 0.63532379 0.18332494]\n", + " [0.75196821 0.62235408 0.21729983]\n", + " [0.75277936 0.60844119 0.25124201]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:fp_optics: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:cartToSphere: vec: [[-0.587501 0.32538413 -0.74092357]\n", + " [-0.60993921 0.31882093 -0.72548423]\n", + " [-0.63232963 0.31187032 -0.70915171]\n", + " [-0.65455648 0.30454594 -0.69195923]\n", + " [-0.67651037 0.29686469 -0.67394739]\n", + " [-0.69808709 0.28884725 -0.65516538]\n", + " [-0.71918755 0.28051844 -0.63567183]\n", + " [-0.73971843 0.27190722 -0.61553482]\n", + " [-0.587501 0.32538413 -0.74092357]\n", + " [-0.58747116 0.29860819 -0.75213748]\n", + " [-0.58702846 0.27164429 -0.76263161]\n", + " [-0.58618385 0.24460063 -0.77237233]\n", + " [-0.58495618 0.21758762 -0.78133341]\n", + " [-0.58337255 0.19071781 -0.78949553]\n", + " [-0.58146875 0.16410628 -0.79684579]\n", + " [-0.57928969 0.13787135 -0.80337722]\n", + " [-0.73971843 0.27190722 -0.61553482]\n", + " [-0.73956109 0.24424415 -0.62721144]\n", + " [-0.73874226 0.21645024 -0.63828612]\n", + " [-0.73727461 0.18863852 -0.6487231 ]\n", + " [-0.73517924 0.16092177 -0.658495 ]\n", + " [-0.73248523 0.13341181 -0.66758271]\n", + " [-0.7292293 0.10621983 -0.67597483]\n", + " [-0.7254557 0.07945792 -0.68366693]\n", + " [-0.57928969 0.13787135 -0.80337722]\n", + " [-0.6006865 0.12980766 -0.78887623]\n", + " [-0.62209878 0.12161868 -0.77343519]\n", + " [-0.64340566 0.11331958 -0.75709169]\n", + " [-0.66449505 0.10492942 -0.73988928]\n", + " [-0.68526293 0.09647107 -0.72187814]\n", + " [-0.70561282 0.08797083 -0.70311569]\n", + " [-0.7254557 0.07945792 -0.68366693]\n", + " [-0.59728289 0.32247946 -0.73434334]\n", + " [-0.62476605 0.31417259 -0.71481674]\n", + " [-0.65206159 0.30529722 -0.69398075]\n", + " [-0.67896557 0.29588306 -0.67190697]\n", + " [-0.70528614 0.28596825 -0.64868607]\n", + " [-0.73084321 0.27560022 -0.62442991]\n", + " [-0.5876158 0.31371752 -0.74584783]\n", + " [-0.58730044 0.28076002 -0.75911264]\n", + " [-0.58637477 0.2476275 -0.77126211]\n", + " [-0.58487019 0.21452231 -0.78224487]\n", + " [-0.58283664 0.18165169 -0.79202532]\n", + " [-0.58034381 0.14922881 -0.80058218]\n", + " [-0.73966249 0.25989921 -0.6207671 ]\n", + " [-0.73902379 0.22589315 -0.63467797]\n", + " [-0.73740329 0.19180278 -0.64764812]\n", + " [-0.73483635 0.1578359 -0.65962365]\n", + " [-0.73137647 0.12419841 -0.67056933]\n", + " [-0.72709434 0.09109525 -0.6804671 ]\n", + " [-0.58861706 0.13446102 -0.79715129]\n", + " [-0.6148684 0.12449295 -0.77874152]\n", + " [-0.64102179 0.11435114 -0.75895644]\n", + " [-0.66686727 0.10406906 -0.73787375]\n", + " [-0.69221329 0.09368876 -0.7155859 ]\n", + " [-0.71688532 0.0832599 -0.69220173]\n", + " [-0.58757828 0.32527123 -0.74091186]\n", + " [-0.58757828 0.32527123 -0.74091186]\n", + " [-0.72540253 0.07957767 -0.68370941]\n", + " [-0.72540253 0.07957767 -0.68370941]\n", + " [-0.59731868 0.31088069 -0.73929939]\n", + " [-0.59697961 0.27779736 -0.75262472]\n", + " [-0.59600234 0.24454221 -0.76484006]\n", + " [-0.594418 0.21131798 -0.77589429]\n", + " [-0.59227613 0.17833178 -0.78575236]\n", + " [-0.58964586 0.14579615 -0.79439363]\n", + " [-0.62479709 0.30246061 -0.71982372]\n", + " [-0.62439377 0.26906285 -0.73330594]\n", + " [-0.62327707 0.2355044 -0.74569657]\n", + " [-0.62147782 0.20198932 -0.75694493]\n", + " [-0.61904484 0.16872451 -0.7670173 ]\n", + " [-0.61604604 0.13592072 -0.77589486]\n", + " [-0.65208808 0.29349368 -0.69902975]\n", + " [-0.65162431 0.25984468 -0.71264753]\n", + " [-0.65037711 0.22604894 -0.72519756]\n", + " [-0.64837767 0.19231203 -0.73662914]\n", + " [-0.64567491 0.15884077 -0.74690931]\n", + " [-0.64233629 0.12584421 -0.75602072]\n", + " [-0.67898767 0.28401028 -0.67698885]\n", + " [-0.67846699 0.25017508 -0.69072062]\n", + " [-0.6770976 0.21620958 -0.70341471]\n", + " [-0.67491166 0.18232067 -0.71501988]\n", + " [-0.67195897 0.14871512 -0.72550324]\n", + " [-0.66830736 0.11560044 -0.73484815]\n", + " [-0.70530405 0.27404929 -0.65379139]\n", + " [-0.70473022 0.24009494 -0.66761496]\n", + " [-0.70324736 0.20602879 -0.68043757]\n", + " [-0.70088892 0.1720586 -0.69220702]\n", + " [-0.69770618 0.13839089 -0.70288978]\n", + " [-0.69376797 0.10523189 -0.71246912]\n", + " [-0.73085715 0.26365877 -0.62954894]\n", + " [-0.73023451 0.22965395 -0.64344124]\n", + " [-0.72864798 0.19555743 -0.65637597]\n", + " [-0.72613246 0.16157713 -0.66829969]\n", + " [-0.72274086 0.12791914 -0.67917769]\n", + " [-0.71854339 0.0947887 -0.68899238]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:cartToSphere: vec: [[-0.93929978 -0.34131122 -0.03496528]\n", + " [-0.93619895 -0.35135575 -0.00898156]\n", + " [-0.93227923 -0.3613147 0.01752528]\n", + " [-0.92751557 -0.37113236 0.04444811]\n", + " [-0.92189233 -0.38075747 0.07168181]\n", + " [-0.91540373 -0.39014233 0.09912096]\n", + " [-0.90805471 -0.39924232 0.12665788]\n", + " [-0.89986154 -0.40801598 0.15418226]\n", + " [-0.93929978 -0.34131122 -0.03496528]\n", + " [-0.9293459 -0.36636318 -0.04576261]\n", + " [-0.91863416 -0.39106366 -0.0563958 ]\n", + " [-0.90721719 -0.41532148 -0.06682092]\n", + " [-0.89515735 -0.43905056 -0.07699301]\n", + " [-0.8825265 -0.46217015 -0.0868662 ]\n", + " [-0.86940556 -0.48460507 -0.09639448]\n", + " [-0.85588341 -0.5062867 -0.10553371]\n", + " [-0.89986154 -0.40801598 0.15418226]\n", + " [-0.8895752 -0.43386987 0.14287372]\n", + " [-0.87852308 -0.45925081 0.1314758 ]\n", + " [-0.86676038 -0.484064 0.12003537]\n", + " [-0.85435078 -0.50822332 0.10859929]\n", + " [-0.84136602 -0.53165081 0.09721439]\n", + " [-0.82788623 -0.55427495 0.08592832]\n", + " [-0.81400102 -0.5760284 0.07479046]\n", + " [-0.85588341 -0.5062867 -0.10553371]\n", + " [-0.85193014 -0.51733526 -0.08111267]\n", + " [-0.8473214 -0.52811233 -0.05606974]\n", + " [-0.84203523 -0.53855911 -0.03050847]\n", + " [-0.83605854 -0.54862149 -0.00453528]\n", + " [-0.82938792 -0.55824987 0.021743 ]\n", + " [-0.82202989 -0.56739904 0.04822009]\n", + " [-0.81400102 -0.5760284 0.07479046]\n", + " [-0.93801367 -0.34578393 -0.02374489]\n", + " [-0.93366592 -0.35804509 0.0084659 ]\n", + " [-0.9280623 -0.37012168 0.04135576]\n", + " [-0.92117012 -0.3819175 0.0747304 ]\n", + " [-0.91297884 -0.39334468 0.10839554]\n", + " [-0.90350225 -0.40432234 0.14215176]\n", + " [-0.93504662 -0.35230591 -0.03960269]\n", + " [-0.92233095 -0.38278583 -0.05273155]\n", + " [-0.90852811 -0.41264655 -0.06557049]\n", + " [-0.89374887 -0.44172747 -0.07803718]\n", + " [-0.87812547 -0.46987993 -0.09004726]\n", + " [-0.8618103 -0.49696818 -0.10151661]\n", + " [-0.89550339 -0.41931071 0.14917171]\n", + " [-0.88237497 -0.45069158 0.13524615]\n", + " [-0.86815011 -0.481267 0.12123308]\n", + " [-0.85294261 -0.51087477 0.10721878]\n", + " [-0.83688457 -0.53937119 0.09328958]\n", + " [-0.82012739 -0.56662636 0.07953387]\n", + " [-0.85428569 -0.51106044 -0.09493784]\n", + " [-0.84900354 -0.52442641 -0.06457502]\n", + " [-0.84271394 -0.53732575 -0.03338053]\n", + " [-0.83538906 -0.54965692 -0.0015493 ]\n", + " [-0.82702261 -0.56132856 0.03072212]\n", + " [-0.81763081 -0.57225935 0.06323834]\n", + " [-0.93925784 -0.34143181 -0.03491459]\n", + " [-0.93925784 -0.34143181 -0.03491459]\n", + " [-0.81407766 -0.57592699 0.07473733]\n", + " [-0.81407766 -0.57592699 0.07473733]\n", + " [-0.93378568 -0.35669976 -0.02845321]\n", + " [-0.92101703 -0.38728859 -0.0416555 ]\n", + " [-0.90715333 -0.41724403 -0.05459172]\n", + " [-0.8923056 -0.44640522 -0.0671796 ]\n", + " [-0.87660635 -0.47462338 -0.07933438]\n", + " [-0.86020865 -0.50176239 -0.09097028]\n", + " [-0.92939593 -0.36906566 0.00370626]\n", + " [-0.91649621 -0.39992608 -0.0096865 ]\n", + " [-0.90248431 -0.43011461 -0.02287982]\n", + " [-0.887472 -0.45946966 -0.03579205]\n", + " [-0.87159219 -0.48784262 -0.04833868]\n", + " [-0.85499874 -0.51509723 -0.06043171]\n", + " [-0.92375856 -0.38122692 0.03655358]\n", + " [-0.91075613 -0.41230384 0.02299581]\n", + " [-0.89663215 -0.44267276 0.009572 ]\n", + " [-0.88149925 -0.47217141 -0.00363664]\n", + " [-0.8654905 -0.50065199 -0.01654658]\n", + " [-0.84875958 -0.52797928 -0.02906985]\n", + " [-0.91684102 -0.39308687 0.06989459]\n", + " [-0.90376499 -0.42432389 0.05619675]\n", + " [-0.8895658 -0.4548194 0.04256756]\n", + " [-0.87435698 -0.48441069 0.02908872]\n", + " [-0.85827156 -0.51295119 0.01584332]\n", + " [-0.84146262 -0.54030744 0.0029187 ]\n", + " [-0.90863312 -0.40455691 0.10353527]\n", + " [-0.89551369 -0.43589573 0.0897226 ]\n", + " [-0.88127728 -0.46646288 0.07591265]\n", + " [-0.86603797 -0.49609557 0.06218862]\n", + " [-0.84992856 -0.52464859 0.04863433]\n", + " [-0.83310138 -0.55199039 0.03533696]\n", + " [-0.89914896 -0.41555539 0.13727658]\n", + " [-0.88601731 -0.44693602 0.12337557]\n", + " [-0.87178254 -0.47751912 0.10941062]\n", + " [-0.85655866 -0.50714228 0.09546717]\n", + " [-0.84047797 -0.53566146 0.08163079]\n", + " [-0.82369209 -0.56294651 0.0679894 ]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:fp_optics: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:fp_optics: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:cartToSphere: vec: [[-9.99895396e-01 -7.88779723e-04 1.44421197e-02]\n", + " [-9.99361827e-01 2.48750669e-02 2.56353095e-02]\n", + " [-9.98010304e-01 5.10312691e-02 3.70302996e-02]\n", + " [-9.95802261e-01 7.75743808e-02 4.85805847e-02]\n", + " [-9.92709456e-01 1.04398813e-01 6.02397223e-02]\n", + " [-9.88714453e-01 1.31397729e-01 7.19608676e-02]\n", + " [-9.83811129e-01 1.58462978e-01 8.36967589e-02]\n", + " [-9.78005037e-01 1.85485798e-01 9.54000360e-02]\n", + " [-9.99895396e-01 -7.88779723e-04 1.44421197e-02]\n", + " [-9.99080669e-01 -1.23324194e-02 4.10576238e-02]\n", + " [-9.97430593e-01 -2.37376597e-02 6.75924203e-02]\n", + " [-9.94963527e-01 -3.49574649e-02 9.39444312e-02]\n", + " [-9.91708618e-01 -4.59435009e-02 1.20013382e-01]\n", + " [-9.87705683e-01 -5.66455708e-02 1.45700938e-01]\n", + " [-9.83005197e-01 -6.70106863e-02 1.70910357e-01]\n", + " [-9.77668493e-01 -7.69819249e-02 1.95545651e-01]\n", + " [-9.78005037e-01 1.85485798e-01 9.54000360e-02]\n", + " [-9.77156532e-01 1.73401321e-01 1.22870234e-01]\n", + " [-9.75433735e-01 1.61202619e-01 1.50142414e-01]\n", + " [-9.72855941e-01 1.48940016e-01 1.77110672e-01]\n", + " [-9.69453505e-01 1.36664795e-01 2.03672866e-01]\n", + " [-9.65267327e-01 1.24428803e-01 2.29731279e-01]\n", + " [-9.60348361e-01 1.12284397e-01 2.55192555e-01]\n", + " [-9.54757357e-01 1.00284863e-01 2.79966669e-01]\n", + " [-9.77668493e-01 -7.69819249e-02 1.95545651e-01]\n", + " [-9.76709346e-01 -5.29436358e-02 2.07932260e-01]\n", + " [-9.75023789e-01 -2.82946848e-02 2.20290764e-01]\n", + " [-9.72573961e-01 -3.14740275e-03 2.32572537e-01]\n", + " [-9.69332959e-01 2.23897206e-02 2.44729063e-01]\n", + " [-9.65284776e-01 4.82105297e-02 2.56711990e-01]\n", + " [-9.60424302e-01 7.42102017e-02 2.68473473e-01]\n", + " [-9.54757357e-01 1.00284863e-01 2.79966669e-01]\n", + " [-9.99759084e-01 1.02935911e-02 1.93859698e-02]\n", + " [-9.98560449e-01 4.20912875e-02 3.32468577e-02]\n", + " [-9.96093782e-01 7.45237456e-02 4.73644320e-02]\n", + " [-9.92302788e-01 1.07396738e-01 6.16532037e-02]\n", + " [-9.87155429e-01 1.40513580e-01 7.60269278e-02]\n", + " [-9.80645271e-01 1.73674862e-01 9.03985285e-02]\n", + " [-9.99643114e-01 -5.74927432e-03 2.60881463e-02]\n", + " [-9.98080979e-01 -1.98105388e-02 5.86677167e-02]\n", + " [-9.95281082e-01 -3.36174787e-02 9.10243527e-02]\n", + " [-9.91292609e-01 -4.70816646e-02 1.22972680e-01]\n", + " [-9.86188859e-01 -6.01105839e-02 1.54331627e-01]\n", + " [-9.80067247e-01 -7.26051150e-02 1.84923468e-01]\n", + " [-9.77764725e-01 1.80141939e-01 1.07354669e-01]\n", + " [-9.76134972e-01 1.65248307e-01 1.40902498e-01]\n", + " [-9.73209899e-01 1.50233162e-01 1.74047379e-01]\n", + " [-9.69040815e-01 1.35190537e-01 2.06599655e-01]\n", + " [-9.63702959e-01 1.20215871e-01 2.38379427e-01]\n", + " [-9.57294199e-01 1.05405887e-01 2.69216299e-01]\n", + " [-9.77356173e-01 -6.65497100e-02 2.00863255e-01]\n", + " [-9.75697941e-01 -3.66617266e-02 2.16031124e-01]\n", + " [-9.72909651e-01 -5.96870848e-03 2.31108601e-01]\n", + " [-9.68937238e-01 2.53281133e-02 2.46006333e-01]\n", + " [-9.63751229e-01 5.70331992e-02 2.60635343e-01]\n", + " [-9.57346759e-01 8.89539633e-02 2.74907940e-01]\n", + " [-9.99893562e-01 -7.41638253e-04 1.45710379e-02]\n", + " [-9.99893562e-01 -7.41638253e-04 1.45710379e-02]\n", + " [-9.54798282e-01 1.00236408e-01 2.79844428e-01]\n", + " [-9.54798282e-01 1.00236408e-01 2.79844428e-01]\n", + " [-9.99507146e-01 5.26432604e-03 3.09475795e-02]\n", + " [-9.97933095e-01 -8.87423544e-03 6.36457823e-02]\n", + " [-9.95110013e-01 -2.27820880e-02 9.61095139e-02]\n", + " [-9.91087261e-01 -3.63710408e-02 1.28152992e-01]\n", + " [-9.85938252e-01 -4.95493108e-02 1.59595201e-01]\n", + " [-9.79760331e-01 -6.22190146e-02 1.90259002e-01]\n", + " [-9.98304890e-01 3.70070302e-02 4.49202128e-02]\n", + " [-9.96702357e-01 2.26676337e-02 7.79139889e-02]\n", + " [-9.93824193e-01 8.49289054e-03 1.10640612e-01]\n", + " [-9.89720363e-01 -5.42902585e-03 1.42913015e-01]\n", + " [-9.84464795e-01 -1.90075625e-02 1.74550221e-01]\n", + " [-9.78154873e-01 -3.21475777e-02 2.05376674e-01]\n", + " [-9.95835514e-01 6.93939007e-02 5.91279543e-02]\n", + " [-9.94212489e-01 5.48803531e-02 9.23562333e-02]\n", + " [-9.91295229e-01 4.04658215e-02 1.25284819e-01]\n", + " [-9.87134337e-01 2.62392877e-02 1.57725396e-01]\n", + " [-9.81804372e-01 1.22912773e-02 1.89496964e-01]\n", + " [-9.75402990e-01 -1.28444840e-03 2.20425400e-01]\n", + " [-9.92042757e-01 1.02230962e-01 7.34846808e-02]\n", + " [-9.90407539e-01 8.75704050e-02 1.06884657e-01]\n", + " [-9.87467723e-01 7.29430760e-02 1.39952864e-01]\n", + " [-9.83274424e-01 5.84393105e-02 1.72500012e-01]\n", + " [-9.77902746e-01 4.41505630e-02 2.04345167e-01]\n", + " [-9.71450647e-01 3.01705110e-02 2.35315490e-01]\n", + " [-9.86894612e-01 1.35321830e-01 8.79035092e-02]\n", + " [-9.85255789e-01 1.20542365e-01 1.21410746e-01]\n", + " [-9.82310478e-01 1.05730170e-01 1.54555026e-01]\n", + " [-9.78110080e-01 9.09771787e-02 1.87146531e-01]\n", + " [-9.72729991e-01 7.63763856e-02 2.19004596e-01]\n", + " [-9.66268316e-01 6.20223787e-02 2.49957530e-01]\n", + " [-9.80384668e-01 1.68467368e-01 1.02296870e-01]\n", + " [-9.78750997e-01 1.53598217e-01 1.35845769e-01]\n", + " [-9.75817570e-01 1.38630593e-01 1.69001859e-01]\n", + " [-9.71635774e-01 1.23658014e-01 2.01575340e-01]\n", + " [-9.66280954e-01 1.08775276e-01 2.33386070e-01]\n", + " [-9.59851092e-01 9.40784923e-02 2.64263349e-01]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:fp_optics: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:cartToSphere: vec: [[-0.04022853 0.20172806 -0.97861507]\n", + " [-0.03508755 0.2286762 -0.97287001]\n", + " [-0.02981595 0.25597048 -0.96622468]\n", + " [-0.0244333 0.28349211 -0.95866326]\n", + " [-0.01895946 0.311125 -0.95017986]\n", + " [-0.01341486 0.33875421 -0.94077927]\n", + " [-0.0078207 0.36626531 -0.9304776 ]\n", + " [-0.00219891 0.39354503 -0.91930271]\n", + " [-0.04022853 0.20172806 -0.97861507]\n", + " [-0.06871171 0.20667959 -0.97599295]\n", + " [-0.09702773 0.21153615 -0.97254207]\n", + " [-0.12506641 0.21628403 -0.96828695]\n", + " [-0.15271859 0.22091364 -0.96326227]\n", + " [-0.17987603 0.22541995 -0.95751264]\n", + " [-0.20643097 0.22980272 -0.95109251]\n", + " [-0.23227572 0.23406661 -0.94406611]\n", + " [-0.00219891 0.39354503 -0.91930271]\n", + " [-0.0316787 0.39851373 -0.91661511]\n", + " [-0.0610339 0.40311074 -0.91311368]\n", + " [-0.0901492 0.40732304 -0.908824 ]\n", + " [-0.11891285 0.41114271 -0.90378173]\n", + " [-0.14721712 0.41456674 -0.89803204]\n", + " [-0.17495759 0.41759681 -0.89162927]\n", + " [-0.2020315 0.42023894 -0.88463693]\n", + " [-0.23227572 0.23406661 -0.94406611]\n", + " [-0.22900434 0.26026013 -0.9379881 ]\n", + " [-0.22535067 0.28678728 -0.93111231]\n", + " [-0.22133461 0.31352447 -0.92342482]\n", + " [-0.21697554 0.34035221 -0.91492185]\n", + " [-0.21229249 0.36715479 -0.90560988]\n", + " [-0.20730457 0.39381995 -0.89550581]\n", + " [-0.2020315 0.42023894 -0.88463693]\n", + " [-0.03810231 0.21344435 -0.97621193]\n", + " [-0.03171216 0.24672015 -0.96856776]\n", + " [-0.02514508 0.28039741 -0.95955459]\n", + " [-0.01843746 0.31426139 -0.94915744]\n", + " [-0.01162694 0.34810039 -0.93738516]\n", + " [-0.00475287 0.3817042 -0.92427231]\n", + " [-0.05264383 0.20398906 -0.97755669]\n", + " [-0.08745542 0.20999574 -0.973783 ]\n", + " [-0.12190636 0.2158455 -0.96878768]\n", + " [-0.15579525 0.22151897 -0.96263035]\n", + " [-0.18892277 0.2270069 -0.95539314]\n", + " [-0.22109057 0.2323109 -0.94718035]\n", + " [-0.01507927 0.39566331 -0.91827183]\n", + " [-0.0511405 0.40150505 -0.91442788]\n", + " [-0.08689965 0.4067752 -0.90938572]\n", + " [-0.12214944 0.41145703 -0.90320686]\n", + " [-0.15669146 0.41554498 -0.89597442]\n", + " [-0.19033428 0.41904395 -0.88779222]\n", + " [-0.23081019 0.24542397 -0.94153796]\n", + " [-0.22654 0.27776804 -0.93355479]\n", + " [-0.22171559 0.31048996 -0.92435825]\n", + " [-0.21637287 0.34336808 -0.91393717]\n", + " [-0.21054689 0.37618934 -0.90230349]\n", + " [-0.2042731 0.4087485 -0.88949264]\n", + " [-0.04030876 0.20183656 -0.9785894 ]\n", + " [-0.04030876 0.20183656 -0.9785894 ]\n", + " [-0.20195866 0.42014075 -0.8847002 ]\n", + " [-0.20195866 0.42014075 -0.8847002 ]\n", + " [-0.05048586 0.21560314 -0.97517509]\n", + " [-0.08543746 0.22160906 -0.97138554]\n", + " [-0.12003182 0.22743034 -0.96636836]\n", + " [-0.15406738 0.23304727 -0.96018342]\n", + " [-0.18734509 0.23845025 -0.95291306]\n", + " [-0.21966713 0.24364069 -0.94466161]\n", + " [-0.04421776 0.2488942 -0.96752078]\n", + " [-0.0795224 0.25489184 -0.96369411]\n", + " [-0.11447907 0.26062818 -0.95862792]\n", + " [-0.14888538 0.26608274 -0.95238286]\n", + " [-0.18254302 0.27124516 -0.94504186]\n", + " [-0.21525598 0.2761163 -0.93670948]\n", + " [-0.03774972 0.28258283 -0.95849982]\n", + " [-0.07334233 0.28856242 -0.95464791]\n", + " [-0.10859602 0.29420618 -0.94955233]\n", + " [-0.14330723 0.29949345 -0.94327446]\n", + " [-0.17727811 0.30441382 -0.93589781]\n", + " [-0.21031452 0.308968 -0.92752713]\n", + " [-0.03111753 0.31645414 -0.94809729]\n", + " [-0.06693151 0.32240516 -0.94423254]\n", + " [-0.10241611 0.32794754 -0.93912797]\n", + " [-0.13736641 0.33306119 -0.93284549]\n", + " [-0.17158465 0.33773642 -0.92546897]\n", + " [-0.20487826 0.34197455 -0.91710322]\n", + " [-0.02435807 0.3502963 -0.93632216]\n", + " [-0.06032487 0.35620795 -0.9324574 ]\n", + " [-0.09597289 0.36164 -0.92736493]\n", + " [-0.13109595 0.36657353 -0.92110678]\n", + " [-0.16549614 0.37100033 -0.91376681]\n", + " [-0.19898178 0.374923 -0.90544961]\n", + " [-0.01750999 0.38389903 -0.92320904]\n", + " [-0.0535592 0.38976078 -0.91935736]\n", + " [-0.08930169 0.39507438 -0.91429833]\n", + " [-0.12453039 0.39982252 -0.90809368]\n", + " [-0.15904701 0.4039989 -0.90082681]\n", + " [-0.1926602 0.40760783 -0.89260176]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:cartToSphere: vec: [[ 0.06186049 -0.45267415 0.88952762]\n", + " [ 0.0423512 -0.43512985 0.89937111]\n", + " [ 0.02242025 -0.41688608 0.90868219]\n", + " [ 0.00214522 -0.39799645 0.91738445]\n", + " [-0.01839549 -0.3785194 0.92541054]\n", + " [-0.0391219 -0.35851914 0.93270226]\n", + " [-0.05995231 -0.33806589 0.93921093]\n", + " [-0.08080387 -0.31723553 0.94489806]\n", + " [ 0.06186049 -0.45267415 0.88952762]\n", + " [ 0.08257422 -0.43383474 0.8972006 ]\n", + " [ 0.10308422 -0.41463038 0.90413234]\n", + " [ 0.12330938 -0.39513952 0.9103074 ]\n", + " [ 0.14316871 -0.37544373 0.91572088]\n", + " [ 0.16258087 -0.35562733 0.92037854]\n", + " [ 0.18146317 -0.33577742 0.92429684]\n", + " [ 0.19973025 -0.31598423 0.92750299]\n", + " [-0.08080387 -0.31723553 0.94489806]\n", + " [-0.05927725 -0.29784422 0.95277229]\n", + " [-0.03776759 -0.27824611 0.95976701]\n", + " [-0.01636044 -0.25852221 0.96586676]\n", + " [ 0.00485979 -0.23875527 0.97106761]\n", + " [ 0.02581044 -0.2190291 0.97537689]\n", + " [ 0.04641062 -0.19942839 0.97881274]\n", + " [ 0.06658039 -0.18003933 0.98140353]\n", + " [ 0.19973025 -0.31598423 0.92750299]\n", + " [ 0.18214175 -0.2977642 0.93710238]\n", + " [ 0.16394066 -0.27904094 0.9461816 ]\n", + " [ 0.14521002 -0.25987226 0.95466248]\n", + " [ 0.12603004 -0.24031981 0.96247744]\n", + " [ 0.1064795 -0.22044946 0.96956905]\n", + " [ 0.08663677 -0.20033129 0.97589008]\n", + " [ 0.06658039 -0.18003933 0.98140353]\n", + " [ 0.05348257 -0.44505008 0.89390718]\n", + " [ 0.02927931 -0.4230702 0.90562372]\n", + " [ 0.00451964 -0.40009261 0.91646357]\n", + " [-0.02065254 -0.37622284 0.926299 ]\n", + " [-0.04608996 -0.35157911 0.93502291]\n", + " [-0.07164171 -0.32629308 0.94254989]\n", + " [ 0.07084599 -0.44445086 0.89299736]\n", + " [ 0.09610685 -0.42110551 0.90190555]\n", + " [ 0.12098119 -0.39728966 0.90968372]\n", + " [ 0.14531987 -0.37315222 0.91631848]\n", + " [ 0.16897303 -0.34884844 0.92182042]\n", + " [ 0.19178743 -0.32453991 0.92622429]\n", + " [-0.07135037 -0.30888315 0.94841991]\n", + " [-0.04496811 -0.28496791 0.95748168]\n", + " [-0.01869656 -0.26082218 0.9652058 ]\n", + " [ 0.00730838 -0.23659761 0.97158024]\n", + " [ 0.03289455 -0.21244847 0.97661845]\n", + " [ 0.05791347 -0.18853125 0.9803581 ]\n", + " [ 0.19208051 -0.30817321 0.93173728]\n", + " [ 0.17009984 -0.28549726 0.94316348]\n", + " [ 0.14728207 -0.26212233 0.95372946]\n", + " [ 0.12377595 -0.23816028 0.96330639]\n", + " [ 0.09972661 -0.21373237 0.9717886 ]\n", + " [ 0.07527842 -0.18896928 0.97909334]\n", + " [ 0.06186567 -0.45255169 0.88958957]\n", + " [ 0.06186567 -0.45255169 0.88958957]\n", + " [ 0.06658111 -0.18017478 0.98137863]\n", + " [ 0.06658111 -0.18017478 0.98137863]\n", + " [ 0.06249942 -0.43691851 0.89732716]\n", + " [ 0.08787533 -0.41349369 0.90625653]\n", + " [ 0.11288153 -0.38961007 0.91403597]\n", + " [ 0.13736891 -0.36541707 0.92065202]\n", + " [ 0.16118831 -0.34107016 0.92611526]\n", + " [ 0.18418783 -0.31673081 0.93046033]\n", + " [ 0.03838847 -0.41486175 0.90907428]\n", + " [ 0.06405853 -0.39124213 0.91805561]\n", + " [ 0.08940599 -0.36719911 0.92583551]\n", + " [ 0.11428129 -0.34288343 0.93240053]\n", + " [ 0.13853638 -0.31845118 0.93776144]\n", + " [ 0.16202244 -0.2940634 0.941953 ]\n", + " [ 0.01370429 -0.39182265 0.91993869]\n", + " [ 0.03962113 -0.36805426 0.92895976]\n", + " [ 0.06526264 -0.34390132 0.93673511]\n", + " [ 0.09047805 -0.31951565 0.94325154]\n", + " [ 0.11511932 -0.29505367 0.94852036]\n", + " [ 0.13903941 -0.27067577 0.95257686]\n", + " [-0.01140971 -0.36790721 0.92979251]\n", + " [ 0.01470546 -0.34403748 0.93884075]\n", + " [ 0.04059336 -0.31982555 0.94660646]\n", + " [ 0.06610163 -0.29542387 0.95307676]\n", + " [ 0.09108138 -0.27098875 0.95826368]\n", + " [ 0.11538613 -0.24667969 0.96220329]\n", + " [-0.03680676 -0.34323409 0.93852844]\n", + " [-0.01054322 -0.31931165 0.94759111]\n", + " [ 0.0155421 -0.29509262 0.95534224]\n", + " [ 0.04129517 -0.2707295 0.96176933]\n", + " [ 0.06656578 -0.24637803 0.96688514]\n", + " [ 0.091207 -0.22219655 0.97072652]\n", + " [-0.0623364 -0.31793528 0.94606095]\n", + " [-0.03597587 -0.29400944 0.95512522]\n", + " [-0.00974375 -0.26983544 0.96285715]\n", + " [ 0.01620448 -0.24556524 0.96924462]\n", + " [ 0.04171717 -0.22135359 0.97430091]\n", + " [ 0.06664631 -0.19735745 0.97806355]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:fp_optics: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:fp_optics: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:cartToSphere: vec: [[-0.53412253 -0.4260484 -0.73020263]\n", + " [-0.5426191 -0.44561335 -0.71203459]\n", + " [-0.5508468 -0.46520697 -0.69292877]\n", + " [-0.55874837 -0.48473023 -0.67293155]\n", + " [-0.56627285 -0.50409029 -0.65209512]\n", + " [-0.57337497 -0.52319884 -0.63047927]\n", + " [-0.58001482 -0.54197092 -0.60815322]\n", + " [-0.58615805 -0.56032489 -0.58519634]\n", + " [-0.53412253 -0.4260484 -0.73020263]\n", + " [-0.51109496 -0.44240202 -0.73692767]\n", + " [-0.48774394 -0.45840127 -0.74294961]\n", + " [-0.46416793 -0.47399104 -0.74825171]\n", + " [-0.44047115 -0.48912263 -0.75282416]\n", + " [-0.41676317 -0.50375385 -0.75666407]\n", + " [-0.39315807 -0.51784891 -0.75977579]\n", + " [-0.36977206 -0.53137812 -0.76217184]\n", + " [-0.58615805 -0.56032489 -0.58519634]\n", + " [-0.56228448 -0.57712894 -0.59224855]\n", + " [-0.5379856 -0.59336095 -0.59874392]\n", + " [-0.51336476 -0.60896425 -0.6046645 ]\n", + " [-0.48852819 -0.62389111 -0.61000008]\n", + " [-0.4635848 -0.63810228 -0.6147476 ]\n", + " [-0.43864767 -0.65156575 -0.61891058]\n", + " [-0.41383619 -0.66425539 -0.6224985 ]\n", + " [-0.36977206 -0.53137812 -0.76217184]\n", + " [-0.37637151 -0.55105087 -0.7447734 ]\n", + " [-0.38294886 -0.57065192 -0.72643414]\n", + " [-0.38945247 -0.59008151 -0.70719911]\n", + " [-0.39583369 -0.60924412 -0.68712247]\n", + " [-0.4020489 -0.62804945 -0.66626614]\n", + " [-0.40806033 -0.64641281 -0.64469935]\n", + " [-0.41383619 -0.66425539 -0.6224985 ]\n", + " [-0.53777778 -0.43462531 -0.72242363]\n", + " [-0.54801717 -0.45863684 -0.69952085]\n", + " [-0.55779525 -0.48259218 -0.67525495]\n", + " [-0.5670156 -0.50631792 -0.64971954]\n", + " [-0.57559485 -0.52965133 -0.62302491]\n", + " [-0.58346181 -0.55243732 -0.59530272]\n", + " [-0.52415738 -0.43328538 -0.73315948]\n", + " [-0.49570421 -0.45309781 -0.74093165]\n", + " [-0.46686232 -0.47232232 -0.74763039]\n", + " [-0.43782118 -0.49086659 -0.75323476]\n", + " [-0.40878242 -0.50865293 -0.75773949]\n", + " [-0.37995716 -0.52561798 -0.7611559 ]\n", + " [-0.57578773 -0.56765591 -0.58841759]\n", + " [-0.5462295 -0.58787395 -0.59668882]\n", + " [-0.51613481 -0.60717561 -0.60410482]\n", + " [-0.48569808 -0.62546928 -0.61064356]\n", + " [-0.45511999 -0.64268256 -0.61629938]\n", + " [-0.42461127 -0.65875898 -0.62108121]\n", + " [-0.3727288 -0.53991271 -0.75469696]\n", + " [-0.38081009 -0.56398863 -0.73273495]\n", + " [-0.38880653 -0.5878574 -0.70940339]\n", + " [-0.39662711 -0.61134131 -0.68479832]\n", + " [-0.40419162 -0.63427418 -0.65903369]\n", + " [-0.41143304 -0.6565025 -0.63223992]\n", + " [-0.53407388 -0.4261716 -0.73016632]\n", + " [-0.53407388 -0.4261716 -0.73016632]\n", + " [-0.41390136 -0.6641533 -0.6225641 ]\n", + " [-0.41390136 -0.6641533 -0.6225641 ]\n", + " [-0.52782135 -0.44176533 -0.72542953]\n", + " [-0.4992456 -0.46163608 -0.73324345]\n", + " [-0.47026738 -0.48089494 -0.73999233]\n", + " [-0.44107642 -0.49944937 -0.74565536]\n", + " [-0.41187486 -0.51722178 -0.75022712]\n", + " [-0.38287542 -0.5341493 -0.75371807]\n", + " [-0.53796028 -0.46584247 -0.70255927]\n", + " [-0.50907533 -0.48585568 -0.71048333]\n", + " [-0.47975268 -0.50519175 -0.71736927]\n", + " [-0.45018249 -0.52375733 -0.72319706]\n", + " [-0.42056701 -0.54147496 -0.72796171]\n", + " [-0.39112098 -0.55828271 -0.7316726 ]\n", + " [-0.54765662 -0.48985043 -0.67832056]\n", + " [-0.51851887 -0.50997186 -0.68634312]\n", + " [-0.48891355 -0.52935463 -0.69335937]\n", + " [-0.45903149 -0.54790476 -0.69935004]\n", + " [-0.42907414 -0.56554509 -0.7043111 ]\n", + " [-0.39925574 -0.58221462 -0.70825206]\n", + " [-0.55681433 -0.51361545 -0.65280699]\n", + " [-0.5274809 -0.53380957 -0.66091697]\n", + " [-0.49765485 -0.55320705 -0.66805809]\n", + " [-0.46752804 -0.57171385 -0.67421125]\n", + " [-0.43730118 -0.58925373 -0.67937303]\n", + " [-0.40718704 -0.6057669 -0.68355335]\n", + " [-0.56535071 -0.53697432 -0.6261287 ]\n", + " [-0.53588042 -0.55720419 -0.63431511]\n", + " [-0.5058965 -0.57658328 -0.64157653]\n", + " [-0.47559206 -0.59501823 -0.64789312]\n", + " [-0.44516751 -0.61243429 -0.65326115]\n", + " [-0.41483423 -0.62877316 -0.65769057]\n", + " [-0.57319531 -0.55977146 -0.59841712]\n", + " [-0.54364904 -0.57999927 -0.60666841]\n", + " [-0.51357167 -0.59932685 -0.61404517]\n", + " [-0.48315736 -0.61766207 -0.62052602]\n", + " [-0.45260667 -0.63493193 -0.62610594]\n", + " [-0.42213032 -0.65107959 -0.63079423]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:fp_optics: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:cartToSphere: vec: [[-0.33174129 0.15344676 0.93080707]\n", + " [-0.31286059 0.13645293 0.9399462 ]\n", + " [-0.29345201 0.11888094 0.94855324]\n", + " [-0.27357618 0.10081487 0.95655237]\n", + " [-0.25329748 0.08233522 0.96387826]\n", + " [-0.23268449 0.06352028 0.97047571]\n", + " [-0.21181003 0.04444713 0.97629963]\n", + " [-0.19075094 0.02519224 0.98131515]\n", + " [-0.33174129 0.15344676 0.93080707]\n", + " [-0.35060006 0.13464844 0.92679523]\n", + " [-0.36950567 0.1152325 0.92205587]\n", + " [-0.38837036 0.09529069 0.91656323]\n", + " [-0.40710978 0.07491104 0.91030212]\n", + " [-0.42564248 0.05417929 0.903268 ]\n", + " [-0.44388981 0.03317999 0.89546688]\n", + " [-0.46177627 0.01199718 0.8869153 ]\n", + " [-0.19075094 0.02519224 0.98131515]\n", + " [-0.20907559 0.00442896 0.97788945]\n", + " [-0.22760707 -0.01676662 0.9736087 ]\n", + " [-0.24626179 -0.03830951 0.96844593]\n", + " [-0.26495818 -0.06011466 0.96238422]\n", + " [-0.28361589 -0.08209588 0.95541734]\n", + " [-0.30215576 -0.10416567 0.94755022]\n", + " [-0.32050032 -0.12623566 0.93879929]\n", + " [-0.46177627 0.01199718 0.8869153 ]\n", + " [-0.44344074 -0.00701551 0.89627624]\n", + " [-0.42438685 -0.02640389 0.90509592]\n", + " [-0.40467083 -0.04609002 0.91330018]\n", + " [-0.38435392 -0.0659958 0.92082388]\n", + " [-0.36350331 -0.08604218 0.92761096]\n", + " [-0.34219237 -0.10614902 0.93361489]\n", + " [-0.32050032 -0.12623566 0.93879929]\n", + " [-0.32364222 0.14605033 0.93483957]\n", + " [-0.30013952 0.12482141 0.94569333]\n", + " [-0.27590364 0.10280822 0.95567131]\n", + " [-0.25105149 0.08016037 0.96464888]\n", + " [-0.22570932 0.05702209 0.97252444]\n", + " [-0.2000129 0.03353504 0.9792192 ]\n", + " [-0.33988868 0.14527501 0.92917752]\n", + " [-0.36304495 0.12180698 0.92377563]\n", + " [-0.38618408 0.09750303 0.91725406]\n", + " [-0.40914938 0.0725267 0.90958049]\n", + " [-0.43179089 0.04703594 0.9007465 ]\n", + " [-0.45396512 0.02118619 0.89076754]\n", + " [-0.19878217 0.01626436 0.97990873]\n", + " [-0.22139139 -0.00948394 0.97513892]\n", + " [-0.24422779 -0.03579718 0.96905694]\n", + " [-0.26714043 -0.06251888 0.96162746]\n", + " [-0.2899814 -0.08949037 0.95283905]\n", + " [-0.31260562 -0.11655017 0.94270557]\n", + " [-0.45381298 0.00383175 0.89108872]\n", + " [-0.43085041 -0.01973198 0.90220761]\n", + " [-0.40686434 -0.04378265 0.91243876]\n", + " [-0.38196535 -0.06817665 0.92165851]\n", + " [-0.35627719 -0.09276839 0.92976373]\n", + " [-0.32993739 -0.11741012 0.93667293]\n", + " [-0.331742 0.1533266 0.93082662]\n", + " [-0.331742 0.1533266 0.93082662]\n", + " [-0.32051274 -0.12609173 0.93881439]\n", + " [-0.32051274 -0.12609173 0.93881439]\n", + " [-0.33179288 0.13792534 0.93321492]\n", + " [-0.35496886 0.11426356 0.92786904]\n", + " [-0.37814051 0.0897854 0.92138393]\n", + " [-0.40115131 0.06465289 0.91372733]\n", + " [-0.4238511 0.03902312 0.90489085]\n", + " [-0.44609595 0.01305136 0.89488997]\n", + " [-0.30828768 0.11650376 0.94413218]\n", + " [-0.33148174 0.09233405 0.93893252]\n", + " [-0.35470973 0.06740022 0.93254395]\n", + " [-0.37781567 0.04186069 0.92493405]\n", + " [-0.40064898 0.01587097 0.91609416]\n", + " [-0.42306454 -0.01041351 0.90603971]\n", + " [-0.28402863 0.09431905 0.95416542]\n", + " [-0.307184 0.06969832 0.94909438]\n", + " [-0.33041419 0.04436194 0.94279292]\n", + " [-0.35356401 0.01846604 0.93522805]\n", + " [-0.37648276 -0.00783428 0.9263905 ]\n", + " [-0.39902448 -0.03438256 0.91629543]\n", + " [-0.25913252 0.07151943 0.96319017]\n", + " [-0.28219174 0.04650114 0.95823038]\n", + " [-0.30536901 0.02081322 0.9520066 ]\n", + " [-0.3285102 -0.00538921 0.94448505]\n", + " [-0.35146492 -0.03195048 0.93565569]\n", + " [-0.3740868 -0.05871265 0.9255333 ]\n", + " [-0.23372571 0.04824828 0.97110473]\n", + " [-0.25663155 0.0228844 0.96623835]\n", + " [-0.27970069 -0.00310437 0.96008223]\n", + " [-0.30278025 -0.02956281 0.95260178]\n", + " [-0.32572064 -0.05633412 0.94378627]\n", + " [-0.34837567 -0.08325874 0.93365003]\n", + " [-0.20794438 0.02464705 0.97783008]\n", + " [-0.23064068 -0.00101031 0.97303847]\n", + " [-0.2535472 -0.02724824 0.96693916]\n", + " [-0.27651253 -0.05391069 0.95949698]\n", + " [-0.29938825 -0.08083947 0.95070061]\n", + " [-0.32202889 -0.10787354 0.94056403]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:fp_optics: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:cartToSphere: vec: [[0.61355748 0.71904187 0.32638322]\n", + " [0.63543579 0.70295724 0.31948784]\n", + " [0.65723459 0.68598534 0.31219673]\n", + " [0.67883935 0.66816291 0.30452497]\n", + " [0.70014216 0.64953379 0.29649084]\n", + " [0.72104063 0.63015025 0.28811642]\n", + " [0.74143777 0.61007381 0.27942795]\n", + " [0.76124276 0.58937519 0.27045581]\n", + " [0.61355748 0.71904187 0.32638322]\n", + " [0.61304649 0.70692092 0.35275602]\n", + " [0.61210078 0.69419001 0.37872531]\n", + " [0.61073353 0.68090562 0.40419314]\n", + " [0.608966 0.66713057 0.4290655 ]\n", + " [0.60682797 0.65293365 0.45325209]\n", + " [0.60435812 0.63838951 0.47666561]\n", + " [0.60160441 0.62357888 0.49922091]\n", + " [0.76124276 0.58937519 0.27045581]\n", + " [0.76059056 0.57691891 0.29776934]\n", + " [0.75925952 0.5639834 0.32472713]\n", + " [0.75726463 0.55062722 0.35122635]\n", + " [0.75462946 0.53691407 0.3771706 ]\n", + " [0.75138573 0.52291226 0.4024702 ]\n", + " [0.74757295 0.50869458 0.42704158]\n", + " [0.74323837 0.49433889 0.45080571]\n", + " [0.60160441 0.62357888 0.49922091]\n", + " [0.62242232 0.60706237 0.49403009]\n", + " [0.64323014 0.5898175 0.48823181]\n", + " [0.66390837 0.57188525 0.48184327]\n", + " [0.68434656 0.55331317 0.47488349]\n", + " [0.70444255 0.53415579 0.46737381]\n", + " [0.72410204 0.5144748 0.45933857]\n", + " [0.74323837 0.49433889 0.45080571]\n", + " [0.62309761 0.7120996 0.32351743]\n", + " [0.64987306 0.69178487 0.31479947]\n", + " [0.67641447 0.67017329 0.30550159]\n", + " [0.70252052 0.64734256 0.29565609]\n", + " [0.72800271 0.62338902 0.28530366]\n", + " [0.75268498 0.59842976 0.27449433]\n", + " [0.61346344 0.71378182 0.33790252]\n", + " [0.61254341 0.698509 0.36996723]\n", + " [0.61098241 0.68237546 0.40132808]\n", + " [0.60881624 0.66549424 0.43181037]\n", + " [0.60609975 0.64799196 0.46124778]\n", + " [0.60290799 0.63000856 0.48948051]\n", + " [0.76097585 0.58407838 0.28243265]\n", + " [0.75971869 0.56848251 0.31568203]\n", + " [0.75745596 0.55222425 0.34829419]\n", + " [0.7542275 0.5354188 0.38008892]\n", + " [0.75009165 0.51819189 0.41090106]\n", + " [0.74512436 0.50067958 0.44057877]\n", + " [0.61068459 0.61652058 0.49695745]\n", + " [0.63620908 0.5957833 0.49018391]\n", + " [0.66159855 0.57399185 0.48251498]\n", + " [0.68664595 0.55123103 0.4739849 ]\n", + " [0.71116319 0.52760124 0.46463303]\n", + " [0.73497979 0.50321897 0.45450564]\n", + " [0.61363129 0.71894807 0.32645109]\n", + " [0.61363129 0.71894807 0.32645109]\n", + " [0.74318957 0.49445767 0.4507559 ]\n", + " [0.74318957 0.49445767 0.4507559 ]\n", + " [0.62292725 0.70691384 0.33501413]\n", + " [0.62198144 0.6915902 0.3672085 ]\n", + " [0.62036701 0.67541284 0.39870074]\n", + " [0.61811951 0.65849524 0.42931608]\n", + " [0.61529337 0.64096431 0.45888868]\n", + " [0.61196312 0.62296002 0.48725964]\n", + " [0.649696 0.6865504 0.32641025]\n", + " [0.64868093 0.6711038 0.35893279]\n", + " [0.64692285 0.65482682 0.39075909]\n", + " [0.64445705 0.63783426 0.42171384]\n", + " [0.64133728 0.62025379 0.45163229]\n", + " [0.63763683 0.60222533 0.48035812]\n", + " [0.67623131 0.66490003 0.31720525]\n", + " [0.67515202 0.64936239 0.34999749]\n", + " [0.67326066 0.63302331 0.38210151]\n", + " [0.67059294 0.61599867 0.41334095]\n", + " [0.66720272 0.5984166 0.4435517 ]\n", + " [0.6631628 0.58041673 0.47257964]\n", + " [0.70233183 0.64204073 0.30743081]\n", + " [0.70119316 0.62644521 0.34043288]\n", + " [0.69917837 0.61008306 0.37275765]\n", + " [0.69632412 0.59307072 0.40422747]\n", + " [0.69268517 0.57553629 0.43467832]\n", + " [0.68833467 0.55761876 0.46395765]\n", + " [0.72780909 0.61806921 0.29712688]\n", + " [0.72661615 0.60245001 0.33027708]\n", + " [0.72448817 0.58610482 0.36276442]\n", + " [0.72146314 0.56915 0.39440995]\n", + " [0.71759724 0.55171302 0.42504934]\n", + " [0.71296461 0.53393181 0.45453085]\n", + " [0.75248709 0.59310282 0.28634284]\n", + " [0.75124558 0.57749472 0.31957773]\n", + " [0.7490158 0.56120675 0.35216802]\n", + " [0.74583713 0.54435452 0.38393376]\n", + " [0.74176736 0.52706429 0.41471004]\n", + " [0.73688197 0.50947263 0.44434514]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:fp_optics: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:cartToSphere: vec: [[-0.23155774 0.9521531 0.199463 ]\n", + " [-0.20522283 0.95810026 0.19981861]\n", + " [-0.17818692 0.96342051 0.20017579]\n", + " [-0.15055186 0.96805353 0.20051558]\n", + " [-0.12242432 0.97194831 0.20082024]\n", + " [-0.0939135 0.97506363 0.20107503]\n", + " [-0.06513016 0.97736832 0.20126907]\n", + " [-0.03618627 0.97884136 0.20139548]\n", + " [-0.23155774 0.9521531 0.199463 ]\n", + " [-0.23326155 0.94587947 0.22561267]\n", + " [-0.23468485 0.93879514 0.25216403]\n", + " [-0.2358207 0.93088605 0.27899776]\n", + " [-0.23666526 0.9221482 0.30599387]\n", + " [-0.23721626 0.91258782 0.3330344 ]\n", + " [-0.23747225 0.9022215 0.36000458]\n", + " [-0.23743254 0.89107619 0.38679325]\n", + " [-0.03618627 0.97884136 0.20139548]\n", + " [-0.03612416 0.97283565 0.22866097]\n", + " [-0.03602838 0.96592491 0.2563026 ]\n", + " [-0.03589808 0.95809368 0.28419682]\n", + " [-0.03573264 0.94933593 0.31222505]\n", + " [-0.03553167 0.93965574 0.34027135]\n", + " [-0.0352951 0.92906835 0.36822039]\n", + " [-0.03502327 0.917601 0.39595678]\n", + " [-0.23743254 0.89107619 0.38679325]\n", + " [-0.21012894 0.89695173 0.38900311]\n", + " [-0.18211156 0.90221673 0.39094802]\n", + " [-0.15348497 0.90681073 0.39260242]\n", + " [-0.12435365 0.91068291 0.39394518]\n", + " [-0.09482446 0.91379174 0.39495946]\n", + " [-0.06500882 0.91610513 0.39563272]\n", + " [-0.03502327 0.917601 0.39595678]\n", + " [-0.22017394 0.95479896 0.19970572]\n", + " [-0.18741292 0.96167455 0.20014607]\n", + " [-0.15369943 0.96754755 0.20056975]\n", + " [-0.11922802 0.97232012 0.20094345]\n", + " [-0.08419963 0.97591641 0.20124011]\n", + " [-0.0488187 0.97828324 0.20144138]\n", + " [-0.23224534 0.94953758 0.21080913]\n", + " [-0.23414508 0.94130595 0.2431444 ]\n", + " [-0.2356163 0.93184141 0.27596474]\n", + " [-0.23665075 0.92113243 0.3090493 ]\n", + " [-0.23724418 0.90919048 0.34218104]\n", + " [-0.23739422 0.89605041 0.37515017]\n", + " [-0.03626279 0.97632913 0.2132286 ]\n", + " [-0.03616515 0.9683623 0.24691405]\n", + " [-0.03601588 0.95901968 0.2810411 ]\n", + " [-0.03581373 0.94828628 0.31538945]\n", + " [-0.03555801 0.93616973 0.34974543]\n", + " [-0.03524874 0.92270305 0.38389662]\n", + " [-0.22562324 0.89374828 0.38769596]\n", + " [-0.1916667 0.90054728 0.39022875]\n", + " [-0.15674202 0.906368 0.39233786]\n", + " [-0.12104152 0.9111129 0.39398254]\n", + " [-0.08476217 0.91470553 0.39513183]\n", + " [-0.04811129 0.91709096 0.39576443]\n", + " [-0.23147527 0.95215433 0.1995528 ]\n", + " [-0.23147527 0.95215433 0.1995528 ]\n", + " [-0.03512695 0.91763797 0.39586192]\n", + " [-0.03512695 0.91763797 0.39586192]\n", + " [-0.22089792 0.95219531 0.21101706]\n", + " [-0.22267991 0.94399022 0.24350795]\n", + " [-0.22405456 0.93453628 0.27648057]\n", + " [-0.22501521 0.92382168 0.30971223]\n", + " [-0.22555803 0.91185779 0.34298535]\n", + " [-0.22568056 0.89867943 0.37608983]\n", + " [-0.18800233 0.95910462 0.21159738]\n", + " [-0.18944343 0.95096804 0.24448102]\n", + " [-0.19054126 0.94154215 0.27783523]\n", + " [-0.19129172 0.9308146 0.31143483]\n", + " [-0.19169106 0.91879634 0.34506205]\n", + " [-0.1917359 0.90552211 0.37850635]\n", + " [-0.15415085 0.96500585 0.2121349 ]\n", + " [-0.15524493 0.95692721 0.24533512]\n", + " [-0.15606292 0.94752636 0.27899491]\n", + " [-0.15660147 0.93679039 0.31288936]\n", + " [-0.15685627 0.92472952 0.34680172]\n", + " [-0.15682304 0.9113782 0.38052111]\n", + " [-0.11953957 0.96980094 0.21259451]\n", + " [-0.12028255 0.96176931 0.24603231]\n", + " [-0.12081716 0.95239042 0.27992089]\n", + " [-0.12114026 0.94165059 0.31403694]\n", + " [-0.12124746 0.92955912 0.34816505]\n", + " [-0.12113447 0.91614996 0.38209383]\n", + " [-0.08436992 0.97341389 0.21294862]\n", + " [-0.08475784 0.96541794 0.24654475]\n", + " [-0.08500447 0.95605745 0.2805858 ]\n", + " [-0.08510715 0.94531799 0.31485023]\n", + " [-0.08506245 0.93320791 0.34912372]\n", + " [-0.08486729 0.91976066 0.38319429]\n", + " [-0.04884665 0.97579135 0.21317889]\n", + " [-0.04887608 0.96781911 0.2468548 ]\n", + " [-0.04883054 0.9584727 0.2809727 ]\n", + " [-0.04870838 0.94773718 0.31531213]\n", + " [-0.04850807 0.93562027 0.34965937]\n", + " [-0.04822873 0.92215507 0.38380205]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:fp_optics: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:cartToSphere: vec: [[-0.84805735 0.01217945 -0.52976447]\n", + " [-0.83392135 0.01954683 -0.55153703]\n", + " [-0.81888399 0.02720589 -0.57331392]\n", + " [-0.8029729 0.03510657 -0.59498071]\n", + " [-0.78622366 0.04320305 -0.61642993]\n", + " [-0.76868011 0.05145322 -0.63756055]\n", + " [-0.7503948 0.05981798 -0.65827764]\n", + " [-0.73142899 0.06826069 -0.67849252]\n", + " [-0.84805735 0.01217945 -0.52976447]\n", + " [-0.85275814 0.03720113 -0.52097949]\n", + " [-0.85684364 0.06279178 -0.51173839]\n", + " [-0.86026689 0.08883161 -0.50204564]\n", + " [-0.8629886 0.11520495 -0.49191309]\n", + " [-0.86497717 0.14179937 -0.48135999]\n", + " [-0.86620894 0.16850485 -0.47041279]\n", + " [-0.86666859 0.19521335 -0.45910489]\n", + " [-0.73142899 0.06826069 -0.67849252]\n", + " [-0.73541244 0.09484172 -0.67094977]\n", + " [-0.73888434 0.12189133 -0.66271595]\n", + " [-0.74179797 0.14929679 -0.65379373]\n", + " [-0.7441141 0.17694693 -0.64419251]\n", + " [-0.74580106 0.20473034 -0.63392923]\n", + " [-0.74683505 0.23253458 -0.62302895]\n", + " [-0.74720061 0.26024666 -0.61152508]\n", + " [-0.86666859 0.19521335 -0.45910489]\n", + " [-0.85235799 0.20464593 -0.48125451]\n", + " [-0.83707403 0.2141062 -0.50345368]\n", + " [-0.82084018 0.22354702 -0.52559313]\n", + " [-0.80368852 0.23292364 -0.54756856]\n", + " [-0.78566108 0.24219306 -0.56927954]\n", + " [-0.76681057 0.25131391 -0.59062922]\n", + " [-0.74720061 0.26024666 -0.61152508]\n", + " [-0.84202328 0.01543741 -0.53922025]\n", + " [-0.82408869 0.02467102 -0.56592329]\n", + " [-0.80482673 0.03429233 -0.59251833]\n", + " [-0.78429954 0.04421525 -0.61880469]\n", + " [-0.76258793 0.05436216 -0.64459631]\n", + " [-0.73979224 0.06466214 -0.66972103]\n", + " [-0.8501324 0.02303637 -0.52606485]\n", + " [-0.85548608 0.05410248 -0.51499173]\n", + " [-0.8598681 0.08590362 -0.50323693]\n", + " [-0.86320294 0.11822518 -0.49081921]\n", + " [-0.86543244 0.15086007 -0.47777394]\n", + " [-0.86651649 0.18360658 -0.46415277]\n", + " [-0.73329158 0.07975605 -0.67522028]\n", + " [-0.73783664 0.11266298 -0.66551044]\n", + " [-0.74156595 0.14616148 -0.65476467]\n", + " [-0.7444042 0.18004638 -0.64299743]\n", + " [-0.7462931 0.21411247 -0.63024 ]\n", + " [-0.7471923 0.24815249 -0.61654198]\n", + " [-0.86054974 0.19922786 -0.46878823]\n", + " [-0.84235353 0.21081223 -0.49598259]\n", + " [-0.82271774 0.22239124 -0.5231421 ]\n", + " [-0.8016978 0.23388153 -0.55007278]\n", + " [-0.77937114 0.24520394 -0.57658967]\n", + " [-0.75583938 0.25628306 -0.60251625]\n", + " [-0.84802764 0.01228855 -0.52980951]\n", + " [-0.84802764 0.01228855 -0.52980951]\n", + " [-0.74726878 0.260122 -0.61149482]\n", + " [-0.74726878 0.260122 -0.61149482]\n", + " [-0.84412008 0.02625334 -0.53551101]\n", + " [-0.84945417 0.05750378 -0.52451972]\n", + " [-0.85382087 0.08947722 -0.51281941]\n", + " [-0.85714442 0.12196009 -0.500429 ]\n", + " [-0.85936628 0.15474592 -0.48738414]\n", + " [-0.86044596 0.18763306 -0.47373682]\n", + " [-0.8261547 0.03566087 -0.56231372]\n", + " [-0.83141262 0.06738107 -0.55155493]\n", + " [-0.83571931 0.09979299 -0.54001352]\n", + " [-0.83899823 0.13268605 -0.52770861]\n", + " [-0.84118983 0.16585525 -0.51467631]\n", + " [-0.84225264 0.19909854 -0.50096932]\n", + " [-0.80684942 0.04542844 -0.58900787]\n", + " [-0.81199954 0.07754268 -0.57848412]\n", + " [-0.81622026 0.11032136 -0.56710994]\n", + " [-0.8194345 0.14355647 -0.55490417]\n", + " [-0.82158201 0.17704384 -0.54190265]\n", + " [-0.82262069 0.21058038 -0.52815822]\n", + " [-0.78626598 0.0554708 -0.61539321]\n", + " [-0.79127525 0.08790566 -0.60510832]\n", + " [-0.79538248 0.12098096 -0.59391104]\n", + " [-0.79851053 0.15449051 -0.58181923]\n", + " [-0.80059898 0.1882303 -0.56886784]\n", + " [-0.80160563 0.22199585 -0.55510923]\n", + " [-0.76448493 0.06571108 -0.64128375]\n", + " [-0.76931953 0.09839473 -0.63124158]\n", + " [-0.77328499 0.13169713 -0.62023075]\n", + " [-0.77630462 0.16541305 -0.60826775]\n", + " [-0.77831853 0.19933814 -0.59538607]\n", + " [-0.77928492 0.23326653 -0.58163712]\n", + " [-0.74160667 0.07607873 -0.666507 ]\n", + " [-0.74623303 0.10893998 -0.65671024]\n", + " [-0.75002873 0.14239973 -0.64589413]\n", + " [-0.75291801 0.17625291 -0.63407364]\n", + " [-0.7548421 0.21029455 -0.62128062]\n", + " [-0.75576018 0.24431767 -0.60756517]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:fp_optics: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:cartToSphere: vec: [[-9.76153199e-01 -8.41822820e-02 2.00095666e-01]\n", + " [-9.75464176e-01 -1.09589864e-01 1.90944243e-01]\n", + " [-9.74060426e-01 -1.35388580e-01 1.81318007e-01]\n", + " [-9.71903641e-01 -1.61468056e-01 1.71264064e-01]\n", + " [-9.68966232e-01 -1.87719637e-01 1.60828413e-01]\n", + " [-9.65231426e-01 -2.14036121e-01 1.50056102e-01]\n", + " [-9.60693319e-01 -2.40311600e-01 1.38991659e-01]\n", + " [-9.55356909e-01 -2.66441583e-01 1.27679517e-01]\n", + " [-9.76153199e-01 -8.41822820e-02 2.00095666e-01]\n", + " [-9.81641143e-01 -7.28875334e-02 1.76261378e-01]\n", + " [-9.86512744e-01 -6.14342421e-02 1.51718292e-01]\n", + " [-9.90703902e-01 -4.98548537e-02 1.26571215e-01]\n", + " [-9.94161095e-01 -3.81843552e-02 1.00924090e-01]\n", + " [-9.96841405e-01 -2.64604224e-02 7.48803002e-02]\n", + " [-9.98712564e-01 -1.47232875e-02 4.85431792e-02]\n", + " [-9.99753064e-01 -3.01538793e-03 2.20163156e-02]\n", + " [-9.55356909e-01 -2.66441583e-01 1.27679517e-01]\n", + " [-9.61121446e-01 -2.56495854e-01 1.02251864e-01]\n", + " [-9.66231971e-01 -2.46142668e-01 7.62205069e-02]\n", + " [-9.70624819e-01 -2.35411964e-01 4.96856850e-02]\n", + " [-9.74246305e-01 -2.24336067e-01 2.27478699e-02]\n", + " [-9.77052684e-01 -2.12950435e-01 -4.49048090e-03]\n", + " [-9.79010489e-01 -2.01294115e-01 -3.19239948e-02]\n", + " [-9.80097080e-01 -1.89409773e-01 -5.94445195e-02]\n", + " [-9.99753064e-01 -3.01538793e-03 2.20163156e-02]\n", + " [-9.99528253e-01 -2.87314921e-02 1.08522938e-02]\n", + " [-9.98490190e-01 -5.49276084e-02 -5.45501410e-04]\n", + " [-9.96599647e-01 -8.14982703e-02 -1.21316051e-02]\n", + " [-9.93827664e-01 -1.08338535e-01 -2.38607646e-02]\n", + " [-9.90155970e-01 -1.35342448e-01 -3.56871987e-02]\n", + " [-9.85577542e-01 -1.62402437e-01 -4.75642514e-02]\n", + " [-9.80097080e-01 -1.89409773e-01 -5.94445195e-02]\n", + " [-9.75957698e-01 -9.51667904e-02 1.96086343e-01]\n", + " [-9.74638439e-01 -1.26584164e-01 1.84543662e-01]\n", + " [-9.72206266e-01 -1.58479235e-01 1.72334871e-01]\n", + " [-9.68605930e-01 -1.90651265e-01 1.59545125e-01]\n", + " [-9.63806556e-01 -2.22902880e-01 1.46257404e-01]\n", + " [-9.57801805e-01 -2.55039677e-01 1.32553630e-01]\n", + " [-9.78616211e-01 -7.93655435e-02 1.89766759e-01]\n", + " [-9.84936892e-01 -6.54126874e-02 1.60064046e-01]\n", + " [-9.90266867e-01 -5.12534803e-02 1.29400979e-01]\n", + " [-9.94503205e-01 -3.69512585e-02 9.79692783e-02]\n", + " [-9.97566900e-01 -2.25753682e-02 6.59593274e-02]\n", + " [-9.99403009e-01 -8.20081569e-03 3.35614646e-02]\n", + " [-9.57965850e-01 -2.62067800e-01 1.16712885e-01]\n", + " [-9.64599808e-01 -2.49599716e-01 8.51304443e-02]\n", + " [-9.70187009e-01 -2.36549304e-01 5.27408148e-02]\n", + " [-9.74624493e-01 -2.22975052e-01 1.97287649e-02]\n", + " [-9.77831766e-01 -2.08942294e-01 -1.37169783e-02]\n", + " [-9.79751686e-01 -1.94524439e-01 -4.74012278e-02]\n", + " [-9.99749965e-01 -1.42019254e-02 1.72717348e-02]\n", + " [-9.98932974e-01 -4.60561492e-02 3.42702001e-03]\n", + " [-9.96854359e-01 -7.85263496e-02 -1.07237599e-02]\n", + " [-9.93456536e-01 -1.11419206e-01 -2.50972566e-02]\n", + " [-9.88705933e-01 -1.44539587e-01 -3.96091535e-02]\n", + " [-9.82594480e-01 -1.77688913e-01 -5.41732301e-02]\n", + " [-9.76171745e-01 -8.42300567e-02 1.99985053e-01]\n", + " [-9.76171745e-01 -8.42300567e-02 1.99985053e-01]\n", + " [-9.80115128e-01 -1.89358609e-01 -5.93098078e-02]\n", + " [-9.80115128e-01 -1.89358609e-01 -5.93098078e-02]\n", + " [-9.78425845e-01 -9.03334989e-02 1.85802918e-01]\n", + " [-9.84806144e-01 -7.64521852e-02 1.55922810e-01]\n", + " [-9.90184633e-01 -6.23393454e-02 1.25092757e-01]\n", + " [-9.94458349e-01 -4.80583439e-02 9.35039425e-02]\n", + " [-9.97548179e-01 -3.36787901e-02 6.13463101e-02]\n", + " [-9.99399022e-01 -1.92761027e-02 2.88101763e-02]\n", + " [-9.77162316e-01 -1.21843968e-01 1.74091513e-01]\n", + " [-9.83682960e-01 -1.08179082e-01 1.43753681e-01]\n", + " [-9.89175905e-01 -9.42123719e-02 1.12494703e-01]\n", + " [-9.93538114e-01 -8.00072391e-02 8.05037762e-02]\n", + " [-9.96690079e-01 -6.56338482e-02 4.79696237e-02]\n", + " [-9.98576128e-01 -5.11685958e-02 1.50828014e-02]\n", + " [-9.74768966e-01 -1.53839176e-01 1.61737353e-01]\n", + " [-9.81387546e-01 -1.40412043e-01 1.31007416e-01]\n", + " [-9.86960776e-01 -1.26614765e-01 9.93837392e-02]\n", + " [-9.91385518e-01 -1.12510401e-01 6.70534467e-02]\n", + " [-9.94581765e-01 -9.81690972e-02 3.42043999e-02]\n", + " [-9.96493181e-01 -8.36676924e-02 1.02789235e-03]\n", + " [-9.71190459e-01 -1.86118664e-01 1.48825182e-01]\n", + " [-9.77864292e-01 -1.72951722e-01 1.17767266e-01]\n", + " [-9.83483202e-01 -1.59348601e-01 8.58418008e-02]\n", + " [-9.87943952e-01 -1.45371443e-01 5.32342964e-02]\n", + " [-9.91166081e-01 -1.31089629e-01 2.01323075e-02]\n", + " [-9.93092658e-01 -1.16579726e-01 -1.32717437e-02]\n", + " [-9.66395860e-01 -2.18485074e-01 1.35437490e-01]\n", + " [-9.73081943e-01 -2.05600859e-01 1.04114448e-01]\n", + " [-9.78711387e-01 -1.92216802e-01 7.19494349e-02]\n", + " [-9.83180953e-01 -1.78393624e-01 3.91270941e-02]\n", + " [-9.86409933e-01 -1.64199250e-01 5.83521754e-03]\n", + " [-9.88341057e-01 -1.49709262e-01 -2.77324909e-02]\n", + " [-9.60378813e-01 -2.50743641e-01 1.21655919e-01]\n", + " [-9.67033974e-01 -2.38163508e-01 9.01301110e-02]\n", + " [-9.72638458e-01 -2.25022181e-01 5.77879597e-02]\n", + " [-9.77089197e-01 -2.11378721e-01 2.48140647e-02]\n", + " [-9.80305578e-01 -1.97299165e-01 -8.60313663e-03]\n", + " [-9.82230353e-01 -1.82857549e-01 -4.22687866e-02]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:fp_optics: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:cartToSphere: vec: [[-1.64416336e-01 5.98445850e-01 -7.84110855e-01]\n", + " [-1.71193065e-01 5.76832551e-01 -7.98722194e-01]\n", + " [-1.77834209e-01 5.54315923e-01 -8.13086005e-01]\n", + " [-1.84318506e-01 5.30969920e-01 -8.27101948e-01]\n", + " [-1.90624247e-01 5.06872909e-01 -8.40679636e-01]\n", + " [-1.96729216e-01 4.82107940e-01 -8.53738572e-01]\n", + " [-2.02610935e-01 4.56763109e-01 -8.66207984e-01]\n", + " [-2.08247065e-01 4.30931717e-01 -8.78026774e-01]\n", + " [-1.64416336e-01 5.98445850e-01 -7.84110855e-01]\n", + " [-1.38149011e-01 5.97512035e-01 -7.89869748e-01]\n", + " [-1.11237012e-01 5.95986584e-01 -7.95252362e-01]\n", + " [-8.37882669e-02 5.93862369e-01 -8.00191860e-01]\n", + " [-5.59109156e-02 5.91136208e-01 -8.04631564e-01]\n", + " [-2.77136042e-02 5.87808905e-01 -8.08524983e-01]\n", + " [ 6.94188617e-04 5.83885593e-01 -8.11835656e-01]\n", + " [ 2.92020965e-02 5.79376163e-01 -8.14536985e-01]\n", + " [-2.08247065e-01 4.30931717e-01 -8.78026774e-01]\n", + " [-1.81386373e-01 4.28486565e-01 -8.85154363e-01]\n", + " [-1.53829656e-01 4.25643845e-01 -8.91719549e-01]\n", + " [-1.25679629e-01 4.22396078e-01 -8.97655939e-01]\n", + " [-9.70400322e-02 4.18739958e-01 -9.02906462e-01]\n", + " [-6.80175016e-02 4.14676705e-01 -9.07423192e-01]\n", + " [-3.87225838e-02 4.10212415e-01 -9.11167568e-01]\n", + " [-9.26962883e-03 4.05358304e-01 -9.14110890e-01]\n", + " [ 2.92020965e-02 5.79376163e-01 -8.14536985e-01]\n", + " [ 2.39588139e-02 5.56842196e-01 -8.30272692e-01]\n", + " [ 1.85974436e-02 5.33407241e-01 -8.45654096e-01]\n", + " [ 1.31378152e-02 5.09140675e-01 -8.60583041e-01]\n", + " [ 7.60011292e-03 4.84117094e-01 -8.74970215e-01]\n", + " [ 2.00515987e-03 4.58417977e-01 -8.88734458e-01]\n", + " [-3.62548276e-03 4.32132653e-01 -9.01802764e-01]\n", + " [-9.26962883e-03 4.05358304e-01 -9.14110890e-01]\n", + " [-1.67297428e-01 5.89135477e-01 -7.90525749e-01]\n", + " [-1.75513730e-01 5.62028701e-01 -8.08281306e-01]\n", + " [-1.83505462e-01 5.33638049e-01 -8.25564158e-01]\n", + " [-1.91232860e-01 5.04105957e-01 -8.42203762e-01]\n", + " [-1.98655054e-01 4.73585362e-01 -8.58051907e-01]\n", + " [-2.05730694e-01 4.42240610e-01 -8.72982316e-01]\n", + " [-1.53072920e-01 5.98038220e-01 -7.86714032e-01]\n", + " [-1.20431603e-01 5.96496163e-01 -7.93529178e-01]\n", + " [-8.69291265e-02 5.94058022e-01 -7.99711444e-01]\n", + " [-5.27644810e-02 5.90716314e-01 -8.05152250e-01]\n", + " [-1.81377185e-02 5.86472558e-01 -8.09765992e-01]\n", + " [ 1.67492328e-02 5.81338157e-01 -8.13489650e-01]\n", + " [-1.96608988e-01 4.30003274e-01 -8.81159514e-01]\n", + " [-1.63207282e-01 4.26741185e-01 -8.89525348e-01]\n", + " [-1.28862203e-01 4.22873891e-01 -8.96979490e-01]\n", + " [-9.37642060e-02 4.18393558e-01 -9.03413031e-01]\n", + " [-5.81097243e-02 4.13302465e-01 -9.08737769e-01]\n", + " [-2.21039000e-02 4.07613955e-01 -9.12886785e-01]\n", + " [ 2.68338757e-02 5.69682815e-01 -8.21426462e-01]\n", + " [ 2.03248384e-02 5.41450911e-01 -8.40486652e-01]\n", + " [ 1.36582933e-02 5.11934110e-01 -8.58916130e-01]\n", + " [ 6.87123847e-03 4.81267484e-01 -8.76546859e-01]\n", + " [ 2.02615431e-06 4.49601145e-01 -8.93229428e-01]\n", + " [-6.90937249e-03 4.17102845e-01 -9.08833031e-01]\n", + " [-1.64351111e-01 5.98371360e-01 -7.84181374e-01]\n", + " [-1.64351111e-01 5.98371360e-01 -7.84181374e-01]\n", + " [-9.35118587e-03 4.05467826e-01 -9.14061485e-01]\n", + " [-9.35118587e-03 4.05467826e-01 -9.14061485e-01]\n", + " [-1.55981246e-01 5.88763468e-01 -7.93112495e-01]\n", + " [-1.23229025e-01 5.87121647e-01 -8.00064235e-01]\n", + " [-8.96106348e-02 5.84599099e-01 -8.06358374e-01]\n", + " [-5.53246643e-02 5.81188062e-01 -8.11886457e-01]\n", + " [-2.05709562e-02 5.76889608e-01 -8.16563051e-01]\n", + " [ 1.44483496e-02 5.71714764e-01 -8.20325225e-01]\n", + " [-1.64106105e-01 5.61544692e-01 -8.11009707e-01]\n", + " [-1.31085806e-01 5.59616676e-01 -8.18318818e-01]\n", + " [-9.71849079e-02 5.56853643e-01 -8.24905518e-01]\n", + " [-6.26004190e-02 5.53246812e-01 -8.30661876e-01]\n", + " [-2.75314985e-02 5.48796050e-01 -8.35502790e-01]\n", + " [ 7.81896641e-03 5.43511491e-01 -8.39365310e-01]\n", + " [-1.72030459e-01 5.33039110e-01 -8.28417062e-01]\n", + " [-1.38810338e-01 5.30818596e-01 -8.36040255e-01]\n", + " [-1.04694746e-01 5.27811506e-01 -8.42884348e-01]\n", + " [-6.98787904e-02 5.24008188e-01 -8.48841783e-01]\n", + " [-3.45609187e-02 5.19407770e-01 -8.53827331e-01]\n", + " [ 1.05510843e-03 5.14020017e-01 -8.57777541e-01]\n", + " [-1.79714389e-01 5.03388735e-01 -8.45164197e-01]\n", + " [-1.46362154e-01 5.00867786e-01 -8.53058955e-01]\n", + " [-1.12099424e-01 4.97611188e-01 -8.60126052e-01]\n", + " [-7.71194426e-02 4.93608999e-01 -8.66257899e-01]\n", + " [-4.16199777e-02 4.88860378e-01 -8.71368641e-01]\n", + " [-5.80559873e-03 4.83375427e-01 -8.75393907e-01]\n", + " [-1.87116645e-01 4.72746196e-01 -8.61103011e-01]\n", + " [-1.53699037e-01 4.69915930e-01 -8.69227027e-01]\n", + " [-1.19356305e-01 4.66403513e-01 -8.76482650e-01]\n", + " [-8.42801407e-02 4.62199469e-01 -8.82761864e-01]\n", + " [-4.86676879e-02 4.57303832e-01 -8.87977850e-01]\n", + " [-1.27240517e-02 4.51727740e-01 -8.92065103e-01]\n", + " [-1.94195441e-01 4.41275903e-01 -8.76107133e-01]\n", + " [-1.60778129e-01 4.38127777e-01 -8.84417574e-01]\n", + " [-1.26421993e-01 4.34353830e-01 -8.91826345e-01]\n", + " [-9.13176946e-02 4.29945716e-01 -8.98224782e-01]\n", + " [-5.56618318e-02 4.24905048e-01 -9.03525019e-01]\n", + " [-1.96596219e-02 4.19244535e-01 -9.07660465e-01]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:cartToSphere: vec: [[-0.47871186 -0.66603163 0.57204618]\n", + " [-0.49825879 -0.66737579 0.55348689]\n", + " [-0.51791682 -0.66812888 0.53419656]\n", + " [-0.53757117 -0.66827149 0.51422801]\n", + " [-0.55711578 -0.66778874 0.49363976]\n", + " [-0.57645256 -0.6666705 0.47249643]\n", + " [-0.59549082 -0.66491189 0.45086901]\n", + " [-0.61414691 -0.66251368 0.4288347 ]\n", + " [-0.47871186 -0.66603163 0.57204618]\n", + " [-0.48957679 -0.64571507 0.58597493]\n", + " [-0.50043209 -0.62447308 0.59966749]\n", + " [-0.51119567 -0.60237062 0.61304863]\n", + " [-0.52179436 -0.57947731 0.62604848]\n", + " [-0.53216332 -0.55586816 0.63860221]\n", + " [-0.54224546 -0.53162412 0.65065018]\n", + " [-0.55199089 -0.50683239 0.66213819]\n", + " [-0.61414691 -0.66251368 0.4288347 ]\n", + " [-0.62690484 -0.64152794 0.44207717]\n", + " [-0.6394236 -0.61959583 0.45523451]\n", + " [-0.65162457 -0.59677643 0.46823424]\n", + " [-0.66343585 -0.57313486 0.48100862]\n", + " [-0.67479164 -0.54874401 0.49349392]\n", + " [-0.68563217 -0.52368556 0.50563026]\n", + " [-0.69590419 -0.49805004 0.51736207]\n", + " [-0.55199089 -0.50683239 0.66213819]\n", + " [-0.57319163 -0.50689501 0.64382358]\n", + " [-0.59435158 -0.50654375 0.62462759]\n", + " [-0.6153613 -0.50575829 0.60459823]\n", + " [-0.63611739 -0.50452336 0.58379007]\n", + " [-0.65652143 -0.50282893 0.56226567]\n", + " [-0.67647975 -0.50067064 0.54009635]\n", + " [-0.69590419 -0.49805004 0.51736207]\n", + " [-0.48725066 -0.66662086 0.56409523]\n", + " [-0.51129862 -0.66787284 0.5408508 ]\n", + " [-0.5353983 -0.66821731 0.51656005]\n", + " [-0.55935082 -0.667625 0.49132832]\n", + " [-0.58297557 -0.66607733 0.46527462]\n", + " [-0.60610851 -0.66356761 0.43853222]\n", + " [-0.48351165 -0.65729663 0.57808099]\n", + " [-0.4968336 -0.63176559 0.59500303]\n", + " [-0.51005833 -0.60490852 0.61149505]\n", + " [-0.52304743 -0.57685162 0.62742617]\n", + " [-0.5356815 -0.54773304 0.64267709]\n", + " [-0.54785842 -0.51770441 0.65714023]\n", + " [-0.61967015 -0.6534931 0.43469031]\n", + " [-0.6351551 -0.62712943 0.45087324]\n", + " [-0.65020201 -0.59940239 0.46685556]\n", + " [-0.66467579 -0.57042927 0.48251066]\n", + " [-0.6784553 -0.54034437 0.49772118]\n", + " [-0.69143318 -0.50930176 0.51237864]\n", + " [-0.56119934 -0.50699502 0.65422576]\n", + " [-0.58716937 -0.50679709 0.63118051]\n", + " [-0.6129687 -0.50595661 0.60685854]\n", + " [-0.63840456 -0.50444334 0.5813575 ]\n", + " [-0.66329573 -0.50223888 0.55479265]\n", + " [-0.68747201 -0.49933764 0.52729893]\n", + " [-0.47881545 -0.66596937 0.57203196]\n", + " [-0.47881545 -0.66596937 0.57203196]\n", + " [-0.69580467 -0.49814832 0.51740131]\n", + " [-0.69580467 -0.49814832 0.51740131]\n", + " [-0.492018 -0.65791812 0.57014212]\n", + " [-0.50552239 -0.6322987 0.58706513]\n", + " [-0.51890186 -0.60534764 0.60356863]\n", + " [-0.53201879 -0.57719044 0.61952176]\n", + " [-0.54475437 -0.54796476 0.63480492]\n", + " [-0.55700674 -0.51782227 0.64931008]\n", + " [-0.51625335 -0.65909432 0.54687947]\n", + " [-0.53023777 -0.63325213 0.5637727 ]\n", + " [-0.54402384 -0.60606449 0.58027915]\n", + " [-0.55747608 -0.57765463 0.59626801]\n", + " [-0.5704769 -0.548159 0.61161901]\n", + " [-0.58292461 -0.51772947 0.62622289]\n", + " [-0.54052015 -0.65937634 0.5225522 ]\n", + " [-0.55493228 -0.6333514 0.53936646]\n", + " [-0.56908017 -0.60597028 0.55583071]\n", + " [-0.58282982 -0.57735398 0.57181447]\n", + " [-0.59606391 -0.54763792 0.58719717]\n", + " [-0.60868012 -0.51697447 0.60186868]\n", + " [-0.56462035 -0.65873441 0.49726535]\n", + " [-0.57941027 -0.63256526 0.51395033]\n", + " [-0.59387707 -0.6050327 0.5303258 ]\n", + " [-0.60788728 -0.57625587 0.54626204]\n", + " [-0.62132303 -0.54636948 0.56163875]\n", + " [-0.63408069 -0.51552647 0.57634549]\n", + " [-0.58837386 -0.65714937 0.47113789]\n", + " [-0.60349264 -0.63087315 0.48764301]\n", + " [-0.61823571 -0.60323038 0.50388265]\n", + " [-0.63246928 -0.57433892 0.51972822]\n", + " [-0.64607426 -0.54433309 0.53506032]\n", + " [-0.6589454 -0.51336643 0.54976892]\n", + " [-0.61161665 -0.65461409 0.44430335]\n", + " [-0.62701496 -0.62826692 0.46057888]\n", + " [-0.64199057 -0.6005547 0.4766363 ]\n", + " [-0.6564088 -0.5715947 0.49234845]\n", + " [-0.67014902 -0.5415212 0.50759737]\n", + " [-0.68310439 -0.51048816 0.52227409]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:fp_optics: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:fp_optics: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:cartToSphere: vec: [[-0.07413636 -0.0278529 0.99685908]\n", + " [-0.05487941 -0.04673214 0.9973988 ]\n", + " [-0.03528698 -0.06608712 0.99718971]\n", + " [-0.01543052 -0.08581873 0.99619127]\n", + " [ 0.00461733 -0.1058334 0.99437315]\n", + " [ 0.02478228 -0.12604175 0.99171534]\n", + " [ 0.04498842 -0.1463575 0.98820824]\n", + " [ 0.06515847 -0.16669694 0.98385289]\n", + " [-0.07413636 -0.0278529 0.99685908]\n", + " [-0.09473306 -0.0450324 0.99448365]\n", + " [-0.11560228 -0.06267051 0.99131656]\n", + " [-0.13665912 -0.08067415 0.98732769]\n", + " [-0.15781956 -0.09895596 0.98249718]\n", + " [-0.17899987 -0.11743288 0.97681552]\n", + " [-0.20011647 -0.13602504 0.97028377]\n", + " [-0.22108619 -0.15465519 0.96291363]\n", + " [ 0.06515847 -0.16669694 0.98385289]\n", + " [ 0.04506858 -0.18593678 0.98152755]\n", + " [ 0.02453317 -0.20542416 0.97836549]\n", + " [ 0.00363233 -0.22507236 0.97433528]\n", + " [-0.01755322 -0.24479658 0.96941556]\n", + " [-0.03894115 -0.26451297 0.9635956 ]\n", + " [-0.06044736 -0.28413863 0.95687583]\n", + " [-0.08198639 -0.30359206 0.94926819]\n", + " [-0.22108619 -0.15465519 0.96291363]\n", + " [-0.20245922 -0.17554938 0.96342757]\n", + " [-0.18330071 -0.19672323 0.96317227]\n", + " [-0.16367783 -0.2180842 0.96210647]\n", + " [-0.14366025 -0.23954135 0.96019877]\n", + " [-0.12332098 -0.26100448 0.95742812]\n", + " [-0.10273651 -0.2823841 0.95378427]\n", + " [-0.08198639 -0.30359206 0.94926819]\n", + " [-0.06585594 -0.03607769 0.99717671]\n", + " [-0.04202 -0.05955057 0.99734049]\n", + " [-0.01775089 -0.08363872 0.99633803]\n", + " [ 0.00681817 -0.10816768 0.99410928]\n", + " [ 0.03155044 -0.13297275 0.99061739]\n", + " [ 0.05630557 -0.15789618 0.98584912]\n", + " [-0.08301243 -0.03534486 0.99592152]\n", + " [-0.10844999 -0.05672226 0.99248233]\n", + " [-0.13421252 -0.07869517 0.98782289]\n", + " [-0.16014501 -0.10110046 0.98190237]\n", + " [-0.18609331 -0.12378509 0.97470331]\n", + " [-0.21190369 -0.14660313 0.96623204]\n", + " [ 0.05639004 -0.17497967 0.98295589]\n", + " [ 0.03145744 -0.19873687 0.9795479 ]\n", + " [ 0.00593537 -0.22277957 0.97485078]\n", + " [-0.0200279 -0.24695092 0.968821 ]\n", + " [-0.04628081 -0.27109659 0.96143888]\n", + " [-0.07266789 -0.2950645 0.95270999]\n", + " [-0.21296273 -0.16366075 0.96325596]\n", + " [-0.18976697 -0.18946789 0.96337449]\n", + " [-0.1658395 -0.21560301 0.96229549]\n", + " [-0.14130746 -0.24189811 0.95995703]\n", + " [-0.11630528 -0.26818714 0.95632042]\n", + " [-0.09097508 -0.29430587 0.95137142]\n", + " [-0.07414103 -0.02797439 0.99685533]\n", + " [-0.07414103 -0.02797439 0.99685533]\n", + " [-0.08198393 -0.30345379 0.94931261]\n", + " [-0.08198393 -0.30345379 0.94931261]\n", + " [-0.07473071 -0.04352503 0.99625343]\n", + " [-0.10018827 -0.06510348 0.99283626]\n", + " [-0.12598667 -0.08725406 0.98818727]\n", + " [-0.15197113 -0.1098151 0.98226545]\n", + " [-0.17798737 -0.13263444 0.97505313]\n", + " [-0.20388124 -0.15556635 0.96655654]\n", + " [-0.05089138 -0.06719993 0.99644078]\n", + " [-0.07636937 -0.08930611 0.99307207]\n", + " [-0.10223381 -0.11192229 0.98844405]\n", + " [-0.12833073 -0.13489031 0.98251505]\n", + " [-0.15450562 -0.15805951 0.97526673]\n", + " [-0.18060316 -0.18128407 0.96670501]\n", + " [-0.02659951 -0.09146814 0.99545268]\n", + " [-0.05204346 -0.11404399 0.99211161]\n", + " [-0.07792025 -0.137073 0.98749148]\n", + " [-0.10407696 -0.16039918 0.98154984]\n", + " [-0.13035911 -0.18387215 0.97426769]\n", + " [-0.15661052 -0.20734506 0.96565065]\n", + " [-0.0019882 -0.11615665 0.99322892]\n", + " [-0.02734316 -0.13914758 0.98989409]\n", + " [-0.05317779 -0.16253882 0.98526811]\n", + " [-0.07934042 -0.18617518 0.97930787]\n", + " [-0.10567701 -0.20990561 0.97199383]\n", + " [-0.13203098 -0.23358173 0.96333141]\n", + " [ 0.0228056 -0.1411016 0.98973241]\n", + " [-0.00240583 -0.16445443 0.98638175]\n", + " [-0.02814379 -0.18815752 0.98173554]\n", + " [-0.05425808 -0.2120554 0.97575026]\n", + " [-0.08059546 -0.23599575 0.9684061 ]\n", + " [-0.10699946 -0.2598285 0.95970843]\n", + " [ 0.04764107 -0.16614538 0.98494977]\n", + " [ 0.02262654 -0.18980669 0.98156073]\n", + " [-0.00296112 -0.21377012 0.97687951]\n", + " [-0.02897317 -0.23787925 0.97086251]\n", + " [-0.05525754 -0.26198029 0.96348998]\n", + " [-0.08165843 -0.2859216 0.95476737]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:fp_optics: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:cartToSphere: vec: [[-0.44009411 -0.7769626 -0.45016251]\n", + " [-0.43637082 -0.76479683 -0.47398979]\n", + " [-0.43237401 -0.75174014 -0.49793522]\n", + " [-0.42809344 -0.73781778 -0.5218821 ]\n", + " [-0.42352296 -0.72306437 -0.54571625]\n", + " [-0.41866193 -0.7075223 -0.569328 ]\n", + " [-0.41351584 -0.69124114 -0.59261314]\n", + " [-0.40809642 -0.67427739 -0.61547325]\n", + " [-0.44009411 -0.7769626 -0.45016251]\n", + " [-0.46409718 -0.76579906 -0.44515796]\n", + " [-0.48825672 -0.75375408 -0.43984107]\n", + " [-0.51245417 -0.74084803 -0.43420608]\n", + " [-0.53657309 -0.72711075 -0.42825142]\n", + " [-0.56050149 -0.71257984 -0.42198111]\n", + " [-0.58413281 -0.69730001 -0.4154053 ]\n", + " [-0.60736626 -0.68132292 -0.40854045]\n", + " [-0.40809642 -0.67427739 -0.61547325]\n", + " [-0.43285835 -0.66188296 -0.61200049]\n", + " [-0.45778241 -0.64869983 -0.60796694]\n", + " [-0.48274688 -0.63475241 -0.60336127]\n", + " [-0.5076369 -0.62007065 -0.59817821]\n", + " [-0.53234239 -0.60469116 -0.59241892]\n", + " [-0.55675629 -0.58865869 -0.58609161]\n", + " [-0.58077416 -0.57202695 -0.57921201]\n", + " [-0.60736626 -0.68132292 -0.40854045]\n", + " [-0.60519832 -0.66796027 -0.43308668]\n", + " [-0.60250265 -0.65378867 -0.45776734]\n", + " [-0.59926321 -0.63883682 -0.4824636 ]\n", + " [-0.59547026 -0.62313906 -0.507063 ]\n", + " [-0.59112062 -0.60673675 -0.53145737]\n", + " [-0.58621816 -0.58967971 -0.55554127]\n", + " [-0.58077416 -0.57202695 -0.57921201]\n", + " [-0.43858565 -0.77173204 -0.46051307]\n", + " [-0.43384078 -0.75621914 -0.48981098]\n", + " [-0.42867434 -0.73939199 -0.5191703 ]\n", + " [-0.42307321 -0.72131054 -0.54837957]\n", + " [-0.41703627 -0.70205281 -0.57723704]\n", + " [-0.41057622 -0.6817129 -0.60555321]\n", + " [-0.45052083 -0.77216413 -0.44809992]\n", + " [-0.48006019 -0.75788656 -0.44175805]\n", + " [-0.50971672 -0.74230414 -0.43494072]\n", + " [-0.53927497 -0.72546796 -0.42764324]\n", + " [-0.56852888 -0.70744721 -0.41987302]\n", + " [-0.59728465 -0.68832707 -0.41165141]\n", + " [-0.41888371 -0.66903104 -0.61394943]\n", + " [-0.44935693 -0.65330781 -0.60931704]\n", + " [-0.47995189 -0.63642348 -0.60383055]\n", + " [-0.51045434 -0.61843086 -0.59747773]\n", + " [-0.54066141 -0.59939754 -0.59026081]\n", + " [-0.57037705 -0.57940961 -0.58219802]\n", + " [-0.60640566 -0.67565383 -0.41924227]\n", + " [-0.6033953 -0.65872974 -0.44943212]\n", + " [-0.59957581 -0.64061842 -0.47970501]\n", + " [-0.59492661 -0.62138069 -0.50985132]\n", + " [-0.58944194 -0.60109288 -0.53967171]\n", + " [-0.58313199 -0.57985052 -0.56897316]\n", + " [-0.44016351 -0.77688587 -0.45022707]\n", + " [-0.44016351 -0.77688587 -0.45022707]\n", + " [-0.58071233 -0.57214608 -0.57915632]\n", + " [-0.58071233 -0.57214608 -0.57915632]\n", + " [-0.44898885 -0.76697501 -0.45843029]\n", + " [-0.47865831 -0.75259791 -0.45219753]\n", + " [-0.50844265 -0.73691854 -0.44546283]\n", + " [-0.53812495 -0.71998936 -0.43822011]\n", + " [-0.56749867 -0.70187987 -0.43047636]\n", + " [-0.59636973 -0.68267529 -0.42225301]\n", + " [-0.44435721 -0.75136189 -0.48785446]\n", + " [-0.47434628 -0.73670749 -0.4819312 ]\n", + " [-0.50444395 -0.72076465 -0.47543098]\n", + " [-0.53443135 -0.70358774 -0.46834542]\n", + " [-0.5641017 -0.68524605 -0.46068115]\n", + " [-0.59326031 -0.66582426 -0.45246023]\n", + " [-0.43927713 -0.73443607 -0.51733864]\n", + " [-0.46950941 -0.71951518 -0.51172143]\n", + " [-0.49984642 -0.70332705 -0.50545487]\n", + " [-0.53006957 -0.68592599 -0.49852963]\n", + " [-0.55997283 -0.66738014 -0.49095231]\n", + " [-0.58936096 -0.64777349 -0.48274543]\n", + " [-0.43373404 -0.71625879 -0.54667003]\n", + " [-0.4641308 -0.70108406 -0.54135362]\n", + " [-0.49463229 -0.68466863 -0.53532024]\n", + " [-0.52502136 -0.66706596 -0.52855991]\n", + " [-0.55509305 -0.64834305 -0.52107869]\n", + " [-0.58465154 -0.62858369 -0.51289874]\n", + " [-0.42772637 -0.69690844 -0.5756464 ]\n", + " [-0.45820858 -0.68149234 -0.57062517]\n", + " [-0.48879987 -0.6648665 -0.56482495]\n", + " [-0.51928468 -0.64708359 -0.55823494]\n", + " [-0.54945913 -0.62821024 -0.55085984]\n", + " [-0.57912699 -0.60833078 -0.54272055]\n", + " [-0.42126689 -0.67647919 -0.6040779 ]\n", + " [-0.45175617 -0.66083389 -0.59934542]\n", + " [-0.48236315 -0.64401402 -0.59377751]\n", + " [-0.51287338 -0.62607219 -0.58736232]\n", + " [-0.54308381 -0.6070756 -0.58010274]\n", + " [-0.57279823 -0.58710981 -0.57201772]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:fp_optics: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:cartToSphere: vec: [[-0.46883594 0.00361555 0.88327787]\n", + " [-0.45056461 -0.0154733 0.89260972]\n", + " [-0.43156606 -0.03492772 0.9014049 ]\n", + " [-0.41189631 -0.05466957 0.90958928]\n", + " [-0.39161636 -0.07462051 0.91709782]\n", + " [-0.37079315 -0.09470119 0.92387452]\n", + " [-0.34949986 -0.11483125 0.92987291]\n", + " [-0.32781554 -0.13492986 0.93505663]\n", + " [-0.46883594 0.00361555 0.88327787]\n", + " [-0.48609981 -0.01768109 0.87372442]\n", + " [-0.50283735 -0.03896215 0.86350249]\n", + " [-0.51898711 -0.06014658 0.85266334]\n", + " [-0.53449214 -0.08115528 0.84126807]\n", + " [-0.5492995 -0.1019114 0.8293878 ]\n", + " [-0.56335939 -0.12234036 0.81710405]\n", + " [-0.57662403 -0.14236944 0.80450958]\n", + " [-0.32781554 -0.13492986 0.93505663]\n", + " [-0.34576438 -0.15685023 0.92511891]\n", + " [-0.36334423 -0.17856134 0.9143833 ]\n", + " [-0.38049019 -0.19997965 0.90290385]\n", + " [-0.39714277 -0.22102523 0.89074433]\n", + " [-0.41324829 -0.24162236 0.8779775 ]\n", + " [-0.42875861 -0.26169945 0.8646846 ]\n", + " [-0.44363039 -0.28118816 0.85095552]\n", + " [-0.57662403 -0.14236944 0.80450958]\n", + " [-0.55986202 -0.16204923 0.81258512]\n", + " [-0.54224771 -0.1819152 0.82028914]\n", + " [-0.52384243 -0.20188495 0.82754551]\n", + " [-0.50470944 -0.22187724 0.83428944]\n", + " [-0.48491525 -0.24181155 0.84046676]\n", + " [-0.46453049 -0.26160809 0.84603347]\n", + " [-0.44363039 -0.28118816 0.85095552]\n", + " [-0.46102251 -0.00473032 0.88737583]\n", + " [-0.43813384 -0.02838208 0.89846157]\n", + " [-0.41420793 -0.05250512 0.90866661]\n", + " [-0.38935494 -0.07695536 0.91786742]\n", + " [-0.36369813 -0.10158673 0.92596102]\n", + " [-0.33737469 -0.12625104 0.93286601]\n", + " [-0.47636271 -0.00573138 0.87923019]\n", + " [-0.49717606 -0.03183305 0.86706553]\n", + " [-0.51713735 -0.05783045 0.85394649]\n", + " [-0.53613987 -0.08357711 0.83998149]\n", + " [-0.55408606 -0.10893157 0.82530149]\n", + " [-0.57088516 -0.13375734 0.81006118]\n", + " [-0.33575701 -0.14443889 0.93080859]\n", + " [-0.35751525 -0.17117455 0.91808612]\n", + " [-0.37865404 -0.19751264 0.90421783]\n", + " [-0.39906161 -0.2233045 0.88931712]\n", + " [-0.41863908 -0.24841071 0.87351785]\n", + " [-0.4372999 -0.27270088 0.85697318]\n", + " [-0.56938002 -0.15085395 0.80811477]\n", + " [-0.54825445 -0.17510931 0.81777368]\n", + " [-0.52590954 -0.19956242 0.82679744]\n", + " [-0.50246088 -0.22406325 0.83506211]\n", + " [-0.478031 -0.24846358 0.84246793]\n", + " [-0.45275183 -0.27261695 0.84893803]\n", + " [-0.46883462 0.00347822 0.88327912]\n", + " [-0.46883462 0.00347822 0.88327912]\n", + " [-0.44365293 -0.28105609 0.8509874 ]\n", + " [-0.44365293 -0.28105609 0.8509874 ]\n", + " [-0.46858115 -0.01397465 0.88330992]\n", + " [-0.48948859 -0.04016256 0.87108432]\n", + " [-0.50955495 -0.06622768 0.85788557]\n", + " [-0.52867365 -0.09202309 0.84382221]\n", + " [-0.54674781 -0.11740712 0.82902497]\n", + " [-0.56368781 -0.14224344 0.81364787]\n", + " [-0.44576975 -0.03771339 0.89435286]\n", + " [-0.46691888 -0.06411327 0.88197293]\n", + " [-0.48725981 -0.09033812 0.86857176]\n", + " [-0.50668583 -0.11623977 0.85425862]\n", + " [-0.5251013 -0.14167619 0.83916416]\n", + " [-0.54241934 -0.1665116 0.82344104]\n", + " [-0.42190718 -0.06190614 0.90452306]\n", + " [-0.44326105 -0.08846906 0.89201618]\n", + " [-0.46384303 -0.11480484 0.87844721]\n", + " [-0.48354565 -0.14076437 0.8639265 ]\n", + " [-0.50227353 -0.16620559 0.8485853 ]\n", + " [-0.51994144 -0.19099361 0.83257573]\n", + " [-0.39710321 -0.08640831 0.91369724]\n", + " [-0.41862407 -0.11308386 0.90109152]\n", + " [-0.43941347 -0.13948038 0.88739001]\n", + " [-0.45936275 -0.16544831 0.87270426]\n", + " [-0.47837598 -0.19084594 0.8571664 ]\n", + " [-0.49636852 -0.21553957 0.84092865]\n", + " [-0.37148067 -0.11107332 0.92177266]\n", + " [-0.39312962 -0.13780985 0.9090971 ]\n", + " [-0.4140919 -0.16421612 0.89529937]\n", + " [-0.43425746 -0.19014261 0.88049205]\n", + " [-0.45352932 -0.21544836 0.86480817]\n", + " [-0.47182244 -0.24000104 0.84840031]\n", + " [-0.34517639 -0.13575263 0.92866812]\n", + " [-0.36691334 -0.16249778 0.91595255]\n", + " [-0.38801261 -0.18886264 0.90209596]\n", + " [-0.40836285 -0.21469822 0.88721162]\n", + " [-0.42786568 -0.23986466 0.87143325]\n", + " [-0.44643505 -0.26423108 0.85491385]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:fp_optics: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:cartToSphere: vec: [[ 0.14705205 -0.25188731 0.95651894]\n", + " [ 0.12767469 -0.27188896 0.95382156]\n", + " [ 0.10780674 -0.29207226 0.95030074]\n", + " [ 0.08752202 -0.31234444 0.94592856]\n", + " [ 0.06689533 -0.33261589 0.94068681]\n", + " [ 0.04600365 -0.35279906 0.93456754]\n", + " [ 0.02492684 -0.37280797 0.92757365]\n", + " [ 0.00374741 -0.39255861 0.91971935]\n", + " [ 0.14705205 -0.25188731 0.95651894]\n", + " [ 0.12640806 -0.23302125 0.96422098]\n", + " [ 0.10565503 -0.21409098 0.97108294]\n", + " [ 0.08487342 -0.19517519 0.97708912]\n", + " [ 0.06414331 -0.17635609 0.98223427]\n", + " [ 0.04354413 -0.15771964 0.9865234 ]\n", + " [ 0.02315461 -0.13935608 0.98997159]\n", + " [ 0.00305301 -0.12136016 0.99260384]\n", + " [ 0.00374741 -0.39255861 0.91971935]\n", + " [-0.01751167 -0.37292657 0.9276956 ]\n", + " [-0.03868928 -0.3530248 0.93481369]\n", + " [-0.05970213 -0.33293653 0.94105734]\n", + " [-0.08046946 -0.31274706 0.94642165]\n", + " [-0.10091338 -0.29254332 0.95091267]\n", + " [-0.12095844 -0.27241409 0.95454681]\n", + " [-0.14053045 -0.25245116 0.9573503 ]\n", + " [ 0.00305301 -0.12136016 0.99260384]\n", + " [-0.01693311 -0.13940153 0.99009115]\n", + " [-0.03722533 -0.15782388 0.98676537]\n", + " [-0.05774572 -0.1765314 0.98259966]\n", + " [-0.07841588 -0.19543289 0.97757707]\n", + " [-0.0991567 -0.21444149 0.97169069]\n", + " [-0.11988833 -0.23347412 0.96494384]\n", + " [-0.14053045 -0.25245116 0.9573503 ]\n", + " [ 0.13859791 -0.26051507 0.95546979]\n", + " [ 0.11450906 -0.28516256 0.95161441]\n", + " [ 0.08975678 -0.3099904 0.94649336]\n", + " [ 0.06447828 -0.33483242 0.94006904]\n", + " [ 0.03881539 -0.35952736 0.9323269 ]\n", + " [ 0.01291624 -0.38391772 0.92327696]\n", + " [ 0.13800413 -0.24374214 0.95997116]\n", + " [ 0.11261871 -0.22056613 0.9688486 ]\n", + " [ 0.0871496 -0.19737135 0.97644739]\n", + " [ 0.06174442 -0.17430766 0.98275351]\n", + " [ 0.0365494 -0.15153339 0.98777618]\n", + " [ 0.01170927 -0.12921652 0.99154727]\n", + " [-0.00545373 -0.38397035 0.92332931]\n", + " [-0.03146475 -0.35971776 0.93253049]\n", + " [-0.05727054 -0.33514257 0.94042519]\n", + " [-0.08272134 -0.31040102 0.94699967]\n", + " [-0.10767369 -0.28565316 0.95226501]\n", + " [-0.13198928 -0.26106361 0.95625552]\n", + " [-0.00555023 -0.1292345 0.99159853]\n", + " [-0.03026098 -0.15161618 0.98797612]\n", + " [-0.05535425 -0.17447424 0.9831046 ]\n", + " [-0.08068591 -0.19763889 0.97694864]\n", + " [-0.10611032 -0.22095014 0.96949556]\n", + " [-0.13148027 -0.24425649 0.9607558 ]\n", + " [ 0.14691638 -0.25189097 0.95653882]\n", + " [ 0.14691638 -0.25189097 0.95653882]\n", + " [-0.14039406 -0.25245432 0.95736948]\n", + " [-0.14039406 -0.25245432 0.95736948]\n", + " [ 0.12965174 -0.25233254 0.95891539]\n", + " [ 0.10418145 -0.22904659 0.9678243 ]\n", + " [ 0.07864458 -0.20572072 0.97544555]\n", + " [ 0.05318919 -0.18250472 0.98176522]\n", + " [ 0.02796168 -0.15955653 0.98679271]\n", + " [ 0.00310668 -0.13704363 0.99056014]\n", + " [ 0.10547787 -0.2768948 0.95509355]\n", + " [ 0.07979886 -0.25332783 0.96408358]\n", + " [ 0.05410222 -0.22966331 0.97176526]\n", + " [ 0.02853732 -0.20605129 0.97812499]\n", + " [ 0.00325094 -0.18264874 0.98317286]\n", + " [-0.02161279 -0.15962147 0.98694168]\n", + " [ 0.08065721 -0.30165274 0.95000002]\n", + " [ 0.05481734 -0.27784974 0.95905922]\n", + " [ 0.02900981 -0.25389437 0.96679681]\n", + " [ 0.00338505 -0.22993754 0.9731995 ]\n", + " [-0.02191012 -0.2061359 0.97827805]\n", + " [-0.04673242 -0.18265376 0.98206603]\n", + " [ 0.05532745 -0.32644054 0.94359708]\n", + " [ 0.02937615 -0.30244724 0.95271334]\n", + " [ 0.00350821 -0.27824877 0.96050264]\n", + " [-0.02212535 -0.2539975 0.96695178]\n", + " [-0.04737817 -0.22985049 0.97207205]\n", + " [-0.07210825 -0.20597123 0.97589767]\n", + " [ 0.02963098 -0.35109748 0.93586995]\n", + " [ 0.00361917 -0.32696093 0.94503093]\n", + " [-0.02225751 -0.30256811 0.95286785]\n", + " [-0.04784812 -0.27807309 0.95936745]\n", + " [-0.07300726 -0.25363399 0.96454121]\n", + " [-0.09759451 -0.22941432 0.96842366]\n", + " [ 0.0037164 -0.37546652 0.92682851]\n", + " [-0.02230403 -0.35123541 0.93602148]\n", + " [-0.04813743 -0.32669864 0.94390189]\n", + " [-0.07363362 -0.30201196 0.95045613]\n", + " [-0.09864861 -0.27733488 0.95569546]\n", + " [-0.12304355 -0.25283164 0.95965434]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:fp_optics: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:cartToSphere: vec: [[0.86027418 0.33631381 0.38317274]\n", + " [0.84686366 0.35697042 0.39420052]\n", + " [0.83256059 0.37787736 0.4050328 ]\n", + " [0.8173885 0.39891944 0.4156192 ]\n", + " [0.80137914 0.41998898 0.42591164]\n", + " [0.78457281 0.44098508 0.43586428]\n", + " [0.76701867 0.46181289 0.44543374]\n", + " [0.74877487 0.48238324 0.4545796 ]\n", + " [0.86027418 0.33631381 0.38317274]\n", + " [0.86546129 0.34861625 0.35978254]\n", + " [0.87003862 0.36105135 0.33567056]\n", + " [0.87395603 0.37353571 0.31092111]\n", + " [0.8771713 0.38599365 0.28562109]\n", + " [0.87965019 0.39835658 0.25986068]\n", + " [0.88136662 0.41056229 0.23373377]\n", + " [0.88230306 0.42255444 0.20733803]\n", + " [0.74877487 0.48238324 0.4545796 ]\n", + " [0.75331763 0.49669916 0.43104813]\n", + " [0.75734599 0.51091126 0.40668998]\n", + " [0.76081018 0.52494007 0.38158328]\n", + " [0.76366812 0.53871158 0.35581011]\n", + " [0.76588547 0.55215639 0.32945829]\n", + " [0.7674359 0.5652096 0.30262228]\n", + " [0.76830161 0.57781118 0.27540312]\n", + " [0.88230306 0.42255444 0.20733803]\n", + " [0.86878433 0.44499208 0.21724603]\n", + " [0.85429482 0.46751899 0.22717033]\n", + " [0.8388541 0.49002575 0.23706235]\n", + " [0.82249056 0.51240775 0.24687564]\n", + " [0.8052426 0.5345639 0.25656536]\n", + " [0.78715952 0.55639636 0.26608829]\n", + " [0.76830161 0.57781118 0.27540312]\n", + " [0.85455674 0.34532404 0.38792279]\n", + " [0.83751781 0.37082572 0.40131309]\n", + " [0.81916064 0.39658796 0.41435955]\n", + " [0.79954021 0.42240945 0.42697273]\n", + " [0.77873076 0.44810433 0.43906823]\n", + " [0.75682654 0.47350035 0.45056743]\n", + " [0.86256286 0.34172642 0.37310639]\n", + " [0.86851676 0.35690604 0.3439429 ]\n", + " [0.87350407 0.37220101 0.31377867]\n", + " [0.87744379 0.38746879 0.28277258]\n", + " [0.88027288 0.40258305 0.2510907 ]\n", + " [0.88194687 0.4174317 0.21890748]\n", + " [0.750879 0.48856235 0.44439572]\n", + " [0.75610801 0.50604776 0.41498957]\n", + " [0.76051393 0.52329775 0.38441907]\n", + " [0.76401614 0.54017385 0.3528336 ]\n", + " [0.76655142 0.5565483 0.32039492]\n", + " [0.76807483 0.5723036 0.28727972]\n", + " [0.87652727 0.43227833 0.21174369]\n", + " [0.8593038 0.45985162 0.22390504]\n", + " [0.84064073 0.48744975 0.23604217]\n", + " [0.82058659 0.5148782 0.2480687 ]\n", + " [0.79921221 0.54195086 0.25990211]\n", + " [0.7766129 0.56848918 0.27146356]\n", + " [0.86024858 0.33642564 0.38313206]\n", + " [0.86024858 0.33642564 0.38313206]\n", + " [0.76836556 0.5776965 0.27546528]\n", + " [0.76836556 0.5776965 0.27546528]\n", + " [0.85686579 0.35069917 0.37787711]\n", + " [0.86280714 0.36607048 0.34864915]\n", + " [0.86778522 0.38152964 0.31840846]\n", + " [0.87171879 0.396935 0.28731333]\n", + " [0.87454446 0.41216089 0.25552963]\n", + " [0.87621738 0.42709552 0.223232 ]\n", + " [0.83980326 0.37639735 0.3912231 ]\n", + " [0.84568703 0.39227433 0.36184844]\n", + " [0.85062105 0.40816577 0.33142801]\n", + " [0.85452344 0.42393243 0.30011828]\n", + " [0.85732982 0.43945002 0.26808442]\n", + " [0.85899438 0.454607 0.23550187]\n", + " [0.82140919 0.4023358 0.40424354]\n", + " [0.82720171 0.41866559 0.3747752 ]\n", + " [0.83206394 0.43494312 0.34422969]\n", + " [0.83591353 0.45103087 0.31276145]\n", + " [0.83868542 0.46680502 0.28053494]\n", + " [0.84033313 0.48215336 0.24772638]\n", + " [0.8017382 0.42831416 0.41684871]\n", + " [0.80740448 0.4450465 0.38733915]\n", + " [0.8121657 0.46166604 0.35672306]\n", + " [0.81593946 0.47803594 0.32515295]\n", + " [0.81866053 0.49403187 0.29279249]\n", + " [0.82028227 0.50954033 0.25981851]\n", + " [0.78086427 0.45414715 0.42895379]\n", + " [0.78636862 0.47123304 0.3994544 ]\n", + " [0.79099886 0.48815092 0.36882175]\n", + " [0.79467303 0.50476372 0.33720671]\n", + " [0.79732639 0.52094586 0.30477211]\n", + " [0.79891266 0.53658213 0.27169502]\n", + " [0.75888173 0.4796626 0.44047964]\n", + " [0.76418868 0.49705269 0.41104049]\n", + " [0.76865821 0.51422419 0.38044453]\n", + " [0.77220929 0.53103908 0.34884138]\n", + " [0.77477821 0.5473702 0.31639308]\n", + " [0.77631962 0.56310059 0.2832765 ]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:fp_optics: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:cartToSphere: vec: [[-0.23730275 0.88636107 0.39755685]\n", + " [-0.20999507 0.89219177 0.39986988]\n", + " [-0.18197385 0.89741747 0.40190472]\n", + " [-0.15334365 0.9019778 0.40363568]\n", + " [-0.12420893 0.90582209 0.40504134]\n", + " [-0.09467653 0.90890899 0.40610442]\n", + " [-0.06485788 0.91120664 0.40681188]\n", + " [-0.03486958 0.91269313 0.4071552 ]\n", + " [-0.23730275 0.88636107 0.39755685]\n", + " [-0.23685735 0.87418482 0.42390978]\n", + " [-0.2361186 0.86133647 0.44983051]\n", + " [-0.23508918 0.84787747 0.47522296]\n", + " [-0.23377252 0.83387896 0.49999629]\n", + " [-0.2321728 0.81942147 0.52406511]\n", + " [-0.23029541 0.80459432 0.54734998]\n", + " [-0.22814824 0.78949384 0.56977878]\n", + " [-0.03486958 0.91269313 0.4071552 ]\n", + " [-0.03455967 0.90005678 0.43440008]\n", + " [-0.03421725 0.88665439 0.46116502]\n", + " [-0.03384417 0.87255066 0.4873499 ]\n", + " [-0.03344261 0.85781858 0.51286341]\n", + " [-0.03301501 0.84253896 0.53762264]\n", + " [-0.03256404 0.82680104 0.56155108]\n", + " [-0.03209256 0.81070373 0.58457637]\n", + " [-0.22814824 0.78949384 0.56977878]\n", + " [-0.20170379 0.7940351 0.57343164]\n", + " [-0.17456111 0.79815255 0.57661159]\n", + " [-0.14682318 0.80178992 0.57928911]\n", + " [-0.11859721 0.80489849 0.58144056]\n", + " [-0.08999264 0.80743862 0.58304733]\n", + " [-0.06112037 0.80938039 0.58409561]\n", + " [-0.03209256 0.81070373 0.58457637]\n", + " [-0.22548996 0.88893279 0.39868882]\n", + " [-0.19152851 0.89567978 0.40134096]\n", + " [-0.15659929 0.90145705 0.40354907]\n", + " [-0.12089455 0.90616729 0.40527195]\n", + " [-0.08461127 0.90973443 0.4064778 ]\n", + " [-0.0479568 0.9121039 0.40714448]\n", + " [-0.23705272 0.88115906 0.40910232]\n", + " [-0.2363094 0.86577609 0.44112315]\n", + " [-0.23512819 0.84944347 0.47239869]\n", + " [-0.23351511 0.83228815 0.50275952]\n", + " [-0.23147791 0.81445834 0.53204848]\n", + " [-0.22902745 0.79612152 0.56012227]\n", + " [-0.03484125 0.90727791 0.41908576]\n", + " [-0.03443916 0.89126799 0.45216735]\n", + " [-0.03398983 0.87417079 0.48442763]\n", + " [-0.03349715 0.85611728 0.51569481]\n", + " [-0.03296563 0.83725633 0.545816 ]\n", + " [-0.03240024 0.81775616 0.57465215]\n", + " [-0.21671797 0.7915745 0.57135203]\n", + " [-0.18382442 0.79686367 0.57551445]\n", + " [-0.14998376 0.80145947 0.5789366 ]\n", + " [-0.11539178 0.80526894 0.58157258]\n", + " [-0.08024987 0.80821917 0.58338815]\n", + " [-0.04476273 0.81025917 0.5843598 ]\n", + " [-0.23720969 0.88634153 0.39765595]\n", + " [-0.23720969 0.88634153 0.39765595]\n", + " [-0.03219361 0.81075581 0.58449858]\n", + " [-0.03219361 0.81075581 0.58449858]\n", + " [-0.22533433 0.88372902 0.41017979]\n", + " [-0.22461025 0.86827497 0.44232206]\n", + " [-0.22347133 0.85185562 0.47371148]\n", + " [-0.22192378 0.8345981 0.50417838]\n", + " [-0.21997507 0.81665105 0.5335654 ]\n", + " [-0.21763486 0.79818311 0.56172839]\n", + " [-0.19137682 0.89042245 0.41294404]\n", + " [-0.19070784 0.87478971 0.44539138]\n", + " [-0.18968962 0.85815256 0.47706607]\n", + " [-0.18832938 0.84063859 0.50779799]\n", + " [-0.18663486 0.82239675 0.53743001]\n", + " [-0.18461393 0.80359726 0.56581724]\n", + " [-0.15645184 0.89615621 0.41524314]\n", + " [-0.15583945 0.88037833 0.44793756]\n", + " [-0.15494419 0.86356467 0.47984201]\n", + " [-0.15377414 0.84584353 0.51078591]\n", + " [-0.15233776 0.82736363 0.54061319]\n", + " [-0.15064255 0.80829513 0.56917995]\n", + " [-0.12075176 0.90083321 0.41703543]\n", + " [-0.12019853 0.88494418 0.44991789]\n", + " [-0.11943038 0.86799553 0.48199599]\n", + " [-0.11845537 0.8501165 0.51309869]\n", + " [-0.11728203 0.8314557 0.54307121]\n", + " [-0.11591772 0.81218253 0.57177147]\n", + " [-0.08447361 0.90437772 0.41828835]\n", + " [-0.08398274 0.88841264 0.451298 ]\n", + " [-0.08334701 0.87137134 0.48349278]\n", + " [-0.08257332 0.85338405 0.51470118]\n", + " [-0.08166911 0.83459946 0.54476959]\n", + " [-0.08064113 0.81518621 0.57355771]\n", + " [-0.0478247 0.9067356 0.41897893]\n", + " [-0.04739909 0.89073082 0.45205303]\n", + " [-0.04690056 0.87364038 0.48430653]\n", + " [-0.0463339 0.85559518 0.51556771]\n", + " [-0.04570445 0.83674401 0.54568358]\n", + " [-0.04501774 0.81725515 0.57451495]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:fp_optics: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:cartToSphere: vec: [[-0.86666691 0.20589403 -0.45441843]\n", + " [-0.85235769 0.21541691 -0.47653113]\n", + " [-0.837075 0.22495436 -0.49869929]\n", + " [-0.82084227 0.23445904 -0.52081371]\n", + " [-0.80369157 0.24388586 -0.54277026]\n", + " [-0.78566486 0.25319144 -0.56446861]\n", + " [-0.76681487 0.26233409 -0.58581207]\n", + " [-0.74720519 0.27127403 -0.60670817]\n", + " [-0.86666691 0.20589403 -0.45441843]\n", + " [-0.86603298 0.23242994 -0.44267732]\n", + " [-0.86462575 0.25871889 -0.43068184]\n", + " [-0.86245966 0.28466196 -0.41848644]\n", + " [-0.85955754 0.31016397 -0.40615162]\n", + " [-0.85595029 0.33513353 -0.39374436]\n", + " [-0.85167652 0.35948273 -0.3813388 ]\n", + " [-0.84678251 0.38312648 -0.36901691]\n", + " [-0.74720519 0.27127403 -0.60670817]\n", + " [-0.74662218 0.2986701 -0.59443375]\n", + " [-0.7453696 0.32570917 -0.58166803]\n", + " [-0.74346205 0.3522882 -0.56846918]\n", + " [-0.74092256 0.37831057 -0.55490077]\n", + " [-0.73778212 0.40368645 -0.54103123]\n", + " [-0.73407926 0.42833216 -0.52693377]\n", + " [-0.72985999 0.45216855 -0.51268703]\n", + " [-0.84678251 0.38312648 -0.36901691]\n", + " [-0.83261096 0.39382108 -0.38944055]\n", + " [-0.81753611 0.40431682 -0.41007637]\n", + " [-0.80158542 0.41456443 -0.43080988]\n", + " [-0.7847943 0.42451691 -0.45153439]\n", + " [-0.76720653 0.43412945 -0.47215015]\n", + " [-0.74887463 0.44335977 -0.4925636 ]\n", + " [-0.72985999 0.45216855 -0.51268703]\n", + " [-0.86054808 0.21013251 -0.46400575]\n", + " [-0.84235346 0.22182057 -0.4911581 ]\n", + " [-0.82271907 0.23348303 -0.51828467]\n", + " [-0.80170027 0.24503597 -0.54519176]\n", + " [-0.77937443 0.25639953 -0.57169466]\n", + " [-0.75584314 0.26749771 -0.59761704]\n", + " [-0.86643891 0.21752052 -0.449409 ]\n", + " [-0.86514056 0.24989043 -0.43484088]\n", + " [-0.86269411 0.28179061 -0.41994396]\n", + " [-0.85913813 0.31304425 -0.40482708]\n", + " [-0.85452945 0.34348309 -0.38961364]\n", + " [-0.84894235 0.37294648 -0.37444335]\n", + " [-0.74710216 0.28322569 -0.60134978]\n", + " [-0.74593584 0.31657552 -0.585969 ]\n", + " [-0.74377722 0.34928615 -0.56990756]\n", + " [-0.74066524 0.38117697 -0.55328032]\n", + " [-0.73665689 0.41208254 -0.53621321]\n", + " [-0.73182621 0.44185078 -0.51884322]\n", + " [-0.84073385 0.38773084 -0.37793041]\n", + " [-0.82275442 0.40071036 -0.40312078]\n", + " [-0.80344455 0.41334211 -0.42851507]\n", + " [-0.78286606 0.42553862 -0.45391366]\n", + " [-0.76109962 0.43721745 -0.47913283]\n", + " [-0.7382456 0.44830195 -0.50400277]\n", + " [-0.86661882 0.20601757 -0.45445416]\n", + " [-0.86661882 0.20601757 -0.45445416]\n", + " [-0.72994135 0.45205914 -0.51266768]\n", + " [-0.72994135 0.45205914 -0.51266768]\n", + " [-0.86036806 0.22167987 -0.45893881]\n", + " [-0.85907146 0.25416768 -0.44429159]\n", + " [-0.85662996 0.28617353 -0.4292899 ]\n", + " [-0.8530825 0.31752028 -0.4140424 ]\n", + " [-0.84848629 0.3480398 -0.39867192]\n", + " [-0.84291591 0.37757198 -0.38331732]\n", + " [-0.8421736 0.23347955 -0.48603592]\n", + " [-0.84088607 0.26626186 -0.47118492]\n", + " [-0.83846689 0.29852846 -0.45591012]\n", + " [-0.83495591 0.33010113 -0.4403202 ]\n", + " [-0.83041138 0.3608121 -0.42453688]\n", + " [-0.82490869 0.39050292 -0.40869685]\n", + " [-0.82254007 0.24523229 -0.5131169 ]\n", + " [-0.82126822 0.2782497 -0.49809198]\n", + " [-0.81888458 0.31071911 -0.48257816]\n", + " [-0.81542964 0.3424612 -0.46668494]\n", + " [-0.81096234 0.37330858 -0.4505339 ]\n", + " [-0.80555863 0.40310455 -0.43426032]\n", + " [-0.8015229 0.25685354 -0.53998825]\n", + " [-0.80027385 0.29004491 -0.52481969]\n", + " [-0.79794005 0.32265787 -0.50910075]\n", + " [-0.79456211 0.35451219 -0.49294234]\n", + " [-0.79019913 0.38544094 -0.47646681]\n", + " [-0.78492712 0.41528914 -0.45980904]\n", + " [-0.77919947 0.2682627 -0.56646563]\n", + " [-0.77798066 0.30156506 -0.55118473]\n", + " [-0.77571149 0.33426105 -0.53529546]\n", + " [-0.77243221 0.36616993 -0.51891046]\n", + " [-0.76820139 0.39712534 -0.50215345]\n", + " [-0.76309457 0.4269738 -0.48515983]\n", + " [-0.75567137 0.27938316 -0.59237305]\n", + " [-0.75449011 0.31273209 -0.5770124 ]\n", + " [-0.75230019 0.34544976 -0.5609892 ]\n", + " [-0.74914094 0.37735544 -0.54441778]\n", + " [-0.74506985 0.40828344 -0.5274235 ]\n", + " [-0.74016143 0.4380814 -0.51014287]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:fp_optics: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:cartToSphere: vec: [[-0.28667337 -0.41694946 0.86253784]\n", + " [-0.30863941 -0.40129648 0.86238208]\n", + " [-0.33075673 -0.38490077 0.86165619]\n", + " [-0.35292382 -0.36782913 0.86031768]\n", + " [-0.3750429 -0.35014793 0.85833516]\n", + " [-0.39701924 -0.33192433 0.855688 ]\n", + " [-0.41876097 -0.31322729 0.85236607]\n", + " [-0.44017926 -0.29412813 0.84836953]\n", + " [-0.28667337 -0.41694946 0.86253784]\n", + " [-0.27098955 -0.39950901 0.87576094]\n", + " [-0.25488518 -0.38129141 0.88862276]\n", + " [-0.23840597 -0.36237062 0.90102726]\n", + " [-0.22160167 -0.34282 0.91288945]\n", + " [-0.20452637 -0.32271371 0.92413464]\n", + " [-0.18723843 -0.30212772 0.93469814]\n", + " [-0.16980015 -0.28114047 0.94452525]\n", + " [-0.44017926 -0.29412813 0.84836953]\n", + " [-0.42543907 -0.27489536 0.86222627]\n", + " [-0.4100576 -0.25504512 0.87567388]\n", + " [-0.39407716 -0.23464486 0.88861971]\n", + " [-0.37754456 -0.21376483 0.90097986]\n", + " [-0.36051201 -0.19247925 0.91267893]\n", + " [-0.34303745 -0.1708666 0.92365032]\n", + " [-0.32518435 -0.14900927 0.93383691]\n", + " [-0.16980015 -0.28114047 0.94452525]\n", + " [-0.19163913 -0.26364466 0.94539195]\n", + " [-0.21375632 -0.24558198 0.94551453]\n", + " [-0.23605532 -0.22701324 0.94485071]\n", + " [-0.2584413 -0.20800214 0.94336801]\n", + " [-0.28082013 -0.18861617 0.9410441 ]\n", + " [-0.30309845 -0.16892683 0.93786729]\n", + " [-0.32518435 -0.14900927 0.93383691]\n", + " [-0.29617265 -0.41016161 0.86258288]\n", + " [-0.3232095 -0.3904679 0.86201534]\n", + " [-0.35037233 -0.36972518 0.8605478 ]\n", + " [-0.37747964 -0.34805574 0.8581179 ]\n", + " [-0.40435702 -0.32558332 0.8546876 ]\n", + " [-0.43083657 -0.30243585 0.85024256]\n", + " [-0.27996452 -0.409393 0.86834166]\n", + " [-0.26045433 -0.38748451 0.88431855]\n", + " [-0.24035725 -0.36448241 0.89965602]\n", + " [-0.2197632 -0.34052196 0.91419305]\n", + " [-0.19877174 -0.31573976 0.92779211]\n", + " [-0.17749196 -0.29027671 0.94033826]\n", + " [-0.43376101 -0.28588893 0.85446996]\n", + " [-0.41525829 -0.26189426 0.87118996]\n", + " [-0.39583409 -0.23703878 0.88720234]\n", + " [-0.37557266 -0.2114506 0.90234906]\n", + " [-0.35457015 -0.18526636 0.91649135]\n", + " [-0.33293555 -0.15863219 0.92951049]\n", + " [-0.17934157 -0.27365841 0.94495909]\n", + " [-0.20630737 -0.25182749 0.94552641]\n", + " [-0.23359492 -0.22920516 0.94493302]\n", + " [-0.26102905 -0.20590739 0.94311504]\n", + " [-0.28843648 -0.18205846 0.94003144]\n", + " [-0.31564589 -0.15779154 0.93566527]\n", + " [-0.28669524 -0.41683904 0.86258394]\n", + " [-0.28669524 -0.41683904 0.86258394]\n", + " [-0.32517087 -0.14915275 0.9338187 ]\n", + " [-0.32517087 -0.14915275 0.9338187 ]\n", + " [-0.28945989 -0.40265143 0.86838056]\n", + " [-0.26998458 -0.38057221 0.88446205]\n", + " [-0.24989864 -0.3574143 0.89989204]\n", + " [-0.22929203 -0.33331154 0.91451002]\n", + " [-0.20826456 -0.30839969 0.92817859]\n", + " [-0.18692572 -0.28281944 0.94078262]\n", + " [-0.31655366 -0.38278801 0.86790963]\n", + " [-0.29719582 -0.36025808 0.88424474]\n", + " [-0.27716225 -0.33669037 0.89990037]\n", + " [-0.25654273 -0.31221527 0.91471714]\n", + " [-0.2354374 -0.28696687 0.92855762]\n", + " [-0.21395666 -0.2610859 0.94130585]\n", + " [-0.34378286 -0.36189204 0.86651457]\n", + " [-0.32457167 -0.33895669 0.88304111]\n", + " [-0.30462283 -0.31502317 0.89886892]\n", + " [-0.28402538 -0.29021952 0.91383927]\n", + " [-0.26287927 -0.26467931 0.92781429]\n", + " [-0.24129535 -0.23854406 0.94067704]\n", + " [-0.37096636 -0.34008443 0.8641334 ]\n", + " [-0.351932 -0.31678563 0.88078983]\n", + " [-0.33210126 -0.29252809 0.89673634]\n", + " [-0.31156197 -0.26743879 0.91181447]\n", + " [-0.29041334 -0.24165164 0.92588583]\n", + " [-0.26876618 -0.21530946 0.93883256]\n", + " [-0.39792967 -0.31748811 0.86072834]\n", + " [-0.37910206 -0.2938662 0.8774533 ]\n", + " [-0.35942258 -0.26932596 0.89346457]\n", + " [-0.33897757 -0.24399433 0.90860386]\n", + " [-0.31786512 -0.21800618 0.92273239]\n", + " [-0.29619551 -0.19150584 0.93573166]\n", + " [-0.42450445 -0.29423077 0.85628513]\n", + " [-0.40591218 -0.27032609 0.87301724]\n", + " [-0.38641597 -0.24554522 0.88903894]\n", + " [-0.3661006 -0.22001587 0.90419211]\n", + " [-0.34506273 -0.19387419 0.9183379 ]\n", + " [-0.32341177 -0.1672659 0.93135758]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:fp_optics: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:cartToSphere: vec: [[-9.99931824e-01 2.04282736e-03 1.14966708e-02]\n", + " [-9.99720971e-01 -2.36205176e-02 2.27863786e-04]\n", + " [-9.98697150e-01 -4.97710743e-02 -1.12624799e-02]\n", + " [-9.96820975e-01 -7.63034922e-02 -2.29286199e-02]\n", + " [-9.94063321e-01 -1.03113010e-01 -3.47249321e-02]\n", + " [-9.90405743e-01 -1.30093881e-01 -4.66052222e-02]\n", + " [-9.85841035e-01 -1.57138720e-01 -5.85224444e-02]\n", + " [-9.80373719e-01 -1.84138921e-01 -7.04288882e-02]\n", + " [-9.99931824e-01 2.04282736e-03 1.14966708e-02]\n", + " [-9.99792674e-01 1.36471764e-02 -1.51116816e-02]\n", + " [-9.98816142e-01 2.51132109e-02 -4.16610326e-02]\n", + " [-9.97017959e-01 3.63937268e-02 -6.80491429e-02]\n", + " [-9.94424681e-01 4.74402158e-02 -9.41752604e-02]\n", + " [-9.91073562e-01 5.82024511e-02 -1.19940273e-01]\n", + " [-9.87012482e-01 6.86279986e-02 -1.45246542e-01]\n", + " [-9.82299915e-01 7.86619536e-02 -1.69997571e-01]\n", + " [-9.80373719e-01 -1.84138921e-01 -7.04288882e-02]\n", + " [-9.80222630e-01 -1.71997671e-01 -9.78795048e-02]\n", + " [-9.79192800e-01 -1.59743420e-01 -1.25153905e-01]\n", + " [-9.77300885e-01 -1.47426683e-01 -1.52145831e-01]\n", + " [-9.74574618e-01 -1.35098609e-01 -1.78753125e-01]\n", + " [-9.71052256e-01 -1.22810719e-01 -2.04878118e-01]\n", + " [-9.66782139e-01 -1.10615121e-01 -2.30426973e-01]\n", + " [-9.61822570e-01 -9.85652013e-02 -2.55308136e-01]\n", + " [-9.82299915e-01 7.86619536e-02 -1.69997571e-01]\n", + " [-9.81696531e-01 5.46152630e-02 -1.82452991e-01]\n", + " [-9.80365423e-01 2.99650441e-02 -1.94899293e-01]\n", + " [-9.78268063e-01 4.82102345e-03 -2.07288096e-01]\n", + " [-9.75376648e-01 -2.07092363e-02 -2.19571225e-01]\n", + " [-9.71674181e-01 -4.65199161e-02 -2.31700633e-01]\n", + " [-9.67154550e-01 -7.25064333e-02 -2.43628600e-01]\n", + " [-9.61822570e-01 -9.85652013e-02 -2.55308136e-01]\n", + " [-9.99937870e-01 -9.03972571e-03 6.52229672e-03]\n", + " [-9.99138236e-01 -4.08333856e-02 -7.44444191e-03]\n", + " [-9.97077240e-01 -7.32540917e-02 -2.16982643e-02]\n", + " [-9.93696995e-01 -1.06108837e-01 -3.61551674e-02]\n", + " [-9.88963610e-01 -1.39202870e-01 -5.07300706e-02]\n", + " [-9.82868677e-01 -1.72337936e-01 -6.53360573e-02]\n", + " [-9.99975281e-01 7.02976406e-03 -1.43793427e-04]\n", + " [-9.99240122e-01 2.11655086e-02 -3.27291923e-02]\n", + " [-9.97261532e-01 3.50468911e-02 -6.51241360e-02]\n", + " [-9.94083908e-01 4.85851637e-02 -9.71425030e-02]\n", + " [-9.89775827e-01 6.16878053e-02 -1.28601812e-01]\n", + " [-9.84429838e-01 7.42572559e-02 -1.59322801e-01]\n", + " [-9.80436700e-01 -1.78770263e-01 -8.23715397e-02]\n", + " [-9.79659044e-01 -1.63807829e-01 -1.15910106e-01]\n", + " [-9.77576758e-01 -1.48725941e-01 -1.49078088e-01]\n", + " [-9.74236323e-01 -1.33618529e-01 -1.81685653e-01]\n", + " [-9.69708115e-01 -1.18580455e-01 -2.13552916e-01]\n", + " [-9.64085255e-01 -1.03708133e-01 -2.44508168e-01]\n", + " [-9.82140735e-01 6.82247023e-02 -1.75342425e-01]\n", + " [-9.80917685e-01 3.83317306e-02 -1.90607380e-01]\n", + " [-9.78561988e-01 7.64158242e-03 -2.05810692e-01]\n", + " [-9.75017998e-01 -2.36468299e-02 -2.20863601e-01]\n", + " [-9.70254435e-01 -5.53386386e-02 -2.35677676e-01]\n", + " [-9.64264582e-01 -8.72417200e-02 -2.50165341e-01]\n", + " [-9.99933395e-01 1.99588660e-03 1.13675882e-02]\n", + " [-9.99933395e-01 1.99588660e-03 1.13675882e-02]\n", + " [-9.61860234e-01 -9.85169763e-02 -2.55184827e-01]\n", + " [-9.61860234e-01 -9.85169763e-02 -2.55184827e-01]\n", + " [-9.99979396e-01 -3.98430038e-03 -5.03317276e-03]\n", + " [-9.99235386e-01 1.02284757e-02 -3.77362169e-02]\n", + " [-9.97236450e-01 2.42104826e-02 -7.02375593e-02]\n", + " [-9.94027141e-01 3.78731950e-02 -1.02350693e-01]\n", + " [-9.89676161e-01 5.11245623e-02 -1.33893149e-01]\n", + " [-9.84276117e-01 6.38674951e-02 -1.64685972e-01]\n", + " [-9.99178982e-01 -3.57232355e-02 -1.91105164e-02]\n", + " [-9.98414136e-01 -2.13106266e-02 -5.21063429e-02]\n", + " [-9.96367135e-01 -7.06293019e-03 -8.48684165e-02]\n", + " [-9.93083076e-01 6.93159857e-03 -1.17209031e-01]\n", + " [-9.88631136e-01 2.05820231e-02 -1.48945820e-01]\n", + " [-9.83104105e-01 3.37927720e-02 -1.79900991e-01]\n", + " [-9.97117566e-01 -6.80986362e-02 -3.34534876e-02]\n", + " [-9.96338279e-01 -5.35130985e-02 -6.66812047e-02]\n", + " [-9.94257593e-01 -3.90273326e-02 -9.96428950e-02]\n", + " [-9.90921233e-01 -2.47300222e-02 -1.32149674e-01]\n", + " [-9.86398950e-01 -1.07116912e-02 -1.64019420e-01]\n", + " [-9.80783783e-01 2.93326808e-03 -1.95075800e-01]\n", + " [-9.93737278e-01 -1.00917710e-01 -4.79774723e-02]\n", + " [-9.92950209e-01 -8.61863113e-02 -8.13744604e-02]\n", + " [-9.90850711e-01 -7.14895132e-02 -1.14473217e-01]\n", + " [-9.87485064e-01 -5.69171305e-02 -1.47083951e-01]\n", + " [-9.82923540e-01 -4.25601779e-02 -1.79024985e-01]\n", + " [-9.77259412e-01 -2.85126735e-02 -2.10121560e-01]\n", + " [-9.89004248e-01 -1.33986021e-01 -6.25966774e-02]\n", + " [-9.88216345e-01 -1.19136641e-01 -9.60984687e-02]\n", + " [-9.86113467e-01 -1.04256379e-01 -1.29270409e-01]\n", + " [-9.82742210e-01 -8.94366905e-02 -1.61922285e-01]\n", + " [-9.78173140e-01 -7.47699001e-02 -1.93873077e-01]\n", + " [-9.72499624e-01 -6.03505660e-02 -2.24949530e-01]\n", + " [-9.82910080e-01 -1.67105634e-01 -7.72235784e-02]\n", + " [-9.82128486e-01 -1.52167376e-01 -1.10764282e-01]\n", + " [-9.80038029e-01 -1.37132695e-01 -1.43944729e-01]\n", + " [-9.76685287e-01 -1.22094886e-01 -1.76574881e-01]\n", + " [-9.72140755e-01 -1.07148111e-01 -2.08474543e-01]\n", + " [-9.66497662e-01 -9.23882142e-02 -2.39471682e-01]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:cartToSphere: vec: [[ 0.04060587 0.57754601 -0.81534763]\n", + " [ 0.03546284 0.5549985 -0.83109509]\n", + " [ 0.03018764 0.53155194 -0.84648759]\n", + " [ 0.02479987 0.50727572 -0.86142691]\n", + " [ 0.01931936 0.48224442 -0.87582366]\n", + " [ 0.01376656 0.45653955 -0.88959661]\n", + " [ 0.00816266 0.43025046 -0.90267265]\n", + " [ 0.00252956 0.40347435 -0.91498746]\n", + " [ 0.04060587 0.57754601 -0.81534763]\n", + " [ 0.06906605 0.57224322 -0.81717047]\n", + " [ 0.09736018 0.56639886 -0.81836015]\n", + " [ 0.12537814 0.56004012 -0.81892331]\n", + " [ 0.15301078 0.55319879 -0.81887655]\n", + " [ 0.18014983 0.5459108 -0.81824656]\n", + " [ 0.20668752 0.53821596 -0.81707029]\n", + " [ 0.23251613 0.53015793 -0.81539488]\n", + " [ 0.00252956 0.40347435 -0.91498746]\n", + " [ 0.032007 0.39810344 -0.91678198]\n", + " [ 0.06136101 0.39239001 -0.91774991]\n", + " [ 0.09047627 0.38636163 -0.91789909]\n", + " [ 0.11924099 0.38004981 -0.91724791]\n", + " [ 0.14754741 0.37348961 -0.91582491]\n", + " [ 0.17529111 0.36671957 -0.91366831]\n", + " [ 0.20236934 0.35978192 -0.91082579]\n", + " [ 0.23251613 0.53015793 -0.81539488]\n", + " [ 0.22926297 0.50787317 -0.83036338]\n", + " [ 0.225626 0.48477223 -0.84503775]\n", + " [ 0.2216252 0.46092914 -0.85931752]\n", + " [ 0.21728 0.43642249 -0.87311214]\n", + " [ 0.21260944 0.41133575 -0.88634086]\n", + " [ 0.20763267 0.38575759 -0.89893256]\n", + " [ 0.20236934 0.35978192 -0.91082579]\n", + " [ 0.03847887 0.56781279 -0.82225788]\n", + " [ 0.03208518 0.53956522 -0.84133223]\n", + " [ 0.02551224 0.51003572 -0.85977479]\n", + " [ 0.01879647 0.47935939 -0.87741738]\n", + " [ 0.01197549 0.44768636 -0.89411046]\n", + " [ 0.00508863 0.41518444 -0.90972303]\n", + " [ 0.053011 0.57522655 -0.81627462]\n", + " [ 0.08779516 0.56835996 -0.81808249]\n", + " [ 0.12222039 0.56070651 -0.81894467]\n", + " [ 0.15608534 0.55232284 -0.81888757]\n", + " [ 0.18919065 0.54327506 -0.81796033]\n", + " [ 0.22133793 0.53363806 -0.81623522]\n", + " [ 0.01540879 0.40126859 -0.91583082]\n", + " [ 0.05146791 0.39445225 -0.91747396]\n", + " [ 0.08722668 0.38714821 -0.91788222]\n", + " [ 0.12247777 0.37941283 -0.91708511]\n", + " [ 0.15702272 0.37131069 -0.91513509]\n", + " [ 0.19067007 0.36291423 -0.91210645]\n", + " [ 0.23105878 0.52057455 -0.8219574 ]\n", + " [ 0.22680988 0.4927038 -0.84011919]\n", + " [ 0.22200456 0.46368009 -0.85773816]\n", + " [ 0.21667881 0.43364619 -0.87464351]\n", + " [ 0.21086777 0.4027558 -0.89068656]\n", + " [ 0.20460686 0.37117437 -0.90574037]\n", + " [ 0.04068602 0.57745333 -0.81540928]\n", + " [ 0.04068602 0.57745333 -0.81540928]\n", + " [ 0.20229646 0.35989527 -0.9107972 ]\n", + " [ 0.20229646 0.35989527 -0.9107972 ]\n", + " [ 0.05085287 0.56557849 -0.82312512]\n", + " [ 0.08577851 0.55870022 -0.82492188]\n", + " [ 0.12034868 0.5510496 -0.82574847]\n", + " [ 0.15436184 0.54268367 -0.82563119]\n", + " [ 0.18761891 0.53366893 -0.82461907]\n", + " [ 0.219922 0.52408047 -0.82278428]\n", + " [ 0.04458269 0.53731249 -0.84220405]\n", + " [ 0.0798656 0.53041097 -0.84397019]\n", + " [ 0.11480236 0.52278061 -0.84470163]\n", + " [ 0.14919064 0.51447955 -0.84442462]\n", + " [ 0.18283208 0.50557526 -0.84318805]\n", + " [ 0.21553057 0.49614341 -0.84106378]\n", + " [ 0.03811031 0.50776893 -0.86064994]\n", + " [ 0.07368549 0.50085941 -0.8623864 ]\n", + " [ 0.10892362 0.49326871 -0.86303049]\n", + " [ 0.14362117 0.48505564 -0.86260882]\n", + " [ 0.17758025 0.47628822 -0.86117059]\n", + " [ 0.21060663 0.46704234 -0.85878769]\n", + " [ 0.03147153 0.47708304 -0.87829455]\n", + " [ 0.06727252 0.47018167 -0.88000205]\n", + " [ 0.10274598 0.46265142 -0.88056625]\n", + " [ 0.13768702 0.45455115 -0.88001451]\n", + " [ 0.17189785 0.4459487 -0.87839677]\n", + " [ 0.20518579 0.43691961 -0.87578539]\n", + " [ 0.02470322 0.44540512 -0.89498829]\n", + " [ 0.06066158 0.4385286 -0.89666763]\n", + " [ 0.09630299 0.43108026 -0.89715971]\n", + " [ 0.13142125 0.42311832 -0.8964928 ]\n", + " [ 0.1658184 0.41470963 -0.89471793]\n", + " [ 0.19930272 0.40592876 -0.89190821]\n", + " [ 0.01784399 0.41290306 -0.91060016]\n", + " [ 0.05388943 0.40606813 -0.91225249]\n", + " [ 0.08962991 0.39872286 -0.91268097]\n", + " [ 0.12485831 0.3909242 -0.91191484]\n", + " [ 0.1593763 0.38273737 -0.91000621]\n", + " [ 0.19299249 0.37423544 -0.90702907]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:fp_optics: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:fp_optics: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:cartToSphere: vec: [[0.88248831 0.42724563 0.19666103]\n", + " [0.8689726 0.44972471 0.20648076]\n", + " [0.85448578 0.4722874 0.21633 ]\n", + " [0.83904737 0.4948242 0.2261604 ]\n", + " [0.82268572 0.51723033 0.23592581]\n", + " [0.80543923 0.53940453 0.24558178]\n", + " [0.78735712 0.5612488 0.25508538]\n", + " [0.76849969 0.58266906 0.26439552]\n", + " [0.88248831 0.42724563 0.19666103]\n", + " [0.88231691 0.43885762 0.17006136]\n", + " [0.88135989 0.45014401 0.14344027]\n", + " [0.8796302 0.4610683 0.11690481]\n", + " [0.87714944 0.4716005 0.09056396]\n", + " [0.87394749 0.48171755 0.0645289 ]\n", + " [0.87006227 0.49140347 0.03891377]\n", + " [0.86553956 0.50064939 0.01383658]\n", + " [0.76849969 0.58266906 0.26439552]\n", + " [0.76839058 0.5945516 0.23682127]\n", + " [0.76759087 0.60586359 0.20912573]\n", + " [0.76611366 0.61656801 0.18142146]\n", + " [0.76398079 0.6266359 0.15382068]\n", + " [0.76122231 0.63604629 0.1264346 ]\n", + " [0.75787614 0.64478571 0.09937382]\n", + " [0.75398788 0.65284741 0.07274984]\n", + " [0.86553956 0.50064939 0.01383658]\n", + " [0.85215435 0.5228437 0.02161998]\n", + " [0.83786589 0.54506797 0.02969279]\n", + " [0.82269757 0.56720755 0.03800407]\n", + " [0.80668095 0.58915442 0.04650712]\n", + " [0.78985621 0.61080657 0.05515886]\n", + " [0.77227246 0.63206772 0.06391907]\n", + " [0.75398788 0.65284741 0.07274984]\n", + " [0.87671651 0.43706941 0.20084446]\n", + " [0.85949653 0.46469055 0.21290472]\n", + " [0.8408364 0.49232777 0.22496114]\n", + " [0.82078459 0.51978633 0.23692792]\n", + " [0.79941184 0.54687977 0.24872318]\n", + " [0.77681343 0.57342926 0.26026866]\n", + " [0.88246609 0.43242268 0.18510598]\n", + " [0.88172655 0.44644058 0.15247656]\n", + " [0.87981888 0.45993225 0.11992106]\n", + " [0.87677928 0.47283976 0.08763931]\n", + " [0.87266275 0.48512066 0.05583608]\n", + " [0.86754234 0.49674849 0.02472306]\n", + " [0.76860321 0.58784493 0.2523637 ]\n", + " [0.76800377 0.60202967 0.21847308]\n", + " [0.76637894 0.61531991 0.18451217]\n", + " [0.76376529 0.62765897 0.15068776]\n", + " [0.76021814 0.63900818 0.11720462]\n", + " [0.75581047 0.64934557 0.08426664]\n", + " [0.85983224 0.51028429 0.01727638]\n", + " [0.84281714 0.53752141 0.02701844]\n", + " [0.82446759 0.56468887 0.03714392]\n", + " [0.80483827 0.59158509 0.0475651 ]\n", + " [0.78400318 0.61802223 0.05820257]\n", + " [0.7620565 0.64382544 0.06898329]\n", + " [0.88244452 0.42736244 0.19660369]\n", + " [0.88244452 0.42736244 0.19660369]\n", + " [0.75406569 0.65275085 0.07280974]\n", + " [0.75406569 0.65275085 0.07280974]\n", + " [0.8767387 0.44214761 0.18930067]\n", + " [0.87600232 0.45619873 0.15653324]\n", + " [0.87410008 0.46969713 0.1238291 ]\n", + " [0.87106852 0.48258454 0.09138818]\n", + " [0.86696301 0.49481818 0.05941474]\n", + " [0.86185689 0.50637141 0.02811948]\n", + " [0.85952068 0.46981353 0.20124474]\n", + " [0.85879677 0.48394325 0.16812803]\n", + " [0.85691767 0.49744807 0.13504639]\n", + " [0.8539208 0.51026888 0.10220051]\n", + " [0.84986256 0.5223624 0.06979361]\n", + " [0.84481711 0.53370169 0.03803366]\n", + " [0.84086286 0.49748633 0.2132065 ]\n", + " [0.84015706 0.51167089 0.17980269]\n", + " [0.83831351 0.52516206 0.14640788]\n", + " [0.83537023 0.53790044 0.11322412]\n", + " [0.83138433 0.54984289 0.08045426]\n", + " [0.82643053 0.56096283 0.04830404]\n", + " [0.82081372 0.52497094 0.22510075]\n", + " [0.82013219 0.53918557 0.1914735 ]\n", + " [0.81833762 0.55264188 0.1578306 ]\n", + " [0.81546818 0.56528074 0.12437574]\n", + " [0.81158117 0.57705989 0.09131203]\n", + " [0.80675142 0.58795371 0.05884376]\n", + " [0.79944406 0.5520806 0.23684637]\n", + " [0.79879319 0.56629986 0.20306135]\n", + " [0.79706152 0.57969975 0.16923695]\n", + " [0.79428687 0.59222196 0.13557846]\n", + " [0.79052607 0.60382561 0.10228963]\n", + " [0.78585351 0.61448654 0.06957411]\n", + " [0.77684911 0.57863625 0.24836576]\n", + " [0.77623519 0.59283448 0.21449056]\n", + " [0.77458017 0.6061569 0.18055299]\n", + " [0.77192101 0.61854635 0.14675956]\n", + " [0.7683135 0.62996359 0.11331479]\n", + " [0.76383106 0.6403861 0.08042238]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:fp_optics: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:cartToSphere: vec: [[-0.61667797 -0.6747498 -0.40548857]\n", + " [-0.61460581 -0.66132674 -0.43000772]\n", + " [-0.61199465 -0.64710256 -0.45466562]\n", + " [-0.60882828 -0.632106 -0.47934344]\n", + " [-0.60509662 -0.61637153 -0.50392878]\n", + " [-0.60079605 -0.59994072 -0.52831358]\n", + " [-0.59592995 -0.58286364 -0.5523925 ]\n", + " [-0.59050919 -0.56519946 -0.57606291]\n", + " [-0.61667797 -0.6747498 -0.40548857]\n", + " [-0.63919254 -0.65790025 -0.39824635]\n", + " [-0.6610925 -0.64050595 -0.39077977]\n", + " [-0.68229954 -0.6226413 -0.3831255 ]\n", + " [-0.70274257 -0.60438669 -0.375326 ]\n", + " [-0.72235788 -0.58582819 -0.36742947]\n", + " [-0.74108954 -0.56705729 -0.35948899]\n", + " [-0.75889055 -0.54816997 -0.35156055]\n", + " [-0.59050919 -0.56519946 -0.57606291]\n", + " [-0.61380215 -0.54783918 -0.56843571]\n", + " [-0.63646788 -0.53004222 -0.5603248 ]\n", + " [-0.65842466 -0.51188603 -0.55176957]\n", + " [-0.67960108 -0.49345173 -0.54281466]\n", + " [-0.69993547 -0.4748238 -0.53350979]\n", + " [-0.71937414 -0.45609109 -0.52391007]\n", + " [-0.73786955 -0.43734834 -0.5140768 ]\n", + " [-0.75889055 -0.54816997 -0.35156055]\n", + " [-0.75799678 -0.53395577 -0.37460928]\n", + " [-0.75641928 -0.51913854 -0.39790081]\n", + " [-0.75413879 -0.50375016 -0.42131991]\n", + " [-0.75114411 -0.48782889 -0.44475331]\n", + " [-0.74743124 -0.47141951 -0.46809207]\n", + " [-0.7430031 -0.45457337 -0.49123259]\n", + " [-0.73786955 -0.43734834 -0.5140768 ]\n", + " [-0.61591773 -0.66894059 -0.41612959]\n", + " [-0.61301875 -0.6519466 -0.44628874]\n", + " [-0.60929324 -0.63377738 -0.47653749]\n", + " [-0.6047201 -0.61449396 -0.50666633]\n", + " [-0.59929273 -0.59417304 -0.53647611]\n", + " [-0.59302045 -0.5729106 -0.56577397]\n", + " [-0.62655879 -0.66743009 -0.40244398]\n", + " [-0.65375038 -0.64640329 -0.39341229]\n", + " [-0.67994015 -0.62463155 -0.38407918]\n", + " [-0.70499422 -0.60226039 -0.37452045]\n", + " [-0.72879533 -0.57944827 -0.36482471]\n", + " [-0.75124412 -0.55636553 -0.35509108]\n", + " [-0.60075594 -0.55775011 -0.57271906]\n", + " [-0.62889274 -0.53617007 -0.56304137]\n", + " [-0.65600507 -0.51401051 -0.55267581]\n", + " [-0.68195715 -0.49141929 -0.54170243]\n", + " [-0.70663524 -0.46855208 -0.53021277]\n", + " [-0.72994311 -0.44557483 -0.51831084]\n", + " [-0.75852388 -0.54211325 -0.36160025]\n", + " [-0.75697103 -0.52428337 -0.39002796]\n", + " [-0.75437115 -0.50557851 -0.41870579]\n", + " [-0.75070036 -0.48606646 -0.44742414]\n", + " [-0.74595126 -0.46582965 -0.47598261]\n", + " [-0.74013209 -0.44496535 -0.50419274]\n", + " [-0.61674973 -0.67464868 -0.40554769]\n", + " [-0.61674973 -0.67464868 -0.40554769]\n", + " [-0.7378267 -0.43747182 -0.51403324]\n", + " [-0.7378267 -0.43747182 -0.51403324]\n", + " [-0.62576508 -0.66169431 -0.41301175]\n", + " [-0.65306132 -0.64059234 -0.40392125]\n", + " [-0.67934982 -0.61875062 -0.39450158]\n", + " [-0.70449659 -0.596315 -0.38482851]\n", + " [-0.72838419 -0.57344413 -0.37499108]\n", + " [-0.75091252 -0.55030868 -0.36509006]\n", + " [-0.62296242 -0.64463108 -0.44313496]\n", + " [-0.65052274 -0.62334437 -0.43389164]\n", + " [-0.67706138 -0.60133613 -0.42424372]\n", + " [-0.70244418 -0.57875332 -0.41426653]\n", + " [-0.72655409 -0.55575491 -0.40404905]\n", + " [-0.7492903 -0.5325118 -0.39369433]\n", + " [-0.61931523 -0.62640628 -0.47335379]\n", + " [-0.64709161 -0.6049771 -0.46397754]\n", + " [-0.67383653 -0.58284998 -0.45412579]\n", + " [-0.6994157 -0.56017307 -0.44387363]\n", + " [-0.72371319 -0.53710534 -0.43330945]\n", + " [-0.74662906 -0.5138171 -0.42253643]\n", + " [-0.61480203 -0.60708131 -0.50345878]\n", + " [-0.64274572 -0.58555323 -0.49396898]\n", + " [-0.66965293 -0.56335639 -0.4839365 ]\n", + " [-0.69538908 -0.54063976 -0.47343709]\n", + " [-0.71983945 -0.5175619 -0.46255902]\n", + " [-0.74290569 -0.49429196 -0.45140513]\n", + " [-0.60941556 -0.5867334 -0.53325097]\n", + " [-0.63747644 -0.56515169 -0.52366723]\n", + " [-0.66450148 -0.54293586 -0.51347681]\n", + " [-0.69035567 -0.52023501 -0.50275699]\n", + " [-0.71492512 -0.49720672 -0.49159694]\n", + " [-0.73811292 -0.47401871 -0.48009956]\n", + " [-0.60316445 -0.56545902 -0.56253777]\n", + " [-0.63129076 -0.54387026 -0.55288074]\n", + " [-0.65838843 -0.52168697 -0.54255634]\n", + " [-0.68432185 -0.49905748 -0.5316439 ]\n", + " [-0.70897738 -0.47613799 -0.52023427]\n", + " [-0.73225879 -0.45309484 -0.50843105]]\n", + "DEBUG:root:cartToSphere: vec: [[-0.22918597 -0.16221422 0.95977098]\n", + " [-0.2106226 -0.18317548 0.9602525 ]\n", + " [-0.19151801 -0.20440644 0.95996815]\n", + " [-0.17193921 -0.2258144 0.95887682]\n", + " [-0.15195563 -0.24730823 0.9569473 ]\n", + " [-0.13164007 -0.26879749 0.95415869]\n", + " [-0.11106886 -0.29019252 0.95050093]\n", + " [-0.09032143 -0.31140505 0.94597512]\n", + " [-0.22918597 -0.16221422 0.95977098]\n", + " [-0.2498128 -0.18077657 0.95126936]\n", + " [-0.27009828 -0.19920185 0.94200082]\n", + " [-0.28996424 -0.21742235 0.93201302]\n", + " [-0.30933445 -0.23537413 0.92136378]\n", + " [-0.32813419 -0.25299737 0.91012103]\n", + " [-0.34628923 -0.27023649 0.89836296]\n", + " [-0.36372457 -0.28703989 0.88617861]\n", + " [-0.09032143 -0.31140505 0.94597512]\n", + " [-0.11176056 -0.33048885 0.93716951]\n", + " [-0.13302841 -0.34921629 0.92755131]\n", + " [-0.15404256 -0.36751781 0.9171704 ]\n", + " [-0.1747237 -0.38532926 0.90608663]\n", + " [-0.19499612 -0.40259228 0.89436904]\n", + " [-0.2147876 -0.41925406 0.88209542]\n", + " [-0.2340286 -0.43526666 0.86935237]\n", + " [-0.36372457 -0.28703989 0.88617861]\n", + " [-0.34698672 -0.30829661 0.8857502 ]\n", + " [-0.32953174 -0.32968337 0.88471335]\n", + " [-0.31143209 -0.35110272 0.88302714]\n", + " [-0.29275925 -0.37246062 0.88066174]\n", + " [-0.27358516 -0.39366582 0.87759807]\n", + " [-0.25398316 -0.41462972 0.87382764]\n", + " [-0.2340286 -0.43526666 0.86935237]\n", + " [-0.22123436 -0.17137809 0.96004422]\n", + " [-0.19811145 -0.19726204 0.96012475]\n", + " [-0.17424185 -0.22345863 0.95901304]\n", + " [-0.14975231 -0.24979949 0.95664751]\n", + " [-0.12477687 -0.27611816 0.95298977]\n", + " [-0.09945735 -0.30225009 0.94802591]\n", + " [-0.23815404 -0.17039121 0.95616394]\n", + " [-0.26321556 -0.19305833 0.94522275]\n", + " [-0.28768654 -0.21545172 0.93317576]\n", + " [-0.31142587 -0.23745208 0.92012523]\n", + " [-0.33429586 -0.2589493 0.90619619]\n", + " [-0.35615961 -0.27984272 0.89153709]\n", + " [-0.09975578 -0.31969269 0.94225547]\n", + " [-0.12592674 -0.34285126 0.9309111 ]\n", + " [-0.1517581 -0.36540502 0.9183946 ]\n", + " [-0.17710251 -0.38723361 0.90481204]\n", + " [-0.20182057 -0.40822953 0.89029046]\n", + " [-0.22578055 -0.42829765 0.87497672]\n", + " [-0.35646086 -0.29622895 0.88610612]\n", + " [-0.335454 -0.32238152 0.88517838]\n", + " [-0.31344226 -0.34863225 0.88329469]\n", + " [-0.29055758 -0.37480666 0.88039551]\n", + " [-0.26693247 -0.40073674 0.87644573]\n", + " [-0.24270281 -0.42626056 0.87143404]\n", + " [-0.22919452 -0.16234897 0.95974616]\n", + " [-0.22919452 -0.16234897 0.95974616]\n", + " [-0.23403257 -0.43514314 0.86941314]\n", + " [-0.23403257 -0.43514314 0.86941314]\n", + " [-0.23023042 -0.17945034 0.95644735]\n", + " [-0.25540506 -0.20218779 0.94545669]\n", + " [-0.28000314 -0.22462937 0.93334875]\n", + " [-0.30388363 -0.24665532 0.920226 ]\n", + " [-0.32690953 -0.2681553 0.90621349]\n", + " [-0.34894528 -0.28902862 0.89145928]\n", + " [-0.20719988 -0.20540938 0.95649109]\n", + " [-0.23266399 -0.22831868 0.9453772 ]\n", + " [-0.25759155 -0.25087052 0.93311873]\n", + " [-0.28184118 -0.2729441 0.91981904]\n", + " [-0.30527711 -0.29442864 0.90560348]\n", + " [-0.32776686 -0.31522369 0.8906194 ]\n", + " [-0.18340595 -0.23166606 0.95534972]\n", + " [-0.20911338 -0.25470563 0.94413804]\n", + " [-0.23432576 -0.27732765 0.93176221]\n", + " [-0.25890061 -0.29941066 0.91832659]\n", + " [-0.28270232 -0.32084395 0.90395717]\n", + " [-0.30560027 -0.34152779 0.88880102]\n", + " [-0.1589749 -0.25805157 0.95296189]\n", + " [-0.18487849 -0.28117851 0.9416786 ]\n", + " [-0.21033066 -0.3038294 0.92921941]\n", + " [-0.23518747 -0.32588259 0.91568957]\n", + " [-0.25931261 -0.34722789 0.90121571]\n", + " [-0.28257612 -0.36776672 0.8859449 ]\n", + " [-0.13404025 -0.28439902 0.94928942]\n", + " [-0.16009141 -0.30756944 0.9379615 ]\n", + " [-0.18573716 -0.33020731 0.92545385]\n", + " [-0.21083201 -0.35219122 0.91187236]\n", + " [-0.23523845 -0.37341195 0.89734408]\n", + " [-0.25882619 -0.39377234 0.88201607]\n", + " [-0.10874341 -0.31054353 0.94431858]\n", + " [-0.13489211 -0.33371304 0.93297359]\n", + " [-0.16068369 -0.35629605 0.92045308]\n", + " [-0.18597123 -0.37817186 0.90686314]\n", + " [-0.21061583 -0.39923247 0.89233088]\n", + " [-0.2344862 -0.41938227 0.87700327]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:cartToSphere: vec: [[-0.55575819 -0.49665907 0.66668028]\n", + " [-0.57699299 -0.49663941 0.64840449]\n", + " [-0.59818256 -0.49621841 0.62924154]\n", + " [-0.61921734 -0.49537596 0.60923932]\n", + " [-0.63999382 -0.49409706 0.58845222]\n", + " [-0.66041341 -0.492372 0.56694263]\n", + " [-0.68038232 -0.4901967 0.54478169]\n", + " [-0.69981226 -0.48757293 0.52204927]\n", + " [-0.55575819 -0.49665907 0.66668028]\n", + " [-0.56496361 -0.47125766 0.67729782]\n", + " [-0.57374141 -0.44554238 0.68725016]\n", + " [-0.58206614 -0.41961926 0.69650462]\n", + " [-0.58992011 -0.39359887 0.70503489]\n", + " [-0.59729373 -0.3675964 0.71282052]\n", + " [-0.60418573 -0.34173209 0.71984636]\n", + " [-0.61060323 -0.31613207 0.72610207]\n", + " [-0.69981226 -0.48757293 0.52204927]\n", + " [-0.70921428 -0.46129473 0.53312502]\n", + " [-0.71795118 -0.43468694 0.54368499]\n", + " [-0.72599749 -0.40786068 0.55369424]\n", + " [-0.73333682 -0.38092944 0.56312509]\n", + " [-0.73996169 -0.35400826 0.57195703]\n", + " [-0.74587301 -0.32721398 0.58017623]\n", + " [-0.75107947 -0.30066661 0.58777481]\n", + " [-0.61060323 -0.31613207 0.72610207]\n", + " [-0.63140739 -0.31439135 0.7088602 ]\n", + " [-0.65214386 -0.31251753 0.69068168]\n", + " [-0.67269835 -0.31049055 0.67161935]\n", + " [-0.69296455 -0.30829676 0.65173095]\n", + " [-0.71284353 -0.3059286 0.63107986]\n", + " [-0.73224341 -0.30338415 0.60973572]\n", + " [-0.75107947 -0.30066661 0.58777481]\n", + " [-0.56504719 -0.49661179 0.65886144]\n", + " [-0.59105666 -0.49631975 0.63586062]\n", + " [-0.61688854 -0.4954045 0.61157413]\n", + " [-0.64234982 -0.4938363 0.58609932]\n", + " [-0.66725901 -0.49159734 0.55955113]\n", + " [-0.69144564 -0.48868253 0.5320642 ]\n", + " [-0.5598951 -0.48562939 0.67132822]\n", + " [-0.57089349 -0.45427224 0.68389865]\n", + " [-0.58122324 -0.42254847 0.6954368 ]\n", + " [-0.59084856 -0.39065977 0.70589158]\n", + " [-0.59975181 -0.35881823 0.71522532]\n", + " [-0.60793413 -0.32724762 0.72341211]\n", + " [-0.70392592 -0.47617277 0.52701782]\n", + " [-0.71500554 -0.44373077 0.54025002]\n", + " [-0.72505995 -0.41090378 0.55267184]\n", + " [-0.7340552 -0.37789981 0.5642293 ]\n", + " [-0.74197745 -0.3449307 0.57488458]\n", + " [-0.74883163 -0.31221273 0.58461475]\n", + " [-0.61965373 -0.3154753 0.71868254]\n", + " [-0.64512153 -0.31325632 0.69691369]\n", + " [-0.67037316 -0.31081656 0.67378994]\n", + " [-0.69520965 -0.30812822 0.64941554]\n", + " [-0.7194488 -0.30517736 0.6239072 ]\n", + " [-0.74292445 -0.30196258 0.5973959 ]\n", + " [-0.55586292 -0.49657345 0.66665675]\n", + " [-0.55586292 -0.49657345 0.66665675]\n", + " [-0.75099949 -0.30076641 0.58782594]\n", + " [-0.75099949 -0.30076641 0.58782594]\n", + " [-0.56909341 -0.48562453 0.66355219]\n", + " [-0.5801137 -0.45414127 0.67618326]\n", + " [-0.59043865 -0.42228642 0.68779094]\n", + " [-0.60003215 -0.39026196 0.69832444]\n", + " [-0.60887625 -0.35827974 0.70774666]\n", + " [-0.61697188 -0.32656281 0.71603242]\n", + " [-0.59513788 -0.4852238 0.64060033]\n", + " [-0.60620888 -0.45342408 0.65338917]\n", + " [-0.61651235 -0.42124181 0.66518258]\n", + " [-0.62601154 -0.38888018 0.67593029]\n", + " [-0.63468808 -0.35655062 0.68559659]\n", + " [-0.64254248 -0.32447418 0.69415825]\n", + " [-0.62099747 -0.48422046 0.61635435]\n", + " [-0.63210164 -0.45216542 0.6292805 ]\n", + " [-0.64237081 -0.41972117 0.64124402]\n", + " [-0.65176813 -0.38709244 0.65219456]\n", + " [-0.66027546 -0.35449067 0.66209718]\n", + " [-0.66789354 -0.32213511 0.67093009]\n", + " [-0.64647897 -0.48258539 0.59091139]\n", + " [-0.65759796 -0.45033783 0.60395427]\n", + " [-0.66781906 -0.41769831 0.6160729 ]\n", + " [-0.6771059 -0.38487309 0.62721632]\n", + " [-0.68544118 -0.3520738 0.63734953]\n", + " [-0.69282655 -0.31951836 0.64645138]\n", + " [-0.67140062 -0.48030149 0.56438611]\n", + " [-0.6825156 -0.44792622 0.57752451]\n", + " [-0.69267476 -0.41515977 0.58978305]\n", + " [-0.70184258 -0.38220958 0.60110967]\n", + " [-0.71000313 -0.34928748 0.61146857]\n", + " [-0.71715938 -0.31661046 0.62083834]\n", + " [-0.69559179 -0.47736428 0.53691284]\n", + " [-0.70668392 -0.44492779 0.55012462]\n", + " [-0.71676785 -0.41210416 0.56250689]\n", + " [-0.72580921 -0.37910138 0.57400621]\n", + " [-0.73379362 -0.34613132 0.58458535]\n", + " [-0.74072551 -0.31341039 0.59422188]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:fp_optics: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:fp_optics: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:fp_optics: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:cartToSphere: vec: [[ 3.02116128e-02 -8.15163531e-01 5.78442457e-01]\n", + " [ 2.40233567e-02 -8.30227713e-01 5.56906477e-01]\n", + " [ 1.75462133e-02 -8.44961915e-01 5.34538578e-01]\n", + " [ 1.08145605e-02 -8.59272024e-01 5.11404570e-01]\n", + " [ 3.86445750e-03 -8.73070904e-01 4.87577955e-01]\n", + " [-3.26860240e-03 -8.86279830e-01 4.63138618e-01]\n", + " [-1.05506908e-02 -8.98829085e-01 4.38172294e-01]\n", + " [-1.79496836e-02 -9.10658258e-01 4.1277DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "0331e-01]\n", + " [ 3.02116128e-02 -8.15163531e-01 5.78442457e-01]\n", + " [ 4.73600642e-03 -8.10420642e-01 5.85829286e-01]\n", + " [-2.13304686e-02 -8.05051127e-01 5.92821806e-01]\n", + " [-4.78785177e-02 -7.99036611e-01 5.99373124e-01]\n", + " [-7.47956951e-02 -7.92366920e-01 6.05442209e-01]\n", + " [-1.01969387e-01 -7.85040973e-01 6.10993384e-01]\n", + " [-1.29288052e-01 -7.77067214e-01 6.15996059e-01]\n", + " [-1.56641632e-01 -7.68463715e-01 6.20424789e-01]\n", + " [-1.79496836e-02 -9.10658258e-01 4.12770331e-01]\n", + " [-4.49005864e-02 -9.06875108e-01 4.19000567e-01]\n", + " [-7.23697115e-02 -9.02286783e-01 4.25019041e-01]\n", + " [-1.00242370e-01 -8.96871136e-01 4.30782582e-01]\n", + " [-1.28406974e-01 -8.90615038e-01 4.36252798e-01]\n", + " [-1.56752706e-01 -8.83514854e-01 4.41395618e-01]\n", + " [-1.85167333e-01 -8.75577248e-01 4.46181064e-01]\n", + " [-2.13536502e-01 -8.66819894e-01 4.50583436e-01]\n", + " [-1.56641632e-01 -7.68463715e-01 6.20424789e-01]\n", + " [-1.64DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "857030e-01 -7.83932170e-01 5.98558696e-01]\n", + " [-1.73108469e-01 -7.99073077e-01 5.75773979e-01]\n", + " [-1.81354578e-01 -8.13790776e-01 5.52136840e-01]\n", + " [-1.89556627e-01 -8.27998881e-01 5.27717858e-01]\n", + " [-1.97677789e-01 -8.41619079e-01 5.02594089e-01]\n", + " [-2.05682532e-01 -8.54580468e-01 4.76851046e-01]\n", + " [-2.13536502e-01 -8.66819894e-01 4.50583436e-01]\n", + " [ 2.74645755e-02 -8.21750988e-01 5.69184514e-01]\n", + " [ 1.96805597e-02 -8.40004617e-01 5.42222205e-01]\n", + " [ 1.14966006e-02 -8.57668399e-01 5.14074650e-01]\n", + " [ 2.97856420e-03 -8.74578897e-01 4.84874087e-01]\n", + " [-5.80831253e-03 -8.90591244e-01 4.54767523e-01]\n", + " [-1.48023212e-02 -9.05580944e-01 4.23915139e-01]\n", + " [ 1.91623941e-02 -8.13223408e-01 5.81636048e-01]\n", + " [-1.24727042e-02 -8.06992443e-01 5.90430037e-01]\n", + " [-4.48872572e-02 -7.99800990e-01 5.98584589e-01]\n", + " [-7.78753163e-02 -7.91626844e-01 6.06021761e-01]\n", + " [-1.11229692e-01 -7.82468059e-01 6.12675846e-01]\n", + " [-1.44745647e-01 -7.72344183e-01 6.18492652e-01]\n", + " [-2.96035708e-02 -9.09066676e-01 4.15597652e-01]\n", + " [-6.29975338e-02 -9.03891430e-01 4.23097616e-01]\n", + " [-9.70555796e-02 -8.97483860e-01 4.30235906e-01]\n", + " [-1.31571045e-01 -8.89816053e-01 4.36939872e-01]\n", + " [-1.66339657e-01 -8.80881417e-01 4.43146756e-01]\n", + " [-2.01153873e-01 -8.70696778e-01 4.48803119e-01]\n", + " [-1.60122519e-01 -7.75272323e-01 6.10993948e-01]\n", + " [-1.70219996e-01 -7.94023059e-01 5.83568792e-01]\n", + " [-1.80330364e-01 -8.12185635e-01 5.54829212e-01]\n", + " [-1.90381249e-01 -8.29597211e-01 5.24903274e-01]\n", + " [-2.00304788e-01 -8.46113533e-01 4.93933073e-01]\n", + " [-2.10036048e-01 -8.61607239e-01 4.62079890e-01]\n", + " [ 3.01049819e-02 -8.15200321e-01 5.78396168e-01]\n", + " [ 3.01049819e-02 -8.15200321e-01 5.78396168e-01]\n", + " [-2.13413135e-01 -8.66810649e-01 4.50659664e-01]\n", + " [-2.13413135e-01 -8.66810649e-01 4.50659664e-01]\n", + " [ 1.64598789e-02 -8.19806498e-01 5.72404035e-01]\n", + " [-1.53493603e-02 -8.13652908e-01 5.81148296e-01]\n", + " [-4.79320456e-02 -8.06516118e-01 5.89265875e-01]\n", + " [-8.10801301e-02 -7.98373008e-01 5.96679606e-01]\n", + " [-1.14585784e-01 -7.89221317e-01 6.03323969e-01]\n", + " [-1.48244024e-01 -7.79080608e-01 6.09144577e-01]\n", + " [ 8.51343012e-03 -8.38149226e-01 5.45374548e-01]\n", + " [-2.37464339e-02 -8.32208115e-01 5.53954656e-01]\n", + " [-5.67592628e-02 -8.25222292e-01 5.61948889e-01]\n", + " [-9.03140530e-02 -8.17167072e-01 5.69281431e-01]\n", + " [-1.24202850e-01 -8.08039742e-01 5.75886645e-01]\n", + " [-1.58220519e-01 -7.97860091e-01 5.81709157e-01]\n", + " [ 1.90076357e-04 -8.55896538e-01 5.17147058e-01]\n", + " [-3.24513488e-02 -8.50155297e-01 5.25531046e-01]\n", + " [-6.58233229e-02 -8.43313778e-01 5.33375255e-01]\n", + " [-9.97150069e-02 -8.35346491e-01 5.40604437e-01]\n", + " [-1.33919687e-01 -8.26250340e-01 5.47152532e-01]\n", + " [-1.68232175e-01 -8.16045141e-01 5.52963167e-01]\n", + " [-8.44225441e-03 -8.72884103e-01 4.87854560e-01]\n", + " [-4.13930101e-02 -8.67328884e-01 4.96011316e-01]\n", + " [-7.50525434e-02 -8.60625059e-01 5.03678095e-01]\n", + " [-1.09211622e-01 -8.52746456e-01 DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "5.10780092e-01]\n", + " [-1.43664980e-01 -8.43689222e-01 5.17251264e-01]\n", + " [-1.78207013e-01 -8.33472695e-01 5.23034921e-01]\n", + " [-1.73176898e-02 -8.88966699e-01 4.57644300e-01]\n", + " [-5.05053429e-02 -8.83583211e-01 4.65542608e-01]\n", + " [-8.43816619e-02 -8.77010449e-01 4.73003602e-01]\n", + " [-1.18739088e-01 -8.69221467e-01 4.79953197e-01]\n", + " [-1.53373305e-01 -8.60211269e-01 4.86326230e-01]\n", + " [-1.88077930e-01 -8.49998241e-01 4.92066746e-01]\n", + " [-2.63745017e-02 -9.04019573e-01 4.26676689e-01]\n", + " [-5.97272629e-02 -8.98792797e-01 4.34285807e-01]\n", + " [-9.37502657e-02 -8.92343638e-01 4.41512988e-01]\n", + " [-1.28236816e-01 -8.84644396e-01 4.48285190e-01]\n", + " [-1.62982769e-01 -8.75688854e-01 4.54538940e-01]\n", + " [-1.97780858e-01 -8.65494232e-01 4.60220020e-01]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:fp_optics: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 1IOPub data rate exceeded.\n", + "The notebook server will temporarily stop sending output\n", + "to the client in order to avoid crashing it.\n", + "To change this limit, set the config variable\n", + "`--NotebookApp.iopub_data_rate_limit`.\n", + "\n", + "Current values:\n", + "NotebookApp.iopub_data_rate_limit=1000000.0 (bytes/sec)\n", + "NotebookApp.rate_limit_window=3.0 (secs)\n", + "\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:cartToSphere: vec: [[-0.39691828 0.79551123 0.45784032]\n", + " [-0.39556935 0.78168065 0.48218281]\n", + " [-0.39387293 0.76694332 0.50661825]\n", + " [-0.39181868 0.75132485 0.53102646]\n", + " [-0.38940019 0.73485772 0.55529418]\n", + " [-0.3866152 0.7175828 0.57931305]\n", + " [-0.38346597 0.69955083 0.60297801]\n", + " [-0.37995953 0.68082313 0.62618737]\n", + " [-0.39691828 0.79551123 0.45784032]\n", + " [-0.42337023 0.78449555 0.45312733]\n", + " [-0.44937839 0.77280902 0.44813533]\n", + " [-0.4748459 0.76050518 0.4428919 ]\n", + " [-0.49968088 0.74764498 0.43743113]\n", + " [-0.52379665 0.73429661 0.43179342]\n", + " [-0.54711231 0.72053521 0.4260248 ]\n", + " [-0.56955425 0.70644243 0.42017501]\n", + " [-0.37995953 0.68082313 0.62618737]\n", + " [-0.40732285 0.66949804 0.62117668]\n", + " [-0.4342312 0.65760733 0.6156264 ]\n", + " [-0.46058343 0.64520668 0.60956644]\n", + " [-0.48628696 0.63235765 0.603033 ]\n", + " [-0.5112573 0.61912732 0.59606823]\n", + " [-0.53541615 0.60558881 0.58872043]\n", + " [-0.55868908 0.59182233 0.58104461]\n", + " [-0.56955425 0.70644243 0.42017501]\n", + " [-0.5696794 0.69213673 0.44318409]\n", + " [-0.56926013 0.67708166 0.46637252]\n", + " [-0.56828206 0.66130512 0.48962336]\n", + " [-0.56673691 0.64484305 0.51282231]\n", + " [-0.56462139 0.62773933 0.53586007]\n", + " [-0.5619368 0.61004584 0.55863325]\n", + " [-0.55868908 0.59182233 0.58104461]\n", + " [-0.3964635 0.78955729 0.46841859]\n", + " [-0.39457897 0.77199348 0.49833072]\n", + " [-0.39216162 0.75309247 0.52826224]\n", + " [-0.38919802 0.73291121 0.55800185]\n", + " [-0.38568405 0.7115251 0.58734985]\n", + " [-0.38162582 0.68903196 0.61611418]\n", + " [-0.40849592 0.79074808 0.45590411]\n", + " [-0.44063043 0.77678939 0.44993675]\n", + " [-0.47200151 0.76187545 0.4435768 ]\n", + " [-0.50243794 0.74611543 0.43688429]\n", + " [-0.53178022 0.7296348 0.42993355]\n", + " [-0.55988229 0.71257469 0.422811 ]\n", + " [-0.39195175 0.67602333 0.62399221]\n", + " [-0.42519538 0.66175615 0.61748496]\n", + " [-0.45765419 0.6466939 0.6101964 ]\n", + " [-0.48915414 0.63094751 0.60219056]\n", + " [-0.51953946 0.61464055 0.59354507]\n", + " [-0.54866768 0.59791052 0.5843516 ]\n", + " [-0.56959907 0.7003474 0.43019811]\n", + " [-0.5693878 0.68230742 0.45853475]\n", + " [-0.56834386 0.66316851 0.48702442]\n", + " [-0.56644954 0.64299352 0.51545538]\n", + " [-0.56369876 0.62186325 0.54362653]\n", + " [-0.56009583 0.59987647 0.57135005]\n", + " [-0.39700535 0.79542903 0.45790764]\n", + " [-0.39700535 0.79542903 0.45790764]\n", + " [-0.55862314 0.59193285 0.58099543]\n", + " [-0.55862314 0.59193285 0.58099543]\n", + " [-0.40799901 0.78485856 0.46640523]\n", + " [-0.44025828 0.77085203 0.46039091]\n", + " [-0.47175002 0.75589425 0.45395573]\n", + " [-0.50230279 0.74009467 0.44715968]\n", + " [-0.53175685 0.72357892 0.44007749]\n", + " [-0.55996518 0.70648823 0.43279715]\n", + " [-0.40622749 0.76725045 0.49629223]\n", + " [-0.4388009 0.75312807 0.49015496]\n", + " [-0.47059668 0.7380698 0.48352015]\n", + " [-0.50144305 0.72218613 0.47644734]\n", + " [-0.53118054 0.70560308 0.46901122]\n", + " [-0.55966118 0.68846194 0.46130198]\n", + " [-0.40390193 0.74831414 0.52620261]\n", + " [-0.43673111 0.7341055 0.51995678]\n", + " [-0.4687749 0.71898247 0.5131416 ]\n", + " [-0.49986111 0.70305667 0.50581636]\n", + " [-0.52983143 0.68645439 0.49805525]\n", + " [-0.55853883 0.66931654 0.48994871]\n", + " [-0.40100843 0.72810681 0.55592509]\n", + " [-0.43403409 0.71384262 0.5495845 ]\n", + " [-0.46626948 0.69869202 0.54260688]\n", + " [-0.49754189 0.6827674 0.5350521 ]\n", + " [-0.52769429 0.6661949 0.5269944 ]\n", + " [-0.55658148 0.64911468 0.51852404]\n", + " [-0.39754212 0.70670426 0.58526007]\n", + " [-0.43070319 0.69241653 0.57883859]\n", + " [-0.46307301 0.677277 0.57171606]\n", + " [-0.49447823 0.66139803 0.56395383]\n", + " [-0.52476278 0.64490504 0.55562713]\n", + " [-0.5537832 0.62793711 0.54682644]\n", + " [-0.39350829 0.68420461 0.6140157 ]\n", + " [-0.42674172 0.66992625 0.60752805]\n", + " [-0.45918773 0.65483699 0.60027923]\n", + " [-0.49067241 0.63904828 0.59233257]\n", + " [-0.52104004 0.62268425 0.58376502]\n", + " [-0.5501481 0.60588276 0.57466786]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:fp_optics: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:cartToSphere: vec: [[-0.19615975 -0.44892472 0.87177288]\n", + " [-0.22195603 -0.4547115 0.86253868]\n", + " [-0.24808743 -0.4602472 0.8524231 ]\n", + " [-0.27444 -0.46548968 0.84142857]\n", + " [-0.30090165 -0.47040142 0.82956657]\n", + " [-0.32736115 -0.47494948 0.81685842]\n", + " [-0.35370815 -0.47910567 0.80333573]\n", + " [-0.379834 -0.48284695 0.78904053]\n", + " [-0.19615975 -0.44892472 0.87177288]\n", + " [-0.20566522 -0.42356663 0.88220923]\n", + " [-0.21505916 -0.39795643 0.89184093]\n", + " [-0.22430992 -0.37219988 0.90063994]\n", + " [-0.23339004 -0.34640714 0.90858747]\n", + " [-0.24227669 -0.32069288 0.91567357]\n", + " [-0.25095208 -0.2951771 0.9218967 ]\n", + " [-0.2594038 -0.26998637 0.92726319]\n", + " [-0.379834 -0.48284695 0.78904053]\n", + " [-0.38952157 -0.45657883 0.79988044]\n", + " [-0.39883061 -0.42998636 0.80996659]\n", + " [-0.40772943 -0.40318019 0.81926946]\n", + " [-0.41619165 -0.37627393 0.82776956]\n", + " [-0.42419623 -0.34938323 0.83545731]\n", + " [-0.43172732 -0.32262557 0.84233263]\n", + " [-0.43877379 -0.2961211 0.8484043 ]\n", + " [-0.2594038 -0.26998637 0.92726319]\n", + " [-0.28476086 -0.27385688 0.91864773]\n", + " [-0.31040004 -0.27774428 0.90912591]\n", + " [-0.33620116 -0.2816045 0.89870333]\n", + " [-0.36204892 -0.28540052 0.88739344]\n", + " [-0.38783182 -0.28910149 0.87521815]\n", + " [-0.41344169 -0.2926819 0.86220837]\n", + " [-0.43877379 -0.2961211 0.8484043 ]\n", + " [-0.20739117 -0.45138923 0.86789208]\n", + " [-0.23924733 -0.45831738 0.85598242]\n", + " [-0.27149328 -0.46482616 0.84275028]\n", + " [-0.30392197 -0.47084461 0.82821301]\n", + " [-0.33632864 -0.4763121 0.81240989]\n", + " [-0.36851081 -0.48117888 0.79540346]\n", + " [-0.20040333 -0.43792589 0.87639 ]\n", + " [-0.21198261 -0.40666336 0.88864407]\n", + " [-0.22336229 -0.37512669 0.89966063]\n", + " [-0.23449005 -0.34351686 0.90940122]\n", + " [-0.24532388 -0.31204508 0.91784752]\n", + " [-0.25583328 -0.2809349 0.92499995]\n", + " [-0.38401329 -0.47142871 0.79390728]\n", + " [-0.39563621 -0.43900271 0.80668991]\n", + " [-0.4066587 -0.40619911 0.81830983]\n", + " [-0.41702994 -0.37322591 0.82872701]\n", + " [-0.42671119 -0.34029597 0.83792375]\n", + " [-0.43567525 -0.30762661 0.84590363]\n", + " [-0.27038875 -0.27175467 0.92360128]\n", + " [-0.30167248 -0.27651702 0.91243195]\n", + " [-0.33325997 -0.28125991 0.89990591]\n", + " [-0.364937 -0.28591232 0.88604465]\n", + " [-0.39649825 -0.29041735 0.87088857]\n", + " [-0.42774601 -0.29473009 0.85449841]\n", + " [-0.19627992 -0.44885871 0.87177982]\n", + " [-0.19627992 -0.44885871 0.87177982]\n", + " [-0.43866449 -0.29619967 0.84843339]\n", + " [-0.43866449 -0.29619967 0.84843339]\n", + " [-0.21152878 -0.44041269 0.87252062]\n", + " [-0.2231304 -0.40901932 0.88482542]\n", + " [-0.23450564 -0.37734196 0.8958907 ]\n", + " [-0.24560177 -0.3455818 0.90567819]\n", + " [-0.25637633 -0.3139497 0.91416999]\n", + " [-0.26679832 -0.28266807 0.92136715]\n", + " [-0.24342015 -0.44723074 0.86065748]\n", + " [-0.25507172 -0.41550746 0.87309333]\n", + " [-0.26642268 -0.38347517 0.88428827]\n", + " [-0.27741954 -0.35133623 0.89420426]\n", + " [-0.28801907 -0.31930103 0.90282438]\n", + " [-0.29818938 -0.28758942 0.91015132]\n", + " [-0.27569367 -0.45365013 0.84746361]\n", + " [-0.28737467 -0.42165805 0.86001179]\n", + " [-0.29868272 -0.38933573 0.87132446]\n", + " [-0.30956418 -0.35688715 0.88136348]\n", + " [-0.3199759 -0.32452299 0.89011249]\n", + " [-0.32988603 -0.29246146 0.89757534]\n", + " [-0.30814207 -0.45960048 0.8329561 ]\n", + " [-0.3198312 -0.42740232 0.84559758]\n", + " [-0.33107677 -0.39485607 0.85701625]\n", + " [-0.34182556 -0.36216736 0.86717362]\n", + " [-0.35203524 -0.3295476 0.87605341]\n", + " [-0.36167481 -0.29721418 0.88366004]\n", + " [-0.34056038 -0.4650218 0.81717401]\n", + " [-0.35223596 -0.43268206 0.82988919]\n", + " [-0.36339945 -0.39997957 0.84140191]\n", + " [-0.37399847 -0.36712133 0.8516731 ]\n", + " [-0.38399201 -0.33431951 0.86068612]\n", + " [-0.39335053 -0.30179127 0.86844538]\n", + " [-0.37274597 -0.46986483 0.80017966]\n", + " [-0.38438639 -0.43744954 0.81294834]\n", + " [-0.39544886 -0.40465997 0.8245426 ]\n", + " [-0.40588211 -0.37170396 0.83492268]\n", + " [-0.4156468 -0.33879427 0.84407119]\n", + " [-0.42471511 -0.30614812 0.85199202]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:cartToSphere: vec: [[-0.36449218 -0.10140822 -0.92566831]\n", + " [-0.35028342 -0.07850744 -0.9333478 ]\n", + " [-0.33550901 -0.05508935 -0.94042483]\n", + " [-0.32021254 -0.03124379 -0.94683037]\n", + " [-0.30444144 -0.00706183 -0.95250488]\n", + " [-0.28824779 0.01736321 -0.95739842]\n", + " [-0.2716885 0.0419357 -0.96147114]\n", + " [-0.25482506 0.06655832 -0.96469383]\n", + " [-0.36449218 -0.10140822 -0.92566831]\n", + " [-0.38707481 -0.08478805 -0.91814164]\n", + " [-0.40921138 -0.06806934 -0.90989703]\n", + " [-0.43081856 -0.05131615 -0.90097837]\n", + " [-0.45181685 -0.03459159 -0.89143982]\n", + " [-0.47213015 -0.01795732 -0.88134594]\n", + " [-0.49168487 -0.00147347 -0.87077196]\n", + " [-0.51040871 0.01480134 -0.85980455]\n", + " [-0.25482506 0.06655832 -0.96469383]\n", + " [-0.27825312 0.08362261 -0.95686073]\n", + " [-0.30135563 0.10055915 -0.94819441]\n", + " [-0.32404504 0.11730228 -0.93874117]\n", + " [-0.34623895 0.13378874 -0.92855757]\n", + " [-0.36786064 0.1499581 -0.91770971]\n", + " [-0.38883885 0.16575278 -0.90627279]\n", + " [-0.40910686 0.18111738 -0.89433108]\n", + " [-0.51040871 0.01480134 -0.85980455]\n", + " [-0.49792291 0.03791372 -0.86639213]\n", + " [-0.48469245 0.06139969 -0.87252697]\n", + " [-0.47076525 0.08516405 -0.87813847]\n", + " [-0.45619027 0.10911236 -0.88316755]\n", + " [-0.44101871 0.1331503 -0.88756605]\n", + " [-0.42530488 0.15718342 -0.89129632]\n", + " [-0.40910686 0.18111738 -0.89433108]\n", + " [-0.35844752 -0.09143594 -0.92906127]\n", + " [-0.34064829 -0.06300895 -0.93807708]\n", + " [-0.32204223 -0.03389427 -0.94611838]\n", + " [-0.302715 -0.00425896 -0.95307161]\n", + " [-0.2827625 0.02572518 -0.95884492]\n", + " [-0.26229142 0.05588136 -0.96336934]\n", + " [-0.37434038 -0.09410046 -0.92250441]\n", + " [-0.40172929 -0.0736559 -0.91279153]\n", + " [-0.42836502 -0.05312724 -0.90204263]\n", + " [-0.45409962 -0.03263104 -0.89035316]\n", + " [-0.4787929 -0.01228087 -0.87784198]\n", + " [-0.50231 0.00781326 -0.86465231]\n", + " [-0.26513211 0.07392566 -0.961374 ]\n", + " [-0.29363774 0.09476225 -0.95120818]\n", + " [-0.32156674 0.11534163 -0.9398357 ]\n", + " [-0.34876525 0.13554631 -0.92735646]\n", + " [-0.375092 0.15526508 -0.91389209]\n", + " [-0.40041775 0.17439284 -0.89958477]\n", + " [-0.50499649 0.02477121 -0.86276586]\n", + " [-0.48918582 0.05336149 -0.87054568]\n", + " [-0.47230431 0.08241829 -0.87757385]\n", + " [-0.4544416 0.11176749 -0.88373687]\n", + " [-0.43569202 0.14123543 -0.88894601]\n", + " [-0.41615713 0.17064824 -0.89313629]\n", + " [-0.36452249 -0.1012743 -0.92567104]\n", + " [-0.36452249 -0.1012743 -0.92567104]\n", + " [-0.40909498 0.18098406 -0.8943635 ]\n", + " [-0.40909498 0.18098406 -0.8943635 ]\n", + " [-0.3683047 -0.08423556 -0.92588121]\n", + " [-0.39581069 -0.06372955 -0.91611814]\n", + " [-0.42257172 -0.0431602 -0.90530124]\n", + " [-0.44843987 -0.02264457 -0.89352611]\n", + " [-0.47327555 -0.00229656 -0.88091145]\n", + " [-0.49694515 0.01777369 -0.86759992]\n", + " [-0.35060463 -0.05574231 -0.93486319]\n", + " [-0.37840893 -0.0350877 -0.92497326]\n", + " [-0.40549284 -0.01442874 -0.91398434]\n", + " [-0.43170796 0.00611634 -0.9019927 ]\n", + " [-0.45691581 0.026433 -0.88911711]\n", + " [-0.4809857 0.046411 -0.87549916]\n", + " [-0.33207945 -0.02657484 -0.94287699]\n", + " [-0.36013225 -0.00581039 -0.93288316]\n", + " [-0.38749187 0.01489885 -0.92175272]\n", + " [-0.41400882 0.03543393 -0.90958295]\n", + " [-0.43954483 0.05568021 -0.8964932 ]\n", + " [-0.46397106 0.07552793 -0.88262471]\n", + " [-0.31281433 0.00309936 -0.94980924]\n", + " [-0.34106465 0.02393365 -0.93973511]\n", + " [-0.36865231 0.04465253 -0.92849428]\n", + " [-0.39542643 0.06513688 -0.91618509]\n", + " [-0.42124824 0.08527254 -0.90292775]\n", + " [-0.44598968 0.10495077 -0.88886362]\n", + " [-0.29290459 0.03310811 -0.95556829]\n", + " [-0.32129995 0.05397133 -0.94543822]\n", + " [-0.3490668 0.07465864 -0.93411908]\n", + " [-0.37605284 0.09505129 -0.9217101 ]\n", + " [-0.40211834 0.11503611 -0.90833228]\n", + " [-0.42713516 0.13450581 -0.89412736]\n", + " [-0.27245647 0.06327434 -0.96008532]\n", + " [-0.30094299 0.08412516 -0.94992435]\n", + " [-0.32883875 0.10473984 -0.93855988]\n", + " [-0.35599023 0.1250005 -0.9260917 ]\n", + " [-0.38225656 0.14479534 -0.91264135]\n", + " [-0.40750888 0.16401871 -0.89835092]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:fp_optics: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:fp_optics: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:cartToSphere: vec: [[-0.3569052 -0.68247931 0.63784063]\n", + " [-0.35033721 -0.66621565 0.65834683]\n", + " [-0.34322572 -0.6491781 0.67879592]\n", + " [-0.33560162 -0.63140538 0.69906995]\n", + " [-0.32749577 -0.61294314 0.71905996]\n", + " [-0.31893941 -0.5938444 0.73866534]\n", + " [-0.30996491 -0.5741697 0.75779345]\n", + " [-0.30060631 -0.55398707 0.77635956]\n", + " [-0.3569052 -0.68247931 0.63784063]\n", + " [-0.33322868 -0.69527597 0.63682806]\n", + " [-0.30874105 -0.70774164 0.63543744]\n", + " [-0.28354037 -0.71980043 0.63363412]\n", + " [-0.25772473 -0.7313831 0.63139269]\n", + " [-0.2313931 -0.7424268 0.62869681]\n", + " [-0.20464614 -0.75287518 0.62553891]\n", + " [-0.17758662 -0.76267866 0.62191982]\n", + " [-0.30060631 -0.55398707 0.77635956]\n", + " [-0.27552331 -0.56623173 0.77683237]\n", + " [-0.2497047 -0.57826964 0.77669285]\n", + " [-0.22324167 -0.59002736 0.77590648]\n", + " [-0.19622763 -0.60143741 0.77444674]\n", + " [-0.16876011 -0.61243764 0.77229538]\n", + " [-0.14094164 -0.62297126 0.76944282]\n", + " [-0.1128796 -0.6329873 0.76588855]\n", + " [-0.17758662 -0.76267866 0.62191982]\n", + " [-0.16912503 -0.74669617 0.64330518]\n", + " [-0.160353 -0.72979431 0.6645955 ]\n", + " [-0.15129851 -0.71200745 0.68567787]\n", + " [-0.14199104 -0.69337758 0.70644609]\n", + " [-0.13246223 -0.67395557 0.72679959]\n", + " [-0.12274621 -0.65380203 0.74664334]\n", + " [-0.1128796 -0.6329873 0.76588855]\n", + " [-0.35403041 -0.67552989 0.64677805]\n", + " [-0.34561001 -0.65507212 0.67188856]\n", + " [-0.33640413 -0.63348951 0.69679502]\n", + " [-0.32646955 -0.61086321 0.72129312]\n", + " [-0.31586389 -0.58729084 0.74519761]\n", + " [-0.3046474 -0.56288697 0.76834121]\n", + " [-0.3466662 -0.68804002 0.63751351]\n", + " [-0.31708904 -0.70351105 0.63602416]\n", + " [-0.28639106 -0.71840884 0.6339313 ]\n", + " [-0.2547528 -0.73260314 0.63118432]\n", + " [-0.22235653 -0.74597828 0.62775312]\n", + " [-0.18938844 -0.7584333 0.62362725]\n", + " [-0.28979905 -0.5594163 0.77657576]\n", + " [-0.25855149 -0.57429463 0.77674758]\n", + " [-0.22628943 -0.58878862 0.7759646 ]\n", + " [-0.1931838 -0.60277159 0.77417467]\n", + " [-0.15941425 -0.61612915 0.77134426]\n", + " [-0.12517159 -0.62875911 0.76745948]\n", + " [-0.17403058 -0.75579271 0.63126122]\n", + " [-0.16344873 -0.73558199 0.65742197]\n", + " [-0.15242809 -0.71402381 0.68332692]\n", + " [-0.14102227 -0.6911922 0.70877787]\n", + " [-0.12928954 -0.66718094 0.73358967]\n", + " [-0.11729378 -0.64210568 0.7575899 ]\n", + " [-0.35680423 -0.68246928 0.63790785]\n", + " [-0.35680423 -0.68246928 0.63790785]\n", + " [-0.11300981 -0.6330262 0.7658372 ]\n", + " [-0.11300981 -0.6330262 0.7658372 ]\n", + " [-0.34383408 -0.6811027 0.64643425]\n", + " [-0.31409681 -0.6965843 0.64506861]\n", + " [-0.28324545 -0.7114997 0.64307091]\n", + " [-0.25145954 -0.72571866 0.64039092]\n", + " [-0.21892072 -0.73912522 0.63699892]\n", + " [-0.1858151 -0.75161802 0.63288474]\n", + " [-0.33526359 -0.66063832 0.67168098]\n", + " [-0.30511531 -0.67611686 0.67064942]\n", + " [-0.27387148 -0.69105279 0.6689099 ]\n", + " [-0.24170868 -0.70531587 0.66641312]\n", + " [-0.20880696 -0.71878946 0.66312997]\n", + " [-0.17535264 -0.73137103 0.65905074]\n", + " [-0.32592941 -0.63903036 0.69671387]\n", + " [-0.29543145 -0.65445611 0.69599387]\n", + " [-0.2638557 -0.66936789 0.69449751]\n", + " [-0.23137612 -0.68363572 0.69217577]\n", + " [-0.19817174 -0.69714257 0.68899942]\n", + " [-0.16442965 -0.70978498 0.68495852]\n", + " [-0.3158875 -0.6163597 0.7213292 ]\n", + " [-0.28509889 -0.63168188 0.72089987]\n", + " [-0.25325012 -0.64652353 0.71963304]\n", + " [-0.22051319 -0.66075523 0.71747924]\n", + " [-0.18706678 -0.67426007 0.71440841]\n", + " [-0.15309912 -0.68693423 0.71040975]\n", + " [-0.30519474 -0.59272388 0.74534192]\n", + " [-0.27417281 -0.60789142 0.74518272]\n", + " [-0.24210906 -0.62261636 0.74413176]\n", + " [-0.20917443 -0.63677028 0.74213858]\n", + " [-0.17554779 -0.65023696 0.73917174]\n", + " [-0.14141859 -0.66291287 0.73521923]\n", + " [-0.29391097 -0.56823773 0.76858456]\n", + " [-0.26271229 -0.58320021 0.76867403]\n", + " [-0.23049163 -0.59776239 0.76782403]\n", + " [-0.19741979 -0.61179711 0.76598285]\n", + " [-0.16367616 -0.62518942 0.76311749]\n", + " [-0.12945128 -0.6378367 0.75921453]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:fp_optics: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:cartToSphere: vec: [[-0.59854921 0.62067242 0.50646282]\n", + " [-0.61932087 0.60419138 0.5013925 ]\n", + " [-0.6400908 0.58699197 0.49570575]\n", + " [-0.66073861 0.5691151 0.48942057]\n", + " [-0.6811535 0.55060823 0.4825562 ]\n", + " [-0.70123321 0.53152576 0.47513404]\n", + " [-0.72088336 0.51192919 0.46717843]\n", + " [-0.74001736 0.49188699 0.45871723]\n", + " [-0.59854921 0.62067242 0.50646282]\n", + " [-0.601378 0.63553658 0.48418774]\n", + " [-0.60394225 0.65016015 0.4610266 ]\n", + " [-0.60619045 0.66446036 0.43706473]\n", + " [-0.60808095 0.67836061 0.4123887 ]\n", + " [-0.60958134 0.69179021 0.38708771]\n", + " [-0.61066777 0.70468436 0.36125452]\n", + " [-0.61132455 0.71698449 0.33498588]\n", + " [-0.74001736 0.49188699 0.45871723]\n", + " [-0.74450543 0.50625498 0.43522127]\n", + " [-0.7484899 0.52050996 0.41089201]\n", + " [-0.75192105 0.53457208 0.3858075 ]\n", + " [-0.75475682 0.54836659 0.3600503 ]\n", + " [-0.75696295 0.56182335 0.33370888]\n", + " [-0.75851324 0.57487697 0.30687804]\n", + " [-0.75938999 0.58746738 0.27965858]\n", + " [-0.61132455 0.71698449 0.33498588]\n", + " [-0.63325314 0.70090721 0.32820654]\n", + " [-0.65510431 0.6839469 0.32102178]\n", + " [-0.67676329 0.66614027 0.31344633]\n", + " [-0.69812145 0.64753164 0.30549829]\n", + " [-0.71907572 0.62817393 0.29719963]\n", + " [-0.73952878 0.60812899 0.28857638]\n", + " [-0.75938999 0.58746738 0.27965858]\n", + " [-0.60760834 0.6136285 0.50425408]\n", + " [-0.63308199 0.59294139 0.49762205]\n", + " [-0.65843221 0.57121506 0.49008201]\n", + " [-0.68345111 0.54853413 0.48166886]\n", + " [-0.70795035 0.52499876 0.47242206]\n", + " [-0.73175942 0.50072509 0.46238786]\n", + " [-0.59988274 0.6271222 0.49684851]\n", + " [-0.60318008 0.6451889 0.46894038]\n", + " [-0.60602754 0.66281131 0.43978607]\n", + " [-0.60834442 0.67984592 0.40954437]\n", + " [-0.61007095 0.69616256 0.3783796 ]\n", + " [-0.61116664 0.71164451 0.34646418]\n", + " [-0.74196786 0.49822951 0.44861013]\n", + " [-0.74713579 0.515774 0.41924371]\n", + " [-0.75149716 0.53306866 0.38870273]\n", + " [-0.75497139 0.54997382 0.35713723]\n", + " [-0.75749541 0.56636035 0.3247101 ]\n", + " [-0.75902452 0.58211008 0.29159842]\n", + " [-0.62088584 0.71004425 0.33217155]\n", + " [-0.64772425 0.68974143 0.32358934]\n", + " [-0.67433159 0.66814805 0.3144123 ]\n", + " [-0.70050542 0.64534249 0.30467232]\n", + " [-0.72605599 0.62142219 0.29440986]\n", + " [-0.75080687 0.59650467 0.2836745 ]\n", + " [-0.59863016 0.62066847 0.50637198]\n", + " [-0.59863016 0.62066847 0.50637198]\n", + " [-0.75932134 0.5874968 0.27978317]\n", + " [-0.75932134 0.5874968 0.27978317]\n", + " [-0.60891973 0.62008711 0.49468044]\n", + " [-0.61236337 0.63817269 0.46663338]\n", + " [-0.61532789 0.65582169 0.43734368]\n", + " [-0.6177334 0.67289061 0.40696887]\n", + " [-0.61952065 0.68924905 0.3756726 ]\n", + " [-0.62064938 0.70477986 0.34362727]\n", + " [-0.63455005 0.59940036 0.4879195 ]\n", + " [-0.63838413 0.61750354 0.45951614]\n", + " [-0.64166206 0.6351953 0.42987991]\n", + " [-0.64430565 0.65233229 0.39916514]\n", + " [-0.6462564 0.66878348 0.36753411]\n", + " [-0.64747416 0.6844306 0.33515961]\n", + " [-0.66004328 0.57765419 0.4802692 ]\n", + " [-0.66423506 0.59572087 0.45156222]\n", + " [-0.66780174 0.61340604 0.42163237]\n", + " [-0.67066578 0.6305667 0.39063159]\n", + " [-0.67276841 0.64707148 0.35872156]\n", + " [-0.67406891 0.66280128 0.32607601]\n", + " [-0.68519249 0.55493297 0.47176335]\n", + " [-0.68971141 0.57290821 0.44280283]\n", + " [-0.69354358 0.59053634 0.41263074]\n", + " [-0.6966111 0.60767498 0.38139754]\n", + " [-0.69885423 0.62419289 0.34926493]\n", + " [-0.70023119 0.63997062 0.31640777]\n", + " [-0.70980966 0.53133691 0.46244064]\n", + " [-0.71462558 0.54916568 0.43327513]\n", + " [-0.71869967 0.56668596 0.40291166]\n", + " [-0.72195305 0.58375637 0.37150005]\n", + " [-0.72432462 0.60024626 0.33920241]\n", + " [-0.72577132 0.61603635 0.30619471]\n", + " [-0.73372412 0.50698242 0.45234694]\n", + " [-0.73880592 0.52461046 0.42302444]\n", + " [-0.743097 0.54197267 0.39252067]\n", + " [-0.7465172 0.55892891 0.36098551]\n", + " [-0.74900397 0.5753496 0.32858164]\n", + " [-0.750513 0.59111617 0.2954859 ]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:fp_optics: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:cartToSphere: vec: [[ 0.20414122 0.56799555 -0.79731262]\n", + " [ 0.1777027 0.57183804 -0.80088889]\n", + " [ 0.15056963 0.57520558 -0.80403192]\n", + " [ 0.12285184 0.57807167 -0.80668493]\n", + " [ 0.09465933 0.58041373 -0.80880128]\n", + " [ 0.06610254 0.58221315 -0.81034455]\n", + " [ 0.0372927 0.58345555 -0.8112884 ]\n", + " [ 0.00834194 0.58413118 -0.8116164 ]\n", + " [ 0.20414122 0.56799555 -0.79731262]\n", + " [ 0.20572096 0.54571994 -0.81232298]\n", + " [ 0.20702859 0.52256717 -0.82708084]\n", + " [ 0.20806462 0.49861242 -0.84148367]\n", + " [ 0.20882912 0.47393536 -0.85543888]\n", + " [ 0.20932165 0.44862038 -0.86886374]\n", + " [ 0.20954163 0.42275696 -0.88168524]\n", + " [ 0.20948876 0.39643982 -0.89383999]\n", + " [ 0.00834194 0.58413118 -0.8116164 ]\n", + " [ 0.00812714 0.56126479 -0.82759639]\n", + " [ 0.00789744 0.53747883 -0.84324026]\n", + " [ 0.00765378 0.51284382 -0.85844781]\n", + " [ 0.00739704 0.48743528 -0.87312779]\n", + " [ 0.0071281 0.46133548 -0.88719714]\n", + " [ 0.00684787 0.43463455 -0.90058087]\n", + " [ 0.00655735 0.40743058 -0.91321264]\n", + " [ 0.20948876 0.39643982 -0.89383999]\n", + " [ 0.18205198 0.39895146 -0.89871843]\n", + " [ 0.1539194 0.40118588 -0.90297215]\n", + " [ 0.12519559 0.4031171 -0.90654435]\n", + " [ 0.09598647 0.4047231 -0.9093876 ]\n", + " [ 0.06640104 0.40598583 -0.91146388]\n", + " [ 0.0365524 0.40689144 -0.91274491]\n", + " [ 0.00655735 0.40743058 -0.91321264]\n", + " [ 0.19271181 0.56965258 -0.79897315]\n", + " [ 0.15982666 0.57404549 -0.8030736 ]\n", + " [ 0.12600736 0.57769834 -0.80646561]\n", + " [ 0.09145634 0.58056795 -0.80905908]\n", + " [ 0.05637697 0.58262009 -0.81078695]\n", + " [ 0.02097439 0.58383017 -0.81160483]\n", + " [ 0.20477399 0.55840946 -0.80389458]\n", + " [ 0.20652604 0.53050857 -0.82213603]\n", + " [ 0.20787008 0.50136431 -0.83989515]\n", + " [ 0.20880644 0.47112145 -0.85699735]\n", + " [ 0.20933437 0.4399354 -0.87329031]\n", + " [ 0.20945287 0.40797309 -0.8886436 ]\n", + " [ 0.0083497 0.57427744 -0.81861816]\n", + " [ 0.0080773 0.54562527 -0.83799034]\n", + " [ 0.00778328 0.51566148 -0.85675706]\n", + " [ 0.00746928 0.48452295 -0.87474666]\n", + " [ 0.00713691 0.45236125 -0.89180624]\n", + " [ 0.00678787 0.41934565 -0.90780127]\n", + " [ 0.19761915 0.39765817 -0.89599925]\n", + " [ 0.16351154 0.40055439 -0.90156539]\n", + " [ 0.12846269 0.40300779 -0.90613579]\n", + " [ 0.09266688 0.40497618 -0.90961923]\n", + " [ 0.05632496 0.40642638 -0.91194578]\n", + " [ 0.01964668 0.40733472 -0.91306759]\n", + " [ 0.20405798 0.56793487 -0.79737715]\n", + " [ 0.20405798 0.56793487 -0.79737715]\n", + " [ 0.00666105 0.40752313 -0.91317059]\n", + " [ 0.00666105 0.40752313 -0.91317059]\n", + " [ 0.19337832 0.56009712 -0.80554084]\n", + " [ 0.19500658 0.53210634 -0.8239146 ]\n", + " [ 0.19625127 0.50286498 -0.8417911 ]\n", + " [ 0.19711248 0.4725174 -0.85899591]\n", + " [ 0.19758903 0.44121875 -0.87537683]\n", + " [ 0.19767951 0.40913603 -0.8908033 ]\n", + " [ 0.16035289 0.56441546 -0.80976672]\n", + " [ 0.16163062 0.53620167 -0.82847047]\n", + " [ 0.16259399 0.50671891 -0.84663991]\n", + " [ 0.16324223 0.47610997 -0.86410142]\n", + " [ 0.16357308 0.44452909 -0.88070298]\n", + " [ 0.16358419 0.41214369 -0.89631344]\n", + " [ 0.1263931 0.56800941 -0.81325894]\n", + " [ 0.1273194 0.53961931 -0.83222639]\n", + " [ 0.12799991 0.50994473 -0.85063059]\n", + " [ 0.12843327 0.4791266 -0.86829868]\n", + " [ 0.12861672 0.44731823 -0.88507861]\n", + " [ 0.12854763 0.41468758 -0.90083834]\n", + " [ 0.09170094 0.57083559 -0.81592749]\n", + " [ 0.09227324 0.54231511 -0.83509279]\n", + " [ 0.0926674 0.51249772 -0.85367373]\n", + " [ 0.09288215 0.48152254 -0.87149811]\n", + " [ 0.09291513 0.44954212 -0.88841357]\n", + " [ 0.09276422 0.41672495 -0.90428707]\n", + " [ 0.05647953 0.57285935 -0.81770546]\n", + " [ 0.05669448 0.54425333 -0.83700302]\n", + " [ 0.05679813 0.51434144 -0.85570255]\n", + " [ 0.05679009 0.48326144 -0.87363223]\n", + " [ 0.05666926 0.45116528 -0.89063937]\n", + " [ 0.05643483 0.41822194 -0.90659005]\n", + " [ 0.02093421 0.57405572 -0.81854858]\n", + " [ 0.02078916 0.54540796 -0.83791287]\n", + " [ 0.02059914 0.51544933 -0.85667243]\n", + " [ 0.02036521 0.48431682 -0.87465563]\n", + " [ 0.02008819 0.45216207 -0.89170955]\n", + " [ 0.0197691 0.41915429 -0.90769977]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:fp_optics: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:cartToSphere: vec: [[-8.56167996e-01 -8.13404923e-02 5.10254923e-01]\n", + " [-8.69709840e-01 -6.98189436e-02 4.88600153e-01]\n", + " [-8.82818158e-01 -5.80124033e-02 4.66118719e-01]\n", + " [-8.95401589e-01 -4.59656480e-02 4.42880518e-01]\n", + " [-9.07378855e-01 -3.37232540e-02 4.18958655e-01]\n", + " [-9.18677736e-01 -2.13306485e-02 3.94431516e-01]\n", + " [-9.29234573e-01 -8.83500477e-03 3.69384694e-01]\n", + " [-9.38994658e-01 3.71455027e-03 3.43911666e-01]\n", + " [-8.56167996e-01 -8.13404923e-02 5.10254923e-01]\n", + " [-8.51575181e-01 -5.49064386e-02 5.21349206e-01]\n", + " [-8.46331880e-01 -2.84713265e-02 5.31894475e-01]\n", + " [-8.40470364e-01 -2.13797431e-03 5.41853297e-01]\n", + " [-8.34032996e-01 2.39914376e-02 5.51192682e-01]\n", + " [-8.27072040e-01 4.98156465e-02 5.59884132e-01]\n", + " [-8.19649026e-01 7.52347550e-02 5.67904223e-01]\n", + " [-8.11833149e-01 1.00151438e-01 5.75236149e-01]\n", + " [-9.38994658e-01 3.71455027e-03 3.43911666e-01]\n", + " [-9.34160223e-01 3.09959661e-02 3.55505173e-01]\n", + " [-9.28504053e-01 5.81604640e-02 3.66739122e-01]\n", + " [-9.22060658e-01 8.51010440e-02 3.77573775e-01]\n", + " [-9.14874356e-01 1.11715041e-01 3.87975079e-01]\n", + " [-9.06998750e-01 1.37903894e-01 3.97914292e-01]\n", + " [-8.98496798e-01 1.63571339e-01 4.07367058e-01]\n", + " [-8.89441411e-01 1.88621080e-01 4.16312460e-01]\n", + " [-8.11833149e-01 1.00151438e-01 5.75236149e-01]\n", + " [-8.24274377e-01 1.12874845e-01 5.54825217e-01]\n", + " [-8.36397335e-01 1.25650752e-01 5.33527306e-01]\n", + " [-8.48113946e-01 1.38430404e-01 5.11409579e-01]\n", + " [-8.59343436e-01 1.51165511e-01 4.88546668e-01]\n", + " [-8.70014113e-01 1.63807860e-01 4.65018739e-01]\n", + " [-8.80064070e-01 1.76309140e-01 4.40910785e-01]\n", + " [-8.89441411e-01 1.88621080e-01 4.16312460e-01]\n", + " [-8.62104670e-01 -7.62643581e-02 5.00958367e-01]\n", + " [-8.78421968e-01 -6.19453019e-02 4.73854013e-01]\n", + " [-8.93996191e-01 -4.72428916e-02 4.45577065e-01]\n", + " [-9.08673564e-01 -3.22392464e-02 4.16260717e-01]\n", + " [-9.22321075e-01 -1.70181104e-02 3.86049503e-01]\n", + " [-9.34825199e-01 -1.66717010e-03 3.55104306e-01]\n", + " [-8.54294002e-01 -6.97826535e-02 5.15084594e-01]\n", + " [-8.48223755e-01 -3.73704528e-02 5.28318001e-01]\n", + " [-8.41207240e-01 -5.05897448e-03 5.40689176e-01]\n", + " [-8.33318254e-01 2.69633872e-02 5.52135548e-01]\n", + " [-8.24652951e-01 5.85102558e-02 5.62604711e-01]\n", + " [-8.15327923e-01 8.93986807e-02 5.72056163e-01]\n", + " [-9.36957687e-01 1.55737735e-02 3.49095618e-01]\n", + " [-9.30476254e-01 4.89449616e-02 3.63067944e-01]\n", + " [-9.22793785e-01 8.20338742e-02 3.76459924e-01]\n", + " [-9.13987833e-01 1.14649643e-01 3.89206501e-01]\n", + " [-9.04157084e-01 1.46610600e-01 4.01254656e-01]\n", + " [-8.93421542e-01 1.77739590e-01 4.12561008e-01]\n", + " [-8.17318572e-01 1.05604866e-01 5.66425603e-01]\n", + " [-8.32364968e-01 1.21239771e-01 5.40804473e-01]\n", + " [-8.46845012e-01 1.36905182e-01 5.13916818e-01]\n", + " [-8.60606814e-01 1.52512026e-01 4.85897102e-01]\n", + " [-8.73518463e-01 1.67971527e-01 4.56892833e-01]\n", + " [-8.85470142e-01 1.83194744e-01 4.27062422e-01]\n", + " [-8.56200361e-01 -8.12113507e-02 5.10221186e-01]\n", + " [-8.56200361e-01 -8.12113507e-02 5.10221186e-01]\n", + " [-8.89442357e-01 1.88494855e-01 4.16367606e-01]\n", + " [-8.89442357e-01 1.88494855e-01 4.16367606e-01]\n", + " [-8.60189317e-01 -6.47915742e-02 5.05842259e-01]\n", + " [-8.54078132e-01 -3.22613712e-02 5.19143283e-01]\n", + " [-8.46997879e-01 1.57473530e-04 5.31596245e-01]\n", + " [-8.39022439e-01 3.22762229e-02 5.43138649e-01]\n", + " [-8.30248347e-01 6.39082894e-02 5.53717809e-01]\n", + " [-8.20793443e-01 9.48701464e-02 5.63291913e-01]\n", + " [-8.76483826e-01 -5.03619255e-02 4.78789911e-01]\n", + " [-8.70267794e-01 -1.75381482e-02 4.92266574e-01]\n", + " [-8.63023306e-01 1.51435543e-02 5.04937072e-01]\n", + " [-8.54824287e-01 4.74934614e-02 5.16739595e-01]\n", + " [-8.45767538e-01 7.93249645e-02 5.27621854e-01]\n", + " [-8.35972663e-01 1.10454120e-01 5.37540319e-01]\n", + " [-8.92039234e-01 -3.55701999e-02 4.50556064e-01]\n", + " [-8.85734581e-01 -2.51359457e-03 4.64185236e-01]\n", + " [-8.78349690e-01 3.03692114e-02 4.77052967e-01]\n", + " [-8.69958757e-01 6.28875277e-02 4.89098068e-01]\n", + " [-8.60658488e-01 9.48553863e-02 5.00269349e-01]\n", + " [-8.50568727e-01 1.26089842e-01 5.10523449e-01]\n", + " [-9.06701808e-01 -2.04990025e-02 4.21273809e-01]\n", + " [-9.00324627e-01 1.27281689e-02 4.35032826e-01]\n", + " [-8.92822692e-01 4.57489635e-02 4.48078869e-01]\n", + " [-8.84270965e-01 7.83719615e-02 4.60350622e-01]\n", + " [-8.74766351e-01 1.10412307e-01 4.71797577e-01]\n", + " [-8.64428493e-01 1.41688886e-01 4.82377073e-01]\n", + " [-9.20338667e-01 -5.23287390e-03 3.91087400e-01]\n", + " [-9.13905426e-01 2.81004529e-02 4.04953377e-01]\n", + " [-9.06310032e-01 6.11945934e-02 4.18159477e-01]\n", + " [-8.97628573e-01 9.38579138e-02 4.30643282e-01]\n", + " [-8.87958586e-01 1.25906941e-01 4.42353922e-01]\n", + " [-8.77419667e-01 1.57162583e-01 4.53248994e-01]\n", + " [-9.32836464e-01 1.01396892e-02 3.60157351e-01]\n", + " [-9.26364433e-01 4.35128516e-02 3.74106360e-01]\n", + " [-9.18700163e-01 7.66147212e-02 3.87453475e-01]\n", + " [-9.09920877e-01 1.09254117e-01 4.00134397e-01]\n", + " [-9.00124966e-01 1.41248948e-01 4.12096809e-01]\n", + " [-8.89432287e-01 1.72421705e-01 4.23297724e-01]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:cartToSphere: vec: [[-0.25703185 -0.26218632 0.93015749]\n", + " [-0.23256472 -0.25453988 0.93868157]\n", + " [-0.20736445 -0.24668712 0.94664959]\n", + " [-0.18153456 -0.23863709 0.95399033]\n", + " [-0.15517859 -0.23040364 0.96064237]\n", + " [-0.12840043 -0.22200544 0.96655414]\n", + " [-0.10130471 -0.21346586 0.97168394]\n", + " [-0.07399705 -0.20481255 0.97600013]\n", + " [-0.25703185 -0.26218632 0.93015749]\n", + " [-0.25009453 -0.28760018 0.92452088]\n", + " [-0.24267823 -0.31331545 0.91811802]\n", + " [-0.23481829 -0.33921135 0.91093141]\n", + " [-0.22654966 -0.36517118 0.90295363]\n", + " [-0.21790694 -0.39108204 0.89418756]\n", + " [-0.20892488 -0.41683461 0.88464643]\n", + " [-0.19963882 -0.44232311 0.87435382]\n", + " [-0.07399705 -0.20481255 0.97600013]\n", + " [-0.0650737 -0.23074361 0.97083613]\n", + " [-0.05591315 -0.25701972 0.96478733]\n", + " [-0.04654956 -0.28352485 0.95783443]\n", + " [-0.03701739 -0.31014614 0.94996794]\n", + " [-0.02735207 -0.33677215 0.94118881]\n", + " [-0.01759034 -0.36329221 0.93150918]\n", + " [-0.00777023 -0.38959669 0.92095279]\n", + " [-0.19963882 -0.44232311 0.87435382]\n", + " [-0.17368295 -0.43613896 0.88295925]\n", + " [-0.1470742 -0.42948544 0.89101708]\n", + " [-0.11991128 -0.42236967 0.89845709]\n", + " [-0.09229432 -0.41480339 0.90521816]\n", + " [-0.06432654 -0.40680339 0.9112481 ]\n", + " [-0.03611498 -0.39839191 0.91650401]\n", + " [-0.00777023 -0.38959669 0.92095279]\n", + " [-0.24643749 -0.25896477 0.93391959]\n", + " [-0.21594307 -0.24945442 0.94400269]\n", + " [-0.18445034 -0.23964243 0.95317867]\n", + " [-0.15214991 -0.2295523 0.96133041]\n", + " [-0.11923307 -0.2192184 0.96836293]\n", + " [-0.08589287 -0.20868553 0.97420366]\n", + " [-0.25398552 -0.27319643 0.92782276]\n", + " [-0.24515524 -0.30456277 0.92040232]\n", + " [-0.23564082 -0.3362614 0.9118123 ]\n", + " [-0.22550677 -0.36807578 0.90203487]\n", + " [-0.21481686 -0.39979807 0.89107532]\n", + " [-0.20363528 -0.43122843 0.8789623 ]\n", + " [-0.0702318 -0.21609841 0.97384238]\n", + " [-0.05913245 -0.24812674 0.96692113]\n", + " [-0.04771059 -0.28055757 0.95865069]\n", + " [-0.03602949 -0.31318189 0.94900947]\n", + " [-0.02415441 -0.34579449 0.93799933]\n", + " [-0.01215352 -0.37819199 0.9256474 ]\n", + " [-0.18844094 -0.43959786 0.87820484]\n", + " [-0.15617826 -0.4317014 0.88839308]\n", + " [-0.12303289 -0.42310668 0.89768794]\n", + " [-0.08918849 -0.41383337 0.90597315]\n", + " [-0.05483513 -0.40391246 0.91315269]\n", + " [-0.02017144 -0.39338718 0.91915159]\n", + " [-0.25692668 -0.26224678 0.9301695 ]\n", + " [-0.25692668 -0.26224678 0.9301695 ]\n", + " [-0.0079009 -0.38953793 0.92097654]\n", + " [-0.0079009 -0.38953793 0.92097654]\n", + " [-0.24343458 -0.26995421 0.93159236]\n", + " [-0.23444484 -0.30143401 0.92421489]\n", + " [-0.22479392 -0.3332473 0.91564946]\n", + " [-0.21454591 -0.36517791 0.90587811]\n", + " [-0.20376409 -0.39701811 0.89490604]\n", + " [-0.19251231 -0.42856778 0.88276195]\n", + " [-0.2127704 -0.26053774 0.94172652]\n", + " [-0.20334394 -0.29228682 0.93446223]\n", + " [-0.19332113 -0.32437533 0.92596306]\n", + " [-0.18276471 -0.35658844 0.91621054]\n", + " [-0.17173664 -0.38871878 0.9052095 ]\n", + " [-0.16030014 -0.4205653 0.89298863]\n", + " [-0.18111543 -0.25079162 0.9509473 ]\n", + " [-0.17127323 -0.28273276 0.9437837 ]\n", + " [-0.16089872 -0.31502296 0.935346 ]\n", + " [-0.15005344 -0.34744899 0.92561502]\n", + " [-0.13879872 -0.37980387 0.91459496]\n", + " [-0.12719782 -0.41188547 0.90231429]\n", + " [-0.14865978 -0.24073942 0.95913753]\n", + " [-0.13842099 -0.27279573 0.95206204]\n", + " [-0.12771295 -0.30521406 0.94368097]\n", + " [-0.11659679 -0.33778276 0.9339743 ]\n", + " [-0.10513408 -0.37029528 0.92294541]\n", + " [-0.09338891 -0.40254856 0.91062241]\n", + " [-0.11559441 -0.23041585 0.96620208]\n", + " [-0.10497715 -0.26251112 0.9592016 ]\n", + " [-0.0939531 -0.29498413 0.9508718 ]\n", + " [-0.08258381 -0.32762461 0.94119182]\n", + " [-0.07093199 -0.3602265 0.93016425]\n", + " [-0.05906326 -0.39258623 0.91781675]\n", + " [-0.08211242 -0.21986608 0.97206813]\n", + " [-0.07113533 -0.25192503 0.96512877]\n", + " [-0.05981371 -0.28437967 0.95684404]\n", + " [-0.04821029 -0.31702073 0.9471925 ]\n", + " [-0.0363896 -0.34964279 0.93617611]\n", + " [-0.02441915 -0.38204231 0.92382216]]\n", + "DEBUG:root:fp_optics: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:fp_optics: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:cartToSphere: vec: [[-0.06032624 -0.810795 0.5822132 ]\n", + " [-0.06899316 -0.79517695 0.60243968]\n", + " [-0.07764059 -0.77861187 0.6226841 ]\n", + " [-0.08624353 -0.76114029 0.64282774]\n", + " [-0.0947752 -0.74280913 0.66276109]\n", + " [-0.10320712 -0.72367223 0.68238317]\n", + " [-0.11150944 -0.70379092 0.70160101]\n", + " [-0.1196514 -0.68323425 0.72032944]\n", + " [-0.06032624 -0.810795 0.5822132 ]\n", + " [-0.03411391 -0.80824925 0.58785151]\n", + " [-0.00734672 -0.80495242 0.59329388]\n", + " [ 0.01986342 -0.80089321 0.59847767]\n", + " [ 0.04740605 -0.7960665 0.60334965]\n", + " [ 0.07517134 -0.79047366 0.60786566]\n", + " [ 0.10304963 -0.78412301 0.6119901 ]\n", + " [ 0.1309313 -0.77703031 0.61569546]\n", + " [-0.1196514 -0.68323425 0.72032944]\n", + " [-0.09297797 -0.67956216 0.72770211]\n", + " [-0.06568508 -0.6752666 0.73464311]\n", + " [-0.03787782 -0.67033447 0.74109174]\n", + " [-0.00966169 -0.66475948 0.74699497]\n", + " [ 0.01885548 -0.65854262 0.75230717]\n", + " [ 0.04756278 -0.65169276 0.75699031]\n", + " [ 0.07634645 -0.64422691 0.7610144 ]\n", + " [ 0.1309313 -0.77703031 0.61569546]\n", + " [ 0.1237202 -0.76066338 0.63724763]\n", + " [ 0.11627126 -0.74335475 0.65871444]\n", + " [ 0.10860821 -0.72514011 0.67998241]\n", + " [ 0.10075619 -0.70606276 0.70094477]\n", + " [ 0.09274221 -0.68617501 0.72150034]\n", + " [ 0.08459532 -0.66553903 0.74155339]\n", + " [ 0.07634645 -0.64422691 0.7610144 ]\n", + " [-0.06401707 -0.80409659 0.59104187]\n", + " [-0.07462852 -0.78431279 0.6158604 ]\n", + " [-0.08518623 -0.76314605 0.64058677]\n", + " [-0.09564164 -0.74068007 0.66501557]\n", + " [-0.10594238 -0.71701406 0.68896084]\n", + " [-0.11603305 -0.69226411 0.71225468]\n", + " [-0.04900238 -0.80972444 0.58476071]\n", + " [-0.01648831 -0.80610044 0.591549 ]\n", + " [ 0.01674787 -0.80133643 0.59797947]\n", + " [ 0.0505022 -0.79542041 0.60395025]\n", + " [ 0.08457246 -0.78835496 0.60937998]\n", + " [ 0.11875677 -0.78015845 0.6142065 ]\n", + " [-0.108077 -0.68178041 0.72352943]\n", + " [-0.07495586 -0.67686332 0.7322825 ]\n", + " [-0.04100881 -0.67099589 0.74032614]\n", + " [-0.00642979 -0.66416367 0.74755955]\n", + " [ 0.02858263 -0.65636857 0.75389876]\n", + " [ 0.06382299 -0.64763027 0.75927707]\n", + " [ 0.12772236 -0.77003767 0.62508318]\n", + " [ 0.11872061 -0.74934118 0.6514547 ]\n", + " [ 0.10938525 -0.72726487 0.67758445]\n", + " [ 0.09976196 -0.70388522 0.70327317]\n", + " [ 0.08990047 -0.67929865 0.72833458]\n", + " [ 0.07985506 -0.65362373 0.75259497]\n", + " [-0.06026731 -0.8107358 0.58230174]\n", + " [-0.06026731 -0.8107358 0.58230174]\n", + " [ 0.07627637 -0.6443274 0.76093634]\n", + " [ 0.07627637 -0.6443274 0.76093634]\n", + " [-0.05271658 -0.80305845 0.59356389]\n", + " [-0.02009854 -0.79936379 0.6005111 ]\n", + " [ 0.01324696 -0.7945366 0.60707175]\n", + " [ 0.04711668 -0.78856435 0.61314459]\n", + " [ 0.08130868 -0.78144905 0.61864876]\n", + " [ 0.11562083 -0.77320871 0.62352234]\n", + " [-0.06324456 -0.78319621 0.61854978]\n", + " [-0.03038031 -0.77929638 0.62591868]\n", + " [ 0.00322785 -0.77428825 0.63282485]\n", + " [ 0.03737881 -0.76815772 0.63916863]\n", + " [ 0.07187137 -0.76090541 0.64487011]\n", + " [ 0.10650249 -0.75254851 0.64986765]\n", + " [-0.0737442 -0.76194681 0.64342743]\n", + " [-0.04070478 -0.75783278 0.65117785]\n", + " [-0.00690339 -0.75263901 0.65839719]\n", + " [ 0.02746103 -0.74635017 0.66498671]\n", + " [ 0.06218791 -0.73896597 0.67086658]\n", + " [ 0.09707312 -0.73050328 0.67597468]\n", + " [-0.0841666 -0.7393933 0.66799217]\n", + " [-0.05102218 -0.73505404 0.67608601]\n", + " [-0.01709672 -0.72966801 0.68358782]\n", + " [ 0.01741283 -0.72321926 0.69039894]\n", + " [ 0.05230645 -0.71570736 0.69643881]\n", + " [ 0.0873791 -0.7071494 0.70164422]\n", + " [-0.09445886 -0.71563446 0.69205842]\n", + " [-0.06127851 -0.71105776 0.70045829]\n", + " [-0.02729776 -0.7054719 0.70821199]\n", + " [ 0.00728804 -0.69886113 0.71522025]\n", + " [ 0.04227945 -0.69122556 0.72140119]\n", + " [ 0.07747091 -0.68258313 0.72669011]\n", + " [-0.10456509 -0.69078631 0.71545818]\n", + " [-0.07141668 -0.68596002 0.72412603]\n", + " [-0.03744889 -0.68016714 0.73209989]\n", + " [-0.00285594 -0.67339277 0.7392794 ]\n", + " [ 0.03216338 -0.66563827 0.74558112]\n", + " [ 0.06740349 -0.65692283 0.75093885]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:fp_optics: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:cartToSphere: vec: [[ 0.81398685 -0.5805599 -0.01938069]\n", + " [ 0.82817567 -0.56040671 -0.00832925]\n", + " [ 0.84206512 -0.53936851 0.00282029]\n", + " [ 0.8555617 -0.51751068 0.01403127]\n", + " [ 0.86857876 -0.4949066 0.02526653]\n", + " [ 0.88103834 -0.47163555 0.03648781]\n", + " [ 0.89287205 -0.44778173 0.0476554 ]\n", + " [ 0.90402136 -0.42343404 0.05872818]\n", + " [ 0.81398685 -0.5805599 -0.01938069]\n", + " [ 0.81822263 -0.57314296 -0.04493192]\n", + " [ 0.82201657 -0.56502684 -0.0709467 ]\n", + " [ 0.82531238 -0.5562269 -0.09731968]\n", + " [ 0.82806107 -0.54676584 -0.12394347]\n", + " [ 0.83022267 -0.53667186 -0.15071046]\n", + " [ 0.83176702 -0.52597772 -0.17751352]\n", + " [ 0.83267402 -0.5147207 -0.20424634]\n", + " [ 0.90402136 -0.42343404 0.05872818]\n", + " [ 0.90952122 -0.41435187 0.03291925]\n", + " [ 0.91440509 -0.40474731 0.0065531 ]\n", + " [ 0.91861177 -0.39464136 -0.0202637 ]\n", + " [ 0.92208999 -0.38405827 -0.04742676]\n", + " [ 0.9247981 -0.37302641 -0.07483157]\n", + " [ 0.92670411 -0.3615793 -0.10237143]\n", + " [ 0.92778612 -0.34975617 -0.12993671]\n", + " [ 0.83267402 -0.5147207 -0.20424634]\n", + " [ 0.84785523 -0.49326741 -0.19449622]\n", + " [ 0.86265125 -0.47098724 -0.18440128]\n", + " [ 0.87696507 -0.44794931 -0.17399334]\n", + " [ 0.89070961 -0.42422593 -0.16330569]\n", + " [ 0.9038066 -0.39989474 -0.15237398]\n", + " [ 0.91618594 -0.37504057 -0.14123697]\n", + " [ 0.92778612 -0.34975617 -0.12993671]\n", + " [ 0.82021942 -0.57186107 -0.01466333]\n", + " [ 0.83742099 -0.54655739 -0.00104859]\n", + " [ 0.8540793 -0.5199883 0.01267726]\n", + " [ 0.8700318 -0.49228576 0.02644607]\n", + " [ 0.88513508 -0.46359558 0.04018736]\n", + " [ 0.89926731 -0.43407477 0.05382743]\n", + " [ 0.81593347 -0.57734494 -0.03042021]\n", + " [ 0.82083609 -0.5677821 -0.0620613 ]\n", + " [ 0.82501827 -0.55718346 -0.09429445]\n", + " [ 0.82838666 -0.54558793 -0.12692262]\n", + " [ 0.83086776 -0.53304729 -0.15974779]\n", + " [ 0.83241022 -0.51962375 -0.19257306]\n", + " [ 0.90645366 -0.41962397 0.04751304]\n", + " [ 0.91278792 -0.40813991 0.0154929 ]\n", + " [ 0.91813508 -0.39589157 -0.01725798]\n", + " [ 0.92239667 -0.38292222 -0.05054652]\n", + " [ 0.92549602 -0.36928422 -0.08418009]\n", + " [ 0.92737837 -0.35504163 -0.11796101]\n", + " [ 0.83933176 -0.50551256 -0.19994811]\n", + " [ 0.85769157 -0.47865513 -0.18776162]\n", + " [ 0.87537529 -0.45062401 -0.17508886]\n", + " [ 0.89221852 -0.42155095 -0.16199047]\n", + " [ 0.9080771 -0.39157908 -0.14853218]\n", + " [ 0.92282549 -0.36086791 -0.13478676]\n", + " [ 0.81405094 -0.58046839 -0.01942958]\n", + " [ 0.81405094 -0.58046839 -0.01942958]\n", + " [ 0.92774556 -0.34988427 -0.1298814 ]\n", + " [ 0.92774556 -0.34988427 -0.1298814 ]\n", + " [ 0.8221503 -0.56869088 -0.0256822 ]\n", + " [ 0.82717637 -0.55900204 -0.05741058]\n", + " [ 0.83145989 -0.54828932 -0.08974005]\n", + " [ 0.83490602 -0.53659332 -0.12247262]\n", + " [ 0.83744081 -0.52396625 -0.15540993]\n", + " [ 0.83901284 -0.5104703 -0.18835482]\n", + " [ 0.83948104 -0.54325352 -0.01213267]\n", + " [ 0.84483481 -0.53320959 -0.04406443]\n", + " [ 0.84938536 -0.5221816 -0.07662166]\n", + " [ 0.8530356 -0.51021266 -0.10960522]\n", + " [ 0.85571108 -0.49735492 -0.14281679]\n", + " [ 0.85736045 -0.48366979 -0.17605849]\n", + " [ 0.85625477 -0.51655141 0.00155114]\n", + " [ 0.8618995 -0.50616005 -0.03051649]\n", + " [ 0.86668586 -0.49483044 -0.06323331]\n", + " [ 0.8705161 -0.48260603 -0.09640088]\n", + " [ 0.87331578 -0.46953792 -0.12982177]\n", + " [ 0.87503344 -0.45568671 -0.16329757]\n", + " [ 0.87230753 -0.48871814 0.01530205]\n", + " [ 0.87820441 -0.47798922 -0.0168323 ]\n", + " [ 0.88319516 -0.46637132 -0.04963971]\n", + " [ 0.88718194 -0.45390739 -0.08292345]\n", + " [ 0.89009002 -0.44064771 -0.11648752]\n", + " [ 0.89186737 -0.42665281 -0.15013321]\n", + " [ 0.88749541 -0.4599 0.02904983]\n", + " [ 0.89360512 -0.44884339 -0.00308203]\n", + " [ 0.89876897 -0.43694933 -0.0359112 ]\n", + " [ 0.90288898 -0.42426043 -0.06924288]\n", + " [ 0.90588973 -0.41082716 -0.10288267]\n", + " [ 0.90771807 -0.39671098 -0.13663196]\n", + " [ 0.90169633 -0.4302542 0.04272059]\n", + " [ 0.90797913 -0.41887978 0.01065944]\n", + " [ 0.91328425 -0.40672156 -0.02212364]\n", + " [ 0.91751336 -0.39382251 -0.05543531]\n", + " [ 0.92059011 -0.38023434 -0.08908255]\n", + " [ 0.92246014 -0.36602036 -0.12286736]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:fp_optics: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:cartToSphere: vec: [[-0.17758525 0.89901506 0.40029415]\n", + " [-0.14998475 0.90312777 0.40232425]\n", + " [-0.12171055 0.90659471 0.40407 ]\n", + " [-0.0928692 0.9093622 0.40550673]\n", + " [-0.06356822 0.91138587 0.40661392]\n", + " [-0.03391795 0.91263081 0.40737522]\n", + " [-0.00403241 0.91307192 0.40777864]\n", + " [ 0.02597096 0.91269437 0.40781674]\n", + " [-0.17758525 0.89901506 0.40029415]\n", + " [-0.17763493 0.88681868 0.42661277]\n", + " [-0.1774381 0.87393405 0.45249862]\n", + " [-0.17699475 0.86042232 0.47785594]\n", + " [-0.17630492 0.8463543 0.50259424]\n", + " [-0.17536828 0.83181041 0.52662834]\n", + " [-0.17418374 0.81688079 0.54987799]\n", + " [-0.17274932 0.80166547 0.57226755]\n", + " [ 0.02597096 0.91269437 0.40781674]\n", + " [ 0.0257726 0.90004392 0.43503646]\n", + " [ 0.02555479 0.88662675 0.46177913]\n", + " [ 0.0253187 0.87250719 0.48794484]\n", + " [ 0.02506582 0.85775841 0.51344154]\n", + " [ 0.02479791 0.84246167 0.53818528]\n", + " [ 0.0245171 0.82670623 0.56209938]\n", + " [ 0.02422588 0.81058992 0.58511288]\n", + " [-0.17274932 0.80166547 0.57226755]\n", + " [-0.14607518 0.80453734 0.57565764]\n", + " [-0.1187265 0.80694906 0.57856481]\n", + " [-0.09081498 0.80884716 0.58096378]\n", + " [-0.06245207 0.81018837 0.5828332 ]\n", + " [-0.03374938 0.81093962 0.58415573]\n", + " [-0.00481911 0.81107786 0.58491836]\n", + " [ 0.02422588 0.81058992 0.58511288]\n", + " [-0.1656416 0.90084315 0.40130348]\n", + " [-0.13134789 0.90545628 0.40360458]\n", + " [-0.09614811 0.90904513 0.40545343]\n", + " [-0.06023971 0.9115242 0.40681054]\n", + " [-0.02382592 0.91282923 0.40764582]\n", + " [ 0.01288188 0.91291827 0.40793908]\n", + " [-0.17754411 0.89380045 0.41182379]\n", + " [-0.17743938 0.87838198 0.44380216]\n", + " [-0.17696453 0.86198933 0.47503468]\n", + " [-0.17611962 0.84474885 0.5053526 ]\n", + " [-0.174904 0.82680861 0.53459902]\n", + " [-0.17331528 0.80833865 0.56262816]\n", + " [ 0.02578428 0.90727942 0.41973708]\n", + " [ 0.02552814 0.89125183 0.45278967]\n", + " [ 0.02524412 0.87413551 0.48502562]\n", + " [ 0.02493481 0.85606152 0.51627215]\n", + " [ 0.02460348 0.83717946 0.54637462]\n", + " [ 0.02425418 0.81765715 0.57519433]\n", + " [-0.16121434 0.80302314 0.57372797]\n", + " [-0.12805364 0.80624172 0.57756087]\n", + " [-0.09399076 0.80871471 0.58064297]\n", + " [-0.05923097 0.81035821 0.58293332]\n", + " [-0.0239798 0.81111131 0.58440005]\n", + " [ 0.01155592 0.81093569 0.58502117]\n", + " [-0.17749273 0.89898968 0.40039217]\n", + " [-0.17749273 0.89898968 0.40039217]\n", + " [ 0.02412749 0.81064827 0.58503611]\n", + " [ 0.02412749 0.81064827 0.58503611]\n", + " [-0.16569502 0.89563269 0.4127799 ]\n", + " [-0.16561204 0.88014434 0.44488042]\n", + " [-0.16518272 0.86366771 0.47622764]\n", + " [-0.16440754 0.84632932 0.50665258]\n", + " [-0.16328628 0.82827721 0.53599856]\n", + " [-0.16181686 0.80968125 0.56412018]\n", + " [-0.13140698 0.90019237 0.41519381]\n", + " [-0.13138549 0.88452842 0.44760175]\n", + " [-0.13108515 0.86784136 0.47923696]\n", + " [-0.13050727 0.85025849 0.50992975]\n", + " [-0.12965269 0.8319279 0.53952401]\n", + " [-0.12852031 0.81301878 0.56787585]\n", + " [-0.09621283 0.90373781 0.41713434]\n", + " [-0.09625336 0.88793163 0.44979185]\n", + " [-0.09608328 0.87107496 0.48166006]\n", + " [-0.0957041 0.85329619 0.51256838]\n", + " [-0.09511712 0.83474368 0.54236125]\n", + " [-0.09432178 0.81558606 0.57089648]\n", + " [-0.06031004 0.90618378 0.41856142]\n", + " [-0.06041373 0.89026954 0.45140927]\n", + " [-0.0603764 0.87328478 0.48345464]\n", + " [-0.06019906 0.85535902 0.51452602]\n", + " [-0.05988251 0.83664111 0.5444683 ]\n", + " [-0.05942603 0.81729927 0.57314086]\n", + " [-0.02390183 0.90746637 0.41944427]\n", + " [-0.02406989 0.89147935 0.4524215 ]\n", + " [-0.02416803 0.87440908 0.48458711]\n", + " [-0.02419604 0.85638606 0.51576882]\n", + " [-0.02415338 0.83755959 0.54581183]\n", + " [-0.02403833 0.81809765 0.5745767 ]\n", + " [ 0.01280044 0.90754392 0.41976206]\n", + " [ 0.01256728 0.89152041 0.45280617]\n", + " [ 0.01233185 0.87440829 0.48503409]\n", + " [ 0.01209607 0.85633858 0.5162731 ]\n", + " [ 0.01186242 0.83746086 0.54636854]\n", + " [ 0.0116343 0.81794298 0.57518164]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:fp_optics: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:cartToSphere: vec: [[-0.41855677 0.09733634 0.9029595 ]\n", + " [-0.4286201 0.12118409 0.89532074]\n", + " [-0.43844097 0.14551115 0.88690249]\n", + " [-0.44797201 0.17019899 0.87769777]\n", + " [-0.4571684 0.19513413 0.86770947]\n", + " [-0.46598787 0.22020726 0.85695044]\n", + " [-0.47439095 0.24531256 0.84544366]\n", + " [-0.48234144 0.27034725 0.83322212]\n", + " [-0.41855677 0.09733634 0.9029595 ]\n", + " [-0.39526399 0.10707943 0.91230498]\n", + " [-0.37121748 0.1170985 0.92113274]\n", + " [-0.34650032 0.12732944 0.92936793]\n", + " [-0.32119841 0.13771345 0.93694535]\n", + " [-0.29540119 0.14819647 0.94380927]\n", + " [-0.26920208 0.15872845 0.94991343]\n", + " [-0.24269859 0.1692627 0.9552212 ]\n", + " [-0.48234144 0.27034725 0.83322212]\n", + " [-0.45885126 0.28220209 0.84250668]\n", + " [-0.43451098 0.2940766 0.85130439]\n", + " [-0.40939749 0.30591018 0.85954212]\n", + " [-0.3835918 0.3176455 0.86715551]\n", + " [-0.35718091 0.3292277 0.87408862]\n", + " [-0.33025881 0.3406042 0.88029421]\n", + " [-0.30292633 0.35172496 0.88573427]\n", + " [-0.24269859 0.1692627 0.9552212 ]\n", + " [-0.25161704 0.19482496 0.94801482]\n", + " [-0.26050331 0.22073904 0.93990015]\n", + " [-0.26931153 0.2468931 0.93086793]\n", + " [-0.27799826 0.27317752 0.92091857]\n", + " [-0.28652214 0.29948336 0.91006307]\n", + " [-0.2948438 0.32570184 0.89832369]\n", + " [-0.30292633 0.35172496 0.88573427]\n", + " [-0.42289265 0.10770066 0.89975684]\n", + " [-0.43506894 0.13726767 0.88987224]\n", + " [-0.44683382 0.16743617 0.87880866]\n", + " [-0.45810373 0.19799517 0.8665673 ]\n", + " [-0.46880088 0.22874338 0.85317185]\n", + " [-0.47885392 0.25948723 0.83866877]\n", + " [-0.40853351 0.10162728 0.90706795]\n", + " [-0.37946807 0.11376394 0.91818394]\n", + " [-0.34935266 0.12625064 0.92844682]\n", + " [-0.31834422 0.13897694 0.93773257]\n", + " [-0.28660747 0.15184324 0.94593858]\n", + " [-0.25431609 0.16475881 0.95298366]\n", + " [-0.47218249 0.27542381 0.83736815]\n", + " [-0.44281141 0.28997331 0.84843004]\n", + " [-0.41223954 0.3044919 0.85868693]\n", + " [-0.3806142 0.31887272 0.86801671]\n", + " [-0.34809571 0.33301478 0.87631646]\n", + " [-0.31485994 0.34682229 0.88350298]\n", + " [-0.24667936 0.18032122 0.95217307]\n", + " [-0.25759498 0.21190084 0.94273159]\n", + " [-0.26841623 0.2438975 0.93191563]\n", + " [-0.27906215 0.27610857 0.9197219 ]\n", + " [-0.28945656 0.30833345 0.90617073]\n", + " [-0.29952801 0.34037214 0.8913079 ]\n", + " [-0.41851326 0.09744971 0.90296744]\n", + " [-0.41851326 0.09744971 0.90296744]\n", + " [-0.30299319 0.35159888 0.88576145]\n", + " [-0.30299319 0.35159888 0.88576145]\n", + " [-0.41289167 0.11195067 0.90387362]\n", + " [-0.38375873 0.12427352 0.91503297]\n", + " [-0.35356443 0.13691874 0.92533532]\n", + " [-0.32246513 0.1497768 0.9346567 ]\n", + " [-0.29062526 0.16274883 0.94289436]\n", + " [-0.25821873 0.17574448 0.94996682]\n", + " [-0.42501997 0.14171207 0.89402221]\n", + " [-0.39573121 0.1545335 0.90527134]\n", + " [-0.36534994 0.16760215 0.91565765]\n", + " [-0.33403059 0.18081093 0.92505728]\n", + " [-0.30193682 0.19406257 0.93336696]\n", + " [-0.26924325 0.20726723 0.94050432]\n", + " [-0.4367548 0.17205963 0.88297267]\n", + " [-0.40736238 0.18533952 0.89426235]\n", + " [-0.3768481 0.19879633 0.90469085]\n", + " [-0.34536431 0.21232467 0.91413441]\n", + " [-0.31307389 0.22582788 0.9224893 ]\n", + " [-0.28015218 0.23921573 0.9296723 ]\n", + " [-0.4480123 0.20278334 0.87072607]\n", + " [-0.4185677 0.21648444 0.88200656]\n", + " [-0.38797412 0.23029654 0.89243464]\n", + " [-0.35638194 0.24411488 0.90188682]\n", + " [-0.32395324 0.25784235 0.91025909]\n", + " [-0.29086395 0.27138753 0.9174677 ]\n", + " [-0.45871422 0.23368252 0.8573061 ]\n", + " [-0.42926777 0.24776891 0.86852735]\n", + " [-0.39864804 0.26190402 0.87891184]\n", + " [-0.36700378 0.27598271 0.88833652]\n", + " [-0.33449626 0.28990653 0.89669753]\n", + " [-0.30130164 0.30358231 0.903911 ]\n", + " [-0.46878869 0.26456363 0.8427593 ]\n", + " [-0.43938946 0.27899896 0.85387147]\n", + " [-0.40879598 0.2934237 0.86416918]\n", + " [-0.37715585 0.30773153 0.87353006]\n", + " [-0.34462959 0.32182215 0.88185087]\n", + " [-0.31139324 0.33560046 0.88904813]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:fp_optics: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:cartToSphere: vec: [[-0.28739683 0.34958318 -0.89173688]\n", + " [-0.30505632 0.32927974 -0.89359694]\n", + " [-0.32274775 0.30821206 -0.8948962 ]\n", + " [-0.34039258 0.28646807 -0.89558301]\n", + " [-0.35791463 0.26413457 -0.89561713]\n", + " [-0.37523981 0.24129852 -0.89496934]\n", + " [-0.39229613 0.2180481 -0.89362116]\n", + " [-0.40901408 0.19447324 -0.89156471]\n", + " [-0.28739683 0.34958318 -0.89173688]\n", + " [-0.2668666 0.33639291 -0.90311795]\n", + " [-0.24578606 0.32253945 -0.91408835]\n", + " [-0.22422611 0.30808303 -0.924558 ]\n", + " [-0.20226038 0.29308257 -0.93444815]\n", + " [-0.17996581 0.27759681 -0.9436908 ]\n", + " [-0.15742289 0.26168546 -0.95222831]\n", + " [-0.13471551 0.24540979 -0.96001342]\n", + " [-0.40901408 0.19447324 -0.89156471]\n", + " [-0.38891975 0.17932876 -0.90364961]\n", + " [-0.36810315 0.16372684 -0.91525603]\n", + " [-0.34663006 0.14772223 -0.92629679]\n", + " [-0.32457042 0.13137149 -0.93669396]\n", + " [-0.30199943 0.11473388 -0.94637861]\n", + " [-0.27899797 0.09787158 -0.9552912 ]\n", + " [-0.25565221 0.08084944 -0.96338223]\n", + " [-0.13471551 0.24540979 -0.96001342]\n", + " [-0.15172409 0.22335483 -0.96285639]\n", + " [-0.16894549 0.20067537 -0.96498022]\n", + " [-0.18630471 0.17745233 -0.96633391]\n", + " [-0.20372791 0.15376921 -0.9668764 ]\n", + " [-0.22114181 0.12971314 -0.96657685]\n", + " [-0.23847375 0.1053751 -0.96541512]\n", + " [-0.25565221 0.08084944 -0.96338223]\n", + " [-0.29501816 0.34078605 -0.89265287]\n", + " [-0.31669324 0.3153755 -0.8945634 ]\n", + " [-0.33833808 0.28890469 -0.89557882]\n", + " [-0.35981149 0.26153379 -0.89562033]\n", + " [-0.38097707 0.23342301 -0.8946341 ]\n", + " [-0.4017033 0.20473543 -0.89259054]\n", + " [-0.27857791 0.3438491 -0.89675088]\n", + " [-0.253037 0.32722794 -0.91043624]\n", + " [-0.22673954 0.30967084 -0.92341386]\n", + " [-0.1998199 0.29128671 -0.93553411]\n", + " [-0.17241976 0.27218386 -0.94667173]\n", + " [-0.14468874 0.25247283 -0.95672496]\n", + " [-0.40028904 0.18801131 -0.89689488]\n", + " [-0.37516699 0.16913657 -0.91139593]\n", + " [-0.34902517 0.14962886 -0.92509061]\n", + " [-0.32199049 0.12959147 -0.93783163]\n", + " [-0.29420149 0.10913352 -0.94949216]\n", + " [-0.26580927 0.08837061 -0.9599667 ]\n", + " [-0.14217839 0.23593211 -0.9613123 ]\n", + " [-0.16317754 0.20847202 -0.96431971]\n", + " [-0.18442149 0.18015401 -0.96619524]\n", + " [-0.2057739 0.15113064 -0.96685916]\n", + " [-0.22709986 0.12156233 -0.96625476]\n", + " [-0.24826603 0.09161801 -0.96434958]\n", + " [-0.28738788 0.34947124 -0.89178364]\n", + " [-0.28738788 0.34947124 -0.89178364]\n", + " [-0.25567413 0.08099192 -0.96336444]\n", + " [-0.25567413 0.08099192 -0.96336444]\n", + " [-0.28620677 0.33509783 -0.89766092]\n", + " [-0.26064971 0.31830374 -0.91145184]\n", + " [-0.23431779 0.30059357 -0.92452079]\n", + " [-0.20734503 0.28207484 -0.93671865]\n", + " [-0.17987314 0.26285499 -0.94792031]\n", + " [-0.1520521 0.24304425 -0.95802383]\n", + " [-0.30788807 0.30951016 -0.89967127]\n", + " [-0.28231523 0.29225342 -0.91372099]\n", + " [-0.25591676 0.27413512 -0.92701486]\n", + " [-0.22882562 0.25525945 -0.93940484]\n", + " [-0.20118344 0.23573218 -0.95076578]\n", + " [-0.17314118 0.21566334 -0.96099503]\n", + " [-0.32955449 0.28287578 -0.90076364]\n", + " [-0.30401078 0.265193 -0.91501373]\n", + " [-0.2775926 0.24670124 -0.92848309]\n", + " [-0.25043157 0.22750265 -0.94102421]\n", + " [-0.22266907 0.20770247 -0.9525115 ]\n", + " [-0.19445676 0.18741142 -0.96284138]\n", + " [-0.35106485 0.25535343 -0.90085964]\n", + " [-0.32559535 0.23727774 -0.91525239]\n", + " [-0.29920475 0.21844487 -0.92884787]\n", + " [-0.27202324 0.19895621 -0.94149869]\n", + " [-0.24419163 0.1789175 -0.95307868]\n", + " [-0.21586193 0.15844071 -0.96348335]\n", + " [-0.37228246 0.22710257 -0.89990566]\n", + " [-0.34693156 0.20866558 -0.91438349]\n", + " [-0.32061558 0.1895235 -0.92805522]\n", + " [-0.29346324 0.16977802 -0.94077349]\n", + " [-0.2656145 0.14953608 -0.95241162]\n", + " [-0.23722129 0.12891121 -0.96286445]\n", + " [-0.3930753 0.19828612 -0.89787217]\n", + " [-0.36788615 0.17951976 -0.91237735]\n", + " [-0.34169093 0.16010137 -0.92607498]\n", + " [-0.31461699 0.14013375 -0.9388177 ]\n", + " [-0.28680325 0.11972542 -0.95047868]\n", + " [-0.25840111 0.09899147 -0.96095242]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:fp_optics: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:cartToSphere: vec: [[-0.16667484 -0.7664613 0.62028749]\n", + " [-0.15812199 -0.7505115 0.64166185]\n", + " [-0.14927208 -0.73363754 0.66294329]\n", + " [-0.14015333 -0.7158737 0.68401892]\n", + " [-0.13079553 -0.6972618 0.7047826 ]\n", + " [-0.12123068 -0.67785259 0.72513378]\n", + " [-0.11149324 -0.65770651 0.74497745]\n", + " [-0.10162009 -0.63689383 0.76422484]\n", + " [-0.16667484 -0.7664613 0.62028749]\n", + " [-0.13935333 -0.77528872 0.61604224]\n", + " [-0.11197359 -0.78338233 0.61137063]\n", + " [-0.08464336 -0.79071818 0.60630047]\n", + " [-0.05747074 -0.79727985 0.60086767]\n", + " [-0.03056407 -0.803058 0.59511653]\n", + " [-0.00403235 -0.80804989 0.58910026]\n", + " [ 0.02201411 -0.81225892 0.58288148]\n", + " [-0.10162009 -0.63689383 0.76422484]\n", + " [-0.0734026 -0.64610869 0.75970759]\n", + " [-0.04521092 -0.65471192 0.75452519]\n", + " [-0.01715746 -0.66267789 0.74870798]\n", + " [ 0.01064766 -0.66998928 0.74229441]\n", + " [ 0.03809717 -0.67663692 0.73533059]\n", + " [ 0.06508626 -0.68261928 0.72786997]\n", + " [ 0.09151092 -0.68794177 0.71997352]\n", + " [ 0.02201411 -0.81225892 0.58288148]\n", + " [ 0.03196866 -0.79711591 0.60297946]\n", + " [ 0.04196771 -0.78102504 0.62308795]\n", + " [ 0.05198117 -0.76402507 0.64308914]\n", + " [ 0.06197698 -0.74616104 0.66287447]\n", + " [ 0.07192114 -0.72748489 0.68234381]\n", + " [ 0.08177804 -0.70805606 0.70140499]\n", + " [ 0.09151092 -0.68794177 0.71997352]\n", + " [-0.16289047 -0.75965422 0.62959683]\n", + " [-0.1522039 -0.73948096 0.65574528]\n", + " [-0.14109921 -0.71795284 0.68164121]\n", + " [-0.12963055 -0.69514362 0.70708647]\n", + " [-0.11785688 -0.67114681 0.73189597]\n", + " [-0.10584267 -0.64607782 0.75589734]\n", + " [-0.15474751 -0.77034566 0.61856347]\n", + " [-0.12120857 -0.78067486 0.61307035]\n", + " [-0.08768923 -0.78987724 0.60696338]\n", + " [-0.05438837 -0.79791946 0.60030529]\n", + " [-0.02150551 -0.80478428 0.59317769]\n", + " [ 0.01075822 -0.8104692 0.58568245]\n", + " [-0.0893552 -0.64105696 0.76227398]\n", + " [-0.05477495 -0.6519429 0.75628708]\n", + " [-0.02034529 -0.66188362 0.74933046]\n", + " [ 0.01373003 -0.6708438 0.74147157]\n", + " [ 0.04725351 -0.6788065 0.73279523]\n", + " [ 0.08003261 -0.6857718 0.72340294]\n", + " [ 0.02625863 -0.805762 0.59165707]\n", + " [ 0.03849193 -0.78656004 0.61631297]\n", + " [ 0.05076256 -0.76597217 0.64086645]\n", + " [ 0.06301234 -0.74407866 0.66511381]\n", + " [ 0.0751787 -0.72097524 0.68887072]\n", + " [ 0.08719558 -0.69677452 0.71197064]\n", + " [-0.16655291 -0.76643977 0.62034684]\n", + " [-0.16655291 -0.76643977 0.62034684]\n", + " [ 0.09138861 -0.68799456 0.71993862]\n", + " [ 0.09138861 -0.68799456 0.71993862]\n", + " [-0.15103919 -0.76357625 0.62780448]\n", + " [-0.1173746 -0.77395497 0.62226755]\n", + " [-0.08373656 -0.78321248 0.6160896 ]\n", + " [-0.05032434 -0.79131573 0.60933314]\n", + " [-0.01733731 -0.79824801 0.60207934]\n", + " [ 0.01502394 -0.80400742 0.59442943]\n", + " [-0.14023733 -0.74344409 0.65392995]\n", + " [-0.10625899 -0.75395232 0.64827843]\n", + " [-0.07232806 -0.76335861 0.64191299]\n", + " [-0.03864507 -0.7716305 0.634896 ]\n", + " [-0.00540916 -0.77875259 0.62730785]\n", + " [ 0.02718084 -0.78472466 0.61924826]\n", + " [-0.1290394 -0.7219501 0.67980651]\n", + " [-0.09481081 -0.73257215 0.67405412]\n", + " [-0.06065199 -0.74211721 0.66752033]\n", + " [-0.0267649 -0.75055291 0.6602681 ]\n", + " [ 0.00665151 -0.75786467 0.65237789]\n", + " [ 0.03940018 -0.76405352 0.64394863]\n", + " [-0.11750025 -0.69916789 0.70523609]\n", + " [-0.08308673 -0.70988806 0.69939655]\n", + " [-0.04876656 -0.71956256 0.69271317]\n", + " [-0.01474287 -0.72815864 0.68525006]\n", + " [ 0.0187856 -0.73566176 0.67708853]\n", + " [ 0.05162347 -0.74207359 0.66832761]\n", + " [-0.10567956 -0.67519075 0.73003376]\n", + " [-0.07114848 -0.68599287 0.72412131]\n", + " [-0.03673501 -0.69578745 0.71730772]\n", + " [-0.00264299 -0.70454086 0.70965851]\n", + " [ 0.03092923 -0.71223792 0.70125639]\n", + " [ 0.06378769 -0.71888012 0.69220121]\n", + " [-0.09364248 -0.65013381 0.75402727]\n", + " [-0.05906277 -0.66100099 0.74805701]\n", + " [-0.02462508 -0.67090553 0.74113384]\n", + " [ 0.00946667 -0.6798126 0.73332476]\n", + " [ 0.04301475 -0.6877058 0.72471405]\n", + " [ 0.07582631 -0.69458568 0.71540276]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:fp_optics: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:cartToSphere: vec: [[-0.61138261 0.72175473 0.32447097]\n", + " [-0.63331494 0.70572209 0.31759805]\n", + " [-0.65516999 0.6888004 0.31033255]\n", + " [-0.67683299 0.67102622 0.30268948]\n", + " [-0.6981953 0.65244368 0.29468725]\n", + " [-0.71915378 0.6331055 0.28634815]\n", + " [-0.7396111 0.61307339 0.27769847]\n", + " [-0.75947656 0.59241781 0.26876846]\n", + " [-0.61138261 0.72175473 0.32447097]\n", + " [-0.61142541 0.73314055 0.29776484]\n", + " [-0.6110331 0.74381976 0.27087029]\n", + " [-0.61021667 0.75375773 0.24389526]\n", + " [-0.60899516 0.76292704 0.21694985]\n", + " [-0.60739607 0.77130697 0.19014621]\n", + " [-0.60545588 0.77888289 0.163599 ]\n", + " [-0.60322074 0.78564543 0.13742634]\n", + " [-0.75947656 0.59241781 0.26876846]\n", + " [-0.75939665 0.6042736 0.24118486]\n", + " [-0.7586371 0.61554801 0.21347225]\n", + " [-0.75721056 0.62620423 0.18574293]\n", + " [-0.75513833 0.63621338 0.15810959]\n", + " [-0.75245001 0.64555446 0.13068444]\n", + " [-0.74918313 0.65421404 0.1035791 ]\n", + " [-0.74538292 0.66218565 0.07690553]\n", + " [-0.60322074 0.78564543 0.13742634]\n", + " [-0.62412518 0.77058953 0.12907185]\n", + " [-0.64501619 0.75459459 0.12058657]\n", + " [-0.66577387 0.73770191 0.11198676]\n", + " [-0.68628772 0.71995816 0.10329284]\n", + " [-0.70645555 0.70141629 0.09452907]\n", + " [-0.72618289 0.68213632 0.08572312]\n", + " [-0.74538292 0.66218565 0.07690553]\n", + " [-0.62094793 0.71491607 0.32143222]\n", + " [-0.64779109 0.69466471 0.31274212]\n", + " [-0.6744034 0.67311344 0.3034771 ]\n", + " [-0.70058236 0.65034031 0.2936696 ]\n", + " [-0.72613816 0.62644241 0.28336068]\n", + " [-0.75089431 0.60153699 0.27260039]\n", + " [-0.61153013 0.72675024 0.3128338 ]\n", + " [-0.61128884 0.74023473 0.27996158]\n", + " [-0.61040385 0.75262269 0.2469134 ]\n", + " [-0.60890684 0.76386064 0.21389106]\n", + " [-0.6068485 0.7739104 0.18110108]\n", + " [-0.60429997 0.78274723 0.1487559 ]\n", + " [-0.75945891 0.59772739 0.25679589]\n", + " [-0.75890291 0.61187176 0.22288858]\n", + " [-0.7573378 0.62510531 0.18889893]\n", + " [-0.75479922 0.63737156 0.15503428]\n", + " [-0.75134162 0.64863182 0.12150119]\n", + " [-0.74703726 0.65886429 0.08850522]\n", + " [-0.61233723 0.77917691 0.13388973]\n", + " [-0.63796561 0.76008714 0.12356143]\n", + " [-0.66345349 0.73962739 0.11305217]\n", + " [-0.68859362 0.71788127 0.10239782]\n", + " [-0.7131978 0.69494637 0.091643 ]\n", + " [-0.73709529 0.67093625 0.08083985]\n", + " [-0.6114585 0.72174155 0.32435727]\n", + " [-0.6114585 0.72174155 0.32435727]\n", + " [-0.7453321 0.66222885 0.07702602]\n", + " [-0.7453321 0.66222885 0.07702602]\n", + " [-0.62101798 0.71994516 0.30986391]\n", + " [-0.62075352 0.73349159 0.27686667]\n", + " [-0.61981769 0.7459476 0.24369698]\n", + " [-0.61824198 0.75725991 0.21055706]\n", + " [-0.61607665 0.76739094 0.17765332]\n", + " [-0.61339212 0.77631682 0.14519745]\n", + " [-0.64785676 0.6997455 0.30106123]\n", + " [-0.64752942 0.71345257 0.2677519 ]\n", + " [-0.64645614 0.72608981 0.23428198]\n", + " [-0.64466837 0.73760417 0.20085511]\n", + " [-0.64221584 0.74795923 0.16767769]\n", + " [-0.63916757 0.75713323 0.13495959]\n", + " [-0.67446482 0.67823683 0.29170536]\n", + " [-0.6740783 0.69208266 0.25814732]\n", + " [-0.67287647 0.70488476 0.22444317]\n", + " [-0.67089133 0.71658979 0.19079806]\n", + " [-0.668173 0.72716175 0.15741865]\n", + " [-0.66479018 0.73658023 0.12451338]\n", + " [-0.70063966 0.65549695 0.28182941]\n", + " [-0.70019763 0.66945927 0.24808782]\n", + " [-0.69887594 0.68241009 0.21421694]\n", + " [-0.69670758 0.69429534 0.18042319]\n", + " [-0.69374369 0.70507881 0.14691349]\n", + " [-0.69005356 0.71474049 0.11389522]\n", + " [-0.7261915 0.63162267 0.27147506]\n", + " [-0.72569794 0.64567851 0.23761684]\n", + " [-0.72426569 0.65876144 0.20364816]\n", + " [-0.72192892 0.67081642 0.16977625]\n", + " [-0.71874013 0.68180641 0.13620809]\n", + " [-0.71476976 0.69171108 0.10315021]\n", + " [-0.75094388 0.60673101 0.26069288]\n", + " [-0.75040329 0.62085659 0.22678624]\n", + " [-0.74887085 0.63405409 0.19278967]\n", + " [-0.74638184 0.64626741 0.15891058]\n", + " [-0.74299023 0.65745834 0.12535573]\n", + " [-0.7387678 0.66760553 0.0923309 ]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:fp_optics: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:cartToSphere: vec: [[ 0.20954953 0.38582333 -0.89845943]\n", + " [ 0.18211377 0.38824381 -0.90338326]\n", + " [ 0.15398172 0.39040019 -0.90767688]\n", + " [ 0.12525792 0.39226667 -0.91128333]\n", + " [ 0.09604826 0.39382152 -0.91415499]\n", + " [ 0.06646174 0.39504703 -0.91625361]\n", + " [ 0.03661143 0.39592967 -0.91755071]\n", + " [ 0.00661415 0.39646029 -0.91802804]\n", + " [ 0.20954953 0.38582333 -0.89845943]\n", + " [ 0.2091157 0.35904137 -0.90959327]\n", + " [ 0.20841116 0.33205256 -0.91994885]\n", + " [ 0.20743826 0.30496672 -0.929497 ]\n", + " [ 0.20619976 0.27789714 -0.93821897]\n", + " [ 0.20469838 0.25096066 -0.9461064 ]\n", + " [ 0.20293642 0.22427792 -0.95316117]\n", + " [ 0.20091568 0.19797376 -0.95939527]\n", + " [ 0.00661415 0.39646029 -0.91802804]\n", + " [ 0.00631102 0.36873043 -0.92951495]\n", + " [ 0.00600018 0.34075854 -0.9401317 ]\n", + " [ 0.00568294 0.31265961 -0.94984824]\n", + " [ 0.00536062 0.28454977 -0.95864628]\n", + " [ 0.00503453 0.25654569 -0.96651899]\n", + " [ 0.00470593 0.22876497 -0.97347031]\n", + " [ 0.00437597 0.20132769 -0.97951417]\n", + " [ 0.20091568 0.19797376 -0.95939527]\n", + " [ 0.17435849 0.19853529 -0.96445988]\n", + " [ 0.14711121 0.19910367 -0.96887358]\n", + " [ 0.11928355 0.19965355 -0.97257899]\n", + " [ 0.09098536 0.20016443 -0.97552851]\n", + " [ 0.06232699 0.20062059 -0.97768437]\n", + " [ 0.03341975 0.20101077 -0.97901879]\n", + " [ 0.00437597 0.20132769 -0.97951417]\n", + " [ 0.19767873 0.38681784 -0.9007192 ]\n", + " [ 0.16357198 0.38960934 -0.90633811]\n", + " [ 0.12852321 0.39197824 -0.91095271]\n", + " [ 0.09272669 0.39388285 -0.91447147]\n", + " [ 0.0563832 0.39529058 -0.91682402]\n", + " [ 0.01970251 0.39617836 -0.91796216]\n", + " [ 0.20930128 0.37418693 -0.90342521]\n", + " [ 0.20858739 0.34120916 -0.91655202]\n", + " [ 0.20746933 0.30802938 -0.92847961]\n", + " [ 0.20595202 0.27485475 -0.93916912]\n", + " [ 0.20404042 0.24190037 -0.94860514]\n", + " [ 0.20173856 0.2093901 -0.95679535]\n", + " [ 0.00658569 0.3844058 -0.92314073]\n", + " [ 0.00620865 0.35024301 -0.93663829]\n", + " [ 0.00582112 0.31583074 -0.94879769]\n", + " [ 0.00542554 0.2813824 -0.95958038]\n", + " [ 0.00502432 0.24711281 -0.96897369]\n", + " [ 0.00461974 0.2132394 -0.97698906]\n", + " [ 0.18943549 0.19830556 -0.96165956]\n", + " [ 0.15640797 0.199003 -0.967437 ]\n", + " [ 0.12245289 0.19968482 -0.97217862]\n", + " [ 0.08777241 0.20031123 -0.97579271]\n", + " [ 0.05256975 0.20085328 -0.97820978]\n", + " [ 0.01705025 0.2012919 -0.9793829 ]\n", + " [ 0.20945599 0.38574091 -0.89851663]\n", + " [ 0.20945599 0.38574091 -0.89851663]\n", + " [ 0.00447653 0.20141984 -0.97949477]\n", + " [ 0.00447653 0.20141984 -0.97949477]\n", + " [ 0.19752521 0.37521787 -0.90564637]\n", + " [ 0.19683032 0.34210543 -0.91881538]\n", + " [ 0.19575454 0.30878499 -0.93076957]\n", + " [ 0.19430319 0.27546396 -0.94147006]\n", + " [ 0.19248167 0.24235729 -0.95090154]\n", + " [ 0.19029431 0.20968841 -0.95907187]\n", + " [ 0.16342202 0.37789355 -0.91131208]\n", + " [ 0.16278173 0.34444221 -0.9245873 ]\n", + " [ 0.16182675 0.31076849 -0.93660827]\n", + " [ 0.16056327 0.27708086 -0.94733607]\n", + " [ 0.15899776 0.24359387 -0.95675584]\n", + " [ 0.15713547 0.21052942 -0.96487606]\n", + " [ 0.12837715 0.38016833 -0.91596471]\n", + " [ 0.1277933 0.34644174 -0.9293261 ]\n", + " [ 0.12696197 0.31248196 -0.94140092]\n", + " [ 0.12588961 0.27849883 -0.95215031]\n", + " [ 0.12458314 0.24470674 -0.96156001]\n", + " [ 0.12304836 0.21132597 -0.96963933]\n", + " [ 0.09258492 0.38200108 -0.91951248]\n", + " [ 0.09205996 0.34806445 -0.93293949]\n", + " [ 0.09135637 0.31388686 -0.94505505]\n", + " [ 0.09048012 0.27967964 -0.95582041]\n", + " [ 0.08943766 0.24565723 -0.96522196]\n", + " [ 0.08823462 0.21203857 -0.9732699 ]\n", + " [ 0.05624614 0.38335996 -0.92188476]\n", + " [ 0.05578266 0.34928046 -0.93535633]\n", + " [ 0.05521115 0.31495484 -0.94749944]\n", + " [ 0.05453641 0.28059568 -0.95827545]\n", + " [ 0.05376356 0.24641762 -0.96767135]\n", + " [ 0.0528972 0.21263864 -0.97569806]\n", + " [ 0.01957052 0.38422253 -0.92303307]\n", + " [ 0.01917066 0.35006911 -0.93652768]\n", + " [ 0.01873474 0.31566673 -0.94868516]\n", + " [ 0.01826585 0.28122867 -0.95946693]\n", + " [ 0.01776719 0.24696974 -0.9688603 ]\n", + " [ 0.01724167 0.21310742 -0.97687663]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:fp_optics: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:cartToSphere: vec: [[-0.93247428 0.27603734 0.2330131 ]\n", + " [-0.92861057 0.26664087 0.25804081]\n", + " [-0.92401889 0.256719 0.28334512]\n", + " [-0.91867582 0.24630924 0.30881465]\n", + " [-0.91256753 0.23545351 0.33433838]\n", + " [-0.9056903 0.22419579 0.35980734]\n", + " [-0.89805088 0.21258118 0.38511537]\n", + " [-0.88966654 0.20065559 0.41015947]\n", + " [-0.93247428 0.27603734 0.2330131 ]\n", + " [-0.94151688 0.25281338 0.22278096]\n", + " [-0.9500324 0.22884324 0.21229512]\n", + " [-0.95794592 0.2042179 0.20158043]\n", + " [-0.96519119 0.17903387 0.19066423]\n", + " [-0.97171161 0.15339026 0.17957719]\n", + " [-0.9774607 0.12738767 0.16835369]\n", + " [-0.98240225 0.10112774 0.15703185]\n", + " [-0.88966654 0.20065559 0.41015947]\n", + " [-0.89890342 0.17585291 0.40130834]\n", + " [-0.9076079 0.15039666 0.39195502]\n", + " [-0.9157038 0.12438348 0.38211948]\n", + " [-0.92312507 0.09790932 0.37182506]\n", + " [-0.9298151 0.07107164 0.3610993 ]\n", + " [-0.93572652 0.04397156 0.34997482]\n", + " [-0.94082157 0.01671467 0.33848986]\n", + " [-0.98240225 0.10112774 0.15703185]\n", + " [-0.97911107 0.08975782 0.1824419 ]\n", + " [-0.97496327 0.07808419 0.2082054 ]\n", + " [-0.96993281 0.06615089 0.23421017]\n", + " [-0.96400353 0.05400172 0.26034785]\n", + " [-0.95716964 0.04168132 0.28651168]\n", + " [-0.94943655 0.02923611 0.31259475]\n", + " [-0.94082157 0.01671467 0.33848986]\n", + " [-0.93090924 0.27192863 0.24384996]\n", + " [-0.92568818 0.26005334 0.27472469]\n", + " [-0.91934926 0.24742562 0.30590439]\n", + " [-0.91186297 0.234121 0.33718434]\n", + " [-0.90322252 0.22022036 0.36836404]\n", + " [-0.89344471 0.20580705 0.39924931]\n", + " [-0.93646478 0.26597712 0.22866981]\n", + " [-0.94720328 0.23699967 0.21595627]\n", + " [-0.95707472 0.20699103 0.20288593]\n", + " [-0.96595344 0.1761268 0.18950805]\n", + " [-0.97373531 0.14458936 0.17587912]\n", + " [-0.98033899 0.11256433 0.162064 ]\n", + " [-0.89378403 0.18996957 0.40627782]\n", + " [-0.90475718 0.15912002 0.39508893]\n", + " [-0.91485376 0.12738484 0.38316537]\n", + " [-0.92394798 0.09494093 0.37054871]\n", + " [-0.93193562 0.06196797 0.35728975]\n", + " [-0.93873341 0.02865399 0.34345091]\n", + " [-0.98105498 0.0963011 0.16809885]\n", + " [-0.97644887 0.08215717 0.19949387]\n", + " [-0.97052917 0.06760071 0.23130776]\n", + " [-0.96326201 0.05271243 0.2633395 ]\n", + " [-0.95463685 0.03757459 0.29539235]\n", + " [-0.94466856 0.02227357 0.3272693 ]\n", + " [-0.93249401 0.27592808 0.23306356]\n", + " [-0.93249401 0.27592808 0.23306356]\n", + " [-0.94083651 0.01685092 0.33844159]\n", + " [-0.94083651 0.01685092 0.33844159]\n", + " [-0.93490326 0.26191717 0.23948964]\n", + " [-0.94570338 0.23277021 0.22685489]\n", + " [-0.95562919 0.20259814 0.21383835]\n", + " [-0.96455442 0.17157865 0.20048825]\n", + " [-0.97237468 0.13989475 0.18686077]\n", + " [-0.97900844 0.10773221 0.17302091]\n", + " [-0.92973582 0.24988076 0.27046424]\n", + " [-0.94067803 0.22028801 0.25806596]\n", + " [-0.95072958 0.18969222 0.24521444]\n", + " [-0.95976336 0.15827404 0.23195607]\n", + " [-0.96767458 0.12621649 0.21834675]\n", + " [-0.97438112 0.09370524 0.20445232]\n", + " [-0.92343159 0.2371102 0.30174965]\n", + " [-0.93446623 0.20712847 0.28960432]\n", + " [-0.94460097 0.17616968 0.27693545]\n", + " [-0.95370864 0.14441436 0.26378842]\n", + " [-0.96168423 0.11204414 0.25021902]\n", + " [-0.96844492 0.07924451 0.23629377]\n", + " [-0.91596045 0.22368304 0.33314014]\n", + " [-0.92703683 0.1933722 0.321263 ]\n", + " [-0.93721157 0.1621115 0.30879496]\n", + " [-0.94635781 0.13007993 0.29578049]\n", + " [-0.95437048 0.09745765 0.28227468]\n", + " [-0.96116611 0.06443038 0.26834388]\n", + " [-0.90731539 0.20968078 0.36443483]\n", + " [-0.91838241 0.17910082 0.35284083]\n", + " [-0.92855351 0.14759826 0.34059234]\n", + " [-0.93770228 0.11535059 0.32773264]\n", + " [-0.94572381 0.08253714 0.31431529]\n", + " [-0.95253434 0.04934441 0.30040549]\n", + " [-0.89751319 0.19518682 0.39543922]\n", + " [-0.90851979 0.16439713 0.3841424 ]\n", + " [-0.91864348 0.13271212 0.37213124]\n", + " [-0.92775833 0.10030864 0.35944771]\n", + " [-0.9357599 0.0673661 0.34614335]\n", + " [-0.94256468 0.03407214 0.33228136]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:fp_optics: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:cartToSphere: vec: [[ 0.14212172 -0.77401581 0.61700968]\n", + " [ 0.13500416 -0.75762474 0.63857547]\n", + " [ 0.12763492 -0.74029556 0.66005441]\n", + " [ 0.12003749 -0.72206398 0.68133296]\n", + " [ 0.11223667 -0.70297338 0.70230432]\n", + " [ 0.10425908 -0.68307615 0.72286722]\n", + " [ 0.09613341 -0.66243453 0.74292588]\n", + " [ 0.08789038 -0.64112064 0.76239072]\n", + " [ 0.14212172 -0.77401581 0.61700968]\n", + " [ 0.16982284 -0.765922 0.62009975]\n", + " [ 0.19726687 -0.75715552 0.62273694]\n", + " [ 0.22434792 -0.74775814 0.62492061]\n", + " [ 0.25096205 -0.73777864 0.62665838]\n", + " [ 0.27700702 -0.72727245 0.62796647]\n", + " [ 0.30238157 -0.71630148 0.62887009]\n", + " [ 0.32698455 -0.70493415 0.62940364]\n", + " [ 0.08789038 -0.64112064 0.76239072]\n", + " [ 0.11658592 -0.6328329 0.7654608 ]\n", + " [ 0.14508211 -0.62400279 0.76783573]\n", + " [ 0.17326778 -0.61467339 0.76951601]\n", + " [ 0.20103628 -0.60489409 0.77051123]\n", + " [ 0.22828589 -0.59471997 0.77083961]\n", + " [ 0.2549193 -0.58421166 0.77052766]\n", + " [ 0.2808419 -0.57343566 0.76960988]\n", + " [ 0.32698455 -0.70493415 0.62940364]\n", + " [ 0.32173759 -0.68834353 0.6501293 ]\n", + " [ 0.31599952 -0.67094239 0.67080594]\n", + " [ 0.30979598 -0.65277086 0.69131516]\n", + " [ 0.30315233 -0.63387605 0.71154748]\n", + " [ 0.29609414 -0.61431249 0.73140169]\n", + " [ 0.28864797 -0.5941424 0.75078436]\n", + " [ 0.2808419 -0.57343566 0.76960988]\n", + " [ 0.13914628 -0.76696001 0.6264269 ]\n", + " [ 0.13025176 -0.7462358 0.65281438]\n", + " [ 0.12100226 -0.72413729 0.67895776]\n", + " [ 0.11144285 -0.70074107 0.70465768]\n", + " [ 0.10162257 -0.67614368 0.72972774]\n", + " [ 0.09159508 -0.65046385 0.75399411]\n", + " [ 0.15420076 -0.77051744 0.61848606]\n", + " [ 0.18799289 -0.76014016 0.62196915]\n", + " [ 0.22129344 -0.74879326 0.62477026]\n", + " [ 0.25391024 -0.73656366 0.62689997]\n", + " [ 0.28565499 -0.72355339 0.62838819]\n", + " [ 0.31634138 -0.70987911 0.62928514]\n", + " [ 0.10044733 -0.63765026 0.76374897]\n", + " [ 0.13549661 -0.62712287 0.7670447 ]\n", + " [ 0.17013551 -0.61582276 0.76929593]\n", + " [ 0.20416574 -0.60383827 0.77051651]\n", + " [ 0.2374 -0.59127079 0.77073997]\n", + " [ 0.26966035 -0.57823434 0.77001841]\n", + " [ 0.32467575 -0.69784198 0.63843733]\n", + " [ 0.31791034 -0.67695862 0.6638223 ]\n", + " [ 0.31043295 -0.65489682 0.68901491]\n", + " [ 0.30229034 -0.63174037 0.71380996]\n", + " [ 0.29352972 -0.60758971 0.73802104]\n", + " [ 0.28420055 -0.58256258 0.76147941]\n", + " [ 0.14219289 -0.7739349 0.61709477]\n", + " [ 0.14219289 -0.7739349 0.61709477]\n", + " [ 0.28078184 -0.57354453 0.76955067]\n", + " [ 0.28078184 -0.57354453 0.76955067]\n", + " [ 0.15120185 -0.76352992 0.62782168]\n", + " [ 0.18513213 -0.75312103 0.63129613]\n", + " [ 0.21857489 -0.74174902 0.63406104]\n", + " [ 0.25133789 -0.72950124 0.63612672]\n", + " [ 0.28323332 -0.71648007 0.63752271]\n", + " [ 0.31407579 -0.70280227 0.6382988 ]\n", + " [ 0.14242756 -0.74277436 0.65421757]\n", + " [ 0.17670728 -0.73229104 0.65766585]\n", + " [ 0.21051099 -0.72086673 0.66033043]\n", + " [ 0.24364575 -0.70858999 0.66222124]\n", + " [ 0.27592488 -0.69556409 0.66336722]\n", + " [ 0.30716568 -0.6819061 0.66381723]\n", + " [ 0.13327598 -0.72065121 0.68036707]\n", + " [ 0.16784251 -0.71011654 0.68378607]\n", + " [ 0.20194516 -0.69866898 0.68635254]\n", + " [ 0.23538976 -0.68639801 0.68807662]\n", + " [ 0.26799021 -0.67340743 0.68898743]\n", + " [ 0.2995661 -0.65981438 0.68913361]\n", + " [ 0.12379152 -0.69723727 0.70607071]\n", + " [ 0.15858077 -0.68667535 0.70945691]\n", + " [ 0.1929196 -0.67523499 0.71192678]\n", + " [ 0.22661243 -0.66300603 0.71349128]\n", + " [ 0.25947316 -0.65009231 0.71418041]\n", + " [ 0.29132302 -0.63661056 0.71404334]\n", + " [ 0.11402246 -0.67262933 0.73114203]\n", + " [ 0.14896832 -0.66206505 0.73449187]\n", + " [ 0.18347922 -0.65066315 0.73686691]\n", + " [ 0.21735818 -0.63851327 0.73827923]\n", + " [ 0.25041872 -0.6257186 0.73876025]\n", + " [ 0.28248293 -0.61239495 0.73836023]\n", + " [ 0.10402178 -0.64694627 0.75540717]\n", + " [ 0.13905627 -0.63640483 0.7587175 ]\n", + " [ 0.17367356 -0.62507274 0.76100037]\n", + " [ 0.2076756 -0.61303875 0.7622692 ]\n", + " [ 0.24087532 -0.60040483 0.76255696]\n", + " [ 0.27309492 -0.5872855 0.76191529]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:cartToSphere: vec: [[-1.96209646e-01 -4.52548539e-01 8.69885967e-01]\n", + " [-1.70223599e-01 -4.46473133e-01 8.78456412e-01]\n", + " [-1.43587803e-01 -4.39915966e-01 8.86485468e-01]\n", + " [-1.16401055e-01 -4.32883845e-01 8.93902887e-01]\n", + " [-8.87635730e-02 -4.25388056e-01 9.00647561e-01]\n", + " [-6.07786602e-02 -4.17444925e-01 9.06667353e-01]\n", + " [-3.25534674e-02 -4.09076232e-01 9.11919354e-01]\n", + " [-4.19865926e-03 -4.00309341e-01 9.16370450e-01]\n", + " [-1.96209646e-01 -4.52548539e-01 8.69885967e-01]\n", + " [-1.86574024e-01 -4.77496134e-01 8.58596282e-01]\n", + " [-1.76722555e-01 -5.01942427e-01 8.46653966e-01]\n", + " [-1.66693233e-01 -5.25797127e-01 8.34116747e-01]\n", + " [-1.56524141e-01 -5.48975255e-01 8.21051985e-01]\n", + " [-1.46253033e-01 -5.71396973e-01 8.07536717e-01]\n", + " [-1.35917076e-01 -5.92987166e-01 7.93657841e-01]\n", + " [-1.25552882e-01 -6.13675054e-01 7.79512285e-01]\n", + " [-4.19865926e-03 -4.00309341e-01 9.16370450e-01]\n", + " [ 5.62205661e-03 -4.26135066e-01 9.04642083e-01]\n", + " [ 1.54076453e-02 -4.51494200e-01 8.92141016e-01]\n", + " [ 2.51196044e-02 -4.76292254e-01 8.78928151e-01]\n", + " [ 3.47205729e-02 -5.00442371e-01 8.65073358e-01]\n", + " [ 4.41745073e-02 -5.23865488e-01 8.50654785e-01]\n", + " [ 5.34464803e-02 -5.46489553e-01 8.35758722e-01]\n", + " [ 6.25021519e-02 -5.68248008e-01 8.20480154e-01]\n", + " [-1.25552882e-01 -6.13675054e-01 7.79512285e-01]\n", + " [-9.98512655e-02 -6.09130322e-01 7.86759160e-01]\n", + " [-7.35878931e-02 -6.03917669e-01 7.93642407e-01]\n", + " [-4.68666323e-02 -5.98044811e-01 8.00091196e-01]\n", + " [-1.97916677e-02 -5.91523364e-01 8.06044912e-01]\n", + " [ 7.53212726e-03 -5.84369056e-01 8.11453063e-01]\n", + " [ 3.49989480e-02 -5.76602175e-01 8.16275080e-01]\n", + " [ 6.25021519e-02 -5.68248008e-01 8.20480154e-01]\n", + " [-1.84933186e-01 -4.50045539e-01 8.73646799e-01]\n", + " [-1.52634936e-01 -4.42275734e-01 8.83795650e-01]\n", + " [-1.19458908e-01 -4.33788444e-01 8.93060555e-01]\n", + " [-8.55889127e-02 -4.24602555e-01 9.01325251e-01]\n", + " [-5.12152181e-02 -4.14748167e-01 9.08493786e-01]\n", + " [-1.65366033e-02 -4.04267697e-01 9.14491208e-01]\n", + " [-1.91949673e-01 -4.63461819e-01 8.65077144e-01]\n", + " [-1.79990107e-01 -4.93713062e-01 8.50794320e-01]\n", + " [-1.67744218e-01 -5.23121011e-01 8.35587390e-01]\n", + " [-1.55282106e-01 -5.51527012e-01 8.19576368e-01]\n", + " [-1.42673243e-01 -5.78784038e-01 8.02903097e-01]\n", + " [-1.29985811e-01 -6.04755614e-01 7.85731720e-01]\n", + " [-1.20159127e-05 -4.11651092e-01 9.11341527e-01]\n", + " [ 1.20056863e-02 -4.43001503e-01 8.96440479e-01]\n", + " [ 2.39324540e-02 -4.73556330e-01 8.80438322e-01]\n", + " [ 3.56990060e-02 -5.03152458e-01 8.63460008e-01]\n", + " [ 4.72389581e-02 -5.31644245e-01 8.45649382e-01]\n", + " [ 5.84882824e-02 -5.58901415e-01 8.27168864e-01]\n", + " [-1.14457806e-01 -6.11706517e-01 7.82760850e-01]\n", + " [-8.25662938e-02 -6.05685648e-01 7.91408683e-01]\n", + " [-4.99341097e-02 -5.98668867e-01 7.99438660e-01]\n", + " [-1.67529080e-02 -5.90675945e-01 8.06734943e-01]\n", + " [ 1.67842141e-02 -5.81735887e-01 8.13204555e-01]\n", + " [ 5.04821050e-02 -5.71888101e-01 8.18776866e-01]\n", + " [-1.96089462e-01 -4.52614650e-01 8.69878670e-01]\n", + " [-1.96089462e-01 -4.52614650e-01 8.69878670e-01]\n", + " [ 6.23775977e-02 -5.68204686e-01 8.20519634e-01]\n", + " [ 6.23775977e-02 -5.68204686e-01 8.20519634e-01]\n", + " [-1.80779068e-01 -4.60935242e-01 8.68825432e-01]\n", + " [-1.68793764e-01 -4.91306943e-01 8.54474197e-01]\n", + " [-1.56544437e-01 -5.20834940e-01 8.39181032e-01]\n", + " [-1.44101635e-01 -5.49360499e-01 8.23066073e-01]\n", + " [-1.31535183e-01 -5.76736915e-01 8.06271063e-01]\n", + " [-1.18913403e-01 -6.02828211e-01 7.88959917e-01]\n", + " [-1.48445369e-01 -4.53272563e-01 8.78924318e-01]\n", + " [-1.36402046e-01 -4.83948997e-01 8.64400283e-01]\n", + " [-1.24158301e-01 -5.13782352e-01 8.48888927e-01]\n", + " [-1.11785784e-01 -5.42613446e-01 8.32511013e-01]\n", + " [-9.93551356e-02 -5.70296467e-01 8.15408178e-01]\n", + " [-8.69350174e-02 -5.96697163e-01 7.97743567e-01]\n", + " [-1.15241664e-01 -4.44872361e-01 8.88148603e-01]\n", + " [-1.03163260e-01 -4.75799043e-01 8.73483035e-01]\n", + " [-9.09491665e-02 -5.05886394e-01 8.57792053e-01]\n", + " [-7.86716360e-02 -5.34974459e-01 8.41197422e-01]\n", + " [-6.64015476e-02 -5.62918087e-01 8.23841041e-01]\n", + " [-5.42074710e-02 -5.89584805e-01 8.05885419e-01]\n", + " [-8.13520236e-02 -4.35752985e-01 8.96382276e-01]\n", + " [-6.92625730e-02 -4.66874244e-01 8.81607133e-01]\n", + " [-5.71036748e-02 -4.97163760e-01 8.65775587e-01]\n", + " [-4.49474875e-02 -5.26460583e-01 8.49010588e-01]\n", + " [-3.28643379e-02 -5.54619848e-01 8.31454605e-01]\n", + " [-2.09220465e-02 -5.81510499e-01 8.13269825e-01]\n", + " [-4.69669760e-02 -4.25943872e-01 9.03529701e-01]\n", + " [-3.48912286e-02 -4.57202429e-01 8.88677974e-01]\n", + " [-2.28136922e-02 -4.87641311e-01 8.72745946e-01]\n", + " [-1.08056950e-02 -5.17098528e-01 8.55857669e-01]\n", + " [ 1.06376201e-03 -5.45429102e-01 8.38156288e-01]\n", + " [ 1.27282385e-02 -5.72502786e-01 8.19803972e-01]\n", + " [-1.22854813e-02 -4.15486845e-01 9.09516217e-01]\n", + " [-2.48306263e-04 -4.46823847e-01 8.94621925e-01]\n", + " [ 1.17221541e-02 -4.77358108e-01 8.78630655e-01]\n", + " [ 2.35560104e-02 -5.06926753e-01 8.61667211e-01]\n", + " [ 3.51861452e-02 -5.35384357e-01 8.43875302e-01]\n", + " [ 4.65478848e-02 -5.62600775e-01 8.25417265e-01]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:fp_optics: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:cartToSphere: vec: [[ 0.83274012 -0.51016029 -0.21512872]\n", + " [ 0.84792769 -0.48866522 -0.20548708]\n", + " [ 0.86273047 -0.46634845 -0.19548722]\n", + " [ 0.87705137 -0.44327912 -0.18516079]\n", + " [ 0.89080324 -0.41952964 -0.17454071]\n", + " [ 0.90390775 -0.39517777 -0.16366217]\n", + " [ 0.91629473 -0.3703085 -0.15256341]\n", + " [ 0.92790253 -0.3450147 -0.14128604]\n", + " [ 0.83274012 -0.51016029 -0.21512872]\n", + " [ 0.83272935 -0.49819402 -0.24158757]\n", + " [ 0.8320743 -0.48577286 -0.26772577]\n", + " [ 0.83078913 -0.47294896 -0.29344285]\n", + " [ 0.82889805 -0.45977827 -0.31864081]\n", + " [ 0.82643523 -0.44632033 -0.34322438]\n", + " [ 0.82344425 -0.43263828 -0.36710174]\n", + " [ 0.81997676 -0.41879885 -0.39018667]\n", + " [ 0.92790253 -0.3450147 -0.14128604]\n", + " [ 0.92780193 -0.33275043 -0.16870306]\n", + " [ 0.92686961 -0.32022541 -0.19587858]\n", + " [ 0.92512118 -0.3074935 -0.2227073 ]\n", + " [ 0.92258273 -0.2946105 -0.24908986]\n", + " [ 0.91929018 -0.28163403 -0.27493242]\n", + " [ 0.91528911 -0.26862413 -0.30014483]\n", + " [ 0.91063489 -0.25564444 -0.32463828]\n", + " [ 0.81997676 -0.41879885 -0.39018667]\n", + " [ 0.83429296 -0.39715832 -0.38238792]\n", + " [ 0.84829831 -0.37483568 -0.37401631]\n", + " [ 0.86189812 -0.35190151 -0.36509856]\n", + " [ 0.87500511 -0.32843202 -0.35566624]\n", + " [ 0.88754099 -0.30450824 -0.34575384]\n", + " [ 0.89943716 -0.28021574 -0.33539818]\n", + " [ 0.91063489 -0.25564444 -0.32463828]\n", + " [ 0.83940368 -0.50085347 -0.21106223]\n", + " [ 0.85777163 -0.4739475 -0.19900148]\n", + " [ 0.875464 -0.44587579 -0.18643382]\n", + " [ 0.89231627 -0.41677021 -0.17341932]\n", + " [ 0.90818415 -0.38677415 -0.16002285]\n", + " [ 0.92294193 -0.35604741 -0.1463162 ]\n", + " [ 0.83286759 -0.50492987 -0.22666582]\n", + " [ 0.83241972 -0.48995138 -0.25889197]\n", + " [ 0.8310169 -0.47434112 -0.29053642]\n", + " [ 0.82869953 -0.45820054 -0.32141774]\n", + " [ 0.82553044 -0.44163925 -0.35136058]\n", + " [ 0.82159335 -0.424775 -0.38019807]\n", + " [ 0.92792319 -0.33978994 -0.15330151]\n", + " [ 0.92723923 -0.3245767 -0.18675483]\n", + " [ 0.92532043 -0.3090249 -0.21974012]\n", + " [ 0.92221045 -0.29323651 -0.25207189]\n", + " [ 0.91797543 -0.27731767 -0.28357719]\n", + " [ 0.9127033 -0.26138039 -0.31409071]\n", + " [ 0.82626359 -0.40949905 -0.38678031]\n", + " [ 0.84361369 -0.38250885 -0.37683275]\n", + " [ 0.86040203 -0.35456339 -0.36605074]\n", + " [ 0.8764647 -0.32580073 -0.35449051]\n", + " [ 0.89165764 -0.29636999 -0.34221554]\n", + " [ 0.90585866 -0.26643055 -0.32929448]\n", + " [ 0.83279366 -0.51004817 -0.2151873 ]\n", + " [ 0.83279366 -0.51004817 -0.2151873 ]\n", + " [ 0.9106148 -0.2557731 -0.32459329]\n", + " [ 0.9106148 -0.2557731 -0.32459329]\n", + " [ 0.83947638 -0.49571638 -0.22258633]\n", + " [ 0.83900871 -0.48069432 -0.25494578]\n", + " [ 0.83756192 -0.46505513 -0.28672941]\n", + " [ 0.83517644 -0.44890055 -0.31775559]\n", + " [ 0.83191542 -0.43234022 -0.34784862]\n", + " [ 0.82786367 -0.41549155 -0.37684017]\n", + " [ 0.85784105 -0.46876367 -0.21064033]\n", + " [ 0.85732125 -0.45363791 -0.24333705]\n", + " [ 0.85575891 -0.43793869 -0.27547485]\n", + " [ 0.85319433 -0.42176896 -0.30687193]\n", + " [ 0.84969092 -0.40523867 -0.33735286]\n", + " [ 0.84533509 -0.38846459 -0.36674767]\n", + " [ 0.87553039 -0.44065487 -0.19816612]\n", + " [ 0.874964 -0.42545521 -0.23114036]\n", + " [ 0.87329898 -0.40972932 -0.26357308]\n", + " [ 0.87057576 -0.39358133 -0.29528222]\n", + " [ 0.86685776 -0.37712148 -0.32609358]\n", + " [ 0.86223175 -0.36046597 -0.35583801]\n", + " [ 0.89237986 -0.41152217 -0.18522335]\n", + " [ 0.89177205 -0.39627976 -0.21841467]\n", + " [ 0.89001655 -0.38056244 -0.25108319]\n", + " [ 0.88715443 -0.36447484 -0.28304613]\n", + " [ 0.8832495 -0.34812692 -0.3141305 ]\n", + " [ 0.87838867 -0.33163399 -0.34416892]\n", + " [ 0.90824514 -0.38150934 -0.1718761 ]\n", + " [ 0.90760109 -0.36625678 -0.20522239]\n", + " [ 0.9057673 -0.35058482 -0.23806699]\n", + " [ 0.90278587 -0.33459762 -0.27022601]\n", + " [ 0.89872152 -0.31840396 -0.30152702]\n", + " [ 0.89366144 -0.30211788 -0.33180419]\n", + " [ 0.92300057 -0.35077652 -0.15819535]\n", + " [ 0.92232594 -0.33554716 -0.19163236]\n", + " [ 0.92042685 -0.31995762 -0.22459195]\n", + " [ 0.91734659 -0.30411059 -0.25688903]\n", + " [ 0.91315096 -0.28811296 -0.28835091]\n", + " [ 0.90792767 -0.27207724 -0.31881236]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:cartToSphere: vec: [[0.40508383 0.89724536 0.17566403]\n", + " [0.42927101 0.88720631 0.16908981]\n", + " [0.45365598 0.87625595 0.16239385]\n", + " [0.47811979 0.86440384 0.15558752]\n", + " [0.50254524 0.85166979 0.14868376]\n", + " [0.52681943 0.83808286 0.14169831]\n", + " [0.55083483 0.82368095 0.13465022]\n", + " [0.57448971 0.80851069 0.12756193]\n", + " [0.40508383 0.89724536 0.17566403]\n", + " [0.40660511 0.89102941 0.20183872]\n", + " [0.40798723 0.88395804 0.22839571]\n", + " [0.40919846 0.87602502 0.25521908]\n", + " [0.41021014 0.86723421 0.28219224]\n", + " [0.41099866 0.8575986 0.30920016]\n", + " [0.41154641 0.84713988 0.3361303 ]\n", + " [0.41184192 0.83588842 0.36287295]\n", + " [0.57448971 0.80851069 0.12756193]\n", + " [0.57782658 0.80142939 0.15436118]\n", + " [0.58077033 0.7935568 0.18158588]\n", + " [0.58328258 0.78488933 0.20911761]\n", + " [0.58533133 0.77543088 0.2368421 ]\n", + " [0.58689079 0.76519358 0.26464691]\n", + " [0.58794134 0.75419884 0.29241936]\n", + " [0.58846984 0.74247817 0.32004595]\n", + " [0.41184192 0.83588842 0.36287295]\n", + " [0.43720596 0.82509886 0.35785867]\n", + " [0.46272177 0.81342486 0.35246073]\n", + " [0.48826655 0.80087794 0.34668473]\n", + " [0.51372412 0.78747709 0.34053982]\n", + " [0.53898271 0.77324995 0.33403915]\n", + " [0.56393337 0.75823417 0.32720039]\n", + " [0.58846984 0.74247817 0.32004595]\n", + " [0.41560351 0.89296052 0.17290237]\n", + " [0.44539656 0.88004274 0.16476252]\n", + " [0.47536846 0.86576438 0.15645081]\n", + " [0.50530253 0.85015775 0.14799035]\n", + " [0.53499103 0.83327631 0.13941014]\n", + " [0.56423838 0.81519345 0.13074668]\n", + " [0.40584484 0.89460658 0.18700008]\n", + " [0.40762096 0.88641397 0.21935229]\n", + " [0.40915613 0.87692911 0.25216383]\n", + " [0.41039616 0.86615498 0.28522016]\n", + " [0.4112977 0.85411545 0.31830961]\n", + " [0.41183087 0.84085405 0.35122614]\n", + " [0.57590971 0.80557331 0.13921077]\n", + " [0.57973938 0.7963637 0.1723575 ]\n", + " [0.58293986 0.78596106 0.20602506]\n", + " [0.58544963 0.77436946 0.2400014 ]\n", + " [0.58722119 0.76161133 0.27407927]\n", + " [0.58822111 0.7477303 0.30805085]\n", + " [0.42287329 0.83133326 0.36064274]\n", + " [0.45407739 0.8175141 0.35423779]\n", + " [0.48538665 0.80237706 0.34726193]\n", + " [0.51658448 0.78595397 0.33973053]\n", + " [0.54746496 0.76829587 0.33166785]\n", + " [0.57782855 0.74947656 0.32310842]\n", + " [0.40517148 0.89719277 0.1757305 ]\n", + " [0.40517148 0.89719277 0.1757305 ]\n", + " [0.58838585 0.74257452 0.31997683]\n", + " [0.58838585 0.74257452 0.31997683]\n", + " [0.41633407 0.89035475 0.18421281]\n", + " [0.41825607 0.88210527 0.21668446]\n", + " [0.4199106 0.87256267 0.24961866]\n", + " [0.42124163 0.86173078 0.28279949]\n", + " [0.42220527 0.84963364 0.31601486]\n", + " [0.42277163 0.83631475 0.34905842]\n", + " [0.44628646 0.87737769 0.17617261]\n", + " [0.44861193 0.86896119 0.20893491]\n", + " [0.45059384 0.85925545 0.24216783]\n", + " [0.45217327 0.84826551 0.2756537 ]\n", + " [0.45330594 0.83601511 0.30918029]\n", + " [0.45396257 0.8225472 0.34254064]\n", + " [0.47641091 0.86303564 0.16793489]\n", + " [0.47912 0.85444589 0.20091356]\n", + " [0.48141135 0.84457874 0.23437123]\n", + " [0.48322516 0.83343915 0.26809073]\n", + " [0.48451746 0.82104989 0.30186074]\n", + " [0.4852594 0.80745319 0.33547377]\n", + " [0.50648892 0.84736173 0.15952141]\n", + " [0.5095593 0.83859357 0.19263995]\n", + " [0.5121423 0.82856642 0.22624753]\n", + " [0.51417791 0.81728463 0.26012865]\n", + " [0.51562202 0.80477003 0.29407336]\n", + " [0.51644538 0.79106449 0.32787366]\n", + " [0.53631214 0.83040962 0.15096079]\n", + " [0.5397211 0.82145765 0.18414251]\n", + " [0.54257865 0.81127092 0.21782541]\n", + " [0.5448244 0.79985325 0.25179585]\n", + " [0.54641324 0.78722619 0.28584525]\n", + " [0.54731453 0.7734319 0.31976538]\n", + " [0.56568468 0.81225273 0.14228963]\n", + " [0.5694089 0.80311129 0.17545872]\n", + " [0.57252331 0.79276491 0.20914316]\n", + " [0.57496672 0.78121748 0.24313066]\n", + " [0.5766923 0.76849109 0.2772137 ]\n", + " [0.5776674 0.75462886 0.31118427]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:fp_optics: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:fp_optics: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:fp_optics: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:cartToSphere: vec: [[-0.23187361 0.17343145 0.95716047]\n", + " [-0.24070396 0.19903003 0.94997298]\n", + " [-0.24951555 0.2249755 0.94187473]\n", + " [-0.25826275 0.25115596 0.93285639]\n", + " [-0.26690244 0.27746168 0.92291826]\n", + " [-0.27539359 0.30378354 0.91207123]\n", + " [-0.28369718 0.33001265 0.90033747]\n", + " [-0.29177647 0.35604088 0.88775074]\n", + " [-0.23187361 0.17343145 0.95716047]\n", + " [-0.20511686 0.18390049 0.9613052 ]\n", + " [-0.17830453 0.19427232 0.96460653]\n", + " [-0.15154468 0.20451118 0.96706225]\n", + " [-0.12494758 0.21458526 0.96868017]\n", + " [-0.09862598 0.22446717 0.9694779 ]\n", + " [-0.07269581 0.23413418 0.9694826 ]\n", + " [-0.04727712 0.24356838 0.96873078]\n", + " [-0.29177647 0.35604088 0.88775074]\n", + " [-0.26405064 0.36672949 0.8920688 ]\n", + " [-0.2361777 0.37705668 0.89557152]\n", + " [-0.20827125 0.38698629 0.89825648]\n", + " [-0.18044485 0.39648753 0.90013182]\n", + " [-0.15281135 0.40553497 0.90121589]\n", + " [-0.12548318 0.41410822 0.90153666]\n", + " [-0.09857392 0.42219128 0.90113135]\n", + " [-0.04727712 0.24356838 0.96873078]\n", + " [-0.05409037 0.26880552 0.96167449]\n", + " [-0.06114823 0.29432629 0.95374679]\n", + " [-0.06840275 0.32001272 0.9449407 ]\n", + " [-0.07581054 0.34575111 0.93525875]\n", + " [-0.0833321 0.37143122 0.92471326]\n", + " [-0.09093113 0.39694593 0.91332659]\n", + " [-0.09857392 0.42219128 0.90113135]\n", + " [-0.23563128 0.18457861 0.95415336]\n", + " [-0.24644617 0.2162002 0.9447337 ]\n", + " [-0.25718738 0.24823123 0.93393571]\n", + " [-0.26777457 0.28046888 0.92175593]\n", + " [-0.27813217 0.31271227 0.90821448]\n", + " [-0.28818928 0.34476114 0.89335698]\n", + " [-0.22025102 0.17809246 0.95904774]\n", + " [-0.187406 0.19086287 0.96356129]\n", + " [-0.15458456 0.20345113 0.96680466]\n", + " [-0.12198881 0.21579702 0.9687881 ]\n", + " [-0.08982638 0.2278501 0.96954399]\n", + " [-0.05831236 0.23957058 0.96912621]\n", + " [-0.27968604 0.36065453 0.88977752]\n", + " [-0.24559216 0.3735164 0.89452221]\n", + " [-0.21139018 0.38579909 0.89803856]\n", + " [-0.17728928 0.39744363 0.9003372 ]\n", + " [-0.14349718 0.40840319 0.90145182]\n", + " [-0.11022127 0.41864208 0.90143778]\n", + " [-0.05030083 0.25449769 0.96576434]\n", + " [-0.05882335 0.28563506 0.95653146]\n", + " [-0.06766493 0.31708077 0.94598163]\n", + " [-0.07674382 0.34862375 0.93411555]\n", + " [-0.0859872 0.38006104 0.92095592]\n", + " [-0.09532936 0.41119672 0.90654816]\n", + " [-0.2318125 0.17355419 0.95715302]\n", + " [-0.2318125 0.17355419 0.95715302]\n", + " [-0.09863892 0.42207873 0.90117696]\n", + " [-0.09863892 0.42207873 0.90117696]\n", + " [-0.22402369 0.1891328 0.95605553]\n", + " [-0.1910409 0.20193074 0.96058698]\n", + " [-0.1580716 0.2145202 0.96384358]\n", + " [-0.12531802 0.2268405 0.96583579]\n", + " [-0.09298733 0.23884079 0.96659631]\n", + " [-0.06129366 0.25048098 0.96617926]\n", + " [-0.23472235 0.22079396 0.94665487]\n", + " [-0.20139128 0.2336552 0.95123436]\n", + " [-0.16804715 0.2462349 0.95453053]\n", + " [-0.13489303 0.25847137 0.95655445]\n", + " [-0.10213514 0.27031298 0.9573397 ]\n", + " [-0.06998495 0.28171906 0.95694121]\n", + " [-0.24536901 0.2528562 0.93587274]\n", + " [-0.21175238 0.26575804 0.94049646]\n", + " [-0.17809852 0.27830702 0.94383585]\n", + " [-0.14461192 0.29044105 0.94590242]\n", + " [-0.1114985 0.30210845 0.94673046]\n", + " [-0.07896757 0.31326865 0.94637565]\n", + " [-0.2558839 0.28511643 0.92370561]\n", + " [-0.22204596 0.2980351 0.9283699 ]\n", + " [-0.18814831 0.31053105 0.93175677]\n", + " [-0.15439712 0.32254246 0.93387788]\n", + " [-0.12099858 0.33401842 0.93476791]\n", + " [-0.08816058 0.34491927 0.93448297]\n", + " [-0.26619224 0.31737345 0.91017349]\n", + " [-0.23219927 0.33028454 0.91487465]\n", + " [-0.19812534 0.34270473 0.91831357]\n", + " [-0.16417818 0.35457313 0.92050172]\n", + " [-0.13056461 0.36584029 0.92147369]\n", + " [-0.09749185 0.37646807 0.92128559]\n", + " [-0.27622377 0.34942683 0.89532191]\n", + " [-0.24214399 0.36230582 0.90005599]\n", + " [-0.207963 0.37462811 0.90355142]\n", + " [-0.17388971 0.38633419 0.90581911]\n", + " [-0.14013163 0.39737652 0.90689306]\n", + " [-0.106896 0.40771876 0.9068289 ]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:fp_optics: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:cartToSphere: vec: [[-1.25828803e-01 2.38682823e-01 -9.62911015e-01]\n", + " [-1.42764629e-01 2.16565157e-01 -9.65773158e-01]\n", + " [-1.59923770e-01 1.93831733e-01 -9.67912004e-01]\n", + " [-1.77231450e-01 1.70563654e-01 -9.69276562e-01]\n", + " [-1.94614114e-01 1.46844623e-01 -9.69825759e-01]\n", + " [-2.11998758e-01 1.22761999e-01 -9.69528761e-01]\n", + " [-2.29312936e-01 9.84069724e-02 -9.68365450e-01]\n", + " [-2.46485280e-01 7.38740351e-02 -9.66326877e-01]\n", + " [-1.25828803e-01 2.38682823e-01 -9.62911015e-01]\n", + " [-1.03037628e-01 2.22000567e-01 -9.69587023e-01]\n", + " [-8.02937443e-02 2.05108146e-01 -9.75440189e-01]\n", + " [-5.76889989e-02 1.88071991e-01 -9.80459538e-01]\n", + " [-3.53169489e-02 1.70959095e-01 -9.84644962e-01]\n", + " [-1.32732743e-02 1.53836582e-01 -9.88007149e-01]\n", + " [ 8.34325194e-03 1.36771546e-01 -9.90567481e-01]\n", + " [ 2.94293451e-02 1.19831225e-01 -9.92357995e-01]\n", + " [-2.46485280e-01 7.38740351e-02 -9.66326877e-01]\n", + " [-2.22813210e-01 5.67380875e-02 -9.73208643e-01]\n", + " [-1.99019213e-01 3.96045674e-02 -9.79194991e-01]\n", + " [-1.75199938e-01 2.25417055e-02 -9.84274785e-01]\n", + " [-1.51452556e-01 5.61689756e-03 -9.88448569e-01]\n", + " [-1.27874034e-01 -1.11037891e-02 -9.91728258e-01]\n", + " [-1.04561049e-01 -2.75556521e-02 -9.94136647e-01]\n", + " [-8.16108133e-02 -4.36747707e-02 -9.95706879e-01]\n", + " [ 2.94293451e-02 1.19831225e-01 -9.92357995e-01]\n", + " [ 1.45310884e-02 9.74146676e-02 -9.95137794e-01]\n", + " [-8.14798843e-04 7.45384398e-02 -9.97217808e-01]\n", + " [-1.65286522e-02 5.12889819e-02 -9.98547066e-01]\n", + " [-3.25355589e-02 2.77534926e-02 -9.99085172e-01]\n", + " [-4.87640106e-02 4.02060819e-03 -9.98802236e-01]\n", + " [-6.51448716e-02 -1.98193858e-02 -9.97678975e-01]\n", + " [-8.16108133e-02 -4.36747707e-02 -9.95706879e-01]\n", + " [-1.33102325e-01 2.29063450e-01 -9.64268483e-01]\n", + " [-1.54017826e-01 2.01531219e-01 -9.67297099e-01]\n", + " [-1.75194409e-01 1.73154584e-01 -9.69187499e-01]\n", + " [-1.96496223e-01 1.44086478e-01 -9.69859949e-01]\n", + " [-2.17788872e-01 1.14487747e-01 -9.69257738e-01]\n", + " [-2.38939405e-01 8.45276860e-02 -9.67348454e-01]\n", + " [-1.15948883e-01 2.31364640e-01 -9.65932844e-01]\n", + " [-8.80353694e-02 2.10768689e-01 -9.73563729e-01]\n", + " [-6.02838599e-02 1.89923129e-01 -9.79946458e-01]\n", + " [-3.28658804e-02 1.68951083e-01 -9.85076325e-01]\n", + " [-5.95768157e-03 1.4DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "7976112e-01 -9.88972991e-01]\n", + " [ 2.02571098e-02 1.27121767e-01 -9.91680244e-01]\n", + " [-2.36126915e-01 6.64908641e-02 -9.69444710e-01]\n", + " [-2.07020470e-01 4.54819476e-02 -9.77278833e-01]\n", + " [-1.77826933e-01 2.45443688e-02 -9.83755638e-01]\n", + " [-1.48725024e-01 3.80258588e-03 -9.88871280e-01]\n", + " [-1.19893238e-01 -1.66217749e-02 -9.92647635e-01]\n", + " [-9.15096977e-02 -3.66099735e-02 -9.95130989e-01]\n", + " [ 2.29223505e-02 1.10177133e-01 -9.93647606e-01]\n", + " [ 4.35006243e-03 8.23830579e-02 -9.96591245e-01]\n", + " [-1.48146710e-02 5.39842676e-02 -9.98431883e-01]\n", + " [-3.44320393e-02 2.51409276e-02 -9.99090771e-01]\n", + " [-5.43702845e-02 -3.98376212e-03 -9.98512895e-01]\n", + " [-7.45028899e-02 -3.32229675e-02 -9.96667223e-01]\n", + " [-1.25808332e-01 2.38551713e-01 -9.62946179e-01]\n", + " [-1.25808332e-01 2.38551713e-01 -9.62946179e-01]\n", + " [-8.16321853e-02 -4.35387881e-02 -9.95711083e-01]\n", + " [-8.16321853e-02 -4.35387881e-02 -9.95711083e-01]\n", + " [-1.23202726e-01 2.21849601e-01 -9.67266170e-01]\n", + " [-9.51640410e-02 2.01189966e-01 -9.74918665e-01]\n", + " [-6.72707947e-02 1.80299162e-01 -9.81308745e-01]\n", + " [-3.96945228e-02 1.59300812e-01 -9.86431749e-01]\n", + " [-1.26108297e-02 1.38318819e-01 -9.90307463e-01]\n", + " [ 1.37980228e-02 1.17476839e-01 -9.92979762e-01]\n", + " [-1.44016835e-01 1.94250499e-01 -9.70322573e-01]\n", + " [-1.15659270e-01 1.73436569e-01 -9.78030005e-01]\n", + " [-8.74016615e-02 1.52444619e-01 -9.84439733e-01]\n", + " [-5.94162194e-02 1.31399505e-01 -9.89547312e-01]\n", + " [-3.18775292e-02 1.10425832e-01 -9.93373021e-01]\n", + " [-4.96472122e-03 8.96472993e-02 -9.95961201e-01]\n", + " [-1.65110576e-01 1.65820558e-01 -9.72235589e-01]\n", + " [-1.36487415e-01 1.44892045e-01 -9.79988511e-01]\n", + " [-1.07920089e-01 1.23840342e-01 -9.86416152e-01]\n", + " [-7.95821917e-02 1.02791103e-01 -9.91514329e-01]\n", + " [-5.16483787e-02 8.18691257e-02 -9.95303919e-01]\n", + " [-2.42959356e-02 6.11976631e-02 -9.97829922e-01]\n", + " [-1.86348625e-01 1.36713123e-01 -9.72925337e-01]\n", + " [-1.57514412e-01 1.15711039e-01 -9.80714110e-01]\n", + " [-1.28692664e-01 9.46423431e-02 -9.87158055e-01]\n", + " [-1.00058679e-01 7.36329625e-02 -9.92253217e-01]\n", + " [-7.17879657e-02 5.28073173e-02 -9.96021021e-01]\n", + " [-4.40571647e-02 3.22877082e-02 -9.98507121e-01]\n", + " [-2.07597154e-01 1.07089433e-01 -9.72334960e-01]\n", + " [-1.78608085e-01 8.60557459e-02 -9.80149764e-01]\n", + " [-1.49588668e-01 6.50134913e-02 -9.86608573e-01]\n", + " [-1.20715883e-01 4.40883178e-02 -9.91707566e-01]\n", + " [-9.21664869e-02 2.34037368e-02 -9.95468535e-01]\n", + " [-6.41173884e-02 3.08068103e-03 -9.97937608e-01]\n", + " [-2.28723685e-01 7.71190639e-02 -9.70431928e-01]\n", + " [-1.99637504e-01 5.60961994e-02 -9.78262789e-01]\n", + " [-1.70478864e-01 3.51237505e-02 -9.84735131e-01]\n", + " [-1.41426116e-01 1.43265673e-02 -9.89845141e-01]\n", + " [-1.12657327e-01 -6.17317694e-03 -9.93614723e-01]\n", + " [-8.43502449e-02 -2.62561590e-02 -9.96090182e-01]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:fp_optics: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:cartToSphere: vec: [[-2.21891086e-01 -3.94352162e-01 8.91768310e-01]\n", + " [-2.14432553e-01 -3.71189526e-01 9.03458364e-01]\n", + " [-2.06508769e-01 -3.47318980e-01 9.14726000e-01]\n", + " [-1.98161274e-01 -3.22823230e-01 9.25482183e-01]\n", + " [-1.89429234e-01 -2.97787681e-01 9.35649006e-01]\n", + " [-1.80350456e-01 -2.72301262e-01 9.45159106e-01]\n", + " [-1.70962301e-01 -2.46456847e-01 9.53955405e-01]\n", + " [-1.61302315e-01 -2.20351222e-01 9.61991113e-01]\n", + " [-2.21891086e-01 -3.94352162e-01 8.91768310e-01]\n", + " [-1.97480746e-01 -4.05702943e-01 8.92416089e-01]\n", + " [-1.72336966e-01 -4.16867561e-01 8.92480480e-01]\n", + " [-1.46568147e-01 -4.27793166e-01 8.91914113e-01]\n", + " [-1.20280295e-01 DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "-4.38429210e-01 8.90680907e-01]\n", + " [-9.35785173e-02 -4.48727458e-01 8.88755720e-01]\n", + " [-6.65680828e-02 -4.58642302e-01 8.86124105e-01]\n", + " [-3.93548914e-02 -4.68131245e-01 8.82782153e-01]\n", + " [-1.61302315e-01 -2.20351222e-01 9.61991113e-01]\n", + " [-1.35382783e-01 -2.30561587e-01 9.63593720e-01]\n", + " [-1.08820734e-01 -2.40794214e-01 9.64456424e-01]\n", + " [-8.17167078e-02 -2.50997879e-01 9.64532241e-01]\n", + " [-5.41726856e-02 -2.61123618e-01 9.63784092e-01]\n", + " [-2.62934699e-02 -2.71124340e-01 9.62185141e-01]\n", + " [ 1.81300843e-03 -2.80954875e-01 9.59719267e-01]\n", + " [ 3.00362317e-02 -2.90572315e-01 9.56381490e-01]\n", + " [-3.93548914e-02 -4.68131245e-01 8.82782153e-01]\n", + " [-2.99026749e-02 -4.44814835e-01 8.95123228e-01]\n", + " [-2.02331459e-02 -4.20678448e-01 9.06984158e-01]\n", + " [-1.03840038e-02 -3.95798645e-01 9.18278610e-01]\n", + " [-3.93271618e-04 -3.70257062e-01 9.28929251e-01]\n", + " [ 9.70023717e-03 -3.44141572e-01 9.38867661e-01]\n", + " [ 1.98568440e-02 -3.17546537e-01 9.48034758e-01]\n", + " [ 3.00362317e-02 -2.90572315e-01 9.56381490e-01]\n", + " [-2.18616513e-01 -3.84384325e-01 8.96914439e-01]\n", + " [-2.09155686e-01 -3.55509246e-01 9.10970403e-01]\n", + " [-1.99037787e-01 -3.25652684e-01 9.24302055e-01]\n", + " [-1.88335856e-01 -2.94970689e-01 9.36761388e-01]\n", + " [-1.77119593e-01 -2.63627028e-01 9.48224362e-01]\n", + " [-1.65457837e-01 -2.31794319e-01 9.58590162e-01]\n", + " [-2.11320168e-01 -3.99242483e-01 8.92159866e-01]\n", + " [-1.80894288e-01 -4.13035249e-01 8.92568843e-01]\n", + " [-1.49474857e-01 -4.26495745e-01 8.92053051e-01]\n", + " [-1.17257939e-01 -4.39529971e-01 8.90541397e-01]\n", + " [-8.44371476e-02 -4.52049161e-01 8.87987570e-01]\n", + " [-5.12065445e-02 -4.63970618e-01 8.84369355e-01]\n", + " [-1.50120347e-01 -2.24886808e-01 9.62751165e-01]\n", + " [-1.17908934e-01 -2.37423118e-01 9.64223909e-01]\n", + " [-8.48322178e-02 -2.49941517e-01 9.64537575e-01]\n", + " [-5.10772324e-02 -2.62350959e-01 9.63619785e-01]\n", + " [-1.68369464e-02 -2.74564756e-01 9.61421194e-01]\n", + " [ 1.76888205e-DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "02 -2.86500660e-01 9.57916738e-01]\n", + " [-3.53564935e-02 -4.58038984e-01 8.88228691e-01]\n", + " [-2.36218798e-02 -4.28901222e-01 9.03042495e-01]\n", + " [-1.15981393e-02 -3.98607488e-01 9.17048283e-01]\n", + " [ 6.44906990e-04 -3.67305874e-01 9.30099983e-01]\n", + " [ 1.30358023e-02 -3.35158180e-01 9.42071686e-01]\n", + " [ 2.55012201e-02 -3.02340661e-01 9.52858758e-01]\n", + " [-2.21784320e-01 -3.94313322e-01 8.91812043e-01]\n", + " [-2.21784320e-01 -3.94313322e-01 8.91812043e-01]\n", + " [ 2.99048439e-02 -2.90632606e-01 9.56367287e-01]\n", + " [ 2.99048439e-02 -2.90632606e-01 9.56367287e-01]\n", + " [-2.08088542e-01 -3.89293515e-01 8.97301353e-01]\n", + " [-1.77489343e-01 -4.03041947e-01 8.97805503e-01]\n", + " [-1.45906275e-01 -4.16476064e-01 8.97362272e-01]\n", + " [-1.13533977e-01 -4.29501516e-01 8.95900934e-01]\n", + " [-8.05653418e-02 -4.42029076e-01 8.93375353e-01]\n", + " [-4.71944169e-02 -4.53975561e-01 8.89763383e-01]\n", + " [-1.98464334e-01 -3.60353782e-01 9.11458754e-01]\n", + " [-1.67421853e-01 -3.73954333e-01 9.12210546e-01]\n", + " [-1.35420604e-01 -3.87292431e-01 9.11957144e-01]\n", + " [-1.02651701e-01 -4.00273033e-01 9.10628424e-01]\n", + " [-6.93066594e-02 -4.12805972e-01 9.08178295e-01]\n", + " [-3.55800679e-02 -4.24807004e-01 9.04584472e-01]\n", + " [-1.88207725e-01 -3.30419917e-01 9.24878657e-01]\n", + " [-1.56789633e-01 -3.43837534e-01 9.25847051e-01]\n", + " [-1.24435194e-01 -3.57046062e-01 9.25761304e-01]\n", + " [-9.13330304e-02 -3.69950399e-01 9.24551232e-01]\n", + " [-5.76742114e-02 -3.82460118e-01 9.22170236e-01]\n", + " [-2.36544828e-02 -3.94490490e-01 9.18595514e-01]\n", + " [-1.77390517e-01 -2.99647344e-01 9.37413502e-01]\n", + " [-1.45661603e-01 -3.12845213e-01 9.38568362e-01]\n", + " [-1.13017347e-01 -3.25888988e-01 9.38628492e-01]\n", + " [-7.96449531e-02 -3.38684193e-01 9.37523173e-01]\n", + " [-4.57357365e-02 -3.51140859e-01 9.35204972e-01]\n", + " [-1.14868656e-02 -3.63174383e-01 9.31650374e-01]\n", + " [-1.66081583e-01 -2.68199675e-01 9.48939325e-01]\n", + " [-1.34105076e-01 -2.81140668e-01 9.50250364e-01]\n", + " [-1.01234011e-01 -2.93984273e-01 9.50434070e-01]\n", + " [-6.76550797e-02 -3.06637237e-01 9.49418978e-01]\n", + " [-3.35602357e-02 -3.19010679e-01 9.47156744e-01]\n", + " [ 8.51994786e-04 -3.31020687e-01 9.43623113e-01]\n", + " [-1.54349397e-01 -2.36249841e-01 9.59355136e-01]\n", + " [-1.22188132e-01 -2.48897842e-01 9.60791301e-01]\n", + " [-8.91537447e-02 -2.61506894e-01 9.61075312e-01]\n", + " [-5.54330897e-02 -2.73985346e-01 9.60134992e-01]\n", + " [-2.12188792e-02 -2.86245881e-01 9.57921215e-01]\n", + " [ 1.32893238e-02 -2.98205752e-01 9.54409096e-01]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:fp_optics: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:cartToSphere: vec: [[-0.86287032 0.50536851 0.00758106]\n", + " [-0.84943339 0.52747655 0.01521198]\n", + " [-0.8350978 0.5496144 0.02314471]\n", + " [-0.81988761 0.57166679 0.0313273 ]\n", + " [-0.80383482 0.59352547 0.0397127 ]\n", + " [-0.78697994 0.61508842 0.04825778]\n", + " [-0.7693723 0.63625947 0.05692239]\n", + " [-0.75107024 0.65694833 0.06566874]\n", + " [-0.86287032 0.50536851 0.00758106]\n", + " [-0.86755062 0.49628634 0.03249312]\n", + " [-0.87160805 0.4867627 0.05797832]\n", + " [-0.87499493 0.47680386 0.08391639]\n", + " [-0.8776713 0.46642343 0.11019197]\n", + " [-0.87960506 0.45564233 0.13669313]\n", + " [-0.88077226 0.44448845 0.16331027]\n", + " [-0.88115752 0.43299636 0.1899357 ]\n", + " [-0.75107024 0.65694833 0.06566874]\n", + " [-0.75508413 0.64911831 0.09215953]\n", + " [-0.75857142 0.64060888 0.11912039]\n", + " [-0.76148436 0.63142473 0.14643899]\n", + " [-0.76378287 0.62157733 0.17400385]\n", + " [-0.76543471 0.61108558 0.20170306]\n", + " [-0.7664158 0.59997616 0.22942411]\n", + " [-0.76671072 0.58828363 0.25705454]\n", + " [-0.88115752 0.43299636 0.1899357 ]\n", + " [-0.86757635 0.45547216 0.19964063]\n", + " [-0.8530232 0.47802706 0.20938374]\n", + " [-0.83751794 0.50055119 0.2191169 ]\n", + " [-0.82108957 0.52293899 0.22879407]\n", + " [-0.80377729 0.54508844 0.23837084]\n", + " [-0.78563087 0.56690126 0.24780455]\n", + " [-0.76671072 0.58828363 0.25705454]\n", + " [-0.85714045 0.51496631 0.01095213]\n", + " [-0.84006493 0.54209779 0.02051587]\n", + " [-0.82166255 0.56915867 0.03048054]\n", + " [-0.8019889 0.59594684 0.04075754]\n", + " [-0.78111855 0.62227443 0.05126736]\n", + " [-0.7591461 0.64796682 0.06193709]\n", + " [-0.86493971 0.50153872 0.01839047]\n", + " [-0.87026331 0.490111 0.04932519]\n", + " [-0.87460313 0.47802538 0.08100059]\n", + " [-0.87788241 0.46530389 0.11320235]\n", + " [-0.88004206 0.45198497 0.14572428]\n", + " [-0.88104155 0.43812279 0.17836539]\n", + " [-0.75294563 0.65354788 0.07712359]\n", + " [-0.75751798 0.64349353 0.1099208 ]\n", + " [-0.76125096 0.63242277 0.14331232]\n", + " [-0.76406758 0.62035387 0.17709267]\n", + " [-0.76590852 0.60732164 0.21105583]\n", + " [-0.76673305 0.59337851 0.24499463]\n", + " [-0.87535656 0.44281887 0.19406789]\n", + " [-0.85805576 0.4704329 0.20599321]\n", + " [-0.8393138 0.49805596 0.21792798]\n", + " [-0.81918026 0.52549199 0.22978658]\n", + " [-0.79772728 0.55255322 0.24148731]\n", + " [-0.77505098 0.57906049 0.25295243]\n", + " [-0.86284293 0.50541362 0.00769066]\n", + " [-0.86284293 0.50541362 0.00769066]\n", + " [-0.76677684 0.58825228 0.25692906]\n", + " [-0.76677684 0.58825228 0.25692906]\n", + " [-0.85923086 0.51112674 0.02172082]\n", + " [-0.86453889 0.49978027 0.05284118]\n", + " [-0.86886664 0.48774834 0.08468959]\n", + " [-0.87213699 0.47505328 0.11705317]\n", + " [-0.87429046 0.4617339 0.14972642]\n", + " [-0.87528615 0.44784469 0.18250835]\n", + " [-0.84212901 0.53835768 0.03146004]\n", + " [-0.84737212 0.52724262 0.06305316]\n", + " [-0.85164875 0.51536809 0.09534224]\n", + " [-0.85488084 0.50275694 0.12811792]\n", + " [-0.85700791 0.48944841 0.16117596]\n", + " [-0.85798824 0.4754976 0.19431473]\n", + " [-0.82368762 0.56551787 0.04157222]\n", + " [-0.8288336 0.5546381 0.07356247]\n", + " [-0.83303256 0.54293075 0.10622125]\n", + " [-0.83620588 0.53041837 0.1393416 ]\n", + " [-0.83829245 0.51713993 0.17271959]\n", + " [-0.83925009 0.50315057 0.20615234]\n", + " [-0.80396175 0.59240579 0.05197002]\n", + " [-0.80897691 0.58176667 0.08428465]\n", + " [-0.81307025 0.57023739 0.11724368]\n", + " [-0.81616306 0.55783958 0.1506415 ]\n", + " [-0.81819417 0.5446113 0.1842738 ]\n", + " [-0.81912133 0.53060726 0.21793617]\n", + " [-0.78302575 0.61883364 0.06257476]\n", + " [-0.7878757 0.60844045 0.0951425 ]\n", + " [-0.79183489 0.59709987 0.12833259]\n", + " [-0.79482501 0.58483217 0.16193989]\n", + " [-0.79678538 0.57167414 0.19575938]\n", + " [-0.79767414 0.55767966 0.22958519]\n", + " [-0.76097426 0.64462644 0.07331388]\n", + " [-0.76562492 0.63448322 0.10606379]\n", + " [-0.76942173 0.62334068 0.1394152 ]\n", + " [-0.77228734 0.61121756 0.17316278]\n", + " [-0.77416199 0.59814922 0.20710076]\n", + " [-0.77500459 0.58418848 0.24102221]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:fp_optics: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:cartToSphere: vec: [[ 0.95074599 0.29884104 -0.082317 ]\n", + " [ 0.95667136 0.27544473 -0.09439338]\n", + " [ 0.96203422 0.25128811 -0.10651029]\n", + " [ 0.96676714 0.22647128 -0.11862565]\n", + " [ 0.97081397 0.20109371 -0.1306964 ]\n", + " [ 0.97412964 0.175255 -0.14267842]\n", + " [ 0.97668004 0.14905564 -0.15452675]\n", + " [ 0.97844199 0.12259747 -0.16619605]\n", + " [ 0.95074599 0.29884104 -0.082317 ]\n", + " [ 0.95526087 0.29017467 -0.05723055]\n", + " [ 0.9591979 0.28096246 -0.03161454]\n", + " [ 0.96249362 0.27124707 -0.00557268]\n", + " [ 0.96509587 0.2610702 0.0207919 ]\n", + " [ 0.96696366 0.25047315 0.04737606]\n", + " [ 0.96806697 0.23949754 0.07407616]\n", + " [ 0.96838676 0.22818602 0.10078804]\n", + " [ 0.97844199 0.12259747 -0.16619605]\n", + " [ 0.9836687 0.11193901 -0.14094515]\n", + " [ 0.98821336 0.10096893 -0.11506358]\n", + " [ 0.9920134 0.08972643 -0.08864867]\n", + " [ 0.99501639 0.07825153 -0.06179864]\n", + " [ 0.99718011 0.06658587 -0.03461444]\n", + " [ 0.99847286 0.05477309 -0.00720056]\n", + " [ 0.99887416 0.04285886 0.02033523]\n", + " [ 0.96838676 0.22818602 0.10078804]\n", + " [ 0.97499462 0.20321688 0.08993546]\n", + " [ 0.98094535 0.17758571 0.0788006 ]\n", + " [ 0.98617261 0.15138583 0.06742333]\n", + " [ 0.99062011 0.1247124 0.05584456]\n", + " [ 0.99424157 0.09766414 0.04410694]\n", + " [ 0.99700117 0.07034401 0.03225505]\n", + " [ 0.99887416 0.04285886 0.02033523]\n", + " [ 0.95341048 0.28871093 -0.08748974]\n", + " [ 0.96030419 0.25951096 -0.10232261]\n", + " [ 0.96628462 0.2292686 -0.11717482]\n", + " [ 0.97124371 0.19816719 -0.13196752]\n", + " [ 0.97509848 0.16639016 -0.14661949]\n", + " [ 0.97779067 0.13412309 -0.1610478 ]\n", + " [ 0.95280243 0.29505325 -0.07149198]\n", + " [ 0.95795663 0.28405787 -0.04037608]\n", + " [ 0.96217843 0.27228526 -0.00856783]\n", + " [ 0.96536713 0.25981259 0.02374272]\n", + " [ 0.96744723 0.24671598 0.05636562]\n", + " [ 0.96836805 0.23307244 0.08910985]\n", + " [ 0.98079559 0.11808234 -0.15523068]\n", + " [ 0.98675116 0.10480575 -0.12384633]\n", + " [ 0.99161896 0.09109983 -0.09161148]\n", + " [ 0.9952983 0.07703788 -0.05870649]\n", + " [ 0.99771147 0.06269656 -0.02531729]\n", + " [ 0.99880477 0.0481571 0.00836237]\n", + " [ 0.97134418 0.21742612 0.09600192]\n", + " [ 0.97900974 0.1863674 0.08250528]\n", + " [ 0.98562124 0.15440683 0.06862434]\n", + " [ 0.99107088 0.12171874 0.05443398]\n", + " [ 0.99527353 0.08848493 0.04001273]\n", + " [ 0.99816782 0.05489664 0.02544342]\n", + " [ 0.95078347 0.29873378 -0.08227341]\n", + " [ 0.95078347 0.29873378 -0.08227341]\n", + " [ 0.99886945 0.04299387 0.02028181]\n", + " [ 0.99886945 0.04299387 0.02028181]\n", + " [ 0.95546514 0.28496686 -0.07668278]\n", + " [ 0.96070834 0.27380701 -0.04548857]\n", + " [ 0.96500135 0.26189242 -0.01359268]\n", + " [ 0.96824366 0.24929939 0.01881546]\n", + " [ 0.97035986 0.23610323 0.05154608]\n", + " [ 0.97129923 0.22238057 0.08440785]\n", + " [ 0.96244846 0.25559377 -0.09145917]\n", + " [ 0.96791514 0.24398717 -0.06008775]\n", + " [ 0.9723873 0.23168866 -0.02798739]\n", + " [ 0.97576489 0.21877205 0.00465429]\n", + " [ 0.97797242 0.2053109 0.03764809]\n", + " [ 0.97895883 0.1913811 0.07080172]\n", + " [ 0.96850162 0.22518777 -0.10627832]\n", + " [ 0.97415005 0.21316027 -0.07479561]\n", + " [ 0.97876855 0.2005022 -0.04255584]\n", + " [ 0.98225718 0.18728556 -0.00974463]\n", + " [ 0.98454002 0.17358306 0.02344939]\n", + " [ 0.98556537 0.15947076 0.05683293]\n", + " [ 0.97351676 0.19393121 -0.12106116]\n", + " [ 0.97930566 0.18150572 -0.0895326 ]\n", + " [ 0.98403783 0.16850991 -0.05721849]\n", + " [ 0.98761315 0.15501498 -0.02430254]\n", + " [ 0.98995506 0.14109389 0.00902729]\n", + " [ 0.99101108 0.12682367 0.042577 ]\n", + " [ 0.97741097 0.16200688 -0.13572605]\n", + " [ 0.98329899 0.14920486 -0.10421612]\n", + " [ 0.98811172 0.13589227 -0.07189246]\n", + " [ 0.99174874 0.12214066 -0.03893705]\n", + " [ 0.99413285 0.10802415 -0.00553707]\n", + " [ 0.99521088 0.09362136 0.0281132 ]\n", + " [ 0.98012594 0.12960033 -0.15018951]\n", + " [ 0.98607131 0.11644349 -0.11876144]\n", + " [ 0.99093079 0.10283603 -0.08649226]\n", + " [ 0.99460374 0.08885068 -0.05356268]\n", + " [ 0.9970125 0.07456338 -0.02015894]\n", + " [ 0.99810346 0.06005467 0.01352495]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:fp_optics: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:cartToSphere: vec: [[-9.84193736e-01 9.05023611e-02 1.52223562e-01]\n", + " [-9.80926699e-01 7.90282614e-02 1.77587571e-01]\n", + " [-9.76800965e-01 6.72631459e-02 2.03311448e-01]\n", + " [-9.71790399e-01 5.52512104e-02 2.29283066e-01]\n", + " [-9.65878694e-01 4.30365554e-02 2.55394211e-01]\n", + " [-9.59059893e-01 3.06642407e-02 2.81538321e-01]\n", + " [-9.51339231e-01 1.81811772e-02 3.07608701e-01]\n", + " [-9.42733857e-01 5.63633066e-03 3.33498286e-01]\n", + " [-9.84193736e-01 9.05023611e-02 1.52223562e-01]\n", + " [-9.87959888e-01 6.40612973e-02 1.40824040e-01]\n", + " [-9.90874761e-01 3.76104698e-02 1.29432068e-01]\n", + " [-9.92938338e-01 1.12528695e-02 1.18096695e-01]\n", + " [-9.94161219e-01 -1.49090485e-02 1.06869972e-01]\n", + " [-9.94564510e-01 -4.07736445e-02 9.58068173e-02]\n", + " [-9.94179702e-01 -6.62405309e-02 8.49641855e-02]\n", + " [-9.93048447e-01 -9.12117585e-02 7.43989107e-02]\n", + " [-9.42733857e-01 5.63633066e-03 3.33498286e-01]\n", + " [-9.46638706e-01 -2.16501662e-02 3.21568703e-01]\n", + " [-9.49680350e-01 -4.88294075e-02 3.09391212e-01]\n", + " [-9.51858974e-01 -7.57941698e-02 2.97018077e-01]\n", + " [-9.53185991e-01 -1.02441454e-01 2.84503452e-01]\n", + " [-9.53683402e-01 -1.28672286e-01 2.71903314e-01]\n", + " [-9.53383239e-01 -1.54389934e-01 2.59276200e-01]\n", + " [-9.52327399e-01 -1.79497564e-01 2.46684312e-01]\n", + " [-9.93048447e-01 -9.12117585e-02 7.43989107e-02]\n", + " [-9.89737580e-01 -1.03891087e-01 9.81130227e-02]\n", + " [-9.85616078e-01 -1.16628060e-01 1.22306344e-01]\n", + " [-9.80658569e-01 -1.29374506e-01 1.46870721e-01]\n", + " [-9.74850076e-01 -1.42082612e-01 1.71697002e-01]\n", + " [-9.68186154e-01 -1.54704533e-01 1.96677603e-01]\n", + " [-9.60672973e-01 -1.67192221e-01 2.21707464e-01]\n", + " [-9.52327399e-01 -1.79497564e-01 2.46684312e-01]\n", + " [-9.82887175e-01 8.54476057e-02 1.63191631e-01]\n", + " [-9.78309567e-01 7.11827317e-02 1.94533827e-01]\n", + " [-9.72415094e-01 5.65248669e-02 2.26304715e-01]\n", + " [-9.65169651e-01 4.15552108e-02 2.58303522e-01]\n", + " [-9.56562370e-01 2.63568301e-02 2.90333860e-01]\n", + " [-9.46607822e-01 1.10169709e-02 3.22199096e-01]\n", + " [-9.85930326e-01 7.89427151e-02 1.47341237e-01]\n", + " [-9.89974299e-01 4.65160525e-02 1.33368452e-01]\n", + " [-9.92738361e-01 1.41771955e-02 1.19455236e-01]\n", + " [-9.94237622e-01 -1.78849982e-02 1.05696161e-01]\n", + " [-9.94510924e-01 -4.94834569e-02 9.21922449e-02]\n", + " [-9.93620484e-01 -8.04342729e-02 7.90484725e-02]\n", + " [-9.44572955e-01 -6.22391420e-03 3.28242587e-01]\n", + " [-9.48778762e-01 -3.96078502e-02 3.13448686e-01]\n", + " [-9.51686871e-01 -7.27238158e-02 2.98334286e-01]\n", + " [-9.53313654e-01 -1.05380372e-01 2.82998328e-01]\n", + " [-9.53699546e-01 -1.37395094e-01 2.67543948e-01]\n", + " [-9.52907609e-01 -1.68589937e-01 2.52080386e-01]\n", + " [-9.91707682e-01 -9.66451764e-02 8.47088130e-02]\n", + " [-9.87108636e-01 -1.12229436e-01 1.14110012e-01]\n", + " [-9.81265544e-01 -1.27852519e-01 1.44123782e-01]\n", + " [-9.74146509e-01 -1.43426279e-01 1.74549366e-01]\n", + " [-9.65743353e-01 -1.58862615e-01 2.05188804e-01]\n", + " [-9.56071878e-01 -1.74073027e-01 2.35849836e-01]\n", + " [-9.84198310e-01 9.03733822e-02 1.52270610e-01]\n", + " [-9.84198310e-01 9.03733822e-02 1.52270610e-01]\n", + " [-9.52362171e-01 -1.79371140e-01 2.46642027e-01]\n", + " [-9.52362171e-01 -1.79371140e-01 2.46642027e-01]\n", + " [-9.84625707e-01 7.39729025e-02 1.58241040e-01]\n", + " [-9.88682296e-01 4.14282731e-02 1.44190902e-01]\n", + " [-9.91450366e-01 8.98193115e-03 1.30174868e-01]\n", + " [-9.92945138e-01 -2.31769189e-02 1.16287500e-01]\n", + " [-9.93205570e-01 -5.48609974e-02 1.02630246e-01]\n", + " [-9.92293996e-01 -8.58858339e-02 8.93098446e-02]\n", + " [-9.80064652e-01 5.95975820e-02 1.89529436e-01]\n", + " [-9.84155005e-01 2.67595194e-02 1.75279361e-01]\n", + " [-9.86937577e-01 -5.94992651e-03 1.60993219e-01]\n", + " [-9.88428054e-01 -3.83405483e-02 1.46765068e-01]\n", + " [-9.88665852e-01 -7.02250459e-02 1.32696179e-01]\n", + " [-9.87713573e-01 -1.01418566e-01 1.18895637e-01]\n", + " [-9.74183904e-01 4.48505553e-02 2.21255843e-01]\n", + " [-9.78305181e-01 1.17798727e-02 2.06833770e-01]\n", + " [-9.81107070e-01 -2.11307842e-02 1.92308104e-01]\n", + " [-9.82605851e-01 -5.36902116e-02 1.77772616e-01]\n", + " [-9.82841579e-01 -8.57117392e-02 1.63327673e-01]\n", + " [-9.81877161e-01 -1.17011534e-01 1.49082334e-01]\n", + " [-9.66949319e-01 2.98135111e-02 2.53219605e-01]\n", + " [-9.71098850e-01 -3.42744903e-03 2.38653046e-01]\n", + " [-9.73925376e-01 -3.64760517e-02 2.23917083e-01]\n", + " [-9.75445670e-01 -6.91403362e-02 2.09106095e-01]\n", + " [-9.75700383e-01 -1.01234726e-01 1.94320078e-01]\n", + " [-9.74752735e-01 -1.32577230e-01 1.79667426e-01]\n", + " [-9.58349944e-01 1.45703155e-02 2.85224633e-01]\n", + " [-9.62525183e-01 -1.87764209e-02 2.70541529e-01]\n", + " [-9.65382242e-01 -5.18981639e-02 2.55624152e-01]\n", + " [-9.66938050e-01 -8.46027182e-02 2.40568469e-01]\n", + " [-9.67233518e-01 -1.16705871e-01 2.25475192e-01]\n", + " [-9.66332011e-01 -1.48027651e-01 2.10452509e-01]\n", + " [-9.48400240e-01 -7.90976264e-04 3.17074690e-01]\n", + " [-9.52598573e-01 -3.41770751e-02 3.02304295e-01]\n", + " [-9.55492312e-01 -6.73061714e-02 2.87235653e-01]\n", + " [-9.57098060e-01 -9.99865133e-02 2.71966910e-01]\n", + " [-9.57456470e-01 -1.32035256e-01 2.56600466e-01]\n", + " [-9.56630741e-01 -1.63274003e-01 2.41245155e-01]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:cartToSphere: vec: [[-1.72769043e-01 -5.15727949e-01 8.39151679e-01]\n", + " [-1.82426845e-01 -4.93241728e-01 8.50548672e-01]\n", + " [-1.92003559e-01 -4.69879577e-01 8.61596087e-01]\n", + " [-2.01465261e-01 -4.45726544e-01 8.72203874e-01]\n", + " [-2.10777307e-01 -4.20869424e-01 8.82293520e-01]\n", + " [-2.19904547e-01 -3.95397965e-01 8.91797309e-01]\n", + " [-2.28811760e-01 -3.69405697e-01 9.00657876e-01]\n", + " [-2.37464175e-01 -3.42990259e-01 9.08828063e-01]\n", + " [-1.72769043e-01 -5.15727949e-01 8.39151679e-01]\n", + " [-1.47168602e-01 -5.11698828e-01 8.46466604e-01]\n", + " [-1.20945978e-01 -5.07066642e-01 8.53378867e-01]\n", + " [-9.42055446e-02 -5.01843978e-01 8.59812734e-01]\n", + " [-6.70511952e-02 -4.96044837e-01 8.65704139e-01]\n", + " [-3.95874497e-02 -4.89685451e-01 8.70999996e-01]\n", + " [-1.19200679e-02 -4.82785112e-01 8.75657723e-01]\n", + " [ 1.58438799e-02 -4.75366816e-01 8.79645021e-01]\n", + " [-2.37464175e-01 -3.42990259e-01 9.08828063e-01]\n", + " [-2.11518858e-01 -3.37250541e-01 9.17344998e-01]\n", + " [-1.84871151e-01 -3.31119480e-01 9.25301328e-01]\n", + " [-1.57618347e-01 -3.24606691e-01 9.32623693e-01]\n", + " [-1.29860014e-01 -3.17725191e-01 9.39248146e-01]\n", + " [-1.01699389e-01 -3.10491870e-01 9.45120116e-01]\n", + " [-7.32437139e-02 -3.02927728e-01 9.50194796e-01]\n", + " [-4.46037128e-02 -2.95057898e-01 9.54437712e-01]\n", + " [ 1.58438799e-02 -4.75366816e-01 8.79645021e-01]\n", + " [ 7.53595495e-03 -4.51698571e-01 8.92138784e-01]\n", + " [-9.36865753e-04 -4.27194228e-01 9.04159396e-01]\n", + " [-9.54163865e-03 -4.01931808e-01 9.15619888e-01]\n", + " [-1.82450297e-02 -3.75994390e-01 9.26442301e-01]\n", + " [-2.70130227e-02 -3.49471320e-01 9.36557576e-01]\n", + " [-3.58109426e-02 -3.22458500e-01 9.45905964e-01]\n", + " [-4.46037128e-02 -2.95057898e-01 9.54437712e-01]\n", + " [-1.76901101e-01 -5.06023847e-01 8.44183551e-01]\n", + " [-1.88686835e-01 -4.77863833e-01 8.57929738e-01]\n", + " [-2.00317316e-01 -4.48472516e-01 8.71059915e-01]\n", + " [-2.11729064e-01 -4.18008887e-01 8.83424798e-01]\n", + " [-2.22857417e-01 -3.86638257e-01 8.94899676e-01]\n", + " [-2.33637693e-01 -3.54534526e-01 9.05383178e-01]\n", + " [-1.61723269e-01 -5.13970452e-01 8.42425047e-01]\n", + " [-1.29914926e-01 -5.08624217e-01 8.51130729e-01]\n", + " [-9.72757932e-02 -5.02384663e-01 8.59154858e-01]\n", + " [-6.39972651e-02 -4.95276946e-01 8.66374686e-01]\n", + " [-3.02718274e-02 -4.87331038e-01 8.72692429e-01]\n", + " [ 3.70525804e-03 -4.78583971e-01 8.78033971e-01]\n", + " [-2.26215260e-01 -3.40627639e-01 9.12578472e-01]\n", + " [-1.93931798e-01 -3.33329731e-01 9.22649309e-01]\n", + " [-1.60689902e-01 -3.25453048e-01 9.31804201e-01]\n", + " [-1.26671818e-01 -3.17020110e-01 9.39921540e-01]\n", + " [-9.20676420e-02 -3.08062030e-01 9.46900911e-01]\n", + " [-5.70762988e-02 -2.98619190e-01 9.52664094e-01]\n", + " [ 1.21486250e-02 -4.65181360e-01 8.85132032e-01]\n", + " [ 1.85046501e-03 -4.35601930e-01 9.00137509e-01]\n", + " [-8.66247931e-03 -4.04843660e-01 9.14344887e-01]\n", + " [-1.93290257e-02 -3.73057299e-01 9.27606943e-01]\n", + " [-3.00865497e-02 -3.40407362e-01 9.39796588e-01]\n", + " [-4.08710271e-02 -3.07072963e-01 9.50807948e-01]\n", + " [-1.72715803e-01 -5.15639903e-01 8.39216743e-01]\n", + " [-1.72715803e-01 -5.15639903e-01 8.39216743e-01]\n", + " [-4.46718180e-02 -2.95179539e-01 9.54396913e-01]\n", + " [-4.46718180e-02 -2.95179539e-01 9.54396913e-01]\n", + " [-1.65878052e-01 -5.04305415e-01 8.47443521e-01]\n", + " [-1.33978728e-01 -4.98833565e-01 8.56279613e-01]\n", + " [-1.01240993e-01 -4.92486985e-01 8.64411262e-01]\n", + " [-6.78553843e-02 -4.85289780e-01 8.71716397e-01]\n", + " [-3.40141097e-02 -4.77271152e-01 8.78097539e-01]\n", + " [ 8.72939966e-05 -4.68467727e-01 8.83480606e-01]\n", + " [-1.77593473e-01 -4.76008879e-01 8.61322301e-01]\n", + " [-1.45481539e-01 -4.70187443e-01 8.70493475e-01]\n", + " [-1.12508692e-01 -4.63543937e-01 8.78902050e-01]\n", + " [-7.88631815e-02 -4.56099985e-01 8.86427325e-01]\n", + " [-4.47366472e-02 -4.47883253e-01 8.92972129e-01]\n", + " [-1.03256106e-02 -4.38929776e-01 8.98462038e-01]\n", + " [-1.89177161e-01 -4.46483212e-01 8.74565459e-01]\n", + " [-1.56918562e-01 -4.40318226e-01 8.84022864e-01]\n", + " [-1.23775700e-01 -4.33384250e-01 8.92668846e-01]\n", + " [-8.99348597e-02 -4.25701475e-01 9.00383238e-01]\n", + " [-5.55873424e-02 -4.17297067e-01 9.07068468e-01]\n", + " [-2.09307386e-02 -4.08207260e-01 9.12649296e-01]\n", + " [-2.00565104e-01 -4.15886232e-01 8.87024397e-01]\n", + " [-1.68224674e-01 -4.09380745e-01 8.96720617e-01]\n", + " [-1.34976605e-01 -4.02160534e-01 9.05565139e-01]\n", + " [-1.01005573e-01 -3.94245486e-01 9.13437667e-01]\n", + " [-6.65026261e-02 -3.85663221e-01 9.20239795e-01]\n", + " [-3.16662482e-02 -3.76450812e-01 9.25895261e-01]\n", + " [-2.11692080e-01 -3.84382673e-01 8.98574662e-01]\n", + " [-1.79333545e-01 -3.77538600e-01 9.08462484e-01]\n", + " [-1.46044786e-01 -3.70035956e-01 9.17466246e-01]\n", + " [-1.12009217e-01 -3.61895303e-01 9.25465140e-01]\n", + " [-7.74175731e-02 -3.53145451e-01 9.32359807e-01]\n", + " [-4.24688631e-02 -3.43824742e-01 9.38072994e-01]\n", + " [-2.22492903e-01 -3.52146477e-01 9.09114826e-01]\n", + " [-1.90178932e-01 -3.44966299e-01 9.19146466e-01]\n", + " [-1.56913580e-01 -3.37186072e-01 9.28269186e-01]\n", + " [-1.22879333e-01 -3.28827731e-01 9.36361572e-01]\n", + " [-8.82664819e-02 -3.19921741e-01 9.43323438e-01]\n", + " [-5.32740652e-02 -3.10507939e-01 9.49076759e-01]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:fp_optics: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:fp_optics: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:cartToSphere: vec: [[-0.85509646 0.03273364 -0.51743459]\n", + " [-0.86743478 0.01986949 -0.497154 ]\n", + " [-0.87934231 0.00659604 -0.4761445 ]\n", + " [-0.89073595 -0.00702532 -0.45446685]\n", + " [-0.90154029 -0.02093095 -0.43218861]\n", + " [-0.91168871 -0.03505764 -0.40938326]\n", + " [-0.9211237 -0.04934375 -0.38612992]\n", + " [-0.92979717 -0.06372957 -0.36251312]\n", + " [-0.85509646 0.03273364 -0.51743459]\n", + " [-0.84756874 0.01045075 -0.53058271]\n", + " [-0.83931129 -0.0123942 -0.54350984]\n", + " [-0.83031694 -0.03570314 -0.55614662]\n", + " [-0.82058754 -0.05937491 -0.56842828]\n", + " [-0.81013434 -0.08330837 -0.58029482]\n", + " [-0.79897826 -0.10740375 -0.59169094]\n", + " [-0.78714996 -0.13156303 -0.60256627]\n", + " [-0.92979717 -0.06372957 -0.36251312]\n", + " [-0.92292711 -0.0878287 -0.37482218]\n", + " [-0.91517521 -0.11235381 -0.38708003]\n", + " [-0.90653162 -0.13720024 -0.39921989]\n", + " [-0.89699534 -0.16226664 -0.41117989]\n", + " [-0.88657499 -0.1874529 -0.42290212]\n", + " [-0.87528989 -0.21265817 -0.43433181]\n", + " [-0.86317084 -0.23778028 -0.44541738]\n", + " [-0.78714996 -0.13156303 -0.60256627]\n", + " [-0.79958857 -0.14651481 -0.58240152]\n", + " [-0.81162594 -0.16165099 -0.56136645]\n", + " [-0.82317842 -0.17690311 -0.5395207 ]\n", + " [-0.83417148 -0.19220569 -0.51692835]\n", + " [-0.84453884 -0.20749489 -0.49365981]\n", + " [-0.85422204 -0.22270743 -0.46979368]\n", + " [-0.86317084 -0.23778028 -0.44541738]\n", + " [-0.86049906 0.02710318 -0.50873056]\n", + " [-0.87534253 0.01105268 -0.48337696]\n", + " [-0.88945557 -0.00555191 -0.45698793]\n", + " [-0.90269609 -0.02259414 -0.42968508]\n", + " [-0.91494145 -0.03995777 -0.40160367]\n", + " [-0.9260897 -0.05753012 -0.37289162]\n", + " [-0.85194626 0.02304955 -0.52312168]\n", + " [-0.84223129 -0.00465189 -0.53909629]\n", + " [-0.83141201 -0.03310062 -0.55466965]\n", + " [-0.81948801 -0.06211143 -0.56972061]\n", + " [-0.80648005 -0.09149828 -0.58413868]\n", + " [-0.7924307 -0.12107821 -0.5978241 ]\n", + " [-0.9268808 -0.07412813 -0.36796332]\n", + " [-0.91786923 -0.10396342 -0.3830244 ]\n", + " [-0.90752239 -0.13433424 -0.39794148]\n", + " [-0.89583478 -0.16505268 -0.41259866]\n", + " [-0.88282241 -0.19593419 -0.42688921]\n", + " [-0.86852557 -0.22679254 -0.4407136 ]\n", + " [-0.79265851 -0.1379719 -0.59384866]\n", + " [-0.8076449 -0.15642882 -0.56854177]\n", + " [-0.82194437 -0.17509446 -0.54198652]\n", + " [-0.83541597 -0.1938471 -0.51429899]\n", + " [-0.84793764 -0.2125691 -0.48560904]\n", + " [-0.8594051 -0.23114402 -0.45606504]\n", + " [-0.85511478 0.03261527 -0.51741179]\n", + " [-0.85511478 0.03261527 -0.51741179]\n", + " [-0.86318435 -0.23764339 -0.44546424]\n", + " [-0.86318435 -0.23764339 -0.44546424]\n", + " [-0.8573526 0.0174683 -0.51443307]\n", + " [-0.84768667 -0.01042344 -0.53039481]\n", + " [-0.83689582 -0.03905054 -0.54596744]\n", + " [-0.82497907 -0.06822546 -0.56103014]\n", + " [-0.81195699 -0.09776144 -0.57547246]\n", + " [-0.79787216 -0.12747535 -0.5891944 ]\n", + " [-0.87225688 0.00123329 -0.48904643]\n", + " [-0.86272716 -0.02716038 -0.50493976]\n", + " [-0.85201774 -0.05625167 -0.52048201]\n", + " [-0.84012663 -0.08584966 -0.53555307]\n", + " [-0.82707393 -0.11576746 -0.55004237]\n", + " [-0.81290241 -0.14582201 -0.56384892]\n", + " [-0.88642732 -0.01553551 -0.46260701]\n", + " [-0.8770281 -0.04436947 -0.47838589]\n", + " [-0.86640098 -0.07386121 -0.49385612]\n", + " [-0.85454318 -0.10381972 -0.50889825]\n", + " [-0.84147423 -0.13405932 -0.52340159]\n", + " [-0.82723685 -0.16439713 -0.53726415]\n", + " [-0.89972129 -0.03271936 -0.43523676]\n", + " [-0.89044615 -0.06192858 -0.45085529]\n", + " [-0.87990226 -0.09175662 -0.46621105]\n", + " [-0.86808597 -0.12201383 -0.48118538]\n", + " [-0.85501589 -0.1525158 -0.49566798]\n", + " [-0.84073429 -0.18307926 -0.5095565 ]\n", + " [-0.9120159 -0.05020129 -0.40707104]\n", + " [-0.902858 -0.07972049 -0.42248323]\n", + " [-0.89239805 -0.10982167 -0.43768129]\n", + " [-0.88063151 -0.14031652 -0.45254769]\n", + " [-0.86757576 -0.17102122 -0.46697327]\n", + " [-0.85327232 -0.20175142 -0.48085624]\n", + " [-0.92320895 -0.06786853 -0.37825799]\n", + " [-0.91416068 -0.09763282 -0.39341846]\n", + " [-0.90378453 -0.12794444 -0.40841613]\n", + " [-0.89207518 -0.15861556 -0.42313471]\n", + " [-0.87904892 -0.18946198 -0.43746675]\n", + " [-0.86474635 -0.22029794 -0.45131204]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:cartToSphere: vec: [[ 0.25843708 -0.49867645 0.82736454]\n", + " [ 0.23404092 -0.51013513 0.82763941]\n", + " [ 0.20890248 -0.52133415 0.82738773]\n", + " [ 0.18312534 -0.53221502 0.82656656]\n", + " [ 0.15681309 -0.54272317 0.82514315]\n", + " [ 0.1300696 -0.55280788 0.82309498]\n", + " [ 0.10299949 -0.56242242 0.82040973]\n", + " [ 0.07570827 -0.57152444 0.8170851 ]\n", + " [ 0.25843708 -0.49867645 0.82736454]\n", + " [ 0.2515342 -0.47719812 0.8420288 ]\n", + " [ 0.24414927 -0.45495561 0.85639157]\n", + " [ 0.23631772 -0.43201875 0.87035265]\n", + " [ 0.22807454 -0.40846194 0.88382173]\n", + " [ 0.21945444 -0.38436443 0.89671831]\n", + " [ 0.21049222 -0.35981058 0.9089716 ]\n", + " [ 0.20122324 -0.33488987 0.9205205 ]\n", + " [ 0.07570827 -0.57152444 0.8170851 ]\n", + " [ 0.06680896 -0.55002329 0.83247279]\n", + " [ 0.05766966 -0.52764076 0.84750778]\n", + " [ 0.04832452 -0.50444212 0.86209216]\n", + " [ 0.03880797 -0.4804976 0.87613698]\n", + " [ 0.02915535 -0.45588405 0.88956152]\n", + " [ 0.01940333 -0.43068596 0.90229325]\n", + " [ 0.00958987 -0.40499559 0.91426834]\n", + " [ 0.20122324 -0.33488987 0.9205205 ]\n", + " [ 0.1753275 -0.34539192 0.92193529]\n", + " [ 0.14877023 -0.35582012 0.92263723]\n", + " [ 0.12165018 -0.36611804 0.92258269]\n", + " [ 0.09406732 -0.37623279 0.92173761]\n", + " [ 0.06612456 -0.38611459 0.92007775]\n", + " [ 0.03792864 -0.39571665 0.9175891 ]\n", + " [ 0.00958987 -0.40499559 0.91426834]\n", + " [ 0.24787491 -0.50362832 0.82759685]\n", + " [ 0.21746131 -0.51750483 0.82758645]\n", + " [ 0.18603573 -0.53093287 0.82674119]\n", + " [ 0.15378887 -0.54381037 0.82499652]\n", + " [ 0.12091203 -0.55604395 0.82231101]\n", + " [ 0.08759814 -0.5675494 0.81866614]\n", + " [ 0.2554064 -0.4894495 0.83379059]\n", + " [ 0.24661625 -0.46260278 0.85157448]\n", + " [ 0.23713743 -0.43467699 0.86880478]\n", + " [ 0.22703458 -0.4058072 0.88531114]\n", + " [ 0.21637161 -0.37613935 0.90094535]\n", + " [ 0.20521282 -0.34583087 0.91558108]\n", + " [ 0.07195381 -0.56223193 0.82384337]\n", + " [ 0.06088205 -0.53527906 0.84247831]\n", + " [ 0.04948358 -0.50706676 0.86048514]\n", + " [ 0.03782163 -0.4777222 0.87769643]\n", + " [ 0.0259613 -0.44738697 0.8939636 ]\n", + " [ 0.01397064 -0.41621987 0.90915666]\n", + " [ 0.19005261 -0.33956017 0.92118342]\n", + " [ 0.15785778 -0.35238999 0.92244361]\n", + " [ 0.12476735 -0.36505221 0.92258874]\n", + " [ 0.09096473 -0.37744807 0.92155216]\n", + " [ 0.05663949 -0.38948586 0.91928925]\n", + " [ 0.02198965 -0.40108086 0.91577869]\n", + " [ 0.25833229 -0.49864393 0.82741686]\n", + " [ 0.25833229 -0.49864393 0.82741686]\n", + " [ 0.00972051 -0.40505304 0.91424152]\n", + " [ 0.00972051 -0.40505304 0.91424152]\n", + " [ 0.24488695 -0.49442055 0.83401361]\n", + " [ 0.23593648 -0.4675265 0.85191135]\n", + " [ 0.22632028 -0.43953908 0.86924365]\n", + " [ 0.21610263 -0.41059303 0.88584029]\n", + " [ 0.20534696 -0.38083415 0.90155309]\n", + " [ 0.19411719 -0.3504201 0.91625557]\n", + " [ 0.21430273 -0.50826907 0.83410844]\n", + " [ 0.2049131 -0.48127032 0.85228487]\n", + " [ 0.19492267 -0.45313972 0.86986755]\n", + " [ 0.18439436 -0.42401075 0.88668687]\n", + " [ 0.17339027 -0.39402869 0.90259471]\n", + " [ 0.16197363 -0.36335184 0.91746388]\n", + " [ 0.18271408 -0.5216837 0.83334368]\n", + " [ 0.17290645 -0.49462391 0.85173385]\n", + " [ 0.16256217 -0.46639688 0.86950992]\n", + " [ 0.15174295 -0.43713449 0.88650297]\n", + " [ 0.14051015 -0.40698129 0.90256475]\n", + " [ 0.12892702 -0.37609615 0.91756717]\n", + " [ 0.15031124 -0.53456227 0.8316548 ]\n", + " [ 0.14010491 -0.50748488 0.85019393]\n", + " [ 0.12942511 -0.4792082 0.86810636]\n", + " [ 0.11833303 -0.4498624 0.88522377]\n", + " [ 0.10689021 -0.41959115 0.90139766]\n", + " [ 0.09516068 -0.38855369 0.91649903]\n", + " [ 0.11728513 -0.54681113 0.82900047]\n", + " [ 0.1066983 -0.51975873 0.84762394]\n", + " [ 0.0957005 -0.49147872 0.86561543]\n", + " [ 0.08435328 -0.4620997 0.88280711]\n", + " [ 0.07271927 -0.43176441 0.89905028]\n", + " [ 0.06086396 -0.40063213 0.91421523]\n", + " [ 0.08382871 -0.55834561 0.8253623 ]\n", + " [ 0.07287997 -0.53135962 0.84400561]\n", + " [ 0.06158251 -0.50312178 0.8620186 ]\n", + " [ 0.04999903 -0.47375949 0.87923378]\n", + " [ 0.03819393 -0.44341463 0.89550248]\n", + " [ 0.02623455 -0.41224618 0.9106947 ]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:fp_optics: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:cartToSphere: vec: [[0.41191627 0.83110868 0.37360854]\n", + " [0.43728345 0.82027198 0.36869644]\n", + " [0.4628021 0.80855658 0.3633875 ]\n", + " [0.48834946 0.79597403 0.35768722]\n", + " [0.51380935 0.78254347 0.35160442]\n", + " [0.53907004 0.76829273 0.34515181]\n", + " [0.56402255 0.75325968 0.33834661]\n", + " [0.5885606 0.73749293 0.33121082]\n", + " [0.41191627 0.83110868 0.37360854]\n", + " [0.41184132 0.81881513 0.39991062]\n", + " [0.41151128 0.80583739 0.42577526]\n", + " [0.41093523 0.79223486 0.45110548]\n", + " [0.41012843 0.77807494 0.47580884]\n", + " [0.40911221 0.76343276 0.49979758]\n", + " [0.40791336 0.74839084 0.52298933]\n", + " [0.40656246 0.73303834 0.54530887]\n", + " [0.5885606 0.73749293 0.33121082]\n", + " [0.58833741 0.72482905 0.35844377]\n", + " [0.58758892 0.71155507 0.38526438]\n", + " [0.5863257 0.69773292 0.4115713 ]\n", + " [0.58456492 0.68343085 0.43727121]\n", + " [0.58233005 0.66872303 0.4622783 ]\n", + " [0.57965069 0.65369014 0.48651235]\n", + " [0.5765628 0.63842065 0.50989647]\n", + " [0.40656246 0.73303834 0.54530887]\n", + " [0.43084913 0.72152723 0.54200321]\n", + " [0.45532997 0.70930995 0.53810224]\n", + " [0.4798848 0.69640082 0.53360704]\n", + " [0.50439587 0.68282232 0.52852482]\n", + " [0.52875003 0.66860523 0.52286752]\n", + " [0.55283963 0.65378879 0.51665129]\n", + " [0.5765628 0.63842065 0.50989647]\n", + " [0.42294983 0.82645135 0.3716068 ]\n", + " [0.45415763 0.81257746 0.36532002]\n", + " [0.48547017 0.79739449 0.3584421 ]\n", + " [0.5166709 0.78093448 0.35098791]\n", + " [0.54755393 0.76324884 0.34298091]\n", + " [0.57791968 0.74441175 0.33445477]\n", + " [0.41200161 0.82580052 0.38510799]\n", + " [0.4117372 0.81026592 0.41706308]\n", + " [0.41109778 0.79376178 0.44826427]\n", + " [0.41010885 0.77640887 0.47853943]\n", + " [0.40880963 0.75834547 0.50772712]\n", + " [0.40725113 0.73972634 0.53567851]\n", + " [0.5884452 0.73210522 0.34315332]\n", + " [0.58781758 0.71616656 0.3762658 ]\n", + " [0.58641086 0.6993722 0.40865734]\n", + " [0.58425394 0.68184521 0.44015275]\n", + " [0.58138997 0.66372221 0.47059382]\n", + " [0.57787609 0.64515491 0.49983434]\n", + " [0.41712528 0.72815993 0.54386544]\n", + " [0.44703798 0.71357592 0.53941306]\n", + " [0.4771228 0.6979444 0.5340669 ]\n", + " [0.50716175 0.68130333 0.52783779]\n", + " [0.53694662 0.66370941 0.52074768]\n", + " [0.56628162 0.64523837 0.51282802]\n", + " [0.41200279 0.83103232 0.373683 ]\n", + " [0.41200279 0.83103232 0.373683 ]\n", + " [0.57649361 0.6385266 0.50984203]\n", + " [0.57649361 0.6385266 0.50984203]\n", + " [0.42294648 0.82119936 0.38307686]\n", + " [0.4226565 0.80560786 0.41515955]\n", + " [0.42196264 0.7890476 0.44648787]\n", + " [0.42089032 0.77163962 0.47688954]\n", + " [0.41947914 0.7535224 0.50620277]\n", + " [0.41778155 0.73485104 0.53427757]\n", + " [0.45414838 0.80727503 0.37690355]\n", + " [0.45378874 0.79154431 0.40930841]\n", + " [0.4529466 0.77485136 0.4409589 ]\n", + " [0.45164673 0.7573182 0.47168249]\n", + " [0.44992874 0.7390837 0.50131768]\n", + " [0.4478472 0.7203033 0.52971317]\n", + " [0.48545527 0.79205168 0.37011797]\n", + " [0.48502957 0.77621463 0.40278675]\n", + " [0.48404711 0.75942848 0.4347031 ]\n", + " [0.48253227 0.74181634 0.46569425]\n", + " [0.48052426 0.72351724 0.49559988]\n", + " [0.4780781 0.70468626 0.52426959]\n", + " [0.51665056 0.77556162 0.36273458]\n", + " [0.51616151 0.75965219 0.3956082 ]\n", + " [0.51504519 0.74281362 0.427734 ]\n", + " [0.51332641 0.72516984 0.45893866]\n", + " [0.51104458 0.70685971 0.48906318]\n", + " [0.50825484 0.68803749 0.5179589 ]\n", + " [0.54752829 0.75785665 0.35477607]\n", + " [0.5469783 0.74191018 0.3877938 ]\n", + " [0.54573391 0.72506138 0.42007201]\n", + " [0.5438213 0.70743438 0.45143658]\n", + " [0.54128104 0.68916738 0.48172934]\n", + " [0.5381688 0.67041356 0.51080329]\n", + " [0.57788896 0.73901135 0.3462753 ]\n", + " [0.57728093 0.72306419 0.37937437]\n", + " [0.57591511 0.70624809 0.41174679]\n", + " [0.57381967 0.68868652 0.44321761]\n", + " [0.57103704 0.67051658 0.47362877]\n", + " [0.56762392 0.65189033 0.50283405]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:fp_optics: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:fp_optics: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:cartToSphere: vec: [[-0.1457487 0.59282438 0.79203319]\n", + " [-0.13850388 0.57244103 0.80816331]\n", + " [-0.13115373 0.55115316 0.82403209]\n", + " [-0.12370863 0.52903396 0.83953514]\n", + " [-0.11618303 0.5061597 0.85457818]\n", + " [-0.10859542 0.48261045 0.86907663]\n", + " [-0.10096793 0.45847076 0.88295529]\n", + " [-0.0933259 0.43383002 0.89614831]\n", + " [-0.1457487 0.59282438 0.79203319]\n", + " [-0.17194767 0.5866136 0.79140286]\n", + " [-0.19855567 0.57970827 0.79026196]\n", + " [-0.22545152 0.57212584 0.78857063]\n", + " [-0.25251784 0.56388659 0.78629934]\n", + " [-0.27964023 0.55501408 0.78342881]\n", + " [-0.30670681 0.54553582 0.77994974]\n", + " [-0.33360804 0.53548383 0.77586258]\n", + " [-0.0933259 0.43383002 0.89614831]\n", + " [-0.12010908 0.42597884 0.89672506]\n", + " [-0.14734282 0.41762194 0.89659467]\n", + " [-0.17491269 0.40877397 0.89571725]\n", + " [-0.20270603 0.39945361 0.89406212]\n", + " [-0.23061013 0.38968439 0.89160812]\n", + " [-0.25851151 0.37949516 0.88834409]\n", + " [-0.28629638 0.36892025 0.88426932]\n", + " [-0.33360804 0.53548383 0.77586258]\n", + " [-0.32790305 0.51386639 0.79273005]\n", + " [-0.32182499 0.4914016 0.80929175]\n", + " [-0.31538322 0.46815657 0.82544706]\n", + " [-0.30859058 0.4442034 0.84110356]\n", + " [-0.30146385 0.41962089 0.8561763 ]\n", + " [-0.29402404 0.39449531 0.87058791]\n", + " [-0.28629638 0.36892025 0.88426932]\n", + " [-0.14269246 0.58403253 0.79909002]\n", + " [-0.1337421 0.5584322 0.81869807]\n", + " [-0.12464318 0.53154567 0.83780862]\n", + " [-0.11542063 0.50351203 0.85624396]\n", + " [-0.10610842 0.47447876 0.87384833]\n", + " [-0.09674867 0.44460354 0.89048716]\n", + " [-0.15708908 0.5901344 0.79187399]\n", + " [-0.18949013 0.58205229 0.79076458]\n", + " [-0.22238473 0.57294408 0.78884733]\n", + " [-0.25555523 0.56284592 0.78606361]\n", + " [-0.288791 0.55180126 0.78237787]\n", + " [-0.32188701 0.53986259 0.77777705]\n", + " [-0.10496682 0.4305552 0.89643973]\n", + " [-0.13811016 0.4205919 0.89667611]\n", + " [-0.1718162 0.40988297 0.89580977]\n", + " [-0.20587692 0.39846111 0.89378042]\n", + " [-0.24008473 0.38636966 0.89054916]\n", + " [-0.27423055 0.37366403 0.88609977]\n", + " [-0.33107503 0.52620234 0.78326267]\n", + " [-0.32383019 0.49913027 0.80374311]\n", + " [-0.3160341 0.47085159 0.8236633 ]\n", + " [-0.30770893 0.44149691 0.84284975]\n", + " [-0.29888562 0.41121135 0.86114611]\n", + " [-0.28960461 0.38015681 0.87841332]\n", + " [-0.14581286 0.59273626 0.79208733]\n", + " [-0.14581286 0.59273626 0.79208733]\n", + " [-0.28622858 0.36904513 0.88423916]\n", + " [-0.28622858 0.36904513 0.88423916]\n", + " [-0.15401018 0.58138298 0.79892096]\n", + " [-0.18652944 0.57317658 0.79791941]\n", + " [-0.21954378 0.56395964 0.7960842 ]\n", + " [-0.25283625 0.55376755 0.793357 ]\n", + " [-0.28619651 0.54264308 0.7897025 ]\n", + " [-0.31941928 0.53063829 0.78510785]\n", + " [-0.14515834 0.55564997 0.81864655]\n", + " [-0.17795992 0.5470993 0.81793191]\n", + " [-0.21126339 0.53758336 0.81631606]\n", + " [-0.24485394 0.52713538 0.81374126]\n", + " [-0.27852192 0.51579646 0.81017255]\n", + " [-0.31206108 0.50361785 0.80559726]\n", + " [-0.13612991 0.52863372 0.83786338]\n", + " [-0.16913658 0.51974824 0.83740945]\n", + " [-0.20265538 0.50994429 0.83599499]\n", + " [-0.23647363 0.4992535 0.83356234]\n", + " [-0.27038216 0.48771601 0.83007625]\n", + " [-0.30417358 0.47538302 0.82552373]\n", + " [-0.1269502 0.50047246 0.85639416]\n", + " [-0.16008562 0.491259 0.85617591]\n", + " [-0.19374625 0.4811757 0.85494581]\n", + " [-0.22772123 0.4702534 0.85264575]\n", + " [-0.26180183 0.4585323 0.84923962]\n", + " [-0.2957796 0.44606423 0.84471364]\n", + " [-0.11765367 0.47131311 0.87408327]\n", + " [-0.15084259 0.46177709 0.87407576]\n", + " [-0.18457176 0.45142211 0.87301279]\n", + " [-0.21863187 0.44027927 0.87083539]\n", + " [-0.2528146 0.42838965 0.86750625]\n", + " [-0.28691084 0.41580637 0.86301056]\n", + " [-0.10828294 0.44131326 0.89079594]\n", + " [-0.14145113 0.43146025 0.89097342]\n", + " [-0.17517599 0.42084194 0.89005923]\n", + " [-0.20924924 0.40949049 0.88799341]\n", + " [-0.2434631 0.39744859 0.88473744]\n", + " [-0.27760836 0.38477102 0.88027545]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:fp_optics: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:cartToSphere: vec: [[ 0.0380557 0.11921318 -0.99213909]\n", + " [ 0.05590146 0.13919743 -0.98868554]\n", + " [ 0.07395727 0.15959123 -0.98440894]\n", + " [ 0.09215458 0.18029132 -0.97928677]\n", + " [ 0.11042443 0.20119886 -0.97330646]\n", + " [ 0.1286972 0.22221924 -0.96646554]\n", + " [ 0.1469027 0.24326166 -0.9587718 ]\n", + " [ 0.16497048 0.2642388 -0.95024344]\n", + " [ 0.0380557 0.11921318 -0.99213909]\n", + " [ 0.01617864 0.13487121 -0.99073105]\n", + " [-0.00609076 0.15088721 -0.98853222]\n", + " [-0.02866596 0.16717383 -0.98551062]\n", + " [-0.05146001 0.18364833 -0.98164411]\n", + " [-0.07438531 0.20023242 -0.97692057]\n", + " [-0.09735349 0.2168518 -0.97133804]\n", + " [-0.12027556 0.23343571 -0.96490495]\n", + " [ 0.16497048 0.2642388 -0.95024344]\n", + " [ 0.14347316 0.2819589 -0.9486383 ]\n", + " [ 0.12142193 0.2998172 -0.946238 ]\n", + " [ 0.09889892 0.31772904 -0.94300968]\n", + " [ 0.07598712 0.3356132 -0.9389301 ]\n", + " [ 0.0527719 0.35339088 -0.93398609]\n", + " [ 0.02934171 0.37098519 -0.92817512]\n", + " [ 0.00578806 0.38832139 -0.92150583]\n", + " [-0.12027556 0.23343571 -0.96490495]\n", + " [-0.10317926 0.25536499 -0.96132344]\n", + " [-0.08566799 0.27752221 -0.95689206]\n", + " [-0.06780666 0.29980763 -0.95158691]\n", + " [-0.04966119 0.32212455 -0.94539386]\n", + " [-0.03129956 0.34437798 -0.93830919]\n", + " [-0.01279224 0.36647424 -0.93034025]\n", + " [ 0.00578806 0.38832139 -0.92150583]\n", + " [ 0.04573222 0.12792268 -0.9907292 ]\n", + " [ 0.06775383 0.15270573 -0.98594644]\n", + " [ 0.09002303 0.17800071 -0.97990387]\n", + " [ 0.11241302 0.20362383 -0.97257424]\n", + " [ 0.13479565 0.22940087 -0.96395299]\n", + " [ 0.15704159 0.25516611 -0.9540588 ]\n", + " [ 0.02863152 0.12605848 -0.99160955]\n", + " [ 0.00154398 0.1455026 -0.98935666]\n", + " [-0.02604705 0.16539694 -0.98588306]\n", + " [-0.05398166 0.18558727 -0.9811439 ]\n", + " [-0.08209859 0.20592941 -0.97511686]\n", + " [-0.11023485 0.22628804 -0.96780267]\n", + " [ 0.15560924 0.2718704 -0.94966955]\n", + " [ 0.12887861 0.2936913 -0.94717249]\n", + " [ 0.10139769 0.31563532 -0.94344732]\n", + " [ 0.07331885 0.33755164 -0.93844725]\n", + " [ 0.04479929 0.3592951 -0.93214809]\n", + " [ 0.01600319 0.38072499 -0.92454982]\n", + " [-0.11279819 0.24290556 -0.96346949]\n", + " [-0.09155697 0.26994759 -0.95851219]\n", + " [-0.06975705 0.29723259 -0.95225351]\n", + " [-0.04751929 0.32458134 -0.94466336]\n", + " [-0.02496892 0.35181896 -0.93573499]\n", + " [-0.00223663 0.37877363 -0.92548665]\n", + " [ 0.03804224 0.11933353 -0.99212514]\n", + " [ 0.03804224 0.11933353 -0.99212514]\n", + " [ 0.00580513 0.38818844 -0.92156174]\n", + " [ 0.00580513 0.38818844 -0.92156174]\n", + " [ 0.03631457 0.13472322 -0.99021761]\n", + " [ 0.00919704 0.15436533 -0.98797103]\n", + " [-0.01843943 0.17443381 -0.98449623]\n", + " [-0.0464352 0.19477485 -0.9797482 ]\n", + " [-0.07462895 0.21524475 -0.97370438]\n", + " [-0.10285732 0.23570838 -0.96636532]\n", + " [ 0.05832958 0.1597067 -0.98543971]\n", + " [ 0.03116419 0.17987202 -0.98319624]\n", + " [ 0.00343583 0.20039856 -0.97970843]\n", + " [-0.02469674 0.22113416 -0.97493064]\n", + " [-0.05307224 0.24193633 -0.96883959]\n", + " [-0.0815263 0.26267006 -0.96143534]\n", + " [ 0.08061165 0.18518189 -0.97939238]\n", + " [ 0.05345377 0.20581566 -0.97712978]\n", + " [ 0.02568886 0.22674969 -0.97361423]\n", + " [-0.00252558 0.24783338 -0.96879938]\n", + " [-0.03102864 0.26892478 -0.96266125]\n", + " [-0.05965512 0.28988836 -0.95519946]\n", + " [ 0.10303406 0.21096547 -0.97204812]\n", + " [ 0.07593935 0.23201465 -0.96974348]\n", + " [ 0.04819389 0.2533073 -0.96618464]\n", + " [ 0.01995363 0.27469368 -0.96132473]\n", + " [-0.00862128 0.29603163 -0.95513923]\n", + " [-0.03736524 0.31718437 -0.94762752]\n", + " [ 0.12546842 0.23688362 -0.96340221]\n", + " [ 0.09849208 0.25829619 -0.96103194]\n", + " [ 0.070822 0.2798991 -0.95741357]\n", + " [ 0.04261246 0.30154262 -0.95249999]\n", + " [ 0.0140225 0.3230836 -0.94626653]\n", + " [-0.01478248 0.34438364 -0.93871262]\n", + " [ 0.14778497 0.26277065 -0.95347322]\n", + " [ 0.12098095 0.2844944 -0.95101343]\n", + " [ 0.09344119 0.30635836 -0.94731901]\n", + " [ 0.06531851 0.32821207 -0.942343 ]\n", + " [ 0.03677058 0.34991095 -0.93606103]\n", + " [ 0.007962 0.37131484 -0.92847288]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:fp_optics: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:cartToSphere: vec: [[-2.85408729e-02 -4.71860860e-01 8.81210955e-01]\n", + " [-1.89912062e-02 -4.48578517e-01 8.93541632e-01]\n", + " [-9.23741613e-03 -4.24471384e-01 9.05394232e-01]\n", + " [ 6.82521036e-04 -3.99615894e-01 9.16682427e-01]\n", + " [ 1.07302394e-02 -3.74093540e-01 9.27328898e-01]\n", + " [ 2.08665811e-02 -3.47992058e-01 9.37265231e-01]\n", + " [ 3.10515732e-02 -3.21405700e-01 9.46432341e-01]\n", + " [ 4.12446913e-02 -2.94434747e-01 9.54781156e-01]\n", + " [-2.85408729e-02 -4.71860860e-01 8.81210955e-01]\n", + " [-1.22464204e-03 -4.80692377e-01 8.76888441e-01]\n", + " [ 2.60391333e-02 -4.89011356e-01 8.71888672e-01]\n", + " [ 5.31448488e-02 -4.96788679e-01 8.66242826e-01]\n", + " [ 7.99881611e-02 -5.03999139e-01 8.59992303e-01]\n", + " [ 1.06466101e-01 -5.10620882e-01 8.53188891e-01]\n", + " [ 1.32476682e-01 -5.16634601e-01 8.45895158e-01]\n", + " [ 1.57917982e-01 -5.22022646e-01 8.38185104e-01]\n", + " [ 4.12446913e-02 -2.94434747e-01 9.54781156e-01]\n", + " [ 6.94422483e-02 -3.03690429e-01 9.50236759e-01]\n", + " [ 9.74882591e-02 -3.12642242e-01 9.44854945e-01]\n", + " [ 1.25273063e-01 -3.21258731e-01 9.38668998e-01]\n", + " [ 1.52690200e-01 -3.29512684e-01 9.31722649e-01]\n", + " [ 1.79637135e-01 -3.37381208e-01 9.24069489e-01]\n", + " [ 2.06015223e-01 -3.44845563e-01 9.15772497e-01]\n", + " [ 2.31728681e-01 -3.51890713e-01 9.06903934e-01]\n", + " [ 1.57917982e-01 -5.22022646e-01 8.38185104e-01]\n", + " [ 1.68773054e-01 -4.99923250e-01 8.49465950e-01]\n", + " [ 1.79591528e-01 -4.76946619e-01 8.60388753e-01]\n", + " [ 1.90333689e-01 -4.53175532e-01 8.70864527e-01]\n", + " [ 2.00959216e-01 -4.28694616e-01 8.80815713e-01]\n", + " [ 2.11427340e-01 -4.03591627e-01 8.90175420e-01]\n", + " [ 2.21697265e-01 -3.77958310e-01 8.98887000e-01]\n", + " [ 2.31728681e-01 -3.51890713e-01 9.06903934e-01]\n", + " [-2.43109693e-02 -4.61846987e-01 8.86626380e-01]\n", + " [-1.24639066e-02 -4.32748332e-01 9.01428606e-01]\n", + " [-3.48142843e-04 -4.02486232e-01 9.15425973e-01]\n", + " [ 1.19658838e-02 -3.71208518e-01 9.28472430e-01]\n", + " [ 2.44060779e-02 -3.39076735e-01 9.40442083e-01]\n", + " [ 3.68985978e-02 -3.06266946e-01 9.51230283e-01]\n", + " [-1.65986087e-02 -4.75694426e-01 8.79453978e-01]\n", + " [ 1.68592225e-02 -4.86177972e-01 8.73697171e-01]\n", + " [ 5.01331255e-02 -4.95862396e-01 8.66952798e-01]\n", + " [ 8.30304598e-02 -5.04699684e-01 8.59292832e-01]\n", + " [ 1.15361619e-01 -5.12649516e-01 8.50812653e-01]\n", + " [ 1.46938940e-01 -5.19677078e-01 8.41632154e-01]\n", + " [ 5.35156132e-02 -2.98598190e-01 9.52877327e-01]\n", + " [ 8.79865817e-02 -3.09741601e-01 9.46740990e-01]\n", + " [ 1.22120724e-01 -3.20396697e-01 9.39378776e-01]\n", + " [ 1.55720668e-01 -3.30511611e-01 9.30866880e-01]\n", + " [ 1.88597646e-01 -3.40044185e-01 9.21303902e-01]\n", + " [ 2.20571332e-01 -3.48961492e-01 9.10809621e-01]\n", + " [ 1.62566679e-01 -5.12482616e-01 8.43168810e-01]\n", + " [ 1.75850505e-01 -4.84796122e-01 8.56766782e-01]\n", + " [ 1.89040133e-01 -4.55874114e-01 8.69737099e-01]\n", + " [ 2.02061584e-01 -4.25871541e-01 8.81932280e-01]\n", + " [ 2.14839854e-01 -3.94950055e-01 8.93229137e-01]\n", + " [ 2.27300011e-01 -3.63280350e-01 9.03527582e-01]\n", + " [-2.84152241e-02 -4.71813771e-01 8.81240229e-01]\n", + " [-2.84152241e-02 -4.71813771e-01 8.81240229e-01]\n", + " [ 2.31608137e-01 -3.51957122e-01 9.06908957e-01]\n", + " [ 2.31608137e-01 -3.51957122e-01 9.06908957e-01]\n", + " [-1.24487098e-02 -4.65744253e-01 8.84831803e-01]\n", + " [ 2.11323709e-02 -4.76285615e-01 8.79036652e-01]\n", + " [ 5.45200134e-02 -4.86043759e-01 8.72232213e-01]\n", + " [ 8.75211696e-02 -4.94970965e-01 8.64490479e-01]\n", + " [ 1.19946322e-01 -5.03027595e-01 8.55906606e-01]\n", + " [ 1.51608468e-01 -5.10179865e-01 8.46599892e-01]\n", + " [-4.87054767e-04 -4.36687916e-01 8.99612931e-01]\n", + " [ 3.34013961e-02 -4.47381033e-01 8.93719507e-01]\n", + " [ 6.70691907e-02 -4.57337781e-01 8.86760327e-01]\n", + " [ 1.00321959e-01 -4.66510758e-01 8.78807839e-01]\n", + " [ 1.32970255e-01 -4.74861612e-01 8.69957103e-01]\n", + " [ 1.64828800e-01 -4.82358899e-01 8.60326310e-01]\n", + " [ 1.17211334e-02 -4.06461043e-01 9.13592927e-01]\n", + " [ 4.58539785e-02 -4.17288355e-01 9.07616572e-01]\n", + " [ 7.97387282e-02 -4.27429582e-01 9.00525229e-01]\n", + " [ 1.13179680e-01 -4.36836932e-01 8.92392209e-01]\n", + " [ 1.45987321e-01 -4.45472343e-01 8.83313134e-01]\n", + " [ 1.77977857e-01 -4.53305621e-01 8.73405917e-01]\n", + " [ 2.41047640e-02 -3.75211275e-01 9.26625847e-01]\n", + " [ 5.84172480e-02 -3.86155008e-01 9.20582280e-01]\n", + " [ 9.24543229e-02 -3.96466962e-01 9.13381709e-01]\n", + " [ 1.26019206e-01 -4.06098418e-01 9.05098467e-01]\n", + " [ 1.58922358e-01 -4.15010724e-01 8.95829104e-01]\n", + " [ 1.90981236e-01 -4.23173818e-01 8.85691869e-01]\n", + " [ 3.65910866e-02 -3.43099934e-01 9.38585919e-01]\n", + " [ 7.10167587e-02 -3.54141653e-01 9.32491453e-01]\n", + " [ 1.05140246e-01 -3.64610022e-01 9.25205415e-01]\n", + " [ 1.38764132e-01 -3.74455063e-01 9.16803099e-01]\n", + " [ 1.71699030e-01 -3.83636880e-01 9.07382052e-01]\n", + " [ 2.03763461e-01 -3.92124608e-01 8.97061171e-01]\n", + " [ 4.91057535e-02 -3.10302871e-01 9.49368608e-01]\n", + " [ 8.35769383e-02 -3.21423280e-01 9.43240145e-01]\n", + " [ 1.17720114e-01 -3.32032591e-01 9.35893334e-01]\n", + " [ 1.51337792e-01 -3.42079429e-01 9.27404193e-01]\n", + " [ 1.84240995e-01 -3.51522261e-01 9.17871100e-01]\n", + " [ 2.16249132e-01 -3.60328769e-01 9.07413627e-01]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:fp_optics: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:cartToSphere: vec: [[-0.88098001 0.42854595 0.20055569]\n", + " [-0.8673893 0.45098577 0.21035121]\n", + " [-0.85282671 0.47350939 0.22017143]\n", + " [-0.83731217 0.49600711 0.22996799]\n", + " [-0.82087477 0.51837355 0.23969455]\n", + " [-0.80355378 0.54050683 0.2493064 ]\n", + " [-0.78539909 0.56230881 0.25876063]\n", + " [-0.7664712 0.5836858 0.2680164 ]\n", + " [-0.88098001 0.42854595 0.20055569]\n", + " [-0.88026281 0.41665269 0.22701963]\n", + " [-0.87876319 0.40452855 0.25324279]\n", + " [-0.87649615 0.39222819 0.27912639]\n", + " [-0.87348537 0.37981199 0.30457537]\n", + " [-0.86976277 0.36734652 0.32949851]\n", + " [-0.86536817 0.35490539 0.35380799]\n", + " [-0.86034919 0.34257039 0.3774186 ]\n", + " [-0.7664712 0.5836858 0.2680164 ]\n", + " [-0.76579738 0.5712539 0.29533599]\n", + " [-0.76443721 0.55835153 0.32230314]\n", + " [-0.76240583 0.54503689 0.34881535]\n", + " [-0.75972704 0.53137361 0.37477583]\n", + " [-0.75643289 0.51743019 0.40009409]\n", + " [-0.75256329 0.50327974 0.42468576]\n", + " [-0.74816578 0.48900026 0.44847153]\n", + " [-0.86034919 0.34257039 0.3774186 ]\n", + " [-0.84685895 0.36331044 0.38837538]\n", + " [-0.83246969 0.38429013 0.39914322]\n", + " [-0.81720531 0.40539394 0.4096721 ]\n", + " [-0.80109773 0.42651452 0.41991402]\n", + " [-0.78418746 0.44755132 0.42982303]\n", + " [-0.76652397 0.46840962 0.4393557 ]\n", + " [-0.74816578 0.48900026 0.44847153]\n", + " [-0.87517373 0.43827186 0.20491149]\n", + " [-0.85786127 0.46584418 0.21694062]\n", + " [-0.83910787 0.49343291 0.22895838]\n", + " [-0.81896323 0.52084231 0.24087863]\n", + " [-0.79749967 0.5478849 0.25261912]\n", + " [-0.77481347 0.57438176 0.26410164]\n", + " [-0.88071931 0.42346839 0.21215096]\n", + " [-0.87931269 0.40872954 0.24443681]\n", + " [-0.87674481 0.39369741 0.27626233]\n", + " [-0.87305566 0.37848078 0.30745099]\n", + " [-0.86830396 0.3632023 0.33783476]\n", + " [-0.86256627 0.3480008 0.36725315]\n", + " [-0.76632836 0.57825451 0.27993313]\n", + " [-0.76503941 0.56269473 0.31319219]\n", + " [-0.76273347 0.54648561 0.34581949]\n", + " [-0.75945081 0.5297421 0.37763445]\n", + " [-0.75525037 0.51259027 0.40847044]\n", + " [-0.75020879 0.49516667 0.43817433]\n", + " [-0.85459728 0.35161837 0.38213612]\n", + " [-0.83745624 0.37721521 0.39544372]\n", + " [-0.81898762 0.40305609 0.40841775]\n", + " [-0.79924684 0.4289401 0.42096897]\n", + " [-0.7783085 0.45468199 0.43301289]\n", + " [-0.75626744 0.48010972 0.44447072]\n", + " [-0.8809341 0.42858219 0.20067988]\n", + " [-0.8809341 0.42858219 0.20067988]\n", + " [-0.74824555 0.48897935 0.44836123]\n", + " [-0.74824555 0.48897935 0.44836123]\n", + " [-0.87495863 0.43313601 0.2164269 ]\n", + " [-0.87355261 0.41831728 0.24883025]\n", + " [-0.87098767 0.40317962 0.28076087]\n", + " [-0.86730414 0.38783168 0.31204184]\n", + " [-0.86256115 0.37239551 0.34250526]\n", + " [-0.85683561 0.35700875 0.37199124]\n", + " [-0.85764578 0.46065243 0.22856738]\n", + " [-0.85624586 0.44562776 0.26126409]\n", + " [-0.85369801 0.43021454 0.29345384]\n", + " [-0.85004334 0.41452171 0.32495857]\n", + " [-0.84534195 0.39867044 0.35561056]\n", + " [-0.83967168 0.38279586 0.3852516 ]\n", + " [-0.83889278 0.48819505 0.24067508]\n", + " [-0.83750592 0.47299453 0.27360556]\n", + " [-0.83498899 0.45733965 0.30599646]\n", + " [-0.83138352 0.44134042 0.33766859]\n", + " [-0.82675021 0.42511823 0.36845432]\n", + " [-0.82116746 0.40880704 0.39819695]\n", + " [-0.81874937 0.51556839 0.25266323]\n", + " [-0.81738294 0.50022275 0.28576623]\n", + " [-0.81491154 0.48436032 0.31829902]\n", + " [-0.81137677 0.46809259 0.35008151]\n", + " [-0.80683938 0.45154204 0.38094619]\n", + " [-0.80137784 0.43484262 0.41073769]\n", + " [-0.79728787 0.54258529 0.26444894]\n", + " [-0.79594939 0.5271263 0.29766161]\n", + " [-0.79353844 0.51109154 0.33027592]\n", + " [-0.79009628 0.49459411 0.36211122]\n", + " [-0.7856832 0.47775797 0.39300028]\n", + " [-0.78037722 0.46071792 0.42278884]\n", + " [-0.77460458 0.56906712 0.27595354]\n", + " [-0.77330144 0.55352768 0.30921188]\n", + " [-0.77096561 0.53735736 0.34184661]\n", + " [-0.76763764 0.52067065 0.37367703]\n", + " [-0.76337693 0.50359312 0.40453633]\n", + " [-0.75826051 0.48626082 0.43427113]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:fp_optics: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:cartToSphere: vec: [[ 0.02691231 -0.47236687 0.88099107]\n", + " [ 0.01870348 -0.44867225 0.89350064]\n", + " [ 0.01031607 -0.42414498 0.90553554]\n", + " [ 0.00178274 -0.39886313 0.91700874]\n", + " [-0.00686355 -0.37290986 0.92784219]\n", + " [-0.01558912 -0.34637458 0.93796675]\n", + " [-0.02435959 -0.31935326 0.9473226 ]\n", + " [-0.03314009 -0.29194793 0.95585989]\n", + " [ 0.02691231 -0.47236687 0.88099107]\n", + " [ 0.05463 -0.46427368 0.88400538]\n", + " [ 0.08218477 -0.45573418 0.88631372]\n", + " [ 0.10946876 -0.44678491 0.88791882]\n", + " [ 0.13637485 -0.43746568 0.88883389]\n", + " [ 0.16279638 -0.42781911 0.88908276]\n", + " [ 0.18862628 -0.41789019 0.88870013]\n", + " [ 0.21375573 -0.40772608 0.88773191]\n", + " [-0.03314009 -0.29194793 0.95585989]\n", + " [-0.00443138 -0.2837031 0.95890193]\n", + " [ 0.0241891 -0.27522813 0.96107459]\n", + " [ 0.05260848 -0.26656001 0.96238148]\n", + " [ 0.08071626 -0.25773824 0.96283741]\n", + " [ 0.10840512 -0.24880448 0.96246801]\n", + " [ 0.13557089 -0.23980234 0.9613092 ]\n", + " [ 0.16211149 -0.23077765 0.95940687]\n", + " [ 0.21375573 -0.40772608 0.88773191]\n", + " [ 0.20749435 -0.38421404 0.89962529]\n", + " [ 0.20080453 -0.35996778 0.91109864]\n", + " [ 0.19372168 -0.3350714 0.9220624 ]\n", + " [ 0.18627899 -0.30961172 0.93243805]\n", + " [ 0.17850851 -0.28367917 0.94215754]\n", + " [ 0.17044198 -0.25736829 0.95116302]\n", + " [ 0.16211149 -0.23077765 0.95940687]\n", + " [ 0.0234526 -0.46211617 0.88650923]\n", + " [ 0.01326857 -0.43250617 0.90153334]\n", + " [ 0.00284857 -0.40172265 0.91575695]\n", + " [-0.00774686 -0.36991649 0.92903271]\n", + " [-0.01845575 -0.33725235 0.94123336]\n", + " [-0.0292146 -0.30390946 0.95225288]\n", + " [ 0.03898309 -0.46881565 0.88243538]\n", + " [ 0.07285904 -0.45859189 0.88565515]\n", + " [ 0.10638306 -0.44773378 0.88781592]\n", + " [ 0.13935762 -0.43631332 0.88893765]\n", + " [ 0.17158627 -0.42440891 0.88906424]\n", + " [ 0.20287127 -0.41210425 0.88826423]\n", + " [-0.02058945 -0.28847794 0.95726514]\n", + " [ 0.01455082 -0.27821365 0.960409 ]\n", + " [ 0.04944613 -0.26763995 0.96224942]\n", + " [ 0.08389204 -0.25682855 0.96280903]\n", + " [ 0.11769096 -0.2458561 0.96213492]\n", + " [ 0.15065209 -0.23480383 0.96029741]\n", + " [ 0.2109957 -0.39760525 0.89296746]\n", + " [ 0.20302771 -0.36828405 0.90727427]\n", + " [ 0.19445182 -0.33794324 0.92085984]\n", + " [ 0.18533004 -0.30674147 0.93357509]\n", + " [ 0.17572143 -0.27484528 0.94529469]\n", + " [ 0.16568455 -0.2424304 0.95591638]\n", + " [ 0.02697952 -0.47226047 0.88104606]\n", + " [ 0.02697952 -0.47226047 0.88104606]\n", + " [ 0.16205082 -0.23089979 0.95938773]\n", + " [ 0.16205082 -0.23089979 0.95938773]\n", + " [ 0.03550377 -0.45865929 0.88790266]\n", + " [ 0.06951923 -0.44841253 0.89111912]\n", + " [ 0.10318917 -0.43754829 0.89325444]\n", + " [ 0.13631591 -0.42613902 0.89432852]\n", + " [ 0.16870347 -0.41426362 0.89438514]\n", + " [ 0.20015537 -0.40200626 0.89349247]\n", + " [ 0.02543964 -0.42901949 0.90293693]\n", + " [ 0.05980785 -0.41872147 0.90614312]\n", + " [ 0.09384826 -0.40785575 0.90821043]\n", + " [ 0.1273622 -0.3964958 0.90915893]\n", + " [ 0.16015449 -0.38472154 0.90903239]\n", + " [ 0.19203156 -0.37261804 0.9078985 ]\n", + " [ 0.01511704 -0.39821282 0.91716848]\n", + " [ 0.04977435 -0.38788493 0.92036286]\n", + " [ 0.08412158 -0.37704261 0.92236784]\n", + " [ 0.11795855 -0.36575981 0.92320395]\n", + " [ 0.15109008 -0.35411678 0.92291554]\n", + " [ 0.18332452 -0.34219877 0.92157046]\n", + " [ 0.00459585 -0.36639037 0.93044988]\n", + " [ 0.039477 -0.35605482 0.93363083]\n", + " [ 0.07406636 -0.34526192 0.93557917]\n", + " [ 0.10816216 -0.33408551 0.93631609]\n", + " [ 0.14156862 -0.32260545 0.93588677]\n", + " [ 0.17409511 -0.31090643 0.93435972]\n", + " [-0.00606264 -0.33371698 0.94265382]\n", + " [ 0.02897522 -0.32339642 0.94581985]\n", + " [ 0.06374052 -0.31267925 0.9477177 ]\n", + " [ 0.09803004 -0.30163871 0.94836923]\n", + " [ 0.13164721 -0.29035359 0.94782056]\n", + " [ 0.16440166 -0.27890739 0.94614099]\n", + " [-0.01679545 -0.300372 0.95367425]\n", + " [ 0.01833038 -0.29008908 0.95682408]\n", + " [ 0.05320389 -0.27947352 0.9586782 ]\n", + " [ 0.08762085 -0.26859749 0.95925908]\n", + " [ 0.12138392 -0.25753827 0.95861357]\n", + " [ 0.15430245 -0.2463777 0.95681178]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:cartToSphere: vec: [[-0.7821967 -0.14134909 -0.60678559]\n", + " [-0.79458888 -0.15639605 -0.58665901]\n", + " [-0.80658565 -0.17161535 -0.56565692]\n", + " [-0.81810345 -0.18693842 -0.54383893]\n", + " [-0.8290679 -0.20229954 -0.52126895]\n", + " [-0.83941293 -0.21763446 -0.49801724]\n", + " [-0.84908031 -0.23287946 -0.4741622 ]\n", + " [-0.85801996 -0.24797116 -0.44979113]\n", + " [-0.7821967 -0.14134909 -0.60678559]\n", + " [-0.76949006 -0.16543153 -0.61686097]\n", + " [-0.75622389 -0.18935057 -0.62631604]\n", + " [-0.74246076 -0.21301628 -0.63511896]\n", + " [-0.72827217 -0.23634195 -0.64324344]\n", + " [-0.7137384 -0.25924434 -0.65066879]\n", + " [-0.69894758 -0.28164389 -0.65738041]\n", + " [-0.68399377 -0.30346547 -0.66337111]\n", + " [-0.85801996 -0.24797116 -0.44979113]\n", + " [-0.8447991 -0.27279823 -0.46032121]\n", + " [-0.83086436 -0.29729965 -0.47040125]\n", + " [-0.81628182 -0.3213821 -0.47999744]\n", + " [-0.80112512 -0.34495895 -0.48908268]\n", + " [-0.7854751 -0.36794991 -0.49763614]\n", + " [-0.76942043 -0.39027933 -0.5056424 ]\n", + " [-0.75305892 -0.41187412 -0.51309061]\n", + " [-0.68399377 -0.30346547 -0.66337111]\n", + " [-0.69486947 -0.31935855 -0.64433418]\n", + " [-0.70552888 -0.33523148 -0.62437878]\n", + " [-0.71589293 -0.35101278 -0.60356221]\n", + " [-0.72588855 -0.36663326 -0.58195006]\n", + " [-0.73545071 -0.38202612 -0.55961442]\n", + " [-0.74452322 -0.39712698 -0.53663333]\n", + " [-0.75305892 -0.41187412 -0.51309061]\n", + " [-0.78759999 -0.14796675 -0.59815725]\n", + " [-0.80253259 -0.16653387 -0.57289433]\n", + " [-0.81678725 -0.18529121 -0.5463751 ]\n", + " [-0.83022331 -0.20411662 -0.5187154 ]\n", + " [-0.84271906 -0.22289174 -0.49004475]\n", + " [-0.85417064 -0.24149932 -0.46051123]\n", + " [-0.77677175 -0.15191474 -0.61118538]\n", + " [-0.7608142 -0.1813326 -0.62312137]\n", + " [-0.74407724 -0.21041518 -0.63409346]\n", + " [-0.72668883 -0.23900152 -0.64405094]\n", + " [-0.70879661 -0.26693837 -0.65295579]\n", + " [-0.69056551 -0.29408106 -0.66078408]\n", + " [-0.852318 -0.25877839 -0.45451927]\n", + " [-0.83562662 -0.28899959 -0.46712673]\n", + " [-0.8179278 -0.31863833 -0.47902372]\n", + " [-0.79935403 -0.34753229 -0.49015756]\n", + " [-0.78005421 -0.37553347 -0.5004898 ]\n", + " [-0.7601953 -0.40250371 -0.50999398]\n", + " [-0.68880878 -0.31031913 -0.65516754]\n", + " [-0.70200401 -0.32979317 -0.63121061]\n", + " [-0.71479513 -0.34916583 -0.60592998]\n", + " [-0.72704497 -0.36830873 -0.57944308]\n", + " [-0.7386339 -0.38709891 -0.5518826 ]\n", + " [-0.7494622 -0.40541895 -0.52339459]\n", + " [-0.78219721 -0.1414827 -0.60675379]\n", + " [-0.78219721 -0.1414827 -0.60675379]\n", + " [-0.75308704 -0.41175185 -0.51314746]\n", + " [-0.75308704 -0.41175185 -0.51314746]\n", + " [-0.78215183 -0.15843857 -0.60260745]\n", + " [-0.76611591 -0.18795821 -0.61460404]\n", + " [-0.74927996 -0.21712604 -0.62564832]\n", + " [-0.7317721 -0.24578078 -0.63568971]\n", + " [-0.71374041 -0.27376909 -0.64468993]\n", + " [-0.69535134 -0.30094608 -0.65262392]\n", + " [-0.7970272 -0.1771054 -0.57739182]\n", + " [-0.78079259 -0.20687736 -0.58954617]\n", + " [-0.76370445 -0.23625144 -0.60078346]\n", + " [-0.74589113 -0.26506542 -0.6110538 ]\n", + " [-0.72750093 -0.29316601 -0.62031934]\n", + " [-0.70870227 -0.32040841 -0.62855353]\n", + " [-0.81123513 -0.19594315 -0.55091183]\n", + " [-0.79483619 -0.22591355 -0.56320378]\n", + " [-0.77753744 -0.25544102 -0.57461763]\n", + " [-0.75946767 -0.28436246 -0.58510413]\n", + " [-0.74077482 -0.31252516 -0.59462652]\n", + " [-0.72162723 -0.33978535 -0.60315841]\n", + " [-0.82463512 -0.2148292 -0.52328322]\n", + " [-0.80810642 -0.24494266 -0.5356931 ]\n", + " [-0.79063839 -0.2745692 -0.54726839]\n", + " [-0.77236075 -0.30354521 -0.55795983]\n", + " [-0.75342126 -0.33171909 -0.56773132]\n", + " [-0.7339875 -0.35894878 -0.57655712]\n", + " [-0.83710585 -0.23364446 -0.49463528]\n", + " [-0.82048293 -0.26384365 -0.50714327]\n", + " [-0.80288748 -0.29351351 -0.5188656 ]\n", + " [-0.78445051 -0.32249055 -0.52975206]\n", + " [-0.76532003 -0.35062467 -0.53976624]\n", + " [-0.74566304 -0.37777574 -0.54888262]\n", + " [-0.84854388 -0.25227096 -0.46511574]\n", + " [-0.83186366 -0.28249693 -0.47770109]\n", + " [-0.81418398 -0.3121537 -0.48955542]\n", + " [-0.79563702 -0.34107857 -0.50062675]\n", + " [-0.77637141 -0.36912301 -0.51087732]\n", + " [-0.75655404 -0.39614849 -0.52028103]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:cartToSphere: vec: [[ 9.68267462e-01 2.23605041e-01 1.11619477e-01]\n", + " [ 9.74877965e-01 1.98597572e-01 1.00856124e-01]\n", + " [ 9.80831535e-01 1.72933497e-01 8.97970270e-02]\n", + " [ 9.86061810e-01 1.46706203e-01 7.84818205e-02]\n", + " [ 9.90512452e-01 1.20010973e-01 6.69510903e-02]\n", + " [ 9.94137150e-01 9.29466695e-02 5.52471090e-02]\n", + " [ 9.96900046e-01 6.56163953e-02 4.34141399e-02]\n", + " [ 9.98776343e-01 3.81271023e-02 3.14982802e-02]\n", + " [ 9.68267462e-01 2.23605041e-01 1.11619477e-01]\n", + " [ 9.67476727e-01 2.11891745e-01 1.38168994e-01]\n", + " [ 9.65901675e-01 1.99950291e-01 1.64480502e-01]\n", + " [ 9.63560593e-01 1.87827319e-01 1.90451783e-01]\n", + " [ 9.60482701e-01 1.75569827e-01 2.15981983e-01]\n", + " [ 9.56708176e-01 1.63224699e-01 2.40971294e-01]\n", + " [ 9.52288277e-01 1.50838420e-01 2.65320200e-01]\n", + " [ 9.47285551e-01 1.38457100e-01 2.88928565e-01]\n", + " [ 9.98776343e-01 3.81271023e-02 3.14982802e-02]\n", + " [ 9.97914522e-01 2.61449554e-02 5.90173461e-02]\n", + " [ 9.96160190e-01 1.41757523e-02 8.63940026e-02]\n", + " [ 9.93533040e-01 2.26715991e-03 1.13520741e-01]\n", + " [ 9.90064023e-01 -9.53417756e-03 1.40293729e-01]\n", + " [ 9.85794745e-01 -2.11829253e-02 1.66613339e-01]\n", + " [ 9.80776992e-01 -3.26348882e-02 1.92383616e-01]\n", + " [ 9.75072605e-01 -4.38463746e-02 2.17510715e-01]\n", + " [ 9.47285551e-01 1.38457100e-01 2.88928565e-01]\n", + " [ 9.53229255e-01 1.13558715e-01 2.80104278e-01]\n", + " [ 9.58608604e-01 8.81118961e-02 2.70750508e-01]\n", + " [ 9.63356216e-01 6.22161440e-02 2.60909854e-01]\n", + " [ 9.67416000e-01 3.59711809e-02 2.50623937e-01]\n", + " [ 9.70742919e-01 9.47763730e-03 2.39934073e-01]\n", + " [ 9.73302858e-01 -1.71625817e-02 2.28882048e-01]\n", + " [ 9.75072605e-01 -4.38463746e-02 2.17510715e-01]\n", + " [ 9.71224399e-01 2.12748624e-01 1.07056946e-01]\n", + " [ 9.78893345e-01 1.81645736e-01 9.36624007e-02]\n", + " [ 9.85508499e-01 1.49649365e-01 7.98627915e-02]\n", + " [ 9.90962000e-01 1.16934031e-01 6.57323876e-02]\n", + " [ 9.95168644e-01 8.36818126e-02 5.13490406e-02]\n", + " [ 9.98066983e-01 5.00841775e-02 3.67950178e-02]\n", + " [ 9.68043480e-01 2.18444569e-01 1.23181945e-01]\n", + " [ 9.66545044e-01 2.03929163e-01 1.55574978e-01]\n", + " [ 9.63885372e-01 1.89117495e-01 1.87508835e-01]\n", + " [ 9.60113715e-01 1.74095965e-01 2.18797277e-01]\n", + " [ 9.55304054e-01 1.58950854e-01 2.49256477e-01]\n", + " [ 9.49555430e-01 1.43767573e-01 2.78703013e-01]\n", + " [ 9.98506220e-01 3.29984693e-02 4.35480231e-02]\n", + " [ 9.96847905e-01 1.83156678e-02 7.71931990e-02]\n", + " [ 9.93867324e-01 3.69957212e-03 1.10517215e-01]\n", + " [ 9.89616806e-01 -1.07634894e-02 1.43327337e-01]\n", + " [ 9.84172887e-01 -2.49900317e-02 1.75440092e-01]\n", + " [ 9.77635068e-01 -3.88989423e-02 2.06679817e-01]\n", + " [ 9.49959938e-01 1.27717213e-01 2.85069168e-01]\n", + " [ 9.56874866e-01 9.68197467e-02 2.73891271e-01]\n", + " [ 9.62873779e-01 6.51972986e-02 2.61960678e-01]\n", + " [ 9.67848740e-01 3.30333230e-02 2.49354399e-01]\n", + " [ 9.71716823e-01 5.13118659e-04 2.36148580e-01]\n", + " [ 9.74419749e-01 -3.21751908e-02 2.22420571e-01]\n", + " [ 9.68289747e-01 2.23481133e-01 1.11674300e-01]\n", + " [ 9.68289747e-01 2.23481133e-01 1.11674300e-01]\n", + " [ 9.75088514e-01 -4.37172866e-02 2.17465373e-01]\n", + " [ 9.75088514e-01 -4.37172866e-02 2.17465373e-01]\n", + " [ 9.70976204e-01 2.07693936e-01 1.18610456e-01]\n", + " [ 9.69460400e-01 1.93141222e-01 1.51139010e-01]\n", + " [ 9.66765813e-01 1.78313397e-01 1.83216250e-01]\n", + " [ 9.62941749e-01 1.63297378e-01 2.14655897e-01]\n", + " [ 9.58062138e-01 1.48179875e-01 2.45274671e-01]\n", + " [ 9.52225828e-01 1.33046537e-01 2.74890144e-01]\n", + " [ 9.78640272e-01 1.76545964e-01 1.05331572e-01]\n", + " [ 9.77080484e-01 1.61905754e-01 1.38203668e-01]\n", + " [ 9.74297590e-01 1.47050968e-01 1.70646471e-01]\n", + " [ 9.70341286e-01 1.32069782e-01 2.02473111e-01]\n", + " [ 9.65285648e-01 1.17049834e-01 2.33501508e-01]\n", + " [ 9.59229159e-01 1.02077238e-01 2.63552004e-01]\n", + " [ 9.85251415e-01 1.44513965e-01 9.16262147e-02]\n", + " [ 9.83655333e-01 1.29814195e-01 1.24781655e-01]\n", + " [ 9.80799688e-01 1.14961843e-01 1.57530146e-01]\n", + " [ 9.76734843e-01 1.00045813e-01 1.89683636e-01]\n", + " [ 9.71535392e-01 8.51540080e-02 2.21060572e-01]\n", + " [ 9.65299814e-01 7.03724218e-02 2.51483582e-01]\n", + " [ 9.90701794e-01 1.11772780e-01 7.75680401e-02]\n", + " [ 9.89077289e-01 9.70426247e-02 1.10945236e-01]\n", + " [ 9.86164712e-01 8.22236858e-02 1.43938967e-01]\n", + " [ 9.82015200e-01 6.74048940e-02 1.76359654e-01]\n", + " [ 9.76704065e-01 5.26736170e-02 2.08025624e-01]\n", + " [ 9.70330065e-01 3.81149981e-02 2.38760991e-01]\n", + " [ 9.94906245e-01 7.85048092e-02 6.32341597e-02]\n", + " [ 9.93261538e-01 6.37743044e-02 9.67696009e-02]\n", + " [ 9.90308454e-01 4.90204605e-02 1.29946761e-01]\n", + " [ 9.86098817e-01 3.43315096e-02 1.62574510e-01]\n", + " [ 9.80708629e-01 1.97935213e-02 1.94470569e-01]\n", + " [ 9.74237033e-01 5.49014965e-03 2.25459667e-01]\n", + " [ 9.97803357e-01 4.49017578e-02 4.87061844e-02]\n", + " [ 9.96147038e-01 3.02012042e-02 8.23344756e-02]\n", + " [ 9.93170542e-01 1.55438001e-02 1.15631593e-01]\n", + " [ 9.88926126e-01 1.01645376e-03 1.48405136e-01]\n", + " [ 9.83490250e-01 -1.32966203e-02 1.80471959e-01]\n", + " [ 9.76962354e-01 -2.73136319e-02 2.11656618e-01]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:fp_optics: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:fp_optics: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:fp_optics: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:cartToSphere: vec: [[0.73028412 0.51074216 0.45368221]\n", + " [0.71177904 0.52784525 0.46341126]\n", + " [0.6923747 0.54498631 0.47287122]\n", + " [0.67211935 0.56206799 0.48201157]\n", + " [0.65107025 0.5789961 0.49078615]\n", + " [0.62929252 0.59568233 0.49915277]\n", + " [0.60685867 0.61204537 0.50707298]\n", + " [0.58384844 0.62801132 0.51451217]\n", + " [0.73028412 0.51074216 0.45368221]\n", + " [0.7346117 0.52421039 0.43075414]\n", + " [0.73838448 0.5376735 0.4070572 ]\n", + " [0.74156123 0.5510472 0.38266687]\n", + " [0.74410827 0.56425037 0.35766523]\n", + " [0.74599901 0.57720779 0.3321395 ]\n", + " [0.74721365 0.58985139 0.3061815 ]\n", + " [0.74773921 0.60212052 0.2798874 ]\n", + " [0.58384844 0.62801132 0.51451217]\n", + " [0.58712064 0.64329226 0.49139029]\n", + " [0.58998643 0.65837308 0.46739801]\n", + " [0.59240785 0.67316269 0.4426115 ]\n", + " [0.59435316 0.68757821 0.41710973]\n", + " [0.59579672 0.7015437 0.3909766 ]\n", + " [0.59671906 0.71498928 0.36430304]\n", + " [0.59710723 0.72785109 0.33718801]\n", + " [0.74773921 0.60212052 0.2798874 ]\n", + " [0.72883459 0.62094265 0.28849673]\n", + " [0.70896553 0.63963791 0.29703742]\n", + " [0.68818077 0.65810307 0.30546289]\n", + " [0.66653505 0.67624296 0.31372995]\n", + " [0.64409097 0.69396887 0.32179812]\n", + " [0.62092079 0.7111975 0.32962932]\n", + " [0.59710723 0.72785109 0.33718801]\n", + " [0.7223446 0.51823478 0.45787661]\n", + " [0.69905401 0.53923562 0.46962585]\n", + " [0.67445946 0.56019647 0.48092032]\n", + " [0.6486627 0.58094242 0.49167327]\n", + " [0.62178358 0.60131101 0.50180698]\n", + " [0.59395862 0.6211556 0.51125226]\n", + " [0.73217436 0.51666845 0.44381801]\n", + " [0.73711041 0.53318375 0.41519072]\n", + " [0.74117136 0.54960731 0.38548259]\n", + " [0.7442921 0.56578825 0.35484212]\n", + " [0.74642366 0.58158823 0.32342983]\n", + " [0.74753239 0.596885 0.29141657]\n", + " [0.5854023 0.63463821 0.50451808]\n", + " [0.58914533 0.65324335 0.4755848 ]\n", + " [0.59223935 0.67145658 0.4454196 ]\n", + " [0.59462337 0.68912191 0.41416669]\n", + " [0.59625018 0.70609945 0.38198074]\n", + " [0.59708661 0.72226302 0.34903253]\n", + " [0.73961761 0.61029422 0.28373712]\n", + " [0.71579364 0.63329036 0.29424951]\n", + " [0.69056888 0.65599252 0.30461195]\n", + " [0.66404156 0.67822217 0.31474353]\n", + " [0.63632713 0.6998159 0.32456971]\n", + " [0.607563 0.72062259 0.33402139]\n", + " [0.7302381 0.51084645 0.45363886]\n", + " [0.7302381 0.51084645 0.45363886]\n", + " [0.59718925 0.72775228 0.33725602]\n", + " [0.59718925 0.72775228 0.33725602]\n", + " [0.7242626 0.52412478 0.44803673]\n", + " [0.72915196 0.54082033 0.41934566]\n", + " [0.73317462 0.55740253 0.38956052]\n", + " [0.73626623 0.57371829 0.35883055]\n", + " [0.73837795 0.58962863 0.32731648]\n", + " [0.739476 0.60501114 0.29518939]\n", + " [0.70091148 0.54530779 0.45974179]\n", + " [0.70564772 0.5624818 0.43090081]\n", + " [0.70954646 0.57948041 0.40093175]\n", + " [0.71254458 0.59614727 0.36998466]\n", + " [0.71459305 0.61234301 0.33822006]\n", + " [0.71565717 0.62794538 0.30580945]\n", + " [0.67624456 0.56643209 0.47100742]\n", + " [0.68079913 0.58403076 0.44206404]\n", + " [0.68455188 0.60139446 0.4119629 ]\n", + " [0.68744008 0.61836633 0.38085328]\n", + " [0.68941414 0.63480761 0.3488946 ]\n", + " [0.69043838 0.65059614 0.3162586 ]\n", + " [0.65036431 0.58732063 0.48174759]\n", + " [0.65470946 0.60528706 0.45275058]\n", + " [0.6582935 0.62296425 0.42256978]\n", + " [0.66105385 0.64019591 0.39135277]\n", + " [0.66294072 0.65684375 0.35925742]\n", + " [0.66391806 0.672785 0.32645544]\n", + " [0.62339078 0.60781024 0.49188479]\n", + " [0.62749862 0.62608707 0.46288277]\n", + " [0.63089023 0.64402677 0.43267429]\n", + " [0.63350348 0.66147358 0.40140508]\n", + " [0.63528912 0.67828896 0.36923138]\n", + " [0.63621174 0.69434886 0.33632466]\n", + " [0.59546067 0.62775407 0.50134959]\n", + " [0.59930359 0.6462838 0.47239015]\n", + " [0.60247921 0.66443485 0.44220486]\n", + " [0.60492619 0.68205142 0.41093816]\n", + " [0.60659669 0.69899404 0.37874501]\n", + " [0.60745685 0.71513706 0.34579641]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:fp_optics: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:cartToSphere: vec: [[-0.60172872 -0.42347904 0.67719129]\n", + " [-0.62304502 -0.41564962 0.6626087 ]\n", + " [-0.64434373 -0.40720815 0.64730417]\n", + " [-0.6655051 -0.39818784 0.63130769]\n", + " [-0.68641801 -0.38862259 0.61465665]\n", + " [-0.7069793 -0.37854746 0.59739609]\n", + " [-0.72709341 -0.36799934 0.57957887]\n", + " [-0.74667229 -0.35701758 0.56126548]\n", + " [-0.60172872 -0.42347904 0.67719129]\n", + " [-0.60020169 -0.40106618 0.6920288 ]\n", + " [-0.59831745 -0.37781025 0.7065944 ]\n", + " [-0.59604452 -0.35380169 0.72080184]\n", + " [-0.59336032 -0.32913163 0.73457192]\n", + " [-0.59025103 -0.30389273 0.74783216]\n", + " [-0.58671124 -0.27817997 0.76051682]\n", + " [-0.58274359 -0.25209117 0.77256712]\n", + " [-0.74667229 -0.35701758 0.56126548]\n", + " [-0.74666694 -0.33316897 0.57574901]\n", + " [-0.74606417 -0.30856179 0.59006599]\n", + " [-0.74483257 -0.28327984 0.60413324]\n", + " [-0.7429484 -0.25740969 0.61787372]\n", + " [-0.74039586 -0.23104257 0.63121573]\n", + " [-0.73716755 -0.20427522 0.64409288]\n", + " [-0.73326477 -0.17720985 0.65644455]\n", + " [-0.58274359 -0.25209117 0.77256712]\n", + " [-0.60493903 -0.24241158 0.7584757 ]\n", + " [-0.62708482 -0.23233841 0.74349411]\n", + " [-0.64906646 -0.22190163 0.72764854]\n", + " [-0.67077572 -0.21113345 0.71097299]\n", + " [-0.69210958 -0.20006908 0.69351041]\n", + " [-0.71297001 -0.1887472 0.67531346]\n", + " [-0.73326477 -0.17720985 0.65644455]\n", + " [-0.61101259 -0.42006718 0.6709748 ]\n", + " [-0.63714276 -0.41005444 0.65261356]\n", + " [-0.6631265 -0.39915545 0.63319679]\n", + " [-0.68875566 -0.38743231 0.61279021]\n", + " [-0.71384031 -0.37494964 0.59147678]\n", + " [-0.73820763 -0.36177636 0.56935697]\n", + " [-0.60117765 -0.41379023 0.68363958]\n", + " [-0.59907138 -0.38574135 0.70165312]\n", + " [-0.59639609 -0.35651599 0.71917179]\n", + " [-0.59310652 -0.32628161 0.73604685]\n", + " [-0.58917718 -0.29520887 0.75214491]\n", + " [-0.58460149 -0.26347382 0.7673478 ]\n", + " [-0.74667487 -0.3467565 0.56765886]\n", + " [-0.74627023 -0.31700738 0.58530937]\n", + " [-0.74493633 -0.28620186 0.60262622]\n", + " [-0.74262626 -0.25449806 0.61946507]\n", + " [-0.73931101 -0.22206399 0.63569396]\n", + " [-0.73498056 -0.1890801 0.65119298]\n", + " [-0.59243366 -0.24801119 0.76649384]\n", + " [-0.61961795 -0.23588039 0.74862142]\n", + " [-0.64661308 -0.22318784 0.72943726]\n", + " [-0.67321732 -0.20999184 0.70900061]\n", + " [-0.69924095 -0.19635728 0.68739066]\n", + " [-0.72450586 -0.18235675 0.66470841]\n", + " [-0.60179685 -0.42337824 0.67719378]\n", + " [-0.60179685 -0.42337824 0.67719378]\n", + " [-0.73321092 -0.17734256 0.65646886]\n", + " [-0.73321092 -0.17734256 0.65646886]\n", + " [-0.61044418 -0.41042181 0.67743032]\n", + " [-0.60846212 -0.38221569 0.69547466]\n", + " [-0.60588217 -0.35284021 0.71302916]\n", + " [-0.60265945 -0.32246182 0.72994518]\n", + " [-0.59876887 -0.2912505 0.74608913]\n", + " [-0.59420414 -0.25938219 0.76134244]\n", + " [-0.63671182 -0.40026035 0.65908248]\n", + " [-0.63506664 -0.37164808 0.67717654]\n", + " [-0.63274659 -0.3418864 0.69479885]\n", + " [-0.62970771 -0.3111388 0.71180112]\n", + " [-0.62592559 -0.27957363 0.72804927]\n", + " [-0.6213944 -0.24736689 0.74342358]\n", + " [-0.66282404 -0.38923256 0.63965796]\n", + " [-0.66149535 -0.36027046 0.65774547]\n", + " [-0.65942203 -0.33017867 0.6753848 ]\n", + " [-0.65656043 -0.29911807 0.69242817]\n", + " [-0.65288603 -0.26725593 0.70874121]\n", + " [-0.6483928 -0.23476892 0.72420324]\n", + " [-0.68857331 -0.37739968 0.61922232]\n", + " [-0.68754237 -0.34814173 0.63724629]\n", + " [-0.68570408 -0.31777415 0.65485075]\n", + " [-0.68301434 -0.28645594 0.67188869]\n", + " [-0.67944774 -0.25435399 0.68822585]\n", + " [-0.67499745 -0.22164603 0.70374106]\n", + " [-0.71376988 -0.3648256 0.59785854]\n", + " [-0.71301832 -0.33532403 0.61576186]\n", + " [-0.71140335 -0.30473409 0.63327909]\n", + " [-0.70887982 -0.27321379 0.65026427]\n", + " [-0.70542093 -0.24093023 0.66658378]\n", + " [-0.70101858 -0.20806238 0.68211655]\n", + " [-0.73824074 -0.35157886 0.57566736]\n", + " [-0.73774924 -0.32188521 0.5933936 ]\n", + " [-0.73634458 -0.29112639 0.61077171]\n", + " [-0.73398031 -0.25946036 0.62765693]\n", + " [-0.73062799 -0.22705484 0.6439168 ]\n", + " [-0.72627809 -0.19408993 0.659431 ]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:cartToSphere: vec: [[ 1.97597838e-01 -3.24807370e-01 9.24908248e-01]\n", + " [ 1.71670714e-01 -3.35222810e-01 9.26366468e-01]\n", + " [ 1.45086112e-01 -3.45576984e-01 9.27106557e-01]\n", + " [ 1.17942842e-01 -3.55813637e-01 9.27084754e-01]\n", + " [ 9.03409561e-02 -3.65880174e-01 9.26266813e-01]\n", + " [ 6.23834746e-02 -3.75727122e-01 9.24628267e-01]\n", + " [ 3.41772332e-02 -3.85308003e-01 9.22154900e-01]\n", + " [ 5.83264004e-03 -3.94579633e-01 9.18843236e-01]\n", + " [ 1.97597838e-01 -3.24807370e-01 9.24908248e-01]\n", + " [ 1.87961207e-01 -2.99534014e-01 9.35387598e-01]\n", + " [ 1.78106021e-01 -2.74127132e-01 9.45056909e-01]\n", + " [ 1.68070251e-01 -2.48690486e-01 9.53889634e-01]\n", + " [ 1.57891954e-01 -2.23331268e-01 9.61869677e-01]\n", + " [ 1.47608863e-01 -1.98160244e-01 9.68991301e-01]\n", + " [ 1.37258138e-01 -1.73292158e-01 9.75258956e-01]\n", + " [ 1.26876392e-01 -1.48846082e-01 9.80687119e-01]\n", + " [ 5.83264004e-03 -3.94579633e-01 9.18843236e-01]\n", + " [-4.00140844e-03 -3.68368365e-01 9.29671305e-01]\n", + " [-1.38033121e-02 -3.41911430e-01 9.39630801e-01]\n", + " [-2.35344734e-02 -3.15317821e-01 9.48694261e-01]\n", + " [-3.31574194e-02 -2.88697872e-01 9.56845925e-01]\n", + " [-4.26359972e-02 -2.62162627e-01 9.64081391e-01]\n", + " [-5.19351948e-02 -2.35824266e-01 9.70406951e-01]\n", + " [-6.10206291e-02 -2.09797532e-01 9.75838859e-01]\n", + " [ 1.26876392e-01 -1.48846082e-01 9.80687119e-01]\n", + " [ 1.01221830e-01 -1.57230103e-01 9.82360848e-01]\n", + " [ 7.49973700e-02 -1.65809758e-01 9.83301845e-01]\n", + " [ 4.83068992e-02 -1.74527698e-01 9.83466586e-01]\n", + " [ 2.12545870e-02 -1.83331362e-01 9.82821374e-01]\n", + " [-6.05474348e-03 -1.92172799e-01 9.81342425e-01]\n", + " [-3.35153488e-02 -2.01008212e-01 9.79016047e-01]\n", + " [-6.10206291e-02 -2.09797532e-01 9.75838859e-01]\n", + " [ 1.86348027e-01 -3.29265868e-01 9.25666463e-01]\n", + " [ 1.54116774e-01 -3.41996299e-01 9.26977104e-01]\n", + " [ 1.20996166e-01 -3.54578531e-01 9.27164491e-01]\n", + " [ 8.71697817e-02 -3.66914262e-01 9.26161624e-01]\n", + " [ 5.28273795e-02 -3.78912403e-01 9.23923514e-01]\n", + " [ 1.81671783e-02 -3.90488738e-01 9.20428433e-01]\n", + " [ 1.93337969e-01 -3.13846305e-01 9.29581049e-01]\n", + " [ 1.81375341e-01 -2.82767556e-01 9.41884014e-01]\n", + " [ 1.69122299e-01 -2.51590885e-01 9.52942640e-01]\n", + " [ 1.56648897e-01 -2.20512215e-01 9.62722954e-01]\n", + " [ 1.44024572e-01 -1.89735509e-01 9.71214374e-01]\n", + " [ 1.31317493e-01 -1.59473798e-01 9.78429264e-01]\n", + " [ 1.64053806e-03 -3.83157400e-01 9.23681609e-01]\n", + " [-1.03955134e-02 -3.50854151e-01 9.36372414e-01]\n", + " [-2.23450183e-02 -3.18290058e-01 9.47729993e-01]\n", + " [-3.41384957e-02 -2.85667748e-01 9.57720471e-01]\n", + " [-4.57093630e-02 -2.53191697e-01 9.66335666e-01]\n", + " [-5.69934528e-02 -2.21069392e-01 9.73591326e-01]\n", + " [ 1.15802902e-01 -1.52556922e-01 9.81486665e-01]\n", + " [ 8.39635869e-02 -1.62972882e-01 9.83051350e-01]\n", + " [ 5.13713917e-02 -1.73624994e-01 9.83471068e-01]\n", + " [ 1.82179589e-02 -1.84414499e-01 9.82679703e-01]\n", + " [-1.53037043e-02 -1.95253068e-01 9.80633487e-01]\n", + " [-4.89985526e-02 -2.06061636e-01 9.77311488e-01]\n", + " [ 1.97477869e-01 -3.24756937e-01 9.24951579e-01]\n", + " [ 1.97477869e-01 -3.24756937e-01 9.24951579e-01]\n", + " [-6.08959476e-02 -2.09855933e-01 9.75834090e-01]\n", + " [-6.08959476e-02 -2.09855933e-01 9.75834090e-01]\n", + " [ 1.82193482e-01 -3.18311259e-01 9.30313645e-01]\n", + " [ 1.70204222e-01 -2.87098985e-01 9.42658313e-01]\n", + " [ 1.57946848e-01 -2.55775964e-01 9.53746009e-01]\n", + " [ 1.45491863e-01 -2.24538257e-01 9.63542780e-01]\n", + " [ 1.32909058e-01 -1.93589540e-01 9.72038205e-01]\n", + " [ 1.20266743e-01 -1.63142357e-01 9.79244853e-01]\n", + " [ 1.49925885e-01 -3.30930785e-01 9.31668956e-01]\n", + " [ 1.37876035e-01 -2.99380500e-01 9.44119439e-01]\n", + " [ 1.25621630e-01 -2.67685659e-01 9.55281945e-01]\n", + " [ 1.13234300e-01 -2.36043069e-01 9.65122615e-01]\n", + " [ 1.00784685e-01 -2.04655719e-01 9.73631596e-01]\n", + " [ 8.83414552e-02 -1.73734437e-01 9.80822172e-01]\n", + " [ 1.16776689e-01 -3.43422591e-01 9.31892767e-01]\n", + " [ 1.04689110e-01 -3.11594263e-01 9.44430625e-01]\n", + " [ 9.24616234e-02 -2.79590797e-01 9.55656756e-01]\n", + " [ 8.01665120e-02 -2.47610251e-01 9.65537412e-01]\n", + " [ 6.78747059e-02 -2.15855344e-01 9.74063394e-01]\n", + " [ 5.56548283e-02 -1.84535217e-01 9.81248844e-01]\n", + " [ 8.29297309e-02 -3.55688910e-01 9.30917858e-01]\n", + " [ 7.08283829e-02 -3.23643777e-01 9.43524269e-01]\n", + " [ 5.86532776e-02 -2.91395516e-01 9.54802831e-01]\n", + " [ 4.64766594e-02 -2.59143738e-01 9.64719878e-01]\n", + " [ 3.43689673e-02 -2.27091375e-01 9.73266809e-01]\n", + " [ 2.23981221e-02 -1.95446342e-01 9.80458593e-01]\n", + " [ 4.85750287e-02 -3.67639335e-01 9.28698975e-01]\n", + " [ 3.64846262e-02 -3.35440470e-01 9.41354643e-01]\n", + " [ 2.43880556e-02 -3.03012625e-01 9.52674431e-01]\n", + " [ 1.23567889e-02 -2.70556948e-01 9.62624666e-01]\n", + " [ 4.59991159e-04 -2.38276942e-01 9.71197141e-01]\n", + " [-1.12357630e-02 -2.06379926e-01 9.78407422e-01]\n", + " [ 1.39109936e-02 -3.79190278e-01 9.25214147e-01]\n", + " [ 1.85642235e-03 -3.46902604e-01 9.37899322e-01]\n", + " [-1.01358309e-02 -3.14362048e-01 9.49249055e-01]\n", + " [-2.19956882e-02 -2.81770950e-01 9.59229546e-01]\n", + " [-3.36558373e-02 -2.49333536e-01 9.67832668e-01]\n", + " [-4.50514610e-02 -2.17257151e-01 9.75074200e-01]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:fp_optics: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:fp_optics: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:cartToSphere: vec: [[-0.34435397 0.53134394 0.7740116 ]\n", + " [-0.33873938 0.50969207 0.79086637]\n", + " [-0.33273844 0.48719782 0.80741775]\n", + " [-0.32636026 0.46392832 0.82356512]\n", + " [-0.31961734 0.43995581 0.83921609]\n", + " [-0.31252609 0.41535919 0.85428577]\n", + " [-0.3051072 0.39022485 0.86869682]\n", + " [-0.29738563 0.36464648 0.88238015]\n", + " [-0.34435397 0.53134394 0.7740116 ]\n", + " [-0.37084304 0.52054788 0.76909384]\n", + " [-0.39691603 0.50927472 0.76360784]\n", + " [-0.42247494 0.49757251 0.75758599]\n", + " [-0.44742603 0.48549327 0.75107006]\n", + " [-0.4716795 0.47309251 0.7441115 ]\n", + " [-0.49514888 0.46042902 0.73677181]\n", + " [-0.51775018 0.44756493 0.72912303]\n", + " [-0.29738563 0.36464648 0.88238015]\n", + " [-0.3248171 0.35359496 0.87719123]\n", + " [-0.35186657 0.34226028 0.8712335 ]\n", + " [-0.37843133 0.33069183 0.86454187]\n", + " [-0.40441533 0.31894178 0.85716065]\n", + " [-0.42972961 0.30706467 0.84914295]\n", + " [-0.45429156 0.29511736 0.84055037]\n", + " [-0.47802335 0.28315959 0.83145314]\n", + " [-0.51775018 0.44756493 0.72912303]\n", + " [-0.51379862 0.42583755 0.74476396]\n", + " [-0.50925012 0.40339574 0.76022115]\n", + " [-0.50411567 0.38031215 0.77539026]\n", + " [-0.49840839 0.35666335 0.79017741]\n", + " [-0.49214397 0.33253033 0.80449853]\n", + " [-0.48534137 0.3079989 0.81827895]\n", + " [-0.47802335 0.28315959 0.83145314]\n", + " [-0.34204549 0.52197518 0.78137494]\n", + " [-0.33490433 0.4948635 0.80184114]\n", + " [-0.3271914 0.46655284 0.82175071]\n", + " [-0.31892827 0.43717398 0.84093024]\n", + " [-0.31014519 0.40687226 0.85922344]\n", + " [-0.30088202 0.37580981 0.8764913 ]\n", + " [-0.35592986 0.52662571 0.77199695]\n", + " [-0.38812862 0.51306706 0.76558368]\n", + " [-0.41960457 0.49883918 0.75834786]\n", + " [-0.45018334 0.48403622 0.75036251]\n", + " [-0.47969956 0.46876035 0.74172237]\n", + " [-0.50799509 0.45312117 0.73254501]\n", + " [-0.30941287 0.35995392 0.88016865]\n", + " [-0.34278915 0.34621257 0.8732883 ]\n", + " [-0.37548885 0.33209445 0.86528689]\n", + " [-0.40733235 0.31769453 0.85624211]\n", + " [-0.43815576 0.30311317 0.8462517 ]\n", + " [-0.46780911 0.28845622 0.83543261]\n", + " [-0.51602521 0.43822823 0.73598506]\n", + " [-0.51077845 0.41110935 0.75504601]\n", + " [-0.50464588 0.38298904 0.773726 ]\n", + " [-0.49765077 0.35400657 0.79184788]\n", + " [-0.48982207 0.32431113 0.80925684]\n", + " [-0.48119624 0.29406266 0.82581918]\n", + " [-0.34442662 0.53123535 0.77405381]\n", + " [-0.34442662 0.53123535 0.77405381]\n", + " [-0.47796958 0.28328579 0.83144107]\n", + " [-0.47796958 0.28328579 0.83144107]\n", + " [-0.35359421 0.51734875 0.77930828]\n", + " [-0.38592231 0.503752 0.7728505 ]\n", + " [-0.4175279 0.4895004 0.76554543]\n", + " [-0.44823657 0.47468859 0.75746599]\n", + " [-0.47788339 0.45941913 0.74870657]\n", + " [-0.50631112 0.44380182 0.7393842 ]\n", + " [-0.34656771 0.49019535 0.79974955]\n", + " [-0.37922297 0.4765088 0.79317672]\n", + " [-0.41115776 0.46221043 0.7856913 ]\n", + " [-0.44219708 0.44739619 0.77736632]\n", + " [-0.47217713 0.43216961 0.76829564]\n", + " [-0.50094317 0.41664082 0.758595 ]\n", + " [-0.33894815 0.46185178 0.81963838]\n", + " [-0.37187198 0.44810317 0.81296666]\n", + " [-0.40407963 0.43378973 0.80532361]\n", + " [-0.4353951 0.41900831 0.796783 ]\n", + " [-0.46565524 0.40386284 0.78743889]\n", + " [-0.49470752 0.38846341 0.77740636]\n", + " [-0.3307565 0.4324491 0.83880147]\n", + " [-0.36388889 0.41866739 0.83204717]\n", + " [-0.39631244 0.40437217 0.82426913]\n", + " [-0.42784989 0.38966053 0.81554224]\n", + " [-0.45833828 0.37463614 0.8059614 ]\n", + " [-0.4876267 0.35940841 0.79564175]\n", + " [-0.32202226 0.40213299 0.85708268]\n", + " [-0.35530141 0.38834802 0.85026274]\n", + " [-0.38788268 0.37410515 0.84237306]\n", + " [-0.41958764 0.35950098 0.83348981]\n", + " [-0.45025308 0.34463818 0.8237091 ]\n", + " [-0.47972901 0.32962489 0.81314667]\n", + " [-0.31278465 0.37106576 0.87434316]\n", + " [-0.34614698 0.35730773 0.86747533]\n", + " [-0.37882646 0.3431512 0.85949856]\n", + " [-0.41064369 0.32869165 0.85049019]\n", + " [-0.44143499 0.31403012 0.84054758]\n", + " [-0.4710505 0.29927309 0.82978735]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:fp_optics: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:cartToSphere: vec: [[ 0.30190113 -0.15906216 0.93997603]\n", + " [ 0.29485845 -0.18497827 0.93746548]\n", + " [ 0.28730009 -0.21126632 0.93425114]\n", + " [ 0.27926241 -0.23780697 0.93030122]\n", + " [ 0.27078029 -0.2644849 0.92559482]\n", + " [ 0.26188817 -0.29118778 0.92012187]\n", + " [ 0.25262094 -0.31780569 0.91388304]\n", + " [ 0.24301455 -0.34423112 0.90688967]\n", + " [ 0.30190113 -0.15906216 0.93997603]\n", + " [ 0.27790533 -0.15055107 0.94873758]\n", + " [ 0.25312854 -0.14189164 0.95697059]\n", + " [ 0.22767375 -0.13309906 0.964598 ]\n", + " [ 0.20164257 -0.1241929 0.9715536 ]\n", + " [ 0.1751366 -0.11519687 0.9777816 ]\n", + " [ 0.14825851 -0.10613841 0.98323652]\n", + " [ 0.12111249 -0.09704822 0.9878833 ]\n", + " [ 0.24301455 -0.34423112 0.90688967]\n", + " [ 0.21755421 -0.33722859 0.91594052]\n", + " [ 0.191396 -0.32981489 0.92444021]\n", + " [ 0.16463512 -0.32200428 0.93231353]\n", + " [ 0.13736907 -0.31381463 0.93949461]\n", + " [ 0.10969905 -0.30526783 0.94592689]\n", + " [ 0.08173028 -0.29639005 0.9515635 ]\n", + " [ 0.05357149 -0.28721167 0.9563679 ]\n", + " [ 0.12111249 -0.09704822 0.9878833 ]\n", + " [ 0.11212174 -0.12349402 0.98599084]\n", + " [ 0.10285522 -0.15036684 0.98326528]\n", + " [ 0.09334543 -0.17755417 0.979674 ]\n", + " [ 0.08362601 -0.20494432 0.9751946 ]\n", + " [ 0.07373225 -0.23242534 0.96981545]\n", + " [ 0.0637012 -0.25988503 0.96353616]\n", + " [ 0.05357149 -0.28721167 0.9563679 ]\n", + " [ 0.29881521 -0.1702796 0.93899645]\n", + " [ 0.2898309 -0.20230879 0.93545134]\n", + " [ 0.2801085 -0.2347776 0.93081615]\n", + " [ 0.26971282 -0.26747214 0.92504792]\n", + " [ 0.25870734 -0.30018552 0.91812808]\n", + " [ 0.2471567 -0.33271637 0.9100623 ]\n", + " [ 0.29151794 -0.15545848 0.94384848]\n", + " [ 0.26156892 -0.14492663 0.95424209]\n", + " [ 0.23054945 -0.13418636 0.96376396]\n", + " [ 0.19864705 -0.12327188 0.97228771]\n", + " [ 0.16604888 -0.11222682 0.97971062]\n", + " [ 0.13294461 -0.10110307 0.98595329]\n", + " [ 0.23203915 -0.34113905 0.9109237 ]\n", + " [ 0.20035403 -0.33227769 0.92165601]\n", + " [ 0.16771505 -0.32281272 0.93148463]\n", + " [ 0.13430066 -0.31277549 0.94028444]\n", + " [ 0.10029719 -0.30220636 0.94795137]\n", + " [ 0.06589985 -0.29115525 0.95440339]\n", + " [ 0.117322 -0.10855009 0.98714357]\n", + " [ 0.10611435 -0.14126381 0.9842684 ]\n", + " [ 0.09452451 -0.17450689 0.98010839]\n", + " [ 0.0826139 -0.20807348 0.97461806]\n", + " [ 0.07044748 -0.24175748 0.96777604]\n", + " [ 0.05809414 -0.27535248 0.95958641]\n", + " [ 0.30179736 -0.15912117 0.93999937]\n", + " [ 0.30179736 -0.15912117 0.93999937]\n", + " [ 0.05370274 -0.28715043 0.95637892]\n", + " [ 0.05370274 -0.28715043 0.95637892]\n", + " [ 0.28847456 -0.16665657 0.94287222]\n", + " [ 0.2583586 -0.15621805 0.95333455]\n", + " [ 0.22718047 -0.14554338 0.96291545]\n", + " [ 0.1951263 -0.13466729 0.97148878]\n", + " [ 0.16238255 -0.12363392 0.97895177]\n", + " [ 0.12913885 -0.11249559 0.9852248 ]\n", + " [ 0.27933323 -0.19879927 0.93938906]\n", + " [ 0.24878963 -0.18863034 0.95001174]\n", + " [ 0.21720555 -0.17814935 0.9597315 ]\n", + " [ 0.18476363 -0.16739205 0.96842258]\n", + " [ 0.15164894 -0.15640344 0.97598185]\n", + " [ 0.11805158 -0.14523667 0.98232893]\n", + " [ 0.26947707 -0.23138418 0.93479595]\n", + " [ 0.23857003 -0.22149515 0.94552855]\n", + " [ 0.20664224 -0.21122187 0.95534513]\n", + " [ 0.17387384 -0.20060019 0.96412004]\n", + " [ 0.1404494 -0.18967509 0.97174962]\n", + " [ 0.10656014 -0.17849986 0.97815272]\n", + " [ 0.25896966 -0.26419826 0.92905005]\n", + " [ 0.2277605 -0.25460151 0.93984213]\n", + " [ 0.19554959 -0.24455163 0.94971304]\n", + " [ 0.16251562 -0.23408372 0.95853716]\n", + " [ 0.12884334 -0.22324194 0.96621035]\n", + " [ 0.09472534 -0.21207905 0.9726508 ]\n", + " [ 0.24787366 -0.29703481 0.92213284]\n", + " [ 0.2164221 -0.28774302 0.93293378]\n", + " [ 0.18398823 -0.27793222 0.942816 ]\n", + " [ 0.15075018 -0.2676361 0.95165398]\n", + " [ 0.11689328 -0.25689743 0.95934335]\n", + " [ 0.08261147 -0.24576798 0.96580197]\n", + " [ 0.23625332 -0.32969214 0.91405003]\n", + " [ 0.20461864 -0.32071675 0.92480916]\n", + " [ 0.17202237 -0.31115933 0.93465939]\n", + " [ 0.13864278 -0.30105184 0.94347547]\n", + " [ 0.10466597 -0.2904353 0.95115318]\n", + " [ 0.07028686 -0.27936015 0.95761039]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:fp_optics: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:cartToSphere: vec: [[-0.12969568 0.23974893 -0.96213278]\n", + " [-0.11269691 0.26174298 -0.95853535]\n", + " [-0.09527113 0.28395838 -0.95409174]\n", + " [-0.07748299 0.30629521 -0.94877797]\n", + " [-0.05939807 0.32865649 -0.94257985]\n", + " [-0.04108394 0.35094696 -0.93549363]\n", + " [-0.02261072 0.37307265 -0.92752658]\n", + " [-0.0040508 0.39494137 -0.9186974 ]\n", + " [-0.12969568 0.23974893 -0.96213278]\n", + " [-0.15240903 0.25615648 -0.95454457]\n", + " [-0.17486235 0.27237346 -0.94616904]\n", + " [-0.19696812 0.28834193 -0.93704989]\n", + " [-0.21863982 0.30400853 -0.92724077]\n", + " [-0.23979167 0.3193248 -0.91680512]\n", + " [-0.26033808 0.33424724 -0.90581613]\n", + " [-0.28019324 0.34873719 -0.89435682]\n", + " [-0.0040508 0.39494137 -0.9186974 ]\n", + " [-0.02762962 0.41178275 -0.91086309]\n", + " [-0.05110582 0.42820159 -0.90223699]\n", + " [-0.07438722 0.44413847 -0.8928648 ]\n", + " [-0.0973845 0.45954045 -0.88280169]\n", + " [-0.12001156 0.47436116 -0.87211164]\n", + " [-0.14218495 0.48856024 -0.8608672 ]\n", + " [-0.16382254 0.50210233 -0.84914982]\n", + " [-0.28019324 0.34873719 -0.89435682]\n", + " [-0.26511193 0.37082403 -0.8900591 ]\n", + " [-0.24940425 0.3930188 -0.88506143]\n", + " [-0.23313753 0.41521742 -0.87934145]\n", + " [-0.21637873 0.43731974 -0.87288699]\n", + " [-0.19919482 0.45922927 -0.86569619]\n", + " [-0.18165328 0.48085315 -0.85777756]\n", + " [-0.16382254 0.50210233 -0.84914982]\n", + " [-0.12241912 0.24936121 -0.96064174]\n", + " [-0.10129086 0.27647936 -0.95566695]\n", + " [-0.07958528 0.3038302 -0.94939633]\n", + " [-0.05742263 0.33123404 -0.94179969]\n", + " [-0.0349274 0.35851546 -0.93287016]\n", + " [-0.01222962 0.38550215 -0.92262589]\n", + " [-0.13956811 0.24699716 -0.95891248]\n", + " [-0.16724274 0.2669861 -0.9490776 ]\n", + " [-0.1944398 0.28663055 -0.93810239]\n", + " [-0.22099962 0.30583036 -0.92608151]\n", + " [-0.24676418 0.32449631 -0.91313175]\n", + " [-0.27157584 0.34255035 -0.89939192]\n", + " [-0.0144014 0.40225793 -0.91541311]\n", + " [-0.04324217 0.42262249 -0.90527363]\n", + " [-0.07183681 0.4422928 -0.89398912]\n", + " [-0.10001965 0.46116866 -0.88165727]\n", + " [-0.12763213 0.47916465 -0.86839581]\n", + " [-0.15452124 0.49620859 -0.85434198]\n", + " [-0.27363191 0.35829843 -0.89260731]\n", + " [-0.25471707 0.38545451 -0.88687318]\n", + " [-0.23492845 0.41266891 -0.8800642 ]\n", + " [-0.2143895 0.43975563 -0.87215373]\n", + " [-0.19322354 0.46653706 -0.86313836]\n", + " [-0.17155521 0.49284378 -0.853038 ]\n", + " [-0.12971637 0.23988001 -0.96209731]\n", + " [-0.12971637 0.23988001 -0.96209731]\n", + " [-0.16381094 0.50198525 -0.84922128]\n", + " [-0.16381094 0.50198525 -0.84922128]\n", + " [-0.1323105 0.25650436 -0.95744423]\n", + " [-0.16010683 0.27655109 -0.9475681 ]\n", + " [-0.18743924 0.29622945 -0.93654399]\n", + " [-0.21414809 0.31543889 -0.92446682]\n", + " [-0.24007579 0.33409001 -0.9114535 ]\n", + " [-0.26506525 0.35210479 -0.89764282]\n", + " [-0.11128227 0.28368747 -0.95243776]\n", + " [-0.13938871 0.30387431 -0.94246018]\n", + " [-0.16706965 0.32362679 -0.93131812]\n", + " [-0.19416519 0.34284334 -0.91910735]\n", + " [-0.22051884 0.36143423 -0.90594522]\n", + " [-0.2459754 0.37932171 -0.89197037]\n", + " [-0.08965838 0.31109012 -0.94614181]\n", + " [-0.11802345 0.33138123 -0.93608597]\n", + " [-0.14600179 0.35117413 -0.92485686]\n", + " [-0.17343265 0.37036666 -0.91255118]\n", + " [-0.20016009 0.38886922 -0.89928676]\n", + " [-0.22603065 0.40660476 -0.88520208]\n", + " [-0.06755861 0.33853224 -0.93852638]\n", + " [-0.09612992 0.35889046 -0.92841622]\n", + " [-0.12435442 0.37868874 -0.91713184]\n", + " [-0.15207002 0.39782486 -0.90477074]\n", + " [-0.17912063 0.41620994 -0.89145111]\n", + " [-0.2053539 0.43376814 -0.87731122]\n", + " [-0.04510684 0.36583796 -0.92958483]\n", + " [-0.07383044 0.38622509 -0.91944507]\n", + " [-0.10224884 0.40599299 -0.90813813]\n", + " [-0.13019834 0.42503999 -0.89576191]\n", + " [-0.15752208 0.44327848 -0.88243469]\n", + " [-0.18406798 0.46063415 -0.8682944 ]\n", + " [-0.02243254 0.39283464 -0.91933548]\n", + " [-0.05125278 0.41321193 -0.90919143]\n", + " [-0.07981119 0.43291385 -0.89789519]\n", + " [-0.10794257 0.45183979 -0.88554458]\n", + " [-0.13548884 0.46990372 -0.87225757]\n", + " [-0.16229736 0.48703294 -0.85817159]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:fp_optics: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:cartToSphere: vec: [[-0.86125812 0.33523163 0.38190864]\n", + " [-0.87327807 0.31241046 0.37387847]\n", + " [-0.88492326 0.28894947 0.36526569]\n", + " [-0.89610362 0.26492972 0.3561047 ]\n", + " [-0.90673948 0.24043538 0.34643087]\n", + " [-0.91676154 0.21555402 0.33628075]\n", + " [-0.92611076 0.19037672 0.32569243]\n", + " [-0.93473836 0.16499797 0.31470602]\n", + " [-0.86125812 0.33523163 0.38190864]\n", + " [-0.86569243 0.34879121 0.35905613]\n", + " [-0.86964619 0.36225895 0.33538629]\n", + " [-0.87305717 0.37557357 0.31099143]\n", + " [-0.87587378 0.38867608 0.28596507]\n", + " [-0.87805502 0.40150967 0.2604023 ]\n", + " [-0.87957043 0.41401977 0.23440026]\n", + " [-0.88039995 0.42615446 0.20805841]\n", + " [-0.93473836 0.16499797 0.31470602]\n", + " [-0.94029393 0.1775276 0.29039847]\n", + " [-0.94520908 0.19016922 0.26535913]\n", + " [-0.94942174 0.20286418 0.23967581]\n", + " [-0.95287965 0.21555598 0.21343848]\n", + " [-0.95554034 0.22818948 0.18674107]\n", + " [-0.95737137 0.24071059 0.15968243]\n", + " [-0.95835093 0.25306649 0.13236633]\n", + " [-0.88039995 0.42615446 0.20805841]\n", + " [-0.89333772 0.40334023 0.1981524 ]\n", + " [-0.90580698 0.37975341 0.18788579]\n", + " [-0.91771925 0.35547031 0.1772914 ]\n", + " [-0.9289954 0.33057121 0.1664038 ]\n", + " [-0.93956521 0.30514186 0.15526 ]\n", + " [-0.94936753 0.27927426 0.14389991]\n", + " [-0.95835093 0.25306649 0.13236633]\n", + " [-0.86655503 0.32541158 0.37840413]\n", + " [-0.88104758 0.29700115 0.36816502]\n", + " [-0.89488646 0.26770978 0.357085 ]\n", + " [-0.90792069 0.23769114 0.34522882]\n", + " [-0.92002269 0.20710641 0.33266378]\n", + " [-0.931088 0.17612472 0.31946082]\n", + " [-0.86328818 0.34107395 0.37202431]\n", + " [-0.86840907 0.35763842 0.34345371]\n", + " [-0.872745 0.37400393 0.31374706]\n", + " [-0.87619656 0.39006094 0.28307605]\n", + " [-0.87868827 0.40570485 0.25161577]\n", + " [-0.88016837 0.4208363 0.21954601]\n", + " [-0.93720662 0.17053066 0.30424177]\n", + " [-0.94359291 0.18597072 0.27394766]\n", + " [-0.94895455 0.20152027 0.24264139]\n", + " [-0.95319129 0.21707445 0.21048763]\n", + " [-0.95622495 0.23253171 0.17765939]\n", + " [-0.95800021 0.24779296 0.14434075]\n", + " [-0.88609072 0.4162662 0.20387665]\n", + " [-0.90164381 0.38777565 0.19149015]\n", + " [-0.91640421 0.35820021 0.17859432]\n", + " [-0.93022241 0.3276859 0.165252 ]\n", + " [-0.94296913 0.29639071 0.1515314 ]\n", + " [-0.95453581 0.26448658 0.1375072 ]\n", + " [-0.86131566 0.33520122 0.38180555]\n", + " [-0.86131566 0.33520122 0.38180555]\n", + " [-0.95831977 0.25311466 0.13249974]\n", + " [-0.95831977 0.25311466 0.13249974]\n", + " [-0.86857403 0.3312691 0.36856469]\n", + " [-0.87381141 0.34780223 0.33983413]\n", + " [-0.87824126 0.36415388 0.30997458]\n", + " [-0.88176424 0.3802145 0.27915722]\n", + " [-0.88430499 0.39587924 0.2475567 ]\n", + " [-0.88581178 0.41104827 0.21535278]\n", + " [-0.88318728 0.30280585 0.35817432]\n", + " [-0.88872699 0.3192236 0.32902984]\n", + " [-0.89340071 0.33551091 0.29877682]\n", + " [-0.89710943 0.35155826 0.26758449]\n", + " [-0.89977789 0.36726017 0.23562623]\n", + " [-0.90135424 0.38251568 0.20308198]\n", + " [-0.8971306 0.27344704 0.34696311]\n", + " [-0.90293212 0.28970916 0.31746212]\n", + " [-0.90781758 0.3058937 0.2868733 ]\n", + " [-0.9116881 0.32189149 0.2553638 ]\n", + " [-0.91446816 0.33759689 0.22310608]\n", + " [-0.91610537 0.35290823 0.19028067]\n", + " [-0.91025313 0.24334608 0.33499541]\n", + " [-0.91627645 0.25941124 0.30519385]\n", + " [-0.92134198 0.27545315 0.27432558]\n", + " [-0.92535067 0.29136349 0.2425561 ]\n", + " [-0.9282263 0.30703712 0.21005745]\n", + " [-0.92991566 0.32237233 0.17701117]\n", + " [-0.92242733 0.21266413 0.322338 ]\n", + " [-0.92863243 0.22849085 0.29229052]\n", + " [-0.93384609 0.24434991 0.26119841]\n", + " [-0.9379688 0.26013432 0.22922624]\n", + " [-0.94092347 0.27574011 0.19654621]\n", + " [-0.9426559 0.29106628 0.16334098]\n", + " [-0.93354863 0.18157064 0.30906158]\n", + " [-0.93989493 0.19711845 0.27882224]\n", + " [-0.9452239 0.21275541 0.24756193]\n", + " [-0.94943549 0.22837609 0.21544514]\n", + " [-0.95245175 0.24387825 0.18264463]\n", + " [-0.95421762 0.25916222 0.14934414]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:fp_optics: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:cartToSphere: vec: [[ 0.10355845 -0.03437596 0.99402914]\n", + " [ 0.11287031 -0.05959421 0.99182096]\n", + " [ 0.12214502 -0.08535441 0.98883528]\n", + " [ 0.13135322 -0.11153506 0.98504125]\n", + " [ 0.14046399 -0.13801964 0.98041851]\n", + " [ 0.14944513 -0.16469511 0.97495727]\n", + " [ 0.15826351 -0.19145101 0.96865844]\n", + " [ 0.16688569 -0.21817908 0.9615337 ]\n", + " [ 0.10355845 -0.03437596 0.99402914]\n", + " [ 0.0776036 -0.04122633 0.99613155]\n", + " [ 0.05107019 -0.04834647 0.99752416]\n", + " [ 0.02406729 -0.05568635 0.9981582 ]\n", + " [-0.00329736 -0.06320114 0.99799536]\n", + " [-0.03091618 -0.07085024 0.99700774]\n", + " [-0.05868115 -0.0785963 0.99517795]\n", + " [-0.08648377 -0.08640459 0.99249927]\n", + " [ 0.16688569 -0.21817908 0.9615337 ]\n", + " [ 0.14052694 -0.22711262 0.96367631]\n", + " [ 0.11351606 -0.23605016 0.96508778]\n", + " [ 0.08595492 -0.24494535 0.96571918]\n", + " [ 0.05794699 -0.25375424 0.96553142]\n", + " [ 0.02959871 -0.26243489 0.96449564]\n", + " [ 0.00101972 -0.27094738 0.96259362]\n", + " [-0.02767763 -0.2792541 0.95981826]\n", + " [-0.08648377 -0.08640459 0.99249927]\n", + " [-0.07858173 -0.11318519 0.99046152]\n", + " [-0.07046395 -0.14041127 0.98758266]\n", + " [-0.06215888 -0.16796907 0.98383061]\n", + " [-0.05369606 -0.19574563 0.97918353]\n", + " [-0.04510645 -0.22362769 0.97363035]\n", + " [-0.03642244 -0.2515016 0.96717131]\n", + " [-0.02767763 -0.2792541 0.95981826]\n", + " [ 0.1075333 -0.04532001 0.993168 ]\n", + " [ 0.11892392 -0.07660918 0.9899435 ]\n", + " [ 0.13022991 -0.10859095 0.98551924]\n", + " [ 0.14139502 -0.14104883 0.97985339]\n", + " [ 0.15235997 -0.17377464 0.97292796]\n", + " [ 0.16306364 -0.20656591 0.96474907]\n", + " [ 0.09235185 -0.03741185 0.99502336]\n", + " [ 0.06013779 -0.04599718 0.99712973]\n", + " [ 0.02716322 -0.05493717 0.99812027]\n", + " [-0.00637301 -0.06414721 0.9979201 ]\n", + " [-0.04027279 -0.07355243 0.99647787]\n", + " [-0.07433706 -0.08308517 0.993766 ]\n", + " [ 0.15545067 -0.22197895 0.96258009]\n", + " [ 0.1226937 -0.23293565 0.96472133]\n", + " [ 0.0890584 -0.24385219 0.96571461]\n", + " [ 0.05473451 -0.25464668 0.96548392]\n", + " [ 0.01991797 -0.26524194 0.96397614]\n", + " [-0.01518817 -0.2755654 0.96116233]\n", + " [-0.08297139 -0.09799198 0.9917224 ]\n", + " [-0.07313708 -0.13112803 0.98866395]\n", + " [-0.06300707 -0.16482003 0.98430913]\n", + " [-0.05263528 -0.19885982 0.97861346]\n", + " [-0.04207871 -0.23303887 0.97155662]\n", + " [-0.03139749 -0.26714805 0.96314387]\n", + " [ 0.10350268 -0.03448404 0.99403121]\n", + " [ 0.10350268 -0.03448404 0.99403121]\n", + " [-0.0276094 -0.27913152 0.95985588]\n", + " [-0.0276094 -0.27913152 0.95985588]\n", + " [ 0.09634915 -0.04831657 0.9941742 ]\n", + " [ 0.06403701 -0.05707675 0.99631396]\n", + " [ 0.03095795 -0.06616326 0.99732845]\n", + " [-0.00269005 -0.07549273 0.99714272]\n", + " [-0.03670915 -0.08499109 0.99570525]\n", + " [-0.07090001 -0.09459108 0.99298828]\n", + " [ 0.10766237 -0.07979132 0.9909804 ]\n", + " [ 0.0751196 -0.08902353 0.99319276]\n", + " [ 0.04179041 -0.09850549 0.99425863]\n", + " [ 0.00787045 -0.10815663 0.99410271]\n", + " [-0.02644299 -0.11790436 0.99267282]\n", + " [-0.06094955 -0.12768175 0.98994067]\n", + " [ 0.11891573 -0.11194653 0.98657337]\n", + " [ 0.08621136 -0.1216201 0.98882564]\n", + " [ 0.05269953 -0.13147163 0.98991816]\n", + " [ 0.01857394 -0.14142203 0.98977513]\n", + " [-0.01596841 -0.15139893 0.98834375]\n", + " [-0.05072601 -0.16133484 0.98559522]\n", + " [ 0.13005243 -0.14456704 0.98091118]\n", + " [ 0.09725433 -0.15465463 0.98317015]\n", + " [ 0.06362708 -0.16485214 0.98426387]\n", + " [ 0.02936279 -0.17508063 0.98411615]\n", + " [-0.00534172 -0.18526694 0.98267371]\n", + " [-0.04028399 -0.19534232 0.97990743]\n", + " [ 0.14101263 -0.17744532 0.97397567]\n", + " [ 0.10818759 -0.18792069 0.97620759]\n", + " [ 0.0745119 -0.19844074 0.97727644]\n", + " [ 0.04017643 -0.20892569 0.97710589]\n", + " [ 0.00537773 -0.21930084 0.97564247]\n", + " [-0.02968112 -0.22949589 0.97285696]\n", + " [ 0.1517347 -0.21037884 0.96577291]\n", + " [ 0.1189485 -0.221215 0.96794379]\n", + " [ 0.08529099 -0.23203278 0.96896142]\n", + " [ 0.05095212 -0.24275092 0.96874964]\n", + " [ 0.01612805 -0.25329288 0.96725519]\n", + " [-0.01897808 -0.26358669 0.96444901]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:fp_optics: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:cartToSphere: vec: [[ 9.62572935e-01 -2.34612591e-01 1.35684478e-01]\n", + " [ 9.66232699e-01 -2.10902020e-01 1.48036176e-01]\n", + " [ 9.69279116e-01 -1.86469454e-01 1.60396816e-01]\n", + " [ 9.71653938e-01 -1.61419229e-01 1.72720751e-01]\n", + " [ 9.73310175e-01 -1.35854234e-01 1.84961970e-01]\n", + " [ 9.74211953e-01 -1.09876760e-01 1.97074019e-01]\n", + " [ 9.74334416e-01 -8.35892733e-02 2.09010235e-01]\n", + " [ 9.73663710e-01 -5.70948174e-02 2.20724174e-01]\n", + " [ 9.62572935e-01 -2.34612591e-01 1.35684478e-01]\n", + " [ 9.67890884e-01 -2.25600350e-01 1.10868027e-01]\n", + " [ 9.72625241e-01 -2.16081669e-01 8.54918285e-02]\n", + " [ 9.76710029e-01 -2.06103586e-01 5.96559386e-02]\n", + " [ 9.80090525e-01 -1.95711427e-01 3.34604300e-02]\n", + " [ 9.82723076e-01 -1.84949374e-01 7.00606310e-03]\n", + " [ 9.84574987e-01 -1.73861229e-01 -1.96052917e-02]\n", + " [ 9.85624517e-01 -1.62491040e-01 -4.62706476e-02]\n", + " [ 9.73663710e-01 -5.70948174e-02 2.20724174e-01]\n", + " [ 9.79567099e-01 -4.60506392e-02 1.95774456e-01]\n", + " [ 9.84804160e-01 -3.47404681e-02 1.70158358e-01]\n", + " [ 9.89309936e-01 -2.32078395e-02 1.43969603e-01]\n", + " [ 9.93029576e-01 -1.14964136e-02 1.17303425e-01]\n", + " [ 9.95918322e-01 3.49200615e-04 9.02583727e-02]\n", + " [ 9.97941903e-01 1.22830625e-02 6.29371457e-02]\n", + " [ 9.99077127e-01 2.42579963e-02 3.54463467e-02]\n", + " [ 9.85624517e-01 -1.62491040e-01 -4.62706476e-02]\n", + " [ 9.89925549e-01 -1.37166390e-01 -3.51111035e-02]\n", + " [ 9.93512484e-01 -1.11224753e-01 -2.37065100e-02]\n", + " [ 9.96327614e-01 -8.47636081e-02 -1.21002597e-02]\n", + " [ 9.98323400e-01 -5.78815695e-02 -3.36207846e-04]\n", + " [ 9.99462628e-01 -3.06801030e-02 1.15406560e-02]\n", + " [ 9.99718884e-01 -3.26420425e-03 2.34839908e-02]\n", + " [ 9.99077127e-01 2.42579963e-02 3.54463467e-02]\n", + " [ 9.64259184e-01 -2.24339787e-01 1.40981867e-01]\n", + " [ 9.68340744e-01 -1.94779811e-01 1.56131450e-01]\n", + " [ 9.71441780e-01 -1.64239291e-01 1.71249302e-01]\n", + " [ 9.73471117e-01 -1.32908210e-01 1.86250884e-01]\n", + " [ 9.74362700e-01 -1.00974970e-01 2.01050702e-01]\n", + " [ 9.74075340e-01 -6.86284450e-02 2.15562912e-01]\n", + " [ 9.64972393e-01 -2.30668316e-01 1.24981634e-01]\n", + " [ 9.71107224e-01 -2.19274884e-01 9.41768796e-02]\n", + " [ 9.76298556e-01 -2.07167861e-01 6.26307213e-02]\n", + " [ 9.80440981e-01 -1.94431386e-01 3.05273471e-02]\n", + " [ 9.83454124e-01 -1.81146883e-01 -1.94769837e-03]\n", + " [ 9.85282339e-01 -1.67395069e-01 -3.46063933e-02]\n", + " [ 9.76318607e-01 -5.24062430e-02 2.09894170e-01]\n", + " [ 9.83114465e-01 -3.86870156e-02 1.78855429e-01]\n", + " [ 9.88843796e-01 -2.46113816e-02 1.46908904e-01]\n", + " [ 9.93401447e-01 -1.02596102e-02 1.14229179e-01]\n", + " [ 9.96705066e-01 4.28613618e-03 8.09977796e-02]\n", + " [ 9.98696136e-01 1.89407534e-02 4.74054450e-02]\n", + " [ 9.87581237e-01 -1.51571009e-01 -4.13464488e-02]\n", + " [ 9.92380134e-01 -1.20106294e-01 -2.74981459e-02]\n", + " [ 9.96047973e-01 -8.78116090e-02 -1.33250503e-02]\n", + " [ 9.98493024e-01 -5.48679170e-02 1.09233493e-03]\n", + " [ 9.99646834e-01 -2.14620880e-02 1.56711548e-02]\n", + " [ 9.99465479e-01 1.22112293e-02 3.03256050e-02]\n", + " [ 9.62605517e-01 -2.34502954e-01 1.35642853e-01]\n", + " [ 9.62605517e-01 -2.34502954e-01 1.35642853e-01]\n", + " [ 9.99078507e-01 2.41228582e-02 3.54996357e-02]\n", + " [ 9.99078507e-01 2.41228582e-02 3.54996357e-02]\n", + " [ 9.66658775e-01 -2.20439400e-01 1.30296909e-01]\n", + " [ 9.72875541e-01 -2.08876018e-01 9.94182663e-02]\n", + " [ 9.78133086e-01 -1.96622650e-01 6.77879080e-02]\n", + " [ 9.82326178e-01 -1.83762539e-01 3.55894546e-02]\n", + " [ 9.85374474e-01 -1.70376337e-01 3.00826742e-03]\n", + " [ 9.87222252e-01 -1.56544342e-01 -2.97673352e-02]\n", + " [ 9.70821122e-01 -1.90700846e-01 1.45394419e-01]\n", + " [ 9.77240341e-01 -1.78677165e-01 1.14349403e-01]\n", + " [ 9.82661843e-01 -1.66029066e-01 8.25230336e-02]\n", + " [ 9.86980768e-01 -1.52837307e-01 5.00971257e-02]\n", + " [ 9.90116621e-01 -1.39180782e-01 1.72565178e-02]\n", + " [ 9.92013237e-01 -1.25139114e-01 -1.58095007e-02]\n", + " [ 9.73985499e-01 -1.59992397e-01 1.60482648e-01]\n", + " [ 9.80563771e-01 -1.47537150e-01 1.29334762e-01]\n", + " [ 9.86114657e-01 -1.34520993e-01 9.73754850e-02]\n", + " [ 9.90533397e-01 -1.21022862e-01 6.47846867e-02]\n", + " [ 9.93739038e-01 -1.07120848e-01 3.17466353e-02]\n", + " [ 9.95674728e-01 -9.28947749e-02 -1.54841080e-03]\n", + " [ 9.76060885e-01 -1.28503027e-01 1.75476841e-01]\n", + " [ 9.82755095e-01 -1.15641994e-01 1.44289129e-01]\n", + " [ 9.88400770e-01 -1.02281888e-01 1.12260118e-01]\n", + " [ 9.92893028e-01 -8.85008810e-02 7.95677637e-02]\n", + " [ 9.96150317e-01 -7.43773391e-02 4.63956559e-02]\n", + " [ 9.98115042e-01 -5.99921147e-02 1.29347707e-02]\n", + " [ 9.76981264e-01 -9.64204972e-02 1.90291085e-01]\n", + " [ 9.83748165e-01 -8.31779681e-02 1.59125651e-01]\n", + " [ 9.89453552e-01 -6.94971971e-02 1.27089766e-01]\n", + " [ 9.93992358e-01 -5.54566874e-02 9.43596785e-02]\n", + " [ 9.97282507e-01 -4.11360208e-02 6.11181618e-02]\n", + " [ 9.99265801e-01 -2.66176856e-02 2.75564614e-02]\n", + " [ 9.76705416e-01 -6.39336240e-02 2.04839016e-01]\n", + " [ 9.83501441e-01 -5.03341957e-02 1.73756680e-01]\n", + " [ 9.89230876e-01 -3.63570024e-02 1.41776030e-01]\n", + " [ 9.93788558e-01 -2.20817483e-02 1.09071988e-01]\n", + " [ 9.97092147e-01 -7.58986504e-03 7.58264108e-02]\n", + " [ 9.99083142e-01 7.03422943e-03 4.22302653e-02]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:fp_optics: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:cartToSphere: vec: [[-0.79212461 -0.51045231 -0.33462969]\n", + " [-0.78804065 -0.4999752 -0.359189 ]\n", + " [-0.78336786 -0.48879368 -0.3839473 ]\n", + " [-0.77808669 -0.47693946 -0.40879072]\n", + " [-0.77218555 -0.46445097 -0.4336067 ]\n", + " [-0.76566176 -0.45137134 -0.45828592]\n", + " [-0.75852201 -0.43774749 -0.48272301]\n", + " [-0.75078248 -0.42362989 -0.50681692]\n", + " [-0.79212461 -0.51045231 -0.33462969]\n", + " [-0.80813657 -0.49063407 -0.32587343]\n", + " [-0.82387182 -0.4699604 -0.3168161 ]\n", + " [-0.83923163 -0.44849867 -0.30747231]\n", + " [-0.85412374 -0.42632383 -0.29786008]\n", + " [-0.86846409 -0.40351592 -0.28800179]\n", + " [-0.88217746 -0.38015894 -0.27792465]\n", + " [-0.89519778 -0.35634066 -0.26766074]\n", + " [-0.75078248 -0.42362989 -0.50681692]\n", + " [-0.7672411 -0.40232003 -0.49947942]\n", + " [-0.78342195 -0.38024648 -0.49159197]\n", + " [-0.79922411 -0.35748181 -0.48316413]\n", + " [-0.81455616 -0.33410057 -0.47420995]\n", + " [-0.82933482 -0.3101812 -0.46474873]\n", + " [-0.84348409 -0.28580805 -0.45480584]\n", + " [-0.85693532 -0.26107225 -0.44441324]\n", + " [-0.89519778 -0.35634066 -0.26766074]\n", + " [-0.89214264 -0.34410775 -0.29269671]\n", + " [-0.88830771 -0.33134869 -0.31798971]\n", + " [-0.8836693 -0.31810077 -0.34342462]\n", + " [-0.87821277 -0.30440361 -0.36889128]\n", + " [-0.87193302 -0.29030035 -0.39428229]\n", + " [-0.8648352 -0.27583886 -0.41949135]\n", + " [-0.85693532 -0.26107225 -0.44441324]\n", + " [-0.79047024 -0.50590585 -0.3452768 ]\n", + " [-0.78507244 -0.49258674 -0.37552571]\n", + " [-0.7787698 -0.47824027 -0.4059604 ]\n", + " [-0.77153757 -0.46293457 -0.43637295]\n", + " [-0.76337088 -0.44674896 -0.46656218]\n", + " [-0.75428599 -0.42977128 -0.49633587]\n", + " [-0.79912069 -0.50188552 -0.33093358]\n", + " [-0.81857234 -0.47701188 -0.31999843]\n", + " [-0.83750962 -0.45091929 -0.30862507]\n", + " [-0.85575989 -0.42374279 -0.29684518]\n", + " [-0.87316845 -0.39562959 -0.28470001]\n", + " [-0.8896006 -0.36673592 -0.2722417 ]\n", + " [-0.75801334 -0.41448647 -0.50360376]\n", + " [-0.77801177 -0.38784692 -0.49423927]\n", + " [-0.79749158 -0.36013212 -0.48405789]\n", + " [-0.81628053 -0.33147845 -0.47308364]\n", + " [-0.83422524 -0.30203056 -0.46135214]\n", + " [-0.85118878 -0.27194656 -0.44891284]\n", + " [-0.89391626 -0.35115654 -0.27857279]\n", + " [-0.88965051 -0.33580625 -0.30944489]\n", + " [-0.88418903 -0.31970234 -0.34058799]\n", + " [-0.87750112 -0.30291675 -0.3717973 ]\n", + " [-0.86957748 -0.28552904 -0.40287488]\n", + " [-0.8604321 -0.26762953 -0.43362545]\n", + " [-0.79216674 -0.51035146 -0.3346838 ]\n", + " [-0.79216674 -0.51035146 -0.3346838 ]\n", + " [-0.85691894 -0.2612083 -0.44436489]\n", + " [-0.85691894 -0.2612083 -0.44436489]\n", + " [-0.79745868 -0.49738726 -0.34156343]\n", + " [-0.81700531 -0.47236539 -0.33071629]\n", + " [-0.8360319 -0.4461289 -0.31940519]\n", + " [-0.85436477 -0.41881469 -0.30766069]\n", + " [-0.87184886 -0.39057051 -0.29552368]\n", + " [-0.88834924 -0.3615527 -0.28304643]\n", + " [-0.79214355 -0.48392555 -0.37192023]\n", + " [-0.81191748 -0.45850811 -0.36133131]\n", + " [-0.8311581 -0.43189407 -0.35020525]\n", + " [-0.84969034 -0.40422303 -0.33857061]\n", + " [-0.8673588 -0.37564262 -0.32646798]\n", + " [-0.88402788 -0.34630892 -0.31395039]\n", + " [-0.78589991 -0.46944897 -0.40246614]\n", + " [-0.80583662 -0.44367723 -0.39214521]\n", + " [-0.82523236 -0.41673259 -0.38121583]\n", + " [-0.84391216 -0.38875449 -0.36970558]\n", + " [-0.86172078 -0.35988922 -0.35765492]\n", + " [-0.87852196 -0.33029246 -0.34511746]\n", + " [-0.77870204 -0.45402746 -0.43299216]\n", + " [-0.79873531 -0.42794541 -0.42294755]\n", + " [-0.81822649 -0.40071726 -0.41222698]\n", + " [-0.83700142 -0.37248109 -0.40085716]\n", + " [-0.85490524 -0.34338174 -0.38887788]\n", + " [-0.87180105 -0.31357495 -0.3763425 ]\n", + " [-0.7705447 -0.43774087 -0.46329666]\n", + " [-0.79060796 -0.41139249 -0.45353641]\n", + " [-0.81013467 -0.38392682 -0.44303726]\n", + " [-0.82895166 -0.35548062 -0.43182483]\n", + " [-0.84690462 -0.32619797 -0.41993743]\n", + " [-0.86385628 -0.29623534 -0.40742722]\n", + " [-0.7614442 -0.4206771 -0.4931871 ]\n", + " [-0.78147115 -0.39410584 -0.48371833]\n", + " [-0.80097366 -0.36644798 -0.47345229]\n", + " [-0.81977932 -0.33783981 -0.46241337]\n", + " [-0.8377345 -0.30842567 -0.45063791]\n", + " [-0.85470207 -0.27836319 -0.43817611]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:fp_optics: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:cartToSphere: vec: [[0.74789536 0.60683788 0.26907307]\n", + " [0.72899703 0.62571073 0.27757777]\n", + " [0.70913378 0.64445147 0.28602724]\n", + " [0.68835432 0.66295677 0.294375 ]\n", + " [0.66671331 0.68113128 0.30257816]\n", + " [0.64427324 0.69888603 0.3105967 ]\n", + " [0.62110632 0.71613745 0.318393 ]\n", + " [0.59729518 0.73280753 0.32593187]\n", + " [0.74789536 0.60683788 0.26907307]\n", + " [0.74745208 0.61848302 0.24247501]\n", + " [0.74631748 0.62963923 0.21578846]\n", + " [0.74450279 0.64027227 0.18912168]\n", + " [0.74202614 0.65035615 0.16258562]\n", + " [0.73891245 0.65987304 0.13629367]\n", + " [0.73519352 0.66881312 0.11036072]\n", + " [0.73090861 0.67717387 0.08490086]\n", + " [0.59729518 0.73280753 0.32593187]\n", + " [0.59693308 0.74474456 0.29837299]\n", + " [0.59603445 0.75597542 0.27063647]\n", + " [0.59461057 0.76646528 0.24283585]\n", + " [0.59267939 0.77618942 0.21508398]\n", + " [0.5902651 0.78513275 0.18749312]\n", + " [0.58739795 0.79328878 0.16017664]\n", + " [0.58411437 0.80065876 0.13325147]\n", + " [0.73090861 0.67717387 0.08490086]\n", + " [0.71236745 0.69582879 0.09140517]\n", + " [0.69292154 0.71430678 0.09810995]\n", + " [0.67261958 0.73250479 0.10497441]\n", + " [0.65151905 0.75032551 0.11195784]\n", + " [0.6296851 0.76767865 0.11902172]\n", + " [0.60719027 0.78448141 0.12613045]\n", + " [0.58411437 0.80065876 0.13325147]\n", + " [0.73977683 0.61511654 0.27269376]\n", + " [0.71596023 0.63817218 0.28308516]\n", + " [0.69074209 0.66092572 0.29334718]\n", + " [0.66422049 0.68319833 0.30339938]\n", + " [0.63651074 0.70482612 0.31316804]\n", + " [0.6077501 0.7256575 0.32258489]\n", + " [0.7477246 0.61203759 0.25752265]\n", + " [0.7467154 0.62598609 0.22485001]\n", + " [0.74467826 0.6391651 0.19215165]\n", + " [0.74164372 0.65152331 0.15963072]\n", + " [0.73765764 0.66302791 0.12749587]\n", + " [0.73278166 0.67366387 0.0959585 ]\n", + " [0.59728612 0.73804037 0.3139199 ]\n", + " [0.59648031 0.7522005 0.28001007]\n", + " [0.59487891 0.76526434 0.24594629]\n", + " [0.59251221 0.77718216 0.21193669]\n", + " [0.58942474 0.78792605 0.17818812]\n", + " [0.58567474 0.7974873 0.1449107 ]\n", + " [0.72295397 0.6852951 0.08779623]\n", + " [0.6996154 0.70805348 0.09590908]\n", + " [0.67496512 0.73044319 0.10428247]\n", + " [0.64910537 0.75228257 0.11284127]\n", + " [0.62215607 0.77340547 0.12151463]\n", + " [0.59425379 0.79366266 0.13023828]\n", + " [0.7478321 0.60694313 0.2690115 ]\n", + " [0.7478321 0.60694313 0.2690115 ]\n", + " [0.58420607 0.80058071 0.1333184 ]\n", + " [0.58420607 0.80058071 0.1333184 ]\n", + " [0.73966987 0.62022931 0.26115912]\n", + " [0.73866823 0.63421272 0.22834943]\n", + " [0.73664773 0.64740135 0.19550351]\n", + " [0.73363909 0.65974372 0.16282479]\n", + " [0.72968814 0.67120722 0.13052235]\n", + " [0.72485595 0.68177753 0.09880922]\n", + " [0.71585509 0.64333067 0.27143532]\n", + " [0.71487785 0.65739818 0.23827986]\n", + " [0.71291079 0.67060293 0.20506075]\n", + " [0.70998561 0.68289287 0.17198183]\n", + " [0.7061486 0.69423555 0.13925215]\n", + " [0.70146001 0.70461785 0.1070866 ]\n", + " [0.69063922 0.66612075 0.28160365]\n", + " [0.68969123 0.68024992 0.24816537]\n", + " [0.68778771 0.69345368 0.21463935]\n", + " [0.68496132 0.70567958 0.18123003]\n", + " [0.68125907 0.71689539 0.14814546]\n", + " [0.67674114 0.7270888 0.1155998 ]\n", + " [0.66412043 0.68842047 0.29158413]\n", + " [0.66320743 0.70258784 0.25792679]\n", + " [0.66137908 0.71577223 0.22416028]\n", + " [0.6586684 0.72792133 0.19049006]\n", + " [0.6551227 0.73900376 0.15712318]\n", + " [0.65080209 0.74900807 0.12427205]\n", + " [0.63641407 0.7100656 0.30130381]\n", + " [0.63554241 0.72424672 0.26749306]\n", + " [0.63380202 0.73739257 0.23355343]\n", + " [0.63122535 0.74945167 0.19969164]\n", + " [0.62785909 0.76039399 0.16611425]\n", + " [0.62376292 0.77020925 0.13303209]\n", + " [0.6076574 0.73090419 0.31069526]\n", + " [0.6068334 0.74507418 0.27679902]\n", + " [0.60519367 0.75816259 0.24275523]\n", + " [0.6027692 0.77011924 0.20877174]\n", + " [0.59960519 0.78091567 0.17505521]\n", + " [0.59576031 0.79054282 0.14181575]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:fp_optics: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:cartToSphere: vec: [[-0.45340706 -0.87844942 0.15082657]\n", + " [-0.46107959 -0.87851908 0.12493932]\n", + " [-0.4686877 -0.87785938 0.09846189]\n", + " [-0.47617312 -0.87644034 0.07149466]\n", + " [-0.48348081 -0.87424128 0.04414173]\n", + " [-0.49056121 -0.87125033 0.01650915]\n", + " [-0.49737137 -0.86746419 -0.01129583]\n", + " [-0.50387515 -0.86288813 -0.03916507]\n", + " [-0.45340706 -0.87844942 0.15082657]\n", + " [-0.47504767 -0.86528792 0.16002037]\n", + " [-0.49684541 -0.85119428 0.16915359]\n", + " [-0.51868716 -0.83618882 0.17819058]\n", + " [-0.54046189 -0.82030213 0.18709718]\n", + " [-0.56206354 -0.80357408 0.19583992]\n", + " [-0.58339226 -0.78605342 0.20438565]\n", + " [-0.6043548 -0.76779772 0.2127015 ]\n", + " [-0.50387515 -0.86288813 -0.03916507]\n", + " [-0.52699206 -0.84928964 -0.03140824]\n", + " [-0.5501609 -0.83472878 -0.02347011]\n", + " [-0.57326293 -0.81922709 -0.01538143]\n", + " [-0.59618708 -0.8028135 -0.00717266]\n", + " [-0.61882808 -0.78552564 0.00112536]\n", + " [-0.6410848 -0.76741149 0.00948079]\n", + " [-0.66286001 -0.74853029 0.01786066]\n", + " [-0.6043548 -0.76779772 0.2127015 ]\n", + " [-0.61390806 -0.76706013 0.18637503]\n", + " [-0.62315958 -0.76568381 0.15937518]\n", + " [-0.63204439 -0.76364114 0.13180326]\n", + " [-0.64050484 -0.76091217 0.10376036]\n", + " [-0.64848983 -0.75748488 0.0753498 ]\n", + " [-0.65595442 -0.75335573 0.04667912]\n", + " [-0.66286001 -0.74853029 0.01786066]\n", + " [-0.4568306 -0.87852364 0.13964963]\n", + " [-0.46619945 -0.87812254 0.10751218]\n", + " [-0.47541329 -0.87659508 0.07458736]\n", + " [-0.48436923 -0.87389936 0.04106544]\n", + " [-0.49297618 -0.8700135 0.00714156]\n", + " [-0.50115788 -0.86493497 -0.02698646]\n", + " [-0.46284274 -0.87282774 0.15475252]\n", + " [-0.48948676 -0.85606782 0.16598372]\n", + " [-0.51625431 -0.83792671 0.17708846]\n", + " [-0.54293987 -0.81845652 0.18800327]\n", + " [-0.56934832 -0.7977306 0.19866651]\n", + " [-0.59529856 -0.77584238 0.20901726]\n", + " [-0.51391809 -0.85709561 -0.03571167]\n", + " [-0.54230031 -0.83977992 -0.0260781 ]\n", + " [-0.57064169 -0.82103929 -0.01620299]\n", + " [-0.59873464 -0.8009239 -0.00614253]\n", + " [-0.62638513 -0.77950324 0.00404643]\n", + " [-0.65340857 -0.75687028 0.01430479]\n", + " [-0.60848142 -0.76761643 0.2012843 ]\n", + " [-0.61999487 -0.7662874 0.16855262]\n", + " [-0.63098984 -0.76397057 0.13491031]\n", + " [-0.64135719 -0.76062603 0.10054351]\n", + " [-0.6510028 -0.75623171 0.06564263]\n", + " [-0.65984656 -0.75078485 0.03040775]\n", + " [-0.45350696 -0.87840745 0.15077066]\n", + " [-0.45350696 -0.87840745 0.15077066]\n", + " [-0.66276385 -0.74861376 0.01793067]\n", + " [-0.66276385 -0.74861376 0.01793067]\n", + " [-0.46623079 -0.87293065 0.14359989]\n", + " [-0.49305091 -0.85612595 0.15475514]\n", + " [-0.51998186 -0.83793045 0.16580539]\n", + " [-0.54681603 -0.8183969 0.17668826]\n", + " [-0.57335765 -0.79759879 0.18734241]\n", + " [-0.59942538 -0.7756296 0.1977067 ]\n", + " [-0.47576716 -0.87249261 0.11136542]\n", + " [-0.50304114 -0.85556736 0.12228694]\n", + " [-0.53038916 -0.83722987 0.13316714]\n", + " [-0.5576006 -0.81753365 0.14394548]\n", + " [-0.58447937 -0.79655185 0.15456072]\n", + " [-0.61084389 -0.77437781 0.16495075]\n", + " [-0.48512332 -0.87093003 0.07833427]\n", + " [-0.51277877 -0.85389538 0.08899788]\n", + " [-0.54047348 -0.83543471 0.09968587]\n", + " [-0.56799676 -0.81560105 0.11033857]\n", + " [-0.59515333 -0.7944665 0.12089457]\n", + " [-0.62176137 -0.77212403 0.13129083]\n", + " [-0.49419435 -0.86820162 0.04469772]\n", + " [-0.52215572 -0.85106964 0.05508051]\n", + " [-0.55012612 -0.83250465 0.06555346]\n", + " [-0.57789605 -0.81255855 0.07605763]\n", + " [-0.60527115 -0.79130213 0.08653197]\n", + " [-0.63206897 -0.76882808 0.09691341]\n", + " [-0.50288851 -0.86428565 0.01065129]\n", + " [-0.53107988 -0.84706813 0.02073044]\n", + " [-0.55925546 -0.82841687 0.03096468]\n", + " [-0.58720703 -0.80838267 0.0412961 ]\n", + " [-0.61474073 -0.7870353 0.05166496]\n", + " [-0.64167317 -0.7644674 0.06200925]\n", + " [-0.51112945 -0.85917949 -0.02360687]\n", + " [-0.53947521 -0.84188751 -0.01385341]\n", + " [-0.56778576 -0.82316722 -0.00388085]\n", + " [-0.5958535 -0.8030688 0.00625416]\n", + " [-0.62348454 -0.78166168 0.01649396]\n", + " [-0.65049453 -0.75903871 0.02677859]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:fp_optics: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:cartToSphere: vec: [[-3.84274028e-02 2.42468539e-01 9.69397928e-01]\n", + " [-2.78397306e-02 2.18387680e-01 9.75464900e-01]\n", + " [-1.71560750e-02 1.93578625e-01 9.80934751e-01]\n", + " [-6.40622150e-03 1.68147192e-01 9.85741083e-01]\n", + " [ 4.37721123e-03 1.42197226e-01 9.89828667e-01]\n", + " [ 1.51589370e-02 1.15831983e-01 9.93153139e-01]\n", + " [ 2.59013912e-02 8.91550991e-02 9.95680916e-01]\n", + " [ 3.65652192e-02 6.22709782e-02 9.97389247e-01]\n", + " [-3.84274028e-02 2.42468539e-01 9.69397928e-01]\n", + " [-6.41045671e-02 2.34380920e-01 9.70028963e-01]\n", + " [-9.02424648e-02 2.25797745e-01 9.69985400e-01]\n", + " [-1.16728349e-01 2.16762558e-01 9.69220556e-01]\n", + " [-1.43452048e-01 2.07316600e-01 9.67698991e-01]\n", + " [-1.70304883e-01 1.97499872e-01 9.65396316e-01]\n", + " [-1.97179101e-01 1.87352120e-01 9.62299114e-01]\n", + " [-2.23967857e-01 1.76913521e-01 9.58404928e-01]\n", + " [ 3.65652192e-02 6.22709782e-02 9.97389247e-01]\n", + " [ 1.05834770e-02 5.21631965e-02 9.98582491e-01]\n", + " [-1.59398848e-02 4.18031082e-02 9.98998709e-01]\n", + " [-4.28990269e-02 3.12301550e-02 9.98591183e-01]\n", + " [-7.01878934e-02 2.04842685e-02 9.97323445e-01]\n", + " [-9.76989026e-02 9.60643190e-03 9.95169654e-01]\n", + " [-1.25322718e-01 -1.36118323e-03 9.92115096e-01]\n", + " [-1.52948852e-01 -1.23754175e-02 9.88156616e-01]\n", + " [-2.23967857e-01 1.76913521e-01 9.58404928e-01]\n", + " [-2.14720615e-01 1.51267271e-01 9.64890289e-01]\n", + " [-2.05122061e-01 1.24988092e-01 9.70722884e-01]\n", + " [-1.95200584e-01 9.81742652e-02 9.75837356e-01]\n", + " [-1.84987115e-01 7.09260424e-02 9.80178180e-01]\n", + " [-1.74515556e-01 4.33468097e-02 9.83699840e-01]\n", + " [-1.63822865e-01 1.55432280e-02 9.86367313e-01]\n", + " [-1.52948852e-01 -1.23754175e-02 9.88156616e-01]\n", + " [-3.39118741e-02 2.32038341e-01 9.72115319e-01]\n", + " [-2.08680595e-02 2.02020135e-01 9.79159021e-01]\n", + " [-7.70916723e-03 1.71013641e-01 9.85238501e-01]\n", + " [ 5.50593090e-03 1.39210772e-01 9.90247467e-01]\n", + " [ 1.87123161e-02 1.06801728e-01 9.94104240e-01]\n", + " [ 3.18400633e-02 7.39776194e-02 9.96751485e-01]\n", + " [-4.95229818e-02 2.38924641e-01 9.69774453e-01]\n", + " [-8.13179722e-02 2.28672149e-01 9.70101250e-01]\n", + " [-1.13692686e-01 2.17719045e-01 9.69367005e-01]\n", + " [-1.46443300e-01 2.06142158e-01 9.67501819e-01]\n", + " [-1.79369678e-01 1.94015237e-01 9.64460785e-01]\n", + " [-2.12273809e-01 1.81411611e-01 9.60223754e-01]\n", + " [ 2.52740865e-02 5.79900480e-02 9.97997182e-01]\n", + " [-6.94715618e-03 4.54282311e-02 9.98943448e-01]\n", + " [-3.98766227e-02 3.25264454e-02 9.98675065e-01]\n", + " [-7.33192625e-02 1.93579514e-02 9.97120632e-01]\n", + " [-1.07076995e-01 5.99820750e-03 9.94232638e-01]\n", + " [-1.40948006e-01 -7.47472508e-03 9.89988782e-01]\n", + " [-2.19889257e-01 1.65852061e-01 9.61322947e-01]\n", + " [-2.08315223e-01 1.33982403e-01 9.68841310e-01]\n", + " [-1.96241639e-01 1.01259526e-01 9.75313143e-01]\n", + " [-1.83724363e-01 6.78670713e-02 9.80632153e-01]\n", + " [-1.70825823e-01 3.39953809e-02 9.84714604e-01]\n", + " [-1.57615264e-01 -1.58046285e-04 9.87500584e-01]\n", + " [-3.84782844e-02 2.42360790e-01 9.69422854e-01]\n", + " [-3.84782844e-02 2.42360790e-01 9.69422854e-01]\n", + " [-1.52891950e-01 -1.22421807e-02 9.88167081e-01]\n", + " [-1.52891950e-01 -1.22421807e-02 9.88167081e-01]\n", + " [-4.49882968e-02 2.28537390e-01 9.72495097e-01]\n", + " [-7.68767383e-02 2.18118363e-01 9.72889689e-01]\n", + " [-1.09351088e-01 2.07022828e-01 9.72205682e-01]\n", + " [-1.42208329e-01 1.95326343e-01 9.70373336e-01]\n", + " [-1.75248545e-01 1.83101811e-01 9.67347752e-01]\n", + " [-2.08273406e-01 1.70422187e-01 9.63108751e-01]\n", + " [-3.20166288e-02 1.98343255e-01 9.79609559e-01]\n", + " [-6.41209018e-02 1.87472558e-01 9.80174755e-01]\n", + " [-9.68305941e-02 1.75991500e-01 9.79617695e-01]\n", + " [-1.29944817e-01 1.63972682e-01 9.77868756e-01]\n", + " [-1.63264051e-01 1.51487411e-01 9.74882769e-01]\n", + " [-1.96588870e-01 1.38608266e-01 9.70639256e-01]\n", + " [-1.89039677e-02 1.67170804e-01 9.85746703e-01]\n", + " [-5.11524144e-02 1.55874447e-01 9.86451513e-01]\n", + " [-8.40282092e-02 1.44031316e-01 9.85999108e-01]\n", + " [-1.17332281e-01 1.31712334e-01 9.84319560e-01]\n", + " [-1.50865305e-01 1.18988434e-01 9.81367114e-01]\n", + " [-1.84426705e-01 1.05932719e-01 9.77120796e-01]\n", + " [-5.70966194e-03 1.35210584e-01 9.90800433e-01]\n", + " [-3.80315442e-02 1.23511213e-01 9.91614130e-01]\n", + " [-7.10042937e-02 1.11327129e-01 9.91243997e-01]\n", + " [-1.04430349e-01 9.87288836e-02 9.89619578e-01]\n", + " [-1.38110558e-01 8.57880768e-02 9.86694421e-01]\n", + " [-1.71843415e-01 7.25789928e-02 9.82447012e-01]\n", + " [ 7.50086019e-03 1.02652124e-01 9.94689036e-01]\n", + " [-2.48246817e-02 9.05711601e-02 9.95580534e-01]\n", + " [-5.78253916e-02 7.80669461e-02 9.95269700e-01]\n", + " [-9.13049494e-02 6.52107329e-02 9.93685547e-01]\n", + " [-1.25064510e-01 5.20755185e-02 9.90781009e-01]\n", + " [-1.58902064e-01 3.87371389e-02 9.86534119e-01]\n", + " [ 2.06571833e-02 6.96865540e-02 9.97355035e-01]\n", + " [-1.16032589e-02 5.72460490e-02 9.98292670e-01]\n", + " [-4.45633269e-02 4.44437929e-02 9.98017464e-01]\n", + " [-7.80276894e-02 3.13524486e-02 9.96458079e-01]\n", + " [-1.11798026e-01 1.80468069e-02 9.93567066e-01]\n", + " [-1.45672370e-01 4.60436143e-03 9.89322172e-01]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:fp_optics: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:cartToSphere: vec: [[-0.58094148 -0.24147668 0.77730046]\n", + " [-0.60312515 -0.2317098 0.76325003]\n", + " [-0.6252616 -0.22156235 0.74830345]\n", + " [-0.64723634 -0.21106449 0.7324868 ]\n", + " [-0.66894119 -0.20024875 0.71583386]\n", + " [-0.69027316 -0.18915069 0.69838742]\n", + " [-0.71113424 -0.17780928 0.68019994]\n", + " [-0.73143219 -0.1662668 0.66133373]\n", + " [-0.58094148 -0.24147668 0.77730046]\n", + " [-0.5763964 -0.21502906 0.78837154]\n", + " [-0.57146121 -0.18845114 0.79869785]\n", + " [-0.56616424 -0.1618483 0.80824698]\n", + " [-0.56054149 -0.13532703 0.81699439]\n", + " [-0.55463698 -0.10899475 0.824923 ]\n", + " [-0.54850332 -0.0829602 0.83202266]\n", + " [-0.54220216 -0.05733407 0.8382897 ]\n", + " [-0.73143219 -0.1662668 0.66133373]\n", + " [-0.72660592 -0.13896138 0.67285479]\n", + " [-0.72114478 -0.11161821 0.68373356]\n", + " [-0.71507964 -0.08434719 0.69393563]\n", + " [-0.70844914 -0.05725683 0.70343547]\n", + " [-0.70129914 -0.03045354 0.71221633]\n", + " [-0.69368248 -0.0040421 0.72026958]\n", + " [-0.68565916 0.0218729 0.72759404]\n", + " [-0.54220216 -0.05733407 0.8382897 ]\n", + " [-0.56308488 -0.04623487 0.82510469]\n", + " [-0.58402319 -0.03500528 0.81098184]\n", + " [-0.6048975 -0.02367776 0.79595124]\n", + " [-0.62559711 -0.01228736 0.78004953]\n", + " [-0.64601945 -0.00087177 0.76332045]\n", + " [-0.6660694 0.01052896 0.74581546]\n", + " [-0.68565916 0.0218729 0.72759404]\n", + " [-0.59059689 -0.23717649 0.77132524]\n", + " [-0.61776814 -0.22494565 0.75349982]\n", + " [-0.64475396 -0.21217311 0.73435339]\n", + " [-0.67135266 -0.19891772 0.71394492]\n", + " [-0.69737459 -0.185245 0.69235321]\n", + " [-0.72264169 -0.17122809 0.66967897]\n", + " [-0.57908501 -0.22993505 0.78217033]\n", + " [-0.5732487 -0.19741905 0.79524314]\n", + " [-0.56685355 -0.16481199 0.80716421]\n", + " [-0.55996264 -0.13230944 0.81788511]\n", + " [-0.55265707 -0.10010923 0.82737434]\n", + " [-0.54503743 -0.06841231 0.83561592]\n", + " [-0.72933928 -0.154413 0.66649894]\n", + " [-0.72299393 -0.12090819 0.68019188]\n", + " [-0.71572491 -0.0874559 0.69288478]\n", + " [-0.70760015 -0.05425652 0.70452697]\n", + " [-0.69870405 -0.02150603 0.7150875 ]\n", + " [-0.68913683 0.01060287 0.72455366]\n", + " [-0.55131449 -0.05259983 0.83263773]\n", + " [-0.57696272 -0.03890558 0.81584336]\n", + " [-0.60257449 -0.02504726 0.79766949]\n", + " [-0.62794238 -0.01108831 0.77818084]\n", + " [-0.65287744 0.00290191 0.757458 ]\n", + " [-0.67720763 0.01684884 0.73559904]\n", + " [-0.58100243 -0.24135386 0.77729305]\n", + " [-0.58100243 -0.24135386 0.77729305]\n", + " [-0.6856211 0.0217466 0.72763369]\n", + " [-0.6856211 0.0217466 0.72763369]\n", + " [-0.58867009 -0.22571342 0.77622225]\n", + " [-0.58278865 -0.19307653 0.78935343]\n", + " [-0.57632095 -0.16035575 0.80133651]\n", + " [-0.56932984 -0.12774708 0.81212328]\n", + " [-0.56189596 -0.09544828 0.82168276]\n", + " [-0.55411925 -0.06365976 0.82999957]\n", + " [-0.61581734 -0.21337143 0.75844685]\n", + " [-0.60981785 -0.1804332 0.77172926]\n", + " [-0.60315828 -0.1474329 0.7838773 ]\n", + " [-0.59590135 -0.1145679 0.79484324]\n", + " [-0.58812688 -0.08203584 0.80459735]\n", + " [-0.57993323 -0.05003556 0.813126 ]\n", + " [-0.64278299 -0.20050912 0.73934168]\n", + " [-0.63667954 -0.16733144 0.75275451]\n", + " [-0.62984732 -0.13411563 0.76505251]\n", + " [-0.62234963 -0.10106045 0.77618794]\n", + " [-0.61426635 -0.06836348 0.78613185]\n", + " [-0.60569503 -0.03622193 0.79487201]\n", + " [-0.66936544 -0.18718596 0.71896545]\n", + " [-0.66317215 -0.15383262 0.7324877 ]\n", + " [-0.65618609 -0.12046686 0.74492117]\n", + " [-0.64847173 -0.08728863 0.75621763]\n", + " [-0.64010983 -0.05449532 0.76634827]\n", + " [-0.63119801 -0.02228257 0.77530159]\n", + " [-0.69537519 -0.17346824 0.69739667]\n", + " [-0.6891067 -0.14000496 0.71100673]\n", + " [-0.68198623 -0.10655635 0.723561 ]\n", + " [-0.67407972 -0.07332301 0.73501039]\n", + " [-0.66546935 -0.0405019 0.74532553]\n", + " [-0.65625359 -0.00828723 0.75449489]\n", + " [-0.72063432 -0.15942969 0.67473577]\n", + " [-0.71430615 -0.12592373 0.68841117]\n", + " [-0.70707201 -0.09246035 0.7010708 ]\n", + " [-0.69899933 -0.05924011 0.7126644 ]\n", + " [-0.69017194 -0.0264593 0.72316153]\n", + " [-0.6806896 0.00568906 0.73254986]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:fp_optics: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:cartToSphere: vec: [[-3.67478685e-02 6.43457600e-01 -7.64599184e-01]\n", + " [-5.45687672e-02 6.27348363e-01 -7.76824486e-01]\n", + " [-7.26055509e-02 6.10353766e-01 -7.88794469e-01]\n", + " [-9.07897327e-02 5.92527680e-01 -8.00417499e-01]\n", + " [-1.09052388e-01 5.73928192e-01 -8.11611981e-01]\n", + " [-1.27323974e-01 5.54617820e-01 -8.22306317e-01]\n", + " [-1.45534365e-01 5.34663939e-01 -8.32438719e-01]\n", + " [-1.63613133e-01 5.14139091e-01 -8.41957088e-01]\n", + " [-3.67478685e-02 6.43457600e-01 -7.64599184e-01]\n", + " [-1.48788449e-02 6.31752527e-01 -7.75027332e-01]\n", + " [ 7.38145878e-03 6.19224007e-01 -7.85179688e-01]\n", + " [ 2.99464589e-02 6.05908439e-01 -7.94970548e-01]\n", + " [ 5.27291934e-02 5.91846298e-01 -8.04324308e-01]\n", + " [ 7.56420679e-02 5.77082299e-01 -8.13175441e-01]\n", + " [ 9.85967401e-02 5.61665841e-01 -8.21468298e-01]\n", + " [ 1.21504284e-01 5.45651410e-01 -8.29156950e-01]\n", + " [-1.63613133e-01 5.14139091e-01 -8.41957088e-01]\n", + " [-1.42106386e-01 5.00870968e-01 -8.53776346e-01]\n", + " [-1.20046719e-01 4.86925806e-01 -8.65154347e-01]\n", + " [-9.75163135e-02 4.72337502e-01 -8.76006765e-01]\n", + " [-7.45982089e-02 4.57144546e-01 -8.86258411e-01]\n", + " [-5.13777768e-02 4.41391119e-01 -8.95842734e-01]\n", + " [-2.79435152e-02 4.25127859e-01 -9.04701864e-01]\n", + " [-4.38694210e-03 4.08412047e-01 -9.12787135e-01]\n", + " [ 1.21504284e-01 5.45651410e-01 -8.29156950e-01]\n", + " [ 1.04449875e-01 5.28106857e-01 -8.42729714e-01]\n", + " [ 8.69749311e-02 5.09781841e-01 -8.55895926e-01]\n", + " [ 6.91443349e-02 4.90726785e-01 -8.68565647e-01]\n", + " [ 5.10238683e-02 4.70997048e-01 -8.80657905e-01]\n", + " [ 3.26812942e-02 4.50654287e-01 -8.92100132e-01]\n", + " [ 1.41868545e-02 4.29767290e-01 -9.02828228e-01]\n", + " [-4.38694210e-03 4.08412047e-01 -9.12787135e-01]\n", + " [-4.44128561e-02 6.36507059e-01 -7.69991079e-01]\n", + " [-6.64079063e-02 6.16160494e-01 -7.84816052e-01]\n", + " [-8.86593600e-02 5.94537178e-01 -7.99165228e-01]\n", + " [-1.11040525e-01 5.71742299e-01 -8.12884214e-01]\n", + " [-1.33423378e-01 5.47891003e-01 -8.25841178e-01]\n", + " [-1.55678670e-01 5.23109462e-01 -8.37926395e-01]\n", + " [-2.73269646e-02 6.38403629e-01 -7.69216513e-01]\n", + " [-2.49966597e-04 6.23498669e-01 -7.81824371e-01]\n", + " [ 2.73288745e-02 6.07392634e-01 -7.93931559e-01]\n", + " [ 5.52496327e-02 5.90158353e-01 -8.05394684e-01]\n", + " [ 8.33510353e-02 5.71878198e-01 -8.16093090e-01]\n", + " [ 1.11470183e-01 5.52645210e-01 -8.25928369e-01]\n", + " [-1.54247615e-01 5.08510765e-01 -8.47127189e-01]\n", + " [-1.27506105e-01 4.91790691e-01 -8.61326947e-01]\n", + " [-1.00015847e-01 4.74086776e-01 -8.74779149e-01]\n", + " [-7.19292774e-02 4.55467913e-01 -8.87341625e-01]\n", + " [-4.34036602e-02 4.36015528e-01 -8.98891863e-01]\n", + " [-1.46032146e-02 4.15825613e-01 -9.09327117e-01]\n", + " [ 1.14045909e-01 5.38156898e-01 -8.35093219e-01]\n", + " [ 9.28522772e-02 5.16123846e-01 -8.51466165e-01]\n", + " [ 7.10915647e-02 4.92968036e-01 -8.67138112e-01]\n", + " [ 4.88844413e-02 4.68789260e-01 -8.81956315e-01]\n", + " [ 2.63557191e-02 4.43701121e-01 -8.95787191e-01]\n", + " [ 3.63569311e-03 4.17833269e-01 -9.08516450e-01]\n", + " [-3.67343442e-02 6.43365488e-01 -7.64677341e-01]\n", + " [-3.67343442e-02 6.43365488e-01 -7.64677341e-01]\n", + " [-4.40403247e-03 4.08543643e-01 -9.12728161e-01]\n", + " [-4.40403247e-03 4.08543643e-01 -9.12728161e-01]\n", + " [-3.49980739e-02 6.31496173e-01 -7.74588742e-01]\n", + " [-7.88977679e-03 6.16459628e-01 -7.87346987e-01]\n", + " [ 1.97358237e-02 6.00232785e-01 -7.99581829e-01]\n", + " [ 4.77190181e-02 5.82888056e-01 -8.11150054e-01]\n", + " [ 7.58984993e-02 5.64507326e-01 -8.21931199e-01]\n", + " [ 1.04111004e-01 5.45183387e-01 -8.31826889e-01]\n", + " [-5.69851955e-02 6.11015372e-01 -7.89565008e-01]\n", + " [-2.98252504e-02 5.95621087e-01 -8.02711638e-01]\n", + " [-2.10401566e-03 5.79069144e-01 -8.15275720e-01]\n", + " [ 2.60196751e-02 5.61430384e-01 -8.27114805e-01]\n", + " [ 5.43845515e-02 5.42785327e-01 -8.38108829e-01]\n", + " [ 8.28263141e-02 5.23226271e-01 -8.48159225e-01]\n", + " [-7.92481813e-02 5.89264629e-01 -8.04044105e-01]\n", + " [-5.20919156e-02 5.73533956e-01 -8.17523843e-01]\n", + " [-2.43303154e-02 5.56680881e-01 -8.30370058e-01]\n", + " [ 3.87903637e-03 5.38774672e-01 -8.42440981e-01]\n", + " [ 3.23752116e-02 5.19894872e-01 -8.53616523e-01]\n", + " [ 6.09930720e-02 5.00133794e-01 -8.63797449e-01]\n", + " [-1.01660413e-01 5.66348692e-01 -8.17871823e-01]\n", + " [-7.45634979e-02 5.50301302e-01 -8.31630183e-01]\n", + " [-4.68175089e-02 5.33169287e-01 -8.44712160e-01]\n", + " [-1.85784892e-02 5.15020864e-01 -8.56976283e-01]\n", + " [ 9.99336373e-03 4.95935293e-01 -8.68301974e-01]\n", + " [ 3.87325040e-02 4.76005494e-01 -8.78588961e-01]\n", + " [-1.24093679e-01 5.42382271e-01 -8.30916501e-01]\n", + " [-9.71113678e-02 5.26036579e-01 -8.44899343e-01]\n", + " [-6.94369401e-02 5.08646857e-01 -8.58170663e-01]\n", + " [-4.12247869e-02 4.90281067e-01 -8.70588876e-01]\n", + " [-1.26340040e-02 4.71018962e-01 -8.82032607e-01]\n", + " [ 1.61700316e-02 4.50954577e-01 -8.92400414e-01]\n", + " [-1.46418299e-01 5.17491408e-01 -8.43068398e-01]\n", + " [-1.19604654e-01 5.00865663e-01 -8.57221275e-01]\n", + " [-9.20568417e-02 4.83239743e-01 -8.70634762e-01]\n", + " [-6.39277441e-02 4.64682174e-01 -8.83166870e-01]\n", + " [-3.53751149e-02 4.45273860e-01 -8.94695362e-01]\n", + " [-6.56356697e-03 4.25110266e-01 -9.05117772e-01]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:fp_optics: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:cartToSphere: vec: [[ 1.10221129e-01 -9.36661147e-02 9.89483684e-01]\n", + " [ 1.01135711e-01 -1.20087808e-01 9.87598343e-01]\n", + " [ 9.17881615e-02 -1.46939984e-01 9.84877441e-01]\n", + " [ 8.22112425e-02 -1.74110239e-01 9.81288406e-01]\n", + " [ 7.24389283e-02 -2.01486997e-01 9.76808882e-01]\n", + " [ 6.25068375e-02 -2.28958411e-01 9.71427270e-01]\n", + " [ 5.24523051e-02 -2.56412348e-01 9.65143235e-01]\n", + " [ 4.23141700e-02 -2.83737150e-01 9.57968027e-01]\n", + " [ 1.10221129e-01 -9.36661147e-02 9.89483684e-01]\n", + " [ 8.28747454e-02 -8.45902390e-02 9.92963377e-01]\n", + " [ 5.55151733e-02 -7.55663640e-02 9.95594190e-01]\n", + " [ 2.82494120e-02 -6.66334556e-02 9.97377538e-01]\n", + " [ 1.18412506e-03 -5.78329380e-02 9.98325573e-01]\n", + " [-2.55744629e-02 -4.92092533e-02 9.98461014e-01]\n", + " [-5.19201528e-02 -4.08107504e-02 9.97817007e-01]\n", + " [-7.77458251e-02 -3.26907588e-02 9.96437103e-01]\n", + " [ 4.23141700e-02 -2.83737150e-01 9.57968027e-01]\n", + " [ 1.40750768e-02 -2.74200437e-01 9.61569557e-01]\n", + " [-1.40862272e-02 -2.64450868e-01 9.64296281e-01]\n", + " [-4.20585799e-02 -2.54530407e-01 9.66149754e-01]\n", + " [-6.97330824e-02 -2.44483342e-01 9.67142799e-01]\n", + " [-9.70038566e-02 -2.34355909e-01 9.67299106e-01]\n", + " [-1.23768043e-01 -2.24196186e-01 9.66652751e-01]\n", + " [-1.49924781e-01 -2.14054390e-01 9.65247781e-01]\n", + " [-7.77458251e-02 -3.26907588e-02 9.96437103e-01]\n", + " [-8.81944448e-02 -5.75708336e-02 9.94438203e-01]\n", + " [-9.86569638e-02 -8.29860912e-02 9.91655239e-01]\n", + " [-1.09098985e-01 -1.08817173e-01 9.88056797e-01]\n", + " [-1.19484549e-01 -1.34949562e-01 9.83621908e-01]\n", + " [-1.29776313e-01 -1.61272080e-01 9.78340138e-01]\n", + " [-1.39935974e-01 -1.87675937e-01 9.72211739e-01]\n", + " [-1.49924781e-01 -2.14054390e-01 9.65247781e-01]\n", + " [ 1.06200412e-01 -1.05094640e-01 9.88775298e-01]\n", + " [ 9.48840185e-02 -1.37780559e-01 9.85907471e-01]\n", + " [ 8.32065226e-02 -1.71001267e-01 9.81751110e-01]\n", + " [ 7.12299356e-02 -2.04551111e-01 9.76260795e-01]\n", + " [ 5.90198431e-02 -2.38224192e-01 9.69415232e-01]\n", + " [ 4.66456245e-02 -2.71814217e-01 9.61218610e-01]\n", + " [ 9.82755183e-02 -8.97943557e-02 9.91099842e-01]\n", + " [ 6.47364459e-02 -7.87006396e-02 9.94794151e-01]\n", + " [ 3.12839764e-02 -6.77233133e-02 9.97213551e-01]\n", + " [-1.88536285e-03 -5.69376019e-02 9.98375959e-01]\n", + " [-3.45759701e-02 -4.64254195e-02 9.98323186e-01]\n", + " [-6.65920196e-02 -3.62777852e-02 9.97120567e-01]\n", + " [ 3.00342067e-02 -2.79514779e-01 9.59671524e-01]\n", + " [-4.53740367e-03 -2.67678478e-01 9.63497610e-01]\n", + " [-3.88815865e-02 -2.55564064e-01 9.66009954e-01]\n", + " [-7.27968660e-02 -2.43252123e-01 9.67227492e-01]\n", + " [-1.06088325e-01 -2.30827757e-01 9.67193783e-01]\n", + " [-1.38567522e-01 -2.18380325e-01 9.65975712e-01]\n", + " [-8.22100642e-02 -4.34926493e-02 9.95665554e-01]\n", + " [-9.50289169e-02 -7.43624964e-02 9.92693167e-01]\n", + " [-1.07834821e-01 -1.05916916e-01 9.88510626e-01]\n", + " [-1.20562224e-01 -1.37943165e-01 9.83074989e-01]\n", + " [-1.33142429e-01 -1.70236466e-01 9.76367062e-01]\n", + " [-1.45504705e-01 -2.02597380e-01 9.68391802e-01]\n", + " [ 1.10097169e-01 -9.37245207e-02 9.89491954e-01]\n", + " [ 1.10097169e-01 -9.37245207e-02 9.89491954e-01]\n", + " [-1.49802660e-01 -2.13998937e-01 9.65279036e-01]\n", + " [-1.49802660e-01 -2.13998937e-01 9.65279036e-01]\n", + " [ 9.43328353e-02 -1.01146981e-01 9.90389118e-01]\n", + " [ 6.06687753e-02 -8.99864175e-02 9.94093428e-01]\n", + " [ 2.70994368e-02 -7.89167223e-02 9.96512805e-01]\n", + " [-6.17824640e-03 -6.80128623e-02 9.97665315e-01]\n", + " [-3.89687725e-02 -5.73560444e-02 9.97592963e-01]\n", + " [-7.10770039e-02 -4.70361075e-02 9.96361212e-01]\n", + " [ 8.29010819e-02 -1.33788305e-01 9.87536379e-01]\n", + " [ 4.89251058e-02 -1.22453126e-01 9.91267656e-01]\n", + " [ 1.50675806e-02 -1.11137848e-01 9.93690770e-01]\n", + " [-1.84732164e-02 -9.99173599e-02 9.94824236e-01]\n", + " [-5.15018549e-02 -8.88716994e-02 9.94710702e-01]\n", + " [-8.38249767e-02 -7.80881367e-02 9.93416134e-01]\n", + " [ 7.11304311e-02 -1.66971846e-01 9.83392528e-01]\n", + " [ 3.69060644e-02 -1.55483642e-01 9.87148813e-01]\n", + " [ 2.82476725e-03 -1.43945543e-01 9.89581579e-01]\n", + " [-3.09138040e-02 -1.32433186e-01 9.90709740e-01]\n", + " [-6.41141198e-02 -1.21026637e-01 9.90576566e-01]\n", + " [-9.65843161e-02 -1.09811956e-01 9.89248606e-01]\n", + " [ 5.90835467e-02 -2.00492145e-01 9.77912079e-01]\n", + " [ 2.46761062e-02 -1.88872828e-01 9.81691471e-01]\n", + " [-9.56309055e-03 -1.77134483e-01 9.84140194e-01]\n", + " [-4.34332517e-02 -1.65354046e-01 9.85277419e-01]\n", + " [-7.67387707e-02 -1.53612561e-01 9.85146863e-01]\n", + " [-1.09289023e-01 -1.41996151e-01 9.83815533e-01]\n", + " [ 4.68266732e-02 -2.34143545e-01 9.71073665e-01]\n", + " [ 1.23032016e-02 -2.22415857e-01 9.74874257e-01]\n", + " [-2.20266882e-02 -2.10500709e-01 9.77345526e-01]\n", + " [-5.59615200e-02 -1.98476600e-01 9.78506693e-01]\n", + " [-8.93057926e-02 -1.86426153e-01 9.78401638e-01]\n", + " [-1.21869925e-01 -1.74436512e-01 9.77097551e-01]\n", + " [ 3.44297022e-02 -2.67719979e-01 9.62881409e-01]\n", + " [-1.41497924e-04 -2.55907682e-01 9.66701215e-01]\n", + " [-3.44940089e-02 -2.43840632e-01 9.69201687e-01]\n", + " [-6.84262462e-02 -2.31598899e-01 9.70401875e-01]\n", + " [-1.01743089e-01 -2.19266936e-01 9.70345482e-01]\n", + " [-1.34255830e-01 -2.06933477e-01 9.69099535e-01]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:fp_optics: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:cartToSphere: vec: [[-0.88034378 0.43124064 0.19755088]\n", + " [-0.89329072 0.40848445 0.18754238]\n", + " [-0.90577022 0.38494877 0.17718564]\n", + " [-0.91769366 0.36070975 0.16651374]\n", + " [-0.92898177 0.33584739 0.15556159]\n", + " [-0.93956418 0.31044718 0.14436657]\n", + " [-0.94937959 0.28460085 0.13296898]\n", + " [-0.95837642 0.25840628 0.12141184]\n", + " [-0.88034378 0.43124064 0.19755088]\n", + " [-0.88019086 0.44277826 0.1709136 ]\n", + " [-0.87934666 0.45382862 0.14418406]\n", + " [-0.87782629 0.46435157 0.11746755]\n", + " [-0.8756553 0.47431049 0.09086998]\n", + " [-0.87286972 0.48367188 0.06449771]\n", + " [-0.8695162 0.49240489 0.03845774]\n", + " [-0.86565201 0.50048103 0.01285802]\n", + " [-0.95837642 0.25840628 0.12141184]\n", + " [-0.95813911 0.27045881 0.09392276]\n", + " [-0.95704407 0.28222797 0.06643808]\n", + " [-0.95510794 0.29367084 0.03906734]\n", + " [-0.95235817 0.30474887 0.01191816]\n", + " [-0.9488325 0.3154279 -0.01490427]\n", + " [-0.94457854 0.3256777 -0.04129661]\n", + " [-0.9396537 0.33547132 -0.06715587]\n", + " [-0.86565201 0.50048103 0.01285802]\n", + " [-0.87777831 0.47906457 0.00154285]\n", + " [-0.88951948 0.45679055 -0.00987331]\n", + " [-0.90078531 0.43373933 -0.02135483]\n", + " [-0.911496 0.40999389 -0.03286418]\n", + " [-0.9215821 0.38564033 -0.04436187]\n", + " [-0.93098434 0.36076831 -0.05580663]\n", + " [-0.9396537 0.33547132 -0.06715587]\n", + " [-0.88604074 0.42145986 0.19314085]\n", + " [-0.90160587 0.39303659 0.18063524]\n", + " [-0.91637977 0.36351773 0.16763944]\n", + " [-0.93021265 0.33304891 0.15421691]\n", + " [-0.942975 0.30178756 0.14043655]\n", + " [-0.95455796 0.26990517 0.12637368]\n", + " [-0.8804076 0.43625203 0.18592102]\n", + " [-0.87975379 0.45007065 0.15319815]\n", + " [-0.87807537 0.4631172 0.12044131]\n", + " [-0.87541502 0.4753228 0.08784524]\n", + " [-0.87183909 0.48662574 0.05560577]\n", + " [-0.86743787 0.49697019 0.02392026]\n", + " [-0.9583497 0.26378319 0.10947277]\n", + " [-0.95748058 0.27836965 0.07577122]\n", + " [-0.9553385 0.29248719 0.0421852 ]\n", + " [-0.95196953 0.30606301 0.0089137 ]\n", + " [-0.94744308 0.31903417 -0.02384957]\n", + " [-0.94185089 0.33134643 -0.05591459]\n", + " [-0.87099464 0.49122696 0.00802609]\n", + " [-0.88561052 0.46439104 -0.00591357]\n", + " [-0.89955702 0.43634661 -0.01996989]\n", + " [-0.91268293 0.40724536 -0.03407459]\n", + " [-0.92486036 0.37724583 -0.04815499]\n", + " [-0.93598444 0.34651467 -0.06213454]\n", + " [-0.8803894 0.43120447 0.19742647]\n", + " [-0.8803894 0.43120447 0.19742647]\n", + " [-0.93964326 0.33552576 -0.06702987]\n", + " [-0.93964326 0.33552576 -0.06702987]\n", + " [-0.88605758 0.42652858 0.18159114]\n", + " [-0.88538476 0.44041787 0.14874787]\n", + " [-0.88366493 0.45355094 0.11587852]\n", + " [-0.88094075 0.46585918 0.08317823]\n", + " [-0.87727848 0.47728134 0.05084283]\n", + " [-0.87276831 0.48776207 0.01906936]\n", + " [-0.9016191 0.39815903 0.16897449]\n", + " [-0.90089653 0.41223204 0.13583145]\n", + " [-0.89906861 0.42559516 0.10268592]\n", + " [-0.89617813 0.43818019 0.0697343 ]\n", + " [-0.89229133 0.44992711 0.03717235]\n", + " [-0.88749811 0.46078205 0.00519596]\n", + " [-0.91638976 0.36868465 0.15588918]\n", + " [-0.9156233 0.38291727 0.12250848]\n", + " [-0.91370048 0.39648911 0.0891506 ]\n", + " [-0.91066459 0.40933179 0.05601326]\n", + " [-0.90658225 0.42138593 0.02329204]\n", + " [-0.90154336 0.43259888 -0.00881859]\n", + " [-0.93021977 0.33825083 0.14239928]\n", + " [-0.92941528 0.35261885 0.10884477]\n", + " [-0.92741065 0.36637875 0.07533987]\n", + " [-0.92425001 0.37946135 0.04208333]\n", + " [-0.92000071 0.39180704 0.00927042]\n", + " [-0.914753 0.4033637 -0.02290592]\n", + " [-0.94297963 0.30701471 0.12857441]\n", + " [-0.94214321 0.32149324 0.09491186]\n", + " [-0.94007036 0.33542026 0.06132669]\n", + " [-0.93680611 0.34872523 0.02801819]\n", + " [-0.93241876 0.36134752 -0.00481887]\n", + " [-0.92699915 0.37323463 -0.03699303]\n", + " [-0.95456052 0.27514748 0.1144905 ]\n", + " [-0.95369872 0.28971053 0.08078715]\n", + " [-0.95157204 0.30378252 0.04718938]\n", + " [-0.94822632 0.31729124 0.01389637]\n", + " [-0.94373075 0.33017442 -0.01889785]\n", + " [-0.93817682 0.34237837 -0.05100297]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:fp_optics: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:cartToSphere: vec: [[-0.09742877 -0.08973787 0.99118855]\n", + " [-0.08961731 -0.11655134 0.98913322]\n", + " [-0.08157672 -0.14380543 0.98623792]\n", + " [-0.07333519 -0.17138634 0.9824707 ]\n", + " [-0.06492196 -0.19918103 0.97780983]\n", + " [-0.05636766 -0.22707613 0.97224437]\n", + " [-0.04770443 -0.25495789 0.96577469]\n", + " [-0.0389657 -0.28271302 0.95841276]\n", + " [-0.09742877 -0.08973787 0.99118855]\n", + " [-0.12510362 -0.09758279 0.98733312]\n", + " [-0.15255676 -0.10541559 0.9826566 ]\n", + " [-0.17968161 -0.11320954 0.97718889]\n", + " [-0.20637306 -0.12094093 0.97097037]\n", + " [-0.2325272 -0.12858959 0.96405177]\n", + " [-0.25804051 -0.13613938 0.95649421]\n", + " [-0.28280845 -0.14357853 0.94836944]\n", + " [-0.0389657 -0.28271302 0.95841276]\n", + " [-0.06763695 -0.29067806 0.95442732]\n", + " [-0.09615413 -0.29835895 0.94959798]\n", + " [-0.1244057 -0.30572915 0.94395599]\n", + " [-0.15228336 -0.31276614 0.93754313]\n", + " [-0.17968272 -0.31945152 0.93041112]\n", + " [-0.20650327 -0.3257708 0.92262115]\n", + " [-0.23264734 -0.33171316 0.91424373]\n", + " [-0.28280845 -0.14357853 0.94836944]\n", + " [-0.27691003 -0.16985792 0.94576378]\n", + " [-0.27053884 -0.19653137 0.94243523]\n", + " [-0.26372589 -0.22347849 0.93835282]\n", + " [-0.2565008 -0.2505828 0.93349644]\n", + " [-0.24889272 -0.27773061 0.92785674]\n", + " [-0.24093132 -0.30481046 0.92143512]\n", + " [-0.23264734 -0.33171316 0.91424373]\n", + " [-0.09414817 -0.101394 0.99038143]\n", + " [-0.08441777 -0.13456765 0.98730197]\n", + " [-0.07437096 -0.16828982 0.98292802]\n", + " [-0.06406108 -0.20235219 0.97721531]\n", + " [-0.05354455 -0.23654606 0.97014377]\n", + " [-0.04288107 -0.27066214 0.96171889]\n", + " [-0.10948958 -0.09324886 0.98960431]\n", + " [-0.14327337 -0.10285909 0.9843235 ]\n", + " [-0.1766181 -0.11242404 0.97783786]\n", + " [-0.20932964 -0.1218988 0.97021739]\n", + " [-0.24121664 -0.13124629 0.96155548]\n", + " [-0.27208815 -0.14043857 0.95196904]\n", + " [-0.05150813 -0.28612433 0.95680708]\n", + " [-0.08655807 -0.2956989 0.9513516 ]\n", + " [-0.12126541 -0.30482004 0.94465838]\n", + " [-0.15542934 -0.31344463 0.93679997]\n", + " [-0.18885772 -0.32153873 0.92787155]\n", + " [-0.22136677 -0.32907725 0.91798961]\n", + " [-0.28021313 -0.15495517 0.94734867]\n", + " [-0.27266081 -0.18744462 0.94367399]\n", + " [-0.26442955 -0.22040586 0.93888139]\n", + " [-0.25557439 -0.25362292 0.93292934]\n", + " [-0.24614914 -0.28688643 0.92580061]\n", + " [-0.23620882 -0.31999212 0.91750228]\n", + " [-0.09749737 -0.0898555 0.99117115]\n", + " [-0.09749737 -0.0898555 0.99117115]\n", + " [-0.23258804 -0.33160192 0.91429917]\n", + " [-0.23258804 -0.33160192 0.91429917]\n", + " [-0.10618812 -0.10479868 0.98880803]\n", + " [-0.14011101 -0.11442327 0.98350202]\n", + " [-0.17360007 -0.12397618 0.97698154]\n", + " [-0.20646103 -0.13341207 0.9693168 ]\n", + " [-0.23850304 -0.14269332 0.96060133]\n", + " [-0.2695364 -0.15179142 0.95095189]\n", + " [-0.09657805 -0.13800021 0.98571224]\n", + " [-0.13085286 -0.14765434 0.9803447 ]\n", + " [-0.16470858 -0.15716306 0.97374065]\n", + " [-0.19795002 -0.16648024 0.96597108]\n", + " [-0.23038718 -0.17556739 0.95713 ]\n", + " [-0.26183333 -0.1843949 0.94733406]\n", + " [-0.08662912 -0.17174396 0.98132533]\n", + " [-0.12119276 -0.18141028 0.97591118]\n", + " [-0.15535257 -0.19085851 0.96924641]\n", + " [-0.18891195 -0.20004242 0.96140278]\n", + " [-0.22168095 -0.20892354 0.95247494]\n", + " [-0.25347484 -0.2174721 0.94257965]\n", + " [-0.07639405 -0.20582142 0.97560314]\n", + " [-0.11118181 -0.21548185 0.97015781]\n", + " [-0.14558218 -0.22485237 0.96345588]\n", + " [-0.17939697 -0.23388722 0.95556972]\n", + " [-0.21243575 -0.24254872 0.94659451]\n", + " [-0.24451485 -0.25080788 0.93664716]\n", + " [-0.06592855 -0.24002368 0.96852571]\n", + " [-0.10087391 -0.2496599 0.9630651 ]\n", + " [-0.13544981 -0.25893549 0.95635023]\n", + " [-0.16945668 -0.26780562 0.94845378]\n", + " [-0.20270334 -0.276234 0.9394712 ]\n", + " [-0.23500643 -0.28419309 0.92951938]\n", + " [-0.05529178 -0.27414139 0.9600986 ]\n", + " [-0.09032662 -0.28373519 0.95463891]\n", + " [-0.12501157 -0.29289937 0.94793569]\n", + " [-0.15914606 -0.30159033 0.9400616 ]\n", + " [-0.19253816 -0.30977348 0.93111194]\n", + " [-0.22500428 -0.31742308 0.92120338]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:fp_optics: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:cartToSphere: vec: [[ 9.85806371e-01 -1.57914810e-01 -5.69974798e-02]\n", + " [ 9.90111576e-01 -1.32550973e-01 -4.59271827e-02]\n", + " [ 9.93702458e-01 -1.06575629e-01 -3.45985476e-02]\n", + " [ 9.96521279e-01 -8.00863318e-02 -2.30547378e-02]\n", + " [ 9.98520463e-01 -5.31818230e-02 -1.13392757e-02]\n", + " [ 9.99662759e-01 -2.59637181e-02 5.03214754e-04]\n", + " [ 9.99921715e-01 1.46284316e-03 1.24267191e-02]\n", + " [ 9.99282253e-01 2.89896187e-02 2.43840135e-02]\n", + " [ 9.85806371e-01 -1.57914810e-01 -5.69974798e-02]\n", + " [ 9.85716438e-01 -1.46220915e-01 -8.35616421e-02]\n", + " [ 9.84816998e-01 -1.34353011e-01 -1.09930653e-01]\n", + " [ 9.83123841e-01 -1.22356614e-01 -1.36001369e-01]\n", + " [ 9.80663746e-01 -1.10276848e-01 -1.61671378e-01]\n", + " [ 9.77474461e-01 -9.81579763e-02 -1.86838674e-01]\n", + " [ 9.73604768e-01 -8.60431230e-02 -2.11400890e-01]\n", + " [ 9.69114637e-01 -7.39742822e-02 -2.35254386e-01]\n", + " [ 9.99282253e-01 2.89896187e-02 2.43840135e-02]\n", + " [ 9.99156377e-01 4.09458131e-02 -3.15830891e-03]\n", + " [ 9.98134461e-01 5.28284042e-02 -3.06065034e-02]\n", + " [ 9.96233479e-01 6.45909456e-02 -5.78520948e-02]\n", + " [ 9.93481747e-01 7.61887801e-02 -8.47896660e-02]\n", + " [ 9.89918333e-01 8.75792815e-02 -1.11317397e-01]\n", + " [ 9.85592569e-01 9.87216450e-02 -1.37336539e-01]\n", + " [ 9.80563888e-01 1.09576235e-01 -1.62749840e-01]\n", + " [ 9.69114637e-01 -7.39742822e-02 -2.35254386e-01]\n", + " [ 9.72868097e-01 -4.87632722e-02 -2.26163237e-01]\n", + " [ 9.75994041e-01 -2.30428611e-02 -2.16574835e-01]\n", + " [ 9.78434270e-01 3.08320850e-03 -2.06535405e-01]\n", + " [ 9.80141797e-01 2.95117451e-02 -1.96089556e-01]\n", + " [ 9.81080699e-01 5.61394120e-02 -1.85280947e-01]\n", + " [ 9.81226040e-01 8.28623474e-02 -1.74153067e-01]\n", + " [ 9.80563888e-01 1.09576235e-01 -1.62749840e-01]\n", + " [ 9.87768244e-01 -1.46897741e-01 -5.22967492e-02]\n", + " [ 9.92572157e-01 -1.15387855e-01 -3.85506949e-02]\n", + " [ 9.96244633e-01 -8.30564450e-02 -2.44593338e-02]\n", + " [ 9.98693878e-01 -5.00846914e-02 -1.01025866e-02]\n", + " [ 9.99851370e-01 -1.66597415e-02 4.43736815e-03]\n", + " [ 9.99673113e-01 1.70234986e-02 1.90752977e-02]\n", + " [ 9.85883109e-01 -1.52754809e-01 -6.85599229e-02]\n", + " [ 9.85226993e-01 -1.38299708e-01 -1.00999820e-01]\n", + " [ 9.83369326e-01 -1.23628651e-01 -1.33044071e-01]\n", + " [ 9.80354849e-01 -1.08824902e-01 -1.64503832e-01]\n", + " [ 9.76253061e-01 -9.39699194e-02 -1.95191226e-01]\n", + " [ 9.71158405e-01 -7.91426107e-02 -2.24917315e-01]\n", + " [ 9.99341872e-01 3.41144136e-02 1.23300471e-02]\n", + " [ 9.98583487e-01 4.87245049e-02 -2.13761858e-02]\n", + " [ 9.96494810e-01 6.31779042e-02 -5.48328879e-02]\n", + " [ 9.93123281e-01 7.73916250e-02 -8.78446616e-02]\n", + " [ 9.88540765e-01 9.12871637e-02 -1.20224001e-01]\n", + " [ 9.82842263e-01 1.04789925e-01 -1.51789846e-01]\n", + " [ 9.70840702e-01 -6.30924425e-02 -2.31274027e-01]\n", + " [ 9.75027509e-01 -3.18374477e-02 -2.19790204e-01]\n", + " [ 9.78212571e-01 7.95912537e-05 -2.07605777e-01]\n", + " [ 9.80304741e-01 3.24685134e-02 -1.94803520e-01]\n", + " [ 9.81237872e-01 6.51390358e-02 -1.81463892e-01]\n", + " [ 9.80970630e-01 9.78997416e-02 -1.67667119e-01]\n", + " [ 9.85823316e-01 -1.57789586e-01 -5.70511706e-02]\n", + " [ 9.85823316e-01 -1.57789586e-01 -5.70511706e-02]\n", + " [ 9.80585852e-01 1.09448431e-01 -1.62703494e-01]\n", + " [ 9.80585852e-01 1.09448431e-01 -1.62703494e-01]\n", + " [ 9.87827400e-01 -1.41844996e-01 -6.38515783e-02]\n", + " [ 9.87158857e-01 -1.27353787e-01 -9.64282288e-02]\n", + " [ 9.85273119e-01 -1.12668897e-01 -1.28618041e-01]\n", + " [ 9.82215008e-01 -9.78741013e-02 -1.60232139e-01]\n", + " [ 9.78054033e-01 -8.30512864e-02 -1.91083207e-01]\n", + " [ 9.72884511e-01 -6.82796072e-02 -2.20983309e-01]\n", + " [ 9.92629736e-01 -1.10290442e-01 -5.02217621e-02]\n", + " [ 9.91930214e-01 -9.57148282e-02 -8.31451840e-02]\n", + " [ 9.89974570e-01 -8.10088766e-02 -1.15706145e-01]\n", + " [ 9.86808063e-01 -6.62575958e-02 -1.47715192e-01]\n", + " [ 9.82500466e-01 -5.15437867e-02 -1.78986233e-01]\n", + " [ 9.77145910e-01 -3.69470842e-02 -2.09334144e-01]\n", + " [ 9.96300967e-01 -7.79237919e-02 -3.62252088e-02]\n", + " [ 9.95576728e-01 -6.32912610e-02 -6.94348318e-02]\n", + " [ 9.93565393e-01 -4.85926493e-02 -1.02306228e-01]\n", + " [ 9.90312868e-01 -3.39136474e-02 -1.34648757e-01]\n", + " [ 9.85889484e-01 -1.93372908e-02 -1.66276862e-01]\n", + " [ 9.80389473e-01 -4.94309133e-03 -1.97007733e-01]\n", + " [ 9.98749312e-01 -4.49265457e-02 -2.19412283e-02]\n", + " [ 9.98006802e-01 -3.02658232e-02 -5.53751039e-02]\n", + " [ 9.95954325e-01 -1.56045284e-02 -8.84956612e-02]\n", + " [ 9.92638473e-01 -1.02832965e-03 -1.21110713e-01]\n", + " [ 9.88130247e-01 1.33803187e-02 -1.53034575e-01]\n", + " [ 9.82524179e-01 2.75427667e-02 -1.84085944e-01]\n", + " [ 9.99906269e-01 -1.14861725e-02 -7.45125838e-03]\n", + " [ 9.99152239e-01 3.17317310e-03 -4.10455062e-02]\n", + " [ 9.97073742e-01 1.77665004e-02 -7.43525731e-02]\n", + " [ 9.93717925e-01 3.22088843e-02 -1.07178695e-01]\n", + " [ 9.89156357e-01 4.64192095e-02 -1.39337569e-01]\n", + " [ 9.83483879e-01 6.03203313e-02 -1.70648519e-01]\n", + " [ 9.99727861e-01 2.22021877e-02 7.16012923e-03]\n", + " [ 9.98969346e-01 3.68303462e-02 -2.65287045e-02]\n", + " [ 9.96880507e-01 5.13254295e-02 -5.99579403e-02]\n", + " [ 9.93508772e-01 6.56038663e-02 -9.29325206e-02]\n", + " [ 9.88925990e-01 7.95864203e-02 -1.25265267e-01]\n", + " [ 9.83227166e-01 9.31978190e-02 -1.56775337e-01]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:cartToSphere: vec: [[0.00928899 0.9772758 0.21176809]\n", + " [0.03620052 0.97708449 0.20975088]\n", + " [0.0636585 0.97612151 0.20768823]\n", + " [0.0915407 0.97435296 0.20556412]\n", + " [0.11972803 0.97175444 0.20336791]\n", + " [0.14810364 0.96831113 0.20109415]\n", + " [0.17655238 0.96401808 0.19874206]\n", + " [0.20496058 0.95888037 0.19631505]\n", + " [0.00928899 0.9772758 0.21176809]\n", + " [0.00848263 0.9712304 0.23799065]\n", + " [0.00780931 0.96432484 0.26460653]\n", + " [0.00725488 0.95654691 0.29148822]\n", + " [0.00680867 0.94789392 0.31851336]\n", + " [0.00646324 0.93837294 0.34556397]\n", + " [0.00621386 0.92800105 0.37252576]\n", + " [0.00605791 0.91680556 0.39928794]\n", + " [0.20496058 0.95888037 0.19631505]\n", + " [0.2060399 0.95267849 0.22349778]\n", + " [0.206979 0.9455839 0.2510593 ]\n", + " [0.20776455 0.9375822 0.27887903]\n", + " [0.20838545 0.92866849 0.30683927]\n", + " [0.2088328 0.91884826 0.33482343]\n", + " [0.20909995 0.90813811 0.36271528]\n", + " [0.20918264 0.89656617 0.39039945]\n", + " [0.00605791 0.91680556 0.39928794]\n", + " [0.03406833 0.9163003 0.39904024]\n", + " [0.06260681 0.91504178 0.39847073]\n", + " [0.09155831 0.91299517 0.3975637 ]\n", + " [0.12080829 0.91013489 0.39630775]\n", + " [0.15024097 0.90644515 0.39469589]\n", + " [0.17973873 0.90192047 0.39272568]\n", + " [0.20918264 0.89656617 0.39039945]\n", + " [0.02094481 0.97726548 0.2109822 ]\n", + " [0.05431198 0.97651685 0.20848274]\n", + " [0.0883781 0.97457437 0.20589831]\n", + " [0.12292266 0.97138916 0.20320708]\n", + " [0.15773049 0.966934 0.20039895]\n", + " [0.1925902 0.9612039 0.19747425]\n", + " [0.00901141 0.9747452 0.22313806]\n", + " [0.00811572 0.96675951 0.25555858]\n", + " [0.00740522 0.95746857 0.28844256]\n", + " [0.00685881 0.94686347 0.32156265]\n", + " [0.00646276 0.93495724 0.35470155]\n", + " [0.00620924 0.92178559 0.38765033]\n", + " [0.20535011 0.95630386 0.20812077]\n", + " [0.20657945 0.94810498 0.2417062 ]\n", + " [0.20758485 0.93854984 0.27574032]\n", + " [0.20834497 0.92762548 0.31000539]\n", + " [0.20884344 0.91534207 0.34428666]\n", + " [0.20906902 0.90173496 0.37837047]\n", + " [0.01819853 0.91671507 0.39912691]\n", + " [0.05289781 0.91559451 0.39860821]\n", + " [0.08827577 0.91330684 0.39759024]\n", + " [0.12412148 0.90980112 0.39605022]\n", + " [0.1602217 0.90504833 0.39397529]\n", + " [0.19635929 0.89904286 0.39136296]\n", + " [0.00937694 0.97725719 0.21185011]\n", + " [0.00937694 0.97725719 0.21185011]\n", + " [0.20908221 0.89662688 0.39031382]\n", + " [0.20908221 0.89662688 0.39031382]\n", + " [0.02063494 0.97475452 0.22232367]\n", + " [0.01987776 0.96676514 0.25489219]\n", + " [0.01927767 0.95746058 0.28791946]\n", + " [0.01881421 0.94683161 0.32117896]\n", + " [0.01847425 0.934891 0.35445382]\n", + " [0.01825046 0.92167434 0.38753493]\n", + " [0.05415684 0.97400544 0.21995555]\n", + " [0.05378487 0.96599947 0.25288775]\n", + " [0.05349248 0.95665502 0.28626862]\n", + " [0.05326079 0.94596186 0.31987411]\n", + " [0.05307802 0.93393188 0.35348829]\n", + " [0.05293775 0.92060036 0.38690125]\n", + " [0.08837399 0.97205743 0.21747271]\n", + " [0.08837901 0.96402541 0.25068737]\n", + " [0.08838934 0.95463874 0.28434521]\n", + " [0.08838696 0.94388607 0.3182245 ]\n", + " [0.08836052 0.93177844 0.35210985]\n", + " [0.08830369 0.9183509 0.38579022]\n", + " [0.1230667 0.96886139 0.21485391]\n", + " [0.123443 0.96079303 0.24827118]\n", + " [0.12375337 0.95136098 0.2821301 ]\n", + " [0.12397971 0.94055292 0.31621075]\n", + " [0.12411003 0.92837923 0.35029803]\n", + " [0.12413722 0.91487481 0.3841797 ]\n", + " [0.15802022 0.96438977 0.21208958]\n", + " [0.15876303 0.95627391 0.24563085]\n", + " [0.1593713 0.94679253 0.27961526]\n", + " [0.15982593 0.93593272 0.31382419]\n", + " [0.16011341 0.92370448 0.3480427 ]\n", + " [0.16022514 0.9101428 0.38205757]\n", + " [0.19302301 0.95863738 0.20918052]\n", + " [0.1941267 0.95046225 0.24276807]\n", + " [0.19502943 0.94092714 0.27680252]\n", + " [0.19571051 0.930019 0.311066 ]\n", + " [0.19615435 0.91774789 0.34534372]\n", + " [0.19635041 0.90414902 0.37942201]]\n", + "DEBUG:root:cartToSphere: vec: [[-0.90029325 -0.34665147 -0.26325808]\n", + " [-0.89729424 -0.33432529 -0.28825274]\n", + " [-0.89350934 -0.32148455 -0.31351036]\n", + " [-0.8889147 -0.30816665 -0.33891587]\n", + " [-0.88349547 -0.29441145 -0.36435923]\n", + " [-0.87724624 -0.28026248 -0.3897332 ]\n", + " [-0.87017186 -0.26576801 -0.41493169]\n", + " [-0.86228804 -0.25098149 -0.43984956]\n", + " [-0.90029325 -0.34665147 -0.26325808]\n", + " [-0.9122458 -0.32234715 -0.25278433]\n", + " [-0.92338536 -0.29780685 -0.24222007]\n", + " [-0.93367886 -0.27312906 -0.2316124 ]\n", + " [-0.94310319 -0.24841453 -0.22101263]\n", + " [-0.95164519 -0.22376599 -0.21047617]\n", + " [-0.95930171 -0.19928768 -0.20006162]\n", + " [-0.96608001 -0.17508418 -0.18982872]\n", + " [-0.86228804 -0.25098149 -0.43984956]\n", + " [-0.87465934 -0.22590752 -0.42887858]\n", + " [-0.88620457 -0.20071118 -0.41756016]\n", + " [-0.89688935 -0.17549507 -0.40594455]\n", + " [-0.90669096 -0.15036064 -0.39408524]\n", + " [-0.91559768 -0.12540825 -0.38203882]\n", + " [-0.92360768 -0.10073875 -0.3698656 ]\n", + " [-0.93072812 -0.07645563 -0.35763069]\n", + " [-0.96608001 -0.17508418 -0.18982872]\n", + " [-0.96354991 -0.16161057 -0.2131985 ]\n", + " [-0.96020406 -0.14785825 -0.23695167]\n", + " [-0.95601786 -0.13386859 -0.26097713]\n", + " [-0.95097682 -0.1196854 -0.28516398]\n", + " [-0.94507638 -0.1053553 -0.30940411]\n", + " [-0.93832176 -0.09092789 -0.33359315]\n", + " [-0.93072812 -0.07645563 -0.35763069]\n", + " [-0.89912279 -0.34125986 -0.27408014]\n", + " [-0.89492257 -0.32580141 -0.30490495]\n", + " [-0.88951717 -0.30960715 -0.33600984]\n", + " [-0.88287549 -0.29274942 -0.36719021]\n", + " [-0.87498767 -0.27530847 -0.39824845]\n", + " [-0.86586712 -0.25737535 -0.42898958]\n", + " [-0.90559326 -0.33604835 -0.25879019]\n", + " [-0.91970066 -0.30608913 -0.24588642]\n", + " [-0.93255291 -0.27587314 -0.23289285]\n", + " [-0.94410331 -0.24558493 -0.21990221]\n", + " [-0.95432763 -0.21541356 -0.20701636]\n", + " [-0.96322438 -0.1855512 -0.19434388]\n", + " [-0.86780916 -0.24012176 -0.43502735]\n", + " [-0.88242078 -0.20929582 -0.4213417 ]\n", + " [-0.89575611 -0.17838798 -0.40718389]\n", + " [-0.90776849 -0.14758556 -0.39265108]\n", + " [-0.91843619 -0.11707353 -0.37784753]\n", + " [-0.92775961 -0.08703855 -0.3628862 ]\n", + " [-0.96505343 -0.16932883 -0.19999906]\n", + " [-0.96140748 -0.15262345 -0.22891425]\n", + " [-0.95651062 -0.1355401 -0.258295 ]\n", + " [-0.95033202 -0.11815841 -0.28793688]\n", + " [-0.94286323 -0.10056423 -0.31764093]\n", + " [-0.93411802 -0.08285007 -0.34721664]\n", + " [-0.90032652 -0.34652763 -0.26330736]\n", + " [-0.90032652 -0.34652763 -0.26330736]\n", + " [-0.93073264 -0.0765874 -0.35759072]\n", + " [-0.93073264 -0.0765874 -0.35759072]\n", + " [-0.90440992 -0.3307402 -0.26954333]\n", + " [-0.91856971 -0.30067185 -0.25656604]\n", + " [-0.93146624 -0.27035494 -0.2434725 ]\n", + " [-0.94305285 -0.23997439 -0.23035543]\n", + " [-0.9533053 -0.20971948 -0.21731714]\n", + " [-0.96222188 -0.17978292 -0.20446796]\n", + " [-0.90026114 -0.31518054 -0.30031835]\n", + " [-0.91455435 -0.28484149 -0.28715096]\n", + " [-0.92756589 -0.25427908 -0.27379494]\n", + " [-0.93924934 -0.22367934 -0.26034254]\n", + " [-0.94958091 -0.1932317 -0.24689594]\n", + " [-0.95855877 -0.16312926 -0.23356782]\n", + " [-0.89489772 -0.29890469 -0.33138204]\n", + " [-0.90930223 -0.26835236 -0.31805104]\n", + " [-0.92241341 -0.23760491 -0.3044625 ]\n", + " [-0.93418515 -0.2068495 -0.29070845]\n", + " [-0.94459455 -0.17627512 -0.27689026]\n", + " [-0.95364035 -0.146074 -0.26312063]\n", + " [-0.88828839 -0.28198545 -0.36252992]\n", + " [-0.9027819 -0.25127877 -0.34906133]\n", + " [-0.9159776 -0.22040822 -0.33526892]\n", + " [-0.92782959 -0.18956179 -0.32124536]\n", + " [-0.93831587 -0.15892759 -0.30709175]\n", + " [-0.94743605 -0.12869615 -0.29292018]\n", + " [-0.88042298 -0.2645038 -0.39356463]\n", + " [-0.89498267 -0.23370384 -0.37998491]\n", + " [-0.90824796 -0.20277376 -0.36601699]\n", + " [-0.92017287 -0.1719018 -0.35175512]\n", + " [-0.93073592 -0.14127482 -0.33730117]\n", + " [-0.93993741 -0.11108144 -0.32276708]\n", + " [-0.87131452 -0.24655156 -0.42429157]\n", + " [-0.88591685 -0.21572117 -0.41062843]\n", + " [-0.89923665 -0.18479613 -0.39651462]\n", + " [-0.91122747 -0.15396414 -0.38204652]\n", + " [-0.92186778 -0.12341063 -0.36732766]\n", + " [-0.93115806 -0.09332265 -0.35247064]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:fp_optics: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:fp_optics: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:fp_optics: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:cartToSphere: vec: [[-8.06689219e-01 1.06642119e-01 5.81274429e-01]\n", + " [-7.92429557e-01 9.72362209e-02 6.02163196e-01]\n", + " [-7.77320866e-01 8.74129672e-02 6.23001801e-01]\n", + " [-7.61390391e-01 7.72263493e-02 6.43677530e-01]\n", + " [-7.44673365e-01 6.67272682e-02 6.64085123e-01]\n", + " [-7.27213366e-01 5.59641155e-02 6.84126258e-01]\n", + " [-7.09062570e-01 4.49835029e-02 7.03709284e-01]\n", + " [-6.90281770e-01 3.38308458e-02 7.22749301e-01]\n", + " [-8.06689219e-01 1.06642119e-01 5.81274429e-01]\n", + " [-8.15447687e-01 8.25867039e-02 5.72908811e-01]\n", + " [-8.23707792e-01 5.78823417e-02 5.64052398e-01]\n", + " [-8.31405772e-01 3.26408818e-02 5.54706242e-01]\n", + " [-8.38485568e-01 6.97114548e-03 5.44879211e-01]\n", + " [-8.44898723e-01 -1.90201800e-02 5.34588047e-01]\n", + " [-8.50604534e-01 -4.52276929e-02 5.23857215e-01]\n", + " [-8.55570375e-01 -7.15468132e-02 5.12718623e-01]\n", + " [-6.90281770e-01 3.38308458e-02 7.22749301e-01]\n", + " [-6.98477327e-01 8.12416883e-03 7.15586069e-01]\n", + " [-7.06277207e-01 -1.81162379e-02 7.07703545e-01]\n", + " [-7.13619000e-01 -4.47854783e-02 6.99100982e-01]\n", + " [-7.20447512e-01 -7.17791692e-02 6.89784846e-01]\n", + " [-7.26714499e-01 -9.89916255e-02 6.79769590e-01]\n", + " [-7.32378858e-01 -1.26315090e-01 6.69078251e-01]\n", + " [-7.37407118e-01 -1.53640059e-01 6.57742712e-01]\n", + " [-8.55570375e-01 -7.15468132e-02 5.12718623e-01]\n", + " [-8.41409668e-01 -8.30233382e-02 5.33982112e-01]\n", + " [-8.26288333e-01 -9.46664059e-02 5.55234961e-01]\n", + " [-8.10229594e-01 -1.06425548e-01 5.76369333e-01]\n", + " [-7.93265213e-01 -1.18251413e-01 5.97282936e-01]\n", + " [-7.75436762e-01 -1.30095006e-01 6.17877914e-01]\n", + " [-7.56796421e-01 -1.41907423e-01 6.38060702e-01]\n", + " [-7.37407118e-01 -1.53640059e-01 6.57742712e-01]\n", + " [-8.00608485e-01 1.02514440e-01 5.90353151e-01]\n", + " [-7.82557742e-01 9.06974406e-02 6.15936161e-01]\n", + " [-7.63257803e-01 7.83077357e-02 6.41330980e-01]\n", + " [-7.42770192e-01 6.54402999e-02 6.66340761e-01]\n", + " [-7.21175166e-01 5.21843011e-02 6.90784466e-01]\n", + " [-6.98572366e-01 3.86250338e-02 7.14496155e-01]\n", + " [-8.10517522e-01 9.62090142e-02 5.77758748e-01]\n", + " [-8.20925244e-01 6.62744261e-02 5.67176731e-01]\n", + " [-8.30520218e-01 3.54766703e-02 5.55857511e-01]\n", + " [-8.39196057e-01 4.01730603e-03 5.43814158e-01]\n", + " [-8.46863569e-01 -2.79071645e-02 5.31077476e-01]\n", + " [-8.53451154e-01 -6.01030444e-02 5.17695617e-01]\n", + " [-6.93964878e-01 2.27336200e-02 7.19649867e-01]\n", + " [-7.03752190e-01 -9.14436955e-03 7.10386681e-01]\n", + " [-7.12882225e-01 -4.17197165e-02 7.00041712e-01]\n", + " [-7.21250405e-01 -7.48001595e-02 6.88623838e-01]\n", + " [-7.28767934e-01 -1.08191050e-01 6.76159740e-01]\n", + " [-7.35362282e-01 -1.41693233e-01 6.62695513e-01]\n", + " [-8.49499795e-01 -7.64363937e-02 5.22022581e-01]\n", + " [-8.31495732e-01 -9.06195811e-02 5.48090265e-01]\n", + " [-8.12071008e-01 -1.05002771e-01 5.74034055e-01]\n", + " [-7.91280483e-01 -1.19494702e-01 5.99663416e-01]\n", + " [-7.69200786e-01 -1.34005152e-01 6.24798183e-01]\n", + " [-7.45932464e-01 -1.48444192e-01 6.49268112e-01]\n", + " [-8.06672648e-01 1.06529699e-01 5.81318038e-01]\n", + " [-8.06672648e-01 1.06529699e-01 5.81318038e-01]\n", + " [-7.37458538e-01 -1.53506809e-01 6.57716173e-01]\n", + " [-7.37458538e-01 -1.53506809e-01 6.57716173e-01]\n", + " [-8.04453027e-01 9.21250506e-02 5.86829023e-01]\n", + " [-8.14862625e-01 6.20048682e-02 5.76328290e-01]\n", + " [-8.24463692e-01 3.10341514e-02 5.65063273e-01]\n", + " [-8.33149718e-01 -5.86598015e-04 5.53047199e-01]\n", + " [-8.40831203e-01 -3.26615638e-02 5.40311124e-01]\n", + " [-8.47436158e-01 -6.49971405e-02 5.26903531e-01]\n", + " [-7.86390517e-01 8.01310830e-02 6.12510378e-01]\n", + " [-7.96777545e-01 4.95340472e-02 6.02239090e-01]\n", + " [-8.06372077e-01 1.81200719e-02 5.91130896e-01]\n", + " [-8.15067275e-01 -1.39134119e-02 5.79199235e-01]\n", + " [-8.22772806e-01 -4.63721861e-02 5.66475534e-01]\n", + " [-8.29415618e-01 -7.90624077e-02 5.53008922e-01]\n", + " [-7.67062535e-01 6.75899971e-02 6.38002084e-01]\n", + " [-7.77384773e-01 3.65865313e-02 6.27960461e-01]\n", + " [-7.86936374e-01 4.79654894e-03 6.17015508e-01]\n", + " [-7.95610362e-01 -2.75851589e-02 6.05180313e-01]\n", + " [-8.03315848e-01 -6.03652652e-02 5.92486019e-01]\n", + " [-8.09978997e-01 -9.33490194e-02 5.78981852e-01]\n", + " [-7.46530277e-01 5.45958689e-02 6.63107711e-01]\n", + " [-7.56744357e-01 2.32539092e-02 6.53297201e-01]\n", + " [-7.66215248e-01 -8.84662952e-03 6.42523098e-01]\n", + " [-7.74836208e-01 -4.15127739e-02 6.30797543e-01]\n", + " [-7.82516289e-01 -7.45513594e-02 6.18150752e-01]\n", + " [-7.89181354e-01 -1.07766291e-01 6.04631473e-01]\n", + " [-7.24873857e-01 4.12371165e-02 6.87646269e-01]\n", + " [-7.34935889e-01 9.62290875e-03 6.78068315e-01]\n", + " [-7.44287610e-01 -2.27234637e-02 6.67472545e-01]\n", + " [-7.52822958e-01 -5.56099096e-02 6.55869752e-01]\n", + " [-7.60451530e-01 -8.88428500e-02 6.43288752e-01]\n", + " [-7.67099479e-01 -1.22224730e-01 6.29777345e-01]\n", + " [-7.02193056e-01 2.75986463e-02 7.11451493e-01]\n", + " [-7.12059549e-01 -4.22215188e-03 7.02106382e-01]\n", + " [-7.21253980e-01 -3.67493567e-02 6.91695151e-01]\n", + " [-7.29671339e-01 -6.97908852e-02 6.80227145e-01]\n", + " [-7.37222336e-01 -1.03152397e-01 6.67729594e-01]\n", + " [-7.43834004e-01 -1.36635082e-01 6.54249058e-01]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:cartToSphere: vec: [[-0.23460177 0.17278712 0.95661205]\n", + " [-0.22545041 0.14710322 0.96308502]\n", + " [-0.21593459 0.1207912 0.9689075 ]\n", + " [-0.2060824 0.09394944 0.97401414]\n", + " [-0.19592442 0.0666783 0.97834944]\n", + " [-0.1854942 0.03908129 0.98186789]\n", + " [-0.17482841 0.01126521 0.98453447]\n", + " [-0.16396666 -0.0166606 0.98632518]\n", + " [-0.23460177 0.17278712 0.95661205]\n", + " [-0.26109467 0.1620138 0.95162025]\n", + " [-0.28725233 0.15104887 0.94587015]\n", + " [-0.31297471 0.13993452 0.93939617]\n", + " [-0.33816467 0.12871281 0.93224335]\n", + " [-0.3627276 0.1174251 0.92446743]\n", + " [-0.38657065 0.10611165 0.91613506]\n", + " [-0.40960135 0.09481146 0.90732437]\n", + " [-0.16396666 -0.0166606 0.98632518]\n", + " [-0.19141215 -0.02766381 0.98111982]\n", + " [-0.2185976 -0.03860905 0.97505099]\n", + " [-0.24541826 -0.04945356 0.96815506]\n", + " [-0.27177393 -0.06015582 0.96047916]\n", + " [-0.29756952 -0.0706759 0.95208051]\n", + " [-0.32271501 -0.08097542 0.94302598]\n", + " [-0.34712436 -0.09101717 0.93339196]\n", + " [-0.40960135 0.09481146 0.90732437]\n", + " [-0.40227632 0.06933883 0.91288876]\n", + " [-0.39436486 0.04333401 0.91793165]\n", + " [-0.38589817 0.01690165 0.92238655]\n", + " [-0.37690746 -0.00985427 0.9261985 ]\n", + " [-0.36742501 -0.03682949 0.92932365]\n", + " [-0.35748505 -0.063919 0.93172893]\n", + " [-0.34712436 -0.09101717 0.93339196]\n", + " [-0.23074969 0.16163574 0.95949386]\n", + " [-0.21928614 0.1297224 0.96699829]\n", + " [-0.20730265 0.09696329 0.97345967]\n", + " [-0.19485446 0.06354227 0.97877174]\n", + " [-0.18200334 0.0296499 0.98285079]\n", + " [-0.16881802 -0.0045161 0.98563689]\n", + " [-0.2461572 0.16802939 0.9545537 ]\n", + " [-0.27841524 0.15469117 0.94792173]\n", + " [-0.31007004 0.14110723 0.94018366]\n", + " [-0.34094153 0.12735508 0.93141803]\n", + " [-0.37085551 0.1135108 0.92172745]\n", + " [-0.39964124 0.09964801 0.91123935]\n", + " [-0.17599552 -0.02136684 0.98415905]\n", + " [-0.20947112 -0.03481898 0.9771947 ]\n", + " [-0.24245153 -0.04814162 0.96896834]\n", + " [-0.27475031 -0.06125781 0.95956227]\n", + " [-0.30619245 -0.074094 0.9490818 ]\n", + " [-0.33661395 -0.08658006 0.93765396]\n", + " [-0.40640402 0.08381585 0.90984102]\n", + " [-0.3970269 0.05222471 0.91631993]\n", + " [-0.38680014 0.01993824 0.921948 ]\n", + " [-0.37578112 -0.01285193 0.92661933]\n", + " [-0.36402938 -0.04595379 0.93025312]\n", + " [-0.35160896 -0.07917376 0.93279293]\n", + " [-0.23466218 0.172664 0.95661947]\n", + " [-0.23466218 0.172664 0.95661947]\n", + " [-0.34707834 -0.09089074 0.93342139]\n", + " [-0.34707834 -0.09089074 0.93342139]\n", + " [-0.24229028 0.15698469 0.95741904]\n", + " [-0.27468101 0.14361478 0.95074978]\n", + " [-0.3064734 0.13002148 0.9429573 ]\n", + " [-0.33748727 0.11628277 0.93412026]\n", + " [-0.36754893 0.10247521 0.92434118]\n", + " [-0.39648889 0.08867285 0.91374706]\n", + " [-0.23094156 0.12503058 0.96490069]\n", + " [-0.26366842 0.11158766 0.95813734]\n", + " [-0.29581145 0.09798499 0.95020762]\n", + " [-0.32718968 0.08430157 0.94119082]\n", + " [-0.35763033 0.07061486 0.93118961]\n", + " [-0.38696681 0.05699968 0.92033023]\n", + " [-0.21905144 0.09223945 0.97134358]\n", + " [-0.25205485 0.07874923 0.96450345]\n", + " [-0.28449061 0.06516401 0.95646158]\n", + " [-0.31617641 0.0515632 0.94729811]\n", + " [-0.3469396 0.03802439 0.93711635]\n", + " [-0.37661553 0.02462239 0.92604238]\n", + " [-0.20667453 0.05879543 0.97664156]\n", + " [-0.23989344 0.04528457 0.96974246]\n", + " [-0.27256314 0.03174475 0.96161406]\n", + " [-0.30449987 0.0182552 0.95233743]\n", + " [-0.33553048 0.00489292 0.94201664]\n", + " [-0.36549132 -0.00826809 0.93077802]\n", + " [-0.19387197 0.02488933 0.98071106]\n", + " [-0.22724357 0.01138502 0.9737714 ]\n", + " [-0.26008708 -0.00208117 0.96558292]\n", + " [-0.29221735 -0.01543071 0.95622744]\n", + " [-0.32346046 -0.0285878 0.94580974]\n", + " [-0.35365299 -0.04147987 0.93445652]\n", + " [-0.18071196 -0.00928097 0.98349227]\n", + " [-0.21417194 -0.02275149 0.97653098]\n", + " [-0.24712766 -0.03611633 0.96830962]\n", + " [-0.27939297 -0.04929808 0.95891046]\n", + " [-0.3107931 -0.06222255 0.94843872]\n", + " [-0.34116429 -0.07481896 0.93702137]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:fp_optics: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:fp_optics: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:cartToSphere: vec: [[-0.6127218 -0.76021801 0.21596427]\n", + " [-0.62235595 -0.75940751 0.1896663 ]\n", + " [-0.63167797 -0.75796739 0.16269107]\n", + " [-0.6406228 -0.75587014 0.1351398 ]\n", + " [-0.64913256 -0.75309602 0.10711347]\n", + " [-0.65715584 -0.74963332 0.07871526]\n", + " [-0.6646473 -0.74547884 0.05005257]\n", + " [-0.67156805 -0.74063845 0.02123765]\n", + " [-0.6127218 -0.76021801 0.21596427]\n", + " [-0.63302265 -0.74104379 0.22391166]\n", + " [-0.65276162 -0.72130819 0.23155293]\n", + " [-0.67187017 -0.70109726 0.23885792]\n", + " [-0.69028762 -0.68050473 0.2457973 ]\n", + " [-0.70796133 -0.65963167 0.25234265]\n", + " [-0.72484677 -0.63858585 0.25846714]\n", + " [-0.74090802 -0.61747997 0.2641473 ]\n", + " [-0.67156805 -0.74063845 0.02123765]\n", + " [-0.69250936 -0.7208012 0.02960437]\n", + " [-0.71276043 -0.70038208 0.03791444]\n", + " [-0.73225023 -0.67947121 0.04613546]\n", + " [-0.75091855 -0.65816391 0.05423655]\n", + " [-0.76871545 -0.63656043 0.06218824]\n", + " [-0.78559965 -0.61476706 0.06996182]\n", + " [-0.80153686 -0.59289794 0.07752863]\n", + " [-0.74090802 -0.61747997 0.2641473 ]\n", + " [-0.75117066 -0.61524942 0.23918777]\n", + " [-0.7609991 -0.61261859 0.21349202]\n", + " [-0.77032641 -0.6095646 0.18715826]\n", + " [-0.77909278 -0.60607078 0.1602893 ]\n", + " [-0.7872456 -0.60212787 0.1329902 ]\n", + " [-0.79473957 -0.59773466 0.10536744]\n", + " [-0.80153686 -0.59289794 0.07752863]\n", + " [-0.6170268 -0.75987518 0.20461585]\n", + " [-0.62863381 -0.75846165 0.171917 ]\n", + " [-0.6397064 -0.75607434 0.1383015 ]\n", + " [-0.65013507 -0.75267369 0.1039553 ]\n", + " [-0.65982508 -0.74823819 0.06906856]\n", + " [-0.66869564 -0.74276572 0.03384108]\n", + " [-0.6216711 -0.75193018 0.2193765 ]\n", + " [-0.64618367 -0.72804153 0.22891524]\n", + " [-0.66978318 -0.70339427 0.23796427]\n", + " [-0.69235464 -0.67815776 0.24646926]\n", + " [-0.71380114 -0.65251803 0.25437796]\n", + " [-0.73404425 -0.62667566 0.26164221]\n", + " [-0.68075576 -0.73208411 0.02498905]\n", + " [-0.70596677 -0.70736923 0.03520917]\n", + " [-0.7300693 -0.68186924 0.04531165]\n", + " [-0.75294801 -0.65575754 0.05523901]\n", + " [-0.77451074 -0.62921882 0.06493691]\n", + " [-0.79468445 -0.60245193 0.07435256]\n", + " [-0.74537791 -0.6166275 0.25334226]\n", + " [-0.75767261 -0.61362859 0.22224349]\n", + " [-0.76924792 -0.61000494 0.1901358 ]\n", + " [-0.77999072 -0.60572314 0.15720673]\n", + " [-0.7898042 -0.60076625 0.12364962]\n", + " [-0.79860805 -0.59513536 0.08966098]\n", + " [-0.6128255 -0.76015175 0.21590327]\n", + " [-0.6128255 -0.76015175 0.21590327]\n", + " [-0.80146199 -0.59299 0.07759859]\n", + " [-0.80146199 -0.59299 0.07759859]\n", + " [-0.62590609 -0.75162094 0.2081046 ]\n", + " [-0.65050291 -0.7276343 0.21770229]\n", + " [-0.67416977 -0.70288135 0.22683238]\n", + " [-0.69679153 -0.67753174 0.23544065]\n", + " [-0.71827125 -0.65177189 0.24347448]\n", + " [-0.73853039 -0.62580347 0.2508842 ]\n", + " [-0.6375977 -0.75012539 0.17544538]\n", + " [-0.66240468 -0.72589385 0.18519761]\n", + " [-0.68623711 -0.70087865 0.19454497]\n", + " [-0.70897935 -0.67525024 0.20343401]\n", + " [-0.73053472 -0.64919528 0.21181242]\n", + " [-0.75082491 -0.62291679 0.21962839]\n", + " [-0.64873872 -0.74767169 0.14186305]\n", + " [-0.67371335 -0.72324385 0.15175195]\n", + " [-0.6976735 -0.69802169 0.16129909]\n", + " [-0.7205032 -0.6721766 0.17045164]\n", + " [-0.74210653 -0.6458949 0.17915825]\n", + " [-0.76240609 -0.61937916 0.18736706]\n", + " [-0.65921927 -0.74422063 0.10754351]\n", + " [-0.68431798 -0.71964605 0.11755193]\n", + " [-0.70836719 -0.69427297 0.12728299]\n", + " [-0.7312508 -0.66827379 0.13668361]\n", + " [-0.75287404 -0.64183437 0.14570284]\n", + " [-0.77316097 -0.61515602 0.15428928]\n", + " [-0.66894404 -0.73975128 0.07267674]\n", + " [-0.69412184 -0.71508119 0.08278751]\n", + " [-0.71822065 -0.68961449 0.09268741]\n", + " [-0.74112453 -0.66352441 0.10232201]\n", + " [-0.76274001 -0.63699629 0.11163962]\n", + " [-0.78299269 -0.61023012 0.12058878]\n", + " [-0.67783162 -0.73426213 0.03746227]\n", + " [-0.70304223 -0.70954944 0.04765727]\n", + " [-0.72715081 -0.6840477 0.05771003]\n", + " [-0.75004182 -0.65793038 0.06756393]\n", + " [-0.77162286 -0.63138234 0.07716543]\n", + " [-0.79182065 -0.60460263 0.08646224]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:fp_optics: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:cartToSphere: vec: [[-8.30099276e-02 -2.58290306e-02 9.96213939e-01]\n", + " [-7.60756190e-02 2.64938706e-04 9.97102016e-01]\n", + " [-6.87920269e-02 2.68568527e-02 9.97269455e-01]\n", + " [-6.12016884e-02 5.38365291e-02 9.96672454e-01]\n", + " [-5.33448507e-02 8.10945891e-02 9.95277848e-01]\n", + " [-4.52595870e-02 1.08522178e-01 9.93063194e-01]\n", + " [-3.69822084e-02 1.36010757e-01 9.90016864e-01]\n", + " [-2.85476834e-02 1.63452186e-01 9.86138131e-01]\n", + " [-8.30099276e-02 -2.58290306e-02 9.96213939e-01]\n", + " [-5.78518282e-02 -3.53488141e-02 9.97699167e-01]\n", + " [-3.20568507e-02 -4.49032786e-02 9.98476867e-01]\n", + " [-5.73922777e-03 -5.44639136e-02 9.98499246e-01]\n", + " [ 2.09887797e-02 -6.40005945e-02 9.97729119e-01]\n", + " [ 4.80165683e-02 -7.34814671e-02 9.96139992e-01]\n", + " [ 7.52347084e-02 -8.28731304e-02 9.93716148e-01]\n", + " [ 1.02534681e-01 -9.21410225e-02 9.90452761e-01]\n", + " [-2.85476834e-02 1.63452186e-01 9.86138131e-01]\n", + " [-1.88711940e-03 1.55390414e-01 9.87851334e-01]\n", + " [ 2.53215858e-02 1.47041041e-01 9.88806225e-01]\n", + " [ 5.29689719e-02 1.38430470e-01 9.88954647e-01]\n", + " [ 8.09464027e-02 1.29586523e-01 9.88258576e-01]\n", + " [ 1.09144265e-01 1.20539018e-01 9.86690364e-01]\n", + " [ 1.37451059e-01 1.11320102e-01 9.84233225e-01]\n", + " [ 1.65753591e-01 1.01964253e-01 9.80881766e-01]\n", + " [ 1.02534681e-01 -9.21410225e-02 9.90452761e-01]\n", + " [ 1.11492597e-01 -6.55995703e-02 9.91597750e-01]\n", + " [ 1.20542036e-01 -3.84850201e-02 9.91961955e-01]\n", + " [ 1.29641574e-01 -1.09024543e-02 9.91500983e-01]\n", + " [ 1.38751237e-01 1.70426266e-02 9.90180611e-01]\n", + " [ 1.47831939e-01 4.52426751e-02 9.87977134e-01]\n", + " [ 1.56845259e-01 7.35874128e-02 9.84877890e-01]\n", + " [ 1.65753591e-01 1.01964253e-01 9.80881766e-01]\n", + " [-7.99469614e-02 -1.45524547e-02 9.96692886e-01]\n", + " [-7.12065278e-02 1.77779908e-02 9.97303150e-01]\n", + " [-6.19841439e-02 5.07468548e-02 9.96786197e-01]\n", + " [-5.23548681e-02 8.41524480e-02 9.95076546e-01]\n", + " [-4.23888381e-02 1.17794347e-01 9.92132893e-01]\n", + " [-3.21523278e-02 1.51472884e-01 9.87938355e-01]\n", + " [-7.21030048e-02 -2.98851260e-02 9.96949365e-01]\n", + " [-4.08249467e-02 -4.15787567e-02 9.98300822e-01]\n", + " [-8.70404410e-03 -5.32964973e-02 9.98540797e-01]\n", + " [ 2.40522111e-02 -6.49835776e-02 9.97596424e-01]\n", + " [ 5.72401464e-02 -7.65813750e-02 9.95418936e-01]\n", + " [ 9.06586812e-02 -8.80278921e-02 9.91983918e-01]\n", + " [-1.70272795e-02 1.59880222e-01 9.86989557e-01]\n", + " [ 1.60301733e-02 1.49802072e-01 9.88586047e-01]\n", + " [ 4.98020570e-02 1.39318219e-01 9.88994534e-01]\n", + " [ 8.40881370e-02 1.28479266e-01 9.88140812e-01]\n", + " [ 1.18686516e-01 1.17340150e-01 9.85974036e-01]\n", + " [ 1.53391171e-01 1.05961043e-01 9.82468018e-01]\n", + " [ 1.06332632e-01 -8.06145431e-02 9.91057348e-01]\n", + " [ 1.17377405e-01 -4.76863502e-02 9.91941811e-01]\n", + " [ 1.28518472e-01 -1.40018659e-02 9.91608264e-01]\n", + " [ 1.39681679e-01 2.02449584e-02 9.89989480e-01]\n", + " [ 1.50795049e-01 5.48560494e-02 9.87041877e-01]\n", + " [ 1.61788175e-01 8.96273684e-02 9.82746926e-01]\n", + " [-8.29020404e-02 -2.57732344e-02 9.96224368e-01]\n", + " [-8.29020404e-02 -2.57732344e-02 9.96224368e-01]\n", + " [ 1.65626701e-01 1.01899474e-01 9.80909931e-01]\n", + " [ 1.65626701e-01 1.01899474e-01 9.80909931e-01]\n", + " [-6.90830568e-02 -1.86296165e-02 9.97436950e-01]\n", + " [-3.76278480e-02 -3.02415790e-02 9.98834116e-01]\n", + " [-5.33945960e-03 -4.19025322e-02 9.99107436e-01]\n", + " [ 2.75751393e-02 -5.35576258e-02 9.98183947e-01]\n", + " [ 6.09126782e-02 -6.51479256e-02 9.96014756e-01]\n", + " [ 9.44720451e-02 -7.66110087e-02 9.92575330e-01]\n", + " [-6.01762552e-02 1.38034303e-02 9.98092322e-01]\n", + " [-2.82681754e-02 2.43500535e-03 9.99597409e-01]\n", + " [ 4.44699489e-03 -9.05233938e-03 9.99949138e-01]\n", + " [ 3.77642381e-02 -2.06035261e-02 9.99074250e-01]\n", + " [ 7.14813983e-02 -3.21589217e-02 9.96923374e-01]\n", + " [ 1.05396977e-01 -4.36551025e-02 9.93471544e-01]\n", + " [-5.08132701e-02 4.68813074e-02 9.97607215e-01]\n", + " [-1.85242033e-02 3.57754835e-02 9.99188155e-01]\n", + " [ 1.45481103e-02 2.44821336e-02 9.99594407e-01]\n", + " [ 4.82007190e-02 1.30561951e-02 9.98752335e-01]\n", + " [ 8.22322578e-02 1.55740749e-03 9.96611976e-01]\n", + " [ 1.16440381e-01 -9.95037179e-03 9.93147838e-01]\n", + " [-4.10687851e-02 8.04026460e-02 9.95916045e-01]\n", + " [-8.46926198e-03 6.95797551e-02 9.97540440e-01]\n", + " [ 2.48916906e-02 5.85023570e-02 9.97976892e-01]\n", + " [ 5.88127780e-02 4.72246384e-02 9.97151388e-01]\n", + " [ 9.30929429e-02 3.58056506e-02 9.95013397e-01]\n", + " [ 1.27528671e-01 2.43089330e-02 9.91536945e-01]\n", + " [-3.10124643e-02 1.14167091e-01 9.92977393e-01]\n", + " [ 1.82819595e-03 1.03647707e-01 9.94612392e-01]\n", + " [ 3.54098637e-02 9.28085112e-02 9.95054130e-01]\n", + " [ 6.95322141e-02 8.17023591e-02 9.94228342e-01]\n", + " [ 1.03994041e-01 7.03868629e-02 9.92084134e-01]\n", + " [ 1.38590599e-01 5.89244960e-02 9.88595241e-01]\n", + " [-2.07102778e-02 1.47974643e-01 9.88774286e-01]\n", + " [ 1.23027625e-02 1.37778230e-01 9.90386693e-01]\n", + " [ 4.60371096e-02 1.27198273e-01 9.90808349e-01]\n", + " [ 8.02926371e-02 1.16285968e-01 9.89964982e-01]\n", + " [ 1.14867663e-01 1.05096987e-01 9.87805671e-01]\n", + " [ 1.49556427e-01 9.36921627e-02 9.84304147e-01]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:fp_optics: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:cartToSphere: vec: [[ 0.13070612 0.53921044 -0.83196635]\n", + " [ 0.11373284 0.52161175 -0.84556846]\n", + " [ 0.09632745 0.50324029 -0.85876087]\n", + " [ 0.07855466 0.48414656 -0.87145354]\n", + " [ 0.06047996 0.46438606 -0.88356537]\n", + " [ 0.04217078 0.44402064 -0.89502363]\n", + " [ 0.02369707 0.42311926 -0.90576406]\n", + " [ 0.00513112 0.40175803 -0.91573149]\n", + " [ 0.13070612 0.53921044 -0.83196635]\n", + " [ 0.15339704 0.5224618 -0.83875086]\n", + " [ 0.17582773 0.50526698 -0.84486087]\n", + " [ 0.1979107 0.48769739 -0.85028384]\n", + " [ 0.21955945 0.4698286 -0.85501739]\n", + " [ 0.24068815 0.45173995 -0.8590694 ]\n", + " [ 0.26121119 0.43351456 -0.86245802]\n", + " [ 0.28104276 0.41523937 -0.86521167]\n", + " [ 0.00513112 0.40175803 -0.91573149]\n", + " [ 0.02870148 0.38451686 -0.92267167]\n", + " [ 0.05216896 0.36698381 -0.92876331]\n", + " [ 0.07544137 0.34923289 -0.93399411]\n", + " [ 0.09842944 0.33134059 -0.93836297]\n", + " [ 0.12104707 0.31338535 -0.94187963]\n", + " [ 0.14321085 0.29544775 -0.94456407]\n", + " [ 0.16483869 0.27761138 -0.94644605]\n", + " [ 0.28104276 0.41523937 -0.86521167]\n", + " [ 0.26600076 0.3970484 -0.87840547]\n", + " [ 0.25032716 0.37826845 -0.89120665]\n", + " [ 0.23408935 0.35895404 -0.9035232 ]\n", + " [ 0.21735434 0.33916438 -0.91527297]\n", + " [ 0.2001891 0.31896369 -0.92638355]\n", + " [ 0.18266109 0.2984213 -0.93679222]\n", + " [ 0.16483869 0.27761138 -0.94644605]\n", + " [ 0.12344124 0.53157877 -0.83796555]\n", + " [ 0.10234079 0.50948339 -0.85437289]\n", + " [ 0.08065542 0.48627709 -0.87007431]\n", + " [ 0.0585053 0.4620599 -0.88491682]\n", + " [ 0.03601465 0.43694576 -0.89876657]\n", + " [ 0.01331322 0.41106463 -0.91150899]\n", + " [ 0.14056889 0.53190819 -0.83505333]\n", + " [ 0.1682159 0.51107166 -0.84291706]\n", + " [ 0.19538508 0.48963552 -0.84975392]\n", + " [ 0.22191677 0.46773718 -0.8555553 ]\n", + " [ 0.24765291 0.44552272 -0.86033571]\n", + " [ 0.27243581 0.42314673 -0.86413285]\n", + " [ 0.01547809 0.39435505 -0.9188278 ]\n", + " [ 0.0443083 0.37301873 -0.92676524]\n", + " [ 0.07289199 0.35131707 -0.93341474]\n", + " [ 0.10106353 0.32938991 -0.93876965]\n", + " [ 0.12866439 0.30738169 -0.9428478 ]\n", + " [ 0.15554164 0.28544194 -0.94569006]\n", + " [ 0.2744993 0.40744628 -0.87099808]\n", + " [ 0.25562909 0.38474874 -0.88691723]\n", + " [ 0.23587732 0.36122002 -0.90215408]\n", + " [ 0.21536752 0.33696718 -0.9165533 ]\n", + " [ 0.19422303 0.31210846 -0.92998157]\n", + " [ 0.17256841 0.28677352 -0.94232749]\n", + " [ 0.13072683 0.53909519 -0.83203778]\n", + " [ 0.13072683 0.53909519 -0.83203778]\n", + " [ 0.16482711 0.27774363 -0.94640926]\n", + " [ 0.16482711 0.27774363 -0.94640926]\n", + " [ 0.13332328 0.52436434 -0.84099164]\n", + " [ 0.16109299 0.50345702 -0.84886988]\n", + " [ 0.18839854 0.48196076 -0.85569844]\n", + " [ 0.21508031 0.46001341 -0.86146858]\n", + " [ 0.24098068 0.43776129 -0.86619476]\n", + " [ 0.26594248 0.41535894 -0.86991468]\n", + " [ 0.11232385 0.5022003 -0.85742534]\n", + " [ 0.1404065 0.48111976 -0.86533797]\n", + " [ 0.16806347 0.45948309 -0.87214102]\n", + " [ 0.19513489 0.43742948 -0.87782563]\n", + " [ 0.22146422 0.41510582 -0.88240623]\n", + " [ 0.24689619 0.39266639 -0.88592064]\n", + " [ 0.0907212 0.47893891 -0.87314786]\n", + " [ 0.11906536 0.45772646 -0.88108452]\n", + " [ 0.1470226 0.43599482 -0.88785859]\n", + " [ 0.17443222 0.41388432 -0.89346134]\n", + " [ 0.20113827 0.39154215 -0.89790765]\n", + " [ 0.22698722 0.36912202 -0.90123567]\n", + " [ 0.06863502 0.45468062 -0.88800606]\n", + " [ 0.09718838 0.43337898 -0.89595596]\n", + " [ 0.12539469 0.41159941 -0.90269713]\n", + " [ 0.15309193 0.38948287 -0.90822132]\n", + " [ 0.18012401 0.36717637 -0.91254416]\n", + " [ 0.20633858 0.3448327 -0.91570454]\n", + " [ 0.04618893 0.42953984 -0.90186591]\n", + " [ 0.07489765 0.40819307 -0.90981798]\n", + " [ 0.10330086 0.38641376 -0.91652242]\n", + " [ 0.13123494 0.3643429 -0.92197161]\n", + " [ 0.15854304 0.34212672 -0.92618217]\n", + " [ 0.1850731 0.31991672 -0.92919387]\n", + " [ 0.02351212 0.40364688 -0.91461269]\n", + " [ 0.05232065 0.38229988 -0.92255588]\n", + " [ 0.08086699 0.36056945 -0.92922021]\n", + " [ 0.10898597 0.33859584 -0.9345988 ]\n", + " [ 0.13651956 0.31652403 -0.93870919]\n", + " [ 0.16331516 0.29450404 -0.94159202]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:fp_optics: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:cartToSphere: vec: [[-9.77263164e-01 1.48837725e-01 -1.51010066e-01]\n", + " [-9.74465731e-01 1.74039973e-01 -1.41868346e-01]\n", + " [-9.70909147e-01 1.99591553e-01 -1.32282428e-01]\n", + " [-9.66564115e-01 2.25379856e-01 -1.22301807e-01]\n", + " [-9.61411835e-01 2.51294707e-01 -1.11974346e-01]\n", + " [-9.55444123e-01 2.77228136e-01 -1.01346374e-01]\n", + " [-9.48663512e-01 3.03074198e-01 -9.04630989e-02]\n", + " [-9.41083287e-01 3.28729072e-01 -7.93690359e-02]\n", + " [-9.77263164e-01 1.48837725e-01 -1.51010066e-01]\n", + " [-9.82288160e-01 1.37765190e-01 -1.27006783e-01]\n", + " [-9.86676009e-01 1.26491572e-01 -1.02324653e-01]\n", + " [-9.90365833e-01 1.15045624e-01 -7.70715338e-02]\n", + " [-9.93307076e-01 1.03459307e-01 -5.13539137e-02]\n", + " [-9.95459546e-01 9.17679506e-02 -2.52771600e-02]\n", + " [-9.96793493e-01 8.00101385e-02 1.05400146e-03]\n", + " [-9.97289746e-01 6.82273794e-02 2.75351887e-02]\n", + " [-9.41083287e-01 3.28729072e-01 -7.93690359e-02]\n", + " [-9.46228011e-01 3.19007045e-01 -5.37313278e-02]\n", + " [-9.50717967e-01 3.08833031e-01 -2.75228345e-02]\n", + " [-9.54492629e-01 2.98233304e-01 -8.46806782e-04]\n", + " [-9.57501262e-01 2.87237212e-01 2.61938254e-02]\n", + " [-9.59702920e-01 2.75877913e-01 5.34946892e-02]\n", + " [-9.61066800e-01 2.64192845e-01 8.09490418e-02]\n", + " [-9.61572778e-01 2.52223794e-01 1.08447913e-01]\n", + " [-9.97289746e-01 6.82273794e-02 2.75351887e-02]\n", + " [-9.94841871e-01 9.37507848e-02 3.87355384e-02]\n", + " [-9.91542659e-01 1.19706693e-01 5.01344433e-02]\n", + " [-9.87361523e-01 1.45987332e-01 6.16840443e-02]\n", + " [-9.82278021e-01 1.72486315e-01 7.33373026e-02]\n", + " [-9.76282399e-01 1.99097069e-01 8.50472453e-02]\n", + " [-9.69376209e-01 2.25712182e-01 9.67666019e-02]\n", + " [-9.61572778e-01 2.52223794e-01 1.08447913e-01]\n", + " [-9.76152852e-01 1.59738510e-01 -1.47000742e-01]\n", + " [-9.72218387e-01 1.90876454e-01 -1.35490174e-01]\n", + " [-9.67113265e-01 2.22427000e-01 -1.23361915e-01]\n", + " [-9.60798506e-01 2.54186317e-01 -1.10704775e-01]\n", + " [-9.53259057e-01 2.85955611e-01 -9.76040878e-02]\n", + " [-9.44504046e-01 3.17540706e-01 -8.41427773e-02]\n", + " [-9.79519938e-01 1.44122213e-01 -1.40603976e-01]\n", + " [-9.85258715e-01 1.30413616e-01 -1.10713836e-01]\n", + " [-9.89978779e-01 1.16431023e-01 -7.99114173e-02]\n", + " [-9.93582769e-01 1.02231923e-01 -4.83933397e-02]\n", + " [-9.95996701e-01 8.78813451e-02 -1.63536361e-02]\n", + " [-9.97170190e-01 7.34515582e-02 1.60150406e-02]\n", + " [-9.43429986e-01 3.24459745e-01 -6.83061814e-02]\n", + " [-9.49303457e-01 3.12236402e-01 -3.64880320e-02]\n", + " [-9.54132164e-01 2.99360127e-01 -3.91519413e-03]\n", + " [-9.57818653e-01 2.85883638e-01 2.92228091e-02]\n", + " [-9.60287587e-01 2.71868038e-01 6.27337246e-02]\n", + " [-9.61486665e-01 2.57384078e-01 9.64200715e-02]\n", + " [-9.96324508e-01 7.93359090e-02 3.22999800e-02]\n", + " [-9.92756236e-01 1.10922357e-01 4.61658569e-02]\n", + " [-9.87877739e-01 1.43051036e-01 6.02824539e-02]\n", + " [-9.81647155e-01 1.75525608e-01 7.45628822e-02]\n", + " [-9.74046602e-01 2.08149801e-01 8.89206292e-02]\n", + " [-9.65083818e-01 2.40725624e-01 1.03268576e-01]\n", + " [-9.77273042e-01 1.48885693e-01 -1.50898812e-01]\n", + " [-9.77273042e-01 1.48885693e-01 -1.50898812e-01]\n", + " [-9.61600712e-01 2.52174795e-01 1.08314098e-01]\n", + " [-9.61600712e-01 2.52174795e-01 1.08314098e-01]\n", + " [-9.78418400e-01 1.55007264e-01 -1.36638879e-01]\n", + " [-9.84203933e-01 1.41372639e-01 -1.06566385e-01]\n", + " [-9.88961706e-01 1.27438181e-01 -7.55926863e-02]\n", + " [-9.92594291e-01 1.13261392e-01 -4.39138980e-02]\n", + " [-9.95027564e-01 9.89075545e-02 -1.17236201e-02]\n", + " [-9.96210957e-01 8.44493407e-02 2.07855230e-02]\n", + " [-9.74525932e-01 1.86240495e-01 -1.24954736e-01]\n", + " [-9.80416785e-01 1.72827472e-01 -9.44118285e-02]\n", + " [-9.85259677e-01 1.59042763e-01 -6.29981684e-02]\n", + " [-9.88957009e-01 1.44943900e-01 -3.09079275e-02]\n", + " [-9.91434174e-01 1.30596710e-01 1.66652083e-03]\n", + " [-9.92639991e-01 1.16074828e-01 3.45323383e-02]\n", + " [-9.69446647e-01 2.17892346e-01 -1.12677079e-01]\n", + " [-9.75402391e-01 2.04719664e-01 -8.17314859e-02]\n", + " [-9.80297986e-01 1.91105931e-01 -4.99437953e-02]\n", + " [-9.84035654e-01 1.77108351e-01 -1.75060918e-02]\n", + " [-9.86540251e-01 1.62792741e-01 1.53901374e-02]\n", + " [-9.87759936e-01 1.48233184e-01 4.85513359e-02]\n", + " [-9.63141441e-01 2.49759256e-01 -9.98943382e-02]\n", + " [-9.69121226e-01 2.36846782e-01 -6.86123284e-02]\n", + " [-9.74036524e-01 2.23426698e-01 -3.65152080e-02]\n", + " [-9.77789435e-01 2.09555319e-01 -3.79340034e-03]\n", + " [-9.80304380e-01 1.95297718e-01 2.93619453e-02]\n", + " [-9.81528989e-01 1.80727724e-01 6.27561487e-02]\n", + " [-9.55595169e-01 2.81642471e-01 -8.66913556e-02]\n", + " [-9.61557751e-01 2.69010230e-01 -5.51378975e-02]\n", + " [-9.66459157e-01 2.55806714e-01 -2.27952369e-02]\n", + " [-9.70201523e-01 2.42086845e-01 1.01471329e-02]\n", + " [-9.72709114e-01 2.27914272e-01 4.34978559e-02]\n", + " [-9.73929321e-01 2.13361866e-01 7.70609607e-02]\n", + " [-9.46816944e-01 3.13347476e-01 -7.31507560e-02]\n", + " [-9.52720937e-01 3.01014390e-01 -4.13902657e-02]\n", + " [-9.57574567e-01 2.88049198e-01 -8.86607912e-03]\n", + " [-9.61280237e-01 2.74505184e-01 2.42324247e-02]\n", + " [-9.63762433e-01 2.60444143e-01 5.77132733e-02]\n", + " [-9.64968702e-01 2.45937438e-01 9.13793224e-02]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:fp_optics: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:cartToSphere: vec: [[-0.29074984 -0.14077791 0.94638582]\n", + " [-0.29985762 -0.11535235 0.94698429]\n", + " [-0.30878928 -0.08926727 0.94693217]\n", + " [-0.31750733 -0.0626344 0.94618499]\n", + " [-0.32597545 -0.03556432 0.94470905]\n", + " [-0.33415848 -0.00816678 0.94248152]\n", + " [-0.34202256 0.01944891 0.93949045]\n", + " [-0.34953565 0.04717374 0.93573472]\n", + " [-0.29074984 -0.14077791 0.94638582]\n", + " [-0.26576586 -0.13487741 0.9545557 ]\n", + " [-0.24008488 -0.12860139 0.96219589]\n", + " [-0.21380238 -0.12198581 0.96923063]\n", + " [-0.18701567 -0.11506501 0.97559478]\n", + " [-0.15982428 -0.10787175 0.98123386]\n", + " [-0.13233024 -0.10043766 0.98610394]\n", + " [-0.1046381 -0.09279371 0.9901718 ]\n", + " [-0.34953565 0.04717374 0.93573472]\n", + " [-0.32421355 0.05509828 0.94437797]\n", + " [-0.29811324 0.06314312 0.95243973]\n", + " [-0.27132513 0.07127319 0.9598452 ]\n", + " [-0.24394218 0.07945433 0.96652947]\n", + " [-0.21606172 0.0876527 0.97243732]\n", + " [-0.18778648 0.09583458 0.97752339]\n", + " [-0.15922455 0.10396638 0.98175279]\n", + " [-0.1046381 -0.09279371 0.9901718 ]\n", + " [-0.11244007 -0.06589677 0.99147105]\n", + " [-0.12029874 -0.03841602 0.99199416]\n", + " [-0.12817842 -0.01045831 0.99169598]\n", + " [-0.13604447 0.01786923 0.99054157]\n", + " [-0.14386294 0.04645746 0.98850653]\n", + " [-0.15160047 0.07519457 0.98557753]\n", + " [-0.15922455 0.10396638 0.98175279]\n", + " [-0.2946557 -0.12976055 0.94675246]\n", + " [-0.30570403 -0.09813986 0.94705523]\n", + " [-0.31645057 -0.06563972 0.94633528]\n", + " [-0.32682802 -0.0324642 0.94452608]\n", + " [-0.33677161 0.00118461 0.94158562]\n", + " [-0.34621979 0.03510561 0.93749637]\n", + " [-0.27997964 -0.1381676 0.95001111]\n", + " [-0.24887787 -0.13067746 0.9596787 ]\n", + " [-0.21682377 -0.12265934 0.96847413]\n", + " [-0.18399572 -0.11417716 0.97627309]\n", + " [-0.15057699 -0.10529127 0.98297524]\n", + " [-0.11675646 -0.09605962 0.98850416]\n", + " [-0.3385714 0.05051651 0.93958368]\n", + " [-0.30700168 0.06031327 0.94979591]\n", + " [-0.27435276 0.07025592 0.95905926]\n", + " [-0.24079461 0.08028123 0.96725016]\n", + " [-0.20650654 0.09032691 0.97426695]\n", + " [-0.17167995 0.10033089 0.98003046]\n", + " [-0.10812575 -0.08117181 0.99081782]\n", + " [-0.11773146 -0.04780106 0.99189433]\n", + " [-0.12738657 -0.01365959 0.99175908]\n", + " [-0.13702687 0.02105558 0.99034353]\n", + " [-0.14658985 0.05614348 0.98760282]\n", + " [-0.15601443 0.09139721 0.98351718]\n", + " [-0.2906971 -0.14067271 0.94641766]\n", + " [-0.2906971 -0.14067271 0.94641766]\n", + " [-0.15929675 0.10384037 0.98175441]\n", + " [-0.15929675 0.10384037 0.98175441]\n", + " [-0.28391025 -0.12719215 0.95037736]\n", + " [-0.25272324 -0.11953964 0.96012564]\n", + " [-0.22057487 -0.11138425 0.96898931]\n", + " [-0.18764316 -0.1027895 0.97684408]\n", + " [-0.15411118 -0.09381528 0.98358957]\n", + " [-0.12016805 -0.08451918 0.9891492 ]\n", + " [-0.29489336 -0.09539764 0.95075612]\n", + " [-0.26350548 -0.08730055 0.96069947]\n", + " [-0.23113134 -0.07877086 0.96972855]\n", + " [-0.19794742 -0.06987082 0.97771923]\n", + " [-0.16413619 -0.06065908 0.98457086]\n", + " [-0.12988753 -0.05119256 0.99020632]\n", + " [-0.30559562 -0.06273163 0.95009266]\n", + " [-0.2740671 -0.05421152 0.96018141]\n", + " [-0.24152829 -0.04532737 0.96933457]\n", + " [-0.20815387 -0.03614036 0.97742818]\n", + " [-0.1741256 -0.02670857 0.98436118]\n", + " [-0.13963412 -0.01708902 0.99005569]\n", + " [-0.31594956 -0.02939771 0.94832044]\n", + " [-0.28434016 -0.02047432 0.95850481]\n", + " [-0.25169767 -0.01125356 0.96774048]\n", + " [-0.21819493 -0.0017963 0.97590355]\n", + " [-0.18401294 0.00783901 0.98289256]\n", + " [-0.14934301 0.01759451 0.9886289 ]\n", + " [-0.32589006 0.00440237 0.94539742]\n", + " [-0.2942586 0.01371021 0.95562749]\n", + " [-0.26157295 0.02325032 0.96490363]\n", + " [-0.22800441 0.03296127 0.97310202]\n", + " [-0.19373319 0.04278339 0.98012093]\n", + " [-0.15895092 0.05265724 0.98588124]\n", + " [-0.33535511 0.0384674 0.94130612]\n", + " [-0.30375926 0.04814026 0.95153183]\n", + " [-0.27109031 0.05798143 0.96080602]\n", + " [-0.23751846 0.06792821 0.96900503]\n", + " [-0.20322324 0.07791903 0.97602712]\n", + " [-0.16839619 0.08789255 0.98179306]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:cartToSphere: vec: [[-0.61045186 0.25872142 -0.74860654]\n", + " [-0.63045127 0.24527591 -0.73645836]\n", + " [-0.65035427 0.23123383 -0.72358154]\n", + " [-0.67005165 0.21665952 -0.70999257]\n", + " [-0.68944174 0.2016158 -0.69571629]\n", + " [-0.70842995 0.1861646 -0.68078612]\n", + " [-0.72692856 0.17036775 -0.66524409]\n", + " [-0.74485678 0.15428754 -0.64914077]\n", + " [-0.61045186 0.25872142 -0.74860654]\n", + " [-0.60131741 0.23775795 -0.76281618]\n", + " [-0.59164818 0.21607265 -0.77670139]\n", + " [-0.58144803 0.1937597 -0.79017426]\n", + " [-0.57072874 0.17091172 -0.80315496]\n", + " [-0.55951009 0.14762055 -0.81557135]\n", + " [-0.54781974 0.12397815 -0.82735902]\n", + " [-0.53569302 0.10007717 -0.83846142]\n", + " [-0.74485678 0.15428754 -0.64914077]\n", + " [-0.73683753 0.13152989 -0.66315182]\n", + " [-0.72806394 0.1081974 -0.6769167 ]\n", + " [-0.71853782 0.0843779 -0.69035047]\n", + " [-0.70826837 0.06015995 -0.70337522]\n", + " [-0.697273 0.03563453 -0.71591937]\n", + " [-0.68557802 0.01089583 -0.72791762]\n", + " [-0.67321885 -0.01395894 -0.73931152]\n", + " [-0.53569302 0.10007717 -0.83846142]\n", + " [-0.555985 0.08462222 -0.82687348]\n", + " [-0.57622741 0.06878717 -0.81438953]\n", + " [-0.5963156 0.05263177 -0.80102285]\n", + " [-0.61615067 0.03621639 -0.78679522]\n", + " [-0.63563841 0.01960305 -0.77173799]\n", + " [-0.65468923 0.00285592 -0.75589275]\n", + " [-0.67321885 -0.01395894 -0.73931152]\n", + " [-0.61914616 0.25286577 -0.74344935]\n", + " [-0.64360756 0.23597605 -0.7280691 ]\n", + " [-0.66781478 0.21825452 -0.71160971]\n", + " [-0.69157755 0.19981743 -0.69411345]\n", + " [-0.71472171 0.18077889 -0.67564182]\n", + " [-0.73708862 0.1612529 -0.65627575]\n", + " [-0.60660357 0.24963069 -0.75479575]\n", + " [-0.59504927 0.22343889 -0.77200481]\n", + " [-0.5826945 0.19625676 -0.78863832]\n", + " [-0.56955762 0.16825541 -0.80454598]\n", + " [-0.55567504 0.139604 -0.819595 ]\n", + " [-0.54110089 0.11047213 -0.83367004]\n", + " [-0.74139245 0.14449709 -0.65533032]\n", + " [-0.73105628 0.11620818 -0.67234841]\n", + " [-0.7195882 0.08714303 -0.6889114 ]\n", + " [-0.70700204 0.05746425 -0.70487302]\n", + " [-0.69332995 0.02733944 -0.72010148]\n", + " [-0.67862414 -0.00305671 -0.73447936]\n", + " [-0.54458182 0.09347174 -0.83348286]\n", + " [-0.56943227 0.07426781 -0.81867648]\n", + " [-0.59410351 0.05455217 -0.80253665]\n", + " [-0.61841113 0.03443562 -0.7850999 ]\n", + " [-0.64218171 0.01403242 -0.766424 ]\n", + " [-0.66525245 -0.00653851 -0.74658986]\n", + " [-0.61048996 0.25860618 -0.74861529]\n", + " [-0.61048996 0.25860618 -0.74861529]\n", + " [-0.67319981 -0.01381632 -0.73933154]\n", + " [-0.67319981 -0.01381632 -0.73933154]\n", + " [-0.61529199 0.24382164 -0.74964443]\n", + " [-0.60381119 0.21744573 -0.76689595]\n", + " [-0.59150359 0.19009411 -0.78357369]\n", + " [-0.57838767 0.16193681 -0.79952747]\n", + " [-0.56450002 0.13314224 -0.81462438]\n", + " [-0.5498951 0.1038798 -0.82874867]\n", + " [-0.63984385 0.22675222 -0.734291 ]\n", + " [-0.62857169 0.199896 -0.75162438]\n", + " [-0.61640228 0.17210407 -0.7683934 ]\n", + " [-0.60335414 0.14354336 -0.78444827]\n", + " [-0.58946414 0.11438053 -0.79965563]\n", + " [-0.57478735 0.08478487 -0.81389866]\n", + " [-0.66414067 0.20887224 -0.71783672]\n", + " [-0.65307909 0.18159456 -0.73519461]\n", + " [-0.64105604 0.15341908 -0.75200381]\n", + " [-0.62808957 0.12451018 -0.76811504]\n", + " [-0.61421618 0.09503347 -0.78339461]\n", + " [-0.59949104 0.06515896 -0.79772476]\n", + " [-0.68799254 0.19029698 -0.70032373]\n", + " [-0.67714455 0.16265393 -0.71764821]\n", + " [-0.66527709 0.13414957 -0.73444556]\n", + " [-0.65240719 0.10494657 -0.75056717]\n", + " [-0.63857041 0.07521042 -0.76587938]\n", + " [-0.62382146 0.04511237 -0.78026384]\n", + " [-0.71122531 0.17113978 -0.68181356]\n", + " [-0.70059381 0.14318572 -0.69904661]\n", + " [-0.68889097 0.11440626 -0.7157796 ]\n", + " [-0.67613247 0.08496343 -0.73186481]\n", + " [-0.66235249 0.05502332 -0.74716906]\n", + " [-0.64760486 0.02475867 -0.76157399]\n", + " [-0.73368 0.15151431 -0.66238741]\n", + " [-0.72326671 0.12330316 -0.67947156]\n", + " [-0.71173627 0.0943028 -0.69608797]\n", + " [-0.69910294 0.06467557 -0.71208999]\n", + " [-0.68539939 0.03458862 -0.72734538]\n", + " [-0.67067828 0.00421618 -0.74173639]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:fp_optics: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:fp_optics: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:cartToSphere: vec: [[0.00592601 0.91204718 0.41004247]\n", + " [0.0339368 0.9115057 0.40988492]\n", + " [0.06247606 0.91021685 0.40939228]\n", + " [0.09142877 0.90814581 0.40854862]\n", + " [0.12068042 0.90526713 0.40734218]\n", + " [0.15011523 0.90156514 0.4057656 ]\n", + " [0.17961555 0.89703445 0.4038161 ]\n", + " [0.20906246 0.89168046 0.40149576]\n", + " [0.00592601 0.91204718 0.41004247]\n", + " [0.00590538 0.89976076 0.43634356]\n", + " [0.00597842 0.88675813 0.46219507]\n", + " [0.00614775 0.87310068 0.48750119]\n", + " [0.00641791 0.85885927 0.51217142]\n", + " [0.00679596 0.84411417 0.5361204 ]\n", + " [0.007292 0.82895522 0.55926744]\n", + " [0.00791962 0.81348234 0.58153569]\n", + " [0.20906246 0.89168046 0.40149576]\n", + " [0.20888933 0.87896721 0.42869791]\n", + " [0.20853162 0.86550574 0.4554277 ]\n", + " [0.20799341 0.85136051 0.4815849 ]\n", + " [0.20728115 0.83660462 0.50707715]\n", + " [0.20640355 0.82131895 0.53182023]\n", + " [0.20537155 0.805592 0.55573739]\n", + " [0.20419825 0.78952045 0.57875776]\n", + " [0.00791962 0.81348234 0.58153569]\n", + " [0.03491773 0.81186312 0.58280273]\n", + " [0.06246189 0.80968253 0.58353468]\n", + " [0.09043022 0.80690632 0.58371617]\n", + " [0.11870396 0.80351065 0.58333525]\n", + " [0.14716645 0.79948187 0.5823837 ]\n", + " [0.1757025 0.79481639 0.58085759]\n", + " [0.20419825 0.78952045 0.57875776]\n", + " [0.01806615 0.91185948 0.41010474]\n", + " [0.0527662 0.91069771 0.40968941]\n", + " [0.08814559 0.90837782 0.40875432]\n", + " [0.12399339 0.90484906 0.40727608]\n", + " [0.16009639 0.90008265 0.40524113]\n", + " [0.19623742 0.89407313 0.40264638]\n", + " [0.00600034 0.90678106 0.42155915]\n", + " [0.00603764 0.89123342 0.45350473]\n", + " [0.00621787 0.87466989 0.4846792 ]\n", + " [0.00654855 0.857217 0.51491371]\n", + " [0.00704273 0.83902253 0.5440511 ]\n", + " [0.00772047 0.82025605 0.57194441]\n", + " [0.20890937 0.88625287 0.41341591]\n", + " [0.20857285 0.87016069 0.44645015]\n", + " [0.20796307 0.85300769 0.47867447]\n", + " [0.20709092 0.83492487 0.5099155 ]\n", + " [0.20597243 0.81606113 0.54001813]\n", + " [0.20462862 0.79658275 0.56884361]\n", + " [0.01961386 0.8128964 0.58207794]\n", + " [0.05308677 0.81054003 0.58327237]\n", + " [0.08725839 0.80730509 0.58364755]\n", + " [0.12190881 0.80314338 0.58318004]\n", + " [0.15682319 0.79802976 0.58185479]\n", + " [0.19179003 0.7919617 0.57966649]\n", + " [0.00602054 0.91200582 0.41013308]\n", + " [0.00602054 0.91200582 0.41013308]\n", + " [0.20410523 0.78959505 0.57868879]\n", + " [0.20410523 0.78959505 0.57868879]\n", + " [0.01804389 0.90661379 0.42157545]\n", + " [0.01805775 0.89099999 0.45364405]\n", + " [0.01818825 0.8743605 0.48493598]\n", + " [0.01844252 0.85682209 0.51528224]\n", + " [0.01883299 0.8385325 0.544526 ]\n", + " [0.01937907 0.81966096 0.57252106]\n", + " [0.05273822 0.90539943 0.42127254]\n", + " [0.05268636 0.88962062 0.45365108]\n", + " [0.05267765 0.87279339 0.48523887]\n", + " [0.05271844 0.8550455 0.51586622]\n", + " [0.05281991 0.83652485 0.54537715]\n", + " [0.05299989 0.81739975 0.57362763]\n", + " [0.08811194 0.90303708 0.42042874]\n", + " [0.08799469 0.88712685 0.45305947]\n", + " [0.0878477 0.87015292 0.48488831]\n", + " [0.08767729 0.85224424 0.51574456]\n", + " [0.08749433 0.83354911 0.54547284]\n", + " [0.0873159 0.81423518 0.57393119]\n", + " [0.1239541 0.89947628 0.41902004]\n", + " [0.12377127 0.88346925 0.45184374]\n", + " [0.1234858 0.86639064 0.48385795]\n", + " [0.12310476 0.84837052 0.51489094]\n", + " [0.12263974 0.82955767 0.54478764]\n", + " [0.12210806 0.81011925 0.57340773]\n", + " [0.1600515 0.8946886 0.41703217]\n", + " [0.15980296 0.87862051 0.4499878 ]\n", + " [0.15937887 0.86148041 0.48213057]\n", + " [0.15878767 0.84339913 0.51328782]\n", + " [0.15804252 0.82452574 0.54330457]\n", + " [0.15716192 0.80502704 0.57204161]\n", + " [0.196187 0.8886689 0.4144614 ]\n", + " [0.19587323 0.87257645 0.44748633]\n", + " [0.19531148 0.85541896 0.47969972]\n", + " [0.19451198 0.83732751 0.5109283 ]\n", + " [0.19348998 0.81845111 0.54101702]\n", + " [0.19226577 0.79895616 0.5698271 ]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:fp_optics: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:cartToSphere: vec: [[0.94462939 0.13852227 0.29746746]\n", + " [0.93708878 0.16148449 0.30949536]\n", + " [0.92871673 0.18488426 0.32140791]\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + " [0.91950675 0.2086038 0.33315429]\n", + " [0.90946212 0.23253165 0.34468489]\n", + " [0.89859612 0.25656125 0.35595131]\n", + " [0.88693221 0.28058995 0.36690672]\n", + " [0.87450407 0.3045186 0.37750636]\n", + " [0.94462939 0.13852227 0.29746746]\n", + " [0.95013692 0.14965497 0.2735749 ]\n", + " [0.95501344 0.16105766 0.2490176 ]\n", + " [0.95919997 0.17265792 0.22388538]\n", + " [0.96264717 0.18438993 0.19826948]\n", + " [0.96531521 0.19619328 0.17226357]\n", + " [0.96717397 0.20801195 0.14596419]\n", + " [0.96820321 0.21979368 0.11947083]\n", + " [0.87450407 0.3045186 0.37750636]\n", + " [0.87980265 0.31775788 0.35352118]\n", + " [0.88450259 0.33101655 0.3287601 ]\n", + " [0.88854548 0.34422691 0.3033064 ]\n", + " [0.89188185 0.3573245 0.27724714]\n", + " [0.89447137 0.37024762 0.25067443]\n", + " [0.89628323 0.38293734 0.22368587]\n", + " [0.89729663 0.39533788 0.19638411]\n", + " [0.96820321 0.21979368 0.11947083]\n", + " [0.96083544 0.24453068 0.13038405]\n", + " [0.95254463 0.26956271 0.14140251]\n", + " [0.94332179 0.29477914 0.15247707]\n", + " [0.933168 0.32007146 0.16355959]\n", + " [0.92209516 0.34533238 0.17460258]\n", + " [0.91012647 0.37045586 0.1855593 ]\n", + " [0.89729663 0.39533788 0.19638411]\n", + " [0.94146298 0.14851037 0.30264192]\n", + " [0.93166352 0.17696403 0.31731187]\n", + " [0.92060757 0.205957 0.33175807]\n", + " [0.90829709 0.23528154 0.34588869]\n", + " [0.89475656 0.26474135 0.35961468]\n", + " [0.88003341 0.29414893 0.37285065]\n", + " [0.94707979 0.14341627 0.28717877]\n", + " [0.95341363 0.1572532 0.25743716]\n", + " [0.95873996 0.17142274 0.22678612]\n", + " [0.96296395 0.18580103 0.19539299]\n", + " [0.96601231 0.20027674 0.16343023]\n", + " [0.96783368 0.21474831 0.13107684]\n", + " [0.87692768 0.3102022 0.36711365]\n", + " [0.88302733 0.32644923 0.33718487]\n", + " [0.88816867 0.34265784 0.30617318]\n", + " [0.89225696 0.35870811 0.27423714]\n", + " [0.89521798 0.37448645 0.2415464 ]\n", + " [0.89699914 0.38988565 0.20828279]\n", + " [0.96510126 0.23049525 0.12430405]\n", + " [0.95545219 0.26102502 0.13775721]\n", + " [0.94440669 0.29188777 0.15131931]\n", + " [0.93196252 0.32288295 0.16490134]\n", + " [0.91814166 0.35381305 0.17841588]\n", + " [0.90299158 0.38448364 0.1917773 ]\n", + " [0.94462484 0.13863743 0.29742826]\n", + " [0.94462484 0.13863743 0.29742826]\n", + " [0.89733983 0.39521147 0.19644115]\n", + " [0.89733983 0.39521147 0.19644115]\n", + " [0.94392694 0.15336346 0.29237233]\n", + " [0.95028372 0.16739115 0.26256629]\n", + " [0.95562922 0.18172363 0.23183899]\n", + " [0.95986851 0.19623841 0.20035703]\n", + " [0.96292804 0.21082495 0.1682927 ]\n", + " [0.96475616 0.22538199 0.13582528]\n", + " [0.93414256 0.18201474 0.30699888]\n", + " [0.94053819 0.19654982 0.27704887]\n", + " [0.94591691 0.21131543 0.24614425]\n", + " [0.95018339 0.22619208 0.2144497 ]\n", + " [0.95326336 0.24107068 0.182137 ]\n", + " [0.95510442 0.25585006 0.14938637]\n", + " [0.92308608 0.21118784 0.32142151]\n", + " [0.92948129 0.22618535 0.29138416]\n", + " [0.93486122 0.24134497 0.26035957]\n", + " [0.93913021 0.2565489 0.22851063]\n", + " [0.9422134 0.27168821 0.19600872]\n", + " [0.9440578 0.28666089 0.16303499]\n", + " [0.91075924 0.24067643 0.33554801]\n", + " [0.91711395 0.2560947 0.30547915]\n", + " [0.92246214 0.27161135 0.27439183]\n", + " [0.92670802 0.28710894 0.24244731]\n", + " [0.92977645 0.3024777 0.20981659]\n", + " [0.93161412 0.3176142 0.17668148]\n", + " [0.89718638 0.27028487 0.34928882]\n", + " [0.90346004 0.28608336 0.31924329]\n", + " [0.90874295 0.30192014 0.28815011]\n", + " [0.91293954 0.31767712 0.25616919]\n", + " [0.91597477 0.33324302 0.22347105]\n", + " [0.91779541 0.34851279 0.19023782]\n", + " [0.88241499 0.29982566 0.36255808]\n", + " [0.8885671 0.31596317 0.33258953]\n", + " [0.89375121 0.33208182 0.30154676]\n", + " [0.89787231 0.3480622 0.26958862]\n", + " [0.9008559 0.36379135 0.23688501]\n", + " [0.90264916 0.37916256 0.20361792]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:fp_optics: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:cartToSphere: vec: [[-8.33018437e-01 -5.39918553e-01 -1.20698961e-01]\n", + " [-8.31789724e-01 -5.46961638e-01 -9.46510574e-02]\n", + " [-8.29828732e-01 -5.53855260e-01 -6.80340046e-02]\n", + " [-8.27113607e-01 -5.60540963e-01 -4.09500962e-02]\n", + " [-8.23631509e-01 -5.66964507e-01 -1.35050230e-02]\n", + " [-8.19377849e-01 -5.73078069e-01 1.41939150e-02]\n", + " [-8.14355949e-01 -5.78841213e-01 4.20385384e-02]\n", + " [-8.08577020e-01 -5.84221171e-01 6.99201388e-02]\n", + " [-8.33018437e-01 -5.39918553e-01 -1.20698961e-01]\n", + " [-8.18008462e-01 -5.60384510e-01 -1.29735719e-01]\n", + " [-8.02053539e-01 -5.80916311e-01 -1.38731252e-01]\n", + " [-7.85184092e-01 -6.01402429e-01 -1.47651817e-01]\n", + " [-7.67440572e-01 -6.21734434e-01 -1.56464888e-01]\n", + " [-7.48872184e-01 -6.41809775e-01 -1.65138321e-01]\n", + " [-7.29536389e-01 -6.61532941e-01 -1.73639929e-01]\n", + " [-7.09498769e-01 -6.80815871e-01 -1.81937480e-01]\n", + " [-8.08577020e-01 -5.84221171e-01 6.99201388e-02]\n", + " [-7.92960125e-01 -6.06075148e-01 6.23470619e-02]\n", + " [-7.76383965e-01 -6.27893291e-01 5.45706381e-02]\n", + " [-7.58880835e-01 -6.49558687e-01 4.66196333e-02]\n", + " [-7.40489629e-01 -6.70962816e-01 3.85228357e-02]\n", + " [-7.21257308e-01 -6.92003770e-01 3.03097067e-02]\n", + " [-7.01240647e-01 -7.12584782e-01 2.20110002e-02]\n", + " [-6.80507239e-01 -7.32614039e-01 1.36589667e-02]\n", + " [-7.09498769e-01 -6.80815871e-01 -1.81937480e-01]\n", + " [-7.07278077e-01 -6.89638562e-01 -1.55423213e-01]\n", + " [-7.04436537e-01 -6.98082135e-01 -1.28259493e-01]\n", + " [-7.00955285e-01 -7.06081784e-01 -1.00549503e-01]\n", + " [-6.96822359e-01 -7.13580707e-01 -7.23959613e-02]\n", + " [-6.92033089e-01 -7.20529447e-01 -4.39035388e-02]\n", + " [-6.86590767e-01 -7.26885589e-01 -1.51808794e-02]\n", + " [-6.80507239e-01 -7.32614039e-01 1.36589667e-02]\n", + " [-8.32521097e-01 -5.43074168e-01 -1.09448941e-01]\n", + " [-8.30525579e-01 -5.51614415e-01 -7.71284591e-02]\n", + " [-8.27407415e-01 -5.59871594e-01 -4.40541393e-02]\n", + " [-8.23139282e-01 -5.67743921e-01 -1.04192982e-02]\n", + " [-8.17712697e-01 -5.75143456e-01 2.35786036e-02]\n", + " [-8.11137044e-01 -5.81998942e-01 5.77401749e-02]\n", + " [-8.26588544e-01 -5.48851328e-01 -1.24553599e-01]\n", + " [-8.07553112e-01 -5.73994108e-01 -1.35605067e-01]\n", + " [-7.87127294e-01 -5.99124759e-01 -1.46561066e-01]\n", + " [-7.65381496e-01 -6.24042143e-01 -1.57361269e-01]\n", + " [-7.42406251e-01 -6.48557589e-01 -1.67946457e-01]\n", + " [-7.18310719e-01 -6.72498351e-01 -1.78257339e-01]\n", + " [-8.01908873e-01 -5.93728331e-01 6.65494332e-02]\n", + " [-7.82120152e-01 -6.20503529e-01 5.71265057e-02]\n", + " [-7.60921931e-01 -6.47107798e-01 4.74269171e-02]\n", + " [-7.38383046e-01 -6.73337920e-01 3.75036445e-02]\n", + " [-7.14590162e-01 -6.99006107e-01 2.74110066e-02]\n", + " [-6.89652294e-01 -7.23936225e-01 1.72062612e-02]\n", + " [-7.08675291e-01 -6.84639347e-01 -1.70435607e-01]\n", + " [-7.05539508e-01 -6.95205445e-01 -1.37489608e-01]\n", + " [-7.01451560e-01 -7.05136917e-01 -1.03670812e-01]\n", + " [-6.96386556e-01 -7.14325900e-01 -6.91684418e-02]\n", + " [-6.90335976e-01 -7.22681313e-01 -3.41754385e-02]\n", + " [-6.83309414e-01 -7.30128085e-01 1.10629885e-03]\n", + " [-8.32965755e-01 -5.40012577e-01 -1.20641898e-01]\n", + " [-8.32965755e-01 -5.40012577e-01 -1.20641898e-01]\n", + " [-6.80601151e-01 -7.32528099e-01 1.35888906e-02]\n", + " [-6.80601151e-01 -7.32528099e-01 1.35888906e-02]\n", + " [-8.26123799e-01 -5.51974882e-01 -1.13327835e-01]\n", + " [-8.07025255e-01 -5.77286491e-01 -1.24300221e-01]\n", + " [-7.86528505e-01 -6.02572912e-01 -1.35199099e-01]\n", + " [-7.64704802e-01 -6.27631036e-01 -1.45965230e-01]\n", + " [-7.41644883e-01 -6.52271560e-01 -1.56539703e-01]\n", + " [-7.17457978e-01 -6.76321503e-01 -1.66863040e-01]\n", + " [-8.24073333e-01 -5.60675630e-01 -8.09072251e-02]\n", + " [-8.04806272e-01 -5.86420812e-01 -9.16378487e-02]\n", + " [-7.84124714e-01 -6.12103659e-01 -1.02359875e-01]\n", + " [-7.62100997e-01 -6.37518206e-01 -1.13015962e-01]\n", + " [-7.38825547e-01 -6.62474809e-01 -1.23547314e-01]\n", + " [-7.14407427e-01 -6.86800236e-01 -1.33893480e-01]\n", + " [-8.20904283e-01 -5.69068170e-01 -4.77239500e-02]\n", + " [-8.01486305e-01 -5.95175300e-01 -5.81899080e-02]\n", + " [-7.80645009e-01 -6.21185772e-01 -6.87139554e-02]\n", + " [-7.58452287e-01 -6.46893505e-01 -7.92396445e-02]\n", + " [-7.34997398e-01 -6.72109586e-01 -8.97080179e-02]\n", + " [-7.10389042e-01 -6.96660502e-01 -1.00057754e-01]\n", + " [-8.16590150e-01 -5.77048784e-01 -1.39723872e-02]\n", + " [-7.97040088e-01 -6.03443266e-01 -2.41520641e-02]\n", + " [-7.76064196e-01 -6.29711938e-01 -3.44563294e-02]\n", + " [-7.53733139e-01 -6.55649811e-01 -4.48294719e-02]\n", + " [-7.30134803e-01 -6.81068792e-01 -5.52129524e-02]\n", + " [-7.05377639e-01 -7.05794718e-01 -6.55454218e-02]\n", + " [-8.11122653e-01 -5.84528899e-01 2.01496320e-02]\n", + " [-7.91459091e-01 -6.11135726e-01 1.02777158e-02]\n", + " [-7.70372881e-01 -6.37593583e-01 2.15824688e-04]\n", + " [-7.47933473e-01 -6.63698646e-01 -9.98135289e-03]\n", + " [-7.24227741e-01 -6.89263265e-01 -2.02566238e-02]\n", + " [-6.99364171e-01 -7.14112364e-01 -3.05497616e-02]\n", + " [-8.04511095e-01 -5.91437169e-01 5.44423825e-02]\n", + " [-7.84751922e-01 -6.18181614e-01 4.48989138e-02]\n", + " [-7.63578829e-01 -6.44759857e-01 3.51012562e-02]\n", + " [-7.41060659e-01 -6.70968663e-01 2.51028286e-02]\n", + " [-7.17283987e-01 -6.96620354e-01 1.49587500e-02]\n", + " [-6.92357648e-01 -7.21539009e-01 4.72715222e-03]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:fp_optics: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:cartToSphere: vec: [[-0.85738315 -0.08209753 0.5080887 ]\n", + " [-0.84323898 -0.09366306 0.52931584]\n", + " [-0.82813183 -0.10538221 0.55053815]\n", + " [-0.81208487 -0.11720428 0.5716479 ]\n", + " [-0.79512976 -0.12907961 0.59254293]\n", + " [-0.77730798 -0.14095883 0.61312552]\n", + " [-0.75867165 -0.15279273 0.63330223]\n", + " [-0.73928363 -0.16453244 0.65298453]\n", + " [-0.85738315 -0.08209753 0.5080887 ]\n", + " [-0.86127089 -0.10839999 0.49644928]\n", + " [-0.86437525 -0.13456727 0.48450704]\n", + " [-0.86669299 -0.16049964 0.47231677]\n", + " [-0.86822934 -0.1860999 0.45993983]\n", + " [-0.86899762 -0.21127349 0.44744458]\n", + " [-0.86901885 -0.23592822 0.43490702]\n", + " [-0.86832153 -0.25997364 0.42241144]\n", + " [-0.73928363 -0.16453244 0.65298453]\n", + " [-0.74337745 -0.19167662 0.64081982]\n", + " [-0.74678929 -0.21856084 0.62812173]\n", + " [-0.74951528 -0.24508131 0.61494877]\n", + " [-0.75156045 -0.27113939 0.60136538]\n", + " [-0.75293834 -0.29664204 0.58744136]\n", + " [-0.75367055 -0.32150126 0.57325181]\n", + " [-0.75378636 -0.34563251 0.5588777 ]\n", + " [-0.86832153 -0.25997364 0.42241144]\n", + " [-0.85458511 -0.27267176 0.44196652]\n", + " [-0.83991487 -0.28530292 0.46167658]\n", + " [-0.824338 -0.29781394 0.48142884]\n", + " [-0.80788936 -0.31015276 0.5011188 ]\n", + " [-0.79061198 -0.32226836 0.52064941]\n", + " [-0.7725575 -0.33411095 0.53993035]\n", + " [-0.75378636 -0.34563251 0.5588777 ]\n", + " [-0.85135049 -0.08720835 0.51729783]\n", + " [-0.83336541 -0.10149376 0.54332414]\n", + " [-0.81395601 -0.1159592 0.56923552]\n", + " [-0.79317701 -0.13051287 0.59484168]\n", + " [-0.77110486 -0.14506386 0.61996271]\n", + " [-0.74783999 -0.15952168 0.64442858]\n", + " [-0.85912733 -0.09361523 0.50312664]\n", + " [-0.86336636 -0.12577422 0.48865056]\n", + " [-0.86642457 -0.15763071 0.47377318]\n", + " [-0.86830809 -0.18900466 0.45860473]\n", + " [-0.8690414 -0.21972199 0.44327112]\n", + " [-0.86866631 -0.24961371 0.42791569]\n", + " [-0.74121927 -0.1763526 0.64768337]\n", + " [-0.74577886 -0.20945903 0.63240873]\n", + " [-0.74930914 -0.24207141 0.6163905 ]\n", + " [-0.75181566 -0.27400597 0.5997449 ]\n", + " [-0.75332331 -0.30509135 0.58260043]\n", + " [-0.75387506 -0.33516709 0.5650977 ]\n", + " [-0.86245211 -0.2654336 0.43095402]\n", + " [-0.84498533 -0.28095781 0.45504121]\n", + " [-0.82614203 -0.29632863 0.47924804]\n", + " [-0.80598319 -0.31144975 0.50337873]\n", + " [-0.78458807 -0.32622726 0.52725452]\n", + " [-0.7620554 -0.34057021 0.55071181]\n", + " [-0.85735106 -0.08222682 0.50812194]\n", + " [-0.85735106 -0.08222682 0.50812194]\n", + " [-0.75385232 -0.34551252 0.55886294]\n", + " [-0.75385232 -0.34551252 0.55886294]\n", + " [-0.85313434 -0.09864064 0.51228099]\n", + " [-0.85739682 -0.13091572 0.4977266 ]\n", + " [-0.86048149 -0.16287562 0.48274542]\n", + " [-0.86239479 -0.19433994 0.46744754]\n", + " [-0.86316166 -0.22513465 0.45195833]\n", + " [-0.86282431 -0.25509125 0.43642029]\n", + " [-0.83516876 -0.11303624 0.53825268]\n", + " [-0.83949484 -0.14560061 0.52349677]\n", + " [-0.84265567 -0.17781419 0.50824555]\n", + " [-0.84465844 -0.2094954 0.49260917]\n", + " [-0.84552923 -0.24047039 0.47671197]\n", + " [-0.84531143 -0.2705722 0.46069433]\n", + " [-0.81577592 -0.12759072 0.564119 ]\n", + " [-0.8201618 -0.16038477 0.54919154]\n", + " [-0.82340148 -0.19279296 0.53370486]\n", + " [-0.82550256 -0.2246325 0.51776999]\n", + " [-0.82649187 -0.25572985 0.50151116]\n", + " [-0.82641367 -0.28591968 0.48506739]\n", + " [-0.79501049 -0.14221161 0.58968991]\n", + " [-0.79945262 -0.17517394 0.57462126]\n", + " [-0.80277471 -0.20771619 0.55893358]\n", + " [-0.80498429 -0.23965465 0.5427393 ]\n", + " [-0.80610833 -0.27081621 0.52616342]\n", + " [-0.80619146 -0.30103724 0.50934459]\n", + " [-0.77294881 -0.15680728 0.61478582]\n", + " [-0.77744361 -0.18987466 0.59960742]\n", + " [-0.78085193 -0.2224891 0.58375411]\n", + " [-0.78318077 -0.25446647 0.56734002]\n", + " [-0.78445659 -0.28563431 0.5504915 ]\n", + " [-0.78472372 -0.31583054 0.53334768]\n", + " [-0.7496912 -0.17128663 0.63923704]\n", + " [-0.75423467 -0.20439438 0.62398157]\n", + " [-0.75773266 -0.23701838 0.6079996 ]\n", + " [-0.76019115 -0.26897463 0.59140686]\n", + " [-0.76163552 -0.30009149 0.57433129]\n", + " [-0.76210919 -0.33020814 0.55691307]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:fp_optics: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:cartToSphere: vec: [[-0.2691909 -0.28326859 0.92048638]\n", + " [-0.28131805 -0.25941635 0.9238849 ]\n", + " [-0.29335397 -0.23480693 0.92671956]\n", + " [-0.30524858 -0.20954361 0.92893207]\n", + " [-0.31695265 -0.18372809 0.93047569]\n", + " [-0.32841788 -0.15746194 0.93131489]\n", + " [-0.33959723 -0.13084752 0.93142506]\n", + " [-0.35044537 -0.10398842 0.93079238]\n", + " [-0.2691909 -0.28326859 0.92048638]\n", + " [-0.24509449 -0.27539513 0.92956238]\n", + " [-0.22035233 -0.26700096 0.93816594]\n", + " [-0.19505625 -0.25812697 0.94621537]\n", + " [-0.16929923 -0.24881218 0.95364053]\n", + " [-0.14317634 -0.23909488 0.96038231]\n", + " [-0.11678524 -0.22901352 0.96639227]\n", + " [-0.0902262 -0.21860746 0.97163265]\n", + " [-0.35044537 -0.10398842 0.93079238]\n", + " [-0.32624097 -0.09412168 0.94058915]\n", + " [-0.30127967 -0.08397373 0.94983102]\n", + " [-0.27564676 -0.07358131 0.95843865]\n", + " [-0.24943102 -0.06298209 0.96634229]\n", + " [-0.22272607 -0.05221521 0.97348173]\n", + " [-0.1956307 -0.04132145 0.9798067 ]\n", + " [-0.16824845 -0.03034304 0.9852775 ]\n", + " [-0.0902262 -0.21860746 0.97163265]\n", + " [-0.10121375 -0.19321702 0.9759216 ]\n", + " [-0.11233377 -0.16716094 0.97950924]\n", + " [-0.1235379 -0.14053484 0.9823382 ]\n", + " [-0.1347785 -0.11343671 0.98436115]\n", + " [-0.14600825 -0.08596802 0.98554101]\n", + " [-0.15718028 -0.05823401 0.98585149]\n", + " [-0.16824845 -0.03034304 0.9852775 ]\n", + " [-0.27440498 -0.27294223 0.92206531]\n", + " [-0.28921268 -0.2431851 0.92586016]\n", + " [-0.30383361 -0.21239357 0.92874868]\n", + " [-0.31817683 -0.18075546 0.93064008]\n", + " [-0.33215346 -0.14845783 0.93146892]\n", + " [-0.34567756 -0.11568966 0.93119435]\n", + " [-0.25881143 -0.2798218 0.92450874]\n", + " [-0.22883246 -0.26981527 0.93532637]\n", + " [-0.19797462 -0.25906763 0.94535179]\n", + " [-0.16640854 -0.24765148 0.95445112]\n", + " [-0.13430931 -0.23563738 0.96251547]\n", + " [-0.10185782 -0.22309649 0.96946013]\n", + " [-0.33995398 -0.09981593 0.93512998]\n", + " [-0.30976905 -0.08753045 0.94677429]\n", + " [-0.27853175 -0.07485887 0.9575052 ]\n", + " [-0.24640398 -0.06187009 0.96719035]\n", + " [-0.21355812 -0.04863617 0.97571894]\n", + " [-0.18017807 -0.0352328 0.9830028 ]\n", + " [-0.09508872 -0.20766132 0.97356813]\n", + " [-0.1086512 -0.17608353 0.97836062]\n", + " [-0.12236432 -0.14360072 0.98204165]\n", + " [-0.13614009 -0.11039216 0.98451991]\n", + " [-0.14989145 -0.07664472 0.98572721]\n", + " [-0.16353236 -0.04255347 0.98561979]\n", + " [-0.26915127 -0.28316244 0.92053062]\n", + " [-0.26915127 -0.28316244 0.92053062]\n", + " [-0.16830484 -0.03047619 0.98526376]\n", + " [-0.16830484 -0.03047619 0.98526376]\n", + " [-0.26404414 -0.26953819 0.92608307]\n", + " [-0.23399832 -0.25936862 0.93700198]\n", + " [-0.20306201 -0.24848136 0.94711289]\n", + " [-0.17140515 -0.23694776 0.9562824 ]\n", + " [-0.13920262 -0.22483752 0.96440174]\n", + " [-0.10663562 -0.2122214 0.97138608]\n", + " [-0.2788062 -0.23960864 0.9299757 ]\n", + " [-0.24861041 -0.22899616 0.94114485]\n", + " [-0.21749129 -0.21773049 0.9514678 ]\n", + " [-0.18561681 -0.20587998 0.96081207]\n", + " [-0.15316142 -0.19351272 0.96906883]\n", + " [-0.12030729 -0.18069907 0.97615265]\n", + " [-0.29340186 -0.20865397 0.93294098]\n", + " [-0.26311405 -0.19762294 0.94430724]\n", + " [-0.23187052 -0.18600099 0.95479825]\n", + " [-0.19983745 -0.17385478 0.96428186]\n", + " [-0.16718895 -0.16125196 0.97264879]\n", + " [-0.13410811 -0.14826337 0.97981273]\n", + " [-0.30773978 -0.17686065 0.93488852]\n", + " [-0.27741715 -0.16543201 0.94639948]\n", + " [-0.24610754 -0.15347353 0.9570146 ]\n", + " [-0.21397556 -0.14105147 0.96660175]\n", + " [-0.18119492 -0.12823409 0.97505098]\n", + " [-0.14794946 -0.11509337 0.98227515]\n", + " [-0.3217306 -0.14441504 0.93575302]\n", + " [-0.29142935 -0.13260844 0.94735629]\n", + " [-0.26011168 -0.12033281 0.95805111]\n", + " [-0.22794086 -0.10765508 0.9677052 ]\n", + " [-0.19509013 -0.09464487 0.97620807]\n", + " [-0.16174368 -0.08137567 0.9834719 ]\n", + " [-0.33528789 -0.1115061 0.93549368]\n", + " [-0.30506305 -0.09934175 0.94713661]\n", + " [-0.27379476 -0.08676955 0.9578661 ]\n", + " [-0.24164521 -0.07385781 0.9675498 ]\n", + " [-0.20878701 -0.06067793 0.97607693]\n", + " [-0.17540424 -0.04730503 0.98335934]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:fp_optics: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:cartToSphere: vec: [[-0.3612371 -0.53516128 -0.7636165 ]\n", + " [-0.36547891 -0.55576667 -0.74669175]\n", + " [-0.36939792 -0.57642954 -0.72888556]\n", + " [-0.37297122 -0.59703896 -0.71023725]\n", + " [-0.37617991 -0.6174873 -0.69079527]\n", + " [-0.37900802 -0.63767276 -0.67061641]\n", + " [-0.381442 -0.65750053 -0.64976538]\n", + " [-0.38347063 -0.67688321 -0.62831473]\n", + " [-0.3612371 -0.53516128 -0.7636165 ]\n", + " [-0.33605103 -0.54217025 -0.77014358]\n", + " [-0.31008957 -0.54903857 -0.77614503]\n", + " [-0.28344358 -0.55570722 -0.78156844]\n", + " [-0.25620999 -0.56212115 -0.78636903]\n", + " [-0.22848972 -0.56823163 -0.7905095 ]\n", + " [-0.20038688 -0.57399724 -0.79395987]\n", + " [-0.17200841 -0.5793842 -0.79669759]\n", + " [-0.38347063 -0.67688321 -0.62831473]\n", + " [-0.35759431 -0.68569322 -0.63399615]\n", + " [-0.33089943 -0.69413531 -0.63928221]\n", + " [-0.30347929 -0.70214377 -0.64412301]\n", + " [-0.27542837 -0.7096609 -0.64847561]\n", + " [-0.24684462 -0.71663636 -0.65230366]\n", + " [-0.21783181 -0.72302676 -0.65557731]\n", + " [-0.18850044 -0.7287959 -0.65827359]\n", + " [-0.17200841 -0.5793842 -0.79669759]\n", + " [-0.17472356 -0.60141128 -0.7796 ]\n", + " [-0.1773456 -0.62339194 -0.76153202]\n", + " [-0.17985689 -0.64521044 -0.74253282]\n", + " [-0.18224152 -0.66675909 -0.72264815]\n", + " [-0.18448517 -0.68793642 -0.70193212]\n", + " [-0.18657513 -0.70864588 -0.68044892]\n", + " [-0.18850044 -0.7287959 -0.65827359]\n", + " [-0.36303956 -0.54415578 -0.75637079]\n", + " [-0.36802369 -0.56946377 -0.73503032]\n", + " [-0.37249982 -0.59474765 -0.71240376]\n", + " [-0.37643157 -0.61980764 -0.68857662]\n", + " [-0.3797895 -0.64445648 -0.66365336]\n", + " [-0.3825496 -0.66852269 -0.6377564 ]\n", + " [-0.35037141 -0.53830141 -0.76646687]\n", + " [-0.31897004 -0.54680584 -0.77411981]\n", + " [-0.28649338 -0.55503992 -0.78093036]\n", + " [-0.25311753 -0.56290047 -0.78681293]\n", + " [-0.21902822 -0.57029785 -0.7916988 ]\n", + " [-0.18441827 -0.57715903 -0.79553589]\n", + " [-0.37228881 -0.68069939 -0.63091155]\n", + " [-0.34001248 -0.69125758 -0.63761625]\n", + " [-0.30659929 -0.70119706 -0.64367659]\n", + " [-0.27222261 -0.71040834 -0.64901067]\n", + " [-0.23706308 -0.71879864 -0.65355153]\n", + " [-0.20131455 -0.72629109 -0.65724706]\n", + " [-0.17330023 -0.58896817 -0.7893564 ]\n", + " [-0.17656859 -0.61594823 -0.7677443 ]\n", + " [-0.17967918 -0.64274264 -0.74471289]\n", + " [-0.18260199 -0.66914987 -0.72034364]\n", + " [-0.18531069 -0.69498297 -0.69473636]\n", + " [-0.18778256 -0.72006621 -0.66801374]\n", + " [-0.36116741 -0.53525566 -0.76358332]\n", + " [-0.36116741 -0.53525566 -0.76358332]\n", + " [-0.18859486 -0.72870941 -0.65834229]\n", + " [-0.18859486 -0.72870941 -0.65834229]\n", + " [-0.35220761 -0.5472642 -0.75924416]\n", + " [-0.3206981 -0.55593133 -0.76687227]\n", + " [-0.28810611 -0.56430321 -0.7736645 ]\n", + " [-0.25460904 -0.57227465 -0.77953573]\n", + " [-0.220393 -0.57975541 -0.78441736]\n", + " [-0.18565105 -0.58667237 -0.78825708]\n", + " [-0.35710131 -0.57274288 -0.73786465]\n", + " [-0.32532168 -0.58184941 -0.74539725]\n", + " [-0.29244309 -0.59058969 -0.75211758]\n", + " [-0.25864461 -0.59885546 -0.75794136]\n", + " [-0.22411224 -0.60655605 -0.76279975]\n", + " [-0.18903941 -0.61361868 -0.76663956]\n", + " [-0.36150563 -0.59818424 -0.7151848 ]\n", + " [-0.32951304 -0.60769258 -0.72258625]\n", + " [-0.29640903 -0.61676647 -0.7292056 ]\n", + " [-0.26237206 -0.62529696 -0.73495892]\n", + " [-0.22758693 -0.63319375 -0.7397769 ]\n", + " [-0.19224722 -0.64038429 -0.74360538]\n", + " [-0.36538547 -0.62338657 -0.69129056]\n", + " [-0.33323914 -0.63325632 -0.69852567]\n", + " [-0.29997149 -0.64262897 -0.70501427]\n", + " [-0.26575921 -0.65139568 -0.71067272]\n", + " [-0.23078547 -0.65946626 -0.71543156]\n", + " [-0.19524401 -0.66676761 -0.71923621]\n", + " [-0.36871174 -0.64816193 -0.66628655]\n", + " [-0.33647085 -0.65835224 -0.67331991]\n", + " [-0.30310073 -0.66798939 -0.67964706]\n", + " [-0.26877616 -0.67696454 -0.68518493]\n", + " [-0.23367883 -0.68518683 -0.68986463]\n", + " [-0.19800262 -0.69258181 -0.69363203]\n", + " [-0.37146031 -0.67233855 -0.64029533]\n", + " [-0.33918309 -0.68280819 -0.64709181]\n", + " [-0.30577064 -0.69267514 -0.65322697]\n", + " [-0.27139652 -0.70183013 -0.65861855]\n", + " [-0.2362415 -0.71018097 -0.66319902]\n", + " [-0.20049949 -0.7176514 -0.6669156 ]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:cartToSphere: vec: [[ 1.13364966e-01 -9.62062665e-02 9.88884593e-01]\n", + " [ 1.22432468e-01 -6.97087962e-02 9.90025744e-01]\n", + " [ 1.31578851e-01 -4.26322405e-02 9.90388559e-01]\n", + " [ 1.40762390e-01 -1.50815775e-02 9.89928530e-01]\n", + " [ 1.49942709e-01 1.28378540e-02 9.88611336e-01]\n", + " [ 1.59080273e-01 4.10186902e-02 9.86413166e-01]\n", + " [ 1.68136240e-01 6.93508189e-02 9.83321244e-01]\n", + " [ 1.77072668e-01 9.77217644e-02 9.79334328e-01]\n", + " [ 1.13364966e-01 -9.62062665e-02 9.88884593e-01]\n", + " [ 1.40590294e-01 -1.05254151e-01 9.84457177e-01]\n", + " [ 1.67641895e-01 -1.14092341e-01 9.79223740e-01]\n", + " [ 1.94416844e-01 -1.22684894e-01 9.73216578e-01]\n", + " [ 2.20814930e-01 -1.30995445e-01 9.66478639e-01]\n", + " [ 2.46738761e-01 -1.38986771e-01 9.59063429e-01]\n", + " [ 2.72093545e-01 -1.46620314e-01 9.51035008e-01]\n", + " [ 2.96786748e-01 -1.53855951e-01 9.42468022e-01]\n", + " [ 1.77072668e-01 9.77217644e-02 9.79334328e-01]\n", + " [ 2.05172403e-01 8.82200608e-02 9.74741764e-01]\n", + " [ 2.32997419e-01 7.86719805e-02 9.69289906e-01]\n", + " [ 2.60440667e-01 6.91162941e-02 9.63012771e-01]\n", + " [ 2.87400482e-01 5.95917481e-02 9.55954908e-01]\n", + " [ 3.13780919e-01 5.01368847e-02 9.48170780e-01]\n", + " [ 3.39491032e-01 4.07902460e-02 9.39724425e-01]\n", + " [ 3.64443274e-01 3.15909198e-02 9.30689591e-01]\n", + " [ 2.96786748e-01 -1.53855951e-01 9.42468022e-01]\n", + " [ 3.07108090e-01 -1.28815706e-01 9.42916293e-01]\n", + " [ 3.17281522e-01 -1.03110181e-01 9.42709248e-01]\n", + " [ 3.27263165e-01 -7.68490163e-02 9.41803084e-01]\n", + " [ 3.37010507e-01 -5.01406843e-02 9.40164789e-01]\n", + " [ 3.46482372e-01 -2.30929253e-02 9.37772191e-01]\n", + " [ 3.55639158e-01 4.18676298e-03 9.34613963e-01]\n", + " [ 3.64443274e-01 3.15909198e-02 9.30689591e-01]\n", + " [ 1.17399628e-01 -8.47626247e-02 9.89460775e-01]\n", + " [ 1.28572083e-01 -5.18848849e-02 9.90341950e-01]\n", + " [ 1.39821209e-01 -1.82416466e-02 9.90008723e-01]\n", + " [ 1.51072139e-01 1.59734169e-02 9.88393676e-01]\n", + " [ 1.62252072e-01 5.05625700e-02 9.85453039e-01]\n", + " [ 1.73289844e-01 8.53220613e-02 9.81168067e-01]\n", + " [ 1.25281173e-01 -1.00085303e-01 9.87060059e-01]\n", + " [ 1.58545764e-01 -1.11038374e-01 9.81088029e-01]\n", + " [ 1.91446764e-01 -1.21640957e-01 9.73936145e-01]\n", + " [ 2.23798538e-01 -1.31826297e-01 9.65679057e-01]\n", + " [ 2.55421765e-01 -1.41525814e-01 9.56415269e-01]\n", + " [ 2.86142890e-01 -1.50667868e-01 9.46267108e-01]\n", + " [ 1.89320672e-01 9.34902224e-02 9.77454481e-01]\n", + " [ 2.23588705e-01 8.18090639e-02 9.71244237e-01]\n", + " [ 2.57337249e-01 7.00969450e-02 9.63775886e-01]\n", + " [ 2.90376849e-01 5.84252231e-02 9.55127101e-01]\n", + " [ 3.22530786e-01 4.68648712e-02 9.45398104e-01]\n", + " [ 3.53633139e-01 3.54870309e-02 9.34710797e-01]\n", + " [ 3.01218797e-01 -1.43002653e-01 9.42771169e-01]\n", + " [ 3.13774317e-01 -1.11850606e-01 9.42886589e-01]\n", + " [ 3.26064059e-01 -7.98084070e-02 9.41972849e-01]\n", + " [ 3.38009207e-01 -4.70762303e-02 9.39964683e-01]\n", + " [ 3.49533978e-01 -1.38524775e-02 9.36821278e-01]\n", + " [ 3.60566280e-01 1.96649602e-02 9.32526272e-01]\n", + " [ 1.13489071e-01 -9.61480198e-02 9.88876023e-01]\n", + " [ 1.13489071e-01 -9.61480198e-02 9.88876023e-01]\n", + " [ 3.64329869e-01 3.15282762e-02 9.30736114e-01]\n", + " [ 3.64329869e-01 3.15282762e-02 9.30736114e-01]\n", + " [ 1.29237009e-01 -8.87171880e-02 9.87637107e-01]\n", + " [ 1.62623003e-01 -9.97349992e-02 9.81634702e-01]\n", + " [ 1.95634736e-01 -1.10425676e-01 9.74439952e-01]\n", + " [ 2.28086231e-01 -1.20722732e-01 9.66127680e-01]\n", + " [ 2.59798230e-01 -1.30558064e-01 9.56796463e-01]\n", + " [ 2.90597529e-01 -1.39860479e-01 9.46568604e-01]\n", + " [ 1.40523127e-01 -5.58834717e-02 9.88499008e-01]\n", + " [ 1.74212054e-01 -6.70705682e-02 9.82421345e-01]\n", + " [ 2.07496891e-01 -7.79962288e-02 9.75121340e-01]\n", + " [ 2.40190566e-01 -8.85943963e-02 9.66674467e-01]\n", + " [ 2.72114072e-01 -9.87981069e-02 9.57179641e-01]\n", + " [ 3.03095496e-01 -1.08537581e-01 9.46759058e-01]\n", + " [ 1.51863988e-01 -2.22769227e-02 9.88150327e-01]\n", + " [ 1.85794271e-01 -3.36128197e-02 9.82013578e-01]\n", + " [ 2.19291356e-01 -4.47530340e-02 9.74632478e-01]\n", + " [ 2.52167047e-01 -5.56312496e-02 9.66083301e-01]\n", + " [ 2.84242684e-01 -6.61809435e-02 9.56465462e-01]\n", + " [ 3.15347922e-01 -7.63333941e-02 9.45901105e-01]\n", + " [ 1.63184106e-01 1.19089415e-02 9.86523758e-01]\n", + " [ 1.97292483e-01 4.44707407e-04 9.80344571e-01]\n", + " [ 2.30939646e-01 -1.08903854e-02 9.72907128e-01]\n", + " [ 2.63936482e-01 -2.20290349e-02 9.64288471e-01]\n", + " [ 2.96104794e-01 -3.29042393e-02 9.54588530e-01]\n", + " [ 3.27275855e-01 -4.34475251e-02 9.43929461e-01]\n", + " [ 1.74409953e-01 4.64766289e-02 9.83575666e-01]\n", + " [ 2.08631304e-01 3.49051305e-02 9.77371276e-01]\n", + " [ 2.42365085e-01 2.33951862e-02 9.69903001e-01]\n", + " [ 2.75421674e-01 1.20156568e-02 9.61248420e-01]\n", + " [ 3.07623458e-01 8.34875636e-04 9.51507809e-01]\n", + " [ 3.38803164e-01 -1.00780192e-02 9.40803300e-01]\n", + " [ 1.85469740e-01 8.12226493e-02 9.79287423e-01]\n", + " [ 2.19737464e-01 6.95660235e-02 9.73075545e-01]\n", + " [ 2.53493545e-01 5.79026109e-02 9.65602563e-01]\n", + " [ 2.86548387e-01 4.63031152e-02 9.56946207e-01]\n", + " [ 3.18725037e-01 3.48377741e-02 9.47206778e-01]\n", + " [ 3.49857310e-01 2.35771243e-02 9.36506264e-01]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:fp_optics: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:fp_optics: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:cartToSphere: vec: [[-9.97263604e-01 6.33830905e-02 3.80511249e-02]\n", + " [-9.94820677e-01 8.88648521e-02 4.93442842e-02]\n", + " [-9.91526511e-01 1.14785484e-01 6.08232672e-02]\n", + " [-9.87350455e-01 1.41037312e-01 7.24400106e-02]\n", + " [-9.82272000e-01 1.67514097e-01 8.41471657e-02]\n", + " [-9.76281321e-01 1.94109430e-01 9.58973994e-02]\n", + " [-9.69379901e-01 2.20716043e-01 1.07643099e-01]\n", + " [-9.61580996e-01 2.47226166e-01 1.19336542e-01]\n", + " [-9.97263604e-01 6.33830905e-02 3.80511249e-02]\n", + " [-9.96576357e-01 5.16404752e-02 6.45664520e-02]\n", + " [-9.95049422e-01 3.99821737e-02 9.09839157e-02]\n", + " [-9.92700260e-01 2.84569449e-02 1.17202368e-01]\n", + " [-9.89556951e-01 1.71155876e-02 1.43122669e-01]\n", + " [-9.85658040e-01 6.01133482e-03 1.68647832e-01]\n", + " [-9.81052449e-01 -4.79968029e-03 1.93682872e-01]\n", + " [-9.75799432e-01 -1.52581864e-02 2.18134491e-01]\n", + " [-9.61580996e-01 2.47226166e-01 1.19336542e-01]\n", + " [-9.60874420e-01 2.34937480e-01 1.46713085e-01]\n", + " [-9.59307681e-01 2.22480043e-01 1.73871802e-01]\n", + " [-9.56899160e-01 2.09905954e-01 2.00707471e-01]\n", + " [-9.53678041e-01 1.97268659e-01 2.27119506e-01]\n", + " [-9.49683756e-01 1.84622646e-01 2.53012337e-01]\n", + " [-9.44965552e-01 1.72023645e-01 2.78294756e-01]\n", + " [-9.39582394e-01 1.59529322e-01 3.02878392e-01]\n", + " [-9.75799432e-01 -1.52581864e-02 2.18134491e-01]\n", + " [-9.73008685e-01 8.57124030e-03 2.30609262e-01]\n", + " [-9.69454942e-01 3.29629951e-02 2.43044352e-01]\n", + " [-9.65108791e-01 5.78050753e-02 2.55389103e-01]\n", + " [-9.59951342e-01 8.29883769e-02 2.67593628e-01]\n", + " [-9.53974339e-01 1.08406303e-01 2.79608715e-01]\n", + " [-9.47180266e-01 1.33954246e-01 2.91386005e-01]\n", + " [-9.39582394e-01 1.59529322e-01 3.02878392e-01]\n", + " [-9.96299856e-01 7.43918506e-02 4.30400866e-02]\n", + " [-9.92737723e-01 1.05930786e-01 5.70129914e-02]\n", + " [-9.87865446e-01 1.38021757e-01 7.12169645e-02]\n", + " [-9.81641040e-01 1.70468682e-01 8.55645797e-02]\n", + " [-9.74046494e-01 2.03075591e-01 9.99686583e-02]\n", + " [-9.65089417e-01 2.35644743e-01 1.14341472e-01]\n", + " [-9.97060925e-01 5.83420328e-02 4.96560004e-02]\n", + " [-9.95652234e-01 4.40003459e-02 8.21011495e-02]\n", + " [-9.92998401e-01 2.98333680e-02 1.14298493e-01]\n", + " [-9.89146718e-01 1.59337588e-02 1.46064661e-01]\n", + " [-9.84168140e-01 2.39957131e-03 1.77221089e-01]\n", + " [-9.78157019e-01 -1.06645461e-02 2.07593624e-01]\n", + " [-9.61407574e-01 2.41801916e-01 1.31252851e-01]\n", + " [-9.59961364e-01 2.26621130e-01 1.64672534e-01]\n", + " [-9.57240157e-01 2.11238646e-01 1.97660102e-01]\n", + " [-9.53293221e-01 1.95752323e-01 2.30028394e-01]\n", + " [-9.48193097e-01 1.80262486e-01 2.61601391e-01]\n", + " [-9.42034471e-01 1.64872488e-01 2.92212452e-01]\n", + " [-9.74693298e-01 -4.90924505e-03 2.23492446e-01]\n", + " [-9.70764458e-01 2.46900978e-02 2.38760896e-01]\n", + " [-9.65659072e-01 5.50223854e-02 2.53919465e-01]\n", + " [-9.59337982e-01 8.58855587e-02 2.68876007e-01]\n", + " [-9.51786004e-01 1.17083317e-01 2.83539942e-01]\n", + " [-9.43012192e-01 1.48423794e-01 2.97822739e-01]\n", + " [-9.97255749e-01 6.34291096e-02 3.81800975e-02]\n", + " [-9.97255749e-01 6.34291096e-02 3.81800975e-02]\n", + " [-9.39629188e-01 1.59484410e-01 3.02756851e-01]\n", + " [-9.39629188e-01 1.59484410e-01 3.02756851e-01]\n", + " [-9.96103927e-01 6.92828780e-02 5.45605040e-02]\n", + " [-9.94685619e-01 5.48626942e-02 8.71240714e-02]\n", + " [-9.92012691e-01 4.05929209e-02 1.19427954e-01]\n", + " [-9.88132615e-01 2.65660040e-02 1.51288406e-01]\n", + " [-9.83116504e-01 1.28795366e-02 1.82526869e-01]\n", + " [-9.77058784e-01 -3.62286976e-04 2.12969486e-01]\n", + " [-9.92539169e-01 1.00766187e-01 6.86452793e-02]\n", + " [-9.91098566e-01 8.61425255e-02 1.01504176e-01]\n", + " [-9.88381739e-01 7.16018143e-02 1.34069825e-01]\n", + " [-9.84436775e-01 5.72362455e-02 1.66157298e-01]\n", + " [-9.79335320e-01 4.31423100e-02 1.97588135e-01]\n", + " [-9.73172034e-01 2.94226958e-02 2.28189608e-01]\n", + " [-9.87665031e-01 1.32811074e-01 8.29397704e-02]\n", + " [-9.86209639e-01 1.18011582e-01 1.16033680e-01]\n", + " [-9.83464322e-01 1.03228885e-01 1.48800956e-01]\n", + " [-9.79477825e-01 8.85556143e-02 1.81055497e-01]\n", + " [-9.74322389e-01 7.40878405e-02 2.12619083e-01]\n", + " [-9.68092930e-01 5.99270495e-02 2.43320424e-01]\n", + " [-9.81439564e-01 1.65221670e-01 9.73559570e-02]\n", + " [-9.79977216e-01 1.50274150e-01 1.30622877e-01]\n", + " [-9.77219409e-01 1.35277821e-01 1.63530234e-01]\n", + " [-9.73215423e-01 1.20326448e-01 1.95891005e-01]\n", + " [-9.68037980e-01 1.05516577e-01 2.27527409e-01]\n", + " [-9.61782189e-01 9.09492776e-02 2.58269723e-01]\n", + " [-9.73844788e-01 1.97802320e-01 1.11805951e-01]\n", + " [-9.72383647e-01 1.82735380e-01 1.45182037e-01]\n", + " [-9.69629944e-01 1.67554279e-01 1.78166594e-01]\n", + " [-9.65633213e-01 1.52354420e-01 2.10572148e-01]\n", + " [-9.60466368e-01 1.37233633e-01 2.42221563e-01]\n", + " [-9.54224524e-01 1.22293479e-01 2.72946628e-01]\n", + " [-9.64888336e-01 2.30355608e-01 1.26201403e-01]\n", + " [-9.63436756e-01 2.15199078e-01 1.59621349e-01]\n", + " [-9.60704086e-01 1.99863516e-01 1.92619400e-01]\n", + " [-9.56739735e-01 1.84446156e-01 2.25008210e-01]\n", + " [-9.51616413e-01 1.69046635e-01 2.56611453e-01]\n", + " [-9.45428968e-01 1.53767749e-01 2.87262157e-01]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:fp_optics: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:cartToSphere: vec: [[0.40170106 0.72949108 0.55360547]\n", + " [0.37685205 0.7382278 0.55946603]\n", + " [0.35120254 0.74668738 0.56490241]\n", + " [0.32484775 0.75479161 0.56988031]\n", + " [0.29788466 0.76247292 0.57436902]\n", + " [0.2704127 0.76967396 0.57834156]\n", + " [0.24253439 0.77634712 0.58177506]\n", + " [0.21435545 0.78245428 0.58465122]\n", + " [0.40170106 0.72949108 0.55360547]\n", + " [0.40460718 0.74431485 0.53130822]\n", + " [0.4071303 0.75896199 0.50815511]\n", + " [0.40925682 0.77332921 0.48422184]\n", + " [0.41097449 0.78732388 0.45958795]\n", + " [0.41227261 0.80086339 0.43433757]\n", + " [0.41314252 0.81387473 0.40855988]\n", + " [0.41357814 0.82629419 0.38234936]\n", + " [0.21435545 0.78245428 0.58465122]\n", + " [0.21565977 0.79859174 0.56190933]\n", + " [0.21681426 0.81441843 0.53825105]\n", + " [0.21780492 0.82983502 0.51374591]\n", + " [0.21861985 0.84475067 0.4884687 ]\n", + " [0.21924931 0.85908225 0.46250126]\n", + " [0.2196858 0.87275433 0.43593352]\n", + " [0.21992426 0.88569975 0.4088634 ]\n", + " [0.41357814 0.82629419 0.38234936]\n", + " [0.38791946 0.83652596 0.38696616]\n", + " [0.3614369 0.84628788 0.39135687]\n", + " [0.33421888 0.85550415 0.39548752]\n", + " [0.30635763 0.86410775 0.39932793]\n", + " [0.27795094 0.87204002 0.40285168]\n", + " [0.24910304 0.87925095 0.40603625]\n", + " [0.21992426 0.88569975 0.4088634 ]\n", + " [0.39098151 0.7333803 0.55613559]\n", + " [0.35997529 0.74391336 0.56303704]\n", + " [0.32786109 0.75395107 0.56926698]\n", + " [0.29481669 0.76336463 0.5747674 ]\n", + " [0.26102522 0.77204839 0.57948867]\n", + " [0.22667674 0.77991867 0.58339055]\n", + " [0.40293047 0.7359997 0.54401422]\n", + " [0.4062356 0.75406384 0.51610111]\n", + " [0.40895193 0.77175873 0.48697719]\n", + " [0.41105635 0.7889094 0.45678729]\n", + " [0.41252923 0.80536376 0.42568632]\n", + " [0.41335566 0.82099124 0.39384069]\n", + " [0.21503872 0.78950175 0.57484375]\n", + " [0.21653939 0.80908365 0.54634636]\n", + " [0.21780068 0.8280991 0.51654114]\n", + " [0.21879983 0.84637742 0.48556349]\n", + " [0.21951888 0.86376557 0.45356421]\n", + " [0.21994504 0.88012807 0.42071221]\n", + " [0.402497 0.83076624 0.38447837]\n", + " [0.37048464 0.84299993 0.38999005]\n", + " [0.33732235 0.85445168 0.39512778]\n", + " [0.30317819 0.86499445 0.39983445]\n", + " [0.26823233 0.87452032 0.40406141]\n", + " [0.23267922 0.88294102 0.40776897]\n", + " [0.40162813 0.7295722 0.55355148]\n", + " [0.40162813 0.7295722 0.55355148]\n", + " [0.220024 0.88563607 0.40894767]\n", + " [0.220024 0.88563607 0.40894767]\n", + " [0.39224301 0.7398678 0.54657209]\n", + " [0.39544671 0.75808812 0.51857912]\n", + " [0.3980825 0.77591923 0.48936661]\n", + " [0.40012675 0.79318681 0.45907872]\n", + " [0.4015592 0.80973914 0.42786999]\n", + " [0.40236445 0.82544566 0.39590696]\n", + " [0.36111903 0.7505533 0.55341014]\n", + " [0.36403006 0.76917017 0.52522315]\n", + " [0.36643292 0.78734727 0.4957935 ]\n", + " [0.36830256 0.80491203 0.46526321]\n", + " [0.36961732 0.82171339 0.43378583]\n", + " [0.37036072 0.83762037 0.40152839]\n", + " [0.32888342 0.76071791 0.55959267]\n", + " [0.33149179 0.77966484 0.53125881]\n", + " [0.33365229 0.79813016 0.50166164]\n", + " [0.33533903 0.81594258 0.47094101]\n", + " [0.33652977 0.8329511 0.43924957]\n", + " [0.33720763 0.84902379 0.40675499]\n", + " [0.2957132 0.77023339 0.56506126]\n", + " [0.29800651 0.7894454 0.53662658]\n", + " [0.29991291 0.80814208 0.50691087]\n", + " [0.30140654 0.82615286 0.47605204]\n", + " [0.3024655 0.84332628 0.44420199]\n", + " [0.30307336 0.85952917 0.41152903]\n", + " [0.26179111 0.77899447 0.56976577]\n", + " [0.26375598 0.79840725 0.54127501]\n", + " [0.26539581 0.81727842 0.51148906]\n", + " [0.26668563 0.83543757 0.48054432]\n", + " [0.2676048 0.85273255 0.44859211]\n", + " [0.26813809 0.86902897 0.41580117]\n", + " [0.22730732 0.78691762 0.57366545]\n", + " [0.22893107 0.80646682 0.54516221]\n", + " [0.23029284 0.8254549 0.51535368]\n", + " [0.23136922 0.84371131 0.48437538]\n", + " [0.2321415 0.86108319 0.45237823]\n", + " [0.23259618 0.87743527 0.41953113]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:fp_optics: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:cartToSphere: vec: [[-9.33718360e-02 -9.00635520e-02 9.91549422e-01]\n", + " [-1.01061110e-01 -6.31422397e-02 9.92874468e-01]\n", + " [-1.08821074e-01 -3.56393181e-02 9.93422273e-01]\n", + " [-1.16616307e-01 -7.66170405e-03 9.93147489e-01]\n", + " [-1.24412558e-01 2.06833799e-02 9.92014976e-01]\n", + " [-1.32176301e-01 4.92867231e-02 9.90000123e-01]\n", + " [-1.39874583e-01 7.80364011e-02 9.87089368e-01]\n", + " [-1.47475194e-01 1.06818176e-01 9.83280705e-01]\n", + " [-9.33718360e-02 -9.00635520e-02 9.91549422e-01]\n", + " [-6.55819002e-02 -8.21924661e-02 9.94456340e-01]\n", + " [-3.78533451e-02 -7.41839845e-02 9.96525896e-01]\n", + " [-1.02959210e-02 -6.60675685e-02 9.97762031e-01]\n", + " [ 1.69800020e-02 -5.78716140e-02 9.98179621e-01]\n", + " [ 4.38632971e-02 -4.96230245e-02 9.97804373e-01]\n", + " [ 7.02416477e-02 -4.13469354e-02 9.96672736e-01]\n", + " [ 9.60011314e-02 -3.30667149e-02 9.94831833e-01]\n", + " [-1.47475194e-01 1.06818176e-01 9.83280705e-01]\n", + " [-1.18696962e-01 1.14808285e-01 9.86270799e-01]\n", + " [-8.99063410e-02 1.22671346e-01 9.88366628e-01]\n", + " [-6.12183464e-02 1.30377840e-01 9.89572601e-01]\n", + " [-3.27462108e-02 1.37900424e-01 9.89904621e-01]\n", + " [-4.60086340e-03 1.45214021e-01 9.89389570e-01]\n", + " [ 2.31084595e-02 1.52295608e-01 9.88064799e-01]\n", + " [ 5.02726052e-02 1.59123783e-01 9.85977833e-01]\n", + " [ 9.60011314e-02 -3.30667149e-02 9.94831833e-01]\n", + " [ 9.02842612e-02 -6.61045119e-03 9.95894098e-01]\n", + " [ 8.42385752e-02 2.03644878e-02 9.96237497e-01]\n", + " [ 7.79001822e-02 4.77460735e-02 9.95817189e-01]\n", + " [ 7.13030511e-02 7.54232054e-02 9.94599022e-01]\n", + " [ 6.44792094e-02 1.03285330e-01 9.92559606e-01]\n", + " [ 5.74592126e-02 1.31222167e-01 9.89686406e-01]\n", + " [ 5.02726052e-02 1.59123783e-01 9.85977833e-01]\n", + " [-9.66179755e-02 -7.83774180e-02 9.92230793e-01]\n", + " [-1.06093111e-01 -4.49777035e-02 9.93338441e-01]\n", + " [-1.15639252e-01 -1.08107414e-02 9.93232446e-01]\n", + " [-1.25192891e-01 2.39263028e-02 9.91843875e-01]\n", + " [-1.34692294e-01 5.90322895e-02 9.89127482e-01]\n", + " [-1.44077093e-01 9.43001479e-02 9.85063081e-01]\n", + " [-8.12805158e-02 -8.65594993e-02 9.92925441e-01]\n", + " [-4.72475658e-02 -7.68163995e-02 9.95925152e-01]\n", + " [-1.34157524e-02 -6.68964776e-02 9.97669724e-01]\n", + " [ 2.00119838e-02 -5.68524762e-02 9.98182006e-01]\n", + " [ 5.28310127e-02 -4.67338939e-02 9.97509312e-01]\n", + " [ 8.48339041e-02 -3.65862574e-02 9.95723182e-01]\n", + " [-1.34910927e-01 1.10217208e-01 9.84708692e-01]\n", + " [-9.96175435e-02 1.19928435e-01 9.87771996e-01]\n", + " [-6.44200257e-02 1.29419469e-01 9.89495155e-01]\n", + " [-2.95276340e-02 1.38639047e-01 9.89902689e-01]\n", + " [ 4.85534527e-03 1.47540971e-01 9.89044027e-01]\n", + " [ 3.85279491e-02 1.56083554e-01 9.86992159e-01]\n", + " [ 9.34639772e-02 -2.16306785e-02 9.95387663e-01]\n", + " [ 8.62302816e-02 1.11579985e-02 9.96212747e-01]\n", + " [ 7.85389812e-02 4.46143697e-02 9.95912238e-01]\n", + " [ 7.04535077e-02 7.85335309e-02 9.94418819e-01]\n", + " [ 6.20328759e-02 1.12711924e-01 9.91689440e-01]\n", + " [ 5.33328999e-02 1.46946651e-01 9.87705565e-01]\n", + " [-9.33029531e-02 -8.99459554e-02 9.91566581e-01]\n", + " [-9.33029531e-02 -8.99459554e-02 9.91566581e-01]\n", + " [ 5.02055953e-02 1.59005655e-01 9.86000304e-01]\n", + " [ 5.02055953e-02 1.59005655e-01 9.86000304e-01]\n", + " [-8.45480039e-02 -7.49796988e-02 9.93594324e-01]\n", + " [-5.03750962e-02 -6.52209625e-02 9.96598503e-01]\n", + " [-1.63959323e-02 -5.53097642e-02 9.98334615e-01]\n", + " [ 1.71863810e-02 -4.52992739e-02 9.98825612e-01]\n", + " [ 5.01675108e-02 -3.52393559e-02 9.98118935e-01]\n", + " [ 8.23405578e-02 -2.51757099e-02 9.96286212e-01]\n", + " [-9.39034743e-02 -4.15522518e-02 9.94713802e-01]\n", + " [-5.93771839e-02 -3.17609627e-02 9.97730220e-01]\n", + " [-2.50249215e-02 -2.18860199e-02 9.99447225e-01]\n", + " [ 8.94941216e-03 -1.19816034e-02 9.99888168e-01]\n", + " [ 4.23422317e-02 -2.09840982e-03 9.99100962e-01]\n", + " [ 7.49484795e-02 7.71740992e-03 9.97157544e-01]\n", + " [-1.03352420e-01 -7.36387665e-03 9.94617540e-01]\n", + " [-6.85370857e-02 2.44172740e-03 9.97645581e-01]\n", + " [-3.38773764e-02 1.22619396e-02 9.99350773e-01]\n", + " [ 4.21577710e-04 2.20421152e-02 9.99756954e-01]\n", + " [ 3.41565931e-02 3.17313477e-02 9.98912633e-01]\n", + " [ 6.71244580e-02 4.12834773e-02 9.96890155e-01]\n", + " [-1.12831939e-01 2.73880399e-02 9.93236552e-01]\n", + " [-7.77933510e-02 3.71887342e-02 9.96275661e-01]\n", + " [-4.28926179e-02 4.69343445e-02 9.97976648e-01]\n", + " [-8.33633155e-03 5.65704803e-02 9.98363805e-01]\n", + " [ 2.56723065e-02 6.60468510e-02 9.97486214e-01]\n", + " [ 5.89315100e-02 7.53179846e-02 9.95416636e-01]\n", + " [-1.22281046e-01 6.25021484e-02 9.90525531e-01]\n", + " [-8.70869538e-02 7.22781443e-02 9.93575227e-01]\n", + " [-5.20130265e-02 8.19288038e-02 9.95280019e-01]\n", + " [-1.72672535e-02 9.14007093e-02 9.95664478e-01]\n", + " [ 1.69468099e-02 1.00644972e-01 9.94778063e-01]\n", + " [ 5.04281769e-02 1.09617478e-01 9.92693814e-01]\n", + " [-1.31640046e-01 9.77712403e-02 9.86464233e-01]\n", + " [-9.63600827e-02 1.07502778e-01 9.89524071e-01]\n", + " [-6.11823721e-02 1.17038744e-01 9.91240965e-01]\n", + " [-2.63159390e-02 1.26327253e-01 9.91639499e-01]\n", + " [ 8.03512947e-03 1.35321359e-01 9.90769179e-01]\n", + " [ 4.16699756e-02 1.43978722e-01 9.88703060e-01]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:fp_optics: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:cartToSphere: vec: [[-0.53059892 0.09040012 -0.84278859]\n", + " [-0.55085169 0.07486482 -0.83123864]\n", + " [-0.57106135 0.0589612 -0.81878722]\n", + " [-0.59112337 0.04274923 -0.8054475 ]\n", + " [-0.61093896 0.02628953 -0.79124108]\n", + " [-0.63041406 0.00964448 -0.77619913]\n", + " [-0.64945922 -0.0071215 -0.76036307]\n", + " [-0.66799021 -0.02394212 -0.74378482]\n", + " [-0.53059892 0.09040012 -0.84278859]\n", + " [-0.51793703 0.06629153 -0.85284622]\n", + " [-0.50495299 0.04214945 -0.8621171 ]\n", + " [-0.49170571 0.0180674 -0.87057399]\n", + " [-0.47826077 -0.00586195 -0.87819831]\n", + " [-0.46469087 -0.02954703 -0.88497987]\n", + " [-0.45107643 -0.0528972 -0.89091635]\n", + " [-0.43750634 -0.07582222 -0.89601294]\n", + " [-0.66799021 -0.02394212 -0.74378482]\n", + " [-0.65477914 -0.04879563 -0.7542435 ]\n", + " [-0.64102448 -0.07352671 -0.76399047]\n", + " [-0.62678898 -0.0980382 -0.77299682]\n", + " [-0.61214143 -0.12223618 -0.78124335]\n", + " [-0.59715597 -0.14603055 -0.78872037]\n", + " [-0.58191203 -0.16933452 -0.79542706]\n", + " [-0.56649498 -0.19206326 -0.80137079]\n", + " [-0.43750634 -0.07582222 -0.89601294]\n", + " [-0.45605984 -0.09228202 -0.88515165]\n", + " [-0.47473998 -0.10889699 -0.87336326]\n", + " [-0.49343749 -0.12560358 -0.86066438]\n", + " [-0.51205153 -0.14233796 -0.84707918]\n", + " [-0.5304889 -0.15903584 -0.83263986]\n", + " [-0.54866329 -0.17563251 -0.81738719]\n", + " [-0.56649498 -0.19206326 -0.80137079]\n", + " [-0.53938466 0.08359321 -0.83789997]\n", + " [-0.56419061 0.06429705 -0.8231372 ]\n", + " [-0.58882729 0.04450739 -0.80703253]\n", + " [-0.61311057 0.02433552 -0.78962219]\n", + " [-0.63686728 0.00389627 -0.77096361]\n", + " [-0.65993482 -0.01669091 -0.75113743]\n", + " [-0.52519041 0.07984606 -0.84723057]\n", + " [-0.50944766 0.05026341 -0.8590324 ]\n", + " [-0.49327865 0.02072357 -0.86962446]\n", + " [-0.47680135 -0.00860247 -0.87896898]\n", + " [-0.46014966 -0.03754613 -0.88704711]\n", + " [-0.44347512 -0.06594071 -0.89385773]\n", + " [-0.66223833 -0.03472953 -0.74848798]\n", + " [-0.64567385 -0.0651201 -0.76083155]\n", + " [-0.62835467 -0.09523003 -0.7720762 ]\n", + " [-0.61040493 -0.12488504 -0.78218256]\n", + " [-0.59196111 -0.15391916 -0.79113269]\n", + " [-0.57317186 -0.18217354 -0.79892855]\n", + " [-0.4456196 -0.08289794 -0.89137596]\n", + " [-0.46845976 -0.10318328 -0.8774387 ]\n", + " [-0.49138045 -0.12363869 -0.86212454]\n", + " [-0.51419257 -0.14414684 -0.84547483]\n", + " [-0.53672444 -0.16458935 -0.82754893]\n", + " [-0.55881993 -0.18484707 -0.80842554]\n", + " [-0.53062543 0.09026541 -0.84278634]\n", + " [-0.53062543 0.09026541 -0.84278634]\n", + " [-0.56648758 -0.19193078 -0.80140776]\n", + " [-0.56648758 -0.19193078 -0.80140776]\n", + " [-0.53392661 0.07313401 -0.84236203]\n", + " [-0.51810178 0.04344775 -0.85421475]\n", + " [-0.50182593 0.01381859 -0.86485824]\n", + " [-0.48521691 -0.01558206 -0.87425497]\n", + " [-0.4684081 -0.04458551 -0.88238653]\n", + " [-0.4515502 -0.07302542 -0.88925233]\n", + " [-0.55867425 0.05373789 -0.82764444]\n", + " [-0.54263884 0.02379496 -0.83962902]\n", + " [-0.52608599 -0.00604999 -0.85040986]\n", + " [-0.50913372 -0.03562417 -0.85994986]\n", + " [-0.49191445 -0.06475879 -0.86823181]\n", + " [-0.47457675 -0.09328857 -0.87525662]\n", + " [-0.583263 0.0338677 -0.81157701]\n", + " [-0.56704937 0.0037237 -0.82367539]\n", + " [-0.55025665 -0.0262807 -0.83458189]\n", + " [-0.53300384 -0.05597148 -0.8442595 ]\n", + " [-0.51542327 -0.08517991 -0.85269176]\n", + " [-0.49766216 -0.11374207 -0.85988087]\n", + " [-0.60750899 0.01363534 -0.79419576]\n", + " [-0.59115001 -0.01665236 -0.80638971]\n", + " [-0.57415457 -0.04675823 -0.81741067]\n", + " [-0.55664309 -0.07650745 -0.8272213 ]\n", + " [-0.5387487 -0.10573169 -0.83580539]\n", + " [-0.5206182 -0.13426856 -0.84316584]\n", + " [-0.63123941 -0.00684368 -0.77555784]\n", + " [-0.6147691 -0.03721597 -0.78782861]\n", + " [-0.59760905 -0.06736404 -0.79895276]\n", + " [-0.57988137 -0.09711286 -0.80889226]\n", + " [-0.56172052 -0.12629491 -0.81763051]\n", + " [-0.54327372 -0.15474939 -0.82517046]\n", + " [-0.65429204 -0.02744938 -0.75574365]\n", + " [-0.63774572 -0.0578459 -0.76807177]\n", + " [-0.6204608 -0.08797632 -0.77928721]\n", + " [-0.60256096 -0.11766605 -0.789351 ]\n", + " [-0.58418215 -0.14674868 -0.7982456 ]\n", + " [-0.5654726 -0.17506489 -0.80597334]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:fp_optics: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:cartToSphere: vec: [[ 9.68405081e-01 2.24363773e-01 1.08869176e-01]\n", + " [ 9.61042216e-01 2.49143775e-01 1.19688091e-01]\n", + " [ 9.52755998e-01 2.74213450e-01 1.30625386e-01]\n", + " [ 9.43537391e-01 2.99462038e-01 1.41632200e-01]\n", + " [ 9.33387420e-01 3.24780892e-01 1.52660722e-01]\n", + " [ 9.22317934e-01 3.50062552e-01 1.63663794e-01]\n", + " [ 9.10352097e-01 3.75200834e-01 1.74594942e-01]\n", + " [ 8.97524545e-01 4.00091609e-01 1.85408725e-01]\n", + " [ 9.68405081e-01 2.24363773e-01 1.08869176e-01]\n", + " [ 9.68261295e-01 2.36010030e-01 8.22759377e-02]\n", + " [ 9.67281200e-01 2.47508618e-01 5.57365628e-02]\n", + " [ 9.65479389e-01 2.58819872e-01 2.93568137e-02]\n", + " [ 9.62880489e-01 2.69908585e-01 3.24341997e-03]\n", + " [ 9.59518890e-01 2.80744450e-01 -2.24956339e-02]\n", + " [ 9.55438549e-01 2.91302415e-01 -4.77502151e-02]\n", + " [ 9.50692968e-01 3.01562864e-01 -7.24066215e-02]\n", + " [ 8.97524545e-01 4.00091609e-01 1.85408725e-01]\n", + " [ 8.97407824e-01 4.11999200e-01 1.57847574e-01]\n", + " [ 8.96485474e-01 4.23500922e-01 1.30233497e-01]\n", + " [ 8.94772511e-01 4.34556686e-01 1.02677354e-01]\n", + " [ 8.92294168e-01 4.45132131e-01 7.52894612e-02]\n", + " [ 8.89085435e-01 4.55198742e-01 4.81787765e-02]\n", + " [ 8.85190602e-01 4.64733659e-01 2.14528376e-02]\n", + " [ 8.80662992e-01 4.73719152e-01 -4.78128388e-03]\n", + " [ 9.50692968e-01 3.01562864e-01 -7.24066215e-02]\n", + " [ 9.43206089e-01 3.26060406e-01 -6.36151254e-02]\n", + " [ 9.34874594e-01 3.50776885e-01 -5.44524599e-02]\n", + " [ 9.25691881e-01 3.75595752e-01 -4.49707903e-02]\n", + " [ 9.15661089e-01 4.00405343e-01 -3.52183263e-02]\n", + " [ 9.04795372e-01 4.25097936e-01 -2.52404576e-02]\n", + " [ 8.93118111e-01 4.49569364e-01 -1.50806979e-02]\n", + " [ 8.80662992e-01 4.73719152e-01 -4.78128388e-03]\n", + " [ 9.65308348e-01 2.35165281e-01 1.13477239e-01]\n", + " [ 9.55665113e-01 2.65745003e-01 1.26821866e-01]\n", + " [ 9.44624920e-01 2.96649383e-01 1.40295773e-01]\n", + " [ 9.32185442e-01 3.27677610e-01 1.53810551e-01]\n", + " [ 9.18368546e-01 3.58631870e-01 1.67279391e-01]\n", + " [ 9.03221650e-01 3.89317475e-01 1.80617148e-01]\n", + " [ 9.68422110e-01 2.29541294e-01 9.73108953e-02]\n", + " [ 9.67682141e-01 2.43721139e-01 6.47401036e-02]\n", + " [ 9.65699352e-01 2.57639101e-01 3.23551353e-02]\n", + " [ 9.62514926e-01 2.71228487e-01 3.52083366e-04]\n", + " [ 9.58192154e-01 2.84433543e-01 -3.10701581e-02]\n", + " [ 9.52815915e-01 2.97210404e-01 -6.17074438e-02]\n", + " [ 8.97618518e-01 4.05245901e-01 1.73368842e-01]\n", + " [ 8.96932264e-01 4.19572369e-01 1.39540463e-01]\n", + " [ 8.95049621e-01 4.33248926e-01 1.05742823e-01]\n", + " [ 8.92012815e-01 4.46209915e-01 7.21792914e-02]\n", + " [ 8.87886210e-01 4.58402814e-01 3.90504444e-02]\n", + " [ 8.82755096e-01 4.69787702e-01 6.55396934e-03]\n", + " [ 9.47549047e-01 3.12174972e-01 -6.85389623e-02]\n", + " [ 9.37806563e-01 3.42362212e-01 -5.75062219e-02]\n", + " [ 9.26787700e-01 3.72761934e-01 -4.59684774e-02]\n", + " [ 9.14494175e-01 4.03166606e-01 -3.40160643e-02]\n", + " [ 9.00950227e-01 4.33377872e-01 -2.17326469e-02]\n", + " [ 8.86203188e-01 4.63205474e-01 -9.19778746e-03]\n", + " [ 9.68382399e-01 2.24487920e-01 1.08814999e-01]\n", + " [ 9.68382399e-01 2.24487920e-01 1.08814999e-01]\n", + " [ 8.80723356e-01 4.73607449e-01 -4.72794546e-03]\n", + " [ 8.80723356e-01 4.73607449e-01 -4.72794546e-03]\n", + " [ 9.65348238e-01 2.40236589e-01 1.01927233e-01]\n", + " [ 9.64605646e-01 2.54449752e-01 6.92190136e-02]\n", + " [ 9.62615741e-01 2.68374856e-01 3.66861350e-02]\n", + " [ 9.59419958e-01 2.81944799e-01 4.52483280e-03]\n", + " [ 9.55081867e-01 2.95103422e-01 -2.70665319e-02]\n", + " [ 9.49686523e-01 3.07806469e-01 -5.78851008e-02]\n", + " [ 9.55705713e-01 2.70860921e-01 1.15156202e-01]\n", + " [ 9.54959661e-01 2.85151952e-01 8.21000054e-02]\n", + " [ 9.52958535e-01 2.99082445e-01 4.91906714e-02]\n", + " [ 9.49744454e-01 3.12584497e-01 1.66254068e-02]\n", + " [ 9.45381768e-01 3.25601301e-01 -1.53982293e-02]\n", + " [ 9.39956090e-01 3.38087993e-01 -4.66803794e-02]\n", + " [ 9.44666560e-01 3.01800541e-01 1.28536078e-01]\n", + " [ 9.43923218e-01 3.16144115e-01 9.51937929e-02]\n", + " [ 9.41924699e-01 3.30056744e-01 6.19710215e-02]\n", + " [ 9.38713640e-01 3.43470292e-01 2.90665026e-02]\n", + " [ 9.34355003e-01 3.56328067e-01 -3.32209360e-03]\n", + " [ 9.28934877e-01 3.68585429e-01 -3.49967971e-02]\n", + " [ 9.32228472e-01 3.32854351e-01 1.41979073e-01]\n", + " [ 9.31494329e-01 3.47224257e-01 1.08414160e-01]\n", + " [ 9.29512905e-01 3.61094812e-01 7.49419518e-02]\n", + " [ 9.26327087e-01 3.74398168e-01 4.17628966e-02]\n", + " [ 9.22002134e-01 3.87078419e-01 9.07538044e-03]\n", + " [ 9.16624341e-01 3.99091884e-01 -2.29234832e-02]\n", + " [ 9.18413326e-01 3.63824274e-01 1.55399036e-01]\n", + " [ 9.17695047e-01 3.78193811e-01 1.21676796e-01]\n", + " [ 9.15745578e-01 3.91997944e-01 8.80207276e-02]\n", + " [ 9.12607741e-01 4.05169552e-01 5.46328223e-02]\n", + " [ 9.08346692e-01 4.17653992e-01 2.17124401e-02]\n", + " [ 9.03048558e-01 4.29409057e-01 -1.05433825e-02]\n", + " [ 9.03268533e-01 3.94515448e-01 1.68711349e-01]\n", + " [ 9.02572772e-01 4.08857841e-01 1.34898691e-01]\n", + " [ 9.00670118e-01 4.22571747e-01 1.01125947e-01]\n", + " [ 8.97603005e-01 4.35591088e-01 6.75962243e-02]\n", + " [ 8.93436070e-01 4.47862770e-01 3.45098193e-02]\n", + " [ 8.88254884e-01 4.59346274e-01 2.06419361e-03]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:fp_optics: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:cartToSphere: vec: [[-0.70119467 -0.6884313 -0.18544105]\n", + " [-0.69889682 -0.69733367 -0.15896221]\n", + " [-0.69598831 -0.70584797 -0.13182911]\n", + " [-0.69245033 -0.71390922 -0.10414489]\n", + " [-0.6882711 -0.72146036 -0.07601213]\n", + " [-0.68344623 -0.72845153 -0.04753532]\n", + " [-0.67797934 -0.73483992 -0.01882292]\n", + " [-0.67188251 -0.74059007 0.01001214]\n", + " [-0.70119467 -0.6884313 -0.18544105]\n", + " [-0.68029905 -0.70695559 -0.1934089 ]\n", + " [-0.65889194 -0.72485981 -0.20109617]\n", + " [-0.63706493 -0.7420833 -0.20847215]\n", + " [-0.61491652 -0.75857403 -0.21550666]\n", + " [-0.59255174 -0.77428865 -0.22217005]\n", + " [-0.57008155 -0.78919261 -0.2284339 ]\n", + " [-0.54762114 -0.80326045 -0.2342728 ]\n", + " [-0.67188251 -0.74059007 0.01001214]\n", + " [-0.65027673 -0.75969567 0.00162872]\n", + " [-0.628157 -0.77805754 -0.0067267 ]\n", + " [-0.60561916 -0.79561284 -0.01502109]\n", + " [-0.58276328 -0.81231008 -0.02322263]\n", + " [-0.55969329 -0.8281085 -0.03130057]\n", + " [-0.5365183 -0.84297659 -0.03922466]\n", + " [-0.51335451 -0.8568906 -0.04696436]\n", + " [-0.54762114 -0.80326045 -0.2342728 ]\n", + " [-0.54388133 -0.81268135 -0.20914618]\n", + " [-0.53976966 -0.82161339 -0.18330345]\n", + " [-0.53527198 -0.82999013 -0.15684483]\n", + " [-0.53037974 -0.83775288 -0.12987476]\n", + " [-0.52509118 -0.84485093 -0.10249959]\n", + " [-0.51941183 -0.85124163 -0.07482671]\n", + " [-0.51335451 -0.8568906 -0.04696436]\n", + " [-0.70019563 -0.69242055 -0.17401109]\n", + " [-0.69697076 -0.7030796 -0.14110578]\n", + " [-0.69280932 -0.71309017 -0.10732032]\n", + " [-0.68768672 -0.72234395 -0.07284369]\n", + " [-0.68159495 -0.73074913 -0.03786853]\n", + " [-0.67454419 -0.73822991 -0.00259642]\n", + " [-0.69214543 -0.69661123 -0.18885838]\n", + " [-0.6661798 -0.71890631 -0.19843942]\n", + " [-0.63953609 -0.74020866 -0.20756862]\n", + " [-0.61239278 -0.76041889 -0.21619018]\n", + " [-0.58494319 -0.77945724 -0.22424959]\n", + " [-0.55739349 -0.79726384 -0.23169564]\n", + " [-0.66255334 -0.7489886 0.00625698]\n", + " [-0.63571584 -0.77191279 -0.00400293]\n", + " [-0.60820105 -0.79365622 -0.01418765]\n", + " [-0.58019147 -0.81411938 -0.02423809]\n", + " [-0.55187864 -0.83322706 -0.03409758]\n", + " [-0.52346626 -0.85092449 -0.04371032]\n", + " [-0.54611221 -0.8073769 -0.223392 ]\n", + " [-0.54128151 -0.81860325 -0.19210168]\n", + " [-0.53587746 -0.82902848 -0.15983467]\n", + " [-0.52988192 -0.83854132 -0.12678171]\n", + " [-0.5232917 -0.84704842 -0.09313848]\n", + " [-0.51612 -0.85447468 -0.05910305]\n", + " [-0.70111734 -0.68852665 -0.18537943]\n", + " [-0.70111734 -0.68852665 -0.18537943]\n", + " [-0.5134549 -0.85682664 -0.04703372]\n", + " [-0.5134549 -0.85682664 -0.04703372]\n", + " [-0.69118835 -0.70053584 -0.17750548]\n", + " [-0.66511853 -0.72290656 -0.18714554]\n", + " [-0.63836511 -0.74426754 -0.19635637]\n", + " [-0.61110686 -0.76451923 -0.2050823 ]\n", + " [-0.58353748 -0.78358189 -0.21326847]\n", + " [-0.55586417 -0.80139561 -0.22086215]\n", + " [-0.68787471 -0.71127196 -0.14463951]\n", + " [-0.66154475 -0.73383148 -0.15443414]\n", + " [-0.63451966 -0.75533671 -0.16386357]\n", + " [-0.60697906 -0.77568769 -0.17287285]\n", + " [-0.57911689 -0.79480499 -0.18140746]\n", + " [-0.55114154 -0.81262898 -0.18941262]\n", + " [-0.68364149 -0.72134486 -0.11088689]\n", + " [-0.65710346 -0.74405513 -0.12081803]\n", + " [-0.62986497 -0.76567187 -0.1304481 ]\n", + " [-0.60210664 -0.78609487 -0.13972276]\n", + " [-0.57402202 -0.80524543 -0.14858844]\n", + " [-0.54581894 -0.82306483 -0.15699034]\n", + " [-0.67846447 -0.73064589 -0.07643659]\n", + " [-0.65177154 -0.75346791 -0.08648685]\n", + " [-0.6243788 -0.77516268 -0.09630124]\n", + " [-0.59646792 -0.79562998 -0.10582515]\n", + " [-0.56823187 -0.81479218 -0.11500537]\n", + " [-0.53987711 -0.83259195 -0.12378755]\n", + " [-0.67233628 -0.73908271 -0.04148102]\n", + " [-0.64554342 -0.7619762 -0.05163296]\n", + " [-0.61805695 -0.78371491 -0.0616161 ]\n", + " [-0.59005932 -0.80419879 -0.07137444]\n", + " [-0.56174287 -0.82335143 -0.08085398]\n", + " [-0.53331259 -0.84111689 -0.09000031]\n", + " [-0.66526775 -0.74657894 -0.00622149]\n", + " [-0.63843172 -0.76950252 -0.0164567 ]\n", + " [-0.61091331 -0.79125077 -0.02659206]\n", + " [-0.58289516 -0.81172404 -0.03656935]\n", + " [-0.55456899 -0.83084686 -0.04633273]\n", + " [-0.52613873 -0.84856432 -0.05582686]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:fp_optics: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:cartToSphere: vec: [[-7.97635320e-02 -2.14185772e-01 9.73530808e-01]\n", + " [-9.06640924e-02 -1.88751659e-01 9.77830677e-01]\n", + " [-1.01709752e-01 -1.62657897e-01 9.81426276e-01]\n", + " [-1.12852399e-01 -1.36000230e-01 9.84260267e-01]\n", + " [-1.24044706e-01 -1.08876763e-01 9.86285335e-01]\n", + " [-1.35239691e-01 -8.13891513e-02 9.87464446e-01]\n", + " [-1.46390724e-01 -5.36427699e-02 9.87771334e-01]\n", + " [-1.57451856e-01 -2.57460898e-02 9.87190991e-01]\n", + " [-7.97635320e-02 -2.14185772e-01 9.73530808e-01]\n", + " [-5.31408755e-02 -2.03390683e-01 9.77654478e-01]\n", + " [-2.65982879e-02 -1.92370256e-01 9.80961883e-01]\n", + " [-2.41250679e-04 -1.81167416e-01 9.83452240e-01]\n", + " [ 2.58240730e-02 -1.69825357e-01 9.85135760e-01]\n", + " [ 5.14905320e-02 -1.58387041e-01 9.86033605e-01]\n", + " [ 7.66490802e-02 -1.46894800e-01 9.86177893e-01]\n", + " [ 1.01187357e-01 -1.35390181e-01 9.85611799e-01]\n", + " [-1.57451856e-01 -2.57460898e-02 9.87190991e-01]\n", + " [-1.29850304e-01 -1.47188844e-02 9.91424356e-01]\n", + " [-1.02222404e-01 -3.71177445e-03 9.94754645e-01]\n", + " [-7.46787182e-02 7.23169645e-03 9.97181424e-01]\n", + " [-4.73289332e-02 1.80687777e-02 9.98715921e-01]\n", + " [-2.02810703e-02 2.87578241e-02 9.99380641e-01]\n", + " [ 6.35855228e-03 3.92583187e-02 9.99208864e-01]\n", + " [ 3.24843362e-02 4.95305037e-02 9.98244207e-01]\n", + " [ 1.01187357e-01 -1.35390181e-01 9.85611799e-01]\n", + " [ 9.23184620e-02 -1.10141987e-01 9.89619141e-01]\n", + " [ 8.30534052e-02 -8.43335951e-02 9.92970280e-01]\n", + " [ 7.34437751e-02 -5.80670828e-02 9.95607466e-01]\n", + " [ 6.35374631e-02 -3.14442800e-02 9.97483959e-01]\n", + " [ 5.33797991e-02 -4.56774315e-03 9.98563835e-01]\n", + " [ 4.30145105e-02 2.24587955e-02 9.98821983e-01]\n", + " [ 3.24843362e-02 4.95305037e-02 9.98244207e-01]\n", + " [-8.44038180e-02 -2.03146979e-01 9.75503614e-01]\n", + " [-9.78663642e-02 -1.71518924e-01 9.80307826e-01]\n", + " [-1.11499096e-01 -1.38995088e-01 9.83996096e-01]\n", + " [-1.25214606e-01 -1.05755000e-01 9.86477158e-01]\n", + " [-1.38926408e-01 -7.19858260e-02 9.87682891e-01]\n", + " [-1.52548922e-01 -3.78828943e-02 9.87569599e-01]\n", + " [-6.81894294e-02 -2.09423623e-01 9.75444487e-01]\n", + " [-3.56002203e-02 -1.96035970e-01 9.79950265e-01]\n", + " [-3.23595164e-03 -1.82352612e-01 9.83227875e-01]\n", + " [ 2.87082090e-02 -1.68452982e-01 9.85291546e-01]\n", + " [ 6.00349001e-02 -1.54416131e-01 9.86180242e-01]\n", + " [ 9.05420819e-02 -1.40319659e-01 9.85957669e-01]\n", + " [-1.45390195e-01 -2.10340416e-02 9.89150777e-01]\n", + " [-1.11530201e-01 -7.52695178e-03 9.93732539e-01]\n", + " [-7.77406110e-02 5.90680828e-03 9.96956121e-01]\n", + " [-4.42237710e-02 1.91881808e-02 9.98837360e-01]\n", + " [-1.11785358e-02 3.22404973e-02 9.99417626e-01]\n", + " [ 2.11997584e-02 4.49895116e-02 9.98762491e-01]\n", + " [ 9.72894171e-02 -1.24496437e-01 9.87438811e-01]\n", + " [ 8.61450957e-02 -9.31619040e-02 9.91917276e-01]\n", + " [ 7.44576258e-02 -6.10873639e-02 9.95351393e-01]\n", + " [ 6.23166493e-02 -2.84603191e-02 9.97650563e-01]\n", + " [ 4.98057231e-02 4.53037718e-03 9.98748650e-01]\n", + " [ 3.70049213e-02 3.76932777e-02 9.98603952e-01]\n", + " [-7.97094446e-02 -2.14063545e-01 9.73562121e-01]\n", + " [-7.97094446e-02 -2.14063545e-01 9.73562121e-01]\n", + " [ 3.24322353e-02 4.94032748e-02 9.98252206e-01]\n", + " [ 3.24322353e-02 4.94032748e-02 9.98252206e-01]\n", + " [-7.28375912e-02 -1.98490570e-01 9.77392541e-01]\n", + " [-4.01102436e-02 -1.85070605e-01 9.81906329e-01]\n", + " [-7.59759021e-03 -1.71376567e-01 9.85176303e-01]\n", + " [ 2.45050797e-02 -1.57488378e-01 9.87216750e-01]\n", + " [ 5.60009617e-02 -1.43485570e-01 9.88066690e-01]\n", + " [ 8.66893202e-02 -1.29446168e-01 9.87789781e-01]\n", + " [-8.61836150e-02 -1.66821606e-01 9.82213284e-01]\n", + " [-5.31062264e-02 -1.53327041e-01 9.86747459e-01]\n", + " [-2.02155975e-02 -1.39620301e-01 9.89998738e-01]\n", + " [ 1.22920636e-02 -1.25782347e-01 9.91981707e-01]\n", + " [ 4.42208230e-02 -1.11893641e-01 9.92735782e-01]\n", + " [ 7.53730097e-02 -9.80329889e-02 9.92324767e-01]\n", + " [-9.97214645e-02 -1.34265637e-01 9.85914990e-01]\n", + " [-6.63558162e-02 -1.20722476e-01 9.90466047e-01]\n", + " [-3.31499204e-02 -1.07030443e-01 9.93702957e-01]\n", + " [-3.01481812e-04 -9.32709564e-02 9.95640717e-01]\n", + " [ 3.19935130e-02 -7.95246542e-02 9.96319349e-01]\n", + " [ 6.35393479e-02 -6.58703507e-02 9.95803117e-01]\n", + " [-1.13364350e-01 -1.01002471e-01 9.88406306e-01]\n", + " [-7.97737686e-02 -8.74376819e-02 9.92970693e-01]\n", + " [-4.63162495e-02 -7.37889465e-02 9.96197770e-01]\n", + " [-1.31911904e-02 -6.01375506e-02 9.98102934e-01]\n", + " [ 1.94047449e-02 -4.65635736e-02 9.98726834e-01]\n", + " [ 5.12767518e-02 -3.31450617e-02 9.98134309e-01]\n", + " [-1.27026444e-01 -6.72195156e-02 9.89619027e-01]\n", + " [-9.32760918e-02 -5.36606082e-02 9.94193195e-01]\n", + " [-5.96321462e-02 -4.00840756e-02 9.97415297e-01]\n", + " [-2.62955494e-02 -2.65705403e-02 9.99301031e-01]\n", + " [ 6.53607620e-03 -1.31989101e-02 9.99891528e-01]\n", + " [ 3.86680363e-02 -4.58446290e-05 9.99252111e-01]\n", + " [-1.40622702e-01 -3.31122639e-02 9.89509390e-01]\n", + " [-1.06779363e-01 -1.95868276e-02 9.94089797e-01]\n", + " [-7.30157948e-02 -6.11093941e-03 9.97312063e-01]\n", + " [-3.95340757e-02 7.23587475e-03 9.99192023e-01]\n", + " [-6.53277152e-03 2.03763141e-02 9.99771038e-01]\n", + " [ 2.57930086e-02 3.32354778e-02 9.99114670e-01]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:fp_optics: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:cartToSphere: vec: [[-0.53690414 -0.05121195 0.84208745]\n", + " [-0.51459845 -0.05850178 0.85543321]\n", + " [-0.49147264 -0.06605217 0.86838457]\n", + " [-0.46760248 -0.07381119 0.88085176]\n", + " [-0.44306746 -0.08173221 0.89275477]\n", + " [-0.41795168 -0.08977293 0.90402279]\n", + " [-0.39234441 -0.09789445 0.9145942 ]\n", + " [-0.36634009 -0.10606067 0.92441661]\n", + " [-0.53690414 -0.05121195 0.84208745]\n", + " [-0.54435057 -0.07620807 0.835389 ]\n", + " [-0.55142559 -0.10174535 0.82799619]\n", + " [-0.55808794 -0.12770163 0.81989642]\n", + " [-0.56429971 -0.15396007 0.81108701]\n", + " [-0.57002652 -0.18040766 0.80157523]\n", + " [-0.57523802 -0.20693414 0.79137822]\n", + " [-0.57990837 -0.23343161 0.78052288]\n", + " [-0.36634009 -0.10606067 0.92441661]\n", + " [-0.37256217 -0.13260744 0.91848391]\n", + " [-0.37861052 -0.15959432 0.91169278]\n", + " [-0.38444429 -0.18690698 0.90402896]\n", + " [-0.39002639 -0.21443242 0.89548766]\n", + " [-0.39532329 -0.24205764 0.88607426]\n", + " [-0.40030526 -0.26966946 0.87580482]\n", + " [-0.40494662 -0.29715522 0.86470631]\n", + " [-0.57990837 -0.23343161 0.78052288]\n", + " [-0.55723043 -0.24278105 0.7940728 ]\n", + " [-0.53365321 -0.25212505 0.80724669]\n", + " [-0.50924622 -0.26141528 0.81995752]\n", + " [-0.48408516 -0.27060593 0.83212618]\n", + " [-0.45825313 -0.27965334 0.84368127]\n", + " [-0.43184092 -0.28851607 0.85455948]\n", + " [-0.40494662 -0.29715522 0.86470631]\n", + " [-0.52731019 -0.0544397 0.84792705]\n", + " [-0.49941076 -0.06355767 0.86403085]\n", + " [-0.47035432 -0.07301458 0.87945192]\n", + " [-0.4402856 -0.08272244 0.89403892]\n", + " [-0.40935951 -0.09260327 0.90766152]\n", + " [-0.37774252 -0.10258664 0.92021007]\n", + " [-0.5401187 -0.0620607 0.83929748]\n", + " [-0.5490002 -0.0930772 0.83062351]\n", + " [-0.55728256 -0.12478442 0.8208928 ]\n", + " [-0.56489461 -0.15696513 0.81009631]\n", + " [-0.57177313 -0.18941117 0.79824739]\n", + " [-0.57786409 -0.22192054 0.78538167]\n", + " [-0.36916137 -0.11754552 0.9219018 ]\n", + " [-0.37667658 -0.15039149 0.91405533]\n", + " [-0.38388967 -0.18378474 0.90490435]\n", + " [-0.39073078 -0.21751677 0.89443609]\n", + " [-0.39713824 -0.25137955 0.88266049]\n", + " [-0.40305896 -0.28516489 0.86961167]\n", + " [-0.57012045 -0.23741465 0.78650935]\n", + " [-0.54171298 -0.248875 0.80287501]\n", + " [-0.51202326 -0.26027903 0.81858842]\n", + " [-0.48118799 -0.2715414 0.83350068]\n", + " [-0.44936018 -0.28258172 0.84748038]\n", + " [-0.41671007 -0.29332476 0.86041461]\n", + " [-0.53685539 -0.05132079 0.84211191]\n", + " [-0.53685539 -0.05132079 0.84211191]\n", + " [-0.40502403 -0.29703245 0.86471224]\n", + " [-0.40502403 -0.29703245 0.86471224]\n", + " [-0.53054923 -0.06524822 0.84513915]\n", + " [-0.53937308 -0.09644953 0.83652506]\n", + " [-0.54761391 -0.12832884 0.82683173]\n", + " [-0.55520004 -0.16067035 0.81605022]\n", + " [-0.5620677 -0.19326657 0.80419396]\n", + " [-0.5681624 -0.22591548 0.79129873]\n", + " [-0.50257461 -0.07454057 0.86131439]\n", + " [-0.51121778 -0.10621149 0.85286312]\n", + " [-0.51932504 -0.13852827 0.84327422]\n", + " [-0.52682356 -0.17127857 0.83253864]\n", + " [-0.53364844 -0.20425612 0.82066971]\n", + " [-0.53974422 -0.23725822 0.80770336]\n", + " [-0.47343265 -0.08414337 0.87680181]\n", + " [-0.48186717 -0.11620705 0.86850443]\n", + " [-0.48981511 -0.14888936 0.8590187 ]\n", + " [-0.49720316 -0.18198034 0.84833494]\n", + " [-0.50396607 -0.21527402 0.83646596]\n", + " [-0.51004798 -0.24856637 0.82344752]\n", + " [-0.44326734 -0.0939699 0.89145035]\n", + " [-0.45146319 -0.12635223 0.88329842]\n", + " [-0.45922424 -0.15932959 0.87391486]\n", + " [-0.46647752 -0.19269331 0.86328906]\n", + " [-0.47315815 -0.22623703 0.85143301]\n", + " [-0.47921053 -0.2597552 0.83838208]\n", + " [-0.41223334 -0.10394295 0.90512957]\n", + " [-0.42015991 -0.13657129 0.89711422]\n", + " [-0.42770617 -0.1697734 0.8878313 ]\n", + " [-0.43480016 -0.20334109 0.87726919]\n", + " [-0.44137803 -0.23706726 0.86543893]\n", + " [-0.44738498 -0.27074499 0.8523754 ]\n", + " [-0.38049734 -0.11399244 0.91772954]\n", + " [-0.38812488 -0.14679444 0.9098409 ]\n", + " [-0.39542939 -0.18015045 0.9006561 ]\n", + " [-0.40234043 -0.21385212 0.8901626 ]\n", + " [-0.40879569 -0.24769163 0.87837062]\n", + " [-0.41474158 -0.28146103 0.86531446]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:fp_optics: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:cartToSDEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "phere: vec: [[-0.16047769 -0.58147398 -0.79758067]\n", + " [-0.16308264 -0.60352311 -0.78048953]\n", + " [-0.16560853 -0.62552305 -0.76242687]\n", + " [-0.16803785 -0.64735804 -0.7434318 ]\n", + " [-0.17035503 -0.66892037 -0.72355007]\n", + " [-0.17254622 -0.6901085 -0.70283573]\n", + " [-0.17459922 -0.71082578 -0.68135293]\n", + " [-0.17650349 -0.73098056 -0.65917672]\n", + " [-0.16047769 -0.58147398 -0.79758067]\n", + " [-0.1318964 -0.58627933 -0.79929962]\n", + " [-0.10330641 -0.59065598 -0.80028326]\n", + " [-0.07482149 -0.59459631 -0.80053543]\n", + " [-0.04655648 -0.59810066 -0.80006756]\n", + " [-0.01862703 -0.60117722 -0.79889861]\n", + " [ 0.00885128 -0.60384158 -0.7970552 ]\n", + " [ 0.03576503 -0.60611547 -0.79457215]\n", + " [-0.17650349 -0.73098056 -0.65917672]\n", + " [-0.14692103 -0.735823 -0.66104367]\n", + " [-0.11730459 -0.73999063 -0.66230922]\n", + " [-0.08777318 -0.74347653 -0.66297701]\n", + " [-0.0584431 -0.74628277 -0.66305839]\n", + " [-0.02942819 -0.74841995 -0.66257193]\n", + " [-0.00084172 -0.74990669 -0.66154308]\n", + " [ 0.02720106 -0.75076939 -0.66000411]\n", + " [ 0.03576503 -0.60611547 -0.79457215]\n", + " [ 0.03503064 -0.62742931 -0.77788515]\n", + " [ 0.0341133 -0.64870745 -0.76027293]\n", + " [ 0.03302497 -0.6698359 -0.74177438]\n", + " [ 0.0317784 -0.69070538 -0.72243768]\n", + " [ 0.03038553 -0.71121319 -0.70231939]\n", + " [ 0.02885678 -0.73126383 -0.68148404]\n", + " [ 0.02720106 -0.75076939 -0.66000411]\n", + " [-0.16152399 -0.59110296 -0.79025774]\n", + " [-0.16466481 -0.61810856 -0.76865292]\n", + " [-0.16766943 -0.64492428 -0.74562701]\n", + " [-0.17050841 -0.67134853 -0.72126142]\n", + " [-0.17315625 -0.69719424 -0.69565588]\n", + " [-0.17559117 -0.72228549 -0.66893304]\n", + " [-0.14803307 -0.58369643 -0.79836376]\n", + " [-0.11298262 -0.58929895 -0.79997605]\n", + " [-0.07803199 -0.59424891 -0.80048688]\n", + " [-0.04339221 -0.59854359 -0.79991417]\n", + " [-0.00927605 -0.60219806 -0.79829284]\n", + " [ 0.02410438 -0.60524364 -0.79567526]\n", + " [-0.16361106 -0.73310617 -0.66014147]\n", + " [-0.12731691 -0.73858873 -0.66202499]\n", + " [-0.09109022 -0.74304997 -0.66300778]\n", + " [-0.05514631 -0.74648995 -0.66310756]\n", + " [-0.01969495 -0.74892813 -0.66235848]\n", + " [ 0.01505458 -0.75040203 -0.66081022]\n", + " [ 0.03537661 -0.61539861 -0.78742178]\n", + " [ 0.03435104 -0.64151236 -0.7663432 ]\n", + " [ 0.03306253 -0.66745883 -0.74391234]\n", + " [ 0.03153437 -0.69303473 -0.72021417]\n", + " [ 0.02978843 -0.71805101 -0.69535271]\n", + " [ 0.02784326 -0.74233503 -0.66945011]\n", + " [-0.16038911 -0.58156648 -0.79753104]\n", + " [-0.16038911 -0.58156648 -0.79753104]\n", + " [ 0.02711209 -0.75070179 -0.66008466]\n", + " [ 0.02711209 -0.75070179 -0.66008466]\n", + " [-0.14911909 -0.59323929 -0.791DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "09459]\n", + " [-0.11392754 -0.59884112 -0.79272305]\n", + " [-0.0788322 -0.60376254 -0.79325676]\n", + " [-0.04404439 -0.60800074 -0.79271382]\n", + " [-0.00977732 -0.61157108 -0.79112908]\n", + " [ 0.02375553 -0.61450605 -0.78855437]\n", + " [-0.15213706 -0.62026053 -0.76950061]\n", + " [-0.11659068 -0.62585624 -0.7711748 ]\n", + " [-0.08113187 -0.63069646 -0.77177691]\n", + " [-0.04597253 -0.63477782 -0.7713259 ]\n", + " [-0.01132584 -0.63811581 -0.76985709]\n", + " [ 0.02259314 -0.64074468 -0.76742153]\n", + " [-0.15504192 -0.64708825 -0.74648429]\n", + " [-0.11920738 -0.65267114 -0.74820451]\n", + " [-0.08345405 -0.65742891 -0.74888093]\n", + " [-0.04799456 -0.66135786 -0.74853344]\n", + " [-0.01304106 -0.6644734 -0.74719812]\n", + " [ 0.02119221 -0.6668104 -0.74492603]\n", + " [-0.15780469 -0.67352072 -0.72212708]\n", + " [-0.12174973 -0.67908319 -0.72389435]\n", + " [-0.08577138 -0.68375592 -0.72465241]\n", + " [-0.05008316 -0.6875356 -0.72442148]\n", + " [-0.01489611 -0.69043812 -0.72323807]\n", + " [ 0.01957749 -0.69249879 -0.72115334]\n", + " [-0.16040073 -0.6993707 -0.6965287 ]\n", + " [-0.12419518 -0.70490459 -0.69834452]\n", + " [-0.08806242 -0.70948906 -0.69919259]\n", + " [-0.05221695 -0.71312195 -0.69909261]\n", + " [-0.01686893 -0.7158204 -0.69808066]\n", + " [ 0.01777119 -0.71762047 -0.69620761]\n", + " [-0.16280914 -0.72446217 -0.66981173]\n", + " [-0.12652513 -0.72995945 -0.67167745]\n", + " [-0.09031005 -0.73445307 -0.6726238 ]\n", + " [-0.0543791 -0.73794252 -0.67266912]\n", + " [-0.01894206 -0.74044662 -0.6718482 ]\n", + " [ 0.0157917 -0.74200252 -0.67021107]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:fp_optics: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:cartToSphere: vec: [[0.42266278 0.22426433 0.87810118]\n", + " [0.41746876 0.19921267 0.88658567]\n", + " [0.41171353 0.17353292 0.89463864]\n", + " [0.40541765 0.1473225 0.90218214]\n", + " [0.39860329 0.12068023 0.90914889]\n", + " [0.39129424 0.09370662 0.91548232]\n", + " [0.38351641 0.06650409 0.92113646]\n", + " [0.37529816 0.03917694 0.92607584]\n", + " [0.42266278 0.22426433 0.87810118]\n", + " [0.39928701 0.23481078 0.88624702]\n", + " [0.37506631 0.24526989 0.89396194]\n", + " [0.35009224 0.25559998 0.90116817]\n", + " [0.32445828 0.26576001 0.90779868]\n", + " [0.29826011 0.2757095 0.91379712]\n", + " [0.27159604 0.28540865 0.91911778]\n", + " [0.2445673 0.29481874 0.92372547]\n", + " [0.37529816 0.03917694 0.92607584]\n", + " [0.35062577 0.04840354 0.93526395]\n", + " [0.32516457 0.05777689 0.9438908 ]\n", + " [0.29900138 0.06725746 0.95187951]\n", + " [0.27222584 0.07680634 0.95916311]\n", + " [0.2449321 0.08638472 0.96568419]\n", + " [0.21721993 0.09595362 0.97139508]\n", + " [0.18919474 0.10547404 0.97625846]\n", + " [0.2445673 0.29481874 0.92372547]\n", + " [0.23756042 0.26946005 0.93325041]\n", + " [0.23021589 0.24337866 0.94221413]\n", + " [0.22255321 0.21666692 0.95053959]\n", + " [0.21459394 0.18941948 0.95815954]\n", + " [0.20636235 0.16173503 0.96501625]\n", + " [0.19788578 0.13371713 0.97106176]\n", + " [0.18919474 0.10547404 0.97625846]\n", + " [0.42038959 0.21346106 0.88187696]\n", + " [0.41364274 0.18232242 0.89199676]\n", + " [0.40607333 0.15033693 0.90138963]\n", + " [0.39772147 0.11768592 0.90992728]\n", + " [0.38863106 0.08455446 0.91750555]\n", + " [0.37885078 0.05113189 0.92404416]\n", + " [0.4125633 0.22878595 0.88173041]\n", + " [0.38333306 0.24165774 0.89143553]\n", + " [0.35292447 0.25435699 0.90041482]\n", + " [0.32150883 0.26680792 0.90854037]\n", + " [0.28926233 0.278936 0.91570848]\n", + " [0.25636718 0.29066838 0.92183933]\n", + " [0.36467235 0.04327306 0.93012984]\n", + " [0.33389281 0.05468587 0.94102341]\n", + " [0.30201445 0.06627954 0.95099647]\n", + " [0.26920102 0.07798221 0.95992166]\n", + " [0.23562597 0.08972242 0.96769328]\n", + " [0.20147538 0.10142836 0.97422788]\n", + " [0.24164827 0.28382524 0.92792745]\n", + " [0.23283213 0.25224773 0.93923388]\n", + " [0.22352782 0.21967636 0.94961972]\n", + " [0.21377416 0.18628433 0.95895712]\n", + " [0.20361586 0.15225341 0.96713984]\n", + " [0.19310457 0.11777628 0.97408386]\n", + " [0.4225676 0.224216 0.87815933]\n", + " [0.4225676 0.224216 0.87815933]\n", + " [0.18932103 0.10553845 0.97622701]\n", + " [0.18932103 0.10553845 0.97622701]\n", + " [0.41033181 0.21800337 0.88549553]\n", + " [0.38095272 0.23081132 0.89532182]\n", + " [0.35039913 0.24346822 0.90440239]\n", + " [0.31884185 0.25589822 0.91260943]\n", + " [0.28645665 0.26802647 0.91983933]\n", + " [0.25342573 0.2797797 0.92601227]\n", + " [0.40344681 0.18677992 0.89573653]\n", + " [0.37368494 0.19938902 0.90587173]\n", + " [0.34276022 0.2119086 0.91521045]\n", + " [0.31084158 0.22426261 0.92362535]\n", + " [0.27810358 0.23637543 0.93101292]\n", + " [0.24472865 0.24817269 0.93729302]\n", + " [0.39575903 0.15469976 0.90523078]\n", + " [0.36567141 0.1670824 0.91562432]\n", + " [0.3344334 0.17943753 0.92517916]\n", + " [0.30221181 0.19168918 0.93376832]\n", + " [0.26918026 0.20376151 0.94128807]\n", + " [0.23552172 0.21557952 0.94765763]\n", + " [0.38730826 0.1219439 0.91385009]\n", + " [0.35695062 0.13407119 0.92445182]\n", + " [0.32545596 0.14623308 0.93418109]\n", + " [0.29298934 0.15835427 0.94291101]\n", + " [0.2597238 0.17035945 0.95053732]\n", + " [0.22584323 0.18217372 0.95697835]\n", + " [0.37813791 0.08869732 0.92149037]\n", + " [0.34756467 0.10053997 0.93225024]\n", + " [0.31586922 0.11247934 0.94211201]\n", + " [0.28321553 0.12444138 0.95094863]\n", + " [0.24977655 0.13635204 0.9586552 ]\n", + " [0.21573717 0.14813733 0.96514911]\n", + " [0.3682963 0.05514965 0.92807131]\n", + " [0.33756112 0.06667933 0.93893895]\n", + " [0.3057206 0.07836789 0.94889061]\n", + " [0.27293839 0.09014289 0.95779899]\n", + " [0.23938776 0.10193212 0.96555856]\n", + " [0.20525453 0.11366315 0.97208604]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:fp_optics: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:cartToSphere: vec: [[-0.65108341 0.75067832 0.11212698]\n", + " [-0.63044155 0.76734854 0.117131 ]\n", + " [-0.60891119 0.78375467 0.12229387]\n", + " [-0.58655283 0.79979933 0.12758057]\n", + " [-0.56343547 0.81539143 0.13295598]\n", + " [-0.53963511 0.83044746 0.13838703]\n", + " [-0.51523418 0.84489214 0.14384371]\n", + " [-0.49032128 0.8586587 0.14929931]\n", + " [-0.65108341 0.75067832 0.11212698]\n", + " [-0.65476486 0.74317537 0.13774376]\n", + " [-0.65792484 0.73504479 0.16384158]\n", + " [-0.66052892 0.72628195 0.19030522]\n", + " [-0.66254963 0.71689 0.21701779]\n", + " [-0.66396566 0.70688056 0.24386365]\n", + " [-0.66476147 0.69627408 0.27072973]\n", + " [-0.66492733 0.68509991 0.29750589]\n", + " [-0.49032128 0.8586587 0.14929931]\n", + " [-0.49276581 0.85210911 0.17632904]\n", + " [-0.4948616 0.84474177 0.20377275]\n", + " [-0.49657825 0.83654837 0.23150999]\n", + " [-0.49789049 0.82752878 0.25942471]\n", + " [-0.49877815 0.81769178 0.28740305]\n", + " [-0.49922621 0.80705605 0.31533113]\n", + " [-0.49922518 0.79565092 0.3430945 ]\n", + " [-0.66492733 0.68509991 0.29750589]\n", + " [-0.64374449 0.70204311 0.30451355]\n", + " [-0.62161921 0.71875382 0.31142014]\n", + " [-0.59861314 0.73513364 0.31818366]\n", + " [-0.57479277 0.75109273 0.32476605]\n", + " [-0.55023151 0.7665484 0.33113265]\n", + " [-0.52501166 0.78142436 0.33725173]\n", + " [-0.49922518 0.79565092 0.3430945 ]\n", + " [-0.64220941 0.75794829 0.11437423]\n", + " [-0.61630551 0.7782149 0.12061955]\n", + " [-0.58912603 0.79798751 0.12706867]\n", + " [-0.56079459 0.81709565 0.13365678]\n", + " [-0.53145103 0.83538567 0.14032313]\n", + " [-0.50124968 0.85272251 0.14701384]\n", + " [-0.65268093 0.74754116 0.12324698]\n", + " [-0.65684648 0.73792497 0.15498207]\n", + " [-0.66019382 0.72736046 0.18732559]\n", + " [-0.66266954 0.71585016 0.22006278]\n", + " [-0.66423437 0.70341548 0.25298094]\n", + " [-0.66486211 0.69009779 0.28587307]\n", + " [-0.49151412 0.85585669 0.16100682]\n", + " [-0.49428059 0.84728058 0.19442816]\n", + " [-0.4964923 0.83746711 0.22835112]\n", + " [-0.49810061 0.82641265 0.2625603 ]\n", + " [-0.49906837 0.81413349 0.29684579]\n", + " [-0.49937022 0.80066842 0.33099768]\n", + " [-0.65581172 0.69254839 0.30047916]\n", + " [-0.62920869 0.71317089 0.30900439]\n", + " [-0.60125085 0.73334535 0.3173358 ]\n", + " [-0.57205856 0.75290287 0.32540171]\n", + " [-0.54176721 0.77169113 0.33313824]\n", + " [-0.51053234 0.78957236 0.34048821]\n", + " [-0.65102782 0.75071106 0.11223044]\n", + " [-0.65102782 0.75071106 0.11223044]\n", + " [-0.49931499 0.79564372 0.34298049]\n", + " [-0.49931499 0.79564372 0.34298049]\n", + " [-0.64383769 0.75480767 0.12545281]\n", + " [-0.64793963 0.74525942 0.15736146]\n", + " [-0.65123459 0.7347395 0.18987199]\n", + " [-0.65367011 0.7232496 0.22276757]\n", + " [-0.65520716 0.71081088 0.25583486]\n", + " [-0.65581935 0.69746474 0.28886661]\n", + " [-0.61785549 0.7751566 0.13185916]\n", + " [-0.62175892 0.76579999 0.16421393]\n", + " [-0.62489251 0.75540814 0.19714942]\n", + " [-0.62720535 0.74398128 0.23044588]\n", + " [-0.62865826 0.73154014 0.26388978]\n", + " [-0.62922393 0.71812647 0.29727365]\n", + " [-0.59058746 0.79500916 0.13844454]\n", + " [-0.59426824 0.78584051 0.17117226]\n", + " [-0.59722233 0.77557856 0.20445877]\n", + " [-0.59939929 0.76422265 0.2380845 ]\n", + " [-0.60075932 0.7517931 0.27183704]\n", + " [-0.60127415 0.73833177 0.30550875]\n", + " [-0.56215814 0.81419408 0.14514209]\n", + " [-0.56559324 0.80520867 0.17816645]\n", + " [-0.56834906 0.79507862 0.21172941]\n", + " [-0.57037533 0.78380244 0.24561296]\n", + " [-0.57163202 0.77139955 0.27960609]\n", + " [-0.57209055 0.75791144 0.31350064]\n", + " [-0.53270766 0.83255741 0.15189044]\n", + " [-0.53587394 0.82375009 0.18513485]\n", + " [-0.53841167 0.81375396 0.21890037]\n", + " [-0.54027103 0.80256656 0.25297063]\n", + " [-0.54141262 0.79020601 0.28713555]\n", + " [-0.54180861 0.77671285 0.32118622]\n", + " [-0.50239055 0.8499638 0.15863568]\n", + " [-0.50526518 0.84132859 0.19202422]\n", + " [-0.50756519 0.83146749 0.22591901]\n", + " [-0.50924158 0.82037711 0.26010463]\n", + " [-0.51025652 0.80807417 0.29437123]\n", + " [-0.51058386 0.79459793 0.32850913]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:fp_optics: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:cartToSphere: vec: [[0.41369 0.83107787 0.37171246]\n", + " [0.38803194 0.84135222 0.37624148]\n", + " [0.36154969 0.85115086 0.38055754]\n", + " [0.33433166 0.86039788 0.38462687]\n", + " [0.30647003 0.86902608 0.38841961]\n", + " [0.27806258 0.87697662 0.39190969]\n", + " [0.24921354 0.88419931 0.39507492]\n", + " [0.22003322 0.89065323 0.39789724]\n", + " [0.41369 0.83107787 0.37171246]\n", + " [0.41350863 0.84257979 0.34506508]\n", + " [0.41289119 0.85337549 0.31823128]\n", + " [0.4118424 0.86343396 0.29132051]\n", + " [0.41036976 0.8727343 0.26444566]\n", + " [0.40848294 0.88126575 0.23772329]\n", + " [0.40619329 0.8890277 0.21127416]\n", + " [0.40351351 0.89602949 0.18522418]\n", + " [0.22003322 0.89065323 0.39789724]\n", + " [0.21998615 0.90248693 0.37030182]\n", + " [0.2197394 0.91347272 0.34246488]\n", + " [0.2192968 0.92357884 0.31450126]\n", + " [0.21866466 0.9327851 0.286527 ]\n", + " [0.21785161 0.9410826 0.25865851]\n", + " [0.21686847 0.94847302 0.23101298]\n", + " [0.21572817 0.95496789 0.20370983]\n", + " [0.40351351 0.89602949 0.18522418]\n", + " [0.37861123 0.90629519 0.18783656]\n", + " [0.35290564 0.91605915 0.19050788]\n", + " [0.32649167 0.9252436 0.19320317]\n", + " [0.29946603 0.93378049 0.19589305]\n", + " [0.27192801 0.94161125 0.19855328]\n", + " [0.2439801 0.94868683 0.20116413]\n", + " [0.21572817 0.95496789 0.20370983]\n", + " [0.40261003 0.83565143 0.37361993]\n", + " [0.3705982 0.84793421 0.37903106]\n", + " [0.33743594 0.85942598 0.38408849]\n", + " [0.30329128 0.86999942 0.38873565]\n", + " [0.26834434 0.87954626 0.39292454]\n", + " [0.23278957 0.88797789 0.39661603]\n", + " [0.41357849 0.83621319 0.36013932]\n", + " [0.41306262 0.84983976 0.32734026]\n", + " [0.41189627 0.8623735 0.29436952]\n", + " [0.41009209 0.87377171 0.26143351]\n", + " [0.40766785 0.88401459 0.22874685]\n", + " [0.40464501 0.89310515 0.19653398]\n", + " [0.22013759 0.89589379 0.38589346]\n", + " [0.21994509 0.90983158 0.3518958 ]\n", + " [0.21945599 0.922463 0.3176493 ]\n", + " [0.21868089 0.93374607 0.28336715]\n", + " [0.21763567 0.9436643 0.24926373]\n", + " [0.21634113 0.95222493 0.21555557]\n", + " [0.39277031 0.90053916 0.18644221]\n", + " [0.36169698 0.91279415 0.18968957]\n", + " [0.32951118 0.92421712 0.19298988]\n", + " [0.29639015 0.93467876 0.19628674]\n", + " [0.26251677 0.94407126 0.19953544]\n", + " [0.22808112 0.95230834 0.20270135]\n", + " [0.41360389 0.83115422 0.37163758]\n", + " [0.41360389 0.83115422 0.37163758]\n", + " [0.21582933 0.95492709 0.20379389]\n", + " [0.21582933 0.95492709 0.20379389]\n", + " [0.40258625 0.84072906 0.36207589]\n", + " [0.40208777 0.85439524 0.3291416 ]\n", + " [0.40095795 0.86694879 0.29602789]\n", + " [0.39920992 0.87834689 0.26294138]\n", + " [0.39686205 0.88856975 0.23009631]\n", + " [0.39393635 0.89762043 0.19771626]\n", + " [0.37057909 0.8530587 0.36737173]\n", + " [0.37013117 0.86682312 0.33409667]\n", + " [0.36910755 0.87942338 0.30062293]\n", + " [0.36752233 0.8908164 0.26715814]\n", + " [0.36539522 0.90098265 0.23391581]\n", + " [0.36274971 0.90992558 0.20111709]\n", + " [0.33742171 0.86458828 0.37233547]\n", + " [0.33702705 0.87842978 0.33878295]\n", + " [0.3361151 0.89106225 0.30501592]\n", + " [0.33470027 0.90244263 0.2712435 ]\n", + " [0.33280284 0.9125519 0.23767899]\n", + " [0.3304471 0.92139431 0.20454152]\n", + " [0.30328219 0.8751902 0.37691115]\n", + " [0.30294409 0.88908696 0.34314611]\n", + " [0.30215055 0.90173671 0.30915359]\n", + " [0.30091555 0.91309661 0.27514434]\n", + " [0.29925897 0.92314842 0.24133186]\n", + " [0.29720498 0.93189737 0.20793385]\n", + " [0.26834066 0.8847559 0.38105155]\n", + " [0.26806251 0.8986855 0.34714098]\n", + " [0.26739434 0.9113375 0.31299238]\n", + " [0.26634901 0.92266937 0.27881791]\n", + " [0.26494512 0.93266372 0.2448315 ]\n", + " [0.26320582 0.9413268 0.21124996]\n", + " [0.23279151 0.89319653 0.38471818]\n", + " [0.23257626 0.90713622 0.3507309 ]\n", + " [0.23203958 0.91977558 0.31649725]\n", + " [0.23119271 0.93107251 0.28223025]\n", + " [0.23005232 0.94101031 0.24814418]\n", + " [0.22863988 0.94959602 0.21445558]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:fp_optics: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:cartToSphere: vec: [[ 0.00279956 0.35510238 0.93482323]\n", + " [ 0.01047316 0.33081322 0.94363813]\n", + " [ 0.01814966 0.30572428 0.95194709]\n", + " [ 0.02581027 0.27993351 0.95967237]\n", + " [ 0.03343416 0.25354015 0.96674689]\n", + " [ 0.04099832 0.22664496 0.97311418]\n", + " [ 0.04847779 0.19935065 0.97872837]\n", + " [ 0.05584604 0.17176206 0.98355428]\n", + " [ 0.00279956 0.35510238 0.93482323]\n", + " [-0.02363836 0.35032949 0.93632819]\n", + " [-0.05059895 0.34504868 0.93721991]\n", + " [-0.07796745 0.33928172 0.93744813]\n", + " [-0.1056305 0.33305119 0.93697337]\n", + " [-0.13347588 0.32638053 0.93576703]\n", + " [-0.16139216 0.31929445 0.93381134]\n", + " [-0.1892687 0.31181939 0.93109936]\n", + " [ 0.05584604 0.17176206 0.98355428]\n", + " [ 0.0288534 0.16509997 0.9858547 ]\n", + " [ 0.00128467 0.15816488 0.98741188]\n", + " [-0.02675056 0.15097766 0.98817516]\n", + " [-0.05514321 0.14356052 0.98810405]\n", + " [-0.08378292 0.13593754 0.98716838]\n", + " [-0.11255709 0.12813507 0.98534882]\n", + " [-0.1413511 0.12018174 0.98263738]\n", + " [-0.1892687 0.31181939 0.93109936]\n", + " [-0.18312138 0.2861963 0.94050956]\n", + " [-0.17670936 0.25982809 0.94934881]\n", + " [-0.17004969 0.23280784 0.9575404 ]\n", + " [-0.16316137 0.20523101 0.96501741]\n", + " [-0.15606577 0.17719716 0.97172251]\n", + " [-0.14878685 0.14881091 0.9776082 ]\n", + " [-0.1413511 0.12018174 0.98263738]\n", + " [ 0.0060541 0.34460088 0.93872977]\n", + " [ 0.01546233 0.31428065 0.94920419]\n", + " [ 0.02485666 0.28285632 0.95884016]\n", + " [ 0.03419958 0.25051004 0.96750975]\n", + " [ 0.04344877 0.21742737 0.97510899]\n", + " [ 0.05255761 0.18379827 0.98155789]\n", + " [-0.00862991 0.35300314 0.93558233]\n", + " [-0.04139922 0.34680804 0.93702203]\n", + " [-0.07483946 0.33987169 0.93748935]\n", + " [-0.10874137 0.33223535 0.93690714]\n", + " [-0.14289829 0.32394222 0.93522271]\n", + " [-0.17710542 0.31503848 0.93240786]\n", + " [ 0.04413002 0.16898734 0.98462979]\n", + " [ 0.01064625 0.16063706 0.98695612]\n", + " [-0.02359374 0.15189718 0.98811466]\n", + " [-0.05838903 0.14280797 0.98802662]\n", + " [-0.09353632 0.13341383 0.98663656]\n", + " [-0.12882743 0.1237642 0.98391357]\n", + " [-0.1865265 0.30077149 0.9352777 ]\n", + " [-0.17881134 0.26885533 0.94643717]\n", + " [-0.17071551 0.23591225 0.95666171]\n", + " [-0.16227317 0.20211689 0.96582409]\n", + " [-0.15352369 0.16765267 0.9738188 ]\n", + " [-0.14451226 0.13271424 0.98056266]\n", + " [ 0.00273639 0.35500536 0.93486026]\n", + " [ 0.00273639 0.35500536 0.93486026]\n", + " [-0.1412784 0.12030735 0.98263246]\n", + " [-0.1412784 0.12030735 0.98263246]\n", + " [-0.00535098 0.34254267 0.93948704]\n", + " [-0.0382328 0.33620334 0.94101305]\n", + " [-0.07178961 0.3291442 0.94154679]\n", + " [-0.10581252 0.32140615 0.94101105]\n", + " [-0.14009504 0.31303192 0.93935318]\n", + " [-0.17443211 0.30406732 0.93654498]\n", + " [ 0.00396485 0.31206671 0.95005192]\n", + " [-0.02918653 0.30532792 0.95179988]\n", + " [-0.06302545 0.29793057 0.95250468]\n", + " [-0.09734452 0.28991432 0.95208914]\n", + " [-0.13193783 0.28132058 0.95050047]\n", + " [-0.16659946 0.27219439 0.94771031]\n", + " [ 0.01329277 0.28049089 0.95976464]\n", + " [-0.02005526 0.27336498 0.96170129]\n", + " [-0.05410506 0.26564198 0.96255233]\n", + " [-0.08865106 0.25736043 0.96224041]\n", + " [-0.12348792 0.24856101 0.96071232]\n", + " [-0.15840878 0.23928864 0.95793925]\n", + " [ 0.02259516 0.24799688 0.96849729]\n", + " [-0.01087705 0.24049439 0.97058958]\n", + " [-0.04506661 0.23245624 0.9715622 ]\n", + " [-0.07976975 0.22392055 0.97133742]\n", + " [-0.11478173 0.21492816 0.96986135]\n", + " [-0.14989485 0.20552464 0.96710452]\n", + " [ 0.03182935 0.21476989 0.97614588]\n", + " [-0.00169544 0.20690029 0.97836056]\n", + " [-0.03595394 0.19855666 0.97942971]\n", + " [-0.07074393 0.18977757 0.97927512]\n", + " [-0.1058613 0.18060492 0.97784214]\n", + " [-0.1410978 0.17108564 0.97510057]\n", + " [ 0.04094828 0.18099993 0.98263028]\n", + " [ 0.00744149 0.1727731 0.98493354]\n", + " [-0.02681565 0.16413446 0.98607342]\n", + " [-0.06162198 0.15512378 0.98597127]\n", + " [-0.096774 0.14578472 0.98457179]\n", + " [-0.13206342 0.13616603 0.98184422]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:fp_optics: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:cartToSphere: vec: [[-0.67664792 -0.30825838 -0.66867358]\n", + " [-0.66309429 -0.29507163 -0.68792347]\n", + " [-0.6488449 -0.28125755 -0.70703217]\n", + " [-0.63392446 -0.26687719 -0.72589003]\n", + " [-0.6183653 -0.25199064 -0.74439578]\n", + " [-0.60220758 -0.23665768 -0.76245602]\n", + " [-0.5854994 -0.22093854 -0.77998501]\n", + " [-0.56829666 -0.2048945 -0.79690473]\n", + " [-0.67664792 -0.30825838 -0.66867358]\n", + " [-0.69239391 -0.28753388 -0.66175142]\n", + " [-0.70789216 -0.26605903 -0.65429449]\n", + " [-0.72305178 -0.24392465 -0.64629474]\n", + " [-0.73778914 -0.22122058 -0.63775281]\n", + " [-0.75202756 -0.19803649 -0.62867806]\n", + " [-0.76569722 -0.17446276 -0.61908845]\n", + " [-0.7787354 -0.15059102 -0.60901028]\n", + " [-0.56829666 -0.2048945 -0.79690473]\n", + " [-0.58380453 -0.18240985 -0.79113774]\n", + " [-0.59915864 -0.15931679 -0.78461907]\n", + " [-0.61427145 -0.13569984 -0.77733914]\n", + " [-0.6290616 -0.11164482 -0.76929639]\n", + " [-0.64345316 -0.08724054 -0.76049794]\n", + " [-0.65737545 -0.06257957 -0.75096026]\n", + " [-0.67076365 -0.03775804 -0.74070942]\n", + " [-0.7787354 -0.15059102 -0.60901028]\n", + " [-0.76578408 -0.13542895 -0.62867618]\n", + " [-0.75195893 -0.119851 -0.64822335]\n", + " [-0.73728117 -0.10391366 -0.66754657]\n", + " [-0.72177988 -0.08767457 -0.68654714]\n", + " [-0.70549308 -0.07119352 -0.7051319 ]\n", + " [-0.68846851 -0.05453302 -0.72321315]\n", + " [-0.67076365 -0.03775804 -0.74070942]\n", + " [-0.67087958 -0.30251997 -0.67705411]\n", + " [-0.65379782 -0.28592718 -0.70056696]\n", + " [-0.63569457 -0.26845305 -0.72375782]\n", + " [-0.61662614 -0.25020855 -0.74643679]\n", + " [-0.5966665 -0.23130384 -0.76843192]\n", + " [-0.57590745 -0.21185022 -0.78958856]\n", + " [-0.68349253 -0.29927606 -0.6657866 ]\n", + " [-0.70263645 -0.27335846 -0.65694533]\n", + " [-0.72131715 -0.24640427 -0.64729167]\n", + " [-0.73937768 -0.21857925 -0.63682317]\n", + " [-0.75667687 -0.19004859 -0.62555707]\n", + " [-0.77308911 -0.16097918 -0.61352989]\n", + " [-0.57513098 -0.19522692 -0.79442483]\n", + " [-0.59404605 -0.16725046 -0.78685232]\n", + " [-0.61264231 -0.13844399 -0.77814052]\n", + " [-0.63076751 -0.10896486 -0.76828316]\n", + " [-0.64828182 -0.07897663 -0.75729346]\n", + " [-0.66505752 -0.04865124 -0.74520571]\n", + " [-0.77315348 -0.14411742 -0.61762761]\n", + " [-0.75668996 -0.12524882 -0.64166428]\n", + " [-0.73893428 -0.10581147 -0.66541721]\n", + " [-0.71993665 -0.08591092 -0.68870206]\n", + " [-0.69976718 -0.06565735 -0.71134732]\n", + " [-0.6785178 -0.04516684 -0.73319408]\n", + " [-0.67665694 -0.30814493 -0.66871675]\n", + " [-0.67665694 -0.30814493 -0.66871675]\n", + " [-0.67078048 -0.03790057 -0.74068691]\n", + " [-0.67078048 -0.03790057 -0.74068691]\n", + " [-0.67772908 -0.29358423 -0.67415992]\n", + " [-0.69691479 -0.26748698 -0.66540251]\n", + " [-0.71564108 -0.24036685 -0.65580609]\n", + " [-0.73375115 -0.21238857 -0.64536839]\n", + " [-0.75110367 -0.18371656 -0.63410685]\n", + " [-0.76757266 -0.15451753 -0.62205831]\n", + " [-0.66067179 -0.2768162 -0.69777186]\n", + " [-0.6799363 -0.25024973 -0.6892472 ]\n", + " [-0.69875616 -0.22269818 -0.67981273]\n", + " [-0.71697507 -0.1943232 -0.66946638]\n", + " [-0.73445128 -0.16528746 -0.65822592]\n", + " [-0.75105765 -0.1357576 -0.64612868]\n", + " [-0.6425708 -0.25918718 -0.72105809]\n", + " [-0.66185494 -0.23220814 -0.71276043]\n", + " [-0.68071492 -0.20428019 -0.70348902]\n", + " [-0.69899504 -0.17556242 -0.6932415 ]\n", + " [-0.71655329 -0.1462165 -0.68203527]\n", + " [-0.73326154 -0.11640972 -0.66990767]\n", + " [-0.6234823 -0.24080719 -0.74382909]\n", + " [-0.64272631 -0.2134695 -0.7357538 ]\n", + " [-0.66157197 -0.18521808 -0.72664764]\n", + " [-0.67986436 -0.15621033 -0.71650735]\n", + " [-0.69746158 -0.12660777 -0.70534943]\n", + " [-0.7142349 -0.09657892 -0.69321066]\n", + " [-0.6034803 -0.22178562 -0.76591296]\n", + " [-0.6226244 -0.19414143 -0.75805538]\n", + " [-0.64140084 -0.16561856 -0.74911645]\n", + " [-0.65965574 -0.13637378 -0.73909167]\n", + " [-0.67724779 -0.10656916 -0.72799619]\n", + " [-0.69404823 -0.07637472 -0.71586588]\n", + " [-0.58265688 -0.20223345 -0.78715474]\n", + " [-0.60164196 -0.17433447 -0.77950911]\n", + " [-0.62029468 -0.14559257 -0.77073816]\n", + " [-0.63846238 -0.11616481 -0.76083607]\n", + " [-0.65600476 -0.08621433 -0.74981654]\n", + " [-0.67279373 -0.05591259 -0.73771429]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:fp_optics: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:cartToSphere: vec: [[ 0.76955337 0.63537263 0.0639471 ]\n", + " [ 0.78566958 0.61630864 0.0537305 ]\n", + " [ 0.80156628 0.59632832 0.04340558]\n", + " [ 0.81713678 0.5754985 0.0329993 ]\n", + " [ 0.83228532 0.55388899 0.0225418 ]\n", + " [ 0.84692614 0.53157363 0.0120662 ]\n", + " [ 0.86098297 0.50863125 0.0016082 ]\n", + " [ 0.87438896 0.48514596 -0.00879439]\n", + " [ 0.76955337 0.63537263 0.0639471 ]\n", + " [ 0.77284885 0.62821923 0.08969532]\n", + " [ 0.77573563 0.62032601 0.11588732]\n", + " [ 0.7781562 0.6117129 0.14240879]\n", + " [ 0.78006411 0.60240257 0.16914827]\n", + " [ 0.78142339 0.59242129 0.19599617]\n", + " [ 0.78220807 0.58179982 0.22284411]\n", + " [ 0.78240187 0.57057398 0.24958497]\n", + " [ 0.87438896 0.48514596 -0.00879439]\n", + " [ 0.87905353 0.47640895 0.01730328]\n", + " [ 0.88310919 0.46710719 0.04392073]\n", + " [ 0.88649999 0.45725681 0.07095057]\n", + " [ 0.88917903 0.44687877 0.09828543]\n", + " [ 0.8911086 0.43599955 0.12581671]\n", + " [ 0.89226061 0.42465152 0.15343434]\n", + " [ 0.89261697 0.41287287 0.18102744]\n", + " [ 0.78240187 0.57057398 0.24958497]\n", + " [ 0.79952891 0.55026853 0.24074481]\n", + " [ 0.81635268 0.52911057 0.23153899]\n", + " [ 0.83277084 0.50716049 0.22199318]\n", + " [ 0.84868903 0.4844846 0.21213582]\n", + " [ 0.86402052 0.46115629 0.20199857]\n", + " [ 0.87868652 0.4372564 0.1916164 ]\n", + " [ 0.89261697 0.41287287 0.18102744]\n", + " [ 0.7766121 0.62715396 0.05959497]\n", + " [ 0.79623174 0.60316349 0.04699805]\n", + " [ 0.81541431 0.57786282 0.03426468]\n", + " [ 0.83397902 0.55137913 0.02144902]\n", + " [ 0.85176792 0.5238485 0.00861199]\n", + " [ 0.86864453 0.49541821 -0.00417977]\n", + " [ 0.77109209 0.63228194 0.07507693]\n", + " [ 0.77486514 0.62301379 0.10694785]\n", + " [ 0.77796571 0.61265403 0.13937144]\n", + " [ 0.78030374 0.60124322 0.1721414 ]\n", + " [ 0.78181297 0.58882982 0.20505588]\n", + " [ 0.78244961 0.57547254 0.23791588]\n", + " [ 0.87644878 0.48148835 0.002549 ]\n", + " [ 0.88176327 0.47039949 0.03489783]\n", + " [ 0.88610663 0.45847774 0.06792051]\n", + " [ 0.8893888 0.44575963 0.10141949]\n", + " [ 0.89154041 0.43229396 0.13519478]\n", + " [ 0.89251386 0.41814274 0.16904338]\n", + " [ 0.78990003 0.56186876 0.24568564]\n", + " [ 0.81070032 0.53640214 0.23460122]\n", + " [ 0.83094247 0.50971437 0.22299298]\n", + " [ 0.85044952 0.481925 0.21091209]\n", + " [ 0.86906183 0.45316917 0.19841684]\n", + " [ 0.88663794 0.42359868 0.18557295]\n", + " [ 0.76962062 0.63528589 0.06399954]\n", + " [ 0.76962062 0.63528589 0.06399954]\n", + " [ 0.89257081 0.41299793 0.18096976]\n", + " [ 0.89257081 0.41299793 0.18096976]\n", + " [ 0.778136 0.62410341 0.07070572]\n", + " [ 0.78203922 0.61471347 0.10267427]\n", + " [ 0.78524349 0.60424611 0.13520096]\n", + " [ 0.78765941 0.5927408 0.16808031]\n", + " [ 0.78922109 0.58024525 0.2011107 ]\n", + " [ 0.7898849 0.56681779 0.23409281]\n", + " [ 0.7978932 0.5999841 0.0581853 ]\n", + " [ 0.80213857 0.59025844 0.09038077]\n", + " [ 0.80561634 0.57949622 0.12315208]\n", + " [ 0.80823845 0.56773426 0.15629591]\n", + " [ 0.80993945 0.55501869 0.18961101]\n", + " [ 0.81067565 0.54140737 0.22289696]\n", + " [ 0.81719796 0.57455814 0.04550208]\n", + " [ 0.82174841 0.56450744 0.07785179]\n", + " [ 0.8254715 0.55346243 0.11079774]\n", + " [ 0.82827958 0.54145826 0.14413843]\n", + " [ 0.83010686 0.52854043 0.17767277]\n", + " [ 0.83090901 0.51476706 0.21119915]\n", + " [ 0.83587027 0.54795156 0.03271072]\n", + " [ 0.84069041 0.53758352 0.06514292]\n", + " [ 0.84463159 0.5262656 0.09819363]\n", + " [ 0.84760583 0.51403235 0.13166282]\n", + " [ 0.8495464 0.50092957 0.16534956]\n", + " [ 0.85040804 0.48701618 0.19905123]\n", + " [ 0.85375243 0.52029979 0.01987264]\n", + " [ 0.85880709 0.50962079 0.05231655]\n", + " [ 0.86293878 0.49803928 0.08540225]\n", + " [ 0.86605867 0.48559016 0.11893095]\n", + " [ 0.86809891 0.47232022 0.15270196]\n", + " [ 0.86901316 0.4582896 0.18651212]\n", + " [ 0.87070782 0.49175006 0.00705496]\n", + " [ 0.87596104 0.48076677 0.03944077]\n", + " [ 0.88025445 0.46893176 0.07249206]\n", + " [ 0.8834983 0.45628108 0.10601099]\n", + " [ 0.88562358 0.44286293 0.13979736]\n", + " [ 0.88658298 0.42873883 0.17364801]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:cartToSphere: vec: [[-0.26237748 -0.82284615 0.50406574]\n", + " [-0.27617737 -0.83124621 0.48244772]\n", + " [-0.2901873 -0.83912314 0.46006921]\n", + " [-0.3043211 -0.84641502 0.43700146]\n", + " [-0.31849958 -0.85306777 0.41331997]\n", + " [-0.33264989 -0.8590351 0.38910507]\n", + " [-0.34670483 -0.86427869 0.3644422 ]\n", + " [-0.36060232 -0.8687685 0.33942195]\n", + " [-0.26237748 -0.82284615 0.50406574]\n", + " [-0.2827348 -0.80913615 0.51513078]\n", + " [-0.30341417 -0.79456684 0.52593097]\n", + " [-0.3243026 -0.77916187 0.536409 ]\n", + " [-0.34529415 -0.76295298 0.5465114 ]\n", + " [-0.36628912 -0.74598036 0.55618845]\n", + " [-0.38719324 -0.72829293 0.56539437]\n", + " [-0.4079172 -0.70994845 0.57408776]\n", + " [-0.36060232 -0.8687685 0.33942195]\n", + " [-0.38281078 -0.85518157 0.34945728]\n", + " [-0.40516969 -0.84062948 0.35941563]\n", + " [-0.42757197 -0.82513204 0.36924154]\n", + " [-0.44991504 -0.80871744 0.37888329]\n", + " [-0.47209934 -0.79142359 0.3882923 ]\n", + " [-0.4940279 -0.77329899 0.39742308]\n", + " [-0.51560679 -0.75440304 0.40623356]\n", + " [-0.4079172 -0.70994845 0.57408776]\n", + " [-0.42376143 -0.71784948 0.55237522]\n", + " [-0.43958178 -0.72532293 0.52978723]\n", + " [-0.45529637 -0.73230802 0.50638936]\n", + " [-0.47082791 -0.73875123 0.48225274]\n", + " [-0.48610282 -0.74460614 0.45745572]\n", + " [-0.50105111 -0.74983376 0.43208462]\n", + " [-0.51560679 -0.75440304 0.40623356]\n", + " [-0.26843218 -0.82652325 0.4947762 ]\n", + " [-0.28549948 -0.83647485 0.46776049]\n", + " [-0.30279566 -0.84557831 0.43967272]\n", + " [-0.32017206 -0.85373083 0.41065012]\n", + " [-0.33749452 -0.86084721 0.38084057]\n", + " [-0.35464143 -0.86686032 0.35040354]\n", + " [-0.27125355 -0.81700493 0.50884619]\n", + " [-0.29643639 -0.79962143 0.52223657]\n", + " [-0.32198974 -0.78096971 0.53517186]\n", + " [-0.34771568 -0.76110482 0.54755205]\n", + " [-0.37343058 -0.74010079 0.55928563]\n", + " [-0.39896296 -0.71805136 0.5702901 ]\n", + " [-0.3702123 -0.86295008 0.34388953]\n", + " [-0.3975455 -0.84564662 0.35614516]\n", + " [-0.42499779 -0.8269123 0.36822945]\n", + " [-0.45237854 -0.80679549 0.38004565]\n", + " [-0.47950443 -0.78536606 0.39150434]\n", + " [-0.50619816 -0.76271786 0.40252315]\n", + " [-0.41475205 -0.71350571 0.56470377]\n", + " [-0.43416457 -0.72291034 0.53749583]\n", + " [-0.45345944 -0.7316114 0.50903762]\n", + " [-0.47249252 -0.73950736 0.4794577 ]\n", + " [-0.49112835 -0.74651282 0.44890038]\n", + " [-0.50923969 -0.75255925 0.41752785]\n", + " [-0.26249315 -0.82283029 0.5040314 ]\n", + " [-0.26249315 -0.82283029 0.5040314 ]\n", + " [-0.51548466 -0.75445442 0.40629312]\n", + " [-0.51548466 -0.75445442 0.40629312]\n", + " [-0.27726822 -0.82069895 0.49957538]\n", + " [-0.30265075 -0.80330792 0.51293168]\n", + " [-0.32838299 -0.78463281 0.52584786]\n", + " [-0.35426799 -0.76472832 0.53822374]\n", + " [-0.38012279 -0.74366828 0.54996741]\n", + " [-0.40577607 -0.72154652 0.5609959 ]\n", + " [-0.29453125 -0.83065584 0.47250631]\n", + " [-0.32042965 -0.81325276 0.48574148]\n", + " [-0.34662299 -0.79452468 0.49858102]\n", + " [-0.37291718 -0.77452507 0.51092435]\n", + " [-0.39913073 -0.7533271 0.52267862]\n", + " [-0.42509215 -0.73102484 0.53375964]\n", + " [-0.3119964 -0.83976798 0.4443512 ]\n", + " [-0.338339 -0.82236663 0.45742742]\n", + " [-0.36492802 -0.80360534 0.47015528]\n", + " [-0.39157164 -0.78353616 0.48243418]\n", + " [-0.41808898 -0.76223141 0.4941709 ]\n", + " [-0.44430766 -0.73978532 0.5052805 ]\n", + " [-0.32951592 -0.8479324 0.41524681]\n", + " [-0.35623356 -0.83054614 0.42812469]\n", + " [-0.38315467 -0.81177117 0.44070407]\n", + " [-0.41008877 -0.79165805 0.4528849 ]\n", + " [-0.4368548 -0.77027825 0.46457432]\n", + " [-0.46327893 -0.74772601 0.47568733]\n", + " [-0.34695629 -0.8550636 0.38534086]\n", + " [-0.37398128 -0.83770489 0.39798055]\n", + " [-0.40117137 -0.81893508 0.41037407]\n", + " [-0.42833654 -0.79880348 0.42242255]\n", + " [-0.45529493 -0.77738076 0.4340342 ]\n", + " [-0.48187109 -0.75476104 0.44512472]\n", + " [-0.36419619 -0.86109407 0.35479309]\n", + " [-0.391461 -0.84377432 0.36715554]\n", + " [-0.41885631 -0.82502767 0.37932669]\n", + " [-0.44619178 -0.80490264 0.39120919]\n", + " [-0.47328446 -0.78346928 0.40271294]\n", + " [-0.49995746 -0.7608215 0.41375498]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:fp_optics: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:fp_optics: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:cartToSphere: vec: [[ 1.09650204e-01 -1.36808148e-01 9.84510215e-01]\n", + " [ 1.21870364e-01 -1.60374475e-01 9.79503773e-01]\n", + " [ 1.34114013e-01 -1.84378182e-01 9.73662219e-01]\n", + " [ 1.46336812e-01 -2.08702547e-01 9.66968864e-01]\n", + " [ 1.58493947e-01 -2.33235186e-01 9.59417019e-01]\n", + " [ 1.70540029e-01 -2.57867791e-01 9.51010148e-01]\n", + " [ 1.82429272e-01 -2.82495729e-01 9.41762031e-01]\n", + " [ 1.94115868e-01 -3.07017842e-01 9.31696879e-01]\n", + " [ 1.09650204e-01 -1.36808148e-01 9.84510215e-01]\n", + " [ 8.46865301e-02 -1.46885561e-01 9.85521600e-01]\n", + " [ 5.91793031e-02 -1.57209441e-01 9.85790547e-01]\n", + " [ 3.32294241e-02 -1.67714768e-01 9.85275374e-01]\n", + " [ 6.93808956e-03 -1.78341225e-01 9.83944242e-01]\n", + " [-1.95928931e-02 -1.89033090e-01 9.81775234e-01]\n", + " [-4.62608603e-02 -1.99738810e-01 9.78756528e-01]\n", + " [-7.29623464e-02 -2.10410567e-01 9.74886603e-01]\n", + " [ 1.94115868e-01 -3.07017842e-01 9.31696879e-01]\n", + " [ 1.69016117e-01 -3.19186353e-01 9.32498592e-01]\n", + " [ 1.43267648e-01 -3.31349788e-01 9.32567262e-01]\n", + " [ 1.16966387e-01 -3.43444684e-01 9.31860834e-01]\n", + " [ 9.02092448e-02 -3.55411283e-01 9.30346770e-01]\n", + " [ 6.30958636e-02 -3.67192809e-01 9.28002345e-01]\n", + " [ 3.57295487e-02 -3.78735209e-01 9.24815139e-01]\n", + " [ 8.21715318e-03 -3.89987398e-01 9.20783529e-01]\n", + " [-7.29623464e-02 -2.10410567e-01 9.74886603e-01]\n", + " [-6.19355764e-02 -2.35690454e-01 9.69852563e-01]\n", + " [-5.06473422e-02 -2.61278865e-01 9.63933712e-01]\n", + " [-3.91394635e-02 -2.87063363e-01 9.57111659e-01]\n", + " [-2.74544523e-02 -3.12934315e-01 9.49377884e-01]\n", + " [-1.56361568e-02 -3.38783418e-01 9.40734450e-01]\n", + " [-3.73001402e-03 -3.64503174e-01 9.31194675e-01]\n", + " [ 8.21715318e-03 -3.89987398e-01 9.20783529e-01]\n", + " [ 1.14888010e-01 -1.47056277e-01 9.82433304e-01]\n", + " [ 1.29885986e-01 -1.76249865e-01 9.75738498e-01]\n", + " [ 1.44875396e-01 -2.05983867e-01 9.67771547e-01]\n", + " [ 1.59773949e-01 -2.36049579e-01 9.58515979e-01]\n", + " [ 1.74498106e-01 -2.66247566e-01 9.47978188e-01]\n", + " [ 1.88963543e-01 -2.96386641e-01 9.36187876e-01]\n", + " [ 9.88807310e-02 -1.41247573e-01 9.85023718e-01]\n", + " [ 6.79063571e-02 -1.53774176e-01 9.85769866e-01]\n", + " [ 3.62156895e-02 -1.66605685e-01 9.85358295e-01]\n", + " [ 3.99489607e-03 -1.79629087e-01 9.83726299e-01]\n", + " [-2.85685702e-02 -1.92741755e-01 9.80833550e-01]\n", + " [-6.12853580e-02 -2.05850346e-01 9.76662552e-01]\n", + " [ 1.83218487e-01 -3.12235829e-01 9.32169391e-01]\n", + " [ 1.52007441e-01 -3.27153532e-01 9.32665162e-01]\n", + " [ 1.19917369e-01 -3.42000259e-01 9.32016978e-01]\n", + " [ 8.71261785e-02 -3.56664507e-01 9.30160985e-01]\n", + " [ 5.38174186e-02 -3.71041728e-01 9.27055404e-01]\n", + " [ 2.01827928e-02 -3.85033623e-01 9.22681832e-01]\n", + " [-6.80978568e-02 -2.21350835e-01 9.72813697e-01]\n", + " [-5.44014671e-02 -2.52555357e-01 9.66051899e-01]\n", + " [-4.03540356e-02 -2.84111242e-01 9.57941728e-01]\n", + " [-2.60335029e-02 -3.15815591e-01 9.48463373e-01]\n", + " [-1.15206272e-02 -3.47468965e-01 9.37620709e-01]\n", + " [ 3.10033742e-03 -3.78873950e-01 9.25443093e-01]\n", + " [ 1.09607574e-01 -1.36921823e-01 9.84499159e-01]\n", + " [ 1.09607574e-01 -1.36921823e-01 9.84499159e-01]\n", + " [ 8.27049002e-03 -3.89862842e-01 9.20835796e-01]\n", + " [ 8.27049002e-03 -3.89862842e-01 9.20835796e-01]\n", + " [ 1.04137154e-01 -1.51453928e-01 9.82963459e-01]\n", + " [ 7.30880402e-02 -1.64166052e-01 9.83721325e-01]\n", + " [ 4.13125037e-02 -1.77156163e-01 9.83315296e-01]\n", + " [ 8.99636986e-03 -1.90311632e-01 9.81682509e-01]\n", + " [-2.36730093e-02 -2.03530294e-01 9.78782411e-01]\n", + " [-5.65059840e-02 -2.16719067e-01 9.74597312e-01]\n", + " [ 1.19082283e-01 -1.80840866e-01 9.76276596e-01]\n", + " [ 8.78646027e-02 -1.94050414e-01 9.77048744e-01]\n", + " [ 5.58915722e-02 -2.07464109e-01 9.76644652e-01]\n", + " [ 2.33476950e-02 -2.20970711e-01 9.75000938e-01]\n", + " [-9.58007412e-03 -2.34469196e-01 9.72076344e-01]\n", + " [-4.27011613e-02 -2.47866855e-01 9.67852589e-01]\n", + " [ 1.34041431e-01 -2.10753013e-01 9.68305769e-01]\n", + " [ 1.02719295e-01 -2.24419458e-01 9.69063803e-01]\n", + " [ 7.06126205e-02 -2.38220370e-01 9.68640755e-01]\n", + " [ 3.79042545e-02 -2.52045698e-01 9.66972716e-01]\n", + " [ 4.78059525e-03 -2.65794889e-01 9.64017750e-01]\n", + " [-2.85668986e-02 -2.79374876e-01 9.59757058e-01]\n", + " [ 1.48932235e-01 -2.40982125e-01 9.59034309e-01]\n", + " [ 1.17569565e-01 -2.55066674e-01 9.59749128e-01]\n", + " [ 8.53932663e-02 -2.69220229e-01 9.59285389e-01]\n", + " [ 5.25844268e-02 -2.83333209e-01 9.57578807e-01]\n", + " [ 1.93287218e-02 -2.97304651e-01 9.54587002e-01]\n", + " [-1.41817622e-02 -3.11040385e-01 9.50290880e-01]\n", + " [ 1.63670839e-01 -2.71329100e-01 9.48468437e-01]\n", + " [ 1.32330788e-01 -2.85793844e-01 9.49110342e-01]\n", + " [ 1.00148608e-01 -3.00265935e-01 9.48583483e-01]\n", + " [ 6.73037645e-02 -3.14635420e-01 9.46823508e-01]\n", + " [ 3.39810646e-02 -3.28800125e-01 9.43787987e-01]\n", + " [ 3.72784706e-04 -3.42664238e-01 9.39457866e-01]\n", + " [ 1.78172467e-01 -3.01602698e-01 9.36637809e-01]\n", + " [ 1.46917010e-01 -3.16409224e-01 9.37176928e-01]\n", + " [ 1.14791939e-01 -3.31164699e-01 9.36564335e-01]\n", + " [ 8.19754732e-02 -3.45758106e-01 9.34735981e-01]\n", + " [ 4.86514820e-02 -3.60085551e-01 9.31649843e-01]\n", + " [ 1.50119089e-02 -3.74049370e-01 9.27287286e-01]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:fp_optics: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:cartToSphere: vec: [[-0.58169224 -0.2438969 0.77598225]\n", + " [-0.55903131 -0.25334162 0.78949479]\n", + " [-0.53546869 -0.26276813 0.80263702]\n", + " [-0.51107381 -0.27212785 0.81532202]\n", + " [-0.48592227 -0.28137461 0.82747077]\n", + " [-0.46009709 -0.2904644 0.83901198]\n", + " [-0.43368902 -0.29935547 0.84988243]\n", + " [-0.40679608 -0.30800873 0.86002766]\n", + " [-0.58169224 -0.2438969 0.77598225]\n", + " [-0.58557471 -0.27017588 0.7642691 ]\n", + " [-0.58887476 -0.29617805 0.75200072]\n", + " [-0.59158419 -0.32180596 0.73923547]\n", + " [-0.59369978 -0.3469663 0.7260406 ]\n", + " [-0.59522273 -0.37157007 0.71249252]\n", + " [-0.596158 -0.3955321 0.69867732]\n", + " [-0.59651365 -0.41877032 0.68469181]\n", + " [-0.40679608 -0.30800873 0.86002766]\n", + " [-0.4109294 -0.33513193 0.84783466]\n", + " [-0.41467899 -0.36186854 0.83492065]\n", + " [-0.41803527 -0.38811744 0.82134729]\n", + " [-0.42099367 -0.41378362 0.80718489]\n", + " [-0.42355454 -0.43877882 0.79251164]\n", + " [-0.42572295 -0.46302125 0.77741321]\n", + " [-0.42750834 -0.48643462 0.76198293]\n", + " [-0.59651365 -0.41877032 0.68469181]\n", + " [-0.57467331 -0.42935494 0.69671007]\n", + " [-0.55193263 -0.43971281 0.70853583]\n", + " [-0.52836717 -0.44979377 0.72007895]\n", + " [-0.50405588 -0.45955009 0.73126013]\n", + " [-0.47908225 -0.46893659 0.74200989]\n", + " [-0.453535 -0.47791103 0.75226794]\n", + " [-0.42750834 -0.48643462 0.76198293]\n", + " [-0.57194141 -0.24810442 0.78187417]\n", + " [-0.54355343 -0.25967479 0.79819714]\n", + " [-0.51387944 -0.27116908 0.81387668]\n", + " [-0.48305597 -0.2825013 0.82876411]\n", + " [-0.45123589 -0.29359046 0.84272819]\n", + " [-0.41858933 -0.30436077 0.85565618]\n", + " [-0.58338006 -0.25541489 0.77099347]\n", + " [-0.58774829 -0.28744967 0.75625699]\n", + " [-0.59123308 -0.31897127 0.74074339]\n", + " [-0.59382647 -0.34980622 0.7245728 ]\n", + " [-0.59553058 -0.37979056 0.70788591]\n", + " [-0.59635586 -0.40876888 0.69084563]\n", + " [-0.40873724 -0.31984623 0.85477029]\n", + " [-0.41354629 -0.35284148 0.83933447]\n", + " [-0.4177687 -0.385155 0.82287602]\n", + " [-0.42139399 -0.41660932 0.80552082]\n", + " [-0.4244228 -0.44704188 0.78741276]\n", + " [-0.42686627 -0.47630451 0.76871269]\n", + " [-0.58710608 -0.42333152 0.68999774]\n", + " [-0.55972278 -0.43615763 0.70461119]\n", + " [-0.53106188 -0.44859317 0.71884452]\n", + " [-0.50126723 -0.46054928 0.73254729]\n", + " [-0.47049261 -0.4719428 0.74559151]\n", + " [-0.43890364 -0.48269739 0.75786992]\n", + " [-0.58163061 -0.24401939 0.77598993]\n", + " [-0.58163061 -0.24401939 0.77598993]\n", + " [-0.42759258 -0.48632772 0.7620039 ]\n", + " [-0.42759258 -0.48632772 0.7620039 ]\n", + " [-0.57369902 -0.25954378 0.77685678]\n", + " [-0.5780999 -0.29169465 0.76204641]\n", + " [-0.58163155 -0.32331977 0.74643758]\n", + " [-0.58428634 -0.3542453 0.73015049]\n", + " [-0.58606705 -0.38430741 0.71332547]\n", + " [-0.58698493 -0.4133513 0.69612456]\n", + " [-0.5453321 -0.2712243 0.7931269 ]\n", + " [-0.54982148 -0.30366494 0.77812849]\n", + " [-0.55348433 -0.33554539 0.7622758 ]\n", + " [-0.55631358 -0.36669068 0.74568971]\n", + " [-0.55831325 -0.39693719 0.72851025]\n", + " [-0.55949649 -0.42613176 0.71089761]\n", + " [-0.51567612 -0.28280746 0.8087633 ]\n", + " [-0.5202485 -0.31547894 0.79360856]\n", + " [-0.52404138 -0.34755775 0.77755016]\n", + " [-0.52704764 -0.37886779 0.76071018]\n", + " [-0.52927166 -0.40924556 0.74322916]\n", + " [-0.53072754 -0.43853942 0.72526648]\n", + " [-0.48486755 -0.29420667 0.82361757]\n", + " [-0.48951753 -0.32704841 0.80833899]\n", + " [-0.49343992 -0.35926735 0.79211364]\n", + " [-0.49662697 -0.39068651 0.77506497]\n", + " [-0.49908263 -0.4211425 0.75733449]\n", + " [-0.50082096 -0.450485 0.73908161]\n", + " [-0.45305914 -0.3053403 0.83755878]\n", + " [-0.45778103 -0.33829014 0.82218995]\n", + " [-0.46183215 -0.37058989 0.80583758]\n", + " [-0.46520376 -0.40206205 0.78862638]\n", + " [-0.46789867 -0.43254346 0.77069903]\n", + " [-0.4699301 -0.46188489 0.75221542]\n", + " [-0.42042092 -0.31613209 0.85047443]\n", + " [-0.42520843 -0.34912675 0.83504988]\n", + " [-0.42938662 -0.3814473 0.81861169]\n", + " [-0.43294548 -0.41291618 0.8012855 ]\n", + " [-0.43588627 -0.44337064 0.78321494]\n", + " [-0.43822073 -0.47266229 0.76456062]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:fp_optics: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:cartToSphere: vec: [[ 2.33748183e-01 2.98628700e-01 9.25301403e-01]\n", + " [ 2.26647343e-01 2.73304473e-01 9.34845253e-01]\n", + " [ 2.19222063e-01 2.47252494e-01 9.43826198e-01]\n", + " [ 2.11492021e-01 2.20565001e-01 9.52167110e-01]\n", + " [ 2.03479093e-01 1.93336511e-01 9.59800631e-01]\n", + " [ 1.95207891e-01 1.65665555e-01 9.66668921e-01]\n", + " [ 1.86706086e-01 1.37655567e-01 9.72723898e-01]\n", + " [ 1.78004433e-01 1.09414701e-01 9.77927832e-01]\n", + " [ 2.33748183e-01 2.98628700e-01 9.25301403e-01]\n", + " [ 2.06385991e-01 3.07571897e-01 9.28872623e-01]\n", + " [ 1.78912671e-01 3.16139873e-01 9.31689775e-01]\n", + " [ 1.51437122e-01 3.24300182e-01 9.33753817e-01]\n", + " [ 1.24069440e-01 3.32022184e-01 9.35076491e-01]\n", + " [ 9.69208029e-02 3.39276613e-01 9.35680361e-01]\n", + " [ 7.01036688e-02 3.46035120e-01 9.35598830e-01]\n", + " [ 4.37321039e-02 3.52270057e-01 9.34876094e-01]\n", + " [ 1.78004433e-01 1.09414701e-01 9.77927832e-01]\n", + " [ 1.49726682e-01 1.18802639e-01 9.81563984e-01]\n", + " [ 1.21404114e-01 1.28051213e-01 9.84308858e-01]\n", + " [ 9.31503034e-02 1.37125469e-01 9.86164097e-01]\n", + " [ 6.50774533e-02 1.45992798e-01 9.87142861e-01]\n", + " [ 3.72958341e-02 1.54622993e-01 9.87269341e-01]\n", + " [ 9.91432799e-03 1.62987951e-01 9.86578245e-01]\n", + " [-1.69580260e-02 1.71061092e-01 9.85114475e-01]\n", + " [ 4.37321039e-02 3.52270057e-01 9.34876094e-01]\n", + " [ 3.51400944e-02 3.28280134e-01 9.43926548e-01]\n", + " [ 2.64817326e-02 3.03494206e-01 9.52465214e-01]\n", + " [ 1.77787610e-02 2.78009156e-01 9.60413882e-01]\n", + " [ 9.05540884e-03 2.51922913e-01 9.67704937e-01]\n", + " [ 3.38450697e-04 2.25334876e-01 9.74281314e-01]\n", + " [-8.34302473e-03 1.98346409e-01 9.80096473e-01]\n", + " [-1.69580260e-02 1.71061092e-01 9.85114475e-01]\n", + " [ 2.30599640e-01 2.87713905e-01 9.29539948e-01]\n", + " [ 2.21675344e-01 2.56175822e-01 9.40868742e-01]\n", + " [ 2.12283240e-01 2.23636066e-01 9.51274270e-01]\n", + " [ 2.02462665e-01 1.90267593e-01 9.60628499e-01]\n", + " [ 1.92258971e-01 1.56251898e-01 9.68824975e-01]\n", + " [ 1.81724399e-01 1.21781407e-01 9.75779448e-01]\n", + " [ 2.21814656e-01 3.02486825e-01 9.26984347e-01]\n", + " [ 1.88190160e-01 3.13199928e-01 9.30854590e-01]\n", + " [ 1.54506855e-01 3.23317121e-01 9.33591812e-01]\n", + " [ 1.20966948e-01 3.32781261e-01 9.35213147e-01]\n", + " [ 8.77751355e-02 3.41538420e-01 9.35760137e-01]\n", + " [ 5.51391066e-02 3.49536693e-01 9.35298765e-01]\n", + " [ 1.65718099e-01 1.13619508e-01 9.79606104e-01]\n", + " [ 1.31016415e-01 1.25035971e-01 9.83463627e-01]\n", + " [ 9.63602998e-02 1.36207937e-01 9.85982804e-01]\n", + " [ 6.19569513e-02 1.47074389e-01 9.87183094e-01]\n", + " [ 2.80094386e-02 1.57579689e-01 9.87108967e-01]\n", + " [-5.28182177e-03 1.67672770e-01 9.85828557e-01]\n", + " [ 4.00849990e-02 3.41893541e-01 9.38883379e-01]\n", + " [ 2.95081059e-02 3.11942721e-01 9.49642570e-01]\n", + " [ 1.88527004e-02 2.80892449e-01 9.59554067e-01]\n", + " [ 8.16233953e-03 2.48922571e-01 9.68488993e-01]\n", + " [-2.51371084e-03 2.16216132e-01 9.76342289e-01]\n", + " [-1.31210842e-02 1.82960666e-01 9.83032671e-01]\n", + " [ 2.33631214e-01 2.98574629e-01 9.25348392e-01]\n", + " [ 2.33631214e-01 2.98574629e-01 9.25348392e-01]\n", + " [-1.68378137e-02 1.71127707e-01 9.85104967e-01]\n", + " [-1.68378137e-02 1.71127707e-01 9.85104967e-01]\n", + " [ 2.18736793e-01 2.91643162e-01 9.31181229e-01]\n", + " [ 1.84984024e-01 3.02418078e-01 9.35053055e-01]\n", + " [ 1.51177203e-01 3.12617042e-01 9.37771848e-01]\n", + " [ 1.17518908e-01 3.22183199e-01 9.39354721e-01]\n", + " [ 8.42137878e-02 3.31063105e-01 9.39843210e-01]\n", + " [ 5.14691968e-02 3.39205285e-01 9.39303304e-01]\n", + " [ 2.09696104e-01 2.60148568e-01 9.42523350e-01]\n", + " [ 1.75622578e-01 2.71085427e-01 9.46398120e-01]\n", + " [ 1.41509984e-01 2.81503479e-01 9.49068341e-01]\n", + " [ 1.07562142e-01 2.91346407e-01 9.50551238e-01]\n", + " [ 7.39835641e-02 3.00561978e-01 9.50888495e-01]\n", + " [ 4.09803372e-02 3.09100128e-01 9.50146159e-01]\n", + " [ 2.00209712e-01 2.27645097e-01 9.52939547e-01]\n", + " [ 1.65879373e-01 2.38724828e-01 9.56814763e-01]\n", + " [ 1.31527056e-01 2.49344528e-01 9.59441473e-01]\n", + " [ 9.73579420e-02 2.59447786e-01 9.60837279e-01]\n", + " [ 6.35763990e-02 2.68982956e-01 9.61044333e-01]\n", + " [ 3.03870129e-02 2.77901094e-01 9.60128956e-01]\n", + " [ 1.90317562e-01 1.94305557e-01 9.62301708e-01]\n", + " [ 1.55796067e-01 2.05509177e-01 9.66174707e-01]\n", + " [ 1.21271470e-01 2.16313948e-01 9.68762874e-01]\n", + " [ 8.69501524e-02 2.26662655e-01 9.70084384e-01]\n", + " [ 5.30362723e-02 2.36503358e-01 9.70182104e-01]\n", + " [ 1.97329035e-02 2.45787466e-01 9.69122868e-01]\n", + " [ 1.80065742e-01 1.60311207e-01 9.70503295e-01]\n", + " [ 1.45420726e-01 1.71619221e-01 9.74371416e-01]\n", + " [ 1.10792796e-01 1.82592314e-01 9.76926304e-01]\n", + " [ 7.63891076e-02 1.93171869e-01 9.78186758e-01]\n", + " [ 4.24134691e-02 2.03304778e-01 9.78196435e-01]\n", + " [ 9.06760109e-03 2.12941897e-01 9.77022787e-01]\n", + " [ 1.69507144e-01 1.25854220e-01 9.77459996e-01]\n", + " [ 1.34807881e-01 1.37246162e-01 9.81320705e-01]\n", + " [ 1.00146685e-01 1.48369655e-01 9.83848102e-01]\n", + " [ 6.57308633e-02 1.59164325e-01 9.85061506e-01]\n", + " [ 3.17637030e-02 1.69575258e-01 9.85005228e-01]\n", + " [-1.55411467e-03 1.79551981e-01 9.83747260e-01]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:fp_optics: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:cartToSphere: vec: [[ 0.01994317 -0.87097667 -0.49091946]\n", + " [ 0.02247253 -0.85741171 -0.51414019]\n", + " [ 0.02488999 -0.84291968 -0.5374634 ]\n", + " [ 0.02719396 -0.82752388 -0.56077154]\n", + " [ 0.02938359 -0.81125773 -0.58394991]\n", + " [ 0.03145731 -0.79416386 -0.60688896]\n", + " [ 0.03341207 -0.77629372 -0.62948527]\n", + " [ 0.03524331 -0.75770746 -0.65164201]\n", + " [ 0.01994317 -0.87097667 -0.49091946]\n", + " [-0.00699673 -0.87121239 -0.49085641]\n", + " [-0.03450504 -0.87072889 -0.49055133]\n", + " [-0.06246897 -0.86949475 -0.48997602]\n", + " [-0.09077285 -0.86748787 -0.48910641]\n", + " [-0.11930063 -0.86469484 -0.48792438]\n", + " [-0.14793697 -0.8611107 -0.48641856]\n", + " [-0.17656758 -0.856739 -0.48458455]\n", + " [ 0.03524331 -0.75770746 -0.65164201]\n", + " [ 0.00739031 -0.75708643 -0.65327293]\n", + " [-0.02104245 -0.7558427 -0.65441502]\n", + " [-0.04993868 -0.75394745 -0.65503388]\n", + " [-0.07918475 -0.75137946 -0.65510205]\n", + " [-0.10866724 -0.74812536 -0.65459902]\n", + " [-0.13827071 -0.74418011 -0.65351142]\n", + " [-0.16787688 -0.73954757 -0.65183337]\n", + " [-0.17656758 -0.856739 -0.48458455]\n", + " [-0.17579286 -0.84271782 -0.5088453 ]\n", + " [-0.17486676 -0.82773574 -0.53317461]\n", + " [-0.17378467 -0.81181682 -0.55745164]\n", + " [-0.17254402 -0.79499266 -0.58156275]\n", + " [-0.17114435 -0.7773038 -0.60539938]\n", + " [-0.16958734 -0.75880131 -0.62885667]\n", + " [-0.16787688 -0.73954757 -0.65183337]\n", + " [ 0.02096813 -0.86517919 -0.50102426]\n", + " [ 0.02399224 -0.84792779 -0.52956853]\n", + " [ 0.02684667 -0.82930579 -0.55814977]\n", + " [ 0.0295297 -0.80937057 -0.58655543]\n", + " [ 0.03203832 -0.78820057 -0.61458393]\n", + " [ 0.0343663 -0.76589414 -0.6420476 ]\n", + " [ 0.00828259 -0.87112056 -0.49099935]\n", + " [-0.02513223 -0.87092996 -0.49076407]\n", + " [-0.0592893 -0.86962681 -0.49013671]\n", + " [-0.09397665 -0.86716657 -0.48907108]\n", + " [-0.12898076 -0.86352454 -0.48753393]\n", + " [-0.16408971 -0.85869512 -0.48550723]\n", + " [ 0.02317212 -0.75757605 -0.65233548]\n", + " [-0.01136934 -0.75640085 -0.65400955]\n", + " [-0.04666573 -0.75426072 -0.65491456]\n", + " [-0.08250676 -0.75111346 -0.6549971 ]\n", + " [-0.11868342 -0.74693452 -0.65421944]\n", + " [-0.15498193 -0.74171827 -0.65256005]\n", + " [-0.17614988 -0.85076147 -0.49515265]\n", + " [-0.1750983 -0.83292839 -0.52494845]\n", + " [-0.17381473 -0.8136751 -0.5547263 ]\n", + " [-0.17229359 -0.7930566 -0.58427403]\n", + " [-0.17053403 -0.77114771 -0.61339168]\n", + " [-0.16854009 -0.74804717 -0.64188759]\n", + " [ 0.01986097 -0.87093386 -0.49099872]\n", + " [ 0.01986097 -0.87093386 -0.49099872]\n", + " [-0.16778187 -0.73963161 -0.65176247]\n", + " [-0.16778187 -0.73963161 -0.65176247]\n", + " [ 0.00934224 -0.86535151 -0.50107832]\n", + " [-0.02421014 -0.86512126 -0.50097812]\n", + " [-0.05850649 -0.86378093 -0.50045928]\n", + " [-0.09333322 -0.86128663 -0.49947397]\n", + " [-0.12847632 -0.85761378 -0.49798839]\n", + " [-0.1637236 -0.85275665 -0.49598455]\n", + " [ 0.01224662 -0.84805202 -0.52977145]\n", + " [-0.02164994 -0.84769301 -0.53004514]\n", + " [-0.05629281 -0.84623686 -0.52982479]\n", + " [-0.09146624 -0.84364068 -0.52905986]\n", + " [-0.12695619 -0.83987961 -0.52771617]\n", + " [-0.16255004 -0.83494718 -0.52577628]\n", + " [ 0.01500558 -0.82937203 -0.55849519]\n", + " [-0.01916341 -0.82886191 -0.55912494]\n", + " [-0.05407957 -0.82727517 -0.55918798]\n", + " [-0.0895276 -0.82456905 -0.55863288]\n", + " [-0.12529464 -0.82071794 -0.55742562]\n", + " [-0.16116775 -0.8157145 -0.55554911]\n", + " [ 0.01761896 -0.80936955 -0.58703535]\n", + " [-0.01674818 -0.80868673 -0.58800108]\n", + " [-0.05186367 -0.8069541 -0.58833259]\n", + " [-0.08751396 -0.80412875 -0.58797811]\n", + " [-0.12348771 -0.80018452 -0.58690333]\n", + " [-0.15957163 -0.79511366 -0.58509073]\n", + " [ 0.02008424 -0.78812318 -0.61518979]\n", + " [-0.01440667 -0.78724581 -0.61647099]\n", + " [-0.04964805 -0.78535103 -0.61705658]\n", + " [-0.08542828 -0.78239595 -0.61689431]\n", + " [-0.12153736 -0.77835455 -0.61594875]\n", + " [-0.15776166 -0.77321947 -0.61420103]\n", + " [ 0.0223951 -0.76573137 -0.64277051]\n", + " [-0.01214603 -0.76463762 -0.64434602]\n", + " [-0.04744077 -0.76256426 -0.64517062]\n", + " [-0.08327868 -0.75946885 -0.64519124]\n", + " [-0.1194506 -0.75532633 -0.64437077]\n", + " [-0.15574276 -0.75013051 -0.64268842]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:fp_optics: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:cartToSphere: vec: [[-0.66479154 0.68044539 0.30829577]\n", + " [-0.64360503 0.69734551 0.31540736]\n", + " [-0.62147623 0.7140186 0.32240461]\n", + " [-0.59846676 0.73036636 0.32924538]\n", + " [-0.57464311 0.74629908 0.33589133]\n", + " [-0.55007868 0.76173428 0.34230735]\n", + " [-0.5248558 0.77659588 0.34846124]\n", + " [-0.49906644 0.79081434 0.35432382]\n", + " [-0.66479154 0.68044539 0.30829577]\n", + " [-0.66407457 0.6685344 0.33476368]\n", + " [-0.66272896 0.65616178 0.36089063]\n", + " [-0.66076558 0.64338587 0.3865792 ]\n", + " [-0.65820112 0.63027321 0.41173653]\n", + " [-0.65505797 0.61689829 0.43627463]\n", + " [-0.65136451 0.6033427 0.46011071]\n", + " [-0.64715566 0.58969301 0.48316841]\n", + " [-0.49906644 0.79081434 0.35432382]\n", + " [-0.49843759 0.77839221 0.38166155]\n", + " [-0.49736125 0.7653136 0.40856686]\n", + " [-0.49584819 0.75164035 0.43493833]\n", + " [-0.49391473 0.73744121 0.46068287]\n", + " [-0.49158229 0.72279155 0.48571517]\n", + " [-0.48887734 0.70777395 0.50995586]\n", + " [-0.48583145 0.69247947 0.53332916]\n", + " [-0.64715566 0.58969301 0.48316841]\n", + " [-0.62642711 0.60500211 0.49148909]\n", + " [-0.60481138 0.62024929 0.49949375]\n", + " [-0.58236977 0.63534079 0.5071366 ]\n", + " [-0.55917163 0.65018758 0.51437651]\n", + " [-0.53529313 0.66470765 0.52117655]\n", + " [-0.51081682 0.67882693 0.52750373]\n", + " [-0.48583145 0.69247947 0.53332916]\n", + " [-0.6556724 0.68779509 0.31149897]\n", + " [-0.62906493 0.70836772 0.32014448]\n", + " [-0.60110285 0.72850074 0.32857577]\n", + " [-0.57190649 0.74802549 0.33672069]\n", + " [-0.54161124 0.76679004 0.34451457]\n", + " [-0.51037269 0.78465698 0.35189934]\n", + " [-0.6644859 0.6753702 0.31989621]\n", + " [-0.66318342 0.66045413 0.35211943]\n", + " [-0.66094694 0.64490157 0.38373312]\n", + " [-0.65780477 0.62883162 0.41456444]\n", + " [-0.65379819 0.61238131 0.44445141]\n", + " [-0.64898208 0.59570312 0.47324418]\n", + " [-0.49893676 0.78543516 0.36627 ]\n", + " [-0.49786389 0.76976184 0.39949751]\n", + " [-0.49612878 0.75316319 0.43197389]\n", + " [-0.49375917 0.73576296 0.46352426]\n", + " [-0.49079454 0.71769998 0.49399136]\n", + " [-0.48728568 0.69912974 0.52323061]\n", + " [-0.63824558 0.59641661 0.48675435]\n", + " [-0.61223624 0.61515113 0.49674529]\n", + " [-0.58495414 0.63369898 0.50621561]\n", + " [-0.55652374 0.65189412 0.51508773]\n", + " [-0.52708521 0.66958568 0.52329361]\n", + " [-0.49679311 0.68664064 0.53077419]\n", + " [-0.66471939 0.68046357 0.30841121]\n", + " [-0.66471939 0.68046357 0.30841121]\n", + " [-0.48592861 0.6924863 0.53323175]\n", + " [-0.48592861 0.6924863 0.53323175]\n", + " [-0.65543925 0.68268004 0.3230284 ]\n", + " [-0.65414585 0.66768643 0.35537027]\n", + " [-0.65193067 0.65203263 0.38709154]\n", + " [-0.64882222 0.63583783 0.41801912]\n", + " [-0.64486168 0.61923957 0.44799082]\n", + " [-0.64010322 0.60239193 0.47685619]\n", + " [-0.62883312 0.7031979 0.3317855 ]\n", + " [-0.62756843 0.68800647 0.36442414]\n", + " [-0.6254194 0.67209221 0.3964122 ]\n", + " [-0.62241557 0.65557433 0.42757591]\n", + " [-0.61859851 0.6385905 0.45775326]\n", + " [-0.61402136 0.62129704 0.48679333]\n", + " [-0.60087305 0.72328599 0.34030716]\n", + " [-0.59964199 0.70792882 0.37318396]\n", + " [-0.59756852 0.69179274 0.40538212]\n", + " [-0.59468314 0.67499722 0.43672727]\n", + " [-0.59102818 0.65767943 0.4670583 ]\n", + " [-0.58665659 0.63999568 0.49622533]\n", + " [-0.57167944 0.74277581 0.34852075]\n", + " [-0.57048792 0.72728496 0.38157583]\n", + " [-0.56850107 0.71096511 0.4139265 ]\n", + " [-0.56574971 0.69393659 0.44539788]\n", + " [-0.56227642 0.67633638 0.47583015]\n", + " [-0.55813405 0.65832011 0.50507525]\n", + " [-0.54138777 0.76151575 0.35636084]\n", + " [-0.54024234 0.74592409 0.38953237]\n", + " [-0.53835439 0.72945878 0.42197682]\n", + " [-0.53575404 0.71224159 0.45351905]\n", + " [-0.53248315 0.69440994 0.48400054]\n", + " [-0.52859405 0.67611902 0.51327517]\n", + " [-0.51015361 0.77936882 0.36376853]\n", + " [-0.50906077 0.76371056 0.39699283]\n", + " [-0.50728385 0.74713945 0.42947146]\n", + " [-0.50485132 0.72977878 0.46102937]\n", + " [-0.5018034 0.71176694 0.49150907]\n", + " [-0.49819134 0.69325927 0.52076576]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:fp_optics: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:cartToSphere: vec: [[ 0.00390005 0.80883 0.58802961]\n", + " [-0.02302015 0.80743964 0.58950089]\n", + " [-0.0504964 0.80550632 0.59043178]\n", + " [-0.07840637 0.80299413 0.59080696]\n", + " [-0.10663124 0.79987788 0.59061421]\n", + " [-0.13505448 0.79614275 0.58984491]\n", + " [-0.16356104 0.79178396 0.58849465]\n", + " [-0.19203716 0.78680659 0.58656383]\n", + " [ 0.00390005 0.80883 0.58802961]\n", + " [ 0.00461825 0.82436205 0.56604406]\n", + " [ 0.00519146 0.8396157 0.54315607]\n", + " [ 0.00563433 0.85448721 0.51944187]\n", + " [ 0.00595755 0.86888346 0.49498086]\n", + " [ 0.00616855 0.88272112 0.46985677]\n", + " [ 0.0062722 0.89592631 0.44415842]\n", + " [ 0.00627143 0.90843458 0.41798 ]\n", + " [-0.19203716 0.78680659 0.58656383]\n", + " [-0.19320543 0.80296443 0.56384377]\n", + " [-0.19424537 0.8188093 0.54020372]\n", + " [-0.19514386 0.83424148 0.51571312]\n", + " [-0.19588983 0.8491694 0.49044725]\n", + " [-0.19647426 0.86350922 0.46448863]\n", + " [-0.19689027 0.87718509 0.43792754]\n", + " [-0.19713317 0.89012987 0.4108617 ]\n", + " [ 0.00627143 0.90843458 0.41798 ]\n", + " [-0.02175039 0.90816265 0.41805206]\n", + " [-0.05031007 0.90715336 0.41778185]\n", + " [-0.07929285 0.90537083 0.41715262]\n", + " [-0.10858369 0.9027886 0.4161518 ]\n", + " [-0.13806613 0.89939011 0.41477123]\n", + " [-0.16762218 0.89516908 0.41300742]\n", + " [-0.19713317 0.89012987 0.4108617 ]\n", + " [-0.0077586 0.8083416 0.5886626 ]\n", + " [-0.04114293 0.80627837 0.59010376]\n", + " [-0.07524044 0.80336253 0.5907178 ]\n", + " [-0.10983102 0.79954327 0.59048092]\n", + " [-0.14470004 0.79479325 0.58937729]\n", + " [-0.17963622 0.78910779 0.58740081]\n", + " [ 0.00414071 0.81562561 0.57856522]\n", + " [ 0.0049202 0.83448909 0.5510025 ]\n", + " [ 0.00549713 0.85283003 0.52215967]\n", + " [ 0.00589281 0.87047263 0.49218155]\n", + " [ 0.00612096 0.88726348 0.46122235]\n", + " [ 0.00618973 0.90307046 0.42944783]\n", + " [-0.19246378 0.79390131 0.5767828 ]\n", + " [-0.19381009 0.81350712 0.54830996]\n", + " [-0.19495057 0.83254276 0.5185237 ]\n", + " [-0.19586397 0.85083634 0.48756007]\n", + " [-0.19653373 0.86823355 0.45557106]\n", + " [-0.19694808 0.88459832 0.422726 ]\n", + " [-0.00587246 0.9083623 0.41814284]\n", + " [-0.04059219 0.90753775 0.41800419]\n", + " [-0.07600572 0.90556906 0.41733417]\n", + " [-0.11190149 0.9024036 0.41610791]\n", + " [-0.14806506 0.89801094 0.41431039]\n", + " [-0.18427889 0.89238391 0.41193718]\n", + " [ 0.0038118 0.80887958 0.58796198]\n", + " [ 0.0038118 0.80887958 0.58796198]\n", + " [-0.19703193 0.89010553 0.41096298]\n", + " [-0.19703193 0.89010553 0.41096298]\n", + " [-0.00748553 0.81512879 0.5792314 ]\n", + " [-0.00684463 0.8341013 0.55156883]\n", + " [-0.00637803 0.85254077 0.52262181]\n", + " [-0.00606537 0.870272 0.49253411]\n", + " [-0.00589362 0.88714171 0.46145948]\n", + " [-0.00585508 0.90301757 0.42956373]\n", + " [-0.04102463 0.81316447 0.58058637]\n", + " [-0.04076856 0.83239988 0.55267384]\n", + " [-0.04060951 0.8510786 0.52346546]\n", + " [-0.04052917 0.86902674 0.49310233]\n", + " [-0.04051578 0.88609105 0.46173708]\n", + " [-0.04056227 0.90213829 0.42953604]\n", + " [-0.075273 0.81032177 0.58113046]\n", + " [-0.07539366 0.82975307 0.55301504]\n", + " [-0.0755377 0.84861248 0.52359423]\n", + " [-0.07568768 0.86672692 0.49300691]\n", + " [-0.07583198 0.88394276 0.46140514]\n", + " [-0.0759633 0.90012572 0.42895602]\n", + " [-0.1100117 0.80655032 0.58083906]\n", + " [-0.11050383 0.82611124 0.55256594]\n", + " [-0.11094857 0.84509275 0.52298054]\n", + " [-0.1113282 0.86332224 0.49222022]\n", + " [-0.11163028 0.88064559 0.46043677]\n", + " [-0.11184658 0.89692756 0.42779819]\n", + " [-0.14502652 0.80182305 0.5796957 ]\n", + " [-0.14588561 0.8214476 0.55130866]\n", + " [-0.14662876 0.84049223 0.52160599]\n", + " [-0.14723707 0.85878465 0.49072412]\n", + " [-0.14769659 0.87617044 0.45881486]\n", + " [-0.14799772 0.89251368 0.42604694]\n", + " [-0.18010599 0.79613546 0.57769383]\n", + " [-0.18132646 0.81575775 0.54923583]\n", + " [-0.18236426 0.83480622 0.51946305]\n", + " [-0.18319879 0.85310883 0.48851154]\n", + " [-0.1838142 0.8705112 0.45653322]\n", + " [-0.1841993 0.88687721 0.42369734]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:fp_optics: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:cartToSphere: vec: [[-0.20038676 0.30888296 0.92975075]\n", + " [-0.194338 0.28323513 0.93915419]\n", + " [-0.18801081 0.2568454 0.94798859]\n", + " [-0.18142201 0.22980689 0.9561772 ]\n", + " [-0.17459024 0.20221511 0.9636531 ]\n", + " [-0.1675365 0.17416971 0.97035892]\n", + " [-0.16028436 0.14577538 0.97624713]\n", + " [-0.15286004 0.11714166 0.98128061]\n", + " [-0.20038676 0.30888296 0.92975075]\n", + " [-0.2280228 0.30091243 0.92598991]\n", + " [-0.2553593 0.29262463 0.92150011]\n", + " [-0.28229163 0.28405277 0.91631079]\n", + " [-0.30871783 0.27523143 0.91046195]\n", + " [-0.3345384 0.26619614 0.90400424]\n", + " [-0.35965591 0.25698309 0.89699906]\n", + " [-0.38397467 0.24762915 0.88951855]\n", + " [-0.15286004 0.11714166 0.98128061]\n", + " [-0.18148817 0.1090292 0.97733038]\n", + " [-0.20986137 0.10084201 0.97251689]\n", + " [-0.23787007 0.09261374 0.96687151]\n", + " [-0.26540985 0.08437841 0.9604363 ]\n", + " [-0.29238183 0.07617013 0.95326333]\n", + " [-0.31869188 0.06802323 0.94541437]\n", + " [-0.34424906 0.05997263 0.93696097]\n", + " [-0.38397467 0.24762915 0.88951855]\n", + " [-0.37973539 0.22230057 0.89798858]\n", + " [-0.37498624 0.19631239 0.90600594]\n", + " [-0.36974469 0.16976279 0.913493 ]\n", + " [-0.36402935 0.14275145 0.92038289]\n", + " [-0.35786013 0.11537986 0.92661945]\n", + " [-0.35125873 0.08775167 0.93215715]\n", + " [-0.34424906 0.05997263 0.93696097]\n", + " [-0.19788 0.29777077 0.93390367]\n", + " [-0.1902783 0.26582589 0.94505596]\n", + " [-0.18227473 0.23285905 0.95527618]\n", + " [-0.17390285 0.199045 0.96443708]\n", + " [-0.16520131 0.1645673 0.9724331 ]\n", + " [-0.15621463 0.12962074 0.97918101]\n", + " [-0.2124464 0.30536242 0.92823506]\n", + " [-0.24613007 0.29537609 0.92313214]\n", + " [-0.27925959 0.2849462 0.91696224]\n", + " [-0.31164609 0.27413586 0.90979462]\n", + " [-0.34310638 0.26301044 0.90172253]\n", + " [-0.37346184 0.25163683 0.89286346]\n", + " [-0.16539179 0.1137141 0.97965027]\n", + " [-0.20032093 0.10371685 0.974225 ]\n", + " [-0.2347577 0.09364054 0.96753308]\n", + " [-0.26850771 0.08354766 0.95964754]\n", + " [-0.30138879 0.07350104 0.95066419]\n", + " [-0.3332291 0.0635641 0.94070079]\n", + " [-0.38210797 0.23670508 0.89328842]\n", + " [-0.37656616 0.20520575 0.90337618]\n", + " [-0.37027589 0.172813 0.91270556]\n", + " [-0.36327093 0.13970969 0.92114897]\n", + " [-0.35558802 0.10608272 0.92860305]\n", + " [-0.34726797 0.07212379 0.9349883 ]\n", + " [-0.20046147 0.30876995 0.92977219]\n", + " [-0.20046147 0.30876995 0.92977219]\n", + " [-0.34418769 0.06009509 0.93697568]\n", + " [-0.34418769 0.06009509 0.93697568]\n", + " [-0.20991259 0.29435142 0.93235935]\n", + " [-0.24373318 0.28434535 0.92722266]\n", + " [-0.27700205 0.27391639 0.92099928]\n", + " [-0.30953022 0.26312809 0.91375853]\n", + " [-0.34113478 0.2520462 0.9055936 ]\n", + " [-0.37163762 0.24073779 0.89662188]\n", + " [-0.202431 0.26237728 0.94349343]\n", + " [-0.23659781 0.25232804 0.93827077]\n", + " [-0.27022019 0.24191542 0.93191093]\n", + " [-0.30310849 0.2312041 0.92448359]\n", + " [-0.33508062 0.22026074 0.91608197]\n", + " [-0.36596027 0.20915287 0.90682311]\n", + " [-0.1945253 0.22938764 0.95369871]\n", + " [-0.22897614 0.21931494 0.94840439]\n", + " [-0.2628909 0.20894033 0.9419301 ]\n", + " [-0.29607884 0.19832914 0.93434623]\n", + " [-0.32835845 0.1875484 0.92574636]\n", + " [-0.35955529 0.17666573 0.91624735]\n", + " [-0.18622843 0.19555744 0.96284799]\n", + " [-0.2208998 0.18548203 0.95749658]\n", + " [-0.25504512 0.1751686 0.95093004]\n", + " [-0.28847244 0.16468244 0.94321967]\n", + " [-0.32100039 0.15409017 0.93445972]\n", + " [-0.35245606 0.14345881 0.92476716]\n", + " [-0.17757833 0.16107046 0.97083585]\n", + " [-0.21240482 0.15101376 0.96544241]\n", + " [-0.2467177 0.14078534 0.95880648]\n", + " [-0.28032376 0.13044973 0.95100024]\n", + " [-0.31304145 0.12007231 0.94211872]\n", + " [-0.34469881 0.10971888 0.93227919]\n", + " [-0.16861882 0.12612166 0.97757916]\n", + " [-0.20353323 0.11610517 0.97215936]\n", + " [-0.23794923 0.10598521 0.96547776]\n", + " [-0.27167264 0.09582489 0.95760721]\n", + " [-0.3045215 0.08568777 0.94864338]\n", + " [-0.33632404 0.07563792 0.93870392]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:fp_optics: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:cartToSphere: vec: [[-0.78381082 -0.14097665 -0.60478606]\n", + " [-0.7709032 -0.12573377 -0.62441915]\n", + " [-0.75711538 -0.11008674 -0.64393882]\n", + " [-0.74246847 -0.09409227 -0.66323993]\n", + " [-0.72699135 -0.07780825 -0.6822239 ]\n", + " [-0.71072185 -0.06129484 -0.70079768]\n", + " [-0.69370753 -0.0446148 -0.71887369]\n", + " [-0.67600575 -0.02783334 -0.73637051]\n", + " [-0.78381082 -0.14097665 -0.60478606]\n", + " [-0.79587053 -0.11684203 -0.59408589]\n", + " [-0.80717945 -0.09263406 -0.5829925 ]\n", + " [-0.81770165 -0.06844715 -0.57155839]\n", + " [-0.82740921 -0.04437541 -0.55984357]\n", + " [-0.83628182 -0.02051244 -0.54791601]\n", + " [-0.84430633 0.00304849 -0.53585215]\n", + " [-0.85147622 0.02621393 -0.5237376 ]\n", + " [-0.67600575 -0.02783334 -0.73637051]\n", + " [-0.68854716 -0.00295049 -0.72518556]\n", + " [-0.70042823 0.02185485 -0.71338815]\n", + " [-0.71161091 0.04648458 -0.70103431]\n", + " [-0.72206632 0.0708433 -0.68818708]\n", + " [-0.73177464 0.09483885 -0.6749159 ]\n", + " [-0.74072447 0.11838183 -0.66129646]\n", + " [-0.748912 0.14138423 -0.64741124]\n", + " [-0.85147622 0.02621393 -0.5237376 ]\n", + " [-0.83945292 0.04241375 -0.54177474]\n", + " [-0.82650022 0.05879987 -0.55985709]\n", + " [-0.81264301 0.07531203 -0.57787493]\n", + " [-0.79791285 0.09188915 -0.59572767]\n", + " [-0.78234854 0.10846907 -0.61332309]\n", + " [-0.76599668 0.12498867 -0.63057666]\n", + " [-0.748912 0.14138423 -0.64741124]\n", + " [-0.77833498 -0.13430139 -0.61331704]\n", + " [-0.76192158 -0.11533996 -0.6373164 ]\n", + " [-0.7442062 -0.09582792 -0.6610402 ]\n", + " [-0.72523869 -0.0758713 -0.68430431]\n", + " [-0.70508881 -0.05558087 -0.70693743]\n", + " [-0.68384819 -0.03507324 -0.72878084]\n", + " [-0.78911612 -0.13041723 -0.60023919]\n", + " [-0.80339704 -0.10077579 -0.58685385]\n", + " [-0.81651365 -0.07111809 -0.57292903]\n", + " [-0.82841123 -0.04161757 -0.55857211]\n", + " [-0.83905238 -0.01244654 -0.54390825]\n", + " [-0.84841562 0.01622323 -0.52908198]\n", + " [-0.68161385 -0.01703864 -0.73151367]\n", + " [-0.69654567 0.01341818 -0.71738698]\n", + " [-0.7104467 0.04366096 -0.70239534]\n", + " [-0.72325997 0.07351292 -0.68665193]\n", + " [-0.73494891 0.1028043 -0.67028455]\n", + " [-0.74549573 0.13137121 -0.65343533]\n", + " [-0.84632634 0.03317183 -0.53163085]\n", + " [-0.83096212 0.05315898 -0.55378343]\n", + " [-0.8142259 0.07336632 -0.57589371]\n", + " [-0.796173 0.09368176 -0.59777276]\n", + " [-0.77687491 0.11399088 -0.61925072]\n", + " [-0.75642078 0.1341772 -0.64017504]\n", + " [-0.78381067 -0.14084298 -0.6048174 ]\n", + " [-0.78381067 -0.14084298 -0.6048174 ]\n", + " [-0.74894491 0.14125081 -0.6474023 ]\n", + " [-0.74894491 0.14125081 -0.6474023 ]\n", + " [-0.78366185 -0.12383571 -0.608719 ]\n", + " [-0.79800512 -0.09408984 -0.59526039]\n", + " [-0.81118653 -0.06434114 -0.58123716]\n", + " [-0.82315158 -0.03476347 -0.56675655]\n", + " [-0.83386336 -0.00552923 -0.55194322]\n", + " [-0.84330104 0.02319018 -0.53694094]\n", + " [-0.76730273 -0.10477411 -0.63266809]\n", + " [-0.78180705 -0.0747695 -0.6190212 ]\n", + " [-0.79515998 -0.04480078 -0.60474251]\n", + " [-0.80730738 -0.01504318 -0.58993941]\n", + " [-0.81821363 0.01433078 -0.57473567]\n", + " [-0.82785964 0.04315082 -0.55927311]\n", + " [-0.74963207 -0.08518137 -0.65635044]\n", + " [-0.7642745 -0.05497398 -0.64254365]\n", + " [-0.77778181 -0.02484236 -0.62804325]\n", + " [-0.79009983 0.00503702 -0.61295749]\n", + " [-0.80119375 0.03449172 -0.59741016]\n", + " [-0.81104593 0.06335278 -0.58154185]\n", + " [-0.73069949 -0.06516412 -0.67958214]\n", + " [-0.74545682 -0.03481171 -0.66564426]\n", + " [-0.75910183 -0.00457595 -0.65095582]\n", + " [-0.77157991 0.02536584 -0.63562648]\n", + " [-0.78285641 0.05484161 -0.61978079]\n", + " [-0.79291454 0.08368393 -0.60355905]\n", + " [-0.71057442 -0.0448338 -0.70219223]\n", + " [-0.72542274 -0.01439588 -0.68815305]\n", + " [-0.73918859 0.01588392 -0.67331117]\n", + " [-0.7518165 0.04582805 -0.65777788]\n", + " [-0.76327138 0.07526521 -0.64167901]\n", + " [-0.77353647 0.10402959 -0.62515532]\n", + " [-0.68934816 -0.02430759 -0.72402227]\n", + " [-0.7042627 0.0061551 -0.70991279]\n", + " [-0.71813173 0.03641824 -0.69495362]\n", + " [-0.73089871 0.06630471 -0.6792575 ]\n", + " [-0.74252752 0.09564434 -0.66295176]\n", + " [-0.75300075 0.12427278 -0.64617811]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:fp_optics: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:cartToSphere: vec: [[-0.41618299 -0.7023213 0.57752619]\n", + " [-0.43209767 -0.71016216 0.55584288]\n", + " [-0.44797841 -0.71758492 0.53327968]\n", + " [-0.46374316 -0.72452894 0.50990204]\n", + " [-0.47931437 -0.73094088 0.48578098]\n", + " [-0.49461816 -0.73677457 0.46099469]\n", + " [-0.50958426 -0.7419912 0.43562937]\n", + " [-0.52414648 -0.74655984 0.40977906]\n", + " [-0.41618299 -0.7023213 0.57752619]\n", + " [-0.43651485 -0.6831699 0.5854346 ]\n", + " [-0.45647252 -0.66353497 0.59275137]\n", + " [-0.47598485 -0.64350208 0.59945266]\n", + " [-0.4949869 -0.62316435 0.60551974]\n", + " [-0.51342022 -0.60262255 0.61093842]\n", + " [-0.53123269 -0.58198563 0.61569843]\n", + " [-0.54837826 -0.56137147 0.61979299]\n", + " [-0.52414648 -0.74655984 0.40977906]\n", + " [-0.5450872 -0.72670208 0.4180718 ]\n", + " [-0.56547257 -0.70625649 0.42596072]\n", + " [-0.58522897 -0.68531321 0.43341996]\n", + " [-0.60429122 -0.66396847 0.44042932]\n", + " [-0.62260281 -0.64232378 0.44697416]\n", + " [-0.64011521 -0.62048589 0.45304501]\n", + " [-0.65678661 -0.59856781 0.45863702]\n", + " [-0.54837826 -0.56137147 0.61979299]\n", + " [-0.56477744 -0.56750268 0.59913868]\n", + " [-0.58100609 -0.57345037 0.57756956]\n", + " [-0.59697874 -0.57915223 0.55515681]\n", + " [-0.61261537 -0.58455516 0.53197526]\n", + " [-0.62784109 -0.58961484 0.50810423]\n", + " [-0.64258623 -0.59429515 0.48362817]\n", + " [-0.65678661 -0.59856781 0.45863702]\n", + " [-0.4231909 -0.70572231 0.56821253]\n", + " [-0.44268444 -0.71505832 0.54103796]\n", + " [-0.46204479 -0.72370536 0.51260624]\n", + " [-0.48112737 -0.73156225 0.48304568]\n", + " [-0.49979616 -0.738544 0.45250034]\n", + " [-0.51792345 -0.74458241 0.4211322 ]\n", + " [-0.42514361 -0.69406302 0.58097283]\n", + " [-0.44982064 -0.67025469 0.59027116]\n", + " [-0.47386407 -0.64580418 0.59865666]\n", + " [-0.49715179 -0.62087979 0.60609273]\n", + " [-0.51957615 -0.59566707 0.61255316]\n", + " [-0.54104375 -0.57037029 0.61802054]\n", + " [-0.53329091 -0.73796506 0.41353159]\n", + " [-0.55859214 -0.71322115 0.42342699]\n", + " [-0.58298525 -0.68768316 0.43268934]\n", + " [-0.60634674 -0.66152579 0.44127911]\n", + " [-0.62857245 -0.6349359 0.44916931]\n", + " [-0.64957592 -0.60811254 0.45634446]\n", + " [-0.55548622 -0.5641337 0.61089134]\n", + " [-0.57548166 -0.57153436 0.58495242]\n", + " [-0.59513548 -0.57859622 0.55770975]\n", + " [-0.61429813 -0.58521772 0.52929957]\n", + " [-0.63283175 -0.59131719 0.49986794]\n", + " [-0.65061033 -0.59683141 0.46957264]\n", + " [-0.41630746 -0.70228417 0.57748163]\n", + " [-0.41630746 -0.70228417 0.57748163]\n", + " [-0.65668351 -0.59862888 0.45870495]\n", + " [-0.65668351 -0.59862888 0.45870495]\n", + " [-0.4320604 -0.69746798 0.57171866]\n", + " [-0.45681835 -0.6735553 0.58106819]\n", + " [-0.48092225 -0.6489855 0.58951811]\n", + " [-0.50424962 -0.623927 0.59703218]\n", + " [-0.52669275 -0.59856506 0.6035848 ]\n", + " [-0.54815845 -0.57310321 0.60915928]\n", + " [-0.4516376 -0.70672041 0.54458217]\n", + " [-0.47659578 -0.68254437 0.55406646]\n", + " [-0.50084428 -0.6576732 0.56269083]\n", + " [-0.52425967 -0.6322762 0.57041968]\n", + " [-0.54673424 -0.60653813 0.57722888]\n", + " [-0.56817558 -0.58066056 0.58310361]\n", + " [-0.47106532 -0.71529948 0.51618224]\n", + " [-0.49617984 -0.69090821 0.52578647]\n", + " [-0.52053239 -0.66578982 0.53457454]\n", + " [-0.54399885 -0.64011498 0.54251088]\n", + " [-0.56647185 -0.61406855 0.54957206]\n", + " [-0.58786014 -0.58785066 0.55574459]\n", + " [-0.49019849 -0.72310448 0.48664704]\n", + " [-0.51542401 -0.69854732 0.49635646]\n", + " [-0.53983884 -0.67323667 0.50529834]\n", + " [-0.56331852 -0.64734475 0.51343648]\n", + " [-0.58575638 -0.62105697 0.52074725]\n", + " [-0.60706263 -0.59457259 0.5272176 ]\n", + " [-0.50890054 -0.73005096 0.45612041]\n", + " [-0.53419042 -0.70537886 0.4659198 ]\n", + " [-0.55862494 -0.67993233 0.47500548]\n", + " [-0.58207975 -0.653885 0.48334002]\n", + " [-0.60444917 -0.62742296 0.4908988 ]\n", + " [-0.62564497 -0.60074515 0.49766821]\n", + " [-0.52704329 -0.73607121 0.42476411]\n", + " [-0.55234999 -0.71133662 0.43463743]\n", + " [-0.57676141 -0.68581211 0.44385586]\n", + " [-0.60015374 -0.65967221 0.45238043]\n", + " [-0.62242245 -0.63310363 0.46018484]\n", + " [-0.64348066 -0.60630533 0.4672542 ]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:fp_optics: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:cartToSphere: vec: [[-0.23217512 -0.53919247 0.8095469 ]\n", + " [-0.25831318 -0.53487334 0.80447797]\n", + " [-0.28480289 -0.52992997 0.79878754]\n", + " [-0.31151761 -0.52437543 0.79245643]\n", + " [-0.33833631 -0.51822451 0.78547559]\n", + " [-0.36514235 -0.51149458 0.77784597]\n", + " [-0.39182279 -0.50420634 0.76957837]\n", + " [-0.41826829 -0.49638443 0.7606932 ]\n", + " [-0.23217512 -0.53919247 0.8095469 ]\n", + " [-0.22867573 -0.5172322 0.82472921]\n", + " [-0.22508215 -0.4943735 0.8396028 ]\n", + " [-0.22138331 -0.47069849 0.85406812]\n", + " [-0.21757412 -0.44629107 0.86803559]\n", + " [-0.21365487 -0.42123819 0.88142498]\n", + " [-0.20963071 -0.39563079 0.89416511]\n", + " [-0.20551107 -0.36956423 0.90619395]\n", + " [-0.41826829 -0.49638443 0.7606932 ]\n", + " [-0.41650952 -0.47326427 0.77623498]\n", + " [-0.41438339 -0.449289 0.79147066]\n", + " [-0.41187939 -0.42453355 0.80630431]\n", + " [-0.40899139 -0.39907777 0.8206479 ]\n", + " [-0.4057179 -0.37300782 0.83442085]\n", + " [-0.40206223 -0.34641661 0.84755029]\n", + " [-0.39803263 -0.31940344 0.85997178]\n", + " [-0.20551107 -0.36956423 0.90619395]\n", + " [-0.23254838 -0.3635842 0.90206861]\n", + " [-0.25993749 -0.35718574 0.8971348 ]\n", + " [-0.28755892 -0.3503788 0.89137229]\n", + " [-0.31529518 -0.34317705 0.88477028]\n", + " [-0.3430297 -0.33559834 0.87732798]\n", + " [-0.37064682 -0.32766491 0.86905503]\n", + " [-0.39803263 -0.31940344 0.85997178]\n", + " [-0.2435084 -0.537313 0.80746418]\n", + " [-0.27579723 -0.53159707 0.80083734]\n", + " [-0.30848772 -0.52495645 0.79325661]\n", + " [-0.34135481 -0.51741764 0.78470114]\n", + " [-0.37418368 -0.50901267 0.77517267]\n", + " [-0.4067679 -0.49978128 0.76469507]\n", + " [-0.23074904 -0.52971931 0.81618155]\n", + " [-0.22639961 -0.50218918 0.83459526]\n", + " [-0.22189683 -0.47339103 0.85244515]\n", + " [-0.21722883 -0.4434785 0.86956222]\n", + " [-0.21239612 -0.41261179 0.88579873]\n", + " [-0.20740996 -0.38096016 0.90102745]\n", + " [-0.41745551 -0.48644149 0.76753213]\n", + " [-0.41505354 -0.45752139 0.78638714]\n", + " [-0.41208904 -0.42739083 0.80468609]\n", + " [-0.40854891 -0.39619468 0.82226368]\n", + " [-0.40443041 -0.3640916 0.8389716 ]\n", + " [-0.3997417 -0.33125533 0.85467917]\n", + " [-0.21726266 -0.36709904 0.904453 ]\n", + " [-0.25065152 -0.35948832 0.89885592]\n", + " [-0.28444973 -0.35125846 0.89202345]\n", + " [-0.3184403 -0.34243303 0.88393178]\n", + " [-0.35240859 -0.3330449 0.87457949]\n", + " [-0.38614236 -0.32313687 0.8639888 ]\n", + " [-0.23225194 -0.53910531 0.80958292]\n", + " [-0.23225194 -0.53910531 0.80958292]\n", + " [-0.39795391 -0.3195252 0.85996299]\n", + " [-0.39795391 -0.3195252 0.85996299]\n", + " [-0.24205726 -0.52787929 0.81409565]\n", + " [-0.23783391 -0.50021635 0.83259752]\n", + " [-0.2334275 -0.47128772 0.85052894]\n", + " [-0.22882692 -0.44124581 0.86772137]\n", + " [-0.22403329 -0.41025018 0.88402708]\n", + " [-0.21905828 -0.37847005 0.89931857]\n", + " [-0.2744895 -0.52204085 0.80754496]\n", + " [-0.27061694 -0.49403752 0.82625262]\n", + " [-0.26648082 -0.46477512 0.84437673]\n", + " [-0.26207162 -0.43440291 0.86174972]\n", + " [-0.25739148 -0.40307913 0.87822369]\n", + " [-0.2524527 -0.37097338 0.89367018]\n", + " [-0.30731979 -0.51529555 0.80001565]\n", + " [-0.30379164 -0.4870025 0.81886458]\n", + " [-0.29992447 -0.45745761 0.83712475]\n", + " [-0.29570929 -0.42680778 0.85462924]\n", + " [-0.2911482 -0.39521062 0.87122976]\n", + " [-0.28625336 -0.36283664 0.88679681]\n", + " [-0.34032406 -0.50766885 0.79148713]\n", + " [-0.33713643 -0.47913424 0.81041311]\n", + " [-0.33353873 -0.44935664 0.82875239]\n", + " [-0.32952144 -0.41848149 0.8463385 ]\n", + " [-0.32508577 -0.38666635 0.86302282]\n", + " [-0.32024309 -0.35408282 0.87867498]\n", + " [-0.37328784 -0.49919201 0.78196133]\n", + " [-0.37043734 -0.47046244 0.80090029]\n", + " [-0.36710958 -0.44050138 0.81926131]\n", + " [-0.36329375 -0.40945357 0.83687838]\n", + " [-0.35898959 -0.37747695 0.85360274]\n", + " [-0.35420723 -0.34474418 0.86930357]\n", + " [-0.40600443 -0.48990438 0.77146231]\n", + " [-0.40348653 -0.46102585 0.79035042]\n", + " [-0.40042774 -0.43093072 0.80867567]\n", + " [-0.39681557 -0.39976371 0.82627258]\n", + " [-0.39264794 -0.3676833 0.84299264]\n", + " [-0.38793355 -0.334863 0.85870503]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:fp_optics: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:cartToSphere: vec: [[0.7824608 0.56579397 0.26006207]\n", + " [0.79958686 0.54544063 0.25130735]\n", + " [0.81640871 0.52424091 0.24217409]\n", + " [0.83282411 0.50225534 0.23268774]\n", + " [0.84873876 0.47955042 0.22287645]\n", + " [0.864066 0.45619973 0.21277159]\n", + " [0.8787271 0.43228431 0.2024079 ]\n", + " [0.89265207 0.40789224 0.19182336]\n", + " [0.7824608 0.56579397 0.26006207]\n", + " [0.78182201 0.55379098 0.28647844]\n", + " [0.7805916 0.5412913 0.31253879]\n", + " [0.77878547 0.52834833 0.3381438 ]\n", + " [0.77642916 0.51501989 0.3631973 ]\n", + " [0.77355803 0.50136771 0.38760597]\n", + " [0.77021779 0.48745726 0.41127846]\n", + " [0.76646505 0.47335776 0.43412414]\n", + " [0.89265207 0.40789224 0.19182336]\n", + " [0.89188902 0.39558415 0.21919661]\n", + " [0.89032955 0.38295893 0.24628388]\n", + " [0.88799123 0.37007139 0.2729812 ]\n", + " [0.88490175 0.35697977 0.29918945]\n", + " [0.88109845 0.34374521 0.32481495]\n", + " [0.87662787 0.33043157 0.3497693 ]\n", + " [0.87154555 0.31710567 0.37396838]\n", + " [0.76646505 0.47335776 0.43412414]\n", + " [0.78262233 0.45279424 0.42717638]\n", + " [0.79855749 0.43152735 0.41963089]\n", + " [0.81416432 0.40962282 0.41151623]\n", + " [0.82934741 0.38715071 0.40286128]\n", + " [0.84402119 0.36418607 0.39369624]\n", + " [0.85810952 0.34080923 0.38405353]\n", + " [0.87154555 0.31710567 0.37396838]\n", + " [0.78995714 0.55698728 0.25638425]\n", + " [0.81075561 0.53146525 0.2453977 ]\n", + " [0.83099463 0.50473157 0.23386742]\n", + " [0.85049737 0.4769061 0.22184409]\n", + " [0.8691043 0.44812436 0.20938544]\n", + " [0.8866741 0.41853849 0.19655681]\n", + " [0.7823146 0.56055667 0.2715881 ]\n", + " [0.78113215 0.54550492 0.30373829]\n", + " [0.77907564 0.52975979 0.33525471]\n", + " [0.77618804 0.51342588 0.36595899]\n", + " [0.77253456 0.49661685 0.39567924]\n", + " [0.7682038 0.47945474 0.42424766]\n", + " [0.89237171 0.40265232 0.20382305]\n", + " [0.89089935 0.38734743 0.23719258]\n", + " [0.88824716 0.37162009 0.27002869]\n", + " [0.88446193 0.35557613 0.30214685]\n", + " [0.87961233 0.33932809 0.33337456]\n", + " [0.87378779 0.32299471 0.36355097]\n", + " [0.7735436 0.46453093 0.43109317]\n", + " [0.79321173 0.43884691 0.42217121]\n", + " [0.81243935 0.41217115 0.41237997]\n", + " [0.83104638 0.38463078 0.40177242]\n", + " [0.84887526 0.35636399 0.39040427]\n", + " [0.86578965 0.32752083 0.37833635]\n", + " [0.7825186 0.56568573 0.26012363]\n", + " [0.7825186 0.56568573 0.26012363]\n", + " [0.87151913 0.31723269 0.37392221]\n", + " [0.87151913 0.31723269 0.37392221]\n", + " [0.78975064 0.55183924 0.26789437]\n", + " [0.78854403 0.5367421 0.30017702]\n", + " [0.78643812 0.52096434 0.33183013]\n", + " [0.7834758 0.50461107 0.36267525]\n", + " [0.77972193 0.48779632 0.39254103]\n", + " [0.77526452 0.47064234 0.42126087]\n", + " [0.81054251 0.52626995 0.25702291]\n", + " [0.80927191 0.51106451 0.28964125]\n", + " [0.80703516 0.49521727 0.32164283]\n", + " [0.80387528 0.47883453 0.35284844]\n", + " [0.79985686 0.46203121 0.38308767]\n", + " [0.79506674 0.44492991 0.41219687]\n", + " [0.83077568 0.49949886 0.24558635]\n", + " [0.82944743 0.48421608 0.27848116]\n", + " [0.82709269 0.46833463 0.31077381]\n", + " [0.82375514 0.45196156 0.34228384]\n", + " [0.81949982 0.43521219 0.37284098]\n", + " [0.81441336 0.41820904 0.40228358]\n", + " [0.85027333 0.47164614 0.23363473]\n", + " [0.84889384 0.45631806 0.26674532]\n", + " [0.84643399 0.44043894 0.29927085]\n", + " [0.84293837 0.42411608 0.33102939]\n", + " [0.83847301 0.40746461 0.36185026]\n", + " [0.83312503 0.39060643 0.39157287]\n", + " [0.86887596 0.4428476 0.22122517]\n", + " [0.86745204 0.427507 0.25448914]\n", + " [0.86490059 0.41166737 0.287188 ]\n", + " [0.86126722 0.39543572 0.31913847]\n", + " [0.85661914 0.3789264 0.35016914]\n", + " [0.8510444 0.36226021 0.38011968]\n", + " [0.88644229 0.41325555 0.20842244]\n", + " [0.88498121 0.39793552 0.24177587]\n", + " [0.88235262 0.38217244 0.2745871 ]\n", + " [0.87860303 0.36607253 0.30667184]\n", + " [0.87380077 0.34974886 0.33785788]\n", + " [0.86803493 0.33332075 0.36798456]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:fp_optics: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:cartToSphere: vec: [[-0.08383105 -0.21430658 0.9731624 ]\n", + " [-0.07291536 -0.23962637 0.96812321]\n", + " [-0.06172465 -0.26525117 0.96220158]\n", + " [-0.05030047 -0.29106839 0.95537901]\n", + " [-0.03868491 -0.31696821 0.94764689]\n", + " [-0.02692138 -0.34284216 0.93900718]\n", + " [-0.0150549 -0.36858256 0.9294731 ]\n", + " [-0.00313197 -0.39408304 0.9190695 ]\n", + " [-0.08383105 -0.21430658 0.9731624 ]\n", + " [-0.11040676 -0.22484183 0.96812009]\n", + " [-0.13676639 -0.23524324 0.96226585]\n", + " [-0.16280731 -0.24547552 0.95563359]\n", + " [-0.18842792 -0.25550772 0.94826722]\n", + " [-0.21352747 -0.2653136 0.94022057]\n", + " [-0.23800558 -0.27487183 0.9315572 ]\n", + " [-0.26176181 -0.28416593 0.92235052]\n", + " [-0.00313197 -0.39408304 0.9190695 ]\n", + " [-0.03067111 -0.40483423 0.91387556]\n", + " [-0.05809245 -0.41518914 0.90787843]\n", + " [-0.08528832 -0.42511216 0.90111351]\n", + " [-0.11215433 -0.43457344 0.89362595]\n", + " [-0.13858989 -0.44354884 0.88547008]\n", + " [-0.16449748 -0.45201955 0.87670913]\n", + " [-0.18978112 -0.45997147 0.86741534]\n", + " [-0.26176181 -0.28416593 0.92235052]\n", + " [-0.25279289 -0.30911814 0.91681063]\n", + " [-0.24331476 -0.33431358 0.91051214]\n", + " [-0.23337041 -0.35963501 0.90343838]\n", + " [-0.22300235 -0.38496925 0.89558284]\n", + " [-0.21225291 -0.41020679 0.88694932]\n", + " [-0.2011647 -0.43524165 0.87755198]\n", + " [-0.18978112 -0.45997147 0.86741534]\n", + " [-0.07919973 -0.22533757 0.97105632]\n", + " [-0.06563216 -0.25658941 0.96428953]\n", + " [-0.05169259 -0.28818704 0.95617786]\n", + " [-0.03745824 -0.31992726 0.94670134]\n", + " [-0.02300906 -0.35161028 0.93586366]\n", + " [-0.00842855 -0.38303835 0.92369399]\n", + " [-0.09540167 -0.21900008 0.97104968]\n", + " [-0.12784159 -0.23182697 0.96431986]\n", + " [-0.15985489 -0.2444171 0.956403 ]\n", + " [-0.19125413 -0.25671168 0.94737584]\n", + " [-0.22185375 -0.26866241 0.93733741]\n", + " [-0.25146894 -0.28023206 0.92640885]\n", + " [-0.01518742 -0.39873015 0.91694253]\n", + " [-0.04887376 -0.41164523 0.91003272]\n", + " [-0.08227577 -0.42392926 0.90195049]\n", + " [-0.11519989 -0.43552485 0.89277494]\n", + " [-0.14746081 -0.44638754 0.88260607]\n", + " [-0.17887976 -0.45648466 0.87156399]\n", + " [-0.25783631 -0.29497658 0.92005938]\n", + " [-0.24649478 -0.32573744 0.91276254]\n", + " [-0.23443131 -0.35674673 0.90430843]\n", + " [-0.22172438 -0.3877944 0.89468084]\n", + " [-0.20845195 -0.41867885 0.88388676]\n", + " [-0.19469279 -0.44920645 0.87195659]\n", + " [-0.08388537 -0.21442872 0.97313081]\n", + " [-0.08388537 -0.21442872 0.97313081]\n", + " [-0.18973522 -0.45986123 0.86748383]\n", + " [-0.18973522 -0.45986123 0.86748383]\n", + " [-0.09076174 -0.22992477 0.96896693]\n", + " [-0.12333705 -0.24277882 0.96220913]\n", + " [-0.15549413 -0.25536961 0.95425779]\n", + " [-0.18704542 -0.26763794 0.9451899 ]\n", + " [-0.21780575 -0.27953526 0.93510464]\n", + " [-0.24759086 -0.29102421 0.92412319]\n", + " [-0.07730932 -0.26121592 0.96217956]\n", + " [-0.1102276 -0.27413229 0.95535405]\n", + " [-0.142751 -0.28671202 0.94732168]\n", + " [-0.17469141 -0.29889504 0.93816026]\n", + " [-0.20586456 -0.31063219 0.92796952]\n", + " [-0.23608811 -0.32188596 0.91687067]\n", + " [-0.06346345 -0.29284447 0.95405163]\n", + " [-0.09666416 -0.30580064 0.94717581]\n", + " [-0.12949341 -0.31834893 0.93908754]\n", + " [-0.16176203 -0.33042887 0.92986548]\n", + " [-0.19328627 -0.34199134 0.91960989]\n", + " [-0.22388565 -0.35299906 0.90844201]\n", + " [-0.04930078 -0.32460693 0.94456327]\n", + " [-0.08272213 -0.33757936 0.93765517]\n", + " [-0.11579625 -0.35007452 0.92953701]\n", + " [-0.14833257 -0.36203223 0.92028806]\n", + " [-0.18014734 -0.37340411 0.91000896]\n", + " [-0.21106146 -0.38415379 0.89882085]\n", + " [-0.03490053 -0.35630325 0.93371834]\n", + " [-0.06847891 -0.36926772 0.92679663]\n", + " [-0.10173566 -0.38168765 0.91867535]\n", + " [-0.13447879 -0.39350374 0.90943404]\n", + " [-0.16652406 -0.40466901 0.89917336]\n", + " [-0.19769301 -0.41514855 0.88801416]\n", + " [-0.02034558 -0.38773547 0.92154613]\n", + " [-0.05401551 -0.40066768 0.91462984]\n", + " [-0.0873911 -0.41299079 0.90653263]\n", + " [-0.1202791 -0.42464689 0.89733381]\n", + " [-0.15249453 -0.43559082 0.88713362]\n", + " [-0.18385881 -0.44578935 0.87605239]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:fp_optics: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:cartToSphere: vec: [[ 0.24264962 -0.76069186 0.60205403]\n", + " [ 0.24632251 -0.77625816 0.58030034]\n", + " [ 0.24974431 -0.79160228 0.55766802]\n", + " [ 0.25289953 -0.80662633 0.53422448]\n", + " [ 0.25577562 -0.82123848 0.51004528]\n", + " [ 0.25836164 -0.83535511 0.48521243]\n", + " [ 0.26064771 -0.8489017 0.45981373]\n", + " [ 0.26262492 -0.86181321 0.43394256]\n", + " [ 0.24264962 -0.76069186 0.60205403]\n", + " [ 0.21644838 -0.7662655 0.60496883]\n", + " [ 0.18953596 -0.77147245 0.60737664]\n", + " [ 0.16201252 -0.77625252 0.6092487 ]\n", + " [ 0.13398326 -0.78055208 0.61056281]\n", + " [ 0.10555607 -0.78432603 0.61130237]\n", + " [ 0.0768407 -0.78753865 0.61145596]\n", + " [ 0.04794834 -0.79016382 0.61101726]\n", + " [ 0.26262492 -0.86181321 0.43394256]\n", + " [ 0.23563876 -0.86879781 0.43550516]\n", + " [ 0.20790927 -0.87522908 0.43674684]\n", + " [ 0.17953947 -0.88104141 0.43764324]\n", + " [ 0.15063218 -0.88617888 0.43817455]\n", + " [ 0.12129246 -0.89059475 0.43832537]\n", + " [ 0.09162989 -0.89425141 0.43808491]\n", + " [ 0.06175947 -0.89712073 0.43744732]\n", + " [ 0.04794834 -0.79016382 0.61101726]\n", + " [ 0.04998602 -0.80686553 0.58861653]\n", + " [ 0.05201786 -0.82324805 0.56529355]\n", + " [ 0.05403407 -0.83920941 0.54111725]\n", + " [ 0.05602529 -0.85465737 0.51616077]\n", + " [ 0.05798243 -0.86950808 0.49050355]\n", + " [ 0.05989665 -0.88368531 0.46423342]\n", + " [ 0.06175947 -0.89712073 0.43744732]\n", + " [ 0.24419212 -0.76751977 0.59269183]\n", + " [ 0.24852612 -0.7864621 0.56543093]\n", + " [ 0.25246733 -0.80497283 0.53691619]\n", + " [ 0.25599152 -0.82288022 0.50728343]\n", + " [ 0.25907849 -0.84003042 0.47668358]\n", + " [ 0.26171045 -0.85629015 0.4452806 ]\n", + " [ 0.23133195 -0.76321696 0.60331202]\n", + " [ 0.19872825 -0.76981034 0.60654689]\n", + " [ 0.16515506 -0.77579237 0.60899097]\n", + " [ 0.13080415 -0.78106147 0.61060074]\n", + " [ 0.09587407 -0.78553467 0.6113456 ]\n", + " [ 0.06056747 -0.78915021 0.61120662]\n", + " [ 0.25095065 -0.86487875 0.43475109]\n", + " [ 0.2173634 -0.87307533 0.43645461]\n", + " [ 0.18276208 -0.88037459 0.43765123]\n", + " [ 0.14733603 -0.88666959 0.43830257]\n", + " [ 0.11127893 -0.89187426 0.43838031]\n", + " [ 0.07479479 -0.8959233 0.43786663]\n", + " [ 0.04893622 -0.79747011 0.60137066]\n", + " [ 0.0514319 -0.81773838 0.57328762]\n", + " [ 0.05390885 -0.8374248 0.54388743]\n", + " [ 0.05634966 -0.85635557 0.51330289]\n", + " [ 0.05873757 -0.87437621 0.48168054]\n", + " [ 0.06105646 -0.89134963 0.44918587]\n", + " [ 0.24257431 -0.76076497 0.60199199]\n", + " [ 0.24257431 -0.76076497 0.60199199]\n", + " [ 0.06185556 -0.89706767 0.43754254]\n", + " [ 0.06185556 -0.89706767 0.43754254]\n", + " [ 0.232909 -0.77002472 0.5939826 ]\n", + " [ 0.20018461 -0.77675433 0.59714223]\n", + " [ 0.16648544 -0.78284974 0.59952388]\n", + " [ 0.13200467 -0.78820774 0.60108512]\n", + " [ 0.09694131 -0.79274485 0.60179564]\n", + " [ 0.06149824 -0.7963992 0.60163633]\n", + " [ 0.23714032 -0.78910907 0.56663158]\n", + " [ 0.20411417 -0.79620136 0.56956194]\n", + " [ 0.17010168 -0.80259616 0.57175591]\n", + " [ 0.1352979 -0.80818773 0.57317281]\n", + " [ 0.09990178 -0.81289211 0.57378223]\n", + " [ 0.06411662 -0.81664757 0.57356412]\n", + " [ 0.24099979 -0.80774748 0.53801776]\n", + " [ 0.20773519 -0.81516341 0.54069835]\n", + " [ 0.17347582 -0.8218235 0.54268985]\n", + " [ 0.13841621 -0.82762133 0.5439521 ]\n", + " [ 0.10275409 -0.83247306 0.54445403]\n", + " [ 0.06669299 -0.83631692 0.54417466]\n", + " [ 0.24446459 -0.82576661 0.50827804]\n", + " [ 0.21102708 -0.83346484 0.51068966]\n", + " [ 0.17658797 -0.84035591 0.51246329]\n", + " [ 0.14133996 -0.84633342 0.51355891]\n", + " [ 0.10547919 -0.85131337 0.51394522]\n", + " [ 0.06920944 -0.85523338 0.51360094]\n", + " [ 0.24751492 -0.84301205 0.47756366]\n", + " [ 0.21397011 -0.85095072 0.47968704]\n", + " [ 0.17941779 -0.85803874 0.48122633]\n", + " [ 0.14404871 -0.86416963 0.48214191]\n", + " [ 0.10805759 -0.86925875 0.48240314]\n", + " [ 0.0716484 -0.87324255 0.48198959]\n", + " [ 0.25013288 -0.85935029 0.44603881]\n", + " [ 0.21654542 -0.86748715 0.44785503]\n", + " [ 0.18194543 -0.87473757 0.44914368]\n", + " [ 0.14652243 -0.88099474 0.44986603]\n", + " [ 0.11047022 -0.88617302 0.44999302]\n", + " [ 0.07399286 -0.89020749 0.44950604]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:fp_optics: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:cartToSphere: vec: [[-0.18816911 -0.85484554 -0.48356126]\n", + " [-0.18750989 -0.84081123 -0.50781543]\n", + " [-0.18668519 -0.82581817 -0.53214002]\n", + " [-0.18569023 -0.80989039 -0.55641414]\n", + " [-0.18452207 -0.79305946 -0.58052416]\n", + " [-0.18317975 -0.77536591 -0.60436155]\n", + " [-0.1816644 -0.75686082 -0.62782143]\n", + " [-0.17997945 -0.73760658 -0.65080253]\n", + " [-0.18816911 -0.85484554 -0.48356126]\n", + " [-0.21659918 -0.84939564 -0.48126069]\n", + " [-0.24475484 -0.84320205 -0.47864953]\n", + " [-0.27252842 -0.83629758 -0.47574639]\n", + " [-0.2998151 -0.82872322 -0.47257669]\n", + " [-0.32651313 -0.82052805 -0.46917256]\n", + " [-0.35252448 -0.81176909 -0.46557216]\n", + " [-0.37775666 -0.80251111 -0.46181795]\n", + " [-0.17997945 -0.73760658 -0.65080253]\n", + " [-0.20938674 -0.7320388 -0.64828728]\n", + " [-0.23851026 -0.72583048 -0.64519995]\n", + " [-0.26723753 -0.71901563 -0.64156108]\n", + " [-0.29546272 -0.71163571 -0.63739815]\n", + " [-0.32308628 -0.70373912 -0.63274522]\n", + " [-0.35001297 -0.69538137 -0.62764295]\n", + " [-0.3761493 -0.68662567 -0.62213897]\n", + " [-0.37775666 -0.80251111 -0.46181795]\n", + " [-0.37874696 -0.78831846 -0.48487601]\n", + " [-0.37934055 -0.77328101 -0.50807206]\n", + " [-0.37952799 -0.75742422 -0.53128811]\n", + " [-0.3793039 -0.74078266 -0.55440924]\n", + " [-0.37866579 -0.72339962 -0.57732592]\n", + " [-0.37761349 -0.7053271 -0.59993478]\n", + " [-0.3761493 -0.68662567 -0.62213897]\n", + " [-0.1879996 -0.84882826 -0.49411207]\n", + " [-0.18708204 -0.83098019 -0.52390098]\n", + " [-0.18591078 -0.81171517 -0.5536747 ]\n", + " [-0.18447966 -0.79108814 -0.58322107]\n", + " [-0.18278689 -0.76917391 -0.61234014]\n", + " [-0.18083552 -0.74607124 -0.64084025]\n", + " [-0.20058988 -0.85251615 -0.48267993]\n", + " [-0.23526399 -0.84533275 -0.47964924]\n", + " [-0.26941863 -0.83706401 -0.47616956]\n", + " [-0.30285959 -0.82778202 -0.47228486]\n", + " [-0.33539964 -0.8175771 -0.46805423]\n", + " [-0.36686045 -0.80655747 -0.46354984]\n", + " [-0.19283462 -0.73532664 -0.64969958]\n", + " [-0.2286998 -0.72806803 -0.6462301 ]\n", + " [-0.26402628 -0.71988012 -0.64192113]\n", + " [-0.29861642 -0.71083616 -0.63682037]\n", + " [-0.33228672 -0.70102532 -0.63099052]\n", + " [-0.36486264 -0.69055293 -0.62450933]\n", + " [-0.37815119 -0.79646061 -0.47186034]\n", + " [-0.37909874 -0.77849521 -0.50022929]\n", + " [-0.37944063 -0.75928503 -0.52868805]\n", + " [-0.37916539 -0.73888993 -0.55702359]\n", + " [-0.37826834 -0.71738964 -0.58503433]\n", + " [-0.3767502 -0.69488344 -0.61253268]\n", + " [-0.1882647 -0.85478186 -0.48363661]\n", + " [-0.1882647 -0.85478186 -0.48363661]\n", + " [-0.37606708 -0.68672116 -0.62208327]\n", + " [-0.37606708 -0.68672116 -0.62208327]\n", + " [-0.20037305 -0.84655422 -0.49314966]\n", + " [-0.23518258 -0.83934937 -0.49008345]\n", + " [-0.26947028 -0.83106251 -0.48653969]\n", + " [-0.3030417 -0.821766 -0.4825623 ]\n", + " [-0.33570928 -0.81155022 -0.47821074]\n", + " [-0.36729362 -0.80052333 -0.47355865]\n", + " [-0.19957683 -0.82868562 -0.52292374]\n", + " [-0.23472681 -0.82143131 -0.51976334]\n", + " [-0.26934869 -0.81310868 -0.51604802]\n", + " [-0.3032475 -0.80379105 -0.51182116]\n", + " [-0.3362359 -0.79356927 -0.50714223]\n", + " [-0.36813333 -0.78255128 -0.50208699]\n", + " [-0.19850405 -0.80940458 -0.55268469]\n", + " [-0.23393035 -0.80211798 -0.54943912]\n", + " [-0.26882288 -0.79378319 -0.54556622]\n", + " [-0.30298612 -0.78447457 -0.5411091 ]\n", + " [-0.3362338 -0.77428346 -0.53612681]\n", + " [-0.36838637 -0.76331764 -0.53069545]\n", + " [-0.19714805 -0.78876622 -0.58222031]\n", + " [-0.23278545 -0.78146539 -0.5788979 ]\n", + " [-0.26788459 -0.77314343 -0.57488006]\n", + " [-0.30224923 -0.76387529 -0.57021044]\n", + " [-0.33569439 -0.75375245 -0.56494825]\n", + " [-0.36804246 -0.74288232 -0.55916957]\n", + " [-0.19550622 -0.76684555 -0.6113307 ]\n", + " [-0.23128749 -0.75954951 -0.60793967]\n", + " [-0.26652819 -0.7512666 -0.60378905]\n", + " [-0.3010313 -0.74207163 -0.59892391]\n", + " [-0.33461286 -0.73205553 -0.59340453]\n", + " [-0.36709713 -0.72132502 -0.58730734]\n", + " [-0.19358071 -0.74374146 -0.63982431]\n", + " [-0.22943647 -0.73646968 -0.63637357]\n", + " [-0.26475242 -0.7282524 -0.63210331]\n", + " [-0.299331 -0.71916341 -0.62706055]\n", + " [-0.33298872 -0.70929241 -0.62130732]\n", + " [-0.3655509 -0.69874514 -0.61492095]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:fp_optics: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:cartToSphere: vec: [[-0.29586076 0.76957366 0.56588231]\n", + " [-0.32125834 0.76051943 0.56427234]\n", + " [-0.34695577 0.75078873 0.5620836 ]\n", + " [-0.37283347 0.7403842 0.55930889]\n", + " [-0.39877245 0.72931668 0.55594758]\n", + " [-0.42465686 0.71760568 0.55200421]\n", + " [-0.45037508 0.70527958 0.5474879 ]\n", + " [-0.47582015 0.69237573 0.54241224]\n", + " [-0.29586076 0.76957366 0.56588231]\n", + " [-0.29705832 0.78490673 0.54376261]\n", + " [-0.29819792 0.79993867 0.52074575]\n", + " [-0.29925309 0.81457636 0.49690334]\n", + " [-0.30019937 0.82873323 0.47231512]\n", + " [-0.30101623 0.84233044 0.44706673]\n", + " [-0.30168801 0.85529743 0.42124891]\n", + " [-0.30220411 0.86757216 0.39495725]\n", + " [-0.47582015 0.69237573 0.54241224]\n", + " [-0.47889595 0.70777364 0.51934107]\n", + " [-0.48165308 0.72291915 0.49537683]\n", + " [-0.48405833 0.73771836 0.47059447]\n", + " [-0.48608381 0.75208608 0.44507198]\n", + " [-0.4877068 0.76594462 0.41889248]\n", + " [-0.48890968 0.77922301 0.39214644]\n", + " [-0.48968015 0.791857 0.36493265]\n", + " [-0.30220411 0.86757216 0.39495725]\n", + " [-0.32879821 0.85928603 0.39181534]\n", + " [-0.35565335 0.85014287 0.38828829]\n", + " [-0.38264625 0.84014197 0.38437393]\n", + " [-0.40965918 0.8292909 0.38007362]\n", + " [-0.43657763 0.81760647 0.37539264]\n", + " [-0.46328853 0.80511581 0.37034075]\n", + " [-0.48968015 0.791857 0.36493265]\n", + " [-0.30689441 0.76576202 0.56517639]\n", + " [-0.33823959 0.75421071 0.56281452]\n", + " [-0.36991644 0.7416449 0.55957543]\n", + " [-0.40170545 0.72808109 0.55545536]\n", + " [-0.43339346 0.71355522 0.55046259]\n", + " [-0.46477689 0.69812328 0.54461576]\n", + " [-0.29647501 0.77626017 0.55634766]\n", + " [-0.29790825 0.79486241 0.52862502]\n", + " [-0.29922788 0.81291922 0.49962488]\n", + " [-0.30038785 0.83026834 0.46949081]\n", + " [-0.30135046 0.84676474 0.4383804 ]\n", + " [-0.30208901 0.86228202 0.40646273]\n", + " [-0.47711125 0.69915914 0.532486 ]\n", + " [-0.48067025 0.71787389 0.50360023]\n", + " [-0.48371715 0.73611514 0.47344717]\n", + " [-0.48619844 0.75372247 0.44216911]\n", + " [-0.48807227 0.77055279 0.40991934]\n", + " [-0.4893084 0.78647816 0.37686787]\n", + " [-0.31375744 0.86402348 0.3937254 ]\n", + " [-0.34654259 0.85329176 0.38961701]\n", + " [-0.37959665 0.84127122 0.38492742]\n", + " [-0.41270065 0.82797236 0.37965766]\n", + " [-0.44564358 0.81342626 0.3738175 ]\n", + " [-0.47821776 0.79768741 0.36742697]\n", + " [-0.29595114 0.76959669 0.56580373]\n", + " [-0.29595114 0.76959669 0.56580373]\n", + " [-0.48958868 0.79186156 0.36504547]\n", + " [-0.48958868 0.79186156 0.36504547]\n", + " [-0.30747578 0.77244836 0.55568172]\n", + " [-0.30905593 0.79111552 0.52784531]\n", + " [-0.31049611 0.80923632 0.49872713]\n", + " [-0.31174842 0.82664789 0.46847218]\n", + " [-0.31277461 0.84320494 0.43723846]\n", + " [-0.31354801 0.85878083 0.40519519]\n", + " [-0.33898223 0.76094709 0.55321838]\n", + " [-0.34097122 0.77975788 0.52508693]\n", + " [-0.342744 0.79802309 0.49566692]\n", + " [-0.34424973 0.81557908 0.46510525]\n", + " [-0.34544983 0.83228022 0.43355974]\n", + " [-0.3463183 0.84799911 0.40119963]\n", + " [-0.37081503 0.74840869 0.54989148]\n", + " [-0.37319666 0.76730197 0.5215093 ]\n", + " [-0.37528684 0.78565618 0.49183753]\n", + " [-0.37703387 0.80330792 0.46102262]\n", + " [-0.37839953 0.82011163 0.42922105]\n", + " [-0.37935836 0.83593909 0.39660192]\n", + " [-0.40275288 0.73484905 0.54569863]\n", + " [-0.40550844 0.75376252 0.51711215]\n", + " [-0.40790106 0.7721495 0.48723903]\n", + " [-0.40987883 0.78984739 0.45622412]\n", + " [-0.41140344 0.80671101 0.4242223 ]\n", + " [-0.41244904 0.82261154 0.39140266]\n", + " [-0.43458199 0.72030388 0.54064851]\n", + " [-0.43769243 0.73917491 0.51190408]\n", + " [-0.4403733 0.75753803 0.48187913]\n", + " [-0.44257227 0.77523162 0.45071689]\n", + " [-0.44425001 0.79211124 0.41857104]\n", + " [-0.44537926 0.80804797 0.38561093]\n", + " [-0.46609846 0.70482926 0.5347597 ]\n", + " [-0.46954411 0.72359564 0.50590284]\n", + " [-0.47249841 0.7418785 0.47577467]\n", + " [-0.47490821 0.75951718 0.44451755]\n", + " [-0.47673237 0.7763682 0.41228469]\n", + " [-0.47794148 0.79230326 0.37924594]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:fp_optics: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:cartToSphere: vec: [[ 0.0063457 0.91319972 0.40746289]\n", + " [-0.02167675 0.9129738 0.40744196]\n", + " [-0.05023743 0.91200469 0.40709168]\n", + " [-0.07922161 0.91025632 0.40639557]\n", + " [-0.10851425 0.90770206 0.40534138]\n", + " [-0.13799887 0.90432513 0.40392124]\n", + " [-0.16755749 0.9001191 0.40213194]\n", + " [-0.19707143 0.89508818 0.39997499]\n", + " [ 0.0063457 0.91319972 0.40746289]\n", + " [ 0.00620403 0.92464399 0.38078209]\n", + " [ 0.00595912 0.93527664 0.35386735]\n", + " [ 0.00560922 0.94506707 0.32682835]\n", + " [ 0.0051508 0.95399499 0.2997783 ]\n", + " [ 0.00457801 0.96205026 0.27283392]\n", + " [ 0.00388193 0.96923259 0.24611607]\n", + " [ 0.00304991 0.97555123 0.21975098]\n", + " [-0.19707143 0.89508818 0.39997499]\n", + " [-0.19706581 0.90691699 0.37237969]\n", + " [-0.19688548 0.91789408 0.3445382 ]\n", + " [-0.19653368 0.92798767 0.31656499]\n", + " [-0.19601589 0.93717737 0.28857641]\n", + " [-0.1953398 0.94545396 0.26068981]\n", + " [-0.19451516 0.95281898 0.23302328]\n", + " [-0.19355381 0.95928402 0.20569662]\n", + " [ 0.00304991 0.97555123 0.21975098]\n", + " [-0.02397399 0.97566085 0.21797053]\n", + " [-0.05155048 0.97500203 0.21613325]\n", + " [-0.0795578 0.97353962 0.21422224]\n", + " [-0.10787755 0.97124783 0.21222652]\n", + " [-0.13639335 0.96811046 0.21014039]\n", + " [-0.16499009 0.96412124 0.20796276]\n", + " [-0.19355381 0.95928402 0.20569662]\n", + " [-0.00579892 0.91323054 0.40740195]\n", + " [-0.04051974 0.91245929 0.40715622]\n", + " [-0.07593493 0.91053481 0.40639913]\n", + " [-0.11183296 0.90740412 0.40510635]\n", + " [-0.14799937 0.90303641 0.40326348]\n", + " [-0.18421661 0.89742423 0.40086654]\n", + " [ 0.00620181 0.91828748 0.39586569]\n", + " [ 0.00595904 0.93177253 0.36299372]\n", + " [ 0.00555983 0.94400687 0.32987894]\n", + " [ 0.00499845 0.95494886 0.2967283 ]\n", + " [ 0.00426402 0.9645798 0.26375675]\n", + " [ 0.00333862 0.97290314 0.23118896]\n", + " [-0.19698987 0.9003664 0.38798883]\n", + " [-0.19686539 0.91429555 0.35398822]\n", + " [-0.19648164 0.92691254 0.3197313 ]\n", + " [-0.19584781 0.93817508 0.28543153]\n", + " [-0.19497801 0.94806615 0.25130491]\n", + " [-0.19389106 0.9565928 0.21756947]\n", + " [-0.00865402 0.97567072 0.21907018]\n", + " [-0.04216298 0.97529323 0.2168534 ]\n", + " [-0.0763805 0.97372551 0.21453356]\n", + " [-0.1110873 0.9709162 0.21208805]\n", + " [-0.14606907 0.96683553 0.20950627]\n", + " [-0.18111434 0.96147613 0.20678793]\n", + " [ 0.00625062 0.91324064 0.40737263]\n", + " [ 0.00625062 0.91324064 0.40737263]\n", + " [-0.19345982 0.95928139 0.20579724]\n", + " [-0.19345982 0.95928139 0.20579724]\n", + " [-0.00584594 0.9182967 0.39584971]\n", + " [-0.00606608 0.9318292 0.36284644]\n", + " [-0.00641657 0.94410009 0.32959649]\n", + " [-0.00690275 0.95506776 0.29630716]\n", + " [-0.00753487 0.96471374 0.26319314]\n", + " [-0.00832995 0.97304185 0.23047814]\n", + " [-0.04056167 0.91757416 0.3954901 ]\n", + " [-0.04071796 0.9312272 0.36215735]\n", + " [-0.04093133 0.94359244 0.32856951]\n", + " [-0.04120661 0.95462832 0.29493522]\n", + " [-0.04155297 0.96431704 0.26146893]\n", + " [-0.0419856 0.97266349 0.22839208]\n", + " [-0.0759717 0.91568929 0.39464087]\n", + " [-0.0760639 0.92944209 0.3610425 ]\n", + " [-0.07614022 0.94188815 0.32718401]\n", + " [-0.07620576 0.95298588 0.29327563]\n", + " [-0.07626967 0.96271803 0.25953215]\n", + " [-0.07634648 0.97109051 0.22617345]\n", + " [-0.11186446 0.91258889 0.39327835]\n", + " [-0.11189206 0.92642017 0.35947996]\n", + " [-0.11183077 0.93893348 0.32541942]\n", + " [-0.11168655 0.95008709 0.2913085 ]\n", + " [-0.11146942 0.95986411 0.25736251]\n", + " [-0.11119441 0.96827124 0.22380039]\n", + " [-0.14802553 0.90824185 0.39138878]\n", + " [-0.14798824 0.92212982 0.35745779]\n", + " [-0.14778917 0.93469666 0.32326539]\n", + " [-0.14743551 0.94590043 0.28902448]\n", + " [-0.14693882 0.95572436 0.25495084]\n", + " [-0.14631544 0.96417557 0.22126288]\n", + " [-0.18423739 0.90264054 0.38896869]\n", + " [-0.18413551 0.91656293 0.35497397]\n", + " [-0.18379958 0.92916934 0.32072116]\n", + " [-0.18323825 0.94041757 0.28642371]\n", + " [-0.18246495 0.95029072 0.25229761]\n", + " [-0.18149782 0.95879593 0.21856098]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:fp_optics: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:cartToSphere: vec: [[-0.43036941 -0.08025405 -0.89907812]\n", + " [-0.40942218 -0.06708482 -0.90987533]\n", + " [-0.38780485 -0.05345248 -0.92019032]\n", + " [-0.36558645 -0.03942864 -0.92994189]\n", + " [-0.34283991 -0.02508065 -0.93905897]\n", + " [-0.31964262 -0.01047275 -0.9474803 ]\n", + " [-0.29607675 0.00433284 -0.95515432]\n", + " [-0.27222915 0.01927538 -0.96203937]\n", + " [-0.43036941 -0.08025405 -0.89907812]\n", + " [-0.44491772 -0.05824768 -0.89367524]\n", + " [-0.45933461 -0.03563182 -0.88754836]\n", + " [-0.47354952 -0.01251342 -0.8806783 ]\n", + " [-0.48749539 0.01100494 -0.8730562 ]\n", + " [-0.50110846 0.0348236 -0.86468354]\n", + " [-0.51432834 0.05884463 -0.85557213]\n", + " [-0.52709851 0.08297132 -0.84574401]\n", + " [-0.27222915 0.01927538 -0.96203937]\n", + " [-0.2859299 0.04311403 -0.95728014]\n", + " [-0.29968045 0.06740962 -0.95165517]\n", + " [-0.31341293 0.09206261 -0.94514381]\n", + " [-0.32706231 0.11697387 -0.93773523]\n", + " [-0.34056585 0.14204348 -0.92942915]\n", + " [-0.35386313 0.16717052 -0.92023633]\n", + " [-0.36689649 0.19225367 -0.91017882]\n", + " [-0.52709851 0.08297132 -0.84574401]\n", + " [-0.50631936 0.09822791 -0.85673332]\n", + " [-0.48472148 0.11371257 -0.86724538]\n", + " [-0.46236855 0.12935888 -0.877201 ]\n", + " [-0.43932997 0.14510131 -0.88652963]\n", + " [-0.41568188 0.16087453 -0.89516924]\n", + " [-0.39150745 0.17661346 -0.90306678]\n", + " [-0.36689649 0.19225367 -0.91017882]\n", + " [-0.42137283 -0.07449927 -0.90382232]\n", + " [-0.39524044 -0.05803673 -0.91674246]\n", + " [-0.3681696 -0.04095044 -0.9288564 ]\n", + " [-0.34029289 -0.02336606 -0.94002914]\n", + " [-0.31175285 -0.00540203 -0.95014787]\n", + " [-0.28270271 0.01282777 -0.9591218 ]\n", + " [-0.43665354 -0.07069645 -0.89684765]\n", + " [-0.45440458 -0.04330014 -0.88974242]\n", + " [-0.47188781 -0.01509528 -0.88152937]\n", + " [-0.48897837 0.01372755 -0.87218788]\n", + " [-0.50555884 0.04298473 -0.8617207 ]\n", + " [-0.52151966 0.0724965 -0.85015381]\n", + " [-0.27827437 0.02955501 -0.96004681]\n", + " [-0.29510907 0.05909107 -0.95363456]\n", + " [-0.31195062 0.08921453 -0.9459004 ]\n", + " [-0.32867818 0.11974282 -0.93682032]\n", + " [-0.34517624 0.15049197 -0.92639383]\n", + " [-0.36133468 0.18127598 -0.91464543]\n", + " [-0.51810029 0.08950797 -0.85062355]\n", + " [-0.49207457 0.10836745 -0.86378186]\n", + " [-0.46488192 0.12750352 -0.87614363]\n", + " [-0.4366476 0.1467952 -0.88757537]\n", + " [-0.40751185 0.16612227 -0.89796297]\n", + " [-0.37763057 0.18536514 -0.90721272]\n", + " [-0.43034888 -0.08013579 -0.89909849]\n", + " [-0.43034888 -0.08013579 -0.89909849]\n", + " [-0.36693723 0.19211484 -0.91019171]\n", + " [-0.36693723 0.19211484 -0.91019171]\n", + " [-0.42766945 -0.06498694 -0.90159611]\n", + " [-0.44540758 -0.03739622 -0.8945466 ]\n", + " [-0.46289254 -0.00901386 -0.88636857]\n", + " [-0.47999933 0.01997108 -0.8770415 ]\n", + " [-0.49661021 0.04937579 -0.86656813]\n", + " [-0.51261514 0.07902059 -0.85497454]\n", + " [-0.40150323 -0.0483352 -0.91458125]\n", + " [-0.41917459 -0.02024123 -0.90767998]\n", + " [-0.43663605 0.00859995 -0.89959713]\n", + " [-0.45376245 0.03800293 -0.89031198]\n", + " [-0.47043529 0.06778635 -0.87982706]\n", + " [-0.4865434 0.09777018 -0.86816848]\n", + " [-0.37438171 -0.03108449 -0.92675352]\n", + " [-0.39194012 -0.00255406 -0.91998719]\n", + " [-0.40933443 0.02668344 -0.91199414]\n", + " [-0.42643977 0.05644498 -0.90275306]\n", + " [-0.44313738 0.08654959 -0.8922659 ]\n", + " [-0.45931544 0.11681604 -0.88055854]\n", + " [-0.34643704 -0.01335909 -0.9379781 ]\n", + " [-0.36383502 0.01554426 -0.9313337 ]\n", + " [-0.38111718 0.04511745 -0.9234252 ]\n", + " [-0.3981594 0.07517863 -0.91423042]\n", + " [-0.4148433 0.10554632 -0.90375052]\n", + " [-0.43105691 0.13603778 -0.89201102]\n", + " [-0.31781172 0.00472342 -0.94814208]\n", + " [-0.33500169 0.03393765 -0.94160613]\n", + " [-0.35212647 0.06378619 -0.93377635]\n", + " [-0.36906315 0.09408733 -0.92462964]\n", + " [-0.38569427 0.12465863 -0.91416637]\n", + " [-0.40190831 0.15531575 -0.90241162]\n", + " [-0.28865934 0.02304942 -0.95715438]\n", + " [-0.30559471 0.05251257 -0.95071252]\n", + " [-0.32251775 0.08257528 -0.94295473]\n", + " [-0.33930707 0.11305531 -0.93385717]\n", + " [-0.35584658 0.14376906 -0.92341955]\n", + " [-0.37202571 0.1745309 -0.91166651]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:fp_optics: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:cartToSphere: vec: [[ 0.47955388 -0.52148503 0.70574885]\n", + " [ 0.49702968 -0.53004604 0.6870318 ]\n", + " [ 0.51440532 -0.5385012 0.66738567]\n", + " [ 0.53159437 -0.54678638 0.64686326]\n", + " [ 0.54851417 -0.5548413 0.62552645]\n", + " [ 0.56508645 -0.56261187 0.60344444]\n", + " [ 0.58123762 -0.57005123 0.58069306]\n", + " [ 0.59689899 -0.57712004 0.55735452]\n", + " [ 0.47955388 -0.52148503 0.70574885]\n", + " [ 0.46192084 -0.54157785 0.70236925]\n", + " [ 0.44365453 -0.56174928 0.69828963]\n", + " [ 0.42480404 -0.58188971 0.69350263]\n", + " [ 0.40542451 -0.6018924 0.68800909]\n", + " [ 0.38557675 -0.62165637 0.68181663]\n", + " [ 0.36532716 -0.64108755 0.67493912]\n", + " [ 0.34474759 -0.66009921 0.66739654]\n", + " [ 0.59689899 -0.57712004 0.55735452]\n", + " [ 0.57983252 -0.59869611 0.55259136]\n", + " [ 0.56195138 -0.62023491 0.54728356]\n", + " [ 0.54330257 -0.64162114 0.54142833]\n", + " [ 0.52393746 -0.66274778 0.53502796]\n", + " [ 0.5039134 -0.68351431 0.5280904 ]\n", + " [ 0.48329539 -0.70382529 0.52062993]\n", + " [ 0.46215692 -0.72359018 0.51266776]\n", + " [ 0.34474759 -0.66009921 0.66739654]\n", + " [ 0.3617951 -0.6704791 0.64773612]\n", + " [ 0.37888537 -0.68052757 0.62715876]\n", + " [ 0.39593358 -0.69017398 0.60571981]\n", + " [ 0.41285989 -0.69935563 0.58347958]\n", + " [ 0.42958798 -0.70801696 0.56050526]\n", + " [ 0.44604405 -0.71610912 0.53687282]\n", + " [ 0.46215692 -0.72359018 0.51266776]\n", + " [ 0.48712096 -0.52529548 0.69769465]\n", + " [ 0.50848322 -0.53572617 0.67412334]\n", + " [ 0.5296089 -0.54593371 0.64920782]\n", + " [ 0.55034416 -0.55580535 0.62305836]\n", + " [ 0.57054496 -0.56524162 0.59580228]\n", + " [ 0.59007785 -0.57415937 0.56758184]\n", + " [ 0.47200643 -0.5302588 0.7042979 ]\n", + " [ 0.4499637 -0.55495264 0.69968581]\n", + " [ 0.42701769 -0.57965544 0.69401402]\n", + " [ 0.40326743 -0.60416929 0.68728077]\n", + " [ 0.37882486 -0.62830838 0.67950004]\n", + " [ 0.3538145 -0.65190257 0.67069989]\n", + " [ 0.5895081 -0.5865005 0.55542538]\n", + " [ 0.56803731 -0.61293386 0.54922281]\n", + " [ 0.54538919 -0.63919576 0.54219869]\n", + " [ 0.52165649 -0.66508578 0.53435514]\n", + " [ 0.49694498 -0.69041872 0.52570683]\n", + " [ 0.47137788 -0.71502085 0.51628294]\n", + " [ 0.35224056 -0.66459628 0.65896765]\n", + " [ 0.37317443 -0.6771037 0.63424871]\n", + " [ 0.39408751 -0.68904235 0.60820694]\n", + " [ 0.41483082 -0.70029352 0.58095127]\n", + " [ 0.4352637 -0.7107549 0.55260563]\n", + " [ 0.45525135 -0.72033939 0.52331383]\n", + " [ 0.47955454 -0.52158287 0.70567609]\n", + " [ 0.47955454 -0.52158287 0.70567609]\n", + " [ 0.46217556 -0.72349912 0.51277945]\n", + " [ 0.46217556 -0.72349912 0.51277945]\n", + " [ 0.47957995 -0.53403553 0.69628236]\n", + " [ 0.45754333 -0.55890355 0.69157858]\n", + " [ 0.4345827 -0.58376629 0.68582417]\n", + " [ 0.41079696 -0.60842381 0.67901865]\n", + " [ 0.38629802 -0.63268962 0.67117634]\n", + " [ 0.36121057 -0.65639337 0.6623252 ]\n", + " [ 0.50096935 -0.54463326 0.67261009]\n", + " [ 0.47897137 -0.56995111 0.66763925]\n", + " [ 0.45599281 -0.59522296 0.66164959]\n", + " [ 0.43213211 -0.62024586 0.65464258]\n", + " [ 0.40750088 -0.64483298 0.64663239]\n", + " [ 0.38222442 -0.66881375 0.63764618]\n", + " [ 0.52213213 -0.55498326 0.64758908]\n", + " [ 0.50020382 -0.58068066 0.64234423]\n", + " [ 0.47724224 -0.60629394 0.63611909]\n", + " [ 0.45334489 -0.63161998 0.62891542]\n", + " [ 0.42862265 -0.6564727 0.6207465 ]\n", + " [ 0.40320126 -0.68068127 0.61163858]\n", + " [ 0.54291436 -0.56497075 0.62133087]\n", + " [ 0.5210868 -0.59097434 0.61580669]\n", + " [ 0.49817766 -0.61686077 0.60934539]\n", + " [ 0.47428299 -0.642428 0.60194843]\n", + " [ 0.44951244 -0.66749073 0.5936284 ]\n", + " [ 0.42399163 -0.6918775 0.58441135]\n", + " [ 0.5631719 -0.5744956 0.59396314]\n", + " [ 0.54147593 -0.60073159 0.58815421]\n", + " [ 0.51865464 -0.62682337 0.58145493]\n", + " [ 0.49480246 -0.65257 0.57386664]\n", + " [ 0.47002737 -0.67778659 0.56540217]\n", + " [ 0.44445428 -0.70230064 0.55608831]\n", + " [ 0.58277099 -0.58347456 0.56562833]\n", + " [ 0.5612364 -0.60986941 0.55952927]\n", + " [ 0.53853729 -0.6360989 0.55259006]\n", + " [ 0.51476673 -0.66196264 0.54481251]\n", + " [ 0.49003101 -0.68727558 0.53621068]\n", + " [ 0.46445381 -0.71186425 0.52681301]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:fp_optics: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:cartToSphere: vec: [[0.76227869 0.4731174 0.44169121]\n", + " [0.74485584 0.49131455 0.45144191]\n", + " [0.72653277 0.50960391 0.46092731]\n", + " [0.70735481 0.52787793 0.47010005]\n", + " [0.6873744 0.54603676 0.47891575]\n", + " [0.66665129 0.56398814 0.48733298]\n", + " [0.64525288 0.58164702 0.49531351]\n", + " [0.62325418 0.5989354 0.50282264]\n", + " [0.76227869 0.4731174 0.44169121]\n", + " [0.76710973 0.48612471 0.41859937]\n", + " [0.7713749 0.49915904 0.39474171]\n", + " [0.77503173 0.51213163 0.37019862]\n", + " [0.77804428 0.52496164 0.34505417]\n", + " [0.7803832 0.53757603 0.31939642]\n", + " [0.78202597 0.54990919 0.29331769]\n", + " [0.78295724 0.56190261 0.26691462]\n", + " [0.62325418 0.5989354 0.50282264]\n", + " [0.62712828 0.61380805 0.47953082]\n", + " [0.63057643 0.62849387 0.45537768]\n", + " [0.63355679 0.64290608 0.4304388 ]\n", + " [0.63603397 0.65696469 0.404794 ]\n", + " [0.63797902 0.67059567 0.37852902]\n", + " [0.63936967 0.6837308 0.35173658]\n", + " [0.64019069 0.69630809 0.32451645]\n", + " [0.78295724 0.56190261 0.26691462]\n", + " [0.76521734 0.58182708 0.27553524]\n", + " [0.74650941 0.60167487 0.28409692]\n", + " [0.72687482 0.62134139 0.29255406]\n", + " [0.70636262 0.64072835 0.30086381]\n", + " [0.68503087 0.65974277 0.30898573]\n", + " [0.66294757 0.67829676 0.31688174]\n", + " [0.64019069 0.69630809 0.32451645]\n", + " [0.75481286 0.48107779 0.44589427]\n", + " [0.73284823 0.50345777 0.45767209]\n", + " [0.70957562 0.52586839 0.46900414]\n", + " [0.68508857 0.54812264 0.47980749]\n", + " [0.65949716 0.57005061 0.49000591]\n", + " [0.63292862 0.59149868 0.49953046]\n", + " [0.7643935 0.47884184 0.43175581]\n", + " [0.76993928 0.49481491 0.40292892]\n", + " [0.77459223 0.51073933 0.37303112]\n", + " [0.77828348 0.52646298 0.34221565]\n", + " [0.78095904 0.54185135 0.31064464]\n", + " [0.78258039 0.55678661 0.27848986]\n", + " [0.62506918 0.60537838 0.49275301]\n", + " [0.62953722 0.62349141 0.46361767]\n", + " [0.63332304 0.6412369 0.43326338]\n", + " [0.63635881 0.65846483 0.40183521]\n", + " [0.63859125 0.6750389 0.36949114]\n", + " [0.63998228 0.69083607 0.33640483]\n", + " [0.77534202 0.57055163 0.27076851]\n", + " [0.75294412 0.59493264 0.2813011 ]\n", + " [0.72913255 0.61909387 0.29169934]\n", + " [0.70399434 0.64285183 0.30188325]\n", + " [0.67763649 0.66603532 0.31177835]\n", + " [0.65018836 0.68848483 0.32131563]\n", + " [0.76223812 0.47322367 0.44164737]\n", + " [0.76223812 0.47322367 0.44164737]\n", + " [0.64026774 0.69620551 0.32458452]\n", + " [0.64026774 0.69620551 0.32458452]\n", + " [0.75695252 0.48676741 0.43598209]\n", + " [0.76245943 0.50292556 0.40708904]\n", + " [0.76708193 0.51900939 0.37711346]\n", + " [0.77075097 0.53486712 0.34620819]\n", + " [0.7734122 0.55036458 0.3145352 ]\n", + " [0.77502676 0.56538408 0.28226647]\n", + " [0.73493577 0.50933534 0.44771301]\n", + " [0.7403136 0.52597915 0.41866659]\n", + " [0.74483442 0.54248005 0.38850622]\n", + " [0.74842862 0.55868752 0.35738335]\n", + " [0.75104092 0.57446826 0.3254593 ]\n", + " [0.7526315 0.58970456 0.29290675]\n", + " [0.71159962 0.53191252 0.4590153 ]\n", + " [0.71681941 0.54898562 0.42986593]\n", + " [0.72121453 0.56585385 0.39957355]\n", + " [0.72471498 0.58236781 0.36828784]\n", + " [0.72726488 0.59839445 0.33616941]\n", + " [0.72882383 0.61381543 0.30339156]\n", + " [0.68703731 0.55431232 0.4698059 ]\n", + " [0.69206887 0.5717597 0.44060359]\n", + " [0.69631278 0.58894682 0.41023182]\n", + " [0.69969909 0.60572482 0.37883851]\n", + " [0.70217194 0.62196021 0.34658341]\n", + " [0.70369089 0.63753343 0.31364032]\n", + " [0.66135872 0.57636511 0.48000823]\n", + " [0.66617124 0.59413247 0.45080206]\n", + " [0.67023774 0.61159027 0.42040304]\n", + " [0.67348888 0.6285895 0.38895754]\n", + " [0.67586949 0.64499567 0.35662449]\n", + " [0.67733975 0.66068769 0.32357787]\n", + " [0.63469121 0.59791726 0.48955288]\n", + " [0.6392543 0.61594991 0.46039076]\n", + " [0.64311768 0.63362924 0.43001586]\n", + " [0.64621306 0.65080555 0.39857347]\n", + " [0.64848662 0.66734302 0.36622178]\n", + " [0.64989973 0.68311907 0.33313462]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:fp_optics: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:cartToSphere: vec: [[-0.74456138 -0.61030044 0.27048426]\n", + " [-0.73581495 -0.60907381 0.2959822 ]\n", + " [-0.72623942 -0.60748895 0.32176618]\n", + " [-0.71585479 -0.60551372 0.34771403]\n", + " [-0.70468592 -0.60312498 0.37370845]\n", + " [-0.692763 -0.60030844 0.39963634]\n", + " [-0.68012217 -0.59705829 0.42538834]\n", + " [-0.66680595 -0.59337687 0.45085887]\n", + " [-0.74456138 -0.61030044 0.27048426]\n", + " [-0.72936581 -0.63138077 0.26340813]\n", + " [-0.7132383 -0.652449 0.25612777]\n", + " [-0.69622369 -0.67338455 0.248648 ]\n", + " [-0.67837168 -0.69407564 0.24097898]\n", + " [-0.65973743 -0.7144187 0.23313611]\n", + " [-0.64038225 -0.73431783 0.22513972]\n", + " [-0.62037402 -0.75368476 0.21701466]\n", + " [-0.66680595 -0.59337687 0.45085887]\n", + " [-0.65044218 -0.6153084 0.44533195]\n", + " [-0.6332195 -0.63719384 0.43933708]\n", + " [-0.61517788 -0.6589179 0.43287802]\n", + " [-0.59636347 -0.68037203 0.42596304]\n", + " [-0.57683011 -0.70145311 0.41860549]\n", + " [-0.55664012 -0.72206322 0.41082415]\n", + " [-0.53586452 -0.74211019 0.40264337]\n", + " [-0.62037402 -0.75368476 0.21701466]\n", + " [-0.61027965 -0.75395152 0.24313754]\n", + " [-0.5994873 -0.75361826 0.26958208]\n", + " [-0.58801353 -0.75265292 0.29623246]\n", + " [-0.57588096 -0.75103125 0.32297551]\n", + " [-0.56311916 -0.74873716 0.34969912]\n", + " [-0.54976536 -0.74576305 0.37629181]\n", + " [-0.53586452 -0.74211019 0.40264337]\n", + " [-0.74080028 -0.6098796 0.28153475]\n", + " [-0.72951993 -0.6081409 0.31299412]\n", + " [-0.71701365 -0.60583096 0.34476118]\n", + " [-0.70332515 -0.60290348 0.376618 ]\n", + " [-0.68851011 -0.59933209 0.40835632]\n", + " [-0.67263766 -0.5951095 0.43977638]\n", + " [-0.73802452 -0.61948171 0.26751116]\n", + " [-0.71876777 -0.64532648 0.25870182]\n", + " [-0.69815525 -0.6710322 0.24958972]\n", + " [-0.67627643 -0.69638948 0.24019134]\n", + " [-0.65323293 -0.72120757 0.23053499]\n", + " [-0.62914033 -0.7453131 0.22066 ]\n", + " [-0.65982606 -0.60295041 0.44841986]\n", + " [-0.63918872 -0.62981379 0.44133024]\n", + " [-0.61730026 -0.65649253 0.43354116]\n", + " [-0.59424305 -0.68278409 0.42506598]\n", + " [-0.57011625 -0.70849862 0.41592928]\n", + " [-0.54503826 -0.73345815 0.40616799]\n", + " [-0.61612923 -0.75380697 0.22838525]\n", + " [-0.60328706 -0.75373421 0.26063284]\n", + " [-0.58941221 -0.75272759 0.29324805]\n", + " [-0.57454375 -0.75073926 0.32602153]\n", + " [-0.55873621 -0.74773963 0.35874685]\n", + " [-0.54206133 -0.74371837 0.39121924]\n", + " [-0.74448257 -0.61036877 0.27054698]\n", + " [-0.74448257 -0.61036877 0.27054698]\n", + " [-0.53598488 -0.74205634 0.40258241]\n", + " [-0.53598488 -0.74205634 0.40258241]\n", + " [-0.73430262 -0.61904278 0.2785421 ]\n", + " [-0.71493613 -0.6450233 0.26983565]\n", + " [-0.69421705 -0.67085554 0.26079788]\n", + " [-0.67223402 -0.69633076 0.25144562]\n", + " [-0.64908808 -0.72125845 0.24180759]\n", + " [-0.6248946 -0.74546508 0.2319236 ]\n", + " [-0.72291623 -0.61742659 0.31012341]\n", + " [-0.70325806 -0.64373873 0.30170936]\n", + " [-0.68225841 -0.66988155 0.29288594]\n", + " [-0.66000353 -0.69564809 0.28367071]\n", + " [-0.63659288 -0.72084837 0.27409328]\n", + " [-0.61214161 -0.745308 0.26419433]\n", + " [-0.71031261 -0.6152101 0.34201248]\n", + " [-0.69038963 -0.64177634 0.33389413]\n", + " [-0.66913938 -0.6681595 0.32529275]\n", + " [-0.64664597 -0.69415423 0.31622603]\n", + " [-0.62300779 -0.71957066 0.30672359]\n", + " [-0.5983402 -0.74423324 0.29682635]\n", + " [-0.69653476 -0.61234738 0.37399199]\n", + " [-0.67637171 -0.63909117 0.36617452]\n", + " [-0.65489906 -0.6656448 0.35780472]\n", + " [-0.63219942 -0.69180415 0.34889958]\n", + " [-0.60837073 -0.71737927 0.3394879 ]\n", + " [-0.58352902 -0.74219344 0.32961004]\n", + " [-0.68163773 -0.60881247 0.40585389]\n", + " [-0.66125778 -0.635658 0.39834289]\n", + " [-0.63958994 -0.66231218 0.3902144 ]\n", + " [-0.61671616 -0.68857178 0.38148406]\n", + " [-0.59273455 -0.71424677 0.37217913]\n", + " [-0.56776208 -0.73915955 0.36233877]\n", + " [-0.66569036 -0.60459841 0.43739812]\n", + " [-0.64511612 -0.63147036 0.43019806]\n", + " [-0.62328032 -0.65815506 0.42231927]\n", + " [-0.60026504 -0.68444981 0.4137757 ]\n", + " [-0.57616913 -0.7101647 0.40459266]\n", + " [-0.55111061 -0.73512175 0.39480768]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:fp_optics: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:cartToSphere: vec: [[-0.20408328 -0.35907284 0.91072318]\n", + " [-0.23111247 -0.35300059 0.90662981]\n", + " [-0.25849443 -0.34652284 0.90172199]\n", + " [-0.28610976 -0.33964982 0.89597947]\n", + " [-0.31384103 -0.33239555 0.88939137]\n", + " [-0.34157171 -0.3247782 0.88195685]\n", + " [-0.36918619 -0.31682034 0.87368554]\n", + " [-0.3965706 -0.30854885 0.86459781]\n", + " [-0.20408328 -0.35907284 0.91072318]\n", + " [-0.19985598 -0.33252983 0.92167321]\n", + " [-0.19557072 -0.30577277 0.93180207]\n", + " [-0.19124937 -0.2789096 0.94108082]\n", + " [-0.18691769 -0.25205086 0.94949046]\n", + " [-0.18260584 -0.22530959 0.95702178]\n", + " [-0.17834915 -0.19880184 0.96367495]\n", + " [-0.17418908 -0.17264766 0.9694591 ]\n", + " [-0.3965706 -0.30854885 0.86459781]\n", + " [-0.39204521 -0.28112186 0.8759401 ]\n", + " [-0.38718506 -0.25353065 0.88645922]\n", + " [-0.38201435 -0.22588753 0.89612491]\n", + " [-0.37656139 -0.19830572 0.90491788]\n", + " [-0.37085826 -0.17089836 0.91282961]\n", + " [-0.36494069 -0.14377848 0.91986197]\n", + " [-0.35884808 -0.11705988 0.92602648]\n", + " [-0.17418908 -0.17264766 0.9694591 ]\n", + " [-0.19990327 -0.16505296 0.96581375]\n", + " [-0.2260413 -0.15731666 0.96133074]\n", + " [-0.25247688 -0.14945003 0.95599169]\n", + " [-0.27908958 -0.14146896 0.9497871 ]\n", + " [-0.30576339 -0.13339368 0.94271675]\n", + " [-0.33238592 -0.1252482 0.93479008]\n", + " [-0.35884808 -0.11705988 0.92602648]\n", + " [-0.21580255 -0.35638505 0.90907588]\n", + " [-0.24918186 -0.34866819 0.90351474]\n", + " [-0.28297212 -0.34035221 0.89670907]\n", + " [-0.31695645 -0.3314613 0.88863492]\n", + " [-0.35092029 -0.32202897 0.87929079]\n", + " [-0.38465149 -0.31209855 0.86869887]\n", + " [-0.20234016 -0.34751267 0.91558364]\n", + " [-0.1971173 -0.31482317 0.92845632]\n", + " [-0.19182852 -0.28191913 0.94006565]\n", + " [-0.18651959 -0.24900301 0.95037253]\n", + " [-0.18124611 -0.21628297 0.95935996]\n", + " [-0.17607565 -0.18397423 0.96703198]\n", + " [-0.39454693 -0.29664669 0.86967434]\n", + " [-0.38877284 -0.26290767 0.88302618]\n", + " [-0.38251971 -0.22903339 0.89511026]\n", + " [-0.37583793 -0.19523192 0.9058865 ]\n", + " [-0.36878655 -0.1617116 0.91533919]\n", + " [-0.36143286 -0.12868072 0.9234758 ]\n", + " [-0.1853546 -0.1694433 0.96795281]\n", + " [-0.21717269 -0.16003964 0.96292437]\n", + " [-0.24950114 -0.15043376 0.95661845]\n", + " [-0.28211588 -0.14065302 0.94901389]\n", + " [-0.31480328 -0.13073457 0.9401103 ]\n", + " [-0.34735775 -0.12072405 0.92992919]\n", + " [-0.20416063 -0.35896249 0.91074934]\n", + " [-0.20416063 -0.35896249 0.91074934]\n", + " [-0.35877907 -0.11717847 0.92603822]\n", + " [-0.35877907 -0.11717847 0.92603822]\n", + " [-0.21397278 -0.34489041 0.91392902]\n", + " [-0.20870499 -0.31207514 0.92685022]\n", + " [-0.20334372 -0.27904768 0.93850079]\n", + " [-0.19793444 -0.24601086 0.94884172]\n", + " [-0.19253212 -0.21317272 0.95785634]\n", + " [-0.18720328 -0.18074772 0.96554917]\n", + " [-0.24732813 -0.33706093 0.9084155 ]\n", + " [-0.24194083 -0.30393137 0.92146099]\n", + " [-0.23638385 -0.27059836 0.9332198 ]\n", + " [-0.23070246 -0.23726613 0.94365309]\n", + " [-0.22495055 -0.20414268 0.95274499]\n", + " [-0.21919247 -0.17144055 0.96050133]\n", + " [-0.28109796 -0.32865395 0.90164878]\n", + " [-0.27560227 -0.29527331 0.91479892]\n", + " [-0.26986274 -0.26170089 0.92665352]\n", + " [-0.26392522 -0.22814243 0.93717368]\n", + " [-0.25784369 -0.19480617 0.94634412]\n", + " [-0.25168163 -0.16190323 0.95417173]\n", + " [-0.31506545 -0.3196943 0.89360468]\n", + " [-0.30947252 -0.28612758 0.90683944]\n", + " [-0.30356325 -0.25238336 0.91877744]\n", + " [-0.2973846 -0.2186687 0.92937958]\n", + " [-0.29099156 -0.18519212 0.93863081]\n", + " [-0.28444791 -0.15216369 0.94653875]\n", + " [-0.34901619 -0.31021612 0.88428143]\n", + " [-0.34333775 -0.27653007 0.89758025]\n", + " [-0.33727221 -0.24268313 0.90958911]\n", + " [-0.33086798 -0.20888319 0.92026855]\n", + " [-0.32418163 -0.17533893 0.92960343]\n", + " [-0.31727813 -0.14225955 0.93760163]\n", + " [-0.38273815 -0.30026327 0.87370102]\n", + " [-0.37698669 -0.26652595 0.88704281]\n", + " [-0.37077967 -0.23264637 0.89910962]\n", + " [-0.364167 -0.19883266 0.90986151]\n", + " [-0.35720707 -0.16529332 0.919283 ]\n", + " [-0.34996652 -0.13223685 0.92738172]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:fp_optics: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:cartToSphere: vec: [[ 3.62376721e-02 -7.91073442e-01 6.10646904e-01]\n", + " [ 3.81634037e-02 -8.07785290e-01 5.88240155e-01]\n", + " [ 4.00975798e-02 -8.24176597e-01 5.64911605e-01]\n", + " [ 4.20305682e-02 -8.40145410e-01 5.40730174e-01]\n", + " [ 4.39533336e-02 -8.55599478e-01 5.15768976e-01]\n", + " [ 4.58572663e-02 -8.70454924e-01 4.90107474e-01]\n", + " [ 4.77340448e-02 -8.84635478e-01 4.63833517e-01]\n", + " [ 4.95756151e-02 -8.98072781e-01 4.37044092e-01]\n", + " [ 3.62376721e-02 -7.91073442e-01 6.10646904e-01]\n", + " [ 7.28580637e-03 -7.92842327e-01 6.09383263e-01]\n", + " [-2.15715986e-02 -7.94000506e-01 6.07534249e-01]\n", + " [-5.02213086e-02 -7.94554846e-01 6.05111904e-01]\n", + " [-7.85504007e-02 -7.94521993e-01 6.02133404e-01]\n", + " [-1.06446569e-01 -7.93928253e-01 5.98620963e-01]\n", + " [-1.33798902e-01 -7.92809064e-01 5.94602087e-01]\n", + " [-1.60499940e-01 -7.91207705e-01 5.90110275e-01]\n", + " [ 4.95756151e-02 -8.98072781e-01 4.37044092e-01]\n", + " [ 1.96146901e-02 -8.99802148e-01 4.35857038e-01]\n", + " [-1.02646844e-02 -9.00719242e-01 4.34280420e-01]\n", + " [-3.99441409e-02 -9.00832132e-01 4.32326192e-01]\n", + " [-6.93094636e-02 -9.00159272e-01 4.30011028e-01]\n", + " [-9.82503372e-02 -8.98728943e-01 4.27356009e-01]\n", + " [-1.26658352e-01 -8.96578907e-01 4.24386528e-01]\n", + " [-1.54424417e-01 -8.93756432e-01 4.21132449e-01]\n", + " [-1.60499940e-01 -7.91207705e-01 5.90110275e-01]\n", + " [-1.60393538e-01 -8.07111822e-01 5.68193999e-01]\n", + " [-1.60024021e-01 -8.22751032e-01 5.45410903e-01]\n", + " [-1.59395666e-01 -8.38025661e-01 5.21829486e-01]\n", + " [-1.58514780e-01 -8.52842969e-01 4.97525813e-01]\n", + " [-1.57388164e-01 -8.67118835e-01 4.72582153e-01]\n", + " [-1.56022514e-01 -8.80778421e-01 4.47086510e-01]\n", + " [-1.54424417e-01 -8.93756432e-01 4.21132449e-01]\n", + " [ 3.69761850e-02 -7.98399434e-01 6.00991769e-01]\n", + " [ 3.93423153e-02 -8.18679411e-01 5.72901566e-01]\n", + " [ 4.17116723e-02 -8.38375490e-01 5.43494871e-01]\n", + " [ 4.40673833e-02 -8.57313860e-01 5.12904485e-01]\n", + " [ 4.63935884e-02 -8.75340014e-01 4.81276942e-01]\n", + " [ 4.86750822e-02 -8.92316772e-01 4.48777801e-01]\n", + " [ 2.36163479e-02 -7.91977394e-01 6.10093498e-01]\n", + " [-1.18189147e-02 -7.93734205e-01 6.08149920e-01]\n", + " [-4.69997523e-02 -7.94579275e-01 6.05338582e-01]\n", + " [-8.17181337e-02 -7.94539181e-01 6.01688986e-01]\n", + " [-1.15767387e-01 -7.93662298e-01 5.97242052e-01]\n", + " [-1.48944579e-01 -7.92017233e-01 5.92050855e-01]\n", + " [ 3.65040119e-02 -8.98882131e-01 4.36667347e-01]\n", + " [-1.76292075e-04 -9.00455021e-01 4.34949104e-01]\n", + " [-3.66160762e-02 -9.00814791e-01 4.32656879e-01]\n", + " [-7.26032805e-02 -8.99991120e-01 4.29819435e-01]\n", + " [-1.07934579e-01 -8.98036029e-01 4.26475576e-01]\n", + " [-1.42410196e-01 -8.95022968e-01 4.22673896e-01]\n", + " [-1.60395541e-01 -7.98174555e-01 5.80681194e-01]\n", + " [-1.60086825e-01 -8.17502302e-01 5.53228880e-01]\n", + " [-1.59386980e-01 -8.36332410e-01 5.24541601e-01]\n", + " [-1.58306897e-01 -8.54491114e-01 4.94756367e-01]\n", + " [-1.56859037e-01 -8.71823621e-01 4.64024586e-01]\n", + " [-1.55055665e-01 -8.88196110e-01 4.32510591e-01]\n", + " [ 3.61451909e-02 -7.91138101e-01 6.10568612e-01]\n", + " [ 3.61451909e-02 -7.91138101e-01 6.10568612e-01]\n", + " [-1.54336540e-01 -8.93724013e-01 4.21233451e-01]\n", + " [-1.54336540e-01 -8.93724013e-01 4.21233451e-01]\n", + " [ 2.43979316e-02 -7.99240317e-01 6.00516158e-01]\n", + " [-1.11785863e-02 -8.00984634e-01 5.98580533e-01]\n", + " [-4.65021670e-02 -8.01792011e-01 5.95791170e-01]\n", + " [-8.13644913e-02 -8.01689021e-01 5.92177789e-01]\n", + " [-1.15558501e-01 -8.00724362e-01 5.87781192e-01]\n", + " [-1.48879937e-01 -7.98967749e-01 5.82653671e-01]\n", + " [ 2.66398043e-02 -8.19524048e-01 5.72425241e-01]\n", + " [-9.29192487e-03 -8.21234126e-01 5.70515706e-01]\n", + " [-4.49740577e-02 -8.21940710e-01 5.67794684e-01]\n", + " [-8.01976917e-02 -8.21670147e-01 5.64292920e-01]\n", + " [-1.14755862e-01 -8.20471375e-01 5.60051618e-01]\n", + " [-1.48442840e-01 -8.18415769e-01 5.55121925e-01]\n", + " [ 2.89082547e-02 -8.39222722e-01 5.43018910e-01]\n", + " [-7.31195649e-03 -8.40899906e-01 5.41141278e-01]\n", + " [-4.32846142e-02 -8.41514057e-01 5.38498407e-01]\n", + " [-7.88001694e-02 -8.41091519e-01 5.35122032e-01]\n", + " [-1.13652708e-01 -8.39681264e-01 5.31054081e-01]\n", + " [-1.47637400e-01 -8.37355140e-01 5.26345483e-01]\n", + " [ 3.11868917e-02 -8.58162454e-01 5.12430074e-01]\n", + " [-5.25396406e-03 -8.59807566e-01 5.10591173e-01]\n", + " [-4.14486092e-02 -8.60336797e-01 5.08037998e-01]\n", + " [-7.71866374e-02 -8.59777058e-01 5.04802569e-01]\n", + " [-1.12263360e-01 -8.58177762e-01 5.00927007e-01]\n", + " [-1.46475899e-01 -8.55611002e-01 4.96462107e-01]\n", + " [ 3.34607030e-02 -8.76188675e-01 4.80805352e-01]\n", + " [-3.13089547e-03 -8.77802371e-01 4.79012730e-01]\n", + " [-3.94778815e-02 -8.78254013e-01 4.76562048e-01]\n", + " [-7.53689527e-02 -8.77571585e-01 4.73484566e-01]\n", + " [-1.10600351e-01 -8.75805470e-01 4.69821606e-01]\n", + " [-1.44971099e-01 -8.73028209e-01 4.65623375e-01]\n", + " [ 3.57153908e-02 -8.93164187e-01 4.48310323e-01]\n", + " [-9.54755689e-04 -8.94747459e-01 4.46571464e-01]\n", + " [-3.73830324e-02 -8.95129591e-01 4.44235887e-01]\n", + " [-7.33574966e-02 -8.94339842e-01 4.41333121e-01]\n", + " [-1.08674810e-01 -8.92429817e-01 4.37902737e-01]\n", + " [-1.43135084e-01 -8.89472722e-01 4.33993808e-01]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:cartToSphere: vec: [[-1.08634135e-01 -6.26134588e-01 7.72110162e-01]\n", + " [-1.20847159e-01 -6.06447062e-01 7.85886712e-01]\n", + " [-1.33087380e-01 -5.85845216e-01 7.99420497e-01]\n", + " [-1.45310516e-01 -5.64396357e-01 8.12614057e-01]\n", + " [-1.57471828e-01 -5.42172113e-01 8.25379926e-01]\n", + " [-1.69526004e-01 -5.19248688e-01 8.37640576e-01]\n", + " [-1.81427309e-01 -4.95707258e-01 8.49328232e-01]\n", + " [-1.93129941e-01 -4.71634214e-01 8.60384794e-01]\n", + " [-1.08634135e-01 -6.26134588e-01 7.72110162e-01]\n", + " [-8.36881655e-02 -6.20007044e-01 7.80120219e-01]\n", + " [-5.81989530e-02 -6.13167394e-01 7.87806212e-01]\n", + " [-3.22674455e-02 -6.05629694e-01 7.95092124e-01]\n", + " [-5.99488592e-03 -5.97411995e-01 8.01912071e-01]\n", + " [ 2.05169010e-02 -5.88536447e-01 8.08210311e-01]\n", + " [ 4.71652742e-02 -5.79029694e-01 8.13941061e-01]\n", + " [ 7.38468236e-02 -5.68923307e-01 8.19068323e-01]\n", + " [-1.93129941e-01 -4.71634214e-01 8.60384794e-01]\n", + " [-1.68026642e-01 -4.63919199e-01 8.69796542e-01]\n", + " [-1.42274937e-01 -4.55670273e-01 8.78704982e-01]\n", + " [-1.15970794e-01 -4.46900108e-01 8.87034987e-01]\n", + " [-8.92111539e-02 -4.37625750e-01 8.94720667e-01]\n", + " [-6.20956727e-02 -4.27869339e-01 9.01705027e-01]\n", + " [-3.47276573e-02 -4.17658659e-01 9.07940105e-01]\n", + " [-7.21395764e-03 -4.07027359e-01 9.13387479e-01]\n", + " [ 7.38468236e-02 -5.68923307e-01 8.19068323e-01]\n", + " [ 6.28480937e-02 -5.48036453e-01 8.34090021e-01]\n", + " [ 5.15843602e-02 -5.26287462e-01 8.48740573e-01]\n", + " [ 4.00974007e-02 -5.03739464e-01 8.62924534e-01]\n", + " [ 2.84296170e-02 -4.80460709e-01 8.76555340e-01]\n", + " [ 1.66247049e-02 -4.56526132e-01 8.89554670e-01]\n", + " [ 4.72794552e-03 -4.32018283e-01 9.01852454e-01]\n", + " [-7.21395764e-03 -4.07027359e-01 9.13387479e-01]\n", + " [-1.13868431e-01 -6.17647206e-01 7.78168304e-01]\n", + " [-1.28860138e-01 -5.92893982e-01 7.94903637e-01]\n", + " [-1.43848901e-01 -5.66833809e-01 8.11176261e-01]\n", + " [-1.58752563e-01 -5.39596763e-01 8.26820995e-01]\n", + " [-1.73487721e-01 -5.11323174e-01 8.41695089e-01]\n", + " [-1.87970128e-01 -4.82164654e-01 8.55677788e-01]\n", + " [-9.78723096e-02 -6.23485183e-01 7.75685012e-01]\n", + " [-6.69198255e-02 -6.15493846e-01 7.85295526e-01]\n", + " [-3.52515582e-02 -6.06446503e-01 7.94342475e-01]\n", + " [-3.05376329e-03 -5.96374740e-01 8.02700345e-01]\n", + " [ 2.94860756e-02 -5.85319379e-01 8.10266497e-01]\n", + " [ 6.21786629e-02 -5.73331499e-01 8.16960713e-01]\n", + " [-1.82230921e-01 -4.68420200e-01 8.64508188e-01]\n", + " [-1.51015741e-01 -4.58605070e-01 8.75714357e-01]\n", + " [-1.18922049e-01 -4.47999975e-01 8.86088917e-01]\n", + " [-8.61278105e-02 -4.36634443e-01 8.95506763e-01]\n", + " [-5.28166004e-02 -4.24549292e-01 9.03862990e-01]\n", + " [-1.91801235e-02 -4.11798110e-01 9.11073235e-01]\n", + " [ 6.89950595e-02 -5.59962143e-01 8.25640406e-01]\n", + " [ 5.53306437e-02 -5.33776043e-01 8.43813757e-01]\n", + " [ 4.13098354e-02 -5.06357163e-01 8.61333803e-01]\n", + " [ 2.70104000e-02 -4.77828939e-01 8.78037552e-01]\n", + " [ 1.25128197e-02 -4.48329431e-01 8.93780818e-01]\n", + " [-2.09892433e-03 -4.18013821e-01 9.08438242e-01]\n", + " [-1.08591535e-01 -6.26049163e-01 7.72185421e-01]\n", + " [-1.08591535e-01 -6.26049163e-01 7.72185421e-01]\n", + " [-7.26730916e-03 -4.07150563e-01 9.13332144e-01]\n", + " [-7.26730916e-03 -4.07150563e-01 9.13332144e-01]\n", + " [-1.03124618e-01 -6.15038011e-01 7.81724733e-01]\n", + " [-7.20957607e-02 -6.06927916e-01 7.91480073e-01]\n", + " [-4.03410079e-02 -5.97775640e-01 8.00647793e-01]\n", + " [-8.04628890e-03 -5.87612414e-01 8.09102532e-01]\n", + " [ 2.46010121e-02 -5.76478584e-01 8.16741840e-01]\n", + " [ 5.74113099e-02 -5.64424900e-01 8.23485564e-01]\n", + " [-1.18061834e-01 -5.90157987e-01 7.98608135e-01]\n", + " [-8.68597565e-02 -5.81716942e-01 8.08740244e-01]\n", + " [-5.49029128e-02 -5.72275035e-01 8.18221825e-01]\n", + " [-2.23759405e-02 -5.61862188e-01 8.26928170e-01]\n", + " [ 1.05341731e-02 -5.50517429e-01 8.34757205e-01]\n", + " [ 4.36369363e-02 -5.38290786e-01 8.41628687e-01]\n", + " [-1.33018688e-01 -5.63972816e-01 8.15009627e-01]\n", + " [-1.01707502e-01 -5.55207942e-01 8.25469397e-01]\n", + " [-6.96124053e-02 -5.45486184e-01 8.35223884e-01]\n", + " [-3.69163894e-02 -5.34836233e-01 8.44148911e-01]\n", + " [-3.80588377e-03 -5.23296248e-01 8.52142331e-01]\n", + " [ 2.95277373e-02 -5.10916067e-01 8.59123324e-01]\n", + " [-1.47912972e-01 -5.36612125e-01 8.30764214e-01]\n", + " [-1.16556647e-01 -5.27528841e-01 8.41503339e-01]\n", + " [-8.43873296e-02 -5.17535125e-01 8.51490560e-01]\n", + " [-5.15862446e-02 -5.06659012e-01 8.60601827e-01]\n", + " [-1.83390992e-02 -4.94938551e-01 8.68734429e-01]\n", + " [ 1.51620904e-02 -4.82424063e-01 8.75806562e-01]\n", + " [-1.62660984e-01 -5.08215875e-01 8.45729288e-01]\n", + " [-1.31322756e-01 -4.98818478e-01 8.56699749e-01]\n", + " [-9.91430024e-02 -4.88559771e-01 8.66879470e-01]\n", + " [-6.63013033e-02 -4.77467929e-01 8.76144117e-01]\n", + " [-3.29824970e-02 -4.65581726e-01 8.84390078e-01]\n", + " [ 6.21183449e-04 -4.52952595e-01 8.91534386e-01]\n", + " [-1.77178028e-01 -4.78935646e-01 8.59784039e-01]\n", + " [-1.45919973e-01 -4.69228549e-01 8.70937386e-01]\n", + " [-1.13792845e-01 -4.58712289e-01 8.81268531e-01]\n", + " [-8.09749364e-02 -4.47415938e-01 8.90652591e-01]\n", + " [-4.76501467e-02 -4.35379694e-01 8.98984975e-01]\n", + " [-1.40104084e-02 -4.22656544e-01 9.06181634e-01]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:fp_optics: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:fp_optics: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:cartToSphere: vec: [[-0.39175275 0.90235662 0.17967279]\n", + " [-0.36679775 0.91231665 0.18203774]\n", + " [-0.34104427 0.92176949 0.18447173]\n", + " [-0.3145892 0.93063812 0.18693937]\n", + " [-0.2875305 0.93885543 0.18941144]\n", + " [-0.25996832 0.9463639 0.19186412]\n", + " [-0.23200576 0.95311559 0.19427816]\n", + " [-0.20374907 0.9590723 0.19663835]\n", + " [-0.39175275 0.90235662 0.17967279]\n", + " [-0.39446706 0.89561417 0.20559911]\n", + " [-0.39680008 0.88811253 0.23196082]\n", + " [-0.39874021 0.87983919 0.25862954]\n", + " [-0.40027657 0.87079169 0.28548294]\n", + " [-0.4013995 0.8609777 0.31240333]\n", + " [-0.40210122 0.85041511 0.33927679]\n", + " [-0.40237649 0.83913195 0.36599279]\n", + " [-0.20374907 0.9590723 0.19663835]\n", + " [-0.20484341 0.95285854 0.22382978]\n", + " [-0.2057921 0.94575267 0.25139908]\n", + " [-0.20658244 0.93774024 0.27922561]\n", + " [-0.20720371 0.92881664 0.30719093]\n", + " [-0.20764727 0.91898783 0.33517753]\n", + " [-0.20790667 0.90827085 0.3630687 ]\n", + " [-0.20797777 0.89669406 0.3907493 ]\n", + " [-0.40237649 0.83913195 0.36599279]\n", + " [-0.37659144 0.84915145 0.37029812]\n", + " [-0.34998693 0.85868321 0.37439591]\n", + " [-0.32265256 0.86765198 0.37825304]\n", + " [-0.29468217 0.87599109 0.38184032]\n", + " [-0.26617517 0.88364237 0.38513236]\n", + " [-0.23723685 0.89055659 0.38810775]\n", + " [-0.20797777 0.89669406 0.3907493 ]\n", + " [-0.38098623 0.90673462 0.18078116]\n", + " [-0.34985117 0.91861126 0.18373218]\n", + " [-0.31761294 0.9296484 0.18675081]\n", + " [-0.28445137 0.93971841 0.18978075]\n", + " [-0.25055092 0.94871538 0.19277801]\n", + " [-0.21610271 0.9565551 0.19570888]\n", + " [-0.39289811 0.89954401 0.19092314]\n", + " [-0.39596899 0.89077238 0.22300926]\n", + " [-0.39845571 0.88084673 0.25562098]\n", + " [-0.40033793 0.86975835 0.28853069]\n", + " [-0.40159795 0.85752139 0.32152163]\n", + " [-0.40222248 0.84417298 0.35438547]\n", + " [-0.20434062 0.9564524 0.20843156]\n", + " [-0.20558658 0.94823899 0.24202681]\n", + " [-0.20660075 0.93867023 0.27606944]\n", + " [-0.20736257 0.92773352 0.3103406 ]\n", + " [-0.20785613 0.91543988 0.34462393]\n", + " [-0.20807052 0.90182539 0.37870519]\n", + " [-0.39124029 0.84359519 0.36780182]\n", + " [-0.35907593 0.85555741 0.37294234]\n", + " [-0.32576937 0.86671123 0.37773796]\n", + " [-0.2914915 0.87693036 0.3821333 ]\n", + " [-0.25642538 0.88610776 0.38608167]\n", + " [-0.22076707 0.89415674 0.3895454 ]\n", + " [-0.3916788 0.90236966 0.17976849]\n", + " [-0.3916788 0.90236966 0.17976849]\n", + " [-0.20807832 0.89671544 0.39064668]\n", + " [-0.20807832 0.89671544 0.39064668]\n", + " [-0.38216366 0.90392902 0.19199808]\n", + " [-0.3851308 0.8952009 0.22425347]\n", + " [-0.38753524 0.88529907 0.25702526]\n", + " [-0.38935582 0.8742148 0.2900871 ]\n", + " [-0.39057413 0.86196222 0.3232228 ]\n", + " [-0.39117642 0.84857855 0.35622388]\n", + " [-0.35090859 0.91585883 0.1951045 ]\n", + " [-0.35357783 0.90724731 0.22778288]\n", + " [-0.35574495 0.89741162 0.26095579]\n", + " [-0.35738691 0.88634263 0.29439998]\n", + " [-0.35848396 0.87405417 0.32790021]\n", + " [-0.3590215 0.86058356 0.36124714]\n", + " [-0.31854732 0.926944 0.19824841]\n", + " [-0.32090963 0.91843992 0.23126851]\n", + " [-0.32283042 0.90866888 0.26476667]\n", + " [-0.32428573 0.897621 0.29852186]\n", + " [-0.32525543 0.88530953 0.33231903]\n", + " [-0.32572484 0.87177163 0.36594748]\n", + " [-0.2852586 0.937057 0.20137455]\n", + " [-0.28730227 0.92865135 0.23465737]\n", + " [-0.28896556 0.91894349 0.26840598]\n", + " [-0.29022466 0.90792261 0.30240069]\n", + " [-0.29105996 0.89560123 0.33642613]\n", + " [-0.29145739 0.88201622 0.37027014]\n", + " [-0.25122647 0.9460918 0.20443967]\n", + " [-0.25293892 0.93777499 0.2379075 ]\n", + " [-0.25433319 0.92812826 0.27183187]\n", + " [-0.25538649 0.91713988 0.30599375]\n", + " [-0.25608047 0.90482164 0.34017729]\n", + " [-0.25640219 0.89121008 0.3741691 ]\n", + " [-0.21664222 0.95396387 0.20741043]\n", + " [-0.21801169 0.94572545 0.24098605]\n", + " [-0.21912657 0.93613697 0.27501114]\n", + " [-0.21996566 0.925186 0.30926684]\n", + " [-0.22051236 0.91288372 0.34353691]\n", + " [-0.2207552 0.89926634 0.37760721]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:cartToSphere: vec: [[-0.30216525 0.87240569 0.38419327]\n", + " [-0.32876129 0.86417286 0.38094786]\n", + " [-0.35561904 0.85507711 0.37733042]\n", + " [-0.3826152 0.84511756 0.37333888]\n", + " [-0.40963201 0.83430159 0.36897489]\n", + " [-0.43655496 0.82264571 0.36424415]\n", + " [-0.46327096 0.81017674 0.35915688]\n", + " [-0.48966822 0.79693252 0.35372813]\n", + " [-0.30216525 0.87240569 0.38419327]\n", + " [-0.30244201 0.8836218 0.35740922]\n", + " [-0.30255803 0.89403283 0.33039966]\n", + " [-0.30251938 0.90360767 0.30327415]\n", + " [-0.3023372 0.91232445 0.27614547]\n", + " [-0.30202763 0.92017059 0.24912926]\n", + " [-0.30161123 0.92714298 0.22234334]\n", + " [-0.30111139 0.93324853 0.19590588]\n", + " [-0.48966822 0.79693252 0.35372813]\n", + " [-0.48980751 0.80857078 0.32603973]\n", + " [-0.48950861 0.81944427 0.2981483 ]\n", + " [-0.48877901 0.82952043 0.27016834]\n", + " [-0.48763169 0.83877751 0.24221401]\n", + " [-0.48608494 0.84720391 0.21439908]\n", + " [-0.4841622 0.85479721 0.18683866]\n", + " [-0.4818922 0.86156326 0.15965169]\n", + " [-0.30111139 0.93324853 0.19590588]\n", + " [-0.32665265 0.92563902 0.19102475]\n", + " [-0.35248651 0.91713919 0.18603485]\n", + " [-0.37849192 0.90774714 0.18093922]\n", + " [-0.40454917 0.89747111 0.17574293]\n", + " [-0.43054209 0.88632886 0.17045427]\n", + " [-0.45635883 0.87434745 0.16508529]\n", + " [-0.4818922 0.86156326 0.15965169]\n", + " [-0.3137221 0.86896171 0.38273228]\n", + " [-0.34651015 0.85829214 0.37850406]\n", + " [-0.3795681 0.84632461 0.37371475]\n", + " [-0.41267694 0.83306924 0.36836584]\n", + " [-0.44562561 0.81855656 0.36246789]\n", + " [-0.47820641 0.80284054 0.35604172]\n", + " [-0.30239622 0.87736603 0.37253909]\n", + " [-0.30262665 0.89057591 0.33954626]\n", + " [-0.30262091 0.90254455 0.30632321]\n", + " [-0.3023974 0.91322789 0.27307625]\n", + " [-0.30198578 0.92260276 0.24001819]\n", + " [-0.30142518 0.93066756 0.20736624]\n", + " [-0.48969348 0.80214489 0.34170729]\n", + " [-0.48956904 0.81589901 0.30762145]\n", + " [-0.48879341 0.82847079 0.27334437]\n", + " [-0.48738824 0.83981569 0.23908642]\n", + " [-0.48538716 0.84991225 0.20505725]\n", + " [-0.48283551 0.85875946 0.1714703 ]\n", + " [-0.31220608 0.93002012 0.19388126]\n", + " [-0.34372264 0.92009565 0.18782634]\n", + " [-0.37555843 0.90883079 0.18161073]\n", + " [-0.40749233 0.89623655 0.17524281]\n", + " [-0.43931052 0.88234561 0.16873794]\n", + " [-0.47080903 0.86721164 0.1621198 ]\n", + " [-0.30225683 0.87241869 0.38409171]\n", + " [-0.30225683 0.87241869 0.38409171]\n", + " [-0.4818138 0.86158655 0.15976256]\n", + " [-0.4818138 0.86158655 0.15976256]\n", + " [-0.31385997 0.87392859 0.3711344 ]\n", + " [-0.31406679 0.88719195 0.33801257]\n", + " [-0.31400874 0.89921128 0.30465978]\n", + " [-0.31370409 0.90994256 0.27128266]\n", + " [-0.31318283 0.91936259 0.2380944 ]\n", + " [-0.31248553 0.92746927 0.20531331]\n", + " [-0.34664374 0.86330837 0.36679254]\n", + " [-0.34678549 0.87670913 0.33334806]\n", + " [-0.34658363 0.88886212 0.29967302]\n", + " [-0.34605568 0.89972374 0.26597494]\n", + " [-0.34523157 0.90927126 0.23246707]\n", + " [-0.34415389 0.91750212 0.1993689 ]\n", + " [-0.37969736 0.85138132 0.36191126]\n", + " [-0.37977613 0.86489869 0.32820777]\n", + " [-0.37943608 0.87717089 0.29427792]\n", + " [-0.37869421 0.88815476 0.26033021]\n", + " [-0.37758002 0.89782855 0.22657719]\n", + " [-0.37613648 0.90619017 0.19323747]\n", + " [-0.41280172 0.8381574 0.35649251]\n", + " [-0.41281869 0.85177064 0.32259496]\n", + " [-0.41234443 0.8641482 0.2884787 ]\n", + " [-0.41139635 0.8752471 0.25435323]\n", + " [-0.41000409 0.88504644 0.22043015]\n", + " [-0.40821081 0.89354491 0.18692625]\n", + " [-0.44574575 0.82366685 0.35054765]\n", + " [-0.44570169 0.83735483 0.31652312]\n", + " [-0.44509645 0.8498243 0.28229029]\n", + " [-0.44394881 0.86103193 0.2480594 ]\n", + " [-0.44228963 0.87095711 0.2140411 ]\n", + " [-0.44016266 0.87959906 0.18045032]\n", + " [-0.47832175 0.80796327 0.34409834]\n", + " [-0.47821791 0.82170412 0.31001608]\n", + " [-0.47748574 0.83425176 0.27573787]\n", + " [-0.47614609 0.84556202 0.24147417]\n", + " [-0.47423182 0.85561379 0.20743485]\n", + " [-0.47178781 0.86440625 0.17383357]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:fp_optics: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:cartToSphere: vec: [[-0.31052504 -0.17127233 -0.93500802]\n", + " [-0.31623032 -0.19671924 -0.92806246]\n", + " [-0.32167064 -0.22259401 -0.92031511]\n", + " [-0.32682414 -0.24877109 -0.91175596]\n", + " [-0.33166958 -0.27513028 -0.90238496]\n", + " [-0.33618648 -0.30155593 -0.89221223]\n", + " [-0.34035554 -0.32793624 -0.88125815]\n", + " [-0.34415917 -0.35416298 -0.86955336]\n", + " [-0.31052504 -0.17127233 -0.93500802]\n", + " [-0.28503053 -0.17606771 -0.94220898]\n", + " [-0.25879016 -0.180987 -0.94882631]\n", + " [-0.23190433 -0.18598469 -0.95479321]\n", + " [-0.20447433 -0.19102096 -0.96005273]\n", + " [-0.1766031 -0.19606128 -0.96455758]\n", + " [-0.14839587 -0.20107571 -0.96827022]\n", + " [-0.11996031 -0.20603839 -0.97116307]\n", + " [-0.34415917 -0.35416298 -0.86955336]\n", + " [-0.31805417 -0.36098819 -0.8766579 ]\n", + " [-0.29115794 -0.36766662 -0.88320344]\n", + " [-0.26356399 -0.37415494 -0.88912435]\n", + " [-0.23536847 -0.3804138 -0.89436403]\n", + " [-0.20667213 -0.38640738 -0.89887483]\n", + " [-0.17758131 -0.39210341 -0.9026183 ]\n", + " [-0.14820776 -0.39747341 -0.90556576]\n", + " [-0.11996031 -0.20603839 -0.97116307]\n", + " [-0.12416724 -0.23293177 -0.96453372]\n", + " [-0.12835114 -0.26017136 -0.95699365]\n", + " [-0.13249049 -0.2876385 -0.94853063]\n", + " [-0.13656483 -0.31521709 -0.93914229]\n", + " [-0.14055464 -0.34279201 -0.92883692]\n", + " [-0.1444414 -0.37024862 -0.91763426]\n", + " [-0.14820776 -0.39747341 -0.90556576]\n", + " [-0.31295762 -0.18232306 -0.93210291]\n", + " [-0.31977389 -0.2138162 -0.92305324]\n", + " [-0.32617055 -0.24582655 -0.91278808]\n", + " [-0.33210824 -0.27813067 -0.90130319]\n", + " [-0.33754931 -0.31051554 -0.88861722]\n", + " [-0.3424589 -0.34277684 -0.87477194]\n", + " [-0.29952709 -0.17343142 -0.93819244]\n", + " [-0.26776588 -0.17939942 -0.94663471]\n", + " [-0.23498399 -0.18550747 -0.95413285]\n", + " [-0.2013675 -0.19167992 -0.96057792]\n", + " [-0.16710598 -0.19785311 -0.96588288]\n", + " [-0.13239419 -0.20397364 -0.96998275]\n", + " [-0.33286812 -0.35706422 -0.87275653]\n", + " [-0.30032986 -0.36533527 -0.88109711]\n", + " [-0.2666959 -0.37334251 -0.88853175]\n", + " [-0.23214204 -0.38101186 -0.89495253]\n", + " [-0.19685389 -0.38827739 -0.90027175]\n", + " [-0.16102949 -0.39508127 -0.90442263]\n", + " [-0.12189383 -0.21769672 -0.96837495]\n", + " [-0.12703809 -0.25090505 -0.9596395 ]\n", + " [-0.13212607 -0.28451514 -0.94952295]\n", + " [-0.13711965 -0.3183123 -0.93801678]\n", + " [-0.14198292 -0.35208455 -0.92513638]\n", + " [-0.14668225 -0.38562123 -0.91092293]\n", + " [-0.31045918 -0.17137461 -0.93501115]\n", + " [-0.31045918 -0.17137461 -0.93501115]\n", + " [-0.14829591 -0.39736306 -0.90559976]\n", + " [-0.14829591 -0.39736306 -0.90559976]\n", + " [-0.30198889 -0.18444646 -0.93529793]\n", + " [-0.27012073 -0.19058295 -0.94377589]\n", + " [-0.23722668 -0.19683015 -0.9513051 ]\n", + " [-0.20349201 -0.20311316 -0.95777662]\n", + " [-0.16910594 -0.20936898 -0.96310322]\n", + " [-0.13426335 -0.21554466 -0.96721965]\n", + " [-0.3087165 -0.21612013 -0.92627545]\n", + " [-0.27658858 -0.22271306 -0.93482493]\n", + " [-0.24341993 -0.22933688 -0.94241781]\n", + " [-0.20939345 -0.23591869 -0.94894507]\n", + " [-0.17469732 -0.24239693 -0.95431891]\n", + " [-0.1395271 -0.24871929 -0.95847322]\n", + " [-0.31504673 -0.24829975 -0.91602008]\n", + " [-0.28272227 -0.2553207 -0.92459692]\n", + " [-0.24934238 -0.26229777 -0.93221685]\n", + " [-0.21508758 -0.26915931 -0.93877079]\n", + " [-0.18014521 -0.2758442 -0.94417037]\n", + " [-0.14471169 -0.28229991 -0.94834872]\n", + " [-0.32093976 -0.28076279 -0.90452746]\n", + " [-0.28848077 -0.28818601 -0.91308689]\n", + " [-0.25495233 -0.29549525 -0.9206964 ]\n", + " [-0.2205329 -0.30261912 -0.92724695]\n", + " [-0.18540915 -0.30949586 -0.93264986]\n", + " [-0.14977834 -0.31607188 -0.93683777]\n", + " [-0.32635736 -0.31329674 -0.89181614]\n", + " [-0.29382451 -0.32109757 -0.900313 ]\n", + " [-0.26020962 -0.32871842 -0.90787398]\n", + " [-0.22568959 -0.33608714 -0.91439031]\n", + " [-0.19045054 -0.34314054 -0.91977343]\n", + " [-0.15469037 -0.34982337 -0.9239559 ]\n", + " [-0.33126416 -0.34569719 -0.87792796]\n", + " [-0.29871693 -0.3538503 -0.88631719]\n", + " [-0.26507715 -0.3617609 -0.89379145]\n", + " [-0.23052078 -0.3693555 -0.90024257]\n", + " [-0.19523352 -0.37656891 -0.90558253]\n", + " [-0.15941348 -0.38334397 -0.90974433]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:fp_optics: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:fp_optics: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:cartToSphere: vec: [[-0.53211324 0.09251243 -0.8416038 ]\n", + " [-0.51138003 0.10785575 -0.85255944]\n", + " [-0.48982172 0.12341557 -0.86304303]\n", + " [-0.46750185 0.13912523 -0.87297548]\n", + " [-0.4444896 0.15491888 -0.88228631]\n", + " [-0.42086094 0.1707309 -0.89091359]\n", + " [-0.3966989 0.18649594 -0.89880434]\n", + " [-0.37209319 0.20214936 -0.90591517]\n", + " [-0.53211324 0.09251243 -0.8416038 ]\n", + " [-0.54417015 0.11662467 -0.83082942]\n", + " [-0.55566005 0.14061633 -0.81943209]\n", + " [-0.56654243 0.16439657 -0.8074673 ]\n", + " [-0.57678163 0.18787739 -0.79500002]\n", + " [-0.58634632 0.21097386 -0.78210487]\n", + " [-0.59520865 0.23360395 -0.7688666 ]\n", + " [-0.60334336 0.25568791 -0.75538102]\n", + " [-0.37209319 0.20214936 -0.90591517]\n", + " [-0.38467009 0.22700103 -0.89470635]\n", + " [-0.39686003 0.25157085 -0.88273111]\n", + " [-0.40861984 0.27576489 -0.87004802]\n", + " [-0.41991177 0.29949388 -0.85672488]\n", + " [-0.43070366 0.32267387 -0.84283802]\n", + " [-0.44096872 0.34522606 -0.82847182]\n", + " [-0.45068494 0.36707585 -0.81371888]\n", + " [-0.60334336 0.25568791 -0.75538102]\n", + " [-0.58387102 0.27188817 -0.764965 ]\n", + " [-0.56349889 0.28810637 -0.77425042]\n", + " [-0.54229634 0.30427265 -0.78315569]\n", + " [-0.52033537 0.32031874 -0.79161039]\n", + " [-0.49769187 0.3361778 -0.79955443]\n", + " [-0.47444647 0.35178459 -0.80693751]\n", + " [-0.45068494 0.36707585 -0.81371888]\n", + " [-0.52322114 0.0992541 -0.84639723]\n", + " [-0.49724827 0.11821377 -0.85951711]\n", + " [-0.47009857 0.13743211 -0.87184847]\n", + " [-0.441897 0.1567876 -0.883258 ]\n", + " [-0.41278344 0.17615943 -0.89363174]\n", + " [-0.38291353 0.19542756 -0.90287613]\n", + " [-0.53736777 0.10308671 -0.8370239 ]\n", + " [-0.55176931 0.13256997 -0.82339288]\n", + " [-0.56527846 0.16178144 -0.80888011]\n", + " [-0.57782758 0.19055789 -0.79360127]\n", + " [-0.58935888 0.21874296 -0.77769379]\n", + " [-0.59982224 0.24618662 -0.76131822]\n", + " [-0.37770613 0.21295998 -0.90110273]\n", + " [-0.3928657 0.24324075 -0.88684298]\n", + " [-0.40740039 0.27300446 -0.87148924]\n", + " [-0.42123845 0.3020848 -0.85516252]\n", + " [-0.43432065 0.3303272 -0.83800329]\n", + " [-0.4465997 0.35758839 -0.82017025]\n", + " [-0.59494141 0.26266996 -0.75963755]\n", + " [-0.57046124 0.28254589 -0.77119505]\n", + " [-0.54469826 0.30237927 -0.78222157]\n", + " [-0.51778388 0.32204381 -0.79258289]\n", + " [-0.48985789 0.34141646 -0.80216834]\n", + " [-0.46107088 0.36037792 -0.81088927]\n", + " [-0.53208596 0.09264701 -0.84160624]\n", + " [-0.53208596 0.09264701 -0.84160624]\n", + " [-0.4507347 0.36695072 -0.81374775]\n", + " [-0.4507347 0.36695072 -0.81374775]\n", + " [-0.52852483 0.10973357 -0.84179573]\n", + " [-0.54299703 0.13931889 -0.8280969 ]\n", + " [-0.55658954 0.16861616 -0.81349657]\n", + " [-0.56923496 0.19746176 -0.79811053]\n", + " [-0.58087618 0.22569925 -0.7820759 ]\n", + " [-0.59146412 0.25317895 -0.76555249]\n", + " [-0.50260751 0.12879297 -0.85486727]\n", + " [-0.51726318 0.15863109 -0.84099642]\n", + " [-0.53107729 0.18813574 -0.82617302]\n", + " [-0.54398261 0.21714206 -0.81051357]\n", + " [-0.55592331 0.24549346 -0.79415504]\n", + " [-0.56685276 0.27304135 -0.77725566]\n", + " [-0.47550367 0.14809151 -0.86715925]\n", + " [-0.4903182 0.17812758 -0.85314631]\n", + " [-0.50433325 0.2077856 -0.8381367 ]\n", + " [-0.51748108 0.23689964 -0.82224807]\n", + " [-0.52970618 0.26531315 -0.80561796]\n", + " [-0.54096334 0.29287872 -0.78840391]\n", + " [-0.447338 0.16750708 -0.87853861]\n", + " [-0.46228637 0.19768467 -0.8644143 ]\n", + " [-0.47648189 0.22744068 -0.849256 ]\n", + " [-0.48985584 0.25660852 -0.83318265]\n", + " [-0.5023522 0.2850319 -0.8163327 ]\n", + " [-0.51392608 0.31256465 -0.79886377]\n", + " [-0.41825007 0.18691832 -0.88889168]\n", + " [-0.43330642 0.21717955 -0.87468771]\n", + " [-0.44766129 0.24697722 -0.85941935]\n", + " [-0.4612447 0.2761445 -0.8432067 ]\n", + " [-0.4739995 0.30452564 -0.82618921]\n", + " [-0.48588022 0.33197578 -0.80852489]\n", + " [-0.38839528 0.20620473 -0.89812511]\n", + " [-0.40353278 0.23649083 -0.88387407]\n", + " [-0.41802469 0.26627339 -0.86853546]\n", + " [-0.4317997 0.2953859 -0.85223013]\n", + " [-0.44479916 0.32367341 -0.83509833]\n", + " [-0.45697633 0.35099229 -0.81729863]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:fp_optics: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:cartToSphere: vec: [[ 0.33636468 -0.66766437 0.66414086]\n", + " [ 0.35333353 -0.67811754 0.64444706]\n", + " [ 0.37035522 -0.68822986 0.62384026]\n", + " [ 0.38734508 -0.69793062 0.60237584]\n", + " [ 0.4042235 -0.70715691 0.58011419]\n", + " [ 0.42091451 -0.71585289 0.55712262]\n", + " [ 0.4373447 -0.72396935 0.53347726]\n", + " [ 0.45344317 -0.7314641 0.50926375]\n", + " [ 0.33636468 -0.66766437 0.66414086]\n", + " [ 0.31544706 -0.68595141 0.65571626]\n", + " [ 0.29439293 -0.70364166 0.64670025]\n", + " [ 0.27329036 -0.72067532 0.63713379]\n", + " [ 0.25223163 -0.73700105 0.62706352]\n", + " [ 0.23131293 -0.75257612 0.61654158]\n", + " [ 0.21063337 -0.76736639 0.60562564]\n", + " [ 0.19029248 -0.78134657 0.59437892]\n", + " [ 0.45344317 -0.7314641 0.50926375]\n", + " [ 0.43170657 -0.75031711 0.50065324]\n", + " [ 0.40965563 -0.76843496 0.49161975]\n", + " [ 0.38738313 -0.78575576 0.48220555]\n", + " [ 0.36498351 -0.80222887 0.47245728]\n", + " [ 0.34255287 -0.81781418 0.46242566]\n", + " [ 0.32019031 -0.83248075 0.45216587]\n", + " [ 0.29799986 -0.84620523 0.44173839]\n", + " [ 0.19029248 -0.78134657 0.59437892]\n", + " [ 0.20526355 -0.79225635 0.57462749]\n", + " [ 0.22050203 -0.80272549 0.55408542]\n", + " [ 0.23592882 -0.81268192 0.53280924]\n", + " [ 0.25146538 -0.82206103 0.51086283]\n", + " [ 0.26703628 -0.83080592 0.48831666]\n", + " [ 0.28257014 -0.83886761 0.46524751]\n", + " [ 0.29799986 -0.84620523 0.44173839]\n", + " [ 0.34367952 -0.67232276 0.65564205]\n", + " [ 0.36452238 -0.68491494 0.63088427]\n", + " [ 0.38536 -0.69692387 0.60480972]\n", + " [ 0.40604377 -0.70823056 0.57752743]\n", + " [ 0.42643373 -0.71873211 0.54916157]\n", + " [ 0.4463957 -0.72834083 0.51985625]\n", + " [ 0.32732431 -0.67574328 0.66047696]\n", + " [ 0.30158408 -0.6977631 0.64974895]\n", + " [ 0.27572573 -0.71882602 0.63817277]\n", + " [ 0.24991739 -0.73883402 0.62583192]\n", + " [ 0.22433602 -0.75770841 0.61282242]\n", + " [ 0.1991645 -0.77539001 0.59925274]\n", + " [ 0.44395602 -0.73974553 0.50564771]\n", + " [ 0.41709283 -0.76236578 0.494805 ]\n", + " [ 0.38984954 -0.78381913 0.48336829]\n", + " [ 0.3623994 -0.80400765 0.47142166]\n", + " [ 0.33491948 -0.82285735 0.45905853]\n", + " [ 0.30759417 -0.84031443 0.44638266]\n", + " [ 0.19685151 -0.7861062 0.58590659]\n", + " [ 0.21539127 -0.79919048 0.56116057]\n", + " [ 0.23425407 -0.81154055 0.53528214]\n", + " [ 0.25329488 -0.8230343 0.50838592]\n", + " [ 0.27237494 -0.83356703 0.48060161]\n", + " [ 0.2913646 -0.84305191 0.45207317]\n", + " [ 0.33635131 -0.66776409 0.66404737]\n", + " [ 0.33635131 -0.66776409 0.66404737]\n", + " [ 0.29802281 -0.8461361 0.4418553 ]\n", + " [ 0.29802281 -0.8461361 0.4418553 ]\n", + " [ 0.33461555 -0.68033214 0.65205875]\n", + " [ 0.3087573 -0.70242535 0.64130146]\n", + " [ 0.28276145 -0.7235434 0.62970701]\n", + " [ 0.2567963 -0.74358812 0.61735919]\n", + " [ 0.23103933 -0.76248085 0.60435402]\n", + " [ 0.20567527 -0.78016245 0.59079966]\n", + " [ 0.3553652 -0.69300011 0.62726902]\n", + " [ 0.32920695 -0.7152761 0.61644374]\n", + " [ 0.3028588 -0.73652881 0.60481556]\n", + " [ 0.27648909 -0.75665964 0.59246938]\n", + " [ 0.25027527 -0.7755902 0.57950163]\n", + " [ 0.22440447 -0.79326173 0.56601984]\n", + " [ 0.3761266 -0.7050703 0.6011694 ]\n", + " [ 0.34971902 -0.72749154 0.5902988 ]\n", + " [ 0.32307331 -0.74884661 0.57866432]\n", + " [ 0.29635807 -0.76903661 0.566352 ]\n", + " [ 0.26974978 -0.78798384 0.55345868]\n", + " [ 0.24343521 -0.80563047 0.54009152]\n", + " [ 0.39675148 -0.71642339 0.57386914]\n", + " [ 0.3701455 -0.73895135 0.56297709]\n", + " [ 0.34325644 -0.76037564 0.55136549]\n", + " [ 0.31625381 -0.78059732 0.53912091]\n", + " [ 0.28931336 -0.79953979 0.5263401 ]\n", + " [ 0.26262054 -0.81714653 0.51312961]\n", + " [ 0.41710045 -0.72695594 0.54549269]\n", + " [ 0.39034832 -0.74955083 0.53460429]\n", + " [ 0.36327053 -0.77101049 0.52304621]\n", + " [ 0.33603812 -0.79123629 0.51090461]\n", + " [ 0.30882688 -0.81015287 0.4982753 ]\n", + " [ 0.28182121 -0.82770515 0.48526384]\n", + " [ 0.43704003 -0.73657971 0.51618442]\n", + " [ 0.41019597 -0.75920064 0.5053253 ]\n", + " [ 0.38298565 -0.78066162 0.49385162]\n", + " [ 0.35558179 -0.8008645 0.48184814]\n", + " [ 0.32816102 -0.81973504 0.46940899]\n", + " [ 0.30090757 -0.83721921 0.4566384 ]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:fp_optics: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:cartToSphere: vec: [[-0.16824928 -0.16671355 0.97154453]\n", + " [-0.14174168 -0.17051067 0.9751079 ]\n", + " [-0.11459847 -0.17440873 0.977982 ]\n", + " [-0.08692841 -0.17836914 0.98011627]\n", + " [-0.05884046 -0.18235805 0.98146999]\n", + " [-0.03044417 -0.18634621 0.98201234]\n", + " [-0.00184991 -0.19030872 0.98172255]\n", + " [ 0.02683112 -0.19422456 0.98059008]\n", + " [-0.16824928 -0.16671355 0.97154453]\n", + " [-0.17389679 -0.19241697 0.96578239]\n", + " [-0.17938784 -0.21856445 0.95919215]\n", + " [-0.18470582 -0.24503099 0.95175815]\n", + " [-0.18983364 -0.27169591 0.94347471]\n", + " [-0.19475367 -0.2984425 0.93434634]\n", + " [-0.19944795 -0.32515764 0.92438792]\n", + " [-0.20389872 -0.35173163 0.91362474]\n", + " [ 0.02683112 -0.19422456 0.98059008]\n", + " [ 0.02281295 -0.22125681 0.97494871]\n", + " [ 0.01869653 -0.24866529 0.96840901]\n", + " [ 0.01449716 -0.27632976 0.96095353]\n", + " [ 0.01023035 -0.30413308 0.95257462]\n", + " [ 0.00591205 -0.33195947 0.94327512]\n", + " [ 0.00155878 -0.3596937 0.93306914]\n", + " [-0.00281238 -0.38722143 0.92198246]\n", + " [-0.20389872 -0.35173163 0.91362474]\n", + " [-0.1766751 -0.35748599 0.91705489]\n", + " [-0.14877407 -0.36306961 0.91980799]\n", + " [-0.12029912 -0.36844424 0.92183348]\n", + " [-0.09135526 -0.37357554 0.92309021]\n", + " [-0.06205073 -0.37843286 0.92354658]\n", + " [-0.0324978 -0.38298919 0.92318101]\n", + " [-0.00281238 -0.38722143 0.92198246]\n", + " [-0.15679619 -0.16844154 0.97316104]\n", + " [-0.12386632 -0.17316959 0.97707186]\n", + " [-0.09008972 -0.17801021 0.97989602]\n", + " [-0.05566694 -0.18289907 0.98155444]\n", + " [-0.02079965 -0.18778233 0.98199041]\n", + " [ 0.0143086 -0.19261576 0.98116993]\n", + " [-0.17064003 -0.17787084 0.96914599]\n", + " [-0.17745765 -0.20968901 0.96152967]\n", + " [-0.18402398 -0.24204946 0.95265273]\n", + " [-0.19030777 -0.2747282 0.94250059]\n", + " [-0.19627656 -0.30751035 0.93108158]\n", + " [-0.20189738 -0.34018906 0.91842738]\n", + " [ 0.02499375 -0.20594322 0.97824471]\n", + " [ 0.02000008 -0.23934224 0.97072926]\n", + " [ 0.01487422 -0.27318648 0.96184609]\n", + " [ 0.0096446 -0.30725911 0.95157702]\n", + " [ 0.00434064 -0.34134689 0.93992737]\n", + " [-0.00100702 -0.37523799 0.92692795]\n", + " [-0.19210422 -0.35416805 0.9152382 ]\n", + " [-0.15827023 -0.36110992 0.9189941 ]\n", + " [-0.12352154 -0.36775705 0.92168171]\n", + " [-0.08805073 -0.37404462 0.92322137]\n", + " [-0.05205717 -0.3799162 0.92355494]\n", + " [-0.01574911 -0.38532369 0.92264707]\n", + " [-0.16817939 -0.16681332 0.9715395 ]\n", + " [-0.16817939 -0.16681332 0.9715395 ]\n", + " [-0.00289903 -0.38711388 0.92202735]\n", + " [-0.00289903 -0.38711388 0.92202735]\n", + " [-0.15921532 -0.17956204 0.97077699]\n", + " [-0.16593168 -0.21155219 0.96317825]\n", + " [-0.17242097 -0.24407525 0.95430513]\n", + " [-0.1786518 -0.27690769 0.94414282]\n", + " [-0.18459132 -0.30983495 0.9326995 ]\n", + " [-0.19020612 -0.34265008 0.92000682]\n", + " [-0.12616526 -0.18444906 0.97471066]\n", + " [-0.13258752 -0.21687256 0.96715399]\n", + " [-0.13885138 -0.24980493 0.95828899]\n", + " [-0.14492484 -0.28302443 0.94810019]\n", + " [-0.15077417 -0.31631737 0.93659515]\n", + " [-0.15636496 -0.34947621 0.92380538]\n", + " [-0.09226443 -0.18941985 0.97755173]\n", + " [-0.0983808 -0.22219742 0.97002553]\n", + " [-0.10440683 -0.25546383 0.96116463]\n", + " [-0.11031032 -0.28899926 0.95095271]\n", + " [-0.11605721 -0.32259061 0.93939663]\n", + " [-0.12161275 -0.35602935 0.92652762]\n", + " [-0.05771297 -0.19441038 0.97922103]\n", + " [-0.06351015 -0.22746381 0.97171327]\n", + " [-0.06928421 -0.26098978 0.96285203]\n", + " [-0.0750034 -0.29477007 0.95262012]\n", + " [-0.08063419 -0.32859181 0.94102367]\n", + " [-0.08614228 -0.36224528 0.92809367]\n", + " [-0.02271242 -0.19936723 0.9796616 ]\n", + " [-0.02817663 -0.23261934 0.97215962]\n", + " [-0.03368413 -0.26633078 0.96329294]\n", + " [-0.03920428 -0.30028434 0.95304372]\n", + " [-0.04470495 -0.33426713 0.94141752]\n", + " [-0.05015302 -0.36806826 0.92844517]\n", + " [ 0.01253341 -0.20424648 0.97883926]\n", + " [ 0.007415 -0.23762066 0.97132973]\n", + " [ 0.00218751 -0.2714434 0.96245192]\n", + " [-0.00312 -0.30549785 0.95218765]\n", + " [-0.00847737 -0.33957089 0.94054226]\n", + " [-0.01385325 -0.37345085 0.92754652]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:fp_optics: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:cartToSphere: vec: [[0.78338299 0.56631759 0.25611614]\n", + " [0.76565819 0.58629186 0.26463069]\n", + " [0.74696448 0.60618524 0.27309984]\n", + " [0.72734313 0.62589295 0.28147822]\n", + " [0.70684304 0.64531644 0.28972333]\n", + " [0.68552212 0.66436247 0.29779511]\n", + " [0.66344821 0.68294288 0.30565583]\n", + " [0.64069916 0.70097522 0.31327038]\n", + " [0.78338299 0.56631759 0.25611614]\n", + " [0.78331502 0.57773738 0.22942778]\n", + " [0.78252958 0.58870636 0.20266295]\n", + " [0.78103729 0.59919071 0.17592969]\n", + " [0.77885605 0.6091644 0.14933849]\n", + " [0.77601073 0.61860952 0.12300248]\n", + " [0.77253284 0.62751628 0.09703778]\n", + " [0.76846042 0.63588299 0.07156396]\n", + " [0.64069916 0.70097522 0.31327038]\n", + " [0.64072064 0.71266772 0.28562524]\n", + " [0.6401661 0.72368441 0.25781435]\n", + " [0.63904596 0.733991 0.22995103]\n", + " [0.63737789 0.74356257 0.20214879]\n", + " [0.63518643 0.75238334 0.1745208 ]\n", + " [0.63250267 0.76044613 0.14718036]\n", + " [0.62936419 0.76775157 0.12024246]\n", + " [0.76846042 0.63588299 0.07156396]\n", + " [0.75106333 0.65559717 0.07807835]\n", + " [0.73275438 0.67518761 0.08480983]\n", + " [0.71357869 0.69454611 0.09171231]\n", + " [0.69358842 0.71357186 0.09874365]\n", + " [0.67284312 0.73217119 0.1058654 ]\n", + " [0.65141004 0.75025753 0.11304244]\n", + " [0.62936419 0.76775157 0.12024246]\n", + " [0.77577741 0.5750693 0.25973968]\n", + " [0.75339745 0.59950937 0.27014959]\n", + " [0.72960239 0.62372299 0.28044605]\n", + " [0.704479 0.64752624 0.29054967]\n", + " [0.67813402 0.67074742 0.30038668]\n", + " [0.65069652 0.69322654 0.3098887 ]\n", + " [0.78338303 0.57141807 0.24452489]\n", + " [0.78281633 0.58511594 0.21174967]\n", + " [0.78118175 0.59810202 0.1789666 ]\n", + " [0.77850925 0.61032516 0.1463781 ]\n", + " [0.77484455 0.62175237 0.11419245]\n", + " [0.77024838 0.63236901 0.08262487]\n", + " [0.64085854 0.70609308 0.30121901]\n", + " [0.64049644 0.71997382 0.26721154]\n", + " [0.63927852 0.7328045 0.23306766]\n", + " [0.63723432 0.74453534 0.19899634]\n", + " [0.63440898 0.75513722 0.16520598]\n", + " [0.63086245 0.76460018 0.13190577]\n", + " [0.7610047 0.64445899 0.07446112]\n", + " [0.73906384 0.66855225 0.08259854]\n", + " [0.71579731 0.69235133 0.09101563]\n", + " [0.69129819 0.71566756 0.09963314]\n", + " [0.66567616 0.7383285 0.10838027]\n", + " [0.63905824 0.76017777 0.11719354]\n", + " [0.78332507 0.56642568 0.25605426]\n", + " [0.78332507 0.56642568 0.25605426]\n", + " [0.62945199 0.76766914 0.12030913]\n", + " [0.62945199 0.76766914 0.12030913]\n", + " [0.77583649 0.58007938 0.24816456]\n", + " [0.77527787 0.5938102 0.21525258]\n", + " [0.77365876 0.60680357 0.18232265]\n", + " [0.77100948 0.61900808 0.14957736]\n", + " [0.76737612 0.63039056 0.11722471]\n", + " [0.76281965 0.64093639 0.08547939]\n", + " [0.75345982 0.60456358 0.25845926]\n", + " [0.75292687 0.61837303 0.22520196]\n", + " [0.75135806 0.63137578 0.1919002 ]\n", + " [0.74878458 0.64351981 0.15875737]\n", + " [0.74525351 0.65477175 0.12598081]\n", + " [0.74082654 0.66511707 0.09378343]\n", + " [0.72966826 0.62881228 0.26866214]\n", + " [0.72916568 0.64267791 0.23512234]\n", + " [0.72765773 0.65567238 0.20151416]\n", + " [0.72517614 0.66774348 0.16804231]\n", + " [0.7217686 0.67885812 0.13491379]\n", + " [0.71749732 0.6890023 0.10233979]\n", + " [0.70454863 0.6526413 0.27869439]\n", + " [0.70408165 0.66653974 0.24493631]\n", + " [0.7026462 0.67950732 0.21108793]\n", + " [0.700274 0.69149213 0.17735547]\n", + " [0.69701277 0.7024619 0.14394607]\n", + " [0.69292472 0.71240359 0.11106961]\n", + " [0.67820767 0.67587864 0.28848295]\n", + " [0.67778176 0.68978591 0.25457276]\n", + " [0.6764309 0.70270772 0.22055182]\n", + " [0.67418623 0.71459288 0.18662782]\n", + " [0.6710948 0.72541037 0.15300834]\n", + " [0.66721819 0.73514847 0.11990255]\n", + " [0.65077444 0.69836409 0.29796011]\n", + " [0.65039484 0.712256 0.26396581]\n", + " [0.64914031 0.72511358 0.22984159]\n", + " [0.64704087 0.73688667 0.19579618]\n", + " [0.64414226 0.74754566 0.16203775]\n", + " [0.64050489 0.75708017 0.1287754 ]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:fp_optics: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:cartToSphere: vec: [[ 0.0845382 -0.56485241 0.8208502 ]\n", + " [ 0.07363357 -0.5439323 0.83589219]\n", + " [ 0.06245063 -0.52215478 0.85056117]\n", + " [ 0.05103095 -0.49958301 0.86476162]\n", + " [ 0.03941661 -0.47628531 0.87840687]\n", + " [ 0.02765092 -0.45233673 0.89141848]\n", + " [ 0.01577883 -0.4278199 0.90372626]\n", + " [ 0.00384678 -0.4028251 0.91526889]\n", + " [ 0.0845382 -0.56485241 0.8208502 ]\n", + " [ 0.11109049 -0.55397062 0.82509118]\n", + " [ 0.13742723 -0.54258595 0.82868223]\n", + " [ 0.1634458 -0.53074718 0.83162064]\n", + " [ 0.18904463 -0.51850747 0.83391374]\n", + " [ 0.21412293 -0.50592394 0.83557904]\n", + " [ 0.23858031 -0.49305752 0.83664432]\n", + " [ 0.26231631 -0.47997299 0.83714759]\n", + " [ 0.00384678 -0.4028251 0.91526889]\n", + " [ 0.03138059 -0.39167249 0.91956942]\n", + " [ 0.05879712 -0.38020176 0.92303278]\n", + " [ 0.08598865 -0.36846312 0.925657 ]\n", + " [ 0.11285083 -0.35650998 0.92745098]\n", + " [ 0.13928304 -0.34439856 0.92843409]\n", + " [ 0.16518777 -0.33218786 0.92863568]\n", + " [ 0.19046909 -0.31994025 0.92809469]\n", + " [ 0.26231631 -0.47997299 0.83714759]\n", + " [ 0.25337623 -0.45892474 0.85158004]\n", + " [ 0.24392361 -0.43715121 0.86567898]\n", + " [ 0.23400151 -0.41472006 0.87934667]\n", + " [ 0.22365248 -0.39170356 0.89249532]\n", + " [ 0.21291887 -0.36817897 0.90504685]\n", + " [ 0.20184329 -0.3442287 0.91693287]\n", + " [ 0.19046909 -0.31994025 0.92809469]\n", + " [ 0.07991204 -0.55580403 0.82746357]\n", + " [ 0.06635581 -0.52957959 0.8456609 ]\n", + " [ 0.05242267 -0.50212964 0.863202 ]\n", + " [ 0.03818983 -0.47357772 0.87992368]\n", + " [ 0.02373706 -0.44406209 0.89568154]\n", + " [ 0.00914775 -0.41373809 0.91034999]\n", + " [ 0.0960986 -0.56010252 0.82283062]\n", + " [ 0.12851017 -0.54642138 0.82759218]\n", + " [ 0.16049595 -0.53203297 0.83137354]\n", + " [ 0.19186849 -0.51703334 0.83418404]\n", + " [ 0.22244223 -0.50152766 0.8360559 ]\n", + " [ 0.2520323 -0.48562967 0.83704453]\n", + " [ 0.01589988 -0.39809087 0.91720819]\n", + " [ 0.04958002 -0.38420203 0.92191682]\n", + " [ 0.08297658 -0.36988471 0.9253649 ]\n", + " [ 0.11589598 -0.35523594 0.92756431]\n", + " [ 0.14815292 -0.34035919 0.92855066]\n", + " [ 0.17956865 -0.32536448 0.92838196]\n", + " [ 0.25840386 -0.47093416 0.84347404]\n", + " [ 0.24709542 -0.44464107 0.8609519 ]\n", + " [ 0.23506011 -0.41732518 0.87783053]\n", + " [ 0.22237649 -0.38911762 0.89394416]\n", + " [ 0.20912257 -0.36016063 0.90914909]\n", + " [ 0.19537708 -0.33060807 0.9233234 ]\n", + " [ 0.08459248 -0.5647461 0.82091775]\n", + " [ 0.08459248 -0.5647461 0.82091775]\n", + " [ 0.19042316 -0.32006566 0.92806088]\n", + " [ 0.19042316 -0.32006566 0.92806088]\n", + " [ 0.09146431 -0.55114328 0.82938252]\n", + " [ 0.12401258 -0.53742225 0.83414519]\n", + " [ 0.15614345 -0.52300725 0.83790372]\n", + " [ 0.18766941 -0.50799478 0.84066729]\n", + " [ 0.21840523 -0.49249031 0.84246807]\n", + " [ 0.2481666 -0.47660769 0.8433614 ]\n", + " [ 0.07802453 -0.52487609 0.84759499]\n", + " [ 0.11091944 -0.51106042 0.85235798]\n", + " [ 0.14342038 -0.49659097 0.85605374]\n", + " [ 0.17533928 -0.48156547 0.85869135]\n", + " [ 0.20649182 -0.46609022 0.86030288]\n", + " [ 0.23669557 -0.45027924 0.86094356]\n", + " [ 0.06418641 -0.49739223 0.86514801]\n", + " [ 0.09736751 -0.4835099 0.86990675]\n", + " [ 0.13017808 -0.46901815 0.87354201]\n", + " [ 0.16242897 -0.45401561 0.87606316]\n", + " [ 0.19393643 -0.43860901 0.87750259]\n", + " [ 0.22451988 -0.42291225 0.87791574]\n", + " [ 0.05002661 -0.46881554 0.8818783 ]\n", + " [ 0.08343221 -0.4548957 0.88662787]\n", + " [ 0.11649148 -0.44041531 0.89020452]\n", + " [ 0.14901389 -0.42547334 0.89261822]\n", + " [ 0.18081567 -0.41017633 0.89390216]\n", + " [ 0.21171765 -0.39463754 0.89411233]\n", + " [ 0.0356242 -0.43928457 0.89764135]\n", + " [ 0.06919081 -0.42535728 0.90237676]\n", + " [ 0.10243665 -0.41092285 0.90589687]\n", + " [ 0.13516972 -0.39607988 0.90821246]\n", + " [ 0.16720579 -0.38093398 0.90935775]\n", + " [ 0.19836638 -0.36559726 0.90938959]\n", + " [ 0.02106189 -0.40895489 0.91231151]\n", + " [ 0.05472416 -0.39505066 0.91702794]\n", + " [ 0.08809285 -0.3806968 0.92049421]\n", + " [ 0.12097474 -0.36599084 0.92272196]\n", + " [ 0.15318481 -0.35103691 0.92374645]\n", + " [ 0.18454452 -0.33594556 0.92362541]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:fp_optics: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:cartToSphere: vec: [[-0.61219465 -0.761293 0.2136602 ]\n", + " [-0.60203287 -0.76162526 0.23975692]\n", + " [-0.59118312 -0.76134811 0.26617958]\n", + " [-0.5796621 -0.7604293 0.29281245]\n", + " [-0.56749264 -0.75884433 0.31954246]\n", + " [-0.55470459 -0.75657682 0.3462576 ]\n", + " [-0.54133539 -0.75361893 0.37284649]\n", + " [-0.52743019 -0.74997173 0.39919895]\n", + " [-0.61219465 -0.761293 0.2136602 ]\n", + " [-0.59139692 -0.77978012 0.20540849]\n", + " [-0.57013578 -0.79755584 0.19710374]\n", + " [-0.54850034 -0.81456009 0.18878356]\n", + " [-0.52658499 -0.83074174 0.18048934]\n", + " [-0.50448922 -0.84605837 0.17226684]\n", + " [-0.48231781 -0.8604759 0.16416686]\n", + " [-0.46018134 -0.87396818 0.15624583]\n", + " [-0.52743019 -0.74997173 0.39919895]\n", + " [-0.50596668 -0.7690881 0.39051404]\n", + " [-0.48411841 -0.78745151 0.38150948]\n", + " [-0.46197833 -0.80499931 0.37222591]\n", + " [-0.43964274 -0.82167971 0.36270749]\n", + " [-0.4172106 -0.83745166 0.35300148]\n", + " [-0.39478364 -0.85228416 0.34315826]\n", + " [-0.37246751 -0.86615503 0.33323178]\n", + " [-0.46018134 -0.87396818 0.15624583]\n", + " [-0.44889287 -0.87510074 0.18081451]\n", + " [-0.43714747 -0.87552357 0.20581682]\n", + " [-0.42496447 -0.87520502 0.23113064]\n", + " [-0.41236962 -0.87412101 0.25663934]\n", + " [-0.39939513 -0.8722553 0.28223078]\n", + " [-0.38607957 -0.86959981 0.30779658]\n", + " [-0.37246751 -0.86615503 0.33323178]\n", + " [-0.607779 -0.76157502 0.2249626 ]\n", + " [-0.59485954 -0.76157752 0.25718048]\n", + " [-0.58092283 -0.76063165 0.28977261]\n", + " [-0.56600829 -0.75868909 0.32252982]\n", + " [-0.55017096 -0.75571972 0.35524586]\n", + " [-0.53348299 -0.75171279 0.38771611]\n", + " [-0.60315537 -0.7694391 0.21015962]\n", + " [-0.57734232 -0.79162718 0.20000564]\n", + " [-0.5509212 -0.81268596 0.18980875]\n", + " [-0.52406359 -0.83251759 0.1796436 ]\n", + " [-0.49695267 -0.85104392 0.16959449]\n", + " [-0.46978372 -0.86820555 0.15975725]\n", + " [-0.51817351 -0.7584083 0.39536447]\n", + " [-0.49159755 -0.78133935 0.38450054]\n", + " [-0.4645355 -0.80307599 0.37319664]\n", + " [-0.43716332 -0.82351831 0.36153261]\n", + " [-0.40966321 -0.84259069 0.34959546]\n", + " [-0.38222399 -0.86023978 0.33747939]\n", + " [-0.45539243 -0.87450226 0.16692375]\n", + " [-0.44124841 -0.87541715 0.19734401]\n", + " [-0.42643638 -0.87523373 0.22829352]\n", + " [-0.41100106 -0.87390454 0.25955534]\n", + " [-0.39500174 -0.87139971 0.29092296]\n", + " [-0.37851195 -0.8677079 0.32219824]\n", + " [-0.61209085 -0.76135949 0.21372066]\n", + " [-0.61209085 -0.76135949 0.21372066]\n", + " [-0.37259051 -0.86612237 0.33317916]\n", + " [-0.37259051 -0.86612237 0.33317916]\n", + " [-0.59880881 -0.76968597 0.22138545]\n", + " [-0.5728991 -0.79195629 0.21116781]\n", + " [-0.54638431 -0.81308743 0.2008806 ]\n", + " [-0.51943644 -0.83298147 0.19059814]\n", + " [-0.49223872 -0.85156057 0.18040409]\n", + " [-0.46498603 -0.86876583 0.17039346]\n", + " [-0.58580225 -0.76976744 0.25356226]\n", + " [-0.55965273 -0.7922456 0.24317842]\n", + " [-0.53290992 -0.81356024 0.23265158]\n", + " [-0.50574723 -0.83361322 0.22205572]\n", + " [-0.47834805 -0.85232753 0.21147323]\n", + " [-0.45090619 -0.86964581 0.20099695]\n", + " [-0.57179535 -0.76888581 0.28612007]\n", + " [-0.54545725 -0.79153413 0.27559046]\n", + " [-0.51854266 -0.81300042 0.26484679]\n", + " [-0.49122634 -0.83318618 0.25396353]\n", + " [-0.46369192 -0.85201511 0.24302275]\n", + " [-0.43613208 -0.86943141 0.23211601]\n", + " [-0.55682806 -0.76699236 0.31884987]\n", + " [-0.53035425 -0.78977225 0.308195 ]\n", + " [-0.50332563 -0.81135799 0.29725666]\n", + " [-0.47591807 -0.83165062 0.28611053]\n", + " [-0.44831518 -0.85057439 0.27483943]\n", + " [-0.42070849 -0.86807479 0.26353468]\n", + " [-0.54095599 -0.76405645 0.35154566]\n", + " [-0.51440101 -0.78692821 0.34078674]\n", + " [-0.48731756 -0.80860065 0.32967647]\n", + " [-0.45988204 -0.8289744 0.31829224]\n", + " [-0.43227773 -0.84797394 0.30671838]\n", + " [-0.40469499 -0.86554563 0.29504699]\n", + " [-0.52425179 -0.76006691 0.38400306]\n", + " [-0.49767138 -0.78298978 0.37316242]\n", + " [-0.47059314 -0.80471562 0.36190449]\n", + " [-0.44319327 -0.82514465 0.35030849]\n", + " [-0.41565431 -0.8442013 0.33846071]\n", + " [-0.38816547 -0.86183228 0.32645473]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:fp_optics: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:cartToSphere: vec: [[-0.14439277 -0.96340473 0.22583635]\n", + " [-0.14757134 -0.95647526 0.25174942]\n", + " [-0.15055915 -0.9487009 0.27802617]\n", + " [-0.15334691 -0.9400721 0.30454749]\n", + " [-0.15592725 -0.93058967 0.33119415]\n", + " [-0.15829342 -0.92026468 0.35784929]\n", + " [-0.16043856 -0.9091185 0.38439957]\n", + " [-0.16235569 -0.89718276 0.4107356 ]\n", + " [-0.14439277 -0.96340473 0.22583635]\n", + " [-0.11768987 -0.96671355 0.22718715]\n", + " [-0.09033411 -0.96933482 0.2285383 ]\n", + " [-0.06243199 -0.97121787 0.22986538]\n", + " [-0.03409408 -0.97232171 0.23114515]\n", + " [-0.00543267 -0.97261525 0.23235763]\n", + " [ 0.02343927 -0.97207738 0.23348699]\n", + " [ 0.05240841 -0.97069712 0.23452176]\n", + " [-0.16235569 -0.89718276 0.4107356 ]\n", + " [-0.13480868 -0.90023929 0.4139998 ]\n", + " [-0.10658589 -0.90263462 0.41700142]\n", + " [-0.077797 -0.90431844 0.41970917]\n", + " [-0.04855038 -0.90524995 0.42209643]\n", + " [-0.0189555 -0.90539773 0.42414107]\n", + " [ 0.01087475 -0.90474003 0.42582534]\n", + " [ 0.04082319 -0.90326533 0.42713605]\n", + " [ 0.05240841 -0.97069712 0.23452176]\n", + " [ 0.05092572 -0.96381687 0.26165553]\n", + " [ 0.04937875 -0.95601986 0.28911549]\n", + " [ 0.04777086 -0.94729569 0.31677883]\n", + " [ 0.0461061 -0.93764328 0.34452765]\n", + " [ 0.04438932 -0.92707179 0.37224653]\n", + " [ 0.0426262 -0.91560165 0.39982075]\n", + " [ 0.04082319 -0.90326533 0.42713605]\n", + " [-0.14571092 -0.96049877 0.2370874 ]\n", + " [-0.14947877 -0.95143965 0.26910719]\n", + " [-0.15295071 -0.94110074 0.30155511]\n", + " [-0.1561125 -0.92947921 0.33421144]\n", + " [-0.15895161 -0.91659546 0.3668612 ]\n", + " [-0.16145537 -0.90249309 0.39929736]\n", + " [-0.13284783 -0.96490608 0.22651205]\n", + " [-0.09966761 -0.96850601 0.22817204]\n", + " [-0.0656119 -0.97102179 0.22980811]\n", + " [-0.03088278 -0.97237391 0.23137683]\n", + " [ 0.00431313 -0.97250513 0.23284151]\n", + " [ 0.03976771 -0.97138081 0.23417483]\n", + " [-0.15042912 -0.89863538 0.41209894]\n", + " [-0.11619901 -0.90194409 0.41592626]\n", + " [-0.08106304 -0.90420852 0.41932771]\n", + " [-0.04522122 -0.90534963 0.42225239]\n", + " [-0.00887535 -0.90530962 0.42465953]\n", + " [ 0.02776493 -0.90405266 0.42651835]\n", + " [ 0.05167055 -0.96781516 0.24630056]\n", + " [ 0.04980877 -0.95876805 0.27979082]\n", + " [ 0.0478539 -0.94833258 0.31364841]\n", + " [ 0.04581311 -0.93650289 0.34765427]\n", + " [ 0.04369531 -0.92329594 0.38159575]\n", + " [ 0.04151132 -0.90875436 0.41526176]\n", + " [-0.14431386 -0.96339487 0.22592881]\n", + " [-0.14431386 -0.96339487 0.22592881]\n", + " [ 0.04072694 -0.90331539 0.42703938]\n", + " [ 0.04072694 -0.90331539 0.42703938]\n", + " [-0.13420092 -0.96201626 0.23772849]\n", + " [-0.10089191 -0.96563091 0.23953659]\n", + " [-0.06670368 -0.96815674 0.24129471]\n", + " [-0.03183987 -0.96951423 0.24295759]\n", + " [ 0.00349248 -0.96964604 0.24448794]\n", + " [ 0.03908497 -0.9685174 0.24585851]\n", + " [-0.13785802 -0.95296549 0.26991098]\n", + " [-0.10422697 -0.95659852 0.27213235]\n", + " [-0.06970926 -0.95913484 0.27422798]\n", + " [-0.03451049 -0.96049489 0.27614959]\n", + " [ 0.0011623 -0.96062098 0.27785965]\n", + " [ 0.0371003 -0.95947769 0.27933158]\n", + " [-0.14124178 -0.94262096 0.30251693]\n", + " [-0.10735623 -0.94623791 0.30513679]\n", + " [-0.07257896 -0.94875807 0.30755557]\n", + " [-0.03711509 -0.9501018 0.30972412]\n", + " [-0.00117043 -0.9502109 0.31160532]\n", + " [ 0.03504597 -0.94904917 0.31317319]\n", + " [-0.14433945 -0.9309798 0.33532482]\n", + " [-0.1102693 -0.93454602 0.3383259 ]\n", + " [-0.07530313 -0.93702283 0.34105374]\n", + " [-0.03964425 -0.93833055 0.34345903]\n", + " [-0.00349688 -0.93841054 0.3455046 ]\n", + " [ 0.03292964 -0.93722607 0.34716413]\n", + " [-0.14713894 -0.91806236 0.36811904]\n", + " [-0.11295416 -0.92154284 0.37148371]\n", + " [-0.07786914 -0.9239484 0.37450736]\n", + " [-0.04208526 -0.92519946 0.37714029]\n", + " [-0.00580532 -0.92523737 0.37934432]\n", + " [ 0.03076107 -0.92402536 0.3810917 ]\n", + " [-0.14962747 -0.90391226 0.40069221]\n", + " [-0.11539713 -0.90727191 0.40440225]\n", + " [-0.08026237 -0.90957806 0.40770787]\n", + " [-0.04442335 -0.91075149 0.41055852]\n", + " [-0.00808202 -0.91073408 0.41291418]\n", + " [ 0.02855194 -0.90948965 0.41474493]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:fp_optics: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:cartToSphere: vec: [[-0.40215007 0.8345537 0.37655736]\n", + " [-0.37635564 0.84453124 0.38095069]\n", + " [-0.34974248 0.85402599 0.3851231 ]\n", + " [-0.3224002 0.86296292 0.38904128]\n", + " [-0.29442267 0.87127554 0.39267572]\n", + " [-0.26590937 0.8789059 0.39600078]\n", + " [-0.23696563 0.88580496 0.39899482]\n", + " [-0.20770207 0.89193317 0.40164048]\n", + " [-0.40215007 0.8345537 0.37655736]\n", + " [-0.40182372 0.82233017 0.40287813]\n", + " [-0.4010709 0.80949323 0.4287923 ]\n", + " [-0.39989673 0.79610393 0.45420385]\n", + " [-0.398309 0.78223259 0.47902204]\n", + " [-0.39631754 0.76795901 0.50316137]\n", + " [-0.39393364 0.75337296 0.52654105]\n", + " [-0.39116941 0.73857512 0.54908404]\n", + " [-0.20770207 0.89193317 0.40164048]\n", + " [-0.20750475 0.87922555 0.42884055]\n", + " [-0.20711948 0.86577081 0.45556824]\n", + " [-0.2065504 0.85163325 0.48172372]\n", + " [-0.20580399 0.83688609 0.50721434]\n", + " [-0.20488893 0.82161073 0.53195521]\n", + " [-0.20381598 0.80589628 0.55586889]\n", + " [-0.20259791 0.78983984 0.57888437]\n", + " [-0.39116941 0.73857512 0.54908404]\n", + " [-0.36613073 0.74712381 0.55475607]\n", + " [-0.34029495 0.75537545 0.5600065 ]\n", + " [-0.31375846 0.76325259 0.56480183]\n", + " [-0.28661891 0.77068888 0.56911181]\n", + " [-0.2589763 0.77762821 0.5729098 ]\n", + " [-0.23093382 0.7840242 0.57617326]\n", + " [-0.20259791 0.78983984 0.57888437]\n", + " [-0.3910095 0.83891727 0.37858868]\n", + " [-0.3588341 0.8508306 0.38382989]\n", + " [-0.32551758 0.86194332 0.38870556]\n", + " [-0.29123092 0.87212952 0.39315983]\n", + " [-0.25615727 0.88128255 0.39714546]\n", + " [-0.22049278 0.88931604 0.4006244 ]\n", + " [-0.40197372 0.82933781 0.38809267]\n", + " [-0.40128657 0.81393636 0.42009128]\n", + " [-0.39996375 0.79767305 0.4513831 ]\n", + " [-0.39801852 0.7806735 0.48179887]\n", + " [-0.39546894 0.76308465 0.51118112]\n", + " [-0.39233612 0.74507626 0.53938274]\n", + " [-0.20773979 0.88646859 0.41354278]\n", + " [-0.20737098 0.87038416 0.4465744 ]\n", + " [-0.20672352 0.85324043 0.47879656]\n", + " [-0.20580838 0.83516856 0.51003567]\n", + " [-0.20464151 0.81631832 0.54013541]\n", + " [-0.20324359 0.79685704 0.56895597]\n", + " [-0.38036639 0.74238477 0.55153083]\n", + " [-0.34912981 0.75267391 0.55820279]\n", + " [-0.31679163 0.76243846 0.56420798]\n", + " [-0.283531 0.77155172 0.56948935]\n", + " [-0.24953216 0.77991033 0.57399789]\n", + " [-0.21498639 0.78743281 0.57769405]\n", + " [-0.40206297 0.83454785 0.37666331]\n", + " [-0.40206297 0.83454785 0.37666331]\n", + " [-0.20269958 0.78987635 0.57879896]\n", + " [-0.20269958 0.78987635 0.57879896]\n", + " [-0.39092161 0.83368551 0.39006251]\n", + " [-0.39025129 0.8182097 0.42218102]\n", + " [-0.38896472 0.80185325 0.4535833 ]\n", + " [-0.38707554 0.78474191 0.48409985]\n", + " [-0.38460247 0.76702234 0.51357344]\n", + " [-0.38156743 0.74886347 0.54185773]\n", + " [-0.35875022 0.84554409 0.39541557]\n", + " [-0.35812926 0.82987988 0.42783504]\n", + " [-0.35694846 0.81328674 0.45951331]\n", + " [-0.3552222 0.79589119 0.49027992]\n", + " [-0.35297043 0.77783971 0.51997813]\n", + " [-0.35021679 0.75929955 0.54846366]\n", + " [-0.32543806 0.8566122 0.40038183]\n", + " [-0.32486952 0.84079286 0.43304406]\n", + " [-0.32380042 0.82400319 0.46494304]\n", + " [-0.32224517 0.80637091 0.49590725]\n", + " [-0.32022399 0.78804302 0.52578017]\n", + " [-0.31776129 0.76918601 0.5544192 ]\n", + " [-0.29115611 0.86676422 0.40490481]\n", + " [-0.29064344 0.8508239 0.43775002]\n", + " [-0.28969279 0.83387857 0.46981339]\n", + " [-0.28831801 0.81605727 0.50092241]\n", + " [-0.28653872 0.79750791 0.53092061]\n", + " [-0.28437906 0.7783969 0.5596667 ]\n", + " [-0.25608751 0.87589383 0.40893666]\n", + " [-0.25563408 0.85986774 0.44190349]\n", + " [-0.2548085 0.84280878 0.47407382]\n", + " [-0.2536236 0.82484717 0.5052744 ]\n", + " [-0.25209775 0.80613174 0.5353488 ]\n", + " [-0.25025395 0.78682926 0.56415661]\n", + " [-0.2204284 0.8839149 0.4124388 ]\n", + " [-0.2200371 0.86783921 0.44546467]\n", + " [-0.21934234 0.85070985 0.47768366]\n", + " [-0.2183556 0.8326578 0.50892221]\n", + " [-0.21709354 0.81383266 0.53902393]\n", + " [-0.21557747 0.79440162 0.56784894]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:cartToSphere: vec: [[-8.92280866e-01 4.51186812e-01 -1.62885668e-02]\n", + " [-8.80440540e-01 4.74083972e-01 -8.29713050e-03]\n", + " [-8.67714647e-01 4.97062663e-01 1.87300369e-05]\n", + " [-8.54118656e-01 5.20006955e-01 8.60742207e-03]\n", + " [-8.39676701e-01 5.42807088e-01 1.74213204e-02]\n", + " [-8.24421909e-01 5.65358912e-01 2.64162275e-02]\n", + " [-8.08396677e-01 5.87563582e-01 3.55506765e-02]\n", + " [-7.91652769e-01 6.09327633e-01 4.47853591e-02]\n", + " [-8.92280866e-01 4.51186812e-01 -1.62885668e-02]\n", + " [-8.97069495e-01 4.41807944e-01 8.48895150e-03]\n", + " [-9.01225956e-01 4.32024826e-01 3.38574331e-02]\n", + " [-9.04699446e-01 4.21847085e-01 5.96988165e-02]\n", + " [-9.07447599e-01 4.11290926e-01 8.58989471e-02]\n", + " [-9.09436487e-01 4.00379196e-01 1.12346676e-01]\n", + " [-9.10640835e-01 3.89141215e-01 1.38933019e-01]\n", + " [-9.11044347e-01 3.77612442e-01 1.65550723e-01]\n", + " [-7.91652769e-01 6.09327633e-01 4.47853591e-02]\n", + " [-7.95892051e-01 6.01243082e-01 7.11519533e-02]\n", + " [-7.99577770e-01 5.92512098e-01 9.80041040e-02]\n", + " [-8.02659450e-01 5.83142394e-01 1.25230810e-01]\n", + " [-8.05094757e-01 5.73147698e-01 1.52722453e-01]\n", + " [-8.06849541e-01 5.62548542e-01 1.80368947e-01]\n", + " [-8.07898181e-01 5.51372825e-01 2.08058975e-01]\n", + " [-8.08224078e-01 5.39656016e-01 2.35680343e-01]\n", + " [-9.11044347e-01 3.77612442e-01 1.65550723e-01]\n", + " [-8.99136807e-01 4.00890419e-01 1.75612852e-01]\n", + " [-8.86266192e-01 4.24303575e-01 1.85738291e-01]\n", + " [-8.72444383e-01 4.47741428e-01 1.95878563e-01]\n", + " [-8.57692399e-01 4.71097657e-01 2.05987250e-01]\n", + " [-8.42041548e-01 4.94268821e-01 2.16019359e-01]\n", + " [-8.25534218e-01 5.17154110e-01 2.25931144e-01]\n", + " [-8.08224078e-01 5.39656016e-01 2.35680343e-01]\n", + " [-8.87245333e-01 4.61121256e-01 -1.27634953e-02]\n", + " [-8.72136650e-01 4.89254678e-01 -2.74282807e-03]\n", + " [-8.55712132e-01 5.17394678e-01 7.71323356e-03]\n", + " [-8.38012593e-01 5.45336662e-01 1.85153795e-02]\n", + " [-8.19099049e-01 5.72888857e-01 2.95821666e-02]\n", + " [-7.99053449e-01 5.99871511e-01 4.08381719e-02]\n", + " [-8.94403863e-01 4.47225954e-01 -5.53860524e-03]\n", + " [-8.99854501e-01 4.35459156e-01 2.52428284e-02]\n", + " [-9.04304189e-01 4.23093805e-01 5.67940678e-02]\n", + " [-9.07671436e-01 4.10156989e-01 8.89033713e-02]\n", + " [-9.09893805e-01 3.96690751e-01 1.21366023e-01]\n", + " [-9.10928477e-01 3.82751643e-01 1.53982108e-01]\n", + " [-7.93624246e-01 6.05808619e-01 5.61825059e-02]\n", + " [-7.98455033e-01 5.95464029e-01 8.88377808e-02]\n", + " [-8.02403179e-01 5.84155654e-01 1.22111878e-01]\n", + " [-8.05387379e-01 5.71906232e-01 1.55802540e-01]\n", + " [-8.07344801e-01 5.58753631e-01 1.89707017e-01]\n", + " [-8.08232000e-01 5.44752373e-01 2.23619961e-01]\n", + " [-9.05971447e-01 3.87777812e-01 1.69835523e-01]\n", + " [-8.90728842e-01 4.16412788e-01 1.82215588e-01]\n", + " [-8.74050525e-01 4.45140409e-01 1.94642481e-01]\n", + " [-8.55971340e-01 4.73763305e-01 2.07029942e-01]\n", + " [-8.36549018e-01 5.02091016e-01 2.19295126e-01]\n", + " [-8.15866294e-01 5.29939263e-01 2.31358096e-01]\n", + " [-8.92259283e-01 4.51233460e-01 -1.61782637e-02]\n", + " [-8.92259283e-01 4.51233460e-01 -1.61782637e-02]\n", + " [-8.08284698e-01 5.39620771e-01 2.35553117e-01]\n", + " [-8.08284698e-01 5.39620771e-01 2.35553117e-01]\n", + " [-8.89387576e-01 4.57149336e-01 -2.05533544e-03]\n", + " [-8.94832553e-01 4.45464742e-01 2.89113303e-02]\n", + " [-8.99277968e-01 4.33154100e-01 6.06354812e-02]\n", + " [-9.02642127e-01 4.20244676e-01 9.29064208e-02]\n", + " [-9.04862257e-01 4.06778812e-01 1.25520093e-01]\n", + " [-9.05895194e-01 3.92813444e-01 1.58276642e-01]\n", + " [-8.74263291e-01 4.85383794e-01 8.14065895e-03]\n", + " [-8.79669807e-01 4.73935037e-01 3.95804327e-02]\n", + " [-8.84085108e-01 4.61785788e-01 7.17454323e-02]\n", + " [-8.87426893e-01 4.48963588e-01 1.04427999e-01]\n", + " [-8.89631458e-01 4.35511277e-01 1.37425605e-01]\n", + " [-8.90654721e-01 4.21486574e-01 1.70538076e-01]\n", + " [-8.57809628e-01 5.13625616e-01 1.87448524e-02]\n", + " [-8.63143580e-01 5.02418652e-01 5.05831856e-02]\n", + " [-8.67500990e-01 4.90442026e-01 8.31183023e-02]\n", + " [-8.70799094e-01 4.77722970e-01 1.16145170e-01]\n", + " [-8.72973516e-01 4.64304121e-01 1.49462115e-01]\n", + " [-8.73979513e-01 4.50243386e-01 1.82867997e-01]\n", + " [-8.40067048e-01 5.41670672e-01 2.96687955e-02]\n", + " [-8.45293137e-01 5.30712852e-01 6.18335017e-02]\n", + " [-8.49563515e-01 5.18921468e-01 9.46696626e-02]\n", + " [-8.52795321e-01 5.06322795e-01 1.27974089e-01]\n", + " [-8.54923970e-01 4.92958547e-01 1.61545277e-01]\n", + " [-8.55904499e-01 4.78886176e-01 1.95180736e-01]\n", + " [-8.21096361e-01 5.69327262e-01 4.08317748e-02]\n", + " [-8.26178603e-01 5.58626009e-01 7.32522950e-02]\n", + " [-8.30332056e-01 5.47032453e-01 1.06321084e-01]\n", + " [-8.33474231e-01 5.34571442e-01 1.39835906e-01]\n", + " [-8.35540917e-01 5.21283210e-01 1.73594908e-01]\n", + " [-8.36487456e-01 5.07224197e-01 2.07394192e-01]\n", + " [-8.00979565e-01 5.96415292e-01 5.21587655e-02]\n", + " [-8.05882144e-01 5.85976823e-01 8.47651613e-02]\n", + " [-8.09888957e-01 5.74592350e-01 1.17997919e-01]\n", + " [-8.12918330e-01 5.62285136e-01 1.51654917e-01]\n", + " [-8.14906990e-01 5.49093669e-01 1.85533662e-01]\n", + " [-8.15811100e-01 5.35073003e-01 2.19429103e-01]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:fp_optics: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:cartToSphere: vec: [[-1.08392871e-01 -2.07936260e-01 -9.72118047e-01]\n", + " [-1.12504901e-01 -2.34847382e-01 -9.65499536e-01]\n", + " [-1.16608222e-01 -2.62102623e-01 -9.57969069e-01]\n", + " [-1.20681529e-01 -2.89583280e-01 -9.49514346e-01]\n", + " [-1.24704713e-01 -3.17173204e-01 -9.40132912e-01]\n", + " [-1.28658645e-01 -3.44757196e-01 -9.29833011e-01]\n", + " [-1.32525141e-01 -3.72220543e-01 -9.18634287e-01]\n", + " [-1.36287094e-01 -3.99449668e-01 -9.06568139e-01]\n", + " [-1.08392871e-01 -2.07936260e-01 -9.72118047e-01]\n", + " [-7.98242420e-02 -2.12794560e-01 -9.73830871e-01]\n", + " [-5.12941090e-02 -2.17553919e-01 -9.74699547e-01]\n", + " [-2.29152726e-02 -2.22200978e-01 -9.74731561e-01]\n", + " [ 5.19895855e-03 -2.26726605e-01 -9.73944566e-01]\n", + " [ 3.29345927e-02 -2.31126386e-01 -9.72366138e-01]\n", + " [ 6.01763051e-02 -2.35401070e-01 -9.70033581e-01]\n", + " [ 8.68065364e-02 -2.39556816e-01 -9.66993877e-01]\n", + " [-1.36287094e-01 -3.99449668e-01 -9.06568139e-01]\n", + " [-1.06713731e-01 -4.04327371e-01 -9.08367523e-01]\n", + " [-7.71400397e-02 -4.08828701e-01 -9.09345098e-01]\n", + " [-4.76843363e-02 -4.12941026e-01 -9.09508611e-01]\n", + " [-1.84629163e-02 -4.16656854e-01 -9.08876332e-01]\n", + " [ 1.04106162e-02 -4.19973726e-01 -9.07476550e-01]\n", + " [ 3.88248754e-02 -4.22893950e-01 -9.05347080e-01]\n", + " [ 6.66690502e-02 -4.25424295e-01 -9.02534989e-01]\n", + " [ 8.68065364e-02 -2.39556816e-01 -9.66993877e-01]\n", + " [ 8.46018789e-02 -2.65708518e-01 -9.60334059e-01]\n", + " [ 8.21396732e-02 -2.92194762e-01 -9.52824903e-01]\n", + " [ 7.94424503e-02 -3.18890461e-01 -9.44456336e-01]\n", + " [ 7.65300011e-02 -3.45675485e-01 -9.35228110e-01]\n", + " [ 7.34198496e-02 -3.72433823e-01 -9.25150027e-01]\n", + " [ 7.01279039e-02 -3.99053054e-01 -9.14242165e-01]\n", + " [ 6.66690502e-02 -4.25424295e-01 -9.02534989e-01]\n", + " [-1.10087358e-01 -2.19636349e-01 -9.69350632e-01]\n", + " [-1.15123006e-01 -2.52865413e-01 -9.60627803e-01]\n", + " [-1.20124438e-01 -2.86492986e-01 -9.50521903e-01]\n", + " [-1.25054160e-01 -3.20304298e-01 -9.39024288e-01]\n", + " [-1.29876957e-01 -3.54087213e-01 -9.26150215e-01]\n", + " [-1.34559796e-01 -3.87630957e-01 -9.11940734e-01]\n", + " [-9.59529581e-02 -2.10156999e-01 -9.72947617e-01]\n", + " [-6.09498470e-02 -2.16046702e-01 -9.74478804e-01]\n", + " [-2.61165648e-02 -2.21773868e-01 -9.74748315e-01]\n", + " [ 8.33848963e-03 -2.27319907e-01 -9.73784437e-01]\n", + " [ 4.22053883e-02 -2.32676741e-01 -9.71637916e-01]\n", + " [ 7.52709402e-02 -2.37847994e-01 -9.68381442e-01]\n", + " [-1.23388002e-01 -4.01529046e-01 -9.07496461e-01]\n", + " [-8.71277757e-02 -4.07256068e-01 -9.09148638e-01]\n", + " [-5.09848035e-02 -4.12404833e-01 -9.09572869e-01]\n", + " [-1.51740898e-02 -4.16959408e-01 -9.08798437e-01]\n", + " [ 2.00951717e-02 -4.20915226e-01 -9.06877366e-01]\n", + " [ 5.46182774e-02 -4.24278398e-01 -9.03883114e-01]\n", + " [ 8.57881736e-02 -2.50896056e-01 -9.64205143e-01]\n", + " [ 8.29087466e-02 -2.83189758e-01 -9.55473548e-01]\n", + " [ 7.96653628e-02 -3.15861075e-01 -9.45455029e-01]\n", + " [ 7.60955831e-02 -3.48686836e-01 -9.34145038e-01]\n", + " [ 7.22317403e-02 -3.81453411e-01 -9.21561648e-01]\n", + " [ 6.81026728e-02 -4.13955288e-01 -9.07746135e-01]\n", + " [-1.08309286e-01 -2.08044326e-01 -9.72104242e-01]\n", + " [-1.08309286e-01 -2.08044326e-01 -9.72104242e-01]\n", + " [ 6.65870280e-02 -4.25326656e-01 -9.02587062e-01]\n", + " [ 6.65870280e-02 -4.25326656e-01 -9.02587062e-01]\n", + " [-9.76821879e-02 -2.21755315e-01 -9.70197284e-01]\n", + " [-6.25375604e-02 -2.27644225e-01 -9.71734100e-01]\n", + " [-2.75585987e-02 -2.33342821e-01 -9.72003936e-01]\n", + " [ 7.04610272e-03 -2.38832089e-01 -9.71035316e-01]\n", + " [ 4.10670228e-02 -2.44103451e-01 -9.68879252e-01]\n", + " [ 7.42918698e-02 -2.49160042e-01 -9.65608612e-01]\n", + " [-1.02594845e-01 -2.54999697e-01 -9.61482944e-01]\n", + " [-6.70934897e-02 -2.60880406e-01 -9.63036800e-01]\n", + " [-3.17472621e-02 -2.66493982e-01 -9.63313588e-01]\n", + " [ 3.23426916e-03 -2.71820591e-01 -9.62342510e-01]\n", + " [ 3.76424295e-02 -2.76850674e-01 -9.60175376e-01]\n", + " [ 7.12674761e-02 -2.81586270e-01 -9.56885636e-01]\n", + " [-1.07496360e-01 -2.88638762e-01 -9.51384359e-01]\n", + " [-7.17043625e-02 -2.94501636e-01 -9.52957119e-01]\n", + " [-3.60582840e-02 -3.00022673e-01 -9.53250332e-01]\n", + " [-7.69121712e-04 -3.05181921e-01 -9.52293759e-01]\n", + " [ 3.39547931e-02 -3.09969712e-01 -9.50139911e-01]\n", + " [ 6.79059139e-02 -3.14387754e-01 -9.46862782e-01]\n", + " [-1.12349916e-01 -3.22457584e-01 -9.39892868e-01]\n", + " [-7.63350556e-02 -3.28292249e-01 -9.41486675e-01]\n", + " [-4.04575745e-02 -3.33712064e-01 -9.41806479e-01]\n", + " [-4.93004228e-03 -3.38697685e-01 -9.40882338e-01]\n", + " [ 3.00391361e-02 -3.43240254e-01 -9.38767159e-01]\n", + " [ 6.42440177e-02 -3.47342064e-01 -9.35535246e-01]\n", + " [-1.17121097e-01 -3.56243907e-01 -9.27023693e-01]\n", + " [-8.09532699e-02 -3.62039753e-01 -9.28640827e-01]\n", + " [-4.49144169e-02 -3.67349572e-01 -9.28997840e-01]\n", + " [-9.21848397e-03 -3.72155231e-01 -9.28124724e-01]\n", + " [ 2.59258120e-02 -3.76449433e-01 -9.26074336e-01]\n", + " [ 6.03134743e-02 -3.80235827e-01 -9.22920907e-01]\n", + " [-1.21777562e-01 -3.89786886e-01 -9.12817840e-01]\n", + " [-8.55285811e-02 -3.95533593e-01 -9.14460518e-01]\n", + " [-4.93999675e-02 -4.00725550e-01 -9.14865387e-01]\n", + " [-1.36065615e-02 -4.05346221e-01 -9.14061980e-01]\n", + " [ 2.16425557e-02 -4.09390300e-01 -9.12102616e-01]\n", + " [ 5.61427066e-02 -4.12863238e-01 -9.09061023e-01]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:fp_optics: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:fp_optics: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:cartToSphere: vec: [[ 0.39615552 -0.88001655 0.26197647]\n", + " [ 0.38306511 -0.87847613 0.2855535 ]\n", + " [ 0.3695339 -0.87617364 0.30945831]\n", + " [ 0.35559371 -0.87308592 0.33357772]\n", + " [ 0.34128096 -0.86919927 0.35779874]\n", + " [ 0.32663705 -0.86450881 0.38201146]\n", + " [ 0.31170855 -0.85901821 0.40611021]\n", + " [ 0.29654717 -0.85273966 0.42999401]\n", + " [ 0.39615552 -0.88001655 0.26197647]\n", + " [ 0.41829657 -0.86714691 0.27034091]\n", + " [ 0.44053688 -0.8533406 0.27881371]\n", + " [ 0.46277103 -0.83861713 0.28734002]\n", + " [ 0.48489581 -0.82300634 0.29586589]\n", + " [ 0.50681168 -0.80654728 0.30434095]\n", + " [ 0.52842338 -0.78928783 0.31271945]\n", + " [ 0.54964021 -0.77128459 0.32096062]\n", + " [ 0.29654717 -0.85273966 0.42999401]\n", + " [ 0.31870368 -0.83933304 0.44039529]\n", + " [ 0.34105934 -0.82497541 0.45065963]\n", + " [ 0.36350821 -0.80968788 0.46072477]\n", + " [ 0.38594976 -0.79349885 0.47053411]\n", + " [ 0.408287 -0.77644529 0.48003587]\n", + " [ 0.43042481 -0.75857434 0.48918244]\n", + " [ 0.45226964 -0.73994428 0.49793035]\n", + " [ 0.54964021 -0.77128459 0.32096062]\n", + " [ 0.5375733 -0.76889267 0.34614883]\n", + " [ 0.52483678 -0.76582708 0.37155787]\n", + " [ 0.51145832 -0.76206712 0.39706937]\n", + " [ 0.49747039 -0.75759966 0.42257067]\n", + " [ 0.48291138 -0.75241949 0.44795258]\n", + " [ 0.46782678 -0.74653011 0.47310771]\n", + " [ 0.45226964 -0.73994428 0.49793035]\n", + " [ 0.39057971 -0.8793942 0.27223763]\n", + " [ 0.37423627 -0.87699688 0.30136967]\n", + " [ 0.35726167 -0.87343082 0.33088172]\n", + " [ 0.33972103 -0.8686669 0.36056545]\n", + " [ 0.32169058 -0.86269612 0.39021863]\n", + " [ 0.3032582 -0.85552877 0.41964865]\n", + " [ 0.40574635 -0.87451716 0.26568712]\n", + " [ 0.43296306 -0.85811195 0.27601968]\n", + " [ 0.46022406 -0.84031795 0.28646041]\n", + " [ 0.48733828 -0.82118585 0.29690942]\n", + " [ 0.51412256 -0.80078752 0.30727406]\n", + " [ 0.54040338 -0.77921473 0.3174722 ]\n", + " [ 0.30622836 -0.8470352 0.43446008]\n", + " [ 0.33353153 -0.82996242 0.44712314]\n", + " [ 0.36102783 -0.81148134 0.45951817]\n", + " [ 0.38852999 -0.79164119 0.47153862]\n", + " [ 0.41585924 -0.77051023 0.48308911]\n", + " [ 0.44284107 -0.74817987 0.49408367]\n", + " [ 0.54439086 -0.7703859 0.33187972]\n", + " [ 0.52914737 -0.76700493 0.36291389]\n", + " [ 0.51292525 -0.76259059 0.39416149]\n", + " [ 0.49578223 -0.75711552 0.42541282]\n", + " [ 0.47778915 -0.75057025 0.45646667]\n", + " [ 0.45903292 -0.74296505 0.48712597]\n", + " [ 0.39618696 -0.87997015 0.26208478]\n", + " [ 0.39618696 -0.87997015 0.26208478]\n", + " [ 0.45224948 -0.74003289 0.49781696]\n", + " [ 0.45224948 -0.74003289 0.49781696]\n", + " [ 0.40016191 -0.87392537 0.2759074 ]\n", + " [ 0.42744872 -0.85746901 0.28641663]\n", + " [ 0.45478655 -0.83961572 0.29700948]\n", + " [ 0.48198363 -0.82041693 0.30758388]\n", + " [ 0.50885655 -0.79994464 0.31804652]\n", + " [ 0.53523148 -0.77829068 0.32831523]\n", + " [ 0.38386724 -0.87148357 0.30522505]\n", + " [ 0.41130758 -0.85488807 0.31621584]\n", + " [ 0.43881932 -0.83687853 0.32721847]\n", + " [ 0.46620988 -0.81750727 0.33812751]\n", + " [ 0.49329571 -0.79684598 0.3488493 ]\n", + " [ 0.51990214 -0.77498624 0.35930222]\n", + " [ 0.36691703 -0.86787459 0.3349113 ]\n", + " [ 0.39444253 -0.85115053 0.34634936]\n", + " [ 0.42206239 -0.83300304 0.35772793]\n", + " [ 0.44958462 -0.81348405 0.36894087]\n", + " [ 0.47682618 -0.79266413 0.37989521]\n", + " [ 0.50361164 -0.77063445 0.39050975]\n", + " [ 0.34937572 -0.86307004 0.3647557 ]\n", + " [ 0.37691665 -0.84622898 0.3766037 ]\n", + " [ 0.40457793 -0.82796186 0.38832441]\n", + " [ 0.43216895 -0.80831948 0.39981197]\n", + " [ 0.45950765 -0.78737114 0.41097373]\n", + " [ 0.48641815 -0.7652077 0.42172807]\n", + " [ 0.3313193 -0.85706105 0.3945553 ]\n", + " [ 0.35880581 -0.84011432 0.40677552]\n", + " [ 0.38644161 -0.82174502 0.41880546]\n", + " [ 0.41403776 -0.80200287 0.43053935]\n", + " [ 0.44141354 -0.78095626 0.44188393]\n", + " [ 0.46839319 -0.75869605 0.45275613]\n", + " [ 0.31283586 -0.84985783 0.42411719]\n", + " [ 0.34019886 -0.83281609 0.4366716 ]\n", + " [ 0.36774303 -0.81436127 0.44897749]\n", + " [ 0.39528078 -0.79454257 0.46092863]\n", + " [ 0.42263285 -0.77342816 0.47243026]\n", + " [ 0.44962431 -0.75110924 0.48339723]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:cartToSphere: vec: [[-0.27229179 0.47063359 -0.8392623 ]\n", + " [-0.29674268 0.45943802 -0.83717411]\n", + " [-0.32143571 0.4475375 -0.83449942]\n", + " [-0.34625538 0.43497798 -0.83120477]\n", + " [-0.37109084 0.42180581 -0.82726746]\n", + " [-0.39583497 0.40806875 -0.82267525]\n", + " [-0.42038393 0.39381697 -0.81742617]\n", + " [-0.44463729 0.37910363 -0.81152826]\n", + " [-0.27229179 0.47063359 -0.8392623 ]\n", + " [-0.26135033 0.45063642 -0.85359406]\n", + " [-0.25011533 0.42979353 -0.86759429]\n", + " [-0.23860953 0.40818543 -0.88116409]\n", + " [-0.22686067 0.38589295 -0.89421522]\n", + " [-0.21490144 0.36299856 -0.90666941]\n", + " [-0.20276916 0.33958743 -0.91845797]\n", + " [-0.19050536 0.31574797 -0.92952188]\n", + " [-0.44463729 0.37910363 -0.81152826]\n", + " [-0.4350117 0.35753112 -0.82639961]\n", + " [-0.42484234 0.33522735 -0.84091118]\n", + " [-0.41415016 0.31226581 -0.85496767]\n", + " [-0.40296068 0.28872373 -0.86848218]\n", + " [-0.39130469 0.26468329 -0.88137585]\n", + " [-0.37921848 0.240232 -0.89357816]\n", + " [-0.36674377 0.21546238 -0.90502761]\n", + " [-0.19050536 0.31574797 -0.92952188]\n", + " [-0.21526625 0.30272715 -0.92844855]\n", + " [-0.24034573 0.28919676 -0.92660626]\n", + " [-0.26563445 0.27519786 -0.92396129]\n", + " [-0.29102485 0.26077472 -0.92048959]\n", + " [-0.31641018 0.24597552 -0.91617719]\n", + " [-0.34168457 0.23085263 -0.9110207 ]\n", + " [-0.36674377 0.21546238 -0.90502761]\n", + " [-0.28287845 0.46577459 -0.83847112]\n", + " [-0.31302398 0.4515721 -0.83552297]\n", + " [-0.34341793 0.43635654 -0.83165924]\n", + " [-0.37385435 0.420213 -0.8268337 ]\n", + " [-0.40413597 0.40322953 -0.82102379]\n", + " [-0.43407305 0.3854997 -0.81423004]\n", + " [-0.26764195 0.4619864 -0.84553909]\n", + " [-0.2540327 0.43689758 -0.86289507]\n", + " [-0.24000438 0.41061854 -0.87965352]\n", + " [-0.225606 0.38329788 -0.89564762]\n", + " [-0.21089768 0.35508754 -0.91073322]\n", + " [-0.19594992 0.32614566 -0.92478789]\n", + " [-0.44042587 0.36984371 -0.81807132]\n", + " [-0.4282598 0.34290405 -0.83606839]\n", + " [-0.41529748 0.31493862 -0.85342936]\n", + " [-0.40158395 0.28608794 -0.86999081]\n", + " [-0.38717592 0.25650334 -0.88560761]\n", + " [-0.37214248 0.22634805 -0.90015362]\n", + " [-0.20129716 0.31021852 -0.92910921]\n", + " [-0.23187269 0.29391329 -0.92728099]\n", + " [-0.26281774 0.27688302 -0.92426329]\n", + " [-0.29393364 0.2592078 -0.92000779]\n", + " [-0.32502388 0.24097637 -0.91448885]\n", + " [-0.35589418 0.22228681 -0.90770475]\n", + " [-0.27233796 0.4705297 -0.83930556]\n", + " [-0.27233796 0.4705297 -0.83930556]\n", + " [-0.36670183 0.21560053 -0.9050117 ]\n", + " [-0.36670183 0.21560053 -0.9050117 ]\n", + " [-0.27821549 0.45717205 -0.84474248]\n", + " [-0.26468141 0.43192306 -0.86219848]\n", + " [-0.25070121 0.40549391 -0.87904698]\n", + " [-0.23632425 0.37803179 -0.89512167]\n", + " [-0.22161106 0.34968788 -0.91027849]\n", + " [-0.20663254 0.32062017 -0.92439477]\n", + " [-0.3084569 0.44281452 -0.84188458]\n", + " [-0.29514427 0.41714737 -0.85958009]\n", + " [-0.28131175 0.39032763 -0.8766459 ]\n", + " [-0.26700926 0.36249908 -0.89291683]\n", + " [-0.25229799 0.33381133 -0.90824871]\n", + " [-0.23724966 0.30442257 -0.92251802]\n", + " [-0.33895086 0.42746168 -0.83808641]\n", + " [-0.32587449 0.40142589 -0.8559574 ]\n", + " [-0.31220853 0.37426447 -0.87318494]\n", + " [-0.29800271 0.34611878 -0.8896045 ]\n", + " [-0.28331807 0.31713786 -0.90507152]\n", + " [-0.26822652 0.28748077 -0.91946144]\n", + " [-0.36949208 0.41119736 -0.83330207]\n", + " [-0.35666846 0.38483936 -0.85128507]\n", + " [-0.34318937 0.35738321 -0.86861861]\n", + " [-0.32910359 0.32896899 -0.88513854]\n", + " [-0.31447133 0.29974591 -0.90069982]\n", + " [-0.29936416 0.26987432 -0.91517701]\n", + " [-0.39988339 0.39410877 -0.82750924]\n", + " [-0.38732906 0.36747339 -0.84554096]\n", + " [-0.374057 0.33976894 -0.86292435]\n", + " [-0.36011454 0.31113519 -0.87949554]\n", + " [-0.34556056 0.28172212 -0.89510924]\n", + " [-0.3304658 0.2516914 -0.90963938]\n", + " [-0.42993467 0.37628919 -0.82070861]\n", + " [-0.41766488 0.34942096 -0.83872584]\n", + " [-0.4046187 0.32151517 -0.85610262]\n", + " [-0.39084176 0.29271205 -0.87267541]\n", + " [-0.37639134 0.26316256 -0.88829895]\n", + " [-0.36133701 0.23302956 -0.90284705]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:fp_optics: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:fp_optics: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:cartToSphere: vec: [[0.45626416 0.8746689 0.16363781]\n", + " [0.47974276 0.86326459 0.15691121]\n", + " [0.50337828 0.85093339 0.15007557]\n", + " [0.52704614 0.83769541 0.14313895]\n", + " [0.55062857 0.82357839 0.13611324]\n", + " [0.5740144 0.80861782 0.12901432]\n", + " [0.5970988 0.79285732 0.12186181]\n", + " [0.61978324 0.77634884 0.11467872]\n", + " [0.45626416 0.8746689 0.16363781]\n", + " [0.45768604 0.86861558 0.1898169 ]\n", + " [0.45893482 0.8617147 0.21639459]\n", + " [0.45997127 0.85396481 0.24324993]\n", + " [0.46076346 0.84537196 0.2702652 ]\n", + " [0.46128679 0.83594974 0.29732562]\n", + " [0.46152378 0.82571966 0.32431904]\n", + " [0.4614637 0.81471146 0.35113599]\n", + " [0.61978324 0.77634884 0.11467872]\n", + " [0.62298796 0.76932905 0.14148786]\n", + " [0.62576164 0.76154557 0.16873267]\n", + " [0.62806479 0.75299537 0.19629718]\n", + " [0.62986451 0.74368297 0.22406771]\n", + " [0.63113444 0.7336212 0.25193106]\n", + " [0.63185496 0.72283191 0.27977373]\n", + " [0.63201353 0.71134633 0.30748218]\n", + " [0.4614637 0.81471146 0.35113599]\n", + " [0.48610326 0.80249788 0.345978 ]\n", + " [0.51084367 0.78939024 0.34044352]\n", + " [0.53556454 0.77540591 0.33453893]\n", + " [0.56015093 0.76057015 0.32827425]\n", + " [0.58449199 0.74491722 0.32166357]\n", + " [0.60848052 0.72849121 0.31472528]\n", + " [0.63201353 0.71134633 0.30748218]\n", + " [0.46647896 0.86979206 0.1608078 ]\n", + " [0.49537727 0.8551889 0.15249037]\n", + " [0.5243867 0.83921262 0.14401654]\n", + " [0.55328758 0.82191113 0.13540661]\n", + " [0.58187523 0.80334981 0.12668979]\n", + " [0.60995928 0.78361242 0.11790361]\n", + " [0.45698294 0.87209585 0.17497264]\n", + " [0.45861572 0.86410695 0.20734225]\n", + " [0.45994852 0.85484273 0.24019006]\n", + " [0.46091951 0.8443112 0.27329801]\n", + " [0.46148338 0.83253743 0.30645475]\n", + " [0.46161075 0.81956444 0.33945493]\n", + " [0.6211536 0.77343949 0.12633113]\n", + " [0.62479598 0.76432379 0.15949647]\n", + " [0.6277511 0.75405709 0.19320057]\n", + " [0.62995566 0.74264453 0.2272333 ]\n", + " [0.63136116 0.73010982 0.26138619]\n", + " [0.63193443 0.71649707 0.2954502 ]\n", + " [0.47218694 0.80953613 0.34884201]\n", + " [0.50246852 0.79396448 0.34226566]\n", + " [0.53278128 0.77706631 0.33512993]\n", + " [0.56291142 0.75888476 0.32745176]\n", + " [0.59265485 0.73948302 0.3192571 ]\n", + " [0.62181589 0.71894647 0.31058167]\n", + " [0.45634914 0.87461223 0.1637037 ]\n", + " [0.45634914 0.87461223 0.1637037 ]\n", + " [0.63193437 0.71144653 0.30741305]\n", + " [0.63193437 0.71144653 0.30741305]\n", + " [0.46717178 0.86725166 0.17211938]\n", + " [0.46895201 0.85919645 0.20461053]\n", + " [0.47040286 0.84986844 0.23758111]\n", + " [0.47146267 0.83927532 0.2708134 ]\n", + " [0.47208645 0.82744177 0.30409621]\n", + " [0.47224509 0.81441057 0.33722395]\n", + " [0.49623042 0.85257893 0.16390407]\n", + " [0.49841092 0.8443344 0.1966875 ]\n", + " [0.50018237 0.83482807 0.22995583]\n", + " [0.50148377 0.82406649 0.26349277]\n", + " [0.50227086 0.81207323 0.29708764]\n", + " [0.50251502 0.79889046 0.33053395]\n", + " [0.52539003 0.83653073 0.15550454]\n", + " [0.52794588 0.82809402 0.18850317]\n", + " [0.53001893 0.81841191 0.22199522]\n", + " [0.53154859 0.8074898 0.25576613]\n", + " [0.5324907 0.79535035 0.28960572]\n", + " [0.53281651 0.78203548 0.32330649]\n", + " [0.55443127 0.81915459 0.14694122]\n", + " [0.55733887 0.81052154 0.18007837]\n", + " [0.55969599 0.80066478 0.21372019]\n", + " [0.56144185 0.78958889 0.24765385]\n", + " [0.56253162 0.77731615 0.28166962]\n", + " [0.56293571 0.76388863 0.31555909]\n", + " [0.58314963 0.80051559 0.13824364]\n", + " [0.58638582 0.79168102 0.17144339]\n", + " [0.58900972 0.7816498 0.20516126]\n", + " [0.59095972 0.77042634 0.23918583]\n", + " [0.59218964 0.75803312 0.2733079 ]\n", + " [0.59266853 0.74451286 0.30731843]\n", + " [0.61135455 0.78069737 0.12944973]\n", + " [0.61489541 0.77165588 0.16263714]\n", + " [0.61776765 0.76145045 0.1963577 ]\n", + " [0.61990844 0.75008593 0.23040103]\n", + " [0.62126989 0.73758562 0.26455846]\n", + " [0.62181941 0.72399323 0.29862087]]\n", + "DEBUG:root:cartToSphere: vec: [[-0.2060092 -0.3622531 0.90902855]\n", + " [-0.1788113 -0.3681172 0.91242328]\n", + " [-0.15093239 -0.37379828 0.91514712]\n", + " [-0.12247588 -0.37925777 0.9171495 ]\n", + " [-0.09354669 -0.38446088 0.91838927]\n", + " [-0.06425292 -0.3893765 0.91883486]\n", + " [-0.03470674 -0.39397716 0.91846472]\n", + " [-0.00502397 -0.39823938 0.91726777]\n", + " [-0.2060092 -0.3622531 0.90902855]\n", + " [-0.21010386 -0.3884446 0.89719962]\n", + " [-0.21391454 -0.41424701 0.88466942]\n", + " [-0.2174261 -0.43956491 0.8714979 ]\n", + " [-0.22062393 -0.46430804 0.8577547 ]\n", + " [-0.22349358 -0.48839134 0.84351913]\n", + " [-0.22602021 -0.51173467 0.82888026]\n", + " [-0.22818853 -0.53426248 0.8139371 ]\n", + " [-0.00502397 -0.39823938 0.91726777]\n", + " [-0.00940701 -0.42528583 0.9050102 ]\n", + " [-0.01376544 -0.45186332 0.89198097]\n", + " [-0.01808221 -0.47787256 0.87824305]\n", + " [-0.02234083 -0.503222 0.86386834]\n", + " [-0.02652543 -0.52782805 0.84893696]\n", + " [-0.03062062 -0.55161426 0.83353709]\n", + " [-0.03461122 -0.57450979 0.81776559]\n", + " [-0.22818853 -0.53426248 0.8139371 ]\n", + " [-0.20213442 -0.54133662 0.81614725]\n", + " [-0.17536585 -0.54802935 0.81786958]\n", + " [-0.14799122 -0.55430072 0.81905391]\n", + " [-0.120119 -0.56011461 0.81966032]\n", + " [-0.09185815 -0.56543875 0.81965914]\n", + " [-0.06331857 -0.570245 0.81903077]\n", + " [-0.03461122 -0.57450979 0.81776559]\n", + " [-0.1942557 -0.3649202 0.91054817]\n", + " [-0.16045105 -0.37199013 0.91426408]\n", + " [-0.12572618 -0.37874622 0.91692106]\n", + " [-0.09027347 -0.3851229 0.91843947]\n", + " [-0.05429206 -0.39106284 0.91876125]\n", + " [-0.01799003 -0.39651713 0.91785104]\n", + " [-0.20773674 -0.37373489 0.90397327]\n", + " [-0.21256643 -0.40558675 0.88899657]\n", + " [-0.2169546 -0.4367587 0.87302494]\n", + " [-0.22087419 -0.46708244 0.85618256]\n", + " [-0.22429848 -0.49640135 0.83861546]\n", + " [-0.22720001 -0.52456979 0.82049174]\n", + " [-0.00703849 -0.41006876 0.91202745]\n", + " [-0.01239578 -0.44291439 0.89647821]\n", + " [-0.0176989 -0.47495618 0.87983145]\n", + " [-0.02291727 -0.50602233 0.86221587]\n", + " [-0.02802166 -0.53595886 0.84377894]\n", + " [-0.03298385 -0.56462744 0.82468656]\n", + " [-0.21691641 -0.53731526 0.81500895]\n", + " [-0.1844891 -0.54573361 0.81739746]\n", + " [-0.15109635 -0.55353906 0.81900208]\n", + " [-0.11693783 -0.56066353 0.81974505]\n", + " [-0.08221418 -0.56704764 0.81957172]\n", + " [-0.04712816 -0.57264146 0.81845018]\n", + " [-0.20593194 -0.36236354 0.90900204]\n", + " [-0.20593194 -0.36236354 0.90900204]\n", + " [-0.0346961 -0.57441945 0.81782546]\n", + " [-0.0346961 -0.57441945 0.81782546]\n", + " [-0.19606946 -0.3763353 0.90549904]\n", + " [-0.20093991 -0.40830424 0.89045539]\n", + " [-0.20539172 -0.43958272 0.87440338]\n", + " [-0.20939817 -0.47000219 0.8574674 ]\n", + " [-0.21293302 -0.49940614 0.83979345]\n", + " [-0.21596916 -0.52764935 0.82154944]\n", + " [-0.16228792 -0.38351512 0.90916378]\n", + " [-0.16726773 -0.41577727 0.89395233]\n", + " [-0.17189393 -0.44732072 0.87769964]\n", + " [-0.17614044 -0.47797604 0.86053091]\n", + " [-0.17998217 -0.50758722 0.84259221]\n", + " [-0.18339317 -0.5360104 0.82405084]\n", + " [-0.12758285 -0.39036007 0.91177938]\n", + " [-0.13266354 -0.42285769 0.8964328 ]\n", + " [-0.13745662 -0.45461101 0.88001961]\n", + " [-0.14193605 -0.4854497 0.86266607]\n", + " [-0.14607716 -0.51521823 0.84451859]\n", + " [-0.1498548 -0.54377438 0.82574389]\n", + " [-0.09214658 -0.39680398 0.91326645]\n", + " [-0.09732003 -0.42947783 0.89781825]\n", + " [-0.10227353 -0.46138491 0.88128548]\n", + " [-0.10698031 -0.49235408 0.86379551]\n", + " [-0.11141524 -0.52223031 0.84549521]\n", + " [-0.11555317 -0.55087299 0.82655091]\n", + " [-0.05617817 -0.40278883 0.91356728]\n", + " [-0.061436 -0.43557796 0.89805204]\n", + " [-0.06654339 -0.46758159 0.88144168]\n", + " [-0.07147221 -0.49862804 0.86386446]\n", + " [-0.07619597 -0.52856277 0.84546766]\n", + " [-0.08068863 -0.55724648 0.82641739]\n", + " [-0.01988551 -0.4082651 0.91264679]\n", + " [-0.0252186 -0.44110713 0.89710006]\n", + " [-0.03047226 -0.47314926 0.88045512]\n", + " [-0.03561656 -0.50421967 0.86284065]\n", + " [-0.04062303 -0.53416424 0.84440413]\n", + " [-0.04546411 -0.5628445 0.82531151]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:fp_optics: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:fp_optics: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:cartToSphere: vec: [[-0.55095211 -0.55399036 0.62413657]\n", + " [-0.53656584 -0.54432244 0.64483346]\n", + " [-0.52137326 -0.53416339 0.6654618 ]\n", + " [-0.50542907 -0.52352158 0.68590569]\n", + " [-0.48878938 -0.51241305 0.70605793]\n", + " [-0.47151283 -0.50086148 0.72581915]\n", + " [-0.45366151 -0.48889791 0.74509736]\n", + " [-0.43530153 -0.47656044 0.76380804]\n", + " [-0.55095211 -0.55399036 0.62413657]\n", + " [-0.53481485 -0.57496981 0.61917914]\n", + " [-0.51783562 -0.59592963 0.61377043]\n", + " [-0.5000759 -0.616757 0.60789381]\n", + " [-0.48159841 -0.63734655 0.60154164]\n", + " [-0.46246834 -0.65759951 0.59471499]\n", + " [-0.44275437 -0.67742335 0.58742334]\n", + " [-0.42252929 -0.69673184 0.57968417]\n", + " [-0.43530153 -0.47656044 0.76380804]\n", + " [-0.41753699 -0.49777261 0.76018767]\n", + " [-0.39907022 -0.51902004 0.75588436]\n", + " [-0.37995662 -0.54019514 0.75088093]\n", + " [-0.36025591 -0.56119534 0.74516808]\n", + " [-0.34003315 -0.58192224 0.73874485]\n", + " [-0.31935923 -0.60228167 0.73161907]\n", + " [-0.29831055 -0.62218441 0.72380755]\n", + " [-0.42252929 -0.69673184 0.57968417]\n", + " [-0.40646821 -0.68817745 0.60099534]\n", + " [-0.3897557 -0.67890091 0.62224115]\n", + " [-0.37244093 -0.66890877 0.64331081]\n", + " [-0.35457746 -0.65821495 0.66409932]\n", + " [-0.33622411 -0.64684138 0.68450682]\n", + " [-0.31744526 -0.63481832 0.70443893]\n", + " [-0.29831055 -0.62218441 0.72380755]\n", + " [-0.54472812 -0.5499076 0.63314525]\n", + " [-0.52654593 -0.53772825 0.65848137]\n", + " [-0.50720697 -0.52481846 0.68359832]\n", + " [-0.48681389 -0.5112046 0.7082952 ]\n", + " [-0.46547473 -0.4969302 0.732389 ]\n", + " [-0.44330547 -0.48205538 0.75571348]\n", + " [-0.54397542 -0.56310036 0.62210025]\n", + " [-0.52362237 -0.58881501 0.61572437]\n", + " [-0.50206572 -0.6143872 0.60865292]\n", + " [-0.47942036 -0.63961993 0.60086809]\n", + " [-0.45580642 -0.66433131 0.59237186]\n", + " [-0.43135205 -0.6883536 0.58318499]\n", + " [-0.42770972 -0.48584049 0.76224892]\n", + " [-0.40545908 -0.51187615 0.75735443]\n", + " [-0.38220819 -0.53785718 0.75141636]\n", + " [-0.35806511 -0.56359272 0.74441428]\n", + " [-0.33314971 -0.58890163 0.73634648]\n", + " [-0.30759476 -0.61361256 0.72723111]\n", + " [-0.41567994 -0.69302571 0.58900387]\n", + " [-0.39555208 -0.6820547 0.61509344]\n", + " [-0.37449406 -0.67000487 0.64097401]\n", + " [-0.35260258 -0.65689872 0.66644992]\n", + " [-0.32998596 -0.64277668 0.6913374 ]\n", + " [-0.30676494 -0.62769796 0.71546526]\n", + " [-0.55085066 -0.55402978 0.62419112]\n", + " [-0.55085066 -0.55402978 0.62419112]\n", + " [-0.29844903 -0.62216142 0.72377023]\n", + " [-0.29844903 -0.62216142 0.72377023]\n", + " [-0.53779633 -0.55900944 0.6310971 ]\n", + " [-0.51729184 -0.58481227 0.62482299]\n", + " [-0.49559554 -0.61047282 0.61782521]\n", + " [-0.47282099 -0.63579465 0.61008645]\n", + " [-0.44908753 -0.66059595 0.601609 ]\n", + " [-0.42452307 -0.68470863 0.59241392]\n", + " [-0.51946365 -0.54690015 0.65654988]\n", + " [-0.49855743 -0.57290342 0.65055527]\n", + " [-0.47649247 -0.59876933 0.64376254]\n", + " [-0.45337906 -0.62430285 0.63615515]\n", + " [-0.42933494 -0.64932214 0.62773583]\n", + " [-0.404488 -0.67365795 0.61852601]\n", + " [-0.49998743 -0.5340333 0.68177782]\n", + " [-0.47871664 -0.5601644 0.67605194]\n", + " [-0.45632032 -0.58616906 0.66946068]\n", + " [-0.43290655 -0.6118534 0.66198742]\n", + " [-0.40859245 -0.63703539 0.65363455]\n", + " [-0.38350661 -0.66154464 0.64442328]\n", + " [-0.47946904 -0.52043555 0.70658069]\n", + " [-0.45786773 -0.54662225 0.7011143 ]\n", + " [-0.43517529 -0.57269873 0.69472198]\n", + " [-0.41149875 -0.59847207 0.68738632]\n", + " [-0.38695546 -0.62376015 0.67910879]\n", + " [-0.36167517 -0.6483917 0.6699099 ]\n", + " [-0.45801576 -0.50615076 0.7307756 ]\n", + " [-0.43611644 -0.53232129 0.72555944]\n", + " [-0.41316262 -0.55840245 0.71936316]\n", + " [-0.38926123 -0.58420222 0.71216814]\n", + " [-0.36453051 -0.60953864 0.70397454]\n", + " [-0.33910152 -0.63424003 0.69480195]\n", + " [-0.43574334 -0.49123938 0.75419601]\n", + " [-0.41357849 -0.51732265 0.74921967]\n", + " [-0.39039867 -0.54334153 0.74321522]\n", + " [-0.36631154 -0.56910488 0.73616268]\n", + " [-0.3414365 -0.59443127 0.72806083]\n", + " [-0.31590593 -0.61914917 0.71892819]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:fp_optics: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:cartToSphere: vec: [[-0.80016326 0.1262254 0.58634964]\n", + " [-0.81146071 0.14135914 0.567053 ]\n", + " [-0.82231899 0.15681863 0.54699122]\n", + " [-0.83266344 0.17252733 0.52621851]\n", + " [-0.84242684 0.18840792 0.50479647]\n", + " [-0.85154995 0.20438507 0.48279336]\n", + " [-0.8599817 0.22038675 0.46028377]\n", + " [-0.86767944 0.23634451 0.43734845]\n", + " [-0.80016326 0.1262254 0.58634964]\n", + " [-0.78748245 0.14656776 0.59865623]\n", + " [-0.77399914 0.16732504 0.61067803]\n", + " [-0.75973068 0.18840015 0.62234611]\n", + " [-0.74470341 0.20969462 0.63359687]\n", + " [-0.72895251 0.23111179 0.64437224]\n", + " [-0.71252195 0.25255811 0.65461964]\n", + " [-0.69546449 0.27394357 0.66429215]\n", + " [-0.86767944 0.23634451 0.43734845]\n", + " [-0.85536609 0.25860156 0.44885865]\n", + " [-0.84211332 0.28110968 0.4602418 ]\n", + " [-0.82793684 0.30376478 0.47143137]\n", + " [-0.81286005 0.32646768 0.48236644]\n", + " [-0.79691517 0.34912217 0.49299078]\n", + " [-0.78014476 0.37163335 0.50325222]\n", + " [-0.76260262 0.39390718 0.51310269]\n", + " [-0.69546449 0.27394357 0.66429215]\n", + " [-0.7064539 0.29114499 0.64510268]\n", + " [-0.71708744 0.3084581 0.62501137]\n", + " [-0.72729132 0.32579931 0.6040713 ]\n", + " [-0.73699983 0.34308969 0.58234072]\n", + " [-0.74615444 0.36025342 0.55988484]\n", + " [-0.7547035 0.37721661 0.53677766]\n", + " [-0.76260262 0.39390718 0.51310269]\n", + " [-0.80509603 0.1328483 0.57807587]\n", + " [-0.81865684 0.15162627 0.55390472]\n", + " [-0.83148307 0.17081764 0.52863715]\n", + " [-0.84344783 0.19028013 0.50238356]\n", + " [-0.85444205 0.20987523 0.47526957]\n", + " [-0.86437523 0.22947181 0.44743507]\n", + " [-0.79477314 0.13508941 0.59168109]\n", + " [-0.77869027 0.1603136 0.60658142]\n", + " [-0.76141809 0.18606482 0.620985 ]\n", + " [-0.74300139 0.21216213 0.63477254]\n", + " [-0.72350491 0.23842768 0.64783709]\n", + " [-0.70301327 0.26469074 0.66008421]\n", + " [-0.86240185 0.24595625 0.44245742]\n", + " [-0.84667699 0.27341621 0.4564884 ]\n", + " [-0.82955592 0.3011494 0.47026164]\n", + " [-0.81107851 0.3289712 0.4836627 ]\n", + " [-0.79130425 0.35670431 0.49658797]\n", + " [-0.77031618 0.38417435 0.50894307]\n", + " [-0.70035415 0.28135092 0.65600741]\n", + " [-0.71359377 0.30251818 0.63187553]\n", + " [-0.72622452 0.32376973 0.60644134]\n", + " [-0.73812209 0.34495837 0.57980988]\n", + " [-0.7491787 0.36594437 0.55210144]\n", + " [-0.75930223 0.38659244 0.52345621]\n", + " [-0.80016057 0.12634527 0.5863275 ]\n", + " [-0.80016057 0.12634527 0.5863275 ]\n", + " [-0.76263799 0.39377499 0.51315158]\n", + " [-0.76263799 0.39377499 0.51315158]\n", + " [-0.79971764 0.14166458 0.58342338]\n", + " [-0.78364766 0.16708502 0.59831342]\n", + " [-0.76636946 0.19301676 0.61271721]\n", + " [-0.74792772 0.21927646 0.62651573]\n", + " [-0.72838709 0.24568556 0.63960211]\n", + " [-0.70783228 0.27207312 0.65188164]\n", + " [-0.81330562 0.16063551 0.55922285]\n", + " [-0.79727916 0.18657513 0.57405197]\n", + " [-0.77999496 0.21297831 0.5884285 ]\n", + " [-0.76149722 0.23965818 0.60223412]\n", + " [-0.74185024 0.26643593 0.61536178]\n", + " [-0.72113893 0.29314078 0.62771579]\n", + " [-0.82616096 0.17999939 0.53390849]\n", + " [-0.81018796 0.20639698 0.5486308 ]\n", + " [-0.79291412 0.2332095 0.56293918]\n", + " [-0.77438287 0.26024986 0.57671586]\n", + " [-0.7546577 0.28734035 0.58985362]\n", + " [-0.73382354 0.31431034 0.60225578]\n", + " [-0.83815665 0.1996116 0.50759101]\n", + " [-0.82224696 0.22640244 0.52216078]\n", + " [-0.80500008 0.25356185 0.53635926]\n", + " [-0.78645829 0.28090387 0.55006943]\n", + " [-0.76668386 0.3082519 0.56318436]\n", + " [-0.74576143 0.33543482 0.57560696]\n", + " [-0.84918352 0.21933288 0.48039612]\n", + " [-0.83334664 0.24645194 0.49476745]\n", + " [-0.81614299 0.2738967 0.50881353]\n", + " [-0.7976136 0.30148235 0.52241836]\n", + " [-0.77781938 0.32903257 0.53547603]\n", + " [-0.75684436 0.35637507 0.54788998]\n", + " [-0.85915083 0.23903192 0.45246391]\n", + " [-0.84339536 0.26641443 0.46659148]\n", + " [-0.82625023 0.29408329 0.4804431 ]\n", + " [-0.80775548 0.32185402 0.49390392]\n", + " [-0.78797089 0.34954971 0.50686968]\n", + " [-0.76697974 0.37699652 0.51924532]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:fp_optics: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:cartToSphere: vec: [[ 0.06418245 -0.96994504 0.23470668]\n", + " [ 0.06281612 -0.96306374 0.26184415]\n", + " [ 0.06137117 -0.95526663 0.28930821]\n", + " [ 0.05985079 -0.94654323 0.31697603]\n", + " [ 0.05825868 -0.93689241 0.34472967]\n", + " [ 0.05659916 -0.92632324 0.37245373]\n", + " [ 0.05487738 -0.91485612 0.40003345]\n", + " [ 0.05309936 -0.90252345 0.42735451]\n", + " [ 0.06418245 -0.96994504 0.23470668]\n", + " [ 0.09309501 -0.96738467 0.23558484]\n", + " [ 0.12183262 -0.96399771 0.23635825]\n", + " [ 0.15028378 -0.95980816 0.2370297 ]\n", + " [ 0.17833847 -0.95485005 0.23760633]\n", + " [ 0.20588836 -0.94916729 0.23809962]\n", + " [ 0.23282757 -0.94281346 0.23852484]\n", + " [ 0.25905457 -0.93585136 0.23889948]\n", + " [ 0.05309936 -0.90252345 0.42735451]\n", + " [ 0.08301057 -0.89990451 0.42811343]\n", + " [ 0.11274982 -0.89648526 0.42848763]\n", + " [ 0.14220056 -0.89229084 0.4284811 ]\n", + " [ 0.17125155 -0.88735614 0.42810277]\n", + " [ 0.19979657 -0.88172523 0.42736629]\n", + " [ 0.22773238 -0.87545124 0.4262899 ]\n", + " [ 0.25495623 -0.86859676 0.42489644]\n", + " [ 0.25905457 -0.93585136 0.23889948]\n", + " [ 0.25944057 -0.92868307 0.26502519]\n", + " [ 0.25950203 -0.92069961 0.29149772]\n", + " [ 0.25923712 -0.91189211 0.31819632]\n", + " [ 0.25864694 -0.90226168 0.3450009 ]\n", + " [ 0.25773413 -0.8918196 0.37179419]\n", + " [ 0.25650234 -0.88058736 0.3984626 ]\n", + " [ 0.25495623 -0.86859676 0.42489644]\n", + " [ 0.06369601 -0.96704897 0.24649364]\n", + " [ 0.06196916 -0.95800108 0.27998883]\n", + " [ 0.06012716 -0.9475662 0.3138519 ]\n", + " [ 0.05817657 -0.93573836 0.34786378]\n", + " [ 0.05612542 -0.92253439 0.38181178]\n", + " [ 0.0539835 -0.90799681 0.41548474]\n", + " [ 0.07679862 -0.96890944 0.23519454]\n", + " [ 0.1121314 -0.96521296 0.23620011]\n", + " [ 0.14709046 -0.96029761 0.23705042]\n", + " [ 0.18147259 -0.95422188 0.23775681]\n", + " [ 0.21507845 -0.94706659 0.23834037]\n", + " [ 0.24771478 -0.93893424 0.23883024]\n", + " [ 0.06616041 -0.90152477 0.42763991]\n", + " [ 0.10271882 -0.89777409 0.42831125]\n", + " [ 0.13890259 -0.89284511 0.42840832]\n", + " [ 0.17450466 -0.88679804 0.42794552]\n", + " [ 0.20932923 -0.879714 0.42694795]\n", + " [ 0.24318654 -0.87169471 0.4254511 ]\n", + " [ 0.25917373 -0.93285007 0.25023931]\n", + " [ 0.25942808 -0.92351827 0.28250855]\n", + " [ 0.25919286 -0.91295201 0.31517884]\n", + " [ 0.258469 -0.90114919 0.34802862]\n", + " [ 0.25726132 -0.88813056 0.38084212]\n", + " [ 0.25557692 -0.87394 0.41341179]\n", + " [ 0.06427696 -0.96991572 0.23480196]\n", + " [ 0.06427696 -0.96991572 0.23480196]\n", + " [ 0.25487028 -0.86866336 0.42481184]\n", + " [ 0.25487028 -0.86866336 0.42481184]\n", + " [ 0.07626682 -0.96603873 0.24688569]\n", + " [ 0.11173897 -0.96232767 0.24787064]\n", + " [ 0.14683715 -0.95739289 0.2486719 ]\n", + " [ 0.1813579 -0.95129307 0.24930066]\n", + " [ 0.21510153 -0.94410917 0.24977833]\n", + " [ 0.24787355 -0.93594389 0.25013544]\n", + " [ 0.07466355 -0.95698116 0.28037907]\n", + " [ 0.11048604 -0.9532364 0.28130625]\n", + " [ 0.1459336 -0.94825921 0.28197138]\n", + " [ 0.18080219 -0.94210899 0.28238488]\n", + " [ 0.21489227 -0.93486716 0.28256804]\n", + " [ 0.24800808 -0.9266367 0.28255339]\n", + " [ 0.07292182 -0.94653884 0.31423977]\n", + " [ 0.10902867 -0.94277184 0.3151095 ]\n", + " [ 0.14475916 -0.9377713 0.31564184]\n", + " [ 0.17990862 -0.93159745 0.31584661]\n", + " [ 0.21427861 -0.9243322 0.31574463]\n", + " [ 0.24767431 -0.91607855 0.31536886]\n", + " [ 0.07104774 -0.93470589 0.34824864]\n", + " [ 0.10737181 -0.93092869 0.34906027]\n", + " [ 0.14331827 -0.92592472 0.34946142]\n", + " [ 0.1786816 -0.91975488 0.34946222]\n", + " [ 0.21326461 -0.91250139 0.34908369]\n", + " [ 0.24687446 -0.90426713 0.34835896]\n", + " [ 0.06904845 -0.92149926 0.38219292]\n", + " [ 0.10552058 -0.91772452 0.38294532]\n", + " [ 0.14161493 -0.91273801 0.38321604]\n", + " [ 0.17712516 -0.90660079 0.38301655]\n", + " [ 0.21185503 -0.89939496 0.38236912]\n", + " [ 0.24561359 -0.89122306 0.38130752]\n", + " [ 0.06693287 -0.90696154 0.41586146]\n", + " [ 0.10348161 -0.90320229 0.41655393]\n", + " [ 0.13965446 -0.89825458 0.41669575]\n", + " [ 0.17524446 -0.89217894 0.41630051]\n", + " [ 0.2100558 -0.88505685 0.41539251]\n", + " [ 0.24389861 -0.87699024 0.41400674]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:fp_optics: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:cartToSphere: vec: [[ 4.53488307e-02 -6.03004007e-01 -7.96448147e-01]\n", + " [ 4.97353163e-02 -5.81441041e-01 -8.12066940e-01]\n", + " [ 5.40206392e-02 -5.58973133e-01 -8.27424200e-01]\n", + " [ 5.82002844e-02 -5.35674984e-01 -8.42416191e-01]\n", + " [ 6.22672318e-02 -5.11625043e-01 -8.56949594e-01]\n", + " [ 6.62121468e-02 -4.86906202e-01 -8.70941044e-01]\n", + " [ 7.00238307e-02 -4.61606392e-01 -8.84316800e-01]\n", + " [ 7.36897474e-02 -4.35818839e-01 -8.97012687e-01]\n", + " [ 4.53488307e-02 -6.03004007e-01 -7.96448147e-01]\n", + " [ 1.84830160e-02 -6.02174697e-01 -7.98150369e-01]\n", + " [-8.96546895e-03 -6.00751414e-01 -7.99385614e-01]\n", + " [-3.68783431e-02 -5.98727320e-01 -8.00103484e-01]\n", + " [-6.51395464e-02 -5.96099020e-01 -8.00264205e-01]\n", + " [-9.36344127e-02 -5.92866849e-01 -7.99838419e-01]\n", + " [-1.22249038e-01 -5.89035410e-01 -7.98806897e-01]\n", + " [-1.50870094e-01 -5.84614125e-01 -7.97160298e-01]\n", + " [ 7.36897474e-02 -4.35818839e-01 -8.97012687e-01]\n", + " [ 4.60299678e-02 -4.33488887e-01 -8.99982570e-01]\n", + " [ 1.77677497e-02 -4.30760021e-01 -9.02291589e-01]\n", + " [-1.09857708e-02 -4.27623987e-01 -9.03889948e-01]\n", + " [-4.01195660e-02 -4.24076798e-01 -9.04737138e-01]\n", + " [-6.95207678e-02 -4.20119099e-01 -9.04802081e-01]\n", + " [-9.90738362e-02 -4.15756520e-01 -9.04063544e-01]\n", + " [-1.28660908e-01 -4.10999897e-01 -9.02510640e-01]\n", + " [-1.50870094e-01 -5.84614125e-01 -7.97160298e-01]\n", + " [-1.48169509e-01 -5.62144197e-01 -8.13658219e-01]\n", + " [-1.45301216e-01 -5.38772087e-01 -8.29826605e-01]\n", + " [-1.42269627e-01 -5.14566280e-01 -8.45565430e-01]\n", + " [-1.39080850e-01 -4.89600821e-01 -8.60783105e-01]\n", + " [-1.35742862e-01 -4.63957009e-01 -8.75395779e-01]\n", + " [-1.32265595e-01 -4.37724246e-01 -8.89327441e-01]\n", + " [-1.28660908e-01 -4.10999897e-01 -9.02510640e-01]\n", + " [ 4.71824930e-02 -5.93716232e-01 -8.03290015e-01]\n", + " [ 5.24900484e-02 -5.66669907e-01 -8.22271252e-01]\n", + " [ 5.76416354e-02 -5.38338127e-01 -8.40755317e-01]\n", + " [ 6.26253741e-02 -5.08863728e-01 -8.58566112e-01]\n", + " [ 6.74241286e-02 -4.78399378e-01 -8.75550125e-01]\n", + " [ 7.20167009e-02 -4.47109157e-01 -8.91575570e-01]\n", + " [ 3.37293518e-02 -6.02642453e-01 -7.97298191e-01]\n", + " [ 3.94587342e-04 -6.01226832e-01 -7.99078307e-01]\n", + " [-3.36975852e-02 -5.98911976e-01 -8.00105567e-01]\n", + " [-6.83326193e-02 -5.95690203e-01 -8.00302340e-01]\n", + " [-1.03299347e-01 -5.91562191e-01 -7.99614544e-01]\n", + " [-1.38388304e-01 -5.86538389e-01 -7.98010900e-01]\n", + " [ 6.16989399e-02 -4.34940588e-01 -8.98342877e-01]\n", + " [ 2.73797364e-02 -4.31818881e-01 -9.01544677e-01]\n", + " [-7.73376942e-03 -4.28089170e-01 -9.03703409e-01]\n", + " [-4.34372571e-02 -4.23742324e-01 -9.04740652e-01]\n", + " [-7.95228438e-02 -4.18779567e-01 -9.04599244e-01]\n", + " [-1.15776801e-01 -4.13213418e-01 -9.03244376e-01]\n", + " [-1.49615325e-01 -5.74948485e-01 -8.04393867e-01]\n", + " [-1.46191265e-01 -5.46794381e-01 -8.24405251e-01]\n", + " [-1.42519694e-01 -5.17352677e-01 -8.43821275e-01]\n", + " [-1.38611145e-01 -4.86757275e-01 -8.62469887e-01]\n", + " [-1.34480321e-01 -4.55157942e-01 -8.80196734e-01]\n", + " [-1.30146318e-01 -4.22722615e-01 -8.96865389e-01]\n", + " [ 4.52732551e-02 -6.02930057e-01 -7.96508430e-01]\n", + " [ 4.52732551e-02 -6.02930057e-01 -7.96508430e-01]\n", + " [-1.28572337e-01 -4.11108926e-01 -9.02473603e-01]\n", + " [-1.28572337e-01 -4.11108926e-01 -9.02473603e-01]\n", + " [ 3.55923768e-02 -5.93389836e-01 -8.04127904e-01]\n", + " [ 2.12671600e-03 -5.91875184e-01 -8.06026826e-01]\n", + " [-3.20969641e-02 -5.89477076e-01 -8.07147174e-01]\n", + " [-6.68649356e-02 -5.86187231e-01 -8.07411673e-01]\n", + " [-1.01966428e-01 -5.82005697e-01 -8.06766519e-01]\n", + " [-1.37191803e-01 -5.76942464e-01 -8.05180602e-01]\n", + " [ 4.07874056e-02 -5.66232234e-01 -8.23235960e-01]\n", + " [ 7.00217677e-03 -5.64434358e-01 -8.25448257e-01]\n", + " [-2.75445137e-02 -5.61799322e-01 -8.26814865e-01]\n", + " [-6.26414109e-02 -5.58317171e-01 -8.27259324e-01]\n", + " [-9.80787150e-02 -5.53986444e-01 -8.26728242e-01]\n", + " [-1.33645990e-01 -5.48816158e-01 -8.25190629e-01]\n", + " [ 4.58534427e-02 -5.37786564e-01 -8.41833162e-01]\n", + " [ 1.18236350e-02 -5.35699471e-01 -8.44325931e-01]\n", + " [-2.29734131e-02 -5.32823662e-01 -8.45914397e-01]\n", + " [-5.83288196e-02 -5.29147998e-01 -8.46522383e-01]\n", + " [-9.40334813e-02 -5.24670218e-01 -8.46096251e-01]\n", + " [-1.29875882e-01 -5.19399032e-01 -8.44604582e-01]\n", + " [ 5.07780938e-02 -5.08194886e-01 -8.59743882e-01]\n", + " [ 1.65773799e-02 -5.05810206e-01 -8.62485493e-01]\n", + " [-1.83980308e-02 -5.02687504e-01 -8.64272402e-01]\n", + " [-5.39412631e-02 -4.98815285e-01 -8.65028122e-01]\n", + " [-8.98436851e-02 -4.94191396e-01 -8.64698199e-01]\n", + " [-1.25892694e-01 -4.88824985e-01 -8.63250348e-01]\n", + " [ 5.55436390e-02 -4.77609405e-01 -8.76814781e-01]\n", + " [ 2.12443970e-02 -4.74917580e-01 -8.79773817e-01]\n", + " [-1.38378356e-02 -4.71540991e-01 -8.81735566e-01]\n", + " [-4.94976783e-02 -4.67468679e-01 -8.82622804e-01]\n", + " [-8.55268443e-02 -4.62699485e-01 -8.82379933e-01]\n", + " [-1.21711918e-01 -4.57243675e-01 -8.80973570e-01]\n", + " [ 6.01283750e-02 -4.46194235e-01 -8.92913928e-01]\n", + " [ 2.58019081e-02 -4.43186080e-01 -8.96058235e-01]\n", + " [-9.31595518e-03 -4.39549337e-01 -8.98170136e-01]\n", + " [-4.50207322e-02 -4.35274311e-01 -8.99171512e-01]\n", + " [-8.11044376e-02 -4.30361525e-01 -8.99005577e-01]\n", + " [-1.17353324e-01 -4.24822861e-01 -8.97637864e-01]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:fp_optics: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:cartToSphere: vec: [[-0.19886215 -0.4783509 0.85535622]\n", + " [-0.20283985 -0.45449338 0.86734754]\n", + " [-0.20659442 -0.42979054 0.87897602]\n", + " [-0.21011741 -0.40433166 0.89014975]\n", + " [-0.21339901 -0.37820803 0.90078829]\n", + " [-0.21642857 -0.351514 0.91082193]\n", + " [-0.21919525 -0.32434772 0.92019129]\n", + " [-0.22168855 -0.29681138 0.92884724]\n", + " [-0.19886215 -0.4783509 0.85535622]\n", + " [-0.17243853 -0.47955343 0.86040308]\n", + " [-0.14532234 -0.48028512 0.86498995]\n", + " [-0.11762451 -0.4805369 0.86905049]\n", + " [-0.08945475 -0.48030129 0.87252995]\n", + " [-0.06092291 -0.47957296 0.87538459]\n", + " [-0.03213974 -0.47834943 0.87758125]\n", + " [-0.00321713 -0.47663169 0.8790972 ]\n", + " [-0.22168855 -0.29681138 0.92884724]\n", + " [-0.19448472 -0.29641646 0.93504704]\n", + " [-0.1665657 -0.29577275 0.94062444]\n", + " [-0.13803471 -0.29486971 0.94551482]\n", + " [-0.10899705 -0.29369975 0.94966315]\n", + " [-0.07956155 -0.29225844 0.95302412]\n", + " [-0.04984096 -0.29054465 0.9555625 ]\n", + " [-0.01995133 -0.28856072 0.95725371]\n", + " [-0.00321713 -0.47663169 0.8790972 ]\n", + " [-0.00554758 -0.45189355 0.89205462]\n", + " [-0.00791362 -0.42629915 0.90454763]\n", + " [-0.01030608 -0.39993075 0.91648741]\n", + " [-0.01271565 -0.37287572 0.92779416]\n", + " [-0.01513281 -0.34522778 0.93839692]\n", + " [-0.01754794 -0.31708729 0.948234 ]\n", + " [-0.01995133 -0.28856072 0.95725371]\n", + " [-0.200534 -0.46806311 0.86064107]\n", + " [-0.2052591 -0.43824264 0.8751069 ]\n", + " [-0.20964101 -0.40724099 0.88893499]\n", + " [-0.2136622 -0.37522531 0.90197252]\n", + " [-0.21730315 -0.34236937 0.91409111]\n", + " [-0.22054401 -0.30885557 0.9251857 ]\n", + " [-0.18744732 -0.47885209 0.85765038]\n", + " [-0.1545816 -0.48000963 0.8635365 ]\n", + " [-0.120786 -0.48045091 0.8686643 ]\n", + " [-0.08626294 -0.48016148 0.87292821]\n", + " [-0.05121473 -0.47913163 0.87624764]\n", + " [-0.01584573 -0.47735819 0.87856592]\n", + " [-0.20991404 -0.29676405 0.9315939 ]\n", + " [-0.17607899 -0.29611516 0.93878219]\n", + " [-0.14127215 -0.29508162 0.94497038]\n", + " [-0.1056864 -0.29364821 0.95005322]\n", + " [-0.06952215 -0.29180678 0.95394731]\n", + " [-0.03298837 -0.28955669 0.95659223]\n", + " [-0.00432766 -0.46596292 0.88479367]\n", + " [-0.00720992 -0.43505794 0.90037359]\n", + " [-0.01013634 -0.40294809 0.9151667 ]\n", + " [-0.01308985 -0.36979198 0.92902236]\n", + " [-0.01605295 -0.33576219 0.94180999]\n", + " [-0.01900785 -0.30104605 0.95342015]\n", + " [-0.19878707 -0.47827575 0.85541569]\n", + " [-0.19878707 -0.47827575 0.85541569]\n", + " [-0.02004551 -0.28866604 0.95721998]\n", + " [-0.02004551 -0.28866604 0.95721998]\n", + " [-0.18915026 -0.46859795 0.86292418]\n", + " [-0.15615952 -0.4696516 0.86893129]\n", + " [-0.12223713 -0.47000852 0.87415678]\n", + " [-0.0875844 -0.46965341 0.87849567]\n", + " [-0.05240319 -0.46857586 0.88186766]\n", + " [-0.01689804 -0.46677225 0.8842161 ]\n", + " [-0.19376817 -0.43865881 0.87751487]\n", + " [-0.16047152 -0.43941501 0.88383445]\n", + " [-0.12623672 -0.43953006 0.889313 ]\n", + " [-0.09126226 -0.4389867 0.89384667]\n", + " [-0.05574909 -0.43777312 0.89735541]\n", + " [-0.01990264 -0.43588491 0.89978232]\n", + " [-0.19806796 -0.40753578 0.89145032]\n", + " [-0.16453519 -0.40798692 0.89803945]\n", + " [-0.13005623 -0.40785315 0.90373734]\n", + " [-0.09482732 -0.4071162 0.90844052]\n", + " [-0.05904901 -0.40576382 0.91206849]\n", + " [-0.0229279 -0.40379161 0.91456364]\n", + " [-0.20203131 -0.37539495 0.90457834]\n", + " [-0.1683304 -0.37553073 0.91139538]\n", + " [-0.13367474 -0.37513908 0.91727953]\n", + " [-0.09825894 -0.37420174 0.92212702]\n", + " [-0.06228348 -0.37270696 0.92585652]\n", + " [-0.02595606 -0.37065097 0.92840947]\n", + " [-0.205638 -0.34240967 0.91677076]\n", + " [-0.17183562 -0.34221888 0.92377419]\n", + " [-0.13707039 -0.34155991 0.92981102]\n", + " [-0.10153586 -0.34041539 0.93477689]\n", + " [-0.06543253 -0.3387748 0.93858948]\n", + " [-0.02896895 -0.3366355 0.94118932]\n", + " [-0.20886771 -0.30876246 0.92792242]\n", + " [-0.17502965 -0.30823468 0.93507005]\n", + " [-0.14022186 -0.30730004 0.94122501]\n", + " [-0.1046373 -0.30594274 0.94628224]\n", + " [-0.06847644 -0.30415393 0.9501586 ]\n", + " [-0.03194823 -0.30193243 0.95279385]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:fp_optics: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:cartToSphere: vec: [[-0.91101723 0.37279164 0.1762782 ]\n", + " [-0.89911194 0.39603229 0.18642999]\n", + " [-0.88624351 0.41941426 0.19663194]\n", + " [-0.87242376 0.44282719 0.20683536]\n", + " [-0.85767366 0.46616489 0.2169935 ]\n", + " [-0.8420245 0.48932406 0.227061 ]\n", + " [-0.82551862 0.51220402 0.23699379]\n", + " [-0.80820966 0.53470731 0.24674935]\n", + " [-0.91101723 0.37279164 0.1762782 ]\n", + " [-0.91028378 0.36092996 0.2027634 ]\n", + " [-0.90874858 0.34888557 0.22903031]\n", + " [-0.9064272 0.33671213 0.25497974]\n", + " [-0.90334432 0.32446852 0.280516 ]\n", + " [-0.89953331 0.3122193 0.30554694]\n", + " [-0.89503606 0.30003541 0.32998364]\n", + " [-0.88990286 0.28799488 0.35373979]\n", + " [-0.80820966 0.53470731 0.24674935]\n", + " [-0.80750787 0.52230908 0.27408805]\n", + " [-0.80608242 0.50948381 0.30109364]\n", + " [-0.80394926 0.49628891 0.3276628 ]\n", + " [-0.80113345 0.48278635 0.35369837]\n", + " [-0.79766865 0.46904219 0.37910968]\n", + " [-0.79359672 0.45512648 0.40381201]\n", + " [-0.78896758 0.44111395 0.42772495]\n", + " [-0.88990286 0.28799488 0.35373979]\n", + " [-0.8780238 0.30953881 0.36504785]\n", + " [-0.86525767 0.3313752 0.37619096]\n", + " [-0.85161977 0.35338812 0.38711833]\n", + " [-0.83713408 0.37546865 0.39778112]\n", + " [-0.82183365 0.39751395 0.40813247]\n", + " [-0.80576086 0.41942656 0.41812773]\n", + " [-0.78896758 0.44111395 0.42772495]\n", + " [-0.90594418 0.38285962 0.18078621]\n", + " [-0.89070427 0.41145223 0.19326915]\n", + " [-0.87402849 0.44014697 0.20577864]\n", + " [-0.85595159 0.46874672 0.21822783]\n", + " [-0.83653125 0.49706128 0.2305332 ]\n", + " [-0.81585012 0.52490658 0.24261423]\n", + " [-0.91075757 0.36772453 0.18788114]\n", + " [-0.90931798 0.35305688 0.2202082 ]\n", + " [-0.9066886 0.33816737 0.25210834]\n", + " [-0.90291107 0.32316221 0.28340393]\n", + " [-0.89804683 0.30816035 0.31392529]\n", + " [-0.89217647 0.29329529 0.34350985]\n", + " [-0.80805377 0.52928142 0.25867023]\n", + " [-0.80670538 0.51379216 0.29196584]\n", + " [-0.80428473 0.49771812 0.32465789]\n", + " [-0.8008342 0.48117156 0.35656488]\n", + " [-0.79641572 0.46427402 0.38751985]\n", + " [-0.79110969 0.44715639 0.4173687 ]\n", + " [-0.88485181 0.29738584 0.35860694]\n", + " [-0.86969469 0.32400339 0.37236132]\n", + " [-0.85321931 0.35094409 0.38581738]\n", + " [-0.8354662 0.37800456 0.39888442]\n", + " [-0.81649621 0.40499542 0.41147619]\n", + " [-0.79639133 0.43173926 0.42351158]\n", + " [-0.91097703 0.37283055 0.1764036 ]\n", + " [-0.91097703 0.37283055 0.1764036 ]\n", + " [-0.78904289 0.44108827 0.42761252]\n", + " [-0.78904289 0.44108827 0.42761252]\n", + " [-0.90572423 0.37773172 0.19230799]\n", + " [-0.90428343 0.36298467 0.22475232]\n", + " [-0.90165328 0.34799003 0.25675728]\n", + " [-0.89787575 0.33285383 0.28814488]\n", + " [-0.89301263 0.31769439 0.31874554]\n", + " [-0.88714474 0.30264436 0.3483972 ]\n", + " [-0.89048343 0.40626888 0.2049021 ]\n", + " [-0.88904366 0.39131703 0.23763912]\n", + " [-0.88642028 0.37604768 0.26990225]\n", + " [-0.88265614 0.36056683 0.30151234]\n", + " [-0.87781399 0.34499165 0.33230011]\n", + " [-0.87197529 0.32945254 0.36210511]\n", + " [-0.87380752 0.43491785 0.21750144]\n", + " [-0.87237584 0.41979082 0.25047168]\n", + " [-0.86977334 0.40427994 0.28293475]\n", + " [-0.86604351 0.38849202 0.31471033]\n", + " [-0.86124978 0.37254405 0.34562949]\n", + " [-0.85547414 0.356565 0.37553349]\n", + " [-0.85573133 0.46348178 0.23001854]\n", + " [-0.85431529 0.44820954 0.26316077]\n", + " [-0.85174874 0.43249006 0.29576416]\n", + " [-0.8480754 0.41643155 0.32764749]\n", + " [-0.84335893 0.40015177 0.35864226]\n", + " [-0.83768141 0.38377931 0.38859142]\n", + " [-0.83631255 0.4917708 0.24236914]\n", + " [-0.83492 0.47638437 0.27562026]\n", + " [-0.832405 0.46049009 0.30830309]\n", + " [-0.82881104 0.44419792 0.3402359 ]\n", + " [-0.8242014 0.42762705 0.37125079]\n", + " [-0.81865778 0.41090663 0.40119221]\n", + " [-0.81563384 0.51960118 0.25447209]\n", + " [-0.8142726 0.50413287 0.28776759]\n", + " [-0.81182468 0.48809922 0.32046815]\n", + " [-0.80833284 0.47161192 0.35239212]\n", + " [-0.80385944 0.45479192 0.38337228]\n", + " [-0.79848528 0.43776957 0.41325423]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:fp_optics: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:cartToSphere: vec: [[-0.18582578 0.3060868 -0.93369141]\n", + " [-0.21055068 0.29297975 -0.93264745]\n", + " [-0.23559923 0.27937525 -0.93082892]\n", + " [-0.26086223 0.2653146 -0.92820206]\n", + " [-0.28623227 0.25084237 -0.92474277]\n", + " [-0.31160276 0.23600708 -0.92043706]\n", + " [-0.33686794 0.22086137 -0.91528151]\n", + " [-0.36192363 0.20546176 -0.90928365]\n", + " [-0.18582578 0.3060868 -0.93369141]\n", + " [-0.17345661 0.28179984 -0.94366395]\n", + " [-0.1610697 0.25730911 -0.95281088]\n", + " [-0.14871805 0.23271237 -0.96110764]\n", + " [-0.13645791 0.20810901 -0.96854008]\n", + " [-0.12434926 0.18359983 -0.97510428]\n", + " [-0.11245679 0.15928726 -0.98080632]\n", + " [-0.10085103 0.13527615 -0.98566193]\n", + " [-0.36192363 0.20546176 -0.90928365]\n", + " [-0.34898879 0.18040824 -0.91959757]\n", + " [-0.33578479 0.15527256 -0.92905275]\n", + " [-0.32236817 0.13015609 -0.93762367]\n", + " [-0.30879836 0.10516009 -0.94529621]\n", + " [-0.29513714 0.08038497 -0.95206739]\n", + " [-0.28144856 0.05593018 -0.95794495]\n", + " [-0.26779928 0.0318951 -0.96294665]\n", + " [-0.10085103 0.13527615 -0.98566193]\n", + " [-0.12386076 0.12105855 -0.98488748]\n", + " [-0.14733504 0.10657857 -0.98332772]\n", + " [-0.17115812 0.09188039 -0.98095 ]\n", + " [-0.19522007 0.07701122 -0.97773125]\n", + " [-0.21941528 0.0620214 -0.9736582 ]\n", + " [-0.24364146 0.04696414 -0.96872762]\n", + " [-0.26779928 0.0318951 -0.96294665]\n", + " [-0.19651663 0.30035286 -0.93336454]\n", + " [-0.22705064 0.28394843 -0.93156927]\n", + " [-0.25796208 0.26683769 -0.9285759 ]\n", + " [-0.28905257 0.24910129 -0.92433606]\n", + " [-0.32012587 0.23082858 -0.91882403]\n", + " [-0.35098789 0.2121181 -0.91203806]\n", + " [-0.18052191 0.29548457 -0.93813683]\n", + " [-0.16534318 0.26556836 -0.94980792]\n", + " [-0.15018996 0.2354431 -0.96021327]\n", + " [-0.13516442 0.20529111 -0.96932252]\n", + " [-0.12037711 0.17529798 -0.97712843]\n", + " [-0.10594948 0.14565324 -0.9836462 ]\n", + " [-0.35623538 0.19460793 -0.91390596]\n", + " [-0.34019466 0.1638343 -0.92597296]\n", + " [-0.32380566 0.13303785 -0.93672345]\n", + " [-0.3071766 0.10240509 -0.9461267 ]\n", + " [-0.29042123 0.07212086 -0.95417718]\n", + " [-0.27365847 0.04236815 -0.96089333]\n", + " [-0.11085824 0.12919385 -0.98540317]\n", + " [-0.13938796 0.11158726 -0.98393053]\n", + " [-0.16849962 0.09362997 -0.98124478]\n", + " [-0.19798849 0.07540761 -0.97729947]\n", + " [-0.22766005 0.05701282 -0.97207018]\n", + " [-0.25732721 0.0385446 -0.96555529]\n", + " [-0.18586744 0.30596027 -0.93372459]\n", + " [-0.18586744 0.30596027 -0.93372459]\n", + " [-0.26776342 0.03202795 -0.96295221]\n", + " [-0.26776342 0.03202795 -0.96295221]\n", + " [-0.19114811 0.28983673 -0.93779372]\n", + " [-0.17588733 0.25981201 -0.94950585]\n", + " [-0.16062714 0.22958772 -0.95994187]\n", + " [-0.14546953 0.19934662 -0.96907148]\n", + " [-0.13052436 0.16927437 -0.9768877 ]\n", + " [-0.11591182 0.13956004 -0.98340604]\n", + " [-0.22162374 0.27333086 -0.93604121]\n", + " [-0.20615065 0.24303696 -0.94785808]\n", + " [-0.1906094 0.21257192 -0.95837427]\n", + " [-0.17510213 0.18211994 -0.9675596 ]\n", + " [-0.15973757 0.15186689 -0.97540779]\n", + " [-0.14463319 0.12200063 -0.98193538]\n", + " [-0.25248693 0.25613847 -0.93308276]\n", + " [-0.23683123 0.22563304 -0.94498714]\n", + " [-0.22104055 0.19498731 -0.95557366]\n", + " [-0.20521795 0.16438677 -0.9648122 ]\n", + " [-0.18947228 0.13401753 -0.97269705]\n", + " [-0.17391963 0.1040663 -0.97924571]\n", + " [-0.28353955 0.23834076 -0.92886975]\n", + " [-0.26773155 0.20768318 -0.94084405]\n", + " [-0.25172309 0.17691832 -0.95149114]\n", + " [-0.23561871 0.14623266 -0.96078085]\n", + " [-0.21952826 0.11581231 -0.96870783]\n", + " [-0.20356777 0.08584289 -0.9752903 ]\n", + " [-0.3145857 0.22002767 -0.92337623]\n", + " [-0.29865672 0.18927882 -0.93540242]\n", + " [-0.28246321 0.15845764 -0.94610027]\n", + " [-0.26611135 0.127751 -0.95543939]\n", + " [-0.24971253 0.09734475 -0.96341458]\n", + " [-0.23338369 0.06742337 -0.9700444 ]\n", + " [-0.34543158 0.2012982 -0.91660027]\n", + " [-0.32941413 0.17052004 -0.92865992]\n", + " [-0.31306985 0.13970594 -0.93939849]\n", + " [-0.29650648 0.10904262 -0.94878534]\n", + " [-0.27983716 0.07871525 -0.95681507]\n", + " [-0.26318025 0.04890718 -0.96350622]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:cartToSphere: vec: [[0.4612124 0.81018066 0.36178782]\n", + " [0.48585272 0.79793126 0.35672517]\n", + " [0.51059465 0.78479326 0.35127289]\n", + " [0.53531778 0.77078405 0.34543715]\n", + " [0.55990714 0.75592898 0.33922762]\n", + " [0.58425187 0.74026239 0.33265799]\n", + " [0.60824475 0.72382848 0.3257463 ]\n", + " [0.63178273 0.70668149 0.31851507]\n", + " [0.4612124 0.81018066 0.36178782]\n", + " [0.46073119 0.79815051 0.38817849]\n", + " [0.45995364 0.7854477 0.41414316]\n", + " [0.4588908 0.77212994 0.43958456]\n", + " [0.45756035 0.75826252 0.46440981]\n", + " [0.45598695 0.74391802 0.48853033]\n", + " [0.45420252 0.72917624 0.51186139]\n", + " [0.45224635 0.71412428 0.53432176]\n", + " [0.63178273 0.70668149 0.31851507]\n", + " [0.63114827 0.69429183 0.34584783]\n", + " [0.62995224 0.68131742 0.37278243]\n", + " [0.62820738 0.66781826 0.39921707]\n", + " [0.6259335 0.65386082 0.4250568 ]\n", + " [0.6231572 0.63951749 0.45021382]\n", + " [0.61991157 0.6248665 0.47460668]\n", + " [0.61623622 0.60999249 0.49815869]\n", + " [0.45224635 0.71412428 0.53432176]\n", + " [0.47578826 0.70126821 0.53089399]\n", + " [0.49948831 0.68769119 0.52687026]\n", + " [0.52322196 0.67341373 0.52225734]\n", + " [0.54687156 0.65846434 0.51706499]\n", + " [0.57032602 0.64287968 0.51130612]\n", + " [0.59348047 0.6267047 0.50499718]\n", + " [0.61623622 0.60999249 0.49815869]\n", + " [0.47193404 0.80490986 0.35971987]\n", + " [0.5022171 0.78929719 0.35325336]\n", + " [0.53253245 0.77236634 0.34620719]\n", + " [0.56266629 0.75416062 0.33859771]\n", + " [0.59241444 0.73474337 0.33045015]\n", + " [0.6215812 0.71420014 0.32179958]\n", + " [0.46112339 0.80498102 0.37332395]\n", + " [0.4603331 0.78977721 0.40539536]\n", + " [0.45910774 0.77361955 0.43672975]\n", + " [0.4574771 0.75662511 0.46715431]\n", + " [0.45548661 0.73892749 0.4965059 ]\n", + " [0.4531981 0.72067665 0.52463 ]\n", + " [0.63149607 0.70141477 0.33049967]\n", + " [0.63033975 0.68582951 0.36374399]\n", + " [0.62835195 0.66942466 0.39628835]\n", + " [0.62556623 0.65231998 0.42795506]\n", + " [0.6220315 0.63464873 0.45858238]\n", + " [0.61781138 0.61655754 0.48802244]\n", + " [0.46249041 0.70866063 0.53282523]\n", + " [0.4914671 0.69241744 0.52822171]\n", + " [0.52055676 0.67511071 0.52272956]\n", + " [0.54953993 0.65678957 0.5163655 ]\n", + " [0.57821206 0.63752153 0.50915333]\n", + " [0.60638264 0.61739276 0.50112501]\n", + " [0.46129521 0.81010036 0.36186204]\n", + " [0.46129521 0.81010036 0.36186204]\n", + " [0.61617244 0.61010163 0.49810393]\n", + " [0.61617244 0.61010163 0.49810393]\n", + " [0.47175959 0.79977074 0.37122722]\n", + " [0.4709426 0.78451222 0.40342736]\n", + " [0.46966198 0.76830215 0.43489013]\n", + " [0.46794727 0.75125797 0.4654426 ]\n", + " [0.46584357 0.7335135 0.49492192]\n", + " [0.46341248 0.71521868 0.52317408]\n", + " [0.50203561 0.78410861 0.36487525]\n", + " [0.50114621 0.76871642 0.39740098]\n", + " [0.49971552 0.75238332 0.42918963]\n", + " [0.49777267 0.73522791 0.4600677 ]\n", + " [0.49536209 0.7173846 0.48987318]\n", + " [0.49254461 0.69900321 0.51845378]\n", + " [0.53234445 0.76713815 0.3579224 ]\n", + " [0.53138687 0.75164451 0.39071539]\n", + " [0.52981462 0.73522694 0.42277394]\n", + " [0.52765705 0.71800511 0.45392368]\n", + " [0.52495854 0.70011388 0.48400319]\n", + " [0.52177955 0.68170277 0.51286201]\n", + " [0.5624723 0.74890296 0.35038447]\n", + " [0.56145041 0.73334119 0.38338511]\n", + " [0.55974434 0.71687902 0.41565701]\n", + " [0.55738426 0.69963684 0.4470247 ]\n", + " [0.55441531 0.68174962 0.47732706]\n", + " [0.55089823 0.66336631 0.50641512]\n", + " [0.59221501 0.72946672 0.34228598]\n", + " [0.59113282 0.71387121 0.37543292]\n", + " [0.58930083 0.69740541 0.40786054]\n", + " [0.58675053 0.68018986 0.43939228]\n", + " [0.58352844 0.66235914 0.46986692]\n", + " [0.57969629 0.64406136 0.49913643]\n", + " [0.62137691 0.70891525 0.33366136]\n", + " [0.62023901 0.6933211 0.36689158]\n", + " [0.61829007 0.67689307 0.39941603]\n", + " [0.6155631 0.65975125 0.43105726]\n", + " [0.61210638 0.64202931 0.46165371]\n", + " [0.60798302 0.62387427 0.49105757]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:fp_optics: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:fp_optics: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:cartToSphere: vec: [[ 1.69924950e-01 -5.94841759e-01 7.85677283e-01]\n", + " [ 1.43481166e-01 -5.94887160e-01 7.90899755e-01]\n", + " [ 1.16392274e-01 -5.94361433e-01 7.95730687e-01]\n", + " [ 8.87670301e-02 -5.93253763e-01 8.00106485e-01]\n", + " [ 6.07144254e-02 -5.91557307e-01 8.03973701e-01]\n", + " [ 3.23439611e-02 -5.89269240e-01 8.07289063e-01]\n", + " [ 3.76594181e-03 -5.86391088e-01 8.10019327e-01]\n", + " [-2.49084969e-02 -5.82929129e-01 8.12141119e-01]\n", + " [ 1.69924950e-01 -5.94841759e-01 7.85677283e-01]\n", + " [ 1.75593651e-01 -5.73086370e-01 8.00461668e-01]\n", + " [ 1.81103133e-01 -5.50422845e-01 8.15006961e-01]\n", + " [ 1.86436818e-01 -5.26925235e-01 8.29211137e-01]\n", + " [ 1.91577665e-01 -5.02671971e-01 8.42982140e-01]\n", + " [ 1.96508093e-01 -4.77746156e-01 8.56237806e-01]\n", + " [ 2.01210229e-01 -4.52235954e-01 8.68905683e-01]\n", + " [ 2.05666328e-01 -4.26234780e-01 8.80922967e-01]\n", + " [-2.49084969e-02 -5.82929129e-01 8.12141119e-01]\n", + " [-2.08681588e-02 -5.60337172e-01 8.28001675e-01]\n", + " [-1.67320940e-02 -5.36831452e-01 8.43523579e-01]\n", + " [-1.25156335e-02 -5.12481457e-01 8.58607078e-01]\n", + " [-8.23433191e-03 -4.87361660e-01 8.73161387e-01]\n", + " [-3.90421129e-03 -4.61553248e-01 8.87103915e-01]\n", + " [ 4.58129451e-04 -4.35145215e-01 9.00360168e-01]\n", + " [ 4.83557091e-03 -4.08234493e-01 9.12864292e-01]\n", + " [ 2.05666328e-01 -4.26234780e-01 8.80922967e-01]\n", + " [ 1.78506972e-01 -4.24826262e-01 8.87500934e-01]\n", + " [ 1.50661193e-01 -4.23041282e-01 8.93497218e-01]\n", + " [ 1.22232491e-01 -4.20868811e-01 8.98848520e-01]\n", + " [ 9.33256839e-02 -4.18301949e-01 9.03500856e-01]\n", + " [ 6.40487005e-02 -4.15338232e-01 9.07409454e-01]\n", + " [ 3.45134531e-02 -4.11979970e-01 9.10539030e-01]\n", + " [ 4.83557091e-03 -4.08234493e-01 9.12864292e-01]\n", + " [ 1.58500931e-01 -5.94857854e-01 7.88049230e-01]\n", + " [ 1.25642878e-01 -5.94530234e-01 7.94196240e-01]\n", + " [ 9.19238419e-02 -5.93333671e-01 7.99690667e-01]\n", + " [ 5.75443706e-02 -5.91253927e-01 8.04429885e-01]\n", + " [ 2.27060866e-02 -5.88285841e-01 8.08334215e-01]\n", + " [-1.23875840e-02 -5.84434174e-01 8.11346562e-01]\n", + " [ 1.72325513e-01 -5.85473360e-01 7.92164669e-01]\n", + " [ 1.79167252e-01 -5.58189239e-01 8.10138179e-01]\n", + " [ 1.85753576e-01 -5.29614113e-01 8.27649986e-01]\n", + " [ 1.92053325e-01 -4.99890554e-01 8.44526467e-01]\n", + " [ 1.98034159e-01 -4.69171596e-01 8.60616340e-01]\n", + " [ 2.03663205e-01 -4.37621730e-01 8.75790226e-01]\n", + " [-2.30611560e-02 -5.73208484e-01 8.19084988e-01]\n", + " [-1.80420151e-02 -5.44896838e-01 8.38308965e-01]\n", + " [-1.28944948e-02 -5.15281247e-01 8.56924132e-01]\n", + " [-7.64712807e-03 -4.84496653e-01 8.74759690e-01]\n", + " [-2.32942995e-03 -4.52692648e-01 8.91663580e-01]\n", + " [ 3.02781101e-03 -4.20036398e-01 9.07502208e-01]\n", + " [ 1.93900946e-01 -4.25756074e-01 8.83817961e-01]\n", + " [ 1.60139642e-01 -4.23779109e-01 8.91496810e-01]\n", + " [ 1.25450129e-01 -4.21225116e-01 8.98238090e-01]\n", + " [ 9.00247241e-02 -4.18079663e-01 9.03938573e-01]\n", + " [ 5.40622243e-02 -4.14338250e-01 9.08515872e-01]\n", + " [ 1.77702555e-02 -4.10007203e-01 9.11909157e-01]\n", + " [ 1.69855379e-01 -5.94770101e-01 7.85746573e-01]\n", + " [ 1.69855379e-01 -5.94770101e-01 7.85746573e-01]\n", + " [ 4.92219267e-03 -4.08340713e-01 9.12816320e-01]\n", + " [ 4.92219267e-03 -4.08340713e-01 9.12816320e-01]\n", + " [ 1.60929570e-01 -5.85524527e-01 7.94520422e-01]\n", + " [ 1.67670048e-01 -5.58134352e-01 8.12633251e-01]\n", + " [ 1.74179350e-01 -5.29449462e-01 8.30267921e-01]\n", + " [ 1.80426160e-01 -4.99611986e-01 8.47251004e-01]\n", + " [ 1.86377755e-01 -4.68774628e-01 8.63431341e-01]\n", + " [ 1.92000831e-01 -4.37101917e-01 8.78679461e-01]\n", + " [ 1.27951352e-01 -5.85103631e-01 8.00800969e-01]\n", + " [ 1.34397818e-01 -5.57444163e-01 8.19263835e-01]\n", + " [ 1.40681804e-01 -5.28481496e-01 8.37207226e-01]\n", + " [ 1.46771431e-01 -4.98356076e-01 8.54458524e-01]\n", + " [ 1.52633034e-01 -4.67219569e-01 8.70866828e-01]\n", + " [ 1.58232295e-01 -4.35236760e-01 8.86302151e-01]\n", + " [ 9.41081385e-02 -5.83829168e-01 8.06403845e-01]\n", + " [ 1.00248938e-01 -5.55946206e-01 8.25150875e-01]\n", + " [ 1.06295412e-01 -5.26754352e-01 8.43345207e-01]\n", + " [ 1.12215415e-01 -4.96392123e-01 8.60815056e-01]\n", + " [ 1.17974921e-01 -4.65010213e-01 8.77409494e-01]\n", + " [ 1.23539193e-01 -4.32773881e-01 8.92997669e-01]\n", + " [ 5.96000926e-02 -5.81686626e-01 8.11226539e-01]\n", + " [ 6.54220462e-02 -5.53624969e-01 8.30192357e-01]\n", + " [ 7.12169797e-02 -5.24251672e-01 8.48580182e-01]\n", + " [ 7.69531221e-02 -4.93703501e-01 8.66218835e-01]\n", + " [ 8.25969332e-02 -4.62130421e-01 8.82957089e-01]\n", + " [ 8.81140481e-02 -4.29698315e-01 8.98663047e-01]\n", + " [ 2.46286557e-02 -5.78670408e-01 8.15189541e-01]\n", + " [ 3.01180012e-02 -5.50473660e-01 8.34309089e-01]\n", + " [ 3.56467921e-02 -5.20965901e-01 8.52832830e-01]\n", + " [ 4.11843282e-02 -4.90282649e-01 8.70589901e-01]\n", + " [ 4.66983981e-02 -4.58573475e-01 8.87428661e-01]\n", + " [ 5.21557833e-02 -4.26004897e-01 9.03216254e-01]\n", + " [-1.06025127e-02 -5.74784902e-01 8.18235848e-01]\n", + " [-5.45869081e-03 -5.46495757e-01 8.37444082e-01]\n", + " [-2.09612603e-04 -5.16900091e-01 8.56045707e-01]\n", + " [ 5.11558573e-03 -4.86132864e-01 8.73869938e-01]\n", + " [ 1.04866303e-02 -4.54343604e-01 8.90764795e-01]\n", + " [ 1.58720368e-02 -4.21699343e-01 9.06596791e-01]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:cartToSphere: vec: [[ 0.55821131 -0.76379364 0.32406698]\n", + " [ 0.54623239 -0.76133298 0.34928824]\n", + " [ 0.53357326 -0.75820786 0.37472713]\n", + " [ 0.52026145 -0.75439762 0.40026524]\n", + " [ 0.5063291 -0.74988926 0.42578979]\n", + " [ 0.49181419 -0.74467785 0.45119143]\n", + " [ 0.47676178 -0.73876713 0.47636261]\n", + " [ 0.46122454 -0.73217009 0.50119746]\n", + " [ 0.55821131 -0.76379364 0.32406698]\n", + " [ 0.57873276 -0.74485935 0.33204357]\n", + " [ 0.59866176 -0.72535266 0.33980525]\n", + " [ 0.61792591 -0.70535848 0.34732836]\n", + " [ 0.63645867 -0.68496931 0.35459471]\n", + " [ 0.65419951 -0.66428501 0.36159153]\n", + " [ 0.67109449 -0.64341207 0.36831113]\n", + " [ 0.68709787 -0.62246209 0.37474987]\n", + " [ 0.46122454 -0.73217009 0.50119746]\n", + " [ 0.48251031 -0.71259328 0.50930798]\n", + " [ 0.50329247 -0.69243994 0.51693677]\n", + " [ 0.52349508 -0.67179894 0.52406019]\n", + " [ 0.54305073 -0.65076436 0.53066152]\n", + " [ 0.56190004 -0.62943512 0.53673063]\n", + " [ 0.57999011 -0.60791606 0.54226334]\n", + " [ 0.59727274 -0.58631977 0.54726081]\n", + " [ 0.68709787 -0.62246209 0.37474987]\n", + " [ 0.67655602 -0.61865801 0.39941735]\n", + " [ 0.66519861 -0.6144164 0.42426795]\n", + " [ 0.65304971 -0.60972102 0.4491841 ]\n", + " [ 0.64014132 -0.60456201 0.47405049]\n", + " [ 0.62651188 -0.59893704 0.49875573]\n", + " [ 0.61220566 -0.59285175 0.52319311]\n", + " [ 0.59727274 -0.58631977 0.54726081]\n", + " [ 0.55314506 -0.76273691 0.33505664]\n", + " [ 0.53800368 -0.75927665 0.36612977]\n", + " [ 0.52186735 -0.75479709 0.39741139]\n", + " [ 0.50479329 -0.74927115 0.42869159]\n", + " [ 0.48685157 -0.74268978 0.4597689 ]\n", + " [ 0.4681283 -0.73506373 0.49044592]\n", + " [ 0.56718722 -0.75560614 0.32765533]\n", + " [ 0.59195012 -0.7320043 0.3372903 ]\n", + " [ 0.61575058 -0.70762617 0.34657817]\n", + " [ 0.63846365 -0.68263893 0.35548314]\n", + " [ 0.65997797 -0.6572263 0.36398169]\n", + " [ 0.6801975 -0.63158662 0.37206142]\n", + " [ 0.47061581 -0.72373457 0.50470688]\n", + " [ 0.49637485 -0.69934262 0.51432666]\n", + " [ 0.52130098 -0.67417233 0.52319878]\n", + " [ 0.54526651 -0.6483948 0.53128958]\n", + " [ 0.56816196 -0.62219227 0.53858032]\n", + " [ 0.58989193 -0.59576091 0.54506554]\n", + " [ 0.6825495 -0.62092802 0.38545373]\n", + " [ 0.66907751 -0.61597465 0.41582511]\n", + " [ 0.65440347 -0.61034713 0.44635465]\n", + " [ 0.63858317 -0.60402459 0.47682893]\n", + " [ 0.62168727 -0.59700277 0.50704303]\n", + " [ 0.6037997 -0.58929538 0.53680246]\n", + " [ 0.55824264 -0.76372264 0.32418033]\n", + " [ 0.55824264 -0.76372264 0.32418033]\n", + " [ 0.59726714 -0.5864167 0.54716307]\n", + " [ 0.59726714 -0.5864167 0.54716307]\n", + " [ 0.56212528 -0.75458837 0.33854329]\n", + " [ 0.5869921 -0.73089138 0.34819258]\n", + " [ 0.61090067 -0.70641192 0.35746689]\n", + " [ 0.63372599 -0.68131749 0.36633025]\n", + " [ 0.65535644 -0.65579215 0.37475938]\n", + " [ 0.67569481 -0.63003524 0.38274289]\n", + " [ 0.54707376 -0.75104773 0.36964526]\n", + " [ 0.57220506 -0.72711338 0.37932506]\n", + " [ 0.59639217 -0.70238353 0.38855341]\n", + " [ 0.61951027 -0.67702651 0.3972935 ]\n", + " [ 0.64144816 -0.65122666 0.40552201]\n", + " [ 0.66210728 -0.62518444 0.41322919]\n", + " [ 0.53101082 -0.74650321 0.40094945]\n", + " [ 0.55636247 -0.72237946 0.41064427]\n", + " [ 0.58078732 -0.69745379 0.4198146 ]\n", + " [ 0.60416071 -0.67189554 0.42842294]\n", + " [ 0.62637266 -0.64588877 0.43644586]\n", + " [ 0.6473253 -0.61963344 0.44387426]\n", + " [ 0.5139934 -0.74092806 0.43224576]\n", + " [ 0.53952096 -0.71666388 0.44193893]\n", + " [ 0.56414329 -0.69159785 0.45103744]\n", + " [ 0.5877354 -0.66590032 0.45950393]\n", + " [ 0.61018841 -0.6397549 0.4673155 ]\n", + " [ 0.63140583 -0.6133603 0.47446371]\n", + " [ 0.49609097 -0.73431384 0.46333243]\n", + " [ 0.52174893 -0.70995988 0.47300636]\n", + " [ 0.54652842 -0.68481026 0.48201824]\n", + " [ 0.57030356 -0.65903607 0.49033183]\n", + " [ 0.59296582 -0.63282036 0.49792562]\n", + " [ 0.61441979 -0.60636051 0.50479229]\n", + " [ 0.477389 -0.72667187 0.49401188]\n", + " [ 0.50313021 -0.70228046 0.50364884]\n", + " [ 0.52802559 -0.67710524 0.51255972]\n", + " [ 0.55194793 -0.65131746 0.52071015]\n", + " [ 0.57478814 -0.62509955 0.52808063]\n", + " [ 0.59645101 -0.5986479 0.53466521]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:fp_optics: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:fp_optics: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:cartToSphere: vec: [[ 0.21257061 -0.45387305 0.86533981]\n", + " [ 0.21638913 -0.47694939 0.85187735]\n", + " [ 0.21997184 -0.50018574 0.83751216]\n", + " [ 0.2233099 -0.5234569 0.82226855]\n", + " [ 0.2263937 -0.54664559 0.80617894]\n", + " [ 0.22921312 -0.56964173 0.78928426]\n", + " [ 0.23175794 -0.59234183 0.77163425]\n", + " [ 0.23401844 -0.61464882 0.75328759]\n", + " [ 0.21257061 -0.45387305 0.86533981]\n", + " [ 0.18621763 -0.45747991 0.8695028 ]\n", + " [ 0.15916242 -0.46096043 0.87303082]\n", + " [ 0.13151454 -0.46426451 0.87587807]\n", + " [ 0.10338309 -0.46735026 0.87800665]\n", + " [ 0.07487744 -0.47018367 0.87938654]\n", + " [ 0.04610801 -0.47273803 0.87999591]\n", + " [ 0.0171864 -0.47499354 0.87982144]\n", + " [ 0.23401844 -0.61464882 0.75328759]\n", + " [ 0.20687447 -0.62009833 0.75675691]\n", + " [ 0.17900699 -0.62516437 0.7596881 ]\n", + " [ 0.15051846 -0.62979848 0.76203548]\n", + " [ 0.12151277 -0.63395869 0.7637611 ]\n", + " [ 0.09209731 -0.63760943 0.76483482]\n", + " [ 0.06238388 -0.64072164 0.76523463]\n", + " [ 0.03248845 -0.64327317 0.76494714]\n", + " [ 0.0171864 -0.47499354 0.87982144]\n", + " [ 0.01935405 -0.49936534 0.86617532]\n", + " [ 0.02154287 -0.52381735 0.85155816]\n", + " [ 0.02374385 -0.54823038 0.83599024]\n", + " [ 0.02594798 -0.57249053 0.81950064]\n", + " [ 0.02814618 -0.59648783 0.80212846]\n", + " [ 0.03032934 -0.620116 0.78392364]\n", + " [ 0.03248845 -0.64327317 0.76494714]\n", + " [ 0.21417481 -0.46391939 0.85959755]\n", + " [ 0.2186964 -0.49232702 0.84248798]\n", + " [ 0.22285526 -0.5208496 0.82404564]\n", + " [ 0.22663404 -0.54926799 0.80432685]\n", + " [ 0.23001413 -0.57737943 0.78340698]\n", + " [ 0.23297692 -0.60499608 0.76138131]\n", + " [ 0.2011871 -0.45553664 0.86718517]\n", + " [ 0.1684017 -0.45988032 0.87186636]\n", + " [ 0.13467045 -0.46398333 0.87554745]\n", + " [ 0.10019432 -0.46776515 0.87815538]\n", + " [ 0.06517479 -0.47116308 0.87963492]\n", + " [ 0.02981561 -0.47413087 0.8799494 ]\n", + " [ 0.22227184 -0.61699277 0.75492725]\n", + " [ 0.18850463 -0.62341951 0.75882417]\n", + " [ 0.15375244 -0.62922151 0.76186644]\n", + " [ 0.11820585 -0.63431886 0.76398099]\n", + " [ 0.08206265 -0.63864607 0.76511236]\n", + " [ 0.04553043 -0.6421525 0.76522359]\n", + " [ 0.01822774 -0.48559472 0.873994 ]\n", + " [ 0.02090076 -0.51553401 0.85661417]\n", + " [ 0.02359644 -0.5454747 0.83779506]\n", + " [ 0.02629818 -0.57520498 0.81758647]\n", + " [ 0.02898928 -0.60452239 0.79606049]\n", + " [ 0.03165299 -0.63323304 0.77331365]\n", + " [ 0.21249526 -0.45396404 0.86531059]\n", + " [ 0.21249526 -0.45396404 0.86531059]\n", + " [ 0.03258352 -0.64318714 0.76501544]\n", + " [ 0.03258352 -0.64318714 0.76501544]\n", + " [ 0.20282278 -0.46555512 0.86146465]\n", + " [ 0.16991222 -0.47005718 0.86612706]\n", + " [ 0.13605381 -0.47428866 0.86979286]\n", + " [ 0.10144769 -0.4781697 0.87238874]\n", + " [ 0.06629491 -0.48163814 0.87385908]\n", + " [ 0.03079934 -0.48464806 0.87416684]\n", + " [ 0.20723692 -0.49413241 0.84432578]\n", + " [ 0.17401911 -0.49906008 0.84891483]\n", + " [ 0.13984703 -0.50363709 0.85252125]\n", + " [ 0.10491826 -0.50778517 0.85507098]\n", + " [ 0.06943275 -0.51144326 0.85650738]\n", + " [ 0.03359502 -0.51456591 0.85679245]\n", + " [ 0.21131292 -0.52281172 0.82584184]\n", + " [ 0.17785704 -0.52813312 0.83032661]\n", + " [ 0.14343945 -0.53303065 0.83384858]\n", + " [ 0.10825528 -0.53742694 0.83633311]\n", + " [ 0.07250364 -0.54126112 0.83772288]\n", + " [ 0.03639 -0.5444874 0.83797926]\n", + " [ 0.21503289 -0.55137469 0.80606874]\n", + " [ 0.18140667 -0.55706017 0.81041692]\n", + " [ 0.14681094 -0.5622551 0.81382784]\n", + " [ 0.11143875 -0.56688213 0.81622672]\n", + " [ 0.07548862 -0.57087961 0.81755608]\n", + " [ 0.03916702 -0.57420073 0.81777715]\n", + " [ 0.21837763 -0.57961894 0.78508158]\n", + " [ 0.18464742 -0.58563964 0.78926012]\n", + " [ 0.14994032 -0.59110909 0.79253262]\n", + " [ 0.11444788 -0.59594915 0.7948247 ]\n", + " [ 0.07836822 -0.60009674 0.79607934]\n", + " [ 0.04190858 -0.60350352 0.79625823]\n", + " [ 0.221328 -0.60735653 0.76297572]\n", + " [ 0.18755903 -0.61368281 0.76695177]\n", + " [ 0.15280694 -0.61940261 0.77005873]\n", + " [ 0.11726242 -0.62443652 0.77222313]\n", + " [ 0.08112332 -0.62871968 0.77338901]\n", + " [ 0.04459726 -0.63220205 0.77351901]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:cartToSphere: vec: [[-0.41442423 -0.70427564 0.57640991]\n", + " [-0.39829109 -0.69579108 0.59769472]\n", + " [-0.38151631 -0.68657504 0.61891843]\n", + " [-0.36414926 -0.67663382 0.63997031]\n", + " [-0.34624372 -0.66598106 0.66074542]\n", + " [-0.32785878 -0.65463843 0.681144 ]\n", + " [-0.30905901 -0.64263597 0.70107171]\n", + " [-0.28991419 -0.63001212 0.72044048]\n", + " [-0.41442423 -0.70427564 0.57640991]\n", + " [-0.39361711 -0.7227325 0.5680874 ]\n", + " [-0.37248994 -0.74049547 0.55939047]\n", + " [-0.35112837 -0.75750286 0.55036197]\n", + " [-0.32962073 -0.77370072 0.54105209]\n", + " [-0.3080578 -0.78904255 0.53151881]\n", + " [-0.28653281 -0.80348858 0.52182856]\n", + " [-0.26514204 -0.81700494 0.51205724]\n", + " [-0.28991419 -0.63001212 0.72044048]\n", + " [-0.26848061 -0.64913961 0.71171337]\n", + " [-0.24687321 -0.66762282 0.70237695]\n", + " [-0.22518055 -0.68539713 0.69247707]\n", + " [-0.20349241 -0.70240693 0.68206697]\n", + " [-0.1818991 -0.71860583 0.67120666]\n", + " [-0.16049127 -0.73395631 0.65996264]\n", + " [-0.13936064 -0.74842882 0.64840799]\n", + " [-0.26514204 -0.81700494 0.51205724]\n", + " [-0.24817936 -0.80965613 0.53184956]\n", + " [-0.23078643 -0.80146561 0.55171596]\n", + " [-0.21301638 -0.79244271 0.57154052]\n", + " [-0.19492608 -0.78260245 0.59121673]\n", + " [-0.1765763 -0.77196634 0.61064621]\n", + " [-0.15803174 -0.76056303 0.62973792]\n", + " [-0.13936064 -0.74842882 0.64840799]\n", + " [-0.40740124 -0.70073088 0.58566241]\n", + " [-0.38719022 -0.68984047 0.61172204]\n", + " [-0.36606419 -0.67785673 0.63757922]\n", + " [-0.34412029 -0.66480167 0.66303843]\n", + " [-0.32146729 -0.65071522 0.68791605]\n", + " [-0.29822628 -0.63565617 0.71204095]\n", + " [-0.40534265 -0.71237644 0.57290238]\n", + " [-0.37961487 -0.73453941 0.56244503]\n", + " [-0.35349122 -0.75559795 0.55146686]\n", + " [-0.32713326 -0.77544955 0.54005725]\n", + " [-0.30070809 -0.79400849 0.52832297]\n", + " [-0.27438858 -0.81120408 0.51639022]\n", + " [-0.28066201 -0.63847066 0.71664779]\n", + " [-0.25426498 -0.66148853 0.70553685]\n", + " [-0.22769456 -0.68347339 0.69355556]\n", + " [-0.20111558 -0.70431913 0.68079886]\n", + " [-0.17469425 -0.72394028 0.66737724]\n", + " [-0.14859786 -0.74227116 0.6534158 ]\n", + " [-0.25787533 -0.81385985 0.52070381]\n", + " [-0.23679016 -0.8042855 0.54502776]\n", + " [-0.21511099 -0.79345558 0.56934656]\n", + " [-0.1929409 -0.78139534 0.59346031]\n", + " [-0.1703918 -0.76814444 0.61718778]\n", + " [-0.14758428 -0.75375881 0.64036438]\n", + " [-0.41429969 -0.7043121 0.57645489]\n", + " [-0.41429969 -0.7043121 0.57645489]\n", + " [-0.1394963 -0.74842355 0.6483849 ]\n", + " [-0.1394963 -0.74842355 0.6483849 ]\n", + " [-0.39841003 -0.70882707 0.58209418]\n", + " [-0.37259247 -0.73107973 0.57157439]\n", + " [-0.34638996 -0.75222699 0.5605074 ]\n", + " [-0.31996453 -0.77216637 0.5489825 ]\n", + " [-0.29348347 -0.79081265 0.53710595]\n", + " [-0.2671194 -0.808096 0.52500293]\n", + " [-0.37811345 -0.69801699 0.60811388]\n", + " [-0.35207484 -0.72049816 0.5974326 ]\n", + " [-0.32568423 -0.74187446 0.58613315]\n", + " [-0.29910507 -0.76204318 0.5743051 ]\n", + " [-0.27250512 -0.7809201 0.56205406]\n", + " [-0.24605631 -0.79843761 0.54950312]\n", + " [-0.35691883 -0.68609875 0.63393805]\n", + " [-0.33070947 -0.7087702 0.62311801]\n", + " [-0.30418428 -0.73034274 0.61161377]\n", + " [-0.27750787 -0.75071308 0.59951585]\n", + " [-0.2508483 -0.7697974 0.58693024]\n", + " [-0.22437671 -0.78752966 0.5739792 ]\n", + " [-0.33492381 -0.67309394 0.65937136]\n", + " [-0.30859554 -0.69591655 0.64843576]\n", + " [-0.28199077 -0.7176523 0.63675457]\n", + " [-0.25527482 -0.73819704 0.62441965]\n", + " [-0.22861573 -0.75746685 0.61153807]\n", + " [-0.20218366 -0.77539656 0.59823234]\n", + " [-0.31223765 -0.65904203 0.68423041]\n", + " [-0.28584364 -0.68197559 0.67320332]\n", + " [-0.25921532 -0.70384076 0.66137402]\n", + " [-0.23251821 -0.7245325 0.64883584]\n", + " [-0.20591987 -0.74396638 0.63569728]\n", + " [-0.17958931 -0.7620774 0.62208176]\n", + " [-0.28898183 -0.64400147 0.70834427]\n", + " [-0.26257603 -0.66700473 0.69725068]\n", + " [-0.23598058 -0.68896462 0.68530352]\n", + " [-0.20936059 -0.70977526 0.67259737]\n", + " [-0.1828827 -0.7293515 0.65924222]\n", + " [-0.15671465 -0.7476279 0.64536272]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:fp_optics: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:fp_optics: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:cartToSphere: vec: [[-0.68841191 0.28257673 0.66801155]\n", + " [-0.69933467 0.29986248 0.64885554]\n", + " [-0.70990998 0.31724922 0.62879309]\n", + " [-0.72006417 0.33465329 0.60787727]\n", + " [-0.72973172 0.35199552 0.58616616]\n", + " [-0.73885441 0.36919975 0.56372484]\n", + " [-0.74738091 0.38619173 0.54062716]\n", + " [-0.75526708 0.40289902 0.5169565 ]\n", + " [-0.68841191 0.28257673 0.66801155]\n", + " [-0.67057563 0.30372622 0.67681512]\n", + " [-0.65227409 0.32461388 0.68495572]\n", + " [-0.6335882 0.34516356 0.69240747]\n", + " [-0.61460656 0.36530395 0.69915077]\n", + " [-0.5954252 0.38496873 0.70517225]\n", + " [-0.5761467 0.40409665 0.71046526]\n", + " [-0.55687792 0.42263187 0.71503097]\n", + " [-0.75526708 0.40289902 0.5169565 ]\n", + " [-0.73674881 0.42467825 0.52616496]\n", + " [-0.71763108 0.44600572 0.53486871]\n", + " [-0.69799902 0.46680261 0.54304023]\n", + " [-0.6779434 0.48699808 0.55065926]\n", + " [-0.65756025 0.50652884 0.55771234]\n", + " [-0.63695197 0.52533757 0.56419201]\n", + " [-0.61622903 0.54337119 0.57009608]\n", + " [-0.55687792 0.42263187 0.71503097]\n", + " [-0.56606658 0.44045159 0.69682927]\n", + " [-0.57512311 0.45821769 0.67769459]\n", + " [-0.58397902 0.47584452 0.65767811]\n", + " [-0.59257058 0.49324977 0.63683968]\n", + " [-0.6008409 0.5103549 0.61524636]\n", + " [-0.60874082 0.52708546 0.59297178]\n", + " [-0.61622903 0.54337119 0.57009608]\n", + " [-0.69315157 0.29016836 0.65980545]\n", + " [-0.706314 0.31143325 0.63571209]\n", + " [-0.71888054 0.33276603 0.61030938]\n", + " [-0.73072722 0.35401913 0.58370214]\n", + " [-0.74174679 0.37505221 0.55601038]\n", + " [-0.75184772 0.39572925 0.52737403]\n", + " [-0.68073489 0.29188423 0.67186576]\n", + " [-0.65855129 0.31763948 0.68221357]\n", + " [-0.63574827 0.34292512 0.69153922]\n", + " [-0.61248576 0.36760782 0.69980403]\n", + " [-0.58894045 0.39156549 0.70698346]\n", + " [-0.56530315 0.41468761 0.7130684 ]\n", + " [-0.74724612 0.41238847 0.52111322]\n", + " [-0.72413667 0.43878769 0.53206339]\n", + " [-0.70021079 0.46442929 0.54222715]\n", + " [-0.67563328 0.48917952 0.5515642 ]\n", + " [-0.65058108 0.51292164 0.56004968]\n", + " [-0.62524598 0.53555196 0.56767205]\n", + " [-0.56096223 0.43034006 0.70719785]\n", + " [-0.57214508 0.45215495 0.68425573]\n", + " [-0.58306088 0.47380399 0.65996196]\n", + " [-0.59359013 0.49513417 0.63442329]\n", + " [-0.60362822 0.51600099 0.60776307]\n", + " [-0.61308789 0.53626906 0.58011959]\n", + " [-0.68838965 0.28270825 0.66797884]\n", + " [-0.68838965 0.28270825 0.66797884]\n", + " [-0.61627509 0.54325604 0.57015602]\n", + " [-0.61627509 0.54325604 0.57015602]\n", + " [-0.68546551 0.29937893 0.66370874]\n", + " [-0.66318092 0.32521874 0.67410966]\n", + " [-0.64025891 0.35056869 0.68349844]\n", + " [-0.61685963 0.37529518 0.69183649]\n", + " [-0.59316025 0.39927612 0.69909906]\n", + " [-0.56935317 0.42240107 0.70527605]\n", + " [-0.69854912 0.32073048 0.639657 ]\n", + " [-0.67600922 0.346779 0.65019678]\n", + " [-0.65278541 0.37228201 0.6597555 ]\n", + " [-0.62903817 0.397105 0.66829529]\n", + " [-0.60494486 0.42112596 0.67579187]\n", + " [-0.58069993 0.44423494 0.68223377]\n", + " [-0.71105143 0.342133 0.61428891]\n", + " [-0.68830172 0.36834404 0.62495072]\n", + " [-0.66482818 0.39395623 0.63466683]\n", + " [-0.64079184 0.4188343 0.64340007]\n", + " [-0.61636948 0.44285671 0.65112718]\n", + " [-0.59175528 0.46591451 0.65783688]\n", + " [-0.72284874 0.36343854 0.58770922]\n", + " [-0.69993519 0.38976445 0.59847673]\n", + " [-0.67626392 0.41544046 0.608339 ]\n", + " [-0.65199697 0.44033099 0.61725891]\n", + " [-0.62731067 0.46431556 0.62521388]\n", + " [-0.60239809 0.48728672 0.63219316]\n", + " [-0.73383434 0.38450609 0.5600377 ]\n", + " [-0.71080424 0.41089749 0.57089454]\n", + " [-0.68698797 0.43659067 0.58089252]\n", + " [-0.66254888 0.46145039 0.58999365]\n", + " [-0.6376633 0.48535772 0.59817505]\n", + " [-0.61252332 0.508207 0.60542615]\n", + " [-0.74391726 0.40519903 0.53141401]\n", + " [-0.72081965 0.43160522 0.54234303]\n", + " [-0.69691259 0.4572685 0.55246571]\n", + " [-0.67236058 0.48205465 0.56174244]\n", + " [-0.64734037 0.50584639 0.570149 ]\n", + " [-0.62204368 0.52853963 0.57767423]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:fp_optics: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:cartToSphere: vec: [[ 8.30069684e-03 -4.75903081e-01 8.79458559e-01]\n", + " [ 6.07358472e-03 -4.51158920e-01 8.92422960e-01]\n", + " [ 3.79671697e-03 -4.25559151e-01 9.04922645e-01]\n", + " [ 1.47895489e-03 -3.99186020e-01 9.16868766e-01]\n", + " [-8.70754919e-04 -3.72126892e-01 9.28181458e-01]\n", + " [-3.24327759e-03 -3.44475496e-01 9.38789707e-01]\n", + " [-5.62927791e-03 -3.16332201e-01 9.48631778e-01]\n", + " [-8.01927722e-03 -2.87803486e-01 9.57655912e-01]\n", + " [ 8.30069684e-03 -4.75903081e-01 8.79458559e-01]\n", + " [ 3.72284523e-02 -4.73506312e-01 8.80003304e-01]\n", + " [ 6.60250218e-02 -4.70633665e-01 8.79854903e-01]\n", + " [ 9.45780960e-02 -4.67299526e-01 8.79025675e-01]\n", + " [ 1.22776313e-01 -4.63521749e-01 8.77538355e-01]\n", + " [ 1.50509125e-01 -4.59321107e-01 8.75426253e-01]\n", + " [ 1.77666064e-01 -4.54720707e-01 8.72733550e-01]\n", + " [ 2.04135466e-01 -4.49745535e-01 8.69515765e-01]\n", + " [-8.01927722e-03 -2.87803486e-01 9.57655912e-01]\n", + " [ 2.19084955e-02 -2.85455300e-01 9.58141581e-01]\n", + " [ 5.17209659e-02 -2.82856515e-01 9.57766743e-01]\n", + " [ 8.13008969e-02 -2.80020974e-01 9.56545042e-01]\n", + " [ 1.10533852e-01 -2.76965564e-01 9.54501097e-01]\n", + " [ 1.39308983e-01 -2.73709990e-01 9.51670031e-01]\n", + " [ 1.67519010e-01 -2.70276622e-01 9.48097004e-01]\n", + " [ 1.95059138e-01 -2.66690467e-01 9.43836918e-01]\n", + " [ 2.04135466e-01 -4.49745535e-01 8.69515765e-01]\n", + " [ 2.03720196e-01 -4.25562008e-01 8.81700096e-01]\n", + " [ 2.02996382e-01 -4.00570147e-01 8.93496517e-01]\n", + " [ 2.01974165e-01 -3.74858636e-01 9.04813483e-01]\n", + " [ 2.00661942e-01 -3.48518475e-01 9.15570673e-01]\n", + " [ 1.99067144e-01 -3.21644075e-01 9.25698310e-01]\n", + " [ 1.97196997e-01 -2.94333882e-01 9.35136840e-01]\n", + " [ 1.95059138e-01 -2.66690467e-01 9.43836918e-01]\n", + " [ 7.43576398e-03 -4.65217451e-01 8.85165201e-01]\n", + " [ 4.67261013e-03 -4.34305354e-01 9.00753588e-01]\n", + " [ 1.84333939e-03 -4.02189369e-01 9.15554648e-01]\n", + " [-1.03562739e-03 -3.69028108e-01 9.29417658e-01]\n", + " [-3.94747766e-03 -3.34994154e-01 9.42211937e-01]\n", + " [-6.87496588e-03 -3.00274867e-01 9.53827940e-01]\n", + " [ 2.09150932e-02 -4.74834270e-01 8.79826673e-01]\n", + " [ 5.62960224e-02 -4.71575168e-01 8.80027056e-01]\n", + " [ 9.13682064e-02 -4.67615297e-01 8.79197239e-01]\n", + " [ 1.25926223e-01 -4.62986111e-01 8.77374748e-01]\n", + " [ 1.59766474e-01 -4.57725786e-01 8.74620934e-01]\n", + " [ 1.92685179e-01 -4.51877657e-01 8.71021817e-01]\n", + " [ 5.04408911e-03 -2.86909311e-01 9.57944468e-01]\n", + " [ 4.16608350e-02 -2.83861102e-01 9.57959941e-01]\n", + " [ 7.79876298e-02 -2.80449704e-01 9.56695298e-01]\n", + " [ 1.13812579e-01 -2.76704952e-01 9.54191315e-01]\n", + " [ 1.48931616e-01 -2.72663113e-01 9.50512599e-01]\n", + " [ 1.83148371e-01 -2.68366460e-01 9.45746328e-01]\n", + " [ 2.03903448e-01 -4.39323790e-01 8.74881701e-01]\n", + " [ 2.03184519e-01 -4.09128925e-01 8.89567071e-01]\n", + " [ 2.02012624e-01 -3.77807777e-01 9.03577436e-01]\n", + " [ 2.00403914e-01 -3.45526841e-01 9.16760314e-01]\n", + " [ 1.98372149e-01 -3.12459995e-01 9.28987213e-01]\n", + " [ 1.95930783e-01 -2.78790205e-01 9.40152727e-01]\n", + " [ 8.39219700e-03 -4.75812641e-01 8.79506624e-01]\n", + " [ 8.39219700e-03 -4.75812641e-01 8.79506624e-01]\n", + " [ 1.94973978e-01 -2.66797942e-01 9.43824139e-01]\n", + " [ 1.94973978e-01 -2.66797942e-01 9.43824139e-01]\n", + " [ 2.00078862e-02 -4.64236751e-01 8.85485134e-01]\n", + " [ 5.55292994e-02 -4.60982815e-01 8.85669996e-01]\n", + " [ 9.07429697e-02 -4.57045711e-01 8.84802199e-01]\n", + " [ 1.25443213e-01 -4.52457322e-01 8.82919233e-01]\n", + " [ 1.59426810e-01 -4.47256415e-01 8.80082264e-01]\n", + " [ 1.92491069e-01 -4.41487001e-01 8.76376869e-01]\n", + " [ 1.73685842e-02 -4.33319371e-01 9.01073057e-01]\n", + " [ 5.32436717e-02 -4.30085222e-01 9.01216851e-01]\n", + " [ 8.88134503e-02 -4.26219702e-01 9.00249375e-01]\n", + " [ 1.23871080e-01 -4.21755506e-01 8.98208355e-01]\n", + " [ 1.58213911e-01 -4.16732560e-01 8.95154921e-01]\n", + " [ 1.91641897e-01 -4.11196341e-01 8.91173918e-01]\n", + " [ 1.46396816e-02 -4.01200124e-01 9.15873430e-01]\n", + " [ 5.08019314e-02 -3.97994052e-01 9.15980294e-01]\n", + " [ 8.66612188e-02 -3.94211903e-01 9.14924483e-01]\n", + " [ 1.22009201e-01 -3.89886548e-01 9.12744342e-01]\n", + " [ 1.56643185e-01 -3.85058222e-01 9.09501555e-01]\n", + " [ 1.90364996e-01 -3.79772986e-01 9.05280977e-01]\n", + " [ 1.18369173e-02 -3.68037701e-01 9.29735520e-01]\n", + " [ 4.82180546e-02 -3.64868490e-01 9.29809660e-01]\n", + " [ 8.42990313e-02 -3.61182402e-01 9.28676987e-01]\n", + " [ 1.19869999e-01 -3.57011895e-01 9.26376646e-01]\n", + " [ 1.54727863e-01 -3.52396703e-01 9.22971209e-01]\n", + " [ 1.88675583e-01 -3.47382540e-01 9.18546077e-01]\n", + " [ 8.97640084e-03 -3.34004732e-01 9.42528654e-01]\n", + " [ 4.55062592e-02 -3.30881220e-01 9.42574559e-01]\n", + " [ 8.17395886e-02 -3.27303881e-01 9.41377081e-01]\n", + " [ 1.17465326e-01 -3.23304283e-01 9.38976165e-01]\n", + " [ 1.52479875e-01 -3.18920983e-01 9.35435350e-01]\n", + " [ 1.86586752e-01 -3.14198573e-01 9.30840825e-01]\n", + " [ 6.07482020e-03 -2.99288578e-01 9.54143303e-01]\n", + " [ 4.26816927e-02 -2.96219296e-01 9.54165815e-01]\n", + " [ 7.89967039e-02 -2.92762661e-01 9.52916337e-01]\n", + " [ 1.14808072e-01 -2.88949004e-01 9.50435468e-01]\n", + " [ 1.49911813e-01 -2.84815241e-01 9.46787583e-01]\n", + " [ 1.84111583e-01 -2.80404303e-01 9.42059633e-01]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:fp_optics: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:cartToSphere: vec: [[-0.64917447 0.58204652 0.48968802]\n", + " [-0.66873467 0.5643241 0.48407876]\n", + " [-0.6882341 0.5458838 0.47785427]\n", + " [-0.70755599 0.52677373 0.47103499]\n", + " [-0.72659311 0.50704798 0.46364295]\n", + " [-0.74524714 0.48676702 0.45570228]\n", + " [-0.76342815 0.46599789 0.44723977]\n", + " [-0.78105456 0.44481409 0.43828552]\n", + " [-0.64917447 0.58204652 0.48968802]\n", + " [-0.65231562 0.59673023 0.46733005]\n", + " [-0.65515355 0.61118976 0.44409561]\n", + " [-0.65763473 0.62534563 0.42007071]\n", + " [-0.65971541 0.63912398 0.39534305]\n", + " [-0.66136126 0.65245628 0.37000283]\n", + " [-0.66254701 0.6652794 0.34414355]\n", + " [-0.66325606 0.6775359 0.31786239]\n", + " [-0.78105456 0.44481409 0.43828552]\n", + " [-0.78578683 0.45890914 0.41465826]\n", + " [-0.7899866 0.4729214 0.39021343]\n", + " [-0.79360158 0.48677437 0.36503047]\n", + " [-0.79658766 0.50039641 0.33919248]\n", + " [-0.79890886 0.51372 0.31278808]\n", + " [-0.80053766 0.52668165 0.28591237]\n", + " [-0.80145544 0.53922229 0.25866678]\n", + " [-0.66325606 0.6775359 0.31786239]\n", + " [-0.68394682 0.66015254 0.31050825]\n", + " [-0.70449675 0.64189236 0.30275161]\n", + " [-0.72479402 0.62279889 0.29461021]\n", + " [-0.74473397 0.60292238 0.28610473]\n", + " [-0.76421805 0.58232119 0.27725945]\n", + " [-0.78315377 0.56106249 0.26810268]\n", + " [-0.80145544 0.53922229 0.25866678]\n", + " [-0.65771404 0.5744611 0.48724397]\n", + " [-0.68166269 0.55225188 0.47995191]\n", + " [-0.70540287 0.52901139 0.47175602]\n", + " [-0.72873324 0.50483669 0.46269621]\n", + " [-0.75147271 0.47983915 0.45281691]\n", + " [-0.77345922 0.45414486 0.44216883]\n", + " [-0.65064479 0.58841159 0.48003455]\n", + " [-0.65429913 0.60626763 0.45203121]\n", + " [-0.65744356 0.6237074 0.42279669]\n", + " [-0.65999345 0.64059262 0.39249171]\n", + " [-0.66188559 0.65679713 0.36128244]\n", + " [-0.66307706 0.67220706 0.3293425 ]\n", + " [-0.78312013 0.45103797 0.42812103]\n", + " [-0.78856833 0.46826788 0.39860405]\n", + " [-0.79316393 0.48529668 0.36793763]\n", + " [-0.79682236 0.50199055 0.33627313]\n", + " [-0.79947742 0.51822517 0.3037738 ]\n", + " [-0.80108213 0.53388543 0.27061738]\n", + " [-0.67228549 0.67002602 0.31479732]\n", + " [-0.69756387 0.64812572 0.3055122 ]\n", + " [-0.72251874 0.62495108 0.29563967]\n", + " [-0.74695453 0.60059175 0.28521656]\n", + " [-0.77068981 0.57515522 0.27428761]\n", + " [-0.79355708 0.54876888 0.26290661]\n", + " [-0.64925251 0.58203769 0.48959504]\n", + " [-0.64925251 0.58203769 0.48959504]\n", + " [-0.80139211 0.53925577 0.25879317]\n", + " [-0.80139211 0.53925577 0.25879317]\n", + " [-0.65916369 0.58083648 0.47763188]\n", + " [-0.66296118 0.59870298 0.44948551]\n", + " [-0.66622035 0.61616262 0.42011197]\n", + " [-0.66885711 0.63307714 0.38967102]\n", + " [-0.67080866 0.64932015 0.3583282 ]\n", + " [-0.67203233 0.66477731 0.32625707]\n", + " [-0.68326498 0.5586186 0.47020658]\n", + " [-0.6874434 0.57648032 0.44169222]\n", + " [-0.69100842 0.59396494 0.41196239]\n", + " [-0.69387721 0.61093436 0.38117401]\n", + " [-0.69598775 0.62726154 0.34949107]\n", + " [-0.69729765 0.64283096 0.3170873 ]\n", + " [-0.70714368 0.53535014 0.46189614]\n", + " [-0.7116685 0.5531552 0.43306728]\n", + " [-0.71551283 0.57061724 0.40303519]\n", + " [-0.71859444 0.58759855 0.37195427]\n", + " [-0.72085128 0.60397183 0.33998745]\n", + " [-0.72224056 0.6196206 0.30730911]\n", + " [-0.73059909 0.5111279 0.45273971]\n", + " [-0.73543761 0.52882342 0.42364763]\n", + " [-0.73953615 0.54621397 0.39336571]\n", + " [-0.74281236 0.56316264 0.36204646]\n", + " [-0.74520339 0.57954235 0.32985234]\n", + " [-0.74666546 0.59523625 0.29695873]\n", + " [-0.75345042 0.48606321 0.44278101]\n", + " [-0.75857045 0.50359609 0.41347533]\n", + " [-0.76289814 0.52086577 0.38299514]\n", + " [-0.7663504 0.53773649 0.35149186]\n", + " [-0.76886306 0.55408201 0.31912806]\n", + " [-0.770391 0.56978576 0.28608021]\n", + " [-0.77553548 0.46028247 0.43207034]\n", + " [-0.78090408 0.47760043 0.40259987]\n", + " [-0.78543467 0.49470047 0.37197288]\n", + " [-0.78904308 0.51144824 0.3403406 ]\n", + " [-0.79166362 0.52771887 0.30786605]\n", + " [-0.79324977 0.54339676 0.27472669]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:fp_optics: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:cartToSphere: vec: [[-0.16234694 -0.58272792 -0.79628615]\n", + " [-0.15974257 -0.5602425 -0.81277959]\n", + " [-0.15695633 -0.53685706 -0.82894464]\n", + " [-0.15399239 -0.5126401 -0.84468129]\n", + " [-0.15085649 -0.4876657 -0.85989795]\n", + " [-0.14755623 -0.4620152 -0.87451079]\n", + " [-0.14410117 -0.43577806 -0.88844377]\n", + " [-0.14050293 -0.40905167 -0.90162945]\n", + " [-0.16234694 -0.58272792 -0.79628615]\n", + " [-0.19078701 -0.57750242 -0.79378288]\n", + " [-0.218966 -0.57173114 -0.7906816 ]\n", + " [-0.24677584 -0.56544125 -0.78700564]\n", + " [-0.27411098 -0.55866454 -0.78278803]\n", + " [-0.30086822 -0.55143696 -0.77807171]\n", + " [-0.32694604 -0.54379824 -0.77290993]\n", + " [-0.35224377 -0.53579176 -0.76736661]\n", + " [-0.14050293 -0.40905167 -0.90162945]\n", + " [-0.16993738 -0.40376712 -0.89894015]\n", + " [-0.19912259 -0.3981354 -0.8954543 ]\n", + " [-0.22794536 -0.392184 -0.8911973 ]\n", + " [-0.25629768 -0.3859444 -0.8862045 ]\n", + " [-0.28407718 -0.37945172 -0.88052061]\n", + " [-0.3111865 -0.37274458 -0.87419931]\n", + " [-0.33753164 -0.3658653 -0.86730328]\n", + " [-0.35224377 -0.53579176 -0.76736661]\n", + " [-0.35138285 -0.5135763 -0.78279594]\n", + " [-0.35009852 -0.49054291 -0.79799667]\n", + " [-0.348396 -0.46676592 -0.81286518]\n", + " [-0.3462809 -0.44232378 -0.82730841]\n", + " [-0.34375962 -0.41729973 -0.84124328]\n", + " [-0.34083994 -0.3917823 -0.85459626]\n", + " [-0.33753164 -0.3658653 -0.86730328]\n", + " [-0.16133196 -0.5730221 -0.80350338]\n", + " [-0.15801825 -0.54485009 -0.82350993]\n", + " [-0.15443516 -0.51539382 -0.84292289]\n", + " [-0.1505926 -0.48478722 -0.86157021]\n", + " [-0.14650455 -0.45318015 -0.87929754]\n", + " [-0.14218948 -0.42074064 -0.89596845]\n", + " [-0.17476381 -0.58044288 -0.79532614]\n", + " [-0.2094592 -0.5736682 -0.79185329]\n", + " [-0.24365477 -0.56610031 -0.78750416]\n", + " [-0.27715515 -0.55779584 -0.78233549]\n", + " [-0.30977025 -0.54882094 -0.77642641]\n", + " [-0.3413136 -0.53925024 -0.76987935]\n", + " [-0.1533722 -0.40688395 -0.90051231]\n", + " [-0.18929387 -0.40017035 -0.89667805]\n", + " [-0.22472815 -0.39296195 -0.89167156]\n", + " [-0.25947398 -0.38531508 -0.8855538 ]\n", + " [-0.29334284 -0.37729441 -0.87840703]\n", + " [-0.32615699 -0.36897252 -0.87033378]\n", + " [-0.35183534 -0.52623869 -0.77413483]\n", + " [-0.35049378 -0.49845161 -0.79290611]\n", + " [-0.34852157 -0.46950931 -0.81122976]\n", + " [-0.34592885 -0.43955446 -0.8289301 ]\n", + " [-0.34272745 -0.40874038 -0.84585412]\n", + " [-0.33893251 -0.37723223 -0.86187041]\n", + " [-0.16243593 -0.58263573 -0.79633547]\n", + " [-0.16243593 -0.58263573 -0.79633547]\n", + " [-0.33745491 -0.36597827 -0.86728547]\n", + " [-0.33745491 -0.36597827 -0.86728547]\n", + " [-0.17370844 -0.57082201 -0.80248839]\n", + " [-0.20854154 -0.56403631 -0.79898277]\n", + " [-0.2428744 -0.55647177 -0.79457611]\n", + " [-0.27651148 -0.54818548 -0.78932508]\n", + " [-0.30926312 -0.53924409 -0.78330846]\n", + " [-0.34094368 -0.52972257 -0.77662823]\n", + " [-0.17051714 -0.54263233 -0.82248043]\n", + " [-0.2056975 -0.53582522 -0.81888941]\n", + " [-0.24037664 -0.52828241 -0.8143321 ]\n", + " [-0.2743582 -0.52006218 -0.8088652 ]\n", + " [-0.30745347 -0.51123229 -0.80256708]\n", + " [-0.33947929 -0.50186863 -0.79553862]\n", + " [-0.16703357 -0.5131627 -0.84188113]\n", + " [-0.20249704 -0.50634948 -0.83821546]\n", + " [-0.23745916 -0.49884797 -0.83352496]\n", + " [-0.27172236 -0.49071712 -0.82786694]\n", + " [-0.30509844 -0.48202523 -0.82132004]\n", + " [-0.33740651 -0.47284858 -0.81398468]\n", + " [-0.16326696 -0.48254724 -0.86051848]\n", + " [-0.19894777 -0.47574411 -0.85678896]\n", + " [-0.23412865 -0.4683049 -0.85198257]\n", + " [-0.26861068 -0.46028853 -0.84615765]\n", + " [-0.3022058 -0.4517631 -0.83939369]\n", + " [-0.33473482 -0.4428045 -0.8317913 ]\n", + " [-0.1592305 -0.45093595 -0.87823824]\n", + " [-0.19506087 -0.44415963 -0.87445611]\n", + " [-0.23039488 -0.43680428 -0.86955173]\n", + " [-0.26503241 -0.42892815 -0.86358466]\n", + " [-0.29878529 -0.42059825 -0.85663555]\n", + " [-0.33147542 -0.41188945 -0.84880571]\n", + " [-0.15494197 -0.41849695 -0.89490407]\n", + " [-0.19085228 -0.4117641 -0.89108121]\n", + " [-0.22627238 -0.40451379 -0.88609785]\n", + " [-0.26100136 -0.39680293 -0.88001461]\n", + " [-0.2948508 -0.38869686 -0.87291337]\n", + " [-0.32764297 -0.38026882 -0.86489635]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:fp_optics: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:cartToSphere: vec: [[ 0.59370928 -0.45567653 0.66322559]\n", + " [ 0.61230303 -0.45876398 0.6439104 ]\n", + " [ 0.63076159 -0.46171089 0.62366888]\n", + " [ 0.64898522 -0.46447035 0.60256575]\n", + " [ 0.66688087 -0.46700363 0.58066988]\n", + " [ 0.68436187 -0.46927979 0.55805494]\n", + " [ 0.70134773 -0.4712752 0.5348 ]\n", + " [ 0.71776442 -0.47297312 0.51098989]\n", + " [ 0.59370928 -0.45567653 0.66322559]\n", + " [ 0.58082641 -0.47880256 0.65832271]\n", + " [ 0.56733254 -0.50210324 0.65270677]\n", + " [ 0.55325031 -0.52545195 0.6463856 ]\n", + " [ 0.53860945 -0.54873008 0.63937091]\n", + " [ 0.52344701 -0.57182626 0.63167868]\n", + " [ 0.50780738 -0.59463577 0.62332974]\n", + " [ 0.49174214 -0.61706022 0.61435035]\n", + " [ 0.71776442 -0.47297312 0.51098989]\n", + " [ 0.70574025 -0.497322 0.50458055]\n", + " [ 0.69290425 -0.5217721 0.49763196]\n", + " [ 0.67927596 -0.5462029 0.49014952]\n", + " [ 0.66488187 -0.57049958 0.48214348]\n", + " [ 0.64975653 -0.59455139 0.4736297 ]\n", + " [ 0.63394336 -0.61825129 0.46463012]\n", + " [ 0.61749481 -0.64149646 0.455173 ]\n", + " [ 0.49174214 -0.61706022 0.61435035]\n", + " [ 0.51030448 -0.62194894 0.59394348]\n", + " [ 0.52881902 -0.62643658 0.57264968]\n", + " [ 0.54719007 -0.63047766 0.55052787]\n", + " [ 0.56532717 -0.63403327 0.52764287]\n", + " [ 0.58314415 -0.63707095 0.50406697]\n", + " [ 0.60055905 -0.63956492 0.47988075]\n", + " [ 0.61749481 -0.64149646 0.455173 ]\n", + " [ 0.60178335 -0.45711574 0.6549061 ]\n", + " [ 0.62449443 -0.46081284 0.63060149]\n", + " [ 0.6469026 -0.4642511 0.60496937]\n", + " [ 0.66883384 -0.46735584 0.57813477]\n", + " [ 0.69012854 -0.47007005 0.55023336]\n", + " [ 0.71064119 -0.4723531 0.52141312]\n", + " [ 0.58823246 -0.46574087 0.6611112 ]\n", + " [ 0.57203017 -0.49421941 0.654621 ]\n", + " [ 0.55493169 -0.52283347 0.64706721]\n", + " [ 0.53698878 -0.5513614 0.63846977]\n", + " [ 0.51826965 -0.57959814 0.62885815]\n", + " [ 0.49885903 -0.60735348 0.61827293]\n", + " [ 0.71256734 -0.48356354 0.50834446]\n", + " [ 0.69728186 -0.51348912 0.50012692]\n", + " [ 0.68079579 -0.54344627 0.4911041 ]\n", + " [ 0.66315495 -0.57322134 0.48129285]\n", + " [ 0.64442307 -0.60261043 0.4707224 ]\n", + " [ 0.62468384 -0.63141815 0.45943577]\n", + " [ 0.49989067 -0.61916161 0.6055974 ]\n", + " [ 0.52262145 -0.62488883 0.57998342]\n", + " [ 0.5451846 -0.62996784 0.55309518]\n", + " [ 0.56741149 -0.63432427 0.52504944]\n", + " [ 0.58914347 -0.63789843 0.4959794 ]\n", + " [ 0.61023164 -0.64064577 0.46603685]\n", + " [ 0.59372998 -0.45576591 0.66314564]\n", + " [ 0.59372998 -0.45576591 0.66314564]\n", + " [ 0.61749505 -0.64141222 0.45529136]\n", + " [ 0.61749505 -0.64141222 0.45529136]\n", + " [ 0.59630699 -0.46715212 0.65282989]\n", + " [ 0.58014851 -0.4957959 0.64623071]\n", + " [ 0.56306979 -0.5245629 0.63858138]\n", + " [ 0.54512254 -0.55323229 0.62990114]\n", + " [ 0.52637509 -0.58159944 0.6202188 ]\n", + " [ 0.50691245 -0.60947408 0.60957453]\n", + " [ 0.61908021 -0.47100255 0.62840774]\n", + " [ 0.60305446 -0.50005886 0.62150338]\n", + " [ 0.58604398 -0.52920826 0.61358869]\n", + " [ 0.56810007 -0.55823229 0.60468092]\n", + " [ 0.54929109 -0.58692724 0.59480729]\n", + " [ 0.52970272 -0.61510219 0.58400714]\n", + " [ 0.64155404 -0.47456398 0.60265865]\n", + " [ 0.62567485 -0.50395185 0.59545236]\n", + " [ 0.60875191 -0.53340951 0.58727796]\n", + " [ 0.59083567 -0.56272054 0.5781512 ]\n", + " [ 0.57199398 -0.59168162 0.56809836]\n", + " [ 0.5523128 -0.62010067 0.55715862]\n", + " [ 0.66355467 -0.47776231 0.57570685]\n", + " [ 0.64783657 -0.50740238 0.56819944]\n", + " [ 0.63102128 -0.53709507 0.55976873]\n", + " [ 0.61315795 -0.56662542 0.55042979]\n", + " [ 0.59431351 -0.5957901 0.54020886]\n", + " [ 0.57457365 -0.6243957 0.52914565]\n", + " [ 0.6849224 -0.48054108 0.54768748]\n", + " [ 0.66937955 -0.51035508 0.53987842]\n", + " [ 0.65269173 -0.54020975 0.53119387]\n", + " [ 0.63490658 -0.56989106 0.52164913]\n", + " [ 0.61608972 -0.5991954 0.51127128]\n", + " [ 0.5963262 -0.62792823 0.50010118]\n", + " [ 0.70551132 -0.48286002 0.51874847]\n", + " [ 0.69015665 -0.51277019 0.51063738]\n", + " [ 0.6736149 -0.54271358 0.50170204]\n", + " [ 0.6559323 -0.57247653 0.49195878]\n", + " [ 0.63717307 -0.60185518 0.4814362 ]\n", + " [ 0.61742127 -0.63065428 0.47017672]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:fp_optics: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:cartToSphere: vec: [[ 0.2816121 -0.38944432 0.87694227]\n", + " [ 0.26585834 -0.41084435 0.87208157]\n", + " [ 0.24946129 -0.43230526 0.86653403]\n", + " [ 0.23249161 -0.45372462 0.86027997]\n", + " [ 0.21501967 -0.47500427 0.85330972]\n", + " [ 0.19711579 -0.4960501 0.84562383]\n", + " [ 0.17885073 -0.51677203 0.83723299]\n", + " [ 0.160296 -0.53708422 0.82815803]\n", + " [ 0.2816121 -0.38944432 0.87694227]\n", + " [ 0.26257133 -0.37480468 0.88914439]\n", + " [ 0.24282526 -0.35968445 0.90092341]\n", + " [ 0.2224577 -0.34412112 0.91219144]\n", + " [ 0.20155212 -0.3281572 0.9228703 ]\n", + " [ 0.18019199 -0.31184047 0.9328914 ]\n", + " [ 0.15846125 -0.29522393 0.94219577]\n", + " [ 0.13644475 -0.27836564 0.95073414]\n", + " [ 0.160296 -0.53708422 0.82815803]\n", + " [ 0.13939758 -0.52340642 0.84060337]\n", + " [ 0.11795778 -0.50902998 0.85262796]\n", + " [ 0.09605677 -0.4939891 0.86414574]\n", + " [ 0.07377543 -0.47832294 0.87507963]\n", + " [ 0.05119684 -0.46207676 0.88536092]\n", + " [ 0.02840708 -0.44530262 0.89492939]\n", + " [ 0.00549516 -0.42805955 0.90373383]\n", + " [ 0.13644475 -0.27836564 0.95073414]\n", + " [ 0.11873877 -0.29970848 0.94661287]\n", + " [ 0.10058397 -0.32122495 0.94164611]\n", + " [ 0.082048 -0.34281657 0.93581244]\n", + " [ 0.06319935 -0.3643881 0.92910019]\n", + " [ 0.04410853 -0.38584636 0.92150802]\n", + " [ 0.02484863 -0.4070999 0.91304557]\n", + " [ 0.00549516 -0.42805955 0.90373383]\n", + " [ 0.27476266 -0.39871156 0.87494832]\n", + " [ 0.25501183 -0.42499406 0.86853268]\n", + " [ 0.2343651 -0.45126582 0.86106455]\n", + " [ 0.21295216 -0.47734435 0.85252199]\n", + " [ 0.19090253 -0.50305641 0.84290597]\n", + " [ 0.16834676 -0.5282379 0.83224041]\n", + " [ 0.27334909 -0.38319579 0.88229318]\n", + " [ 0.24952632 -0.36492611 0.89697578]\n", + " [ 0.22472756 -0.34597109 0.91093443]\n", + " [ 0.19910663 -0.32640689 0.92402115]\n", + " [ 0.17281724 -0.30632146 0.9361097 ]\n", + " [ 0.14601431 -0.2858145 0.9470955 ]\n", + " [ 0.15132005 -0.53113962 0.83366237]\n", + " [ 0.12533338 -0.51390149 0.8486441 ]\n", + " [ 0.09861307 -0.49564757 0.86290726]\n", + " [ 0.07130764 -0.47644788 0.87630624]\n", + " [ 0.04357014 -0.45638582 0.88871459]\n", + " [ 0.01556029 -0.43556013 0.90002514]\n", + " [ 0.12886039 -0.28770156 0.94901149]\n", + " [ 0.10685033 -0.3139893 0.94339479]\n", + " [ 0.08423317 -0.34043944 0.93648586]\n", + " [ 0.06113459 -0.36687539 0.92825913]\n", + " [ 0.03768446 -0.39312555 0.91871224]\n", + " [ 0.01401837 -0.41902248 0.90786764]\n", + " [ 0.28149558 -0.38946808 0.87696913]\n", + " [ 0.28149558 -0.38946808 0.87696913]\n", + " [ 0.00563987 -0.42804816 0.90373833]\n", + " [ 0.00563987 -0.42804816 0.90373833]\n", + " [ 0.2665482 -0.3924596 0.88029968]\n", + " [ 0.24254343 -0.37423135 0.89505507]\n", + " [ 0.21757818 -0.35529368 0.90907983]\n", + " [ 0.19180577 -0.33572266 0.92222603]\n", + " [ 0.16537939 -0.31560632 0.93436733]\n", + " [ 0.1384538 -0.29504473 0.94539894]\n", + " [ 0.24661732 -0.41880463 0.87394655]\n", + " [ 0.22213268 -0.40070937 0.88886955]\n", + " [ 0.19673124 -0.38183878 0.90304815]\n", + " [ 0.1705644 -0.36226847 0.91633473]\n", + " [ 0.14378398 -0.3420866 0.92860267]\n", + " [ 0.11654466 -0.32139406 0.93974635]\n", + " [ 0.22580895 -0.4451464 0.8665189 ]\n", + " [ 0.20089636 -0.42720792 0.88155207]\n", + " [ 0.17510973 -0.40843195 0.89583477]\n", + " [ 0.14859857 -0.38889326 0.90921972]\n", + " [ 0.12151383 -0.36867966 0.92158 ]\n", + " [ 0.09401067 -0.34789244 0.93280911]\n", + " [ 0.20425231 -0.47130255 0.8579947 ]\n", + " [ 0.17896191 -0.45354527 0.87308037]\n", + " [ 0.1528394 -0.43489236 0.8874169 ]\n", + " [ 0.12603298 -0.41541735 0.90085743]\n", + " [ 0.09869345 -0.39520714 0.91327483]\n", + " [ 0.07097708 -0.37436285 0.9245619 ]\n", + " [ 0.18207643 -0.49709972 0.84837495]\n", + " [ 0.1564571 -0.47954775 0.86345534]\n", + " [ 0.13004727 -0.46104623 0.87779501]\n", + " [ 0.10299468 -0.44166714 0.89124757]\n", + " [ 0.07545075 -0.42149601 0.90368595]\n", + " [ 0.04757318 -0.40063326 0.91500261]\n", + " [ 0.1594117 -0.52237339 0.83768368]\n", + " [ 0.13351215 -0.5050496 0.85270124]\n", + " [ 0.106864 -0.48672656 0.86699328]\n", + " [ 0.07961544 -0.46747475 0.88041396]\n", + " [ 0.05191903 -0.44737812 0.89283662]\n", + " [ 0.02393399 -0.42653592 0.9041539 ]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:fp_optics: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:cartToSphere: vec: [[0.70659564 0.24323097 0.66450079]\n", + " [0.71825217 0.25887171 0.64583222]\n", + " [0.72969029 0.27452548 0.62624903]\n", + " [0.74082793 0.29012472 0.60580659]\n", + " [0.75158869 0.30560349 0.58456902]\n", + " [0.76190406 0.32089764 0.56260724]\n", + " [0.77171441 0.33594476 0.53999814]\n", + " [0.78096934 0.35068434 0.51682434]\n", + " [0.70659564 0.24323097 0.66450079]\n", + " [0.71997417 0.22077815 0.65794696]\n", + " [0.73316895 0.1977575 0.65065757]\n", + " [0.74609025 0.17424881 0.64264041]\n", + " [0.7586537 0.15033613 0.63391136]\n", + " [0.77078273 0.12610661 0.62449268]\n", + " [0.78240962 0.10165017 0.61441226]\n", + " [0.79347583 0.07705921 0.60370356]\n", + " [0.78096934 0.35068434 0.51682434]\n", + " [0.79579566 0.32844556 0.50875612]\n", + " [0.81028794 0.30548784 0.50011063]\n", + " [0.82435086 0.28189028 0.49090073]\n", + " [0.83789878 0.2577333 0.48114362]\n", + " [0.85085455 0.23310061 0.47086159]\n", + " [0.86314876 0.20808114 0.4600831 ]\n", + " [0.87471987 0.18276992 0.44884329]\n", + " [0.79347583 0.07705921 0.60370356]\n", + " [0.80663787 0.09183147 0.58386842]\n", + " [0.81941216 0.10681861 0.56316383]\n", + " [0.8317112 0.1219563 0.54164855]\n", + " [0.84345699 0.13718215 0.51938557]\n", + " [0.85458003 0.15243445 0.49644407]\n", + " [0.86501876 0.16765117 0.4729013 ]\n", + " [0.87471987 0.18276992 0.44884329]\n", + " [0.71174584 0.24996861 0.65645529]\n", + " [0.72589698 0.26915515 0.63295266]\n", + " [0.73963792 0.2882941 0.60813013]\n", + " [0.75282546 0.30726339 0.58210226]\n", + " [0.76533356 0.3259449 0.55499952]\n", + " [0.77705629 0.3442245 0.52696585]\n", + " [0.71248609 0.23356946 0.66167128]\n", + " [0.72877197 0.20565933 0.65314291]\n", + " [0.74469216 0.1769749 0.64351649]\n", + " [0.7600889 0.1476692 0.63281804]\n", + " [0.77482134 0.11790267 0.62108844]\n", + " [0.78876861 0.08784188 0.60838136]\n", + " [0.78743743 0.34103158 0.51345863]\n", + " [0.80539618 0.31328178 0.50318141]\n", + " [0.82275744 0.28453069 0.49204927]\n", + " [0.83935956 0.25492579 0.48009205]\n", + " [0.85506042 0.22462139 0.46735095]\n", + " [0.86973547 0.1937838 0.45388109]\n", + " [0.79921919 0.08355386 0.59520369]\n", + " [0.81510102 0.10181232 0.57030219]\n", + " [0.83031247 0.1203292 0.54415264]\n", + " [0.84470605 0.13898889 0.5168692 ]\n", + " [0.85815376 0.15767763 0.48857947]\n", + " [0.87054563 0.17628105 0.45942931]\n", + " [0.70668174 0.24320863 0.6644174 ]\n", + " [0.70668174 0.24320863 0.6644174 ]\n", + " [0.87464973 0.1828054 0.44896551]\n", + " [0.87464973 0.1828054 0.44896551]\n", + " [0.71760991 0.24032002 0.65366834]\n", + " [0.73405415 0.21237167 0.64502929]\n", + " [0.75011375 0.18363276 0.63530179]\n", + " [0.76562913 0.15425672 0.62451334]\n", + " [0.78045879 0.12440409 0.61270523]\n", + " [0.79448172 0.09424171 0.59993108]\n", + " [0.73191815 0.25949123 0.63004772]\n", + " [0.74877541 0.23146843 0.62109399]\n", + " [0.76519527 0.2026107 0.61108519]\n", + " [0.7810153 0.17307173 0.60005106]\n", + " [0.79609362 0.1430119 0.58803278]\n", + " [0.81030907 0.11259876 0.57508324]\n", + " [0.74579547 0.278632 0.60510604]\n", + " [0.7630079 0.25058569 0.59584037]\n", + " [0.77973441 0.22166242 0.58555958]\n", + " [0.79581218 0.19201501 0.57429366]\n", + " [0.81109971 0.16180303 0.56208278]\n", + " [0.82547566 0.13119455 0.54897898]\n", + " [0.75909685 0.29762065 0.57895934]\n", + " [0.77660381 0.26960259 0.56938648]\n", + " [0.79358295 0.24066781 0.55884266]\n", + " [0.80987197 0.21096747 0.54735739]\n", + " [0.8253297 0.18065979 0.53497003]\n", + " [0.83983412 0.14991295 0.52173246]\n", + " [0.77169563 0.31633913 0.55173854]\n", + " [0.78943602 0.28840098 0.54186312]\n", + " [0.80661406 0.25950864 0.53106405]\n", + " [0.82306804 0.22981141 0.5193705 ]\n", + " [0.83865663 0.19946577 0.50682193]\n", + " [0.85325674 0.16863947 0.49347104]\n", + " [0.78348571 0.33467305 0.52358771]\n", + " [0.80139834 0.3068654 0.51341438]\n", + " [0.81872141 0.27806837 0.50236763]\n", + " [0.83529335 0.24842977 0.49047699]\n", + " [0.85097227 0.2181044 0.47778307]\n", + " [0.86563398 0.18725902 0.46434026]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:fp_optics: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:cartToSphere: vec: [[ 0.20752748 -0.41575622 0.88548242]\n", + " [ 0.18038496 -0.41425782 0.89210522]\n", + " [ 0.1525533 -0.41239585 0.89814094]\n", + " [ 0.12413597 -0.41015946 0.90352614]\n", + " [ 0.09523769 -0.40754202 0.90820663]\n", + " [ 0.06596632 -0.40454141 0.91213743]\n", + " [ 0.0364337 -0.40116024 0.91528304]\n", + " [ 0.00675542 -0.39740606 0.917618 ]\n", + " [ 0.20752748 -0.41575622 0.88548242]\n", + " [ 0.21161044 -0.3892361 0.89650225]\n", + " [ 0.21540734 -0.36246917 0.90676115]\n", + " [ 0.21890304 -0.33556432 0.91623035]\n", + " [ 0.22208292 -0.308634 0.92489147]\n", + " [ 0.22493248 -0.2817942 0.93273652]\n", + " [ 0.2274369 -0.25516466 0.93976777]\n", + " [ 0.22958086 -0.22886925 0.94599762]\n", + " [ 0.00675542 -0.39740606 0.917618 ]\n", + " [ 0.01112463 -0.36996797 0.9289779 ]\n", + " [ 0.01546691 -0.34228538 0.93946873]\n", + " [ 0.0197653 -0.31447215 0.9490609 ]\n", + " [ 0.02400339 -0.28664333 0.95773662]\n", + " [ 0.02816541 -0.25891455 0.96548949]\n", + " [ 0.03223604 -0.23140241 0.9723239 ]\n", + " [ 0.03620016 -0.20422598 0.97825421]\n", + " [ 0.22958086 -0.22886925 0.94599762]\n", + " [ 0.20358024 -0.22565697 0.95269828]\n", + " [ 0.17685668 -0.22235009 0.95879203]\n", + " [ 0.14951861 -0.21893893 0.96421467]\n", + " [ 0.12167453 -0.21541866 0.96891182]\n", + " [ 0.09343336 -0.21178931 0.97283888]\n", + " [ 0.06490493 -0.2080555 0.9759612 ]\n", + " [ 0.03620016 -0.20422598 0.97825421]\n", + " [ 0.1957991 -0.41505624 0.8884768 ]\n", + " [ 0.16205684 -0.41297599 0.8962078 ]\n", + " [ 0.12738222 -0.41033857 0.90299282]\n", + " [ 0.09196739 -0.40713003 0.90872831]\n", + " [ 0.05601102 -0.40334649 0.91333147]\n", + " [ 0.01972061 -0.39899481 0.9167411 ]\n", + " [ 0.20925038 -0.40422562 0.89040211]\n", + " [ 0.21406433 -0.37154204 0.90340079]\n", + " [ 0.21843364 -0.33859552 0.91522665]\n", + " [ 0.22233122 -0.30559163 0.92584155]\n", + " [ 0.22573031 -0.27274392 0.93523076]\n", + " [ 0.22860342 -0.24027454 0.94340268]\n", + " [ 0.0087642 -0.38549368 0.92266885]\n", + " [ 0.01410297 -0.35168694 0.93601143]\n", + " [ 0.01938418 -0.31762585 0.94801797]\n", + " [ 0.02457739 -0.28352183 0.95865078]\n", + " [ 0.02965355 -0.24958775 0.96789804]\n", + " [ 0.03458457 -0.21603922 0.97577198]\n", + " [ 0.2183332 -0.22756912 0.9489694 ]\n", + " [ 0.18596573 -0.22357101 0.9567825 ]\n", + " [ 0.15262013 -0.21942046 0.96361909]\n", + " [ 0.1184961 -0.21510655 0.96937498]\n", + " [ 0.08379421 -0.21062931 0.97396808]\n", + " [ 0.04871712 -0.20599896 0.97733877]\n", + " [ 0.20745039 -0.41566155 0.88554493]\n", + " [ 0.20745039 -0.41566155 0.88554493]\n", + " [ 0.03628514 -0.20433144 0.97822904]\n", + " [ 0.03628514 -0.20433144 0.97822904]\n", + " [ 0.19760798 -0.40357505 0.89335226]\n", + " [ 0.20246253 -0.37076107 0.90639128]\n", + " [ 0.20689533 -0.33768149 0.91824046]\n", + " [ 0.21087964 -0.30454217 0.92886159]\n", + " [ 0.21438917 -0.27155655 0.93824001]\n", + " [ 0.21739678 -0.23894644 0.9463843 ]\n", + " [ 0.16388868 -0.40138088 0.90112923]\n", + " [ 0.1688521 -0.36823974 0.91426936]\n", + " [ 0.17345879 -0.33482803 0.92617614]\n", + " [ 0.17768269 -0.30135281 0.93681127]\n", + " [ 0.18149867 -0.26802726 0.94616046]\n", + " [ 0.18488076 -0.2350718 0.95423286]\n", + " [ 0.12923369 -0.39865103 0.90795155]\n", + " [ 0.13429747 -0.3652459 0.92117296]\n", + " [ 0.13907047 -0.33156895 0.93312456]\n", + " [ 0.14352668 -0.29782862 0.94376809]\n", + " [ 0.14764147 -0.26423802 0.95308985]\n", + " [ 0.1513897 -0.23101606 0.96109975]\n", + " [ 0.09383515 -0.39537212 0.91371541]\n", + " [ 0.09899116 -0.3617678 0.92699774]\n", + " [ 0.10392394 -0.32789369 0.93898112]\n", + " [ 0.10860685 -0.29395962 0.94962745]\n", + " [ 0.11301481 -0.26017871 0.95892371]\n", + " [ 0.11712274 -0.2267685 0.96688071]\n", + " [ 0.05789161 -0.39154098 0.91833775]\n", + " [ 0.0631315 -0.35780422 0.93166011]\n", + " [ 0.0682176 -0.32380257 0.94366215]\n", + " [ 0.0731219 -0.28974693 0.95430598]\n", + " [ 0.07781806 -0.25585043 0.96357922]\n", + " [ 0.08228015 -0.2223295 0.97149348]\n", + " [ 0.02161044 -0.38716512 0.92175711]\n", + " [ 0.02692515 -0.35336439 0.9350982 ]\n", + " [ 0.03215702 -0.31930617 0.94710585]\n", + " [ 0.0372763 -0.28520186 0.95774233]\n", + " [ 0.04225468 -0.25126443 0.96699572]\n", + " [ 0.04706472 -0.21770962 0.97487816]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:fp_optics: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:cartToSphere: vec: [[ 6.02554170e-04 -6.46223749e-01 7.63147760e-01]\n", + " [-1.65199010e-02 -6.61898207e-01 7.49411673e-01]\n", + " [-3.41132653e-02 -6.77328578e-01 7.34889299e-01]\n", + " [-5.20864073e-02 -6.92427284e-01 7.19605074e-01]\n", + " [-7.03534733e-02 -7.07113517e-01 7.03591404e-01]\n", + " [-8.88325426e-02 -7.21312859e-01 6.86889029e-01]\n", + " [-1.07444579e-01 -7.34957288e-01 6.69547196e-01]\n", + " [-1.26112855e-01 -7.47985456e-01 6.51623592e-01]\n", + " [ 6.02554170e-04 -6.46223749e-01 7.63147760e-01]\n", + " [-1.83572832e-02 -6.31408904e-01 7.75232743e-01]\n", + " [-3.78247627e-02 -6.15886724e-01 7.86926192e-01]\n", + " [-5.77009546e-02 -5.99688477e-01 7.98150568e-01]\n", + " [-7.78923307e-02 -5.82852472e-01 8.08836065e-01]\n", + " [-9.83093186e-02 -5.65424413e-01 8.18920332e-01]\n", + " [-1.18865183e-01 -5.47457537e-01 8.28348546e-01]\n", + " [-1.39475422e-01 -5.29012486e-01 8.37073710e-01]\n", + " [-1.26112855e-01 -7.47985456e-01 6.51623592e-01]\n", + " [-1.47078795e-01 -7.33742350e-01 6.63317414e-01]\n", + " [-1.68358675e-01 -7.18619440e-01 6.74715834e-01]\n", + " [-1.89860354e-01 -7.02644213e-01 6.85743506e-01]\n", + " [-2.11493176e-01 -6.85851797e-01 6.96331781e-01]\n", + " [-2.33166969e-01 -6.68285982e-01 7.06418439e-01]\n", + " [-2.54791925e-01 -6.49999698e-01 7.15947950e-01]\n", + " [-2.76279146e-01 -6.31054971e-01 7.24872028e-01]\n", + " [-1.39475422e-01 -5.29012486e-01 8.37073710e-01]\n", + " [-1.58659226e-01 -5.44394350e-01 8.23688073e-01]\n", + " [-1.78102546e-01 -5.59640294e-01 8.09371500e-01]\n", + " [-1.97720456e-01 -5.74665826e-01 7.94144703e-01]\n", + " [-2.17429496e-01 -5.89391736e-01 7.78037143e-01]\n", + " [-2.37146865e-01 -6.03743710e-01 7.61087969e-01]\n", + " [-2.56790403e-01 -6.17652582e-01 7.43346471e-01]\n", + " [-2.76279146e-01 -6.31054971e-01 7.24872028e-01]\n", + " [-6.86338108e-03 -6.53032650e-01 7.57298655e-01]\n", + " [-2.81788576e-02 -6.72090867e-01 7.39932307e-01]\n", + " [-5.01103024e-02 -6.90694702e-01 7.21408196e-01]\n", + " [-7.24975438e-02 -7.08692613e-01 7.01782649e-01]\n", + " [-9.51896529e-02 -7.25947600e-01 6.81130687e-01]\n", + " [-1.18042095e-01 -7.42337184e-01 6.59546487e-01]\n", + " [-7.65325198e-03 -6.39907118e-01 7.68414151e-01]\n", + " [-3.12463343e-02 -6.21270915e-01 7.82972616e-01]\n", + " [-5.55028062e-02 -6.01602417e-01 7.96865089e-01]\n", + " [-8.02483209e-02 -5.80969200e-01 8.09959873e-01]\n", + " [-1.05317856e-01 -5.59455420e-01 8.22142191e-01]\n", + " [-1.30552670e-01 -5.37162177e-01 8.33314344e-01]\n", + " [-1.35145350e-01 -7.41841458e-01 6.56815792e-01]\n", + " [-1.61063436e-01 -7.23789888e-01 6.70959587e-01]\n", + " [-1.87361395e-01 -7.04443438e-01 6.84583925e-01]\n", + " [-2.13871804e-01 -6.83863542e-01 6.97559681e-01]\n", + " [-2.40428652e-01 -6.62130871e-01 7.09772339e-01]\n", + " [-2.66866944e-01 -6.39346670e-01 7.21122645e-01]\n", + " [-1.47731406e-01 -5.35794143e-01 8.31324286e-01]\n", + " [-1.71427715e-01 -5.54566323e-01 8.14290324e-01]\n", + " [-1.95429346e-01 -5.73049649e-01 7.95877799e-01]\n", + " [-2.19582119e-01 -5.91096152e-01 7.76137251e-01]\n", + " [-2.43733607e-01 -6.08569050e-01 7.55140808e-01]\n", + " [-2.67733013e-01 -6.25343373e-01 7.32983424e-01]\n", + " [ 4.81054597e-04 -6.46228234e-01 7.63144048e-01]\n", + " [ 4.81054597e-04 -6.46228234e-01 7.63144048e-01]\n", + " [-2.76139712e-01 -6.31075897e-01 7.24906940e-01]\n", + " [-2.76139712e-01 -6.31075897e-01 7.24906940e-01]\n", + " [-1.50741613e-02 -6.46723086e-01 7.62575911e-01]\n", + " [-3.88683822e-02 -6.28105308e-01 7.77156979e-01]\n", + " [-6.33044720e-02 -6.08433883e-01 7.91075694e-01]\n", + " [-8.82095893e-02 -5.87776208e-01 8.04200347e-01]\n", + " [-1.13419552e-01 -5.66216464e-01 8.16415899e-01]\n", + " [-1.38775797e-01 -5.43856005e-01 8.27624265e-01]\n", + " [-3.65896656e-02 -6.65817515e-01 7.45216904e-01]\n", + " [-6.09094137e-02 -6.47264357e-01 7.59828201e-01]\n", + " [-8.58140480e-02 -6.27600626e-01 7.73791576e-01]\n", + " [-1.11134305e-01 -6.06892970e-01 7.86975279e-01]\n", + " [-1.36707533e-01 -5.85225415e-01 7.99263576e-01]\n", + " [-1.62374947e-01 -5.62699896e-01 8.10557342e-01]\n", + " [-5.86979292e-02 -6.84462999e-01 7.26680780e-01]\n", + " [-8.34814272e-02 -6.65993628e-01 7.41271434e-01]\n", + " [-1.08797906e-01 -6.46362055e-01 7.55234473e-01]\n", + " [-1.34480356e-01 -6.25633836e-01 7.68438246e-01]\n", + " [-1.60366440e-01 -6.03892524e-01 7.80766562e-01]\n", + " [-1.86296303e-01 -5.81240366e-01 7.92119514e-01]\n", + " [-8.12402376e-02 -7.02508086e-01 7.07023629e-01]\n", + " [-1.06429144e-01 -6.84141899e-01 7.21541890e-01]\n", + " [-1.32102862e-01 -6.64567268e-01 7.35458483e-01]\n", + " [-1.58095316e-01 -6.43848455e-01 7.48642130e-01]\n", + " [-1.84243545e-01 -6.22068282e-01 7.60976589e-01]\n", + " [-2.10386140e-01 -5.99329012e-01 7.72361578e-01]\n", + " [-1.04066488e-01 -7.19815550e-01 6.86320435e-01]\n", + " [-1.29603948e-01 -7.01571299e-01 7.00714299e-01]\n", + " [-1.55580556e-01 -6.82077942e-01 7.14537873e-01]\n", + " [-1.81830112e-01 -6.61398415e-01 7.27660599e-01]\n", + " [-2.08188473e-01 -6.39614653e-01 7.39966659e-01]\n", + " [-2.34492559e-01 -6.16828650e-01 7.51355879e-01]\n", + " [-1.27032345e-01 -7.36262488e-01 6.64665579e-01]\n", + " [-1.52861347e-01 -7.18157739e-01 6.78883547e-01]\n", + " [-1.79085467e-01 -6.98769008e-01 6.92567880e-01]\n", + " [-2.05537681e-01 -6.78158068e-01 7.05589042e-01]\n", + " [-2.32052457e-01 -6.56405914e-01 7.17832107e-01]\n", + " [-2.58465236e-01 -6.33614022e-01 7.29197499e-01]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:fp_optics: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:cartToSphere: vec: [[ 0.00545153 -0.47573516 0.87957168]\n", + " [ 0.00752245 -0.50011594 0.86592578]\n", + " [ 0.00962904 -0.52457624 0.85130902]\n", + " [ 0.01176252 -0.54899684 0.83574165]\n", + " [ 0.01391425 -0.57326381 0.81925271]\n", + " [ 0.01607553 -0.59726714 0.80188125]\n", + " [ 0.01823763 -0.62090048 0.78367722]\n", + " [ 0.02039174 -0.64406192 0.76470152]\n", + " [ 0.00545153 -0.47573516 0.87957168]\n", + " [-0.02349232 -0.47755442 0.87828805]\n", + " [-0.05231714 -0.47905381 0.87622507]\n", + " [-0.08091043 -0.48023559 0.87339984]\n", + " [-0.10916041 -0.48110889 0.86983806]\n", + " [-0.13695595 -0.48169011 0.86557363]\n", + " [-0.16418587 -0.4820034 0.86064843]\n", + " [-0.19073815 -0.48208095 0.85511222]\n", + " [ 0.02039174 -0.64406192 0.76470152]\n", + " [-0.00955781 -0.64580764 0.76344034]\n", + " [-0.03940227 -0.64697005 0.76149669]\n", + " [-0.06902374 -0.64755283 0.75888804]\n", + " [-0.09830771 -0.64756718 0.75564035]\n", + " [-0.12714366 -0.64703152 0.75178767]\n", + " [-0.15542452 -0.64597117 0.74737171]\n", + " [-0.18304503 -0.64441816 0.74244175]\n", + " [-0.19073815 -0.48208095 0.85511222]\n", + " [-0.1904831 -0.50550546 0.84153456]\n", + " [-0.18993267 -0.52904801 0.82706335]\n", + " [-0.18909644 -0.55258379 0.81172267]\n", + " [-0.18798256 -0.57599567 0.79554481]\n", + " [-0.18659816 -0.59917348 0.77857066]\n", + " [-0.18495 -0.62201346 0.76085002]\n", + " [-0.18304503 -0.64441816 0.74244175]\n", + " [ 0.00625006 -0.48635437 0.8737393 ]\n", + " [ 0.0088123 -0.5163044 0.8563598 ]\n", + " [ 0.01141957 -0.54625472 0.83754127]\n", + " [ 0.0140559 -0.5759935 0.81733342]\n", + " [ 0.0167053 -0.60531817 0.7958083 ]\n", + " [ 0.01935165 -0.63403474 0.77306239]\n", + " [-0.00716889 -0.47665067 0.87906356]\n", + " [-0.04257774 -0.47866521 0.87696451]\n", + " [-0.07769593 -0.48020059 0.8737109 ]\n", + " [-0.11231738 -0.48127074 0.86934647]\n", + " [-0.1462374 -0.48190592 0.86393363]\n", + " [-0.17925103 -0.48215391 0.85755272]\n", + " [ 0.00732103 -0.64481642 0.76430242]\n", + " [-0.02932939 -0.64656378 0.76229592]\n", + " [-0.06570449 -0.64743797 0.75928058]\n", + " [-0.10159197 -0.64745647 0.75530073]\n", + " [-0.13678832 -0.64665317 0.75041897]\n", + " [-0.1710973 -0.64507745 0.74471524]\n", + " [-0.190574 -0.49227181 0.84932327]\n", + " [-0.19006041 -0.52107769 0.83207877]\n", + " [-0.189113 -0.5499359 0.81351507]\n", + " [-0.18774737 -0.5786277 0.79368817]\n", + " [-0.18597672 -0.60695017 0.77267338]\n", + " [-0.18381355 -0.63471492 0.75056616]\n", + " [ 0.00535948 -0.47582502 0.87952364]\n", + " [ 0.00535948 -0.47582502 0.87952364]\n", + " [-0.18295877 -0.64434849 0.74252347]\n", + " [-0.18295877 -0.64434849 0.74252347]\n", + " [-0.00632764 -0.4871813 0.87327793]\n", + " [-0.04187725 -0.48918033 0.87117673]\n", + " [-0.07713723 -0.49067174 0.86792344]\n", + " [-0.11190129 -0.49166914 0.86356214]\n", + " [-0.14596511 -0.49220233 0.85815561]\n", + " [-0.1791246 -0.49231859 0.85178447]\n", + " [-0.00388956 -0.51713412 0.85589554]\n", + " [-0.03979364 -0.51908889 0.85379341]\n", + " [-0.07541037 -0.52045869 0.85055042]\n", + " [-0.11053246 -0.52125666 0.8462116 ]\n", + " [-0.14495641 -0.52151177 0.84084072]\n", + " [-0.17848059 -0.52127011 0.83451911]\n", + " [-0.0013831 -0.54708591 0.83707532]\n", + " [-0.03757536 -0.54899534 0.83498037]\n", + " [-0.07348205 -0.55024669 0.83176256]\n", + " [-0.10889452 -0.55085331 0.82746759]\n", + " [-0.14360966 -0.55084423 0.8221599 ]\n", + " [-0.17742802 -0.5502651 0.81592133]\n", + " [ 0.00117644 -0.57682477 0.81686707]\n", + " [-0.03523594 -0.57868732 0.81478796]\n", + " [-0.07136474 -0.57982258 0.81161127]\n", + " [-0.10699982 -0.58024472 0.80738288]\n", + " [-0.14193809 -0.57998366 0.8021674 ]\n", + " [-0.17598181 -0.57908553 0.7960467 ]\n", + " [ 0.00377391 -0.60614808 0.79534286]\n", + " [-0.03278847 -0.60796229 0.79328858]\n", + " [-0.06906997 -0.60898403 0.79016947]\n", + " [-0.10485922 -0.60922875 0.78603109]\n", + " [-0.13995297 -0.6087279 0.78093759]\n", + " [-0.17415452 -0.60752876 0.77497033]\n", + " [ 0.00639386 -0.63486188 0.77259919]\n", + " [-0.03024648 -0.63662676 0.77057869]\n", + " [-0.06660982 -0.63753859 0.76753351]\n", + " [-0.10248399 -0.63761434 0.76350834]\n", + " [-0.13766554 -0.63688725 0.7585663 ]\n", + " [-0.17195822 -0.63540616 0.75278775]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:fp_optics: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:cartToSphere: vec: [[-0.65041956 0.6489828 0.39468433]\n", + " [-0.64639167 0.63772689 0.41890599]\n", + " [-0.64190514 0.625666 0.44328305]\n", + " [-0.6369442 0.61282841 0.46770013]\n", + " [-0.63149949 0.59925057 0.49204385]\n", + " [-0.62556918 0.58497517 0.51620466]\n", + " [-0.61915961 0.57005037 0.54007774]\n", + " [-0.61228532 0.55452959 0.56356333]\n", + " [-0.65041956 0.6489828 0.39468433]\n", + " [-0.67057076 0.63263724 0.38743383]\n", + " [-0.69063857 0.61540167 0.37986728]\n", + " [-0.71051236 0.59732336 0.37199057]\n", + " [-0.73008619 0.57845822 0.36381347]\n", + " [-0.74926076 0.55886867 0.35535071]\n", + " [-0.76794426 0.5386227 0.34662255]\n", + " [-0.78605276 0.51779365 0.33765485]\n", + " [-0.61228532 0.55452959 0.56356333]\n", + " [-0.63304002 0.53679327 0.55777533]\n", + " [-0.65371335 0.51825878 0.55142243]\n", + " [-0.67419201 0.4989781 0.54450528]\n", + " [-0.69437122 0.47900694 0.53702975]\n", + " [-0.71415304 0.45840635 0.52900761]\n", + " [-0.733445 0.43724449 0.5204572 ]\n", + " [-0.75215998 0.41559754 0.51140399]\n", + " [-0.78605276 0.51779365 0.33765485]\n", + " [-0.78332569 0.50500567 0.36245018]\n", + " [-0.77991453 0.49155096 0.38744159]\n", + " [-0.77579847 0.47746255 0.41251213]\n", + " [-0.77096476 0.46277741 0.43755047]\n", + " [-0.76540905 0.44753779 0.46244883]\n", + " [-0.75913604 0.4317925 0.48710133]\n", + " [-0.75215998 0.41559754 0.51140399]\n", + " [-0.6487878 0.64412085 0.40519466]\n", + " [-0.64354584 0.62978024 0.4350007 ]\n", + " [-0.6375985 0.61425763 0.46492548]\n", + " [-0.63092579 0.59761688 0.49475925]\n", + " [-0.62352442 0.5799365 0.52430044]\n", + " [-0.61540946 0.56130734 0.55335817]\n", + " [-0.65919596 0.64193061 0.39164496]\n", + " [-0.68385218 0.62129257 0.38254637]\n", + " [-0.70827286 0.59936357 0.37297837]\n", + " [-0.73226082 0.57624312 0.36295724]\n", + " [-0.75563335 0.55204604 0.35251017]\n", + " [-0.77822469 0.52689971 0.34167678]\n", + " [-0.62136118 0.54695207 0.56102916]\n", + " [-0.64675845 0.52467182 0.55355487]\n", + " [-0.6719199 0.50124384 0.54523229]\n", + " [-0.69664914 0.47676915 0.5360701 ]\n", + " [-0.72076569 0.45136032 0.52609 ]\n", + " [-0.74410148 0.42514618 0.51532875]\n", + " [-0.7848851 0.51237441 0.34846497]\n", + " [-0.78108519 0.49624982 0.37900138]\n", + " [-0.77623631 0.47915605 0.40971535]\n", + " [-0.77031164 0.46115951 0.44039968]\n", + " [-0.76330327 0.44233812 0.47085572]\n", + " [-0.75522379 0.42278474 0.50088929]\n", + " [-0.65047548 0.64889136 0.39474252]\n", + " [-0.65047548 0.64889136 0.39474252]\n", + " [-0.75212209 0.41572838 0.51135338]\n", + " [-0.75212209 0.41572838 0.51135338]\n", + " [-0.65754899 0.63711467 0.40213707]\n", + " [-0.68231906 0.61634846 0.3931352 ]\n", + " [-0.70684931 0.59429465 0.38363775]\n", + " [-0.73094132 0.57105442 0.37365977]\n", + " [-0.75441197 0.54674304 0.36322808]\n", + " [-0.7770952 0.52148794 0.35238242]\n", + " [-0.6524061 0.62264892 0.43205857]\n", + " [-0.67745242 0.60153548 0.42333589]\n", + " [-0.70224855 0.57915022 0.41404346]\n", + " [-0.72659436 0.55559668 0.40419421]\n", + " [-0.75030641 0.53098995 0.39381463]\n", + " [-0.77321803 0.5054571 0.38294516]\n", + " [-0.64653205 0.6070089 0.46210009]\n", + " [-0.67178285 0.58557645 0.45366069]\n", + " [-0.69677735 0.56289453 0.44457966]\n", + " [-0.72131561 0.53906659 0.43486895]\n", + " [-0.74521463 0.51420641 0.42455497]\n", + " [-0.76830709 0.48844055 0.41367867]\n", + " [-0.6399056 0.59026008 0.49205067]\n", + " [-0.66528707 0.56853914 0.48389705]\n", + " [-0.69041161 0.54559536 0.47503422]\n", + " [-0.71508038 0.52153102 0.46547335]\n", + " [-0.73911113 0.49645856 0.45524019]\n", + " [-0.76233591 0.47050446 0.44437542]\n", + " [-0.63252308 0.57248143 0.52170831]\n", + " [-0.65796105 0.55050247 0.51384266]\n", + " [-0.68314724 0.52733051 0.50520529]\n", + " [-0.7078841 0.50306671 0.4958064 ]\n", + " [-0.73199018 0.4778229 0.48567031]\n", + " [-0.75529713 0.45172622 0.47483646]\n", + " [-0.62439958 0.55376387 0.55088178]\n", + " [-0.64982037 0.5315569 0.54330539]\n", + " [-0.67500019 0.50818981 0.53489986]\n", + " [-0.69974246 0.48376347 0.52567423]\n", + " [-0.72386645 0.45839011 0.51565091]\n", + " [-0.74720396 0.43219804 0.50486741]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:fp_optics: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:cartToSphere: vec: [[ 1.79911743e-01 -6.28770363e-02 9.81671148e-01]\n", + " [ 1.83800443e-01 -8.94227921e-02 9.78887614e-01]\n", + " [ 1.87478180e-01 -1.16485542e-01 9.75337403e-01]\n", + " [ 1.90937775e-01 -1.43940131e-01 9.70991249e-01]\n", + " [ 1.94170465e-01 -1.71666029e-01 9.65830526e-01]\n", + " [ 1.97166406e-01 -1.99545982e-01 9.59847284e-01]\n", + " [ 1.99915312e-01 -2.27465163e-01 9.53044316e-01]\n", + " [ 2.02407044e-01 -2.55310916e-01 9.45435204e-01]\n", + " [ 1.79911743e-01 -6.28770363e-02 9.81671148e-01]\n", + " [ 1.53392821e-01 -6.44504727e-02 9.86061245e-01]\n", + " [ 1.26194306e-01 -6.61671627e-02 9.89796395e-01]\n", + " [ 9.84284129e-02 -6.79993177e-02 9.92818181e-01]\n", + " [ 7.02059472e-02 -6.99241027e-02 9.95078763e-01]\n", + " [ 4.16375953e-02 -7.19228549e-02 9.96540724e-01]\n", + " [ 1.28347241e-02 -7.39802902e-02 9.97177109e-01]\n", + " [-1.60904043e-02 -7.60838728e-02 9.96971586e-01]\n", + " [ 2.02407044e-01 -2.55310916e-01 9.45435204e-01]\n", + " [ 1.75083277e-01 -2.58845966e-01 9.49918213e-01]\n", + " [ 1.47059062e-01 -2.62248998e-01 9.53729047e-01]\n", + " [ 1.18438860e-01 -2.65494419e-01 9.56809777e-01]\n", + " [ 8.93290548e-02 -2.68559379e-01 9.59112183e-01]\n", + " [ 5.98393933e-02 -2.71423673e-01 9.60597958e-01]\n", + " [ 3.00832970e-02 -2.74069818e-01 9.61239164e-01]\n", + " [ 1.77287765e-04 -2.76483222e-01 9.61018728e-01]\n", + " [-1.60904043e-02 -7.60838728e-02 9.96971586e-01]\n", + " [-1.38738705e-02 -1.03882043e-01 9.94492854e-01]\n", + " [-1.16077145e-02 -1.32152381e-01 9.91161445e-01]\n", + " [-9.29987327e-03 -1.60777466e-01 9.86946867e-01]\n", + " [-6.95862341e-03 -1.89640546e-01 9.81828926e-01]\n", + " [-4.59262489e-03 -2.18624365e-01 9.75798286e-01]\n", + " [-2.21089220e-03 -2.47611115e-01 9.68856980e-01]\n", + " [ 1.77287765e-04 -2.76483222e-01 9.61018728e-01]\n", + " [ 1.81543027e-01 -7.43848674e-02 9.80565664e-01]\n", + " [ 1.86167043e-01 -1.07284528e-01 9.76643160e-01]\n", + " [ 1.90467425e-01 -1.40835755e-01 9.71538702e-01]\n", + " [ 1.94428680e-01 -1.74814820e-01 9.65213586e-01]\n", + " [ 1.98032757e-01 -2.09005767e-01 9.57653182e-01]\n", + " [ 2.01260753e-01 -2.43198094e-01 9.48867112e-01]\n", + " [ 1.68453520e-01 -6.36336840e-02 9.83653479e-01]\n", + " [ 1.35479528e-01 -6.56634877e-02 9.88601843e-01]\n", + " [ 1.01596460e-01 -6.78800669e-02 9.92507157e-01]\n", + " [ 6.70088119e-02 -7.02393608e-02 9.95276972e-01]\n", + " [ 3.19204424e-02 -7.27069255e-02 9.96842409e-01]\n", + " [-3.46324186e-03 -7.52557882e-02 9.97158248e-01]\n", + " [ 1.90578490e-01 -2.56771324e-01 9.47495819e-01]\n", + " [ 1.56606202e-01 -2.61017516e-01 9.52546248e-01]\n", + " [ 1.21685521e-01 -2.65039847e-01 9.56528365e-01]\n", + " [ 8.60113856e-02 -2.68795131e-01 9.59349373e-01]\n", + " [ 4.97858685e-02 -2.72246186e-01 9.60938802e-01]\n", + " [ 1.32191154e-02 -2.75362023e-01 9.61249713e-01]\n", + " [-1.50312002e-02 -8.81310022e-02 9.95995477e-01]\n", + " [-1.22792814e-02 -1.22532780e-01 9.92388501e-01]\n", + " [-9.46086843e-03 -1.57526942e-01 9.87469369e-01]\n", + " [-6.59105712e-03 -1.92898379e-01 9.81196603e-01]\n", + " [-3.68579221e-03 -2.28431224e-01 9.73553076e-01]\n", + " [-7.61791764e-04 -2.63908636e-01 9.64547382e-01]\n", + " [ 1.79835993e-01 -6.29718897e-02 9.81678948e-01]\n", + " [ 1.79835993e-01 -6.29718897e-02 9.81678948e-01]\n", + " [ 2.71509823e-04 -2.76376976e-01 9.61049267e-01]\n", + " [ 2.71509823e-04 -2.76376976e-01 9.61049267e-01]\n", + " [ 1.70115574e-01 -7.51075285e-02 9.82557658e-01]\n", + " [ 1.37013954e-01 -7.72894825e-02 9.87549246e-01]\n", + " [ 1.03001823e-01 -7.96290963e-02 9.91488695e-01]\n", + " [ 6.82825744e-02 -8.20833456e-02 9.94283568e-01]\n", + " [ 3.30596136e-02 -8.46185272e-02 9.95864834e-01]\n", + " [-2.46146633e-03 -8.72080861e-02 9.96187076e-01]\n", + " [ 1.74629792e-01 -1.08173953e-01 9.78674017e-01]\n", + " [ 1.41215473e-01 -1.10773299e-01 9.83761895e-01]\n", + " [ 1.06884982e-01 -1.13451190e-01 9.87777519e-01]\n", + " [ 7.18388630e-02 -1.16166889e-01 9.90628301e-01]\n", + " [ 3.62796439e-02 -1.18888019e-01 9.92244640e-01]\n", + " [ 4.13802823e-04 -1.21588566e-01 9.92580500e-01]\n", + " [ 1.78845813e-01 -1.41884832e-01 9.73592764e-01]\n", + " [ 1.45189449e-01 -1.44884948e-01 9.78738155e-01]\n", + " [ 1.10609504e-01 -1.47888959e-01 9.82799264e-01]\n", + " [ 7.53042722e-02 -1.50857186e-01 9.85683203e-01]\n", + " [ 3.94759064e-02 -1.53757402e-01 9.87319763e-01]\n", + " [ 3.33206301e-03 -1.56563257e-01 9.87662313e-01]\n", + " [ 1.82747324e-01 -1.76017665e-01 9.67275141e-01]\n", + " [ 1.48917753e-01 -1.79404958e-01 9.72438874e-01]\n", + " [ 1.14156474e-01 -1.82725099e-01 9.76514126e-01]\n", + " [ 7.86601649e-02 -1.85938258e-01 9.79407751e-01]\n", + " [ 4.26309161e-02 -1.89011364e-01 9.81049086e-01]\n", + " [ 6.27754452e-03 -1.91917055e-01 9.81391072e-01]\n", + " [ 1.86315588e-01 -2.10357006e-01 9.59706430e-01]\n", + " [ 1.52380323e-01 -2.14118746e-01 9.64848900e-01]\n", + " [ 1.17505509e-01 -2.17745141e-01 9.68906347e-01]\n", + " [ 8.18867699e-02 -2.21195282e-01 9.71785575e-01]\n", + " [ 4.57262368e-02 -2.24434565e-01 9.73415758e-01]\n", + " [ 9.23360886e-03 -2.27434191e-01 9.73749675e-01]\n", + " [ 1.89531220e-01 -2.44692196e-01 9.50896233e-01]\n", + " [ 1.55556906e-01 -2.48814694e-01 9.55977666e-01]\n", + " [ 1.20636255e-01 -2.52736038e-01 9.59985098e-01]\n", + " [ 8.49643092e-02 -2.56413681e-01 9.62825576e-01]\n", + " [ 4.87431792e-02 -2.59811130e-01 9.64428473e-01]\n", + " [ 1.21829896e-02 -2.62897970e-01 9.64746719e-01]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:fp_optics: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:cartToSphere: vec: [[-0.66335528 0.6823271 0.30722875]\n", + " [-0.68404957 0.66498458 0.29978607]\n", + " [-0.70460303 0.6467592 0.29195395]\n", + " [-0.7249038 0.62769438 0.28375033]\n", + " [-0.7448472 0.60784019 0.27519619]\n", + " [-0.76433467 0.5872548 0.26631618]\n", + " [-0.78327369 0.56600522 0.2571389 ]\n", + " [-0.80157851 0.54416735 0.24769697]\n", + " [-0.66335528 0.6823271 0.30722875]\n", + " [-0.66338753 0.6937017 0.28052617]\n", + " [-0.66293751 0.7043976 0.25364912]\n", + " [-0.66201707 0.71437956 0.22670518]\n", + " [-0.66064666 0.72361895 0.19980392]\n", + " [-0.65885568 0.73209326 0.17305677]\n", + " [-0.65668287 0.73978555 0.14657746]\n", + " [-0.65417665 0.7466839 0.12048265]\n", + " [-0.80157851 0.54416735 0.24769697]\n", + " [-0.80148977 0.55602583 0.22011229]\n", + " [-0.80068381 0.56734476 0.19241977]\n", + " [-0.79917418 0.57808657 0.16473172]\n", + " [-0.79698357 0.58822134 0.13715996]\n", + " [-0.79414327 0.59772662 0.10981505]\n", + " [-0.79069291 0.60658699 0.08280673]\n", + " [-0.78668024 0.61479318 0.05624543]\n", + " [-0.65417665 0.7466839 0.12048265]\n", + " [-0.67385986 0.73038542 0.11157967]\n", + " [-0.69347073 0.7131497 0.10254684]\n", + " [-0.71289274 0.69502494 0.09340381]\n", + " [-0.73201884 0.67606449 0.08417382]\n", + " [-0.75075074 0.65632749 0.07488365]\n", + " [-0.76899846 0.63587957 0.06556329]\n", + " [-0.78668024 0.61479318 0.05624543]\n", + " [-0.67238881 0.67491697 0.30394139]\n", + " [-0.69767159 0.65306346 0.29455471]\n", + " [-0.72263082 0.62992627 0.28460077]\n", + " [-0.7470709 0.60559475 0.27411691]\n", + " [-0.77081035 0.58017605 0.26314853]\n", + " [-0.79368162 0.55379728 0.25174999]\n", + " [-0.66349991 0.6873098 0.29558944]\n", + " [-0.6632139 0.70079936 0.262731 ]\n", + " [-0.66221414 0.71323379 0.22971721]\n", + " [-0.6605347 0.72455763 0.19674897]\n", + " [-0.65822974 0.7347294 0.16403149]\n", + " [-0.65537458 0.74371999 0.13177529]\n", + " [-0.80156707 0.54947689 0.23572309]\n", + " [-0.80097488 0.56365276 0.20182864]\n", + " [-0.79931798 0.57697991 0.16788374]\n", + " [-0.79663432 0.58940006 0.13409451]\n", + " [-0.79298152 0.60087183 0.10066454]\n", + " [-0.78843586 0.61136943 0.06779606]\n", + " [-0.66276914 0.73967331 0.11670673]\n", + " [-0.68686068 0.7190609 0.10570634]\n", + " [-0.71072662 0.69708807 0.09452984]\n", + " [-0.73416598 0.67385087 0.08321852]\n", + " [-0.75699778 0.64945825 0.07182166]\n", + " [-0.77905977 0.62403385 0.06039559]\n", + " [-0.66342709 0.68230936 0.30711308]\n", + " [-0.66342709 0.68230936 0.30711308]\n", + " [-0.78663544 0.61483934 0.05636719]\n", + " [-0.78663544 0.61483934 0.05636719]\n", + " [-0.67245998 0.67993802 0.29237281]\n", + " [-0.67215097 0.69349126 0.25938957]\n", + " [-0.67110101 0.70599718 0.22625521]\n", + " [-0.66934395 0.7174006 0.19317102]\n", + " [-0.66693358 0.72766065 0.16034208]\n", + " [-0.66394473 0.7367489 0.12797832]\n", + " [-0.69773824 0.65813683 0.28287322]\n", + " [-0.69736718 0.67185541 0.24957829]\n", + " [-0.69618236 0.68455165 0.21614616]\n", + " [-0.69421738 0.69617089 0.18277943]\n", + " [-0.69152542 0.70667362 0.14968298]\n", + " [-0.68818018 0.7160334 0.11706497]\n", + " [-0.72269313 0.63504294 0.27282796]\n", + " [-0.72226421 0.64890481 0.23928427]\n", + " [-0.7209544 0.66177427 0.20561998]\n", + " [-0.71879773 0.67359659 0.17203914]\n", + " [-0.71584752 0.68433305 0.13874652]\n", + " [-0.71217708 0.69395872 0.1059486 ]\n", + " [-0.74712903 0.61074546 0.26227504]\n", + " [-0.74664619 0.6247284 0.22854736]\n", + " [-0.74522077 0.63775458 0.19471802]\n", + " [-0.74288773 0.64976864 0.16099234]\n", + " [-0.7397013 0.66073188 0.12757498]\n", + " [-0.7357351 0.67062008 0.09467083]\n", + " [-0.77086448 0.58535123 0.2512606 ]\n", + " [-0.7703319 0.59943237 0.21741571]\n", + " [-0.76880066 0.61259854 0.18349001]\n", + " [-0.76630695 0.62479331 0.14968961]\n", + " [-0.76290637 0.63597723 0.11621887]\n", + " [-0.75867351 0.64612593 0.08328134]\n", + " [-0.79373196 0.55898706 0.23983963]\n", + " [-0.79315439 0.57314256 0.20594591]\n", + " [-0.79152816 0.58643103 0.17199364]\n", + " [-0.78889081 0.59879468 0.13818906]\n", + " [-0.78529944 0.61019272 0.10473601]\n", + " [-0.78082988 0.62059983 0.07183697]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:cartToSphere: vec: [[ 7.46198165e-02 2.20384437e-01 9.72554668e-01]\n", + " [ 8.22812191e-02 1.94947414e-01 9.77356285e-01]\n", + " [ 8.98890049e-02 1.68791529e-01 9.81544389e-01]\n", + " [ 9.74227767e-02 1.42027323e-01 9.85056872e-01]\n", + " [ 1.04859986e-01 1.14763480e-01 9.87842967e-01]\n", + " [ 1.12176262e-01 8.71081818e-02 9.89862945e-01]\n", + " [ 1.19345919e-01 5.91700121e-02 9.91088019e-01]\n", + " [ 1.26342497e-01 3.10582805e-02 9.91500356e-01]\n", + " [ 7.46198165e-02 2.20384437e-01 9.72554668e-01]\n", + " [ 4.82176924e-02 2.15820287e-01 9.75241846e-01]\n", + " [ 2.12377583e-02 2.10844790e-01 9.77288817e-01]\n", + " [-6.20655733e-03 2.05487076e-01 9.78640148e-01]\n", + " [-3.40037619e-02 1.99774048e-01 9.79251793e-01]\n", + " [-6.20430998e-02 1.93731299e-01 9.79090822e-01]\n", + " [-9.02138657e-02 1.87384011e-01 9.78135313e-01]\n", + " [-1.18405293e-01 1.80757633e-01 9.76374347e-01]\n", + " [ 1.26342497e-01 3.10582805e-02 9.91500356e-01]\n", + " [ 9.94098955e-02 2.45196991e-02 9.94744418e-01]\n", + " [ 7.18444527e-02 1.78242651e-02 9.97256572e-01]\n", + " [ 4.37522144e-02 1.09979751e-02 9.98981876e-01]\n", + " [ 1.52403470e-02 4.06701808e-03 9.99875588e-01]\n", + " [-1.35814623e-02 -2.94185510e-03 9.99903440e-01]\n", + " [-4.26007195e-02 -1.00012397e-02 9.99042118e-01]\n", + " [-7.17027131e-02 -1.70832053e-02 9.97279743e-01]\n", + " [-1.18405293e-01 1.80757633e-01 9.76374347e-01]\n", + " [-1.12246685e-01 1.53940056e-01 9.81683829e-01]\n", + " [-1.05881176e-01 1.26464976e-01 9.86304104e-01]\n", + " [-9.93287262e-02 9.84352582e-02 9.90173876e-01]\n", + " [-9.26107339e-02 6.99558047e-02 9.93241883e-01]\n", + " [-8.57502812e-02 4.11347681e-02 9.95467137e-01]\n", + " [-7.87721598e-02 1.20836858e-02 9.96819408e-01]\n", + " [-7.17027131e-02 -1.70832053e-02 9.97279743e-01]\n", + " [ 7.78761233e-02 2.09374019e-01 9.74729619e-01]\n", + " [ 8.72315954e-02 1.77699464e-01 9.80210972e-01]\n", + " [ 9.64866987e-02 1.45055298e-01 9.84707712e-01]\n", + " [ 1.05600808e-01 1.11642294e-01 9.88121687e-01]\n", + " [ 1.14529113e-01 7.76597104e-02 9.90379751e-01]\n", + " [ 1.23223978e-01 4.33077559e-02 9.91433452e-01]\n", + " [ 6.32127761e-02 2.18360885e-01 9.73818602e-01]\n", + " [ 3.04503524e-02 2.12485324e-01 9.76689696e-01]\n", + " [-3.06702407e-03 2.06021307e-01 9.78542699e-01]\n", + " [-3.71333702e-02 1.99019244e-01 9.79291812e-01]\n", + " [-7.15447122e-02 1.91526351e-01 9.78876402e-01]\n", + " [-1.06097204e-01 1.83589074e-01 9.77260679e-01]\n", + " [ 1.14660719e-01 2.83250914e-02 9.93000810e-01]\n", + " [ 8.12129028e-02 2.02036118e-02 9.96491986e-01]\n", + " [ 4.69199317e-02 1.18721903e-02 9.98828099e-01]\n", + " [ 1.19785193e-02 3.37892600e-03 9.99922546e-01]\n", + " [-2.34093721e-02 -5.22692911e-03 9.99712299e-01]\n", + " [-5.90356710e-02 -1.38946978e-02 9.98159169e-01]\n", + " [-1.15650098e-01 1.69175695e-01 9.78777114e-01]\n", + " [-1.07959571e-01 1.35853229e-01 9.84829240e-01]\n", + " [-9.99781488e-02 1.01645208e-01 9.89784129e-01]\n", + " [-9.17446105e-02 6.67438046e-02 9.93543251e-01]\n", + " [-8.33014577e-02 3.13481351e-02 9.96031205e-01]\n", + " [-7.46949922e-02 -4.33528979e-03 9.97197003e-01]\n", + " [ 7.45569134e-02 2.20283929e-01 9.72582263e-01]\n", + " [ 7.45569134e-02 2.20283929e-01 9.72582263e-01]\n", + " [-7.16274847e-02 -1.69591747e-02 9.97287265e-01]\n", + " [-7.16274847e-02 -1.69591747e-02 9.97287265e-01]\n", + " [ 6.64941260e-02 2.07390340e-01 9.75995788e-01]\n", + " [ 3.36222589e-02 2.01360679e-01 9.78939947e-01]\n", + " [-8.81399983e-06 1.94767724e-01 9.80849394e-01]\n", + " [-3.41940666e-02 1.87660731e-01 9.81638536e-01]\n", + " [-6.87298568e-02 1.80086106e-01 9.81246759e-01]\n", + " [-1.03412078e-01 1.72089885e-01 9.79638205e-01]\n", + " [ 7.57601474e-02 1.75549430e-01 9.81551220e-01]\n", + " [ 4.26275078e-02 1.69097093e-01 9.84677139e-01]\n", + " [ 8.72185450e-03 1.62150737e-01 9.86727454e-01]\n", + " [-2.57542798e-02 1.54756975e-01 9.87616826e-01]\n", + " [-6.05978870e-02 1.46960693e-01 9.87284382e-01]\n", + " [-9.56038522e-02 1.38807413e-01 9.85693870e-01]\n", + " [ 8.49516733e-02 1.42745629e-01 9.86106941e-01]\n", + " [ 5.16300163e-02 1.35887512e-01 9.89378050e-01]\n", + " [ 1.75195146e-02 1.28602219e-01 9.91541495e-01]\n", + " [-1.71793471e-02 1.20934954e-01 9.92511767e-01]\n", + " [-5.22638529e-02 1.12930274e-01 9.92227415e-01]\n", + " [-8.75277206e-02 1.04634077e-01 9.90651608e-01]\n", + " [ 9.40274375e-02 1.09178415e-01 9.89565013e-01]\n", + " [ 6.05871727e-02 1.01928202e-01 9.92945032e-01]\n", + " [ 2.63411377e-02 9.43161422e-02 9.95193755e-01]\n", + " [-8.51176705e-03 8.63872911e-02 9.96225269e-01]\n", + " [-4.37689627e-02 7.81869065e-02 9.95977452e-01]\n", + " [-7.92231324e-02 6.97619458e-02 9.94412875e-01]\n", + " [ 1.02942031e-01 7.50464540e-02 9.91852291e-01]\n", + " [ 6.94524215e-02 6.74167504e-02 9.95304648e-01]\n", + " [ 3.51399276e-02 5.94898371e-02 9.97610217e-01]\n", + " [ 2.02276079e-04 5.13116405e-02 9.98682670e-01]\n", + " [-3.51581152e-02 4.29288608e-02 9.98459323e-01]\n", + " [-7.07332584e-02 3.43899364e-02 9.96902271e-01]\n", + " [ 1.11647327e-01 4.05500404e-02 9.92920223e-01]\n", + " [ 7.81766703e-02 3.25542328e-02 9.96407863e-01]\n", + " [ 4.38665205e-02 2.43257012e-02 9.98741202e-01]\n", + " [ 8.91379191e-03 1.59119132e-02 9.99833664e-01]\n", + " [-2.64794022e-02 7.36142557e-03 9.99622254e-01]\n", + " [-6.21049128e-02 -1.27566861e-03 9.98068811e-01]]\n", + "DEBUG:root:fp_optics: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:fp_optics: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:cartToSphere: vec: [[ 0.48506599 -0.62599139 0.61061098]\n", + " [ 0.50357582 -0.6309562 0.59017428]\n", + " [ 0.52204625 -0.63550895 0.56885506]\n", + " [ 0.54038173 -0.63960397 0.54671231]\n", + " [ 0.55849198 -0.64320203 0.5238109 ]\n", + " [ 0.57629101 -0.64627036 0.50022324]\n", + " [ 0.59369707 -0.64878288 0.47603 ]\n", + " [ 0.61063318 -0.65072064 0.45132003]\n", + " [ 0.48506599 -0.62599139 0.61061098]\n", + " [ 0.46850694 -0.64772161 0.60079777]\n", + " [ 0.4516734 -0.66885783 0.5904408 ]\n", + " [ 0.43463854 -0.68932567 0.5795856 ]\n", + " [ 0.41748148 -0.70905859 0.56828261]\n", + " [ 0.4002877 -0.72799788 0.55658678]\n", + " [ 0.3831497 -0.74609224 0.54455733]\n", + " [ 0.36616779 -0.76329732 0.53225778]\n", + " [ 0.61063318 -0.65072064 0.45132003]\n", + " [ 0.59340088 -0.67316532 0.44127525]\n", + " [ 0.57569287 -0.69493392 0.43086491]\n", + " [ 0.55758677 -0.71594895 0.4201358 ]\n", + " [ 0.53916506 -0.73614306 0.40913865]\n", + " [ 0.5205144 -0.75545905 0.39792761]\n", + " [ 0.50172567 -0.7738492 0.38656018]\n", + " [ 0.48289482 -0.79127386 0.37509768]\n", + " [ 0.36616779 -0.76329732 0.53225778]\n", + " [ 0.38282489 -0.76914254 0.51172733]\n", + " [ 0.39964221 -0.77443772 0.49044095]\n", + " [ 0.4165198 -0.77913657 0.46846287]\n", + " [ 0.43336563 -0.78319931 0.44586216]\n", + " [ 0.4500948 -0.78659273 0.42271331]\n", + " [ 0.46662873 -0.78929056 0.39909653]\n", + " [ 0.48289482 -0.79127386 0.37509768]\n", + " [ 0.4930785 -0.62827905 0.60177988]\n", + " [ 0.51574949 -0.63409367 0.57613164]\n", + " [ 0.53826582 -0.63924312 0.54921593]\n", + " [ 0.56045916 -0.64365251 0.52114967]\n", + " [ 0.58217123 -0.64726154 0.49206621]\n", + " [ 0.60325344 -0.65002514 0.46211753]\n", + " [ 0.47794738 -0.63555172 0.6063335 ]\n", + " [ 0.45745835 -0.66179534 0.593935 ]\n", + " [ 0.43662892 -0.68707188 0.58076451]\n", + " [ 0.41560228 -0.71125559 0.5669129 ]\n", + " [ 0.39453587 -0.7342383 0.55248129]\n", + " [ 0.37360317 -0.75592851 0.53758047]\n", + " [ 0.60312605 -0.66057873 0.4470735 ]\n", + " [ 0.58167687 -0.68764252 0.43451097]\n", + " [ 0.55958982 -0.71361274 0.42144523]\n", + " [ 0.53701477 -0.73836116 0.40796807]\n", + " [ 0.51411125 -0.7617824 0.39417915]\n", + " [ 0.49104861 -0.78379204 0.38018588]\n", + " [ 0.37346218 -0.76585288 0.52344567]\n", + " [ 0.39399952 -0.77265282 0.49776701]\n", + " [ 0.41467714 -0.77857993 0.4710161 ]\n", + " [ 0.43532235 -0.78355825 0.44331807]\n", + " [ 0.45577876 -0.78752672 0.41481007]\n", + " [ 0.4759042 -0.79043997 0.38564212]\n", + " [ 0.48507316 -0.62608424 0.61051008]\n", + " [ 0.48507316 -0.62608424 0.61051008]\n", + " [ 0.48290408 -0.79121041 0.37521958]\n", + " [ 0.48290408 -0.79121041 0.37521958]\n", + " [ 0.48592321 -0.63778302 0.59758804]\n", + " [ 0.46533521 -0.66412164 0.58515433]\n", + " [ 0.44438435 -0.68948045 0.57196089]\n", + " [ 0.42321376 -0.71373352 0.55809907]\n", + " [ 0.40198032 -0.73677291 0.5436704 ]\n", + " [ 0.38085662 -0.75850759 0.52878585]\n", + " [ 0.5085196 -0.64368944 0.57190185]\n", + " [ 0.48767892 -0.67026661 0.55938532]\n", + " [ 0.46641523 -0.69583097 0.54614659]\n", + " [ 0.44487201 -0.72025601 0.53227828]\n", + " [ 0.42320514 -0.74343442 0.51788287]\n", + " [ 0.40158487 -0.76527671 0.50307172]\n", + " [ 0.53097481 -0.64891331 0.54495621]\n", + " [ 0.50992243 -0.67568309 0.53238283]\n", + " [ 0.48839136 -0.70141185 0.51912936]\n", + " [ 0.46652615 -0.72597248 0.50528933]\n", + " [ 0.44448258 -0.74925824 0.49096571]\n", + " [ 0.42242927 -0.77118128 0.47626982]\n", + " [ 0.55312091 -0.65337922 0.51686831]\n", + " [ 0.53189861 -0.68029443 0.50426516]\n", + " [ 0.51014575 -0.70614572 0.49102905]\n", + " [ 0.4880085 -0.7308054 0.47725378]\n", + " [ 0.46564329 -0.7541673 0.46304212]\n", + " [ 0.44321809 -0.77614505 0.44850482]\n", + " [ 0.57480008 -0.65702629 0.48777179]\n", + " [ 0.55345103 -0.68403835 0.47516681]\n", + " [ 0.53152319 -0.70996949 0.46198098]\n", + " [ 0.50916446 -0.73469163 0.44830767]\n", + " [ 0.4865325 -0.75809904 0.43424874]\n", + " [ 0.46379548 -0.78010651 0.41991377]\n", + " [ 0.59586418 -0.65980893 0.4578188 ]\n", + " [ 0.57443306 -0.6868681 0.44524025]\n", + " [ 0.55237874 -0.71283582 0.43213751]\n", + " [ 0.52985066 -0.73758382 0.41860289]\n", + " [ 0.50700789 -0.76100669 0.40473671]\n", + " [ 0.48401939 -0.7830199 0.39064698]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:fp_optics: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:cartToSphere: vec: [[ 0.12779991 -0.27122916 0.95399262]\n", + " [ 0.11000987 -0.292502 0.949916 ]\n", + " [ 0.09178078 -0.31395812 0.94499026]\n", + " [ 0.07318048 -0.33549918 0.93919376]\n", + " [ 0.05427776 -0.35703016 0.93251455]\n", + " [ 0.03514344 -0.37845812 0.92495102]\n", + " [ 0.01585092 -0.39969183 0.91651252]\n", + " [-0.00352408 -0.42064224 0.90721976]\n", + " [ 0.12779991 -0.27122916 0.95399262]\n", + " [ 0.10554017 -0.25412945 0.96139456]\n", + " [ 0.08320166 -0.23694623 0.9679535 ]\n", + " [ 0.06087097 -0.21975175 0.97365491]\n", + " [ 0.03863417 -0.20262207 0.97849461]\n", + " [ 0.01657652 -0.18563736 0.98247849]\n", + " [-0.00521747 -0.16888238 0.9856224 ]\n", + " [-0.02666384 -0.15244679 0.98795193]\n", + " [-0.00352408 -0.42064224 0.90721976]\n", + " [-0.02644303 -0.40284086 0.91488798]\n", + " [-0.04926502 -0.3847375 0.92171037]\n", + " [-0.07190044 -0.36640871 0.92767181]\n", + " [-0.09426246 -0.34793366 0.93276833]\n", + " [-0.11626742 -0.32939365 0.93700678]\n", + " [-0.1378343 -0.31087238 0.9404042 ]\n", + " [-0.15888348 -0.29245689 0.94298728]\n", + " [-0.02666384 -0.15244679 0.98795193]\n", + " [-0.0451915 -0.17182611 0.9840902 ]\n", + " [-0.06395978 -0.19157434 0.97939186]\n", + " [-0.08289701 -0.21158994 0.97383663]\n", + " [-0.10193106 -0.23177618 0.96741401]\n", + " [-0.12098914 -0.25204091 0.96012343]\n", + " [-0.13999784 -0.27229596 0.95197453]\n", + " [-0.15888348 -0.29245689 0.94298728]\n", + " [ 0.12002553 -0.28041669 0.95234466]\n", + " [ 0.09791749 -0.30662401 0.9467808 ]\n", + " [ 0.07521749 -0.3330086 0.93991894]\n", + " [ 0.0520517 -0.35939419 0.93173303]\n", + " [ 0.02855059 -0.38560967 0.92222017]\n", + " [ 0.00485029 -0.41148794 0.9114023 ]\n", + " [ 0.11804951 -0.26386043 0.95730976]\n", + " [ 0.09070334 -0.24283718 0.96581728]\n", + " [ 0.06332506 -0.22175972 0.97304294]\n", + " [ 0.03607335 -0.20076648 0.97897474]\n", + " [ 0.0091052 -0.18000511 0.98362353]\n", + " [-0.01742406 -0.15963368 0.98702254]\n", + " [-0.01345661 -0.41285162 0.91069888]\n", + " [-0.04149237 -0.39082185 0.91953067]\n", + " [-0.06929331 -0.36841437 0.92707566]\n", + " [-0.09669838 -0.34577388 0.93332194]\n", + " [-0.1235535 -0.32305009 0.93828203]\n", + " [-0.14971017 -0.30039839 0.94199133]\n", + " [-0.03463512 -0.16090033 0.98636276]\n", + " [-0.05751344 -0.18491442 0.98107026]\n", + " [-0.08068215 -0.20938104 0.97449986]\n", + " [-0.10400868 -0.23412016 0.96662813]\n", + " [-0.12735901 -0.25896202 0.9574541 ]\n", + " [-0.15059787 -0.28374588 0.94699977]\n", + " [ 0.12766401 -0.27124322 0.95400682]\n", + " [ 0.12766401 -0.27124322 0.95400682]\n", + " [-0.15874818 -0.29245089 0.94301193]\n", + " [-0.15874818 -0.29245089 0.94301193]\n", + " [ 0.11037477 -0.27300337 0.95566028]\n", + " [ 0.08293625 -0.25187826 0.96419859]\n", + " [ 0.05548145 -0.23067643 0.97144747]\n", + " [ 0.02816952 -0.20953624 0.97739503]\n", + " [ 0.00115757 -0.18860492 0.98205236]\n", + " [-0.02539923 -0.16804006 0.9854529 ]\n", + " [ 0.08817594 -0.2991335 0.95012849]\n", + " [ 0.06050993 -0.27774764 0.95874647]\n", + " [ 0.03287306 -0.25622369 0.96605837]\n", + " [ 0.00542576 -0.23470019 0.97205266]\n", + " [-0.02167461 -0.21332343 0.97674118]\n", + " [-0.04827354 -0.19224937 0.98015807]\n", + " [ 0.06540312 -0.3254548 0.94329296]\n", + " [ 0.03756117 -0.30384929 0.95197939]\n", + " [ 0.00979473 -0.2820472 0.95935053]\n", + " [-0.01773471 -0.26018793 0.96539511]\n", + " [-0.04486981 -0.23841746 0.97012567]\n", + " [-0.07145714 -0.21689038 0.97357714]\n", + " [ 0.042183 -0.35179138 0.93512749]\n", + " [ 0.01421831 -0.33000794 0.94387107]\n", + " [-0.01362362 -0.30797163 0.95129799]\n", + " [-0.04118067 -0.28582323 0.95739712]\n", + " [-0.068296 -0.26370924 0.96218142]\n", + " [-0.09481755 -0.24178359 0.96568645]\n", + " [ 0.01864665 -0.37797256 0.925629 ]\n", + " [-0.00938603 -0.35605421 0.93441816]\n", + " [-0.03724817 -0.33382852 0.9418976 ]\n", + " [-0.06477767 -0.31143803 0.94805602]\n", + " [-0.09181864 -0.28903037 0.95290649]\n", + " [-0.11822058 -0.26675964 0.95648481]\n", + " [-0.00506932 -0.40383172 0.91481924]\n", + " [-0.03311417 -0.38182296 0.92364207]\n", + " [-0.06094085 -0.35945444 0.93117062]\n", + " [-0.08838792 -0.33687034 0.93739317]\n", + " [-0.1153008 -0.31421981 0.94232247]\n", + " [-0.14153051 -0.29165783 0.94599409]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:fp_optics: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:cartToSphere: vec: [[ 7.97796490e-01 6.71105625e-02 5.99180218e-01]\n", + " [ 8.11000977e-01 8.17890261e-02 5.79299551e-01]\n", + " [ 8.23812207e-01 9.66944353e-02 5.58554951e-01]\n", + " [ 8.36142651e-01 1.11762598e-01 5.37005203e-01]\n", + " [ 8.47914212e-01 1.26931423e-01 5.14713417e-01]\n", + " [ 8.59057214e-01 1.42139608e-01 4.91748954e-01]\n", + " [ 8.69509907e-01 1.57325569e-01 4.68189263e-01]\n", + " [ 8.79218830e-01 1.72427260e-01 4.44120580e-01]\n", + " [ 7.97796490e-01 6.71105625e-02 5.99180218e-01]\n", + " [ 8.07989837e-01 4.24858332e-02 5.87662638e-01]\n", + " [ 8.17520125e-01 1.79571028e-02 5.75620003e-01]\n", + " [ 8.26361246e-01 -6.37748071e-03 5.63104271e-01]\n", + " [ 8.34496952e-01 -3.04187749e-02 5.50172277e-01]\n", + " [ 8.41920831e-01 -5.40669159e-02 5.36885539e-01]\n", + " [ 8.48636056e-01 -7.72222614e-02 5.23310201e-01]\n", + " [ 8.54654836e-01 -9.97878535e-02 5.09516924e-01]\n", + " [ 8.79218830e-01 1.72427260e-01 4.44120580e-01]\n", + " [ 8.89682630e-01 1.46870942e-01 4.32312092e-01]\n", + " [ 8.99314064e-01 1.21268506e-01 4.20152549e-01]\n", + " [ 9.08086629e-01 9.57230447e-02 4.07695686e-01]\n", + " [ 9.15985365e-01 7.03355837e-02 3.94998375e-01]\n", + " [ 9.23006221e-01 4.52052330e-02 3.82120403e-01]\n", + " [ 9.29155125e-01 2.04308793e-02 3.69125091e-01]\n", + " [ 9.34447249e-01 -3.88657509e-03 3.56080376e-01]\n", + " [ 8.54654836e-01 -9.97878535e-02 5.09516924e-01]\n", + " [ 8.67680313e-01 -8.71407704e-02 4.89425542e-01]\n", + " [ 8.80294602e-01 -7.40431383e-02 4.68613943e-01]\n", + " [ 8.92410704e-01 -6.05535521e-02 4.47142486e-01]\n", + " [ 9.03949518e-01 -4.67328648e-02 4.25078002e-01]\n", + " [ 9.14840863e-01 -3.26418296e-02 4.02493114e-01]\n", + " [ 9.25023875e-01 -1.83401974e-02 3.79466029e-01]\n", + " [ 9.34447249e-01 -3.88657509e-03 3.56080376e-01]\n", + " [ 8.03632116e-01 7.33937034e-02 5.90583428e-01]\n", + " [ 8.19563010e-01 9.15436747e-02 5.65629055e-01]\n", + " [ 8.34815101e-01 1.09970628e-01 5.39435083e-01]\n", + " [ 8.49240738e-01 1.28559427e-01 5.12115850e-01]\n", + " [ 8.62711587e-01 1.47197091e-01 4.83799271e-01]\n", + " [ 8.75117362e-01 1.65770029e-01 4.54631610e-01]\n", + " [ 8.02366128e-01 5.64179069e-02 5.94159588e-01]\n", + " [ 8.14417248e-01 2.62890693e-02 5.79683906e-01]\n", + " [ 8.25445235e-01 -3.59825577e-03 5.64470740e-01]\n", + " [ 8.35416077e-01 -3.30619566e-02 5.48622717e-01]\n", + " [ 8.44317940e-01 -6.19182837e-02 5.32253081e-01]\n", + " [ 8.52160465e-01 -8.99847007e-02 5.15485496e-01]\n", + " [ 8.83849372e-01 1.61245525e-01 4.39101547e-01]\n", + " [ 8.96118041e-01 1.29879757e-01 4.24386270e-01]\n", + " [ 9.07108920e-01 9.85474353e-02 4.09196543e-01]\n", + " [ 9.16789675e-01 6.74354603e-02 3.93635811e-01]\n", + " [ 9.25152734e-01 3.67264905e-02 3.77814217e-01]\n", + " [ 9.32212861e-01 6.60333136e-03 3.61850214e-01]\n", + " [ 8.60359499e-01 -9.42560284e-02 5.00896530e-01]\n", + " [ 8.76058890e-01 -7.84442093e-02 4.75780756e-01]\n", + " [ 8.91053403e-01 -6.20135808e-02 4.49642245e-01]\n", + " [ 9.05194042e-01 -4.50754319e-02 4.22601410e-01]\n", + " [ 9.18351644e-01 -2.77415139e-02 3.94791929e-01]\n", + " [ 9.30418120e-01 -1.01213460e-02 3.66360041e-01]\n", + " [ 7.97878157e-01 6.70760321e-02 5.99075331e-01]\n", + " [ 7.97878157e-01 6.70760321e-02 5.99075331e-01]\n", + " [ 9.34399705e-01 -3.85393512e-03 3.56205471e-01]\n", + " [ 9.34399705e-01 -3.85393512e-03 3.56205471e-01]\n", + " [ 8.08136283e-01 6.26925322e-02 5.85649549e-01]\n", + " [ 8.20218390e-01 3.24320728e-02 5.71130417e-01]\n", + " [ 8.31255182e-01 2.39909413e-03 5.55885839e-01]\n", + " [ 8.41212578e-01 -2.72241140e-02 5.40018747e-01]\n", + " [ 8.50078925e-01 -5.62533195e-02 5.23642421e-01]\n", + " [ 8.57864448e-01 -8.45041944e-02 5.06880292e-01]\n", + " [ 8.24107719e-01 8.07339886e-02 5.60650061e-01]\n", + " [ 8.36265640e-01 5.01395532e-02 5.46027293e-01]\n", + " [ 8.47319974e-01 1.97342516e-02 5.30715952e-01]\n", + " [ 8.57236346e-01 -1.02995355e-02 5.14820130e-01]\n", + " [ 8.66003398e-01 -3.97777241e-02 4.98453456e-01]\n", + " [ 8.73632385e-01 -6.85137710e-02 4.81738850e-01]\n", + " [ 8.39392392e-01 9.90723517e-02 5.34420322e-01]\n", + " [ 8.51608055e-01 6.82013815e-02 5.19723284e-01]\n", + " [ 8.62668508e-01 3.74831488e-02 5.04378884e-01]\n", + " [ 8.72539276e-01 7.10026220e-03 4.88492373e-01]\n", + " [ 8.81209412e-01 -2.27643638e-02 4.72177675e-01]\n", + " [ 8.88690868e-01 -5.19247582e-02 4.55557198e-01]\n", + " [ 8.53842445e-01 1.17592850e-01 5.07074946e-01]\n", + " [ 8.66097044e-01 8.65032516e-02 4.92334335e-01]\n", + " [ 8.77151403e-01 5.55310663e-02 4.76992366e-01]\n", + " [ 8.86971351e-01 2.48597375e-02 4.61154873e-01]\n", + " [ 8.95546747e-01 -5.32883219e-03 4.44935531e-01]\n", + " [ 9.02890344e-01 -3.48502781e-02 4.28455930e-01]\n", + " [ 8.67329242e-01 1.36183203e-01 4.78742227e-01]\n", + " [ 8.79603268e-01 1.04934410e-01 4.63990151e-01]\n", + " [ 8.90638929e-01 7.37677404e-02 4.48687663e-01]\n", + " [ 9.00402735e-01 4.28680291e-02 4.32940234e-01]\n", + " [ 9.08885670e-01 1.24169340e-02 4.16860479e-01]\n", + " [ 9.16101422e-01 -1.74025160e-02 4.00568766e-01]\n", + " [ 8.79742210e-01 1.54730612e-01 4.49568773e-01]\n", + " [ 8.92015783e-01 1.23384211e-01 4.34838107e-01]\n", + " [ 9.03020418e-01 9.20840647e-02 4.19612498e-01]\n", + " [ 9.12723486e-01 6.10165720e-02 4.03996058e-01]\n", + " [ 9.21117091e-01 3.03640080e-02 3.88099642e-01]\n", + " [ 9.28215772e-01 3.09035298e-04 3.72042183e-01]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:fp_optics: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:cartToSphere: vec: [[-0.4358152 0.68564127 -0.58306189]\n", + " [-0.45500548 0.68882063 -0.56435464]\n", + " [-0.474341 0.6914354 -0.54490155]\n", + " [-0.49370928 0.69345672 -0.52475605]\n", + " [-0.51300627 0.69486074 -0.50397731]\n", + " [-0.53213559 0.69562878 -0.48263063]\n", + " [-0.55100794 0.69574777 -0.46078769]\n", + " [-0.5695407 0.69521069 -0.43852651]\n", + " [-0.4358152 0.68564127 -0.58306189]\n", + " [-0.44827182 0.66585027 -0.59640237]\n", + " [-0.46078292 0.64514123 -0.60948494]\n", + " [-0.4732611 0.62357469 -0.62223672]\n", + " [-0.48562758 0.60121639 -0.63459019]\n", + " [-0.49781157 0.5781379 -0.64648295]\n", + " [-0.50974961 0.5544172 -0.65785781]\n", + " [-0.52138507 0.53013885 -0.66866315]\n", + " [-0.5695407 0.69521069 -0.43852651]\n", + " [-0.58392584 0.6749051 -0.45114712]\n", + " [-0.59813974 0.65364052 -0.46366251]\n", + " [-0.6120989 0.63147183 -0.47600239]\n", + " [-0.62572617 0.6084603 -0.48810125]\n", + " [-0.63894994 0.58467533 -0.49989772]\n", + " [-0.65170407 0.56019539 -0.51133446]\n", + " [-0.66392827 0.53510819 -0.52235857]\n", + " [-0.52138507 0.53013885 -0.66866315]\n", + " [-0.54231989 0.53215439 -0.65015447]\n", + " [-0.56323401 0.53377448 -0.6307553 ]\n", + " [-0.58402027 0.53496986 -0.61051419]\n", + " [-0.60457729 0.53571653 -0.58948631]\n", + " [-0.62480829 0.53599597 -0.5677349 ]\n", + " [-0.64462101 0.53579541 -0.54533204]\n", + " [-0.66392827 0.53510819 -0.52235857]\n", + " [-0.4441998 0.6870286 -0.5750463 ]\n", + " [-0.46783335 0.69054895 -0.55161047]\n", + " [-0.4915722 0.69319211 -0.52710671]\n", + " [-0.5152213 0.69491209 -0.50164151]\n", + " [-0.53860319 0.69567458 -0.47533513]\n", + " [-0.56155622 0.69545799 -0.4483222 ]\n", + " [-0.44129951 0.67714047 -0.58884254]\n", + " [-0.45661605 0.65225922 -0.60502867]\n", + " [-0.47192642 0.62605858 -0.62075447]\n", + " [-0.48708203 0.59865737 -0.63589343]\n", + " [-0.5019525 0.57018743 -0.65033067]\n", + " [-0.51642383 0.54079504 -0.66396322]\n", + " [-0.5757651 0.68648157 -0.44411439]\n", + " [-0.59329065 0.66094349 -0.45952139]\n", + " [-0.61047537 0.63401888 -0.47469978]\n", + " [-0.62717468 0.60581781 -0.48952702]\n", + " [-0.64325674 0.57646812 -0.50389014]\n", + " [-0.65860218 0.54611816 -0.51768535]\n", + " [-0.53046873 0.53114836 -0.66066962]\n", + " [-0.55612599 0.53335746 -0.63738035]\n", + " [-0.58164504 0.53494275 -0.61280119]\n", + " [-0.60683691 0.5358579 -0.58703089]\n", + " [-0.63152347 0.53606882 -0.56018597]\n", + " [-0.6555369 0.53555452 -0.53240278]\n", + " [-0.43592284 0.68558702 -0.58304521]\n", + " [-0.43592284 0.68558702 -0.58304521]\n", + " [-0.66382237 0.53519809 -0.52240106]\n", + " [-0.66382237 0.53519809 -0.52240106]\n", + " [-0.44964955 0.67855734 -0.58084009]\n", + " [-0.46515444 0.65360114 -0.59702337]\n", + " [-0.48062604 0.62731771 -0.61275696]\n", + " [-0.49591662 0.59982522 -0.62791433]\n", + " [-0.51089641 0.57125511 -0.64238031]\n", + " [-0.52545166 0.54175367 -0.65605145]\n", + " [-0.47347525 0.6820161 -0.55738248]\n", + " [-0.48947461 0.65687318 -0.57352615]\n", + " [-0.50536882 0.6303832 -0.58925324]\n", + " [-0.52101244 0.60266223 -0.60443716]\n", + " [-0.53627698 0.57384056 -0.61896204]\n", + " [-0.55104885 0.54406479 -0.63272322]\n", + " [-0.49738486 0.68460992 -0.53283915]\n", + " [-0.51382309 0.65931752 -0.54889548]\n", + " [-0.53009164 0.63266175 -0.56457236]\n", + " [-0.54604669 0.60475657 -0.57974348]\n", + " [-0.56156013 0.57573127 -0.59429263]\n", + " [-0.57651768 0.54573289 -0.60811429]\n", + " [-0.52118422 0.68629237 -0.50731627]\n", + " [-0.53800816 0.66088647 -0.52323636]\n", + " [-0.5546047 0.63410481 -0.53881789]\n", + " [-0.57083067 0.60605949 -0.55393523]\n", + " [-0.58655744 0.57687907 -0.56847244]\n", + " [-0.60166941 0.54671108 -0.58232373]\n", + " [-0.54469639 0.6870286 -0.48093405]\n", + " [-0.56185403 0.66154385 -0.49666869]\n", + " [-0.57873252 0.63467539 -0.51210918]\n", + " [-0.5951885 0.606534 -0.52713105]\n", + " [-0.61109216 0.57724775 -0.54161924]\n", + " [-0.62632624 0.54696463 -0.55546838]\n", + " [-0.5677598 0.68679658 -0.45382736]\n", + " [-0.58519878 0.66126657 -0.46932815]\n", + " [-0.60231217 0.63434985 -0.48458263]\n", + " [-0.61895575 0.60615654 -0.49946775]\n", + " [-0.63499824 0.5768145 -0.5138699 ]\n", + " [-0.65032076 0.54647201 -0.5276848 ]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:fp_optics: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:cartToSphere: vec: [[-0.14780803 -0.52171231 0.84021964]\n", + " [-0.16706521 -0.53703212 0.8268529 ]\n", + " [-0.18657104 -0.55222436 0.81255123]\n", + " [-0.20624042 -0.56720478 0.79733533]\n", + " [-0.22598966 -0.58189443 0.78123463]\n", + " [-0.24573572 -0.59621926 0.76428826]\n", + " [-0.26539622 -0.61011033 0.74654553]\n", + " [-0.28489008 -0.6235044 0.72806586]\n", + " [-0.14780803 -0.52171231 0.84021964]\n", + " [-0.16836066 -0.50271443 0.8478991 ]\n", + " [-0.18877417 -0.4834114 0.85479689]\n", + " [-0.20897273 -0.46388625 0.86089485]\n", + " [-0.22888412 -0.44422801 0.86618332]\n", + " [-0.24843999 -0.42453209 0.87066071]\n", + " [-0.26757588 -0.40490107 0.87433304]\n", + " [-0.28623087 -0.38544602 0.87721335]\n", + " [-0.28489008 -0.6235044 0.72806586]\n", + " [-0.30604238 -0.60376192 0.73607717]\n", + " [-0.32685342 -0.58354277 0.74340075]\n", + " [-0.34724511 -0.56293438 0.75001714]\n", + " [-0.36714469 -0.54202939 0.75591594]\n", + " [-0.3864851 -0.52092481 0.76109567]\n", + " [-0.40520486 -0.49972174 0.76556332]\n", + " [-0.42324724 -0.47852599 0.7693339 ]\n", + " [-0.28623087 -0.38544602 0.87721335]\n", + " [-0.30597096 -0.39885881 0.86446135]\n", + " [-0.32580002 -0.41236699 0.85076895]\n", + " [-0.34562869 -0.42588218 0.83616098]\n", + " [-0.36537053 -0.43932465 0.82066938]\n", + " [-0.38494152 -0.45262219 0.804334 ]\n", + " [-0.40426005 -0.46570914 0.78720316]\n", + " [-0.42324724 -0.47852599 0.7693339 ]\n", + " [-0.15623882 -0.52833723 0.83453532]\n", + " [-0.1800192 -0.5470377 0.81752238]\n", + " [-0.20408815 -0.56546235 0.79912475]\n", + " [-0.22829108 -0.58346367 0.77939293]\n", + " [-0.25247511 -0.60090536 0.75839902]\n", + " [-0.2764891 -0.61766284 0.736238 ]\n", + " [-0.15684678 -0.51352399 0.84361852]\n", + " [-0.1819529 -0.49002399 0.85250785]\n", + " [-0.20677419 -0.46614734 0.8602041 ]\n", + " [-0.23117614 -0.44205547 0.86668596]\n", + " [-0.25503294 -0.41792411 0.87195048]\n", + " [-0.27822741 -0.39394555 0.87601165]\n", + " [-0.29408304 -0.6149157 0.73170612]\n", + " [-0.31978797 -0.59038817 0.74106509]\n", + " [-0.34490231 -0.56523102 0.7493706 ]\n", + " [-0.36928983 -0.53961266 0.75659976]\n", + " [-0.39282709 -0.51371166 0.76274977]\n", + " [-0.41540294 -0.48771602 0.76783688]\n", + " [-0.29475796 -0.39134294 0.87176169]\n", + " [-0.31902293 -0.40785904 0.85549715]\n", + " [-0.34333249 -0.42442939 0.83784396]\n", + " [-0.36752632 -0.4409037 0.81885794]\n", + " [-0.39144977 -0.45714891 0.79861252]\n", + " [-0.41495369 -0.47304671 0.77720026]\n", + " [-0.14794379 -0.52170046 0.84020311]\n", + " [-0.14794379 -0.52170046 0.84020311]\n", + " [-0.42312248 -0.47855502 0.76938446]\n", + " [-0.42312248 -0.47855502 0.76938446]\n", + " [-0.16517534 -0.52012713 0.83796472]\n", + " [-0.19036295 -0.49651826 0.84689525]\n", + " [-0.21524527 -0.47251288 0.85463504]\n", + " [-0.23968736 -0.4482725 0.86116301]\n", + " [-0.26356322 -0.42397231 0.86647672]\n", + " [-0.28675579 -0.3998034 0.87059081]\n", + " [-0.18903971 -0.53874274 0.82098737]\n", + " [-0.21442762 -0.51485691 0.830026 ]\n", + " [-0.23945331 -0.4905218 0.83788452]\n", + " [-0.26398074 -0.46589969 0.84454227]\n", + " [-0.28788357 -0.44116507 0.8499979 ]\n", + " [-0.31104526 -0.41650639 0.85426768]\n", + " [-0.21317603 -0.55709808 0.80261928]\n", + " [-0.23871798 -0.53298227 0.81175343]\n", + " [-0.26384214 -0.50836889 0.81972458]\n", + " [-0.28841167 -0.48342163 0.82651209]\n", + " [-0.3123003 -0.45831531 0.83211514]\n", + " [-0.33539236 -0.43323693 0.83655109]\n", + " [-0.23742923 -0.5750461 0.78291081]\n", + " [-0.26307754 -0.55074844 0.79212775]\n", + " [-0.28825398 -0.52590897 0.80020585]\n", + " [-0.31282134 -0.50069306 0.80712407]\n", + " [-0.33665382 -0.4752765 0.81288157]\n", + " [-0.35963694 -0.44984592 0.81749612]\n", + " [-0.26164594 -0.592451 0.76193387]\n", + " [-0.2873518 -0.56802107 0.77122047]\n", + " [-0.31253361 -0.54300914 0.77939965]\n", + " [-0.33705427 -0.51758211 0.78644973]\n", + " [-0.36078881 -0.49191704 0.79236927]\n", + " [-0.38362414 -0.46620091 0.79717578]\n", + " [-0.28567465 -0.60918858 0.73978326]\n", + " [-0.31138858 -0.58467737 0.74912584]\n", + " [-0.33652876 -0.55954817 0.75739966]\n", + " [-0.36095866 -0.5339691 0.76458214]\n", + " [-0.3845544 -0.50811836 0.77067091]\n", + " [-0.40720435 -0.48218368 0.77568261]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:fp_optics: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:cartToSphere: vec: [[-0.79324118 0.50928404 0.33376369]\n", + " [-0.79059014 0.49641549 0.35852321]\n", + " [-0.78724635 0.48289037 0.38348413]\n", + " [-0.78318883 0.4687418 0.40852953]\n", + " [-0.77840456 0.45400696 0.43354818]\n", + " [-0.7728888 0.43872839 0.45843244]\n", + " [-0.76664585 0.42295526 0.48307659]\n", + " [-0.75968961 0.40674383 0.50737673]\n", + " [-0.79324118 0.50928404 0.33376369]\n", + " [-0.81041467 0.48777662 0.32450275]\n", + " [-0.82684507 0.46588379 0.31508652]\n", + " [-0.84247746 0.44369559 0.30555844]\n", + " [-0.85726584 0.42130613 0.29596694]\n", + " [-0.87117325 0.39881333 0.28636532]\n", + " [-0.884172 0.37631846 0.27681093]\n", + " [-0.89624439 0.35392512 0.26736304]\n", + " [-0.75968961 0.40674383 0.50737673]\n", + " [-0.77745996 0.38456428 0.49766086]\n", + " [-0.79447399 0.36211042 0.48753166]\n", + " [-0.81067446 0.33947601 0.47703559]\n", + " [-0.82601546 0.31675594 0.46622326]\n", + " [-0.84046179 0.29404605 0.45514931]\n", + " [-0.85398753 0.27144454 0.44387291]\n", + " [-0.86657468 0.24905385 0.43245868]\n", + " [-0.89624439 0.35392512 0.26736304]\n", + " [-0.89440392 0.34003199 0.29055097]\n", + " [-0.89178677 0.32570723 0.31405598]\n", + " [-0.88837013 0.31098765 0.33776501]\n", + " [-0.88414065 0.2959144 0.361566 ]\n", + " [-0.87909392 0.28053323 0.38535048]\n", + " [-0.87323422 0.26489465 0.40901444]\n", + " [-0.86657468 0.24905385 0.43245868]\n", + " [-0.79222899 0.50368292 0.34449491]\n", + " [-0.78851764 0.48746496 0.37499045]\n", + " [-0.78374394 0.47029344 0.40567168]\n", + " [-0.77788058 0.45223509 0.43633155]\n", + " [-0.77091895 0.43336839 0.46677169]\n", + " [-0.76287093 0.41378682 0.49679816]\n", + " [-0.80080868 0.49991656 0.3298316 ]\n", + " [-0.82136479 0.47328599 0.31837124]\n", + " [-0.84074913 0.44616558 0.30672004]\n", + " [-0.8588733 0.41872692 0.2949651 ]\n", + " [-0.87566931 0.39115023 0.28320445]\n", + " [-0.89109024 0.363623 0.27154464]\n", + " [-0.76755138 0.39716923 0.50311179]\n", + " [-0.78882984 0.36978971 0.49092062]\n", + " [-0.80891412 0.34209105 0.47815444]\n", + " [-0.82771497 0.31424752 0.46490475]\n", + " [-0.84516743 0.28643576 0.45127218]\n", + " [-0.8612271 0.25883822 0.43736788]\n", + " [-0.89549576 0.34799938 0.27745952]\n", + " [-0.89272084 0.33067762 0.30610751]\n", + " [-0.88875558 0.31274348 0.33511944]\n", + " [-0.88357153 0.29427086 0.36428837]\n", + " [-0.8771605 0.27534403 0.39341469]\n", + " [-0.86953407 0.25605793 0.42230893]\n", + " [-0.79329319 0.5091684 0.33381652]\n", + " [-0.79329319 0.5091684 0.33381652]\n", + " [-0.86655736 0.24918439 0.43241818]\n", + " [-0.86655736 0.24918439 0.43241818]\n", + " [-0.79977373 0.49439548 0.34049243]\n", + " [-0.82040787 0.4676683 0.32896398]\n", + " [-0.83986293 0.44045801 0.31721759]\n", + " [-0.85805049 0.41293658 0.30534037]\n", + " [-0.87490245 0.38528441 0.29343078]\n", + " [-0.89037144 0.3576895 0.2815971 ]\n", + " [-0.79613602 0.47808832 0.37094338]\n", + " [-0.81696778 0.45112222 0.35923862]\n", + " [-0.83660362 0.42369485 0.34724208]\n", + " [-0.85495518 0.39597927 0.33504038]\n", + " [-0.87195479 0.36815614 0.32273193]\n", + " [-0.88755469 0.34041381 0.31042731]\n", + " [-0.79142229 0.460845 0.40158766]\n", + " [-0.81241694 0.43369195 0.38973069]\n", + " [-0.83220456 0.40610367 0.3775121 ]\n", + " [-0.85069691 0.37825442 0.3650183 ]\n", + " [-0.86782735 0.3503246 0.35234694]\n", + " [-0.88354883 0.32250178 0.3396087 ]\n", + " [-0.78560495 0.44273266 0.43221829]\n", + " [-0.80672732 0.41544608 0.42023277]\n", + " [-0.82663781 0.38775462 0.40781895]\n", + " [-0.84524816 0.35983338 0.39506389]\n", + " [-0.86249281 0.33186208 0.38206506]\n", + " [-0.87832592 0.3040268 0.36893263]\n", + " [-0.77867491 0.42383045 0.46263715]\n", + " [-0.7998889 0.39646574 0.45054707]\n", + " [-0.81989324 0.36873044 0.43796453]\n", + " [-0.83859941 0.34079988 0.4249782 ]\n", + " [-0.85594253 0.31285262 0.41168633]\n", + " [-0.87187781 0.28507301 0.39819901]\n", + " [-0.77064352 0.4042325 0.49265064]\n", + " [-0.79191188 0.37684668 0.48048117]\n", + " [-0.8119806 0.34912784 0.46775769]\n", + " [-0.83076065 0.32125066 0.45457095]\n", + " [-0.84818722 0.29339231 0.44102086]\n", + " [-0.86421594 0.2657356 0.4272182 ]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:fp_optics: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:cartToSphere: vec: [[-1.69867365e-01 -7.87642778e-01 5.92253267e-01]\n", + " [-1.73481944e-01 -7.70789547e-01 6.13015081e-01]\n", + " [-1.76887733e-01 -7.53012252e-01 6.33784883e-01]\n", + " [-1.80078609e-01 -7.34354538e-01 6.54442593e-01]\n", + " [-1.83047199e-01 -7.14866757e-01 6.74877206e-01]\n", + " [-1.85785101e-01 -6.94606480e-01 6.94986139e-01]\n", + " [-1.88283362e-01 -6.73638928e-01 7.14674730e-01]\n", + " [-1.90533012e-01 -6.52037137e-01 7.33856078e-01]\n", + " [-1.69867365e-01 -7.87642778e-01 5.92253267e-01]\n", + " [-1.43285646e-01 -7.90406123e-01 5.95589947e-01]\n", + " [-1.16029850e-01 -7.92541979e-01 5.98677112e-01]\n", + " [-8.82123783e-02 -7.94016484e-01 6.01461885e-01]\n", + " [-5.99446566e-02 -7.94802209e-01 6.03900726e-01]\n", + " [-3.13379636e-02 -7.94878284e-01 6.05959112e-01]\n", + " [-2.50408664e-03 -7.94230762e-01 6.07611082e-01]\n", + " [ 2.64444619e-02 -7.92853056e-01 6.08838831e-01]\n", + " [-1.90533012e-01 -6.52037137e-01 7.33856078e-01]\n", + " [-1.63127861e-01 -6.53803315e-01 7.38871116e-01]\n", + " [-1.35031237e-01 -6.55077849e-01 7.43397321e-01]\n", + " [-1.06348369e-01 -6.55826512e-01 7.47383175e-01]\n", + " [-7.71855744e-02 -6.56021685e-01 7.50784880e-01]\n", + " [-4.76522313e-02 -6.55642536e-01 7.53566275e-01]\n", + " [-1.78616787e-02 -6.54675364e-01 7.55699099e-01]\n", + " [ 1.20690693e-02 -6.53113993e-01 7.57163424e-01]\n", + " [ 2.64444619e-02 -7.92853056e-01 6.08838831e-01]\n", + " [ 2.45141953e-02 -7.75566724e-01 6.30789434e-01]\n", + " [ 2.25315297e-02 -7.57309505e-01 6.52667331e-01]\n", + " [ 2.05027672e-02 -7.38120106e-01 6.74357728e-01]\n", + " [ 1.84346482e-02 -7.18045038e-01 6.95752461e-01]\n", + " [ 1.63344202e-02 -6.97140062e-01 7.16748854e-01]\n", + " [ 1.42098343e-02 -6.75471041e-01 7.37249587e-01]\n", + " [ 1.20690693e-02 -6.53113993e-01 7.57163424e-01]\n", + " [-1.71378677e-01 -7.80421175e-01 6.01308688e-01]\n", + " [-1.75668083e-01 -7.59138761e-01 6.26776727e-01]\n", + " [-1.79638110e-01 -7.36510933e-01 6.52136332e-01]\n", + " [-1.83275710e-01 -7.12627579e-01 6.77179406e-01]\n", + " [-1.86565465e-01 -6.87594735e-01 7.01717042e-01]\n", + " [-1.89490859e-01 -6.61535720e-01 7.25578187e-01]\n", + " [-1.58380111e-01 -7.88866162e-01 5.93806297e-01]\n", + " [-1.25332886e-01 -7.91835166e-01 5.97736344e-01]\n", + " [-9.13849717e-02 -7.93827353e-01 6.01237824e-01]\n", + " [-5.67418652e-02 -7.94789558e-01 6.04226712e-01]\n", + " [-2.16085010e-02 -7.94683402e-01 6.06639402e-01]\n", + " [ 1.38090129e-02 -7.93486243e-01 6.08431503e-01]\n", + " [-1.78668776e-01 -6.52940341e-01 7.36034224e-01]\n", + " [-1.44602627e-01 -6.54779759e-01 7.41858172e-01]\n", + " [-1.09602434e-01 -6.55845833e-01 7.46895943e-01]\n", + " [-7.38633459e-02 -6.56084976e-01 7.51063720e-01]\n", + " [-3.75868310e-02 -6.55458869e-01 7.54294970e-01]\n", + " [-9.83123919e-04 -6.53945397e-01 7.56541110e-01]\n", + " [ 2.55102378e-02 -7.85443720e-01 6.18407139e-01]\n", + " [ 2.31075125e-02 -7.63600207e-01 6.45275729e-01]\n", + " [ 2.06324869e-02 -7.40336063e-01 6.71920244e-01]\n", + " [ 1.80973871e-02 -7.15733588e-01 6.98138894e-01]\n", + " [ 1.55155617e-02 -6.89895538e-01 7.23742644e-01]\n", + " [ 1.29014690e-02 -6.62947409e-01 7.48554797e-01]\n", + " [-1.69790450e-01 -7.87597239e-01 5.92335878e-01]\n", + " [-1.69790450e-01 -7.87597239e-01 5.92335878e-01]\n", + " [ 1.19739519e-02 -6.53197876e-01 7.57092570e-01]\n", + " [ 1.19739519e-02 -6.53197876e-01 7.57092570e-01]\n", + " [-1.59922872e-01 -7.81671459e-01 6.02838622e-01]\n", + " [-1.26746420e-01 -7.84593261e-01 6.06917424e-01]\n", + " [-9.26680021e-02 -7.86546391e-01 6.10538629e-01]\n", + " [-5.78922769e-02 -7.87477300e-01 6.13618763e-01]\n", + " [-2.26237482e-02 -7.87347131e-01 6.16094686e-01]\n", + " [ 1.29313336e-02 -7.86132829e-01 6.17922289e-01]\n", + " [-1.64100779e-01 -7.60330211e-01 6.28465516e-01]\n", + " [-1.30606852e-01 -7.63103523e-01 6.32941437e-01]\n", + " [-9.62062851e-02 -7.64934518e-01 6.36882669e-01]\n", + " [-6.11011931e-02 -7.65768556e-01 6.40207125e-01]\n", + " [-2.54950084e-02 -7.65565560e-01 6.42852532e-01]\n", + " [ 1.04053112e-02 -7.64301489e-01 6.44775126e-01]\n", + " [-1.67984659e-01 -7.37634223e-01 6.53970112e-01]\n", + " [-1.34244279e-01 -7.40235733e-01 6.58809178e-01]\n", + " [-9.95911918e-02 -7.41925915e-01 6.63044140e-01]\n", + " [-6.42250696e-02 -7.42649350e-01 6.66593641e-01]\n", + " [-2.83485568e-02 -7.42365211e-01 6.69395438e-01]\n", + " [ 7.83038260e-03 -7.41048920e-01 6.71405379e-01]\n", + " [-1.71560916e-01 -7.13672829e-01 6.79145010e-01]\n", + " [-1.37643681e-01 -7.16077451e-01 6.84315206e-01]\n", + " [-1.02806917e-01 -7.17606315e-01 6.88819218e-01]\n", + " [-6.72482452e-02 -7.18203807e-01 6.92575602e-01]\n", + " [-3.11697842e-02 -7.17829036e-01 6.95521330e-01]\n", + " [ 5.21945591e-03 -7.16457481e-01 6.97611235e-01]\n", + " [-1.74813526e-01 -6.88551738e-01 7.03801631e-01]\n", + " [-1.40787654e-01 -6.90733457e-01 7.09271547e-01]\n", + " [-1.05835507e-01 -6.92079662e-01 7.14020019e-01]\n", + " [-7.01532109e-02 -6.92535220e-01 7.17964829e-01]\n", + " [-3.39425406e-02 -6.92059918e-01 7.21041590e-01]\n", + " [ 2.58667348e-03 -6.90629912e-01 7.23203729e-01]\n", + " [-1.77725460e-01 -6.62394317e-01 7.27768802e-01]\n", + " [-1.43658078e-01 -6.64327402e-01 7.33506278e-01]\n", + " [-1.08658472e-01 -6.65470045e-01 7.38473395e-01]\n", + " [-7.29219226e-02 -6.65768185e-01 7.42586774e-01]\n", + " [-3.66499665e-02 -6.65182925e-01 7.45780435e-01]\n", + " [-5.28247068e-05 -6.63691630e-01 7.48006295e-01]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:fp_optics: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:cartToSphere: vec: [[-1.29613895e-01 1.78150710e-01 9.75429425e-01]\n", + " [-1.23556107e-01 1.51309092e-01 9.80734137e-01]\n", + " [-1.17277585e-01 1.23812903e-01 9.85350868e-01]\n", + " [-1.10797993e-01 9.57650572e-02 9.89218307e-01]\n", + " [-1.04138362e-01 6.72705288e-02 9.92285180e-01]\n", + " [-9.73214128e-02 3.84375493e-02 9.94510481e-01]\n", + " [-9.03716322e-02 9.37773004e-03 9.95863960e-01]\n", + " [-8.33151529e-02 -1.97946319e-02 9.96326632e-01]\n", + " [-1.29613895e-01 1.78150710e-01 9.75429425e-01]\n", + " [-1.57648907e-01 1.71181159e-01 9.72545029e-01]\n", + " [-1.85441266e-01 1.63996117e-01 9.68873991e-01]\n", + " [-2.12883635e-01 1.56623023e-01 9.64442734e-01]\n", + " [-2.39870661e-01 1.49089258e-01 9.59288517e-01]\n", + " [-2.66298753e-01 1.41421595e-01 9.53459442e-01]\n", + " [-2.92065267e-01 1.33645678e-01 9.47014632e-01]\n", + " [-3.17067190e-01 1.25785660e-01 9.40024662e-01]\n", + " [-8.33151529e-02 -1.97946319e-02 9.96326632e-01]\n", + " [-1.12339491e-01 -2.68579245e-02 9.93306846e-01]\n", + " [-1.41169954e-01 -3.38766291e-02 9.89405588e-01]\n", + " [-1.69694318e-01 -4.08234437e-02 9.84650844e-01]\n", + " [-1.97804113e-01 -4.76719896e-02 9.79081669e-01]\n", + " [-2.25395340e-01 -5.43969984e-02 9.72747607e-01]\n", + " [-2.52368396e-01 -6.09743164e-02 9.65708199e-01]\n", + " [-2.78627001e-01 -6.73806683e-02 9.58032797e-01]\n", + " [-3.17067190e-01 1.25785660e-01 9.40024662e-01]\n", + " [-3.12858023e-01 9.94230333e-02 9.44581875e-01]\n", + " [-3.08185330e-01 7.24675976e-02 9.48562201e-01]\n", + " [-3.03071063e-01 4.50289343e-02 9.51903528e-01]\n", + " [-2.97536346e-01 1.72156572e-02 9.54555260e-01]\n", + " [-2.91602394e-01 -1.08634697e-02 9.56477929e-01]\n", + " [-2.85291370e-01 -3.90989710e-02 9.57642994e-01]\n", + " [-2.78627001e-01 -6.73806683e-02 9.58032797e-01]\n", + " [-1.27097575e-01 1.66511188e-01 9.77814006e-01]\n", + " [-1.19523226e-01 1.33160717e-01 9.83860977e-01]\n", + " [-1.11636557e-01 9.89292272e-02 9.88812564e-01]\n", + " [-1.03475689e-01 6.40090174e-02 9.92570213e-01]\n", + " [-9.50824535e-02 2.85993506e-02 9.95058493e-01]\n", + " [-8.65026194e-02 -7.09312920e-03 9.96226372e-01]\n", + " [-1.41840224e-01 1.75049562e-01 9.74288972e-01]\n", + " [-1.76051456e-01 1.66359198e-01 9.70221883e-01]\n", + " [-2.09791354e-01 1.57372579e-01 9.64998165e-01]\n", + " [-2.42865132e-01 1.48140159e-01 9.58681918e-01]\n", + " [-2.75081990e-01 1.38711173e-01 9.51361713e-01]\n", + " [-3.06252894e-01 1.29132221e-01 9.43151120e-01]\n", + " [-9.60106699e-02 -2.27781507e-02 9.95119645e-01]\n", + " [-1.31466720e-01 -3.14085791e-02 9.90822892e-01]\n", + " [-1.66519642e-01 -3.99450140e-02 9.85228707e-01]\n", + " [-2.00968135e-01 -4.83384919e-02 9.78404415e-01]\n", + " [-2.34620732e-01 -5.65424902e-02 9.70441167e-01]\n", + " [-2.67295545e-01 -6.45129236e-02 9.61452638e-01]\n", + " [-3.15205912e-01 1.14398144e-01 9.42103125e-01]\n", + " [-3.09731420e-01 8.16746339e-02 9.47309718e-01]\n", + " [-3.03582801e-01 4.81697050e-02 9.51586655e-01]\n", + " [-2.96799241e-01 1.40836397e-02 9.54836039e-01]\n", + " [-2.89419891e-01 -2.03832689e-02 9.56985188e-01]\n", + " [-2.81486183e-01 -5.50291667e-02 9.57986075e-01]\n", + " [-1.29689741e-01 1.78036717e-01 9.75440156e-01]\n", + " [-1.29689741e-01 1.78036717e-01 9.75440156e-01]\n", + " [-2.78561895e-01 -6.72624086e-02 9.58060039e-01]\n", + " [-2.78561895e-01 -6.72624086e-02 9.58060039e-01]\n", + " [-1.39296033e-01 1.63514135e-01 9.76657434e-01]\n", + " [-1.73645651e-01 1.54811240e-01 9.72563966e-01]\n", + " [-2.07527119e-01 1.45835304e-01 9.67297554e-01]\n", + " [-2.40745471e-01 1.36637237e-01 9.60922413e-01]\n", + " [-2.73110375e-01 1.27266822e-01 9.53527073e-01]\n", + " [-3.04433969e-01 1.17771261e-01 9.45224782e-01]\n", + " [-1.31842484e-01 1.30139352e-01 9.82690851e-01]\n", + " [-1.66541618e-01 1.21411891e-01 9.78531063e-01]\n", + " [-2.00781782e-01 1.12477505e-01 9.73157483e-01]\n", + " [-2.34367025e-01 1.03387977e-01 9.66634897e-01]\n", + " [-2.67107781e-01 9.41941003e-02 9.59052087e-01]\n", + " [-2.98819022e-01 8.49442602e-02 9.50521786e-01]\n", + " [-1.24053879e-01 9.58892120e-02 9.87631457e-01]\n", + " [-1.59038790e-01 8.71541809e-02 9.83417923e-01]\n", + " [-1.93574747e-01 7.82794460e-02 9.77957640e-01]\n", + " [-2.27464377e-01 6.93170044e-02 9.71316174e-01]\n", + " [-2.60518154e-01 6.03177804e-02 9.63582927e-01]\n", + " [-2.92552989e-01 5.13304066e-02 9.54870639e-01]\n", + " [-1.15967682e-01 6.09562002e-02 9.91380774e-01]\n", + " [-1.51172989e-01 5.22313137e-02 9.87126444e-01]\n", + " [-1.85940802e-01 4.34353318e-02 9.81600423e-01]\n", + " [-2.20072233e-01 3.46198591e-02 9.74869057e-01]\n", + " [-2.53377303e-01 2.58351384e-02 9.67022486e-01]\n", + " [-2.85674004e-01 1.71291353e-02 9.58173761e-01]\n", + " [-1.07625041e-01 2.55397286e-02 9.93863458e-01]\n", + " [-1.42983523e-01 1.68429662e-02 9.89581743e-01]\n", + " [-1.77917792e-01 8.14489981e-03 9.84011646e-01]\n", + " [-2.12227637e-01 -5.03754831e-04 9.77220127e-01]\n", + " [-2.45722421e-01 -9.05407342e-03 9.69297950e-01]\n", + " [-2.78220512e-01 -1.74594746e-02 9.60358534e-01]\n", + " [-9.90711792e-02 -1.01534720e-02 9.95028547e-01]\n", + " [-1.34514061e-01 -1.88042876e-02 9.90733247e-01]\n", + " [-1.69547971e-01 -2.73859823e-02 9.85141357e-01]\n", + " [-2.03971799e-01 -3.58490917e-02 9.78320166e-01]\n", + " [-2.37594265e-01 -4.41464259e-02 9.70360788e-01]\n", + " [-2.70233615e-01 -5.22332179e-02 9.61376869e-01]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:fp_optics: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:cartToSphere: vec: [[-0.02755092 -0.077164 0.99663768]\n", + " [-0.02543087 -0.10497622 0.99414952]\n", + " [-0.02324705 -0.13325852 0.99080863]\n", + " [-0.02100715 -0.1618935 0.98658461]\n", + " [-0.0187191 -0.19076437 0.98145736]\n", + " [-0.01639122 -0.21975384 0.97541764]\n", + " [-0.01403225 -0.24874407 0.96846759]\n", + " [-0.01165129 -0.27761747 0.96062104]\n", + " [-0.02755092 -0.077164 0.99663768]\n", + " [-0.05645998 -0.07931869 0.99524912]\n", + " [-0.08522093 -0.08149845 0.99302336]\n", + " [-0.11372183 -0.08369853 0.98998076]\n", + " [-0.14185187 -0.08591695 0.98615228]\n", + " [-0.16950124 -0.088155 0.98157935]\n", + " [-0.19656039 -0.09041798 0.97631378]\n", + " [-0.22291875 -0.09271576 0.97041796]\n", + " [-0.01165129 -0.27761747 0.96062104]\n", + " [-0.04156817 -0.27969074 0.95918986]\n", + " [-0.07135087 -0.28150883 0.9569022 ]\n", + " [-0.10088254 -0.2830682 0.95377938]\n", + " [-0.13004937 -0.28436867 0.94985347]\n", + " [-0.15874133 -0.28541337 0.94516686]\n", + " [-0.18685217 -0.28620863 0.93977172]\n", + " [-0.21427829 -0.28676385 0.93372978]\n", + " [-0.22291875 -0.09271576 0.97041796]\n", + " [-0.22260759 -0.11961962 0.96754173]\n", + " [-0.22197547 -0.14699737 0.96390802]\n", + " [-0.22103143 -0.17472458 0.95948759]\n", + " [-0.21978295 -0.20268104 0.95426194]\n", + " [-0.21823671 -0.23074946 0.9482233 ]\n", + " [-0.2163994 -0.25881474 0.94137465]\n", + " [-0.21427829 -0.28676385 0.93372978]\n", + " [-0.02673427 -0.08923216 0.995652 ]\n", + " [-0.02409307 -0.12364995 0.99203337]\n", + " [-0.02136352 -0.15865698 0.98710261]\n", + " [-0.01856011 -0.1940381 0.9808184 ]\n", + " [-0.01569815 -0.22957739 0.97316381]\n", + " [-0.01279388 -0.26505793 0.96414761]\n", + " [-0.04015965 -0.07819415 0.99612895]\n", + " [-0.07550626 -0.08085244 0.99386201]\n", + " [-0.11051903 -0.08354319 0.99035654]\n", + " [-0.14499351 -0.08626157 0.98566517]\n", + " [-0.17872744 -0.08901006 0.97986413]\n", + " [-0.21151881 -0.09180027 0.97305319]\n", + " [-0.02471224 -0.27845404 0.96013158]\n", + " [-0.0613029 -0.28082423 0.95779941]\n", + " [-0.09757561 -0.28280744 0.95420069]\n", + " [-0.13331953 -0.28440193 0.94939004]\n", + " [-0.16833211 -0.28561345 0.94344542]\n", + " [-0.20241894 -0.28645494 0.93646684]\n", + " [-0.22273398 -0.10437198 0.96927605]\n", + " [-0.22213445 -0.13768123 0.96524617]\n", + " [-0.2210622 -0.17157809 0.96004816]\n", + " [-0.21953159 -0.2058396 0.95364351]\n", + " [-0.21755503 -0.24024975 0.9460179 ]\n", + " [-0.21514504 -0.27459748 0.93718133]\n", + " [-0.02764278 -0.07726549 0.99662727]\n", + " [-0.02764278 -0.07726549 0.99662727]\n", + " [-0.21419351 -0.28666709 0.93377894]\n", + " [-0.21419351 -0.28666709 0.93377894]\n", + " [-0.03930057 -0.09016237 0.99515135]\n", + " [-0.074788 -0.09280688 0.99287141]\n", + " [-0.10994229 -0.09545684 0.98934356]\n", + " [-0.14455871 -0.09810704 0.98462063]\n", + " [-0.17843544 -0.10075935 0.97877901]\n", + " [-0.21137153 -0.10342454 0.97191843]\n", + " [-0.0367838 -0.12458343 0.99152707]\n", + " [-0.07262596 -0.12718642 0.9892164 ]\n", + " [-0.10813662 -0.12971947 0.98563651]\n", + " [-0.14310994 -0.13217681 0.98084088]\n", + " [-0.17734467 -0.13455929 0.97490649]\n", + " [-0.21064259 -0.13687599 0.96793319]\n", + " [-0.03415522 -0.15959204 0.98659201]\n", + " [-0.07028579 -0.16214917 0.9842599 ]\n", + " [-0.10608653 -0.16456199 0.9806452 ]\n", + " [-0.14135013 -0.16682489 0.97580203]\n", + " [-0.17587535 -0.16893874 0.969808 ]\n", + " [-0.20946588 -0.1709121 0.96276326]\n", + " [-0.03142864 -0.19497299 0.98030494]\n", + " [-0.06777953 -0.19747954 0.97796103]\n", + " [-0.10380288 -0.19976807 0.97432935]\n", + " [-0.13928986 -0.20183376 0.96946453]\n", + " [-0.1740389 -0.20367836 0.96344465]\n", + " [-0.20785484 -0.20531097 0.9563701 ]\n", + " [-0.02861868 -0.23051032 0.97264894]\n", + " [-0.06511993 -0.23296167 0.97030318]\n", + " [-0.1012969 -0.23512217 0.9666729 ]\n", + " [-0.13693956 -0.23698818 0.96181295]\n", + " [-0.17184584 -0.23856295 0.95580161]\n", + " [-0.20582119 -0.23985693 0.94873932]\n", + " [-0.02574101 -0.26598712 0.96363284]\n", + " [-0.0623211 -0.26837914 0.96129533]\n", + " [-0.09858138 -0.27040889 0.9576851 ]\n", + " [-0.13431109 -0.27207413 0.95285686]\n", + " [-0.16930779 -0.27337995 0.94688873]\n", + " [-0.20337707 -0.27433861 0.9398809 ]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:fp_optics: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:cartToSphere: vec: [[-0.82199985 -0.0229821 -0.56902379]\n", + " [-0.83468836 -0.03665337 -0.54950148]\n", + " [-0.8469657 -0.05070557 -0.52922401]\n", + " [-0.85874939 -0.0650719 -0.50824712]\n", + " [-0.86996439 -0.07968382 -0.48663379]\n", + " [-0.88054397 -0.09447378 -0.46445346]\n", + " [-0.89043006 -0.10937641 -0.44178174]\n", + " [-0.89957348 -0.12432887 -0.41870023]\n", + " [-0.82199985 -0.0229821 -0.56902379]\n", + " [-0.81223063 -0.04470638 -0.58162079]\n", + " [-0.80171127 -0.06694377 -0.59395082]\n", + " [-0.79044534 -0.08959601 -0.60594448]\n", + " [-0.77844531 -0.11256236 -0.61753755]\n", + " [-0.7657327 -0.1357427 -0.62867109]\n", + " [-0.75233833 -0.15903893 -0.63929153]\n", + " [-0.73830224 -0.18235531 -0.6493507 ]\n", + " [-0.89957348 -0.12432887 -0.41870023]\n", + " [-0.89039142 -0.1479097 -0.43049487]\n", + " [-0.88030625 -0.17185763 -0.44218305]\n", + " [-0.86931914 -0.19606768 -0.45369781]\n", + " [-0.85743954 -0.22043871 -0.46497765]\n", + " [-0.84468618 -0.24487147 -0.47596556]\n", + " [-0.8310883 -0.26926665 -0.48660837]\n", + " [-0.81668645 -0.29352441 -0.49685678]\n", + " [-0.73830224 -0.18235531 -0.6493507 ]\n", + " [-0.75094631 -0.19811616 -0.62994414]\n", + " [-0.76323212 -0.21403563 -0.60964374]\n", + " [-0.77507716 -0.23003982 -0.5885041 ]\n", + " [-0.7864076 -0.24605844 -0.5665848 ]\n", + " [-0.79715728 -0.26202334 -0.54395224]\n", + " [-0.80726732 -0.27786742 -0.52068144]\n", + " [-0.81668645 -0.29352441 -0.49685678]\n", + " [-0.82754512 -0.02896578 -0.56065146]\n", + " [-0.8428308 -0.04598714 -0.53621024]\n", + " [-0.85741619 -0.06351455 -0.51068912]\n", + " [-0.87115997 -0.08142233 -0.48420111]\n", + " [-0.88393932 -0.09958624 -0.45687401]\n", + " [-0.89565101 -0.11788699 -0.42884953]\n", + " [-0.81787667 -0.03243143 -0.57447885]\n", + " [-0.80539935 -0.0594154 -0.58974714]\n", + " [-0.79179773 -0.08707287 -0.60454501]\n", + " [-0.77709101 -0.11521914 -0.61875206]\n", + " [-0.76131889 -0.14367008 -0.6322598 ]\n", + " [-0.74454191 -0.17224603 -0.64497182]\n", + " [-0.89565077 -0.13450678 -0.42393115]\n", + " [-0.88378987 -0.16366731 -0.43832463]\n", + " [-0.87057277 -0.19327453 -0.45249089]\n", + " [-0.85601345 -0.22314074 -0.46631448]\n", + " [-0.84014653 -0.25308295 -0.47969035]\n", + " [-0.82303051 -0.28291811 -0.4925222 ]\n", + " [-0.74390271 -0.1891227 -0.64096908]\n", + " [-0.75916971 -0.20855462 -0.6165763 ]\n", + " [-0.77381553 -0.22815107 -0.59089476]\n", + " [-0.78770067 -0.24778119 -0.56403204]\n", + " [-0.8007033 -0.26731942 -0.53611057]\n", + " [-0.81271813 -0.28664252 -0.50727242]\n", + " [-0.82201171 -0.02310144 -0.56900182]\n", + " [-0.82201171 -0.02310144 -0.56900182]\n", + " [-0.81670603 -0.29338866 -0.49690477]\n", + " [-0.81670603 -0.29338866 -0.49690477]\n", + " [-0.82342795 -0.03836624 -0.56612229]\n", + " [-0.81098776 -0.06554333 -0.58138019]\n", + " [-0.79740277 -0.09338065 -0.59617856]\n", + " [-0.78269177 -0.12169114 -0.61039729]\n", + " [-0.76689429 -0.15028993 -0.62392794]\n", + " [-0.75007093 -0.17899719 -0.63667386]\n", + " [-0.8387641 -0.05557575 -0.54165129]\n", + " [-0.82643077 -0.08326272 -0.55684782]\n", + " [-0.81289825 -0.11156862 -0.57161953]\n", + " [-0.79818446 -0.14030295 -0.58584695]\n", + " [-0.78232851 -0.16928066 -0.59942152]\n", + " [-0.76539123 -0.19832202 -0.61224557]\n", + " [-0.85339896 -0.07327085 -0.51608293]\n", + " [-0.8411737 -0.10140588 -0.53117196]\n", + " [-0.82770124 -0.13011686 -0.54587568]\n", + " [-0.81299872 -0.15921314 -0.56007522]\n", + " [-0.79710458 -0.18851087 -0.57366187]\n", + " [-0.78007965 -0.21783048 -0.58653698]\n", + " [-0.8671908 -0.09132353 -0.48953052]\n", + " [-0.85507431 -0.11984135 -0.50446603]\n", + " [-0.84166967 -0.14889351 -0.51905962]\n", + " [-0.82699303 -0.17829065 -0.53319319]\n", + " [-0.81108179 -0.20785013 -0.54675831]\n", + " [-0.79399639 -0.23739197 -0.55965596]\n", + " [-0.8800166 -0.10960883 -0.46212194]\n", + " [-0.86800917 -0.1384439 -0.4768578 ]\n", + " [-0.85467988 -0.16777431 -0.49129836]\n", + " [-0.84004379 -0.19741199 -0.50532657]\n", + " [-0.824137 -0.22717476 -0.51883507]\n", + " [-0.80701922 -0.25688155 -0.53172535]\n", + " [-0.89177289 -0.12800733 -0.43399913]\n", + " [-0.879874 -0.15709447 -0.44848977]\n", + " [-0.86662664 -0.18664061 -0.46273485]\n", + " [-0.852045 -0.2164581 -0.47661851]\n", + " [-0.83616401 -0.24636433 -0.49003506]\n", + " [-0.81904248 -0.27617675 -0.50288748]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:fp_optics: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:cartToSphere: vec: [[ 0.58336746 -0.78893356 0.19304467]\n", + " [ 0.57066673 -0.79208919 0.21664304]\n", + " [ 0.55737662 -0.79462094 0.24064261]\n", + " [ 0.54351962 -0.79649391 0.26492241]\n", + " [ 0.52912535 -0.79767968 0.28936742]\n", + " [ 0.51423074 -0.79815647 0.31386778]\n", + " [ 0.49888005 -0.79790952 0.33831804]\n", + " [ 0.48312457 -0.79693142 0.36261682]\n", + " [ 0.58336746 -0.78893356 0.19304467]\n", + " [ 0.60229846 -0.77219564 0.20236221]\n", + " [ 0.62112445 -0.75452922 0.21187276]\n", + " [ 0.63974322 -0.7359767 0.22151051]\n", + " [ 0.65805933 -0.71658714 0.23121589]\n", + " [ 0.67598369 -0.69641681 0.240935 ]\n", + " [ 0.69343336 -0.67552968 0.25061889]\n", + " [ 0.71033171 -0.6539976 0.26022298]\n", + " [ 0.48312457 -0.79693142 0.36261682]\n", + " [ 0.50199953 -0.77981225 0.37401782]\n", + " [ 0.52085549 -0.76171621 0.38535435]\n", + " [ 0.53959455 -0.74268079 0.39656394]\n", + " [ 0.55812423 -0.72275109 0.40758828]\n", + " [ 0.57635644 -0.70198127 0.41837251]\n", + " [ 0.59420717 -0.68043555 0.42886513]\n", + " [ 0.61159709 -0.65818839 0.43901827]\n", + " [ 0.71033171 -0.6539976 0.26022298]\n", + " [ 0.69848139 -0.65621046 0.28550233]\n", + " [ 0.6858343 -0.65793279 0.31105588]\n", + " [ 0.67240986 -0.65912934 0.3367692 ]\n", + " [ 0.65823467 -0.65977145 0.36253103]\n", + " [ 0.64334356 -0.65983722 0.38823177]\n", + " [ 0.62778016 -0.65931193 0.41376303]\n", + " [ 0.61159709 -0.65818839 0.43901827]\n", + " [ 0.57796847 -0.79032788 0.20330835]\n", + " [ 0.56200398 -0.79378027 0.23251755]\n", + " [ 0.5451756 -0.79626022 0.26220837]\n", + " [ 0.52753489 -0.79771272 0.29216664]\n", + " [ 0.50914986 -0.79809775 0.32219002]\n", + " [ 0.49010489 -0.79739111 0.35208608]\n", + " [ 0.59158528 -0.78176405 0.1971594 ]\n", + " [ 0.61473031 -0.76062017 0.20871896]\n", + " [ 0.63761531 -0.73812297 0.22050215]\n", + " [ 0.66006179 -0.71436 0.2323967 ]\n", + " [ 0.68190572 -0.6894349 0.24430332]\n", + " [ 0.70299701 -0.66346869 0.25613374]\n", + " [ 0.49140463 -0.78959426 0.36750836]\n", + " [ 0.51453824 -0.76795171 0.38144536]\n", + " [ 0.53754527 -0.74487836 0.39522311]\n", + " [ 0.56025329 -0.72045398 0.40873257]\n", + " [ 0.58250006 -0.69477841 0.42187277]\n", + " [ 0.60413286 -0.66797416 0.43455035]\n", + " [ 0.70520689 -0.65509513 0.27117082]\n", + " [ 0.69014464 -0.65748285 0.30235192]\n", + " [ 0.67390428 -0.65909789 0.33383078]\n", + " [ 0.65653177 -0.65988474 0.36540138]\n", + " [ 0.63809125 -0.65980316 0.39686188]\n", + " [ 0.61866684 -0.65882912 0.42801348]\n", + " [ 0.58338985 -0.78888976 0.193156 ]\n", + " [ 0.58338985 -0.78888976 0.193156 ]\n", + " [ 0.61159482 -0.65827044 0.4388984 ]\n", + " [ 0.61159482 -0.65827044 0.4388984 ]\n", + " [ 0.58618494 -0.78318521 0.20738405]\n", + " [ 0.60939165 -0.76198712 0.21912884]\n", + " [ 0.63234176 -0.73942619 0.23106883]\n", + " [ 0.65485709 -0.71558939 0.24309263]\n", + " [ 0.67677354 -0.69058 0.25510163]\n", + " [ 0.69794066 -0.66451908 0.26700792]\n", + " [ 0.57026345 -0.78659495 0.23678679]\n", + " [ 0.5936004 -0.76526093 0.24902667]\n", + " [ 0.61669435 -0.74254025 0.26138487]\n", + " [ 0.63936801 -0.71851806 0.27375236]\n", + " [ 0.66145709 -0.69329661 0.28603203]\n", + " [ 0.68281 -0.66699712 0.29813646]\n", + " [ 0.55345346 -0.78904009 0.26665521]\n", + " [ 0.5768545 -0.76759569 0.27934878]\n", + " [ 0.60003157 -0.74474554 0.29208934]\n", + " [ 0.62280838 -0.7205729 0.30476946]\n", + " [ 0.64502054 -0.69517907 0.31729257]\n", + " [ 0.66651536 -0.66868556 0.32957078]\n", + " [ 0.53580652 -0.79046526 0.29677609]\n", + " [ 0.55920524 -0.76893494 0.30988476]\n", + " [ 0.58240399 -0.74598478 0.32297414]\n", + " [ 0.60522755 -0.72169639 0.33593738]\n", + " [ 0.62751175 -0.69617031 0.34867736]\n", + " [ 0.64910314 -0.66952841 0.361105 ]\n", + " [ 0.51739079 -0.79082993 0.32694769]\n", + " [ 0.54072099 -0.76923692 0.34043411]\n", + " [ 0.56387966 -0.74621543 0.35383932]\n", + " [ 0.5866928 -0.72184587 0.367056 ]\n", + " [ 0.60899677 -0.69622828 0.37998569]\n", + " [ 0.630638 -0.66948485 0.39253758]\n", + " [ 0.498291 -0.79010954 0.35697759]\n", + " [ 0.52148727 -0.76847607 0.37080394]\n", + " [ 0.54454454 -0.74541133 0.38449082]\n", + " [ 0.56728999 -0.72099515 0.39792973]\n", + " [ 0.58956096 -0.69532735 0.41102036]\n", + " [ 0.6112044 -0.6685304 0.42367003]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:fp_optics: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:cartToSphere: vec: [[-0.29325754 -0.42543233 0.85615849]\n", + " [-0.27761848 -0.4081397 0.86968383]\n", + " [-0.26132311 -0.39027897 0.88283212]\n", + " [-0.24444145 -0.37189969 0.89551047]\n", + " [-0.22704339 -0.35305641 0.90763565]\n", + " [-0.20919882 -0.33380888 0.91913409]\n", + " [-0.19097813 -0.31422213 0.92994183]\n", + " [-0.17245258 -0.29436626 0.94000458]\n", + " [-0.29325754 -0.42543233 0.85615849]\n", + " [-0.27431283 -0.44425526 0.85287147]\n", + " [-0.25465363 -0.46306298 0.84895477]\n", + " [-0.23436305 -0.48176352 0.84438017]\n", + " [-0.21352407 -0.50026911 0.83912948]\n", + " [-0.19221977 -0.5184961 0.83319467]\n", + " [-0.17053378 -0.53636482 0.82657789]\n", + " [-0.14855068 -0.55379993 0.81929136]\n", + " [-0.17245258 -0.29436626 0.94000458]\n", + " [-0.15163738 -0.31278946 0.93764005]\n", + " [-0.13027076 -0.33133701 0.93447596]\n", + " [-0.1084322 -0.34992045 0.93048274]\n", + " [-0.08620195 -0.36845499 0.9256404 ]\n", + " [-0.06366252 -0.38685841 0.91993894]\n", + " [-0.04089955 -0.40505063 0.91337901]\n", + " [-0.01800174 -0.42295406 0.90597229]\n", + " [-0.14855068 -0.55379993 0.81929136]\n", + " [-0.13094648 -0.53713789 0.83326821]\n", + " [-0.11287969 -0.51971296 0.846851 ]\n", + " [-0.09441731 -0.5015709 0.85994884]\n", + " [-0.07562714 -0.48276276 0.8724796 ]\n", + " [-0.05657904 -0.46334612 0.88436937]\n", + " [-0.03734555 -0.44338584 0.89555251]\n", + " [-0.01800174 -0.42295406 0.90597229]\n", + " [-0.28646 -0.41802986 0.86208567]\n", + " [-0.26684107 -0.39644804 0.87842176]\n", + " [-0.24630605 -0.37406145 0.89409807]\n", + " [-0.22498363 -0.3509684 0.9089574 ]\n", + " [-0.20300257 -0.32727892 0.92286427]\n", + " [-0.1804928 -0.30311485 0.93570494]\n", + " [-0.28503791 -0.43357696 0.85484759]\n", + " [-0.26132678 -0.45664824 0.85040032]\n", + " [-0.23662513 -0.47960488 0.84497793]\n", + " [-0.21108582 -0.5022836 0.83854276]\n", + " [-0.18486181 -0.52453035 0.83108004]\n", + " [-0.15810745 -0.54620026 0.8225979 ]\n", + " [-0.16351404 -0.30244623 0.93903644]\n", + " [-0.13762271 -0.32512143 0.93560464]\n", + " [-0.11098197 -0.3478949 0.93094153]\n", + " [-0.08373915 -0.3706091 0.9250063 ]\n", + " [-0.05604627 -0.39311262 0.91778063]\n", + " [-0.02806228 -0.41525902 0.90927028]\n", + " [-0.14101226 -0.54657274 0.82545368]\n", + " [-0.11911777 -0.52563259 0.84233089]\n", + " [-0.09659486 -0.50359162 0.85852485]\n", + " [-0.07356795 -0.48054154 0.87388076]\n", + " [-0.05016572 -0.45658845 0.88826257]\n", + " [-0.02652278 -0.43185482 0.90155308]\n", + " [-0.29314178 -0.4254385 0.85619506]\n", + " [-0.29314178 -0.4254385 0.85619506]\n", + " [-0.01814642 -0.422964 0.90596477]\n", + " [-0.01814642 -0.422964 0.90596477]\n", + " [-0.27828799 -0.42617716 0.86077222]\n", + " [-0.25439419 -0.44928022 0.85640579]\n", + " [-0.22952524 -0.47227872 0.85104112]\n", + " [-0.20383347 -0.49500948 0.84464048]\n", + " [-0.17747135 -0.51731831 0.83718915]\n", + " [-0.15059309 -0.53905997 0.8286954 ]\n", + " [-0.25848835 -0.4046058 0.87719891]\n", + " [-0.23411254 -0.42775906 0.8730484 ]\n", + " [-0.20880488 -0.45083884 0.86783919]\n", + " [-0.18271585 -0.47368247 0.86153342]\n", + " [-0.15599651 -0.49613546 0.85411632]\n", + " [-0.12880091 -0.51805141 0.84559627]\n", + " [-0.23779087 -0.38220784 0.89295726]\n", + " [-0.21298463 -0.40535174 0.88900367]\n", + " [-0.18728907 -0.42845676 0.88393869]\n", + " [-0.16085273 -0.45136104 0.87772411]\n", + " [-0.13382575 -0.47391005 0.87034472]\n", + " [-0.10636258 -0.49595646 0.86180867]\n", + " [-0.21632381 -0.35908148 0.90789014]\n", + " [-0.19113698 -0.38215581 0.90411481]\n", + " [-0.16510258 -0.40522904 0.89918328]\n", + " [-0.13836776 -0.42814039 0.89305664]\n", + " [-0.11108245 -0.45073576 0.8857189 ]\n", + " [-0.08340215 -0.47286729 0.87717764]\n", + " [-0.19421541 -0.33533681 0.92186203]\n", + " [-0.1686965 -0.35828146 0.9182461 ]\n", + " [-0.14237145 -0.38126553 0.9134369 ]\n", + " [-0.11538692 -0.40412963 0.90739468]\n", + " [-0.08789336 -0.42672051 0.90010242]\n", + " [-0.0600477 -0.44889048 0.89156694]\n", + " [-0.17159541 -0.31109599 0.93475895]\n", + " [-0.14579263 -0.33385172 0.93128274]\n", + " [-0.11922551 -0.35668995 0.92658381]\n", + " [-0.09204105 -0.37945266 0.9206216 ]\n", + " [-0.06439082 -0.40198792 0.91337809]\n", + " [-0.03643326 -0.42414886 0.9048593 ]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:fp_optics: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:cartToSphere: vec: [[-0.52592664 0.52016337 -0.67292737]\n", + " [-0.5469018 0.52209844 -0.65445522]\n", + " [-0.56785084 0.52365039 -0.63508715]\n", + " [-0.58866652 0.52479012 -0.61487158]\n", + " [-0.60924727 0.52549394 -0.59386352]\n", + " [-0.62949617 0.52574363 -0.57212604]\n", + " [-0.64932076 0.52552669 -0.54973107]\n", + " [-0.66863376 0.52483665 -0.52675932]\n", + " [-0.52592664 0.52016337 -0.67292737]\n", + " [-0.53705774 0.49525796 -0.68285323]\n", + " [-0.54777756 0.47002389 -0.69211075]\n", + " [-0.55805268 0.44456578 -0.70067002]\n", + " [-0.56785722 0.41899322 -0.70850749]\n", + " [-0.57717306 0.39342082 -0.71560556]\n", + " [-0.5859901 0.36796875 -0.72195194]\n", + " [-0.59430624 0.34276352 -0.72753918]\n", + " [-0.66863376 0.52483665 -0.52675932]\n", + " [-0.68002928 0.49906072 -0.53712063]\n", + " [-0.69077946 0.47291984 -0.54696487]\n", + " [-0.70085047 0.44652377 -0.55625996]\n", + " [-0.71021748 0.41998513 -0.56498108]\n", + " [-0.71886451 0.39341855 -0.57311051]\n", + " [-0.72678389 0.36694091 -0.58063719]\n", + " [-0.73397554 0.3406727 -0.58755597]\n", + " [-0.59430624 0.34276352 -0.72753918]\n", + " [-0.61498756 0.34292767 -0.71006402]\n", + " [-0.63560048 0.34297566 -0.69165 ]\n", + " [-0.65603307 0.34287801 -0.67235057]\n", + " [-0.67618092 0.34261209 -0.65222413]\n", + " [-0.69594662 0.34216175 -0.63133481]\n", + " [-0.71523945 0.34151685 -0.60975304]\n", + " [-0.73397554 0.3406727 -0.58755597]\n", + " [-0.53510681 0.52096726 -0.66502167]\n", + " [-0.56081069 0.52308435 -0.6417742 ]\n", + " [-0.58636799 0.52459664 -0.61722844]\n", + " [-0.61158948 0.52545826 -0.59148283]\n", + " [-0.63629668 0.5256357 -0.56465357]\n", + " [-0.66032149 0.52510846 -0.53687675]\n", + " [-0.53089976 0.5093583 -0.67727363]\n", + " [-0.54427031 0.47859931 -0.68899386]\n", + " [-0.55698889 0.44745002 -0.69967983]\n", + " [-0.56900469 0.41611013 -0.70928557]\n", + " [-0.58028439 0.3847907 -0.71777861]\n", + " [-0.59081273 0.35371554 -0.72513835]\n", + " [-0.673614 0.51365317 -0.53141754]\n", + " [-0.68715118 0.48180317 -0.5437729 ]\n", + " [-0.69968458 0.44951368 -0.55531877]\n", + " [-0.71116473 0.41699091 -0.56600645]\n", + " [-0.72156214 0.38444593 -0.57580327]\n", + " [-0.73086587 0.35209529 -0.58469136]\n", + " [-0.60329697 0.34293328 -0.72002051]\n", + " [-0.62861332 0.34306159 -0.69796421]\n", + " [-0.65371486 0.34298516 -0.67455027]\n", + " [-0.67840628 0.34265947 -0.64988415]\n", + " [-0.7025082 0.34205477 -0.62408394]\n", + " [-0.72585646 0.34115465 -0.5972821 ]\n", + " [-0.526037 0.5200861 -0.67290082]\n", + " [-0.526037 0.5200861 -0.67290082]\n", + " [-0.73388915 0.34076525 -0.58761021]\n", + " [-0.73388915 0.34076525 -0.58761021]\n", + " [-0.53998691 0.51019695 -0.66941259]\n", + " [-0.55338907 0.47931241 -0.68119024]\n", + " [-0.5661131 0.44803048 -0.69194266]\n", + " [-0.57810782 0.41655112 -0.7016242 ]\n", + " [-0.58933968 0.38508511 -0.71020293]\n", + " [-0.5997932 0.35385551 -0.71765896]\n", + " [-0.56573407 0.51220708 -0.64621117]\n", + " [-0.57921139 0.48100705 -0.65813858]\n", + " [-0.59193967 0.44939284 -0.66906913]\n", + " [-0.60386706 0.41756555 -0.67895773]\n", + " [-0.61495957 0.3857355 -0.68777384]\n", + " [-0.62520152 0.35412364 -0.69549947]\n", + " [-0.59132582 0.51363261 -0.62170356]\n", + " [-0.60485617 0.48217724 -0.63376188]\n", + " [-0.61757103 0.45029543 -0.64485661]\n", + " [-0.62941834 0.4181898 -0.65494263]\n", + " [-0.64036437 0.38607066 -0.66399015]\n", + " [-0.65039378 0.3541572 -0.67198259]\n", + " [-0.61657264 0.51442829 -0.59598801]\n", + " [-0.63013295 0.48277935 -0.60815833]\n", + " [-0.64281569 0.4506958 -0.61940397]\n", + " [-0.65456913 0.41838184 -0.62967919]\n", + " [-0.66536039 0.38604803 -0.6389542 ]\n", + " [-0.67517514 0.35391226 -0.64721298]\n", + " [-0.64129578 0.51456129 -0.56918047]\n", + " [-0.65486237 0.48278253 -0.58144329]\n", + " [-0.66749405 0.45056473 -0.59282638]\n", + " [-0.67913985 0.41811335 -0.60328293]\n", + " [-0.68976821 0.38563928 -0.61278231]\n", + " [-0.69936622 0.35335957 -0.62130822]\n", + " [-0.66532688 0.51401173 -0.54141674]\n", + " [-0.67887591 0.48216861 -0.55375169]\n", + " [-0.69143807 0.44988552 -0.56525783]\n", + " [-0.70296347 0.41736859 -0.57588698]\n", + " [-0.71342209 0.38482891 -0.58560707]\n", + " [-0.72280249 0.35248308 -0.59440074]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:fp_optics: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:cartToSphere: vec: [[ 9.79344658e-01 9.43763845e-02 1.78821530e-01]\n", + " [ 9.76134322e-01 8.04245613e-02 2.01726736e-01]\n", + " [ 9.72098549e-01 6.62520554e-02 2.25022392e-01]\n", + " [ 9.67214365e-01 5.19053921e-02 2.48600489e-01]\n", + " [ 9.61469182e-01 3.74326460e-02 2.72352362e-01]\n", + " [ 9.54860573e-01 2.28837543e-02 2.96171607e-01]\n", + " [ 9.47396180e-01 8.31069980e-03 3.19955326e-01]\n", + " [ 9.39093743e-01 -6.23256595e-03 3.43604566e-01]\n", + " [ 9.79344658e-01 9.43763845e-02 1.78821530e-01]\n", + " [ 9.74653407e-01 1.18564389e-01 1.89718796e-01]\n", + " [ 9.69114424e-01 1.43115487e-01 2.00836227e-01]\n", + " [ 9.62709051e-01 1.67928147e-01 2.12111813e-01]\n", + " [ 9.55429138e-01 1.92899788e-01 2.23483407e-01]\n", + " [ 9.47276749e-01 2.17928312e-01 2.34891488e-01]\n", + " [ 9.38264044e-01 2.42912671e-01 2.46280365e-01]\n", + " [ 9.28413304e-01 2.67753162e-01 2.57598489e-01]\n", + " [ 9.39093743e-01 -6.23256595e-03 3.43604566e-01]\n", + " [ 9.34090213e-01 1.79605562e-02 3.56585043e-01]\n", + " [ 9.28232548e-01 4.26363810e-02 3.69549018e-01]\n", + " [ 9.21502731e-01 6.76930352e-02 3.82426946e-01]\n", + " [ 9.13891826e-01 9.30311362e-02 3.95154322e-01]\n", + " [ 9.05400552e-01 1.18551718e-01 4.07670615e-01]\n", + " [ 8.96040243e-01 1.44154268e-01 4.19918362e-01]\n", + " [ 8.85833654e-01 1.69736095e-01 4.31843021e-01]\n", + " [ 9.28413304e-01 2.67753162e-01 2.57598489e-01]\n", + " [ 9.24858349e-01 2.54894060e-01 2.82251754e-01]\n", + " [ 9.20482223e-01 2.41579232e-01 3.07167629e-01]\n", + " [ 9.15262544e-01 2.27850956e-01 3.32232474e-01]\n", + " [ 9.09186067e-01 2.13753341e-01 3.57337663e-01]\n", + " [ 9.02249227e-01 1.99333511e-01 3.82377411e-01]\n", + " [ 8.94459007e-01 1.84642618e-01 4.07247086e-01]\n", + " [ 8.85833654e-01 1.69736095e-01 4.31843021e-01]\n", + " [ 9.78029884e-01 8.84055366e-02 1.88790911e-01]\n", + " [ 9.73543582e-01 7.11523211e-02 2.17141063e-01]\n", + " [ 9.67793400e-01 5.36135291e-02 2.45970575e-01]\n", + " [ 9.60751866e-01 3.58770033e-02 2.75079430e-01]\n", + " [ 9.52414499e-01 1.80346964e-02 3.04271872e-01]\n", + " [ 9.42799562e-01 1.83138699e-04 3.33360095e-01]\n", + " [ 9.77392229e-01 1.04824314e-01 1.83619970e-01]\n", + " [ 9.71075386e-01 1.34726514e-01 1.97132850e-01]\n", + " [ 9.63465435e-01 1.65073545e-01 2.10914865e-01]\n", + " [ 9.54543031e-01 1.95676859e-01 2.24851438e-01]\n", + " [ 9.44311958e-01 2.26348553e-01 2.38833120e-01]\n", + " [ 9.32798803e-01 2.56903146e-01 2.52759109e-01]\n", + " [ 9.37045588e-01 4.29952945e-03 3.49180584e-01]\n", + " [ 9.30341898e-01 3.42887800e-02 3.65086609e-01]\n", + " [ 9.22336315e-01 6.49014295e-02 3.80898316e-01]\n", + " [ 9.13008611e-01 9.59535284e-02 3.96494888e-01]\n", + " [ 9.02360228e-01 1.27262643e-01 4.11764786e-01]\n", + " [ 8.90416753e-01 1.58642786e-01 4.26603415e-01]\n", + " [ 9.26997704e-01 2.62120320e-01 2.68268884e-01]\n", + " [ 9.22092149e-01 2.46047639e-01 2.98674786e-01]\n", + " [ 9.15929865e-01 2.29332446e-01 3.29361673e-01]\n", + " [ 9.08482668e-01 2.12055151e-01 3.60127555e-01]\n", + " [ 8.99744099e-01 1.94302633e-01 3.90777486e-01]\n", + " [ 8.89731675e-01 1.76170876e-01 4.21119185e-01]\n", + " [ 9.79320423e-01 9.44110865e-02 1.78935901e-01]\n", + " [ 9.79320423e-01 9.44110865e-02 1.78935901e-01]\n", + " [ 8.85900852e-01 1.69700044e-01 4.31719326e-01]\n", + " [ 8.85900852e-01 1.69700044e-01 4.31719326e-01]\n", + " [ 9.76099956e-01 9.88395825e-02 1.93544858e-01]\n", + " [ 9.69772560e-01 1.28808997e-01 2.07242429e-01]\n", + " [ 9.62144079e-01 1.59234098e-01 2.21186062e-01]\n", + " [ 9.53195420e-01 1.89925631e-01 2.35258892e-01]\n", + " [ 9.42930381e-01 2.20695462e-01 2.49350777e-01]\n", + " [ 9.31375493e-01 2.51357809e-01 2.63360860e-01]\n", + " [ 9.71603796e-01 8.16305773e-02 2.22086722e-01]\n", + " [ 9.65236518e-01 1.11747422e-01 2.36285798e-01]\n", + " [ 9.57551343e-01 1.42350351e-01 2.50662728e-01]\n", + " [ 9.48529474e-01 1.73249365e-01 2.65097143e-01]\n", + " [ 9.38174318e-01 2.04256327e-01 2.79478627e-01]\n", + " [ 9.26511991e-01 2.35184673e-01 2.93706826e-01]\n", + " [ 9.65836775e-01 6.41132830e-02 2.51095225e-01]\n", + " [ 9.59415638e-01 9.43121987e-02 2.65757112e-01]\n", + " [ 9.51667968e-01 1.25027741e-01 2.80528329e-01]\n", + " [ 9.42574674e-01 1.56070647e-01 2.95287887e-01]\n", + " [ 9.32138335e-01 1.87253536e-01 3.09926182e-01]\n", + " [ 9.20384474e-01 2.18389191e-01 3.24343307e-01]\n", + " [ 9.58771660e-01 4.63748451e-02 2.80368112e-01]\n", + " [ 9.52282970e-01 7.65891676e-02 2.95450918e-01]\n", + " [ 9.44466720e-01 1.07351231e-01 3.10577410e-01]\n", + " [ 9.35303227e-01 1.38473401e-01 3.25627073e-01]\n", + " [ 9.24794186e-01 1.69769596e-01 3.40490820e-01]\n", + " [ 9.12964653e-01 2.01052288e-01 3.55068332e-01]\n", + " [ 9.50403995e-01 2.85070307e-02 3.09708889e-01]\n", + " [ 9.43833700e-01 5.86700438e-02 3.25170374e-01]\n", + " [ 9.35942006e-01 8.94125371e-02 3.40614091e-01]\n", + " [ 9.26708722e-01 1.20548751e-01 3.55919856e-01]\n", + " [ 9.16135017e-01 1.51894204e-01 3.70978142e-01]\n", + " [ 9.04245849e-01 1.83261616e-01 3.85687210e-01]\n", + " [ 9.40751993e-01 1.06065864e-02 3.38929474e-01]\n", + " [ 9.34085652e-01 4.06525649e-02 3.54727167e-01]\n", + " [ 9.26111086e-01 7.13103638e-02 3.70449846e-01]\n", + " [ 9.16807989e-01 1.02395705e-01 3.85976983e-01]\n", + " [ 9.06177615e-01 1.33725682e-01 4.01197672e-01]\n", + " [ 8.94245310e-01 1.65113879e-01 4.16008093e-01]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:fp_optics: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:cartToSphere: vec: [[ 9.16984948e-02 1.37216247e-01 -9.86287528e-01]\n", + " [ 1.07619629e-01 1.58503177e-01 -9.81475806e-01]\n", + " [ 1.23664079e-01 1.80202302e-01 -9.75824946e-01]\n", + " [ 1.39770562e-01 2.02204879e-01 -9.69317996e-01]\n", + " [ 1.55877612e-01 2.24406716e-01 -9.61947918e-01]\n", + " [ 1.71923443e-01 2.46707932e-01 -9.53717739e-01]\n", + " [ 1.87846054e-01 2.69012540e-01 -9.44640733e-01]\n", + " [ 2.03583557e-01 2.91228188e-01 -9.34740540e-01]\n", + " [ 9.16984948e-02 1.37216247e-01 -9.86287528e-01]\n", + " [ 6.85865291e-02 1.51057426e-01 -9.86142760e-01]\n", + " [ 4.50049032e-02 1.65211881e-01 -9.85230731e-01]\n", + " [ 2.10446990e-02 1.79598947e-01 -9.83514788e-01]\n", + " [-3.20235636e-03 1.94142751e-01 -9.80968061e-01]\n", + " [-2.76435986e-02 2.08772059e-01 -9.77573557e-01]\n", + " [-5.21852581e-02 2.23419813e-01 -9.73324348e-01]\n", + " [-7.67325881e-02 2.38022719e-01 -9.68223784e-01]\n", + " [ 2.03583557e-01 2.91228188e-01 -9.34740540e-01]\n", + " [ 1.80670673e-01 3.07151837e-01 -9.34353176e-01]\n", + " [ 1.57144827e-01 3.23156780e-01 -9.33206943e-01]\n", + " [ 1.33092444e-01 3.39164655e-01 -9.31264591e-01]\n", + " [ 1.08601136e-01 3.55100790e-01 -9.28498369e-01]\n", + " [ 8.37612979e-02 3.70893229e-01 -9.24890403e-01]\n", + " [ 5.86669656e-02 3.86472335e-01 -9.20433225e-01]\n", + " [ 3.34157257e-02 4.01771062e-01 -9.15130266e-01]\n", + " [-7.67325881e-02 2.38022719e-01 -9.68223784e-01]\n", + " [-6.17217531e-02 2.61186556e-01 -9.63313037e-01]\n", + " [-4.63708411e-02 2.84597479e-01 -9.57524945e-01]\n", + " [-3.07379186e-02 3.08150553e-01 -9.50840900e-01]\n", + " [-1.48816784e-02 3.31743911e-01 -9.43252094e-01]\n", + " [ 1.13766869e-03 3.55277414e-01 -9.34760218e-01]\n", + " [ 1.72580360e-02 3.78652179e-01 -9.25378132e-01]\n", + " [ 3.34157257e-02 4.01771062e-01 -9.15130266e-01]\n", + " [ 9.85428547e-02 1.46486912e-01 -9.84292076e-01]\n", + " [ 1.18146285e-01 1.72868985e-01 -9.77833201e-01]\n", + " [ 1.37874210e-01 1.99761522e-01 -9.70095890e-01]\n", + " [ 1.57613564e-01 2.26970813e-01 -9.61063065e-01]\n", + " [ 1.77250613e-01 2.54312932e-01 -9.50740318e-01]\n", + " [ 1.96671235e-01 2.81612679e-01 -9.39156390e-01]\n", + " [ 8.17392040e-02 1.43279750e-01 -9.86300976e-01]\n", + " [ 5.30854751e-02 1.60466214e-01 -9.85612767e-01]\n", + " [ 2.38166236e-02 1.78042393e-01 -9.83734555e-01]\n", + " [-5.89876340e-03 1.95866602e-01 -9.80612808e-01]\n", + " [-3.58900738e-02 2.13807647e-01 -9.76216263e-01]\n", + " [-6.59842545e-02 2.31743654e-01 -9.70536428e-01]\n", + " [ 1.93620719e-01 2.98079726e-01 -9.34697541e-01]\n", + " [ 1.65115018e-01 3.17659781e-01 -9.33717995e-01]\n", + " [ 1.35774554e-01 3.37283758e-01 -9.31560485e-01]\n", + " [ 1.05760040e-01 3.56812721e-01 -9.28169971e-01]\n", + " [ 7.52379916e-02 3.76114158e-01 -9.23513608e-01]\n", + " [ 4.43830478e-02 3.95060917e-01 -9.17582158e-01]\n", + " [-7.01491858e-02 2.48034952e-01 -9.66207925e-01]\n", + " [-5.15150722e-02 2.76603658e-01 -9.59602321e-01]\n", + " [-3.24279890e-02 3.05438905e-01 -9.51659341e-01]\n", + " [-1.29956768e-02 3.34351972e-01 -9.42358674e-01]\n", + " [ 6.67097136e-03 3.63158455e-01 -9.31703512e-01]\n", + " [ 2.64569477e-02 3.91676985e-01 -9.19722333e-01]\n", + " [ 9.16745274e-02 1.37334919e-01 -9.86273239e-01]\n", + " [ 9.16745274e-02 1.37334919e-01 -9.86273239e-01]\n", + " [ 3.34469861e-02 4.01640782e-01 -9.15186309e-01]\n", + " [ 3.34469861e-02 4.01640782e-01 -9.15186309e-01]\n", + " [ 8.85948010e-02 1.52506591e-01 -9.84323474e-01]\n", + " [ 5.98957130e-02 1.69888108e-01 -9.83641466e-01]\n", + " [ 3.05675529e-02 1.87634200e-01 -9.81763226e-01]\n", + " [ 7.78635860e-04 2.05603612e-01 -9.78635044e-01]\n", + " [-2.93004450e-02 2.23665619e-01 -9.74225423e-01]\n", + " [-5.94962939e-02 2.41698553e-01 -9.68525684e-01]\n", + " [ 1.08175844e-01 1.79087985e-01 -9.77867824e-01]\n", + " [ 7.93872122e-02 1.96987218e-01 -9.77186628e-01]\n", + " [ 4.99299401e-02 2.15182335e-01 -9.75296654e-01]\n", + " [ 1.99712745e-02 2.33533647e-01 -9.72143602e-01]\n", + " [-1.03183790e-02 2.51911604e-01 -9.67695239e-01]\n", + " [-4.07646318e-02 2.70194751e-01 -9.61942327e-01]\n", + " [ 1.27901765e-01 2.06161096e-01 -9.70123055e-01]\n", + " [ 9.90816554e-02 2.24527532e-01 -9.69417461e-01]\n", + " [ 6.95534406e-02 2.43125457e-01 -9.67497975e-01]\n", + " [ 3.94829361e-02 2.61816599e-01 -9.64309684e-01]\n", + " [ 9.04009740e-03 2.80471949e-01 -9.59819651e-01]\n", + " [-2.15998491e-02 2.98969552e-01 -9.54018162e-01]\n", + " [ 1.47659503e-01 2.33532674e-01 -9.61071882e-01]\n", + " [ 1.18866096e-01 2.52317529e-01 -9.60315946e-01]\n", + " [ 8.93255854e-02 2.71273770e-01 -9.58348309e-01]\n", + " [ 5.92021414e-02 2.90263857e-01 -9.55113606e-01]\n", + " [ 2.86649580e-02 3.09158476e-01 -9.50578433e-01]\n", + " [-2.11027892e-03 3.27834482e-01 -9.44732819e-01]\n", + " [ 1.67335071e-01 2.61019172e-01 -9.50719710e-01]\n", + " [ 1.38625944e-01 2.80174641e-01 -9.49886845e-01]\n", + " [ 1.09131613e-01 2.99445199e-01 -9.47851710e-01]\n", + " [ 7.90145907e-02 3.18693188e-01 -9.44558810e-01]\n", + " [ 4.84430268e-02 3.37788233e-01 -9.39974671e-01]\n", + " [ 1.75925380e-02 3.56605536e-01 -9.34089393e-01]\n", + " [ 1.86813896e-01 2.88445402e-01 -9.39095213e-01]\n", + " [ 1.58245394e-01 3.07923364e-01 -9.38158620e-01]\n", + " [ 1.28854819e-01 3.27463321e-01 -9.36036436e-01]\n", + " [ 9.88032726e-02 3.46926764e-01 -9.32673434e-01]\n", + " [ 6.82576987e-02 3.66181772e-01 -9.28036527e-01]\n", + " [ 3.73930802e-02 3.85101779e-01 -9.22116249e-01]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:fp_optics: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:cartToSphere: vec: [[ 4.11518783e-01 -7.26179168e-02 -9.08503676e-01]\n", + " [ 4.04870860e-01 -4.68728287e-02 -9.13171684e-01]\n", + " [ 3.97640461e-01 -2.06022229e-02 -9.17309987e-01]\n", + " [ 3.89857030e-01 6.08610774e-03 -9.20855285e-01]\n", + " [ 3.81549957e-01 3.30855609e-02 -9.23755907e-01]\n", + " [ 3.72749519e-01 6.02897493e-02 -9.25971350e-01]\n", + " [ 3.63487758e-01 8.75920199e-02 -9.27471988e-01]\n", + " [ 3.53799091e-01 1.14885482e-01 -9.28238940e-01]\n", + " [ 4.11518783e-01 -7.26179168e-02 -9.08503676e-01]\n", + " [ 3.88476565e-01 -8.30825483e-02 -9.17705426e-01]\n", + " [ 3.64593472e-01 -9.35670494e-02 -9.26453889e-01]\n", + " [ 3.39963292e-01 -1.04037566e-01 -9.34666328e-01]\n", + " [ 3.14679743e-01 -1.14458625e-01 -9.42271661e-01]\n", + " [ 2.88837877e-01 -1.24793266e-01 -9.49209841e-01]\n", + " [ 2.62535091e-01 -1.35003417e-01 -9.55431527e-01]\n", + " [ 2.35871591e-01 -1.45050402e-01 -9.60898004e-01]\n", + " [ 3.53799091e-01 1.14885482e-01 -9.28238940e-01]\n", + " [ 3.29381977e-01 1.05816139e-01 -9.38248612e-01]\n", + " [ 3.04197475e-01 9.64780411e-02 -9.47710865e-01]\n", + " [ 2.78331853e-01 8.69036465e-02 -9.56545417e-01]\n", + " [ 2.51874802e-01 7.71266016e-02 -9.64681591e-01]\n", + " [ 2.24920832e-01 6.71822218e-02 -9.72058213e-01]\n", + " [ 1.97569662e-01 5.71076055e-02 -9.78624009e-01]\n", + " [ 1.69925794e-01 4.69414530e-02 -9.84338217e-01]\n", + " [ 2.35871591e-01 -1.45050402e-01 -9.60898004e-01]\n", + " [ 2.27382449e-01 -1.18941183e-01 -9.66514468e-01]\n", + " [ 2.18535459e-01 -9.22203446e-02 -9.71461611e-01]\n", + " [ 2.09356402e-01 -6.49889817e-02 -9.75677369e-01]\n", + " [ 1.99873406e-01 -3.73499521e-02 -9.79109597e-01]\n", + " [ 1.90117466e-01 -9.40900302e-03 -9.81716262e-01]\n", + " [ 1.80122613e-01 1.87251370e-02 -9.83465919e-01]\n", + " [ 1.69925794e-01 4.69414530e-02 -9.84338217e-01]\n", + " [ 4.08616082e-01 -6.15000128e-02 -9.10632004e-01]\n", + " [ 4.00071710e-01 -2.95789043e-02 -9.16006395e-01]\n", + " [ 3.90681881e-01 3.02432462e-03 -9.20520788e-01]\n", + " [ 3.80500681e-01 3.61129930e-02 -9.24075258e-01]\n", + " [ 3.69583945e-01 6.94911919e-02 -9.26595209e-01]\n", + " [ 3.57991627e-01 1.02962458e-01 -9.28030564e-01]\n", + " [ 4.01559562e-01 -7.70887151e-02 -9.12582735e-01]\n", + " [ 3.72740330e-01 -8.99311157e-02 -9.23567562e-01]\n", + " [ 3.42751369e-01 -1.02770077e-01 -9.33787883e-01]\n", + " [ 3.11765163e-01 -1.15540974e-01 -9.43108035e-01]\n", + " [ 2.79956809e-01 -1.28175802e-01 -9.51417442e-01]\n", + " [ 2.47506780e-01 -1.40604193e-01 -9.58629675e-01]\n", + " [ 3.43286901e-01 1.10872738e-01 -9.32663573e-01]\n", + " [ 3.12834787e-01 9.95716094e-02 -9.44573920e-01]\n", + " [ 2.81315405e-01 8.78991316e-02 -9.55581177e-01]\n", + " [ 2.48892346e-01 7.59167208e-02 -9.65551268e-01]\n", + " [ 2.15739640e-01 6.36894090e-02 -9.74371627e-01]\n", + " [ 1.82042897e-01 5.12861799e-02 -9.81952194e-01]\n", + " [ 2.32307914e-01 -1.33714197e-01 -9.63407259e-01]\n", + " [ 2.21660726e-01 -1.01290401e-01 -9.69848843e-01]\n", + " [ 2.10501259e-01 -6.80483435e-02 -9.75222356e-01]\n", + " [ 1.98880280e-01 -3.41765539e-02 -9.79427689e-01]\n", + " [ 1.86854863e-01 1.30280612e-04 -9.82387522e-01]\n", + " [ 1.74488882e-01 3.46709902e-02 -9.84048552e-01]\n", + " [ 4.11419817e-01 -7.25666097e-02 -9.08552597e-01]\n", + " [ 4.11419817e-01 -7.25666097e-02 -9.08552597e-01]\n", + " [ 1.70055872e-01 4.68798261e-02 -9.84318689e-01]\n", + " [ 1.70055872e-01 4.68798261e-02 -9.84318689e-01]\n", + " [ 3.98699323e-01 -6.59901654e-02 -9.14704405e-01]\n", + " [ 3.69725229e-01 -7.87588024e-02 -9.25797119e-01]\n", + " [ 3.39587831e-01 -9.15485024e-02 -9.36108421e-01]\n", + " [ 3.08458263e-01 -1.04294187e-01 -9.45503158e-01]\n", + " [ 2.76510915e-01 -1.16927357e-01 -9.53870907e-01]\n", + " [ 2.43926229e-01 -1.29377164e-01 -9.61125145e-01]\n", + " [ 3.90009655e-01 -3.39740536e-02 -9.20183804e-01]\n", + " [ 3.60637988e-01 -4.65201209e-02 -9.31545018e-01]\n", + " [ 3.30120178e-01 -5.91555068e-02 -9.42083486e-01]\n", + " [ 2.98623972e-01 -7.18142776e-02 -9.51665085e-01]\n", + " [ 2.66322357e-01 -8.44270333e-02 -9.60179399e-01]\n", + " [ 2.33396207e-01 -9.69219733e-02 -9.67539323e-01]\n", + " [ 3.80495383e-01 -1.26833936e-03 -9.24781950e-01]\n", + " [ 3.50784276e-01 -1.35692520e-02 -9.36357980e-01]\n", + " [ 3.19943332e-01 -2.60261829e-02 -9.47079143e-01]\n", + " [ 2.88137838e-01 -3.85731583e-02 -9.56811736e-01]\n", + " [ 2.55540233e-01 -5.11407050e-02 -9.65444881e-01]\n", + " [ 2.22332395e-01 -6.36567392e-02 -9.72890603e-01]\n", + " [ 3.70209418e-01 3.19310399e-02 -9.28399373e-01]\n", + " [ 3.40214238e-01 1.98998272e-02 -9.40137367e-01]\n", + " [ 3.09105817e-01 7.64716652e-03 -9.50996906e-01]\n", + " [ 2.77047996e-01 -4.76174004e-03 -9.60844282e-01]\n", + " [ 2.44213327e-01 -1.72581284e-02 -9.69567949e-01]\n", + " [ 2.10784957e-01 -2.97702731e-02 -9.77079031e-01]\n", + " [ 3.59206792e-01 6.54283431e-02 -9.30961660e-01]\n", + " [ 3.28981323e-01 5.36916246e-02 -9.42808835e-01]\n", + " [ 2.97660612e-01 4.16690913e-02 -9.53761945e-01]\n", + " [ 2.65407938e-01 2.94245451e-02 -9.63687098e-01]\n", + " [ 2.32396381e-01 1.70254193e-02 -9.72472137e-01]\n", + " [ 1.98810324e-01 4.54253832e-03 -9.80027459e-01]\n", + " [ 3.47547087e-01 9.90267564e-02 -9.32418749e-01]\n", + " [ 3.17144652e-01 8.76081135e-02 -9.44322026e-01]\n", + " [ 2.85667193e-01 7.58402667e-02 -9.55323248e-01]\n", + " [ 2.53278120e-01 6.37852704e-02 -9.65288368e-01]\n", + " [ 2.20151214e-01 5.15088213e-02 -9.74104863e-01]\n", + " [ 1.86471832e-01 3.90804343e-02 -9.81682726e-01]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:fp_optics: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:cartToSphere: vec: [[ 0.03808153 -0.79213416 0.60915784]\n", + " [ 0.03624855 -0.77484287 0.63111376]\n", + " [ 0.03434882 -0.75658145 0.65299668]\n", + " [ 0.0323884 -0.73738859 0.67469182]\n", + " [ 0.03037367 -0.71731079 0.69609099]\n", + " [ 0.02831148 -0.69640382 0.71709147]\n", + " [ 0.02620923 -0.67473353 0.73759592]\n", + " [ 0.02407484 -0.65237595 0.75751305]\n", + " [ 0.03808153 -0.79213416 0.60915784]\n", + " [ 0.06699975 -0.78973414 0.60977949]\n", + " [ 0.09576166 -0.78661989 0.60996627]\n", + " [ 0.12425551 -0.78281128 0.60972704]\n", + " [ 0.1523708 -0.77833553 0.60907877]\n", + " [ 0.1799981 -0.77322678 0.6080469 ]\n", + " [ 0.20702841 -0.76752579 0.60666581]\n", + " [ 0.23335236 -0.76127983 0.60497908]\n", + " [ 0.02407484 -0.65237595 0.75751305]\n", + " [ 0.0540007 -0.64998334 0.75802743]\n", + " [ 0.08377983 -0.64701356 0.75786173]\n", + " [ 0.1132952 -0.64348675 0.75702642]\n", + " [ 0.14243369 -0.63943018 0.75554066]\n", + " [ 0.17108662 -0.63487779 0.75343186]\n", + " [ 0.19914922 -0.62986988 0.75073532]\n", + " [ 0.2265189 -0.62445312 0.74749414]\n", + " [ 0.23335236 -0.76127983 0.60497908]\n", + " [ 0.23331285 -0.74415747 0.62593512]\n", + " [ 0.23295074 -0.72614276 0.64687761]\n", + " [ 0.2322729 -0.7072791 0.66768673]\n", + " [ 0.23128528 -0.68761675 0.68825164]\n", + " [ 0.2299933 -0.66721336 0.70846977]\n", + " [ 0.22840245 -0.64613438 0.72824631]\n", + " [ 0.2265189 -0.62445312 0.74749414]\n", + " [ 0.03739035 -0.78470958 0.61873487]\n", + " [ 0.03509919 -0.76286035 0.64560989]\n", + " [ 0.03271357 -0.73959164 0.67226039]\n", + " [ 0.03024511 -0.71498571 0.69848455]\n", + " [ 0.0277064 -0.68914532 0.72409328]\n", + " [ 0.02511129 -0.66219599 0.74890981]\n", + " [ 0.05069625 -0.79111905 0.60955765]\n", + " [ 0.08604854 -0.78769513 0.61002626]\n", + " [ 0.12105488 -0.78321736 0.60984939]\n", + " [ 0.15551127 -0.77773284 0.60905491]\n", + " [ 0.18921621 -0.77130438 0.60768971]\n", + " [ 0.22196892 -0.76400972 0.60582088]\n", + " [ 0.03714038 -0.65148223 0.75775424]\n", + " [ 0.07373368 -0.64815942 0.75792658]\n", + " [ 0.10998991 -0.64398874 0.757087 ]\n", + " [ 0.14569914 -0.63901745 0.75526715]\n", + " [ 0.18066124 -0.633308 0.75251744]\n", + " [ 0.21468434 -0.62693722 0.7489061 ]\n", + " [ 0.23328618 -0.75394878 0.61411627]\n", + " [ 0.23301884 -0.73235804 0.63980773]\n", + " [ 0.23227405 -0.70946924 0.66535867]\n", + " [ 0.23106313 -0.68537204 0.69056136]\n", + " [ 0.22939614 -0.66017261 0.71522691]\n", + " [ 0.22728344 -0.63399472 0.73918397]\n", + " [ 0.03817441 -0.79206974 0.60923578]\n", + " [ 0.03817441 -0.79206974 0.60923578]\n", + " [ 0.22643353 -0.62454736 0.74744127]\n", + " [ 0.22643353 -0.62454736 0.74744127]\n", + " [ 0.04996157 -0.78375602 0.61905601]\n", + " [ 0.08545427 -0.7803285 0.61950383]\n", + " [ 0.12060131 -0.77585408 0.61927843]\n", + " [ 0.15519853 -0.77038024 0.6184074 ]\n", + " [ 0.18904478 -0.76397023 0.61693724]\n", + " [ 0.22194016 -0.75670211 0.61493453]\n", + " [ 0.04779474 -0.76190005 0.64592877]\n", + " [ 0.08364112 -0.7584688 0.64631977]\n", + " [ 0.11914229 -0.75401399 0.64596287]\n", + " [ 0.15409314 -0.74858413 0.64488534]\n", + " [ 0.18829338 -0.74224359 0.643133 ]\n", + " [ 0.2215456 -0.73507122 0.6407713 ]\n", + " [ 0.04551013 -0.73862669 0.67257672]\n", + " [ 0.08164421 -0.73520187 0.6729134 ]\n", + " [ 0.11743338 -0.73078283 0.67243279]\n", + " [ 0.15267121 -0.72541876 0.67116252]\n", + " [ 0.18715785 -0.71917466 0.66914852]\n", + " [ 0.22069813 -0.7121299 0.66645581]\n", + " [ 0.04311868 -0.71401833 0.69879797]\n", + " [ 0.07947277 -0.71061078 0.69908254]\n", + " [ 0.11548277 -0.70624489 0.69848542]\n", + " [ 0.15094082 -0.70096995 0.69703514]\n", + " [ 0.1856472 -0.69485099 0.69477854]\n", + " [ 0.21940841 -0.68796729 0.69178101]\n", + " [ 0.04063219 -0.68817779 0.72440345]\n", + " [ 0.07713651 -0.68479874 0.72463829]\n", + " [ 0.11329867 -0.68050393 0.72393219]\n", + " [ 0.14890961 -0.67534216 0.72231496]\n", + " [ 0.18376946 -0.66937776 0.71983484]\n", + " [ 0.21768587 -0.66268933 0.71655825]\n", + " [ 0.03806379 -0.66123061 0.74921641]\n", + " [ 0.07464669 -0.65789122 0.74940444]\n", + " [ 0.11089091 -0.65368516 0.74859797]\n", + " [ 0.14658661 -0.64866019 0.74682818]\n", + " [ 0.18153374 -0.64287932 0.74414493]\n", + " [ 0.21554041 -0.6364199 0.74061599]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:cartToSphere: vec: [[-0.22899871 -0.2679897 0.9358104 ]\n", + " [-0.23743543 -0.24281532 0.94056639]\n", + " [-0.24572489 -0.21688871 0.94476376]\n", + " [-0.25383653 -0.19031742 0.9483387 ]\n", + " [-0.26173948 -0.16320764 0.95123904]\n", + " [-0.26940285 -0.13566556 0.95342381]\n", + " [-0.27679616 -0.10779829 0.95486303]\n", + " [-0.28388996 -0.07971419 0.95553762]\n", + " [-0.22899871 -0.2679897 0.9358104 ]\n", + " [-0.20339088 -0.26367452 0.94292518]\n", + " [-0.17711315 -0.2589185 0.94952206]\n", + " [-0.15026846 -0.25374762 0.95552684]\n", + " [-0.12295968 -0.24818621 0.96087695]\n", + " [-0.09529074 -0.24225784 0.96552101]\n", + " [-0.06736728 -0.23598619 0.96941847]\n", + " [-0.03929675 -0.22939573 0.97253965]\n", + " [-0.28388996 -0.07971419 0.95553762]\n", + " [-0.25784425 -0.07345774 0.96339001]\n", + " [-0.23105837 -0.06701053 0.9706295 ]\n", + " [-0.20362806 -0.06039542 0.97718371]\n", + " [-0.17565181 -0.05363594 0.98299015]\n", + " [-0.14723232 -0.04675668 0.98799618]\n", + " [-0.11847682 -0.03978342 0.99215952]\n", + " [-0.08949656 -0.032743 0.99544877]\n", + " [-0.03929675 -0.22939573 0.97253965]\n", + " [-0.04632538 -0.20287436 0.97810836]\n", + " [-0.05345138 -0.1756577 0.98299915]\n", + " [-0.06064475 -0.14784556 0.98714938]\n", + " [-0.06787571 -0.11954017 0.99050645]\n", + " [-0.07511447 -0.09084747 0.99302797]\n", + " [-0.08233125 -0.06187736 0.99468224]\n", + " [-0.08949656 -0.032743 0.99544877]\n", + " [-0.23260674 -0.2570986 0.93797357]\n", + " [-0.24285096 -0.22572394 0.94343633]\n", + " [-0.25284383 -0.19332651 0.94799518]\n", + " [-0.26252865 -0.1601023 0.95154924]\n", + " [-0.27184857 -0.12624688 0.9540231 ]\n", + " [-0.28074792 -0.09195799 0.95536607]\n", + " [-0.2179514 -0.26607907 0.93898835]\n", + " [-0.18610207 -0.26048927 0.94737076]\n", + " [-0.15334881 -0.25426352 0.9549001 ]\n", + " [-0.11988096 -0.24744725 0.9614564 ]\n", + " [-0.08588993 -0.24008395 0.96694499]\n", + " [-0.05157096 -0.23221751 0.97129577]\n", + " [-0.27260722 -0.07710794 0.95903059]\n", + " [-0.2401756 -0.06930986 0.96825194]\n", + " [-0.20672718 -0.06124773 0.97647969]\n", + " [-0.17244205 -0.05296457 0.98359468]\n", + " [-0.1375093 -0.04450566 0.9895001 ]\n", + " [-0.10212805 -0.03591889 0.99412258]\n", + " [-0.04244384 -0.21794731 0.97503717]\n", + " [-0.05112836 -0.18496287 0.9814146 ]\n", + " [-0.0599291 -0.15103304 0.98671046]\n", + " [-0.06879116 -0.1163449 0.99082372]\n", + " [-0.0776597 -0.08109354 0.99367641]\n", + " [-0.08647999 -0.04548266 0.99521482]\n", + " [-0.22894147 -0.26789105 0.93585266]\n", + " [-0.22894147 -0.26789105 0.93585266]\n", + " [-0.08957153 -0.03286693 0.99543795]\n", + " [-0.08957153 -0.03286693 0.99543795]\n", + " [-0.22158402 -0.25522768 0.94114789]\n", + " [-0.18963813 -0.24948801 0.94962788]\n", + " [-0.15678133 -0.24313674 0.95723776]\n", + " [-0.12320207 -0.23621819 0.96385799]\n", + " [-0.08909142 -0.228775 0.969394 ]\n", + " [-0.0546449 -0.22085065 0.9737756 ]\n", + " [-0.23175163 -0.22369089 0.94670669]\n", + " [-0.1995767 -0.21753919 0.95542966]\n", + " [-0.16647037 -0.21084321 0.96324076]\n", + " [-0.13261866 -0.2036446 0.97002122]\n", + " [-0.09821203 -0.19598448 0.97567642]\n", + " [-0.06344691 -0.18790575 0.98013566]\n", + " [-0.24169098 -0.19113727 0.95134222]\n", + " [-0.2093519 -0.18458846 0.9602598 ]\n", + " [-0.17606032 -0.17756069 0.96823291]\n", + " [-0.14200025 -0.17009415 0.97514302]\n", + " [-0.10736177 -0.16222958 0.98089501]\n", + " [-0.07234238 -0.15401021 0.98541739]\n", + " [-0.25134477 -0.15776147 0.95495399]\n", + " [-0.21890515 -0.15082725 0.9640185 ]\n", + " [-0.18549221 -0.14347824 0.97211452]\n", + " [-0.15128834 -0.13575448 0.97912336]\n", + " [-0.11648337 -0.12769732 0.98494925]\n", + " [-0.08127575 -0.11935102 0.98951988]\n", + " [-0.26065558 -0.12375848 0.95746671]\n", + " [-0.22817788 -0.11644937 0.96663044]\n", + " [-0.19470715 -0.10878936 0.97480973]\n", + " [-0.16042454 -0.10081931 0.98188565]\n", + " [-0.12551964 -0.09258198 0.98776181]\n", + " [-0.09019152 -0.08412306 0.99236526]\n", + " [-0.26956722 -0.08932608 0.95882969]\n", + " [-0.23711286 -0.08165332 0.96804454]\n", + " [-0.20364754 -0.07369378 0.97626682]\n", + " [-0.16935153 -0.06548984 0.98337741]\n", + " [-0.13441411 -0.05708607 0.98927955]\n", + " [-0.09903445 -0.04852981 0.99389991]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:fp_optics: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:cartToSphere: vec: [[-2.30285915e-01 -8.83756750e-02 9.69101717e-01]\n", + " [-2.34072874e-01 -6.16533855e-02 9.70262207e-01]\n", + " [-2.37612866e-01 -3.43141176e-02 9.70753659e-01]\n", + " [-2.40895342e-01 -6.47443917e-03 9.70529503e-01]\n", + " [-2.43909731e-01 2.17503464e-02 9.69554004e-01]\n", + " [-2.46645458e-01 5.02458947e-02 9.67802339e-01]\n", + " [-2.49092252e-01 7.88984688e-02 9.65260629e-01]\n", + " [-2.51240576e-01 1.07594852e-01 9.61925943e-01]\n", + " [-2.30285915e-01 -8.83756750e-02 9.69101717e-01]\n", + " [-2.04018546e-01 -8.76291288e-02 9.75037214e-01]\n", + " [-1.77041735e-01 -8.66484894e-02 9.80381693e-01]\n", + " [-1.49462357e-01 -8.54493872e-02 9.85068224e-01]\n", + " [-1.21387863e-01 -8.40455599e-02 9.89040611e-01]\n", + " [-9.29266241e-02 -8.24488680e-02 9.92253409e-01]\n", + " [-6.41883117e-02 -8.06696507e-02 9.94671940e-01]\n", + " [-3.52840119e-02 -7.87171872e-02 9.96272374e-01]\n", + " [-2.51240576e-01 1.07594852e-01 9.61925943e-01]\n", + " [-2.24200074e-01 1.10253698e-01 9.68286346e-01]\n", + " [-1.96426034e-01 1.12880813e-01 9.73999351e-01]\n", + " [-1.68020126e-01 1.15460452e-01 9.78998530e-01]\n", + " [-1.39085489e-01 1.17978157e-01 9.83227533e-01]\n", + " [-1.09728623e-01 1.20420602e-01 9.86640009e-01]\n", + " [-8.00604310e-02 1.22775537e-01 9.89199927e-01]\n", + " [-5.01961240e-02 1.25031841e-01 9.90882126e-01]\n", + " [-3.52840119e-02 -7.87171872e-02 9.96272374e-01]\n", + " [-3.74433555e-02 -5.08185029e-02 9.98005749e-01]\n", + " [-3.96089017e-02 -2.23296863e-02 9.98965725e-01]\n", + " [-4.17709324e-02 6.63785081e-03 9.99105164e-01]\n", + " [-4.39199346e-02 3.59725268e-02 9.98387208e-01]\n", + " [-4.60465434e-02 6.55608608e-02 9.96785578e-01]\n", + " [-4.81415725e-02 9.52867382e-02 9.94285083e-01]\n", + " [-5.01961240e-02 1.25031841e-01 9.90882126e-01]\n", + " [-2.31877891e-01 -7.68054385e-02 9.69707981e-01]\n", + " [-2.36353584e-01 -4.36236018e-02 9.70687367e-01]\n", + " [-2.40448002e-01 -9.63101453e-03 9.70614240e-01]\n", + " [-2.44141707e-01 2.49595303e-02 9.69418304e-01]\n", + " [-2.47415266e-01 5.99374875e-02 9.67053868e-01]\n", + " [-2.50250052e-01 9.50936765e-02 9.63499924e-01]\n", + " [-2.18940302e-01 -8.79893828e-02 9.71762838e-01]\n", + " [-1.86255431e-01 -8.69137654e-02 9.78649535e-01]\n", + " [-1.52611047e-01 -8.55024419e-02 9.84580723e-01]\n", + " [-1.18204722e-01 -8.37815070e-02 9.89448484e-01]\n", + " [-8.32360034e-02 -8.17728352e-02 9.93169155e-01]\n", + " [-4.79073942e-02 -7.94949980e-02 9.95683397e-01]\n", + " [-2.39540675e-01 1.08658476e-01 9.64786816e-01]\n", + " [-2.05893627e-01 1.11896888e-01 9.72155801e-01]\n", + " [-1.71245754e-01 1.15072024e-01 9.78485218e-01]\n", + " [-1.35786214e-01 1.18156751e-01 9.83667162e-01]\n", + " [-9.97111954e-02 1.21126536e-01 9.87616342e-01]\n", + " [-6.32267046e-02 1.23959292e-01 9.90270911e-01]\n", + " [-3.63234817e-02 -6.66400192e-02 9.97115697e-01]\n", + " [-3.89763485e-02 -3.20365082e-02 9.98726442e-01]\n", + " [-4.16286625e-02 3.34263052e-03 9.99127560e-01]\n", + " [-4.42628260e-02 3.92921547e-02 9.98246928e-01]\n", + " [-4.68615961e-02 7.56030646e-02 9.96036228e-01]\n", + " [-4.94081685e-02 1.12060621e-01 9.92472292e-01]\n", + " [-2.30210776e-01 -8.82833404e-02 9.69127985e-01]\n", + " [-2.30210776e-01 -8.82833404e-02 9.69127985e-01]\n", + " [-5.02915026e-02 1.24922690e-01 9.90891057e-01]\n", + " [-5.02915026e-02 1.24922690e-01 9.90891057e-01]\n", + " [-2.20564803e-01 -7.64552938e-02 9.72371203e-01]\n", + " [-1.87757484e-01 -7.52381980e-02 9.79329536e-01]\n", + " [-1.53987915e-01 -7.37116597e-02 9.85319397e-01]\n", + " [-1.19453206e-01 -7.19014974e-02 9.90232855e-01]\n", + " [-8.43526388e-02 -6.98291400e-02 9.93986179e-01]\n", + " [-4.88888861e-02 -6.75127745e-02 9.96519895e-01]\n", + " [-2.24935737e-01 -4.31167295e-02 9.73419160e-01]\n", + " [-1.91827166e-01 -4.15055467e-02 9.80550676e-01]\n", + " [-1.57748539e-01 -3.96585007e-02 9.86682625e-01]\n", + " [-1.22895231e-01 -3.76004458e-02 9.91707098e-01]\n", + " [-8.74656949e-02 -3.53517249e-02 9.95540058e-01]\n", + " [-5.16632666e-02 -3.29297330e-02 9.98121505e-01]\n", + " [-2.28949086e-01 -8.97087595e-03 9.73397062e-01]\n", + " [-1.95606615e-01 -6.97433921e-03 9.80657642e-01]\n", + " [-1.61286098e-01 -4.81371038e-03 9.86895953e-01]\n", + " [-1.26180914e-01 -2.51317335e-03 9.92004063e-01]\n", + " [-9.04887396e-02 -9.26515346e-05 9.95897474e-01]\n", + " [-5.44137595e-02 2.43055487e-03 9.98515516e-01]\n", + " [-2.32585177e-01 2.57699160e-02 9.72234564e-01]\n", + " [-1.99075358e-01 2.81447721e-02 9.79579948e-01]\n", + " [-1.64579614e-01 3.06139569e-02 9.85888602e-01]\n", + " [-1.29289465e-01 3.31532369e-02 9.91052520e-01]\n", + " [-9.34019546e-02 3.57421890e-02 9.94986719e-01]\n", + " [-5.71221282e-02 3.83627897e-02 9.97629871e-01]\n", + " [-2.35824151e-01 6.08953483e-02 9.69885935e-01]\n", + " [-2.02212452e-01 6.36421897e-02 9.77271608e-01]\n", + " [-1.67607627e-01 6.64154155e-02 9.83614089e-01]\n", + " [-1.32199769e-01 6.91899402e-02 9.88805326e-01]\n", + " [-9.61854465e-02 7.19439662e-02 9.92760004e-01]\n", + " [-5.97703695e-02 7.46580256e-02 9.95416336e-01]\n", + " [-2.38646966e-01 9.61960530e-02 9.66330143e-01]\n", + " [-2.04997861e-01 9.93077466e-02 9.73711378e-01]\n", + " [-1.70349670e-01 1.02379349e-01 9.80050743e-01]\n", + " [-1.34891669e-01 1.05384318e-01 9.85240267e-01]\n", + " [-9.88201151e-02 1.08298882e-01 9.89194590e-01]\n", + " [-6.23410175e-02 1.11101673e-01 9.91851811e-01]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:cartToSphere: vec: [[-0.73246676 -0.19178949 -0.65322985]\n", + " [-0.74505599 -0.20764223 -0.63385825]\n", + " [-0.75729387 -0.22364192 -0.61358804]\n", + " [-0.769098 -0.2397146 -0.59247377]\n", + " [-0.78039472 -0.25578972 -0.57057488]\n", + " [-0.79111814 -0.27179875 -0.5479576 ]\n", + " [-0.8012096 -0.28767418 -0.52469681]\n", + " [-0.81061806 -0.30334937 -0.50087675]\n", + " [-0.73246676 -0.19178949 -0.65322985]\n", + " [-0.71761008 -0.21497235 -0.66243691]\n", + " [-0.70224498 -0.23795608 -0.67099098]\n", + " [-0.68644162 -0.26065509 -0.67886436]\n", + " [-0.67027857 -0.2829876 -0.68603546]\n", + " [-0.65384248 -0.30487584 -0.6924888 ]\n", + " [-0.63722727 -0.32624626 -0.69821543]\n", + " [-0.62053201 -0.34703007 -0.70321416]\n", + " [-0.81061806 -0.30334937 -0.50087675]\n", + " [-0.79517238 -0.32724088 -0.51050396]\n", + " [-0.77906476 -0.35076103 -0.51963911]\n", + " [-0.76236921 -0.37382106 -0.52825278]\n", + " [-0.74516644 -0.39633942 -0.5363227 ]\n", + " [-0.72754353 -0.41824132 -0.54383326]\n", + " [-0.70959469 -0.43945714 -0.55077473]\n", + " [-0.6914228 -0.45992038 -0.55714249]\n", + " [-0.62053201 -0.34703007 -0.70321416]\n", + " [-0.63148837 -0.36362608 -0.68483466]\n", + " [-0.64228706 -0.38018881 -0.66552521]\n", + " [-0.6528505 -0.39664169 -0.64533836]\n", + " [-0.66310644 -0.41291078 -0.62433527]\n", + " [-0.67299008 -0.42892506 -0.60258413]\n", + " [-0.68244489 -0.44461653 -0.58015956]\n", + " [-0.6914228 -0.45992038 -0.55714249]\n", + " [-0.73794318 -0.1987582 -0.64493026]\n", + " [-0.75314667 -0.21829649 -0.62057775]\n", + " [-0.76773963 -0.23798145 -0.59492914]\n", + " [-0.78158288 -0.25768181 -0.5680918 ]\n", + " [-0.79455503 -0.27727131 -0.54018786]\n", + " [-0.80655125 -0.29662596 -0.51135909]\n", + " [-0.72609918 -0.20197035 -0.65725791]\n", + " [-0.70753984 -0.23026109 -0.66810718]\n", + " [-0.68828549 -0.25816713 -0.6779475 ]\n", + " [-0.66847726 -0.28553632 -0.6867366 ]\n", + " [-0.6482746 -0.31222552 -0.69444601]\n", + " [-0.62785275 -0.33810123 -0.7010624 ]\n", + " [-0.80393856 -0.31375267 -0.50521486]\n", + " [-0.78455432 -0.34279597 -0.51668698]\n", + " [-0.76424865 -0.37119263 -0.52738983]\n", + " [-0.7431674 -0.39878946 -0.53727943]\n", + " [-0.72147094 -0.4254486 -0.54632698]\n", + " [-0.69933628 -0.45104323 -0.55451669]\n", + " [-0.62538094 -0.35419507 -0.69530176]\n", + " [-0.63871427 -0.37452254 -0.67214355]\n", + " [-0.65173311 -0.39472379 -0.64763963]\n", + " [-0.66430205 -0.41466158 -0.62189916]\n", + " [-0.67630187 -0.43420518 -0.5950476 ]\n", + " [-0.68763202 -0.4532307 -0.56722495]\n", + " [-0.73246044 -0.19192288 -0.65319775]\n", + " [-0.73246044 -0.19192288 -0.65319775]\n", + " [-0.69145536 -0.45980015 -0.55720132]\n", + " [-0.69145536 -0.45980015 -0.55720132]\n", + " [-0.73155556 -0.20884384 -0.64900749]\n", + " [-0.71290776 -0.23723092 -0.65991213]\n", + " [-0.69354478 -0.26521542 -0.6698182 ]\n", + " [-0.67360793 -0.29264492 -0.67868351]\n", + " [-0.65325714 -0.31937617 -0.68647941]\n", + " [-0.6326692 -0.3452756 -0.69319149]\n", + " [-0.74669259 -0.22847781 -0.62469838]\n", + " [-0.72782063 -0.25710341 -0.63574756]\n", + " [-0.70818108 -0.28527691 -0.6458302 ]\n", + " [-0.68791548 -0.31284494 -0.65490483]\n", + " [-0.66718394 -0.33966435 -0.66294322]\n", + " [-0.64616536 -0.36560175 -0.66992962]\n", + " [-0.76123131 -0.24823989 -0.59908584]\n", + " [-0.74217419 -0.27705252 -0.61026172]\n", + " [-0.72230396 -0.30536503 -0.62050721]\n", + " [-0.70176262 -0.33302317 -0.62978155]\n", + " [-0.68070979 -0.35988435 -0.63805755]\n", + " [-0.65932423 -0.38581621 -0.64531962]\n", + " [-0.77503274 -0.26799835 -0.57227715]\n", + " [-0.75582975 -0.29694507 -0.58356235]\n", + " [-0.73577449 -0.32534511 -0.59395831]\n", + " [-0.71500995 -0.35304379 -0.60342428]\n", + " [-0.69369545 -0.37989962 -0.61193374]\n", + " [-0.67200884 -0.40578188 -0.61947171]\n", + " [-0.78797594 -0.28762623 -0.54439422]\n", + " [-0.76866744 -0.31665219 -0.55577132]\n", + " [-0.74847341 -0.3450869 -0.56630609]\n", + " [-0.72753813 -0.3727759 -0.57595694]\n", + " [-0.70602113 -0.39957921 -0.58469703]\n", + " [-0.6840995 -0.42536801 -0.59251155]\n", + " [-0.79995656 -0.30699885 -0.51557851]\n", + " [-0.78058449 -0.33604767 -0.52702924]\n", + " [-0.76029932 -0.36446363 -0.53769063]\n", + " [-0.73924657 -0.39209312 -0.5475194 ]\n", + " [-0.71758636 -0.41879778 -0.5564874 ]\n", + " [-0.69549562 -0.44445038 -0.56457923]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:fp_optics: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:fp_optics: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:cartToSphere: vec: [[-0.13982021 -0.56071197 0.81612033]\n", + " [-0.12213967 -0.5441132 0.83007393]\n", + " [-0.104007 -0.52674285 0.84363767]\n", + " [-0.08548934 -0.5086465 0.85672067]\n", + " [-0.06665476 -0.48987494 0.86924087]\n", + " [-0.04757338 -0.47048548 0.88112439]\n", + " [-0.02831801 -0.45054273 0.89230563]\n", + " [-0.00896396 -0.43011863 0.90272787]\n", + " [-0.13982021 -0.56071197 0.81612033]\n", + " [-0.11756658 -0.57742211 0.80793676]\n", + " [-0.09522241 -0.59353777 0.79915306]\n", + " [-0.07287444 -0.60900114 0.78981449]\n", + " [-0.05060901 -0.6237599 0.77997584]\n", + " [-0.02851186 -0.63776685 0.76970157]\n", + " [-0.00666803 -0.65097953 0.759066 ]\n", + " [ 0.01483779 -0.66335983 0.74815345]\n", + " [-0.00896396 -0.43011863 0.90272787]\n", + " [ 0.01396981 -0.44749448 0.89417757]\n", + " [ 0.03681976 -0.46441151 0.88485381]\n", + " [ 0.05949596 -0.48080868 0.87480469]\n", + " [ 0.08191114 -0.49663192 0.86408756]\n", + " [ 0.10398109 -0.51183411 0.8527683 ]\n", + " [ 0.12562415 -0.52637445 0.84092123]\n", + " [ 0.14675997 -0.54021746 0.82862936]\n", + " [ 0.01483779 -0.66335983 0.74815345]\n", + " [ 0.03328265 -0.64814728 0.76078734]\n", + " [ 0.05198054 -0.63205285 0.77317994]\n", + " [ 0.0708605 -0.61512521 0.78523867]\n", + " [ 0.08985105 -0.59741743 0.79688093]\n", + " [ 0.10887989 -0.57898728 0.80803397]\n", + " [ 0.12787403 -0.55989777 0.81863467]\n", + " [ 0.14675997 -0.54021746 0.82862936]\n", + " [-0.13209518 -0.55363077 0.82221885]\n", + " [-0.11011261 -0.53276348 0.8390699 ]\n", + " [-0.08751775 -0.5107819 0.85524411]\n", + " [-0.06443544 -0.48777734 0.87058678]\n", + " [-0.04099489 -0.46385537 0.88496193]\n", + " [-0.01733119 -0.439138 0.89825244]\n", + " [-0.13007432 -0.56801166 0.81267671]\n", + " [-0.1027277 -0.58810009 0.80223769]\n", + " [-0.07533141 -0.60723758 0.79094102]\n", + " [-0.04804462 -0.62532554 0.77888361]\n", + " [-0.02102513 -0.64227705 0.76618414]\n", + " [ 0.00557064 -0.65801573 0.75298358]\n", + " [ 0.00097345 -0.43781736 0.89906341]\n", + " [ 0.02903622 -0.45881252 0.88805854]\n", + " [ 0.05688361 -0.47905699 0.87593873]\n", + " [ 0.08435381 -0.49844831 0.86280572]\n", + " [ 0.11129172 -0.51689965 0.84878084]\n", + " [ 0.13754763 -0.53433818 0.83400441]\n", + " [ 0.02277126 -0.65679721 0.75372336]\n", + " [ 0.04555634 -0.63755268 0.76905864]\n", + " [ 0.06865117 -0.61703146 0.78393826]\n", + " [ 0.09192437 -0.59532939 0.798206 ]\n", + " [ 0.11524289 -0.57255292 0.81172793]\n", + " [ 0.13847208 -0.54882033 0.82439173]\n", + " [-0.13968475 -0.56071465 0.81614168]\n", + " [-0.13968475 -0.56071465 0.81614168]\n", + " [ 0.14662433 -0.54023957 0.82863895]\n", + " [ 0.14662433 -0.54023957 0.82863895]\n", + " [-0.12244796 -0.56095746 0.8187388 ]\n", + " [-0.09500734 -0.58113579 0.8082418 ]\n", + " [-0.0675327 -0.6003716 0.79686465]\n", + " [-0.04018365 -0.61856645 0.78470429]\n", + " [-0.01311811 -0.63563386 0.77187921]\n", + " [ 0.01350763 -0.6514979 0.75853018]\n", + " [-0.1003731 -0.54016531 0.83555172]\n", + " [-0.07270038 -0.56057451 0.82490659]\n", + " [-0.0450385 -0.58006721 0.81332255]\n", + " [-0.01754839 -0.59854514 0.80089685]\n", + " [ 0.00961174 -0.61592298 0.78774773]\n", + " [ 0.03628624 -0.63212643 0.77401517]\n", + " [-0.0777039 -0.51824549 0.85169462]\n", + " [-0.04985059 -0.5388504 0.84092518]\n", + " [-0.02205403 -0.55856865 0.82916505]\n", + " [ 0.00552375 -0.57730166 0.81651227]\n", + " [ 0.03272454 -0.59496484 0.80308526]\n", + " [ 0.05939368 -0.61148539 0.78902345]\n", + " [-0.0545657 -0.49528895 0.86701294]\n", + " [-0.02658496 -0.51605397 0.85614341]\n", + " [ 0.00129214 -0.53596678 0.84423808]\n", + " [ 0.02890288 -0.55492797 0.83139616]\n", + " [ 0.05608949 -0.57285305 0.81773672]\n", + " [ 0.08269866 -0.58967014 0.80339906]\n", + " [-0.03108831 -0.47140085 0.88137095]\n", + " [-0.00303489 -0.49228938 0.8704263 ]\n", + " [ 0.02486736 -0.5123653 0.85840749]\n", + " [ 0.05245565 -0.531528 0.84541492]\n", + " [ 0.0795731 -0.54969238 0.83156865]\n", + " [ 0.10606798 -0.56678665 0.81700825]\n", + " [-0.00740734 -0.44670277 0.89465176]\n", + " [ 0.02066291 -0.46767696 0.88365791]\n", + " [ 0.04853443 -0.48788341 0.87155848]\n", + " [ 0.07604504 -0.50722015 0.85845493]\n", + " [ 0.10303915 -0.52560085 0.84446828]\n", + " [ 0.12936656 -0.54295309 0.82973865]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:fp_optics: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:cartToSphere: vec: [[ 0.71697414 -0.64518067 0.26398861]\n", + " [ 0.70518051 -0.64732152 0.2893014 ]\n", + " [ 0.69258182 -0.6489827 0.31488391]\n", + " [ 0.67919735 -0.65012912 0.34062162]\n", + " [ 0.66505346 -0.65073238 0.36640316]\n", + " [ 0.65018471 -0.65077085 0.39211879]\n", + " [ 0.63463455 -0.65023005 0.41765999]\n", + " [ 0.6184554 -0.64910298 0.44292012]\n", + " [ 0.71697414 -0.64518067 0.26398861]\n", + " [ 0.73298161 -0.62288113 0.27341735]\n", + " [ 0.74828208 -0.60014013 0.28267605]\n", + " [ 0.76282335 -0.57705421 0.29173442]\n", + " [ 0.77656076 -0.55372632 0.30056706]\n", + " [ 0.78945674 -0.5302659 0.30915389]\n", + " [ 0.80148031 -0.50678935 0.31748049]\n", + " [ 0.81260646 -0.48342078 0.32553816]\n", + " [ 0.6184554 -0.64910298 0.44292012]\n", + " [ 0.63507511 -0.62601643 0.4525296 ]\n", + " [ 0.65106921 -0.60244382 0.46170373]\n", + " [ 0.66638269 -0.57848646 0.47041209]\n", + " [ 0.68096958 -0.55425022 0.47863048]\n", + " [ 0.69479288 -0.52984472 0.48634085]\n", + " [ 0.70782396 -0.50538345 0.49353096]\n", + " [ 0.72004144 -0.48098497 0.50019374]\n", + " [ 0.81260646 -0.48342078 0.32553816]\n", + " [ 0.80192102 -0.48388526 0.35039653]\n", + " [ 0.79034115 -0.48412486 0.37547835]\n", + " [ 0.77788962 -0.48410408 0.40066317]\n", + " [ 0.76459513 -0.4837956 0.42583578]\n", + " [ 0.75049283 -0.48317989 0.45088546]\n", + " [ 0.73562501 -0.48224477 0.4757056 ]\n", + " [ 0.72004144 -0.48098497 0.50019374]\n", + " [ 0.71198813 -0.64609484 0.27501701]\n", + " [ 0.69699091 -0.64840012 0.30623677]\n", + " [ 0.68080277 -0.64994946 0.33774736]\n", + " [ 0.66346927 -0.65068779 0.36934256]\n", + " [ 0.64505411 -0.65057537 0.40082027]\n", + " [ 0.625641 -0.64958862 0.43198145]\n", + " [ 0.72399802 -0.63552596 0.26820444]\n", + " [ 0.74314892 -0.60788605 0.2796502 ]\n", + " [ 0.76118518 -0.5796782 0.29080974]\n", + " [ 0.77802145 -0.5510893 0.30163424]\n", + " [ 0.79358852 -0.52232088 0.31208677]\n", + " [ 0.80783186 -0.49359039 0.32214317]\n", + " [ 0.62583101 -0.63910804 0.44707545]\n", + " [ 0.64578667 -0.61047385 0.45856435]\n", + " [ 0.66474689 -0.58120967 0.4693686 ]\n", + " [ 0.68262328 -0.55150859 0.47944107]\n", + " [ 0.69934766 -0.52157241 0.48874848]\n", + " [ 0.71487037 -0.49161209 0.49727045]\n", + " [ 0.808022 -0.48372837 0.3363143 ]\n", + " [ 0.79432109 -0.48415245 0.36694741]\n", + " [ 0.77929872 -0.48420237 0.39779588]\n", + " [ 0.76300524 -0.48382442 0.42864547]\n", + " [ 0.74550545 -0.48298262 0.4592923 ]\n", + " [ 0.72688029 -0.48165741 0.48954182]\n", + " [ 0.71699108 -0.64511336 0.26410707]\n", + " [ 0.71699108 -0.64511336 0.26410707]\n", + " [ 0.72005552 -0.48107302 0.5000888 ]\n", + " [ 0.72005552 -0.48107302 0.5000888 ]\n", + " [ 0.71902313 -0.63646921 0.27912843]\n", + " [ 0.73825501 -0.6087147 0.29059587]\n", + " [ 0.7563743 -0.58038338 0.30174997]\n", + " [ 0.77329582 -0.5516624 0.31254146]\n", + " [ 0.7889509 -0.52275303 0.32293304]\n", + " [ 0.80328568 -0.49387202 0.3329002 ]\n", + " [ 0.70409688 -0.63867828 0.31038305]\n", + " [ 0.72353629 -0.61063585 0.32189919]\n", + " [ 0.74187208 -0.58199546 0.33302718]\n", + " [ 0.75901923 -0.5529453 0.34371688]\n", + " [ 0.77491038 -0.52368629 0.35393018]\n", + " [ 0.78949368 -0.49443327 0.36364195]\n", + " [ 0.68796698 -0.64014956 0.34192101]\n", + " [ 0.70758154 -0.61187423 0.35346611]\n", + " [ 0.72610669 -0.58298526 0.36455077]\n", + " [ 0.74345716 -0.55367233 0.37512452]\n", + " [ 0.75956638 -0.5241364 0.38514926]\n", + " [ 0.77438421 -0.49459073 0.39459992]\n", + " [ 0.67067861 -0.64082853 0.37353582]\n", + " [ 0.69043538 -0.61237678 0.38508917]\n", + " [ 0.70912299 -0.58330086 0.39611196]\n", + " [ 0.72665548 -0.55379197 0.40655413]\n", + " [ 0.74296648 -0.52405139 0.41637837]\n", + " [ 0.7580069 -0.49429126 0.42556045]\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + " [ 0.65229504 -0.64067606 0.40502IOPub data rate exceeded.\n", + "The notebook server will temporarily stop sending output\n", + "to the client in order to avoid crashing it.\n", + "To change this limit, set the config variable\n", + "`--NotebookApp.iopub_data_rate_limit`.\n", + "\n", + "Current values:\n", + "NotebookApp.iopub_data_rate_limit=1000000.0 (bytes/sec)\n", + "NotebookApp.rate_limit_window=3.0 (secs)\n", + "\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:cartToSphere: vec: [[ 0.49820833 -0.43736234 -0.74866724]\n", + " [ 0.50680765 -0.45626723 -0.73141385]\n", + " [ 0.51532151 -0.47513621 -0.7132246 ]\n", + " [ 0.52368638 -0.49387823 -0.6941447 ]\n", + " [ 0.53184235 -0.5124054 -0.67422876]\n", + " [ 0.53973544 -0.53063383 -0.65353913]\n", + " [ 0.54731871 -0.54848393 -0.63214525]\n", + " [ 0.55455247 -0.56588068 -0.61012345]\n", + " [ 0.49820833 -0.43736234 -0.74866724]\n", + " [ 0.51869394 -0.42036635 -0.74447883]\n", + " [ 0.53928401 -0.40278975 -0.7395493 ]\n", + " [ 0.55986818 -0.38468011 -0.73387249]\n", + " [ 0.5803387 -0.3660905 -0.72745085]\n", + " [ 0.60059331 -0.34707928 -0.72029414]\n", + " [ 0.62053646 -0.32771003 -0.71241886]\n", + " [ 0.64007969 -0.3080515 -0.70384819]\n", + " [ 0.55455247 -0.56588068 -0.61012345]\n", + " [ 0.57653756 -0.54957365 -0.60462653]\n", + " [ 0.5985116 -0.53249208 -0.59852823]\n", + " [ 0.6203585 -0.51468101 -0.59182665]\n", + " [ 0.64197028 -0.49618966 -0.58452543]\n", + " [ 0.66324521 -0.47707289 -0.57663441]\n", + " [ 0.68408638 -0.45739287 -0.56817039]\n", + " [ 0.70440145 -0.4372198 -0.5591578 ]\n", + " [ 0.64007969 -0.3080515 -0.70384819]\n", + " [ 0.65052404 -0.32662782 -0.68566227]\n", + " [ 0.6606545 -0.34530596 -0.66655789]\n", + " [ 0.67040096 -0.36399621 -0.6465828 ]\n", + " [ 0.67970105 -0.38261356 -0.62579017]\n", + " [ 0.68849936 -0.40107615 -0.60424048]\n", + " [ 0.69674691 -0.41930417 -0.58200323]\n", + " [ 0.70440145 -0.4372198 -0.5591578 ]\n", + " [ 0.50203433 -0.44554646 -0.74124887]\n", + " [ 0.5125256 -0.46870404 -0.71946788]\n", + " [ 0.52282499 -0.49171703 -0.69632492]\n", + " [ 0.53282048 -0.51442222 -0.67191674]\n", + " [ 0.54241285 -0.53666521 -0.64635807]\n", + " [ 0.55151867 -0.55830135 -0.61977961]\n", + " [ 0.50715025 -0.4300909 -0.74687378]\n", + " [ 0.53234297 -0.40886458 -0.74124268]\n", + " [ 0.55758276 -0.38681264 -0.73449129]\n", + " [ 0.58266995 -0.36403051 -0.72662061]\n", + " [ 0.60741642 -0.3406256 -0.71764858]\n", + " [ 0.63164918 -0.31671714 -0.70760834]\n", + " [ 0.5641074 -0.55880985 -0.60787696]\n", + " [ 0.59105977 -0.53829699 -0.6007368 ]\n", + " [ 0.6178793 -0.51666517 -0.59269071]\n", + " [ 0.64436388 -0.49400324 -0.58374309]\n", + " [ 0.67032606 -0.47041242 -0.57391213]\n", + " [ 0.69558928 -0.4460105 -0.56323192]\n", + " [ 0.6446009 -0.31620023 -0.69606544]\n", + " [ 0.65719902 -0.33904811 -0.67315365]\n", + " [ 0.66925524 -0.36195909 -0.64890912]\n", + " [ 0.68065157 -0.38477475 -0.62342748]\n", + " [ 0.69128592 -0.40734429 -0.59682024]\n", + " [ 0.70107092 -0.42952153 -0.56921949]\n", + " [ 0.49830757 -0.43736987 -0.7485968 ]\n", + " [ 0.49830757 -0.43736987 -0.7485968 ]\n", + " [ 0.70430786 -0.43722889 -0.55926858]\n", + " [ 0.70430786 -0.43722889 -0.55926858]\n", + " [ 0.51094165 -0.43827811 -0.7394937 ]\n", + " [ 0.53631019 -0.41706742 -0.73377527]\n", + " [ 0.56171179 -0.39500954 -0.72694383]\n", + " [ 0.5869447 -0.37219966 -0.71900162]\n", + " [ 0.61182013 -0.3487451 -0.70996689]\n", + " [ 0.63616487 -0.32476529 -0.69987268]\n", + " [ 0.5216014 -0.46147283 -0.71761746]\n", + " [ 0.54742417 -0.44032744 -0.71164494]\n", + " [ 0.57323973 -0.41827549 -0.70458628]\n", + " [ 0.59884331 -0.3954115 -0.69644557]\n", + " [ 0.62404577 -0.37184251 -0.68724088]\n", + " [ 0.64867368 -0.3476886 -0.6770045 ]\n", + " [ 0.53204458 -0.48453279 -0.69437493]\n", + " [ 0.55825089 -0.46348293 -0.68814208]\n", + " [ 0.58441211 -0.44147055 -0.68085699]\n", + " [ 0.61032332 -0.41858922 -0.67252399]\n", + " [ 0.63579614 -0.39494535 -0.66316019]\n", + " [ 0.66065692 -0.37065949 -0.65279704]\n", + " [ 0.54215715 -0.50729455 -0.66986406]\n", + " [ 0.56867318 -0.48637031 -0.66336622]\n", + " [ 0.59511115 -0.46443172 -0.65585509]\n", + " [ 0.62126724 -0.44157098 -0.6473346 ]\n", + " [ 0.64695391 -0.4178933 -0.63782115]\n", + " [ 0.67199687 -0.39351913 -0.62734592]\n", + " [ 0.55183922 -0.52960357 -0.64419992]\n", + " [ 0.57859072 -0.5088348 -0.63743229]\n", + " [ 0.60523702 -0.48700428 -0.62969435]\n", + " [ 0.63157545 -0.4642026 -0.62098984]\n", + " [ 0.65741887 -0.44053332 -0.61133528]\n", + " [ 0.68259199 -0.41611608 -0.60076251]\n", + " [ 0.56100725 -0.55131491 -0.61751335]\n", + " [ 0.58792026 -0.53073042 -0.61047112]\n", + " [ 0.61470668 -0.50904116 -0.60250542]\n", + " [ 0.6411644 -0.48633634 -0.5936204 ]\n", + " [ 0.66710612 -0.46271772 -0.58383366]\n", + " [ 0.69235555 -0.43830363 -0.57317861]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:fp_optics: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:cartToSphere: vec: [[-0.17413764 -0.2819103 0.94350552]\n", + " [-0.15143853 -0.29823084 0.9424037 ]\n", + " [-0.12816239 -0.31463725 0.94051996]\n", + " [-0.10439571 -0.33105077 0.9378203 ]\n", + " [-0.0802261 -0.34739602 0.93428035]\n", + " [-0.05574374 -0.36360003 0.92988583]\n", + " [-0.03104216 -0.37959201 0.92463306]\n", + " [-0.00621805 -0.39530365 0.91852945]\n", + " [-0.17413764 -0.2819103 0.94350552]\n", + " [-0.1903006 -0.30383283 0.93352627]\n", + " [-0.20617284 -0.3254898 0.92279421]\n", + " [-0.22169231 -0.346802 0.91136211]\n", + " [-0.2367978 -0.36769505 0.89929258]\n", + " [-0.2514286 -0.38809961 0.88665797]\n", + " [-0.26552397 -0.40795134 0.87354034]\n", + " [-0.27902285 -0.42719065 0.86003163]\n", + " [-0.00621805 -0.39530365 0.91852945]\n", + " [-0.02306383 -0.4178985 0.90820091]\n", + " [-0.03983262 -0.44004803 0.89709035]\n", + " [-0.05645859 -0.4616702 0.8852531 ]\n", + " [-0.072878 -0.48269018 0.87275368]\n", + " [-0.08902941 -0.50304049 0.85966507]\n", + " [-0.10485326 -0.52266031 0.84606855]\n", + " [-0.12029092 -0.54149424 0.83205414]\n", + " [-0.27902285 -0.42719065 0.86003163]\n", + " [-0.25804929 -0.44413775 0.85799314]\n", + " [-0.23635748 -0.4610091 0.85533955]\n", + " [-0.21403787 -0.47772273 0.85203802]\n", + " [-0.19118065 -0.49420054 0.84806591]\n", + " [-0.16787619 -0.51036813 0.8434109 ]\n", + " [-0.14421557 -0.52615487 0.83807095]\n", + " [-0.12029092 -0.54149424 0.83205414]\n", + " [-0.16437316 -0.28908596 0.94308577]\n", + " [-0.1361547 -0.30915708 0.941214 ]\n", + " [-0.10715531 -0.32927836 0.93813299]\n", + " [-0.07753573 -0.34930965 0.93379386]\n", + " [-0.04746207 -0.36911663 0.92817038]\n", + " [-0.01710787 -0.38856994 0.9212604 ]\n", + " [-0.18114018 -0.29155186 0.93924744]\n", + " [-0.20076259 -0.31825247 0.92650405]\n", + " [-0.2198867 -0.34447483 0.91268118]\n", + " [-0.23839949 -0.37007996 0.89789003]\n", + " [-0.25618911 -0.39494022 0.88226377]\n", + " [-0.27314362 -0.41893915 0.86595759]\n", + " [-0.01365302 -0.40515114 0.91414777]\n", + " [-0.03425563 -0.43255465 0.90095673]\n", + " [-0.05467682 -0.4592071 0.88664496]\n", + " [-0.07479835 -0.48496771 0.87132745]\n", + " [-0.09450706 -0.50971214 0.85513855]\n", + " [-0.11369376 -0.53333076 0.83823149]\n", + " [-0.2699268 -0.43451887 0.85926298]\n", + " [-0.24372569 -0.45524895 0.85635634]\n", + " [-0.21653572 -0.47578346 0.85249186]\n", + " [-0.18852305 -0.49597703 0.84762365]\n", + " [-0.15985408 -0.51569269 0.84172901]\n", + " [-0.13069694 -0.5348021 0.83480837]\n", + " [-0.17411679 -0.2820412 0.94347025]\n", + " [-0.17411679 -0.2820412 0.94347025]\n", + " [-0.12032101 -0.54137961 0.83212437]\n", + " [-0.12032101 -0.54137961 0.83212437]\n", + " [-0.17142577 -0.2986329 0.93884588]\n", + " [-0.19114375 -0.32542352 0.9260473 ]\n", + " [-0.21038215 -0.35171653 0.91215943]\n", + " [-0.22902815 -0.37737262 0.89729371]\n", + " [-0.24697037 -0.40226407 0.88158338]\n", + " [-0.26409737 -0.4262746 0.86518353]\n", + " [-0.14328137 -0.31879509 0.93693124]\n", + " [-0.1632454 -0.34580865 0.9239953 ]\n", + " [-0.18278286 -0.37227148 0.90994746]\n", + " [-0.20178104 -0.39804319 0.89490001]\n", + " [-0.22012979 -0.42299603 0.87898648]\n", + " [-0.23771937 -0.44701447 0.86236162]\n", + " [-0.114343 -0.33898984 0.9338156 ]\n", + " [-0.13451679 -0.36617809 0.92077078]\n", + " [-0.15431758 -0.39276477 0.9065991 ]\n", + " [-0.17363218 -0.41860866 0.89141385]\n", + " [-0.19235101 -0.44358226 0.875349 ]\n", + " [-0.21036582 -0.46757115 0.85855893]\n", + " [-0.08477107 -0.35907653 0.92945033]\n", + " [-0.10511791 -0.38638973 0.91632593]\n", + " [-0.12514675 -0.41305297 0.90206737]\n", + " [-0.14474327 -0.43892459 0.88678892]\n", + " [-0.16379763 -0.46387771 0.87062495]\n", + " [-0.1822023 -0.48779933 0.85372955]\n", + " [-0.05473127 -0.37892024 0.92380947]\n", + " [-0.07521341 -0.40630719 0.91063572]\n", + " [-0.09543442 -0.43299872 0.89632828]\n", + " [-0.11527838 -0.45885319 0.88100207]\n", + " [-0.1346344 -0.48374471 0.86479167]\n", + " [-0.15339478 -0.50756182 0.84785084]\n", + " [-0.02439672 -0.39839112 0.91689111]\n", + " [-0.044975 -0.42579958 0.90369905]\n", + " [-0.06535082 -0.45247078 0.88938151]\n", + " [-0.08540652 -0.4782636 0.87405358]\n", + " [-0.10502957 -0.5030533 0.85784973]\n", + " [-0.1241113 -0.52672985 0.84092333]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:fp_optics: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:cartToSphere: vec: [[-0.48434401 0.05828601 -0.87293392]\n", + " [-0.46403033 0.07497246 -0.88264092]\n", + " [-0.44293811 0.09192868 -0.89182675]\n", + " [-0.42113111 0.10908387 -0.90041618]\n", + " [-0.39867825 0.12636768 -0.90834292]\n", + " [-0.37565467 0.14370958 -0.91554963]\n", + " [-0.35214202 0.16103883 -0.92198834]\n", + " [-0.32822806 0.17828499 -0.92762104]\n", + " [-0.48434401 0.05828601 -0.87293392]\n", + " [-0.49859849 0.08154052 -0.86298939]\n", + " [-0.51231859 0.10471129 -0.85238794]\n", + " [-0.52545459 0.12771041 -0.84118222]\n", + " [-0.53796121 0.15045247 -0.82943462]\n", + " [-0.54979707 0.1728549 -0.81721745]\n", + " [-0.56092385 0.19483774 -0.80461337]\n", + " [-0.57130525 0.21632322 -0.79171622]\n", + " [-0.32822806 0.17828499 -0.92762104]\n", + " [-0.3430757 0.20224263 -0.91727694]\n", + " [-0.35756651 0.2259436 -0.9061433 ]\n", + " [-0.3716477 0.24929707 -0.89427566]\n", + " [-0.38527166 0.27221654 -0.88173914]\n", + " [-0.39839615 0.29462044 -0.86860768]\n", + " [-0.41098412 0.31643198 -0.85496365]\n", + " [-0.42300307 0.33757831 -0.84089791]\n", + " [-0.57130525 0.21632322 -0.79171622]\n", + " [-0.55238789 0.23378025 -0.800134 ]\n", + " [-0.53259391 0.25131402 -0.80819861]\n", + " [-0.51199281 0.26885015 -0.81583268]\n", + " [-0.49065614 0.28631572 -0.82297015]\n", + " [-0.46865878 0.30363898 -0.8295555 ]\n", + " [-0.44607984 0.32074944 -0.83554328]\n", + " [-0.42300307 0.33757831 -0.84089791]\n", + " [-0.4756366 0.06560348 -0.87719211]\n", + " [-0.45020924 0.0862456 -0.88874818]\n", + " [-0.42367526 0.10722232 -0.89944575]\n", + " [-0.3961593 0.128404 -0.90915907]\n", + " [-0.36779973 0.14966079 -0.91778266]\n", + " [-0.33874944 0.17086254 -0.9252323 ]\n", + " [-0.49055349 0.06848647 -0.86871565]\n", + " [-0.50767153 0.09694286 -0.85607926]\n", + " [-0.52393711 0.12518571 -0.84250724]\n", + " [-0.539265 0.15305675 -0.82811043]\n", + " [-0.55357895 0.18040391 -0.813022 ]\n", + " [-0.56680931 0.20708097 -0.7973987 ]\n", + " [-0.33482432 0.18869744 -0.92319334]\n", + " [-0.35278835 0.21789902 -0.90997824]\n", + " [-0.37016325 0.2466245 -0.89563135]\n", + " [-0.3868592 0.27471279 -0.88026862]\n", + " [-0.40279841 0.30201369 -0.86402614]\n", + " [-0.41791463 0.32838757 -0.84705901]\n", + " [-0.56313479 0.2238477 -0.7954693 ]\n", + " [-0.53935025 0.2453041 -0.80556018]\n", + " [-0.51431793 0.2668018 -0.81504224]\n", + " [-0.48816864 0.288206 -0.82378922]\n", + " [-0.4610403 0.30938458 -0.83169887]\n", + " [-0.43308051 0.33020849 -0.83869162]\n", + " [-0.48432553 0.05842209 -0.87293507]\n", + " [-0.48432553 0.05842209 -0.87293507]\n", + " [-0.42304264 0.33745022 -0.84092941]\n", + " [-0.42304264 0.33745022 -0.84092941]\n", + " [-0.48189015 0.07570609 -0.87295502]\n", + " [-0.49908943 0.10425958 -0.86025559]\n", + " [-0.51544905 0.13258248 -0.84660154]\n", + " [-0.53088398 0.16051606 -0.83210383]\n", + " [-0.54531866 0.18790815 -0.8168954 ]\n", + " [-0.55868454 0.2146128 -0.80113228]\n", + " [-0.45652763 0.09644401 -0.88446655]\n", + " [-0.47393683 0.12523749 -0.8716074 ]\n", + " [-0.49054447 0.15375248 -0.85774489]\n", + " [-0.50626561 0.18182902 -0.84299071]\n", + " [-0.52102593 0.2093147 -0.82747769]\n", + " [-0.53475952 0.2360645 -0.81136047]\n", + " [-0.43004701 0.11749769 -0.89512785]\n", + " [-0.44763616 0.14647808 -0.8821372 ]\n", + " [-0.46446544 0.17513267 -0.86810161]\n", + " [-0.48044926 0.20330049 -0.85313388]\n", + " [-0.49551359 0.23082913 -0.83736742]\n", + " [-0.50959405 0.25757465 -0.82095628]\n", + " [-0.4025726 0.13873693 -0.90481344]\n", + " [-0.42031119 0.1678496 -0.89172026]\n", + " [-0.43733578 0.19658993 -0.87754761]\n", + " [-0.45355969 0.22479635 -0.86240954]\n", + " [-0.46890833 0.25231673 -0.84644034]\n", + " [-0.48331772 0.27900839 -0.82979413]\n", + " [-0.37424243 0.16003133 -0.91341808]\n", + " [-0.39209895 0.18922027 -0.90025224]\n", + " [-0.40929174 0.21799155 -0.88597966]\n", + " [-0.42573277 0.24618347 -0.8707154 ]\n", + " [-0.44134633 0.27364452 -0.8545947 ]\n", + " [-0.45606788 0.30023333 -0.83777207]\n", + " [-0.34520906 0.18125031 -0.92085777]\n", + " [-0.36315093 0.21045868 -0.90765001]\n", + " [-0.38048353 0.2392058 -0.89331566]\n", + " [-0.39711748 0.26733035 -0.8779705 ]\n", + " [-0.41297557 0.29468174 -0.86175046]\n", + " [-0.42799206 0.32111992 -0.84481051]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:fp_optics: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:cartToSphere: vec: [[ 0.28444629 0.45959545 -0.84134555]\n", + " [ 0.26093824 0.47277964 -0.84165946]\n", + " [ 0.23667707 0.48577067 -0.84143379]\n", + " [ 0.21176233 0.49850372 -0.84062522]\n", + " [ 0.18629376 0.51091762 -0.8392007 ]\n", + " [ 0.16037158 0.52295481 -0.83713752]\n", + " [ 0.13409686 0.53456141 -0.83442323]\n", + " [ 0.10757183 0.5456876 -0.83105556]\n", + " [ 0.28444629 0.45959545 -0.84134555]\n", + " [ 0.27584916 0.43834257 -0.85543149]\n", + " [ 0.26671956 0.41636949 -0.86919337]\n", + " [ 0.25709894 0.39374558 -0.88253303]\n", + " [ 0.2470286 0.37054453 -0.89536228]\n", + " [ 0.23654977 0.34684473 -0.90760285]\n", + " [ 0.22570403 0.3227294 -0.91918629]\n", + " [ 0.21453377 0.29828657 -0.93005397]\n", + " [ 0.10757183 0.5456876 -0.83105556]\n", + " [ 0.09697386 0.52453982 -0.84584517]\n", + " [ 0.08607693 0.50253864 -0.86025907]\n", + " [ 0.07492092 0.47974891 -0.87420126]\n", + " [ 0.06354621 0.45624022 -0.88758478]\n", + " [ 0.0519945 0.43208847 -0.90033112]\n", + " [ 0.04030926 0.40737692 -0.9123701 ]\n", + " [ 0.02853571 0.38219628 -0.92364047]\n", + " [ 0.21453377 0.29828657 -0.93005397]\n", + " [ 0.18944842 0.31059926 -0.93147055]\n", + " [ 0.16370594 0.3229025 -0.93216648]\n", + " [ 0.13740126 0.33513386 -0.93209773]\n", + " [ 0.11063065 0.34723418 -0.93122999]\n", + " [ 0.08349341 0.3591469 -0.92953879]\n", + " [ 0.05609279 0.37081799 -0.92701004]\n", + " [ 0.02853571 0.38219628 -0.92364047]\n", + " [ 0.2742667 0.4652918 -0.84159451]\n", + " [ 0.24493477 0.48132869 -0.84162322]\n", + " [ 0.21457056 0.49701073 -0.84079713]\n", + " [ 0.18335763 0.51222382 -0.83905109]\n", + " [ 0.1514805 0.52686198 -0.8363433 ]\n", + " [ 0.11912573 0.54082768 -0.83265508]\n", + " [ 0.28068653 0.45046718 -0.8475225 ]\n", + " [ 0.26978521 0.42392647 -0.86458215]\n", + " [ 0.25812545 0.3963723 -0.88105633]\n", + " [ 0.24578334 0.36793857 -0.89677854]\n", + " [ 0.23283484 0.33876958 -0.91160469]\n", + " [ 0.21935682 0.30902054 -0.92541282]\n", + " [ 0.10308178 0.5365387 -0.83755619]\n", + " [ 0.08988775 0.51003771 -0.85544242]\n", + " [ 0.07628411 0.48231894 -0.87266785]\n", + " [ 0.06234495 0.45350845 -0.88906872]\n", + " [ 0.04814708 0.42374613 -0.90450046]\n", + " [ 0.03377126 0.39318836 -0.91883753]\n", + " [ 0.20372222 0.30373632 -0.93072096]\n", + " [ 0.17252413 0.31882929 -0.93197817]\n", + " [ 0.14043321 0.33384548 -0.93210821]\n", + " [ 0.10762602 0.34867464 -0.93104384]\n", + " [ 0.07428551 0.36321267 -0.92874012]\n", + " [ 0.04060329 0.37736123 -0.92517559]\n", + " [ 0.28433885 0.45956941 -0.84139609]\n", + " [ 0.28433885 0.45956941 -0.84139609]\n", + " [ 0.02867045 0.38224473 -0.92361625]\n", + " [ 0.02867045 0.38224473 -0.92361625]\n", + " [ 0.27055104 0.45617978 -0.84776302]\n", + " [ 0.25948513 0.42960086 -0.86493385]\n", + " [ 0.24768277 0.40199285 -0.88150723]\n", + " [ 0.23521967 0.37348931 -0.8973168 ]\n", + " [ 0.22217127 0.34423446 -0.91221849]\n", + " [ 0.2086141 0.31438376 -0.92609017]\n", + " [ 0.24104575 0.47219869 -0.84789466]\n", + " [ 0.22953118 0.44554076 -0.86533743]\n", + " [ 0.21734246 0.41781131 -0.88215416]\n", + " [ 0.20455385 0.38914276 -0.89817906]\n", + " [ 0.19123942 0.35967888 -0.91326808]\n", + " [ 0.17747507 0.32957584 -0.92729842]\n", + " [ 0.21051704 0.4878773 -0.84714716]\n", + " [ 0.1985788 0.46118386 -0.86479819]\n", + " [ 0.18602806 0.43337943 -0.8818026 ]\n", + " [ 0.17293774 0.40459491 -0.89799526]\n", + " [ 0.15938116 0.3749734 -0.91323195]\n", + " [ 0.14543424 0.34467166 -0.92738898]\n", + " [ 0.179148 0.50310148 -0.84545544]\n", + " [ 0.16680919 0.47641591 -0.86325117]\n", + " [ 0.15391871 0.44858312 -0.88038754]\n", + " [ 0.14054886 0.41973232 -0.89669995]\n", + " [ 0.12677305 0.39000573 -0.91204393]\n", + " [ 0.11266804 0.35956043 -0.92629488]\n", + " [ 0.14712274 0.51776495 -0.84277776]\n", + " [ 0.13440531 0.4911299 -0.86065477]\n", + " [ 0.12119656 0.46331498 -0.87786709]\n", + " [ 0.10756902 0.43444782 -0.89425052]\n", + " [ 0.09359714 0.40466961 -0.90966042]\n", + " [ 0.07935912 0.3741374 -0.9239715 ]\n", + " [ 0.11462783 0.53176976 -0.83909558]\n", + " [ 0.10155401 0.50522666 -0.85699055]\n", + " [ 0.08804921 0.47747497 -0.87422251]\n", + " [ 0.07418699 0.44864104 -0.89062759]\n", + " [ 0.06004348 0.41886508 -0.90606116]\n", + " [ 0.04569877 0.38830372 -0.92039765]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:cartToSphere: vec: [[ 0.19036976 0.5557833 0.80923685]\n", + " [ 0.18743687 0.5329197 0.82514484]\n", + " [ 0.18429513 0.50917028 0.84070264]\n", + " [ 0.18094872 0.48460621 0.85581212]\n", + " [ 0.17740378 0.45930396 0.87038369]\n", + " [ 0.17366863 0.43334697 0.88433569]\n", + " [ 0.16975395 0.40682652 0.89759444]\n", + " [ 0.16567278 0.37984155 0.91009501]\n", + " [ 0.19036976 0.5557833 0.80923685]\n", + " [ 0.16194633 0.56109003 0.8117582 ]\n", + " [ 0.13346916 0.56582922 0.81364813]\n", + " [ 0.10505115 0.56998676 0.81491064]\n", + " [ 0.07680612 0.57355317 0.81555967]\n", + " [ 0.04884888 0.57652311 0.81561933]\n", + " [ 0.02129572 0.57889476 0.81512413]\n", + " [-0.00573478 0.58066944 0.81411923]\n", + " [ 0.16567278 0.37984155 0.91009501]\n", + " [ 0.13628356 0.38545495 0.91260686]\n", + " [ 0.10686807 0.39070185 0.91429278]\n", + " [ 0.07754436 0.39556651 0.91515791]\n", + " [ 0.04842881 0.40003816 0.91521808]\n", + " [ 0.01963544 0.40411087 0.91449924]\n", + " [-0.00872362 0.40778325 0.91303708]\n", + " [-0.03653646 0.41105803 0.91087671]\n", + " [-0.00573478 0.58066944 0.81411923]\n", + " [-0.01034893 0.55873465 0.82928191]\n", + " [-0.01490411 0.53589968 0.8441501 ]\n", + " [-0.01939561 0.51224173 0.85862228]\n", + " [-0.02381585 0.48784136 0.87260737]\n", + " [-0.0281546 0.46278335 0.8860242 ]\n", + " [-0.03239948 0.43715732 0.89880128]\n", + " [-0.03653646 0.41105803 0.91087671]\n", + " [ 0.18901953 0.54594718 0.8162189 ]\n", + " [ 0.18528312 0.51732123 0.83549321]\n", + " [ 0.18123716 0.48743496 0.85414299]\n", + " [ 0.17689211 0.45642682 0.87199985]\n", + " [ 0.17226331 0.42445054 0.88891343]\n", + " [ 0.16737143 0.39167738 0.9047517 ]\n", + " [ 0.17798077 0.55808922 0.81046855]\n", + " [ 0.14309364 0.56421381 0.81313406]\n", + " [ 0.10823788 0.56947148 0.81485385]\n", + " [ 0.07362267 0.57384289 0.81564946]\n", + " [ 0.03945943 0.57731812 0.81556529]\n", + " [ 0.00596315 0.57989515 0.81466929]\n", + " [ 0.15288403 0.38242579 0.91125023]\n", + " [ 0.11683204 0.38906118 0.91377332]\n", + " [ 0.08085799 0.3951297 0.91505984]\n", + " [ 0.04517689 0.40060945 0.91513448]\n", + " [ 0.0099987 0.40548952 0.91404501]\n", + " [-0.02447036 0.40976906 0.91186102]\n", + " [-0.00766186 0.57121591 0.82076408]\n", + " [-0.01327682 0.54371672 0.83916378]\n", + " [-0.01879904 0.51494176 0.85701901]\n", + " [-0.02421576 0.48503793 0.87415777]\n", + " [-0.02950821 0.45416135 0.89043064]\n", + " [-0.03465286 0.42247916 0.90570996]\n", + " [ 0.19026311 0.5557258 0.80930142]\n", + " [ 0.19026311 0.5557258 0.80930142]\n", + " [-0.03642847 0.41113745 0.91084519]\n", + " [-0.03642847 0.41113745 0.91084519]\n", + " [ 0.17668899 0.54832132 0.81738897]\n", + " [ 0.14166594 0.55448613 0.82004627]\n", + " [ 0.1066757 0.55979871 0.82173335]\n", + " [ 0.07192778 0.5642401 0.82247158]\n", + " [ 0.03763332 0.56780101 0.82230514]\n", + " [ 0.00400657 0.57048006 0.82130168]\n", + " [ 0.17283134 0.51972292 0.83667043]\n", + " [ 0.13746738 0.52599527 0.8393043 ]\n", + " [ 0.10214181 0.53145907 0.84090327]\n", + " [ 0.06706531 0.53609617 0.84148865]\n", + " [ 0.03244851 0.5398987 0.84110433]\n", + " [-0.00149649 0.54286707 0.8398173 ]\n", + " [ 0.16868711 0.48986002 0.85532556]\n", + " [ 0.13304843 0.49623091 0.85793531]\n", + " [ 0.09745558 0.50184086 0.85945225]\n", + " [ 0.0621207 0.50667184 0.85989806]\n", + " [ 0.02725416 0.51071669 0.85931698]\n", + " [-0.00693392 0.51397697 0.85777596]\n", + " [ 0.16426744 0.458871 0.8731859 ]\n", + " [ 0.12842207 0.46533173 0.87577061]\n", + " [ 0.09263134 0.47108374 0.87721123]\n", + " [ 0.05710878 0.47610849 0.87753022]\n", + " [ 0.0220647 0.48039857 0.8767727 ]\n", + " [-0.01229248 0.48395583 0.87500609]\n", + " [ 0.15958847 0.42690943 0.89010104]\n", + " [ 0.12360655 0.43345102 0.89265987]\n", + " [ 0.08768893 0.43934105 0.89403025]\n", + " [ 0.05205017 0.44455981 0.89423562]\n", + " [ 0.01690053 0.44909883 0.89332223]\n", + " [-0.01755283 0.45295929 0.89135839]\n", + " [ 0.15467153 0.39414641 0.90593892]\n", + " [ 0.11862497 0.40075917 0.90847136]\n", + " [ 0.08265278 0.40678222 0.9097784 ]\n", + " [ 0.04696995 0.41219428 0.90988444]\n", + " [ 0.01178657 0.41698513 0.90883688]\n", + " [-0.02269099 0.42115456 0.906705 ]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:fp_optics: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:fp_optics: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:cartToSphere: vec: [[-3.52046751e-02 -1.90594370e-01 -9.81037419e-01]\n", + " [-3.73332435e-02 -2.17924085e-01 -9.75251415e-01]\n", + " [-3.94745196e-02 -2.45619965e-01 -9.68562128e-01]\n", + " [-4.16182934e-02 -2.73562287e-01 -9.60953481e-01]\n", + " [-4.37547714e-02 -3.01633720e-01 -9.52419350e-01]\n", + " [-4.58744510e-02 -3.29717672e-01 -9.42964364e-01]\n", + " [-4.79680873e-02 -3.57697817e-01 -9.32604597e-01]\n", + " [-5.00267485e-02 -3.85458741e-01 -9.21367941e-01]\n", + " [-3.52046751e-02 -1.90594370e-01 -9.81037419e-01]\n", + " [-6.27148555e-03 -1.92950454e-01 -9.81188458e-01]\n", + " [ 2.25674401e-02 -1.95233645e-01 -9.80497086e-01]\n", + " [ 5.11991665e-02 -1.97440060e-01 -9.78977052e-01]\n", + " [ 7.95111907e-02 -1.99569807e-01 -9.76652376e-01]\n", + " [ 1.07391296e-01 -2.01627483e-01 -9.73557121e-01]\n", + " [ 1.34726934e-01 -2.03622684e-01 -9.69735250e-01]\n", + " [ 1.61404347e-01 -2.05570330e-01 -9.65240631e-01]\n", + " [-5.00267485e-02 -3.85458741e-01 -9.21367941e-01]\n", + " [-2.00876566e-02 -3.87746136e-01 -9.21547297e-01]\n", + " [ 9.77298994e-03 -3.89680409e-01 -9.20898294e-01]\n", + " [ 3.94368478e-02 -3.91258869e-01 -9.19435279e-01]\n", + " [ 6.87886197e-02 -3.92483494e-01 -9.17183097e-01]\n", + " [ 9.77166843e-02 -3.93360773e-01 -9.14176543e-01]\n", + " [ 1.26112575e-01 -3.93901511e-01 -9.10459894e-01]\n", + " [ 1.53869302e-01 -3.94120653e-01 -9.06086722e-01]\n", + " [ 1.61404347e-01 -2.05570330e-01 -9.65240631e-01]\n", + " [ 1.61104791e-01 -2.31982024e-01 -9.59285978e-01]\n", + " [ 1.60530381e-01 -2.58771400e-01 -9.52505832e-01]\n", + " [ 1.59692116e-01 -2.85812217e-01 -9.44886133e-01]\n", + " [ 1.58599253e-01 -3.12983142e-01 -9.36422890e-01]\n", + " [ 1.57259715e-01 -3.40166874e-01 -9.27122365e-01]\n", + " [ 1.55680706e-01 -3.67249553e-01 -9.17001245e-01]\n", + " [ 1.53869302e-01 -3.94120653e-01 -9.06086722e-01]\n", + " [-3.60311344e-02 -2.02465573e-01 -9.78626307e-01]\n", + " [-3.86487941e-02 -2.36222527e-01 -9.70930064e-01]\n", + " [-4.12755261e-02 -2.70410124e-01 -9.61860019e-01]\n", + " [-4.38931428e-02 -3.04811482e-01 -9.51400732e-01]\n", + " [-4.64841525e-02 -3.39211908e-01 -9.39560804e-01]\n", + " [-4.90316661e-02 -3.73397562e-01 -9.26374739e-01]\n", + " [-2.25921925e-02 -1.91722906e-01 -9.81189034e-01]\n", + " [ 1.28202836e-02 -1.94562107e-01 -9.80806417e-01]\n", + " [ 4.79789088e-02 -1.97287340e-01 -9.79170940e-01]\n", + " [ 8.26763756e-02 -1.99897122e-01 -9.76322568e-01]\n", + " [ 1.16706028e-01 -2.02399973e-01 -9.72323996e-01]\n", + " [ 1.49860210e-01 -2.04815763e-01 -9.67260265e-01]\n", + " [-3.69642541e-02 -3.86404688e-01 -9.21588336e-01]\n", + " [-3.08696618e-04 -3.88971400e-01 -9.21249779e-01]\n", + " [ 3.61111557e-02 -3.91004706e-01 -9.19680001e-01]\n", + " [ 7.20817122e-02 -3.92506307e-01 -9.16920403e-01]\n", + " [ 1.07397423e-01 -3.93488123e-01 -9.13034989e-01]\n", + " [ 1.41859333e-01 -3.93971759e-01 -9.08109125e-01]\n", + " [ 1.61217915e-01 -2.17025006e-01 -9.62761097e-01]\n", + " [ 1.60663359e-01 -2.49666606e-01 -9.54910399e-01]\n", + " [ 1.59707275e-01 -2.82749463e-01 -9.45804593e-01]\n", + " [ 1.58367418e-01 -3.16048214e-01 -9.35432139e-01]\n", + " [ 1.56658443e-01 -3.49346845e-01 -9.23804587e-01]\n", + " [ 1.54593534e-01 -3.82437113e-01 -9.10957021e-01]\n", + " [-3.51129438e-02 -1.90695238e-01 -9.81021104e-01]\n", + " [-3.51129438e-02 -1.90695238e-01 -9.81021104e-01]\n", + " [ 1.53782178e-01 -3.94029022e-01 -9.06141364e-01]\n", + " [ 1.53782178e-01 -3.94029022e-01 -9.06141364e-01]\n", + " [-2.34610727e-02 -2.03495254e-01 -9.78794800e-01]\n", + " [ 1.20924102e-02 -2.06321443e-01 -9.78409544e-01]\n", + " [ 4.73934772e-02 -2.09005783e-01 -9.76765295e-01]\n", + " [ 8.22346025e-02 -2.11546379e-01 -9.73902254e-01]\n", + " [ 1.16409506e-01 -2.13951211e-01 -9.69883347e-01]\n", + " [ 1.49711395e-01 -2.16239583e-01 -9.64793730e-01]\n", + " [-2.59545940e-02 -2.37256746e-01 -9.71100199e-01]\n", + " [ 9.95395417e-03 -2.40043879e-01 -9.70711005e-01]\n", + " [ 4.56133421e-02 -2.42612021e-01 -9.69050479e-01]\n", + " [ 8.08150419e-02 -2.44958523e-01 -9.66159537e-01]\n", + " [ 1.15353575e-01 -2.47090296e-01 -9.62101834e-01]\n", + " [ 1.49024622e-01 -2.49025318e-01 -9.56962932e-01]\n", + " [-2.84805368e-02 -2.71447070e-01 -9.62031885e-01]\n", + " [ 7.71661425e-03 -2.74191142e-01 -9.61644254e-01]\n", + " [ 4.36671489e-02 -2.76641097e-01 -9.59980668e-01]\n", + " [ 7.91611392e-02 -2.78794277e-01 -9.57082685e-01]\n", + " [ 1.13993479e-01 -2.80657435e-01 -9.53014633e-01]\n", + " [ 1.47962033e-01 -2.82248019e-01 -9.47862486e-01]\n", + " [-3.10214002e-02 -3.05849249e-01 -9.51574437e-01]\n", + " [ 5.39615800e-03 -3.08545653e-01 -9.51194229e-01]\n", + " [ 4.15695750e-02 -3.10874343e-01 -9.49541528e-01]\n", + " [ 7.72874286e-02 -3.12833394e-01 -9.46658292e-01]\n", + " [ 1.12344631e-01 -3.14430361e-01 -9.42609268e-01]\n", + " [ 1.46540712e-01 -3.15683129e-01 -9.37480657e-01]\n", + " [-3.35604989e-02 -3.40248535e-01 -9.39736467e-01]\n", + " [ 3.00715197e-03 -3.42892606e-01 -9.39369798e-01]\n", + " [ 3.93336307e-02 -3.45096987e-01 -9.37742467e-01]\n", + " [ 7.52062474e-02 -3.46861076e-01 -9.34896472e-01]\n", + " [ 1.10419736e-01 -3.48194011e-01 -9.30896564e-01]\n", + " [ 1.44774682e-01 -3.49114951e-01 -9.25828841e-01]\n", + " [-3.60816425e-02 -3.74431081e-01 -9.26552471e-01]\n", + " [ 5.63902358e-04 -3.77018609e-01 -9.26205512e-01]\n", + " [ 3.69721305e-02 -3.79096673e-01 -9.24618177e-01]\n", + " [ 7.29295750e-02 -3.80666350e-01 -9.21832093e-01]\n", + " [ 1.08230751e-01 -3.81738808e-01 -9.17911536e-01]\n", + " [ 1.42676687e-01 -3.82334984e-01 -9.12942125e-01]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:fp_optics: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:cartToSphere: vec: [[ 0.28853668 -0.79140836 0.53890573]\n", + " [ 0.29953199 -0.80268231 0.51573413]\n", + " [ 0.31050392 -0.8135308 0.49168584]\n", + " [ 0.32139566 -0.82387554 0.46683394]\n", + " [ 0.33215356 -0.83364654 0.44125667]\n", + " [ 0.34272652 -0.84278173 0.41503914]\n", + " [ 0.35306596 -0.85122715 0.3882741 ]\n", + " [ 0.36312614 -0.8589376 0.36106177]\n", + " [ 0.28853668 -0.79140836 0.53890573]\n", + " [ 0.2631439 -0.80416807 0.53298124]\n", + " [ 0.23765023 -0.81625351 0.52654779]\n", + " [ 0.21215948 -0.82762816 0.51963448]\n", + " [ 0.18677849 -0.83826523 0.51227453]\n", + " [ 0.16161741 -0.84814783 0.50450477]\n", + " [ 0.13679043 -0.85726888 0.49636524]\n", + " [ 0.11241667 -0.86563094 0.48789914]\n", + " [ 0.36312614 -0.8589376 0.36106177]\n", + " [ 0.33679894 -0.87206801 0.35505473]\n", + " [ 0.31025501 -0.88437427 0.3487463 ]\n", + " [ 0.28360361 -0.89581886 0.34216598]\n", + " [ 0.25695498 -0.90637564 0.3353466 ]\n", + " [ 0.23041957 -0.91602955 0.32832406]\n", + " [ 0.20410837 -0.92477603 0.32113714]\n", + " [ 0.1781343 -0.93262012 0.3138278 ]\n", + " [ 0.11241667 -0.86563094 0.48789914]\n", + " [ 0.12137654 -0.8769539 0.46499419]\n", + " [ 0.1305703 -0.88781109 0.44129679]\n", + " [ 0.13993839 -0.89812213 0.41688594]\n", + " [ 0.14942654 -0.90781594 0.39184427]\n", + " [ 0.15898516 -0.91683055 0.36625874]\n", + " [ 0.16856852 -0.92511311 0.34022108]\n", + " [ 0.1781343 -0.93262012 0.3138278 ]\n", + " [ 0.29324286 -0.79641569 0.52889572]\n", + " [ 0.30670951 -0.8099577 0.49989779]\n", + " [ 0.32008436 -0.82278184 0.46965524]\n", + " [ 0.33326738 -0.83475585 0.43830985]\n", + " [ 0.34616452 -0.84576545 0.40601838]\n", + " [ 0.35868748 -0.85571494 0.37295474]\n", + " [ 0.27752147 -0.79709116 0.53630916]\n", + " [ 0.24631827 -0.8122815 0.52870226]\n", + " [ 0.21506627 -0.82642153 0.52035945]\n", + " [ 0.1839609 -0.83945792 0.51134019]\n", + " [ 0.15320503 -0.85135954 0.50171222]\n", + " [ 0.12301087 -0.86211737 0.49155058]\n", + " [ 0.35164709 -0.8647359 0.35857515]\n", + " [ 0.31922115 -0.88027964 0.35100657]\n", + " [ 0.28657816 -0.89454701 0.34301401]\n", + " [ 0.25392069 -0.90748512 0.3346566 ]\n", + " [ 0.22145213 -0.91906622 0.32600037]\n", + " [ 0.18937748 -0.92928593 0.31711802]\n", + " [ 0.1163734 -0.87059235 0.47804413]\n", + " [ 0.1275212 -0.88416761 0.44942851]\n", + " [ 0.13896033 -0.89696232 0.41970063]\n", + " [ 0.15058871 -0.9088418 0.38901108]\n", + " [ 0.16231494 -0.91969197 0.35751999]\n", + " [ 0.1740563 -0.92941939 0.32539823]\n", + " [ 0.28848771 -0.79149227 0.53880871]\n", + " [ 0.28848771 -0.79149227 0.53880871]\n", + " [ 0.17818977 -0.93257051 0.31394371]\n", + " [ 0.17818977 -0.93257051 0.31394371]\n", + " [ 0.28223267 -0.80203535 0.52638771]\n", + " [ 0.25089597 -0.81727098 0.51876715]\n", + " [ 0.21949765 -0.83143603 0.5104262 ]\n", + " [ 0.18823323 -0.84447699 0.50142483]\n", + " [ 0.15730507 -0.85636274 0.49183125]\n", + " [ 0.1269244 -0.86708431 0.48172087]\n", + " [ 0.29558848 -0.81562951 0.49736903]\n", + " [ 0.26391382 -0.83097739 0.4897204 ]\n", + " [ 0.23214356 -0.84520156 0.48139764]\n", + " [ 0.20047401 -0.8582482 0.47246186]\n", + " [ 0.16910653 -0.87008634 0.46298244]\n", + " [ 0.13824971 -0.88070752 0.45303563]\n", + " [ 0.30887307 -0.8284957 0.46711058]\n", + " [ 0.27692039 -0.84393148 0.45945049]\n", + " [ 0.24484102 -0.85819679 0.45116643]\n", + " [ 0.21283264 -0.87123769 0.44232019]\n", + " [ 0.18109635 -0.88302378 0.43298166]\n", + " [ 0.14983862 -0.8935474 0.42322741]\n", + " [ 0.32198699 -0.84050136 0.43575435]\n", + " [ 0.28981767 -0.8559999 0.42810032]\n", + " [ 0.25749273 -0.8702878 0.41987694]\n", + " [ 0.22521153 -0.88331125 0.41114596]\n", + " [ 0.19317554 -0.89504062 0.40197699]\n", + " [ 0.16158994 -0.90546931 0.39244619]\n", + " [ 0.33483688 -0.85153187 0.40345724]\n", + " [ 0.30251427 -0.86706738 0.39582734]\n", + " [ 0.27000882 -0.88135911 0.38768718]\n", + " [ 0.23752155 -0.8943536 0.3790978 ]\n", + " [ 0.20525471 -0.90602208 0.37012769]\n", + " [ 0.17341293 -0.91635904 0.36085187]\n", + " [ 0.34733511 -0.86149123 0.37039327]\n", + " [ 0.31492442 -0.87703747 0.36280557]\n", + " [ 0.2823053 -0.89131443 0.35477077]\n", + " [ 0.24968003 -0.90426907 0.34634856]\n", + " [ 0.21725171 -0.9158734 0.33760571]\n", + " [ 0.18522516 -0.92612281 0.32861556]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:fp_optics: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:cartToSphere: vec: [[ 0.17476466 -0.34566238 0.9219408 ]\n", + " [ 0.20031948 -0.33425306 0.92094897]\n", + " [ 0.22622205 -0.32234528 0.91919372]\n", + " [ 0.25236029 -0.30997191 0.91664153]\n", + " [ 0.27862374 -0.29716942 0.91326839]\n", + " [ 0.30490261 -0.28397852 0.90906028]\n", + " [ 0.33108776 -0.27044445 0.90401366]\n", + " [ 0.35707147 -0.25661669 0.89813576]\n", + " [ 0.17476466 -0.34566238 0.9219408 ]\n", + " [ 0.18530005 -0.37008567 0.91032988]\n", + " [ 0.19573676 -0.39408 0.89799113]\n", + " [ 0.20603882 -0.41755488 0.88498358]\n", + " [ 0.2161742 -0.44042362 0.87137578]\n", + " [ 0.22611529 -0.46260303 0.85724577]\n", + " [ 0.23583929 -0.48401248 0.84268129]\n", + " [ 0.24532845 -0.50457269 0.82778038]\n", + " [ 0.35707147 -0.25661669 0.89813576]\n", + " [ 0.36782598 -0.28194222 0.88612224]\n", + " [ 0.37821796 -0.30693183 0.87335218]\n", + " [ 0.38821118 -0.33149062 0.85988723]\n", + " [ 0.39777455 -0.35552907 0.84579814]\n", + " [ 0.40688222 -0.37896355 0.83116394]\n", + " [ 0.4155134 -0.40171616 0.81607153]\n", + " [ 0.4236519 -0.42371371 0.80061586]\n", + " [ 0.24532845 -0.50457269 0.82778038]\n", + " [ 0.27052336 -0.49491247 0.82575951]\n", + " [ 0.29600186 -0.48455806 0.82315635]\n", + " [ 0.32164573 -0.47354613 0.81993785]\n", + " [ 0.34734128 -0.46191436 0.81608159]\n", + " [ 0.37297834 -0.44970254 0.8115755 ]\n", + " [ 0.39844985 -0.4369535 0.8064176 ]\n", + " [ 0.4236519 -0.42371371 0.80061586]\n", + " [ 0.18589288 -0.34083563 0.92156113]\n", + " [ 0.21746139 -0.32651399 0.91983648]\n", + " [ 0.24944053 -0.3114758 0.91693089]\n", + " [ 0.28162637 -0.29578664 0.91279617]\n", + " [ 0.31381679 -0.27952152 0.9074066 ]\n", + " [ 0.34581139 -0.26276546 0.90076012]\n", + " [ 0.1794546 -0.35632003 0.91696896]\n", + " [ 0.19230538 -0.38597731 0.90224174]\n", + " [ 0.20497159 -0.41489996 0.8864788 ]\n", + " [ 0.21739259 -0.44292683 0.86980244]\n", + " [ 0.22951761 -0.46990463 0.85235633]\n", + " [ 0.24130675 -0.49568559 0.83430621]\n", + " [ 0.36171415 -0.26774146 0.89301589]\n", + " [ 0.37465604 -0.29856659 0.87777608]\n", + " [ 0.38701702 -0.32879222 0.8614601 ]\n", + " [ 0.3987377 -0.35825127 0.84419445]\n", + " [ 0.40977047 -0.38678976 0.82612459]\n", + " [ 0.42007899 -0.41426632 0.80741381]\n", + " [ 0.25623911 -0.50037927 0.82702001]\n", + " [ 0.28732478 -0.48806706 0.82415716]\n", + " [ 0.31871841 -0.47474863 0.82038547]\n", + " [ 0.35020889 -0.46049288 0.81565927]\n", + " [ 0.38159338 -0.44537318 0.80995631]\n", + " [ 0.41267604 -0.42946986 0.80327711]\n", + " [ 0.17488748 -0.3457084 0.92190025]\n", + " [ 0.17488748 -0.3457084 0.92190025]\n", + " [ 0.42353932 -0.42368591 0.80069014]\n", + " [ 0.42353932 -0.42368591 0.80069014]\n", + " [ 0.19047599 -0.3514897 0.91661 ]\n", + " [ 0.20335445 -0.38127136 0.90181989]\n", + " [ 0.216022 -0.41032417 0.88598452]\n", + " [ 0.2284176 -0.43848695 0.86922643]\n", + " [ 0.24049003 -0.465607 0.8516893 ]\n", + " [ 0.25219892 -0.49153777 0.83353844]\n", + " [ 0.22208418 -0.33727516 0.91483555]\n", + " [ 0.23502607 -0.36737296 0.8998888 ]\n", + " [ 0.24768394 -0.39675948 0.88387475]\n", + " [ 0.25999594 -0.42527294 0.86691697]\n", + " [ 0.27191009 -0.45276172 0.84915942]\n", + " [ 0.28338527 -0.4790822 0.83076654]\n", + " [ 0.25409452 -0.32232432 0.9118898 ]\n", + " [ 0.26707682 -0.35268415 0.89681875]\n", + " [ 0.2797037 -0.38235273 0.88066579]\n", + " [ 0.29191309 -0.41116715 0.86355563]\n", + " [ 0.30365309 -0.43897602 0.84563281]\n", + " [ 0.31488266 -0.46563767 0.82706134]\n", + " [ 0.28630284 -0.30670219 0.90772487]\n", + " [ 0.29930167 -0.33726863 0.89256282]\n", + " [ 0.31187526 -0.36716702 0.8763117 ]\n", + " [ 0.32396189 -0.39623307 0.85909723]\n", + " [ 0.33551042 -0.42431493 0.84106456]\n", + " [ 0.34648072 -0.45127192 0.82237751]\n", + " [ 0.31850676 -0.2904832 0.90231533]\n", + " [ 0.33149782 -0.32119922 0.88709653]\n", + " [ 0.34399572 -0.35127393 0.87078905]\n", + " [ 0.35593953 -0.38054165 0.85351925]\n", + " [ 0.36727941 -0.40884973 0.83543266]\n", + " [ 0.3779767 -0.43605757 0.81669297]\n", + " [ 0.35050575 -0.27375188 0.89565933]\n", + " [ 0.36346471 -0.30455902 0.88041877]\n", + " [ 0.37586512 -0.33475514 0.86409745]\n", + " [ 0.38764714 -0.36417346 0.84682193]\n", + " [ 0.39876254 -0.39266035 0.82873776]\n", + " [ 0.4091744 -0.42007472 0.81000836]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:fp_optics: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:cartToSphere: vec: [[-0.6485581 0.73977905 0.1791629 ]\n", + " [-0.64626644 0.74774205 0.15238604]\n", + " [-0.64340686 0.75525758 0.12495436]\n", + " [-0.63996266 0.76226251 0.09697248]\n", + " [-0.6359236 0.76870205 0.06854439]\n", + " [-0.63128633 0.77452918 0.03977592]\n", + " [-0.62605485 0.77970455 0.01077682]\n", + " [-0.62024106 0.78419686 -0.01833873]\n", + " [-0.6485581 0.73977905 0.1791629 ]\n", + " [-0.62627992 0.75705201 0.18613358]\n", + " [-0.60353994 0.77366362 0.19283191]\n", + " [-0.58043433 0.78955876 0.19923093]\n", + " [-0.55706553 0.80469139 0.20530408]\n", + " [-0.53354193 0.81902464 0.21102523]\n", + " [-0.50997719 0.83253083 0.21636932]\n", + " [-0.4864885 0.84519169 0.22131411]\n", + " [-0.62024106 0.78419686 -0.01833873]\n", + " [-0.5972057 0.80201289 -0.010985 ]\n", + " [-0.5737087 0.81905129 -0.00364756]\n", + " [-0.54985069 0.83525501 0.00364449]\n", + " [-0.52573566 0.85057863 0.01086297]\n", + " [-0.50147076 0.86498773 0.01798055]\n", + " [-0.47716763 0.87845748 0.0249702 ]\n", + " [-0.45294448 0.89097125 0.03180454]\n", + " [-0.4864885 0.84519169 0.22131411]\n", + " [-0.48269265 0.85361193 0.195843 ]\n", + " [-0.47857531 0.86149873 0.16966324]\n", + " [-0.47412457 0.86878774 0.1428767 ]\n", + " [-0.46933351 0.87542284 0.11558934]\n", + " [-0.4642014 0.88135639 0.08790892]\n", + " [-0.45873417 0.8865493 0.05994417]\n", + " [-0.45294448 0.89097125 0.03180454]\n", + " [-0.64755183 0.74336193 0.16759974]\n", + " [-0.64436295 0.75282948 0.13432857]\n", + " [-0.64030386 0.76156113 0.10017789]\n", + " [-0.63535306 0.76945258 0.06533933]\n", + " [-0.62950439 0.77641725 0.03000797]\n", + " [-0.62276854 0.782386 -0.00561225]\n", + " [-0.6389002 0.74741569 0.18214367]\n", + " [-0.61127286 0.76814865 0.1905076 ]\n", + " [-0.5830467 0.78783233 0.19843578]\n", + " [-0.55440774 0.80637822 0.20587916]\n", + " [-0.52555544 0.82371842 0.21278968]\n", + " [-0.49670067 0.83980586 0.21912226]\n", + " [-0.61028144 0.79204203 -0.01503276]\n", + " [-0.58172639 0.8133622 -0.00602746]\n", + " [-0.55257746 0.83345642 0.00292416]\n", + " [-0.52302477 0.85223621 0.01176985]\n", + " [-0.49326573 0.86963805 0.02045922]\n", + " [-0.46350853 0.88561966 0.0289424 ]\n", + " [-0.48495253 0.84888228 0.21028532]\n", + " [-0.48008671 0.85885201 0.17857761]\n", + " [-0.47472552 0.8679557 0.14590607]\n", + " [-0.46885403 0.87608657 0.11246428]\n", + " [-0.46247094 0.88315692 0.07845054]\n", + " [-0.45558999 0.88909843 0.04406531]\n", + " [-0.64847591 0.73986709 0.17909684]\n", + " [-0.64847591 0.73986709 0.17909684]\n", + " [-0.45304737 0.89091632 0.03187787]\n", + " [-0.45304737 0.89091632 0.03187787]\n", + " [-0.63793841 0.75093917 0.17066034]\n", + " [-0.61020068 0.77174213 0.1790788 ]\n", + " [-0.58185926 0.79147911 0.18708452]\n", + " [-0.55310046 0.81006148 0.19462856]\n", + " [-0.52412415 0.82742136 0.20166254]\n", + " [-0.49514225 0.84351168 0.20813986]\n", + " [-0.63465487 0.76047864 0.13742431]\n", + " [-0.60664136 0.78145653 0.14598616]\n", + " [-0.57801421 0.80132505 0.15420033]\n", + " [-0.54896061 0.81999524 0.16201868]\n", + " [-0.51968062 0.83739956 0.16939314]\n", + " [-0.49038738 0.85349125 0.17627508]\n", + " [-0.63051921 0.76926848 0.10330308]\n", + " [-0.60228485 0.79038639 0.11199249]\n", + " [-0.57343273 0.81035727 0.12039938]\n", + " [-0.54415103 0.82909198 0.12847624]\n", + " [-0.51463936 0.84652374 0.13617593]\n", + " [-0.48511024 0.86260665 0.14344974]\n", + " [-0.62551033 0.77720408 0.06848827]\n", + " [-0.59711118 0.79842625 0.07729013]\n", + " [-0.56809572 0.81846968 0.08587567]\n", + " [-0.53865318 0.83724528 0.09419711]\n", + " [-0.50898252 0.85468731 0.10220763]\n", + " [-0.47929478 0.87075113 0.10985891]\n", + " [-0.61962275 0.78419837 0.03317478]\n", + " [-0.59111677 0.80548789 0.04207402]\n", + " [-0.562001 0.82557356 0.05082494]\n", + " [-0.53246546 0.84436647 0.05937834]\n", + " [-0.50270843 0.86180204 0.0676866 ]\n", + " [-0.47293939 0.87783692 0.07570125]\n", + " [-0.61286783 0.79018168 -0.00243369]\n", + " [-0.58431486 0.81150064 0.00654696]\n", + " [-0.55516312 0.831598 0.01544904]\n", + " [-0.52560286 0.85038519 0.02422115]\n", + " [-0.49583168 0.86779848 0.03281373]\n", + " [-0.46605799 0.88379544 0.04117741]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:fp_optics: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:cartToSphere: vec: [[-0.25057015 0.45267492 -0.8557453 ]\n", + " [-0.27431439 0.43989295 -0.85512912]\n", + " [-0.29828948 0.42639095 -0.85394037]\n", + " [-0.32238547 0.41222234 -0.85213869]\n", + " [-0.34649639 0.39744062 -0.84969477]\n", + " [-0.37051945 0.38210048 -0.84658996]\n", + " [-0.39435465 0.36625882 -0.84281605]\n", + " [-0.41790496 0.34997528 -0.83837506]\n", + " [-0.25057015 0.45267492 -0.8557453 ]\n", + " [-0.23747855 0.4334573 -0.86932083]\n", + " [-0.22405938 0.41341472 -0.88254499]\n", + " [-0.21034665 0.39262591 -0.89532072]\n", + " [-0.19637873 0.37116957 -0.90756187]\n", + " [-0.1821984 0.34912579 -0.91919254]\n", + " [-0.16785264 0.32657699 -0.93014674]\n", + " [-0.15339226 0.30360861 -0.94036835]\n", + " [-0.41790496 0.34997528 -0.83837506]\n", + " [-0.40598722 0.32909982 -0.85256536]\n", + " [-0.39350196 0.30753002 -0.86636107]\n", + " [-0.38048071 0.28533774 -0.87966858]\n", + " [-0.36695932 0.26259826 -0.89240294]\n", + " [-0.35297869 0.23939147 -0.90448757]\n", + " [-0.33858504 0.21580222 -0.91585456]\n", + " [-0.32382979 0.19192 -0.92644535]\n", + " [-0.15339226 0.30360861 -0.94036835]\n", + " [-0.17726296 0.28898613 -0.94077886]\n", + " [-0.20146468 0.27383333 -0.94043994]\n", + " [-0.22589332 0.25819836 -0.93931135]\n", + " [-0.25044612 0.24213241 -0.9373626 ]\n", + " [-0.27502079 0.22569058 -0.93457334]\n", + " [-0.29951554 0.20893209 -0.93093384]\n", + " [-0.32382979 0.19192 -0.92644535]\n", + " [-0.26084315 0.4471292 -0.85559122]\n", + " [-0.29011415 0.43097127 -0.85445746]\n", + " [-0.31962221 0.41378506 -0.85242218]\n", + " [-0.34917066 0.39566898 -0.84942681]\n", + " [-0.3785702 0.37672384 -0.84543702]\n", + " [-0.40763797 0.35705548 -0.84044195]\n", + " [-0.24498533 0.44435956 -0.86169993]\n", + " [-0.22871638 0.42024029 -0.87811555]\n", + " [-0.21198853 0.39496026 -0.89390562]\n", + " [-0.19487062 0.36866431 -0.90890707]\n", + " [-0.17744135 0.34149995 -0.92298015]\n", + " [-0.15978885 0.31362019 -0.93600742]\n", + " [-0.41270017 0.34101999 -0.84462058]\n", + " [-0.39770753 0.31495971 -0.8617593 ]\n", + " [-0.38189352 0.28792752 -0.8782113 ]\n", + " [-0.36532229 0.26006048 -0.89381663]\n", + " [-0.34806915 0.2315057 -0.90843436]\n", + " [-0.33022139 0.20242136 -0.92194329]\n", + " [-0.16380226 0.29738083 -0.94060271]\n", + " [-0.19329452 0.27909773 -0.94060708]\n", + " [-0.22318022 0.26006548 -0.9394448 ]\n", + " [-0.25326972 0.240377 -0.93705568]\n", + " [-0.28337472 0.22013375 -0.93340232]\n", + " [-0.31330826 0.19944636 -0.92847137]\n", + " [-0.25060665 0.45256827 -0.85579102]\n", + " [-0.25060665 0.45256827 -0.85579102]\n", + " [-0.32379807 0.19206059 -0.9264273 ]\n", + " [-0.32379807 0.19206059 -0.9264273 ]\n", + " [-0.25524853 0.43885925 -0.86153976]\n", + " [-0.23903778 0.41457533 -0.87805936]\n", + " [-0.22234246 0.38914245 -0.89394182]\n", + " [-0.20523163 0.36270403 -0.90902462]\n", + " [-0.18778436 0.33540679 -0.92316809]\n", + " [-0.17008918 0.30740357 -0.93625462]\n", + " [-0.28459929 0.42254041 -0.86050151]\n", + " [-0.26856689 0.39782495 -0.87727256]\n", + " [-0.25197963 0.37199286 -0.89337986]\n", + " [-0.23490684 0.34518414 -0.90866203]\n", + " [-0.21742813 0.31754388 -0.92297936]\n", + " [-0.19963292 0.28922508 -0.93621341]\n", + " [-0.31419391 0.40521073 -0.85853739]\n", + " [-0.2983618 0.38011208 -0.87549702]\n", + " [-0.28190805 0.35392828 -0.89177498]\n", + " [-0.26490156 0.32679693 -0.90721052]\n", + " [-0.2474218 0.29886254 -0.92166352]\n", + " [-0.22955851 0.27027896 -0.93501453]\n", + " [-0.34383627 0.38696728 -0.85558924]\n", + " [-0.32822783 0.36153064 -0.87267525]\n", + " [-0.31193431 0.33504058 -0.88906962]\n", + " [-0.29502356 0.30763349 -0.90461193]\n", + " [-0.27757427 0.27945413 -0.91916153]\n", + " [-0.25967595 0.25065765 -0.93259806]\n", + " [-0.37333709 0.36791005 -0.85162293]\n", + " [-0.35797563 0.34217896 -0.86877328]\n", + " [-0.34186892 0.31542758 -0.8852294 ]\n", + " [-0.32508333 0.28779208 -0.90083103]\n", + " [-0.3076963 0.25941805 -0.9154372 ]\n", + " [-0.28979663 0.23046202 -0.92892689]\n", + " [-0.40251312 0.34814461 -0.84662774]\n", + " [-0.38742064 0.32216245 -0.86378042]\n", + " [-0.37152606 0.2951953 -0.88024322]\n", + " [-0.35489409 0.26737991 -0.89585611]\n", + " [-0.33760063 0.23886295 -0.91047806]\n", + " [-0.31973341 0.20980223 -0.92398786]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:fp_optics: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:cartToSphere: vec: [[ 0.6478651 -0.30005362 -0.70017044]\n", + " [ 0.65838485 -0.31855514 -0.68194723]\n", + " [ 0.66858101 -0.3371681 -0.66281001]\n", + " [ 0.6783834 -0.3558029 -0.64280655]\n", + " [ 0.68772946 -0.37437478 -0.62199013]\n", + " [ 0.69656343 -0.39280222 -0.60042135]\n", + " [ 0.70483603 -0.41100576 -0.57816991]\n", + " [ 0.71250469 -0.42890786 -0.55531533]\n", + " [ 0.6478651 -0.30005362 -0.70017044]\n", + " [ 0.66670788 -0.2801078 -0.69068098]\n", + " [ 0.68496844 -0.26005732 -0.68057948]\n", + " [ 0.7025845 -0.23998609 -0.66991171]\n", + " [ 0.71950208 -0.21998194 -0.65872962]\n", + " [ 0.7356756 -0.20013634 -0.64709108]\n", + " [ 0.75106792 -0.18054347 -0.63505987]\n", + " [ 0.76565064 -0.16129768 -0.62270552]\n", + " [ 0.71250469 -0.42890786 -0.55531533]\n", + " [ 0.73193242 -0.40816829 -0.54559471]\n", + " [ 0.75063959 -0.38713237 -0.53541455]\n", + " [ 0.76856177 -0.36588854 -0.52482224]\n", + " [ 0.78564561 -0.34452682 -0.51386987]\n", + " [ 0.80184821 -0.32313876 -0.50261396]\n", + " [ 0.81713564 -0.30181872 -0.49111587]\n", + " [ 0.83148143 -0.28066579 -0.47944275]\n", + " [ 0.76565064 -0.16129768 -0.62270552]\n", + " [ 0.77666572 -0.17781879 -0.60429367]\n", + " [ 0.78725098 -0.19465494 -0.58510285]\n", + " [ 0.79733476 -0.21172196 -0.56518235]\n", + " [ 0.80685266 -0.22893589 -0.54458897]\n", + " [ 0.81574785 -0.24621549 -0.52338645]\n", + " [ 0.82397119 -0.2634833 -0.50164532]\n", + " [ 0.83148143 -0.28066579 -0.47944275]\n", + " [ 0.65255231 -0.30803247 -0.69230881]\n", + " [ 0.66523764 -0.33079382 -0.66935366]\n", + " [ 0.67736621 -0.35363308 -0.64507261]\n", + " [ 0.68881968 -0.37639223 -0.6195614 ]\n", + " [ 0.6994954 -0.39892109 -0.59293182]\n", + " [ 0.70930537 -0.4210741 -0.56531628]\n", + " [ 0.65618458 -0.29143793 -0.69605009]\n", + " [ 0.67889563 -0.26691071 -0.68400248]\n", + " [ 0.70066923 -0.24230908 -0.67108043]\n", + " [ 0.72140255 -0.21779311 -0.657377 ]\n", + " [ 0.74101168 -0.19353112 -0.64299876]\n", + " [ 0.75943184 -0.16969676 -0.62806551]\n", + " [ 0.72103412 -0.41984674 -0.55121549]\n", + " [ 0.74436888 -0.39421814 -0.53898704]\n", + " [ 0.76655616 -0.3682322 -0.52611472]\n", + " [ 0.78749312 -0.34205402 -0.51269253]\n", + " [ 0.80710061 -0.3158523 -0.49882455]\n", + " [ 0.82531929 -0.28980265 -0.48462614]\n", + " [ 0.77045281 -0.16852263 -0.61481916]\n", + " [ 0.78367335 -0.18899477 -0.5917238 ]\n", + " [ 0.79617635 -0.20985653 -0.56750635]\n", + " [ 0.80784019 -0.23095301 -0.54226832]\n", + " [ 0.81856028 -0.25213479 -0.51612704]\n", + " [ 0.8282494 -0.27326087 -0.48921511]\n", + " [ 0.64796689 -0.30004866 -0.70007837]\n", + " [ 0.64796689 -0.30004866 -0.70007837]\n", + " [ 0.83140957 -0.28067919 -0.47955951]\n", + " [ 0.83140957 -0.28067919 -0.47955951]\n", + " [ 0.66080114 -0.29938633 -0.6882657 ]\n", + " [ 0.68358837 -0.27474475 -0.67618213]\n", + " [ 0.70542004 -0.25000824 -0.66323333]\n", + " [ 0.72619317 -0.22533702 -0.64951267]\n", + " [ 0.74582386 -0.2008999 -0.63512676]\n", + " [ 0.76424736 -0.17687243 -0.62019523]\n", + " [ 0.67356463 -0.32205829 -0.66527373]\n", + " [ 0.69654159 -0.29712553 -0.65310507]\n", + " [ 0.7185152 -0.2720424 -0.64010065]\n", + " [ 0.73938202 -0.24696908 -0.62635494]\n", + " [ 0.75905841 -0.22207434 -0.61197493]\n", + " [ 0.77747998 -0.19753617 -0.59707984]\n", + " [ 0.68575637 -0.34482439 -0.6409636 ]\n", + " [ 0.70888414 -0.31964869 -0.62873523]\n", + " [ 0.73096581 -0.29427103 -0.61570572]\n", + " [ 0.75189763 -0.26885174 -0.60197068]\n", + " [ 0.77159668 -0.2435586 -0.58763746]\n", + " [ 0.78999945 -0.21856928 -0.57282487]\n", + " [ 0.6972577 -0.36752689 -0.6154313 ]\n", + " [ 0.72049633 -0.3421567 -0.60316982]\n", + " [ 0.74265134 -0.31653593 -0.59014744]\n", + " [ 0.76361891 -0.29082576 -0.57646035]\n", + " [ 0.78331724 -0.2651933 -0.56221582]\n", + " [ 0.80168419 -0.23981493 -0.54753197]\n", + " [ 0.70796539 -0.39001615 -0.58878893]\n", + " [ 0.73127361 -0.36450112 -0.5765222 ]\n", + " [ 0.75346649 -0.33868895 -0.56354063]\n", + " [ 0.77444047 -0.31274239 -0.54994014]\n", + " [ 0.79411503 -0.28682866 -0.53582706]\n", + " [ 0.81242949 -0.26112324 -0.52131851]\n", + " [ 0.71779089 -0.4121473 -0.56116918]\n", + " [ 0.74112629 -0.38653896 -0.54892572]\n", + " [ 0.76332131 -0.36058866 -0.53601902]\n", + " [ 0.7842729 -0.33446092 -0.5225437 ]\n", + " [ 0.8039016 -0.30832394 -0.50860452]\n", + " [ 0.82214788 -0.28235314 -0.49431728]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:fp_optics: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:cartToSphere: vec: [[ 0.85322056 -0.1174167 0.50816139]\n", + " [ 0.86676696 -0.10760338 0.48696667]\n", + " [ 0.87995432 -0.09764351 0.4649152 ]\n", + " [ 0.89269141 -0.0875646 0.44207973]\n", + " [ 0.90489438 -0.07739553 0.41854044]\n", + " [ 0.91648836 -0.06716729 0.39438262]\n", + " [ 0.9274082 -0.05691345 0.36969566]\n", + " [ 0.9375988 -0.04667012 0.34457276]\n", + " [ 0.85322056 -0.1174167 0.50816139]\n", + " [ 0.85400318 -0.14314383 0.50018837]\n", + " [ 0.85423845 -0.16926976 0.49155307]\n", + " [ 0.85388352 -0.19568403 0.48227657]\n", + " [ 0.85290364 -0.22227506 0.47238668]\n", + " [ 0.85127347 -0.24893213 0.46191588]\n", + " [ 0.84897771 -0.27554615 0.45090039]\n", + " [ 0.84601133 -0.30200997 0.43938003]\n", + " [ 0.9375988 -0.04667012 0.34457276]\n", + " [ 0.93946394 -0.07276827 0.33483174]\n", + " [ 0.9406135 -0.09934267 0.32461866]\n", + " [ 0.9410004 -0.1262813 0.31396064]\n", + " [ 0.9405874 -0.15347533 0.3028872 ]\n", + " [ 0.93934719 -0.18081691 0.29143112]\n", + " [ 0.93726268 -0.20819707 0.27962949]\n", + " [ 0.93432761 -0.23550516 0.26752429]\n", + " [ 0.84601133 -0.30200997 0.43938003]\n", + " [ 0.86028594 -0.2935816 0.41679485]\n", + " [ 0.87414865 -0.28475347 0.39342038]\n", + " [ 0.88750553 -0.27554795 0.36933355]\n", + " [ 0.90027263 -0.26598999 0.34461357]\n", + " [ 0.91237496 -0.2561079 0.31934413]\n", + " [ 0.9237459 -0.24593406 0.29361531]\n", + " [ 0.93432761 -0.23550516 0.26752429]\n", + " [ 0.85916881 -0.11324525 0.49900347]\n", + " [ 0.87554251 -0.10111665 0.47244126]\n", + " [ 0.89128551 -0.08879499 0.44466346]\n", + " [ 0.90624023 -0.07633278 0.41581481]\n", + " [ 0.92026892 -0.06378716 0.38605221]\n", + " [ 0.93325582 -0.05122098 0.35554181]\n", + " [ 0.85367322 -0.12854485 0.50469619]\n", + " [ 0.85427089 -0.16035877 0.4944758 ]\n", + " [ 0.85400288 -0.19266228 0.48328079]\n", + " [ 0.85280174 -0.22525028 0.47115974]\n", + " [ 0.8506209 -0.257919 0.45817232]\n", + " [ 0.84743646 -0.2904684 0.44438671]\n", + " [ 0.93846286 -0.05801821 0.34047223]\n", + " [ 0.94027368 -0.09033909 0.32821373]\n", + " [ 0.94096185 -0.12326354 0.31527273]\n", + " [ 0.94045477 -0.15658994 0.30170254]\n", + " [ 0.93870216 -0.19011947 0.28756363]\n", + " [ 0.93567705 -0.22365078 0.27292633]\n", + " [ 0.85229061 -0.29829519 0.42967511]\n", + " [ 0.86952108 -0.28769295 0.40145469]\n", + " [ 0.88603835 -0.27651239 0.37212489]\n", + " [ 0.90168381 -0.26479836 0.34183057]\n", + " [ 0.9163193 -0.25260306 0.31072597]\n", + " [ 0.92982579 -0.23998792 0.27897994]\n", + " [ 0.85327094 -0.1174706 0.50806433]\n", + " [ 0.85327094 -0.1174706 0.50806433]\n", + " [ 0.93430431 -0.23544807 0.26765587]\n", + " [ 0.93430431 -0.23544807 0.26765587]\n", + " [ 0.8596119 -0.12435216 0.49558443]\n", + " [ 0.86031152 -0.15626448 0.48522727]\n", + " [ 0.86012354 -0.18867321 0.47390919]\n", + " [ 0.85897931 -0.22137214 0.46168054]\n", + " [ 0.85683184 -0.25415716 0.44860152]\n", + " [ 0.85365721 -0.28682792 0.43474028]\n", + " [ 0.87609502 -0.11230052 0.46887751]\n", + " [ 0.87706666 -0.14444569 0.45813702]\n", + " [ 0.87709121 -0.17710567 0.44648022]\n", + " [ 0.87609811 -0.21007293 0.43396021]\n", + " [ 0.87403989 -0.24314327 0.42063716]\n", + " [ 0.8708927 -0.27611565 0.40657848]\n", + " [ 0.89193645 -0.10003133 0.44095704]\n", + " [ 0.89315181 -0.13233848 0.42984458]\n", + " [ 0.89336664 -0.16517891 0.41786598]\n", + " [ 0.89250965 -0.19834567 0.40507472]\n", + " [ 0.89053319 -0.23163545 0.3915299 ]\n", + " [ 0.88741332 -0.26484659 0.37729814]\n", + " [ 0.90697743 -0.08759603 0.41196951]\n", + " [ 0.90840654 -0.11999246 0.4004989 ]\n", + " [ 0.90878923 -0.15294162 0.38821514]\n", + " [ 0.90805391 -0.18623828 0.37517116]\n", + " [ 0.90615245 -0.21968045 0.36142528]\n", + " [ 0.90306033 -0.25306608 0.34704408]\n", + " [ 0.9210798 -0.07505144 0.38207236]\n", + " [ 0.92269217 -0.1074643 0.37025744]\n", + " [ 0.92322036 -0.14045066 0.3576839 ]\n", + " [ 0.92259239 -0.17380717 0.34440435]\n", + " [ 0.92075927 -0.20733336 0.3304773 ]\n", + " [ 0.9176955 -0.24082712 0.31597036]\n", + " [ 0.93412754 -0.06246057 0.35143195]\n", + " [ 0.93589217 -0.09481797 0.3392866 ]\n", + " [ 0.93654283 -0.12777086 0.32643857]\n", + " [ 0.93600706 -0.16111735 0.31294086]\n", + " [ 0.93423491 -0.19465825 0.29885329]\n", + " [ 0.93119976 -0.22819195 0.28424539]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:fp_optics: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:cartToSphere: vec: [[ 3.31500911e-01 1.31891252e-01 9.34190475e-01]\n", + " [ 3.28708991e-01 1.05393150e-01 9.38532196e-01]\n", + " [ 3.25462898e-01 7.82868353e-02 9.42308375e-01]\n", + " [ 3.21778908e-01 5.06837471e-02 9.45457293e-01]\n", + " [ 3.17672638e-01 2.26940780e-02 9.47928834e-01]\n", + " [ 3.13159845e-01 -5.57211262e-03 9.49684086e-01]\n", + " [ 3.08257232e-01 -3.40042835e-02 9.50695108e-01]\n", + " [ 3.02983072e-01 -6.24913410e-02 9.50944841e-01]\n", + " [ 3.31500911e-01 1.31891252e-01 9.34190475e-01]\n", + " [ 3.06515934e-01 1.38524735e-01 9.41731851e-01]\n", + " [ 2.80730659e-01 1.45047170e-01 9.48763203e-01]\n", + " [ 2.54248503e-01 1.51440432e-01 9.55208613e-01]\n", + " [ 2.27172276e-01 1.57684727e-01 9.61003790e-01]\n", + " [ 1.99605574e-01 1.63758939e-01 9.66095557e-01]\n", + " [ 1.71653748e-01 1.69641169e-01 9.70441582e-01]\n", + " [ 1.43424283e-01 1.75309310e-01 9.74010329e-01]\n", + " [ 3.02983072e-01 -6.24913410e-02 9.50944841e-01]\n", + " [ 2.76809321e-01 -5.74576493e-02 9.59205514e-01]\n", + " [ 2.49874708e-01 -5.22771146e-02 9.66865934e-01]\n", + " [ 2.22274851e-01 -4.69676847e-02 9.73852107e-01]\n", + " [ 1.94108276e-01 -4.15479926e-02 9.80099863e-01]\n", + " [ 1.65477863e-01 -3.60376076e-02 9.85554853e-01]\n", + " [ 1.36491230e-01 -3.04570888e-02 9.90172970e-01]\n", + " [ 1.07260237e-01 -2.48278775e-02 9.93920932e-01]\n", + " [ 1.43424283e-01 1.75309310e-01 9.74010329e-01]\n", + " [ 1.38811340e-01 1.48154939e-01 9.79173900e-01]\n", + " [ 1.33988698e-01 1.20343675e-01 9.83648529e-01]\n", + " [ 1.28969999e-01 9.19797548e-02 9.87373518e-01]\n", + " [ 1.23770242e-01 6.31694778e-02 9.90298210e-01]\n", + " [ 1.18406096e-01 3.40223930e-02 9.92382221e-01]\n", + " [ 1.12896025e-01 4.65141662e-03 9.93595920e-01]\n", + " [ 1.07260237e-01 -2.48278775e-02 9.93920932e-01]\n", + " [ 3.30256167e-01 1.20442507e-01 9.36175446e-01]\n", + " [ 3.26525717e-01 8.75422384e-02 9.41125556e-01]\n", + " [ 3.22129522e-01 5.38392973e-02 9.45163426e-01]\n", + " [ 3.17096568e-01 1.95369916e-02 9.48192002e-01]\n", + " [ 3.11455953e-01 -1.51619950e-02 9.50139623e-01]\n", + " [ 3.05239057e-01 -5.00539133e-02 9.50959370e-01]\n", + " [ 3.20703267e-01 1.34706267e-01 9.37551938e-01]\n", + " [ 2.89529085e-01 1.42762969e-01 9.46462701e-01]\n", + " [ 2.57255731e-01 1.50635238e-01 9.54530520e-01]\n", + " [ 2.24072646e-01 1.58287320e-01 9.61632245e-01]\n", + " [ 1.90170655e-01 1.65680398e-01 9.67669948e-01]\n", + " [ 1.55744596e-01 1.72774045e-01 9.72570177e-01]\n", + " [ 2.91689573e-01 -6.02180441e-02 9.54615619e-01]\n", + " [ 2.59087546e-01 -5.39467689e-02 9.64346094e-01]\n", + " [ 2.25437438e-01 -4.74728896e-02 9.73100348e-01]\n", + " [ 1.90919309e-01 -4.08304093e-02 9.80756185e-01]\n", + " [ 1.55722600e-01 -3.40553661e-02 9.87213606e-01]\n", + " [ 1.20047240e-01 -2.71859890e-02 9.92395880e-01]\n", + " [ 1.41536907e-01 1.63538275e-01 9.76331161e-01]\n", + " [ 1.35741553e-01 1.29802860e-01 9.82204382e-01]\n", + " [ 1.29644470e-01 9.51842448e-02 9.86981393e-01]\n", + " [ 1.23272678e-01 5.98771668e-02 9.90564774e-01]\n", + " [ 1.16656874e-01 2.40833136e-02 9.92880238e-01]\n", + " [ 1.09831777e-01 -1.19882802e-02 9.93877891e-01]\n", + " [ 3.31408197e-01 1.31824654e-01 9.34232770e-01]\n", + " [ 3.31408197e-01 1.31824654e-01 9.34232770e-01]\n", + " [ 1.07379945e-01 -2.47463250e-02 9.93910040e-01]\n", + " [ 1.07379945e-01 -2.47463250e-02 9.93910040e-01]\n", + " [ 3.19497741e-01 1.23283393e-01 9.39533075e-01]\n", + " [ 2.88175296e-01 1.31242151e-01 9.48541247e-01]\n", + " [ 2.55757290e-01 1.39041779e-01 9.56689914e-01]\n", + " [ 2.22431867e-01 1.46645857e-01 9.63856347e-01]\n", + " [ 1.88389226e-01 1.54014971e-01 9.69942724e-01]\n", + " [ 1.53824257e-01 1.61108212e-01 9.74875501e-01]\n", + " [ 3.15632012e-01 9.02657391e-02 9.44578493e-01]\n", + " [ 2.83934777e-01 9.79403159e-02 9.53828463e-01]\n", + " [ 2.51150912e-01 1.05526100e-01 9.62178498e-01]\n", + " [ 2.17465291e-01 1.12985285e-01 9.69506665e-01]\n", + " [ 1.83066872e-01 1.20277344e-01 9.75715061e-01]\n", + " [ 1.48151164e-01 1.27360500e-01 9.80729593e-01]\n", + " [ 3.11123721e-01 5.64414439e-02 9.48691938e-01]\n", + " [ 2.79116216e-01 6.38190389e-02 9.58134264e-01]\n", + " [ 2.46029785e-01 7.11764552e-02 9.66645363e-01]\n", + " [ 2.12046858e-01 7.84754567e-02 9.74103553e-01]\n", + " [ 1.77355894e-01 8.56753590e-02 9.80410434e-01]\n", + " [ 1.42153495e-01 9.27342698e-02 9.85491116e-01]\n", + " [ 3.06000785e-01 2.20128923e-02 9.51776734e-01]\n", + " [ 2.73745060e-01 2.90783261e-02 9.61362623e-01]\n", + " [ 2.40418015e-01 3.61909417e-02 9.69994533e-01]\n", + " [ 2.06200531e-01 4.33130355e-02 9.77550675e-01]\n", + " [ 1.71281117e-01 5.04046452e-02 9.83931985e-01]\n", + " [ 1.35857626e-01 5.74244380e-02 9.89062758e-01]\n", + " [ 3.00291523e-01 -1.28175259e-02 9.53761350e-01]\n", + " [ 2.67848103e-01 -6.07992912e-03 9.63441969e-01]\n", + " [ 2.34341971e-01 7.71338957e-04 9.72153921e-01]\n", + " [ 1.99953247e-01 7.69986899e-03 9.79775184e-01]\n", + " [ 1.64870787e-01 1.46670995e-02 9.86206114e-01]\n", + " [ 1.29293572e-01 2.16327871e-02 9.91370362e-01]\n", + " [ 2.94026894e-01 -4.78457747e-02 9.54598852e-01]\n", + " [ 2.61455679e-01 -4.14505643e-02 9.64325038e-01]\n", + " [ 2.27832176e-01 -3.48758493e-02 9.73075626e-01]\n", + " [ 1.93336372e-01 -2.81562916e-02 9.80728439e-01]\n", + " [ 1.58157560e-01 -2.13286253e-02 9.87183507e-01]\n", + " [ 1.22495503e-01 -1.44316443e-02 9.92364136e-01]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:fp_optics: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:cartToSphere: vec: [[ 1.42102063e-01 -5.75620275e-01 -8.05275297e-01]\n", + " [ 1.45472617e-01 -5.53355433e-01 -8.20143574e-01]\n", + " [ 1.48649411e-01 -5.30204830e-01 -8.34737199e-01]\n", + " [ 1.51628606e-01 -5.06246000e-01 -8.48954506e-01]\n", + " [ 1.54404780e-01 -4.81560151e-01 -8.62704460e-01]\n", + " [ 1.56971156e-01 -4.56232848e-01 -8.75906185e-01]\n", + " [ 1.59320076e-01 -4.30354579e-01 -8.88488632e-01]\n", + " [ 1.61443550e-01 -4.04020969e-01 -9.00390491e-01]\n", + " [ 1.42102063e-01 -5.75620275e-01 -8.05275297e-01]\n", + " [ 1.15403619e-01 -5.77041302e-01 -8.08520464e-01]\n", + " [ 8.80479075e-02 -5.77932817e-01 -8.11320667e-01]\n", + " [ 6.01491541e-02 -5.78279253e-01 -8.13618575e-01]\n", + " [ 3.18202706e-02 -5.78068380e-01 -8.15367658e-01]\n", + " [ 3.17369036e-03 -5.77291528e-01 -8.16531946e-01]\n", + " [-2.56779724e-02 -5.75944071e-01 -8.17085717e-01]\n", + " [-5.46217032e-02 -5.74025973e-01 -8.17013251e-01]\n", + " [ 1.61443550e-01 -4.04020969e-01 -9.00390491e-01]\n", + " [ 1.33896465e-01 -4.03981506e-01 -9.04914736e-01]\n", + " [ 1.05678473e-01 -4.03613632e-01 -9.08805863e-01]\n", + " [ 7.68966058e-02 -4.02900966e-01 -9.12007524e-01]\n", + " [ 4.76586769e-02 -4.01831137e-01 -9.14472738e-01]\n", + " [ 1.80752615e-02 -4.00395980e-01 -9.16163929e-01]\n", + " [-1.17394223e-02 -3.98591810e-01 -9.17053300e-01]\n", + " [-4.16678139e-02 -3.96419651e-01 -9.17123358e-01]\n", + " [-5.46217032e-02 -5.74025973e-01 -8.17013251e-01]\n", + " [-5.29573011e-02 -5.50978340e-01 -8.32837555e-01]\n", + " [-5.12228059e-02 -5.27026555e-01 -8.48303740e-01]\n", + " [-4.94222849e-02 -5.02241857e-01 -8.63313706e-01]\n", + " [-4.75605359e-02 -4.76700942e-01 -8.77777994e-01]\n", + " [-4.56431526e-02 -4.50487687e-01 -8.91615134e-01]\n", + " [-4.36765312e-02 -4.23693999e-01 -9.04751765e-01]\n", + " [-4.16678139e-02 -3.96419651e-01 -9.17123358e-01]\n", + " [ 1.43504857e-01 -5.66031904e-01 -8.11796920e-01]\n", + " [ 1.47504962e-01 -5.38137952e-01 -8.29849282e-01]\n", + " [ 1.51210575e-01 -5.08990165e-01 -8.47386791e-01]\n", + " [ 1.54612376e-01 -4.78736488e-01 -8.64237460e-01]\n", + " [ 1.57697936e-01 -4.47534508e-01 -8.80252364e-01]\n", + " [ 1.60452997e-01 -4.15552951e-01 -8.95304742e-01]\n", + " [ 1.30561114e-01 -5.76228987e-01 -8.06792383e-01]\n", + " [ 9.73818631e-02 -5.77615899e-01 -8.10479269e-01]\n", + " [ 6.33290253e-02 -5.78191741e-01 -8.13439454e-01]\n", + " [ 2.86109747e-02 -5.77932613e-01 -8.15582802e-01]\n", + " [-6.56522841e-03 -5.76822607e-01 -8.16843056e-01]\n", + " [-4.19920889e-02 -5.74855089e-01 -8.17177026e-01]\n", + " [ 1.49515422e-01 -4.04134011e-01 -9.02397274e-01]\n", + " [ 1.15288911e-01 -4.03867978e-01 -9.07523621e-01]\n", + " [ 8.01610693e-02 -4.03091779e-01 -9.11642046e-01]\n", + " [ 4.43299306e-02 -4.01780965e-01 -9.14662186e-01]\n", + " [ 7.99916240e-03 -3.99920532e-01 -9.16514911e-01]\n", + " [-2.86195193e-02 -3.97505638e-01 -9.17153308e-01]\n", + " [-5.38054719e-02 -5.64100260e-01 -8.23951375e-01]\n", + " [-5.17169888e-02 -5.35236358e-01 -8.43117663e-01]\n", + " [-4.95273745e-02 -5.05084663e-01 -8.61647563e-01]\n", + " [-4.72451587e-02 -4.73783998e-01 -8.79372855e-01]\n", + " [-4.48806466e-02 -4.41488876e-01 -8.96143571e-01]\n", + " [-4.24459332e-02 -4.08371808e-01 -9.11828278e-01]\n", + " [ 1.42023865e-01 -5.75551470e-01 -8.05338269e-01]\n", + " [ 1.42023865e-01 -5.75551470e-01 -8.05338269e-01]\n", + " [-4.15723435e-02 -3.96521668e-01 -9.17083588e-01]\n", + " [-4.15723435e-02 -3.96521668e-01 -9.17083588e-01]\n", + " [ 1.31995479e-01 -5.66673452e-01 -8.13300923e-01]\n", + " [ 9.86841174e-02 -5.67969749e-01 -8.17111871e-01]\n", + " [ 6.44984846e-02 -5.68471425e-01 -8.20170826e-01]\n", + " [ 2.96461086e-02 -5.68154044e-01 -8.22388041e-01]\n", + " [-5.66638452e-03 -5.67001098e-01 -8.23697546e-01]\n", + " [-4.12313573e-02 -5.65005476e-01 -8.24056301e-01]\n", + " [ 1.35881133e-01 -5.38674908e-01 -8.31484012e-01]\n", + " [ 1.02244953e-01 -5.39708074e-01 -8.35620227e-01]\n", + " [ 6.77313235e-02 -5.39994803e-01 -8.38938663e-01]\n", + " [ 3.25452133e-02 -5.39509180e-01 -8.41350494e-01]\n", + " [-3.10782464e-03 -5.38233265e-01 -8.42790184e-01]\n", + " [-3.90194381e-02 -5.36158908e-01 -8.43214746e-01]\n", + " [ 1.39498132e-01 -5.09417988e-01 -8.49136965e-01]\n", + " [ 1.05609355e-01 -5.10176529e-01 -8.53561113e-01]\n", + " [ 7.08382898e-02 -5.10238928e-01 -8.57110362e-01]\n", + " [ 3.53874577e-02 -5.09578288e-01 -8.59696281e-01]\n", + " [-5.38363909e-04 -5.08175939e-01 -8.61253114e-01]\n", + " [-3.67297988e-02 -5.06023341e-01 -8.61737373e-01]\n", + " [ 1.42836604e-01 -4.79049894e-01 -8.66088277e-01]\n", + " [ 1.08766007e-01 -4.79520026e-01 -8.70764320e-01]\n", + " [ 7.38072706e-02 -4.79346479e-01 -8.74516689e-01]\n", + " [ 3.81608716e-02 -4.78502181e-01 -8.77256753e-01]\n", + " [ 2.03108227e-03 -4.76968629e-01 -8.78917972e-01]\n", + " [-3.43716512e-02 -4.74737653e-01 -8.79455940e-01]\n", + " [ 1.45883509e-01 -4.47727799e-01 -8.82189220e-01]\n", + " [ 1.11700491e-01 -4.47894658e-01 -8.87081380e-01]\n", + " [ 7.66233097e-02 -4.47472721e-01 -8.91008997e-01]\n", + " [ 4.08509612e-02 -4.46435594e-01 -8.93882800e-01]\n", + " [ 4.58739598e-03 -4.44765825e-01 -8.95635147e-01]\n", + " [-3.19560954e-02 -4.42456317e-01 -8.96220517e-01]\n", + " [ 1.48624081e-01 -4.15620506e-01 -8.97312920e-01]\n", + " [ 1.14396962e-01 -4.15469715e-01 -9.02384758e-01]\n", + " [ 7.92702167e-02 -4.14787725e-01 -9.06458701e-01]\n", + " [ 4.34420082e-02 -4.13549503e-01 -9.09444666e-01]\n", + " [ 7.11606637e-03 -4.11739332e-01 -9.11273880e-01]\n", + " [-2.94959097e-02 -4.09351721e-01 -9.11899753e-01]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:fp_optics: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:cartToSphere: vec: [[ 2.10141994e-01 2.88394915e-01 -9.34167392e-01]\n", + " [ 1.85018610e-01 3.00622523e-01 -9.35625038e-01]\n", + " [ 1.59243118e-01 3.12853051e-01 -9.36357089e-01]\n", + " [ 1.32910497e-01 3.25024259e-01 -9.36319407e-01]\n", + " [ 1.06117124e-01 3.37077250e-01 -9.35477463e-01]\n", + " [ 7.89624516e-02 3.48955803e-01 -9.33806607e-01]\n", + " [ 5.15498390e-02 3.60606170e-01 -9.31292545e-01]\n", + " [ 2.39863253e-02 3.71977384e-01 -9.27931831e-01]\n", + " [ 2.10141994e-01 2.88394915e-01 -9.34167392e-01]\n", + " [ 1.98591606e-01 2.63651554e-01 -9.43954041e-01]\n", + " [ 1.86822680e-01 2.38809412e-01 -9.52925680e-01]\n", + " [ 1.74880864e-01 2.13969815e-01 -9.61058584e-01]\n", + " [ 1.62812025e-01 1.89237260e-01 -9.68339560e-01]\n", + " [ 1.50661843e-01 1.64719597e-01 -9.74765850e-01]\n", + " [ 1.38475603e-01 1.40528448e-01 -9.80344971e-01]\n", + " [ 1.26298244e-01 1.16779562e-01 -9.85094558e-01]\n", + " [ 2.39863253e-02 3.71977384e-01 -9.27931831e-01]\n", + " [ 1.21675207e-02 3.46305109e-01 -9.38043028e-01]\n", + " [ 3.72780114e-04 3.20405441e-01 -9.47280431e-01]\n", + " [-1.13512361e-02 2.94384896e-01 -9.55619528e-01]\n", + " [-2.29590235e-02 2.68351140e-01 -9.63047532e-01]\n", + " [-3.44064702e-02 2.42412383e-01 -9.69563011e-01]\n", + " [-4.56506396e-02 2.16677804e-01 -9.75175240e-01]\n", + " [-5.66491493e-02 1.91258955e-01 -9.79903509e-01]\n", + " [ 1.26298244e-01 1.16779562e-01 -9.85094558e-01]\n", + " [ 1.01297819e-01 1.26956955e-01 -9.86722192e-01]\n", + " [ 7.57513187e-02 1.37387425e-01 -9.87616542e-01]\n", + " [ 4.97587043e-02 1.48007270e-01 -9.87733729e-01]\n", + " [ 2.34204551e-02 1.58757317e-01 -9.87039815e-01]\n", + " [-3.16207610e-03 1.69582715e-01 -9.85510885e-01]\n", + " [-2.98864325e-02 1.80432457e-01 -9.83133221e-01]\n", + " [-5.66491493e-02 1.91258955e-01 -9.79903509e-01]\n", + " [ 1.99235141e-01 2.93637017e-01 -9.34923880e-01]\n", + " [ 1.67992992e-01 3.08632367e-01 -9.36228827e-01]\n", + " [ 1.35865739e-01 3.23570007e-01 -9.36398927e-01]\n", + " [ 1.03030136e-01 3.38340171e-01 -9.35366623e-01]\n", + " [ 6.96693690e-02 3.52839336e-01 -9.33086589e-01]\n", + " [ 3.59753008e-02 3.66969688e-01 -9.29536996e-01]\n", + " [ 2.05050911e-01 2.77666601e-01 -9.38538962e-01]\n", + " [ 1.90741755e-01 2.47261084e-01 -9.49989231e-01]\n", + " [ 1.76149821e-01 2.16807433e-01 -9.60190490e-01]\n", + " [ 1.61359482e-01 1.86496717e-01 -9.69114076e-01]\n", + " [ 1.46454813e-01 1.56527530e-01 -9.76754893e-01]\n", + " [ 1.31519023e-01 1.27107074e-01 -9.83130987e-01]\n", + " [ 1.89277262e-02 3.60780536e-01 -9.32458657e-01]\n", + " [ 4.45271765e-03 3.29150479e-01 -9.44266983e-01]\n", + " [-9.93986581e-03 2.97284601e-01 -9.54737171e-01]\n", + " [-2.41657403e-02 2.65380696e-01 -9.63840808e-01]\n", + " [-3.81436662e-02 2.33638020e-01 -9.71575183e-01]\n", + " [-5.17948639e-02 2.02258460e-01 -9.77961557e-01]\n", + " [ 1.15512874e-01 1.21262460e-01 -9.85876357e-01]\n", + " [ 8.44919023e-02 1.33915840e-01 -9.87384255e-01]\n", + " [ 5.27498941e-02 1.46885378e-01 -9.87745987e-01]\n", + " [ 2.04715995e-02 1.60060249e-01 -9.86894944e-01]\n", + " [-1.21563676e-02 1.73339417e-01 -9.84787119e-01]\n", + " [-4.49449479e-02 1.86630417e-01 -9.81401569e-01]\n", + " [ 2.10018224e-01 2.88352315e-01 -9.34208375e-01]\n", + " [ 2.10018224e-01 2.88352315e-01 -9.34208375e-01]\n", + " [-5.65205360e-02 1.91308277e-01 -9.79901307e-01]\n", + " [-5.65205360e-02 1.91308277e-01 -9.79901307e-01]\n", + " [ 1.94249854e-01 2.82908106e-01 -9.39270993e-01]\n", + " [ 1.79904044e-01 2.52370421e-01 -9.50759541e-01]\n", + " [ 1.65296912e-01 2.21770490e-01 -9.60986358e-01]\n", + " [ 1.50513289e-01 1.91299487e-01 -9.69922809e-01]\n", + " [ 1.35637582e-01 1.61155689e-01 -9.77563957e-01]\n", + " [ 1.20753105e-01 1.31545799e-01 -9.83928041e-01]\n", + " [ 1.62962961e-01 2.97794478e-01 -9.40617628e-01]\n", + " [ 1.48531168e-01 2.66921716e-01 -9.52203387e-01]\n", + " [ 1.33899352e-01 2.35949109e-01 -9.62496224e-01]\n", + " [ 1.19153522e-01 2.05068490e-01 -9.71467628e-01]\n", + " [ 1.04378873e-01 1.74477379e-01 -9.79113219e-01]\n", + " [ 8.96589467e-02 1.44380722e-01 -9.85451917e-01]\n", + " [ 1.30800270e-01 3.12643187e-01 -9.40821730e-01]\n", + " [ 1.16309823e-01 2.81493911e-01 -9.52487902e-01]\n", + " [ 1.01681891e-01 2.50210164e-01 -9.62837300e-01]\n", + " [ 8.70032195e-02 2.18984977e-01 -9.71841561e-01]\n", + " [ 7.23592685e-02 1.88015562e-01 -9.79496955e-01]\n", + " [ 5.78333996e-02 1.57505171e-01 -9.85823219e-01]\n", + " [ 9.79388297e-02 3.27344987e-01 -9.39815538e-01]\n", + " [ 8.34182529e-02 2.95978957e-01 -9.51544982e-01]\n", + " [ 6.88243257e-02 2.64446131e-01 -9.61941503e-01]\n", + " [ 5.42438685e-02 2.32941089e-01 -9.70976854e-01]\n", + " [ 3.97618600e-02 2.01661277e-01 -9.78647906e-01]\n", + " [ 2.54608631e-02 1.70808756e-01 -9.84975184e-01]\n", + " [ 6.45621402e-02 3.41797023e-01 -9.37553479e-01]\n", + " [ 5.00408447e-02 3.10275785e-01 -9.49328632e-01]\n", + " [ 3.55118337e-02 2.78557267e-01 -9.59762866e-01]\n", + " [ 2.10612682e-02 2.46837639e-01 -9.68827953e-01]\n", + " [ 6.77289316e-03 2.15314999e-01 -9.76521162e-01]\n", + " [-7.27212067e-03 1.84190898e-01 -9.82863586e-01]\n", + " [ 3.08623030e-02 3.55902098e-01 -9.34013498e-01]\n", + " [ 1.63700100e-02 3.24289040e-01 -9.45816389e-01]\n", + " [ 1.93657681e-03 2.92449904e-01 -9.56278884e-01]\n", + " [-1.23531384e-02 2.60582152e-01 -9.65372644e-01]\n", + " [-2.64171875e-02 2.28884736e-01 -9.73095016e-01]\n", + " [-4.01761529e-02 1.97559356e-01 -9.79467293e-01]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:fp_optics: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:cartToSphere: vec: [[ 2.43278846e-01 -5.11987614e-01 8.23822849e-01]\n", + " [ 2.19132104e-01 -5.24071786e-01 8.23000537e-01]\n", + " [ 1.94263051e-01 -5.35898002e-01 8.21629599e-01]\n", + " [ 1.68774915e-01 -5.47404444e-01 8.19672741e-01]\n", + " [ 1.42770731e-01 -5.58533428e-01 8.17102764e-01]\n", + " [ 1.16353644e-01 -5.69231347e-01 8.13902637e-01]\n", + " [ 8.96273336e-02 -5.79448842e-01 8.10065417e-01]\n", + " [ 6.26962314e-02 -5.89141160e-01 8.05594114e-01]\n", + " [ 2.43278846e-01 -5.11987614e-01 8.23822849e-01]\n", + " [ 2.35294087e-01 -4.91037995e-01 8.38760025e-01]\n", + " [ 2.26820154e-01 -4.69328915e-01 8.53394977e-01]\n", + " [ 2.17897496e-01 -4.46926865e-01 8.67627258e-01]\n", + " [ 2.08565939e-01 -4.23903150e-01 8.81366194e-01]\n", + " [ 1.98864804e-01 -4.00334202e-01 8.94530780e-01]\n", + " [ 1.88833365e-01 -3.76301811e-01 9.07049562e-01]\n", + " [ 1.78511324e-01 -3.51893104e-01 9.18860681e-01]\n", + " [ 6.26962314e-02 -5.89141160e-01 8.05594114e-01]\n", + " [ 5.27041878e-02 -5.68251006e-01 8.21165673e-01]\n", + " [ 4.24630259e-02 -5.46477656e-01 8.36396475e-01]\n", + " [ 3.20117996e-02 -5.23883133e-01 8.51188409e-01]\n", + " [ 2.13897165e-02 -5.00534651e-01 8.65452219e-01]\n", + " [ 1.06368495e-02 -4.76506217e-01 8.79106753e-01]\n", + " [-2.05472154e-04 -4.51879642e-01 8.92078891e-01]\n", + " [-1.10946921e-02 -4.26744670e-01 9.04304094e-01]\n", + " [ 1.78511324e-01 -3.51893104e-01 9.18860681e-01]\n", + " [ 1.52815460e-01 -3.63102600e-01 9.19132165e-01]\n", + " [ 1.26488497e-01 -3.74233588e-01 9.18667449e-01]\n", + " [ 9.96289614e-02 -3.85226399e-01 9.17428303e-01]\n", + " [ 7.23365631e-02 -3.96025056e-01 9.15386026e-01]\n", + " [ 4.47138503e-02 -4.06576785e-01 9.12521775e-01]\n", + " [ 1.68669636e-02 -4.16831993e-01 9.08827044e-01]\n", + " [-1.10946921e-02 -4.26744670e-01 9.04304094e-01]\n", + " [ 2.32819262e-01 -5.17213589e-01 8.23580776e-01]\n", + " [ 2.02724785e-01 -5.31858346e-01 8.22210047e-01]\n", + " [ 1.71648006e-01 -5.46053857e-01 8.19976918e-01]\n", + " [ 1.39778692e-01 -5.59692223e-01 8.16827113e-01]\n", + " [ 1.07306775e-01 -5.72674771e-01 8.12729268e-01]\n", + " [ 7.44234455e-02 -5.84912522e-01 8.07674744e-01]\n", + " [ 2.39778477e-01 -5.02992545e-01 8.30364246e-01]\n", + " [ 2.29656907e-01 -4.76797476e-01 8.48482099e-01]\n", + " [ 2.18840984e-01 -4.49527088e-01 8.66045046e-01]\n", + " [ 2.07404297e-01 -4.21310642e-01 8.82882099e-01]\n", + " [ 1.95419290e-01 -3.92288873e-01 8.98844114e-01]\n", + " [ 1.82958422e-01 -3.62614584e-01 9.13803523e-01]\n", + " [ 5.84655135e-02 -5.80113048e-01 8.12435004e-01]\n", + " [ 4.60477170e-02 -5.53908179e-01 8.31303397e-01]\n", + " [ 3.32943894e-02 -5.26437915e-01 8.49561419e-01]\n", + " [ 2.02776033e-02 -4.97823758e-01 8.67041132e-01]\n", + " [ 7.07117155e-03 -4.68202074e-01 8.83593128e-01]\n", + " [-6.24829795e-03 -4.37726802e-01 8.99086317e-01]\n", + " [ 1.67427655e-01 -3.56870468e-01 9.19027448e-01]\n", + " [ 1.35498331e-01 -3.70564580e-01 9.18870010e-01]\n", + " [ 1.02718872e-01 -3.84080883e-01 9.17567822e-01]\n", + " [ 6.92722476e-02 -3.97314827e-01 9.15064088e-01]\n", + " [ 3.53473324e-02 -4.10169249e-01 9.11324176e-01]\n", + " [ 1.14093638e-03 -4.22554301e-01 9.06336891e-01]\n", + " [ 2.43171191e-01 -5.11959028e-01 8.23872397e-01]\n", + " [ 2.43171191e-01 -5.11959028e-01 8.23872397e-01]\n", + " [-1.09617360e-02 -4.26798115e-01 9.04280493e-01]\n", + " [-1.09617360e-02 -4.26798115e-01 9.04280493e-01]\n", + " [ 2.29363124e-01 -5.08236753e-01 8.30113221e-01]\n", + " [ 2.19077358e-01 -4.82002288e-01 8.48338910e-01]\n", + " [ 2.08120157e-01 -4.54677399e-01 8.65999113e-01]\n", + " [ 1.96564712e-01 -4.26391025e-01 8.82922991e-01]\n", + " [ 1.84482956e-01 -3.97283779e-01 8.98961422e-01]\n", + " [ 1.71947021e-01 -3.67508687e-01 9.13986645e-01]\n", + " [ 1.99094952e-01 -5.22861455e-01 8.28840816e-01]\n", + " [ 1.88361224e-01 -4.96543348e-01 8.47328008e-01]\n", + " [ 1.77020720e-01 -4.69094198e-01 8.65224999e-01]\n", + " [ 1.65145199e-01 -4.40641713e-01 8.82361572e-01]\n", + " [ 1.52805287e-01 -4.11326006e-01 8.98588594e-01]\n", + " [ 1.40072514e-01 -3.81300756e-01 9.13777557e-01]\n", + " [ 1.67853187e-01 -5.37050712e-01 8.26681220e-01]\n", + " [ 1.56695744e-01 -5.10690542e-01 8.45364781e-01]\n", + " [ 1.44995197e-01 -4.83162016e-01 8.63441289e-01]\n", + " [ 1.32822070e-01 -4.54591276e-01 8.80741204e-01]\n", + " [ 1.20246316e-01 -4.25117722e-01 8.97115236e-01]\n", + " [ 1.07339566e-01 -3.94895579e-01 9.12433942e-01]\n", + " [ 1.35827100e-01 -5.50696537e-01 8.23580186e-01]\n", + " [ 1.24268324e-01 -5.24335653e-01 8.42395101e-01]\n", + " [ 1.12229012e-01 -4.96772679e-01 8.60593722e-01]\n", + " [ 9.97791759e-02 -4.68132074e-01 8.78007105e-01]\n", + " [ 8.69890073e-02 -4.38552351e-01 8.94485745e-01]\n", + " [ 7.39310185e-02 -4.08188045e-01 9.09899293e-01]\n", + " [ 1.03206261e-01 -5.63699945e-01 8.19506461e-01]\n", + " [ 9.12675218e-02 -5.37378867e-01 8.38387853e-01]\n", + " [ 7.89100378e-02 -5.09825906e-01 8.56650893e-01]\n", + " [ 6.62041993e-02 -4.81163975e-01 8.74127126e-01]\n", + " [ 5.32213322e-02 -4.51530623e-01 8.90666933e-01]\n", + " [ 4.00354758e-02 -4.21080366e-01 9.06139330e-01]\n", + " [ 7.01819096e-02 -5.75971524e-01 8.14451535e-01]\n", + " [ 5.78850196e-02 -5.49729571e-01 8.33334701e-01]\n", + " [ 4.52308783e-02 -5.22230192e-01 8.51604247e-01]\n", + " [ 3.22910249e-02 -4.93595155e-01 8.69092120e-01]\n", + " [ 1.91385621e-02 -4.63961102e-01 8.85648808e-01]\n", + " [ 5.84941420e-03 -4.33482178e-01 9.01143155e-01]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:cartToSphere: vec: [[ 0.23719251 -0.9643929 0.11698741]\n", + " [ 0.22866984 -0.96301025 0.14255304]\n", + " [ 0.21994212 -0.96083385 0.16859352]\n", + " [ 0.21102242 -0.95783639 0.19498457]\n", + " [ 0.2019286 -0.95399963 0.22160676]\n", + " [ 0.19268331 -0.94931451 0.24834472]\n", + " [ 0.18331369 -0.94378153 0.27508638]\n", + " [ 0.17385092 -0.93741094 0.30172271]\n", + " [ 0.23719251 -0.9643929 0.11698741]\n", + " [ 0.2626007 -0.95713597 0.12219496]\n", + " [ 0.28832525 -0.94899575 0.12757592]\n", + " [ 0.31424573 -0.939967 0.13308513]\n", + " [ 0.34024615 -0.93005359 0.13868261]\n", + " [ 0.3662143 -0.91926875 0.14433312]\n", + " [ 0.39204123 -0.9076354 0.1500055 ]\n", + " [ 0.41762123 -0.89518641 0.15567207]\n", + " [ 0.17385092 -0.93741094 0.30172271]\n", + " [ 0.19972982 -0.92986143 0.30897527]\n", + " [ 0.22597661 -0.92140965 0.31613104]\n", + " [ 0.25247725 -0.91204778 0.32314716]\n", + " [ 0.27912025 -0.90177729 0.32998424]\n", + " [ 0.30579498 -0.89060987 0.33660584]\n", + " [ 0.332391 -0.87856815 0.34297848]\n", + " [ 0.35879851 -0.86568614 0.34907183]\n", + " [ 0.41762123 -0.89518641 0.15567207]\n", + " [ 0.41053933 -0.89335092 0.18270631]\n", + " [ 0.40298995 -0.89075455 0.21013194]\n", + " [ 0.39498468 -0.8873687 0.23783165]\n", + " [ 0.38653944 -0.8831738 0.26569023]\n", + " [ 0.37767507 -0.87815986 0.29359294]\n", + " [ 0.36841764 -0.87232704 0.32142491]\n", + " [ 0.35879851 -0.86568614 0.34907183]\n", + " [ 0.23358896 -0.96386217 0.12808556]\n", + " [ 0.22300503 -0.96163761 0.15975562]\n", + " [ 0.21212535 -0.95819265 0.19201479]\n", + " [ 0.20098082 -0.95348991 0.22464125]\n", + " [ 0.18961311 -0.94751281 0.25742251]\n", + " [ 0.17807387 -0.94026626 0.29015351]\n", + " [ 0.24819529 -0.9613333 0.1193205 ]\n", + " [ 0.27956472 -0.95184619 0.12582688]\n", + " [ 0.31128917 -0.94102607 0.13254807]\n", + " [ 0.34315331 -0.92887627 0.13940833]\n", + " [ 0.37495049 -0.91542118 0.14634271]\n", + " [ 0.40648148 -0.90070714 0.15329531]\n", + " [ 0.18511411 -0.93425269 0.30480269]\n", + " [ 0.21709362 -0.92439491 0.31363102]\n", + " [ 0.24951195 -0.91317309 0.32227115]\n", + " [ 0.28216292 -0.90058605 0.33064914]\n", + " [ 0.31484275 -0.88665537 0.33869793]\n", + " [ 0.34734835 -0.87142747 0.34635718]\n", + " [ 0.41450428 -0.89452157 0.16738387]\n", + " [ 0.40550821 -0.8917648 0.20079501]\n", + " [ 0.3958212 -0.88783569 0.23467716]\n", + " [ 0.38547074 -0.88269443 0.26881749]\n", + " [ 0.37449524 -0.87632272 0.30300465]\n", + " [ 0.36294489 -0.86872524 0.33702738]\n", + " [ 0.23724994 -0.96436616 0.11709134]\n", + " [ 0.23724994 -0.96436616 0.11709134]\n", + " [ 0.35874212 -0.86575564 0.3489574 ]\n", + " [ 0.35874212 -0.86575564 0.3489574 ]\n", + " [ 0.24457277 -0.96082507 0.1303815 ]\n", + " [ 0.27605209 -0.95132043 0.13705721]\n", + " [ 0.30788837 -0.94047442 0.14391881]\n", + " [ 0.33986693 -0.92828998 0.15089132]\n", + " [ 0.37178135 -0.91479118 0.15791049]\n", + " [ 0.40343211 -0.90002425 0.16492085]\n", + " [ 0.23407874 -0.95858629 0.16223279]\n", + " [ 0.26581707 -0.94902894 0.1693675 ]\n", + " [ 0.2979207 -0.93811111 0.1766092 ]\n", + " [ 0.33017691 -0.9258345 0.18388498]\n", + " [ 0.36237979 -0.91222224 0.19113209]\n", + " [ 0.39432881 -0.89732023 0.19829571]\n", + " [ 0.2232609 -0.95512367 0.19466212]\n", + " [ 0.25518126 -0.94550858 0.20222771]\n", + " [ 0.28747921 -0.93452059 0.20982605]\n", + " [ 0.31994393 -0.92216017 0.21738558]\n", + " [ 0.35236994 -0.90844956 0.22484402]\n", + " [ 0.38455551 -0.89343446 0.23214635]\n", + " [ 0.21215046 -0.95039955 0.22744861]\n", + " [ 0.24417659 -0.94072066 0.23541971]\n", + " [ 0.27659588 -0.92966324 0.24335361]\n", + " [ 0.30919928 -0.91722673 0.25117907]\n", + " [ 0.34178167 -0.90343271 0.25883322]\n", + " [ 0.37414033 -0.88832688 0.26625997]\n", + " [ 0.20078953 -0.94439698 0.2603803 ]\n", + " [ 0.23284605 -0.93464724 0.26873268]\n", + " [ 0.26531386 -0.92352029 0.27698163]\n", + " [ 0.2979854 -0.91101495 0.28505518]\n", + " [ 0.33065601 -0.89715251 0.29288902]\n", + " [ 0.36312239 -0.88197885 0.30042542]\n", + " [ 0.18923024 -0.93712066 0.29325207]\n", + " [ 0.22124281 -0.92729243 0.30196088]\n", + " [ 0.25368674 -0.91609544 0.31050311]\n", + " [ 0.28635555 -0.90352842 0.31880542]\n", + " [ 0.31904523 -0.8896128 0.3268015 ]\n", + " [ 0.3515525 -0.87439482 0.33443168]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:fp_optics: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:fp_optics: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:cartToSphere: vec: [[-0.21746666 0.8240935 -0.52304699]\n", + " [-0.23016997 0.83403251 -0.50140956]\n", + " [-0.24310091 0.84348597 -0.47899204]\n", + " [-0.2561793 0.85238417 -0.45586555]\n", + " [-0.26933157 0.86066561 -0.43210557]\n", + " [-0.28249 0.86827685 -0.40779248]\n", + " [-0.29559211 0.87517266 -0.38301191]\n", + " [-0.30858008 0.88131622 -0.35785479]\n", + " [-0.21746666 0.8240935 -0.52304699]\n", + " [-0.23895244 0.81149616 -0.5332689 ]\n", + " [-0.26081161 0.79807145 -0.54319358]\n", + " [-0.28292856 0.7838369 -0.55276681]\n", + " [-0.30519425 0.76881844 -0.56193833]\n", + " [-0.32750538 0.75305075 -0.57066171]\n", + " [-0.34976357 0.73657751 -0.57889466]\n", + " [-0.37187488 0.71945136 -0.58659937]\n", + " [-0.30858008 0.88131622 -0.35785479]\n", + " [-0.33188049 0.86899761 -0.36701292]\n", + " [-0.35539456 0.855729 -0.37606194]\n", + " [-0.3790129 0.84152438 -0.38494926]\n", + " [-0.4026301 0.82640635 -0.39362615]\n", + " [-0.42614317 0.81040729 -0.40204729]\n", + " [-0.44945107 0.79357025 -0.41017069]\n", + " [-0.47245513 0.77594924 -0.41795805]\n", + " [-0.37187488 0.71945136 -0.58659937]\n", + " [-0.38664896 0.72903516 -0.56480998]\n", + " [-0.40140822 0.738216 -0.54213336]\n", + " [-0.41607663 0.74692576 -0.51863488]\n", + " [-0.43058232 0.75510376 -0.49438565]\n", + " [-0.44485684 0.76269645 -0.46946408]\n", + " [-0.45883496 0.76965766 -0.44395672]\n", + " [-0.47245513 0.77594924 -0.41795805]\n", + " [-0.22304526 0.82844025 -0.51374855]\n", + " [-0.2387796 0.84030438 -0.48669586]\n", + " [-0.25477527 0.85136903 -0.45854153]\n", + " [-0.27089406 0.86151758 -0.42942271]\n", + " [-0.28701127 0.87065168 -0.39948739]\n", + " [-0.30301381 0.87869152 -0.36889545]\n", + " [-0.2268245 0.8187383 -0.52746397]\n", + " [-0.25342521 0.80274087 -0.53979881]\n", + " [-0.280471 0.78551707 -0.55163299]\n", + " [-0.30775846 0.76711112 -0.56287233]\n", + " [-0.33509731 0.74758691 -0.57343143]\n", + " [-0.36230829 0.72702856 -0.58323424]\n", + " [-0.31866129 0.87604288 -0.36194455]\n", + " [-0.3473756 0.86030475 -0.37310312]\n", + " [-0.37630168 0.84315274 -0.38404492]\n", + " [-0.40524393 0.82462482 -0.39467869]\n", + " [-0.43401271 0.8047807 -0.40492096]\n", + " [-0.46242295 0.78370421 -0.41469594]\n", + " [-0.3782376 0.72373463 -0.57718672]\n", + " [-0.39634384 0.73521911 -0.54987673]\n", + " [-0.41435189 0.7460297 -0.52129857]\n", + " [-0.4321278 0.75605161 -0.49158065]\n", + " [-0.44954551 0.76518628 -0.46086743]\n", + " [-0.46648645 0.77335203 -0.42932159]\n", + " [-0.21758232 0.82408658 -0.5230098 ]\n", + " [-0.21758232 0.82408658 -0.5230098 ]\n", + " [-0.47233119 0.77599042 -0.41802167]\n", + " [-0.47233119 0.77599042 -0.41802167]\n", + " [-0.23236245 0.82309865 -0.51818559]\n", + " [-0.25916209 0.80710834 -0.53048199]\n", + " [-0.28638745 0.78987398 -0.54229265]\n", + " [-0.31383614 0.77143953 -0.55352319]\n", + " [-0.34131856 0.75186874 -0.56408779]\n", + " [-0.36865557 0.73124585 -0.57390991]\n", + " [-0.24829047 0.83498296 -0.49107566]\n", + " [-0.2756027 0.81901937 -0.50323993]\n", + " [-0.30328984 0.8017659 -0.51496283]\n", + " [-0.33115237 0.7832655 -0.52614947]\n", + " [-0.3590022 0.76358138 -0.53671305]\n", + " [-0.38665998 0.74279803 -0.54657583]\n", + " [-0.26445255 0.84606974 -0.46285079]\n", + " [-0.2922041 0.83014279 -0.47484704]\n", + " [-0.32028561 0.81288645 -0.48644912]\n", + " [-0.34849992 0.7943424 -0.49756202]\n", + " [-0.37665961 0.77457306 -0.50809853]\n", + " [-0.40458439 0.75366305 -0.51798019]\n", + " [-0.28071141 0.85624229 -0.43364761]\n", + " [-0.30883151 0.8403617 -0.44543833]\n", + " [-0.3372418 0.82311867 -0.4568847 ]\n", + " [-0.36574659 0.80455347 -0.46789224]\n", + " [-0.39415834 0.78472764 -0.47837406]\n", + " [-0.42229531 0.76372572 -0.48825167]\n", + " [-0.29694304 0.86540199 -0.40361396]\n", + " [-0.32536241 0.84957671 -0.41516108]\n", + " [-0.35403642 0.83236252 -0.42641628]\n", + " [-0.38276992 0.81379848 -0.43728621]\n", + " [-0.41137466 0.79394522 -0.44768502]\n", + " [-0.43966734 0.77288705 -0.45753496]\n", + " [-0.31303463 0.87346866 -0.37290994]\n", + " [-0.34168425 0.85770655 -0.3841762 ]\n", + " [-0.37055632 0.84053586 -0.39520561]\n", + " [-0.39945546 0.82199476 -0.40590633]\n", + " [-0.42819242 0.80214315 -0.4161942 ]\n", + " [-0.45658248 0.78106501 -0.42599283]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:fp_optics: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:cartToSphere: vec: [[ 0.84463756 -0.31264002 0.43456139]\n", + " [ 0.85890018 -0.30431249 0.41192764]\n", + " [ 0.87275235 -0.29557219 0.38851051]\n", + " [ 0.88610015 -0.28644136 0.36438697]\n", + " [ 0.89885972 -0.27694464 0.33963637]\n", + " [ 0.91095612 -0.26710991 0.31434256]\n", + " [ 0.9223228 -0.25696906 0.28859584]\n", + " [ 0.93290194 -0.24655844 0.26249362]\n", + " [ 0.84463756 -0.31264002 0.43456139]\n", + " [ 0.84073541 -0.33871944 0.42241343]\n", + " [ 0.83619216 -0.36440133 0.40987112]\n", + " [ 0.8310373 -0.38958832 0.39698609]\n", + " [ 0.82531033 -0.41418664 0.38381284]\n", + " [ 0.81906062 -0.43810636 0.37040858]\n", + " [ 0.81234678 -0.46126211 0.35683326]\n", + " [ 0.80523501 -0.48357509 0.34314969]\n", + " [ 0.93290194 -0.24655844 0.26249362]\n", + " [ 0.92877804 -0.27358071 0.25004987]\n", + " [ 0.92383496 -0.30026725 0.2374206 ]\n", + " [ 0.91810432 -0.32651613 0.22465902]\n", + " [ 0.91162758 -0.35223247 0.21181936]\n", + " [ 0.90445555 -0.37732796 0.19895672]\n", + " [ 0.89664837 -0.40171898 0.18612778]\n", + " [ 0.8882761 -0.42532435 0.17339195]\n", + " [ 0.80523501 -0.48357509 0.34314969]\n", + " [ 0.81841701 -0.47698769 0.32043149]\n", + " [ 0.83129708 -0.46978487 0.29706454]\n", + " [ 0.84378451 -0.46198413 0.27312702]\n", + " [ 0.85579578 -0.45360872 0.24870206]\n", + " [ 0.86725637 -0.44468593 0.22387678]\n", + " [ 0.87810144 -0.43524646 0.19874198]\n", + " [ 0.8882761 -0.42532435 0.17339195]\n", + " [ 0.85088785 -0.30915138 0.42475321]\n", + " [ 0.86810439 -0.29866575 0.3964764 ]\n", + " [ 0.88460998 -0.28758181 0.36709928]\n", + " [ 0.90024609 -0.27594392 0.33676688]\n", + " [ 0.9148747 -0.26380345 0.30563381]\n", + " [ 0.92837686 -0.25122101 0.27386932]\n", + " [ 0.8430658 -0.32402586 0.42924036]\n", + " [ 0.83784872 -0.35573493 0.41407993]\n", + " [ 0.8316967 -0.38674975 0.39837826]\n", + " [ 0.82467831 -0.41689621 0.38223452]\n", + " [ 0.81688439 -0.44600883 0.36575403]\n", + " [ 0.8084261 -0.47393299 0.34904836]\n", + " [ 0.93117146 -0.25841074 0.25718399]\n", + " [ 0.92556294 -0.29131654 0.2418014 ]\n", + " [ 0.91875436 -0.32361597 0.2261927 ]\n", + " [ 0.91081799 -0.35513138 0.21045735]\n", + " [ 0.90184736 -0.38569998 0.19469686]\n", + " [ 0.89195728 -0.41516892 0.17901671]\n", + " [ 0.81103885 -0.48070425 0.33337578]\n", + " [ 0.82700445 -0.47221402 0.30508617]\n", + " [ 0.84242564 -0.46281612 0.27589903]\n", + " [ 0.85714554 -0.45255114 0.24596543]\n", + " [ 0.871027 -0.44146924 0.21544575]\n", + " [ 0.8839548 -0.42962831 0.18450861]\n", + " [ 0.84467469 -0.31270202 0.4344446 ]\n", + " [ 0.84467469 -0.31270202 0.4344446 ]\n", + " [ 0.888272 -0.42527977 0.17352222]\n", + " [ 0.888272 -0.42527977 0.17352222]\n", + " [ 0.84927109 -0.32052019 0.41953 ]\n", + " [ 0.84401587 -0.35235923 0.40432683]\n", + " [ 0.83780235 -0.38350752 0.38859904]\n", + " [ 0.83069917 -0.41379078 0.37244607]\n", + " [ 0.82279755 -0.44304315 0.35597326]\n", + " [ 0.81420989 -0.47110868 0.33929172]\n", + " [ 0.86646764 -0.31014783 0.39120602]\n", + " [ 0.86111443 -0.34231571 0.37590144]\n", + " [ 0.85474188 -0.37380362 0.36012106]\n", + " [ 0.84741864 -0.40443709 0.34396554]\n", + " [ 0.83923617 -0.43405055 0.32754048]\n", + " [ 0.83030867 -0.46248648 0.31095622]\n", + " [ 0.88295666 -0.29915619 0.36179153]\n", + " [ 0.87752005 -0.33159468 0.34641525]\n", + " [ 0.87101059 -0.36336527 0.33061493]\n", + " [ 0.86349716 -0.39429332 0.31449236]\n", + " [ 0.85507112 -0.4242145 0.2981534 ]\n", + " [ 0.84584693 -0.45297206 0.28170779]\n", + " [ 0.89857964 -0.28758921 0.33143186]\n", + " [ 0.89307404 -0.32023937 0.31601502]\n", + " [ 0.88644925 -0.35223584 0.3002293 ]\n", + " [ 0.87877489 -0.38340337 0.28417697]\n", + " [ 0.87014254 -0.41357889 0.26796354]\n", + " [ 0.86066653 -0.4426074 0.25169788]\n", + " [ 0.91319868 -0.27549753 0.30028201]\n", + " [ 0.90763881 -0.30829883 0.2848572 ]\n", + " [ 0.90092043 -0.34046383 0.26912222]\n", + " [ 0.8931143 -0.37181629 0.25317879]\n", + " [ 0.88431269 -0.40219381 0.23713118]\n", + " [ 0.87462994 -0.43144297 0.22108694]\n", + " [ 0.92669499 -0.26294092 0.26851159]\n", + " [ 0.92109631 -0.29583076 0.25311212]\n", + " [ 0.91430706 -0.32810567 0.23746423]\n", + " [ 0.90639919 -0.35958834 0.22166808]\n", + " [ 0.89746588 -0.39011623 0.20582597]\n", + " [ 0.88762178 -0.41953653 0.19004388]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:fp_optics: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:cartToSphere: vec: [[-0.14784062 0.29428098 -0.94421494]\n", + " [-0.17166799 0.27957486 -0.94465232]\n", + " [-0.19583259 0.26435017 -0.94433499]\n", + " [-0.22023044 0.24865529 -0.94322272]\n", + " [-0.24475897 0.23254172 -0.94128497]\n", + " [-0.26931608 0.21606487 -0.93850137]\n", + " [-0.2938001 0.19928421 -0.93486219]\n", + " [-0.31811054 0.18226301 -0.93036868]\n", + " [-0.14784062 0.29428098 -0.94421494]\n", + " [-0.13331291 0.27087173 -0.95333948]\n", + " [-0.11880485 0.24725937 -0.9616383 ]\n", + " [-0.10437717 0.22353792 -0.9690904 ]\n", + " [-0.09009327 0.19980285 -0.97568541]\n", + " [-0.07601977 0.17615078 -0.9814234 ]\n", + " [-0.06222744 0.15267969 -0.98631468]\n", + " [-0.04879248 0.12948957 -0.9903796 ]\n", + " [-0.31811054 0.18226301 -0.93036868]\n", + " [-0.3029481 0.15812646 -0.93979704]\n", + " [-0.28756495 0.13392464 -0.94835151]\n", + " [-0.27202562 0.10975495 -0.95601041]\n", + " [-0.25639681 0.08571451 -0.96276357]\n", + " [-0.24074684 0.06189944 -0.96861211]\n", + " [-0.22514556 0.03840478 -0.97356795]\n", + " [-0.2096648 0.01532532 -0.97765321]\n", + " [-0.04879248 0.12948957 -0.9903796 ]\n", + " [-0.07082209 0.11378842 -0.99097751]\n", + " [-0.09334537 0.097794 -0.99081935]\n", + " [-0.11625193 0.08155797 -0.98986554]\n", + " [-0.13943682 0.06513463 -0.98808646]\n", + " [-0.16279897 0.04858116 -0.98546251]\n", + " [-0.1862402 0.03195735 -0.98198438]\n", + " [-0.2096648 0.01532532 -0.97765321]\n", + " [-0.15813136 0.2878559 -0.94452816]\n", + " [-0.18757374 0.26947658 -0.94456258]\n", + " [-0.21741919 0.25036627 -0.9434223 ]\n", + " [-0.24747839 0.23061844 -0.94104707]\n", + " [-0.27756337 0.21033511 -0.93739944]\n", + " [-0.30748741 0.1896274 -0.93246606]\n", + " [-0.14158842 0.28405571 -0.94829588]\n", + " [-0.12378826 0.25521617 -0.9589271 ]\n", + " [-0.10607751 0.22616488 -0.96829593]\n", + " [-0.08857177 0.19707703 -0.97637886]\n", + " [-0.0713938 0.16813052 -0.983176 ]\n", + " [-0.05467605 0.1395065 -0.98871051]\n", + " [-0.31144811 0.17181217 -0.93460187]\n", + " [-0.29270879 0.14217422 -0.94557287]\n", + " [-0.27370196 0.11253488 -0.95520843]\n", + " [-0.25454956 0.08307311 -0.96348502]\n", + " [-0.23537734 0.05396586 -0.97040466]\n", + " [-0.21631465 0.02538792 -0.97599356]\n", + " [-0.05837527 0.12276192 -0.99071784]\n", + " [-0.08572266 0.10331525 -0.99094782]\n", + " [-0.11370109 0.08347896 -0.99000168]\n", + " [-0.14211515 0.06335191 -0.98782074]\n", + " [-0.17077868 0.04303929 -0.98436897]\n", + " [-0.19951198 0.02265222 -0.97963353]\n", + " [-0.14787176 0.29415202 -0.94425025]\n", + " [-0.14787176 0.29415202 -0.94425025]\n", + " [-0.20963748 0.01546024 -0.97765695]\n", + " [-0.20963748 0.01546024 -0.97765695]\n", + " [-0.15182143 0.27772078 -0.94858917]\n", + " [-0.1339299 0.24877841 -0.95925601]\n", + " [-0.11610422 0.21963537 -0.9686486 ]\n", + " [-0.09845985 0.19046732 -0.9767435 ]\n", + " [-0.08111882 0.16145225 -0.983541 ]\n", + " [-0.0642123 0.13277095 -0.98906454]\n", + " [-0.18119638 0.25924413 -0.9486624 ]\n", + " [-0.16306927 0.23004725 -0.95941997]\n", + " [-0.14494292 0.20068257 -0.96887463]\n", + " [-0.12693302 0.17132715 -0.97700308]\n", + " [-0.10916046 0.1421593 -0.98380624]\n", + " [-0.09175355 0.11335876 -0.98930838]\n", + " [-0.21098625 0.24005556 -0.94755376]\n", + " [-0.19265801 0.21065972 -0.95838686]\n", + " [-0.17426704 0.18113123 -0.9678959 ]\n", + " [-0.15593006 0.15164838 -0.97605768]\n", + " [-0.13776804 0.12238969 -0.98287371]\n", + " [-0.11990779 0.09353387 -0.98836913]\n", + " [-0.24100207 0.22024907 -0.94520281]\n", + " [-0.22250784 0.1907115 -0.95609591]\n", + " [-0.20388843 0.16107855 -0.9656517 ]\n", + " [-0.18526208 0.13152934 -0.97384701]\n", + " [-0.16675073 0.10224239 -0.98068379]\n", + " [-0.14848103 0.07339528 -0.98618787]\n", + " [-0.27105622 0.19992727 -0.94157188]\n", + " [-0.25243232 0.17030665 -0.95250909]\n", + " [-0.2336218 0.14062971 -0.96210402]\n", + " [-0.21474454 0.11107592 -0.97033341]\n", + " [-0.19592405 0.08182337 -0.97719942]\n", + " [-0.17728773 0.05304848 -0.9827283 ]\n", + " [-0.30096232 0.17920168 -0.93664745]\n", + " [-0.28224632 0.14955766 -0.94761254]\n", + " [-0.26328361 0.11989776 -0.95723888]\n", + " [-0.24419562 0.09040116 -0.96550304]\n", + " [-0.22510755 0.06124517 -0.97240713]\n", + " [-0.20614818 0.03260501 -0.97797742]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:fp_optics: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:cartToSphere: vec: [[ 0.86699578 -0.39188787 -0.30780224]\n", + " [ 0.865235 -0.37713478 -0.33036003]\n", + " [ 0.86271426 -0.36190554 -0.35319753]\n", + " [ 0.85941204 -0.3462395 -0.3762036 ]\n", + " [ 0.85531622 -0.33018076 -0.39926786]\n", + " [ 0.85042332 -0.31377831 -0.42228349]\n", + " [ 0.84473822 -0.29708614 -0.44514848]\n", + " [ 0.83827413 -0.2801632 -0.46776603]\n", + " [ 0.86699578 -0.39188787 -0.30780224]\n", + " [ 0.85354643 -0.41315264 -0.31743251]\n", + " [ 0.83915672 -0.43449238 -0.32715803]\n", + " [ 0.82384926 -0.45580619 -0.33691708]\n", + " [ 0.80765688 -0.47699546 -0.34664923]\n", + " [ 0.79062151 -0.4979652 -0.35629803]\n", + " [ 0.77279372 -0.51862445 -0.36581217]\n", + " [ 0.75423262 -0.53888663 -0.37514578]\n", + " [ 0.83827413 -0.2801632 -0.46776603]\n", + " [ 0.82424725 -0.30128969 -0.47941734]\n", + " [ 0.80926868 -0.3226079 -0.49092602]\n", + " [ 0.79336274 -0.34401697 -0.50222294]\n", + " [ 0.77656087 -0.36542114 -0.51324517]\n", + " [ 0.75890287 -0.38672799 -0.52393502]\n", + " [ 0.74043861 -0.40784685 -0.53423929]\n", + " [ 0.72122898 -0.42868852 -0.54410928]\n", + " [ 0.75423262 -0.53888663 -0.37514578]\n", + " [ 0.75156931 -0.52502528 -0.39936452]\n", + " [ 0.74824086 -0.51046871 -0.42374204]\n", + " [ 0.7442284 -0.49525254 -0.44816182]\n", + " [ 0.73952042 -0.47941689 -0.47251349]\n", + " [ 0.73411316 -0.46300771 -0.49669077]\n", + " [ 0.72801139 -0.44607805 -0.52058984]\n", + " [ 0.72122898 -0.42868852 -0.54410928]\n", + " [ 0.86627521 -0.38558895 -0.31762938]\n", + " [ 0.86360899 -0.36718291 -0.3454797 ]\n", + " [ 0.85977884 -0.34810007 -0.37363977]\n", + " [ 0.85475858 -0.32841965 -0.40190585]\n", + " [ 0.84854177 -0.30823183 -0.43008139]\n", + " [ 0.84114086 -0.28763809 -0.45798076]\n", + " [ 0.8612435 -0.40109424 -0.31206256]\n", + " [ 0.84412491 -0.42721999 -0.32393862]\n", + " [ 0.82561504 -0.45335801 -0.33589629]\n", + " [ 0.80577019 -0.47932572 -0.34782359]\n", + " [ 0.7846675 -0.50494825 -0.35961671]\n", + " [ 0.76240361 -0.53005997 -0.37118345]\n", + " [ 0.83230016 -0.28940258 -0.47278175]\n", + " [ 0.81446631 -0.31543777 -0.48697397]\n", + " [ 0.79522636 -0.34166 -0.5008827 ]\n", + " [ 0.77463519 -0.36789091 -0.51438955]\n", + " [ 0.75276629 -0.39396013 -0.52738821]\n", + " [ 0.72971605 -0.41970135 -0.53978261]\n", + " [ 0.75321658 -0.53286185 -0.38564625]\n", + " [ 0.74950851 -0.51540088 -0.41545027]\n", + " [ 0.7447817 -0.49693074 -0.4453763 ]\n", + " [ 0.73901191 -0.47752339 -0.47521871]\n", + " [ 0.7321923 -0.45726356 -0.50478161]\n", + " [ 0.72433541 -0.43625209 -0.53387483]\n", + " [ 0.86694665 -0.39191074 -0.30791148]\n", + " [ 0.86694665 -0.39191074 -0.30791148]\n", + " [ 0.72132019 -0.428678 -0.54399665]\n", + " [ 0.72132019 -0.428678 -0.54399665]\n", + " [ 0.86055446 -0.39479014 -0.32184898]\n", + " [ 0.8433799 -0.42097238 -0.33390508]\n", + " [ 0.8248063 -0.44717522 -0.34601863]\n", + " [ 0.80489072 -0.47321552 -0.35807541]\n", + " [ 0.78371048 -0.49891822 -0.36997094]\n", + " [ 0.76136227 -0.52411738 -0.38161297]\n", + " [ 0.85783917 -0.37641881 -0.34988689]\n", + " [ 0.84051305 -0.40271763 -0.36243113]\n", + " [ 0.82177183 -0.42906215 -0.37496231]\n", + " [ 0.80167355 -0.45526869 -0.3873628 ]\n", + " [ 0.78029521 -0.48116207 -0.39952779]\n", + " [ 0.75773327 -0.50657548 -0.41136551]\n", + " [ 0.85396221 -0.35734722 -0.37822152]\n", + " [ 0.83649707 -0.38369702 -0.39121509]\n", + " [ 0.81760845 -0.41012033 -0.40412589]\n", + " [ 0.79735397 -0.43643408 -0.41683563]\n", + " [ 0.77580949 -0.46246353 -0.42924016]\n", + " [ 0.75307108 -0.48804106 -0.44124808]\n", + " [ 0.84889814 -0.33765402 -0.40664691]\n", + " [ 0.83130763 -0.36398814 -0.42004793]\n", + " [ 0.81229184 -0.39042642 -0.43330033]\n", + " [ 0.79190726 -0.41678716 -0.44628618]\n", + " [ 0.77022845 -0.44289655 -0.4589017 ]\n", + " [ 0.74735119 -0.46858655 -0.47105503]\n", + " [ 0.84264072 -0.31742926 -0.43496584]\n", + " [ 0.8249382 -0.34368088 -0.44873201]\n", + " [ 0.80581461 -0.37007005 -0.46228884]\n", + " [ 0.78532532 -0.39641671 -0.4755186 ]\n", + " [ 0.76354395 -0.42254842 -0.48831698]\n", + " [ 0.74056631 -0.44829735 -0.50059068]\n", + " [ 0.83520231 -0.29677463 -0.46299236]\n", + " [ 0.81740052 -0.32287773 -0.47708109]\n", + " [ 0.79818768 -0.34915447 -0.49090486]\n", + " [ 0.77761866 -0.37542616 -0.50434554]\n", + " [ 0.75576684 -0.4015219 -0.51729744]\n", + " [ 0.73272841 -0.42727488 -0.52966524]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:fp_optics: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:cartToSphere: vec: [[-0.06624977 -0.57314965 -0.81676829]\n", + " [-0.06468267 -0.55009491 -0.83259338]\n", + " [-0.06303113 -0.52613694 -0.84806073]\n", + " [-0.06129898 -0.50134696 -0.86307222]\n", + " [-0.05949066 -0.47580168 -0.87753839]\n", + " [-0.05761137 -0.44958498 -0.89137774]\n", + " [-0.05566714 -0.42278879 -0.90451689]\n", + " [-0.05366488 -0.39551289 -0.91689129]\n", + " [-0.06624977 -0.57314965 -0.81676829]\n", + " [-0.09513131 -0.57043781 -0.81581293]\n", + " [-0.12383405 -0.56717594 -0.81423374]\n", + " [-0.15224684 -0.56338127 -0.8120483 ]\n", + " [-0.1802601 -0.55907558 -0.80928412]\n", + " [-0.20776563 -0.55428474 -0.80597883]\n", + " [-0.23465603 -0.54903822 -0.80218051]\n", + " [-0.26082382 -0.54336899 -0.79794804]\n", + " [-0.05366488 -0.39551289 -0.91689129]\n", + " [-0.08355104 -0.39283201 -0.91580688]\n", + " [-0.11326411 -0.38980519 -0.91390544]\n", + " [-0.1426877 -0.38644946 -0.91120636]\n", + " [-0.17170965 -0.38278606 -0.9077393 ]\n", + " [-0.20022258 -0.37884002 -0.90354367]\n", + " [-0.22812331 -0.3746401 -0.89866821]\n", + " [-0.25531113 -0.37021876 -0.89317092]\n", + " [-0.26082382 -0.54336899 -0.79794804]\n", + " [-0.26102718 -0.52076006 -0.81281841]\n", + " [-0.26089313 -0.49730643 -0.82741833]\n", + " [-0.26042626 -0.47308529 -0.84164629]\n", + " [-0.25963057 -0.44817772 -0.85541142]\n", + " [-0.25850985 -0.4226694 -0.86863297]\n", + " [-0.2570683 -0.39665108 -0.88123993]\n", + " [-0.25531113 -0.37021876 -0.89317092]\n", + " [-0.06567645 -0.5632048 -0.8237032 ]\n", + " [-0.06369954 -0.53433262 -0.8428707 ]\n", + " [-0.06159937 -0.50417404 -0.86140238]\n", + " [-0.05938384 -0.47286789 -0.87912998]\n", + " [-0.05706252 -0.4405687 -0.89590351]\n", + " [-0.05464687 -0.40744901 -0.91159148]\n", + " [-0.07885223 -0.57195856 -0.81648376]\n", + " [-0.11414437 -0.56826312 -0.81489146]\n", + " [-0.14905734 -0.5637582 -0.81237836]\n", + " [-0.1833887 -0.55848207 -0.80899095]\n", + " [-0.21693922 -0.55248227 -0.80479856]\n", + " [-0.24951119 -0.54581452 -0.79989417]\n", + " [-0.06671597 -0.39448142 -0.9164788 ]\n", + " [-0.10324283 -0.39096101 -0.9145985 ]\n", + " [-0.13939362 -0.38693725 -0.91150918]\n", + " [-0.17496005 -0.3824475 -0.9072612 ]\n", + " [-0.20974438 -0.37753787 -0.90192708]\n", + " [-0.24355779 -0.3722628 -0.89560036]\n", + " [-0.26086576 -0.53363992 -0.80447342]\n", + " [-0.26088646 -0.50535211 -0.82253115]\n", + " [-0.26040514 -0.47587176 -0.84008049]\n", + " [-0.25942943 -0.44534647 -0.85694976]\n", + " [-0.25796637 -0.41393403 -0.87299025]\n", + " [-0.25602409 -0.38180371 -0.88807522]\n", + " [-0.0663435 -0.57306411 -0.81682071]\n", + " [-0.0663435 -0.57306411 -0.81682071]\n", + " [-0.25522602 -0.3703252 -0.89315112]\n", + " [-0.25522602 -0.3703252 -0.89315112]\n", + " [-0.07823446 -0.56209634 -0.82336327]\n", + " [-0.11366637 -0.55840254 -0.82174604]\n", + " [-0.14871883 -0.5539142 -0.8191836 ]\n", + " [-0.18318921 -0.54867002 -0.81572233]\n", + " [-0.21687867 -0.54271809 -0.81143128]\n", + " [-0.24959033 -0.53611456 -0.80640303]\n", + " [-0.07638166 -0.53321737 -0.84252304]\n", + " [-0.11216562 -0.52953414 -0.84084033]\n", + " [-0.14756908 -0.52510098 -0.83814815]\n", + " [-0.1823885 -0.5199577 -0.83449292]\n", + " [-0.21642588 -0.51415361 -0.82994331]\n", + " [-0.24948683 -0.50774598 -0.82459101]\n", + " [-0.07438232 -0.50305431 -0.86104799]\n", + " [-0.1104526 -0.49939112 -0.85930712]\n", + " [-0.14614143 -0.49502677 -0.85649937]\n", + " [-0.18124396 -0.4900016 -0.85267172]\n", + " [-0.21556266 -0.48436552 -0.84789315]\n", + " [-0.24890536 -0.47817637 -0.842255 ]\n", + " [-0.07224366 -0.47174608 -0.87876988]\n", + " [-0.10853283 -0.46811317 -0.87697815]\n", + " [-0.14444035 -0.46383261 -0.87406882]\n", + " [-0.17975998 -0.45894456 -0.87008979]\n", + " [-0.2142943 -0.45349869 -0.86511091]\n", + " [-0.24785287 -0.44755265 -0.85922382]\n", + " [-0.06997444 -0.43944729 -0.89553875]\n", + " [-0.106413 -0.43585523 -0.89370381]\n", + " [-0.14247106 -0.43167386 -0.8907074 ]\n", + " [-0.17794119 -0.42694252 -0.88659857]\n", + " [-0.21262587 -0.42170977 -0.8814483 ]\n", + " [-0.24633579 -0.4160323 -0.87534896]\n", + " [-0.06758543 -0.40633051 -0.9112232 ]\n", + " [-0.10410202 -0.40278966 -0.90935321]\n", + " [-0.14024105 -0.39872235 -0.90628524]\n", + " [-0.17579433 -0.39416649 -0.90206936]\n", + " [-0.21056419 -0.38916895 -0.89677771]\n", + " [-0.24436177 -0.38378479 -0.89050354]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:cartToSphere: vec: [[ 1.32168189e-01 1.77597604e-01 9.75187500e-01]\n", + " [ 1.27454422e-01 1.50463133e-01 9.80365348e-01]\n", + " [ 1.22544738e-01 1.22668681e-01 9.84852873e-01]\n", + " [ 1.17453067e-01 9.43184106e-02 9.88589305e-01]\n", + " [ 1.12194759e-01 6.55185347e-02 9.91523907e-01]\n", + " [ 1.06786837e-01 3.63785259e-02 9.93616211e-01]\n", + " [ 1.01248063e-01 7.01124280e-03 9.94836505e-01]\n", + " [ 9.55988536e-02 -2.24677718e-02 9.95166347e-01]\n", + " [ 1.32168189e-01 1.77597604e-01 9.75187500e-01]\n", + " [ 1.03735947e-01 1.82932669e-01 9.77637199e-01]\n", + " [ 7.52908644e-02 1.88002162e-01 9.79278547e-01]\n", + " [ 4.69448587e-02 1.92785747e-01 9.80117256e-01]\n", + " [ 1.88099909e-02 1.97263426e-01 9.80170049e-01]\n", + " [-9.00156090e-03 2.01414955e-01 9.79464643e-01]\n", + " [-3.63769615e-02 2.05219026e-01 9.78039809e-01]\n", + " [-6.32016144e-02 2.08652372e-01 9.75945564e-01]\n", + " [ 9.55988536e-02 -2.24677718e-02 9.95166347e-01]\n", + " [ 6.62200506e-02 -1.68046048e-02 9.97663526e-01]\n", + " [ 3.68751718e-02 -1.11464922e-02 9.99257713e-01]\n", + " [ 7.68072354e-03 -5.51597381e-03 9.99955289e-01]\n", + " [-2.12485411e-02 6.46875426e-05 9.99774222e-01]\n", + " [-4.98004420e-02 5.57365286e-03 9.98743636e-01]\n", + " [-7.78654029e-02 1.09894951e-02 9.96903310e-01]\n", + " [-1.05335418e-01 1.62909737e-02 9.94303301e-01]\n", + " [-6.32016144e-02 2.08652372e-01 9.75945564e-01]\n", + " [-6.95026664e-02 1.82745598e-01 9.80700477e-01]\n", + " [-7.57374225e-02 1.56130562e-01 9.84828457e-01]\n", + " [-8.18913916e-02 1.28918469e-01 9.88268095e-01]\n", + " [-8.79476816e-02 1.01218856e-01 9.90969197e-01]\n", + " [-9.38874311e-02 7.31409996e-02 9.92892514e-01]\n", + " [-9.96903776e-02 4.47947889e-02 9.94009686e-01]\n", + " [-1.05335418e-01 1.62909737e-02 9.94303301e-01]\n", + " [ 1.30040439e-01 1.65873418e-01 9.77535418e-01]\n", + " [ 1.24128839e-01 1.32160644e-01 9.83425440e-01]\n", + " [ 1.17936849e-01 9.75598889e-02 9.88217065e-01]\n", + " [ 1.11492125e-01 6.22657324e-02 9.91812727e-01]\n", + " [ 1.04826018e-01 2.64797204e-02 9.94137984e-01]\n", + " [ 9.79737702e-02 -9.58920885e-03 9.95142798e-01]\n", + " [ 1.19764193e-01 1.79863579e-01 9.76373715e-01]\n", + " [ 8.48938670e-02 1.86226576e-01 9.78832311e-01]\n", + " [ 5.01154721e-02 1.92170574e-01 9.80081073e-01]\n", + " [ 1.56352712e-02 1.97658636e-01 9.80146215e-01]\n", + " [-1.83401603e-02 2.02653406e-01 9.79078769e-01]\n", + " [-5.16024394e-02 2.07114885e-01 9.76954765e-01]\n", + " [ 8.28124021e-02 -1.98985881e-02 9.96366475e-01]\n", + " [ 4.68138452e-02 -1.29585519e-02 9.98819573e-01]\n", + " [ 1.09821103e-02 -6.04872322e-03 9.99921400e-01]\n", + " [-2.44707584e-02 7.89790922e-04 9.99700234e-01]\n", + " [-5.93382468e-02 7.51679025e-03 9.98209632e-01]\n", + " [-9.34193749e-02 1.40929311e-02 9.95527101e-01]\n", + " [-6.58652370e-02 1.97439700e-01 9.78099860e-01]\n", + " [-7.35440957e-02 1.65196556e-01 9.83514801e-01]\n", + " [-8.11094452e-02 1.32000359e-01 9.87925687e-01]\n", + " [-8.85311709e-02 9.80533657e-02 9.91235476e-01]\n", + " [-9.57746119e-02 6.35568494e-02 9.93371910e-01]\n", + " [-1.02802090e-01 2.87134812e-02 9.94287316e-01]\n", + " [ 1.32055335e-01 1.77524730e-01 9.75216057e-01]\n", + " [ 1.32055335e-01 1.77524730e-01 9.75216057e-01]\n", + " [-1.05223606e-01 1.63706818e-02 9.94313831e-01]\n", + " [-1.05223606e-01 1.63706818e-02 9.94313831e-01]\n", + " [ 1.17701398e-01 1.68223261e-01 9.78696743e-01]\n", + " [ 8.26975779e-02 1.74632971e-01 9.81154644e-01]\n", + " [ 4.77895027e-02 1.80646760e-01 9.82386335e-01]\n", + " [ 1.31838062e-02 1.86228024e-01 9.82418093e-01]\n", + " [-2.09131350e-02 1.91340104e-01 9.81300976e-01]\n", + " [-5.42937966e-02 1.95944042e-01 9.79110880e-01]\n", + " [ 1.11669444e-01 1.34538724e-01 9.84595992e-01]\n", + " [ 7.63314371e-02 1.41072851e-01 9.87052158e-01]\n", + " [ 4.11009472e-02 1.47276608e-01 9.88241020e-01]\n", + " [ 6.18594798e-03 1.53113759e-01 9.88189208e-01]\n", + " [-2.82074059e-02 1.58548868e-01 9.86948124e-01]\n", + " [-6.18737232e-02 1.63545244e-01 9.84593620e-01]\n", + " [ 1.05380204e-01 9.99618789e-02 9.89395086e-01]\n", + " [ 6.97742037e-02 1.06609107e-01 9.91849817e-01]\n", + " [ 3.42886115e-02 1.12992559e-01 9.93004014e-01]\n", + " [-8.67102043e-04 1.19075577e-01 9.92884815e-01]\n", + " [-3.54866500e-02 1.24822836e-01 9.91544229e-01]\n", + " [-6.93662730e-02 1.30198673e-01 9.89058454e-01]\n", + " [ 9.88620123e-02 6.46872008e-02 9.92996409e-01]\n", + " [ 6.30560417e-02 7.14361742e-02 9.95450053e-01]\n", + " [ 2.73840845e-02 7.79895122e-02 9.96578019e-01]\n", + " [-7.94305399e-03 8.43095442e-02 9.96407953e-01]\n", + " [-4.27188351e-02 9.03601094e-02 9.94992539e-01]\n", + " [-7.67406811e-02 9.61053694e-02 9.92408497e-01]\n", + " [ 9.21469063e-02 2.89160863e-02 9.95325478e-01]\n", + " [ 5.62108225e-02 3.57549143e-02 9.97778497e-01]\n", + " [ 2.04226980e-02 4.24677532e-02 9.98889085e-01]\n", + " [-1.50057403e-02 4.90155549e-02 9.98685287e-01]\n", + " [-4.98677957e-02 5.53606616e-02 9.97220337e-01]\n", + " [-8.39617336e-02 6.14661172e-02 9.94571437e-01]\n", + " [ 8.52706633e-02 -7.14267553e-03 9.96332222e-01]\n", + " [ 4.92757176e-02 -2.26682828e-04 9.98785188e-01]\n", + " [ 1.34427035e-02 6.63402193e-03 9.99887635e-01]\n", + " [-2.20163050e-02 1.33988677e-02 9.99667821e-01]\n", + " [-5.68946938e-02 2.00283407e-02 9.98179272e-01]\n", + " [-9.09913246e-02 2.64837735e-02 9.95499467e-01]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:fp_optics: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:fp_optics: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:cartToSphere: vec: [[ 1.74667186e-01 -3.41840695e-01 9.23383081e-01]\n", + " [ 1.48936688e-01 -3.52952471e-01 9.23711219e-01]\n", + " [ 1.22578733e-01 -3.63998531e-01 9.23298177e-01]\n", + " [ 9.56919328e-02 -3.74919403e-01 9.22105468e-01]\n", + " [ 6.83761045e-02 -3.85659416e-01 9.20104083e-01]\n", + " [ 4.07339136e-02 -3.96166141e-01 9.17274843e-01]\n", + " [ 1.28716153e-02 -4.06390295e-01 9.13608915e-01]\n", + " [-1.51012862e-02 -4.16286090e-01 9.09108268e-01]\n", + " [ 1.74667186e-01 -3.41840695e-01 9.23383081e-01]\n", + " [ 1.64021319e-01 -3.17058183e-01 9.34115151e-01]\n", + " [ 1.53182631e-01 -2.92128757e-01 9.44031711e-01]\n", + " [ 1.42192725e-01 -2.67154602e-01 9.53105266e-01]\n", + " [ 1.31093044e-01 -2.42241542e-01 9.61318703e-01]\n", + " [ 1.19924456e-01 -2.17499199e-01 9.68665176e-01]\n", + " [ 1.08727022e-01 -1.93041413e-01 9.75147911e-01]\n", + " [ 9.75400383e-02 -1.68986629e-01 9.80780026e-01]\n", + " [-1.51012862e-02 -4.16286090e-01 9.09108268e-01]\n", + " [-2.59678326e-02 -3.90596466e-01 9.20195671e-01]\n", + " [-3.67775854e-02 -3.64640774e-01 9.30421687e-01]\n", + " [-4.74882664e-02 -3.38526348e-01 9.39757828e-01]\n", + " [-5.80590829e-02 -3.12362155e-01 9.48187232e-01]\n", + " [-6.84509083e-02 -2.86258170e-01 9.55704313e-01]\n", + " [-7.86260483e-02 -2.60325802e-01 9.62314097e-01]\n", + " [-8.85476495e-02 -2.34679290e-01 9.68031479e-01]\n", + " [ 9.75400383e-02 -1.68986629e-01 9.80780026e-01]\n", + " [ 7.20329041e-02 -1.78084811e-01 9.81375087e-01]\n", + " [ 4.59935787e-02 -1.87371491e-01 9.81211759e-01]\n", + " [ 1.95257027e-02 -1.96786030e-01 9.80252011e-01]\n", + " [-7.26695744e-03 -2.06272796e-01 9.78467539e-01]\n", + " [-3.42801473e-02 -2.15780947e-01 9.75839871e-01]\n", + " [-6.14089004e-02 -2.25263973e-01 9.72360576e-01]\n", + " [-8.85476495e-02 -2.34679290e-01 9.68031479e-01]\n", + " [ 1.63495899e-01 -3.46604844e-01 9.23652626e-01]\n", + " [ 1.31525820e-01 -3.60186150e-01 9.23562069e-01]\n", + " [ 9.87112915e-02 -3.73609359e-01 9.22318886e-01]\n", + " [ 6.52354765e-02 -3.86770445e-01 9.19865727e-01]\n", + " [ 3.12874677e-02 -3.99572884e-01 9.16167345e-01]\n", + " [-2.93571547e-03 -4.11927375e-01 9.11211951e-01]\n", + " [ 1.69964974e-01 -3.31097572e-01 9.28162866e-01]\n", + " [ 1.56782231e-01 -3.00611630e-01 9.40772013e-01]\n", + " [ 1.43351366e-01 -2.70006063e-01 9.52127676e-01]\n", + " [ 1.29748765e-01 -2.39474186e-01 9.62194041e-01]\n", + " [ 1.16049641e-01 -2.09217856e-01 9.70958480e-01]\n", + " [ 1.02327415e-01 -1.79448559e-01 9.78431048e-01]\n", + " [-1.97476608e-02 -4.05091583e-01 9.14062820e-01]\n", + " [-3.30330511e-02 -3.73414157e-01 9.27076418e-01]\n", + " [-4.61911723e-02 -3.41443568e-01 9.38766566e-01]\n", + " [-5.91462812e-02 -3.09379804e-01 9.49097389e-01]\n", + " [-7.18263140e-02 -2.77425374e-01 9.58058528e-01]\n", + " [-8.41622576e-02 -2.45786457e-01 9.65663364e-01]\n", + " [ 8.65288739e-02 -1.73008199e-01 9.81112082e-01]\n", + " [ 5.48956556e-02 -1.84295071e-01 9.81336738e-01]\n", + " [ 2.25659647e-02 -1.95804083e-01 9.80383363e-01]\n", + " [-1.02692348e-02 -2.07430731e-01 9.78195806e-01]\n", + " [-4.34179874e-02 -2.19081365e-01 9.74740085e-01]\n", + " [-7.66867822e-02 -2.30672007e-01 9.70004929e-01]\n", + " [ 1.74544348e-01 -3.41794347e-01 9.23423465e-01]\n", + " [ 1.74544348e-01 -3.41794347e-01 9.23423465e-01]\n", + " [-8.84214902e-02 -2.34734334e-01 9.68029665e-01]\n", + " [-8.84214902e-02 -2.34734334e-01 9.68029665e-01]\n", + " [ 1.58900473e-01 -3.35865319e-01 9.28409999e-01]\n", + " [ 1.45687133e-01 -3.05248815e-01 9.41062389e-01]\n", + " [ 1.32248016e-01 -2.74499092e-01 9.52449847e-01]\n", + " [ 1.18659960e-01 -2.43809598e-01 9.62536593e-01]\n", + " [ 1.04998515e-01 -2.13381893e-01 9.71310187e-01]\n", + " [ 9.13372228e-02 -1.83426956e-01 9.78780907e-01]\n", + " [ 1.26890606e-01 -3.49338947e-01 9.28364731e-01]\n", + " [ 1.13606948e-01 -3.18392160e-01 9.41126928e-01]\n", + " [ 1.00161153e-01 -2.87276249e-01 9.52596505e-01]\n", + " [ 8.66311766e-02 -2.56185398e-01 9.62737805e-01]\n", + " [ 7.30933490e-02 -2.25320472e-01 9.71539010e-01]\n", + " [ 5.96214772e-02 -1.94890718e-01 9.79011178e-01]\n", + " [ 9.40448716e-02 -3.62674588e-01 9.27158404e-01]\n", + " [ 8.07160205e-02 -3.31456521e-01 9.40011435e-01]\n", + " [ 6.72896512e-02 -3.00036755e-01 9.51551390e-01]\n", + " [ 5.38443528e-02 -2.68610719e-01 9.61742724e-01]\n", + " [ 4.04566639e-02 -2.37379027e-01 9.70574292e-01]\n", + " [ 2.72002276e-02 -2.06549269e-01 9.78058049e-01]\n", + " [ 6.05467157e-02 -3.75768755e-01 9.24733441e-01]\n", + " [ 4.71989391e-02 -3.44339689e-01 9.37657954e-01]\n", + " [ 3.38195925e-02 -3.12679043e-01 9.49256578e-01]\n", + " [ 2.04872081e-02 -2.80983800e-01 9.59493814e-01]\n", + " [ 7.27775986e-03 -2.49454820e-01 9.68359090e-01]\n", + " [-5.73591640e-03 -2.18298528e-01 9.75865181e-01]\n", + " [ 2.65855165e-02 -3.88525595e-01 9.21054327e-01]\n", + " [ 1.32458629e-02 -3.56947628e-01 9.34030480e-01]\n", + " [-5.82056779e-05 -3.25110472e-01 9.45676043e-01]\n", + " [-1.32489455e-02 -2.93212638e-01 9.55955446e-01]\n", + " [-2.62517044e-02 -2.61455605e-01 9.64858443e-01]\n", + " [-3.89950596e-02 -2.30045279e-01 9.72398352e-01]\n", + " [-7.64150041e-03 -4.00856416e-01 9.16109023e-01]\n", + " [-2.09458005e-02 -3.69193464e-01 9.29116494e-01]\n", + " [-3.41467400e-02 -3.37245827e-01 9.40797137e-01]\n", + " [-4.71679776e-02 -3.05213207e-01 9.51115177e-01]\n", + " [-5.99367258e-02 -2.73297846e-01 9.60060350e-01]\n", + " [-7.23833315e-02 -2.41705758e-01 9.67646103e-01]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:fp_optics: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:cartToSphere: vec: [[-0.38071438 0.71231183 -0.58963414]\n", + " [-0.39556347 0.72183961 -0.56787069]\n", + " [-0.41038697 0.73097331 -0.54521605]\n", + " [-0.42510865 0.73964497 -0.52173552]\n", + " [-0.43965638 0.74779405 -0.49750007]\n", + " [-0.45396138 0.75536723 -0.47258799]\n", + " [-0.46795814 0.76231854 -0.4470857 ]\n", + " [-0.4815849 0.76860991 -0.42108763]\n", + " [-0.38071438 0.71231183 -0.58963414]\n", + " [-0.40247135 0.69437664 -0.59653826]\n", + " [-0.42387436 0.6759506 -0.60284435]\n", + " [-0.44484609 0.65711488 -0.60853266]\n", + " [-0.46531504 0.63795842 -0.6135886 ]\n", + " [-0.48521577 0.61857812 -0.61800224]\n", + " [-0.50448868 0.59907938 -0.6217677 ]\n", + " [-0.52307968 0.5795768 -0.62488269]\n", + " [-0.4815849 0.76860991 -0.42108763]\n", + " [-0.50400576 0.75000093 -0.42834191]\n", + " [-0.52590331 0.73077933 -0.43518648]\n", + " [-0.5471974 0.71103071 -0.44159974]\n", + " [-0.56781607 0.69084716 -0.44756577]\n", + " [-0.58769572 0.67032646 -0.45307415]\n", + " [-0.6067805 0.64957202 -0.45811965]\n", + " [-0.62502097 0.62869383 -0.46270169]\n", + " [-0.52307968 0.5795768 -0.62488269]\n", + " [-0.53855124 0.5874033 -0.60408602]\n", + " [-0.5538443 0.59506133 -0.58237317]\n", + " [-0.56887945 0.60248083 -0.55981516]\n", + " [-0.58358217 0.60960127 -0.53648686]\n", + " [-0.59788256 0.61637104 -0.51246774]\n", + " [-0.61171551 0.62274695 -0.48784257]\n", + " [-0.62502097 0.62869383 -0.46270169]\n", + " [-0.3872619 0.7164491 -0.58028348]\n", + " [-0.40545436 0.72786973 -0.55300309]\n", + " [-0.423532 0.73863016 -0.52444841]\n", + " [-0.44136036 0.74861593 -0.49474764]\n", + " [-0.45881283 0.75772887 -0.46404499]\n", + " [-0.4757703 0.7658876 -0.43250296]\n", + " [-0.39028986 0.70459016 -0.59264368]\n", + " [-0.41672792 0.6822681 -0.60070631]\n", + " [-0.4425567 0.65928845 -0.60785056]\n", + " [-0.46764216 0.63581173 -0.61404744]\n", + " [-0.49186377 0.61201638 -0.6192786 ]\n", + " [-0.51511414 0.58810021 -0.62353473]\n", + " [-0.49137347 0.76055649 -0.42438891]\n", + " [-0.5185111 0.73732701 -0.43300707]\n", + " [-0.54478229 0.71326167 -0.44098758]\n", + " [-0.57005111 0.68852739 -0.44829875]\n", + " [-0.59420041 0.66330415 -0.45492139]\n", + " [-0.61713011 0.637785 -0.46084783]\n", + " [-0.52977964 0.58307209 -0.61592245]\n", + " [-0.54863193 0.59256165 -0.58980819]\n", + " [-0.56713672 0.60172729 -0.56238796]\n", + " [-0.58515481 0.61045361 -0.53379794]\n", + " [-0.60255756 0.61864559 -0.50418451]\n", + " [-0.61922716 0.62622702 -0.47370606]\n", + " [-0.38084003 0.71228458 -0.58958591]\n", + " [-0.38084003 0.71228458 -0.58958591]\n", + " [-0.62491554 0.62874573 -0.46277356]\n", + " [-0.62491554 0.62874573 -0.46277356]\n", + " [-0.39674758 0.70872344 -0.58335448]\n", + " [-0.4232746 0.68630139 -0.59146345]\n", + " [-0.44917324 0.66320506 -0.59866723]\n", + " [-0.4743091 0.63959507 -0.6049372 ]\n", + " [-0.49856164 0.61564956 -0.61025561]\n", + " [-0.52182373 0.59156558 -0.61461383]\n", + " [-0.41503002 0.72006535 -0.55610789]\n", + " [-0.44177765 0.69739049 -0.56433944]\n", + " [-0.4678449 0.67399852 -0.57170547]\n", + " [-0.49309638 0.65005083 -0.57817806]\n", + " [-0.5174116 0.62572502 -0.5837409 ]\n", + " [-0.54068439 0.60121622 -0.58838716]\n", + " [-0.43318018 0.7307617 -0.52758154]\n", + " [-0.46010105 0.70787946 -0.53592322]\n", + " [-0.48629256 0.68424337 -0.54344323]\n", + " [-0.51161853 0.66001616 -0.55011376]\n", + " [-0.53595879 0.63537553 -0.55591916]\n", + " [-0.5592085 0.61051518 -0.56085388]\n", + " [-0.45106309 0.74069845 -0.49790349]\n", + " [-0.47810832 0.71765536 -0.50634299]\n", + " [-0.50437847 0.69382739 -0.51400963]\n", + " [-0.52973692 0.66937884 -0.52087501]\n", + " [-0.55406417 0.64448796 -0.5269233 ]\n", + " [-0.57725686 0.61934773 -0.53214932]\n", + " [-0.46855154 0.74977796 -0.46721779]\n", + " [-0.4956708 0.72662206 -0.47574241]\n", + " [-0.52197306 0.70265583 -0.48354825]\n", + " [-0.5473217 0.67804496 -0.49060574]\n", + " [-0.57159814 0.65296853 -0.49689804]\n", + " [-0.59470058 0.62761929 -0.5024194 ]\n", + " [-0.48552595 0.75791928 -0.43568672]\n", + " [-0.5126679 0.73470011 -0.44428299]\n", + " [-0.53895543 0.71065073 -0.45221962]\n", + " [-0.56425235 0.68593784 -0.45946552]\n", + " [-0.58844114 0.66074125 -0.46600218]\n", + " [-0.61142134 0.63525385 -0.47182252]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:cartToSphere: vec: [[-0.84503388 0.34258234 -0.41055461]\n", + " [-0.85851196 0.33464925 -0.38854484]\n", + " [-0.87164553 0.32616953 -0.36585175]\n", + " [-0.88434335 0.31717188 -0.34254757]\n", + " [-0.89652137 0.30768994 -0.31871043]\n", + " [-0.90810453 0.29776017 -0.29442325]\n", + " [-0.91902752 0.28742088 -0.26977335]\n", + " [-0.92923508 0.27671202 -0.24485227]\n", + " [-0.84503388 0.34258234 -0.41055461]\n", + " [-0.84759906 0.31927822 -0.42383635]\n", + " [-0.84966004 0.29518593 -0.43697035]\n", + " [-0.85116676 0.27039352 -0.44989164]\n", + " [-0.85207698 0.24499523 -0.46253882]\n", + " [-0.85235778 0.21908865 -0.47485405]\n", + " [-0.8519863 0.19277364 -0.48678298]\n", + " [-0.85094987 0.16615195 -0.49827487]\n", + " [-0.92923508 0.27671202 -0.24485227]\n", + " [-0.93294991 0.25193223 -0.25716654]\n", + " [-0.93599239 0.22643985 -0.2695241 ]\n", + " [-0.93830796 0.20032816 -0.28186309]\n", + " [-0.93985205 0.17369059 -0.29412533]\n", + " [-0.94058992 0.14662289 -0.30625535]\n", + " [-0.94049687 0.11922536 -0.31819953]\n", + " [-0.93955881 0.09160365 -0.32990607]\n", + " [-0.85094987 0.16615195 -0.49827487]\n", + " [-0.86527606 0.15630553 -0.47630444]\n", + " [-0.87918776 0.14613103 -0.45351363]\n", + " [-0.89259054 0.13566356 -0.42997386]\n", + " [-0.9054001 0.12493873 -0.40575974]\n", + " [-0.91754112 0.11399366 -0.38095111]\n", + " [-0.9289467 0.10286787 -0.35563497]\n", + " [-0.93955881 0.09160365 -0.32990607]\n", + " [-0.8509566 0.33911352 -0.40109211]\n", + " [-0.8672564 0.32901869 -0.37364829]\n", + " [-0.88294731 0.31813072 -0.34524902]\n", + " [-0.89787149 0.30650969 -0.31603575]\n", + " [-0.91189083 0.29422261 -0.28616109]\n", + " [-0.92488925 0.28134069 -0.25578758]\n", + " [-0.84625777 0.33249719 -0.41628525]\n", + " [-0.84907011 0.30339371 -0.43247219]\n", + " [-0.85107448 0.273193 -0.4483724 ]\n", + " [-0.85218973 0.24206618 -0.46387134]\n", + " [-0.85235535 0.21019282 -0.47886254]\n", + " [-0.85153347 0.17775754 -0.49324741]\n", + " [-0.93089973 0.26603892 -0.25029779]\n", + " [-0.93500755 0.23517815 -0.26542817]\n", + " [-0.93805021 0.2033397 -0.28056151]\n", + " [-0.93994153 0.17069545 -0.29558921]\n", + " [-0.94061759 0.13742195 -0.31040902]\n", + " [-0.94003729 0.10370609 -0.32492297]\n", + " [-0.8572453 0.16199326 -0.48876239]\n", + " [-0.87453723 0.14970135 -0.46127446]\n", + " [-0.89111161 0.13695132 -0.43262505]\n", + " [-0.90680905 0.12380852 -0.40295011]\n", + " [-0.92149083 0.11034136 -0.37239688]\n", + " [-0.93503744 0.09662378 -0.34112876]\n", + " [-0.84509002 0.34247791 -0.41052618]\n", + " [-0.84509002 0.34247791 -0.41052618]\n", + " [-0.93952859 0.09173707 -0.32995507]\n", + " [-0.93952859 0.09173707 -0.32995507]\n", + " [-0.85216841 0.32907592 -0.40683909]\n", + " [-0.85509213 0.29981188 -0.42300153]\n", + " [-0.85718604 0.26945461 -0.43889214]\n", + " [-0.85836771 0.2381772 -0.45439686]\n", + " [-0.85857617 0.20615981 -0.4694093 ]\n", + " [-0.8577735 0.17358726 -0.48383064]\n", + " [-0.86858592 0.31882981 -0.3793495 ]\n", + " [-0.87180545 0.28914421 -0.39541229]\n", + " [-0.87413577 0.2583817 -0.41124877]\n", + " [-0.87549235 0.22671819 -0.42674582]\n", + " [-0.87581378 0.19433384 -0.441797 ]\n", + " [-0.87506216 0.1614134 -0.45630246]\n", + " [-0.88438204 0.30780808 -0.35088829]\n", + " [-0.88786452 0.27775577 -0.3668083 ]\n", + " [-0.89040424 0.24664728 -0.38255118]\n", + " [-0.89191603 0.21465832 -0.39800453]\n", + " [-0.89233832 0.18196769 -0.41306183]\n", + " [-0.89163315 0.14875997 -0.42762226]\n", + " [-0.89939762 0.29607273 -0.32159736]\n", + " [-0.90310831 0.26571153 -0.33733182]\n", + " [-0.90583027 0.23431669 -0.3529408 ]\n", + " [-0.90747809 0.20206238 -0.36831278]\n", + " [-0.90798987 0.16912587 -0.38334167]\n", + " [-0.90732701 0.13569194 -0.39792636]\n", + " [-0.91349409 0.28369137 -0.29162947]\n", + " [-0.91739778 0.25307915 -0.30713556]\n", + " [-0.92027486 0.2214566 -0.3225696 ]\n", + " [-0.9220397 0.18899631 -0.33782124]\n", + " [-0.9226296 0.15587462 -0.35278566]\n", + " [-0.92200498 0.12227703 -0.36736242]\n", + " [-0.92655516 0.27073522 -0.26114743]\n", + " [-0.93061613 0.23992922 -0.27638304]\n", + " [-0.93362064 0.20813686 -0.2916017 ]\n", + " [-0.93548264 0.17553001 -0.30669437]\n", + " [-0.93613854 0.14228499 -0.32155811]\n", + " [-0.93554758 0.10858831 -0.33609418]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:fp_optics: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:fp_optics: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:cartToSphere: vec: [[ 0.42781777 -0.88997015 0.15787681]\n", + " [ 0.42082182 -0.88809314 0.18493128]\n", + " [ 0.41334576 -0.88546165 0.21237457]\n", + " [ 0.40540095 -0.88204714 0.24008936]\n", + " [ 0.39700301 -0.87783019 0.26796037]\n", + " [ 0.3881724 -0.87280095 0.29587276]\n", + " [ 0.37893487 -0.86695972 0.32371161]\n", + " [ 0.36932156 -0.86031737 0.35136252]\n", + " [ 0.42781777 -0.88997015 0.15787681]\n", + " [ 0.45287915 -0.87645231 0.16349869]\n", + " [ 0.47745553 -0.86223813 0.169061 ]\n", + " [ 0.50145563 -0.84739346 0.17454677]\n", + " [ 0.52479314 -0.83199325 0.17994274]\n", + " [ 0.54738646 -0.81612147 0.18523989]\n", + " [ 0.56915803 -0.7998713 0.19043383]\n", + " [ 0.59003357 -0.7833456 0.19552509]\n", + " [ 0.36932156 -0.86031737 0.35136252]\n", + " [ 0.3952831 -0.84633591 0.35702493]\n", + " [ 0.4208041 -0.83164042 0.36235082]\n", + " [ 0.44578877 -0.81629997 0.36732374]\n", + " [ 0.47014869 -0.80039168 0.37193195]\n", + " [ 0.49380302 -0.78399998 0.37616832]\n", + " [ 0.51667789 -0.76721645 0.38003011]\n", + " [ 0.5387048 -0.7501404 0.3835186 ]\n", + " [ 0.59003357 -0.7833456 0.19552509]\n", + " [ 0.5846317 -0.78037005 0.22187463]\n", + " [ 0.57855807 -0.77683471 0.24859281]\n", + " [ 0.57182632 -0.77271189 0.27555579]\n", + " [ 0.56445301 -0.76798393 0.30264415]\n", + " [ 0.55645813 -0.7626431 0.32974208]\n", + " [ 0.54786581 -0.75669142 0.35673681]\n", + " [ 0.5387048 -0.7501404 0.3835186 ]\n", + " [ 0.42491388 -0.88919718 0.16963656]\n", + " [ 0.41601638 -0.88639295 0.2030712 ]\n", + " [ 0.40640844 -0.88242621 0.23697291]\n", + " [ 0.39611699 -0.87725739 0.27112874]\n", + " [ 0.38517975 -0.87086845 0.30532722]\n", + " [ 0.37364639 -0.86326431 0.33935691]\n", + " [ 0.43877547 -0.88416041 0.16042584]\n", + " [ 0.46917725 -0.86711629 0.16727833]\n", + " [ 0.49875929 -0.84909061 0.17402388]\n", + " [ 0.52736062 -0.83021757 0.18063653]\n", + " [ 0.55483095 -0.81065179 0.1870997 ]\n", + " [ 0.58102888 -0.7905688 0.19340737]\n", + " [ 0.3807221 -0.85433731 0.35377739]\n", + " [ 0.41225662 -0.8367132 0.36049341]\n", + " [ 0.44303343 -0.81808423 0.36668729]\n", + " [ 0.47288661 -0.79858911 0.37233545]\n", + " [ 0.50166731 -0.77838323 0.37742476]\n", + " [ 0.52924186 -0.75763835 0.38195181]\n", + " [ 0.58769155 -0.78217206 0.20694326]\n", + " [ 0.5806167 -0.77815356 0.23950214]\n", + " [ 0.57254619 -0.77326543 0.27249116]\n", + " [ 0.56350929 -0.76747098 0.30568869]\n", + " [ 0.55354287 -0.76075598 0.33888144]\n", + " [ 0.54269325 -0.75312808 0.37186306]\n", + " [ 0.4278811 -0.88992 0.15798783]\n", + " [ 0.4278811 -0.88992 0.15798783]\n", + " [ 0.53866325 -0.75022258 0.3834162 ]\n", + " [ 0.53866325 -0.75022258 0.3834162 ]\n", + " [ 0.43585139 -0.88341459 0.17208202]\n", + " [ 0.46637611 -0.86629947 0.17893728]\n", + " [ 0.49608175 -0.84819451 0.18565823]\n", + " [ 0.52480733 -0.82923418 0.19221846]\n", + " [ 0.55240304 -0.80957308 0.19860089]\n", + " [ 0.57872836 -0.78938637 0.20479904]\n", + " [ 0.42706271 -0.88055259 0.20553485]\n", + " [ 0.45789892 -0.86326055 0.21239069]\n", + " [ 0.48791953 -0.84496014 0.21903629]\n", + " [ 0.51696312 -0.82578689 0.22544433]\n", + " [ 0.54488105 -0.80589552 0.23159673]\n", + " [ 0.57153528 -0.78546027 0.23748597]\n", + " [ 0.41754347 -0.87653922 0.23945031]\n", + " [ 0.44863636 -0.8591066 0.24629509]\n", + " [ 0.47892002 -0.84065436 0.25285541]\n", + " [ 0.50823218 -0.82131924 0.25910376]\n", + " [ 0.53642489 -0.80125634 0.26502192]\n", + " [ 0.56336228 -0.78063914 0.27060206]\n", + " [ 0.40732003 -0.87133523 0.27361527]\n", + " [ 0.43861349 -0.85379949 0.28043652]\n", + " [ 0.46910783 -0.83524009 0.2869004 ]\n", + " [ 0.4986396 -0.81579489 0.29297993]\n", + " [ 0.52706105 -0.7956194 0.29865769]\n", + " [ 0.55423786 -0.77488653 0.30392642]\n", + " [ 0.39642942 -0.86492296 0.3078181 ]\n", + " [ 0.42786565 -0.84732278 0.31460306]\n", + " [ 0.45851719 -0.82870212 0.32095915]\n", + " [ 0.48821941 -0.80919957 0.32686061]\n", + " [ 0.51682428 -0.78897086 0.33229152]\n", + " [ 0.54419827 -0.76818837 0.33724601]\n", + " [ 0.38492068 -0.8573077 0.34184731]\n", + " [ 0.41644023 -0.83968275 0.34858343]\n", + " [ 0.44719419 -0.82104764 0.35482127]\n", + " [ 0.47701694 -0.80154113 0.36053663]\n", + " [ 0.50575985 -0.78131879 0.36571562]\n", + " [ 0.53328943 -0.76055253 0.37035419]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:fp_optics: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:cartToSphere: vec: [[ 0.93712624 -0.34873842 -0.01326373]\n", + " [ 0.93255024 -0.36088977 0.01042198]\n", + " [ 0.92722503 -0.37289772 0.03465597]\n", + " [ 0.92113024 -0.38470572 0.05933457]\n", + " [ 0.91425521 -0.39626032 0.08435145]\n", + " [ 0.90659946 -0.40751092 0.10960049]\n", + " [ 0.89817293 -0.4184096 0.13497703]\n", + " [ 0.88899604 -0.42891123 0.16037829]\n", + " [ 0.93712624 -0.34873842 -0.01326373]\n", + " [ 0.94556657 -0.32541718 -0.00274239]\n", + " [ 0.95345979 -0.30141034 0.00813891]\n", + " [ 0.96073363 -0.2767984 0.01932728]\n", + " [ 0.96732459 -0.25166739 0.03076775]\n", + " [ 0.97317889 -0.22610743 0.04240599]\n", + " [ 0.9782528 -0.20021229 0.05418948]\n", + " [ 0.98251286 -0.17407907 0.06606777]\n", + " [ 0.88899604 -0.42891123 0.16037829]\n", + " [ 0.89755628 -0.40554038 0.17300212]\n", + " [ 0.90557116 -0.38136324 0.18574971]\n", + " [ 0.91296742 -0.35646059 0.19856067]\n", + " [ 0.91968182 -0.33091512 0.21137772]\n", + " [ 0.92566054 -0.30481351 0.22414567]\n", + " [ 0.93085905 -0.2782486 0.23681037]\n", + " [ 0.93524243 -0.25132029 0.2493185 ]\n", + " [ 0.98251286 -0.17407907 0.06606777]\n", + " [ 0.97843803 -0.18517389 0.09148585]\n", + " [ 0.97349143 -0.19633299 0.11733621]\n", + " [ 0.96765034 -0.20750368 0.14350976]\n", + " [ 0.96090178 -0.21863579 0.16990047]\n", + " [ 0.95324316 -0.22968076 0.1964032 ]\n", + " [ 0.94468317 -0.24059108 0.22291173]\n", + " [ 0.93524243 -0.25132029 0.2493185 ]\n", + " [ 0.9352514 -0.35397171 -0.00297462]\n", + " [ 0.92914264 -0.368775 0.02643758]\n", + " [ 0.92188713 -0.38330649 0.05657075]\n", + " [ 0.91346117 -0.3974665 0.08723001]\n", + " [ 0.90386389 -0.41116185 0.11822013]\n", + " [ 0.89311795 -0.42430548 0.14934922]\n", + " [ 0.94085435 -0.33870102 -0.00864333]\n", + " [ 0.95084086 -0.30964721 0.00450153]\n", + " [ 0.95993284 -0.27964275 0.0181348 ]\n", + " [ 0.96800968 -0.24884383 0.03215591]\n", + " [ 0.97497238 -0.21741634 0.04646496]\n", + " [ 0.9807447 -0.18553429 0.06096614]\n", + " [ 0.89282302 -0.41879038 0.16577595]\n", + " [ 0.90295782 -0.38959434 0.18133787]\n", + " [ 0.91219949 -0.35926739 0.19702548]\n", + " [ 0.92042746 -0.32796091 0.21273206]\n", + " [ 0.92754266 -0.29583476 0.22835586]\n", + " [ 0.93346704 -0.26306281 0.24379756]\n", + " [ 0.98082834 -0.17899505 0.07704892]\n", + " [ 0.97525121 -0.19264377 0.1085056 ]\n", + " [ 0.96834102 -0.2063362 0.14050283]\n", + " [ 0.96006985 -0.21997897 0.17284426]\n", + " [ 0.95043305 -0.23348262 0.20533605]\n", + " [ 0.93945152 -0.24676006 0.23778206]\n", + " [ 0.93714155 -0.34870165 -0.01314846]\n", + " [ 0.93714155 -0.34870165 -0.01314846]\n", + " [ 0.93526261 -0.25137654 0.24918605]\n", + " [ 0.93526261 -0.25137654 0.24918605]\n", + " [ 0.9389849 -0.34395465 0.00159849]\n", + " [ 0.94902616 -0.31484383 0.01492362]\n", + " [ 0.95816623 -0.28476814 0.02871554]\n", + " [ 0.96628399 -0.25388439 0.04287143]\n", + " [ 0.97328022 -0.22235867 0.05729073]\n", + " [ 0.9790785 -0.19036521 0.07187758]\n", + " [ 0.93292283 -0.35872224 0.03119871]\n", + " [ 0.94308759 -0.32948333 0.04501696]\n", + " [ 0.95233674 -0.29924191 0.05923692]\n", + " [ 0.96054841 -0.26815547 0.07375233]\n", + " [ 0.96762298 -0.23638989 0.08846241]\n", + " [ 0.97348341 -0.20411996 0.1032719 ]\n", + " [ 0.92569557 -0.37323486 0.06150972]\n", + " [ 0.93593583 -0.34391888 0.07578862]\n", + " [ 0.94525323 -0.31356618 0.09040229]\n", + " [ 0.95352586 -0.28233342 0.10524389]\n", + " [ 0.96065384 -0.25038549 0.12021356]\n", + " [ 0.96655943 -0.21789753 0.13521663]\n", + " [ 0.91727893 -0.38739349 0.09233444]\n", + " [ 0.92754574 -0.35805262 0.10703837]\n", + " [ 0.93688995 -0.32764374 0.1220115 ]\n", + " [ 0.9451899 -0.2963218 0.1371475 ]\n", + " [ 0.95234563 -0.26425017 0.15234713]\n", + " [ 0.95827875 -0.23160404 0.16751541]\n", + " [ 0.90767184 -0.40110508 0.12347692]\n", + " [ 0.91791586 -0.37179138 0.13856999]\n", + " [ 0.92724492 -0.34138111 0.15386943]\n", + " [ 0.93553779 -0.31002736 0.16926923]\n", + " [ 0.94269467 -0.27789178 0.18466977]\n", + " [ 0.9486369 -0.24514925 0.19997467]\n", + " [ 0.89689695 -0.41428232 0.15474498]\n", + " [ 0.90706889 -0.38504678 0.17019111]\n", + " [ 0.91634072 -0.35468882 0.18578355]\n", + " [ 0.92459173 -0.32336011 0.20141593]\n", + " [ 0.93172258 -0.29122089 0.21698715]\n", + " [ 0.93765498 -0.25844532 0.23239871]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:fp_optics: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:cartToSphere: vec: [[ 0.74652081 -0.54708407 -0.37868946]\n", + " [ 0.74378647 -0.53330693 -0.40294591]\n", + " [ 0.74039645 -0.51882438 -0.4273574 ]\n", + " [ 0.73633194 -0.50367192 -0.45180734]\n", + " [ 0.73158157 -0.48788935 -0.47618525]\n", + " [ 0.72614185 -0.47152222 -0.50038466]\n", + " [ 0.72001783 -0.45462315 -0.52430156]\n", + " [ 0.71322359 -0.4372524 -0.54783433]\n", + " [ 0.74652081 -0.54708407 -0.37868946]\n", + " [ 0.7270474 -0.56665523 -0.38769051]\n", + " [ 0.70701726 -0.58564077 -0.39642335]\n", + " [ 0.68651712 -0.60397163 -0.40486111]\n", + " [ 0.66564107 -0.62158435 -0.41298289]\n", + " [ 0.6444903 -0.63842122 -0.42077381]\n", + " [ 0.62317247 -0.65443084 -0.42822465]\n", + " [ 0.60180005 -0.66956979 -0.43533091]\n", + " [ 0.71322359 -0.4372524 -0.54783433]\n", + " [ 0.6930908 -0.45756514 -0.55700923]\n", + " [ 0.67240077 -0.47739971 -0.56565602]\n", + " [ 0.65124426 -0.49668356 -0.57374764]\n", + " [ 0.62971691 -0.51535232 -0.58126466]\n", + " [ 0.60791893 -0.53334919 -0.58819488]\n", + " [ 0.58595621 -0.55062354 -0.59453262]\n", + " [ 0.56394218 -0.56712919 -0.60027802]\n", + " [ 0.60180005 -0.66956979 -0.43533091]\n", + " [ 0.59770664 -0.6572417 -0.45910797]\n", + " [ 0.59318764 -0.64407962 -0.4830009 ]\n", + " [ 0.58822869 -0.63011559 -0.50689383]\n", + " [ 0.58282164 -0.61538954 -0.53067378]\n", + " [ 0.57696562 -0.59994764 -0.55423235]\n", + " [ 0.57066756 -0.58384173 -0.57746634]\n", + " [ 0.56394218 -0.56712919 -0.60027802]\n", + " [ 0.74534192 -0.54123414 -0.38926985]\n", + " [ 0.74155189 -0.52387087 -0.41911825]\n", + " [ 0.73675761 -0.50548274 -0.44908287]\n", + " [ 0.73093507 -0.48614123 -0.47895786]\n", + " [ 0.72407794 -0.46593033 -0.50854701]\n", + " [ 0.71619924 -0.44495011 -0.53765979]\n", + " [ 0.73809549 -0.55563892 -0.38272762]\n", + " [ 0.71384319 -0.57924129 -0.39358281]\n", + " [ 0.68883997 -0.60189482 -0.40400758]\n", + " [ 0.66325602 -0.62348037 -0.41396095]\n", + " [ 0.63727757 -0.64389175 -0.42341552]\n", + " [ 0.61110495 -0.66303752 -0.43235633]\n", + " [ 0.70454406 -0.44622278 -0.55181782]\n", + " [ 0.67948342 -0.47080592 -0.56271136]\n", + " [ 0.65367533 -0.49459776 -0.5727841 ]\n", + " [ 0.6272939 -0.51747634 -0.58199708]\n", + " [ 0.60052373 -0.53933697 -0.59032777]\n", + " [ 0.57356285 -0.56008833 -0.59776812]\n", + " [ 0.60013989 -0.66424829 -0.44565269]\n", + " [ 0.5948397 -0.64857363 -0.47488733]\n", + " [ 0.58888519 -0.63167717 -0.50418071]\n", + " [ 0.58225868 -0.61362928 -0.53332349]\n", + " [ 0.57495864 -0.5945149 -0.56211618]\n", + " [ 0.56700106 -0.57443175 -0.59037104]\n", + " [ 0.74644699 -0.54710604 -0.37880321]\n", + " [ 0.74644699 -0.54710604 -0.37880321]\n", + " [ 0.56404111 -0.56713222 -0.6001822 ]\n", + " [ 0.56404111 -0.56713222 -0.6001822 ]\n", + " [ 0.73695749 -0.54980118 -0.39320772]\n", + " [ 0.71260782 -0.57350451 -0.4040825 ]\n", + " [ 0.68750154 -0.59626507 -0.41449923]\n", + " [ 0.66180915 -0.61796365 -0.42441675]\n", + " [ 0.63571722 -0.6384938 -0.43380788]\n", + " [ 0.60942706 -0.65776286 -0.44265864]\n", + " [ 0.73308483 -0.53252408 -0.42308951]\n", + " [ 0.7084923 -0.55648489 -0.43400834]\n", + " [ 0.68313136 -0.57952212 -0.44439357]\n", + " [ 0.6571734 -0.60151686 -0.45420324]\n", + " [ 0.63080523 -0.62236306 -0.46341016]\n", + " [ 0.60422931 -0.64196662 -0.47200191]\n", + " [ 0.72822378 -0.51420642 -0.45308044]\n", + " [ 0.70343744 -0.53838261 -0.46402578]\n", + " [ 0.67787743 -0.56165765 -0.47436576]\n", + " [ 0.6517161 -0.58391282 -0.48405779]\n", + " [ 0.62514 -0.60504331 -0.49307461]\n", + " [ 0.59835103 -0.62495564 -0.50140452]\n", + " [ 0.72235067 -0.49491939 -0.48297444]\n", + " [ 0.69742067 -0.51926869 -0.49392757]\n", + " [ 0.67171803 -0.54274333 -0.50420687]\n", + " [ 0.64541616 -0.56522426 -0.5137699 ]\n", + " [ 0.61870111 -0.58660772 -0.52259001]\n", + " [ 0.59177349 -0.60680155 -0.53065621]\n", + " [ 0.71545976 -0.47474644 -0.51257501]\n", + " [ 0.69043794 -0.49922559 -0.52351624]\n", + " [ 0.6646505 -0.52286166 -0.53371846]\n", + " [ 0.63827158 -0.54553463 -0.54314028]\n", + " [ 0.61148663 -0.56714098 -0.55175648]\n", + " [ 0.58449491 -0.58758954 -0.55955718]\n", + " [ 0.7075647 -0.45378702 -0.54169137]\n", + " [ 0.68250459 -0.47835117 -0.5526008 ]\n", + " [ 0.65669139 -0.50210951 -0.56270993]\n", + " [ 0.63029933 -0.52494061 -0.57197912]\n", + " [ 0.60351326 -0.54674024 -0.5803851 ]\n", + " [ 0.57653138 -0.56741727 -0.58791938]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:fp_optics: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:cartToSphere: vec: [[-4.09698528e-02 1.25886756e-01 -9.91198263e-01]\n", + " [-1.69747807e-02 1.38260385e-01 -9.90250434e-01]\n", + " [ 7.45697996e-03 1.50921161e-01 -9.88517676e-01]\n", + " [ 3.22282488e-02 1.63795727e-01 -9.85967697e-01]\n", + " [ 5.72417907e-02 1.76815327e-01 -9.82578097e-01]\n", + " [ 8.24000650e-02 1.89915660e-01 -9.78336482e-01]\n", + " [ 1.07605107e-01 2.03036458e-01 -9.73240637e-01]\n", + " [ 1.32758693e-01 2.16121122e-01 -9.67298708e-01]\n", + " [-4.09698528e-02 1.25886756e-01 -9.91198263e-01]\n", + " [-5.56346715e-02 1.48163511e-01 -9.87396758e-01]\n", + " [-7.04443031e-02 1.70890755e-01 -9.82768513e-01]\n", + " [-8.53451634e-02 1.93955520e-01 -9.77290877e-01]\n", + " [-1.00282863e-01 2.17249306e-01 -9.70951125e-01]\n", + " [-1.15202030e-01 2.40667819e-01 -9.63746592e-01]\n", + " [-1.30046390e-01 2.64110499e-01 -9.55684875e-01]\n", + " [-1.44759090e-01 2.87480199e-01 -9.46783999e-01]\n", + " [ 1.32758693e-01 2.16121122e-01 -9.67298708e-01]\n", + " [ 1.19193054e-01 2.40190445e-01 -9.63380281e-01]\n", + " [ 1.05255985e-01 2.64560879e-01 -9.58607698e-01]\n", + " [ 9.09980124e-02 2.89123479e-01 -9.52956964e-01]\n", + " [ 7.64705394e-02 3.13772534e-01 -9.46413786e-01]\n", + " [ 6.17267772e-02 3.38404017e-01 -9.38974188e-01]\n", + " [ 4.68222507e-02 3.62914897e-01 -9.30645182e-01]\n", + " [ 3.18147357e-02 3.87203434e-01 -9.21445236e-01]\n", + " [-1.44759090e-01 2.87480199e-01 -9.46783999e-01]\n", + " [-1.20763055e-01 3.01933791e-01 -9.45649127e-01]\n", + " [-9.62004445e-02 3.16432014e-01 -9.43724671e-01]\n", + " [-7.11636736e-02 3.30903536e-01 -9.40977461e-01]\n", + " [-4.57462106e-02 3.45280469e-01 -9.37383957e-01]\n", + " [-2.00440628e-02 3.59497555e-01 -9.32930728e-01]\n", + " [ 5.84358517e-03 3.73491925e-01 -9.27615025e-01]\n", + " [ 3.18147357e-02 3.87203434e-01 -9.21445236e-01]\n", + " [-3.06175058e-02 1.31317391e-01 -9.90867454e-01]\n", + " [-9.02669929e-04 1.46686681e-01 -9.89182593e-01]\n", + " [ 2.93716263e-02 1.62413711e-01 -9.86285503e-01]\n", + " [ 6.00264095e-02 1.78369980e-01 -9.82130837e-01]\n", + " [ 9.08820955e-02 1.94437064e-01 -9.76695793e-01]\n", + " [ 1.21758206e-01 2.10505545e-01 -9.69980595e-01]\n", + " [-4.72612048e-02 1.35579037e-01 -9.89638673e-01]\n", + " [-6.53381999e-02 1.63200497e-01 -9.84427000e-01]\n", + " [-8.35797071e-02 1.91385767e-01 -9.77949856e-01]\n", + " [-1.01885948e-01 2.19933235e-01 -9.70179687e-01]\n", + " [-1.20154993e-01 2.48650851e-01 -9.61111613e-01]\n", + " [-1.38282976e-01 2.77354902e-01 -9.50763944e-01]\n", + " [ 1.26806764e-01 2.26526436e-01 -9.65715185e-01]\n", + " [ 1.09923690e-01 2.56241830e-01 -9.60342078e-01]\n", + " [ 9.25330333e-02 2.86300894e-01 -9.53661070e-01]\n", + " [ 7.47290132e-02 3.16507767e-01 -9.45641797e-01]\n", + " [ 5.66096541e-02 3.46670864e-01 -9.36277021e-01]\n", + " [ 3.82781405e-02 3.76600995e-01 -9.25584396e-01]\n", + " [-1.34322120e-01 2.93691778e-01 -9.46415716e-01]\n", + " [-1.04519430e-01 3.11444533e-01 -9.44498805e-01]\n", + " [-7.39576150e-02 3.29193169e-01 -9.41361848e-01]\n", + " [-4.28082223e-02 3.46811332e-01 -9.36957500e-01]\n", + " [-1.12480759e-02 3.64178864e-01 -9.31261100e-01]\n", + " [ 2.05390042e-02 3.81181124e-01 -9.24272200e-01]\n", + " [-4.09384927e-02 1.26003777e-01 -9.91184689e-01]\n", + " [-4.09384927e-02 1.26003777e-01 -9.91184689e-01]\n", + " [ 3.17773275e-02 3.87074528e-01 -9.21500685e-01]\n", + " [ 3.17773275e-02 3.87074528e-01 -9.21500685e-01]\n", + " [-3.69206355e-02 1.40965968e-01 -9.89325762e-01]\n", + " [-5.49568110e-02 1.68783495e-01 -9.84119851e-01]\n", + " [-7.31793482e-02 1.97147686e-01 -9.77638774e-01]\n", + " [-9.14884978e-02 2.25857426e-01 -9.69854771e-01]\n", + " [-1.09782106e-01 2.54721087e-01 -9.60762747e-01]\n", + " [-1.27955882e-01 2.83554994e-01 -9.50380901e-01]\n", + " [-7.14223311e-03 1.56525383e-01 -9.87648112e-01]\n", + " [-2.50398033e-02 1.84849671e-01 -9.82447763e-01]\n", + " [-4.31855472e-02 2.13674570e-01 -9.75949889e-01]\n", + " [-6.14798956e-02 2.42800811e-01 -9.68126019e-01]\n", + " [-7.98202319e-02 2.72037877e-01 -9.58970346e-01]\n", + " [-9.81011910e-02 3.01201847e-01 -9.48500714e-01]\n", + " [ 2.32077805e-02 1.72416527e-01 -9.84750700e-01]\n", + " [ 5.48369785e-03 2.01176306e-01 -9.79539700e-01]\n", + " [-1.25498260e-02 2.30394796e-01 -9.73016310e-01]\n", + " [-3.07937831e-02 2.59874588e-01 -9.65151253e-01]\n", + " [-4.91455999e-02 2.89425817e-01 -9.55937972e-01]\n", + " [-6.74992911e-02 3.18863735e-01 -9.45393973e-01]\n", + " [ 5.39506692e-02 1.88511304e-01 -9.80587994e-01]\n", + " [ 3.64359203e-02 2.17636796e-01 -9.75349501e-01]\n", + " [ 1.85513523e-02 2.47183085e-01 -9.68791190e-01]\n", + " [ 3.94902343e-04 2.76954103e-01 -9.60883067e-01]\n", + " [-1.79315747e-02 3.06760011e-01 -9.51617967e-01]\n", + " [-3.63221409e-02 3.36414776e-01 -9.41013178e-01]\n", + " [ 8.49068190e-02 2.04691732e-01 -9.75136979e-01]\n", + " [ 6.76372458e-02 2.34114270e-01 -9.69853448e-01]\n", + " [ 4.99385533e-02 2.63923058e-01 -9.63250103e-01]\n", + " [ 3.19071819e-02 2.93922614e-01 -9.55296513e-01]\n", + " [ 1.36436241e-02 3.23922576e-01 -9.45985209e-01]\n", + " [-4.74695358e-03 3.53735445e-01 -9.35333471e-01]\n", + " [ 1.15895366e-01 2.20848593e-01 -9.68397730e-01]\n", + " [ 9.89056197e-02 2.50499737e-01 -9.63051172e-01]\n", + " [ 8.14285753e-02 2.80505261e-01 -9.56392276e-01]\n", + " [ 6.35590109e-02 3.10669519e-01 -9.48390585e-01]\n", + " [ 4.53956255e-02 3.40801271e-01 -9.39038727e-01]\n", + " [ 2.70421980e-02 3.70711704e-01 -9.28354217e-01]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:fp_optics: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:cartToSphere: vec: [[-1.47741163e-01 -1.85891987e-01 9.71399361e-01]\n", + " [-1.44040827e-01 -1.59685494e-01 9.76602674e-01]\n", + " [-1.39998547e-01 -1.32833378e-01 9.81201152e-01]\n", + " [-1.35642789e-01 -1.05443642e-01 9.85130789e-01]\n", + " [-1.30999122e-01 -7.76236300e-02 9.88338911e-01]\n", + " [-1.26091078e-01 -4.94811359e-02 9.90783860e-01]\n", + " [-1.20941004e-01 -2.11250370e-02 9.92434888e-01]\n", + " [-1.15570697e-01 7.33461907e-03 9.93272177e-01]\n", + " [-1.47741163e-01 -1.85891987e-01 9.71399361e-01]\n", + " [-1.21815387e-01 -1.92806329e-01 9.73646102e-01]\n", + " [-9.52020053e-02 -1.99575639e-01 9.75246709e-01]\n", + " [-6.80169515e-02 -2.06178212e-01 9.76147652e-01]\n", + " [-4.03733373e-02 -2.12591313e-01 9.76306779e-01]\n", + " [-1.23829107e-02 -2.18791509e-01 9.75693056e-01]\n", + " [ 1.58429533e-02 -2.24755191e-01 9.74286459e-01]\n", + " [ 4.41928707e-02 -2.30459145e-01 9.72077966e-01]\n", + " [-1.15570697e-01 7.33461907e-03 9.93272177e-01]\n", + " [-8.83210293e-02 1.97764797e-03 9.96090099e-01]\n", + " [-6.04411561e-02 -3.48718345e-03 9.98165671e-01]\n", + " [-3.20389482e-02 -9.03836314e-03 9.99445753e-01]\n", + " [-3.22328036e-03 -1.46542340e-02 9.99887426e-01]\n", + " [ 2.58945620e-02 -2.03127617e-02 9.99458285e-01]\n", + " [ 5.52006068e-02 -2.59915167e-02 9.98136932e-01]\n", + " [ 8.45787993e-02 -3.16678170e-02 9.95913438e-01]\n", + " [ 4.41928707e-02 -2.30459145e-01 9.72077966e-01]\n", + " [ 4.98519587e-02 -2.03639319e-01 9.77775951e-01]\n", + " [ 5.55896714e-02 -1.76120133e-01 9.82797785e-01]\n", + " [ 6.13804326e-02 -1.48002337e-01 9.87080418e-01]\n", + " [ 6.71992561e-02 -1.19389214e-01 9.90570783e-01]\n", + " [ 7.30214625e-02 -9.03878344e-02 9.93226009e-01]\n", + " [ 7.88226421e-02 -6.11092449e-02 9.95013895e-01]\n", + " [ 8.45787993e-02 -3.16678170e-02 9.95913438e-01]\n", + " [-1.46083973e-01 -1.74575770e-01 9.73746771e-01]\n", + " [-1.41313838e-01 -1.42008247e-01 9.79726522e-01]\n", + " [-1.36058917e-01 -1.08578372e-01 9.84732811e-01]\n", + " [-1.30367443e-01 -7.44839667e-02 9.88663982e-01]\n", + " [-1.24282834e-01 -3.99235462e-02 9.91443336e-01]\n", + " [-1.17845978e-01 -5.09805198e-03 9.93018799e-01]\n", + " [-1.36517028e-01 -1.88834452e-01 9.72473470e-01]\n", + " [-1.04263744e-01 -1.97213051e-01 9.74800536e-01]\n", + " [-7.10932640e-02 -2.05352535e-01 9.76102497e-01]\n", + " [-3.72149114e-02 -2.13211474e-01 9.76297044e-01]\n", + " [-2.83451925e-03 -2.20746782e-01 9.75327034e-01]\n", + " [ 3.18428657e-02 -2.27915133e-01 9.73160174e-01]\n", + " [-1.03792965e-01 4.91584060e-03 9.94586776e-01]\n", + " [-6.99585256e-02 -1.72590314e-03 9.97548408e-01]\n", + " [-3.52846377e-02 -8.50809693e-03 9.99341086e-01]\n", + " [ 2.87940455e-05 -1.53909457e-02 9.99881552e-01]\n", + " [ 3.57768692e-02 -2.23338781e-02 9.99110211e-01]\n", + " [ 7.17488522e-02 -2.92954816e-02 9.96992416e-01]\n", + " [ 4.65514882e-02 -2.18838907e-01 9.74649933e-01]\n", + " [ 5.35424465e-02 -1.85485407e-01 9.81187225e-01]\n", + " [ 6.06261842e-02 -1.51181407e-01 9.86645148e-01]\n", + " [ 6.77564867e-02 -1.16115891e-01 9.90921873e-01]\n", + " [ 7.48879219e-02 -8.04859944e-02 9.93938531e-01]\n", + " [ 8.19757174e-02 -4.44975846e-02 9.95640471e-01]\n", + " [-1.47641773e-01 -1.85827459e-01 9.71426818e-01]\n", + " [-1.47641773e-01 -1.85827459e-01 9.71426818e-01]\n", + " [ 8.44587657e-02 -3.17492607e-02 9.95921032e-01]\n", + " [ 8.44587657e-02 -3.17492607e-02 9.95921032e-01]\n", + " [-1.34898841e-01 -1.77544089e-01 9.74823266e-01]\n", + " [-1.02480026e-01 -1.85829928e-01 9.77223149e-01]\n", + " [-6.91508824e-02 -1.93901039e-01 9.78580882e-01]\n", + " [-3.51193802e-02 -2.01715337e-01 9.78814360e-01]\n", + " [-5.90712534e-04 -2.09229132e-01 9.77866464e-01]\n", + " [ 3.42300111e-02 -2.16398609e-01 9.75704847e-01]\n", + " [-1.29976217e-01 -1.44864365e-01 9.80877413e-01]\n", + " [-9.71393868e-02 -1.52879168e-01 9.83459150e-01]\n", + " [-6.34091563e-02 -1.60747334e-01 9.84956635e-01]\n", + " [-2.89901210e-02 -1.68425396e-01 9.85288008e-01]\n", + " [ 5.91373750e-03 -1.75868512e-01 9.84395903e-01]\n", + " [ 4.10966075e-02 -1.83031948e-01 9.82247614e-01]\n", + " [-1.24595334e-01 -1.11317400e-01 9.85943426e-01]\n", + " [-9.14132525e-02 -1.19046104e-01 9.88671655e-01]\n", + " [-5.73517091e-02 -1.26695036e-01 9.90282358e-01]\n", + " [-2.26128438e-02 -1.34220266e-01 9.90693484e-01]\n", + " [ 1.25997587e-02 -1.41576734e-01 9.89847096e-01]\n", + " [ 4.80790572e-02 -1.48719526e-01 9.87709930e-01]\n", + " [-1.18803292e-01 -7.71000864e-02 9.89919873e-01]\n", + " [-8.53461348e-02 -8.45252192e-02 9.92759550e-01]\n", + " [-5.10216932e-02 -9.19366552e-02 9.94456856e-01]\n", + " [-1.60306014e-02 -9.92909547e-02 9.94929307e-01]\n", + " [ 1.94233753e-02 -1.06543714e-01 9.94118288e-01]\n", + " [ 5.51317943e-02 -1.13650512e-01 9.91989943e-01]\n", + " [-1.12642709e-01 -4.24106301e-02 9.92730053e-01]\n", + " [-7.89791384e-02 -4.95141519e-02 9.95645843e-01]\n", + " [-4.44598773e-02 -5.66696294e-02 9.97402563e-01]\n", + " [-9.28485428e-03 -6.38348802e-02 9.97917281e-01]\n", + " [ 2.63416964e-02 -7.09668461e-02 9.97130795e-01]\n", + " [ 6.22100802e-02 -7.80221418e-02 9.95008769e-01]\n", + " [-1.06154054e-01 -7.45024020e-03 9.94321784e-01]\n", + " [-7.23521703e-02 -1.42151694e-02 9.97277841e-01]\n", + " [-3.77064768e-02 -2.10974876e-02 9.99066123e-01]\n", + " [-2.41680090e-03 -2.80567414e-02 9.99603411e-01]\n", + " [ 3.33121129e-02 -3.50516679e-02 9.98830158e-01]\n", + " [ 6.92697097e-02 -4.20402965e-02 9.96711754e-01]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:fp_optics: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:cartToSphere: vec: [[ 1.69579722e-01 -2.02004640e-01 -9.64591542e-01]\n", + " [ 1.73646958e-01 -1.75684983e-01 -9.69010589e-01]\n", + " [ 1.77514075e-01 -1.48665560e-01 -9.72824395e-01]\n", + " [ 1.81173451e-01 -1.21059022e-01 -9.75971769e-01]\n", + " [ 1.84615798e-01 -9.29764467e-02 -9.78402978e-01]\n", + " [ 1.87830670e-01 -6.45286375e-02 -9.80079433e-01]\n", + " [ 1.90807092e-01 -3.58269372e-02 -9.80973539e-01]\n", + " [ 1.93534145e-01 -6.98346816e-03 -9.81068686e-01]\n", + " [ 1.69579722e-01 -2.02004640e-01 -9.64591542e-01]\n", + " [ 1.43022166e-01 -2.01425877e-01 -9.69005818e-01]\n", + " [ 1.15791548e-01 -2.00529902e-01 -9.72820680e-01]\n", + " [ 8.80005437e-02 -1.99328829e-01 -9.75973320e-01]\n", + " [ 5.97603236e-02 -1.97832805e-01 -9.78412431e-01]\n", + " [ 3.11818563e-02 -1.96050737e-01 -9.80097852e-01]\n", + " [ 2.37671232e-03 -1.93991082e-01 -9.81000413e-01]\n", + " [-2.65427249e-02 -1.91662497e-01 -9.81101917e-01]\n", + " [ 1.93534145e-01 -6.98346816e-03 -9.81068686e-01]\n", + " [ 1.66194100e-01 -4.52907737e-03 -9.86082658e-01]\n", + " [ 1.38158803e-01 -2.01777964e-03 -9.90408034e-01]\n", + " [ 1.09533209e-01 5.40306632e-04 -9.93982990e-01]\n", + " [ 8.04240682e-02 3.13509045e-03 -9.96755808e-01]\n", + " [ 5.09413826e-02 5.75635306e-03 -9.98685055e-01]\n", + " [ 2.11987287e-02 8.39370225e-03 -9.99740046e-01]\n", + " [-8.68730882e-03 1.10366135e-02 -9.99901357e-01]\n", + " [-2.65427249e-02 -1.91662497e-01 -9.81101917e-01]\n", + " [-2.41316922e-02 -1.64200008e-01 -9.86131847e-01]\n", + " [-2.16594723e-02 -1.36059846e-01 -9.90463823e-01]\n", + " [-1.91343531e-02 -1.07346998e-01 -9.94037473e-01]\n", + " [-1.65650835e-02 -7.81686374e-02 -9.96802519e-01]\n", + " [-1.39609241e-02 -4.86353500e-02 -9.98719027e-01]\n", + " [-1.13316190e-02 -1.88612721e-02 -9.99757894e-01]\n", + " [-8.68730882e-03 1.10366135e-02 -9.99901357e-01]\n", + " [ 1.71287351e-01 -1.90620663e-01 -9.66604576e-01]\n", + " [ 1.76137537e-01 -1.57877067e-01 -9.71622560e-01]\n", + " [ 1.80679947e-01 -1.24194578e-01 -9.75669239e-01]\n", + " [ 1.84898156e-01 -8.97782613e-02 -9.78648321e-01]\n", + " [ 1.88773002e-01 -5.48321909e-02 -9.80488748e-01]\n", + " [ 1.92284278e-01 -1.95616797e-02 -9.81144279e-01]\n", + " [ 1.58104480e-01 -2.01703054e-01 -9.66601703e-01]\n", + " [ 1.25087478e-01 -2.00777609e-01 -9.71617967e-01]\n", + " [ 9.11716771e-02 -1.99388161e-01 -9.75670071e-01]\n", + " [ 5.65622858e-02 -1.97554178e-01 -9.78658804e-01]\n", + " [ 2.14636826e-02 -1.95292144e-01 -9.80510219e-01]\n", + " [-1.39183850e-02 -1.92617685e-01 -9.81175166e-01]\n", + " [ 1.81697069e-01 -6.02014792e-03 -9.83336124e-01]\n", + " [ 1.47708239e-01 -2.97349368e-03 -9.89026508e-01]\n", + " [ 1.12779328e-01 1.48753913e-04 -9.93620049e-01]\n", + " [ 7.71060010e-02 3.32802330e-03 -9.97017346e-01]\n", + " [ 4.08908011e-02 6.54550271e-03 -9.99142181e-01]\n", + " [ 4.34412154e-03 9.78200571e-03 -9.99942719e-01]\n", + " [-2.54001942e-02 -1.79787233e-01 -9.83377537e-01]\n", + " [-2.24020899e-02 -1.45660394e-01 -9.89080986e-01]\n", + " [-1.93204562e-02 -1.10619825e-01 -9.93674984e-01]\n", + " [-1.61712079e-02 -7.48618171e-02 -9.97062787e-01]\n", + " [-1.29713952e-02 -3.85899676e-02 -9.99170935e-01]\n", + " [-9.73913121e-03 -2.01563465e-03 -9.99950542e-01]\n", + " [ 1.69504421e-01 -2.01914533e-01 -9.64623643e-01]\n", + " [ 1.69504421e-01 -2.01914533e-01 -9.64623643e-01]\n", + " [-8.59405552e-03 1.09252617e-02 -9.99903386e-01]\n", + " [-8.59405552e-03 1.09252617e-02 -9.99903386e-01]\n", + " [ 1.59842924e-01 -1.90354746e-01 -9.68615151e-01]\n", + " [ 1.26699636e-01 -1.89292940e-01 -9.73712168e-01]\n", + " [ 9.26560385e-02 -1.87792727e-01 -9.77828589e-01]\n", + " [ 5.79162359e-02 -1.85872576e-01 -9.80865483e-01]\n", + " [ 2.26841596e-02 -1.83548220e-01 -9.82748940e-01]\n", + " [-1.28342515e-02 -1.80834839e-01 -9.83429735e-01]\n", + " [ 1.64584784e-01 -1.57459678e-01 -9.73713664e-01]\n", + " [ 1.31132794e-01 -1.56018050e-01 -9.79011010e-01]\n", + " [ 9.67745775e-02 -1.54208776e-01 -9.83287514e-01]\n", + " [ 6.17114017e-02 -1.52048080e-01 -9.86444669e-01]\n", + " [ 2.61463279e-02 -1.49550290e-01 -9.88408357e-01]\n", + " [-9.71381289e-03 -1.46729929e-01 -9.89128894e-01]\n", + " [ 1.69044422e-01 -1.23628567e-01 -9.77824095e-01]\n", + " [ 1.35354682e-01 -1.21813274e-01 -9.83280548e-01]\n", + " [ 1.00751013e-01 -1.19698949e-01 -9.87684866e-01]\n", + " [ 6.54324381e-02 -1.17300730e-01 -9.90938512e-01]\n", + " [ 2.96016450e-02 -1.14632667e-01 -9.92966814e-01]\n", + " [-6.53336540e-03 -1.11709482e-01 -9.93719431e-01]\n", + " [ 1.73204600e-01 -8.90652935e-02 -9.80850417e-01]\n", + " [ 1.39346274e-01 -8.68795164e-02 -9.86425144e-01]\n", + " [ 1.04565556e-01 -8.44619471e-02 -9.90924934e-01]\n", + " [ 6.90598571e-02 -8.18278160e-02 -9.94250947e-01]\n", + " [ 3.30317908e-02 -7.89918896e-02 -9.96327849e-01]\n", + " [-3.30950140e-03 -7.59697852e-02 -9.97104628e-01]\n", + " [ 1.77045479e-01 -5.39734328e-02 -9.82721612e-01]\n", + " [ 1.43086420e-01 -5.14194595e-02 -9.88373571e-01]\n", + " [ 1.08196742e-01 -4.87002369e-02 -9.92935925e-01]\n", + " [ 7.25728038e-02 -4.58320355e-02 -9.96309496e-01]\n", + " [ 3.64172379e-02 -4.28310745e-02 -9.98418391e-01]\n", + " [-5.99612961e-05 -3.97143375e-02 -9.99211073e-01]\n", + " [ 1.80546372e-01 -1.85584590e-02 -9.83391372e-01]\n", + " [ 1.46553565e-01 -1.56394949e-02 -9.89079096e-01]\n", + " [ 1.11622907e-01 -1.26215614e-02 -9.93670480e-01]\n", + " [ 7.59501684e-02 -9.52257560e-03 -9.97066142e-01]\n", + " [ 3.97379388e-02 -6.36063919e-03 -9.99189891e-01]\n", + " [ 3.19660262e-03 -3.15434929e-03 -9.99989916e-01]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:fp_optics: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:cartToSphere: vec: [[-0.70749081 0.65177928 -0.27320417]\n", + " [-0.69943064 0.64922839 -0.29882986]\n", + " [-0.69057426 0.64625539 -0.32474785]\n", + " [-0.68094102 0.64283309 -0.35083466]\n", + " [-0.6705546 0.63894347 -0.37697185]\n", + " [-0.65944352 0.63457758 -0.40304534]\n", + " [-0.64764171 0.62973523 -0.42894494]\n", + " [-0.63518904 0.62442468 -0.4545643 ]\n", + " [-0.70749081 0.65177928 -0.27320417]\n", + " [-0.69074533 0.6719654 -0.26708312]\n", + " [-0.67306646 0.69208158 -0.26077696]\n", + " [-0.65450721 0.7120105 -0.25428598]\n", + " [-0.63512493 0.73164382 -0.24761592]\n", + " [-0.61498203 0.75088156 -0.24077789]\n", + " [-0.5941466 0.7696317 -0.23378807]\n", + " [-0.5726929 0.78781014 -0.22666721]\n", + " [-0.63518904 0.62442468 -0.4545643 ]\n", + " [-0.61725599 0.64533546 -0.4500413 ]\n", + " [-0.59845871 0.66615495 -0.44506714]\n", + " [-0.57884491 0.6867708 -0.43964126]\n", + " [-0.5584682 0.70707768 -0.43376771]\n", + " [-0.53738955 0.72697607 -0.42745558]\n", + " [-0.5156782 0.74637201 -0.4207194 ]\n", + " [-0.49341177 0.76517776 -0.41357927]\n", + " [-0.5726929 0.78781014 -0.22666721]\n", + " [-0.56320133 0.7866385 -0.25299038]\n", + " [-0.55306153 0.78481157 -0.27963145]\n", + " [-0.54228955 0.78230181 -0.30647335]\n", + " [-0.530907 0.77908986 -0.33340179]\n", + " [-0.51894193 0.77516486 -0.36030363]\n", + " [-0.50642943 0.770525 -0.38706647]\n", + " [-0.49341177 0.76517776 -0.41357927]\n", + " [-0.70401955 0.65078624 -0.28431275]\n", + " [-0.69360241 0.64738084 -0.31593312]\n", + " [-0.68200816 0.64331318 -0.34786925]\n", + " [-0.66927859 0.63854628 -0.37990106]\n", + " [-0.65546625 0.63306362 -0.41181847]\n", + " [-0.64063606 0.62686838 -0.4434202 ]\n", + " [-0.70028118 0.66057354 -0.27064528]\n", + " [-0.67912277 0.68528297 -0.26301998]\n", + " [-0.65661459 0.70976971 -0.25511613]\n", + " [-0.6328604 0.73383061 -0.246942 ]\n", + " [-0.60797516 0.75728156 -0.23851804]\n", + " [-0.58208677 0.77995644 -0.22987594]\n", + " [-0.62752312 0.63356456 -0.45256015]\n", + " [-0.60495784 0.6591462 -0.44671277]\n", + " [-0.58114122 0.6844782 -0.44018685]\n", + " [-0.55616942 0.70936383 -0.43298791]\n", + " [-0.53015478 0.73361983 -0.42513276]\n", + " [-0.50322827 0.75707576 -0.41665046]\n", + " [-0.5687097 0.78731643 -0.23812207]\n", + " [-0.55663986 0.78544307 -0.27061273]\n", + " [-0.54361162 0.78255731 -0.30346412]\n", + " [-0.52966237 0.77862008 -0.33646477]\n", + " [-0.51484383 0.77361151 -0.36940635]\n", + " [-0.4992236 0.76753209 -0.40208244]\n", + " [-0.707409 0.65184025 -0.27327054]\n", + " [-0.707409 0.65184025 -0.27327054]\n", + " [-0.49353409 0.76513403 -0.41351424]\n", + " [-0.49353409 0.76513403 -0.41351424]\n", + " [-0.6968498 0.65956569 -0.28173295]\n", + " [-0.67557509 0.68440005 -0.27421685]\n", + " [-0.65295373 0.70900355 -0.2663933 ]\n", + " [-0.62908867 0.73317361 -0.25827097]\n", + " [-0.60409424 0.75672634 -0.24987075]\n", + " [-0.57809818 0.77949541 -0.2412248 ]\n", + " [-0.68632137 0.65627174 -0.31348108]\n", + " [-0.66473993 0.68140849 -0.30627322]\n", + " [-0.64182257 0.7062964 -0.29867905]\n", + " [-0.61766975 0.73073449 -0.29070808]\n", + " [-0.59239421 0.75453922 -0.28238212]\n", + " [-0.56612354 0.7775434 -0.27373419]\n", + " [-0.67462648 0.65228711 -0.34554397]\n", + " [-0.65277044 0.6776507 -0.33864477]\n", + " [-0.6295919 0.70275481 -0.33128494]\n", + " [-0.60518909 0.7273999 -0.3234742 ]\n", + " [-0.57967367 0.75140249 -0.31523442]\n", + " [-0.55317353 0.77459423 -0.3065988 ]\n", + " [-0.6618062 0.64757517 -0.3777022 ]\n", + " [-0.63970552 0.67309081 -0.37111401]\n", + " [-0.61629888 0.69834309 -0.36399535]\n", + " [-0.5916829 0.72313362 -0.35635532]\n", + " [-0.56596878 0.74727884 -0.34821498]\n", + " [-0.53928514 0.77060929 -0.33960691]\n", + " [-0.64791242 0.64211976 -0.40974591]\n", + " [-0.62559549 0.66771325 -0.40347155]\n", + " [-0.60199286 0.69304556 -0.39660112]\n", + " [-0.57720037 0.71791915 -0.38914242]\n", + " [-0.55132939 0.74215047 -0.38111493]\n", + " [-0.5245095 0.76556924 -0.37255003]\n", + " [-0.63300975 0.63592435 -0.44147354]\n", + " [-0.61050432 0.66152201 -0.43551475]\n", + " [-0.58673778 0.68686612 -0.42889826]\n", + " [-0.56180603 0.71175976 -0.4216302 ]\n", + " [-0.53582112 0.73601956 -0.4137281 ]\n", + " [-0.50891366 0.75947501 -0.40522166]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:fp_optics: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:cartToSphere: vec: [[-8.50356803e-01 1.55308026e-01 -5.02765079e-01]\n", + " [-8.64678488e-01 1.45356708e-01 -4.80835253e-01]\n", + " [-8.78586157e-01 1.35090593e-01 -4.58079575e-01]\n", + " [-8.91985433e-01 1.24544890e-01 -4.34569394e-01]\n", + " [-9.04792032e-01 1.13755517e-01 -4.10379168e-01]\n", + " [-9.16930666e-01 1.02760027e-01 -3.85588550e-01]\n", + " [-9.28334487e-01 9.15984302e-02 -3.60284344e-01]\n", + " [-9.38945460e-01 8.03134291e-02 -3.34561169e-01]\n", + " [-8.50356803e-01 1.55308026e-01 -5.02765079e-01]\n", + " [-8.48379820e-01 1.28433645e-01 -5.13572274e-01]\n", + " [-8.45749310e-01 1.01503599e-01 -5.23836925e-01]\n", + " [-8.42487368e-01 7.46237021e-02 -5.33522575e-01]\n", + " [-8.38626243e-01 4.79000288e-02 -5.42597100e-01]\n", + " [-8.34208180e-01 2.14386155e-02 -5.51032756e-01]\n", + " [-8.29284829e-01 -4.65505109e-03 -5.58806768e-01]\n", + " [-8.23915787e-01 -3.02774030e-02 -5.65902867e-01]\n", + " [-9.38945460e-01 8.03134291e-02 -3.34561169e-01]\n", + " [-9.36812708e-01 5.25670691e-02 -3.45859297e-01]\n", + " [-9.33846984e-01 2.48642610e-02 -3.56807480e-01]\n", + " [-9.30072196e-01 -2.68478098e-03 -3.67366986e-01]\n", + " [-9.25522484e-01 -2.99733049e-02 -3.77504613e-01]\n", + " [-9.20241673e-01 -5.68978354e-02 -3.87192328e-01]\n", + " [-9.14283168e-01 -8.33563595e-02 -3.96406365e-01]\n", + " [-9.07710313e-01 -1.09245936e-01 -4.05126293e-01]\n", + " [-8.23915787e-01 -3.02774030e-02 -5.65902867e-01]\n", + " [-8.37267882e-01 -4.15426933e-02 -5.45212527e-01]\n", + " [-8.50298286e-01 -5.28798309e-02 -5.23637802e-01]\n", + " [-8.62915491e-01 -6.42493088e-02 -5.01247325e-01]\n", + " [-8.75035384e-01 -7.56114809e-02 -4.78117121e-01]\n", + " [-8.86582960e-01 -8.69259927e-02 -4.54328655e-01]\n", + " [-8.97493001e-01 -9.81515312e-02 -4.29968126e-01]\n", + " [-9.07710313e-01 -1.09245936e-01 -4.05126293e-01]\n", + " [-8.56639871e-01 1.50918114e-01 -4.93347600e-01]\n", + " [-8.73926534e-01 1.38504734e-01 -4.65906484e-01]\n", + " [-8.90496410e-01 1.25653623e-01 -4.37295451e-01]\n", + " [-9.06190189e-01 1.12430588e-01 -4.07650223e-01]\n", + " [-9.20869201e-01 9.89048662e-02 -3.77117676e-01]\n", + " [-9.34413992e-01 8.51512603e-02 -3.45860890e-01]\n", + " [-8.49625708e-01 1.43570474e-01 -5.07467905e-01]\n", + " [-8.46760759e-01 1.10581524e-01 -5.20353672e-01]\n", + " [-8.42934850e-01 7.76141363e-02 -5.32387909e-01]\n", + " [-8.38203132e-01 4.48635005e-02 -5.43509683e-01]\n", + " [-8.32643318e-01 1.25247747e-02 -5.53667983e-01]\n", + " [-8.26353916e-01 -1.92085154e-02 -5.62823452e-01]\n", + " [-9.38084208e-01 6.82564784e-02 -3.39616065e-01]\n", + " [-9.34907757e-01 3.42657685e-02 -3.53232704e-01]\n", + " [-9.30502821e-01 4.50238461e-04 -3.66284449e-01]\n", + " [-9.24928033e-01 -3.29920783e-02 -3.78707878e-01]\n", + " [-9.18264059e-01 -6.58704666e-02 -3.90451278e-01]\n", + " [-9.10613314e-01 -9.79968184e-02 -4.01472310e-01]\n", + " [-8.29790257e-01 -3.50908144e-02 -5.56971063e-01]\n", + " [-8.45951099e-01 -4.89503657e-02 -5.31009039e-01]\n", + " [-8.61537042e-01 -6.28787330e-02 -5.03785857e-01]\n", + " [-8.76390015e-01 -7.68030263e-02 -4.75438572e-01]\n", + " [-8.90372009e-01 -9.06489270e-02 -4.46117090e-01]\n", + " [-9.03367114e-01 -1.04340010e-01 -4.15981995e-01]\n", + " [-8.50400736e-01 1.55182883e-01 -5.02729411e-01]\n", + " [-8.50400736e-01 1.55182883e-01 -5.02729411e-01]\n", + " [-9.07700050e-01 -1.09120823e-01 -4.05183003e-01]\n", + " [-9.07700050e-01 -1.09120823e-01 -4.05183003e-01]\n", + " [-8.55860238e-01 1.39260735e-01 -4.98106113e-01]\n", + " [-8.52966318e-01 1.06149694e-01 -5.11058414e-01]\n", + " [-8.49087899e-01 7.30685035e-02 -5.23173712e-01]\n", + " [-8.44280187e-01 4.02127016e-02 -5.34391152e-01]\n", + " [-8.38621249e-01 7.77769568e-03 -5.44659442e-01]\n", + " [-8.32210768e-01 -2.40422833e-02 -5.53937908e-01]\n", + " [-8.73135134e-01 1.26734522e-01 -4.70715836e-01]\n", + " [-8.70166234e-01 9.33193661e-02 -4.83841112e-01]\n", + " [-8.66151297e-01 5.99585924e-02 -4.96172247e-01]\n", + " [-8.61145489e-01 2.68487142e-02 -5.07649084e-01]\n", + " [-8.55227144e-01 -5.81482004e-03 -5.18220724e-01]\n", + " [-8.48497643e-01 -3.78371796e-02 -5.27844766e-01]\n", + " [-8.89695110e-01 1.13792234e-01 -4.42146966e-01]\n", + " [-8.86661445e-01 8.01352261e-02 -4.55422690e-01]\n", + " [-8.82527715e-01 4.65588153e-02 -4.67949900e-01]\n", + " [-8.77349272e-01 1.32604983e-02 -4.79669068e-01]\n", + " [-8.71204426e-01 -1.95649354e-02 -4.90530388e-01]\n", + " [-8.64194893e-01 -5.17236281e-02 -5.00491611e-01]\n", + " [-9.05380851e-01 1.00500167e-01 -4.12535127e-01]\n", + " [-9.02292368e-01 6.66650611e-02 -4.25939259e-01]\n", + " [-8.98056987e-01 3.29382532e-02 -4.38644184e-01]\n", + " [-8.92730751e-01 -4.81959845e-04 -4.50590251e-01]\n", + " [-8.86392280e-01 -3.34018851e-02 -4.61728318e-01]\n", + " [-8.79143272e-01 -6.56295149e-02 -4.72016815e-01]\n", + " [-9.20053742e-01 8.69283701e-02 -3.82026924e-01]\n", + " [-9.16920556e-01 5.29810952e-02 -3.95537226e-01]\n", + " [-9.12600754e-01 1.91706647e-02 -4.08402190e-01]\n", + " [-9.07151467e-01 -1.43042936e-02 -4.20561057e-01]\n", + " [-9.00652070e-01 -4.72514004e-02 -4.31964297e-01]\n", + " [-8.93204405e-01 -7.94806682e-02 -4.42570576e-01]\n", + " [-9.33594423e-01 7.31524703e-02 -3.50785075e-01]\n", + " [-9.30427261e-01 3.91609449e-02 -3.64378283e-01]\n", + " [-9.26041162e-01 5.33473871e-03 -3.77384827e-01]\n", + " [-9.20494410e-01 -2.81278436e-02 -3.89742050e-01]\n", + " [-9.13867346e-01 -6.10357004e-02 -4.01398950e-01]\n", + " [-9.06262210e-01 -9.32003900e-02 -4.12313587e-01]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:cartToSphere: vec: [[ 0.10353828 -0.86624233 0.48877813]\n", + " [ 0.09089752 -0.85535632 0.51000314]\n", + " [ 0.07806405 -0.84355098 0.53134523]\n", + " [ 0.06507504 -0.83084687 0.5526832 ]\n", + " [ 0.05197082 -0.81727106 0.57390509]\n", + " [ 0.03879475 -0.80285788 0.59490688]\n", + " [ 0.02559295 -0.78764953 0.61559177]\n", + " [ 0.01241388 -0.77169643 0.63586989]\n", + " [ 0.10353828 -0.86624233 0.48877813]\n", + " [ 0.12829658 -0.85868087 0.49619266]\n", + " [ 0.15343527 -0.85024671 0.50352571]\n", + " [ 0.17884456 -0.84094656 0.51070883]\n", + " [ 0.20441744 -0.83079347 0.51768304]\n", + " [ 0.23004878 -0.81980755 0.52439788]\n", + " [ 0.2556348 -0.80801665 0.53081065]\n", + " [ 0.28107311 -0.79545677 0.53688587]\n", + " [ 0.01241388 -0.77169643 0.63586989]\n", + " [ 0.0372999 -0.7631429 0.64515241]\n", + " [ 0.06266632 -0.75379927 0.65410977]\n", + " [ 0.08840981 -0.74366874 0.66267678]\n", + " [ 0.11442731 -0.73276232 0.67079488]\n", + " [ 0.14061479 -0.72109965 0.67841196]\n", + " [ 0.16686706 -0.7087094 0.68548258]\n", + " [ 0.19307842 -0.69562948 0.69196846]\n", + " [ 0.28107311 -0.79545677 0.53688587]\n", + " [ 0.26962861 -0.7836806 0.55959372]\n", + " [ 0.25774454 -0.77103442 0.58230033]\n", + " [ 0.24545603 -0.75753459 0.60489063]\n", + " [ 0.23280133 -0.7432057 0.627255 ]\n", + " [ 0.21982239 -0.72808145 0.64928847]\n", + " [ 0.20656498 -0.71220511 0.67089104]\n", + " [ 0.19307842 -0.69562948 0.69196846]\n", + " [ 0.09813691 -0.86158551 0.4980357 ]\n", + " [ 0.08251073 -0.84762246 0.52414515]\n", + " [ 0.06663152 -0.83229828 0.55030884]\n", + " [ 0.05057216 -0.81566005 0.57631687]\n", + " [ 0.03441247 -0.79777105 0.60197769]\n", + " [ 0.01823836 -0.77871236 0.62711595]\n", + " [ 0.1142364 -0.86301713 0.49208889]\n", + " [ 0.14485072 -0.85316178 0.50113196]\n", + " [ 0.175927 -0.8420016 0.50998333]\n", + " [ 0.20726719 -0.82955796 0.51853053]\n", + " [ 0.23867764 -0.81586796 0.52668061]\n", + " [ 0.26996787 -0.80098623 0.53435794]\n", + " [ 0.02324366 -0.7681201 0.63988377]\n", + " [ 0.05408061 -0.75710609 0.65104966]\n", + " [ 0.08553627 -0.74490758 0.66166173]\n", + " [ 0.11742086 -0.73154156 0.67160948]\n", + " [ 0.14954288 -0.7170442 0.68079699]\n", + " [ 0.18170841 -0.70147215 0.68914358]\n", + " [ 0.2760525 -0.79047442 0.54675883]\n", + " [ 0.26172538 -0.77545524 0.57460334]\n", + " [ 0.24677277 -0.7591446 0.60233104]\n", + " [ 0.23126376 -0.74158428 0.6297379 ]\n", + " [ 0.21527561 -0.72283639 0.65663076]\n", + " [ 0.19889406 -0.70298456 0.68282784]\n", + " [ 0.10357931 -0.86618231 0.48887578]\n", + " [ 0.10357931 -0.86618231 0.48887578]\n", + " [ 0.19303543 -0.69573314 0.69187624]\n", + " [ 0.19303543 -0.69573314 0.69187624]\n", + " [ 0.10882036 -0.85839372 0.50131661]\n", + " [ 0.13951408 -0.84846546 0.51053128]\n", + " [ 0.17067753 -0.83723534 0.51952494]\n", + " [ 0.20211334 -0.82472391 0.52818622]\n", + " [ 0.23362801 -0.81096767 0.53642277]\n", + " [ 0.26503069 -0.79602103 0.54415922]\n", + " [ 0.0932516 -0.84435565 0.52760561]\n", + " [ 0.12412266 -0.83422369 0.53727497]\n", + " [ 0.15548752 -0.82280108 0.54664615]\n", + " [ 0.18715061 -0.81010623 0.55561007]\n", + " [ 0.21891868 -0.79617433 0.56407539]\n", + " [ 0.25059972 -0.78105941 0.57196676]\n", + " [ 0.07740445 -0.82895622 0.55393153]\n", + " [ 0.10838286 -0.81862274 0.56401238]\n", + " [ 0.13988164 -0.80701416 0.57372578]\n", + " [ 0.17170686 -0.79414736 0.58296375]\n", + " [ 0.20366539 -0.78005682 0.59163482]\n", + " [ 0.23556413 -0.76479669 0.59966288]\n", + " [ 0.06135217 -0.81224172 0.5800856 ]\n", + " [ 0.09236852 -0.8017067 0.59053741]\n", + " [ 0.1239336 -0.78991701 0.60055939]\n", + " [ 0.15585493 -0.77688875 0.61004353]\n", + " [ 0.18793958 -0.76265634 0.61889742]\n", + " [ 0.21999361 -0.74727441 0.62704367]\n", + " [ 0.045175 -0.79427487 0.60587676]\n", + " [ 0.0761607 -0.7835371 0.61665968]\n", + " [ 0.10772456 -0.77157052 0.62695642]\n", + " [ 0.13967537 -0.7583912 0.63665814]\n", + " [ 0.17182063 -0.74403402 0.64567101]\n", + " [ 0.20396604 -0.72855439 0.65391617]\n", + " [ 0.02895933 -0.77513664 0.63112958]\n", + " [ 0.05984684 -0.76419482 0.64220295]\n", + " [ 0.09134244 -0.75205588 0.65273924]\n", + " [ 0.12325603 -0.73873648 0.66262837]\n", + " [ 0.15539578 -0.72427241 0.67177499]\n", + " [ 0.18756758 -0.70871997 0.68009882]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:fp_optics: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:cartToSphere: vec: [[-0.28140131 -0.29125492 0.91432154]\n", + " [-0.25750943 -0.2831918 0.92384593]\n", + " [-0.2328636 -0.27488983 0.93285054]\n", + " [-0.20756473 -0.26635867 0.94125976]\n", + " [-0.18171393 -0.25761296 0.9490077 ]\n", + " [-0.1554128 -0.24867239 0.95603813]\n", + " [-0.12876384 -0.23956164 0.96230457]\n", + " [-0.1018707 -0.23030995 0.96777047]\n", + " [-0.28140131 -0.29125492 0.91432154]\n", + " [-0.27364071 -0.31631299 0.90833191]\n", + " [-0.26536556 -0.34164281 0.90158822]\n", + " [-0.25661389 -0.36712411 0.89407449]\n", + " [-0.24742357 -0.39264093 0.88578478]\n", + " [-0.23783239 -0.41808138 0.87672328]\n", + " [-0.22787847 -0.44333739 0.86690447]\n", + " [-0.21760075 -0.46830476 0.85635306]\n", + " [-0.1018707 -0.23030995 0.96777047]\n", + " [-0.09211644 -0.25587047 0.96231225]\n", + " [-0.08208438 -0.28174896 0.95597054]\n", + " [-0.07181114 -0.30782984 0.94872754]\n", + " [-0.06133382 -0.33400092 0.94057512]\n", + " [-0.05069076 -0.36015177 0.93151551]\n", + " [-0.03992194 -0.38617299 0.92156208]\n", + " [-0.02906899 -0.41195655 0.9107397 ]\n", + " [-0.21760075 -0.46830476 0.85635306]\n", + " [-0.19217347 -0.46168951 0.86597468]\n", + " [-0.16608021 -0.45457488 0.87508802]\n", + " [-0.13941716 -0.44696852 0.8836187 ]\n", + " [-0.11228189 -0.43888286 0.89150133]\n", + " [-0.08477507 -0.43033568 0.89867925]\n", + " [-0.0570013 -0.42135047 0.90510476]\n", + " [-0.02906899 -0.41195655 0.9107397 ]\n", + " [-0.27105738 -0.28785456 0.91851383]\n", + " [-0.24125433 -0.27781156 0.92984788]\n", + " [-0.21041908 -0.26741867 0.94032498]\n", + " [-0.17873773 -0.25670072 0.94981975]\n", + " [-0.14639734 -0.24569401 0.95822872]\n", + " [-0.1135871 -0.23444584 0.96547041]\n", + " [-0.27800255 -0.30211221 0.91183485]\n", + " [-0.268139 -0.33302247 0.90398977]\n", + " [-0.25754051 -0.36422097 0.89499496]\n", + " [-0.24627689 -0.39549243 0.88483526]\n", + " [-0.23441776 -0.42663082 0.87351844]\n", + " [-0.22203362 -0.45743878 0.86107539]\n", + " [-0.09774695 -0.2414397 0.9654804 ]\n", + " [-0.08560162 -0.27299564 0.95819922]\n", + " [-0.07307523 -0.30491383 0.94957231]\n", + " [-0.06023583 -0.3369864 0.93958066]\n", + " [-0.04715404 -0.36900998 0.92822849]\n", + " [-0.03390416 -0.40078366 0.91554517]\n", + " [-0.20663822 -0.46539709 0.8606429 ]\n", + " [-0.17501492 -0.45695204 0.87210356]\n", + " [-0.14248676 -0.44776415 0.88272577]\n", + " [-0.10923267 -0.43785433 0.89238546]\n", + " [-0.07543807 -0.42725533 0.90097835]\n", + " [-0.04129719 -0.41601285 0.90842053]\n", + " [-0.28129538 -0.29131285 0.91433568]\n", + " [-0.28129538 -0.29131285 0.91433568]\n", + " [-0.02920187 -0.41190169 0.91076026]\n", + " [-0.02920187 -0.41190169 0.91076026]\n", + " [-0.2677021 -0.29869325 0.9160338 ]\n", + " [-0.25767667 -0.32971574 0.9082347 ]\n", + " [-0.24693861 -0.36102774 0.89926653]\n", + " [-0.23555734 -0.3924143 0.88911403]\n", + " [-0.22360197 -0.42366949 0.87778489]\n", + " [-0.21114266 -0.45459569 0.86531008]\n", + " [-0.23772768 -0.2887429 0.92742282]\n", + " [-0.22725982 -0.32003143 0.91974608]\n", + " [-0.21614251 -0.3516157 0.9108506 ]\n", + " [-0.20444377 -0.383282 0.90072063]\n", + " [-0.19223134 -0.41482477 0.88936355]\n", + " [-0.17957472 -0.44604541 0.87681036]\n", + " [-0.20672917 -0.2784147 0.93794899]\n", + " [-0.1958417 -0.30989233 0.93038313]\n", + " [-0.18436731 -0.34167576 0.92155649]\n", + " [-0.17237276 -0.37355287 0.91145262]\n", + " [-0.15992505 -0.40531843 0.9000783 ]\n", + " [-0.14709368 -0.4367728 0.88746435]\n", + " [-0.17489216 -0.26773355 0.94748693]\n", + " [-0.163606 -0.29932356 0.94002047]\n", + " [-0.15179467 -0.33123298 0.93125887]\n", + " [-0.13952434 -0.36325123 0.92118484]\n", + " [-0.12686213 -0.39517353 0.90980431]\n", + " [-0.11387835 -0.42679931 0.89714774]\n", + " [-0.14240336 -0.25673602 0.955933 ]\n", + " [-0.13073832 -0.28836233 0.94855398]\n", + " [-0.11860935 -0.32032463 0.93985316]\n", + " [-0.1060829 -0.35241372 0.92981234]\n", + " [-0.09322716 -0.38442534 0.91843664]\n", + " [-0.08011389 -0.4161584 0.90575601]\n", + " [-0.10945195 -0.24546981 0.96320551]\n", + " [-0.09742816 -0.27705724 0.95590117]\n", + " [-0.08500163 -0.30899968 0.947256 ]\n", + " [-0.0722399 -0.34108899 0.93725114]\n", + " [-0.05921289 -0.37312156 0.92589099]\n", + " [-0.0459942 -0.40489633 0.91320507]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:fp_optics: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:fp_optics: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:cartToSphere: vec: [[ 0.98403243 -0.16333953 0.07071329]\n", + " [ 0.97997905 -0.17432978 0.09617788]\n", + " [ 0.97505215 -0.18539767 0.12206968]\n", + " [ 0.96922889 -0.19649061 0.14827948]\n", + " [ 0.96249617 -0.20755874 0.17470115]\n", + " [ 0.95485125 -0.21855396 0.20122935]\n", + " [ 0.94630264 -0.22942922 0.22775764]\n", + " [ 0.93687082 -0.24013845 0.25417826]\n", + " [ 0.98403243 -0.16333953 0.07071329]\n", + " [ 0.9871132 -0.13703869 0.08263125]\n", + " [ 0.98934282 -0.11074551 0.09453156]\n", + " [ 0.99072385 -0.08456572 0.10637145]\n", + " [ 0.99126942 -0.05860676 0.11811094]\n", + " [ 0.99100304 -0.03297757 0.12971297]\n", + " [ 0.98995857 -0.00778762 0.14114313]\n", + " [ 0.98817992 0.01685545 0.1523691 ]\n", + " [ 0.93687082 -0.24013845 0.25417826]\n", + " [ 0.94007105 -0.21287438 0.26636614]\n", + " [ 0.9424162 -0.18550871 0.27827726]\n", + " [ 0.94390912 -0.1581524 0.28986788]\n", + " [ 0.94456373 -0.13091482 0.3010991 ]\n", + " [ 0.94440435 -0.10390387 0.31193656]\n", + " [ 0.94346521 -0.0772277 0.32234962]\n", + " [ 0.94179036 -0.05099717 0.33231041]\n", + " [ 0.98817992 0.01685545 0.1523691 ]\n", + " [ 0.98406997 0.00789539 0.17760621]\n", + " [ 0.97914025 -0.00138741 0.20318084]\n", + " [ 0.97336874 -0.01094599 0.22898357]\n", + " [ 0.96674384 -0.02073228 0.25490494]\n", + " [ 0.95926439 -0.03069931 0.28083692]\n", + " [ 0.95093987 -0.04080197 0.30667338]\n", + " [ 0.94179036 -0.05099717 0.33231041]\n", + " [ 0.98238271 -0.16802809 0.08179715]\n", + " [ 0.97683095 -0.18155588 0.11330827]\n", + " [ 0.96994334 -0.19514787 0.14535209]\n", + " [ 0.96169173 -0.20871117 0.17773199]\n", + " [ 0.95207118 -0.22215716 0.21025382]\n", + " [ 0.9411023 -0.23539959 0.24272102]\n", + " [ 0.98546768 -0.15191503 0.07599526]\n", + " [ 0.98867138 -0.11967159 0.09059587]\n", + " [ 0.99059795 -0.08754443 0.10512698]\n", + " [ 0.99126714 -0.05573068 0.11951382]\n", + " [ 0.99072227 -0.02443075 0.13368813]\n", + " [ 0.98902986 0.00615435 0.14758748]\n", + " [ 0.9384047 -0.22823457 0.25943323]\n", + " [ 0.94175204 -0.19473748 0.27419047]\n", + " [ 0.94381655 -0.16119823 0.28848822]\n", + " [ 0.94461927 -0.12781889 0.30225281]\n", + " [ 0.94420493 -0.09479829 0.31542088]\n", + " [ 0.94264061 -0.06233661 0.32793722]\n", + " [ 0.98649427 0.01290764 0.16328638]\n", + " [ 0.98090929 0.00170204 0.19445838]\n", + " [ 0.97406988 -0.00994179 0.22602882]\n", + " [ 0.96595031 -0.02193564 0.25779608]\n", + " [ 0.95654852 -0.0341931 0.28956131]\n", + " [ 0.94588633 -0.04663198 0.32113004]\n", + " [ 0.98403201 -0.16328708 0.07084025]\n", + " [ 0.98403201 -0.16328708 0.07084025]\n", + " [ 0.94182994 -0.051051 0.33218994]\n", + " [ 0.94182994 -0.051051 0.33218994]\n", + " [ 0.98382379 -0.15661059 0.08697051]\n", + " [ 0.98703749 -0.12423031 0.10160626]\n", + " [ 0.9889662 -0.0919547 0.11614729]\n", + " [ 0.98962981 -0.0599811 0.13051857]\n", + " [ 0.98907177 -0.02851041 0.14465198]\n", + " [ 0.98735867 0.00225472 0.15848587]\n", + " [ 0.97828582 -0.17002395 0.11852728]\n", + " [ 0.98152687 -0.13729773 0.13324542]\n", + " [ 0.98346582 -0.1046451 0.14779845]\n", + " [ 0.98412307 -0.07226371 0.16211026]\n", + " [ 0.98354251 -0.04035434 0.17611263]\n", + " [ 0.981791 -0.00912162 0.18974519]\n", + " [ 0.97140972 -0.18352279 0.15060723]\n", + " [ 0.97467683 -0.15051232 0.16538173]\n", + " [ 0.97663237 -0.11754697 0.17992197]\n", + " [ 0.97729737 -0.08482485 0.19415095]\n", + " [ 0.97671635 -0.05254563 0.20800031]\n", + " [ 0.97495644 -0.02091324 0.22141043]\n", + " [ 0.96316732 -0.19701463 0.18301352]\n", + " [ 0.96645942 -0.16378233 0.19781692]\n", + " [ 0.96843847 -0.13056848 0.21231768]\n", + " [ 0.969126 -0.09757216 0.22643866]\n", + " [ 0.9685671 -0.06499201 0.24011209]\n", + " [ 0.96682916 -0.03303022 0.25327926]\n", + " [ 0.95355361 -0.21041161 0.21555155]\n", + " [ 0.95686982 -0.17702166 0.23035511]\n", + " [ 0.95887993 -0.14362433 0.24478834]\n", + " [ 0.9596056 -0.11041999 0.25877504]\n", + " [ 0.95909213 -0.07760691 0.27224889]\n", + " [ 0.95740699 -0.04538576 0.28515258]\n", + " [ 0.94258911 -0.22362832 0.24802447]\n", + " [ 0.94592853 -0.19014718 0.2627989 ]\n", + " [ 0.94797751 -0.15663295 0.27713672]\n", + " [ 0.94875734 -0.12328733 0.29096347]\n", + " [ 0.94831299 -0.0903089 0.30421502]\n", + " [ 0.9467117 -0.05789774 0.31683561]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:fp_optics: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:cartToSphere: vec: [[ 0.29154198 -0.14900342 -0.94488161]\n", + " [ 0.30658599 -0.16981163 -0.93657303]\n", + " [ 0.3218366 -0.19082943 -0.92736472]\n", + " [ 0.33720163 -0.21196831 -0.91725923]\n", + " [ 0.35259617 -0.23314128 -0.90626767]\n", + " [ 0.36794193 -0.2542625 -0.89441004]\n", + " [ 0.3831665 -0.27524719 -0.88171561]\n", + " [ 0.39820293 -0.29601185 -0.86822314]\n", + " [ 0.29154198 -0.14900342 -0.94488161]\n", + " [ 0.31064726 -0.13033007 -0.94154785]\n", + " [ 0.33003321 -0.11126614 -0.93738889]\n", + " [ 0.34959058 -0.09187759 -0.93238669]\n", + " [ 0.36921748 -0.07223235 -0.92653167]\n", + " [ 0.38881859 -0.05240073 -0.91982295]\n", + " [ 0.40830441 -0.0324555 -0.91226868]\n", + " [ 0.42759071 -0.01247166 -0.90388641]\n", + " [ 0.39820293 -0.29601185 -0.86822314]\n", + " [ 0.41919958 -0.27806795 -0.86426265]\n", + " [ 0.4402927 -0.25953437 -0.8595256 ]\n", + " [ 0.46137863 -0.24047272 -0.85399217]\n", + " [ 0.48235855 -0.22094709 -0.84765123]\n", + " [ 0.50313714 -0.20102541 -0.84050093]\n", + " [ 0.52362213 -0.18078013 -0.83254934]\n", + " [ 0.54372483 -0.16028815 -0.82381492]\n", + " [ 0.42759071 -0.01247166 -0.90388641]\n", + " [ 0.44464847 -0.03288621 -0.89510125]\n", + " [ 0.46168922 -0.05367486 -0.88541633]\n", + " [ 0.47862535 -0.07475383 -0.8748312 ]\n", + " [ 0.49537404 -0.09603965 -0.86335447]\n", + " [ 0.51185632 -0.11744793 -0.85100475]\n", + " [ 0.52799693 -0.13889294 -0.83781143]\n", + " [ 0.54372483 -0.16028815 -0.82381492]\n", + " [ 0.29813495 -0.15798131 -0.94135937]\n", + " [ 0.31672551 -0.18363634 -0.93057114]\n", + " [ 0.33553379 -0.20951815 -0.91843302]\n", + " [ 0.35440049 -0.23546601 -0.9049619 ]\n", + " [ 0.37318139 -0.26132187 -0.89019466]\n", + " [ 0.39174548 -0.28693015 -0.87418909]\n", + " [ 0.29988173 -0.1409847 -0.94350107]\n", + " [ 0.32350178 -0.11782779 -0.93886272]\n", + " [ 0.34743387 -0.09414939 -0.93296602]\n", + " [ 0.37148739 -0.07007373 -0.92578982]\n", + " [ 0.39548679 -0.04573026 -0.91733251]\n", + " [ 0.41926949 -0.02125388 -0.90761301]\n", + " [ 0.40728755 -0.28819382 -0.86663786]\n", + " [ 0.4330988 -0.26579679 -0.86126506]\n", + " [ 0.45895142 -0.24257521 -0.85470513]\n", + " [ 0.48466159 -0.21864593 -0.84693394]\n", + " [ 0.51005375 -0.19413411 -0.83794816]\n", + " [ 0.53495951 -0.16917501 -0.82776696]\n", + " [ 0.43495839 -0.02138962 -0.90019647]\n", + " [ 0.45586363 -0.04667257 -0.88882508]\n", + " [ 0.4766558 -0.07243394 -0.87610078]\n", + " [ 0.4971805 -0.09852002 -0.86203559]\n", + " [ 0.51729236 -0.12477538 -0.84666388]\n", + " [ 0.53685453 -0.15104184 -0.83004432]\n", + " [ 0.29165769 -0.149011 -0.9448447 ]\n", + " [ 0.29165769 -0.149011 -0.9448447 ]\n", + " [ 0.54360383 -0.16028557 -0.82389527]\n", + " [ 0.54360383 -0.16028557 -0.82389527]\n", + " [ 0.30643506 -0.14996239 -0.9400047 ]\n", + " [ 0.33025514 -0.12681284 -0.93533419]\n", + " [ 0.35436501 -0.1031215 -0.92940378]\n", + " [ 0.37857505 -0.07901242 -0.92219194]\n", + " [ 0.40271039 -0.05461518 -0.91369663]\n", + " [ 0.42660859 -0.03006511 -0.9039365 ]\n", + " [ 0.32522315 -0.17564793 -0.9291812 ]\n", + " [ 0.34956157 -0.15254701 -0.92441123]\n", + " [ 0.37413114 -0.1288476 -0.91838129]\n", + " [ 0.39874502 -0.10467307 -0.91106858]\n", + " [ 0.4232298 -0.08015316 -0.90246995]\n", + " [ 0.44742295 -0.05542426 -0.89260342]\n", + " [ 0.34420296 -0.20157469 -0.91700162]\n", + " [ 0.3689904 -0.17856452 -0.91211885]\n", + " [ 0.39395683 -0.15490063 -0.90598223]\n", + " [ 0.41891758 -0.13070531 -0.89856785]\n", + " [ 0.44369983 -0.10610798 -0.88987165]\n", + " [ 0.46814019 -0.08124576 -0.8799113 ]\n", + " [ 0.3632161 -0.22758215 -0.90348239]\n", + " [ 0.38838579 -0.20470557 -0.8984721 ]\n", + " [ 0.41368811 -0.18112182 -0.89222028]\n", + " [ 0.43893965 -0.15695169 -0.88470229]\n", + " [ 0.46396734 -0.13232378 -0.87591365]\n", + " [ 0.48860632 -0.10737536 -0.86587204]\n", + " [ 0.382119 -0.25351213 -0.88866004]\n", + " [ 0.40760558 -0.23081166 -0.88350646]\n", + " [ 0.43318331 -0.20735261 -0.87713004]\n", + " [ 0.4586691 -0.18325403 -0.86950596]\n", + " [ 0.483889 -0.15864326 -0.86062985]\n", + " [ 0.50867653 -0.13365709 -0.85051982]\n", + " [ 0.40078089 -0.27920859 -0.87259225]\n", + " [ 0.42651907 -0.2567254 -0.8672794 ]\n", + " [ 0.45231098 -0.23343445 -0.86076892]\n", + " [ 0.47797308 -0.20945315 -0.85303641]\n", + " [ 0.50333025 -0.18490721 -0.84407819]\n", + " [ 0.52821451 -0.15993238 -0.8339131 ]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:fp_optics: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:cartToSphere: vec: [[ 0.05549287 -0.23241796 0.97103163]\n", + " [ 0.06124842 -0.20560812 0.97671589]\n", + " [ 0.06706845 -0.17809704 0.98172464]\n", + " [ 0.07292712 -0.14998545 0.98599493]\n", + " [ 0.07879912 -0.12137657 0.98947381]\n", + " [ 0.08465944 -0.09237745 0.99211853]\n", + " [ 0.09048338 -0.06309912 0.99389701]\n", + " [ 0.09624676 -0.03365597 0.99478834]\n", + " [ 0.05549287 -0.23241796 0.97103163]\n", + " [ 0.08383294 -0.23771958 0.96770938]\n", + " [ 0.11203171 -0.24271027 0.96360813]\n", + " [ 0.13998054 -0.24737067 0.95875607]\n", + " [ 0.16757276 -0.25168232 0.9531922 ]\n", + " [ 0.19470366 -0.25562709 0.94696635]\n", + " [ 0.22126997 -0.25918639 0.94013936]\n", + " [ 0.24716879 -0.26234028 0.93278356]\n", + " [ 0.09624676 -0.03365597 0.99478834]\n", + " [ 0.12553091 -0.03928769 0.99131149]\n", + " [ 0.1546083 -0.04486349 0.98695671]\n", + " [ 0.18336593 -0.05036188 0.98175385]\n", + " [ 0.21169476 -0.05576227 0.97574377]\n", + " [ 0.23949039 -0.06104509 0.96897773]\n", + " [ 0.266653 -0.06619176 0.96151694]\n", + " [ 0.29308627 -0.07118443 0.95343233]\n", + " [ 0.24716879 -0.26234028 0.93278356]\n", + " [ 0.25440252 -0.23672948 0.93767719]\n", + " [ 0.26145565 -0.21037383 0.94201051]\n", + " [ 0.26830169 -0.18338117 0.94571959]\n", + " [ 0.27491395 -0.15585823 0.94875209]\n", + " [ 0.28126585 -0.12791207 0.95106678]\n", + " [ 0.28733151 -0.09965091 0.95263335]\n", + " [ 0.29308627 -0.07118443 0.95343233]\n", + " [ 0.05809011 -0.22084011 0.97357855]\n", + " [ 0.06519174 -0.18749792 0.98009926]\n", + " [ 0.07236429 -0.15320231 0.98554171]\n", + " [ 0.07956095 -0.11814217 0.98980426]\n", + " [ 0.08673568 -0.08251461 0.99280827]\n", + " [ 0.09384321 -0.04652545 0.99449929]\n", + " [ 0.06787953 -0.23467614 0.96970072]\n", + " [ 0.10253291 -0.24096755 0.96510188]\n", + " [ 0.13686583 -0.24677273 0.95935966]\n", + " [ 0.17068109 -0.25205734 0.95254137]\n", + " [ 0.20378585 -0.25678793 0.94473874]\n", + " [ 0.23599021 -0.26092975 0.93606853]\n", + " [ 0.10901323 -0.0362177 0.99338029]\n", + " [ 0.14477922 -0.04308489 0.9885255 ]\n", + " [ 0.18012202 -0.04984645 0.98238047]\n", + " [ 0.21483919 -0.05646407 0.97501586]\n", + " [ 0.24873854 -0.06290176 0.966526 ]\n", + " [ 0.28163784 -0.06912562 0.95702757]\n", + " [ 0.25025565 -0.25126193 0.93500778]\n", + " [ 0.25900249 -0.21935742 0.9406381 ]\n", + " [ 0.26745195 -0.18644148 0.94536185]\n", + " [ 0.27555494 -0.15271099 0.94907788]\n", + " [ 0.28326262 -0.1183631 0.95171028]\n", + " [ 0.29052781 -0.08359769 0.95320775]\n", + " [ 0.05560944 -0.23234623 0.97104213]\n", + " [ 0.05560944 -0.23234623 0.97104213]\n", + " [ 0.2929781 -0.07126522 0.95345954]\n", + " [ 0.2929781 -0.07126522 0.95345954]\n", + " [ 0.07040804 -0.22318107 0.9722309 ]\n", + " [ 0.10519261 -0.22951872 0.96760306]\n", + " [ 0.13964974 -0.2353923 0.96181517]\n", + " [ 0.17358186 -0.24076783 0.95493465]\n", + " [ 0.20679635 -0.24561257 0.94705318]\n", + " [ 0.23910414 -0.2498928 0.93828716]\n", + " [ 0.07762997 -0.18986729 0.97873592]\n", + " [ 0.11274311 -0.19632827 0.97403501]\n", + " [ 0.14750905 -0.20238842 0.96813223]\n", + " [ 0.18172901 -0.20801418 0.96109556]\n", + " [ 0.21521066 -0.21317408 0.95301689]\n", + " [ 0.24776703 -0.2178367 0.94401201]\n", + " [ 0.08489984 -0.15559581 0.98416562]\n", + " [ 0.12027674 -0.1621692 0.97940526]\n", + " [ 0.15528707 -0.16840645 0.97340906]\n", + " [ 0.18973068 -0.17427363 0.96624581]\n", + " [ 0.22341527 -0.17973946 0.95800801]\n", + " [ 0.25615555 -0.1847736 0.94881139]\n", + " [ 0.09217017 -0.12055542 0.98841846]\n", + " [ 0.12774424 -0.1272303 0.98361266]\n", + " [ 0.16293319 -0.13363571 0.97754502]\n", + " [ 0.19753567 -0.13973676 0.97028516]\n", + " [ 0.23135927 -0.14550139 0.96192631]\n", + " [ 0.26421999 -0.15089915 0.95258451]\n", + " [ 0.09939424 -0.08494307 0.99141589]\n", + " [ 0.13509711 -0.09170801 0.98657915]\n", + " [ 0.17039756 -0.09827212 0.98046278]\n", + " [ 0.20509342 -0.10459916 0.97313704]\n", + " [ 0.23899224 -0.11065562 0.96469583]\n", + " [ 0.27191097 -0.11640999 0.95525554]\n", + " [ 0.10652625 -0.04896445 0.99310354]\n", + " [ 0.14228819 -0.05580724 0.98825079]\n", + " [ 0.17763204 -0.06251938 0.98210905]\n", + " [ 0.21235531 -0.06906311 0.97474895]\n", + " [ 0.24626571 -0.07540311 0.96626475]\n", + " [ 0.27918085 -0.08150616 0.95677312]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:fp_optics: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:cartToSphere: vec: [[-3.80525006e-02 -1.90765211e-01 -9.80897875e-01]\n", + " [-3.57448431e-02 -1.63294049e-01 -9.85929693e-01]\n", + " [-3.33618342e-02 -1.35146037e-01 -9.90263872e-01]\n", + " [-3.09114597e-02 -1.06426168e-01 -9.93840003e-01]\n", + " [-2.84020987e-02 -7.72416329e-02 -9.96607772e-01]\n", + " [-2.58426441e-02 -4.77030405e-02 -9.98527204e-01]\n", + " [-2.32425289e-02 -1.79245552e-02 -9.99569155e-01]\n", + " [-2.06116793e-02 1.19768125e-02 -9.99715817e-01]\n", + " [-3.80525006e-02 -1.90765211e-01 -9.80897875e-01]\n", + " [-6.69417015e-02 -1.88079408e-01 -9.79869861e-01]\n", + " [-9.56746723e-02 -1.85148100e-01 -9.78042197e-01]\n", + " [-1.24139697e-01 -1.81982241e-01 -9.75434160e-01]\n", + " [-1.52226324e-01 -1.78592970e-01 -9.72075973e-01]\n", + " [-1.79825225e-01 -1.74991038e-01 -9.68008794e-01]\n", + " [-2.06827465e-01 -1.71186169e-01 -9.63284846e-01]\n", + " [-2.33123225e-01 -1.67186496e-01 -9.57967764e-01]\n", + " [-2.06116793e-02 1.19768125e-02 -9.99715817e-01]\n", + " [-5.04997721e-02 1.46067360e-02 -9.98617252e-01]\n", + " [-8.02470218e-02 1.72172575e-02 -9.96626300e-01]\n", + " [-1.09736811e-01 1.97982962e-02 -9.93763483e-01]\n", + " [-1.38855646e-01 2.23401770e-02 -9.90060617e-01]\n", + " [-1.67493927e-01 2.48337058e-02 -9.85560283e-01]\n", + " [-1.95545918e-01 2.72701813e-02 -9.80315322e-01]\n", + " [-2.22908648e-01 2.96413229e-02 -9.74388591e-01]\n", + " [-2.33123225e-01 -1.67186496e-01 -9.57967764e-01]\n", + " [-2.32616304e-01 -1.40468954e-01 -9.62371097e-01]\n", + " [-2.31778052e-01 -1.13098789e-01 -9.66171620e-01]\n", + " [-2.30617770e-01 -8.51879344e-02 -9.69308238e-01]\n", + " [-2.29143338e-01 -5.68471870e-02 -9.71731304e-01]\n", + " [-2.27361986e-01 -2.81874514e-02 -9.73402278e-01]\n", + " [-2.25281062e-01 6.79575801e-04 -9.74293581e-01]\n", + " [-2.22908648e-01 2.96413229e-02 -9.74388591e-01]\n", + " [-3.71554392e-02 -1.78868813e-01 -9.83171105e-01]\n", + " [-3.42764810e-02 -1.44731677e-01 -9.88877072e-01]\n", + " [-3.12920572e-02 -1.09682086e-01 -9.93474029e-01]\n", + " [-2.82174155e-02 -7.39163543e-02 -9.96865161e-01]\n", + " [-2.50689243e-02 -3.76381258e-02 -9.98976937e-01]\n", + " [-2.18641547e-02 -1.05881117e-03 -9.99760390e-01]\n", + " [-5.06529576e-02 -1.89532366e-01 -9.80567061e-01]\n", + " [-8.59697313e-02 -1.86074232e-01 -9.78767381e-01]\n", + " [-1.20940695e-01 -1.82258354e-01 -9.75784423e-01]\n", + " [-1.55361970e-01 -1.78105185e-01 -9.71669286e-01]\n", + " [-1.89032207e-01 -1.73634448e-01 -9.66497751e-01]\n", + " [-2.21750573e-01 -1.68863405e-01 -9.60370675e-01]\n", + " [-3.36617797e-02 1.30228827e-02 -9.99348432e-01]\n", + " [-7.02126557e-02 1.62345331e-02 -9.97399931e-01]\n", + " [-1.06435796e-01 1.94071860e-02 -9.94130164e-01]\n", + " [-1.42120907e-01 2.25228520e-02 -9.89593032e-01]\n", + " [-1.77066220e-01 2.55646011e-02 -9.83866863e-01]\n", + " [-2.11078323e-01 2.85165910e-02 -9.77053092e-01]\n", + " [-2.32854610e-01 -1.55638692e-01 -9.59976733e-01]\n", + " [-2.32008163e-01 -1.22439494e-01 -9.64977089e-01]\n", + " [-2.30673649e-01 -8.83714211e-02 -9.69009886e-01]\n", + " [-2.28866133e-01 -5.36388383e-02 -9.71978996e-01]\n", + " [-2.26599007e-01 -1.84459932e-02 -9.73813450e-01]\n", + " [-2.23886083e-01 1.70011027e-02 -9.74467026e-01]\n", + " [-3.81436789e-02 -1.90663787e-01 -9.80914053e-01]\n", + " [-3.81436789e-02 -1.90663787e-01 -9.80914053e-01]\n", + " [-2.22824967e-01 2.95342599e-02 -9.74410982e-01]\n", + " [-2.22824967e-01 2.95342599e-02 -9.74410982e-01]\n", + " [-4.97138809e-02 -1.77734804e-01 -9.82821891e-01]\n", + " [-8.51707731e-02 -1.74285098e-01 -9.81004915e-01]\n", + " [-1.20282584e-01 -1.70501156e-01 -9.77988474e-01]\n", + " [-1.54845181e-01 -1.66403854e-01 -9.73823766e-01]\n", + " [-1.88657596e-01 -1.62013529e-01 -9.68586562e-01]\n", + " [-2.21520087e-01 -1.57348213e-01 -9.62377468e-01]\n", + " [-4.69586212e-02 -1.43591755e-01 -9.88522279e-01]\n", + " [-8.27683285e-02 -1.40170336e-01 -9.86661888e-01]\n", + " [-1.18234773e-01 -1.36481625e-01 -9.83561541e-01]\n", + " [-1.53152683e-01 -1.32547210e-01 -9.79272941e-01]\n", + " [-1.87321682e-01 -1.28388543e-01 -9.73872153e-01]\n", + " [-2.20544675e-01 -1.24025249e-01 -9.67459448e-01]\n", + " [-4.40744502e-02 -1.08538438e-01 -9.93114722e-01]\n", + " [-8.01707295e-02 -1.05152520e-01 -9.91219250e-01]\n", + " [-1.15925713e-01 -1.01567433e-01 -9.88051257e-01]\n", + " [-1.51132646e-01 -9.78047617e-02 -9.83663129e-01]\n", + " [-1.85591128e-01 -9.38860871e-02 -9.78131554e-01]\n", + " [-2.19105943e-01 -8.98315730e-02 -9.71556933e-01]\n", + " [-4.10759350e-02 -7.27712526e-02 -9.96502440e-01]\n", + " [-7.73907906e-02 -6.94285133e-02 -9.94580488e-01]\n", + " [-1.13367019e-01 -6.59562768e-02 -9.91361533e-01]\n", + " [-1.48796373e-01 -6.23755093e-02 -9.86898645e-01]\n", + " [-1.83478064e-01 -5.87070464e-02 -9.81269220e-01]\n", + " [-2.17218018e-01 -5.49705520e-02 -9.74574046e-01]\n", + " [-3.79787422e-02 -3.64938872e-02 -9.98611942e-01]\n", + " [-7.44422961e-02 -3.32019891e-02 -9.96672450e-01]\n", + " [-1.10570972e-01 -2.98516668e-02 -9.93419820e-01]\n", + " [-1.46155315e-01 -2.64628072e-02 -9.88907652e-01]\n", + " [-1.80994038e-01 -2.30548404e-02 -9.83213930e-01]\n", + " [-2.14893627e-01 -1.96461167e-02 -9.76439839e-01]\n", + " [-3.47998861e-02 8.22437445e-05 -9.99394297e-01]\n", + " [-7.13407238e-02 3.31602762e-03 -9.97446492e-01]\n", + " [-1.07551723e-01 6.53628472e-03 -9.94178004e-01]\n", + " [-1.43222707e-01 9.72450144e-03 -9.89642708e-01]\n", + " [-1.78151996e-01 1.28630599e-02 -9.83918903e-01]\n", + " [-2.12146208e-01 1.59354234e-02 -9.77108003e-01]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:cartToSphere: vec: [[-1.50966234e-01 2.96610503e-01 -9.42990671e-01]\n", + " [-1.27036190e-01 3.11158414e-01 -9.41829203e-01]\n", + " [-1.02531132e-01 3.25740695e-01 -9.39883167e-01]\n", + " [-7.75433060e-02 3.40285724e-01 -9.37119342e-01]\n", + " [-5.21659339e-02 3.54725241e-01 -9.33514177e-01]\n", + " [-2.64947458e-02 3.68993582e-01 -9.29054231e-01]\n", + " [-6.28670674e-04 3.83027484e-01 -9.23736732e-01]\n", + " [ 2.53304779e-02 3.96766478e-01 -9.17570013e-01]\n", + " [-1.50966234e-01 2.96610503e-01 -9.42990671e-01]\n", + " [-1.65409363e-01 3.19709938e-01 -9.32965861e-01]\n", + " [-1.79584019e-01 3.42518078e-01 -9.22188130e-01]\n", + " [-1.93434423e-01 3.64951253e-01 -9.10710550e-01]\n", + " [-2.06905311e-01 3.86930728e-01 -8.98596018e-01]\n", + " [-2.19941532e-01 4.08382867e-01 -8.85917127e-01]\n", + " [-2.32487531e-01 4.29239035e-01 -8.72756208e-01]\n", + " [-2.44487055e-01 4.49435318e-01 -8.59205432e-01]\n", + " [ 2.53304779e-02 3.96766478e-01 -9.17570013e-01]\n", + " [ 1.02647940e-02 4.20568102e-01 -9.07202902e-01]\n", + " [-4.75944184e-03 4.43916163e-01 -8.96055683e-01]\n", + " [-1.96828735e-02 4.66724028e-01 -8.84183955e-01]\n", + " [-3.44476584e-02 4.88912419e-01 -8.71652457e-01]\n", + " [-4.89976929e-02 5.10409568e-01 -8.58534390e-01]\n", + " [-6.32782502e-02 5.31150496e-01 -8.44911246e-01]\n", + " [-7.72351121e-02 5.51075637e-01 -8.30873263e-01]\n", + " [-2.44487055e-01 4.49435318e-01 -8.59205432e-01]\n", + " [-2.22222289e-01 4.64721504e-01 -8.57117949e-01]\n", + " [-1.99254499e-01 4.79870157e-01 -8.54413411e-01]\n", + " [-1.75680053e-01 4.94806755e-01 -8.51059807e-01]\n", + " [-1.51594828e-01 5.09460610e-01 -8.47035357e-01]\n", + " [-1.27094629e-01 5.23764753e-01 -8.42328581e-01]\n", + " [-1.02275720e-01 5.37656065e-01 -8.36938249e-01]\n", + " [-7.72351121e-02 5.51075637e-01 -8.30873263e-01]\n", + " [-1.40659252e-01 3.03024162e-01 -9.42545135e-01]\n", + " [-1.10932716e-01 3.20887231e-01 -9.40598383e-01]\n", + " [-8.04340348e-02 3.38730192e-01 -9.37439184e-01]\n", + " [-4.93343280e-02 3.56426033e-01 -9.33020154e-01]\n", + " [-1.78099088e-02 3.73853840e-01 -9.27316620e-01]\n", + " [ 1.39558505e-02 3.90898268e-01 -9.20328082e-01]\n", + " [-1.57212368e-01 3.06762124e-01 -9.38712560e-01]\n", + " [-1.74741052e-01 3.34888448e-01 -9.25913221e-01]\n", + " [-1.91811124e-01 3.62493428e-01 -9.12034543e-01]\n", + " [-2.08320643e-01 3.89430043e-01 -8.97188247e-01]\n", + " [-2.24168017e-01 4.15562722e-01 -8.81507983e-01]\n", + " [-2.39250682e-01 4.40767086e-01 -8.65149402e-01]\n", + " [ 1.86717391e-02 4.07147601e-01 -9.13171505e-01]\n", + " [ 2.27756612e-04 4.36025175e-01 -8.99934439e-01]\n", + " [-1.80946770e-02 4.64134718e-01 -8.85579780e-01]\n", + " [-3.61884198e-02 4.91327184e-01 -8.70222958e-01]\n", + " [-5.39501500e-02 5.17470361e-01 -8.53998716e-01]\n", + " [-7.12793863e-02 5.42446952e-01 -8.37060663e-01]\n", + " [-2.34831596e-01 4.56044229e-01 -8.58415856e-01]\n", + " [-2.07057461e-01 4.74696095e-01 -8.55447734e-01]\n", + " [-1.78323243e-01 4.93067003e-01 -8.51519672e-01]\n", + " [-1.48805649e-01 5.11025237e-01 -8.46587317e-01]\n", + " [-1.18681112e-01 5.28447526e-01 -8.40629529e-01]\n", + " [-8.81271632e-02 5.45219391e-01 -8.33648259e-01]\n", + " [-1.50935273e-01 2.96739500e-01 -9.42955043e-01]\n", + " [-1.50935273e-01 2.96739500e-01 -9.42955043e-01]\n", + " [-7.72738978e-02 5.50963930e-01 -8.30943736e-01]\n", + " [-7.72738978e-02 5.50963930e-01 -8.30943736e-01]\n", + " [-1.46962538e-01 3.13084656e-01 -9.38285677e-01]\n", + " [-1.64579100e-01 3.41306528e-01 -9.25431561e-01]\n", + " [-1.81757192e-01 3.68989253e-01 -9.11488483e-01]\n", + " [-1.98395068e-01 3.95985461e-01 -8.96568409e-01]\n", + " [-2.14391619e-01 4.22159556e-01 -8.80805054e-01]\n", + " [-2.29644786e-01 4.47387391e-01 -8.64353975e-01]\n", + " [-1.17302379e-01 3.31042660e-01 -9.36296379e-01]\n", + " [-1.35145802e-01 3.59501411e-01 -9.23306205e-01]\n", + " [-1.52607628e-01 3.87372195e-01 -9.09204979e-01]\n", + " [-1.69586320e-01 4.14506643e-01 -8.94105543e-01]\n", + " [-1.85981947e-01 4.40769226e-01 -8.78141905e-01]\n", + " [-2.01694101e-01 4.66036706e-01 -8.61469255e-01]\n", + " [-8.68584046e-02 3.48962017e-01 -9.33102957e-01]\n", + " [-1.04896208e-01 3.77606708e-01 -9.20005413e-01]\n", + " [-1.22609758e-01 4.05616976e-01 -9.05782378e-01]\n", + " [-1.39897058e-01 4.32843605e-01 -8.90547712e-01]\n", + " [-1.56658694e-01 4.59151408e-01 -8.74435840e-01]\n", + " [-1.72795624e-01 4.84418405e-01 -8.57601587e-01]\n", + " [-5.58014554e-02 3.66715178e-01 -9.28658266e-01]\n", + " [-7.40008379e-02 3.95493360e-01 -9.15482866e-01]\n", + " [-9.19345842e-02 4.23593248e-01 -9.01175229e-01]\n", + " [-1.09499565e-01 4.50865124e-01 -8.85850148e-01]\n", + " [-1.26596016e-01 4.77174458e-01 -8.69642447e-01]\n", + " [-1.43125478e-01 5.02400759e-01 -8.52706617e-01]\n", + " [-2.43074575e-02 3.84180618e-01 -9.22937918e-01]\n", + " [-4.26346501e-02 4.13038321e-01 -9.09715138e-01]\n", + " [-6.07564723e-02 4.41176970e-01 -8.95361118e-01]\n", + " [-7.85681828e-02 4.68446810e-01 -8.79991265e-01]\n", + " [-9.59688507e-02 4.94714220e-01 -8.63740598e-01]\n", + " [-1.12859674e-01 5.19860237e-01 -8.46763266e-01]\n", + " [ 7.44060056e-03 4.01242475e-01 -9.15941654e-01]\n", + " [-1.09792972e-02 4.30124647e-01 -9.02702743e-01]\n", + " [-2.92555900e-02 4.58250801e-01 -8.88341327e-01]\n", + " [-4.72817463e-02 4.85471628e-01 -8.72972929e-01]\n", + " [-6.49551156e-02 5.11654551e-01 -8.56732428e-01]\n", + " [-8.21757549e-02 5.36681912e-01 -8.39773583e-01]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:fp_optics: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:fp_optics: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:cartToSphere: vec: [[-9.56716761e-01 -1.90124045e-01 -2.20331314e-01]\n", + " [-9.52266075e-01 -1.81420444e-01 -2.45511599e-01]\n", + " [-9.47044537e-01 -1.72265176e-01 -2.70982202e-01]\n", + " [-9.41031124e-01 -1.62696516e-01 -2.96631535e-01]\n", + " [-9.34214747e-01 -1.52756196e-01 -3.22348183e-01]\n", + " [-9.26594644e-01 -1.42487102e-01 -3.48022687e-01]\n", + " [-9.18180577e-01 -1.31932260e-01 -3.73548265e-01]\n", + " [-9.08992892e-01 -1.21134584e-01 -3.98821181e-01]\n", + " [-9.56716761e-01 -1.90124045e-01 -2.20331314e-01]\n", + " [-9.63433586e-01 -1.66038441e-01 -2.10302072e-01]\n", + " [-9.69553056e-01 -1.41256453e-01 -2.00033712e-01]\n", + " [-9.75009390e-01 -1.15875952e-01 -1.89550663e-01]\n", + " [-9.79745952e-01 -8.99995313e-02 -1.78879721e-01]\n", + " [-9.83716015e-01 -6.37315442e-02 -1.68050862e-01]\n", + " [-9.86883076e-01 -3.71768690e-02 -1.57097663e-01]\n", + " [-9.89221034e-01 -1.04405299e-02 -1.46057323e-01]\n", + " [-9.08992892e-01 -1.21134584e-01 -3.98821181e-01]\n", + " [-9.15770595e-01 -9.54750502e-02 -3.90190635e-01]\n", + " [-9.21951580e-01 -6.92089499e-02 -3.81071391e-01]\n", + " [-9.27469282e-01 -4.24398567e-02 -3.71482961e-01]\n", + " [-9.32267171e-01 -1.52697644e-02 -3.61448137e-01]\n", + " [-9.36298326e-01 1.21986850e-02 -3.50993785e-01]\n", + " [-9.39525399e-01 3.98600172e-02 -3.40151737e-01]\n", + " [-9.41921095e-01 6.76051250e-02 -3.28959265e-01]\n", + " [-9.89221034e-01 -1.04405299e-02 -1.46057323e-01]\n", + " [-9.85159880e-01 2.76945720e-04 -1.71638965e-01]\n", + " [-9.80221379e-01 1.12124420e-02 -1.97586260e-01]\n", + " [-9.74382505e-01 2.23209539e-02 -2.23786748e-01]\n", + " [-9.67630070e-01 3.35586143e-02 -2.50131698e-01]\n", + " [-9.59961312e-01 4.48816889e-02 -2.76513858e-01]\n", + " [-9.51384788e-01 5.62456902e-02 -3.02825705e-01]\n", + " [-9.41921095e-01 6.76051250e-02 -3.28959265e-01]\n", + " [-9.54893336e-01 -1.86305414e-01 -2.31233670e-01]\n", + " [-9.48923657e-01 -1.75328715e-01 -2.62304661e-01]\n", + " [-9.41774042e-01 -1.63711219e-01 -2.93701021e-01]\n", + " [-9.33419920e-01 -1.51528503e-01 -3.25217414e-01]\n", + " [-9.23859907e-01 -1.38859411e-01 -3.56652404e-01]\n", + " [-9.13116371e-01 -1.25783107e-01 -3.87810654e-01]\n", + " [-9.59700430e-01 -1.79684732e-01 -2.16075178e-01]\n", + " [-9.67539968e-01 -1.49683791e-01 -2.03620171e-01]\n", + " [-9.74415898e-01 -1.18733389e-01 -1.90829872e-01]\n", + " [-9.80220090e-01 -8.70206818e-02 -1.77752572e-01]\n", + " [-9.84866552e-01 -5.47376508e-02 -1.64443499e-01]\n", + " [-9.88292395e-01 -2.20774418e-02 -1.50965986e-01]\n", + " [-9.12049506e-01 -1.10065691e-01 -3.95033216e-01]\n", + " [-9.19964241e-01 -7.81966219e-02 -3.84123788e-01]\n", + " [-9.26915357e-01 -4.55195336e-02 -3.72499520e-01]\n", + " [-9.32794642e-01 -1.22228015e-02 -3.60200999e-01]\n", + " [-9.37515704e-01 2.15043528e-02 -3.47277796e-01]\n", + " [-9.41013927e-01 5.54662112e-02 -3.33790786e-01]\n", + " [-9.87549762e-01 -5.88941399e-03 -1.57196638e-01]\n", + " [-9.81985738e-01 7.39739638e-03 -1.88810191e-01]\n", + " [-9.75079971e-01 2.09669807e-02 -2.20860670e-01]\n", + " [-9.66804090e-01 3.47381401e-02 -2.53146428e-01]\n", + " [-9.57153118e-01 4.86302604e-02 -2.85469801e-01]\n", + " [-9.46147798e-01 6.25610109e-02 -3.17632592e-01]\n", + " [-9.56726729e-01 -1.90014012e-01 -2.20382941e-01]\n", + " [-9.56726729e-01 -1.90014012e-01 -2.20382941e-01]\n", + " [-9.41948182e-01 6.74714452e-02 -3.28909148e-01]\n", + " [-9.41948182e-01 6.74714452e-02 -3.28909148e-01]\n", + " [-9.57884880e-01 -1.75914108e-01 -2.26959871e-01]\n", + " [-9.65770778e-01 -1.45739546e-01 -2.14585154e-01]\n", + " [-9.72686134e-01 -1.14621975e-01 -2.01850162e-01]\n", + " [-9.78522398e-01 -8.27506712e-02 -1.88802125e-01]\n", + " [-9.83193392e-01 -5.03182452e-02 -1.75495951e-01]\n", + " [-9.86636050e-01 -1.75180402e-02 -1.61995133e-01]\n", + " [-9.51954609e-01 -1.64773144e-01 -2.58132202e-01]\n", + " [-9.59942845e-01 -1.34144202e-01 -2.45998105e-01]\n", + " [-9.66945551e-01 -1.02594924e-01 -2.33432179e-01]\n", + " [-9.72853588e-01 -7.03175981e-02 -2.20479774e-01]\n", + " [-9.77580376e-01 -3.75048756e-02 -2.07195544e-01]\n", + " [-9.81062256e-01 -4.35006956e-03 -1.93643813e-01]\n", + " [-9.44827321e-01 -1.53011409e-01 -2.89635705e-01]\n", + " [-9.52873963e-01 -1.21989487e-01 -2.77758486e-01]\n", + " [-9.59927531e-01 -9.00731428e-02 -2.65378906e-01]\n", + " [-9.65878800e-01 -5.74545374e-02 -2.52541324e-01]\n", + " [-9.70640852e-01 -2.43249821e-02 -2.39300296e-01]\n", + " [-9.74149320e-01 9.12234992e-03 -2.25720813e-01]\n", + " [-9.36478030e-01 -1.40706552e-01 -3.21264011e-01]\n", + " [-9.44538377e-01 -1.09356180e-01 -3.09658650e-01]\n", + " [-9.51605728e-01 -7.71378377e-02 -2.97483264e-01]\n", + " [-9.57571011e-01 -4.42421379e-02 -2.84781305e-01]\n", + " [-9.62347087e-01 -1.08589073e-02 -2.71606642e-01]\n", + " [-9.65868974e-01 2.28183838e-02 -2.58024120e-01]\n", + " [-9.26905182e-01 -1.27938056e-01 -3.52815301e-01]\n", + " [-9.34934135e-01 -9.63239041e-02 -3.41496513e-01]\n", + " [-9.41977636e-01 -6.38676623e-02 -3.29543706e-01]\n", + " [-9.47926920e-01 -3.07583813e-02 -3.16999174e-01]\n", + " [-9.52694904e-01 2.81498047e-03 -3.03915276e-01]\n", + " [-9.56216378e-01 3.66581478e-02 -2.90355677e-01]\n", + " [-9.16131137e-01 -1.14785124e-01 -3.84093888e-01]\n", + " [-9.24083579e-01 -8.29712720e-02 -3.73075472e-01]\n", + " [-9.31065418e-01 -5.03405769e-02 -3.61362717e-01]\n", + " [-9.36968293e-01 -1.70813848e-02 -3.48996624e-01]\n", + " [-9.41705570e-01 1.66173078e-02 -3.36027506e-01]\n", + " [-9.45212374e-01 5.05601560e-02 -3.22517037e-01]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:fp_optics: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:cartToSphere: vec: [[-2.13566352e-01 -4.78197138e-01 8.51890198e-01]\n", + " [-1.88104182e-01 -4.71671137e-01 8.61477310e-01]\n", + " [-1.61980611e-01 -4.64633543e-01 8.70561860e-01]\n", + " [-1.35291879e-01 -4.57091785e-01 8.79069512e-01]\n", + " [-1.08135646e-01 -4.49057975e-01 8.86934956e-01]\n", + " [-8.06126948e-02 -4.40549512e-01 8.94101628e-01]\n", + " [-5.28277724e-02 -4.31589542e-01 9.00521901e-01]\n", + " [-2.48893640e-02 -4.22207114e-01 9.06157642e-01]\n", + " [-2.13566352e-01 -4.78197138e-01 8.51890198e-01]\n", + " [-2.02903602e-01 -5.02592607e-01 8.40375392e-01]\n", + " [-1.92014698e-01 -5.26467538e-01 8.28228403e-01]\n", + " [-1.80941871e-01 -5.49734014e-01 8.15507543e-01]\n", + " [-1.69727610e-01 -5.72309626e-01 8.02280643e-01]\n", + " [-1.58414256e-01 -5.94117293e-01 7.88625111e-01]\n", + " [-1.47043772e-01 -6.15084869e-01 7.74628125e-01]\n", + " [-1.35657788e-01 -6.35144780e-01 7.60386792e-01]\n", + " [-2.48893640e-02 -4.22207114e-01 9.06157642e-01]\n", + " [-1.39908648e-02 -4.47482139e-01 8.94183421e-01]\n", + " [-3.11181729e-03 -4.72274223e-01 8.81446184e-01]\n", + " [ 7.70470551e-03 -4.96491296e-01 8.68007506e-01]\n", + " [ 1.84166663e-02 -5.20049092e-01 8.53937801e-01]\n", + " [ 2.89832865e-02 -5.42871300e-01 8.39315627e-01]\n", + " [ 3.93648505e-02 -5.64888795e-01 8.24227552e-01]\n", + " [ 4.95221369e-02 -5.86038158e-01 8.08768715e-01]\n", + " [-1.35657788e-01 -6.35144780e-01 7.60386792e-01]\n", + " [-1.10383088e-01 -6.30139687e-01 7.68595829e-01]\n", + " [-8.45452540e-02 -6.24443272e-01 7.76480972e-01]\n", + " [-5.82455533e-02 -6.18064000e-01 7.83967057e-01]\n", + " [-3.15857618e-02 -6.11014477e-01 7.90989032e-01]\n", + " [-4.66852894e-03 -6.03311644e-01 7.97491859e-01]\n", + " [ 2.24023743e-02 -5.94977222e-01 8.03430295e-01]\n", + " [ 4.95221369e-02 -5.86038158e-01 8.08768715e-01]\n", + " [-2.02516066e-01 -4.75499521e-01 8.56088458e-01]\n", + " [-1.70852323e-01 -4.67157328e-01 8.67509951e-01]\n", + " [-1.38290765e-01 -4.58053442e-01 8.78101765e-01]\n", + " [-1.05010493e-01 -4.48208182e-01 8.87739952e-01]\n", + " [-7.11971468e-02 -4.37653630e-01 8.96320404e-01]\n", + " [-3.70451683e-02 -4.26434851e-01 9.03759356e-01]\n", + " [-2.08861870e-01 -4.88870705e-01 8.46984152e-01]\n", + " [-1.95635949e-01 -5.18432027e-01 8.32439072e-01]\n", + " [-1.82112412e-01 -5.47123502e-01 8.17001189e-01]\n", + " [-1.68369399e-01 -5.74791123e-01 8.00791428e-01]\n", + " [-1.54484831e-01 -6.01292944e-01 7.83952315e-01]\n", + " [-1.40535811e-01 -6.26498051e-01 7.66648471e-01]\n", + " [-2.02336391e-02 -4.33313056e-01 9.01016313e-01]\n", + " [-6.88390800e-03 -4.63977225e-01 8.85820380e-01]\n", + " [ 6.39390448e-03 -4.93823632e-01 8.69538578e-01]\n", + " [ 1.95219491e-02 -5.22693862e-01 8.52296908e-01]\n", + " [ 3.24251252e-02 -5.50447342e-01 8.34239975e-01]\n", + " [ 4.50305546e-02 -5.76959269e-01 8.15530656e-01]\n", + " [-1.24752336e-01 -6.32980592e-01 7.64050014e-01]\n", + " [-9.33835331e-02 -6.26379688e-01 7.73904389e-01]\n", + " [-6.12693740e-02 -6.18748432e-01 7.83196298e-01]\n", + " [-2.85970001e-02 -6.10108320e-01 7.91801774e-01]\n", + " [ 4.44458500e-03 -6.00490589e-01 7.99619471e-01]\n", + " [ 3.76638902e-02 -5.89937381e-01 8.06570095e-01]\n", + " [-2.13444486e-01 -4.78259907e-01 8.51885504e-01]\n", + " [-2.13444486e-01 -4.78259907e-01 8.51885504e-01]\n", + " [ 4.93951230e-02 -5.85998947e-01 8.08804893e-01]\n", + " [ 4.93951230e-02 -5.85998947e-01 8.08804893e-01]\n", + " [-1.97917017e-01 -4.86152433e-01 8.51166650e-01]\n", + " [-1.84658986e-01 -5.15833091e-01 8.36550824e-01]\n", + " [-1.71125044e-01 -5.44643609e-01 8.21023482e-01]\n", + " [-1.57393786e-01 -5.72429914e-01 8.04705654e-01]\n", + " [-1.43543478e-01 -5.99050383e-01 7.87739747e-01]\n", + " [-1.29651344e-01 -6.24374580e-01 7.70290149e-01]\n", + " [-1.66212418e-01 -4.77916467e-01 8.62536540e-01]\n", + " [-1.52879920e-01 -5.07899578e-01 8.47741558e-01]\n", + " [-1.39333509e-01 -5.37013614e-01 8.31987110e-01]\n", + " [-1.25652938e-01 -5.65104104e-01 8.15394807e-01]\n", + " [-1.11917292e-01 -5.92030327e-01 7.98106893e-01]\n", + " [-9.82040850e-02 -6.17663536e-01 7.80286943e-01]\n", + " [-1.33618592e-01 -4.68899221e-01 8.73086245e-01]\n", + " [-1.20236940e-01 -4.99131689e-01 8.58143715e-01]\n", + " [-1.06704616e-01 -5.28499433e-01 8.42200970e-01]\n", + " [-9.31020766e-02 -5.56847250e-01 8.25380605e-01]\n", + " [-7.95086890e-02 -5.84035092e-01 8.07825092e-01]\n", + " [-6.60018488e-02 -6.09935975e-01 7.89697324e-01]\n", + " [-1.00314921e-01 -4.59120503e-01 8.82692064e-01]\n", + " [-8.69105792e-02 -4.89548129e-01 8.67634243e-01]\n", + " [-7.34204363e-02 -5.19119382e-01 8.51542428e-01]\n", + " [-5.99249762e-02 -5.47678082e-01 8.34540422e-01]\n", + " [-4.65030863e-02 -5.75084476e-01 8.16771271e-01]\n", + " [-3.32314107e-02 -6.01212990e-01 7.98397529e-01]\n", + " [-6.64873304e-02 -4.48611747e-01 8.91250209e-01]\n", + " [-5.30875919e-02 -4.79178779e-01 8.76110384e-01]\n", + " [-3.96684725e-02 -5.08902431e-01 8.59909721e-01]\n", + " [-2.63097493e-02 -5.37625475e-01 8.42773188e-01]\n", + " [-1.30890618e-02 -5.65208037e-01 8.24844562e-01]\n", + " [-8.16858795e-05 -5.91525352e-01 8.06286396e-01]\n", + " [-3.23304813e-02 -4.37417424e-01 8.98677215e-01]\n", + " [-1.89628866e-02 -4.68066540e-01 8.83489741e-01]\n", + " [-5.64333242e-03 -4.97890308e-01 8.67221652e-01]\n", + " [ 7.54974722e-03 -5.26730574e-01 8.49998767e-01]\n", + " [ 2.05405335e-02 -5.54446994e-01 8.31965515e-01]\n", + " [ 3.32555047e-02 -5.80914898e-01 8.13284669e-01]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:cartToSphere: vec: [[ 0.2911621 -0.79030299 0.53911578]\n", + " [ 0.27980869 -0.77848278 0.56184664]\n", + " [ 0.26800321 -0.7657988 0.58457376]\n", + " [ 0.25578049 -0.75226748 0.60718199]\n", + " [ 0.24317846 -0.73791355 0.62956162]\n", + " [ 0.23023873 -0.72277082 0.6516076 ]\n", + " [ 0.2170068 -0.70688269 0.67321981]\n", + " [ 0.20353178 -0.69030202 0.69430392]\n", + " [ 0.2911621 -0.79030299 0.53911578]\n", + " [ 0.31622636 -0.77674632 0.54467058]\n", + " [ 0.34090603 -0.76254081 0.54983142]\n", + " [ 0.36510727 -0.74775001 0.55458687]\n", + " [ 0.38873956 -0.73244483 0.55893303]\n", + " [ 0.41171533 -0.7167032 0.56287389]\n", + " [ 0.43394906 -0.70061012 0.56642181]\n", + " [ 0.45535601 -0.68425804 0.56959796]\n", + " [ 0.20353178 -0.69030202 0.69430392]\n", + " [ 0.22951134 -0.67634 0.69992053]\n", + " [ 0.25520116 -0.66181459 0.70489277]\n", + " [ 0.28050289 -0.64679162 0.70920994]\n", + " [ 0.30532299 -0.63134342 0.71286981]\n", + " [ 0.32957333 -0.61554813 0.71587842]\n", + " [ 0.35317104 -0.59948934 0.71824978]\n", + " [ 0.37603751 -0.58325636 0.72000543]\n", + " [ 0.45535601 -0.68425804 0.56959796]\n", + " [ 0.44580034 -0.67174001 0.59163115]\n", + " [ 0.4355869 -0.65853906 0.61366959]\n", + " [ 0.42475416 -0.64467475 0.63559293]\n", + " [ 0.41334107 -0.63017459 0.65728925]\n", + " [ 0.4013881 -0.61507426 0.678654 ]\n", + " [ 0.38893824 -0.59941758 0.6995896 ]\n", + " [ 0.37603751 -0.58325636 0.72000543]\n", + " [ 0.28635628 -0.78521092 0.54903906]\n", + " [ 0.27213411 -0.77014106 0.57691055]\n", + " [ 0.25726706 -0.75378934 0.60466131]\n", + " [ 0.24182362 -0.73619777 0.63208716]\n", + " [ 0.22588043 -0.7174287 0.65899477]\n", + " [ 0.20952274 -0.69756593 0.68520216]\n", + " [ 0.30209369 -0.78443665 0.54166276]\n", + " [ 0.3325668 -0.76737715 0.54820766]\n", + " [ 0.36236866 -0.74940541 0.55414844]\n", + " [ 0.39133125 -0.73064892 0.55947476]\n", + " [ 0.41929325 -0.71125118 0.56419405]\n", + " [ 0.44609762 -0.69137173 0.56833269]\n", + " [ 0.21493454 -0.68434553 0.69675989]\n", + " [ 0.24659272 -0.6668468 0.70321218]\n", + " [ 0.2777174 -0.64856639 0.70868518]\n", + " [ 0.30813433 -0.6296348 0.71317127]\n", + " [ 0.33768126 -0.61019583 0.71668153]\n", + " [ 0.36620747 -0.5904057 0.71924488]\n", + " [ 0.4512009 -0.67894142 0.57918589]\n", + " [ 0.43904101 -0.66313828 0.60621004]\n", + " [ 0.42593148 -0.64632777 0.63312147]\n", + " [ 0.41194375 -0.62855721 0.65971067]\n", + " [ 0.39715246 -0.60989229 0.68578518]\n", + " [ 0.38163796 -0.59041702 0.7111682 ]\n", + " [ 0.29121034 -0.79021886 0.53921303]\n", + " [ 0.29121034 -0.79021886 0.53921303]\n", + " [ 0.37600548 -0.58336812 0.71993161]\n", + " [ 0.37600548 -0.58336812 0.71993161]\n", + " [ 0.29728294 -0.77940647 0.55149651]\n", + " [ 0.32788325 -0.76228524 0.5580446 ]\n", + " [ 0.35781865 -0.74425399 0.56396083]\n", + " [ 0.38692107 -0.72544062 0.56923457]\n", + " [ 0.41502974 -0.70598884 0.57387287]\n", + " [ 0.44198887 -0.68605805 0.57790155]\n", + " [ 0.28316994 -0.76428105 0.57938698]\n", + " [ 0.31409321 -0.74700865 0.58593816]\n", + " [ 0.34437044 -0.7288366 0.59178224]\n", + " [ 0.37383287 -0.70989402 0.59690826]\n", + " [ 0.40232075 -0.69032526 0.60132275]\n", + " [ 0.42968122 -0.67028939 0.60505056]\n", + " [ 0.26839176 -0.74788493 0.60715237]\n", + " [ 0.29958205 -0.7304973 0.61369723]\n", + " [ 0.33014723 -0.71222661 0.61946434]\n", + " [ 0.35991733 -0.69320305 0.62444299]\n", + " [ 0.38873274 -0.6735715 0.62864003]\n", + " [ 0.41644254 -0.65349069 0.63208032]\n", + " [ 0.25301633 -0.73026047 0.63458836]\n", + " [ 0.28441631 -0.71279468 0.64111708]\n", + " [ 0.31521486 -0.69446877 0.64680191]\n", + " [ 0.34524056 -0.67541365 0.65163284]\n", + " [ 0.37433331 -0.65577437 0.65561768]\n", + " [ 0.40234309 -0.63570923 0.65878207]\n", + " [ 0.23711965 -0.71147034 0.66150149]\n", + " [ 0.26867035 -0.69396442 0.66800421]\n", + " [ 0.2996464 -0.67562764 0.67360176]\n", + " [ 0.32987495 -0.65659108 0.67828509]\n", + " [ 0.35919505 -0.63699961 0.68206335]\n", + " [ 0.38745678 -0.61701078 0.68496346]\n", + " [ 0.2207865 -0.6915986 0.68770975]\n", + " [ 0.25242746 -0.67409117 0.69417683]\n", + " [ 0.28352366 -0.65578819 0.69968292]\n", + " [ 0.31390114 -0.63682042 0.70422001]\n", + " [ 0.34339797 -0.61733203 0.7077987 ]\n", + " [ 0.37186374 -0.5974796 0.71044739]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:fp_optics: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:fp_optics: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:cartToSphere: vec: [[-0.56394279 0.79493433 -0.22371399]\n", + " [-0.55437896 0.79382414 -0.25001439]\n", + " [-0.54417761 0.79204987 -0.27663647]\n", + " [-0.53335494 0.78958379 -0.30346326]\n", + " [-0.52193282 0.78640628 -0.33038054]\n", + " [-0.50993957 0.78250625 -0.35727526]\n", + " [-0.49741053 0.77788161 -0.38403511]\n", + " [-0.48438816 0.77253968 -0.41054908]\n", + " [-0.56394279 0.79493433 -0.22371399]\n", + " [-0.5417583 0.81218504 -0.21645648]\n", + " [-0.51915855 0.82869614 -0.20913419]\n", + " [-0.49623736 0.84441276 -0.20178102]\n", + " [-0.47309327 0.85928915 -0.19443485]\n", + " [-0.44982943 0.87328851 -0.18713807]\n", + " [-0.42655381 0.88638258 -0.17993822]\n", + " [-0.40337979 0.8985512 -0.17288863]\n", + " [-0.48438816 0.77253968 -0.41054908]\n", + " [-0.4614871 0.7903848 -0.40289144]\n", + " [-0.438246 0.80746188 -0.39489969]\n", + " [-0.41476269 0.82371362 -0.38661063]\n", + " [-0.39113777 0.8390937 -0.37806483]\n", + " [-0.36747379 0.8535666 -0.36930622]\n", + " [-0.34387547 0.86710691 -0.36038211]\n", + " [-0.32045092 0.8796982 -0.35134354]\n", + " [-0.40337979 0.8985512 -0.17288863]\n", + " [-0.39260314 0.89820583 -0.19770953]\n", + " [-0.38142867 0.89710904 -0.22295189]\n", + " [-0.36987502 0.89523406 -0.24849233]\n", + " [-0.35796685 0.89256201 -0.27421304]\n", + " [-0.34573483 0.88908209 -0.30000078]\n", + " [-0.33321551 0.88479197 -0.32574622]\n", + " [-0.32045092 0.8796982 -0.35134354]\n", + " [-0.55977679 0.79459025 -0.23510906]\n", + " [-0.5476241 0.79278752 -0.26757391]\n", + " [-0.53452949 0.78995876 -0.30040535]\n", + " [-0.52053082 0.7860645 -0.33339206]\n", + " [-0.50568032 0.78108434 -0.3663259 ]\n", + " [-0.49004601 0.77501836 -0.39900057]\n", + " [-0.55429522 0.80254029 -0.2206488 ]\n", + " [-0.52681427 0.82319337 -0.21170592]\n", + " [-0.4988023 0.84267993 -0.2026988 ]\n", + " [-0.47043878 0.86091195 -0.19369553]\n", + " [-0.44191364 0.87782164 -0.18477419]\n", + " [-0.41342786 0.89336035 -0.1760247 ]\n", + " [-0.47449646 0.78043001 -0.40716348]\n", + " [-0.44618806 0.8017922 -0.39754935]\n", + " [-0.41746568 0.82194261 -0.38746968]\n", + " [-0.38851341 0.84079138 -0.37699761]\n", + " [-0.35952008 0.85827304 -0.36621402]\n", + " [-0.33067981 0.87434461 -0.35520751]\n", + " [-0.39881019 0.89845085 -0.183675 ]\n", + " [-0.38533332 0.89752573 -0.21439633]\n", + " [-0.3712766 0.89544451 -0.2456274 ]\n", + " [-0.35668287 0.89216913 -0.27714901]\n", + " [-0.34160861 0.88767975 -0.30875268]\n", + " [-0.32612341 0.88197577 -0.34023854]\n", + " [-0.56383613 0.79499181 -0.22377857]\n", + " [-0.56383613 0.79499181 -0.22377857]\n", + " [-0.32057462 0.87967554 -0.35128742]\n", + " [-0.32057462 0.87967554 -0.35128742]\n", + " [-0.55019877 0.80216807 -0.23196487]\n", + " [-0.52261439 0.82289839 -0.22296286]\n", + " [-0.49450203 0.84245328 -0.2138696 ]\n", + " [-0.46604159 0.86074474 -0.20475285]\n", + " [-0.43742299 0.87770526 -0.19569006]\n", + " [-0.40884678 0.89328671 -0.18677035]\n", + " [-0.53795291 0.8004393 -0.26439286]\n", + " [-0.51011147 0.82136525 -0.255236 ]\n", + " [-0.4817538 0.84109441 -0.24591353]\n", + " [-0.45306117 0.85953866 -0.23649285]\n", + " [-0.42422363 0.87663137 -0.22705013]\n", + " [-0.39544047 0.89232592 -0.21767241]\n", + " [-0.52478317 0.79767081 -0.29719339]\n", + " [-0.49673879 0.81875773 -0.2878999 ]\n", + " [-0.46819456 0.83863259 -0.27836889]\n", + " [-0.43933317 0.85720696 -0.26866817]\n", + " [-0.4103448 0.87441498 -0.25887367]\n", + " [-0.38142752 0.89021154 -0.24907119]\n", + " [-0.51072793 0.79382269 -0.33015529]\n", + " [-0.48253643 0.81503513 -0.32074341]\n", + " [-0.45386594 0.83502688 -0.31102382]\n", + " [-0.4249003 0.85370913 -0.30106553]\n", + " [-0.39582969 0.8710165 -0.2909452 ]\n", + " [-0.36685092 0.88690512 -0.28074848]\n", + " [-0.49584005 0.78887411 -0.36307062]\n", + " [-0.46755898 0.81017559 -0.35355921]\n", + " [-0.43882402 0.83025498 -0.34367156]\n", + " [-0.40981958 0.84902303 -0.33347835]\n", + " [-0.38073553 0.86641452 -0.32305777]\n", + " [-0.35176746 0.88238637 -0.31249631]\n", + " [-0.48018808 0.78282473 -0.39573331]\n", + " [-0.45187633 0.80417779 -0.38614229]\n", + " [-0.42313958 0.82431501 -0.37610857]\n", + " [-0.39416213 0.84314668 -0.36570466]\n", + " [-0.36513316 0.86060744 -0.35501071]\n", + " [-0.33624711 0.8766544 -0.34411471]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:fp_optics: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:cartToSphere: vec: [[ 0.57642688 -0.20730175 0.79041637]\n", + " [ 0.5982227 -0.20161721 0.77555148]\n", + " [ 0.62003275 -0.19581376 0.75974757]\n", + " [ 0.6417358 -0.18989229 0.74304514]\n", + " [ 0.66321906 -0.18385863 0.72549051]\n", + " [ 0.68437758 -0.17772339 0.70713628]\n", + " [ 0.70511379 -0.17150157 0.68804198]\n", + " [ 0.72533741 -0.16521214 0.66827433]\n", + " [ 0.57642688 -0.20730175 0.79041637]\n", + " [ 0.57539567 -0.23339495 0.78386646]\n", + " [ 0.57403958 -0.25986059 0.77649922]\n", + " [ 0.57232558 -0.28657431 0.76832193]\n", + " [ 0.57022941 -0.31341638 0.75934748]\n", + " [ 0.56773538 -0.34027094 0.74959471]\n", + " [ 0.56483605 -0.3670254 0.73908903]\n", + " [ 0.56153179 -0.39357034 0.72786293]\n", + " [ 0.72533741 -0.16521214 0.66827433]\n", + " [ 0.72587974 -0.19199833 0.66048107]\n", + " [ 0.72585266 -0.21918004 0.65199542]\n", + " [ 0.72522337 -0.24663967 0.64282185]\n", + " [ 0.72396656 -0.27426217 0.63297131]\n", + " [ 0.72206463 -0.30193323 0.62246205]\n", + " [ 0.71950805 -0.32953864 0.61132025]\n", + " [ 0.71629578 -0.35696464 0.59958035]\n", + " [ 0.56153179 -0.39357034 0.72786293]\n", + " [ 0.58425891 -0.38948848 0.71199736]\n", + " [ 0.6069638 -0.38501643 0.69523902]\n", + " [ 0.6295306 -0.38015443 0.67762366]\n", + " [ 0.65184958 -0.37490691 0.65919415]\n", + " [ 0.6738159 -0.36928282 0.64000182]\n", + " [ 0.69532949 -0.36329587 0.62010726]\n", + " [ 0.71629578 -0.35696464 0.59958035]\n", + " [ 0.58591747 -0.20492656 0.78403177]\n", + " [ 0.61265696 -0.19788066 0.76517625]\n", + " [ 0.63929635 -0.1906563 0.7449499 ]\n", + " [ 0.66562453 -0.18326213 0.72343554]\n", + " [ 0.69144822 -0.17571765 0.7007301 ]\n", + " [ 0.71659082 -0.16805216 0.67694613]\n", + " [ 0.57608952 -0.21860565 0.78761185]\n", + " [ 0.57461289 -0.25085299 0.77903325]\n", + " [ 0.57261428 -0.28353564 0.76923366]\n", + " [ 0.57004538 -0.31643131 0.75823445]\n", + " [ 0.56687728 -0.34932662 0.74607041]\n", + " [ 0.56309954 -0.38201561 0.73279123]\n", + " [ 0.725573 -0.17685635 0.66503056]\n", + " [ 0.72585859 -0.20996677 0.65501395]\n", + " [ 0.72525561 -0.24355399 0.64396098]\n", + " [ 0.72371438 -0.27740526 0.63188909]\n", + " [ 0.72120252 -0.31131008 0.61883193]\n", + " [ 0.71770603 -0.34505831 0.60484115]\n", + " [ 0.57144791 -0.39174781 0.72109703]\n", + " [ 0.5993024 -0.38648197 0.70104801]\n", + " [ 0.6270076 -0.38063001 0.67969277]\n", + " [ 0.65435904 -0.37419835 0.65710718]\n", + " [ 0.68116371 -0.36720348 0.63338583]\n", + " [ 0.7072396 -0.35967269 0.60864416]\n", + " [ 0.57649823 -0.20737096 0.79034617]\n", + " [ 0.57649823 -0.20737096 0.79034617]\n", + " [ 0.71623721 -0.3568935 0.59969265]\n", + " [ 0.71623721 -0.3568935 0.59969265]\n", + " [ 0.58556124 -0.21620663 0.78126354]\n", + " [ 0.5842134 -0.24858161 0.77259426]\n", + " [ 0.58231441 -0.28139109 0.7627116 ]\n", + " [ 0.57981638 -0.31441353 0.75163628]\n", + " [ 0.57669082 -0.34743587 0.73940247]\n", + " [ 0.57292759 -0.38025193 0.72605953]\n", + " [ 0.61244277 -0.20926963 0.76231232]\n", + " [ 0.61144411 -0.24195211 0.75338919]\n", + " [ 0.60981643 -0.27506976 0.7432769 ]\n", + " [ 0.60751284 -0.30840325 0.73199425]\n", + " [ 0.60450557 -0.34174029 0.71957389]\n", + " [ 0.60078501 -0.37487377 0.70606447]\n", + " [ 0.63921491 -0.20212523 0.74199036]\n", + " [ 0.63854411 -0.23503588 0.73281618]\n", + " [ 0.63717356 -0.26838648 0.72248083]\n", + " [ 0.63505674 -0.30195985 0.71100154]\n", + " [ 0.63216582 -0.33554418 0.69840997]\n", + " [ 0.62849096 -0.36893123 0.6847546 ]\n", + " [ 0.66566718 -0.19478252 0.72037974]\n", + " [ 0.66530469 -0.22784306 0.71095514]\n", + " [ 0.66417862 -0.26135179 0.70040131]\n", + " [ 0.66224208 -0.29509336 0.68873459]\n", + " [ 0.65946638 -0.32885632 0.67598639]\n", + " [ 0.65584083 -0.36243137 0.66220565]\n", + " [ 0.69160654 -0.18726149 0.6975769 ]\n", + " [ 0.6915332 -0.22039472 0.68790116]\n", + " [ 0.69063901 -0.25398701 0.67713245]\n", + " [ 0.68887607 -0.28782444 0.66528705]\n", + " [ 0.68621425 -0.32169593 0.65239692]\n", + " [ 0.68264156 -0.35539141 0.6385119 ]\n", + " [ 0.71685619 -0.17959192 0.67369425]\n", + " [ 0.71705191 -0.21272162 0.66376658]\n", + " [ 0.7163757 -0.2463232 0.6527869 ]\n", + " [ 0.71477831 -0.28018371 0.64077223]\n", + " [ 0.71222796 -0.31409249 0.62775572]\n", + " [ 0.70871117 -0.34783928 0.61378849]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:fp_optics: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:cartToSphere: vec: [[ 4.35265991e-01 -4.31772876e-03 -9.00291549e-01]\n", + " [ 4.52389450e-01 -2.46660383e-02 -8.91479317e-01]\n", + " [ 4.69486591e-01 -4.53986929e-02 -8.81771682e-01]\n", + " [ 4.86469629e-01 -6.64320899e-02 -8.71168226e-01]\n", + " [ 5.03255495e-01 -8.76830124e-02 -8.59677612e-01]\n", + " [ 5.19764952e-01 -1.09067338e-01 -8.47318541e-01]\n", + " [ 5.35922478e-01 -1.30499598e-01 -8.34120466e-01]\n", + " [ 5.51656838e-01 -1.51893387e-01 -8.20123852e-01]\n", + " [ 4.35265991e-01 -4.31772876e-03 -9.00291549e-01]\n", + " [ 4.54142465e-01 1.55859071e-02 -8.90792737e-01]\n", + " [ 4.72638886e-01 3.53415886e-02 -8.80547248e-01]\n", + " [ 4.90690112e-01 5.48702866e-02 -8.69604775e-01]\n", + " [ 5.08237507e-01 7.40922142e-02 -8.58023881e-01]\n", + " [ 5.25229151e-01 9.29263543e-02 -8.45871758e-01]\n", + " [ 5.41619811e-01 1.11289649e-01 -8.33224216e-01]\n", + " [ 5.57370657e-01 1.29096137e-01 -8.20165921e-01]\n", + " [ 5.51656838e-01 -1.51893387e-01 -8.20123852e-01]\n", + " [ 5.71085462e-01 -1.31195647e-01 -8.10338878e-01]\n", + " [ 5.89940376e-01 -1.10448433e-01 -7.99857173e-01]\n", + " [ 6.08154318e-01 -8.97354694e-02 -7.88730544e-01]\n", + " [ 6.25668651e-01 -6.91397150e-02 -7.77018944e-01]\n", + " [ 6.42433446e-01 -4.87428772e-02 -7.64789775e-01]\n", + " [ 6.58406871e-01 -2.86257348e-02 -7.52117650e-01]\n", + " [ 6.73554022e-01 -8.86929903e-03 -7.39084782e-01]\n", + " [ 5.57370657e-01 1.29096137e-01 -8.20165921e-01]\n", + " [ 5.74840109e-01 1.10678508e-01 -8.10746025e-01]\n", + " [ 5.92161961e-01 9.16864961e-02 -8.00585910e-01]\n", + " [ 6.09244713e-01 7.22088629e-02 -7.89687761e-01]\n", + " [ 6.26002704e-01 5.23313668e-02 -7.78063007e-01]\n", + " [ 6.42355760e-01 3.21376702e-02 -7.65732491e-01]\n", + " [ 6.58229178e-01 1.17102067e-02 -7.52726524e-01]\n", + " [ 6.73554022e-01 -8.86929903e-03 -7.39084782e-01]\n", + " [ 4.42794634e-01 -1.30684890e-02 -8.96527817e-01]\n", + " [ 4.63775472e-01 -3.82758180e-02 -8.85125569e-01]\n", + " [ 4.84628846e-01 -6.39773769e-02 -8.72377084e-01]\n", + " [ 5.05199939e-01 -9.00198975e-02 -8.58294495e-01]\n", + " [ 5.25342860e-01 -1.16248468e-01 -8.42912317e-01]\n", + " [ 5.44920306e-01 -1.42505309e-01 -8.26289354e-01]\n", + " [ 4.43597254e-01 4.30494314e-03 -8.96215903e-01]\n", + " [ 4.66485798e-01 2.86101301e-02 -8.84065869e-01]\n", + " [ 4.88737893e-01 5.26147538e-02 -8.70842672e-01]\n", + " [ 5.10242865e-01 7.61722501e-02 -8.56650458e-01]\n", + " [ 5.30905130e-01 9.91333794e-02 -8.41612925e-01]\n", + " [ 5.50644093e-01 1.21344066e-01 -8.25873295e-01]\n", + " [ 5.60140677e-01 -1.42807566e-01 -8.15995356e-01]\n", + " [ 5.83575552e-01 -1.17396755e-01 -8.03528205e-01]\n", + " [ 6.06081045e-01 -9.19950088e-02 -7.90064988e-01]\n", + " [ 6.27545592e-01 -6.67554138e-02 -7.75712733e-01]\n", + " [ 6.47877199e-01 -4.18284229e-02 -7.60595502e-01]\n", + " [ 6.67001799e-01 -1.73627578e-02 -7.44853767e-01]\n", + " [ 5.64946797e-01 1.21082007e-01 -8.16194991e-01]\n", + " [ 5.86270277e-01 9.81101218e-02 -8.04152701e-01]\n", + " [ 6.07280532e-01 7.43641824e-02 -7.90999573e-01]\n", + " [ 6.27817462e-01 5.00032768e-02 -7.76752797e-01]\n", + " [ 6.47733467e-01 2.51815215e-02 -7.61450751e-01]\n", + " [ 6.66893393e-01 5.03717484e-05 -7.45153139e-01]\n", + " [ 4.35389609e-01 -4.31833283e-03 -9.00231770e-01]\n", + " [ 4.35389609e-01 -4.31833283e-03 -9.00231770e-01]\n", + " [ 6.73452267e-01 -8.86560738e-03 -7.39177546e-01]\n", + " [ 6.73452267e-01 -8.86560738e-03 -7.39177546e-01]\n", + " [ 4.51033066e-01 -4.40993413e-03 -8.92496345e-01]\n", + " [ 4.73994384e-01 2.00077991e-02 -8.80300524e-01]\n", + " [ 4.96297485e-01 4.41433831e-02 -8.67029508e-01]\n", + " [ 5.17831338e-01 6.78503978e-02 -8.52787799e-01]\n", + " [ 5.38500255e-01 9.09802709e-02 -8.37699270e-01]\n", + " [ 5.58223768e-01 1.13379952e-01 -8.21907058e-01]\n", + " [ 4.72091087e-01 -2.95280676e-02 -8.81055105e-01]\n", + " [ 4.95231866e-01 -4.82240918e-03 -8.68747457e-01]\n", + " [ 5.17655264e-01 1.96522134e-02 -8.55363559e-01]\n", + " [ 5.39249332e-01 4.37492371e-02 -8.41009014e-01]\n", + " [ 5.59918297e-01 6.73214935e-02 -8.25808281e-01]\n", + " [ 5.79582301e-01 9.02186935e-02 -8.09904281e-01]\n", + " [ 4.93006546e-01 -5.51565209e-02 -8.68275477e-01]\n", + " [ 5.16286343e-01 -3.02087051e-02 -8.55883080e-01]\n", + " [ 5.38793146e-01 -5.44150793e-03 -8.42420522e-01]\n", + " [ 5.60414379e-01 1.89975736e-02 -8.27994454e-01]\n", + " [ 5.81054589e-01 4.29618496e-02 -8.12729871e-01]\n", + " [ 6.00634946e-01 6.63030591e-02 -7.96769456e-01]\n", + " [ 5.13624156e-01 -8.11424691e-02 -8.54169846e-01]\n", + " [ 5.37001174e-01 -5.59990997e-02 -8.41720761e-01]\n", + " [ 5.59553274e-01 -3.09857764e-02 -8.28214957e-01]\n", + " [ 5.81167666e-01 -6.25152167e-03 -8.13759831e-01]\n", + " [ 6.01749639e-01 1.80565249e-02 -7.98480641e-01]\n", + " [ 6.21221740e-01 4.17910815e-02 -7.82519684e-01]\n", + " [ 5.33797510e-01 -1.07331559e-01 -8.38773005e-01]\n", + " [ 5.57228743e-01 -8.20407340e-02 -8.26296222e-01]\n", + " [ 5.79787310e-01 -5.68288256e-02 -8.12783587e-01]\n", + " [ 6.01360667e-01 -3.18466589e-02 -7.98342745e-01]\n", + " [ 6.21855169e-01 -7.24254008e-03 -7.83098777e-01]\n", + " [ 6.41194896e-01 1.68361804e-02 -7.67193358e-01]\n", + " [ 5.53388891e-01 -1.33566529e-01 -8.22143977e-01]\n", + " [ 5.76830572e-01 -1.08178029e-01 -8.09669071e-01]\n", + " [ 5.99356709e-01 -8.28168405e-02 -7.96186477e-01]\n", + " [ 6.20855421e-01 -5.76355191e-02 -7.81803487e-01]\n", + " [ 6.41234286e-01 -3.27839352e-02 -7.66644510e-01]\n", + " [ 6.60418810e-01 -8.41034678e-03 -7.50850358e-01]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:fp_optics: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:cartToSphere: vec: [[-0.20537461 0.23530448 -0.9499753 ]\n", + " [-0.20962685 0.20917523 -0.95514518]\n", + " [-0.21365754 0.1823215 -0.95974441]\n", + " [-0.21745673 0.15485389 -0.96370786]\n", + " [-0.22101322 0.12688176 -0.96698199]\n", + " [-0.22431504 0.09851451 -0.96952445]\n", + " [-0.22735012 0.06986247 -0.97130384]\n", + " [-0.23010681 0.0410371 -0.97229976]\n", + " [-0.20537461 0.23530448 -0.9499753 ]\n", + " [-0.17900291 0.23490096 -0.95539494]\n", + " [-0.15193791 0.23415918 -0.96025223]\n", + " [-0.12428987 0.23308908 -0.96447992]\n", + " [-0.09616796 0.23169903 -0.96802236]\n", + " [-0.0676816 0.22999655 -0.9708351 ]\n", + " [-0.03894116 0.22798906 -0.97288467]\n", + " [-0.01005825 0.22568455 -0.97414851]\n", + " [-0.23010681 0.0410371 -0.97229976]\n", + " [-0.20296507 0.03878321 -0.97841762]\n", + " [-0.17510425 0.03644837 -0.983875 ]\n", + " [-0.1466269 0.03404052 -0.98860599]\n", + " [-0.11763777 0.03156789 -0.9925547 ]\n", + " [-0.08824527 0.0290392 -0.9956754 ]\n", + " [-0.0585618 0.02646368 -0.99793296]\n", + " [-0.02870315 0.02385109 -0.99930338]\n", + " [-0.01005825 0.22568455 -0.97414851]\n", + " [-0.01266719 0.19843794 -0.9800316 ]\n", + " [-0.01531218 0.170486 -0.98524112]\n", + " [-0.01798258 0.14193159 -0.98971312]\n", + " [-0.02066772 0.11287998 -0.99339366]\n", + " [-0.02335679 0.08344019 -0.99623902]\n", + " [-0.02603888 0.05372516 -0.9982162 ]\n", + " [-0.02870315 0.02385109 -0.99930338]\n", + " [-0.20716604 0.22400706 -0.95231459]\n", + " [-0.21222889 0.1914805 -0.95827664]\n", + " [-0.21694941 0.15797586 -0.96331541]\n", + " [-0.22130748 0.12369488 -0.96732754]\n", + " [-0.22528116 0.08883909 -0.97023503]\n", + " [-0.22884834 0.05361205 -0.97198466]\n", + " [-0.19398339 0.23508243 -0.95242149]\n", + " [-0.16118091 0.23435793 -0.95869551]\n", + " [-0.12744678 0.2331356 -0.96405659]\n", + " [-0.09298237 0.23143149 -0.96839751]\n", + " [-0.05798915 0.2292595 -0.97163642]\n", + " [-0.02267088 0.22663351 -0.97371622]\n", + " [-0.2183589 0.04016399 -0.97504166]\n", + " [-0.18459743 0.03734719 -0.98210436]\n", + " [-0.14985764 0.03441649 -0.98810839]\n", + " [-0.11433136 0.03138689 -0.99294673]\n", + " [-0.07821822 0.02827444 -0.99653523]\n", + " [-0.04172657 0.02509636 -0.99881383]\n", + " [-0.01128992 0.21390663 -0.97678887]\n", + " [-0.014514 0.18002605 -0.98355476]\n", + " [-0.01778147 0.14518805 -0.98924428]\n", + " [-0.02107269 0.10958535 -0.99375399]\n", + " [-0.02436777 0.07341865 -0.99700347]\n", + " [-0.02764665 0.03689727 -0.99893656]\n", + " [-0.20530064 0.2352157 -0.95001327]\n", + " [-0.20530064 0.2352157 -0.95001327]\n", + " [-0.02879635 0.02396237 -0.99929804]\n", + " [-0.02879635 0.02396237 -0.99929804]\n", + " [-0.19580526 0.22382058 -0.95475895]\n", + " [-0.16287879 0.2229628 -0.96112335]\n", + " [-0.12901852 0.22163225 -0.96655748]\n", + " [-0.09442474 0.21984396 -0.97095448]\n", + " [-0.0592985 0.2176111 -0.97423257]\n", + " [-0.02384372 0.21494707 -0.97633459]\n", + " [-0.20076207 0.19114565 -0.96081108]\n", + " [-0.16753227 0.1899159 -0.9674011 ]\n", + " [-0.13336123 0.18828279 -0.97301818]\n", + " [-0.09844641 0.18625912 -0.97755606]\n", + " [-0.06298798 0.18385659 -0.98093286]\n", + " [-0.02719075 0.18108794 -0.98309095]\n", + " [-0.20540146 0.15749494 -0.96592214]\n", + " [-0.17193773 0.15589804 -0.97269379]\n", + " [-0.13752382 0.15396536 -0.97845893]\n", + " [-0.10235496 0.15170856 -0.98311138]\n", + " [-0.06663094 0.14913902 -0.98656874]\n", + " [-0.03055773 0.14626962 -0.98877269]\n", + " [-0.20970252 0.123069 -0.96998911]\n", + " [-0.17607246 0.12110677 -0.97689899]\n", + " [-0.14148282 0.11887522 -0.98277734]\n", + " [-0.10612723 0.11638606 -0.98751774]\n", + " [-0.07020537 0.11365135 -0.99103712]\n", + " [-0.03392434 0.11068482 -0.9932764 ]\n", + " [-0.21364262 0.08806884 -0.97293407]\n", + " [-0.17991251 0.08574212 -0.97993866]\n", + " [-0.14521396 0.08321211 -0.98589485]\n", + " [-0.10973952 0.08049153 -0.99069589]\n", + " [-0.07368887 0.07759387 -0.99425809]\n", + " [-0.03726999 0.07453416 -0.99652175]\n", + " [-0.21719917 0.05269817 -0.97470376]\n", + " [-0.18343442 0.05000866 -0.98175911]\n", + " [-0.14869364 0.04718188 -0.98775709]\n", + " [-0.11316877 0.04423221 -0.99259072]\n", + " [-0.07705946 0.04117498 -0.99617592]\n", + " [-0.04057409 0.03802681 -0.99845266]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:cartToSphere: vec: [[ 0.25301111 -0.26788964 0.92963462]\n", + " [ 0.24915153 -0.29374916 0.92284069]\n", + " [ 0.24487675 -0.31991022 0.91525561]\n", + " [ 0.24020901 -0.34624929 0.90686882]\n", + " [ 0.23517028 -0.3726472 0.89767979]\n", + " [ 0.22978234 -0.3989889 0.88769811]\n", + " [ 0.22406715 -0.42516322 0.87694364]\n", + " [ 0.21804733 -0.45106292 0.86544648]\n", + " [ 0.25301111 -0.26788964 0.92963462]\n", + " [ 0.22763544 -0.26334907 0.937459 ]\n", + " [ 0.20150878 -0.25865903 0.94471674]\n", + " [ 0.1747376 -0.25381374 0.95133872]\n", + " [ 0.14742846 -0.24881252 0.95726547]\n", + " [ 0.11968837 -0.2436598 0.96244719]\n", + " [ 0.09162522 -0.23836501 0.96684381]\n", + " [ 0.06334805 -0.23294209 0.97042517]\n", + " [ 0.21804733 -0.45106292 0.86544648]\n", + " [ 0.19139589 -0.44819665 0.87320523]\n", + " [ 0.16404455 -0.44491397 0.88042089]\n", + " [ 0.13609482 -0.44120776 0.88702532]\n", + " [ 0.10764932 -0.43707547 0.89295949]\n", + " [ 0.07881367 -0.43251946 0.89817333]\n", + " [ 0.04969748 -0.42754729 0.90262588]\n", + " [ 0.02041425 -0.42217193 0.90628589]\n", + " [ 0.06334805 -0.23294209 0.97042517]\n", + " [ 0.05760033 -0.25961762 0.96399216]\n", + " [ 0.05168715 -0.28660644 0.95665312]\n", + " [ 0.04563009 -0.31378979 0.94839541]\n", + " [ 0.0394511 -0.34105186 0.93921629]\n", + " [ 0.03317286 -0.36827829 0.9291236 ]\n", + " [ 0.02681902 -0.39535563 0.91813652]\n", + " [ 0.02041425 -0.42217193 0.90628589]\n", + " [ 0.25129497 -0.27910443 0.92679639]\n", + " [ 0.24628144 -0.31101761 0.91793981]\n", + " [ 0.24066656 -0.34326048 0.90788317]\n", + " [ 0.23449089 -0.37561185 0.89662131]\n", + " [ 0.22779455 -0.40785988 0.88417191]\n", + " [ 0.22061824 -0.43980155 0.87057578]\n", + " [ 0.24203344 -0.2660159 0.93308914]\n", + " [ 0.21041325 -0.26035242 0.94230721]\n", + " [ 0.17777083 -0.25445793 0.95060438]\n", + " [ 0.14430234 -0.24832904 0.95786718]\n", + " [ 0.11020479 -0.24197391 0.96400391]\n", + " [ 0.07567734 -0.23541177 0.96894491]\n", + " [ 0.20654095 -0.44977544 0.86893204]\n", + " [ 0.17339364 -0.44598274 0.87808544]\n", + " [ 0.13929586 -0.44155717 0.88635429]\n", + " [ 0.10443597 -0.43649215 0.89362617]\n", + " [ 0.0690085 -0.43079204 0.89980889]\n", + " [ 0.03321692 -0.42447302 0.90483108]\n", + " [ 0.06096108 -0.24454521 0.96771969]\n", + " [ 0.05380362 -0.27746478 0.95922806]\n", + " [ 0.0464189 -0.31073647 0.94936196]\n", + " [ 0.03884712 -0.34414594 0.93811218]\n", + " [ 0.03113004 -0.3774826 0.92549328]\n", + " [ 0.02331167 -0.41053815 0.91154539]\n", + " [ 0.25291326 -0.26796213 0.92964035]\n", + " [ 0.25291326 -0.26796213 0.92964035]\n", + " [ 0.0205365 -0.42209985 0.90631671]\n", + " [ 0.0205365 -0.42209985 0.90631671]\n", + " [ 0.24035869 -0.27720682 0.93026022]\n", + " [ 0.20858179 -0.27166178 0.9395177 ]\n", + " [ 0.17578731 -0.26585708 0.94784958]\n", + " [ 0.14217088 -0.25978943 0.95514234]\n", + " [ 0.10792916 -0.25346734 0.96130412]\n", + " [ 0.07326132 -0.24691037 0.966265 ]\n", + " [ 0.23520112 -0.30925623 0.92143422]\n", + " [ 0.20302573 -0.30404389 0.93077272]\n", + " [ 0.1698457 -0.29849311 0.93917746]\n", + " [ 0.13585472 -0.29260101 0.94653481]\n", + " [ 0.10124835 -0.28637679 0.95275238]\n", + " [ 0.06622617 -0.27984078 0.95775949]\n", + " [ 0.22946578 -0.34163324 0.91139025]\n", + " [ 0.19695867 -0.33675042 0.92076405]\n", + " [ 0.16345923 -0.33145446 0.92920343]\n", + " [ 0.12915905 -0.32574258 0.93659474]\n", + " [ 0.09425282 -0.31962401 0.94284511]\n", + " [ 0.05894091 -0.31311918 0.94788309]\n", + " [ 0.22319287 -0.37411701 0.90012299]\n", + " [ 0.19041956 -0.36956181 0.90948582]\n", + " [ 0.15666584 -0.36452311 0.91792087]\n", + " [ 0.12212152 -0.35899755 0.92531459]\n", + " [ 0.08698083 -0.35299359 0.93157386]\n", + " [ 0.05144516 -0.34653105 0.93662673]\n", + " [ 0.21642205 -0.40649579 0.88765008]\n", + " [ 0.18344682 -0.40226661 0.89695532]\n", + " [ 0.14950329 -0.39748777 0.90534647]\n", + " [ 0.11478016 -0.39215476 0.91271034]\n", + " [ 0.07947157 -0.38627455 0.91895389]\n", + " [ 0.04377995 -0.37986566 0.92400509]\n", + " [ 0.20919367 -0.43856626 0.87401238]\n", + " [ 0.17608006 -0.43466043 0.88321352]\n", + " [ 0.14201112 -0.43014278 0.89152119]\n", + " [ 0.10717515 -0.42500727 0.89882274]\n", + " [ 0.07176655 -0.41925896 0.90502568]\n", + " [ 0.03598858 -0.41291468 0.9100584 ]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:fp_optics: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:fp_optics: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:cartToSphere: vec: [[ 1.00433334e-01 6.36631834e-01 -7.64599930e-01]\n", + " [ 7.67756416e-02 6.28121793e-01 -7.74318096e-01]\n", + " [ 5.26373957e-02 6.18851142e-01 -7.83742667e-01]\n", + " [ 2.81120125e-02 6.08843820e-01 -7.92791850e-01]\n", + " [ 3.29359720e-03 5.98127837e-01 -8.01393937e-01]\n", + " [-2.17228073e-02 5.86735415e-01 -8.09487290e-01]\n", + " [-4.68410817e-02 5.74703391e-01 -8.17020150e-01]\n", + " [-7.19641670e-02 5.62073606e-01 -8.23950496e-01]\n", + " [ 1.00433334e-01 6.36631834e-01 -7.64599930e-01]\n", + " [ 1.15402736e-01 6.18310066e-01 -7.77415507e-01]\n", + " [ 1.30479741e-01 5.99072674e-01 -7.89991752e-01]\n", + " [ 1.45606883e-01 5.78981651e-01 -8.02233684e-01]\n", + " [ 1.60726573e-01 5.58103221e-01 -8.14056364e-01]\n", + " [ 1.75780920e-01 5.36508080e-01 -8.25384848e-01]\n", + " [ 1.90711806e-01 5.14271846e-01 -8.36153978e-01]\n", + " [ 2.05461195e-01 4.91475372e-01 -8.46308251e-01]\n", + " [-7.19641670e-02 5.62073606e-01 -8.23950496e-01]\n", + " [-5.80449173e-02 5.42453615e-01 -8.38078077e-01]\n", + " [-4.37968825e-02 5.21993946e-01 -8.51824015e-01]\n", + " [-2.92744813e-02 5.00752748e-01 -8.65095191e-01]\n", + " [-1.45324041e-02 4.78793025e-01 -8.77807524e-01]\n", + " [ 3.73458266e-04 4.56184166e-01 -8.89885311e-01]\n", + " [ 1.53855405e-02 4.33002942e-01 -9.01261193e-01]\n", + " [ 3.04447062e-02 4.09333656e-01 -9.11876679e-01]\n", + " [ 2.05461195e-01 4.91475372e-01 -8.46308251e-01]\n", + " [ 1.81851871e-01 4.81390597e-01 -8.57433956e-01]\n", + " [ 1.57626673e-01 4.70710834e-01 -8.68092820e-01]\n", + " [ 1.32874254e-01 4.59458097e-01 -8.78204242e-01]\n", + " [ 1.07684771e-01 4.47658962e-01 -8.87696707e-01]\n", + " [ 8.21514281e-02 4.35345439e-01 -8.96507385e-01]\n", + " [ 5.63712221e-02 4.22555583e-01 -9.04582260e-01]\n", + " [ 3.04447062e-02 4.09333656e-01 -9.11876679e-01]\n", + " [ 9.02343299e-02 6.32954899e-01 -7.68912129e-01]\n", + " [ 6.09040443e-02 6.22009662e-01 -7.80637353e-01]\n", + " [ 3.09445923e-02 6.09945370e-01 -7.91839048e-01]\n", + " [ 5.28923166e-04 5.96811906e-01 -8.02381000e-01]\n", + " [-3.01679753e-02 5.82668636e-01 -8.12149711e-01]\n", + " [-6.09687402e-02 5.67585441e-01 -8.21053945e-01]\n", + " [ 1.06863027e-01 6.28731683e-01 -7.70244613e-01]\n", + " [ 1.25288869e-01 6.05652096e-01 -7.85804198e-01]\n", + " [ 1.43819394e-01 5.81258345e-01 -8.00908683e-01]\n", + " [ 1.62348649e-01 5.55670596e-01 -8.15397513e-01]\n", + " [ 1.80770066e-01 5.29019050e-01 -8.29132696e-01]\n", + " [ 1.98976659e-01 5.01445085e-01 -8.41998288e-01]\n", + " [-6.58531033e-02 5.53670373e-01 -8.30127994e-01]\n", + " [-4.85648067e-02 5.29052739e-01 -8.47198123e-01]\n", + " [-3.08369155e-02 5.03231117e-01 -8.63601487e-01]\n", + " [-1.27699520e-02 4.76319398e-01 -8.79179594e-01]\n", + " [ 5.53313016e-03 4.48445443e-01 -8.93793079e-01]\n", + " [ 2.39656707e-02 4.19753737e-01 -9.07321579e-01]\n", + " [ 1.95198593e-01 4.87231910e-01 -8.51177170e-01]\n", + " [ 1.65837190e-01 4.74470098e-01 -8.64509198e-01]\n", + " [ 1.35638826e-01 4.60835861e-01 -8.77058959e-01]\n", + " [ 1.04768767e-01 4.46376185e-01 -8.88691064e-01]\n", + " [ 7.33986855e-02 4.31150065e-01 -8.99289861e-01]\n", + " [ 4.17086798e-02 4.15230147e-01 -9.08759765e-01]\n", + " [ 1.00404298e-01 6.36543022e-01 -7.64677682e-01]\n", + " [ 1.00404298e-01 6.36543022e-01 -7.64677682e-01]\n", + " [ 3.04819893e-02 4.09461222e-01 -9.11818160e-01]\n", + " [ 3.04819893e-02 4.09461222e-01 -9.11818160e-01]\n", + " [ 9.66757830e-02 6.25096687e-01 -7.74537233e-01]\n", + " [ 1.15066662e-01 6.01887113e-01 -7.90247788e-01]\n", + " [ 1.33583071e-01 5.77367429e-01 -8.05482722e-01]\n", + " [ 1.52119088e-01 5.51657333e-01 -8.20081685e-01]\n", + " [ 1.70567922e-01 5.24886593e-01 -8.33906859e-01]\n", + " [ 1.88822158e-01 4.97196479e-01 -8.46842284e-01]\n", + " [ 6.72877872e-02 6.14027184e-01 -7.86411451e-01]\n", + " [ 8.55549810e-02 5.90475349e-01 -8.02508073e-01]\n", + " [ 1.04007049e-01 5.65626934e-01 -8.18076222e-01]\n", + " [ 1.22538243e-01 5.39599885e-01 -8.32956388e-01]\n", + " [ 1.41041278e-01 5.12522684e-01 -8.47011131e-01]\n", + " [ 1.59407627e-01 4.84536501e-01 -8.60124170e-01]\n", + " [ 3.72574796e-02 6.01851216e-01 -7.97738676e-01]\n", + " [ 5.53636598e-02 5.77994934e-01 -8.14160132e-01]\n", + " [ 7.37140581e-02 5.52858260e-01 -8.30008423e-01]\n", + " [ 9.22034556e-02 5.26557247e-01 -8.45124836e-01]\n", + " [ 1.10724546e-01 4.99219343e-01 -8.59371935e-01]\n", + " [ 1.29168108e-01 4.70986007e-01 -8.72632673e-01]\n", + " [ 6.75756340e-03 5.88618283e-01 -8.08382862e-01]\n", + " [ 2.46643987e-02 5.64493938e-01 -8.25068640e-01]\n", + " [ 4.28744304e-02 5.39108080e-01 -8.41144614e-01]\n", + " [ 6.12834656e-02 5.12575250e-01 -8.56452538e-01]\n", + " [ 7.97848359e-02 4.85022361e-01 -8.70854574e-01]\n", + " [ 9.82692769e-02 4.56591552e-01 -8.84232607e-01]\n", + " [-2.40369703e-02 5.74387287e-01 -8.18230694e-01]\n", + " [-6.36790421e-03 5.50029948e-01 -8.35120654e-01]\n", + " [ 1.16627580e-02 5.24433073e-01 -8.51371794e-01]\n", + " [ 2.99522821e-02 4.97710384e-01 -8.66825954e-01]\n", + " [ 4.83952905e-02 4.69988847e-01 -8.81344643e-01]\n", + " [ 6.68832069e-02 4.41411555e-01 -8.94808625e-01]\n", + " [-5.49484032e-02 5.59227831e-01 -8.27190973e-01]\n", + " [-3.75544447e-02 5.34671987e-01 -8.44224810e-01]\n", + " [-1.97411361e-02 5.08902187e-01 -8.60597962e-01]\n", + " [-1.60956235e-03 4.82032140e-01 -8.76152056e-01]\n", + " [ 1.67366523e-02 4.54189399e-01 -8.90747930e-01]\n", + " [ 3.51902636e-02 4.25518098e-01 -9.04265444e-01]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:fp_optics: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:cartToSphere: vec: [[-0.52624574 0.57226762 -0.62894769]\n", + " [-0.51302241 0.5610505 -0.64963862]\n", + " [-0.49902653 0.54929046 -0.67026302]\n", + " [-0.48430946 0.53700288 -0.69070417]\n", + " [-0.46892362 0.52421066 -0.71085428]\n", + " [-0.45292365 0.51094428 -0.73061352]\n", + " [-0.43636727 0.49724156 -0.74988962]\n", + " [-0.41931592 0.48314744 -0.76859788]\n", + " [-0.52624574 0.57226762 -0.62894769]\n", + " [-0.50861607 0.59222811 -0.62496044]\n", + " [-0.49013764 0.6121244 -0.62053913]\n", + " [-0.47087903 0.63184863 -0.61566245]\n", + " [-0.45090974 0.65130023 -0.61031829]\n", + " [-0.43030153 0.67038514 -0.60450339]\n", + " [-0.40912938 0.6890155 -0.59822302]\n", + " [-0.38747213 0.70710981 -0.59149055]\n", + " [-0.41931592 0.48314744 -0.76859788]\n", + " [-0.40007784 0.50319051 -0.76598762]\n", + " [-0.38012137 0.52324028 -0.76271053]\n", + " [-0.35950867 0.54319375 -0.75874506]\n", + " [-0.33830604 0.56295296 -0.75407757]\n", + " [-0.31658504 0.58242427 -0.7487028 ]\n", + " [-0.2944229 0.60151838 -0.74262426]\n", + " [-0.27190226 0.62015106 -0.73585448]\n", + " [-0.38747213 0.70710981 -0.59149055]\n", + " [-0.37251686 0.69687109 -0.61286367]\n", + " [-0.35695924 0.68586955 -0.63416327]\n", + " [-0.34084535 0.67411826 -0.65527782]\n", + " [-0.32422526 0.66163774 -0.67610168]\n", + " [-0.30715391 0.64845676 -0.6965345 ]\n", + " [-0.28969129 0.6346126 -0.71648155]\n", + " [-0.27190226 0.62015106 -0.73585448]\n", + " [-0.52051935 0.5675128 -0.63795676]\n", + " [-0.50378557 0.5533989 -0.66328709]\n", + " [-0.48594243 0.53848377 -0.68840045]\n", + " [-0.46708598 0.52280646 -0.71309473]\n", + " [-0.44731686 0.50642302 -0.7371861 ]\n", + " [-0.4267429 0.48940608 -0.76050784]\n", + " [-0.51862358 0.58093392 -0.62733194]\n", + " [-0.49643591 0.605369 -0.62215735]\n", + " [-0.47304153 0.62959964 -0.61630836]\n", + " [-0.44856796 0.65343774 -0.60975889]\n", + " [-0.42314739 0.67671008 -0.60250291]\n", + " [-0.39691946 0.69925753 -0.59455348]\n", + " [-0.41107956 0.49192762 -0.76747691]\n", + " [-0.38701117 0.51651071 -0.76383181]\n", + " [-0.36192501 0.54100081 -0.75916297]\n", + " [-0.33594133 0.56521556 -0.75344197]\n", + " [-0.30919191 0.58898255 -0.74665917]\n", + " [-0.28182121 0.61213947 -0.73882479]\n", + " [-0.38110356 0.70267892 -0.60083476]\n", + " [-0.36236441 0.68961548 -0.62699484]\n", + " [-0.34276577 0.67541856 -0.65293291]\n", + " [-0.32239811 0.66012285 -0.67845212]\n", + " [-0.30136256 0.64378131 -0.70336778]\n", + " [-0.27977164 0.62646614 -0.72750808]\n", + " [-0.52614313 0.57229844 -0.62900549]\n", + " [-0.52614313 0.57229844 -0.62900549]\n", + " [-0.2720411 0.62013867 -0.73581361]\n", + " [-0.2720411 0.62013867 -0.73581361]\n", + " [-0.51294225 0.57617436 -0.63632802]\n", + " [-0.49059989 0.60068411 -0.63126092]\n", + " [-0.46706191 0.62499122 -0.62549113]\n", + " [-0.4424545 0.64890803 -0.61899305]\n", + " [-0.41690904 0.67226133 -0.61176103]\n", + " [-0.390565 0.69489164 -0.60380841]\n", + " [-0.49605627 0.56211671 -0.66178016]\n", + " [-0.47330599 0.58679089 -0.65700676]\n", + " [-0.44939106 0.61127172 -0.65145573]\n", + " [-0.42443432 0.63537271 -0.64510234]\n", + " [-0.39856556 0.6589205 -0.63794144]\n", + " [-0.37192431 0.68175444 -0.62998666]\n", + " [-0.47807585 0.54723184 -0.68700858]\n", + " [-0.4549594 0.57200088 -0.68251516]\n", + " [-0.43070914 0.59659166 -0.67717651]\n", + " [-0.40544564 0.62081869 -0.67096795]\n", + " [-0.3792981 0.64450837 -0.66388396]\n", + " [-0.35240678 0.66749898 -0.65593793]\n", + " [-0.45909573 0.531559 -0.71181187]\n", + " [-0.43565175 0.55635347 -0.7075863 ]\n", + " [-0.41110581 0.58098994 -0.70245477]\n", + " [-0.38557731 0.60528382 -0.69639187]\n", + " [-0.3591957 0.62906148 -0.68939111]\n", + " [-0.33210243 0.65216041 -0.68146517]\n", + " [-0.43921579 0.5151545 -0.73600634]\n", + " [-0.41548136 0.53990531 -0.73203654]\n", + " [-0.39067885 0.56452297 -0.7271065 ]\n", + " [-0.3649275 0.58882381 -0.7211896 ]\n", + " [-0.33835756 0.61263446 -0.71427808]\n", + " [-0.31111185 0.63579212 -0.70638361]\n", + " [-0.4185436 0.49809131 -0.75942499]\n", + " [-0.39455569 0.52273008 -0.75569774]\n", + " [-0.36953634 0.54726469 -0.75096222]\n", + " [-0.34360543 0.57151244 -0.74519047]\n", + " [-0.31689432 0.5953006 -0.73837334]\n", + " [-0.28954708 0.61846663 -0.7305214 ]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:fp_optics: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:cartToSphere: vec: [[-9.89957475e-01 3.60750250e-04 -1.41365017e-01]\n", + " [-9.85910102e-01 1.11847361e-02 -1.66901687e-01]\n", + " [-9.80984575e-01 2.22138271e-02 -1.92810292e-01]\n", + " [-9.75157781e-01 3.34028702e-02 -2.18978423e-01]\n", + " [-9.68416421e-01 4.47076830e-02 -2.45297489e-01]\n", + " [-9.60757609e-01 5.60840788e-02 -2.71660435e-01]\n", + " [-9.52189775e-01 6.74870783e-02 -2.97959942e-01]\n", + " [-9.42733396e-01 7.88707768e-02 -3.24088174e-01]\n", + " [-9.89957475e-01 3.60750250e-04 -1.41365017e-01]\n", + " [-9.91107460e-01 2.71681774e-02 -1.30260862e-01]\n", + " [-9.91409123e-01 5.39054754e-02 -1.19172775e-01]\n", + " [-9.90872622e-01 8.04695454e-02 -1.08148507e-01]\n", + " [-9.89518668e-01 1.06758782e-01 -9.72387168e-02]\n", + " [-9.87378388e-01 1.32673344e-01 -8.64968336e-02]\n", + " [-9.84493153e-01 1.58115585e-01 -7.59782380e-02]\n", + " [-9.80914219e-01 1.82991239e-01 -6.57381196e-02]\n", + " [-9.42733396e-01 7.88707768e-02 -3.24088174e-01]\n", + " [-9.43936528e-01 1.06538975e-01 -3.12463244e-01]\n", + " [-9.44287605e-01 1.34022378e-01 -3.00597607e-01]\n", + " [-9.43797420e-01 1.61213656e-01 -2.88542177e-01]\n", + " [-9.42487568e-01 1.88010714e-01 -2.76349698e-01]\n", + " [-9.40389827e-01 2.14316435e-01 -2.64074685e-01]\n", + " [-9.37545783e-01 2.40036845e-01 -2.51774139e-01]\n", + " [-9.34006891e-01 2.65078751e-01 -2.39508628e-01]\n", + " [-9.80914219e-01 1.82991239e-01 -6.57381196e-02]\n", + " [-9.76692303e-01 1.95030008e-01 -8.96406255e-02]\n", + " [-9.71663230e-01 2.07044678e-01 -1.14030995e-01]\n", + " [-9.65805060e-01 2.18986166e-01 -1.38800738e-01]\n", + " [-9.59106158e-01 2.30806727e-01 -1.63840263e-01]\n", + " [-9.51565392e-01 2.42459556e-01 -1.89041446e-01]\n", + " [-9.43192248e-01 2.53898609e-01 -2.14298578e-01]\n", + " [-9.34006891e-01 2.65078751e-01 -2.39508628e-01]\n", + " [-9.88304296e-01 5.14391345e-03 -1.52407867e-01]\n", + " [-9.82756752e-01 1.85544115e-02 -1.83969833e-01]\n", + " [-9.75866140e-01 3.22278109e-02 -2.15978342e-01]\n", + " [-9.67603897e-01 4.60823966e-02 -2.48231971e-01]\n", + " [-9.57964818e-01 6.00367214e-02 -2.80533420e-01]\n", + " [-9.46969412e-01 7.40075639e-02 -3.12684845e-01]\n", + " [-9.90551029e-01 1.20878353e-02 -1.36610921e-01]\n", + " [-9.91389237e-01 4.49098610e-02 -1.23006035e-01]\n", + " [-9.90962099e-01 7.75238621e-02 -1.09472233e-01]\n", + " [-9.89303366e-01 1.09742148e-01 -9.61015626e-02]\n", + " [-9.86470325e-01 1.41380957e-01 -8.29923020e-02]\n", + " [-9.82543278e-01 1.72261819e-01 -7.02465075e-02]\n", + " [-9.43396771e-01 9.09110325e-02 -3.18963505e-01]\n", + " [-9.44297495e-01 1.24710697e-01 -3.04547996e-01]\n", + " [-9.43927846e-01 1.58125697e-01 -2.89821473e-01]\n", + " [-9.42323122e-01 1.90965840e-01 -2.74880304e-01]\n", + " [-9.39541782e-01 2.23052115e-01 -2.59824929e-01]\n", + " [-9.35664469e-01 2.54211920e-01 -2.44761724e-01]\n", + " [-9.79184324e-01 1.88155766e-01 -7.61279653e-02]\n", + " [-9.73470647e-01 2.02900151e-01 -1.05765912e-01]\n", + " [-9.66521558e-01 2.17559554e-01 -1.36029106e-01]\n", + " [-9.58311343e-01 2.32045548e-01 -1.66716027e-01]\n", + " [-9.48837928e-01 2.46271945e-01 -1.97627719e-01]\n", + " [-9.38123213e-01 2.60154341e-01 -2.28570682e-01]\n", + " [-9.89950477e-01 4.89038653e-04 -1.41413628e-01]\n", + " [-9.89950477e-01 4.89038653e-04 -1.41413628e-01]\n", + " [-9.34052874e-01 2.64956637e-01 -2.39464423e-01]\n", + " [-9.34052874e-01 2.64956637e-01 -2.39464423e-01]\n", + " [-9.88906982e-01 1.67874051e-02 -1.47584431e-01]\n", + " [-9.89745861e-01 4.97289456e-02 -1.33903555e-01]\n", + " [-9.89311526e-01 8.24515138e-02 -1.20268254e-01]\n", + " [-9.87637871e-01 1.14767085e-01 -1.06770561e-01]\n", + " [-9.84782319e-01 1.46491695e-01 -9.35091809e-02]\n", + " [-9.80825365e-01 1.77446306e-01 -8.05879154e-02]\n", + " [-9.83364991e-01 3.03100282e-02 -1.79093823e-01]\n", + " [-9.84207830e-01 6.35491628e-02 -1.65216376e-01]\n", + " [-9.83760344e-01 9.65381363e-02 -1.51314153e-01]\n", + " [-9.82056980e-01 1.29087975e-01 -1.37478665e-01]\n", + " [-9.79155618e-01 1.61014739e-01 -1.23808435e-01]\n", + " [-9.75137078e-01 1.92139009e-01 -1.10409603e-01]\n", + " [-9.76479211e-01 4.40739908e-02 -2.11058839e-01]\n", + " [-9.77329179e-01 7.75495890e-02 -1.97012023e-01]\n", + " [-9.76879464e-01 1.10743449e-01 -1.82872636e-01]\n", + " [-9.75165194e-01 1.43465665e-01 -1.68731881e-01]\n", + " [-9.72244816e-01 1.75532994e-01 -1.54687381e-01]\n", + " [-9.68199357e-01 2.06767060e-01 -1.40845259e-01]\n", + " [-9.68221087e-01 5.79970855e-02 -2.43278162e-01]\n", + " [-9.69081662e-01 9.16465158e-02 -2.29088733e-01]\n", + " [-9.68641255e-01 1.24982442e-01 -2.14740560e-01]\n", + " [-9.66935563e-01 1.57814242e-01 -2.00325440e-01]\n", + " [-9.64023519e-01 1.89959823e-01 -1.85940635e-01]\n", + " [-9.59986283e-01 2.21242680e-01 -1.71691621e-01]\n", + " [-9.58585407e-01 7.19970580e-02 -2.75554788e-01]\n", + " [-9.59460398e-01 1.05755546e-01 -2.61249899e-01]\n", + " [-9.59041551e-01 1.39169240e-01 -2.46720949e-01]\n", + " [-9.57364756e-01 1.72047282e-01 -2.32061320e-01]\n", + " [-9.54489089e-01 2.04208953e-01 -2.17369001e-01]\n", + " [-9.50495661e-01 2.35479773e-01 -2.02749289e-01]\n", + " [-9.47592651e-01 8.59898663e-02 -3.07691257e-01]\n", + " [-9.48485991e-01 1.19790712e-01 -2.93299354e-01]\n", + " [-9.48101310e-01 1.53216910e-01 -2.78618888e-01]\n", + " [-9.46474158e-01 1.86077986e-01 -2.63745430e-01]\n", + " [-9.43663241e-01 2.18194540e-01 -2.48778677e-01]\n", + " [-9.39749368e-01 2.49393637e-01 -2.33824592e-01]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:cartToSphere: vec: [[0.38765498 0.49870816 0.77525079]\n", + " [0.39458329 0.51868819 0.75846331]\n", + " [0.40148791 0.53862474 0.74073669]\n", + " [0.40831587 0.55841871 0.72211266]\n", + " [0.41501677 0.57797456 0.7026425 ]\n", + " [0.4215451 0.59720151 0.68238558]\n", + " [0.42786123 0.61601398 0.66140875]\n", + " [0.43393173 0.63433189 0.63978614]\n", + " [0.38765498 0.49870816 0.77525079]\n", + " [0.41049899 0.48471254 0.77236282]\n", + " [0.43357047 0.47015929 0.76874371]\n", + " [0.45675411 0.45508036 0.7643805 ]\n", + " [0.47993594 0.43951346 0.759269 ]\n", + " [0.50300625 0.42350227 0.7534126 ]\n", + " [0.5258608 0.40709654 0.74682181]\n", + " [0.5484013 0.39035208 0.73951421]\n", + " [0.43393173 0.63433189 0.63978614]\n", + " [0.45824146 0.62123056 0.63567865]\n", + " [0.48268282 0.60736303 0.63097341]\n", + " [0.50713494 0.59275794 0.62566139]\n", + " [0.53148407 0.57744915 0.61973959]\n", + " [0.5556215 0.56147696 0.61321153]\n", + " [0.57944183 0.54488951 0.60608794]\n", + " [0.60284266 0.52774354 0.5983874 ]\n", + " [0.5484013 0.39035208 0.73951421]\n", + " [0.55725465 0.4102646 0.72190734]\n", + " [0.56583846 0.43023854 0.70336451]\n", + " [0.57409292 0.45017518 0.68392955]\n", + " [0.58196489 0.46998152 0.66365219]\n", + " [0.58940726 0.48956861 0.64258981]\n", + " [0.59637845 0.50885035 0.6208092 ]\n", + " [0.60284266 0.52774354 0.5983874 ]\n", + " [0.39075338 0.50737172 0.76804019]\n", + " [0.39923681 0.53184312 0.74682854]\n", + " [0.40763172 0.5561505 0.72424651]\n", + " [0.41584409 0.58011639 0.70038466]\n", + " [0.4237902 0.60357372 0.67535222]\n", + " [0.43139971 0.6263672 0.64927531]\n", + " [0.39760398 0.49274482 0.7740243 ]\n", + " [0.42577043 0.47521337 0.76999467]\n", + " [0.45416399 0.45687528 0.76485296]\n", + " [0.48257402 0.43779756 0.7585879 ]\n", + " [0.51079869 0.41806064 0.7512057 ]\n", + " [0.53864855 0.39775864 0.74272862]\n", + " [0.44448621 0.62865355 0.63814319]\n", + " [0.4743842 0.61207729 0.63270927]\n", + " [0.50435902 0.5943782 0.62636773]\n", + " [0.53419833 0.57561642 0.61911055]\n", + " [0.5637018 0.55586632 0.61094428]\n", + " [0.59267661 0.53522009 0.60189192]\n", + " [0.55221366 0.39907785 0.73198152]\n", + " [0.56289021 0.42353729 0.70976811]\n", + " [0.57310186 0.4479901 0.68619176]\n", + " [0.58274805 0.47226276 0.66134152]\n", + " [0.59174196 0.49619134 0.63532323]\n", + " [0.60000945 0.5196185 0.60826415]\n", + " [0.38775626 0.49872957 0.77518637]\n", + " [0.38775626 0.49872957 0.77518637]\n", + " [0.60274226 0.5277392 0.59849236]\n", + " [0.60274226 0.5277392 0.59849236]\n", + " [0.40066546 0.50140653 0.76684984]\n", + " [0.42900881 0.48391514 0.76274346]\n", + " [0.45756793 0.46559377 0.75753154]\n", + " [0.48613012 0.44650893 0.75120389]\n", + " [0.51449287 0.42674085 0.74376699]\n", + " [0.54246649 0.40638381 0.73524302]\n", + " [0.40931603 0.5259383 0.74555301]\n", + " [0.43811464 0.50857519 0.74121984]\n", + " [0.46709577 0.49031764 0.73580578]\n", + " [0.49604374 0.47123107 0.72930233]\n", + " [0.52475571 0.45139538 0.72171577]\n", + " [0.55304176 0.43090549 0.71306751]\n", + " [0.41785259 0.55031241 0.72287998]\n", + " [0.44703277 0.5330978 0.71830943]\n", + " [0.47636371 0.51492799 0.71268982]\n", + " [0.50562969 0.4958674 0.70601285]\n", + " [0.53462876 0.47599544 0.69828392]\n", + " [0.56317078 0.45540745 0.68952355]\n", + " [0.42617904 0.57435089 0.69892237]\n", + " [0.45566395 0.55730444 0.69410527]\n", + " [0.48527184 0.53924676 0.68827624]\n", + " [0.51478827 0.52024106 0.68142665]\n", + " [0.54401237 0.50036567 0.67356124]\n", + " [0.57275335 0.47971576 0.66470023]\n", + " [0.43421104 0.59788641 0.67378974]\n", + " [0.46392345 0.58102749 0.66871675]\n", + " [0.49373597 0.56310647 0.66267329]\n", + " [0.52343553 0.54418514 0.65565065]\n", + " [0.55282186 0.52434023 0.6476537 ]\n", + " [0.58170327 0.50366599 0.63870327]\n", + " [0.44187815 0.62076338 0.64760831]\n", + " [0.47174125 0.60411036 0.64227008]\n", + " [0.50168645 0.58634949 0.63600706]\n", + " [0.53150137 0.56754126 0.62881095]\n", + " [0.5609858 0.54776062 0.62068771]\n", + " [0.58994716 0.52710035 0.61165969]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:fp_optics: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:fp_optics: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:cartToSphere: vec: [[ 0.27905316 -0.45105712 0.84774808]\n", + " [ 0.29360651 -0.46852448 0.83323468]\n", + " [ 0.3081197 -0.48610441 0.81778038]\n", + " [ 0.32253025 -0.50368936 0.80141829]\n", + " [ 0.3367772 -0.52118113 0.78418834]\n", + " [ 0.35080102 -0.53848968 0.76613805]\n", + " [ 0.36454378 -0.55553227 0.74732304]\n", + " [ 0.3779496 -0.57223299 0.72780733]\n", + " [ 0.27905316 -0.45105712 0.84774808]\n", + " [ 0.25626024 -0.46538145 0.84720174]\n", + " [ 0.23285645 -0.47977905 0.84592549]\n", + " [ 0.20892554 -0.49415369 0.84389706]\n", + " [ 0.18455313 -0.50841865 0.84110084]\n", + " [ 0.15982744 -0.52249557 0.83752825]\n", + " [ 0.13483969 -0.53631347 0.83317832]\n", + " [ 0.1096841 -0.54980829 0.82805812]\n", + " [ 0.3779496 -0.57223299 0.72780733]\n", + " [ 0.3552766 -0.58844541 0.7262992 ]\n", + " [ 0.33185508 -0.60451952 0.72417426]\n", + " [ 0.30776283 -0.6203642 0.72140855]\n", + " [ 0.28308142 -0.63589439 0.71798554]\n", + " [ 0.25789749 -0.65103047 0.7138965 ]\n", + " [ 0.23230309 -0.66569846 0.70914091]\n", + " [ 0.20639532 -0.67983058 0.70372676]\n", + " [ 0.1096841 -0.54980829 0.82805812]\n", + " [ 0.12329412 -0.56908001 0.81298617]\n", + " [ 0.13707149 -0.58828012 0.7969554 ]\n", + " [ 0.15095624 -0.60730672 0.77999408]\n", + " [ 0.16488932 -0.62606357 0.76213904]\n", + " [ 0.17881211 -0.64445946 0.74343677]\n", + " [ 0.19266651 -0.66240846 0.72394382]\n", + " [ 0.20639532 -0.67983058 0.70372676]\n", + " [ 0.28532243 -0.45870114 0.84153691]\n", + " [ 0.3031398 -0.48020058 0.82311218]\n", + " [ 0.32083471 -0.50176098 0.8033063 ]\n", + " [ 0.33829434 -0.52319774 0.78218991]\n", + " [ 0.3554091 -0.54434503 0.75985055]\n", + " [ 0.37207318 -0.56505334 0.7363941 ]\n", + " [ 0.26924545 -0.45734699 0.84754977]\n", + " [ 0.24088871 -0.47496646 0.84639204]\n", + " [ 0.21169739 -0.49259908 0.84411514]\n", + " [ 0.18182823 -0.51008132 0.84068754]\n", + " [ 0.15144372 -0.5272688 0.83609354]\n", + " [ 0.12071305 -0.54403374 0.83033466]\n", + " [ 0.36811562 -0.57925587 0.72729192]\n", + " [ 0.33981408 -0.59904406 0.72503283]\n", + " [ 0.31046529 -0.61853336 0.72182254]\n", + " [ 0.28021775 -0.63756471 0.71762751]\n", + " [ 0.24923101 -0.65599159 0.71243171]\n", + " [ 0.21767667 -0.6736803 0.70623772]\n", + " [ 0.11568017 -0.5581671 0.82162497]\n", + " [ 0.13248163 -0.58175108 0.80250501]\n", + " [ 0.14947456 -0.60512565 0.78197206]\n", + " [ 0.16654992 -0.62811136 0.76009029]\n", + " [ 0.1835998 -0.65054033 0.73694531]\n", + " [ 0.20051756 -0.67225678 0.71264544]\n", + " [ 0.27902612 -0.45116528 0.84769943]\n", + " [ 0.27902612 -0.45116528 0.84769943]\n", + " [ 0.20643767 -0.67972465 0.70381666]\n", + " [ 0.20643767 -0.67972465 0.70381666]\n", + " [ 0.27552882 -0.46495681 0.84136736]\n", + " [ 0.24712602 -0.48276723 0.84015744]\n", + " [ 0.2178741 -0.50056456 0.83783411]\n", + " [ 0.18792926 -0.51818655 0.8343652 ]\n", + " [ 0.15745388 -0.53548949 0.82973447]\n", + " [ 0.12661748 -0.55234574 0.82394308]\n", + " [ 0.29332199 -0.48664895 0.82288214]\n", + " [ 0.26482445 -0.50495687 0.8215148 ]\n", + " [ 0.23543713 -0.52318339 0.81905342]\n", + " [ 0.20531464 -0.54116911 0.81546422]\n", + " [ 0.17461907 -0.55877142 0.81072972]\n", + " [ 0.14352092 -0.57586245 0.80485041]\n", + " [ 0.31101113 -0.50837842 0.803009 ]\n", + " [ 0.28247178 -0.52712296 0.80146807]\n", + " [ 0.25300308 -0.54572586 0.79885714]\n", + " [ 0.22275803 -0.56402932 0.79514136]\n", + " [ 0.19189838 -0.58189073 0.7903026 ]\n", + " [ 0.16059551 -0.59918116 0.78434114]\n", + " [ 0.3284832 -0.52996191 0.78181786]\n", + " [ 0.2999546 -0.54908506 0.78008515]\n", + " [ 0.27045868 -0.56801321 0.77731146]\n", + " [ 0.2401469 -0.58658899 0.77346158]\n", + " [ 0.20918056 -0.60466895 0.76851737]\n", + " [ 0.17773159 -0.6221227 0.7624794 ]\n", + " [ 0.34562818 -0.5512342 0.75939583]\n", + " [ 0.31716204 -0.57067895 0.75745216]\n", + " [ 0.28769277 -0.58988116 0.75450188]\n", + " [ 0.25737044 -0.60868302 0.75051011]\n", + " [ 0.22635571 -0.62693981 0.7454593 ]\n", + " [ 0.1948207 -0.64451958 0.73935066]\n", + " [ 0.36233977 -0.57204585 0.73584879]\n", + " [ 0.33398657 -0.59175475 0.73367519]\n", + " [ 0.30459711 -0.61117862 0.73053494]\n", + " [ 0.27432025 -0.63015878 0.72639405]\n", + " [ 0.24331586 -0.64854912 0.72123604]\n", + " [ 0.21175575 -0.66621637 0.71506311]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:fp_optics: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:cartToSphere: vec: [[ 1.38780362e-03 2.24460564e-01 -9.74482185e-01]\n", + " [-1.12470069e-03 1.97196932e-01 -9.80363252e-01]\n", + " [-3.68733733e-03 1.69230070e-01 -9.85569676e-01]\n", + " [-6.28975999e-03 1.40662841e-01 -9.90037577e-01]\n", + " [-8.92161894e-03 1.11600581e-01 -9.93713095e-01]\n", + " [-1.15724435e-02 8.21523693e-02 -9.96552591e-01]\n", + " [-1.42316283e-02 5.24312129e-02 -9.98523124e-01]\n", + " [-1.68884980e-02 2.25533759e-02 -9.99602983e-01]\n", + " [ 1.38780362e-03 2.24460564e-01 -9.74482185e-01]\n", + " [ 3.02833513e-02 2.21753314e-01 -9.74632436e-01]\n", + " [ 5.90513534e-02 2.18772770e-01 -9.73987378e-01]\n", + " [ 8.75794816e-02 2.15530465e-01 -9.72561799e-01]\n", + " [ 1.15756241e-01 2.12038471e-01 -9.70381461e-01]\n", + " [ 1.43470814e-01 2.08308826e-01 -9.67483105e-01]\n", + " [ 1.70612319e-01 2.04352899e-01 -9.63914586e-01]\n", + " [ 1.97068516e-01 2.00180846e-01 -9.59735187e-01]\n", + " [-1.68884980e-02 2.25533759e-02 -9.99602983e-01]\n", + " [ 1.30168176e-02 1.99028354e-02 -9.99717180e-01]\n", + " [ 4.28135833e-02 1.72405016e-02 -9.98934313e-01]\n", + " [ 7.23845258e-02 1.45770933e-02 -9.97270269e-01]\n", + " [ 1.01615078e-01 1.19233117e-02 -9.94752336e-01]\n", + " [ 1.30394163e-01 9.28974467e-03 -9.91418712e-01]\n", + " [ 1.58614164e-01 6.68683519e-03 -9.87318000e-01]\n", + " [ 1.86169824e-01 4.12494044e-03 -9.82508922e-01]\n", + " [ 1.97068516e-01 2.00180846e-01 -9.59735187e-01]\n", + " [ 1.96388666e-01 1.73652987e-01 -9.65026493e-01]\n", + " [ 1.95399164e-01 1.46448876e-01 -9.69727742e-01]\n", + " [ 1.94111796e-01 1.18678409e-01 -9.73774125e-01]\n", + " [ 1.92536472e-01 9.04506733e-02 -9.77112267e-01]\n", + " [ 1.90681998e-01 6.18751989e-02 -9.79699870e-01]\n", + " [ 1.88556856e-01 3.30626517e-02 -9.81505564e-01]\n", + " [ 1.86169824e-01 4.12494044e-03 -9.82508922e-01]\n", + " [ 3.98469484e-04 2.12657722e-01 -9.77126673e-01]\n", + " [-2.71490297e-03 1.78757477e-01 -9.83889421e-01]\n", + " [-5.89347211e-03 1.43903006e-01 -9.89574248e-01]\n", + " [-9.11820129e-03 1.08287097e-01 -9.94077846e-01]\n", + " [-1.23698186e-02 7.21105813e-02 -9.97319934e-01]\n", + " [-1.56287701e-02 3.55829080e-02 -9.99244514e-01]\n", + " [ 1.39867409e-02 2.23222559e-01 -9.74667153e-01]\n", + " [ 4.93306473e-02 2.19719395e-01 -9.74315080e-01]\n", + " [ 8.43712720e-02 2.15817278e-01 -9.72781780e-01]\n", + " [ 1.18902995e-01 2.11538234e-01 -9.70110124e-01]\n", + " [ 1.52721724e-01 2.06904353e-01 -9.66367768e-01]\n", + " [ 1.85622847e-01 2.01936083e-01 -9.61647533e-01]\n", + " [-3.83485346e-03 2.15021536e-02 -9.99761447e-01]\n", + " [ 3.27589025e-02 1.82441952e-02 -9.99296755e-01]\n", + " [ 6.90728220e-02 1.49789687e-02 -9.97499161e-01]\n", + " [ 1.04894810e-01 1.17261917e-02 -9.94414187e-01]\n", + " [ 1.40020377e-01 8.50535781e-03 -9.90112091e-01]\n", + " [ 1.74252482e-01 5.33565520e-03 -9.84686551e-01]\n", + " [ 1.96721422e-01 1.88719137e-01 -9.62125652e-01]\n", + " [ 1.95677241e-01 1.55736820e-01 -9.68223352e-01]\n", + " [ 1.94180082e-01 1.21848069e-01 -9.73368966e-01]\n", + " [ 1.92248933e-01 8.72539704e-02 -9.77459509e-01]\n", + " [ 1.89900090e-01 5.21562393e-02 -9.80417096e-01]\n", + " [ 1.87149269e-01 1.67591421e-02 -9.82188517e-01]\n", + " [ 1.47821399e-03 2.24359866e-01 -9.74505241e-01]\n", + " [ 1.47821399e-03 2.24359866e-01 -9.74505241e-01]\n", + " [ 1.86085443e-01 4.23266467e-03 -9.82524449e-01]\n", + " [ 1.86085443e-01 4.23266467e-03 -9.82524449e-01]\n", + " [ 1.29564302e-02 2.11517848e-01 -9.77288254e-01]\n", + " [ 4.84416486e-02 2.08022793e-01 -9.76923704e-01]\n", + " [ 8.36249497e-02 2.04151738e-01 -9.75360926e-01]\n", + " [ 1.18300468e-01 1.99927142e-01 -9.72642862e-01]\n", + " [ 1.52264511e-01 1.95371720e-01 -9.68837143e-01]\n", + " [ 1.85313575e-01 1.90506687e-01 -9.64036348e-01]\n", + " [ 9.96751466e-03 1.77611768e-01 -9.84050155e-01]\n", + " [ 4.58087629e-02 1.74144246e-01 -9.83654075e-01]\n", + " [ 8.13514914e-02 1.70366250e-01 -9.82016943e-01]\n", + " [ 1.16388710e-01 1.66300990e-01 -9.79182133e-01]\n", + " [ 1.50717345e-01 1.61972334e-01 -9.75217537e-01]\n", + " [ 1.84136598e-01 1.57403114e-01 -9.70215426e-01]\n", + " [ 6.88995084e-03 1.42753676e-01 -9.89734266e-01]\n", + " [ 4.30207612e-02 1.39321141e-01 -9.89312303e-01]\n", + " [ 7.88562796e-02 1.35645078e-01 -9.87614348e-01]\n", + " [ 1.14188025e-01 1.31748735e-01 -9.84684399e-01]\n", + " [ 1.48812909e-01 1.27656160e-01 -9.80590956e-01]\n", + " [ 1.82532050e-01 1.23390758e-01 -9.75426456e-01]\n", + " [ 3.74209766e-03 1.07136446e-01 -9.94237285e-01]\n", + " [ 4.00942572e-02 1.03746841e-01 -9.93795272e-01]\n", + " [ 7.61547358e-02 1.00182467e-01 -9.92050366e-01]\n", + " [ 1.11713542e-01 9.64659854e-02 -9.89047217e-01]\n", + " [ 1.46567191e-01 9.26207459e-02 -9.84855043e-01]\n", + " [ 1.80517967e-01 8.86696979e-02 -9.79566715e-01]\n", + " [ 5.42522532e-04 7.09609586e-02 -9.97478946e-01]\n", + " [ 3.70459233e-02 6.76222308e-02 -9.97022985e-01]\n", + " [ 7.32620161e-02 6.41791785e-02 -9.95245553e-01]\n", + " [ 1.08979575e-01 6.06534079e-02 -9.92191824e-01]\n", + " [ 1.43994608e-01 5.70668953e-02 -9.87931638e-01]\n", + " [ 1.78109964e-01 5.34413126e-02 -9.82558327e-01]\n", + " [-2.68978387e-03 3.44366644e-02 -9.99403263e-01]\n", + " [ 3.38931908e-02 3.11563837e-02 -9.98939704e-01]\n", + " [ 7.01941981e-02 2.78434043e-02 -9.97144683e-01]\n", + " [ 1.06001266e-01 2.45179683e-02 -9.94063680e-01]\n", + " [ 1.41109996e-01 2.12002561e-02 -9.89766901e-01]\n", + " [ 1.75323377e-01 1.79101468e-02 -9.84347977e-01]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:fp_optics: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:cartToSphere: vec: [[ 0.56000246 -0.40424737 0.72317447]\n", + " [ 0.58272003 -0.40025481 0.70727184]\n", + " [ 0.60541744 -0.39585883 0.69048208]\n", + " [ 0.62797889 -0.39105947 0.672841 ]\n", + " [ 0.65029465 -0.38586079 0.65439156]\n", + " [ 0.67225993 -0.38027137 0.63518523]\n", + " [ 0.69377466 -0.37430459 0.6152827 ]\n", + " [ 0.71474426 -0.36797879 0.59475395]\n", + " [ 0.56000246 -0.40424737 0.72317447]\n", + " [ 0.55614884 -0.43031836 0.71100251]\n", + " [ 0.55192173 -0.45593207 0.69821798]\n", + " [ 0.54734653 -0.48099314 0.68487763]\n", + " [ 0.54245611 -0.50541121 0.67104462]\n", + " [ 0.53729121 -0.52910068 0.65678811]\n", + " [ 0.531901 -0.55198009 0.64218323]\n", + " [ 0.52634352 -0.57397138 0.62731121]\n", + " [ 0.71474426 -0.36797879 0.59475395]\n", + " [ 0.71063049 -0.39496376 0.58224388]\n", + " [ 0.70589393 -0.42150703 0.56925001]\n", + " [ 0.70056241 -0.44750868 0.55583117]\n", + " [ 0.69467138 -0.47287624 0.54205142]\n", + " [ 0.68826345 -0.49752498 0.52797947]\n", + " [ 0.68138812 -0.52137729 0.51368857]\n", + " [ 0.67410195 -0.54436103 0.49925708]\n", + " [ 0.52634352 -0.57397138 0.62731121]\n", + " [ 0.54779069 -0.57153002 0.61096546]\n", + " [ 0.56931292 -0.5684845 0.5938924 ]\n", + " [ 0.59078914 -0.56483633 0.57613202]\n", + " [ 0.61210701 -0.56058998 0.55773101]\n", + " [ 0.63316204 -0.5557533 0.53874308]\n", + " [ 0.65385704 -0.55033817 0.51922911]\n", + " [ 0.67410195 -0.54436103 0.49925708]\n", + " [ 0.56988958 -0.40264622 0.7163113 ]\n", + " [ 0.59773357 -0.39748272 0.69621984]\n", + " [ 0.62543147 -0.39171271 0.67483081]\n", + " [ 0.65277887 -0.38534198 0.65222029]\n", + " [ 0.6795828 -0.37838635 0.62848308]\n", + " [ 0.70566128 -0.37087252 0.60373482]\n", + " [ 0.55844703 -0.41565173 0.71789313]\n", + " [ 0.55346974 -0.44731007 0.70255601]\n", + " [ 0.54795568 -0.47818623 0.68635451]\n", + " [ 0.54196224 -0.50811176 0.66940225]\n", + " [ 0.53556451 -0.53692903 0.65182657]\n", + " [ 0.52885664 -0.56448951 0.63376829]\n", + " [ 0.712958 -0.37981418 0.5894337 ]\n", + " [ 0.70749439 -0.41260278 0.5737688 ]\n", + " [ 0.70112226 -0.44462783 0.5574349 ]\n", + " [ 0.69390372 -0.47571594 0.54054784]\n", + " [ 0.68591719 -0.50571109 0.52323408]\n", + " [ 0.6772567 -0.53447275 0.50563055]\n", + " [ 0.53569693 -0.57290726 0.62032739]\n", + " [ 0.5620502 -0.5695079 0.59980023]\n", + " [ 0.58839484 -0.56520237 0.5782195 ]\n", + " [ 0.61452041 -0.55999766 0.55566833]\n", + " [ 0.64023451 -0.55390829 0.5322456 ]\n", + " [ 0.66536117 -0.546958 0.5080664 ]\n", + " [ 0.56006752 -0.40432423 0.72308111]\n", + " [ 0.56006752 -0.40432423 0.72308111]\n", + " [ 0.67405912 -0.54430537 0.49937558]\n", + " [ 0.67405912 -0.54430537 0.49937558]\n", + " [ 0.56826085 -0.41401826 0.71110371]\n", + " [ 0.56324148 -0.44580175 0.69571534]\n", + " [ 0.55765764 -0.47680116 0.67946936]\n", + " [ 0.55156649 -0.50684796 0.66247986]\n", + " [ 0.54504263 -0.53578492 0.64487445]\n", + " [ 0.53817959 -0.56346435 0.62679395]\n", + " [ 0.59608369 -0.40896696 0.69096329]\n", + " [ 0.59095379 -0.44106667 0.67545083]\n", + " [ 0.5851847 -0.47237845 0.65910353]\n", + " [ 0.57883341 -0.50273319 0.64203677]\n", + " [ 0.57197368 -0.53197468 0.62437893]\n", + " [ 0.56469749 -0.55995759 0.60627077]\n", + " [ 0.62376372 -0.40328821 0.66953525]\n", + " [ 0.61853566 -0.43564685 0.65393077]\n", + " [ 0.61259869 -0.46721653 0.63751985]\n", + " [ 0.60601029 -0.49782714 0.62041894]\n", + " [ 0.59884429 -0.52732311 0.60275688]\n", + " [ 0.59119188 -0.55556125 0.58467414]\n", + " [ 0.65109658 -0.39698718 0.64689599]\n", + " [ 0.64578273 -0.42954607 0.6312328 ]\n", + " [ 0.63969474 -0.46131848 0.61479745]\n", + " [ 0.63289124 -0.49213315 0.59770698]\n", + " [ 0.62544693 -0.52183473 0.5800902 ]\n", + " [ 0.61745314 -0.55028164 0.56208695]\n", + " [ 0.67788943 -0.39007898 0.62314068]\n", + " [ 0.67250262 -0.42277763 0.60745312]\n", + " [ 0.66628107 -0.45469645 0.59103357]\n", + " [ 0.65928488 -0.48566308 0.57399898]\n", + " [ 0.65159018 -0.51552203 0.55647755]\n", + " [ 0.64328921 -0.54413265 0.53860807]\n", + " [ 0.70396043 -0.38258967 0.5983852 ]\n", + " [ 0.69851433 -0.41536594 0.58270822]\n", + " [ 0.69217795 -0.44737358 0.56634491]\n", + " [ 0.68501293 -0.47843942 0.54941151]\n", + " [ 0.67709709 -0.50840758 0.53203501]\n", + " [ 0.66852398 -0.53713763 0.51435285]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:fp_optics: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:cartToSphere: vec: [[ 0.21141635 0.48230285 -0.85011005]\n", + " [ 0.18785991 0.47213982 -0.86127385]\n", + " [ 0.16367992 0.46139295 -0.87196641]\n", + " [ 0.13896491 0.45008441 -0.88210701]\n", + " [ 0.11380482 0.43824101 -0.89162396]\n", + " [ 0.08829265 0.42589503 -0.90045423]\n", + " [ 0.06252518 0.4130848 -0.90854364]\n", + " [ 0.03660284 0.39985476 -0.91584737]\n", + " [ 0.21141635 0.48230285 -0.85011005]\n", + " [ 0.22581473 0.45886954 -0.85932907]\n", + " [ 0.23989525 0.43509072 -0.86784004]\n", + " [ 0.25360317 0.41106353 -0.87562104]\n", + " [ 0.2668849 0.38688892 -0.88266042]\n", + " [ 0.27968761 0.36267146 -0.88895684]\n", + " [ 0.29195873 0.3385194 -0.89451926]\n", + " [ 0.30364567 0.31454499 -0.89936686]\n", + " [ 0.03660284 0.39985476 -0.91584737]\n", + " [ 0.05162696 0.37565688 -0.92531971]\n", + " [ 0.06655418 0.35119811 -0.93393277]\n", + " [ 0.0813263 0.32657965 -0.94166436]\n", + " [ 0.09588734 0.30190433 -0.94850377]\n", + " [ 0.11018366 0.277276 -0.95445146]\n", + " [ 0.12416365 0.25279984 -0.95951844]\n", + " [ 0.13777681 0.22858366 -0.96372561]\n", + " [ 0.30364567 0.31454499 -0.89936686]\n", + " [ 0.28172421 0.30314032 -0.91035016]\n", + " [ 0.25905628 0.29139421 -0.92085789]\n", + " [ 0.23573456 0.27933155 -0.93080777]\n", + " [ 0.21185183 0.26698208 -0.94012732]\n", + " [ 0.18750144 0.25438048 -0.9487538 ]\n", + " [ 0.16277783 0.24156631 -0.95663425]\n", + " [ 0.13777681 0.22858366 -0.96372561]\n", + " [ 0.2012779 0.47786501 -0.85506271]\n", + " [ 0.17197711 0.46501319 -0.86843918]\n", + " [ 0.14182753 0.45130613 -0.88102652]\n", + " [ 0.11099406 0.43679121 -0.89268906]\n", + " [ 0.07964798 0.42152795 -0.90331079]\n", + " [ 0.04796903 0.40558946 -0.9127958 ]\n", + " [ 0.21765044 0.47210031 -0.85425382]\n", + " [ 0.23509097 0.4431352 -0.86508001]\n", + " [ 0.25199966 0.41374726 -0.87481963]\n", + " [ 0.26827738 0.38412076 -0.88344693]\n", + " [ 0.28382683 0.35444822 -0.89095948]\n", + " [ 0.29855121 0.32493059 -0.89737801]\n", + " [ 0.0432503 0.38938876 -0.9200575 ]\n", + " [ 0.06160593 0.35954374 -0.93109237]\n", + " [ 0.07975781 0.32940708 -0.9408133 ]\n", + " [ 0.09760189 0.29916748 -0.94919581]\n", + " [ 0.11503944 0.26901616 -0.95624068]\n", + " [ 0.13197594 0.23914776 -0.9619723 ]\n", + " [ 0.29414611 0.30969769 -0.90419323]\n", + " [ 0.26676406 0.29548817 -0.917346 ]\n", + " [ 0.23835291 0.28078981 -0.92970155]\n", + " [ 0.20908345 0.26565532 -0.94112239]\n", + " [ 0.17912759 0.25014856 -0.95149304]\n", + " [ 0.14865974 0.23434426 -0.96072007]\n", + " [ 0.21138667 0.48218967 -0.85018163]\n", + " [ 0.21138667 0.48218967 -0.85018163]\n", + " [ 0.1378168 0.22871054 -0.96368979]\n", + " [ 0.1378168 0.22871054 -0.96368979]\n", + " [ 0.20756794 0.46773627 -0.85914977]\n", + " [ 0.2250959 0.43866235 -0.87000412]\n", + " [ 0.24211118 0.40917016 -0.87975108]\n", + " [ 0.25851486 0.37944441 -0.8883648 ]\n", + " [ 0.27421011 0.34967764 -0.89584282]\n", + " [ 0.28910063 0.32007059 -0.90220599]\n", + " [ 0.17833378 0.45478554 -0.87256356]\n", + " [ 0.19608761 0.42544089 -0.88348724]\n", + " [ 0.21338314 0.39569357 -0.89324926]\n", + " [ 0.2301217 0.36572961 -0.90182363]\n", + " [ 0.24620768 0.33574173 -0.90920804]\n", + " [ 0.26154641 0.30592976 -0.91542365]\n", + " [ 0.14823921 0.44099855 -0.88518101]\n", + " [ 0.16618685 0.41143955 -0.89615815]\n", + " [ 0.18373146 0.38149745 -0.90592629]\n", + " [ 0.20077399 0.35135963 -0.91445952]\n", + " [ 0.21721941 0.32121888 -0.92175602]\n", + " [ 0.23297445 0.29127392 -0.92783749]\n", + " [ 0.11744886 0.42642322 -0.89686621]\n", + " [ 0.13555799 0.39670789 -0.90788043]\n", + " [ 0.15332108 0.36663284 -0.91764536]\n", + " [ 0.17063802 0.33638655 -0.92613539]\n", + " [ 0.18741351 0.30616172 -0.93334944]\n", + " [ 0.20355493 0.27615578 -0.93931005]\n", + " [ 0.08613363 0.4111197 -0.90750294]\n", + " [ 0.104371 0.38130781 -0.91853745]\n", + " [ 0.12232146 0.35116311 -0.92828979]\n", + " [ 0.13988335 0.32087465 -0.93673481]\n", + " [ 0.15696027 0.2906347 -0.94387232]\n", + " [ 0.17345933 0.26063942 -0.94972573]\n", + " [ 0.05447287 0.39516164 -0.91699508]\n", + " [ 0.07280394 0.36531437 -0.92803286]\n", + " [ 0.09090926 0.33516425 -0.93776353]\n", + " [ 0.10868542 0.3049002 -0.94616243]\n", + " [ 0.12603434 0.27471376 -0.95323014]\n", + " [ 0.14286204 0.24479993 -0.95899084]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:fp_optics: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:cartToSphere: vec: [[ 0.76864524 -0.15157531 -0.62145749]\n", + " [ 0.75892108 -0.13226846 -0.63760791]\n", + " [ 0.74833845 -0.11256577 -0.65369604]\n", + " [ 0.73691985 -0.09253607 -0.66961646]\n", + " [ 0.72469301 -0.07225019 -0.68527364]\n", + " [ 0.71169131 -0.05178131 -0.70058131]\n", + " [ 0.69795444 -0.03120501 -0.71546198]\n", + " [ 0.6835288 -0.01059903 -0.72984658]\n", + " [ 0.76864524 -0.15157531 -0.62145749]\n", + " [ 0.75497539 -0.17179138 -0.6328506 ]\n", + " [ 0.74038253 -0.19221372 -0.64411769]\n", + " [ 0.72490416 -0.21275609 -0.65517082]\n", + " [ 0.70858296 -0.23333385 -0.66593205]\n", + " [ 0.69146736 -0.25386341 -0.67633295]\n", + " [ 0.67361215 -0.27426221 -0.686314 ]\n", + " [ 0.65507901 -0.29444889 -0.69582422]\n", + " [ 0.6835288 -0.01059903 -0.72984658]\n", + " [ 0.66868698 -0.03029537 -0.74292659]\n", + " [ 0.65300261 -0.05036797 -0.75567894]\n", + " [ 0.63650866 -0.07073525 -0.76801904]\n", + " [ 0.61924455 -0.09131629 -0.77987019]\n", + " [ 0.60125747 -0.11202947 -0.79116297]\n", + " [ 0.58260319 -0.13279197 -0.80183528]\n", + " [ 0.56334628 -0.15352002 -0.81183285]\n", + " [ 0.65507901 -0.29444889 -0.69582422]\n", + " [ 0.6440747 -0.27574964 -0.71353341]\n", + " [ 0.63232729 -0.25645958 -0.7310203 ]\n", + " [ 0.61985566 -0.23664306 -0.74818382]\n", + " [ 0.60668503 -0.21636728 -0.76493037]\n", + " [ 0.59284807 -0.1957035 -0.78117303]\n", + " [ 0.5783855 -0.17472764 -0.79683152]\n", + " [ 0.56334628 -0.15352002 -0.81183285]\n", + " [ 0.76446682 -0.14327916 -0.62853923]\n", + " [ 0.75196813 -0.11934185 -0.64830661]\n", + " [ 0.73820183 -0.09487801 -0.6678744 ]\n", + " [ 0.72321676 -0.07001718 -0.68706266]\n", + " [ 0.70707448 -0.04489409 -0.70571255]\n", + " [ 0.68985079 -0.0196488 -0.72368488]\n", + " [ 0.76276875 -0.1602934 -0.62649012]\n", + " [ 0.7453889 -0.18522009 -0.64038185]\n", + " [ 0.72665938 -0.21037085 -0.6539956 ]\n", + " [ 0.70665659 -0.23558919 -0.66718378]\n", + " [ 0.68546974 -0.26072126 -0.67982031]\n", + " [ 0.66320257 -0.28561553 -0.69179919]\n", + " [ 0.67721385 -0.01920584 -0.73553554]\n", + " [ 0.65845373 -0.04360981 -0.75135668]\n", + " [ 0.63846011 -0.06849759 -0.76660079]\n", + " [ 0.61730279 -0.09372001 -0.78112344]\n", + " [ 0.59506874 -0.11912677 -0.79479684]\n", + " [ 0.5718643 -0.14456493 -0.80750988]\n", + " [ 0.65043815 -0.28630381 -0.70353418]\n", + " [ 0.63645009 -0.26297999 -0.72510192]\n", + " [ 0.62136386 -0.23883262 -0.7462345 ]\n", + " [ 0.60522321 -0.21398409 -0.7667566 ]\n", + " [ 0.58808833 -0.1885657 -0.78650816]\n", + " [ 0.57003765 -0.16271909 -0.80534439]\n", + " [ 0.76856834 -0.15157872 -0.62155177]\n", + " [ 0.76856834 -0.15157872 -0.62155177]\n", + " [ 0.56346543 -0.15352211 -0.81174976]\n", + " [ 0.56346543 -0.15352211 -0.81174976]\n", + " [ 0.75862908 -0.15199735 -0.63354458]\n", + " [ 0.74114395 -0.17694395 -0.64760828]\n", + " [ 0.72231281 -0.20212969 -0.66136812]\n", + " [ 0.70221129 -0.22739828 -0.67467721]\n", + " [ 0.68092798 -0.25259578 -0.68740997]\n", + " [ 0.6585664 -0.2775702 -0.69946057]\n", + " [ 0.74602733 -0.12805671 -0.65348658]\n", + " [ 0.72825998 -0.15302281 -0.66799807]\n", + " [ 0.7091593 -0.1782718 -0.682138 ]\n", + " [ 0.68879862 -0.2036482 -0.69576136]\n", + " [ 0.66726497 -0.22899784 -0.70874357]\n", + " [ 0.64466155 -0.25416751 -0.72097876]\n", + " [ 0.73216495 -0.10356972 -0.6732071 ]\n", + " [ 0.71413753 -0.12849989 -0.68811 ]\n", + " [ 0.69479283 -0.15375802 -0.70258195]\n", + " [ 0.67420213 -0.17918975 -0.71647926]\n", + " [ 0.6524514 -0.20464103 -0.72967748]\n", + " [ 0.62964398 -0.22995772 -0.74207001]\n", + " [ 0.71709007 -0.07866578 -0.69252691]\n", + " [ 0.69882259 -0.10350396 -0.70776685]\n", + " [ 0.67925757 -0.1287161 -0.72252427]\n", + " [ 0.65846488 -0.15414927 -0.73665596]\n", + " [ 0.63653007 -0.17965001 -0.7500369 ]\n", + " [ 0.61355709 -0.20506378 -0.7625592 ]\n", + " [ 0.70086363 -0.05347975 -0.71128762]\n", + " [ 0.68237458 -0.07817016 -0.72681109]\n", + " [ 0.66261194 -0.10328107 -0.74180755]\n", + " [ 0.64164503 -0.12866116 -0.75613356]\n", + " [ 0.61955962 -0.15415809 -0.76966302]\n", + " [ 0.5964606 -0.17961755 -0.78228658]\n", + " [ 0.68356119 -0.02815214 -0.72935009]\n", + " [ 0.66486855 -0.05264022 -0.74510323]\n", + " [ 0.64493105 -0.07759556 -0.7602913 ]\n", + " [ 0.62381825 -0.10286849 -0.7747702 ]\n", + " [ 0.60161672 -0.12830812 -0.78841255]\n", + " [ 0.57843243 -0.15376107 -0.80110765]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:fp_optics: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:cartToSphere: vec: [[ 0.05204091 -0.23034213 0.97171716]\n", + " [ 0.04618059 -0.25699237 0.96530942]\n", + " [ 0.04016823 -0.28396028 0.9579943 ]\n", + " [ 0.03402574 -0.31112713 0.949759 ]\n", + " [ 0.02777542 -0.33837717 0.94060056]\n", + " [ 0.0214404 -0.3655961 0.93052663]\n", + " [ 0.01504477 -0.39267052 0.91955615]\n", + " [ 0.00861349 -0.41948851 0.90771978]\n", + " [ 0.05204091 -0.23034213 0.97171716]\n", + " [ 0.02365629 -0.22475753 0.97412752]\n", + " [-0.00467721 -0.2190957 0.97569216]\n", + " [-0.03284936 -0.21338415 0.97641596]\n", + " [-0.0607507 -0.20765447 0.97631397]\n", + " [-0.08827256 -0.20194274 0.97541124]\n", + " [-0.11530685 -0.19628992 0.97374257]\n", + " [-0.14174566 -0.19074206 0.97135248]\n", + " [ 0.00861349 -0.41948851 0.90771978]\n", + " [-0.02070414 -0.41356426 0.9102395 ]\n", + " [-0.04990833 -0.4072902 0.91193413]\n", + " [-0.07888421 -0.40069637 0.91280869]\n", + " [-0.10752037 -0.39381686 0.91287877]\n", + " [-0.13570926 -0.38668951 0.91217006]\n", + " [-0.16334654 -0.37935588 0.91071786]\n", + " [-0.19032946 -0.37186152 0.90856684]\n", + " [-0.14174566 -0.19074206 0.97135248]\n", + " [-0.14910941 -0.21600833 0.96493875]\n", + " [-0.15637251 -0.24167534 0.95767462]\n", + " [-0.16351131 -0.26761985 0.94954919]\n", + " [-0.17050154 -0.29372325 0.94056147]\n", + " [-0.17731819 -0.31987112 0.93072054]\n", + " [-0.18393593 -0.34595286 0.92004575]\n", + " [-0.19032946 -0.37186152 0.90856684]\n", + " [ 0.04940847 -0.24189587 0.96904344]\n", + " [ 0.04212011 -0.27478708 0.96058209]\n", + " [ 0.03462529 -0.30803707 0.95074405]\n", + " [ 0.02696493 -0.34143162 0.93951974]\n", + " [ 0.01918159 -0.37476025 0.92692331]\n", + " [ 0.01132001 -0.40781475 0.91299452]\n", + " [ 0.03964576 -0.22800869 0.97285161]\n", + " [ 0.00487699 -0.22110862 0.97523699]\n", + " [-0.02970533 -0.21411926 0.97635574]\n", + " [-0.06389935 -0.20709704 0.97623137]\n", + " [-0.09750501 -0.20010844 0.97490994]\n", + " [-0.13032339 -0.19323099 0.97245956]\n", + " [-0.00415357 -0.41685914 0.90896161]\n", + " [-0.04002357 -0.40935975 0.91149477]\n", + " [-0.07560877 -0.40136449 0.91279234]\n", + " [-0.11070254 -0.39293448 0.91287866]\n", + " [-0.14510683 -0.38413934 0.91180095]\n", + " [-0.17863031 -0.37505722 0.90962811]\n", + " [-0.1448776 -0.20172015 0.96866891]\n", + " [-0.15383716 -0.23297324 0.9602383 ]\n", + " [-0.1626223 -0.26470523 0.95051835]\n", + " [-0.17118855 -0.29669582 0.9395031 ]\n", + " [-0.17948999 -0.32873436 0.92720929]\n", + " [-0.18747992 -0.36061871 0.91367687]\n", + " [ 0.05192413 -0.23041365 0.97170646]\n", + " [ 0.05192413 -0.23041365 0.97170646]\n", + " [-0.19021696 -0.37179918 0.90861591]\n", + " [-0.19021696 -0.37179918 0.90861591]\n", + " [ 0.0370826 -0.23947942 0.97019302]\n", + " [ 0.00218281 -0.23252829 0.97258718]\n", + " [-0.03252477 -0.22546044 0.97370926]\n", + " [-0.06683793 -0.21833206 0.97358297]\n", + " [-0.10055672 -0.21120919 0.97225461]\n", + " [-0.13348261 -0.204169 0.96979246]\n", + " [ 0.02967493 -0.2723412 0.96174304]\n", + " [-0.00555254 -0.26525555 0.96416216]\n", + " [-0.04057083 -0.25797762 0.96529869]\n", + " [-0.0751766 -0.25056324 0.96517695]\n", + " [-0.1091702 -0.24307752 0.96384396]\n", + " [-0.14235454 -0.23559647 0.96136855]\n", + " [ 0.02208372 -0.30556639 0.95191465]\n", + " [-0.01340614 -0.29836075 0.95435902]\n", + " [-0.04866918 -0.2908898 0.95551789]\n", + " [-0.08350077 -0.28320966 0.95541609]\n", + " [-0.11770158 -0.27538524 0.95410131]\n", + " [-0.15107617 -0.2674918 0.95164286]\n", + " [ 0.01435051 -0.33894084 0.94069824]\n", + " [-0.02133473 -0.33162961 0.9431684 ]\n", + " [-0.05677523 -0.32398194 0.94435813]\n", + " [-0.09176524 -0.31605497 0.94429254]\n", + " [-0.12610572 -0.3079143 0.94301969]\n", + " [-0.15960285 -0.29963519 0.94060921]\n", + " [ 0.00651865 -0.37225422 0.92810791]\n", + " [-0.02929298 -0.36485227 0.9306045 ]\n", + " [-0.06484224 -0.35704455 0.93183404]\n", + " [-0.09992262 -0.34888977 0.93182155]\n", + " [-0.13433545 -0.34045497 0.93061506]\n", + " [-0.16788827 -0.33181626 0.92828417]\n", + " [-0.00136648 -0.40529852 0.91418337]\n", + " [-0.03723386 -0.39782161 0.91670693]\n", + " [-0.07282208 -0.38987185 0.91798523]\n", + " [-0.10792442 -0.38150972 0.91804284]\n", + " [-0.14234267 -0.37280416 0.91692727]\n", + " [-0.17588531 -0.36383271 0.91470767]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:fp_optics: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:cartToSphere: vec: [[0.55741939 0.38351776 0.73634078]\n", + " [0.56635981 0.40336673 0.7187015 ]\n", + " [0.57501952 0.42328528 0.70013008]\n", + " [0.5833386 0.44317482 0.68067037]\n", + " [0.5912637 0.46294256 0.66037219]\n", + " [0.59874731 0.48249982 0.63929303]\n", + " [0.60574747 0.50176083 0.61749986]\n", + " [0.61222806 0.5206426 0.59506982]\n", + " [0.55741939 0.38351776 0.73634078]\n", + " [0.57936178 0.3663961 0.72807542]\n", + " [0.60077948 0.34909312 0.7191648 ]\n", + " [0.62159663 0.33168317 0.70965055]\n", + " [0.64174468 0.3142456 0.69958092]\n", + " [0.6611625 0.2968645 0.68901061]\n", + " [0.6797966 0.27962776 0.67800066]\n", + " [0.69760177 0.26262463 0.66661839]\n", + " [0.61222806 0.5206426 0.59506982]\n", + " [0.63487186 0.50281626 0.58661191]\n", + " [0.65687151 0.48459906 0.5776535 ]\n", + " [0.67814829 0.46606954 0.56823769]\n", + " [0.69863395 0.4473093 0.55841292]\n", + " [0.71827009 0.42840286 0.54823267]\n", + " [0.73700653 0.40943878 0.53775577]\n", + " [0.7547994 0.39051126 0.52704726]\n", + " [0.69760177 0.26262463 0.66661839]\n", + " [0.70731588 0.28058106 0.64882857]\n", + " [0.71660815 0.29879355 0.63023422]\n", + " [0.72541638 0.31716867 0.6108806 ]\n", + " [0.73368507 0.33561415 0.59082093]\n", + " [0.7413654 0.35404143 0.57011578]\n", + " [0.74841527 0.37236674 0.54883293]\n", + " [0.7547994 0.39051126 0.52704726]\n", + " [0.56142397 0.39209844 0.72873996]\n", + " [0.57220125 0.41648437 0.70648885]\n", + " [0.58249648 0.44087626 0.68288065]\n", + " [0.59220871 0.46510093 0.65800454]\n", + " [0.60125045 0.48899501 0.63196659]\n", + " [0.60954686 0.51240168 0.60489433]\n", + " [0.56707699 0.37614689 0.73275999]\n", + " [0.59362741 0.35503075 0.72219088]\n", + " [0.61931342 0.33371544 0.71069325]\n", + " [0.64400577 0.31234494 0.69835321]\n", + " [0.66759196 0.29107397 0.68527142]\n", + " [0.6899769 0.27006512 0.67156289]\n", + " [0.62215334 0.51285936 0.59152388]\n", + " [0.64948286 0.49073899 0.58081603]\n", + " [0.67576553 0.46810933 0.56939846]\n", + " [0.70087133 0.44511935 0.55735818]\n", + " [0.72469256 0.42192482 0.54479367]\n", + " [0.7471395 0.39869102 0.5318158 ]\n", + " [0.7018253 0.27047454 0.65900287]\n", + " [0.71345533 0.29266737 0.63665321]\n", + " [0.72438927 0.31515192 0.61313902]\n", + " [0.73452214 0.33775761 0.58855503]\n", + " [0.74376411 0.36032155 0.56301273]\n", + " [0.75204045 0.38269154 0.53663986]\n", + " [0.55752621 0.38352724 0.73625497]\n", + " [0.55752621 0.38352724 0.73625497]\n", + " [0.75471955 0.39051415 0.52715946]\n", + " [0.75471955 0.39051415 0.52715946]\n", + " [0.57101131 0.38468736 0.72523218]\n", + " [0.59765493 0.3634686 0.71463219]\n", + " [0.62341852 0.3420278 0.70311189]\n", + " [0.64817264 0.32050908 0.69075767]\n", + " [0.67180473 0.29906765 0.67767024]\n", + " [0.69421945 0.27786799 0.66396441]\n", + " [0.58188037 0.40899567 0.70294934]\n", + " [0.60875675 0.38751498 0.69227694]\n", + " [0.63471173 0.36575064 0.68071102]\n", + " [0.65961534 0.34384666 0.66833905]\n", + " [0.68335527 0.32195825 0.65526213]\n", + " [0.70583624 0.30025234 0.64159468]\n", + " [0.59224986 0.43332392 0.67931619]\n", + " [0.61931235 0.41162363 0.6685942 ]\n", + " [0.64541623 0.38958255 0.6570109 ]\n", + " [0.67043112 0.3673448 0.64465488]\n", + " [0.69424552 0.34506472 0.63162766]\n", + " [0.71676511 0.32290902 0.61804332]\n", + " [0.60201846 0.45749915 0.65442211]\n", + " [0.62921932 0.43562163 0.64367449]\n", + " [0.65542875 0.41334982 0.63210369]\n", + " [0.68051618 0.3908287 0.61979888]\n", + " [0.70437131 0.36821206 0.60686155]\n", + " [0.72690137 0.34566557 0.59340519]\n", + " [0.61109804 0.48135847 0.62837347]\n", + " [0.63838795 0.45934708 0.61762536]\n", + " [0.66465875 0.43689075 0.60609836]\n", + " [0.6897799 0.41413602 0.59388134]\n", + " [0.71364241 0.39123699 0.58107498]\n", + " [0.73615515 0.3683586 0.56779181]\n", + " [0.61941305 0.50474564 0.60129802]\n", + " [0.64674131 0.48264549 0.59057516]\n", + " [0.67302877 0.46005233 0.57912358]\n", + " [0.69814525 0.43711454 0.56703094]\n", + " [0.7219828 0.41398735 0.55439635]\n", + " [0.74445147 0.39083582 0.54133112]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:cartToSphere: vec: [[-0.56686979 0.47015154 -0.67647334]\n", + " [-0.5886636 0.46452268 -0.66158435]\n", + " [-0.61048923 0.45829117 -0.64596602]\n", + " [-0.63222471 0.45147855 -0.62964994]\n", + " [-0.65375661 0.44410768 -0.612675 ]\n", + " [-0.67497947 0.4362033 -0.59508772]\n", + " [-0.69579528 0.42779257 -0.57694232]\n", + " [-0.71611337 0.41890572 -0.55830068]\n", + " [-0.56686979 0.47015154 -0.67647334]\n", + " [-0.56760982 0.44752444 -0.69104339]\n", + " [-0.56807014 0.42402771 -0.70533454]\n", + " [-0.56820999 0.39974942 -0.71926199]\n", + " [-0.56799748 0.3747791 -0.7327479 ]\n", + " [-0.5674094 0.34920854 -0.74572111]\n", + " [-0.56643074 0.32313254 -0.75811712]\n", + " [-0.56505435 0.29664942 -0.76987837]\n", + " [-0.71611337 0.41890572 -0.55830068]\n", + " [-0.71849877 0.39499594 -0.57248382]\n", + " [-0.72035857 0.37027693 -0.58649682]\n", + " [-0.72165272 0.34483013 -0.60025788]\n", + " [-0.72234865 0.31874039 -0.61369128]\n", + " [-0.72242132 0.29209786 -0.62672664]\n", + " [-0.72185355 0.26499895 -0.63929885]\n", + " [-0.72063643 0.23754621 -0.65134855]\n", + " [-0.56505435 0.29664942 -0.76987837]\n", + " [-0.58790192 0.28925534 -0.75544866]\n", + " [-0.6107271 0.28147507 -0.74012445]\n", + " [-0.63341338 0.27332741 -0.72393344]\n", + " [-0.65585039 0.26483389 -0.70691108]\n", + " [-0.67793272 0.25601941 -0.68910179]\n", + " [-0.69955976 0.24691268 -0.67055967]\n", + " [-0.72063643 0.23754621 -0.65134855]\n", + " [-0.57636329 0.46769654 -0.67012335]\n", + " [-0.60311232 0.46038876 -0.65138139]\n", + " [-0.6297869 0.45219716 -0.63157437]\n", + " [-0.65617473 0.44316329 -0.61077085]\n", + " [-0.68208156 0.43333272 -0.58905644]\n", + " [-0.70733001 0.42275674 -0.5665342 ]\n", + " [-0.56729864 0.46037994 -0.68280493]\n", + " [-0.56802429 0.43205106 -0.70048576]\n", + " [-0.5682881 0.40250335 -0.71766266]\n", + " [-0.5680277 0.37190101 -0.73418947]\n", + " [-0.56720029 0.34041307 -0.74993518]\n", + " [-0.56578153 0.30821555 -0.76478392]\n", + " [-0.71714634 0.40861691 -0.56456474]\n", + " [-0.71972117 0.37875902 -0.58184452]\n", + " [-0.72146604 0.34776622 -0.59878661]\n", + " [-0.72231788 0.3157932 -0.61524916]\n", + " [-0.72223065 0.28300605 -0.63110258]\n", + " [-0.72117615 0.24958482 -0.64622936]\n", + " [-0.57501634 0.29356568 -0.76365922]\n", + " [-0.60301836 0.28424243 -0.7453691 ]\n", + " [-0.63087022 0.27435736 -0.72576222]\n", + " [-0.65836627 0.26394891 -0.70490058]\n", + " [-0.68531242 0.25306301 -0.68286601]\n", + " [-0.71152571 0.24175406 -0.65976219]\n", + " [-0.56694707 0.47005754 -0.67647389]\n", + " [-0.56694707 0.47005754 -0.67647389]\n", + " [-0.72057067 0.237673 -0.65137505]\n", + " [-0.72057067 0.237673 -0.65137505]\n", + " [-0.57677089 0.45796648 -0.67646289]\n", + " [-0.57763525 0.42949235 -0.69417133]\n", + " [-0.57800841 0.39980371 -0.71138124]\n", + " [-0.5778285 0.36906379 -0.72794653]\n", + " [-0.57705314 0.33744099 -0.74373601]\n", + " [-0.57565833 0.30511124 -0.75863339]\n", + " [-0.60367084 0.45052337 -0.6577311 ]\n", + " [-0.60490914 0.42167589 -0.67548084]\n", + " [-0.60557793 0.39162635 -0.69275116]\n", + " [-0.60561654 0.3605351 -0.70939626]\n", + " [-0.60498341 0.32856899 -0.72528442]\n", + " [-0.60365498 0.29590408 -0.74029821]\n", + " [-0.63048531 0.44221567 -0.63791346]\n", + " [-0.63207134 0.41304965 -0.65564915]\n", + " [-0.63301684 0.3826944 -0.67292992]\n", + " [-0.63326168 0.35130768 -0.68961044]\n", + " [-0.63276429 0.31905527 -0.7055587 ]\n", + " [-0.63150084 0.28611389 -0.72065632]\n", + " [-0.65700264 0.43308414 -0.61707832]\n", + " [-0.65891209 0.40365222 -0.63474384]\n", + " [-0.660117 0.37304483 -0.65198397]\n", + " [-0.66055697 0.34141782 -0.66865414]\n", + " [-0.66018962 0.30893649 -0.68462246]\n", + " [-0.65899018 0.27577855 -0.69977006]\n", + " [-0.6830289 0.42317365 -0.59531133]\n", + " [-0.68523796 0.39352677 -0.6128504 ]\n", + " [-0.68668504 0.36271994 -0.62999833]\n", + " [-0.68730882 0.33090792 -0.64661158]\n", + " [-0.68706549 0.2982561 -0.66255891]\n", + " [-0.68592893 0.26494327 -0.6777216 ]\n", + " [-0.70838652 0.41253505 -0.57271578]\n", + " [-0.71087051 0.38272336 -0.59007283]\n", + " [-0.71254124 0.35176972 -0.60707747]\n", + " [-0.7133361 0.31982869 -0.62358738]\n", + " [-0.71320963 0.28706612 -0.63947249]\n", + " [-0.71213416 0.2536618 -0.65461488]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:fp_optics: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:fp_optics: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:cartToSphere: vec: [[-0.37880234 0.7141725 -0.58861398]\n", + " [-0.36376986 0.70399926 -0.60996437]\n", + " [-0.34814553 0.69305443 -0.631245 ]\n", + " [-0.33197563 0.68135084 -0.6523444 ]\n", + " [-0.31531051 0.66890879 -0.67315698]\n", + " [-0.29820534 0.65575676 -0.69358247]\n", + " [-0.28072037 0.64193183 -0.71352618]\n", + " [-0.26292057 0.62747964 -0.73289977]\n", + " [-0.37880234 0.7141725 -0.58861398]\n", + " [-0.35660892 0.73139443 -0.58128502]\n", + " [-0.33413474 0.7479132 -0.57356763]\n", + " [-0.31147035 0.76367193 -0.56550102]\n", + " [-0.28870869 0.77862144 -0.5571319 ]\n", + " [-0.26594476 0.79271987 -0.54851489]\n", + " [-0.24327577 0.80593206 -0.53971327]\n", + " [-0.22080176 0.81822863 -0.53079986]\n", + " [-0.26292057 0.62747964 -0.73289977]\n", + " [-0.24004767 0.64533909 -0.72519968]\n", + " [-0.21703114 0.6625616 -0.71687489]\n", + " [-0.19396473 0.67908745 -0.70796746]\n", + " [-0.17094299 0.6948658 -0.69852703]\n", + " [-0.14806048 0.70985486 -0.68861032]\n", + " [-0.1254117 0.72402148 -0.67828077]\n", + " [-0.10309179 0.7373404 -0.66760859]\n", + " [-0.22080176 0.81822863 -0.53079986]\n", + " [-0.20483095 0.80917401 -0.55071018]\n", + " [-0.18848967 0.79924847 -0.57067812]\n", + " [-0.17182767 0.78846826 -0.59058704]\n", + " [-0.15489819 0.77685529 -0.61032976]\n", + " [-0.13775818 0.76443797 -0.62980733]\n", + " [-0.12046815 0.75125192 -0.64892833]\n", + " [-0.10309179 0.7373404 -0.66760859]\n", + " [-0.37224811 0.7098926 -0.59789952]\n", + " [-0.35341987 0.69690471 -0.62403383]\n", + " [-0.33374839 0.68276973 -0.64995193]\n", + " [-0.3133246 0.66752186 -0.67545707]\n", + " [-0.29225013 0.6512136 -0.7003647 ]\n", + " [-0.27063786 0.63391677 -0.72450305]\n", + " [-0.36911549 0.7217306 -0.58554137]\n", + " [-0.34171437 0.74237315 -0.5762928 ]\n", + " [-0.31398134 0.76190216 -0.56649873]\n", + " [-0.28608649 0.78022388 -0.55624205]\n", + " [-0.25820475 0.79726119 -0.5456234 ]\n", + " [-0.2305162 0.8129518 -0.53476317]\n", + " [-0.25303283 0.63539098 -0.7295565 ]\n", + " [-0.22489141 0.65685904 -0.71969442]\n", + " [-0.19662716 0.67730999 -0.70893507]\n", + " [-0.16841384 0.69664656 -0.69736673]\n", + " [-0.14042557 0.71479171 -0.68509376]\n", + " [-0.11283647 0.7316878 -0.67223574]\n", + " [-0.21396356 0.81434798 -0.53949696]\n", + " [-0.19413475 0.80266243 -0.56395453]\n", + " [-0.17379836 0.78968432 -0.58838152]\n", + " [-0.15305094 0.77545157 -0.61257674]\n", + " [-0.13199732 0.76001659 -0.63635799]\n", + " [-0.11075024 0.7434481 -0.65955994]\n", + " [-0.37867667 0.71419906 -0.58866262]\n", + " [-0.37867667 0.71419906 -0.58866262]\n", + " [-0.10322694 0.73734507 -0.66758254]\n", + " [-0.10322694 0.73734507 -0.66758254]\n", + " [-0.36265033 0.71745401 -0.59476423]\n", + " [-0.33515218 0.73818166 -0.58545782]\n", + " [-0.30733245 0.7577963 -0.57557931]\n", + " [-0.27936173 0.77620425 -0.56521146]\n", + " [-0.25141509 0.7933289 -0.55445442]\n", + " [-0.22367227 0.80910886 -0.54342761]\n", + " [-0.3437304 0.70454152 -0.62086284]\n", + " [-0.3159926 0.72548656 -0.61140652]\n", + " [-0.28796445 0.7453234 -0.6013065 ]\n", + " [-0.25981796 0.76395822 -0.5906458 ]\n", + " [-0.23172858 0.78131548 -0.57952394]\n", + " [-0.20387518 0.79733597 -0.56805832]\n", + " [-0.32398531 0.69046811 -0.64675135]\n", + " [-0.29606115 0.71159521 -0.63716564]\n", + " [-0.26788081 0.73162442 -0.62686967]\n", + " [-0.23961752 0.75046138 -0.61594737]\n", + " [-0.211447 0.76803096 -0.60449865]\n", + " [-0.18354722 0.78427552 -0.59264014]\n", + " [-0.30350654 0.6752676 -0.67223318]\n", + " [-0.27545092 0.69654063 -0.66253902]\n", + " [-0.24717611 0.71673221 -0.65207278]\n", + " [-0.21885617 0.73574717 -0.64091971]\n", + " [-0.19066683 0.75351024 -0.62918079]\n", + " [-0.16278503 0.76996456 -0.61697294]\n", + " [-0.28239624 0.65899206 -0.69712397]\n", + " [-0.25426544 0.68037385 -0.68734308]\n", + " [-0.225955 0.70069713 -0.67673323]\n", + " [-0.19763927 0.71986579 -0.66538107]\n", + " [-0.16949356 0.73780399 -0.65338902]\n", + " [-0.14169366 0.75445492 -0.64087494]\n", + " [-0.26076769 0.64171296 -0.72125216]\n", + " [-0.2326189 0.66316536 -0.71140716]\n", + " [-0.20433215 0.68358872 -0.70068169]\n", + " [-0.17608147 0.70288604 -0.68916365]\n", + " [-0.14804133 0.72098064 -0.67695693]\n", + " [-0.12038632 0.73781516 -0.66418065]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:fp_optics: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:cartToSphere: vec: [[ 9.97989730e-02 -5.55222227e-01 8.25692705e-01]\n", + " [ 1.13327281e-01 -5.74540119e-01 8.10592733e-01]\n", + " [ 1.27034770e-01 -5.93778925e-01 7.94536818e-01]\n", + " [ 1.40861717e-01 -6.12836679e-01 7.77553330e-01]\n", + " [ 1.54749377e-01 -6.31617024e-01 7.59679252e-01]\n", + " [ 1.68639436e-01 -6.50028642e-01 7.40961204e-01]\n", + " [ 1.82474026e-01 -6.67985493e-01 7.21455896e-01]\n", + " [ 1.96196129e-01 -6.85407560e-01 7.01230030e-01]\n", + " [ 9.97989730e-02 -5.55222227e-01 8.25692705e-01]\n", + " [ 7.45707460e-02 -5.68174697e-01 8.19522249e-01]\n", + " [ 4.94094482e-02 -5.80678205e-01 8.12632468e-01]\n", + " [ 2.44156861e-02 -5.92692647e-01 8.05058569e-01]\n", + " [-3.08813054e-04 -6.04185671e-01 7.96843510e-01]\n", + " [-2.46608487e-02 -6.15132953e-01 7.88037621e-01]\n", + " [-4.85348057e-02 -6.25518385e-01 7.78698352e-01]\n", + " [-7.18212238e-02 -6.35334109e-01 7.68890292e-01]\n", + " [ 1.96196129e-01 -6.85407560e-01 7.01230030e-01]\n", + " [ 1.70022241e-01 -6.98693905e-01 6.94923927e-01]\n", + " [ 1.43781578e-01 -7.11312016e-01 6.88013135e-01]\n", + " [ 1.17579753e-01 -7.23221123e-01 6.80533767e-01]\n", + " [ 9.15220815e-02 -7.34389568e-01 6.72529309e-01]\n", + " [ 6.57128178e-02 -7.44794812e-01 6.64050083e-01]\n", + " [ 4.02550930e-02 -7.54423093e-01 6.55152902e-01]\n", + " [ 1.52518396e-02 -7.63268757e-01 6.45901065e-01]\n", + " [-7.18212238e-02 -6.35334109e-01 7.68890292e-01]\n", + " [-6.03436503e-02 -6.54513209e-01 7.53638576e-01]\n", + " [-4.84450357e-02 -6.73555952e-01 7.37546920e-01]\n", + " [-3.61891999e-02 -6.92356113e-01 7.20647871e-01]\n", + " [-2.36357923e-02 -7.10815284e-01 7.02981495e-01]\n", + " [-1.08415250e-02 -7.28842179e-01 6.84595895e-01]\n", + " [ 2.13882950e-03 -7.46352427e-01 6.65547504e-01]\n", + " [ 1.52518396e-02 -7.63268757e-01 6.45901065e-01]\n", + " [ 1.05584823e-01 -5.63693004e-01 8.19208180e-01]\n", + " [ 1.22292386e-01 -5.87329481e-01 8.00055407e-01]\n", + " [ 1.39209751e-01 -6.10745091e-01 7.79494117e-01]\n", + " [ 1.56228419e-01 -6.33760178e-01 7.57588753e-01]\n", + " [ 1.73241044e-01 -6.56206658e-01 7.34425192e-01]\n", + " [ 1.90141422e-01 -6.77928588e-01 7.10112012e-01]\n", + " [ 8.88430660e-02 -5.60988119e-01 8.23042672e-01]\n", + " [ 5.79547051e-02 -5.76566531e-01 8.14992201e-01]\n", + " [ 2.72666376e-02 -5.91429708e-01 8.05895422e-01]\n", + " [-3.03432035e-03 -6.05514851e-01 7.95828222e-01]\n", + " [-3.27580764e-02 -6.18777204e-01 7.84883227e-01]\n", + " [-6.17086863e-02 -6.31190539e-01 7.73169155e-01]\n", + " [ 1.84752518e-01 -6.91221063e-01 6.98627189e-01]\n", + " [ 1.52615749e-01 -7.07061110e-01 6.90487523e-01]\n", + " [ 1.20483697e-01 -7.21856062e-01 6.81474507e-01]\n", + " [ 8.85504237e-02 -7.35543838e-01 6.71665159e-01]\n", + " [ 5.70078419e-02 -7.48082900e-01 6.61152086e-01]\n", + " [ 2.60456418e-02 -7.59451318e-01 6.50042552e-01]\n", + " [-6.67939523e-02 -6.43673516e-01 7.62379809e-01]\n", + " [-5.24340511e-02 -6.67102240e-01 7.43118612e-01]\n", + " [-3.75058386e-02 -6.90219700e-01 7.22627206e-01]\n", + " [-2.21207925e-02 -7.12841534e-01 7.00976189e-01]\n", + " [-6.38342785e-03 -7.34799668e-01 6.78254156e-01]\n", + " [ 9.60599099e-03 -7.55941703e-01 6.54568458e-01]\n", + " [ 9.97585852e-02 -5.55333308e-01 8.25622881e-01]\n", + " [ 9.97585852e-02 -5.55333308e-01 8.25622881e-01]\n", + " [ 1.52914398e-02 -7.63183086e-01 6.46001354e-01]\n", + " [ 1.52914398e-02 -7.63183086e-01 6.46001354e-01]\n", + " [ 9.46252651e-02 -5.69368336e-01 8.16618490e-01]\n", + " [ 6.36030928e-02 -5.84988126e-01 8.08544086e-01]\n", + " [ 3.27682258e-02 -5.99867623e-01 7.99427970e-01]\n", + " [ 2.30755574e-03 -6.13943725e-01 7.89346424e-01]\n", + " [-2.75894240e-02 -6.27171446e-01 7.78392447e-01]\n", + " [-5.67281098e-02 -6.39524363e-01 7.66674971e-01]\n", + " [ 1.11221719e-01 -5.93056096e-01 7.97442284e-01]\n", + " [ 7.98597566e-02 -6.08775864e-01 7.89312592e-01]\n", + " [ 4.86495548e-02 -6.23687638e-01 7.80158286e-01]\n", + " [ 1.77788294e-02 -6.37727739e-01 7.70056650e-01]\n", + " [-1.25638666e-02 -6.50850922e-01 7.59101591e-01]\n", + " [-4.21870473e-02 -6.63030645e-01 7.47402580e-01]\n", + " [ 1.28048492e-01 -6.16512647e-01 7.76862754e-01]\n", + " [ 9.64054504e-02 -6.32306101e-01 7.68696939e-01]\n", + " [ 6.48797429e-02 -6.47228515e-01 7.59530032e-01]\n", + " [ 3.36605456e-02 -6.61216050e-01 7.49439993e-01]\n", + " [ 2.93647272e-03 -6.74223778e-01 7.38521275e-01]\n", + " [-2.71029146e-02 -6.86225679e-01 7.26883587e-01]\n", + " [ 1.44997670e-01 -6.39558020e-01 7.54944511e-01]\n", + " [ 1.13133698e-01 -6.55398028e-01 7.46762473e-01]\n", + " [ 8.13531358e-02 -6.70308703e-01 7.37609592e-01]\n", + " [ 4.98468714e-02 -6.84226420e-01 7.27564083e-01]\n", + " [ 1.88042743e-02 -6.97107020e-01 7.16720449e-01]\n", + " [-1.15859000e-02 -7.08925511e-01 7.05188192e-01]\n", + " [ 1.61962532e-01 -6.62023839e-01 7.31773581e-01]\n", + " [ 1.29939553e-01 -6.77882723e-01 7.23595693e-01]\n", + " [ 9.79663133e-02 -6.92759147e-01 7.14483986e-01]\n", + " [ 6.62353161e-02 -7.06590005e-01 7.04516464e-01]\n", + " [ 3.49370198e-02 -7.19332189e-01 6.93787148e-01]\n", + " [ 4.26022744e-03 -7.30962010e-01 6.82404858e-01]\n", + " [ 1.78837387e-01 -6.83753950e-01 7.07458639e-01]\n", + " [ 1.46718926e-01 -6.99603821e-01 6.99305405e-01]\n", + " [ 1.14616843e-01 -7.14423845e-01 6.90261942e-01]\n", + " [ 8.27248830e-02 -7.28151646e-01 6.80405595e-01]\n", + " [ 5.12346108e-02 -7.40745281e-01 6.69829414e-01]\n", + " [ 2.03354257e-02 -7.52182388e-01 6.58641121e-01]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:fp_optics: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:cartToSphere: vec: [[ 0.20453634 0.20386774 -0.95739377]\n", + " [ 0.2087303 0.22968046 -0.95062008]\n", + " [ 0.21270422 0.25588361 -0.9430167 ]\n", + " [ 0.2164468 0.28235212 -0.93457373]\n", + " [ 0.21994649 0.30896537 -0.92529128]\n", + " [ 0.22319145 0.33560691 -0.91517953]\n", + " [ 0.22616991 0.36216415 -0.90425898]\n", + " [ 0.22887055 0.38852829 -0.89256039]\n", + " [ 0.20453634 0.20386774 -0.95739377]\n", + " [ 0.1781447 0.20657087 -0.96207741]\n", + " [ 0.15106253 0.20932624 -0.96610695]\n", + " [ 0.12339806 0.21209803 -0.9694263 ]\n", + " [ 0.09525989 0.21485543 -0.97198904]\n", + " [ 0.06675727 0.21757265 -0.9737585 ]\n", + " [ 0.03800052 0.22022854 -0.97470783]\n", + " [ 0.00910112 0.22280622 -0.97482027]\n", + " [ 0.22887055 0.38852829 -0.89256039]\n", + " [ 0.20172683 0.39318946 -0.89705537]\n", + " [ 0.17386554 0.39763257 -0.90092126]\n", + " [ 0.14538972 0.40182188 -0.90410232]\n", + " [ 0.11640362 0.40572588 -0.9065521 ]\n", + " [ 0.08701464 0.40931712 -0.90823342]\n", + " [ 0.05733433 0.41257222 -0.90911877]\n", + " [ 0.02747829 0.4154721 -0.90919078]\n", + " [ 0.00910112 0.22280622 -0.97482027]\n", + " [ 0.01167316 0.24992611 -0.96819455]\n", + " [ 0.01428037 0.27737751 -0.96065487]\n", + " [ 0.0169124 0.3050401 -0.95218932]\n", + " [ 0.01955883 0.33279646 -0.94279583]\n", + " [ 0.0222091 0.36053053 -0.93248297]\n", + " [ 0.0248525 0.38812704 -0.92127073]\n", + " [ 0.02747829 0.4154721 -0.90919078]\n", + " [ 0.20630197 0.21507561 -0.95455853]\n", + " [ 0.21129468 0.24699168 -0.94570062]\n", + " [ 0.21594585 0.27936938 -0.93558545]\n", + " [ 0.22023431 0.3119848 -0.92420903]\n", + " [ 0.22413834 0.34462354 -0.91159016]\n", + " [ 0.22763641 0.37707987 -0.89777082]\n", + " [ 0.19313567 0.20512537 -0.95949059]\n", + " [ 0.16031102 0.20847952 -0.96479877]\n", + " [ 0.12655665 0.21187581 -0.96906762]\n", + " [ 0.0920723 0.21525542 -0.97220769]\n", + " [ 0.05705917 0.2185708 -0.97415145]\n", + " [ 0.02172085 0.22178484 -0.97485368]\n", + " [ 0.21712185 0.39049484 -0.89463506]\n", + " [ 0.18335883 0.39606477 -0.89972898]\n", + " [ 0.14862037 0.40127132 -0.90382151]\n", + " [ 0.11309777 0.40605478 -0.90682325]\n", + " [ 0.07698886 0.4103646 -0.90866584]\n", + " [ 0.04050075 0.41415953 -0.90930279]\n", + " [ 0.01031688 0.23457322 -0.97204371]\n", + " [ 0.01349509 0.26804958 -0.9633106 ]\n", + " [ 0.01671567 0.30190393 -0.9531918 ]\n", + " [ 0.01995944 0.335919 -0.94167938]\n", + " [ 0.02320698 0.36988105 -0.92878924]\n", + " [ 0.02643853 0.4035784 -0.914563 ]\n", + " [ 0.20446209 0.20396432 -0.95738906]\n", + " [ 0.20446209 0.20396432 -0.95738906]\n", + " [ 0.02757161 0.41536985 -0.90923467]\n", + " [ 0.02757161 0.41536985 -0.90923467]\n", + " [ 0.19493316 0.21629911 -0.9566691 ]\n", + " [ 0.16198665 0.21981069 -0.96199978]\n", + " [ 0.12810758 0.22333549 -0.96628656]\n", + " [ 0.09349522 0.22681495 -0.96943985]\n", + " [ 0.05835053 0.23020195 -0.97139193]\n", + " [ 0.02287726 0.23345968 -0.97209732]\n", + " [ 0.19982201 0.24838609 -0.94782673]\n", + " [ 0.16657652 0.25232798 -0.95319613]\n", + " [ 0.13239022 0.25620363 -0.95751372]\n", + " [ 0.0974607 0.25995544 -0.96068964]\n", + " [ 0.06198808 0.26353723 -0.9626555 ]\n", + " [ 0.02617683 0.26691279 -0.96336511]\n", + " [ 0.20439338 0.28092597 -0.93771208]\n", + " [ 0.17091718 0.28527606 -0.94308265]\n", + " [ 0.13649158 0.28948472 -0.947401 ]\n", + " [ 0.10131218 0.29349497 -0.95057695]\n", + " [ 0.06557834 0.29726092 -0.95254156]\n", + " [ 0.02949541 0.30074623 -0.95324799]\n", + " [ 0.20862588 0.31369522 -0.92632098]\n", + " [ 0.17498648 0.31843302 -0.93165452]\n", + " [ 0.14038903 0.32295856 -0.93594267]\n", + " [ 0.10502727 0.32721482 -0.93909517]\n", + " [ 0.06909992 0.33115527 -0.94104271]\n", + " [ 0.0328132 0.33474269 -0.94173809]\n", + " [ 0.21249736 0.34647967 -0.9136721 ]\n", + " [ 0.17876121 0.35158529 -0.91892993]\n", + " [ 0.14405887 0.35641193 -0.92315631]\n", + " [ 0.10858261 0.36090178 -0.92626115]\n", + " [ 0.07253071 0.3650069 -0.92817523]\n", + " [ 0.03610999 0.36868853 -0.92885135]\n", + " [ 0.21598588 0.37907343 -0.89980744]\n", + " [ 0.18221843 0.38452614 -0.90495088]\n", + " [ 0.1474777 0.38963689 -0.90908384]\n", + " [ 0.11195515 0.3943465 -0.9121167 ]\n", + " [ 0.07584867 0.39860515 -0.9139808 ]\n", + " [ 0.0393654 0.40237224 -0.9146294 ]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:fp_optics: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:cartToSphere: vec: [[-0.23605733 -0.54578665 0.80398624]\n", + " [-0.23214861 -0.52404948 0.81943832]\n", + " [-0.22783291 -0.50150242 0.83461817]\n", + " [-0.22313365 -0.47821631 0.84942365]\n", + " [-0.2180738 -0.45426678 0.86376241]\n", + " [-0.2126759 -0.42973463 0.87755177]\n", + " [-0.20696246 -0.40470599 0.89071859]\n", + " [-0.2009564 -0.37927237 0.90319931]\n", + " [-0.23605733 -0.54578665 0.80398624]\n", + " [-0.21063005 -0.55452065 0.80507256]\n", + " [-0.18446053 -0.56290822 0.80567279]\n", + " [-0.15765644 -0.57090075 0.80573989]\n", + " [-0.13032537 -0.57845384 0.80523689]\n", + " [-0.10257513 -0.5855272 0.80413695]\n", + " [-0.0745142 -0.59208487 0.80242329]\n", + " [-0.04625194 -0.5980956 0.800089 ]\n", + " [-0.2009564 -0.37927237 0.90319931]\n", + " [-0.17421765 -0.38688315 0.90552175]\n", + " [-0.14678954 -0.39433616 0.90716692]\n", + " [-0.11877474 -0.40158436 0.90808731]\n", + " [-0.09027681 -0.40858474 0.90824479]\n", + " [-0.06140212 -0.41529803 0.90761078]\n", + " [-0.0322608 -0.42168869 0.90616659]\n", + " [-0.00296671 -0.42772514 0.90390398]\n", + " [-0.04625194 -0.5980956 0.800089 ]\n", + " [-0.04041917 -0.57610471 0.81637593]\n", + " [-0.03443101 -0.55321043 0.8323297 ]\n", + " [-0.02831022 -0.52947891 0.84785059]\n", + " [-0.02207962 -0.50498181 0.86284753]\n", + " [-0.0157626 -0.47979791 0.87723743]\n", + " [-0.00938331 -0.45401406 0.89094511]\n", + " [-0.00296671 -0.42772514 0.90390398]\n", + " [-0.23431864 -0.53644331 0.8107548 ]\n", + " [-0.22925023 -0.50924837 0.82952422]\n", + " [-0.223594 -0.48090669 0.8477821 ]\n", + " [-0.21739243 -0.45155553 0.86535434]\n", + " [-0.21068708 -0.42134364 0.88208871]\n", + " [-0.20351952 -0.39043183 0.89785455]\n", + " [-0.22505598 -0.54956098 0.80456978]\n", + " [-0.19337823 -0.56003839 0.80558169]\n", + " [-0.16069261 -0.56994679 0.80581545]\n", + " [-0.12719723 -0.57920269 0.8051988 ]\n", + " [-0.09309062 -0.58773195 0.80368233]\n", + " [-0.05857285 -0.5954703 0.80123926]\n", + " [-0.18941067 -0.3826948 0.90425012]\n", + " [-0.15616331 -0.39192353 0.9066471 ]\n", + " [-0.12198247 -0.4008679 0.90797864]\n", + " [-0.08705835 -0.40944709 0.90817064]\n", + " [-0.05158687 -0.41758881 0.90717053]\n", + " [-0.01577237 -0.42522924 0.90494825]\n", + " [-0.04382666 -0.58860297 0.8072334 ]\n", + " [-0.0365716 -0.56103511 0.82698375]\n", + " [-0.02910558 -0.53217558 0.84613357]\n", + " [-0.02147058 -0.50215391 0.86451169]\n", + " [-0.01370965 -0.47111527 0.88196511]\n", + " [-0.00586761 -0.4392229 0.89835896]\n", + " [-0.23595911 -0.54574417 0.8040439 ]\n", + " [-0.23595911 -0.54574417 0.8040439 ]\n", + " [-0.00308899 -0.42779578 0.90387014]\n", + " [-0.00308899 -0.42779578 0.90387014]\n", + " [-0.22335777 -0.54024034 0.81132711]\n", + " [-0.1915199 -0.55067159 0.81245364]\n", + " [-0.15867911 -0.56054852 0.8127769 ]\n", + " [-0.12503303 -0.56978753 0.81222467]\n", + " [-0.09077982 -0.57831415 0.81074766]\n", + " [-0.05611958 -0.58606368 0.80831922]\n", + " [-0.21814191 -0.51298123 0.83021947]\n", + " [-0.18589639 -0.52326041 0.83164961]\n", + " [-0.15266171 -0.53302932 0.8322104 ]\n", + " [-0.11863361 -0.542204 0.83182984]\n", + " [-0.08400911 -0.55070913 0.83045886]\n", + " [-0.04898869 -0.55847891 0.8280709 ]\n", + " [-0.21236213 -0.48456317 0.84858757]\n", + " [-0.17977657 -0.49465779 0.85029057]\n", + " [-0.14621486 -0.50428938 0.85106606]\n", + " [-0.11187059 -0.51337386 0.85084208]\n", + " [-0.07693989 -0.52183545 0.84956931]\n", + " [-0.04162402 -0.52960767 0.84722084]\n", + " [-0.20606059 -0.45512308 0.86625748]\n", + " [-0.1732014 -0.46499939 0.86820323]\n", + " [-0.13937845 -0.47446274 0.8691713 ]\n", + " [-0.10478354 -0.48342945 0.8690894 ]\n", + " [-0.0696123 -0.49182395 0.86790744]\n", + " [-0.03406697 -0.49957975 0.86559778]\n", + " [-0.19927835 -0.42480956 0.883077 ]\n", + " [-0.16621066 -0.43443326 0.88523542]\n", + " [-0.13219162 -0.4436968 0.8863738 ]\n", + " [-0.09741182 -0.45251743 0.88641915]\n", + " [-0.0620668 -0.46082059 0.88532034]\n", + " [-0.02635985 -0.46854048 0.88304868]\n", + " [-0.19205664 -0.39378363 0.89891529]\n", + " [-0.15884482 -0.40312112 0.90125562]\n", + " [-0.12469468 -0.41215396 0.90254105]\n", + " [-0.08979639 -0.4208008 0.90269779]\n", + " [-0.05434571 -0.42898869 0.90167358]\n", + " [-0.01854678 -0.4366532 0.89943871]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:fp_optics: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:cartToSphere: vec: [[ 0.80020955 -0.49246377 0.34226323]\n", + " [ 0.78531148 -0.5016624 0.36279569]\n", + " [ 0.76955207 -0.51055086 0.38357194]\n", + " [ 0.75296214 -0.51908221 0.40447705]\n", + " [ 0.73558028 -0.52721283 0.42540367]\n", + " [ 0.71745323 -0.53490244 0.44625131]\n", + " [ 0.69863615 -0.54211441 0.46692558]\n", + " [ 0.67919266 -0.54881616 0.48733782]\n", + " [ 0.80020955 -0.49246377 0.34226323]\n", + " [ 0.80830833 -0.46996047 0.35464743]\n", + " [ 0.81589575 -0.44666207 0.36716089]\n", + " [ 0.82291174 -0.42264553 0.37971966]\n", + " [ 0.82930372 -0.39799145 0.39224756]\n", + " [ 0.83502648 -0.37278472 0.40467559]\n", + " [ 0.84004241 -0.34711496 0.41694118]\n", + " [ 0.84432183 -0.32107667 0.42898767]\n", + " [ 0.67919266 -0.54881616 0.48733782]\n", + " [ 0.68665518 -0.52609024 0.50173072]\n", + " [ 0.69371645 -0.50247748 0.51601732]\n", + " [ 0.70031755 -0.47804878 0.53011763]\n", + " [ 0.70640665 -0.45287997 0.54395715]\n", + " [ 0.71193877 -0.42705358 0.55746608]\n", + " [ 0.71687601 -0.40065977 0.57057912]\n", + " [ 0.72118798 -0.37379635 0.58323596]\n", + " [ 0.84432183 -0.32107667 0.42898767]\n", + " [ 0.82944859 -0.32915235 0.45130229]\n", + " [ 0.81361008 -0.33711752 0.47369865]\n", + " [ 0.7968329 -0.3449265 0.49606757]\n", + " [ 0.77915209 -0.35253683 0.51830474]\n", + " [ 0.76061238 -0.35990904 0.54030945]\n", + " [ 0.74126904 -0.36700659 0.56198432]\n", + " [ 0.72118798 -0.37379635 0.58323596]\n", + " [ 0.79384997 -0.49643372 0.35122043]\n", + " [ 0.77500798 -0.5075047 0.37656553]\n", + " [ 0.7549019 -0.51806289 0.40216161]\n", + " [ 0.73359951 -0.52802663 0.42780794]\n", + " [ 0.71118689 -0.5373218 0.45331942]\n", + " [ 0.68776909 -0.54588261 0.47852466]\n", + " [ 0.80374989 -0.48278656 0.34771145]\n", + " [ 0.81333981 -0.45466172 0.36298908]\n", + " [ 0.82210118 -0.4254186 0.37837636]\n", + " [ 0.82993406 -0.39520404 0.39372989]\n", + " [ 0.83675528 -0.36417437 0.40892252]\n", + " [ 0.84249887 -0.33249663 0.42384153]\n", + " [ 0.68255935 -0.53899893 0.49355131]\n", + " [ 0.69144407 -0.51054064 0.51112949]\n", + " [ 0.69966663 -0.48082035 0.52846797]\n", + " [ 0.70712869 -0.4499755 0.54542742]\n", + " [ 0.71374746 -0.41815812 0.5618793 ]\n", + " [ 0.71945627 -0.38553742 0.57770544]\n", + " [ 0.83794373 -0.32469811 0.43865869]\n", + " [ 0.81906285 -0.33452818 0.46607612]\n", + " [ 0.79875771 -0.3441463 0.49350729]\n", + " [ 0.77708922 -0.35347304 0.52075825]\n", + " [ 0.75413985 -0.36243566 0.54764357]\n", + " [ 0.73001579 -0.37096833 0.57398557]\n", + " [ 0.80018859 -0.49242018 0.34237492]\n", + " [ 0.80018859 -0.49242018 0.34237492]\n", + " [ 0.72124418 -0.37386624 0.58312167]\n", + " [ 0.72124418 -0.37386624 0.58312167]\n", + " [ 0.79740811 -0.48677964 0.35663131]\n", + " [ 0.8069925 -0.45858939 0.37210063]\n", + " [ 0.81575339 -0.42926938 0.38765217]\n", + " [ 0.82359071 -0.39896585 0.40314338]\n", + " [ 0.83042095 -0.36783486 0.4184478 ]\n", + " [ 0.83617773 -0.33604363 0.43345298]\n", + " [ 0.77854696 -0.49780376 0.3821728 ]\n", + " [ 0.78808942 -0.46946093 0.39814759]\n", + " [ 0.79682668 -0.43995732 0.41413138]\n", + " [ 0.80465825 -0.40943723 0.42998402]\n", + " [ 0.81149971 -0.37805593 0.44558044]\n", + " [ 0.81728364 -0.3459813 0.46080841]\n", + " [ 0.75840631 -0.50833146 0.40794484]\n", + " [ 0.76786695 -0.47988421 0.42437189]\n", + " [ 0.77654631 -0.4502475 0.44074144]\n", + " [ 0.78434369 -0.41956362 0.45691503]\n", + " [ 0.79117409 -0.38798701 0.47276807]\n", + " [ 0.79696931 -0.35568625 0.48818768]\n", + " [ 0.73705359 -0.51828078 0.43374767]\n", + " [ 0.74639127 -0.48977649 0.45057636]\n", + " [ 0.75497702 -0.46005688 0.46728724]\n", + " [ 0.76271028 -0.42926232 0.48374258]\n", + " [ 0.76950603 -0.39754646 0.49981724]\n", + " [ 0.77529583 -0.36507842 0.51539705]\n", + " [ 0.7145747 -0.52757714 0.45939674]\n", + " [ 0.72374772 -0.49906205 0.47657769]\n", + " [ 0.73220341 -0.46930917 0.49358593]\n", + " [ 0.7398419 -0.43845724 0.51028346]\n", + " [ 0.74657873 -0.40665918 0.52654394]\n", + " [ 0.75234581 -0.37408438 0.54225147]\n", + " [ 0.69107484 -0.53615424 0.48472075]\n", + " [ 0.7000419 -0.50767335 0.50220425]\n", + " [ 0.70833146 -0.47793605 0.51946479]\n", + " [ 0.71584476 -0.44708 0.53636345]\n", + " [ 0.72249849 -0.41525744 0.55277227]\n", + " [ 0.72822551 -0.38263771 0.56857365]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:cartToSphere: vec: [[-0.61637446 -0.34417056 -0.70825783]\n", + " [-0.62544782 -0.36270131 -0.69084208]\n", + " [-0.63413341 -0.38143457 -0.67259384]\n", + " [-0.64237596 -0.4002728 -0.65355551]\n", + " [-0.6501262 -0.41911971 -0.63377803]\n", + " [-0.65734064 -0.43788312 -0.61332018]\n", + " [-0.66398147 -0.45647626 -0.59224829]\n", + " [-0.67001657 -0.47481813 -0.57063608]\n", + " [-0.61637446 -0.34417056 -0.70825783]\n", + " [-0.59623592 -0.35921641 -0.71795981]\n", + " [-0.5752636 -0.37442168 -0.7272415 ]\n", + " [-0.55351478 -0.38970169 -0.73603939]\n", + " [-0.53105473 -0.40497307 -0.74429678]\n", + " [-0.50795557 -0.42015661 -0.7519638 ]\n", + " [-0.48429581 -0.43517862 -0.75899745]\n", + " [-0.4601602 -0.44997123 -0.76536167]\n", + " [-0.67001657 -0.47481813 -0.57063608]\n", + " [-0.64976341 -0.49182604 -0.57958145]\n", + " [-0.62857282 -0.50879007 -0.58824219]\n", + " [-0.60650234 -0.52561832 -0.59655703]\n", + " [-0.58361426 -0.54222569 -0.60447142]\n", + " [-0.55997747 -0.5585325 -0.61193682]\n", + " [-0.53566953 -0.57446328 -0.61891041]\n", + " [-0.51077756 -0.5899467 -0.62535524]\n", + " [-0.4601602 -0.44997123 -0.76536167]\n", + " [-0.46829192 -0.47037136 -0.74796622]\n", + " [-0.47620193 -0.49080059 -0.72962079]\n", + " [-0.48383815 -0.511155 -0.71036696]\n", + " [-0.49115373 -0.53133731 -0.69025262]\n", + " [-0.49810653 -0.55125522 -0.66933367]\n", + " [-0.50465881 -0.57082005 -0.64767581]\n", + " [-0.51077756 -0.5899467 -0.62535524]\n", + " [-0.62030688 -0.35227063 -0.70080295]\n", + " [-0.6311735 -0.37513186 -0.67889329]\n", + " [-0.64140216 -0.3982003 -0.65577419]\n", + " [-0.65089969 -0.42129791 -0.63153596]\n", + " [-0.65958601 -0.44425517 -0.60628676]\n", + " [-0.66739386 -0.46691469 -0.5801518 ]\n", + " [-0.60773129 -0.35076916 -0.71247714]\n", + " [-0.58248168 -0.36932866 -0.72409352]\n", + " [-0.55603551 -0.38804342 -0.73501484]\n", + " [-0.52850975 -0.40675914 -0.74513384]\n", + " [-0.5000371 -0.42533018 -0.75435876]\n", + " [-0.47076469 -0.44362326 -0.76261327]\n", + " [-0.66128524 -0.48217038 -0.57464211]\n", + " [-0.6358253 -0.50299712 -0.585423 ]\n", + " [-0.60901402 -0.52366597 -0.59571459]\n", + " [-0.58096408 -0.54401749 -0.60541367]\n", + " [-0.55180257 -0.56390481 -0.61443086]\n", + " [-0.52167623 -0.58319072 -0.62268973]\n", + " [-0.46381291 -0.45880488 -0.75787576]\n", + " [-0.47363773 -0.48383984 -0.73591189]\n", + " [-0.48307702 -0.50881456 -0.71256182]\n", + " [-0.4920424 -0.53354726 -0.68791104]\n", + " [-0.50045622 -0.55786784 -0.66206272]\n", + " [-0.50825096 -0.58161448 -0.63514216]\n", + " [-0.61633869 -0.34428457 -0.70823355]\n", + " [-0.61633869 -0.34428457 -0.70823355]\n", + " [-0.51084342 -0.58983002 -0.6254115 ]\n", + " [-0.51084342 -0.58983002 -0.6254115 ]\n", + " [-0.61168678 -0.35882684 -0.70504083]\n", + " [-0.58639061 -0.37757737 -0.71664592]\n", + " [-0.5598833 -0.39646204 -0.72756343]\n", + " [-0.53228237 -0.41532423 -0.73768643]\n", + " [-0.50372066 -0.43401758 -0.74692318]\n", + " [-0.47434551 -0.45240867 -0.75519715]\n", + " [-0.62252434 -0.381881 -0.68310347]\n", + " [-0.59711932 -0.40114096 -0.694647 ]\n", + " [-0.57046592 -0.4204733 -0.70552877]\n", + " [-0.54268221 -0.4397179 -0.7156425 ]\n", + " [-0.51390079 -0.45872804 -0.72489624]\n", + " [-0.4842693 -0.47737056 -0.73321252]\n", + " [-0.63273487 -0.40512413 -0.65994017]\n", + " [-0.60725657 -0.42483992 -0.67137955]\n", + " [-0.58049815 -0.4445673 -0.68218899]\n", + " [-0.55257693 -0.46414566 -0.69226263]\n", + " [-0.52362445 -0.48342909 -0.7015082 ]\n", + " [-0.49378847 -0.50228463 -0.70984724]\n", + " [-0.64222576 -0.42837589 -0.63564154]\n", + " [-0.61671072 -0.44849056 -0.64693439]\n", + " [-0.58988881 -0.46856009 -0.65763412]\n", + " [-0.56187579 -0.48842459 -0.6676354 ]\n", + " [-0.53280169 -0.50793881 -0.67684602]\n", + " [-0.50281419 -0.52696922 -0.68518707]\n", + " [-0.65091705 -0.45146602 -0.61031584]\n", + " [-0.62540161 -0.4719222 -0.62141956]\n", + " [-0.59855727 -0.4922818 -0.63197138]\n", + " [-0.5704981 -0.51238558 -0.64186676]\n", + " [-0.5413526 -0.53208814 -0.65101427]\n", + " [-0.51126814 -0.55125462 -0.65933545]\n", + " [-0.65874126 -0.4742369 -0.58408845]\n", + " [-0.63326076 -0.49497719 -0.59496083]\n", + " [-0.60643397 -0.51557473 -0.60532681]\n", + " [-0.57837377 -0.53587026 -0.61508281]\n", + " [-0.54920749 -0.55571739 -0.62413885]\n", + " [-0.51908208 -0.57497953 -0.63241784]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:fp_optics: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:fp_optics: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:cartToSphere: vec: [[ 0.64748578 -0.30252182 -0.69945887]\n", + " [ 0.63641901 -0.28388984 -0.71720109]\n", + " [ 0.62461842 -0.26465698 -0.73471662]\n", + " [ 0.612103 -0.24488741 -0.7519043 ]\n", + " [ 0.59889819 -0.22464805 -0.76867042]\n", + " [ 0.5850369 -0.20400988 -0.78492789]\n", + " [ 0.57056006 -0.18304859 -0.8005963 ]\n", + " [ 0.55551679 -0.16184431 -0.81560255]\n", + " [ 0.64748578 -0.30252182 -0.69945887]\n", + " [ 0.62811818 -0.32227433 -0.70824206]\n", + " [ 0.6082486 -0.34162728 -0.71646664]\n", + " [ 0.58796106 -0.36050704 -0.72411081]\n", + " [ 0.56734525 -0.37884261 -0.73116185]\n", + " [ 0.54649626 -0.3965652 -0.73761635]\n", + " [ 0.52551478 -0.41360742 -0.74348041]\n", + " [ 0.50450757 -0.42990246 -0.74876965]\n", + " [ 0.55551679 -0.16184431 -0.81560255]\n", + " [ 0.53553751 -0.18238031 -0.82458292]\n", + " [ 0.515142 -0.20268358 -0.83279535]\n", + " [ 0.49441781 -0.22267621 -0.84021803]\n", + " [ 0.4734564 -0.24228462 -0.84683954]\n", + " [ 0.45235238 -0.26143981 -0.85265852]\n", + " [ 0.43120359 -0.28007694 -0.85768314]\n", + " [ 0.41011217 -0.29813401 -0.86193046]\n", + " [ 0.50450757 -0.42990246 -0.74876965]\n", + " [ 0.4924191 -0.41301631 -0.76612072]\n", + " [ 0.47981754 -0.39536726 -0.78323679]\n", + " [ 0.46672474 -0.37702445 -0.80001286]\n", + " [ 0.45316924 -0.35805756 -0.81635312]\n", + " [ 0.43918628 -0.33853761 -0.83217047]\n", + " [ 0.42481782 -0.31853779 -0.84738627]\n", + " [ 0.41011217 -0.29813401 -0.86193046]\n", + " [ 0.6426863 -0.29454455 -0.70724666]\n", + " [ 0.62862662 -0.27129775 -0.72885259]\n", + " [ 0.61348305 -0.24721183 -0.75001657]\n", + " [ 0.5972997 -0.22240874 -0.77056305]\n", + " [ 0.58013722 -0.19701925 -0.79033172]\n", + " [ 0.56207438 -0.17118455 -0.80917751]\n", + " [ 0.63907145 -0.31111595 -0.70341634]\n", + " [ 0.61498595 -0.33506618 -0.71380875]\n", + " [ 0.59022934 -0.35834288 -0.72333927]\n", + " [ 0.56496439 -0.38081425 -0.73198069]\n", + " [ 0.5393662 -0.40235357 -0.73972678]\n", + " [ 0.51362262 -0.42283703 -0.74659269]\n", + " [ 0.54691469 -0.17089437 -0.81956052]\n", + " [ 0.52213732 -0.19591663 -0.83005379]\n", + " [ 0.49682118 -0.22051132 -0.83937088]\n", + " [ 0.47113306 -0.24454115 -0.84748644]\n", + " [ 0.44524715 -0.26787906 -0.85439791]\n", + " [ 0.41934528 -0.29040693 -0.86012403]\n", + " [ 0.49937313 -0.42258339 -0.75633971]\n", + " [ 0.48421048 -0.40136458 -0.77746169]\n", + " [ 0.46829796 -0.37906863 -0.7981253 ]\n", + " [ 0.45168528 -0.35582356 -0.81815035]\n", + " [ 0.43443736 -0.3317602 -0.83737647]\n", + " [ 0.41663409 -0.30701442 -0.85566242]\n", + " [ 0.64738392 -0.30252735 -0.69955076]\n", + " [ 0.64738392 -0.30252735 -0.69955076]\n", + " [ 0.41023488 -0.29814369 -0.86186872]\n", + " [ 0.41023488 -0.29814369 -0.86186872]\n", + " [ 0.63434161 -0.30316818 -0.71112571]\n", + " [ 0.6101668 -0.32722672 -0.72153943]\n", + " [ 0.58532427 -0.35062494 -0.73106611]\n", + " [ 0.55997719 -0.37323124 -0.7396783 ]\n", + " [ 0.53430074 -0.39491955 -0.74736957]\n", + " [ 0.50848248 -0.41556705 -0.75415489]\n", + " [ 0.62020115 -0.28001 -0.73276526]\n", + " [ 0.59580528 -0.30434594 -0.74322918]\n", + " [ 0.57075472 -0.32805962 -0.75273896]\n", + " [ 0.545214 -0.35101948 -0.76126672]\n", + " [ 0.51935861 -0.37310094 -0.76880578]\n", + " [ 0.49337516 -0.39418388 -0.77537089]\n", + " [ 0.60499256 -0.25599681 -0.75395599]\n", + " [ 0.58042382 -0.28056658 -0.76445444]\n", + " [ 0.55521861 -0.30455395 -0.77393745]\n", + " [ 0.52954285 -0.32782661 -0.7823772 ]\n", + " [ 0.50357226 -0.3502607 -0.78976732]\n", + " [ 0.47749248 -0.37173815 -0.79612291]\n", + " [ 0.58876046 -0.23125013 -0.77452211]\n", + " [ 0.56406857 -0.25600944 -0.78503873]\n", + " [ 0.53876367 -0.28022882 -0.79448443]\n", + " [ 0.51301267 -0.30377472 -0.80283181]\n", + " [ 0.48699133 -0.32652305 -0.8100754 ]\n", + " [ 0.4608842 -0.34835685 -0.81623113]\n", + " [ 0.57156601 -0.20590018 -0.7943031 ]\n", + " [ 0.54680229 -0.23080333 -0.80482114]\n", + " [ 0.52145402 -0.2552122 -0.81421892]\n", + " [ 0.49568853 -0.27899162 -0.82246979]\n", + " [ 0.4696812 -0.30201655 -0.82956951]\n", + " [ 0.44361545 -0.32417013 -0.83553519]\n", + " [ 0.55348847 -0.18008764 -0.81315371]\n", + " [ 0.52870535 -0.20508737 -0.82365638]\n", + " [ 0.50337075 -0.22964162 -0.83299617]\n", + " [ 0.47765175 -0.2536136 -0.8411474 ]\n", + " [ 0.45172292 -0.27687684 -0.84810708]\n", + " [ 0.42576647 -0.29931366 -0.85389358]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:fp_optics: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:cartToSphere: vec: [[-0.56430549 0.28585885 -0.77449599]\n", + " [-0.58714996 0.2783763 -0.76010628]\n", + " [-0.60997317 0.2705208 -0.74481624]\n", + " [-0.63265862 0.26231136 -0.72865343]\n", + " [-0.65509594 0.25376981 -0.71165314]\n", + " [-0.67717972 0.24492143 -0.69385958]\n", + " [-0.69880934 0.23579521 -0.67532668]\n", + " [-0.71988969 0.22642389 -0.65611817]\n", + " [-0.56430549 0.28585885 -0.77449599]\n", + " [-0.56237705 0.25897569 -0.78527934]\n", + " [-0.56006423 0.23193487 -0.79532023]\n", + " [-0.55738504 0.20484432 -0.8045873 ]\n", + " [-0.55436507 0.1778137 -0.81305699]\n", + " [-0.55103791 0.15095427 -0.82071312]\n", + " [-0.54744565 0.12437935 -0.8275464 ]\n", + " [-0.54363926 0.09820493 -0.83355393]\n", + " [-0.71988969 0.22642389 -0.65611817]\n", + " [-0.71776652 0.19865524 -0.66734348]\n", + " [-0.71500777 0.17079693 -0.67793237]\n", + " [-0.71163353 0.14296166 -0.6878515 ]\n", + " [-0.70767181 0.11526138 -0.69707634]\n", + " [-0.70315814 0.08780652 -0.70559099]\n", + " [-0.69813522 0.06070643 -0.71338765]\n", + " [-0.69265299 0.03407087 -0.72046583]\n", + " [-0.54363926 0.09820493 -0.83355393]\n", + " [-0.56532275 0.08926413 -0.82002567]\n", + " [-0.58706346 0.08020956 -0.80555752]\n", + " [-0.60873964 0.07106198 -0.79018115]\n", + " [-0.63023823 0.06184548 -0.7739347 ]\n", + " [-0.65145402 0.05258747 -0.75686341]\n", + " [-0.67228917 0.04331832 -0.73902016]\n", + " [-0.69265299 0.03407087 -0.72046583]\n", + " [-0.57425465 0.2825515 -0.76837246]\n", + " [-0.60225358 0.2731269 -0.7501282 ]\n", + " [-0.63010406 0.26316089 -0.73055816]\n", + " [-0.65760046 0.25269247 -0.70972399]\n", + " [-0.68454871 0.24176821 -0.68770721]\n", + " [-0.71076578 0.23044306 -0.66461117]\n", + " [-0.56359077 0.27413861 -0.77923903]\n", + " [-0.56096666 0.2410701 -0.79196061]\n", + " [-0.55778207 0.20787186 -0.80353497]\n", + " [-0.55408094 0.17474507 -0.81391552]\n", + " [-0.54992518 0.14189463 -0.82307242]\n", + " [-0.54539593 0.10953021 -0.83099122]\n", + " [-0.71897204 0.21436732 -0.66115495]\n", + " [-0.71594049 0.18025956 -0.67448922]\n", + " [-0.71197348 0.14612908 -0.68683335]\n", + " [-0.70711933 0.11218233 -0.69813851]\n", + " [-0.70144338 0.07862268 -0.70837537]\n", + " [-0.69502722 0.0456515 -0.71753265]\n", + " [-0.55309193 0.09441087 -0.82775353]\n", + " [-0.57972287 0.08337478 -0.81053688]\n", + " [-0.60631771 0.07218786 -0.79193923]\n", + " [-0.63266472 0.06089309 -0.7720281 ]\n", + " [-0.65857018 0.04954089 -0.75088682]\n", + " [-0.68385693 0.03818821 -0.72861606]\n", + " [-0.56437758 0.28574237 -0.77448644]\n", + " [-0.56437758 0.28574237 -0.77448644]\n", + " [-0.69260372 0.03419258 -0.72050743]\n", + " [-0.69260372 0.03419258 -0.72050743]\n", + " [-0.57346286 0.27090258 -0.77314432]\n", + " [-0.57080578 0.23770881 -0.7859232 ]\n", + " [-0.56756028 0.20438985 -0.79755885]\n", + " [-0.56377005 0.17114727 -0.80800492]\n", + " [-0.55949655 0.13818584 -0.81723209]\n", + " [-0.55482033 0.10571465 -0.82522652]\n", + " [-0.60144884 0.26136449 -0.75494893]\n", + " [-0.5987041 0.22785792 -0.7678764 ]\n", + " [-0.59529555 0.19424081 -0.77967539]\n", + " [-0.59126664 0.16071606 -0.79030001]\n", + " [-0.58667802 0.12748827 -0.79972222]\n", + " [-0.58160886 0.09476475 -0.80792994]\n", + " [-0.6292881 0.25130673 -0.73541921]\n", + " [-0.6264637 0.21755055 -0.74847511]\n", + " [-0.62290508 0.18370097 -0.76042305]\n", + " [-0.61865614 0.14996239 -0.77121713]\n", + " [-0.61377761 0.1165393 -0.7808301 ]\n", + " [-0.60834799 0.08363731 -0.78925124]\n", + " [-0.65677502 0.24076897 -0.71461659]\n", + " [-0.65387881 0.20682821 -0.72778059]\n", + " [-0.65018256 0.17281338 -0.73986362]\n", + " [-0.6457312 0.13893014 -0.75081931]\n", + " [-0.64058634 0.10538288 -0.76062053]\n", + " [-0.63482676 0.07237564 -0.76925727]\n", + " [-0.6837156 0.22979849 -0.69262229]\n", + " [-0.68075578 0.19574023 -0.70587345]\n", + " [-0.67693479 0.16162894 -0.71807755]\n", + " [-0.67229897 0.12767105 -0.72918735]\n", + " [-0.66691138 0.09407071 -0.73917516]\n", + " [-0.66085177 0.06103059 -0.74803089]\n", + " [-0.7099269 0.2184509 -0.66953939]\n", + " [-0.70691238 0.18434381 -0.68285594]\n", + " [-0.70298077 0.15020594 -0.69516632]\n", + " [-0.69817988 0.11624387 -0.70642212]\n", + " [-0.69257448 0.0826612 -0.71659453]\n", + " [-0.68624566 0.04965959 -0.72567267]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:fp_optics: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:cartToSphere: vec: [[ 2.69786835e-02 6.22564715e-01 -7.82103143e-01]\n", + " [ 1.12743591e-02 6.39759680e-01 -7.68492316e-01]\n", + " [-4.89828895e-03 6.56765923e-01 -7.54078596e-01]\n", + " [-2.14548495e-02 6.73489178e-01 -7.38885659e-01]\n", + " [-3.83158990e-02 6.89842063e-01 -7.22945240e-01]\n", + " [-5.54056933e-02 7.05743599e-01 -7.06297516e-01]\n", + " [-7.26511262e-02 7.21119138e-01 -6.88991294e-01]\n", + " [-8.99811360e-02 7.35900605e-01 -6.71083969e-01]\n", + " [ 2.69786835e-02 6.22564715e-01 -7.82103143e-01]\n", + " [ 6.78875482e-03 6.08740839e-01 -7.93340094e-01]\n", + " [-1.39465000e-02 5.94257478e-01 -8.04153931e-01]\n", + " [-3.51245201e-02 5.79141276e-01 -8.14470166e-01]\n", + " [-5.66478323e-02 5.63426036e-01 -8.24222133e-01]\n", + " [-7.84225773e-02 5.47153001e-01 -8.33350762e-01]\n", + " [-1.00357387e-01 5.30370899e-01 -8.41804671e-01]\n", + " [-1.22362800e-01 5.13135776e-01 -8.49540476e-01]\n", + " [-8.99811360e-02 7.35900605e-01 -6.71083969e-01]\n", + " [-1.12124412e-01 7.22795227e-01 -6.81905548e-01]\n", + " [-1.34633677e-01 7.08842378e-01 -6.92398914e-01]\n", + " [-1.57413446e-01 6.94065329e-01 -7.02491513e-01]\n", + " [-1.80369354e-01 6.78494879e-01 -7.12117684e-01]\n", + " [-2.03407075e-01 6.62170312e-01 -7.21218441e-01]\n", + " [-2.26432183e-01 6.45139865e-01 -7.29741749e-01]\n", + " [-2.49350705e-01 6.27460697e-01 -7.37643070e-01]\n", + " [-1.22362800e-01 5.13135776e-01 -8.49540476e-01]\n", + " [-1.40151003e-01 5.30169834e-01 -8.36228224e-01]\n", + " [-1.58186056e-01 5.47112730e-01 -8.21976175e-01]\n", + " [-1.76389444e-01 5.63873805e-01 -8.06804249e-01]\n", + " [-1.94683957e-01 5.80367518e-01 -7.90741235e-01]\n", + " [-2.12992928e-01 5.96512980e-01 -7.73825741e-01]\n", + " [-2.31240214e-01 6.12234187e-01 -7.56106648e-01]\n", + " [-2.49350705e-01 6.27460697e-01 -7.37643070e-01]\n", + " [ 2.01261654e-02 6.30032662e-01 -7.76307788e-01]\n", + " [ 5.51378585e-04 6.50992611e-01 -7.59083866e-01]\n", + " [-1.96421993e-02 6.71574669e-01 -7.40676480e-01]\n", + " [-4.03063513e-02 6.91615150e-01 -7.21140681e-01]\n", + " [-6.13015209e-02 7.10964966e-01 -7.00550455e-01]\n", + " [-8.24939824e-02 7.29489400e-01 -6.78999233e-01]\n", + " [ 1.81962505e-02 6.16679101e-01 -7.87004310e-01]\n", + " [-6.93020779e-03 5.99290311e-01 -8.00501777e-01]\n", + " [-3.27730956e-02 5.80936477e-01 -8.13288838e-01]\n", + " [-5.91509357e-02 5.61676835e-01 -8.25239541e-01]\n", + " [-8.58908131e-02 5.41587317e-01 -8.36245147e-01]\n", + " [-1.12825321e-01 5.20760688e-01 -8.46214366e-01]\n", + " [-9.95248923e-02 7.30242366e-01 -6.75900054e-01]\n", + " [-1.26921375e-01 7.13607408e-01 -6.88952417e-01]\n", + " [-1.54772616e-01 6.95721964e-01 -7.01438797e-01]\n", + " [-1.82904517e-01 6.76639552e-01 -7.13235483e-01]\n", + " [-2.11143421e-01 6.56432549e-01 -7.24233915e-01]\n", + " [-2.39315637e-01 6.35193483e-01 -7.34341382e-01]\n", + " [-1.30007464e-01 5.20627708e-01 -8.43827500e-01]\n", + " [-1.51983941e-01 5.41455647e-01 -8.26877660e-01]\n", + " [-1.74253116e-01 5.62055852e-01 -8.08535139e-01]\n", + " [-1.96672378e-01 5.82268774e-01 -7.88849194e-01]\n", + " [-2.19100592e-01 6.01945525e-01 -7.67890953e-01]\n", + " [-2.41397974e-01 6.20948450e-01 -7.45754679e-01]\n", + " [ 2.68578828e-02 6.22577601e-01 -7.82097043e-01]\n", + " [ 2.68578828e-02 6.22577601e-01 -7.82097043e-01]\n", + " [-2.49211005e-01 6.27471035e-01 -7.37681486e-01]\n", + " [-2.49211005e-01 6.27471035e-01 -7.37681486e-01]\n", + " [ 1.13888743e-02 6.24150705e-01 -7.81220962e-01]\n", + " [-1.39374756e-02 6.06793394e-01 -7.94737393e-01]\n", + " [-3.99603184e-02 5.88448167e-01 -8.07546858e-01]\n", + " [-6.64996897e-02 5.69174191e-01 -8.19523356e-01]\n", + " [-9.33835064e-02 5.49047484e-01 -8.30557873e-01]\n", + " [-1.20444512e-01 5.28161088e-01 -8.40558734e-01]\n", + " [-8.38314405e-03 6.45160230e-01 -7.64001309e-01]\n", + " [-3.42299907e-02 6.27902421e-01 -7.77538975e-01]\n", + " [-6.07206768e-02 6.09595619e-01 -7.90383565e-01]\n", + " [-8.76788562e-02 5.90298488e-01 -8.02408944e-01]\n", + " [-1.14933967e-01 5.70087017e-01 -8.13505363e-01]\n", + " [-1.42318470e-01 5.49054842e-01 -8.23580132e-01]\n", + " [-2.87499947e-02 6.65796254e-01 -7.45579497e-01]\n", + " [-5.50532618e-02 6.48654295e-01 -7.59089418e-01]\n", + " [-8.19525548e-02 6.30407725e-01 -7.71926084e-01]\n", + " [-1.09273851e-01 6.11114273e-01 -7.83963374e-01]\n", + " [-1.36846926e-01 5.90849489e-01 -7.95091064e-01]\n", + " [-1.64503130e-01 5.69707271e-01 -8.05215714e-01]\n", + " [-4.95649027e-02 6.85895287e-01 -7.26010314e-01]\n", + " [-7.62639051e-02 6.68886012e-01 -7.39442573e-01]\n", + " [-1.03514610e-01 6.50721979e-01 -7.52227114e-01]\n", + " [-1.31144023e-01 6.31459674e-01 -7.64238134e-01]\n", + " [-1.58981345e-01 6.11173881e-01 -7.75365346e-01]\n", + " [-1.86856366e-01 5.89958416e-01 -7.85514969e-01]\n", + " [-7.06891504e-02 7.05308072e-01 -7.05367683e-01]\n", + " [-9.77247246e-02 6.88447786e-01 -7.18672056e-01]\n", + " [-1.25269922e-01 6.70388170e-01 -7.31359794e-01]\n", + " [-1.53151732e-01 6.51184363e-01 -7.43305773e-01]\n", + " [-1.81198244e-01 6.30910167e-01 -7.54400131e-01]\n", + " [-2.09237605e-01 6.09659017e-01 -7.64549219e-01]\n", + " [-9.19892431e-02 7.23899476e-01 -6.83745221e-01]\n", + " [-1.19302161e-01 7.07203273e-01 -6.96871958e-01]\n", + " [-1.47083981e-01 6.89268900e-01 -7.09418554e-01]\n", + " [-1.75160973e-01 6.70150252e-01 -7.21260891e-01]\n", + " [-2.03359924e-01 6.49920073e-01 -7.32289997e-01]\n", + " [-2.31507556e-01 6.28671161e-01 -7.42412838e-01]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:fp_optics: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:cartToSphere: vec: [[0.78483942 0.50627188 0.35737357]\n", + " [0.78378388 0.49132388 0.37984692]\n", + " [0.78202585 0.47579846 0.40255607]\n", + " [0.7795453 0.4597321 0.42538867]\n", + " [0.77633073 0.44316726 0.44823362]\n", + " [0.77237835 0.42615242 0.47098387]\n", + " [0.76769162 0.40874215 0.49353767]\n", + " [0.76228128 0.39099707 0.51579893]\n", + " [0.78483942 0.50627188 0.35737357]\n", + " [0.76803934 0.52544205 0.36609592]\n", + " [0.75029354 0.54455659 0.37485693]\n", + " [0.73164196 0.56351893 0.38359673]\n", + " [0.71213425 0.58223617 0.39225739]\n", + " [0.69182829 0.60062022 0.40078544]\n", + " [0.67078968 0.61858818 0.40913306]\n", + " [0.64909152 0.63606263 0.41725836]\n", + " [0.76228128 0.39099707 0.51579893]\n", + " [0.74480863 0.4099424 0.52650482]\n", + " [0.72637718 0.42894716 0.53701072]\n", + " [0.70702901 0.44791509 0.54724953]\n", + " [0.6868121 0.46675592 0.5571607 ]\n", + " [0.66578201 0.48538383 0.56668937]\n", + " [0.64400369 0.50371612 0.57578583]\n", + " [0.62155254 0.521673 0.58440544]\n", + " [0.64909152 0.63606263 0.41725836]\n", + " [0.64692174 0.62186672 0.44133212]\n", + " [0.64418061 0.60688997 0.46552756]\n", + " [0.64085153 0.59116555 0.48972708]\n", + " [0.63692418 0.57473206 0.51381967]\n", + " [0.63239486 0.55763493 0.53769882]\n", + " [0.62726718 0.53992779 0.56126096]\n", + " [0.62155254 0.521673 0.58440544]\n", + " [0.78440791 0.49989323 0.36716616]\n", + " [0.78264435 0.48118058 0.39488363]\n", + " [0.77980475 0.46163603 0.42284363]\n", + " [0.77586448 0.44133526 0.45084089]\n", + " [0.7708165 0.42036753 0.47867846]\n", + " [0.76467021 0.39883584 0.50617136]\n", + " [0.77763025 0.51458074 0.36124486]\n", + " [0.75639906 0.53805099 0.37196988]\n", + " [0.7337858 0.56134147 0.38269329]\n", + " [0.70987795 0.58427955 0.3933074 ]\n", + " [0.68478204 0.60670308 0.40371393]\n", + " [0.65862193 0.6284617 0.4138273 ]\n", + " [0.7548033 0.39930498 0.52041091]\n", + " [0.73273919 0.42257747 0.53340562]\n", + " [0.70927608 0.44584276 0.54603267]\n", + " [0.68449983 0.46893223 0.55817787]\n", + " [0.65851293 0.49168771 0.56974021]\n", + " [0.6314393 0.51395812 0.58063022]\n", + " [0.64828994 0.62991204 0.42770431]\n", + " [0.64524958 0.61198391 0.45730588]\n", + " [0.64133372 0.59291544 0.48697263]\n", + " [0.63652072 0.57277542 0.51649752]\n", + " [0.63080389 0.55164764 0.54568429]\n", + " [0.62419305 0.52963447 0.57434342]\n", + " [0.78478117 0.50628732 0.3574796 ]\n", + " [0.78478117 0.50628732 0.3574796 ]\n", + " [0.62165089 0.5216756 0.5842985 ]\n", + " [0.62165089 0.5216756 0.5842985 ]\n", + " [0.77723305 0.50820147 0.37099871]\n", + " [0.755928 0.53171923 0.38189988]\n", + " [0.7332335 0.55506448 0.39277481]\n", + " [0.709238 0.57806418 0.40351365]\n", + " [0.68404827 0.60055601 0.41401745]\n", + " [0.65778826 0.62238932 0.42420058]\n", + " [0.77540499 0.48951567 0.39890037]\n", + " [0.75390492 0.513126 0.41027927]\n", + " [0.73100026 0.53658678 0.42156049]\n", + " [0.70678072 0.55972456 0.43263083]\n", + " [0.68135278 0.58237686 0.443391 ]\n", + " [0.65484029 0.60439213 0.45375582]\n", + " [0.77250715 0.46997509 0.42703176]\n", + " [0.75083579 0.49361492 0.43885069]\n", + " [0.7277519 0.51713187 0.45050173]\n", + " [0.7033447 0.54035305 0.46187099]\n", + " [0.67771948 0.56311626 0.47285979]\n", + " [0.65099976 0.58526908 0.48338331]\n", + " [0.76851582 0.44965498 0.45518549]\n", + " [0.74669836 0.47326033 0.46740371]\n", + " [0.72346628 0.49677319 0.47938809]\n", + " [0.69890751 0.52002185 0.49102501]\n", + " [0.67312588 0.54284487 0.50221608]\n", + " [0.64624471 0.56508937 0.51287598]\n", + " [0.76342422 0.42864448 0.48316392]\n", + " [0.74148558 0.45215118 0.4957403 ]\n", + " [0.71813552 0.4755993 0.50802232]\n", + " [0.6934606 0.49881859 0.51989653]\n", + " [0.66756359 0.52164884 0.53126391]\n", + " [0.64056788 0.54393739 0.54203774]\n", + " [0.75724165 0.40704678 0.51078176]\n", + " [0.73520606 0.43039138 0.52367481]\n", + " [0.71176732 0.45371475 0.53621843]\n", + " [0.68701131 0.47684794 0.54829874]\n", + " [0.66104043 0.49963223 0.55981531]\n", + " [0.63397845 0.52191602 0.57067942]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:fp_optics: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:cartToSphere: vec: [[-8.04219383e-02 -6.34404276e-01 7.68806559e-01]\n", + " [-9.51082983e-02 -6.15970034e-01 7.82007244e-01]\n", + " [-1.09896817e-01 -5.96633503e-01 7.94953554e-01]\n", + " [-1.24732623e-01 -5.76457394e-01 8.07551017e-01]\n", + " [-1.39560365e-01 -5.55508702e-01 8.19715186e-01]\n", + " [-1.54324096e-01 -5.33858986e-01 8.31371552e-01]\n", + " [-1.68967392e-01 -5.11584781e-01 8.42455359e-01]\n", + " [-1.83433703e-01 -4.88767850e-01 8.52911523e-01]\n", + " [-8.04219383e-02 -6.34404276e-01 7.68806559e-01]\n", + " [-5.65528727e-02 -6.25839378e-01 7.77898994e-01]\n", + " [-3.21994268e-02 -6.16513317e-01 7.86685787e-01]\n", + " [-7.45729040e-03 -6.06449839e-01 7.95086776e-01]\n", + " [ 1.75775104e-02 -5.95676691e-01 8.03031949e-01]\n", + " [ 4.28083132e-02 -5.84225778e-01 8.10461405e-01]\n", + " [ 6.81376250e-02 -5.72133610e-01 8.17325147e-01]\n", + " [ 9.34672277e-02 -5.59441738e-01 8.23582916e-01]\n", + " [-1.83433703e-01 -4.88767850e-01 8.52911523e-01]\n", + " [-1.59644429e-01 -4.78617628e-01 8.63387991e-01]\n", + " [-1.35241025e-01 -4.67873446e-01 8.73386686e-01]\n", + " [-1.10314400e-01 -4.56557232e-01 8.82828538e-01]\n", + " [-8.49564052e-02 -4.44695422e-01 8.91643646e-01]\n", + " [-5.92614812e-02 -4.32319838e-01 8.99770879e-01]\n", + " [-3.33275380e-02 -4.19468312e-01 9.07157985e-01]\n", + " [-7.25584399e-03 -4.06184872e-01 9.13762115e-01]\n", + " [ 9.34672277e-02 -5.59441738e-01 8.23582916e-01]\n", + " [ 7.97972635e-02 -5.39706694e-01 8.38062695e-01]\n", + " [ 6.57991193e-02 -5.19144115e-01 8.52150142e-01]\n", + " [ 5.15246699e-02 -4.97812812e-01 8.65752628e-01]\n", + " [ 3.70266237e-02 -4.75776808e-01 8.78786355e-01]\n", + " [ 2.23593386e-02 -4.53106789e-01 8.91175795e-01]\n", + " [ 7.57915406e-03 -4.29880934e-01 9.02853775e-01]\n", + " [-7.25584399e-03 -4.06184872e-01 9.13762115e-01]\n", + " [-8.67283625e-02 -6.26453304e-01 7.74618906e-01]\n", + " [-1.04803306e-01 -6.03244742e-01 7.90640278e-01]\n", + " [-1.22977375e-01 -5.78742759e-01 8.06184461e-01]\n", + " [-1.41148887e-01 -5.53068911e-01 8.21091816e-01]\n", + " [-1.59214853e-01 -5.26354986e-01 8.35225155e-01]\n", + " [-1.77071324e-01 -4.98744050e-01 8.48469280e-01]\n", + " [-7.01304525e-02 -6.30703074e-01 7.72848854e-01]\n", + " [-4.05382332e-02 -6.19690248e-01 7.83798857e-01]\n", + " [-1.03134031e-02 -6.07557353e-01 7.94208849e-01]\n", + " [ 2.03674072e-02 -5.94353818e-01 8.03945712e-01]\n", + " [ 5.13262220e-02 -5.80138431e-01 8.12899145e-01]\n", + " [ 8.23832393e-02 -5.64980484e-01 8.20981154e-01]\n", + " [-1.73093544e-01 -4.84495763e-01 8.57497802e-01]\n", + " [-1.43512417e-01 -4.71654446e-01 8.70026591e-01]\n", + " [-1.13099249e-01 -4.57942166e-01 8.81758205e-01]\n", + " [-8.20226564e-02 -4.43405675e-01 8.92560189e-01]\n", + " [-5.04566066e-02 -4.28103623e-01 9.02320020e-01]\n", + " [-1.85827903e-02 -4.12108237e-01 9.10945378e-01]\n", + " [ 8.74639053e-02 -5.50987091e-01 8.29917641e-01]\n", + " [ 7.04819315e-02 -5.26236553e-01 8.47412171e-01]\n", + " [ 5.30586828e-02 -5.00300887e-01 8.64224391e-01]\n", + " [ 3.52908021e-02 -4.73295712e-01 8.80196415e-01]\n", + " [ 1.72784046e-02 -4.45351254e-01 8.95189207e-01]\n", + " [-8.74029397e-04 -4.16614566e-01 9.09082801e-01]\n", + " [-8.03912333e-02 -6.34314871e-01 7.68883537e-01]\n", + " [-8.03912333e-02 -6.34314871e-01 7.68883537e-01]\n", + " [-7.29436060e-03 -4.06312707e-01 9.13704972e-01]\n", + " [-7.29436060e-03 -4.06312707e-01 9.13704972e-01]\n", + " [-7.64505563e-02 -6.22794410e-01 7.78641404e-01]\n", + " [-4.68018162e-02 -6.11656821e-01 7.89737630e-01]\n", + " [-1.65080051e-02 -5.99411942e-01 8.00270460e-01]\n", + " [ 1.42545420e-02 -5.86108793e-01 8.10106963e-01]\n", + " [ 4.53078947e-02 -5.71805674e-01 8.19137025e-01]\n", + " [ 7.64719200e-02 -5.56571587e-01 8.27272696e-01]\n", + " [-9.44916779e-02 -5.99455182e-01 7.94811177e-01]\n", + " [-6.47237680e-02 -5.87973744e-01 8.06286370e-01]\n", + " [-3.42752763e-02 -5.75423300e-01 8.17137217e-01]\n", + " [-3.32138254e-03 -5.61851419e-01 8.27231498e-01]\n", + " [ 2.79602350e-02 -5.47315072e-01 8.36459465e-01]\n", + " [ 5.93884628e-02 -5.31882672e-01 8.44732995e-01]\n", + " [-1.12653386e-01 -5.74826480e-01 8.10483641e-01]\n", + " [-8.28272643e-02 -5.63014356e-01 8.22286130e-01]\n", + " [-5.22848807e-02 -5.50174120e-01 8.33411500e-01]\n", + " [-2.11999071e-02 -5.36351987e-01 8.43728102e-01]\n", + " [ 1.02504563e-02 -5.21604062e-01 8.53126093e-01]\n", + " [ 4.18842293e-02 -5.05998708e-01 8.61516697e-01]\n", + " [-1.30833978e-01 -5.49029397e-01 8.25499359e-01]\n", + " [-1.01010618e-01 -5.36898042e-01 8.37578264e-01]\n", + " [-7.04355124e-02 -5.23781976e-01 8.48935381e-01]\n", + " [-3.92806484e-02 -5.09726645e-01 8.59439223e-01]\n", + " [-7.72248542e-03 -4.94788043e-01 8.68979376e-01]\n", + " [ 2.40564679e-02 -4.79035125e-01 8.77466031e-01]\n", + " [-1.48930194e-01 -5.22195335e-01 8.39721281e-01]\n", + " [-1.19169914e-01 -5.09755091e-01 8.52025985e-01]\n", + " [-8.86230576e-02 -4.96376306e-01 8.63571952e-01]\n", + " [-5.74599643e-02 -4.82104470e-01 8.74227449e-01]\n", + " [-2.58561129e-02 -4.66996273e-01 8.83881181e-01]\n", + " [ 6.00596275e-03 -4.51121836e-01 8.92442165e-01]\n", + " [-1.66837631e-01 -4.94467321e-01 8.53034157e-01]\n", + " [-1.37199537e-01 -4.81728634e-01 8.65513611e-01]\n", + " [-1.06741057e-01 -4.68100740e-01 8.77204676e-01]\n", + " [-7.56311717e-02 -4.53629954e-01 8.87975107e-01]\n", + " [-4.40442414e-02 -4.38374334e-01 8.97712676e-01]\n", + " [-1.21622681e-02 -4.22405533e-01 9.06325352e-01]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:fp_optics: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:cartToSphere: vec: [[-2.55622831e-03 2.23419639e-01 -9.74719001e-01]\n", + " [-1.01594372e-04 2.50546415e-01 -9.68104583e-01]\n", + " [ 2.40240431e-03 2.78005232e-01 -9.60576556e-01]\n", + " [ 4.94570516e-03 3.05675693e-01 -9.52122844e-01]\n", + " [ 7.51830730e-03 3.33440327e-01 -9.42741228e-01]\n", + " [ 1.01101114e-02 3.61183015e-01 -9.32440140e-01]\n", + " [ 1.27108467e-02 3.88788433e-01 -9.21239377e-01]\n", + " [ 1.53101020e-02 4.16142609e-01 -9.09170462e-01]\n", + " [-2.55622831e-03 2.23419639e-01 -9.74719001e-01]\n", + " [-3.14635623e-02 2.25851780e-01 -9.73653438e-01]\n", + " [-6.02429269e-02 2.28181629e-01 -9.71753021e-01]\n", + " [-8.87821692e-02 2.30405577e-01 -9.69036117e-01]\n", + " [-1.16969940e-01 2.32524322e-01 -9.65531187e-01]\n", + " [-1.44695627e-01 2.34543256e-01 -9.61276566e-01]\n", + " [-1.71848971e-01 2.36472794e-01 -9.56320317e-01]\n", + " [-1.98319654e-01 2.38328437e-01 -9.50720185e-01]\n", + " [ 1.53101020e-02 4.16142609e-01 -9.09170462e-01]\n", + " [-1.45936760e-02 4.18505083e-01 -9.08097198e-01]\n", + " [-4.43869989e-02 4.20486413e-01 -9.06212432e-01]\n", + " [-7.39526107e-02 4.22084165e-01 -9.03535262e-01]\n", + " [-1.03176672e-01 4.23300911e-01 -9.00094947e-01]\n", + " [-1.31949228e-01 4.24144051e-01 -8.95930368e-01]\n", + " [-1.60163514e-01 4.24625598e-01 -8.91089642e-01]\n", + " [-1.87714275e-01 4.24762014e-01 -8.85630048e-01]\n", + " [-1.98319654e-01 2.38328437e-01 -9.50720185e-01]\n", + " [-1.97677893e-01 2.64535283e-01 -9.43898583e-01]\n", + " [-1.96729605e-01 2.91085897e-01 -9.36251282e-01]\n", + " [-1.95484652e-01 3.17855113e-01 -9.27768224e-01]\n", + " [-1.93952160e-01 3.44722183e-01 -9.18449333e-01]\n", + " [-1.92140655e-01 3.71570398e-01 -9.08304689e-01]\n", + " [-1.90058481e-01 3.98286768e-01 -8.97354681e-01]\n", + " [-1.87714275e-01 4.24762014e-01 -8.85630048e-01]\n", + " [-1.59205374e-03 2.35206809e-01 -9.71944043e-01]\n", + " [ 1.44985402e-03 2.68692196e-01 -9.63225001e-01]\n", + " [ 4.55607942e-03 3.02556256e-01 -9.53120640e-01]\n", + " [ 7.70820028e-03 3.36581615e-01 -9.41622748e-01]\n", + " [ 1.08876217e-02 3.70554434e-01 -9.28746936e-01]\n", + " [ 1.40753774e-02 4.04262906e-01 -9.14534519e-01]\n", + " [-1.51605617e-02 2.24584317e-01 -9.74336719e-01]\n", + " [-5.05185949e-02 2.27496946e-01 -9.72467486e-01]\n", + " [-8.55728869e-02 2.30251681e-01 -9.69361359e-01]\n", + " [-1.20118100e-01 2.32847996e-01 -9.65066554e-01]\n", + " [-1.53950556e-01 2.35295858e-01 -9.59653628e-01]\n", + " [-1.86867259e-01 2.37616561e-01 -9.53215084e-01]\n", + " [ 2.25711242e-03 4.17126183e-01 -9.08845781e-01]\n", + " [-3.43335258e-02 4.19766051e-01 -9.06982730e-01]\n", + " [-7.06414090e-02 4.21830638e-01 -9.03918527e-01]\n", + " [-1.06455481e-01 4.23322600e-01 -8.99702844e-01]\n", + " [-1.41573237e-01 4.24255527e-01 -8.94407215e-01]\n", + " [-1.75798860e-01 4.24653381e-01 -8.88124016e-01]\n", + " [-1.97988541e-01 2.49698435e-01 -9.47866673e-01]\n", + " [-1.96993509e-01 2.82065966e-01 -9.38952793e-01]\n", + " [-1.95548109e-01 3.14824970e-01 -9.28787476e-01]\n", + " [-1.93669458e-01 3.47751326e-01 -9.17366424e-01]\n", + " [-1.91373297e-01 3.80630142e-01 -9.04708216e-01]\n", + " [-1.88675089e-01 4.13254930e-01 -8.90854687e-01]\n", + " [-2.64687620e-03 2.23520180e-01 -9.74695708e-01]\n", + " [-2.64687620e-03 2.23520180e-01 -9.74695708e-01]\n", + " [-1.87629765e-01 4.24672106e-01 -8.85691071e-01]\n", + " [-1.87629765e-01 4.24672106e-01 -8.85691071e-01]\n", + " [-1.41547500e-02 2.36272963e-01 -9.71583620e-01]\n", + " [-4.96528599e-02 2.39172462e-01 -9.69706722e-01]\n", + " [-8.48485712e-02 2.41886023e-01 -9.66587747e-01]\n", + " [-1.19536317e-01 2.44412784e-01 -9.62275148e-01]\n", + " [-1.53512658e-01 2.46762345e-01 -9.56839699e-01]\n", + " [-1.86575094e-01 2.48955756e-01 -9.50374014e-01]\n", + " [-1.12361193e-02 2.69762868e-01 -9.62861228e-01]\n", + " [-4.70867553e-02 2.72623023e-01 -9.60968014e-01]\n", + " [-8.26382205e-02 2.75219768e-01 -9.57823055e-01]\n", + " [-1.17684033e-01 2.77551578e-01 -9.53475532e-01]\n", + " [-1.52021383e-01 2.79627257e-01 -9.47996886e-01]\n", + " [-1.85449522e-01 2.81467142e-01 -9.41480070e-01]\n", + " [-8.22983407e-03 3.03629596e-01 -9.52754606e-01]\n", + " [-4.43667469e-02 3.06446540e-01 -9.50853359e-01]\n", + " [-8.02072703e-02 3.08924950e-01 -9.47698353e-01]\n", + " [-1.15543690e-01 3.11063266e-01 -9.43339441e-01]\n", + " [-1.50173618e-01 3.12870184e-01 -9.37848673e-01]\n", + " [-1.83898152e-01 3.14365768e-01 -9.31319297e-01]\n", + " [-5.15367737e-03 3.37655674e-01 -9.41255590e-01]\n", + " [-4.15090272e-02 3.40424936e-01 -9.39355025e-01]\n", + " [-7.75709398e-02 3.42782441e-01 -9.36206680e-01]\n", + " [-1.13130370e-01 3.44727300e-01 -9.31860831e-01]\n", + " [-1.47985087e-01 3.46268958e-01 -9.26389887e-01]\n", + " [-1.81937754e-01 3.47427945e-01 -9.19887209e-01]\n", + " [-2.02546914e-03 3.71627208e-01 -9.28379834e-01]\n", + " [-3.85294080e-02 3.74344218e-01 -9.26489013e-01]\n", + " [-7.47436241e-02 3.76578209e-01 -9.23364632e-01]\n", + " [-1.10457916e-01 3.78329573e-01 -9.19057008e-01]\n", + " [-1.45470006e-01 3.79609244e-01 -9.13638495e-01]\n", + " [-1.79583615e-01 3.80438939e-01 -9.07202259e-01]\n", + " [ 1.13651198e-03 4.05332382e-01 -9.14168676e-01]\n", + " [-3.54443350e-02 4.07992998e-01 -9.12296779e-01]\n", + " [-7.17403667e-02 4.10101844e-01 -9.09213835e-01]\n", + " [-1.07540651e-01 4.11660962e-01 -9.04969757e-01]\n", + " [-1.42642749e-01 4.12683225e-01 -8.99636372e-01]\n", + " [-1.76850835e-01 4.13191984e-01 -8.93306312e-01]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:fp_optics: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:cartToSphere: vec: [[-0.03498149 -0.60045998 0.79888929]\n", + " [-0.02904979 -0.57849252 0.81517024]\n", + " [-0.02297645 -0.55561847 0.83111985]\n", + " [-0.01678444 -0.53190389 0.84663837]\n", + " [-0.01049692 -0.50742034 0.86163473]\n", + " [-0.00413767 -0.48224645 0.87602582]\n", + " [ 0.00226882 -0.45646897 0.88973644]\n", + " [ 0.00869731 -0.4301827 0.90269995]\n", + " [-0.03498149 -0.60045998 0.79888929]\n", + " [-0.006624 -0.60566257 0.79569402]\n", + " [ 0.02167031 -0.61026446 0.79190131]\n", + " [ 0.04979157 -0.61425253 0.78753706]\n", + " [ 0.07763083 -0.61761888 0.78263681]\n", + " [ 0.1050801 -0.62036036 0.77724591]\n", + " [ 0.13203215 -0.6224782 0.77141973]\n", + " [ 0.15838014 -0.62397787 0.76522372]\n", + " [ 0.00869731 -0.4301827 0.90269995]\n", + " [ 0.03800956 -0.43567927 0.89929909]\n", + " [ 0.06719474 -0.44076495 0.89510397]\n", + " [ 0.09613828 -0.44542524 0.89014257]\n", + " [ 0.12472917 -0.44965111 0.88445266]\n", + " [ 0.15286053 -0.45343892 0.87808132]\n", + " [ 0.18042887 -0.45678995 0.87108459]\n", + " [ 0.2073325 -0.45971011 0.86352756]\n", + " [ 0.15838014 -0.62397787 0.76522372]\n", + " [ 0.1658267 -0.6028784 0.7804096 ]\n", + " [ 0.173164 -0.58086436 0.79536836]\n", + " [ 0.18036733 -0.55800617 0.80999798]\n", + " [ 0.18741156 -0.53437887 0.82420636]\n", + " [ 0.19427103 -0.51006251 0.8379111 ]\n", + " [ 0.20091988 -0.48514255 0.85103931]\n", + " [ 0.2073325 -0.45971011 0.86352756]\n", + " [-0.03231679 -0.59101649 0.80601187]\n", + " [-0.02494778 -0.56347554 0.82575597]\n", + " [-0.01738902 -0.53463796 0.84490229]\n", + " [-0.00968306 -0.50463309 0.86327961]\n", + " [-0.00187368 -0.47360583 0.88073492]\n", + " [ 0.00599369 -0.44171925 0.89713331]\n", + " [-0.0225964 -0.60272771 0.79762692]\n", + " [ 0.01213097 -0.60870225 0.793306 ]\n", + " [ 0.04665413 -0.61376099 0.7881122 ]\n", + " [ 0.08077209 -0.61788722 0.78210693]\n", + " [ 0.11428604 -0.62107511 0.77537372]\n", + " [ 0.14699874 -0.62332868 0.7680187 ]\n", + " [ 0.02146373 -0.43271921 0.90127321]\n", + " [ 0.05731794 -0.43918144 0.89656808]\n", + " [ 0.09286713 -0.44501129 0.89069672]\n", + " [ 0.12790544 -0.45018991 0.88372464]\n", + " [ 0.16223597 -0.45471051 0.87573846]\n", + " [ 0.19566908 -0.45857741 0.86684507]\n", + " [ 0.16154949 -0.61489081 0.77188798]\n", + " [ 0.1706049 -0.58840673 0.79036162]\n", + " [ 0.17947187 -0.56061836 0.80839155]\n", + " [ 0.18810429 -0.53166193 0.82580408]\n", + " [ 0.19645498 -0.50168483 0.84244749]\n", + " [ 0.20447643 -0.47084678 0.85819153]\n", + " [-0.03486451 -0.60040527 0.79893552]\n", + " [-0.03486451 -0.60040527 0.79893552]\n", + " [ 0.20722025 -0.45978859 0.86351272]\n", + " [ 0.20722025 -0.45978859 0.86351272]\n", + " [-0.02000063 -0.59334932 0.80469657]\n", + " [ 0.01485914 -0.59936228 0.80033997]\n", + " [ 0.04950865 -0.60447279 0.79508587]\n", + " [ 0.08374659 -0.60866447 0.78899561]\n", + " [ 0.11737423 -0.61193193 0.78215254]\n", + " [ 0.15019472 -0.61427956 0.77466262]\n", + " [-0.01251074 -0.56583505 0.82442354]\n", + " [ 0.02268071 -0.57195069 0.81997438]\n", + " [ 0.05764428 -0.57720412 0.81456279]\n", + " [ 0.09217751 -0.58157966 0.80825021]\n", + " [ 0.12608198 -0.58507311 0.80111971]\n", + " [ 0.15916223 -0.58768999 0.79327666]\n", + " [-0.00485396 -0.53702003 0.84355553]\n", + " [ 0.0306041 -0.54322971 0.83902615]\n", + " [ 0.06581611 -0.54862157 0.83347622]\n", + " [ 0.10057832 -0.55318019 0.82696776]\n", + " [ 0.1346926 -0.55690203 0.81958406]\n", + " [ 0.16796511 -0.55979351 0.81143019]\n", + " [ 0.00292651 -0.50703353 0.86192136]\n", + " [ 0.03858445 -0.51332889 0.85732414]\n", + " [ 0.07397799 -0.51885572 0.85165486]\n", + " [ 0.10890224 -0.52359819 0.84497647]\n", + " [ 0.14315935 -0.52755268 0.83737302]\n", + " [ 0.17655711 -0.53072585 0.82894973]\n", + " [ 0.01078616 -0.47602034 0.87936812]\n", + " [ 0.04657524 -0.48239287 0.87471588]\n", + " [ 0.08208198 -0.48805135 0.86894674]\n", + " [ 0.11710068 -0.49297896 0.8621248 ]\n", + " [ 0.15143386 -0.49717117 0.85433519]\n", + " [ 0.18489067 -0.50063409 0.84568372]\n", + " [ 0.01867887 -0.44414335 0.89576101]\n", + " [ 0.05452866 -0.45058392 0.8910672 ]\n", + " [ 0.09007912 -0.45636998 0.88521873]\n", + " [ 0.12512431 -0.46148326 0.87828077]\n", + " [ 0.15946718 -0.46591764 0.87033957]\n", + " [ 0.19291785 -0.46967799 0.86150176]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:cartToSphere: vec: [[-0.81946845 -0.03729076 -0.57190984]\n", + " [-0.80462168 -0.02950406 -0.59305435]\n", + " [-0.78889006 -0.02138084 -0.61416231]\n", + " [-0.77230452 -0.012971 -0.63512006]\n", + " [-0.75490374 -0.00432069 -0.65582138]\n", + " [-0.73673456 0.00452712 -0.67616692]\n", + " [-0.71785226 0.01353199 -0.69606394]\n", + " [-0.6983207 0.02265537 -0.7154264 ]\n", + " [-0.81946845 -0.03729076 -0.57190984]\n", + " [-0.82584511 -0.01242558 -0.5637601 ]\n", + " [-0.83165952 0.01304462 -0.55513267]\n", + " [-0.83685866 0.0390025 -0.54602783]\n", + " [-0.84139701 0.06533437 -0.53645363]\n", + " [-0.84523649 0.09192929 -0.52642595]\n", + " [-0.84834671 0.11867823 -0.51596835]\n", + " [-0.85070532 0.14547366 -0.50511174]\n", + " [-0.6983207 0.02265537 -0.7154264 ]\n", + " [-0.70399567 0.04909782 -0.70850512]\n", + " [-0.70921887 0.07604284 -0.70087522]\n", + " [-0.71393799 0.10338016 -0.69253526]\n", + " [-0.7181079 0.13100064 -0.68349095]\n", + " [-0.72169063 0.15879435 -0.67375588]\n", + " [-0.7246556 0.18664992 -0.66335215]\n", + " [-0.72698007 0.21445482 -0.65231059]\n", + " [-0.85070532 0.14547366 -0.50511174]\n", + " [-0.83576744 0.15532668 -0.52665587]\n", + " [-0.8198575 0.16525562 -0.54820093]\n", + " [-0.80300217 0.17521365 -0.56963822]\n", + " [-0.78523655 0.1851558 -0.59086453]\n", + " [-0.76660554 0.19503832 -0.61178101]\n", + " [-0.74716464 0.20481848 -0.63229296]\n", + " [-0.72698007 0.21445482 -0.65231059]\n", + " [-0.81312831 -0.03385605 -0.58109906]\n", + " [-0.79433331 -0.02407841 -0.60700479]\n", + " [-0.77423902 -0.0138455 -0.63274185]\n", + " [-0.7529134 -0.00324383 -0.65811161]\n", + " [-0.73044271 0.00764745 -0.68293115]\n", + " [-0.70693231 0.01875466 -0.70703251]\n", + " [-0.82226484 -0.02650497 -0.56848748]\n", + " [-0.82970895 0.00439323 -0.55817897]\n", + " [-0.83625505 0.03608311 -0.54715218]\n", + " [-0.84181624 0.06835388 -0.53541869]\n", + " [-0.84632244 0.1010012 -0.52300772]\n", + " [-0.84972104 0.13382499 -0.50996571]\n", + " [-0.70091498 0.0340839 -0.71242998]\n", + " [-0.70757409 0.06684348 -0.70347058]\n", + " [-0.7135017 0.1002482 -0.69344476]\n", + " [-0.71861178 0.13409676 -0.68236 ]\n", + " [-0.72283445 0.16818676 -0.67024142]\n", + " [-0.72611664 0.20231259 -0.65713334]\n", + " [-0.84430648 0.14966522 -0.5145356 ]\n", + " [-0.82534188 0.16179725 -0.54095511]\n", + " [-0.80494285 0.17399672 -0.56726726]\n", + " [-0.78317047 0.1861801 -0.59327985]\n", + " [-0.76010748 0.19826683 -0.61881086]\n", + " [-0.73586053 0.21017878 -0.64368793]\n", + " [-0.81944191 -0.0371809 -0.57195502]\n", + " [-0.81944191 -0.0371809 -0.57195502]\n", + " [-0.72704344 0.21432729 -0.65228188]\n", + " [-0.72704344 0.21432729 -0.65228188]\n", + " [-0.81594487 -0.02311217 -0.57766755]\n", + " [-0.82337437 0.00797005 -0.56744262]\n", + " [-0.82991095 0.03983206 -0.55647212]\n", + " [-0.83546748 0.07226413 -0.54476783]\n", + " [-0.83997352 0.10506258 -0.53235922]\n", + " [-0.84337606 0.13802736 -0.51929305]\n", + " [-0.79712268 -0.01316059 -0.60367394]\n", + " [-0.80448761 0.01839159 -0.59368462]\n", + " [-0.81097793 0.05069245 -0.58287654]\n", + " [-0.8165059 0.0835353 -0.57126173]\n", + " [-0.82100011 0.11671796 -0.55887006]\n", + " [-0.8244065 0.15004002 -0.54574895]\n", + " [-0.77698737 -0.00278071 -0.62951005]\n", + " [-0.78425229 0.02916735 -0.61975609]\n", + " [-0.79066648 0.06183664 -0.60911636]\n", + " [-0.79614181 0.09502306 -0.59760257]\n", + " [-0.80060623 0.12852526 -0.58524433]\n", + " [-0.80400498 0.16214189 -0.57208915]\n", + " [-0.7556065 0.0079418 -0.65497767]\n", + " [-0.76273461 0.04021404 -0.6454601 ]\n", + " [-0.76904127 0.07318296 -0.63499589]\n", + " [-0.7744384 0.10664631 -0.62359581]\n", + " [-0.77885386 0.14040292 -0.61128855]\n", + " [-0.78223273 0.17425004 -0.59812113]\n", + " [-0.73306612 0.01892852 -0.67989395]\n", + " [-0.74001994 0.05145486 -0.67061381]\n", + " [-0.74618692 0.0846553 -0.66033216]\n", + " [-0.75147955 0.11832853 -0.64905843]\n", + " [-0.75582627 0.15227303 -0.63681989]\n", + " [-0.75917256 0.18628467 -0.62366261]\n", + " [-0.70947168 0.03010619 -0.70409059]\n", + " [-0.71621406 0.06281719 -0.69504778]\n", + " [-0.72220956 0.09618079 -0.68495446]\n", + " [-0.7273717 0.12999579 -0.6738186 ]\n", + " [-0.73163007 0.16406006 -0.66166588]\n", + " [-0.73493115 0.1981683 -0.64854108]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:fp_optics: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:cartToSphere: vec: [[ 0.55934898 0.13738928 -0.81746737]\n", + " [ 0.54367934 0.15830702 -0.82422792]\n", + " [ 0.52717907 0.17944462 -0.83059127]\n", + " [ 0.50990747 0.20071348 -0.83648579]\n", + " [ 0.49192532 0.22202649 -0.84185136]\n", + " [ 0.47329613 0.24329756 -0.84663869]\n", + " [ 0.454087 0.26444148 -0.85080885]\n", + " [ 0.43436919 0.28537422 -0.85433305]\n", + " [ 0.55934898 0.13738928 -0.81746737]\n", + " [ 0.54465677 0.1187626 -0.83020747]\n", + " [ 0.52913984 0.09975578 -0.84265047]\n", + " [ 0.51285354 0.08043492 -0.85469964]\n", + " [ 0.49585454 0.06086804 -0.86626979]\n", + " [ 0.47820208 0.04112545 -0.87728642]\n", + " [ 0.45995893 0.02127988 -0.88768516]\n", + " [ 0.441192 0.00140616 -0.89741163]\n", + " [ 0.43436919 0.28537422 -0.85433305]\n", + " [ 0.41801857 0.26748672 -0.8681655 ]\n", + " [ 0.40099426 0.24901875 -0.88158565]\n", + " [ 0.38334589 0.23003217 -0.89450049]\n", + " [ 0.36512734 0.21059167 -0.90682588]\n", + " [ 0.34639784 0.19076583 -0.91848622]\n", + " [ 0.32722229 0.17062735 -0.92941481]\n", + " [ 0.30767109 0.15025276 -0.93955447]\n", + " [ 0.441192 0.00140616 -0.89741163]\n", + " [ 0.4238943 0.02193762 -0.90544595]\n", + " [ 0.40590686 0.0428541 -0.91290916]\n", + " [ 0.38728316 0.06407165 -0.9197318 ]\n", + " [ 0.36808125 0.08550604 -0.92585361]\n", + " [ 0.34836474 0.10707201 -0.93122371]\n", + " [ 0.32820304 0.12868318 -0.93580094]\n", + " [ 0.30767109 0.15025276 -0.93955447]\n", + " [ 0.55257362 0.1464138 -0.82050313]\n", + " [ 0.53280161 0.17221 -0.82853253]\n", + " [ 0.51184084 0.1982483 -0.83589268]\n", + " [ 0.48980254 0.2243678 -0.84246814]\n", + " [ 0.46680372 0.25040995 -0.84816811]\n", + " [ 0.44296962 0.27621836 -0.85292516]\n", + " [ 0.55299549 0.12939001 -0.82307607]\n", + " [ 0.53442588 0.10629728 -0.83850454]\n", + " [ 0.51467249 0.08269893 -0.85338919]\n", + " [ 0.49383906 0.0587193 -0.86756846]\n", + " [ 0.47203472 0.0344879 -0.88090511]\n", + " [ 0.44937675 0.01013948 -0.8932848 ]\n", + " [ 0.42739463 0.27757905 -0.86039741]\n", + " [ 0.40689686 0.25525734 -0.87708531]\n", + " [ 0.38543596 0.23212509 -0.8930605 ]\n", + " [ 0.36310931 0.20830017 -0.90816445]\n", + " [ 0.34002595 0.18390884 -0.92225804]\n", + " [ 0.31630768 0.15908657 -0.93522239]\n", + " [ 0.43380348 0.01037338 -0.9009478 ]\n", + " [ 0.41213368 0.03580692 -0.91041952]\n", + " [ 0.38948044 0.0617352 -0.91896341]\n", + " [ 0.36594867 0.08800334 -0.92646478]\n", + " [ 0.34165548 0.11445434 -0.93282996]\n", + " [ 0.31673099 0.140929 -0.93798747]\n", + " [ 0.5592481 0.13739736 -0.81753503]\n", + " [ 0.5592481 0.13739736 -0.81753503]\n", + " [ 0.30780925 0.15024915 -0.93950979]\n", + " [ 0.30780925 0.15024915 -0.93950979]\n", + " [ 0.54626487 0.13841403 -0.826097 ]\n", + " [ 0.52754564 0.11532921 -0.84166191]\n", + " [ 0.50765542 0.09171841 -0.85666429]\n", + " [ 0.48669664 0.06770588 -0.87094334]\n", + " [ 0.46477763 0.04342126 -0.88436211]\n", + " [ 0.44201542 0.01899975 -0.89680621]\n", + " [ 0.52634258 0.1642413 -0.83425912]\n", + " [ 0.50722414 0.1412067 -0.85016724]\n", + " [ 0.48697068 0.11758937 -0.86546652]\n", + " [ 0.46568145 0.09351296 -0.87999779]\n", + " [ 0.44346315 0.06910739 -0.89362442]\n", + " [ 0.42043271 0.04450888 -0.90623137]\n", + " [ 0.50524335 0.19032523 -0.84172767]\n", + " [ 0.4857589 0.1673832 -0.85791675]\n", + " [ 0.46517566 0.14380308 -0.87345995]\n", + " [ 0.44359072 0.11970761 -0.88819894]\n", + " [ 0.42111018 0.09522651 -0.90199674]\n", + " [ 0.39785161 0.07049662 -0.9147373 ]\n", + " [ 0.48307713 0.2165051 -0.8483879 ]\n", + " [ 0.46325677 0.19369866 -0.86479708]\n", + " [ 0.44237509 0.17020041 -0.88053172]\n", + " [ 0.4205282 0.14613177 -0.89543372]\n", + " [ 0.39782248 0.12162184 -0.90936538]\n", + " [ 0.37437661 0.09680763 -0.92220954]\n", + " [ 0.45996017 0.24262222 -0.85414934]\n", + " [ 0.43983247 0.21999399 -0.87071812]\n", + " [ 0.41868317 0.19662206 -0.88659132]\n", + " [ 0.3966084 0.17262635 -0.90161074]\n", + " [ 0.37371547 0.14813492 -0.91563792]\n", + " [ 0.35012439 0.12328445 -0.92855471]\n", + " [ 0.43601753 0.26851973 -0.85894462]\n", + " [ 0.41561112 0.24611101 -0.87561223]\n", + " [ 0.39422574 0.22290879 -0.89157038]\n", + " [ 0.37195836 0.19903146 -0.90666061]\n", + " [ 0.34891753 0.17460577 -0.92074393]\n", + " [ 0.32522462 0.14976759 -0.93370157]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:fp_optics: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:fp_optics: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:cartToSphere: vec: [[-0.45029067 -0.45589847 -0.76772059]\n", + " [-0.45832855 -0.47635728 -0.75034571]\n", + " [-0.46615665 -0.49683775 -0.73201791]\n", + " [-0.47372302 -0.51723591 -0.71277873]\n", + " [-0.4809811 -0.53745436 -0.69267596]\n", + " [-0.48788916 -0.55740055 -0.67176543]\n", + " [-0.4944099 -0.57698553 -0.65011272]\n", + " [-0.50051067 -0.59612397 -0.62779398]\n", + " [-0.45029067 -0.45589847 -0.76772059]\n", + " [-0.42563827 -0.47025892 -0.77310323]\n", + " [-0.40073763 -0.48425128 -0.77775964]\n", + " [-0.3756922 -0.49782873 -0.78167892]\n", + " [-0.35061019 -0.51095119 -0.78485755]\n", + " [-0.32560418 -0.52358538 -0.78729935]\n", + " [-0.30079024 -0.53570465 -0.78901569]\n", + " [-0.27628556 -0.54728849 -0.79002633]\n", + " [-0.50051067 -0.59612397 -0.62779398]\n", + " [-0.47495957 -0.61086088 -0.63345276]\n", + " [-0.44906708 -0.62500237 -0.63852236]\n", + " [-0.42294172 -0.63850046 -0.64299103]\n", + " [-0.39669364 -0.65131622 -0.64685496]\n", + " [-0.37043455 -0.66341924 -0.6501178 ]\n", + " [-0.34427928 -0.67478658 -0.65279005]\n", + " [-0.31834807 -0.68540157 -0.65488869]\n", + " [-0.27628556 -0.54728849 -0.79002633]\n", + " [-0.28237849 -0.56769164 -0.77329722]\n", + " [-0.28851537 -0.58803613 -0.75562715]\n", + " [-0.29465 -0.60821773 -0.7370567 ]\n", + " [-0.3007382 -0.62813651 -0.71763575]\n", + " [-0.30673989 -0.64769803 -0.69742233]\n", + " [-0.3126199 -0.66681381 -0.67648218]\n", + " [-0.31834807 -0.68540157 -0.65488869]\n", + " [-0.45373334 -0.46485883 -0.76028438]\n", + " [-0.46344953 -0.48996173 -0.73834411]\n", + " [-0.47279854 -0.51499299 -0.71501312]\n", + " [-0.48169245 -0.53977062 -0.69037675]\n", + " [-0.49005438 -0.56412408 -0.66453798]\n", + " [-0.49781758 -0.58789106 -0.63762195]\n", + " [-0.43960651 -0.46227166 -0.77009807]\n", + " [-0.4092118 -0.47963092 -0.77620866]\n", + " [-0.37854642 -0.49638985 -0.78121682]\n", + " [-0.34780758 -0.51247186 -0.78511304]\n", + " [-0.31720248 -0.52781565 -0.78790433]\n", + " [-0.28694546 -0.54237474 -0.78961506]\n", + " [-0.48939901 -0.6025545 -0.63040993]\n", + " [-0.45784053 -0.62022225 -0.63695087]\n", + " [-0.4258769 -0.63694713 -0.64259413]\n", + " [-0.39371031 -0.65265368 -0.64732941]\n", + " [-0.36154657 -0.66728581 -0.65116336]\n", + " [-0.32959926 -0.68080391 -0.65411801]\n", + " [-0.27901739 -0.55614629 -0.78284775]\n", + " [-0.28652158 -0.58112682 -0.76170664]\n", + " [-0.29404561 -0.60591535 -0.73919129]\n", + " [-0.30150715 -0.630326 -0.7153898 ]\n", + " [-0.30883251 -0.65418497 -0.69040895]\n", + " [-0.31595901 -0.67733191 -0.66437293]\n", + " [-0.45023468 -0.45601795 -0.76768246]\n", + " [-0.45023468 -0.45601795 -0.76768246]\n", + " [-0.31841692 -0.68530399 -0.65495733]\n", + " [-0.31841692 -0.68530399 -0.65495733]\n", + " [-0.44306253 -0.47113531 -0.76271037]\n", + " [-0.41253852 -0.48854228 -0.76885526]\n", + " [-0.38173156 -0.50532381 -0.77390495]\n", + " [-0.35083914 -0.52140309 -0.77785006]\n", + " [-0.32006893 -0.53671899 -0.78069751]\n", + " [-0.28963691 -0.55122564 -0.78247093]\n", + " [-0.45267143 -0.4962951 -0.7407967 ]\n", + " [-0.42182135 -0.51381773 -0.74703286]\n", + " [-0.39065679 -0.53064663 -0.75219773]\n", + " [-0.35937572 -0.54670426 -0.75628271]\n", + " [-0.32818586 -0.56192959 -0.75929519]\n", + " [-0.2973052 -0.57627786 -0.7612578 ]\n", + " [-0.46193316 -0.52137187 -0.71748807]\n", + " [-0.4308166 -0.53898069 -0.72380721]\n", + " [-0.39935879 -0.5558316 -0.72908421]\n", + " [-0.36775832 -0.57184644 -0.7333113 ]\n", + " [-0.33622207 -0.58696445 -0.73649675]\n", + " [-0.30496744 -0.60114172 -0.73866332]\n", + " [-0.4707602 -0.54618332 -0.69286983]\n", + " [-0.43943757 -0.56384764 -0.69926423]\n", + " [-0.40775102 -0.58069369 -0.70465165]\n", + " [-0.3759002 -0.59664333 -0.70902453]\n", + " [-0.34409112 -0.61163663 -0.7123917 ]\n", + " [-0.31253959 -0.62563078 -0.71477628]\n", + " [-0.4790764 -0.57055849 -0.66704484]\n", + " [-0.44760986 -0.58824634 -0.67350699]\n", + " [-0.41576006 -0.60505962 -0.679004 ]\n", + " [-0.38372789 -0.62092096 -0.68352766]\n", + " [-0.35171895 -0.6357719 -0.68708651]\n", + " [-0.31994755 -0.649571 -0.68970362]\n", + " [-0.48681578 -0.59433464 -0.64013806]\n", + " [-0.45526968 -0.61201339 -0.64665998]\n", + " [-0.4233237 -0.6287661 -0.65226547]\n", + " [-0.39117977 -0.64451674 -0.65694487]\n", + " [-0.35904358 -0.65920863 -0.66070545]\n", + " [-0.32712871 -0.67280174 -0.66356961]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:cartToSphere: vec: [[ 0.84586223 -0.31051887 0.43369935]\n", + " [ 0.83100319 -0.31850746 0.45605559]\n", + " [ 0.81517685 -0.3263986 0.47848789]\n", + " [ 0.79840977 -0.3341468 0.50088697]\n", + " [ 0.7807369 -0.34170994 0.52314836]\n", + " [ 0.76220289 -0.34904888 0.5451712 ]\n", + " [ 0.74286295 -0.3561274 0.56685793]\n", + " [ 0.72278294 -0.36291258 0.58811502]\n", + " [ 0.84586223 -0.31051887 0.43369935]\n", + " [ 0.84907295 -0.28413347 0.44535749]\n", + " [ 0.85151017 -0.25762403 0.45668401]\n", + " [ 0.85317304 -0.23109832 0.46764232]\n", + " [ 0.85406897 -0.2046672 0.47820239]\n", + " [ 0.85421328 -0.17844479 0.48834121]\n", + " [ 0.85362876 -0.15254917 0.49804286]\n", + " [ 0.85234549 -0.12710332 0.50729864]\n", + " [ 0.72278294 -0.36291258 0.58811502]\n", + " [ 0.72618051 -0.33556929 0.60004594]\n", + " [ 0.72891374 -0.30801514 0.6114012 ]\n", + " [ 0.73098124 -0.28036342 0.6221437 ]\n", + " [ 0.73239022 -0.25272822 0.63224443]\n", + " [ 0.73315612 -0.22522369 0.64168246]\n", + " [ 0.73330222 -0.19796443 0.65044441]\n", + " [ 0.73285922 -0.17106695 0.6585237 ]\n", + " [ 0.85234549 -0.12710332 0.50729864]\n", + " [ 0.8378839 -0.13308982 0.52937479]\n", + " [ 0.82248879 -0.13924537 0.5514734 ]\n", + " [ 0.80619092 -0.14552241 0.5734801 ]\n", + " [ 0.78902854 -0.15187868 0.59528719]\n", + " [ 0.77104788 -0.15827664 0.61679306]\n", + " [ 0.75230366 -0.16468275 0.63790187]\n", + " [ 0.73285922 -0.17106695 0.6585237 ]\n", + " [ 0.8395163 -0.31392058 0.44347069]\n", + " [ 0.8206517 -0.32365091 0.47093616]\n", + " [ 0.80035971 -0.33318943 0.4984066 ]\n", + " [ 0.77870109 -0.34245726 0.52568779]\n", + " [ 0.75575815 -0.3513823 0.55259397]\n", + " [ 0.73163699 -0.35989925 0.57894719]\n", + " [ 0.84730773 -0.29906382 0.43889685]\n", + " [ 0.85072332 -0.26662798 0.45296728]\n", + " [ 0.85297532 -0.23411251 0.46650234]\n", + " [ 0.854074 -0.20172022 0.47944401]\n", + " [ 0.85404747 -0.16966128 0.49174991]\n", + " [ 0.85294074 -0.13815507 0.50339375]\n", + " [ 0.72441536 -0.35100126 0.59331316]\n", + " [ 0.72813316 -0.31733343 0.60755378]\n", + " [ 0.73085062 -0.28346134 0.62089213]\n", + " [ 0.73257746 -0.24959476 0.63327144]\n", + " [ 0.73334208 -0.21594391 0.6446531 ]\n", + " [ 0.7331904 -0.1827204 0.65501534]\n", + " [ 0.84616205 -0.12977604 0.51688293]\n", + " [ 0.82780624 -0.13723446 0.54397016]\n", + " [ 0.80807792 -0.14489875 0.57097673]\n", + " [ 0.78704438 -0.15268892 0.59770163]\n", + " [ 0.7647908 -0.16053576 0.62395777]\n", + " [ 0.74142149 -0.16837902 0.64957115]\n", + " [ 0.84582538 -0.31045639 0.43381592]\n", + " [ 0.84582538 -0.31045639 0.43381592]\n", + " [ 0.73292931 -0.17113641 0.65842764]\n", + " [ 0.73292931 -0.17113641 0.65842764]\n", + " [ 0.84100514 -0.30248242 0.44856966]\n", + " [ 0.84444162 -0.26991018 0.46267358]\n", + " [ 0.84671836 -0.23724807 0.47621568]\n", + " [ 0.84784593 -0.204699 0.4891376 ]\n", + " [ 0.84785292 -0.1724727 0.50139663]\n", + " [ 0.84678474 -0.14078763 0.51296632]\n", + " [ 0.8221573 -0.31209785 0.47608015]\n", + " [ 0.82565112 -0.27918101 0.49026339]\n", + " [ 0.82800002 -0.24614764 0.50381276]\n", + " [ 0.82921538 -0.21320157 0.51666908]\n", + " [ 0.82932694 -0.18055158 0.52878914]\n", + " [ 0.82838125 -0.14841355 0.54014621]\n", + " [ 0.80187966 -0.32154284 0.50358634]\n", + " [ 0.80542849 -0.28834377 0.51782509]\n", + " [ 0.80785362 -0.25500455 0.53136165]\n", + " [ 0.80916687 -0.22173041 0.54413656]\n", + " [ 0.80939871 -0.1887299 0.55610678]\n", + " [ 0.80859657 -0.15621673 0.56724591]\n", + " [ 0.78023296 -0.33073913 0.53089373]\n", + " [ 0.78383477 -0.29732172 0.54516313]\n", + " [ 0.78634113 -0.2637429 0.55866566]\n", + " [ 0.78776376 -0.23020955 0.57134212]\n", + " [ 0.78813329 -0.19693048 0.58315032]\n", + " [ 0.78749743 -0.16411801 0.59406487]\n", + " [ 0.75729943 -0.33961537 0.55781625]\n", + " [ 0.7609522 -0.30604555 0.57209079]\n", + " [ 0.76354506 -0.27229494 0.58553771]\n", + " [ 0.76508917 -0.23857199 0.59809863]\n", + " [ 0.7656146 -0.20508608 0.60973272]\n", + " [ 0.7651687 -0.1720488 0.62041604]\n", + " [ 0.73318506 -0.34810691 0.5841757 ]\n", + " [ 0.7368864 -0.31445249 0.59842967]\n", + " [ 0.73957063 -0.28059963 0.61179992]\n", + " [ 0.7412479 -0.24675787 0.62422921]\n", + " [ 0.74194713 -0.21313722 0.63567837]\n", + " [ 0.7417147 -0.17994922 0.64612506]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:fp_optics: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:fp_optics: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:cartToSphere: vec: [[-0.13124014 0.50633526 -0.8522914 ]\n", + " [-0.14910617 0.5233119 -0.83899464]\n", + " [-0.16720754 0.54020509 -0.82475457]\n", + " [-0.18546557 0.55692439 -0.8095911 ]\n", + " [-0.2038028 0.5733845 -0.79353301]\n", + " [-0.22214228 0.58950477 -0.77661891]\n", + " [-0.24040767 0.60520941 -0.7588977 ]\n", + " [-0.25852371 0.62042813 -0.74042854]\n", + " [-0.13124014 0.50633526 -0.8522914 ]\n", + " [-0.15320171 0.48857482 -0.85896675]\n", + " [-0.17502737 0.47052292 -0.86485467]\n", + " [-0.19663545 0.45225771 -0.86994107]\n", + " [-0.21794767 0.43386332 -0.87422047]\n", + " [-0.23888936 0.41543026 -0.87769561]\n", + " [-0.2593894 0.39705625 -0.88037689]\n", + " [-0.27937981 0.37884752 -0.88228197]\n", + " [-0.25852371 0.62042813 -0.74042854]\n", + " [-0.2811414 0.60195663 -0.74740065]\n", + " [-0.30343531 0.58300612 -0.75367823]\n", + " [-0.3253212 0.56365903 -0.75924609]\n", + " [-0.34671997 0.54400303 -0.76409814]\n", + " [-0.36755813 0.52413035 -0.7682372 ]\n", + " [-0.38776769 0.50413741 -0.7716746 ]\n", + " [-0.40728522 0.48412541 -0.77442969]\n", + " [-0.27937981 0.37884752 -0.88228197]\n", + " [-0.29787065 0.39393781 -0.8695321 ]\n", + " [-0.31642236 0.40915623 -0.85584348]\n", + " [-0.33495235 0.42440781 -0.84124012]\n", + " [-0.35338052 0.43960623 -0.82575334]\n", + " [-0.37162887 0.45467258 -0.80942253]\n", + " [-0.38962155 0.46953443 -0.79229569]\n", + " [-0.40728522 0.48412541 -0.77442969]\n", + " [-0.13907126 0.51368097 -0.84663513]\n", + " [-0.16113692 0.53444254 -0.82970239]\n", + " [-0.18347756 0.5549884 -0.81137159]\n", + " [-0.20595011 0.57515945 -0.79169196]\n", + " [-0.22841296 0.59480723 -0.77073464]\n", + " [-0.25072595 0.61379446 -0.74859392]\n", + " [-0.14088772 0.49869006 -0.85525369]\n", + " [-0.16772359 0.47671653 -0.86290796]\n", + " [-0.19427367 0.45438206 -0.86936453]\n", + " [-0.22039241 0.43183905 -0.87460975]\n", + " [-0.24594232 0.40925423 -0.87864859]\n", + " [-0.27079385 0.38681095 -0.88150325]\n", + " [-0.26835772 0.61238729 -0.7436168 ]\n", + " [-0.29587114 0.58941655 -0.75169701]\n", + " [-0.32281412 0.56580769 -0.7587178 ]\n", + " [-0.34903886 0.54172002 -0.76466417]\n", + " [-0.37441007 0.51732323 -0.76954127]\n", + " [-0.39880452 0.49279678 -0.77337332]\n", + " [-0.28736158 0.38546716 -0.8768343 ]\n", + " [-0.31007557 0.40406208 -0.86057363]\n", + " [-0.33279873 0.42275388 -0.84292595]\n", + " [-0.35538261 0.44138015 -0.82394585]\n", + " [-0.37768361 0.4597955 -0.80370591]\n", + " [-0.39956311 0.47786912 -0.78229817]\n", + " [-0.13137598 0.50633319 -0.8522717 ]\n", + " [-0.13137598 0.50633319 -0.8522717 ]\n", + " [-0.40715996 0.48414439 -0.77448369]\n", + " [-0.40715996 0.48414439 -0.77448369]\n", + " [-0.14861905 0.5060062 -0.84962939]\n", + " [-0.1755445 0.48392849 -0.85731986]\n", + " [-0.20216517 0.46146857 -0.8638148 ]\n", + " [-0.22833505 0.43877888 -0.8691008 ]\n", + " [-0.25391653 0.41602558 -0.87318332]\n", + " [-0.27878025 0.39339084 -0.87608517]\n", + " [-0.17077504 0.52668786 -0.83272792]\n", + " [-0.19792151 0.50434456 -0.84051392]\n", + " [-0.22471022 0.48156222 -0.8471146 ]\n", + " [-0.25099402 0.45849396 -0.85251703]\n", + " [-0.27663506 0.43530522 -0.85672773]\n", + " [-0.30150469 0.41217548 -0.85977107]\n", + " [-0.19318825 0.54716837 -0.81442316]\n", + " [-0.2205061 0.52460351 -0.82229448]\n", + " [-0.24741444 0.50154717 -0.8289973 ]\n", + " [-0.27376521 0.47815383 -0.83451874]\n", + " [-0.29942062 0.45458922 -0.83886586]\n", + " [-0.32425301 0.43103142 -0.84206407]\n", + " [-0.21571508 0.56728903 -0.79476422]\n", + " [-0.24315322 0.54454772 -0.80271059]\n", + " [-0.27013145 0.52126643 -0.80951239]\n", + " [-0.29650124 0.49760128 -0.81515642]\n", + " [-0.32212516 0.47371903 -0.81964972]\n", + " [-0.34687681 0.44979744 -0.82301807]\n", + " [-0.2382134 0.58690187 -0.77382206]\n", + " [-0.26571949 0.56403059 -0.78183287]\n", + " [-0.29271705 0.54057479 -0.78873039]\n", + " [-0.31905756 0.51669214 -0.79450079]\n", + " [-0.34460431 0.49255073 -0.79915058]\n", + " [-0.36923226 0.46832877 -0.80270524]\n", + " [-0.26054265 0.60586996 -0.75169084]\n", + " [-0.28806357 0.58291658 -0.75975499]\n", + " [-0.31502971 0.55933827 -0.7667444 ]\n", + " [-0.341293 0.53529401 -0.77264443]\n", + " [-0.36671773 0.5109531 -0.77746063]\n", + " [-0.39118025 0.48649466 -0.78121762]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:fp_optics: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:cartToSphere: vec: [[0.64012671 0.6431053 0.42030151]\n", + " [0.63787287 0.62898286 0.44440833]\n", + " [0.63505865 0.61407082 0.4686337 ]\n", + " [0.63166753 0.5984022 0.49285996]\n", + " [0.6276894 0.58201533 0.51697599]\n", + " [0.62312088 0.56495529 0.54087512]\n", + " [0.61796591 0.54727531 0.5644536 ]\n", + " [0.6122362 0.52903744 0.58761061]\n", + " [0.64012671 0.6431053 0.42030151]\n", + " [0.61764159 0.65977105 0.42804325]\n", + " [0.59470269 0.67578122 0.43548647]\n", + " [0.57140687 0.69107943 0.44260978]\n", + " [0.54785715 0.70561589 0.44939821]\n", + " [0.52416242 0.71934744 0.45584319]\n", + " [0.50043673 0.73223802 0.46194216]\n", + " [0.47679753 0.74426014 0.4676975 ]\n", + " [0.6122362 0.52903744 0.58761061]\n", + " [0.58898666 0.54634619 0.59548346]\n", + " [0.56528356 0.56310676 0.60279787]\n", + " [0.54122824 0.57925993 0.60953255]\n", + " [0.51692528 0.59475516 0.61567407]\n", + " [0.49248229 0.60955008 0.62121647]\n", + " [0.46801128 0.62360912 0.62616061]\n", + " [0.44363075 0.63690217 0.63051358]\n", + " [0.47679753 0.74426014 0.4676975 ]\n", + " [0.47302907 0.73138777 0.49123867]\n", + " [0.46894777 0.71763026 0.51487357]\n", + " [0.46454194 0.70301787 0.53848552]\n", + " [0.45980476 0.68758949 0.5619611 ]\n", + " [0.45473549 0.67139118 0.58519186]\n", + " [0.44933999 0.65447565 0.60807499]\n", + " [0.44363075 0.63690217 0.63051358]\n", + " [0.63913529 0.63710514 0.4308168 ]\n", + " [0.6359978 0.61926231 0.46045738]\n", + " [0.63200162 0.60026562 0.49015828]\n", + " [0.62712547 0.58018341 0.51971228]\n", + " [0.62136323 0.55909882 0.54892281]\n", + " [0.61472536 0.53711352 0.57760003]\n", + " [0.63037776 0.65040168 0.42379421]\n", + " [0.60250208 0.67039446 0.43308487]\n", + " [0.57404034 0.68934582 0.441905 ]\n", + " [0.54517966 0.70716136 0.45022433]\n", + " [0.5161204 0.72376166 0.45802707]\n", + " [0.48707411 0.73908379 0.46531061]\n", + " [0.60218195 0.53671061 0.59103183]\n", + " [0.57336975 0.55756333 0.60030848]\n", + " [0.54397651 0.57753276 0.60872446]\n", + " [0.5141935 0.59652224 0.61625178]\n", + " [0.484219 0.61445359 0.6228794 ]\n", + " [0.45426182 0.63126365 0.62861148]\n", + " [0.47527296 0.73871816 0.47792373]\n", + " [0.4704465 0.72234242 0.50685454]\n", + " [0.46513789 0.70466617 0.53580998]\n", + " [0.45933243 0.68575755 0.56457975]\n", + " [0.45302883 0.66570132 0.59296427]\n", + " [0.44624065 0.64459723 0.62077669]\n", + " [0.64004392 0.64311643 0.42041056]\n", + " [0.64004392 0.64311643 0.42041056]\n", + " [0.44373387 0.63691919 0.63042382]\n", + " [0.44373387 0.63691919 0.63042382]\n", + " [0.62943107 0.64441963 0.43421177]\n", + " [0.60144405 0.66449892 0.44351576]\n", + " [0.57286616 0.68354213 0.45232127]\n", + " [0.54388483 0.70145484 0.46059788]\n", + " [0.5147008 0.71815741 0.46833003]\n", + " [0.48552672 0.73358585 0.47551615]\n", + " [0.62619802 0.62665063 0.46388039]\n", + " [0.59793281 0.64695132 0.47321279]\n", + " [0.56906693 0.66623363 0.48197052]\n", + " [0.53978869 0.68440355 0.49012239]\n", + " [0.51029903 0.70138187 0.49765287]\n", + " [0.4808118 0.71710334 0.50456201]\n", + " [0.62212456 0.60771444 0.49360328]\n", + " [0.59363649 0.62820166 0.50294969]\n", + " [0.56454374 0.64769228 0.51164937]\n", + " [0.5350356 0.66609262 0.5196706 ]\n", + " [0.50531255 0.68332468 0.52699773]\n", + " [0.4755878 0.69932371 0.53363151]\n", + " [0.61718977 0.58767915 0.52317301]\n", + " [0.58853537 0.60831801 0.5325179 ]\n", + " [0.55927774 0.62798694 0.54114768]\n", + " [0.52960726 0.64659207 0.54903082]\n", + " [0.49972375 0.66405636 0.55615225]\n", + " [0.46983889 0.68031621 0.56251335]\n", + " [0.61138823 0.56662745 0.55239277]\n", + " [0.58262587 0.58738232 0.56171977]\n", + " [0.55326678 0.60719978 0.57026687]\n", + " [0.5235021 0.62598508 0.57800366]\n", + " [0.49353095 0.64366136 0.58491644]\n", + " [0.46356349 0.66016578 0.59100765]\n", + " [0.6047311 0.54466048 0.5810725 ]\n", + " [0.57592109 0.56549441 0.59036512]\n", + " [0.54652524 0.58542981 0.59881726]\n", + " [0.51673491 0.60437056 0.60640025]\n", + " [0.48674858 0.62223898 0.61310233]\n", + " [0.45677529 0.63897215 0.61892724]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:fp_optics: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:cartToSphere: vec: [[ 0.10381529 -0.55447116 0.8257022 ]\n", + " [ 0.09025161 -0.53469433 0.84021225]\n", + " [ 0.07634673 -0.51409542 0.85432844]\n", + " [ 0.06215224 -0.49273328 0.86795795]\n", + " [ 0.04772047 -0.47067204 0.88101679]\n", + " [ 0.03310534 -0.44798247 0.89342921]\n", + " [ 0.01836279 -0.42474284 0.9051278 ]\n", + " [ 0.00355062 -0.40103884 0.91605417]\n", + " [ 0.10381529 -0.55447116 0.8257022 ]\n", + " [ 0.12898319 -0.54103116 0.83105272]\n", + " [ 0.15391476 -0.52711246 0.83574081]\n", + " [ 0.17851287 -0.51277377 0.83975962]\n", + " [ 0.20268145 -0.4980781 0.84311235]\n", + " [ 0.22632523 -0.48309234 0.84581244]\n", + " [ 0.24934921 -0.46788714 0.8478836 ]\n", + " [ 0.2716583 -0.45253698 0.84935978]\n", + " [ 0.00355062 -0.40103884 0.91605417]\n", + " [ 0.0296486 -0.38724695 0.92149919]\n", + " [ 0.05563421 -0.37315116 0.92610099]\n", + " [ 0.0814054 -0.35881199 0.92985328]\n", + " [ 0.10686327 -0.34429286 0.93276078]\n", + " [ 0.13191251 -0.32965961 0.93483882]\n", + " [ 0.15646073 -0.31498063 0.93611284]\n", + " [ 0.18041697 -0.30032753 0.9366179 ]\n", + " [ 0.2716583 -0.45253698 0.84935978]\n", + " [ 0.26004495 -0.43245337 0.86334275]\n", + " [ 0.24786895 -0.41170282 0.87696167]\n", + " [ 0.23518386 -0.39034852 0.89012167]\n", + " [ 0.22204285 -0.36845837 0.90273773]\n", + " [ 0.20849893 -0.34610529 0.91473457]\n", + " [ 0.19460555 -0.32336732 0.92604657]\n", + " [ 0.18041697 -0.30032753 0.9366179 ]\n", + " [ 0.09803343 -0.54590781 0.83209021]\n", + " [ 0.08117466 -0.52110882 0.84962125]\n", + " [ 0.06385446 -0.4951331 0.86646744]\n", + " [ 0.04616881 -0.46809641 0.8824705 ]\n", + " [ 0.02821703 -0.44012919 0.897491 ]\n", + " [ 0.01010288 -0.41137862 0.91140856]\n", + " [ 0.114766 -0.54860736 0.82816588]\n", + " [ 0.14546615 -0.53180579 0.83427945]\n", + " [ 0.17571476 -0.51434313 0.83938994]\n", + " [ 0.20533453 -0.49633362 0.84349906]\n", + " [ 0.23414999 -0.4779004 0.84663156]\n", + " [ 0.26198623 -0.4591751 0.84883534]\n", + " [ 0.01498731 -0.39514837 0.91849505]\n", + " [ 0.04691028 -0.37803308 0.92460284]\n", + " [ 0.07856266 -0.36052095 0.92943669]\n", + " [ 0.10976105 -0.34272756 0.93300071]\n", + " [ 0.14032986 -0.32477416 0.93532309]\n", + " [ 0.17009972 -0.3067879 0.93645463]\n", + " [ 0.26659198 -0.44391894 0.85549091]\n", + " [ 0.2519721 -0.41884803 0.87239692]\n", + " [ 0.23656051 -0.3928375 0.88866069]\n", + " [ 0.22045525 -0.36601037 0.90412162]\n", + " [ 0.20375398 -0.33850089 0.9186411 ]\n", + " [ 0.18655542 -0.31045484 0.93210239]\n", + " [ 0.10385591 -0.55435991 0.82577179]\n", + " [ 0.10385591 -0.55435991 0.82577179]\n", + " [ 0.18038512 -0.30045671 0.9365826 ]\n", + " [ 0.18038512 -0.30045671 0.9365826 ]\n", + " [ 0.10898705 -0.54013399 0.83449212]\n", + " [ 0.13981794 -0.52328027 0.8406121 ]\n", + " [ 0.17020795 -0.50577791 0.8457056 ]\n", + " [ 0.19997975 -0.48774158 0.84977424]\n", + " [ 0.22895824 -0.46929469 0.85284267]\n", + " [ 0.25696911 -0.45056892 0.85495878]\n", + " [ 0.092238 -0.51528199 0.85204262]\n", + " [ 0.12340083 -0.49830289 0.85817624]\n", + " [ 0.15415268 -0.48071295 0.86322188]\n", + " [ 0.18431574 -0.4626281 0.86718103]\n", + " [ 0.21371596 -0.44417246 0.87007834]\n", + " [ 0.2421809 -0.42547769 0.87196167]\n", + " [ 0.07500722 -0.4892642 0.86890417]\n", + " [ 0.10644478 -0.47219364 0.87504438]\n", + " [ 0.13750142 -0.45455422 0.88004194]\n", + " [ 0.16799836 -0.43646285 0.8838986 ]\n", + " [ 0.19776208 -0.41804398 0.88663938]\n", + " [ 0.22662197 -0.39942891 0.88831246]\n", + " [ 0.05739013 -0.46219674 0.88491838]\n", + " [ 0.08904407 -0.44506991 0.89105776]\n", + " [ 0.12034812 -0.42742064 0.89600665]\n", + " [ 0.15112212 -0.40936628 0.89976739]\n", + " [ 0.18119247 -0.39103102 0.9023658 ]\n", + " [ 0.21038985 -0.37254536 0.90385069]\n", + " [ 0.03948539 -0.43421039 0.89994569]\n", + " [ 0.07129564 -0.41706356 0.90607666]\n", + " [ 0.10278855 -0.39944509 0.91097647]\n", + " [ 0.13378244 -0.38147203 0.91464821]\n", + " [ 0.1641031 -0.36326769 0.91711873]\n", + " [ 0.19358171 -0.34496129 0.91843771]\n", + " [ 0.02139613 -0.40545264 0.91386562]\n", + " [ 0.05330082 -0.38832263 0.91998074]\n", + " [ 0.08492244 -0.37077567 0.92483165]\n", + " [ 0.11607796 -0.35292785 0.92842223]\n", + " [ 0.1465922 -0.33490099 0.93078035]\n", + " [ 0.17629603 -0.31682282 0.93195655]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:fp_optics: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:cartToSphere: vec: [[-0.17139427 0.60280193 -0.77926493]\n", + " [-0.1754406 0.58108404 -0.79470871]\n", + " [-0.17928765 0.55847144 -0.80991703]\n", + " [-0.18292632 0.53503695 -0.8247869 ]\n", + " [-0.18634688 0.51085807 -0.83922516]\n", + " [-0.18953897 0.48601728 -0.85314839]\n", + " [-0.19249182 0.46060239 -0.86648274]\n", + " [-0.19519475 0.43470658 -0.87916392]\n", + " [-0.17139427 0.60280193 -0.77926493]\n", + " [-0.14486314 0.60426551 -0.78350358]\n", + " [-0.11766061 0.60518485 -0.78734191]\n", + " [-0.08989719 0.60554187 -0.79071963]\n", + " [-0.06168332 0.60532267 -0.79358656]\n", + " [-0.03312976 0.60451757 -0.79590259]\n", + " [-0.00434789 0.60312135 -0.7976376 ]\n", + " [ 0.02455016 0.60113375 -0.79877125]\n", + " [-0.19519475 0.43470658 -0.87916392]\n", + " [-0.16786555 0.43475176 -0.88476667]\n", + " [-0.13984116 0.43444543 -0.88977616]\n", + " [-0.11122682 0.43376964 -0.89413226]\n", + " [-0.08212864 0.43271073 -0.89778411]\n", + " [-0.05265547 0.43125953 -0.90069008]\n", + " [-0.02291997 0.42941168 -0.90281797]\n", + " [ 0.00696154 0.42716782 -0.90414556]\n", + " [ 0.02455016 0.60113375 -0.79877125]\n", + " [ 0.02217203 0.57865949 -0.8152678 ]\n", + " [ 0.01973466 0.55526839 -0.83143704]\n", + " [ 0.01724625 0.53102863 -0.84717836]\n", + " [ 0.01471539 0.50601386 -0.86239981]\n", + " [ 0.01215118 0.48030486 -0.87701744]\n", + " [ 0.00956322 0.45399052 -0.89095519]\n", + " [ 0.00696154 0.42716782 -0.90414556]\n", + " [-0.17309261 0.59345296 -0.78603596]\n", + " [-0.17791801 0.56622405 -0.80482017]\n", + " [-0.18243528 0.53772303 -0.8231472 ]\n", + " [-0.18662678 0.50809064 -0.84084145]\n", + " [-0.19047345 0.47747877 -0.85774932]\n", + " [-0.1939555 0.44605129 -0.87373881]\n", + " [-0.15993003 0.6034327 -0.78121147]\n", + " [-0.12694696 0.60486227 -0.78614636]\n", + " [-0.09306518 0.60545604 -0.79041878]\n", + " [-0.05848807 0.6051867 -0.79393211]\n", + " [-0.02341955 0.60403644 -0.79661252]\n", + " [ 0.011935 0.6019977 -0.79840862]\n", + " [-0.18336254 0.43485779 -0.88163307]\n", + " [-0.14938696 0.43468017 -0.88810849]\n", + " [-0.11447178 0.43395609 -0.8936321 ]\n", + " [-0.07881186 0.43265862 -0.89810646]\n", + " [-0.04260774 0.43077092 -0.90145493]\n", + " [-0.00606837 0.42828703 -0.90362238]\n", + " [ 0.0234218 0.59145966 -0.80599435]\n", + " [ 0.02046533 0.56329035 -0.82600554]\n", + " [ 0.01742817 0.53381113 -0.84542412]\n", + " [ 0.01432599 0.50315523 -0.8640773 ]\n", + " [ 0.01117552 0.47147149 -0.88181049]\n", + " [ 0.00799464 0.43892692 -0.8984872 ]\n", + " [-0.17131898 0.60273518 -0.77933312]\n", + " [-0.17131898 0.60273518 -0.77933312]\n", + " [ 0.00686815 0.42726863 -0.90409864]\n", + " [ 0.00686815 0.42726863 -0.90409864]\n", + " [-0.16165946 0.59411645 -0.78796692]\n", + " [-0.12854976 0.59545973 -0.79303384]\n", + " [-0.0945391 0.59598228 -0.79741299]\n", + " [-0.0598304 0.59565656 -0.80100786]\n", + " [-0.02462735 0.59446431 -0.80374478]\n", + " [ 0.01086453 0.5923976 -0.80557249]\n", + " [-0.16637625 0.56678754 -0.8068896 ]\n", + " [-0.13295503 0.56787811 -0.81230377]\n", + " [-0.09862609 0.568193 -0.81696366]\n", + " [-0.06359068 0.56770378 -0.8207732 ]\n", + " [-0.02805167 0.56639108 -0.82365906]\n", + " [ 0.00778474 0.56424601 -0.82557001]\n", + " [-0.17080954 0.53818109 -0.82533945]\n", + " [-0.13714658 0.53900571 -0.83106177]\n", + " [-0.10256848 0.53910265 -0.83597131]\n", + " [-0.06727452 0.53844281 -0.83997231]\n", + " [-0.03146679 0.53700612 -0.84299126]\n", + " [ 0.00464763 0.53478325 -0.84497649]\n", + " [-0.17494152 0.50843745 -0.84314104]\n", + " [-0.14110585 0.5089813 -0.84913319]\n", + " [-0.10634725 0.5088482 -0.85426212]\n", + " [-0.07086311 0.50800889 -0.85843193]\n", + " [-0.03485488 0.50644341 -0.86156846]\n", + " [ 0.00146947 0.50414264 -0.86361915]\n", + " [-0.1787527 0.47770823 -0.86014087]\n", + " [-0.14481232 0.47795565 -0.8663647 ]\n", + " [-0.10994138 0.47757957 -0.87168265]\n", + " [-0.07433579 0.47655133 -0.8759983 ]\n", + " [-0.03819653 0.47485184 -0.87923646]\n", + " [-0.00173223 0.47247297 -0.88134346]\n", + " [-0.18222286 0.44615739 -0.87620683]\n", + " [-0.14824475 0.44609314 -0.88262359]\n", + " [-0.11332921 0.44546178 -0.88809926]\n", + " [-0.07767126 0.44423584 -0.89253666]\n", + " [-0.04147151 0.44239784 -0.89585951]\n", + " [-0.00493893 0.43994116 -0.89801302]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:fp_optics: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:cartToSphere: vec: [[-0.85147191 0.15620054 -0.50059663]\n", + " [-0.83654176 0.16614415 -0.52210536]\n", + " [-0.82063849 0.17615051 -0.5436207 ]\n", + " [-0.80378871 0.18617258 -0.56503405]\n", + " [-0.78602749 0.19616505 -0.58624232]\n", + " [-0.76739966 0.20608381 -0.60714679]\n", + " [-0.74796068 0.21588579 -0.62765289]\n", + " [-0.72777672 0.2255293 -0.64767088]\n", + " [-0.85147191 0.15620054 -0.50059663]\n", + " [-0.85275327 0.18288414 -0.48924967]\n", + " [-0.85326406 0.20936327 -0.47760597]\n", + " [-0.85301098 0.23553769 -0.46571908]\n", + " [-0.85200902 0.26131042 -0.45364909]\n", + " [-0.85028102 0.2865878 -0.44146305]\n", + " [-0.84785738 0.31127912 -0.42923556]\n", + " [-0.84477587 0.33529603 -0.41704952]\n", + " [-0.72777672 0.2255293 -0.64767088]\n", + " [-0.72917872 0.25307624 -0.63580721]\n", + " [-0.72992023 0.28030664 -0.6234137 ]\n", + " [-0.73000776 0.30711613 -0.61054758]\n", + " [-0.72945625 0.33340623 -0.59727201]\n", + " [-0.72828866 0.3590848 -0.58365549]\n", + " [-0.72653555 0.38406538 -0.56977178]\n", + " [-0.72423487 0.40826562 -0.55570049]\n", + " [-0.84477587 0.33529603 -0.41704952]\n", + " [-0.8301273 0.34642467 -0.43689657]\n", + " [-0.81455704 0.35739736 -0.45690695]\n", + " [-0.79809588 0.36816502 -0.47696697]\n", + " [-0.78078226 0.37868028 -0.49697113]\n", + " [-0.76266272 0.3888975 -0.51682135]\n", + " [-0.74379234 0.39877301 -0.53642617]\n", + " [-0.72423487 0.40826562 -0.55570049]\n", + " [-0.84508907 0.16061701 -0.50992807]\n", + " [-0.82613334 0.17285306 -0.5363073 ]\n", + " [-0.80574152 0.18513622 -0.56258793]\n", + " [-0.78397458 0.19738241 -0.58857798]\n", + " [-0.76091517 0.20951037 -0.61409569]\n", + " [-0.73666985 0.22144138 -0.6389689 ]\n", + " [-0.85207607 0.1678875 -0.49576221]\n", + " [-0.85312798 0.20046714 -0.48164882]\n", + " [-0.85302821 0.23263961 -0.46714203]\n", + " [-0.85180094 0.264225 -0.45234976]\n", + " [-0.8494882 0.29505084 -0.43739547]\n", + " [-0.846149 0.32495115 -0.42241995]\n", + " [-0.72853947 0.23753922 -0.64249931]\n", + " [-0.72981309 0.27110131 -0.62759616]\n", + " [-0.73010002 0.30408371 -0.61195348]\n", + " [-0.72942428 0.33630262 -0.59568512]\n", + " [-0.7278281 0.36758832 -0.57891717]\n", + " [-0.7253708 0.39778346 -0.5617878 ]\n", + " [-0.83851555 0.34008306 -0.42571726]\n", + " [-0.81993859 0.35362334 -0.45016802]\n", + " [-0.8000069 0.36688054 -0.47475006]\n", + " [-0.77878805 0.37976679 -0.49926581]\n", + " [-0.75636777 0.39219806 -0.5235346 ]\n", + " [-0.73285106 0.40409496 -0.54739071]\n", + " [-0.85142823 0.15632586 -0.5006318 ]\n", + " [-0.85142823 0.15632586 -0.5006318 ]\n", + " [-0.72431159 0.40815252 -0.55568358]\n", + " [-0.72431159 0.40815252 -0.55568358]\n", + " [-0.84574012 0.17222328 -0.50503742]\n", + " [-0.84680365 0.20492159 -0.49084694]\n", + " [-0.84671941 0.23720069 -0.47623741]\n", + " [-0.84551191 0.26888033 -0.46131657]\n", + " [-0.84322363 0.29978814 -0.44620733]\n", + " [-0.83991392 0.32975868 -0.43104967]\n", + " [-0.82679289 0.1845715 -0.53136323]\n", + " [-0.82789046 0.21756608 -0.51697426]\n", + " [-0.82785533 0.25010799 -0.50209714]\n", + " [-0.82671289 0.28201584 -0.48683967]\n", + " [-0.82450672 0.31311757 -0.47132373]\n", + " [-0.82129717 0.34324941 -0.45568717]\n", + " [-0.80640873 0.19694537 -0.55759975]\n", + " [-0.80754246 0.23017619 -0.54304153]\n", + " [-0.80756503 0.26292194 -0.52793065]\n", + " [-0.80650237 0.29500007 -0.51237573]\n", + " [-0.80439875 0.3262389 -0.49649857]\n", + " [-0.80131527 0.35647637 -0.48043567]\n", + " [-0.78464862 0.20926015 -0.58355525]\n", + " [-0.78582105 0.24266541 -0.56885743]\n", + " [-0.78591092 0.27555467 -0.55354643]\n", + " [-0.78494415 0.30774443 -0.53773231]\n", + " [-0.78296519 0.33906346 -0.52153762]\n", + " [-0.78003528 0.36935143 -0.50509849]\n", + " [-0.76159517 0.22143387 -0.6090483 ]\n", + " [-0.76280899 0.2549499 -0.59424153]\n", + " [-0.76297614 0.28792102 -0.57876498]\n", + " [-0.76212205 0.32016323 -0.56273038]\n", + " [-0.7602906 0.35150589 -0.54626167]\n", + " [-0.75754262 0.38179016 -0.52949547]\n", + " [-0.7373549 0.23338716 -0.63390707]\n", + " [-0.73861256 0.26694884 -0.61902326]\n", + " [-0.73886666 0.29993935 -0.6034173 ]\n", + " [-0.73814166 0.33217475 -0.58720254]\n", + " [-0.73648029 0.36348507 -0.5705045 ]\n", + " [-0.73394235 0.39371264 -0.55346091]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:fp_optics: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:cartToSphere: vec: [[-0.34641158 -0.80249799 -0.48579418]\n", + " [-0.34216398 -0.78970668 -0.50920248]\n", + " [-0.33770849 -0.77600378 -0.53270171]\n", + " [-0.33304036 -0.76141542 -0.55617504]\n", + " [-0.32815799 -0.7459774 -0.57950847]\n", + " [-0.32306433 -0.72973361 -0.60259298]\n", + " [-0.31776751 -0.71273551 -0.62532543]\n", + " [-0.31228096 -0.69504187 -0.64760898]\n", + " [-0.34641158 -0.80249799 -0.48579418]\n", + " [-0.37150637 -0.79336158 -0.48224518]\n", + " [-0.39684774 -0.78336395 -0.47838561]\n", + " [-0.4223165 -0.77251605 -0.4742022 ]\n", + " [-0.44779453 -0.76083834 -0.46968616]\n", + " [-0.47316713 -0.74835933 -0.46483458]\n", + " [-0.49832407 -0.73511492 -0.45965114]\n", + " [-0.52315988 -0.72114834 -0.45414625]\n", + " [-0.31228096 -0.69504187 -0.64760898]\n", + " [-0.33813175 -0.6847154 -0.64562508]\n", + " [-0.36424318 -0.67362443 -0.64308401]\n", + " [-0.39049293 -0.66178377 -0.63996681]\n", + " [-0.41676467 -0.6492142 -0.63626106]\n", + " [-0.4429459 -0.63594342 -0.63196115]\n", + " [-0.46892598 -0.62200738 -0.62706877]\n", + " [-0.49459571 -0.60745104 -0.62159337]\n", + " [-0.52315988 -0.72114834 -0.45414625]\n", + " [-0.52050978 -0.70727692 -0.47836067]\n", + " [-0.5173913 -0.69255508 -0.5026666 ]\n", + " [-0.51379376 -0.67701199 -0.52694472]\n", + " [-0.50971189 -0.66068285 -0.55108254]\n", + " [-0.50514613 -0.64361029 -0.57497233]\n", + " [-0.50010307 -0.62584593 -0.59850965]\n", + " [-0.49459571 -0.60745104 -0.62159337]\n", + " [-0.34467042 -0.7970042 -0.49597037]\n", + " [-0.33932634 -0.78071069 -0.52473656]\n", + " [-0.33366483 -0.76307272 -0.55352309]\n", + " [-0.32768153 -0.74415228 -0.58211872]\n", + " [-0.32138194 -0.72403015 -0.61032286]\n", + " [-0.31478324 -0.70280408 -0.63794822]\n", + " [-0.35730132 -0.79857819 -0.48436416]\n", + " [-0.38823932 -0.78679993 -0.47980839]\n", + " [-0.41942934 -0.77373782 -0.47477238]\n", + " [-0.45065326 -0.7594257 -0.46923793]\n", + " [-0.48170008 -0.74391598 -0.46319979]\n", + " [-0.51236878 -0.7272778 -0.45666753]\n", + " [-0.32353098 -0.69069607 -0.64673537]\n", + " [-0.35540498 -0.67752487 -0.64393117]\n", + " [-0.38754819 -0.66321933 -0.64027067]\n", + " [-0.41974401 -0.64781519 -0.63572828]\n", + " [-0.45178509 -0.63136363 -0.63029374]\n", + " [-0.48346829 -0.61393455 -0.62397339]\n", + " [-0.52197652 -0.71525569 -0.46470401]\n", + " [-0.51841436 -0.69768006 -0.49445838]\n", + " [-0.51413764 -0.67885534 -0.52423079]\n", + " [-0.50913441 -0.65884378 -0.55381137]\n", + " [-0.50340554 -0.63772407 -0.58300161]\n", + " [-0.49696581 -0.61559523 -0.61161057]\n", + " [-0.34648267 -0.80242605 -0.48586232]\n", + " [-0.34648267 -0.80242605 -0.48586232]\n", + " [-0.49452818 -0.60756571 -0.62153502]\n", + " [-0.49452818 -0.60756571 -0.62153502]\n", + " [-0.35553472 -0.79312415 -0.4945191 ]\n", + " [-0.38660316 -0.78125536 -0.49007965]\n", + " [-0.41792283 -0.76810553 -0.48513338]\n", + " [-0.44927413 -0.75370975 -0.47966068]\n", + " [-0.48044558 -0.73812073 -0.47365582]\n", + " [-0.51123586 -0.72140758 -0.46712845]\n", + " [-0.35030327 -0.77673782 -0.5234176 ]\n", + " [-0.38169216 -0.76461332 -0.51930489]\n", + " [-0.41332973 -0.75122223 -0.51461024]\n", + " [-0.44499441 -0.73660141 -0.50931163]\n", + " [-0.47647452 -0.72080336 -0.50340296]\n", + " [-0.50756818 -0.70389661 -0.49689446]\n", + " [-0.34472762 -0.75900645 -0.55233331]\n", + " [-0.37636032 -0.74663099 -0.54853904]\n", + " [-0.40824077 -0.73301086 -0.54409057]\n", + " [-0.44014775 -0.71818295 -0.53896495]\n", + " [-0.47187042 -0.70219862 -0.53315607]\n", + " [-0.50320637 -0.6851257 -0.52667459]\n", + " [-0.33880196 -0.73999323 -0.58105358]\n", + " [-0.37059947 -0.72737321 -0.57756753]\n", + " [-0.40264693 -0.71353604 -0.57336008]\n", + " [-0.43472463 -0.69851784 -0.56840771]\n", + " [-0.46662295 -0.68236897 -0.56270384]\n", + " [-0.49813893 -0.665157 -0.55625873]\n", + " [-0.33253134 -0.71977928 -0.6093773 ]\n", + " [-0.36441442 -0.70692093 -0.60618886]\n", + " [-0.39655322 -0.69287758 -0.60221774]\n", + " [-0.42872979 -0.67768474 -0.59743968]\n", + " [-0.46073564 -0.66139247 -0.59184683]\n", + " [-0.49236748 -0.64406887 -0.58544816]\n", + " [-0.32593302 -0.69846242 -0.63711687]\n", + " [-0.35782313 -0.68537172 -0.63421464]\n", + " [-0.38997831 -0.67113264 -0.63047435]\n", + " [-0.42218178 -0.65578072 -0.62587075]\n", + " [-0.45422596 -0.6393667 -0.62039423]\n", + " [-0.48590759 -0.62195992 -0.61405185]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:fp_optics: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:cartToSphere: vec: [[-0.39918358 0.49324911 0.77288924]\n", + " [-0.40466111 0.51391564 0.75639943]\n", + " [-0.40981557 0.53468034 0.73903189]\n", + " [-0.41461713 0.55543316 0.72082359]\n", + " [-0.4190402 0.57606683 0.70182072]\n", + " [-0.42306257 0.59647953 0.68207788]\n", + " [-0.42666489 0.61657609 0.66165776]\n", + " [-0.42983073 0.63626839 0.640631 ]\n", + " [-0.39918358 0.49324911 0.77288924]\n", + " [-0.37453928 0.50172139 0.77974096]\n", + " [-0.34910936 0.51011537 0.78606931]\n", + " [-0.32298034 0.5183675 0.79181996]\n", + " [-0.29624515 0.5264176 0.79694625]\n", + " [-0.26900117 0.53421136 0.80140913]\n", + " [-0.24134943 0.54170144 0.805177 ]\n", + " [-0.21339434 0.54884773 0.80822585]\n", + " [-0.42983073 0.63626839 0.640631 ]\n", + " [-0.4046098 0.64660126 0.64668209]\n", + " [-0.37854612 0.65662893 0.65233525]\n", + " [-0.35172827 0.66628095 0.65753852]\n", + " [-0.32424656 0.67549464 0.66224705]\n", + " [-0.29619528 0.68421425 0.6664227 ]\n", + " [-0.26767502 0.69239046 0.67003398]\n", + " [-0.23879358 0.69998056 0.67305634]\n", + " [-0.21339434 0.54884773 0.80822585]\n", + " [-0.21743959 0.57103518 0.79160523]\n", + " [-0.22138379 0.59320435 0.77401409]\n", + " [-0.22520202 0.61523999 0.75548912]\n", + " [-0.22887168 0.63703467 0.73607376]\n", + " [-0.23237221 0.65848686 0.71581995]\n", + " [-0.235685 0.67949961 0.6947898 ]\n", + " [-0.23879358 0.69998056 0.67305634]\n", + " [-0.4015263 0.50227025 0.76583368]\n", + " [-0.40802572 0.52768046 0.74502909]\n", + " [-0.41400982 0.55312858 0.72294166]\n", + " [-0.41942983 0.57841575 0.69965265]\n", + " [-0.42424479 0.60335465 0.67526256]\n", + " [-0.42842028 0.627773 0.64989008]\n", + " [-0.38855934 0.49701949 0.77588225]\n", + " [-0.35781571 0.50735987 0.78393487]\n", + " [-0.32597709 0.51751913 0.79114657]\n", + " [-0.29321206 0.52738487 0.79742829]\n", + " [-0.25969979 0.53685725 0.80270811]\n", + " [-0.2256277 0.5458521 0.80693099]\n", + " [-0.41893346 0.64073941 0.64338773]\n", + " [-0.38744471 0.65320676 0.65054402]\n", + " [-0.354778 0.66514496 0.65705004]\n", + " [-0.32109883 0.67643537 0.66282029]\n", + " [-0.28658108 0.68697533 0.66778454]\n", + " [-0.25141294 0.69667676 0.67188766]\n", + " [-0.21526518 0.55849212 0.80109141]\n", + " [-0.2201593 0.58568751 0.78006412]\n", + " [-0.22487642 0.61274005 0.75761483]\n", + " [-0.229374 0.63944878 0.7338207 ]\n", + " [-0.23361417 0.66562664 0.70877754]\n", + " [-0.23756352 0.69109698 0.68260423]\n", + " [-0.39911997 0.49334853 0.77285864]\n", + " [-0.39911997 0.49334853 0.77285864]\n", + " [-0.23888257 0.69988662 0.67312246]\n", + " [-0.23888257 0.69988662 0.67312246]\n", + " [-0.3909338 0.50600629 0.76884875]\n", + " [-0.36009267 0.51651654 0.7768809 ]\n", + " [-0.32814779 0.52682114 0.78407813]\n", + " [-0.29526892 0.53680561 0.79035182]\n", + " [-0.26163556 0.54636946 0.7956301 ]\n", + " [-0.22743538 0.55542843 0.79985775]\n", + " [-0.39735382 0.53159351 0.74800955]\n", + " [-0.36627109 0.54256175 0.75595783]\n", + " [-0.3340637 0.55325403 0.76309332]\n", + " [-0.30090286 0.5635527 0.76932816]\n", + " [-0.26696797 0.57335683 0.77459025]\n", + " [-0.23244703 0.58258251 0.77882347]\n", + " [-0.40327618 0.55720459 0.72587283]\n", + " [-0.37200627 0.56859044 0.73370038]\n", + " [-0.339595 0.57963241 0.74074388]\n", + " [-0.30621295 0.59021218 0.7469158 ]\n", + " [-0.27203832 0.6002293 0.75214356]\n", + " [-0.23725929 0.6096001 0.75637011]\n", + " [-0.40865326 0.58263863 0.70252028]\n", + " [-0.37725245 0.59439874 0.71019063]\n", + " [-0.34469653 0.60575232 0.71711117]\n", + " [-0.31115434 0.61658124 0.72319468]\n", + " [-0.27680244 0.62678527 0.72836848]\n", + " [-0.24182914 0.6362802 0.73257503]\n", + " [-0.41344439 0.60770764 0.67805248]\n", + " [-0.38196891 0.61979824 0.68552891]\n", + " [-0.34932702 0.63142598 0.69229464]\n", + " [-0.31568563 0.64247285 0.69826301]\n", + " [-0.2812198 0.65283801 0.7033619 ]\n", + " [-0.24611791 0.66243589 0.70753421]\n", + " [-0.41761502 0.63223904 0.6525883 ]\n", + " [-0.38612012 0.64461603 0.6598344 ]\n", + " [-0.35344985 0.65648011 0.66641359]\n", + " [-0.31976989 0.66771291 0.67224005]\n", + " [-0.28525431 0.6782123 0.67724299]\n", + " [-0.25009136 0.68789086 0.68136662]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:fp_optics: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:cartToSphere: vec: [[ 4.33666234e-01 -6.55932277e-03 -9.01049706e-01]\n", + " [ 4.16301679e-01 1.39015543e-02 -9.09120267e-01]\n", + " [ 3.98256463e-01 3.47574469e-02 -9.16615355e-01]\n", + " [ 3.79584227e-01 5.59246168e-02 -9.23465350e-01]\n", + " [ 3.60343246e-01 7.73191052e-02 -9.29609865e-01]\n", + " [ 3.40597345e-01 9.88558772e-02 -9.34997842e-01]\n", + " [ 3.20416135e-01 1.20448787e-01 -9.39587990e-01]\n", + " [ 2.99874686e-01 1.42011155e-01 -9.43349354e-01]\n", + " [ 4.33666234e-01 -6.55932277e-03 -9.01049706e-01]\n", + " [ 4.14290064e-01 -2.63454232e-02 -9.09763520e-01]\n", + " [ 3.94567651e-01 -4.59744962e-02 -9.17716032e-01]\n", + " [ 3.74579256e-01 -6.53681133e-02 -9.24887772e-01]\n", + " [ 3.54408046e-01 -8.44472666e-02 -9.31269884e-01]\n", + " [ 3.34139743e-01 -1.03131893e-01 -9.36864155e-01]\n", + " [ 3.13862633e-01 -1.21339890e-01 -9.41683003e-01]\n", + " [ 2.93668007e-01 -1.38985757e-01 -9.45749471e-01]\n", + " [ 2.99874686e-01 1.42011155e-01 -9.43349354e-01]\n", + " [ 2.79927462e-01 1.21438222e-01 -9.52309495e-01]\n", + " [ 2.59791304e-01 1.00823486e-01 -9.60386955e-01]\n", + " [ 2.39549119e-01 8.02497628e-02 -9.67561985e-01]\n", + " [ 2.19285299e-01 5.97995105e-02 -9.73826461e-01]\n", + " [ 1.99085029e-01 3.95542265e-02 -9.79183647e-01]\n", + " [ 1.79034149e-01 1.95944058e-02 -9.83647718e-01]\n", + " [ 1.59219763e-01 2.65486670e-07 -9.87243165e-01]\n", + " [ 2.93668007e-01 -1.38985757e-01 -9.45749471e-01]\n", + " [ 2.75596531e-01 -1.20446049e-01 -9.53697699e-01]\n", + " [ 2.57043916e-01 -1.01323474e-01 -9.61073347e-01]\n", + " [ 2.38067945e-01 -8.17073940e-02 -9.67805536e-01]\n", + " [ 2.18730073e-01 -6.16836626e-02 -9.73833806e-01]\n", + " [ 1.99095784e-01 -4.13360617e-02 -9.79107859e-01]\n", + " [ 1.79234596e-01 -2.07473427e-02 -9.83587570e-01]\n", + " [ 1.59219763e-01 2.65486670e-07 -9.87243165e-01]\n", + " [ 4.26116360e-01 2.23961714e-03 -9.04665591e-01]\n", + " [ 4.04369392e-01 2.75920594e-02 -9.14179453e-01]\n", + " [ 3.81653026e-01 5.34547053e-02 -9.22758669e-01]\n", + " [ 3.58072554e-01 7.96731611e-02 -9.30288253e-01]\n", + " [ 3.33745503e-01 1.06090882e-01 -9.36674257e-01]\n", + " [ 3.08802329e-01 1.32549015e-01 -9.41844934e-01]\n", + " [ 4.25207307e-01 -1.51315275e-02 -9.04969493e-01]\n", + " [ 4.01216423e-01 -3.92864885e-02 -9.15140401e-01]\n", + " [ 3.76784973e-01 -6.31278375e-02 -9.24147153e-01]\n", + " [ 3.52064883e-01 -8.65103675e-02 -9.31969031e-01]\n", + " [ 3.27213969e-01 -1.09286577e-01 -9.38609324e-01]\n", + " [ 3.02395968e-01 -1.31303985e-01 -9.44095303e-01]\n", + " [ 2.91276839e-01 1.32978145e-01 -9.47351369e-01]\n", + " [ 2.66692040e-01 1.07725591e-01 -9.57742425e-01]\n", + " [ 2.41905494e-01 8.24926832e-02 -9.66786786e-01]\n", + " [ 2.17071990e-01 5.74314110e-02 -9.74464665e-01]\n", + " [ 1.92348342e-01 3.26917978e-02 -9.80782015e-01]\n", + " [ 1.67893039e-01 8.42184458e-03 -9.85769243e-01]\n", + " [ 2.85920376e-01 -1.30920087e-01 -9.49267860e-01]\n", + " [ 2.63441368e-01 -1.07792739e-01 -9.58634117e-01]\n", + " [ 2.40296544e-01 -8.38792872e-02 -9.67068682e-01]\n", + " [ 2.16597482e-01 -5.93391604e-02 -9.74455948e-01]\n", + " [ 1.92464740e-01 -3.43267128e-02 -9.80703319e-01]\n", + " [ 1.68027875e-01 -8.99406597e-03 -9.85741213e-01]\n", + " [ 4.33542488e-01 -6.55796550e-03 -9.01109263e-01]\n", + " [ 4.33542488e-01 -6.55796550e-03 -9.01109263e-01]\n", + " [ 1.59355639e-01 -4.57395091e-06 -9.87221242e-01]\n", + " [ 1.59355639e-01 -4.57395091e-06 -9.87221242e-01]\n", + " [ 4.17749522e-01 -6.36898575e-03 -9.08539913e-01]\n", + " [ 3.93676595e-01 -3.06358112e-02 -9.18738366e-01]\n", + " [ 3.69174883e-01 -5.46073872e-02 -9.27754245e-01]\n", + " [ 3.44396808e-01 -7.81385798e-02 -9.35566781e-01]\n", + " [ 3.19500411e-01 -1.01082575e-01 -9.42179283e-01]\n", + " [ 2.94649276e-01 -1.23288242e-01 -9.47619023e-01]\n", + " [ 3.95923348e-01 1.88948986e-02 -9.18089149e-01]\n", + " [ 3.71649115e-01 -5.65820763e-03 -9.28356031e-01]\n", + " [ 3.46981597e-01 -2.99673266e-02 -9.37393050e-01]\n", + " [ 3.22074578e-01 -5.38868743e-02 -9.45179438e-01]\n", + " [ 2.97086671e-01 -7.72711568e-02 -9.51718802e-01]\n", + " [ 2.72180968e-01 -9.99721016e-02 -9.57038714e-01]\n", + " [ 3.73143581e-01 4.46850744e-02 -9.26696882e-01]\n", + " [ 3.48715172e-01 1.98912585e-02 -9.37017645e-01]\n", + " [ 3.23932307e-01 -4.70953076e-03 -9.46068539e-01]\n", + " [ 2.98949865e-01 -2.89705059e-02 -9.53828962e-01]\n", + " [ 2.73926766e-01 -5.27459483e-02 -9.60303073e-01]\n", + " [ 2.49025434e-01 -7.58895084e-02 -9.65519091e-01]\n", + " [ 3.49515988e-01 7.08476014e-02 -9.34247928e-01]\n", + " [ 3.24981996e-01 4.58596809e-02 -9.44607639e-01]\n", + " [ 3.00135707e-01 2.10135012e-02 -9.53665031e-01]\n", + " [ 2.75132638e-01 -3.54253872e-03 -9.61399751e-01]\n", + " [ 2.50131618e-01 -2.76618381e-02 -9.67816613e-01]\n", + " [ 2.25294150e-01 -5.11985082e-02 -9.72944633e-01]\n", + " [ 3.25158558e-01 9.72264311e-02 -9.40648145e-01]\n", + " [ 3.00568785e-01 7.20924661e-02 -9.51031588e-01]\n", + " [ 2.75711952e-01 4.70484844e-02 -9.60088204e-01]\n", + " [ 2.50743661e-01 2.22445669e-02 -9.67797911e-01]\n", + " [ 2.25822179e-01 -2.17131033e-03 -9.74166120e-01]\n", + " [ 2.01107837e-01 -2.60527501e-02 -9.79222596e-01]\n", + " [ 3.00202089e-01 1.23663125e-01 -9.45825638e-01]\n", + " [ 2.75607050e-01 9.84326114e-02 -9.56217431e-01]\n", + " [ 2.50792832e-01 7.32400763e-02 -9.65266205e-01]\n", + " [ 2.25914536e-01 4.82370771e-02 -9.72952109e-01]\n", + " [ 2.01129420e-01 2.35731157e-02 -9.79280994e-01]\n", + " [ 1.76596467e-01 -6.04287003e-04 -9.84283152e-01]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:fp_optics: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:cartToSphere: vec: [[ 0.52118835 -0.58096041 0.62517814]\n", + " [ 0.49844161 -0.58610728 0.63877556]\n", + " [ 0.47487314 -0.5907957 0.65226983]\n", + " [ 0.45056184 -0.59499378 0.66556475]\n", + " [ 0.42558997 -0.59867315 0.67857471]\n", + " [ 0.40004411 -0.60180934 0.69122372]\n", + " [ 0.37401575 -0.60438222 0.70344463]\n", + " [ 0.3476013 -0.60637662 0.71517881]\n", + " [ 0.52118835 -0.58096041 0.62517814]\n", + " [ 0.52791802 -0.55906473 0.63933496]\n", + " [ 0.53427005 -0.53629532 0.65340863]\n", + " [ 0.5402074 -0.51272581 0.66729919]\n", + " [ 0.54569607 -0.4884335 0.6809174 ]\n", + " [ 0.55070532 -0.46350043 0.6941837 ]\n", + " [ 0.55520814 -0.43801399 0.70702734]\n", + " [ 0.55918181 -0.41206717 0.71938609]\n", + " [ 0.3476013 -0.60637662 0.71517881]\n", + " [ 0.35304411 -0.584011 0.73095212]\n", + " [ 0.35831279 -0.56071689 0.74646401]\n", + " [ 0.36337052 -0.53656137 0.76161917]\n", + " [ 0.368184 -0.51161761 0.7763298 ]\n", + " [ 0.37272337 -0.48596623 0.7905151 ]\n", + " [ 0.37696236 -0.45969579 0.80410146]\n", + " [ 0.38087856 -0.43290254 0.8170232 ]\n", + " [ 0.55918181 -0.41206717 0.71938609]\n", + " [ 0.53599214 -0.41597756 0.73462582]\n", + " [ 0.51191008 -0.41962348 0.74957602]\n", + " [ 0.48700809 -0.42297269 0.76414477]\n", + " [ 0.4613646 -0.42599698 0.77824756]\n", + " [ 0.43506526 -0.42867236 0.79180694]\n", + " [ 0.40820319 -0.43097919 0.80475282]\n", + " [ 0.38087856 -0.43290254 0.8170232 ]\n", + " [ 0.51140005 -0.58318513 0.6311617 ]\n", + " [ 0.48295853 -0.58918851 0.64777154]\n", + " [ 0.45336072 -0.59447131 0.66412945]\n", + " [ 0.42275662 -0.59897985 0.68007351]\n", + " [ 0.3913057 -0.60266912 0.69546372]\n", + " [ 0.35917843 -0.6055041 0.71018 ]\n", + " [ 0.52408994 -0.57154396 0.63140102]\n", + " [ 0.53208816 -0.54411121 0.6487104 ]\n", + " [ 0.53948214 -0.51543882 0.66579415]\n", + " [ 0.54620802 -0.48566751 0.6824836 ]\n", + " [ 0.55220925 -0.45494838 0.69863218]\n", + " [ 0.55743787 -0.42344464 0.7141132 ]\n", + " [ 0.35008452 -0.59673756 0.72204232]\n", + " [ 0.35664389 -0.56869357 0.74121034]\n", + " [ 0.36290455 -0.53932105 0.75989019]\n", + " [ 0.36880375 -0.50875206 0.77791718]\n", + " [ 0.37428653 -0.47713509 0.79514257]\n", + " [ 0.37930611 -0.44463641 0.81143412]\n", + " [ 0.5491725 -0.41389214 0.7260185 ]\n", + " [ 0.52014212 -0.41851202 0.74451317]\n", + " [ 0.48984279 -0.42270199 0.76248086]\n", + " [ 0.45841635 -0.42640848 0.77976295]\n", + " [ 0.42602046 -0.42958729 0.79621689]\n", + " [ 0.39282956 -0.43220424 0.81171697]\n", + " [ 0.52113566 -0.58090544 0.62527313]\n", + " [ 0.52113566 -0.58090544 0.62527313]\n", + " [ 0.38095985 -0.43298903 0.81693946]\n", + " [ 0.38095985 -0.43298903 0.81693946]\n", + " [ 0.51432739 -0.57379713 0.63735719]\n", + " [ 0.52226096 -0.54628432 0.65484115]\n", + " [ 0.52960719 -0.51752371 0.67207547]\n", + " [ 0.53630164 -0.48765513 0.68889261]\n", + " [ 0.5422872 -0.45682928 0.70514651]\n", + " [ 0.54751546 -0.42520952 0.72071054]\n", + " [ 0.48580383 -0.57973621 0.6541411 ]\n", + " [ 0.49353879 -0.55202819 0.67207465]\n", + " [ 0.50073548 -0.52305053 0.68969713]\n", + " [ 0.50732821 -0.49294067 0.7068434 ]\n", + " [ 0.51325871 -0.46184839 0.7233682 ]\n", + " [ 0.51847761 -0.42993766 0.73914449]\n", + " [ 0.45611469 -0.58497029 0.6706483 ]\n", + " [ 0.46362575 -0.55711267 0.6889678 ]\n", + " [ 0.47064955 -0.52796587 0.70692365]\n", + " [ 0.47711987 -0.49766529 0.72435205]\n", + " [ 0.48297806 -0.46636014 0.74110756]\n", + " [ 0.48817442 -0.43421512 0.75706207]\n", + " [ 0.42540918 -0.58944507 0.68671795]\n", + " [ 0.4326689 -0.56148196 0.70536205]\n", + " [ 0.43949459 -0.53221318 0.72359771]\n", + " [ 0.44582034 -0.50177254 0.74126146]\n", + " [ 0.45158789 -0.4703089 0.75820704]\n", + " [ 0.45674785 -0.43798773 0.77430495]\n", + " [ 0.39384648 -0.59311492 0.70221054]\n", + " [ 0.40082682 -0.56508916 0.72111865]\n", + " [ 0.40742884 -0.535745 0.73958031]\n", + " [ 0.41358767 -0.50521521 0.75743173]\n", + " [ 0.41924613 -0.47364844 0.77452556]\n", + " [ 0.42435566 -0.4412107 0.79073093]\n", + " [ 0.36159727 -0.59594438 0.71700607]\n", + " [ 0.36827102 -0.56789784 0.73611718]\n", + " [ 0.37462481 -0.53852459 0.75474997]\n", + " [ 0.3805953 -0.50795679 0.77274001]\n", + " [ 0.38612688 -0.47634296 0.78993887]\n", + " [ 0.39117227 -0.44384936 0.80621461]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:fp_optics: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:cartToSphere: vec: [[0.21132789 0.1838295 0.95997252]\n", + " [0.22383194 0.20654526 0.95249059]\n", + " [0.23656509 0.22950078 0.944122 ]\n", + " [0.24944824 0.25259567 0.93486416]\n", + " [0.26240876 0.27573205 0.92472346]\n", + " [0.27537985 0.29881404 0.91371555]\n", + " [0.28829988 0.32174757 0.90186567]\n", + " [0.30111183 0.34444054 0.88920885]\n", + " [0.21132789 0.1838295 0.95997252]\n", + " [0.23298718 0.16797891 0.95786223]\n", + " [0.25502701 0.15178352 0.95494659]\n", + " [0.27733134 0.13529369 0.95120079]\n", + " [0.29979065 0.11856271 0.94660892]\n", + " [0.32230109 0.10164711 0.9411641 ]\n", + " [0.34476366 0.08460659 0.93486884]\n", + " [0.36708369 0.06750377 0.92773531]\n", + " [0.30111183 0.34444054 0.88920885]\n", + " [0.32457803 0.32957548 0.88658282]\n", + " [0.34826715 0.31414286 0.88318982]\n", + " [0.37206941 0.2981895 0.87900363]\n", + " [0.39587896 0.28176532 0.87400695]\n", + " [0.41959229 0.26492448 0.86819199]\n", + " [0.44310775 0.24772601 0.861561 ]\n", + " [0.46632592 0.23023377 0.85412677]\n", + " [0.36708369 0.06750377 0.92773531]\n", + " [0.38166134 0.09010889 0.91989946]\n", + " [0.39622436 0.11308593 0.9111629 ]\n", + " [0.41069769 0.13633982 0.90152031]\n", + " [0.42501043 0.15977646 0.89097566]\n", + " [0.43909501 0.1833013 0.87954318]\n", + " [0.45288709 0.20681896 0.86724806]\n", + " [0.46632592 0.23023377 0.85412677]\n", + " [0.21682008 0.19364422 0.95681292]\n", + " [0.23231106 0.2216592 0.94704739]\n", + " [0.24806664 0.24993436 0.93594645]\n", + " [0.26395044 0.27828847 0.92351811]\n", + " [0.27983944 0.306545 0.90979121]\n", + " [0.29562206 0.33453157 0.89481631]\n", + " [0.2207598 0.17704138 0.95912536]\n", + " [0.24757801 0.15737709 0.95600083]\n", + " [0.27485164 0.13724444 0.95164097]\n", + " [0.30237639 0.11674033 0.9460128 ]\n", + " [0.32996097 0.09596878 0.9391037 ]\n", + " [0.35742494 0.07504097 0.93092227]\n", + " [0.31126476 0.33795462 0.88820095]\n", + " [0.34018853 0.31934774 0.88447091]\n", + " [0.36933762 0.29993475 0.87956175]\n", + " [0.3985156 0.27980621 0.87343792]\n", + " [0.4275319 0.2590619 0.8660851 ]\n", + " [0.45620024 0.23781253 0.85751183]\n", + " [0.37336008 0.07736651 0.9244548 ]\n", + " [0.39122557 0.10533411 0.91424684]\n", + " [0.40899413 0.13376558 0.90267966]\n", + " [0.42653357 0.16248737 0.88975669]\n", + " [0.44371951 0.19132538 0.87550419]\n", + " [0.46043494 0.22010383 0.85997324]\n", + " [0.21144345 0.1838531 0.95994255]\n", + " [0.21144345 0.1838531 0.95994255]\n", + " [0.46620185 0.23021422 0.85419977]\n", + " [0.46620185 0.23021422 0.85419977]\n", + " [0.22621129 0.18685035 0.95598923]\n", + " [0.25322817 0.16722101 0.95284449]\n", + " [0.28068136 0.14710016 0.94846166]\n", + " [0.30836758 0.12658465 0.94280738]\n", + " [0.33609623 0.10577872 0.93586868]\n", + " [0.36368697 0.084794 0.9276539 ]\n", + " [0.24189547 0.21492289 0.94620016]\n", + " [0.26942405 0.19541351 0.94298687]\n", + " [0.29733879 0.17534839 0.93853215]\n", + " [0.32543932 0.15482408 0.93280156]\n", + " [0.35353651 0.1339452 0.92578109]\n", + " [0.38144982 0.11282441 0.91747844]\n", + " [0.25781692 0.24326636 0.93506787]\n", + " [0.28578367 0.22390917 0.93176842]\n", + " [0.31409224 0.20393432 0.92723075]\n", + " [0.34254464 0.18343759 0.92141946]\n", + " [0.37095243 0.16252341 0.91431966]\n", + " [0.39913411 0.14130499 0.90593866]\n", + " [0.27384015 0.27169987 0.92259999]\n", + " [0.30217404 0.25252817 0.9191955 ]\n", + " [0.33081055 0.23267942 0.91456256]\n", + " [0.35955316 0.21224811 0.9086651 ]\n", + " [0.38821332 0.19133781 0.9014878 ]\n", + " [0.4166081 0.17006171 0.89303791]\n", + " [0.28984286 0.30004685 0.90882507]\n", + " [0.31847434 0.2810938 0.90529574]\n", + " [0.3473734 0.261407 0.90055433]\n", + " [0.37634408 0.24107927 0.89456465]\n", + " [0.40519714 0.22021278 0.88731145]\n", + " [0.43374807 0.19892002 0.87880227]\n", + " [0.30571376 0.32813447 0.89379353]\n", + " [0.33457358 0.30943194 0.89011932]\n", + " [0.36366923 0.28994169 0.88525618]\n", + " [0.39280455 0.26975484 0.87916831]\n", + " [0.4217893 0.2489718 0.87184105]\n", + " [0.45043759 0.22770383 0.86328265]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:fp_optics: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:cartToSphere: vec: [[-0.28149029 0.37090405 -0.88498215]\n", + " [-0.26549615 0.35288994 -0.89720705]\n", + " [-0.24885509 0.33433956 -0.90900396]\n", + " [-0.23163872 0.31530782 -0.920285 ]\n", + " [-0.21391838 0.29585405 -0.93097224]\n", + " [-0.19576535 0.27604226 -0.94099766]\n", + " [-0.17725135 0.2559411 -0.95030317]\n", + " [-0.15844887 0.23562372 -0.95884066]\n", + " [-0.28149029 0.37090405 -0.88498215]\n", + " [-0.26265525 0.39001193 -0.88255476]\n", + " [-0.24311803 0.40914678 -0.87948424]\n", + " [-0.22296162 0.42821797 -0.87573825]\n", + " [-0.20226873 0.44713852 -0.87129473]\n", + " [-0.18112202 0.46582487 -0.86614202]\n", + " [-0.15960462 0.48419688 -0.86027888]\n", + " [-0.13780056 0.50217803 -0.85371437]\n", + " [-0.15844887 0.23562372 -0.95884066]\n", + " [-0.1377475 0.25427069 -0.95727323]\n", + " [-0.1165101 0.27309371 -0.95490587]\n", + " [-0.09481609 0.29200578 -0.95170507]\n", + " [-0.0727456 0.31092303 -0.94764706]\n", + " [-0.05038093 0.32976355 -0.94271828]\n", + " [-0.02780737 0.34844691 -0.93691595]\n", + " [-0.00511307 0.36689445 -0.93024852]\n", + " [-0.13780056 0.50217803 -0.85371437]\n", + " [-0.11985819 0.4847627 -0.86639433]\n", + " [-0.10146149 0.46661624 -0.878621 ]\n", + " [-0.08267903 0.44778963 -0.89030816]\n", + " [-0.06358021 0.42833876 -0.90137865]\n", + " [-0.04423649 0.40832563 -0.91176385]\n", + " [-0.02472195 0.38781903 -0.92140394]\n", + " [-0.00511307 0.36689445 -0.93024852]\n", + " [-0.27453725 0.36318434 -0.89035186]\n", + " [-0.25448925 0.34073894 -0.90505922]\n", + " [-0.23354084 0.31754195 -0.91903525]\n", + " [-0.21182347 0.29370077 -0.93213233]\n", + " [-0.18946845 0.2693332 -0.94422526]\n", + " [-0.1666081 0.24456754 -0.95521121]\n", + " [-0.27331574 0.37916532 -0.88404308]\n", + " [-0.24974731 0.40261394 -0.88064084]\n", + " [-0.22520676 0.42601271 -0.87623917]\n", + " [-0.19984648 0.44919998 -0.87079318]\n", + " [-0.17381871 0.47202193 -0.86428141]\n", + " [-0.14727685 0.49433249 -0.85670585]\n", + " [-0.14955898 0.24379652 -0.95822511]\n", + " [-0.12381751 0.26678053 -0.95577056]\n", + " [-0.09734969 0.28994201 -0.95208018]\n", + " [-0.07030267 0.31312529 -0.94710616]\n", + " [-0.04282805 0.33617953 -0.94082362]\n", + " [-0.01508407 0.35895734 -0.93323207]\n", + " [-0.13011314 0.49461692 -0.8593164 ]\n", + " [-0.10780953 0.4727742 -0.8745637 ]\n", + " [-0.08489147 0.4498836 -0.88904341]\n", + " [-0.06148631 0.4260459 -0.90260973]\n", + " [-0.03772565 0.40137533 -0.91513639]\n", + " [-0.01374692 0.37600135 -0.92651714]\n", + " [-0.28137366 0.37090861 -0.88501733]\n", + " [-0.28137366 0.37090861 -0.88501733]\n", + " [-0.00525791 0.36690403 -0.93024394]\n", + " [-0.00525791 0.36690403 -0.93024394]\n", + " [-0.26641128 0.37144778 -0.8894108 ]\n", + " [-0.24266076 0.39492308 -0.88608776]\n", + " [-0.21795385 0.41835994 -0.88174321]\n", + " [-0.19244243 0.44159684 -0.87633221]\n", + " [-0.16627823 0.46447982 -0.86983334]\n", + " [-0.13961449 0.48686242 -0.86224868]\n", + " [-0.24618287 0.3490071 -0.90420575]\n", + " [-0.22195188 0.37251874 -0.9010922 ]\n", + " [-0.19680881 0.3960265 -0.89689983]\n", + " [-0.1709036 0.41936942 -0.89158356]\n", + " [-0.14438662 0.44239325 -0.88512187]\n", + " [-0.11741101 0.46495037 -0.87751684]\n", + " [-0.22507229 0.32579346 -0.91825982]\n", + " [-0.20041225 0.34928272 -0.9153341 ]\n", + " [-0.17488351 0.37280573 -0.91128023]\n", + " [-0.14863412 0.39620236 -0.90605275]\n", + " [-0.12181356 0.41931839 -0.89962967]\n", + " [-0.09457549 0.44200528 -0.89201278]\n", + " [-0.20321051 0.30191409 -0.93142545]\n", + " [-0.17817107 0.32532168 -0.92866618]\n", + " [-0.15230544 0.3488033 -0.92473743]\n", + " [-0.1257604 0.3722 -0.91959311]\n", + " [-0.0986853 0.39535802 -0.91321041]\n", + " [-0.07123486 0.41812841 -0.90559054]\n", + " [-0.18072836 0.27748692 -0.94357738]\n", + " [-0.15535788 0.3007537 -0.94096288]\n", + " [-0.1292034 0.32413707 -0.93714547]\n", + " [-0.10241128 0.3474795 -0.93207828]\n", + " [-0.07513148 0.37062822 -0.92573754]\n", + " [-0.04752018 0.39343448 -0.91812371]\n", + " [-0.15775801 0.25264061 -0.95461256]\n", + " [-0.1321047 0.27570843 -0.95212038]\n", + " [-0.10570988 0.29893748 -0.9483996 ]\n", + " [-0.07872035 0.32217164 -0.94340264]\n", + " [-0.05128724 0.34525953 -0.93710484]\n", + " [-0.02356826 0.36805331 -0.92950594]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:fp_optics: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:cartToSphere: vec: [[ 7.92874084e-02 -1.26188148e-01 9.88832675e-01]\n", + " [ 9.39591793e-02 -1.48372601e-01 9.84457843e-01]\n", + " [ 1.08737739e-01 -1.70998298e-01 9.79252616e-01]\n", + " [ 1.23568262e-01 -1.93952997e-01 9.73197369e-01]\n", + " [ 1.38395470e-01 -2.17128840e-01 9.66282444e-01]\n", + " [ 1.53163487e-01 -2.40422149e-01 9.58508287e-01]\n", + " [ 1.67815944e-01 -2.63733016e-01 9.49885627e-01]\n", + " [ 1.82296306e-01 -2.86965036e-01 9.40435604e-01]\n", + " [ 7.92874084e-02 -1.26188148e-01 9.88832675e-01]\n", + " [ 5.54321870e-02 -1.38635472e-01 9.88790918e-01]\n", + " [ 3.10932093e-02 -1.51383859e-01 9.87985901e-01]\n", + " [ 6.36620422e-03 -1.64358497e-01 9.86380128e-01]\n", + " [-1.86527665e-02 -1.77489208e-01 9.83945962e-01]\n", + " [-4.38670335e-02 -1.90710356e-01 9.80665714e-01]\n", + " [-6.91791327e-02 -2.03960419e-01 9.76531820e-01]\n", + " [-9.44909033e-02 -2.17181580e-01 9.71547030e-01]\n", + " [ 1.82296306e-01 -2.86965036e-01 9.40435604e-01]\n", + " [ 1.58501054e-01 -3.01525407e-01 9.40191387e-01]\n", + " [ 1.34092265e-01 -3.16145818e-01 9.39186396e-01]\n", + " [ 1.09160892e-01 -3.30753536e-01 9.37382525e-01]\n", + " [ 8.37988188e-02 -3.45279483e-01 9.34751216e-01]\n", + " [ 5.81005048e-02 -3.59657332e-01 9.31273824e-01]\n", + " [ 3.21638710e-02 -3.73823139e-01 9.26942148e-01]\n", + " [ 6.09018987e-03 -3.87715569e-01 9.21758942e-01]\n", + " [-9.44909033e-02 -2.17181580e-01 9.71547030e-01]\n", + " [-8.08549601e-02 -2.41205903e-01 9.67099885e-01]\n", + " [-6.68864289e-02 -2.65519183e-01 9.61782600e-01]\n", + " [-5.26371475e-02 -2.90013231e-01 9.55573993e-01]\n", + " [-3.81596995e-02 -3.14582908e-01 9.48462667e-01]\n", + " [-2.35082617e-02 -3.39124663e-01 9.40447672e-01]\n", + " [-8.73898525e-03 -3.63535938e-01 9.31539184e-01]\n", + " [ 6.09018987e-03 -3.87715569e-01 9.21758942e-01]\n", + " [ 8.55869461e-02 -1.35841608e-01 9.87026814e-01]\n", + " [ 1.03647108e-01 -1.63343651e-01 9.81109642e-01]\n", + " [ 1.21813392e-01 -1.91396347e-01 9.73924502e-01]\n", + " [ 1.39984238e-01 -2.19799301e-01 9.65449471e-01]\n", + " [ 1.58056791e-01 -2.48361600e-01 9.55685391e-01]\n", + " [ 1.75927183e-01 -2.76900771e-01 9.44656334e-01]\n", + " [ 6.90018217e-02 -1.31648823e-01 9.88891974e-01]\n", + " [ 3.94269737e-02 -1.47118001e-01 9.88332843e-01]\n", + " [ 9.22048985e-03 -1.62964380e-01 9.86588867e-01]\n", + " [-2.14409305e-02 -1.79056822e-01 9.83605074e-01]\n", + " [-5.23792997e-02 -1.95274442e-01 9.79348917e-01]\n", + " [-8.34148814e-02 -2.11505535e-01 9.73810745e-01]\n", + " [ 1.71953419e-01 -2.93221653e-01 9.40453659e-01]\n", + " [ 1.42365369e-01 -3.11115819e-01 9.39648364e-01]\n", + " [ 1.11946214e-01 -3.29027593e-01 9.37661393e-01]\n", + " [ 8.08646350e-02 -3.46828345e-01 9.34436199e-01]\n", + " [ 4.92946353e-02 -3.64395931e-01 9.29938516e-01]\n", + " [ 1.74179226e-02 -3.81613689e-01 9.24157783e-01]\n", + " [-8.85030158e-02 -2.27568335e-01 9.69731854e-01]\n", + " [-7.15597606e-02 -2.57220265e-01 9.63699609e-01]\n", + " [-5.41685825e-02 -2.87198381e-01 9.56338253e-01]\n", + " [-3.64259303e-02 -3.17307954e-01 9.47622717e-01]\n", + " [-1.84315918e-02 -3.47358282e-01 9.37551332e-01]\n", + " [-2.89716368e-04 -3.77161088e-01 9.26147629e-01]\n", + " [ 7.92566919e-02 -1.26305097e-01 9.88820206e-01]\n", + " [ 7.92566919e-02 -1.26305097e-01 9.88820206e-01]\n", + " [ 6.12872321e-03 -3.87586417e-01 9.21813001e-01]\n", + " [ 6.12872321e-03 -3.87586417e-01 9.21813001e-01]\n", + " [ 7.53145170e-02 -1.41259810e-01 9.87103535e-01]\n", + " [ 4.56816338e-02 -1.56922517e-01 9.86553857e-01]\n", + " [ 1.54046701e-02 -1.72936532e-01 9.84812496e-01]\n", + " [-1.53399575e-02 -1.89171103e-01 9.81824312e-01]\n", + " [-4.63743053e-02 -2.05505815e-01 9.77556537e-01]\n", + " [-7.75183136e-02 -2.21829204e-01 9.71999339e-01]\n", + " [ 9.33393303e-02 -1.68961044e-01 9.81193118e-01]\n", + " [ 6.35829551e-02 -1.85139642e-01 9.80653109e-01]\n", + " [ 3.31470342e-02 -2.01598570e-01 9.78907192e-01]\n", + " [ 2.20685692e-03 -2.18208566e-01 9.75899663e-01]\n", + " [-2.90598817e-02 -2.34850422e-01 9.71597037e-01]\n", + " [-6.04721534e-02 -2.51413011e-01 9.65988932e-01]\n", + " [ 1.11491720e-01 -1.97195508e-01 9.74003865e-01]\n", + " [ 8.16727925e-02 -2.13843107e-01 9.73447832e-01]\n", + " [ 5.11386686e-02 -2.30704214e-01 9.71679166e-01]\n", + " [ 2.00631443e-02 -2.47650947e-01 9.68641563e-01]\n", + " [-1.13765568e-02 -2.64564695e-01 9.64300833e-01]\n", + " [-4.29985352e-02 -2.81333948e-01 9.58646095e-01]\n", + " [ 1.29670125e-01 -2.25763251e-01 9.65513652e-01]\n", + " [ 9.98496461e-02 -2.42834714e-01 9.64915203e-01]\n", + " [ 6.92784847e-02 -2.60057095e-01 9.63104771e-01]\n", + " [ 3.81287526e-02 -2.77303224e-01 9.60025583e-01]\n", + " [ 6.57694108e-03 -2.94454225e-01 9.55642953e-01]\n", + " [-2.51945017e-02 -3.11397483e-01 9.49945706e-01]\n", + " [ 1.47771436e-01 -2.54473750e-01 9.55723136e-01]\n", + " [ 1.18009799e-01 -2.71924981e-01 9.55055230e-01]\n", + " [ 8.74626100e-02 -2.89468338e-01 9.53183284e-01]\n", + " [ 5.63003191e-02 -3.06976516e-01 9.50050363e-01]\n", + " [ 2.46984438e-02 -3.24329572e-01 9.45621655e-01]\n", + " [-7.16051124e-03 -3.41413271e-01 9.39886007e-01]\n", + " [ 1.65691342e-01 -2.83144548e-01 9.44656310e-01]\n", + " [ 1.36047758e-01 -3.00931175e-01 9.43891644e-01]\n", + " [ 1.05584749e-01 -3.18754354e-01 9.41938173e-01]\n", + " [ 7.44713741e-02 -3.36485896e-01 9.38739184e-01]\n", + " [ 4.28820334e-02 -3.54004274e-01 9.34260191e-01]\n", + " [ 1.09987342e-02 -3.71193439e-01 9.28490419e-01]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:fp_optics: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:cartToSphere: vec: [[ 0.03609713 0.60030534 -0.79895588]\n", + " [ 0.03382054 0.57782646 -0.81545862]\n", + " [ 0.03147051 0.55443144 -0.83163416]\n", + " [ 0.02905499 0.53018846 -0.84738185]\n", + " [ 0.02658223 0.50517114 -0.86260971]\n", + " [ 0.02406094 0.47946024 -0.87723369]\n", + " [ 0.02150033 0.45314464 -0.89117769]\n", + " [ 0.01891017 0.4263213 -0.90437412]\n", + " [ 0.03609713 0.60030534 -0.79895588]\n", + " [ 0.06496715 0.59750021 -0.79923261]\n", + " [ 0.09368343 0.59412472 -0.79889876]\n", + " [ 0.12213443 0.59019676 -0.79796677]\n", + " [ 0.15020976 0.58573909 -0.79645888]\n", + " [ 0.17780012 0.58077898 -0.79440726]\n", + " [ 0.20479693 0.57534787 -0.79185418]\n", + " [ 0.23109193 0.56948131 -0.78885205]\n", + " [ 0.01891017 0.4263213 -0.90437412]\n", + " [ 0.04879634 0.42353436 -0.90456485]\n", + " [ 0.07854302 0.42037384 -0.90394515]\n", + " [ 0.10803356 0.41685756 -0.90252896]\n", + " [ 0.13715508 0.41300785 -0.90034049]\n", + " [ 0.16579895 0.40885121 -0.89741373]\n", + " [ 0.1938601 0.40441813 -0.89379206]\n", + " [ 0.22123537 0.39974314 -0.88952815]\n", + " [ 0.23109193 0.56948131 -0.78885205]\n", + " [ 0.23062858 0.54740472 -0.80446164]\n", + " [ 0.22983774 0.52447468 -0.81981761]\n", + " [ 0.22872719 0.50076397 -0.83481694]\n", + " [ 0.22730437 0.47635011 -0.84936641]\n", + " [ 0.22557646 0.45131572 -0.86338253]\n", + " [ 0.2235508 0.42574887 -0.87679127]\n", + " [ 0.22123537 0.39974314 -0.88952815]\n", + " [ 0.03521332 0.59061266 -0.80618652]\n", + " [ 0.03237372 0.56243797 -0.82620547]\n", + " [ 0.02943151 0.53295444 -0.84563193]\n", + " [ 0.02640174 0.50229527 -0.86429301]\n", + " [ 0.02330042 0.47060925 -0.88203402]\n", + " [ 0.02014475 0.43806341 -0.89871833]\n", + " [ 0.04868904 0.59907809 -0.79920887]\n", + " [ 0.08398396 0.59525456 -0.79913622]\n", + " [ 0.11893699 0.59059164 -0.79815757]\n", + " [ 0.15334443 0.58512925 -0.79630977]\n", + " [ 0.18700502 0.57891754 -0.79365207]\n", + " [ 0.21971898 0.57201609 -0.79026651]\n", + " [ 0.03195909 0.42524553 -0.9045136 ]\n", + " [ 0.06850855 0.42157647 -0.90420123]\n", + " [ 0.10473222 0.41736329 -0.90268436]\n", + " [ 0.14042063 0.41264526 -0.9000033 ]\n", + " [ 0.17537374 0.40747114 -0.89622058]\n", + " [ 0.20939902 0.40189872 -0.89141992]\n", + " [ 0.23084167 0.5599858 -0.79569343]\n", + " [ 0.23005149 0.53234522 -0.81466857]\n", + " [ 0.22877735 0.50349444 -0.83315921]\n", + " [ 0.22703307 0.47357419 -0.8509897 ]\n", + " [ 0.22483194 0.44273663 -0.86800626]\n", + " [ 0.22218771 0.41114619 -0.8840766 ]\n", + " [ 0.03618834 0.6002215 -0.79901474]\n", + " [ 0.03618834 0.6002215 -0.79901474]\n", + " [ 0.22115144 0.39984907 -0.88950141]\n", + " [ 0.22115144 0.39984907 -0.88950141]\n", + " [ 0.04776353 0.589466 -0.80637986]\n", + " [ 0.08319956 0.58564261 -0.80628814]\n", + " [ 0.11829451 0.58099393 -0.80526546]\n", + " [ 0.15284446 0.57556026 -0.80334859]\n", + " [ 0.18664836 0.56939216 -0.80059663]\n", + " [ 0.21950693 0.56254945 -0.79709148]\n", + " [ 0.04504864 0.56128361 -0.82639659]\n", + " [ 0.08084033 0.55746673 -0.82625401]\n", + " [ 0.11629282 0.55286698 -0.82511459]\n", + " [ 0.15120128 0.54752569 -0.82301506]\n", + " [ 0.18536531 0.54149445 -0.8200143 ]\n", + " [ 0.21858735 0.53483378 -0.81619385]\n", + " [ 0.04220786 0.53179473 -0.84582082]\n", + " [ 0.07828928 0.52799404 -0.84563177]\n", + " [ 0.11403318 0.52345719 -0.84438677]\n", + " [ 0.14923351 0.5182261 -0.84212296]\n", + " [ 0.18369029 0.51235293 -0.83889949]\n", + " [ 0.21720782 0.50589861 -0.8347978 ]\n", + " [ 0.0392556 0.50113267 -0.86447964]\n", + " [ 0.07555929 0.49735859 -0.86424836]\n", + " [ 0.11152754 0.49289991 -0.86290862]\n", + " [ 0.14695297 0.48779849 -0.86049838]\n", + " [ 0.18163579 0.48210635 -0.85707754]\n", + " [ 0.21538185 0.47588422 -0.8527279 ]\n", + " [ 0.03620713 0.46944629 -0.88221835]\n", + " [ 0.07266362 0.46570965 -0.88194927]\n", + " [ 0.10878776 0.46134497 -0.88052601]\n", + " [ 0.14437101 0.45639339 -0.87798752]\n", + " [ 0.17921352 0.45090598 -0.87439483]\n", + " [ 0.21312226 0.44494257 -0.86983045]\n", + " [ 0.03307893 0.43690265 -0.89890036]\n", + " [ 0.06961691 0.43321414 -0.89859835]\n", + " [ 0.10582709 0.42895888 -0.89710362]\n", + " [ 0.14150015 0.4241767 -0.89445617]\n", + " [ 0.17643612 0.41891703 -0.89071815]\n", + " [ 0.21044244 0.41323827 -0.88597298]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:fp_optics: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:cartToSphere: vec: [[-0.53897941 0.09156991 -0.83732679]\n", + " [-0.5162375 0.09658317 -0.8509821 ]\n", + " [-0.49265041 0.10178354 -0.86425441]\n", + " [-0.46829743 0.10712744 -0.87705258]\n", + " [-0.44326118 0.11257684 -0.88929521]\n", + " [-0.41762859 0.11809832 -0.90091018]\n", + " [-0.39149147 0.12366223 -0.91183446]\n", + " [-0.36494666 0.12924209 -0.92201433]\n", + " [-0.53897941 0.09156991 -0.83732679]\n", + " [-0.54398017 0.11722942 -0.83086872]\n", + " [-0.54855292 0.14340089 -0.82372682]\n", + " [-0.55266785 0.16995897 -0.81588737]\n", + " [-0.55629812 0.19678384 -0.80734659]\n", + " [-0.55942018 0.22375968 -0.79811068]\n", + " [-0.56201432 0.25077369 -0.7881957 ]\n", + " [-0.56406518 0.27771571 -0.77762745]\n", + " [-0.36494666 0.12924209 -0.92201433]\n", + " [-0.36859184 0.15632176 -0.9163534 ]\n", + " [-0.37201346 0.1838332 -0.90984138]\n", + " [-0.37518137 0.21165895 -0.90246298]\n", + " [-0.37806917 0.23968307 -0.89421235]\n", + " [-0.38065412 0.26778986 -0.8850938 ]\n", + " [-0.38291739 0.29586369 -0.87512225]\n", + " [-0.38484424 0.32378968 -0.86432352]\n", + " [-0.56406518 0.27771571 -0.77762745]\n", + " [-0.5407622 0.28474215 -0.79151636]\n", + " [-0.51656032 0.29168324 -0.80503809]\n", + " [-0.49153231 0.29849841 -0.81810433]\n", + " [-0.46575693 0.30515005 -0.83063465]\n", + " [-0.43932022 0.3116033 -0.8425563 ]\n", + " [-0.41231577 0.31782615 -0.85380457]\n", + " [-0.38484424 0.32378968 -0.86432352]\n", + " [-0.52919028 0.09381692 -0.84330067]\n", + " [-0.50073878 0.10009421 -0.85979173]\n", + " [-0.47109618 0.10660838 -0.8756158 ]\n", + " [-0.44041316 0.11328718 -0.89061903]\n", + " [-0.40884979 0.12006896 -0.90466861]\n", + " [-0.37657721 0.12690049 -0.91765237]\n", + " [-0.54113388 0.10270361 -0.8346413 ]\n", + " [-0.54697828 0.13451387 -0.8262692 ]\n", + " [-0.55214997 0.16696782 -0.81685504]\n", + " [-0.55659831 0.19984265 -0.80638777]\n", + " [-0.56027999 0.23292505 -0.79487877]\n", + " [-0.5631605 0.26600843 -0.78236166]\n", + " [-0.3666531 0.14096901 -0.91961581]\n", + " [-0.37097521 0.174463 -0.91210748]\n", + " [-0.37493099 0.20848858 -0.90330464]\n", + " [-0.37847026 0.24283178 -0.89319258]\n", + " [-0.38155121 0.2772796 -0.88177928]\n", + " [-0.38414084 0.31161941 -0.86909675]\n", + " [-0.5540139 0.28069476 -0.78375956]\n", + " [-0.52484031 0.28925334 -0.80054679]\n", + " [-0.49438827 0.29764324 -0.81669379]\n", + " [-0.46280022 0.30579401 -0.83204926]\n", + " [-0.43023458 0.31364151 -0.8464793 ]\n", + " [-0.39686662 0.32112806 -0.85986839]\n", + " [-0.53892096 0.09167341 -0.83735308]\n", + " [-0.53892096 0.09167341 -0.83735308]\n", + " [-0.38493286 0.32367464 -0.86432715]\n", + " [-0.38493286 0.32367464 -0.86432715]\n", + " [-0.53137291 0.10491284 -0.84061651]\n", + " [-0.53714329 0.13690099 -0.83230716]\n", + " [-0.54225794 0.16952194 -0.82293294]\n", + " [-0.54666559 0.20255425 -0.81248293]\n", + " [-0.55032233 0.23578522 -0.80096858]\n", + " [-0.55319319 0.26900821 -0.78842367]\n", + " [-0.50283101 0.11135584 -0.85718192]\n", + " [-0.50837936 0.14379271 -0.84904304]\n", + " [-0.51332126 0.17683546 -0.83978004]\n", + " [-0.51760393 0.21026599 -0.82938193]\n", + " [-0.52118226 0.24387273 -0.8178601 ]\n", + " [-0.52402037 0.27744825 -0.80524849]\n", + " [-0.47309035 0.11800649 -0.87307502]\n", + " [-0.47839593 0.15081302 -0.86509697]\n", + " [-0.48314613 0.18420355 -0.85594326]\n", + " [-0.48728753 0.2179623 -0.84560233]\n", + " [-0.49077457 0.25187794 -0.83408502]\n", + " [-0.49357114 0.28574173 -0.8214251 ]\n", + " [-0.44230075 0.12479366 -0.88814221]\n", + " [-0.44734049 0.15789339 -0.88031594]\n", + " [-0.45187816 0.19155895 -0.87126994]\n", + " [-0.4558605 0.22557593 -0.8609917 ]\n", + " [-0.45924238 0.25973263 -0.84949126]\n", + " [-0.46198806 0.29381883 -0.83680197]\n", + " [-0.41062195 0.13165649 -0.90225062]\n", + " [-0.41537209 0.16497432 -0.89456665]\n", + " [-0.419676 0.19884235 -0.88562621]\n", + " [-0.42348137 0.23304672 -0.87541576]\n", + " [-0.42674416 0.26737514 -0.86394442]\n", + " [-0.42942955 0.30161607 -0.85124498]\n", + " [-0.37822525 0.1385421 -0.91528779]\n", + " [-0.38266284 0.17200334 -0.90773565]\n", + " [-0.38671275 0.20600079 -0.89889761]\n", + " [-0.3903242 0.24032061 -0.88875926]\n", + " [-0.39345474 0.27474993 -0.87732881]\n", + " [-0.39607084 0.30907632 -0.86463849]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:fp_optics: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:cartToSphere: vec: [[-0.53314668 -0.71538622 -0.45163832]\n", + " [-0.53059845 -0.70146264 -0.47583133]\n", + " [-0.52756971 -0.68669548 -0.5001195 ]\n", + " [-0.52404964 -0.67111394 -0.52438351]\n", + " [-0.52003259 -0.65475331 -0.5485109 ]\n", + " [-0.51551855 -0.63765641 -0.57239403]\n", + " [-0.51051358 -0.61987503 -0.59592854]\n", + " [-0.50503028 -0.60147062 -0.61901333]\n", + " [-0.53314668 -0.71538622 -0.45163832]\n", + " [-0.5573618 -0.70049861 -0.44570117]\n", + " [-0.58102378 -0.68502254 -0.43949459]\n", + " [-0.60404639 -0.66902536 -0.43305084]\n", + " [-0.62634973 -0.65258087 -0.42640852]\n", + " [-0.64786041 -0.63576904 -0.41961246]\n", + " [-0.66851203 -0.61867577 -0.41271293]\n", + " [-0.68824655 -0.60139212 -0.40576374]\n", + " [-0.50503028 -0.60147062 -0.61901333]\n", + " [-0.53008541 -0.58614196 -0.61273735]\n", + " [-0.55458273 -0.57033556 -0.60593345]\n", + " [-0.5784322 -0.55412151 -0.59863641]\n", + " [-0.60155339 -0.53757426 -0.59088699]\n", + " [-0.62387498 -0.52077234 -0.58273165]\n", + " [-0.64533291 -0.50379917 -0.57422281]\n", + " [-0.6658683 -0.48674445 -0.56541953]\n", + " [-0.68824655 -0.60139212 -0.40576374]\n", + " [-0.6870282 -0.58679668 -0.42855793]\n", + " [-0.68516278 -0.57154196 -0.45154375]\n", + " [-0.68263592 -0.55565998 -0.4746053 ]\n", + " [-0.67944065 -0.53918974 -0.4976292 ]\n", + " [-0.67557637 -0.52217723 -0.52050698]\n", + " [-0.67104844 -0.50467547 -0.54313596]\n", + " [-0.6658683 -0.48674445 -0.56541953]\n", + " [-0.53217779 -0.70937082 -0.462147 ]\n", + " [-0.528734 -0.69173487 -0.49187725]\n", + " [-0.52455698 -0.6728603 -0.52163108]\n", + " [-0.5196342 -0.65280954 -0.5511987 ]\n", + " [-0.51396567 -0.63166157 -0.58038173]\n", + " [-0.50756525 -0.60951577 -0.60898936]\n", + " [-0.54375922 -0.70892521 -0.44916696]\n", + " [-0.57307737 -0.69027455 -0.44170508]\n", + " [-0.60147826 -0.67080625 -0.43386965]\n", + " [-0.62881217 -0.6506535 -0.42572912]\n", + " [-0.65494403 -0.62996351 -0.4173659 ]\n", + " [-0.67975495 -0.60889662 -0.40887421]\n", + " [-0.51603639 -0.5949142 -0.6162658 ]\n", + " [-0.5463806 -0.57579746 -0.60821504]\n", + " [-0.57579641 -0.55603212 -0.59940535]\n", + " [-0.60413176 -0.5357535 -0.58990932]\n", + " [-0.63125509 -0.51510628 -0.5798125 ]\n", + " [-0.65705071 -0.49424656 -0.56921411]\n", + " [-0.68772752 -0.5951707 -0.41569542]\n", + " [-0.68580076 -0.5768357 -0.44377684]\n", + " [-0.68288699 -0.5575413 -0.47203078]\n", + " [-0.67897038 -0.53735641 -0.50024725]\n", + " [-0.67404977 -0.51636569 -0.52822664]\n", + " [-0.66813756 -0.49466968 -0.55578243]\n", + " [-0.53322241 -0.71529024 -0.45170093]\n", + " [-0.53322241 -0.71529024 -0.45170093]\n", + " [-0.66581852 -0.48686478 -0.56537455]\n", + " [-0.66581852 -0.48686478 -0.56537455]\n", + " [-0.5427558 -0.70298147 -0.45960113]\n", + " [-0.57218786 -0.68426513 -0.45208659]\n", + " [-0.60069813 -0.66473629 -0.44417049]\n", + " [-0.62813675 -0.64452844 -0.43592122]\n", + " [-0.65436843 -0.62378899 -0.42742163]\n", + " [-0.67927342 -0.60267849 -0.41876754]\n", + " [-0.53941571 -0.68528473 -0.48930106]\n", + " [-0.56913509 -0.66640769 -0.48164929]\n", + " [-0.59792218 -0.64673634 -0.47351997]\n", + " [-0.62562688 -0.62640531 -0.46498106]\n", + " [-0.65211427 -0.60556233 -0.45611538]\n", + " [-0.67726372 -0.58436813 -0.44702098]\n", + " [-0.53532298 -0.66636149 -0.51902956]\n", + " [-0.56527725 -0.64736171 -0.51125772]\n", + " [-0.59429213 -0.62759147 -0.50293718]\n", + " [-0.62221732 -0.60718656 -0.4941357 ]\n", + " [-0.64891904 -0.58629481 -0.48493554]\n", + " [-0.67427758 -0.56507641 -0.47543495]\n", + " [-0.53046469 -0.64627445 -0.54857684]\n", + " [-0.56060061 -0.62719119 -0.54070155]\n", + " [-0.58979409 -0.60736719 -0.53221051]\n", + " [-0.61789444 -0.58693904 -0.52317209]\n", + " [-0.64476912 -0.56605423 -0.51366855]\n", + " [-0.67030012 -0.54487195 -0.50379788]\n", + " [-0.52484014 -0.6251031 -0.57774471]\n", + " [-0.55510295 -0.60597718 -0.56978274]\n", + " [-0.58442527 -0.5861461 -0.56114156]\n", + " [-0.61265585 -0.56574648 -0.55189105]\n", + " [-0.63966303 -0.54492494 -0.5421144 ]\n", + " [-0.6653303 -0.52383933 -0.53190971]\n", + " [-0.51846245 -0.60294727 -0.60634254]\n", + " [-0.5487956 -0.58382067 -0.59831163]\n", + " [-0.57819611 -0.56402988 -0.58954182]\n", + " [-0.60651208 -0.54371068 -0.58010498]\n", + " [-0.63361207 -0.52300831 -0.570086 ]\n", + " [-0.65938036 -0.50207928 -0.55958373]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:fp_optics: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:cartToSphere: vec: [[-0.20202802 0.5516578 0.80923319]\n", + " [-0.20596477 0.57387422 0.79262027]\n", + " [-0.20981429 0.59606871 0.77503552]\n", + " [-0.21355181 0.61812601 0.75651561]\n", + " [-0.21715507 0.63993863 0.73710394]\n", + " [-0.22060396 0.66140495 0.71685242]\n", + " [-0.22388037 0.68242788 0.69582309]\n", + " [-0.22696826 0.70291495 0.674089 ]\n", + " [-0.20202802 0.5516578 0.80923319]\n", + " [-0.17382746 0.55826004 0.81125196]\n", + " [-0.14558656 0.56445182 0.81252612]\n", + " [-0.11741836 0.5702181 0.81305858]\n", + " [-0.08943757 0.57555152 0.81285999]\n", + " [-0.06176019 0.58045238 0.81194872]\n", + " [-0.03450273 0.58492813 0.81035094]\n", + " [-0.00777995 0.58899233 0.80810117]\n", + " [-0.22696826 0.70291495 0.674089 ]\n", + " [-0.19777183 0.70961555 0.67626332]\n", + " [-0.16849462 0.71565875 0.6778216 ]\n", + " [-0.13925492 0.72102987 0.67876652]\n", + " [-0.11016901 0.72572322 0.67910868]\n", + " [-0.08135125 0.72974157 0.67886613]\n", + " [-0.05291601 0.73309562 0.67806394]\n", + " [-0.02498022 0.73580352 0.67673419]\n", + " [-0.00777995 0.58899233 0.80810117]\n", + " [-0.00980463 0.61058693 0.79188854]\n", + " [-0.01200464 0.63215505 0.77474891]\n", + " [-0.01436088 0.65358288 0.7567187 ]\n", + " [-0.01685381 0.67476113 0.73784373]\n", + " [-0.01946516 0.6955868 0.71817833]\n", + " [-0.0221787 0.71596386 0.69778497]\n", + " [-0.02498022 0.73580352 0.67673419]\n", + " [-0.20365686 0.56136254 0.80211968]\n", + " [-0.2084254 0.58859148 0.78110109]\n", + " [-0.2130382 0.61567201 0.75865849]\n", + " [-0.21745324 0.64240306 0.73486897]\n", + " [-0.2216335 0.66859738 0.70982824]\n", + " [-0.2255465 0.6940781 0.68365515]\n", + " [-0.18975778 0.55466154 0.81014971]\n", + " [-0.1551528 0.56247959 0.81212334]\n", + " [-0.12059933 0.56966512 0.8129806 ]\n", + " [-0.08630785 0.57620139 0.81273791]\n", + " [-0.05249188 0.58208888 0.81142907]\n", + " [-0.01936534 0.58734395 0.80910572]\n", + " [-0.21424585 0.70584691 0.67518801]\n", + " [-0.17839348 0.71361951 0.67743853]\n", + " [-0.14253749 0.72038924 0.67876535]\n", + " [-0.10689286 0.72614186 0.67918474]\n", + " [-0.07167036 0.73088244 0.67872986]\n", + " [-0.03708151 0.73463375 0.67744979]\n", + " [-0.00873083 0.59839066 0.80115691]\n", + " [-0.01133362 0.62485463 0.78065885]\n", + " [-0.01418079 0.65116536 0.75880338]\n", + " [-0.01723639 0.67711963 0.73567106]\n", + " [-0.02046689 0.7025279 0.71136183]\n", + " [-0.02384324 0.72721635 0.68599408]\n", + " [-0.20194535 0.55175692 0.80918624]\n", + " [-0.20194535 0.55175692 0.80918624]\n", + " [-0.02506504 0.7357285 0.67681262]\n", + " [-0.02506504 0.7357285 0.67681262]\n", + " [-0.19142098 0.56427658 0.80308776]\n", + " [-0.15667523 0.5721027 0.80507849]\n", + " [-0.12197563 0.57926859 0.80595896]\n", + " [-0.08753294 0.5857574 0.80574577]\n", + " [-0.05356111 0.59156988 0.80447267]\n", + " [-0.02027555 0.59672348 0.80219075]\n", + " [-0.196068 0.59152882 0.78208119]\n", + " [-0.16096802 0.59937073 0.78411991]\n", + " [-0.12590081 0.60647755 0.7850694 ]\n", + " [-0.09107771 0.61283182 0.78494714]\n", + " [-0.05671263 0.6184344 0.78378732]\n", + " [-0.02302267 0.62330441 0.7816403 ]\n", + " [-0.20058207 0.61862755 0.75964912]\n", + " [-0.16519395 0.62647424 0.76173551]\n", + " [-0.12982791 0.63351616 0.76275946]\n", + " [-0.09469597 0.63973543 0.76273931]\n", + " [-0.06001104 0.64513289 0.76171007]\n", + " [-0.02598941 0.64972832 0.7597221 ]\n", + " [-0.20492164 0.64537154 0.73586867]\n", + " [-0.16931251 0.65321103 0.73800313]\n", + " [-0.13371683 0.6601808 0.73910832]\n", + " [-0.0983476 0.66626329 0.73920294]\n", + " [-0.06341661 0.67145988 0.7383224 ]\n", + " [-0.02913827 0.67579092 0.7365172 ]\n", + " [-0.20905052 0.67157331 0.71083554]\n", + " [-0.17328952 0.67939292 0.71301893]\n", + " [-0.13753453 0.68628258 0.71421318]\n", + " [-0.10199957 0.69222582 0.71443649]\n", + " [-0.06689565 0.69722533 0.71372391]\n", + " [-0.03243538 0.70130235 0.71212567]\n", + " [-0.21293712 0.69705583 0.6846685 ]\n", + " [-0.17709572 0.70484286 0.68690149]\n", + " [-0.14125322 0.71164498 0.68819253]\n", + " [-0.10562443 0.71744734 0.68855849]\n", + " [-0.07042011 0.72225439 0.68803315]\n", + " [-0.03585184 0.7260885 0.68666596]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:fp_optics: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:cartToSphere: vec: [[ 0.56069467 -0.4016332 0.72409409]\n", + " [ 0.53751948 -0.40545151 0.73937939]\n", + " [ 0.51344982 -0.40901821 0.75436953]\n", + " [ 0.48855806 -0.41230132 0.76897246]\n", + " [ 0.46292258 -0.41527295 0.78310348]\n", + " [ 0.43662892 -0.4179094 0.79668495]\n", + " [ 0.40977017 -0.42019132 0.80964663]\n", + " [ 0.38244647 -0.42210395 0.82192637]\n", + " [ 0.56069467 -0.4016332 0.72409409]\n", + " [ 0.56390209 -0.37520934 0.73568497]\n", + " [ 0.56654559 -0.34856888 0.74667652]\n", + " [ 0.56861922 -0.32182075 0.75703605]\n", + " [ 0.57012173 -0.29507759 0.76674013]\n", + " [ 0.57105601 -0.26845584 0.77577477]\n", + " [ 0.5714284 -0.24207645 0.78413556]\n", + " [ 0.57124809 -0.21606617 0.79182765]\n", + " [ 0.38244647 -0.42210395 0.82192637]\n", + " [ 0.38588466 -0.39475356 0.83382412]\n", + " [ 0.38896377 -0.36713641 0.84493671]\n", + " [ 0.39167655 -0.33936637 0.85523093]\n", + " [ 0.39402041 -0.31155949 0.86468411]\n", + " [ 0.39599733 -0.28383305 0.87328398]\n", + " [ 0.39761367 -0.25630537 0.88102833]\n", + " [ 0.39887984 -0.22909674 0.8879243 ]\n", + " [ 0.57124809 -0.21606617 0.79182765]\n", + " [ 0.54887977 -0.21800435 0.8069728 ]\n", + " [ 0.5256223 -0.21996286 0.82178923]\n", + " [ 0.50155428 -0.22190834 0.83618179]\n", + " [ 0.47675747 -0.22381374 0.85006454]\n", + " [ 0.4513179 -0.22565746 0.86336022]\n", + " [ 0.42532661 -0.22742268 0.87600011]\n", + " [ 0.39887984 -0.22909674 0.8879243 ]\n", + " [ 0.55071659 -0.40323648 0.73082937]\n", + " [ 0.52170277 -0.40775037 0.74937697]\n", + " [ 0.49141675 -0.41185426 0.76738885]\n", + " [ 0.46000021 -0.41549513 0.78470606]\n", + " [ 0.4276107 -0.41862938 0.8011857 ]\n", + " [ 0.39442255 -0.42122326 0.81670179]\n", + " [ 0.56208428 -0.39015883 0.72927179]\n", + " [ 0.56563728 -0.35761351 0.74307943]\n", + " [ 0.56833692 -0.32485064 0.75595318]\n", + " [ 0.57017894 -0.29207605 0.76784605]\n", + " [ 0.5711686 -0.25950417 0.77873231]\n", + " [ 0.57131879 -0.22736001 0.78860781]\n", + " [ 0.38408312 -0.41021315 0.82716705]\n", + " [ 0.38805648 -0.37649899 0.8412257 ]\n", + " [ 0.39148258 -0.34249702 0.85407095]\n", + " [ 0.39435472 -0.30842001 0.86565666]\n", + " [ 0.39667656 -0.27448387 0.87596022]\n", + " [ 0.39846146 -0.24090715 0.88498147]\n", + " [ 0.56161093 -0.21699495 0.79843995]\n", + " [ 0.53358766 -0.21938988 0.81679391]\n", + " [ 0.50430664 -0.22178125 0.8345585 ]\n", + " [ 0.47391699 -0.22411668 0.85157173]\n", + " [ 0.44257718 -0.22635634 0.86769133]\n", + " [ 0.41045698 -0.22847101 0.88279446]\n", + " [ 0.56062894 -0.40155677 0.72418737]\n", + " [ 0.56062894 -0.40155677 0.72418737]\n", + " [ 0.3989672 -0.22918354 0.88786265]\n", + " [ 0.3989672 -0.22918354 0.88786265]\n", + " [ 0.55217899 -0.39179339 0.73593227]\n", + " [ 0.55576201 -0.35911486 0.7497767 ]\n", + " [ 0.55850661 -0.32621138 0.76266408]\n", + " [ 0.56040892 -0.29328907 0.7745472 ]\n", + " [ 0.56147481 -0.26056203 0.78540019]\n", + " [ 0.56171799 -0.22825418 0.79521879]\n", + " [ 0.52318346 -0.39619372 0.75452608]\n", + " [ 0.52684846 -0.36317992 0.76846018]\n", + " [ 0.52971975 -0.32992283 0.78137565]\n", + " [ 0.53179405 -0.29662984 0.79322495]\n", + " [ 0.53307846 -0.26351465 0.8039822 ]\n", + " [ 0.53358855 -0.2307987 0.81364318]\n", + " [ 0.49291322 -0.40020558 0.77257495]\n", + " [ 0.49665613 -0.36691976 0.78657649]\n", + " [ 0.49965419 -0.3333757 0.7995038 ]\n", + " [ 0.50190409 -0.2997824 0.81130931]\n", + " [ 0.50341329 -0.26635389 0.82196756]\n", + " [ 0.50419827 -0.23330996 0.83147494]\n", + " [ 0.4615099 -0.40377661 0.78991965]\n", + " [ 0.46532679 -0.37028371 0.80396577]\n", + " [ 0.46845238 -0.33652057 0.81688816]\n", + " [ 0.47088276 -0.30269784 0.82863951]\n", + " [ 0.47262492 -0.26903017 0.83919512]\n", + " [ 0.47369528 -0.23573651 0.84855234]\n", + " [ 0.42913097 -0.40686384 0.80641703]\n", + " [ 0.43301762 -0.37323063 0.82048439]\n", + " [ 0.43627128 -0.33931794 0.83338509]\n", + " [ 0.43888699 -0.30533768 0.84507225]\n", + " [ 0.44087061 -0.27150521 0.85552208]\n", + " [ 0.44223765 -0.23803912 0.86473304]\n", + " [ 0.39595064 -0.40943404 0.82194091]\n", + " [ 0.39990232 -0.37572882 0.83600598]\n", + " [ 0.40328366 -0.34173748 0.84886853]\n", + " [ 0.40608848 -0.30767272 0.86048222]\n", + " [ 0.40832102 -0.27375034 0.87082415]\n", + " [ 0.40999529 -0.24018888 0.87989384]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:fp_optics: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:cartToSphere: vec: [[ 0.00944273 0.14409207 -0.98951923]\n", + " [ 0.02794024 0.12459534 -0.99181417]\n", + " [ 0.04692186 0.10470267 -0.99339604]\n", + " [ 0.06629064 0.08448416 -0.99421727]\n", + " [ 0.08595505 0.06401176 -0.99424053]\n", + " [ 0.10582753 0.04335969 -0.99343871]\n", + " [ 0.12582346 0.02260447 -0.99179509]\n", + " [ 0.14586061 0.00182473 -0.98930347]\n", + " [ 0.00944273 0.14409207 -0.98951923]\n", + " [ 0.02705218 0.16416581 -0.98606175]\n", + " [ 0.04514094 0.18444724 -0.98180523]\n", + " [ 0.06361497 0.20485118 -0.97672367]\n", + " [ 0.08238573 0.22529395 -0.97080133]\n", + " [ 0.10136881 0.24569282 -0.96403288]\n", + " [ 0.12048278 0.26596591 -0.95642357]\n", + " [ 0.13964859 0.28603243 -0.9479893 ]\n", + " [ 0.14586061 0.00182473 -0.98930347]\n", + " [ 0.16551905 0.02136062 -0.98597524]\n", + " [ 0.18544998 0.04127723 -0.98178638]\n", + " [ 0.20556582 0.06149396 -0.97670937]\n", + " [ 0.22578069 0.08193029 -0.97072679]\n", + " [ 0.24600945 0.10250481 -0.96383199]\n", + " [ 0.26616762 0.1231351 -0.95602957]\n", + " [ 0.28617189 0.14373823 -0.94733572]\n", + " [ 0.13964859 0.28603243 -0.9479893 ]\n", + " [ 0.16017271 0.26712702 -0.95025673]\n", + " [ 0.18098163 0.2476321 -0.9518004 ]\n", + " [ 0.20198491 0.22761336 -0.95257244]\n", + " [ 0.22309361 0.20713963 -0.95253473]\n", + " [ 0.24421935 0.18628381 -0.95165921]\n", + " [ 0.26527432 0.16512303 -0.94992838]\n", + " [ 0.28617189 0.14373823 -0.94733572]\n", + " [ 0.01750164 0.13571274 -0.99059363]\n", + " [ 0.040512 0.11154245 -0.99293356]\n", + " [ 0.06415239 0.08684678 -0.99415397]\n", + " [ 0.0882521 0.06175737 -0.99418187]\n", + " [ 0.11264983 0.03641085 -0.9929674 ]\n", + " [ 0.1371908 0.01094903 -0.99048413]\n", + " [ 0.01711823 0.15274733 -0.98811701]\n", + " [ 0.03903661 0.1775004 -0.9833462 ]\n", + " [ 0.06158066 0.20248072 -0.97734814]\n", + " [ 0.08458518 0.22753364 -0.97008958]\n", + " [ 0.10789463 0.25250685 -0.96156073]\n", + " [ 0.13136012 0.27725003 -0.95177568]\n", + " [ 0.15432375 0.01036172 -0.987966 ]\n", + " [ 0.17861087 0.03457187 -0.98331223]\n", + " [ 0.20322013 0.05927359 -0.97733731]\n", + " [ 0.2279928 0.08431866 -0.97000497]\n", + " [ 0.25277214 0.10955721 -0.961303 ]\n", + " [ 0.27740307 0.13483724 -0.95124469]\n", + " [ 0.14849045 0.27779777 -0.94909377]\n", + " [ 0.1738472 0.25422203 -0.95139283]\n", + " [ 0.19954176 0.22982595 -0.9525561 ]\n", + " [ 0.22540983 0.20473486 -0.95250934]\n", + " [ 0.25128874 0.17908301 -0.95120095]\n", + " [ 0.27701728 0.153014 -0.94860326]\n", + " [ 0.00956434 0.14409434 -0.98951773]\n", + " [ 0.00956434 0.14409434 -0.98951773]\n", + " [ 0.28603274 0.14374133 -0.94737728]\n", + " [ 0.28603274 0.14374133 -0.94737728]\n", + " [ 0.02513223 0.1443685 -0.98920479]\n", + " [ 0.04725153 0.16913958 -0.98445878]\n", + " [ 0.06997365 0.1941533 -0.97847237]\n", + " [ 0.09313488 0.21925524 -0.97121215]\n", + " [ 0.11658053 0.24429293 -0.96266814]\n", + " [ 0.14016191 0.2691156 -0.95285436]\n", + " [ 0.048344 0.12019298 -0.99157274]\n", + " [ 0.07099026 0.14497866 -0.98688478]\n", + " [ 0.09417863 0.17005161 -0.98092448]\n", + " [ 0.11774895 0.19525811 -0.97365777]\n", + " [ 0.14154806 0.22044536 -0.96507408]\n", + " [ 0.16542712 0.24546144 -0.95518718]\n", + " [ 0.07216366 0.09547247 -0.99281288]\n", + " [ 0.09527822 0.12021797 -0.98816481]\n", + " [ 0.11887935 0.1452966 -0.98222024]\n", + " [ 0.14280907 0.17055558 -0.97494429]\n", + " [ 0.16691453 0.19584211 -0.96632573]\n", + " [ 0.19104586 0.22100339 -0.95637805]\n", + " [ 0.09642198 0.0703385 -0.9928521 ]\n", + " [ 0.11994965 0.09498844 -0.98822532]\n", + " [ 0.14391219 0.12001828 -0.98228555]\n", + " [ 0.16815246 0.14527644 -0.97499718]\n", + " [ 0.19251694 0.17061052 -0.96634842]\n", + " [ 0.21685424 0.19586733 -0.95635256]\n", + " [ 0.12095846 0.04492785 -0.99164033]\n", + " [ 0.1448455 0.0694272 -0.98701552]\n", + " [ 0.16911835 0.09435377 -0.98106898]\n", + " [ 0.19361962 0.11955737 -0.97376459]\n", + " [ 0.21819456 0.14488644 -0.96509018]\n", + " [ 0.24269009 0.17018792 -0.95505895]\n", + " [ 0.1456185 0.01938278 -0.98915093]\n", + " [ 0.16981094 0.04367766 -0.98450826]\n", + " [ 0.19434189 0.0684473 -0.97854289]\n", + " [ 0.21905304 0.093543 -0.97121855]\n", + " [ 0.24378816 0.11881439 -0.96252297]\n", + " [ 0.26839264 0.1441091 -0.9524694 ]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:fp_optics: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:cartToSphere: vec: [[ 3.76009440e-01 6.04993706e-02 9.24638701e-01]\n", + " [ 3.90662781e-01 8.30480463e-02 9.16780024e-01]\n", + " [ 4.05290616e-01 1.05977474e-01 9.08024389e-01]\n", + " [ 4.19817691e-01 1.29192762e-01 8.98366482e-01]\n", + " [ 4.34172821e-01 1.52600011e-01 8.87810339e-01]\n", + " [ 4.48288133e-01 1.76104913e-01 8.76370247e-01]\n", + " [ 4.62098975e-01 1.99612292e-01 8.64071450e-01]\n", + " [ 4.75544399e-01 2.23026590e-01 8.50950448e-01]\n", + " [ 3.76009440e-01 6.04993706e-02 9.24638701e-01]\n", + " [ 3.97979887e-01 4.34241648e-02 9.16365839e-01]\n", + " [ 4.19598774e-01 2.64462488e-02 9.07324344e-01]\n", + " [ 4.40787851e-01 9.63472269e-03 8.97559604e-01]\n", + " [ 4.61474661e-01 -6.93970413e-03 8.87126247e-01]\n", + " [ 4.81592707e-01 -2.32042139e-02 8.76087912e-01]\n", + " [ 5.01081305e-01 -3.90830833e-02 8.64517229e-01]\n", + " [ 5.19885176e-01 -5.44968656e-02 8.52496039e-01]\n", + " [ 4.75544399e-01 2.23026590e-01 8.50950448e-01]\n", + " [ 4.98187174e-01 2.05242069e-01 8.42428177e-01]\n", + " [ 5.20311134e-01 1.87332418e-01 8.33176386e-01]\n", + " [ 5.41835155e-01 1.69371086e-01 8.23242431e-01]\n", + " [ 5.62686264e-01 1.51431919e-01 8.12682313e-01]\n", + " [ 5.82799823e-01 1.33588692e-01 8.01559996e-01]\n", + " [ 6.02118896e-01 1.15915345e-01 7.89947130e-01]\n", + " [ 6.20592912e-01 9.84869696e-02 7.77923360e-01]\n", + " [ 5.19885176e-01 -5.44968656e-02 8.52496039e-01]\n", + " [ 5.35182726e-01 -3.38103063e-02 8.44059425e-01]\n", + " [ 5.50299430e-01 -1.25721111e-02 8.34872733e-01]\n", + " [ 5.65156917e-01 9.11719587e-03 8.24933049e-01]\n", + " [ 5.79681623e-01 3.11608303e-02 8.14247025e-01]\n", + " [ 5.93804560e-01 5.34648010e-02 8.02831028e-01]\n", + " [ 6.07461413e-01 7.59370481e-02 7.90711197e-01]\n", + " [ 6.20592912e-01 9.84869696e-02 7.77923360e-01]\n", + " [ 3.82472398e-01 7.02189717e-02 9.21294828e-01]\n", + " [ 4.00424885e-01 9.81222133e-02 9.11060889e-01]\n", + " [ 4.18263641e-01 1.26502977e-01 8.99473470e-01]\n", + " [ 4.35855984e-01 1.55188086e-01 8.86536079e-01]\n", + " [ 4.53076946e-01 1.84003873e-01 8.72275103e-01]\n", + " [ 4.69809000e-01 2.12774913e-01 8.56741700e-01]\n", + " [ 3.85676983e-01 5.31230199e-02 9.21103257e-01]\n", + " [ 4.12378413e-01 3.22516697e-02 9.10441582e-01]\n", + " [ 4.38473261e-01 1.15948031e-02 8.98669439e-01]\n", + " [ 4.63825710e-01 -8.71808395e-03 8.85883574e-01]\n", + " [ 4.88313324e-01 -2.85528478e-02 8.72201142e-01]\n", + " [ 5.11826657e-01 -4.77685717e-02 8.57759662e-01]\n", + " [ 4.85429723e-01 2.15212736e-01 8.47373272e-01]\n", + " [ 5.12842474e-01 1.93322848e-01 8.36432229e-01]\n", + " [ 5.39394569e-01 1.71318066e-01 8.24441398e-01]\n", + " [ 5.64948239e-01 1.49334214e-01 8.11500327e-01]\n", + " [ 5.89384410e-01 1.27507129e-01 7.97726739e-01]\n", + " [ 6.12600989e-01 1.05973336e-01 7.83255820e-01]\n", + " [ 5.26508897e-01 -4.54994746e-02 8.48951223e-01]\n", + " [ 5.45146182e-01 -1.97605343e-02 8.38108085e-01]\n", + " [ 5.63433494e-01 6.70653173e-03 8.26134203e-01]\n", + " [ 5.81233429e-01 3.37220342e-02 8.13037838e-01]\n", + " [ 5.98418992e-01 6.11128424e-02 7.98849129e-01]\n", + " [ 6.14873851e-01 8.87100869e-02 7.83620232e-01]\n", + " [ 3.76135142e-01 6.05172387e-02 9.24586404e-01]\n", + " [ 3.76135142e-01 6.05172387e-02 9.24586404e-01]\n", + " [ 6.20487282e-01 9.84689179e-02 7.78009900e-01]\n", + " [ 6.20487282e-01 9.84689179e-02 7.78009900e-01]\n", + " [ 3.92050466e-01 6.27941143e-02 9.17798089e-01]\n", + " [ 4.18842076e-01 4.18215016e-02 9.07095517e-01]\n", + " [ 4.45008241e-01 2.10421446e-02 8.95279227e-01]\n", + " [ 4.70412787e-01 5.85346504e-04 8.82446297e-01]\n", + " [ 4.94933259e-01 -1.94154257e-02 8.68714056e-01]\n", + " [ 5.18460481e-01 -3.88202530e-02 8.54219947e-01]\n", + " [ 4.10093873e-01 9.06198008e-02 9.07530202e-01]\n", + " [ 4.37109234e-01 6.93871829e-02 8.96727905e-01]\n", + " [ 4.63447759e-01 4.82890522e-02 8.84807517e-01]\n", + " [ 4.88972280e-01 2.74547218e-02 8.71867162e-01]\n", + " [ 5.13560415e-01 7.01625469e-03 8.58024750e-01]\n", + " [ 5.37103984e-01 -1.28890805e-02 8.43417561e-01]\n", + " [ 4.28005937e-01 1.18936834e-01 8.95915703e-01]\n", + " [ 4.55197146e-01 9.74838615e-02 8.85038109e-01]\n", + " [ 4.81663116e-01 7.61077562e-02 8.73045390e-01]\n", + " [ 5.07265866e-01 5.49386658e-02 8.60036676e-01]\n", + " [ 5.31883366e-01 3.41082210e-02 8.46130436e-01]\n", + " [ 5.55408746e-01 1.37518243e-02 8.31463777e-01]\n", + " [ 4.45653434e-01 1.47572411e-01 8.82958323e-01]\n", + " [ 4.72971076e-01 1.25939372e-01 8.72030754e-01]\n", + " [ 4.99518303e-01 1.04325903e-01 8.59998587e-01]\n", + " [ 5.25156673e-01 8.28636324e-02 8.46961680e-01]\n", + " [ 5.49764806e-01 6.16847355e-02 8.33038805e-01]\n", + " [ 5.73237356e-01 4.09238373e-02 8.18366772e-01]\n", + " [ 4.62910798e-01 1.76353346e-01 8.68684690e-01]\n", + " [ 4.90303999e-01 1.54581837e-01 8.57733318e-01]\n", + " [ 5.16885374e-01 1.32772596e-01 8.45695541e-01]\n", + " [ 5.42516459e-01 1.11059067e-01 8.32671469e-01]\n", + " [ 5.67076782e-01 8.95747303e-02 8.18779757e-01]\n", + " [ 5.90462537e-01 6.84544920e-02 8.04156686e-01]\n", + " [ 4.79660001e-01 2.05104667e-01 8.53146153e-01]\n", + " [ 5.07076871e-01 1.83237846e-01 8.42197684e-01]\n", + " [ 5.33644947e-01 1.61276158e-01 8.30188575e-01]\n", + " [ 5.59226205e-01 1.39354856e-01 8.17218621e-01]\n", + " [ 5.83701206e-01 1.17609139e-01 8.03405870e-01]\n", + " [ 6.06967480e-01 9.61750127e-02 7.88885825e-01]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:fp_optics: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:cartToSphere: vec: [[-0.12924401 0.50952311 -0.85069512]\n", + " [-0.11121852 0.49218908 -0.86335413]\n", + " [-0.09274834 0.47411456 -0.87556446]\n", + " [-0.07390224 0.45535029 -0.88723986]\n", + " [-0.05474991 0.43595181 -0.8983031 ]\n", + " [-0.03536313 0.41598074 -0.90868557]\n", + " [-0.01581627 0.39550551 -0.91832741]\n", + " [ 0.00381394 0.37460132 -0.92717814]\n", + " [-0.12924401 0.50952311 -0.85069512]\n", + " [-0.10719416 0.5268424 -0.84317643]\n", + " [-0.08506265 0.54360435 -0.83502015]\n", + " [-0.06293527 0.55974809 -0.82626946]\n", + " [-0.04089727 0.57521767 -0.81697738]\n", + " [-0.01903312 0.58996173 -0.80720685]\n", + " [ 0.00257347 0.60393303 -0.79703091]\n", + " [ 0.02383936 0.61708808 -0.78653289]\n", + " [ 0.00381394 0.37460132 -0.92717814]\n", + " [ 0.02651458 0.39260136 -0.91932646]\n", + " [ 0.04911893 0.41018953 -0.91067661]\n", + " [ 0.07153822 0.42730154 -0.90127448]\n", + " [ 0.09368646 0.44387949 -0.89117554]\n", + " [ 0.11548082 0.45987195 -0.88044419]\n", + " [ 0.13684105 0.47523331 -0.86915351]\n", + " [ 0.15768831 0.48992273 -0.85738563]\n", + " [ 0.02383936 0.61708808 -0.78653289]\n", + " [ 0.04258203 0.6012128 -0.79795359]\n", + " [ 0.06157281 0.58447724 -0.80907055]\n", + " [ 0.08073909 0.56693528 -0.81979607]\n", + " [ 0.10000778 0.54864462 -0.83005272]\n", + " [ 0.11930516 0.52966712 -0.83977319]\n", + " [ 0.13855689 0.51006931 -0.84890004]\n", + " [ 0.15768831 0.48992273 -0.85738563]\n", + " [-0.12136845 0.50211988 -0.85623906]\n", + " [-0.09896793 0.4803717 -0.87146335]\n", + " [-0.07596791 0.45756112 -0.88592703]\n", + " [-0.05249624 0.43378832 -0.89948421]\n", + " [-0.02868512 0.40916683 -0.91200859]\n", + " [-0.00467249 0.38382545 -0.92339384]\n", + " [-0.11958463 0.51708109 -0.84754154]\n", + " [-0.09249387 0.53794146 -0.83789252]\n", + " [-0.06536586 0.5579037 -0.82732748]\n", + " [-0.0383578 0.57686278 -0.81593996]\n", + " [-0.0116252 0.5947241 -0.80384581]\n", + " [ 0.01467809 0.61140225 -0.79118382]\n", + " [ 0.01365039 0.38256779 -0.92382658]\n", + " [ 0.04141892 0.40435992 -0.9136616 ]\n", + " [ 0.06895449 0.4254687 -0.90234232]\n", + " [ 0.09609759 0.44578488 -0.88996691]\n", + " [ 0.12269563 0.46521368 -0.87665388]\n", + " [ 0.14860156 0.48367318 -0.86254149]\n", + " [ 0.03190401 0.61023152 -0.79158046]\n", + " [ 0.05505103 0.59018851 -0.80538618]\n", + " [ 0.07849874 0.56890651 -0.81864726]\n", + " [ 0.10211283 0.54649013 -0.83121688]\n", + " [ 0.12575757 0.52305333 -0.84297109]\n", + " [ 0.14929594 0.49872064 -0.8538082 ]\n", + " [-0.12910804 0.50952525 -0.85071448]\n", + " [-0.12910804 0.50952525 -0.85071448]\n", + " [ 0.15755285 0.48994343 -0.8573987 ]\n", + " [ 0.15755285 0.48994343 -0.8573987 ]\n", + " [-0.11180916 0.50970622 -0.85305233]\n", + " [-0.08462722 0.53065964 -0.84334962]\n", + " [-0.05742408 0.55072462 -0.83270935]\n", + " [-0.03035738 0.56979627 -0.82122508]\n", + " [-0.00358277 0.58778044 -0.80901255]\n", + " [ 0.02274607 0.60459222 -0.79621031]\n", + " [-0.0893188 0.48803514 -0.86824182]\n", + " [-0.06191242 0.50922728 -0.85840225]\n", + " [-0.03453081 0.52956031 -0.84756917]\n", + " [-0.00733289 0.54892948 -0.8358365 ]\n", + " [ 0.01952542 0.5672418 -0.8233198 ]\n", + " [ 0.04589108 0.58441403 -0.81015693]\n", + " [-0.06624673 0.46528778 -0.88267698]\n", + " [-0.03866699 0.48668183 -0.87272313]\n", + " [-0.01115893 0.50724955 -0.86172697]\n", + " [ 0.01611745 0.52688579 -0.84978326]\n", + " [ 0.04300627 0.54549828 -0.83700782]\n", + " [ 0.06935552 0.56300528 -0.82353802]\n", + " [-0.04272132 0.44156396 -0.89621211]\n", + " [-0.01502092 0.4631226 -0.88616693]\n", + " [ 0.01255997 0.48389192 -0.87503763]\n", + " [ 0.03986074 0.50376588 -0.86292007]\n", + " [ 0.06672602 0.52265222 -0.84993076]\n", + " [ 0.09300516 0.54047009 -0.83620699]\n", + " [-0.01887537 0.41697675 -0.90872114]\n", + " [ 0.00889142 0.43866158 -0.89860835]\n", + " [ 0.03649034 0.45959888 -0.88737665]\n", + " [ 0.06376081 0.47968132 -0.87512307]\n", + " [ 0.09054842 0.49881593 -0.86196499]\n", + " [ 0.1167041 0.51692194 -0.84804001]\n", + " [ 0.0051527 0.39165453 -0.92009792]\n", + " [ 0.03293058 0.41342585 -0.90994211]\n", + " [ 0.06049235 0.43449626 -0.8986399 ]\n", + " [ 0.08767813 0.45475701 -0.88628923]\n", + " [ 0.11433481 0.47411385 -0.87300837]\n", + " [ 0.14031487 0.49248528 -0.85893538]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:fp_optics: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:cartToSphere: vec: [[-0.10464296 -0.22229535 0.96934753]\n", + " [-0.09109643 -0.24636629 0.96488605]\n", + " [-0.07720463 -0.27072031 0.95955717]\n", + " [-0.06301919 -0.29524913 0.95333967]\n", + " [-0.04859239 -0.31984744 0.94622217]\n", + " [-0.03397804 -0.3444115 0.93820371]\n", + " [-0.01923198 -0.36883858 0.92929448]\n", + " [-0.00441189 -0.39302735 0.9195162 ]\n", + " [-0.10464296 -0.22229535 0.96934753]\n", + " [-0.12978768 -0.23538511 0.96319729]\n", + " [-0.15469629 -0.24832197 0.9562454 ]\n", + " [-0.17927171 -0.26106074 0.94852989]\n", + " [-0.20341787 -0.27356066 0.94009879]\n", + " [-0.22703947 -0.28578577 0.93100997]\n", + " [-0.2500415 -0.29770503 0.92133108]\n", + " [-0.27232885 -0.30929223 0.91113957]\n", + " [-0.00441189 -0.39302735 0.9195162 ]\n", + " [-0.0305032 -0.40644101 0.91316771]\n", + " [-0.05648232 -0.41944981 0.90601965]\n", + " [-0.08224722 -0.4320076 0.89811181]\n", + " [-0.10769901 -0.44407433 0.88949363]\n", + " [-0.13274236 -0.45561602 0.88022356]\n", + " [-0.15728492 -0.46660436 0.87036879]\n", + " [-0.18123577 -0.4770159 0.86000548]\n", + " [-0.27232885 -0.30929223 0.91113957]\n", + " [-0.26074891 -0.33320023 0.90608367]\n", + " [-0.24860217 -0.35730727 0.90029355]\n", + " [-0.23594227 -0.38150058 0.89374972]\n", + " [-0.22282241 -0.40567137 0.88644284]\n", + " [-0.20929562 -0.42971458 0.87837391]\n", + " [-0.19541533 -0.4535287 0.86955423]\n", + " [-0.18123577 -0.4770159 0.86000548]\n", + " [-0.09886901 -0.23279359 0.9674875 ]\n", + " [-0.08202851 -0.26249966 0.96143916]\n", + " [-0.06472054 -0.29252283 0.95406585]\n", + " [-0.04704099 -0.32266809 0.9453425 ]\n", + " [-0.02908899 -0.3527444 0.93526746]\n", + " [-0.01096812 -0.38256315 0.92386424]\n", + " [-0.11558361 -0.22810014 0.96675269]\n", + " [-0.1462555 -0.24404638 0.95867132]\n", + " [-0.17647623 -0.2597174 0.94942246]\n", + " [-0.20606853 -0.27503629 0.93909041]\n", + " [-0.23485689 -0.28993686 0.92778169]\n", + " [-0.26266635 -0.30436399 0.9156249 ]\n", + " [-0.01584568 -0.39884015 0.91688355]\n", + " [-0.04776059 -0.4150139 0.90856061]\n", + " [-0.0794052 -0.4305332 0.89907507]\n", + " [-0.1105961 -0.44532174 0.88851395]\n", + " [-0.14115776 -0.45931694 0.87698485]\n", + " [-0.17092081 -0.47246872 0.86461517]\n", + " [-0.26727768 -0.31964555 0.90905961]\n", + " [-0.25269595 -0.34909621 0.90237276]\n", + " [-0.23731634 -0.37873338 0.89456246]\n", + " [-0.22123698 -0.40835514 0.88560729]\n", + " [-0.20455559 -0.43776807 0.87550907]\n", + " [-0.18737082 -0.46678678 0.86429293]\n", + " [-0.10468357 -0.22242202 0.96931409]\n", + " [-0.10468357 -0.22242202 0.96931409]\n", + " [-0.18120391 -0.47690165 0.86007556]\n", + " [-0.18120391 -0.47690165 0.86007556]\n", + " [-0.10981298 -0.23849234 0.96491581]\n", + " [-0.1406168 -0.25447995 0.95680033]\n", + " [-0.17098015 -0.27016669 0.94751029]\n", + " [-0.20072572 -0.28547528 0.93713022]\n", + " [-0.22967838 -0.30033927 0.9257668 ]\n", + " [-0.25766374 -0.3147035 0.91354863]\n", + " [-0.0930834 -0.26824992 0.95884173]\n", + " [-0.12422251 -0.28433617 0.95064279]\n", + " [-0.1549511 -0.30005067 0.94125435]\n", + " [-0.18509143 -0.31531517 0.93076179]\n", + " [-0.21446936 -0.33006269 0.91927227]\n", + " [-0.2429124 -0.34423805 0.9069144 ]\n", + " [-0.07586604 -0.29831415 0.95144785]\n", + " [-0.10728329 -0.31447075 0.94318526]\n", + " [-0.1383201 -0.3301869 0.93372596]\n", + " [-0.16879775 -0.34538379 0.92315619]\n", + " [-0.19854267 -0.35999446 0.91158368]\n", + " [-0.22738419 -0.37396414 0.89913695]\n", + " [-0.0582563 -0.32848969 0.94270925]\n", + " [-0.08989345 -0.34468722 0.93440349]\n", + " [-0.12118115 -0.36037752 0.92490171]\n", + " [-0.1519393 -0.37548187 0.91429088]\n", + " [-0.18199429 -0.38993401 0.90267909]\n", + " [-0.21117675 -0.40368015 0.89019476]\n", + " [-0.04035263 -0.35858516 0.93262444]\n", + " [-0.07214973 -0.3747933 0.9242967 ]\n", + " [-0.10362987 -0.39042965 0.91478169]\n", + " [-0.13461141 -0.40541618 0.90416674]\n", + " [-0.16492016 -0.41968796 0.89256 ]\n", + " [-0.19438727 -0.43319266 0.8800896 ]\n", + " [-0.02225798 -0.38841166 0.92121711]\n", + " [-0.05415326 -0.40459977 0.91288907]\n", + " [-0.08576579 -0.42015436 0.90339058]\n", + " [-0.11691255 -0.43499864 0.89280885]\n", + " [-0.14741837 -0.44906936 0.88125168]\n", + " [-0.17711416 -0.46231589 0.8688467 ]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:fp_optics: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:cartToSphere: vec: [[ 0.13348988 -0.57400538 -0.80789744]\n", + " [ 0.13650114 -0.59542159 -0.79173264]\n", + " [ 0.13961692 -0.616806 -0.77463376]\n", + " [ 0.14280967 -0.63804788 -0.7566375 ]\n", + " [ 0.14605209 -0.65904046 -0.73779025]\n", + " [ 0.14931922 -0.67968278 -0.71814698]\n", + " [ 0.15258931 -0.69988039 -0.69777069]\n", + " [ 0.15584406 -0.71954573 -0.67673227]\n", + " [ 0.13348988 -0.57400538 -0.80789744]\n", + " [ 0.1595278 -0.56707259 -0.80807151]\n", + " [ 0.18602879 -0.55968196 -0.80755767]\n", + " [ 0.21287572 -0.55183183 -0.80632844]\n", + " [ 0.23995 -0.54352633 -0.80436504]\n", + " [ 0.2671345 -0.53477635 -0.80165667]\n", + " [ 0.29431473 -0.52560004 -0.79820013]\n", + " [ 0.32137925 -0.51602291 -0.79399983]\n", + " [ 0.15584406 -0.71954573 -0.67673227]\n", + " [ 0.18317366 -0.71390565 -0.67585955]\n", + " [ 0.21091765 -0.70757827 -0.67442326]\n", + " [ 0.23895405 -0.70055713 -0.67239919]\n", + " [ 0.26716541 -0.69284269 -0.66976985]\n", + " [ 0.29543649 -0.68444289 -0.66652472]\n", + " [ 0.32365213 -0.67537401 -0.66266073]\n", + " [ 0.3516966 -0.66566126 -0.65818279]\n", + " [ 0.32137925 -0.51602291 -0.79399983]\n", + " [ 0.32634157 -0.53793166 -0.77725846]\n", + " [ 0.33114451 -0.55983986 -0.75955424]\n", + " [ 0.33575361 -0.58163517 -0.74092512]\n", + " [ 0.34013848 -0.60321252 -0.7214156 ]\n", + " [ 0.34427232 -0.62447227 -0.70107842]\n", + " [ 0.34813171 -0.64531894 -0.6799763 ]\n", + " [ 0.3516966 -0.66566126 -0.65818279]\n", + " [ 0.13487686 -0.58331704 -0.80096783]\n", + " [ 0.13864233 -0.6095583 -0.78052353]\n", + " [ 0.14253736 -0.63564147 -0.75871142]\n", + " [ 0.14651143 -0.66136821 -0.73561301]\n", + " [ 0.15051865 -0.6865527 -0.71132941]\n", + " [ 0.15452043 -0.71102392 -0.68597989]\n", + " [ 0.14478884 -0.57111211 -0.80800195]\n", + " [ 0.17702819 -0.56230856 -0.80775622]\n", + " [ 0.20984706 -0.55281491 -0.80644894]\n", + " [ 0.24302751 -0.54263627 -0.80404198]\n", + " [ 0.27635401 -0.53179274 -0.80051542]\n", + " [ 0.30961706 -0.52032081 -0.79586653]\n", + " [ 0.16768974 -0.71710393 -0.6764925 ]\n", + " [ 0.20147915 -0.70972973 -0.67504804]\n", + " [ 0.23576924 -0.70131614 -0.67273214]\n", + " [ 0.27034199 -0.69186111 -0.66950982]\n", + " [ 0.30498498 -0.6813794 -0.66536177]\n", + " [ 0.33948591 -0.66990465 -0.66028561]\n", + " [ 0.32346746 -0.52560125 -0.78683679]\n", + " [ 0.32944574 -0.55246716 -0.76566673]\n", + " [ 0.33515012 -0.57921969 -0.74308744]\n", + " [ 0.34052294 -0.60566246 -0.71917808]\n", + " [ 0.34551488 -0.63161189 -0.69403595]\n", + " [ 0.35008419 -0.65689387 -0.66778103]\n", + " [ 0.1335881 -0.57405561 -0.80784552]\n", + " [ 0.1335881 -0.57405561 -0.80784552]\n", + " [ 0.35158945 -0.66562693 -0.65827475]\n", + " [ 0.35158945 -0.66562693 -0.65827475]\n", + " [ 0.14613678 -0.58041094 -0.80110373]\n", + " [ 0.17854255 -0.57169705 -0.80080275]\n", + " [ 0.21152284 -0.56226737 -0.79944574]\n", + " [ 0.24485775 -0.55212591 -0.7969954 ]\n", + " [ 0.27833112 -0.5412924 -0.79343199]\n", + " [ 0.31173318 -0.52980341 -0.78875267]\n", + " [ 0.1500547 -0.60675875 -0.78059427]\n", + " [ 0.18288525 -0.59830029 -0.78012162]\n", + " [ 0.21627385 -0.58905441 -0.77861449]\n", + " [ 0.24999783 -0.57902317 -0.77603689]\n", + " [ 0.28384088 -0.56822592 -0.77236886]\n", + " [ 0.31759291 -0.55669978 -0.76760674]\n", + " [ 0.15407682 -0.63294748 -0.75870799]\n", + " [ 0.18725762 -0.62474327 -0.75804382]\n", + " [ 0.22097949 -0.61568382 -0.75637392]\n", + " [ 0.25501997 -0.60577024 -0.75366254]\n", + " [ 0.28916387 -0.59502168 -0.74988897]\n", + " [ 0.32320084 -0.58347559 -0.74504862]\n", + " [ 0.1581507 -0.65877771 -0.73552722]\n", + " [ 0.19160419 -0.65082509 -0.73465266]\n", + " [ 0.22558359 -0.64195499 -0.73280682]\n", + " [ 0.25986804 -0.63216774 -0.7299538 ]\n", + " [ 0.29424372 -0.62148175 -0.72607236]\n", + " [ 0.32849978 -0.60993415 -0.72115756]\n", + " [ 0.16222984 -0.68406319 -0.71115331]\n", + " [ 0.19587824 -0.67635914 -0.71004932]\n", + " [ 0.23004003 -0.66768162 -0.7080133 ]\n", + " [ 0.2644961 -0.65803 -0.70500945]\n", + " [ 0.29903365 -0.64742132 -0.70101677]\n", + " [ 0.33344115 -0.63589156 -0.69603084]\n", + " [ 0.16627568 -0.7086326 -0.68570565]\n", + " [ 0.20004183 -0.70117323 -0.68435324]\n", + " [ 0.23431156 -0.69269063 -0.68211273]\n", + " [ 0.26886673 -0.6831831 -0.67894884]\n", + " [ 0.30349495 -0.67266596 -0.6748417 ]\n", + " [ 0.33798406 -0.66117351 -0.66978829]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:fp_optics: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:cartToSphere: vec: [[-0.56481196 0.28835381 -0.77320084]\n", + " [-0.54151659 0.29547713 -0.7870534 ]\n", + " [-0.51732118 0.30250211 -0.80054436]\n", + " [-0.49229843 0.30938788 -0.81358552]\n", + " [-0.46652706 0.3160965 -0.82609655]\n", + " [-0.44009306 0.32259274 -0.83800479]\n", + " [-0.41308998 0.32884428 -0.84924561]\n", + " [-0.38561848 0.33482201 -0.85976311]\n", + " [-0.56481196 0.28835381 -0.77320084]\n", + " [-0.56608946 0.3150144 -0.76177992]\n", + " [-0.56680694 0.34135125 -0.74980612]\n", + " [-0.56696598 0.3672659 -0.73733665]\n", + " [-0.56657285 0.3926644 -0.72443762]\n", + " [-0.56563792 0.41745735 -0.7111843 ]\n", + " [-0.56417503 0.44155946 -0.69766165]\n", + " [-0.56220096 0.46488864 -0.68396537]\n", + " [-0.38561848 0.33482201 -0.85976311]\n", + " [-0.38706145 0.36235209 -0.84787051]\n", + " [-0.38815065 0.38946967 -0.83525592]\n", + " [-0.38888667 0.41607247 -0.82197984]\n", + " [-0.38927463 0.44206469 -0.80811142]\n", + " [-0.38932402 0.46735756 -0.79372774]\n", + " [-0.38904844 0.49186916 -0.77891337]\n", + " [-0.38846547 0.51552336 -0.7637606 ]\n", + " [-0.56220096 0.46488864 -0.68396537]\n", + " [-0.53959944 0.4732409 -0.69633002]\n", + " [-0.51612069 0.48128528 -0.70850823]\n", + " [-0.49184363 0.48897997 -0.72040851]\n", + " [-0.46685047 0.49628577 -0.73195018]\n", + " [-0.44122777 0.50316632 -0.74306239]\n", + " [-0.41506715 0.50958858 -0.75368345]\n", + " [-0.38846547 0.51552336 -0.7637606 ]\n", + " [-0.55477556 0.29156091 -0.77924086]\n", + " [-0.5256106 0.30023134 -0.79598658]\n", + " [-0.4951654 0.30871295 -0.81210069]\n", + " [-0.4635823 0.31693467 -0.82743209]\n", + " [-0.43101962 0.32483168 -0.84184706]\n", + " [-0.39765257 0.33234579 -0.85523021]\n", + " [-0.56535969 0.30003609 -0.76834026]\n", + " [-0.56654899 0.33250717 -0.75396368]\n", + " [-0.56689826 0.36439358 -0.73881235]\n", + " [-0.56641711 0.39552044 -0.72300431]\n", + " [-0.56512456 0.42572315 -0.70667817]\n", + " [-0.56304735 0.45484606 -0.68999474]\n", + " [-0.38638557 0.3468492 -0.85463549]\n", + " [-0.38791617 0.38032584 -0.83956733]\n", + " [-0.38891528 0.41308064 -0.82347391]\n", + " [-0.38939048 0.44493448 -0.80647899]\n", + " [-0.38935918 0.47572392 -0.7887244 ]\n", + " [-0.38884811 0.50530065 -0.770369 ]\n", + " [-0.55246675 0.46848676 -0.68942051]\n", + " [-0.52416572 0.47852119 -0.70446275]\n", + " [-0.49462513 0.48805147 -0.71913263]\n", + " [-0.46399488 0.49700435 -0.73327719]\n", + " [-0.43243441 0.50531294 -0.7467659 ]\n", + " [-0.40011458 0.512918 -0.75948894]\n", + " [-0.56473923 0.28846989 -0.77321066]\n", + " [-0.56473923 0.28846989 -0.77321066]\n", + " [-0.38855957 0.51542458 -0.7637794 ]\n", + " [-0.38855957 0.51542458 -0.7637794 ]\n", + " [-0.55539981 0.30317177 -0.77435 ]\n", + " [-0.55660994 0.33576235 -0.75990066]\n", + " [-0.55699512 0.36775729 -0.74465496]\n", + " [-0.55656536 0.39898144 -0.72873096]\n", + " [-0.55534027 0.42927034 -0.71226692]\n", + " [-0.55334734 0.45846905 -0.69542279]\n", + " [-0.52624494 0.31195444 -0.79104405]\n", + " [-0.52751399 0.34484396 -0.77640945]\n", + " [-0.52800321 0.3771082 -0.76092182]\n", + " [-0.52772328 0.40857092 -0.7446999 ]\n", + " [-0.52669504 0.43906799 -0.72788161]\n", + " [-0.52494765 0.46844634 -0.71062507]\n", + " [-0.49580888 0.32052672 -0.80711597]\n", + " [-0.49713724 0.35365562 -0.79232712]\n", + " [-0.4977351 0.38613189 -0.77663501]\n", + " [-0.49761318 0.41777815 -0.76015955]\n", + " [-0.49679269 0.4484304 -0.74303917]\n", + " [-0.4953036 0.47793717 -0.72543119]\n", + " [-0.46423397 0.3288169 -0.8224149 ]\n", + " [-0.4656223 0.362124 -0.80750361]\n", + " [-0.46633414 0.39475383 -0.79164505]\n", + " [-0.46637971 0.42652807 -0.77496049]\n", + " [-0.46577976 0.45728278 -0.75758938]\n", + " [-0.46456414 0.48686778 -0.73968907]\n", + " [-0.43167849 0.33675955 -0.83680744]\n", + " [-0.4331273 0.37018204 -0.82180655]\n", + " [-0.43395834 0.40290586 -0.80582072]\n", + " [-0.4341809 0.43475202 -0.78897251]\n", + " [-0.4338146 0.46555673 -0.77140251]\n", + " [-0.43288833 0.49517079 -0.75326859]\n", + " [-0.3983176 0.34429596 -0.85017844]\n", + " [-0.39982693 0.37776986 -0.83512176]\n", + " [-0.40078159 0.41052728 -0.81904912]\n", + " [-0.40118961 0.44238905 -0.80208405]\n", + " [-0.40106904 0.47319162 -0.7843681 ]\n", + " [-0.40044724 0.5027865 -0.76605988]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:fp_optics: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:cartToSphere: vec: [[-0.03911079 0.8590923 0.51032419]\n", + " [-0.03583146 0.84519629 0.53325354]\n", + " [-0.03260428 0.83036583 0.55626392]\n", + " [-0.02943175 0.81462673 0.57923835]\n", + " [-0.02631625 0.79801488 0.60206288]\n", + " [-0.02326156 0.78057518 0.62462892]\n", + " [-0.02027347 0.76236112 0.64683422]\n", + " [-0.01735993 0.74343461 0.66858329]\n", + " [-0.03911079 0.8590923 0.51032419]\n", + " [-0.06600868 0.85758783 0.51008427]\n", + " [-0.09342593 0.85533458 0.50958253]\n", + " [-0.12124778 0.85230914 0.50879083]\n", + " [-0.14935725 0.84849747 0.50768539]\n", + " [-0.17763759 0.8438941 0.50624859]\n", + " [-0.2059733 0.83850181 0.50446973]\n", + " [-0.23425054 0.83233162 0.50234527]\n", + " [-0.01735993 0.74343461 0.66858329]\n", + " [-0.0451225 0.74097799 0.67001163]\n", + " [-0.07342068 0.73787375 0.67093348]\n", + " [-0.10213638 0.73410141 0.67131459]\n", + " [-0.13115468 0.7296478 0.67112781]\n", + " [-0.16036145 0.72450737 0.6703531 ]\n", + " [-0.18964107 0.71868283 0.66897777]\n", + " [-0.21887575 0.71218582 0.66699682]\n", + " [-0.23425054 0.83233162 0.50234527]\n", + " [-0.2326981 0.81784349 0.52629233]\n", + " [-0.23093273 0.80240494 0.55028755]\n", + " [-0.22895076 0.78604302 0.57421069]\n", + " [-0.22675106 0.768792 0.59794885]\n", + " [-0.2243352 0.7506948 0.62139443]\n", + " [-0.22170765 0.73180465 0.6444437 ]\n", + " [-0.21887575 0.71218582 0.66699682]\n", + " [-0.03776614 0.85314562 0.52030402]\n", + " [-0.0337826 0.83548313 0.54847669]\n", + " [-0.02987979 0.81644144 0.57665464]\n", + " [-0.02606206 0.79608253 0.60462664]\n", + " [-0.0223364 0.77448902 0.63219289]\n", + " [-0.01871439 0.75176287 0.65916793]\n", + " [-0.05075647 0.85848045 0.51032843]\n", + " [-0.08408708 0.8561361 0.50986306]\n", + " [-0.11808424 0.85264274 0.50897591]\n", + " [-0.15253328 0.84797067 0.50762126]\n", + " [-0.18721939 0.8421098 0.50576673]\n", + " [-0.22193062 0.83506864 0.50339563]\n", + " [-0.02940078 0.74250765 0.66919204]\n", + " [-0.06380201 0.73906492 0.67060595]\n", + " [-0.09889 0.73462818 0.67122441]\n", + " [-0.13445189 0.72917012 0.6709945 ]\n", + " [-0.17027732 0.7226806 0.66987938]\n", + " [-0.20615249 0.71516832 0.66785883]\n", + " [-0.23350266 0.82615556 0.51278017]\n", + " [-0.23145644 0.80775691 0.54217773]\n", + " [-0.22908665 0.78795678 0.57152727]\n", + " [-0.22639015 0.76681521 0.60061796]\n", + " [-0.22336989 0.74441144 0.62925154]\n", + " [-0.22003526 0.72084805 0.65723859]\n", + " [-0.03919046 0.85904248 0.51040192]\n", + " [-0.03919046 0.85904248 0.51040192]\n", + " [-0.21878602 0.71227742 0.66692845]\n", + " [-0.21878602 0.71227742 0.66692845]\n", + " [-0.0493789 0.85256495 0.52028331]\n", + " [-0.08284493 0.8501691 0.51995117]\n", + " [-0.11697924 0.84662719 0.51917075]\n", + " [-0.15156559 0.84191031 0.51789469]\n", + " [-0.18638868 0.83600854 0.5160901 ]\n", + " [-0.22123627 0.82893029 0.5137403 ]\n", + " [-0.04551251 0.83484337 0.54860291]\n", + " [-0.07931563 0.83228834 0.54863937]\n", + " [-0.11378981 0.82860171 0.54815243]\n", + " [-0.14871671 0.82375579 0.54709208]\n", + " [-0.18388095 0.81774038 0.54542503]\n", + " [-0.21906984 0.81056315 0.54313514]\n", + " [-0.04170198 0.81573443 0.57692138]\n", + " [-0.07576906 0.81300298 0.57730859]\n", + " [-0.110509 0.80916198 0.57710021]\n", + " [-0.14570391 0.80418387 0.57624532]\n", + " [-0.18113954 0.79805763 0.57471079]\n", + " [-0.21660284 0.79079007 0.5724808 ]\n", + " [-0.0379501 0.79530087 0.60502588]\n", + " [-0.07220552 0.79237669 0.60574379]\n", + " [-0.10713633 0.78837119 0.6057992 ]\n", + " [-0.14252642 0.78325651 0.60514086]\n", + " [-0.17816299 0.777021 0.6037353 ]\n", + " [-0.21383263 0.76967111 0.60156627]\n", + " [-0.03426341 0.77362551 0.63271604]\n", + " [-0.0686314 0.77049209 0.63374417]\n", + " [-0.10367869 0.76631092 0.63404914]\n", + " [-0.13919106 0.76105405 0.63357918]\n", + " [-0.17495707 0.75470994 0.63229972]\n", + " [-0.21076298 0.74728544 0.63019318]\n", + " [-0.03065358 0.75081042 0.65980608]\n", + " [-0.06505923 0.74745121 0.66112328]\n", + " [-0.10014947 0.74308301 0.66166285]\n", + " [-0.13571128 0.73767828 0.66137221]\n", + " [-0.17153412 0.73122637 0.66021514]\n", + " [-0.20740415 0.72373542 0.65817214]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:fp_optics: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:cartToSphere: vec: [[-0.46297834 -0.01379804 -0.88626219]\n", + " [-0.47632854 -0.0359421 -0.87853246]\n", + " [-0.48948404 -0.05861228 -0.87004022]\n", + " [-0.50237938 -0.08169895 -0.86077886]\n", + " [-0.51495278 -0.10509692 -0.8507516 ]\n", + " [-0.52714598 -0.12870452 -0.83997158]\n", + " [-0.53890445 -0.15242288 -0.82846198]\n", + " [-0.55017774 -0.17615548 -0.8162559 ]\n", + " [-0.46297834 -0.01379804 -0.88626219]\n", + " [-0.4418615 -0.02684944 -0.89668139]\n", + " [-0.42002375 -0.04030026 -0.90661786]\n", + " [-0.3975342 -0.05407574 -0.91599256]\n", + " [-0.37446601 -0.06810575 -0.92473608]\n", + " [-0.35089691 -0.08232413 -0.93278835]\n", + " [-0.32690955 -0.09666784 -0.94009865]\n", + " [-0.3025915 -0.11107639 -0.94662581]\n", + " [-0.55017774 -0.17615548 -0.8162559 ]\n", + " [-0.52919229 -0.19132451 -0.82665014]\n", + " [-0.50735209 -0.2066541 -0.83659306]\n", + " [-0.48472078 -0.22207393 -0.84600765]\n", + " [-0.46136694 -0.23751603 -0.85482553]\n", + " [-0.43736579 -0.25291384 -0.86298654]\n", + " [-0.41280006 -0.26820177 -0.87043892]\n", + " [-0.38776007 -0.28331552 -0.87713992]\n", + " [-0.3025915 -0.11107639 -0.94662581]\n", + " [-0.31509498 -0.13508296 -0.93939755]\n", + " [-0.32758654 -0.15945961 -0.93126779]\n", + " [-0.34000315 -0.18410316 -0.92222768]\n", + " [-0.3522849 -0.20891207 -0.91227797]\n", + " [-0.36437442 -0.23378492 -0.90142992]\n", + " [-0.37621679 -0.25861994 -0.88970594]\n", + " [-0.38776007 -0.28331552 -0.87713992]\n", + " [-0.46874769 -0.0234255 -0.88302143]\n", + " [-0.4849871 -0.05093482 -0.87303674]\n", + " [-0.50086872 -0.07912484 -0.86189894]\n", + " [-0.51627728 -0.10780008 -0.84960986]\n", + " [-0.53110558 -0.13677331 -0.83619371]\n", + " [-0.54525487 -0.16586349 -0.82169729]\n", + " [-0.45391006 -0.01950971 -0.89083389]\n", + " [-0.42753561 -0.03578542 -0.90328994]\n", + " [-0.40014644 -0.05258608 -0.91494127]\n", + " [-0.37187554 -0.06978071 -0.92565611]\n", + " [-0.34286603 -0.08724738 -0.93532389]\n", + " [-0.31327214 -0.10487113 -0.94385519]\n", + " [-0.54109922 -0.18266344 -0.82088105]\n", + " [-0.5147964 -0.2013708 -0.83332735]\n", + " [-0.48727258 -0.22024928 -0.84501816]\n", + " [-0.45865186 -0.23917285 -0.85582406]\n", + " [-0.42907281 -0.25801893 -0.86563431]\n", + " [-0.39869093 -0.27666727 -0.87435734]\n", + " [-0.30812427 -0.12144157 -0.94356313]\n", + " [-0.32344947 -0.15112556 -0.9340993 ]\n", + " [-0.3386936 -0.18126271 -0.92327162]\n", + " [-0.3537451 -0.21166552 -0.91107744]\n", + " [-0.36849834 -0.24214722 -0.89753757]\n", + " [-0.38285344 -0.27252048 -0.88269804]\n", + " [-0.46295334 -0.0139166 -0.8862734 ]\n", + " [-0.46295334 -0.0139166 -0.8862734 ]\n", + " [-0.38780749 -0.2831801 -0.87716269]\n", + " [-0.38780749 -0.2831801 -0.87716269]\n", + " [-0.45969536 -0.02909314 -0.8876 ]\n", + " [-0.43328491 -0.04556236 -0.90010458]\n", + " [-0.40584406 -0.06253106 -0.91180067]\n", + " [-0.37750534 -0.07986922 -0.92255657]\n", + " [-0.34841171 -0.09745568 -0.93226159]\n", + " [-0.31871766 -0.11517585 -0.94082601]\n", + " [-0.47591893 -0.05680125 -0.877653 ]\n", + " [-0.44943569 -0.07378535 -0.89026023]\n", + " [-0.4218794 -0.09119964 -0.90205344]\n", + " [-0.39338104 -0.10891678 -0.91290114]\n", + " [-0.36408306 -0.12681736 -0.92269219]\n", + " [-0.33414069 -0.1447872 -0.93133596]\n", + " [-0.49179927 -0.08517252 -0.86653281]\n", + " [-0.46528662 -0.10262473 -0.87919084]\n", + " [-0.43766104 -0.1204422 -0.89103675]\n", + " [-0.40905177 -0.13849961 -0.9019393 ]\n", + " [-0.37960056 -0.15667828 -0.91178689]\n", + " [-0.34946326 -0.17486351 -0.92048801]\n", + " [-0.50722101 -0.11401247 -0.85424119]\n", + " [-0.48072202 -0.13188899 -0.86689771]\n", + " [-0.45307342 -0.15006968 -0.87875114]\n", + " [-0.42440262 -0.16843017 -0.88967055]\n", + " [-0.39485049 -0.18685143 -0.89954412]\n", + " [-0.36457323 -0.20521753 -0.90827976]\n", + " [-0.52207656 -0.14313455 -0.84080233]\n", + " [-0.49563342 -0.16139308 -0.85340482]\n", + " [-0.4680076 -0.17989771 -0.86522003]\n", + " [-0.43932484 -0.19852396 -0.87611753]\n", + " [-0.40972502 -0.21715159 -0.88598566]\n", + " [-0.37936431 -0.23566291 -0.8947322 ]\n", + " [-0.53626669 -0.17235784 -0.82626316]\n", + " [-0.50992025 -0.19095581 -0.83875933]\n", + " [-0.48236207 -0.20974414 -0.85049058]\n", + " [-0.45371658 -0.22859731 -0.86132719]\n", + " [-0.42412267 -0.24739338 -0.87115812]\n", + " [-0.39373609 -0.26601276 -0.87989153]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:fp_optics: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:cartToSphere: vec: [[ 0.20117343 -0.23053903 0.95204044]\n", + " [ 0.22751805 -0.22945093 0.94635501]\n", + " [ 0.25424466 -0.22832245 0.93980238]\n", + " [ 0.28122661 -0.22713191 0.93237476]\n", + " [ 0.30834259 -0.22586388 0.9240727 ]\n", + " [ 0.33547546 -0.22450852 0.91490553]\n", + " [ 0.36251151 -0.22306098 0.90489182]\n", + " [ 0.38934032 -0.22152077 0.89405965]\n", + " [ 0.20117343 -0.23053903 0.95204044]\n", + " [ 0.19815073 -0.256601 0.94598743]\n", + " [ 0.19506839 -0.28304296 0.9390607 ]\n", + " [ 0.19191432 -0.30973616 0.93125314]\n", + " [ 0.18868208 -0.33655792 0.9225659 ]\n", + " [ 0.18537043 -0.36339036 0.9130089 ]\n", + " [ 0.18198269 -0.39011952 0.90260127]\n", + " [ 0.17852616 -0.41663517 0.89137172]\n", + " [ 0.38934032 -0.22152077 0.89405965]\n", + " [ 0.38808931 -0.24861336 0.88745596]\n", + " [ 0.38650422 -0.27606139 0.88000261]\n", + " [ 0.38457366 -0.30374366 0.87168968]\n", + " [ 0.38229031 -0.33154136 0.86251635]\n", + " [ 0.37965114 -0.3593369 0.85249164]\n", + " [ 0.37665762 -0.38701377 0.84163494]\n", + " [ 0.37331577 -0.41445731 0.82997619]\n", + " [ 0.17852616 -0.41663517 0.89137172]\n", + " [ 0.20580863 -0.41735537 0.88513124]\n", + " [ 0.23346951 -0.41775833 0.87804895]\n", + " [ 0.26138944 -0.41782361 0.87011436]\n", + " [ 0.28945072 -0.41753522 0.86132609]\n", + " [ 0.31753627 -0.41688171 0.85169264]\n", + " [ 0.34552962 -0.41585636 0.84123289]\n", + " [ 0.37331577 -0.41445731 0.82997619]\n", + " [ 0.21259462 -0.23015669 0.94964805]\n", + " [ 0.24515703 -0.22880019 0.94209793]\n", + " [ 0.27816669 -0.22736057 0.93323655]\n", + " [ 0.31139813 -0.22580684 0.92306147]\n", + " [ 0.34463562 -0.22412084 0.9115899 ]\n", + " [ 0.37767116 -0.22229546 0.89885996]\n", + " [ 0.19995154 -0.24184366 0.94948988]\n", + " [ 0.19620973 -0.27405869 0.94148477]\n", + " [ 0.19236546 -0.30671576 0.93215931]\n", + " [ 0.18840456 -0.33958661 0.92151216]\n", + " [ 0.18432468 -0.37245411 0.90956163]\n", + " [ 0.18013359 -0.40511 0.89634691]\n", + " [ 0.38874342 -0.23328704 0.89132245]\n", + " [ 0.38698623 -0.26674629 0.88265966]\n", + " [ 0.38471566 -0.30061861 0.87270975]\n", + " [ 0.38191653 -0.33468441 0.86146742]\n", + " [ 0.37858331 -0.36872719 0.84894931]\n", + " [ 0.37472057 -0.40253318 0.83519551]\n", + " [ 0.19037906 -0.41689614 0.88879324]\n", + " [ 0.22408624 -0.41756739 0.88058096]\n", + " [ 0.25824289 -0.4177415 0.87109279]\n", + " [ 0.29263176 -0.4173872 0.86032237]\n", + " [ 0.32703732 -0.41648344 0.84828541]\n", + " [ 0.36124568 -0.41501986 0.835021 ]\n", + " [ 0.20125247 -0.23062368 0.95200324]\n", + " [ 0.20125247 -0.23062368 0.95200324]\n", + " [ 0.37323324 -0.41436941 0.83005719]\n", + " [ 0.37323324 -0.41436941 0.83005719]\n", + " [ 0.21134644 -0.24143259 0.94712353]\n", + " [ 0.20773356 -0.27380103 0.93908454]\n", + " [ 0.20398855 -0.30660536 0.92972137]\n", + " [ 0.20009805 -0.33961846 0.91903214]\n", + " [ 0.19606033 -0.37262366 0.90703471]\n", + " [ 0.19188358 -0.4054125 0.89376809]\n", + " [ 0.24405496 -0.24021352 0.93953959]\n", + " [ 0.24080046 -0.27296001 0.93140108]\n", + " [ 0.23733339 -0.30612908 0.92193159]\n", + " [ 0.23364205 -0.33949644 0.91112763]\n", + " [ 0.22972578 -0.37284617 0.89900601]\n", + " [ 0.22559341 -0.40596884 0.88560539]\n", + " [ 0.27720691 -0.23888108 0.93064073]\n", + " [ 0.27430381 -0.27192388 0.92239624]\n", + " [ 0.27111258 -0.30538131 0.91281993]\n", + " [ 0.2676221 -0.33903116 0.90190703]\n", + " [ 0.26383172 -0.3726576 0.88967361]\n", + " [ 0.25975011 -0.40604989 0.8761583 ]\n", + " [ 0.3105779 -0.23740517 0.9204239 ]\n", + " [ 0.30802177 -0.27066445 0.91206543]\n", + " [ 0.30510617 -0.30433462 0.90238055]\n", + " [ 0.30181952 -0.33819481 0.8913637 ]\n", + " [ 0.29816028 -0.37202897 0.87903065]\n", + " [ 0.29413628 -0.40562498 0.86542026]\n", + " [ 0.34395251 -0.2357683 0.90890592]\n", + " [ 0.34173948 -0.26916537 0.90042442]\n", + " [ 0.3390993 -0.30297272 0.89062854]\n", + " [ 0.33601916 -0.33697027 0.87951246]\n", + " [ 0.33249598 -0.37094167 0.86709209]\n", + " [ 0.32853637 -0.40467375 0.85340671]\n", + " [ 0.37712253 -0.23396376 0.89612474]\n", + " [ 0.37524759 -0.26742053 0.88751085]\n", + " [ 0.37288118 -0.30128929 0.8776015 ]\n", + " [ 0.37000879 -0.33535039 0.86639114]\n", + " [ 0.36662554 -0.36938731 0.8538962 ]\n", + " [ 0.36273654 -0.40318634 0.84015652]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:fp_optics: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:cartToSphere: vec: [[ 0.14742027 0.29375604 -0.9444441 ]\n", + " [ 0.16801329 0.27491059 -0.94667613]\n", + " [ 0.18888088 0.25546641 -0.94818824]\n", + " [ 0.20993248 0.23548899 -0.94893271]\n", + " [ 0.23107892 0.21504698 -0.94887161]\n", + " [ 0.25223158 0.19421308 -0.94797706]\n", + " [ 0.27330248 0.17306427 -0.94623174]\n", + " [ 0.29420486 0.15168138 -0.9436293 ]\n", + " [ 0.14742027 0.29375604 -0.9444441 ]\n", + " [ 0.1665343 0.31340159 -0.93490415]\n", + " [ 0.1855201 0.33265475 -0.92462052]\n", + " [ 0.20430755 0.3514421 -0.91364483]\n", + " [ 0.22283016 0.36969285 -0.90203876]\n", + " [ 0.24102536 0.38733832 -0.88987404]\n", + " [ 0.25883463 0.404311 -0.87723272]\n", + " [ 0.27620322 0.42054329 -0.8642078 ]\n", + " [ 0.29420486 0.15168138 -0.9436293 ]\n", + " [ 0.31386154 0.17210642 -0.93373996]\n", + " [ 0.33317489 0.19230928 -0.92304476]\n", + " [ 0.35207284 0.2122125 -0.91159781]\n", + " [ 0.37048858 0.23174234 -0.89946301]\n", + " [ 0.38836095 0.2508292 -0.88671331]\n", + " [ 0.40563427 0.26940749 -0.87343028]\n", + " [ 0.42225757 0.28741484 -0.85970417]\n", + " [ 0.27620322 0.42054329 -0.8642078 ]\n", + " [ 0.29714416 0.40344887 -0.86540994]\n", + " [ 0.31821361 0.38559384 -0.86605859]\n", + " [ 0.33931637 0.36704928 -0.86610578]\n", + " [ 0.36036036 0.34788601 -0.86551472]\n", + " [ 0.3812561 0.328176 -0.86425939]\n", + " [ 0.40191659 0.30799335 -0.86232427]\n", + " [ 0.42225757 0.28741484 -0.85970417]\n", + " [ 0.15642499 0.28568512 -0.94547091]\n", + " [ 0.18186065 0.262178 -0.94772855]\n", + " [ 0.2076184 0.23783624 -0.94885643]\n", + " [ 0.23353356 0.21278483 -0.94878063]\n", + " [ 0.25944302 0.18715763 -0.94744992]\n", + " [ 0.28518525 0.16109798 -0.94483692]\n", + " [ 0.1558353 0.30230194 -0.94038763]\n", + " [ 0.17918483 0.32612587 -0.92818894]\n", + " [ 0.20227153 0.34928725 -0.9149233 ]\n", + " [ 0.22497145 0.37165468 -0.90070009]\n", + " [ 0.24716945 0.3931016 -0.8856514 ]\n", + " [ 0.26875936 0.41350377 -0.86993278]\n", + " [ 0.30274155 0.16068241 -0.93942999]\n", + " [ 0.32661132 0.18557568 -0.92676141]\n", + " [ 0.34989337 0.21005774 -0.91293504]\n", + " [ 0.37246249 0.23399126 -0.89806447]\n", + " [ 0.39420605 0.25724809 -0.88228397]\n", + " [ 0.4150236 0.27970891 -0.86574727]\n", + " [ 0.285253 0.4131335 -0.86484186]\n", + " [ 0.31101719 0.39166065 -0.86595049]\n", + " [ 0.3368795 0.36911615 -0.86617866]\n", + " [ 0.3626692 0.34563041 -0.86545403]\n", + " [ 0.38822153 0.32133603 -0.86372866]\n", + " [ 0.41337743 0.29637055 -0.86097828]\n", + " [ 0.14755562 0.29376045 -0.94442159]\n", + " [ 0.14755562 0.29376045 -0.94442159]\n", + " [ 0.42213297 0.28742526 -0.85976187]\n", + " [ 0.42213297 0.28742526 -0.85976187]\n", + " [ 0.16473566 0.29426148 -0.94142039]\n", + " [ 0.18815861 0.31819349 -0.92916588]\n", + " [ 0.21129709 0.34147648 -0.91583151]\n", + " [ 0.2340267 0.36397912 -0.90152687]\n", + " [ 0.25623206 0.38557558 -0.886384 ]\n", + " [ 0.27780702 0.40614291 -0.87055798]\n", + " [ 0.19024885 0.27084257 -0.94363641]\n", + " [ 0.21385151 0.29505155 -0.93124224]\n", + " [ 0.23710943 0.31865055 -0.91773686]\n", + " [ 0.25989714 0.34150798 -0.90323074]\n", + " [ 0.28209884 0.36349926 -0.88785614]\n", + " [ 0.30360871 0.38450444 -0.87176722]\n", + " [ 0.21606869 0.24657313 -0.94473066]\n", + " [ 0.2398081 0.27101558 -0.93222456]\n", + " [ 0.26314389 0.29488909 -0.91858354]\n", + " [ 0.28594988 0.31806108 -0.90391914]\n", + " [ 0.30811032 0.34040715 -0.88836423]\n", + " [ 0.32952015 0.3618092 -0.87207257]\n", + " [ 0.24203003 0.22157769 -0.94462945]\n", + " [ 0.26586191 0.24620919 -0.93203996]\n", + " [ 0.28923275 0.27031544 -0.9182995 ]\n", + " [ 0.31201611 0.29376247 -0.90352064]\n", + " [ 0.33409679 0.31642526 -0.88783692]\n", + " [ 0.35537085 0.33818629 -0.87140208]\n", + " [ 0.26796932 0.19598963 -0.94328178]\n", + " [ 0.29184834 0.22076438 -0.93063829]\n", + " [ 0.31521078 0.24506049 -0.9168356 ]\n", + " [ 0.33793043 0.26874248 -0.90198698]\n", + " [ 0.35989297 0.29168413 -0.88622651]\n", + " [ 0.38099592 0.31376759 -0.869708 ]\n", + " [ 0.2937247 0.16995189 -0.94066049]\n", + " [ 0.31760499 0.19482271 -0.92799309]\n", + " [ 0.3409156 0.21926431 -0.91416613]\n", + " [ 0.36353099 0.24313977 -0.89929321]\n", + " [ 0.38533806 0.26632145 -0.88350861]\n", + " [ 0.40623583 0.2886905 -0.86696612]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:fp_optics: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:cartToSphere: vec: [[0.70197577 0.2534125 0.66559155]\n", + " [0.69405654 0.232884 0.68121257]\n", + " [0.68534679 0.21184547 0.69672181]\n", + " [0.67586558 0.19036862 0.7120151 ]\n", + " [0.66563627 0.16852783 0.72699844]\n", + " [0.65468694 0.14640051 0.74158742]\n", + " [0.64305104 0.12406733 0.75570673]\n", + " [0.63076788 0.10161194 0.76928987]\n", + " [0.70197577 0.2534125 0.66559155]\n", + " [0.6849969 0.27150633 0.67606476]\n", + " [0.66708457 0.28967787 0.68635625]\n", + " [0.64829302 0.30784726 0.69638081]\n", + " [0.62868073 0.32593682 0.70606354]\n", + " [0.60831118 0.34387075 0.71533938]\n", + " [0.58725346 0.36157504 0.72415251]\n", + " [0.56558279 0.37897783 0.73245608]\n", + " [0.63076788 0.10161194 0.76928987]\n", + " [0.61260119 0.11902265 0.78137916]\n", + " [0.59356924 0.13669135 0.79308955]\n", + " [0.57372091 0.15454214 0.80433888]\n", + " [0.55311089 0.17250061 0.8150533 ]\n", + " [0.53180121 0.19049272 0.82516665]\n", + " [0.50986214 0.20844435 0.8346206 ]\n", + " [0.48737227 0.22628165 0.84336521]\n", + " [0.56558279 0.37897783 0.73245608]\n", + " [0.55622121 0.3588684 0.74955415]\n", + " [0.54621958 0.3380724 0.76638843]\n", + " [0.53559371 0.31665656 0.78285886]\n", + " [0.5243649 0.2946913 0.79887326]\n", + " [0.5125608 0.27225206 0.81434651]\n", + " [0.50021603 0.24941998 0.82920058]\n", + " [0.48737227 0.22628165 0.84336521]\n", + " [0.69856445 0.24459083 0.67244556]\n", + " [0.6883239 0.21907901 0.69153062]\n", + " [0.67691451 0.19287196 0.71034298]\n", + " [0.66437747 0.16610543 0.7287054 ]\n", + " [0.65076457 0.13892201 0.74646242]\n", + " [0.63613979 0.11147144 0.76347907]\n", + " [0.69466494 0.26121744 0.67022837]\n", + " [0.67322028 0.28345577 0.68295482]\n", + " [0.65042696 0.30573132 0.69532232]\n", + " [0.6263909 0.32790022 0.70718872]\n", + " [0.60122899 0.3498229 0.71843416]\n", + " [0.57507098 0.37136398 0.72895964]\n", + " [0.6229997 0.10924359 0.77455614]\n", + " [0.60014723 0.13076613 0.78912833]\n", + " [0.57604304 0.1526004 0.8030489 ]\n", + " [0.55078532 0.17460884 0.81617846]\n", + " [0.52448835 0.1966551 0.82839528]\n", + " [0.49728499 0.2186028 0.83959541]\n", + " [0.56165598 0.3702395 0.73990896]\n", + " [0.549751 0.34512281 0.76069974]\n", + " [0.53689965 0.31904097 0.780994 ]\n", + " [0.52313882 0.29212199 0.80061883]\n", + " [0.50851949 0.26450485 0.81941754]\n", + " [0.49310832 0.23634124 0.83724967]\n", + " [0.70189364 0.25340489 0.66568106]\n", + " [0.70189364 0.25340489 0.66568106]\n", + " [0.48749474 0.22630048 0.84328938]\n", + " [0.48749474 0.22630048 0.84328938]\n", + " [0.69129355 0.25240132 0.67705746]\n", + " [0.66973179 0.27464416 0.68994921]\n", + " [0.64682448 0.29693975 0.70245632]\n", + " [0.62267666 0.31914433 0.71443731]\n", + " [0.59740463 0.34111813 0.72577278]\n", + " [0.57113797 0.36272531 0.73636388]\n", + " [0.68094114 0.2268713 0.69631069]\n", + " [0.65907095 0.24909274 0.70963251]\n", + " [0.63586575 0.2714123 0.72250267]\n", + " [0.6114281 0.29368667 0.73478147]\n", + " [0.58587273 0.31577565 0.74635037]\n", + " [0.55932906 0.33754216 0.75711049]\n", + " [0.66943083 0.20062745 0.71526987]\n", + " [0.6472851 0.22277587 0.72896701]\n", + " [0.62381757 0.24506951 0.74215401]\n", + " [0.59912854 0.26736588 0.75469231]\n", + " [0.57333165 0.28952475 0.76646346]\n", + " [0.54655667 0.31140813 0.77736786]\n", + " [0.65680309 0.17380532 0.73375842]\n", + " [0.63441257 0.19582817 0.74777806]\n", + " [0.6107165 0.21804474 0.76123705]\n", + " [0.58581359 0.24031375 0.77399725]\n", + " [0.55981699 0.26249551 0.78593959]\n", + " [0.53285721 0.28445171 0.79696325]\n", + " [0.64310904 0.14654751 0.75162131]\n", + " [0.62050288 0.16839233 0.76591135]\n", + " [0.59661112 0.19048042 0.77959758]\n", + " [0.57153166 0.21267206 0.79254158]\n", + " [0.54537783 0.2348287 0.80462321]\n", + " [0.5182811 0.25681238 0.81574022]\n", + " [0.62841234 0.11900418 0.76872357]\n", + " [0.60561906 0.14061961 0.78323156]\n", + " [0.58156441 0.16252875 0.79709927]\n", + " [0.55634635 0.18459353 0.81018761]\n", + " [0.53007886 0.20667696 0.82237524]\n", + " [0.50289445 0.22864215 0.8335586 ]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:fp_optics: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:cartToSphere: vec: [[ 0.29380526 0.33703508 -0.89447517]\n", + " [ 0.27792952 0.35856626 -0.89117081]\n", + " [ 0.26139334 0.38020387 -0.88719701]\n", + " [ 0.24426768 0.40184695 -0.88252611]\n", + " [ 0.22662333 0.4233982 -0.87714071]\n", + " [ 0.20853113 0.4447638 -0.87103383]\n", + " [ 0.19006243 0.46585332 -0.86420886]\n", + " [ 0.17128943 0.48657998 -0.85667955]\n", + " [ 0.29380526 0.33703508 -0.89447517]\n", + " [ 0.27506965 0.32157499 -0.90604978]\n", + " [ 0.25562223 0.30565843 -0.91718602]\n", + " [ 0.23554529 0.28932851 -0.92779709]\n", + " [ 0.21492099 0.27263278 -0.93780613]\n", + " [ 0.19383157 0.25562346 -0.94714622]\n", + " [ 0.17235983 0.2383574 -0.95576035]\n", + " [ 0.15058953 0.2208959 -0.96360147]\n", + " [ 0.17128943 0.48657998 -0.85667955]\n", + " [ 0.15067522 0.4720472 -0.86860142]\n", + " [ 0.12951448 0.45684021 -0.8800699 ]\n", + " [ 0.10788588 0.44099874 -0.89099986]\n", + " [ 0.08586886 0.42456698 -0.90131538]\n", + " [ 0.06354517 0.40759468 -0.91094928]\n", + " [ 0.0409996 0.39013792 -0.91984316]\n", + " [ 0.01831998 0.3722592 -0.92794799]\n", + " [ 0.15058953 0.2208959 -0.96360147]\n", + " [ 0.13275323 0.24230539 -0.96107475]\n", + " [ 0.11444829 0.26394402 -0.95772394]\n", + " [ 0.09574257 0.28571487 -0.95351999]\n", + " [ 0.07670476 0.30752381 -0.94844372]\n", + " [ 0.05740564 0.32927825 -0.9424863 ]\n", + " [ 0.03791869 0.3508867 -0.93564988]\n", + " [ 0.01831998 0.3722592 -0.92794799]\n", + " [ 0.28690581 0.34635116 -0.89315504]\n", + " [ 0.2669939 0.37282477 -0.88865963]\n", + " [ 0.24616063 0.39935759 -0.88312992]\n", + " [ 0.22453638 0.42576899 -0.87652962]\n", + " [ 0.20225164 0.45188621 -0.86884586]\n", + " [ 0.17943809 0.4775443 -0.86008919]\n", + " [ 0.28567562 0.33042661 -0.89955972]\n", + " [ 0.26222266 0.31116681 -0.91346291]\n", + " [ 0.23778241 0.29126355 -0.92662024]\n", + " [ 0.21250618 0.27080253 -0.9388861 ]\n", + " [ 0.18654543 0.24987984 -0.95013729]\n", + " [ 0.16005297 0.22860204 -0.96027296]\n", + " [ 0.16243872 0.48025848 -0.86195444]\n", + " [ 0.13679712 0.46198817 -0.87627249]\n", + " [ 0.11041264 0.44274435 -0.88982385]\n", + " [ 0.08343116 0.42260645 -0.90246497]\n", + " [ 0.05600321 0.40166618 -0.91407216]\n", + " [ 0.02828622 0.38002945 -0.92454178]\n", + " [ 0.14294998 0.23025617 -0.96257332]\n", + " [ 0.12076685 0.25666273 -0.95892628]\n", + " [ 0.09794706 0.28331667 -0.95401155]\n", + " [ 0.07461667 0.31004363 -0.94778969]\n", + " [ 0.05090603 0.33667308 -0.94024455]\n", + " [ 0.02695152 0.36303717 -0.93138479]\n", + " [ 0.29368941 0.33705636 -0.89450519]\n", + " [ 0.29368941 0.33705636 -0.89450519]\n", + " [ 0.01846479 0.3722484 -0.92794945]\n", + " [ 0.01846479 0.3722484 -0.92794945]\n", + " [ 0.27882381 0.33973948 -0.89823959]\n", + " [ 0.25518817 0.32051508 -0.91222206]\n", + " [ 0.23058079 0.30062362 -0.92545013]\n", + " [ 0.20515249 0.28015066 -0.93777826]\n", + " [ 0.17905424 0.25919244 -0.94908317]\n", + " [ 0.15243866 0.23785583 -0.95926381]\n", + " [ 0.25873091 0.36627022 -0.89381455]\n", + " [ 0.23461284 0.34716414 -0.90798341]\n", + " [ 0.20956693 0.32732606 -0.92137905]\n", + " [ 0.18374214 0.30684111 -0.93385618]\n", + " [ 0.15728801 0.28580566 -0.94529128]\n", + " [ 0.13035702 0.26432747 -0.95558256]\n", + " [ 0.23773471 0.39286901 -0.88833335]\n", + " [ 0.21318527 0.37390863 -0.90263192]\n", + " [ 0.1877511 0.35415459 -0.91614631]\n", + " [ 0.16157924 0.33369117 -0.92873158]\n", + " [ 0.1348183 0.31261443 -0.94026392]\n", + " [ 0.10762118 0.29103265 -0.95064067]\n", + " [ 0.21596516 0.41935537 -0.88175967]\n", + " [ 0.19103365 0.40056874 -0.89613103]\n", + " [ 0.16525974 0.38093035 -0.90971495]\n", + " [ 0.1387891 0.36052321 -0.92236685]\n", + " [ 0.11177014 0.33944254 -0.93396263]\n", + " [ 0.08435679 0.31779653 -0.94439891]\n", + " [ 0.19355223 0.44555647 -0.87408064]\n", + " [ 0.16828661 0.42697141 -0.8884678 ]\n", + " [ 0.14222062 0.40748025 -0.90207158]\n", + " [ 0.11549943 0.38716447 -0.91474781]\n", + " [ 0.08827198 0.36611792 -0.92637235]\n", + " [ 0.06069365 0.34444816 -0.93684137]\n", + " [ 0.17062742 0.47130694 -0.86530691]\n", + " [ 0.14507539 0.45295007 -0.87965298]\n", + " [ 0.11876534 0.4336366 -0.89322679]\n", + " [ 0.09184284 0.41344646 -0.90588461]\n", + " [ 0.06445795 0.39247191 -0.91750258]\n", + " [ 0.03676756 0.37081935 -0.92797692]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:fp_optics: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:cartToSphere: vec: [[ 0.81749921 -0.47497287 0.32572352]\n", + " [ 0.8291088 -0.47067939 0.30172756]\n", + " [ 0.84027952 -0.46607148 0.27696155]\n", + " [ 0.85093427 -0.46114007 0.25151682]\n", + " [ 0.86100345 -0.45588057 0.2254905 ]\n", + " [ 0.8704257 -0.45029424 0.19898292]\n", + " [ 0.8791481 -0.44438878 0.17209658]\n", + " [ 0.88712641 -0.43817846 0.14493571]\n", + " [ 0.81749921 -0.47497287 0.32572352]\n", + " [ 0.80608139 -0.49844597 0.3190367 ]\n", + " [ 0.79387632 -0.52203345 0.31183565]\n", + " [ 0.78089516 -0.54561793 0.30414442]\n", + " [ 0.76715812 -0.56908456 0.29599188]\n", + " [ 0.7526944 -0.5923233 0.28740955]\n", + " [ 0.73754229 -0.61522984 0.27843064]\n", + " [ 0.72174911 -0.63770597 0.2690898 ]\n", + " [ 0.88712641 -0.43817846 0.14493571]\n", + " [ 0.87615163 -0.46235958 0.13631557]\n", + " [ 0.86424824 -0.48666495 0.1274057 ]\n", + " [ 0.85142549 -0.51097425 0.11823684]\n", + " [ 0.83770065 -0.53517421 0.10884018]\n", + " [ 0.82310005 -0.55915662 0.09924809]\n", + " [ 0.80766049 -0.5828166 0.089495 ]\n", + " [ 0.79143012 -0.60605229 0.07961777]\n", + " [ 0.72174911 -0.63770597 0.2690898 ]\n", + " [ 0.7331536 -0.63491668 0.24365264]\n", + " [ 0.74418915 -0.63156313 0.21750982]\n", + " [ 0.75477917 -0.62763058 0.19075707]\n", + " [ 0.76485541 -0.62311082 0.16349039]\n", + " [ 0.77435713 -0.61800251 0.13580846]\n", + " [ 0.78323072 -0.61231172 0.10781467]\n", + " [ 0.79143012 -0.60605229 0.07961777]\n", + " [ 0.82257219 -0.47321914 0.31533893]\n", + " [ 0.83651615 -0.46774778 0.28539929]\n", + " [ 0.84972353 -0.46179451 0.25439292]\n", + " [ 0.86206304 -0.45534893 0.22249644]\n", + " [ 0.87342172 -0.44841342 0.18989446]\n", + " [ 0.88370575 -0.44100489 0.15677641]\n", + " [ 0.81265858 -0.48517186 0.32279141]\n", + " [ 0.79813473 -0.51403323 0.31424639]\n", + " [ 0.78243834 -0.54294966 0.3049523 ]\n", + " [ 0.76560285 -0.57170849 0.29496048]\n", + " [ 0.74768204 -0.60010722 0.28432885]\n", + " [ 0.72875015 -0.62795633 0.27311914]\n", + " [ 0.88242974 -0.44872002 0.14130849]\n", + " [ 0.86835352 -0.47845578 0.13054588]\n", + " [ 0.85289088 -0.50825775 0.11937841]\n", + " [ 0.83607025 -0.53791453 0.10786331]\n", + " [ 0.81794029 -0.56722668 0.09606027]\n", + " [ 0.79857345 -0.59600233 0.0840337 ]\n", + " [ 0.72681684 -0.63648168 0.25812469]\n", + " [ 0.74055673 -0.6326851 0.22646257]\n", + " [ 0.7536653 -0.62802577 0.19383562]\n", + " [ 0.76601348 -0.62248586 0.1604204 ]\n", + " [ 0.77748939 -0.61606298 0.1263988 ]\n", + " [ 0.78799744 -0.60877152 0.09196346]\n", + " [ 0.81750187 -0.47503865 0.3256209 ]\n", + " [ 0.81750187 -0.47503865 0.3256209 ]\n", + " [ 0.79146006 -0.60599602 0.07974836]\n", + " [ 0.79146006 -0.60599602 0.07974836]\n", + " [ 0.8177413 -0.4833967 0.31245287]\n", + " [ 0.80323962 -0.51238387 0.30375794]\n", + " [ 0.78754598 -0.54142394 0.29433221]\n", + " [ 0.77069359 -0.57030282 0.28422894]\n", + " [ 0.75273611 -0.59881757 0.27350662]\n", + " [ 0.73374786 -0.62677836 0.26222695]\n", + " [ 0.83172112 -0.47803428 0.28235297]\n", + " [ 0.8172868 -0.50732922 0.27323864]\n", + " [ 0.80160944 -0.53667143 0.26345032]\n", + " [ 0.78472166 -0.56584495 0.25304428]\n", + " [ 0.76667672 -0.59464655 0.24207909]\n", + " [ 0.74754914 -0.62288578 0.23061566]\n", + " [ 0.84496496 -0.47216322 0.2511894 ]\n", + " [ 0.83060397 -0.5016902 0.24166915]\n", + " [ 0.81495539 -0.53126156 0.23153589]\n", + " [ 0.79805101 -0.56066161 0.22084645]\n", + " [ 0.77994336 -0.58968779 0.20965843]\n", + " [ 0.76070697 -0.61814905 0.19803198]\n", + " [ 0.85734128 -0.46577172 0.21914068]\n", + " [ 0.84305938 -0.49545275 0.20923064]\n", + " [ 0.82745222 -0.52517938 0.19876981]\n", + " [ 0.81055054 -0.55473731 0.18781464]\n", + " [ 0.79240573 -0.58392498 0.17642215]\n", + " [ 0.77309194 -0.61255073 0.16465252]\n", + " [ 0.86873697 -0.45886172 0.18639205]\n", + " [ 0.85453951 -0.48861849 0.17610845]\n", + " [ 0.83898617 -0.51842662 0.1653362 ]\n", + " [ 0.82210646 -0.54807337 0.15413158]\n", + " [ 0.80395049 -0.57735823 0.14255205]\n", + " [ 0.78459173 -0.60608913 0.130659 ]\n", + " [ 0.87905799 -0.4514502 0.15313316]\n", + " [ 0.86494949 -0.48120503 0.14249245]\n", + " [ 0.84946135 -0.51102142 0.13142499]\n", + " [ 0.83262218 -0.54068778 0.11998763]\n", + " [ 0.81448094 -0.57000442 0.10823936]\n", + " [ 0.79511034 -0.59877934 0.09624371]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:fp_optics: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:cartToSphere: vec: [[-0.18958728 0.54919447 -0.81390546]\n", + " [-0.21595751 0.54740219 -0.80852532]\n", + " [-0.24272939 0.54502858 -0.80251248]\n", + " [-0.26977544 0.542075 -0.79584917]\n", + " [-0.29697368 0.53854496 -0.78852772]\n", + " [-0.32420635 0.5344448 -0.78055045]\n", + " [-0.35135921 0.52978441 -0.77192952]\n", + " [-0.37832133 0.52457784 -0.76268673]\n", + " [-0.18958728 0.54919447 -0.81390546]\n", + " [-0.18832517 0.52682915 -0.82884539]\n", + " [-0.18704996 0.50356416 -0.84346633]\n", + " [-0.18574187 0.47948136 -0.85766986]\n", + " [-0.18438697 0.45466481 -0.87136752]\n", + " [-0.18297654 0.42920205 -0.88448018]\n", + " [-0.18150642 0.40318493 -0.89693775]\n", + " [-0.1799764 0.37670994 -0.90867933]\n", + " [-0.37832133 0.52457784 -0.76268673]\n", + " [-0.37890459 0.50121676 -0.77795441]\n", + " [-0.37919877 0.47697351 -0.79290893]\n", + " [-0.37918533 0.45192278 -0.80745543]\n", + " [-0.37884976 0.42614454 -0.82150696]\n", + " [-0.37818161 0.39972534 -0.83498402]\n", + " [-0.37717468 0.37275883 -0.84781491]\n", + " [-0.37582718 0.34534537 -0.85993634]\n", + " [-0.1799764 0.37670994 -0.90867933]\n", + " [-0.20740766 0.37333755 -0.90421299]\n", + " [-0.23521942 0.36959088 -0.89892959]\n", + " [-0.26329158 0.3654689 -0.89281018]\n", + " [-0.29150579 0.36097433 -0.88584531]\n", + " [-0.31974429 0.356114 -0.87803554]\n", + " [-0.34788998 0.35089913 -0.86939195]\n", + " [-0.37582718 0.34534537 -0.85993634]\n", + " [-0.20102312 0.54840932 -0.8116877 ]\n", + " [-0.23363033 0.54582077 -0.80467171]\n", + " [-0.26671347 0.5423603 -0.79668641]\n", + " [-0.30004574 0.53803345 -0.7877135 ]\n", + " [-0.33341032 0.53285197 -0.77775724]\n", + " [-0.36659824 0.52683579 -0.76684404]\n", + " [-0.18912688 0.53955342 -0.82043472]\n", + " [-0.18757521 0.51152617 -0.83854428]\n", + " [-0.18598332 0.48222871 -0.85607574]\n", + " [-0.18432317 0.45181483 -0.87286214]\n", + " [-0.18257864 0.42044577 -0.88875778]\n", + " [-0.18074373 0.38829253 -0.90363744]\n", + " [-0.3785177 0.51452422 -0.76940833]\n", + " [-0.37903975 0.48529059 -0.78792253]\n", + " [-0.37910891 0.45480563 -0.80587113]\n", + " [-0.37869679 0.42321422 -0.8230908 ]\n", + " [-0.37778417 0.39067578 -0.83943526]\n", + " [-0.37636148 0.35736554 -0.85477594]\n", + " [-0.19188725 0.37537694 -0.90679184]\n", + " [-0.22577821 0.37099325 -0.90077089]\n", + " [-0.26012108 0.3660458 -0.89350294]\n", + " [-0.29469732 0.36053799 -0.88496658]\n", + " [-0.32929018 0.35448246 -0.87516293]\n", + " [-0.36368461 0.34790167 -0.86411685]\n", + " [-0.1896723 0.54911447 -0.81393963]\n", + " [-0.1896723 0.54911447 -0.81393963]\n", + " [-0.37573732 0.3454593 -0.85992985]\n", + " [-0.37573732 0.3454593 -0.85992985]\n", + " [-0.20053404 0.53880524 -0.81821453]\n", + " [-0.19912129 0.51065657 -0.83640934]\n", + " [-0.19763845 0.48123731 -0.85401973]\n", + " [-0.19605835 0.45070007 -0.87087919]\n", + " [-0.19436555 0.41920552 -0.88684202]\n", + " [-0.19255445 0.38692468 -0.90178272]\n", + " [-0.23329633 0.53610728 -0.81127172]\n", + " [-0.23226692 0.50765024 -0.82966458]\n", + " [-0.23108652 0.47792179 -0.84746078]\n", + " [-0.22972984 0.44707158 -0.86449476]\n", + " [-0.22818259 0.41525903 -0.8806206 ]\n", + " [-0.22643972 0.38265564 -0.89571185]\n", + " [-0.266529 0.53255511 -0.80333514]\n", + " [-0.26587112 0.50384028 -0.82186222]\n", + " [-0.26498641 0.47385424 -0.83978829]\n", + " [-0.26385031 0.44274431 -0.85694836]\n", + " [-0.26244855 0.41066929 -0.87319614]\n", + " [-0.26077585 0.37780159 -0.88840414]\n", + " [-0.30000637 0.5281533 -0.79438673]\n", + " [-0.29971095 0.49922901 -0.81298446]\n", + " [-0.29911715 0.46903564 -0.83098405]\n", + " [-0.29820004 0.43771899 -0.84822098]\n", + " [-0.29694446 0.40543775 -0.86454856]\n", + " [-0.29534423 0.37236535 -0.87983853]\n", + " [-0.33351201 0.52291288 -0.78443091]\n", + " [-0.33357061 0.49382594 -0.80303586]\n", + " [-0.33326294 0.46347496 -0.82105223]\n", + " [-0.3325629 0.43200494 -0.83831596]\n", + " [-0.33145379 0.39957481 -0.85468027]\n", + " [-0.32992812 0.36635891 -0.87001643]\n", + " [-0.36683674 0.51685336 -0.77349429]\n", + " [-0.36723984 0.48764987 -0.79204325]\n", + " [-0.36721209 0.45719103 -0.81001953]\n", + " [-0.36672573 0.42562167 -0.82725959]\n", + " [-0.36576222 0.39310105 -0.84361695]\n", + " [-0.36431253 0.35980424 -0.85896291]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:fp_optics: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:cartToSphere: vec: [[-0.24569949 0.82971602 0.50120164]\n", + " [-0.24426143 0.81520748 0.52514105]\n", + " [-0.24259651 0.79975153 0.54913061]\n", + " [-0.24070089 0.7833752 0.57305006]\n", + " [-0.23857308 0.76611276 0.5967865 ]\n", + " [-0.23621416 0.74800716 0.62023234]\n", + " [-0.23362801 0.72911167 0.64328386]\n", + " [-0.23082157 0.70949059 0.6658412 ]\n", + " [-0.24569949 0.82971602 0.50120164]\n", + " [-0.27370431 0.82249369 0.49858808]\n", + " [-0.3013855 0.81455421 0.4956493 ]\n", + " [-0.32863783 0.80593681 0.49240536]\n", + " [-0.35535948 0.79668861 0.48888331]\n", + " [-0.38145227 0.78686442 0.48511704]\n", + " [-0.40682229 0.77652658 0.48114664]\n", + " [-0.43138165 0.76574475 0.47701662]\n", + " [-0.23082157 0.70949059 0.6658412 ]\n", + " [-0.25979278 0.70209238 0.66300377]\n", + " [-0.2884363 0.69408643 0.65958208]\n", + " [-0.31664219 0.6855135 0.65559817]\n", + " [-0.3443077 0.67642114 0.65108114]\n", + " [-0.37133679 0.66686332 0.6460668 ]\n", + " [-0.39763822 0.65690064 0.64059768]\n", + " [-0.42312306 0.64660114 0.63472344]\n", + " [-0.43138165 0.76574475 0.47701662]\n", + " [-0.43157301 0.75099874 0.49974556]\n", + " [-0.43131454 0.73543243 0.52259632]\n", + " [-0.4305978 0.7190745 0.54545156]\n", + " [-0.42941908 0.70196238 0.56819721]\n", + " [-0.4277781 0.68414192 0.59072474]\n", + " [-0.42567754 0.66566734 0.61293199]\n", + " [-0.42312306 0.64660114 0.63472344]\n", + " [-0.24519661 0.82348466 0.51161669]\n", + " [-0.24328312 0.80506254 0.54100612]\n", + " [-0.24102462 0.78524354 0.57035052]\n", + " [-0.23841739 0.76408768 0.59943905]\n", + " [-0.23546344 0.74167424 0.62807348]\n", + " [-0.23217118 0.71810588 0.65606439]\n", + " [-0.25793847 0.82660935 0.50018469]\n", + " [-0.29205801 0.81727061 0.49676037]\n", + " [-0.32558649 0.80689283 0.49286652]\n", + " [-0.35833503 0.79555948 0.48855002]\n", + " [-0.39012295 0.78337144 0.4838732 ]\n", + " [-0.42077971 0.77044654 0.47891185]\n", + " [-0.24349607 0.70641021 0.66460084]\n", + " [-0.27879694 0.69692941 0.66072813]\n", + " [-0.31349563 0.68657533 0.65599909]\n", + " [-0.34739989 0.67543275 0.65046438]\n", + " [-0.38033272 0.66360106 0.64418993]\n", + " [-0.41212718 0.65119487 0.63725696]\n", + " [-0.43143677 0.75945531 0.48691883]\n", + " [-0.43136932 0.7408278 0.51487347]\n", + " [-0.43061734 0.72099552 0.54289425]\n", + " [-0.42917215 0.70002379 0.57076962]\n", + " [-0.42703316 0.67799701 0.59829987]\n", + " [-0.42420653 0.65501844 0.62529966]\n", + " [-0.24579115 0.82964461 0.50127491]\n", + " [-0.24579115 0.82964461 0.50127491]\n", + " [-0.4230469 0.64670298 0.63467045]\n", + " [-0.4230469 0.64670298 0.63467045]\n", + " [-0.25739153 0.82043811 0.51052023]\n", + " [-0.29164462 0.81107002 0.50705901]\n", + " [-0.32530437 0.80066702 0.50309979]\n", + " [-0.35818166 0.78931284 0.49868942]\n", + " [-0.39009551 0.77710847 0.4938906 ]\n", + " [-0.42087427 0.76417169 0.48878059]\n", + " [-0.25559772 0.801988 0.53989356]\n", + " [-0.29018683 0.7925507 0.53633477]\n", + " [-0.32417682 0.7820943 0.53220098]\n", + " [-0.35737813 0.77070356 0.52753852]\n", + " [-0.38960998 0.75847988 0.52241012]\n", + " [-0.42069962 0.7455409 0.51689515]\n", + " [-0.25343638 0.78214695 0.56922416]\n", + " [-0.28829869 0.7726615 0.56557765]\n", + " [-0.32255714 0.76217906 0.56128422]\n", + " [-0.35602167 0.75078543 0.55638997]\n", + " [-0.38851264 0.73858247 0.55095723]\n", + " [-0.41985826 0.72568757 0.54506567]\n", + " [-0.25090333 0.76097517 0.59830119]\n", + " [-0.28597495 0.75146363 0.5945761 ]\n", + " [-0.32043964 0.74098391 0.59013667]\n", + " [-0.35410664 0.72962247 0.58502951]\n", + " [-0.38679761 0.7174812 0.57931713]\n", + " [-0.41834267 0.70467701 0.57307916]\n", + " [-0.24799974 0.7385522 0.62692645]\n", + " [-0.28321488 0.7290377 0.6231319 ]\n", + " [-0.31782265 0.7185908 0.61855963]\n", + " [-0.35163154 0.70729785 0.61325771]\n", + " [-0.38446416 0.69526008 0.60728966]\n", + " [-0.41615249 0.68259359 0.60073546]\n", + " [-0.24473316 0.71498091 0.65491066]\n", + " [-0.2800239 0.70548715 0.65105645]\n", + " [-0.31471037 0.69510357 0.64636554]\n", + " [-0.34860049 0.6839155 0.64088789]\n", + " [-0.38151726 0.67202287 0.63468877]\n", + " [-0.41329367 0.65954071 0.62784902]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:fp_optics: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:cartToSphere: vec: [[ 0.33227596 -0.51206604 -0.7920739 ]\n", + " [ 0.33734303 -0.53393895 -0.77531212]\n", + " [ 0.3422373 -0.55581593 -0.75758979]\n", + " [ 0.34692421 -0.57758472 -0.73894485]\n", + " [ 0.35137306 -0.59914038 -0.71942184]\n", + " [ 0.35555661 -0.62038345 -0.69907358]\n", + " [ 0.35945095 -0.64121862 -0.6779629 ]\n", + " [ 0.36303565 -0.66155475 -0.65616341]\n", + " [ 0.33227596 -0.51206604 -0.7920739 ]\n", + " [ 0.35899477 -0.50197533 -0.78685673]\n", + " [ 0.3853443 -0.49157414 -0.7809383 ]\n", + " [ 0.4112263 -0.48091167 -0.77434934]\n", + " [ 0.43654727 -0.47004382 -0.76712794]\n", + " [ 0.46121865 -0.45903309 -0.75931942]\n", + " [ 0.48515728 -0.4479476 -0.75097627]\n", + " [ 0.50828673 -0.43685904 -0.74215819]\n", + " [ 0.36303565 -0.66155475 -0.65616341]\n", + " [ 0.39064417 -0.65098927 -0.65085336]\n", + " [ 0.41781112 -0.63987606 -0.64497481]\n", + " [ 0.44443417 -0.62826749 -0.63855949]\n", + " [ 0.47041945 -0.61622174 -0.63164572]\n", + " [ 0.49568101 -0.60380249 -0.6242779 ]\n", + " [ 0.52013892 -0.59107947 -0.61650674]\n", + " [ 0.54371696 -0.57812956 -0.60838974]\n", + " [ 0.50828673 -0.43685904 -0.74215819]\n", + " [ 0.51464211 -0.45713736 -0.72537503]\n", + " [ 0.52062221 -0.47755656 -0.70773741]\n", + " [ 0.52618866 -0.49800868 -0.6892843 ]\n", + " [ 0.53130816 -0.51838863 -0.67006333]\n", + " [ 0.53595183 -0.53859663 -0.65013022]\n", + " [ 0.54009493 -0.55853923 -0.62954856]\n", + " [ 0.54371696 -0.57812956 -0.60838974]\n", + " [ 0.33459633 -0.52156061 -0.78486931]\n", + " [ 0.34069581 -0.54838507 -0.76367544]\n", + " [ 0.34650079 -0.5751033 -0.74107584]\n", + " [ 0.35195316 -0.60151912 -0.71714972]\n", + " [ 0.35700275 -0.62744928 -0.69199454]\n", + " [ 0.36160695 -0.65271999 -0.66573045]\n", + " [ 0.34398234 -0.507782 -0.78983137]\n", + " [ 0.37649415 -0.49519965 -0.78296198]\n", + " [ 0.40835306 -0.48219889 -0.77506903]\n", + " [ 0.43938497 -0.46887988 -0.76621962]\n", + " [ 0.46942686 -0.45535753 -0.75649715]\n", + " [ 0.49832835 -0.44175896 -0.74600125]\n", + " [ 0.37510877 -0.65695002 -0.65399547]\n", + " [ 0.40866211 -0.64362649 -0.6471014 ]\n", + " [ 0.44144965 -0.62953177 -0.63938405]\n", + " [ 0.473295 -0.61477055 -0.63091125]\n", + " [ 0.50403973 -0.59946015 -0.62176481]\n", + " [ 0.53353829 -0.58373186 -0.61204085]\n", + " [ 0.51102331 -0.44571462 -0.73497868]\n", + " [ 0.51856473 -0.47067753 -0.71383001]\n", + " [ 0.52550385 -0.49574457 -0.69143548]\n", + " [ 0.53177732 -0.52072083 -0.66787926]\n", + " [ 0.53733192 -0.54542275 -0.64326389]\n", + " [ 0.54212386 -0.569681 -0.6177097 ]\n", + " [ 0.33238542 -0.51210676 -0.79200164]\n", + " [ 0.33238542 -0.51210676 -0.79200164]\n", + " [ 0.54362644 -0.57810784 -0.60849127]\n", + " [ 0.54362644 -0.57810784 -0.60849127]\n", + " [ 0.34623826 -0.5172169 -0.78269135]\n", + " [ 0.37887147 -0.50456293 -0.77580453]\n", + " [ 0.41084237 -0.49146407 -0.76790078]\n", + " [ 0.44197658 -0.47802055 -0.75904747]\n", + " [ 0.47211091 -0.46434773 -0.74932802]\n", + " [ 0.50109422 -0.45057448 -0.73884181]\n", + " [ 0.35245084 -0.54399334 -0.76147859]\n", + " [ 0.38538826 -0.53115503 -0.754553 ]\n", + " [ 0.41763809 -0.51780059 -0.74663309]\n", + " [ 0.44902537 -0.50402997 -0.73778724]\n", + " [ 0.47938708 -0.48995861 -0.7280993 ]\n", + " [ 0.50857149 -0.47571773 -0.71766822]\n", + " [ 0.35834749 -0.5706719 -0.73886444]\n", + " [ 0.39153 -0.55767629 -0.73191626]\n", + " [ 0.42400169 -0.54409868 -0.72400221]\n", + " [ 0.45558702 -0.53003899 -0.71519168]\n", + " [ 0.48612396 -0.51561203 -0.70556909]\n", + " [ 0.51546179 -0.50094912 -0.69523314]\n", + " [ 0.36386964 -0.59705651 -0.71492825]\n", + " [ 0.39723693 -0.58393036 -0.70797469]\n", + " [ 0.42987259 -0.57016096 -0.70009002]\n", + " [ 0.46160059 -0.555849 -0.69134419]\n", + " [ 0.4922602 -0.54110909 -0.68182171]\n", + " [ 0.52170255 -0.526072 -0.67162095]\n", + " [ 0.36896633 -0.62296419 -0.68976769]\n", + " [ 0.40245617 -0.60973475 -0.6828269 ]\n", + " [ 0.43519691 -0.59580487 -0.67499644]\n", + " [ 0.46701215 -0.58127677 -0.66634598]\n", + " [ 0.4977424 -0.56626574 -0.65695937]\n", + " [ 0.52724068 -0.55090233 -0.64693422]\n", + " [ 0.37359414 -0.64822149 -0.66350307]\n", + " [ 0.40714241 -0.63491727 -0.65659357]\n", + " [ 0.43992837 -0.62085951 -0.64884243]\n", + " [ 0.47177558 -0.6061523 -0.64031804]\n", + " [ 0.50252541 -0.59091233 -0.63110286]\n", + " [ 0.53203213 -0.57527063 -0.62129342]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:fp_optics: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:cartToSphere: vec: [[-0.29262952 -0.11683363 -0.94906157]\n", + " [-0.30505241 -0.14088934 -0.94185626]\n", + " [-0.31747578 -0.16530825 -0.93374638]\n", + " [-0.3298368 -0.18998707 -0.92472298]\n", + " [-0.34207586 -0.21482408 -0.91478671]\n", + " [-0.3541359 -0.23971767 -0.90394867]\n", + " [-0.3659623 -0.26456587 -0.89223119]\n", + " [-0.37750328 -0.28926695 -0.87966807]\n", + " [-0.29262952 -0.11683363 -0.94906157]\n", + " [-0.26800666 -0.13123954 -0.95443628]\n", + " [-0.24328141 -0.14557439 -0.95896937]\n", + " [-0.21855479 -0.15978615 -0.96265372]\n", + " [-0.19393099 -0.17382618 -0.96549222]\n", + " [-0.16951773 -0.18764958 -0.96749748]\n", + " [-0.14542695 -0.20121546 -0.96869156]\n", + " [-0.12177574 -0.21448678 -0.96910582]\n", + " [-0.37750328 -0.28926695 -0.87966807]\n", + " [-0.35196469 -0.30403653 -0.88525852]\n", + " [-0.32619333 -0.31848771 -0.89003567]\n", + " [-0.30029561 -0.33256723 -0.89399194]\n", + " [-0.27437918 -0.34622691 -0.89713042]\n", + " [-0.24855214 -0.3594238 -0.89946449]\n", + " [-0.22292338 -0.3721198 -0.90101722]\n", + " [-0.19760396 -0.38428079 -0.90182091]\n", + " [-0.12177574 -0.21448678 -0.96910582]\n", + " [-0.13215642 -0.23849547 -0.96210945]\n", + " [-0.14278919 -0.26276329 -0.95423619]\n", + " [-0.15360812 -0.2871813 -0.94547948]\n", + " [-0.16455277 -0.31164385 -0.93584213]\n", + " [-0.17556748 -0.33604793 -0.92533661]\n", + " [-0.18660061 -0.36029295 -0.91398534]\n", + " [-0.19760396 -0.38428079 -0.90182091]\n", + " [-0.29795746 -0.12732012 -0.94605018]\n", + " [-0.31319058 -0.15706074 -0.93661282]\n", + " [-0.32836175 -0.1872439 -0.92580683]\n", + " [-0.34335995 -0.21768179 -0.91362935]\n", + " [-0.35808011 -0.2481873 -0.90010094]\n", + " [-0.37242285 -0.27857273 -0.88526745]\n", + " [-0.28195484 -0.12320165 -0.95148453]\n", + " [-0.25169463 -0.14081686 -0.9575074 ]\n", + " [-0.22138056 -0.1582731 -0.9622579 ]\n", + " [-0.19120314 -0.17547939 -0.9657372 ]\n", + " [-0.16136074 -0.19235312 -0.96796849]\n", + " [-0.13206154 -0.20882059 -0.96899624]\n", + " [-0.3663648 -0.29565799 -0.88224894]\n", + " [-0.33489498 -0.31355255 -0.88855509]\n", + " [-0.30318116 -0.33091557 -0.89363084]\n", + " [-0.27142103 -0.34765622 -0.89747745]\n", + " [-0.23981367 -0.36369537 -0.90011948]\n", + " [-0.20856034 -0.37896459 -0.90160325]\n", + " [-0.12634686 -0.22487103 -0.96616225]\n", + " [-0.1392491 -0.25448492 -0.95699902]\n", + " [-0.15246365 -0.28437945 -0.94651105]\n", + " [-0.16587701 -0.31435881 -0.93469961]\n", + " [-0.17938661 -0.34423334 -0.92158768]\n", + " [-0.19289883 -0.37381883 -0.90722077]\n", + " [-0.29258801 -0.11696447 -0.94905825]\n", + " [-0.29258801 -0.11696447 -0.94905825]\n", + " [-0.19765236 -0.38415867 -0.90186233]\n", + " [-0.19765236 -0.38415867 -0.90186233]\n", + " [-0.28728153 -0.13358003 -0.948486 ]\n", + " [-0.2568903 -0.15124343 -0.95453276]\n", + " [-0.22643097 -0.16872351 -0.95930255]\n", + " [-0.19609413 -0.18592881 -0.96279674]\n", + " [-0.16607761 -0.20277637 -0.96503884]\n", + " [-0.13658861 -0.21919236 -0.96607363]\n", + " [-0.30240683 -0.16337738 -0.93907292]\n", + " [-0.27168351 -0.18115633 -0.94518276]\n", + " [-0.2408542 -0.19868408 -0.95000731]\n", + " [-0.21011017 -0.21586802 -0.95354849]\n", + " [-0.17964823 -0.23262456 -0.9558307 ]\n", + " [-0.1496729 -0.24887968 -0.95689964]\n", + " [-0.31749012 -0.19360571 -0.92828705]\n", + " [-0.28649296 -0.21146815 -0.93445332]\n", + " [-0.2553548 -0.22901271 -0.93933333]\n", + " [-0.22426828 -0.24614615 -0.94292938]\n", + " [-0.19342995 -0.26278486 -0.94526661]\n", + " [-0.16304222 -0.27885527 -0.94639155]\n", + " [-0.33242096 -0.22407685 -0.91612547]\n", + " [-0.30120952 -0.24198942 -0.92234156]\n", + " [-0.2698243 -0.25951845 -0.92727829]\n", + " [-0.23845963 -0.27657071 -0.93093805]\n", + " [-0.20731246 -0.29306331 -0.93334637]\n", + " [-0.17658396 -0.30892377 -0.93455027]\n", + " [-0.34709497 -0.25460327 -0.90260858]\n", + " [-0.31573075 -0.27253166 -0.90886775]\n", + " [-0.28416173 -0.29001217 -0.91386271]\n", + " [-0.25258396 -0.30695224 -0.91759559]\n", + " [-0.22119519 -0.32327033 -0.92009183]\n", + " [-0.19019621 -0.33889556 -0.9213985 ]\n", + " [-0.36141339 -0.284997 -0.88778211]\n", + " [-0.32995974 -0.30290649 -0.89407731]\n", + " [-0.29827199 -0.32030579 -0.89913181]\n", + " [-0.26654751 -0.33710354 -0.90294719]\n", + " [-0.23498505 -0.35321997 -0.90554828]\n", + " [-0.20378564 -0.368586 -0.90698168]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:fp_optics: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:cartToSphere: vec: [[ 0.17737017 -0.42707472 0.88664931]\n", + " [ 0.20464704 -0.42788086 0.88036217]\n", + " [ 0.23230296 -0.42835661 0.87323877]\n", + " [ 0.26021863 -0.42848131 0.86526876]\n", + " [ 0.28827642 -0.42823869 0.85645101]\n", + " [ 0.31635928 -0.42761706 0.84679423]\n", + " [ 0.34435077 -0.42660945 0.83631748]\n", + " [ 0.37213591 -0.42521387 0.82505032]\n", + " [ 0.17737017 -0.42707472 0.88664931]\n", + " [ 0.17383921 -0.45311761 0.87433652]\n", + " [ 0.17027069 -0.47870006 0.86130955]\n", + " [ 0.16668339 -0.50372758 0.84762915]\n", + " [ 0.16309974 -0.52811127 0.83336484]\n", + " [ 0.1595463 -0.55176769 0.81859477]\n", + " [ 0.15605459 -0.57461824 0.80340578]\n", + " [ 0.15266194 -0.59658816 0.78789397]\n", + " [ 0.37213591 -0.42521387 0.82505032]\n", + " [ 0.3683297 -0.45214603 0.81234056]\n", + " [ 0.36420773 -0.47858544 0.79894224]\n", + " [ 0.35979096 -0.50443368 0.78491854]\n", + " [ 0.35510429 -0.5295998 0.77034083]\n", + " [ 0.3501762 -0.55400076 0.75528788]\n", + " [ 0.34503865 -0.57756126 0.73984547]\n", + " [ 0.33972712 -0.60021254 0.72410661]\n", + " [ 0.15266194 -0.59658816 0.78789397]\n", + " [ 0.17866738 -0.59876622 0.78074131]\n", + " [ 0.20511463 -0.60041782 0.77293365]\n", + " [ 0.23187742 -0.60152309 0.76446245]\n", + " [ 0.258835 -0.60206552 0.75532877]\n", + " [ 0.28587082 -0.60203247 0.74554328]\n", + " [ 0.31287159 -0.60141583 0.73512609]\n", + " [ 0.33972712 -0.60021254 0.72410661]\n", + " [ 0.18919657 -0.42755541 0.88396891]\n", + " [ 0.22289711 -0.42832494 0.87570236]\n", + " [ 0.2570482 -0.42857705 0.86616854]\n", + " [ 0.2914327 -0.42827995 0.85536148]\n", + " [ 0.32583513 -0.4274121 0.84329732]\n", + " [ 0.36004168 -0.42596277 0.83001549]\n", + " [ 0.17592877 -0.43848352 0.88135196]\n", + " [ 0.17157347 -0.47010517 0.86577345]\n", + " [ 0.16717984 -0.50094068 0.84918157]\n", + " [ 0.16278763 -0.53082404 0.83170069]\n", + " [ 0.15844584 -0.55960155 0.81347466]\n", + " [ 0.15421484 -0.58713018 0.79466718]\n", + " [ 0.37042187 -0.43701582 0.819637 ]\n", + " [ 0.36554238 -0.4697052 0.80358932]\n", + " [ 0.36020919 -0.50155587 0.78656916]\n", + " [ 0.35446648 -0.53239723 0.76870456]\n", + " [ 0.3483667 -0.56207643 0.75014047]\n", + " [ 0.34197011 -0.59045761 0.73103779]\n", + " [ 0.16394961 -0.59752732 0.78490867]\n", + " [ 0.19613671 -0.59984471 0.77570401]\n", + " [ 0.2288612 -0.60135136 0.76550578]\n", + " [ 0.26189862 -0.60201543 0.75431196]\n", + " [ 0.29503426 -0.60181376 0.74214216]\n", + " [ 0.32806084 -0.60073348 0.72903729]\n", + " [ 0.17745067 -0.42716775 0.88658839]\n", + " [ 0.17745067 -0.42716775 0.88658839]\n", + " [ 0.33965406 -0.60014182 0.7241995 ]\n", + " [ 0.33965406 -0.60014182 0.7241995 ]\n", + " [ 0.18766654 -0.43891544 0.87871185]\n", + " [ 0.18326968 -0.47065826 0.86307185]\n", + " [ 0.17880699 -0.50160827 0.84641432]\n", + " [ 0.17431791 -0.53159927 0.82886397]\n", + " [ 0.16985079 -0.5604779 0.81056476]\n", + " [ 0.165465 -0.588102 0.79168009]\n", + " [ 0.22134607 -0.43979638 0.87039363]\n", + " [ 0.21683807 -0.47184433 0.85460177]\n", + " [ 0.21218808 -0.5030825 0.83778531]\n", + " [ 0.20743526 -0.53334387 0.82007008]\n", + " [ 0.2026269 -0.56247573 0.80160052]\n", + " [ 0.19782023 -0.59033819 0.78253944]\n", + " [ 0.2554791 -0.44013887 0.86081834]\n", + " [ 0.25086932 -0.47243465 0.84490833]\n", + " [ 0.24604321 -0.503907 0.82797372]\n", + " [ 0.24104045 -0.53438782 0.81014144]\n", + " [ 0.2359084 -0.56372467 0.79155652]\n", + " [ 0.23070346 -0.59177943 0.7723814 ]\n", + " [ 0.28984854 -0.43991053 0.84998032]\n", + " [ 0.28514633 -0.47239537 0.83398692]\n", + " [ 0.28015487 -0.50404697 0.81697607]\n", + " [ 0.27491493 -0.53469619 0.79907557]\n", + " [ 0.26947488 -0.56419055 0.78043085]\n", + " [ 0.26389142 -0.59239318 0.76120407]\n", + " [ 0.32423904 -0.43908918 0.83789602]\n", + " [ 0.31945425 -0.47170271 0.82185494]\n", + " [ 0.31430885 -0.50347753 0.80481074]\n", + " [ 0.30884503 -0.53424364 0.78689166]\n", + " [ 0.30311273 -0.5638484 0.76824323]\n", + " [ 0.29716986 -0.59215567 0.74902719]\n", + " [ 0.35843691 -0.43766357 0.82460511]\n", + " [ 0.35358013 -0.47034416 0.80855269]\n", + " [ 0.34829348 -0.5021852 0.79151859]\n", + " [ 0.34262063 -0.53301617 0.77363096]\n", + " [ 0.33661336 -0.56268427 0.75503501]\n", + " [ 0.33033129 -0.59105363 0.73589187]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:fp_optics: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:cartToSphere: vec: [[ 1.41944678e-01 2.13767203e-01 -9.66517093e-01]\n", + " [ 1.24032796e-01 2.35115680e-01 -9.64020997e-01]\n", + " [ 1.05662621e-01 2.56702421e-01 -9.60697287e-01]\n", + " [ 8.69021664e-02 2.78430641e-01 -9.56516802e-01]\n", + " [ 6.78203670e-02 3.00206407e-01 -9.51460199e-01]\n", + " [ 4.84882749e-02 3.21937361e-01 -9.45518494e-01]\n", + " [ 2.89796434e-02 3.43532219e-01 -9.38693664e-01]\n", + " [ 9.37075898e-03 3.64901159e-01 -9.30999105e-01]\n", + " [ 1.41944678e-01 2.13767203e-01 -9.66517093e-01]\n", + " [ 1.19900400e-01 1.96143815e-01 -9.73217087e-01]\n", + " [ 9.77621482e-02 1.78487886e-01 -9.79073356e-01]\n", + " [ 7.56158575e-02 1.60872853e-01 -9.84074269e-01]\n", + " [ 5.35471000e-02 1.43375358e-01 -9.88218708e-01]\n", + " [ 3.16408090e-02 1.26075568e-01 -9.91515915e-01]\n", + " [ 9.98128629e-03 1.09057640e-01 -9.93985314e-01]\n", + " [-1.13475784e-02 9.24100181e-02 -9.95656377e-01]\n", + " [ 9.37075898e-03 3.64901159e-01 -9.30999105e-01]\n", + " [-1.33451573e-02 3.46548090e-01 -9.37937273e-01]\n", + " [-3.59785241e-02 3.27945039e-01 -9.44011439e-01]\n", + " [-5.84402703e-02 3.09169754e-01 -9.49209565e-01]\n", + " [-8.06439452e-02 2.90301937e-01 -9.53530985e-01]\n", + " [-1.02506112e-01 2.71422762e-01 -9.56985988e-01]\n", + " [-1.23945868e-01 2.52615164e-01 -9.59595228e-01]\n", + " [-1.44883601e-01 2.33964838e-01 -9.61389202e-01]\n", + " [-1.13475784e-02 9.24100181e-02 -9.95656377e-01]\n", + " [-3.00036310e-02 1.11839939e-01 -9.93273180e-01]\n", + " [-4.89206790e-02 1.31693993e-01 -9.90082552e-01]\n", + " [-6.80268677e-02 1.51872062e-01 -9.86056399e-01]\n", + " [-8.72497887e-02 1.72278334e-01 -9.81176666e-01]\n", + " [-1.06516259e-01 1.92820964e-01 -9.75435473e-01]\n", + " [-1.25752333e-01 2.13411561e-01 -9.68835309e-01]\n", + " [-1.44883601e-01 2.33964838e-01 -9.61389202e-01]\n", + " [ 1.34120315e-01 2.22979187e-01 -9.65552703e-01]\n", + " [ 1.11849969e-01 2.49315949e-01 -9.61941340e-01]\n", + " [ 8.89589345e-02 2.75914145e-01 -9.57056787e-01]\n", + " [ 6.55736717e-02 3.02599748e-01 -9.50859341e-01]\n", + " [ 4.18250581e-02 3.29202673e-01 -9.43332531e-01]\n", + " [ 1.78499634e-02 3.55555432e-01 -9.34484732e-01]\n", + " [ 1.32289658e-01 2.06164142e-01 -9.69533802e-01]\n", + " [ 1.05197418e-01 1.84533142e-01 -9.77180138e-01]\n", + " [ 7.80495607e-02 1.62925738e-01 -9.83546374e-01]\n", + " [ 5.10037984e-02 1.41481688e-01 -9.88626089e-01]\n", + " [ 2.42164921e-02 1.20348630e-01 -9.92436279e-01]\n", + " [-2.15734655e-03 9.96832787e-02 -9.95016879e-01]\n", + " [-4.70692486e-04 3.56862191e-01 -9.34156922e-01]\n", + " [-2.82672052e-02 3.34191063e-01 -9.42081365e-01]\n", + " [-5.58511098e-02 3.11221594e-01 -9.48694773e-01]\n", + " [-8.30621124e-02 2.88099743e-01 -9.53991207e-01]\n", + " [-1.09746549e-01 2.64974981e-01 -9.57989538e-01]\n", + " [-1.35756089e-01 2.42001060e-01 -9.60731894e-01]\n", + " [-1.93726897e-02 1.00879597e-01 -9.94710011e-01]\n", + " [-4.24220923e-02 1.24992625e-01 -9.91250327e-01]\n", + " [-6.57923174e-02 1.49642628e-01 -9.86548759e-01]\n", + " [-8.93503090e-02 1.74651429e-01 -9.80567897e-01]\n", + " [-1.12961340e-01 1.99849887e-01 -9.73293254e-01]\n", + " [-1.36489060e-01 2.25076568e-01 -9.64733784e-01]\n", + " [ 1.41809156e-01 2.13779556e-01 -9.66534254e-01]\n", + " [ 1.41809156e-01 2.13779556e-01 -9.66534254e-01]\n", + " [-1.44747786e-01 2.33958117e-01 -9.61411295e-01]\n", + " [-1.44747786e-01 2.33958117e-01 -9.61411295e-01]\n", + " [ 1.24564399e-01 2.15332103e-01 -9.68563780e-01]\n", + " [ 9.73793555e-02 1.93596373e-01 -9.76236501e-01]\n", + " [ 7.01545179e-02 1.71862224e-01 -9.82619825e-01]\n", + " [ 4.30480463e-02 1.50269330e-01 -9.87707444e-01]\n", + " [ 1.62164466e-02 1.28964911e-01 -9.91516555e-01]\n", + " [-1.01854129e-02 1.08105189e-01 -9.94087283e-01]\n", + " [ 1.02202716e-01 2.41588728e-01 -9.64981602e-01]\n", + " [ 7.47886064e-02 2.19584690e-01 -9.72722585e-01]\n", + " [ 4.73801014e-02 1.97522022e-01 -9.79152785e-01]\n", + " [ 2.01366644e-02 1.75540532e-01 -9.84266243e-01]\n", + " [-6.78489218e-03 1.53786447e-01 -9.88080814e-01]\n", + " [-3.32303208e-02 1.32414317e-01 -9.90637267e-01]\n", + " [ 7.92381161e-02 2.68121094e-01 -9.60121034e-01]\n", + " [ 5.16459966e-02 2.45890702e-01 -9.67920686e-01]\n", + " [ 2.41059104e-02 2.23543958e-01 -9.74395712e-01]\n", + " [-3.22155982e-03 2.01221475e-01 -9.79540474e-01]\n", + " [-3.01796017e-02 1.79069119e-01 -9.83373501e-01]\n", + " [-5.66149536e-02 1.57239991e-01 -9.85936272e-01]\n", + " [ 5.57975690e-02 2.94755526e-01 -9.53942247e-01]\n", + " [ 2.80801114e-02 2.72341329e-01 -9.61790886e-01]\n", + " [ 4.62133995e-04 2.49754807e-01 -9.68309002e-01]\n", + " [-2.68951108e-02 2.27137964e-01 -9.73491139e-01]\n", + " [-5.38352543e-02 2.04637095e-01 -9.77356345e-01]\n", + " [-8.02063684e-02 1.82404563e-01 -9.79946689e-01]\n", + " [ 3.20125449e-02 3.21322413e-01 -9.46428605e-01]\n", + " [ 4.22401100e-03 2.98768223e-01 -9.54316356e-01]\n", + " [-2.34169290e-02 2.75987118e-01 -9.60876037e-01]\n", + " [-5.07489799e-02 2.53122819e-01 -9.66102158e-01]\n", + " [-7.76166880e-02 2.30322732e-01 -9.70013963e-01]\n", + " [-1.03869681e-01 2.07739333e-01 -9.72653823e-01]\n", + " [ 8.02041757e-03 3.47654729e-01 -9.37588322e-01]\n", + " [-1.97838400e-02 3.25005904e-01 -9.45505030e-01]\n", + " [-4.73923528e-02 3.02077051e-01 -9.52104732e-01]\n", + " [-7.46444570e-02 2.79013594e-01 -9.57381648e-01]\n", + " [-1.01385984e-01 2.55964445e-01 -9.61354818e-01]\n", + " [-1.27468113e-01 2.33082928e-01 -9.64066506e-01]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:fp_optics: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:cartToSphere: vec: [[0.55674696 0.38591313 0.73559764]\n", + " [0.54731239 0.3658616 0.75272468]\n", + " [0.53724858 0.34511481 0.76958413]\n", + " [0.52657151 0.32373934 0.78607588]\n", + " [0.51530272 0.30180536 0.80210762]\n", + " [0.50347016 0.27938809 0.81759409]\n", + " [0.49110868 0.25656843 0.83245715]\n", + " [0.47826016 0.23343283 0.84662644]\n", + " [0.55674696 0.38591313 0.73559764]\n", + " [0.53435446 0.40277397 0.74312747]\n", + " [0.51155404 0.41917225 0.75007139]\n", + " [0.4884402 0.43504668 0.75641296]\n", + " [0.46511214 0.45033936 0.76214511]\n", + " [0.44167355 0.46499526 0.76727041]\n", + " [0.41823291 0.47896146 0.77180124]\n", + " [0.39490403 0.49218644 0.77575983]\n", + " [0.47826016 0.23343283 0.84662644]\n", + " [0.45514326 0.25098465 0.85431336]\n", + " [0.43169273 0.26825181 0.86120982]\n", + " [0.40800715 0.28516929 0.86729963]\n", + " [0.38418776 0.30167684 0.87257713]\n", + " [0.36033768 0.31771919 0.8770469 ]\n", + " [0.3365621 0.33324551 0.88072321]\n", + " [0.3129695 0.34820842 0.88362944]\n", + " [0.39490403 0.49218644 0.77575983]\n", + " [0.38424227 0.47372502 0.79242822]\n", + " [0.3731923 0.45443828 0.80883457]\n", + " [0.36177249 0.43439816 0.82487508]\n", + " [0.35000717 0.41367798 0.84045554]\n", + " [0.3379266 0.39235332 0.85549079]\n", + " [0.32556688 0.37050275 0.86990454]\n", + " [0.3129695 0.34820842 0.88362944]\n", + " [0.55263556 0.37731885 0.74311804]\n", + " [0.54064688 0.35226842 0.76394235]\n", + " [0.5277285 0.32623943 0.78426428]\n", + " [0.51391775 0.29935947 0.80391072]\n", + " [0.49926612 0.27176708 0.82272474]\n", + " [0.48384073 0.24361356 0.84056563]\n", + " [0.54700827 0.39325026 0.73901028]\n", + " [0.51927722 0.41361246 0.74784751]\n", + " [0.49102686 0.4332187 0.75578713]\n", + " [0.46243787 0.45196096 0.76281224]\n", + " [0.4337012 0.46973786 0.76892757]\n", + " [0.40501872 0.48645258 0.77416001]\n", + " [0.46827302 0.24119568 0.85002648]\n", + " [0.4397043 0.262524 0.85891867]\n", + " [0.41073197 0.2833595 0.86660639]\n", + " [0.38154139 0.30358924 0.87307488]\n", + " [0.35232239 0.32311141 0.87833248]\n", + " [0.32326992 0.34183395 0.88240927]\n", + " [0.39038384 0.48419886 0.78304018]\n", + " [0.37705429 0.46100719 0.80330719]\n", + " [0.36315905 0.43664728 0.82307634]\n", + " [0.34874039 0.41125352 0.84217022]\n", + " [0.33385406 0.38496509 0.86043207]\n", + " [0.31856875 0.35792815 0.87772512]\n", + " [0.55664 0.38590419 0.73568326]\n", + " [0.55664 0.38590419 0.73568326]\n", + " [0.31309318 0.34823517 0.88357508]\n", + " [0.31309318 0.34823517 0.88357508]\n", + " [0.54296635 0.38469512 0.74645644]\n", + " [0.51513082 0.40515221 0.75530916]\n", + " [0.48677899 0.42486699 0.76323932]\n", + " [0.45809197 0.4437317 0.77022979]\n", + " [0.42926069 0.46164562 0.77628512]\n", + " [0.4004866 0.47851286 0.78143197]\n", + " [0.53088359 0.3597212 0.76730912]\n", + " [0.50278831 0.38042239 0.77619761]\n", + " [0.47418837 0.40042105 0.78409717]\n", + " [0.44526626 0.41960963 0.79099034]\n", + " [0.416213 0.43788894 0.79688143]\n", + " [0.38722877 0.45516563 0.80179681]\n", + " [0.51788932 0.33375518 0.78765356]\n", + " [0.48958886 0.35466403 0.79656523]\n", + " [0.46079995 0.37491258 0.80442772]\n", + " [0.4317065 0.39439275 0.81122368]\n", + " [0.40249968 0.41300607 0.81695777]\n", + " [0.37337839 0.43066111 0.82165661]\n", + " [0.50402142 0.3069243 0.80731647]\n", + " [0.47557203 0.32800385 0.81623815]\n", + " [0.44665483 0.34846863 0.82405648]\n", + " [0.41745488 0.36820945 0.83075461]\n", + " [0.38816336 0.38712763 0.8363381 ]\n", + " [0.35897788 0.40513268 0.84083434]\n", + " [0.48933202 0.27936662 0.82614071]\n", + " [0.46079171 0.30057875 0.83505893]\n", + " [0.43180839 0.32122543 0.84282604]\n", + " [0.40256771 0.34119594 0.84942602]\n", + " [0.37326055 0.36039062 0.85486558]\n", + " [0.34408329 0.37871888 0.85917327]\n", + " [0.47388874 0.251233 0.84398545]\n", + " [0.44531687 0.27253817 0.85288677]\n", + " [0.41633051 0.29333097 0.86059622]\n", + " [0.38711524 0.31349902 0.8670987 ]\n", + " [0.35786121 0.33294112 0.87240218]\n", + " [0.32876371 0.35156572 0.87653635]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:fp_optics: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:cartToSphere: vec: [[ 2.77130783e-01 4.28138973e-01 -8.60171814e-01]\n", + " [ 2.58318429e-01 4.47145426e-01 -8.56348385e-01]\n", + " [ 2.38820699e-01 4.66120748e-01 -8.51877997e-01]\n", + " [ 2.18720373e-01 4.84973147e-01 -8.46736349e-01]\n", + " [ 1.98099973e-01 5.03615039e-01 -8.40909206e-01]\n", + " [ 1.77042019e-01 5.21962900e-01 -8.34392506e-01]\n", + " [ 1.55629497e-01 5.39937291e-01 -8.27192349e-01]\n", + " [ 1.33946189e-01 5.57463131e-01 -8.19324890e-01]\n", + " [ 2.77130783e-01 4.28138973e-01 -8.60171814e-01]\n", + " [ 2.61049909e-01 4.11067366e-01 -8.73428054e-01]\n", + " [ 2.44312666e-01 3.93420884e-01 -8.86302053e-01]\n", + " [ 2.26991480e-01 3.75247828e-01 -8.98701249e-01]\n", + " [ 2.09158377e-01 3.56601480e-01 -9.10542782e-01]\n", + " [ 1.90885197e-01 3.37540359e-01 -9.21753409e-01]\n", + " [ 1.72244118e-01 3.18128293e-01 -9.32269464e-01]\n", + " [ 1.53308089e-01 2.98434258e-01 -9.42036954e-01]\n", + " [ 1.33946189e-01 5.57463131e-01 -8.19324890e-01]\n", + " [ 1.15910768e-01 5.41089393e-01 -8.32938751e-01]\n", + " [ 9.74112053e-02 5.23947387e-01 -8.46162037e-01]\n", + " [ 7.85169041e-02 5.06081660e-01 -8.58904214e-01]\n", + " [ 5.92978360e-02 4.87541831e-01 -8.71083653e-01]\n", + " [ 3.98258112e-02 4.68383878e-01 -8.82627015e-01]\n", + " [ 2.01751725e-02 4.48670974e-01 -8.93469261e-01]\n", + " [ 4.22733296e-04 4.28473625e-01 -9.03554190e-01]\n", + " [ 1.53308089e-01 2.98434258e-01 -9.42036954e-01]\n", + " [ 1.32617625e-01 3.17118300e-01 -9.39067915e-01]\n", + " [ 1.11409063e-01 3.35909004e-01 -9.35282397e-01]\n", + " [ 8.97615588e-02 3.54718070e-01 -9.30654583e-01]\n", + " [ 6.77552463e-02 3.73460540e-01 -9.25168337e-01]\n", + " [ 4.54725917e-02 3.92053830e-01 -9.18817739e-01]\n", + " [ 2.29990315e-02 4.10417473e-01 -9.11607669e-01]\n", + " [ 4.22733296e-04 4.28473625e-01 -9.03554190e-01]\n", + " [ 2.68963758e-01 4.36366376e-01 -8.58628489e-01]\n", + " [ 2.45434454e-01 4.59651882e-01 -8.53511614e-01]\n", + " [ 2.20958066e-01 4.82799028e-01 -8.47397564e-01]\n", + " [ 1.95686626e-01 5.05644838e-01 -8.40255939e-01]\n", + " [ 1.69772104e-01 5.28035545e-01 -8.32079261e-01]\n", + " [ 1.43367602e-01 5.49826694e-01 -8.22882943e-01]\n", + " [ 2.70141189e-01 4.20834289e-01 -8.65980507e-01]\n", + " [ 2.49980409e-01 3.99519007e-01 -8.81983196e-01]\n", + " [ 2.28905855e-01 3.77387528e-01 -8.97318652e-01]\n", + " [ 2.07050301e-01 3.54535860e-01 -9.11830301e-01]\n", + " [ 1.84546064e-01 3.31071740e-01 -9.25383301e-01]\n", + " [ 1.61526328e-01 3.07114835e-01 -9.37864448e-01]\n", + " [ 1.26219033e-01 5.50361943e-01 -8.25330533e-01]\n", + " [ 1.03794657e-01 5.29771623e-01 -8.41765227e-01]\n", + " [ 8.07419504e-02 5.08071215e-01 -8.57522232e-01]\n", + " [ 5.71894191e-02 4.85349900e-01 -8.72447617e-01]\n", + " [ 3.32693397e-02 4.61710832e-01 -8.86406373e-01]\n", + " [ 9.11962922e-03 4.37273383e-01 -8.99282392e-01]\n", + " [ 1.44421195e-01 3.06629616e-01 -9.40808587e-01]\n", + " [ 1.18705209e-01 3.29612505e-01 -9.36624082e-01]\n", + " [ 9.22895221e-02 3.52667309e-01 -9.31186562e-01]\n", + " [ 6.53211680e-02 3.75636301e-01 -9.24462284e-01]\n", + " [ 3.79520347e-02 3.98367409e-01 -9.16440424e-01]\n", + " [ 1.03405824e-02 4.20713538e-01 -9.07134605e-01]\n", + " [ 2.77013918e-01 4.28146565e-01 -8.60205678e-01]\n", + " [ 2.77013918e-01 4.28146565e-01 -8.60205678e-01]\n", + " [ 5.67640192e-04 4.28482297e-01 -9.03549998e-01]\n", + " [ 5.67640192e-04 4.28482297e-01 -9.03549998e-01]\n", + " [ 2.62022663e-01 4.29064985e-01 -8.64434707e-01]\n", + " [ 2.41680580e-01 4.07765979e-01 -8.80521098e-01]\n", + " [ 2.20442984e-01 3.85629038e-01 -8.95932551e-01]\n", + " [ 1.98442149e-01 3.62749989e-01 -9.10512580e-01]\n", + " [ 1.75809873e-01 3.39236614e-01 -9.24126295e-01]\n", + " [ 1.52679130e-01 3.15208890e-01 -9.36660258e-01]\n", + " [ 2.38310462e-01 4.52387896e-01 -8.59391247e-01]\n", + " [ 2.17485635e-01 4.31155223e-01 -8.75674124e-01]\n", + " [ 1.95816734e-01 4.09025286e-01 -8.91265461e-01]\n", + " [ 1.73434220e-01 3.86093206e-01 -9.06009165e-01]\n", + " [ 1.50468506e-01 3.62466700e-01 -9.19770145e-01]\n", + " [ 1.27052304e-01 3.38266536e-01 -9.32434160e-01]\n", + " [ 2.13667039e-01 4.75582289e-01 -8.53327535e-01]\n", + " [ 1.92404090e-01 4.54446429e-01 -8.69746578e-01]\n", + " [ 1.70347547e-01 4.32357597e-01 -8.85465201e-01]\n", + " [ 1.47626129e-01 4.09409830e-01 -9.00327783e-01]\n", + " [ 1.24369415e-01 3.85710371e-01 -9.14198971e-01]\n", + " [ 1.00710508e-01 3.61380458e-01 -9.26963623e-01]\n", + " [ 1.88243931e-01 4.98485260e-01 -8.46213134e-01]\n", + " [ 1.66585641e-01 4.77477060e-01 -8.62707877e-01]\n", + " [ 1.44183287e-01 4.55464091e-01 -8.78500792e-01]\n", + " [ 1.21164498e-01 4.32538966e-01 -8.93436740e-01]\n", + " [ 9.76588310e-02 4.08808006e-01 -9.07380167e-01]\n", + " [ 7.38004381e-02 3.84392445e-01 -9.20215162e-01]\n", + " [ 1.62192652e-01 5.20942861e-01 -8.38040619e-01]\n", + " [ 1.40180572e-01 5.00092703e-01 -8.54550581e-01]\n", + " [ 1.17473486e-01 4.78190120e-01 -8.70364400e-01]\n", + " [ 9.41988302e-02 4.55326150e-01 -8.85327441e-01]\n", + " [ 7.04869408e-02 4.31605843e-01 -8.99304168e-01]\n", + " [ 4.64734854e-02 4.07149922e-01 -9.12178248e-01]\n", + " [ 1.35666197e-01 5.42810212e-01 -8.28825529e-01]\n", + " [ 1.13341897e-01 5.22147200e-01 -8.45290433e-01]\n", + " [ 9.03717770e-02 5.00388388e-01 -8.61071660e-01]\n", + " [ 6.68839406e-02 4.77623371e-01 -8.76015099e-01]\n", + " [ 4.30100975e-02 4.53955787e-01 -8.89985548e-01]\n", + " [ 1.88875952e-02 4.29505415e-01 -9.02866744e-01]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:fp_optics: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:cartToSphere: vec: [[ 0.71520324 -0.64665235 0.26518874]\n", + " [ 0.72654597 -0.64394824 0.23971155]\n", + " [ 0.73752755 -0.64066881 0.21353356]\n", + " [ 0.74807151 -0.63679924 0.18675049]\n", + " [ 0.75810977 -0.63233107 0.15945845]\n", + " [ 0.76758188 -0.62726258 0.13175626]\n", + " [ 0.77643454 -0.62159944 0.1037475 ]\n", + " [ 0.7846219 -0.61535519 0.07554108]\n", + " [ 0.71520324 -0.64665235 0.26518874]\n", + " [ 0.69860261 -0.66837147 0.25540942]\n", + " [ 0.68151072 -0.68945096 0.24535792]\n", + " [ 0.66400414 -0.70981605 0.23507377]\n", + " [ 0.64616748 -0.72939946 0.22459745]\n", + " [ 0.62809313 -0.74814154 0.2139702 ]\n", + " [ 0.60988042 -0.76599067 0.20323428]\n", + " [ 0.59163338 -0.7829044 0.19243348]\n", + " [ 0.7846219 -0.61535519 0.07554108]\n", + " [ 0.76737929 -0.63783246 0.06556504]\n", + " [ 0.74950552 -0.6596624 0.05556073]\n", + " [ 0.73108123 -0.68076702 0.04556862]\n", + " [ 0.71219317 -0.70107881 0.03562843]\n", + " [ 0.69293392 -0.72054009 0.02577912]\n", + " [ 0.67340277 -0.73910134 0.01605955]\n", + " [ 0.65370743 -0.75671938 0.00650926]\n", + " [ 0.59163338 -0.7829044 0.19243348]\n", + " [ 0.60129039 -0.7813448 0.16718303]\n", + " [ 0.61079324 -0.77907458 0.1413309 ]\n", + " [ 0.62007045 -0.77607592 0.11497309]\n", + " [ 0.62905563 -0.77233939 0.08820927]\n", + " [ 0.63768961 -0.76786308 0.06114134]\n", + " [ 0.6459212 -0.76265223 0.03387295]\n", + " [ 0.65370743 -0.75671938 0.00650926]\n", + " [ 0.72013177 -0.64561844 0.25413985]\n", + " [ 0.73380013 -0.64192033 0.22243125]\n", + " [ 0.74684918 -0.6373425 0.18976523]\n", + " [ 0.75915017 -0.63186672 0.15631849]\n", + " [ 0.77059173 -0.62548993 0.12227319]\n", + " [ 0.7810788 -0.61822581 0.08782231]\n", + " [ 0.70806934 -0.65618754 0.26087493]\n", + " [ 0.68738328 -0.68238694 0.2487012 ]\n", + " [ 0.66603439 -0.70755043 0.23615796]\n", + " [ 0.6441751 -0.73155103 0.22331936]\n", + " [ 0.62197542 -0.75427896 0.21026136]\n", + " [ 0.59962033 -0.77564288 0.19706235]\n", + " [ 0.77715973 -0.62525186 0.07129422]\n", + " [ 0.75559301 -0.65237496 0.0590433 ]\n", + " [ 0.73315772 -0.67844709 0.04678999]\n", + " [ 0.7100111 -0.70333956 0.03460776]\n", + " [ 0.68632366 -0.72694601 0.02256844]\n", + " [ 0.66228164 -0.74917795 0.0107438 ]\n", + " [ 0.59592098 -0.78225386 0.18154088]\n", + " [ 0.60766341 -0.77986672 0.15017683]\n", + " [ 0.61910268 -0.77639357 0.11800381]\n", + " [ 0.6301143 -0.77181362 0.08520391]\n", + " [ 0.64058939 -0.76612329 0.05196467]\n", + " [ 0.65043715 -0.75933529 0.01847755]\n", + " [ 0.7151867 -0.64671933 0.26506998]\n", + " [ 0.7151867 -0.64671933 0.26506998]\n", + " [ 0.65374911 -0.75668228 0.0066352 ]\n", + " [ 0.65374911 -0.75668228 0.0066352 ]\n", + " [ 0.71298518 -0.65512371 0.24993011]\n", + " [ 0.69220349 -0.68142446 0.23772891]\n", + " [ 0.67074022 -0.70668365 0.22517943]\n", + " [ 0.64874801 -0.73077418 0.2123561 ]\n", + " [ 0.62639735 -0.7535861 0.19933475]\n", + " [ 0.60387481 -0.77502733 0.18619306]\n", + " [ 0.72657991 -0.65151891 0.21818512]\n", + " [ 0.7055563 -0.67807576 0.20592129]\n", + " [ 0.68380264 -0.70357797 0.19337006]\n", + " [ 0.6614719 -0.72789837 0.180607 ]\n", + " [ 0.63873472 -0.75092737 0.1677082 ]\n", + " [ 0.61577973 -0.77257215 0.15475012]\n", + " [ 0.73956892 -0.64701705 0.18549056]\n", + " [ 0.71834625 -0.67378398 0.17318724]\n", + " [ 0.69635182 -0.6994876 0.16065876]\n", + " [ 0.67373911 -0.7240007 0.14798175]\n", + " [ 0.65067826 -0.74721478 0.13523264]\n", + " [ 0.62735767 -0.76903786 0.12248726]\n", + " [ 0.75182374 -0.64159953 0.15202337]\n", + " [ 0.73044525 -0.6685299 0.13970511]\n", + " [ 0.70825953 -0.69439327 0.12722589]\n", + " [ 0.68542107 -0.7190622 0.11466259]\n", + " [ 0.66209961 -0.74242944 0.10209135]\n", + " [ 0.63848252 -0.76440447 0.08958724]\n", + " [ 0.76323347 -0.63526269 0.11796606]\n", + " [ 0.74174364 -0.66230855 0.10565868]\n", + " [ 0.71941683 -0.68828963 0.09325669]\n", + " [ 0.69640878 -0.71307806 0.08083617]\n", + " [ 0.67288934 -0.7365674 0.06847193]\n", + " [ 0.64904498 -0.75866852 0.05623782]\n", + " [ 0.77370359 -0.62801952 0.08351187]\n", + " [ 0.75214859 -0.65513139 0.07124164]\n", + " [ 0.72973227 -0.68118743 0.05894482]\n", + " [ 0.70661159 -0.70605919 0.04669567]\n", + " [ 0.68295683 -0.72964039 0.03456687]\n", + " [ 0.65895419 -0.75184255 0.02263073]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:fp_optics: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:cartToSphere: vec: [[ 0.56040342 -0.70064196 -0.44164335]\n", + " [ 0.56086664 -0.68560833 -0.46407956]\n", + " [ 0.56079537 -0.66981855 -0.48667408]\n", + " [ 0.56017399 -0.65330394 -0.50931234]\n", + " [ 0.55899318 -0.63610397 -0.53188191]\n", + " [ 0.55724872 -0.61826596 -0.55427527]\n", + " [ 0.55494099 -0.59984503 -0.57639088]\n", + " [ 0.55207484 -0.58090405 -0.59813365]\n", + " [ 0.56040342 -0.70064196 -0.44164335]\n", + " [ 0.53794452 -0.71413968 -0.44790648]\n", + " [ 0.51459663 -0.72731667 -0.45409334]\n", + " [ 0.49043232 -0.74009262 -0.46015112]\n", + " [ 0.46553209 -0.75239345 -0.46603001]\n", + " [ 0.43998242 -0.76415191 -0.47168562]\n", + " [ 0.41387495 -0.77530783 -0.47707996]\n", + " [ 0.38730619 -0.78580829 -0.48218176]\n", + " [ 0.55207484 -0.58090405 -0.59813365]\n", + " [ 0.52879683 -0.59396139 -0.60628687]\n", + " [ 0.50461412 -0.60680891 -0.61412339]\n", + " [ 0.47960209 -0.61936732 -0.62158343]\n", + " [ 0.45383927 -0.63156463 -0.62861437]\n", + " [ 0.42740943 -0.64333515 -0.63517011]\n", + " [ 0.40040377 -0.65461873 -0.64121068]\n", + " [ 0.372922 -0.66536091 -0.64670244]\n", + " [ 0.38730619 -0.78580829 -0.48218176]\n", + " [ 0.38630137 -0.77115364 -0.50605663]\n", + " [ 0.38495817 -0.7555867 -0.52999618]\n", + " [ 0.3832658 -0.73913668 -0.55388111]\n", + " [ 0.38121714 -0.72183968 -0.57759932]\n", + " [ 0.37880887 -0.7037401 -0.60104385]\n", + " [ 0.37604196 -0.68489224 -0.62411142]\n", + " [ 0.372922 -0.66536091 -0.64670244]\n", + " [ 0.56059431 -0.69422852 -0.45142085]\n", + " [ 0.56080424 -0.67529132 -0.47904095]\n", + " [ 0.56019514 -0.65524842 -0.50678488]\n", + " [ 0.55874734 -0.63416908 -0.53444457]\n", + " [ 0.55645303 -0.61214042 -0.56182216]\n", + " [ 0.55331473 -0.58926716 -0.5887334 ]\n", + " [ 0.55072696 -0.70651105 -0.44445691]\n", + " [ 0.52259405 -0.72284877 -0.45208972]\n", + " [ 0.49319684 -0.73862436 -0.45955514]\n", + " [ 0.46268043 -0.75369879 -0.46676006]\n", + " [ 0.43120395 -0.76794828 -0.47362284]\n", + " [ 0.3989381 -0.78126506 -0.48007634]\n", + " [ 0.5420523 -0.58668334 -0.60164937]\n", + " [ 0.51290507 -0.6025564 -0.61143616]\n", + " [ 0.48247352 -0.61803455 -0.62068719]\n", + " [ 0.45090089 -0.63298228 -0.62930265]\n", + " [ 0.41834163 -0.64727854 -0.63719759]\n", + " [ 0.38496722 -0.66081494 -0.64430107]\n", + " [ 0.38700074 -0.77949772 -0.49255835]\n", + " [ 0.38554411 -0.76091977 -0.52187818]\n", + " [ 0.38356794 -0.74099991 -0.5511758 ]\n", + " [ 0.38105757 -0.71980168 -0.5802419 ]\n", + " [ 0.37800697 -0.69740705 -0.60887941]\n", + " [ 0.37441981 -0.67392034 -0.63689967]\n", + " [ 0.56033068 -0.70063848 -0.44174117]\n", + " [ 0.56033068 -0.70063848 -0.44174117]\n", + " [ 0.37302793 -0.66539303 -0.64660829]\n", + " [ 0.37302793 -0.66539303 -0.64660829]\n", + " [ 0.55095541 -0.70010738 -0.45420017]\n", + " [ 0.52271728 -0.71646673 -0.46199791]\n", + " [ 0.49320879 -0.73226928 -0.4696028 ]\n", + " [ 0.46257635 -0.7473759 -0.47691969]\n", + " [ 0.43097943 -0.76166274 -0.48386631]\n", + " [ 0.39858893 -0.77502176 -0.49037551]\n", + " [ 0.55107388 -0.6811745 -0.48199469]\n", + " [ 0.52256565 -0.69755923 -0.49024103]\n", + " [ 0.49277494 -0.71340615 -0.49822136]\n", + " [ 0.46184984 -0.72857619 -0.50583739]\n", + " [ 0.42994965 -0.74294526 -0.51300646]\n", + " [ 0.39724536 -0.75640442 -0.51966188]\n", + " [ 0.55038729 -0.66111594 -0.50990151]\n", + " [ 0.52165395 -0.6774729 -0.51856304]\n", + " [ 0.49163163 -0.69331663 -0.52688745]\n", + " [ 0.4604679 -0.70850848 -0.5347757 ]\n", + " [ 0.42832075 -0.72292427 -0.54214558]\n", + " [ 0.39536107 -0.73645414 -0.54893071]\n", + " [ 0.54887722 -0.64000089 -0.53771057]\n", + " [ 0.51996576 -0.65627651 -0.54675109]\n", + " [ 0.48976283 -0.67206865 -0.55538825]\n", + " [ 0.45841439 -0.68723939 -0.56352309]\n", + " [ 0.42607681 -0.70166488 -0.5710735 ]\n", + " [ 0.39292098 -0.71523475 -0.57797262]\n", + " [ 0.54653623 -0.61791641 -0.56522336]\n", + " [ 0.51749351 -0.63405691 -0.57460622]\n", + " [ 0.48716016 -0.64974842 -0.58352547]\n", + " [ 0.45568047 -0.66485404 -0.59188209]\n", + " [ 0.4232095 -0.67925081 -0.59959324]\n", + " [ 0.38991832 -0.69282863 -0.60659063]\n", + " [ 0.54336676 -0.5949674 -0.59225532]\n", + " [ 0.51423876 -0.61091947 -0.60194344]\n", + " [ 0.48382423 -0.62646168 -0.61111364]\n", + " [ 0.45226646 -0.64145819 -0.61966639]\n", + " [ 0.41971992 -0.65578742 -0.62751737]\n", + " [ 0.38635597 -0.66934039 -0.63459633]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:cartToSphere: vec: [[-0.32592125 0.12960689 0.93647071]\n", + " [-0.33322565 0.15478278 0.93005535]\n", + " [-0.34028911 0.18042082 0.92284975]\n", + " [-0.34708163 0.20639739 0.91484122]\n", + " [-0.35357423 0.23259396 0.90602722]\n", + " [-0.35973903 0.25889624 0.8964154 ]\n", + " [-0.36554965 0.28519348 0.88602378]\n", + " [-0.37098167 0.31137814 0.87488071]\n", + " [-0.32592125 0.12960689 0.93647071]\n", + " [-0.30082938 0.13587543 0.94394891]\n", + " [-0.27499817 0.14232903 0.95085144]\n", + " [-0.24852448 0.14891729 0.95710983]\n", + " [-0.22150652 0.15559526 0.96266556]\n", + " [-0.19404452 0.16232288 0.9674699 ]\n", + " [-0.16624135 0.16906435 0.97148395]\n", + " [-0.13820264 0.17578753 0.97467881]\n", + " [-0.37098167 0.31137814 0.87488071]\n", + " [-0.34541156 0.31971339 0.88231185]\n", + " [-0.31903941 0.327966 0.88918623]\n", + " [-0.2919554 0.33608821 0.89543663]\n", + " [-0.26425261 0.34403581 0.90100495]\n", + " [-0.23602902 0.35176764 0.90584206]\n", + " [-0.20738844 0.35924551 0.90990807]\n", + " [-0.17844038 0.36643444 0.91317295]\n", + " [-0.13820264 0.17578753 0.97467881]\n", + " [-0.14410721 0.20249615 0.96862192]\n", + " [-0.15000641 0.2295723 0.96166243]\n", + " [-0.15587098 0.25689927 0.95378562]\n", + " [-0.16167298 0.2843626 0.94498664]\n", + " [-0.16738554 0.31184852 0.93527139]\n", + " [-0.17298283 0.33924341 0.92465715]\n", + " [-0.17844038 0.36643444 0.91317295]\n", + " [-0.32904896 0.14054032 0.93379612]\n", + " [-0.33784242 0.17172413 0.92540441]\n", + " [-0.3462442 0.20347861 0.91581188]\n", + " [-0.35420054 0.23558347 0.90500962]\n", + " [-0.36166016 0.26782823 0.89301174]\n", + " [-0.36857528 0.30001033 0.87985571]\n", + " [-0.31510326 0.13239951 0.93977673]\n", + " [-0.28384047 0.14021478 0.94856439]\n", + " [-0.25156322 0.14825714 0.9564182 ]\n", + " [-0.21845172 0.15644156 0.96322629]\n", + " [-0.18469055 0.16469423 0.96889897]\n", + " [-0.15047026 0.17295081 0.97336875]\n", + " [-0.35991937 0.31492967 0.87822397]\n", + " [-0.32802979 0.32509511 0.88696653]\n", + " [-0.29502493 0.33508871 0.89480492]\n", + " [-0.26107486 0.34482763 0.90162843]\n", + " [-0.22636004 0.35423613 0.90734662]\n", + " [-0.19107402 0.36324518 0.91189015]\n", + " [-0.14087231 0.18735672 0.97213808]\n", + " [-0.14811005 0.22035263 0.96411002]\n", + " [-0.15531031 0.2537843 0.95471055]\n", + " [-0.16242112 0.2874402 0.94392664]\n", + " [-0.16939299 0.32111082 0.93176921]\n", + " [-0.17617893 0.35458724 0.91827494]\n", + " [-0.32586216 0.12971312 0.93647657]\n", + " [-0.32586216 0.12971312 0.93647657]\n", + " [-0.17852137 0.36631787 0.91320388]\n", + " [-0.17852137 0.36631787 0.91320388]\n", + " [-0.31825788 0.14329519 0.93711174]\n", + " [-0.28689947 0.15128466 0.94593956]\n", + " [-0.25451947 0.15947239 0.95382829]\n", + " [-0.22129734 0.16777414 0.96066608]\n", + " [-0.18741734 0.17611682 0.96636308]\n", + " [-0.15307019 0.18443648 0.97085153]\n", + " [-0.3269747 0.17466422 0.92875183]\n", + " [-0.29538701 0.18312422 0.93766307]\n", + " [-0.26275772 0.19170399 0.9456257 ]\n", + " [-0.22926405 0.20032144 0.95252786]\n", + " [-0.19508931 0.20890499 0.95827912]\n", + " [-0.16042492 0.2173913 0.96281092]\n", + " [-0.33532121 0.20659164 0.91917331]\n", + " [-0.30356527 0.21549075 0.92812277]\n", + " [-0.2707482 0.22443597 0.93612174]\n", + " [-0.23704495 0.23334664 0.94305834]\n", + " [-0.20263801 0.24215169 0.94884161]\n", + " [-0.16771963 0.25078751 0.9534022 ]\n", + " [-0.34324323 0.23885812 0.90836715]\n", + " [-0.311379 0.24816764 0.91730907]\n", + " [-0.27843516 0.25745409 0.92530603]\n", + " [-0.2445846 0.26663719 0.9322462 ]\n", + " [-0.2100091 0.27564528 0.9380383 ]\n", + " [-0.1749017 0.28441367 0.94261247]\n", + " [-0.35068895 0.27125369 0.89634742]\n", + " [-0.31877515 0.28094613 0.9052357 ]\n", + " [-0.28576496 0.29055014 0.91319166]\n", + " [-0.25182968 0.2999848 0.92010376]\n", + " [-0.21715047 0.30917703 0.92588079]\n", + " [-0.18192087 0.31806046 0.93045276]\n", + " [-0.35761007 0.30357577 0.88315162]\n", + " [-0.32570416 0.31362302 0.89194025]\n", + " [-0.29268745 0.32351968 0.89981613]\n", + " [-0.25873018 0.33318352 0.90666832]\n", + " [-0.224013 0.34253948 0.9124061 ]\n", + " [-0.18872951 0.35151925 0.91695986]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:fp_optics: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:fp_optics: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:cartToSphere: vec: [[-0.17958643 0.36607935 -0.9130907 ]\n", + " [-0.20701859 0.36261402 -0.90865526]\n", + " [-0.23483094 0.35878745 -0.90339692]\n", + " [-0.26290343 0.35459888 -0.89729673]\n", + " [-0.29111773 0.35005139 -0.89034515]\n", + " [-0.31935612 0.34515215 -0.88254272]\n", + " [-0.34750148 0.33991269 -0.8739005 ]\n", + " [-0.37543817 0.33434887 -0.86444029]\n", + " [-0.17958643 0.36607935 -0.9130907 ]\n", + " [-0.17798195 0.33913242 -0.92374868]\n", + " [-0.17633076 0.31197643 -0.93358351]\n", + " [-0.17464424 0.28472124 -0.94256735]\n", + " [-0.17293746 0.25747953 -0.95068235]\n", + " [-0.17122978 0.23036675 -0.95792042]\n", + " [-0.16954551 0.20350175 -0.96428282]\n", + " [-0.16791479 0.17700783 -0.96977979]\n", + " [-0.37543817 0.33434887 -0.86444029]\n", + " [-0.37362395 0.30648944 -0.87548236]\n", + " [-0.37148278 0.27844466 -0.88570261]\n", + " [-0.36902791 0.25032896 -0.89507196]\n", + " [-0.36627671 0.22225791 -0.90357224]\n", + " [-0.36325045 0.19434727 -0.91119605]\n", + " [-0.35997412 0.16671289 -0.91794632]\n", + " [-0.35647647 0.1394716 -0.92383559]\n", + " [-0.16791479 0.17700783 -0.96977979]\n", + " [-0.19418518 0.17189847 -0.96578622]\n", + " [-0.22088157 0.16669752 -0.96094915]\n", + " [-0.24787698 0.16140458 -0.95525157]\n", + " [-0.2750499 0.1560243 -0.94868539]\n", + " [-0.30228297 0.15056594 -0.94125177]\n", + " [-0.32946213 0.14504279 -0.93296157]\n", + " [-0.35647647 0.1394716 -0.92383559]\n", + " [-0.19148697 0.36452064 -0.91129438]\n", + " [-0.22537876 0.36002997 -0.90530814]\n", + " [-0.25972205 0.35499572 -0.89806597]\n", + " [-0.2942984 0.34942194 -0.88954638]\n", + " [-0.32889106 0.3433219 -0.87975039]\n", + " [-0.36328501 0.3367186 -0.86870282]\n", + " [-0.17898618 0.35435139 -0.91782299]\n", + " [-0.17698684 0.32116993 -0.93033625]\n", + " [-0.17492805 0.28778332 -0.94158427]\n", + " [-0.17283602 0.2543978 -0.95153007]\n", + " [-0.17074643 0.22122605 -0.96015868]\n", + " [-0.16870645 0.1884886 -0.96747619]\n", + " [-0.374593 0.32225166 -0.86938711]\n", + " [-0.37214835 0.2879682 -0.88237176]\n", + " [-0.3692255 0.25351983 -0.89409185]\n", + " [-0.36585472 0.21911888 -0.90450939]\n", + " [-0.36207515 0.18497847 -0.91361072]\n", + " [-0.35793434 0.15131217 -0.92140525]\n", + " [-0.17931392 0.17488135 -0.96812346]\n", + " [-0.21181514 0.16855898 -0.96266412]\n", + " [-0.24482931 0.16209786 -0.95591992]\n", + " [-0.2781306 0.15550448 -0.94787221]\n", + " [-0.31150281 0.1487958 -0.93852321]\n", + " [-0.34473728 0.14199776 -0.927897 ]\n", + " [-0.17967405 0.36597644 -0.91311471]\n", + " [-0.17967405 0.36597644 -0.91311471]\n", + " [-0.35639679 0.13958307 -0.9238495 ]\n", + " [-0.35639679 0.13958307 -0.9238495 ]\n", + " [-0.19079424 0.35284988 -0.91602103]\n", + " [-0.18876247 0.31953845 -0.92858167]\n", + " [-0.18664351 0.28602169 -0.9398701 ]\n", + " [-0.18446325 0.25250622 -0.94984942]\n", + " [-0.18225674 0.21920452 -0.95850501]\n", + " [-0.1800702 0.18633624 -0.96584343]\n", + " [-0.22467324 0.3482443 -0.91008123]\n", + " [-0.22255326 0.31460735 -0.92276338]\n", + " [-0.22026925 0.28076682 -0.93415815]\n", + " [-0.21784674 0.2469307 -0.9442288 ]\n", + " [-0.21531974 0.2133113 -0.95296154]\n", + " [-0.2127325 0.18012619 -0.96036422]\n", + " [-0.25900514 0.34311709 -0.90287707]\n", + " [-0.25680189 0.30921883 -0.91566179]\n", + " [-0.2543596 0.27512174 -0.92715113]\n", + " [-0.25170422 0.24103541 -0.93730834]\n", + " [-0.24886985 0.20717236 -0.94612019]\n", + " [-0.2459 0.17374866 -0.95359561]\n", + " [-0.29357149 0.33747295 -0.89438682]\n", + " [-0.29128978 0.30337935 -0.90725478]\n", + " [-0.28869549 0.26909437 -0.91882704]\n", + " [-0.28581557 0.23482898 -0.92906663]\n", + " [-0.28268509 0.20079613 -0.93796058]\n", + " [-0.27934798 0.16721081 -0.94551851]\n", + " [-0.32815563 0.3313258 -0.88461127]\n", + " [-0.32580065 0.29710465 -0.89754263]\n", + " [-0.32306118 0.26270193 -0.90918599]\n", + " [-0.31996551 0.22832963 -0.91950402]\n", + " [-0.31655028 0.19420094 -0.92848366]\n", + " [-0.31286068 0.16053015 -0.93613475]\n", + " [-0.3625426 0.32469916 -0.87357502]\n", + " [-0.3601202 0.29041963 -0.88654942]\n", + " [-0.35724357 0.2559705 -0.89825171]\n", + " [-0.35394247 0.22156413 -0.90864408]\n", + " [-0.35025537 0.18741371 -0.91771307]\n", + " [-0.34622918 0.15373298 -0.92546828]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:fp_optics: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:cartToSphere: vec: [[-0.26652617 -0.54762569 -0.79313927]\n", + " [-0.25682326 -0.52830231 -0.8092827 ]\n", + " [-0.24686562 -0.50810689 -0.82515741]\n", + " [-0.23667085 -0.48711214 -0.84065967]\n", + " [-0.22626147 -0.46539297 -0.8556957 ]\n", + " [-0.21566495 -0.44302725 -0.87018129]\n", + " [-0.20491339 -0.42009653 -0.88404152]\n", + " [-0.19404319 -0.39668643 -0.89721074]\n", + " [-0.26652617 -0.54762569 -0.79313927]\n", + " [-0.291396 -0.53744413 -0.79135465]\n", + " [-0.31654189 -0.52652306 -0.78903403]\n", + " [-0.34184542 -0.51489926 -0.78614277]\n", + " [-0.36719274 -0.50261153 -0.78265647]\n", + " [-0.39247387 -0.48970122 -0.77856083]\n", + " [-0.41758228 -0.47621304 -0.77385153]\n", + " [-0.44241485 -0.46219555 -0.76853391]\n", + " [-0.19404319 -0.39668643 -0.89721074]\n", + " [-0.21928081 -0.38477068 -0.89658655]\n", + " [-0.24485733 -0.37229933 -0.89523075]\n", + " [-0.27066054 -0.35930531 -0.89310837]\n", + " [-0.29658095 -0.34582515 -0.89019364]\n", + " [-0.32251016 -0.33189994 -0.88647032]\n", + " [-0.34834022 -0.317576 -0.8819323 ]\n", + " [-0.37396414 -0.30290486 -0.87658398]\n", + " [-0.44241485 -0.46219555 -0.76853391]\n", + " [-0.43406818 -0.44140036 -0.78533466]\n", + " [-0.4252097 -0.41983195 -0.80183406]\n", + " [-0.41585518 -0.39755707 -0.81793205]\n", + " [-0.40602499 -0.37464679 -0.83353674]\n", + " [-0.3957447 -0.35117795 -0.8485636 ]\n", + " [-0.38504548 -0.32723401 -0.86293562]\n", + " [-0.37396414 -0.30290486 -0.87658398]\n", + " [-0.26241263 -0.53927847 -0.80019894]\n", + " [-0.25034814 -0.51499897 -0.8198182 ]\n", + " [-0.23791778 -0.48948169 -0.83892956]\n", + " [-0.22516097 -0.46286362 -0.85735629]\n", + " [-0.21212822 -0.43528818 -0.87494332]\n", + " [-0.19888045 -0.40690718 -0.89155657]\n", + " [-0.27729534 -0.54321474 -0.79248031]\n", + " [-0.30797752 -0.53023317 -0.78993837]\n", + " [-0.3389562 -0.51617726 -0.78655561]\n", + " [-0.3700199 -0.50111759 -0.78228283]\n", + " [-0.40096612 -0.48513039 -0.77709374]\n", + " [-0.43160013 -0.46829952 -0.77098436]\n", + " [-0.20503532 -0.39164253 -0.89698196]\n", + " [-0.23620921 -0.37666175 -0.89572939]\n", + " [-0.26778017 -0.36087868 -0.89334224]\n", + " [-0.29954561 -0.34435899 -0.88976925]\n", + " [-0.3313059 -0.32717843 -0.88498061]\n", + " [-0.36286264 -0.30942442 -0.87896941]\n", + " [-0.43875479 -0.45327699 -0.77590864]\n", + " [-0.4281783 -0.42726264 -0.79631023]\n", + " [-0.41684844 -0.40015276 -0.81615878]\n", + " [-0.40480072 -0.37207626 -0.83528177]\n", + " [-0.39208229 -0.34317472 -0.85352363]\n", + " [-0.3787529 -0.3136045 -0.87074592]\n", + " [-0.26657788 -0.54752766 -0.79318957]\n", + " [-0.26657788 -0.54752766 -0.79318957]\n", + " [-0.37391548 -0.3030393 -0.87655826]\n", + " [-0.37391548 -0.3030393 -0.87655826]\n", + " [-0.27316534 -0.53491116 -0.79953158]\n", + " [-0.30394902 -0.52178641 -0.79709092]\n", + " [-0.33503212 -0.50760297 -0.79378379]\n", + " [-0.36620377 -0.49243053 -0.78956125]\n", + " [-0.39726165 -0.4763446 -0.78439722]\n", + " [-0.42801074 -0.45942866 -0.77828794]\n", + " [-0.26118197 -0.51048307 -0.81926248]\n", + " [-0.29220178 -0.49696898 -0.81709238]\n", + " [-0.32353217 -0.48244115 -0.81398862]\n", + " [-0.3549641 -0.46696682 -0.80990276]\n", + " [-0.38629565 -0.45061973 -0.804809 ]\n", + " [-0.41733074 -0.43348272 -0.79870382]\n", + " [-0.24880509 -0.48482469 -0.83847543]\n", + " [-0.27998525 -0.47094307 -0.83655298]\n", + " [-0.31149113 -0.4560935 -0.83363781]\n", + " [-0.34311549 -0.4403413 -0.82968145]\n", + " [-0.37465676 -0.42375921 -0.82465777]\n", + " [-0.4059177 -0.40643018 -0.81856297]\n", + " [-0.23607438 -0.45807208 -0.85699408]\n", + " [-0.26733966 -0.44384199 -0.85529749]\n", + " [-0.29894915 -0.42869094 -0.85255703]\n", + " [-0.33069729 -0.41268323 -0.84872366]\n", + " [-0.36238291 -0.39589157 -0.8437704 ]\n", + " [-0.39380779 -0.37839973 -0.8376927 ]\n", + " [-0.22304074 -0.43036803 -0.87466347]\n", + " [-0.25431673 -0.41580696 -0.87317099]\n", + " [-0.28595804 -0.40037371 -0.87059112]\n", + " [-0.31776061 -0.38413259 -0.8668739 ]\n", + " [-0.34952377 -0.36715716 -0.86199115]\n", + " [-0.38104883 -0.34953259 -0.85593736]\n", + " [-0.20976558 -0.4018642 -0.8913493 ]\n", + " [-0.2409789 -0.38698965 -0.8900383 ]\n", + " [-0.27258068 -0.37129409 -0.88760378]\n", + " [-0.30436806 -0.35484272 -0.88399476]\n", + " [-0.33614107 -0.33771065 -0.87918183]\n", + " [-0.36770115 -0.31998468 -0.87315844]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:fp_optics: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:cartToSphere: vec: [[ 1.45938376e-01 2.90188860e-01 -9.45776092e-01]\n", + " [ 1.25177122e-01 3.08792170e-01 -9.42856343e-01]\n", + " [ 1.03905867e-01 3.27513041e-01 -9.39115956e-01]\n", + " [ 8.22039466e-02 3.46263331e-01 -9.34528874e-01]\n", + " [ 6.01517303e-02 3.64958331e-01 -9.29078676e-01]\n", + " [ 3.78319482e-02 3.83515736e-01 -9.22759136e-01]\n", + " [ 1.53302870e-02 4.01855339e-01 -9.15574830e-01]\n", + " [-7.26488471e-03 4.19899463e-01 -9.07541549e-01]\n", + " [ 1.45938376e-01 2.90188860e-01 -9.45776092e-01]\n", + " [ 1.26727282e-01 2.70217512e-01 -9.54422701e-01]\n", + " [ 1.07399502e-01 2.50149115e-01 -9.62232179e-01]\n", + " [ 8.80298219e-02 2.30067099e-01 -9.69185163e-01]\n", + " [ 6.86926082e-02 2.10058627e-01 -9.75272628e-01]\n", + " [ 4.94614826e-02 1.90214870e-01 -9.80495724e-01]\n", + " [ 3.04092624e-02 1.70631483e-01 -9.84865561e-01]\n", + " [ 1.16081423e-02 1.51408943e-01 -9.88403047e-01]\n", + " [-7.26488471e-03 4.19899463e-01 -9.07541549e-01]\n", + " [-2.70152029e-02 3.99143455e-01 -9.16490415e-01]\n", + " [-4.66785635e-02 3.78098207e-01 -9.24587939e-01]\n", + " [-6.61778017e-02 3.56851807e-01 -9.31813976e-01]\n", + " [-8.54382140e-02 3.35494608e-01 -9.38159730e-01]\n", + " [-1.04387876e-01 3.14118693e-01 -9.43627372e-01]\n", + " [-1.22957202e-01 2.92818183e-01 -9.48229423e-01]\n", + " [-1.41077847e-01 2.71690366e-01 -9.51988123e-01]\n", + " [ 1.16081423e-02 1.51408943e-01 -9.88403047e-01]\n", + " [-9.60880527e-03 1.68036098e-01 -9.85734011e-01]\n", + " [-3.11643802e-02 1.84992065e-01 -9.82245752e-01]\n", + " [-5.29749480e-02 2.02186026e-01 -9.77913322e-01]\n", + " [-7.49565080e-02 2.19532093e-01 -9.72721534e-01]\n", + " [-9.70244361e-02 2.36948990e-01 -9.66665110e-01]\n", + " [-1.19093445e-01 2.54359548e-01 -9.59748911e-01]\n", + " [-1.41077847e-01 2.71690366e-01 -9.51988123e-01]\n", + " [ 1.36888519e-01 2.98211381e-01 -9.44633001e-01]\n", + " [ 1.11089886e-01 3.21101349e-01 -9.40506757e-01]\n", + " [ 8.46041281e-02 3.44080002e-01 -9.35120898e-01]\n", + " [ 5.75786982e-02 3.66990038e-01 -9.28441170e-01]\n", + " [ 3.01659730e-02 3.89679908e-01 -9.20456182e-01]\n", + " [ 2.52486154e-03 4.12002961e-01 -9.11179009e-01]\n", + " [ 1.37511117e-01 2.81561426e-01 -9.49638803e-01]\n", + " [ 1.13877490e-01 2.57008085e-01 -9.59676384e-01]\n", + " [ 9.01430750e-02 2.32391328e-01 -9.68436109e-01]\n", + " [ 6.64449787e-02 2.07870068e-01 -9.75897074e-01]\n", + " [ 4.29187307e-02 1.83612204e-01 -9.82061373e-01]\n", + " [ 1.96981118e-02 1.59795834e-01 -9.86953533e-01]\n", + " [-1.58044512e-02 4.10829747e-01 -9.11575087e-01]\n", + " [-3.99618945e-02 3.85185871e-01 -9.21973368e-01]\n", + " [-6.39119695e-02 3.59194898e-01 -9.31071579e-01]\n", + " [-8.75160813e-02 3.33022275e-01 -9.38848816e-01]\n", + " [-1.10641764e-01 3.06837554e-01 -9.45309005e-01]\n", + " [-1.33161490e-01 2.80815245e-01 -9.50479256e-01]\n", + " [ 2.46819955e-03 1.58677600e-01 -9.87327366e-01]\n", + " [-2.37737663e-02 1.79290295e-01 -9.83508921e-01]\n", + " [-5.04414182e-02 2.00305937e-01 -9.78434052e-01]\n", + " [-7.73802810e-02 2.21564362e-01 -9.72070741e-01]\n", + " [-1.04434559e-01 2.42915882e-01 -9.64409299e-01]\n", + " [-1.31447049e-01 2.64220007e-01 -9.55462957e-01]\n", + " [ 1.45802926e-01 2.90184132e-01 -9.45798433e-01]\n", + " [ 1.45802926e-01 2.90184132e-01 -9.45798433e-01]\n", + " [-1.40941783e-01 2.71703156e-01 -9.52004626e-01]\n", + " [-1.40941783e-01 2.71703156e-01 -9.52004626e-01]\n", + " [ 1.28565818e-01 2.89553490e-01 -9.48488063e-01]\n", + " [ 1.04856746e-01 2.64886674e-01 -9.58561481e-01]\n", + " [ 8.10651965e-02 2.40136298e-01 -9.67348434e-01]\n", + " [ 5.73287357e-02 2.15461260e-01 -9.74828119e-01]\n", + " [ 3.37830939e-02 1.91029074e-01 -9.81002852e-01]\n", + " [ 1.05619762e-02 1.67017327e-01 -9.85897387e-01]\n", + " [ 1.02689976e-01 3.12354633e-01 -9.44398937e-01]\n", + " [ 7.87966551e-02 2.87398556e-01 -9.54564381e-01]\n", + " [ 5.48732152e-02 2.62304320e-01 -9.63423777e-01]\n", + " [ 3.10584881e-02 2.37231179e-01 -9.70956610e-01]\n", + " [ 7.48863431e-03 2.12345755e-01 -9.77165902e-01]\n", + " [-1.57030379e-02 1.87823923e-01 -9.82077181e-01]\n", + " [ 7.61425083e-02 3.35260691e-01 -9.39043443e-01]\n", + " [ 5.21095771e-02 3.10063113e-01 -9.49286815e-01]\n", + " [ 2.80998673e-02 2.84675794e-01 -9.58211923e-01]\n", + " [ 4.25317993e-03 2.59258973e-01 -9.65798476e-01]\n", + " [-1.92942980e-02 2.33978985e-01 -9.72050186e-01]\n", + " [-4.24100517e-02 2.09010201e-01 -9.76993410e-01]\n", + " [ 4.90713319e-02 3.58114779e-01 -9.32387156e-01]\n", + " [ 2.49449546e-02 3.32724309e-01 -9.42694162e-01]\n", + " [ 8.96195618e-04 3.07094827e-01 -9.51678498e-01]\n", + " [-2.29347188e-02 2.81388063e-01 -9.59319945e-01]\n", + " [-4.64121330e-02 2.55770776e-01 -9.65622713e-01]\n", + " [-6.94047662e-02 2.30416502e-01 -9.70613834e-01]\n", + " [ 2.16293389e-02 3.80765893e-01 -9.24418470e-01]\n", + " [-2.54295132e-03 3.55232613e-01 -9.34774478e-01]\n", + " [-2.65824819e-02 3.29413003e-01 -9.43811658e-01]\n", + " [-5.03492795e-02 3.03470493e-01 -9.51509648e-01]\n", + " [-7.37087825e-02 2.77572848e-01 -9.57872815e-01]\n", + " [-9.65312743e-02 2.51893566e-01 -9.62928525e-01]\n", + " [-6.02414451e-03 4.03067886e-01 -9.15150255e-01]\n", + " [-3.01940105e-02 3.77443534e-01 -9.25540221e-01]\n", + " [-5.41758776e-02 3.51487535e-01 -9.34623714e-01]\n", + " [-7.78306920e-02 3.25364881e-01 -9.42380007e-01]\n", + " [-1.01025403e-01 2.99244647e-01 -9.48813211e-01]\n", + " [-1.23631942e-01 2.73300987e-01 -9.53950582e-01]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:fp_optics: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:cartToSphere: vec: [[ 1.46887052e-01 -6.02193970e-01 7.84720725e-01]\n", + " [ 1.20214723e-01 -6.02528038e-01 7.88992005e-01]\n", + " [ 9.29151004e-02 -6.02292103e-01 7.92849927e-01]\n", + " [ 6.50989320e-02 -6.01473826e-01 7.96235748e-01]\n", + " [ 3.68769035e-02 -6.00064936e-01 7.99100848e-01]\n", + " [ 8.35994032e-03 -5.98061323e-01 8.01406741e-01]\n", + " [-2.03405056e-02 -5.95463370e-01 8.03124921e-01]\n", + " [-4.91124496e-02 -5.92276362e-01 8.04236706e-01]\n", + " [ 1.46887052e-01 -6.02193970e-01 7.84720725e-01]\n", + " [ 1.51780593e-01 -5.80529513e-01 7.99967584e-01]\n", + " [ 1.56516639e-01 -5.57956078e-01 8.14977028e-01]\n", + " [ 1.61082965e-01 -5.34546682e-01 8.29645782e-01]\n", + " [ 1.65466544e-01 -5.10378828e-01 8.43880486e-01]\n", + " [ 1.69653498e-01 -4.85534830e-01 8.57597586e-01]\n", + " [ 1.73629381e-01 -4.60102219e-01 8.70723140e-01]\n", + " [ 1.77379607e-01 -4.34173931e-01 8.83192772e-01]\n", + " [-4.91124496e-02 -5.92276362e-01 8.04236706e-01]\n", + " [-4.58927502e-02 -5.69820235e-01 8.20486901e-01]\n", + " [-4.25726202e-02 -5.46446536e-01 8.36411235e-01]\n", + " [-3.91631313e-02 -5.22223759e-01 8.51908795e-01]\n", + " [-3.56758076e-02 -4.97225518e-01 8.66887548e-01]\n", + " [-3.21228376e-02 -4.71532268e-01 8.81263550e-01]\n", + " [-2.85171834e-02 -4.45232380e-01 8.94960836e-01]\n", + " [-2.48725575e-02 -4.18422268e-01 9.07911979e-01]\n", + " [ 1.77379607e-01 -4.34173931e-01 8.83192772e-01]\n", + " [ 1.49929655e-01 -4.33095337e-01 8.88791048e-01]\n", + " [ 1.21819345e-01 -4.31639636e-01 8.93782564e-01]\n", + " [ 9.31541756e-02 -4.29794334e-01 8.98108640e-01]\n", + " [ 6.40408782e-02 -4.27551185e-01 9.01719885e-01]\n", + " [ 3.45891490e-02 -4.24906490e-01 9.04576180e-01]\n", + " [ 4.91241372e-03 -4.21861422e-01 9.06647014e-01]\n", + " [-2.48725575e-02 -4.18422268e-01 9.07911979e-01]\n", + " [ 1.35358671e-01 -6.02336008e-01 7.86682505e-01]\n", + " [ 1.02232180e-01 -6.02363165e-01 7.91648406e-01]\n", + " [ 6.82734862e-02 -6.01521541e-01 7.95933770e-01]\n", + " [ 3.36863776e-02 -5.99794234e-01 7.99444873e-01]\n", + " [-1.32490190e-03 -5.97173710e-01 8.02110843e-01]\n", + " [-3.65549367e-02 -5.93662693e-01 8.03883290e-01]\n", + " [ 1.48948895e-01 -5.92866248e-01 7.91406241e-01]\n", + " [ 1.54841141e-01 -5.65693172e-01 8.09947810e-01]\n", + " [ 1.60484929e-01 -5.37226789e-01 8.28028964e-01]\n", + " [ 1.65856626e-01 -5.07607913e-01 8.45473705e-01]\n", + " [ 1.70930718e-01 -4.76988129e-01 8.62128189e-01]\n", + " [ 1.75680524e-01 -4.45530827e-01 8.77860260e-01]\n", + " [-4.76229129e-02 -5.82614401e-01 8.11352277e-01]\n", + " [-4.36069308e-02 -5.54466779e-01 8.31062589e-01]\n", + " [-3.94512445e-02 -5.25008489e-01 8.50182149e-01]\n", + " [-3.51768748e-02 -4.94372837e-01 8.68537901e-01]\n", + " [-3.08062788e-02 -4.62708064e-01 8.85975293e-01]\n", + " [-2.63636431e-02 -4.30180233e-01 9.02357981e-01]\n", + " [ 1.65486837e-01 -4.33838806e-01 8.85662463e-01]\n", + " [ 1.31386677e-01 -4.32265938e-01 8.92123142e-01]\n", + " [ 9.63994509e-02 -4.30113604e-01 8.97613187e-01]\n", + " [ 6.07210331e-02 -4.27364846e-01 9.02037829e-01]\n", + " [ 2.45534603e-02 -4.24012888e-01 9.05323256e-01]\n", + " [-1.18930047e-02 -4.20062003e-01 9.07417473e-01]\n", + " [ 1.46814023e-01 -6.02123607e-01 7.84788382e-01]\n", + " [ 1.46814023e-01 -6.02123607e-01 7.84788382e-01]\n", + " [-2.47831674e-02 -4.18527123e-01 9.07866093e-01]\n", + " [-2.47831674e-02 -4.18527123e-01 9.07866093e-01]\n", + " [ 1.37449848e-01 -5.93043528e-01 7.93351696e-01]\n", + " [ 1.43234963e-01 -5.65768321e-01 8.12028295e-01]\n", + " [ 1.48796375e-01 -5.37195725e-01 8.30229120e-01]\n", + " [ 1.54110268e-01 -5.07466097e-01 8.47778383e-01]\n", + " [ 1.59150736e-01 -4.76730690e-01 8.64522349e-01]\n", + " [ 1.63890676e-01 -4.45152947e-01 8.80328745e-01]\n", + " [ 1.04197659e-01 -5.92981405e-01 7.98445929e-01]\n", + " [ 1.09673970e-01 -5.65447579e-01 8.17459880e-01]\n", + " [ 1.14996519e-01 -5.36606866e-01 8.35959851e-01]\n", + " [ 1.20140880e-01 -5.06597920e-01 8.53770880e-01]\n", + " [ 1.25080212e-01 -4.75570979e-01 8.70739447e-01]\n", + " [ 1.29786457e-01 -4.43689773e-01 8.86732688e-01]\n", + " [ 7.01102614e-02 -5.92065621e-01 8.02834261e-01]\n", + " [ 7.52687645e-02 -5.64318280e-01 8.22118904e-01]\n", + " [ 8.03426200e-02 -5.35257440e-01 8.40859403e-01]\n", + " [ 8.53071247e-02 -5.05019843e-01 8.58881629e-01]\n", + " [ 9.01351249e-02 -4.73754782e-01 8.76032001e-01]\n", + " [ 9.47982374e-02 -4.41626484e-01 8.92176744e-01]\n", + " [ 3.53910531e-02 -5.90278981e-01 8.06423088e-01]\n", + " [ 4.02212230e-02 -5.62362215e-01 8.25912218e-01]\n", + " [ 4.50347672e-02 -5.33128412e-01 8.44834875e-01]\n", + " [ 4.98073747e-02 -5.02712600e-01 8.63017536e-01]\n", + " [ 5.45124481e-02 -4.71263371e-01 8.80306326e-01]\n", + " [ 5.91220756e-02 -4.38945575e-01 8.96566430e-01]\n", + " [ 2.44112247e-04 -5.87613518e-01 8.09141702e-01]\n", + " [ 4.73491879e-03 -5.59570239e-01 8.28769406e-01]\n", + " [ 9.27607778e-03 -5.30209903e-01 8.47815672e-01]\n", + " [ 1.38443766e-02 -4.99666333e-01 8.66107319e-01]\n", + " [ 1.84146129e-02 -4.68087744e-01 8.83490105e-01]\n", + " [ 2.29601091e-02 -4.35639603e-01 8.99828300e-01]\n", + " [-3.51248863e-02 -5.84071591e-01 8.10941810e-01]\n", + " [-3.09835282e-02 -5.55943830e-01 8.30642209e-01]\n", + " [-2.67256695e-02 -5.26502982e-01 8.49753111e-01]\n", + " [-2.23729377e-02 -4.95882356e-01 8.68101458e-01]\n", + " [-1.79485557e-02 -4.64230128e-01 8.85532742e-01]\n", + " [-1.34774132e-02 -4.31712246e-01 9.01910692e-01]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:fp_optics: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:cartToSphere: vec: [[-0.69005198 0.672495 -0.26754205]\n", + " [-0.70147271 0.66991318 -0.24321257]\n", + " [-0.71268682 0.66666629 -0.21825111]\n", + " [-0.72361361 0.66274606 -0.19274594]\n", + " [-0.73417786 0.65815193 -0.16679 ]\n", + " [-0.74431213 0.65288971 -0.14047948]\n", + " [-0.75395769 0.64697106 -0.11391329]\n", + " [-0.76306494 0.6404134 -0.08719271]\n", + " [-0.69005198 0.672495 -0.26754205]\n", + " [-0.70419218 0.65278107 -0.27926734]\n", + " [-0.7181757 0.63213693 -0.29090645]\n", + " [-0.73191033 0.61062007 -0.30240767]\n", + " [-0.74530897 0.58829692 -0.31372165]\n", + " [-0.75829215 0.56524092 -0.32480103]\n", + " [-0.77078909 0.54153181 -0.33560017]\n", + " [-0.78273803 0.51725533 -0.34607527]\n", + " [-0.76306494 0.6404134 -0.08719271]\n", + " [-0.77866561 0.61978476 -0.09770735]\n", + " [-0.79396188 0.59823361 -0.10835628]\n", + " [-0.80885593 0.57582048 -0.11909182]\n", + " [-0.82325948 0.55261025 -0.12986818]\n", + " [-0.83709259 0.52867403 -0.14064057]\n", + " [-0.8502828 0.50409123 -0.15136443]\n", + " [-0.86276526 0.47895054 -0.1619953 ]\n", + " [-0.78273803 0.51725533 -0.34607527]\n", + " [-0.79570524 0.51327481 -0.32156203]\n", + " [-0.80828983 0.50879492 -0.29630267]\n", + " [-0.82040555 0.50381191 -0.27038545]\n", + " [-0.8319755 0.49832676 -0.24389999]\n", + " [-0.84293119 0.49234566 -0.21693953]\n", + " [-0.85321194 0.48588075 -0.18960295]\n", + " [-0.86276526 0.47895054 -0.1619953 ]\n", + " [-0.69510058 0.67138415 -0.2570574 ]\n", + " [-0.70897049 0.66777341 -0.22680281]\n", + " [-0.72244928 0.66315463 -0.19568593]\n", + " [-0.735396 0.65752366 -0.16387604]\n", + " [-0.74768659 0.65089116 -0.13155018]\n", + " [-0.75921674 0.64328099 -0.09889143]\n", + " [-0.69627023 0.66400926 -0.2725793 ]\n", + " [-0.71350814 0.63921482 -0.28689814]\n", + " [-0.73041858 0.61307913 -0.30103601]\n", + " [-0.74683888 0.5857209 -0.31490112]\n", + " [-0.76262285 0.55727528 -0.32840623]\n", + " [-0.77764391 0.52789156 -0.34146808]\n", + " [-0.76986732 0.63155997 -0.09184936]\n", + " [-0.78879537 0.60564991 -0.10483347]\n", + " [-0.80716796 0.57841386 -0.11797152]\n", + " [-0.82481867 0.54996943 -0.13117844]\n", + " [-0.84160022 0.52044778 -0.14437167]\n", + " [-0.85738234 0.48999896 -0.15746919]\n", + " [-0.78839285 0.51566499 -0.33544944]\n", + " [-0.80403915 0.51045218 -0.3048928 ]\n", + " [-0.81902404 0.5044849 -0.27330314]\n", + " [-0.83320213 0.49776298 -0.24084481]\n", + " [-0.84644723 0.49029792 -0.20768974]\n", + " [-0.85865103 0.48211468 -0.17402255]\n", + " [-0.69013981 0.67242151 -0.26750021]\n", + " [-0.69013981 0.67242151 -0.26750021]\n", + " [-0.86269247 0.47906182 -0.1620539 ]\n", + " [-0.86269247 0.47906182 -0.1620539 ]\n", + " [-0.70129152 0.66293748 -0.26211466]\n", + " [-0.71869032 0.638041 -0.27638363]\n", + " [-0.73574308 0.61179857 -0.29049031]\n", + " [-0.75228527 0.58433023 -0.30434365]\n", + " [-0.76817007 0.55577146 -0.31785662]\n", + " [-0.78327071 0.5262717 -0.33094574]\n", + " [-0.71532046 0.65923495 -0.23178852]\n", + " [-0.73313847 0.63407057 -0.24589122]\n", + " [-0.75055861 0.60755268 -0.25988751]\n", + " [-0.76741349 0.57980303 -0.27368776]\n", + " [-0.78355586 0.55095693 -0.28720494]\n", + " [-0.79885887 0.52116374 -0.30035456]\n", + " [-0.72893706 0.65453464 -0.20058705]\n", + " [-0.74711487 0.62913739 -0.21448895]\n", + " [-0.76484708 0.60238558 -0.22834306]\n", + " [-0.78196591 0.57440057 -0.24206056]\n", + " [-0.79832454 0.54531635 -0.25555431]\n", + " [-0.81379593 0.51528205 -0.26873889]\n", + " [-0.74199855 0.64883366 -0.16868029]\n", + " [-0.76047393 0.62324051 -0.18234766]\n", + " [-0.77846243 0.59629661 -0.19602702]\n", + " [-0.7957969 0.56812183 -0.20963037]\n", + " [-0.81233087 0.53884864 -0.22307105]\n", + " [-0.82793664 0.50862611 -0.23626342]\n", + " [-0.7543802 0.64214302 -0.13624554]\n", + " [-0.77309044 0.61639082 -0.14964468]\n", + " [-0.79127982 0.58929572 -0.16311592]\n", + " [-0.8087818 0.5609761 -0.17657243]\n", + " [-0.82544984 0.53156334 -0.18992886]\n", + " [-0.84115515 0.50120676 -0.20310048]\n", + " [-0.76597755 0.63448652 -0.10346617]\n", + " [-0.78485989 0.60861134 -0.11656413]\n", + " [-0.80319459 0.58140504 -0.12979458]\n", + " [-0.82081527 0.55298525 -0.14307201]\n", + " [-0.83757491 0.52348303 -0.15631308]\n", + " [-0.85334357 0.49304822 -0.16943496]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:fp_optics: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:cartToSphere: vec: [[ 0.52314417 -0.06242736 0.8499547 ]\n", + " [ 0.51012904 -0.08533137 0.8558545 ]\n", + " [ 0.49634668 -0.10856588 0.86130913]\n", + " [ 0.48184777 -0.13203468 0.86625029]\n", + " [ 0.46668402 -0.15564288 0.87062123]\n", + " [ 0.45090929 -0.17929625 0.87437616]\n", + " [ 0.43458052 -0.202901 0.87747989]\n", + " [ 0.41775829 -0.22636396 0.87990759]\n", + " [ 0.52314417 -0.06242736 0.8499547 ]\n", + " [ 0.50529299 -0.04605412 0.86171806]\n", + " [ 0.48659181 -0.02941669 0.87313405]\n", + " [ 0.46711024 -0.01257255 0.8841097 ]\n", + " [ 0.44691876 0.00441911 0.89456363]\n", + " [ 0.42609005 0.02149709 0.90442531]\n", + " [ 0.40470003 0.03859828 0.91363453]\n", + " [ 0.38282843 0.05565801 0.9221413 ]\n", + " [ 0.41775829 -0.22636396 0.87990759]\n", + " [ 0.39830408 -0.21095573 0.89266541]\n", + " [ 0.37812849 -0.19506364 0.90496907]\n", + " [ 0.35729464 -0.17874172 0.91672894]\n", + " [ 0.33586974 -0.1620463 0.92786449]\n", + " [ 0.31392631 -0.14503683 0.9383041 ]\n", + " [ 0.29154251 -0.12777611 0.94798536]\n", + " [ 0.26880187 -0.11033 0.95685571]\n", + " [ 0.38282843 0.05565801 0.9221413 ]\n", + " [ 0.36807447 0.03290714 0.92921381]\n", + " [ 0.35272569 0.00968231 0.93567668]\n", + " [ 0.33682754 -0.0139257 0.94146337]\n", + " [ 0.32042943 -0.03782522 0.9465169 ]\n", + " [ 0.30358551 -0.06192281 0.95078988]\n", + " [ 0.286355 -0.08612321 0.95424504]\n", + " [ 0.26880187 -0.11033 0.95685571]\n", + " [ 0.51750711 -0.07231137 0.852618 ]\n", + " [ 0.50103215 -0.10061748 0.85955972]\n", + " [ 0.48345517 -0.12932433 0.86576343]\n", + " [ 0.46487089 -0.15825673 0.87111989]\n", + " [ 0.44537856 -0.18724119 0.87554479]\n", + " [ 0.42508451 -0.21610526 0.87897763]\n", + " [ 0.51542634 -0.05540244 0.85514107]\n", + " [ 0.49296623 -0.03515078 0.86933809]\n", + " [ 0.46929857 -0.01455907 0.88291952]\n", + " [ 0.4445527 0.00626445 0.89573079]\n", + " [ 0.41886253 0.02720713 0.90764197]\n", + " [ 0.39236941 0.0481521 0.91854647]\n", + " [ 0.40942735 -0.21962861 0.88551258]\n", + " [ 0.38509192 -0.20041133 0.90085488]\n", + " [ 0.35973519 -0.18052092 0.91542492]\n", + " [ 0.33347913 -0.16006008 0.92907074]\n", + " [ 0.30645723 -0.13913825 0.94166051]\n", + " [ 0.27881566 -0.11787238 0.95308338]\n", + " [ 0.3765474 0.04574425 0.92526727]\n", + " [ 0.35806012 0.01753004 0.93353396]\n", + " [ 0.33872405 -0.01130578 0.94081784]\n", + " [ 0.31862841 -0.0405949 0.94701003]\n", + " [ 0.29787298 -0.07016529 0.95202338]\n", + " [ 0.27656874 -0.09984107 0.95579365]\n", + " [ 0.52304151 -0.06244954 0.85001626]\n", + " [ 0.52304151 -0.06244954 0.85001626]\n", + " [ 0.26894064 -0.11030722 0.95681934]\n", + " [ 0.26894064 -0.11030722 0.95681934]\n", + " [ 0.50983433 -0.06527974 0.85779223]\n", + " [ 0.48721924 -0.04505707 0.87211655]\n", + " [ 0.46340756 -0.02447237 0.88580728]\n", + " [ 0.43852727 -0.00363393 0.89871053]\n", + " [ 0.41271151 0.01734532 0.91069663]\n", + " [ 0.38610141 0.03834807 0.9216589 ]\n", + " [ 0.49320716 -0.09363786 0.86485759]\n", + " [ 0.4701838 -0.07352133 0.87950088]\n", + " [ 0.44599438 -0.0529814 0.89346627]\n", + " [ 0.42076353 -0.03212625 0.90660132]\n", + " [ 0.39462281 -0.01106927 0.91877653]\n", + " [ 0.36771343 0.01007119 0.92988462]\n", + " [ 0.4754931 -0.12240941 0.87116144]\n", + " [ 0.45210387 -0.10243612 0.88606373]\n", + " [ 0.42757897 -0.08197948 0.90025307]\n", + " [ 0.40204074 -0.06114702 0.91357774]\n", + " [ 0.37562013 -0.04005205 0.92590785]\n", + " [ 0.34845913 -0.01881344 0.93713515]\n", + " [ 0.4567856 -0.15141958 0.87659513]\n", + " [ 0.43306979 -0.13162776 0.89169764]\n", + " [ 0.40824968 -0.11129409 0.90606061]\n", + " [ 0.38244644 -0.09052495 0.91953247]\n", + " [ 0.35579124 -0.06943298 0.93198265]\n", + " [ 0.32842727 -0.04813708 0.94330183]\n", + " [ 0.43718313 -0.18049482 0.88107465]\n", + " [ 0.41317848 -0.16092248 0.89631886]\n", + " [ 0.3881029 -0.14075136 0.9108047 ]\n", + " [ 0.3620774 -0.12008631 0.92438046]\n", + " [ 0.33523395 -0.09903885 0.93691489]\n", + " [ 0.30771709 -0.07772733 0.94829777]\n", + " [ 0.41679176 -0.20946224 0.88453954]\n", + " [ 0.39253588 -0.19014611 0.89986668]\n", + " [ 0.3672452 -0.17017594 0.91442392]\n", + " [ 0.34104133 -0.14965496 0.92805937]\n", + " [ 0.31405737 -0.12869321 0.94064128]\n", + " [ 0.28643909 -0.10740805 0.9520589 ]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:fp_optics: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:cartToSphere: vec: [[ 0.68928147 -0.69920329 -0.18975197]\n", + " [ 0.68522291 -0.70938254 -0.16506354]\n", + " [ 0.68067059 -0.71914802 -0.13969137]\n", + " [ 0.67560772 -0.72843564 -0.11373533]\n", + " [ 0.6700243 -0.73718803 -0.08729975]\n", + " [ 0.66391829 -0.74535453 -0.06049069]\n", + " [ 0.65729615 -0.75289124 -0.03341484]\n", + " [ 0.65017289 -0.75976117 -0.00617908]\n", + " [ 0.68928147 -0.69920329 -0.18975197]\n", + " [ 0.7084594 -0.68178301 -0.1823656 ]\n", + " [ 0.72750424 -0.66352888 -0.17454799]\n", + " [ 0.74630796 -0.64448283 -0.16633192]\n", + " [ 0.76476766 -0.62469528 -0.15775373]\n", + " [ 0.78278752 -0.60422438 -0.14885094]\n", + " [ 0.8002796 -0.58313576 -0.13966121]\n", + " [ 0.81716415 -0.5615024 -0.13022212]\n", + " [ 0.65017289 -0.75976117 -0.00617908]\n", + " [ 0.6699168 -0.74242913 0.00323441]\n", + " [ 0.68952887 -0.72414434 0.01284204]\n", + " [ 0.70889849 -0.70494822 0.02260391]\n", + " [ 0.72792385 -0.68488819 0.03248125]\n", + " [ 0.74651036 -0.66401921 0.04243548]\n", + " [ 0.76456936 -0.64240567 0.05242753]\n", + " [ 0.7820181 -0.62012237 0.0624174 ]\n", + " [ 0.81716415 -0.5615024 -0.13022212]\n", + " [ 0.81434238 -0.5709914 -0.10399667]\n", + " [ 0.81080926 -0.58020158 -0.07716523]\n", + " [ 0.80654317 -0.58907118 -0.04983233]\n", + " [ 0.80153082 -0.59754488 -0.02210131]\n", + " [ 0.79576765 -0.60557309 0.00592322]\n", + " [ 0.78925849 -0.61311169 0.03413334]\n", + " [ 0.7820181 -0.62012237 0.0624174 ]\n", + " [ 0.68763732 -0.70362986 -0.17905289]\n", + " [ 0.68233428 -0.71583567 -0.14832135]\n", + " [ 0.67627204 -0.72735566 -0.11666138]\n", + " [ 0.6694293 -0.73808136 -0.0842634 ]\n", + " [ 0.66180236 -0.74791954 -0.05132257]\n", + " [ 0.65340665 -0.75679223 -0.01803537]\n", + " [ 0.69763971 -0.6917482 -0.18650271]\n", + " [ 0.72106935 -0.66983218 -0.17715487]\n", + " [ 0.7441913 -0.64670421 -0.16719144]\n", + " [ 0.76681383 -0.62245365 -0.15667804]\n", + " [ 0.78876062 -0.59718754 -0.14568362]\n", + " [ 0.80987318 -0.57102977 -0.13427749]\n", + " [ 0.65881533 -0.7523015 -0.00219491]\n", + " [ 0.68293951 -0.73041345 0.00947698]\n", + " [ 0.70675471 -0.70713491 0.02140088]\n", + " [ 0.73006989 -0.68255064 0.03350492]\n", + " [ 0.75271073 -0.65676207 0.04571807]\n", + " [ 0.77451643 -0.62989207 0.05796795]\n", + " [ 0.81596274 -0.56574478 -0.11890183]\n", + " [ 0.81202859 -0.57719586 -0.08633943]\n", + " [ 0.80700369 -0.58816591 -0.05297081]\n", + " [ 0.8008601 -0.59855042 -0.01898664]\n", + " [ 0.79358952 -0.60825808 0.01542023]\n", + " [ 0.78520496 -0.61721003 0.05004955]\n", + " [ 0.6893341 -0.69918062 -0.18964432]\n", + " [ 0.6893341 -0.69918062 -0.18964432]\n", + " [ 0.78198554 -0.62017658 0.06228657]\n", + " [ 0.78198554 -0.62017658 0.06228657]\n", + " [ 0.69598222 -0.69619361 -0.17584995]\n", + " [ 0.71952136 -0.67425513 -0.1663401 ]\n", + " [ 0.74274817 -0.65108813 -0.15623511]\n", + " [ 0.76546971 -0.62678225 -0.14560265]\n", + " [ 0.78750926 -0.6014446 -0.13451228]\n", + " [ 0.80870805 -0.57519919 -0.12303328]\n", + " [ 0.69077447 -0.70839343 -0.14494611]\n", + " [ 0.71457852 -0.68640821 -0.13498629]\n", + " [ 0.73805908 -0.66315164 -0.12449378]\n", + " [ 0.76102157 -0.63871352 -0.11353944]\n", + " [ 0.78328897 -0.61320061 -0.10219297]\n", + " [ 0.80470185 -0.5867372 -0.09052288]\n", + " [ 0.68478218 -0.71991487 -0.11311914]\n", + " [ 0.70878091 -0.69790862 -0.10272864]\n", + " [ 0.73244962 -0.67459415 -0.09187103]\n", + " [ 0.7555939 -0.65006048 -0.08061778]\n", + " [ 0.7780371 -0.62441338 -0.06903768]\n", + " [ 0.79961912 -0.5977772 -0.05719852]\n", + " [ 0.67798286 -0.73064977 -0.08056148]\n", + " [ 0.7021041 -0.70864875 -0.0697624 ]\n", + " [ 0.72589455 -0.6853084 -0.05856187]\n", + " [ 0.74916086 -0.66071635 -0.047031 ]\n", + " [ 0.77172701 -0.63497693 -0.03523804]\n", + " [ 0.79343228 -0.60821429 -0.02325092]\n", + " [ 0.67037242 -0.74050491 -0.04746895]\n", + " [ 0.69454363 -0.71853507 -0.03628358]\n", + " [ 0.71838933 -0.69520045 -0.02476115]\n", + " [ 0.74171736 -0.6705871 -0.01297261]\n", + " [ 0.76435247 -0.6447979 -0.00098672]\n", + " [ 0.78613354 -0.61795651 0.01112725]\n", + " [ 0.66196633 -0.7494021 -0.01403832]\n", + " [ 0.68611541 -0.72748845 -0.0024892 ]\n", + " [ 0.70995016 -0.70419006 0.00933394]\n", + " [ 0.73327936 -0.6795919 0.02135962]\n", + " [ 0.75592845 -0.65379565 0.0335175 ]\n", + " [ 0.77773646 -0.6269244 0.04573611]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:fp_optics: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:cartToSphere: vec: [[-0.12678763 0.17840687 0.97575401]\n", + " [-0.13259871 0.20513908 0.969709 ]\n", + " [-0.13841855 0.23223583 0.96276 ]\n", + " [-0.14421814 0.25958037 0.95489222]\n", + " [-0.14996987 0.28705816 0.94610076]\n", + " [-0.15564724 0.31455533 0.93639142]\n", + " [-0.16122477 0.34195816 0.92578139]\n", + " [-0.16667821 0.36915374 0.91429967]\n", + " [-0.12678763 0.17840687 0.97575401]\n", + " [-0.0986031 0.18506126 0.97776774]\n", + " [-0.07044611 0.19163359 0.97893509]\n", + " [-0.04242838 0.19810307 0.97926248]\n", + " [-0.01466249 0.20445286 0.97876659]\n", + " [ 0.01273796 0.21067059 0.97747412]\n", + " [ 0.03965763 0.21674868 0.97542159]\n", + " [ 0.06597856 0.22268462 0.97265533]\n", + " [-0.16667821 0.36915374 0.91429967]\n", + " [-0.1374928 0.37589046 0.91640717]\n", + " [-0.10827832 0.38227034 0.91768469]\n", + " [-0.07915206 0.38827295 0.91813891]\n", + " [-0.05022969 0.3938829 0.91778714]\n", + " [-0.02162457 0.39908975 0.91665683]\n", + " [ 0.00655181 0.40388773 0.9147851 ]\n", + " [ 0.03418818 0.40827539 0.91221838]\n", + " [ 0.06597856 0.22268462 0.97265533]\n", + " [ 0.06212022 0.2487834 0.966565 ]\n", + " [ 0.05798772 0.27521854 0.95963127]\n", + " [ 0.05361169 0.30186694 0.95184145]\n", + " [ 0.04901966 0.32861003 0.94319273]\n", + " [ 0.04423658 0.35533299 0.93369245]\n", + " [ 0.03928551 0.38192423 0.92335829]\n", + " [ 0.03418818 0.40827539 0.91221838]\n", + " [-0.12922159 0.1900327 0.97323653]\n", + " [-0.13635235 0.22305603 0.96522228]\n", + " [-0.14346743 0.25651049 0.95583443]\n", + " [-0.15051548 0.29018445 0.94505983]\n", + " [-0.15744768 0.32386818 0.93290923]\n", + " [-0.16421765 0.35735262 0.9194192 ]\n", + " [-0.11452223 0.18140755 0.97671693]\n", + " [-0.07998266 0.18951088 0.97861555]\n", + " [-0.04559533 0.19746969 0.97924807]\n", + " [-0.01156716 0.2052513 0.97864095]\n", + " [ 0.02189262 0.21283296 0.97684331]\n", + " [ 0.05457066 0.22020284 0.97392646]\n", + " [-0.15394598 0.37204083 0.91536127]\n", + " [-0.11814205 0.38006037 0.91738573]\n", + " [-0.08241117 0.38752326 0.9181689 ]\n", + " [-0.046967 0.39439906 0.91773824]\n", + " [-0.01201828 0.40066851 0.91614426]\n", + " [ 0.02222994 0.40632281 0.91345914]\n", + " [ 0.06424278 0.23399463 0.97011307]\n", + " [ 0.05932431 0.26622435 0.96208379]\n", + " [ 0.05402502 0.29883644 0.95277389]\n", + " [ 0.04839688 0.33161079 0.9421741 ]\n", + " [ 0.04248588 0.36433596 0.93029794]\n", + " [ 0.0363339 0.39680783 0.91718231]\n", + " [-0.12671114 0.17852039 0.97574318]\n", + " [-0.12671114 0.17852039 0.97574318]\n", + " [ 0.03411238 0.4081715 0.91226771]\n", + " [ 0.03411238 0.4081715 0.91226771]\n", + " [-0.11698436 0.19292922 0.97421403]\n", + " [-0.08230355 0.20104078 0.97611922]\n", + " [-0.047769 0.20898049 0.97675241]\n", + " [-0.0135878 0.21671525 0.97614029]\n", + " [ 0.02003126 0.2242218 0.97433225]\n", + " [ 0.05287576 0.2314879 0.97139977]\n", + " [-0.12399342 0.22597558 0.96620943]\n", + " [-0.0889562 0.23410163 0.96813389]\n", + " [-0.0540497 0.2419801 0.96877462]\n", + " [-0.01948191 0.24957699 0.96815896]\n", + " [ 0.01453926 0.25686811 0.9663371 ]\n", + " [ 0.047804 0.26384026 0.96338107]\n", + " [-0.13100959 0.2594478 0.95682983]\n", + " [-0.09568128 0.26757442 0.95877475]\n", + " [-0.06046965 0.27537957 0.95943187]\n", + " [-0.02558413 0.28282904 0.95882907]\n", + " [ 0.00876775 0.28989854 0.95701722]\n", + " [ 0.04237838 0.29657468 0.95406894]\n", + " [-0.13798215 0.29313403 0.94606203]\n", + " [-0.10242973 0.30124643 0.94802887]\n", + " [-0.06698078 0.30896495 0.94871188]\n", + " [-0.03184631 0.31625587 0.94813925]\n", + " [ 0.00276599 0.3230957 0.94636226]\n", + " [ 0.03665008 0.32947172 0.94345384]\n", + " [-0.14486309 0.32682439 0.93391675]\n", + " [-0.10915564 0.33490742 0.93590708]\n", + " [-0.07353873 0.34252578 0.93662594]\n", + " [-0.03822484 0.3496469 0.93610144]\n", + " [-0.00342205 0.35624879 0.93438487]\n", + " [ 0.03066445 0.36232017 0.93154913]\n", + " [-0.15160671 0.36030969 0.92043051]\n", + " [-0.11581523 0.36834836 0.92244584]\n", + " [-0.08010137 0.37585386 0.92321051]\n", + " [-0.0446786 0.38279513 0.92275225]\n", + " [-0.00975549 0.3891522 0.92112181]\n", + " [ 0.02446296 0.3949156 0.91839166]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:cartToSphere: vec: [[ 0.37641735 -0.78998235 -0.48398126]\n", + " [ 0.37530778 -0.77537389 -0.50787735]\n", + " [ 0.37387312 -0.75984788 -0.53183653]\n", + " [ 0.37210271 -0.74343342 -0.55573943]\n", + " [ 0.36998971 -0.72616641 -0.57947387]\n", + " [ 0.36753123 -0.708091 -0.60293277]\n", + " [ 0.36472871 -0.68926121 -0.62601274]\n", + " [ 0.3615881 -0.66974164 -0.64861405]\n", + " [ 0.37641735 -0.78998235 -0.48398126]\n", + " [ 0.34937465 -0.79949193 -0.48862052]\n", + " [ 0.32212149 -0.80824994 -0.49291964]\n", + " [ 0.29476855 -0.81623003 -0.49687025]\n", + " [ 0.26742975 -0.82341372 -0.50047096]\n", + " [ 0.24022191 -0.82979046 -0.50372734]\n", + " [ 0.21326404 -0.83535788 -0.50665141]\n", + " [ 0.18667539 -0.84012269 -0.50926041]\n", + " [ 0.3615881 -0.66974164 -0.64861405]\n", + " [ 0.33362064 -0.67965015 -0.65327861]\n", + " [ 0.30544441 -0.68891478 -0.65734324]\n", + " [ 0.27717517 -0.69750769 -0.66080024]\n", + " [ 0.2489283 -0.70541011 -0.66364997]\n", + " [ 0.22081891 -0.71261185 -0.66590042]\n", + " [ 0.1929635 -0.71911036 -0.66756676]\n", + " [ 0.16548245 -0.72491005 -0.66867106]\n", + " [ 0.18667539 -0.84012269 -0.50926041]\n", + " [ 0.18384116 -0.82629625 -0.53238795]\n", + " [ 0.18094737 -0.81153088 -0.55558588]\n", + " [ 0.17798863 -0.79585435 -0.57873647]\n", + " [ 0.17496134 -0.77930405 -0.60172563]\n", + " [ 0.17186506 -0.76192587 -0.62444485]\n", + " [ 0.1687031 -0.74377383 -0.64679189]\n", + " [ 0.16548245 -0.72491005 -0.66867106]\n", + " [ 0.37588035 -0.78376133 -0.4944008 ]\n", + " [ 0.37430247 -0.76523711 -0.52374595]\n", + " [ 0.37222546 -0.74536286 -0.55306638]\n", + " [ 0.36963513 -0.72420177 -0.58215261]\n", + " [ 0.36652624 -0.70183534 -0.61080739]\n", + " [ 0.36290328 -0.67836742 -0.63884181]\n", + " [ 0.36465582 -0.79417073 -0.48612652]\n", + " [ 0.33135595 -0.80532437 -0.49158507]\n", + " [ 0.29784957 -0.81532209 -0.49652343]\n", + " [ 0.26434506 -0.82412662 -0.50093613]\n", + " [ 0.23105741 -0.83171854 -0.50483337]\n", + " [ 0.198206 -0.83809721 -0.50823956]\n", + " [ 0.34943854 -0.67420662 -0.6506444 ]\n", + " [ 0.3150067 -0.68592135 -0.65595936]\n", + " [ 0.28037624 -0.69664013 -0.66036482]\n", + " [ 0.24575983 -0.70632468 -0.66385808]\n", + " [ 0.21136957 -0.7149561 -0.66645381]\n", + " [ 0.17742147 -0.72253263 -0.66818278]\n", + " [ 0.18553717 -0.83419594 -0.51931983]\n", + " [ 0.18202516 -0.81661533 -0.54772826]\n", + " [ 0.17841803 -0.7976508 -0.57612516]\n", + " [ 0.17470831 -0.7773673 -0.60429884]\n", + " [ 0.17089527 -0.75584927 -0.63204959]\n", + " [ 0.16698651 -0.73319954 -0.65919188]\n", + " [ 0.3763221 -0.78996775 -0.48407916]\n", + " [ 0.3763221 -0.78996775 -0.48407916]\n", + " [ 0.16558675 -0.72495704 -0.66859429]\n", + " [ 0.16558675 -0.72495704 -0.66859429]\n", + " [ 0.36416822 -0.78798142 -0.49645422]\n", + " [ 0.33073638 -0.79918642 -0.50191086]\n", + " [ 0.29709535 -0.80923974 -0.50681889]\n", + " [ 0.26345386 -0.81810422 -0.51117273]\n", + " [ 0.23002728 -0.82576032 -0.51498286]\n", + " [ 0.19703619 -0.83220664 -0.51827488]\n", + " [ 0.36247517 -0.76950059 -0.52581422]\n", + " [ 0.32871269 -0.78083902 -0.53126113]\n", + " [ 0.29473604 -0.79104135 -0.53608232]\n", + " [ 0.26075472 -0.80007103 -0.54027153]\n", + " [ 0.2269842 -0.80790902 -0.5438393 ]\n", + " [ 0.19364636 -0.81455303 -0.54681299]\n", + " [ 0.36030487 -0.74966218 -0.55514594]\n", + " [ 0.32627602 -0.76111646 -0.56057622]\n", + " [ 0.29203183 -0.77145566 -0.56530839]\n", + " [ 0.25778274 -0.78064385 -0.56933578]\n", + " [ 0.22374343 -0.78866303 -0.57266876]\n", + " [ 0.19013496 -0.79551118 -0.57533525]\n", + " [ 0.35764359 -0.72852929 -0.5842398 ]\n", + " [ 0.32341386 -0.74008215 -0.58964555]\n", + " [ 0.28897105 -0.75054714 -0.59428505]\n", + " [ 0.25452662 -0.75988844 -0.59815196]\n", + " [ 0.22029427 -0.76808877 -0.60125708]\n", + " [ 0.18649323 -0.77514678 -0.60362881]\n", + " [ 0.35448689 -0.70618317 -0.61289834]\n", + " [ 0.32012392 -0.7178172 -0.6182711 ]\n", + " [ 0.28555277 -0.7283975 -0.62281353]\n", + " [ 0.25098578 -0.73788766 -0.6265205 ]\n", + " [ 0.21663578 -0.74627032 -0.62940412]\n", + " [ 0.18272015 -0.75354441 -0.6314936 ]\n", + " [ 0.35084013 -0.68272735 -0.64093257]\n", + " [ 0.31641372 -0.69442438 -0.64626398]\n", + " [ 0.28178595 -0.70510914 -0.6507056 ]\n", + " [ 0.24716952 -0.7147439 -0.65425407]\n", + " [ 0.21277664 -0.72331031 -0.65692336]\n", + " [ 0.17882353 -0.73080689 -0.65874383]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:fp_optics: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:fp_optics: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:cartToSphere: vec: [[-0.16257959 0.17051962 -0.97184923]\n", + " [-0.13587377 0.17177497 -0.97572111]\n", + " [-0.10851814 0.17307921 -0.97891133]\n", + " [-0.08062403 0.1744047 -0.9813678 ]\n", + " [-0.05230266 0.17572841 -0.9830483 ]\n", + " [-0.02366546 0.17703186 -0.98392056]\n", + " [ 0.00517557 0.17830083 -0.98396241]\n", + " [ 0.03410788 0.17952492 -0.98316197]\n", + " [-0.16257959 0.17051962 -0.97184923]\n", + " [-0.16573356 0.1967039 -0.96635395]\n", + " [-0.1686811 0.22332516 -0.96003779]\n", + " [-0.17141721 0.25025759 -0.95288366]\n", + " [-0.17393611 0.27737949 -0.94488457]\n", + " [-0.17623121 0.30457297 -0.93604373]\n", + " [-0.1782954 0.33172359 -0.92637477]\n", + " [-0.18012151 0.35872015 -0.9159018 ]\n", + " [ 0.03410788 0.17952492 -0.98316197]\n", + " [ 0.03269904 0.20687804 -0.97782015]\n", + " [ 0.03123745 0.23462529 -0.97158386]\n", + " [ 0.0297273 0.26264573 -0.96443429]\n", + " [ 0.02817315 0.29082138 -0.95636248]\n", + " [ 0.02658001 0.31903544 -0.94736999]\n", + " [ 0.02495341 0.34717149 -0.93746962]\n", + " [ 0.02329934 0.37511381 -0.92668591]\n", + " [-0.18012151 0.35872015 -0.9159018 ]\n", + " [-0.15251824 0.36185845 -0.91967203]\n", + " [-0.12424911 0.36477111 -0.92276985]\n", + " [-0.09542017 0.36743035 -0.9251432 ]\n", + " [-0.06613872 0.36981228 -0.92674945]\n", + " [-0.03651505 0.37189689 -0.92755558]\n", + " [-0.00666322 0.37366807 -0.92753856]\n", + " [ 0.02329934 0.37511381 -0.92668591]\n", + " [-0.15103352 0.17114812 -0.97360012]\n", + " [-0.1178507 0.17272448 -0.9778944 ]\n", + " [-0.08380245 0.17434612 -0.98111191]\n", + " [-0.04909355 0.17596869 -0.98317081]\n", + " [-0.01392921 0.17755816 -0.98401173]\n", + " [ 0.02148416 0.17908993 -0.9835981 ]\n", + " [-0.16388935 0.18187877 -0.96956712]\n", + " [-0.16761567 0.21428153 -0.96228292]\n", + " [-0.17102722 0.24721516 -0.95374753]\n", + " [-0.17411369 0.2804539 -0.94394387]\n", + " [-0.17686296 0.3137807 -0.9328779 ]\n", + " [-0.17926191 0.34698617 -0.92057904]\n", + " [ 0.033401 0.19139047 -0.98094549]\n", + " [ 0.03163733 0.22519496 -0.97379993]\n", + " [ 0.02979874 0.25947086 -0.9652911 ]\n", + " [ 0.02789348 0.29399985 -0.95539837]\n", + " [ 0.02593078 0.32856681 -0.9441247 ]\n", + " [ 0.02392102 0.36295765 -0.93149854]\n", + " [-0.16816922 0.36002195 -0.91766187]\n", + " [-0.13387745 0.36371933 -0.92183788]\n", + " [-0.09869089 0.3670499 -0.92495107]\n", + " [-0.06280644 0.36996812 -0.92691906]\n", + " [-0.02642724 0.37243714 -0.92768108]\n", + " [ 0.01023528 0.374429 -0.9271991 ]\n", + " [-0.16250063 0.17061245 -0.97184615]\n", + " [-0.16250063 0.17061245 -0.97184615]\n", + " [ 0.02320253 0.37501434 -0.9267286 ]\n", + " [ 0.02320253 0.37501434 -0.9267286 ]\n", + " [-0.15237514 0.18247313 -0.97133175]\n", + " [-0.15598474 0.21503741 -0.96406829]\n", + " [-0.15930443 0.24812566 -0.95553951]\n", + " [-0.16232368 0.28151257 -0.94572813]\n", + " [-0.16502996 0.31498137 -0.93463996]\n", + " [-0.16740973 0.34832254 -0.92230439]\n", + " [-0.11905804 0.18419623 -0.97565206]\n", + " [-0.12233477 0.21716389 -0.96843898]\n", + " [-0.12539181 0.2506384 -0.95992567]\n", + " [-0.12821789 0.28439621 -0.95009419]\n", + " [-0.13079948 0.31822132 -0.93894978]\n", + " [-0.13312212 0.35190352 -0.92652167]\n", + " [-0.0848741 0.18593563 -0.97888933]\n", + " [-0.08781351 0.21922676 -0.97171416]\n", + " [-0.09060257 0.25301149 -0.96321148]\n", + " [-0.09322961 0.28706815 -0.95336253]\n", + " [-0.09568074 0.32118133 -0.94217183]\n", + " [-0.09794123 0.35513981 -0.92966835]\n", + " [-0.05002771 0.18764724 -0.98096164]\n", + " [-0.05262373 0.22118287 -0.97381152]\n", + " [-0.05513766 0.25520241 -0.96531423]\n", + " [-0.05755808 0.28948579 -0.95545018]\n", + " [-0.05987163 0.32381792 -0.94422314]\n", + " [-0.06206411 0.35798642 -0.93166183]\n", + " [-0.01472387 0.18929742 -0.9818094 ]\n", + " [-0.01696988 0.22299958 -0.97467082]\n", + " [-0.01920101 0.25717884 -0.96617305]\n", + " [-0.02140688 0.29161629 -0.95629582]\n", + " [-0.02357549 0.32609689 -0.94504234]\n", + " [-0.02569394 0.36040726 -0.93244111]\n", + " [ 0.02083078 0.19086194 -0.98139584]\n", + " [ 0.01894054 0.22465333 -0.97425466]\n", + " [ 0.01699871 0.25891727 -0.96574991]\n", + " [ 0.01501414 0.29343541 -0.95586099]\n", + " [ 0.01299685 0.32799265 -0.94459087]\n", + " [ 0.01095791 0.362375 -0.93196796]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:fp_optics: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:cartToSphere: vec: [[-0.45230668 -0.45647737 -0.76618997]\n", + " [-0.4440434 -0.43563442 -0.78297389]\n", + " [-0.43525604 -0.41402514 -0.79945942]\n", + " [-0.42596018 -0.39171641 -0.81554655]\n", + " [-0.41617586 -0.36877942 -0.83114343]\n", + " [-0.40592828 -0.34529121 -0.8461656 ]\n", + " [-0.39524831 -0.32133539 -0.86053608]\n", + " [-0.38417255 -0.29700199 -0.87418606]\n", + " [-0.45230668 -0.45647737 -0.76618997]\n", + " [-0.47658475 -0.4418049 -0.76004961]\n", + " [-0.50035604 -0.42673665 -0.75335228]\n", + " [-0.52353258 -0.41133465 -0.74613501]\n", + " [-0.54603151 -0.39566398 -0.73844404]\n", + " [-0.5677748 -0.37979241 -0.73033519]\n", + " [-0.58868862 -0.3637902 -0.72187422]\n", + " [-0.6087025 -0.34773033 -0.71313736]\n", + " [-0.38417255 -0.29700199 -0.87418606]\n", + " [-0.40933067 -0.28193643 -0.86773282]\n", + " [-0.43403814 -0.26666527 -0.8605234 ]\n", + " [-0.4582026 -0.25125252 -0.85259753]\n", + " [-0.48173907 -0.23576374 -0.8440041 ]\n", + " [-0.50457025 -0.22026556 -0.83480054]\n", + " [-0.52662582 -0.20482573 -0.82505252]\n", + " [-0.54784094 -0.18951398 -0.81483419]\n", + " [-0.6087025 -0.34773033 -0.71313736]\n", + " [-0.60202238 -0.32657865 -0.72863945]\n", + " [-0.59463482 -0.30481734 -0.743973 ]\n", + " [-0.58655796 -0.28251849 -0.75903429]\n", + " [-0.57781307 -0.25975751 -0.77372999]\n", + " [-0.568425 -0.23661361 -0.78797654]\n", + " [-0.55842294 -0.21317005 -0.80169966]\n", + " [-0.54784094 -0.18951398 -0.81483419]\n", + " [-0.44885325 -0.44743852 -0.77351764]\n", + " [-0.43837239 -0.42136927 -0.79390024]\n", + " [-0.42711923 -0.39421512 -0.81373435]\n", + " [-0.41512873 -0.36610526 -0.83284757]\n", + " [-0.40244738 -0.3371816 -0.85108441]\n", + " [-0.38913438 -0.30760078 -0.86830651]\n", + " [-0.46292146 -0.45006252 -0.76364091]\n", + " [-0.49234815 -0.43180568 -0.75573617]\n", + " [-0.52092565 -0.41301575 -0.74703043]\n", + " [-0.5484993 -0.39381131 -0.73760502]\n", + " [-0.5749254 -0.37431708 -0.72756272]\n", + " [-0.60006942 -0.35466354 -0.71702892]\n", + " [-0.39522928 -0.29054638 -0.87142218]\n", + " [-0.4257719 -0.27193569 -0.86300016]\n", + " [-0.455545 -0.2530794 -0.85348085]\n", + " [-0.48438904 -0.23409763 -0.84295051]\n", + " [-0.51216162 -0.21511302 -0.8315148 ]\n", + " [-0.53873567 -0.1962511 -0.8192981 ]\n", + " [-0.60581077 -0.33864245 -0.71994069]\n", + " [-0.59714472 -0.31229981 -0.73884167]\n", + " [-0.58743388 -0.28511264 -0.75738512]\n", + " [-0.57671605 -0.25721834 -0.77539494]\n", + " [-0.5650371 -0.22876278 -0.79271726]\n", + " [-0.55245276 -0.19990088 -0.80921912]\n", + " [-0.45236312 -0.45635804 -0.76622774]\n", + " [-0.45236312 -0.45635804 -0.76622774]\n", + " [-0.54780703 -0.1896472 -0.81482599]\n", + " [-0.54780703 -0.1896472 -0.81482599]\n", + " [-0.4594535 -0.44111957 -0.77091893]\n", + " [-0.48900022 -0.42280592 -0.76296392]\n", + " [-0.51769934 -0.40397381 -0.75418337]\n", + " [-0.54539621 -0.38474233 -0.74465852]\n", + " [-0.57194764 -0.36523651 -0.73449179]\n", + " [-0.59721998 -0.34558689 -0.72380798]\n", + " [-0.44907838 -0.41499183 -0.79127138]\n", + " [-0.47892963 -0.39654101 -0.78318684]\n", + " [-0.50793948 -0.3776152 -0.77421201]\n", + " [-0.53595293 -0.35833485 -0.76442828]\n", + " [-0.56282799 -0.33882578 -0.75393749]\n", + " [-0.58843351 -0.31921851 -0.74286307]\n", + " [-0.43791146 -0.3877911 -0.81108052]\n", + " [-0.46801436 -0.3692393 -0.80288536]\n", + " [-0.49728515 -0.35025938 -0.79374168]\n", + " [-0.52556799 -0.33097283 -0.78373163]\n", + " [-0.55272164 -0.31150579 -0.77295726]\n", + " [-0.57861709 -0.29198837 -0.76154124]\n", + " [-0.42598718 -0.35964696 -0.83017407]\n", + " [-0.45628763 -0.34103175 -0.82188743]\n", + " [-0.48576917 -0.32203899 -0.81260027]\n", + " [-0.51427483 -0.30279058 -0.80239595]\n", + " [-0.54166352 -0.28341236 -0.79137732]\n", + " [-0.56780774 -0.26403351 -0.77966703]\n", + " [-0.41335133 -0.33070174 -0.84839674]\n", + " [-0.44379361 -0.31206185 -0.84003847]\n", + " [-0.4734347 -0.29309852 -0.830634 ]\n", + " [-0.50211641 -0.27393334 -0.82026802]\n", + " [-0.52969734 -0.25469116 -0.80904459]\n", + " [-0.55605067 -0.23549978 -0.79708689]\n", + " [-0.40006254 -0.30111239 -0.86561036]\n", + " [-0.43058928 -0.28248714 -0.85720119]\n", + " [-0.46033739 -0.26359557 -0.84770683]\n", + " [-0.48914762 -0.24455827 -0.83721315]\n", + " [-0.51687787 -0.22549852 -0.82582546]\n", + " [-0.54340126 -0.20654246 -0.8136678 ]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:fp_optics: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:cartToSphere: vec: [[ 1.79217924e-01 -4.23657715e-01 8.87916142e-01]\n", + " [ 1.51790643e-01 -4.22478636e-01 8.93572271e-01]\n", + " [ 1.23699710e-01 -4.20935320e-01 8.98616625e-01]\n", + " [ 9.50505647e-02 -4.19015480e-01 9.02990264e-01]\n", + " [ 6.59498422e-02 -4.16711177e-01 9.06643487e-01]\n", + " [ 3.65071292e-02 -4.14019058e-01 9.09535843e-01]\n", + " [ 6.83575398e-03 -4.10940613e-01 9.11636487e-01]\n", + " [-2.29475753e-02 -4.07482355e-01 9.12924717e-01]\n", + " [ 1.79217924e-01 -4.23657715e-01 8.87916142e-01]\n", + " [ 1.82642145e-01 -3.97205380e-01 8.99371855e-01]\n", + " [ 1.85806739e-01 -3.70501522e-01 9.10057404e-01]\n", + " [ 1.88698725e-01 -3.43654947e-01 9.19942427e-01]\n", + " [ 1.91305357e-01 -3.16778114e-01 9.29006936e-01]\n", + " [ 1.93613669e-01 -2.89987094e-01 9.37241288e-01]\n", + " [ 1.95610044e-01 -2.63401845e-01 9.44646060e-01]\n", + " [ 1.97280058e-01 -2.37146560e-01 9.51231879e-01]\n", + " [-2.29475753e-02 -4.07482355e-01 9.12924717e-01]\n", + " [-1.92562764e-02 -3.80133633e-01 9.24731105e-01]\n", + " [-1.55616390e-02 -3.52532752e-01 9.35670078e-01]\n", + " [-1.18784740e-02 -3.24793397e-01 9.45710395e-01]\n", + " [-8.22141911e-03 -2.97030583e-01 9.54832572e-01]\n", + " [-4.60489262e-03 -2.69359999e-01 9.63028549e-01]\n", + " [-1.04319579e-03 -2.41898460e-01 9.70301008e-01]\n", + " [ 2.44925713e-03 -2.14765395e-01 9.76662596e-01]\n", + " [ 1.97280058e-01 -2.37146560e-01 9.51231879e-01]\n", + " [ 1.70975317e-01 -2.34265076e-01 9.57020018e-01]\n", + " [ 1.43977033e-01 -2.31288688e-01 9.62172623e-01]\n", + " [ 1.16395667e-01 -2.28206260e-01 9.66630204e-01]\n", + " [ 8.83414479e-02 -2.25011639e-01 9.70343007e-01]\n", + " [ 5.99248044e-02 -2.21703622e-01 9.73271042e-01]\n", + " [ 3.12568007e-02 -2.18285648e-01 9.75384226e-01]\n", + " [ 2.44925713e-03 -2.14765395e-01 9.76662596e-01]\n", + " [ 1.67360081e-01 -4.23097191e-01 8.90493891e-01]\n", + " [ 1.33285689e-01 -4.21408053e-01 8.97022953e-01]\n", + " [ 9.83191824e-02 -4.19159306e-01 9.02573440e-01]\n", + " [ 6.26562723e-02 -4.16334527e-01 9.07050028e-01]\n", + " [ 2.64987952e-02 -4.12927580e-01 9.10378288e-01]\n", + " [-9.94315277e-03 -4.08943296e-01 9.12505624e-01]\n", + " [ 1.80649490e-01 -4.12158339e-01 8.93023665e-01]\n", + " [ 1.84673552e-01 -3.79554689e-01 9.06550560e-01]\n", + " [ 1.88294870e-01 -3.46680933e-01 9.18889206e-01]\n", + " [ 1.91489901e-01 -3.13742604e-01 9.29998493e-01]\n", + " [ 1.94234725e-01 -2.80953420e-01 9.39860653e-01]\n", + " [ 1.96503933e-01 -2.48535966e-01 9.48480932e-01]\n", + " [-2.12376296e-02 -3.95608869e-01 9.18173505e-01]\n", + " [-1.67096473e-02 -3.61906512e-01 9.32064624e-01]\n", + " [-1.21915807e-02 -3.27938136e-01 9.44620529e-01]\n", + " [-7.71045155e-03 -2.93914993e-01 9.55800463e-01]\n", + " [-3.29280923e-03 -2.60050116e-01 9.65589506e-01]\n", + " [ 1.03499033e-03 -2.26559546e-01 9.73996766e-01]\n", + " [ 1.85897881e-01 -2.35990460e-01 9.53808409e-01]\n", + " [ 1.53177186e-01 -2.32397767e-01 9.60483226e-01]\n", + " [ 1.19524562e-01 -2.28650711e-01 9.66143225e-01]\n", + " [ 8.51430191e-02 -2.24735882e-01 9.70692768e-01]\n", + " [ 5.02359051e-02 -2.20651032e-01 9.74058251e-01]\n", + " [ 1.50080107e-02 -2.16404272e-01 9.76188481e-01]\n", + " [ 1.79137520e-01 -4.23564375e-01 8.87976897e-01]\n", + " [ 1.79137520e-01 -4.23564375e-01 8.87976897e-01]\n", + " [ 2.53607379e-03 -2.14869682e-01 9.76639436e-01]\n", + " [ 2.53607379e-03 -2.14869682e-01 9.76639436e-01]\n", + " [ 1.68879891e-01 -4.11646507e-01 8.95559454e-01]\n", + " [ 1.72941931e-01 -3.78914001e-01 9.09128851e-01]\n", + " [ 1.76624656e-01 -3.45908379e-01 9.21493963e-01]\n", + " [ 1.79904871e-01 -3.12835492e-01 9.32613635e-01]\n", + " [ 1.82759117e-01 -2.79908944e-01 9.42470205e-01]\n", + " [ 1.85162352e-01 -2.47350929e-01 9.51069094e-01]\n", + " [ 1.34825820e-01 -4.09845188e-01 9.02135755e-01]\n", + " [ 1.38990248e-01 -3.76789814e-01 9.15811742e-01]\n", + " [ 1.42841796e-01 -3.43455493e-01 9.28242719e-01]\n", + " [ 1.46357953e-01 -3.10049231e-01 9.39387473e-01]\n", + " [ 1.49516366e-01 -2.76784373e-01 9.49228775e-01]\n", + " [ 1.52293130e-01 -2.43881702e-01 9.57772686e-01]\n", + " [ 9.98768569e-02 -4.07505714e-01 9.07724466e-01]\n", + " [ 1.04136568e-01 -3.74190641e-01 9.21486266e-01]\n", + " [ 1.08150607e-01 -3.40594527e-01 9.33969386e-01]\n", + " [ 1.11896503e-01 -3.06925777e-01 9.45132657e-01]\n", + " [ 1.15352323e-01 -2.73397631e-01 9.54959463e-01]\n", + " [ 1.18494906e-01 -2.40229351e-01 9.63456702e-01]\n", + " [ 6.42286862e-02 -4.04612259e-01 9.12230013e-01]\n", + " [ 6.85769509e-02 -3.71102284e-01 9.26056314e-01]\n", + " [ 7.27481933e-02 -3.37312511e-01 9.38577632e-01]\n", + " [ 7.67192258e-02 -3.03452715e-01 9.49752921e-01]\n", + " [ 8.04676186e-02 -2.69736140e-01 9.59566244e-01]\n", + " [ 8.39701604e-02 -2.36380683e-01 9.68025405e-01]\n", + " [ 2.80830526e-02 -4.01159401e-01 9.15577674e-01]\n", + " [ 3.25129478e-02 -3.67521278e-01 9.29446619e-01]\n", + " [ 3.68360752e-02 -3.33607517e-01 9.41992106e-01]\n", + " [ 4.10278733e-02 -2.99628925e-01 9.53173238e-01]\n", + " [ 4.50645419e-02 -2.65798739e-01 9.62974671e-01]\n", + " [ 4.89219529e-02 -2.32333802e-01 9.71404986e-01]\n", + " [-8.35007714e-03 -3.97152599e-01 9.17714601e-01]\n", + " [-3.84619467e-03 -3.63454772e-01 9.31603905e-01]\n", + " [ 6.22395816e-04 -3.29488008e-01 9.44159555e-01]\n", + " [ 5.02934301e-03 -2.95463567e-01 9.55340770e-01]\n", + " [ 9.34886787e-03 -2.61594560e-01 9.65132574e-01]\n", + " [ 1.35552622e-02 -2.28097163e-01 9.73544010e-01]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:fp_optics: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:cartToSphere: vec: [[-0.29742367 0.38453432 -0.87388358]\n", + " [-0.27877321 0.36961616 -0.88637994]\n", + " [-0.25941815 0.35422412 -0.8984584 ]\n", + " [-0.23944009 0.33839728 -0.91003062]\n", + " [-0.21892058 0.32217968 -0.92101794]\n", + " [-0.19794135 0.30562058 -0.93135132]\n", + " [-0.17658478 0.28877444 -0.94097138]\n", + " [-0.15493421 0.27170063 -0.94982849]\n", + " [-0.29742367 0.38453432 -0.87388358]\n", + " [-0.28148178 0.40577298 -0.86954948]\n", + " [-0.26486896 0.42709236 -0.86454413]\n", + " [-0.24765643 0.4483898 -0.85884392]\n", + " [-0.22991522 0.46956688 -0.8524353 ]\n", + " [-0.21171641 0.49052925 -0.84531486]\n", + " [-0.1931316 0.51118652 -0.83748942]\n", + " [-0.17423332 0.53145245 -0.8289759 ]\n", + " [-0.15493421 0.27170063 -0.94982849]\n", + " [-0.13703289 0.29280476 -0.94630194]\n", + " [-0.11865127 0.3141047 -0.94194486]\n", + " [-0.09985746 0.33550173 -0.93673213]\n", + " [-0.08072034 0.35690075 -0.9306482 ]\n", + " [-0.06131077 0.37820892 -0.92368772]\n", + " [-0.04170234 0.39933515 -0.91585608]\n", + " [-0.02197137 0.42019041 -0.90716993]\n", + " [-0.17423332 0.53145245 -0.8289759 ]\n", + " [-0.15369986 0.51743134 -0.84180827]\n", + " [-0.13262753 0.50271669 -0.85421652]\n", + " [-0.11109427 0.48734421 -0.86611413]\n", + " [-0.08917906 0.4713548 -0.87742336]\n", + " [-0.0669633 0.45479556 -0.88807484]\n", + " [-0.04453155 0.43772046 -0.89800765]\n", + " [-0.02197137 0.42019041 -0.90716993]\n", + " [-0.28933001 0.37816303 -0.8793639 ]\n", + " [-0.26598636 0.35955626 -0.89441073]\n", + " [-0.24166554 0.34027581 -0.90874096]\n", + " [-0.21651773 0.32040069 -0.92220576]\n", + " [-0.19069344 0.30002159 -0.93467805]\n", + " [-0.16434471 0.27924081 -0.94605253]\n", + " [-0.29049696 0.39372777 -0.87211809]\n", + " [-0.2704969 0.41982583 -0.86635888]\n", + " [-0.24955996 0.44594271 -0.85956671]\n", + " [-0.22781701 0.47189549 -0.85171242]\n", + " [-0.20539896 0.49751045 -0.84278978]\n", + " [-0.18243797 0.52262289 -0.83281553]\n", + " [-0.14726735 0.28093045 -0.94836196]\n", + " [-0.12499664 0.30694063 -0.94348465]\n", + " [-0.10207204 0.33314627 -0.93733391]\n", + " [-0.07861992 0.35937084 -0.92987714]\n", + " [-0.05477085 0.38544338 -0.92110453]\n", + " [-0.03066146 0.41119698 -0.91103069]\n", + " [-0.16541726 0.52535777 -0.83464744]\n", + " [-0.13987989 0.50770215 -0.85010126]\n", + " [-0.11361041 0.48903991 -0.86483099]\n", + " [-0.08675369 0.46944412 -0.87868994]\n", + " [-0.05945968 0.44900159 -0.8915504 ]\n", + " [-0.03188533 0.42781459 -0.90330394]\n", + " [-0.29730789 0.38455652 -0.87391321]\n", + " [-0.29730789 0.38455652 -0.87391321]\n", + " [-0.02211622 0.4201803 -0.90717109]\n", + " [-0.02211622 0.4201803 -0.90717109]\n", + " [-0.28245089 0.38735255 -0.87759871]\n", + " [-0.26226979 0.41350758 -0.87190942]\n", + " [-0.24116975 0.4396892 -0.86516505]\n", + " [-0.21928118 0.46571466 -0.85733635]\n", + " [-0.19673446 0.49141018 -0.84841711]\n", + " [-0.17366154 0.5166107 -0.83842415]\n", + " [-0.25892461 0.36878139 -0.89272523]\n", + " [-0.23826098 0.39505342 -0.88722292]\n", + " [-0.21672912 0.42137661 -0.88060788]\n", + " [-0.19445766 0.44756896 -0.87285064]\n", + " [-0.17157558 0.47345659 -0.86394483]\n", + " [-0.14821449 0.49887333 -0.85390741]\n", + " [-0.23443672 0.3495124 -0.90712761]\n", + " [-0.21333449 0.37583523 -0.90179614]\n", + " [-0.19141399 0.40223744 -0.89530203]\n", + " [-0.16880207 0.42853806 -0.88761534]\n", + " [-0.14562679 0.45456333 -0.87872921]\n", + " [-0.1220201 0.48014606 -0.86866038]\n", + " [-0.20913692 0.32962451 -0.92065706]\n", + " [-0.1876382 0.35593159 -0.91548053]\n", + " [-0.16537035 0.38234951 -0.90909928]\n", + " [-0.14245906 0.40869861 -0.90148259]\n", + " [-0.11903228 0.43480553 -0.8926228 ]\n", + " [-0.09522293 0.46050245 -0.88253616]\n", + " [-0.18317526 0.30920855 -0.93318642]\n", + " [-0.16132083 0.33543357 -0.92814865]\n", + " [-0.13874606 0.36180372 -0.92187179]\n", + " [-0.11557634 0.38814075 -0.91432427]\n", + " [-0.09194034 0.41427209 -0.90549744]\n", + " [-0.06797245 0.44002988 -0.89540686]\n", + " [-0.15670362 0.28836717 -0.94461016]\n", + " [-0.13453419 0.31444475 -0.93969413]\n", + " [-0.11169342 0.34070423 -0.9335123 ]\n", + " [-0.0883073 0.3669687 -0.92603228]\n", + " [-0.06450583 0.39306673 -0.91724454]\n", + " [-0.04042508 0.41883106 -0.90716391]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:fp_optics: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:cartToSphere: vec: [[-0.78741842 0.50728982 -0.35018463]\n", + " [-0.8004315 0.50321329 -0.32570814]\n", + " [-0.81305603 0.49864949 -0.30048057]\n", + " [-0.8252057 0.49359479 -0.2745901 ]\n", + " [-0.83680352 0.48805045 -0.24812621]\n", + " [-0.8477808 0.48202307 -0.22118198]\n", + " [-0.85807668 0.47552522 -0.19385609]\n", + " [-0.86763846 0.4685758 -0.16625349]\n", + " [-0.78741842 0.50728982 -0.35018463]\n", + " [-0.79850667 0.48237354 -0.36014285]\n", + " [-0.80893623 0.45711958 -0.36968077]\n", + " [-0.81867733 0.43163211 -0.37876266]\n", + " [-0.82770998 0.40601983 -0.38735525]\n", + " [-0.83602391 0.38039566 -0.39542781]\n", + " [-0.84361841 0.35487603 -0.40295284]\n", + " [-0.85050178 0.32957909 -0.40990772]\n", + " [-0.86763846 0.4685758 -0.16625349]\n", + " [-0.87902917 0.44281907 -0.17668896]\n", + " [-0.889594 0.41674938 -0.18692904]\n", + " [-0.89930263 0.39047556 -0.19693559]\n", + " [-0.90813627 0.36410767 -0.20667397]\n", + " [-0.91608707 0.33775691 -0.2161128 ]\n", + " [-0.92315713 0.31153723 -0.22522314]\n", + " [-0.92935764 0.28556759 -0.23397763]\n", + " [-0.85050178 0.32957909 -0.40990772]\n", + " [-0.86340049 0.32395563 -0.3867717 ]\n", + " [-0.87588403 0.31810196 -0.36281994]\n", + " [-0.88786644 0.31201946 -0.33813762]\n", + " [-0.89926963 0.3057129 -0.31281586]\n", + " [-0.91002435 0.29919163 -0.28694957]\n", + " [-0.92007055 0.29247005 -0.26063662]\n", + " [-0.92935764 0.28556759 -0.23397763]\n", + " [-0.79317316 0.50548707 -0.33964564]\n", + " [-0.8088725 0.50016306 -0.30913136]\n", + " [-0.82390133 0.49410317 -0.27757641]\n", + " [-0.83811407 0.48730768 -0.24514491]\n", + " [-0.85138422 0.47978884 -0.21200845]\n", + " [-0.86360306 0.47157242 -0.17835135]\n", + " [-0.79237682 0.49646076 -0.35449356]\n", + " [-0.80552816 0.46568245 -0.36642084]\n", + " [-0.81765931 0.43449993 -0.37768116]\n", + " [-0.82872939 0.40311145 -0.38821226]\n", + " [-0.83871948 0.37172481 -0.39795765]\n", + " [-0.84763205 0.34055524 -0.40686857]\n", + " [-0.87267258 0.45741565 -0.17091956]\n", + " [-0.88608211 0.42562412 -0.18358267]\n", + " [-0.8982198 0.39347041 -0.19591383]\n", + " [-0.90904627 0.36115671 -0.20784782]\n", + " [-0.91854696 0.32888791 -0.21932677]\n", + " [-0.92672949 0.29687579 -0.23029809]\n", + " [-0.85614878 0.32724188 -0.39990251]\n", + " [-0.87168996 0.32019574 -0.37098694]\n", + " [-0.88652131 0.31280468 -0.34092989]\n", + " [-0.90049573 0.30507601 -0.30989687]\n", + " [-0.91348575 0.29702698 -0.2780625 ]\n", + " [-0.92538475 0.2886862 -0.24560811]\n", + " [-0.78750247 0.50719218 -0.35013704]\n", + " [-0.78750247 0.50719218 -0.35013704]\n", + " [-0.92930748 0.28567971 -0.23403996]\n", + " [-0.92930748 0.28567971 -0.23403996]\n", + " [-0.79806524 0.4947135 -0.34402096]\n", + " [-0.81125213 0.46381452 -0.35601416]\n", + " [-0.82339692 0.43250984 -0.36735916]\n", + " [-0.83445865 0.40099807 -0.37799379]\n", + " [-0.8444186 0.36948737 -0.38786121]\n", + " [-0.85327973 0.33819403 -0.3969112 ]\n", + " [-0.81380899 0.48928367 -0.31355448]\n", + " [-0.82708317 0.45808322 -0.32571951]\n", + " [-0.83925769 0.42647601 -0.33729029]\n", + " [-0.85029129 0.39466154 -0.34820539]\n", + " [-0.86016552 0.36284813 -0.35840831]\n", + " [-0.86888432 0.33125326 -0.36784686]\n", + " [-0.82887355 0.48313815 -0.28203928]\n", + " [-0.84221483 0.45169635 -0.29435454]\n", + " [-0.85440541 0.41985142 -0.30613097]\n", + " [-0.86540392 0.38780387 -0.31730775]\n", + " [-0.87519235 0.35576145 -0.32782945]\n", + " [-0.88377537 0.32394087 -0.33764391]\n", + " [-0.84311312 0.47627767 -0.24963942]\n", + " [-0.85650053 0.4446559 -0.26208389]\n", + " [-0.86869272 0.41263908 -0.27404736]\n", + " [-0.87964856 0.38042869 -0.28546878]\n", + " [-0.88935089 0.34823166 -0.29629329]\n", + " [-0.89780524 0.31626302 -0.30646932]\n", + " [-0.85640086 0.46871522 -0.21652623]\n", + " [-0.86981267 0.43697692 -0.22907877]\n", + " [-0.88199157 0.40485547 -0.24121137]\n", + " [-0.89289705 0.37255308 -0.25286175]\n", + " [-0.90251311 0.34027573 -0.26397446]\n", + " [-0.91084627 0.30823672 -0.27449807]\n", + " [-0.86862774 0.46047735 -0.18288371]\n", + " [-0.88204179 0.42868798 -0.19552211]\n", + " [-0.89419272 0.39653049 -0.20780508]\n", + " [-0.90504087 0.3642072 -0.21966823]\n", + " [-0.91457136 0.33192328 -0.23105446]\n", + " [-0.92279159 0.29989073 -0.24191163]]\n", + "DEBUG:root:cartToSphere: vec: [[ 3.74073871e-01 6.24961619e-02 9.25290748e-01]\n", + " [ 3.59241930e-01 3.98058530e-02 9.32395157e-01]\n", + " [ 3.43825780e-01 1.66329389e-02 9.38886137e-01]\n", + " [ 3.27871079e-01 -6.93196629e-03 9.44697043e-01]\n", + " [ 3.11427483e-01 -3.07974305e-02 9.49770731e-01]\n", + " [ 2.94549431e-01 -5.48702296e-02 9.54059689e-01]\n", + " [ 2.77296348e-01 -7.90552831e-02 9.57526500e-01]\n", + " [ 2.59732365e-01 -1.03256271e-01 9.60144386e-01]\n", + " [ 3.74073871e-01 6.24961619e-02 9.25290748e-01]\n", + " [ 3.51672424e-01 7.93893817e-02 9.32750680e-01]\n", + " [ 3.28995717e-01 9.60825340e-02 9.39430660e-01]\n", + " [ 3.06135063e-01 1.12509071e-01 9.45316366e-01]\n", + " [ 2.83184094e-01 1.28602228e-01 9.50404249e-01]\n", + " [ 2.60238484e-01 1.44294501e-01 9.54701539e-01]\n", + " [ 2.37396079e-01 1.59516678e-01 9.58226242e-01]\n", + " [ 2.14757537e-01 1.74196550e-01 9.61007160e-01]\n", + " [ 2.59732365e-01 -1.03256271e-01 9.60144386e-01]\n", + " [ 2.36643278e-01 -8.56633775e-02 9.67812866e-01]\n", + " [ 2.13414322e-01 -6.80514525e-02 9.74588799e-01]\n", + " [ 1.90140048e-01 -5.04910246e-02 9.80457760e-01]\n", + " [ 1.66915729e-01 -3.30521110e-02 9.85417017e-01]\n", + " [ 1.43836617e-01 -1.58037143e-02 9.89475250e-01]\n", + " [ 1.20997816e-01 1.18619987e-03 9.92652065e-01]\n", + " [ 9.84950295e-02 1.78500734e-02 9.94977439e-01]\n", + " [ 2.14757537e-01 1.74196550e-01 9.61007160e-01]\n", + " [ 1.98969426e-01 1.53312248e-01 9.67939317e-01]\n", + " [ 1.82820063e-01 1.31786744e-01 9.74273616e-01]\n", + " [ 1.66358502e-01 1.09716798e-01 9.79942383e-01]\n", + " [ 1.49637287e-01 8.71961567e-02 9.84888579e-01]\n", + " [ 1.32712625e-01 6.43170292e-02 9.89065558e-01]\n", + " [ 1.15644247e-01 4.11711165e-02 9.92437075e-01]\n", + " [ 9.84950295e-02 1.78500734e-02 9.94977439e-01]\n", + " [ 3.67605381e-01 5.27265272e-02 9.28485970e-01]\n", + " [ 3.49028128e-01 2.45818496e-02 9.36789783e-01]\n", + " [ 3.29618498e-01 -4.19780134e-03 9.44104880e-01]\n", + " [ 3.09466191e-01 -3.34445300e-02 9.50322124e-01]\n", + " [ 2.88671454e-01 -6.29867123e-02 9.55354105e-01]\n", + " [ 2.67345673e-01 -9.26487490e-02 9.59136331e-01]\n", + " [ 3.64296362e-01 6.98055898e-02 9.28663201e-01]\n", + " [ 3.36643885e-01 9.03845164e-02 9.37284127e-01]\n", + " [ 3.08668499e-01 1.10596958e-01 9.44717985e-01]\n", + " [ 2.80541642e-01 1.30320099e-01 9.50953763e-01]\n", + " [ 2.52439457e-01 1.49429563e-01 9.56004773e-01]\n", + " [ 2.24543197e-01 1.67796760e-01 9.59908641e-01]\n", + " [ 2.49749145e-01 -9.55099025e-02 9.63588721e-01]\n", + " [ 2.21345195e-01 -7.39265445e-02 9.72389413e-01]\n", + " [ 1.92824864e-01 -5.23848677e-02 9.79833862e-01]\n", + " [ 1.64363297e-01 -3.10140156e-02 9.85912185e-01]\n", + " [ 1.36135837e-01 -9.94101108e-03 9.90640303e-01]\n", + " [ 1.08317743e-01 1.07092558e-02 9.94058639e-01]\n", + " [ 2.07998374e-01 1.65126363e-01 9.64090224e-01]\n", + " [ 1.88399771e-01 1.39085364e-01 9.72193802e-01]\n", + " [ 1.68306751e-01 1.12177916e-01 9.79330870e-01]\n", + " [ 1.47814575e-01 8.45777695e-02 9.85392030e-01]\n", + " [ 1.27026704e-01 5.64547905e-02 9.90291408e-01]\n", + " [ 1.06054434e-01 2.79777785e-02 9.93966650e-01]\n", + " [ 3.73948159e-01 6.24775310e-02 9.25342819e-01]\n", + " [ 3.73948159e-01 6.24775310e-02 9.25342819e-01]\n", + " [ 9.86300082e-02 1.78736683e-02 9.94963644e-01]\n", + " [ 9.86300082e-02 1.78736683e-02 9.94963644e-01]\n", + " [ 3.57916619e-01 6.00848751e-02 9.31818385e-01]\n", + " [ 3.30165981e-01 8.07631878e-02 9.40461447e-01]\n", + " [ 3.02102651e-01 1.01094901e-01 9.47899683e-01]\n", + " [ 2.73898551e-01 1.20957341e-01 9.54122060e-01]\n", + " [ 2.45729951e-01 1.40226843e-01 9.59141921e-01]\n", + " [ 2.17777767e-01 1.58776131e-01 9.62996877e-01]\n", + " [ 3.39246751e-01 3.20168577e-02 9.40152415e-01]\n", + " [ 3.11253579e-01 5.29507175e-02 9.48850584e-01]\n", + " [ 2.82978578e-01 7.35938355e-02 9.56298631e-01]\n", + " [ 2.54595076e-01 9.38232787e-02 9.62485605e-01]\n", + " [ 2.26279737e-01 1.13516570e-01 9.67425175e-01]\n", + " [ 1.98212552e-01 1.32549393e-01 9.71155210e-01]\n", + " [ 3.19762756e-01 3.30013733e-03 9.47491894e-01]\n", + " [ 2.91580792e-01 2.44509580e-02 9.56233650e-01]\n", + " [ 2.63150757e-01 4.53670237e-02 9.63687456e-01]\n", + " [ 2.34647219e-01 6.59243593e-02 9.69842596e-01]\n", + " [ 2.06247116e-01 8.60005034e-02 9.74713312e-01]\n", + " [ 1.78129502e-01 1.05472752e-01 9.78338070e-01]\n", + " [ 2.99554879e-01 -2.58977733e-02 9.53727518e-01]\n", + " [ 2.71239474e-01 -4.56939930e-03 9.62501048e-01]\n", + " [ 2.42712554e-01 1.65809561e-02 9.69956539e-01]\n", + " [ 2.14149524e-01 3.74278086e-02 9.76083572e-01]\n", + " [ 1.85727316e-01 5.78478076e-02 9.80897036e-01]\n", + " [ 1.57623960e-01 7.77185755e-02 9.84436138e-01]\n", + " [ 2.78723904e-01 -5.54056773e-02 9.58771712e-01]\n", + " [ 2.50331822e-01 -3.39404306e-02 9.67564998e-01]\n", + " [ 2.21767285e-01 -1.25956082e-02 9.75018268e-01]\n", + " [ 1.93205997e-01 8.50165060e-03 9.81121381e-01]\n", + " [ 1.64824489e-01 2.92265532e-02 9.85889799e-01]\n", + " [ 1.36799657e-01 4.94560538e-02 9.89363408e-01]\n", + " [ 2.57381618e-01 -8.50483383e-02 9.62559859e-01]\n", + " [ 2.28970536e-01 -6.34882231e-02 9.71360767e-01]\n", + " [ 2.00428142e-01 -4.19903631e-02 9.78808137e-01]\n", + " [ 1.71929836e-01 -2.06834297e-02 9.84892038e-01]\n", + " [ 1.43651334e-01 3.06132326e-04 9.89628314e-01]\n", + " [ 1.15768322e-01 2.08539765e-02 9.93057303e-01]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:fp_optics: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:fp_optics: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:cartToSphere: vec: [[ 0.03190486 -0.21897145 -0.97520951]\n", + " [ 0.03831294 -0.2444198 -0.96891232]\n", + " [ 0.04497982 -0.2701784 -0.96175904]\n", + " [ 0.05185885 -0.2961287 -0.9537392 ]\n", + " [ 0.05890773 -0.32215621 -0.94485197]\n", + " [ 0.06608804 -0.34814986 -0.93510644]\n", + " [ 0.07336455 -0.37400156 -0.92452176]\n", + " [ 0.08070468 -0.39960628 -0.91312736]\n", + " [ 0.03190486 -0.21897145 -0.97520951]\n", + " [ 0.05724339 -0.20991147 -0.97604322]\n", + " [ 0.08313972 -0.20064226 -0.97613035]\n", + " [ 0.10947226 -0.19117987 -0.97543123]\n", + " [ 0.13612372 -0.1815448 -0.97391571]\n", + " [ 0.16298017 -0.17176211 -0.9715633 ]\n", + " [ 0.18993025 -0.16186111 -0.9683633 ]\n", + " [ 0.21686474 -0.15187498 -0.96431513]\n", + " [ 0.08070468 -0.39960628 -0.91312736]\n", + " [ 0.10754782 -0.39201031 -0.91365277]\n", + " [ 0.13485688 -0.3839463 -0.91345436]\n", + " [ 0.16251742 -0.37542868 -0.91249186]\n", + " [ 0.19041674 -0.3664758 -0.91073429]\n", + " [ 0.21844203 -0.35711056 -0.9081603 ]\n", + " [ 0.24647962 -0.34736088 -0.90475865]\n", + " [ 0.27441535 -0.33725976 -0.90052877]\n", + " [ 0.21686474 -0.15187498 -0.96431513]\n", + " [ 0.22532052 -0.17780817 -0.95792219]\n", + " [ 0.23376762 -0.2041099 -0.95062708]\n", + " [ 0.24216207 -0.23066792 -0.94241702]\n", + " [ 0.25046244 -0.25737189 -0.93328895]\n", + " [ 0.25862937 -0.28411183 -0.92325041]\n", + " [ 0.26662543 -0.31077764 -0.9123202 ]\n", + " [ 0.27441535 -0.33725976 -0.90052877]\n", + " [ 0.03474991 -0.22999081 -0.97257219]\n", + " [ 0.04278524 -0.26140508 -0.96428046]\n", + " [ 0.05116226 -0.29316711 -0.95469129]\n", + " [ 0.05980129 -0.3250645 -0.94379917]\n", + " [ 0.06863154 -0.35689269 -0.9316208 ]\n", + " [ 0.07758926 -0.38845396 -0.91819574]\n", + " [ 0.04289795 -0.2151345 -0.9756418 ]\n", + " [ 0.07434509 -0.20388883 -0.97616707]\n", + " [ 0.10650869 -0.19234413 -0.97553044]\n", + " [ 0.13917106 -0.18053632 -0.97367246]\n", + " [ 0.17212238 -0.16851148 -0.97055539]\n", + " [ 0.20515852 -0.1563252 -0.96616376]\n", + " [ 0.09231834 -0.39626537 -0.91348294]\n", + " [ 0.12554498 -0.38663846 -0.91364608]\n", + " [ 0.15935749 -0.37632265 -0.91268092]\n", + " [ 0.19354776 -0.36535005 -0.91052655]\n", + " [ 0.22790806 -0.35376289 -0.90714372]\n", + " [ 0.26222886 -0.34161468 -0.90251617]\n", + " [ 0.22045729 -0.16316366 -0.96165285]\n", + " [ 0.23081964 -0.19520986 -0.9532132 ]\n", + " [ 0.24112512 -0.22769771 -0.9434047 ]\n", + " [ 0.25129646 -0.26042339 -0.93221765]\n", + " [ 0.26126117 -0.29318436 -0.91966599]\n", + " [ 0.27095122 -0.32577811 -0.90578919]\n", + " [ 0.03201184 -0.2190272 -0.97519348]\n", + " [ 0.03201184 -0.2190272 -0.97519348]\n", + " [ 0.27429388 -0.33720474 -0.90058638]\n", + " [ 0.27429388 -0.33720474 -0.90058638]\n", + " [ 0.04570303 -0.22613644 -0.97302289]\n", + " [ 0.07733183 -0.21498069 -0.97355179]\n", + " [ 0.10966578 -0.20349835 -0.9729141 ]\n", + " [ 0.14248822 -0.19172559 -0.97105016]\n", + " [ 0.17558994 -0.17970892 -0.96792194]\n", + " [ 0.20876684 -0.16750438 -0.96351372]\n", + " [ 0.05390885 -0.25766081 -0.9647304 ]\n", + " [ 0.08599915 -0.24676563 -0.96525171]\n", + " [ 0.11876539 -0.23546816 -0.96459812]\n", + " [ 0.15199388 -0.22380515 -0.96270926]\n", + " [ 0.18547687 -0.21182386 -0.95954624]\n", + " [ 0.21900985 -0.19958131 -0.95509266]\n", + " [ 0.06242827 -0.28953571 -0.9551292 ]\n", + " [ 0.09490315 -0.27891159 -0.95561588]\n", + " [ 0.12802885 -0.26781324 -0.95492653]\n", + " [ 0.16159427 -0.25627733 -0.95300012]\n", + " [ 0.19539247 -0.24435115 -0.94979698]\n", + " [ 0.22921793 -0.23209202 -0.94530018]\n", + " [ 0.07118244 -0.32154928 -0.94421349]\n", + " [ 0.10396722 -0.31120847 -0.94463755]\n", + " [ 0.13738107 -0.30032524 -0.94389152]\n", + " [ 0.17121474 -0.28893544 -0.94191392]\n", + " [ 0.20526149 -0.27708553 -0.93866465]\n", + " [ 0.23931443 -0.26483236 -0.93412656]\n", + " [ 0.08010126 -0.35349713 -0.93199977]\n", + " [ 0.11312284 -0.3434522 -0.93233246]\n", + " [ 0.14675412 -0.33280026 -0.93150803]\n", + " [ 0.1807869 -0.32157576 -0.92946497]\n", + " [ 0.21501413 -0.30982361 -0.92616319]\n", + " [ 0.2492276 -0.29759955 -0.92158565]\n", + " [ 0.08912141 -0.38518124 -0.91852751]\n", + " [ 0.12230735 -0.37544356 -0.91873992]\n", + " [ 0.15608517 -0.36503776 -0.91781526]\n", + " [ 0.19024689 -0.35399655 -0.91569239]\n", + " [ 0.22458496 -0.3423629 -0.91233176]\n", + " [ 0.25889011 -0.33019093 -0.90771684]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:fp_optics: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:cartToSphere: vec: [[ 1.97514867e-03 5.86465033e-01 8.09972138e-01]\n", + " [ 7.66599635e-03 5.64882139e-01 8.25135990e-01]\n", + " [ 1.33158897e-02 5.42395819e-01 8.40017537e-01]\n", + " [ 1.89160357e-02 5.19082657e-01 8.54514703e-01]\n", + " [ 2.44548436e-02 4.95022581e-01 8.68535897e-01]\n", + " [ 2.99180724e-02 4.70299574e-01 8.81999558e-01]\n", + " [ 3.52892435e-02 4.45002308e-01 8.94833848e-01]\n", + " [ 4.05501502e-02 4.19224434e-01 9.06976603e-01]\n", + " [ 1.97514867e-03 5.86465033e-01 8.09972138e-01]\n", + " [-2.47892077e-02 5.83862809e-01 8.11473793e-01]\n", + " [-5.20940578e-02 5.80640934e-01 8.12491425e-01]\n", + " [-7.98206605e-02 5.76801375e-01 8.12975299e-01]\n", + " [-1.07852770e-01 5.72349146e-01 8.12886360e-01]\n", + " [-1.36075828e-01 5.67292659e-01 8.12196040e-01]\n", + " [-1.64376368e-01 5.61644302e-01 8.10885989e-01]\n", + " [-1.92641862e-01 5.55421010e-01 8.08947844e-01]\n", + " [ 4.05501502e-02 4.19224434e-01 9.06976603e-01]\n", + " [ 1.30839685e-02 4.15045045e-01 9.09706777e-01]\n", + " [-1.49540374e-02 4.10443723e-01 9.11763307e-01]\n", + " [-4.34521678e-02 4.05420547e-01 9.13096977e-01]\n", + " [-7.22991562e-02 3.99979633e-01 9.13667951e-01]\n", + " [-1.01382250e-01 3.94129622e-01 9.13445937e-01]\n", + " [-1.30586406e-01 3.87884081e-01 9.12410615e-01]\n", + " [-1.59794653e-01 3.81261684e-01 9.10552139e-01]\n", + " [-1.92641862e-01 5.55421010e-01 8.08947844e-01]\n", + " [-1.88579277e-01 5.32804401e-01 8.24958985e-01]\n", + " [-1.84289163e-01 5.09306035e-01 8.40621714e-01]\n", + " [-1.79779826e-01 4.84996222e-01 8.55837531e-01]\n", + " [-1.75061671e-01 4.59950512e-01 8.70516478e-01]\n", + " [-1.70147478e-01 4.34251399e-01 8.84576485e-01]\n", + " [-1.65052544e-01 4.07989157e-01 8.97943487e-01]\n", + " [-1.59794653e-01 3.81261684e-01 9.10552139e-01]\n", + " [ 4.37014718e-03 5.77162480e-01 8.16617642e-01]\n", + " [ 1.13174011e-02 5.50092409e-01 8.35027100e-01]\n", + " [ 1.81949042e-02 5.21741092e-01 8.52909830e-01]\n", + " [ 2.49824855e-02 4.92254253e-01 8.70092884e-01]\n", + " [ 3.16539723e-02 4.61786573e-01 8.86426075e-01]\n", + " [ 3.81782841e-02 4.30503366e-01 9.01781165e-01]\n", + " [-9.60086700e-03 5.85334118e-01 8.10735341e-01]\n", + " [-4.27829430e-02 5.81727120e-01 8.12258073e-01]\n", + " [-7.66585949e-02 5.77191115e-01 8.13002999e-01]\n", + " [-1.11012820e-01 5.71734065e-01 8.12893790e-01]\n", + " [-1.45634655e-01 5.65371517e-01 8.11877820e-01]\n", + " [-1.80315586e-01 5.58128144e-01 8.09925469e-01]\n", + " [ 2.86345064e-02 4.17543155e-01 9.08205802e-01]\n", + " [-5.42697825e-03 4.12138228e-01 9.11105169e-01]\n", + " [-4.02361766e-02 4.06099036e-01 9.12942837e-01]\n", + " [-7.55881925e-02 3.99431450e-01 9.13641583e-01]\n", + " [-1.11275358e-01 3.92151422e-01 9.13145693e-01]\n", + " [-1.47085024e-01 3.84286045e-01 9.11422093e-01]\n", + " [-1.90802139e-01 5.45695188e-01 8.15972613e-01]\n", + " [-1.85668122e-01 5.17374862e-01 8.35374527e-01]\n", + " [-1.80200568e-01 4.87799452e-01 8.54154231e-01]\n", + " [-1.74417749e-01 4.57105763e-01 8.72142632e-01]\n", + " [-1.68343217e-01 4.25445760e-01 8.89188656e-01]\n", + " [-1.62006179e-01 3.92988844e-01 9.05159525e-01]\n", + " [ 1.90420230e-03 5.86385005e-01 8.10030246e-01]\n", + " [ 1.90420230e-03 5.86385005e-01 8.10030246e-01]\n", + " [-1.59713134e-01 3.81377021e-01 9.10518140e-01]\n", + " [-1.59713134e-01 3.81377021e-01 9.10518140e-01]\n", + " [-7.17878043e-03 5.76068814e-01 8.17369675e-01]\n", + " [-4.04856928e-02 5.72351865e-01 8.19008090e-01]\n", + " [-7.44876765e-02 5.67722195e-01 8.19843336e-01]\n", + " [-1.08970509e-01 5.62187105e-01 8.19799419e-01]\n", + " [-1.43723583e-01 5.55761485e-01 8.18823976e-01]\n", + " [-1.78538185e-01 5.48469555e-01 8.16887547e-01]\n", + " [-3.37281350e-04 5.48877581e-01 8.35902678e-01]\n", + " [-3.39464064e-02 5.44850316e-01 8.37845913e-01]\n", + " [-6.82566800e-02 5.39957817e-01 8.38919890e-01]\n", + " [-1.03056243e-01 5.34205535e-01 8.39049377e-01]\n", + " [-1.38135362e-01 5.27606783e-01 8.38182381e-01]\n", + " [-1.73284465e-01 5.20184861e-01 8.36289546e-01]\n", + " [ 6.46162835e-03 5.20404548e-01 8.53895400e-01]\n", + " [-2.73743159e-02 5.16066582e-01 8.56110933e-01]\n", + " [-6.19200016e-02 5.10912664e-01 8.57399652e-01]\n", + " [-9.69658627e-02 5.04946910e-01 8.57686562e-01]\n", + " [-1.32302807e-01 4.98181794e-01 8.56919406e-01]\n", + " [-1.67720163e-01 4.90640386e-01 8.55068394e-01]\n", + " [ 1.31973122e-02 4.90794621e-01 8.71175339e-01]\n", + " [-2.07912244e-02 4.86143080e-01 8.73631862e-01]\n", + " [-5.54999589e-02 4.80726825e-01 8.75112264e-01]\n", + " [-9.07213030e-02 4.74549490e-01 8.75541219e-01]\n", + " [-1.26246638e-01 4.67623646e-01 8.74865654e-01]\n", + " [-1.61864230e-01 4.59972890e-01 8.73054930e-01]\n", + " [ 1.98430438e-02 4.60201980e-01 8.87592469e-01]\n", + " [-1.42250743e-02 4.55232718e-01 8.90258850e-01]\n", + " [-4.90248899e-02 4.49552305e-01 8.91907666e-01]\n", + " [-8.43503370e-02 4.43164829e-01 8.92462859e-01]\n", + " [-1.19993199e-01 4.36083857e-01 8.91870227e-01]\n", + " [-1.55740999e-01 4.28334179e-01 8.90098069e-01]\n", + " [ 2.63672371e-02 4.28791939e-01 9.03018406e-01]\n", + " [-7.70854466e-03 4.23501131e-01 9.05862777e-01]\n", + " [-4.25278637e-02 4.17555469e-01 9.07655668e-01]\n", + " [-7.78856272e-02 4.10960263e-01 9.08320148e-01]\n", + " [-1.13574022e-01 4.03730768e-01 9.07800864e-01]\n", + " [-1.49380339e-01 3.95893430e-01 9.06065068e-01]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:fp_optics: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:cartToSphere: vec: [[ 0.82384804 -0.55250849 -0.12652577]\n", + " [ 0.82109754 -0.56191269 -0.10026444]\n", + " [ 0.81762764 -0.57104932 -0.0734011 ]\n", + " [ 0.81341657 -0.57985669 -0.04604028]\n", + " [ 0.80845076 -0.58827971 -0.01828544]\n", + " [ 0.80272529 -0.59626913 0.00975869]\n", + " [ 0.79624463 -0.60378118 0.03798404]\n", + " [ 0.78902318 -0.61077782 0.06627881]\n", + " [ 0.82384804 -0.55250849 -0.12652577]\n", + " [ 0.83975984 -0.53024367 -0.1168121 ]\n", + " [ 0.85490763 -0.50763861 -0.10693914]\n", + " [ 0.86924184 -0.4847891 -0.09694402]\n", + " [ 0.88272214 -0.46179693 -0.08686322]\n", + " [ 0.89531747 -0.43876958 -0.07673247]\n", + " [ 0.90700631 -0.41581933 -0.06658702]\n", + " [ 0.91777725 -0.39306098 -0.05646224]\n", + " [ 0.78902318 -0.61077782 0.06627881]\n", + " [ 0.80548883 -0.58769356 0.07618411]\n", + " [ 0.82117724 -0.56415733 0.08599095]\n", + " [ 0.83603675 -0.54026978 0.09566148]\n", + " [ 0.85002718 -0.5161348 0.10516017]\n", + " [ 0.86311918 -0.49185936 0.11445371]\n", + " [ 0.87529288 -0.46755487 0.12351043]\n", + " [ 0.88653661 -0.44333926 0.13229942]\n", + " [ 0.91777725 -0.39306098 -0.05646224]\n", + " [ 0.91575344 -0.40058045 -0.03051136]\n", + " [ 0.91293977 -0.40807428 -0.00404516]\n", + " [ 0.90931287 -0.41548625 0.0228317 ]\n", + " [ 0.90485906 -0.42276334 0.05001232]\n", + " [ 0.89957386 -0.42985789 0.07738905]\n", + " [ 0.89346182 -0.43672831 0.10485402]\n", + " [ 0.88653661 -0.44333926 0.13229942]\n", + " [ 0.8227914 -0.55656166 -0.11512351]\n", + " [ 0.81894031 -0.56791493 -0.08251911]\n", + " [ 0.81398602 -0.57880438 -0.04911459]\n", + " [ 0.80790014 -0.5891259 -0.01510078]\n", + " [ 0.80067371 -0.59878877 0.01932924]\n", + " [ 0.79231905 -0.60771477 0.05397492]\n", + " [ 0.83086803 -0.54288089 -0.12222377]\n", + " [ 0.84986304 -0.51535164 -0.11020665]\n", + " [ 0.86766013 -0.48740575 -0.0979874 ]\n", + " [ 0.88418122 -0.45922813 -0.08563347]\n", + " [ 0.89936918 -0.43101656 -0.07321066]\n", + " [ 0.91318851 -0.40297899 -0.06078386]\n", + " [ 0.79631998 -0.60075184 0.07051042]\n", + " [ 0.81598463 -0.57214344 0.08258918]\n", + " [ 0.8344292 -0.54295579 0.0944824 ]\n", + " [ 0.85157494 -0.51337889 0.10612366]\n", + " [ 0.86736766 -0.48360983 0.11745159]\n", + " [ 0.88177422 -0.45385632 0.12840821]\n", + " [ 0.9169547 -0.3964169 -0.04525175]\n", + " [ 0.91394635 -0.405624 -0.01308609]\n", + " [ 0.90972727 -0.41473633 0.01975007]\n", + " [ 0.9042683 -0.42365481 0.05306072]\n", + " [ 0.89756115 -0.43229174 0.08664772]\n", + " [ 0.889618 -0.44057317 0.12031249]\n", + " [ 0.82389548 -0.55246557 -0.12640421]\n", + " [ 0.82389548 -0.55246557 -0.12640421]\n", + " [ 0.8865248 -0.44339964 0.13217615]\n", + " [ 0.8865248 -0.44339964 0.13217615]\n", + " [ 0.82979106 -0.54693845 -0.1109285 ]\n", + " [ 0.84885787 -0.51928982 -0.09888585]\n", + " [ 0.86671923 -0.49120974 -0.08666465]\n", + " [ 0.88329703 -0.46288338 -0.07433264]\n", + " [ 0.89853407 -0.43450896 -0.06195546]\n", + " [ 0.91239445 -0.40629606 -0.04959721]\n", + " [ 0.82600824 -0.55819474 -0.07828799]\n", + " [ 0.8452571 -0.5302449 -0.06618751]\n", + " [ 0.8632832 -0.50182545 -0.05397526]\n", + " [ 0.88000853 -0.473122 -0.04172009]\n", + " [ 0.89537634 -0.44433285 -0.02948789]\n", + " [ 0.90935039 -0.41566952 -0.0173414 ]\n", + " [ 0.82110958 -0.56900534 -0.04485512]\n", + " [ 0.84050883 -0.540809 -0.03271895]\n", + " [ 0.85867402 -0.51211045 -0.02053801]\n", + " [ 0.87552733 -0.48309589 -0.00838214]\n", + " [ 0.89101297 -0.45396291 0.00368245]\n", + " [ 0.90509541 -0.42492251 0.01559366]\n", + " [ 0.81506642 -0.57926646 -0.01082097]\n", + " [ 0.83458404 -0.55087904 0.00132737]\n", + " [ 0.85286282 -0.52196172 0.01345264]\n", + " [ 0.86982497 -0.49270178 0.02548482]\n", + " [ 0.88541577 -0.46329612 0.03735813]\n", + " [ 0.89960078 -0.4339543 0.0490112 ]\n", + " [ 0.80786937 -0.58888805 0.02362107]\n", + " [ 0.82747249 -0.56036661 0.0357568 ]\n", + " [ 0.84583932 -0.53129177 0.04780064]\n", + " [ 0.86289183 -0.50185214 0.05968348]\n", + " [ 0.87857596 -0.47224438 0.07134093]\n", + " [ 0.89285824 -0.44267679 0.08271287]\n", + " [ 0.79953024 -0.59779259 0.05827016]\n", + " [ 0.81918496 -0.56919622 0.07036816]\n", + " [ 0.83761391 -0.54002669 0.08230496]\n", + " [ 0.85473858 -0.51047375 0.09401337]\n", + " [ 0.87050492 -0.4807343 0.10543115]\n", + " [ 0.88487984 -0.45101605 0.11649976]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:cartToSphere: vec: [[-1.81187577e-01 3.69445421e-01 -9.11417107e-01]\n", + " [-1.53599254e-01 3.72695787e-01 -9.15153058e-01]\n", + " [-1.25342701e-01 3.75707893e-01 -9.18222624e-01]\n", + " [-9.65239318e-02 3.78453594e-01 -9.20573738e-01]\n", + " [-6.72501786e-02 3.80908588e-01 -9.22163793e-01]\n", + " [-3.76316509e-02 3.83052371e-01 -9.22959772e-01]\n", + " [-7.78233373e-03 3.84868371e-01 -9.22938661e-01]\n", + " [ 2.21803771e-02 3.86344190e-01 -9.22087955e-01]\n", + " [-1.81187577e-01 3.69445421e-01 -9.11417107e-01]\n", + " [-1.82683241e-01 3.96040140e-01 -8.99877237e-01]\n", + " [-1.83924890e-01 4.22228989e-01 -8.87634111e-01]\n", + " [-1.84907029e-01 4.47914862e-01 -8.74746630e-01]\n", + " [-1.85624348e-01 4.73005739e-01 -8.61283445e-01]\n", + " [-1.86071259e-01 4.97414666e-01 -8.47322923e-01]\n", + " [-1.86241496e-01 5.21059450e-01 -8.32953273e-01]\n", + " [-1.86127978e-01 5.43862288e-01 -8.18272685e-01]\n", + " [ 2.21803771e-02 3.86344190e-01 -9.22087955e-01]\n", + " [ 2.04823295e-02 4.13822001e-01 -9.10127368e-01]\n", + " [ 1.87733766e-02 4.40839555e-01 -8.97389574e-01]\n", + " [ 1.70605177e-02 4.67295666e-01 -8.83936479e-01]\n", + " [ 1.53508095e-02 4.93096825e-01 -8.69838993e-01]\n", + " [ 1.36513514e-02 5.18157402e-01 -8.55176325e-01]\n", + " [ 1.19693416e-02 5.42398842e-01 -8.40035851e-01]\n", + " [ 1.03121957e-02 5.65748059e-01 -8.24513670e-01]\n", + " [-1.86127978e-01 5.43862288e-01 -8.18272685e-01]\n", + " [-1.59552115e-01 5.48438138e-01 -8.20828077e-01]\n", + " [-1.32295294e-01 5.52572962e-01 -8.22897975e-01]\n", + " [-1.04468625e-01 5.56237736e-01 -8.24430644e-01]\n", + " [-7.61830358e-02 5.59407122e-01 -8.25384648e-01]\n", + " [-4.75496948e-02 5.62059540e-01 -8.25728830e-01]\n", + " [-1.86804275e-02 5.64177502e-01 -8.25442177e-01]\n", + " [ 1.03121957e-02 5.65748059e-01 -8.24513670e-01]\n", + " [-1.69253496e-01 3.70981802e-01 -9.13085843e-01]\n", + " [-1.34978516e-01 3.74809878e-01 -9.17223177e-01]\n", + " [-9.98051258e-02 3.78251512e-01 -9.20306868e-01]\n", + " [-6.39301256e-02 3.81260374e-01 -9.22254556e-01]\n", + " [-2.75565007e-02 3.83798726e-01 -9.23005513e-01]\n", + " [ 9.10443033e-03 3.85837777e-01 -9.22521718e-01]\n", + " [-1.81777507e-01 3.81096151e-01 -9.06489195e-01]\n", + " [-1.83440687e-01 4.13431141e-01 -8.91865576e-01]\n", + " [-1.84716998e-01 4.45059384e-01 -8.76242989e-01]\n", + " [-1.85596607e-01 4.75809348e-01 -8.59743778e-01]\n", + " [-1.86069185e-01 5.05520917e-01 -8.42512232e-01]\n", + " [-1.86122847e-01 5.34044614e-01 -8.24714882e-01]\n", + " [ 2.13393039e-02 3.98369976e-01 -9.16976552e-01]\n", + " [ 1.92501532e-02 4.31750347e-01 -9.01787708e-01]\n", + " [ 1.71517704e-02 4.64338061e-01 -8.85491944e-01]\n", + " [ 1.50571207e-02 4.95957733e-01 -8.68216108e-01]\n", + " [ 1.29792740e-02 5.26451627e-01 -8.50106007e-01]\n", + " [ 1.09315604e-02 5.55677487e-01 -8.31326068e-01]\n", + " [-1.74632125e-01 5.45832896e-01 -8.19493790e-01]\n", + " [-1.41587585e-01 5.51147743e-01 -8.22307194e-01]\n", + " [-1.07630646e-01 5.55771016e-01 -8.24338657e-01]\n", + " [-7.29655860e-02 5.59654548e-01 -8.25507608e-01]\n", + " [-3.77971109e-02 5.62758645e-01 -8.25756675e-01]\n", + " [-2.33141025e-03 5.65052976e-01 -8.25051331e-01]\n", + " [-1.81100035e-01 3.69548432e-01 -9.11392744e-01]\n", + " [-1.81100035e-01 3.69548432e-01 -9.11392744e-01]\n", + " [ 1.02185820e-02 5.65665386e-01 -8.24571557e-01]\n", + " [ 1.02185820e-02 5.65665386e-01 -8.24571557e-01]\n", + " [-1.69935564e-01 3.82574142e-01 -9.08162392e-01]\n", + " [-1.71627632e-01 4.15030286e-01 -8.93472897e-01]\n", + " [-1.72956451e-01 4.46771477e-01 -8.77770650e-01]\n", + " [-1.73912552e-01 4.77625955e-01 -8.61178188e-01]\n", + " [-1.74486057e-01 5.07433787e-01 -8.43839776e-01]\n", + " [-1.74665421e-01 5.36045912e-01 -8.25921770e-01]\n", + " [-1.35672747e-01 3.86514377e-01 -9.12249715e-01]\n", + " [-1.37444411e-01 4.19274603e-01 -8.97395031e-01]\n", + " [-1.38919834e-01 4.51298224e-01 -8.81493728e-01]\n", + " [-1.40090305e-01 4.82412691e-01 -8.64669129e-01]\n", + " [-1.40947023e-01 5.12458631e-01 -8.47065575e-01]\n", + " [-1.41479471e-01 5.41288482e-01 -8.28848803e-01]\n", + " [-1.00510302e-01 3.90046804e-01 -9.15292942e-01]\n", + " [-1.02358884e-01 4.23052465e-01 -9.00305099e-01]\n", + " [-1.03979049e-01 4.55302511e-01 -8.84244299e-01]\n", + " [-1.05362210e-01 4.86623475e-01 -8.67234915e-01]\n", + " [-1.06499959e-01 5.16856527e-01 -8.49421620e-01]\n", + " [-1.07382410e-01 5.45855798e-01 -8.30969594e-01]\n", + " [-6.46450420e-02 3.93124498e-01 -9.17209980e-01]\n", + " [-6.65683549e-02 4.26315470e-01 -9.02121818e-01]\n", + " [-6.83325211e-02 4.58735002e-01 -8.85941795e-01]\n", + " [-6.99283183e-02 4.90208738e-01 -8.68795387e-01]\n", + " [-7.13468267e-02 5.20578311e-01 -8.50827746e-01]\n", + " [-7.25780021e-02 5.49699437e-01 -8.32203678e-01]\n", + " [-2.82799131e-02 3.95709018e-01 -9.17940423e-01]\n", + " [-3.02757097e-02 4.29023434e-01 -9.02785841e-01]\n", + " [-3.21832019e-02 4.61554402e-01 -8.86527933e-01]\n", + " [-3.39918559e-02 4.93126883e-01 -8.69293064e-01]\n", + " [-3.56913682e-02 5.23582867e-01 -8.51226825e-01]\n", + " [-3.72706950e-02 5.52779300e-01 -8.32493808e-01]\n", + " [ 8.37385030e-03 3.97770951e-01 -9.17446537e-01]\n", + " [ 6.30842084e-03 4.31145437e-01 -9.02260393e-01]\n", + " [ 4.25929880e-03 4.63728841e-01 -8.85966941e-01]\n", + " [ 2.23877950e-03 4.95345796e-01 -8.68693001e-01]\n", + " [ 2.59157879e-04 5.25838520e-01 -8.50584378e-01]\n", + " [-1.66689227e-03 5.55064656e-01 -8.31805535e-01]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:fp_optics: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:cartToSphere: vec: [[-1.12894915e-01 -2.14758642e-01 -9.70120335e-01]\n", + " [-9.89304996e-02 -1.92496012e-01 -9.76298131e-01]\n", + " [-8.47351062e-02 -1.69540560e-01 -9.81873699e-01]\n", + " [-7.03520480e-02 -1.45993475e-01 -9.86780875e-01]\n", + " [-5.58275571e-02 -1.21953344e-01 -9.90964513e-01]\n", + " [-4.12108250e-02 -9.75175524e-02 -9.94380206e-01]\n", + " [-2.65537647e-02 -7.27832930e-02 -9.96994228e-01]\n", + " [-1.19105921e-02 -4.78480333e-02 -9.98783612e-01]\n", + " [-1.12894915e-01 -2.14758642e-01 -9.70120335e-01]\n", + " [-1.37006123e-01 -2.02779676e-01 -9.69592556e-01]\n", + " [-1.61469093e-01 -1.90252916e-01 -9.68365406e-01]\n", + " [-1.86177517e-01 -1.77239749e-01 -9.66397436e-01]\n", + " [-2.11027702e-01 -1.63798664e-01 -9.63658293e-01]\n", + " [-2.35917661e-01 -1.49986483e-01 -9.60128591e-01]\n", + " [-2.60746702e-01 -1.35859419e-01 -9.55799862e-01]\n", + " [-2.85415518e-01 -1.21473759e-01 -9.50674554e-01]\n", + " [-1.19105921e-02 -4.78480333e-02 -9.98783612e-01]\n", + " [-3.60297291e-02 -3.38155989e-02 -9.98778436e-01]\n", + " [-6.06143804e-02 -1.94650910e-02 -9.97971446e-01]\n", + " [-8.55644166e-02 -4.85277102e-03 -9.96320822e-01]\n", + " [-1.10779964e-01 9.96478072e-03 -9.93795000e-01]\n", + " [-1.36160216e-01 2.49299147e-02 -9.90373109e-01]\n", + " [-1.61603245e-01 3.99837515e-02 -9.86045481e-01]\n", + " [-1.87006586e-01 5.50664814e-02 -9.80814060e-01]\n", + " [-2.85415518e-01 -1.21473759e-01 -9.50674554e-01]\n", + " [-2.72546728e-01 -9.74491513e-02 -9.57194831e-01]\n", + " [-2.59207615e-01 -7.28664564e-02 -9.63068996e-01]\n", + " [-2.45438982e-01 -4.78196176e-02 -9.68231889e-01]\n", + " [-2.31284825e-01 -2.24039404e-02 -9.72628086e-01]\n", + " [-2.16792946e-01 3.28282791e-03 -9.76212088e-01]\n", + " [-2.02015074e-01 2.91403824e-02 -9.78948797e-01]\n", + " [-1.87006586e-01 5.50664814e-02 -9.80814060e-01]\n", + " [-1.06919342e-01 -2.05103345e-01 -9.72882764e-01]\n", + " [-8.96442817e-02 -1.77337814e-01 -9.80058775e-01]\n", + " [-7.20648266e-02 -1.48632629e-01 -9.86263151e-01]\n", + " [-5.42648631e-02 -1.19170286e-01 -9.91389816e-01]\n", + " [-3.63349262e-02 -8.91301772e-02 -9.95357014e-01]\n", + " [-1.83715684e-02 -5.86913457e-02 -9.98107114e-01]\n", + " [-1.23310167e-01 -2.09531811e-01 -9.69995373e-01]\n", + " [-1.53111616e-01 -1.94472546e-01 -9.68884545e-01]\n", + " [-1.83335531e-01 -1.78652001e-01 -9.66680684e-01]\n", + " [-2.13789991e-01 -1.62178995e-01 -9.63323317e-01]\n", + " [-2.44287195e-01 -1.45158251e-01 -9.58776746e-01]\n", + " [-2.74642326e-01 -1.27693269e-01 -9.53029917e-01]\n", + " [-2.24130878e-02 -4.18584277e-02 -9.98872127e-01]\n", + " [-5.22997785e-02 -2.44401192e-02 -9.98332316e-01]\n", + " [-8.27859840e-02 -6.59981616e-03 -9.96545495e-01]\n", + " [-1.13687830e-01 1.15585157e-02 -9.93449283e-01]\n", + " [-1.44819713e-01 2.99287332e-02 -9.89005319e-01]\n", + " [-1.75993713e-01 4.84020320e-02 -9.83200619e-01]\n", + " [-2.79780718e-01 -1.11123360e-01 -9.53611215e-01]\n", + " [-2.63686616e-01 -8.12921673e-02 -9.61176858e-01]\n", + " [-2.46926468e-01 -5.07158959e-02 -9.67706163e-01]\n", + " [-2.29579900e-01 -1.95693393e-02 -9.73093064e-01]\n", + " [-2.11734931e-01 1.19675448e-02 -9.77253855e-01]\n", + " [-1.93488338e-01 4.37092477e-02 -9.80128443e-01]\n", + " [-1.12929332e-01 -2.14643849e-01 -9.70141734e-01]\n", + " [-1.12929332e-01 -2.14643849e-01 -9.70141734e-01]\n", + " [-1.86971550e-01 5.49262653e-02 -9.80828601e-01]\n", + " [-1.86971550e-01 5.49262653e-02 -9.80828601e-01]\n", + " [-1.17322492e-01 -1.99921839e-01 -9.72762402e-01]\n", + " [-1.47192879e-01 -1.84682289e-01 -9.71713285e-01]\n", + " [-1.77494911e-01 -1.68704650e-01 -9.69553659e-01]\n", + " [-2.08037274e-01 -1.52096356e-01 -9.66223158e-01]\n", + " [-2.38632251e-01 -1.34961261e-01 -9.61686075e-01]\n", + " [-2.69094652e-01 -1.17402545e-01 -9.55931331e-01]\n", + " [-1.00093992e-01 -1.71969988e-01 -9.80003835e-01]\n", + " [-1.30113701e-01 -1.56247563e-01 -9.79110374e-01]\n", + " [-1.60592929e-01 -1.39850206e-01 -9.77062859e-01]\n", + " [-1.91342005e-01 -1.22882101e-01 -9.73800917e-01]\n", + " [-2.22173348e-01 -1.05445468e-01 -9.69288531e-01]\n", + " [-2.52900613e-01 -8.76432918e-02 -9.63514366e-01]\n", + " [-8.25365652e-02 -1.43092601e-01 -9.86261742e-01]\n", + " [-1.12637721e-01 -1.26924694e-01 -9.85496254e-01]\n", + " [-1.43228591e-01 -1.10141942e-01 -9.83541724e-01]\n", + " [-1.74121026e-01 -9.28465958e-02 -9.80337380e-01]\n", + " [-2.05127557e-01 -7.51404875e-02 -9.75846603e-01]\n", + " [-2.36060766e-01 -5.71273070e-02 -9.70057620e-01]\n", + " [-6.47343633e-02 -1.13470748e-01 -9.91430205e-01]\n", + " [-9.48494849e-02 -9.68912836e-02 -9.90765186e-01]\n", + " [-1.25486170e-01 -7.97551444e-02 -9.88884391e-01]\n", + " [-1.56457680e-01 -6.21639923e-02 -9.85726449e-01]\n", + " [-1.87576794e-01 -4.42203045e-02 -9.81254050e-01]\n", + " [-2.18655341e-01 -2.60290919e-02 -9.75454934e-01]\n", + " [-4.67783186e-02 -8.32830806e-02 -9.95427404e-01]\n", + " [-7.68406706e-02 -6.63246284e-02 -9.94834939e-01]\n", + " [-1.07457425e-01 -4.88668050e-02 -9.93008025e-01]\n", + " [-1.38443157e-01 -3.10117796e-02 -9.89884722e-01]\n", + " [-1.69611142e-01 -1.28633749e-02 -9.85427113e-01]\n", + " [-2.00772934e-01 5.47177873e-03 -9.79622523e-01]\n", + " [-2.87654652e-02 -5.27085864e-02 -9.98195548e-01]\n", + " [-5.87093916e-02 -3.54041957e-02 -9.97647107e-01]\n", + " [-8.92410264e-02 -1.76575924e-02 -9.95853528e-01]\n", + " [-1.20176128e-01 4.27805747e-04 -9.92752494e-01]\n", + " [-1.51328753e-01 1.87464790e-02 -9.88305711e-01]\n", + " [-1.82510746e-01 3.71901608e-02 -9.82500239e-01]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:fp_optics: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:cartToSphere: vec: [[-0.20209605 -0.17945696 0.96278367]\n", + " [-0.17575631 -0.18300805 0.96727337]\n", + " [-0.14874678 -0.18664949 0.97110059]\n", + " [-0.12117476 -0.1903428 0.9742106 ]\n", + " [-0.09314809 -0.19405429 0.97655843]\n", + " [-0.06477538 -0.19775507 0.97810893]\n", + " [-0.03616639 -0.20142071 0.97883691]\n", + " [-0.007432 -0.20503089 0.97872729]\n", + " [-0.20209605 -0.17945696 0.96278367]\n", + " [-0.20728688 -0.20510923 0.95653665]\n", + " [-0.21228489 -0.23119682 0.94946467]\n", + " [-0.21707431 -0.25759431 0.94155399]\n", + " [-0.22163918 -0.28418066 0.93280085]\n", + " [-0.22596332 -0.31083899 0.92321162]\n", + " [-0.2300306 -0.33745614 0.91280298]\n", + " [-0.23382533 -0.36392254 0.90160196]\n", + " [-0.007432 -0.20503089 0.97872729]\n", + " [-0.01098557 -0.23202514 0.97264775]\n", + " [-0.0145993 -0.25938768 0.96566293]\n", + " [-0.01825854 -0.28699786 0.9577572 ]\n", + " [-0.02194872 -0.31473828 0.94892469]\n", + " [-0.02565514 -0.34249305 0.93917002]\n", + " [-0.02936293 -0.37014695 0.92850905]\n", + " [-0.0330571 -0.3975858 0.91696934]\n", + " [-0.23382533 -0.36392254 0.90160196]\n", + " [-0.20674477 -0.36944781 0.90596077]\n", + " [-0.17895645 -0.37479132 0.9096736 ]\n", + " [-0.15056241 -0.3799149 0.91268594]\n", + " [-0.12166628 -0.38478446 0.91495258]\n", + " [-0.09237512 -0.38936976 0.91643768]\n", + " [-0.06280027 -0.39364434 0.91711518]\n", + " [-0.0330571 -0.3975858 0.91696934]\n", + " [-0.19071874 -0.18107883 0.96479885]\n", + " [-0.1579718 -0.18549823 0.96986356]\n", + " [-0.12432533 -0.19001438 0.97387769]\n", + " [-0.08997761 -0.19456325 0.97675441]\n", + " [-0.05512867 -0.19909163 0.97842902]\n", + " [-0.01998102 -0.20355627 0.97885934]\n", + " [-0.20429282 -0.19059218 0.96017658]\n", + " [-0.21052619 -0.22234185 0.95196787]\n", + " [-0.21645444 -0.25462024 0.94250518]\n", + " [-0.22204829 -0.28720269 0.93177742]\n", + " [-0.227278 -0.31987398 0.91979636]\n", + " [-0.23211399 -0.35242728 0.90659699]\n", + " [-0.00907177 -0.21673498 0.97618833]\n", + " [-0.01347034 -0.25008214 0.96813092]\n", + " [-0.01794451 -0.28386217 0.95869717]\n", + " [-0.02246743 -0.31785771 0.94787219]\n", + " [-0.02701204 -0.35185528 0.93566458]\n", + " [-0.0315509 -0.38564317 0.92210839]\n", + " [-0.22209914 -0.36626081 0.90361773]\n", + " [-0.18842028 -0.37291449 0.9085332 ]\n", + " [-0.15377967 -0.37925693 0.91242314]\n", + " [-0.11836734 -0.38522371 0.91520045]\n", + " [-0.08238048 -0.39075915 0.91679918]\n", + " [-0.04602579 -0.39581622 0.91717564]\n", + " [-0.2020253 -0.17955574 0.9627801 ]\n", + " [-0.2020253 -0.17955574 0.9627801 ]\n", + " [-0.03314637 -0.39747957 0.91701216]\n", + " [-0.03314637 -0.39747957 0.91701216]\n", + " [-0.19294446 -0.19217871 0.96220569]\n", + " [-0.19907541 -0.22410171 0.95401646]\n", + " [-0.20492509 -0.25654405 0.94455855]\n", + " [-0.21046403 -0.28928151 0.9338207 ]\n", + " [-0.21566209 -0.32209917 0.92181451]\n", + " [-0.2204893 -0.3547901 0.90857496]\n", + " [-0.16007653 -0.19675835 0.96729605]\n", + " [-0.16591052 -0.22911836 0.95915509]\n", + " [-0.17153092 -0.26197365 0.94970888]\n", + " [-0.17690769 -0.29510175 0.93894549]\n", + " [-0.18200971 -0.32828863 0.92687596]\n", + " [-0.18680597 -0.36132679 0.91353516]\n", + " [-0.12630517 -0.20140582 0.97133038]\n", + " [-0.13183098 -0.23412319 0.96322735]\n", + " [-0.13721058 -0.26731589 0.95379006]\n", + " [-0.14241361 -0.30076336 0.94300571]\n", + " [-0.14740856 -0.33425219 0.93088463]\n", + " [-0.15216402 -0.36757392 0.91746146]\n", + " [-0.09182826 -0.20605735 0.97422171]\n", + " [-0.09703312 -0.2390535 0.96614595]\n", + " [-0.10215853 -0.27250885 0.95671446]\n", + " [-0.10717447 -0.30620451 0.94591355]\n", + " [-0.11204986 -0.33992731 0.93375278]\n", + " [-0.11675368 -0.37346762 0.92026654]\n", + " [-0.05684563 -0.21066014 0.97590516]\n", + " [-0.06171616 -0.24385749 0.96784536]\n", + " [-0.06657341 -0.27750118 0.95841592]\n", + " [-0.07138835 -0.31137335 0.94760242]\n", + " [-0.07613126 -0.34526085 0.9354138 ]\n", + " [-0.08077224 -0.37895292 0.92188423]\n", + " [-0.02156001 -0.21517127 0.97633831]\n", + " [-0.02608366 -0.2484929 0.96828246]\n", + " [-0.03065976 -0.28225053 0.95885068]\n", + " [-0.03526085 -0.31622677 0.94802811]\n", + " [-0.03985911 -0.35020827 0.93582339]\n", + " [-0.04442639 -0.38398346 0.92227057]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:fp_optics: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:cartToSphere: vec: [[-0.16674283 0.5394877 -0.82531803]\n", + " [-0.146144 0.52553968 -0.83812289]\n", + " [-0.12501518 0.51088808 -0.85050842]\n", + " [-0.10343445 0.49556842 -0.86238811]\n", + " [-0.08148099 0.47962132 -0.87368429]\n", + " [-0.05923644 0.46309356 -0.88432766]\n", + " [-0.0367856 0.44603882 -0.89425734]\n", + " [-0.0142162 0.42851779 -0.9034215 ]\n", + " [-0.16674283 0.5394877 -0.82531803]\n", + " [-0.14753078 0.55906912 -0.81588994]\n", + " [-0.12818316 0.57807171 -0.80585493]\n", + " [-0.10877508 0.59642646 -0.79526314]\n", + " [-0.08938143 0.61406988 -0.78417418]\n", + " [-0.07007661 0.63094369 -0.77265732]\n", + " [-0.05093444 0.64699441 -0.76079164]\n", + " [-0.03202834 0.66217301 -0.74866621]\n", + " [-0.0142162 0.42851779 -0.9034215 ]\n", + " [ 0.00555473 0.44885072 -0.89358949]\n", + " [ 0.0252598 0.46871444 -0.88298851]\n", + " [ 0.04482139 0.48803635 -0.87167171]\n", + " [ 0.06416409 0.50675109 -0.85970129]\n", + " [ 0.08321506 0.52480066 -0.84714787]\n", + " [ 0.1019036 0.54213374 -0.83409032]\n", + " [ 0.12016014 0.55870443 -0.82061617]\n", + " [-0.03202834 0.66217301 -0.74866621]\n", + " [-0.01094351 0.64969778 -0.76011383]\n", + " [ 0.01049853 0.63638292 -0.77130186]\n", + " [ 0.03221539 0.62226649 -0.78214231]\n", + " [ 0.05412415 0.60739086 -0.7925572 ]\n", + " [ 0.07614106 0.591803 -0.8024785 ]\n", + " [ 0.09818149 0.575555 -0.81184779]\n", + " [ 0.12016014 0.55870443 -0.82061617]\n", + " [-0.15776619 0.53356305 -0.83091534]\n", + " [-0.13215333 0.51599161 -0.84633809]\n", + " [-0.10582207 0.49739803 -0.86104407]\n", + " [-0.07891763 0.47785491 -0.87488668]\n", + " [-0.05159042 0.45744845 -0.88773833]\n", + " [-0.02399779 0.43628042 -0.89949069]\n", + " [-0.15831807 0.54804561 -0.82132904]\n", + " [-0.13467053 0.57166512 -0.80935953]\n", + " [-0.11089414 0.59434604 -0.79652701]\n", + " [-0.08712687 0.61596921 -0.78293732]\n", + " [-0.06350569 0.6364273 -0.76871797]\n", + " [-0.04016633 0.6556237 -0.75401872]\n", + " [-0.00567022 0.4374964 -0.89920229]\n", + " [ 0.01852671 0.46211026 -0.88662893]\n", + " [ 0.04254753 0.48594632 -0.87295239]\n", + " [ 0.06625246 0.50888123 -0.85828347]\n", + " [ 0.08950734 0.53080813 -0.84275214]\n", + " [ 0.11218255 0.55163485 -0.82650715]\n", + " [-0.02294859 0.65678851 -0.75372556]\n", + " [ 0.00314376 0.6409286 -0.76759406]\n", + " [ 0.02969096 0.62384494 -0.78098396]\n", + " [ 0.05654061 0.60561373 -0.79374755]\n", + " [ 0.0835385 0.58632151 -0.80575952]\n", + " [ 0.11052854 0.56606644 -0.81691629]\n", + " [-0.16660799 0.53950911 -0.82533127]\n", + " [-0.16660799 0.53950911 -0.82533127]\n", + " [ 0.12002356 0.5587077 -0.82063393]\n", + " [ 0.12002356 0.5587077 -0.82063393]\n", + " [-0.14944487 0.54213397 -0.826896 ]\n", + " [-0.12572025 0.56585521 -0.81486336]\n", + " [-0.10188473 0.58864397 -0.80194624]\n", + " [-0.07807677 0.61038116 -0.7882505 ]\n", + " [-0.05443353 0.63095987 -0.77390351]\n", + " [-0.03109066 0.65028396 -0.75905477]\n", + " [-0.1237534 0.5246495 -0.84227549]\n", + " [-0.09983993 0.54863077 -0.83008209]\n", + " [-0.07586702 0.5716989 -0.81694833]\n", + " [-0.05197441 0.5937348 -0.80298048]\n", + " [-0.02829974 0.61463266 -0.78830566]\n", + " [-0.00497829 0.63429804 -0.77307258]\n", + " [-0.09735901 0.50612719 -0.85694602]\n", + " [-0.07330137 0.53032666 -0.84461858]\n", + " [-0.04923687 0.55363601 -0.83130193]\n", + " [-0.02530626 0.57593568 -0.81710322]\n", + " [-0.00164728 0.59712062 -0.80214977]\n", + " [ 0.02160556 0.61709798 -0.78658965]\n", + " [-0.07040738 0.48663923 -0.8707612 ]\n", + " [-0.04625178 0.51101441 -0.85832688]\n", + " [-0.0221431 0.53452695 -0.8448613 ]\n", + " [ 0.00177737 0.55705639 -0.83047277]\n", + " [ 0.02537241 0.57849781 -0.81528922]\n", + " [ 0.04850865 0.59875948 -0.79945856]\n", + " [-0.04304944 0.46627132 -0.88359368]\n", + " [-0.01884347 0.49077854 -0.87108057]\n", + " [ 0.00526084 0.51445562 -0.85750087]\n", + " [ 0.02912237 0.53718094 -0.84296413]\n", + " [ 0.05260493 0.55884907 -0.8275992 ]\n", + " [ 0.07557672 0.57936863 -0.81155416]\n", + " [-0.01544296 0.44512474 -0.8953354 ]\n", + " [ 0.00876491 0.46971891 -0.88277252]\n", + " [ 0.03281604 0.49352071 -0.86911473]\n", + " [ 0.0565702 0.51640725 -0.85447257]\n", + " [ 0.07989264 0.53827208 -0.83897576]\n", + " [ 0.10265323 0.55902338 -0.82277286]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:cartToSphere: vec: [[-0.02987893 -0.14550249 0.98890661]\n", + " [-0.01441273 -0.12365391 0.99222073]\n", + " [ 0.00152011 -0.10134355 0.99485033]\n", + " [ 0.01783627 -0.07865401 0.9967424 ]\n", + " [ 0.03445737 -0.055669 0.99785452]\n", + " [ 0.05130868 -0.03247395 0.99815473]\n", + " [ 0.06831808 -0.00915629 0.99762157]\n", + " [ 0.08541547 0.01419485 0.9962443 ]\n", + " [-0.02987893 -0.14550249 0.98890661]\n", + " [-0.00949829 -0.16294559 0.98658933]\n", + " [ 0.01143252 -0.1805251 0.98350393]\n", + " [ 0.03281034 -0.1981695 0.97961846]\n", + " [ 0.05453706 -0.21580802 0.97491159]\n", + " [ 0.07651814 -0.23337033 0.96937261]\n", + " [ 0.0986615 -0.25078656 0.96300156]\n", + " [ 0.1208769 -0.26798765 0.95580929]\n", + " [ 0.08541547 0.01419485 0.9962443 ]\n", + " [ 0.1077401 -0.00243391 0.99417611]\n", + " [ 0.13043794 -0.01939867 0.99126668]\n", + " [ 0.15341293 -0.03663157 0.98748296]\n", + " [ 0.17657011 -0.0540646 0.98280212]\n", + " [ 0.1998145 -0.07162882 0.97721209]\n", + " [ 0.22305094 -0.08925426 0.97071209]\n", + " [ 0.24618469 -0.10687031 0.96331295]\n", + " [ 0.1208769 -0.26798765 0.95580929]\n", + " [ 0.13842982 -0.24644556 0.95921936]\n", + " [ 0.15622633 -0.22427737 0.96192151]\n", + " [ 0.17418892 -0.2015604 0.96386287]\n", + " [ 0.1922414 -0.17837492 0.96500033]\n", + " [ 0.21030811 -0.1548052 0.96530091]\n", + " [ 0.22831392 -0.13093964 0.96474223]\n", + " [ 0.24618469 -0.10687031 0.96331295]\n", + " [-0.02312931 -0.13609773 0.99042538]\n", + " [-0.00384765 -0.10899889 0.99403442]\n", + " [ 0.01605137 -0.08128829 0.99656137]\n", + " [ 0.03642146 -0.05311953 0.99792374]\n", + " [ 0.05712493 -0.02464996 0.99806268]\n", + " [ 0.07802987 0.00395879 0.99694316]\n", + " [-0.02101479 -0.15301246 0.98800079]\n", + " [ 0.00434873 -0.17449148 0.98464908]\n", + " [ 0.03043537 -0.19610436 0.98011059]\n", + " [ 0.05706249 -0.21772053 0.97434164]\n", + " [ 0.08405593 -0.23921052 0.96732256]\n", + " [ 0.11124694 -0.26044601 0.95905787]\n", + " [ 0.09503817 0.00691022 0.99544964]\n", + " [ 0.12266185 -0.01370535 0.99235389]\n", + " [ 0.15075057 -0.03475798 0.9879606 ]\n", + " [ 0.17912914 -0.05612259 0.9822235 ]\n", + " [ 0.20762269 -0.07767226 0.97512042]\n", + " [ 0.23605617 -0.09927786 0.96665474]\n", + " [ 0.12841873 -0.25861848 0.95740541]\n", + " [ 0.15010451 -0.23178524 0.96111614]\n", + " [ 0.1720791 -0.20408826 0.9637099 ]\n", + " [ 0.19420175 -0.17567403 0.96510327]\n", + " [ 0.21633318 -0.14669767 0.96523559]\n", + " [ 0.23833545 -0.11732351 0.96407023]\n", + " [-0.02975829 -0.14548799 0.98891238]\n", + " [-0.02975829 -0.14548799 0.98891238]\n", + " [ 0.24604506 -0.10689271 0.96334614]\n", + " [ 0.24604506 -0.10689271 0.96334614]\n", + " [-0.0143103 -0.14361443 0.98953025]\n", + " [ 0.01125286 -0.16508372 0.98621536]\n", + " [ 0.03751945 -0.18670522 0.98169927]\n", + " [ 0.06430836 -0.20834836 0.97593821]\n", + " [ 0.09144624 -0.22988339 0.96891239]\n", + " [ 0.11876449 -0.25118152 0.96062627]\n", + " [ 0.00516809 -0.11648278 0.99317926]\n", + " [ 0.03125079 -0.13789421 0.98995382]\n", + " [ 0.05798496 -0.15951027 0.98549187]\n", + " [ 0.0851931 -0.18120061 0.97974919]\n", + " [ 0.1127034 -0.20283495 0.97270547]\n", + " [ 0.14034695 -0.22428335 0.96436493]\n", + " [ 0.02523976 -0.08872299 0.9957365 ]\n", + " [ 0.05177753 -0.11003029 0.99257867]\n", + " [ 0.07891963 -0.1315952 0.98815707]\n", + " [ 0.10649088 -0.15328799 0.98242683]\n", + " [ 0.13431981 -0.17497833 0.97536699]\n", + " [ 0.1622364 -0.19653556 0.96698145]\n", + " [ 0.04575984 -0.0604883 0.99711945]\n", + " [ 0.07269162 -0.08164416 0.99400712]\n", + " [ 0.10018403 -0.10311099 0.98961168]\n", + " [ 0.12806295 -0.12476016 0.98388759]\n", + " [ 0.15615632 -0.14646179 0.97681326]\n", + " [ 0.18429257 -0.16808508 0.9683923 ]\n", + " [ 0.06659151 -0.0319361 0.9972691 ]\n", + " [ 0.09385774 -0.05289333 0.99417957]\n", + " [ 0.12164312 -0.07421512 0.98979547]\n", + " [ 0.14977352 -0.09577424 0.98407072]\n", + " [ 0.17807581 -0.11744182 0.97698333]\n", + " [ 0.20637675 -0.13908742 0.96853669]\n", + " [ 0.08760307 -0.00322848 0.99615023]\n", + " [ 0.11514415 -0.02394106 0.99306025]\n", + " [ 0.14316422 -0.0450718 0.98867211]\n", + " [ 0.17148846 -0.06649506 0.98293953]\n", + " [ 0.19994243 -0.08808336 0.97584033]\n", + " [ 0.2283515 -0.10970716 0.96737786]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:fp_optics: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:cartToSphere: vec: [[-9.73579933e-01 2.24726796e-01 -4.04966913e-02]\n", + " [-9.70493548e-01 2.31810429e-01 -6.63792035e-02]\n", + " [-9.66583741e-01 2.39003091e-01 -9.27005642e-02]\n", + " [-9.61827560e-01 2.46257059e-01 -1.19353281e-01]\n", + " [-9.56212396e-01 2.53525507e-01 -1.46228150e-01]\n", + " [-9.49735705e-01 2.60764840e-01 -1.73216017e-01]\n", + " [-9.42404905e-01 2.67935724e-01 -2.00208500e-01]\n", + " [-9.34237387e-01 2.75003356e-01 -2.27098346e-01]\n", + " [-9.73579933e-01 2.24726796e-01 -4.04966913e-02]\n", + " [-9.68012214e-01 2.49059414e-01 -3.03605187e-02]\n", + " [-9.61583288e-01 2.73774947e-01 -2.01211165e-02]\n", + " [-9.54278409e-01 2.98758220e-01 -9.81041608e-03]\n", + " [-9.46093372e-01 3.23893563e-01 5.39119608e-04]\n", + " [-9.37034128e-01 3.49067858e-01 1.08937165e-02]\n", + " [-9.27116636e-01 3.74171813e-01 2.12178830e-02]\n", + " [-9.16366876e-01 3.99100377e-01 3.14744103e-02]\n", + " [-9.34237387e-01 2.75003356e-01 -2.27098346e-01]\n", + " [-9.28329941e-01 3.00849966e-01 -2.18386857e-01]\n", + " [-9.21554370e-01 3.26988327e-01 -2.09323142e-01]\n", + " [-9.13896683e-01 3.53297553e-01 -1.99934219e-01]\n", + " [-9.05351819e-01 3.79662411e-01 -1.90248617e-01]\n", + " [-8.95924306e-01 4.05971150e-01 -1.80297151e-01]\n", + " [-8.85629283e-01 4.32113521e-01 -1.70113723e-01]\n", + " [-8.74493335e-01 4.57980265e-01 -1.59735668e-01]\n", + " [-9.16366876e-01 3.99100377e-01 3.14744103e-02]\n", + " [-9.12879793e-01 4.08195482e-01 5.18949100e-03]\n", + " [-9.08582384e-01 4.17145898e-01 -2.16183121e-02]\n", + " [-9.03452491e-01 4.25896910e-01 -4.88407486e-02]\n", + " [-8.97476966e-01 4.34398990e-01 -7.63715415e-02]\n", + " [-8.90652211e-01 4.42607038e-01 -1.04104030e-01]\n", + " [-8.82985028e-01 4.50479868e-01 -1.31929260e-01]\n", + " [-8.74493335e-01 4.57980265e-01 -1.59735668e-01]\n", + " [-9.72315973e-01 2.27881841e-01 -5.16867001e-02]\n", + " [-9.67982908e-01 2.36644154e-01 -8.37175897e-02]\n", + " [-9.62389019e-01 2.45522703e-01 -1.16301241e-01]\n", + " [-9.55506815e-01 2.54430724e-01 -1.49237171e-01]\n", + " [-9.47331604e-01 2.63288067e-01 -1.82324505e-01]\n", + " [-9.37881181e-01 2.72024202e-01 -2.15364167e-01]\n", + " [-9.71247671e-01 2.35306129e-01 -3.61799221e-02]\n", + " [-9.63847043e-01 2.65401463e-01 -2.36841792e-02]\n", + " [-9.55136945e-01 2.95957739e-01 -1.10649182e-02]\n", + " [-9.45105286e-01 3.26761962e-01 1.61837201e-03]\n", + " [-9.33763002e-01 3.57606021e-01 1.43034707e-02]\n", + " [-9.21143636e-01 3.88290463e-01 2.69243123e-02]\n", + " [-9.31796642e-01 2.86204628e-01 -2.23253062e-01]\n", + " [-9.23975182e-01 3.18093800e-01 -2.12335108e-01]\n", + " [-9.14834834e-01 3.50300447e-01 -2.00914966e-01]\n", + " [-9.04362568e-01 3.82610137e-01 -1.89044516e-01]\n", + " [-8.92566840e-01 4.14816898e-01 -1.76780590e-01]\n", + " [-8.79480259e-01 4.46718132e-01 -1.64187042e-01]\n", + " [-9.14982628e-01 4.02994755e-01 2.00504075e-02]\n", + " [-9.10167545e-01 4.14050764e-01 -1.25301701e-02]\n", + " [-9.04112253e-01 4.24834642e-01 -4.57882198e-02]\n", + " [-8.96788801e-01 4.35253086e-01 -7.95273407e-02]\n", + " [-8.88190664e-01 4.45223010e-01 -1.13550941e-01]\n", + " [-8.78334965e-01 4.54670225e-01 -1.47657294e-01]\n", + " [-9.73553148e-01 2.24833215e-01 -4.05498864e-02]\n", + " [-9.73553148e-01 2.24833215e-01 -4.05498864e-02]\n", + " [-8.74563222e-01 4.57867427e-01 -1.59676516e-01]\n", + " [-8.74563222e-01 4.57867427e-01 -1.59676516e-01]\n", + " [-9.70007209e-01 2.38419911e-01 -4.73493443e-02]\n", + " [-9.62591555e-01 2.68695599e-01 -3.49309730e-02]\n", + " [-9.53858433e-01 2.99422569e-01 -2.23654915e-02]\n", + " [-9.43796055e-01 3.30385679e-01 -9.71133961e-03]\n", + " [-9.32415388e-01 3.61376157e-01 2.96956965e-03]\n", + " [-9.19749926e-01 3.92194302e-01 1.56109873e-02]\n", + " [-9.65660419e-01 2.47352006e-01 -7.94791814e-02]\n", + " [-9.58193811e-01 2.78093118e-01 -6.72966459e-02]\n", + " [-9.49392907e-01 3.09255999e-01 -5.48984094e-02]\n", + " [-9.39246284e-01 3.40622451e-01 -4.23410538e-02]\n", + " [-9.27764521e-01 3.71983488e-01 -2.96863117e-02]\n", + " [-9.14980718e-01 4.03139231e-01 -1.70013536e-02]\n", + " [-9.60046686e-01 2.56375328e-01 -1.12169746e-01]\n", + " [-9.52517653e-01 2.87508554e-01 -1.00244465e-01]\n", + " [-9.43645666e-01 3.19034154e-01 -8.80344609e-02]\n", + " [-9.33418996e-01 3.50733973e-01 -7.55953590e-02]\n", + " [-9.21847360e-01 3.82400107e-01 -6.29889077e-02]\n", + " [-9.08963280e-01 4.13832538e-01 -5.02830643e-02]\n", + " [-9.53138810e-01 2.65401010e-01 -1.45219531e-01]\n", + " [-9.45536243e-01 2.96849826e-01 -1.33571683e-01]\n", + " [-9.36589616e-01 3.28664344e-01 -1.21571543e-01]\n", + " [-9.26286550e-01 3.60627850e-01 -1.09273878e-01]\n", + " [-9.14635836e-01 3.92533678e-01 -9.67398545e-02]\n", + " [-9.01669539e-01 4.24181282e-01 -8.40373820e-02]\n", + " [-9.44932138e-01 2.74348237e-01 -1.78427293e-01]\n", + " [-9.37244579e-01 3.06035818e-01 -1.67076863e-01]\n", + " [-9.28218961e-01 3.38066133e-01 -1.55308884e-01]\n", + " [-9.17842339e-01 3.70223972e-01 -1.43176990e-01]\n", + " [-9.06122934e-01 4.02303428e-01 -1.30740886e-01]\n", + " [-8.93092726e-01 4.34103085e-01 -1.18067330e-01]\n", + " [-9.35444411e-01 2.83146425e-01 -2.11593610e-01]\n", + " [-9.27659984e-01 3.14996443e-01 -2.00559705e-01]\n", + " [-9.18550437e-01 3.47169920e-01 -1.89045343e-01]\n", + " [-9.08102668e-01 3.79452404e-01 -1.77102841e-01]\n", + " [-8.96324955e-01 4.11638060e-01 -1.64789811e-01]\n", + " [-8.83249664e-01 4.43524555e-01 -1.52170953e-01]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:fp_optics: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:cartToSphere: vec: [[ 0.22771216 -0.14772757 -0.96245714]\n", + " [ 0.23625868 -0.17362835 -0.95605179]\n", + " [ 0.24478321 -0.19990303 -0.94874652]\n", + " [ 0.25324156 -0.22643944 -0.94052852]\n", + " [ 0.26159196 -0.25312739 -0.93139475]\n", + " [ 0.26979468 -0.27985699 -0.92135275]\n", + " [ 0.27781195 -0.30651829 -0.91042136]\n", + " [ 0.28560825 -0.33300178 -0.89863104]\n", + " [ 0.22771216 -0.14772757 -0.96245714]\n", + " [ 0.25444549 -0.13768947 -0.95723514]\n", + " [ 0.2809108 -0.12765914 -0.95120569]\n", + " [ 0.30700861 -0.11768001 -0.94440306]\n", + " [ 0.33264334 -0.10779849 -0.93687133]\n", + " [ 0.3577234 -0.09806457 -0.92866426]\n", + " [ 0.38216082 -0.08853249 -0.91984515]\n", + " [ 0.40587059 -0.07926143 -0.91048706]\n", + " [ 0.28560825 -0.33300178 -0.89863104]\n", + " [ 0.31321187 -0.32247726 -0.89325626]\n", + " [ 0.34044625 -0.3116993 -0.88709633]\n", + " [ 0.3672077 -0.30071464 -0.88018703]\n", + " [ 0.39339911 -0.28957256 -0.87257371]\n", + " [ 0.41893034 -0.27832446 -0.86431063]\n", + " [ 0.44371761 -0.26702396 -0.85546063]\n", + " [ 0.46768188 -0.25572741 -0.84609524]\n", + " [ 0.40587059 -0.07926143 -0.91048706]\n", + " [ 0.41562587 -0.10356783 -0.90361986]\n", + " [ 0.4251452 -0.12836565 -0.89597646]\n", + " [ 0.43438272 -0.15353641 -0.88754618]\n", + " [ 0.44329488 -0.1789664 -0.87832834]\n", + " [ 0.45184056 -0.20454573 -0.8683324 ]\n", + " [ 0.4599813 -0.23016749 -0.85757806]\n", + " [ 0.46768188 -0.25572741 -0.84609524]\n", + " [ 0.23153034 -0.15893267 -0.95975732]\n", + " [ 0.24199681 -0.19094212 -0.95130366]\n", + " [ 0.25238586 -0.22340148 -0.94148455]\n", + " [ 0.26261965 -0.25610715 -0.9302903 ]\n", + " [ 0.27262498 -0.28885683 -0.9177349 ]\n", + " [ 0.28233325 -0.3214482 -0.90385784]\n", + " [ 0.239424 -0.14344028 -0.96026092]\n", + " [ 0.2720218 -0.13113695 -0.95331382]\n", + " [ 0.30411766 -0.11888795 -0.94518681]\n", + " [ 0.33553399 -0.10677747 -0.93595701]\n", + " [ 0.36610212 -0.09489761 -0.92572333]\n", + " [ 0.39566136 -0.08335025 -0.91460637]\n", + " [ 0.2976558 -0.32835696 -0.89642776]\n", + " [ 0.33125186 -0.31528212 -0.88930838]\n", + " [ 0.36418965 -0.30187291 -0.88104406]\n", + " [ 0.39628762 -0.28821903 -0.87171435]\n", + " [ 0.42737974 -0.27441513 -0.86141912]\n", + " [ 0.45731385 -0.26056098 -0.85027761]\n", + " [ 0.41006997 -0.08982263 -0.90762025]\n", + " [ 0.42187286 -0.11995982 -0.898684 ]\n", + " [ 0.43327563 -0.15071677 -0.88857002]\n", + " [ 0.44419719 -0.1818822 -0.87727289]\n", + " [ 0.45456183 -0.2132537 -0.86481004]\n", + " [ 0.46430008 -0.24463556 -0.85122199]\n", + " [ 0.22783313 -0.14778108 -0.96242029]\n", + " [ 0.22783313 -0.14778108 -0.96242029]\n", + " [ 0.46757587 -0.25567878 -0.84616852]\n", + " [ 0.46757587 -0.25567878 -0.84616852]\n", + " [ 0.24316598 -0.15457294 -0.95758943]\n", + " [ 0.27588316 -0.14219863 -0.95061456]\n", + " [ 0.30808682 -0.12985302 -0.94245462]\n", + " [ 0.33959905 -0.11762001 -0.93318702]\n", + " [ 0.37025135 -0.10559105 -0.92291086]\n", + " [ 0.39988357 -0.09386714 -0.91174672]\n", + " [ 0.25374499 -0.18653423 -0.94911457]\n", + " [ 0.28676059 -0.17397537 -0.94207268]\n", + " [ 0.31923088 -0.16137441 -0.93383614]\n", + " [ 0.35097688 -0.14881498 -0.92448328]\n", + " [ 0.38183046 -0.13638719 -0.9141138 ]\n", + " [ 0.41163319 -0.12418976 -0.90284828]\n", + " [ 0.26422508 -0.21895361 -0.93927867]\n", + " [ 0.29747936 -0.20623428 -0.93218745]\n", + " [ 0.33015816 -0.19340389 -0.92389963]\n", + " [ 0.36208135 -0.18054661 -0.91449441]\n", + " [ 0.39308121 -0.16775221 -0.9040721 ]\n", + " [ 0.42300109 -0.15511803 -0.89275331]\n", + " [ 0.27452776 -0.25162766 -0.92807221]\n", + " [ 0.30795924 -0.23877214 -0.92095004]\n", + " [ 0.34078712 -0.22573767 -0.91263719]\n", + " [ 0.37283032 -0.2126097 -0.90321352]\n", + " [ 0.40392155 -0.1994787 -0.89277972]\n", + " [ 0.43390589 -0.18644169 -0.88145628]\n", + " [ 0.28457911 -0.2843544 -0.91550931]\n", + " [ 0.31812445 -0.27138778 -0.9083752 ]\n", + " [ 0.35104071 -0.25817524 -0.90006442]\n", + " [ 0.38314626 -0.24480396 -0.89065704]\n", + " [ 0.41427432 -0.23136594 -0.88025371]\n", + " [ 0.4442714 -0.21795889 -0.86897459]\n", + " [ 0.29430989 -0.31693179 -0.9016296 ]\n", + " [ 0.32790427 -0.30388036 -0.89450294]\n", + " [ 0.36084736 -0.29051732 -0.88622168]\n", + " [ 0.39295747 -0.27693173 -0.87686558]\n", + " [ 0.42406838 -0.26321752 -0.86653479]\n", + " [ 0.45402768 -0.24947386 -0.85534885]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:fp_optics: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:cartToSphere: vec: [[-0.20396766 0.55281733 0.80795433]\n", + " [-0.20000006 0.53017914 0.82395998]\n", + " [-0.19579094 0.50666225 0.83961853]\n", + " [-0.19134837 0.48233699 0.85483146]\n", + " [-0.1866824 0.45727896 0.86950884]\n", + " [-0.18180542 0.43157074 0.88356861]\n", + " [-0.17673238 0.40530266 0.89693669]\n", + " [-0.1714808 0.37857268 0.90954772]\n", + " [-0.20396766 0.55281733 0.80795433]\n", + " [-0.23199592 0.54582283 0.80514305]\n", + " [-0.25972513 0.53831425 0.80172353]\n", + " [-0.28704934 0.53032517 0.79772044]\n", + " [-0.31386546 0.52189337 0.79316819]\n", + " [-0.34007304 0.51306042 0.78811125]\n", + " [-0.36557365 0.50387129 0.78260439]\n", + " [-0.39026999 0.49437433 0.77671318]\n", + " [-0.1714808 0.37857268 0.90954772]\n", + " [-0.20049653 0.37145922 0.90654243]\n", + " [-0.22923683 0.36403357 0.90273475]\n", + " [-0.25759067 0.35632989 0.89815147]\n", + " [-0.28545248 0.34838577 0.89282934]\n", + " [-0.31272263 0.34024185 0.88681455]\n", + " [-0.33930675 0.33194174 0.88016226]\n", + " [-0.36511409 0.32353232 0.87293673]\n", + " [-0.39026999 0.49437433 0.77671318]\n", + " [-0.38805399 0.47191691 0.79164925]\n", + " [-0.38536129 0.44867605 0.80634142]\n", + " [-0.38220136 0.42472788 0.82068773]\n", + " [-0.37858441 0.40015242 0.83459684]\n", + " [-0.37452174 0.3750342 0.84798751]\n", + " [-0.37002647 0.34946269 0.86078815]\n", + " [-0.36511409 0.32353232 0.87293673]\n", + " [-0.20236453 0.54303629 0.81496024]\n", + " [-0.19733944 0.51469108 0.83435618]\n", + " [-0.19195922 0.48509549 0.85313189]\n", + " [-0.18624152 0.45438639 0.8711183 ]\n", + " [-0.18020918 0.4227159 0.88816436]\n", + " [-0.17389077 0.39025353 0.90413726]\n", + " [-0.2162052 0.54975694 0.80685972]\n", + " [-0.25037009 0.54083461 0.80300233]\n", + " [-0.28398019 0.53117309 0.7982546 ]\n", + " [-0.31684453 0.52084024 0.79267584]\n", + " [-0.34877811 0.50991251 0.78634793]\n", + " [-0.37960022 0.49847412 0.77937618]\n", + " [-0.18417656 0.37560367 0.90829559]\n", + " [-0.21956717 0.36667121 0.90406996]\n", + " [-0.25443316 0.35730318 0.89866468]\n", + " [-0.28857786 0.34756741 0.89214333]\n", + " [-0.32181778 0.3375387 0.88459083]\n", + " [-0.3539808 0.32729866 0.87611254]\n", + " [-0.38927963 0.48471666 0.78326951]\n", + " [-0.38624091 0.45665602 0.80142575]\n", + " [-0.38249566 0.42749378 0.81911302]\n", + " [-0.37806234 0.3973756 0.83615877]\n", + " [-0.37296187 0.36645713 0.8524134 ]\n", + " [-0.36721935 0.33490517 0.86774909]\n", + " [-0.20405075 0.55271848 0.80800097]\n", + " [-0.20405075 0.55271848 0.80800097]\n", + " [-0.36504476 0.32365038 0.87292197]\n", + " [-0.36504476 0.32365038 0.87292197]\n", + " [-0.21456698 0.54006451 0.81381284]\n", + " [-0.2488684 0.53112303 0.8099215 ]\n", + " [-0.28261542 0.52145728 0.80511541]\n", + " [-0.3156169 0.5111356 0.79945379]\n", + " [-0.34768833 0.50023492 0.79301819]\n", + " [-0.37864984 0.48883975 0.78591348]\n", + " [-0.20966283 0.51169409 0.83319305]\n", + " [-0.24430893 0.50271074 0.82921352]\n", + " [-0.2784021 0.49304771 0.82425495]\n", + " [-0.31175047 0.48277455 0.81837667]\n", + " [-0.34417053 0.47196929 0.8116598 ]\n", + " [-0.37548495 0.46071718 0.80420814]\n", + " [-0.20438098 0.48207901 0.85195554]\n", + " [-0.23930881 0.47307296 0.84789933]\n", + " [-0.27368633 0.46343587 0.84280661]\n", + " [-0.30732052 0.45323801 0.83673735]\n", + " [-0.34002842 0.44255793 0.82977295]\n", + " [-0.37163498 0.4314811 0.82201673]\n", + " [-0.19873845 0.4513564 0.86993128]\n", + " [-0.23388347 0.44234782 0.86580999]\n", + " [-0.26848271 0.43276136 0.86060132]\n", + " [-0.30234179 0.42266737 0.85436628]\n", + " [-0.33527788 0.4121441 0.8471871 ]\n", + " [-0.36711764 0.40127659 0.83916729]\n", + " [-0.19275727 0.41967853 0.88696932]\n", + " [-0.22805299 0.41068822 0.88279501]\n", + " [-0.26280994 0.40117776 0.87748922]\n", + " [-0.29683253 0.39121683 0.87111414]\n", + " [-0.32993774 0.38088265 0.86375315]\n", + " [-0.36195322 0.37025909 0.85551041]\n", + " [-0.18646535 0.38721507 0.90293696]\n", + " [-0.22184345 0.37826389 0.89872238]\n", + " [-0.2566927 0.36885445 0.89333938]\n", + " [-0.29081663 0.35905513 0.88685123]\n", + " [-0.32403187 0.34894145 0.87934249]\n", + " [-0.35616638 0.33859566 0.87091819]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:cartToSphere: vec: [[ 0.21619375 0.56719519 -0.79470113]\n", + " [ 0.18981443 0.56965781 -0.79966272]\n", + " [ 0.16274374 0.57161681 -0.80421931]\n", + " [ 0.13508964 0.57305199 -0.80830824]\n", + " [ 0.10696057 0.57394691 -0.81187707]\n", + " [ 0.07846576 0.57428902 -0.81488358]\n", + " [ 0.04971554 0.57406988 -0.81729562]\n", + " [ 0.02082139 0.5732856 -0.81909101]\n", + " [ 0.21619375 0.56719519 -0.79470113]\n", + " [ 0.21963906 0.54483518 -0.80926715]\n", + " [ 0.22284351 0.52158876 -0.82358116]\n", + " [ 0.22579865 0.4975324 -0.83754193]\n", + " [ 0.22849587 0.47274682 -0.85105821]\n", + " [ 0.23092634 0.44731736 -0.86404873]\n", + " [ 0.2330813 0.4213343 -0.87644196]\n", + " [ 0.23495254 0.39489303 -0.88817611]\n", + " [ 0.02082139 0.5732856 -0.81909101]\n", + " [ 0.02255547 0.55023291 -0.83470653]\n", + " [ 0.02430308 0.52626548 -0.84997295]\n", + " [ 0.02605655 0.50145507 -0.86479123]\n", + " [ 0.02780835 0.47587832 -0.8790714 ]\n", + " [ 0.02955104 0.44961853 -0.89273172]\n", + " [ 0.03127725 0.42276669 -0.90569866]\n", + " [ 0.03297972 0.39542168 -0.91790742]\n", + " [ 0.23495254 0.39489303 -0.88817611]\n", + " [ 0.20770989 0.39595962 -0.89446776]\n", + " [ 0.17975505 0.39672247 -0.90016632]\n", + " [ 0.1511907 0.39716161 -0.90520938]\n", + " [ 0.12212116 0.397261 -0.90954391]\n", + " [ 0.09265412 0.39700856 -0.91312618]\n", + " [ 0.06290161 0.39639654 -0.91592203]\n", + " [ 0.03297972 0.39542168 -0.91790742]\n", + " [ 0.20479598 0.56825423 -0.79696031]\n", + " [ 0.17198586 0.57093582 -0.8027784 ]\n", + " [ 0.13824446 0.57284055 -0.80792461]\n", + " [ 0.10377122 0.57393665 -0.81229814]\n", + " [ 0.06876725 0.57420099 -0.81582123]\n", + " [ 0.03343617 0.57361993 -0.81843888]\n", + " [ 0.21763572 0.55756883 -0.80109406]\n", + " [ 0.22169647 0.52955805 -0.81879115]\n", + " [ 0.22538721 0.50029131 -0.8360079 ]\n", + " [ 0.22869218 0.46991544 -0.85257221]\n", + " [ 0.23159516 0.43858757 -0.8683344 ]\n", + " [ 0.23408023 0.40647605 -0.88316684]\n", + " [ 0.02167462 0.56335513 -0.82593051]\n", + " [ 0.02381099 0.53447776 -0.84484706]\n", + " [ 0.02595985 0.50429727 -0.86313982]\n", + " [ 0.02810729 0.47295264 -0.88063941]\n", + " [ 0.03023961 0.44059732 -0.89719539]\n", + " [ 0.03234325 0.40740215 -0.91267596]\n", + " [ 0.22316288 0.39548542 -0.89094871]\n", + " [ 0.18928236 0.39659199 -0.89826888]\n", + " [ 0.15443408 0.39722189 -0.90463522]\n", + " [ 0.11880927 0.39734394 -0.90994624]\n", + " [ 0.08260633 0.39693598 -0.91412145]\n", + " [ 0.04603324 0.39598556 -0.91710216]\n", + " [ 0.21611702 0.56712957 -0.79476883]\n", + " [ 0.21611702 0.56712957 -0.79476883]\n", + " [ 0.03307642 0.39551986 -0.91786164]\n", + " [ 0.03307642 0.39551986 -0.91786164]\n", + " [ 0.20626936 0.55866034 -0.80333777]\n", + " [ 0.21021784 0.53055187 -0.82117183]\n", + " [ 0.21382029 0.50118164 -0.8385093 ]\n", + " [ 0.21706072 0.47069609 -0.85517824]\n", + " [ 0.21992252 0.43925206 -0.87102911]\n", + " [ 0.22238934 0.40701794 -0.88593419]\n", + " [ 0.17332942 0.56125879 -0.80928702]\n", + " [ 0.17695615 0.53290573 -0.8274648 ]\n", + " [ 0.1803049 0.50327652 -0.84510525]\n", + " [ 0.18335896 0.47251595 -0.86203722]\n", + " [ 0.18610066 0.4407799 -0.8781114 ]\n", + " [ 0.1885127 0.40823714 -0.89319953]\n", + " [ 0.13945591 0.56309635 -0.81453947]\n", + " [ 0.1427543 0.53454616 -0.83299557]\n", + " [ 0.14584239 0.50470814 -0.85088171]\n", + " [ 0.14870302 0.47372519 -0.86802757]\n", + " [ 0.15131807 0.44175225 -0.88428377]\n", + " [ 0.15366987 0.40895861 -0.89952122]\n", + " [ 0.10484787 0.56414101 -0.81899441]\n", + " [ 0.10780971 0.53544027 -0.83766388]\n", + " [ 0.11062827 0.50544296 -0.85573875]\n", + " [ 0.1132866 0.47429017 -0.87304924]\n", + " [ 0.11576701 0.4421361 -0.88944571]\n", + " [ 0.11805225 0.40915062 -0.90479801]\n", + " [ 0.0697062 0.56436924 -0.82257426]\n", + " [ 0.07232258 0.5355634 -0.84139247]\n", + " [ 0.07486211 0.50545559 -0.85959892]\n", + " [ 0.07730877 0.47418557 -0.87702417]\n", + " [ 0.07964618 0.44190701 -0.89351815]\n", + " [ 0.08185828 0.40879032 -0.90894978]\n", + " [ 0.03423469 0.56376697 -0.82522408]\n", + " [ 0.03649746 0.53490051 -0.8441264 ]\n", + " [ 0.03874944 0.50473049 -0.86240687]\n", + " [ 0.04097612 0.47339599 -0.87989613]\n", + " [ 0.04316302 0.44105045 -0.89644378]\n", + " [ 0.0452959 0.40786465 -0.91191815]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:fp_optics: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:cartToSphere: vec: [[-0.2952011 -0.11578513 -0.94839344]\n", + " [-0.28242063 -0.09170872 -0.95489691]\n", + " [-0.26915768 -0.06708097 -0.96075714]\n", + " [-0.25545279 -0.04199595 -0.96590901]\n", + " [-0.24134962 -0.01654914 -0.97029711]\n", + " [-0.22689566 0.00916152 -0.97387598]\n", + " [-0.21214236 0.03503558 -0.97661053]\n", + " [-0.19714492 0.06097067 -0.9784766 ]\n", + " [-0.2952011 -0.11578513 -0.94839344]\n", + " [-0.31948365 -0.10113596 -0.94217924]\n", + " [-0.34337634 -0.08636416 -0.93521865]\n", + " [-0.36678832 -0.07152624 -0.92755071]\n", + " [-0.38963198 -0.05667793 -0.91922496]\n", + " [-0.41182251 -0.04187363 -0.9103015 ]\n", + " [-0.43327709 -0.02716624 -0.90085124]\n", + " [-0.45391351 -0.01260707 -0.89095656]\n", + " [-0.19714492 0.06097067 -0.9784766 ]\n", + " [-0.22232377 0.07599037 -0.972007 ]\n", + " [-0.24722178 0.09089579 -0.96468614]\n", + " [-0.27174363 0.10562916 -0.95655522]\n", + " [-0.29579865 0.12013488 -0.94766596]\n", + " [-0.31930142 0.13435987 -0.93807997]\n", + " [-0.34217162 0.14825357 -0.92786824]\n", + " [-0.36433303 0.16176738 -0.91711109]\n", + " [-0.45391351 -0.01260707 -0.89095656]\n", + " [-0.44293371 0.01152602 -0.89648027]\n", + " [-0.43127224 0.03608381 -0.90149998]\n", + " [-0.4189736 0.06096648 -0.90594934]\n", + " [-0.40608268 0.0860751 -0.90977356]\n", + " [-0.39264587 0.11131083 -0.91292887]\n", + " [-0.37871203 0.13657462 -0.9153822 ]\n", + " [-0.36433303 0.16176738 -0.91711109]\n", + " [-0.28977451 -0.10531152 -0.95128346]\n", + " [-0.27378213 -0.07542034 -0.95883008]\n", + " [-0.25710488 -0.04479452 -0.96534477]\n", + " [-0.23982179 -0.01360917 -0.97072154]\n", + " [-0.22202028 0.01795542 -0.97487671]\n", + " [-0.20379666 0.04971345 -0.97775022]\n", + " [-0.30578787 -0.10933528 -0.94580102]\n", + " [-0.33529897 -0.09129122 -0.93767826]\n", + " [-0.3641339 -0.07311935 -0.9284719 ]\n", + " [-0.39213001 -0.0549226 -0.91826879]\n", + " [-0.4191311 -0.03680113 -0.90717958]\n", + " [-0.44498502 -0.01885163 -0.89533957]\n", + " [-0.20820287 0.06744093 -0.9757578 ]\n", + " [-0.2388853 0.08577972 -0.9672516 ]\n", + " [-0.2690506 0.10388942 -0.95750653]\n", + " [-0.29852989 0.12166673 -0.94661349]\n", + " [-0.3271659 0.13901395 -0.93468583]\n", + " [-0.35481255 0.15583883 -0.92185808]\n", + " [-0.44914341 -0.00219295 -0.89345699]\n", + " [-0.43522123 0.02768338 -0.89989783]\n", + " [-0.42031952 0.05809839 -0.90551426]\n", + " [-0.40452068 0.08886963 -0.91020064]\n", + " [-0.38791022 0.11981512 -0.91387636]\n", + " [-0.37057932 0.15075247 -0.91648495]\n", + " [-0.29524186 -0.11565402 -0.94839675]\n", + " [-0.29524186 -0.11565402 -0.94839675]\n", + " [-0.36430841 0.16163595 -0.91714405]\n", + " [-0.36430841 0.16163595 -0.91714405]\n", + " [-0.3003626 -0.09896966 -0.94867661]\n", + " [-0.32999831 -0.08087446 -0.94051073]\n", + " [-0.35896551 -0.06267308 -0.93124425]\n", + " [-0.3871015 -0.04446893 -0.92096414]\n", + " [-0.41425069 -0.02636256 -0.90978095]\n", + " [-0.44026216 -0.00845091 -0.8978295 ]\n", + " [-0.28447635 -0.06902086 -0.95619523]\n", + " [-0.31442887 -0.05080328 -0.94792063]\n", + " [-0.34373544 -0.03254098 -0.93850255]\n", + " [-0.37223278 -0.01433847 -0.92802864]\n", + " [-0.39976633 0.00370294 -0.91660961]\n", + " [-0.42618814 0.02148601 -0.90437936]\n", + " [-0.26788557 -0.0383493 -0.96268721]\n", + " [-0.29810076 -0.02004365 -0.95432394]\n", + " [-0.32769468 -0.00175541 -0.94478205]\n", + " [-0.35650283 0.01641032 -0.93415011]\n", + " [-0.38437082 0.03435213 -0.92253943]\n", + " [-0.41115262 0.05197306 -0.91008369]\n", + " [-0.25066872 -0.00713047 -0.96804667]\n", + " [-0.28109114 0.01122781 -0.95961539]\n", + " [-0.31091973 0.02950578 -0.94997807]\n", + " [-0.33998853 0.04759829 -0.93922426]\n", + " [-0.36814261 0.06540447 -0.92746605]\n", + " [-0.39523681 0.08282834 -0.91483733]\n", + " [-0.23291264 0.02445502 -0.97219013]\n", + " [-0.26348524 0.0428297 -0.96371217]\n", + " [-0.29349453 0.06106072 -0.95400867]\n", + " [-0.32277313 0.0790434 -0.94317 ]\n", + " [-0.35116516 0.09667795 -0.93130897]\n", + " [-0.37852549 0.11386984 -0.9185598 ]\n", + " [-0.21471313 0.05622113 -0.97505767]\n", + " [-0.24537739 0.07457571 -0.96655491]\n", + " [-0.27551196 0.09272337 -0.95681531]\n", + " [-0.30494827 0.11056039 -0.94592968]\n", + " [-0.33352942 0.12798846 -0.93401129]\n", + " [-0.36110964 0.14491475 -0.92119463]]\n", + "DEBUG:root:cartToSphere: vec: [[-0.2354153 -0.37438014 0.89689417]\n", + " [-0.20834934 -0.37999934 0.90121643]\n", + " [-0.18057325 -0.38542408 0.90489866]\n", + " [-0.15218901 -0.39061593 0.90788639]\n", + " [-0.12330021 -0.3955405 0.91013448]\n", + " [-0.09401381 -0.40016714 0.91160719]\n", + " [-0.06444109 -0.40446905 0.91227854]\n", + " [-0.0346974 -0.40842352 0.91213284]\n", + " [-0.2354153 -0.37438014 0.89689417]\n", + " [-0.2388039 -0.40045758 0.88465045]\n", + " [-0.24188617 -0.4261376 0.87172118]\n", + " [-0.2446501 -0.45132531 0.8581677 ]\n", + " [-0.24708446 -0.47593105 0.84406096]\n", + " [-0.24917845 -0.49987046 0.82948154]\n", + " [-0.25092121 -0.52306421 0.81451973]\n", + " [-0.25230171 -0.54543763 0.7992757 ]\n", + " [-0.0346974 -0.40842352 0.91213284]\n", + " [-0.03834744 -0.43537458 0.89943229]\n", + " [-0.04194845 -0.46184954 0.88596576]\n", + " [-0.0454867 -0.48774955 0.87179776]\n", + " [-0.0489493 -0.5129836 0.85700163]\n", + " [-0.05232418 -0.53746874 0.8416588 ]\n", + " [-0.05559993 -0.56112931 0.82585867]\n", + " [-0.05876559 -0.58389535 0.80969922]\n", + " [-0.25230171 -0.54543763 0.7992757 ]\n", + " [-0.22632189 -0.55228327 0.80234755]\n", + " [-0.19960665 -0.55873784 0.80496535]\n", + " [-0.17226301 -0.56476164 0.80707481]\n", + " [-0.14439833 -0.57031892 0.80863184]\n", + " [-0.11612073 -0.57537789 0.80960253]\n", + " [-0.08753958 -0.579911 0.809963 ]\n", + " [-0.05876559 -0.58389535 0.80969922]\n", + " [-0.22372043 -0.37694151 0.8988127 ]\n", + " [-0.19005807 -0.38370358 0.90368661]\n", + " [-0.1554303 -0.39013478 0.90754409]\n", + " [-0.12002705 -0.39617008 0.91029818]\n", + " [-0.08404535 -0.40175311 0.91188312]\n", + " [-0.0476918 -0.40683618 0.91225534]\n", + " [-0.23683842 -0.38581244 0.89165931]\n", + " [-0.24078732 -0.41751885 0.87618461]\n", + " [-0.24426422 -0.44853336 0.85973997]\n", + " [-0.24724815 -0.47868875 0.84245204]\n", + " [-0.24971916 -0.50782967 0.82446915]\n", + " [-0.25165717 -0.53581201 0.80596163]\n", + " [-0.03639581 -0.42021328 0.90669518]\n", + " [-0.0408379 -0.45293713 0.89060666]\n", + " [-0.04519242 -0.48484684 0.8734307 ]\n", + " [-0.0494353 -0.51577157 0.85529868]\n", + " [-0.05354427 -0.54555852 0.83636051]\n", + " [-0.05749856 -0.57407085 0.81678429]\n", + " [-0.24106716 -0.54839251 0.80071985]\n", + " [-0.20871704 -0.55652428 0.80418774]\n", + " [-0.17536859 -0.56402887 0.80691839]\n", + " [-0.1412193 -0.57083884 0.80882639]\n", + " [-0.1064683 -0.57689569 0.80984928]\n", + " [-0.07131749 -0.5821506 0.80994721]\n", + " [-0.23533616 -0.37448939 0.89686933]\n", + " [-0.23533616 -0.37448939 0.89686933]\n", + " [-0.05885356 -0.58380643 0.80975695]\n", + " [-0.05885356 -0.58380643 0.80975695]\n", + " [-0.22523038 -0.3883087 0.89358135]\n", + " [-0.22921623 -0.42013332 0.8780364 ]\n", + " [-0.23275259 -0.45125553 0.86150721]\n", + " [-0.23581885 -0.48150785 0.84412064]\n", + " [-0.23839551 -0.51073507 0.82602498]\n", + " [-0.24046288 -0.53879345 0.80739038]\n", + " [-0.19158796 -0.39518184 0.89840156]\n", + " [-0.19567352 -0.42730308 0.88267998]\n", + " [-0.19937367 -0.45869382 0.86593886]\n", + " [-0.20266857 -0.48918575 0.84830582]\n", + " [-0.20553984 -0.51862409 0.82992917]\n", + " [-0.20796893 -0.54686647 0.81097841]\n", + " [-0.15697739 -0.40170316 0.90221543]\n", + " [-0.1611559 -0.43406363 0.88635069]\n", + " [-0.16501427 -0.46566824 0.86943854]\n", + " [-0.16853275 -0.49634776 0.85160767]\n", + " [-0.17169349 -0.5259479 0.83300669]\n", + " [-0.17447871 -0.5543279 0.81380449]\n", + " [-0.12158857 -0.40780708 0.90493624]\n", + " [-0.12585369 -0.44034793 0.88896263]\n", + " [-0.12986579 -0.47211076 0.87192105]\n", + " [-0.13360449 -0.50292548 0.85394133]\n", + " [-0.13705154 -0.53263832 0.83517261]\n", + " [-0.14018919 -0.5611101 0.81578333]\n", + " [-0.08561844 -0.41343652 0.90649861]\n", + " [-0.08996368 -0.44609718 0.89045148]\n", + " [-0.09412511 -0.47796146 0.87332314]\n", + " [-0.09808104 -0.50885869 0.85524438]\n", + " [-0.10181192 -0.53863555 0.8363648 ]\n", + " [-0.10529915 -0.56715419 0.81685262]\n", + " [-0.04927349 -0.41854319 0.90685926]\n", + " [-0.05369171 -0.45126163 0.89077502]\n", + " [-0.05799705 -0.48316973 0.87360366]\n", + " [-0.06216609 -0.51409661 0.85547651]\n", + " [-0.06617734 -0.54388935 0.83654345]\n", + " [-0.07001066 -0.57241095 0.81697259]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:fp_optics: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:cartToSphere: vec: [[ 0.12983574 -0.27455276 0.95276622]\n", + " [ 0.14746714 -0.25306042 0.95614532]\n", + " [ 0.16533053 -0.23093427 0.95881968]\n", + " [ 0.18334822 -0.20825147 0.96073657]\n", + " [ 0.20144378 -0.18509212 0.96185306]\n", + " [ 0.21954127 -0.16154032 0.96213635]\n", + " [ 0.23756534 -0.13768436 0.96156421]\n", + " [ 0.25544171 -0.11361622 0.96012545]\n", + " [ 0.12983574 -0.27455276 0.95276622]\n", + " [ 0.15200797 -0.29133946 0.9444654 ]\n", + " [ 0.17404377 -0.30775209 0.93541297]\n", + " [ 0.19586062 -0.32372782 0.92565594]\n", + " [ 0.21737936 -0.33920594 0.91525163]\n", + " [ 0.2385244 -0.35412732 0.90426763]\n", + " [ 0.25922367 -0.3684335 0.89278208]\n", + " [ 0.27940819 -0.38206547 0.88088424]\n", + " [ 0.25544171 -0.11361622 0.96012545]\n", + " [ 0.27827863 -0.13109881 0.95151149]\n", + " [ 0.30079361 -0.14840528 0.94207169]\n", + " [ 0.32290151 -0.16546907 0.93185546]\n", + " [ 0.34452229 -0.18222661 0.92092228]\n", + " [ 0.36558155 -0.19861768 0.90934105]\n", + " [ 0.38601034 -0.21458533 0.89718959]\n", + " [ 0.40574431 -0.23007515 0.88455468]\n", + " [ 0.27940819 -0.38206547 0.88088424]\n", + " [ 0.29768617 -0.36225529 0.8832633 ]\n", + " [ 0.3160195 -0.34167179 0.88509438]\n", + " [ 0.3343267 -0.32039825 0.88632422]\n", + " [ 0.35252869 -0.29851737 0.88691088]\n", + " [ 0.37054847 -0.27611263 0.88682334]\n", + " [ 0.38831115 -0.25326935 0.88604125]\n", + " [ 0.40574431 -0.23007515 0.88455468]\n", + " [ 0.13756576 -0.26532302 0.95429521]\n", + " [ 0.15934149 -0.2385467 0.9579696 ]\n", + " [ 0.18138814 -0.21089469 0.96053202]\n", + " [ 0.20356454 -0.18251315 0.96189939]\n", + " [ 0.2257309 -0.15355691 0.96201135]\n", + " [ 0.24774892 -0.12419007 0.96083157]\n", + " [ 0.13957438 -0.28184161 0.9492546 ]\n", + " [ 0.1666682 -0.30217261 0.93856988]\n", + " [ 0.19347462 -0.32187917 0.92680169]\n", + " [ 0.21984645 -0.34084866 0.91405127]\n", + " [ 0.24564455 -0.35897212 0.9004431 ]\n", + " [ 0.27073757 -0.37614178 0.88612557]\n", + " [ 0.26537184 -0.12133852 0.9564804 ]\n", + " [ 0.2931553 -0.14265508 0.9453621 ]\n", + " [ 0.32037018 -0.16364051 0.9330513 ]\n", + " [ 0.346867 -0.18417649 0.91965336]\n", + " [ 0.37250873 -0.20415217 0.90529506]\n", + " [ 0.39717044 -0.22346382 0.89012334]\n", + " [ 0.28729724 -0.37348273 0.88202661]\n", + " [ 0.30974648 -0.3486713 0.88458207]\n", + " [ 0.33219771 -0.32278129 0.88626008]\n", + " [ 0.35450439 -0.29596508 0.88697875]\n", + " [ 0.37652477 -0.26837651 0.88668097]\n", + " [ 0.39812197 -0.24017358 0.88533358]\n", + " [ 0.1299715 -0.2745384 0.95275184]\n", + " [ 0.1299715 -0.2745384 0.95275184]\n", + " [ 0.4056191 -0.23010287 0.88460489]\n", + " [ 0.4056191 -0.23010287 0.88460489]\n", + " [ 0.14720507 -0.27265644 0.95078343]\n", + " [ 0.1743897 -0.29308416 0.94004782]\n", + " [ 0.20126815 -0.31290375 0.92821462]\n", + " [ 0.22769281 -0.33200273 0.91538526]\n", + " [ 0.2535244 -0.35027291 0.90168413]\n", + " [ 0.27863179 -0.36760776 0.88725918]\n", + " [ 0.16907207 -0.24595664 0.95442127]\n", + " [ 0.19648085 -0.26663336 0.94355812]\n", + " [ 0.22353112 -0.28674879 0.93156265]\n", + " [ 0.2500741 -0.30619036 0.9185371 ]\n", + " [ 0.27597028 -0.32485113 0.90460607]\n", + " [ 0.3010893 -0.34262754 0.88991663]\n", + " [ 0.19119208 -0.21836757 0.95695412]\n", + " [ 0.21877489 -0.23925624 0.94598837]\n", + " [ 0.24594804 -0.25963228 0.93386329]\n", + " [ 0.27256186 -0.27938223 0.92068214]\n", + " [ 0.29847687 -0.29839936 0.90657012]\n", + " [ 0.32356373 -0.31658179 0.89167398]\n", + " [ 0.21342336 -0.190035 0.9582991 ]\n", + " [ 0.2411286 -0.21109783 0.94725641]\n", + " [ 0.26837439 -0.23169916 0.93503513]\n", + " [ 0.29501055 -0.25172417 0.9217395 ]\n", + " [ 0.32089799 -0.27106544 0.90749546]\n", + " [ 0.34590861 -0.28962154 0.89244977]\n", + " [ 0.23562562 -0.16111335 0.95839608]\n", + " [ 0.26340042 -0.18231135 0.9473029 ]\n", + " [ 0.29066777 -0.20310163 0.93501977]\n", + " [ 0.31727745 -0.22336784 0.92165168]\n", + " [ 0.34309108 -0.24300127 0.90732513]\n", + " [ 0.36798191 -0.26189994 0.89218705]\n", + " [ 0.25766014 -0.13176637 0.9572089 ]\n", + " [ 0.28545086 -0.15305926 0.94609232]\n", + " [ 0.31268844 -0.17400067 0.93378247]\n", + " [ 0.33922314 -0.19447277 0.9203847 ]\n", + " [ 0.36491756 -0.21436525 0.90602578]\n", + " [ 0.38964629 -0.23357493 0.89085269]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:cartToSphere: vec: [[-9.11796627e-01 4.09077734e-01 3.58094886e-02]\n", + " [-9.08270548e-01 4.18273931e-01 9.56719124e-03]\n", + " [-9.03939792e-01 4.27313563e-01 -1.72038203e-02]\n", + " [-8.98782192e-01 4.36141747e-01 -4.43953565e-02]\n", + " [-8.92784655e-01 4.44708629e-01 -7.19012839e-02]\n", + " [-8.85943691e-01 4.52968653e-01 -9.96151419e-02]\n", + " [-8.78266222e-01 4.60880138e-01 -1.27428180e-01]\n", + " [-8.69770255e-01 4.68405453e-01 -1.55228979e-01]\n", + " [-9.11796627e-01 4.09077734e-01 3.58094886e-02]\n", + " [-8.99942239e-01 4.33584669e-01 4.59162426e-02]\n", + " [-8.87359193e-01 4.57682556e-01 5.58600126e-02]\n", + " [-8.74107034e-01 4.81283277e-01 6.55995405e-02]\n", + " [-8.60254671e-01 5.04304487e-01 7.50925180e-02]\n", + " [-8.45880111e-01 5.26669798e-01 8.42956834e-02]\n", + " [-8.31069992e-01 5.48309075e-01 9.31655826e-02]\n", + " [-8.15918398e-01 5.69159289e-01 1.01660567e-01]\n", + " [-8.69770255e-01 4.68405453e-01 -1.55228979e-01]\n", + " [-8.57520754e-01 4.93699667e-01 -1.44633312e-01]\n", + " [-8.44540619e-01 5.18468943e-01 -1.33944388e-01]\n", + " [-8.30892245e-01 5.42621678e-01 -1.23206299e-01]\n", + " [-8.16645901e-01 5.66075520e-01 -1.12463231e-01]\n", + " [-8.01879258e-01 5.88756876e-01 -1.01759502e-01]\n", + " [-7.86677939e-01 6.10599110e-01 -9.11402620e-02]\n", + " [-7.71136717e-01 6.31540454e-01 -8.06524555e-02]\n", + " [-8.15918398e-01 5.69159289e-01 1.01660567e-01]\n", + " [-8.11452286e-01 5.79330736e-01 7.69485897e-02]\n", + " [-8.06358980e-01 5.89169818e-01 5.16151192e-02]\n", + " [-8.00619658e-01 5.98618689e-01 2.57648492e-02]\n", + " [-7.94223994e-01 6.07624887e-01 -4.94675639e-04]\n", + " [-7.87170944e-01 6.16141139e-01 -2.70555328e-02]\n", + " [-7.79469098e-01 6.24125287e-01 -5.38103296e-02]\n", + " [-7.71136717e-01 6.31540454e-01 -8.06524555e-02]\n", + " [-9.10316998e-01 4.13187549e-01 2.44747497e-02]\n", + " [-9.05457168e-01 4.24361171e-01 -8.05687490e-03]\n", + " [-8.99365739e-01 4.35244355e-01 -4.12749107e-02]\n", + " [-8.92014837e-01 4.45743257e-01 -7.49831892e-02]\n", + " [-8.83398136e-01 4.55773953e-01 -1.08985487e-01]\n", + " [-8.73532976e-01 4.65261357e-01 -1.43080433e-01]\n", + " [-9.06710199e-01 4.19839252e-01 4.01449513e-02]\n", + " [-8.91683952e-01 4.49612109e-01 5.24278571e-02]\n", + " [-8.75621312e-01 4.78682260e-01 6.44252419e-02]\n", + " [-8.58645258e-01 5.06895698e-01 7.60596596e-02]\n", + " [-8.40899355e-01 5.34111826e-01 8.72515457e-02]\n", + " [-8.22546299e-01 5.60204400e-01 9.79214835e-02]\n", + " [-8.64553318e-01 4.79467101e-01 -1.50528598e-01]\n", + " [-8.49041536e-01 5.10126687e-01 -1.37474485e-01]\n", + " [-8.32493338e-01 5.39905844e-01 -1.24324263e-01]\n", + " [-8.15034874e-01 5.68649077e-01 -1.11159262e-01]\n", + " [-7.96809205e-01 5.96220683e-01 -9.80611435e-02]\n", + " [-7.77977705e-01 6.22500075e-01 -8.51137368e-02]\n", + " [-8.14099292e-01 5.73561024e-01 9.09400563e-02]\n", + " [-8.08207233e-01 5.85810997e-01 6.02207998e-02]\n", + " [-8.01353352e-01 5.97503762e-01 2.86715942e-02]\n", + " [-7.93515043e-01 6.08540510e-01 -3.51054239e-03]\n", + " [-7.84690426e-01 6.18834205e-01 -3.61270207e-02]\n", + " [-7.74899335e-01 6.28309412e-01 -6.89804520e-02]\n", + " [-9.11746669e-01 4.09193781e-01 3.57555700e-02]\n", + " [-9.11746669e-01 4.09193781e-01 3.57555700e-02]\n", + " [-7.71219866e-01 6.31446093e-01 -8.05962189e-02]\n", + " [-7.71219866e-01 6.31446093e-01 -8.05962189e-02]\n", + " [-9.05260566e-01 4.23873883e-01 2.88831977e-02]\n", + " [-8.90172798e-01 4.53753178e-01 4.12364248e-02]\n", + " [-8.74041543e-01 4.82915603e-01 5.33282441e-02]\n", + " [-8.56990041e-01 5.11206905e-01 6.50812649e-02]\n", + " [-8.39162137e-01 5.38486374e-01 7.64155338e-02]\n", + " [-8.20721239e-01 5.64627391e-01 8.72499721e-02]\n", + " [-9.00350737e-01 4.35150079e-01 -3.59999422e-03]\n", + " [-8.85110534e-01 4.65295059e-01 8.93596919e-03]\n", + " [-8.68811794e-01 4.94685069e-01 2.12778810e-02]\n", + " [-8.51578548e-01 5.23165195e-01 3.33489959e-02]\n", + " [-8.33555008e-01 5.50594931e-01 4.50696191e-02]\n", + " [-8.14905444e-01 5.76847527e-01 5.63564460e-02]\n", + " [-8.94219053e-01 4.46116213e-01 -3.67778365e-02]\n", + " [-8.78858967e-01 4.76473425e-01 -2.40830103e-02]\n", + " [-8.62432852e-01 5.06040469e-01 -1.15160097e-02]\n", + " [-8.45065674e-01 5.34661846e-01 8.46877307e-04]\n", + " [-8.26901709e-01 5.62197881e-01 1.29269164e-02]\n", + " [-8.08104986e-01 5.88522865e-01 2.46408141e-02]\n", + " [-8.86837867e-01 4.56678001e-01 -7.04542486e-02]\n", + " [-8.71391262e-01 4.87192731e-01 -5.76238816e-02]\n", + " [-8.54878719e-01 5.16885268e-01 -4.48552803e-02]\n", + " [-8.37426110e-01 5.45599713e-01 -3.22251892e-02]\n", + " [-8.19177616e-01 5.73197627e-01 -1.98119444e-02]\n", + " [-8.00296506e-01 5.99555034e-01 -7.69825008e-03]\n", + " [-8.78201226e-01 4.66750790e-01 -1.04433264e-01]\n", + " [-8.62702704e-01 4.97366518e-01 -9.14909315e-02]\n", + " [-8.46145858e-01 5.27131937e-01 -7.85436728e-02]\n", + " [-8.28657109e-01 5.55891069e-01 -6.56697471e-02]\n", + " [-8.10380333e-01 5.83506813e-01 -5.29482347e-02]\n", + " [-7.91477899e-01 6.09857017e-01 -4.04617476e-02]\n", + " [-8.68326848e-01 4.76258748e-01 -1.38513865e-01]\n", + " [-8.52812135e-01 5.06917299e-01 -1.25484318e-01]\n", + " [-8.36254043e-01 5.36702296e-01 -1.12382477e-01]\n", + " [-8.18778915e-01 5.65458060e-01 -9.92888280e-02]\n", + " [-8.00530062e-01 5.93048605e-01 -8.62842474e-02]\n", + " [-7.81669069e-01 6.19353093e-01 -7.34521144e-02]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:cartToSphere: vec: [[ 0.51517222 -0.42927377 -0.74183665]\n", + " [ 0.51151526 -0.40707262 -0.75673246]\n", + " [ 0.50726353 -0.38416128 -0.77142972]\n", + " [ 0.50242769 -0.36061576 -0.78582612]\n", + " [ 0.49702046 -0.33651565 -0.7998299 ]\n", + " [ 0.49105708 -0.31194463 -0.81335939]\n", + " [ 0.48455582 -0.28699082 -0.8263425 ]\n", + " [ 0.47753864 -0.26174673 -0.83871658]\n", + " [ 0.51517222 -0.42927377 -0.74183665]\n", + " [ 0.49263263 -0.44165766 -0.74983438]\n", + " [ 0.46920509 -0.45385608 -0.7575363 ]\n", + " [ 0.4449741 -0.46580921 -0.76486589]\n", + " [ 0.42002641 -0.47746039 -0.77175734]\n", + " [ 0.39445173 -0.48875593 -0.77815517]\n", + " [ 0.36834352 -0.49964531 -0.78401378]\n", + " [ 0.34179934 -0.51008163 -0.78929712]\n", + " [ 0.47753864 -0.26174673 -0.83871658]\n", + " [ 0.45386379 -0.27311184 -0.84818487]\n", + " [ 0.42933914 -0.28448712 -0.85716683]\n", + " [ 0.40404264 -0.29581502 -0.86558825]\n", + " [ 0.37805635 -0.30704088 -0.87338382]\n", + " [ 0.35146825 -0.31811233 -0.8804968 ]\n", + " [ 0.32437326 -0.32897913 -0.8868792 ]\n", + " [ 0.29687308 -0.33959347 -0.89249238]\n", + " [ 0.34179934 -0.51008163 -0.78929712]\n", + " [ 0.3364711 -0.48784967 -0.80547495]\n", + " [ 0.33075964 -0.46478328 -0.82132488]\n", + " [ 0.32467343 -0.44095272 -0.83674839]\n", + " [ 0.31822413 -0.41643315 -0.85165535]\n", + " [ 0.3114272 -0.39130626 -0.86596334]\n", + " [ 0.30430224 -0.36566102 -0.87959773]\n", + " [ 0.29687308 -0.33959347 -0.89249238]\n", + " [ 0.51357565 -0.41972851 -0.74837693]\n", + " [ 0.50869145 -0.39203131 -0.76651449]\n", + " [ 0.50292437 -0.36334242 -0.78425083]\n", + " [ 0.49629699 -0.33380684 -0.80141268]\n", + " [ 0.48883738 -0.30357867 -0.81784962]\n", + " [ 0.48058072 -0.27282197 -0.83343287]\n", + " [ 0.50544752 -0.43461728 -0.74540635]\n", + " [ 0.47721416 -0.44967773 -0.75502092]\n", + " [ 0.44773082 -0.46439992 -0.76411375]\n", + " [ 0.41715621 -0.47867823 -0.77255929]\n", + " [ 0.38565558 -0.49241385 -0.78025533]\n", + " [ 0.3534027 -0.50551526 -0.78712188]\n", + " [ 0.46735065 -0.26678393 -0.84285806]\n", + " [ 0.43775382 -0.28072817 -0.85414477]\n", + " [ 0.40695762 -0.29462998 -0.86462632]\n", + " [ 0.3751113 -0.30838757 -0.87417883]\n", + " [ 0.34237696 -0.32190451 -0.88269786]\n", + " [ 0.30893218 -0.33508928 -0.89009892]\n", + " [ 0.33961552 -0.50046038 -0.7963672 ]\n", + " [ 0.3328275 -0.47264273 -0.81598695]\n", + " [ 0.32547178 -0.44364118 -0.83501534]\n", + " [ 0.3175685 -0.41359196 -0.85328304]\n", + " [ 0.30914613 -0.38264554 -0.87063831]\n", + " [ 0.3002425 -0.3509687 -0.88694724]\n", + " [ 0.51508526 -0.42924174 -0.74191556]\n", + " [ 0.51508526 -0.42924174 -0.74191556]\n", + " [ 0.29699358 -0.3396474 -0.89243176]\n", + " [ 0.29699358 -0.3396474 -0.89243176]\n", + " [ 0.50389044 -0.42508904 -0.75192668]\n", + " [ 0.47552417 -0.44011787 -0.76169089]\n", + " [ 0.44590962 -0.45482468 -0.77090798]\n", + " [ 0.4152046 -0.46910368 -0.77945294]\n", + " [ 0.38357376 -0.48285569 -0.78722395]\n", + " [ 0.35119083 -0.49598871 -0.79414117]\n", + " [ 0.49888436 -0.39733987 -0.77021778]\n", + " [ 0.47017805 -0.4122536 -0.78037143]\n", + " [ 0.4402289 -0.42689299 -0.78991195]\n", + " [ 0.40919199 -0.44115194 -0.79871577]\n", + " [ 0.37723051 -0.45493043 -0.80668175]\n", + " [ 0.34451838 -0.46813519 -0.81373002]\n", + " [ 0.49301368 -0.36858464 -0.78808811]\n", + " [ 0.46401987 -0.383344 -0.79858183]\n", + " [ 0.43378966 -0.39787895 -0.80840514]\n", + " [ 0.4024756 -0.41208354 -0.81743535]\n", + " [ 0.37023986 -0.42585739 -0.82557127]\n", + " [ 0.33725701 -0.43910648 -0.83273237]\n", + " [ 0.48630024 -0.3389679 -0.80536503]\n", + " [ 0.45706947 -0.35353209 -0.81615106]\n", + " [ 0.42661027 -0.36792387 -0.82621771]\n", + " [ 0.39507327 -0.38203798 -0.83544246]\n", + " [ 0.3626201 -0.39577445 -0.84372344]\n", + " [ 0.32942629 -0.40903918 -0.85097901]\n", + " [ 0.47877145 -0.30864362 -0.82189842]\n", + " [ 0.44935263 -0.32297144 -0.83292957]\n", + " [ 0.41871565 -0.33718078 -0.84320005]\n", + " [ 0.38700999 -0.35116765 -0.85258697]\n", + " [ 0.35439726 -0.36483321 -0.8609874 ]\n", + " [ 0.32105396 -0.37808404 -0.86831838]\n", + " [ 0.47046204 -0.27777616 -0.83755948]\n", + " [ 0.44090319 -0.29182732 -0.84878807]\n", + " [ 0.41013947 -0.30581586 -0.8592219 ]\n", + " [ 0.37832005 -0.3196394 -0.86873735]\n", + " [ 0.34560685 -0.33320082 -0.87723037]\n", + " [ 0.31217722 -0.34640801 -0.88461679]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:fp_optics: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:cartToSphere: vec: [[ 0.23577481 0.38423425 -0.89262214]\n", + " [ 0.20854002 0.38520927 -0.89895766]\n", + " [ 0.1805916 0.38589369 -0.90469483]\n", + " [ 0.15203221 0.38626775 -0.90977109]\n", + " [ 0.12296612 0.38631566 -0.91413322]\n", + " [ 0.09350098 0.38602572 -0.91773728]\n", + " [ 0.06374876 0.38539045 -0.92054891]\n", + " [ 0.03382555 0.38440685 -0.92254388]\n", + " [ 0.23577481 0.38423425 -0.89262214]\n", + " [ 0.23723697 0.35732282 -0.90334878]\n", + " [ 0.23839961 0.33020127 -0.91330868]\n", + " [ 0.23925816 0.30297975 -0.92247428]\n", + " [ 0.2398088 0.27577179 -0.93082848]\n", + " [ 0.24004804 0.24869431 -0.93836458]\n", + " [ 0.23997227 0.22186789 -0.94508621]\n", + " [ 0.23957773 0.19541713 -0.95100718]\n", + " [ 0.03382555 0.38440685 -0.92254388]\n", + " [ 0.03548305 0.3565508 -0.93360188]\n", + " [ 0.03710042 0.32846391 -0.94378759]\n", + " [ 0.03867174 0.30026143 -0.9530727 ]\n", + " [ 0.04019165 0.27205967 -0.96144067]\n", + " [ 0.04165533 0.24397528 -0.96888642]\n", + " [ 0.04305839 0.21612572 -0.97541563]\n", + " [ 0.04439677 0.18863078 -0.98104401]\n", + " [ 0.23957773 0.19541713 -0.95100718]\n", + " [ 0.21331854 0.19457804 -0.95741035]\n", + " [ 0.18633744 0.19371951 -0.96319838]\n", + " [ 0.15874219 0.19282248 -0.96830801]\n", + " [ 0.13064094 0.19187262 -0.97268589]\n", + " [ 0.10214262 0.19086027 -0.9762885 ]\n", + " [ 0.0733574 0.18978012 -0.97908232]\n", + " [ 0.04439677 0.18863078 -0.98104401]\n", + " [ 0.22400018 0.38460175 -0.89549171]\n", + " [ 0.1901284 0.3856031 -0.90286291]\n", + " [ 0.15528664 0.38614805 -0.90927209]\n", + " [ 0.11966608 0.38620591 -0.91461742]\n", + " [ 0.08346502 0.38575513 -0.91881803]\n", + " [ 0.04689136 0.38478383 -0.92181484]\n", + " [ 0.23635704 0.37253694 -0.89741383]\n", + " [ 0.23794846 0.33939824 -0.9100491 ]\n", + " [ 0.23908551 0.30605298 -0.92150404]\n", + " [ 0.23976088 0.27270878 -0.9317428 ]\n", + " [ 0.23996806 0.23958091 -0.94075306]\n", + " [ 0.23970036 0.20689302 -0.94854574]\n", + " [ 0.03465522 0.37230116 -0.92746475]\n", + " [ 0.03666026 0.33799117 -0.940435 ]\n", + " [ 0.03859888 0.3034488 -0.95206563]\n", + " [ 0.04046097 0.26888777 -0.9623213 ]\n", + " [ 0.04223766 0.2345229 -0.97119256]\n", + " [ 0.04392103 0.20057129 -0.97869408]\n", + " [ 0.22822578 0.19514238 -0.95385138]\n", + " [ 0.1955423 0.19410468 -0.96129422]\n", + " [ 0.16188152 0.19301813 -0.96774913]\n", + " [ 0.12744235 0.19185437 -0.97311374]\n", + " [ 0.09242539 0.19059557 -0.97730797]\n", + " [ 0.05703402 0.18923361 -0.98027433]\n", + " [ 0.23568851 0.38414651 -0.89268269]\n", + " [ 0.23568851 0.38414651 -0.89268269]\n", + " [ 0.04449152 0.18872811 -0.981021 ]\n", + " [ 0.04449152 0.18872811 -0.981021 ]\n", + " [ 0.22467313 0.37294607 -0.90024064]\n", + " [ 0.22629232 0.3396733 -0.91291502]\n", + " [ 0.22747988 0.30618934 -0.92439223]\n", + " [ 0.22822885 0.27270212 -0.93463637]\n", + " [ 0.22853318 0.23942674 -0.94363521]\n", + " [ 0.22838653 0.20658646 -0.95139982]\n", + " [ 0.19081302 0.37383134 -0.90765661]\n", + " [ 0.19250888 0.34022149 -0.92042907]\n", + " [ 0.19383784 0.30638994 -0.93196142]\n", + " [ 0.19479375 0.2725457 -0.94221772]\n", + " [ 0.19537169 0.23890353 -0.95118611]\n", + " [ 0.19556633 0.20568519 -0.95887821]\n", + " [ 0.15598176 0.374282 -0.91410212]\n", + " [ 0.15775195 0.340399 -0.92695353]\n", + " [ 0.15922116 0.30628729 -0.93852902]\n", + " [ 0.16038344 0.27215727 -0.94879269]\n", + " [ 0.16123436 0.23822355 -0.95773327]\n", + " [ 0.16176926 0.20470631 -0.96536316]\n", + " [ 0.12037052 0.37426794 -0.91947509]\n", + " [ 0.12221321 0.34017729 -0.93238583]\n", + " [ 0.1238227 0.30585396 -0.94399221]\n", + " [ 0.12519251 0.27150979 -0.95425849]\n", + " [ 0.12631777 0.23735944 -0.96317408]\n", + " [ 0.12719374 0.20362171 -0.97075226]\n", + " [ 0.08417757 0.37376836 -0.9236944 ]\n", + " [ 0.08609093 0.33953754 -0.93664434]\n", + " [ 0.08784092 0.30507266 -0.94826929]\n", + " [ 0.0894198 0.27058675 -0.95853373]\n", + " [ 0.0908214 0.23629458 -0.96742769]\n", + " [ 0.09204007 0.20241393 -0.97496524]\n", + " [ 0.04761074 0.372772 -0.92670073]\n", + " [ 0.0495924 0.33847028 -0.93966934]\n", + " [ 0.05148216 0.30393536 -0.95130063]\n", + " [ 0.05327058 0.26938093 -0.96155923]\n", + " [ 0.05494955 0.23502181 -0.97043562]\n", + " [ 0.05651179 0.20107519 -0.97794437]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:cartToSphere: vec: [[-0.25699941 0.33933599 -0.904877 ]\n", + " [-0.27281145 0.31772109 -0.90808988]\n", + " [-0.2886296 0.29533324 -0.91075311]\n", + " [-0.30438608 0.27226555 -0.91280917]\n", + " [-0.32001471 0.24860997 -0.91421205]\n", + " [-0.33545065 0.22445863 -0.91492687]\n", + " [-0.35063058 0.19990486 -0.91492964]\n", + " [-0.36549311 0.17504372 -0.91420703]\n", + " [-0.25699941 0.33933599 -0.904877 ]\n", + " [-0.23478811 0.32800154 -0.91503526]\n", + " [-0.21200226 0.31604358 -0.92475483]\n", + " [-0.18872302 0.30351511 -0.93394979]\n", + " [-0.16503339 0.29046774 -0.94254574]\n", + " [-0.141019 0.27695287 -0.95047922]\n", + " [-0.1167684 0.26302267 -0.95769735]\n", + " [-0.09237298 0.24873082 -0.96415777]\n", + " [-0.36549311 0.17504372 -0.91420703]\n", + " [-0.34351302 0.16173767 -0.92511606]\n", + " [-0.32080825 0.14802584 -0.93550543]\n", + " [-0.29745422 0.13395621 -0.94529187]\n", + " [-0.27353003 0.11957836 -0.95440156]\n", + " [-0.24911968 0.10494431 -0.96277 ]\n", + " [-0.22431241 0.09010866 -0.9703424 ]\n", + " [-0.19920233 0.0751284 -0.97707428]\n", + " [-0.09237298 0.24873082 -0.96415777]\n", + " [-0.10733368 0.22543728 -0.96832717]\n", + " [-0.12250177 0.20149319 -0.97179927]\n", + " [-0.13781241 0.17698442 -0.97451745]\n", + " [-0.15320153 0.15199942 -0.97643508]\n", + " [-0.16860522 0.12663041 -0.97751574]\n", + " [-0.18395981 0.10097353 -0.97773367]\n", + " [-0.19920233 0.0751284 -0.97707428]\n", + " [-0.2638134 0.32997473 -0.90637694]\n", + " [-0.28320528 0.30295036 -0.90995376]\n", + " [-0.30253894 0.27485778 -0.91264636]\n", + " [-0.32169189 0.24586666 -0.91436531]\n", + " [-0.34054478 0.21614672 -0.91504636]\n", + " [-0.35898182 0.18587051 -0.91464977]\n", + " [-0.24744489 0.33440125 -0.90936617]\n", + " [-0.21982584 0.32008222 -0.92153349]\n", + " [-0.19142414 0.30487966 -0.93295509]\n", + " [-0.1623918 0.28888911 -0.94348926]\n", + " [-0.13288646 0.27220528 -0.95301913]\n", + " [-0.10307237 0.25492486 -0.96145172]\n", + " [-0.35595313 0.16938095 -0.91902528]\n", + " [-0.3285171 0.15279503 -0.93205697]\n", + " [-0.30006729 0.135647 -0.94422429]\n", + " [-0.2707477 0.11802743 -0.95538746]\n", + " [-0.24071301 0.10003206 -0.9654278 ]\n", + " [-0.21012959 0.08176244 -0.97424866]\n", + " [-0.09895007 0.23870982 -0.96603649]\n", + " [-0.11743443 0.20971352 -0.97068501]\n", + " [-0.13616559 0.17982511 -0.97422885]\n", + " [-0.15502531 0.14920625 -0.97657803]\n", + " [-0.17389595 0.11802672 -0.97766553]\n", + " [-0.19266056 0.086465 -0.97744857]\n", + " [-0.25697851 0.33922586 -0.90492423]\n", + " [-0.25697851 0.33922586 -0.90492423]\n", + " [-0.19923674 0.07526839 -0.97705649]\n", + " [-0.19923674 0.07526839 -0.97705649]\n", + " [-0.25427043 0.32508502 -0.91086018]\n", + " [-0.22661465 0.31059655 -0.92313357]\n", + " [-0.19816051 0.29524558 -0.93464563]\n", + " [-0.16905952 0.27912631 -0.94525519]\n", + " [-0.1394693 0.26233258 -0.9548455 ]\n", + " [-0.10955442 0.24496073 -0.96332345]\n", + " [-0.27364786 0.29788516 -0.91453884]\n", + " [-0.24592257 0.28294084 -0.9270742 ]\n", + " [-0.21735499 0.26719187 -0.93881058]\n", + " [-0.18809522 0.25072925 -0.94960783]\n", + " [-0.15830068 0.23364515 -0.95934917]\n", + " [-0.12813693 0.21603563 -0.96794087]\n", + " [-0.29298489 0.26962902 -0.91731131]\n", + " [-0.26524147 0.25426084 -0.9300529 ]\n", + " [-0.23661299 0.23814395 -0.94196696]\n", + " [-0.20724804 0.22136738 -0.95291381]\n", + " [-0.17730375 0.20402282 -0.96277623]\n", + " [-0.14694653 0.18620692 -0.97145957]\n", + " [-0.31215892 0.24048485 -0.9190886 ]\n", + " [-0.28444854 0.22472135 -0.93198141]\n", + " [-0.25581196 0.20826423 -0.94402662]\n", + " [-0.22639627 0.19120187 -0.95508459]\n", + " [-0.19635811 0.17362651 -0.96503748]\n", + " [-0.16586438 0.15563601 -0.97378973]\n", + " [-0.33105021 0.21062164 -0.91980665]\n", + " [-0.30342328 0.1944899 -0.93279579]\n", + " [-0.27483116 0.17771982 -0.94492513]\n", + " [-0.24541948 0.16040021 -0.95605494]\n", + " [-0.2153442 0.14262456 -0.96606683]\n", + " [-0.18477229 0.12449228 -0.97486454]\n", + " [-0.34954249 0.18021184 -0.91942577]\n", + " [-0.32204817 0.16373935 -0.93245611]\n", + " [-0.29355226 0.14668466 -0.94462198]\n", + " [-0.26419912 0.12913777 -0.95578358]\n", + " [-0.23414379 0.11119384 -0.96582225]\n", + " [-0.20355288 0.09295387 -0.97464137]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:fp_optics: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.989933 1.0000014 0.24069345 0.1539112 4.05433503\n", + " 3.43136895]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:cartToSphere: vec: [[ 0.33105147 -0.51418732 -0.79121193]\n", + " [ 0.32563391 -0.49198981 -0.80740856]\n", + " [ 0.31984633 -0.46895265 -0.82327501]\n", + " [ 0.31369741 -0.44514599 -0.83871269]\n", + " [ 0.30719913 -0.42064486 -0.85363142]\n", + " [ 0.3003673 -0.39553078 -0.86794867]\n", + " [ 0.29322184 -0.36989258 -0.88158972]\n", + " [ 0.28578681 -0.34382623 -0.89448836]\n", + " [ 0.33105147 -0.51418732 -0.79121193]\n", + " [ 0.30406781 -0.5239139 -0.79564878]\n", + " [ 0.27689802 -0.53309209 -0.79946251]\n", + " [ 0.24965135 -0.54169004 -0.80264943]\n", + " [ 0.22243936 -0.5496803 -0.80521569]\n", + " [ 0.19537595 -0.55703927 -0.80717748]\n", + " [ 0.16857774 -0.56374657 -0.80856128]\n", + " [ 0.14216485 -0.56978448 -0.80940398]\n", + " [ 0.28578681 -0.34382623 -0.89448836]\n", + " [ 0.25789976 -0.35400859 -0.89898033]\n", + " [ 0.22987212 -0.36383778 -0.90265214]\n", + " [ 0.20181803 -0.3732795 -0.90550091]\n", + " [ 0.17385151 -0.38230463 -0.90753448]\n", + " [ 0.14608571 -0.39088911 -0.90877097]\n", + " [ 0.11863331 -0.39901362 -0.90923829]\n", + " [ 0.09160805 -0.40666287 -0.90897375]\n", + " [ 0.14216485 -0.56978448 -0.80940398]\n", + " [ 0.13518718 -0.54877434 -0.82496736]\n", + " [ 0.12810486 -0.52686767 -0.84023782]\n", + " [ 0.12092777 -0.50414049 -0.85511335]\n", + " [ 0.11366988 -0.48067167 -0.8695021 ]\n", + " [ 0.10634912 -0.45654372 -0.88332197]\n", + " [ 0.09898699 -0.43184356 -0.89650026]\n", + " [ 0.09160805 -0.40666287 -0.90897375]\n", + " [ 0.32864312 -0.50465101 -0.7983239 ]\n", + " [ 0.32175268 -0.47687273 -0.81796553]\n", + " [ 0.31431489 -0.44790248 -0.83701226]\n", + " [ 0.30635046 -0.41787624 -0.8552946 ]\n", + " [ 0.2978885 -0.38694418 -0.87266067]\n", + " [ 0.28896743 -0.35527285 -0.88897639]\n", + " [ 0.31929801 -0.51841909 -0.79327828]\n", + " [ 0.28608702 -0.52997591 -0.79829803]\n", + " [ 0.25270477 -0.54067698 -0.80237691]\n", + " [ 0.21935571 -0.55046995 -0.80552213]\n", + " [ 0.18624955 -0.55931131 -0.80776355]\n", + " [ 0.15360241 -0.56716465 -0.80915422]\n", + " [ 0.27367841 -0.34839654 -0.89650431]\n", + " [ 0.23939115 -0.36064293 -0.90145912]\n", + " [ 0.20500605 -0.37232405 -0.90517806]\n", + " [ 0.17073311 -0.38338409 -0.90767111]\n", + " [ 0.13678069 -0.39377876 -0.90897158]\n", + " [ 0.10335657 -0.40347419 -0.90913475]\n", + " [ 0.13922576 -0.56071911 -0.81621705]\n", + " [ 0.13060334 -0.5343556 -0.83510889]\n", + " [ 0.12183289 -0.50672074 -0.85345816]\n", + " [ 0.11293845 -0.47795848 -0.87109161]\n", + " [ 0.10395296 -0.44822083 -0.88785802]\n", + " [ 0.09491731 -0.41766978 -0.9036275 ]\n", + " [ 0.33094174 -0.51414708 -0.79128398]\n", + " [ 0.33094174 -0.51414708 -0.79128398]\n", + " [ 0.09172484 -0.40672436 -0.90893446]\n", + " [ 0.09172484 -0.40672436 -0.90893446]\n", + " [ 0.31695381 -0.50894122 -0.80032438]\n", + " [ 0.28361476 -0.52055933 -0.80534505]\n", + " [ 0.2501065 -0.53133608 -0.80940022]\n", + " [ 0.21663385 -0.54121947 -0.81249693]\n", + " [ 0.18340636 -0.55016665 -0.81466481]\n", + " [ 0.15063949 -0.55814198 -0.81595666]\n", + " [ 0.3099488 -0.48120931 -0.81998131]\n", + " [ 0.27628936 -0.49298769 -0.82500141]\n", + " [ 0.2424687 -0.50396734 -0.82899087]\n", + " [ 0.20869291 -0.51409683 -0.83195656]\n", + " [ 0.17517123 -0.52333483 -0.83392788]\n", + " [ 0.14211723 -0.53164776 -0.8349571 ]\n", + " [ 0.30241829 -0.45227767 -0.83903998]\n", + " [ 0.26850221 -0.46419699 -0.84405434]\n", + " [ 0.23443579 -0.4753637 -0.84797949]\n", + " [ 0.20042661 -0.48572631 -0.85082262]\n", + " [ 0.16668381 -0.49524418 -0.85261346]\n", + " [ 0.13341917 -0.50388522 -0.85340437]\n", + " [ 0.29438362 -0.4222821 -0.85733081]\n", + " [ 0.26027646 -0.43432298 -0.86233388]\n", + " [ 0.22603238 -0.44566172 -0.8661957 ]\n", + " [ 0.19186032 -0.45624606 -0.86892413]\n", + " [ 0.15796936 -0.46603514 -0.87054979]\n", + " [ 0.12456971 -0.47499741 -0.87112562]\n", + " [ 0.28587468 -0.3913725 -0.8747018 ]\n", + " [ 0.25164404 -0.40351499 -0.87968797]\n", + " [ 0.21729201 -0.41501048 -0.88348768]\n", + " [ 0.18302843 -0.4258054 -0.88610967]\n", + " [ 0.14906221 -0.43585785 -0.88758571]\n", + " [ 0.1156023 -0.4451358 -0.88796972]\n", + " [ 0.27693051 -0.35971516 -0.8910188 ]\n", + " [ 0.24264566 -0.37193829 -0.89598269]\n", + " [ 0.20825659 -0.38357411 -0.89972223]\n", + " [ 0.17397339 -0.39456741 -0.90224709]\n", + " [ 0.14000461 -0.40487459 -0.90359022]\n", + " [ 0.10655825 -0.41446236 -0.90380656]]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [146.006602 1.0000014 0.23452229 0.33552009 1.92009863\n", + " 12.48880182]\n", + "DEBUG:root:cartToSphere: vec: [[-8.28064159e-02 2.42779101e-01 -9.66540949e-01]\n", + " [-9.76884650e-02 2.19429151e-01 -9.70725405e-01]\n", + " [-1.12789316e-01 1.95436480e-01 -9.74208988e-01]\n", + " [-1.28044379e-01 1.70887090e-01 -9.76935126e-01]\n", + " [-1.43389857e-01 1.45869634e-01 -9.78857190e-01]\n", + " [-1.58762137e-01 1.20476526e-01 -9.79938769e-01]\n", + " [-1.74097788e-01 9.48041123e-02 -9.80154141e-01]\n", + " [-1.89334001e-01 6.89521244e-02 -9.79488765e-01]\n", + " [-8.28064159e-02 2.42779101e-01 -9.66540949e-01]\n", + " [-5.83658333e-02 2.28071503e-01 -9.71893419e-01]\n", + " [-3.40079872e-02 2.13137923e-01 -9.76430070e-01]\n", + " [-9.83028750e-03 1.98037085e-01 -9.80145233e-01]\n", + " [ 1.40688032e-02 1.82828300e-01 -9.83044191e-01]\n", + " [ 3.75893900e-02 1.67571014e-01 -9.85143133e-01]\n", + " [ 6.06291887e-02 1.52324559e-01 -9.86469123e-01]\n", + " [ 8.30820962e-02 1.37148216e-01 -9.87060146e-01]\n", + " [-1.89334001e-01 6.89521244e-02 -9.79488765e-01]\n", + " [-1.63967503e-01 5.38657171e-02 -9.84993981e-01]\n", + " [-1.38537180e-01 3.87775793e-02 -9.89597771e-01]\n", + " [-1.13145372e-01 2.37478424e-02 -9.93294601e-01]\n", + " [-8.78941294e-02 8.83594455e-03 -9.96090632e-01]\n", + " [-6.28844617e-02 -5.89980765e-03 -9.98003375e-01]\n", + " [-3.82162877e-02 -2.04022767e-02 -9.99061191e-01]\n", + " [-1.39893309e-02 -3.46149862e-02 -9.99302808e-01]\n", + " [ 8.30820962e-02 1.37148216e-01 -9.87060146e-01]\n", + " [ 7.02456175e-02 1.13661459e-01 -9.91033110e-01]\n", + " [ 5.69561462e-02 8.96700411e-02 -9.94341632e-01]\n", + " [ 4.32827046e-02 6.52656757e-02 -9.96928783e-01]\n", + " [ 2.92902036e-02 4.05406182e-02 -9.98748488e-01]\n", + " [ 1.50407240e-02 1.55884480e-02 -9.99765361e-01]\n", + " [ 5.94531772e-04 -9.49563668e-03 -9.99954739e-01]\n", + " [-1.39893309e-02 -3.46149862e-02 -9.99302808e-01]\n", + " [-8.91799963e-02 2.32632875e-01 -9.68467281e-01]\n", + " [-1.07573984e-01 2.03571672e-01 -9.73132269e-01]\n", + " [-1.26232460e-01 1.73630420e-01 -9.76687178e-01]\n", + " [-1.45037708e-01 1.42971138e-01 -9.79042040e-01]\n", + " [-1.63872623e-01 1.11763975e-01 -9.80129878e-01]\n", + " [-1.82620662e-01 8.01877586e-02 -9.79907964e-01]\n", + " [-7.21963467e-02 2.36319192e-01 -9.68989642e-01]\n", + " [-4.22843744e-02 2.18133800e-01 -9.75002398e-01]\n", + " [-1.25932630e-02 1.99667384e-01 -9.79782805e-01]\n", + " [ 1.66961549e-02 1.81028920e-01 -9.83336041e-01]\n", + " [ 4.53998708e-02 1.62327819e-01 -9.85691905e-01]\n", + " [ 7.33280828e-02 1.43673270e-01 -9.86904749e-01]\n", + " [-1.78236652e-01 6.24670557e-02 -9.82002832e-01]\n", + " [-1.47091821e-01 4.39682724e-02 -9.88145125e-01]\n", + " [-1.15952901e-01 2.55265128e-02 -9.92926645e-01]\n", + " [-8.50079299e-02 7.25152252e-03 -9.96353887e-01]\n", + " [-5.44428535e-02 -1.07493589e-02 -9.98459026e-01]\n", + " [-2.44414504e-02 -2.83712611e-02 -9.99298598e-01]\n", + " [ 7.74694357e-02 1.27027420e-01 -9.88869314e-01]\n", + " [ 6.14218914e-02 9.78906497e-02 -9.93299941e-01]\n", + " [ 4.47632025e-02 6.80868680e-02 -9.96674688e-01]\n", + " [ 2.76145055e-02 3.77856334e-02 -9.98904242e-01]\n", + " [ 1.00902007e-02 7.15925514e-03 -9.99923464e-01]\n", + " [-7.69928411e-03 -2.36163819e-02 -9.99691446e-01]\n", + " [-8.27732475e-02 2.42650599e-01 -9.66576058e-01]\n", + " [-8.27732475e-02 2.42650599e-01 -9.66576058e-01]\n", + " [-1.40212706e-02 -3.44810905e-02 -9.99306989e-01]\n", + " [-1.40212706e-02 -3.44810905e-02 -9.99306989e-01]\n", + " [-7.85602984e-02 2.26278151e-01 -9.70889529e-01]\n", + " [-4.85173082e-02 2.08039595e-01 -9.76916372e-01]\n", + " [-1.86810981e-02 1.89539492e-01 -9.81695369e-01]\n", + " [ 1.07674524e-02 1.70887319e-01 -9.85231742e-01]\n", + " [ 3.96449580e-02 1.52192880e-01 -9.87555368e-01]\n", + " [ 6.77629716e-02 1.33565578e-01 -9.88720596e-01]\n", + " [-9.68462696e-02 1.97158807e-01 -9.75576345e-01]\n", + " [-6.64701526e-02 1.78792726e-01 -9.81638874e-01]\n", + " [-3.62621104e-02 1.60221153e-01 -9.86414842e-01]\n", + " [-6.40377922e-03 1.41554738e-01 -9.89909717e-01]\n", + " [ 2.29224442e-02 1.22904075e-01 -9.92153793e-01]\n", + " [ 5.15312538e-02 1.04378869e-01 -9.93201682e-01]\n", + " [-1.15416605e-01 1.67171377e-01 -9.79148987e-01]\n", + " [-8.47641635e-02 1.48712962e-01 -9.85240829e-01]\n", + " [-5.42420891e-02 1.30106791e-01 -9.90015161e-01]\n", + " [-2.40334398e-02 1.11464205e-01 -9.93477793e-01]\n", + " [ 5.67933966e-03 9.28959951e-02 -9.95659620e-01]\n", + " [ 3.47128565e-02 7.45115770e-02 -9.96615795e-01]\n", + " [-1.34154152e-01 1.36478246e-01 -9.81517372e-01]\n", + " [-1.03283562e-01 1.17963876e-01 -9.87632032e-01]\n", + " [-7.25060021e-02 9.93612954e-02 -9.92406274e-01]\n", + " [-4.20062380e-02 8.07819848e-02 -9.95846247e-01]\n", + " [-1.19674937e-02 6.23362995e-02 -9.97983449e-01]\n", + " [ 1.74275961e-02 4.41327668e-02 -9.98873655e-01]\n", + " [-1.52942415e-01 1.05249905e-01 -9.82614408e-01]\n", + " [-1.21913579e-01 8.67167796e-02 -9.88745306e-01]\n", + " [-9.09405772e-02 6.81565355e-02 -9.93521262e-01]\n", + " [-6.02098139e-02 4.96802433e-02 -9.96948671e-01]\n", + " [-2.99056600e-02 3.13972587e-02 -9.99059490e-01]\n", + " [-2.10875740e-04 1.34147319e-02 -9.99909996e-01]\n", + " [-1.71665349e-01 7.36654234e-02 -9.82397279e-01]\n", + " [-1.40539760e-01 5.51510729e-02 -9.88537776e-01]\n", + " [-1.09433030e-01 3.66717081e-02 -9.93317471e-01]\n", + " [-7.85328586e-02 1.83374956e-02 -9.96742859e-01]\n", + " [-4.80248081e-02 2.56354441e-04 -9.98846110e-01]\n", + " [-1.80923306e-02 -1.74662336e-02 -9.99683749e-01]]\n" + ] + } + ], + "source": [ + "from testfun import test_pix2radec_SectorCameraCCD, test_pix2radec_benchmark_SectorCameraCCD\n", + "\n", + "test_pix2radec_df=pd.DataFrame(data=None, columns=['dra_med','dra_max','dra_std',\n", + " 'ddec_med','ddec_max','ddec_std',\n", + " 'Sector','Camera','CCD'])\n", + "pool=Pool()\n", + "for result in pool.map(test_pix2radec_benchmark_SectorCameraCCD, inlist):\n", + " ra_med=np.median(result[1])\n", + " ra_max=max(result[1])\n", + " ra_std=np.std(result[1])\n", + " \n", + " dec_med=np.median(result[2])\n", + " dec_max=max(result[2])\n", + " dec_std=np.std(result[2])\n", + " \n", + " rdf=pd.DataFrame({'dra_med': ra_med,'dra_max': ra_max,'dra_std':ra_std,\n", + " 'ddec_med': dec_med,'ddec_max': dec_max,'ddec_std':dec_std,\n", + " 'Sector':result[3],'Camera':result[4],'CCD':result[5]},index=[0])\n", + " \n", + " test_pix2radec_df=pd.concat([rdf, test_pix2radec_df],ignore_index=True)\n", + "pool.close()" + ] + }, + { + "cell_type": "markdown", + "id": "4c200023", + "metadata": {}, + "source": [ + "## Results, below, overall we're on average ~ a few tenths of degree off which is not great\n", + "\n", + "# BUT, I never swapped out the hand-coded optimize from the initial christina fork with the scipy optimize from tess_stars2px.py \n", + "This is obviously next" + ] + }, + { + "cell_type": "code", + "execution_count": 397, + "id": "f4f2d265", + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
dra_meddra_maxdra_stdddec_medddec_maxddec_stdSectorCameraCCD
020.9652225.966791e+011.439560e+0124.0856024.693700e+011.358895e+016844
118.8900361.017726e+022.713095e+0122.8653245.158261e+011.547083e+016843
20.0000006.650680e-109.141026e-110.0000001.534772e-104.076652e-116842
324.0640341.245300e+023.390112e+0129.4412186.719784e+012.035176e+016841
412.2093862.127284e+016.743546e+004.3426549.385512e+002.952378e+006834
..............................
108325.3550323.942707e+011.124301e+013.5222481.118414e+013.216165e+00121
10841.3861943.076217e+001.041471e+000.7757771.940948e+006.356156e-01114
108524.5515185.713472e+011.721726e+0112.5564783.223610e+019.691471e+00113
10860.0000004.092726e-107.599486e-110.0000001.023182e-102.241973e-11112
108724.0045144.435846e+011.337719e+018.8484422.405211e+017.607382e+00111
\n", + "

1088 rows × 9 columns

\n", + "
" + ], + "text/plain": [ + " dra_med dra_max dra_std ddec_med ddec_max \\\n", + "0 20.965222 5.966791e+01 1.439560e+01 24.085602 4.693700e+01 \n", + "1 18.890036 1.017726e+02 2.713095e+01 22.865324 5.158261e+01 \n", + "2 0.000000 6.650680e-10 9.141026e-11 0.000000 1.534772e-10 \n", + "3 24.064034 1.245300e+02 3.390112e+01 29.441218 6.719784e+01 \n", + "4 12.209386 2.127284e+01 6.743546e+00 4.342654 9.385512e+00 \n", + "... ... ... ... ... ... \n", + "1083 25.355032 3.942707e+01 1.124301e+01 3.522248 1.118414e+01 \n", + "1084 1.386194 3.076217e+00 1.041471e+00 0.775777 1.940948e+00 \n", + "1085 24.551518 5.713472e+01 1.721726e+01 12.556478 3.223610e+01 \n", + "1086 0.000000 4.092726e-10 7.599486e-11 0.000000 1.023182e-10 \n", + "1087 24.004514 4.435846e+01 1.337719e+01 8.848442 2.405211e+01 \n", + "\n", + " ddec_std Sector Camera CCD \n", + "0 1.358895e+01 68 4 4 \n", + "1 1.547083e+01 68 4 3 \n", + "2 4.076652e-11 68 4 2 \n", + "3 2.035176e+01 68 4 1 \n", + "4 2.952378e+00 68 3 4 \n", + "... ... ... ... .. \n", + "1083 3.216165e+00 1 2 1 \n", + "1084 6.356156e-01 1 1 4 \n", + "1085 9.691471e+00 1 1 3 \n", + "1086 2.241973e-11 1 1 2 \n", + "1087 7.607382e+00 1 1 1 \n", + "\n", + "[1088 rows x 9 columns]" + ] + }, + "execution_count": 397, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "test_pix2radec_df" + ] + }, + { + "cell_type": "markdown", + "id": "465f06ad", + "metadata": {}, + "source": [ + "## What about the reverse? We'll take our RA, DEC benchmark files (created by tess_stars2px.py --revers footprint()) and do TESSPoint.radec2pix to compare against our benchmark final pixel files" + ] + }, + { + "cell_type": "code", + "execution_count": 357, + "id": "30b40375", + "metadata": {}, + "outputs": [], + "source": [ + "def test_radec2pix_SectorCameraCCD(SectorCameraCCD):\n", + " Sector, Camera, CCD = SectorCameraCCD\n", + " \n", + " dir_testfiles='/Users/tapritc2/tessgi/tesspoint/TESSPoint_CreateTestFiles/testfiles'\n", + " wcsfile=dir_testfiles+\"/TEST_pix2radec_Sec{:02d}_Cam{}_CCD{}_stars2px.dat\".format(Sector,Camera,CCD)\n", + " \n", + " input_df=pd.read_csv(wcsfile,delimiter=' ',names=['tic','x','y'],skiprows=1,index_col=False)\n", + " input_arr=np.array([input_df.x.to_numpy(),input_df.y.to_numpy()]).T\n", + "\n", + " pointing=TESSPoint(Sector,Camera,CCD)\n", + " \n", + " output_pix=pointing.radec2pix(input_arr)\n", + " \n", + " output_df = pd.DataFrame({'tic':input_df.tic.to_numpy(),\n", + " 'row':output_pix[0][:,0],\n", + " 'col':output_pix[0][:,1]})\n", + " output_df['index']=output_df['tic']\n", + " \n", + " return output_df\n", + "\n", + "\n", + "def test_radec2pix_benchmark_SectorCameraCCD(SectorCameraCCD):\n", + " Sector, Camera, CCD = SectorCameraCCD\n", + " \n", + " dir_testfiles='/Users/tapritc2/tessgi/tesspoint/TESSPoint_CreateTestFiles/testfiles'\n", + " \n", + " pixfile=dir_testfiles+\"/TEST_radec2pix_Sec{:02d}_Cam{}_CCD{}_stars2px.dat\".format(Sector,Camera,CCD)\n", + "\n", + " output_pix_df = test_radec2pix_SectorCameraCCD(SectorCameraCCD)\n", + " benchmark_pix_df = pd.read_csv(pixfile,names=['tic','ra','dec','el','ela','s','c','ccd','row','col','edge'],\n", + " index_col=0, skiprows=16,delimiter=\"|\" )\n", + "\n", + " idx = output_pix_df.index.intersection(benchmark_pix_df.index)\n", + " \n", + " dr = output_pix_df.loc[idx, 'row'] - benchmark_pix_df.loc[idx, 'row']\n", + " dc = output_pix_df.loc[idx, 'col'] - benchmark_pix_df.loc[idx, 'col']\n", + " \n", + " return idx, dr, dc, Sector, Camera, CCD\n" + ] + }, + { + "cell_type": "code", + "execution_count": 358, + "id": "6e151c2b", + "metadata": {}, + "outputs": [ + { + "name": "stderr", + "output_type": "stream", + "text": [ + "IOPub data rate exceeded.\n", + "The notebook server will temporarily stop sending output\n", + "to the client in order to avoid crashing it.\n", + "To change this limit, set the config variable\n", + "`--NotebookApp.iopub_data_rate_limit`.\n", + "\n", + "Current values:\n", + "NotebookApp.iopub_data_rate_limit=1000000.0 (bytes/sec)\n", + "NotebookApp.rate_limit_window=3.0 (secs)\n", + "\n", + "BUG:root:optics_fp: sphi: [-0.99996956 -0.99995893 -0.99994158 -0.99991037 -0.99984537 -0.99967195\n", + " -0.99888983 -0.95886284 -0.99996956 -0.98938252 -0.96145475 -0.92030483\n", + " -0.87095303 -0.81797608 -0.76481709 -0.71369637 -0.95886284 -0.17659731\n", + " -0.09176722 -0.06188241 -0.04666441 -0.03744961 -0.03127246 -0.02684394\n", + " -0.71369637 -0.65943324 -0.59247759 -0.51053198 -0.41189324 -0.2963571\n", + " -0.16622968 -0.02684394 -0.99996117 -0.99994205 -0.99990433 -0.99981296\n", + " -0.99948354 -0.99550368 -0.99766348 -0.97260056 -0.92538694 -0.86498004\n", + " -0.79973567 -0.73547623 -0.36495814 -0.11160071 -0.06539891 -0.04622212\n", + " -0.0357361 -0.02912641 -0.69162042 -0.616889 -0.5207723 -0.39985178\n", + " -0.2538669 -0.08834096 -0.99996571 -0.99996571 -0.02734129 -0.02734129\n", + " -0.99735579 -0.96914412 -0.91672217 -0.85093152 -0.78133638 -0.71412384\n", + " -0.99606099 -0.95495897 -0.882678 -0.79840366 -0.71568873 -0.64094611\n", + " -0.99352198 -0.92871576 -0.82534028 -0.71815177 -0.62351779 -0.54491901\n", + " -0.98744912 -0.87313973 -0.72259694 -0.59380744 -0.49542438 -0.42145706\n", + " -0.96643258 -0.73302362 -0.53238015 -0.40581658 -0.32456648 -0.26928704\n", + " -0.78592344 -0.34216247 -0.20786992 -0.14837557 -0.11517726 -0.094064 ]\n", + "DEBUG:root:make_az_asym: xyp: shape: (96, 2)\n", + "DEBUG:root:radec2pix: lat: [77.94367134 79.54902489 81.18632945 82.85028944 84.53583766 86.23790238\n", + " 87.95095267 89.65971994 77.94367134 77.82164346 77.48801235 76.9631292\n", + " 76.27533882 75.45615131 74.53651433 73.54460591 89.65971994 88.15347287\n", + " 86.45230283 84.75294209 83.0672058 81.4014907 79.76129308 78.15206149\n", + " 73.54460591 74.55768324 75.50238779 76.35047091 77.07044991 77.62962616\n", + " 77.99774795 78.15206149 78.63928322 80.62896884 82.66134588 84.72698979\n", + " 86.81649257 88.91826945 77.92273249 77.62880737 77.03600995 76.19348076\n", + " 75.15884594 73.98801233 89.08995442 87.02817045 84.94370871 82.87794501\n", + " 80.84312687 78.84936896 73.99670581 75.19609757 76.26512012 77.14708483\n", + " 77.78216783 78.11748405 77.94905666 77.94905666 78.15735777 78.15735777\n", + " 78.61100015 78.29575797 77.66281562 76.76884154 75.67835331 74.45201735\n", + " 80.5936009 80.20229517 79.43086524 78.36733491 77.10116027 75.70726987\n", + " 82.61510476 82.11071991 81.1484309 79.87243611 78.40512567 76.83322353\n", + " 84.66162432 83.97115888 82.73646392 81.20037729 79.51583908 77.76861975\n", + " 86.70802953 85.66590929 84.05006409 82.22924953 80.34192865 78.44668306\n", + " 88.6299785 86.85760815 84.84280506 82.80723116 80.78933117 78.80649174]\n", + "DEBUG:root:mm_to_pix: fitpx: [[0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]]\n", + "DEBUG:root:mm_to_pix: fitpx.shape: (96, 2)\n", + "DEBUG:root:radec2pix: fitpx: [[ 2.13550000e+03 -4.99999783e-01]\n", + " [ 2.13550000e+03 2.91928571e+02]\n", + " [ 2.13550000e+03 5.84357143e+02]\n", + " [ 2.13550000e+03 8.76785714e+02]\n", + " [ 2.13550000e+03 1.16921429e+03]\n", + " [ 2.13550000e+03 1.46164286e+03]\n", + " [ 2.13550000e+03 1.75407143e+03]\n", + " [ 2.13550000e+03 2.04650000e+03]\n", + " [ 2.13550000e+03 -4.99999783e-01]\n", + " [ 2.42792857e+03 -5.00000080e-01]\n", + " [ 2.72035714e+03 -5.00000178e-01]\n", + " [ 3.01278571e+03 -4.99999867e-01]\n", + " [ 3.30521429e+03 -5.00000095e-01]\n", + " [ 3.59764286e+03 -5.00000221e-01]\n", + " [ 3.89007143e+03 -5.00000185e-01]\n", + " [ 4.18250000e+03 -5.00000018e-01]\n", + " [ 2.13550000e+03 2.04650000e+03]\n", + " [ 2.42792857e+03 2.04650000e+03]\n", + " [ 2.72035714e+03 2.04650000e+03]\n", + " [ 3.01278571e+03 2.04650000e+03]\n", + " [ 3.30521429e+03 2.04650000e+03]\n", + " [ 3.59764286e+03 2.04650000e+03]\n", + " [ 3.89007143e+03 2.04650000e+03]\n", + " [ 4.18250000e+03 2.04650000e+03]\n", + " [ 4.18250000e+03 -5.00000018e-01]\n", + " [ 4.18250000e+03 2.91928571e+02]\n", + " [ 4.18250000e+03 5.84357143e+02]\n", + " [ 4.18250000e+03 8.76785714e+02]\n", + " [ 4.18250000e+03 1.16921429e+03]\n", + " [ 4.18250000e+03 1.46164286e+03]\n", + " [ 4.18250000e+03 1.75407143e+03]\n", + " [ 4.18250000e+03 2.04650000e+03]\n", + " [ 2.13650000e+03 1.27000000e+02]\n", + " [ 2.13650000e+03 4.85400000e+02]\n", + " [ 2.13650000e+03 8.43800000e+02]\n", + " [ 2.13650000e+03 1.20220000e+03]\n", + " [ 2.13650000e+03 1.56060000e+03]\n", + " [ 2.13650000e+03 1.91900000e+03]\n", + " [ 2.26300000e+03 4.99999873e-01]\n", + " [ 2.62140000e+03 5.00000123e-01]\n", + " [ 2.97980000e+03 5.00000108e-01]\n", + " [ 3.33820000e+03 4.99999719e-01]\n", + " [ 3.69660000e+03 4.99999964e-01]\n", + " [ 4.05500000e+03 5.00000185e-01]\n", + " [ 2.26300000e+03 2.04550000e+03]\n", + " [ 2.62140000e+03 2.04550000e+03]\n", + " [ 2.97980000e+03 2.04550000e+03]\n", + " [ 3.33820000e+03 2.04550000e+03]\n", + " [ 3.69660000e+03 2.04550000e+03]\n", + " [ 4.05500000e+03 2.04550000e+03]\n", + " [ 4.18150000e+03 1.27000000e+02]\n", + " [ 4.18150000e+03 4.85400000e+02]\n", + " [ 4.18150000e+03 8.43800000e+02]\n", + " [ 4.18150000e+03 1.20220000e+03]\n", + " [ 4.18150000e+03 1.56060000e+03]\n", + " [ 4.18150000e+03 1.91900000e+03]\n", + " [ 2.13650000e+03 4.99999853e-01]\n", + " [ 2.13650000e+03 4.99999853e-01]\n", + " [ 4.18150000e+03 2.04550000e+03]\n", + " [ 4.18150000e+03 2.04550000e+03]\n", + " [ 2.26300000e+03 1.27000000e+02]\n", + " [ 2.62140000e+03 1.27000000e+02]\n", + " [ 2.97980000e+03 1.27000000e+02]\n", + " [ 3.33820000e+03 1.27000000e+02]\n", + " [ 3.69660000e+03 1.27000000e+02]\n", + " [ 4.05500000e+03 1.27000000e+02]\n", + " [ 2.26300000e+03 4.85400000e+02]\n", + " [ 2.62140000e+03 4.85400000e+02]\n", + " [ 2.97980000e+03 4.85400000e+02]\n", + " [ 3.33820000e+03 4.85400000e+02]\n", + " [ 3.69660000e+03 4.85400000e+02]\n", + " [ 4.05500000e+03 4.85400000e+02]\n", + " [ 2.26300000e+03 8.43800000e+02]\n", + " [ 2.62140000e+03 8.43800000e+02]\n", + " [ 2.97980000e+03 8.43800000e+02]\n", + " [ 3.33820000e+03 8.43800000e+02]\n", + " [ 3.69660000e+03 8.43800000e+02]\n", + " [ 4.05500000e+03 8.43800000e+02]\n", + " [ 2.26300000e+03 1.20220000e+03]\n", + " [ 2.62140000e+03 1.20220000e+03]\n", + " [ 2.97980000e+03 1.20220000e+03]\n", + " [ 3.33820000e+03 1.20220000e+03]\n", + " [ 3.69660000e+03 1.20220000e+03]\n", + " [ 4.05500000e+03 1.20220000e+03]\n", + " [ 2.26300000e+03 1.56060000e+03]\n", + " [ 2.62140000e+03 1.56060000e+03]\n", + " [ 2.97980000e+03 1.56060000e+03]\n", + " [ 3.33820000e+03 1.56060000e+03]\n", + " [ 3.69660000e+03 1.56060000e+03]\n", + " [ 4.05500000e+03 1.56060000e+03]\n", + " [ 2.26300000e+03 1.91900000e+03]\n", + " [ 2.62140000e+03 1.91900000e+03]\n", + " [ 2.97980000e+03 1.91900000e+03]\n", + " [ 3.33820000e+03 1.91900000e+03]\n", + " [ 3.69660000e+03 1.91900000e+03]\n", + " [ 4.05500000e+03 1.91900000e+03]]\n", + "DEBUG:root:fitpix2pix: ccdpx: shape: (96, 2)\n", + "DEBUG:root:fitpix2pix: visCut: True\n", + "DEBUG:root:cartToSphere: vec: [[-0.20629584 -0.20078674 0.95766733]\n", + " [-0.20812128 -0.17428103 0.96245086]\n", + " [-0.20967356 -0.14708674 0.96664496]\n", + " [-0.21095376 -0.11931584 0.9701867 ]\n", + " [-0.21196139 -0.09107902 0.97302465]\n", + " [-0.21269501 -0.06248699 0.97511856]\n", + " [-0.2131529 -0.03365118 0.97643916]\n", + " [-0.21333373 -0.00468399 0.97696816]\n", + " [-0.20629584 -0.20078674 0.95766733]\n", + " [-0.1798852 -0.20262142 0.96259331]\n", + " [-0.15276427 -0.20419049 0.96693812]\n", + " [-0.12504507 -0.20549514 0.97063664]\n", + " [-0.09683814 -0.20653488 0.97363531]\n", + " [-0.06825398 -0.20730818 0.97589175]\n", + " [-0.03940385 -0.20781318 0.97737455]\n", + " [-0.01040007 -0.2080483 0.97806326]\n", + " [-0.21333373 -0.00468399 0.97696816]\n", + " [-0.18599064 -0.00472909 0.98254014]\n", + " [-0.15793623 -0.00476846 0.9874378 ]\n", + " [-0.12927467 -0.004802 0.9915972 ]\n", + " [-0.10011211 -0.00482954 0.99496444]\n", + " [-0.07055816 -0.00485094 0.99749587]\n", + " [-0.04072622 -0.00486604 0.99915849]\n", + " [-0.01073294 -0.00487474 0.99993052]\n", + " [-0.01040007 -0.2080483 0.97806326]\n", + " [-0.01048759 -0.18056016 0.98350803]\n", + " [-0.01056224 -0.15238099 0.98826539]\n", + " [-0.01062379 -0.12361519 0.99227336]\n", + " [-0.01067191 -0.09436952 0.99548004]\n", + " [-0.0107063 -0.06475431 0.9978438 ]\n", + " [-0.0107267 -0.03488367 0.99933381]\n", + " [-0.01073294 -0.00487474 0.99993052]\n", + " [-0.20703611 -0.1893284 0.95983895]\n", + " [-0.20908844 -0.1563645 0.96531454]\n", + " [-0.21073192 -0.12247778 0.96984084]\n", + " [-0.21196628 -0.08787247 0.97331841]\n", + " [-0.21278893 -0.05275245 0.97567313]\n", + " [-0.21319686 -0.01732329 0.97685567]\n", + " [-0.19488162 -0.20152974 0.95989943]\n", + " [-0.16201965 -0.20359843 0.96555544]\n", + " [-0.12820231 -0.20526972 0.97027239]\n", + " [-0.09363367 -0.2065434 0.9739469 ]\n", + " [-0.05851721 -0.20741673 0.97650091]\n", + " [-0.02305821 -0.20788637 0.97788117]\n", + " [-0.20150602 -0.0048039 0.9794755 ]\n", + " [-0.16750285 -0.00485635 0.98585963]\n", + " [-0.13253465 -0.0048999 0.99116626]\n", + " [-0.0967959 -0.00493429 0.99529202]\n", + " [-0.06048842 -0.00495921 0.99815658]\n", + " [-0.02382238 -0.00497442 0.99970383]\n", + " [-0.0105395 -0.19615466 0.98051633]\n", + " [-0.01063912 -0.1619874 0.98673547]\n", + " [-0.01071899 -0.12688576 0.99185942]\n", + " [-0.01077856 -0.09104519 0.99578843]\n", + " [-0.01081726 -0.05466885 0.99844594]\n", + " [-0.01083465 -0.01796812 0.99977985]\n", + " [-0.20621357 -0.20070413 0.95770236]\n", + " [-0.20621357 -0.20070413 0.95770236]\n", + " [-0.01083565 -0.00497744 0.9999289 ]\n", + " [-0.01083565 -0.00497744 0.9999289 ]\n", + " [-0.19565571 -0.19010422 0.96207028]\n", + " [-0.16265759 -0.19204948 0.96781171]\n", + " [-0.12870452 -0.19362274 0.97259724]\n", + " [-0.09399937 -0.19482286 0.9763238 ]\n", + " [-0.05874512 -0.19564642 0.97891342]\n", + " [-0.0231472 -0.1960896 0.98031274]\n", + " [-0.19758845 -0.15700026 0.96763099]\n", + " [-0.16425347 -0.15859759 0.97358492]\n", + " [-0.12996305 -0.1598933 0.97854164]\n", + " [-0.09491705 -0.16088429 0.98239859]\n", + " [-0.05931746 -0.1615658 0.98507763]\n", + " [-0.02337052 -0.16193328 0.98652493]\n", + " [-0.19913769 -0.12297381 0.97222509]\n", + " [-0.16553623 -0.12422245 0.97834888]\n", + " [-0.13097704 -0.12523802 0.98344316]\n", + " [-0.09565767 -0.12601654 0.98740541]\n", + " [-0.05977969 -0.12655298 0.99015692]\n", + " [-0.02355053 -0.12684288 0.99164321]\n", + " [-0.20030226 -0.088228 0.97575346]\n", + " [-0.16650264 -0.0891244 0.98200495]\n", + " [-0.13174231 -0.0898551 0.98720313]\n", + " [-0.09621721 -0.09041635 0.99124524]\n", + " [-0.0601289 -0.09080384 0.9940519 ]\n", + " [-0.023686 -0.09101389 0.9955679 ]\n", + " [-0.20107886 -0.05296627 0.97814205]\n", + " [-0.16714801 -0.0535061 0.98447887]\n", + " [-0.13225382 -0.05394701 0.98974676]\n", + " [-0.09659125 -0.05428637 0.9938426 ]\n", + " [-0.06036201 -0.05452132 0.99668644]\n", + " [-0.02377567 -0.05464944 0.9982225 ]\n", + " [-0.201464 -0.01739439 0.97934146]\n", + " [-0.16746808 -0.0175743 0.98572085]\n", + " [-0.13250731 -0.01772184 0.99102359]\n", + " [-0.0967762 -0.01783608 0.99514634]\n", + " [-0.06047657 -0.01791601 0.99800882]\n", + " [-0.02381854 -0.0179608 0.99955494]]\n", + "DEBUG:root:radec2pix: fitpx: [[-4.99999744e-01 -4.99999751e-01]\n", + " [-5.00000258e-01 2.91928571e+02]\n", + " [-5.00000005e-01 5.84357143e+02]\n", + " [-4.99999941e-01 8.76785714e+02]\n", + " [-4.99999889e-01 1.16921429e+03]\n", + " [-4.99999948e-01 1.46164286e+03]\n", + " [-5.00000143e-01 1.75407143e+03]\n", + " [-4.99999962e-01 2.04650000e+03]\n", + " [-4.99999744e-01 -4.99999751e-01]\n", + " [ 2.91928571e+02 -5.00000271e-01]\n", + " [ 5.84357143e+02 -4.99999959e-01]\n", + " [ 8.76785714e+02 -5.00000035e-01]\n", + " [ 1.16921429e+03 -5.00000130e-01]\n", + " [ 1.46164286e+03 -5.00000295e-01]\n", + " [ 1.75407143e+03 -5.00000131e-01]\n", + " [ 2.04650000e+03 -5.00000000e-01]\n", + " [-4.99999962e-01 2.04650000e+03]\n", + " [ 2.91928571e+02 2.04650000e+03]\n", + " [ 5.84357143e+02 2.04650000e+03]\n", + " [ 8.76785714e+02 2.04650000e+03]\n", + " [ 1.16921429e+03 2.04650000e+03]\n", + " [ 1.46164286e+03 2.04650000e+03]\n", + " [ 1.75407143e+03 2.04650000e+03]\n", + " [ 2.04650000e+03 2.04650000e+03]\n", + " [ 2.04650000e+03 -5.00000000e-01]\n", + " [ 2.04650000e+03 2.91928571e+02]\n", + " [ 2.04650000e+03 5.84357143e+02]\n", + " [ 2.04650000e+03 8.76785714e+02]\n", + " [ 2.04650000e+03 1.16921429e+03]\n", + " [ 2.04650000e+03 1.46164286e+03]\n", + " [ 2.04650000e+03 1.75407143e+03]\n", + " [ 2.04650000e+03 2.04650000e+03]\n", + " [ 4.99999741e-01 1.27000000e+02]\n", + " [ 4.99999873e-01 4.85400000e+02]\n", + " [ 4.99999712e-01 8.43800000e+02]\n", + " [ 5.00000277e-01 1.20220000e+03]\n", + " [ 5.00000282e-01 1.56060000e+03]\n", + " [ 4.99999780e-01 1.91900000e+03]\n", + " [ 1.27000000e+02 4.99999945e-01]\n", + " [ 4.85400000e+02 4.99999943e-01]\n", + " [ 8.43800000e+02 5.00000147e-01]\n", + " [ 1.20220000e+03 4.99999799e-01]\n", + " [ 1.56060000e+03 5.00000078e-01]\n", + " [ 1.91900000e+03 4.99999710e-01]\n", + " [ 1.27000000e+02 2.04550000e+03]\n", + " [ 4.85400000e+02 2.04550000e+03]\n", + " [ 8.43800000e+02 2.04550000e+03]\n", + " [ 1.20220000e+03 2.04550000e+03]\n", + " [ 1.56060000e+03 2.04550000e+03]\n", + " [ 1.91900000e+03 2.04550000e+03]\n", + " [ 2.04550000e+03 1.27000000e+02]\n", + " [ 2.04550000e+03 4.85400000e+02]\n", + " [ 2.04550000e+03 8.43800000e+02]\n", + " [ 2.04550000e+03 1.20220000e+03]\n", + " [ 2.04550000e+03 1.56060000e+03]\n", + " [ 2.04550000e+03 1.91900000e+03]\n", + " [ 5.00000247e-01 5.00000241e-01]\n", + " [ 5.00000247e-01 5.00000241e-01]\n", + " [ 2.04550000e+03 2.04550000e+03]\n", + " [ 2.04550000e+03 2.04550000e+03]\n", + " [ 1.27000000e+02 1.27000000e+02]\n", + " [ 4.85400000e+02 1.27000000e+02]\n", + " [ 8.43800000e+02 1.27000000e+02]\n", + " [ 1.20220000e+03 1.27000000e+02]\n", + " [ 1.56060000e+03 1.27000000e+02]\n", + " [ 1.91900000e+03 1.27000000e+02]\n", + " [ 1.27000000e+02 4.85400000e+02]\n", + " [ 4.85400000e+02 4.85400000e+02]\n", + " [ 8.43800000e+02 4.85400000e+02]\n", + " [ 1.20220000e+03 4.85400000e+02]\n", + " [ 1.56060000e+03 4.85400000e+02]\n", + " [ 1.91900000e+03 4.85400000e+02]\n", + " [ 1.27000000e+02 8.43800000e+02]\n", + " [ 4.85400000e+02 8.43800000e+02]\n", + " [ 8.43800000e+02 8.43800000e+02]\n", + " [ 1.20220000e+03 8.43800000e+02]\n", + " [ 1.56060000e+03 8.43800000e+02]\n", + " [ 1.91900000e+03 8.43800000e+02]\n", + " [ 1.27000000e+02 1.20220000e+03]\n", + " [ 4.85400000e+02 1.20220000e+03]\n", + " [ 8.43800000e+02 1.20220000e+03]\n", + " [ 1.20220000e+03 1.20220000e+03]\n", + " [ 1.56060000e+03 1.20220000e+03]\n", + " [ 1.91900000e+03 1.20220000e+03]\n", + " [ 1.27000000e+02 1.56060000e+03]\n", + " [ 4.85400000e+02 1.56060000e+03]\n", + " [ 8.43800000e+02 1.56060000e+03]\n", + " [ 1.20220000e+03 1.56060000e+03]\n", + " [ 1.56060000e+03 1.56060000e+03]\n", + " [ 1.91900000e+03 1.56060000e+03]\n", + " [ 1.27000000e+02 1.91900000e+03]\n", + " [ 4.85400000e+02 1.91900000e+03]\n", + " [ 8.43800000e+02 1.91900000e+03]\n", + " [ 1.20220000e+03 1.91900000e+03]\n", + " [ 1.56060000e+03 1.91900000e+03]\n", + " [ 1.91900000e+03 1.91900000e+03]]\n", + "DEBUG:root:fitpix2pix: ccdpx: shape: (96, 2)\n", + "DEBUG:root:fitpix2pix: visCut: True\n", + "DEBUG:root:radec2pix: curVec: [[-2.55622831e-03 2.23419639e-01 -9.74719001e-01]\n", + " [-1.01594372e-04 2.50546415e-01 -9.68104583e-01]\n", + " [ 2.40240431e-03 2.78005232e-01 -9.60576556e-01]\n", + " [ 4.94570516e-03 3.05675693e-01 -9.52122844e-01]\n", + " [ 7.51830730e-03 3.33440327e-01 -9.42741228e-01]\n", + " [ 1.01101114e-02 3.61183015e-01 -9.32440140e-01]\n", + " [ 1.27108467e-02 3.88788433e-01 -9.21239377e-01]\n", + " [ 1.53101020e-02 4.16142609e-01 -9.09170462e-01]\n", + " [-2.55622831e-03 2.23419639e-01 -9.74719001e-01]\n", + " [-3.14635623e-02 2.25851780e-01 -9.73653438e-01]\n", + " [-6.02429269e-02 2.28181629e-01 -9.71753021e-01]\n", + " [-8.87821692e-02 2.30405577e-01 -9.69036117e-01]\n", + " [-1.16969940e-01 2.32524322e-01 -9.65531187e-01]\n", + " [-1.44695627e-01 2.34543256e-01 -9.61276566e-01]\n", + " [-1.71848971e-01 2.36472794e-01 -9.56320317e-01]\n", + " [-1.98319654e-01 2.38328437e-01 -9.50720185e-01]\n", + " [ 1.53101020e-02 4.16142609e-01 -9.09170462e-01]\n", + " [-1.45936760e-02 4.18505083e-01 -9.08097198e-01]\n", + " [-4.43869989e-02 4.20486413e-01 -9.06212432e-01]\n", + " [-7.39526107e-02 4.22084165e-01 -9.03535262e-01]\n", + " [-1.03176672e-01 4.23300911e-01 -9.00094947e-01]\n", + " [-1.31949228e-01 4.24144051e-01 -8.95930368e-01]\n", + " [-1.60163514e-01 4.24625598e-01 -8.91089642e-01]\n", + " [-1.87714275e-01 4.24762014e-01 -8.85630048e-01]\n", + " [-1.98319654e-01 2.38328437e-01 -9.50720185e-01]\n", + " [-1.97677893e-01 2.64535283e-01 -9.43898583e-01]\n", + " [-1.96729605e-01 2.91085897e-01 -9.36251282e-01]\n", + " [-1.95484652e-01 3.17855113e-01 -9.27768224e-01]\n", + " [-1.93952160e-01 3.44722183e-01 -9.18449333e-01]\n", + " [-1.92140655e-01 3.71570398e-01 -9.08304689e-01]\n", + " [-1.90058481e-01 3.98286768e-01 -8.97354681e-01]\n", + " [-1.87714275e-01 4.24762014e-01 -8.85630048e-01]\n", + " [-1.59205374e-03 2.35206809e-01 -9.71944043e-01]\n", + " [ 1.44985402e-03 2.68692196e-01 -9.63225001e-01]\n", + " [ 4.55607942e-03 3.02556256e-01 -9.53120640e-01]\n", + " [ 7.70820028e-03 3.36581615e-01 -9.41622748e-01]\n", + " [ 1.08876217e-02 3.70554434e-01 -9.28746936e-01]\n", + " [ 1.40753774e-02 4.04262906e-01 -9.14534519e-01]\n", + " [-1.51605617e-02 2.24584317e-01 -9.74336719e-01]\n", + " [-5.05185949e-02 2.27496946e-01 -9.72467486e-01]\n", + " [-8.55728869e-02 2.30251681e-01 -9.69361359e-01]\n", + " [-1.20118100e-01 2.32847996e-01 -9.65066554e-01]\n", + " [-1.53950556e-01 2.35295858e-01 -9.59653628e-01]\n", + " [-1.86867259e-01 2.37616561e-01 -9.53215084e-01]\n", + " [ 2.25711242e-03 4.17126183e-01 -9.08845781e-01]\n", + " [-3.43335258e-02 4.19766051e-01 -9.06982730e-01]\n", + " [-7.06414090e-02 4.21830638e-01 -9.03918527e-01]\n", + " [-1.06455481e-01 4.23322600e-01 -8.99702844e-01]\n", + " [-1.41573237e-01 4.24255527e-01 -8.94407215e-01]\n", + " [-1.75798860e-01 4.24653381e-01 -8.88124016e-01]\n", + " [-1.97988541e-01 2.49698435e-01 -9.47866673e-01]\n", + " [-1.96993509e-01 2.82065966e-01 -9.38952793e-01]\n", + " [-1.95548109e-01 3.14824970e-01 -9.28787476e-01]\n", + " [-1.93669458e-01 3.47751326e-01 -9.17366424e-01]\n", + " [-1.91373297e-01 3.80630142e-01 -9.04708216e-01]\n", + " [-1.88675089e-01 4.13254930e-01 -8.90854687e-01]\n", + " [-2.64687620e-03 2.23520180e-01 -9.74695708e-01]\n", + " [-2.64687620e-03 2.23520180e-01 -9.74695708e-01]\n", + " [-1.87629765e-01 4.24672106e-01 -8.85691071e-01]\n", + " [-1.87629765e-01 4.24672106e-01 -8.85691071e-01]\n", + " [-1.41547500e-02 2.36272963e-01 -9.71583620e-01]\n", + " [-4.96528599e-02 2.39172462e-01 -9.69706722e-01]\n", + " [-8.48485712e-02 2.41886023e-01 -9.66587747e-01]\n", + " [-1.19536317e-01 2.44412784e-01 -9.62275148e-01]\n", + " [-1.53512658e-01 2.46762345e-01 -9.56839699e-01]\n", + " [-1.86575094e-01 2.48955756e-01 -9.50374014e-01]\n", + " [-1.12361193e-02 2.69762868e-01 -9.62861228e-01]\n", + " [-4.70867553e-02 2.72623023e-01 -9.60968014e-01]\n", + " [-8.26382205e-02 2.75219768e-01 -9.57823055e-01]\n", + " [-1.17684033e-01 2.77551578e-01 -9.53475532e-01]\n", + " [-1.52021383e-01 2.79627257e-01 -9.47996886e-01]\n", + " [-1.85449522e-01 2.81467142e-01 -9.41480070e-01]\n", + " [-8.22983407e-03 3.03629596e-01 -9.52754606e-01]\n", + " [-4.43667469e-02 3.06446540e-01 -9.50853359e-01]\n", + " [-8.02072703e-02 3.08924950e-01 -9.47698353e-01]\n", + " [-1.15543690e-01 3.11063266e-01 -9.43339441e-01]\n", + " [-1.50173618e-01 3.12870184e-01 -9.37848673e-01]\n", + " [-1.83898152e-01 3.14365768e-01 -9.31319297e-01]\n", + " [-5.15367737e-03 3.37655674e-01 -9.41255590e-01]\n", + " [-4.15090272e-02 3.40424936e-01 -9.39355025e-01]\n", + " [-7.75709398e-02 3.42782441e-01 -9.36206680e-01]\n", + " [-1.13130370e-01 3.44727300e-01 -9.31860831e-01]\n", + " [-1.47985087e-01 3.46268958e-01 -9.26389887e-01]\n", + " [-1.81937754e-01 3.47427945e-01 -9.19887209e-01]\n", + " [-2.02546914e-03 3.71627208e-01 -9.28379834e-01]\n", + " [-3.85294080e-02 3.74344218e-01 -9.26489013e-01]\n", + " [-7.47436241e-02 3.76578209e-01 -9.23364632e-01]\n", + " [-1.10457916e-01 3.78329573e-01 -9.19057008e-01]\n", + " [-1.45470006e-01 3.79609244e-01 -9.13638495e-01]\n", + " [-1.79583615e-01 3.80438939e-01 -9.07202259e-01]\n", + " [ 1.13651198e-03 4.05332382e-01 -9.14168676e-01]\n", + " [-3.54443350e-02 4.07992998e-01 -9.12296779e-01]\n", + " [-7.17403667e-02 4.10101844e-01 -9.09213835e-01]\n", + " [-1.07540651e-01 4.11660962e-01 -9.04969757e-01]\n", + " [-1.42642749e-01 4.12683225e-01 -8.99636372e-01]\n", + " [-1.76850835e-01 4.13191984e-01 -8.93306312e-01]]\n", + "DEBUG:root:radec2pix: curVec Shape: (96, 3)\n", + "DEBUG:root:radec2pix: lng: [224.22465666 219.9428498 215.04979529 209.49258103 203.25301711\n", + " 196.37209253 188.97143587 181.25779309 224.22465666 228.40166279\n", + " 233.19815281 238.6792283 244.87949815 251.77642798 259.26349599\n", + " 267.13824006 181.25779309 181.45651552 181.7293675 182.12731457\n", + " 182.76188514 183.93294711 186.8134933 204.42682228 267.13824006\n", + " 266.67578867 266.03490179 265.0879329 263.54803827 260.61180811\n", + " 252.90738353 204.42682228 222.44199402 216.7905754 210.16523251\n", + " 202.51687812 193.92347078 184.64535837 225.96080389 231.48791131\n", + " 238.01293878 245.61347707 254.24497485 263.67077373 181.36567301\n", + " 181.66068982 182.11730117 182.91819426 184.68697431 191.79462375\n", + " 266.92442169 266.24228499 265.17126169 263.2483557 258.80752919\n", + " 238.9103071 224.22429417 224.22429417 204.67204832 204.67204832\n", + " 224.17550953 229.73684595 236.38729877 244.24332674 253.28700279\n", + " 263.26773103 218.4700285 223.99636381 230.89540499 239.46063162\n", + " 249.83973486 261.78766678 211.69663969 216.8854629 223.71683254\n", + " 232.7982941 244.71540545 259.48183646 203.77225927 208.15895021\n", + " 214.29602039 223.21973304 236.48809111 255.41258234 194.75709541\n", + " 197.7504966 202.19079752 209.33692857 222.08957905 246.48817507\n", + " 184.93467768 185.99075879 187.61766642 190.44256036 196.50176943\n", + " 217.01878407]\n", + "DEBUG:root:optics_fp: xyfp: [[ -0.24606 31.536148 ]\n", + " [ -0.24606 27.14971943]\n", + " [ -0.24606 22.76329086]\n", + " [ -0.24606 18.37686229]\n", + " [ -0.24606 13.99043371]\n", + " [ -0.24606 9.60400514]\n", + " [ -0.24606 5.21757658]\n", + " [ -0.24606 0.831148 ]\n", + " [ -0.24606 31.536148 ]\n", + " [ -4.63248857 31.536148 ]\n", + " [ -9.01891714 31.536148 ]\n", + " [-13.40534571 31.536148 ]\n", + " [-17.79177429 31.536148 ]\n", + " [-22.17820286 31.536148 ]\n", + " [-26.56463143 31.536148 ]\n", + " [-30.95106 31.536148 ]\n", + " [ -0.24606 0.831148 ]\n", + " [ -4.63248857 0.831148 ]\n", + " [ -9.01891714 0.831148 ]\n", + " [-13.40534571 0.831148 ]\n", + " [-17.79177429 0.831148 ]\n", + " [-22.17820285 0.831148 ]\n", + " [-26.56463143 0.831148 ]\n", + " [-30.95106 0.831148 ]\n", + " [-30.95106 31.536148 ]\n", + " [-30.95106 27.14971943]\n", + " [-30.95106 22.76329086]\n", + " [-30.95106 18.37686228]\n", + " [-30.95106 13.99043371]\n", + " [-30.95106 9.60400514]\n", + " [-30.95106 5.21757657]\n", + " [-30.95106 0.831148 ]\n", + " [ -0.26106 29.623648 ]\n", + " [ -0.26106 24.247648 ]\n", + " [ -0.26106 18.87164801]\n", + " [ -0.26106 13.495648 ]\n", + " [ -0.26106 8.119648 ]\n", + " [ -0.26106 2.743648 ]\n", + " [ -2.15856 31.521148 ]\n", + " [ -7.53456 31.521148 ]\n", + " [-12.91056 31.521148 ]\n", + " [-18.28656 31.521148 ]\n", + " [-23.66256 31.521148 ]\n", + " [-29.03856 31.521148 ]\n", + " [ -2.15856 0.846148 ]\n", + " [ -7.53456 0.846148 ]\n", + " [-12.91056 0.846148 ]\n", + " [-18.28655999 0.846148 ]\n", + " [-23.66256 0.846148 ]\n", + " [-29.03856 0.846148 ]\n", + " [-30.93606 29.623648 ]\n", + " [-30.93606 24.247648 ]\n", + " [-30.93606 18.871648 ]\n", + " [-30.93606 13.495648 ]\n", + " [-30.93606 8.119648 ]\n", + " [-30.93606 2.743648 ]\n", + " [ -0.26106 31.521148 ]\n", + " [ -0.26106 31.521148 ]\n", + " [-30.93606 0.846148 ]\n", + " [-30.93606 0.846148 ]\n", + " [ -2.15856 29.623648 ]\n", + " [ -7.53456 29.623648 ]\n", + " [-12.91056 29.623648 ]\n", + " [-18.28656 29.623648 ]\n", + " [-23.66256 29.623648 ]\n", + " [-29.03856 29.623648 ]\n", + " [ -2.15856 24.247648 ]\n", + " [ -7.53456 24.247648 ]\n", + " [-12.91056 24.247648 ]\n", + " [-18.28656 24.247648 ]\n", + " [-23.66256 24.247648 ]\n", + " [-29.03856 24.247648 ]\n", + " [ -2.15856 18.871648 ]\n", + " [ -7.53456 18.871648 ]\n", + " [-12.91056 18.871648 ]\n", + " [-18.28656 18.871648 ]\n", + " [-23.66256 18.871648 ]\n", + " [-29.03856 18.871648 ]\n", + " [ -2.15856 13.495648 ]\n", + " [ -7.53456 13.495648 ]\n", + " [-12.91056 13.495648 ]\n", + " [-18.28656 13.495648 ]\n", + " [-23.66256 13.495648 ]\n", + " [-29.03856 13.495648 ]\n", + " [ -2.15856 8.119648 ]\n", + " [ -7.53456 8.119648 ]\n", + " [-12.91056 8.119648 ]\n", + " [-18.28656 8.119648 ]\n", + " [-23.66256 8.119648 ]\n", + " [-29.03856 8.119648 ]\n", + " [ -2.15856 2.743648 ]\n", + " [ -7.53456 2.743648 ]\n", + " [-12.91056 2.743648 ]\n", + " [-18.28656 2.743648 ]\n", + " [-23.66256 2.743648 ]\n", + " [-29.03856 2.743648 ]]\n", + "DEBUG:root:optics_fp: xyfp shape: (96, 2)\n", + "DEBUG:root:radec2pix: xyfp: [[ 0.236018 -31.56946754]\n", + " [ 0.23651287 -27.18303899]\n", + " [ 0.23700774 -22.79661046]\n", + " [ 0.23750261 -18.41018192]\n", + " [ 0.23799748 -14.02375336]\n", + " [ 0.23849235 -9.63732482]\n", + " [ 0.23898721 -5.25089628]\n", + " [ 0.23948208 -0.86446773]\n", + " [ 0.236018 -31.56946754]\n", + " [ 4.62244655 -31.56996241]\n", + " [ 9.00887509 -31.57045728]\n", + " [ 13.39530363 -31.57095214]\n", + " [ 17.78173218 -31.57144701]\n", + " [ 22.16816072 -31.57194188]\n", + " [ 26.55458927 -31.57243675]\n", + " [ 30.94101781 -31.57293162]\n", + " [ 0.23948208 -0.86446773]\n", + " [ 4.62591062 -0.8649626 ]\n", + " [ 9.01233917 -0.86545747]\n", + " [ 13.39876771 -0.86595234]\n", + " [ 17.78519626 -0.86644721]\n", + " [ 22.1716248 -0.86694208]\n", + " [ 26.55805334 -0.86743695]\n", + " [ 30.94448189 -0.86793181]\n", + " [ 30.94101781 -31.57293162]\n", + " [ 30.94151268 -27.18650307]\n", + " [ 30.94200754 -22.80007453]\n", + " [ 30.94250242 -18.41364599]\n", + " [ 30.94299728 -14.02721745]\n", + " [ 30.94349215 -9.6407889 ]\n", + " [ 30.94398702 -5.25436036]\n", + " [ 30.94448189 -0.86793181]\n", + " [ 0.25123377 -29.65696924]\n", + " [ 0.25184028 -24.28096928]\n", + " [ 0.25244679 -18.90496931]\n", + " [ 0.2530533 -13.52896935]\n", + " [ 0.25365981 -8.15296938]\n", + " [ 0.25426632 -2.77696942]\n", + " [ 2.14851968 -31.5546833 ]\n", + " [ 7.52451965 -31.55528981]\n", + " [ 12.90051962 -31.55589633]\n", + " [ 18.27651958 -31.55650284]\n", + " [ 23.65251954 -31.55710934]\n", + " [ 29.02851952 -31.55771586]\n", + " [ 2.15198038 -0.8796835 ]\n", + " [ 7.52798035 -0.88029001]\n", + " [ 12.90398031 -0.88089652]\n", + " [ 18.27998027 -0.88150303]\n", + " [ 23.65598025 -0.88210954]\n", + " [ 29.03198021 -0.88271605]\n", + " [ 30.92623357 -29.66042994]\n", + " [ 30.92684009 -24.28442998]\n", + " [ 30.9274466 -18.90843001]\n", + " [ 30.9280531 -13.53243004]\n", + " [ 30.92865961 -8.15643008]\n", + " [ 30.92926612 -2.78043011]\n", + " [ 0.2510197 -31.55446923]\n", + " [ 0.2510197 -31.55446923]\n", + " [ 30.9294802 -0.88293012]\n", + " [ 30.9294802 -0.88293012]\n", + " [ 2.14873376 -29.65718332]\n", + " [ 7.52473372 -29.65778983]\n", + " [ 12.90073369 -29.65839633]\n", + " [ 18.27673365 -29.65900285]\n", + " [ 23.65273362 -29.65960936]\n", + " [ 29.02873359 -29.66021587]\n", + " [ 2.14934027 -24.28118335]\n", + " [ 7.52534023 -24.28178986]\n", + " [ 12.9013402 -24.28239637]\n", + " [ 18.27734016 -24.28300288]\n", + " [ 23.65334013 -24.28360939]\n", + " [ 29.02934009 -24.2842159 ]\n", + " [ 2.14994678 -18.90518338]\n", + " [ 7.52594674 -18.90578989]\n", + " [ 12.90194671 -18.9063964 ]\n", + " [ 18.27794667 -18.90700292]\n", + " [ 23.65394664 -18.90760943]\n", + " [ 29.0299466 -18.90821593]\n", + " [ 2.15055329 -13.52918342]\n", + " [ 7.52655325 -13.52978993]\n", + " [ 12.90255322 -13.53039644]\n", + " [ 18.27855318 -13.53100295]\n", + " [ 23.65455315 -13.53160946]\n", + " [ 29.03055312 -13.53221597]\n", + " [ 2.1511598 -8.15318346]\n", + " [ 7.52715976 -8.15378996]\n", + " [ 12.90315973 -8.15439647]\n", + " [ 18.27915969 -8.15500298]\n", + " [ 23.65515966 -8.15560949]\n", + " [ 29.03115962 -8.156216 ]\n", + " [ 2.1517663 -2.77718348]\n", + " [ 7.52776627 -2.77779 ]\n", + " [ 12.90376624 -2.77839651]\n", + " [ 18.2797662 -2.77900302]\n", + " [ 23.65576617 -2.77960953]\n", + " [ 29.03176613 -2.78021604]]\n", + "DEBUG:root:radec2pix: lat: [73.26908943 74.24907619 75.16003276 75.97420276 76.66164507 77.19203919\n", + " 77.53795274 77.67919539 73.26908943 74.27917066 75.22575502 76.08096918\n", + " 76.81416078 77.39343277 77.78879656 77.97677996 77.67919539 79.27760057\n", + " 80.9086962 82.56716816 84.24766937 85.94438651 87.64930302 89.3245763\n", + " 77.97677996 79.57988268 81.21386953 82.87289707 84.55034798 86.23677698\n", + " 87.90848861 89.3245763 73.70687233 74.86526918 75.89266936 76.7347974\n", + " 77.33616788 77.64902834 73.71922865 74.91822462 75.99447399 76.89265343\n", + " 77.55435927 77.92679672 78.37161008 80.3532483 82.37868114 84.43807116\n", + " 86.5205023 88.60550058 78.67128345 80.65746446 82.68422414 84.73967937\n", + " 86.80532112 88.79773368 73.27606371 73.27606371 89.31677804 89.31677804\n", + " 74.16894713 75.42332545 76.55590489 77.50736059 78.21290493 78.61205636\n", + " 75.38223897 76.80151051 78.10907648 79.23409871 80.08944165 80.58344411\n", + " 76.46449862 78.05559614 79.5593541 80.89695848 81.95437214 82.58757556\n", + " 77.35718097 79.11401738 80.82399404 82.41287861 83.74766412 84.60361539\n", + " 77.99846994 79.89205969 81.78816951 83.63850339 85.33442441 86.58329889\n", + " 78.33357011 80.30591073 82.31728996 84.35260664 86.38369379 88.29053235]\n", + "DEBUG:root:radec2pix: camVec: [[ 0.00152888 0.00154215 0.00155354 0.00156302 0.00157054 0.00157606\n", + " 0.00157952 0.00158089 0.00152888 0.03055413 0.0594604 0.08813528\n", + " 0.11646734 0.14434605 0.17166149 0.1983039 0.00158089 0.03159291\n", + " 0.06147904 0.0911219 0.12040769 0.14922671 0.17747265 0.2050409\n", + " 0.1983039 0.20004855 0.20153434 0.2027606 0.20372608 0.20442907\n", + " 0.20486781 0.2050409 0.00163462 0.00165059 0.00166353 0.00167335\n", + " 0.00167995 0.00168324 0.01419184 0.04970047 0.08491857 0.11964057\n", + " 0.15366298 0.18678351 0.01467408 0.05138704 0.08779394 0.12368372\n", + " 0.15885436 0.19311093 0.19900616 0.20096941 0.20254341 0.2037261\n", + " 0.2045144 0.20490517 0.00162826 0.00162826 0.20494776 0.20494776\n", + " 0.01424722 0.04989441 0.08525013 0.12010852 0.15426631 0.18752167\n", + " 0.01438645 0.05038177 0.08608239 0.1212815 0.15577635 0.18936679\n", + " 0.01449922 0.05077617 0.08675481 0.12222707 0.15699061 0.19084708\n", + " 0.01458479 0.05107523 0.08726392 0.1229415 0.15790584 0.1919602\n", + " 0.01464229 0.05127607 0.08760541 0.12341989 0.15851749 0.19270261\n", + " 0.01467095 0.05137612 0.08777538 0.12365776 0.15882123 0.1930708 ]\n", + " [-0.20769103 -0.1801941 -0.15200928 -0.12324112 -0.09399571 -0.06438234\n", + " -0.03451442 -0.00450904 -0.20769103 -0.20754198 -0.20712371 -0.20643751\n", + " -0.2054851 -0.20426815 -0.20278791 -0.2010451 -0.00450904 -0.00450572\n", + " -0.00449643 -0.00448126 -0.00446035 -0.00443385 -0.00440189 -0.00436457\n", + " -0.2010451 -0.17444879 -0.14716869 -0.11931453 -0.09099614 -0.06232394\n", + " -0.03340929 -0.00436457 -0.1957935 -0.16161745 -0.12651199 -0.09067166\n", + " -0.05429781 -0.01760077 -0.20756647 -0.20720276 -0.20643606 -0.20526936\n", + " -0.20370571 -0.20174719 -0.00461102 -0.00460274 -0.00458538 -0.00455917\n", + " -0.0045244 -0.0044813 -0.18954613 -0.15647489 -0.12248558 -0.08778034\n", + " -0.05256249 -0.01703747 -0.20759824 -0.20759824 -0.00446412 -0.00446412\n", + " -0.19576354 -0.19542056 -0.19469787 -0.19359884 -0.19212697 -0.19028463\n", + " -0.16159264 -0.16130879 -0.16071144 -0.15980479 -0.15859338 -0.15708053\n", + " -0.12649245 -0.12626898 -0.12579928 -0.12508774 -0.12413931 -0.12295784\n", + " -0.09065756 -0.09049631 -0.09015775 -0.08964573 -0.08896468 -0.0881182\n", + " -0.05428931 -0.05419219 -0.05398843 -0.05368064 -0.05327188 -0.0527647\n", + " -0.01759801 -0.01756642 -0.01750018 -0.01740019 -0.0172675 -0.01710301]\n", + " [ 0.97819328 0.98362986 0.98837785 0.99237552 0.99557136 0.99792406\n", + " 0.99940295 0.99998858 0.97819328 0.97774883 0.97650613 0.97448229\n", + " 0.97170532 0.9682142 0.96405881 0.95929997 0.99998858 0.99949066\n", + " 0.99809825 0.99582966 0.99271451 0.98879307 0.98411589 0.97874367\n", + " 0.95929997 0.9641308 0.96836217 0.97193219 0.97478992 0.97689533\n", + " 0.9782193 0.97874367 0.98064379 0.9868521 0.99196368 0.99587944\n", + " 0.99852337 0.99984368 0.97811796 0.97703474 0.97476817 0.97136534\n", + " 0.96689796 0.96146242 0.9998817 0.99866821 0.9961281 0.99231122\n", + " 0.98729166 0.9811667 0.96149301 0.9670196 0.97158296 0.97508476\n", + " 0.9774513 0.97863353 0.97821282 0.97821282 0.97876273 0.97876273\n", + " 0.98054763 0.97944952 0.97715155 0.97370089 0.9691693 0.96365314\n", + " 0.98675268 0.98561714 0.98324039 0.97966996 0.97497788 0.9692605\n", + " 0.9918616 0.99069568 0.9882551 0.98458804 0.979767 0.97388848\n", + " 0.99577532 0.99458621 0.99209707 0.98835673 0.98343837 0.97743873\n", + " 0.99841789 0.9972131 0.99469118 0.99090157 0.985918 0.97983753\n", + " 0.9997375 0.99852487 0.99598656 0.99217236 0.98715635 0.98103576]]\n", + "DEBUG:root:radec2pix: camVec Shape: (3, 96)\n", + "DEBUG:root:optics_fp: rtanth: [31.53710793 27.15083443 22.76462071 18.37850955 13.99259736 9.60715672\n", + " 5.22337543 0.86680593 31.53710793 31.87457578 32.80044965 34.26706764\n", + " 36.20878157 38.55387546 41.23358186 44.18706537 0.86680593 4.70645911\n", + " 9.05713384 13.4310871 17.81117737 22.19377139 26.57763063 30.96221766\n", + " 44.18706537 41.17129315 38.42050918 35.99551614 33.96616479 32.40686702\n", + " 31.3877559 30.96221766 29.62479828 24.2490533 18.8734536 13.49817273\n", + " 8.12384367 2.75604003 31.59497037 32.40914016 34.06266769 36.44147428\n", + " 39.41445822 42.8581467 2.31847961 7.58192329 12.93825823 18.30612583\n", + " 23.67768384 29.05088524 42.83223469 39.30633844 36.23781045 33.75162698\n", + " 31.98387863 31.05748561 31.52222904 31.52222904 30.94762955 30.94762955\n", + " 29.70218682 30.56681395 32.3147502 34.81319861 37.91407742 41.48250822\n", + " 24.34353743 25.39129827 27.47054774 30.37016151 33.88015908 37.83102431\n", + " 18.99469609 20.32015484 22.86529373 26.27807784 30.26641445 34.63202369\n", + " 13.66718319 15.4564585 18.67659162 22.72731378 27.24058114 32.02140662\n", + " 8.40167037 11.07692547 15.25159806 20.00817233 25.01690288 30.15239046\n", + " 3.49098634 8.0185534 13.1988698 18.49123795 23.82109044 29.16788596]\n", + "DEBUG:root:make_az_asym: xyp: [[ -0.24606 31.536148 ]\n", + " [ -0.24606 27.14971943]\n", + " [ -0.24606 22.76329086]\n", + " [ -0.24606 18.37686229]\n", + " [ -0.24606 13.99043371]\n", + " [ -0.24606 9.60400514]\n", + " [ -0.24606 5.21757658]\n", + " [ -0.24606 0.831148 ]\n", + " [ -0.24606 31.536148 ]\n", + " [ -4.63248857 31.536148 ]\n", + " [ -9.01891714 31.536148 ]\n", + " [-13.40534571 31.536148 ]\n", + " [-17.79177429 31.536148 ]\n", + " [-22.17820286 31.536148 ]\n", + " [-26.56463143 31.536148 ]\n", + " [-30.95106 31.536148 ]\n", + " [ -0.24606 0.831148 ]\n", + " [ -4.63248857 0.831148 ]\n", + " [ -9.01891714 0.831148 ]\n", + " [-13.40534571 0.831148 ]\n", + " [-17.79177429 0.831148 ]\n", + " [-22.17820285 0.831148 ]\n", + " [-26.56463143 0.831148 ]\n", + " [-30.95106 0.831148 ]\n", + " [-30.95106 31.536148 ]\n", + " [-30.95106 27.14971943]\n", + " [-30.95106 22.76329086]\n", + " [-30.95106 18.37686228]\n", + " [-30.95106 13.99043371]\n", + " [-30.95106 9.60400514]\n", + " [-30.95106 5.21757657]\n", + " [-30.95106 0.831148 ]\n", + " [ -0.26106 29.623648 ]\n", + " [ -0.26106 24.247648 ]\n", + " [ -0.26106 18.87164801]\n", + " [ -0.26106 13.495648 ]\n", + " [ -0.26106 8.119648 ]\n", + " [ -0.26106 2.743648 ]\n", + " [ -2.15856 31.521148 ]\n", + " [ -7.53456 31.521148 ]\n", + " [-12.91056 31.521148 ]\n", + " [-18.28656 31.521148 ]\n", + " [-23.66256 31.521148 ]\n", + " [-29.03856 31.521148 ]\n", + " [ -2.15856 0.846148 ]\n", + " [ -7.53456 0.846148 ]\n", + " [-12.91056 0.846148 ]\n", + " [-18.28655999 0.846148 ]\n", + " [-23.66256 0.846148 ]\n", + " [-29.03856 0.846148 ]\n", + " [-30.93606 29.623648 ]\n", + " [-30.93606 24.247648 ]\n", + " [-30.93606 18.871648 ]\n", + " [-30.93606 13.495648 ]\n", + " [-30.93606 8.119648 ]\n", + " [-30.93606 2.743648 ]\n", + " [ -0.26106 31.521148 ]\n", + " [ -0.26106 31.521148 ]\n", + " [-30.93606 0.846148 ]\n", + " [-30.93606 0.846148 ]\n", + " [ -2.15856 29.623648 ]\n", + " [ -7.53456 29.623648 ]\n", + " [-12.91056 29.623648 ]\n", + " [-18.28656 29.623648 ]\n", + " [-23.66256 29.623648 ]\n", + " [-29.03856 29.623648 ]\n", + " [ -2.15856 24.247648 ]\n", + " [ -7.53456 24.247648 ]\n", + " [-12.91056 24.247648 ]\n", + " [-18.28656 24.247648 ]\n", + " [-23.66256 24.247648 ]\n", + " [-29.03856 24.247648 ]\n", + " [ -2.15856 18.871648 ]\n", + " [ -7.53456 18.871648 ]\n", + " [-12.91056 18.871648 ]\n", + " [-18.28656 18.871648 ]\n", + " [-23.66256 18.871648 ]\n", + " [-29.03856 18.871648 ]\n", + " [ -2.15856 13.495648 ]\n", + " [ -7.53456 13.495648 ]\n", + " [-12.91056 13.495648 ]\n", + " [-18.28656 13.495648 ]\n", + " [-23.66256 13.495648 ]\n", + " [-29.03856 13.495648 ]\n", + " [ -2.15856 8.119648 ]\n", + " [ -7.53456 8.119648 ]\n", + " [-12.91056 8.119648 ]\n", + " [-18.28656 8.119648 ]\n", + " [-23.66256 8.119648 ]\n", + " [-29.03856 8.119648 ]\n", + " [ -2.15856 2.743648 ]\n", + " [ -7.53456 2.743648 ]\n", + " [-12.91056 2.743648 ]\n", + " [-18.28656 2.743648 ]\n", + " [-23.66256 2.743648 ]\n", + " [-29.03856 2.743648 ]]\n", + "DEBUG:root:make_az_asym: xyp: shape: (96, 2)\n", + "DEBUG:root:radec2pix: ccdpx: [[-4.45000000e+01 -4.99999797e-01]\n", + " [-4.45000000e+01 2.91928572e+02]\n", + " [-4.45000000e+01 5.84357143e+02]\n", + " [-4.45000000e+01 8.76785714e+02]\n", + " [-4.45000000e+01 1.16921429e+03]\n", + " [-4.45000000e+01 1.46164286e+03]\n", + " [-4.45000000e+01 1.75407143e+03]\n", + " [-4.45000001e+01 2.04650000e+03]\n", + " [-4.45000000e+01 -4.99999797e-01]\n", + " [ 2.47928571e+02 -5.00000034e-01]\n", + " [ 5.40357143e+02 -4.99999972e-01]\n", + " [ 8.32785714e+02 -4.99999760e-01]\n", + " [ 1.12521429e+03 -5.00000049e-01]\n", + " [ 1.41764286e+03 -4.99999867e-01]\n", + " [ 1.71007143e+03 -5.00000044e-01]\n", + " [ 2.00250000e+03 -4.99999770e-01]\n", + " [-4.45000001e+01 2.04650000e+03]\n", + " [ 2.47928571e+02 2.04650000e+03]\n", + " [ 5.40357143e+02 2.04650000e+03]\n", + " [ 8.32785714e+02 2.04650000e+03]\n", + " [ 1.12521429e+03 2.04650000e+03]\n", + " [ 1.41764286e+03 2.04650000e+03]\n", + " [ 1.71007143e+03 2.04650000e+03]\n", + " [ 2.00250000e+03 2.04650000e+03]\n", + " [ 2.00250000e+03 -4.99999770e-01]\n", + " [ 2.00250000e+03 2.91928572e+02]\n", + " [ 2.00250000e+03 5.84357143e+02]\n", + " [ 2.00250000e+03 8.76785714e+02]\n", + " [ 2.00250000e+03 1.16921429e+03]\n", + " [ 2.00250000e+03 1.46164286e+03]\n", + " [ 2.00250000e+03 1.75407143e+03]\n", + " [ 2.00250000e+03 2.04650000e+03]\n", + " [-4.35000000e+01 1.27000000e+02]\n", + " [-4.35000000e+01 4.85400000e+02]\n", + " [-4.35000000e+01 8.43800000e+02]\n", + " [-4.35000000e+01 1.20220000e+03]\n", + " [-4.35000000e+01 1.56060000e+03]\n", + " [-4.35000000e+01 1.91900000e+03]\n", + " [ 8.30000000e+01 5.00000045e-01]\n", + " [ 4.41400000e+02 5.00000251e-01]\n", + " [ 7.99800000e+02 4.99999878e-01]\n", + " [ 1.15820000e+03 4.99999746e-01]\n", + " [ 1.51660000e+03 5.00000268e-01]\n", + " [ 1.87500000e+03 4.99999743e-01]\n", + " [ 8.29999998e+01 2.04550000e+03]\n", + " [ 4.41400000e+02 2.04550000e+03]\n", + " [ 7.99800000e+02 2.04550000e+03]\n", + " [ 1.15820000e+03 2.04550000e+03]\n", + " [ 1.51660000e+03 2.04550000e+03]\n", + " [ 1.87500000e+03 2.04550000e+03]\n", + " [ 2.00150000e+03 1.27000000e+02]\n", + " [ 2.00150000e+03 4.85400000e+02]\n", + " [ 2.00150000e+03 8.43800000e+02]\n", + " [ 2.00150000e+03 1.20220000e+03]\n", + " [ 2.00150000e+03 1.56060000e+03]\n", + " [ 2.00150000e+03 1.91900000e+03]\n", + " [-4.35000000e+01 5.00000140e-01]\n", + " [-4.35000000e+01 5.00000140e-01]\n", + " [ 2.00150000e+03 2.04550000e+03]\n", + " [ 2.00150000e+03 2.04550000e+03]\n", + " [ 8.30000000e+01 1.27000000e+02]\n", + " [ 4.41400000e+02 1.27000000e+02]\n", + " [ 7.99800000e+02 1.27000000e+02]\n", + " [ 1.15820000e+03 1.27000000e+02]\n", + " [ 1.51660000e+03 1.27000000e+02]\n", + " [ 1.87500000e+03 1.27000000e+02]\n", + " [ 8.30000000e+01 4.85400000e+02]\n", + " [ 4.41400000e+02 4.85400000e+02]\n", + " [ 7.99800000e+02 4.85400000e+02]\n", + " [ 1.15820000e+03 4.85400000e+02]\n", + " [ 1.51660000e+03 4.85400000e+02]\n", + " [ 1.87500000e+03 4.85400000e+02]\n", + " [ 8.30000000e+01 8.43800000e+02]\n", + " [ 4.41400000e+02 8.43800000e+02]\n", + " [ 7.99800000e+02 8.43800000e+02]\n", + " [ 1.15820000e+03 8.43800000e+02]\n", + " [ 1.51660000e+03 8.43800000e+02]\n", + " [ 1.87500000e+03 8.43800000e+02]\n", + " [ 8.30000000e+01 1.20220000e+03]\n", + " [ 4.41400000e+02 1.20220000e+03]\n", + " [ 7.99800000e+02 1.20220000e+03]\n", + " [ 1.15820000e+03 1.20220000e+03]\n", + " [ 1.51660000e+03 1.20220000e+03]\n", + " [ 1.87500000e+03 1.20220000e+03]\n", + " [ 8.30000001e+01 1.56060000e+03]\n", + " [ 4.41400000e+02 1.56060000e+03]\n", + " [ 7.99800000e+02 1.56060000e+03]\n", + " [ 1.15820000e+03 1.56060000e+03]\n", + " [ 1.51660000e+03 1.56060000e+03]\n", + " [ 1.87500000e+03 1.56060000e+03]\n", + " [ 8.29999998e+01 1.91900000e+03]\n", + " [ 4.41400000e+02 1.91900000e+03]\n", + " [ 7.99800000e+02 1.91900000e+03]\n", + " [ 1.15820000e+03 1.91900000e+03]\n", + " [ 1.51660000e+03 1.91900000e+03]\n", + " [ 1.87500000e+03 1.91900000e+03]]\n", + "DEBUG:root:optics_fp: cphi: [0.00780224 0.0090627 0.01080888 0.01338846 0.01758501 0.02561216\n", + " 0.04710747 0.28386977 0.00780224 0.14533491 0.27496322 0.39120201\n", + " 0.49136628 0.57525223 0.64424749 0.70045521 0.28386977 0.98428319\n", + " 0.99578049 0.99808345 0.99891062 0.99929852 0.9995109 0.99963964\n", + " 0.70045521 0.75176312 0.80558693 0.85985876 0.91123211 0.95507721\n", + " 0.98608706 0.99963964 0.00881221 0.01076578 0.01383213 0.0193404\n", + " 0.03213503 0.09472286 0.06831973 0.23248256 0.37902375 0.50180626\n", + " 0.60035228 0.67755053 0.93102393 0.99375313 0.9978592 0.99893119\n", + " 0.99936126 0.99957574 0.72226117 0.78705016 0.85369562 0.91657981\n", + " 0.96723916 0.99609029 0.00828177 0.00828177 0.99962616 0.99962616\n", + " 0.07267344 0.24649478 0.39952529 0.52527664 0.62411014 0.70001939\n", + " 0.08867076 0.29673788 0.46997825 0.60212258 0.69841939 0.76758588\n", + " 0.11364014 0.37079245 0.56463565 0.69588651 0.78180916 0.83848868\n", + " 0.15793745 0.48747001 0.6912696 0.80460719 0.86865107 0.90684836\n", + " 0.25692034 0.68020319 0.84650539 0.91395454 0.94586289 0.96305996\n", + " 0.61832382 0.93964081 0.97815648 0.98893108 0.99334495 0.99556615]\n", + "DEBUG:root:cartToSphere: vec: [[0.20581047 0.20196806 0.95752334]\n", + " [0.20764708 0.17549093 0.96233343]\n", + " [0.20921111 0.14832034 0.96655667]\n", + " [0.21050368 0.12056829 0.97012962]\n", + " [0.21152432 0.0923455 0.9730004 ]\n", + " [0.2122716 0.06376263 0.97512825]\n", + " [0.21274377 0.0349311 0.97648344]\n", + " [0.21293946 0.00596325 0.9770472 ]\n", + " [0.20581047 0.20196806 0.95752334]\n", + " [0.17940008 0.20380697 0.96243355]\n", + " [0.15228099 0.20537849 0.96676273]\n", + " [0.12456525 0.20668384 0.97044592]\n", + " [0.09636347 0.20772258 0.97342972]\n", + " [0.06778617 0.20849323 0.97567188]\n", + " [0.03894463 0.20899395 0.97714116]\n", + " [0.00995116 0.20922323 0.97781727]\n", + " [0.21293946 0.00596325 0.9770472 ]\n", + " [0.18558556 0.00601646 0.98260969]\n", + " [0.15752187 0.00606233 0.98749689]\n", + " [0.12885256 0.00610071 0.991645 ]\n", + " [0.09968382 0.00613144 0.99500027]\n", + " [0.07012532 0.00615431 0.99751921]\n", + " [0.04029051 0.00616917 0.99916896]\n", + " [0.01029607 0.00617591 0.99992792]\n", + " [0.00995116 0.20922323 0.97781727]\n", + " [0.01003858 0.18176716 0.98329036]\n", + " [0.01011374 0.15361557 0.98807893]\n", + " [0.01017639 0.12487279 0.99212057]\n", + " [0.01022623 0.09564544 0.99536294]\n", + " [0.01026295 0.0660437 0.99776395]\n", + " [0.01028629 0.03618151 0.99929229]\n", + " [0.01029607 0.00617591 0.99992792]\n", + " [0.20655553 0.19052281 0.95970614]\n", + " [0.20862193 0.15759064 0.96521608]\n", + " [0.21028039 0.12372836 0.9697801 ]\n", + " [0.21153069 0.08914025 0.97329789]\n", + " [0.21237025 0.05403012 0.97569443]\n", + " [0.212796 0.01860347 0.97691953]\n", + " [0.1943962 0.20271324 0.95974864]\n", + " [0.16153559 0.2047859 0.96538541]\n", + " [0.12772204 0.20645854 0.97008348]\n", + " [0.0931597 0.207731 0.97373975]\n", + " [0.05805212 0.20860063 0.97627646]\n", + " [0.02260459 0.20906415 0.97764064]\n", + " [0.2011068 0.00608691 0.97955041]\n", + " [0.16709142 0.00614821 0.98592224]\n", + " [0.1321133 0.00619816 0.99121524]\n", + " [0.09636698 0.00623643 0.99532633]\n", + " [0.06005439 0.00626269 0.99817546]\n", + " [0.02338579 0.00627666 0.99970681]\n", + " [0.01009044 0.19734414 0.98028234]\n", + " [0.01019035 0.16321317 0.9865382 ]\n", + " [0.01027142 0.12814101 0.99170277]\n", + " [0.0103331 0.0923229 0.9956755 ]\n", + " [0.01037483 0.05596168 0.99837901]\n", + " [0.01039617 0.01926848 0.99976029]\n", + " [0.20572824 0.20188558 0.95755841]\n", + " [0.20572824 0.20188558 0.95755841]\n", + " [0.01039877 0.00627861 0.99992622]\n", + " [0.01039877 0.00627861 0.99992622]\n", + " [0.19517474 0.19130075 0.96193079]\n", + " [0.1621771 0.19325024 0.96765331]\n", + " [0.12822694 0.19482509 0.9724202 ]\n", + " [0.09352723 0.19602426 0.97612865]\n", + " [0.05828102 0.19684438 0.97870098]\n", + " [0.02269376 0.19728171 0.98008414]\n", + " [0.19712067 0.15822879 0.96752627]\n", + " [0.1637837 0.1598311 0.97346234]\n", + " [0.12949375 0.16112922 0.97840112]\n", + " [0.09445078 0.16212009 0.98224036]\n", + " [0.05885684 0.16279899 0.98490221]\n", + " [0.0229182 0.16316141 0.98633316]\n", + " [0.19868404 0.12422708 0.97215857]\n", + " [0.16507817 0.12548158 0.97826559]\n", + " [0.13051704 0.12650047 0.98334273]\n", + " [0.09519827 0.12727979 0.98728777]\n", + " [0.05932353 0.12781451 0.99002231]\n", + " [0.02310025 0.12810021 0.99149217]\n", + " [0.19986372 0.08949878 0.97572766]\n", + " [0.16605732 0.09040196 0.98196357]\n", + " [0.13129265 0.09113695 0.98714553]\n", + " [0.09576573 0.09169995 0.99117105]\n", + " [0.05967819 0.09208666 0.99396105]\n", + " [0.02323871 0.09229337 0.99546064]\n", + " [0.20065641 0.05424725 0.9781586 ]\n", + " [0.16671646 0.05479478 0.98448116]\n", + " [0.13181555 0.05524091 0.98973385]\n", + " [0.09614872 0.05558298 0.99381384]\n", + " [0.05991775 0.05581806 0.99664146]\n", + " [0.0233323 0.05594375 0.99816126]\n", + " [0.20105858 0.01867818 0.97940113]\n", + " [0.16705125 0.01886665 0.98576768]\n", + " [0.13208139 0.0190203 0.99105637]\n", + " [0.09634357 0.01913813 0.99516413]\n", + " [0.06003972 0.01921909 0.99801095]\n", + " [0.02338002 0.01926233 0.99954106]]\n", + "DEBUG:root:radec2pix: xyfp: [[ -0.230877 31.363511 ]\n", + " [ -0.230877 26.97708243]\n", + " [ -0.230877 22.59065386]\n", + " [ -0.230877 18.20422528]\n", + " [ -0.230877 13.81779671]\n", + " [ -0.230877 9.43136815]\n", + " [ -0.230877 5.04493957]\n", + " [ -0.230877 0.658511 ]\n", + " [ -0.230877 31.363511 ]\n", + " [ -4.61730557 31.363511 ]\n", + " [ -9.00373414 31.363511 ]\n", + " [-13.39016272 31.363511 ]\n", + " [-17.77659129 31.363511 ]\n", + " [-22.16301986 31.363511 ]\n", + " [-26.54944843 31.363511 ]\n", + " [-30.935877 31.363511 ]\n", + " [ -0.230877 0.658511 ]\n", + " [ -4.61730558 0.658511 ]\n", + " [ -9.00373414 0.658511 ]\n", + " [-13.39016271 0.658511 ]\n", + " [-17.77659128 0.658511 ]\n", + " [-22.16301986 0.658511 ]\n", + " [-26.54944843 0.658511 ]\n", + " [-30.935877 0.658511 ]\n", + " [-30.935877 31.363511 ]\n", + " [-30.935877 26.97708243]\n", + " [-30.935877 22.59065386]\n", + " [-30.935877 18.20422528]\n", + " [-30.935877 13.81779671]\n", + " [-30.935877 9.43136814]\n", + " [-30.935877 5.04493957]\n", + " [-30.935877 0.658511 ]\n", + " [ -0.245877 29.451011 ]\n", + " [ -0.245877 24.075011 ]\n", + " [ -0.245877 18.699011 ]\n", + " [ -0.245877 13.323011 ]\n", + " [ -0.245877 7.947011 ]\n", + " [ -0.245877 2.571011 ]\n", + " [ -2.143377 31.348511 ]\n", + " [ -7.519377 31.348511 ]\n", + " [-12.895377 31.348511 ]\n", + " [-18.271377 31.348511 ]\n", + " [-23.647377 31.348511 ]\n", + " [-29.023377 31.348511 ]\n", + " [ -2.143377 0.673511 ]\n", + " [ -7.519377 0.673511 ]\n", + " [-12.895377 0.673511 ]\n", + " [-18.271377 0.673511 ]\n", + " [-23.64737701 0.673511 ]\n", + " [-29.023377 0.673511 ]\n", + " [-30.920877 29.451011 ]\n", + " [-30.920877 24.075011 ]\n", + " [-30.920877 18.699011 ]\n", + " [-30.920877 13.323011 ]\n", + " [-30.920877 7.947011 ]\n", + " [-30.920877 2.571011 ]\n", + " [ -0.245877 31.348511 ]\n", + " [ -0.245877 31.348511 ]\n", + " [-30.920877 0.673511 ]\n", + " [-30.920877 0.673511 ]\n", + " [ -2.143377 29.451011 ]\n", + " [ -7.519377 29.451011 ]\n", + " [-12.895377 29.451011 ]\n", + " [-18.271377 29.451011 ]\n", + " [-23.647377 29.451011 ]\n", + " [-29.023377 29.451011 ]\n", + " [ -2.143377 24.075011 ]\n", + " [ -7.519377 24.075011 ]\n", + " [-12.895377 24.075011 ]\n", + " [-18.271377 24.075011 ]\n", + " [-23.647377 24.075011 ]\n", + " [-29.023377 24.075011 ]\n", + " [ -2.143377 18.699011 ]\n", + " [ -7.519377 18.699011 ]\n", + " [-12.895377 18.699011 ]\n", + " [-18.271377 18.699011 ]\n", + " [-23.647377 18.699011 ]\n", + " [-29.023377 18.699011 ]\n", + " [ -2.143377 13.323011 ]\n", + " [ -7.519377 13.323011 ]\n", + " [-12.895377 13.323011 ]\n", + " [-18.271377 13.323011 ]\n", + " [-23.647377 13.323011 ]\n", + " [-29.023377 13.323011 ]\n", + " [ -2.143377 7.947011 ]\n", + " [ -7.519377 7.947011 ]\n", + " [-12.895377 7.947011 ]\n", + " [-18.271377 7.947011 ]\n", + " [-23.647377 7.947011 ]\n", + " [-29.023377 7.947011 ]\n", + " [ -2.143377 2.571011 ]\n", + " [ -7.519377 2.571011 ]\n", + " [-12.895377 2.571011 ]\n", + " [-18.271377 2.571011 ]\n", + " [-23.647377 2.571011 ]\n", + " [-29.023377 2.571011 ]]\n", + "DEBUG:root:optics_fp: sphi: [-0.99996956 -0.99995893 -0.99994158 -0.99991037 -0.99984537 -0.99967195\n", + " -0.99888983 -0.95886284 -0.99996956 -0.98938252 -0.96145475 -0.92030483\n", + " -0.87095303 -0.81797608 -0.76481709 -0.71369637 -0.95886284 -0.17659731\n", + " -0.09176722 -0.06188241 -0.04666441 -0.03744961 -0.03127246 -0.02684394\n", + " -0.71369637 -0.65943324 -0.59247759 -0.51053198 -0.41189324 -0.2963571\n", + " -0.16622968 -0.02684394 -0.99996117 -0.99994205 -0.99990433 -0.99981296\n", + " -0.99948354 -0.99550368 -0.99766348 -0.97260056 -0.92538694 -0.86498004\n", + " -0.79973567 -0.73547623 -0.36495814 -0.11160071 -0.06539891 -0.04622212\n", + " -0.0357361 -0.02912641 -0.69162042 -0.616889 -0.5207723 -0.39985178\n", + " -0.2538669 -0.08834096 -0.99996571 -0.99996571 -0.02734129 -0.02734129\n", + " -0.99735579 -0.96914412 -0.91672217 -0.85093152 -0.78133638 -0.71412384\n", + " -0.99606099 -0.95495897 -0.882678 -0.79840366 -0.71568873 -0.64094611\n", + " -0.99352198 -0.92871576 -0.82534028 -0.71815177 -0.62351779 -0.54491901\n", + " -0.98744912 -0.87313973 -0.72259694 -0.59380744 -0.49542438 -0.42145706\n", + " -0.96643258 -0.73302362 -0.53238015 -0.40581658 -0.32456648 -0.26928704\n", + " -0.78592344 -0.34216247 -0.20786992 -0.14837557 -0.11517726 -0.094064 ]\n", + "DEBUG:root:radec2pix: xyfp Shape: (96, 2)\n", + "DEBUG:root:radec2pix: xyfp: [[ -0.24606 31.536148 ]\n", + " [ -0.24606 27.14971943]\n", + " [ -0.24606 22.76329086]\n", + " [ -0.24606 18.37686229]\n", + " [ -0.24606 13.99043371]\n", + " [ -0.24606 9.60400514]\n", + " [ -0.24606 5.21757658]\n", + " [ -0.24606 0.831148 ]\n", + " [ -0.24606 31.536148 ]\n", + " [ -4.63248857 31.536148 ]\n", + " [ -9.01891714 31.536148 ]\n", + " [-13.40534571 31.536148 ]\n", + " [-17.79177429 31.536148 ]\n", + " [-22.17820286 31.536148 ]\n", + " [-26.56463143 31.536148 ]\n", + " [-30.95106 31.536148 ]\n", + " [ -0.24606 0.831148 ]\n", + " [ -4.63248857 0.831148 ]\n", + " [ -9.01891714 0.831148 ]\n", + " [-13.40534571 0.831148 ]\n", + " [-17.79177429 0.831148 ]\n", + " [-22.17820285 0.831148 ]\n", + " [-26.56463143 0.831148 ]\n", + " [-30.95106 0.831148 ]\n", + " [-30.95106 31.536148 ]\n", + " [-30.95106 27.14971943]\n", + " [-30.95106 22.76329086]\n", + " [-30.95106 18.37686228]\n", + " [-30.95106 13.99043371]\n", + " [-30.95106 9.60400514]\n", + " [-30.95106 5.21757657]\n", + " [-30.95106 0.831148 ]\n", + " [ -0.26106 29.623648 ]\n", + " [ -0.26106 24.247648 ]\n", + " [ -0.26106 18.87164801]\n", + " [ -0.26106 13.495648 ]\n", + " [ -0.26106 8.119648 ]\n", + " [ -0.26106 2.743648 ]\n", + " [ -2.15856 31.521148 ]\n", + " [ -7.53456 31.521148 ]\n", + " [-12.91056 31.521148 ]\n", + " [-18.28656 31.521148 ]\n", + " [-23.66256 31.521148 ]\n", + " [-29.03856 31.521148 ]\n", + " [ -2.15856 0.846148 ]\n", + " [ -7.53456 0.846148 ]\n", + " [-12.91056 0.846148 ]\n", + " [-18.28655999 0.846148 ]\n", + " [-23.66256 0.846148 ]\n", + " [-29.03856 0.846148 ]\n", + " [-30.93606 29.623648 ]\n", + " [-30.93606 24.247648 ]\n", + " [-30.93606 18.871648 ]\n", + " [-30.93606 13.495648 ]\n", + " [-30.93606 8.119648 ]\n", + " [-30.93606 2.743648 ]\n", + " [ -0.26106 31.521148 ]\n", + " [ -0.26106 31.521148 ]\n", + " [-30.93606 0.846148 ]\n", + " [-30.93606 0.846148 ]\n", + " [ -2.15856 29.623648 ]\n", + " [ -7.53456 29.623648 ]\n", + " [-12.91056 29.623648 ]\n", + " [-18.28656 29.623648 ]\n", + " [-23.66256 29.623648 ]\n", + " [-29.03856 29.623648 ]\n", + " [ -2.15856 24.247648 ]\n", + " [ -7.53456 24.247648 ]\n", + " [-12.91056 24.247648 ]\n", + " [-18.28656 24.247648 ]\n", + " [-23.66256 24.247648 ]\n", + " [-29.03856 24.247648 ]\n", + " [ -2.15856 18.871648 ]\n", + " [ -7.53456 18.871648 ]\n", + " [-12.91056 18.871648 ]\n", + " [-18.28656 18.871648 ]\n", + " [-23.66256 18.871648 ]\n", + " [-29.03856 18.871648 ]\n", + " [ -2.15856 13.495648 ]\n", + " [ -7.53456 13.495648 ]\n", + " [-12.91056 13.495648 ]\n", + " [-18.28656 13.495648 ]\n", + " [-23.66256 13.495648 ]\n", + " [-29.03856 13.495648 ]\n", + " [ -2.15856 8.119648 ]\n", + " [ -7.53456 8.119648 ]\n", + " [-12.91056 8.119648 ]\n", + " [-18.28656 8.119648 ]\n", + " [-23.66256 8.119648 ]\n", + " [-29.03856 8.119648 ]\n", + " [ -2.15856 2.743648 ]\n", + " [ -7.53456 2.743648 ]\n", + " [-12.91056 2.743648 ]\n", + " [-18.28656 2.743648 ]\n", + " [-23.66256 2.743648 ]\n", + " [-29.03856 2.743648 ]]\n", + "DEBUG:root:radec2pix: xyfp Shape: (96, 2)\n", + "DEBUG:root:radec2pix: fitpx: [[ 2.13550000e+03 -4.99999797e-01]\n", + " [ 2.13550000e+03 2.91928572e+02]\n", + " [ 2.13550000e+03 5.84357143e+02]\n", + " [ 2.13550000e+03 8.76785714e+02]\n", + " [ 2.13550000e+03 1.16921429e+03]\n", + " [ 2.13550000e+03 1.46164286e+03]\n", + " [ 2.13550000e+03 1.75407143e+03]\n", + " [ 2.13550000e+03 2.04650000e+03]\n", + " [ 2.13550000e+03 -4.99999797e-01]\n", + " [ 2.42792857e+03 -5.00000034e-01]\n", + " [ 2.72035714e+03 -4.99999972e-01]\n", + " [ 3.01278571e+03 -4.99999760e-01]\n", + " [ 3.30521429e+03 -5.00000049e-01]\n", + " [ 3.59764286e+03 -4.99999867e-01]\n", + " [ 3.89007143e+03 -5.00000044e-01]\n", + " [ 4.18250000e+03 -4.99999770e-01]\n", + " [ 2.13550000e+03 2.04650000e+03]\n", + " [ 2.42792857e+03 2.04650000e+03]\n", + " [ 2.72035714e+03 2.04650000e+03]\n", + " [ 3.01278571e+03 2.04650000e+03]\n", + " [ 3.30521429e+03 2.04650000e+03]\n", + " [ 3.59764286e+03 2.04650000e+03]\n", + " [ 3.89007143e+03 2.04650000e+03]\n", + " [ 4.18250000e+03 2.04650000e+03]\n", + " [ 4.18250000e+03 -4.99999770e-01]\n", + " [ 4.18250000e+03 2.91928572e+02]\n", + " [ 4.18250000e+03 5.84357143e+02]\n", + " [ 4.18250000e+03 8.76785714e+02]\n", + " [ 4.18250000e+03 1.16921429e+03]\n", + " [ 4.18250000e+03 1.46164286e+03]\n", + " [ 4.18250000e+03 1.75407143e+03]\n", + " [ 4.18250000e+03 2.04650000e+03]\n", + " [ 2.13650000e+03 1.27000000e+02]\n", + " [ 2.13650000e+03 4.85400000e+02]\n", + " [ 2.13650000e+03 8.43800000e+02]\n", + " [ 2.13650000e+03 1.20220000e+03]\n", + " [ 2.13650000e+03 1.56060000e+03]\n", + " [ 2.13650000e+03 1.91900000e+03]\n", + " [ 2.26300000e+03 5.00000045e-01]\n", + " [ 2.62140000e+03 5.00000251e-01]\n", + " [ 2.97980000e+03 4.99999878e-01]\n", + " [ 3.33820000e+03 4.99999746e-01]\n", + " [ 3.69660000e+03 5.00000268e-01]\n", + " [ 4.05500000e+03 4.99999743e-01]\n", + " [ 2.26300000e+03 2.04550000e+03]\n", + " [ 2.62140000e+03 2.04550000e+03]\n", + " [ 2.97980000e+03 2.04550000e+03]\n", + " [ 3.33820000e+03 2.04550000e+03]\n", + " [ 3.69660000e+03 2.04550000e+03]\n", + " [ 4.05500000e+03 2.04550000e+03]\n", + " [ 4.18150000e+03 1.27000000e+02]\n", + " [ 4.18150000e+03 4.85400000e+02]\n", + " [ 4.18150000e+03 8.43800000e+02]\n", + " [ 4.18150000e+03 1.20220000e+03]\n", + " [ 4.18150000e+03 1.56060000e+03]\n", + " [ 4.18150000e+03 1.91900000e+03]\n", + " [ 2.13650000e+03 5.00000140e-01]\n", + " [ 2.13650000e+03 5.00000140e-01]\n", + " [ 4.18150000e+03 2.04550000e+03]\n", + " [ 4.18150000e+03 2.04550000e+03]\n", + " [ 2.26300000e+03 1.27000000e+02]\n", + " [ 2.62140000e+03 1.27000000e+02]\n", + " [ 2.97980000e+03 1.27000000e+02]\n", + " [ 3.33820000e+03 1.27000000e+02]\n", + " [ 3.69660000e+03 1.27000000e+02]\n", + " [ 4.05500000e+03 1.27000000e+02]\n", + " [ 2.26300000e+03 4.85400000e+02]\n", + " [ 2.62140000e+03 4.85400000e+02]\n", + " [ 2.97980000e+03 4.85400000e+02]\n", + " [ 3.33820000e+03 4.85400000e+02]\n", + " [ 3.69660000e+03 4.85400000e+02]\n", + " [ 4.05500000e+03 4.85400000e+02]\n", + " [ 2.26300000e+03 8.43800000e+02]\n", + " [ 2.62140000e+03 8.43800000e+02]\n", + " [ 2.97980000e+03 8.43800000e+02]\n", + " [ 3.33820000e+03 8.43800000e+02]\n", + " [ 3.69660000e+03 8.43800000e+02]\n", + " [ 4.05500000e+03 8.43800000e+02]\n", + " [ 2.26300000e+03 1.20220000e+03]\n", + " [ 2.62140000e+03 1.20220000e+03]\n", + " [ 2.97980000e+03 1.20220000e+03]\n", + " [ 3.33820000e+03 1.20220000e+03]\n", + " [ 3.69660000e+03 1.20220000e+03]\n", + " [ 4.05500000e+03 1.20220000e+03]\n", + " [ 2.26300000e+03 1.56060000e+03]\n", + " [ 2.62140000e+03 1.56060000e+03]\n", + " [ 2.97980000e+03 1.56060000e+03]\n", + " [ 3.33820000e+03 1.56060000e+03]\n", + " [ 3.69660000e+03 1.56060000e+03]\n", + " [ 4.05500000e+03 1.56060000e+03]\n", + " [ 2.26300000e+03 1.91900000e+03]\n", + " [ 2.62140000e+03 1.91900000e+03]\n", + " [ 2.97980000e+03 1.91900000e+03]\n", + " [ 3.33820000e+03 1.91900000e+03]\n", + " [ 3.69660000e+03 1.91900000e+03]\n", + " [ 4.05500000e+03 1.91900000e+03]]\n", + "DEBUG:root:fitpix2pix: ccdpx: shape: (96, 2)\n", + "DEBUG:root:fitpix2pix: visCut: True\n", + "DEBUG:root:cartToSphere: vec: [[ 0.00152888 -0.20769103 0.97819328]\n", + " [ 0.00154215 -0.1801941 0.98362986]\n", + " [ 0.00155354 -0.15200928 0.98837785]\n", + " [ 0.00156302 -0.12324112 0.99237552]\n", + " [ 0.00157054 -0.09399571 0.99557136]\n", + " [ 0.00157606 -0.06438234 0.99792406]\n", + " [ 0.00157952 -0.03451442 0.99940295]\n", + " [ 0.00158089 -0.00450904 0.99998858]\n", + " [ 0.00152888 -0.20769103 0.97819328]\n", + " [ 0.03055413 -0.20754198 0.97774883]\n", + " [ 0.0594604 -0.20712371 0.97650613]\n", + " [ 0.08813528 -0.20643751 0.97448229]\n", + " [ 0.11646734 -0.2054851 0.97170532]\n", + " [ 0.14434605 -0.20426815 0.9682142 ]\n", + " [ 0.17166149 -0.20278791 0.96405881]\n", + " [ 0.1983039 -0.2010451 0.95929997]\n", + " [ 0.00158089 -0.00450904 0.99998858]\n", + " [ 0.03159291 -0.00450572 0.99949066]\n", + " [ 0.06147904 -0.00449643 0.99809825]\n", + " [ 0.0911219 -0.00448126 0.99582966]\n", + " [ 0.12040769 -0.00446035 0.99271451]\n", + " [ 0.14922671 -0.00443385 0.98879307]\n", + " [ 0.17747265 -0.00440189 0.98411589]\n", + " [ 0.2050409 -0.00436457 0.97874367]\n", + " [ 0.1983039 -0.2010451 0.95929997]\n", + " [ 0.20004855 -0.17444879 0.9641308 ]\n", + " [ 0.20153434 -0.14716869 0.96836217]\n", + " [ 0.2027606 -0.11931453 0.97193219]\n", + " [ 0.20372608 -0.09099614 0.97478992]\n", + " [ 0.20442907 -0.06232394 0.97689533]\n", + " [ 0.20486781 -0.03340929 0.9782193 ]\n", + " [ 0.2050409 -0.00436457 0.97874367]\n", + " [ 0.00163462 -0.1957935 0.98064379]\n", + " [ 0.00165059 -0.16161745 0.9868521 ]\n", + " [ 0.00166353 -0.12651199 0.99196368]\n", + " [ 0.00167335 -0.09067166 0.99587944]\n", + " [ 0.00167995 -0.05429781 0.99852337]\n", + " [ 0.00168324 -0.01760077 0.99984368]\n", + " [ 0.01419184 -0.20756647 0.97811796]\n", + " [ 0.04970047 -0.20720276 0.97703474]\n", + " [ 0.08491857 -0.20643606 0.97476817]\n", + " [ 0.11964057 -0.20526936 0.97136534]\n", + " [ 0.15366298 -0.20370571 0.96689796]\n", + " [ 0.18678351 -0.20174719 0.96146242]\n", + " [ 0.01467408 -0.00461102 0.9998817 ]\n", + " [ 0.05138704 -0.00460274 0.99866821]\n", + " [ 0.08779394 -0.00458538 0.9961281 ]\n", + " [ 0.12368372 -0.00455917 0.99231122]\n", + " [ 0.15885436 -0.0045244 0.98729166]\n", + " [ 0.19311093 -0.0044813 0.9811667 ]\n", + " [ 0.19900616 -0.18954613 0.96149301]\n", + " [ 0.20096941 -0.15647489 0.9670196 ]\n", + " [ 0.20254341 -0.12248558 0.97158296]\n", + " [ 0.2037261 -0.08778034 0.97508476]\n", + " [ 0.2045144 -0.05256249 0.9774513 ]\n", + " [ 0.20490517 -0.01703747 0.97863353]\n", + " [ 0.00162826 -0.20759824 0.97821282]\n", + " [ 0.00162826 -0.20759824 0.97821282]\n", + " [ 0.20494776 -0.00446412 0.97876273]\n", + " [ 0.20494776 -0.00446412 0.97876273]\n", + " [ 0.01424722 -0.19576354 0.98054763]\n", + " [ 0.04989441 -0.19542056 0.97944952]\n", + " [ 0.08525013 -0.19469787 0.97715155]\n", + " [ 0.12010852 -0.19359884 0.97370089]\n", + " [ 0.15426631 -0.19212697 0.9691693 ]\n", + " [ 0.18752167 -0.19028463 0.96365314]\n", + " [ 0.01438645 -0.16159264 0.98675268]\n", + " [ 0.05038177 -0.16130879 0.98561714]\n", + " [ 0.08608239 -0.16071144 0.98324039]\n", + " [ 0.1212815 -0.15980479 0.97966996]\n", + " [ 0.15577635 -0.15859338 0.97497788]\n", + " [ 0.18936679 -0.15708053 0.9692605 ]\n", + " [ 0.01449922 -0.12649245 0.9918616 ]\n", + " [ 0.05077617 -0.12626898 0.99069568]\n", + " [ 0.08675481 -0.12579928 0.9882551 ]\n", + " [ 0.12222707 -0.12508774 0.98458804]\n", + " [ 0.15699061 -0.12413931 0.979767 ]\n", + " [ 0.19084708 -0.12295784 0.97388848]\n", + " [ 0.01458479 -0.09065756 0.99577532]\n", + " [ 0.05107523 -0.09049631 0.99458621]\n", + " [ 0.08726392 -0.09015775 0.99209707]\n", + " [ 0.1229415 -0.08964573 0.98835673]\n", + " [ 0.15790584 -0.08896468 0.98343837]\n", + " [ 0.1919602 -0.0881182 0.97743873]\n", + " [ 0.01464229 -0.05428931 0.99841789]\n", + " [ 0.05127607 -0.05419219 0.9972131 ]\n", + " [ 0.08760541 -0.05398843 0.99469118]\n", + " [ 0.12341989 -0.05368064 0.99090157]\n", + " [ 0.15851749 -0.05327188 0.985918 ]\n", + " [ 0.19270261 -0.0527647 0.97983753]\n", + " [ 0.01467095 -0.01759801 0.9997375 ]\n", + " [ 0.05137612 -0.01756642 0.99852487]\n", + " [ 0.08777538 -0.01750018 0.99598656]\n", + " [ 0.12365776 -0.01740019 0.99217236]\n", + " [ 0.15882123 -0.0172675 0.98715635]\n", + " [ 0.1930708 -0.01710301 0.98103576]]\n", + "DEBUG:root:optics_fp: rtanth: [45.0390902 42.09683712 39.42396804 37.07878541 35.12698266 33.63710755\n", + " 32.6724136 32.28002056 45.0390902 42.00763364 39.23320577 36.77402747\n", + " 34.69719395 33.07480842 31.97611838 31.45604637 32.28002056 27.89482687\n", + " 23.51009392 19.1261386 14.74365456 10.36450837 5.99601772 1.72131774\n", + " 31.45604637 27.07594694 22.69829207 18.32483384 13.95951711 9.61343916\n", + " 5.33383708 1.72131774 43.71543665 40.28285706 37.31193504 34.92069834\n", + " 33.23450917 32.36375719 43.67830098 40.1281473 37.02087501 34.47644006\n", + " 32.62678968 31.59418683 30.3683705 24.99424245 19.62114004 14.2502235\n", + " 8.88545749 3.55479843 29.54687443 24.18030108 18.81910954 13.46972753\n", + " 8.15542687 3.06450112 45.0178789 45.0178789 1.74119478 1.74119478\n", + " 42.33466612 38.66132674 35.42562866 32.75751668 30.80482728 29.70896533\n", + " 38.78006096 34.73279944 31.09090442 28.01292685 25.70226752 24.37810068\n", + " 35.68424094 31.23842634 27.13146257 23.54136773 20.73833358 19.07259071\n", + " 33.17589074 28.33926527 23.73585762 19.53127415 16.04223037 13.82166388\n", + " 31.39613279 26.23340206 21.17707168 16.3263008 11.93442847 8.72443809\n", + " 30.47289508 25.12113778 19.7825313 14.471637 9.23638255 4.35844005]\n", + "DEBUG:root:radec2pix: lng: [270.42176524 270.49034045 270.58554379 270.72662079 270.95724718\n", + " 271.40230304 272.6202602 289.32090211 270.42176524 278.37487059\n", + " 286.01754065 293.1193046 299.54422335 305.24693184 310.24816583\n", + " 314.60671783 289.32090211 351.88332455 355.81697528 357.18453549\n", + " 357.87852145 358.29811982 358.57917324 358.78056782 314.60671783\n", + " 318.91052218 323.86153916 329.52530495 335.93162927 343.04519816\n", + " 350.73789032 358.78056782 270.47833289 270.58513886 270.75335014\n", + " 271.05727717 271.77214072 275.46283159 273.91137001 283.48836134\n", + " 292.36007687 300.23563069 307.02864268 312.79442784 342.55577414\n", + " 354.88167257 357.01022263 357.88894543 358.36857558 358.67064356\n", + " 316.39469688 322.09565632 328.83707711 336.69003224 345.58630386\n", + " 355.24690052 270.44938101 270.44938101 358.75219462 358.75219462\n", + " 274.16251665 284.32266507 293.64661849 301.81542209 308.76235319\n", + " 314.58099285 275.08757932 287.34521298 298.17498348 307.196148\n", + " 314.48659385 320.3241534 276.53899869 291.90639058 304.59126569\n", + " 314.33729311 321.66504236 327.20736404 279.1393103 299.43995741\n", + " 314.06556227 323.90144592 330.60294465 335.34278839 285.09401101\n", + " 313.41621828 328.3557916 336.49369688 341.42440255 344.68693562\n", + " 309.81698293 341.12351394 348.72452469 351.99035546 353.79501012\n", + " 354.93771634]\n", + "DEBUG:root:optics_fp: xyfp: [[ -0.24606 31.536148 ]\n", + " [ -0.24606 27.14971943]\n", + " [ -0.24606 22.76329086]\n", + " [ -0.24606 18.37686229]\n", + " [ -0.24606 13.99043371]\n", + " [ -0.24606 9.60400514]\n", + " [ -0.24606 5.21757658]\n", + " [ -0.24606 0.831148 ]\n", + " [ -0.24606 31.536148 ]\n", + " [ -4.63248857 31.536148 ]\n", + " [ -9.01891714 31.536148 ]\n", + " [-13.40534571 31.536148 ]\n", + " [-17.79177429 31.536148 ]\n", + " [-22.17820286 31.536148 ]\n", + " [-26.56463143 31.536148 ]\n", + " [-30.95106 31.536148 ]\n", + " [ -0.24606 0.831148 ]\n", + " [ -4.63248857 0.831148 ]\n", + " [ -9.01891714 0.831148 ]\n", + " [-13.40534571 0.831148 ]\n", + " [-17.79177429 0.831148 ]\n", + " [-22.17820285 0.831148 ]\n", + " [-26.56463143 0.831148 ]\n", + " [-30.95106 0.831148 ]\n", + " [-30.95106 31.536148 ]\n", + " [-30.95106 27.14971943]\n", + " [-30.95106 22.76329086]\n", + " [-30.95106 18.37686228]\n", + " [-30.95106 13.99043371]\n", + " [-30.95106 9.60400514]\n", + " [-30.95106 5.21757657]\n", + " [-30.95106 0.831148 ]\n", + " [ -0.26106 29.623648 ]\n", + " [ -0.26106 24.247648 ]\n", + " [ -0.26106 18.87164801]\n", + " [ -0.26106 13.495648 ]\n", + " [ -0.26106 8.119648 ]\n", + " [ -0.26106 2.743648 ]\n", + " [ -2.15856 31.521148 ]\n", + " [ -7.53456 31.521148 ]\n", + " [-12.91056 31.521148 ]\n", + " [-18.28656 31.521148 ]\n", + " [-23.66256 31.521148 ]\n", + " [-29.03856 31.521148 ]\n", + " [ -2.15856 0.846148 ]\n", + " [ -7.53456 0.846148 ]\n", + " [-12.91056 0.846148 ]\n", + " [-18.28655999 0.846148 ]\n", + " [-23.66256 0.846148 ]\n", + " [-29.03856 0.846148 ]\n", + " [-30.93606 29.623648 ]\n", + " [-30.93606 24.247648 ]\n", + " [-30.93606 18.871648 ]\n", + " [-30.93606 13.495648 ]\n", + " [-30.93606 8.119648 ]\n", + " [-30.93606 2.743648 ]\n", + " [ -0.26106 31.521148 ]\n", + " [ -0.26106 31.521148 ]\n", + " [-30.93606 0.846148 ]\n", + " [-30.93606 0.846148 ]\n", + " [ -2.15856 29.623648 ]\n", + " [ -7.53456 29.623648 ]\n", + " [-12.91056 29.623648 ]\n", + " [-18.28656 29.623648 ]\n", + " [-23.66256 29.623648 ]\n", + " [-29.03856 29.623648 ]\n", + " [ -2.15856 24.247648 ]\n", + " [ -7.53456 24.247648 ]\n", + " [-12.91056 24.247648 ]\n", + " [-18.28656 24.247648 ]\n", + " [-23.66256 24.247648 ]\n", + " [-29.03856 24.247648 ]\n", + " [ -2.15856 18.871648 ]\n", + " [ -7.53456 18.871648 ]\n", + " [-12.91056 18.871648 ]\n", + " [-18.28656 18.871648 ]\n", + " [-23.66256 18.871648 ]\n", + " [-29.03856 18.871648 ]\n", + " [ -2.15856 13.495648 ]\n", + " [ -7.53456 13.495648 ]\n", + " [-12.91056 13.495648 ]\n", + " [-18.28656 13.495648 ]\n", + " [-23.66256 13.495648 ]\n", + " [-29.03856 13.495648 ]\n", + " [ -2.15856 8.119648 ]\n", + " [ -7.53456 8.119648 ]\n", + " [-12.91056 8.119648 ]\n", + " [-18.28656 8.119648 ]\n", + " [-23.66256 8.119648 ]\n", + " [-29.03856 8.119648 ]\n", + " [ -2.15856 2.743648 ]\n", + " [ -7.53456 2.743648 ]\n", + " [-12.91056 2.743648 ]\n", + " [-18.28656 2.743648 ]\n", + " [-23.66256 2.743648 ]\n", + " [-29.03856 2.743648 ]]\n", + "DEBUG:root:optics_fp: xyfp shape: (96, 2)\n", + "DEBUG:root:mm_to_pix: fitpx: [[0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]]\n", + "DEBUG:root:mm_to_pix: fitpx.shape: (96, 2)\n", + "DEBUG:root:optics_fp: cphi: [-0.71661052 -0.76668522 -0.81865324 -0.87041945 -0.91877042 -0.95945138\n", + " -0.98776621 -0.99975905 -0.71661052 -0.66390451 -0.59904941 -0.51982885\n", + " -0.42452343 -0.31272572 -0.18629262 -0.04992637 -0.99975905 -0.9996769\n", + " -0.99954452 -0.99931081 -0.99883841 -0.997645 -0.9929376 -0.91049017\n", + " -0.04992637 -0.05798589 -0.06914879 -0.08562676 -0.11237014 -0.16312264\n", + " -0.29391715 -0.91049017 -0.73796092 -0.80082989 -0.86457988 -0.92376676\n", + " -0.97061799 -0.99671508 -0.69515031 -0.62267974 -0.52972774 -0.41289021\n", + " -0.27152486 -0.11024131 -0.99971595 -0.99957998 -0.99931728 -0.99870324\n", + " -0.99665599 -0.97888657 -0.05365319 -0.06553749 -0.08417765 -0.1175659\n", + " -0.19410544 -0.51637928 -0.71661494 -0.71661494 -0.90871193 -0.90871193\n", + " -0.71720854 -0.64629919 -0.55357618 -0.43455016 -0.28757779 -0.11723007\n", + " -0.78293369 -0.71938388 -0.63073804 -0.50813028 -0.34464727 -0.14284199\n", + " -0.85084193 -0.79983697 -0.72276415 -0.60462283 -0.42711476 -0.18254722\n", + " -0.91515494 -0.88164179 -0.82613743 -0.72873282 -0.5521103 -0.25185684\n", + " -0.9670144 -0.95239316 -0.92593126 -0.87175367 -0.74209777 -0.39893833\n", + " -0.99629342 -0.99453874 -0.99117471 -0.98343711 -0.95881096 -0.79843817]\n", + "DEBUG:root:radec2pix: lat: [78.01259544 79.61854981 81.2561548 82.92023352 84.60572556 86.30750292\n", + " 88.02000573 89.72623162 78.01259544 77.8905989 77.5557472 77.02861409\n", + " 76.33783962 75.51523956 74.59210732 73.59715789 89.72623162 88.17123291\n", + " 86.46586111 84.76551164 83.07960166 81.41406813 79.77423864 78.16538766\n", + " 73.59715789 74.60763881 75.5491728 76.39298182 77.10737428 77.65965515\n", + " 78.01977483 78.16538766 78.70852006 80.69871958 82.73128852 84.79686317\n", + " 86.88594315 88.98689611 77.99183548 77.69708601 77.10179122 76.25561048\n", + " 75.21673598 74.0417777 89.11867119 87.04263922 84.95641064 82.89040132\n", + " 80.8558565 78.86257349 74.04815363 75.2440736 76.30818941 77.18330532\n", + " 77.80960312 78.1346569 78.0179859 78.0179859 78.1707132 78.1707132\n", + " 78.68041726 78.36422733 77.72853599 76.83064382 75.73566662 74.50486571\n", + " 80.66353948 80.27068815 79.49543516 78.42701765 77.15572991 75.75689035\n", + " 82.68520532 82.17800874 81.21001267 79.9277617 78.4547664 76.877901\n", + " 84.73149404 84.03535931 82.79194264 81.24820065 79.5578398 77.80619197\n", + " 86.77660248 85.72142555 84.09351686 82.26517071 80.37322779 78.47497463\n", + " 88.68716566 86.88752222 84.86498838 82.8264064 80.80719889 78.82380063]\n", + "DEBUG:root:radec2pix: curVec: [[ 2.77127703e-01 4.28142141e-01 -8.60171229e-01]\n", + " [ 2.58297384e-01 4.47130058e-01 -8.56362757e-01]\n", + " [ 2.38780950e-01 4.66087013e-01 -8.51907597e-01]\n", + " [ 2.18661258e-01 4.84921266e-01 -8.46781330e-01]\n", + " [ 1.98020910e-01 5.03545283e-01 -8.40969599e-01]\n", + " [ 1.76942502e-01 5.21875587e-01 -8.34468227e-01]\n", + " [ 1.55509094e-01 5.39832788e-01 -8.27283194e-01]\n", + " [ 1.33804546e-01 5.57341847e-01 -8.19430539e-01]\n", + " [ 2.77127703e-01 4.28142141e-01 -8.60171229e-01]\n", + " [ 2.61067641e-01 4.11049433e-01 -8.73431194e-01]\n", + " [ 2.44351957e-01 3.93381819e-01 -8.86308561e-01]\n", + " [ 2.27052985e-01 3.75187712e-01 -8.98710811e-01]\n", + " [ 2.09242658e-01 3.56520508e-01 -9.10555126e-01]\n", + " [ 1.90992732e-01 3.37438838e-01 -9.21768304e-01]\n", + " [ 1.72375296e-01 3.18006642e-01 -9.32286723e-01]\n", + " [ 1.53463212e-01 2.98293003e-01 -9.4DEBUG:root:make_az_asym: xyp: [[ -0.24606 31.536148 ]\n", + " [ -0.24606 27.14971943]\n", + " [ -0.24606 22.76329086]\n", + " [ -0.24606 18.37686229]\n", + " [ -0.24606 13.99043371]\n", + " [ -0.24606 9.60400514]\n", + " [ -0.24606 5.21757658]\n", + " [ -0.24606 0.831148 ]\n", + " [ -0.24606 31.536148 ]\n", + " [ -4.63248857 31.536148 ]\n", + " [ -9.01891714 31.536148 ]\n", + " [-13.40534571 31.536148 ]\n", + " [-17.79177429 31.536148 ]\n", + " [-22.17820286 31.536148 ]\n", + " [-26.56463143 31.536148 ]\n", + " [-30.95106 31.536148 ]\n", + " [ -0.24606 0.831148 ]\n", + " [ -4.63248857 0.831148 ]\n", + " [ -9.01891714 0.831148 ]\n", + " [-13.40534571 0.831148 ]\n", + " [-17.79177429 0.831148 ]\n", + " [-22.17820285 0.831148 ]\n", + " [-26.56463143 0.831148 ]\n", + " [-30.95106 0.831148 ]\n", + " [-30.95106 31.536148 ]\n", + " [-30.95106 27.14971943]\n", + " [-30.95106 22.76329086]\n", + " [-30.95106 18.37686228]\n", + " [-30.95106 13.99043371]\n", + " [-30.95106 9.60400514]\n", + " [-30.95106 5.21757657]\n", + " [-30.95106 0.831148 ]\n", + " [ -0.26106 29.623648 ]\n", + " [ -0.26106 DEBUG:root:mm_to_pix: fitpx: [[0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]]\n", + "DEBUG:root:radec2pix: lng: [44.46013111 40.20250222 35.33475619 29.80239704 23.58471193 16.71933815\n", + " 9.32DEBUG:root:radec2pix: xyfp: [[ -0.24606 31.536148 ]\n", + " [ -0.24606 27.14971943]\n", + " [ -0.24606 22.76329086]\n", + " [ -0.24606 18.37686229]\n", + " [ -0.24606 13.99043371]\n", + " [ -0.24606 9.60400514]\n", + " [ -0.24606 5.21757658]\n", + " [ -0.24606 0.831148 ]\n", + " [ -0.24606 31.536148 ]\n", + " [ -4.63248857 31.536148 ]\n", + " [ -9.01891714 31.536148 ]\n", + " [-13.40534571 31.536148 ]\n", + " [-17.79177429 31.536148 ]\n", + " [-22.17820286 31.536148 ]\n", + " [-26.56463143 31.536148 ]\n", + " [-30.95106 31.536148 ]\n", + " [ -0.24606 0.831148 ]\n", + " [ -4.63248857 0.831148 ]\n", + " [ -9.01891714 0.831148 ]\n", + " [-13.40534571 0.831148 ]\n", + " [-17.79177429 0.831148 ]\n", + " [-22.17820285 0.831148 ]\n", + " [-26.56463143 0.831148 ]\n", + " [-30.95106 0.831148 ]\n", + " [-30.95106 31.536148 ]\n", + " [-30.95106 27.14971943]\n", + " [-30.95106 22.76329086]\n", + " [-30.95106 18.37686228]\n", + " [-30.95106 13.99043371]\n", + " [-30.95106 9.60400514]\n", + " [-30.95106 5.21757657]\n", + " [-30.95106 0.831148 ]\n", + " [ -0.26106 29.623648 ]\n", + " [ -0.26106 DEBUG:root:radec2pix: curVec: [[ 0.52314377 -0.06242808 0.8499549 ]\n", + " [ 0.51012487 -0.0853287 0.85585725]\n", + " [ 0.49633863 -0.10855986 0.86131453]\n", + " [ 0.48183574 -0.13202536 0.86625841]\n", + " [ 0.46666791 -0.15563034 0.8706321 ]\n", + " [ 0.45088903 -0.17928057 0.87438982]\n", + " [ 0.43455604 -0.20288228 0.87749634]\n", + " [ 0.41772955 -0.2263423 0.87992681]\n", + " [ 0.52314377 -0.06242808 0.8499549 ]\n", + " [ 0.50529531 -0.04605003 0.86171692]\n", + " [ 0.48659698 -0.02940778 0.87313147]\n", + " [ 0.46711836 -0.01255882 0.8841056 ]\n", + " [ 0.44692994 0.00443763 0.89455796]\n", + " [ 0.42610439 0.02152036 0.904418 ]\n", + " [ 0.40471761 0.03862622 0.91362556]\n", + " [ 0.38284933 0.05569054 0.92213066]\n", + " [ 0.41772955 -0.2263423 0.87992681]\n", + " [ 0.39827786 -0.21092834 0.89268359]\n", + " [ 0.37810493 -0.19503052 0.90498605]\n", + " [ 0.35727388 -0.17870291 0.91674459]\n", + " [ 0.33585193 -0.16200184 0.9278787 ]\n", + " [ 0.31391157 -0.14498679 0.93831677]\n", + " [ 0.29153096 -0.12772058 0.94799639]\n", + " [ 0.26879363 -0.11026911 0.95686504]\n", + " [ 0.38284933 0.05569054 0.92213 24.247648 ]\n", + " [ -0.26106 18.87164801]\n", + " [ -0.26106 13.495648 ]\n", + " [ -0.26106 8.119648 ]\n", + " [ -0.26106 2.743648 ]\n", + " [ -2.15856 31.521148 ]\n", + " [ -7.53456 31.521148 ]\n", + " [-12.91056 31.521148 ]\n", + " [-18.28656 31.521148 ]\n", + " [-23.66256 31.521148 ]\n", + " [-29.03856 31.521148 ]\n", + " [ -2.15856 0.846148 ]\n", + " [ -7.53456 0.846148 ]\n", + " [-12.91056 0.846148 ]\n", + " [-18.28655999 0.846148 ]\n", + " [-23.66256 0.846148 ]\n", + " [-29.03856 0.846148 ]\n", + " [-30.93606 29.623648 ]\n", + " [-30.93606 24.247648 ]\n", + " [-30.93606 18.871648 ]\n", + " [-30.93606 13.495648 ]\n", + " [-30.93606 8.119648 ]\n", + " [-30.93606 2.743648 ]\n", + " [ -0.26106 31.521148 ]\n", + " [ -0.26106 31.521148 ]\n", + " [-30.93606 0.846148 ]\n", + " [-30.93606 0.846148 ]\n", + " [ -2.15856 29.623648 ]\n", + " [ -7.53456 29.623648 ]\n", + " [-12.91056 29.623648 ]\n", + " [-18.28656 29.623648 ]\n", + " [-23.66256 29.623648 ]\n", + " [-29.03856 29.623648 ]\n", + " [ -2.15856 24.247648 ]\n", + " [ -7.53456 24.247648 ]\n", + "2056435e-01]\n", + " [ 1.33804546e-01 5.57341847e-01 -8.19430539e-01]\n", + " [ 1.15789628e-01 5.40942677e-01 -8.33050888e-01]\n", + " [ 9.73114930e-02 5.23775277e-01 -8.46280056e-01]\n", + " [ 7.84394534e-02 5.05884299e-01 -8.59027548e-01]\n", + " [ 5.92433980e-02 4.87319482e-01 -8.71211766e-01]\n", + " [ 3.97950582e-02 4.68136935e-01 -8.82759403e-01]\n", + " [ 2.01686980e-02 4.48399966e-01 -8.93605446e-01]\n", + " [ 4.41045844e-04 4.28179220e-01 -9.03693732e-01]\n", + " [ 1.53463212e-01 2.98293003e-01 -9.42056435e-01]\n", + " [ 1.32755664e-01 3.16953718e-01 -9.39103974e-01]\n", + " [ 1.11529080e-01 3.35721477e-01 -9.35335423e-01]\n", + " [ 8.98626931e-02 3.54508031e-01 -9.30724853e-01]\n", + " [ 6.78367045e-02 3.73228487e-01 -9.25256007e-01]\n", + " [ 4.55336436e-02 3.91800330e-01 -9.18922842e-01]\n", + " [ 2.30390111e-02 4.10143167e-01 -9.11730106e-01]\n", + " [ 4.41045844e-04 4.28179220e-01 -9.03693732e-01]\n", + " [ 2.68953012e-01 4.36361372e-01 -8.58634399e-01]\n", + " [ 2.45401182e-01 4.59624264e-01 -8.53536054e-01]\n", + " [ 2.20901235e-01 4.82749103e-01 -8.47440823e-01]\n", + " [ 1.95605349e-01 DEBUG:root:optics_fp: sphi: [-0.69747355 -0.64202319 -0.57428814 -0.49231086 -0.39479224 -0.28187416\n", + " -0.15594205 -0.02195087 -0.69747355 -0.74781736 -0.80071206 -0.85427043\n", + " -0.90541695 -0.94984347 -0.98249431 -0.9987529 -0.02195087 -0.02541825\n", + " -0.03017857 -0.03712011 -0.04818532 -0.06858898 -0.11863781 -0.41353071\n", + " -0.9987529 -0.9983174 -0.99760636 -0.99632728 -0.99366642 -0.9866058\n", + " -0.9558309 -0.41353071 -0.67484345 -0.59889188 -0.50249541 -0.38295557\n", + " -0.24062567 -0.080988 -0.71886442 -0.7824768 -0.84816774 -0.91078081\n", + " -0.96243143 -0.99390485 -0.02383323 -0.02898045 -0.03694547 -0.05091008\n", + " -0.08171193 -0.2044042 -0.99855963 -0.99785011 -0.99645076 -0.99306508\n", + " -0.98098067 -0.85635999 -0.69746902 -0.69746902 -0.41742381 -0.41742381\n", + " -0.6968586 -0.76308411 -0.83279855 -0.90064763 -0.95775728 -0.99310478\n", + " -0.62210517 -0.69461272 -0.77599583 -0.86128022 -0.93873226 -0.98974551\n", + " -0.52542175 -0.60021731 -0.69109478 -0.79651192 -0.90419742 -0.98319709\n", + " -0.40310226 -0.47191923 -0.56346867 -0.68479813 -0.83377108 -0.9677645\n", + " -0.2547217 -0.30487255 -0.37769207 -0.48994442 -0.67029166 -0.91697776\n", + " -0.08601994 -0.10436806 -0.13256201 -0.18124971 -0.28404496 -0.60207682]\n", + " 5.05573003e-01 -8.40318087e-01]\n", + " [ 1.69665633e-01 5.27942288e-01 -8.32160149e-01]\n", + " [ 1.43235327e-01 5.49712587e-01 -8.22982207e-01]\n", + " [ 2.70147026e-01 4.20828204e-01 -8.65981644e-01]\n", + " [ 2.50012267e-01 3.99487022e-01 -8.81988654e-01]\n", + " [ 2.28964765e-01 3.77329708e-01 -8.97327938e-01]\n", + " [ 2.07137125e-01 3.54452479e-01 -9.11842997e-01]\n", + " [ 1.84661502e-01 3.30963278e-01 -9.25399070e-01]\n", + " [ 1.61670923e-01 3.06981976e-01 -9.37883031e-01]\n", + " [ 1.26086283e-01 5.50229629e-01 -8.25439037e-01]\n", + " [ 1.03687670e-01 5.29608155e-01 -8.41881268e-01]\n", + " [ 8.06620241e-02 5.07876753e-01 -8.57644939e-01]\n", + " [ 5.71376954e-02 4.85124818e-01 -8.72576183e-01]\n", + " [ 3.32468151e-02 4.61455744e-01 -8.86540042e-01]\n", + " [ 9.12715275e-03 4.36989155e-01 -8.99420465e-01]\n", + " [ 1.44568907e-01 3.06478213e-01 -9.40835233e-01]\n", + " [ 1.18DEBUG:root:radec2pix: curVec: [[-0.2456995 0.82971613 0.50120145]\n", + " [-0.24425996 0.81520795 0.52514099]\n", + " [-0.24259355 0.79975237 0.54913069]\n", + " [-0.24069642 0.78337643 0.57305027]\n", + " [-0.23856709 0.76611436 0.59678684]\n", + " [-0.23620664 0.74800914 0.62023282]\n", + " [-0.23361897 0.72911403 0.64328447]\n", + " [-0.23081102 0.70949333 0.66584195]\n", + " [-0.2456995 0.82971613 0.50120145]\n", + " [-0.27370427 0.82249307 0.49858913]\n", + " [-0.30138542 0.81455285 0.49565158]\n", + " [-0.32863774 0.80593471 0.49240885]\n", + " [-0.35535942 0.79668577 0.48888799]\n", + " [-0.38145226 0.78686083 0.48512289]\n", + " [-0.40682235 0.77652224 0.48115361]\n", + " [-0.4313818 0.76573965 0.47702467]\n", + " [-0.23081102 0.70949333 0.66584195]\n", + " [-0.25978217 0.7020943 0.66300589]\n", + " [-0.28842568 0.69408754 0.65958557]\n", + " [-0.3166316 0.68551378 0.655603 ]\n", + " [-0.34429718 0.67642058 0.65108728]\n", + " [-0.37132637 0.66686192 0.64607422]\n", + " [-0.39762795 0.65689841 0.64060635]\n", + " [-0.42311296 0.64659805 0.63473331]\n", + " [-0.4313818 0.76573965 0.47702831341e-01 3.29432766e-01 -9.36671322e-01]\n", + " [ 9.23927431e-02 3.52459858e-01 -9.31254868e-01]\n", + " [ 6.54002749e-02 3.75401873e-01 -9.24551912e-01]\n", + " [ 3.80059417e-02 3.98106870e-01 -9.16551400e-01]\n", + " [ 1.03683245e-02 4.20427884e-01 -9.07266715e-01]\n", + " [ 2.77010848e-01 4.28149598e-01 -8.60205157e-01]\n", + " [ 2.77010848e-01 4.28149598e-01 -8.60205157e-01]\n", + " [ 5.85942246e-04 4.28188038e-01 -9.03689472e-01]\n", + " [ 5.85942246e-04 4.28188038e-01 -9.03689472e-01]\n", + " [ 2.62020832e-01 4.29050723e-01 -8.64442341e-01]\n", + " [ 2.41704808e-01 4.07725429e-01 -8.80533225e-01]\n", + " [ 2.20494316e-01 3.85562273e-01 -8.95948654e-01]\n", + " [ 1.98521464e-01 3.62657293e-01 -9.10532216e-01]\n", + " [ 1.75917890e-01 3.39118480e-01 -9.24149096e-01]\n", + " [ 1.52816410e-01 3.15066016e-01 -9.36685940e-01]\n", + " [ 2.38286118e-01 4.52350641e-01 -8.59417607e-01]\n", + " [ 2.17487417e-01 4.31090620e-01 -8.75705487e-01]\n", + " [ 1.95845735e-01 4.08933432e-01 -8.91301238e-01]\n", + " [ 1.73491365e-01 3.85974411e-01 -9.06048840e-01]\n", + " [ 1.50554568e-01 3.62321490e-01 -9.1DEBUG:root:mm_to_pix: fitpx.shape: (96, 2)\n", + " [-12.91056 24.247648 ]\n", + " [-18.28656 24.247648 ]\n", + " [-23.66256 24.247648 ]\n", + " [-29.03856 24.247648 ]\n", + " [ -2.15856 18.871648 ]\n", + " [ -7.53456 18.871648 ]\n", + " [-12.91056 18.871648 ]\n", + " [-18.28656 18.871648 ]\n", + " [-23.66256 18.871648 ]\n", + " [-29.03856 18.871648 ]\n", + " [ -2.15856 13.495648 ]\n", + " [ -7.53456 13.495648 ]\n", + " [-12.91056 13.495648 ]\n", + " [-18.28656 13.495648 ]\n", + " [-23.66256 13.495648 ]\n", + " [-29.03856 13.495648 ]\n", + " [ -2.15856 8.119648 ]\n", + " [ -7.53456 8.119648 ]\n", + " [-12.91056 8.119648 ]\n", + " [-18.28656 8.119648 ]\n", + " [-23.66256 8.119648 ]\n", + " [-29.03856 8.119648 ]\n", + " [ -2.15856 2.743648 ]\n", + " [ -7.53456 2.743648 ]\n", + " [-12.91056 2.743648 ]\n", + " [-18.28656 2.743648 ]\n", + " [-23.66256 2.743648 ]\n", + " [-29.03856 2.743648 ]]\n", + " 24.247648 ]\n", + " [ -0.26106 18.87164801]\n", + " [ -0.26106 13.495648 ]\n", + " [ -0.26106 8.119648 ]\n", + " [ -0.26106 2.743648 ]\n", + " [ -2.15856 9813274e-01]\n", + " [ 1.27167896e-01 3.38095647e-01 -9.32480380e-01]\n", + " [ 2.13619131e-01 4.75522371e-01 -8.53372921e-01]\n", + " [ 1.92382324e-01 4.54358166e-01 -8.69797504e-01]\n", + " [ 1.70353061e-01 4.32241106e-01 -8.85521011e-01]\n", + " [ 1.47659897e-01 4.09265442e-01 -9.00387890e-01]\n", + " [ 1.24432261e-01 3.85538641e-01 -9.14262855e-01]\n", + " [ 1.00803100e-01 3.61182160e-01 -9.27030842e-01]\n", + " [ 1.88171551e-01 4.98403100e-01 -8.46277624e-01]\n", + " [ 1.66539363e-01 4.77365629e-01 -8.62778475e-01]\n", + " [ 1.44164295e-01 4.55323519e-01 -8.78576774e-01]\n", + " [ 1.21173816e-01 4.32369600e-01 -8.93517451e-01]\n", + " [ 9.76973335e-02 4.08610424e-01 -9.07465015e-01]\n", + " [ 7.38688469e-02 3.84167456e-01 -9.20303623e-01]\n", + " [ 1.62095031e-01 5.20838975e-01 -8.38124074e-01]\n", + " [ 1.40108952e-01 4.99958692e-01 -8.54640736e-01]\n", + " [ 1.17429100e-01 4.78026127e-01 -8.70460469e-01]\n", + " [ 9.41827504e-02 4.55132534e-01 -8.85428702e-01]\n", + " [ 7.05000930e-02 4.31383199e-01 -8.99409958e-01]\n", + " [ 4.65166456e-02 4.06899088e-01 -9.12287967e-01]\n", + " [ 1.35542703e-01 31.521148 ]\n", + " [ -7.53456 31.521148 ]\n", + " [-12.91056 31.521148 ]\n", + " [-18.28656 31.521148 ]\n", + " [-23.66256 31.521148 ]\n", + " [-29.03856 31.521148 ]\n", + " [ -2.15856 0.846148 ]\n", + " [ -7.53456 0.846148 ]\n", + " [-12.91056 0.846148 ]\n", + " [-18.28655999 0.846148 ]\n", + " [-23.66256 0.846148 ]\n", + " [-29.03856 0.846148 ]\n", + " [-30.93606 29.623648 ]\n", + " [-30.93606 24.247648 ]\n", + " [-30.93606 18.871648 ]\n", + " [-30.93606 13.495648 ]\n", + " [-30.93606 8.119648 ]\n", + " [-30.93606 2.743648 ]\n", + " [ -0.26106 31.521148 ]\n", + " [ -0.26106 31.521148 ]\n", + " [-30.93606 0.846148 ]\n", + " [-30.93606 0.846148 ]\n", + " [ -2.15856 29.623648 ]\n", + " [ -7.53456 29.623648 ]\n", + " [-12.91056 29.623648 ]\n", + " [-18.28656 29.623648 ]\n", + " [-23.66256 29.623648 ]\n", + " [-29.03856 29.623648 ]\n", + " [ -2.15856 24.247648 ]\n", + " [ -7.53456 24.247648 ]\n", + " [-12.91056 24.247648 ]\n", + " [-18.28656 24.247648 ]\n", + " [-23.66256 24.247648 ]\n", + " [-29.03856 24.247648 ]\n", + " [ -2.15856 18.871648 066]\n", + " [ 0.36809155 0.03294405 0.92920573]\n", + " [ 0.35273882 0.00972351 0.9356713 ]\n", + " [ 0.3368366 -0.0138803 0.9414608 ]\n", + " [ 0.3204343 -0.03777574 0.94651722]\n", + " [ 0.3035861 -0.06186937 0.95079318]\n", + " [ 0.28635121 -0.08606597 0.95425135]\n", + " [ 0.26879363 -0.11026911 0.95686504]\n", + " [ 0.51750509 -0.07231059 0.85261929]\n", + " [ 0.50102544 -0.10061257 0.85956421]\n", + " [ 0.4834436 -0.12931536 0.86577123]\n", + " [ 0.46485433 -0.15824381 0.87113108]\n", + " [ 0.44535689 -0.18722445 0.87555939]\n", + " [ 0.42505764 -0.21608484 0.87899565]\n", + " [ 0.5154271 -0.05540105 0.85514071]\n", + " [ 0.49297041 -0.03514349 0.86933602]\n", + " [ 0.46930634 -0.01454587 0.88291561]\n", + " [ 0.44456422 0.00628352 0.89572494]\n", + " [ 0.41887794 0.027232 0.90763412]\n", + " [ 0.39238884 0.04818265 0.91853657]\n", + " [ 0.40939969 -0.21960446 0.88553135]\n", + " [ 0.38506746 -0.20038016 0.90087227]\n", + " [ 0.35971413 -0.18048276 0.91544072]\n", + " [ 0.33346167 -0.16001499 0.92908477]\n", + " [ 0.30644357 -0.13908635 0.94167262]\n", + " [ 0.27880598 -0.11781382 0.95309345]\n", + " [ 0.37656664 0.04577868 0.92525774]\n", + " [ 0.35807459 0.01756978 0.93352766]\n", + " [ 0.33873356 -0.01126087 0.94081495]\n", + " [ 0.3186328 -0.04054498 0.94701069]\n", + " [ 0.29787208 -0.07011057 0.95202769]\n", + " [ 0.27656243 -0.09978176 0.95580166]\n", + " [ 0.5230411 -0.06245023 0.85001645]\n", + " [ 0.5230411 -0.06245023 0.85001645]\n", + " [ 0.2689324 -0.11024636 0.95682867]\n", + " [ 0.2689324 -0.11024636 0.95682867]\n", + " [ 0.50983347 -0.06527685 0.85779296]\n", + " [ 0.48722179 -0.0450482 0.87211558]\n", + " [ 0.4634137 -0.02445751 0.88580448]\n", + " [ 0.43853715 -0.00361311 0.8987058 ]\n", + " [ 0.41272528 0.01737201 0.91068988]\n", + " [ 0.38611921 0.0383805 0.92165009]\n", + " [ 0.49320159 -0.09363076 0.86486153]\n", + " [ 0.47018161 -0.07350802 0.87950317]\n", + " [ 0.44599576 -0.05296189 0.89346674]\n", + " [ 0.42076864 -0.03210058 0.90659986]\n", + " [ 0.3946318 -0.01103753 0.91877305]\n", + " [ 0.36772645 0.01010887 0.92987906]\n", + " [ 0.47548266 -0.12239818 0.87116871]\n", + " [ 0.45209677 -0.10241848 0.88606939]\n", + " [ 0.42757541 -0.08195543 0.90025695]\n", + " [ 0.4020409 -0.06111662 0.91357971]\n", + " [ 0.3 ]\n", + " [ -7.53456 18.871648 ]\n", + " [-12.91056 18.871648 ]\n", + " [-18.28656 18.871648 ]\n", + " [-23.66256 18.871648 ]\n", + " [-29.03856 18.871648 ]\n", + " [ -2.15856 13.495648 ]\n", + " [ -7.53456 13.495648 ]\n", + " [-12.91056 13.495648 ]\n", + " [-18.28656 13.495648 ]\n", + " [-23.66256 13.495648 ]\n", + " [-29.03856 13.495648 ]\n", + " [ -2.15856 8.119648 ]\n", + " [ -7.53456 8.119648 ]\n", + " [-12.91056 8.119648 ]\n", + " [-18.28656 8.119648 ]\n", + " [-23.66256 8.119648 ]\n", + " [-29.03856 8.119648 ]\n", + " [ -2.15856 2.743648 ]\n", + " [ -7.53456 2.743648 ]\n", + " [-12.91056 2.743648 ]\n", + " [-18.28656 2.743648 ]\n", + " [-23.66256 2.743648 ]\n", + " [-29.03856 2.743648 ]]\n", + "7562416 -0.04001538 0.9259078 ]\n", + " [ 0.34846719 -0.01877065 0.93713301]\n", + " [ 0.45677015 -0.15140433 0.87660581]\n", + " [ 0.43305765 -0.1316059 0.89170677]\n", + " [ 0.40824104 -0.11126563 0.90606799]\n", + " [ 0.38244149 -0.09048995 0.91953797]\n", + " [ 0.35579015 -0.06939155 0.93198615]\n", + " [ 0.3284302 -0.04808934 0.94330325]\n", + " [ 0.43716256 -0.180475DEBUG:root:make_az_asym: xyp: shape: (96, 2)\n", + "68 0.88108877]\n", + " [ 0.41316117 -0.16089655 0.89633149]\n", + " [ 0.38808905 -0.14071865 0.91081565]\n", + " [ 0.36206721 -0.12004688 0.92438957]\n", + " [ 0.3352276 -0.09899282 0.93692203]\n", + " [ 0.30771474 -0.07767484 0.94830283]\n", + " [ 0.41676596 -0.20943937 0.88455711]\n", + " [ 0.39251329 -0.19011628 0.89988283]\n", + " [ 0.36722603 -0.17013917 0.91443846]\n", + " [ 0.34102579 -0.14961132 0.92807212]\n", + " [ 0.31404564 -0.1286428 0.9406521 ]\n", + " [ 0.28643134 -0.10735103 0.95206767]]\n", + " 5.42685198e-01 -8.28927591e-01]\n", + " [ 1.13244240e-01 5.21991287e-01 -8.45399810e-01]\n", + " [ 9.03012367e-02 5.00201729e-01 -8.61187504e-01]\n", + " [ 6.68416412e-02 4.77406337e-01 -8.76136624e-01]\n", + " [ 4.29970169e-02 4.53708988e-01 -8.90112021e-01]\n", + " [ 1.89045633e-02 4.29229711e-01 -9.02997493e-01]]\n", + "DEBUG:root:optics_fp: rtanth: [31.36436077 26.97807037 22.59183361 18.20568928 13.8197254 9.43419362\n", + " 5.05021974 0.69781153 31.36436077 31.70156673 32.63030877 34.10229142\n", + " 36.05103355 38.40402676 41.09188526 44.05335752 0.69781153 4.66402697\n", + " 9.02778296 13.40634529 17.78878395 22.17280059 26.55761376 30.94288484\n", + " 44.05335752 41.04621131 38.30621526 35.89459992 33.88155828 32.34160155\n", + " 31.34453543 30.94288484 29.45203736 24.07626653 18.70062748 13.32527965\n", + " 7.95081375 2.58274138 31.42169962 32.23771351 33.8971959 36.28460223\n", + " 39.26738572 42.72102005 2.2467047 7.54947995 12.91295338 18.28378612\n", + " 23.65696634 29.03119064 42.70202201 39.18809499 36.13521339 33.66902518\n", + " 31.92578297 31.02758019 31.34947523 31.34947523 30.92821126 30.92821126\n", + " 29.52890302 30.39577404 32.15047118 34.65840831 37.76983569 41.34874196\n", + " 24.17023416 25.22195839 27.31111317 30.22332497 33.74617895 37.70891894\n", + " 18.82145258 20.1542562 22.71439544 26.14376082 30.14716324 34.52548949\n", + " 13.49432055 15.2984853 18.54166578 22.61295734 27.14223759 31.93523187\n", + " 8.23098104 10.94056736 15.14746618 19.92481371 24.9470123 30.09171641\n", + " 3.34726194 7.94676841 13.14917661 18.45137705 23.78673027 29.13702987]\n", + "467]\n", + " [-0.43157174 DEBUG:root:radec2pix: curVec Shape: (96, 3)\n", + "DEBUG:root:radec2pix: curVec Shape: (96, 3)\n", + "0.75099392 0.49975391]\n", + " [-0.43131182 0.73542789 0.52260496]\n", + " [-0.43059361 0.71907024 0.54546047]\n", + " [-0.42941342 0.70195841 0.56820639]\n", + " [-0.42777096 0.68413825 0.59073417]\n", + " [-0.42566891 0.66566397 0.61294164]\n", + " [-0.42311296 0.64659805 0.63473331]\n", + " [-0.24519599 0.82348492 0.51161657]\n", + " [-0.24328067 0.80506326 0.54100616]\n", + " [-0.24102032 0.78524472 0.57035071]\n", + " [-0.23841123 0.76408932 0.59943941]\n", + " [-0.23545541 0.74167634 0.628074 ]\n", + " [-0.23216129 0.71810845 0.65606508]\n", + " [-0.25793845 0.82660914 0.50018504]\n", + " [-0.29205793 0.81726951 0.49676223]\n", + " [-0.3255864 0.80689081 0.49286987]\n", + " [-0.35833497 0.79555655 0.48855483]\n", + " [-0.39012296 0.78336759 0.48387943]\n", + " [-0.42077981 0.77044178 0.47891943]\n", + " [-0.24348549 0.70641259 0.66460219]\n", + " [-0.27878633 0.69693079 0.66073115]\n", + " [-0.31348504 0.6865757 0.65600376]\n", + " [-0.34738938 0.6754321 0.65047067]\n", + " [-0.38032235 0.66359938 0.64419778]\n", + " [-0.412117 0.65119216 0.63726631]\n", + " [-0.4314363 0.75945034 0.486927 ]\n", + " [-0.43136709 0.74082316 0.514882 ]\n", + " [-0.43061333 0.72099123 0.54290313]\n", + " [-0.42916632 0.70001986 0.57077882]\n", + " [-0.42702552 0.67799344 0.59830937]\n", + " [-0.42419708 0.65501523 0.62530943]\n", + " [-0.24579116 0.82964472 0.50127473]\n", + " [-0.24579116 0.82964472 0.50127473]\n", + " [-0.42303681 0.6466999 0.63468031]\n", + " [-0.42303681 0.6466999 0.63468031]\n", + " [-0.25739087 0.82043806 0.51052065]\n", + " [-0.29164391 0.81106906 0.50706095]\n", + " [-0.32530365 0.80066514 0.50310324]\n", + " [-0.35818097 0.78931005 0.49869433]\n", + " [-0.39009489 0.77710475 0.49389694]\n", + " [-0.42087376 0.76416705 0.4887883 ]\n", + " [-0.25559524 0.80198839 0.53989414]\n", + " [-0.2901843 0.79255017 0.53633692]\n", + " [-0.3241743 0.78209284 0.53220467]\n", + " [-0.35737564 0.77070116 0.52754372]\n", + " [-0.38960758 0.75847653 0.52241678]\n", + " [-0.42069734 0.7455366 0.51690321]\n", + " [-0.25343206 0.7821478 0.56922492]\n", + " [-0.28829432 0.77266141 0.56558 ]\n", + " [-0.32255278 0.76217801 0.56128815]\n", + " [-0.35601736 0.75078343 0.55639544]\n", + " [-0.38850842 0.7385795 0.55096418]\n", + " [-0.41985418 0.72568363 0.54507406]\n", + " [-0.25089714 0.76097648 0.59830212]\n", + " [-0.28596872 0.75146397 0.59457866]\n", + " [-0.32043342 0.74098328 0.59014082]\n", + " [-0.35410049 0.72962087 0.58503524]\n", + " [-0.38679156 0.71747861 0.57932437]\n", + " [-0.41833678 0.70467343 0.57308786]\n", + " [-0.24799168 0.73855396 0.62692756]\n", + " [-0.28320679 0.72903848 0.62313466]\n", + " [-0.31781457 0.7185906 0.61856402]\n", + " [-0.35162353 0.70729665 0.61326368]\n", + " [-0.38445628 0.69525788 0.60729717]\n", + " [-0.41614478 0.68259038 0.60074446]\n", + " [-0.24472324 0.71498313 0.65491195]\n", + " [-0.28001393 0.70548838 0.65105941]\n", + " [-0.31470043 0.6951038 0.64637013]\n", + " [-0.34859063 0.68391471 0.6408941 ]\n", + " [-0.38150754 0.67202106 0.63469653]\n", + " [-0.41328414 0.65953787 0.62785828]]\n", + "DEBUG:root:optics_fp: xyfp: [[32.275486 31.41357429]\n", + " [32.27502267 27.02714574]\n", + " [32.27455935 22.64071719]\n", + " [32.27409601 18.25428864]\n", + " [32.27363269 13.8678601 ]\n", + " [32.27316936 9.48143155]\n", + " [32.27270604 5.095003 ]\n", + " [32.27224271 0.70857446]\n", + " [32.275486 31.41357429]\n", + " [27.88905745 31.41403761]\n", + " [23.5026289 31.41450094]\n", + " [19.11620036 31.41496427]\n", + " [14.72977181 31.41542759]\n", + " [10.34334326 31.41589092]\n", + " [ 5.95691471 31.41635424]\n", + " [ 1.57048617 31.41681757]\n", + " [32.27224271 0.70857446]\n", + " [27.88581416 0.70903778]\n", + " [23.49938562 0.70950111]\n", + " [19.11295707 0.70996444]\n", + " [14.72652852 0.71042776]\n", + " [10.34009998 0.71089109]\n", + " [ 5.95367142 0.71135442]\n", + " [ 1.56724288 0.71181774]\n", + " [ 1.57048617 31.41681757]\n", + " [ 1.57002284 27.03038902]\n", + " [ 1.56955951 22.64396047]\n", + " [ 1.56909619 18.25753194]\n", + " [ 1.56863286 13.87110338]\n", + " [ 1.56816953 9.48467484]\n", + " [ 1.56770621 5.09824629]\n", + " [ 1.56724288 0.71181774]\n", + " [32.26028399 29.50107588]\n", + " [32.25971613 24.12507591]\n", + " [32.25914828 18.74907594]\n", + " [32.25858043 13.37307597]\n", + " [32.25801258 7.997076 ]\n", + " [32.25744472 2.62107603]\n", + " [30.36298443 31.3987763 ]\n", + " [24.98698446 31.39934415]\n", + " [19.61098448 31.399912 ]\n", + " [14.23498451 31.40047985]\n", + " [ 8.85898454 31.40104771]\n", + " [ 3.48298457 31.40161556]\n", + " [30.35974431 0.72377647]\n", + " [24.98374433 0.72434432]\n", + " [19.60774436 0.72491217]\n", + " [14.23174439 0.72548003]\n", + " [ 8.85574442 0.72604788]\n", + " [ 3.47974445 0.72661573]\n", + " [ 1.58528416 29.504316 ]\n", + " [ 1.5847163 24.12831603]\n", + " [ 1.58414845 18.75231606]\n", + " [ 1.5835806 13.37631609]\n", + " [ 1.58301275 8.00031612]\n", + " [ 1.5824449 2.62431615]\n", + " [32.26048441 31.39857587]\n", + " [32.26048441 31.39857587]\n", + " [ 1.58224447 0.72681616]\n", + " [ 1.58224447 0.72681616]\n", + " [30.36278399 29.50127631]\n", + " [24.98678403 29.50184416]\n", + " [19.61078405 29.50241201]\n", + " [14.23478409 29.50297987]\n", + " [ 8.85878411 29.50354772]\n", + " [ 3.48278414 29.50411557]\n", + " [30.36221615 24.12527634]\n", + " [24.98621618 24.12584419]\n", + " [19.6102162 24.12641204]\n", + " [14.23421623 24.1269799 ]\n", + " [ 8.85821626 24.12754775]\n", + " [ 3.48221629 24.1281156 ]\n", + " [30.36164829 18.74927637]\n", + " [24.98564832 18.74984422]\n", + " [19.60964835 18.75041208]\n", + " [14.23364838 18.75097993]\n", + " [ 8.85764841 18.75154778]\n", + " [ 3.48164844 18.75211563]\n", + " [30.36108043 13.3732764 ]\n", + " [24.98508046 13.37384425]\n", + " [19.60908049 13.3744121 ]\n", + " [14.23308053 13.37497996]\n", + " [ 8.85708056 13.37554781]\n", + " [ 3.48108059 13.37611567]\n", + " [30.36051258 7.99727643]\n", + " [24.98451261 7.99784428]\n", + " [19.60851265 7.99841214]\n", + " [14.23251268 7.99897999]\n", + " [ 8.85651271 7.99954784]\n", + " [ 3.48051273 8.00011569]\n", + " [30.35994473 2.62127646]\n", + " [24.98394476 2.62184431]\n", + " [19.60794479 2.62241216]\n", + " [14.23194482 2.62298002]\n", + " [ 8.85594485 2.62354787]\n", + " [ 3.47994488 2.62411572]]\n", + "DEBUG:root:radec2pix: curVec Shape: (96, 3)\n", + "438225 1.60411637 44.46013111 48.6443107 53.44435482 58.92326156\n", + " 65.11319638 71.98940835 79.44437917 87.27692771 1.60411637 1.85680988\n", + " 2.20397654 2.71072869 3.51976244 5.01551732 8.70535713 30.95664732\n", + " 87.27692771 86.8388988 86.23319877 85.34102995 83.89722589 81.1670885\n", + " 74.12971046 30.95664732 42.68783954 37.06698546 30.47243013 22.85083712\n", + " 14.27406075 4.99632239 46.19982373 51.73354216 58.25770295 65.84552409\n", + " 74.44848175 83.82899465 1.73364549 2.10727457 2.68608796 DEBUG:root:optics_fp: xyfp shape: (96, 2)\n", + " 3.70275867\n", + " 5.95349638 15.02389602 87.07294759 86.42732935 85.41713359 83.61383424\n", + " 79.49708007 61.65124289 44.45987707 44.45987707 31.12292419 31.12292419\n", + " 44.42569213 49.99636441 56.64851063 64.49322462 73.50720842 83.43797919\n", + " 38.75401666 44.3002287 51.21241262 59.77502346 70.12351892 82.00435394\n", + " 32.01565774 37.23971088 44.10467708 53.20553354 65.10220937 79.77773784\n", + " 24.12278796 28.56396741 34.76649258 43.75755718 57.05411516 75.86717668\n", + " 15.12820823 18.19416817 22.73745459 30.03194111 42.97126995 67.36058422\n", + " 5.30749937 6.44364165 8.19450854 11.23524 17.75019872 39.48443023]\n", + "DEBUG:root:radec2pix: ccdpx: [[-4.45000000e+01 -5.00000251e-01]\n", + " [-4.45000000e+01 2.91928572e+02]\n", + " [-4.45000000e+01 5.84357143e+02]\n", + " [-4.45000000e+01 8.76785714e+02]\n", + " [-4.45000000e+01 1.16921429e+03]\n", + " [-4.45000000e+01 1.46164286e+03]\n", + " [-4.45000000e+01 1.75407143e+03]\n", + " [-4.45000000e+01 2.04650000e+03]\n", + " [-4.45000000e+01 -5.00000251e-01]\n", + " [ 2.47928571e+02 -5.00000137e-01]\n", + " [ 5.40357143e+02 -5.00000030e-01]\n", + " [ 8.32785714e+02 -4.99999965e-01]\n", + " [ 1.12521429e+03 -4.99999941e-01]\n", + " [ 1.41764286e+03 -5.00000178e-01]\n", + " [ 1.71007143e+03 -4.99999847e-01]\n", + " [ 2.00250000e+03 -5.00000219e-01]\n", + " [-4.45000000e+01 2.04650000e+03]\n", + " [ 2.47928571e+02 2.04650000e+03]\n", + " [ 5.40357143e+02 2.04650000e+03]\n", + " [ 8.32785714e+02 2.04650000e+03]\n", + " [ 1.12521429e+03 2.04650000e+03]\n", + " [ 1.41764286e+03 2.04650000e+03]\n", + " [ 1.71007143e+03 2.04650000e+03]\n", + " [ 2.00250000e+03 2.04650000e+03]\n", + " [ 2.00250000e+03 -5.00000219e-01]\n", + " [ 2.00250000e+03 2.91928572e+02]\n", + " [ 2.00250000e+03 5.84357143e+02]\n", + " [ 2.00250000e+03 8.76785714e+02]\n", + " [ 2.00250000e+03 1.16921429e+03]\n", + " [ 2.00250000e+03 1.46164286e+03]\n", + " [ 2.00250000e+03 1.75407143e+03]\n", + " [ 2.00250000e+03 2.04650000e+03]\n", + " [-4.35000000e+01 1.27000000e+02]\n", + " [-4.35000000e+01 4.85400000e+02]\n", + " [-4.35000000e+01 8.43800000e+02]\n", + " [-4.35000000e+01 1.20220000e+03]\n", + " [-4.35000000e+01 1.56060000e+03]\n", + " [-4.35000000e+01 1.91900000e+03]\n", + " [DEBUG:root:optics_fp: cphi: [0.00736113 0.00855795 0.01021949 0.01268159 0.01670634 0.02447236\n", + " 0.04571623 0.33085868 0.00736113 0.14564913 0.27593163 0.39264701\n", + " 0.49309519 0.57710146 0.64609955 0.70223653 0.33085868 0.98998261\n", + " 0.99733613 0.99879292 0.99931459 0.99955889 0.99969254 0.99977352\n", + " 0.70223653 0.7536841 0.80759419 0.86185323 0.91305945 0.9565351\n", + " 0.98696237 0.99977352 0.00834839 0.01021242 0.01314806 0.01845192\n", + " 0.03092476 0.09520001 0.06821327 0.23324784 0.38042607 0.50355732\n", + " 0.60221419 0.67936994 0.95400922 0.99601258 0.99863886 0.99932131\n", + " 0.99959465 0.99973085 0.72410803 0.78903751 0.85569931 0.91837755\n", + " 0.96852369 0.99656102 0.0078431 0.0078431 0.99976286 0.99976286\n", + " 0.07258573 0.24738232 0.40109449 0.52718454 0.6260916 0.70191681\n", + " 0.08867837 0.2981282 0.47216592 0.60454556 0.70074236 0.76966876\n", + " 0.11387947 0.37309127 0.56771826 0.69888097 0.78439808 0.84063622\n", + " 0.15883549 0.49151121 0.69548104 0.80800475 0.87123904 0.90881999\n", + " 0.26040359 0.68729315 0.85132238 0.9170162 0.94790417 0.96449723\n", + " 0.6403374 0.94621821 0.98069844 0.99024463 0.99414155 0.99609937]\n", + " 8.30000000e+01 4.99999716e-01]\n", + " [ 4.41400000e+02 4.99999791e-01]\n", + " [ 7.99800000e+02 5.00000291e-01]\n", + " [ 1.15820000e+03 5.00000004e-01]\n", + " [ 1.51660000e+03 5.00000077e-01]\n", + " [ 1.87500000e+03 4.99999846e-01]\n", + " [ 8.30000001e+01 2.04550000e+03]\n", + " [ 4.41400000e+02 2.04550000e+03]\n", + " [ 7.99800000e+02 2.04550000e+03]\n", + " [ 1.15820000e+03 2.04550000e+03]\n", + " [ 1.51660000e+03 2.04550000e+03]\n", + " [ 1.87500000e+03 2.04550000e+03]\n", + " [ 2.00150000e+03 1.27000000e+02]\n", + " [ 2.00150000e+03 4.85400000e+02]\n", + " [ 2.00150000e+03 8.43800000e+02]\n", + " [ 2.00150000e+03 1.20220000e+03]\n", + " [ 2.00150000e+03 1.56060000e+03]\n", + " [ 2.00150000e+03 1.91900000e+03]\n", + " [-4.35000000e+01 4.99999735e-01]\n", + " [-4.35000000e+01 4.99999735e-01]\n", + " [ 2.00150000e+03 2.04550000e+03]\n", + " [ 2.00150000e+03 2.04550000e+03]\n", + " [ 8.30000000e+01 1.27000000e+02]\n", + " [ 4.41400000e+02 1.27000000e+02]\n", + " [ 7.99800000e+02 1.27000000e+02]\n", + " [ 1.15820000e+03 1.27000000e+02]\n", + " [ 1.51660000e+03 1.27000000e+02]\n", + " [ 1.87500000e+03 1.27000000e+02]\n", + " [ 8.30000000e+01 4.85400000e+02]\n", + " [ 4.41400000e+02 4.85400000e+02]\n", + " [ 7.99800000e+02 4.85400000e+02]\n", + " [ 1.15820000e+03 4.85400000e+02]\n", + " [ 1.51660000e+03 4.85400000e+02]\n", + " [ 1.87500000e+03 4.85400000e+02]\n", + " [ 8.30000000e+01 8.43800000e+02]\n", + " [ 4.41400000e+02 8.43800000e+02]\n", + " [ 7.99800000e+02 8.43800000e+02]\n", + " [ 1.15820000e+03 8.43800000e+02]\n", + " [ 1.51660000e+03 8.43800000e+02]\n", + " [ 1.87500000e+03 8.43800000e+02]\n", + " [ 8.30000000e+01 1.20220000e+03]\n", + " [ 4.41400000e+02 1.20220000e+03]\n", + " [ 7.99800000e+02 1.20220000e+03]\n", + " [ 1.15820000e+03 1.20220000e+03]\n", + " [ 1.51660000e+03 1.20220000e+03]\n", + " [ 1.87500000e+03 1.20220000e+03]\n", + " [ 8.30000000e+01 1.56060000e+03]\n", + " [ 4.41400000e+02 1.56060000e+03]\n", + " [ 7.99800000e+02 1.56060000e+03]\n", + " [ 1.15820000e+03 1.56060000e+03]\n", + " [ 1.51660000e+03 1.56060000e+03]\n", + " [ 1.87500000e+03 1.56060000e+03]\n", + " [ 8.30000002e+01 1.91900000e+03]\n", + " [ 4.41400000e+02 1.91900000e+03]\n", + " [ 7.99800000e+02 1.91900000e+03]\n", + " [ 1.15820000e+03 1.91900000e+03]\n", + " [ 1.51660000e+03 1.91900000e+03]\n", + " [ 1.87500000e+03 1.91900000e+03]]\n", + "DEBUG:root:radec2pix: camVec: [[-0.20629584 -0.20812128 -0.20967356 -0.21095376 -0.21196139 -0.21269501\n", + " -0.2131529 -0.21333373 -0.20629584 -0.1798852 -0.15276427 -0.12504507\n", + " -0.09683814 -0.06825398 -0.03940385 -0.01040007 -0.21333373 -0.18599064\n", + " -0.15793623 -0.12927467 -0.10011211 -0.07055816 -0.04072622 -0.01073294\n", + " -0.01040007 -0.01048759 -0.01056224 -0.01062379 -0.01067191 -0.0107063\n", + " -0.0107267 -0.01073294 -0.20703611 -0.20908844 -0.21073192 -0.21196628\n", + " -0.21278893 -0.21319686 -0.19488162 -0.16201965 -0.12820231 -0.09363367\n", + " -0.05851721 -0.02305821 -0.20150602 -0.16750285 -0.13253465 -0.0967959\n", + " -0.06048842 -0.02382238 -0.0105395 -0.01063912 -0.01071899 -0.01077856\n", + " -0.01081726 -0.01083465 -0.20621357 -0.20621357 -0.01083565 -0.01083565\n", + " -0.19565571 -0.16265759 -0.12870452 -0.09399937 -0.05874512 -0.0231472\n", + " -0.19758845 -0.16425347 -0.12996305 -0.09491705 -0.05931746 -0.02337052\n", + " -0.19913769 -0.16553623 -0.13097704 -0.09565767 -0.05977969 -0.02355053\n", + " -0.20030226 -0.16650264 -0.13174231 -0.09621721 -0.0601289 -0.023686\n", + " -0.20107886 -0.16714801 -0.13225382 -0.09659125 -0.06036201 -0.02377567\n", + " -0.201464 -0.16746808 -0.13250731 -0.0967762 -0.06047657 -0.02381854]\n", + " [-0.20078674 -0.17428103 -0.14708674 -0.11931584 -0.09107902 -0.06248699\n", + " -0.03365118 -0.00468399 -0.20078674 -0.20262142 -0.20419049 -0.20549514\n", + " -0.20653488 -0.20730818 -0.20781318 -0.2080483 -0.00468399 -0.00472909\n", + " -0.00476846 -0.004802 -0.00482954 -0.00485094 -0.00486604 -0.00487474\n", + " -0.2080483 -0.18056016 -0.15238099 -0.12361519 -0.09436952 -0.06475431\n", + " -0.03488367 -0.00487474 -0.1893284 -0.1563645 -0.12247778 -0.08787247\n", + " -0.05275245 -0.01732329 -0.20152974 -0.20359843 -0.20526972 -0.2065434\n", + " -0.20741673 -0.20788637 -0.0048039 -0.00485635 -0.0048999 -0.00493429\n", + " -0.00495921 -0.00497442 -0.19615466 -0.1619874 -0.12688576 -0.09104519\n", + " -0.05466885 -0.01796812 -0.20070413 -0.20070413 -0.00497744 -0.00497744\n", + " -0.19010422 -0.19204948 -0.19362274 -0.19482286 -0.19564642 -0.1960896\n", + " -0.15700026 -0.15859759 -0.1598933 -0.16088429 -0.1615658 -0.16193328\n", + " -0.12297381 -0.12422245 -0.12523802 -0.12601654 -0.12655298 -0.12684288\n", + " -0.088228 -0.0891244 -0.0898551 -0.09041635 -0.09080384 -0.09101389\n", + " -0.05296627 -0.0535061 -0.05394701 -0.05428637 -0.05452132 -0.05464944\n", + " -0.01739439 -0.0175743 -0.01772184 -0.01783608 -0.01791601 -0.0179608 ]\n", + " [ 0.95766733 0.96245086 0.96664496 0.9701867 0.97302465 0.97511856\n", + " 0.97643916 0.97696816 0.95766733 0.96259331 0.96693812 0.97063664\n", + " 0.97363531 0.97589175 0.97737455 0.97806326 0.97696816 0.98254014\n", + " 0.9874378 0.9915972 0.99496444 0.99749587 0.99915849 0.99993052\n", + " 0.97806326 0.98350803 0.98826539 0.99227336 0.99548004 0.9978438\n", + " 0.99933381 0.99993052 0.95983895 0.96531454 0.96984084 0.97331841\n", + " 0.97567313 0.97685567 0.95989943 0.96555544 0.97027239 0.9739469\n", + " 0.97650091 0.97788117 0.9794755 0.98585963 0.99116626 0.99529202\n", + " 0.99815658 0.99970383 0.98051633 0.98673547 0.99185942 0.99578843\n", + " 0.99844594 0.99977985 0.95770236 0.95770236 0.9999289 0.9999289\n", + " 0.96207028 0.96781171 0.97259724 0.9763238 0.97891342 0.98031274\n", + " 0.96763099 0.97358492 0.97854164 0.98239859 0.98507763 0.98652493\n", + " 0.97222509 0.97834888 0.98344316 0.98740541 0.99015692 0.99164321\n", + " 0.97575346 0.98200495 0.98720313 0.99124524 0.9940519 0.9955679\n", + " 0.97814205 0.98447887 0.98974676 0.9938426 0.99668644 0.9982225\n", + " 0.97934146 0.98572085 0.99102359 0.99514634 0.99800882 0.99955494]]\n", + "DEBUG:root:radec2pix: camVec Shape: (3, 96)\n", + "DEBUG:root:radec2pix: camVec: [[-0.20607518 -0.20787446 -0.20940354 -0.21066179 -0.21164814 -0.21236112\n", + " -0.21279916 -0.21296107 -0.20607518 -0.17964954 -0.15251864 -0.12479221\n", + " -0.09658011 -0.06799262 -0.03914089 -0.01013708 -0.21296107 -0.18561075\n", + " -0.15755214 -0.12888979 -0.09972928 -0.07017922 -0.04035219 -0.01036463\n", + " -0.01013708 -0.01020871 -0.01026764 -0.01031373 -0.01034674 -0.01036638\n", + " -0.0103724 -0.01036463 -0.20680345 -0.20882603 -0.21044235 -0.21165063\n", + " -0.2124482 -0.2128323 -0.19465346 -0.16177694 -0.12795009 -0.0933751\n", + " -0.05825505 -0.022795 -0.20112996 -0.16711987 -0.13214975 -0.09641349\n", + " -0.0601111 -0.02345151 -0.01026957 -0.0103498 -0.01041065 -0.01045169\n", + " -0.01047241 -0.01047238 -0.20599275 -0.20599275 -0.01046737 -0.01046737\n", + " -0.19541667 -0.16240545 -0.12844349 -0.09373247 -0.05847519 -0.02287686\n", + " -0.19732118 -0.16397526 -0.12967711 -0.09462661 -0.05902568 -0.02308015\n", + " -0.19884383 -0.16523235 -0.13066656 -0.09534433 -0.05946678 -0.02324061\n", + " -0.19998259 -0.16617376 -0.13140827 -0.09588212 -0.05979589 -0.0233572\n", + " -0.20073433 -0.16679525 -0.13189744 -0.09623556 -0.06000982 -0.02342863\n", + " -0.20109591 -0.16709274 -0.13212968 -0.09640067 -0.06010576 -0.0234538 ]\n", + " [-0.20019593 -0.17367087 -0.14646307 -0.11868235 -0.09043873 -0.0618427\n", + " -0.03300558 -0.0040396 -0.20019593 -0.20202839 -0.20359907 -0.20490731\n", + " -0.20595196 -0.20673135 -0.20724368 -0.20748743 -0.0040396 -0.00409191\n", + " -0.0041395 -0.00418225 -0.00421998 -0.00425248 -0.00427955 -0.00430103\n", + " -0.20748743 -0.17998755 -0.15180051 -0.12303089 -0.0937848 -0.06417157\n", + " -0.03430461 -0.00430103 -0.18872819 -0.15574492 -0.12184525 -0.0872316\n", + " -0.05210744 -0.0166781 -0.20093724 -0.20300612 -0.20468137 -0.20596106\n", + " -0.20684219 -0.20732153 -0.00416252 -0.00422448 -0.00427905 -0.00432591\n", + " -0.00436469 -0.00439503 -0.19558822 -0.16140908 -0.12630166 -0.09046055\n", + " -0.05408714 -0.0173918 -0.20011322 -0.20011322 -0.00440367 -0.00440367\n", + " -0.18950334 -0.19145029 -0.19302803 -0.19423441 -0.195066 -0.19551916\n", + " -0.15638145 -0.15798254 -0.1592836 -0.16028164 -0.16097217 -0.16135064\n", + " -0.12234264 -0.1235961 -0.12461804 -0.12540495 -0.1259519 -0.1262541\n", + " -0.08758892 -0.08849133 -0.08922984 -0.08980108 -0.09020062 -0.09042422\n", + " -0.05232353 -0.0528708 -0.053321 -0.05367171 -0.05391982 -0.0540624\n", + " -0.016752 -0.01694088 -0.01709901 -0.01722548 -0.01731915 -0.01737894]\n", + " [ 0.95783851 0.96261448 0.96679818 0.97032784 0.97315256 0.9752324\n", + " 0.97653835 0.97705233 0.95783851 0.96276195 0.96710159 0.97079344\n", + " 0.97378441 0.97603235 0.97750603 0.97818516 0.97705233 0.98261483\n", + " 0.98750199 0.99165011 0.99500566 0.99752533 0.99917635 0.99993704\n", + " 0.97818516 0.98361591 0.98835782 0.99234925 0.99553873 0.99788504\n", + " 0.9993576 0.99993704 0.96000729 0.96547149 0.96998338 0.97344474\n", + " 0.97578203 0.97694639 0.96006992 0.96572084 0.97042996 0.97409503\n", + " 0.97663845 0.97800724 0.97955572 0.98592753 0.99122053 0.99533197\n", + " 0.99818215 0.99971531 0.98063234 0.98683331 0.99193725 0.99584519\n", + " 0.9984813 0.99979391 0.95787352 0.95787352 0.99993552 0.99993552\n", + " 0.9622374 0.96797276 0.97274994 0.9764667 0.97904541 0.98043302\n", + " 0.96778572 0.97373181 0.978679 0.98252511 0.98519233 0.98662722\n", + " 0.97236485 0.97847957 0.98356321 0.98751357 0.9902524 0.99172566\n", + " 0.9758766 0.9821179 0.98730436 0.99133364 0.9941269 0.9956294\n", + " 0.9782474 0.98457302 0.98982824 0.99391049 0.99674043 0.99826267\n", + " 0.97942831 0.98579563 0.99108495 0.99519355 0.99804176 0.99957386]]\n", + "DEBUG:root:radec2pix: xyfp: [[ -0.24606 31.536148 ]\n", + " [ -0.24606 27.14971943]\n", + " [ -0.24606 22.76329086]\n", + " [ -0.24606 18.37686229]\n", + " [ -0.24606 13.99043371]\n", + " [ -0.24606 9.60400514]\n", + " [ -0.24606 5.21757658]\n", + " [ -0.24606 0.831148 ]\n", + " [ -0.24606 31.536148 ]\n", + " [ -4.63248857 31.536148 ]\n", + " [ -9.01891714 31.536148 ]\n", + " [-13.40534571 31.536148 ]\n", + " [-17.79177429 31.536148 ]\n", + " [-22.17820286 31.536148 ]\n", + " [-26.56463143 31.536148 ]\n", + " [-30.95106 31.536148 ]\n", + " [ -0.24606 0.831148 ]\n", + " [ -4.63248857 0.831148 ]\n", + " [ -9.01891714 0.831148 ]\n", + " [-13.40534571 0.831148 ]\n", + " [-17.79177429 0.831148 ]\n", + " [-22.17820285 0.831148 ]\n", + " [-26.56463143 0.831148 ]\n", + " [-30.95106 0.831148 ]\n", + " [-30.95106 31.536148 ]\n", + " [-30.95106 27.14971943]\n", + " [-30.95106 22.76329086]\n", + " [-30.95106 18.37686228]\n", + " [-30.95106 13.99043371]\n", + " [-30.95106 9.60400514]\n", + " [-30.95106 5.21757657]\n", + " [-30.95106 0.831148 ]\n", + " [ -0.26106 29.623648 ]\n", + " [ -0.26106 24.247648 ]\n", + " [ -0.26106 18.87164801]\n", + " [ -0.26106 13.495648 ]\n", + " [ -0.26106 8.119648 ]\n", + " [ -0.26106 2.743648 ]\n", + " [ -2.15856 31.521148 ]\n", + " [ -7.53456 31.521148 ]\n", + " [-12.91056 31.521148 ]\n", + " [-18.28656 31.521148 ]\n", + " [-23.66256 31.521148 ]\n", + " [-29.03856 31.521148 ]\n", + " [ -2.15856 0.846148 ]\n", + " [ -7.53456 0.846148 ]\n", + " [-12.91056 0.846148 ]\n", + " [-18.28655999 0.846148 ]\n", + " [-23.66256 0.846148 ]\n", + " [-29.03856 0.846148 ]\n", + " [-30.93606 29.623648 ]\n", + " [-30.93606 24.247648 ]\n", + " [-30.93606 18.871648 ]\n", + " [-30.93606 13.495648 ]\n", + " [-30.93606 8.119648 ]\n", + " [-30.93606 2.743648 ]\n", + " [ -0.26106 31.5211DEBUG:root:radec2pix: camVec Shape: (3, 96)\n", + "48 ]\n", + " [ -0.26106 31.521148 ]\n", + " [-30.93606 0.846148 ]\n", + " [-30.93606 0.846148 ]\n", + " [ -2.15856 29.623648 ]\n", + " [ -7.53456 29.623648 ]\n", + " [-12.91056 29.623648 ]\n", + " [-18.28656 29.623648 ]\n", + " [-23.66256 29.623648 ]\n", + " [-29.03856 29.623648 ]\n", + " [ -2.15856 24.247648 ]\n", + " [ -7.53456 24.247648 ]\n", + " [-12.91056 24.247648 ]\n", + " [-18.28656 24.247648 ]\n", + " [-23.66256 24.247648 ]\n", + " [-29.03856 24.247648 ]\n", + " [ -2.15856 18.871648 ]\n", + " [ -7.53456 18.871648 ]\n", + " [-12.91056 18.871648 ]\n", + " [-18.28656 18.871648 ]\n", + " [-23.66256 18.871648 ]\n", + " [-29.03856 18.871648 ]\n", + " [ -2.15856 13.495648 ]\n", + " [ -7.53456 13.495648 ]\n", + " [-12.91056 13.495648 ]\n", + " [-18.28656 13.495648 ]\n", + " [-23.66256 13.495648 ]\n", + " [-29.03856 13.495648 ]\n", + " [ -2.15856 8.119648 ]\n", + " [ -7.53456 8.119648 ]\n", + " [-12.91056 8.119648 ]\n", + " [-18.28656 8.119648 ]\n", + " [-23.66256 8.119648 ]\n", + " [-29.03856 8.119648 ]\n", + " [ -2.15856 2.743648 ]\n", + " [ -7.53456 2.743648 ]\n", + " [-12.91056 2.743648 ]\n", + " [-18.28656 2.743648 ]\n", + " [-23.66256 2.743648 ]\n", + " [-29.03856 2.743648 ]]\n", + "DEBUG:root:radec2pix: lat: [73.24045629 74.22430856 75.14029247 75.96071497 76.65562135 77.19454225\n", + " 77.54971408 77.7004367 73.24045629 74.24542243 75.18640058 76.03561625\n", + " 76.76261911 77.33584079 77.72573436 77.90930638 77.7004367 79.29904106\n", + " 80.93014794 82.5883689 84.26818815 85.9633334 87.6639727 89.31207398\n", + " 77.90930638 79.51115144 81.14420271 82.80268356 84.48015158 86.16770212\n", + " 87.84429449 89.31207398 73.67977076 74.84367611 75.87839932 76.72967459\n", + " 77.34173684 77.66614591 73.68843996 74.88082796 75.94981974 76.8404193\n", + " 77.49482717 77.86108402 78.39292403 80.37467767 82.39987127 84.45839268\n", + " 86.53837212 88.6125356 78.60323781 80.5880931 82.61407297 84.6695731\n", + " 86.73723257 88.74545658 73.24742531 73.24742531 89.30399741 89.30399741\n", + " 74.13967578 75.38730878 76.51234476 77.4557749 78.15346667 78.54590996\n", + " 75.35848529 76.77078371 78.07006468 79.18567192 80.03121451 80.5165253\n", + " 76.44822453 78.03255968 79.52764934 80.85445453 81.89945108 82.52079347\n", + " 77.3504272 79.10147139 80.80332064 82.38074874 83.7000473 84.53866109\n", + " 78.00303059 79.89280789 81.78299446 83.6236493 85.30285158 86.52492363\n", + " 78.35049019 80.32186123 82.33135444 84.36297386 86.3856321 88.26407642]\n", + "DEBUG:root:optics_fp: sphi: [-0.99997291 -0.99996338 -0.99994778 -0.99991959 -0.99986044 -0.99970051\n", + " -0.99895447 -0.94368031 -0.99997291 -0.98933631 -0.96117727 -0.91968926\n", + " -0.86997536 -0.81667246 -0.76325315 -0.71194371 -0.94368031 -0.14118936\n", + " -0.07294272 -0.04911935 -0.03701833 -0.02969904 -0.02479556 -0.0212815\n", + " -0.71194371 -0.65723685 -0.5897386 -0.50715777 -0.40782648 -0.29161723\n", + " -0.16095117 -0.0212815 -0.99996515 -0.99994785 -0.99991356 -0.99982975\n", + " -0.99952172 -0.99545817 -0.99767076 -0.97241732 -0.92481134 -0.86396182\n", + " -0.79833456 -0.73379594 -0.29977727 -0.0892129 -0.05215778 -0.03683652\n", + " -0.02846988 -0.02319957 -0.68968657 -0.61434502 -0.51747338 -0.39570528\n", + " -0.24892141 -0.08286212 -0.99996924 -0.99996924 -0.02177659 -0.02177659\n", + " -0.99736218 -0.96891795 -0.91603668 -0.84975082 -0.77974951 -0.71225894\n", + " -0.99606031 -0.95452584 -0.88150969 -0.79657056 -0.71341443 -0.63844342\n", + " -0.99349457 -0.92779465 -0.82322292 -0.71523799 -0.62025773 -0.54160017\n", + " -0.98730506 -0.87087125 -0.71854445 -0.58917597 -0.49085898 -0.41718848\n", + " -0.96549986 -0.72638015 -0.52464293 -0.39884995 -0.31855562 -0.26409298\n", + " -0.76809376 -0.32352912 -0.19552639 -0.13933979 -0.10808594 -0.08823861]\n", + "DEBUG:root:radec2pix: camVec: [[-0.00114705 -0.00115629 -0.0011641 -0.00117048 -0.00117539 -0.00117881\n", + " -0.00118068 -0.00118097 -0.00114705 -0.03018244 -0.05910007 -0.08778716\n", + " -0.11613176 -0.14402308 -0.17135219 -0.19801388 -0.00118097 -0.03121228\n", + " -0.06111791 -0.09077999 -0.12008538 -0.14892541 -0.17719395 -0.20478471\n", + " -0.19801388 -0.19975823 -0.20124936 -0.20248221 -0.20345393 -0.20416257\n", + " -0.20460656 -0.20478471 -0.00125101 -0.00126235 -0.00127136 -0.00127799\n", + " -0.00128216 -0.00128379 -0.01381426 -0.04933618 -0.08456905 -0.11930642\n", + " -0.15334441 -0.18648385 -0.01428247 -0.05101935 -0.08744986 -0.12336368\n", + " -0.15856056 -0.19284509 -0.1987148 -0.20068229 -0.20226422 -0.20345456\n", + " -0.20424964 -0.20464672 -0.00124645 -0.00124645 -0.20469148 -0.20469148\n", + " -0.01386808 -0.04952932 -0.08490071 -0.11977552 -0.15394951 -0.18722234\n", + " -0.01400325 -0.05001432 -0.08573269 -0.12095098 -0.15546507 -0.18907339\n", + " -0.01411268 -0.05040698 -0.08640482 -0.12189811 -0.15668376 -0.19056116\n", + " -0.01419584 -0.05070556 -0.08691471 -0.12261435 -0.15760261 -0.19168088\n", + " -0.01425179 -0.05090701 -0.08725814 -0.12309542 -0.15821798 -0.19242913\n", + " -0.01427955 -0.05100809 -0.08743051 -0.12333654 -0.15852587 -0.19280295]\n", + " [ 0.20838541 0.18089194 0.15270652 0.12393558 0.09468513 0.06506336\n", + " 0.03518275 0.0051606 0.20838541 0.20823844 0.20782077 0.20713345\n", + " 0.20617803 0.20495645 0.20347155 0.2017284 0.0051606 0.00515607\n", + " 0.00514464 0.00512646 0.00510175 0.0050707 0.00503345 0.00499006\n", + " 0.2017284 0.17512925 0.14784829 0.11999042 0.09166442 0.06298098\n", + " 0.03405194 0.00499006 0.19649007 0.1623152 0.12720686 0.09136033\n", + " 0.05497503 0.01826009 0.20826196 0.20789982 0.20713224 0.20596186\n", + " 0.20439232 0.20242966 0.00526224 0.00525184 0.00523103 0.00520016\n", + " 0.00515961 0.0051096 0.19022738 0.157155 0.12316211 0.08844755\n", + " 0.05321501 0.01767079 0.20829266 0.20829266 0.0050897 0.0050897\n", + " 0.19646111 0.19611969 0.19539637 0.19429398 0.1928159 0.19096695\n", + " 0.16229116 0.16200846 0.16141067 0.16050163 0.15928501 0.15776388\n", + " 0.1271878 0.12696445 0.12649338 0.12577923 0.12482642 0.12363768\n", + " 0.0913464 0.09118412 0.09084281 0.0903271 0.0896414 0.08878838\n", + " 0.05496643 0.05486748 0.05466012 0.05434775 0.0539337 0.05341999\n", + " 0.01825699 0.0182233 0.01815347 0.01804874 0.01791034 0.01773905]\n", + " [ 0.97804612 0.9835023 0.9DEBUG:root:make_az_asym: xyp: [[32.275486 31.41357429]\n", + " [32.27502267 27.02714574]\n", + " [32.27455935 22.64071719]\n", + " [32.27409601 18.25428864]\n", + " [32.27363269 13.8678601 ]\n", + " [32.27316936 9.48143155]\n", + " [32.27270604 5.095003 ]\n", + " [32.27224271 0.70857446]\n", + " [32.275486 31.41357429]\n", + " [27.88905745 31.41403761]\n", + " [23.5026289 31.41450094]\n", + " [19.11620036 31.41496427]\n", + " [14.72977181 31.41542759]\n", + " [10.34334326 31.41589092]\n", + " [ 5.95691471 31.41635424]\n", + " [ 1.57048617 31.41681757]\n", + " [32.27224271 0.70857446]\n", + " [27.88581416 0.70903778]\n", + " [23.49938562 0.70950111]\n", + " [19.11295707 0.70996444]\n", + " [14.72652852 0.71042776]\n", + " [10.34009998 0.71089109]\n", + " [ 5.95367142 0.71135442]\n", + " [ 1.56724288 0.71181774]\n", + " [ 1.57048617 31.41681757]\n", + " [ 1.57002284 27.03038902]\n", + " [ 1.56955951 22.64396047]\n", + " [ 1.56909619 18.25753194]\n", + " [ 1.56863286 13.87110338]\n", + " [ 1.56816953 9.48467484]\n", + " [ 1.56770621 5.09824629]\n", + " [ 1.56724288 0.71181774]\n", + " [32.26028399 29.50107588]\n", + " [32.25971613 24.12507591]\n", + " [32.25914828 18.74907594]\n", + " [32.25858043 13.37307597]\n", + " [32.25801258 7.997076 ]\n", + " [32.25744472 2.62107603]\n", + " [30.36298443 31.3987763 ]\n", + " [24.98698446 31.39934415]\n", + " [19.61098448 31.399912 ]\n", + " [14.23498451 31.40047985]\n", + " [ 8.85898454 31.40104771]\n", + " [ 3.48298457 31.40161556]\n", + " [30.35974431 0.72377647]\n", + " [24.98374433 0.72434432]\n", + " [19.60774436 0.72491217]\n", + " [14.23174439 0.72548003]\n", + " [ 8.85574442 0.72604788]\n", + " [ 3.47974445 0.72661573]\n", + " [ 1.58528416 29.504316 ]\n", + " [ 1.5847163 24.12831603]\n", + " [ 1.58414845 18.75231606]\n", + " [ 1.5835806 13.37631609]\n", + " [ 1.58301275 8.00031612]\n", + " [ 1.5824449 2.62431615]\n", + " [32.26048441 31.39857587]\n", + " [32.26048441 31.39857587]\n", + " [ 1.58224447 0.72681616]\n", + " [ 1.58224447 0.72681616]\n", + " [30.36278399 29.50127631]\n", + " [24.98678403 29.50184416]\n", + " [19.61078405 29.50241201]\n", + " [14.23478409 29.50297987]\n", + " [ 8.85878411 29.50354772]\n", + " [ 3.48278414 29.50411557]\n", + " [30.36221615 24.12527634]\n", + " [24.98621618 24.12584419]\n", + " [19.6102162 24.12641204]\n", + " [14.23421623 24.1269799 ]\n", + " [ 8.85821626 24.12754775]\n", + " [ 3.48221629 24.1281156 ]\n", + " [30.36164829 18.74927637]DEBUG:root:radec2pix: fitpx: [[2135.5 4155.50000025]\n", + " [2135.5 3863.07142842]\n", + " [2135.5 3570.64285705]\n", + " [2135.5 3278.21428595]\n", + " [2135.50000001 2985.78571392]\n", + " [2135.5 2693.35714283]\n", + " [2135.49999998 2400.92857178]\n", + " [2135.49999997 2108.50000011]\n", + " [2135.5 4155.50000025]\n", + " [1843.07142855 4155.50000014]\n", + " [1550.64285713 4155.50000003]\n", + " [1258.21428573 4155.49999997]\n", + " [ 965.78571432 4155.49999994]\n", + " [ 673.35714273 4155.50000018]\n", + " [ 380.92857156 4155.49999985]\n", + " [ 88.49999978 4155.50000022]\n", + " [2135.49999997 2108.50000011]\n", + " [1843.07142854 2108.50000001]\n", + " [1550.64285742 2108.49999997]\n", + " [1258.21428585 2108.49999999]\n", + " [ 965.78571387 2108.50000002]\n", + " [ 673.35714329 2108.49999998]\n", + " [ 380.92857158 2108.5 ]\n", + " [ 88.4999998 2108.50000001]\n", + " [ 88.49999978 4155.50000022]\n", + " [ 88.50000021 3863.07142839]\n", + " [ 88.50000011 3570.64285706]\n", + " [ 88.50000015 3278.21428562]\n", + " [ 88.49999997 2985.7857143 ]\n", + " [ 88.49999979 2693.35714292]\n", + " [ 88.49999995 2400.92857144]\n", + " [ 88.4999998 2108.50000001]\n", + " [2134.5 4027.99999985]\n", + " [2134.5 3669.59999985]\n", + " [2134.49999999 3311.20000044]\n", + " [2134.5 2952.7999998 ]\n", + " [2134.5 2594.40000013]\n", + " [2134.50000001 2235.99999985]\n", + " [2007.99999998 4154.50000028]\n", + " [1649.59999995 4154.50000021]\n", + " [1291.20000012 4154.49999971]\n", + " [ 932.8 4154.5 ]\n", + " [ 574.40000006 4154.49999992]\n", + " [ 215.99999986 4154.50000015]\n", + " [2007.99999994 2109.50000002]\n", + " [1649.60000009 2109.49999999]\n", + " [1291.20000007 2109.5 ]\n", + " [ 932.80000034 2109.49999998]\n", + " [ 574.40000029 2109.49999999]\n", + " [ 216.00000015 2109.5 ]\n", + " [ 89.50000013 4027.99999988]\n", + " [ 89.50000024 3669.59999981]\n", + " [ 89.50000003 3311.19999998]\n", + " [ 89.49999973 2952.80000012]\n", + " [ 89.49999991 2594.40000002]\n", + " [ 89.50000029 2235.99999997]\n", + " [2134.5 4154.50000026]\n", + " [2134.5 4154.50000026]\n", + " [ 89.50000019 2109.49999999]\n", + " [ 89.50000019 2109.49999999]\n", + " [2008. 4027.99999998]\n", + " [1649.6 4027.99999999]\n", + " [1291.19999989 4028.00000025]\n", + " [ 932.79999995 4028.00000008]\n", + " [ 574.3999998 4028.00000025]\n", + " [ 215.99999992 4028.00000008]\n", + " [2008.00000001 3669.59999984]\n", + " [1649.60000007 3669.59999979]\n", + " [1291.19999996 3669.60000008]\n", + " [ 932.80000004 3669.59999994]\n", + " [ 574.39999995 3669.60000006]\n", + " [ 216.00000005 3669.59999995]\n", + " [2007.99999998 3311.2000002 ]\n", + " [1649.59999994 3311.20000015]\n", + " [1291.20000016 3311.19999976]\n", + " [ 932.80000015 3311.19999985]\n", + " [ 574.40000019 3311.19999985]\n", + " [ 216.00000023 3311.19999985]\n", + " [2007.99999995 2952.80000031]\n", + " [1649.60000003 2952.79999994]\n", + " [1291.19999981 2952.80000019]\n", + " [ 932.79999986 2952.8000001 ]\n", + " [ 574.39999987 2952.80000007]\n", + " [ 216.00000004 2952.79999998]\n", + " [2007.99999998 2594.40000008]\n", + " [1649.60000021 2594.39999977]\n", + " [1291.19999986 2594.40000009]\n", + " [ 932.80000028 2594.39999988]\n", + " [ 574.39999984 2594.40000006]\n", + " [ 216.00000019 2594.39999995]\n", + " [2007.99999983 2236.00000022]\n", + " [1649.60000014 2235.99999995]\n", + " [1291.19999989 2236.00000002]\n", + " [ 932.80000032 2235.99999995]\n", + " [ 574.40000023 2235.99999997]\n", + " [ 216.00000006 2235.99999999]]\n", + "DEBUG:root:cartToSphere: vec: [[-0.20629584 -0.20078674 0.95766733]\n", + " [-0.20812128 -0.17428103 0.96245086]\n", + " [-0.20967356 -0.14708674 0.96664496]\n", + " [-0.21095376 -0.11931584 0.9701867 ]\n", + " [-0.21196139 -0.09107902 0.97302465]\n", + " [-0.21269501 -0.06248699 0.97511856]\n", + " [-0.2131529 -0.03365118 0.97643916]\n", + " [-0.21333373 -0.00468399 0.97696816]\n", + " [-0.20629584 -0.20078674 0.95766733]\n", + " [-0.1798852 -0.20262142 0.96259331]\n", + " [-0.15276427 -0.20419049 0.96693812]\n", + " [-0.12504507 -0.20549514 0.97063664]\n", + " [-0.09683814 -0.20653488 0.97363531]\n", + " [-0.06825398 -0.20730818 0.97589175]\n", + " [-0.03940385 -0.20781318 0.97737455]\n", + " [-0.01040007 -0.2080483 0.97806326]\n", + " [-0.21333373 -0.00468399 0.97696816]\n", + " [-0.18599064 -0.00472909 0.98254014]\n", + " [-0.15793623 -0.00476846 0.9874378 ]\n", + " [-0.12927467 -0.004802 0.9915972 ]\n", + " [-0.10011211 -0.00482954 0.99496444]\n", + " [-0.07055816 -0.00485094 0.99749587]\n", + " [-0.04072622 -0.00486604 0.99915849]\n", + " [-0.01073294 -0.00487474 0.99993052]\n", + " [-0.01040007 -0.2080483 0.97806326]\n", + " [-0.01048759 -0.18056016 0.98350803]\n", + " [-0.01056224 -0.15238099 0.98826539]\n", + " [-0.01062379 -0.12361519 0.99227336]\n", + " [-0.01067191 -0.09436952 0.99548004]\n", + " [-0.0107063 -0.06475431 0.9978438 ]\n", + " [-0.0107267 -0.03488367 0.99933381]\n", + " [-0.01073294 -0.00487474 0.99993052]\n", + " [-0.20703611 -0.1893284 0.95983895]\n", + " [-0.20908844 -0.1563645 0.96531454]\n", + " [-0.21073192 -0.12247778 0.96984084]\n", + " [-0.21196628 -0.08787247 0.97331841]\n", + " [-0.21278893 -0.05275245 0.97567313]\n", + " [-0.21319686 -0.01732329 0.97685567]\n", + " [-0.19488162 -0.20152974 0.95989943]\n", + " [-0.16201965 -0.20359843 0.96555544]\n", + " [-0.12820231 -0.20526972 0.97027239]\n", + " [-0.09363367 -0.2065434 0.9739469 ]\n", + " [-0.05851721 -0.20741673 0.97650091]\n", + " [-0.02305821 -0.20788637 0.97788117]\n", + " [-0.20150602 -0.0048039 0.9794755 ]\n", + " [-0.16750285 -0.00485635 0.98585963]\n", + " [-0.13253465 -0.0048999 0.99116626]\n", + " [-0.0967959 -0.00493429 0.99529202]\n", + " [-0.06048842 -0.00495921 0.99815658]\n", + " [-0.02382238 -0.00497442 0.99970383]\n", + " [-0.0105395 -0.19615466 0.98051633]\n", + " [-0.01063912 -0.1619874 0.98673547]\n", + " [-0.01071899 -0.12688576 0.99185942]\n", + " [-0.01077856 -0.09104519 0.99578843]\n", + " [-0.01081726 -0.05466885 0.99844594]\n", + " [-0.01083465 -0.01796812 0.99977985]\n", + " [-0.20621357 -0.20070413 0.95770236]\n", + " [-0.20621357 -0.20070413 0.95770236]\n", + " [-0.01083565 -0.00497744 0.9999289 ]\n", + " [-0.01083565 -0.00497744 0.9999289 ]\n", + " [-0.19565571 -0.19010422 0.96207028]\n", + " [-0.16265759 -0.19204948 0.96781171]\n", + " [-0.12870452 -0.19362274 0.97259724]\n", + " [-0.09399937 -0.19482286 0.9763238 ]\n", + " [-0.05874512 -0.19564642 0.97891342]\n", + " [-0.0231472 -0.1960896 0.98031274]\n", + " [-0.19758845 -0.15700026 0.96763099]\n", + " [-0.16425347 -0.15859759 0.97358492]\n", + " [-0.12996305 -0.1598933 0.97854164]\n", + " [-0.09491705 -0.16088429 0.98239859]\n", + " [-0.05931746 -0.1615658 0.98507763]\n", + " [-0.02337052 -0.16193328 0.98652493]\n", + " [-0.19913769 -0.12297381 0.97222509]\n", + " [-0.16553623 -0.12422245 0.97834888]\n", + " [-0.13097704 -0.12523802 0.98344316]\n", + " [-0.09565767 -0.12601654 0.98740541]\n", + "DEBUG:root:radec2pix: xyfp Shape: (96, 2)\n", + "\n", + " [24.98564832 18.74984422]\n", + " [19.60964835 18.75041208]\n", + " [14.23364838 18.75097993]\n", + " [ 8.85764841 18.75154778]\n", + " [ 3.48164844 18.75211563]\n", + " [30.36108043 13.3732764 ]\n", + " [24.98508046 13.37384425]\n", + " [19.60908049 13.3744121 ]\n", + " [14.23308053 13.37497996]\n", + " [ 8.85708056 13.37554781]\n", + " [ 3.48108059 13.37611567]\n", + " [30.36051258 7.99727643]\n", + " [24.98451261 7.99784428]\n", + " [19.60851265 7.99841214]\n", + " [14.23251268 7.99897999]\n", + " [ 8.85651271 7.99954784]\n", + " [ 3.48051273 8.00011569]\n", + " [30.35994473 2.62127646]\n", + " [24.98394476 2.62184431]\n", + " [19.60794479 2.62241216]\n", + " [14.23194482 2.62298002]\n", + " [ 8.85594485 2.62354787]\n", + " [ 3.47994488 2.62411572]]\n", + " [-0.05977969 -0.12655298 0.99015692]\n", + " [-0.02355053 -0.12684288 0.99164321]\n", + " [-0.20030226 -0.088228 0.97575346]\n", + " [-0.16650264 -0.0891244 0.98200495]\n", + " [-0.13174231 -0.0898551 0.98720313]\n", + " [-0.09621721 -0.09041635 0.99124524]\n", + " [-0.0601289 -0.09080384 0.9940519 ]\n", + " [-0.023686 -0.09101389 0.9955679 ]\n", + " [-0.20107886 -0.05296627 0.97814205]\n", + " [-0.16714801 -0.0535061 0.98447887]\n", + " [-0.13225382 -0.05394701 0.98974676]\n", + " [-0.09659125 -0.05428637 0.9938426 ]\n", + " [-0.06036201 -0.05452132 0.99668644]\n", + " [-0.02377567 -0.05464944 0.9982225 ]\n", + " [-0.201464 -0.01739439 0.97934146]\n", + " [-0.16746808 -0.0175743 0.98572085]\n", + " [-0.13250731 -0.01772184 0.99102359]\n", + " [-0.0967762 -0.01783608 0.99514634]\n", + " [-0.06047657 -0.01791601 0.99800882]\n", + " [-0.02381854 -0.0179608 0.99955494]]\n", + "882709 0.99228958 0.99550658 0.99788044\n", + " 0.9993802 0.99998599 0.97804612 0.97761228 0.9763799 0.97436602\n", + " 0.9715987 0.96811684 0.96396979 0.95921643 0.99998599 0.99949948\n", + " 0.99811729 0.99585778 0.99275046 0.98883543 0.98416308 0.97879432\n", + " 0.95921643 0.96406763 0.96831791 0.97190702 0.97478415 0.97690892\n", + " 0.97825182 0.97879432 0.98050502 0.98673815 0.99187539 0.99581708\n", + " 0.99848691 0.99983245 0.97797552 0.97690512 0.97465087 0.97125985\n", + " 0.96680364 0.96137714 0.99988415 0.99868386 0.99615519 0.9DEBUG:root:cartToSphere: vec: [[-0.20607518 -0.20019593 0.95783851]\n", + " [-0.20787446 -0.17367087 0.96261448]\n", + " [-0.20940354 -0.14646307 0.96679818]\n", + " [-0.21066179 -0.11868235 0.97032784]\n", + " [-0.21164814 -0.09043873 0.97315256]\n", + " [-0.21236112 -0.0618427 0.9752324 ]\n", + " [-0.21279916 -0.03300558 0.97653835]\n", + " [-0.21296107 -0.0040396 0.97705233]\n", + " [-0.20607518 -0.20019593 0.95783851]\n", + " [-0.17964954 -0.20202839 0.96276195]\n", + " [-0.15251864 -0.20359907 0.96710159]\n", + " [-0.12479221 -0.20490731 0.97079344]\n", + " [-0.09658011 -0.20595196 0.97378441]\n", + " [-0.06799262 -0.20673135 0.97603235]\n", + " [-0.03914089 -0.20724368 0.97750603]\n", + " [-0.01013708 -0.20748743 0.97818516]\n", + " [-0.21296107 -0.0040396 0.97705233]\n", + " [-0.18561075 -0.00409191 0.98261483]\n", + " [-0.15755214 -0.0041395 0.98750199]\n", + " [-0.12888979 -0.00418225 0.99165011]\n", + " [-0.09972928 -0.00421998 0.99500566]\n", + " [-0.07017922 -0.00425248 0.99752533]\n", + " [-0.04035219 -0.00427955 0.99917635]\n", + " [-0.01036463 -0.00430103 0.99993704]\n", + " [-0.01013708 -0.20748743 0.97818923479\n", + " 0.98733577 0.98121591 0.96141873 0.96696894 0.9715556 0.97508116\n", + " 0.97747135 0.97867638 0.97806575 0.97806575 0.97881331 0.97881331\n", + " 0.98041354 0.9793283 0.97704254 0.97360345 0.96908285 0.96357637\n", + " 0.98664355 0.98552109 0.9831564 0.9795969 0.97491482 0.9692068\n", + " 0.99177825 0.99062564 0.98819716 0.98454072 0.97972882 0.97385839\n", + " 0.99571799 0.99454231 0.99206523 0.98833534 0.98342556 0.97743289\n", + " 0.99838649 0.99719508 0.99468502 0.99090557 0.98593013 0.97985577\n", + " 0.99973135 0.99853197 0.9960052 0.99220076 0.98719237 0.98107714]]\n", + "516]\n", + " [-0.01020871 -0.17998755 0.98361591]\n", + " [-0.01026764 -0.15180051 0.98835782]\n", + " [-0.01031373 -0.12303089 0.99234925]\n", + " [-0.01034674 -0.0937848 0.99553873]\n", + " [-0.01036638 -0.06417157 0.99788504]\n", + " [-0.0103724 -0.03430461 0.9993576 ]\n", + " [-0.01036463 -0.00430103 0.99993704]\n", + " [-0.20680345 -0.18872819 0.96000729]\n", + " [-0.20882603 -0.15574492 0.96547149]\n", + " [-0.21044235 -0.12184525 0.96998338]\n", + " [-0.21165063 -0.0872316 0.97344474]\n", + " [-0.2124482 -0.05210744 0.97578203]\n", + " [-0.2128323 -0.0166781 0.97694639]\n", + " [-0.19465346 -0.20093724 0.96006992]\n", + " [-0.16177694 -0.20300612 0.96572084]\n", + " [-0.12795009 -0.20468137 0.97042996]\n", + " [-0.0933751 -0.20596106 0.97409503]\n", + " [-0.05825505 -0.20684219 0.97663845]\n", + " [-0.022795 -0.20732153 0.97800724]\n", + " [-0.20112996 -0.00416252 0.97955572]\n", + " [-0.16711987 -0.00422448 0.98592753]\n", + " [-0.13214975 -0.00427905 0.99122053]\n", + " [-0.09641349 -0.00432591 0.99533197]\n", + " [-0.0601111 -0.00436469 0.99818215]\n", + " [-0.02345151 -0.00439503 0.99971531]\n", + " [-0.01026957 -0.19558822 0.98063234]\n", + " [-0.0103498 -0.16140908 0.98683331]\n", + " [-0.01041065 -0.12630166 0.99193725]\n", + " [-0.01045169 -0.09046055 0.99584519]\n", + " [-0.01047241 -0.05408714 0.9984813 ]\n", + " [-0.01047238 -0.0173918 0.99979391]\n", + " [-0.20599275 -0.20011322 0.95787352]\n", + " [-0.20599275 -0.20011322 0.95787352]\n", + " [-0.01046737 -0.00440367 0.99993552]\n", + " [-0.01046737 -0.00440367 0.99993552]\n", + " [-0.19541667 -0.18950334 0.9DEBUG:root:optics_fp: rtanth: [45.12621722 42.17029986 39.48131725 37.11732942 35.14398081 33.63010767\n", + " 32.639706 32.22108294 45.12621722 42.10767167 39.34740219 36.90340926\n", + " 34.84231167 33.23542179 32.15091525 31.64254972 32.22108294 27.83664346\n", + " 23.45294788 19.07050919 14.69045227 10.31581149 5.95852807 1.75318507\n", + " 31.64254972 27.26187195 22.88339755 18.50869029 14.14124675 9.79079234\n", + " 5.49780688 1.75318507 43.79692971 40.34599343 37.35277865 34.93513576\n", + " 33.218972 32.31623807 43.77085556 40.23738319 37.14847194 34.62331124\n", + " 32.79239466 31.77595577 30.30982943 24.93681956 19.5654525 14.19759296\n", + " 8.839633 3.53685305 29.73311087 24.36567291 19.00307614 13.6510271\n", + " 8.32988182 3.19782325 45.10500496 45.10500496 1.7737717 1.7737717\n", + " 42.42166164 38.76540449 35.54881922 32.90111338 30.96854417 29.89014797\n", + " 38.84875172 34.81931533 31.19850449 28.14447363 25.85882561 24.55705763\n", + " 35.73032881 31.30200643 27.21722925 23.65464611 20.88324085 19.24785615\n", + " 33.19472902 28.3733897DEBUG:root:mm_to_pix: fitpx: [[0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]]\n", + "622374 ]\n", + " [-0.16240545 -0.19145029 0.96797276]\n", + " [-0.12844349 -0.19302803 0.97274994]\n", + " [-0.09373247 -0.19423441 0.9764667 ]\n", + " [-0.05847519 -0.195066 0.97904541]\n", + " [-0.02287686 -0.19551916 0.98043302]\n", + " [-0.19732118 -0.15638145 0.96778572]\n", + " [-0.16397526 -0.15798254 0.97373181]\n", + " [-0.12967711 -0.1592836 0.978679 ]\n", + " [-0.09462661 -0.16028164 0.98252511]\n", + " [-0.05902568 -0.16097217 0.98519233]\n", + " [-0.02308015 -0.16135064 0.98662722]\n", + " [-0.19884383 -0.12234264 0.97236485]\n", + " [-0.16523235 -0.1235961 0.97847957]\n", + " [-0.13066656 -0.12461804 0.98356321]\n", + " [-0.09534433 -0.12540495 0.98751357]\n", + " [-0.05946678 -0.1259519 0.9902524 ]\n", + " [-0.02324061 -0.1262541 0.99172566]\n", + " [-0.19998259 -0.08758892 0.9758766 ]\n", + " [-0.16617376 -0.08849133 0.9821179 ]\n", + " [-0.13140827 -0.08922984 0.98730436]\n", + " [-0.09588212 -0.08980108 0.99133364]\n", + " [-0.05979589 -0.09020062 0.9941269 ]\n", + " [-0.0233572 -0.09042422 0.9956294 ]\n", + " [-0.20073433 -0.05232353 0.9782474 ]\n", + " [-0.16679525 -0.0528708 0.98457302]\n", + " [-0.13189744 -0.053321 0.98982824]\n", + " [-0.09623556 -0.05367171 0.99391049]\n", + " [-0.06000982 -0.05391982 0.99674043]\n", + " [-0.DEBUG:root:radec2pix: lng: [224.22465666 219.9428498 215.04979529 209.49258103 203.25301711\n", + " 196.37209253 188.97143587 181.25779309 224.22465666 228.40166279\n", + " 233.19815281 238.6792283 244.87949815 251.77642798 259.26349599\n", + " 267.13824006 181.25779309 181.45651552 181.7293675 182.12731457\n", + " 182.76188514 183.93294711 186.8134933 204.42682228 267.13824006\n", + " 266.67578867 266.03490179 265.0879329 263.54803827 260.61180811\n", + " 252.90738353 204.42682228 222.44199402 216.7905754 210.16523251\n", + " 202.51687812 193.92347078 184.64535837 225.96080389 231.48791131\n", + " 238.01293878 245.61347707 254.24497485 263.67077373 181.36567301\n", + " 181.66068982 182.11730117 182.91819426 184.68697431 191.79462375\n", + " 266.92442169 266.24228499 265.17126169 263.2483557 258.80752919\n", + " 238.9103071 224.22429417 224.22429417 204.67204832 204.67204832\n", + " 224.17550953 229.73684595 236.38729877 244.24332674 253.28700279\n", + " 263.26773103 218.4700285 223.99636381 230.89540499 239.46063162\n", + " 249.83973486 261.78766678 211.69663969 216.8854629 223.71683254\n", + " 232.7982941 244.71540545 259.48183646 203.77225927 208.15895021\n", + " 214.29602039 223.21973304 236.48809111 255.41258234 194.75709541\n", + " 197.7504966 202.19079752 209.33692857 222.08957905 246.48817507\n", + " 184.93467768 185.99075879 187.61766642 190.44256036 196.50176943\n", + " 217.01878407]\n", + "DEBUG:root:make_az_asym: xyp: shape: (96, 2)\n", + "3 23.79099004 19.61570597 16.16611847 13.98976784\n", + " 31.38353749 26.23138645 21.19074319 16.36497207 12.01581361 8.87411937\n", + " 30.4263959 25.07837271 19.74554986 14.44477252 9.23140937 4.4259617 ]\n", + "02342863 -0.0540624 0.99826267]\n", + " [-0.20109591 -0.016752 0.97942831]\n", + " [-0.16709274 -0.01694088 0.98579563]\n", + " [-0.13212968 -0.01709901 0.99108495]\n", + " [-0.09640067 -0.01722548 0.99519355]\n", + " [-0.06010576 -0.01731915 0.99804176]\n", + " [-0.0234538 -0.01737894 0.99957386]]\n", + "DEBUG:root:optics_fp: xyfp: [[ -0.230877 31.363511 ]\n", + " [ -0.230877 26.97708243]\n", + " [ -0.230877 22.59065386]\n", + " [ -0.230877 18.20422528]\n", + " [ -0.230877 13.81779671]\n", + " [ -0.230877 9.DEBUG:root:radec2pix: camVec Shape: (3, 96)\n", + "43136815]\n", + " [ -0.230877 5.04493957]\n", + " [ -0.230877 0.658511 ]\n", + " [ -0.230877 31.363511 ]\n", + " [ -4.61730557 31.363511 ]\n", + " [ -9.00373414 31.363511 ]\n", + " [-13.39016272 31.363511 ]\n", + " [-17.77659129 31.363511 ]\n", + " [-22.16301986 31.363511 ]\n", + " [-26.54944843 31.363511 ]\n", + " [-30.935877 31.363511 ]\n", + " [ -0.230877 0.658511 ]\n", + " [ -4.61730558 0.658511 ]\n", + " [ -9.00373414 0.658511 ]\n", + " [-13.39016271 0.658511 ]\n", + " [-17.77659128 0.658511 ]\n", + " [-22.16301986 0.658511 ]\n", + " [-26.54944843 0.658511 ]\n", + " [-30.935877 0.658511 ]\n", + " [-30.935877 31.363511 ]\n", + " [-30.935877 26.97708243]\n", + " [-30.935877 22.59065386]\n", + " [-30.935877 18.20422528]\n", + " [-30.935877 13.81779671]\n", + " [-30.935877 9.43136814]\n", + " [-30.935877 5.04493957]\n", + " [-30.935877 0.658511 ]\n", + " [ -0.245877 29.451011 ]\n", + " [ -0.245877 24.075011 ]\n", + " [ -0.245877 18.699011 ]\n", + " [ -0.245877 13.323011 ]\n", + " [ -0.245877 7.947011 ]\n", + " [ -0.245877 2.571011 ]\n", + " [ -2.143377 31.348511 ]\n", + " [ -7.519377 31.348511 ]\n", + " [-12.895377 31.348511 ]\n", + " [-18.271377 31.348511 ]\n", + " [-23.647377 31.348511 ]\n", + " [-29.023377 31.348511 ]\n", + " [ -2.143377 0.673511 ]\n", + " [ -7.519377 0.673511 ]\n", + " [-12.895377 0.673511 ]\n", + " [-18.271377 0.673511 ]\n", + " [-23.64737701 0.673511 ]\n", + " [-29.023377 0.673511 ]\n", + " [-30.920877 29.451011 ]\n", + " [-30.920877 24.075011 ]\n", + " [-30.920877 18.699011 ]\n", + " [-30.920877 13.323011 ]\n", + " [-30.920877 7.947011 ]\n", + " [-30.920877 2.571011 ]\n", + " [ -0.245877 31.348511 ]\n", + " [ -0.245877 31.348511 ]\n", + " [-30.920877 0.673511 ]\n", + " [-30.920877 0.673511 ]\n", + " [ -2.143377 29.451011 ]\n", + " [ -7.519377 29.451011 ]\n", + " [-12.895377 29.451011 ]\n", + " [-18.271377 29.451011 ]\n", + " [-23.647377 29.451011 ]\n", + " [-29.023377 29.451011 ]\n", + " [ -2.143377 24.075011 ]\n", + " [ -7.519377 24.075011 ]\n", + " [-12.895377 24.075011 ]\n", + " [-18.271377 24.075011 ]\n", + " [-23.647377 24.075011 ]\n", + " [-29.023377 24.075011 ]\n", + " [ -2.143377 18.699011 ]\n", + " [ DEBUG:root:radec2pix: xyfp: [[ -0.230877 31.363511 ]\n", + " [ -0.230877 26.97708243]\n", + " [ -0.230877 22.59065386]\n", + " [ -0.230877 18.20422528]\n", + " [ -0.230877 13.81779671]\n", + " [ -0.230877 9.43136815]\n", + " [ -0.230877 5.04493957]\n", + " [ -0.230877 0.658511 ]\n", + " [ -0.230877 31.363511 ]\n", + " [ -4.61730557 31.363511 ]\n", + " [ -9.00373414 31.363511 ]\n", + " [-13.39016272 31.363511 ]\n", + " [-17.77659129 31.363511 ]\n", + " [-22.16301986 31.363511 ]\n", + " [-26.54944843 31.363511 ]\n", + " [-30.935877 31.363511 ]\n", + " [ -0.230877 0.658511 ]\n", + " [ -4.61730558 0.658511 ]\n", + " [ -9.00373414 0.658511 ]\n", + " [-13.39016271 0.658511 ]\n", + " [-17.77659128 0.658511 ]\n", + " [-22.16301986 0.658511 ]\n", + " [-26.54944843 0.658511 ]\n", + " [-30.935877 0.658511 ]\n", + " [-30.935877 31.363511 ]\n", + " [-30.935877 26.97708243]\n", + " [-30.935877 22.59065386]\n", + " [-30.935877 18.20422528]\n", + " [-30.935877 13.81779671]\n", + " [-30.935877 9.43136814]\n", + " [-30.935877 5.04493957]\n", + " [-30.935877 0.658511 ]\n", + " [ -0.245877 29.451011 ]\n", + " [ -0.245877 DEBUG:root:optics_fp: cphi: [0.713738 0.76376784 0.81578691 0.86774466 0.91646952 0.95772545\n", + " 0.98678686 0.99960811 0.713738 0.66073156 0.59560321 0.51618565\n", + " 0.42082689 0.3091928 0.18318995 0.04750869 0.99960811 0.99947492\n", + " 0.99926025 0.99888104 0.99811368 0.99617106 0.98847974 0.85755676\n", + " 0.04750869 0.05514364 0.06569574 0.08122479 0.10631221 0.15355346\n", + " 0.27346048 0.85755676 0.73505851 0.79793137 0.86187328 0.92151896\n", + " 0.96912745 0.99620029 0.69214539 0.6193195 0.5260996 0.40919818\n", + " 0.26810473 0.10749625 0.99954227 0.99932373 0.99890128 0.99791251\n", + " 0.99460641 0.9658178 0.05106448 0.06231447 0.07990085 0.11122898\n", + " 0.18228563 0.4748373 0.71374111 0.71374111 0.85606035 0.85606035\n", + " 0.71415887 0.64283622 0.5497737 0.43061783 0.28389471 0.11427866\n", + " 0.7798406 0.71568995 0.62643496 0.50339666 0.33999355 0.13909785\n", + " 0.84790325 0.79611069 0.71806949 0.59894626 0.42100084 0.17746713\n", + " 0.9126717 0.87828385 0.82148283 0.72227275 0.54384668 0.24417059\n", + " 0.96534426 0.95000384 0.92228562 0.86574653 0.73169559 0.38493034\n", + " 0.9957126 0.99368273 0.9897899 0.98083551 0.95239474 0.77179741]\n", + "DEBUG:root:radec2pix: lng: [224.17091663 219.87741809 214.97008665 209.39598188 203.1373574\n", + " 196.23634076 188.81644128 181.08669631 224.17091663 228.3555716\n", + " 233.16265584 238.65783928 244.87601329 251.7942959 259.30486084\n", + " 267.20296141 181.08669631 181.26291687 181.50503492 181.85849799\n", + " 182.42298774 183.46757199 186.05387592 202.53707914 267.20296141\n", + " 266.75372148 266.13046308 265.20807536 263.70434622 260.82362196\n", + " 253.17669924 202.53707914 222.38348083 216.71601144 210.07066421\n", + " 202.39896016 193.78096287 184.48069147 225.9100405 231.44842444\n", + " 237.98973756 245.61222365 254.27065244 263.72553361 181.18560606\n", + " 181.44802269 181.85460599 182.56904059 184.15297918 190.61463228\n", + " 266.99438373 266.33112836 265.28794249 263.40934603 259.04191913\n", + " 238.94596845 224.17054014 224.17054014 202.81670057 202.81670057\n", + " 224.11986404 229.69237658 236.35966367 244.23925438 253.312778\n", + " 263.32641007 218.39761245 223.93365474 230.85002743 239.44337044\n", + " 249.86289594 261.85943825 211.60273873 216.79700073 223.64273186\n", + " 232.75457852 244.72618682 259.56986466 203.65258863 208.03632189\n", + " 214.17758593 223.12426077 236.4587659 255.51668541 194.60966243\n", + " 197.58758667 202.01156736 209.14892478 221.94021993 246.56988658\n", + " 184.76194605 185.78921163 187.37371211 190.13104958 196.0740482\n", + " 216.53792504]\n", + "DEBUG:root:radec2pix: lat: [73.26908943 74.24907619 75.16003276 75.97420276 76.66164507 77.19203919\n", + " 77.53795274 77.67919539 73.26908943 74.27917066 75.22575502 76.08096918\n", + " 76.81416078 77.39343277 77.78879656 77.97677996 77.67919539 79.27760057\n", + " 80.9086962 82.56716816 84.24766937 85.94438651 87.64930302 89.3245763\n", + " 77.97677996 79.57988268 81.21386953 82.87289707 84.55034798 86.23677698\n", + " 87.90848861 89.3245763 73.70687233 74.86526918 75.89266936 76.7347974\n", + " 77.33616788 77.64902834 73.71922865 74.91822462 75.99447399 76.89265343\n", + " 77.55435927 77.92679672 78.37161008 80.3532483 82.37868114 84.43807116\n", + " 86.5205023 88.60550058 78.67128345 80.65746446 82.68422414 84.73967937\n", + " 86.80532112 88.79773368 73.27606371 73.27606371 89.31677804 89.31677804\n", + " 74.16894713 75.42332545 76.55590489 77.50736059 78.21290493 78.61205636\n", + " 75.38223897 76.80151051 78.10907648 79.23409871 80.08944165 80.58344411\n", + " 76.46449862 78.05559614 79.5593541 80.89695848 81.95437214 82.58757556\n", + " 77.35718097 79.11401738 80.82399404 82.41287861 83.74766412 84.60361539\n", + " 77.99846994 79.89205969 81.78816951 83.63850339 85.33442441 86.58329889\n", + " 78.33357011 80.30591073 82.31728996 84.35260664 86.38369379 88.29053235]\n", + "DEBUG:root:fitpix2pix: ccdpx: shape: (96, 2)\n", + "DEBUG:root:fitpix2pix: visCut: True\n", + "DEBUG:root:optics_fp: sphi: [0.70041278 0.64549104 0.5783526 0.49701026 0.40010451 0.28768378\n", + " 0.16202376 0.02799345 0.70041278 0.75062228 0.80327879 0.85647672\n", + " 0.90714096 0.95099938 0.98307754 0.99887082 0.02799345 0.03240177\n", + " 0.03845716 0.04729349 0.06139281 0.08742554 0.15135324 0.51438935\n", + " 0.99887082 0.99847843 0.9978397 0.99669581 0.9943328 0.98814034\n", + " 0.96188324 0.51438935 0.67800368 0.60274831 0.5071237 0.38833338\n", + " 0.24656029 0.0870918 0.7217581 0.78513907 0.85042296 0.91244553\n", + " 0.96338977 0.99420549 0.03025321 0.03677059 0.04686391 0.06458036\n", + " 0.10372123 0.25922188 0.99869536 0.99805657 0.99680282 0.9937948\n", + " 0.98324562 0.8800736 0.70040962 0.70040962 0.51687588 0.51687588\n", + " 0.69998365 0.76600365 0.83531364 0.90253437 0.95885546 0.99344873\n", + " 0.62597814 0.69841814 0.77947369 0.86405544 0.94042777 0.99027864\n", + " 0.530151 0.60515103 0.69597142 0.80078922 0.90706025 0.98412673\n", + " 0.40869348 0.47813961 0.57023325 0.69160833 0.8391846 0.9697323\n", + " 0.2609798 0.31223822 0.38650903 0.50048271 0.68163155 0.92294563\n", + " 0.09250092 0.11222584 0.14253407 0.19483765 0.3048676 0.63586851]\n", + "DEBUG:root:radec2pix: lat: [73.30319327 74.28364829 75.19434757 76.00760673 76.6934474 77.22149469\n", + " 77.56431546 77.70181842 73.30319327 74.31487163 75.26252869 76.11836609\n", + " 76.85166299 77.43039612 77.8244634 78.01035447 77.70181842 79.30062777\n", + " 80.93200296 82.59063863 84.2712796 85.96832552 87.67438557 89.35703566\n", + " 78.01035447 79.61411514 81.24861046 82.90802789 84.58587071 86.27294722\n", + " 87.94616945 89.35703566 73.74128804 74.89975016 75.92621516 76.76637844\n", + " 77.36466213 77.67335289 73.7541097 74.95468773 76.03182731 76.93013306\n", + " 77.59097642 77.96138218 78.39443735 80.37649363 82.40216048 84.46173597\n", + " 86.54472647 88.63280521 78.70517127 80.69206097 82.71932817 84.7752745\n", + " 86.84188191 88.83673743 73.31017726 73.31017726 89.34933673 89.34933673\n", + " 74.20408349 75.46003419 76.59358943 77.54526674 78.24998117 78.64701061\n", + " 75.41740928 76.83842002 78.14733268 79.2729755 80.12769991 80.61933545\n", + " 76.49875662 78.09183026 79.59737911 80.93621381 81.99355302 82.62428133\n", + " 77.38945666 79.14833894 80.86043698 82.45133489 83.78724838 84.64121324\n", + " 78.02753384 79.92284226 81.82091734 83.6737055 85.37260957 86.62213831\n", + " 78.35820379 80.33138971 82.34363217 84.38015735 86.41373806 88.32724747]\n", + "DEBUG:root:radec2pix: xyfp: [[32.275486 31.41357429]\n", + " [32.27502267 27.02714574]\n", + " [32.27455935 22.64071719]\n", + " [32.27409601 18.25428864]\n", + " [32.27363269 13.8678601 ]\n", + " [32.27316936 9.48143155]\n", + " [32.27270604 5.095003 ]\n", + " [32.27224271 0.70857446]\n", + " [32.275486 31.41357429]\n", + " [27.88905745 31.41403761]\n", + " [23.5026289 31.41450094]\n", + " [19.11620036 31.41496427]\n", + " [14.72977181 31.41542759]\n", + " [10.34334326 31.41589092]\n", + " [ 5.95691471 31.41635424]\n", + " [ 1.57048617 31.41681757]\n", + " [32.27224271 0.70857446]\n", + " [27.88581416 0.70903778]\n", + " [23.49938562 0.70950111]\n", + " [19.11295707 0.70996444]\n", + " [14.72652852 0.71042776]\n", + " [10.34009998 0.71089109]\n", + " [ 5.95367142 0.71135442]\n", + " [ 1.56724288 0.71181774]\n", + " [ 1.57048617 31.41681757]\n", + " [ 1.57002284 27.03038902]\n", + " [ 1.56955951 22.64396047]\n", + " [ 1.56909619 18.25753194]\n", + " [ 1.56863286 13.87110338]\n", + " [ 1.56816953 9.48467484]\n", + " [ 1.56770621 5.09824629]\n", + " [ 1.56724288 0.71181774]\n", + " [32.26028399 29.50107588]\n", + " [32.25971613 24.12507591]\n", + " [32.25914828 18.74907594]\n", + " [32.25858043 13.37307597]\n", + " [32.25801258 7.997076 ]\n", + " [32.25744472 2.62107603]\n", + " [30.36298443 31.3987763 ]\n", + " [24.98698446 31.39934415]\n", + " [19.61098448 31.399912 ]\n", + " [14.23498451 31.40047985]\n", + " [ 8.85898454 31.40104771]\n", + " [ 3.48298457 31.40161556]\n", + " [30.35974431 0.72377647]\n", + " [24.98374433 0.72434432]\n", + " [19.60774436 0.72491217]\n", + " [14.23174439 0.72548003]\n", + " [ 8.85574442 0.72604788]\n", + " [ 3.47974445 0.72661573]\n", + " [ 1.58528416 29.504316 ]\n", + " [ 1.5847163 24.12831603]\n", + " [ 1.58414845 18.75231606]\n", + " [ 1.5835806 13.37631609]\n", + " [ 1.58301275 8.00031612]\n", + " [ 1.5824449 2.62431615]\n", + " [32.26048441 31.39857587]\n", + " [32.26048441 31.39857587]\n", + " [ 1.58224447 0.72681616]\n", + " [ 1.58224447 0.72681616]\n", + " [30.36278399 29.50127631]\n", + " [24.98678403 29.50184416]\n", + " [19.61078405 29.50241201]\n", + " [14.23478409 29.50297987]\n", + " [ 8.85878411 29.50354772]\n", + " [ 3.48278414 29.50411557]\n", + " [30.36221615 24.12527634]\n", + " [24.98621618 24.12584419]\n", + " [19.6102162 24.12641204]\n", + " [14.23421623 24.1269799 ]\n", + " [ 8.85821626 24.12754775]\n", + " [ 3.48221629 24.1281156 ]\n", + " [30.36164829 18.74927637]\n", + " [24.98564832 18.74984422]\n", + " [19.60964835-7.519377 18.699011 ]\n", + " [-12.895377 18.699011 ]\n", + " [-18.271377 18.699011 ]\n", + " [-23.647377 18.699011 ]\n", + " [-29.023377 18.699011 ]\n", + " [ -2.143377 13.323011 ]\n", + " [ -7.519377 13.323011 ]\n", + " [-12.895377 13.323011 ]\n", + " [-18.271377 13.323011 ]\n", + " [-23.647377 13.323011 ]\n", + " [-29.023377 13.323011 ]\n", + " [ -2.143377 7.947011 ]\n", + " [ -7.519377 7.947011 ]\n", + " [-12.895377 7.947011 ]\n", + " [-18.271377 7.947011 ]\n", + " [-23.647377 7.947011 ]\n", + " [-29.023377 7.947011 ]\n", + " [ -2.143377 2.571011 ]\n", + " [ -7.519377 2.571011 ]\n", + " [-12.895377 2.571011 ]\n", + " [-18.271377 2.571011 ]\n", + " [-23.647377 2.571011 ]\n", + " [-29.023377 2.571011 ]]\n", + " 18.75041208]\n", + " [14.23364838 18.75097993]\n", + " [ 8.85764841 18.75154778]\n", + " [ 3.48164844 18.75211563]\n", + " [30.36108043 13.3732764 ]\n", + " [24.98508046 13.37384425]\n", + " [19.60908049 13.3744121 ]\n", + " [14.23308053 13.37497996]\n", + " [ 8.85708056 13.37554781]\n", + " [ 3.48108059 13.37611567]\n", + " [30.36051258 7.99727643]\n", + " [24.98451261 7.99784428]\n", + " [19.60851265 7.99841214]\n", + " [14.23251268 7.99897999]\n", + " [ 8.85651271 7.99954784]\n", + " [ 3.48051273 8.00011569]\n", + " [30.35994473 2.62127646]\n", + " [24.98394476 2.62184431]\n", + " [19.60794479 2.62241216]\n", + " [14.23194482 2.62298002]\n", + " [ 8.85594485 2.62354787]\n", + " [ 3.47994488 2.62411572]]\n", + "DEBUG:root:optics_fp: xyfp shape: (96, 2)\n", + "DEBUG:root:radec2pix: xyfp Shape: (96, 2)\n", + "DEBUG:root:optics_fp: xyfp: [[-32.208296 -31.60697943]\n", + " [-32.20831882 -27.22055086]\n", + " [-32.20834163 -22.83412229]\n", + " [-32.20836444 -18.44769372]\n", + " [-32.20838725 -14.06126515]\n", + " [-32.20841007 -9.67483658]\n", + " [-32.20843288 -5.288408 ]\n", + " [-32.2084557 -0.90197943]\n", + " [-32.208296 -31.60697943]\n", + " [-27.82186743 -31.60695662]\n", + " [-23.43543886 -31.60693381]\n", + " [-19.04901029 -31.60691099]\n", + " [-14.66258171 -31.60688818]\n", + " [-10.27615314 -31.60686536]\n", + " [ -5.88972457 -31.60684255]\n", + " [ -1.503296 -31.60681974]\n", + " [-32.2084557 -0.90197943]\n", + " [-27.82202712 -0.90195662]\n", + " [-23.43559855 -0.9019338 ]\n", + " [-19.04916999 -0.90191099]\n", + " [-14.66274141 -0.90188818]\n", + " [-10.27631284 -0.90186536]\n", + " [ -5.88988428 -0.90184255]\n", + " [ -1.5034557 -0.90181973]\n", + " [ -1.503296 -31.60681974]\n", + " [ -1.50331881 -27.22039116]\n", + " [ -1.50334163 -22.83396259]\n", + " [ -1.50336444 -18.44753402]\n", + " [ -1.50338726 -14.06110544]\n", + " [ -1.50341007 -9.67467688]\n", + " [ -1.50343288 -5.2882483 ]\n", + " [ -1.5034557 -0.90181973]\n", + " [-32.19330594 -29.69447935]\n", + " [-32.19333391 -24.31847935]\n", + " [-32.19336187 -18.94247936]\n", + " [-32.19338983 -13.56647936]\n", + " [-32.19341779 -8.19047935]\n", + " [-32.19344575 -2.81447935]\n", + " [-30.29579608 -31.59196949]\n", + " [-24.91979608 -31.59194152]\n", + " [-19.54379608 -31.59191356]\n", + " [-14.16779608 -31.5918856 ]\n", + " [ -8.79179608 -31.59185764]\n", + " [ -3.41579608 -31.59182968]\n", + " [-30.29595562 -0.91696949]\n", + " [-24.91995562 -0.91694153]\n", + " [-19.54395562 -0.91691356]\n", + " [-14.16795562 -0.9168856 ]\n", + " [ -8.79195562 -0.91685764]\n", + " [ -3.41595563 -0.91682968]\n", + " [ -1.51830595 -29.69431981]\n", + " [ -1.51833391 -24.31831981]\n", + " [ -1.51836187 -18.94231981]\n", + " [ -1.51838983 -13.56631981]\n", + " [ -1.51841779 -8.19031981]\n", + " [ -1.51844575 -2.81431982]\n", + " [-32.19329608 -31.59197936]\n", + " [-32.19329608 -31.59197936]\n", + " [ -1.51845562 -0.91681981]\n", + " [ -1.51845562 -0.91681981]\n", + " [-30.29580595 -29.69446949]\n", + " [-24.91980594 -29.69444152]\n", + " [-19.54380595 -29.69441356]\n", + " [-14.16780595 -29.69438561]\n", + " [ -8.79180595 -29.69435764]\n", + " [ -3.41580595 -29.69432968]\n", + " [-30.29583391 -24.31846949]\n", + " [-24.91983391 -24.31844152]\n", + " [-19.54383391 -24.31841356]\n", + " [-14.16783391 -24.31838561]\n", + " [ -8.79183391 -24.31835764]\n", + " [ -3.41583391 -24.31832968]\n", + " [-30.29586187 -18.94246949]\n", + " [-24.91986187 -18.94244153]\n", + " [-19.54386187 -18.94241356]\n", + " [-14.16786187 -18.94238561]\n", + " [ -8.79186187 -18.94235764]\n", + " [ -3.41586187 -18.94232969]\n", + " [-30.29588983 -13.56646949]\n", + " [-24.91988983 -13.56644152]\n", + " [-19.54388984 -13.56641357]\n", + " [-14.16788983 -13.5663856 ]\n", + " [ -8.79188983 -13.56635764]\n", + " [ -3.41588983 -13.56632968]\n", + " [-30.29591779 -8.19046949]\n", + " [-24.91991779 -8.19044152]\n", + " [-19.54391779 -8.19041356]\n", + " [-14.16791779 -8.1903856 ]\n", + " [ -8.79191779 -8.19035764]\n", + " [ -3.41591779 -8.19032968]\n", + " [-30.29594575 -2.81446949]\n", + " [-24.91994576 -2.81444153]\n", + " [-19.54394575 -2.81441356]\n", + " [-14.16794576 -2.8143856 ]\n", + " [ -8.79194575 -2.81435764]\n", + " [ -3.41594575 -2.81432968]]\n", + "DEBUG:root:optics_fp: xyfp shape: (96, 2)\n", + "DEBUG:root:cartToSphere: vec: [[-0.00114705 0.20838541 0.97804612]\n", + " [-0.00115629 0.18089194 0.9835023 ]\n", + " [-0.0011641 0.15270652 0.9882709 ]\n", + " [-0.00117048 0.12393558 0.99228958]\n", + " [-0.00117539 0.09468513 0.99550658]\n", + " [-0.00117881 0.06506336 0.99788044]\n", + " [-0.00118068 0.03518275 0.9993802 ]\n", + " [-0.00118097 0.0051606 0.99998599]\n", + " [-0.00114705 0.20838541 0.97804612]\n", + " [-0.03018244 0.20823844 0.97761228]\n", + " [-0.05910007 0.20782077 0.9763799 ]\n", + " [-0.08778716 0.20713345 0.97436602]\n", + " [-0.11613176 0.20617803 0.9715987 ]\n", + " [-0.14402308 0.20495645 0.96811684]\n", + " [-0.17135219 0.20347155 0.96396979]\n", + " [-0.19801388 0.2017284 0.95921643]\n", + " [-0.00118097 0.0051606 0.99998599]\n", + " [-0.03121228 0.00515607 0.99949948]\n", + " [-0.06111791 0.00514464 0.99811729]\n", + " [-0.09077999 0.00512646 0.99585778]\n", + " [-0.12008538 0.00510175 0.99275046]\n", + " [-0.14892541 0.0050707 0.98883543]\n", + " [-0.17719395 0.00503345 0.98416308]\n", + " [-0.20478471 0.00499006 0.97879432]\n", + " [-0.19801388 0.2017284 0.95921643]\n", + " [-0.19975823 0.17512925 0.96406763]\n", + " [-0.20124936 0.14784829 0.96831791]\n", + " [-0.20248221 0.11999042 0.97190702]\n", + " [-0.20345393 0.09166442 0.97478415]\n", + " [-0.20416257 0.06298098 0.97690892]\n", + " [-0.20460656 0.03405194 0.97825182]\n", + " [-0.20478471 0.00499006 0.97879432]\n", + " [-0.00125101 0.19649007 0.98050502]\n", + " [-0.00126235 0.1623152 0.98673815]\n", + " [-0.00127136 0.12720686 0.99187539]\n", + " [-0.00127799 0.09136033 0.99581708]\n", + " [-0.00128216 0.05497503 0.99848691]\n", + " [-0.00128379 0.01826009 0.99983245]\n", + " [-0.01381426 0.20826196 0.97797552]\n", + " [-0.04933618 0.20789982 0.97690512]\n", + " [-0.08456905 0.20713224 0.97465087]\n", + " [-0.11930642 0.20596186 0.97125985]\n", + " [-0.15334441 0.20439232 0.96680364]\n", + " [-0.18648385 0.20242966 0.96137714]\n", + " [-0.01428247 0.00526224 0.99988415]\n", + " [-0.05101935 0.00525184 0.99868386]\n", + " [-0.08744986 0.00523103 0.99615519]\n", + " [-0.12336368 0.00520016 0.9923479 ]\n", + " [-0.15856056 0.00515961 0.98733577]\n", + " [-0.19284509 0.0051096 0.98121591]\n", + " [-0.1987148 0.19022738 0.96141873]\n", + " [-0.20068229 0.157155 0.96696894]\n", + " [-0.20226422 0.12316211 0.9715556 ]\n", + " [-0.20345456 0.08844755 0.97508116]\n", + " [-0.20424964 0.05321501 0.97747135]\n", + " [-0.20464672 0.01767079 0.97867638]\n", + " [-0.00124645 0.20829266 0.97806575]\n", + " [-0.00124645 0.20829266 0.97806575]\n", + " [-0.20469148 0.0050897 0.97881331]\n", + " [-0.20469148 0.0050897 0.97881331]\n", + " [-0.01386808 0.19646111 0.98041354]\n", + " [-0.04952932 0.19611969 0.9793283 ]\n", + " [-0.08490071 0.19539637 0.97704254]\n", + " [-0.11977552 0.19429398 0.97360345]\n", + " [-0.15394951 0.1928159 0.96908285]\n", + " [-0.18722234 0.19096695 0.96357637]\n", + " [-0.01400325 0.16229116 0.98664355]\n", + " [-0.05001432 0.16200846 0.98552109]\n", + " [-0.08573269 0.16141067 0.9831564 ]\n", + " [-0.12095098 0.16050163 0.9795969 ]\n", + " [-0.15546507 0.15928501 0.97491482]\n", + " [-0.18907339 0.15776388 0.9692068 ]\n", + " [-0.01411268 0.1271878 0.99177825]\n", + " [-0.05040698 0.12696445 0.99062564]\n", + " [-0.08640482 0.12649338 0.98819716]\n", + " [-0.12189811 0.12577923 0.98454072]\n", + " [-0.15668376 0.12482642 0.97972882]\n", + " [-0.19056116 0.12363768 0.97385839]\n", + " [-0.01419584 0.0913464 0.99571799]\n", + " [-0.05070556 0.09118412 0.99454231]\n", + " [-0.08691471 0.09084281 0.99206523]\n", + " [-0.12261435 0.0903271 0.98833534]\n", + " [-0.15760261 0.0896414 0.98342556]\n", + " [-0.19168088 0.08878838 0.97743289]\n", + " [-0.01425179 0.05496643 0.99838649]\n", + " [-0.05090701 0.05486748 0.99719508]\n", + " [-0.08725814 0.05466012 0.99468502]\n", + " [-0.12309542 0.05434775 0.99090557]\n", + " [-0.15821798 0.0539337 0.98593013]\n", + " [-0.19242913 0.05341999 0.97985577]\n", + " [-0.01427955 0.01825699 0.99973135]\n", + " [-0.05100809 0.0182233 0.99853197]\n", + " [-0.08743051 0.01815347 0.9960052 ]\n", + " [-0.12333654 0.01804874 0.99220076]\n", + " [-0.15852587 0.01791034 0.98719237]\n", + " [-0.19280295 0.01773905 0.98107714]]\n", + "DEBUG:root:make_az_asym: xyp: [[ -0.230877 31.363511 ]\n", + " [ -0.230877 26.97708243]\n", + " [ -0.230877 22.59065386]\n", + " [ -0.230877 18.20422528]\n", + " [ -0.230877 13.81779671]\n", + " [ -0.230877 9.43136815]\n", + " [ -0.230877 5.04493957]\n", + " [ -0.230877 0.658511 ]\n", + " [ -0.230877 31.363511 ]\n", + " [ -4.61730557 31.363511 ]\n", + " [ -9.00373414 31.363511 ]\n", + " [-13.39016272 31.363511 ]\n", + " [-17.77659129 31.363511 ]\n", + " [-22.16301986 31.363511 ]\n", + " [-26.54944843 31.363511 ]\n", + " [-30.935877 31.363511 ]\n", + " [ -0.230877 0.658511 ]\n", + " [ -4.61730558 0.658511 ]\n", + " [ -9.00373414 0.658511 ]\n", + " [-13.39016271 0.658511 ]\n", + " [-17.77659128 0.658511 ]\n", + " [-22.16301986 0.658511 ]\n", + " [-26.54944843 0.658511 ]\n", + " [-30.935877 0.658511 ]\n", + " [-30.935877 31.363511 ]\n", + " [-30.935877 26.97708243]\n", + " [-30.935877 22.59065386]\n", + " [-30.935877 18.20422528]\n", + " [-30.935877 13.81779671]\n", + " [-30.935877 9.43136814]\n", + " [-30.935877 5.04493957]\n", + " [-30.935877 0.658511 ]\n", + " [ -0.245877 29.451011 ]\n", + " [ -0.245877 24.075011 ]\n", + " [ -0.245877 18.6990 24.075011 ]\n", + " [ -0.245877 18.699011 ]\n", + " [ -0.245877 13.323011 ]\n", + " [ -0.245877 7.947011 ]\n", + " [ -0.245877 2.571011 ]\n", + " [ -2.143377 31.348511 ]\n", + " [ -7.519377 31.348511 ]\n", + " [-12.895377 31.348511 ]\n", + " [-18.271377 31.348511 ]\n", + " [-23.647377 31.348511 ]\n", + " [-29.023377 31.348511 ]\n", + " [ -2.143377 0.673511 ]\n", + " [ -7.519377 0.673511 ]\n", + " [-12.895377 0.673511 ]\n", + " [-18.271377 0.673511 ]\n", + " [-23.64737701 0.673511 ]\n", + " [-29.023377 0.673511 ]\n", + " [-30.920877 29.451011 ]\n", + " [-30.920877 24.075011 ]\n", + " [-30.920877 18.699011 ]\n", + " [-30.920877 13.323011 ]\n", + " [-30.920877 7.947011 ]\n", + " [-30.920877 2.571011 ]\n", + " [ -0.245877 31.348511 ]\n", + " [ -0.245877 31.348511 ]\n", + " [-30.920877 0.673511 ]\n", + " [-30.920877 0.673511 ]\n", + " [ -2.143377 29.451011 ]\n", + " [ -7.519377 29.451011 ]\n", + " [-12.895377 29.451011 ]\n", + " [-18.271377 29.451011 ]\n", + " [-23.647377 29.451011 ]\n", + " [-29.023377 29.451011 ]\n", + " [ -2.143377 24.075011 ]\n", + " [ -7.519377 24.075011 ]\n", + " [-12.895377 24.075011 ]\n", + " [-18.271377 24.075011 ]\n", + " [-23.647377 24.075011 ]\n", + " [-29.023377 24.075011 ]\n", + " [ -2.143377 18.699011 ]\n", + " [ -7.519377 18.699011 ]\n", + " [-12.895377 18.699011 ]\n", + " [-18.271377 18.699011 ]\n", + " [-23.647377 18.699011 ]\n", + " [-29.023377 18.699011 ]\n", + " [ -2.143377 13.323011 ]\n", + " [ -7.519377 13.323011 ]\n", + " [-12.895377 13.323011 ]\n", + " [-18.271377 13.323011 ]\n", + " [-23.647377 13.323011 ]\n", + " [-29.023377 13.323011 ]\n", + " [ -2.143377 7.947011 ]\n", + " [ -7.519377 7.947011 ]\n", + " [-12.895377 7.947011 ]\n", + " [-18.271377 7.947011 ]\n", + " [-23.647377 7.947011 ]\n", + " [-29.023377 7.947011 ]\n", + " [ -2.143377 2.571011 ]\n", + " [ -7.519377 2.571011 ]\n", + " [-12.895377 2.571011 ]\n", + " [-18.271377 2.571011 ]\n", + " [-23.647377 2.571011 ]\n", + " [-29.023377 2.571011 ]]\n", + "DEBUG:root:optics_fp: rtanth: [45.0390902 42.09683712 39.42396804 37.07878541 35.12698266 33.63710755\n", + " 32.6724136 32.28002056 45.0390902 42.00763364 39.23320577 36.77402747\n", + " 34.69719395 33.07480842 31.97611838 31.45604637 32.28002056 27.89482687\n", + " 23.51009392 19.1261386 14.74365456 10.36450837 5.99601772 1.72131774\n", + " 31.45604637 27.07594694 22.69829207 18.32483384 13.95951711 9.61343916\n", + " 5.33383708 1.72131774 43.71543665 40.28285706 37.31193504 34.92069834\n", + " 33.23450917 32.36375719 43.67830098 40.1281473 37.02087501 34.47644006\n", + " 32.62678968 31.59418683 30.3683705 24.99424245 19.62114004 14.2502235\n", + " 8.88545749 3.55479843 29.54687443 24.18030108 18.81910954 13.46972753\n", + " 8.15542687 3.06450112 45.0178789 45.0178789 1.74119478 1.74119478\n", + " 42.33466612 38.66132674 35.42562866 32.75751668 30.80482728 29.70896533\n", + " 38.78006096 34.73279944 31.09090442 28.01292685 25.70226752 24.37810068\n", + " 35.68424094 31.23842634 27.13146257 23.54136773 20.73833358 19.07259071\n", + " 33.17589074 28.33926527 23.73585762 19.53127415 16.04223037 13.82166388\n", + " 31.39613279 26.23340206 21.17707168 16.3263008 11.93442847 8.72443809\n", + " 30.47289508 25.12113778 19.7825313 14.471637 9.23638255 4.35844005]\n", + "DEBUG:root:radec2pix: lng: [ 90.31538026 90.36623882 90.43676438 90.5410988 90.71121584\n", + " 91.03796151 91.92203204 102.88976492 90.31538026 98.24711833\n", + " 105.87469321 112.96816895 119.3908045 125.09574844 130.10218059\n", + " 134.46760759 102.88976492 170.61981741 175.18843619 176.76786642\n", + " 177.56728748 178.0499121 178.37286738 178.60412954 134.46760759\n", + " 138.7587586 143.69705248 149.3491301 155.74646239 162.85581906\n", + " 170.55107093 178.60412954 90.36478543 90.44558973 90.57261901\n", + " 90.80142559 91.33604138 94.02159324 93.79493665 103.34977578\n", + " 112.20947139 120.08219547 126.87889854 132.65213472 159.7741798\n", + " 174.12277646 176.57679256 177.5862344 178.13623505 178.48225333\n", + " 136.25009833 141.93538112 148.66205842 156.50402904 165.39685811\n", + " 175.06487905 90.34286209 90.34286209 178.57562014 178.57562014\n", + " 94.0377805 104.17347615 113.48518905 121.65239591 128.60482826\n", + " 134.43270854 94.93153704 107.15620301 117.97484261 127.00098521\n", + " 134.30466928 140.15819331 96.33160595 111.65389266 124.33611449\n", + " 134.10224284 141.45645803 147.02415603 98.83348775 119.07751066\n", + " 133.73407847 143.6218029 150.36959526 155.14598444 104.53566541\n", + " 132.85570308 147.93620706 156.17810512 161.17666862 164.48488524\n", + " 128.03043433 160.3400738 168.27016728 171.67458296 173.55402386\n", + " 174.74323713]\n", + "DEBUG:root:make_az_asym: xyp: [[-32.208296 -31.60697943]\n", + " [-32.20831882 -27.22055086]\n", + " [-32.20834163 -22.83412229]\n", + " [-32.20836444 -18.44769372]\n", + " [-32.20838725 -14.06126515]\n", + " [-32.20841007 -9.67483658]\n", + " [-32.20843288 -5.288408 ]\n", + " [-32.2084557 -0.90197943]\n", + " [-32.208296 -31.60697943]\n", + " [-27.82186743 -31.60695662]\n", + " [-23.43543886 -31.60693381]\n", + " [-19.04901029 -31.60691099]\n", + " [-14.66258171 -31.60688818]\n", + " [-10.27615314 -31.60686536]\n", + " [ -5.88972457 -31.60684255]\n", + " [ -1.503296 -31.60681974]\n", + " [-32.2084557 -0.90197943]\n", + " [-27.82202712 -0.90195662]\n", + " [-23.43559855 -0.9019338 ]\n", + " [-19.04916999 -0.90191099]\n", + " [-14.66274141 -0.90188818]\n", + " [-10.27631284 -0.90186536]\n", + " [ -5.88988428 -0.90184255]\n", + " [ -1.5034557 -0.90181973]\n", + " [ -1.503296 -31.60681974]\n", + " [ -1.50331881 -27.22039116]\n", + " [ -1.50334163 -22.83396259]\n", + " [ -1.50336444 -18.44753402]\n", + " [ -1.50338726 -14.06110544]\n", + " [ -1.50341007 -9.67467688]\n", + " [ -1.50343288 -5.2882483 ]\n", + " [ -1.5034557 -0.90181973]\n", + " [-32.19330594 -29.69447935]\n", + " [-32.19333391 -24.31847935]\n", + " [-32.19336187 -18.94247936]\n", + " [-32.19338983 -13.56647936]\n", + " [-32.19341779 -8.19047935]\n", + " [-32.19344575 -2.81447935]\n", + " [-30.29579608 -31.59196949]\n", + " [-24.91979608 -31.59194152]\n", + " [-19.54379608 -31.59191356]\n", + " [-14.16779608 -31.5918856 ]\n", + " [ -8.79179608 -31.59185764]\n", + " [ -3.41579608 -31.59182968]\n", + " [-30.29595562 -0.91696949]\n", + " [-24.91995562 -0.91694153]\n", + " [-19.54395562 -0.91691356]\n", + " [-14.16795562 -0.9168856 ]\n", + " [ -8.79195562 -0.91685764]\n", + " [ -3.41595563 -0.91682968]\n", + " [ -1.51830595 -29.69431981]\n", + " [ -1.51833391 -24.31831981]\n", + " [ -1.51836187 -18.94231981]\n", + " [ -1.51838983 -13.56631981]\n", + " [ -1.51841779 -8.19031981]\n", + " [ -1.51844575 -2.81431982]\n", + " [-32.19329608 -31.59197936]\n", + " [-32.19329DEBUG:root:optics_fp: rtanth: [44.94272969 42.00239064 39.33235561 36.99120283 35.04490673 33.56223174\n", + " 32.60648436 32.22458311 44.94272969 41.90992612 39.13459306 36.67522804\n", + " 34.59927513 32.97921831 31.88462562 31.37054947 32.22458311 27.83912196\n", + " 23.45402264 19.06953475 14.68620592 10.30551524 5.93330899 1.63895634\n", + " 31.37054947 26.99005818 22.61186898 18.23763988 13.87111779 9.5229103\n", + " 5.23882082 1.63895634 43.61980801 40.19015843 37.22381993 34.83933779\n", + " 33.16246218 32.30357703 43.58131788 40.02977818 36.92204987 34.37870189\n", + " 32.5323727 31.50584319 30.31278547 24.93826049 19.56454604 14.19256282\n", + " 8.82547273 3.48595044 29.4611953 24.09404931 18.73198196 13.38109994\n", + " 8.0637011 2.9657153 44.92151855 44.92151855 1.65858428 1.65858428\n", + " 42.23832489 38.56329813 35.32679703 32.65945447 30.7099348 29.62031359\n", + " 38.68639649 34.63652908 30.99264061 27.91417471 25.60588368 24.28835443\n", + " 35.59496044 31.14567519 27.03530484 23.44280455 20.64037826 18.98125646\n", + " 33.09332103 28.252783DEBUG:root:mm_to_pix: fitpx.shape: (96, 2)\n", + "41 23.64475409 19.43532283 15.94339684 13.72788346\n", + " 31.32311186 26.15701072 21.09606209 16.23887967 11.83897557 8.62694755\n", + " 30.41232527 25.05915804 19.71841847 14.40393713 9.16152467 4.26572571]\n", + "DEBUG:root:optics_fp: cphi: [-0.71661052 -0.76668522 -0.81865324 -0.87041945 -0.91877042 -0.95945138\n", + " -0.98776621 -0.99975905 -0.71661052 -0.66390451 -0.59904941 -0.51982885\n", + " -0.42452343 -0.31272572 -0.18629262 -0.04992637 -0.99975905 -0.9996769\n", + " -0.99954452 -0.99931081 -0.99883841 -0.997645 -0.9929376 -0.91049017\n", + " -0.04992637 -0.05798589 -0.06914879 -0.08562676 -0.11237014 -0.16312264\n", + " -0.29391715 -0.91049017 -0.73796092 -0.80082989 -0.86457988 -0.92376676\n", + " -0.97061799 -0.99671508 -0.69515031 -0.62267974 -0.52972774 -0.41289021\n", + " -0.27152486 -0.11024131 -0.99971595 -0.99957998 -0.99931728 -0.99870324\n", + " -0.99665599 -0.97888657 -0.05365319 -0.06553749 -0.08417765 -0.1175659\n", + " -0.19410544 -0.51637928 -0.71661494 -0.71661494 -0.90871193 -0.90871193\n", + " -0.71720854 -0.64629919 -0.55357618 -0.43455016 -0.28757779 -0.11723007\n", + " -0.78293369 -0.71938388 -0.63073804 -0.50813028 -0.34464727 -0.14284199\n", + " -0.85084193 -0.79983697 -0.72276415 -0.60462283 -0.42711476 -0.18254722\n", + " -0.91515494 -0.88164179 -0.82613743 -0.72873282 -0.5521103 -0.25185684\n", + " -0.9670144 -0.95239316 -0.92593126 -0.87175367 -0.74209777 -0.39893833\n", + " -0.99629342 -0.99453874 -0.99117471 -0.98343711 -0.95881096 -0.79843817]\n", + "DEBUG:root:mm_to_pix: fitpx: [[0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]]\n", + "DEBUG:root:radec2pix: lat: [77.97206498 79.57806769 81.21593647 82.8803899 84.56638266 86.26889583\n", + " 87.98262539 89.69667435 77.97206498 77.85336036 77.52222772 76.99897078\n", + " 76.31199967 75.49295235 74.57292056 73.58021644 89.69667435 88.18712874\n", + " 86.48361023 84.78319776 83.0967184 81.43034165 79.78948121 78.17954495\n", + " 73.58021644 74.59400834 75.53901524 76.38685312 77.10589211 77.66330027\n", + " 78.02875412 78.17954495 78.66798463 80.65841057 82.69141578 84.75761477\n", + " 86.84771627 88.95113309 77.95267103 77.66228009 77.07171569 76.23019363\n", + " 75.19557036 74.02401451 89.12786485 87.06007007 84.97409331 82.90740441\n", + " 80.87177406 78.87718093 74.03267423 75.23268127 76.30156716 77.18237665\n", + " 77.81504555 78.14660304 77.97746528 77.97746528 78.18485708 78.18485708\n", + " 78.64134167 78.32984157 77.69918411 76.80616019 75.71557851 74.48840848\n", + " 80.62507537 80.23817759 79.46907283 78.40617113 77.13948546 75.74438817\n", + " 82.64779184 82.14857946 81.18831589 79.91227353 78.44384133 76.87031089\n", + " 84.69583972 84.01119948 82.77741875 81.24014725 79.55379065 77.80461009\n", + " 86.74476583 85.70761057 84.09008812 82.26687253 80.3773841 78.48020641\n", + " 88.67187538 86.89501933 84.87693536 82.83944721 80.82012657 78.83603949]\n", + "DEBUG:root:optics_fp: cphi: [-0.7172644 -0.76741791 -0.81945139 -0.87124824 -0.91956549 -0.96011654\n", + " -0.98818444 -0.99982014 -0.7172644 -0.66450587 -0.59954537 -0.52014772\n", + " -0.4245785 -0.31242949 -0.18558325 -0.04879815 -0.99982014 -0.99975708\n", + " -0.99965502 -0.99947397 -0.99910595 -0.99816919 -0.99442317 -0.92363168\n", + " -0.04879815 -0.05662794 -0.06748483 -0.0835374 -0.10965891 -0.1594742\n", + " -0.28942109 -0.92363168 -0.73864972 -0.80160861 -0.86540808 -0.92455295\n", + " -0.97121348 -0.99694372 -0.69578694 -0.62321886 -0.53007115 -0.41291013\n", + " -0.27109351 -0.10929135 -0.99978591 -0.99968066 -0.99947617 -0.99899494\n", + " -0.99737425 -0.98288834 -0.05243384 -0.06399014 -0.08214824 -0.11477511\n", + " -0.19009076 -0.51584618 -0.71726898 -0.71726898 -0.92175016 -0.92175016\n", + " -0.71788499 -0.64689125 -0.55397779 -0.43461417 -0.2871469 -0.11621293\n", + " -0.78371934 -0.72014369 -0.63135242 -0.50838973 -0.34426777 -0.14160207\n", + " -0.85170189 -0.80076273 -0.72365733 -0.60523038 -0.42694461 -0.18103644\n", + " -0.91599489 -0.8826498 -0.8273004 -0.72987289 -0.55253697 -0.25009805\n", + " -0.96766665 -0.95325615 -0.92710821 -0.87335662 -0.74384256 -0.39763019\n", + " -0.99654822 -0.99489972 -0.99173015 -0.984408 -0.96090466 -0.80346296]\n", + "DEBUG:root:radec2pix: ccdpx: [[-4.45000000e+01 -5.00000261e-01]\n", + " [-4.45000000e+01 2.91928571e+02]\n", + " [-4.45000000e+01 5.84357143e+02]\n", + " [-4.45000000e+01 8.76785715e+02]\n", + " [-4.45000000e+01 1.16921429e+03]\n", + " [-4.45000000e+01 1.46164286e+03]\n", + " [-4.45000000e+01 1.75407143e+03]\n", + " [-4.44999999e+01 2.04650000e+03]\n", + " [-4.45000000e+01 -5.00000261e-01]\n", + " [ 2.47928571e+02 -5.00000125e-01]\n", + " [ 5.40357143e+02 -4.99999959e-01]\n", + " [ 8.32785714e+02 -5.00000265e-01]\n", + " [ 1.12521429e+03 -4.99999989e-01]\n", + " [ 1.41764286e+03 -4.99999804e-01]\n", + " [ 1.71007143e+03 -4.99999857e-01]\n", + " [ 2.00250000e+03 -5.00000247e-01]\n", + " [-4.44999999e+01 2.04650000e+03]\n", + " [ 2.47928572e+02 2.04650000e+03]\n", + " [ 5.40357143e+02 2.04650000e+03]\n", + " [ 8.32785714e+02 2.04650000e+03]\n", + " [ 1.12521429e+03 2.04650000e+03]\n", + " [ 1.41764286e+03 2.04650000e+03]\n", + " [ 1.71007143e+03 2.04650000e+03]\n", + " [ 2.00250000e+03 2.04650000e+03]\n", + " [ 2.00250000e+03 -5.00000247e-01]\n", + " [ 2.00250000e+03 2.91928571e+02]\n", + " [ 2.00250000e+03 5.84357143e+02]\n", + " [ 2.00250000e+03 8.76785714e+02]\n", + " [ 2.00250000e+03 1.16921429e+03]\n", + " [ 2.00250000e+03 1.46164286e+03]\n", + " [ 2.00250000e+03 1.75407143e+03]\n", + " [ 2.00250000e+03 2.04650000e+03]\n", + " [-4.35000000e+01 1.27000000e+02]\n", + " [-4.35000000e+01 4.85400000e+02]\n", + " [-4.35000000e+01 8.43800000e+02]\n", + " [-4.35000000e+01 1.20220000e+03]\n", + " [-4.35000000e+01 1.56060000e+03]\n", + " [-4.35000000e+01 1.91900000e+03]\n", + " [ 8.30000000e+01 4.99999891e-01]\n", + " [ 4.41400000e+02 5.00000001e-01]\n", + " [ 7.99800000e+02 5.00000129e-01]\n", + " [ 1.15820000e+03 5.00000084e-01]\n", + " [ 1.51660000e+03 5.00000000e-01]\n", + " [ 1.87500000e+03 5.00000003e-01]\n", + " [ 8.30000000e+01 2.04550000e+03]\n", + " [ 4.41400000e+02 2.04550000e+03]\n", + " [ 7.99800000e+02 2.04550000e+03]\n", + " [ 1.15820000e+03 2.04550000e+03]\n", + " [ 1.51660000e+03 2.04550000e+03]\n", + " [ 1.87500000e+03 2.04550000e+03]\n", + " [ 2.00150000e+03 1.27000000e+02]\n", + " [ 2.00150000e+03 4.85400000e+02]\n", + " [ 2.00150000e+03 8.43800000e+02]\n", + " [ 2.00150000e+03 1.20220000e+03]\n", + " [ 2.00150000e+03 1.56060000e+03]\n", + " [ 2.00150000e+03 1.91900000e+03]\n", + " [-4.35000000e+01 4.99999945e-01]\n", + " [-4.35000000e+01 4.99999945e-01]\n", + " [ 2.00150000e+03 2.04550000e+03]\n", + " [ 2.00150000e+03 2.04550000e+03]\n", + " [ 8.30000000e+01 1.27000000e+02]\n", + " [ 4.41400000e+02 1.27000000e+02]\n", + " [ 7.99800000e+02 1.27000000e+02]\n", + " [ 1.15820000e+03 1.27000000e+02]\n", + " [ 1.51660000e+03 1.27000000e+02]\n", + " [ 1.87500000e+03 1.27000000e+02]\n", + " [ 8.30000000e+01 4.85400000e+02]\n", + " [ 4.41400000e+02 4.85400000e+02]\n", + " [ 7.99800000e+02 4.85400000e+02]\n", + " [ 1.15820000e+03 4.85400000e+02]\n", + " [ 1.51660000e+03 4.85400000e+02]\n", + " [ 1.87500000e+03 4.85400000e+02]\n", + " [ 8.30000000e+01 8.43800000e+02]\n", + " [ 4.41400000e+02 8.43800000e+02]\n", + " [ 7.99800000e+02 8.43800000e+02]\n", + " [ 1.15820000e+03 8.43800000e+02]\n", + " [ 1.51660000e+03 8.43800000e+02]\n", + " [ 1.87500000e+03 8.43800000e+02]\n", + " [ 8.30000000e+01 1.20220000e+03]\n", + " [ 4.41400000e+02 1.20220000e+03]\n", + " [ 7.99800000e+02 1.20220000e+03]\n", + " [ 1.15820000e+03 1.20220000e+03]\n", + " [ 1.51660000e+03 1.20220000e+03]\n", + " [ 1.87500000e+03 1.20220000e+03]\n", + " [ 8.30000000e+01 1.56060000e+03]\n", + " [ 4.41400000e+02 1.56060000e+03]\n", + " [ 7.99800000e+02 1.56060000e+03]\n", + " [ 1.15820000e+03 1.56060000e+03]\n", + " [ 1.51660000e+03 1.56060000e+03]\n", + " [ 1.87500000e+03 1.56060000e+03]\n", + " [ 8.29999998e+01 1.91900000e+03]\n", + " [ 4.41400000e+02 1.91900000e+03]\n", + " [ 7.99800000e+02 1.9190000011 ]\n", + " [ -0.245877 13.323011 ]\n", + " [ -0.245877 7.947011 ]\n", + " [ -0.245877 2.571011 ]\n", + " [ -2.143377 31.348511 ]\n", + " [ -7.519377 31.348511 ]\n", + " [-12.895377 31.348511 ]\n", + " [-18.271377 31.348511 ]\n", + " [-23.647377 31.348511 ]\n", + " [-29.023377 31.348511 ]\n", + " [ -2.143377 0.673511 ]\n", + " [ -7.519377 0.673511 ]\n", + " [-12.895377 0.673511 ]\n", + " [-18.271377 0.673511 ]\n", + " [-23.64737701 0.673511 ]\n", + " [-29.023377 0.673511 ]\n", + " [-30.920877 29.451011 ]\n", + " [-30.920877 24.075011 ]\n", + " [-30.920877 18.699011 ]\n", + " [-30.920877 13.323011 ]\n", + " [-30.920877 7.947011 ]\n", + " [-30.920877 2.571011 ]\n", + " [ -0.245877 31.348511 ]\n", + " [ -0.245877 31.348511 ]\n", + " [-30.920877 0.673511 ]\n", + " [-30.920877 0.673511 ]\n", + " [ -2.143377 29.451011 ]\n", + " [ -7.519377 29.451011 ]\n", + " [-12.895377 29.451011 ]\n", + " [-18.271377 29.451011 ]\n", + " [-23.647377 29.451011 ]\n", + " [-29.023377 29.451011 ]\n", + " [ -2.143377 24.075011 ]\n", + " [ -7.519377 24.075011 ]\n", + " [-12.895377 24.075011 ]\n", + " [-18.271377 24.075011 ]\n", + " [-23.647377 24.075011 ]\n", + " [-29.023377 24.075011 ]\n", + " [ -2.143377 18.699011 ]\n", + " [ -7.519377 18.699011 ]\n", + " [-12.895377 18.699011 ]\n", + " [-18.271377 18.699011 ]\n", + " [-23.647377 18.699011 ]\n", + " [-29.023377 18.699011 ]\n", + " [ -2.143377 13.323011 ]\n", + " [ -7.519377 13.323011 ]\n", + " [-12.895377 13.323011 ]\n", + " [-18.271377 13.323011 ]\n", + " [-23.647377 13.323011 ]\n", + " [-29.023377 13.323011 ]\n", + " [ -2.143377 7.947011 ]\n", + " [ -7.519377 7.947011 ]\n", + " [-12.895377 7.947011 ]\n", + " [-18.271377 7.947011 ]\n", + " [-23.647377 7.947011 ]\n", + " [-29.023377 7.947011 ]\n", + " [ -2.143377 2.571011 ]\n", + " [ -7.519377 2.571011 ]\n", + " [-12.895377 2.571011 ]\n", + " [-18.271377 2.571011 ]\n", + " [-23.647377 2.571011 ]\n", + " [-29.023377 2.571011 ]]\n", + "DEBUG:root:mm_to_pix: fitpx.shape: (96, 2)\n", + "DEBUG:root:make_az_asym: xyp: shape: (96, 2)\n", + "DEBUG:root:optics_fp: sphi: [-0.69680111 -0.64114722 -0.57314869 -0.49084265 -0.39293677 -0.27960013\n", + " -0.15326941 -0.01896529 -0.69680111 -0.74728304 -0.80034077 -0.85407631\n", + " -0.90539113 -0.94994095 -0.98262854 -0.99880866 -0.01896529 -0.02204027\n", + " -0.02626479 -0.03243122 -0.04227651 -0.06048361 -0.10546358 -0.38328124\n", + " -0.99880866 -0.99839535 -0.9977203 -0.99650464 -0.99396928 -0.9872021\n", + " -0.95720188 -0.38328124 -0.67408945 -0.59784918 -0.50106771 -0.3810536\n", + " -0.23821077 -0.07812313 -0.71824824 -0.78204748 -0.84795317 -0.91077177\n", + " -0.96255302 -0.99400976 -0.02069125 -0.02527007 -0.03236333 -0.04482319\n", + " -0.07241971 -0.18420237 -0.9986244 -0.99795053 -0.99662012 -0.9933915\n", + " -0.98176652 -0.85668122 -0.6967964 -0.6967964 -0.38778427 -0.38778427\n", + " -0.69616172 -0.76258227 -0.83253145 -0.90061674 -0.95788656 -0.99322432\n", + " -0.62111512 -0.69382495 -0.77549605 -0.8611271 -0.93887151 -0.98992366\n", + " -0.52402662 -0.59898168 -0.69015945 -0.79605037 -0.90427778 -0.98347639\n", + " -0.40118994 -0.4700312 -0.56175978 -0.68358289 -0.83348839 -0.96822051\n", + " -0.25223255 -0.30216337 -0.37479377 -0.48708132 -0.66835488 -0.91754577\n", + " -0.08301599 -0.10086897 -0.12834059 -0.17590022 -0.27687945 -0.59535474]\n", + "608 -31.59197936]\n", + " [ -1.51845562 -0.91681981]\n", + " [ -1.51845562 -0.91681981]\n", + " [-30.29580595 -29.69446949]\n", + " [-24.91980594 -29.69444152]\n", + " [-19.54380595 -29.69441356]\n", + " [-14.16780595 -29.69438561]\n", + " [ -8.79180595 -29.69435764]\n", + " [ -3.41580595 -29.69432968]\n", + " [-30.29583391 -24.31846949]\n", + " [-24.91983391 -24.31844152]\n", + " [-19.54383391 -24.31841356]\n", + " [-14.16783391 -24.31838561]\n", + " [ -8.79183391 -24.31835764]\n", + " [ -3.41583391 -24.31832968]\n", + " [-30.29586187 -18.94246949]\n", + " [-24.91986187 -18.94244153]\n", + " [-19.54386187 -18.94241356]\n", + " [-14.16786187 -18.94238561]\n", + " [ -8.79186187 -18.94235764]\n", + " [ -3.41586187 -18.94232969]\n", + " [-30.29588983 -13.56646949]\n", + " [-24.91988983 -13.56644152]\n", + " [-19.54388984 -13.56641357]\n", + " [-14.16788983 -13.5663856 ]\n", + " [ -8.79188983 -13.56635764]\n", + " [ -3.41588983 -13.56632968]\n", + " [-30.29591779 -8.19046949]\n", + " [-24.91991779 -8.19044152]\n", + " [-19.54391779 -8.19041356]\n", + " [-14.16791779 -8.1903856 ]\n", + " [ -8.79191779 -8.19035764]\n", + " [ -3.41591779 -8.19032968]\n", + " [-30.29594575 -2.81446949]\n", + " [-24.91994576 -2.81444153]\n", + " [-19.54394575 -2.81441356]\n", + " [-14.16794576 -2.8143856 ]\n", + " [ -8.79194575 -2.81435764]\n", + " [ -3.41594575 -2.81432968]]\n", + "DEBUG:root:optics_fp: sphi: [-0.69747355 -0.64202319 -0.57428814 -0.49231086 -0.39479224 -0.28187416\n", + " -0.15594205 -0.02195087 -0.69747355 -0.74781736 -0.80071206 -0.85427043\n", + " -0.90541695 -0.94984347 -0.98249431 -0.9987529 -0.02195087 -0.02541825\n", + " -0.03017857 -0.03712011 -0.04818532 -0.06858898 -0.11863781 -0.41353071\n", + " -0.9987529 -0.9983174 -0.99760636 -0.99632728 -0.99366642 -0.9866058\n", + " -0.9558309 -0.41353071 -0.67484345 -0.59889188 -0.50249541 -0.38295557\n", + " -0.24062567 -0.080988 -0.71886442 -0.7824768 -0.84816774 -0.91078081\n", + " -0.96243143 -0.99390485 -0.02383323 -0.02898045 -0.03694547 -0.05091008\n", + " -0.08171193 -0.2044042 -0.99855963 -0.99785011 -0.99645076 -0.99306508\n", + " -0.98098067 -0.85635999 -0.69746902 -0.69746902 -0.41742381 -0.41742381\n", + " -0.6968586 -0.76308411 -0.83279855 -0.90064763 -0.95775728 -0.99310478\n", + " -0.62210517 -0.69461272 -0.77599583 -0.86128022 -0.93873226 -0.98974551\n", + " -0.52542175 -0.60021731 -0.69109478 -0.79651192 -0.90419742 -0.98319709\n", + " -0.40310226 -0.47191923 -0.56346867 -0.68479813 -0.83377108 -0.9677645\n", + " -0.2547217 -0.30487255 -0.37769207 -0.48994442 -0.67029166 -0.91697776\n", + " -0.08601994 -0.10436806 -0.13256201 -0.18124971 -0.28404496 -0.60207682]\n", + "DEBUG:root:make_az_asym: xyp: shape: (96, 2)\n", + "e+03]\n", + " [ 1.15820000e+03 1.91900000e+03]\n", + " [ 1.51660000e+03 1.91900000e+03]\n", + " [ 1.87500000e+03 1.91900000e+03]]\n", + "DEBUG:root:optics_fp: xyfp: [[32.2358199 31.31614388]\n", + " [32.23338667 26.92971599]\n", + " [32.23095344 22.54328809]\n", + " [32.2285202 18.15686019]\n", + " [32.22608698 13.7704323 ]\n", + " [32.22365375 9.3840044 ]\n", + " [32.22122051 4.99757651]\n", + " [32.21878728 0.61114861]\n", + " [32.2358199 31.31614388]\n", + " [27.849392 31.31857712]\n", + " [23.46296411 31.32101035]\n", + " [19.07653621 31.32344358]\n", + " [14.69010831 31.3258768 ]\n", + " [10.30368042 31.32831004]\n", + " [ 5.91725252 31.33074327]\n", + " [ 1.53082462 31.3331765 ]\n", + " [32.21878728 0.61114861]\n", + " [27.83235938 0.61358184]\n", + " [23.44593149 0.61601507]\n", + " [19.0595036 0.6184483 ]\n", + " [14.6730757 0.62088153]\n", + " [10.2866478 0.62331476]\n", + " [ 5.90021991 0.625748 ]\n", + " [ 1.513792 0.62818122]\n", + " [ 1.53082462 31.3331765 ]\n", + " [ 1.52839139 26.94674861]\n", + " [ 1.52595816 22.5603207 ]\n", + " [ 1.52352493 18.17389281]\n", + " [ 1.5210917 13.78746492]\n", + " [ 1.51865847 9.40103702]\n", + " [ 1.51622524 5.01460912]\n", + " [ 1.513792 0.62818122]\n", + " [32.219759 29.4036525 ]\n", + " [32.21677684 24.02765333]\n", + " [32.21379467 18.65165415]\n", + " [32.21081251 13.27565498]\n", + " [32.20783035 7.89965581]\n", + " [32.20484818 2.52365664]\n", + " [30.32331188 31.30220479]\n", + " [24.9473127 31.30518695]\n", + " [19.57131353 31.30816912]\n", + " [14.19531435 31.31115127]\n", + " [ 8.81931518 31.31413344]\n", + " [ 3.44331601 31.3171156 ]\n", + " [30.3062959 0.62720951]\n", + " [24.93029672 0.63019167]\n", + " [19.55429755 0.63317383]\n", + " [14.17829838 0.636156 ]\n", + " [ 8.80229921 0.63913816]\n", + " [ 3.42630004 0.64212033]\n", + " [ 1.54476372 29.42066847]\n", + " [ 1.54178156 24.0446693 ]\n", + " [ 1.53879939 18.66867013]\n", + " [ 1.53581723 13.29267096]\n", + " [ 1.53283507 7.91667178]\n", + " [ 1.5298529 2.54067261]\n", + " [32.22081158 31.30115221]\n", + " [32.22081158 31.30115221]\n", + " [ 1.52880032 0.6431729 ]\n", + " [ 1.52880032 0.6431729 ]\n", + " [30.32225929 29.40470508]\n", + " [24.94626012 29.40768724]\n", + " [19.57026095 29.41066941]\n", + " [14.19426178 29.41365157]\n", + " [ 8.8182626 29.41663373]\n", + " [ 3.44226343 29.4196159 ]\n", + " [30.31927713 24.02870591]\n", + " [24.94327796 24.03168807]\n", + " [19.56727878 24.03467023]\n", + " [14.19127961 24.0376524 ]\n", + " [ 8.81528044 24.04063456]\n", + " [ 3.43928127 24.04361672]\n", + " [30.31629496 18.65270673]\n", + " [24.9402958 18.6556889 ]\n", + " [19.56429662 18.65867106]\n", + " [14.18829744 18.66165322]\n", + " [ 8.81229827 18.66463538]\n", + " [ 3.4362991 18.66761755]\n", + " [30.31331281 13.27670756]\n", + " [24.93731363 13.27968972]\n", + " [19.56131446 13.28267189]\n", + " [14.18531529 13.28565406]\n", + " [ 8.80931611 13.28863621]\n", + " [ 3.43331694 13.29161838]\n", + " [30.31033064 7.90070839]\n", + " [24.93433147 7.90369055]\n", + " [19.55833229 7.90667271]\n", + " [14.18233312 7.90965488]\n", + " [ 8.80633395 7.91263704]\n", + " [ 3.43033477 7.9156192 ]\n", + " [30.30734847 2.52470921]\n", + " [24.9313493 2.52769138]\n", + " [19.55535013 2.53067354]\n", + " [14.17935096 2.53365571]\n", + " [ 8.80335178 2.53663787]\n", + " [ 3.42735261 2.53962004]]\n", + "DEBUG:root:radec2pix: xyfp: [[ -0.230877 31.363511 ]\n", + " [ -0.230877 26.97708243]\n", + " [ -0.230877 22.59065386]\n", + " [ -0.230877 18.20422528]\n", + " [ -0.230877 13.81779671]\n", + " [ -0.230877 9.43136815]\n", + " [ -0.230877 5.04493957]\n", + " [ -0.230877 0.658511 ]\n", + " [ -0.230877 31.363511 ]\n", + " [ -4.61730557 31.363511 ]\n", + " [ -9.00373414 31.363511 ]\n", + " [-13.39016272 31.363511 ]\n", + " [-17.77659129 31.363511 ]\n", + " [-22.16301986 31.363511 ]\n", + " [-26.54944843 31.363511 ]\n", + " [-30.935877 31.363511 ]\n", + " [ -0.230877 0.658511 ]\n", + " [ -4.61730558 0.658511 ]\n", + " [ -9.00373414 0.658511 ]\n", + " [-13.39016271 0.658511 ]\n", + " [-17.77659128 0.658511 ]\n", + " [-22.16301986 0.658511 ]\n", + " [-26.54944843 0.658511 ]\n", + " [-30.935877 0.658511 ]\n", + " [-30.935877 31.363511 ]\n", + " [-30.935877 26.97708243]\n", + " [-30.935877 22.59065386]\n", + " [-30.935877 18.20422528]\n", + " [-30.935877 13.81779671]\n", + " [-30.935877 9.43136814]\n", + " [-30.935877 5.04493957]\n", + " [-30.935877 0.658511 ]\n", + " [ -0.245877 29.451011 ]\n", + " [ -0.245877 24.075011 ]\n", + " [ -0.245877 18.699011 ]\n", + " [ -0.245877 13.323011 ]\n", + " [ -0.245877 7.947011 ]\n", + " [ -0.245877 2.571011 ]\n", + " [ -2.143377 31.348511 ]\n", + " [ -7.519377 31.348511 ]\n", + " [-12.895377 31.348511 ]\n", + " [-18.271377 31.348511 ]\n", + " [-23.647377 31.348511 ]\n", + " [-29.023377 31.348511 ]\n", + " [ -2.143377 0.673511 ]\n", + " [ -7.519377 0.673511 ]\n", + " [-12.895377 0.673511 ]\n", + " [-18.271377 0.673511 ]\n", + " [-23.64737701 0.673511 ]\n", + " [-29.023377 0.673511 ]\n", + " [-30.920877 29.451011 ]\n", + " [-30.920877 24.075011 ]\n", + " [-30.920877 18.699011 ]\n", + " [-30.920877 13.323011 ]\n", + " [-30.920877 7.947011 ]\n", + " [-30.920877 2.571011 ]\n", + " [ -0.245877 31.348511 ]\n", + " [ -0.245877 31.348511 ]\n", + " [-30.920877 0.673511 ]\n", + " [-30.920877 0.673511 ]\n", + " [ -2.143377 29.451011 ]\n", + " [ -7.519377 29.451011 ]\n", + " [-12.895377 29.451011 ]\n", + " [-18.271377 29.451011 ]\n", + " [-23.647377 29.451011 ]\n", + " [-29.023377 29.451011 ]\n", + " [ -2.143377 24.075011 ]\n", + " [ -7.519377 24.075011 ]\n", + " [-12.895377 24.075011 ]\n", + " [-18.271377 24.075011 ]\n", + " [-23.647377 24.075011 ]\n", + " [-29.023377 24.075011 ]\n", + " [ -2.143377 18.699011 ]\n", + " [ -7.519377 18.699011 ]\n", + " [-12.895377 18.699011 ]\n", + " [-18.271377 18.699011 ]\n", + " [-23.647377 18.699011 ]\n", + " [-29.023377 18.699011 ]\n", + " [ -2.143377 13.323011 ]\n", + " [ -7.519377 13.323011 ]\n", + " [-12.895377 13.323011 ]\n", + " [-18.271377 13.323011 ]\n", + " [-23.647377 13.323011 ]\n", + " [-29.023377 13.323011 ]\n", + " [ -2.143377 7.947011 ]\n", + " [ -7.519377 7.947011 ]\n", + " [-12.895377 7.947011 ]\n", + " [-18.271377 7.947011 ]\n", + " [-23.647377 7.947011 ]\n", + " [-29.023377 7.947011 ]\n", + " [ -2.143377 2.571011 ]\n", + " [ -7.519377 2.571011 ]\n", + " [-12.895377 2.571011 ]\n", + " [-18.271377 2.571011 ]\n", + " [-23.647377 2.571011 ]\n", + " [-29.023377 2.571011 ]]\n", + "DEBUG:root:optics_fp: xyfp shape: (96, 2)\n", + "DEBUG:root:radec2pix: xyfp Shape: (96, 2)\n", + "DEBUG:root:radec2pix: xyfp: [[32.275486 31.41357429]\n", + " [32.27502267 27.02714574]\n", + " [32.27455935 22.64071719]\n", + " [32.27409601 18.25428864]\n", + " [32.27363269 13.8678601 ]\n", + " [32.27316936 9.48143155]\n", + " [32.27270604 5.095003 ]\n", + " [32.27224271 0.70857446]\n", + " [32.275486 31.41357429]\n", + " [27.88905745 31.41403761]\n", + " [23.5026289 31.41450094]\n", + " [19.11620036 31.41496427]\n", + " [14.72977181 31.41542759]\n", + " [10.34334326 31.41589092]\n", + " [ 5.95691471 31.41635424]\n", + " [ 1.57048617 31.41681757]\n", + " [32.27224271 0.70857446]\n", + " [27.88581416 0.70903778]\n", + " [23.49938562 0.70950111]\n", + " [19.11295707 0.70996444]\n", + " [14.72652852 0.71042776]\n", + " [10.34009998 0.71089109]\n", + " [ 5.95367142 0.71135442]\n", + " [ 1.56724288 0.71181774]\n", + " [ 1.57048617 31.41681757]\n", + " [ 1.57002284 27.03038902]\n", + " [ 1.56955951 22.64396047]\n", + " [ 1.56909619 18.25753194]\n", + " [ 1.56863286 13.87110338]\n", + " [ 1.56816953 9.48467484]\n", + " [ 1.56770621 5.09824629]\n", + " [ 1.56724288 0.71181774]\n", + " [32.26028399 29.50107588]\n", + " [32.25971613 24.12507591]\n", + " [32.25914828 18.74907594]\n", + " [32.25858043 13.37307597]\n", + " [32.25801258 7.997076 ]\n", + " [32.25744472 2.62107603]\n", + " [30.36298443 31.3987763 ]\n", + " [24.98698446 31.39934415]\n", + " [19.61098448 31.399912 ]\n", + " [14.23498451 31.40047985]\n", + " [ 8.85898454 31.40104771]\n", + " [ 3.48298457 31.40161556]\n", + " [30.35974431 0.72377647]\n", + " [24.98374433 0.72434432]\n", + " [19.60774436 0.72491217]\n", + " [14.23174439 0.72548003]\n", + " [ 8.85574442 0.72604788]\n", + " [ 3.47974445 0.72661573]\n", + " [ 1.58528416 29.504316 ]\n", + " [ 1.5847163 24.12831603]\n", + " [ 1.58414845 18.75231606]\n", + " [ 1.5835806 13.37631609]\n", + " [ 1.58301275 8.00031612]\n", + " [ 1.5824449 2.62431615]\n", + " [32.26048441 31.39857587]\n", + " [32.26048441 31.39857587]\n", + " [ 1.58224447 0.72681616]\n", + " [ 1.58224447 0.72681616]\n", + " [30.36278399 29.50127631]\n", + " [24.98678403 29.50184416]\n", + " [19.61078405 29.50241201]\n", + " [14.23478409 29.50297987]\n", + " [ 8.85878411 29.50354772]\n", + " [ 3.48278414 29.50411557]\n", + " [30.36221615 24.12527634]\n", + " [24.98621618 24.12584419]\n", + " [19.6102162 24.12641204]\n", + " [14.23421623 24.1269799 ]\n", + " [ 8.85821626 24.12754775]\n", + " [ 3.48221629 24.1281156 ]\n", + " [30.36164829 18.74927637]\n", + " [24.98564832 18.74984422]\n", + " [19.60964835 18.75041208]\n", + " [14.23364838 18.75097993]\n", + " [ 8.85764841 18.75154778]\n", + " [ 3.48164844 18.75211563]\n", + " [30.36108043 13.3732764 ]\n", + " [24.98508046 13.37384425]\n", + " [19.60908049 13.3744121 ]\n", + " [14.23308053 13.37497996]\n", + " [ 8.85708056 13.37554781]\n", + " [ 3.48108059 13.37611567]\n", + " [30.36051258 7.99727643]\n", + " [24.98451261 7.99784428]\n", + " [19.60851265 7.99841214]\n", + " [14.23251268 7.99897999]\n", + " [ 8.85651271 7.99954784]\n", + " [ 3.48051273 8.00011569]\n", + " [30.35994473 2.62127646]\n", + " [24.98394476 2.62184431]\n", + " [19.60794479 2.62241216]\n", + " [14.23194482 2.62298002]\n", + " [ 8.85594485 2.62354787]\n", + " [ 3.47994488 2.62411572]]\n", + "DEBUG:root:optics_fp: rtanth: [31.45867372 27.07232164 22.68599914 18.29972749 13.91355478 9.52761765\n", + " 5.14251895 0.77266756 31.45867372 31.78680319 32.70527593 34.16651578\n", + " 36.10468169 38.44771501 41.12647627 44.07980062 0.77266756 4.62057574\n", + " 8.9768556 13.35288972 17.73406053 22.11731568 26.50162097 30.8865292\n", + " 44.07980062 41.06447698 38.31494783 35.89234872 33.86691125 32.31340541\n", + " 31.3021752 30.8865292 29.54629558 24.17042769 18.79463536 13.41900945\n", + " 8.04388357 2.67227674 31.51224371 32.31623619 33.96261905 36.33706944\n", + " 39.30786805 42.7508727 2.22187045 7.50028847 12.8598094 18.22903784\n", + " 23.60134944 28.97502929 42.72508353 39.20023922 36.1342981 33.65291956\n", + " 31.89283999 30.97725364 31.44375973 31.44375973 30.87190328 30.87190328\n", + " 29.6191671 30.47314683 32.21386423 34.70815714 37.80716925 41.37524227\n", + " 24.25945282 25.29503252 27.36711605 30.26354513 33.77288911 37.72448364\n", + " 18.90898716 20.22047017 22.759345 26.17080258 30.16018539 34.5277484\n", + " 13.57870729 15.35248874 18.5693102 22.62172417 27.13794906 31.92173094\n", + " 8.30755918 10.96964715 15.14772357 19.90921024 24.92192864 30.06045831\n", + " 3.38416012 7.92276206 13.11070286 18.40689143 23.73898749 29.08725072]\n", + "DEBUG:root:radec2pix: xyfp: [[-32.208296 -31.60697943]\n", + " [-32.20831882 -27.22055086]\n", + " [-32.20834163 -22.83412229]\n", + " [-32.20836444 -18.44769372]\n", + " [-32.20838725 -14.06126515]\n", + " [-32.20841007 -9.67483658]\n", + " [-32.20843288 -5.288408 ]\n", + " [-32.2084557 -0.90197943]\n", + " [-32.208296 -31.60697943]\n", + " [-27.82186743 -31.60695662]\n", + " [-23.43543886 -31.60693381]\n", + " [-19.04901029 -31.60691099]\n", + " [-14.66258171 -31.60688818]\n", + " [-10.27615314 -31.60686536]\n", + " [ -5.88972457 -31.60684255]\n", + " [ -1.503296 -31.60681974]\n", + " [-32.2084557 -0.90197943]\n", + " [-27.82202712 -0.90195662]\n", + " [-23.43559855 -0.9019338 ]\n", + " [-19.04916999 -0.90191099]\n", + " [-14.66274141 -0.90188818]\n", + " [-10.27631284 -0.90186536]\n", + " [ -5.88988428 -0.90184255]\n", + " [ -1.5034557 -0.90181973]\n", + " [ -1.503296 -31.60681974]\n", + " [ -1.50331881 -27.22039116]\n", + " [ -1.50334163 -22.83396259]\n", + " [ -1.50336444 -18.44753402]\n", + " [ -1.50338726 -14.06110544]\n", + " [ -1.50341007 -9.67467688]\n", + " [ -1.50343288 -5.2882483 ]\n", + " [ -1.5034557 -0.90181973]\n", + " [-32.19330594 -29.69447935]\n", + " [-32.19333391 -24.31847935]\n", + " [-32.19336187 -18.94247936]\n", + " [-32.19338983 -13.56647936]\n", + " [-32.19341779 -8.19047935]\n", + " [-32.19344575 -2.81447935]\n", + " [-30.29579608 -31.59196949]\n", + " [-24.91979608 -31.59194152]\n", + " [-19.54379608 -31.59191356]\n", + " [-14.16779608 -31.5918856 ]\n", + " [ -8.79179608 -31.59185764]\n", + " [ -3.41579608 -31.59182968]\n", + " [-30.29595562 -0.91696949]\n", + " [-24.91995562 -0.91694153]\n", + " [-19.54395562 -0.91691356]\n", + " [-14.16795562 -0.9168856 ]\n", + " [ -8.79195562 -0.91685764]\n", + " [ -3.41595563 -0.91682968]\n", + " [ -1.51830595 -29.69431981]\n", + " [ -1.51833391 -24.31831981]\n", + " [ -1.51836187 -18.94231981]\n", + " [ -1.51838983 -13.56631981]\n", + " [ -1.51841779 -8.19031981]\n", + " [ -1.51844575 -2.81431982]\n", + " [-32.19329608 -31.59197936]\n", + " [-32.19329608 -31.59197936]\n", + " [ -1.51845562 -0.91681981]\n", + " [ -1.51845562 -0.91681981]\n", + " [-30.29580595 -29.69446949]\n", + " [-24.91980594 -29.69444152]\n", + " [-19.54380595 -29.69441356]\n", + " [-14.16780595 -29.69438561]\n", + " [ -8.79180595 -29.69435764]\n", + " [ -3.41580595 -29.69432968]\n", + " [-30.29583391 -24.31846949]\n", + " [-24.91983391 -24.31844152]\n", + " [-19.54383391 -24.31841356]\n", + " [-14.16783391 -24.31838561]\n", + " [ -8.79183391 -24.31835764]\n", + " [ -3.41583391 -24.31832968]\n", + " [-30.29586187 -18.94246949]\n", + " [-24.91986187 -18.94244153]\n", + " [-19.54386187 -18.94241356]\n", + " [-14.16786187 -18.94238561]\n", + " [ -8.79186187 -18.94235764]\n", + " [ -3.41586187 -18.94232969]\n", + " [-30.29588983 -13.56646949]\n", + " [-24.91988983 -13.56644152]\n", + " [-19.54388984 -13.56641357]\n", + " [-14.16788983 -13.5663856 ]\n", + " [ -8.79188983 -13.56635764]\n", + " [ -3.41588983 -13.56632968]\n", + " [-30.29591779 -8.19046949]\n", + " [-24.91991779 -8.19044152]\n", + " [-19.54391779 -8.19041356]\n", + " [-14.16791779 -8.1903856 ]\n", + " [ -8.79191779 -8.19035764]\n", + " [ -3.41591779 -8.19032968]\n", + " [-30.29594575 -2.81446949]\n", + " [-24.91994576 -2.81444153]\n", + " [-19.54394575 -2.81441356]\n", + " [-14.16794576 -2.8143856 ]\n", + " [ -8.79194575 -2.81435764]\n", + " [ -3.41594575 -2.81432968]]\n", + "DEBUG:root:radec2pix: xyfp Shape: (96, 2)\n", + "DEBUG:root:mm_to_pix: fitpx: [[0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]]\n", + "DEBUG:root:mm_to_pix: fitpx.shape: (96, 2)\n", + "DEBUG:root:optics_fp: cphi: [-0.0055044 -0.00639203 -0.0076229 -0.00944382 -0.01241274 -0.01811485\n", + " -0.0335395 -0.22307599 -0.0055044 -0.14344285 -0.2735344 -0.39021968\n", + " -0.49076392 -0.57494454 -0.64415274 -0.70050591 -0.22307599 -0.98662859\n", + " -0.99647595 -0.9984093 -0.99909876 -0.99942085 -0.99959678 -0.99970325\n", + " -0.70050591 -0.75194059 -0.80589783 -0.86028974 -0.91173668 -0.955566\n", + " -0.98643233 -0.99970325 -0.00636666 -0.00777693 -0.00999392 -0.01398706\n", + " -0.02331621 -0.07013242 -0.06618572 -0.2308951 -0.37799383 -0.50124187\n", + " -0.60012567 -0.67754548 -0.93833732 -0.9947436 -0.99821572 -0.99911274\n", + " -0.99947098 -0.99964917 -0.72236515 -0.7873159 -0.85411461 -0.91708811\n", + " -0.96769535 -0.99629275 -0.00598404 -0.00598404 -0.999691 -0.999691\n", + " -0.07041425 -0.24485858 -0.398512 -0.52476457 -0.62394545 -0.7000711\n", + " -0.08596532 -0.29497775 -0.46908383 -0.60182876 -0.69847361 -0.76781625\n", + " -0.11028259 -0.36899894 -0.56404664 -0.69594091 -0.78213485 -0.83890011\n", + " -0.1535634 -0.48599238 -0.6913123 -0.80511955 -0.86923269 -0.90738164\n", + " -0.25098261 -0.68015432 -0.84745756 -0.91480539 -0.94651795 -0.96355992\n", + " -0.61607996 -0.94170609 -0.97911709 -0.98946165 -0.99367815 -0.99579412]\n", + "DEBUG:root:make_az_asym: xyp: [[32.2358199 31.31614388]\n", + " [32.23338667 26.92971599]\n", + " [32.23095344 22.54328809]\n", + " [32.2285202 18.15686019]\n", + " [32.22608698 13.7704323 ]\n", + " [32.22365375 9.3840044 ]\n", + " [32.22122051 4.99757651]\n", + " [32.21878728 0.61114861]\n", + " [32.2358199 31.31614388]\n", + " [27.849392 31.31857712]\n", + " [23.46296411 31.32101035]\n", + " [19.07653621 31.32344358]\n", + " [14.69010831 31.3258768 ]\n", + " [10.30368042 31.32831004]\n", + " [ 5.91725252 31.33074327]\n", + " [ 1.53082462 31.3331765 ]\n", + " [32.21878728 0.61114861]\n", + " [27.83235938 0.61358184]\n", + " [23.44593149 0.61601507]\n", + " [19.0595036 0.6184483 ]\n", + " [14.6730757 0.62088153]\n", + " [10.2866478 0.62331476]\n", + " [ 5.90021991 0.625748 ]\n", + " [ 1.513792 0.62818122]\n", + " [ 1.53082462 31.3331765 ]\n", + " [ 1.52839139 26.94674861]\n", + " [ 1.52595816 22.5603207 ]\n", + " [ 1.52352493 18.17389281]\n", + " [ 1.5210917 13.78746492]\n", + " [ 1.51865847 9.40103702]\n", + " [ 1.51622524 5.01460912]\n", + " [ 1.513792 0.62818122]\n", + " [32.219759 29.4036525 ]\n", + " [32.21677684 24.02765333]\n", + " [32.21379467 18.65165415]\n", + " [32.21081251 13.27565498]\n", + " [32.20783035 7.89965581]\n", + " [32.20484818 2.52365664]\n", + " [30.32331188 31.30220479]\n", + " [24.9473127 31.30518695]\n", + " [19.57131353 31.30816912]\n", + " [14.19531435 31.31115127]\n", + " [ 8.81931518 31.31413344]\n", + " [ 3.44331601 31.3171156 ]\n", + " [30.3062959 0.62720951]\n", + " [24.93029672 0.63019167]\n", + " [19.55429755 0.63317383]\n", + " [14.17829838 0.636156 ]\n", + " [ 8.80229921 0.63913816]\n", + " [ 3.42630004 0.64212033]\n", + " [ 1.54476372 29.42066847]\n", + " [ 1.54178156 24.0446693 ]\n", + " [ 1.53879939 18.66867013]\n", + " [ 1.53581723 13.29267096]\n", + " [ 1.53283507 7.91667178]\n", + " [ 1.5298529 2.54067261]\n", + " [32.22081158 31.30115221]\n", + " [32.22081158 31.30115221]\n", + " [ 1.52880032 0.6431729 ]\n", + " [ 1.52880032 0.6431729 ]\n", + " [30.32225929 29.40470508]\n", + " [24.94626012 29.40768724]\n", + " [19.57026095 29.41066941]\n", + " [14.19426178 29.41365157]\n", + " [ 8.8182626 29.41663373]\n", + " [ 3.44226343 29.4196159 ]\n", + " [30.31927713 24.02870591]\n", + " [24.94327796 24.03168807]\n", + " [19.56727878 24.03467023]\n", + " [14.19127961 24.0376524 ]\n", + " [ 8.81528044 24.04063456]\n", + " [ 3.43928127 24.04361672]\n", + " [30.31629496 18.65270673]\n", + " [24.9402958 18.6556889 ]\n", + " [19.56429662 18.65867106]\n", + " [14.18829744 18.66165322]\n", + " [ 8.81229827 18.66463538]\n", + " [ 3.4362991 18.66761755]\n", + " [30.31331281 13.27670756]\n", + " [24.93731363 13.27968972]\n", + " [19.56131446 13.28267189]\n", + " [14.18531529 13.28565406]\n", + " [ 8.80931611 13.28863621]\n", + " [ 3.43331694 13.29161838]\n", + " [30.31033064 7.90070839]\n", + " [24.93433147 7.90369055]\n", + " [19.55833229 7.90667271]\n", + " [14.18233312 7.90965488]\n", + " [ 8.80633395 7.91263704]\n", + " [ 3.43033477 7.9156192 ]\n", + " [30.30734847 2.52470921]\n", + " [24.9313493 2.52769138]\n", + " [19.55535013 2.53067354]\n", + " [14.17935096 2.53365571]\n", + " [ 8.80335178 2.53663787]\n", + " [ 3.42735261 2.53962004]]\n", + "DEBUG:root:make_az_asym: xyp: shape: (96, 2)\n", + "DEBUG:root:radec2pix: ccdpx: [[-4.45000001e+01 -5.00000082e-01]\n", + " [-4.45000001e+01 2.91928571e+02]\n", + " [-4.45000003e+01 5.84357143e+02]\n", + " [-4.44999997e+01 8.76785714e+02]\n", + " [-4.45000002e+01 1.16921429e+03]\n", + " [-4.44999997e+01 1.46164286e+03]\n", + " [-4.45000001e+01 1.75407143e+03]\n", + " [-4.44999998e+01 2.04650000e+03]\n", + " [-4.45000001e+01 -5.00000082e-01]\n", + " [ 2.47928572e+02 -4.99999837e-01]\n", + " [ 5.40357143e+02 -5.00000111e-01]\n", + " [ 8.32785714e+02 -5.00000236e-01]\n", + " [ 1.12521429e+03 -4.99999746e-01]\n", + " [ 1.41764286e+03 -4.99999876e-01]\n", + " [ 1.71007143e+03 -4.99999788e-01]\n", + " [ 2.00250000e+03 -5.00000040e-01]\n", + " [-4.44999998e+01 2.04650000e+03]\n", + " [ 2.47928572e+02 2.04650000e+03]\n", + " [ 5.40357143e+02 2.04650000e+03]\n", + " [ 8.32785714e+02 2.04650000e+03]\n", + " [ 1.12521429e+03 2.04650000e+03]\n", + " [ 1.41764286e+03 2.04650000e+03]\n", + " [ 1.71007143e+03 2.04650000e+03]\n", + " [ 2.00250000e+03 2.04650000e+03]\n", + " [ 2.00250000e+03 -5.00000040e-01]\n", + " [ 2.00250000e+03 2.91928572e+02]\n", + " [ 2.00250000e+03 5.84357143e+02]\n", + " [ 2.00250000e+03 8.76785714e+02]\n", + " [ 2.00250000e+03 1.16921429e+03]\n", + " [ 2.00250000e+03 1.46164286e+03]\n", + " [ 2.00250000e+03 1.75407143e+03]\n", + " [ 2.00250000e+03 2.04650000e+03]\n", + " [-4.35000002e+01 1.27000000e+02]\n", + " [-4.35000000e+01 4.85400000e+02]\n", + " [-4.34999999e+01 8.43800000e+02]\n", + " [-4.35000002e+01 1.20220000e+03]\n", + " [-4.35000002e+01 1.56060000e+03]\n", + " [-4.34999998e+01 1.91900000e+03]\n", + " [ 8.29999997e+01 4.99999723e-01]\n", + " [ 4.41400000e+02 4.99999738e-01]\n", + " [ 7.99800000e+02 4.99999955e-01]\n", + " [ 1.15820000e+03 5.00000275e-01]\n", + " [ 1.51660000e+03 4.99999778e-01]\n", + " [ 1.87500000e+03 5.00000195e-01]\n", + " [ 8.29999999e+01 2.04550000e+03]\n", + " [ 4.41400000e+02 2.04550000e+03]\n", + " [ 7.99800000e+02 2.04550000e+03]\n", + " [ 1.15820000e+03 2.04550000e+03]\n", + " [ 1.51660000e+03 2.04550000e+03]\n", + " [ 1.87500000e+03 2.04550000e+03]\n", + " [ 2.00150000e+03 1.27000000e+02]\n", + " [ 2.00150000e+03 4.85400000e+02]\n", + " [ 2.00150000e+03 8.43800000e+02]\n", + " [ 2.00150000e+03 1.20220000e+03]\n", + " [ 2.00150000e+03 1.56060000e+03]\n", + " [ 2.00150000e+03 1.91900000e+03]\n", + " [-4.34999997e+01 5.00000254e-01]\n", + " [-4.34999997e+01 5.00000254e-01]\n", + " [ 2.00150000e+03 2.04550000e+03]\n", + " [ 2.00150000e+03 2.04550000e+03]\n", + " [ 8.30000000e+01 1.27000000e+02]\n", + " [ 4.41400000e+02 1.27000000e+02]\n", + " [ 7.99800000e+02 1.27000000e+02]\n", + " [ 1.15820000e+03 1.27000000e+02]\n", + " [ 1.51660000e+03 1.27000000e+02]\n", + " [ 1.87500000e+03 1.27000000e+02]\n", + " [ 8.29999998e+01 4.85400000e+02]\n", + " [ 4.41400000e+02 4.85400000e+02]\n", + " [ 7.99800000e+02 4.85400000e+02]\n", + " [ 1.15820000e+03 4.85400000e+02]\n", + " [ 1.51660000e+03 4.85400000e+02]\n", + " [ 1.87500000e+03 4.85400000e+02]\n", + " [ 8.29999999e+01 8.43800000e+02]\n", + " [ 4.41400000e+02 8.43800000e+02]\n", + " [ 7.99800000e+02 8.43800000e+02]\n", + " [ 1.15820000e+03 8.43800000e+02]\n", + " [ 1.51660000e+03 8.43800000e+02]\n", + " [ 1.87500000e+03 8.43800000e+02]\n", + " [ 8.30000002e+01 1.20220000e+03]\n", + " [ 4.41400000e+02 1.20220000e+03]\n", + " [ 7.99800000e+02 1.20220000e+03]\n", + " [ 1.15820000e+03 1.20220000e+03]\n", + " [ 1.51660000e+03 1.20220000e+03]\n", + " [ 1.87500000e+03 1.20220000e+03]\n", + " [ 8.30000002e+01 1.56060000e+03]\n", + " [ 4.41400000e+02 1.56060000e+03]\n", + " [ 7.99800000e+02 1.56060000e+03]\n", + " [ 1.15820000e+03 1.56060000e+03]\n", + " [ 1.51660000e+03 1.56060000e+03]\n", + " [ 1.87500000e+03 1.56060000e+03]\n", + " [ 8.29999999e+01 1.91900000e+03]\n", + " [ 4.41400000e+02 1.91900000e+03]\n", + " [ 7.99800000e+02 1.91900000e+03]\n", + " [ 1.15820000e+03 1.91900000e+03]\n", + " [ 1.51660000e+03 1.91900000e+03]\n", + " [ 1.87500000e+03 1.91900000e+03]]\n", + "DEBUG:root:optics_fp: sphi: [0.99998485 0.99997957 0.99997095 0.99995541 0.99992296 0.99983591\n", + " 0.99943739 0.97480106 0.99998485 0.9896586 0.96186222 0.92072178\n", + " 0.87129259 0.81819238 0.76489689 0.7136466 0.97480106 0.16298472\n", + " 0.08387896 0.05638146 0.04244609 0.03402888 0.028395 0.02436013\n", + " 0.7136466 0.65923088 0.59205464 0.50980542 0.41077515 0.29477725\n", + " 0.16416841 0.02436013 0.99997973 0.99996976 0.99995006 0.99990218\n", + " 0.99972814 0.99753769 0.99780732 0.97297865 0.92580811 0.86530722\n", + " 0.79990573 0.73548088 0.34572109 0.10239711 0.0597107 0.0421157\n", + " 0.0325231 0.02648658 0.69151182 0.61654981 0.52008483 0.39868458\n", + " 0.25212242 0.08602764 0.9999821 0.9999821 0.02485756 0.02485756\n", + " 0.99751784 0.96955881 0.91716312 0.8512474 0.7814679 0.71407315\n", + " 0.99629813 0.95550412 0.88315364 0.79862516 0.71563581 0.64067012\n", + " 0.99390027 0.92942982 0.82574293 0.71809906 0.6231092 0.5442854\n", + " 0.9881388 0.87396305 0.72255609 0.59311256 0.49440321 0.4203077\n", + " 0.9679916 0.73306896 0.53086315 0.40389491 0.32265115 0.26749257\n", + " 0.78768362 0.33643669 0.20329713 0.14479515 0.11226633 0.09161916]\n", + "DEBUG:root:mm_to_pix: fitpx: [[0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]]\n", + "DEBUG:root:mm_to_pix: fitpx.shape: (96, 2)\n", + "DEBUG:root:radec2pix: xyfp: [[ -0.230877 31.363511 ]\n", + " [ -0.230877 26.97708243]\n", + " [ -0.230877 22.59065386]\n", + " [ -0.230877 18.20422528]\n", + " [ -0.230877 13.81779671]\n", + " [ -0.230877 9.43136815]\n", + " [ -0.230877 5.04493957]\n", + " [ -0.230877 0.658511 ]\n", + " [ -0.230877 31.363511 ]\n", + " [ -4.61730557 31.363511 ]\n", + " [ -9.00373414 31.363511 ]\n", + " [-13.39016272 31.363511 ]\n", + " [-17.77659129 31.363511 ]\n", + " [-22.16301986 31.363511 ]\n", + " [-26.54944843 31.363511 ]\n", + " [-30.935877 31.363511 ]\n", + " [ -0.230877 0.658511 ]\n", + " [ -4.61730558 0.658511 ]\n", + " [ -9.00373414 0.658511 ]\n", + " [-13.39016271 0.658511 ]\n", + " [-17.77659128 0.658511 ]\n", + " [-22.16301986 0.658511 ]\n", + " [-26.54944843 0.658511 ]\n", + " [-30.935877 0.658511 ]\n", + " [-30.935877 31.363511 ]\n", + " [-30.935877 26.97708243]\n", + " [-30.935877 22.59065386]\n", + " [-30.935877 18.20422528]\n", + " [-30.935877 13.81779671]\n", + " [-30.935877 9.43136814]\n", + " [-30.935877 5.04493957]\n", + " [-30.935877 0.658511 ]\n", + " [ -0.245877 29.451011 ]\n", + " [ -0.245877 24.075011 ]\n", + " [ -0.245877 18.699011 ]\n", + " [ -0.245877 13.323011 ]\n", + " [ -0.245877 7.947011 ]\n", + " [ -0.245877 2.571011 ]\n", + " [ -2.143377 31.348511 ]\n", + " [ -7.519377 31.348511 ]\n", + " [-12.895377 31.348511 ]\n", + " [-18.271377 31.348511 ]\n", + " [-23.647377 31.348511 ]\n", + " [-29.023377 31.348511 ]\n", + " [ -2.143377 0.673511 ]\n", + " [ -7.519377 0.673511 ]\n", + " [-12.895377 0.673511 ]\n", + " [-18.271377 0.673511 ]\n", + " [-23.64737701 0.673511 ]\n", + " [-29.023377 0.673511 ]\n", + " [-30.920877 29.451011 ]\n", + " [-30.920877 24.075011 ]\n", + " [-30.920877 18.699011 ]\n", + " [-30.920877 13.323011 ]\n", + " [-30.920877 7.947011 ]\n", + " [-30.920877 2.571011 ]\n", + " [ -0.245877 31.348511 ]\n", + " [ -0.245877 31.348511 ]\n", + " [-30.920877 0.673511 ]\n", + " [-30.920877 0.673511 ]\n", + " [ -2.143377 29.451011 ]\n", + " [ -7.519377 29.451011 ]\n", + " [-12.895377 29.451011 ]\n", + " [-18.271377 29.451011 ]\n", + " [-23.647377 29.451011 ]\n", + " [-29.023377 29.451011 ]\n", + " [ -2.143377 24.075011 ]\n", + " [ -7.519377 24.075011 ]\n", + " [-12.895377 24.075011 ]\n", + " [-18.271377 24.075011 ]\n", + " [-23.647377 24.075011 ]\n", + " [-29.023377 24.075011 ]\n", + " [ -2.143377 18.699011 ]\n", + " [ -7.519377 18.699011 ]\n", + " [-12.895377 18.699011 ]\n", + " [-18.271377 18.699011 ]\n", + " [-23.647377 18.699011 ]\n", + " [-29.023377 18.699011 ]\n", + " [ -2.143377 13.323011 ]\n", + " [ -7.519377 13.323011 ]\n", + " [-12.895377 13.323011 ]\n", + " [-18.271377 13.323011 ]\n", + " [-23.647377 13.323011 ]\n", + " [-29.023377 13.323011 ]\n", + " [ -2.143377 7.947011 ]\n", + " [ -7.519377 7.947011 ]\n", + " [-12.895377 7.947011 ]\n", + " [-18.271377 7.947011 ]\n", + " [-23.647377 7.947011 ]\n", + " [-29.023377 7.947011 ]\n", + " [ -2.143377 2.571011 ]\n", + " [ -7.519377 2.571011 ]\n", + " [-12.895377 2.571011 ]\n", + " [-18.271377 2.571011 ]\n", + " [-23.647377 2.571011 ]\n", + " [-29.023377 2.571011 ]]\n", + "DEBUG:root:radec2pix: xyfp: [[32.2358199 31.31614388]\n", + " [32.23338667 26.92971599]\n", + " [32.23095344 22.54328809]\n", + " [32.2285202 18.15686019]\n", + " [32.22608698 13.7704323 ]\n", + " [32.22365375 9.3840044 ]\n", + " [32.22122051 4.99757651]\n", + " [32.21878728 0.61114861]\n", + " [32.2358199 31.31614388]\n", + " [27.849392 31.31857712]\n", + " [23.46296411 31.32101035]\n", + " [19.07653621 31.32344358]\n", + " [14.69010831 31.3258768 ]\n", + " [10.30368042 31.32831004]\n", + " [ 5.91725252 31.33074327]\n", + " [ 1.53082462 31.3331765 ]\n", + " [32.21878728 0.61114861]\n", + " [27.83235938 0.61358184]\n", + " [23.44593149 0.61601507]\n", + " [19.0595036 0.6184483 ]\n", + " [14.6730757 0.62088153]\n", + " [10.2866478 0.62331476]\n", + " [ 5.90021991 0.625748 ]\n", + " [ 1.513792 0.62818122]\n", + " [ 1.53082462 31.3331765 ]\n", + " [ 1.52839139 26.94674861]\n", + " [ 1.52595816 22.5603207 ]\n", + " [ 1.52352493 18.17389281]\n", + " [ 1.5210917 13.78746492]\n", + " [ 1.51865847 9.40103702]\n", + " [ 1.51622524 5.01460912]\n", + " [ 1.513792 0.62818122]\n", + " [32.219759 29.4036525 ]\n", + " [32.21677684 24.02765333]\n", + " [32.21379467 18.65165415]\n", + " [32.21081251 13.27565498]\n", + " [32.20783035 7.89965581]\n", + " [32.20484818 2.52365664]\n", + " [30.32331188 31.30220479]\n", + " [24.9473127 31.30518695]\n", + " [19.57131353 31.30816912]\n", + " [14.19531435 31.31115127]\n", + " [ 8.81931518 31.31413344]\n", + " [ 3.44331601 31.3171156 ]\n", + " [30.3062959 0.62720951]\n", + " [24.93029672 0.63019167]\n", + " [19.55429755 0.63317383]\n", + " [14.17829838 0.636156 ]\n", + " [ 8.80229921 0.63913816]\n", + " [ 3.42630004 0.64212033]\n", + " [ 1.54476372 29.42066847]\n", + " [ 1.54178156 24.0446693 ]\n", + " [ 1.53879939 18.66867013]\n", + " [ 1.53581723 13.29267096]\n", + " [ 1.53283507 7.91667178]\n", + " [ 1.5298529 2.54067261]\n", + " [32.22081158 31.30115221]\n", + " [32.22081158 31.30115221]\n", + " [ 1.52880032 0.6431729 ]\n", + " [ 1.52880032 0.6431729 ]\n", + " [30.32225929 29.40470508]\n", + " [24.94626012 29.40768724]\n", + " [19.57026095 29.41066941]\n", + " [14.19426178 29.41365157]\n", + " [ 8.8182626 29.41663373]\n", + " [ 3.44226343 29.4196159 ]\n", + " [30.31927713 24.02870591]\n", + " [24.94327796 24.03168807]\n", + " [19.56727878 24.03467023]\n", + " [14.19127961 24.0376524 ]\n", + " [ 8.81528044 24.04063456]\n", + " [ 3.43928127 24.04361672]\n", + " [30.31629496 18.65270673]\n", + " [24.9402958 18.6556889 ]\n", + " [19.56429662 18.65867106]\n", + " [14.18829744 18.66165322]\n", + " [ 8.81229827 18.66463538]\n", + " [ 3.4362991 18.66761755]\n", + " [30.31331281 13.27670756]\n", + " [24.93731363 13.27968972]\n", + " [19.56131446 13.28267189]\n", + " [14.18531529 13.28565406]\n", + " [ 8.80931611 13.28863621]\n", + " [ 3.43331694 13.29161838]\n", + " [30.31033064 7.90070839]\n", + " [24.93433147 7.90369055]\n", + " [19.55833229 7.90667271]\n", + " [14.18233312 7.90965488]\n", + " [ 8.80633395 7.91263704]\n", + " [ 3.43033477 7.9156192 ]\n", + " [30.30734847 2.52470921]\n", + " [24.9313493 2.52769138]\n", + " [19.55535013 2.53067354]\n", + " [14.17935096 2.53365571]\n", + " [ 8.80335178 2.53663787]\n", + " [ 3.42735261 2.53962004]]\n", + "DEBUG:root:radec2pix: xyfp Shape: (96, 2)\n", + "DEBUG:root:radec2pix: fitpx: [[4271.50000008 4155.50000008]\n", + " [4271.50000011 3863.07142867]\n", + " [4271.50000027 3570.64285733]\n", + " [4271.49999971 3278.21428555]\n", + " [4271.50000017 2985.78571436]\n", + " [4271.4999997 2693.35714277]\n", + " [4271.5000001 2400.92857145]\n", + " [4271.49999983 2108.5 ]\n", + " [4271.50000008 4155.50000008]\n", + " [3979.07142843 4155.49999984]\n", + " [3686.64285723 4155.50000011]\n", + " [3394.21428586 4155.50000024]\n", + " [3101.78571417 4155.49999975]\n", + " [2809.35714282 4155.49999988]\n", + " [2516.92857139 4155.49999979]\n", + " [2224.5 4155.50000004]\n", + " [4271.49999983 2108.5 ]\n", + " [3979.07142844 2108.5 ]\n", + " [3686.64285726 2108.5 ]\n", + " [3394.21428608 2108.50000001]\n", + " [3101.7857142 2108.5 ]\n", + " [2809.35714302 2108.50000001]\n", + " [2516.92857112 2108.49999996]\n", + " [2224.50000006 2108.50000003]\n", + " [2224.5 4155.50000004]\n", + " [2224.49999999 3863.07142838]\n", + " [2224.49999998 3570.64285685]\n", + " [2224.50000004 3278.21428613]\n", + " [2224.49999996 2985.78571394]\n", + " [2224.50000004 2693.35714312]\n", + " [2224.49999998 2400.92857136]\n", + " [2224.50000006 2108.50000003]\n", + " [4270.50000017 4028.00000015]\n", + " [4270.49999995 3669.59999996]\n", + " [4270.49999992 3311.19999995]\n", + " [4270.50000022 2952.80000009]\n", + " [4270.50000024 2594.40000006]\n", + " [4270.49999979 2235.99999998]\n", + " [4144.00000027 4154.50000028]\n", + " [3785.60000021 4154.50000026]\n", + " [3427.20000003 4154.50000005]\n", + " [3068.79999988 4154.49999973]\n", + " [2710.40000006 4154.50000022]\n", + " [2351.99999998 4154.4999998 ]\n", + " [4144.00000013 2109.5 ]\n", + " [3785.6 2109.5 ]\n", + " [3427.19999974 2109.49999999]\n", + " [3068.8 2109.5 ]\n", + " [2710.39999984 2109.49999999]\n", + " [2351.99999972 2109.49999994]\n", + " [2225.5 4027.99999997]\n", + " [2225.50000002 3669.60000025]\n", + " [2225.50000002 3311.20000025]\n", + " [2225.50000004 2952.80000031]\n", + " [2225.50000002 2594.40000011]\n", + " [2225.50000016 2236.00000026]\n", + " [4270.49999974 4154.49999975]\n", + " [4270.49999974 4154.49999975]\n", + " [2225.50000003 2109.50000001]\n", + " [2225.50000003 2109.50000001]\n", + " [4143.99999996 4027.99999996]\n", + " [3785.60000018 4028.00000021]\n", + " [3427.19999989 4027.99999984]\n", + " [3068.80000004 4028.00000009]\n", + " [2710.39999997 4027.9999999 ]\n", + " [2351.99999997 4027.99999976]\n", + " [4144.00000024 3669.60000019]\n", + " [3785.60000022 3669.60000021]\n", + " [3427.19999988 3669.59999985]\n", + " [3068.80000005 3669.60000008]\n", + " [2710.39999999 3669.59999998]\n", + " [2352. 3669.60000003]\n", + " [4144.00000009 3311.20000006]\n", + " [3785.60000001 3311.20000001]\n", + " [3427.20000009 3311.20000009]\n", + " [3068.80000003 3311.20000004]\n", + " [2710.40000012 3311.20000025]\n", + " [2351.99999998 3311.19999988]\n", + " [4143.99999976 2952.79999989]\n", + " [3785.59999985 2952.79999992]\n", + " [3427.19999969 2952.79999979]\n", + " [3068.79999997 2952.79999997]\n", + " [2710.40000016 2952.80000025]\n", + " [2352.00000009 2952.80000036]\n", + " [4143.99999979 2594.39999994]\n", + " [3785.60000002 2594.40000001]\n", + " [3427.20000024 2594.4000001 ]\n", + " [3068.80000002 2594.40000001]\n", + " [2710.40000021 2594.40000019]\n", + " [2351.99999998 2594.39999995]\n", + " [4144.00000008 2236.00000001]\n", + " [3785.60000005 2236.00000001]\n", + " [3427.20000007 2236.00000001]\n", + " [3068.79999979 2235.99999996]\n", + " [2710.39999971 2235.99999991]\n", + " [2351.99999979 2235.99999984]]\n", + "DEBUG:root:fitpix2pix: ccdpx: shape: (96, 2)\n", + "DEBUG:root:fitpix2pix: visCut: True\n", + "DEBUG:root:optics_fp: xyfp: [[ 0.173161 -31.45819714]\n", + " [ 0.17304708 -27.07176857]\n", + " [ 0.17293316 -22.68534 ]\n", + " [ 0.17281925 -18.29891143]\n", + " [ 0.17270533 -13.91248287]\n", + " [ 0.17259141 -9.52605429]\n", + " [ 0.17247749 -5.13962573]\n", + " [ 0.17236358 -0.75319715]\n", + " [ 0.173161 -31.45819714]\n", + " [ 4.55958957 -31.45808322]\n", + " [ 8.94601814 -31.45796931]\n", + " [ 13.33244671 -31.45785538]\n", + " [ 17.71887528 -31.45774147]\n", + " [ 22.10530385 -31.45762756]\n", + " [ 26.49173242 -31.45751363]\n", + " [ 30.87816099 -31.45739971]\n", + " [ 0.17236358 -0.75319715]\n", + " [ 4.55879215 -0.75308323]\n", + " [ 8.94522072 -0.75296932]\n", + " [ 13.33164929 -0.7528554 ]\n", + " [ 17.71807786 -0.75274148]\n", + " [ 22.10450643 -0.75262756]\n", + " [ 26.490935 -0.75251364]\n", + " [ 30.87736356 -0.75239973]\n", + " [ 30.87816099 -31.45739971]\n", + " [ 30.87804707 -27.07097114]\n", + " [ 30.87793315 -22.68454257]\n", + " [ 30.87781924 -18.29811401]\n", + " [ 30.87770532 -13.91168544]\n", + " [ 30.87759141 -9.52525687]\n", + " [ 30.87747749 -5.1388283 ]\n", + " [ 30.87736356 -0.75239973]\n", + " [ 0.18811133 -29.54569675]\n", + " [ 0.18797171 -24.16969676]\n", + " [ 0.1878321 -18.79369675]\n", + " [ 0.18769248 -13.41769676]\n", + " [ 0.18755286 -8.04169676]\n", + " [ 0.18741324 -2.66569676]\n", + " [ 2.08566061 -31.44314748]\n", + " [ 7.46166061 -31.44300785]\n", + " [ 12.83766061 -31.44286824]\n", + " [ 18.2136606 -31.44272862]\n", + " [ 23.5896606 -31.442589 ]\n", + " [ 28.9656606 -31.44244938]\n", + " [ 2.08486397 -0.76814748]\n", + " [ 7.46086396 -0.76800786]\n", + " [ 12.83686396 -0.76786825]\n", + " [ 18.21286396 -0.76772863]\n", + " [ 23.58886395 -0.76758901]\n", + " [ 28.96486395 -0.7674494 ]\n", + " [ 30.86311132 -29.54490011]\n", + " [ 30.86297171 -24.16890011]\n", + " [ 30.86283209 -18.79290011]\n", + " [ 30.86269247 -13.41690011]\n", + " [ 30.86255285 -8.04090011]\n", + " [ 30.86241323 -2.66490012]\n", + " [ 0.18816061 -31.44319675]\n", + " [ 0.18816061 -31.44319675]\n", + " [ 30.86236396 -0.76740012]\n", + " [ 30.86236396 -0.76740012]\n", + " [ 2.08561133 -29.54564748]\n", + " [ 7.46161133 -29.54550785]\n", + " [ 12.83761133 -29.54536824]\n", + " [ 18.21361133 -29.54522862]\n", + " [ 23.58961132 -29.545089 ]\n", + " [ 28.96561132 -29.54494938]\n", + " [ 2.08547171 -24.16964747]\n", + " [ 7.46147171 -24.16950786]\n", + " [ 12.83747171 -24.16936824]\n", + " [ 18.21347171 -24.16922862]\n", + " [ 23.58947171 -24.16908901]\n", + " [ 28.9654717 -24.16894939]\n", + " [ 2.0853321 -18.79364747]\n", + " [ 7.46133209 -18.79350785]\n", + " [ 12.83733209 -18.79336824]\n", + " [ 18.21333209 -18.79322862]\n", + " [ 23.58933209 -18.79308901]\n", + " [ 28.96533209 -18.79294939]\n", + " [ 2.08519248 -13.41764748]\n", + " [ 7.46119248 -13.41750786]\n", + " [ 12.83719247 -13.41736824]\n", + " [ 18.21319248 -13.41722863]\n", + " [ 23.58919247 -13.41708901]\n", + " [ 28.96519247 -13.41694939]\n", + " [ 2.08505286 -8.04164748]\n", + " [ 7.46105286 -8.04150786]\n", + " [ 12.83705286 -8.04136825]\n", + " [ 18.21305286 -8.04122863]\n", + " [ 23.58905286 -8.04108901]\n", + " [ 28.96505285 -8.04094939]\n", + " [ 2.08491324 -2.66564748]\n", + " [ 7.46091324 -2.66550786]\n", + " [ 12.83691324 -2.66536825]\n", + " [ 18.21291324 -2.66522863]\n", + " [ 23.58891323 -2.66508901]\n", + " [ 28.96491324 -2.66494939]]\n", + "DEBUG:root:optics_fp: xyfp shape: (96, 2)\n", + "DEBUG:root:radec2pix: xyfp: [[-32.208296 -31.60697943]\n", + " [-32.20831882 -27.22055086]\n", + " [-32.20834163 -22.83412229]\n", + " [-32.20836444 -18.44769372]\n", + " [-32.20838725 -14.06126515]\n", + " [-32.20841007 -9.67483658]\n", + " [-32.20843288 -5.288408 ]\n", + " [-32.2084557 -0.90197943]\n", + " [-32.208296 -31.60697943]\n", + " [-27.82186743 -31.60695662]\n", + " [-23.43543886 -31.60693381]\n", + " [-19.04901029 -31.60691099]\n", + " [-14.66258171 -31.60688818]\n", + " [-10.27615314 -31.60686536]\n", + " [ -5.88972457 -31.60684255]\n", + " [ -1.503296 -31.60681974]\n", + " [-32.2084557 -0.90197943]\n", + " [-27.82202712 -0.90195662]\n", + " [-23.43559855 -0.9019338 ]\n", + " [-19.04916999 -0.90191099]\n", + " [-14.66274141 -0.90188818]\n", + " [-10.27631284 -0.90186536]\n", + " [ -5.88988428 -0.90184255]\n", + " [ -1.5034557 -0.90181973]\n", + " [ -1.503296 -31.60681974]\n", + " [ -1.50331881 -27.22039116]\n", + " [ -1.50334163 -22.83396259]\n", + " [ -1.50336444 -18.44753402]\n", + " [ -1.50338726 -14.06110544]\n", + " [ -1.50341007 -9.67467688]\n", + " [ -1.50343288 -5.2882483 ]\n", + " [ -1.5034557 -0.90181973]\n", + " [-32.19330594 -29.69447935]\n", + " [-32.19333391 -24.31847935]\n", + " [-32.19336187 -18.94247936]\n", + " [-32.19338983 -13.56647936]\n", + " [-32.19341779 -8.19047935]\n", + " [-32.19344575 -2.81447935]\n", + " [-30.29579608 -31.59196949]\n", + " [-24.91979608 -31.59194152]\n", + " [-19.54379608 -31.59191356]\n", + " [-14.16779608 -31.5918856 ]\n", + " [ -8.79179608 -31.59185764]\n", + " [ -3.41579608 -31.59182968]\n", + " [-30.29595562 -0.91696949]\n", + " [-24.91995562 -0.91694153]\n", + " [-19.54395562 -0.91691356]\n", + " [-14.16795562 -0.9168856 ]\n", + " [ -8.79195562 -0.91685764]\n", + " [ -3.41595563 -0.91682968]\n", + " [ -1.51830595 -29.69431981]\n", + " [ -1.51833391 -24.31831981]\n", + " [ -1.51836187 -18.94231981]\n", + " [ -1.51838983 -13.56631981]\n", + " [ -1.51841779 -8.19031981]\n", + " [ -1.51844575 -2.81431982]\n", + " [-32.19329608 -31.59197936]\n", + " [-32.19329608 -31.59197936]\n", + " [ -1.51845562 -0.91681981]\n", + " [ -1.51845562 -0.91681981]\n", + " [-30.29580595 -29.69446949]\n", + " [-24.91980594 -29.69444152]\n", + " [-19.54380595 -29.69441356]\n", + " [-14.16780595 -29.69438561]\n", + " [ -8.79180595 -29.69435764]\n", + " [ -3.41580595 -29.69432968]\n", + " [-30.29583391 -24.31846949]\n", + " [-24.91983391 -24.31844152]\n", + " [-19.54383391 -24.31841356]\n", + " [-14.16783391 -24.31838561]\n", + " [ -8.79183391 -24.31835764]\n", + " [ -3.41583391 -24.31832968]\n", + " [-30.29586187 -18.94246949]\n", + " [-24.91986187 -18.94244153]\n", + " [-19.54386187 -18.94241356]\n", + " [-14.16786187 -18.94238561]\n", + " [ -8.79186187 -18.94235764]\n", + " [ -3.41586187 -18.94232969]\n", + " [-30.29588983 -13.56646949]\n", + " [-24.91988983 -13.56644152]\n", + " [-19.54388984 -13.56641357]\n", + " [-14.16788983 -13.5663856 ]\n", + " [ -8.79188983 -13.56635764]\n", + " [ -3.41588983 -13.56632968]\n", + " [-30.29591779 -8.19046949]\n", + " [-24.91991779 -8.19044152]\n", + " [-19.54391779 -8.19041356]\n", + " [-14.16791779 -8.1903856 ]\n", + " [ -8.79191779 -8.19035764]\n", + " [ -3.41591779 -8.19032968]\n", + " [-30.29594575 -2.81446949]\n", + " [-24.91994576 -2.81444153]\n", + " [-19.54394575 -2.81441356]\n", + " [-14.16794576 -2.8143856 ]\n", + " [ -8.79194575 -2.81435764]\n", + " [ -3.41594575 -2.81432968]]\n", + "DEBUG:root:mm_to_pix: fitpx: [[0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]]\n", + "DEBUG:root:mm_to_pix: fitpx.shape: (96, 2)\n", + "DEBUG:root:radec2pix: ccdpx: [[-4.45000000e+01 -5.00000261e-01]\n", + " [-4.45000000e+01 2.91928571e+02]\n", + " [-4.45000000e+01 5.84357143e+02]\n", + " [-4.45000000e+01 8.76785715e+02]\n", + " [-4.45000000e+01 1.16921429e+03]\n", + " [-4.45000000e+01 1.46164286e+03]\n", + " [-4.45000000e+01 1.75407143e+03]\n", + " [-4.44999999e+01 2.04650000e+03]\n", + " [-4.45000000e+01 -5.00000261e-01]\n", + " [ 2.47928571e+02 -5.00000125e-01]\n", + " [ 5.40357143e+02 -4.99999959e-01]\n", + " [ 8.32785714e+02 -5.00000265e-01]\n", + " [ 1.12521429e+03 -4.99999989e-01]\n", + " [ 1.41764286e+03 -4.99999804e-01]\n", + " [ 1.71007143e+03 -4.99999857e-01]\n", + " [ 2.00250000e+03 -5.00000247e-01]\n", + " [-4.44999999e+01 2.04650000e+03]\n", + " [ 2.47928572e+02 2.04650000e+03]\n", + " [ 5.40357143e+02 2.04650000e+03]\n", + " [ 8.32785714e+02 2.04650000e+03]\n", + " [ 1.12521429e+03 2.04650000e+03]\n", + " [ 1.41764286e+03 2.04650000e+03]\n", + " [ 1.71007143e+03 2.04650000e+03]\n", + " [ 2.00250000e+03 2.04650000e+03]\n", + " [ 2.00250000e+03 -5.00000247e-01]\n", + " [ 2.00250000e+03 2.91928571e+02]\n", + " [ 2.00250000e+03 5.84357143e+02]\n", + " [ 2.00250000e+03 8.76785714e+02]\n", + " [ 2.00250000e+03 1.16921429e+03]\n", + " [ 2.00250000e+03 1.46164286e+03]\n", + " [ 2.00250000e+03 1.75407143e+03]\n", + " [ 2.00250000e+03 2.04650000e+03]\n", + " [-4.35000000e+01 1.27000000e+02]\n", + " [-4.35000000e+01 4.85400000e+02]\n", + " [-4.35000000e+01 8.43800000e+02]\n", + " [-4.35000000e+01 1.20220000e+03]\n", + " [-4.35000000e+01 1.56060000e+03]\n", + " [-4.35000000e+01 1.91900000e+03]\n", + " [ 8.30000000e+01 4.99999891e-01]\n", + " [ 4.41400000e+02 5.00000001e-01]\n", + " [ 7.99800000e+02 5.00000129e-01]\n", + " [ 1.15820000e+03 5.00000084e-01]\n", + " [ 1.51660000e+03 5.00000000e-01]\n", + " [ 1.87500000e+03 5.00000003e-01]\n", + " [ 8.30000000e+01 2.04550000e+03]\n", + " [ 4.41400000e+02 2.04550000e+03]\n", + " [ 7.99800000e+02 2.04550000e+03]\n", + " [ 1.15820000e+03 2.04550000e+03]\n", + " [ 1.51660000e+03 2.04550000e+03]\n", + " [ 1.87500000e+03 2.04550000e+03]\n", + " [ 2.00150000e+03 1.27000000e+02]\n", + " [ 2.00150000e+03 4.85400000e+02]\n", + " [ 2.00150000e+03 8.43800000e+02]\n", + " [ 2.00150000e+03 1.20220000e+03]\n", + " [ 2.00150000e+03 1.56060000e+03]\n", + " [ 2.00150000e+03 1.91900000e+03]\n", + " [-4.35000000e+01 4.99999945e-01]\n", + " [-4.35000000e+01 4.99999945e-01]\n", + " [ 2.00150000e+03 2.04550000e+03]\n", + " [ 2.00150000e+03 2.04550000e+03]\n", + " [ 8.30000000e+01 1.27000000e+02]\n", + " [ 4.41400000e+02 1.27000000e+02]\n", + " [ 7.99800000e+02 1.27000000e+02]\n", + " [ 1.15820000e+03 1.27000000e+02]\n", + " [ 1.51660000e+03 1.27000000e+02]\n", + " [ 1.87500000e+03 1.27000000e+02]\n", + " [ 8.30000000e+01 4.85400000e+02]\n", + " [ 4.41400000e+02 4.85400000e+02]\n", + " [ 7.99800000e+02 4.85400000e+02]\n", + " [ 1.15820000e+03 4.85400000e+02]\n", + " [ 1.51660000e+03 4.85400000e+02]\n", + " [ 1.87500000e+03 4.85400000e+02]\n", + " [ 8.30000000e+01 8.43800000e+02]\n", + " [ 4.41400000e+02 8.43800000e+02]\n", + " [ 7.99800000e+02 8.43800000e+02]\n", + " [ 1.15820000e+03 8.43800000e+02]\n", + " [ 1.51660000e+03 8.43800000e+02]\n", + " [ 1.87500000e+03 8.43800000e+02]\n", + " [ 8.30000000e+01 1.20220000e+03]\n", + " [ 4.41400000e+02 1.20220000e+03]\n", + " [ 7.99800000e+02 1.20220000e+03]\n", + " [ 1.15820000e+03 1.20220000e+03]\n", + " [ 1.51660000e+03 1.20220000e+03]\n", + " [ 1.87500000e+03 1.20220000e+03]\n", + " [ 8.30000000e+01 1.56060000e+03]\n", + " [ 4.41400000e+02 1.56060000e+03]\n", + " [ 7.99800000e+02 1.56060000e+03]\n", + " [ 1.15820000e+03 1.56060000e+03]\n", + " [ 1.51660000e+03 1.56060000e+03]\n", + " [ 1.87500000e+03 1.56060000e+03]\n", + " [ 8.29999998e+01 1.91900000e+03]\n", + " [ 4.41400000e+02 1.91900000e+03]\n", + " [ 7.99800000e+02 1.91900000e+03]\n", + " [ 1.15820000e+03 1.91900000e+03]\n", + " [ 1.51660000e+03 1.91900000e+03]\n", + " [ 1.87500000e+03 1.91900000e+03]]\n", + "DEBUG:root:optics_fp: xyfp: [[32.275486 31.41357429]\n", + " [32.27502267 27.02714574]\n", + " [32.27455935 22.64071719]\n", + " [32.27409601 18.25428864]\n", + " [32.27363269 13.8678601 ]\n", + " [32.27316936 9.48143155]\n", + " [32.27270604 5.095003 ]\n", + " [32.27224271 0.70857446]\n", + " [32.275486 31.41357429]\n", + " [27.88905745 31.41403761]\n", + " [23.5026289 31.41450094]\n", + " [19.11620036 31.41496427]\n", + " [14.72977181 31.41542759]\n", + " [10.34334326 31.41589092]\n", + " [ 5.95691471 31.41635424]\n", + " [ 1.57048617 31.41681757]\n", + " [32.27224271 0.70857446]\n", + " [27.88581416 0.70903778]\n", + " [23.49938562 0.70950111]\n", + " [19.11295707 0.70996444]\n", + " [14.72652852 0.71042776]\n", + " [10.34009998 0.71089109]\n", + " [ 5.95367142 0.71135442]\n", + " [ 1.56724288 0.71181774]\n", + " [ 1.57048617 31.41681757]\n", + " [ 1.57002284 27.03038902]\n", + " [ 1.56955951 22.64396047]\n", + " [ 1.56909619 18.25753194]\n", + " [ 1.56863286 13.87110338]\n", + " [ 1.56816953 9.48467484]\n", + " [ 1.56770621 5.09824629]\n", + " [ 1.56724288 0.71181774]\n", + " [32.26028399 29.50107588]\n", + " [32.25971613 24.12507591]\n", + " [32.25914828 18.74907594]\n", + " [32.25858043 13.37307597]\n", + " [32.25801258 7.997076 ]\n", + " [32.25744472 2.62107603]\n", + " [30.36298443 31.3987763 ]\n", + " [24.98698446 31.39934415]\n", + " [19.61098448 31.399912 ]\n", + " [14.23498451 31.40047985]\n", + " [ 8.85898454 31.40104771]\n", + " [ 3.48298457 31.40161556]\n", + " [30.35974431 0.72377647]\n", + " [24.98374433 0.72434432]\n", + " [19.60774436 0.72491217]\n", + " [14.23174439 0.72548003]\n", + " [ 8.85574442 0.72604788]\n", + " [ 3.47974445 0.72661573]\n", + " [ 1.58528416 29.504316 ]\n", + " [ 1.5847163 24.12831603]\n", + " [ 1.58414845 18.75231606]\n", + " [ 1.5835806 13.37631609]\n", + " [ 1.58301275 8.00031612]\n", + " [ 1.5824449 2.62431615]\n", + " [32.26048441 31.39857587]\n", + " [32.26048441 31.39857587]\n", + " [ 1.58224447 0.72681616]\n", + " [ 1.58224447 0.72681616]\n", + " [30.36278399 29.50127631]\n", + " [24.98678403 29.50184416]\n", + " [19.61078405 29.50241201]\n", + " [14.23478409 29.50297987]\n", + " [ 8.85878411 29.50354772]\n", + " [ 3.48278414 29.50411557]\n", + " [30.36221615 24.12527634]\n", + " [24.98621618 24.12584419]\n", + " [19.6102162 24.12641204]\n", + " [14.23421623 24.1269799 ]\n", + " [ 8.85821626 24.12754775]\n", + " [ 3.48221629 24.1281156 ]\n", + " [30.36164829 18.74927637]\n", + " [24.98564832 18.74984422]\n", + " [19.60964835 18.75041208]\n", + " [14.23364838 18.75097993]\n", + " [ 8.85764841 18.75154778]\n", + " [ 3.48164844 18.75211563]\n", + " [30.36108043 13.3732764 ]\n", + " [24.98508046 13.37384425]\n", + " [19.60908049 13.3744121 ]\n", + " [14.23308053 13.37497996]\n", + " [ 8.85708056 13.37554781]\n", + " [ 3.48108059 13.37611567]\n", + " [30.36051258 7.99727643]\n", + " [24.98451261 7.99784428]\n", + " [19.60851265 7.99841214]\n", + " [14.23251268 7.99897999]\n", + " [ 8.85651271 7.99954784]\n", + " [ 3.48051273 8.00011569]\n", + " [30.35994473 2.62127646]\n", + " [24.98394476 2.62184431]\n", + " [19.60794479 2.62241216]\n", + " [14.23194482 2.62298002]\n", + " [ 8.85594485 2.62354787]\n", + " [ 3.47994488 2.62411572]]\n", + "DEBUG:root:optics_fp: xyfp shape: (96, 2)\n", + "DEBUG:root:make_az_asym: xyp: [[ 0.173161 -31.45819714]\n", + " [ 0.17304708 -27.07176857]\n", + " [ 0.17293316 -22.68534 ]\n", + " [ 0.17281925 -18.29891143]\n", + " [ 0.17270533 -13.91248287]\n", + " [ 0.17259141 -9.52605429]\n", + " [ 0.17247749 -5.13962573]\n", + " [ 0.17236358 -0.75319715]\n", + " [ 0.173161 -31.45819714]\n", + " [ 4.55958957 -31.45808322]\n", + " [ 8.94601814 -31.45796931]\n", + " [ 13.33244671 -31.45785538]\n", + " [ 17.71887528 -31.45774147]\n", + " [ 22.10530385 -31.45762756]\n", + " [ 26.49173242 -31.45751363]\n", + " [ 30.87816099 -31.45739971]\n", + " [ 0.17236358 -0.75319715]\n", + " [ 4.55879215 -0.75308323]\n", + " [ 8.94522072 -0.75296932]\n", + " [ 13.33164929 -0.7528554 ]\n", + " [ 17.71807786 -0.75274148]\n", + " [ 22.10450643 -0.75262756]\n", + " [ 26.490935 -0.75251364]\n", + " [ 30.87736356 -0.75239973]\n", + " [ 30.87816099 -31.45739971]\n", + " [ 30.87804707 -27.07097114]\n", + " [ 30.87793315 -22.68454257]\n", + " [ 30.87781924 -18.29811401]\n", + " [ 30.87770532 -13.91168544]\n", + " [ 30.87759141 -9.52525687]\n", + " [ 30.87747749 -5.1388283 ]\n", + " [ 30.87736356 -0.75239973]\n", + " [ 0.18811133 -29.54569675]\n", + " [ 0.18797171 -24.16969676]\n", + " [ 0.1878321 -18.79369675]\n", + " [ 0.18769248 -13.41769676]\n", + " [ 0.18755286 -8.04169676]\n", + " [ 0.18741324 -2.66569676]\n", + " [ 2.08566061 -31.44314748]\n", + " [ 7.46166061 -31.44300785]\n", + " [ 12.83766061 -31.44286824]\n", + " [ 18.2136606 -31.44272862]\n", + " [ 23.5896606 -31.442589 ]\n", + " [ 28.9656606 -31.44244938]\n", + " [ 2.08486397 -0.76814748]\n", + " [ 7.46086396 -0.76800786]\n", + " [ 12.83686396 -0.76786825]\n", + " [ 18.21286396 -0.76772863]\n", + " [ 23.58886395 -0.76758901]\n", + " [ 28.96486395 -0.7674494 ]\n", + " [ 30.86311132 -29.54490011]\n", + " [ 30.86297171 -24.16890011]\n", + " [ 30.86283209 -18.79290011]\n", + " [ 30.86269247 -13.41690011]\n", + " [ 30.86255285 -8.04090011]\n", + " [ 30.86241323 -2.66490012]\n", + " [ 0.18816061 -31.44319675]\n", + " [ 0.18816061 -31.44319675]\n", + " [ 30.86236396 -0.76740012]\n", + " [ 30.86236396 -0.76740012]\n", + " [ 2.08561133 -29.54564748]\n", + " [ 7.46161133 -29.54550785]\n", + " [ 12.83761133 -29.54536824]\n", + " [ 18.21361133 -29.54522862]\n", + " [ 23.58961132 -29.545089 ]\n", + " [ 28.96561132 -29.54494938]\n", + " [ 2.08547171 -24.16964747]\n", + " [ 7.46147171 -24.16950786]\n", + " [ 12.83747171 -24.16936824]\n", + " [ 18.21347171 -24.16922862]\n", + " [ 23.58947171 -24.16908901]\n", + " [ 28.9654717 -24.16894939]\n", + " [ 2.0853321 -18.79364747]\n", + " [ 7.46133209 -18.79350785]\n", + " [ 12.83733209 -18.79336824]\n", + " [ 18.21333209 -18.79322862]\n", + " [ 23.58933209 -18.79308901]\n", + " [ 28.96533209 -18.79294939]\n", + " [ 2.08519248 -13.41764748]\n", + " [ 7.46119248 -13.41750786]\n", + " [ 12.83719247 -13.41736824]\n", + " [ 18.21319248 -13.41722863]\n", + " [ 23.58919247 -13.41708901]\n", + " [ 28.96519247 -13.41694939]\n", + " [ 2.08505286 -8.04164748]\n", + " [ 7.46105286 -8.04150786]\n", + " [ 12.83705286 -8.04136825]\n", + " [ 18.21305286 -8.04122863]\n", + " [ 23.58905286 -8.04108901]\n", + " [ 28.96505285 -8.04094939]\n", + " [ 2.08491324 -2.66564748]\n", + " [ 7.46091324 -2.66550786]\n", + " [ 12.83691324 -2.66536825]\n", + " [ 18.21291324 -2.66522863]\n", + " [ 23.58891323 -2.66508901]\n", + " [ 28.96491324 -2.66494939]]\n", + "DEBUG:root:make_az_asym: xyp: shape: (96, 2)\n", + "DEBUG:root:radec2pix: ccdpx: [[-4.45000000e+01 -5.00000033e-01]\n", + " [-4.45000003e+01 2.91928571e+02]\n", + " [-4.45000002e+01 5.84357143e+02]\n", + " [-4.44999998e+01 8.76785714e+02]\n", + " [-4.44999998e+01 1.16921429e+03]\n", + " [-4.45000001e+01 1.46164286e+03]\n", + " [-4.44999997e+01 1.75407143e+03]\n", + " [-4.45000002e+01 2.04650000e+03]\n", + " [-4.45000000e+01 -5.00000033e-01]\n", + " [ 2.47928571e+02 -4.99999990e-01]\n", + " [ 5.40357143e+02 -5.00000111e-01]\n", + " [ 8.32785714e+02 -5.00000066e-01]\n", + " [ 1.12521429e+03 -4.99999995e-01]\n", + " [ 1.41764286e+03 -5.00000140e-01]\n", + " [ 1.71007143e+03 -5.00000040e-01]\n", + " [ 2.00250000e+03 -5.00000296e-01]\n", + " [-4.45000002e+01 2.04650000e+03]\n", + " [ 2.47928572e+02 2.04650000e+03]\n", + " [ 5.40357143e+02 2.04650000e+03]\n", + " [ 8.32785714e+02 2.04650000e+03]\n", + " [ 1.12521429e+03 2.04650000e+03]\n", + " [ 1.41764286e+03 2.04650000e+03]\n", + " [ 1.71007143e+03 2.04650000e+03]\n", + " [ 2.00250000e+03 2.04650000e+03]\n", + " [ 2.00250000e+03 -5.00000296e-01]\n", + " [ 2.00250000e+03 2.91928572e+02]\n", + " [ 2.00250000e+03 5.84357143e+02]\n", + " [ 2.00250000e+03 8.76785714e+02]\n", + " [ 2.00250000e+03 1.16921429e+03]\n", + " [ 2.00250000e+03 1.46164286e+03]\n", + " [ 2.00250000e+03 1.75407143e+03]\n", + " [ 2.00250000e+03 2.04650000e+03]\n", + " [-4.34999999e+01 1.27000000e+02]\n", + " [-4.35000000e+01 4.85400000e+02]\n", + " [-4.35000001e+01 8.43800000e+02]\n", + " [-4.35000001e+01 1.20220000e+03]\n", + " [-4.34999998e+01 1.56060000e+03]\n", + " [-4.34999998e+01 1.91900000e+03]\n", + " [ 8.29999999e+01 4.99999893e-01]\n", + " [ 4.41400000e+02 5.00000055e-01]\n", + " [ 7.99800000e+02 4.99999998e-01]\n", + " [ 1.15820000e+03 5.00000122e-01]\n", + " [ 1.51660000e+03 4.99999912e-01]\n", + " [ 1.87500000e+03 5.00000160e-01]\n", + " [ 8.30000002e+01 2.04550000e+03]\n", + " [ 4.41400000e+02 2.04550000e+03]\n", + " [ 7.99800000e+02 2.04550000e+03]\n", + " [ 1.15820000e+03 2.04550000e+03]\n", + " [ 1.51660000e+03 2.04550000e+03]\n", + " [ 1.87500000e+03 2.04550000e+03]\n", + " [ 2.00150000e+03 1.27000000e+02]\n", + " [ 2.00150000e+03 4.85400000e+02]\n", + " [ 2.00150000e+03 8.43800000e+02]\n", + " [ 2.00150000e+03 1.20220000e+03]\n", + " [ 2.00150000e+03 1.56060000e+03]\n", + " [ 2.00150000e+03 1.91900000e+03]\n", + " [-4.35000001e+01 4.99999931e-01]\n", + " [-4.35000001e+01 4.99999931e-01]\n", + " [ 2.00150000e+03 2.04550000e+03]\n", + " [ 2.00150000e+03 2.04550000e+03]\n", + " [ 8.30000000e+01 1.27000000e+02]\n", + " [ 4.41400000e+02 1.27000000e+02]\n", + " [ 7.99800000e+02 1.27000000e+02]\n", + " [ 1.15820000e+03 1.27000000e+02]\n", + " [ 1.51660000e+03 1.27000000e+02]\n", + " [ 1.87500000e+03 1.27000000e+02]\n", + " [ 8.29999999e+01 4.85400000e+02]\n", + " [ 4.41400000e+02 4.85400000e+02]\n", + " [ 7.99800000e+02 4.85400000e+02]\n", + " [ 1.15820000e+03 4.85400000e+02]\n", + " [ 1.51660000e+03 4.85400000e+02]\n", + " [ 1.87500000e+03 4.85400000e+02]\n", + " [ 8.29999999e+01 8.43800000e+02]\n", + " [ 4.41400000e+02 8.43800000e+02]\n", + " [ 7.99800000e+02 8.43800000e+02]\n", + " [ 1.15820000e+03 8.43800000e+02]\n", + " [ 1.51660000e+03 8.43800000e+02]\n", + " [ 1.87500000e+03 8.43800000e+02]\n", + " [ 8.30000001e+01 1.20220000e+03]\n", + " [ 4.41400000e+02 1.20220000e+03]\n", + " [ 7.99800000e+02 1.20220000e+03]\n", + " [ 1.15820000e+03 1.20220000e+03]\n", + " [ 1.51660000e+03 1.20220000e+03]\n", + " [ 1.87500000e+03 1.20220000e+03]\n", + " [ 8.29999998e+01 1.56060000e+03]\n", + " [ 4.41400000e+02 1.56060000e+03]\n", + " [ 7.99800000e+02 1.56060000e+03]\n", + " [ 1.15820000e+03 1.56060000e+03]\n", + " [ 1.51660000e+03 1.56060000e+03]\n", + " [ 1.87500000e+03 1.56060000e+03]\n", + " [ 8.30000002e+01 1.91900000e+03]\n", + " [ 4.41400000e+02 1.91900000e+03]\n", + " [ 7.99800000e+02 1.91900000e+03]\n", + " [ 1.15820000e+03 1.91900000e+03]\n", + " [ 1.51660000e+03 1.91900000e+03]\n", + " [ 1.87500000e+03 1.91900000e+03]]\n", + "DEBUG:root:radec2pix: fitpx: [[2135.5 4155.50000026]\n", + " [2135.5 3863.07142876]\n", + " [2135.5 3570.64285709]\n", + " [2135.5 3278.21428545]\n", + " [2135.5 2985.7857141 ]\n", + " [2135.49999999 2693.35714316]\n", + " [2135.50000001 2400.9285712 ]\n", + " [2135.49999993 2108.50000021]\n", + " [2135.5 4155.50000026]\n", + " [1843.07142855 4155.50000013]\n", + " [1550.64285715 4155.49999996]\n", + " [1258.2142856 4155.50000027]\n", + " [ 965.78571429 4155.49999999]\n", + " [ 673.357143 4155.4999998 ]\n", + " [ 380.92857155 4155.49999986]\n", + " [ 88.49999976 4155.50000025]\n", + " [2135.49999993 2108.50000021]\n", + " [1843.07142817 2108.50000006]\n", + " [1550.64285738 2108.49999998]\n", + " [1258.21428605 2108.49999998]\n", + " [ 965.78571448 2108.49999999]\n", + " [ 673.35714251 2108.50000001]\n", + " [ 380.92857138 2108.5 ]\n", + " [ 88.50000013 2108.5 ]\n", + " [ 88.49999976 4155.50000025]\n", + " [ 88.49999974 3863.0714288 ]\n", + " [ 88.49999989 3570.64285722]\n", + " [ 88.50000025 3278.21428557]\n", + " [ 88.50000013 2985.78571423]\n", + " [ 88.49999977 2693.35714293]\n", + " [ 88.49999999 2400.92857143]\n", + " [ 88.50000013 2108.5 ]\n", + " [2134.5 4028.00000018]\n", + " [2134.5 3669.59999979]\n", + " [2134.5 3311.20000021]\n", + " [2134.5 2952.80000004]\n", + " [2134.5 2594.39999994]\n", + " [2134.50000001 2235.99999988]\n", + " [2007.99999999 4154.50000011]\n", + " [1649.6 4154.5 ]\n", + " [1291.20000005 4154.49999987]\n", + " [ 932.80000005 4154.49999992]\n", + " [ 574.4 4154.5 ]\n", + " [ 216. 4154.5 ]\n", + " [2008.00000002 2109.49999999]\n", + " [1649.60000012 2109.49999999]\n", + " [1291.19999984 2109.50000001]\n", + " [ 932.79999968 2109.50000001]\n", + " [ 574.39999959 2109.50000001]\n", + " [ 215.99999972 2109.50000001]\n", + " [ 89.4999999 4028.0000001 ]\n", + " [ 89.50000007 3669.59999994]\n", + " [ 89.49999997 3311.20000002]\n", + " [ 89.50000023 2952.7999999 ]\n", + " [ 89.49999997 2594.40000001]\n", + " [ 89.4999998 2236.00000002]\n", + " [2134.5 4154.50000005]\n", + " [2134.5 4154.50000005]\n", + " [ 89.49999997 2109.5 ]\n", + " [ 89.49999997 2109.5 ]\n", + " [2008. 4027.99999997]\n", + " [1649.59999996 4028.00000014]\n", + " [1291.20000001 4027.99999998]\n", + " [ 932.79999987 4028.00000021]\n", + " [ 574.40000006 4027.99999993]\n", + " [ 215.9999998 4028.0000002 ]\n", + " [2008. 3669.59999996]\n", + " [1649.60000001 3669.59999998]\n", + " [1291.20000007 3669.59999987]\n", + " [ 932.79999997 3669.60000004]\n", + " [ 574.39999998 3669.60000002]\n", + " [ 215.99999986 3669.60000012]\n", + " [2008. 3311.20000004]\n", + " [1649.59999995 3311.20000012]\n", + " [1291.19999997 3311.20000005]\n", + " [ 932.80000015 3311.19999984]\n", + " [ 574.40000003 3311.19999997]\n", + " [ 216.00000001 3311.2 ]\n", + " [2007.99999998 2952.80000014]\n", + " [1649.60000006 2952.7999999 ]\n", + " [1291.20000015 2952.79999984]\n", + " [ 932.80000014 2952.7999999 ]\n", + " [ 574.39999986 2952.80000008]\n", + " [ 215.99999973 2952.80000012]\n", + " [2007.99999998 2594.40000007]\n", + " [1649.60000022 2594.39999977]\n", + " [1291.20000005 2594.39999997]\n", + " [ 932.79999996 2594.40000002]\n", + " [ 574.39999995 2594.40000002]\n", + " [ 216.00000004 2594.39999999]\n", + " [2008.00000021 2235.99999975]\n", + " [1649.59999975 2236.00000009]\n", + " [1291.20000026 2235.99999995]\n", + " [ 932.79999972 2236.00000004]\n", + " [ 574.39999974 2236.00000003]\n", + " [ 216.00000028 2235.99999998]]\n", + "DEBUG:root:fitpix2pix: ccdpx: shape: (96, 2)\n", + "DEBUG:root:radec2pix: xyfp: [[32.2358199 31.31614388]\n", + " [32.23338667 26.92971599]\n", + " [32.23095344 22.54328809]\n", + " [32.2285202 18.15686019]\n", + " [32.22608698 13.7704323 ]\n", + " [32.22365375 9.3840044 ]\n", + " [32.22122051 4.99757651]\n", + " [32.21878728 0.61114861]\n", + " [32.2358199 31.31614388]\n", + " [27.849392 31.31857712]\n", + " [23.46296411 31.32101035]\n", + " [19.07653621 31.32344358]\n", + " [14.69010831 31.3258768 ]\n", + " [10.30368042 31.32831004]\n", + " [ 5.91725252 31.33074327]\n", + " [ 1.53082462 31.3331765 ]\n", + " [32.21878728 0.61114861]\n", + " [27.83235938 0.61358184]\n", + " [23.44593149 0.61601507]\n", + " [19.0595036 0.6184483 ]\n", + " [14.6730757 0.62088153]\n", + " [10.2866478 0.62331476]\n", + " [ 5.90021991 0.625748 ]\n", + " [ 1.513792 0.62818122]\n", + " [ 1.53082462 31.3331765 ]\n", + " [ 1.52839139 26.94674861]\n", + " [ 1.52595816 22.5603207 ]\n", + " [ 1.52352493 18.17389281]\n", + " [ 1.5210917 13.78746492]\n", + " [ 1.51865847 9.40103702]\n", + " [ 1.51622524 5.01460912]\n", + " [ 1.513792 0.62818122]\n", + " [32.219759 29.4036525 ]\n", + " [32.21677684 24.02765333]\n", + " [32.21379467 18.65165415]\n", + " [32.21081251 13.27565498]\n", + " [32.20783035 7.89965581]\n", + " [32.20484818 2.52365664]\n", + " [30.32331188 31.30220479]\n", + " [24.9473127 31.30518695]\n", + " [19.57131353 31.30816912]\n", + " [14.19531435 31.31115127]\n", + " [ 8.81931518 31.31413344]\n", + " [ 3.44331601 31.3171156 ]\n", + " [30.3062959 0.62720951]\n", + " [24.93029672 0.63019167]\n", + " [19.55429755 0.63317383]\n", + " [14.17829838 0.636156 ]\n", + " [ 8.80229921 0.63913816]\n", + " [ 3.42630004 0.64212033]\n", + " [ 1.54476372 29.42066847]\n", + " [ 1.54178156 24.0446693 ]\n", + " [ 1.53879939 18.66867013]\n", + " [ 1.53581723 13.29267096]\n", + " [ 1.53283507 7.91667178]\n", + " [ 1.5298529 2.54067261]\n", + " [32.22081158 31.30115221]\n", + " [32.22081158 31.30115221]\n", + " [ 1.52880032 0.6431729 ]\n", + " [ 1.52880032 0.6431729 ]\n", + " [30.32225929 29.40470508]\n", + " [24.94626012 29.40768724]\n", + " [19.57026095 29.41066941]\n", + " [14.19426178 29.41365157]\n", + " [ 8.8182626 29.41663373]\n", + " [ 3.44226343 29.4196159 ]\n", + " [30.31927713 24.02870591]\n", + " [24.94327796 24.03168807]\n", + " [19.56727878 24.03467023]\n", + " [14.19127961 24.0376524 ]\n", + " [ 8.81528044 24.04063456]\n", + " [ 3.43928127 24.04361672]\n", + " [30.31629496 18.65270673]\n", + " [24.9402958 18.6556889 ]\n", + " [19.56429662 18.65867106]\n", + " [14.18829744 18.66165322]\n", + " [ 8.81229827 18.66463538]\n", + " [ 3.4362991 18.66761755]\n", + " [30.31331281 13.27670756]\n", + " [24.93731363 13.27968972]\n", + " [19.56131446 13.28267189]\n", + " [14.18531529 13.28565406]\n", + " [ 8.80931611 13.28863621]\n", + " [ 3.43331694 13.29161838]\n", + " [30.31033064 7.90070839]\n", + " [24.93433147 7.90369055]\n", + " [19.55833229 7.90667271]\n", + " [14.18233312 7.90965488]\n", + " [ 8.80633395 7.91263704]\n", + " [ 3.43033477 7.9156192 ]\n", + " [30.30734847 2.52470921]\n", + " [24.9313493 2.52769138]\n", + " [19.55535013 2.5DEBUG:root:fitpix2pix: visCut: True\n", + "3067354]\n", + " [14.17935096 2.53365571]\n", + " [ 8.80335178 2.53663787]\n", + " [ 3.42735261 2.53962004]]\n", + "DEBUG:root:make_az_asym: xyp: [[32.275486 31.41357429]\n", + " [32.27502267 27.02714574]\n", + " [32.27455935 22.64071719]\n", + " [32.27409601 18.25428864]\n", + " [32.27363269 13.8678601 ]\n", + " [32.27316936 9.48143155]\n", + " [32.27270604 5.095003 ]\n", + " [32.27224271 0.70857446]\n", + " [32.275486 31.41357429]\n", + " [27.88905745 31.41403761]\n", + " [23.5026289 31.41450094]\n", + " [19.11620036 31.41496427]\n", + " [14.72977181 31.41542759]\n", + " [10.34334326 31.41589092]\n", + " [ 5.95691471 31.41635424]\n", + " [ 1.57048617 31.41681757]\n", + " [32.27224271 0.70857446]\n", + " [27.88581416 0.70903778]\n", + " [23.49938562 0.70950111]\n", + " [19.11295707 0.70996444]\n", + " [14.72652852 0.71042776]\n", + " [10.34009998 0.71089109]\n", + " [ 5.95367142 0.71135442]\n", + " [ 1.56724288 0.71181774]\n", + " [ 1.57048617 31.41681757]\n", + " [ 1.57002284 27.03038902]\n", + " [ 1.56955951 22.64396047]\n", + " [ 1.56909619 18.25753194]\n", + " [ 1.56863286 13.87110338]\n", + " [ 1.56816953 9.48467484]\n", + " [ 1.56770621 5.09824629]\n", + " [ 1.56724288 0.71181774]\n", + " [32.26028399 29.50107588]\n", + " [32.25971613 24.12507591]\n", + " [32.25914828 18.74907594]\n", + " [32.25858043 13.37307597]\n", + " [32.25801258 7.997076 ]\n", + " [32.25744472 2.62107603]\n", + " [30.36298443 31.3987763 ]\n", + " [24.98698446 31.39934415]\n", + " [19.61098448 31.399912 ]\n", + " [14.23498451 31.40047985]\n", + " [ 8.85898454 31.40104771]\n", + " [ 3.48298457 31.40161556]\n", + " [30.35974431 0.72377647]\n", + " [24.98374433 0.72434432]\n", + " [19.60774436 0.72491217]\n", + " [14.23174439 0.72548003]\n", + " [ 8.85574442 0.72604788]\n", + " [ 3.47974445 0.72661573]\n", + " [ 1.58528416 29.504316 ]\n", + " [ 1.5847163 24.12831603]\n", + " [ 1.58414845 18.75231606]\n", + " [ 1.5835806 13.37631609]\n", + " [ 1.58301275 8.00031612]\n", + " [ 1.5824449 2.62431615]\n", + " [32.26048441 31.39857587]\n", + " [32.26048441 31.39857587]\n", + " [ 1.58224447 0.72681616]\n", + " [ 1.58224447 0.72681616]\n", + " [30.36278399 29.50127631]\n", + " [24.98678403 29.50184416]\n", + " [19.61078405 29.50241201]\n", + " [14.23478409 29.50297987]\n", + " [ 8.85878411 29.50354772]\n", + " [ 3.48278414 29.50411557]\n", + " [30.36221615 24.12527634]\n", + " [24.98621618 24.12584419]\n", + " [19.6102162 24.12641204]\n", + " [14.23421623 24.1269799 ]\n", + " [ 8.85821626 24.12754775]\n", + " [ 3.48221629 24.1281156 ]\n", + " [30.36164829 18.74927637]\n", + " [24.98564832 18.74984422]\n", + " [19.60964835 18.75041208]\n", + " [14.23364838 18.75097993]\n", + " [ 8.85764841 18.75154778]\n", + " [ 3.48164844 18.75211563]\n", + " [30.36108043 13.3732764 ]\n", + " [24.98508046 13.37384425]\n", + " [19.60908049 13.3744121 ]\n", + " [14.23308053 13.37497996]\n", + " [ 8.85708056 13.37554781]\n", + " [ 3.48108059 13.37611567]\n", + " [30.36051258 7.99727643]\n", + " [24.98451261 7.99784428]\n", + " [19.60851265 7.99841214]\n", + " [14.23251268 7.99897999]\n", + " [ 8.85651271 7.99954784]\n", + " [ 3.48051273 8.00011569]\n", + " [30.35994473 2.62127646]\n", + " [24.98394476 2.62184431]\n", + " [19.60794479 2.62241216]\n", + " [14.23194482 2.62298002]\n", + " [ 8.85594485 2.62354787]\n", + " [ 3.47994488 2.62411572]]\n", + "DEBUG:root:make_az_asym: xyp: shape: (96, 2)\n", + "DEBUG:root:radec2pix: xyfp: [[ 0.173161 -31.45819714]\n", + " [ 0.17304708 -27.07176857]\n", + " [ 0.17293316 -22.68534 ]\n", + " [ 0.17281925 -18.29891143]\n", + " [ 0.17270533 -13.91248287]\n", + " [ 0.17259141 -9.52605429]\n", + " [ 0.17247749 -5.13962573]\n", + " [ 0.17236358 -0.75319715]\n", + " [ 0.173161 -31.45819714]\n", + " [ 4.55958957 -31.45808322]\n", + " [ 8.94601814 -31.45796931]\n", + " [ 13.33244671 -31.45785538]\n", + " [ 17.71887528 -31.45774147]\n", + " [ 22.10530385 -31.45762756]\n", + " [ 26.49173242 -31.45751363]\n", + " [ 30.87816099 -31.45739971]\n", + " [ 0.17236358 -0.75319715]\n", + " [ 4.55879215 -0.75308323]\n", + " [ 8.94522072 -0.75296932]\n", + " [ 13.33164929 -0.7528554 ]\n", + " [ 17.71807786 -0.75274148]\n", + " [ 22.10450643 -0.75262756]\n", + " [ 26.490935 -0.75251364]\n", + " [ 30.87736356 -0.75239973]\n", + " [ 30.87816099 -31.45739971]\n", + " [ 30.87804707 -27.07097114]\n", + " [ 30.87793315 -22.68454257]\n", + " [ 30.87781924 -18.29811401]\n", + " [ 30.87770532 -13.91168544]\n", + " [ 30.87759141 -9.52525687]\n", + " [ 30.87747749 -5.1388283 ]\n", + " [ 30.87736356 -0.75239973]\n", + " [ 0.18811133 -29.54569675]\n", + " [ 0.18797171 -24.16969676]\n", + " [ 0.1878321 -18.79369675]\n", + " [ 0.18769248 -13.41769676]\n", + " [ 0.18755286 -8.04169676]\n", + " [ 0.18741324 -2.66569676]\n", + " [ 2.08566061 -31.44314748]\n", + " [ 7.46166061 -31.44300785]\n", + " [ 12.83766061 -31.44286824]\n", + " [ 18.2136606 -31.44272862]\n", + " [ 23.5896606 -31.442589 ]\n", + " [ 28.9656606 -31.44244938]\n", + " [ 2.08486397 -0.76814748]\n", + " [ 7.46086396 -0.76800786]\n", + " [ 12.83686396 -0.76786825]\n", + " [ 18.21286396 -0.76772863]\n", + " [ 23.58886395 -0.76758901]\n", + " [ 28.96486395 -0.7674494 ]\n", + " [ 30.86311132 -29.54490011]\n", + " [ 30.86297171 -24.16890011]\n", + " [ 30.86283209 -18.79290011]\n", + " [ 30.86269247 -13.41690011]\n", + " [ 30.86255285 -8.04090011]\n", + " [ 30.86241323 -2.66490012]\n", + " [ 0.18816061 -31.44319675]\n", + " [ 0.18816061 -31.44319675]\n", + " [ 30.86236396 -0.76740012]\n", + " [ 30.86236396 -0.76740012]\n", + " [ 2.08561133 -29.54564748]\n", + " [ 7.46161133 -29.54550785]\n", + " [ 12.83761133 -29.54536824]\n", + " [ 18.21361133 -29.54522862]\n", + " [ 23.58961132 -29.545089 ]\n", + " [ 28.96561132 -29.54494938]\n", + " [ 2.08547171 -24.16964747]\n", + " [ 7.46147171 -24.16950786]\n", + " [ 12.83747171 -24.16936824]\n", + " [ 18.21347171 -24.16922862]\n", + " [ 23.58947171 -24.16908901]\n", + " [ 28.9654717 -24.16894939]\n", + " [ 2.0853321 -18.79364747]\n", + " [ 7.46133209 -18.79350785]\n", + " [ 12.83733209 -18.79336824]\n", + " DEBUG:root:radec2pix: fitpx: [[2135.5 4155.50000026]\n", + " [2135.5 3863.07142876]\n", + " [2135.5 3570.64285709]\n", + " [2135.5 3278.21428545]\n", + " [2135.5 2985.7857141 ]\n", + " [2135.49999999 2693.35714316]\n", + " [2135.50000001 2400.9285712 ]\n", + " [2135.49999993 2108.50000021]\n", + " [2135.5 4155.50000026]\n", + " [1843.07142855 4155.50000013]\n", + " [1550.64285715 4155.49999996]\n", + " [1258.2142856 4155.50000027]\n", + " [ 965.78571429 4155.49999999]\n", + " [ 673.357143 4155.4999998 ]\n", + " [ 380.92857155 4155.49999986]\n", + " [ 88.49999976 4155.50000025]\n", + " [2135.49999993 2108.50000021]\n", + " [1843.07142817 2108.50000006]\n", + " [1550.64285738 2108.49999998]\n", + " [1258.21428605 2108.49999998]\n", + " [ 965.78571448 2108.49999999]\n", + " [ 673.35714251 2108.50000001]\n", + " [ 380.92857138 2108.5 ]\n", + " [ 88.50000013 2108.5 ]\n", + " [ 88.49999976 4155.50000025]\n", + " [ 88.49999974 3863.0714288 ]\n", + " [ 88.49999989 3570.64285722]\n", + " [ 88.50000025 3278.21428557]\n", + " [ 88.50000013 2985.78571423]\n", + " [ 88.49999977 2693.35714293]\n", + " [ 88.49999999 2400.92857143]\n", + " [ 88.500[ 18.21333209 -18.79322862]\n", + " [ 23.58933209 -18.79308901]\n", + " [ 28.96533209 -18.79294939]\n", + " [ 2.08519248 -13.41764748]\n", + " [ 7.46119248 -13.41750786]\n", + " [ 12.83719247 -13.41736824]\n", + " [ 18.21319248 -13.41722863]\n", + " [ 23.58919247 -13.41708901]\n", + " [ 28.96519247 -13.41694939]\n", + " [ 2.08505286 -8.04164748]\n", + " [ 7.46105286 -8.04150786]\n", + " [ 12.83705286 -8.04136825]\n", + " [ 18.21305286 -8.04122863]\n", + " [ 23.58905286 -8.04108901]\n", + " [ 28.96505285 -8.04094939]\n", + " [ 2.08491324 -2.66564748]\n", + " [ 7.46091324 -2.66550786]\n", + " [ 12.83691324 -2.66536825]\n", + " [ 18.21291324 -2.66522863]\n", + " [ 23.58891323 -2.66508901]\n", + " [ 28.96491324 -2.66494939]]\n", + "DEBUG:root:radec2pix: xyfp Shape: (96, 2)\n", + "DEBUG:root:radec2pix: xyfp: [[32.275486 31.41357429]\n", + " [32.27502267 27.02714574]\n", + " [32.27455935 22.64071719]\n", + " [32.27409601 18.25428864]\n", + " [32.27363269 13.8678601 ]\n", + " [32.27316936 9.48143155]\n", + " [32.27270604 5.095003 ]\n", + " [32.27224271 0.70857446]\n", + " [32.275486 31.41357429]\n", + " [27.88905745 31.41403761]\n", + " [23.5026289 31.41450094]\n", + " [19.11620036 31.41496427]\n", + " [14.72977181 31.41542759]\n", + " [10.34334326 31.41589092]\n", + " [ 5.95691471 31.41635424]\n", + " [ 1.57048617 31.41681757]\n", + " [32.27224271 0.70857446]\n", + " [27.88581416 0.70903778]\n", + " [23.49938562 0.70950111]\n", + " [19.11295707 0.70996444]\n", + " [14.72652852 0.71042776]\n", + " [10.34009998 0.71089109]\n", + " [ 5.95367142 0.71135442]\n", + " [ 1.56724288 0.71181774]\n", + " [ 1.57048617 31.41681757]\n", + " [ 1.57002284 27.03038902]\n", + " [ 1.56955951 22.64396047]\n", + " [ 1.56909619 18.25753194]\n", + " [ 1.56863286 13.87110338]\n", + " [ 1.56816953 9.48467484]\n", + " [ 1.56770621 5.09824629]\n", + " [ 1.56724288 0.71181774]\n", + " [32.26028399 29.50107588]\n", + " [32.25971613 24.12507591]\n", + " [32.25914828 18.74907594]\n", + " [32.25858043 13.37307597]\n", + " [32.25801258 7.997076 ]\n", + " [32.25744472 2.62107603]\n", + " [30.36298443 31.3987763 ]\n", + " [24.98698446 31.39934415]\n", + " [19.61098448 31.399912 ]\n", + " [14.23498451 31.40047985]\n", + " [ 8.85898454 31.40104771]\n", + " [ 3.48298457 31.40161556]\n", + " [30.35974431 0.72377647]\n", + " [24.98374433 0.72434432]\n", + " [19.60774436 0.72491217]\n", + " [14.23174439 0.72548003]\n", + " [ 8.85574442 0.72604788]\n", + " [ 3.47974445 0.72661573]\n", + " [ 1.58528416 29.504316 ]\n", + " [ 1.5847163 24.12831603]\n", + " [ 1.58414845 18.75231606]\n", + " [ 1.5835806 13.37631609]\n", + " [ 1.58301275 8.00031612]\n", + " [ 1.5824449 2.62431615]\n", + " [32.26048441 31.39857587]\n", + " [32.26048441 31.39857587]\n", + " [ 1.58224447 0.72681616]\n", + " [ 1.58224447 0.72681616]\n", + " [30.36278399 29.50127631]\n", + " [24.98678403 29.50184416]\n", + " [19.61078405 29.50241201]\n", + " [14.23478409 29.50297987]\n", + " [ 8.85878411 29.50354772]\n", + " [ 3.48278414 29.50411557]\n", + " [30.36221615 24.12527634]\n", + " [24.98621618 24.12584419]\n", + " [19.6102162 24.12641204]\n", + " [14.23421623 24.1269799 ]\n", + " [ 8.85821626 24.12754775]\n", + " [ 3.48221629 24.1281156 ]\n", + " [30.36164829 18.74927637]\n", + " [24.98564832 18.74984422]\n", + " [19.60964835 18.75041208]\n", + " [14.23364838 18.75097993]\n", + " [ 8.85764841 18.75154778]\n", + " [ 3.48164844 18.75211563]\n", + " [30.36108043 13.3732764 ]\n", + " [24.98508046 13.37384425]\n", + " [19.60908049 13.3744121 ]\n", + " [14.23308053 13.37497996]\n", + " [ 8.85708056 13.37554781]\n", + " [ 3.48108059 13.37611567]\n", + " [30.36051258 7.99727643]\n", + " [24.98451261 7.99784428]\n", + " [19.60851265 7.99841214]\n", + " [14.23251268 7.99897999]\n", + " [ 8.85651271 7.99954784]\n", + " [ 3.48051273 8.00011569]\n", + " [30.35994473 2.62127646]\n", + " [24.98394476 2.62184431]\n", + " [19.60794479 2.62241216]\n", + " [14.23194482 2.62298002]\n", + " [ 8.85594485 2.62354787]\n", + " [ 3.47994488 2.62411572]]\n", + "00013 2108.5 ]\n", + " [2134.5 4028.00000018]\n", + " [2134.5 3669.59999979]\n", + " [2134.5 3311.20000021]\n", + " [2134.5 2952.80000004]\n", + " [2134.5 2594.39999994]\n", + " [2134.50000001 2235.99999988]\n", + " [2007.99999999 4154.50000011]\n", + " [1649.6 4154.5 ]\n", + " [1291.20000005 4154.49999987]\n", + " [ 932.80000005 4154.49999992]\n", + " [ 574.4 4154.5 ]\n", + " [ 216. 4154.5 ]\n", + " [2008.00000002 2109.49999999]\n", + " [1649.60000012 2109.49999999]\n", + " [1291.19999984 2109.50000001]\n", + " [ 932.79999968 2109.50000001]\n", + " [ 574.39999959 2109.50000001]\n", + " [ 215.99999972 2109.50000001]\n", + " [ 89.4999999 4028.0000001 ]\n", + " [ 89.50000007 3669.59999994]\n", + " [ 89.49999997 3311.20000002]\n", + " [ 89.50000023 2952.7999999 ]\n", + " [ 89.49999997 2594.4000DEBUG:root:radec2pix: xyfp: [[ -0.24606 31.536148 ]\n", + " [ -0.24606 27.14971943]\n", + " [ -0.24606 22.76329086]\n", + " [ -0.24606 18.37686229]\n", + " [ -0.24606 13.99043371]\n", + " [ -0.24606 9.60400514]\n", + " [ -0.24606 5.21757658]\n", + " [ -0.24606 0.831148 ]\n", + " [ -0.24606 31.536148 ]\n", + " [ -4.63248857 31.536148 ]\n", + " [ -9.01891714 31.536148 ]\n", + " [-13.40534571 31.536148 ]\n", + " [-17.79177429 31.536148 ]\n", + " [-22.17820286 31.536148 ]\n", + " [-26.56463143 31.536148 ]\n", + " [-30.95106 31.536148 ]\n", + " [ -0.24606 0.831148 ]\n", + " [ -4.63248857 0.831148 ]\n", + " [ -9.01891714 0.831148 ]\n", + " [-13.40534571 0.831148 ]\n", + " [-17.79177429 0.831148 ]\n", + " [-22.17820285 0.831148 ]\n", + " [-26.56463143 0.831148 ]\n", + " [-30.95106 0.831148 ]\n", + " [-30.95106 31.536148 ]\n", + " [-30.95106 27.14971943]\n", + " [-30.95106 22.76329086]\n", + " [-30.95106 18.37686228]\n", + " [-30.95106 13.99043371]\n", + " [-30.95106 9.60400514]\n", + " [-30.95106 5.21757657]\n", + " [-30.95106 0.831148 ]\n", + " [ -0.26106 29.623648 ]\n", + " [ -0.26106 DEBUG:root:radec2pix: fitpx: [[-5.00000034e-01 -5.00000033e-01]\n", + " [-5.00000269e-01 2.91928571e+02]\n", + " [-5.00000171e-01 5.84357143e+02]\n", + " [-4.99999761e-01 8.76785714e+02]\n", + " [-4.99999835e-01 1.16921429e+03]\n", + " [-5.00000099e-01 1.46164286e+03]\n", + " [-4.99999719e-01 1.75407143e+03]\n", + " [-5.00000225e-01 2.04650000e+03]\n", + " [-5.00000034e-01 -5.00000033e-01]\n", + " [ 2.91928571e+02 -4.99999990e-01]\n", + " [ 5.84357143e+02 -5.00000111e-01]\n", + " [ 8.76785714e+02 -5.00000066e-01]\n", + " [ 1.16921429e+03 -4.99999995e-01]\n", + " [ 1.46164286e+03 -5.00000140e-01]\n", + " [ 1.75407143e+03 -5.00000040e-01]\n", + " [ 2.04650000e+03 -5.00000296e-01]\n", + " [-5.00000225e-01 2.04650000e+03]\n", + " [ 2.91928572e+02 2.04650000e+03]\n", + " [ 5.84357143e+02 2.04650000e+03]\n", + " [ 8.76785714e+02 2.04650000e+03]\n", + " [ 1.16921429e+03 2.04650000e+03]\n", + " [ 1.46164286e+03 2.04650000e+03]\n", + " [ 1.75407143e+03 2.04650000e+03]\n", + " [ 2.04650000e+03 2.04650000e+03]\n", + " [ 2.04650000e+03 -5.00000296e-01]\n", + " [ 2.04650000e+03 2.91928572e+02]\n", + " [ 2.04650000e+03 5.84357143e+02]\n", + " [ 2.04650000e+03 8.767850001]\n", + " [ 89.4999998 2236.00000002]\n", + " [2134.5 4154.50000005]\n", + " [2134.5 4154.50000005]\n", + " [ 89.49999997 2109.5 ]\n", + " [ 89.49999997 2109.5 ]\n", + " [2008. 4027.99999997]\n", + " [1649.59999996 4028.00000014]\n", + " [1291.20000001 4027.99999998]\n", + " [ 932.79999987 4028.00000021]\n", + " [ 574.40000006 4027.99999993]\n", + " [ 215.9999998 4028.0000002 ]\n", + " [2008. 3669.59999996]\n", + " [1649.60000001 3669.59999998]\n", + " [1291.20000007 3669.59999987]\n", + " [ 932.79999997 3669.60000004]\n", + " [ 574.39999998 3669.60000002]\n", + " [ 215.99999986 3669.60000012]\n", + " [2008. 3311.20000004]\n", + " [1649.59999995 3311.20000012]\n", + " [1291.19999997 3311.20000005]\n", + " [ 932.80000015 3311.19999984]\n", + " [ 574.40000003 3311.19999997]\n", + " [ 216.00000001 3311.2 ]\n", + " [2007.99999998 2952.80000014]\n", + " [1649.60000006 2952.7999999 ]\n", + " [1291.20000015 2952.79999984]\n", + " [ 932.80000014 2952.7999999 ]\n", + " [ 574.39999986 2952.80000008]\n", + " [ 215.99999973 2952.80000012]\n", + " [2007.99999998 2594.40000007]\n", + " [1649.60000022 2594.39999977]\n", + " [1291.20000005 2594.39999997]\n", + " [ 932.79999996 2594.40000002]\n", + " [ 574.39999995 2594.40000002]\n", + " [ 216.00000004 2594.39999999]\n", + " [2008.00000021 2235.99999975]\n", + " [1649.59999975 2236.00000009]\n", + " [1291.20000026 2235.99999995]\n", + " [ 932.79999972 2236.00000004]\n", + " [ 574.39999974 2236.00000003]\n", + " [ 216.00000028 2235.99999998]]\n", + "DEBUG:root:radec2pix: xyfp Shape: (96, 2)\n", + "DEBUG:root:radec2pix: ccdpx: [[-4.44999999e+01 -4.99999855e-01]\n", + " [-4.45000000e+01 2.91928571e+02]\n", + " [-4.45000000e+01 5.84357143e+02]\n", + " [-4.44999998e+01 8.76785714e+02]\n", + " [-4.45000001e+01 1.16921429e+03]\n", + " [-4.45000000e+01 1.46164286e+03]\n", + " [-4.45000000e+01 1.75407143e+03]\n", + " [-4.44999999e+01 2.04650000e+03]\n", + " [-4.44999999e+01 -4.99999855e-01]\n", + " [ 2.47928571e+02 -5.00000005e-01]\n", + " [ 5.40357143e+02 -5.00000101e-01]\n", + " [ 8.32785714e+02 -5.00000211e-01]\n", + " [ 1.12521429e+03 -4.99999718e-01]\n", + " [ 1.41764286e+03 -5.00000108e-01]\n", + " [ 1.71007143e+03 -4.99999976e-01]\n", + " [ 2.00250000e+03 -5.00000222e-01]\n", + " [-4.44999999e+01 2.04650000e+03]\n", + " [ 2.47928572e+02 2.04650000e+03]\n", + " [ 5.40357143e+02 2.04650000e+03]\n", + " [ 8.32785714e+02 2.04650000e+03]\n", + " [ 1.12521429e+03 2.04650000e+03]\n", + " [ 1.41764286e+03 2.04650000e+03]\n", + " [ 1.71007143e+03 2.04650000e+03]\n", + " [ 2.00250000e+03 2.04650000e+03]\n", + " [ 2.00250000e+03 -5.00000222e-01]\n", + " [ 2.00250000e+03 2.91928571e+02]\n", + " [ 2.00250000e+03 5.84357143e+02]\n", + " [ 2.00250000e+03 8.76785714e+02]\n", + " [ 2.00250000e+03 1.16921429e+03]\n", + " [ 2.00250000e+03 1.46164286e+03]\n", + " [ 2.00250000e+03 1.75407143e+03]\n", + " [ 2.00250000e+03 2.04650000e+03]\n", + " [-4.35000000e+01 1.27000000e+02]\n", + " [-4.35000000e+01 4.85400000e+02]\n", + " [-4.34999998e+01 8.43800000e+02]\n", + " [-4.35000001e+01 1.20220000e+03]\n", + " [-4.35000000e+01 1.56060000e+03]\n", + " [-4.34999999e+01 1.91900000e+03]\n", + " [ 8.29999998e+01 4.99999766e-01]\n", + " [ 4.41400000e+02 4.99999737e-01]\n", + " [ 7.99800000e+02 4.99999723e-01]\n", + " [ 1.15820000e+03 5.00000251e-01]\n", + " [ 1.51660000e+03 4.99999874e-01]\n", + " [ 1.87500000e+03 5.00000148e-01]\n", + " [ 8.30000001e+01 2.04550000e+03]\n", + " [ 4.41400000e+02 2.04550000e+03]\n", + " [ 7.99800000e+02 2.04550000e+03]\n", + " [ 1.1714e+02]\n", + " [ 2.04650000e+03 1.16921429e+03]\n", + " [ 2.04650000e+03 1.46164286e+03]\n", + " [ 2.04650000e+03 1.75407143e+03]\n", + " [ 2.04650000e+03 2.04650000e+03]\n", + " [ 5.00000148e-01 1.27000000e+02]\n", + " [ 5.00000006e-01 4.85400000e+02]\n", + " [ 4.99999879e-01 8.43800000e+02]\n", + " [ 4.99999939e-01 1.20220000e+03]\n", + " [ 5.00000182e-01 1.56060000e+03]\n", + " [ 5.00000197e-01 1.91900000e+03]\n", + " [ 1.27000000e+02 4.99999893e-01]\n", + " [ 4.85400000e+02 5.00000055e-01]\n", + " [ 8.43800000e+02 4.99999998e-01]\n", + " [ 1.20220000e+03 5.00000122e-01]\n", + " [ 1.56060000e+03 4.99999912e-01]\n", + " [ 1.91900000e+03 5.00000160e-01]\n", + " [ 1.27000000e+02 2.04550000e+03]\n", + " [ 4.85400000e+02 2.04550000e+03]\n", + " [ 8.43800000e+02 2.04550000e+03]\n", + " [ 1.20220000e+03 2.04550000e+03]\n", + " [ 1.56060000e+03 2.04550000e+03]\n", + " [ 1.91900000e+03 2.04550000e+03]\n", + " [ 2.04550000e+03 1.27000000e+02]\n", + " [ 2.04550000e+03 4.85400000e+02]\n", + " [ 2.04550000e+03 8.43800000e+02]\n", + " [ 2.04550000e+03 1.20220000e+03]\n", + " [ 2.04550000e+03 1.56060000e+03]\n", + " [ 2.04550000e+03 1.91900000e+03]\n", + " [ 4.9999995820000e+03 2.04550000e+03]\n", + " [ 1.51660000e+03 2.04550000e+03]\n", + " [ 1.87500000e+03 2.04550000e+03]\n", + " [ 2.00150000e+03 1.27000000e+02]\n", + " [ 2.00150000e+03 4.85400000e+02]\n", + " [ 2.00150000e+03 8.43800000e+02]\n", + " [ 2.00150000e+03 1.20220000e+03]\n", + " [ 2.00150000e+03 1.56060000e+03]\n", + " [ 2.00150000e+03 1.91900000e+03]\n", + " [-4.35000002e+01 4.99999824e-01]\n", + " [-4.35000002e+01 4.99999824e-01]\n", + " [ 2.00150000e+03 2.04550000e+03]\n", + " [ 2.00150000e+03 2.04550000e+03]\n", + " [ 8.30000001e+01 1.27000000e+02]\n", + " [ 4.41400000e+02 1.27000000e+02]\n", + " [ 7.99800000e+02 1.27000000e+02]\n", + " [ 1.15820000e+03 1.27000000e+02]\n", + " [ 1.51660000e+03 1.27000000e+02]\n", + " [ 1.87500000e+03 1.27000000e+02]\n", + " [ 8.29999998e+01 4.85400000e+02]\n", + " [ 4.41400000e+02 4.85400000e+02]\n", + " [ 7.99800000e+02 4.85400000e+02]\n", + " [ 1.15820000e+03 4.85400000e+02]\n", + " [ 1.51660000e+03 4.85400000e+02]\n", + " [ 1.87500000e+03 4.85400000e+02]\n", + " [ 8.30000003e+01 8.43800000e+02]\n", + " [ 4.41400000e+02 8.43800000e+02]\n", + " [ 7.99800000e+02 8.43800000e+02]\n", + " [ 1.15820000e+03 8.43800000e+02]\n", + " [ 1.51660000e+03 8.43800000e+02]\n", + " [ 1.87500000e+03 8.43800000e+02]\n", + " [ 8.29999997e+01 1.20220000e+03]\n", + " [ 4.41400000e+02 1.20220000e+03]\n", + " [ 7.99800000e+02 1.20220000e+03]\n", + " [ 1.15820000e+03 1.20220000e+03]\n", + " [ 1.51660000e+03 1.20220000e+03]\n", + " [ 1.87500000e+03 1.20220000e+03]\n", + " [ 8.30000001e+01 1.56060000e+03]\n", + " [ 4.41400000e+02 1.56060000e+03]\n", + " [ 7.99800000e+02 1.56060000e+03]\n", + " [ 1.15820000e+03 1.56060000e+03]\n", + " [ 1.51660000e+03 1.56060000e+03]\n", + " [ 1.87500000e+03 1.56060000e+03]\n", + " [ 8.30000000e+01 1.91900000e+03]\n", + " [ 4.41400000e+02 1.91900000e+03]\n", + " [ 7.99800000e+02 1.91900000e+03]\n", + " [ 1.15820000e+03 1.91900000e+03]\n", + " [ 1.51660000e+03 1.91900000e+03]\n", + " [ 1.87500000e+03 1.91900000e+03]]\n", + "30e-01 4.99999931e-01]\n", + " [ 4.99999930e-01 4.99999931e-01]\n", + " [ 2.04550000e+03 2.04550000e+03]\n", + " [ 2.04550000e+03 2.04550000e+03]\n", + " [ 1.27000000e+02 1.27000000e+02]\n", + " [ 4.85400000e+02 1.27000000e+02]\n", + " [ 8.43800000e+02 1.27000000e+02]\n", + " [ 1.20220000e+03 1.27000000e+02]\n", + " [ 1.56060000e+03 1. 24.247648 ]\n", + " [ -0.26106 18.87164801]\n", + " [ -0.26106 13.495648 ]\n", + " [ -0.26106 8.119648 ]\n", + " [ -0.26106 2.743648 ]\n", + " [ -2.15856 31.521148 ]\n", + " [ -7.53456 31.521148 ]\n", + " [-12.91056 31.521148 ]\n", + " [-18.28656 31.521148 ]\n", + " [-23.66256 31.521148 ]\n", + " [-29.03856 31.521148 ]\n", + " [ -2.15856 0.846148 ]\n", + " [ -7.53456 0.846148 ]\n", + " [-12.91056 0.846148 ]\n", + " [-18.28655999 0.846148 ]\n", + " [-23.66256 0.846148 ]\n", + " [-29.03856 0.846148 ]\n", + " [-30.93606 29.623648 ]\n", + " [-30.93606 24.247648 ]\n", + " [-30.93606 18.871648 ]\n", + " [-30.93606 13.495648 ]\n", + " [-30.93606 8.119648 ]\n", + " [-30.93606 2.743648 ]\n", + " [ -0.26106 31.521148 ]\n", + " [ -0.26106 31.521148 ]\n", + " [-30.93606 0.846148 ]\n", + " [-30.93606 0.846148 ]\n", + " [ -2.15856 29.623648 ]\n", + " [ -7.53456 29.623648 ]\n", + " [-12.91056 29.623648 ]\n", + " [-18.28656 29.623648 ]\n", + " [-23.66256 29.623648 ]\n", + " [-29.03856 29.623648 ]\n", + " [ -2.15856 24.247648 ]\n", + " [ -7.53456 24.247648 ]\n", + " [-12.91056 24.247648 ]\n", + " [-18.28656 24.247648 ]\n", + " [-23.66256 24.247648 ]\n", + " [-29.03856 24.247648 ]\n", + " [ -2.15856 18.871648 ]\n", + " [ -7.53456 18.871648 ]\n", + " [-12.91056 18.871648 ]\n", + " [-18.28656 18.871648 ]\n", + " [-23.66256 18.871648 ]\n", + " [-29.03856 18.871648 ]\n", + " [ -2.15856 13.495648 ]\n", + " [ -7.53456 13.495648 ]\n", + " [-12.91056 13.495648 ]\n", + " [-18.28656 13.495648 ]\n", + " [-23.66256 13.495648 ]\n", + " [-29.03856 13.495648 ]\n", + " [ -2.15856 8.119648 ]\n", + " [ -7.53456 8.119648 ]\n", + " [-12.91056 8.119648 ]\n", + " [-18.28656 8.119648 ]\n", + " [-23.66256 8.119648 ]\n", + " [-29.03856 8.119648 ]\n", + " [ -2.15856 2.743648 ]\n", + " [ -7.53456 2.743648 ]\n", + " [-12.91056 2.743648 ]\n", + " [-18.28656 2.743648 ]\n", + " [-23.66256 2.743648 ]\n", + " [-29.03856 2.743648 ]]\n", + "DEBUG:root:mm_to_pix: fitpx: [[0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]]\n", + "DEBUG:root:mm_to_pix: fitpx.shape: (96, 2)\n", + "DEBUG:root:mm_to_pix: fitpx: [[0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]]\n", + "DEBUG:root:mm_to_pix: fitpx.shape: (96, 2)\n", + "DEBUG:root:radec2pix: curVec: [[-0.34641104 -0.80249638 -0.48579723]\n", + " [-0.34218524 -0.78969726 -0.50920281]\n", + " [-0.3377519 -0.77598623 -0.53269976]\n", + " [-0.33310613 -0.76138944 -0.55617121]\n", + " [-0.32824624 -0.74594269 -0.57950316]\n", + " [-0.32317506 -0.72968987 -0.60258657]\n", + " [-0.3179006 -0.71268245 -0.62531827]\n", + " [-0.31243DEBUG:root:fitpix2pix: ccdpx: shape: (96, 2)\n", + "DEBUG:root:fitpix2pix: visCut: True\n", + "DEBUG:root:radec2pix: xyfp: [[ 0.173161 -31.45819714]\n", + " [ 0.17304708 -27.07176857]\n", + " [ 0.17293316 -22.68534 ]\n", + " [ 0.17281925 -18.29891143]\n", + " [ 0.17270533 -13.91248287]\n", + " [ 0.17259141 -9.52605429]\n", + " [ 0.17247749 -5.13962573]\n", + " [ 0.17236358 -0.75319715]\n", + " [ 0.173161 -31.45819714]\n", + " [ 4.55958957 -31.45808322]\n", + " [ 8.94601814 -31.45796931]\n", + " [ 13.33244671 -31.45785538]\n", + " [ 17.71887528 -31.45774147]\n", + " [ 22.10530385 -31.45762756]\n", + " [ 26.49173242 -31.45751363]\n", + " [ 30.87816099 -31.45739971]\n", + " [ 0.17236358 -0.75319715]\n", + " [ 4.55879215 -0.75308323]\n", + " [ 8.94522072 -0.75296932]\n", + " [ 13.33164929 -0.7528554 ]\n", + " [ 17.71807786 -0.75274148]\n", + " [ 22.10450643 -0.75262756]\n", + " [ 26.490935 -0.75251364]\n", + " [ 30.87736356 -0.75239973]\n", + " [ 30.87816099 -31.45739971]\n", + " [ 30.87804707 -27.07097114]\n", + " [ 30.87793315 -22.68454257]\n", + " [ 30.87781924 -18.29811401]\n", + " [ 30.87770532 -13.91168544]\n", + " [ 30.87759141 -9.52525687]\n", + " [ 30.87747749 -5.1388283 ]\n", + " [ 30.87736356 -0.75239973]\n", + " [ 0.18811133 -29.54569675]\n", + " [ 0.18797171 -24.16969676]\n", + " [ 0.1878321 -18.79369675]\n", + " [ 0.18769248 -13.41769676]\n", + " [ 0.18755286 -8.04169676]\n", + " [ 0.18741324 -2.66569676]\n", + " [ 2.08566061 -31.44314748]\n", + " [ 7.46166061 -31.44300785]\n", + " [ 12.83766061 -31.44286824]\n", + " [ 18.2136606 -31.44272862]\n", + " [ 23.5896606 -31.442589 ]\n", + " [ 28.9656606 -31.44244938]\n", + " [ 2.08486397 -0.76814748]\n", + " [ 7.46086396 -0.76800786]\n", + " [ 12.83686396 -0.76786825]\n", + " [ 18.21286396 -0.76772863]\n", + " [ 23.58886395 -0.76758901]\n", + " [ 28.96486395 -0.7674494 ]\n", + " [ 30.86311132 -29.54490011]\n", + " [ 30.86297171 -24.16890011]\n", + " [ 30.86283209 -18.79290011]\n", + " [ 30.86269247 -13.41690011]\n", + " [ 30.86255285 -8.04090011]\n", + " [ 30.86241323 -2.66490012]\n", + " [ 0.18816061 -31.44319675]\n", + " [ 0.18816061 -31.44319675]\n", + " [ 30.86236396 -0.76740012]\n", + " [ 30.86236396 -0.76740012]\n", + " [ 2.08561133 -29.54564748]\n", + " [ 7.46161133 -29.54550785]\n", + " [ 12.83761133 -29.54536824]\n", + " [ 18.21361133 -29.54522862]\n", + " [ 23.58961132 -29.545089 ]\n", + " [ 28.96561132 -29.54494938]\n", + " [ 2.08547171 -24.16964747]\n", + " [ 7.46147171 -24.16950786]\n", + " [ 12.83747171 -24.16936824]\n", + " [ 18.21347171 -24.16922862]\n", + " [ 23.58947171 -24.16908901]\n", + " [ 28.9654717 -24.16894939]\n", + " [ 2.0853321 -18.79364747]\n", + " [ 7.46133209 -18.79350785]\n", + " [ 12.83733209 -18.79336824]\n", + " [ 18.21333209 -18.79322862]\n", + " [ 23.58933209 -18.79308901]\n", + " [ 28.96533209 -18.79294939]\n", + " [ 2.08519248 -13.41764748]\n", + " [ 7.46119248 -13.41750786]\n", + " [ 12.83719247 -13.41736824]\n", + " [ 18.21319248 -13.41722863]\n", + " [ 23.58919247 -13.41708901]\n", + " [ 28.96519247 -13.41694939]\n", + " [ 2.08505286 -8.04164748]\n", + " [ 7.46105286 -8.04150786]\n", + " [ 12.83705286 -8.04136825]\n", + " [ 18.21305286 -8.04122863]\n", + " [ 23.58905286 -8.04108901]\n", + " [ 28.96505285 -8.04094939]\n", + " [ 2.08491324 -2.66564748]\n", + " [ 7.46091324 -2.66550786]\n", + " [ 12.83691324 -2.66536825]\n", + " [ 18.21291324 -2.66522863]\n", + " [ 23.58891323 -2.66508901]\n", + " [ 28.96491324 -2.66494939]]\n", + "DEBUG:root:radec2pix: xyfp: [[32.275486 31.41357429]\n", + " [32.27502267 27.02714574]\n", + " [32.27455935 22.64071719]\n", + " [32.27409601 18.25428864]\n", + " [32.27363269 13.8678601 ]\n", + " [32.27316936 9.48143155]\n", + " [32.27270604 5.095003 ]\n", + " [32.27224271 0.70857446]\n", + " [32.275486 31.41357429]\n", + " [27.88905745 31.41403761]\n", + " [23.5026289 31.41450094]\n", + " [19.11620036 31.41496427]\n", + " [14.72977181 31.41542759]\n", + " [10.34334326 31.41589092]\n", + " [ 5.95691471 31.41635424]\n", + " [ 1.57048617 31.41681757]\n", + " [32.27224271 0.70857446]\n", + " [27.88581416 0.70903778]\n", + " [23.49938562 0.70950111]\n", + " [19.11295707 0.70996444]\n", + " [14.72652852 0.71042776]\n", + " [10.34009998 0.71089109]\n", + " [ 5.95367142 0.71135442]\n", + " [ 1.56724288 0.71181774]\n", + " [ 1.57048617 31.41681757]\n", + " [ 1.57002284 27.03038902]\n", + " [ 1.56955951 22.64396047]\n", + " [ 1.56909619 18.25753194]\n", + " [ 1.56863286 13.87110338]\n", + " [ 1.56816953 9.48467484]\n", + " [ 1.56770621 5.09824629]\n", + " [ 1.56724288 0.71181774]\n", + " [32.26028399 29.50107588]\n", + " [32.25971613 24.12507591]\n", + " [32.25914828 18.74907594]\n", + " [32.25858043 13.37307597]\n", + " [32.25801258 7.997076 ]\n", + " [32.25744472 2.62107603]\n", + " [30.36298443 31.3987763 ]\n", + " [24.98698446 31.39934415]\n", + " [19.61098448 31.399912 ]\n", + " [14.23498451 31.40047985]\n", + " [ 8.85898454 31.40104771]\n", + " [ 3.48298457 31.40161556]\n", + " [30.35974431 0.72377647]\n", + " [24.98374433 0.72434432]\n", + " [19.60774436 0.72491217]\n", + " [14.23174439 0.72548003]\n", + " [ 8.85574442 0.72604788]\n", + " [ 3.47974445 0.72661573]\n", + " [ 1.58528416 29.504316 ]\n", + " [ 1.5847163 24.12831603]\n", + " [ 1.58414845 18.75231606]\n", + " [ 1.5835806 13.37631609]\n", + " [ 1.58301275 8.00031612]\n", + " [ 1.5824449 2.62431615]\n", + " [32.26048441 31.39857587]\n", + " [32.26048441 31.39857587]\n", + " [ 1.58224447 0.72681616]\n", + " [ 1.58224447 0.72681616]\n", + " [30.36278399 29.50127631]\n", + " [24.98678403 29.50184416]\n", + " [19.61078405 29.50241201]\n", + " [14.23478409 29.50297987]\n", + " [ 8.85878411 29.50354772]\n", + " [ 3.48278414 29.50411557]\n", + " [30.36221615 24.12527634]\n", + " [24.98621618 24.12584419]\n", + " [19.6102162 24.12641204]\n", + " [14.23421623 24.1269799 ]\n", + " [ 8.85821626 24.12754775]\n", + " [ 3.48221629 24.1281156 ]\n", + " [30.36164829 18.74927637]\n", + " [24.98564832 18.74984422]\n", + " [19.60964835 18.75041208]\n", + " [14.23364838 18.75097993]\n", + " [ 8.85764841 18.75154778]\n", + " [ 3.48164844 18.75211563]\n", + " [30.36108043 13.3732764 ]\n", + " [24.98508046 13.37384425]\n", + " [19.60908049 13.3744121 ]\n", + " [14.23308053 13.37497996]\n", + " [ 8.85708056 13.37554781]\n", + " [ 3.48108059 13.37611567]\n", + " [30.36051258 7.99727643]\n", + " [24.98451261 7.99784428]\n", + " [19.60851265 7.99841214]\n", + " [14.23251268 7.99897999]\n", + " [ 8.85651271 7.99954784]\n", + " [ 3.48051273 8.00011569]\n", + " [30.35994473 2.62127646]\n", + " [24.98394476 2.62184431]\n", + " [19.60794479 2.62241216]\n", + " [14.23194482 2.62298002]\n", + " [ 8.85594485 2.62354787]\n", + " [ 3.47994488 2.62411572]]\n", + "DEBUG:root:radec2pix: ccdpx: [[-4.45000000e+01 -5.00000251e-01]\n", + " [-4.45000000e+01 2.91928572e+02]\n", + " [-4.45000000e+01 5.84357143e+02]\n", + " [-4.45000000e+01 8.76785714e+02]\n", + " [-4.45000000e+01 1.16921429e+03]\n", + " [-4.45000000e+01 1.46164286e+03]\n", + " [-4.45000000e+01 1.75407143e+03]\n", + " [-4.45000000e+01 2.04650000e+03]\n", + " [-4.45000000e+01 -5.00000251e-01]\n", + " [ 2.47928571e+02 -5.00000137e-01]\n", + " [ 5.40357143e+02 -5.00000030e-01]\n", + " [ 8.32785714e+02 -4.99999965e-01]\n", + " [ 1.12521429e+03 -4.99999941e-01]\n", + " DEBUG:root:radec2pix: ccdpx: [[-4.45000000e+01 -4.99999973e-01]\n", + " [-4.45000000e+01 2.91928572e+02]\n", + " [-4.45000000e+01 5.84357143e+02]\n", + " [-4.45000000e+01 8.76785714e+02]\n", + " [-4.45000000e+01 1.16921429e+03]\n", + " [-4.45000000e+01 1.46164286e+03]\n", + " [-4.45000000e+01 1.75407143e+03]\n", + " [-4.45000000e+01 2.04650000e+03]\n", + " [-4.45000000e+01 -4.99999973e-01]\n", + " [ 2.47928571e+02 -4.99999766e-01]\n", + " [ 5.40357143e+02 -5.00000023e-01]\n", + " [ 8.32785714e+02 -4.99999798e-01]\n", + " [ 1.12521429e+03 -5.00000229e-01]\n", + " [ 1.41764286e+03 -5.00000231e-01]\n", + " [ 1.71007143e+03 -4.99999870e-01]\n", + " [ 2.00250000e+03 -4.99999884e-01]\n", + " [-4.45000000e+01 2.04650000e+03]\n", + " [ 2.47928571e+02 2.04650000e+03]\n", + " [ 5.40357143e+02 2.04650000e+03]\n", + " [ 8.32785714e+02 2.04650000e+03]\n", + " [ 1.12521429e+03 2.04650000e+03]\n", + " [ 1.41764286e+03 2.04650000e+03]\n", + " [ 1.71007143e+03 2.04650000e+03]\n", + " [ 2.00250000e+03 2.04650000e+03]\n", + " [ 2.00250000e+03 -4.99999884e-01]\n", + " [ 2.00250000e+03 2.91928572e+02]\n", + " [ 2.00250000e+03 5.84357143e+02]\n", + " [ 2.00250000e+03 8.76785DEBUG:root:radec2pix: fitpx: [[4271.49999985 4155.49999985]\n", + " [4271.49999998 3863.07142855]\n", + " [4271.50000002 3570.64285716]\n", + " [4271.49999976 3278.21428558]\n", + " [4271.50000012 2985.78571434]\n", + " [4271.50000004 2693.35714287]\n", + " [4271.50000005 2400.92857144]\n", + " [4271.49999991 2108.5 ]\n", + " [4271.49999985 4155.49999985]\n", + " [3979.07142858 4155.50000001]\n", + " [3686.64285722 4155.5000001 ]\n", + " [3394.21428584 4155.50000021]\n", + " [3101.78571415 4155.49999972]\n", + " [2809.35714289 4155.50000011]\n", + " [2516.92857142 4155.49999998]\n", + " [2224.50000001 4155.50000022]\n", + " [4271.49999991 2108.5 ]\n", + " [3979.07142843 2108.5 ]\n", + " [3686.6428569 2108.49999999]\n", + " [3394.21428586 2108.5 ]\n", + " [3101.78571453 2108.50000001]\n", + " [2809.35714306 2108.50000001]\n", + " [2516.9285717 2108.50000003]\n", + " [2224.49999984 2108.49999993]\n", + " [2224.50000001 4155.50000022]\n", + " [2224.5 3863.07142862]\n", + " [2224.49999998 3570.64285684]\n", + " [2224.50000001 3278.21428585]\n", + " [2224.50000002 2985.78571445]\n", + " [2224.5 2693.35714285]\n", + " [2224.49999995 2400.92857125]\n", + " [2224.499DEBUG:root:radec2pix: curVec: [[-0.56481196 0.28835381 -0.77320084]\n", + " [-0.54151659 0.29547713 -0.7870534 ]\n", + " [-0.51732118 0.30250211 -0.80054436]\n", + " [-0.49229843 0.30938788 -0.81358552]\n", + " [-0.46652706 0.3160965 -0.82609655]\n", + " [-0.44009306 0.32259274 -0.83800479]\n", + " [-0.41308998 0.32884428 -0.84924561]\n", + " [-0.38561848 0.33482201 -0.85976311]\n", + " [-0.56481196 0.28835381 -0.77320084]\n", + " [-0.56608946 0.3150144 -0.76177992]\n", + " [-0.56680694 0.34135125 -0.74980612]\n", + " [-0.56696598 0.3672659 -0.73733665]\n", + " [-0.56657285 0.3926644 -0.72443762]\n", + " [-0.56563792 0.41745735 -0.7111843 ]\n", + " [-0.56417503 0.44155946 -0.69766165]\n", + " [-0.56220096 0.46488864 -0.68396537]\n", + " [-0.38561848 0.33482201 -0.85976311]\n", + " [-0.38706145 0.36235209 -0.84787051]\n", + " [-0.38815065 0.38946967 -0.83525592]\n", + " [-0.38888667 0.41607247 -0.82197984]\n", + " [-0.38927463 0.44206469 -0.80811142]\n", + " [-0.38932402 0.46735756 -0.79372774]\n", + " [-0.38904844 0.49186916 -0.77891337]\n", + " [-0.38846547 0.51552336 -0.7637606 ]\n", + " [-0.56220096 0.46488864 -0.68396[ 1.41764286e+03 -5.00000178e-01]\n", + " [ 1.71007143e+03 -4.99999847e-01]\n", + " [ 2.00250000e+03 -5.00000219e-01]\n", + " [-4.45000000e+01 2.04650000e+03]\n", + " [ 2.47928571e+02 2.04650000e+03]\n", + " [ 5.40357143e+02 2.04650000e+03]\n", + " [ 8.32785714e+02 2.04650000e+03]\n", + " [ 1.12521429e+03 2.04650000e+03]\n", + " [ 1.41764286e+03 2.04650000e+03]\n", + " [ 1.71007143e+03 2.04650000e+03]\n", + " [ 2.00250000e+03 2.04650000e+03]\n", + " [ 2.00250000e+03 -5.00000219e-01]\n", + " [ 2.00250000e+03 2.91928572e+02]\n", + " [ 2.00250000e+03 5.84357143e+02]\n", + " [ 2.00250000e+03 8.76785714e+02]\n", + " [ 2.00250000e+03 1.16921429e+03]\n", + " [ 2.00250000e+03 1.46164286e+03]\n", + " [ 2.00250000e+03 1.75407143e+03]\n", + " [ 2.00250000e+03 2.04650000e+03]\n", + " [-4.35000000e+01 1.27000000e+02]\n", + " [-4.35000000e+01 4.85400000e+02]\n", + " [-4.35000000e+01 8.43800000e+02]\n", + " [-4.35000000e+01 1.20220000e+03]\n", + " [-4.35000000e+01 1.56060000e+03]\n", + " [-4.35000000e+01 1.91900000e+03]\n", + " [ 8.30000000e+01 4.99999716e-01]\n", + " [ 4.41400000e+02 4.99999791e-01]\n", + " [ 7.99800000e+02 5.00000291e-01]\n", + " [ 1.15820000e+03 5.DEBUG:root:radec2pix: ccdpx: [[-4.45000001e+01 -5.00000082e-01]\n", + " [-4.45000001e+01 2.91928571e+02]\n", + " [-4.45000003e+01 5.84357143e+02]\n", + " [-4.44999997e+01 8.76785714e+02]\n", + " [-4.45000002e+01 1.16921429e+03]\n", + " [-4.44999997e+01 1.46164286e+03]\n", + " [-4.45000001e+01 1.75407143e+03]\n", + " [-4.44999998e+01 2.04650000e+03]\n", + " [-4.45000001e+01 -5.00000082e-01]\n", + " [ 2.47928572e+02 -4.99999837e-01]\n", + " [ 5.40357143e+02 -5.00000111e-01]\n", + " [ 8.32785714e+02 -5.00000236e-01]\n", + " [ 1.12521429e+03 -4.99999746e-01]\n", + " [ 1.41764286e+03 -4.99999876e-01]\n", + " [ 1.71007143e+03 -4.99999788e-01]\n", + " [ 2.00250000e+03 -5.00000040e-01]\n", + " [-4.44999998e+01 2.04650000e+03]\n", + " [ 2.47928572e+02 2.04650000e+03]\n", + " [ 5.40357143e+02 2.04650000e+03]\n", + " [ 8.32785714e+02 2.04650000e+03]\n", + " [ 1.12521429e+03 2.04650000e+03]\n", + " [ 1.41764286e+03 2.04650000e+03]\n", + " [ 1.71007143e+03 2.04650000e+03]\n", + " [ 2.00250000e+03 2.04650000e+03]\n", + " [ 2.00250000e+03 -5.00000040e-01]\n", + " [ 2.00250000e+03 2.91928572e+02]\n", + " [ 2.00250000e+03 5.84357143e+02]\n", + " [ 2.00250000e+03 8.76785537]\n", + " [-0.53959944 0.4732409 -0.69633002]\n", + " [-0.51612069 0.48128528 -0.70850823]\n", + " [-0.49184363 0.48897997 -0.72040851]\n", + " [-0.46685047 0.49628577 -0.73195018]\n", + " [-0.44122777 0.50316632 -0.74306239]\n", + " [-0.41506715 0.50958858 -0.75368345]\n", + " [-0.38846547 0.51552336 -0.7637606 ]\n", + " [-0.55477556 0.29156091 -0.77924086]\n", + " [-0.5256106 0.30023134 -0.79598658]\n", + " [-0.4951654 0.30871295 -0.81210069]\n", + " [-0.4635823 0.31693467 -0.82743209]\n", + " [-0.43101962 0.32483168 -0.84184706]\n", + " [-0.39765257 0.33234579 -0.85523021]\n", + " [-0.56535969 0.30003609 -0.76834026]\n", + " [-0.56654899 0.33250717 -0.75396368]\n", + " [-0.56689826 0.36439358 -0.73881235]\n", + " [-0.56641711 0.39552044 -0.72300431]\n", + " [-0.56512456 0.42572315 -0.70667817]\n", + " [-0.56304735 0.45484606 -0.68999474]\n", + " [-0.38638557 0.3468492 -0.85463549]\n", + " [-0.38791617 0.38032584 -0.83956733]\n", + " [-0.38891528 0.41308064 -0.82347391]\n", + " [-0.38939048 0.44493448 -0.80647899]\n", + " [-0.38935918 0.47572392 -0.7887244 ]\n", + " [-0.38884811 0.50530065 -0.770369 ]\n", + " [-0.55246675 0.468714e+02]\n", + " [ 2.00250000e+03 1.16921429e+03]\n", + " [ 2.00250000e+03 1.46164286e+03]\n", + " [ 2.00250000e+03 1.75407143e+03]\n", + " [ 2.00250000e+03 2.04650000e+03]\n", + " [-4.35000002e+01 1.27000000e+02]\n", + " [-4.35000000e+01 4.85400000e+02]\n", + " [-4.34999999e+01 8.43800000e+02]\n", + " [-4.35000002e+01 1.20220000e+03]\n", + " [-4.35000002e+01 1.56060000e+03]\n", + " [-4.34999998e+01 1.91900000e+03]\n", + " [ 8.29999997e+01 4.99999723e-01]\n", + " [ 4.41400000e+02 4.99999738e-01]\n", + " [ 7.99800000e+02 4.99999955e-01]\n", + " [ 1.15820000e+03 5.00000275e-01]\n", + " [ 1.51660000e+03 4.99999778e-01]\n", + " [ 1.87500000e+03 5.00000195e-01]\n", + " [ 8.29999999e+01 2.04550000e+03]\n", + " [ 4.41400000e+02 2.04550000e+03]\n", + " [ 7.99800000e+02 2.04550000e+03]\n", + " [ 1.15820000e+03 2.04550000e+03]\n", + " [ 1.51660000e+03 2.04550000e+03]\n", + " [ 1.87500000e+03 2.04550000e+03]\n", + " [ 2.00150000e+03 1.27000000e+02]\n", + " [ 2.00150000e+03 4.85400000e+02]\n", + " [ 2.00150000e+03 8.43800000e+02]\n", + " [ 2.00150000e+03 1.20220000e+03]\n", + " [ 2.00150000e+03 1.56060000e+03]\n", + " [ 2.00150000e+03 1.91900000e+03]\n", + " [-4.34999999984 2108.49999993]\n", + " [4270.49999995 4027.99999996]\n", + " [4270.50000001 3669.6 ]\n", + " [4270.4999998 3311.19999989]\n", + " [4270.50000006 2952.80000003]\n", + " [4270.50000002 2594.40000001]\n", + " [4270.49999985 2235.99999999]\n", + " [4144.00000023 4154.50000023]\n", + " [3785.60000021 4154.50000026]\n", + " [3427.20000017 4154.50000028]\n", + " [3068.79999989 4154.49999975]\n", + " [2710.40000004 4154.50000013]\n", + " [2351.99999998 4154.49999985]\n", + " [4143.99999992 2109.5 ]\n", + " [3785.59999985 2109.5 ]\n", + " [3427.19999998 2109.5 ]\n", + " [3068.80000001 2109.5 ]\n", + " [2710.40000021 2109.50000002]\n", + " [2352.00000017 2109.50000003]\n", + " [2225.5 4027.99999993]\n", + " [2225.49999998 3669.59999975]\n", + " [2225.50000001 3311.20000015]\n", + " [2225.5 2952.8 ]\n", + " [2225.49999998 2594.39999987]\n", + " [2225.50000008 2236.00000013]\n", + " [4270.50000018 4154.50000018]\n", + " [4270.50000018 4154.50000018]\n", + " [2225.49999981 2109.49999992]\n", + " [2225.49999981 2109.49999992]\n", + " [4143.99999987 4027.99999987]\n", + " [3785.59999992 4027.9999999 ]\n", + " [3427.2000001 4028.00000015]\n", + " [3068.80000011 4097e+01 5.00000254e-01]\n", + " [-4.34999997e+01 5.00000254e-01]\n", + " [ 2.00150000e+03 2.04550000e+03]\n", + " [ 2.00150000e+03 2.04550000e+03]\n", + " [ 8.30000000e+01 1.27000000e+02]\n", + " [ 4.41400000e+02 1.27000000e+02]\n", + " [ 7.99800000e+02 1.27000000e+02]\n", + " [ 1.15820000e+03 1.27000000e+02]\n", + " [ 1.51660000e+03 1.27000000e+02]\n", + " [ 1.87500000e+03 1.27000000e+02]\n", + " [ 8.29999998e+01 4.85400000e+02]\n", + " [ 4.41400000e+02 4.85400000e+02]\n", + " [ 7.99800000e+02 4.85400000e+02]\n", + " [ 1.15820000e+03 4.85400000e+02]\n", + " [ 1.51660000e+03 4.85400000e+02]\n", + " [ 1.87500000e+03 4.85400000e+02]\n", + " [ 8.29999999e+01 8.43800000e+02]\n", + " [ 4.41400000e+02 8.43800000e+02]\n", + " [ 7.99800000e+02 8.43800000e+02]\n", + " [ 1.15820000e+03 8.43800000e+02]\n", + " [ 1.51660000e+03 8.43800000e+02]\n", + " [ 1.87500000e+03 8.43800000e+02]\n", + " [ 8.30000002e+01 1.20220000e+03]\n", + " [ 4.41400000e+02 1.20220000e+03]\n", + " [ 7.99800000e+02 1.20220000e+03]\n", + " [ 1.15820000e+03 1.20220000e+03]\n", + " [ 1.51660000e+03 1.20220000e+03]\n", + " [ 1.87500000e+03 1.20220000e+03]\n", + " [ 8.30000002e+01 1.56060000e+00000004e-01]\n", + " [ 1.51660000e+03 5.00000077e-01]\n", + " [ 1.87500000e+03 4.99999846e-01]\n", + " [ 8.30000001e+01 2.04550000e+03]\n", + " [ 4.41400000e+02 2.04550000e+03]\n", + " [ 7.99800000e+02 2.04550000e+03]\n", + " [ 1.15820000e+03 2.04550000e+03]\n", + " [ 1.51660000e+03 2.04550000e+03]\n", + " [ 1.87500000e+03 2.04550000e+03]\n", + " [ 2.00150000e+03 1.27000000e+02]\n", + " [ 2.00150000e+03 4.85400000e+02]\n", + " [ 2.00150000e+03 8.43800000e+02]\n", + " [ 2.00150000e+03 1.20220000e+03]\n", + " [ 2.00150000e+03 1.56060000e+03]\n", + " [ 2.00150000e+03 1.91900000e+03]\n", + " [-4.35000000e+01 4.99999735e-01]\n", + " [-4.35000000e+01 4.99999735e-01]\n", + " [ 2.00150000e+03 2.04550000e+03]\n", + " [ 2.00150000e+03 2.04550000e+03]\n", + " [ 8.30000000e+01 1.27000000e+02]\n", + " [ 4.41400000e+02 1.27000000e+02]\n", + " [ 7.99800000e+02 1.27000000e+02]\n", + " [ 1.15820000e+03 1.27000000e+02]\n", + " [ 1.51660000e+03 1.27000000e+02]\n", + " [ 1.87500000e+03 1.27000000e+02]\n", + " [ 8.30000000e+01 4.85400000e+02]\n", + " [ 4.41400000e+02 4.85400000e+02]\n", + " [ 7.99800000e+02 4.85400000e+02]\n", + " [ 1.15820000e+03 4.85400000e+02]\n", + " [ 1.503]\n", + " [ 4.41400000e+02 1.56060000e+03]\n", + " [ 7.99800000e+02 1.56060000e+03]\n", + " [ 1.15820000e+03 1.56060000e+03]\n", + " [ 1.51660000e+03 1.56060000e+03]\n", + " [ 1.87500000e+03 1.56060000e+03]\n", + " [ 8.29999999e+01 1.91900000e+03]\n", + " [ 4.41400000e+02 1.91900000e+03]\n", + " [ 7.99800000e+02 1.91900000e+03]\n", + " [ 1.15820000e+03 1.91900000e+03]\n", + " [ 1.51660000e+03 1.91900000e+03]\n", + " [ 1.87500000e+03 1.91900000e+03]]\n", + "714e+02]\n", + " [ 2.00250000e+03 1.16921429e+03]\n", + " [ 2.00250000e+03 1.46164286e+03]\n", + " [ 2.00250000e+03 1.75407143e+03]\n", + " [ 2.00250000e+03 2.04650000e+03]\n", + " [-4.35000000e+01 1.27000000e+02]\n", + " [-4.35000000e+01 4.85400000e+02]\n", + " [-4.35000000e+01 8.43800000e+02]\n", + " [-4.35000000e+01 1.20220000e+03]\n", + " [-4.35000000e+01 1.56060000e+03]\n", + " [-4.35000000e+01 1.91900000e+03]\n", + " [ 8.30000000e+01 4.99999770e-01]\n", + " [ 4.41400000e+02 5.00000267e-01]\n", + " [ 7.99800000e+02 4.99999825e-01]\n", + " [ 1.15820000e+03 5.00000071e-01]\n", + " [ 1.51660000e+03 5.00000113e-01]\n", + " [ 1.87500000e+03 5.00000214e-01]\n", + " [ 8.30000000e+01 2.04550000e+03]\n", + " [ 4.428.00000023]\n", + " [2710.39999995 4027.99999982]\n", + " [2351.99999998 4027.99999985]\n", + " [4144.00000018 3669.60000014]\n", + " [3785.5999999 3669.59999991]\n", + " [3427.19999994 3669.59999993]\n", + " [3068.79999994 3669.5999999 ]\n", + " [2710.39999997 3669.59999991]\n", + " [2351.99999997 3669.5999998 ]\n", + " [4143.99999973 3311.19999984]\n", + " [3785.60000019 3311.20000014]\n", + " [3427.1999998 3311.19999981]\n", + " [3068.79999976 3311.19999969]\n", + " [2710.39999985 3311.19999967]\n", + " [2352.00000003 3311.20000016]\n", + " [4144.00000026 2952.80000011]\n", + " [3785.6000001 2952.80000005]\n", + " [3427.20000009 2952.80000006]\n", + " [3068.8000003 2952.80000028]\n", + " [2710.39999986 2952.79999979]\n", + " [2352.00000001 2952.80000004]\n", + " [4143.99999994 2594.39999998]\n", + " [3785.6 2594.4 ]\n", + " [3427.19999999 2594.39999999]\n", + " [3068.79999999 2594.39999999]\n", + " [2710.40000015 2594.40000014]\n", + " [2351.99999993 2594.39999983]\n", + " [4143.99999995 2236. ]\n", + " [3785.59999975 2235.99999997]\n", + " [3427.19999971 2235.99999996]\n", + " [3068.80000003 2236.00000001]\n", + " [2710.39999999 2236. ]\n", + " [2352.00000022 2236.0000048676 -0.68942051]\n", + " [-0.52416572 0.47852119 -0.70446275]\n", + " [-0.49462513 0.48805147 -0.71913263]\n", + " [-0.46399488 0.49700435 -0.73327719]\n", + " [-0.43243441 0.50531294 -0.7467659 ]\n", + " [-0.40011458 0.512918 -0.75948894]\n", + " [-0.56473923 0.28846989 -0.77321066]\n", + " [-0.56473923 0.28846989 -0.77321066]\n", + " [-0.38855957 0.51542458 -0.7637794 ]\n", + " [-0.38855957 0.51542458 -0.7637794 ]\n", + " [-0.55539981 0.30317177 -0.77435 ]\n", + " [-0.55660994 0.33576235 -0.75990066]\n", + " [-0.55699512 0.36775729 -0.74465496]\n", + " [-0.55656536 0.39898144 -0.72873096]\n", + " [-0.55534027 0.42927034 -0.71226692]\n", + " [-0.55334734 0.45846905 -0.69542279]\n", + " [-0.52624494 0.31195444 -0.79104405]\n", + " [-0.52751399 0.34484396 -0.77640945]\n", + " [-0.52800321 0.3771082 -0.76092182]\n", + " [-0.52772328 0.40857092 -0.7446999 ]\n", + " [-0.52669504 0.43906799 -0.72788161]\n", + " [-0.52494765 0.46844634 -0.71062507]\n", + " [-0.49580888 0.32052672 -0.80711597]\n", + " [-0.49713724 0.35365562 -0.79232712]\n", + " [-0.4977351 0.38613189 -0.77663501]\n", + " [-0.49761318 0.41777815 -0.76015955]\n", + " [-0.4618 -0.69497919 -0.64760139]\n", + " [-0.34641104 -0.80249638 -0.48579723]\n", + " [-0.37150923 -0.7933708 -0.48222782]\n", + " [-0.39685356 -0.78338429 -0.47834748]\n", + " [-0.42232485 -0.77254779 -0.47414306]\n", + " [-0.44780496 -0.76088175 -0.46960588]\n", + " [-0.47317926 -0.74841466 -0.46473314]\n", + " [-0.49833748 -0.73518241 -0.45952865]\n", + " [-0.52317419 -0.7212282 -0.45400291]\n", + " [-0.31243618 -0.69497919 -0.64760139]\n", + " [-0.3382938 -0.6846638 -0.64559491]\n", + " [-0.36441135 -0.67358423 -0.64303084]\n", + " [-0.39066654 -0.66175527 -0.63989031]\n", + " [-0.41694307 -0.64919767 -0.63616103]\n", + " [-0.44312842 -0.63593914 -0.63183749]\n", + " [-0.46911194 -0.62201559 -0.62692152]\n", + " [-0.49478442 -0.60747197 -0.62142271]\n", + " [-0.52317419 -0.7212282 -0.45400291]\n", + " [-0.5205484 -0.70734939 -0.47821147]\n", + " [-0.51745461 -0.69261981 -0.50251222]\n", + " [-0.51388206 -0.67706863 -0.52678581]\n", + " [-0.50982535 -0.66073107 -0.55091974]\n", + " [-0.5052848 -0.64364976 -0.57480627]\n", + " [-0.50026686 -0.6258763 -0.59834097]\n", + " [-0.49478442 -0.60747197 -0.62142271]\n", + " [-0.34467935 -0.79699926 -0.495972016]]\n", + "9679269 0.4484304 -0.74303917]\n", + " [-0.4953036 0.47793717 -0.72543119]\n", + " [-0.46423397 0.3288169 -0.8224149 ]\n", + " [-0.4656223 0.362124 -0.80750361]\n", + " [-0.46633414 0.39475383 -0.79164505]\n", + " [-0.46637971 0.42652807 -0.77496049]\n", + " [-0.46577976 0.45728278 -0.75758938]\n", + " [-0.46456414 0.48686778 -0.73968907]\n", + " [-0.43167849 0.33675955 -0.83680744]\n", + " [-0.4331273 0.37018204 -0.82180655]\n", + " [-0.43395834 0.40290586 -0.80582072]\n", + " [-0.4341809 0.43475202 -0.78897251]\n", + " [-0.4338146 0.46555673 -0.77140251]\n", + " [-0.43288833 0.49517079 -0.75326859]\n", + " [-0.3983176 0.34429596 -0.85017844]\n", + " [-0.39982693 0.37776986 -0.83512176]\n", + " [-0.40078159 0.41052728 -0.81904912]\n", + " [-0.40118961 0.44238905 -0.80208405]\n", + " [-0.40106904 0.47319162 -0.7843681 ]\n", + " [-0.40044724 0.5027865 -0.76605988]]\n", + "DEBUG:root:radec2pix: curVec: [[-0.1713948 0.60279922 -0.77926692]\n", + " [-0.17541867 0.58108252 -0.79471466]\n", + " [-0.17924293 0.55847079 -0.80992737]\n", + " [-0.1828586 0.53503682 -0.824802 ]\n", + " [-0.18625603 0.51085809 -0.83921400000e+02 2.04550000e+03]\n", + " [ 7.99800000e+02 2.04550000e+03]\n", + " [ 1.15820000e+03 2.04550000e+03]\n", + " [ 1.51660000e+03 2.04550000e+03]\n", + " [ 1.87500000e+03 2.04550000e+03]\n", + " [ 2.00150000e+03 1.27000000e+02]\n", + " [ 2.00150000e+03 4.85400000e+02]\n", + " [ 2.00150000e+03 8.43800000e+02]\n", + " [ 2.00150000e+03 1.20220000e+03]\n", + " [ 2.00150000e+03 1.56060000e+03]\n", + " [ 2.00150000e+03 1.91900000e+03]\n", + " [-4.35000000e+01 5.00000284e-01]\n", + " [-4.35000000e+01 5.00000284e-01]\n", + " [ 2.00150000e+03 2.04550000e+03]\n", + " [ 2.00150000e+03 2.04550000e+03]\n", + " [ 8.30000000e+01 1.27000000e+02]\n", + " [ 4.41400000e+02 1.27000000e+02]\n", + " [ 7.99800000e+02 1.27000000e+02]\n", + " [ 1.15820000e+03 1.27000000e+02]\n", + " [ 1.51660000e+03 1.27000000e+02]\n", + " [ 1.87500000e+03 1.27000000e+02]\n", + " [ 8.30000000e+01 4.85400000e+02]\n", + " [ 4.41400000e+02 4.85400000e+02]\n", + " [ 7.99800000e+02 4.85400000e+02]\n", + " [ 1.15820000e+03 4.85400000e+02]\n", + " [ 1.51660000e+03 4.85400000e+02]\n", + " [ 1.87500000e+03 4.85400000e+02]\n", + " [ 8.30000000e+01 8.43800000e+02]\n", + " [ 4.41400000e+02 8.438001660000e+03 4.85400000e+02]\n", + " [ 1.87500000e+03 4.85400000e+02]\n", + " [ 8.30000000e+01 8.43800000e+02]\n", + " [ 4.41400000e+02 8.43800000e+02]\n", + " [ 7.99800000e+02 8.43800000e+02]\n", + " [ 1.15820000e+03 8.43800000e+02]\n", + " [ 1.51660000e+03 8.43800000e+02]\n", + " [ 1.87500000e+03 8.43800000e+02]\n", + " [ 8.30000000e+01 1.20220000e+03]\n", + " [ 4.41400000e+02 1.20220000e+03]\n", + " [ 7.99800000e+02 1.20220000e+03]\n", + " [ 1.15820000e+03 1.20220000e+03]\n", + " [ 1.51660000e+03 1.20220000e+03]\n", + " [ 1.87500000e+03 1.20220000e+03]\n", + " [ 8.30000000e+01 1.56060000e+03]\n", + " [ 4.41400000e+02 1.56060000e+03]\n", + " [ 7.99800000e+02 1.56060000e+03]\n", + " [ 1.15820000e+03 1.56060000e+03]\n", + " [ 1.51660000e+03 1.56060000e+03]\n", + " [ 1.87500000e+03 1.56060000e+03]\n", + " [ 8.30000002e+01 1.91900000e+03]\n", + " [ 4.41400000e+02 1.91900000e+03]\n", + " [ 7.99800000e+02 1.91900000e+03]\n", + " [ 1.15820000e+03 1.91900000e+03]\n", + " [ 1.51660000e+03 1.91900000e+03]\n", + " [ 1.87500000e+03 1.91900000e+03]]\n", + "000e+02]\n", + " [ 7.99800000e+02 8.43800000e+02]\n", + " [ 1.15820000e+03 8.43800000e+02]\n", + " [ 1.51660000e+0DEBUG:root:fitpix2pix: ccdpx: shape: (96, 2)\n", + "DEBUG:root:radec2pix: curVec Shape: (96, 3)\n", + "4532]\n", + " [-0.18942496 0.48601706 -0.85317384]\n", + " [-0.19235471 0.46060149 -0.86651367]\n", + " [-0.19503468 0.43470458 -0.87920044]\n", + " [-0.1713948 0.60279922 -0.77926692]\n", + " [-0.14486033 0.60428098 -0.78349217]\n", + " [-0.11765489 0.60521877 -0.78731669]\n", + " [-0.08988898 0.60559445 -0.7906803 ]\n", + " [-0.06167308 0.60539405 -0.79353291]\n", + " [-0.03311793 0.60460782 -0.79583452]\n", + " [-0.00433494 0.60323053 -0.7975551 ]\n", + " [ 0.02456375 0.60126184 -0.79867442]\n", + " [-0.19503468 0.43470458 -0.87920044]\n", + " [-0.16769884 0.43477009 -0.88478928]\n", + " [-0.13966841 0.43448432 -0.8897843 ]\n", + " [-0.11104866 0.43382926 -0.89412548]\n", + " [-0.08194569 0.43279118 -0.89776205]\n", + " [-0.05246841 0.43136088 -0.90065246]\n", + " [-0.0227295 0.42953391 -0.90276464]\n", + " [ 0.0071547 0.42731085 -0.90407646]\n", + " [ 0.02456375 0.60126184 -0.79867442]\n", + " [ 0.02221079 0.57879115 -0.81517328]\n", + " [ 0.01979891 0.55540319 -0.83134548]\n", + " [ 0.01733623 0.53116612 -0.84709032]\n", + " [ 0.01483123 0.50615356 -0.86231584]\n", + " [ 0.0122929 0.48044625 -0.87693801]\n", + " [ 0.00973075 0.45413304 -0.89088074]\n", + " [ 0.0071547 0.42731085 -0.90407646]\n", + " [-0.17308338 0.59345086 -0.78603958]\n", + " [-0.17788102 0.5662232 -0.80482894]\n", + " [-0.18237015 0.53772292 -0.8231617 ]\n", + " [-0.1865333 0.50809072 -0.84086215]\n", + " [-0.19035159 0.47747843 -0.85777656]\n", + " [-0.19380539 0.44604989 -0.87377284]\n", + " [-0.15992897 0.60343789 -0.78120768]\n", + " [-0.1269421 0.60488993 -0.78612586]\n", + " [-0.09305716 0.60550651 -0.79038107]\n", + " [-0.05847755 0.60526021 -0.79387685]\n", + " [-0.02340721 0.60413311 -0.79653957]\n", + " [ 0.01194845 0.60211756 -0.79831803]\n", + " [-0.18319957 0.43486463 -0.88166358]\n", + " [-0.14921627 0.43471208 -0.88812156]\n", + " [-0.11429427 0.43401337 -0.893627 ]\n", + " [-0.0786285 0.43274143 -0.89808263]\n", + " [-0.04241953 0.43087935 -0.90141199]\n", + " [-0.00587638 0.428421 -0.90356013]\n", + " [ 0.02344632 0.59158929 -0.80589849]\n", + " [ 0.02052092 0.56342407 -0.82591295]\n", + " [ 0.01751524 0.53394827 -0.84533571]\n", + " [ 0.01444474 0.50329508 -0.8639DEBUG:root:fitpix2pix: visCut: True\n", + "3 8.43800000e+02]\n", + " [ 1.87500000e+03 8.43800000e+02]\n", + " [ 8.30000000e+01 1.20220000e+03]\n", + " [ 4.41400000e+02 1.20220000e+03]\n", + " [ 7.99800000e+02 1.20220000e+03]\n", + " [ 1.15820000e+03 1.20220000e+03]\n", + " [ 1.51660000e+03 1.20220000e+03]\n", + " [ 1.87500000e+03 1.20220000e+03]\n", + " [ 8.30000000e+01 1.56060000e+03]\n", + " [ 4.41400000e+02 1.56060000e+03]\n", + " [ 7.99800000e+02 1.56060000e+03]\n", + " [ 1.15820000e+03 1.56060000e+03]\n", + " [ 1.51660000e+03 1.56060000e+03]\n", + " [ 1.87500000e+03 1.56060000e+03]\n", + " [ 8.30000000e+01 1.91900000e+03]\n", + " [ 4.41400000e+02 1.91900000e+03]\n", + " [ 7.99800000e+02 1.91900000e+03]\n", + " [ 1.15820000e+03 1.91900000e+03]\n", + " [ 1.51660000e+03 1.91900000e+03]\n", + " [ 1.87500000e+03 1.91900000e+03]]\n", + "9387]\n", + " [ 0.01132598 0.47161325 -0.88173276]\n", + " [ 0.00817665 0.43906973 -0.89841578]\n", + " [-0.17131942 0.60273252 -0.77933508]\n", + " [-0.17131942 0.60273252 -0.77933508]\n", + " [ 0.00706122 0.4274116 -0.90402957]\n", + " [ 0.00706122 0.4274116 -0.90402957]\n", + " [-0.16164865 0.59412225 -0.78796476]\n", + " [-0.12853489 0.59548821 -0.79301486]\n", + " [-0.09452083 0.59603376 -0.79737668]\n", + " [-0.05980943 0.59573126 -0.80095387]\n", + " [-0.02460437 0.59456235 -0.80367297]\n", + " [ 0.01088877 0.592519 -0.80548288]\n", + " [-0.16633741 0.56679479 -0.80689252]\n", + " [-0.13291144 0.56790856 -0.81228962]\n", + " [-0.09857847 0.56824695 -0.81693188]\n", + " [-0.06353976 0.56778145 -0.82072341]\n", + " [-0.02799822 0.56649257 -0.82359108]\n", + " [ 0.00783992 0.56437133 -0.82548382]\n", + " [-0.17074231 0.53818926 -0.82534804]\n", + " [-0.1370739 0.53903757 -0.8310531 ]\n", + " [-0.10249112 0.5391585 -0.83594478]\n", + " [-0.06719327 0.53852285 -0.8399275 ]\n", + " [-0.03138249 0.53711044 -0.84292794]\n", + " [ 0.00473413 0.53491185 -0.84489461]\n", + " [-0.17484568 0.50844597 -0.84315579]\n", + " [-0.14100388 0.50901397 -0.84913055]\n", + " [-0.10623996 0.50890531 -0.85424145]\n", + " [-0.07075134 0.50809064 -0.85839277]\n", + " [-0.03473951 0.50654987 -0.86151053]\n", + " [ 0.0015875 0.5042738 -0.86354236]\n", + " [-0.17862823 0.47771648 -0.86016215]\n", + " [-0.14468103 0.47798848 -0.86636852]\n", + " [-0.10980413 0.47763726DEBUG:root:radec2pix: fitpx: [[4271.50000008 4155.50000008]\n", + " [4271.50000011 3863.07142867]\n", + " [4271.50000027 3570.64285733]\n", + " [4271.49999971 3278.21428555]\n", + " [4271.50000017 2985.78571436]\n", + " [4271.4999997 2693.35714277]\n", + " [4271.5000001 2400.92857145]\n", + " [4271.49999983 2108.5 ]\n", + " [4271.50000008 4155.50000008]\n", + " [3979.07142843 4155.49999984]\n", + " [3686.64285723 4155.50000011]\n", + " [3394.21428586 4155.50000024]\n", + " [3101.78571417 4155.49999975]\n", + " [2809.35714282 4155.49999988]\n", + " [2516.92857139 4155.49999979]\n", + " [2224.5 4155.50000004]\n", + " [4271.49999983 2108.5 ]\n", + " [3979.07142844 2108.5 ]\n", + " [3686.64285726 2108.5 ]\n", + " [3394.21428608 2108.50000001]\n", + " [3101.7857142 2108.5 ]\n", + " [2809.35714302 2108.50000001]\n", + " [2516.92857112 2108.49999996]\n", + " [2224.50000006 2108.50000003]\n", + " [2224.5 4155.50000004]\n", + " [2224.49999999 3863.07142838]\n", + " [2224.49999998 3570.64285685]\n", + " [2224.50000004 3278.21428613]\n", + " [2224.49999996 2985.78571394]\n", + " [2224.50000004 2693.35714312]\n", + " [2224.49999998 2400.92857136]\n", + " [2224.50000006 2108.50000003]\n", + " [4270.50000017 4028.00000015]\n", + " [4270.49999995 3669.59999996]\n", + " [4270.49999992 3311.19999995]\n", + " [4270.50000022 2952.80000009]\n", + " [4270.50000024 2594.40000006]\n", + " [4270.49999979 2235.99999998]\n", + " [4144.00000027 4154.50000028]\n", + " [3785.60000021 4154.50000026]\n", + " [3427.20000003 4154.50000005]\n", + " [3068.79999988 4154.49999973]\n", + " [2710.40000006 4154.50000022]\n", + " [2351.99999998 4154.4999998 ]\n", + " [4144.00000013 2109.5 ]\n", + " [3785.6 2109.5 ]\n", + " [3427.19999974 2109.49999999]\n", + " [3068.8 2109.5 ]\n", + " [2710.39999984 2109.49999999]\n", + " [2351.99999972 2109.49999994]\n", + " [2225.5 4027.99999997]\n", + " [2225.50000002 3669.60000025]\n", + " [2225.50000002 3311.20000025]\n", + " [2225.50000004 2952.80000031]\n", + " [2225.50000002 2594.40000011]\n", + " [2225.50000016 2236.00000026]\n", + " [4270.49999974 4154.49999975]\n", + " [4270.49999974 4154.49999975]\n", + " [2225.50000003 2109.50000001]\n", + " [2225.50000003 2109.50000001]\n", + " [4143.99999996 4027.99999996]\n", + " [3785.60000018 4028.00000021]\n", + " [3427.19999989 4027.99999984]\n", + " [3068.80000004 4027000000e+02]\n", + " [ 1.91900000e+03 1.27000000e+02]\n", + " [ 1.27000000e+02 4.85400000e+02]\n", + " [ 4.85400000e+02 4.85400000e+02]\n", + " [ 8.43800000e+02 4.85400000e+02]\n", + " [ 1.20220000e+03 4.85400000e+02]\n", + " [ 1.56060000e+03 4.85400000e+02]\n", + " [ 1.91900000e+03 4.85400000e+02]\n", + " [ 1.27000000e+02 8.43800000e+02]\n", + " [ 4.85400000e+02 8.43800000e+02]\n", + " [ 8.43800000e+02 8.43800000e+02]\n", + " [ 1.20220000e+03 8.43800000e+02]\n", + " [ 1.56060000e+03 8.43800000e+02]\n", + " [ 1.91900000e+03 8.43800000e+02]\n", + " [ 1.27000000e+02 1.20220000e+03]\n", + " [ 4.85400000e+02 1.20220000e+03]\n", + " [ 8.43800000e+02 1.20220000e+03]\n", + " [ 1.20220000e+03 1.20220000e+03]\n", + " [ 1.56060000e+03 1.20220000e+03]\n", + " [ 1.91900000e+03 1.20220000e+03]\n", + " [ 1.27000000e+02 1.56060000e+03]\n", + " [ 4.85400000e+02 1.56060000e+03]\n", + " [ 8.43800000e+02 1.56060000e+03]\n", + " [ 1.20220000e+03 1.56060000e+03]\n", + " [ 1.56060000e+03 1.56060000e+03]\n", + " [ 1.91900000e+03 1.56060000e+03]\n", + " [ 1.27000000e+02 1.91900000e+03]\n", + " [ 4.85400000e+02 1.91900000e+03]\n", + " [ 8.43800000e+02 1.91900000e+03]\n", + " [ 1.228.00000009]\n", + " [2710.39999997 4027.9999999 ]\n", + " [2351.99999997 4027.99999976]\n", + " [4144.00000024 3669.60000019]\n", + " [3785.60000022 3669.60000021]\n", + " [3427.19999988 3669.59999985]\n", + " [3068.80000005 3669.60000008]\n", + " [2710.39999999 3669.59999998]\n", + " [2352. 3669.60000003]\n", + " [4144.00000009 3311.20000006]\n", + " [3785.60000001 3311.20000001]\n", + " [3427.20000009 3311.20000009]\n", + " [3068.80000003 3311.20000004]\n", + " [2710.40000012 3311.20000025]\n", + " [2351.99999998 3311.19999988]\n", + " [4143.99999976 2952.79999989]\n", + " [3785.59999985 2952.79999992]\n", + " [3427.19999969 2952.79999979]\n", + " [3068.79999997 2952.79999997]\n", + " [2710.40000016 2952.80000025]\n", + " [2352.00000009 2952.80000036]\n", + " [4143.99999979 2594.39999994]\n", + " [3785.60000002 2594.40000001]\n", + " [3427.20000024 2594.4000001 ]\n", + " [3068.80000002 2594.40000001]\n", + " [2710.40000021 2594.40000019]\n", + " [2351.99999998 2594.39999995]\n", + " [4144.00000008 2236.00000001]\n", + " [3785.60000005 2236.00000001]\n", + " [3427.20000007 2236.00000001]\n", + " [3068.79999979 2235.99999996]\n", + " [2710.39999971 2235.99999991]\n", + " [2351.99999979 2235.99999984]]\n", + " -0.87166834]\n", + " [-0.07419348 0.47663407 -0.87596535]\n", + " [-0.03805008 0.4749597 -0.87918455]\n", + " [-0.00158264 0.47260591 -0.88127246]\n", + " [-0.18206989 0.44616472 -0.8762349 ]\n", + " [-0.14808429 0.44612542 -0.88263421]\n", + " [-0.11316216 0.4455193 -0.88809171]\n", + " [-0.07749855 0.44431878 -0.89251039]\n", + " [-0.04129414 0.44250627 -0.89581415]\n", + " [-0.00475794 0.44007502 -0.8979484 ]]\n", + "11]\n", + " [-0.33936224 -0.78069596 -0.52473526]\n", + " [-0.33372809 -0.76304774 -0.55351938]\n", + " [-0.32777235 -0.7441166 -0.5821132 ]\n", + " [-0.32150028 -0.72398332 -0.61031608]\n", + " [-0.31492887 -0.70274566 -0.6379407 ]\n", + " [-0.35730239 -0.79858124 -0.48435834]\n", + " [-0.38824426 -0.78681645 -0.47977731]\n", + " [-0.4194375 -0.77376823 -0.4747156 ]\n", + " [-0.45066399 -0.75947042 -0.46915525]\n", + " [-0.48171276 -0.74397538 -0.4630912 ]\n", + " [-0.51238283 -0.72735222 -0.45653323]\n", + " [-0.32368918 -0.69063821 -0.646718 ]\n", + " [-0.35557107 -0.67748081 -0.64388583]\n", + " [-0.38772114 -0.66318953 -0.64019682]\n", + " [-0.41992283 -0.64780006 -0.63562559]\n", + " [-0.45196877 -0.63136357 -0.6301621 ]\n", + " [-0.4836558 -0.61394994 -0.62381291]\n", + " [-0.52200136 -0.71533233 -0.4645581 ]\n", + " [-0.51846927 -0.6977474 -0.49430575]\n", + " [-0.51422311 -0.67891287 -0.52407243]\n", + " [-0.50925071 -0.65889099 -0.55364824]\n", + " [-0.50355272 -0.63776046 -0.58283467]\n", + " [-0.49714368 -0.61562029 -0.61144077]\n", + " [-0.34648222 -0.80242445 -0.48586529]\n", + " [-0.34648222 -0.80242445 -0.48586529]\n", + " [-0.4947168 -0.60758664 -0.62136444]\n", + " [-0.4947168 -0.60758664 -0.62136444]\n", + " [-0.35554526 -0.79312387 -0.49451198]\n", + " [-0.38661782 -0.78126857 -0.49004702]\n", + " [-0.41794092 -0.76813268 -0.48507482]\n", + " [-0.44929498 -0.75375123 -0.47957597]\n", + " [-0.48046854 -0.73817692 -0.47354495]\n", + " [-0.51126032 -0.72147884 -0.46699162]\n", + " [-0.35034104 -0.77672777 -0.52340723]\n", + " [-0.38173473 -0.76461685 -0.5192684 ]\n", + " [-0.41337635 -0.75123977 -0.51454718]\n", + " [-0.44504433 -0.73663338 -0.50922177]\n", + " [-0.47652704 -0.72085013 -0.50328628]\n", + " [-0.50762258 -0.70395853 -0.49675115]\n", + " [-0.34479301 -0.75898618 -0.55232034]\n", + " [-0.37643122 -0.74662437 -0.5484994 ]\n", + " [-0.40831634 -0.733018330220000e+03 1.91900000e+03]\n", + " [ 1.56060000e+03 1.91900000e+03]\n", + " [ 1.91900000e+03 1.91900000e+03]]\n", + " -0.5440238 ]\n", + " [-0.4402272 -0.71820491 -0.53887079]\n", + " [-0.47195295 -0.70223546 -0.53303449]\n", + " [-0.5032912 -0.68517777 -0.52652577]\n", + " [-0.33889517 -0.73996227 -0.58103863]\n", + " [-0.37069889 -0.72735596 -0.57752544]\n", + " [-0.40275166 -0.71353295 -0.57329036]\n", + " [-0.43483383 -0.69852931 -0.56831008]\n", + " [-0.46673574 -0.68239539 -0.56257824]\n", + " [-0.49825446 -0.66519873 -0.55610533]\n", + " [-0.33265235 -0.71973719 -0.60936097]\n", + " [-0.36454234 -0.7068926 -0.60614498]\n", + " [-0.39668712 -0.69286346 -0.60214579]\n", + " [-0.42886874 -0.67768524 -0.59733937]\n", + " [-0.46087872 -0.66140798 -0.59171808]\n", + " [-0.49251376 -0.64409976 -0.58529112]\n", + " [-0.3260816 -0.69840876 -0.63709968]\n", + " [-0.35797933 -0.68533185 -0.63416958]\n", + " [-0.39014114 -0.67110701 -0.63040088]\n", + " [-0.42235026 -0.65576976 -0.62576855]\n", + " [-0.45439911 -0.63937079 -0.6202632 ]\n", + " [-0.48608441 -0.62197944 -0.61389211]]\n", + "DEBUG:root:fitpix2pix: ccdpx: shape: (96, 2)\n", + "DEBUG:root:fitpix2pix: ccdpx: shape: (96, 2)\n", + "DEBUG:root:fitpix2pix: visCut: True\n", + "DEBUG:root:radec2pix: curVec Shape: (96, 3)\n", + "DEBUG:root:fitpix2pix: visCut: True\n", + "DEBUG:root:radec2pix: camVec: [[ 0.00114566 0.00115565 0.00116422 0.00117136 0.00117701 0.00118116\n", + " 0.00118376 0.00118481 0.00114566 0.03017404 0.05908469 0.08776498\n", + " 0.11610332 0.14398904 0.17131174 0.19796003 0.00118481 0.03120455\n", + " 0.06110052 0.09075528 0.1200543 0.14888674 0.17714546 0.20472589\n", + " 0.19796003 0.19971011 0.20119978 0.20242973 0.20339908 0.20410611\n", + " 0.20454887 0.20472589 0.00124992 0.00126219 0.00127213 0.00127966\n", + " 0.00128472 0.00128725 0.01380981 0.04932315 0.08454761 0.11927732\n", + " 0.15330846 0.18643745 0.01428113 0.05100494 0.08742589 0.12333185\n", + " 0.15851879 0.19279062 0.19866498 0.20063357 0.20221208 0.20339952\n", + " 0.20419277 0.20458843 0.00124504 0.00124504 0.2046327 0.2046327\n", + " 0.01386393 0.04951642 0.08487904 0.1197456 0.15391263 0.18717755\n", + " 0.01400003 0.0500023 0.08571147 0.12092013 0.15542529 0.1890269\n", + " 0.01411023 0.05039551 0.08638432 0.12186779 0.15664287 0.19051132\n", + " 0.01419378 0.0506935 0.08689379 0.12258434 0.15756175 0.19162897\n", + " 0.0142499 0.05089361 0.08723571 0.12306478 0.15817704 0.19237609\n", + " 0.01427798 0.05099373 0.08740674 0.12330495 0.15848438 0.1927489 ]\n", + " [-0.20812604 -0.1806373 -0.15245726 -0.12369032 -0.09444319 -0.06482624\n", + " -0.03495355 -0.00494229 -0.20812604 -0.20797994 -0.20756351 -0.20687811\n", + " -0.20592557 -0.20470759 -0.20322504 -0.20147731 -0.00494229 -0.00493875\n", + " -0.0049287 -0.00491221 -0.00488939 -0.0048604 -0.00482538 -0.00478446\n", + " -0.20147731 -0.17488831 -0.14761103 -0.11975687 -0.09143612 -0.06275929\n", + " -0.03383788 -0.00478446 -0.19623245 -0.16206424 -0.12696122 -0.09111882\n", + " -0.05474021 -0.01803675 -0.20800294 -0.20764209 -0.20687664 -0.20570979\n", + " -0.20414458 -0.20218204 -0.00504426 -0.00503536 -0.00501654 -0.004988\n", + " -0.00495001 -0.00490286 -0.1899823 -0.15691665 -0.12292805 -0.08821992\n", + " -0.05299579 -0.01746139 -0.2080333 -0.2080333 -0.00488406 -0.00488406\n", + " -0.19620382 -0.19586344 -0.1951417 -0.19404219 -0.19256861 -0.19072284\n", + " -0.16204052 -0.16175873 -0.16116182 -0.16025398 -0.15904007 -0.15752379\n", + " -0.12694255 -0.12672084 -0.12625153 -0.1255387 -0.12458735 -0.12340188\n", + " -0.09110536 -0.09094551 -0.09060732 -0.09009413 -0.08941017 -0.08855947\n", + " -0.05473209 -0.05463571 -0.05443186 -0.05412272 -0.05371108 -0.05319971\n", + " -0.01803407 -0.01800225 -0.01793496 -0.01783294 -0.01769716 -0.01752858]\n", + " [ 0.97810134 0.9835491 0.98830938 0.99232018 0.99552956 0.99789587\n", + " 0.99938824 0.99998708 0.97810134 0.97766757 0.97643555 0.97442227\n", + " 0.97165564 0.96817455 0.96402898 0.95928031 0.99998708 0.99950082\n", + " 0.99811945 0.99586111 0.99275529 0.98884231 0.98417285 0.97880765\n", + " 0.95928031 0.96412134 0.96836441 0.97194676 0.97481703 0.97693499\n", + " 0.97827131 0.97880765 0.98055661 0.9867794 0.99190687 0.99583921\n", + " 0.9984998 0.9998365 0.97803071 0.97696059 0.97470701 0.97131684\n", + " 0.96686168 0.96143824 0.9998853 0.99868571 0.9961584 0.99235295\n", + " 0.98734355 0.98122767 0.96147748 0.96701775 0.97159609 0.97511327\n", + " 0.97749515 0.97869233 0.97812095 0.97812095 0.97882665 0.97882665\n", + " 0.98046512 0.97938023 0.97709532 0.97365734 0.96913788 0.96363342\n", + " 0.98668479 0.98556272 0.98319907 0.97964125 0.97496115 0.96925491\n", + " 0.9918097 0.99065742 0.98822988 0.98457518 0.97976579 0.97389805\n", + " 0.9957401 0.99456477 0.9920886 0.98836032 0.98345316 0.97746384\n", + " 0.99839939 0.99720849 0.9946995 0.99092169 0.98594885 0.97987817\n", + " 0.99973542 0.99853671 0.99601124 0.99220858 0.98720287 0.98109154]]\n", + "DEBUG:root:radec2pix: camVec Shape: (3, 96)\n", + "DEBUG:root:radec2pix: fitpx: [[2135.5 4155.50000025]\n", + " [2135.5 3863.07142842]\n", + " [2135.5 3570.64285705]\n", + " [2135.5 3278.21428595]\n", + " [2135.50000001 2985.78571392]\n", + " [2135.5 2693.35714283]\n", + " [2135.49999998 2400.92857178]\n", + " [2135.49999997 2108.50000011]\n", + " [2135.5 4155.50000025]\n", + " [1843.07142855 4155.50000014]\n", + " [1550.64285713 4155.50000003]\n", + " [1258.21428573 4155.49999997]\n", + " [ 965.78571432 4155.49999994]\n", + " [ 673.35714273 4155.50000018]\n", + " [ 380.92857156 4155.49999985]\n", + " [ 88.49999978 4155.50000022]\n", + " [2135.49999997 2108.50000011]\n", + " [1843.07142854 2108.50000001]\n", + " [1550.64285742 2108.49999997]\n", + " [1258.21428585 2108.49999999]\n", + " [ 965.78571387 2108.50000002]\n", + " [ 673.35714329 2108.49999998]\n", + " [ 380.92857158 2108.5 ]\n", + " [ 88.4999998 2108.50000001]\n", + " [ 88.49999978 4155.50000022]\n", + " [ 88.50000021 3863.07142839]\n", + " [ 88.50000011 3570.64285706]\n", + " [ 88.50000015 3278.21428562]\n", + " [ 88.49999997 2985.7857143 ]\n", + " [ 88.49999979 2693.35714292]\n", + " [ 88.49999995 2400.92857144]\n", + " [ 88.4999998 2108.50000001]\n", + " [2134.5 4027.99999985]\n", + " [2134.5 3669.59999985]\n", + " [2134.49999999 3311.20000044]\n", + " [2134.5 2952.7999998 ]\n", + " [2134.5 2594.40000013]\n", + " [2134.50000001 2235.99999985]\n", + " [2007.99999998 4154.50000028]\n", + " [1649.59999995 4154.50000021]\n", + " [1291.20000012 4154.49999971]\n", + " [ 932.8 4154.5 ]\n", + " [ 574.40000006 4154.49999992]\n", + " [ 215.99999986 4154.50000015]\n", + " [2007.99999994 2109.50000002]\n", + " [1649.60000009 2109.49999999]\n", + " [1291.20000007 2109.5 ]\n", + " [ 932.80000034 2109.49999998]\n", + " [ 574.40000029 2109.49999999]\n", + " [ 216.00000015 2109.5 ]\n", + " [ 89.50000013 4027.99999988]\n", + " [ 89.50000024 3669.59999981]\n", + " [ 89.50000003 3311.19999998]\n", + " [ 89.49999973 2952.80000012]\n", + " [ 89.49999991 2594.40000002]\n", + " [ 89.50000029 2235.99999997]\n", + " [2134.5 4154.50000026]\n", + " [2134.5 4154.50000026]\n", + " [ 89.50000019 2109.49999999]\n", + " [ 89.50000019 2109.49999999]\n", + " [2008. 4027.99999998]\n", + " [1649.6 4027.99999999]\n", + " [1291.19999989 4028.00000025]\n", + " [ 932.79999995 4028.00000008]\n", + " [ 574.3999998 4028.00000025]\n", + " [ 215.99999992 4028.00000008]\n", + " [2008.00000001 3669.59999984]\n", + " [1649.60000007 3669.59999979]\n", + " [1291.19999996 3669.60000008]\n", + " [ 932.80000004 3669.59999994]\n", + " [ 574.39999995 3669.60000006]\n", + " [ 2DEBUG:root:radec2pix: fitpx: [[ 2.13550000e+03 -4.99999973e-01]\n", + " [ 2.13550000e+03 2.91928572e+02]\n", + " [ 2.13550000e+03 5.84357143e+02]\n", + " [ 2.13550000e+03 8.76785714e+02]\n", + " [ 2.13550000e+03 1.16921429e+03]\n", + " [ 2.13550000e+03 1.46164286e+03]\n", + " [ 2.13550000e+03 1.75407143e+03]\n", + " [ 2.13550000e+03 2.04650000e+03]\n", + " [ 2.13550000e+03 -4.99999973e-01]\n", + " [ 2.42792857e+03 -4.99999766e-01]\n", + " [ 2.72035714e+03 -5.00000023e-01]\n", + " [ 3.01278571e+03 -4.99999798e-01]\n", + " [ 3.30521429e+03 -5.00000229e-01]\n", + " [ 3.59764286e+03 -5.00000231e-01]\n", + " [ 3.89007143e+03 -4.99999870e-01]\n", + " [ 4.18250000e+03 -4.99999884e-01]\n", + " [ 2.13550000e+03 2.04650000e+03]\n", + " [ 2.42792857e+03 2.04650000e+03]\n", + " [ 2.72035714e+03 2.04650000e+03]\n", + " [ 3.01278571e+03 2.04650000e+03]\n", + " [ 3.30521429e+03 2.04650000e+03]\n", + " [ 3.59764286e+03 2.04650000e+03]\n", + " [ 3.89007143e+03 2.04650000e+03]\n", + " [ 4.18250000e+03 2.04650000e+03]\n", + " [ 4.18250000e+03 -4.99999884e-01]\n", + " [ 4.18250000e+03 2.91928572e+02]\n", + " [ 4.18250000e+03 5.84357143e+02]\n", + " [ 4.18250000e+03 8.76785714e+02]\n", + " [ 4.18250000e+03 1.16921429e+03]\n", + " [ 4.18250000e+03 1.46164286e+03]\n", + " [ 4.18250000e+03 1.75407143e+03]\n", + " [ 4.18250000e+03 2.04650000e+03]\n", + " [ 2.13650000e+03 1.27000000e+02]\n", + " [ 2.13650000e+03 4.85400000e+02]\n", + " [ 2.13650000e+03 8.43800000e+02]\n", + " [ 2.13650000e+03 1.20220000e+03]\n", + " [ 2.13650000e+03 1.56060000e+03]\n", + " [ 2.13650000e+03 1.91900000e+03]\n", + " [ 2.26300000e+03 4.99999770e-01]\n", + " [ 2.62140000e+03 5.00000267e-01]\n", + " [ 2.97980000e+03 4.99999825e-01]\n", + " [ 3.33820000e+03 5.00000071e-01]\n", + " [ 3.69660000e+03 5.00000113e-01]\n", + " [ 4.05500000e+03 5.00000214e-01]\n", + " [ 2.26300000e+03 2.04550000e+03]\n", + " [ 2.62140000e+03 2.04550000e+03]\n", + " [ 2.97980000e+03 2.04550000e+03]\n", + " [ 3.33820000e+03 2.04550000e+03]\n", + " [ 3.69660000e+03 2.04550000e+03]\n", + " [ 4.05500000e+03 2.04550000e+03]\n", + " [ 4.18150000e+03 1.27000000e+02]\n", + " [ 4.18150000e+03 4.85400000e+02]\n", + " [ 4.18150000e+03 8.43800000e+02]\n", + " [ 4.18150000e+03 1.20220000e+03]\n", + " [ 4.18150000e+03 1.56060000e+03]\n", + " [ 4.18150000e+03 1.91900000e+03]\n", + " [ 2.13650000e+03 5.00000284e-01]\n", + " [ 2.13650000e+03 5.00000284e-01]\n", + " [ 4.18150000e+03 2.04550000e+03]\n", + " [ 4.18150000e+03 2.04550000e+03]\n", + " [ 2.26300000e+03 1.27000000e+02]\n", + " [ 2.62140000e+03 1.27000000e+02]\n", + " [ 2.97980000e+03 1.27000000e+02]\n", + " [ 3.33820000e+03 1.27000000e+02]\n", + " [ 3.69660000e+03 1.27000000e+02]\n", + " [ 4.05500000e+03 1.27000000e+02]\n", + " [ 2.26300000e+03 4.85400000e+02]\n", + " [ 2.62140000e+03 4.85400000e+02]\n", + " [ 2.97980000e+03 4.85400000e+02]\n", + " [ 3.33820000e+03 4.85400000e+02]\n", + " [ 3.69660000e+03 4.85400000e+02]\n", + " [ 4.05500000e+03 4.85400000e+02]\n", + " [ 2.26300000e+03 8.43800000e+02]\n", + " [ 2.62140000e+03 8.43800000e+02]\n", + " [ 2.97980000e+03 8.43800000e+02]\n", + " [ 3.33820000e+03 8.43800000e+02]\n", + " [ 3.69660000e+03 8.43800000e+02]\n", + " [ 4.05500000e+03 8.43800000e+02]\n", + " [ 2.26300000e+03 1.20220000e+03]\n", + " [ 2.62140000e+03 1.20220000e+03]\n", + " [ 2.97980000e+03 1.20220000e+03]\n", + " [ 3.33820000e+03 1.20220000e+03]\n", + " [ 3.69660000e+03 1.20220000e+03]\n", + " [ 4.05500000e+03 1.20220000e+03]\n", + " [ 2.26300000e+03 1.56060000e+03]\n", + " [ 2.62140000e+03 1.56060000e+03]\n", + " [ 2.97980000e+03 1.56060000e+03]\n", + " [ 3.33820000e+03 1.56060000e+03]\n", + " [ 3.69660000e+03 1.56060000e+03]\n", + " [ 4.05500000e+03 1.56060000e+03]\n", + " [ 2.26300000e+03 1.91900000e+03]\n", + " [ 2.62140000e+03 1.91900000e+03]\n", + " [ 2.97980000e+03 1.91900000e+03]\n", + " [ 3.33820000e+03 1.91900000e+03]\n", + " [ 3.69660000e+03 1.91900000e+03]\n", + " [ 4.05500000e+03 1.91900000e+03]]\n", + "DEBUG:root:radec2pix: curVec Shape: (96, 3)\n", + "DEBUG:root:fitpix2pix: ccdpx: shape: (96, 2)\n", + "DEBUG:root:fitpix2pix: visCut: True\n", + "DEBUG:root:cartToSphere: vec: [[ 0.00114566 -0.20812604 0.97810134]\n", + " [ 0.00115565 -0.1806373 0.9835491 ]\n", + " [ 0.00116422 -0.15245726 0.98830938]\n", + " [ 0.00117136 -0.12369032 0.99232018]\n", + " [ 0.00117701 -0.09444319 0.99552956]\n", + " [ 0.00118116 -0.06482624 0.99789587]\n", + " [ 0.00118376 -0.03495355 0.99938824]\n", + " [ 0.00118481 -0.00494229 0.99998708]\n", + " [ 0.00114566 -0.20812604 0.97810134]\n", + " [ 0.03017404 -0.20797994 0.97766757]\n", + " [ 0.05908469 -0.20756351 0.97643555]\n", + " [ 0.08776498 -0.20687811 0.97442227]\n", + " [ 0.11610332 -0.20592557 0.97165564]\n", + " [ 0.14398904 -0.20470759 0.96817455]\n", + " [ 0.17131174 -0.20322504 0.96402898]\n", + " [ 0.19796003 -0.20147731 0.95928031]\n", + " [ 0.00118481 -0.00494229 0.99998708]\n", + " [ 0.03120455 -0.00493875 0.99950082]\n", + " [ 0.06110052 -0.0049287 0.99811945]\n", + " [ 0.09075528 -0.00491221 0.99586111]\n", + " [ 0.1200543 -0.00488939 0.99275529]\n", + " [ 0.14888674 -0.0048604 0.98884231]\n", + " [ 0.17714546 -0.00482538 0.98417285]\n", + " [ 0.20472589 -0.00478446 0.97880765]\n", + " [ 0.19796003 -0.20147731 0.95928031]\n", + " [ 0.19971011 -0.17488831 0.96412134]\n", + " [ 0.20119978 -0.14761103 0.96836441]\n", + " [ 0.20242973 -0.11975687 0.97194676]\n", + " [ 0.20339908 -0.09143612 0.97481703]\n", + " [ 0.20410611 -0.06275929 0.97693499]\n", + " [ 0.20454887 -0.03383788 0.97827131]\n", + " [ 0.20472589 -0.00478446 0.97880765]\n", + " [ 0.00124992 -0.19623245 0.98055661]\n", + " [ 0.00126219 -0.16206424 0.9867794 ]\n", + " [ 0.00127213 -0.12696122 0.99190687]\n", + " [ 0.00127966 -0.09111882 0.99583921]\n", + " [ 0.00128472 -0.05474021 0.9984998 ]\n", + " [ 0.00128725 -0.01803675 0.9998365 ]\n", + " [ 0.01380981 -0.20800294 0.97803071]\n", + " [ 0.04932315 -0.20764209 0.97696059]\n", + " [ 0.08454761 -0.20687664 0.97470701]\n", + " [ 0.11927732 -0.20570979 0.97131684]\n", + " [ 0.15330846 -0.20414458 0.96686168]\n", + " [ 0.18643745 -0.20218204 0.96143824]\n", + " [ 0.01428113 -0.00504426 0.9998853 ]\n", + " [ 0.05100494 -0.00503536 0.99868571]\n", + " [ 0.08742589 -0.00501654 0.9961584 ]\n", + " [ 0.12333185 -0.004988 0.99235295]\n", + " [ 0.15851879 -0.00495001 0.98734355]\n", + " [ 0.19279062 -0.00490286 0.98122767]\n", + " [ 0.19866498 -0.1899823 0.96147748]\n", + " [ 0.20063357 -0.15691665 0.96701775]\n", + " [ 0.20221208 -0.12292805 0.97159609]\n", + " [ 0.20339952 -0.08821992 0.97511327]\n", + " [ 0.20419277 -0.05299579 0.97749515]\n", + " [ 0.20458843 -0.01746139 0.97869233]\n", + " [ 0.00124504 -0.2080333 0.97812095]\n", + " [ 0.00124504 -0.2080333 0.97812095]\n", + " [ 0.2046327 -0.00488406 0.97882665]\n", + " [ 0.2046327 -0.00488406 0.97882665]\n", + " [ 0.01386393 -0.19620382 0.98046512]\n", + " [ 0.04951642 -0.19586344 0.97938023]\n", + " [ 0.08487904 -0.1951417 0.97709532]\n", + " [ 0.1197456 -0.19404219 0.97365734]\n", + " [ 0.15391263 -0.19256861 0.96913788]\n", + " [ 0.18717755 -0.19072284 0.96363342]\n", + " [ 0.01400003 -0.16204052 0.98668479]\n", + " [ 0.0500023 -0.16175873 0.98556272]\n", + " [ 0.08571147 -0.16116182 0.98319907]\n", + " [ 0.12092013 -0.16025398 0.97964125]\n", + " [ 0.15542529 -0.15904007 0.97496115]\n", + " [ 0.1890269 -0.15752379 0.96925491]\n", + " [ 0.01411023 -0.12694255 0.9918097 ]\n", + " [ 0.05039551 -0.12672084 0.99065742]\n", + " [ 0.08638432 -0.12625153 0.98822988]\n", + " [ 0.12186779 -0.1255387 0.98457518]\n", + " [ 0.15664287 -0.12458735 0.97976579]\n", + " [ 0.19051132 -0.12340188 0.97389805]\n", + " [ 0.01419378 -0.09110536 0.9957401 ]\n", + " [ 0.0506935 -0.09094551 0.99456477]\n", + " [ 0.08689379 -0.09060732 0.9920886 ]\n", + " [ 0.12258434 -0.09009413 0.98836032]\n", + " [ 0.15756175 -0.08941017 0.98345316]\n", + " [ 0.19162897 -0.08855947 0.97746384]\n", + " [ 0.0142499 -0.05473209 0.99839939]\n", + " [ 0.05089361 -0.05463571 0.99720849]\n", + " [ 0.08723571 -0.05443186 0.9946995 ]\n", + " [ 0.12306478 -0.05412272 0.99092169]\n", + " [ 0.15817704 -0.05371108 0.98594885]\n", + " [ 0.19237609 -0.05319971 0.97987817]\n", + " [ 0.01427798 -0.01803407 0.99973542]\n", + " [ 0.05099373 -0.01800225 0.99853671]\n", + " [ 0.08740674 -0.01793496 0.99601124]\n", + " [ 0.12330495 -0.01783294 0.99220858]\n", + " [ 0.15848438 -0.01769716 0.98720287]\n", + " [ 0.1927489 -0.01752858 0.98109154]]\n", + "DEBUG:root:radec2pix: curVec: [[ 0.29380328 0.33703782 -0.89447479]\n", + " [ 0.27791153 0.35855617 -0.89118048]\n", + " [ 0.2613588 0.38018113 -0.88721693]\n", + " [ 0.24421609 0.4018118 -0.88255639]\n", + " [ 0.22655428 0.4233509 -0.87718138]\n", + " [ 0.20844427 0.44470463 -0.87108483]\n", + " [ 0.18995746 0.46578263 -0.86427004]\n", + " [ 0.17116613 0.48649812 -0.85675068]\n", + " [ 0.29380328 0.33703782 -0.89447479]\n", + " [ 0.27508113 0.32155945 -0.90605182]\n", + " [ 0.25564776 0.30562451 -0.91719021]\n", + " [ 0.23558538 0.28927623 -0.92780321]\n", + " [ 0.21497612 0.27256224 -0.937814 ]\n", + " [ 0.19390214 0.25553486 -0.94715569]\n", + " [ 0.17244618 0.23825102 -0.95577129]\n", + " [ 0.15069196 0.22077212 -0.96361382]\n", + " [ 0.17116613 0.48649812 -0.85675068]\n", + " [ 0.15056465 0.47194364 -0.86867686]\n", + " [ 0.12941736 0.45671492 -0.88014921]\n", + " [ 0.10780288 0.44085177 -0.89108263]\n", + " [ 0.08580061 0.42439846 -0.90140124]\n", + " [ 0.06349223 0.40740488 -0.91103787]\n", + " [ 0.04096249 0.3899272 -0.91993416]\n", + " [ 0.01829919 0.37202802 -0.9280411 ]\n", + " [ 0.15069196 0.22077212 -0.96361382]\n", + " [ 0.13283981 0.24216495 -0.96109819]\n", + " [ 0.11451833 0.26378728 -0.95775875]\n", + " [ 0.09579544 0.28554224 -0.95356639]\n", + " [ 0.07673991 0.30733574 -0.94850183]\n", + " [ 0.05742257 0.32907524 -0.94255617]\n", + " [ 0.03791695 0.3506693 -0.93573145]\n", + " [ 0.01829919 0.37202802 -0.9280411 ]\n", + " [ 0.28689696 0.34634822 -0.89315902]\n", + " [ 0.26696507 0.37280622 -0.88867608]\n", + " [ 0.24611103 0.39932376 -0.88315904]\n", + " [ 0.22446539 0.42572026 -0.87657147]\n", + " [ 0.20215872 0.45182304 -0.86890033]\n", + " [ 0.17932285 0.47746719 -0.86015603]\n", + " [ 0.28567937 0.33042135 -0.89956046]\n", + " [ 0.26224332 0.31113906 -0.91346643]\n", + " [ 0.23782079 0.29121329 -0.92662619]\n", + " [ 0.21256298 0.27072989 -0.93889419]\n", + " [ 0.18662125 0.24978513 -0.9501473 ]\n", + " [ 0.1601483 0.22848573 -0.96028474]\n", + " [ 0.16232094 0.48016721 -0.86202747]\n", + " [ 0.13669543 0.46187027 -0.87635051]\n", + " [ 0.11032808 0.44259985 -0.88990622]\n", + " [ 0.08336467 0.42243556 -0.90255112]\n", + " [ 0.05595564 0.40146929 -0.91416157]\n", + " [ 0.02825833 0.37980717 -0.92463397]\n", + " [ 0.14304554 0.23012514 -0.96259046]\n", + " [ 0.1208425 0.25651152 -0.95895721]\n", + " [ 0.09800184 0.28314588 -0.95405663]\n", + " [ 0.07464973 0.30985391 -0.94784913]\n", + " [ 0.05091662 0.3364652 -0.94031839]\n", + " [ 0.02693902 0.36281199 -0.93147289]\n", + " [ 0.29368742 0.337059 -0.89450485]\n", + " [ 0.29368742 0.337059 -0.89450485]\n", + " [ 0.01844401 0.37201734 -0.92804252]\n", + " [ 0.01844401 0.37201734 -0.92804252]\n", + " [ 0.27882071 0.33972854 -0.8982447 ]\n", + " [ 0.25520196 0.32048135 -0.91223005]\n", + " [ 0.23061229 0.30056706 -0.92546065]\n", + " [ 0.20520243 0.28007143 -0.937791 ]\n", + " [ 0.17912322 0.25909085 -0.94909789]\n", + " [ 0.15252721 0.23773238 -0.95928034]\n", + " [ 0.25870779 0.36624336 -0.89383224]\n", + " [ 0.23460653 0.34711365 -0.90800434]\n", + " [ 0.20957831 0.32725193 -0.92140279]\n", + " [ 0.18377196 0.3067435 -0.93388238]\n", + " [ 0.15733694 0.28568491 -0.94531964]\n", + " [ 0.13042562 0.2641841 -0.95561285]\n", + " [ 0.23769078 0.39282659 -0.88836387]\n", + " [ 0.21315805 0.37384179 -0.90266603]\n", + " [ 0.1877415 0.35406333 -0.91618355]\n", + " [ 0.16158807 0.33357566 -0.92877154]\n", + " [ 0.13484625 0.31247505 -0.94030624]\n", + " [ 0.10766887 0.29086993 -0.95068507]\n", + " [ 0.21589977 0.4192978 -0.88180307]\n", + " [ 0.19098484 0.40048601 -0.89617841]\n", + " [ 0.16522844 0.38082247 -0.9097658 ]\n", + " [ 0.13877617 0.36039038 -0.9224207 ]\n", + " [ 0.11177632 0.33928514 -0.93401908]\n", + " [ 0.08438274 0.31761511 -0.94445762]\n", + " [ 0.19346485 0.44548421 -0.87413682]\n", + " [ 0.16821562 0.42687332 -0.88852837]\n", + " [ 0.14216701 0.40735636 -0.90213599]\n", + " [ 0.11546408 0.38701497 -0.91481553]\n", + " [ 0.0882557 0.3659432 -0.92644293]\n", + " [ 0.06069713 0.3442488 -0.93691442]\n", + " [ 0.17051762 0.47122053 -0.86537561]\n", + " [ 0.14498177 0.45283723 -0.87972651]\n", + " [ 0.11868893 0.43349736 -0.89330453]\n", + " [ 0.09178455 0.41328101 -0.90596601]\n", + " [ 0.06441862 0.39228065 -0.91758712]\n", + " [ 0.03674795 0.37060289 -0.92806416]]\n", + "DEBUG:root:radec2pix: curVec Shape: (96, 3)\n", + "DEBUG:root:radec2pix: lng: [270.31539085 270.36655189 270.43752447 270.542579 270.71402077\n", + " 271.04383538 271.93968007 283.48101478 270.31539085 278.25496108\n", + " 285.88944585 292.98836581 299.41482725 305.12212741 310.12974078\n", + " 314.49549071 283.48101478 351.00638008 355.38819591 356.90183998\n", + " 357.66783206 358.13024629 358.43966874 358.66123705 314.49549071\n", + " 318.7910165 323.73421549 329.3915583 335.79415496 342.90819266\n", + " 350.6068072 358.66123705 270.36494598 270.44622312 270.57407396\n", + " 270.80460183 271.34445266 274.08218667 273.79842993 283.36234739\n", + " 292.22915231 300.10657084 306.9058095 312.67997848 340.54617186\n", + " 354.36185807 356.71594406 357.68400903 358.21142556 358.54322592\n", + " 316.27981968 321.97083668 328.70389405 336.55230838 345.45057848\n", + " 355.12169333 270.34290102 270.34290102 358.63275532 358.63275532\n", + " 274.04185073 284.1877247 293.50716352 301.67919787 308.63398936\n", + " 314.46249394 274.93799638 287.17724528 298.00560006 307.03649051\n", + " 314.34141513 320.19418356 276.34264386 291.68718176 304.38086955\n", + " 314.14993264 321.50269119 327.06723776 278.85521862 299.13552131\n", + " 313.8014816 323.6857401 330.42677291 335.19643967 284.59338686\n", + " 312.96912569 328.03736148 336.26056332 341.24440919 344.5417427\n", + " 308.36945368 340.55550723 348.40444495 351.77067409 353.62846105\n", + " 354.80381648]\n", + "DEBUG:root:radec2pix: lat: [77.98725933 79.59290201 81.23038669 82.89455027 84.58030503 86.2825061\n", + " 87.99575217 89.70880341 77.98725933 77.86842442 77.53699463 77.01330297\n", + " 76.32579246 75.50615888 74.58567435 73.59317035 89.70880341 88.18955545\n", + " 86.48562338 84.78529769 83.09901991 81.43298752 79.79264001 78.18327445\n", + " 73.59317035 74.60559591 75.5496878 76.3965297 77.11433871 77.67029216\n", + " 78.03413945 78.18327445 78.68303826 80.67298244 82.70560399 84.77150761\n", + " 86.86118368 88.96388538 77.96782959 77.67716345 77.0861016 76.24391961\n", + " 75.20859077 74.03673952 89.13217661 87.06213831 84.97619114 82.90974635\n", + " 80.87458441 78.88067366 74.04491662 75.24365824 76.31136856 77.19067025\n", + " 77.8215059 78.15105181 77.99265855 77.99265855 78.18859038 78.18859038\n", + " 78.65635764 78.34456159 77.7133866 76.81969543 75.7283623 74.50063549\n", + " 80.63959245 80.25225497 79.48245907 78.41882236 77.15141692 75.75558792\n", + " 82.66188886 82.16191851 81.200562 79.92354945 78.45441908 76.88031771\n", + " 84.70956295 84.0235478 82.78807615 81.24955295 79.56251519 77.81300601\n", + " 86.75780924 85.71788826 84.09815339 82.27374035 80.38380312 78.4866344\n", + " 88.68197076 86.90004071 84.8808155 82.84304634 80.82390053 78.84030268]\n", + "16.00000005 3669.59999995]\n", + " [2007.99999998 3311.2000002 ]\n", + " [1649.59999994 3311.20000015]\n", + " [1291.20000016 3311.19999976]\n", + " [ 932.80000015 3311.19999985]\n", + " [ 574.40000019 3311.19999985]\n", + " [ 216.00000023 3311.19999985]\n", + " [2007.99999995 2952.80000031]\n", + " [1649.60000003 2952.79999994]\n", + " [1291.19999981 2952.80000019]\n", + " [ 932.79999986 2952.8000001 ]\n", + " [ 574.39999987 2952.80000007]\n", + " [ 216.00000004 2952.79999998]\n", + " [2007.99999998 2594.40000008]\n", + " [1649.60000021 2594.39999977]\n", + " [1291.19999986 2594.40000009]\n", + " [ 932.80000028 2594.39999988]\n", + " [ 574.39999984 2594.40000006]\n", + " [ 216.00000019 2594.39999995]\n", + " [2007.99999983 2236.00000022]\n", + " [1649.60000014 2235.99999995]\n", + " [1291.19999989 2236.00000002]\n", + " [ 932.80000032 2235.99999995]\n", + " [ 574.40000023 2235.99999997]\n", + " [ 216.00000006 2235.99999999]]\n", + "DEBUG:root:radec2pix: camVec: [[0.20622014 0.20805053 0.20961035 0.210899 0.21191543 0.21265818\n", + " 0.21312568 0.21331667 0.20622014 0.17982824 0.1527297 0.12503427\n", + " 0.09685185 0.06829276 0.03946812 0.01049004 0.21331667 0.18597713\n", + " 0.1579279 0.12927353 0.10011961 0.07057467 0.04075124 0.01076573\n", + " 0.01049004 0.01056977 0.01063642 0.01068985 0.01072978 0.01075592\n", + " 0.01076796 0.01076573 0.20696213 0.20902258 0.21067623 0.21192136\n", + " 0.21275532 0.21317532 0.1948134 0.16197729 0.1281888 0.09365018\n", + " 0.05856456 0.02313694 0.20149034 0.16749252 0.1325326 0.09680441\n", + " 0.0605079 0.02385188 0.01062602 0.01071595 0.0107859 0.01083545\n", + " 0.01086402 0.01087112 0.20613793 0.20613793 0.01086844 0.01086844\n", + " 0.19558949 0.1626169 0.12869151 0.09401511 0.05879055 0.02322296\n", + " 0.19753009 0.16421774 0.12995114 0.09493033 0.05935726 0.02343764\n", + " 0.19908829 0.16550536 0.13096617 0.09566871 0.05981412 0.02360896\n", + " 0.20026215 0.16647694 0.13173312 0.09622682 0.06015857 0.02373584\n", + " 0.20104857 0.16712825 0.13224724 0.09660024 0.06038739 0.02381698\n", + " 0.20144435 0.16745515 0.13250401 0.09678486 0.06049766 0.02385117]\n", + " [0.20255556 0.17610143 0.14895462 0.12122494 0.09302239 0.06445739\n", + " 0.03564119 0.00668594 0.20255556 0.20441077 0.20600074 0.2073248\n", + " 0.20838186 0.20917033 0.20968847 0.20993479 0.00668594 0.00675821\n", + " 0.00682246 0.00687853 0.00692617 0.0069651 0.00699507 0.00701584\n", + " 0.20993479 0.18250233 0.15437326 0.12565215 0.09644485 0.06686038\n", + " 0.03701177 0.00701584 0.19112005 0.15821703 0.12438266 0.08981934\n", + " 0.05473042 0.0193211 0.20330747 0.20540191 0.20709749 0.2083924\n", + " 0.20928375 0.20976841 0.00681796 0.00690216 0.00697398 0.00703299\n", + " 0.00707868 0.00711058 0.19806614 0.16396327 0.12891793 0.09312436\n", + " 0.05678335 0.02010461 0.2024732 0.2024732 0.00711848 0.00711848\n", + " 0.19190537 0.19387759 0.19547539 0.1966967 0.19753824 0.19799645\n", + " 0.15886347 0.1604891 0.1618095 0.16282181 0.16352163 0.16390447\n", + " 0.12488974 0.12616714 0.12720791 0.12800859 0.1285643 0.12887024\n", + " 0.09018615 0.09111203 0.09186896 0.09245358 0.0928614 0.09308815\n", + " 0.05495583 0.05552612 0.05599434 0.05635799 0.05661388 0.05675899\n", + " 0.01940412 0.01961547 0.01979108 0.01992994 0.02003078 0.02009239]\n", + " [0.95731108 0.96213474 0.96637261 0.96996192 0.9728508 0.97499833\n", + " 0.97637449 0.97696023 0.95731108 0.96222557 0.96655954 0.97024886\n", + " 0.97324032 0.97549161 0.97697135 0.97765911 0.97696023 0.98253083\n", + " 0.98742708 0.99158512 0.9949513 0.99748218 0.99914484 0.99991744\n", + " 0.97765911 0.9831486 0.98795534 0.99201677 0.99528049 0.99770436\n", + " 0.99925681 0.99991744 0.95949977 0.96502691 0.96961048 0.97315046\n", + " 0.9755715 0.9768229 0.95953833 0.96518051 0.96988569 0.97355136\n", + " 0.97609964 0.97747731 0.97946677 0.98584919 0.99115411 0.99527858\n", + " 0.99814262 0.99969022 0.98013106 0.98640824 0.99159661 0.99559552\n", + " 0.99832741 0.99973878 0.95734621 0.95734621 0.9999156 0.9999156\n", + " 0.96172609 0.96745399 0.9722283 0.9759465 0.97853069 0.9799276\n", + " 0.96733875 0.97328094 0.97822819 0.98207805 0.98475245 0.98619775\n", + " 0.97199095 0.97810522 0.98319175 0.98714806 0.9898957 0.99138039\n", + " 0.97558266 0.98182688 0.98701899 0.99105637 0.99386 0.99537491\n", + " 0.97803851 0.98437036 0.98963392 0.99372641 0.99656823 0.99810379\n", + " 0.97930774 0.98568454 0.99098486 0.99510577 0.99796733 0.99951359]]\n", + "DEBUG:root:radec2pix: camVec Shape: (3, 96)\n", + "DEBUG:root:fitpix2pix: ccdpx: shape: (96, 2)\n", + "DEBUG:root:fitpix2pix: visCut: True\n", + "DEBUG:root:cartToSphere: vec: [[0.20622014 0.20255556 0.95731108]\n", + " [0.20805053 0.17610143 0.96213474]\n", + " [0.20961035 0.14895462 0.96637261]\n", + " [0.210899 0.12122494 0.96996192]\n", + " [0.21191543 0.09302239 0.9728508 ]\n", + " [0.21265818 0.06445739 0.97499833]\n", + " [0.21312568 0.03564119 0.97637449]\n", + " [0.21331667 0.00668594 0.97696023]\n", + " [0.20622014 0.20255556 0.95731108]\n", + " [0.17982824 0.20441077 0.96222557]\n", + " [0.1527297 0.20600074 0.96655954]\n", + " [0.12503427 0.2073248 0.97024886]\n", + " [0.09685185 0.20838186 0.97324032]\n", + " [0.06829276 0.20917033 0.97549161]\n", + " [0.03946812 0.20968847 0.97697135]\n", + " [0.01049004 0.20993479 0.97765911]\n", + " [0.21331667 0.00668594 0.97696023]\n", + " [0.18597713 0.00675821 0.98253083]\n", + " [0.1579279 0.00682246 0.98742708]\n", + " [0.12927353 0.00687853 0.99158512]\n", + " [0.10011961 0.00692617 0.9949513 ]\n", + " [0.07057467 0.0069651 0.99748218]\n", + " [0.04075124 0.00699507 0.99914484]\n", + " [0.01076573 0.00701584 0.99991744]\n", + " [0.01049004 0.20993479 0.97765911]\n", + " [0.01056977 0.18250233 0.9831486 ]\n", + " [0.01063642 0.15437326 0.98795534]\n", + " [0.01068985 0.12565215 0.99201677]\n", + " [0.01072978 0.09644485 0.99528049]\n", + " [0.01075592 0.06686038 0.99770436]\n", + " [0.01076796 0.03701177 0.99925681]\n", + " [0.01076573 0.00701584 0.99991744]\n", + " [0.20696213 0.19112005 0.95949977]\n", + " [0.20902258 0.15821703 0.96502691]\n", + " [0.21067623 0.12438266 0.96961048]\n", + " [0.21192136 0.08981934 0.97315046]\n", + " [0.21275532 0.05473042 0.9755715 ]\n", + " [0.21317532 0.0193211 0.9768229 ]\n", + " [0.1948134 0.20330747 0.95953833]\n", + " [0.16197729 0.20540191 0.96518051]\n", + " [0.1281888 0.20709749 0.96988569]\n", + " [0.09365018 0.2083924 0.97355136]\n", + " [0.05856456 0.20928375 0.97609964]\n", + " [0.02313694 0.20976841 0.97747731]\n", + " [0.20149034 0.00681796 0.97946677]\n", + " [0.16749252 0.00690216 0.98584919]\n", + " [0.1325326 0.00697398 0.99115411]\n", + " [0.09680441 0.00703299 0.99527858]\n", + " [0.0605079 0.00707868 0.99814262]\n", + " [0.02385188 0.00711058 0.99969022]\n", + " [0.01062602 0.19806614 0.98013106]\n", + " [0.01071595 0.16396327 0.98640824]\n", + " [0.0107859 0.12891793 0.99159661]\n", + " [0.01083545 0.09312436 0.99559552]\n", + " [0.01086402 0.05678335 0.99832741]\n", + " [0.01087112 0.02010461 0.99973878]\n", + " [0.20613793 0.2024732 0.95734621]\n", + " [0.20613793 0.2024732 0.95734621]\n", + " [0.01086844 0.00711848 0.9999156 ]\n", + " [0.01086844 0.00711848 0.9999156 ]\n", + " [0.19558949 0.19190537 0.96172609]\n", + " [0.1626169 0.19387759 0.96745399]\n", + " [0.12869151 0.19547539 0.9722283 ]\n", + " [0.09401511 0.1966967 0.9759465 ]\n", + " [0.05879055 0.19753824 0.97853069]\n", + " [0.02322296 0.19799645 0.9799276 ]\n", + " [0.19753009 0.15886347 0.96733875]\n", + " [0.16421774 0.1604891 0.97328094]\n", + " [0.12995114 0.1618095 0.97822819]\n", + " [0.09493033 0.16282181 0.98207805]\n", + " [0.05935726 0.16352163 0.98475245]\n", + " [0.02343764 0.16390447 0.98619775]\n", + " [0.19908829 0.12488974 0.97199095]\n", + " [0.16550536 0.12616714 0.97810522]\n", + " [0.13096617 0.12720791 0.98319175]\n", + " [0.09566871 0.12800859 0.98714806]\n", + " [0.05981412 0.1285643 0.9898957 ]\n", + " [0.02360896 0.12887024 0.99138039]\n", + " [0.20026215 0.09018615 0.97558266]\n", + " [0.16647694 0.09111203 0.98182688]\n", + " [0.13173312 0.09186896 0.98701899]\n", + " [0.09622682 0.09245358 0.99105637]\n", + " [0.06015857 0.0928614 0.99386 ]\n", + " [0.02373584 0.09308815 0.99537491]\n", + " [0.20104857 0.05495583 0.97803851]\n", + " [0.16712825 0.05552612 0.98437036]\n", + " [0.13224724 0.05599434 0.98963392]\n", + " [0.09660024 0.05635799 0.99372641]\n", + " [0.06038739 0.05661388 0.99656823]\n", + " [0.02381698 0.05675899 0.99810379]\n", + " [0.20144435 0.01940412 0.97930774]\n", + " [0.16745515 0.01961547 0.98568454]\n", + " [0.13250401 0.01979108 0.99098486]\n", + " [0.09678486 0.01992994 0.99510577]\n", + " [0.06049766 0.02003078 0.99796733]\n", + " [0.02385117 0.02009239 0.99951359]]\n", + "DEBUG:root:radec2pix: camVec: [[0.20622014 0.20805053 0.20961035 0.210899 0.21191543 0.21265818\n", + " 0.21312568 0.21331667 0.20622014 0.17982824 0.1527297 0.12503427\n", + " 0.09685185 0.06829276 0.03946812 0.01049004 0.21331667 0.18597713\n", + " 0.1579279 0.12927353 0.10011961 0.07057467 0.04075124 0.01076573\n", + " 0.01049004 0.01056977 0.01063642 0.01068985 0.01072978 0.01075592\n", + " 0.01076796 0.01076573 0.20696213 0.20902258 0.21067623 0.21192136\n", + " 0.21275532 0.21317532 0.1948134 0.16197729 0.1281888 0.09365018\n", + " 0.05856456 0.02313694 0.20149034 0.16749252 0.1325326 0.09680441\n", + " 0.0605079 0.02385188 0.01062602 0.01071595 0.0107859 0.01083545\n", + " 0.01086402 0.01087112 0.20613793 0.20613793 0.01086844 0.01086844\n", + " 0.19558949 0.1626169 0.12869151 0.09401511 0.05879055 0.02322296\n", + " 0.19753009 0.16421774 0.12995114 0.09493033 0.05935726 0.02343764\n", + " 0.19908829 0.16550536 0.13096617 0.09566871 0.05981412 0.02360896\n", + " 0.20026215 0.16647694 0.13173312 0.09622682 0.06015857 0.02373584\n", + " 0.20104857 0.16712825 0.13224724 0.09660024 0.06038739 0.02381698\n", + " 0.20144435 0.16745515 0.13250401 0.09678486 0.06049766 0.02385117]\n", + " [0.20255556 0.17610143 0.14895462 0.12122494 0.09302239 0.06445739\n", + " 0.03564119 0.00668594 0.20255556 0.20441077 0.20600074 0.2073248\n", + " 0.20838186 0.20917033 0.20968847 0.20993479 0.00668594 0.00675821\n", + " 0.00682246 0.00687853 0.00692617 0.0069651 0.00699507 0.00701584\n", + " 0.20993479 0.18250233 0.15437326 0.12565215 0.09644485 0.06686038\n", + " 0.03701177 0.00701584 0.19112005 0.15821703 0.12438266 0.08981934\n", + " 0.05473042 0.0193211 0.20330747 0.20540191 0.20709749 0.2083924\n", + " 0.20928375 0.20976841 0.00681796 0.00690216 0.00697398 0.00703299\n", + " 0.00707868 0.00711058 0.19806614 0.16396327 0.12891793 0.09312436\n", + " 0.05678335 0.02010461 0.2024732 0.2024732 0.00711848 0.00711848\n", + " 0.19190537 0.19387759 0.19547539 0.1966967 0.19753824 0.19799645\n", + " 0.15886347 0.1604891 0.1618095 0.16282181 0.16352163 0.16390447\n", + " 0.12488974 0.12616714 0.12720791 0.12800859 0.1285643 0.12887024\n", + " 0.09018615 0.09111203 0.09186896 0.09245358 0.0928614 0.09308815\n", + " 0.05495583 0.05552612 0.05599434 0.05635799 0.05661388 0.05675899\n", + " 0.01940412 0.01961547 0.01979108 0.01992994 0.02003078 0.02009239]\n", + " [0.95731108 0.96213474 0.96637261 0.96996192 0.9728508 0.97499833\n", + " 0.97637449 0.97696023 0.95731108 0.96222557 0.96655954 0.97024886\n", + " 0.97324032 0.97549161 0.97697135 0.97765911 0.97696023 0.98253083\n", + " 0.98742708 0.99158512 0.9949513 0.99748218 0.99914484 0.99991744\n", + " 0.97765911 0.9831486 0.98795534 0.99201677 0.99528049 0.99770436\n", + " 0.99925681 0.99991744 0.95949977 0.96502691 0.96961048 0.97315046\n", + " 0.9755715 0.9768229 0.95953833 0.96518051 0.96988569 0.97355136\n", + " 0.97609964 0.97747731 0.97946677 0.98584919 0.99115411 0.99527858\n", + " 0.99814262 0.99969022 0.98013106 0.98640824 0.99159661 0.99559552\n", + " 0.99832741 0.99973878 0.95734621 0.95734621 0.9999156 0.9999156\n", + " 0.96172609 0.96745399 0.9722283 0.9759465 0.97853069 0.9799276\n", + " 0.96733875 0.97328094 0.97822819 0.98207805 0.98475245 0.98619775\n", + " 0.97199095 0.97810522 0.98319175 0.98714806 0.9898957 0.99138039\n", + " 0.97558266 0.98182688 0.98701899 0.99105637 0.99386 0.99537491\n", + " 0.97803851 0.98437036 0.98963392 0.99372641 0.99656823 0.99810379\n", + " 0.97930774 0.98568454 0.99098486 0.99510577 0.99796733 0.99951359]]\n", + "DEBUG:root:radec2pix: camVec Shape: (3, 96)\n", + "DEBUG:root:radec2pix: lng: [44.48637088 40.24577336 35.3986005 29.89032997 23.69955042 16.86222735\n", + " 9.49377237 1.79522173 44.48637088 48.66063412 53.44662754 58.90649312\n", + " 65.0719071 71.9184746 79.34035003 87.13941954 1.79522173 2.08115239\n", + " 2.4736322 3.04578526 3.95735654 5.6363423 9.74006464 33.09159725\n", + " 87.13941954 86.68537287 86.05851166 85.13727473 83.65177634 80.86105503\n", + " 73.77851938 33.09159725 42.72105973 37.1234454 30.55748427 22.96885005\n", + " 14.42630836 5.17884001 46.22224274 51.74114431 58.24340245 65.80116251\n", + " 74.36661193 83.70585675 1.93801443 2.35975361 3.01217367 4.15532416\n", + " 6.6725739 16.60005947 86.92909007 86.26070822 85.21749379 83.36321455\n", + " 79.16883097 61.59868241 44.48614146 44.48614146 33.22349754 33.22349754\n", + " 44.45527608 50.01139871 56.64103308 64.45360362 73.42615136 83.31035484\n", + " 38.80796323 44.3420957 51.23163704 59.75644459 70.04944098 81.86211477\n", + " 32.10039047 37.31880048 44.16600061 53.22697224 65.04995068 79.6185637\n", + " 24.24396698 28.69167771 34.89141577 43.85434751 57.06355174 75.69539259\n", + " 15.28811193 18.37837592 22.94811312 30.25991115 43.15274514 67.23630391\n", + " 5.50203766 6.68110194 8.4950185 11.63570463 18.3197087 40.11102427]\n", + "DEBUG:root:radec2pix: lat: [73.19833089 74.18249103 75.09922688 75.92116023 76.61853688 77.16100123\n", + " 77.52079342 77.67706772 73.19833089 74.20159367 75.14093371 75.98890558\n", + " 76.71531245 77.28881429 77.68005228 77.86611976 77.67706772 79.27473553\n", + " 80.90480881 82.56181915 84.24016258 85.93331116 87.63030205 89.26372814\n", + " 77.86611976 79.46663016 81.09832556 82.755367 84.43126132 86.11695715\n", + " 87.79091006 89.26372814 73.63774563 74.80227565 75.83862014 76.69292614\n", + " 77.3096353 77.64025349 73.64559076 74.835883 75.90321746 76.7930912\n", + " 77.44812351 77.8166633 78.36913095 80.34967761 82.37343442 84.43012843\n", + " 86.50734673 88.57380626 78.55945528 80.5426681 82.56690719 84.62047016\n", + " 86.68569475 88.69035885 73.20529527 73.20529527 89.25558432 89.25558432\n", + " 74.09681811 75.34210951 76.46528549 77.40781255 78.10603298 78.5008319\n", + " 75.3160395 76.72544415 78.02222799 79.13621749 79.98176995 80.46955109\n", + " 76.40729948 77.98832745 79.48016045 80.80422916 81.84813181 82.47175257\n", + " 77.31254652 79.06012758 80.75806605 82.3313541 83.64750757 84.48728684\n", + " 77.96997446 79.85669547 81.74302972 83.57869755 85.2518859 86.47101417\n", + " 78.32402093 80.29356392 82.30071175 84.32903186 86.34620527 88.21286949]\n", + "DEBUG:root:radec2pix: curVec: [[ 1.45938376e-01 2.90188860e-01 -9.45776092e-01]\n", + " [ 1.25177122e-01 3.08792170e-01 -9.42856343e-01]\n", + " [ 1.03905867e-01 3.27513041e-01 -9.39115956e-01]\n", + " [ 8.22039466e-02 3.46263331e-01 -9.34528874e-01]\n", + " [ 6.01517303e-02 3.64958331e-01 -9.29078676e-01]\n", + " [ 3.78319482e-02 3.83515736e-01 -9.22759136e-01]\n", + " [ 1.53302870e-02 4.01855339e-01 -9.15574830e-01]\n", + " [-7.26488471e-03 4.19899463e-01 -9.07541549e-01]\n", + " [ 1.45938376e-01 2.90188860e-01 -9.45776092e-01]\n", + " [ 1.26727282e-01 2.70217512e-01 -9.54422701e-01]\n", + " [ 1.07399502e-01 2.50149115e-01 -9.62232179e-01]\n", + " [ 8.80298219e-02 2.30067099e-01 -9.69185163e-01]\n", + " [ 6.86926082e-02 2.10058627e-01 -9.75272628e-01]\n", + " [ 4.94614826e-02 1.90214870e-01 -9.80495724e-01]\n", + " [ 3.04092624e-02 1.70631483e-01 -9.84865561e-01]\n", + " [ 1.16081423e-02 1.51408943e-01 -9.88403047e-01]\n", + " [-7.26488471e-03 4.19899463e-01 -9.07541549e-01]\n", + " [-2.70152029e-02 3.99143455e-01 -9.16490415e-01]\n", + " [-4.66785635e-02 3.78098207e-01 -9.24587939e-01]\n", + " [-6.61778017e-02 3.56851807e-01 -9.31813976e-01]\n", + " [-8.54382140e-02 3.35494608e-01 -9.38159730e-01]\n", + " [-1.04387876e-01 3.14118693e-01 -9.43627372e-01]\n", + " [-1.22957202e-01 2.92818183e-01 -9.48229423e-01]\n", + " [-1.41077847e-01 2.71690366e-01 -9.51988123e-01]\n", + " [ 1.16081423e-02 1.51408943e-01 -9.88403047e-01]\n", + " [-9.60880527e-03 1.68036098e-01 -9.85734011e-01]\n", + " [-3.11643802e-02 1.84992065e-01 -9.82245752e-01]\n", + " [-5.29749480e-02 2.02186026e-01 -9.77913322e-01]\n", + " [-7.49565080e-02 2.19532093e-01 -9.72721534e-01]\n", + " [-9.70244361e-02 2.36948990e-01 -9.66665110e-01]\n", + " [-1.19093445e-01 2.54359548e-01 -9.59748911e-01]\n", + " [-1.41077847e-01 2.71690366e-01 -9.51988123e-01]\n", + " [ 1.36888519e-01 2.98211381e-01 -9.44633001e-01]\n", + " [ 1.11089886e-01 3.21101349e-01 -9.40506757e-01]\n", + " [ 8.46041281e-02 3.44080002e-01 -9.35120898e-01]\n", + " [ 5.75786982e-02 3.66990038e-01 -9.28441170e-01]\n", + " [ 3.01659730e-02 3.89679908e-01 -9.20456182e-01]\n", + " [ 2.52486154e-03 4.12002961e-01 -9.11179009e-01]\n", + " [ 1.37511117e-01 2.81561426e-01 -9.49638803e-01]\n", + " [ 1.13877490e-01 2.57008085e-01 -9.59676384e-01]\n", + " [ 9.01430750e-02 2.32391328e-01 -9.68436109e-01]\n", + " [ 6.64449787e-02 2.07870068e-01 -9.75897074e-01]\n", + " [ 4.29187307e-02 1.83612204e-01 -9.82061373e-01]\n", + " [ 1.96981118e-02 1.59795834e-01 -9.86953533e-01]\n", + " [-1.58044512e-02 4.10829747e-01 -9.11575087e-01]\n", + " [-3.99618945e-02 3.85185871e-01 -9.21973368e-01]\n", + " [-6.39119695e-02 3.59194898e-01 -9.31071579e-01]\n", + " [-8.75160813e-02 3.33022275e-01 -9.38848816e-01]\n", + " [-1.10641764e-01 3.06837554e-01 -9.45309005e-01]\n", + " [-1.33161490e-01 2.80815245e-01 -9.50479256e-01]\n", + " [ 2.46819955e-03 1.58677600e-01 -9.87327366e-01]\n", + " [-2.37737663e-02 1.79290295e-01 -9.83508921e-01]\n", + " [-5.04414182e-02 2.00305937e-01 -9.78434052e-01]\n", + " [-7.73802810e-02 2.21564362e-01 -9.72070741e-01]\n", + " [-1.04434559e-01 2.42915882e-01 -9.64409299e-01]\n", + " [-1.31447049e-01 2.64220007e-01 -9.55462957e-01]\n", + " [ 1.45802926e-01 2.90184132e-01 -9.45798433e-01]\n", + " [ 1.45802926e-01 2.90184132e-01 -9.45798433e-01]\n", + " [-1.40941783e-01 2.71703156e-01 -9.52004626e-01]\n", + " [-1.40941783e-01 2.71703156e-01 -9.52004626e-01]\n", + " [ 1.28565818e-01 2.89553490e-01 -9.48488063e-01]\n", + " [ 1.04856746e-01 2.64886674e-01 -9.58561481e-01]\n", + " [ 8.10651965e-02 2.40136298e-01 -9.67348434e-01]\n", + " [ 5.73287357e-02 2.15461260e-01 -9.74828119e-01]\n", + " [ 3.37830939e-02 1.91029074e-01 -9.81002852e-01]\n", + " [ 1.05619762e-02 1.67017327e-01 -9.85897387e-01]\n", + " [ 1.02689976e-01 3.12354633e-01 -9.44398937e-01]\n", + " [ 7.87966551e-02 2.87398556e-01 -9.54564381e-01]\n", + " [ 5.48732152e-02 2.62304320e-01 -9.63423777e-01]\n", + " [ 3.10584881e-02 2.37231179e-01 -9.70956610e-01]\n", + " [ 7.48863431e-03 2.12345755e-01 -9.77165902e-01]\n", + " [-1.57030379e-02 1.87823923e-01 -9.82077181e-01]\n", + " [ 7.61425083e-02 3.35260691e-01 -9.39043443e-01]\n", + " [ 5.21095771e-02 3.10063113e-01 -9.49286815e-01]\n", + " [ 2.80998673e-02 2.84675794e-01 -9.58211923e-01]\n", + " [ 4.25317993e-03 2.59258973e-01 -9.65798476e-01]\n", + " [-1.92942980e-02 2.33978985e-01 -9.72050186e-01]\n", + " [-4.24100517e-02 2.09010201e-01 -9.76993410e-01]\n", + " [ 4.90713319e-02 3.58114779e-01 -9.32387156e-01]\n", + " [ 2.49449546e-02 3.32724309e-01 -9.42694162e-01]\n", + " [ 8.96195618e-04 3.07094827e-01 -9.51678498e-01]\n", + " [-2.29347188e-02 2.81388063e-01 -9.59319945e-01]\n", + " [-4.64121330e-02 2.55770776e-01 -9.65622713e-01]\n", + " [-6.94047662e-02 2.30416502e-01 -9.70613834e-01]\n", + " [ 2.16293389e-02 3.80765893e-01 -9.24418470e-01]\n", + " [-2.54295132e-03 3.55232613e-01 -9.34774478e-01]\n", + " [-2.65824819e-02 3.29413003e-01 -9.43811658e-01]\n", + " [-5.03492795e-02 3.03470493e-01 -9.51509648e-01]\n", + " [-7.37087825e-02 2.77572848e-01 -9.57872815e-01]\n", + " [-9.65312743e-02 2.51893566e-01 -9.62928525e-01]\n", + " [-6.02414451e-03 4.03067886e-01 -9.15150255e-01]\n", + " [-3.01940105e-02 3.77443534e-01 -9.25540221e-01]\n", + " [-5.41758776e-02 3.51487535e-01 -9.34623714e-01]\n", + " [-7.78306920e-02 3.25364881e-01 -9.42380007e-01]\n", + " [-1.01025403e-01 2.99244647e-01 -9.48813211e-01]\n", + " [-1.23631942e-01 2.73300987e-01 -9.53950582e-01]]\n", + "DEBUG:root:radec2pix: curVec Shape: (96, 3)\n", + "DEBUG:root:optics_fp: rtanth: [31.42709713 27.04074579 22.65442436 18.26815439 13.88198464 9.49605401\n", + " 5.11097808 0.742067 31.42709713 31.75564253 32.6750783 34.13769417\n", + " 36.07748738 38.42225317 41.10274314 44.05772304 0.742067 4.61617395\n", + " 8.97490789 13.35179361 17.73339574 22.11691136 26.50139096 30.88642402\n", + " 44.05772304 41.04415255 38.29678143 35.87681689 33.85454213 32.30472979\n", + " 31.29764563 30.88642402 29.51471971 24.13885305 18.76306281 13.38744101\n", + " 8.01232674 2.64082086 31.48077532 32.28565953 33.93362876 36.31007107\n", + " 39.28300031 42.72809051 2.2117621 7.49776555 12.85860945 18.22838275\n", + " 23.6009913 28.97485798 42.70371969 39.18128664 36.11843741 33.64093596\n", + " 31.88551984 30.97519863 31.41218354 31.41218354 30.87178238 30.87178238\n", + " 29.58771061 30.4426874 32.18516063 34.68161856 37.78289981 41.35315131\n", + " 24.22804504 25.26505023 27.33953387 30.23872042 33.75074911 37.7047566\n", + " 18.87767108 20.19136108 22.73364051 26.14858527 30.14102461 34.5111137\n", + " 13.54760187 15.32521169 18.5469529 22.60352987 27.12291311 31.90905859\n", + " 8.27715649 10.94695923 15.13153214 19.89706928 24.91237079 30.05265085\n", + " 3.35974322 7.91280426 13.10495402 18.40298673 23.73610696 29.08501983]\n", + "DEBUG:root:radec2pix: curVec: [[ 0.17737109 -0.42707476 0.88664911]\n", + " [ 0.20464717 -0.42788686 0.88035923]\n", + " [ 0.23230229 -0.42836865 0.87323304]\n", + " [ 0.26021715 -0.42849947 0.86526022]\n", + " [ 0.28827411 -0.42826301 0.85643962]\n", + " [ 0.31635613 -0.42764756 0.84678 ]\n", + " [ 0.34434679 -0.42664612 0.83630041]\n", + " [ 0.37213109 -0.42525669 0.82503042]\n", + " [ 0.17737109 -0.42707476 0.88664911]\n", + " [ 0.17383404 -0.45311738 0.87433767]\n", + " [ 0.17025947 -0.47869946 0.86131211]\n", + " [ 0.16666619 -0.50372651 0.84763317]\n", + " [ 0.16307667 -0.52810965 0.83337039]\n", + " [ 0.15951749 -0.55176543 0.81860191]\n", + " [ 0.1560202 -0.57461526 0.80341459]\n", + " [ 0.15262216 -0.59658439 0.78790452]\n", + " [ 0.37213109 -0.42525669 0.82503042]\n", + " [ 0.36831814 -0.45218851 0.81232216]\n", + " [ 0.36418947 -0.47862742 0.79892542]\n", + " [ 0.3597661 -0.504475 0.78490339]\n", + " [ 0.35507294 -0.5296403 0.77032744]\n", + " [ 0.3501385 -0.55404033 0.75527634]\n", + " [ 0.34499478 -0.57759976 0.73983587]\n", + " [ 0.33967727 -0.60024988 0.72409905]\n", + " [ 0.15262216 -0.59658439 0.78790452]\n", + " [ 0.17862599 -0.59876814 0.7807493 ]\n", + " [ 0.20507168 -0.60042552 0.77293906]\n", + " [ 0.23183297 -0.60153666 0.76446526]\n", + " [ 0.25878911 -0.60208499 0.75532897]\n", + " [ 0.28582355 -0.60205789 0.74554087]\n", + " [ 0.312823 -0.60144721 0.73512109]\n", + " [ 0.33967727 -0.60024988 0.72409905]\n", + " [ 0.18919712 -0.42755803 0.88396752]\n", + " [ 0.22289669 -0.42833493 0.87569758]\n", + " [ 0.25704679 -0.42859452 0.86616031]\n", + " [ 0.29143027 -0.42830497 0.85534978]\n", + " [ 0.32583168 -0.42744469 0.84328213]\n", + " [ 0.3600372 -0.42600291 0.82999683]\n", + " [ 0.17592703 -0.43848347 0.88135233]\n", + " [ 0.17156429 -0.47010473 0.86577551]\n", + " [ 0.16716331 -0.50093969 0.84918541]\n", + " [ 0.1627639 -0.53082237 0.8317064 ]\n", + " [ 0.15841511 -0.55959908 0.81348235]\n", + " [ 0.15417738 -0.58712679 0.79467696]\n", + " [ 0.37041411 -0.43705849 0.81961776]\n", + " [ 0.36552638 -0.46974734 0.80357196]\n", + " [ 0.36018507 -0.50159724 0.78655383]\n", + " [ 0.35443441 -0.53243762 0.76869138]\n", + " [ 0.34832689 -0.56211563 0.75012958]\n", + " [ 0.34192284 -0.59049545 0.73102934]\n", + " [ 0.16390914 -0.59752602 0.78491811]\n", + " [ 0.1960943 -0.59985045 0.77571029]\n", + " [ 0.22881694 -0.60136426 0.76550888]\n", + " [ 0.26185259 -0.60203558 0.75431186]\n", + " [ 0.29498655 -0.6018412 0.74213887]\n", + " [ 0.32801155 -0.60076823 0.72903084]\n", + " [ 0.17745157 -0.4271678 0.88658818]\n", + " [ 0.17745157 -0.4271678 0.88658818]\n", + " [ 0.33960424 -0.60017914 0.72419194]\n", + " [ 0.33960424 -0.60017914 0.72419194]\n", + " [ 0.18766444 -0.43891795 0.87871104]\n", + " [ 0.18326007 -0.47066037 0.86307274]\n", + " [ 0.17878997 -0.50160982 0.846417 ]\n", + " [ 0.17429362 -0.53160012 0.82886854]\n", + " [ 0.16981944 -0.56047792 0.81057132]\n", + " [ 0.16542686 -0.58810107 0.79168876]\n", + " [ 0.22134293 -0.43980626 0.87038943]\n", + " [ 0.21682725 -0.47185376 0.8545993 ]\n", + " [ 0.21216968 -0.50309133 0.83778466]\n", + " [ 0.20740943 -0.53335193 0.82007137]\n", + " [ 0.20259384 -0.56248289 0.80160385]\n", + " [ 0.19778021 -0.59034432 0.78254493]\n", + " [ 0.2554749 -0.44015622 0.86081071]\n", + " [ 0.25085729 -0.47245154 0.84490246]\n", + " [ 0.24602345 -0.50392323 0.82796971]\n", + " [ 0.24101311 -0.53440323 0.81013941]\n", + " [ 0.23587369 -0.56373911 0.79155658]\n", + " [ 0.23066163 -0.59179275 0.77238368]\n", + " [ 0.28984328 -0.43993542 0.84996923]\n", + " [ 0.2851331 -0.47241977 0.83397762]\n", + " [ 0.28013377 -0.50407068 0.81696868]\n", + " [ 0.27488613 -0.53471902 0.7990702 ]\n", + " [ 0.26943857 -0.56421234 0.78042763]\n", + " [ 0.26384787 -0.59241378 0.76120313]\n", + " [ 0.32423272 -0.43912164 0.83788145]\n", + " [ 0.31943983 -0.47173466 0.8218422 ]\n", + " [ 0.31428644 -0.50350876 0.80479995]\n", + " [ 0.30881479 -0.53427394 0.78688295]\n", + " [ 0.30307488 -0.56387759 0.76823673]\n", + " [ 0.29712467 -0.59218359 0.74902304]\n", + " [ 0.35842952 -0.43770359 0.82458708]\n", + " [ 0.35356454 -0.47038366 0.80853654]\n", + " [ 0.3482698 -0.50222393 0.79150443]\n", + " [ 0.34258903 -0.53305393 0.77361894]\n", + " [ 0.33657405 -0.56272086 0.75502526]\n", + " [ 0.33028455 -0.59108889 0.73588453]]\n", + "DEBUG:root:optics_fp: rtanth: [45.26169529 42.30243097 39.60873368 37.23827886 35.25632641 33.73142753\n", + " 32.72753223 32.29326616 45.26169529 42.24571523 39.48748363 37.04461879\n", + " 34.98324901 33.37413897 32.28498264 31.76930229 32.29326616 27.90939691\n", + " 23.52648174 19.14517593 14.76691204 10.39553425 6.04599739 1.87684519\n", + " 31.76930229 27.38910685 23.01128618 18.63751379 14.2715122 9.92354331\n", + " 5.63550123 1.87684519 43.93110404 40.47519439 37.47457234 35.04637691\n", + " 33.3160059 32.39547369 43.90748877 40.37685013 37.28961296 34.76410785\n", + " 32.92983309 31.90622779 30.38230115 25.01013154 19.64005824 14.27444739\n", + " 8.9213542 3.63648527 29.86008841 24.49335294 19.13182032 13.78156419\n", + " 8.46399587 3.33911555 45.24048285 45.24048285 1.89760875 1.89760875\n", + " 42.55711672 38.90412112 35.68971629 33.042152 31.10650288 30.02079255\n", + " 38.97957981 34.95468636 31.33776168 28.28574318 25.99834571 24.68901465\n", + " 35.85400749 31.43139051 27.35246822 23.7946523 21.02418109 19.38168349\n", + " 33.30787918 28.49275823 23.91782767 19.75070735 16.30708904 14.12638019\n", + " 31.48209857 26.3352423 21.30188242 16.48630206 12.15026205 9.01456223\n", + " 30.50627799 25.16059326 19.83130509 14.53645837 9.33484517 4.55771859]\n", + "DEBUG:root:radec2pix: curVec Shape: (96, 3)\n", + "DEBUG:root:radec2pix: curVec: [[ 3.74073871e-01 6.24961619e-02 9.25290748e-01]\n", + " [ 3.59241930e-01 3.98058530e-02 9.32395157e-01]\n", + " [ 3.43825780e-01 1.66329389e-02 9.38886137e-01]\n", + " [ 3.27871079e-01 -6.93196629e-03 9.44697043e-01]\n", + " [ 3.11427483e-01 -3.07974305e-02 9.49770731e-01]\n", + " [ 2.94549431e-01 -5.48702296e-02 9.54059689e-01]\n", + " [ 2.77296348e-01 -7.90552831e-02 9.57526500e-01]\n", + " [ 2.59732365e-01 -1.03256271e-01 9.60144386e-01]\n", + " [ 3.74073871e-01 6.24961619e-02 9.25290748e-01]\n", + " [ 3.51672424e-01 7.93893817e-02 9.32750680e-01]\n", + " [ 3.28995717e-01 9.60825340e-02 9.39430660e-01]\n", + " [ 3.06135063e-01 1.12509071e-01 9.45316366e-01]\n", + " [ 2.83184094e-01 1.28602228e-01 9.50404249e-01]\n", + " [ 2.60238484e-01 1.44294501e-01 9.54701539e-01]\n", + " [ 2.37396079e-01 1.59516678e-01 9.58226242e-01]\n", + " [ 2.14757537e-01 1.74196550e-01 9.61007160e-01]\n", + " [ 2.59732365e-01 -1.03256271e-01 9.60144386e-01]\n", + " [ 2.36643278e-01 -8.56633775e-02 9.67812866e-01]\n", + " [ 2.13414322e-01 -6.80514525e-02 9.74588799e-01]\n", + " [ 1.90140048e-01 -5.04910246e-02 9.80457760e-01]\n", + " [ 1.66915729e-01 -3.30521110e-02 9.85417017e-01]\n", + " [ 1.43836617e-01 -1.58037143e-02 9.89475250e-01]\n", + " [ 1.20997816e-01 1.18619987e-03 9.92652065e-01]\n", + " [ 9.84950295e-02 1.78500734e-02 9.94977439e-01]\n", + " [ 2.14757537e-01 1.74196550e-01 9.61007160e-01]\n", + " [ 1.98969426e-01 1.53312248e-01 9.67939317e-01]\n", + " [ 1.82820063e-01 1.31786744e-01 9.74273616e-01]\n", + " [ 1.66358502e-01 1.09716798e-01 9.79942383e-01]\n", + " [ 1.49637287e-01 8.71961567e-02 9.84888579e-01]\n", + " [ 1.32712625e-01 6.43170292e-02 9.89065558e-01]\n", + " [ 1.15644247e-01 4.11711165e-02 9.92437075e-01]\n", + " [ 9.84950295e-02 1.78500734e-02 9.94977439e-01]\n", + " [ 3.67605381e-01 5.27265272e-02 9.28485970e-01]\n", + " [ 3.49028128e-01 2.45818496e-02 9.36789783e-01]\n", + " [ 3.29618498e-01 -4.19780134e-03 9.44104880e-01]\n", + " [ 3.09466191e-01 -3.34445300e-02 9.50322124e-01]\n", + " [ 2.88671454e-01 -6.29867123e-02 9.55354105e-01]\n", + " [ 2.67345673e-01 -9.26487490e-02 9.59136331e-01]\n", + " [ 3.64296362e-01 6.98055898e-02 9.28663201e-01]\n", + " [ 3.36643885e-01 9.03845164e-02 9.37284127e-01]\n", + " [ 3.08668499e-01 1.10596958e-01 9.44717985e-01]\n", + " [ 2.80541642e-01 1.30320099e-01 9.50953763e-01]\n", + " [ 2.52439457e-01 1.49429563e-01 9.56004773e-01]\n", + " [ 2.24543197e-01 1.67796760e-01 9.59908641e-01]\n", + " [ 2.49749145e-01 -9.55099025e-02 9.63588721e-01]\n", + " [ 2.21345195e-01 -7.39265445e-02 9.72389413e-01]\n", + " [ 1.92824864e-01 -5.23848677e-02 9.79833862e-01]\n", + " [ 1.64363297e-01 -3.10140156e-02 9.85912185e-01]\n", + " [ 1.36135837e-01 -9.94101108e-03 9.90640303e-01]\n", + " [ 1.08317743e-01 1.07092558e-02 9.94058639e-01]\n", + " [ 2.07998374e-01 1.65126363e-01 9.64090224e-01]\n", + " [ 1.88399771e-01 1.39085364e-01 9.72193802e-01]\n", + " [ 1.68306751e-01 1.12177916e-01 9.79330870e-01]\n", + " [ 1.47814575e-01 8.45777695e-02 9.85392030e-01]\n", + " [ 1.27026704e-01 5.64547905e-02 9.90291408e-01]\n", + " [ 1.06054434e-01 2.79777785e-02 9.93966650e-01]\n", + " [ 3.73948159e-01 6.24775310e-02 9.25342819e-01]\n", + " [ 3.73948159e-01 6.24775310e-02 9.25342819e-01]\n", + " [ 9.86300082e-02 1.78736683e-02 9.94963644e-01]\n", + " [ 9.86300082e-02 1.78736683e-02 9.94963644e-01]\n", + " [ 3.57916619e-01 6.00848751e-02 9.31818385e-01]\n", + " [ 3.30165981e-01 8.07631878e-02 9.40461447e-01]\n", + " [ 3.02102651e-01 1.01094901e-01 9.47899683e-01]\n", + " [ 2.73898551e-01 1.20957341e-01 9.54122060e-01]\n", + " [ 2.45729951e-01 1.40226843e-01 9.59141921e-01]\n", + " [ 2.17777767e-01 1.58776131e-01 9.62996877e-01]\n", + " [ 3.39246751e-01 3.20168577e-02 9.40152415e-01]\n", + " [ 3.11253579e-01 5.29507175e-02 9.48850584e-01]\n", + " [ 2.82978578e-01 7.35938355e-02 9.56298631e-01]\n", + " [ 2.54595076e-01 9.38232787e-02 9.62485605e-01]\n", + " [ 2.26279737e-01 1.13516570e-01 9.67425175e-01]\n", + " [ 1.98212552e-01 1.32549393e-01 9.71155210e-01]\n", + " [ 3.19762756e-01 3.30013733e-03 9.47491894e-01]\n", + " [ 2.91580792e-01 2.44509580e-02 9.56233650e-01]\n", + " [ 2.63150757e-01 4.53670237e-02 9.63687456e-01]\n", + " [ 2.34647219e-01 6.59243593e-02 9.69842596e-01]\n", + " [ 2.06247116e-01 8.60005034e-02 9.74713312e-01]\n", + " [ 1.78129502e-01 1.05472752e-01 9.78338070e-01]\n", + " [ 2.99554879e-01 -2.58977733e-02 9.53727518e-01]\n", + " [ 2.71239474e-01 -4.56939930e-03 9.62501048e-01]\n", + " [ 2.42712554e-01 1.65809561e-02 9.69956539e-01]\n", + " [ 2.14149524e-01 3.74278086e-02 9.76083572e-01]\n", + " [ 1.85727316e-01 5.78478076e-02 9.80897036e-01]\n", + " [ 1.57623960e-01 7.77185755e-02 9.84436138e-01]\n", + " [ 2.78723904e-01 -5.54056773e-02 9.58771712e-01]\n", + " [ 2.50331822e-01 -3.39404306e-02 9.67564998e-01]\n", + " [ 2.21767285e-01 -1.25956082e-02 9.75018268e-01]\n", + " [ 1.93205997e-01 8.50165060e-03 9.81121381e-01]\n", + " [ 1.64824489e-01 2.92265532e-02 9.85889799e-01]\n", + " [ 1.36799657e-01 4.94560538e-02 9.89363408e-01]\n", + " [ 2.57381618e-01 -8.50483383e-02 9.62559859e-01]\n", + " [ 2.28970536e-01 -6.34882231e-02 9.71360767e-01]\n", + " [ 2.00428142e-01 -4.19903631e-02 9.78808137e-01]\n", + " [ 1.71929836e-01 -2.06834297e-02 9.84892038e-01]\n", + " [ 1.43651334e-01 3.06132326e-04 9.89628314e-01]\n", + " [ 1.15768322e-01 2.08539765e-02 9.93057303e-01]]\n", + "DEBUG:root:radec2pix: curVec Shape: (96, 3)\n", + "DEBUG:root:radec2pix: camVec: [[ 0.00152888 0.00154215 0.00155354 0.00156302 0.00157054 0.00157606\n", + " 0.00157952 0.00158089 0.00152888 0.03055413 0.0594604 0.08813528\n", + " 0.11646734 0.14434605 0.17166149 0.1983039 0.00158089 0.03159291\n", + " 0.06147904 0.0911219 0.12040769 0.14922671 0.17747265 0.2050409\n", + " 0.1983039 0.20004855 0.20153434 0.2027606 0.20372608 0.20442907\n", + " 0.20486781 0.2050409 0.00163462 0.00165059 0.00166353 0.00167335\n", + " 0.00167995 0.00168324 0.01419184 0.04970047 0.08491857 0.11964057\n", + " 0.15366298 0.18678351 0.01467408 0.05138704 0.08779394 0.12368372\n", + " 0.15885436 0.19311093 0.19900616 0.20096941 0.20254341 0.2037261\n", + " 0.2045144 0.20490517 0.00162826 0.00162826 0.20494776 0.20494776\n", + " 0.01424722 0.04989441 0.08525013 0.12010852 0.15426631 0.18752167\n", + " 0.01438645 0.05038177 0.08608239 0.1212815 0.15577635 0.18936679\n", + " 0.01449922 0.05077617 0.08675481 0.12222707 0.15699061 0.19084708\n", + " 0.01458479 0.05107523 0.08726392 0.1229415 0.15790584 0.1919602\n", + " 0.01464229 0.05127607 0.08760541 0.12341989 0.15851749 0.19270261\n", + " 0.01467095 0.05137612 0.08777538 0.12365776 0.15882123 0.1930708 ]\n", + " [-0.20769103 -0.1801941 -0.15200928 -0.12324112 -0.09399571 -0.06438234\n", + " -0.03451442 -0.00450904 -0.20769103 -0.20754198 -0.20712371 -0.20643751\n", + " -0.2054851 -0.20426815 -0.20278791 -0.2010451 -0.00450904 -0.00450572\n", + " -0.00449643 -0.00448126 -0.00446035 -0.00443385 -0.00440189 -0.00436457\n", + " -0.2010451 -0.17444879 -0.14716869 -0.11931453 -0.09099614 -0.06232394\n", + " -0.03340929 -0.00436457 -0.1957935 -0.16161745 -0.12651199 -0.09067166\n", + " -0.05429781 -0.01760077 -0.20756647 -0.20720276 -0.20643606 -0.20526936\n", + " -0.20370571 -0.20174719 -0.00461102 -0.00460274 -0.00458538 -0.00455917\n", + " -0.0045244 -0.0044813 -0.18954613 -0.15647489 -0.12248558 -0.08778034\n", + " -0.05256249 -0.01703747 -0.20759824 -0.20759824 -0.00446412 -0.00446412\n", + " -0.19576354 -0.19542056 -0.19469787 -0.19359884 -0.19212697 -0.19028463\n", + " -0.16159264 -0.16130879 -0.16071144 -0.15980479 -0.15859338 -0.15708053\n", + " -0.12649245 -0.12626898 -0.12579928 -0.12508774 -0.12413931 -0.12295784\n", + " -0.09065756 -0.09049631 -0.09015775 -0.08964573 -0.08896468 -0.0881182\n", + " -0.05428931 -0.05419219 -0.05398843 -0.05368064 -0.05327188 -0.0527647\n", + " -0.01759801 -0.01756642 -0.01750018 -0.01740019 -0.0172675 -0.01710301]\n", + " [ 0.97819328 0.98362986 0.98837785 0.99237552 0.99557136 0.99792406\n", + " 0.99940295 0.99998858 0.97819328 0.97774883 0.97650613 0.97448229\n", + " 0.97170532 0.9682142 0.96405881 0.95929997 0.99998858 0.99949066\n", + " 0.99809825 0.99582966 0.99271451 0.98879307 0.98411589 0.97874367\n", + " 0.95929997 0.9641308 0.96836217 0.97193219 0.97478992 0.97689533\n", + " 0.9782193 0.97874367 0.98064379 0.9868521 0.99196368 0.99587944\n", + " 0.99852337 0.99984368 0.97811796 0.97703474 0.97476817 0.97136534\n", + " 0.96689796 0.96146242 0.9998817 0.99866821 0.9961281 0.99231122\n", + " 0.98729166 0.9811667 0.96149301 0.9670196 0.97158296 0.97508476\n", + " 0.9774513 0.97863353 0.97821282 0.97821282 0.97876273 0.97876273\n", + " 0.98054763 0.97944952 0.97715155 0.97370089 0.9691693 0.96365314\n", + " 0.98675268 0.98561714 0.98324039 0.97966996 0.97497788 0.9692605\n", + " 0.9918616 0.99069568 0.9882551 0.98458804 0.979767 0.97388848\n", + " 0.99577532 0.99458621 0.99209707 0.98835673 0.98343837 0.97743873\n", + " 0.99841789 0.9972131 0.99469118 0.99090157 0.985918 0.97983753\n", + " 0.9997375 0.99852487 0.99598656 0.99217236 0.98715635 0.98103576]]\n", + "DEBUG:root:radec2pix: camVec Shape: (3, 96)\n", + "DEBUG:root:optics_fp: cphi: [0.71341716 0.76328013 0.81514194 0.86698087 0.91566575 0.95700502\n", + " 0.98630354 0.99950918 0.71341716 0.66051768 0.59557134 0.51643629\n", + " 0.4214805 0.31036993 0.18497457 0.04990581 0.99950918 0.99934039\n", + " 0.99906819 0.99858739 0.99761569 0.9951653 0.98558541 0.8377988\n", + " 0.04990581 0.05781889 0.0687377 0.08476872 0.11057085 0.15882919\n", + " 0.27935111 0.8377988 0.73466528 0.79733703 0.86111952 0.92071715\n", + " 0.96846887 0.9959178 0.69186293 0.61921532 0.52631184 0.40990453\n", + " 0.26948104 0.10963271 0.999428 0.999152 0.99861839 0.99737128\n", + " 0.99322638 0.95832228 0.05357183 0.06521663 0.08337359 0.1155749\n", + " 0.18791565 0.47564444 0.71341996 0.71341996 0.83653968 0.83653968\n", + " 0.71379735 0.6426352 0.54988271 0.43124184 0.28525093 0.11649124\n", + " 0.77925087 0.71517941 0.62617339 0.50367681 0.34120915 0.14155583\n", + " 0.8471183 0.79527459 0.71732418 0.59864658 0.42182798 0.18020046\n", + " 0.91180529 0.87721591 0.82023759 0.72110338 0.54370846 0.24707693\n", + " 0.96461215 0.94899507 0.92085832 0.86374835 0.72953296 0.3869314\n", + " 0.99539279 0.99320908 0.98902871 0.97944976 0.94931741 0.76479745]\n", + "DEBUG:root:optics_fp: cphi: [0.00550458 0.00639749 0.00763617 0.00946965 0.01246169 0.01821736\n", + " 0.03384734 0.23312315 0.00550458 0.14357831 0.27378206 0.39054421\n", + " 0.49112919 0.57532118 0.64452059 0.70085313 0.23312315 0.98770575\n", + " 0.99676233 0.99853841 0.99917171 0.99946758 0.99962921 0.99972703\n", + " 0.70085313 0.75231162 0.80628167 0.86066702 0.91207829 0.95583505\n", + " 0.98659156 0.99972703 0.00636947 0.00778798 0.01001931 0.01404249\n", + " 0.02346297 0.07118734 0.06624656 0.23110858 0.37831182 0.50160995\n", + " 0.60050131 0.67790282 0.94291018 0.99516222 0.9983578 0.99918316\n", + " 0.9995128 0.99967679 0.72272376 0.78769728 0.85449414 0.91742373\n", + " 0.96793131 0.99637757 0.00598472 0.00598472 0.99971529 0.99971529\n", + " 0.07048511 0.24509968 0.39886372 0.52516272 0.62434311 0.70044222\n", + " 0.08607764 0.29532864 0.46955786 0.60232354 0.69893243 0.76821854\n", + " 0.11047406 0.36953888 0.56469148 0.69653837 0.7826374 0.83930914\n", + " 0.15393817 0.48687699 0.69216184 0.80578092 0.86972564 0.90775141\n", + " 0.25195766 0.68160416 0.84839347 0.91538572 0.94689876 0.96382489\n", + " 0.62072988 0.94296444 0.97959085 0.9897031 0.99382317 0.99589043]\n", + "DEBUG:root:optics_fp: sphi: [0.70073958 0.64606768 0.57926126 0.49834142 0.40194059 0.29007134\n", + " 0.1649404 0.0313274 0.70073958 0.75081049 0.80330242 0.85632562\n", + " 0.90683747 0.95061586 0.98274331 0.99875393 0.0313274 0.03631497\n", + " 0.04315962 0.05313395 0.069014 0.09821415 0.1691786 0.5459791\n", + " 0.99875393 0.99832709 0.99763477 0.99640065 0.99386824 0.98730608\n", + " 0.96018902 0.5459791 0.67842975 0.60353431 0.50840257 0.39023062\n", + " 0.2491346 0.09026478 0.72202887 0.78522123 0.85029163 0.91212843\n", + " 0.9630057 0.99397217 0.03381828 0.04117383 0.05254813 0.07246053\n", + " 0.11619532 0.28568936 0.998564 0.99787113 0.99651836 0.99329877\n", + " 0.98218517 0.87963764 0.70073672 0.70073672 0.54790634 0.54790634\n", + " 0.7003523 0.76617231 0.83524188 0.90223637 0.95845287 0.99319172\n", + " 0.62671212 0.69894092 0.77968384 0.86389216 0.9399874 0.98993027\n", + " 0.53140435 0.60624939 0.69673956 0.80101328 0.90667588 0.98362991\n", + " 0.41062285 0.48009609 0.57202299 0.69282748 0.83927416 0.96899587\n", + " 0.26367291 0.3152909 0.38989736 0.5039234 0.68394565 0.92210851\n", + " 0.09588115 0.11634315 0.14772342 0.20168832 0.31431902 0.6442708 ]\n", + "DEBUG:root:radec2pix: camVec: [[-0.00156258 -0.00157957 -0.00159468 -0.00160787 -0.00161907 -0.00162822\n", + " -0.00163527 -0.00164017 -0.00156258 -0.0305812 -0.05948043 -0.08814769\n", + " -0.11647141 -0.14434091 -0.17164574 -0.19827444 -0.00164017 -0.03165868\n", + " -0.06155164 -0.09120162 -0.12049415 -0.14931846 -0.17756745 -0.20513658\n", + " -0.19827444 -0.2000398 -0.20154417 -0.20278831 -0.20377138 -0.20449167\n", + " -0.20494724 -0.20513658 -0.00166992 -0.00169047 -0.00170796 -0.0017223\n", + " -0.00173334 -0.001741 -0.0142227 -0.04972296 -0.08493191 -0.1196437\n", + " -0.15365451 -0.18676067 -0.01473616 -0.05145726 -0.08787283 -0.12377083\n", + " -0.15894736 -0.19320639 -0.19898619 -0.20097311 -0.20256914 -0.20377339\n", + " -0.20458276 -0.20499385 -0.00166195 -0.00166195 -0.20504339 -0.20504339\n", + " -0.01428012 -0.04992014 -0.08526785 -0.1201171 -0.15426444 -0.18750721\n", + " -0.01442512 -0.05041664 -0.08611259 -0.12130566 -0.1557929 -0.1893742\n", + " -0.01454351 -0.0508198 -0.08679712 -0.1222667 -0.15702557 -0.19087549\n", + " -0.01463451 -0.05112705 -0.08731762 -0.122996 -0.15795892 -0.19200933\n", + " -0.01469728 -0.05133568 -0.08766989 -0.12348855 -0.15858803 -0.19277198\n", + " -0.01473117 -0.05144352 -0.08785049 -0.12374011 -0.1589085 -0.19315962]\n", + " [ 0.20900824 0.18154377 0.15338464 0.12463517 0.09540199 0.06579532\n", + " 0.03592916 0.00592057 0.20900824 0.20886066 0.2084416 0.2077524\n", + " 0.20679486 0.20557063 0.20408052 0.20232383 0.00592057 0.00591961\n", + " 0.00591082 0.00589429 0.00587015 0.00583856 0.00579969 0.00575368\n", + " 0.20232383 0.17576331 0.1485108 0.12067777 0.09237455 0.06371165\n", + " 0.03480051 0.00575368 0.19712565 0.16298492 0.12790428 0.09207897\n", + " 0.05571194 0.01901436 0.20888472 0.20852129 0.20775151 0.20657854\n", + " 0.20500532 0.20303275 0.00602383 0.00601719 0.00599868 0.00596852\n", + " 0.005927 0.00587443 0.19084173 0.15780847 0.12384677 0.08916013\n", + " 0.05395206 0.01842821 0.20891558 0.20891558 0.00585328 0.00585328\n", + " 0.19709662 0.19675396 0.1960282 0.19492287 0.19344162 0.19158618\n", + " 0.16296111 0.16267787 0.16207774 0.1611649 0.15994417 0.15841917\n", + " 0.12788582 0.12766348 0.12719172 0.12647465 0.12551724 0.12432386\n", + " 0.09206603 0.09190638 0.09156653 0.09104984 0.09036055 0.08950266\n", + " 0.05570466 0.05560934 0.05540465 0.05509277 0.05467653 0.0541587\n", + " 0.01901283 0.01898296 0.01891568 0.01881174 0.01867213 0.01849786]\n", + " [ 0.97791263 0.9833816 0.98816527 0.99220134 0.99543751 0.99783181\n", + " 0.999353 0.99998113 0.97791263 0.97746714 0.97622445 0.97420169\n", + " 0.97142694 0.96793926 0.96378882 0.95903718 0.99998113 0.99948121\n", + " 0.9980864 0.995815 0.99269668 0.98877192 0.98409154 0.97871644\n", + " 0.95903718 0.96389384 0.9681552 0.97175809 0.97465079 0.9767927\n", + " 0.97815416 0.97871644 0.98037681 0.98662711 0.99178505 0.99575022\n", + " 0.99844538 0.99981769 0.97783684 0.97675304 0.9744875 0.97108738\n", + " 0.9666246 0.96119621 0.99987327 0.99865707 0.99611364 0.99229288\n", + " 0.98726927 0.98114055 0.96124083 0.9668021 0.97140502 0.97494968\n", + " 0.97736128 0.97858976 0.97793227 0.97793227 0.97873538 0.97873538\n", + " 0.98028006 0.97918122 0.976884 0.97343565 0.96890806 0.96339804\n", + " 0.98652704 0.98539031 0.98301344 0.97944414 0.97475455 0.96904116\n", + " 0.99168226 0.99051471 0.98807314 0.98440592 0.97958583 0.97370947\n", + " 0.99564536 0.99445424 0.99196331 0.98822159 0.98330257 0.97730327\n", + " 0.99833911 0.99713201 0.99460762 0.9908155 0.98582976 0.97974782\n", + " 0.99971071 0.99849547 0.99595406 0.99213633 0.98711673 0.98099296]]\n", + "DEBUG:root:radec2pix: camVec: [[0.20658103 0.20838989 0.20993522 0.21121099 0.21221385 0.21294172\n", + " 0.21339307 0.21356684 0.20658103 0.18015754 0.1530338 0.12531307\n", + " 0.09710338 0.06851504 0.03965966 0.01064976 0.21356684 0.18621882\n", + " 0.15815829 0.12949192 0.10032565 0.07076705 0.04092766 0.01092393\n", + " 0.01064976 0.01072986 0.01079662 0.01085001 0.01088978 0.0109156\n", + " 0.01092708 0.01092393 0.20731213 0.20935192 0.21098964 0.21221814\n", + " 0.21303349 0.21343308 0.19515895 0.16228971 0.12847052 0.09389848\n", + " 0.05877657 0.02331064 0.20173739 0.16772694 0.13275239 0.09700904\n", + " 0.06069518 0.02401827 0.01078606 0.01087623 0.01094616 0.01099551\n", + " 0.01102363 0.01102984 0.2064986 0.2064986 0.01102671 0.01102671\n", + " 0.19592714 0.16292559 0.1289709 0.09426176 0.0590016 0.02339654\n", + " 0.19785166 0.16451646 0.13022261 0.09517088 0.05956467 0.02361044\n", + " 0.19939573 0.16579218 0.13122742 0.09590173 0.06001727 0.02378066\n", + " 0.20055377 0.16674959 0.13198281 0.09645193 0.06035751 0.0239064\n", + " 0.20132229 0.16738526 0.13248471 0.09681723 0.06058199 0.02398618\n", + " 0.20169858 0.16769559 0.13272857 0.09699294 0.06068709 0.02401844]\n", + " [0.20098859 0.17447006 0.14727238 0.11949936 0.09125926 0.06266255\n", + " 0.03382097 0.00484709 0.20098859 0.20282418 0.20440426 0.20572264\n", + " 0.20677589 0.2075618 0.2080787 0.20832528 0.00484709 0.00490326\n", + " 0.00495363 0.00499813 0.0050366 0.00506881 0.00509451 0.00511348\n", + " 0.20832528 0.18083307 0.15264908 0.12387974 0.09463112 0.06501141\n", + " 0.0351331 0.00511348 0.18952259 0.15655094 0.12266162 0.08805229\n", + " 0.05292621 0.01748945 0.20172997 0.20380791 0.20549566 0.20678588\n", + " 0.20767444 0.20815839 0.00497187 0.00503783 0.00509482 0.00514259\n", + " 0.00518073 0.00520877 0.19643015 0.16225698 0.1271506 0.09130636\n", + " 0.0549237 0.01821176 0.20090587 0.20090587 0.00521618 0.00521618\n", + " 0.19029998 0.19225876 0.19384904 0.19506507 0.19590316 0.19636024\n", + " 0.15719218 0.15880644 0.16011755 0.16112232 0.16181718 0.1621981\n", + " 0.12316354 0.12442767 0.12545686 0.12624866 0.12679897 0.1271029\n", + " 0.08841323 0.08932369 0.09006766 0.09064294 0.0910454 0.09127018\n", + " 0.05314506 0.05369842 0.05415286 0.05450669 0.05475678 0.05489951\n", + " 0.0175654 0.01775879 0.01791986 0.01804791 0.01814173 0.01819993]\n", + " [0.9575635 0.96235848 0.9665599 0.97010815 0.97295274 0.97505345\n", + " 0.97638084 0.97691643 0.9575635 0.96249967 0.96685033 0.97055388\n", + " 0.97355774 0.97581955 0.97730771 0.97800162 0.97691643 0.98249606\n", + " 0.98740135 0.99156788 0.99494191 0.99747999 0.99914912 0.99992726\n", + " 0.97800162 0.98345527 0.98822148 0.99223792 0.99545284 0.99782482\n", + " 0.9993229 0.99992726 0.95974104 0.96522722 0.96976157 0.97324727\n", + " 0.97561035 0.97680113 0.95980102 0.96546589 0.97018908 0.97386995\n", + " 0.97643056 0.97781731 0.97942703 0.98582062 0.99113614 0.99527021\n", + " 0.9981429 0.99969795 0.98045849 0.98668859 0.99182302 0.99576214\n", + " 0.9984297 0.99977331 0.95759864 0.95759864 0.9999256 0.9999256\n", + " 0.96197634 0.96772508 0.97251687 0.97625014 0.97884665 0.98025265\n", + " 0.96754604 0.97350647 0.97847046 0.98233503 0.98502145 0.98647571\n", + " 0.97214818 0.97827946 0.98338189 0.98735208 0.99011108 0.99160442\n", + " 0.97568503 0.98194493 0.98715164 0.99120174 0.99401595 0.99553917\n", + " 0.97808228 0.98442808 0.98970464 0.99380856 0.99666018 0.99820374\n", + " 0.97929012 0.98567886 0.99099042 0.99512142 0.99799196 0.99954584]]\n", + "DEBUG:root:radec2pix: camVec Shape: (3, 96)\n", + "DEBUG:root:radec2pix: camVec Shape: (3, 96)\n", + "DEBUG:root:radec2pix: camVec: [[ 0.00114566 0.00115565 0.00116422 0.00117136 0.00117701 0.00118116\n", + " 0.00118376 0.00118481 0.00114566 0.03017404 0.05908469 0.08776498\n", + " 0.11610332 0.14398904 0.17131174 0.19796003 0.00118481 0.03120455\n", + " 0.06110052 0.09075528 0.1200543 0.14888674 0.17714546 0.20472589\n", + " 0.19796003 0.19971011 0.20119978 0.20242973 0.20339908 0.20410611\n", + " 0.20454887 0.20472589 0.00124992 0.00126219 0.00127213 0.00127966\n", + " 0.00128472 0.00128725 0.01380981 0.04932315 0.08454761 0.11927732\n", + " 0.15330846 0.18643745 0.01428113 0.05100494 0.08742589 0.12333185\n", + " 0.15851879 0.19279062 0.19866498 0.20063357 0.20221208 0.20339952\n", + " 0.20419277 0.20458843 0.00124504 0.00124504 0.2046327 0.2046327\n", + " 0.01386393 0.04951642 0.08487904 0.1197456 0.15391263 0.18717755\n", + " 0.01400003 0.0500023 0.08571147 0.12092013 0.15542529 0.1890269\n", + " 0.01411023 0.05039551 0.08638432 0.12186779 0.15664287 0.19051132\n", + " 0.01419378 0.0506935 0.08689379 0.12258434 0.15756175 0.19162897\n", + " 0.0142499 0.05089361 0.08723571 0.12306478 0.15817704 0.19237609\n", + " 0.01427798 0.05099373 0.08740674 0.12330495 0.15848438 0.1927489 ]\n", + " [-0.20812604 -0.1806373 -0.15245726 -0.12369032 -0.09444319 -0.06482624\n", + " -0.03495355 -0.00494229 -0.20812604 -0.20797994 -0.20756351 -0.20687811\n", + " -0.20592557 -0.20470759 -0.20322504 -0.20147731 -0.00494229 -0.00493875\n", + " -0.0049287 -0.00491221 -0.00488939 -0.0048604 -0.00482538 -0.00478446\n", + " -0.20147731 -0.17488831 -0.14761103 -0.11975687 -0.09143612 -0.06275929\n", + " -0.03383788 -0.00478446 -0.19623245 -0.16206424 -0.12696122 -0.09111882\n", + " -0.05474021 -0.01803675 -0.20800294 -0.20764209 -0.20687664 -0.20570979\n", + " -0.20414458 -0.20218204 -0.00504426 -0.00503536 -0.00501654 -0.004988\n", + " -0.00495001 -0.00490286 -0.1899823 -0.15691665 -0.12292805 -0.08821992\n", + " -0.05299579 -0.01746139 -0.2080333 -0.2080333 -0.00488406 -0.00488406\n", + " -0.19620382 -0.19586344 -0.1951417 -0.19404219 -0.19256861 -0.19072284\n", + " -0.16204052 -0.16175873 -0.16116182 -0.16025398 -0.15904007 -0.15752379\n", + " -0.12694255 -0.12672084 -0.12625153 -0.1255387 -0.12458735 -0.12340188\n", + " -0.09110536 -0.09094551 -0.09060732 -0.09009413 -0.08941017 -0.08855947\n", + " -0.05473209 -0.05463571 -0.05443186 -0.05412272 -0.05371108 -0.05319971\n", + " -0.01803407 -0.01800225 -0.01793496 -0.01783294 -0.01769716 -0.01752858]\n", + " [ 0.97810134 0.9835491 0.98830938 0.99232018 0.99552956 0.99789587\n", + " 0.99938824 0.99998708 0.97810134 0.97766757 0.97643555 0.97442227\n", + " 0.97165564 0.96817455 0.96402898 0.95928031 0.99998708 0.99950082\n", + " 0.99811945 0.99586111 0.99275529 0.98884231 0.98417285 0.97880765\n", + " 0.95928031 0.96412134 0.96836441 0.97194676 0.97481703 0.97693499\n", + " 0.97827131 0.97880765 0.98055661 0.9867794 0.99190687 0.99583921\n", + " 0.9984998 0.9998365 0.97803071 0.97696059 0.97470701 0.97131684\n", + " 0.96686168 0.96143824 0.9998853 0.99868571 0.9961584 0.99235295\n", + " 0.98734355 0.98122767 0.96147748 0.96701775 0.97159609 0.97511327\n", + " 0.97749515 0.97869233 0.97812095 0.97812095 0.97882665 0.97882665\n", + " 0.98046512 0.97938023 0.97709532 0.97365734 0.96913788 0.96363342\n", + " 0.98668479 0.98556272 0.98319907 0.97964125 0.97496115 0.96925491\n", + " 0.9918097 0.99065742 0.98822988 0.98457518 0.97976579 0.97389805\n", + " 0.9957401 0.99456477 0.9920886 0.98836032 0.98345316 0.97746384\n", + " 0.99839939 0.99720849 0.9946995 0.99092169 0.98594885 0.97987817\n", + " 0.99973542 0.99853671 0.99601124 0.99220858 0.98720287 0.98109154]]\n", + "DEBUG:root:radec2pix: camVec Shape: (3, 96)\n", + "DEBUG:root:cartToSphere: vec: [[ 0.00152888 -0.20769103 0.97819328]\n", + " [ 0.00154215 -0.1801941 0.98362986]\n", + " [ 0.00155354 -0.15200928 0.98837785]\n", + " [ 0.00156302 -0.12324112 0.99237552]\n", + " [ 0.00157054 -0.09399571 0.99557136]\n", + " [ 0.00157606 -0.06438234 0.99792406]\n", + " [ 0.00157952 -0.03451442 0.99940295]\n", + " [ 0.00158089 -0.00450904 0.99998858]\n", + " [ 0.00152888 -0.20769103 0.97819328]\n", + " [ 0.03055413 -0.20754198 0.97774883]\n", + " [ 0.0594604 -0.20712371 0.97650613]\n", + " [ 0.08813528 -0.20643751 0.97448229]\n", + " [ 0.11646734 -0.2054851 0.97170532]\n", + " [ 0.14434605 -0.20426815 0.9682142 ]\n", + " [ 0.17166149 -0.20278791 0.96405881]\n", + " [ 0.1983039 -0.2010451 0.95929997]\n", + " [ 0.00158089 -0.00450904 0.99998858]\n", + " [ 0.03159291 -0.00450572 0.99949066]\n", + " [ 0.06147904 -0.00449643 0.99809825]\n", + " [ 0.0911219 -0.00448126 0.99582966]\n", + " [ 0.12040769 -0.00446035 0.99271451]\n", + " [ 0.14922671 -0.00443385 0.98879307]\n", + " [ 0.17747265 -0.00440189 0.98411589]\n", + " [ 0.2050409 -0.00436457 0.97874367]\n", + " [ 0.1983039 -0.2010451 0.95929997]\n", + " [ 0.20004855 -0.17444879 0.9641308 ]\n", + " [ 0.20153434 -0.14716869 0.96836217]\n", + " [ 0.2027606 -0.11931453 0.97193219]\n", + " [ 0.20372608 -0.09099614 0.97478992]\n", + " [ 0.20442907 -0.06232394 0.97689533]\n", + " [ 0.20486781 -0.03340929 0.9782193 ]\n", + " [ 0.2050409 -0.00436457 0.97874367]\n", + " [ 0.00163462 -0.1957935 0.98064379]\n", + " [ 0.00165059 -0.16161745 0.9868521 ]\n", + " [ 0.00166353 -0.12651199 0.99196368]\n", + " [ 0.00167335 -0.09067166 0.99587944]\n", + " [ 0.00167995 -0.05429781 0.99852337]\n", + " [ 0.00168324 -0.01760077 0.99984368]\n", + " [ 0.01419184 -0.20756647 0.97811796]\n", + " [ 0.04970047 -0.20720276 0.97703474]\n", + " [ 0.08491857 -0.20643606 0.97476817]\n", + " [ 0.11964057 -0.20526936 0.97136534]\n", + " [ 0.15366298 -0.20370571 0.96689796]\n", + " [ 0.18678351 -0.20174719 0.96146242]\n", + " [ 0.01467408 -0.00461102 0.9998817 ]\n", + " [ 0.05138704 -0.00460274 0.99866821]\n", + " [ 0.08779394 -0.00458538 0.9961281 ]\n", + " [ 0.12368372 -0.00455917 0.99231122]\n", + " [ 0.15885436 -0.0045244 0.98729166]\n", + " [ 0.19311093 -0.0044813 0.9811667 ]\n", + " [ 0.19900616 -0.18954613 0.96149301]\n", + " [ 0.20096941 -0.15647489 0.9670196 ]\n", + " [ 0.20254341 -0.12248558 0.97158296]\n", + " [ 0.2037261 -0.08778034 0.97508476]\n", + " [ 0.2045144 -0.05256249 0.9774513 ]\n", + " [ 0.20490517 -0.01703747 0.97863353]\n", + " [ 0.00162826 -0.20759824 0.97821282]\n", + " [ 0.00162826 -0.20759824 0.97821282]\n", + " [ 0.20494776 -0.00446412 0.97876273]\n", + " [ 0.20494776 -0.00446412 0.97876273]\n", + " [ 0.01424722 -0.19576354 0.98054763]\n", + " [ 0.04989441 -0.19542056 0.97944952]\n", + " [ 0.08525013 -0.19469787 0.97715155]\n", + " [ 0.12010852 -0.19359884 0.97370089]\n", + " [ 0.15426631 -0.19212697 0.9691693 ]\n", + " [ 0.18752167 -0.19028463 0.96365314]\n", + " [ 0.01438645 -0.16159264 0.98675268]\n", + " [ 0.05038177 -0.16130879 0.98561714]\n", + " [ 0.08608239 -0.16071144 0.98324039]\n", + " [ 0.1212815 -0.15980479 0.97966996]\n", + " [ 0.15577635 -0.15859338 0.97497788]\n", + " [ 0.18936679 -0.15708053 0.9692605 ]\n", + " [ 0.01449922 -0.12649245 0.9918616 ]\n", + " [ 0.05077617 -0.12626898 0.99069568]\n", + " [ 0.08675481 -0.12579928 0.9882551 ]\n", + " [ 0.12222707 -0.12508774 0.98458804]\n", + " [ 0.15699061 -0.12413931 0.979767 ]\n", + " [ 0.19084708 -0.12295784 0.97388848]\n", + " [ 0.01458479 -0.09065756 0.99577532]\n", + " [ 0.05107523 -0.09049631 0.99458621]\n", + " [ 0.08726392 -0.09015775 0.99209707]\n", + " [ 0.1229415 -0.08964573 0.98835673]\n", + " [ 0.15790584 -0.08896468 0.98343837]\n", + " [ 0.1919602 -0.0881182 0.97743873]\n", + " [ 0.01464229 -0.05428931 0.99841789]\n", + " [ 0.05127607 -0.05419219 0.9972131 ]\n", + " [ 0.08760541 -0.05398843 0.99469118]\n", + " [ 0.12341989 -0.05368064 0.99090157]\n", + " [ 0.15851749 -0.05327188 0.985918 ]\n", + " [ 0.19270261 -0.0527647 0.97983753]\n", + " [ 0.01467095 -0.01759801 0.9997375 ]\n", + " [ 0.05137612 -0.01756642 0.99852487]\n", + " [ 0.08777538 -0.01750018 0.99598656]\n", + " [ 0.12365776 -0.01740019 0.99217236]\n", + " [ 0.15882123 -0.0172675 0.98715635]\n", + " [ 0.1930708 -0.01710301 0.98103576]]\n", + "DEBUG:root:optics_fp: xyfp: [[-32.29046994 -31.71666141]\n", + " [-32.28860507 -27.33023323]\n", + " [-32.2867402 -22.94380505]\n", + " [-32.28487534 -18.55737688]\n", + " [-32.28301047 -14.1709487 ]\n", + " [-32.2811456 -9.78452053]\n", + " [-32.27928073 -5.39809235]\n", + " [-32.27741587 -1.01166418]\n", + " [-32.29046994 -31.71666141]\n", + " [-27.90404176 -31.71852627]\n", + " [-23.51761359 -31.72039114]\n", + " [-19.13118541 -31.722256 ]\n", + " [-14.74475724 -31.72412087]\n", + " [-10.35832906 -31.72598574]\n", + " [ -5.97190089 -31.72785061]\n", + " [ -1.58547272 -31.72971547]\n", + " [-32.27741587 -1.01166418]\n", + " [-27.8909877 -1.01352905]\n", + " [-23.50455952 -1.01539391]\n", + " [-19.11813134 -1.01725878]\n", + " [-14.73170317 -1.01912365]\n", + " [-10.345275 -1.02098851]\n", + " [ -5.95884682 -1.02285338]\n", + " [ -1.57241864 -1.02471825]\n", + " [ -1.58547272 -31.72971547]\n", + " [ -1.58360785 -27.3432873 ]\n", + " [ -1.58174298 -22.95685912]\n", + " [ -1.57987811 -18.57043094]\n", + " [ -1.57801325 -14.18400278]\n", + " [ -1.57614838 -9.7975746 ]\n", + " [ -1.57428351 -5.41114642]\n", + " [ -1.57241864 -1.02471825]\n", + " [-32.27465685 -29.80416795]\n", + " [-32.27237127 -24.42816844]\n", + " [-32.2700857 -19.05216893]\n", + " [-32.26780012 -13.67616941]\n", + " [-32.26551454 -8.3001699 ]\n", + " [-32.26322896 -2.92417038]\n", + " [-30.37796373 -31.70247449]\n", + " [-25.00196422 -31.70476008]\n", + " [-19.62596471 -31.70704565]\n", + " [-14.24996519 -31.70933123]\n", + " [ -8.87396568 -31.71161681]\n", + " [ -3.49796617 -31.71390239]\n", + " [-30.36492242 -1.02747727]\n", + " [-24.98892291 -1.02976285]\n", + " [-19.61292339 -1.03204842]\n", + " [-14.23692388 -1.034334 ]\n", + " [ -8.86092437 -1.03661958]\n", + " [ -3.48492485 -1.03890516]\n", + " [ -1.59965962 -29.81720927]\n", + " [ -1.59737405 -24.44120975]\n", + " [ -1.59508847 -19.06521024]\n", + " [ -1.59280289 -13.68921073]\n", + " [ -1.59051731 -8.31321121]\n", + " [ -1.58823174 -2.9372117 ]\n", + " [-32.27546357 -31.70166778]\n", + " [-32.27546357 -31.70166778]\n", + " [ -1.58742502 -1.03971187]\n", + " [ -1.58742502 -1.03971187]\n", + " [-30.37715702 -29.80497466]\n", + " [-25.00115751 -29.80726024]\n", + " [-19.625158 -29.80954582]\n", + " [-14.24915848 -29.8118314 ]\n", + " [ -8.87315897 -29.81411698]\n", + " [ -3.49715945 -29.81640256]\n", + " [-30.37487145 -24.42897515]\n", + " [-24.99887193 -24.43126073]\n", + " [-19.62287241 -24.43354631]\n", + " [-14.2468729 -24.43583188]\n", + " [ -8.87087339 -24.43811746]\n", + " [ -3.49487388 -24.44040305]\n", + " [-30.37258587 -19.05297564]\n", + " [-24.99658635 -19.05526122]\n", + " [-19.62058684 -19.05754679]\n", + " [-14.24458732 -19.05983237]\n", + " [ -8.86858781 -19.06211795]\n", + " [ -3.4925883 -19.06440353]\n", + " [-30.37030029 -13.67697612]\n", + " [-24.99430077 -13.6792617 ]\n", + " [-19.61830126 -13.68154728]\n", + " [-14.24230175 -13.68383286]\n", + " [ -8.86630223 -13.68611844]\n", + " [ -3.49030272 -13.68840401]\n", + " [-30.36801471 -8.30097661]\n", + " [-24.9920152 -8.30326219]\n", + " [-19.61601568 -8.30554776]\n", + " [-14.24001617 -8.30783335]\n", + " [ -8.86401666 -8.31011893]\n", + " [ -3.48801714 -8.3124045 ]\n", + " [-30.36572914 -2.9249771 ]\n", + " [-24.98972962 -2.92726267]\n", + " [-19.6137301 -2.92954825]\n", + " [-14.23773059 -2.93183383]\n", + " [ -8.86173108 -2.93411941]\n", + " [ -3.48573156 -2.93640499]]\n", + "DEBUG:root:optics_fp: xyfp shape: (96, 2)\n", + "DEBUG:root:radec2pix: lng: [270.42176524 270.49034045 270.58554379 270.72662079 270.95724718\n", + " 271.40230304 272.6202602 289.32090211 270.42176524 278.37487059\n", + " 286.01754065 293.1193046 299.54422335 305.24693184 310.24816583\n", + " 314.60671783 289.32090211 351.88332455 355.81697528 357.18453549\n", + " 357.87852145 358.29811982 358.57917324 358.78056782 314.60671783\n", + " 318.91052218 323.86153916 329.52530495 335.93162927 343.04519816\n", + " 350.73789032 358.78056782 270.47833289 270.58513886 270.75335014\n", + " 271.05727717 271.77214072 275.46283159 273.91137001 283.48836134\n", + " 292.36007687 300.23563069 307.02864268 312.79442784 342.55577414\n", + " 354.88167257 357.01022263 357.88894543 358.36857558 358.67064356\n", + " 316.39469688 322.09565632 328.83707711 336.69003224 345.58630386\n", + " 355.24690052 270.44938101 270.44938101 358.75219462 358.75219462\n", + " 274.16251665 284.32266507 293.64661849 301.81542209 308.76235319\n", + " 314.58099285 275.08757932 287.34521298 298.17498348 307.196148\n", + " 314.48659385 320.3241534 276.53899869 291.90639058 304.59126569\n", + " 314.33729311 321.66504236 327.20736404 279.1393103 299.43995741\n", + " 314.06556227 323.90144592 330.60294465 335.34278839 285.09401101\n", + " 313.41621828 328.3557916 336.49369688 341.42440255 344.68693562\n", + " 309.81698293 341.12351394 348.72452469 351.99035546 353.79501012\n", + " 354.93771634]\n", + "DEBUG:root:optics_fp: sphi: [-0.99998485 -0.99997954 -0.99997084 -0.99995516 -0.99992235 -0.99983405\n", + " -0.99942701 -0.97244722 -0.99998485 -0.98963896 -0.96179176 -0.92058417\n", + " -0.87108674 -0.81792759 -0.76458695 -0.71330561 -0.97244722 -0.15632448\n", + " -0.08040428 -0.05404675 -0.04069277 -0.03262757 -0.02722955 -0.0233637\n", + " -0.71330561 -0.65880742 -0.59153179 -0.50916823 -0.41001608 -0.29390365\n", + " -0.16320875 -0.0233637 -0.99997971 -0.99996967 -0.99994981 -0.9999014\n", + " -0.99972471 -0.99746296 -0.99780328 -0.97292796 -0.92567822 -0.8650939\n", + " -0.79962377 -0.73515153 -0.33304712 -0.0982454 -0.05728621 -0.04041066\n", + " -0.03121144 -0.02542276 -0.69113701 -0.61606249 -0.51946104 -0.39791167\n", + " -0.251215 -0.08503968 -0.99998209 -0.99998209 -0.02386066 -0.02386066\n", + " -0.99751283 -0.96949788 -0.91701021 -0.85100183 -0.78115023 -0.71370911\n", + " -0.99628843 -0.95539573 -0.8829017 -0.79825206 -0.71518771 -0.64018769\n", + " -0.99387901 -0.92921527 -0.82530209 -0.71751954 -0.62247788 -0.54365446\n", + " -0.98808048 -0.87347054 -0.72174233 -0.59221374 -0.49353552 -0.41950849\n", + " -0.96773826 -0.7317211 -0.52936616 -0.40257793 -0.32153186 -0.26653625\n", + " -0.7840245 -0.33289349 -0.20100193 -0.14313552 -0.11097528 -0.09056624]\n", + "DEBUG:root:radec2pix: lat: [78.01259544 79.61854981 81.2561548 82.92023352 84.60572556 86.30750292\n", + " 88.02000573 89.72623162 78.01259544 77.8905989 77.5557472 77.02861409\n", + " 76.33783962 75.51523956 74.59210732 73.59715789 89.72623162 88.17123291\n", + " 86.46586111 84.76551164 83.07960166 81.41406813 79.77423864 78.16538766\n", + " 73.59715789 74.60763881 75.5491728 76.39298182 77.10737428 77.65965515\n", + " 78.01977483 78.16538766 78.70852006 80.69871958 82.73128852 84.79686317\n", + " 86.88594315 88.98689611 77.99183548 77.69708601 77.10179122 76.25561048\n", + " 75.21673598 74.0417777 89.11867119 87.04263922 84.95641064 82.89040132\n", + " 80.8558565 78.86257349 74.04815363 75.2440736 76.30818941 77.18330532\n", + " 77.80960312 78.1346569 78.0179859 78.0179859 78.1707132 78.1707132\n", + " 78.68041726 78.36422733 77.72853599 76.83064382 75.73566662 74.50486571\n", + " 80.66353948 80.27068815 79.49543516 78.42701765 77.15572991 75.75689035\n", + " 82.68520532 82.17800874 81.21001267 79.9277617 78.4547664 76.877901\n", + " 84.73149404 84.03535931 82.79194264 81.24820065 79.5578398 77.80619197\n", + " 86.77660248 85.72142555 84.09351686 82.26517071 80.37322779 78.47497463\n", + " 88.68716566 86.88752222 84.86498838 82.8264064 80.80719889 78.82380063]\n", + "DEBUG:root:cartToSphere: vec: [[-0.00156258 0.20900824 0.97791263]\n", + " [-0.00157957 0.18154377 0.9833816 ]\n", + " [-0.00159468 0.15338464 0.98816527]\n", + " [-0.00160787 0.12463517 0.99220134]\n", + " [-0.00161907 0.09540199 0.99543751]\n", + " [-0.00162822 0.06579532 0.99783181]\n", + " [-0.00163527 0.03592916 0.999353 ]\n", + " [-0.00164017 0.00592057 0.99998113]\n", + " [-0.00156258 0.20900824 0.97791263]\n", + " [-0.0305812 0.20886066 0.97746714]\n", + " [-0.05948043 0.2084416 0.97622445]\n", + " [-0.08814769 0.2077524 0.97420169]\n", + " [-0.11647141 0.20679486 0.97142694]\n", + " [-0.14434091 0.20557063 0.96793926]\n", + " [-0.17164574 0.20408052 0.96378882]\n", + " [-0.19827444 0.20232383 0.95903718]\n", + " [-0.00164017 0.00592057 0.99998113]\n", + " [-0.03165868 0.00591961 0.99948121]\n", + " [-0.06155164 0.00591082 0.9980864 ]\n", + " [-0.09120162 0.00589429 0.995815 ]\n", + " [-0.12049415 0.00587015 0.99269668]\n", + " [-0.14931846 0.00583856 0.98877192]\n", + " [-0.17756745 0.00579969 0.98409154]\n", + " [-0.20513658 0.00575368 0.97871644]\n", + " [-0.19827444 0.20232383 0.95903718]\n", + " [-0.2000398 0.17576331 0.96389384]\n", + " [-0.20154417 0.1485108 0.9681552 ]\n", + " [-0.20278831 0.12067777 0.97175809]\n", + " [-0.20377138 0.09237455 0.97465079]\n", + " [-0.20449167 0.06371165 0.9767927 ]\n", + " [-0.20494724 0.03480051 0.97815416]\n", + " [-0.20513658 0.00575368 0.97871644]\n", + " [-0.00166992 0.19712565 0.98037681]\n", + " [-0.00169047 0.16298492 0.98662711]\n", + " [-0.00170796 0.12790428 0.99178505]\n", + " [-0.0017223 0.09207897 0.99575022]\n", + " [-0.00173334 0.05571194 0.99844538]\n", + " [-0.001741 0.01901436 0.99981769]\n", + " [-0.0142227 0.20888472 0.97783684]\n", + " [-0.04972296 0.20852129 0.97675304]\n", + " [-0.08493191 0.20775151 0.9744875 ]\n", + " [-0.1196437 0.20657854 0.97108738]\n", + " [-0.15365451 0.20500532 0.9666246 ]\n", + " [-0.18676067 0.20303275 0.96119621]\n", + " [-0.01473616 0.00602383 0.99987327]\n", + " [-0.05145726 0.00601719 0.99865707]\n", + " [-0.08787283 0.00599868 0.99611364]\n", + " [-0.12377083 0.00596852 0.99229288]\n", + " [-0.15894736 0.005927 0.98726927]\n", + " [-0.19320639 0.00587443 0.98114055]\n", + " [-0.19898619 0.19084173 0.96124083]\n", + " [-0.20097311 0.15780847 0.9668021 ]\n", + " [-0.20256914 0.12384677 0.97140502]\n", + " [-0.20377339 0.08916013 0.97494968]\n", + " [-0.20458276 0.05395206 0.97736128]\n", + " [-0.20499385 0.01842821 0.97858976]\n", + " [-0.00166195 0.20891558 0.97793227]\n", + " [-0.00166195 0.20891558 0.97793227]\n", + " [-0.20504339 0.00585328 0.97873538]\n", + " [-0.20504339 0.00585328 0.97873538]\n", + " [-0.01428012 0.19709662 0.98028006]\n", + " [-0.04992014 0.19675396 0.97918122]\n", + " [-0.08526785 0.1960282 0.976884 ]\n", + " [-0.1201171 0.19492287 0.97343565]\n", + " [-0.15426444 0.19344162 0.96890806]\n", + " [-0.18750721 0.19158618 0.96339804]\n", + " [-0.01442512 0.16296111 0.98652704]\n", + " [-0.05041664 0.16267787 0.98539031]\n", + " [-0.08611259 0.16207774 0.98301344]\n", + " [-0.12130566 0.1611649 0.97944414]\n", + " [-0.1557929 0.15994417 0.97475455]\n", + " [-0.1893742 0.15841917 0.96904116]\n", + " [-0.01454351 0.12788582 0.99168226]\n", + " [-0.0508198 0.12766348 0.99051471]\n", + " [-0.08679712 0.12719172 0.98807314]\n", + " [-0.1222667 0.12647465 0.98440592]\n", + " [-0.15702557 0.12551724 0.97958583]\n", + " [-0.19087549 0.12432386 0.97370947]\n", + " [-0.01463451 0.09206603 0.99564536]\n", + " [-0.05112705 0.09190638 0.99445424]\n", + " [-0.08731762 0.09156653 0.99196331]\n", + " [-0.122996 0.09104984 0.98822159]\n", + " [-0.15795892 0.09036055 0.98330257]\n", + " [-0.19200933 0.08950266 0.97730327]\n", + " [-0.01469728 0.05570466 0.99833911]\n", + " [-0.05133568 0.05560934 0.99713201]\n", + " [-0.08766989 0.05540465 0.99460762]\n", + " [-0.12348855 0.05509277 0.9908155 ]\n", + " [-0.15858803 0.05467653 0.98582976]\n", + " [-0.19277198 0.0541587 0.97974782]\n", + " [-0.01473117 0.01901283 0.99971071]\n", + " [-0.05144352 0.01898296 0.99849547]\n", + " [-0.08785049 0.01891568 0.99595406]\n", + " [-0.12374011 0.01881174 0.99213633]\n", + " [-0.1589085 0.01867213 0.98711673]\n", + " [-0.19315962 0.01849786 0.98099296]]\n", + "DEBUG:root:radec2pix: curVec: [[ 0.68928097 -0.69920464 -0.1897488 ]\n", + " [ 0.68523919 -0.70936909 -0.16505378]\n", + " [ 0.68070392 -0.71911975 -0.13967446]\n", + " [ 0.67565828 -0.72839258 -0.11371075]\n", + " [ 0.67009217 -0.73713022 -0.08726698]\n", + " [ 0.66400343 -0.74528205 -0.06044928]\n", + " [ 0.6573984 -0.7528042 -0.03336434]\n", + " [ 0.650292 -0.75965971 -0.0061191 ]\n", + " [ 0.68928097 -0.69920464 -0.1897488 ]\n", + " [ 0.70846205 -0.6817754 -0.18238375]\n", + " [ 0.72750967 -0.66351241 -0.17458799]\n", + " [ 0.74631582 -0.64445766 -0.1663942 ]\n", + " [ 0.76477763 -0.62466163 -0.15783862]\n", + " [ 0.7827993 -0.60418256 -0.14895869]\n", + " [ 0.80029293 -0.58308613 -0.13979197]\n", + " [ 0.81717881 -0.56144538 -0.13037594]\n", + " [ 0.650292 -0.75965971 -0.0061191 ]\n", + " [ 0.67004189 -0.74231608 0.00327185]\n", + " [ 0.68965933 -0.72401984 0.0128563 ]\n", + " [ 0.70903374 -0.70481249 0.02259448]\n", + " [ 0.72806335 -0.68474149 0.03244769]\n", + " [ 0.74665356 -0.66386189 0.04237746]\n", + " [ 0.76471574 -0.64223816 0.0523448 ]\n", + " [ 0.78216715 -0.61994519 0.06230982]\n", + " [ 0.81717881 -0.56144538 -0.13037594]\n", + " [ 0.81437567 -0.57091669 -0.10414605]\n", + " [ 0.81086155 -0.5801093 -0.0773094 ]\n", + " [ 0.80661473 -0.58896148 -0.04997055]\n", + " [ 0.8016218 -0.59741793 -0.02223288]\n", + " [ 0.7958781 -0.60542912 0.00579897]\n", + " [ 0.78938834 -0.61295096 0.0340171 ]\n", + " [ 0.78216715 -0.61994519 0.06230982]\n", + " [ 0.68764411 -0.70362473 -0.17904698]\n", + " [ 0.68236183 -0.71581239 -0.148307 ]\n", + " [ 0.67632067 -0.72731422 -0.11663776]\n", + " [ 0.66949914 -0.73802185 -0.08422975]\n", + " [ 0.66189332 -0.74784208 -0.0512782 ]\n", + " [ 0.65351846 -0.756697 -0.01797965]\n", + " [ 0.69764069 -0.69174559 -0.18650875]\n", + " [ 0.72107393 -0.66981864 -0.17718741]\n", + " [ 0.74419896 -0.64667995 -0.16725117]\n", + " [ 0.76682408 -0.62241901 -0.15676548]\n", + " [ 0.78877302 -0.59714297 -0.14579913]\n", + " [ 0.80988735 -0.57097585 -0.13442124]\n", + " [ 0.65893706 -0.75219502 -0.00214471]\n", + " [ 0.68306816 -0.73029285 0.00949911]\n", + " [ 0.70688939 -0.70700048 0.02139411]\n", + " [ 0.73020977 -0.68240277 0.03346859]\n", + " [ 0.752855 -0.6566013 0.04565168]\n", + " [ 0.77466431 -0.62971909 0.05787119]\n", + " [ 0.81598546 -0.56568006 -0.11905373]\n", + " [ 0.81207441 -0.57710955 -0.08648537]\n", + " [ 0.80707306 -0.58805819 -0.05310965]\n", + " [ 0.80095327 -0.59842157 -0.01911734]\n", + " [ 0.79370654 -0.60810844 0.0152987 ]\n", + " [ 0.78534565 -0.61704001 0.0499382 ]\n", + " [ 0.68933367 -0.69918189 -0.1896412 ]\n", + " [ 0.68933367 -0.69918189 -0.1896412 ]\n", + " [ 0.78213451 -0.61999949 0.06217905]\n", + " [ 0.78213451 -0.61999949 0.06217905]\n", + " [ 0.69599049 -0.69618451 -0.17585325]\n", + " [ 0.71953342 -0.67423487 -0.16637006]\n", + " [ 0.74276346 -0.65105692 -0.15629242]\n", + " [ 0.76548773 -0.62674044 -0.14568784]\n", + " [ 0.78752955 -0.60139265 -0.13462572]\n", + " [ 0.8087302 -0.57513768 -0.12317514]\n", + " [ 0.69080371 -0.70836594 -0.1449411 ]\n", + " [ 0.7146121 -0.68636893 -0.13500833]\n", + " [ 0.73809637 -0.66310079 -0.12454358]\n", + " [ 0.761062 -0.63865145 -0.11361756]\n", + " [ 0.78333201 -0.61312781 -0.10229978]\n", + " [ 0.80474702 -0.58665429 -0.0906586 ]\n", + " [ 0.68483272 -0.71986903 -0.11310497]\n", + " [ 0.70883635 -0.69785037 -0.10274185]\n", + " [ 0.73250927 -0.67452375 -0.09191237]\n", + " [ 0.75565713 -0.64997829 -0.08068782]\n", + " [ 0.77810331 -0.6243199 -0.06913682]\n", + " [ 0.79968776 -0.59767307 -0.05732699]\n", + " [ 0.67805482 -0.73058565 -0.08053738]\n", + " [ 0.70218154 -0.70857166 -0.06976596]\n", + " [ 0.72597673 -0.68521861 -0.05859386]\n", + " [ 0.74924708 -0.66061422 -0.04709202]\n", + " [ 0.77181661 -0.63486299 -0.03532851]\n", + " [ 0.79352462 -0.60808919 -0.02337111]\n", + " [ 0.67046573 -0.74042265 -0.0474342 ]\n", + " [ 0.69464303 -0.71843933 -0.03627671]\n", + " [ 0.718494 -0.69509149 -0.02478295]\n", + " [ 0.74182656 -0.67046531 -0.01302372]\n", + " [ 0.76446546 -0.6446638 -0.00106758]\n", + " [ 0.78624963 -0.61781078 0.01101636]\n", + " [ 0.66208073 -0.74930189 -0.01399225]\n", + " [ 0.6862365 -0.72737429 -0.00247117]\n", + " [ 0.71007709 -0.70406222 0.00932312]\n", + " [ 0.7334113 -0.67945077 0.02131929]\n", + " [ 0.75606463 -0.65364177 0.03344718]\n", + " [ 0.77787611 -0.62675845 0.04563549]]\n", + "DEBUG:root:radec2pix: curVec Shape: (96, 3)\n", + "DEBUG:root:make_az_asym: xyp: [[-32.29046994 -31.71666141]\n", + " [-32.28860507 -27.33023323]\n", + " [-32.2867402 -22.94380505]\n", + " [-32.28487534 -18.55737688]\n", + " [-32.28301047 -14.1709487 ]\n", + " [-32.2811456 -9.78452053]\n", + " [-32.27928073 -5.39809235]\n", + " [-32.27741587 -1.01166418]\n", + " [-32.29046994 -31.71666141]\n", + " [-27.90404176 -31.71852627]\n", + " [-23.51761359 -31.72039114]\n", + " [-19.13118541 -31.722256 ]\n", + " [-14.74475724 -31.72412087]\n", + " [-10.35832906 -31.72598574]\n", + " [ -5.97190089 -31.72785061]\n", + " [ -1.58547272 -31.72971547]\n", + " [-32.27741587 -1.01166418]\n", + " [-27.8909877 -1.01352905]\n", + " [-23.50455952 -1.01539391]\n", + " [-19.11813134 -1.01725878]\n", + " [-14.73170317 -1.01912365]\n", + " [-10.345275 -1.02098851]\n", + " [ -5.95884682 -1.02285338]\n", + " [ -1.57241864 -1.02471825]\n", + " [ -1.58547272 -31.72971547]\n", + " [ -1.58360785 -27.3432873 ]\n", + " [ -1.58174298 -22.95685912]\n", + " [ -1.57987811 -18.57043094]\n", + " [ -1.57801325 -14.18400278]\n", + " [ -1.57614838 -9.7975746 ]\n", + " [ -1.57428351 -5.41114642]\n", + " [ -1.57241864 -1.02471825]\n", + " [-32.27465685 -29.80416795]\n", + " [-32.27237127 -24.42816844]\n", + " [-32.2700857 -19.05216893]\n", + " [-32.26780012 -13.67616941]\n", + " [-32.26551454 -8.3001699 ]\n", + " [-32.26322896 -2.92417038]\n", + " [-30.37796373 -31.70247449]\n", + " [-25.00196422 -31.70476008]\n", + " [-19.62596471 -31.70704565]\n", + " [-14.24996519 -31.70933123]\n", + " [ -8.87396568 -31.71161681]\n", + " [ -3.49796617 -31.71390239]\n", + " [-30.36492242 -1.02747727]\n", + " [-24.98892291 -1.02976285]\n", + " [-19.61292339 -1.03204842]\n", + " [-14.23692388 -1.034334 ]\n", + " [ -8.86092437 -1.03661958]\n", + " [ -3.48492485 -1.03890516]\n", + " [ -1.59965962 -29.81720927]\n", + " [ -1.59737405 -24.44120975]\n", + " [ -1.59508847 -19.06521024]\n", + " [ -1.59280289 -13.68921073]\n", + " [ -1.59051731 -8.31321121]\n", + " [ -1.58823174 -2.9372117 ]\n", + " [-32.27546357 -31.70166778]\n", + " [-32.27546357 -31.70166778]\n", + " [ -1.58742502 -1.03971187]\n", + " [ -1.58742502 -1.03971187]\n", + " [-30.37715702 -29.80497466]\n", + " [-25.00115751 -29.80726024]\n", + " [-19.625158 -29.80954582]\n", + " [-14.24915848 -29.8118314 ]\n", + " [ -8.87315897 -29.81411698]\n", + " [ -3.49715945 -29.81640256]\n", + " [-30.37487145 -24.42897515]\n", + " [-24.99887193 -24.43126073]\n", + " [-19.62287241 -24.43354631]\n", + " [-14.2468729 -24.43583188]\n", + " [ -8.87087339 -24.43811746]\n", + " [ -3.49487388 -24.44040305]\n", + " [-30.37258587 -19.05297564]\n", + " [-24.99658635 -19.05526122]\n", + " [-19.62058684 -19.05754679]\n", + " [-14.24458732 -19.05983237]\n", + " [ -8.86858781 -19.06211795]\n", + " [ -3.4925883 -19.06440353]\n", + " [-30.37030029 -13.67697612]\n", + " [-24.99430077 -13.6792617 ]\n", + " [-19.61830126 -13.68154728]\n", + " [-14.24230175 -13.68383286]\n", + " [ -8.86630223 -13.68611844]\n", + " [ -3.49030272 -13.68840401]\n", + " [-30.36801471 -8.30097661]\n", + " [-24.9920152 -8.30326219]\n", + " [-19.61601568 -8.30554776]\n", + " [-14.24001617 -8.30783335]\n", + " [ -8.86401666 -8.31011893]\n", + " [ -3.48801714 -8.3124045 ]\n", + " [-30.36572914 -2.9249771 ]\n", + " [-24.98972962 -2.92726267]\n", + " [-19.6137301 -2.92954825]\n", + " [-14.23773059 -2.93183383]\n", + " [ -8.86173108 -2.93411941]\n", + " [ -3.48573156 -2.93640499]]\n", + "DEBUG:root:make_az_asym: xyp: shape: (96, 2)\n", + "DEBUG:root:cartToSphere: vec: [[0.20658103 0.20098859 0.9575635 ]\n", + " [0.20838989 0.17447006 0.96235848]\n", + " [0.20993522 0.14727238 0.9665599 ]\n", + " [0.21121099 0.11949936 0.97010815]\n", + " [0.21221385 0.09125926 0.97295274]\n", + " [0.21294172 0.06266255 0.97505345]\n", + " [0.21339307 0.03382097 0.97638084]\n", + " [0.21356684 0.00484709 0.97691643]\n", + " [0.20658103 0.20098859 0.9575635 ]\n", + " [0.18015754 0.20282418 0.96249967]\n", + " [0.1530338 0.20440426 0.96685033]\n", + " [0.12531307 0.20572264 0.97055388]\n", + " [0.09710338 0.20677589 0.97355774]\n", + " [0.06851504 0.2075618 0.97581955]\n", + " [0.03965966 0.2080787 0.97730771]\n", + " [0.01064976 0.20832528 0.97800162]\n", + " [0.21356684 0.00484709 0.97691643]\n", + " [0.18621882 0.00490326 0.98249606]\n", + " [0.15815829 0.00495363 0.98740135]\n", + " [0.12949192 0.00499813 0.99156788]\n", + " [0.10032565 0.0050366 0.99494191]\n", + " [0.07076705 0.00506881 0.99747999]\n", + " [0.04092766 0.00509451 0.99914912]\n", + " [0.01092393 0.00511348 0.99992726]\n", + " [0.01064976 0.20832528 0.97800162]\n", + " [0.01072986 0.18083307 0.98345527]\n", + " [0.01079662 0.15264908 0.98822148]\n", + " [0.01085001 0.12387974 0.99223792]\n", + " [0.01088978 0.09463112 0.99545284]\n", + " [0.0109156 0.06501141 0.99782482]\n", + " [0.01092708 0.0351331 0.9993229 ]\n", + " [0.01092393 0.00511348 0.99992726]\n", + " [0.20731213 0.18952259 0.95974104]\n", + " [0.20935192 0.15655094 0.96522722]\n", + " [0.21098964 0.12266162 0.96976157]\n", + " [0.21221814 0.08805229 0.97324727]\n", + " [0.21303349 0.05292621 0.97561035]\n", + " [0.21343308 0.01748945 0.97680113]\n", + " [0.19515895 0.20172997 0.95980102]\n", + " [0.16228971 0.20380791 0.96546589]\n", + " [0.12847052 0.20549566 0.97018908]\n", + " [0.09389848 0.20678588 0.97386995]\n", + " [0.05877657 0.20767444 0.97643056]\n", + " [0.02331064 0.20815839 0.97781731]\n", + " [0.20173739 0.00497187 0.97942703]\n", + " [0.16772694 0.00503783 0.98582062]\n", + " [0.13275239 0.00509482 0.99113614]\n", + " [0.09700904 0.00514259 0.99527021]\n", + " [0.06069518 0.00518073 0.9981429 ]\n", + " [0.02401827 0.00520877 0.99969795]\n", + " [0.01078606 0.19643015 0.98045849]\n", + " [0.01087623 0.16225698 0.98668859]\n", + " [0.01094616 0.1271506 0.99182302]\n", + " [0.01099551 0.09130636 0.99576214]\n", + " [0.01102363 0.0549237 0.9984297 ]\n", + " [0.01102984 0.01821176 0.99977331]\n", + " [0.2064986 0.20090587 0.95759864]\n", + " [0.2064986 0.20090587 0.95759864]\n", + " [0.01102671 0.00521618 0.9999256 ]\n", + " [0.01102671 0.00521618 0.9999256 ]\n", + " [0.19592714 0.19029998 0.96197634]\n", + " [0.16292559 0.19225876 0.96772508]\n", + " [0.1289709 0.19384904 0.97251687]\n", + " [0.09426176 0.19506507 0.97625014]\n", + " [0.0590016 0.19590316 0.97884665]\n", + " [0.02339654 0.19636024 0.98025265]\n", + " [0.19785166 0.15719218 0.96754604]\n", + " [0.16451646 0.15880644 0.97350647]\n", + " [0.13022261 0.16011755 0.97847046]\n", + " [0.09517088 0.16112232 0.98233503]\n", + " [0.05956467 0.16181718 0.98502145]\n", + " [0.02361044 0.1621981 0.98647571]\n", + " [0.19939573 0.12316354 0.97214818]\n", + " [0.16579218 0.12442767 0.97827946]\n", + " [0.13122742 0.12545686 0.98338189]\n", + " [0.09590173 0.12624866 0.98735208]\n", + " [0.06001727 0.12679897 0.99011108]\n", + " [0.02378066 0.1271029 0.99160442]\n", + " [0.20055377 0.08841323 0.97568503]\n", + " [0.16674959 0.08932369 0.98194493]\n", + " [0.13198281 0.09006766 0.98715164]\n", + " [0.09645193 0.09064294 0.99120174]\n", + " [0.06035751 0.0910454 0.99401595]\n", + " [0.0239064 0.09127018 0.99553917]\n", + " [0.20132229 0.05314506 0.97808228]\n", + " [0.16738526 0.05369842 0.98442808]\n", + " [0.13248471 0.05415286 0.98970464]\n", + " [0.09681723 0.05450669 0.99380856]\n", + " [0.06058199 0.05475678 0.99666018]\n", + " [0.02398618 0.05489951 0.99820374]\n", + " [0.20169858 0.0175654 0.97929012]\n", + " [0.16769559 0.01775879 0.98567886]\n", + " [0.13272857 0.01791986 0.99099042]\n", + " [0.09699294 0.01804791 0.99512142]\n", + " [0.06068709 0.01814173 0.99799196]\n", + " [0.02401844 0.01819993 0.99954584]]\n", + "DEBUG:root:radec2pix: lng: [ 90.42834373 90.49850377 90.5956611 90.73910961 90.97227481\n", + " 91.41759428 92.60593903 105.48424091 90.42834373 98.33000716\n", + " 105.9265086 112.99112584 119.3891666 125.0745167 130.06614193\n", + " 134.42085308 105.48424091 169.40901167 174.51469037 176.30215943\n", + " 177.21090794 177.76079422 178.12927502 178.39338736 134.42085308\n", + " 138.69611239 143.61480744 149.24344747 155.61405077 162.69499667\n", + " 170.36296391 178.39338736 90.48535945 90.59424595 90.76505154\n", + " 91.07156688 91.78204394 95.23155859 93.89518731 103.41200836\n", + " 112.23547382 120.07805375 126.85210045 132.60955299 157.76630729\n", + " 173.33036525 176.09473451 177.23920333 177.86448301 178.25846094\n", + " 136.19687489 141.86022321 148.55920823 156.36843482 165.22645267\n", + " 174.86312285 90.45578538 90.45578538 178.36484692 178.36484692\n", + " 94.14397512 104.23659596 113.5079539 121.64257424 128.57141019\n", + " 134.38353176 95.05856666 107.21909912 117.98189812 126.96805941\n", + " 134.24672537 140.08615622 96.48795214 111.70632897 124.31008611\n", + " 134.03082213 141.36316306 146.92239982 99.03197846 119.08696476\n", + " 133.63934958 143.48868891 150.22824427 155.00803043 104.7802641\n", + " 132.71160718 147.70838425 155.95659867 160.97729932 164.30745367\n", + " 127.76858297 159.74564279 167.84877649 171.35573132 173.29833797\n", + " 174.52977301]\n", + "DEBUG:root:cartToSphere: vec: [[ 0.00114566 -0.20812604 0.97810134]\n", + " [ 0.00115565 -0.1806373 0.9835491 ]\n", + " [ 0.00116422 -0.15245726 0.98830938]\n", + " [ 0.00117136 -0.12369032 0.99232018]\n", + " [ 0.00117701 -0.09444319 0.99552956]\n", + " [ 0.00118116 -0.06482624 0.99789587]\n", + " [ 0.00118376 -0.03495355 0.99938824]\n", + " [ 0.00118481 -0.00494229 0.99998708]\n", + " [ 0.00114566 -0.20812604 0.97810134]\n", + " [ 0.03017404 -0.20797994 0.97766757]\n", + " [ 0.05908469 -0.20756351 0.97643555]\n", + " [ 0.08776498 -0.20687811 0.97442227]\n", + " [ 0.11610332 -0.20592557 0.97165564]\n", + " [ 0.14398904 -0.20470759 0.96817455]\n", + " [ 0.17131174 -0.20322504 0.96402898]\n", + " [ 0.19796003 -0.20147731 0.95928031]\n", + " [ 0.00118481 -0.00494229 0.99998708]\n", + " [ 0.03120455 -0.00493875 0.99950082]\n", + " [ 0.06110052 -0.0049287 0.99811945]\n", + " [ 0.09075528 -0.00491221 0.99586111]\n", + " [ 0.1200543 -0.00488939 0.99275529]\n", + " [ 0.14888674 -0.0048604 0.98884231]\n", + " [ 0.17714546 -0.00482538 0.98417285]\n", + " [ 0.20472589 -0.00478446 0.97880765]\n", + " [ 0.19796003 -0.20147731 0.95928031]\n", + " [ 0.19971011 -0.17488831 0.96412134]\n", + " [ 0.20119978 -0.14761103 0.96836441]\n", + " [ 0.20242973 -0.11975687 0.97194676]\n", + " [ 0.20339908 -0.09143612 0.97481703]\n", + " [ 0.20410611 -0.06275929 0.97693499]\n", + " [ 0.20454887 -0.03383788 0.97827131]\n", + " [ 0.20472589 -0.00478446 0.97880765]\n", + " [ 0.00124992 -0.19623245 0.98055661]\n", + " [ 0.00126219 -0.16206424 0.9867794 ]\n", + " [ 0.00127213 -0.12696122 0.99190687]\n", + " [ 0.00127966 -0.09111882 0.99583921]\n", + " [ 0.00128472 -0.05474021 0.9984998 ]\n", + " [ 0.00128725 -0.01803675 0.9998365 ]\n", + " [ 0.01380981 -0.20800294 0.97803071]\n", + " [ 0.04932315 -0.20764209 0.97696059]\n", + " [ 0.08454761 -0.20687664 0.97470701]\n", + " [ 0.11927732 -0.20570979 0.97131684]\n", + " [ 0.15330846 -0.20414458 0.96686168]\n", + " [ 0.18643745 -0.20218204 0.96143824]\n", + " [ 0.01428113 -0.00504426 0.9998853 ]\n", + " [ 0.05100494 -0.00503536 0.99868571]\n", + " [ 0.08742589 -0.00501654 0.9961584 ]\n", + " [ 0.12333185 -0.004988 0.99235295]\n", + " [ 0.15851879 -0.00495001 0.98734355]\n", + " [ 0.19279062 -0.00490286 0.98122767]\n", + " [ 0.19866498 -0.1899823 0.96147748]\n", + " [ 0.20063357 -0.15691665 0.96701775]\n", + " [ 0.20221208 -0.12292805 0.97159609]\n", + " [ 0.20339952 -0.08821992 0.97511327]\n", + " [ 0.20419277 -0.05299579 0.97749515]\n", + " [ 0.20458843 -0.01746139 0.97869233]\n", + " [ 0.00124504 -0.2080333 0.97812095]\n", + " [ 0.00124504 -0.2080333 0.97812095]\n", + " [ 0.2046327 -0.00488406 0.97882665]\n", + " [ 0.2046327 -0.00488406 0.97882665]\n", + " [ 0.01386393 -0.19620382 0.98046512]\n", + " [ 0.04951642 -0.19586344 0.97938023]\n", + " [ 0.08487904 -0.1951417 0.97709532]\n", + " [ 0.1197456 -0.19404219 0.97365734]\n", + " [ 0.15391263 -0.19256861 0.96913788]\n", + " [ 0.18717755 -0.19072284 0.96363342]\n", + " [ 0.01400003 -0.16204052 0.98668479]\n", + " [ 0.0500023 -0.16175873 0.98556272]\n", + " [ 0.08571147 -0.16116182 0.98319907]\n", + " [ 0.12092013 -0.16025398 0.97964125]\n", + " [ 0.15542529 -0.15904007 0.97496115]\n", + " [ 0.1890269 -0.15752379 0.96925491]\n", + " [ 0.01411023 -0.12694255 0.9918097 ]\n", + " [ 0.05039551 -0.12672084 0.99065742]\n", + " [ 0.08638432 -0.12625153 0.98822988]\n", + " [ 0.12186779 -0.1255387 0.98457518]\n", + " [ 0.15664287 -0.12458735 0.97976579]\n", + " [ 0.19051132 -0.12340188 0.97389805]\n", + " [ 0.01419378 -0.09110536 0.9957401 ]\n", + " [ 0.0506935 -0.09094551 0.99456477]\n", + " [ 0.08689379 -0.09060732 0.9920886 ]\n", + " [ 0.12258434 -0.09009413 0.98836032]\n", + " [ 0.15756175 -0.08941017 0.98345316]\n", + " [ 0.19162897 -0.08855947 0.97746384]\n", + " [ 0.0142499 -0.05473209 0.99839939]\n", + " [ 0.05089361 -0.05463571 0.99720849]\n", + " [ 0.08723571 -0.05443186 0.9946995 ]\n", + " [ 0.12306478 -0.05412272 0.99092169]\n", + " [ 0.15817704 -0.05371108 0.98594885]\n", + " [ 0.19237609 -0.05319971 0.97987817]\n", + " [ 0.01427798 -0.01803407 0.99973542]\n", + " [ 0.05099373 -0.01800225 0.99853671]\n", + " [ 0.08740674 -0.01793496 0.99601124]\n", + " [ 0.12330495 -0.01783294 0.99220858]\n", + " [ 0.15848438 -0.01769716 0.98720287]\n", + " [ 0.1927489 -0.01752858 0.98109154]]\n", + "DEBUG:root:radec2pix: lat: [77.93541901 79.53990642 81.17639652 82.83971343 84.5247522 86.22632371\n", + " 87.93883494 89.6479978 77.93541901 77.81390272 77.48107187 76.95718255\n", + " 76.27047293 75.45239232 74.53398915 73.54392335 89.6479978 88.15433501\n", + " 86.45486555 84.75631331 83.07112985 81.40595581 79.76638457 78.15778269\n", + " 73.54392335 74.55657104 75.50172983 76.35064507 77.07169654 77.63217256\n", + " 78.00180643 78.15778269 78.63066146 80.61929653 82.650836 84.71585314\n", + " 86.80474047 88.90593385 77.91466044 77.62156704 77.02994397 76.1887385\n", + " 75.15547704 73.98639339 89.08782254 87.03029774 84.94699254 82.88191704\n", + " 80.84778676 78.85482091 73.9956629 75.19522506 76.26518392 77.14846305\n", + " 77.78520091 78.12246539 77.9408027 77.9408027 78.1630712 78.1630712\n", + " 78.60257643 78.28825427 77.65661779 76.76410296 75.67504453 74.45024854\n", + " 80.58418271 80.19408276 79.42435182 78.36269898 77.09829541 75.70590081\n", + " 82.60493805 82.10218621 81.14204779 79.86827274 78.40301429 76.83279998\n", + " 84.65101194 83.96303088 82.73111849 81.1974567 79.51499711 77.7695032\n", + " 86.69730834 85.65959593 84.04717305 82.22861822 80.34304005 78.44927716\n", + " 88.6217931 86.8566554 84.8442257 82.80989579 80.79300228 78.81115773]\n", + "DEBUG:root:radec2pix: lng: [270.31539085 270.36655189 270.43752447 270.542579 270.71402077\n", + " 271.04383538 271.93968007 283.48101478 270.31539085 278.25496108\n", + " 285.88944585 292.98836581 299.41482725 305.12212741 310.12974078\n", + " 314.49549071 283.48101478 351.00638008 355.38819591 356.90183998\n", + " 357.66783206 358.13024629 358.43966874 358.66123705 314.49549071\n", + " 318.7910165 323.73421549 329.3915583 335.79415496 342.90819266\n", + " 350.6068072 358.66123705 270.36494598 270.44622312 270.57407396\n", + " 270.80460183 271.34445266 274.08218667 273.79842993 283.36234739\n", + " 292.22915231 300.10657084 306.9058095 312.67997848 340.54617186\n", + " 354.36185807 356.71594406 357.68400903 358.21142556 358.54322592\n", + " 316.27981968 321.97083668 328.70389405 336.55230838 345.45057848\n", + " 355.12169333 270.34290102 270.34290102 358.63275532 358.63275532\n", + " 274.04185073 284.1877247 293.50716352 301.67919787 308.63398936\n", + " 314.46249394 274.93799638 287.17724528 298.00560006 307.03649051\n", + " 314.34141513 320.19418356 276.34264386 291.68718176 304.38086955\n", + " 314.14993264 321.50269119 327.06723776 278.85521862 299.13552131\n", + " 313.8014816 323.6857401 330.42677291 335.19643967 284.59338686\n", + " 312.96912569 328.03736148 336.26056332 341.24440919 344.5417427\n", + " 308.36945368 340.55550723 348.40444495 351.77067409 353.62846105\n", + " 354.80381648]\n", + "DEBUG:root:radec2pix: camVec: [[0.20658103 0.20838989 0.20993522 0.21121099 0.21221385 0.21294172\n", + " 0.21339307 0.21356684 0.20658103 0.18015754 0.1530338 0.12531307\n", + " 0.09710338 0.06851504 0.03965966 0.01064976 0.21356684 0.18621882\n", + " 0.15815829 0.12949192 0.10032565 0.07076705 0.04092766 0.01092393\n", + " 0.01064976 0.01072986 0.01079662 0.01085001 0.01088978 0.0109156\n", + " 0.01092708 0.01092393 0.20731213 0.20935192 0.21098964 0.21221814\n", + " 0.21303349 0.21343308 0.19515895 0.16228971 0.12847052 0.09389848\n", + " 0.05877657 0.02331064 0.20173739 0.16772694 0.13275239 0.09700904\n", + " 0.06069518 0.02401827 0.01078606 0.01087623 0.01094616 0.01099551\n", + " 0.01102363 0.01102984 0.2064986 0.2064986 0.01102671 0.01102671\n", + " 0.19592714 0.16292559 0.1289709 0.09426176 0.0590016 0.02339654\n", + " 0.19785166 0.16451646 0.13022261 0.09517088 0.05956467 0.02361044\n", + " 0.19939573 0.16579218 0.13122742 0.09590173 0.06001727 0.02378066\n", + " 0.20055377 0.16674959 0.13198281 0.09645193 0.06035751 0.0239064\n", + " 0.20132229 0.16738526 0.13248471 0.09681723 0.06058199 0.02398618\n", + " 0.20169858 0.16769559 0.13272857 0.09699294 0.06068709 0.02401844]\n", + " [0.20098859 0.17447006 0.14727238 0.11949936 0.09125926 0.06266255\n", + " 0.03382097 0.00484709 0.20098859 0.20282418 0.20440426 0.20572264\n", + " 0.20677589 0.2075618 0.2080787 0.20832528 0.00484709 0.00490326\n", + " 0.00495363 0.00499813 0.0050366 0.00506881 0.00509451 0.00511348\n", + " 0.20832528 0.18083307 0.15264908 0.12387974 0.09463112 0.06501141\n", + " 0.0351331 0.00511348 0.18952259 0.15655094 0.12266162 0.08805229\n", + " 0.05292621 0.01748945 0.20172997 0.20380791 0.20549566 0.20678588\n", + " 0.20767444 0.20815839 0.00497187 0.00503783 0.00509482 0.00514259\n", + " 0.00518073 0.00520877 0.19643015 0.16225698 0.1271506 0.09130636\n", + " 0.0549237 0.01821176 0.20090587 0.20090587 0.00521618 0.00521618\n", + " 0.19029998 0.19225876 0.19384904 0.19506507 0.19590316 0.19636024\n", + " 0.15719218 0.15880644 0.16011755 0.16112232 0.16181718 0.1621981\n", + " 0.12316354 0.12442767 0.12545686 0.12624866 0.12679897 0.1271029\n", + " 0.08841323 0.08932369 0.09006766 0.09064294 0.0910454 0.09127018\n", + " 0.05314506 0.05369842 0.05415286 0.05450669 0.05475678 0.05489951\n", + " 0.0175654 0.01775879 0.01791986 0.01804791 0.01814173 0.01819993]\n", + " [0.9575635 0.96235848 0.9665599 0.97010815 0.97295274 0.97505345\n", + " 0.97638084 0.97691643 0.9575635 0.96249967 0.96685033 0.97055388\n", + " 0.97355774 0.97581955 0.97730771 0.97800162 0.97691643 0.98249606\n", + " 0.98740135 0.99156788 0.99494191 0.99747999 0.99914912 0.99992726\n", + " 0.97800162 0.98345527 0.98822148 0.99223792 0.99545284 0.99782482\n", + " 0.9993229 0.99992726 0.95974104 0.96522722 0.96976157 0.97324727\n", + " 0.97561035 0.97680113 0.95980102 0.96546589 0.97018908 0.97386995\n", + " 0.97643056 0.97781731 0.97942703 0.98582062 0.99113614 0.99527021\n", + " 0.9981429 0.99969795 0.98045849 0.98668859 0.99182302 0.99576214\n", + " 0.9984297 0.99977331 0.95759864 0.95759864 0.9999256 0.9999256\n", + " 0.96197634 0.96772508 0.97251687 0.97625014 0.97884665 0.98025265\n", + " 0.96754604 0.97350647 0.97847046 0.98233503 0.98502145 0.98647571\n", + " 0.97214818 0.97827946 0.98338189 0.98735208 0.99011108 0.99160442\n", + " 0.97568503 0.98194493 0.98715164 0.99120174 0.99401595 0.99553917\n", + " 0.97808228 0.98442808 0.98970464 0.99380856 0.99666018 0.99820374\n", + " 0.97929012 0.98567886 0.99099042 0.99512142 0.99799196 0.99954584]]\n", + "DEBUG:root:radec2pix: camVec Shape: (3, 96)\n", + "DEBUG:root:radec2pix: xyfp: [[-32.29046994 -31.71666141]\n", + " [-32.28860507 -27.33023323]\n", + " [-32.2867402 -22.94380505]\n", + " [-32.28487534 -18.55737688]\n", + " [-32.28301047 -14.1709487 ]\n", + " [-32.2811456 -9.78452053]\n", + " [-32.27928073 -5.39809235]\n", + " [-32.27741587 -1.01166418]\n", + " [-32.29046994 -31.71666141]\n", + " [-27.90404176 -31.71852627]\n", + " [-23.51761359 -31.72039114]\n", + " [-19.13118541 -31.722256 ]\n", + " [-14.74475724 -31.72412087]\n", + " [-10.35832906 -31.72598574]\n", + " [ -5.97190089 -31.72785061]\n", + " [ -1.58547272 -31.72971547]\n", + " [-32.27741587 -1.01166418]\n", + " [-27.8909877 -1.01352905]\n", + " [-23.50455952 -1.01539391]\n", + " [-19.11813134 -1.01725878]\n", + " [-14.73170317 -1.01912365]\n", + " [-10.345275 -1.02098851]\n", + " [ -5.95884682 -1.02285338]\n", + " [ -1.57241864 -1.02471825]\n", + " [ -1.58547272 -31.72971547]\n", + " [ -1.58360785 -27.3432873 ]\n", + " [ -1.58174298 -22.95685912]\n", + " [ -1.57987811 -18.57043094]\n", + " [ -1.57801325 -14.18400278]\n", + " [ -1.57614838 -9.7975746 ]\n", + " [ -1.57428351 -5.41114642]\n", + " [ -1.57241864 -1.02471825]\n", + " [-32.27465685 -29.80416795]\n", + " [-32.27237127 -24.42816844]\n", + " [-32.2700857 -19.05216893]\n", + " [-32.26780012 -13.67616941]\n", + " [-32.26551454 -8.3001699 ]\n", + " [-32.26322896 -2.92417038]\n", + " [-30.37796373 -31.70247449]\n", + " [-25.00196422 -31.70476008]\n", + " [-19.62596471 -31.70704565]\n", + " [-14.24996519 -31.70933123]\n", + " [ -8.87396568 -31.71161681]\n", + " [ -3.49796617 -31.71390239]\n", + " [-30.36492242 -1.02747727]\n", + " [-24.98892291 -1.02976285]\n", + " [-19.61292339 -1.03204842]\n", + " [-14.23692388 -1.034334 ]\n", + " [ -8.86092437 -1.03661958]\n", + " [ -3.48492485 -1.03890516]\n", + " [ -1.59965962 -29.81720927]\n", + " [ -1.59737405 -24.44120975]\n", + " [ -1.59508847 -19.06521024]\n", + " [ -1.59280289 -13.68921073]\n", + " [ -1.59051731 -8.31321121]\n", + " [ -1.58823174 -2.9372117 ]\n", + " [-32.27546357 -31.70166778]\n", + " [-32.27546357 -31.70166778]\n", + " [ -1.58742502 -1.03971187]\n", + " [ -1.58742502 -1.03971187]\n", + " [-30.37715702 -29.80497466]\n", + " [-25.00115751 -29.80726024]\n", + " [-19.625158 -29.80954582]\n", + " [-14.24915848 -29.8118314 ]\n", + " [ -8.87315897 -29.81411698]\n", + " [ -3.49715945 -29.81640256]\n", + " [-30.37487145 -24.42897515]\n", + " [-24.99887193 -24.43126073]\n", + " [-19.62287241 -24.43354631]\n", + " [-14.2468729 -24.43583188]\n", + " [ -8.87087339 -24.43811746]\n", + " [ -3.49487388 -24.44040305]\n", + " [-30.37258587 -19.05297564]\n", + " [-24.99658635 -19.05526122]\n", + " [-19.62058684 -19.05754679]\n", + " [-14.24458732 -19.05983237]\n", + " [ -8.86858781 -19.06211795]\n", + " [ -3.4925883 -19.06440353]\n", + " [-30.37030029 -13.67697612]\n", + " [-24.99430077 -13.6792617 ]\n", + " [-19.61830126 -13.68154728]\n", + " [-14.24230175 -13.68383286]\n", + " [ -8.86630223 -13.68611844]\n", + " [ -3.49030272 -13.68840401]\n", + " [-30.36801471 -8.30097661]\n", + " [-24.9920152 -8.30326219]\n", + " [-19.61601568 -8.30554776]\n", + " [-14.24001617 -8.30783335]\n", + " [ -8.86401666 -8.31011893]\n", + " [ -3.48801714 -8.3124045 ]\n", + " [-30.36572914 -2.9249771 ]\n", + " [-24.98972962 -2.92726267]\n", + " [-19.6137301 -2.92954825]\n", + " [-14.23773059 -2.93183383]\n", + " [ -8.86173108 -2.93411941]\n", + " [ -3.48573156 -2.93640499]]\n", + "DEBUG:root:radec2pix: xyfp Shape: (96, 2)\n", + "DEBUG:root:radec2pix: lat: [77.98725933 79.59290201 81.23038669 82.89455027 84.58030503 86.2825061\n", + " 87.99575217 89.70880341 77.98725933 77.86842442 77.53699463 77.01330297\n", + " 76.32579246 75.50615888 74.58567435 73.59317035 89.70880341 88.18955545\n", + " 86.48562338 84.78529769 83.09901991 81.43298752 79.79264001 78.18327445\n", + " 73.59317035 74.60559591 75.5496878 76.3965297 77.11433871 77.67029216\n", + " 78.03413945 78.18327445 78.68303826 80.67298244 82.70560399 84.77150761\n", + " 86.86118368 88.96388538 77.96782959 77.67716345 77.0861016 76.24391961\n", + " 75.20859077 74.03673952 89.13217661 87.06213831 84.97619114 82.90974635\n", + " 80.87458441 78.88067366 74.04491662 75.24365824 76.31136856 77.19067025\n", + " 77.8215059 78.15105181 77.99265855 77.99265855 78.18859038 78.18859038\n", + " 78.65635764 78.34456159 77.7133866 76.81969543 75.7283623 74.50063549\n", + " 80.63959245 80.25225497 79.48245907 78.41882236 77.15141692 75.75558792\n", + " 82.66188886 82.16191851 81.200562 79.92354945 78.45441908 76.88031771\n", + " 84.70956295 84.0235478 82.78807615 81.24955295 79.56251519 77.81300601\n", + " 86.75780924 85.71788826 84.09815339 82.27374035 80.38380312 78.4866344\n", + " 88.68197076 86.90004071 84.8808155 82.84304634 80.82390053 78.84030268]\n", + "DEBUG:root:optics_fp: rtanth: [31.36436077 26.97807037 22.59183361 18.20568928 13.8197254 9.43419362\n", + " 5.05021974 0.69781153 31.36436077 31.70156673 32.63030877 34.10229142\n", + " 36.05103355 38.40402676 41.09188526 44.05335752 0.69781153 4.66402697\n", + " 9.02778296 13.40634529 17.78878395 22.17280059 26.55761376 30.94288484\n", + " 44.05335752 41.04621131 38.30621526 35.89459992 33.88155828 32.34160155\n", + " 31.34453543 30.94288484 29.45203736 24.07626653 18.70062748 13.32527965\n", + " 7.95081375 2.58274138 31.42169962 32.23771351 33.8971959 36.28460223\n", + " 39.26738572 42.72102005 2.2467047 7.54947995 12.91295338 18.28378612\n", + " 23.65696634 29.03119064 42.70202201 39.18809499 36.13521339 33.66902518\n", + " 31.92578297 31.02758019 31.34947523 31.34947523 30.92821126 30.92821126\n", + " 29.52890302 30.39577404 32.15047118 34.65840831 37.76983569 41.34874196\n", + " 24.17023416 25.22195839 27.31111317 30.22332497 33.74617895 37.70891894\n", + " 18.82145258 20.1542562 22.71439544 26.14376082 30.14716324 34.52548949\n", + " 13.49432055 15.2984853 18.54166578 22.61295734 27.14223759 31.93523187\n", + " 8.23098104 10.94056736 15.14746618 19.92481371 24.9470123 30.09171641\n", + " 3.34726194 7.94676841 13.14917661 18.45137705 23.78673027 29.13702987]\n", + "DEBUG:root:mm_to_pix: fitpx: [[0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]]\n", + "DEBUG:root:mm_to_pix: fitpx.shape: (96, 2)\n", + "DEBUG:root:optics_fp: cphi: [0.00736113 0.00855795 0.01021949 0.01268159 0.01670634 0.02447236\n", + " 0.04571623 0.33085868 0.00736113 0.14564913 0.27593163 0.39264701\n", + " 0.49309519 0.57710146 0.64609955 0.70223653 0.33085868 0.98998261\n", + " 0.99733613 0.99879292 0.99931459 0.99955889 0.99969254 0.99977352\n", + " 0.70223653 0.7536841 0.80759419 0.86185323 0.91305945 0.9565351\n", + " 0.98696237 0.99977352 0.00834839 0.01021242 0.01314806 0.01845192\n", + " 0.03092476 0.09520001 0.06821327 0.23324784 0.38042607 0.50355732\n", + " 0.60221419 0.67936994 0.95400922 0.99601258 0.99863886 0.99932131\n", + " 0.99959465 0.99973085 0.72410803 0.78903751 0.85569931 0.91837755\n", + " 0.96852369 0.99656102 0.0078431 0.0078431 0.99976286 0.99976286\n", + " 0.07258573 0.24738232 0.40109449 0.52718454 0.6260916 0.70191681\n", + " 0.08867837 0.2981282 0.47216592 0.60454556 0.70074236 0.76966876\n", + " 0.11387947 0.37309127 0.56771826 0.69888097 0.78439808 0.84063622\n", + " 0.15883549 0.49151121 0.69548104 0.80800475 0.87123904 0.90881999\n", + " 0.26040359 0.68729315 0.85132238 0.9170162 0.94790417 0.96449723\n", + " 0.6403374 0.94621821 0.98069844 0.99024463 0.99414155 0.99609937]\n", + "DEBUG:root:cartToSphere: vec: [[0.20622014 0.20255556 0.95731108]\n", + " [0.20805053 0.17610143 0.96213474]\n", + " [0.20961035 0.14895462 0.96637261]\n", + " [0.210899 0.12122494 0.96996192]\n", + " [0.21191543 0.09302239 0.9728508 ]\n", + " [0.21265818 0.06445739 0.97499833]\n", + " [0.21312568 0.03564119 0.97637449]\n", + " [0.21331667 0.00668594 0.97696023]\n", + " [0.20622014 0.20255556 0.95731108]\n", + " [0.17982824 0.20441077 0.96222557]\n", + " [0.1527297 0.20600074 0.96655954]\n", + " [0.12503427 0.2073248 0.97024886]\n", + " [0.09685185 0.20838186 0.97324032]\n", + " [0.06829276 0.20917033 0.97549161]\n", + " [0.03946812 0.20968847 0.97697135]\n", + " [0.01049004 0.20993479 0.97765911]\n", + " [0.21331667 0.00668594 0.97696023]\n", + " [0.18597713 0.00675821 0.98253083]\n", + " [0.1579279 0.00682246 0.98742708]\n", + " [0.12927353 0.00687853 0.99158512]\n", + " [0.10011961 0.00692617 0.9949513 ]\n", + " [0.07057467 0.0069651 0.99748218]\n", + " [0.04075124 0.00699507 0.99914484]\n", + " [0.01076573 0.00701584 0.99991744]\n", + " [0.01049004 0.20993479 0.97765911]\n", + " [0.01056977 0.18250233 0.9831486 ]\n", + " [0.01063642 0.15437326 0.98795534]\n", + " [0.01068985 0.12565215 0.99201677]\n", + " [0.01072978 0.09644485 0.99528049]\n", + " [0.01075592 0.06686038 0.99770436]\n", + " [0.01076796 0.03701177 0.99925681]\n", + " [0.01076573 0.00701584 0.99991744]\n", + " [0.20696213 0.19112005 0.95949977]\n", + " [0.20902258 0.15821703 0.96502691]\n", + " [0.21067623 0.12438266 0.96961048]\n", + " [0.21192136 0.08981934 0.97315046]\n", + " [0.21275532 0.05473042 0.9755715 ]\n", + " [0.21317532 0.0193211 0.9768229 ]\n", + " [0.1948134 0.20330747 0.95953833]\n", + " [0.16197729 0.20540191 0.96518051]\n", + " [0.1281888 0.20709749 0.96988569]\n", + " [0.09365018 0.2083924 0.97355136]\n", + " [0.05856456 0.20928375 0.97609964]\n", + " [0.02313694 0.20976841 0.97747731]\n", + " [0.20149034 0.00681796 0.97946677]\n", + " [0.16749252 0.00690216 0.98584919]\n", + " [0.1325326 0.00697398 0.99115411]\n", + " [0.09680441 0.00703299 0.99527858]\n", + " [0.0605079 0.00707868 0.99814262]\n", + " [0.02385188 0.00711058 0.99969022]\n", + " [0.01062602 0.19806614 0.98013106]\n", + " [0.01071595 0.16396327 0.98640824]\n", + " [0.0107859 0.12891793 0.99159661]\n", + " [0.01083545 0.09312436 0.99559552]\n", + " [0.01086402 0.05678335 0.99832741]\n", + " [0.01087112 0.02010461 0.99973878]\n", + " [0.20613793 0.2024732 0.95734621]\n", + " [0.20613793 0.2024732 0.95734621]\n", + " [0.01086844 0.00711848 0.9999156 ]\n", + " [0.01086844 0.00711848 0.9999156 ]\n", + " [0.19558949 0.19190537 0.96172609]\n", + " [0.1626169 0.19387759 0.96745399]\n", + " [0.12869151 0.19547539 0.9722283 ]\n", + " [0.09401511 0.1966967 0.9759465 ]\n", + " [0.05879055 0.19753824 0.97853069]\n", + " [0.02322296 0.19799645 0.9799276 ]\n", + " [0.19753009 0.15886347 0.96733875]\n", + " [0.16421774 0.1604891 0.97328094]\n", + " [0.12995114 0.1618095 0.97822819]\n", + " [0.09493033 0.16282181 0.98207805]\n", + " [0.05935726 0.16352163 0.98475245]\n", + " [0.02343764 0.16390447 0.98619775]\n", + " [0.19908829 0.12488974 0.97199095]\n", + " [0.16550536 0.12616714 0.97810522]\n", + " [0.13096617 0.12720791 0.98319175]\n", + " [0.09566871 0.12800859 0.98714806]\n", + " [0.05981412 0.1285643 0.9898957 ]\n", + " [0.02360896 0.12887024 0.99138039]\n", + " [0.20026215 0.09018615 0.97558266]\n", + " [0.16647694 0.09111203 0.98182688]\n", + " [0.13173312 0.09186896 0.98701899]\n", + " [0.09622682 0.09245358 0.99105637]\n", + " [0.06015857 0.0928614 0.99386 ]\n", + " [0.02373584 0.09308815 0.99537491]\n", + " [0.20104857 0.05495583 0.97803851]\n", + " [0.16712825 0.05552612 0.98437036]\n", + " [0.13224724 0.05599434 0.98963392]\n", + " [0.09660024 0.05635799 0.99372641]\n", + " [0.06038739 0.05661388 0.99656823]\n", + " [0.02381698 0.05675899 0.99810379]\n", + " [0.20144435 0.01940412 0.97930774]\n", + " [0.16745515 0.01961547 0.98568454]\n", + " [0.13250401 0.01979108 0.99098486]\n", + " [0.09678486 0.01992994 0.99510577]\n", + " [0.06049766 0.02003078 0.99796733]\n", + " [0.02385117 0.02009239 0.99951359]]\n", + "DEBUG:root:cartToSphere: vec: [[0.20658103 0.20098859 0.9575635 ]\n", + " [0.20838989 0.17447006 0.96235848]\n", + " [0.20993522 0.14727238 0.9665599 ]\n", + " [0.21121099 0.11949936 0.97010815]\n", + " [0.21221385 0.09125926 0.97295274]\n", + " [0.21294172 0.06266255 0.97505345]\n", + " [0.21339307 0.03382097 0.97638084]\n", + " [0.21356684 0.00484709 0.97691643]\n", + " [0.20658103 0.20098859 0.9575635 ]\n", + " [0.18015754 0.20282418 0.96249967]\n", + " [0.1530338 0.20440426 0.96685033]\n", + " [0.12531307 0.20572264 0.97055388]\n", + " [0.09710338 0.20677589 0.97355774]\n", + " [0.06851504 0.2075618 0.97581955]\n", + " [0.03965966 0.2080787 0.97730771]\n", + " [0.01064976 0.20832528 0.97800162]\n", + " [0.21356684 0.00484709 0.97691643]\n", + " [0.18621882 0.00490326 0.98249606]\n", + " [0.15815829 0.00495363 0.98740135]\n", + " [0.12949192 0.00499813 0.99156788]\n", + " [0.10032565 0.0050366 0.99494191]\n", + " [0.07076705 0.00506881 0.99747999]\n", + " [0.04092766 0.00509451 0.99914912]\n", + " [0.01092393 0.00511348 0.99992726]\n", + " [0.01064976 0.20832528 0.97800162]\n", + " [0.01072986 0.18083307 0.98345527]\n", + " [0.01079662 0.15264908 0.98822148]\n", + " [0.01085001 0.12387974 0.99223792]\n", + " [0.01088978 0.09463112 0.99545284]\n", + " [0.0109156 0.06501141 0.99782482]\n", + " [0.01092708 0.0351331 0.9993229 ]\n", + " [0.01092393 0.00511348 0.99992726]\n", + " [0.20731213 0.18952259 0.95974104]\n", + " [0.20935192 0.15655094 0.96522722]\n", + " [0.21098964 0.12266162 0.96976157]\n", + " [0.21221814 0.08805229 0.97324727]\n", + " [0.21303349 0.05292621 0.97561035]\n", + " [0.21343308 0.01748945 0.97680113]\n", + " [0.19515895 0.20172997 0.95980102]\n", + " [0.16228971 0.20380791 0.96546589]\n", + " [0.12847052 0.20549566 0.97018908]\n", + " [0.09389848 0.20678588 0.97386995]\n", + " [0.05877657 0.20767444 0.97643056]\n", + " [0.02331064 0.20815839 0.97781731]\n", + " [0.20173739 0.00497187 0.97942703]\n", + " [0.16772694 0.00503783 0.98582062]\n", + " [0.13275239 0.00509482 0.99113614]\n", + " [0.09700904 0.00514259 0.99527021]\n", + " [0.06069518 0.00518073 0.9981429 ]\n", + " [0.02401827 0.00520877 0.99969795]\n", + " [0.01078606 0.19643015 0.98045849]\n", + " [0.01087623 0.16225698 0.98668859]\n", + " [0.01094616 0.1271506 0.99182302]\n", + " [0.01099551 0.09130636 0.99576214]\n", + " [0.01102363 0.0549237 0.9984297 ]\n", + " [0.01102984 0.01821176 0.99977331]\n", + " [0.2064986 0.20090587 0.95759864]\n", + " [0.2064986 0.20090587 0.95759864]\n", + " [0.01102671 0.00521618 0.9999256 ]\n", + " [0.01102671 0.00521618 0.9999256 ]\n", + " [0.19592714 0.19029998 0.96197634]\n", + " [0.16292559 0.19225876 0.96772508]\n", + " [0.1289709 0.19384904 0.97251687]\n", + " [0.09426176 0.19506507 0.97625014]\n", + " [0.0590016 0.19590316 0.97884665]\n", + " [0.02339654 0.19636024 0.98025265]\n", + " [0.19785166 0.15719218 0.96754604]\n", + " [0.16451646 0.15880644 0.97350647]\n", + " [0.13022261 0.16011755 0.97847046]\n", + " [0.09517088 0.16112232 0.98233503]\n", + " [0.05956467 0.16181718 0.98502145]\n", + " [0.02361044 0.1621981 0.98647571]\n", + " [0.19939573 0.12316354 0.97214818]\n", + " [0.16579218 0.12442767 0.97827946]\n", + " [0.13122742 0.12545686 0.98338189]\n", + " [0.09590173 0.12624866 0.98735208]\n", + " [0.06001727 0.12679897 0.99011108]\n", + " [0.02378066 0.1271029 0.99160442]\n", + " [0.20055377 0.08841323 0.97568503]\n", + " [0.16674959 0.08932369 0.98194493]\n", + " [0.13198281 0.09006766 0.98715164]\n", + " [0.09645193 0.09064294 0.99120174]\n", + " [0.06035751 0.0910454 0.99401595]\n", + " [0.0239064 0.09127018 0.99553917]\n", + " [0.20132229 0.05314506 0.97808228]\n", + " [0.16738526 0.05369842 0.98442808]\n", + " [0.13248471 0.05415286 0.98970464]\n", + " [0.09681723 0.05450669 0.99380856]\n", + " [0.06058199 0.05475678 0.99666018]\n", + " [0.02398618 0.05489951 0.99820374]\n", + " [0.20169858 0.0175654 0.97929012]\n", + " [0.16769559 0.01775879 0.98567886]\n", + " [0.13272857 0.01791986 0.99099042]\n", + " [0.09699294 0.01804791 0.99512142]\n", + " [0.06068709 0.01814173 0.99799196]\n", + " [0.02401844 0.01819993 0.99954584]]\n", + "DEBUG:root:optics_fp: sphi: [-0.99997291 -0.99996338 -0.99994778 -0.99991959 -0.99986044 -0.99970051\n", + " -0.99895447 -0.94368031 -0.99997291 -0.98933631 -0.96117727 -0.91968926\n", + " -0.86997536 -0.81667246 -0.76325315 -0.71194371 -0.94368031 -0.14118936\n", + " -0.07294272 -0.04911935 -0.03701833 -0.02969904 -0.02479556 -0.0212815\n", + " -0.71194371 -0.65723685 -0.5897386 -0.50715777 -0.40782648 -0.29161723\n", + " -0.16095117 -0.0212815 -0.99996515 -0.99994785 -0.99991356 -0.99982975\n", + " -0.99952172 -0.99545817 -0.99767076 -0.97241732 -0.92481134 -0.86396182\n", + " -0.79833456 -0.73379594 -0.29977727 -0.0892129 -0.05215778 -0.03683652\n", + " -0.02846988 -0.02319957 -0.68968657 -0.61434502 -0.51747338 -0.39570528\n", + " -0.24892141 -0.08286212 -0.99996924 -0.99996924 -0.02177659 -0.02177659\n", + " -0.99736218 -0.96891795 -0.91603668 -0.84975082 -0.77974951 -0.71225894\n", + " -0.99606031 -0.95452584 -0.88150969 -0.79657056 -0.71341443 -0.63844342\n", + " -0.99349457 -0.92779465 -0.82322292 -0.71523799 -0.62025773 -0.54160017\n", + " -0.98730506 -0.87087125 -0.71854445 -0.58917597 -0.49085898 -0.41718848\n", + " -0.96549986 -0.72638015 -0.52464293 -0.39884995 -0.31855562 -0.26409298\n", + " -0.76809376 -0.32352912 -0.19552639 -0.13933979 -0.10808594 -0.08823861]\n", + "DEBUG:root:optics_fp: rtanth: [31.57034978 27.18406789 22.79784246 18.41171382 14.02577275 9.64027533\n", + " 5.25633205 0.89702627 31.57034978 31.90657516 32.83068082 34.29517719\n", + " 36.2346004 38.57738799 41.25487818 44.20629586 0.89702627 4.70608217\n", + " 9.05379887 13.42672148 17.80628925 22.18856766 26.57221564 30.95665138\n", + " 44.20629586 41.18838618 38.43502607 36.00695508 33.97398873 32.41056182\n", + " 31.38691822 30.95665138 29.65803336 24.28227528 18.90665475 13.53133577\n", + " 8.15691443 2.78858575 31.62774376 32.44001712 34.0910252 36.46702674\n", + " 39.4372011 42.87825061 2.32483604 7.57927428 12.93401278 18.30122199\n", + " 23.67242106 29.04539658 42.85058957 39.32178756 36.24963004 33.75901556\n", + " 31.98608036 31.05398999 31.55546766 31.55546766 30.94207994 30.94207994\n", + " 29.73492188 30.59748544 32.34268701 34.83813202 37.93605456 41.50175634\n", + " 24.3761262 25.42117355 27.49689714 30.39285101 33.89947174 37.84740055\n", + " 19.02703944 20.34867971 22.88912523 26.29749216 30.28212156 34.64474606\n", + " 13.69903951 15.48238416 18.69618965 22.7418897 27.2514649 32.02957826\n", + " 8.4321936 11.09695565 15.26386952 20.01578758 25.02160156 30.1551337\n", + " 3.51323872 8.02392562 13.19949508 18.48980017 23.81851176 29.16458548]\n", + "DEBUG:root:radec2pix: lng: [44.21386846 39.93704685 35.05017674 29.50039724 23.26936887 16.39762201\n", + " 9.00597869 1.30015678 44.21386846 48.38707907 53.17846261 58.652901\n", + " 64.84492629 71.73221904 79.20889503 87.07353952 1.30015678 1.50828626\n", + " 1.79395925 2.21040578 2.87397756 4.09690845 7.09544794 25.08421915\n", + " 87.07353952 86.60429547 85.95429853 84.99452258 83.43549808 80.46877478\n", + " 72.72327889 25.08421915 42.4332296 36.78871515 30.1721461 22.534249\n", + " 13.95213213 4.68455031 45.9485209 51.4701262 57.98745342 65.57788622\n", + " 74.19728483 83.61034654 1.41178444 1.72041252 2.19784005 3.03449456\n", + " 4.87874528 12.23608945 86.85702241 86.16514834 85.07964235 83.13325955\n", + " 78.65106614 58.79906907 44.21351009 44.21351009 25.31647093 25.31647093\n", + " 44.16528338 49.72110165 56.36353517 64.20866184 73.23888739 83.20517984\n", + " 38.4669715 43.98823734 50.87875671 59.43072848 69.79141059 81.71788613\n", + " 31.70295803 36.8883708 43.71214181 52.77876171 64.67058062 79.40261268\n", + " 23.79006954 28.17687017 34.3103939 43.22163096 56.45806862 75.32225144\n", + " 14.78760738 17.78662299 22.23218915 29.3788791 42.10872179 66.39896872\n", + " 4.97718101 6.0450351 7.68908472 10.5407344 16.64345121 37.15297361]\n", + "DEBUG:root:radec2pix: xyfp: [[-32.29046994 -31.71666141]\n", + " [-32.28860507 -27.33023323]\n", + " [-32.2867402 -22.94380505]\n", + " [-32.28487534 -18.55737688]\n", + " [-32.28301047 -14.1709487 ]\n", + " [-32.2811456 -9.78452053]\n", + " [-32.27928073 -5.39809235]\n", + " [-32.27741587 -1.01166418]\n", + " [-32.29046994 -31.71666141]\n", + " [-27.90404176 -31.71852627]\n", + " [-23.51761359 -31.72039114]\n", + " [-19.13118541 -31.722256 ]\n", + " [-14.74475724 -31.72412087]\n", + " [-10.35832906 -31.72598574]\n", + " [ -5.97190089 -31.72785061]\n", + " [ -1.58547272 -31.72971547]\n", + " [-32.27741587 -1.01166418]\n", + " [-27.8909877 -1.01352905]\n", + " [-23.50455952 -1.01539391]\n", + " [-19.11813134 -1.01725878]\n", + " [-14.73170317 -1.01912365]\n", + " [-10.345275 -1.02098851]\n", + " [ -5.95884682 -1.02285338]\n", + " [ -1.57241864 -1.02471825]\n", + " [ -1.58547272 -31.72971547]\n", + " [ -1.58360785 -27.3432873 ]\n", + " [ -1.58174298 -22.95685912]\n", + " [ -1.57987811 -18.57043094]\n", + " [ -1.57801325 -14.18400278]\n", + " [ -1.57614838 -9.7975746 ]\n", + " [ -1.57428351 -5.41114642]\n", + " [ -1.57241864 -1.02471825]\n", + " [-32.27465685 -29.80416795]\n", + " [-32.27237127 -24.42816844]\n", + " [-32.2700857 -19.05216893]\n", + " [-32.26780012 -13.67616941]\n", + " [-32.26551454 -8.3001699 ]\n", + " [-32.26322896 -2.92417038]\n", + " [-30.37796373 -31.70247449]\n", + " [-25.00196422 -31.70476008]\n", + " [-19.62596471 -31.70704565]\n", + " [-14.24996519 -31.70933123]\n", + " [ -8.87396568 -31.71161681]\n", + " [ -3.49796617 -31.71390239]\n", + " [-30.36492242 -1.02747727]\n", + " [-24.98892291 -1.02976285]\n", + " [-19.61292339 -1.03204842]\n", + " [-14.23692388 -1.034334 ]\n", + " [ -8.86092437 -1.03661958]\n", + " [ -3.48492485 -1.03890516]\n", + " [ -1.59965962 -29.81720927]\n", + " [ -1.59737405 -24.44120975]\n", + " [ -1.59508847 -19.06521024]\n", + " [ -1.59280289 -13.68921073]\n", + " [ -1.59051731 -8.31321121]\n", + " [ -1.58823174 -2.9372117 ]\n", + " [-32.27546357 -31.70166778]\n", + " [-32.27546357 -31.70166778]\n", + " [ -1.58742502 -1.03971187]\n", + " [ -1.58742502 -1.03971187]\n", + " [-30.37715702 -29.80497466]\n", + " [-25.00115751 -29.80726024]\n", + " [-19.625158 -29.80954582]\n", + " [-14.24915848 -29.8118314 ]\n", + " [ -8.87315897 -29.81411698]\n", + " [ -3.49715945 -29.81640256]\n", + " [-30.37487145 -24.42897515]\n", + " [-24.99887193 -24.43126073]\n", + " [-19.62287241 -24.43354631]\n", + " [-14.2468729 -24.43583188]\n", + " [ -8.87087339 -24.43811746]\n", + " [ -3.49487388 -24.44040305]\n", + " [-30.37258587 -19.05297564]\n", + " [-24.99658635 -19.05526122]\n", + " [-19.62058684 -19.05754679]\n", + " [-14.24458732 -19.05983237]\n", + " [ -8.86858781 -19.06211795]\n", + " [ -3.4925883 -19.06440353]\n", + " [-30.37030029 -13.67697612]\n", + " [-24.99430077 -13.6792617 ]\n", + " [-19.61830126 -13.68154728]\n", + " [-14.24230175 -13.68383286]\n", + " [ -8.86630223 -13.68611844]\n", + " [ -3.49030272 -13.68840401]\n", + " [-30.36801471 -8.30097661]\n", + " [-24.9920152 -8.30326219]\n", + " [-19.61601568 -8.30554776]\n", + " [-14.24001617 -8.30783335]\n", + " [ -8.86401666 -8.31011893]\n", + " [ -3.48801714 -8.3124045 ]\n", + " [-30.36572914 -2.9249771 ]\n", + " [-24.98972962 -2.92726267]\n", + " [-19.6137301 -2.92954825]\n", + " [-14.23773059 -2.93183383]\n", + " [ -8.86173108 -2.93411941]\n", + " [ -3.48573156 -2.93640499]]\n", + "DEBUG:root:optics_fp: cphi: [-0.00747594 -0.00870042 -0.01039606 -0.01289954 -0.01696858 -0.02473916\n", + " -0.04546654 -0.26697332 -0.00747594 -0.14487442 -0.27440415 -0.39058855\n", + " -0.49073902 -0.57464131 -0.6436715 -0.69992333 -0.26697332 -0.98296427\n", + " -0.99542074 -0.99791805 -0.99881542 -0.99923641 -0.99946703 -0.99960689\n", + " -0.69992333 -0.75121935 -0.80504713 -0.85934793 -0.91078494 -0.95473483\n", + " -0.98588803 -0.99960689 -0.00847102 -0.01037136 -0.01335227 -0.01870128\n", + " -0.03109752 -0.0911811 -0.06793149 -0.23195178 -0.37841395 -0.50117932\n", + " -0.59975148 -0.67699869 -0.92564824 -0.99323234 -0.99767802 -0.99883933\n", + " -0.99930549 -0.99953809 -0.72172248 -0.78650646 -0.85317965 -0.91614203\n", + " -0.96694122 -0.99598364 -0.00795487 -0.00795487 -0.9995928 -0.9995928\n", + " -0.07226297 -0.24592654 -0.39887637 -0.52461865 -0.62348955 -0.69945795\n", + " -0.08817399 -0.29602647 -0.46919258 -0.60136972 -0.69774952 -0.76701014\n", + " -0.11299429 -0.36984939 -0.56367146 -0.69504524 -0.7811192 -0.83793215\n", + " -0.1569857 -0.48613658 -0.69011673 -0.80373942 -0.86801033 -0.90636701\n", + " -0.25511271 -0.67830854 -0.84534002 -0.91323709 -0.94538951 -0.96272694\n", + " -0.6124737 -0.93816501 -0.97759544 -0.98864055 -0.99316726 -0.99544587]\n", + "DEBUG:root:radec2pix: lat: [73.24843796 74.22959053 75.14101603 75.95564397 76.6437957 77.17522107\n", + " 77.52247637 77.66531399 73.24843796 74.25938156 75.20604331 76.06127099\n", + " 76.79469021 77.37449152 77.77070397 77.95983585 77.66531399 79.26403549\n", + " 80.8954867 82.55419485 84.2348008 85.93154111 87.63625009 89.30890983\n", + " 77.95983585 79.5631834 81.19741545 82.85654952 84.53396682 86.22024\n", + " 87.89143193 89.30890983 73.68688931 74.8461168 75.87404737 76.71704667\n", + " 77.31977046 77.63442603 73.69912883 74.89851762 75.9747656 76.87322604\n", + " 77.53566935 77.90931811 78.357841 80.33991917 82.36567874 84.42519517\n", + " 86.5076147 88.59172382 78.65442708 80.64093339 82.6678651 84.72327772\n", + " 86.78866387 88.77999774 73.25542451 73.25542451 89.30107513 89.30107513\n", + " 74.14922787 75.40361568 76.5361131 77.48786454 78.19419066 78.59463145\n", + " 75.36296624 76.78183851 78.08930019 79.21461778 80.0707569 80.56622359\n", + " 76.44568445 78.03639269 79.53999931 80.87766645 81.93562678 82.57036945\n", + " 77.33928008 79.09582585 80.80551049 82.39402202 83.72877916 84.58613925\n", + " 77.98201104 79.8754942 81.77128989 83.62092117 85.31596639 86.56531268\n", + " 78.31903282 80.2916347 82.30308639 84.33811541 86.36841377 88.27312586]\n", + "DEBUG:root:optics_fp: sphi: [0.99997205 0.99996215 0.99994596 0.9999168 0.99985602 0.99969394\n", + " 0.99896586 0.96370392 0.99997205 0.98945005 0.96161446 0.92056536\n", + " 0.87130661 0.81840538 0.7653019 0.71421799 0.96370392 0.18379675\n", + " 0.09559053 0.0644947 0.04865962 0.03907157 0.03264451 0.02803701\n", + " 0.71421799 0.66005264 0.59321085 0.51139137 0.41288109 0.29745825\n", + " 0.16740606 0.02803701 0.99996412 0.99994622 0.99991085 0.99982512\n", + " 0.99951636 0.99583433 0.99768999 0.97272729 0.92563647 0.86534345\n", + " 0.80018633 0.73598422 0.37838518 0.11614437 0.06810698 0.04816635\n", + " 0.03726317 0.03039091 0.69218254 0.61758205 0.52161719 0.40085381\n", + " 0.25499936 0.08953536 0.99996836 0.99996836 0.02853493 0.02853493\n", + " 0.99738561 0.96928847 0.91700471 0.85133735 0.78183168 0.71467375\n", + " 0.99610509 0.95517974 0.88309587 0.79897088 0.71634182 0.64163497\n", + " 0.99359564 0.92909172 0.82599908 0.71896601 0.62438193 0.54577441\n", + " 0.98760088 0.87388285 0.72369807 0.59498147 0.49654613 0.42249123\n", + " 0.96691132 0.7347772 0.53422865 0.40742853 0.32594274 0.27047521\n", + " 0.79049097 0.3461884 0.21049264 0.15029925 0.11669955 0.09532849]\n", + "DEBUG:root:optics_fp: xyfp: [[ -0.230877 31.363511 ]\n", + " [ -0.230877 26.97708243]\n", + " [ -0.230877 22.59065386]\n", + " [ -0.230877 18.20422528]\n", + " [ -0.230877 13.81779671]\n", + " [ -0.230877 9.43136815]\n", + " [ -0.230877 5.04493957]\n", + " [ -0.230877 0.658511 ]\n", + " [ -0.230877 31.363511 ]\n", + " [ -4.61730557 31.363511 ]\n", + " [ -9.00373414 31.363511 ]\n", + " [-13.39016272 31.363511 ]\n", + " [-17.77659129 31.363511 ]\n", + " [-22.16301986 31.363511 ]\n", + " [-26.54944843 31.363511 ]\n", + " [-30.935877 31.363511 ]\n", + " [ -0.230877 0.658511 ]\n", + " [ -4.61730558 0.658511 ]\n", + " [ -9.00373414 0.658511 ]\n", + " [-13.39016271 0.658511 ]\n", + " [-17.77659128 0.658511 ]\n", + " [-22.16301986 0.658511 ]\n", + " [-26.54944843 0.658511 ]\n", + " [-30.935877 0.658511 ]\n", + " [-30.935877 31.363511 ]\n", + " [-30.935877 26.97708243]\n", + " [-30.935877 22.59065386]\n", + " [-30.935877 18.20422528]\n", + " [-30.935877 13.81779671]\n", + " [-30.935877 9.43136814]\n", + " [-30.935877 5.04493957]\n", + " [-30.935877 0.658511 ]\n", + " [ -0.245877 29.451011 ]\n", + " [ -0.245877 24.075011 ]\n", + " [ -0.245877 18.699011 ]\n", + " [ -0.245877 13.323011 ]\n", + " [ -0.245877 7.947011 ]\n", + " [ -0.245877 2.571011 ]\n", + " [ -2.143377 31.348511 ]\n", + " [ -7.519377 31.348511 ]\n", + " [-12.895377 31.348511 ]\n", + " [-18.271377 31.348511 ]\n", + " [-23.647377 31.348511 ]\n", + " [-29.023377 31.348511 ]\n", + " [ -2.143377 0.673511 ]\n", + " [ -7.519377 0.673511 ]\n", + " [-12.895377 0.673511 ]\n", + " [-18.271377 0.673511 ]\n", + " [-23.64737701 0.673511 ]\n", + " [-29.023377 0.673511 ]\n", + " [-30.920877 29.451011 ]\n", + " [-30.920877 24.075011 ]\n", + " [-30.920877 18.699011 ]\n", + " [-30.920877 13.323011 ]\n", + " [-30.920877 7.947011 ]\n", + " [-30.920877 2.571011 ]\n", + " [ -0.245877 31.348511 ]\n", + " [ -0.245877 31.348511 ]\n", + " [-30.920877 0.673511 ]\n", + " [-30.920877 0.673511 ]\n", + " [ -2.143377 29.451011 ]\n", + " [ -7.519377 29.451011 ]\n", + " [-12.895377 29.451011 ]\n", + " [-18.271377 29.451011 ]\n", + " [-23.647377 29.451011 ]\n", + " [-29.023377 29.451011 ]\n", + " [ -2.143377 24.075011 ]\n", + " [ -7.519377 24.075011 ]\n", + " [-12.895377 24.075011 ]\n", + " [-18.271377 24.075011 ]\n", + " [-23.647377 24.075011 ]\n", + " [-29.023377 24.075011 ]\n", + " [ -2.143377 18.699011 ]\n", + " [ -7.519377 18.699011 ]\n", + " [-12.895377 18.699011 ]\n", + " [-18.271377 18.699011 ]\n", + " [-23.647377 18.699011 ]\n", + " [-29.023377 18.699011 ]\n", + " [ -2.143377 13.323011 ]\n", + " [ -7.519377 13.323011 ]\n", + " [-12.895377 13.323011 ]\n", + " [-18.271377 13.323011 ]\n", + " [-23.647377 13.323011 ]\n", + " [-29.023377 13.323011 ]\n", + " [ -2.143377 7.947011 ]\n", + " [ -7.519377 7.947011 ]\n", + " [-12.895377 7.947011 ]\n", + " [-18.271377 7.947011 ]\n", + " [-23.647377 7.947011 ]\n", + " [-29.023377 7.947011 ]\n", + " [ -2.143377 2.571011 ]\n", + " [ -7.519377 2.571011 ]\n", + " [-12.895377 2.571011 ]\n", + " [-18.271377 2.571011 ]\n", + " [-23.647377 2.571011 ]\n", + " [-29.023377 2.571011 ]]\n", + "DEBUG:root:optics_fp: xyfp shape: (96, 2)\n", + "DEBUG:root:radec2pix: curVec: [[-0.32592082 0.12960547 0.93647106]\n", + " [-0.33323468 0.15477884 0.93005277]\n", + " [-0.3403077 0.18041411 0.9228442 ]\n", + " [-0.34710984 0.20638767 0.91483271]\n", + " [-0.35361208 0.23258101 0.90601577]\n", + " [-0.35978652 0.25887987 0.89640107]\n", + " [-0.36560673 0.28517349 0.88600666]\n", + " [-0.37104826 0.31135439 0.87486092]\n", + " [-0.32592082 0.12960547 0.93647106]\n", + " [-0.30083172 0.13588359 0.94394699]\n", + " [-0.27500312 0.14234701 0.95084731]\n", + " [-0.24853189 0.14894528 0.95710355]\n", + " [-0.22151622 0.1556334 0.96265716]\n", + " [-0.19405632 0.16237126 0.96745942]\n", + " [-0.16625504 0.16912302 0.97147139]\n", + " [-0.13821801 0.17585648 0.97466419]\n", + " [-0.37104826 0.31135439 0.87486092]\n", + " [-0.3454824 0.31969978 0.88228904]\n", + " [-0.31911431 0.32796283 0.88916053]\n", + " [-0.29203412 0.33609572 0.89540814]\n", + " [-0.26433491 0.3440542 0.90097379]\n", + " [-0.23611463 0.35179705 0.90580832]\n", + " [-0.20747708 0.35928604 0.90987186]\n", + " [-0.17853174 0.36648614 0.91313434]\n", + " [-0.13821801 0.17585648 0.97466419]\n", + " [-0.14413339 0.20256364 0.96860391]\n", + " [-0.15004347 0.22963797 0.96164097]\n", + " [-0.15591897 0.25696277 0.95376067]\n", + " [-0.16173191 0.28442362 0.9449582 ]\n", + " [-0.16745536 0.31190673 0.93523948]\n", + " [-0.17306348 0.33929851 0.92462184]\n", + " [-0.17853174 0.36648614 0.91313434]\n", + " [-0.32905265 0.14053787 0.93379519]\n", + " [-0.33785778 0.17171842 0.92539986]\n", + " [-0.34627134 0.20346928 0.9158037 ]\n", + " [-0.3542395 0.23557018 0.90499783]\n", + " [-0.36171092 0.26781069 0.89299644]\n", + " [-0.36863774 0.29998827 0.87983706]\n", + " [-0.31510409 0.13240222 0.93977607]\n", + " [-0.28384459 0.1402294 0.948561 ]\n", + " [-0.2515704 0.14828398 0.95641215]\n", + " [-0.21846169 0.15648084 0.96321765]\n", + " [-0.18470304 0.16474609 0.96888777]\n", + " [-0.15048496 0.17301528 0.97335502]\n", + " [-0.35998781 0.31491032 0.87820286]\n", + " [-0.3281033 0.32508839 0.8869418 ]\n", + " [-0.2951032 0.33509502 0.89477675]\n", + " [-0.26115751 0.34484727 0.90159698]\n", + " [-0.22644668 0.3542693 0.90731205]\n", + " [-0.1911642 0.36329203 0.91185259]\n", + " [-0.14089238 0.18742504 0.972122 ]\n", + " [-0.14814341 0.22041892 0.96408974]\n", + " [-0.15535706 0.25384802 0.954686 ]\n", + " [-0.16248127 0.28750088 0.94389781]\n", + " [-0.16946648 0.32116797 0.93173615]\n", + " [-0.17626562 0.35464042 0.91823777]\n", + " [-0.32586178 0.12971172 0.93647689]\n", + " [-0.32586178 0.12971172 0.93647689]\n", + " [-0.17861268 0.36636955 0.9131653 ]\n", + " [-0.17861268 0.36636955 0.9131653 ]\n", + " [-0.31826283 0.14329688 0.9371098 ]\n", + " [-0.28690782 0.15129833 0.94593484]\n", + " [-0.25453099 0.15949835 0.95382087]\n", + " [-0.22131177 0.16781263 0.96065604]\n", + " [-0.18743439 0.17616797 0.96635045]\n", + " [-0.15308952 0.18450033 0.97083635]\n", + " [-0.32699143 0.17466271 0.92874622]\n", + " [-0.29540749 0.18313489 0.93765454]\n", + " [-0.26278168 0.19172715 0.94561435]\n", + " [-0.2292912 0.20035734 0.95251377]\n", + " [-0.19511934 0.20895376 0.95826237]\n", + " [-0.16045747 0.21745302 0.96279156]\n", + " [-0.33534984 0.20658656 0.91916401]\n", + " [-0.30359796 0.215498 0.92811039]\n", + " [-0.27078467 0.22445589 0.93610641]\n", + " [-0.2370849 0.23337949 0.94304017]\n", + " [-0.2026811 0.24219761 0.94882068]\n", + " [-0.1677655 0.25084659 0.95337858]\n", + " [-0.3432838 0.23884912 0.90835419]\n", + " [-0.31142394 0.24817111 0.91729288]\n", + " [-0.27848418 0.25747038 0.92528675]\n", + " [-0.24463738 0.26666655 0.93222395]\n", + " [-0.21006529 0.27568789 0.9380132 ]\n", + " [-0.17496089 0.28446963 0.94258459]\n", + " [-0.35074143 0.27124048 0.89633088]\n", + " [-0.3188323 0.28094547 0.90521578]\n", + " [-0.28582649 0.29056241 0.9131685 ]\n", + " [-0.25189524 0.30001028 0.92007751]\n", + " [-0.21721969 0.30921591 0.92585157]\n", + " [-0.18199332 0.31811284 0.93042069]\n", + " [-0.35767437 0.30355806 0.88313167]\n", + " [-0.32577343 0.31361793 0.89191674]\n", + " [-0.29276137 0.32352761 0.89978923]\n", + " [-0.2588084 0.33320474 0.90663819]\n", + " [-0.22409512 0.34257421 0.91237289]\n", + " [-0.1888151 0.35156761 0.9169237 ]]\n", + "DEBUG:root:radec2pix: curVec Shape: (96, 3)\n", + "DEBUG:root:radec2pix: lng: [44.48637088 40.24577336 35.3986005 29.89032997 23.69955042 16.86222735\n", + " 9.49377237 1.79522173 44.48637088 48.66063412 53.44662754 58.90649312\n", + " 65.0719071 71.9184746 79.34035003 87.13941954 1.79522173 2.08115239\n", + " 2.4736322 3.04578526 3.95735654 5.6363423 9.74006464 33.09159725\n", + " 87.13941954 86.68537287 86.05851166 85.13727473 83.65177634 80.86105503\n", + " 73.77851938 33.09159725 42.72105973 37.1234454 30.55748427 22.96885005\n", + " 14.42630836 5.17884001 46.22224274 51.74114431 58.24340245 65.80116251\n", + " 74.36661193 83.70585675 1.93801443 2.35975361 3.01217367 4.15532416\n", + " 6.6725739 16.60005947 86.92909007 86.26070822 85.21749379 83.36321455\n", + " 79.16883097 61.59868241 44.48614146 44.48614146 33.22349754 33.22349754\n", + " 44.45527608 50.01139871 56.64103308 64.45360362 73.42615136 83.31035484\n", + " 38.80796323 44.3420957 51.23163704 59.75644459 70.04944098 81.86211477\n", + " 32.10039047 37.31880048 44.16600061 53.22697224 65.04995068 79.6185637\n", + " 24.24396698 28.69167771 34.89141577 43.85434751 57.06355174 75.69539259\n", + " 15.28811193 18.37837592 22.94811312 30.25991115 43.15274514 67.23630391\n", + " 5.50203766 6.68110194 8.4950185 11.63570463 18.3197087 40.11102427]\n", + "DEBUG:root:optics_fp: rtanth: [31.42709713 27.04074579 22.65442436 18.26815439 13.88198464 9.49605401\n", + " 5.11097808 0.742067 31.42709713 31.75564253 32.6750783 34.13769417\n", + " 36.07748738 38.42225317 41.10274314 44.05772304 0.742067 4.61617395\n", + " 8.97490789 13.35179361 17.73339574 22.11691136 26.50139096 30.88642402\n", + " 44.05772304 41.04415255 38.29678143 35.87681689 33.85454213 32.30472979\n", + " 31.29764563 30.88642402 29.51471971 24.13885305 18.76306281 13.38744101\n", + " 8.01232674 2.64082086 31.48077532 32.28565953 33.93362876 36.31007107\n", + " 39.28300031 42.72809051 2.2117621 7.49776555 12.85860945 18.22838275\n", + " 23.6009913 28.97485798 42.70371969 39.18128664 36.11843741 33.64093596\n", + " 31.88551984 30.97519863 31.41218354 31.41218354 30.87178238 30.87178238\n", + " 29.58771061 30.4426874 32.18516063 34.68161856 37.78289981 41.35315131\n", + " 24.22804504 25.26505023 27.33953387 30.23872042 33.75074911 37.7047566\n", + " 18.87767108 20.19136108 22.73364051 26.14858527 30.14102461 34.5111137\n", + " 13.54760187 15.32521169 18.5469529 22.60352987 27.12291311 31.90905859\n", + " 8.27715649 10.94695923 15.13153214 19.89706928 24.91237079 30.05265085\n", + " 3.35974322 7.91280426 13.10495402 18.40298673 23.73610696 29.08501983]\n", + "DEBUG:root:radec2pix: ccdpx: [[-4.45000003e+01 -5.00000268e-01]\n", + " [-4.44999998e+01 2.91928572e+02]\n", + " [-4.44999999e+01 5.84357143e+02]\n", + " [-4.45000000e+01 8.76785714e+02]\n", + " [-4.44999998e+01 1.16921429e+03]\n", + " [-4.44999999e+01 1.46164286e+03]\n", + " [-4.44999997e+01 1.75407143e+03]\n", + " [-4.44999999e+01 2.04650000e+03]\n", + " [-4.45000003e+01 -5.00000268e-01]\n", + " [ 2.47928572e+02 -4.99999720e-01]\n", + " [ 5.40357143e+02 -5.00000140e-01]\n", + " [ 8.32785714e+02 -4.99999791e-01]\n", + " [ 1.12521429e+03 -4.99999975e-01]\n", + " [ 1.41764286e+03 -4.99999912e-01]\n", + " [ 1.71007143e+03 -4.99999978e-01]\n", + " [ 2.00250000e+03 -4.99999991e-01]\n", + " [-4.44999999e+01 2.04650000e+03]\n", + " [ 2.47928571e+02 2.04650000e+03]\n", + " [ 5.40357143e+02 2.04650000e+03]\n", + " [ 8.32785715e+02 2.04650000e+03]\n", + " [ 1.12521429e+03 2.04650000e+03]\n", + " [ 1.41764286e+03 2.04650000e+03]\n", + " [ 1.71007143e+03 2.04650000e+03]\n", + " [ 2.00250000e+03 2.04650000e+03]\n", + " [ 2.00250000e+03 -4.99999991e-01]\n", + " [ 2.00250000e+03 2.91928572e+02]\n", + " [ 2.00250000e+03 5.84357143e+02]\n", + " [ 2.00250000e+03 8.76785715e+02]\n", + " [ 2.00250000e+03 1.16921429e+03]\n", + " [ 2.00250000e+03 1.46164286e+03]\n", + " [ 2.00250000e+03 1.75407143e+03]\n", + " [ 2.00250000e+03 2.04650000e+03]\n", + " [-4.34999998e+01 1.27000000e+02]\n", + " [-4.35000000e+01 4.85400000e+02]\n", + " [-4.35000001e+01 8.43800000e+02]\n", + " [-4.35000000e+01 1.20220000e+03]\n", + " [-4.35000001e+01 1.56060000e+03]\n", + " [-4.34999999e+01 1.91900000e+03]\n", + " [ 8.30000001e+01 5.00000092e-01]\n", + " [ 4.41400000e+02 4.99999764e-01]\n", + " [ 7.99800000e+02 4.99999911e-01]\n", + " [ 1.15820000e+03 5.00000156e-01]\n", + " [ 1.51660000e+03 4.99999840e-01]\n", + " [ 1.87500000e+03 4.99999915e-01]\n", + " [ 8.29999998e+01 2.04550000e+03]\n", + " [ 4.41400000e+02 2.04550000e+03]\n", + " [ 7.99800000e+02 2.04550000e+03]\n", + " [ 1.15820000e+03 2.04550000e+03]\n", + " [ 1.51660000e+03 2.04550000e+03]\n", + " [ 1.87500000e+03 2.04550000e+03]\n", + " [ 2.00150000e+03 1.27000000e+02]\n", + " [ 2.00150000e+03 4.85400000e+02]\n", + " [ 2.00150000e+03 8.43800000e+02]\n", + " [ 2.00150000e+03 1.20220000e+03]\n", + " [ 2.00150000e+03 1.56060000e+03]\n", + " [ 2.00150000e+03 1.91900000e+03]\n", + " [-4.35000000e+01 4.99999958e-01]\n", + " [-4.35000000e+01 4.99999958e-01]\n", + " [ 2.00150000e+03 2.04550000e+03]\n", + " [ 2.00150000e+03 2.04550000e+03]\n", + " [ 8.30000002e+01 1.27000000e+02]\n", + " [ 4.41400000e+02 1.27000000e+02]\n", + " [ 7.99800000e+02 1.27000000e+02]\n", + " [ 1.15820000e+03 1.27000000e+02]\n", + " [ 1.51660000e+03 1.27000000e+02]\n", + " [ 1.87500000e+03 1.27000000e+02]\n", + " [ 8.29999999e+01 4.85400000e+02]\n", + " [ 4.41400000e+02 4.85400000e+02]\n", + " [ 7.99800000e+02 4.85400000e+02]\n", + " [ 1.15820000e+03 4.85400000e+02]\n", + " [ 1.51660000e+03 4.85400000e+02]\n", + " [ 1.87500000e+03 4.85400000e+02]\n", + " [ 8.30000001e+01 8.43800000e+02]\n", + " [ 4.41400000e+02 8.43800000e+02]\n", + " [ 7.99800000e+02 8.43800000e+02]\n", + " [ 1.15820000e+03 8.43800000e+02]\n", + " [ 1.51660000e+03 8.43800000e+02]\n", + " [ 1.87500000e+03 8.43800000e+02]\n", + " [ 8.29999999e+01 1.20220000e+03]\n", + " [ 4.41400000e+02 1.20220000e+03]\n", + " [ 7.99800000e+02 1.20220000e+03]\n", + " [ 1.15820000e+03 1.20220000e+03]\n", + " [ 1.51660000e+03 1.20220000e+03]\n", + " [ 1.87500000e+03 1.20220000e+03]\n", + " [ 8.29999999e+01 1.56060000e+03]\n", + " [ 4.41400000e+02 1.56060000e+03]\n", + " [ 7.99800000e+02 1.56060000e+03]\n", + " [ 1.15820000e+03 1.56060000e+03]\n", + " [ 1.51660000e+03 1.56060000e+03]\n", + " [ 1.87500000e+03 1.56060000e+03]\n", + " [ 8.29999998e+01 1.91900000e+03]\n", + " [ 4.41400000e+02 1.91900000e+03]\n", + " [ 7.99800000e+02 1.91900000e+03]\n", + " [ 1.15820000e+03 1.91900000e+03]\n", + " [ 1.51660000e+03 1.91900000e+03]\n", + " [ 1.87500000e+03 1.91900000e+03]]\n", + "DEBUG:root:optics_fp: xyfp: [[ -0.172993 31.426621 ]\n", + " [ -0.172993 27.04019243]\n", + " [ -0.172993 22.65376385]\n", + " [ -0.172993 18.26733528]\n", + " [ -0.172993 13.88090671]\n", + " [ -0.172993 9.49447814]\n", + " [ -0.172993 5.10804957]\n", + " [ -0.172993 0.721621 ]\n", + " [ -0.172993 31.426621 ]\n", + " [ -4.55942157 31.426621 ]\n", + " [ -8.94585014 31.426621 ]\n", + " [-13.33227871 31.426621 ]\n", + " [-17.71870729 31.426621 ]\n", + " [-22.10513586 31.426621 ]\n", + " [-26.49156443 31.426621 ]\n", + " [-30.877993 31.426621 ]\n", + " [ -0.172993 0.721621 ]\n", + " [ -4.55942157 0.721621 ]\n", + " [ -8.94585014 0.721621 ]\n", + " [-13.33227872 0.721621 ]\n", + " [-17.71870728 0.721621 ]\n", + " [-22.10513586 0.721621 ]\n", + " [-26.49156443 0.721621 ]\n", + " [-30.877993 0.721621 ]\n", + " [-30.877993 31.426621 ]\n", + " [-30.877993 27.04019243]\n", + " [-30.877993 22.65376385]\n", + " [-30.877993 18.26733529]\n", + " [-30.877993 13.88090671]\n", + " [-30.877993 9.49447814]\n", + " [-30.877993 5.10804957]\n", + " [-30.877993 0.721621 ]\n", + " [ -0.187993 29.514121 ]\n", + " [ -0.187993 24.138121 ]\n", + " [ -0.187993 18.76212101]\n", + " [ -0.187993 13.386121 ]\n", + " [ -0.187993 8.010121 ]\n", + " [ -0.187993 2.634121 ]\n", + " [ -2.085493 31.411621 ]\n", + " [ -7.461493 31.411621 ]\n", + " [-12.837493 31.411621 ]\n", + " [-18.213493 31.411621 ]\n", + " [-23.589493 31.411621 ]\n", + " [-28.965493 31.411621 ]\n", + " [ -2.085493 0.736621 ]\n", + " [ -7.461493 0.736621 ]\n", + " [-12.837493 0.736621 ]\n", + " [-18.213493 0.736621 ]\n", + " [-23.58949299 0.736621 ]\n", + " [-28.965493 0.736621 ]\n", + " [-30.862993 29.514121 ]\n", + " [-30.862993 24.138121 ]\n", + " [-30.862993 18.762121 ]\n", + " [-30.862993 13.386121 ]\n", + " [-30.862993 8.010121 ]\n", + " [-30.862993 2.634121 ]\n", + " [ -0.187993 31.411621 ]\n", + " [ -0.187993 31.411621 ]\n", + " [-30.862993 0.736621 ]\n", + " [-30.862993 0.736621 ]\n", + " [ -2.085493 29.514121 ]\n", + " [ -7.461493 29.514121 ]\n", + " [-12.837493 29.514121 ]\n", + " [-18.213493 29.514121 ]\n", + " [-23.589493 29.514121 ]\n", + " [-28.965493 29.514121 ]\n", + " [ -2.085493 24.138121 ]\n", + " [ -7.461493 24.138121 ]\n", + " [-12.837493 24.138121 ]\n", + " [-18.213493 24.138121 ]\n", + " [-23.589493 24.138121 ]\n", + " [-28.965493 24.138121 ]\n", + " [ -2.085493 18.762121 ]\n", + " [ -7.461493 18.762121 ]\n", + " [-12.837493 18.762121 ]\n", + " [-18.213493 18.762121 ]\n", + " [-23.589493 18.762121 ]\n", + " [-28.965493 18.762121 ]\n", + " [ -2.085493 13.386121 ]\n", + " [ -7.461493 13.386121 ]\n", + " [-12.837493 13.386121 ]\n", + " [-18.213493 13.386121 ]\n", + " [-23.589493 13.386121 ]\n", + " [-28.965493 13.386121 ]\n", + " [ -2.085493 8.010121 ]\n", + " [ -7.461493 8.010121 ]\n", + " [-12.837493 8.010121 ]\n", + " [-18.213493 8.010121 ]\n", + " [-23.589493 8.010121 ]\n", + " [-28.965493 8.010121 ]\n", + " [ -2.085493 2.634121 ]\n", + " [ -7.461493 2.634121 ]\n", + " [-12.837493 2.634121 ]\n", + " [-18.213493 2.634121 ]\n", + " [-23.589493 2.634121 ]\n", + " [-28.965493 2.634121 ]]\n", + "DEBUG:root:optics_fp: xyfp shape: (96, 2)\n", + "DEBUG:root:optics_fp: xyfp: [[ 0.236018 -31.56946754]\n", + " [ 0.23651287 -27.18303899]\n", + " [ 0.23700774 -22.79661046]\n", + " [ 0.23750261 -18.41018192]\n", + " [ 0.23799748 -14.02375336]\n", + " [ 0.23849235 -9.63732482]\n", + " [ 0.23898721 -5.25089628]\n", + " [ 0.23948208 -0.86446773]\n", + " [ 0.236018 -31.56946754]\n", + " [ 4.62244655 -31.56996241]\n", + " [ 9.00887509 -31.57045728]\n", + " [ 13.39530363 -31.57095214]\n", + " [ 17.78173218 -31.57144701]\n", + " [ 22.16816072 -31.57194188]\n", + " [ 26.55458927 -31.57243675]\n", + " [ 30.94101781 -31.57293162]\n", + " [ 0.23948208 -0.86446773]\n", + " [ 4.62591062 -0.8649626 ]\n", + " [ 9.01233917 -0.86545747]\n", + " [ 13.39876771 -0.86595234]\n", + " [ 17.78519626 -0.86644721]\n", + " [ 22.1716248 -0.86694208]\n", + " [ 26.55805334 -0.86743695]\n", + " [ 30.94448189 -0.86793181]\n", + " [ 30.94101781 -31.57293162]\n", + " [ 30.94151268 -27.18650307]\n", + " [ 30.94200754 -22.80007453]\n", + " [ 30.94250242 -18.41364599]\n", + " [ 30.94299728 -14.02721745]\n", + " [ 30.94349215 -9.6407889 ]\n", + " [ 30.94398702 -5.25436036]\n", + " [ 30.94448189 -0.86793181]\n", + " [ 0.25123377 -29.65696924]\n", + " [ 0.25184028 -24.28096928]\n", + " [ 0.25244679 -18.90496931]\n", + " [ 0.2530533 -13.52896935]\n", + " [ 0.25365981 -8.15296938]\n", + " [ 0.25426632 -2.77696942]\n", + " [ 2.14851968 -31.5546833 ]\n", + " [ 7.52451965 -31.55528981]\n", + " [ 12.90051962 -31.55589633]\n", + " [ 18.27651958 -31.55650284]\n", + " [ 23.65251954 -31.55710934]\n", + " [ 29.02851952 -31.55771586]\n", + " [ 2.15198038 -0.8796835 ]\n", + " [ 7.52798035 -0.88029001]\n", + " [ 12.90398031 -0.88089652]\n", + " [ 18.27998027 -0.88150303]\n", + " [ 23.65598025 -0.88210954]\n", + " [ 29.03198021 -0.88271605]\n", + " [ 30.92623357 -29.66042994]\n", + " [ 30.92684009 -24.28442998]\n", + " [ 30.9274466 -18.90843001]\n", + " [ 30.9280531 -13.53243004]\n", + " [ 30.92865961 -8.15643008]\n", + " [ 30.92926612 -2.78043011]\n", + " [ 0.2510197 -31.55446923]\n", + " [ 0.2510197 -31.55446923]\n", + " [ 30.9294802 -0.88293012]\n", + " [ 30.9294802 -0.88293012]\n", + " [ 2.14873376 -29.65718332]\n", + " [ 7.52473372 -29.65778983]\n", + " [ 12.90073369 -29.65839633]\n", + " [ 18.27673365 -29.65900285]\n", + " [ 23.65273362 -29.65960936]\n", + " [ 29.02873359 -29.66021587]\n", + " [ 2.14934027 -24.28118335]\n", + " [ 7.52534023 -24.28178986]\n", + " [ 12.9013402 -24.28239637]\n", + " [ 18.27734016 -24.28300288]\n", + " [ 23.65334013 -24.28360939]\n", + " [ 29.02934009 -24.2842159 ]\n", + " [ 2.14994678 -18.90518338]\n", + " [ 7.52594674 -18.90578989]\n", + " [ 12.90194671 -18.9063964 ]\n", + " [ 18.27794667 -18.90700292]\n", + " [ 23.65394664 -18.90760943]\n", + " [ 29.0299466 -18.90821593]\n", + " [ 2.15055329 -13.52918342]\n", + " [ 7.52655325 -13.52978993]\n", + " [ 12.90255322 -13.53039644]\n", + " [ 18.27855318 -13.53100295]\n", + " [ 23.65455315 -13.53160946]\n", + " [ 29.03055312 -13.53221597]\n", + " [ 2.1511598 -8.15318346]\n", + " [ 7.52715976 -8.15378996]\n", + " [ 12.90315973 -8.15439647]\n", + " [ 18.27915969 -8.15500298]\n", + " [ 23.65515966 -8.15560949]\n", + " [ 29.03115962 -8.156216 ]\n", + " [ 2.1517663 -2.77718348]\n", + " [ 7.52776627 -2.77779 ]\n", + " [ 12.90376624 -2.77839651]\n", + " [ 18.2797662 -2.77900302]\n", + " [ 23.65576617 -2.77960953]\n", + " [ 29.03176613 -2.78021604]]\n", + "DEBUG:root:optics_fp: cphi: [0.00550458 0.00639749 0.00763617 0.00946965 0.01246169 0.01821736\n", + " 0.03384734 0.23312315 0.00550458 0.14357831 0.27378206 0.39054421\n", + " 0.49112919 0.57532118 0.64452059 0.70085313 0.23312315 0.98770575\n", + " 0.99676233 0.99853841 0.99917171 0.99946758 0.99962921 0.99972703\n", + " 0.70085313 0.75231162 0.80628167 0.86066702 0.91207829 0.95583505\n", + " 0.98659156 0.99972703 0.00636947 0.00778798 0.01001931 0.01404249\n", + " 0.02346297 0.07118734 0.06624656 0.23110858 0.37831182 0.50160995\n", + " 0.60050131 0.67790282 0.94291018 0.99516222 0.9983578 0.99918316\n", + " 0.9995128 0.99967679 0.72272376 0.78769728 0.85449414 0.91742373\n", + " 0.96793131 0.99637757 0.00598472 0.00598472 0.99971529 0.99971529\n", + " 0.07048511 0.24509968 0.39886372 0.52516272 0.62434311 0.70044222\n", + " 0.08607764 0.29532864 0.46955786 0.60232354 0.69893243 0.76821854\n", + " 0.11047406 0.36953888 0.56469148 0.69653837 0.7826374 0.83930914\n", + " 0.15393817 0.48687699 0.69216184 0.80578092 0.86972564 0.90775141\n", + " 0.25195766 0.68160416 0.84839347 0.91538572 0.94689876 0.96382489\n", + " 0.62072988 0.94296444 0.97959085 0.9897031 0.99382317 0.99589043]\n", + "DEBUG:root:optics_fp: xyfp shape: (96, 2)\n", + "DEBUG:root:make_az_asym: xyp: [[ -0.230877 31.363511 ]\n", + " [ -0.230877 26.97708243]\n", + " [ -0.230877 22.59065386]\n", + " [ -0.230877 18.20422528]\n", + " [ -0.230877 13.81779671]\n", + " [ -0.230877 9.43136815]\n", + " [ -0.230877 5.04493957]\n", + " [ -0.230877 0.658511 ]\n", + " [ -0.230877 31.363511 ]\n", + " [ -4.61730557 31.363511 ]\n", + " [ -9.00373414 31.363511 ]\n", + " [-13.39016272 31.363511 ]\n", + " [-17.77659129 31.363511 ]\n", + " [-22.16301986 31.363511 ]\n", + " [-26.54944843 31.363511 ]\n", + " [-30.935877 31.363511 ]\n", + " [ -0.230877 0.658511 ]\n", + " [ -4.61730558 0.658511 ]\n", + " [ -9.00373414 0.658511 ]\n", + " [-13.39016271 0.658511 ]\n", + " [-17.77659128 0.658511 ]\n", + " [-22.16301986 0.658511 ]\n", + " [-26.54944843 0.658511 ]\n", + " [-30.935877 0.658511 ]\n", + " [-30.935877 31.363511 ]\n", + " [-30.935877 26.97708243]\n", + " [-30.935877 22.59065386]\n", + " [-30.935877 18.20422528]\n", + " [-30.935877 13.81779671]\n", + " [-30.935877 9.43136814]\n", + " [-30.935877 5.04493957]\n", + " [-30.935877 0.658511 ]\n", + " [ -0.245877 29.451011 ]\n", + " [ -0.245877 24.075011 ]\n", + " [ -0.245877 18.699011 ]\n", + " [ -0.245877 13.323011 ]\n", + " [ -0.245877 7.947011 ]\n", + " [ -0.245877 2.571011 ]\n", + " [ -2.143377 31.348511 ]\n", + " [ -7.519377 31.348511 ]\n", + " [-12.895377 31.348511 ]\n", + " [-18.271377 31.348511 ]\n", + " [-23.647377 31.348511 ]\n", + " [-29.023377 31.348511 ]\n", + " [ -2.143377 0.673511 ]\n", + " [ -7.519377 0.673511 ]\n", + " [-12.895377 0.673511 ]\n", + " [-18.271377 0.673511 ]\n", + " [-23.64737701 0.673511 ]\n", + " [-29.023377 0.673511 ]\n", + " [-30.920877 29.451011 ]\n", + " [-30.920877 24.075011 ]\n", + " [-30.920877 18.699011 ]\n", + " [-30.920877 13.323011 ]\n", + " [-30.920877 7.947011 ]\n", + " [-30.920877 2.571011 ]\n", + " [ -0.245877 31.348511 ]\n", + " [ -0.245877 31.348511 ]\n", + " [-30.920877 0.673511 ]\n", + " [-30.920877 0.673511 ]\n", + " [ -2.143377 29.451011 ]\n", + " [ -7.519377 29.451011 ]\n", + " [-12.895377 29.451011 ]\n", + " [-18.271377 29.451011 ]\n", + " [-23.647377 29.451011 ]\n", + " [-29.023377 29.451011 ]\n", + " [ -2.143377 24.075011 ]\n", + " [ -7.519377 24.075011 ]\n", + " [-12.895377 24.075011 ]\n", + " [-18.271377 24.075011 ]\n", + " [-23.647377 24.075011 ]\n", + " [-29.023377 24.075011 ]\n", + " [ -2.143377 18.699011 ]\n", + " [ -7.519377 18.699011 ]\n", + " [-12.895377 18.699011 ]\n", + " [-18.271377 18.699011 ]\n", + " [-23.647377 18.699011 ]\n", + " [-29.023377 18.699011 ]\n", + " [ -2.143377 13.323011 ]\n", + " [ -7.519377 13.323011 ]\n", + " [-12.895377 13.323011 ]\n", + " [-18.271377 13.323011 ]\n", + " [-23.647377 13.323011 ]\n", + " [-29.023377 13.323011 ]\n", + " [ -2.143377 7.947011 ]\n", + " [ -7.519377 7.947011 ]\n", + " [-12.895377 7.947011 ]\n", + " [-18.271377 7.947011 ]\n", + " [-23.647377 7.947011 ]\n", + " [-29.023377 7.947011 ]\n", + " [ -2.143377 2.571011 ]\n", + " [ -7.519377 2.571011 ]\n", + " [-12.895377 2.571011 ]\n", + " [-18.271377 2.571011 ]\n", + " [-23.647377 2.571011 ]\n", + " [-29.023377 2.571011 ]]\n", + "DEBUG:root:make_az_asym: xyp: shape: (96, 2)\n", + "DEBUG:root:radec2pix: fitpx: [[-5.00000272e-01 -5.00000268e-01]\n", + " [-4.99999785e-01 2.91928572e+02]\n", + " [-4.99999908e-01 5.84357143e+02]\n", + " [-4.99999976e-01 8.76785714e+02]\n", + " [-4.99999814e-01 1.16921429e+03]\n", + " [-4.99999859e-01 1.46164286e+03]\n", + " [-4.99999732e-01 1.75407143e+03]\n", + " [-4.99999866e-01 2.04650000e+03]\n", + " [-5.00000272e-01 -5.00000268e-01]\n", + " [ 2.91928572e+02 -4.99999720e-01]\n", + " [ 5.84357143e+02 -5.00000140e-01]\n", + " [ 8.76785714e+02 -4.99999791e-01]\n", + " [ 1.16921429e+03 -4.99999975e-01]\n", + " [ 1.46164286e+03 -4.99999912e-01]\n", + " [ 1.75407143e+03 -4.99999978e-01]\n", + " [ 2.04650000e+03 -4.99999991e-01]\n", + " [-4.99999866e-01 2.04650000e+03]\n", + " [ 2.91928571e+02 2.04650000e+03]\n", + " [ 5.84357143e+02 2.04650000e+03]\n", + " [ 8.76785715e+02 2.04650000e+03]\n", + " [ 1.16921429e+03 2.04650000e+03]\n", + " [ 1.46164286e+03 2.04650000e+03]\n", + " [ 1.75407143e+03 2.04650000e+03]\n", + " [ 2.04650000e+03 2.04650000e+03]\n", + " [ 2.04650000e+03 -4.99999991e-01]\n", + " [ 2.04650000e+03 2.91928572e+02]\n", + " [ 2.04650000e+03 5.84357143e+02]\n", + " [ 2.04650000e+03 8.76785715e+02]\n", + " [ 2.04650000e+03 1.16921429e+03]\n", + " [ 2.04650000e+03 1.46164286e+03]\n", + " [ 2.04650000e+03 1.75407143e+03]\n", + " [ 2.04650000e+03 2.04650000e+03]\n", + " [ 5.00000192e-01 1.27000000e+02]\n", + " [ 4.99999990e-01 4.85400000e+02]\n", + " [ 4.99999881e-01 8.43800000e+02]\n", + " [ 5.00000044e-01 1.20220000e+03]\n", + " [ 4.99999938e-01 1.56060000e+03]\n", + " [ 5.00000069e-01 1.91900000e+03]\n", + " [ 1.27000000e+02 5.00000092e-01]\n", + " [ 4.85400000e+02 4.99999764e-01]\n", + " [ 8.43800000e+02 4.99999911e-01]\n", + " [ 1.20220000e+03 5.00000156e-01]\n", + " [ 1.56060000e+03 4.99999840e-01]\n", + " [ 1.91900000e+03 4.99999915e-01]\n", + " [ 1.27000000e+02 2.04550000e+03]\n", + " [ 4.85400000e+02 2.04550000e+03]\n", + " [ 8.43800000e+02 2.04550000e+03]\n", + " [ 1.20220000e+03 2.04550000e+03]\n", + " [ 1.56060000e+03 2.04550000e+03]\n", + " [ 1.91900000e+03 2.04550000e+03]\n", + " [ 2.04550000e+03 1.27000000e+02]\n", + " [ 2.04550000e+03 4.85400000e+02]\n", + " [ 2.04550000e+03 8.43800000e+02]\n", + " [ 2.04550000e+03 1.20220000e+03]\n", + " [ 2.04550000e+03 1.56060000e+03]\n", + " [ 2.04550000e+03 1.91900000e+03]\n", + " [ 4.99999957e-01 4.99999958e-01]\n", + " [ 4.99999957e-01 4.99999958e-01]\n", + " [ 2.04550000e+03 2.04550000e+03]\n", + " [ 2.04550000e+03 2.04550000e+03]\n", + " [ 1.27000000e+02 1.27000000e+02]\n", + " [ 4.85400000e+02 1.27000000e+02]\n", + " [ 8.43800000e+02 1.27000000e+02]\n", + " [ 1.20220000e+03 1.27000000e+02]\n", + " [ 1.56060000e+03 1.27000000e+02]\n", + " [ 1.91900000e+03 1.27000000e+02]\n", + " [ 1.27000000e+02 4.85400000e+02]\n", + " [ 4.85400000e+02 4.85400000e+02]\n", + " [ 8.43800000e+02 4.85400000e+02]\n", + " [ 1.20220000e+03 4.85400000e+02]\n", + " [ 1.56060000e+03 4.85400000e+02]\n", + " [ 1.91900000e+03 4.85400000e+02]\n", + " [ 1.27000000e+02 8.43800000e+02]\n", + " [ 4.85400000e+02 8.43800000e+02]\n", + " [ 8.43800000e+02 8.43800000e+02]\n", + " [ 1.20220000e+03 8.43800000e+02]\n", + " [ 1.56060000e+03 8.43800000e+02]\n", + " [ 1.91900000e+03 8.43800000e+02]\n", + " [ 1.27000000e+02 1.20220000e+03]\n", + " [ 4.85400000e+02 1.20220000e+03]\n", + " [ 8.43800000e+02 1.20220000e+03]\n", + " [ 1.20220000e+03 1.20220000e+03]\n", + " [ 1.56060000e+03 1.20220000e+03]\n", + " [ 1.91900000e+03 1.20220000e+03]\n", + " [ 1.27000000e+02 1.56060000e+03]\n", + " [ 4.85400000e+02 1.56060000e+03]\n", + " [ 8.43800000e+02 1.56060000e+03]\n", + " [ 1.20220000e+03 1.56060000e+03]\n", + " [ 1.56060000e+03 1.56060000e+03]\n", + " [ 1.91900000e+03 1.56060000e+03]\n", + " [ 1.27000000e+02 1.91900000e+03]\n", + " [ 4.85400000e+02 1.91900000e+03]\n", + " [ 8.43800000e+02 1.91900000e+03]\n", + " [ 1.20220000e+03 1.91900000e+03]\n", + " [ 1.56060000e+03 1.91900000e+03]\n", + " [ 1.91900000e+03 1.91900000e+03]]\n", + "DEBUG:root:fitpix2pix: ccdpx: shape: (96, 2)\n", + "DEBUG:root:optics_fp: sphi: [-0.99998485 -0.99997954 -0.99997084 -0.99995516 -0.99992235 -0.99983405\n", + " -0.99942701 -0.97244722 -0.99998485 -0.98963896 -0.96179176 -0.92058417\n", + " -0.87108674 -0.81792759 -0.76458695 -0.71330561 -0.97244722 -0.15632448\n", + " -0.08040428 -0.05404675 -0.04069277 -0.03262757 -0.02722955 -0.0233637\n", + " -0.71330561 -0.65880742 -0.59153179 -0.50916823 -0.41001608 -0.29390365\n", + " -0.16320875 -0.0233637 -0.99997971 -0.99996967 -0.99994981 -0.9999014\n", + " -0.99972471 -0.99746296 -0.99780328 -0.97292796 -0.92567822 -0.8650939\n", + " -0.79962377 -0.73515153 -0.33304712 -0.0982454 -0.05728621 -0.04041066\n", + " -0.03121144 -0.02542276 -0.69113701 -0.61606249 -0.51946104 -0.39791167\n", + " -0.251215 -0.08503968 -0.99998209 -0.99998209 -0.02386066 -0.02386066\n", + " -0.99751283 -0.96949788 -0.91701021 -0.85100183 -0.78115023 -0.71370911\n", + " -0.99628843 -0.95539573 -0.8829017 -0.79825206 -0.71518771 -0.64018769\n", + " -0.99387901 -0.92921527 -0.82530209 -0.71751954 -0.62247788 -0.54365446\n", + " -0.98808048 -0.87347054 -0.72174233 -0.59221374 -0.49353552 -0.41950849\n", + " -0.96773826 -0.7317211 -0.52936616 -0.40257793 -0.32153186 -0.26653625\n", + " -0.7840245 -0.33289349 -0.20100193 -0.14313552 -0.11097528 -0.09056624]\n", + "DEBUG:root:fitpix2pix: visCut: True\n", + "DEBUG:root:radec2pix: lng: [44.21386846 39.93704685 35.05017674 29.50039724 23.26936887 16.39762201\n", + " 9.00597869 1.30015678 44.21386846 48.38707907 53.17846261 58.652901\n", + " 64.84492629 71.73221904 79.20889503 87.07353952 1.30015678 1.50828626\n", + " 1.79395925 2.21040578 2.87397756 4.09690845 7.09544794 25.08421915\n", + " 87.07353952 86.60429547 85.95429853 84.99452258 83.43549808 80.46877478\n", + " 72.72327889 25.08421915 42.4332296 36.78871515 30.1721461 22.534249\n", + " 13.95213213 4.68455031 45.9485209 51.4701262 57.98745342 65.57788622\n", + " 74.19728483 83.61034654 1.41178444 1.72041252 2.19784005 3.03449456\n", + " 4.87874528 12.23608945 86.85702241 86.16514834 85.07964235 83.13325955\n", + " 78.65106614 58.79906907 44.21351009 44.21351009 25.31647093 25.31647093\n", + " 44.16528338 49.72110165 56.36353517 64.20866184 73.23888739 83.20517984\n", + " 38.4669715 43.98823734 50.87875671 59.43072848 69.79141059 81.71788613\n", + " 31.70295803 36.8883708 43.71214181 52.77876171 64.67058062 79.40261268\n", + " 23.79006954 28.17687017 34.3103939 43.22163096 56.45806862 75.32225144\n", + " 14.78760738 17.78662299 22.23218915 29.3788791 42.10872179 66.39896872\n", + " 4.97718101 6.0450351 7.68908472 10.5407344 16.64345121 37.15297361]\n", + "DEBUG:root:optics_fp: rtanth: [45.0829242 42.14007881 39.46623798 37.11957906 35.16566323 33.67292833\n", + " 32.70458448 32.30781794 45.0829242 42.05181002 39.27748601 36.81804721\n", + " 34.74043472 33.1165898 32.01563284 31.49245123 32.30781794 27.92274647\n", + " 23.53818074 19.15446803 14.77236778 10.39391962 6.02708817 1.76054813\n", + " 31.49245123 27.11255561 22.73517913 18.3621235 13.99743906 9.65248838\n", + " 5.37533955 1.76054813 43.75905359 40.32550839 37.35292806 34.95909888\n", + " 33.26918554 32.39354213 43.72230567 40.17242604 37.06494796 34.51955493\n", + " 32.6679006 31.63204924 30.39623387 25.02228675 19.64946278 14.27902981\n", + " 8.91530985 3.58853155 29.58337372 24.21709844 18.85636405 13.50776907\n", + " 8.19511667 3.10850472 45.06171287 45.06171287 1.78051042 1.78051042\n", + " 42.37849474 38.70556314 35.46980647 32.8008609 30.84620775 29.74698879\n", + " 38.82304306 34.77660814 31.13517347 28.05687673 25.74452154 24.41669917\n", + " 35.72566697 31.28109784 27.17523938 23.58565115 20.78160237 19.11203303\n", + " 33.21476541 28.37964838 23.77795187 19.57499171 16.08640287 13.86243725\n", + " 31.43120667 26.26984115 21.21535074 16.36705265 11.9779994 8.76739863\n", + " 30.50284606 25.15168819 19.81398425 14.50459502 9.27228848 4.40115246]\n", + "DEBUG:root:radec2pix: lat: [73.19833089 74.18249103 75.09922688 75.92116023 76.61853688 77.16100123\n", + " 77.52079342 77.67706772 73.19833089 74.20159367 75.14093371 75.98890558\n", + " 76.71531245 77.28881429 77.68005228 77.86611976 77.67706772 79.27473553\n", + " 80.90480881 82.56181915 84.24016258 85.93331116 87.63030205 89.26372814\n", + " 77.86611976 79.46663016 81.09832556 82.755367 84.43126132 86.11695715\n", + " 87.79091006 89.26372814 73.63774563 74.80227565 75.83862014 76.69292614\n", + " 77.3096353 77.64025349 73.64559076 74.835883 75.90321746 76.7930912\n", + " 77.44812351 77.8166633 78.36913095 80.34967761 82.37343442 84.43012843\n", + " 86.50734673 88.57380626 78.55945528 80.5426681 82.56690719 84.62047016\n", + " 86.68569475 88.69035885 73.20529527 73.20529527 89.25558432 89.25558432\n", + " 74.09681811 75.34210951 76.46528549 77.40781255 78.10603298 78.5008319\n", + " 75.3160395 76.72544415 78.02222799 79.13621749 79.98176995 80.46955109\n", + " 76.40729948 77.98832745 79.48016045 80.80422916 81.84813181 82.47175257\n", + " 77.31254652 79.06012758 80.75806605 82.3313541 83.64750757 84.48728684\n", + " 77.96997446 79.85669547 81.74302972 83.57869755 85.2518859 86.47101417\n", + " 78.32402093 80.29356392 82.30071175 84.32903186 86.34620527 88.21286949]\n", + "DEBUG:root:make_az_asym: xyp: [[ 0.236018 -31.56946754]\n", + " [ 0.23651287 -27.18303899]\n", + " [ 0.23700774 -22.79661046]\n", + " [ 0.23750261 -18.41018192]\n", + " [ 0.23799748 -14.02375336]\n", + " [ 0.23849235 -9.63732482]\n", + " [ 0.23898721 -5.25089628]\n", + " [ 0.23948208 -0.86446773]\n", + " [ 0.236018 -31.56946754]\n", + " [ 4.62244655 -31.56996241]\n", + " [ 9.00887509 -31.57045728]\n", + " [ 13.39530363 -31.57095214]\n", + " [ 17.78173218 -31.57144701]\n", + " [ 22.16816072 -31.57194188]\n", + " [ 26.55458927 -31.57243675]\n", + " [ 30.94101781 -31.57293162]\n", + " [ 0.23948208 -0.86446773]\n", + " [ 4.62591062 -0.8649626 ]\n", + " [ 9.01233917 -0.86545747]\n", + " [ 13.39876771 -0.86595234]\n", + " [ 17.78519626 -0.86644721]\n", + " [ 22.1716248 -0.86694208]\n", + " [ 26.55805334 -0.86743695]\n", + " [ 30.94448189 -0.86793181]\n", + " [ 30.94101781 -31.57293162]\n", + " [ 30.94151268 -27.18650307]\n", + " [ 30.94200754 -22.80007453]\n", + " [ 30.94250242 -18.41364599]\n", + " [ 30.94299728 -14.02721745]\n", + " [ 30.94349215 -9.6407889 ]\n", + " [ 30.94398702 -5.25436036]\n", + " [ 30.94448189 -0.86793181]\n", + " [ 0.25123377 -29.65696924]\n", + " [ 0.25184028 -24.28096928]\n", + " [ 0.25244679 -18.90496931]\n", + " [ 0.2530533 -13.52896935]\n", + " [ 0.25365981 -8.15296938]\n", + " [ 0.25426632 -2.77696942]\n", + " [ 2.14851968 -31.5546833 ]\n", + " [ 7.52451965 -31.55528981]\n", + " [ 12.90051962 -31.55589633]\n", + " [ 18.27651958 -31.55650284]\n", + " [ 23.65251954 -31.55710934]\n", + " [ 29.02851952 -31.55771586]\n", + " [ 2.15198038 -0.8796835 ]\n", + " [ 7.52798035 -0.88029001]\n", + " [ 12.90398031 -0.88089652]\n", + " [ 18.27998027 -0.88150303]\n", + " [ 23.65598025 -0.88210954]\n", + " [ 29.03198021 -0.88271605]\n", + " [ 30.92623357 -29.66042994]\n", + " [ 30.92684009 -24.28442998]\n", + " [ 30.9274466 -18.90843001]\n", + " [ 30.9280531 -13.53243004]\n", + " [ 30.92865961 -8.15643008]\n", + " [ 30.92926612 -2.78043011]\n", + " [ 0.2510197 -31.55446923]\n", + " [ 0.2510197 -31.55446923]\n", + " [ 30.9294802 -0.88293012]\n", + " [ 30.9294802 -0.88293012]\n", + " [ 2.14873376 -29.65718332]\n", + " [ 7.52473372 -29.65778983]\n", + " [ 12.90073369 -29.65839633]\n", + " [ 18.27673365 -29.65900285]\n", + " [ 23.65273362 -29.65960936]\n", + " [ 29.02873359 -29.66021587]\n", + " [ 2.14934027 -24.28118335]\n", + " [ 7.52534023 -24.28178986]\n", + " [ 12.9013402 -24.28239637]\n", + " [ 18.27734016 -24.28300288]\n", + " [ 23.65334013 -24.28360939]\n", + " [ 29.02934009 -24.2842159 ]\n", + " [ 2.14994678 -18.90518338]\n", + " [ 7.52594674 -18.90578989]\n", + " [ 12.90194671 -18.9063964 ]\n", + " [ 18.27794667 -18.90700292]\n", + " [ 23.65394664 -18.90760943]\n", + " [ 29.0299466 -18.90821593]\n", + " [ 2.15055329 -13.52918342]\n", + " [ 7.52655325 -13.52978993]\n", + " [ 12.90255322 -13.53039644]\n", + " [ 18.27855318 -13.53100295]\n", + " [ 23.65455315 -13.53160946]\n", + " [ 29.03055312 -13.53221597]\n", + " [ 2.1511598 -8.15318346]\n", + " [ 7.52715976 -8.15378996]\n", + " [ 12.90315973 -8.15439647]\n", + " [ 18.27915969 -8.15500298]\n", + " [ 23.65515966 -8.15560949]\n", + " [ 29.03115962 -8.156216 ]\n", + " [ 2.1517663 -2.77718348]\n", + " [ 7.52776627 -2.77779 ]\n", + " [ 12.90376624 -2.77839651]\n", + " [ 18.2797662 -2.77900302]\n", + " [ 23.65576617 -2.77960953]\n", + " [ 29.03176613 -2.78021604]]\n", + "DEBUG:root:make_az_asym: xyp: shape: (96, 2)\n", + "DEBUG:root:radec2pix: camVec: [[-0.20650899 -0.20834684 -0.209912 -0.2112049 -0.21222492 -0.21297066\n", + " -0.21344048 -0.21363303 -0.20650899 -0.18010636 -0.15299311 -0.12528058\n", + " -0.09707928 -0.06849975 -0.03965325 -0.01065205 -0.21363303 -0.1862962\n", + " -0.15824793 -0.12959237 -0.10043485 -0.07088401 -0.04105265 -0.01105755\n", + " -0.01065205 -0.01075054 -0.01083605 -0.01090831 -0.01096697 -0.01101162\n", + " -0.0110419 -0.01105755 -0.20725456 -0.20932255 -0.21098167 -0.21223121\n", + " -0.21306867 -0.2134911 -0.19509826 -0.16224603 -0.12843717 -0.09387541\n", + " -0.05876435 -0.02330924 -0.20180806 -0.16781243 -0.13285166 -0.09711907\n", + " -0.06081473 -0.02414801 -0.01079628 -0.01090926 -0.01100231 -0.01107479\n", + " -0.01112598 -0.01115523 -0.20642679 -0.20642679 -0.01116024 -0.01116024\n", + " -0.19587779 -0.16288944 -0.12894461 -0.09424616 -0.05899718 -0.02340304\n", + " -0.19782623 -0.16450046 -0.13021766 -0.09517804 -0.05958347 -0.0236399\n", + " -0.19939086 -0.16579789 -0.13124607 -0.09593306 -0.06005988 -0.02383341\n", + " -0.20057035 -0.16677881 -0.13202594 -0.09650734 -0.06042346 -0.02398226\n", + " -0.20136156 -0.16743861 -0.13255205 -0.09689601 -0.0606707 -0.02408492\n", + " -0.20176105 -0.16777281 -0.13281959 -0.09709479 -0.06079851 -0.02414006]\n", + " [-0.20112017 -0.17462343 -0.14743759 -0.11967398 -0.09144325 -0.06285614\n", + " -0.0340241 -0.00505944 -0.20112017 -0.20295163 -0.20451753 -0.20581845\n", + " -0.20685386 -0.20762236 -0.2081222 -0.20835189 -0.00505944 -0.0050993\n", + " -0.00513287 -0.00516008 -0.00518078 -0.00519482 -0.00520206 -0.00520239\n", + " -0.20835189 -0.18087002 -0.15269708 -0.12393724 -0.09469638 -0.06508391\n", + " -0.03521344 -0.00520239 -0.18966571 -0.15671259 -0.12283514 -0.0882373\n", + " -0.053123 -0.01769778 -0.20186172 -0.20392662 -0.20559352 -0.20686189\n", + " -0.20772922 -0.20819238 -0.00517714 -0.00522278 -0.00525872 -0.00528472\n", + " -0.0053005 -0.00530579 -0.19646103 -0.1623014 -0.12720719 -0.09137251\n", + " -0.05499882 -0.01829695 -0.20103758 -0.20103758 -0.00530513 -0.00530513\n", + " -0.19044022 -0.19238166 -0.19395017 -0.19514465 -0.19596195 -0.19639843\n", + " -0.15734701 -0.15893973 -0.16022981 -0.16121459 -0.16188952 -0.16224993\n", + " -0.12332956 -0.12457282 -0.12558234 -0.12635458 -0.12688447 -0.12716713\n", + " -0.08859098 -0.08948154 -0.09020602 -0.09076095 -0.09114176 -0.09134421\n", + " -0.05333481 -0.05386844 -0.05430277 -0.0546353 -0.05486289 -0.05498267\n", + " -0.01776673 -0.01794001 -0.01808024 -0.01818657 -0.01825788 -0.01829321]\n", + " [ 0.95755142 0.96233999 0.96653976 0.97008795 0.97293305 0.97503467\n", + " 0.97636342 0.97690088 0.95755142 0.96248238 0.96683281 0.97053776\n", + " 0.97354358 0.97580774 0.97729871 0.97799592 0.97690088 0.98248039\n", + " 0.98738607 0.99155393 0.99493015 0.99747104 0.99914344 0.99992533\n", + " 0.97799592 0.98344825 0.98821363 0.9922301 0.99544579 0.99781904\n", + " 0.99931881 0.99992533 0.9597252 0.96520735 0.96974134 0.97322767\n", + " 0.97559197 0.97678469 0.95978566 0.96544816 0.97017277 0.97385603\n", + " 0.97641964 0.97781011 0.97941141 0.98580511 0.99112198 0.99525874\n", + " 0.998135 0.99969431 0.98045219 0.98668092 0.99181514 0.9957552\n", + " 0.99842443 0.99977036 0.95758648 0.95758648 0.99992365 0.99992365\n", + " 0.96195864 0.96770674 0.97250019 0.97623574 0.97883515 0.98024484\n", + " 0.96752607 0.97348742 0.97845274 0.98231919 0.98500842 0.98646648\n", + " 0.97212813 0.97826002 0.98336338 0.98733549 0.99009754 0.99159492\n", + " 0.9756655 0.9819256 0.98713324 0.99118554 0.99400311 0.99553056\n", + " 0.97806386 0.98440972 0.98968741 0.99379381 0.99664895 0.99819679\n", + " 0.97927362 0.98566244 0.99097531 0.99510896 0.99798306 0.9995412 ]]\n", + "DEBUG:root:radec2pix: xyfp: [[ -0.230877 31.363511 ]\n", + " [ -0.230877 26.97708243]\n", + " [ -0.230877 22.59065386]\n", + " [ -0.230877 18.20422528]\n", + " [ -0.230877 13.81779671]\n", + " [ -0.230877 9.43136815]\n", + " [ -0.230877 5.04493957]\n", + " [ -0.230877 0.658511 ]\n", + " [ -0.230877 31.363511 ]\n", + " [ -4.61730557 31.363511 ]\n", + " [ -9.00373414 31.363511 ]\n", + " [-13.39016272 31.363511 ]\n", + " [-17.77659129 31.363511 ]\n", + " [-22.16301986 31.363511 ]\n", + " [-26.54944843 31.363511 ]\n", + " [-30.935877 31.363511 ]\n", + " [ -0.230877 0.658511 ]\n", + " [ -4.61730558 0.658511 ]\n", + " [ -9.00373414 0.658511 ]\n", + " [-13.39016271 0.658511 ]\n", + " [-17.77659128 0.658511 ]\n", + " [-22.16301986 0.658511 ]\n", + " [-26.54944843 0.658511 ]\n", + " [-30.935877 0.658511 ]\n", + " [-30.935877 31.363511 ]\n", + " [-30.935877 26.97708243]\n", + " [-30.935877 22.59065386]\n", + " [-30.935877 18.20422528]\n", + " [-30.935877 13.81779671]\n", + " [-30.935877 9.43136814]\n", + " [-30.935877 5.04493957]\n", + " [-30.935877 0.658511 ]\n", + " [ -0.245877 29.451011 ]\n", + " [ -0.245877 24.075011 ]\n", + " [ -0.245877 18.699011 ]\n", + " [ -0.245877 13.323011 ]\n", + " [ -0.245877 7.947011 ]\n", + " [ -0.245877 2.571011 ]\n", + " [ -2.143377 31.348511 ]\n", + " [ -7.519377 31.348511 ]\n", + " [-12.895377 31.348511 ]\n", + " [-18.271377 31.348511 ]\n", + " [-23.647377 31.348511 ]\n", + " [-29.023377 31.348511 ]\n", + " [ -2.143377 0.673511 ]\n", + " [ -7.519377 0.673511 ]\n", + " [-12.895377 0.673511 ]\n", + " [-18.271377 0.673511 ]\n", + " [-23.64737701 0.673511 ]\n", + " [-29.023377 0.673511 ]\n", + " [-30.920877 29.451011 ]\n", + " [-30.920877 24.075011 ]\n", + " [-30.920877 18.699011 ]\n", + " [-30.920877 13.323011 ]\n", + " [-30.920877 7.947011 ]\n", + " [-30.920877 2.571011 ]\n", + " [ -0.245877 31.348511 ]\n", + " [ -0.245877 31.348511 ]\n", + " [-30.920877 0.673511 ]\n", + " [-30.920877 0.673511 ]\n", + " [ -2.143377 29.451011 ]\n", + " [ -7.519377 29.451011 ]\n", + " [-12.895377 29.451011 ]\n", + " [-18.271377 29.451011 ]\n", + " [-23.647377 29.451011 ]\n", + " [-29.023377 29.451011 ]\n", + " [ -2.143377 24.075011 ]\n", + " [ -7.519377 24.075011 ]\n", + " [-12.895377 24.075011 ]\n", + " [-18.271377 24.075011 ]\n", + " [-23.647377 24.075011 ]\n", + " [-29.023377 24.075011 ]\n", + " [ -2.143377 18.699011 ]\n", + " [ -7.519377 18.699011 ]\n", + " [-12.895377 18.699011 ]\n", + " [-18.271377 18.699011 ]\n", + " [-23.647377 18.699011 ]\n", + " [-29.023377 18.699011 ]\n", + " [ -2.143377 13.323011 ]\n", + " [ -7.519377 13.323011 ]\n", + " [-12.895377 13.323011 ]\n", + " [-18.271377 13.323011 ]\n", + " [-23.647377 13.323011 ]\n", + " [-29.023377 13.323011 ]\n", + " [ -2.143377 7.947011 ]\n", + " [ -7.519377 7.947011 ]\n", + " [-12.895377 7.947011 ]\n", + " [-18.271377 7.947011 ]\n", + " [-23.647377 7.947011 ]\n", + " [-29.023377 7.947011 ]\n", + " [ -2.143377 2.571011 ]\n", + " [ -7.519377 2.571011 ]\n", + " [-12.895377 2.571011 ]\n", + " [-18.271377 2.571011 ]\n", + " [-23.647377 2.571011 ]\n", + " [-29.023377 2.571011 ]]\n", + "DEBUG:root:radec2pix: camVec Shape: (3, 96)\n", + "DEBUG:root:radec2pix: xyfp Shape: (96, 2)\n", + "DEBUG:root:optics_fp: cphi: [0.71674184 0.76675024 0.81864942 0.87035228 0.91865771 0.95932569\n", + " 0.98767201 0.99974255 0.71674184 0.66409483 0.59932455 0.52022133\n", + " 0.42506968 0.31345852 0.18722881 0.05105417 0.99974255 0.99965353\n", + " 0.99950987 0.99925593 0.99874223 0.99744464 0.99234175 0.9056856\n", + " 0.05105417 0.05923154 0.07055215 0.08725098 0.11432168 0.16558509\n", + " 0.29698694 0.9056856 0.73806414 0.80084934 0.86451924 0.92365062\n", + " 0.9704975 0.99665945 0.6953044 0.6229226 0.53010496 0.41345588\n", + " 0.27232584 0.11128947 0.99969644 0.99954923 0.99926436 0.99859785\n", + " 0.99637691 0.97728259 0.0548278 0.06688083 0.08577093 0.11956053\n", + " 0.19678357 0.51804091 0.7167462 0.7167462 0.90395966 0.90395966\n", + " 0.7173329 0.64650885 0.55392153 0.43509499 0.28838199 0.1183142\n", + " 0.78296688 0.7194824 0.6309635 0.50857972 0.34543889 0.14404729\n", + " 0.85078398 0.79980651 0.72282072 0.60489433 0.42782202 0.18390653\n", + " 0.9150296 0.88149415 0.82599605 0.72871014 0.55254711 0.25338228\n", + " 0.96687862 0.95220074 0.92565817 0.87139471 0.74187378 0.40036553\n", + " 0.99622933 0.99443943 0.99100871 0.9831251 0.95810564 0.79702588]\n", + "DEBUG:root:optics_fp: sphi: [0.69733861 0.64194554 0.57429359 0.49242959 0.39505443 0.28230164\n", + " 0.15653753 0.02269007 0.69733861 0.74764835 0.80050614 0.85403148\n", + " 0.90516063 0.94960189 0.98231633 0.99869589 0.02269007 0.02632152\n", + " 0.03130538 0.03856929 0.05013934 0.07144362 0.12352264 0.42394999\n", + " 0.99869589 0.99824427 0.99750809 0.99618636 0.99344379 0.98619551\n", + " 0.95488154 0.42394999 0.67473055 0.59886588 0.50259973 0.38323562\n", + " 0.24111118 0.08166976 0.71871537 0.78228347 0.84793203 0.91052415\n", + " 0.96220509 0.99378803 0.02463779 0.03002235 0.03835014 0.05293717\n", + " 0.08504731 0.21194041 0.99849582 0.99776097 0.99631488 0.99282691\n", + " 0.98044695 0.85535584 0.69733413 0.69733413 0.42761774 0.42761774\n", + " 0.69673058 0.76290649 0.83256888 0.90038456 0.95751545 0.99297621\n", + " 0.62206339 0.69451068 0.77581252 0.86101491 0.93844125 0.9895708\n", + " 0.52551558 0.6002579 0.6910356 0.79630575 0.903863 0.98294374\n", + " 0.40338671 0.47219495 0.5636759 0.68482227 0.83348167 0.96736623\n", + " 0.25523664 0.305473 0.37836089 0.49058257 0.67053956 0.91635552\n", + " 0.08675898 0.10531014 0.13379739 0.18293452 0.28641505 0.60394515]\n", + "DEBUG:root:radec2pix: lat: [73.24843796 74.22959053 75.14101603 75.95564397 76.6437957 77.17522107\n", + " 77.52247637 77.66531399 73.24843796 74.25938156 75.20604331 76.06127099\n", + " 76.79469021 77.37449152 77.77070397 77.95983585 77.66531399 79.26403549\n", + " 80.8954867 82.55419485 84.2348008 85.93154111 87.63625009 89.30890983\n", + " 77.95983585 79.5631834 81.19741545 82.85654952 84.53396682 86.22024\n", + " 87.89143193 89.30890983 73.68688931 74.8461168 75.87404737 76.71704667\n", + " 77.31977046 77.63442603 73.69912883 74.89851762 75.9747656 76.87322604\n", + " 77.53566935 77.90931811 78.357841 80.33991917 82.36567874 84.42519517\n", + " 86.5076147 88.59172382 78.65442708 80.64093339 82.6678651 84.72327772\n", + " 86.78866387 88.77999774 73.25542451 73.25542451 89.30107513 89.30107513\n", + " 74.14922787 75.40361568 76.5361131 77.48786454 78.19419066 78.59463145\n", + " 75.36296624 76.78183851 78.08930019 79.21461778 80.0707569 80.56622359\n", + " 76.44568445 78.03639269 79.53999931 80.87766645 81.93562678 82.57036945\n", + " 77.33928008 79.09582585 80.80551049 82.39402202 83.72877916 84.58613925\n", + " 77.98201104 79.8754942 81.77128989 83.62092117 85.31596639 86.56531268\n", + " 78.31903282 80.2916347 82.30308639 84.33811541 86.36841377 88.27312586]\n", + "DEBUG:root:mm_to_pix: fitpx: [[0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]]\n", + "DEBUG:root:mm_to_pix: fitpx.shape: (96, 2)\n", + "DEBUG:root:optics_fp: xyfp: [[ -0.172993 31.426621 ]\n", + " [ -0.172993 27.04019243]\n", + " [ -0.172993 22.65376385]\n", + " [ -0.172993 18.26733528]\n", + " [ -0.172993 13.88090671]\n", + " [ -0.172993 9.49447814]\n", + " [ -0.172993 5.10804957]\n", + " [ -0.172993 0.721621 ]\n", + " [ -0.172993 31.426621 ]\n", + " [ -4.55942157 31.426621 ]\n", + " [ -8.94585014 31.426621 ]\n", + " [-13.33227871 31.426621 ]\n", + " [-17.71870729 31.426621 ]\n", + " [-22.10513586 31.426621 ]\n", + " [-26.49156443 31.426621 ]\n", + " [-30.877993 31.426621 ]\n", + " [ -0.172993 0.721621 ]\n", + " [ -4.55942157 0.721621 ]\n", + " [ -8.94585014 0.721621 ]\n", + " [-13.33227872 0.721621 ]\n", + " [-17.71870728 0.721621 ]\n", + " [-22.10513586 0.721621 ]\n", + " [-26.49156443 0.721621 ]\n", + " [-30.877993 0.721621 ]\n", + " [-30.877993 31.426621 ]\n", + " [-30.877993 27.04019243]\n", + " [-30.877993 22.65376385]\n", + " [-30.877993 18.26733529]\n", + " [-30.877993 13.88090671]\n", + " [-30.877993 9.49447814]\n", + " [-30.877993 5.10804957]\n", + " [-30.877993 0.721621 ]\n", + " [ -0.187993 29.514121 ]\n", + " [ -0.187993 24.138121 ]\n", + " [ -0.187993 18.76212101]\n", + " [ -0.187993 13.386121 ]\n", + " [ -0.187993 8.010121 ]\n", + " [ -0.187993 2.634121 ]\n", + " [ -2.085493 31.411621 ]\n", + " [ -7.461493 31.411621 ]\n", + " [-12.837493 31.411621 ]\n", + " [-18.213493 31.411621 ]\n", + " [-23.589493 31.411621 ]\n", + " [-28.965493 31.411621 ]\n", + " [ -2.085493 0.736621 ]\n", + " [ -7.461493 0.736621 ]\n", + " [-12.837493 0.736621 ]\n", + " [-18.213493 0.736621 ]\n", + " [-23.58949299 0.736621 ]\n", + " [-28.965493 0.736621 ]\n", + " [-30.862993 29.514121 ]\n", + " [-30.862993 24.138121 ]\n", + " [-30.862993 18.762121 ]\n", + " [-30.862993 13.386121 ]\n", + " [-30.862993 8.010121 ]\n", + " [-30.862993 2.634121 ]\n", + " [ -0.187993 31.411621 ]\n", + " [ -0.187993 31.411621 ]\n", + " [-30.862993 0.736621 ]\n", + " [-30.862993 0.736621 ]\n", + " [ -2.085493 29.514121 ]\n", + " [ -7.461493 29.514121 ]\n", + " [-12.837493 29.514121 ]\n", + " [-18.213493 29.514121 ]\n", + " [-23.589493 29.514121 ]\n", + " [-28.965493 29.514121 ]\n", + " [ -2.085493 24.138121 ]\n", + " [ -7.461493 24.138121 ]\n", + " [-12.837493 24.138121 ]\n", + " [-18.213493 24.138121 ]\n", + " [-23.589493 24.138121 ]\n", + " [-28.965493 24.138121 ]\n", + " [ -2.085493 18.762121 ]\n", + " [ -7.461493 18.762121 ]\n", + " [-12.837493 18.762121 ]\n", + " [-18.213493 18.762121 ]\n", + " [-23.589493 18.762121 ]\n", + " [-28.965493 18.762121 ]\n", + " [ -2.085493 13.386121 ]\n", + " [ -7.461493 13.386121 ]\n", + " [-12.837493 13.386121 ]\n", + " [-18.213493 13.386121 ]\n", + " [-23.589493 13.386121 ]\n", + " [-28.965493 13.386121 ]\n", + " [ -2.085493 8.010121 ]\n", + " [ -7.461493 8.010121 ]\n", + " [-12.837493 8.010121 ]\n", + " [-18.213493 8.010121 ]\n", + " [-23.589493 8.010121 ]\n", + " [-28.965493 8.010121 ]\n", + " [ -2.085493 2.634121 ]\n", + " [ -7.461493 2.634121 ]\n", + " [-12.837493 2.634121 ]\n", + " [-18.213493 2.634121 ]\n", + " [-23.589493 2.634121 ]\n", + " [-28.965493 2.634121 ]]\n", + "DEBUG:root:optics_fp: xyfp shape: (96, 2)\n", + "DEBUG:root:radec2pix: xyfp: [[ 0.236018 -31.56946754]\n", + " [ 0.23651287 -27.18303899]\n", + " [ 0.23700774 -22.79661046]\n", + " [ 0.23750261 -18.41018192]\n", + " [ 0.23799748 -14.02375336]\n", + " [ 0.23849235 -9.63732482]\n", + " [ 0.23898721 -5.25089628]\n", + " [ 0.23948208 -0.86446773]\n", + " [ 0.236018 -31.56946754]\n", + " [ 4.62244655 -31.56996241]\n", + " [ 9.00887509 -31.57045728]\n", + " [ 13.39530363 -31.57095214]\n", + " [ 17.78173218 -31.57144701]\n", + " [ 22.16816072 -31.57194188]\n", + " [ 26.55458927 -31.57243675]\n", + " [ 30.94101781 -31.57293162]\n", + " [ 0.23948208 -0.86446773]\n", + " [ 4.62591062 -0.8649626 ]\n", + " [ 9.01233917 -0.86545747]\n", + " [ 13.39876771 -0.86595234]\n", + " [ 17.78519626 -0.86644721]\n", + " [ 22.1716248 -0.86694208]\n", + " [ 26.55805334 -0.86743695]\n", + " [ 30.94448189 -0.86793181]\n", + " [ 30.94101781 -31.57293162]\n", + " [ 30.94151268 -27.18650307]\n", + " [ 30.94200754 -22.80007453]\n", + " [ 30.94250242 -18.41364599]\n", + " [ 30.94299728 -14.02721745]\n", + " [ 30.94349215 -9.6407889 ]\n", + " [ 30.94398702 -5.25436036]\n", + " [ 30.94448189 -0.86793181]\n", + " [ 0.25123377 -29.65696924]\n", + " [ 0.25184028 -24.28096928]\n", + " [ 0.25244679 -18.90496931]\n", + " [ 0.2530533 -13.52896935]\n", + " [ 0.25365981 -8.15296938]\n", + " [ 0.25426632 -2.77696942]\n", + " [ 2.14851968 -31.5546833 ]\n", + " [ 7.52451965 -31.55528981]\n", + " [ 12.90051962 -31.55589633]\n", + " [ 18.27651958 -31.55650284]\n", + " [ 23.65251954 -31.55710934]\n", + " [ 29.02851952 -31.55771586]\n", + " [ 2.15198038 -0.8796835 ]\n", + " [ 7.52798035 -0.88029001]\n", + " [ 12.90398031 -0.88089652]\n", + " [ 18.27998027 -0.88150303]\n", + " [ 23.65598025 -0.88210954]\n", + " [ 29.03198021 -0.88271605]\n", + " [ 30.92623357 -29.66042994]\n", + " [ 30.92684009 -24.28442998]\n", + " [ 30.9274466 -18.90843001]\n", + " [ 30.9280531 -13.53243004]\n", + " [ 30.92865961 -8.15643008]\n", + " [ 30.92926612 -2.78043011]\n", + " [ 0.2510197 -31.55446923]\n", + " [ 0.2510197 -31.55446923]\n", + " [ 30.9294802 -0.88293012]\n", + " [ 30.9294802 -0.88293012]\n", + " [ 2.14873376 -29.65718332]\n", + " [ 7.52473372 -29.65778983]\n", + " [ 12.90073369 -29.65839633]\n", + " [ 18.27673365 -29.65900285]\n", + " [ 23.65273362 -29.65960936]\n", + " [ 29.02873359 -29.66021587]\n", + " [ 2.14934027 -24.28118335]\n", + " [ 7.52534023 -24.28178986]\n", + " [ 12.9013402 -24.28239637]\n", + " [ 18.27734016 -24.28300288]\n", + " [ 23.65334013 -24.28360939]\n", + " [ 29.02934009 -24.2842159 ]\n", + " [ 2.14994678 -18.90518338]\n", + " [ 7.52594674 -18.90578989]\n", + " [ 12.90194671 -18.9063964 ]\n", + " [ 18.27794667 -18.90700292]\n", + " [ 23.65394664 -18.90760943]\n", + " [ 29.0299466 -18.90821593]\n", + " [ 2.15055329 -13.52918342]\n", + " [ 7.52655325 -13.52978993]\n", + " [ 12.90255322 -13.53039644]\n", + " [ 18.27855318 -13.53100295]\n", + " [ 23.65455315 -13.53160946]\n", + " [ 29.03055312 -13.53221597]\n", + " [ 2.1511598 -8.15318346]\n", + " [ 7.52715976 -8.15378996]\n", + " [ 12.90315973 -8.15439647]\n", + " [ 18.27915969 -8.15500298]\n", + " [ 23.65515966 -8.15560949]\n", + " [ 29.03115962 -8.156216 ]\n", + " [ 2.1517663 -2.77718348]\n", + " [ 7.52776627 -2.77779 ]\n", + " [ 12.90376624 -2.77839651]\n", + " [ 18.2797662 -2.77900302]\n", + " [ 23.65576617 -2.77960953]\n", + " [ 29.03176613 -2.78021604]]\n", + "DEBUG:root:radec2pix: xyfp Shape: (96, 2)\n", + "DEBUG:root:cartToSphere: vec: [[-0.20650899 -0.20112017 0.95755142]\n", + " [-0.20834684 -0.17462343 0.96233999]\n", + " [-0.209912 -0.14743759 0.96653976]\n", + " [-0.2112049 -0.11967398 0.97008795]\n", + " [-0.21222492 -0.09144325 0.97293305]\n", + " [-0.21297066 -0.06285614 0.97503467]\n", + " [-0.21344048 -0.0340241 0.97636342]\n", + " [-0.21363303 -0.00505944 0.97690088]\n", + " [-0.20650899 -0.20112017 0.95755142]\n", + " [-0.18010636 -0.20295163 0.96248238]\n", + " [-0.15299311 -0.20451753 0.96683281]\n", + " [-0.12528058 -0.20581845 0.97053776]\n", + " [-0.09707928 -0.20685386 0.97354358]\n", + " [-0.06849975 -0.20762236 0.97580774]\n", + " [-0.03965325 -0.2081222 0.97729871]\n", + " [-0.01065205 -0.20835189 0.97799592]\n", + " [-0.21363303 -0.00505944 0.97690088]\n", + " [-0.1862962 -0.0050993 0.98248039]\n", + " [-0.15824793 -0.00513287 0.98738607]\n", + " [-0.12959237 -0.00516008 0.99155393]\n", + " [-0.10043485 -0.00518078 0.99493015]\n", + " [-0.07088401 -0.00519482 0.99747104]\n", + " [-0.04105265 -0.00520206 0.99914344]\n", + " [-0.01105755 -0.00520239 0.99992533]\n", + " [-0.01065205 -0.20835189 0.97799592]\n", + " [-0.01075054 -0.18087002 0.98344825]\n", + " [-0.01083605 -0.15269708 0.98821363]\n", + " [-0.01090831 -0.12393724 0.9922301 ]\n", + " [-0.01096697 -0.09469638 0.99544579]\n", + " [-0.01101162 -0.06508391 0.99781904]\n", + " [-0.0110419 -0.03521344 0.99931881]\n", + " [-0.01105755 -0.00520239 0.99992533]\n", + " [-0.20725456 -0.18966571 0.9597252 ]\n", + " [-0.20932255 -0.15671259 0.96520735]\n", + " [-0.21098167 -0.12283514 0.96974134]\n", + " [-0.21223121 -0.0882373 0.97322767]\n", + " [-0.21306867 -0.053123 0.97559197]\n", + " [-0.2134911 -0.01769778 0.97678469]\n", + " [-0.19509826 -0.20186172 0.95978566]\n", + " [-0.16224603 -0.20392662 0.96544816]\n", + " [-0.12843717 -0.20559352 0.97017277]\n", + " [-0.09387541 -0.20686189 0.97385603]\n", + " [-0.05876435 -0.20772922 0.97641964]\n", + " [-0.02330924 -0.20819238 0.97781011]\n", + " [-0.20180806 -0.00517714 0.97941141]\n", + " [-0.16781243 -0.00522278 0.98580511]\n", + " [-0.13285166 -0.00525872 0.99112198]\n", + " [-0.09711907 -0.00528472 0.99525874]\n", + " [-0.06081473 -0.0053005 0.998135 ]\n", + " [-0.02414801 -0.00530579 0.99969431]\n", + " [-0.01079628 -0.19646103 0.98045219]\n", + " [-0.01090926 -0.1623014 0.98668092]\n", + " [-0.01100231 -0.12720719 0.99181514]\n", + " [-0.01107479 -0.09137251 0.9957552 ]\n", + " [-0.01112598 -0.05499882 0.99842443]\n", + " [-0.01115523 -0.01829695 0.99977036]\n", + " [-0.20642679 -0.20103758 0.95758648]\n", + " [-0.20642679 -0.20103758 0.95758648]\n", + " [-0.01116024 -0.00530513 0.99992365]\n", + " [-0.01116024 -0.00530513 0.99992365]\n", + " [-0.19587779 -0.19044022 0.96195864]\n", + " [-0.16288944 -0.19238166 0.96770674]\n", + " [-0.12894461 -0.19395017 0.97250019]\n", + " [-0.09424616 -0.19514465 0.97623574]\n", + " [-0.05899718 -0.19596195 0.97883515]\n", + " [-0.02340304 -0.19639843 0.98024484]\n", + " [-0.19782623 -0.15734701 0.96752607]\n", + " [-0.16450046 -0.15893973 0.97348742]\n", + " [-0.13021766 -0.16022981 0.97845274]\n", + " [-0.09517804 -0.16121459 0.98231919]\n", + " [-0.05958347 -0.16188952 0.98500842]\n", + " [-0.0236399 -0.16224993 0.98646648]\n", + " [-0.19939086 -0.12332956 0.97212813]\n", + " [-0.16579789 -0.12457282 0.97826002]\n", + " [-0.13124607 -0.12558234 0.98336338]\n", + " [-0.09593306 -0.12635458 0.98733549]\n", + " [-0.06005988 -0.12688447 0.99009754]\n", + " [-0.02383341 -0.12716713 0.99159492]\n", + " [-0.20057035 -0.08859098 0.9756655 ]\n", + " [-0.16677881 -0.08948154 0.9819256 ]\n", + " [-0.13202594 -0.09020602 0.98713324]\n", + " [-0.09650734 -0.09076095 0.99118554]\n", + " [-0.06042346 -0.09114176 0.99400311]\n", + " [-0.02398226 -0.09134421 0.99553056]\n", + " [-0.20136156 -0.05333481 0.97806386]\n", + " [-0.16743861 -0.05386844 0.98440972]\n", + " [-0.13255205 -0.05430277 0.98968741]\n", + " [-0.09689601 -0.0546353 0.99379381]\n", + " [-0.0606707 -0.05486289 0.99664895]\n", + " [-0.02408492 -0.05498267 0.99819679]\n", + " [-0.20176105 -0.01776673 0.97927362]\n", + " [-0.16777281 -0.01794001 0.98566244]\n", + " [-0.13281959 -0.01808024 0.99097531]\n", + " [-0.09709479 -0.01818657 0.99510896]\n", + " [-0.06079851 -0.01825788 0.99798306]\n", + " [-0.02414006 -0.01829321 0.9995412 ]]\n", + "DEBUG:root:optics_fp: xyfp: [[-32.31281793 -31.43806373]\n", + " [-32.31091541 -27.05163558]\n", + " [-32.30901287 -22.66520742]\n", + " [-32.30711034 -18.27877926]\n", + " [-32.3052078 -13.8923511 ]\n", + " [-32.30330527 -9.50592294]\n", + " [-32.30140274 -5.11949478]\n", + " [-32.2995002 -0.73306663]\n", + " [-32.31281793 -31.43806373]\n", + " [-27.92638978 -31.43996627]\n", + " [-23.53996162 -31.4418688 ]\n", + " [-19.15353346 -31.44377134]\n", + " [-14.7671053 -31.44567387]\n", + " [-10.38067715 -31.44757641]\n", + " [ -5.99424899 -31.44947894]\n", + " [ -1.60782083 -31.45138147]\n", + " [-32.2995002 -0.73306663]\n", + " [-27.91307204 -0.73496916]\n", + " [-23.52664389 -0.73687169]\n", + " [-19.14021573 -0.73877423]\n", + " [-14.75378757 -0.74067676]\n", + " [-10.36735941 -0.74257929]\n", + " [ -5.98093125 -0.74448183]\n", + " [ -1.59450309 -0.74638436]\n", + " [ -1.60782083 -31.45138147]\n", + " [ -1.60591829 -27.06495331]\n", + " [ -1.60401576 -22.67852516]\n", + " [ -1.60211323 -18.292097 ]\n", + " [ -1.60021069 -13.90566884]\n", + " [ -1.59830816 -9.51924068]\n", + " [ -1.59640563 -5.13281252]\n", + " [ -1.59450309 -0.74638436]\n", + " [-32.29698843 -29.52557043]\n", + " [-32.29465669 -24.14957093]\n", + " [-32.29232495 -18.77357144]\n", + " [-32.2899932 -13.39757194]\n", + " [-32.28766146 -8.02157244]\n", + " [-32.28532972 -2.64557295]\n", + " [-30.40031161 -31.42389325]\n", + " [-25.02431212 -31.42622499]\n", + " [-19.64831262 -31.42855673]\n", + " [-14.27231313 -31.43088848]\n", + " [ -8.89631363 -31.43322022]\n", + " [ -3.52031414 -31.43555196]\n", + " [-30.38700689 -0.74889614]\n", + " [-25.01100739 -0.75122788]\n", + " [-19.6350079 -0.75355962]\n", + " [-14.25900841 -0.75589136]\n", + " [ -8.88300892 -0.7582231 ]\n", + " [ -3.50700942 -0.76055484]\n", + " [ -1.62199131 -29.53887515]\n", + " [ -1.61965957 -24.16287565]\n", + " [ -1.61732783 -18.78687616]\n", + " [ -1.61499609 -13.41087666]\n", + " [ -1.61266434 -8.03487716]\n", + " [ -1.6103326 -2.65887768]\n", + " [-32.29781143 -31.42307024]\n", + " [-32.29781143 -31.42307024]\n", + " [ -1.60950959 -0.76137785]\n", + " [ -1.60950959 -0.76137785]\n", + " [-30.3994886 -29.52639343]\n", + " [-25.02348911 -29.52872517]\n", + " [-19.64748962 -29.53105692]\n", + " [-14.27149012 -29.53338866]\n", + " [ -8.89549063 -29.5357204 ]\n", + " [ -3.51949113 -29.53805214]\n", + " [-30.39715686 -24.15039394]\n", + " [-25.02115737 -24.15272568]\n", + " [-19.64515788 -24.15505742]\n", + " [-14.26915838 -24.15738916]\n", + " [ -8.89315889 -24.1597209 ]\n", + " [ -3.51715939 -24.16205264]\n", + " [-30.39482512 -18.77439444]\n", + " [-25.01882563 -18.77672618]\n", + " [-19.64282613 -18.77905793]\n", + " [-14.26682664 -18.78138967]\n", + " [ -8.89082714 -18.78372141]\n", + " [ -3.51482765 -18.78605315]\n", + " [-30.39249338 -13.39839495]\n", + " [-25.01649389 -13.40072669]\n", + " [-19.64049439 -13.40305843]\n", + " [-14.2644949 -13.40539017]\n", + " [ -8.8884954 -13.40772191]\n", + " [ -3.51249591 -13.41005365]\n", + " [-30.39016163 -8.02239545]\n", + " [-25.01416214 -8.02472719]\n", + " [-19.63816265 -8.02705893]\n", + " [-14.26216315 -8.02939068]\n", + " [ -8.88616366 -8.03172242]\n", + " [ -3.51016417 -8.03405416]\n", + " [-30.3878299 -2.64639596]\n", + " [-25.01183041 -2.6487277 ]\n", + " [-19.63583091 -2.65105944]\n", + " [-14.25983141 -2.65339118]\n", + " [ -8.88383191 -2.65572292]\n", + " [ -3.50783243 -2.65805467]]\n", + "DEBUG:root:optics_fp: xyfp shape: (96, 2)\n", + "DEBUG:root:mm_to_pix: fitpx: [[0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]]\n", + "DEBUG:root:mm_to_pix: fitpx.shape: (96, 2)\n", + "DEBUG:root:radec2pix: xyfp: [[ -0.230877 31.363511 ]\n", + " [ -0.230877 26.97708243]\n", + " [ -0.230877 22.59065386]\n", + " [ -0.230877 18.20422528]\n", + " [ -0.230877 13.81779671]\n", + " [ -0.230877 9.43136815]\n", + " [ -0.230877 5.04493957]\n", + " [ -0.230877 0.658511 ]\n", + " [ -0.230877 31.363511 ]\n", + " [ -4.61730557 31.363511 ]\n", + " [ -9.00373414 31.363511 ]\n", + " [-13.39016272 31.363511 ]\n", + " [-17.77659129 31.363511 ]\n", + " [-22.16301986 31.363511 ]\n", + " [-26.54944843 31.363511 ]\n", + " [-30.935877 31.363511 ]\n", + " [ -0.230877 0.658511 ]\n", + " [ -4.61730558 0.658511 ]\n", + " [ -9.00373414 0.658511 ]\n", + " [-13.39016271 0.658511 ]\n", + " [-17.77659128 0.658511 ]\n", + " [-22.16301986 0.658511 ]\n", + " [-26.54944843 0.658511 ]\n", + " [-30.935877 0.658511 ]\n", + " [-30.935877 31.363511 ]\n", + " [-30.935877 26.97708243]\n", + " [-30.935877 22.59065386]\n", + " [-30.935877 18.20422528]\n", + " [-30.935877 13.81779671]\n", + " [-30.935877 9.43136814]\n", + " [-30.935877 5.04493957]\n", + " [-30.935877 0.658511 ]\n", + " [ -0.245877 29.451011 ]\n", + " [ -0.245877 24.075011 ]\n", + " [ -0.245877 18.699011 ]\n", + " [ -0.245877 13.323011 ]\n", + " [ -0.245877 7.947011 ]\n", + " [ -0.245877 2.571011 ]\n", + " [ -2.143377 31.348511 ]\n", + " [ -7.519377 31.348511 ]\n", + " [-12.895377 31.348511 ]\n", + " [-18.271377 31.348511 ]\n", + " [-23.647377 31.348511 ]\n", + " [-29.023377 31.348511 ]\n", + " [ -2.143377 0.673511 ]\n", + " [ -7.519377 0.673511 ]\n", + " [-12.895377 0.673511 ]\n", + " [-18.271377 0.673511 ]\n", + " [-23.64737701 0.673511 ]\n", + " [-29.023377 0.673511 ]\n", + " [-30.920877 29.451011 ]\n", + " [-30.920877 24.075011 ]\n", + " [-30.920877 18.699011 ]\n", + " [-30.920877 13.323011 ]\n", + " [-30.920877 7.947011 ]\n", + " [-30.920877 2.571011 ]\n", + " [ -0.245877 31.348511 ]\n", + " [ -0.245877 31.348511 ]\n", + " [-30.920877 0.673511 ]\n", + " [-30.920877 0.673511 ]\n", + " [ -2.143377 29.451011 ]\n", + " [ -7.519377 29.451011 ]\n", + " [-12.895377 29.451011 ]\n", + " [-18.271377 29.451011 ]\n", + " [-23.647377 29.451011 ]\n", + " [-29.023377 29.451011 ]\n", + " [ -2.143377 24.075011 ]\n", + " [ -7.519377 24.075011 ]\n", + " [-12.895377 24.075011 ]\n", + " [-18.271377 24.075011 ]\n", + " [-23.647377 24.075011 ]\n", + " [-29.023377 24.075011 ]\n", + " [ -2.143377 18.699011 ]\n", + " [ -7.519377 18.699011 ]\n", + " [-12.895377 18.699011 ]\n", + " [-18.271377 18.699011 ]\n", + " [-23.647377 18.699011 ]\n", + " [-29.023377 18.699011 ]\n", + " [ -2.143377 13.323011 ]\n", + " [ -7.519377 13.323011 ]\n", + " [-12.895377 13.323011 ]\n", + " [-18.271377 13.323011 ]\n", + " [-23.647377 13.323011 ]\n", + " [-29.023377 13.323011 ]\n", + " [ -2.143377 7.947011 ]\n", + " [ -7.519377 7.947011 ]\n", + " [-12.895377 7.947011 ]\n", + " [-18.271377 7.947011 ]\n", + " [-23.647377 7.947011 ]\n", + " [-29.023377 7.947011 ]\n", + " [ -2.143377 2.571011 ]\n", + " [ -7.519377 2.571011 ]\n", + " [-12.895377 2.571011 ]\n", + " [-18.271377 2.571011 ]\n", + " [-23.647377 2.571011 ]\n", + " [-29.023377 2.571011 ]]\n", + "DEBUG:root:radec2pix: lng: [224.24259986 219.96765614 215.08336296 209.53697562 203.3101935\n", + " 196.44343401 189.05719479 181.35667342 224.24259986 228.41303103\n", + " 233.20099698 238.67135193 244.85870857 251.7410006 259.21279966\n", + " 267.07328529 181.35667342 181.56790868 181.85777415 182.28018564\n", + " 182.95289983 184.19149998 187.22184671 205.19617552 267.07328529\n", + " 266.59845953 265.94084811 264.97008557 263.3938965 260.39700292\n", + " 252.59010355 205.19617552 222.46269399 216.82093439 210.20829157\n", + " 202.57559903 193.99974981 184.73881406 225.97611965 231.49389572\n", + " 238.00639827 245.59111124 254.20436521 263.6117634 181.46953067\n", + " 181.78262482 182.26677669 183.11467024 184.98120654 192.39209935\n", + " 266.85454344 266.15458823 265.05671864 263.08918181 258.56369308\n", + " 238.630299 224.24223838 224.24223838 205.42453452 205.42453452\n", + " 224.19359423 229.74542917 236.38270094 244.22153031 253.24481767\n", + " 263.2046196 218.49803362 224.01504295 230.89947742 239.44320338\n", + " 249.79385261 261.71030558 211.7381028 216.91949721 223.73668556\n", + " 232.79289096 244.66979293 259.38488067 203.8308227 208.21481457\n", + " 214.34263424 223.2424136 236.45716258 255.28910964 194.83531269\n", + " 197.83404909 202.27750364 209.41669409 222.12219565 246.34438586\n", + " 185.03238692 186.10346579 187.75181788 190.6089913 196.71508989\n", + " 217.15465227]\n", + "DEBUG:root:make_az_asym: xyp: [[ -0.172993 31.426621 ]\n", + " [ -0.172993 27.04019243]\n", + " [ -0.172993 22.65376385]\n", + " [ -0.172993 18.26733528]\n", + " [ -0.172993 13.88090671]\n", + " [ -0.172993 9.49447814]\n", + " [ -0.172993 5.10804957]\n", + " [ -0.172993 0.721621 ]\n", + " [ -0.172993 31.426621 ]\n", + " [ -4.55942157 31.426621 ]\n", + " [ -8.94585014 31.426621 ]\n", + " [-13.33227871 31.426621 ]\n", + " [-17.71870729 31.426621 ]\n", + " [-22.10513586 31.426621 ]\n", + " [-26.49156443 31.426621 ]\n", + " [-30.877993 31.426621 ]\n", + " [ -0.172993 0.721621 ]\n", + " [ -4.55942157 0.721621 ]\n", + " [ -8.94585014 0.721621 ]\n", + " [-13.33227872 0.721621 ]\n", + " [-17.71870728 0.721621 ]\n", + " [-22.10513586 0.721621 ]\n", + " [-26.49156443 0.721621 ]\n", + " [-30.877993 0.721621 ]\n", + " [-30.877993 31.426621 ]\n", + " [-30.877993 27.04019243]\n", + " [-30.877993 22.65376385]\n", + " [-30.877993 18.26733529]\n", + " [-30.877993 13.88090671]\n", + " [-30.877993 9.49447814]\n", + " [-30.877993 5.10804957]\n", + " [-30.877993 0.721621 ]\n", + " [ -0.187993 29.514121 ]\n", + " [ -0.187993 24.138121 ]\n", + " [ -0.187993 18.76212101]\n", + " [ -0.187993 13.386121 ]\n", + " [ -0.187993 8.010121 ]\n", + " [ -0.187993 2.634121 ]\n", + " [ -2.085493 31.411621 ]\n", + " [ -7.461493 31.411621 ]\n", + " [-12.837493 31.411621 ]\n", + " [-18.213493 31.411621 ]\n", + " [-23.589493 31.411621 ]\n", + " [-28.965493 31.411621 ]\n", + " [ -2.085493 0.736621 ]\n", + " [ -7.461493 0.736621 ]\n", + " [-12.837493 0.736621 ]\n", + " [-18.213493 0.736621 ]\n", + " [-23.58949299 0.736621 ]\n", + " [-28.965493 0.736621 ]\n", + " [-30.862993 29.514121 ]\n", + " [-30.862993 24.138121 ]\n", + " [-30.862993 18.762121 ]\n", + " [-30.862993 13.386121 ]\n", + " [-30.862993 8.010121 ]\n", + " [-30.862993 2.634121 ]\n", + " [ -0.187993 31.411621 ]\n", + " [ -0.187993 31.411621 ]\n", + " [-30.862993 0.736621 ]\n", + " [-30.862993 0.736621 ]\n", + " [ -2.085493 29.514121 ]\n", + " [ -7.461493 29.514121 ]\n", + " [-12.837493 29.514121 ]\n", + " [-18.213493 29.514121 ]\n", + " [-23.589493 29.514121 ]\n", + " [-28.965493 29.514121 ]\n", + " [ -2.085493 24.138121 ]\n", + " [ -7.461493 24.138121 ]\n", + " [-12.837493 24.138121 ]\n", + " [-18.213493 24.138121 ]\n", + " [-23.589493 24.138121 ]\n", + " [-28.965493 24.138121 ]\n", + " [ -2.085493 18.762121 ]\n", + " [ -7.461493 18.762121 ]\n", + " [-12.837493 18.762121 ]\n", + " [-18.213493 18.762121 ]\n", + " [-23.589493 18.762121 ]\n", + " [-28.965493 18.762121 ]\n", + " [ -2.085493 13.386121 ]\n", + " [ -7.461493 13.386121 ]\n", + " [-12.837493 13.386121 ]\n", + " [-18.213493 13.386121 ]\n", + " [-23.589493 13.386121 ]\n", + " [-28.965493 13.386121 ]\n", + " [ -2.085493 8.010121 ]\n", + " [ -7.461493 8.010121 ]\n", + " [-12.837493 8.010121 ]\n", + " [-18.213493 8.010121 ]\n", + " [-23.589493 8.010121 ]\n", + " [-28.965493 8.010121 ]\n", + " [ -2.085493 2.634121 ]\n", + " [ -7.461493 2.634121 ]\n", + " [-12.837493 2.634121 ]\n", + " [-18.213493 2.634121 ]\n", + " [-23.589493 2.634121 ]\n", + " [-28.965493 2.634121 ]]\n", + "DEBUG:root:make_az_asym: xyp: shape: (96, 2)\n", + "DEBUG:root:make_az_asym: xyp: [[ -0.172993 31.426621 ]\n", + " [ -0.172993 27.04019243]\n", + " [ -0.172993 22.65376385]\n", + " [ -0.172993 18.26733528]\n", + " [ -0.172993 13.88090671]\n", + " [ -0.172993 9.49447814]\n", + " [ -0.172993 5.10804957]\n", + " [ -0.172993 0.721621 ]\n", + " [ -0.172993 31.426621 ]\n", + " [ -4.55942157 31.426621 ]\n", + " [ -8.94585014 31.426621 ]\n", + " [-13.33227871 31.426621 ]\n", + " [-17.71870729 31.426621 ]\n", + " [-22.10513586 31.426621 ]\n", + " [-26.49156443 31.426621 ]\n", + " [-30.877993 31.426621 ]\n", + " [ -0.172993 0.721621 ]\n", + " [ -4.55942157 0.721621 ]\n", + " [ -8.94585014 0.721621 ]\n", + " [-13.33227872 0.721621 ]\n", + " [-17.71870728 0.721621 ]\n", + " [-22.10513586 0.721621 ]\n", + " [-26.49156443 0.721621 ]\n", + " [-30.877993 0.721621 ]\n", + " [-30.877993 31.426621 ]\n", + " [-30.877993 27.04019243]\n", + " [-30.877993 22.65376385]\n", + " [-30.877993 18.26733529]\n", + " [-30.877993 13.88090671]\n", + " [-30.877993 9.49447814]\n", + " [-30.877993 5.10804957]\n", + " [-30.877993 0.721621 ]\n", + " [ -0.187993 29.514121 ]\n", + " [ -0.187993 24.138121 ]\n", + " [ -0.187993 18.76212101]\n", + " [ -0.187993 13.386121 ]\n", + " [ -0.187993 8.010121 ]\n", + " [ -0.187993 2.634121 ]\n", + " [ -2.085493 31.411621 ]\n", + " [ -7.461493 31.411621 ]\n", + " [-12.837493 31.411621 ]\n", + " [-18.213493 31.411621 ]\n", + " [-23.589493 31.411621 ]\n", + " [-28.965493 31.411621 ]\n", + " [ -2.085493 0.736621 ]\n", + " [ -7.461493 0.736621 ]\n", + " [-12.837493 0.736621 ]\n", + " [-18.213493 0.736621 ]\n", + " [-23.58949299 0.736621 ]\n", + " [-28.965493 0.736621 ]\n", + " [-30.862993 29.514121 ]\n", + " [-30.862993 24.138121 ]\n", + " [-30.862993 18.762121 ]\n", + " [-30.862993 13.386121 ]\n", + " [-30.862993 8.010121 ]\n", + " [-30.862993 2.634121 ]\n", + " [ -0.187993 31.411621 ]\n", + " [ -0.187993 31.411621 ]\n", + " [-30.862993 0.736621 ]\n", + " [-30.862993 0.736621 ]\n", + " [ -2.085493 29.514121 ]\n", + " [ -7.461493 29.514121 ]\n", + " [-12.837493 29.514121 ]\n", + " [-18.213493 29.514121 ]\n", + " [-23.589493 29.514121 ]\n", + " [-28.965493 29.514121 ]\n", + " [ -2.085493 24.138121 ]\n", + " [ -7.461493 24.138121 ]\n", + " [-12.837493 24.138121 ]\n", + " [-18.213493 24.138121 ]\n", + " [-23.589493 24.138121 ]\n", + " [-28.965493 24.138121 ]\n", + " [ -2.085493 18.762121 ]\n", + " [ -7.461493 18.762121 ]\n", + " [-12.837493 18.762121 ]\n", + " [-18.213493 18.762121 ]\n", + " [-23.589493 18.762121 ]\n", + " [-28.965493 18.762121 ]\n", + " [ -2.085493 13.386121 ]\n", + " [ -7.461493 13.386121 ]\n", + " [-12.837493 13.386121 ]\n", + " [-18.213493 13.386121 ]\n", + " [-23.589493 13.386121 ]\n", + " [-28.965493 13.386121 ]\n", + " [ -2.085493 8.010121 ]\n", + " [ -7.461493 8.010121 ]\n", + " [-12.837493 8.010121 ]\n", + " [-18.213493 8.010121 ]\n", + " [-23.589493 8.010121 ]\n", + " [-28.965493 8.010121 ]\n", + " [ -2.085493 2.634121 ]\n", + " [ -7.461493 2.634121 ]\n", + " [-12.837493 2.634121 ]\n", + " [-18.213493 2.634121 ]\n", + " [-23.589493 2.634121 ]\n", + " [-28.965493 2.634121 ]]\n", + "DEBUG:root:make_az_asym: xyp: shape: (96, 2)\n", + "DEBUG:root:radec2pix: lat: [73.24603516 74.22569152 75.13651604 75.95087507 76.6389128 77.17037377\n", + " 77.51785702 77.66114392 73.24603516 74.25573072 75.20211387 76.05743745\n", + " 76.79113897 77.37139648 77.76826885 77.95827247 77.66114392 79.25921808\n", + " 80.88995617 82.54802878 84.22809839 85.92431704 87.62836983 89.29981459\n", + " 77.95827247 79.56096311 81.19447792 82.85294756 84.52972557 86.21521853\n", + " 87.88507254 89.29981459 73.68365855 74.84176377 75.86929863 76.71215801\n", + " 77.3149747 77.63003049 73.695993 74.89461964 75.97090871 76.86971486\n", + " 77.53277126 77.90734766 78.35340648 80.33462383 82.35957542 84.41843101\n", + " 86.50018709 88.58327287 78.6525924 80.63823128 82.66432935 84.71895211\n", + " 86.78327785 88.77209382 73.25300675 73.25300675 89.29197852 89.29197852\n", + " 74.14551493 75.39944683 76.53201019 77.48405712 78.19096994 78.59236983\n", + " 75.35843946 76.77706596 78.08438262 79.20977154 80.06643025 80.56299799\n", + " 76.44078432 78.03102057 79.5341606 80.87167145 81.93009942 82.56616105\n", + " 77.33417557 79.08997119 80.79891427 82.38701631 83.72204901 84.58091077\n", + " 77.9769458 79.86951112 81.76439499 83.61332437 85.3080928 86.55866797\n", + " 78.31436404 80.28605679 82.29662619 84.33088528 86.36037199 88.26434016]\n", + "DEBUG:root:make_az_asym: xyp: [[-32.31281793 -31.43806373]\n", + " [-32.31091541 -27.05163558]\n", + " [-32.30901287 -22.66520742]\n", + " [-32.30711034 -18.27877926]\n", + " [-32.3052078 -13.8923511 ]\n", + " [-32.30330527 -9.50592294]\n", + " [-32.30140274 -5.11949478]\n", + " [-32.2995002 -0.73306663]\n", + " [-32.31281793 -31.43806373]\n", + " [-27.92638978 -31.43996627]\n", + " [-23.53996162 -31.4418688 ]\n", + " [-19.15353346 -31.44377134]\n", + " [-14.7671053 -31.44567387]\n", + " [-10.38067715 -31.44757641]\n", + " [ -5.99424899 -31.44947894]\n", + " [ -1.60782083 -31.45138147]\n", + " [-32.2995002 -0.73306663]\n", + " [-27.91307204 -0.73496916]\n", + " [-23.52664389 -0.73687169]\n", + " [-19.14021573 -0.73877423]\n", + " [-14.75378757 -0.74067676]\n", + " [-10.36735941 -0.74257929]\n", + " [ -5.98093125 -0.74448183]\n", + " [ -1.59450309 -0.74638436]\n", + " [ -1.60782083 -31.45138147]\n", + " [ -1.60591829 -27.06495331]\n", + " [ -1.60401576 -22.67852516]\n", + " [ -1.60211323 -18.292097 ]\n", + " [ -1.60021069 -13.90566884]\n", + " [ -1.59830816 -9.51924068]\n", + " [ -1.59640563 -5.13281252]\n", + " [ -1.59450309 -0.74638436]\n", + " [-32.29698843 -29.52557043]\n", + " [-32.29465669 -24.14957093]\n", + " [-32.29232495 -18.77357144]\n", + " [-32.2899932 -13.39757194]\n", + " [-32.28766146 -8.02157244]\n", + " [-32.28532972 -2.64557295]\n", + " [-30.40031161 -31.42389325]\n", + " [-25.02431212 -31.42622499]\n", + " [-19.64831262 -31.42855673]\n", + " [-14.27231313 -31.43088848]\n", + " [ -8.89631363 -31.43322022]\n", + " [ -3.52031414 -31.43555196]\n", + " [-30.38700689 -0.74889614]\n", + " [-25.01100739 -0.75122788]\n", + " [-19.6350079 -0.75355962]\n", + " [-14.25900841 -0.75589136]\n", + " [ -8.88300892 -0.7582231 ]\n", + " [ -3.50700942 -0.76055484]\n", + " [ -1.62199131 -29.53887515]\n", + " [ -1.61965957 -24.16287565]\n", + " [ -1.61732783 -18.78687616]\n", + " [ -1.61499609 -13.41087666]\n", + " [ -1.61266434 -8.03487716]\n", + " [ -1.6103326 -2.65887768]\n", + " [-32.29781143 -31.42307024]\n", + " [-32.29781143 -31.42307024]\n", + " [ -1.60950959 -0.76137785]\n", + " [ -1.60950959 -0.76137785]\n", + " [-30.3994886 -29.52639343]\n", + " [-25.02348911 -29.52872517]\n", + " [-19.64748962 -29.53105692]\n", + " [-14.27149012 -29.53338866]\n", + " [ -8.89549063 -29.5357204 ]\n", + " [ -3.51949113 -29.53805214]\n", + " [-30.39715686 -24.15039394]\n", + " [-25.02115737 -24.15272568]\n", + " [-19.64515788 -24.15505742]\n", + " [-14.26915838 -24.15738916]\n", + " [ -8.89315889 -24.1597209 ]\n", + " [ -3.51715939 -24.16205264]\n", + " [-30.39482512 -18.77439444]\n", + " [-25.01882563 -18.77672618]\n", + " [-19.64282613 -18.77905793]\n", + " [-14.26682664 -18.78138967]\n", + " [ -8.89082714 -18.78372141]\n", + " [ -3.51482765 -18.78605315]\n", + " [-30.39249338 -13.39839495]\n", + " [-25.01649389 -13.40072669]\n", + " [-19.64049439 -13.40305843]\n", + " [-14.2644949 -13.40539017]\n", + " [ -8.8884954 -13.40772191]\n", + " [ -3.51249591 -13.41005365]\n", + " [-30.39016163 -8.02239545]\n", + " [-25.01416214 -8.02472719]\n", + " [-19.63816265 -8.02705893]\n", + " [-14.26216315 -8.02939068]\n", + " [ -8.88616366 -8.03172242]\n", + " [ -3.51016417 -8.03405416]\n", + " [-30.3878299 -2.64639596]\n", + " [-25.01183041 -2.6487277 ]\n", + " [-19.63583091 -2.65105944]\n", + " [-14.25983141 -2.65339118]\n", + " [ -8.88383191 -2.65572292]\n", + " [ -3.50783243 -2.65805467]]\n", + "DEBUG:root:make_az_asym: xyp: shape: (96, 2)\n", + "DEBUG:root:optics_fp: rtanth: [45.0829242 42.14007881 39.46623798 37.11957906 35.16566323 33.67292833\n", + " 32.70458448 32.30781794 45.0829242 42.05181002 39.27748601 36.81804721\n", + " 34.74043472 33.1165898 32.01563284 31.49245123 32.30781794 27.92274647\n", + " 23.53818074 19.15446803 14.77236778 10.39391962 6.02708817 1.76054813\n", + " 31.49245123 27.11255561 22.73517913 18.3621235 13.99743906 9.65248838\n", + " 5.37533955 1.76054813 43.75905359 40.32550839 37.35292806 34.95909888\n", + " 33.26918554 32.39354213 43.72230567 40.17242604 37.06494796 34.51955493\n", + " 32.6679006 31.63204924 30.39623387 25.02228675 19.64946278 14.27902981\n", + " 8.91530985 3.58853155 29.58337372 24.21709844 18.85636405 13.50776907\n", + " 8.19511667 3.10850472 45.06171287 45.06171287 1.78051042 1.78051042\n", + " 42.37849474 38.70556314 35.46980647 32.8008609 30.84620775 29.74698879\n", + " 38.82304306 34.77660814 31.13517347 28.05687673 25.74452154 24.41669917\n", + " 35.72566697 31.28109784 27.17523938 23.58565115 20.78160237 19.11203303\n", + " 33.21476541 28.37964838 23.77795187 19.57499171 16.08640287 13.86243725\n", + " 31.43120667 26.26984115 21.21535074 16.36705265 11.9779994 8.76739863\n", + " 30.50284606 25.15168819 19.81398425 14.50459502 9.27228848 4.40115246]\n", + "DEBUG:root:radec2pix: xyfp: [[ 0.236018 -31.56946754]\n", + " [ 0.23651287 -27.18303899]\n", + " [ 0.23700774 -22.79661046]\n", + " [ 0.23750261 -18.41018192]\n", + " [ 0.23799748 -14.02375336]\n", + " [ 0.23849235 -9.63732482]\n", + " [ 0.23898721 -5.25089628]\n", + " [ 0.23948208 -0.86446773]\n", + " [ 0.236018 -31.56946754]\n", + " [ 4.62244655 -31.56996241]\n", + " [ 9.00887509 -31.57045728]\n", + " [ 13.39530363 -31.57095214]\n", + " [ 17.78173218 -31.57144701]\n", + " [ 22.16816072 -31.57194188]\n", + " [ 26.55458927 -31.57243675]\n", + " [ 30.94101781 -31.57293162]\n", + " [ 0.23948208 -0.86446773]\n", + " [ 4.62591062 -0.8649626 ]\n", + " [ 9.01233917 -0.86545747]\n", + " [ 13.39876771 -0.86595234]\n", + " [ 17.78519626 -0.86644721]\n", + " [ 22.1716248 -0.86694208]\n", + " [ 26.55805334 -0.86743695]\n", + " [ 30.94448189 -0.86793181]\n", + " [ 30.94101781 -31.57293162]\n", + " [ 30.94151268 -27.18650307]\n", + " [ 30.94200754 -22.80007453]\n", + " [ 30.94250242 -18.41364599]\n", + " [ 30.94299728 -14.02721745]\n", + " [ 30.94349215 -9.6407889 ]\n", + " [ 30.94398702 -5.25436036]\n", + " [ 30.94448189 -0.86793181]\n", + " [ 0.25123377 -29.65696924]\n", + " [ 0.25184028 -24.28096928]\n", + " [ 0.25244679 -18.90496931]\n", + " [ 0.2530533 -13.52896935]\n", + " [ 0.25365981 -8.15296938]\n", + " [ 0.25426632 -2.77696942]\n", + " [ 2.14851968 -31.5546833 ]\n", + " [ 7.52451965 -31.55528981]\n", + " [ 12.90051962 -31.55589633]\n", + " [ 18.27651958 -31.55650284]\n", + " [ 23.65251954 -31.55710934]\n", + " [ 29.02851952 -31.55771586]\n", + " [ 2.15198038 -0.8796835 ]\n", + " [ 7.52798035 -0.88029001]\n", + " [ 12.90398031 -0.88089652]\n", + " [ 18.27998027 -0.88150303]\n", + " [ 23.65598025 -0.88210954]\n", + " [ 29.03198021 -0.88271605]\n", + " [ 30.92623357 -29.66042994]\n", + " [ 30.92684009 -24.28442998]\n", + " [ 30.9274466 -18.90843001]\n", + " [ 30.9280531 -13.53243004]\n", + " [ 30.92865961 -8.15643008]\n", + " [ 30.92926612 -2.78043011]\n", + " [ 0.2510197 -31.55446923]\n", + " [ 0.2510197 -31.55446923]\n", + " [ 30.9294802 -0.88293012]\n", + " [ 30.9294802 -0.88293012]\n", + " [ 2.14873376 -29.65718332]\n", + " [ 7.52473372 -29.65778983]\n", + " [ 12.90073369 -29.65839633]\n", + " [ 18.27673365 -29.65900285]\n", + " [ 23.65273362 -29.65960936]\n", + " [ 29.02873359 -29.66021587]\n", + " [ 2.14934027 -24.28118335]\n", + " [ 7.52534023 -24.28178986]\n", + " [ 12.9013402 -24.28239637]\n", + " [ 18.27734016 -24.28300288]\n", + " [ 23.65334013 -24.28360939]\n", + " [ 29.02934009 -24.2842159 ]\n", + " [ 2.14994678 -18.90518338]\n", + " [ 7.52594674 -18.90578989]\n", + " [ 12.90194671 -18.9063964 ]\n", + " [ 18.27794667 -18.90700292]\n", + " [ 23.65394664 -18.90760943]\n", + " [ 29.0299466 -18.90821593]\n", + " [ 2.15055329 -13.52918342]\n", + " [ 7.52655325 -13.52978993]\n", + " [ 12.90255322 -13.53039644]\n", + " [ 18.27855318 -13.53100295]\n", + " [ 23.65455315 -13.53160946]\n", + " [ 29.03055312 -13.53221597]\n", + " [ 2.1511598 -8.15318346]\n", + " [ 7.52715976 -8.15378996]\n", + " [ 12.90315973 -8.15439647]\n", + " [ 18.27915969 -8.15500298]\n", + " [ 23.65515966 -8.15560949]\n", + " [ 29.03115962 -8.156216 ]\n", + " [ 2.1517663 -2.77718348]\n", + " [ 7.52776627 -2.77779 ]\n", + " [ 12.90376624 -2.77839651]\n", + " [ 18.2797662 -2.77900302]\n", + " [ 23.65576617 -2.77960953]\n", + " [ 29.03176613 -2.78021604]]\n", + "DEBUG:root:radec2pix: ccdpx: [[-4.45000000e+01 -5.00000261e-01]\n", + " [-4.45000000e+01 2.91928571e+02]\n", + " [-4.45000000e+01 5.84357143e+02]\n", + " [-4.45000000e+01 8.76785715e+02]\n", + " [-4.45000000e+01 1.16921429e+03]\n", + " [-4.45000000e+01 1.46164286e+03]\n", + " [-4.45000000e+01 1.75407143e+03]\n", + " [-4.44999999e+01 2.04650000e+03]\n", + " [-4.45000000e+01 -5.00000261e-01]\n", + " [ 2.47928571e+02 -5.00000125e-01]\n", + " [ 5.40357143e+02 -4.99999959e-01]\n", + " [ 8.32785714e+02 -5.00000265e-01]\n", + " [ 1.12521429e+03 -4.99999989e-01]\n", + " [ 1.41764286e+03 -4.99999804e-01]\n", + " [ 1.71007143e+03 -4.99999857e-01]\n", + " [ 2.00250000e+03 -5.00000247e-01]\n", + " [-4.44999999e+01 2.04650000e+03]\n", + " [ 2.47928572e+02 2.04650000e+03]\n", + " [ 5.40357143e+02 2.04650000e+03]\n", + " [ 8.32785714e+02 2.04650000e+03]\n", + " [ 1.12521429e+03 2.04650000e+03]\n", + " [ 1.41764286e+03 2.04650000e+03]\n", + " [ 1.71007143e+03 2.04650000e+03]\n", + " [ 2.00250000e+03 2.04650000e+03]\n", + " [ 2.00250000e+03 -5.00000247e-01]\n", + " [ 2.00250000e+03 2.91928571e+02]\n", + " [ 2.00250000e+03 5.84357143e+02]\n", + " [ 2.00250000e+03 8.76785714e+02]\n", + " [ 2.00250000e+03 1.16921429e+03]\n", + " [ 2.00250000e+03 1.46164286e+03]\n", + " [ 2.00250000e+03 1.75407143e+03]\n", + " [ 2.00250000e+03 2.04650000e+03]\n", + " [-4.35000000e+01 1.27000000e+02]\n", + " [-4.35000000e+01 4.85400000e+02]\n", + " [-4.35000000e+01 8.43800000e+02]\n", + " [-4.35000000e+01 1.20220000e+03]\n", + " [-4.35000000e+01 1.56060000e+03]\n", + " [-4.35000000e+01 1.91900000e+03]\n", + " [ 8.30000000e+01 4.99999891e-01]\n", + " [ 4.41400000e+02 5.00000001e-01]\n", + " [ 7.99800000e+02 5.00000129e-01]\n", + " [ 1.15820000e+03 5.00000084e-01]\n", + " [ 1.51660000e+03 5.00000000e-01]\n", + " [ 1.87500000e+03 5.00000003e-01]\n", + " [ 8.30000000e+01 2.04550000e+03]\n", + " [ 4.41400000e+02 2.04550000e+03]\n", + " [ 7.99800000e+02 2.04550000e+03]\n", + " [ 1.15820000e+03 2.04550000e+03]\n", + " [ 1.51660000e+03 2.04550000e+03]\n", + " [ 1.87500000e+03 2.04550000e+03]\n", + " [ 2.00150000e+03 1.27000000e+02]\n", + " [ 2.00150000e+03 4.85400000e+02]\n", + " [ 2.00150000e+03 8.43800000e+02]\n", + " [ 2.00150000e+03 1.20220000e+03]\n", + " [ 2.00150000e+03 1.56060000e+03]\n", + " [ 2.00150000e+03 1.91900000e+03]\n", + " [-4.35000000e+01 4.99999945e-01]\n", + " [-4.35000000e+01 4.99999945e-01]\n", + " [ 2.00150000e+03 2.04550000e+03]\n", + " [ 2.00150000e+03 2.04550000e+03]\n", + " [ 8.30000000e+01 1.27000000e+02]\n", + " [ 4.41400000e+02 1.27000000e+02]\n", + " [ 7.99800000e+02 1.27000000e+02]\n", + " [ 1.15820000e+03 1.27000000e+02]\n", + " [ 1.51660000e+03 1.27000000e+02]\n", + " [ 1.87500000e+03 1.27000000e+02]\n", + " [ 8.30000000e+01 4.85400000e+02]\n", + " [ 4.41400000e+02 4.85400000e+02]\n", + " [ 7.99800000e+02 4.85400000e+02]\n", + " [ 1.15820000e+03 4.85400000e+02]\n", + " [ 1.51660000e+03 4.85400000e+02]\n", + " [ 1.87500000e+03 4.85400000e+02]\n", + " [ 8.30000000e+01 8.43800000e+02]\n", + " [ 4.41400000e+02 8.43800000e+02]\n", + " [ 7.99800000e+02 8.43800000e+02]\n", + " [ 1.15820000e+03 8.43800000e+02]\n", + " [ 1.51660000e+03 8.43800000e+02]\n", + " [ 1.87500000e+03 8.43800000e+02]\n", + " [ 8.30000000e+01 1.20220000e+03]\n", + " [ 4.41400000e+02 1.20220000e+03]\n", + " [ 7.99800000e+02 1.20220000e+03]\n", + " [ 1.15820000e+03 1.20220000e+03]\n", + " [ 1.51660000e+03 1.20220000e+03]\n", + " [ 1.87500000e+03 1.20220000e+03]\n", + " [ 8.30000000e+01 1.56060000e+03]\n", + " [ 4.41400000e+02 1.56060000e+03]\n", + " [ 7.99800000e+02 1.56060000e+03]\n", + " [ 1.15820000e+03 1.56060000e+03]\n", + " [ 1.51660000e+03 1.56060000e+03]\n", + " [ 1.87500000e+03 1.56060000e+03]\n", + " [ 8.29999998e+01 1.91900000e+03]\n", + " [ 4.41400000e+02 1.91900000e+03]\n", + " [ 7.99800000e+02 1.91900000e+03]\n", + " [ 1.15820000e+03 1.91900000e+03]\n", + " [ 1.51660000e+03 1.91900000e+03]\n", + " [ 1.87500000e+03 1.91900000e+03]]\n", + "DEBUG:root:radec2pix: xyfp: [[ -0.172993 31.426621 ]\n", + " [ -0.172993 27.04019243]\n", + " [ -0.172993 22.65376385]\n", + " [ -0.172993 18.26733528]\n", + " [ -0.172993 13.88090671]\n", + " [ -0.172993 9.49447814]\n", + " [ -0.172993 5.10804957]\n", + " [ -0.172993 0.721621 ]\n", + " [ -0.172993 31.426621 ]\n", + " [ -4.55942157 31.426621 ]\n", + " [ -8.94585014 31.426621 ]\n", + " [-13.33227871 31.426621 ]\n", + " [-17.71870729 31.426621 ]\n", + " [-22.10513586 31.426621 ]\n", + " [-26.49156443 31.426621 ]\n", + " [-30.877993 31.426621 ]\n", + " [ -0.172993 0.721621 ]\n", + " [ -4.55942157 0.721621 ]\n", + " [ -8.94585014 0.721621 ]\n", + " [-13.33227872 0.721621 ]\n", + " [-17.71870728 0.721621 ]\n", + " [-22.10513586 0.721621 ]\n", + " [-26.49156443 0.721621 ]\n", + " [-30.877993 0.721621 ]\n", + " [-30.877993 31.426621 ]\n", + " [-30.877993 27.04019243]\n", + " [-30.877993 22.65376385]\n", + " [-30.877993 18.26733529]\n", + " [-30.877993 13.88090671]\n", + " [-30.877993 9.49447814]\n", + " [-30.877993 5.10804957]\n", + " [-30.877993 0.721621 ]\n", + " [ -0.187993 29.514121 ]\n", + " [ -0.187993 24.138121 ]\n", + " [ -0.187993 18.76212101]\n", + " [ -0.187993 13.386121 ]\n", + " [ -0.187993 8.010121 ]\n", + " [ -0.187993 2.634121 ]\n", + " [ -2.085493 31.411621 ]\n", + " [ -7.461493 31.411621 ]\n", + " [-12.837493 31.411621 ]\n", + " [-18.213493 31.411621 ]\n", + " [-23.589493 31.411621 ]\n", + " [-28.965493 31.411621 ]\n", + " [ -2.085493 0.736621 ]\n", + " [ -7.461493 0.736621 ]\n", + " [-12.837493 0.736621 ]\n", + " [-18.213493 0.736621 ]\n", + " [-23.58949299 0.736621 ]\n", + " [-28.965493 0.736621 ]\n", + " [-30.862993 29.514121 ]\n", + " [-30.862993 24.138121 ]\n", + " [-30.862993 18.762121 ]\n", + " [-30.862993 13.386121 ]\n", + " [-30.862993 8.010121 ]\n", + " [-30.862993 2.634121 ]\n", + " [ -0.187993 31.411621 ]\n", + " [ -0.187993 31.411621 ]\n", + " [-30.862993 0.736621 ]\n", + " [-30.862993 0.736621 ]\n", + " [ -2.085493 29.514121 ]\n", + " [ -7.461493 29.514121 ]\n", + " [-12.837493 29.514121 ]\n", + " [-18.213493 29.514121 ]\n", + " [-23.589493 29.514121 ]\n", + " [-28.965493 29.514121 ]\n", + " [ -2.085493 24.138121 ]\n", + " [ -7.461493 24.138121 ]\n", + " [-12.837493 24.138121 ]\n", + " [-18.213493 24.138121 ]\n", + " [-23.589493 24.138121 ]\n", + " [-28.965493 24.138121 ]\n", + " [ -2.085493 18.762121 ]\n", + " [ -7.461493 18.762121 ]\n", + " [-12.837493 18.762121 ]\n", + " [-18.213493 18.762121 ]\n", + " [-23.589493 18.762121 ]\n", + " [-28.965493 18.762121 ]\n", + " [ -2.085493 13.386121 ]\n", + " [ -7.461493 13.386121 ]\n", + " [-12.837493 13.386121 ]\n", + " [-18.213493 13.386121 ]\n", + " [-23.589493 13.386121 ]\n", + " [-28.965493 13.386121 ]\n", + " [ -2.085493 8.010121 ]\n", + " [ -7.461493 8.010121 ]\n", + " [-12.837493 8.010121 ]\n", + " [-18.213493 8.010121 ]\n", + " [-23.589493 8.010121 ]\n", + " [-28.965493 8.010121 ]\n", + " [ -2.085493 2.634121 ]\n", + " [ -7.461493 2.634121 ]\n", + " [-12.837493 2.634121 ]\n", + " [-18.213493 2.634121 ]\n", + " [-23.589493 2.634121 ]\n", + " [-28.965493 2.634121 ]]\n", + "DEBUG:root:radec2pix: xyfp Shape: (96, 2)\n", + "DEBUG:root:optics_fp: cphi: [0.71674184 0.76675024 0.81864942 0.87035228 0.91865771 0.95932569\n", + " 0.98767201 0.99974255 0.71674184 0.66409483 0.59932455 0.52022133\n", + " 0.42506968 0.31345852 0.18722881 0.05105417 0.99974255 0.99965353\n", + " 0.99950987 0.99925593 0.99874223 0.99744464 0.99234175 0.9056856\n", + " 0.05105417 0.05923154 0.07055215 0.08725098 0.11432168 0.16558509\n", + " 0.29698694 0.9056856 0.73806414 0.80084934 0.86451924 0.92365062\n", + " 0.9704975 0.99665945 0.6953044 0.6229226 0.53010496 0.41345588\n", + " 0.27232584 0.11128947 0.99969644 0.99954923 0.99926436 0.99859785\n", + " 0.99637691 0.97728259 0.0548278 0.06688083 0.08577093 0.11956053\n", + " 0.19678357 0.51804091 0.7167462 0.7167462 0.90395966 0.90395966\n", + " 0.7173329 0.64650885 0.55392153 0.43509499 0.28838199 0.1183142\n", + " 0.78296688 0.7194824 0.6309635 0.50857972 0.34543889 0.14404729\n", + " 0.85078398 0.79980651 0.72282072 0.60489433 0.42782202 0.18390653\n", + " 0.9150296 0.88149415 0.82599605 0.72871014 0.55254711 0.25338228\n", + " 0.96687862 0.95220074 0.92565817 0.87139471 0.74187378 0.40036553\n", + " 0.99622933 0.99443943 0.99100871 0.9831251 0.95810564 0.79702588]\n", + "DEBUG:root:radec2pix: xyfp: [[-32.31281793 -31.43806373]\n", + " [-32.31091541 -27.05163558]\n", + " [-32.30901287 -22.66520742]\n", + " [-32.30711034 -18.27877926]\n", + " [-32.3052078 -13.8923511 ]\n", + " [-32.30330527 -9.50592294]\n", + " [-32.30140274 -5.11949478]\n", + " [-32.2995002 -0.73306663]\n", + " [-32.31281793 -31.43806373]\n", + " [-27.92638978 -31.43996627]\n", + " [-23.53996162 -31.4418688 ]\n", + " [-19.15353346 -31.44377134]\n", + " [-14.7671053 -31.44567387]\n", + " [-10.38067715 -31.44757641]\n", + " [ -5.99424899 -31.44947894]\n", + " [ -1.60782083 -31.45138147]\n", + " [-32.2995002 -0.73306663]\n", + " [-27.91307204 -0.73496916]\n", + " [-23.52664389 -0.73687169]\n", + " [-19.14021573 -0.73877423]\n", + " [-14.75378757 -0.74067676]\n", + " [-10.36735941 -0.74257929]\n", + " [ -5.98093125 -0.74448183]\n", + " [ -1.59450309 -0.74638436]\n", + " [ -1.60782083 -31.45138147]\n", + " [ -1.60591829 -27.06495331]\n", + " [ -1.60401576 -22.67852516]\n", + " [ -1.60211323 -18.292097 ]\n", + " [ -1.60021069 -13.90566884]\n", + " [ -1.59830816 -9.51924068]\n", + " [ -1.59640563 -5.13281252]\n", + " [ -1.59450309 -0.74638436]\n", + " [-32.29698843 -29.52557043]\n", + " [-32.29465669 -24.14957093]\n", + " [-32.29232495 -18.77357144]\n", + " [-32.2899932 -13.39757194]\n", + " [-32.28766146 -8.02157244]\n", + " [-32.28532972 -2.64557295]\n", + " [-30.40031161 -31.42389325]\n", + " [-25.02431212 -31.42622499]\n", + " [-19.64831262 -31.42855673]\n", + " [-14.27231313 -31.43088848]\n", + " [ -8.89631363 -31.43322022]\n", + " [ -3.52031414 -31.43555196]\n", + " [-30.38700689 -0.74889614]\n", + " [-25.01100739 -0.75122788]\n", + " [-19.6350079 -0.75355962]\n", + " [-14.25900841 -0.75589136]\n", + " [ -8.88300892 -0.7582231 ]\n", + " [ -3.50700942 -0.76055484]\n", + " [ -1.62199131 -29.53887515]\n", + " [ -1.61965957 -24.16287565]\n", + " [ -1.61732783 -18.78687616]\n", + " [ -1.61499609 -13.41087666]\n", + " [ -1.61266434 -8.03487716]\n", + " [ -1.6103326 -2.65887768]\n", + " [-32.29781143 -31.42307024]\n", + " [-32.29781143 -31.42307024]\n", + " [ -1.60950959 -0.76137785]\n", + " [ -1.60950959 -0.76137785]\n", + " [-30.3994886 -29.52639343]\n", + " [-25.02348911 -29.52872517]\n", + " [-19.64748962 -29.53105692]\n", + " [-14.27149012 -29.53338866]\n", + " [ -8.89549063 -29.5357204 ]\n", + " [ -3.51949113 -29.53805214]\n", + " [-30.39715686 -24.15039394]\n", + " [-25.02115737 -24.15272568]\n", + " [-19.64515788 -24.15505742]\n", + " [-14.26915838 -24.15738916]\n", + " [ -8.89315889 -24.1597209 ]\n", + " [ -3.51715939 -24.16205264]\n", + " [-30.39482512 -18.77439444]\n", + " [-25.01882563 -18.77672618]\n", + " [-19.64282613 -18.77905793]\n", + " [-14.26682664 -18.78138967]\n", + " [ -8.89082714 -18.78372141]\n", + " [ -3.51482765 -18.78605315]\n", + " [-30.39249338 -13.39839495]\n", + " [-25.01649389 -13.40072669]\n", + " [-19.64049439 -13.40305843]\n", + " [-14.2644949 -13.40539017]\n", + " [ -8.8884954 -13.40772191]\n", + " [ -3.51249591 -13.41005365]\n", + " [-30.39016163 -8.02239545]\n", + " [-25.01416214 -8.02472719]\n", + " [-19.63816265 -8.02705893]\n", + " [-14.26216315 -8.02939068]\n", + " [ -8.88616366 -8.03172242]\n", + " [ -3.51016417 -8.03405416]\n", + " [-30.3878299 -2.64639596]\n", + " [-25.01183041 -2.6487277 ]\n", + " [-19.63583091 -2.65105944]\n", + " [-14.25983141 -2.65339118]\n", + " [ -8.88383191 -2.65572292]\n", + " [ -3.50783243 -2.65805467]]\n", + "DEBUG:root:radec2pix: xyfp Shape: (96, 2)\n", + "DEBUG:root:radec2pix: ccdpx: [[-4.45000000e+01 -4.99999797e-01]\n", + " [-4.45000000e+01 2.91928572e+02]\n", + " [-4.45000000e+01 5.84357143e+02]\n", + " [-4.45000000e+01 8.76785714e+02]\n", + " [-4.45000000e+01 1.16921429e+03]\n", + " [-4.45000000e+01 1.46164286e+03]\n", + " [-4.45000000e+01 1.75407143e+03]\n", + " [-4.45000001e+01 2.04650000e+03]\n", + " [-4.45000000e+01 -4.99999797e-01]\n", + " [ 2.47928571e+02 -5.00000034e-01]\n", + " [ 5.40357143e+02 -4.99999972e-01]\n", + " [ 8.32785714e+02 -4.99999760e-01]\n", + " [ 1.12521429e+03 -5.00000049e-01]\n", + " [ 1.41764286e+03 -4.99999867e-01]\n", + " [ 1.71007143e+03 -5.00000044e-01]\n", + " [ 2.00250000e+03 -4.99999770e-01]\n", + " [-4.45000001e+01 2.04650000e+03]\n", + " [ 2.47928571e+02 2.04650000e+03]\n", + " [ 5.40357143e+02 2.04650000e+03]\n", + " [ 8.32785714e+02 2.04650000e+03]\n", + " [ 1.12521429e+03 2.04650000e+03]\n", + " [ 1.41764286e+03 2.04650000e+03]\n", + " [ 1.71007143e+03 2.04650000e+03]\n", + " [ 2.00250000e+03 2.04650000e+03]\n", + " [ 2.00250000e+03 -4.99999770e-01]\n", + " [ 2.00250000e+03 2.91928572e+02]\n", + " [ 2.00250000e+03 5.84357143e+02]\n", + " [ 2.00250000e+03 8.76785714e+02]\n", + " [ 2.00250000e+03 1.16921429e+03]\n", + " [ 2.00250000e+03 1.46164286e+03]\n", + " [ 2.00250000e+03 1.75407143e+03]\n", + " [ 2.00250000e+03 2.04650000e+03]\n", + " [-4.35000000e+01 1.27000000e+02]\n", + " [-4.35000000e+01 4.85400000e+02]\n", + " [-4.35000000e+01 8.43800000e+02]\n", + " [-4.35000000e+01 1.20220000e+03]\n", + " [-4.35000000e+01 1.56060000e+03]\n", + " [-4.35000000e+01 1.91900000e+03]\n", + " [ 8.30000000e+01 5.00000045e-01]\n", + " [ 4.41400000e+02 5.00000251e-01]\n", + " [ 7.99800000e+02 4.99999878e-01]\n", + " [ 1.15820000e+03 4.99999746e-01]\n", + " [ 1.51660000e+03 5.00000268e-01]\n", + " [ 1.87500000e+03 4.99999743e-01]\n", + " [ 8.29999998e+01 2.04550000e+03]\n", + " [ 4.41400000e+02 2.04550000e+03]\n", + " [ 7.99800000e+02 2.04550000e+03]\n", + " [ 1.15820000e+03 2.04550000e+03]\n", + " [ 1.51660000e+03 2.04550000e+03]\n", + " [ 1.87500000e+03 2.04550000e+03]\n", + " [ 2.00150000e+03 1.27000000e+02]\n", + " [ 2.00150000e+03 4.85400000e+02]\n", + " [ 2.00150000e+03 8.43800000e+02]\n", + " [ 2.00150000e+03 1.20220000e+03]\n", + " [ 2.00150000e+03 1.56060000e+03]\n", + " [ 2.00150000e+03 1.91900000e+03]\n", + " [-4.35000000e+01 5.00000140e-01]\n", + " [-4.35000000e+01 5.00000140e-01]\n", + " [ 2.00150000e+03 2.04550000e+03]\n", + " [ 2.00150000e+03 2.04550000e+03]\n", + " [ 8.30000000e+01 1.27000000e+02]\n", + " [ 4.41400000e+02 1.27000000e+02]\n", + " [ 7.99800000e+02 1.27000000e+02]\n", + " [ 1.15820000e+03 1.27000000e+02]\n", + " [ 1.51660000e+03 1.27000000e+02]\n", + " [ 1.87500000e+03 1.27000000e+02]\n", + " [ 8.30000000e+01 4.85400000e+02]\n", + " [ 4.41400000e+02 4.85400000e+02]\n", + " [ 7.99800000e+02 4.85400000e+02]\n", + " [ 1.15820000e+03 4.85400000e+02]\n", + " [ 1.51660000e+03 4.85400000e+02]\n", + " [ 1.87500000e+03 4.85400000e+02]\n", + " [ 8.30000000e+01 8.43800000e+02]\n", + " [ 4.41400000e+02 8.43800000e+02]\n", + " [ 7.99800000e+02 8.43800000e+02]\n", + " [ 1.15820000e+03 8.43800000e+02]\n", + " [ 1.51660000e+03 8.43800000e+02]\n", + " [ 1.87500000e+03 8.43800000e+02]\n", + " [ 8.30000000e+01 1.20220000e+03]\n", + " [ 4.41400000e+02 1.20220000e+03]\n", + " [ 7.99800000e+02 1.20220000e+03]\n", + " [ 1.15820000e+03 1.20220000e+03]\n", + " [ 1.51660000e+03 1.20220000e+03]\n", + " [ 1.87500000e+03 1.20220000e+03]\n", + " [ 8.30000001e+01 1.56060000e+03]\n", + " [ 4.41400000e+02 1.56060000e+03]\n", + " [ 7.99800000e+02 1.56060000e+03]\n", + " [ 1.15820000e+03 1.56060000e+03]\n", + " [ 1.51660000e+03 1.56060000e+03]\n", + " [ 1.87500000e+03 1.56060000e+03]\n", + " [ 8.29999998e+01 1.91900000e+03]\n", + " [ 4.41400000e+02 1.91900000e+03]\n", + " [ 7.99800000e+02 1.91900000e+03]\n", + " [ 1.15820000e+03 1.91900000e+03]\n", + " [ 1.51660000e+03 1.91900000e+03]\n", + " [ 1.87500000e+03 1.91900000e+03]]\n", + "DEBUG:root:optics_fp: sphi: [0.69733861 0.64194554 0.57429359 0.49242959 0.39505443 0.28230164\n", + " 0.15653753 0.02269007 0.69733861 0.74764835 0.80050614 0.85403148\n", + " 0.90516063 0.94960189 0.98231633 0.99869589 0.02269007 0.02632152\n", + " 0.03130538 0.03856929 0.05013934 0.07144362 0.12352264 0.42394999\n", + " 0.99869589 0.99824427 0.99750809 0.99618636 0.99344379 0.98619551\n", + " 0.95488154 0.42394999 0.67473055 0.59886588 0.50259973 0.38323562\n", + " 0.24111118 0.08166976 0.71871537 0.78228347 0.84793203 0.91052415\n", + " 0.96220509 0.99378803 0.02463779 0.03002235 0.03835014 0.05293717\n", + " 0.08504731 0.21194041 0.99849582 0.99776097 0.99631488 0.99282691\n", + " 0.98044695 0.85535584 0.69733413 0.69733413 0.42761774 0.42761774\n", + " 0.69673058 0.76290649 0.83256888 0.90038456 0.95751545 0.99297621\n", + " 0.62206339 0.69451068 0.77581252 0.86101491 0.93844125 0.9895708\n", + " 0.52551558 0.6002579 0.6910356 0.79630575 0.903863 0.98294374\n", + " 0.40338671 0.47219495 0.5636759 0.68482227 0.83348167 0.96736623\n", + " 0.25523664 0.305473 0.37836089 0.49058257 0.67053956 0.91635552\n", + " 0.08675898 0.10531014 0.13379739 0.18293452 0.28641505 0.60394515]\n", + "DEBUG:root:radec2pix: fitpx: [[2135.5 4155.50000026]\n", + " [2135.5 3863.07142876]\n", + " [2135.5 3570.64285709]\n", + " [2135.5 3278.21428545]\n", + " [2135.5 2985.7857141 ]\n", + " [2135.49999999 2693.35714316]\n", + " [2135.50000001 2400.9285712 ]\n", + " [2135.49999993 2108.50000021]\n", + " [2135.5 4155.50000026]\n", + " [1843.07142855 4155.50000013]\n", + " [1550.64285715 4155.49999996]\n", + " [1258.2142856 4155.50000027]\n", + " [ 965.78571429 4155.49999999]\n", + " [ 673.357143 4155.4999998 ]\n", + " [ 380.92857155 4155.49999986]\n", + " [ 88.49999976 4155.50000025]\n", + " [2135.49999993 2108.50000021]\n", + " [1843.07142817 2108.50000006]\n", + " [1550.64285738 2108.49999998]\n", + " [1258.21428605 2108.49999998]\n", + " [ 965.78571448 2108.49999999]\n", + " [ 673.35714251 2108.50000001]\n", + " [ 380.92857138 2108.5 ]\n", + " [ 88.50000013 2108.5 ]\n", + " [ 88.49999976 4155.50000025]\n", + " [ 88.49999974 3863.0714288 ]\n", + " [ 88.49999989 3570.64285722]\n", + " [ 88.50000025 3278.21428557]\n", + " [ 88.50000013 2985.78571423]\n", + " [ 88.49999977 2693.35714293]\n", + " [ 88.49999999 2400.92857143]\n", + " [ 88.50000013 2108.5 ]\n", + " [2134.5 4028.00000018]\n", + " [2134.5 3669.59999979]\n", + " [2134.5 3311.20000021]\n", + " [2134.5 2952.80000004]\n", + " [2134.5 2594.39999994]\n", + " [2134.50000001 2235.99999988]\n", + " [2007.99999999 4154.50000011]\n", + " [1649.6 4154.5 ]\n", + " [1291.20000005 4154.49999987]\n", + " [ 932.80000005 4154.49999992]\n", + " [ 574.4 4154.5 ]\n", + " [ 216. 4154.5 ]\n", + " [2008.00000002 2109.49999999]\n", + " [1649.60000012 2109.49999999]\n", + " [1291.19999984 2109.50000001]\n", + " [ 932.79999968 2109.50000001]\n", + " [ 574.39999959 2109.50000001]\n", + " [ 215.99999972 2109.50000001]\n", + " [ 89.4999999 4028.0000001 ]\n", + " [ 89.50000007 3669.59999994]\n", + " [ 89.49999997 3311.20000002]\n", + " [ 89.50000023 2952.7999999 ]\n", + " [ 89.49999997 2594.40000001]\n", + " [ 89.4999998 2236.00000002]\n", + " [2134.5 4154.50000005]\n", + " [2134.5 4154.50000005]\n", + " [ 89.49999997 2109.5 ]\n", + " [ 89.49999997 2109.5 ]\n", + " [2008. 4027.99999997]\n", + " [1649.59999996 4028.00000014]\n", + " [1291.20000001 4027.99999998]\n", + " [ 932.79999987 4028.00000021]\n", + " [ 574.40000006 4027.99999993]\n", + " [ 215.9999998 4028.0000002 ]\n", + " [2008. 3669.59999996]\n", + " [1649.60000001 3669.59999998]\n", + " [1291.20000007 3669.59999987]\n", + " [ 932.79999997 3669.60000004]\n", + " [ 574.39999998 3669.60000002]\n", + " [ 215.99999986 3669.60000012]\n", + " [2008. 3311.20000004]\n", + " [1649.59999995 3311.20000012]\n", + " [1291.19999997 3311.20000005]\n", + " [ 932.80000015 3311.19999984]\n", + " [ 574.40000003 3311.19999997]\n", + " [ 216.00000001 3311.2 ]\n", + " [2007.99999998 2952.80000014]\n", + " [1649.60000006 2952.7999999 ]\n", + " [1291.20000015 2952.79999984]\n", + " [ 932.80000014 2952.7999999 ]\n", + " [ 574.39999986 2952.80000008]\n", + " [ 215.99999973 2952.80000012]\n", + " [2007.99999998 2594.40000007]\n", + " [1649.60000022 2594.39999977]\n", + " [1291.20000005 2594.39999997]\n", + " [ 932.79999996 2594.40000002]\n", + " [ 574.39999995 2594.40000002]\n", + " [ 216.00000004 2594.39999999]\n", + " [2008.00000021 2235.99999975]\n", + " [1649.59999975 2236.00000009]\n", + " [1291.20000026 2235.99999995]\n", + " [ 932.79999972 2236.00000004]\n", + " [ 574.39999974 2236.00000003]\n", + " [ 216.00000028 2235.99999998]]\n", + "DEBUG:root:fitpix2pix: ccdpx: shape: (96, 2)\n", + "DEBUG:root:fitpix2pix: visCut: True\n", + "DEBUG:root:optics_fp: rtanth: [45.10607628 42.16357777 39.4899731 37.14337318 35.189258 33.69598042\n", + " 32.72668371 32.32853333 45.10607628 42.0744994 39.2994961 36.83909335\n", + " 34.76015989 33.13457624 32.03143895 31.50567459 32.32853333 27.94350461\n", + " 23.55899708 19.17536829 14.79339939 10.41518568 6.04888681 1.78423138\n", + " 31.50567459 27.12594155 22.74878876 18.37606012 14.01189826 9.66791142\n", + " 5.39307341 1.78423138 43.78236587 40.34917919 37.37672691 34.98265169\n", + " 33.29196413 32.41491299 43.7452802 40.19469624 37.08612172 34.53910818\n", + " 32.68520027 31.64644357 30.41697218 25.04308812 19.67036046 14.30009268\n", + " 8.93672046 3.6111005 29.59667216 24.23063563 18.87027174 13.52232821\n", + " 8.21110934 3.12954069 45.08486499 45.08486499 1.80420296 1.80420296\n", + " 42.4016515 38.72807918 35.4912797 32.82073285 30.86377856 29.76151712\n", + " 38.84663114 34.79978185 31.15752935 28.07777067 25.76302637 24.43171303\n", + " 35.74946438 31.30476433 27.19843907 23.60772454 20.80136966 19.12778226\n", + " 33.23838757 28.40342363 23.80170775 19.59823621 16.10786095 13.87941853\n", + " 31.45408342 26.29303007 21.23888529 16.39084557 12.00133913 8.78676362\n", + " 30.52427023 25.1733021 19.8358755 14.52692422 9.29536709 4.42480773]\n", + "DEBUG:root:mm_to_pix: fitpx: [[0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]]\n", + "DEBUG:root:mm_to_pix: fitpx.shape: (96, 2)\n", + "DEBUG:root:optics_fp: cphi: [-0.71639206 -0.76640718 -0.81831665 -0.87003773 -0.918376 -0.95909967\n", + " -0.98753169 -0.99971968 -0.71639206 -0.66375612 -0.59900967 -0.51994628\n", + " -0.42485193 -0.31331297 -0.18716187 -0.0510586 -0.99971968 -0.9996256\n", + " -0.99947438 -0.99920821 -0.99867222 -0.99732533 -0.99206684 -0.90485547\n", + " -0.0510586 -0.05933321 -0.07078632 -0.08767585 -0.11504297 -0.16682032\n", + " -0.29920561 -0.90485547 -0.73771707 -0.80051245 -0.864202 -0.9233738\n", + " -0.97029678 -0.99658165 -0.69495812 -0.62259801 -0.52982456 -0.41324571\n", + " -0.27220694 -0.1112649 -0.9996711 -0.99951604 -0.9992175 -0.99852279\n", + " -0.99622323 -0.97670188 -0.054871 -0.06706472 -0.08616954 -0.12032428\n", + " -0.19827847 -0.52055819 -0.71639646 -0.71639646 -0.90315154 -0.90315154\n", + " -0.71698855 -0.64618487 -0.553643 -0.43489275 -0.28828288 -0.11832391\n", + " -0.78262952 -0.71915739 -0.63068289 -0.50839224 -0.34539889 -0.14417822\n", + " -0.85046147 -0.79948029 -0.72252464 -0.60469794 -0.42783445 -0.18421072\n", + " -0.91474245 -0.88118124 -0.82567874 -0.72846169 -0.55256029 -0.25394179\n", + " -0.96666577 -0.95194756 -0.92535864 -0.87107074 -0.74171607 -0.40123831\n", + " -0.99614527 -0.99433151 -0.99086162 -0.98290647 -0.95774678 -0.79700819]\n", + "DEBUG:root:radec2pix: fitpx: [[ 2.13550000e+03 -4.99999797e-01]\n", + " [ 2.13550000e+03 2.91928572e+02]\n", + " [ 2.13550000e+03 5.84357143e+02]\n", + " [ 2.13550000e+03 8.76785714e+02]\n", + " [ 2.13550000e+03 1.16921429e+03]\n", + " [ 2.13550000e+03 1.46164286e+03]\n", + " [ 2.13550000e+03 1.75407143e+03]\n", + " [ 2.13550000e+03 2.04650000e+03]\n", + " [ 2.13550000e+03 -4.99999797e-01]\n", + " [ 2.42792857e+03 -5.00000034e-01]\n", + " [ 2.72035714e+03 -4.99999972e-01]\n", + " [ 3.01278571e+03 -4.99999760e-01]\n", + " [ 3.30521429e+03 -5.00000049e-01]\n", + " [ 3.59764286e+03 -4.99999867e-01]\n", + " [ 3.89007143e+03 -5.00000044e-01]\n", + " [ 4.18250000e+03 -4.99999770e-01]\n", + " [ 2.13550000e+03 2.04650000e+03]\n", + " [ 2.42792857e+03 2.04650000e+03]\n", + " [ 2.72035714e+03 2.04650000e+03]\n", + " [ 3.01278571e+03 2.04650000e+03]\n", + " [ 3.30521429e+03 2.04650000e+03]\n", + " [ 3.59764286e+03 2.04650000e+03]\n", + " [ 3.89007143e+03 2.04650000e+03]\n", + " [ 4.18250000e+03 2.04650000e+03]\n", + " [ 4.18250000e+03 -4.99999770e-01]\n", + " [ 4.18250000e+03 2.91928572e+02]\n", + " [ 4.18250000e+03 5.84357143e+02]\n", + " [ 4.18250000e+03 8.76785714e+02]\n", + " [ 4.18250000e+03 1.16921429e+03]\n", + " [ 4.18250000e+03 1.46164286e+03]\n", + " [ 4.18250000e+03 1.75407143e+03]\n", + " [ 4.18250000e+03 2.04650000e+03]\n", + " [ 2.13650000e+03 1.27000000e+02]\n", + " [ 2.13650000e+03 4.85400000e+02]\n", + " [ 2.13650000e+03 8.43800000e+02]\n", + " [ 2.13650000e+03 1.20220000e+03]\n", + " [ 2.13650000e+03 1.56060000e+03]\n", + " [ 2.13650000e+03 1.91900000e+03]\n", + " [ 2.26300000e+03 5.00000045e-01]\n", + " [ 2.62140000e+03 5.00000251e-01]\n", + " [ 2.97980000e+03 4.99999878e-01]\n", + " [ 3.33820000e+03 4.99999746e-01]\n", + " [ 3.69660000e+03 5.00000268e-01]\n", + " [ 4.05500000e+03 4.99999743e-01]\n", + " [ 2.26300000e+03 2.04550000e+03]\n", + " [ 2.62140000e+03 2.04550000e+03]\n", + " [ 2.97980000e+03 2.04550000e+03]\n", + " [ 3.33820000e+03 2.04550000e+03]\n", + " [ 3.69660000e+03 2.04550000e+03]\n", + " [ 4.05500000e+03 2.04550000e+03]\n", + " [ 4.18150000e+03 1.27000000e+02]\n", + " [ 4.18150000e+03 4.85400000e+02]\n", + " [ 4.18150000e+03 8.43800000e+02]\n", + " [ 4.18150000e+03 1.20220000e+03]\n", + " [ 4.18150000e+03 1.56060000e+03]\n", + " [ 4.18150000e+03 1.91900000e+03]\n", + " [ 2.13650000e+03 5.00000140e-01]\n", + " [ 2.13650000e+03 5.00000140e-01]\n", + " [ 4.18150000e+03 2.04550000e+03]\n", + " [ 4.18150000e+03 2.04550000e+03]\n", + " [ 2.26300000e+03 1.27000000e+02]\n", + " [ 2.62140000e+03 1.27000000e+02]\n", + " [ 2.97980000e+03 1.27000000e+02]\n", + " [ 3.33820000e+03 1.27000000e+02]\n", + " [ 3.69660000e+03 1.27000000e+02]\n", + " [ 4.05500000e+03 1.27000000e+02]\n", + " [ 2.26300000e+03 4.85400000e+02]\n", + " [ 2.62140000e+03 4.85400000e+02]\n", + " [ 2.97980000e+03 4.85400000e+02]\n", + " [ 3.33820000e+03 4.85400000e+02]\n", + " [ 3.69660000e+03 4.85400000e+02]\n", + " [ 4.05500000e+03 4.85400000e+02]\n", + " [ 2.26300000e+03 8.43800000e+02]\n", + " [ 2.62140000e+03 8.43800000e+02]\n", + " [ 2.97980000e+03 8.43800000e+02]\n", + " [ 3.33820000e+03 8.43800000e+02]\n", + " [ 3.69660000e+03 8.43800000e+02]\n", + " [ 4.05500000e+03 8.43800000e+02]\n", + " [ 2.26300000e+03 1.20220000e+03]\n", + " [ 2.62140000e+03 1.20220000e+03]\n", + " [ 2.97980000e+03 1.20220000e+03]\n", + " [ 3.33820000e+03 1.20220000e+03]\n", + " [ 3.69660000e+03 1.20220000e+03]\n", + " [ 4.05500000e+03 1.20220000e+03]\n", + " [ 2.26300000e+03 1.56060000e+03]\n", + " [ 2.62140000e+03 1.56060000e+03]\n", + " [ 2.97980000e+03 1.56060000e+03]\n", + " [ 3.33820000e+03 1.56060000e+03]\n", + " [ 3.69660000e+03 1.56060000e+03]\n", + " [ 4.05500000e+03 1.56060000e+03]\n", + " [ 2.26300000e+03 1.91900000e+03]\n", + " [ 2.62140000e+03 1.91900000e+03]\n", + " [ 2.97980000e+03 1.91900000e+03]\n", + " [ 3.33820000e+03 1.91900000e+03]\n", + " [ 3.69660000e+03 1.91900000e+03]\n", + " [ 4.05500000e+03 1.91900000e+03]]\n", + "DEBUG:root:fitpix2pix: ccdpx: shape: (96, 2)\n", + "DEBUG:root:fitpix2pix: visCut: True\n", + "DEBUG:root:optics_fp: sphi: [-0.69769794 -0.64235507 -0.57476766 -0.49298514 -0.3957089 -0.2830686\n", + " -0.15742033 -0.02367621 -0.69769794 -0.74794907 -0.80074179 -0.85419896\n", + " -0.90526286 -0.94964993 -0.98232909 -0.99869566 -0.02367621 -0.02736175\n", + " -0.03241859 -0.03978624 -0.05151501 -0.07309024 -0.12571151 -0.42571889\n", + " -0.99869566 -0.99823823 -0.9974915 -0.99614906 -0.99336052 -0.98598731\n", + " -0.95418866 -0.42571889 -0.67511001 -0.59931613 -0.50314502 -0.38390211\n", + " -0.24191766 -0.08261364 -0.71905021 -0.78254183 -0.84810727 -0.91061956\n", + " -0.96223874 -0.99379078 -0.02564534 -0.03110765 -0.0395524 -0.05433448\n", + " -0.08682898 -0.21460065 -0.99849345 -0.99774863 -0.99628049 -0.99273464\n", + " -0.98014573 -0.8538262 -0.69769342 -0.69769342 -0.42932191 -0.42932191\n", + " -0.69708495 -0.76318092 -0.83275412 -0.90048226 -0.95754529 -0.99297505\n", + " -0.62248778 -0.69484721 -0.77604065 -0.86112562 -0.93845597 -0.98955174\n", + " -0.52603734 -0.60069232 -0.69134517 -0.7964549 -0.90385712 -0.98288677\n", + " -0.40403745 -0.47277862 -0.5641406 -0.68508654 -0.83347293 -0.9672195\n", + " -0.25604158 -0.30626107 -0.37909286 -0.49115758 -0.670714 -0.9159737\n", + " -0.08771884 -0.10632422 -0.13488237 -0.1841056 -0.28761277 -0.6039685 ]\n", + "DEBUG:root:optics_fp: xyfp: [[-32.31281793 -31.43806373]\n", + " [-32.31091541 -27.05163558]\n", + " [-32.30901287 -22.66520742]\n", + " [-32.30711034 -18.27877926]\n", + " [-32.3052078 -13.8923511 ]\n", + " [-32.30330527 -9.50592294]\n", + " [-32.30140274 -5.11949478]\n", + " [-32.2995002 -0.73306663]\n", + " [-32.31281793 -31.43806373]\n", + " [-27.92638978 -31.43996627]\n", + " [-23.53996162 -31.4418688 ]\n", + " [-19.15353346 -31.44377134]\n", + " [-14.7671053 -31.44567387]\n", + " [-10.38067715 -31.44757641]\n", + " [ -5.99424899 -31.44947894]\n", + " [ -1.60782083 -31.45138147]\n", + " [-32.2995002 -0.73306663]\n", + " [-27.91307204 -0.73496916]\n", + " [-23.52664389 -0.73687169]\n", + " [-19.14021573 -0.73877423]\n", + " [-14.75378757 -0.74067676]\n", + " [-10.36735941 -0.74257929]\n", + " [ -5.98093125 -0.74448183]\n", + " [ -1.59450309 -0.74638436]\n", + " [ -1.60782083 -31.45138147]\n", + " [ -1.60591829 -27.06495331]\n", + " [ -1.60401576 -22.67852516]\n", + " [ -1.60211323 -18.292097 ]\n", + " [ -1.60021069 -13.90566884]\n", + " [ -1.59830816 -9.51924068]\n", + " [ -1.59640563 -5.13281252]\n", + " [ -1.59450309 -0.74638436]\n", + " [-32.29698843 -29.52557043]\n", + " [-32.29465669 -24.14957093]\n", + " [-32.29232495 -18.77357144]\n", + " [-32.2899932 -13.39757194]\n", + " [-32.28766146 -8.02157244]\n", + " [-32.28532972 -2.64557295]\n", + " [-30.40031161 -31.42389325]\n", + " [-25.02431212 -31.42622499]\n", + " [-19.64831262 -31.42855673]\n", + " [-14.27231313 -31.43088848]\n", + " [ -8.89631363 -31.43322022]\n", + " [ -3.52031414 -31.43555196]\n", + " [-30.38700689 -0.74889614]\n", + " [-25.01100739 -0.75122788]\n", + " [-19.6350079 -0.75355962]\n", + " [-14.25900841 -0.75589136]\n", + " [ -8.88300892 -0.7582231 ]\n", + " [ -3.50700942 -0.76055484]\n", + " [ -1.62199131 -29.53887515]\n", + " [ -1.61965957 -24.16287565]\n", + " [ -1.61732783 -18.78687616]\n", + " [ -1.61499609 -13.41087666]\n", + " [ -1.61266434 -8.03487716]\n", + " [ -1.6103326 -2.65887768]\n", + " [-32.29781143 -31.42307024]\n", + " [-32.29781143 -31.42307024]\n", + " [ -1.60950959 -0.76137785]\n", + " [ -1.60950959 -0.76137785]\n", + " [-30.3994886 -29.52639343]\n", + " [-25.02348911 -29.52872517]\n", + " [-19.64748962 -29.53105692]\n", + " [-14.27149012 -29.53338866]\n", + " [ -8.89549063 -29.5357204 ]\n", + " [ -3.51949113 -29.53805214]\n", + " [-30.39715686 -24.15039394]\n", + " [-25.02115737 -24.15272568]\n", + " [-19.64515788 -24.15505742]\n", + " [-14.26915838 -24.15738916]\n", + " [ -8.89315889 -24.1597209 ]\n", + " [ -3.51715939 -24.16205264]\n", + " [-30.39482512 -18.77439444]\n", + " [-25.01882563 -18.77672618]\n", + " [-19.64282613 -18.77905793]\n", + " [-14.26682664 -18.78138967]\n", + " [ -8.89082714 -18.78372141]\n", + " [ -3.51482765 -18.78605315]\n", + " [-30.39249338 -13.39839495]\n", + " [-25.01649389 -13.40072669]\n", + " [-19.64049439 -13.40305843]\n", + " [-14.2644949 -13.40539017]\n", + " [ -8.8884954 -13.40772191]\n", + " [ -3.51249591 -13.41005365]\n", + " [-30.39016163 -8.02239545]\n", + " [-25.01416214 -8.02472719]\n", + " [-19.63816265 -8.02705893]\n", + " [-14.26216315 -8.02939068]\n", + " [ -8.88616366 -8.03172242]\n", + " [ -3.51016417 -8.03405416]\n", + " [-30.3878299 -2.64639596]\n", + " [-25.01183041 -2.6487277 ]\n", + " [-19.63583091 -2.65105944]\n", + " [-14.25983141 -2.65339118]\n", + " [ -8.88383191 -2.65572292]\n", + " [ -3.50783243 -2.65805467]]\n", + "DEBUG:root:radec2pix: xyfp: [[-32.31281793 -31.43806373]\n", + " [-32.31091541 -27.05163558]\n", + " [-32.30901287 -22.66520742]\n", + " [-32.30711034 -18.27877926]\n", + " [-32.3052078 -13.8923511 ]\n", + " [-32.30330527 -9.50592294]\n", + " [-32.30140274 -5.11949478]\n", + " [-32.2995002 -0.73306663]\n", + " [-32.31281793 -31.43806373]\n", + " [-27.92638978 -31.43996627]\n", + " [-23.53996162 -31.4418688 ]\n", + " [-19.15353346 -31.44377134]\n", + " [-14.7671053 -31.44567387]\n", + " [-10.38067715 -31.44757641]\n", + " [ -5.99424899 -31.44947894]\n", + " [ -1.60782083 -31.45138147]\n", + " [-32.2995002 -0.73306663]\n", + " [-27.91307204 -0.73496916]\n", + " [-23.52664389 -0.73687169]\n", + " [-19.14021573 -0.73877423]\n", + " [-14.75378757 -0.74067676]\n", + " [-10.36735941 -0.74257929]\n", + " [ -5.98093125 -0.74448183]\n", + " [ -1.59450309 -0.74638436]\n", + " [ -1.60782083 -31.45138147]\n", + " [ -1.60591829 -27.06495331]\n", + " [ -1.60401576 -22.67852516]\n", + " [ -1.60211323 -18.292097 ]\n", + " [ -1.60021069 -13.90566884]\n", + " [ -1.59830816 -9.51924068]\n", + " [ -1.59640563 -5.13281252]\n", + " [ -1.59450309 -0.74638436]\n", + " [-32.29698843 -29.52557043]\n", + " [-32.29465669 -24.14957093]\n", + " [-32.29232495 -18.77357144]\n", + " [-32.2899932 -13.39757194]\n", + " [-32.28766146 -8.02157244]\n", + " [-32.28532972 -2.64557295]\n", + " [-30.40031161 -31.42389325]\n", + " [-25.02431212 -31.42622499]\n", + " [-19.64831262 -31.42855673]\n", + " [-14.27231313 -31.43088848]\n", + " [ -8.89631363 -31.43322022]\n", + " [ -3.52031414 -31.43555196]\n", + " [-30.38700689 -0.74889614]\n", + " [-25.01100739 -0.75122788]\n", + " [-19.6350079 -0.75355962]\n", + " [-14.25900841 -0.75589136]\n", + " [ -8.88300892 -0.7582231 ]\n", + " [ -3.50700942 -0.76055484]\n", + " [ -1.62199131 -29.53887515]\n", + " [ -1.61965957 -24.16287565]\n", + " [ -1.61732783 -18.78687616]\n", + " [ -1.61499609 -13.41087666]\n", + " [ -1.61266434 -8.03487716]\n", + " [ -1.6103326 -2.65887768]\n", + " [-32.29781143 -31.42307024]\n", + " [-32.29781143 -31.42307024]\n", + " [ -1.60950959 -0.76137785]\n", + " [ -1.60950959 -0.76137785]\n", + " [-30.3994886 -29.52639343]\n", + " [-25.02348911 -29.52872517]\n", + " [-19.64748962 -29.53105692]\n", + " [-14.27149012 -29.53338866]\n", + " [ -8.89549063 -29.5357204 ]\n", + " [ -3.51949113 -29.53805214]\n", + " [-30.39715686 -24.15039394]\n", + " [-25.02115737 -24.15272568]\n", + " [-19.64515788 -24.15505742]\n", + " [-14.26915838 -24.15738916]\n", + " [ -8.89315889 -24.1597209 ]\n", + " [ -3.51715939 -24.16205264]\n", + " [-30.39482512 -18.77439444]\n", + " [-25.01882563 -18.77672618]\n", + " [-19.64282613 -18.77905793]\n", + " [-14.26682664 -18.78138967]\n", + " [ -8.89082714 -18.78372141]\n", + " [ -3.51482765 -18.78605315]\n", + " [-30.39249338 -13.39839495]\n", + " [-25.01649389 -13.40072669]\n", + " [-19.64049439 -13.40305843]\n", + " [-14.2644949 -13.40539017]\n", + " [ -8.8884954 -13.40772191]\n", + " [ -3.51249591 -13.41005365]\n", + " [-30.39016163 -8.02239545]\n", + " [-25.01416214 -8.02472719]\n", + " [-19.63816265 -8.02705893]\n", + " [-14.26216315 -8.02939068]\n", + " [ -8.88616366 -8.03172242]\n", + " [ -3.51016417 -8.03405416]\n", + " [-30.3878299 -2.64639596]\n", + " [-25.01183041 -2.6487277 ]\n", + " [-19.63583091 -2.65105944]\n", + " [-14.25983141 -2.65339118]\n", + " [ -8.88383191 -2.65572292]\n", + " [ -3.50783243 -2.65805467]]\n", + "DEBUG:root:optics_fp: xyfp shape: (96, 2)\n", + "DEBUG:root:radec2pix: curVec: [[ 1.41942425e-01 2.13769905e-01 -9.66516826e-01]\n", + " [ 1.24011704e-01 2.35103377e-01 -9.64026711e-01]\n", + " [ 1.05622420e-01 2.56674872e-01 -9.60709069e-01]\n", + " [ 8.68426544e-02 2.78387663e-01 -9.56534716e-01]\n", + " [ 6.77414148e-02 3.00147874e-01 -9.51484290e-01]\n", + " [ 4.83898283e-02 3.21863207e-01 -9.45548783e-01]\n", + " [ 2.88617251e-02 3.43442439e-01 -9.38730149e-01]\n", + " [ 9.23346998e-03 3.64795813e-01 -9.31041759e-01]\n", + " [ 1.41942425e-01 2.13769905e-01 -9.66516826e-01]\n", + " [ 1.19913262e-01 1.96128691e-01 -9.73218550e-01]\n", + " [ 9.77904159e-02 1.78455303e-01 -9.79076473e-01]\n", + " [ 7.56597601e-02 1.60823262e-01 -9.84079000e-01]\n", + " [ 5.36068025e-02 1.43309300e-01 -9.88225053e-01]\n", + " [ 3.17164119e-02 1.25993671e-01 -9.91523910e-01]\n", + " [ 1.00728265e-02 1.08960627e-01 -9.93995030e-01]\n", + " [-1.12401261e-02 9.22987037e-02 -9.95667921e-01]\n", + " [ 9.23346998e-03 3.64795813e-01 -9.31041759e-01]\n", + " [-1.34655801e-02 3.46423069e-01 -9.37981735e-01]\n", + " [-3.60815994e-02 3.27800876e-01 -9.44057574e-01]\n", + " [-5.85255951e-02 3.09007068e-01 -9.49257281e-01]\n", + " [-8.07111979e-02 2.90121424e-01 -9.53580234e-01]\n", + " [-1.02555050e-01 2.71225194e-01 -9.57036758e-01]\n", + " [-1.23976319e-01 2.52401389e-01 -9.59647545e-01]\n", + " [-1.44895453e-01 2.33735788e-01 -9.61443128e-01]\n", + " [-1.12401261e-02 9.22987037e-02 -9.95667921e-01]\n", + " [-2.99123766e-02 1.11711596e-01 -9.93290375e-01]\n", + " [-4.88460215e-02 1.31548600e-01 -9.90105566e-01]\n", + " [-6.79691345e-02 1.51709652e-01 -9.86085381e-01]\n", + " [-8.72092367e-02 1.72098993e-01 -9.81211744e-01]\n", + " [-1.06493076e-01 1.92624835e-01 -9.75476754e-01]\n", + " [-1.25746641e-01 2.13198842e-01 -9.68882880e-01]\n", + " [-1.44895453e-01 2.33735788e-01 -9.61443128e-01]\n", + " [ 1.34109938e-01 2.22975317e-01 -9.65555038e-01]\n", + " [ 1.11816313e-01 2.49293519e-01 -9.61951066e-01]\n", + " [ 8.89016624e-02 2.75872850e-01 -9.57074012e-01]\n", + " [ 6.54925768e-02 3.02539389e-01 -9.50884136e-01]\n", + " [ 4.17200715e-02 3.29123161e-01 -9.43364924e-01]\n", + " [ 1.77211590e-02 3.55456794e-01 -9.34524707e-01]\n", + " [ 1.32293892e-01 2.06158981e-01 -9.69534322e-01]\n", + " [ 1.05220381e-01 1.84506368e-01 -9.77182722e-01]\n", + " [ 7.80916297e-02 1.62877985e-01 -9.83550944e-01]\n", + " [ 5.10652316e-02 1.41413754e-01 -9.88632638e-01]\n", + " [ 2.42974299e-02 1.20261476e-01 -9.92444866e-01]\n", + " [-2.05688024e-03 9.95780365e-02 -9.95027630e-01]\n", + " [-6.00625946e-04 3.56748260e-01 -9.34200363e-01]\n", + " [-2.83761351e-02 3.34053366e-01 -9.42126925e-01]\n", + " [-5.59383906e-02 3.11061019e-01 -9.48742293e-01]\n", + " [-8.31272470e-02 2.87917322e-01 -9.54040605e-01]\n", + " [-1.09789184e-01 2.64771885e-01 -9.58040805e-01]\n", + " [-1.35776000e-01 2.41778605e-01 -9.60785087e-01]\n", + " [-1.92723010e-02 1.00760913e-01 -9.94723990e-01]\n", + " [-4.23418351e-02 1.24853049e-01 -9.91271348e-01]\n", + " [-6.57327195e-02 1.49482184e-01 -9.86577055e-01]\n", + " [-8.93117684e-02 1.74470236e-01 -9.80603663e-01]\n", + " [-1.12944127e-01 1.99648169e-01 -9.73336649e-01]\n", + " [-1.36493324e-01 2.24854654e-01 -9.64784928e-01]\n", + " [ 1.41806890e-01 2.13782146e-01 -9.66534014e-01]\n", + " [ 1.41806890e-01 2.13782146e-01 -9.66534014e-01]\n", + " [-1.44759642e-01 2.33729174e-01 -9.61465194e-01]\n", + " [-1.44759642e-01 2.33729174e-01 -9.61465194e-01]\n", + " [ 1.24560577e-01 2.15320416e-01 -9.68566870e-01]\n", + " [ 9.73944342e-02 1.93562890e-01 -9.76241636e-01]\n", + " [ 7.01888902e-02 1.71807595e-01 -9.82626923e-01]\n", + " [ 4.31019870e-02 1.50194362e-01 -9.87716494e-01]\n", + " [ 1.62901108e-02 1.28870577e-01 -9.91527613e-01]\n", + " [-1.00919870e-02 1.07992631e-01 -9.94100469e-01]\n", + " [ 1.02175767e-01 2.41558301e-01 -9.64992072e-01]\n", + " [ 7.47810198e-02 2.19531990e-01 -9.72735064e-01]\n", + " [ 4.73923197e-02 1.97447737e-01 -9.79167176e-01]\n", + " [ 2.01690074e-02 1.75445504e-01 -9.84282524e-01]\n", + " [-6.73222864e-03 1.53671680e-01 -9.88099029e-01]\n", + " [-3.31572600e-02 1.32280983e-01 -9.90657528e-01]\n", + " [ 7.91876902e-02 2.68071641e-01 -9.60139003e-01]\n", + " [ 5.16153647e-02 2.45818548e-01 -9.67940647e-01]\n", + " [ 2.40955643e-02 2.23449835e-01 -9.74417557e-01]\n", + " [-3.21125704e-03 2.01106266e-01 -9.79564167e-01]\n", + " [-3.01484158e-02 1.78933860e-01 -9.83399078e-01]\n", + " [-5.65627721e-02 1.57085881e-01 -9.85963832e-01]\n", + " [ 5.57234493e-02 2.94686865e-01 -9.53967792e-01]\n", + " [ 2.80261869e-02 2.72249590e-01 -9.61818431e-01]\n", + " [ 4.28944674e-04 2.49640768e-01 -9.68338424e-01]\n", + " [-2.69071599e-02 2.27002550e-01 -9.73522392e-01]\n", + " [-5.38258929e-02 2.04481380e-01 -9.77389451e-01]\n", + " [-8.01754504e-02 1.82229776e-01 -9.79981738e-01]\n", + " [ 3.19146514e-02 3.21234473e-01 -9.46461763e-01]\n", + " [ 4.14668146e-03 2.98656878e-01 -9.54351547e-01]\n", + " [-2.34731081e-02 2.75853191e-01 -9.60913123e-01]\n", + " [-5.07835635e-02 2.52967284e-01 -9.66141078e-01]\n", + " [-7.76293710e-02 2.30146700e-01 -9.70054729e-01]\n", + " [-1.03860284e-01 2.07544069e-01 -9.72696510e-01]\n", + " [ 7.89881197e-03 3.47547554e-01 -9.37629088e-01]\n", + " [-1.98845496e-02 3.24875048e-01 -9.45547888e-01]\n", + " [-4.74715357e-02 3.01923385e-01 -9.52149528e-01]\n", + " [-7.47016296e-02 2.78838135e-01 -9.57428306e-01]\n", + " [-1.01420807e-01 2.55768349e-01 -9.61403335e-01]\n", + " [-1.27480371e-01 2.32867497e-01 -9.64116945e-01]]\n", + "DEBUG:root:optics_fp: rtanth: [45.26169529 42.30243097 39.60873368 37.23827886 35.25632641 33.73142753\n", + " 32.72753223 32.29326616 45.26169529 42.24571523 39.48748363 37.04461879\n", + " 34.98324901 33.37413897 32.28498264 31.76930229 32.29326616 27.90939691\n", + " 23.52648174 19.14517593 14.76691204 10.39553425 6.04599739 1.87684519\n", + " 31.76930229 27.38910685 23.01128618 18.63751379 14.2715122 9.92354331\n", + " 5.63550123 1.87684519 43.93110404 40.47519439 37.47457234 35.04637691\n", + " 33.3160059 32.39547369 43.90748877 40.37685013 37.28961296 34.76410785\n", + " 32.92983309 31.90622779 30.38230115 25.01013154 19.64005824 14.27444739\n", + " 8.9213542 3.63648527 29.86008841 24.49335294 19.13182032 13.78156419\n", + " 8.46399587 3.33911555 45.24048285 45.24048285 1.89760875 1.89760875\n", + " 42.55711672 38.90412112 35.68971629 33.042152 31.10650288 30.02079255\n", + " 38.97957981 34.95468636 31.33776168 28.28574318 25.99834571 24.68901465\n", + " 35.85400749 31.43139051 27.35246822 23.7946523 21.02418109 19.38168349\n", + " 33.30787918 28.49275823 23.91782767 19.75070735 16.30708904 14.12638019\n", + " 31.48209857 26.3352423 21.30188242 16.48630206 12.15026205 9.01456223\n", + " 30.50627799 25.16059326 19.83130509 14.53645837 9.33484517 4.55771859]\n", + "DEBUG:root:radec2pix: curVec Shape: (96, 3)\n", + "DEBUG:root:radec2pix: xyfp: [[ -0.172993 31.426621 ]\n", + " [ -0.172993 27.04019243]\n", + " [ -0.172993 22.65376385]\n", + " [ -0.172993 18.26733528]\n", + " [ -0.172993 13.88090671]\n", + " [ -0.172993 9.49447814]\n", + " [ -0.172993 5.10804957]\n", + " [ -0.172993 0.721621 ]\n", + " [ -0.172993 31.426621 ]\n", + " [ -4.55942157 31.426621 ]\n", + " [ -8.94585014 31.426621 ]\n", + " [-13.33227871 31.426621 ]\n", + " [-17.71870729 31.426621 ]\n", + " [-22.10513586 31.426621 ]\n", + " [-26.49156443 31.426621 ]\n", + " [-30.877993 31.426621 ]\n", + " [ -0.172993 0.721621 ]\n", + " [ -4.55942157 0.721621 ]\n", + " [ -8.94585014 0.721621 ]\n", + " [-13.33227872 0.721621 ]\n", + " [-17.71870728 0.721621 ]\n", + " [-22.10513586 0.721621 ]\n", + " [-26.49156443 0.721621 ]\n", + " [-30.877993 0.721621 ]\n", + " [-30.877993 31.426621 ]\n", + " [-30.877993 27.04019243]\n", + " [-30.877993 22.65376385]\n", + " [-30.877993 18.26733529]\n", + " [-30.877993 13.88090671]\n", + " [-30.877993 9.49447814]\n", + " [-30.877993 5.10804957]\n", + " [-30.877993 0.721621 ]\n", + " [ -0.187993 29.514121 ]\n", + " [ -0.187993 24.138121 ]\n", + " [ -0.187993 18.76212101]\n", + " [ -0.187993 13.386121 ]\n", + " [ -0.187993 8.010121 ]\n", + " [ -0.187993 2.634121 ]\n", + " [ -2.085493 31.411621 ]\n", + " [ -7.461493 31.411621 ]\n", + " [-12.837493 31.411621 ]\n", + " [-18.213493 31.411621 ]\n", + " [-23.589493 31.411621 ]\n", + " [-28.965493 31.411621 ]\n", + " [ -2.085493 0.736621 ]\n", + " [ -7.461493 0.736621 ]\n", + " [-12.837493 0.736621 ]\n", + " [-18.213493 0.736621 ]\n", + " [-23.58949299 0.736621 ]\n", + " [-28.965493 0.736621 ]\n", + " [-30.862993 29.514121 ]\n", + " [-30.862993 24.138121 ]\n", + " [-30.862993 18.762121 ]\n", + " [-30.862993 13.386121 ]\n", + " [-30.862993 8.010121 ]\n", + " [-30.862993 2.634121 ]\n", + " [ -0.187993 31.411621 ]\n", + " [ -0.187993 31.411621 ]\n", + " [-30.862993 0.736621 ]\n", + " [-30.862993 0.736621 ]\n", + " [ -2.085493 29.514121 ]\n", + " [ -7.461493 29.514121 ]\n", + " [-12.837493 29.514121 ]\n", + " [-18.213493 29.514121 ]\n", + " [-23.589493 29.514121 ]\n", + " [-28.965493 29.514121 ]\n", + " [ -2.085493 24.138121 ]\n", + " [ -7.461493 24.138121 ]\n", + " [-12.837493 24.138121 ]\n", + " [-18.213493 24.138121 ]\n", + " [-23.589493 24.138121 ]\n", + " [-28.965493 24.138121 ]\n", + " [ -2.085493 18.762121 ]\n", + " [ -7.461493 18.762121 ]\n", + " [-12.837493 18.762121 ]\n", + " [-18.213493 18.762121 ]\n", + " [-23.589493 18.762121 ]\n", + " [-28.965493 18.762121 ]\n", + " [ -2.085493 13.386121 ]\n", + " [ -7.461493 13.386121 ]\n", + " [-12.837493 13.386121 ]\n", + " [-18.213493 13.386121 ]\n", + " [-23.589493 13.386121 ]\n", + " [-28.965493 13.386121 ]\n", + " [ -2.085493 8.010121 ]\n", + " [ -7.461493 8.010121 ]\n", + " [-12.837493 8.010121 ]\n", + " [-18.213493 8.010121 ]\n", + " [-23.589493 8.010121 ]\n", + " [-28.965493 8.010121 ]\n", + " [ -2.085493 2.634121 ]\n", + " [ -7.461493 2.634121 ]\n", + " [-12.837493 2.634121 ]\n", + " [-18.213493 2.634121 ]\n", + " [-23.589493 2.634121 ]\n", + " [-28.965493 2.634121 ]]\n", + "DEBUG:root:radec2pix: xyfp Shape: (96, 2)\n", + "DEBUG:root:optics_fp: xyfp: [[32.31363499 31.47041645]\n", + " [32.3144687 27.08398795]\n", + " [32.31530242 22.69755946]\n", + " [32.31613613 18.31113097]\n", + " [32.31696984 13.92470248]\n", + " [32.31780355 9.53827398]\n", + " [32.31863726 5.15184549]\n", + " [32.31947097 0.765417 ]\n", + " [32.31363499 31.47041645]\n", + " [27.9272065 31.46958273]\n", + " [23.540778 31.46874902]\n", + " [19.15434951 31.46791531]\n", + " [14.76792102 31.4670816 ]\n", + " [10.38149253 31.46624788]\n", + " [ 5.99506403 31.46541417]\n", + " [ 1.60863554 31.46458045]\n", + " [32.31947097 0.765417 ]\n", + " [27.93304248 0.76458329]\n", + " [23.54661399 0.76374957]\n", + " [19.1601855 0.76291586]\n", + " [14.77375701 0.76208215]\n", + " [10.38732851 0.76124844]\n", + " [ 6.00090002 0.76041472]\n", + " [ 1.61447153 0.75958101]\n", + " [ 1.60863554 31.46458045]\n", + " [ 1.60946926 27.07815197]\n", + " [ 1.61030297 22.69172348]\n", + " [ 1.61113668 18.30529498]\n", + " [ 1.61197039 13.91886648]\n", + " [ 1.6128041 9.53243799]\n", + " [ 1.61363782 5.1460095 ]\n", + " [ 1.61447153 0.75958101]\n", + " [32.29899849 29.55791363]\n", + " [32.30002028 24.18191372]\n", + " [32.30104209 18.80591382]\n", + " [32.30206388 13.42991392]\n", + " [32.30308568 8.05391402]\n", + " [32.30410748 2.67791411]\n", + " [30.40113787 31.45505294]\n", + " [25.02513797 31.45403115]\n", + " [19.64913807 31.45300935]\n", + " [14.27313817 31.45198755]\n", + " [ 8.89713826 31.45096576]\n", + " [ 3.52113836 31.44994396]\n", + " [30.40696816 0.7800535 ]\n", + " [25.03096826 0.7790317 ]\n", + " [19.65496836 0.7780099 ]\n", + " [14.27896845 0.77698811]\n", + " [ 8.90296855 0.77596631]\n", + " [ 3.52696865 0.77494451]\n", + " [ 1.62399904 29.55208334]\n", + " [ 1.62502084 24.17608344]\n", + " [ 1.62604264 18.80008353]\n", + " [ 1.62706443 13.42408364]\n", + " [ 1.62808623 8.04808373]\n", + " [ 1.62910803 2.67208383]\n", + " [32.29863784 31.4554136 ]\n", + " [32.29863784 31.4554136 ]\n", + " [ 1.62946868 0.77458386]\n", + " [ 1.62946868 0.77458386]\n", + " [30.40149852 29.55755297]\n", + " [25.02549862 29.55653118]\n", + " [19.64949872 29.55550938]\n", + " [14.27349882 29.55448759]\n", + " [ 8.89749891 29.55346579]\n", + " [ 3.52149901 29.55244399]\n", + " [30.40252032 24.18155307]\n", + " [25.02652042 24.18053128]\n", + " [19.65052052 24.17950948]\n", + " [14.27452061 24.17848769]\n", + " [ 8.89852071 24.17746589]\n", + " [ 3.52252081 24.17644409]\n", + " [30.40354212 18.80555317]\n", + " [25.02754221 18.80453137]\n", + " [19.65154231 18.80350958]\n", + " [14.27554241 18.80248779]\n", + " [ 8.89954251 18.80146598]\n", + " [ 3.5235426 18.80044419]\n", + " [30.40456392 13.42955327]\n", + " [25.02856401 13.42853147]\n", + " [19.65256411 13.42750967]\n", + " [14.27656421 13.42648788]\n", + " [ 8.9005643 13.42546608]\n", + " [ 3.5245644 13.42444429]\n", + " [30.40558571 8.05355336]\n", + " [25.02958581 8.05253157]\n", + " [19.6535859 8.05150977]\n", + " [14.277586 8.05048797]\n", + " [ 8.9015861 8.04946618]\n", + " [ 3.5255862 8.04844438]\n", + " [30.40660751 2.67755346]\n", + " [25.0306076 2.67653166]\n", + " [19.6546077 2.67550987]\n", + " [14.2786078 2.67448807]\n", + " [ 8.90260789 2.67346627]\n", + " [ 3.52660799 2.67244448]]\n", + "DEBUG:root:optics_fp: xyfp shape: (96, 2)\n", + "DEBUG:root:make_az_asym: xyp: [[-32.31281793 -31.43806373]\n", + " [-32.31091541 -27.05163558]\n", + " [-32.30901287 -22.66520742]\n", + " [-32.30711034 -18.27877926]\n", + " [-32.3052078 -13.8923511 ]\n", + " [-32.30330527 -9.50592294]\n", + " [-32.30140274 -5.11949478]\n", + " [-32.2995002 -0.73306663]\n", + " [-32.31281793 -31.43806373]\n", + " [-27.92638978 -31.43996627]\n", + " [-23.53996162 -31.4418688 ]\n", + " [-19.15353346 -31.44377134]\n", + " [-14.7671053 -31.44567387]\n", + " [-10.38067715 -31.44757641]\n", + " [ -5.99424899 -31.44947894]\n", + " [ -1.60782083 -31.45138147]\n", + " [-32.2995002 -0.73306663]\n", + " [-27.91307204 -0.73496916]\n", + " [-23.52664389 -0.73687169]\n", + " [-19.14021573 -0.73877423]\n", + " [-14.75378757 -0.74067676]\n", + " [-10.36735941 -0.74257929]\n", + " [ -5.98093125 -0.74448183]\n", + " [ -1.59450309 -0.74638436]\n", + " [ -1.60782083 -31.45138147]\n", + " [ -1.60591829 -27.06495331]\n", + " [ -1.60401576 -22.67852516]\n", + " [ -1.60211323 -18.292097 ]\n", + " [ -1.60021069 -13.90566884]\n", + " [ -1.59830816 -9.51924068]\n", + " [ -1.59640563 -5.13281252]\n", + " [ -1.59450309 -0.74638436]\n", + " [-32.29698843 -29.52557043]\n", + " [-32.29465669 -24.14957093]\n", + " [-32.29232495 -18.77357144]\n", + " [-32.2899932 -13.39757194]\n", + " [-32.28766146 -8.02157244]\n", + " [-32.28532972 -2.64557295]\n", + " [-30.40031161 -31.42389325]\n", + " [-25.02431212 -31.42622499]\n", + " [-19.64831262 -31.42855673]\n", + " [-14.27231313 -31.43088848]\n", + " [ -8.89631363 -31.43322022]\n", + " [ -3.52031414 -31.43555196]\n", + " [-30.38700689 -0.74889614]\n", + " [-25.01100739 -0.75122788]\n", + " [-19.6350079 -0.75355962]\n", + " [-14.25900841 -0.75589136]\n", + " [ -8.88300892 -0.7582231 ]\n", + " [ -3.50700942 -0.76055484]\n", + " [ -1.62199131 -29.53887515]\n", + " [ -1.61965957 -24.16287565]\n", + " [ -1.61732783 -18.78687616]\n", + " [ -1.61499609 -13.41087666]\n", + " [ -1.61266434 -8.03487716]\n", + " [ -1.6103326 -2.65887768]\n", + " [-32.29781143 -31.42307024]\n", + " [-32.29781143 -31.42307024]\n", + " [ -1.60950959 -0.76137785]\n", + " [ -1.60950959 -0.76137785]\n", + " [-30.3994886 -29.52639343]\n", + " [-25.02348911 -29.52872517]\n", + " [-19.64748962 -29.53105692]\n", + " [-14.27149012 -29.53338866]\n", + " [ -8.89549063 -29.5357204 ]\n", + " [ -3.51949113 -29.53805214]\n", + " [-30.39715686 -24.15039394]\n", + " [-25.02115737 -24.15272568]\n", + " [-19.64515788 -24.15505742]\n", + " [-14.26915838 -24.15738916]\n", + " [ -8.89315889 -24.1597209 ]\n", + " [ -3.51715939 -24.16205264]\n", + " [-30.39482512 -18.77439444]\n", + " [-25.01882563 -18.77672618]\n", + " [-19.64282613 -18.77905793]\n", + " [-14.26682664 -18.78138967]\n", + " [ -8.89082714 -18.78372141]\n", + " [ -3.51482765 -18.78605315]\n", + " [-30.39249338 -13.39839495]\n", + " [-25.01649389 -13.40072669]\n", + " [-19.64049439 -13.40305843]\n", + " [-14.2644949 -13.40539017]\n", + " [ -8.8884954 -13.40772191]\n", + " [ -3.51249591 -13.41005365]\n", + " [-30.39016163 -8.02239545]\n", + " [-25.01416214 -8.02472719]\n", + " [-19.63816265 -8.02705893]\n", + " [-14.26216315 -8.02939068]\n", + " [ -8.88616366 -8.03172242]\n", + " [ -3.51016417 -8.03405416]\n", + " [-30.3878299 -2.64639596]\n", + " [-25.01183041 -2.6487277 ]\n", + " [-19.63583091 -2.65105944]\n", + " [-14.25983141 -2.65339118]\n", + " [ -8.88383191 -2.65572292]\n", + " [ -3.50783243 -2.65805467]]\n", + "DEBUG:root:make_az_asym: xyp: shape: (96, 2)\n", + "DEBUG:root:radec2pix: camVec: [[-0.00108623 -0.00110818 -0.00112898 -0.00114857 -0.00116686 -0.00118378\n", + " -0.00119922 -0.00121312 -0.00108623 -0.03008973 -0.05897582 -0.08763213\n", + " -0.11594722 -0.14381054 -0.17111212 -0.19774215 -0.00121312 -0.0312253\n", + " -0.06111305 -0.09075893 -0.12004913 -0.1488739 -0.17712688 -0.20470344\n", + " -0.19774215 -0.19951656 -0.20103291 -0.2022905 -0.20328809 -0.20402394\n", + " -0.20449622 -0.20470344 -0.00119558 -0.00122271 -0.00124786 -0.00127089\n", + " -0.00129164 -0.00130994 -0.01373956 -0.04922259 -0.08441749 -0.11911871\n", + " -0.1531227 -0.18622706 -0.01430615 -0.05102028 -0.08743049 -0.12332566\n", + " -0.15850368 -0.19276957 -0.19845732 -0.20045757 -0.20206974 -0.20329178\n", + " -0.20412054 -0.20455274 -0.00118556 -0.00118556 -0.20461015 -0.20461015\n", + " -0.01379915 -0.04942232 -0.08475642 -0.11959564 -0.15373662 -0.18697743\n", + " -0.01395111 -0.04992687 -0.08561039 -0.12079486 -0.15527748 -0.18885795\n", + " -0.0140777 -0.05033965 -0.08630574 -0.12176792 -0.15652378 -0.19037482\n", + " -0.01417814 -0.05065827 -0.08683905 -0.12251113 -0.15747231 -0.19152571\n", + " -0.0142515 -0.05087978 -0.08720594 -0.12301955 -0.15811848 -0.19230704\n", + " -0.01429691 -0.0510015 -0.08740238 -0.12328852 -0.15845779 -0.19271515]\n", + " [ 0.20994474 0.18250974 0.15437814 0.12565449 0.09644464 0.0668576\n", + " 0.03700641 0.00700791 0.20994474 0.20980966 0.20940234 0.20872399\n", + " 0.20777622 0.20656061 0.20507835 0.20333011 0.00700791 0.00701559\n", + " 0.00701392 0.00700302 0.00698305 0.00695418 0.00691659 0.00687038\n", + " 0.20333011 0.17679323 0.14956333 0.12175011 0.09346339 0.06481351\n", + " 0.03591173 0.00687038 0.19807534 0.16396932 0.12892083 0.09312409\n", + " 0.05677987 0.02009792 0.20982687 0.20947825 0.20872203 0.20756102\n", + " 0.20599809 0.20403521 0.00711509 0.00711803 0.00710683 0.00708177\n", + " 0.0070432 0.00699139 0.19185821 0.1588536 0.12491703 0.09025061\n", + " 0.0550575 0.01954302 0.20985223 0.20985223 0.00696998 0.00696998\n", + " 0.19805172 0.19772367 0.19701128 0.19591776 0.19444643 0.19259955\n", + " 0.16395068 0.1636812 0.16309354 0.16219177 0.16098028 0.15946229\n", + " 0.12890725 0.1286975 0.12823673 0.12752928 0.12657997 0.12539259\n", + " 0.09311572 0.09296747 0.092637 0.09212815 0.0914453 0.09059206\n", + " 0.05677687 0.05669199 0.05649545 0.05618991 0.05577844 0.0552636\n", + " 0.02010041 0.0200803 0.02002048 0.0199219 0.01978566 0.01961272]\n", + " [ 0.97771265 0.98320342 0.98801119 0.9920734 0.99533767 0.99776183\n", + " 0.99931431 0.99997471 0.97771265 0.97727914 0.97604944 0.97404051\n", + " 0.97128023 0.96780744 0.96367189 0.95893426 0.99997471 0.99948775\n", + " 0.99810621 0.99584827 0.99274339 0.98883174 0.98416372 0.97879993\n", + " 0.95893426 0.96381393 0.96809947 0.97172808 0.97464791 0.97681802\n", + " 0.97820838 0.97879993 0.98018607 0.98646468 0.9916541 0.9956537\n", + " 0.99838589 0.99979716 0.97764201 0.9765736 0.97432479 0.97094241\n", + " 0.96649792 0.96108746 0.99987235 0.99867225 0.99614527 0.99234098\n", + " 0.98733327 0.98121915 0.96114781 0.96673797 0.971372 0.97494989\n", + " 0.97739627 0.97866043 0.97773239 0.97773239 0.97881873 0.97881873\n", + " 0.98009443 0.97901113 0.97673072 0.97330012 0.96879081 0.96329894\n", + " 0.98636988 0.98524909 0.98288929 0.97933775 0.97466623 0.96897082\n", + " 0.99155673 0.99040541 0.9879811 0.98433168 0.97952939 0.97367044\n", + " 0.99555434 0.9943796 0.99190593 0.98818188 0.98328034 0.97729779\n", + " 0.99828517 0.99709441 0.99458704 0.99081223 0.98584345 0.97977749\n", + " 0.99969574 0.99849668 0.99597189 0.99217088 0.98716749 0.98105872]]\n", + "DEBUG:root:radec2pix: camVec Shape: (3, 96)\n", + "DEBUG:root:optics_fp: cphi: [0.71341716 0.76328013 0.81514194 0.86698087 0.91566575 0.95700502\n", + " 0.98630354 0.99950918 0.71341716 0.66051768 0.59557134 0.51643629\n", + " 0.4214805 0.31036993 0.18497457 0.04990581 0.99950918 0.99934039\n", + " 0.99906819 0.99858739 0.99761569 0.9951653 0.98558541 0.8377988\n", + " 0.04990581 0.05781889 0.0687377 0.08476872 0.11057085 0.15882919\n", + " 0.27935111 0.8377988 0.73466528 0.79733703 0.86111952 0.92071715\n", + " 0.96846887 0.9959178 0.69186293 0.61921532 0.52631184 0.40990453\n", + " 0.26948104 0.10963271 0.999428 0.999152 0.99861839 0.99737128\n", + " 0.99322638 0.95832228 0.05357183 0.06521663 0.08337359 0.1155749\n", + " 0.18791565 0.47564444 0.71341996 0.71341996 0.83653968 0.83653968\n", + " 0.71379735 0.6426352 0.54988271 0.43124184 0.28525093 0.11649124\n", + " 0.77925087 0.71517941 0.62617339 0.50367681 0.34120915 0.14155583\n", + " 0.8471183 0.79527459 0.71732418 0.59864658 0.42182798 0.18020046\n", + " 0.91180529 0.87721591 0.82023759 0.72110338 0.54370846 0.24707693\n", + " 0.96461215 0.94899507 0.92085832 0.86374835 0.72953296 0.3869314\n", + " 0.99539279 0.99320908 0.98902871 0.97944976 0.94931741 0.76479745]\n", + "DEBUG:root:mm_to_pix: fitpx: [[0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]]\n", + "DEBUG:root:mm_to_pix: fitpx.shape: (96, 2)\n", + "DEBUG:root:radec2pix: ccdpx: [[-4.44999997e+01 -4.99999751e-01]\n", + " [-4.45000003e+01 2.91928571e+02]\n", + " [-4.45000000e+01 5.84357143e+02]\n", + " [-4.44999999e+01 8.76785714e+02]\n", + " [-4.44999999e+01 1.16921429e+03]\n", + " [-4.44999999e+01 1.46164286e+03]\n", + " [-4.45000001e+01 1.75407143e+03]\n", + " [-4.45000000e+01 2.04650000e+03]\n", + " [-4.44999997e+01 -4.99999751e-01]\n", + " [ 2.47928571e+02 -5.00000271e-01]\n", + " [ 5.40357143e+02 -4.99999959e-01]\n", + " [ 8.32785714e+02 -5.00000035e-01]\n", + " [ 1.12521429e+03 -5.00000130e-01]\n", + " [ 1.41764286e+03 -5.00000295e-01]\n", + " [ 1.71007143e+03 -5.00000131e-01]\n", + " [ 2.00250000e+03 -5.00000000e-01]\n", + " [-4.45000000e+01 2.04650000e+03]\n", + " [ 2.47928571e+02 2.04650000e+03]\n", + " [ 5.40357143e+02 2.04650000e+03]\n", + " [ 8.32785714e+02 2.04650000e+03]\n", + " [ 1.12521429e+03 2.04650000e+03]\n", + " [ 1.41764286e+03 2.04650000e+03]\n", + " [ 1.71007143e+03 2.04650000e+03]\n", + " [ 2.00250000e+03 2.04650000e+03]\n", + " [ 2.00250000e+03 -5.00000000e-01]\n", + " [ 2.00250000e+03 2.91928571e+02]\n", + " [ 2.00250000e+03 5.84357143e+02]\n", + " [ 2.00250000e+03 8.76785714e+02]\n", + " [ 2.00250000e+03 1.16921429e+03]\n", + " [ 2.00250000e+03 1.46164286e+03]\n", + " [ 2.00250000e+03 1.75407143e+03]\n", + " [ 2.00250000e+03 2.04650000e+03]\n", + " [-4.35000003e+01 1.27000000e+02]\n", + " [-4.35000001e+01 4.85400000e+02]\n", + " [-4.35000003e+01 8.43800000e+02]\n", + " [-4.34999997e+01 1.20220000e+03]\n", + " [-4.34999997e+01 1.56060000e+03]\n", + " [-4.35000002e+01 1.91900000e+03]\n", + " [ 8.29999999e+01 4.99999945e-01]\n", + " [ 4.41400000e+02 4.99999943e-01]\n", + " [ 7.99800000e+02 5.00000147e-01]\n", + " [ 1.15820000e+03 4.99999799e-01]\n", + " [ 1.51660000e+03 5.00000078e-01]\n", + " [ 1.87500000e+03 4.99999710e-01]\n", + " [ 8.30000000e+01 2.04550000e+03]\n", + " [ 4.41400000e+02 2.04550000e+03]\n", + " [ 7.99800000e+02 2.04550000e+03]\n", + " [ 1.15820000e+03 2.04550000e+03]\n", + " [ 1.51660000e+03 2.04550000e+03]\n", + " [ 1.87500000e+03 2.04550000e+03]\n", + " [ 2.00150000e+03 1.27000000e+02]\n", + " [ 2.00150000e+03 4.85400000e+02]\n", + " [ 2.00150000e+03 8.43800000e+02]\n", + " [ 2.00150000e+03 1.20220000e+03]\n", + " [ 2.00150000e+03 1.56060000e+03]\n", + " [ 2.00150000e+03 1.91900000e+03]\n", + " [-4.34999998e+01 5.00000241e-01]\n", + " [-4.34999998e+01 5.00000241e-01]\n", + " [ 2.00150000e+03 2.04550000e+03]\n", + " [ 2.00150000e+03 2.04550000e+03]\n", + " [ 8.30000001e+01 1.27000000e+02]\n", + " [ 4.41400000e+02 1.27000000e+02]\n", + " [ 7.99800000e+02 1.27000000e+02]\n", + " [ 1.15820000e+03 1.27000000e+02]\n", + " [ 1.51660000e+03 1.27000000e+02]\n", + " [ 1.87500000e+03 1.27000000e+02]\n", + " [ 8.30000000e+01 4.85400000e+02]\n", + " [ 4.41400000e+02 4.85400000e+02]\n", + " [ 7.99800000e+02 4.85400000e+02]\n", + " [ 1.15820000e+03 4.85400000e+02]\n", + " [ 1.51660000e+03 4.85400000e+02]\n", + " [ 1.87500000e+03 4.85400000e+02]\n", + " [ 8.30000001e+01 8.43800000e+02]\n", + " [ 4.41400000e+02 8.43800000e+02]\n", + " [ 7.99800000e+02 8.43800000e+02]\n", + " [ 1.15820000e+03 8.43800000e+02]\n", + " [ 1.51660000e+03 8.43800000e+02]\n", + " [ 1.87500000e+03 8.43800000e+02]\n", + " [ 8.30000001e+01 1.20220000e+03]\n", + " [ 4.41400000e+02 1.20220000e+03]\n", + " [ 7.99800000e+02 1.20220000e+03]\n", + " [ 1.15820000e+03 1.20220000e+03]\n", + " [ 1.51660000e+03 1.20220000e+03]\n", + " [ 1.87500000e+03 1.20220000e+03]\n", + " [ 8.30000002e+01 1.56060000e+03]\n", + " [ 4.41400000e+02 1.56060000e+03]\n", + " [ 7.99800000e+02 1.56060000e+03]\n", + " [ 1.15820000e+03 1.56060000e+03]\n", + " [ 1.51660000e+03 1.56060000e+03]\n", + " [ 1.87500000e+03 1.56060000e+03]\n", + " [ 8.29999999e+01 1.91900000e+03]\n", + " [ 4.41400000e+02 1.91900000e+03]\n", + " [ 7.99800000e+02 1.91900000e+03]\n", + " [ 1.15820000e+03 1.91900000e+03]\n", + " [ 1.51660000e+03 1.91900000e+03]\n", + " [ 1.87500000e+03 1.91900000e+03]]\n", + "DEBUG:root:make_az_asym: xyp: [[32.31363499 31.47041645]\n", + " [32.3144687 27.08398795]\n", + " [32.31530242 22.69755946]\n", + " [32.31613613 18.31113097]\n", + " [32.31696984 13.92470248]\n", + " [32.31780355 9.53827398]\n", + " [32.31863726 5.15184549]\n", + " [32.31947097 0.765417 ]\n", + " [32.31363499 31.47041645]\n", + " [27.9272065 31.46958273]\n", + " [23.540778 31.46874902]\n", + " [19.15434951 31.46791531]\n", + " [14.76792102 31.4670816 ]\n", + " [10.38149253 31.46624788]\n", + " [ 5.99506403 31.46541417]\n", + " [ 1.60863554 31.46458045]\n", + " [32.31947097 0.765417 ]\n", + " [27.93304248 0.76458329]\n", + " [23.54661399 0.76374957]\n", + " [19.1601855 0.76291586]\n", + " [14.77375701 0.76208215]\n", + " [10.38732851 0.76124844]\n", + " [ 6.00090002 0.76041472]\n", + " [ 1.61447153 0.75958101]\n", + " [ 1.60863554 31.46458045]\n", + " [ 1.60946926 27.07815197]\n", + " [ 1.61030297 22.69172348]\n", + " [ 1.61113668 18.30529498]\n", + " [ 1.61197039 13.91886648]\n", + " [ 1.6128041 9.53243799]\n", + " [ 1.61363782 5.1460095 ]\n", + " [ 1.61447153 0.75958101]\n", + " [32.29899849 29.55791363]\n", + " [32.30002028 24.18191372]\n", + " [32.30104209 18.80591382]\n", + " [32.30206388 13.42991392]\n", + " [32.30308568 8.05391402]\n", + " [32.30410748 2.67791411]\n", + " [30.40113787 31.45505294]\n", + " [25.02513797 31.45403115]\n", + " [19.64913807 31.45300935]\n", + " [14.27313817 31.45198755]\n", + " [ 8.89713826 31.45096576]\n", + " [ 3.52113836 31.44994396]\n", + " [30.40696816 0.7800535 ]\n", + " [25.03096826 0.7790317 ]\n", + " [19.65496836 0.7780099 ]\n", + " [14.27896845 0.77698811]\n", + " [ 8.90296855 0.77596631]\n", + " [ 3.52696865 0.77494451]\n", + " [ 1.62399904 29.55208334]\n", + " [ 1.62502084 24.17608344]\n", + " [ 1.62604264 18.80008353]\n", + " [ 1.62706443 13.42408364]\n", + " [ 1.62808623 8.04808373]\n", + " [ 1.62910803 2.67208383]\n", + " [32.29863784 31.4554136 ]\n", + " [32.29863784 31.4554136 ]\n", + " [ 1.62946868 0.77458386]\n", + " [ 1.62946868 0.77458386]\n", + " [30.40149852 29.55755297]\n", + " [25.02549862 29.55653118]\n", + " [19.64949872 29.55550938]\n", + " [14.27349882 29.55448759]\n", + " [ 8.89749891 29.55346579]\n", + " [ 3.52149901 29.55244399]\n", + " [30.40252032 24.18155307]\n", + " [25.02652042 24.18053128]\n", + " [19.65052052 24.17950948]\n", + " [14.27452061 24.17848769]\n", + " [ 8.89852071 24.17746589]\n", + " [ 3.52252081 24.17644409]\n", + " [30.40354212 18.80555317]\n", + " [25.02754221 18.80453137]\n", + " [19.65154231 18.80350958]\n", + " [14.27554241 18.80248779]\n", + " [ 8.89954251 18.80146598]\n", + " [ 3.5235426 18.80044419]\n", + " [30.40456392 13.42955327]\n", + " [25.02856401 13.42853147]\n", + " [19.65256411 13.42750967]\n", + " [14.27656421 13.42648788]\n", + " [ 8.9005643 13.42546608]\n", + " [ 3.5245644 13.42444429]\n", + " [30.40558571 8.05355336]\n", + " [25.02958581 8.05253157]\n", + " [19.6535859 8.05150977]\n", + " [14.277586 8.05048797]\n", + " [ 8.9015861 8.04946618]\n", + " [ 3.5255862 8.04844438]\n", + " [30.40660751 2.67755346]\n", + " [25.0306076 2.67653166]\n", + " [19.6546077 2.67550987]\n", + " [14.2786078 2.67448807]\n", + " [ 8.90260789 2.67346627]\n", + " [ 3.52660799 2.67244448]]\n", + "DEBUG:root:make_az_asym: xyp: shape: (96, 2)\n", + "DEBUG:root:radec2pix: xyfp: [[-32.31281793 -31.43806373]\n", + " [-32.31091541 -27.05163558]\n", + " [-32.30901287 -22.66520742]\n", + " [-32.30711034 -18.27877926]\n", + " [-32.3052078 -13.8923511 ]\n", + " [-32.30330527 -9.50592294]\n", + " [-32.30140274 -5.11949478]\n", + " [-32.2995002 -0.73306663]\n", + " [-32.31281793 -31.43806373]\n", + " [-27.92638978 -31.43996627]\n", + " [-23.53996162 -31.4418688 ]\n", + " [-19.15353346 -31.44377134]\n", + " [-14.7671053 -31.44567387]\n", + " [-10.38067715 -31.44757641]\n", + " [ -5.99424899 -31.44947894]\n", + " [ -1.60782083 -31.45138147]\n", + " [-32.2995002 -0.73306663]\n", + " [-27.91307204 -0.73496916]\n", + " [-23.52664389 -0.73687169]\n", + " [-19.14021573 -0.73877423]\n", + " [-14.75378757 -0.74067676]\n", + " [-10.36735941 -0.74257929]\n", + " [ -5.98093125 -0.74448183]\n", + " [ -1.59450309 -0.74638436]\n", + " [ -1.60782083 -31.45138147]\n", + " [ -1.60591829 -27.06495331]\n", + " [ -1.60401576 -22.67852516]\n", + " [ -1.60211323 -18.292097 ]\n", + " [ -1.60021069 -13.90566884]\n", + " [ -1.59830816 -9.51924068]\n", + " [ -1.59640563 -5.13281252]\n", + " [ -1.59450309 -0.74638436]\n", + " [-32.29698843 -29.52557043]\n", + " [-32.29465669 -24.14957093]\n", + " [-32.29232495 -18.77357144]\n", + " [-32.2899932 -13.39757194]\n", + " [-32.28766146 -8.02157244]\n", + " [-32.28532972 -2.64557295]\n", + " [-30.40031161 -31.42389325]\n", + " [-25.02431212 -31.42622499]\n", + " [-19.64831262 -31.42855673]\n", + " [-14.27231313 -31.43088848]\n", + " [ -8.89631363 -31.43322022]\n", + " [ -3.52031414 -31.43555196]\n", + " [-30.38700689 -0.74889614]\n", + " [-25.01100739 -0.75122788]\n", + " [-19.6350079 -0.75355962]\n", + " [-14.25900841 -0.75589136]\n", + " [ -8.88300892 -0.7582231 ]\n", + " [ -3.50700942 -0.76055484]\n", + " [ -1.62199131 -29.53887515]\n", + " [ -1.61965957 -24.16287565]\n", + " [ -1.61732783 -18.78687616]\n", + " [ -1.61499609 -13.41087666]\n", + " [ -1.61266434 -8.03487716]\n", + " [ -1.6103326 -2.65887768]\n", + " [-32.29781143 -31.42307024]\n", + " [-32.29781143 -31.42307024]\n", + " [ -1.60950959 -0.76137785]\n", + " [ -1.60950959 -0.76137785]\n", + " [-30.3994886 -29.52639343]\n", + " [-25.02348911 -29.52872517]\n", + " [-19.64748962 -29.53105692]\n", + " [-14.27149012 -29.53338866]\n", + " [ -8.89549063 -29.5357204 ]\n", + " [ -3.51949113 -29.53805214]\n", + " [-30.39715686 -24.15039394]\n", + " [-25.02115737 -24.15272568]\n", + " [-19.64515788 -24.15505742]\n", + " [-14.26915838 -24.15738916]\n", + " [ -8.89315889 -24.1597209 ]\n", + " [ -3.51715939 -24.16205264]\n", + " [-30.39482512 -18.77439444]\n", + " [-25.01882563 -18.77672618]\n", + " [-19.64282613 -18.77905793]\n", + " [-14.26682664 -18.78138967]\n", + " [ -8.89082714 -18.78372141]\n", + " [ -3.51482765 -18.78605315]\n", + " [-30.39249338 -13.39839495]\n", + " [-25.01649389 -13.40072669]\n", + " [-19.64049439 -13.40305843]\n", + " [-14.2644949 -13.40539017]\n", + " [ -8.8884954 -13.40772191]\n", + " [ -3.51249591 -13.41005365]\n", + " [-30.39016163 -8.02239545]\n", + " [-25.01416214 -8.02472719]\n", + " [-19.63816265 -8.02705893]\n", + " [-14.26216315 -8.02939068]\n", + " [ -8.88616366 -8.03172242]\n", + " [ -3.51016417 -8.03405416]\n", + " [-30.3878299 -2.64639596]\n", + " [-25.01183041 -2.6487277 ]\n", + " [-19.63583091 -2.65105944]\n", + " [-14.25983141 -2.65339118]\n", + " [ -8.88383191 -2.65572292]\n", + " [ -3.50783243 -2.65805467]]\n", + "DEBUG:root:radec2pix: xyfp Shape: (96, 2)\n", + "DEBUG:root:cartToSphere: vec: [[-0.00108623 0.20994474 0.97771265]\n", + " [-0.00110818 0.18250974 0.98320342]\n", + " [-0.00112898 0.15437814 0.98801119]\n", + " [-0.00114857 0.12565449 0.9920734 ]\n", + " [-0.00116686 0.09644464 0.99533767]\n", + " [-0.00118378 0.0668576 0.99776183]\n", + " [-0.00119922 0.03700641 0.99931431]\n", + " [-0.00121312 0.00700791 0.99997471]\n", + " [-0.00108623 0.20994474 0.97771265]\n", + " [-0.03008973 0.20980966 0.97727914]\n", + " [-0.05897582 0.20940234 0.97604944]\n", + " [-0.08763213 0.20872399 0.97404051]\n", + " [-0.11594722 0.20777622 0.97128023]\n", + " [-0.14381054 0.20656061 0.96780744]\n", + " [-0.17111212 0.20507835 0.96367189]\n", + " [-0.19774215 0.20333011 0.95893426]\n", + " [-0.00121312 0.00700791 0.99997471]\n", + " [-0.0312253 0.00701559 0.99948775]\n", + " [-0.06111305 0.00701392 0.99810621]\n", + " [-0.09075893 0.00700302 0.99584827]\n", + " [-0.12004913 0.00698305 0.99274339]\n", + " [-0.1488739 0.00695418 0.98883174]\n", + " [-0.17712688 0.00691659 0.98416372]\n", + " [-0.20470344 0.00687038 0.97879993]\n", + " [-0.19774215 0.20333011 0.95893426]\n", + " [-0.19951656 0.17679323 0.96381393]\n", + " [-0.20103291 0.14956333 0.96809947]\n", + " [-0.2022905 0.12175011 0.97172808]\n", + " [-0.20328809 0.09346339 0.97464791]\n", + " [-0.20402394 0.06481351 0.97681802]\n", + " [-0.20449622 0.03591173 0.97820838]\n", + " [-0.20470344 0.00687038 0.97879993]\n", + " [-0.00119558 0.19807534 0.98018607]\n", + " [-0.00122271 0.16396932 0.98646468]\n", + " [-0.00124786 0.12892083 0.9916541 ]\n", + " [-0.00127089 0.09312409 0.9956537 ]\n", + " [-0.00129164 0.05677987 0.99838589]\n", + " [-0.00130994 0.02009792 0.99979716]\n", + " [-0.01373956 0.20982687 0.97764201]\n", + " [-0.04922259 0.20947825 0.9765736 ]\n", + " [-0.08441749 0.20872203 0.97432479]\n", + " [-0.11911871 0.20756102 0.97094241]\n", + " [-0.1531227 0.20599809 0.96649792]\n", + " [-0.18622706 0.20403521 0.96108746]\n", + " [-0.01430615 0.00711509 0.99987235]\n", + " [-0.05102028 0.00711803 0.99867225]\n", + " [-0.08743049 0.00710683 0.99614527]\n", + " [-0.12332566 0.00708177 0.99234098]\n", + " [-0.15850368 0.0070432 0.98733327]\n", + " [-0.19276957 0.00699139 0.98121915]\n", + " [-0.19845732 0.19185821 0.96114781]\n", + " [-0.20045757 0.1588536 0.96673797]\n", + " [-0.20206974 0.12491703 0.971372 ]\n", + " [-0.20329178 0.09025061 0.97494989]\n", + " [-0.20412054 0.0550575 0.97739627]\n", + " [-0.20455274 0.01954302 0.97866043]\n", + " [-0.00118556 0.20985223 0.97773239]\n", + " [-0.00118556 0.20985223 0.97773239]\n", + " [-0.20461015 0.00696998 0.97881873]\n", + " [-0.20461015 0.00696998 0.97881873]\n", + " [-0.01379915 0.19805172 0.98009443]\n", + " [-0.04942232 0.19772367 0.97901113]\n", + " [-0.08475642 0.19701128 0.97673072]\n", + " [-0.11959564 0.19591776 0.97330012]\n", + " [-0.15373662 0.19444643 0.96879081]\n", + " [-0.18697743 0.19259955 0.96329894]\n", + " [-0.01395111 0.16395068 0.98636988]\n", + " [-0.04992687 0.1636812 0.98524909]\n", + " [-0.08561039 0.16309354 0.98288929]\n", + " [-0.12079486 0.16219177 0.97933775]\n", + " [-0.15527748 0.16098028 0.97466623]\n", + " [-0.18885795 0.15946229 0.96897082]\n", + " [-0.0140777 0.12890725 0.99155673]\n", + " [-0.05033965 0.1286975 0.99040541]\n", + " [-0.08630574 0.12823673 0.9879811 ]\n", + " [-0.12176792 0.12752928 0.98433168]\n", + " [-0.15652378 0.12657997 0.97952939]\n", + " [-0.19037482 0.12539259 0.97367044]\n", + " [-0.01417814 0.09311572 0.99555434]\n", + " [-0.05065827 0.09296747 0.9943796 ]\n", + " [-0.08683905 0.092637 0.99190593]\n", + " [-0.12251113 0.09212815 0.98818188]\n", + " [-0.15747231 0.0914453 0.98328034]\n", + " [-0.19152571 0.09059206 0.97729779]\n", + " [-0.0142515 0.05677687 0.99828517]\n", + " [-0.05087978 0.05669199 0.99709441]\n", + " [-0.08720594 0.05649545 0.99458704]\n", + " [-0.12301955 0.05618991 0.99081223]\n", + " [-0.15811848 0.05577844 0.98584345]\n", + " [-0.19230704 0.0552636 0.97977749]\n", + " [-0.01429691 0.02010041 0.99969574]\n", + " [-0.0510015 0.0200803 0.99849668]\n", + " [-0.08740238 0.02002048 0.99597189]\n", + " [-0.12328852 0.0199219 0.99217088]\n", + " [-0.15845779 0.01978566 0.98716749]\n", + " [-0.19271515 0.01961272 0.98105872]]\n", + "DEBUG:root:optics_fp: sphi: [0.70073958 0.64606768 0.57926126 0.49834142 0.40194059 0.29007134\n", + " 0.1649404 0.0313274 0.70073958 0.75081049 0.80330242 0.85632562\n", + " 0.90683747 0.95061586 0.98274331 0.99875393 0.0313274 0.03631497\n", + " 0.04315962 0.05313395 0.069014 0.09821415 0.1691786 0.5459791\n", + " 0.99875393 0.99832709 0.99763477 0.99640065 0.99386824 0.98730608\n", + " 0.96018902 0.5459791 0.67842975 0.60353431 0.50840257 0.39023062\n", + " 0.2491346 0.09026478 0.72202887 0.78522123 0.85029163 0.91212843\n", + " 0.9630057 0.99397217 0.03381828 0.04117383 0.05254813 0.07246053\n", + " 0.11619532 0.28568936 0.998564 0.99787113 0.99651836 0.99329877\n", + " 0.98218517 0.87963764 0.70073672 0.70073672 0.54790634 0.54790634\n", + " 0.7003523 0.76617231 0.83524188 0.90223637 0.95845287 0.99319172\n", + " 0.62671212 0.69894092 0.77968384 0.86389216 0.9399874 0.98993027\n", + " 0.53140435 0.60624939 0.69673956 0.80101328 0.90667588 0.98362991\n", + " 0.41062285 0.48009609 0.57202299 0.69282748 0.83927416 0.96899587\n", + " 0.26367291 0.3152909 0.38989736 0.5039234 0.68394565 0.92210851\n", + " 0.09588115 0.11634315 0.14772342 0.20168832 0.31431902 0.6442708 ]\n", + "DEBUG:root:radec2pix: xyfp: [[ -0.172993 31.426621 ]\n", + " [ -0.172993 27.04019243]\n", + " [ -0.172993 22.65376385]\n", + " [ -0.172993 18.26733528]\n", + " [ -0.172993 13.88090671]\n", + " [ -0.172993 9.49447814]\n", + " [ -0.172993 5.10804957]\n", + " [ -0.172993 0.721621 ]\n", + " [ -0.172993 31.426621 ]\n", + " [ -4.55942157 31.426621 ]\n", + " [ -8.94585014 31.426621 ]\n", + " [-13.33227871 31.426621 ]\n", + " [-17.71870729 31.426621 ]\n", + " [-22.10513586 31.426621 ]\n", + " [-26.49156443 31.426621 ]\n", + " [-30.877993 31.426621 ]\n", + " [ -0.172993 0.721621 ]\n", + " [ -4.55942157 0.721621 ]\n", + " [ -8.94585014 0.721621 ]\n", + " [-13.33227872 0.721621 ]\n", + " [-17.71870728 0.721621 ]\n", + " [-22.10513586 0.721621 ]\n", + " [-26.49156443 0.721621 ]\n", + " [-30.877993 0.721621 ]\n", + " [-30.877993 31.426621 ]\n", + " [-30.877993 27.04019243]\n", + " [-30.877993 22.65376385]\n", + " [-30.877993 18.26733529]\n", + " [-30.877993 13.88090671]\n", + " [-30.877993 9.49447814]\n", + " [-30.877993 5.10804957]\n", + " [-30.877993 0.721621 ]\n", + " [ -0.187993 29.514121 ]\n", + " [ -0.187993 24.138121 ]\n", + " [ -0.187993 18.76212101]\n", + " [ -0.187993 13.386121 ]\n", + " [ -0.187993 8.010121 ]\n", + " [ -0.187993 2.634121 ]\n", + " [ -2.085493 31.411621 ]\n", + " [ -7.461493 31.411621 ]\n", + " [-12.837493 31.411621 ]\n", + " [-18.213493 31.411621 ]\n", + " [-23.589493 31.411621 ]\n", + " [-28.965493 31.411621 ]\n", + " [ -2.085493 0.736621 ]\n", + " [ -7.461493 0.736621 ]\n", + " [-12.837493 0.736621 ]\n", + " [-18.213493 0.736621 ]\n", + " [-23.58949299 0.736621 ]\n", + " [-28.965493 0.736621 ]\n", + " [-30.862993 29.514121 ]\n", + " [-30.862993 24.138121 ]\n", + " [-30.862993 18.762121 ]\n", + " [-30.862993 13.386121 ]\n", + " [-30.862993 8.010121 ]\n", + " [-30.862993 2.634121 ]\n", + " [ -0.187993 31.411621 ]\n", + " [ -0.187993 31.411621 ]\n", + " [-30.862993 0.736621 ]\n", + " [-30.862993 0.736621 ]\n", + " [ -2.085493 29.514121 ]\n", + " [ -7.461493 29.514121 ]\n", + " [-12.837493 29.514121 ]\n", + " [-18.213493 29.514121 ]\n", + " [-23.589493 29.514121 ]\n", + " [-28.965493 29.514121 ]\n", + " [ -2.085493 24.138121 ]\n", + " [ -7.461493 24.138121 ]\n", + " [-12.837493 24.138121 ]\n", + " [-18.213493 24.138121 ]\n", + " [-23.589493 24.138121 ]\n", + " [-28.965493 24.138121 ]\n", + " [ -2.085493 18.762121 ]\n", + " [ -7.461493 18.762121 ]\n", + " [-12.837493 18.762121 ]\n", + " [-18.213493 18.762121 ]\n", + " [-23.589493 18.762121 ]\n", + " [-28.965493 18.762121 ]\n", + " [ -2.085493 13.386121 ]\n", + " [ -7.461493 13.386121 ]\n", + " [-12.837493 13.386121 ]\n", + " [-18.213493 13.386121 ]\n", + " [-23.589493 13.386121 ]\n", + " [-28.965493 13.386121 ]\n", + " [ -2.085493 8.010121 ]\n", + " [ -7.461493 8.010121 ]\n", + " [-12.837493 8.010121 ]\n", + " [-18.213493 8.010121 ]\n", + " [-23.589493 8.010121 ]\n", + " [-28.965493 8.010121 ]\n", + " [ -2.085493 2.634121 ]\n", + " [ -7.461493 2.634121 ]\n", + " [-12.837493 2.634121 ]\n", + " [-18.213493 2.634121 ]\n", + " [-23.589493 2.634121 ]\n", + " [-28.965493 2.634121 ]]\n", + "DEBUG:root:radec2pix: lng: [ 90.2964384 90.3478894 90.41900227 90.52370941 90.69317626\n", + " 91.01436915 91.85606354 99.82098825 90.2964384 98.16139155\n", + " 105.72927905 112.77495178 119.16321868 124.84620437 129.84075369\n", + " 134.20177453 99.82098825 167.3372664 173.45282833 175.5877589\n", + " 176.67095531 177.32554882 177.76380439 178.07772632 134.20177453\n", + " 138.45558903 143.3516981 148.95804019 155.308999 162.37619731\n", + " 170.03980495 178.07772632 90.34583364 90.4272438 90.55456533\n", + " 90.78188435 91.3031483 93.7291305 93.74640471 103.2233069\n", + " 112.02083939 119.85139884 126.62419493 132.38733532 153.55676438\n", + " 172.05771641 175.35290167 176.71349424 177.45570466 177.92289984\n", + " 135.96861356 141.60475991 148.27615291 156.06135558 164.90482616\n", + " 174.54251233 90.32368928 90.32368928 178.04899302 178.04899302\n", + " 93.98561362 104.03389942 113.27790792 121.40147615 128.33121468\n", + " 134.15142333 94.8637718 106.96302166 117.69569442 126.6774761\n", + " 133.96694623 139.82391059 96.23245551 111.36280739 123.94129691\n", + " 133.676108 141.03771084 146.62863656 98.65756574 118.5861081\n", + " 133.14971036 143.05690148 149.85595749 154.68575435 104.09063117\n", + " 131.90726386 147.0632386 155.45116677 160.56901612 163.96684771\n", + " 125.42327674 158.50946167 167.09834094 170.82105172 172.88266004\n", + " 174.18898669]\n", + "DEBUG:root:mm_to_pix: fitpx: [[0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]]\n", + "DEBUG:root:radec2pix: lat: [77.88072123 79.48382459 81.11902826 82.7811435 84.46512008 86.16588026\n", + " 87.87809063 89.592501 77.88072123 77.76297714 77.43489604 76.91632478\n", + " 76.23510116 75.42235372 74.50888673 73.52311865 89.592501 88.1660092\n", + " 86.47326812 84.77720909 83.09335022 81.42892112 79.7896882 78.18111406\n", + " 73.52311865 74.53938675 75.48898077 76.34336174 77.07095847 77.63894653\n", + " 78.01676209 78.18111406 78.57535641 80.56236957 82.59241544 84.65614182\n", + " 86.74415968 88.84595283 77.86145981 77.57369823 76.98847403 76.15398719\n", + " 75.12717296 73.96382281 89.0844999 87.04713438 84.96761219 82.90419496\n", + " 80.87086863 78.87814184 73.97634463 75.18085203 76.25721571 77.14851635\n", + " 77.79468183 78.14215534 77.8861108 77.8861108 78.18637455 78.18637455\n", + " 78.54888043 78.24034026 77.6156038 76.73023014 75.64791869 74.42908235\n", + " 80.52930205 80.14668621 79.38566385 78.33252026 77.07564982 75.68958597\n", + " 82.54926459 82.05674096 81.10786838 79.84412063 78.38693881 76.82298725\n", + " 84.59535958 83.92250159 82.7051798 81.18260126 79.50799917 77.76802141\n", + " 86.64409097 85.63122317 84.03581665 82.22723271 80.34771821 78.45776966\n", + " 88.58657998 86.85792078 84.85560606 82.82572865 80.81119712 78.83059106]\n", + "DEBUG:root:mm_to_pix: fitpx.shape: (96, 2)\n", + "DEBUG:root:radec2pix: fitpx: [[-4.99999744e-01 -4.99999751e-01]\n", + " [-5.00000258e-01 2.91928571e+02]\n", + " [-5.00000005e-01 5.84357143e+02]\n", + " [-4.99999941e-01 8.76785714e+02]\n", + " [-4.99999889e-01 1.16921429e+03]\n", + " [-4.99999948e-01 1.46164286e+03]\n", + " [-5.00000143e-01 1.75407143e+03]\n", + " [-4.99999962e-01 2.04650000e+03]\n", + " [-4.99999744e-01 -4.99999751e-01]\n", + " [ 2.91928571e+02 -5.00000271e-01]\n", + " [ 5.84357143e+02 -4.99999959e-01]\n", + " [ 8.76785714e+02 -5.00000035e-01]\n", + " [ 1.16921429e+03 -5.00000130e-01]\n", + " [ 1.46164286e+03 -5.00000295e-01]\n", + " [ 1.75407143e+03 -5.00000131e-01]\n", + " [ 2.04650000e+03 -5.00000000e-01]\n", + " [-4.99999962e-01 2.04650000e+03]\n", + " [ 2.91928571e+02 2.04650000e+03]\n", + " [ 5.84357143e+02 2.04650000e+03]\n", + " [ 8.76785714e+02 2.04650000e+03]\n", + " [ 1.16921429e+03 2.04650000e+03]\n", + " [ 1.46164286e+03 2.04650000e+03]\n", + " [ 1.75407143e+03 2.04650000e+03]\n", + " [ 2.04650000e+03 2.04650000e+03]\n", + " [ 2.04650000e+03 -5.00000000e-01]\n", + " [ 2.04650000e+03 2.91928571e+02]\n", + " [ 2.04650000e+03 5.84357143e+02]\n", + " [ 2.04650000e+03 8.76785714e+02]\n", + " [ 2.04650000e+03 1.16921429e+03]\n", + " [ 2.04650000e+03 1.46164286e+03]\n", + " [ 2.04650000e+03 1.75407143e+03]\n", + " [ 2.04650000e+03 2.04650000e+03]\n", + " [ 4.99999742e-01 1.27000000e+02]\n", + " [ 4.99999873e-01 4.85400000e+02]\n", + " [ 4.99999712e-01 8.43800000e+02]\n", + " [ 5.00000277e-01 1.20220000e+03]\n", + " [ 5.00000282e-01 1.56060000e+03]\n", + " [ 4.99999780e-01 1.91900000e+03]\n", + " [ 1.27000000e+02 4.99999945e-01]\n", + " [ 4.85400000e+02 4.99999943e-01]\n", + " [ 8.43800000e+02 5.00000147e-01]\n", + " [ 1.20220000e+03 4.99999799e-01]\n", + " [ 1.56060000e+03 5.00000078e-01]\n", + " [ 1.91900000e+03 4.99999710e-01]\n", + " [ 1.27000000e+02 2.04550000e+03]\n", + " [ 4.85400000e+02 2.04550000e+03]\n", + " [ 8.43800000e+02 2.04550000e+03]\n", + " [ 1.20220000e+03 2.04550000e+03]\n", + " [ 1.56060000e+03 2.04550000e+03]\n", + " [ 1.91900000e+03 2.04550000e+03]\n", + " [ 2.04550000e+03 1.27000000e+02]\n", + " [ 2.04550000e+03 4.85400000e+02]\n", + " [ 2.04550000e+03 8.43800000e+02]\n", + " [ 2.04550000e+03 1.20220000e+03]\n", + " [ 2.04550000e+03 1.56060000e+03]\n", + " [ 2.04550000e+03 1.91900000e+03]\n", + " [ 5.00000247e-01 5.00000241e-01]\n", + " [ 5.00000247e-01 5.00000241e-01]\n", + " [ 2.04550000e+03 2.04550000e+03]\n", + " [ 2.04550000e+03 2.04550000e+03]\n", + " [ 1.27000000e+02 1.27000000e+02]\n", + " [ 4.85400000e+02 1.27000000e+02]\n", + " [ 8.43800000e+02 1.27000000e+02]\n", + " [ 1.20220000e+03 1.27000000e+02]\n", + " [ 1.56060000e+03 1.27000000e+02]\n", + " [ 1.91900000e+03 1.27000000e+02]\n", + " [ 1.27000000e+02 4.85400000e+02]\n", + " [ 4.85400000e+02 4.85400000e+02]\n", + " [ 8.43800000e+02 4.85400000e+02]\n", + " [ 1.20220000e+03 4.85400000e+02]\n", + " [ 1.56060000e+03 4.85400000e+02]\n", + " [ 1.91900000e+03 4.85400000e+02]\n", + " [ 1.27000000e+02 8.43800000e+02]\n", + " [ 4.85400000e+02 8.43800000e+02]\n", + " [ 8.43800000e+02 8.43800000e+02]\n", + " [ 1.20220000e+03 8.43800000e+02]\n", + " [ 1.56060000e+03 8.43800000e+02]\n", + " [ 1.91900000e+03 8.43800000e+02]\n", + " [ 1.27000000e+02 1.20220000e+03]\n", + " [ 4.85400000e+02 1.20220000e+03]\n", + " [ 8.43800000e+02 1.20220000e+03]\n", + " [ 1.20220000e+03 1.20220000e+03]\n", + " [ 1.56060000e+03 1.20220000e+03]\n", + " [ 1.91900000e+03 1.20220000e+03]\n", + " [ 1.27000000e+02 1.56060000e+03]\n", + " [ 4.85400000e+02 1.56060000e+03]\n", + " [ 8.43800000e+02 1.56060000e+03]\n", + " [ 1.20220000e+03 1.56060000e+03]\n", + " [ 1.56060000e+03 1.56060000e+03]\n", + " [ 1.91900000e+03 1.56060000e+03]\n", + " [ 1.27000000e+02 1.91900000e+03]\n", + " [ 4.85400000e+02 1.91900000e+03]\n", + " [ 8.43800000e+02 1.91900000e+03]\n", + " [ 1.20220000e+03 1.91900000e+03]\n", + " [ 1.56060000e+03 1.91900000e+03]\n", + " [ 1.91900000e+03 1.91900000e+03]]\n", + "DEBUG:root:fitpix2pix: ccdpx: shape: (96, 2)\n", + "DEBUG:root:radec2pix: xyfp: [[32.31363499 31.47041645]\n", + " [32.3144687 27.08398795]\n", + " [32.31530242 22.69755946]\n", + " [32.31613613 18.31113097]\n", + " [32.31696984 13.92470248]\n", + " [32.31780355 9.53827398]\n", + " [32.31863726 5.15184549]\n", + " [32.31947097 0.765417 ]\n", + " [32.31363499 31.47041645]\n", + " [27.9272065 31.46958273]\n", + " [23.540778 31.46874902]\n", + " [19.15434951 31.46791531]\n", + " [14.76792102 31.4670816 ]\n", + " [10.38149253 31.46624788]\n", + " [ 5.99506403 31.46541417]\n", + " [ 1.60863554 31.46458045]\n", + " [32.31947097 0.765417 ]\n", + " [27.93304248 0.76458329]\n", + " [23.54661399 0.76374957]\n", + " [19.1601855 0.76291586]\n", + " [14.77375701 0.76208215]\n", + " [10.38732851 0.76124844]\n", + " [ 6.00090002 0.76041472]\n", + " [ 1.61447153 0.75958101]\n", + " [ 1.60863554 31.46458045]\n", + " [ 1.60946926 27.07815197]\n", + " [ 1.61030297 22.69172348]\n", + " [ 1.61113668 18.30529498]\n", + " [ 1.61197039 13.91886648]\n", + " [ 1.6128041 9.53243799]\n", + " [ 1.61363782 5.1460095 ]\n", + " [ 1.61447153 0.75958101]\n", + " [32.29899849 29.55791363]\n", + " [32.30002028 24.18191372]\n", + " [32.30104209 18.80591382]\n", + " [32.30206388 13.42991392]\n", + " [32.30308568 8.05391402]\n", + " [32.30410748 2.67791411]\n", + " [30.40113787 31.45505294]\n", + " [25.02513797 31.45403115]\n", + " [19.64913807 31.45300935]\n", + " [14.27313817 31.45198755]\n", + " [ 8.89713826 31.45096576]\n", + " [ 3.52113836 31.44994396]\n", + " [30.40696816 0.7800535 ]\n", + " [25.03096826 0.7790317 ]\n", + " [19.65496836 0.7780099 ]\n", + " [14.27896845 0.77698811]\n", + " [ 8.90296855 0.77596631]\n", + " [ 3.52696865 0.77494451]\n", + " [ 1.62399904 29.55208334]\n", + " [ 1.62502084 24.17608344]\n", + " [ 1.62604264 18.80008353]\n", + " [ 1.62706443 13.42408364]\n", + " [ 1.62808623 8.04808373]\n", + " [ 1.62910803 2.67208383]\n", + " [32.29863784 31.4554136 ]\n", + " [32.29863784 31.4554136 ]\n", + " [ 1.62946868 0.77458386]\n", + " [ 1.62946868 0.77458386]\n", + " [30.40149852 29.55755297]\n", + " [25.02549862 29.55653118]\n", + " [19.64949872 29.55550938]\n", + " [14.27349882 29.55448759]\n", + " [ 8.89749891 29.55346579]\n", + " [ 3.52149901 29.55244399]\n", + " [30.40252032 24.18155307]\n", + " [25.02652042 24.18053128]\n", + " [19.65052052 24.17950948]\n", + " [14.27452061 24.17848769]\n", + " [ 8.89852071 24.17746589]\n", + " [ 3.52252081 24.17644409]\n", + " [30.40354212 18.80555317]\n", + " [25.02754221 18.80453137]\n", + " [19.65154231 18.80350958]\n", + " [14.27554241 18.80248779]\n", + " [ 8.89954251 18.80146598]\n", + " [ 3.5235426 18.80044419]\n", + " [30.40456392 13.42955327]\n", + " [25.02856401 13.42853147]\n", + " [19.65256411 13.42750967]\n", + " [14.27656421 13.42648788]\n", + " [ 8.9005643 13.42546608]\n", + " [ 3.5245644 13.42444429]\n", + " [30.40558571 8.05355336]\n", + " [25.02958581 8.05253157]\n", + " [19.6535859 8.05150977]\n", + " [14.277586 8.05048797]\n", + " [ 8.9015861 8.04946618]\n", + " [ 3.5255862 8.04844438]\n", + " [30.40660751 2.67755346]\n", + " [25.0306076 2.67653166]\n", + " [19.6546077 2.67550987]\n", + " [14.2786078 2.67448807]\n", + " [ 8.90260789 2.67346627]\n", + " [ 3.52660799 2.67244448]]\n", + "DEBUG:root:fitpix2pix: visCut: True\n", + "DEBUG:root:radec2pix: xyfp Shape: (96, 2)\n", + "DEBUG:root:radec2pix: ccdpx: [[-4.45000000e+01 -4.99999902e-01]\n", + " [-4.45000000e+01 2.91928572e+02]\n", + " [-4.45000000e+01 5.84357143e+02]\n", + " [-4.45000000e+01 8.76785715e+02]\n", + " [-4.45000000e+01 1.16921429e+03]\n", + " [-4.45000000e+01 1.46164286e+03]\n", + " [-4.45000000e+01 1.75407143e+03]\n", + " [-4.45000001e+01 2.04650000e+03]\n", + " [-4.45000000e+01 -4.99999902e-01]\n", + " [ 2.47928571e+02 -4.99999902e-01]\n", + " [ 5.40357143e+02 -4.99999727e-01]\n", + " [ 8.32785714e+02 -5.00000071e-01]\n", + " [ 1.12521429e+03 -5.00000281e-01]\n", + " [ 1.41764286e+03 -4.99999968e-01]\n", + " [ 1.71007143e+03 -5.00000211e-01]\n", + " [ 2.00250000e+03 -5.00000200e-01]\n", + " [-4.45000001e+01 2.04650000e+03]\n", + " [ 2.47928571e+02 2.04650000e+03]\n", + " [ 5.40357143e+02 2.04650000e+03]\n", + " [ 8.32785714e+02 2.04650000e+03]\n", + " [ 1.12521429e+03 2.04650000e+03]\n", + " [ 1.41764286e+03 2.04650000e+03]\n", + " [ 1.71007143e+03 2.04650000e+03]\n", + " [ 2.00250000e+03 2.04650000e+03]\n", + " [ 2.00250000e+03 -5.00000200e-01]\n", + " [ 2.00250000e+03 2.91928571e+02]\n", + " [ 2.00250000e+03 5.84357143e+02]\n", + " [ 2.00250000e+03 8.76785714e+02]\n", + " [ 2.00250000e+03 1.16921429e+03]\n", + " [ 2.00250000e+03 1.46164286e+03]\n", + " [ 2.00250000e+03 1.75407143e+03]\n", + " [ 2.00250000e+03 2.04650000e+03]\n", + " [-4.35000000e+01 1.27000000e+02]\n", + " [-4.35000000e+01 4.85400000e+02]\n", + " [-4.35000000e+01 8.43800000e+02]\n", + " [-4.35000000e+01 1.20220000e+03]\n", + " [-4.35000000e+01 1.56060000e+03]\n", + " [-4.35000000e+01 1.91900000e+03]\n", + " [ 8.30000000e+01 5.00000088e-01]\n", + " [ 4.41400000e+02 5.00000229e-01]\n", + " [ 7.99800000e+02 4.99999876e-01]\n", + " [ 1.15820000e+03 5.00000139e-01]\n", + " [ 1.51660000e+03 5.00000172e-01]\n", + " [ 1.87500000e+03 4.99999925e-01]\n", + " [ 8.30000002e+01 2.04550000e+03]\n", + " [ 4.41400000e+02 2.04550000e+03]\n", + " [ 7.99800000e+02 2.04550000e+03]\n", + " [ 1.15820000e+03 2.04550000e+03]\n", + " [ 1.51660000e+03 2.04550000e+03]\n", + " [ 1.87500000e+03 2.04550000e+03]\n", + " [ 2.00150000e+03 1.27000000e+02]\n", + " [ 2.00150000e+03 4.85400000e+02]\n", + " [ 2.00150000e+03 8.43800000e+02]\n", + " [ 2.00150000e+03 1.20220000e+03]\n", + " [ 2.00150000e+03 1.56060000e+03]\n", + " [ 2.00150000e+03 1.91900000e+03]\n", + " [-4.35000000e+01 5.00000166e-01]\n", + " [-4.35000000e+01 5.00000166e-01]\n", + " [ 2.00150000e+03 2.04550000e+03]\n", + " [ 2.00150000e+03 2.04550000e+03]\n", + " [ 8.30000000e+01 1.27000000e+02]\n", + " [ 4.41400000e+02 1.27000000e+02]\n", + " [ 7.99800000e+02 1.27000000e+02]\n", + " [ 1.15820000e+03 1.27000000e+02]\n", + " [ 1.51660000e+03 1.27000000e+02]\n", + " [ 1.87500000e+03 1.27000000e+02]\n", + " [ 8.30000000e+01 4.85400000e+02]\n", + " [ 4.41400000e+02 4.85400000e+02]\n", + " [ 7.99800000e+02 4.85400000e+02]\n", + " [ 1.15820000e+03 4.85400000e+02]\n", + " [ 1.51660000e+03 4.85400000e+02]\n", + " [ 1.87500000e+03 4.85400000e+02]\n", + " [ 8.30000000e+01 8.43800000e+02]\n", + " [ 4.41400000e+02 8.43800000e+02]\n", + " [ 7.99800000e+02 8.43800000e+02]\n", + " [ 1.15820000e+03 8.43800000e+02]\n", + " [ 1.51660000e+03 8.43800000e+02]\n", + " [ 1.87500000e+03 8.43800000e+02]\n", + " [ 8.30000000e+01 1.20220000e+03]\n", + " [ 4.41400000e+02 1.20220000e+03]\n", + " [ 7.99800000e+02 1.20220000e+03]\n", + " [ 1.15820000e+03 1.20220000e+03]\n", + " [ 1.51660000e+03 1.20220000e+03]\n", + " [ 1.87500000e+03 1.20220000e+03]\n", + " [ 8.30000000e+01 1.56060000e+03]\n", + " [ 4.41400000e+02 1.56060000e+03]\n", + " [ 7.99800000e+02 1.56060000e+03]\n", + " [ 1.15820000e+03 1.56060000e+03]\n", + " [ 1.51660000e+03 1.56060000e+03]\n", + " [ 1.87500000e+03 1.56060000e+03]\n", + " [ 8.30000001e+01 1.91900000e+03]\n", + " [ 4.41400000e+02 1.91900000e+03]\n", + " [ 7.99800000e+02 1.91900000e+03]\n", + " [ 1.15820000e+03 1.91900000e+03]\n", + " [ 1.51660000e+03 1.91900000e+03]\n", + " [ 1.87500000e+03 1.91900000e+03]]\n", + "DEBUG:root:mm_to_pix: fitpx: [[0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]]\n", + "DEBUG:root:mm_to_pix: fitpx.shape: (96, 2)\n", + "DEBUG:root:radec2pix: xyfp: [[-32.31281793 -31.43806373]\n", + " [-32.31091541 -27.05163558]\n", + " [-32.30901287 -22.66520742]\n", + " [-32.30711034 -18.27877926]\n", + " [-32.3052078 -13.8923511 ]\n", + " [-32.30330527 -9.50592294]\n", + " [-32.30140274 -5.11949478]\n", + " [-32.2995002 -0.73306663]\n", + " [-32.31281793 -31.43806373]\n", + " [-27.92638978 -31.43996627]\n", + " [-23.53996162 -31.4418688 ]\n", + " [-19.15353346 -31.44377134]\n", + " [-14.7671053 -31.44567387]\n", + " [-10.38067715 -31.44757641]\n", + " [ -5.99424899 -31.44947894]\n", + " [ -1.60782083 -31.45138147]\n", + " [-32.2995002 -0.73306663]\n", + " [-27.91307204 -0.73496916]\n", + " [-23.52664389 -0.73687169]\n", + " [-19.14021573 -0.73877423]\n", + " [-14.75378757 -0.74067676]\n", + " [-10.36735941 -0.74257929]\n", + " [ -5.98093125 -0.74448183]\n", + " [ -1.59450309 -0.74638436]\n", + " [ -1.60782083 -31.45138147]\n", + " [ -1.60591829 -27.06495331]\n", + " [ -1.60401576 -22.67852516]\n", + " [ -1.60211323 -18.292097 ]\n", + " [ -1.60021069 -13.90566884]\n", + " [ -1.59830816 -9.51924068]\n", + " [ -1.59640563 -5.13281252]\n", + " [ -1.59450309 -0.74638436]\n", + " [-32.29698843 -29.52557043]\n", + " [-32.29465669 -24.14957093]\n", + " [-32.29232495 -18.77357144]\n", + " [-32.2899932 -13.39757194]\n", + " [-32.28766146 -8.02157244]\n", + " [-32.28532972 -2.64557295]\n", + " [-30.40031161 -31.42389325]\n", + " [-25.02431212 -31.42622499]\n", + " [-19.64831262 -31.42855673]\n", + " [-14.27231313 -31.43088848]\n", + " [ -8.89631363 -31.43322022]\n", + " [ -3.52031414 -31.43555196]\n", + " [-30.38700689 -0.74889614]\n", + " [-25.01100739 -0.75122788]\n", + " [-19.6350079 -0.75355962]\n", + " [-14.25900841 -0.75589136]\n", + " [ -8.88300892 -0.7582231 ]\n", + " [ -3.50700942 -0.76055484]\n", + " [ -1.62199131 -29.53887515]\n", + " [ -1.61965957 -24.16287565]\n", + " [ -1.61732783 -18.78687616]\n", + " [ -1.61499609 -13.41087666]\n", + " [ -1.61266434 -8.03487716]\n", + " [ -1.6103326 -2.65887768]\n", + " [-32.29781143 -31.42307024]\n", + " [-32.29781143 -31.42307024]\n", + " [ -1.60950959 -0.76137785]\n", + " [ -1.60950959 -0.76137785]\n", + " [-30.3994886 -29.52639343]\n", + " [-25.02348911 -29.52872517]\n", + " [-19.64748962 -29.53105692]\n", + " [-14.27149012 -29.53338866]\n", + " [ -8.89549063 -29.5357204 ]\n", + " [ -3.51949113 -29.53805214]\n", + " [-30.39715686 -24.15039394]\n", + " [-25.02115737 -24.15272568]\n", + " [-19.64515788 -24.15505742]\n", + " [-14.26915838 -24.15738916]\n", + " [ -8.89315889 -24.1597209 ]\n", + " [ -3.51715939 -24.16205264]\n", + " [-30.39482512 -18.77439444]\n", + " [-25.01882563 -18.77672618]\n", + " [-19.64282613 -18.77905793]\n", + " [-14.26682664 -18.78138967]\n", + " [ -8.89082714 -18.78372141]\n", + " [ -3.51482765 -18.78605315]\n", + " [-30.39249338 -13.39839495]\n", + " [-25.01649389 -13.40072669]\n", + " [-19.64049439 -13.40305843]\n", + " [-14.2644949 -13.40539017]\n", + " [ -8.8884954 -13.40772191]\n", + " [ -3.51249591 -13.41005365]\n", + " [-30.39016163 -8.02239545]\n", + " [-25.01416214 -8.02472719]\n", + " [-19.63816265 -8.02705893]\n", + " [-14.26216315 -8.02939068]\n", + " [ -8.88616366 -8.03172242]\n", + " [ -3.51016417 -8.03405416]\n", + " [-30.3878299 -2.64639596]\n", + " [-25.01183041 -2.6487277 ]\n", + " [-19.63583091 -2.65105944]\n", + " [-14.25983141 -2.65339118]\n", + " [ -8.88383191 -2.65572292]\n", + " [ -3.50783243 -2.65805467]]\n", + "DEBUG:root:radec2pix: curVec: [[-0.29742133 0.38453244 -0.8738852 ]\n", + " [-0.27875723 0.36963229 -0.88637824]\n", + " [-0.25938795 0.35425835 -0.89845362]\n", + " [-0.23939516 0.33844959 -0.91002298]\n", + " [-0.21886048 0.32224997 -0.92100762]\n", + " [-0.1978657 0.30570866 -0.93133849]\n", + " [-0.17649323 0.28888001 -0.94095615]\n", + " [-0.15482648 0.27182331 -0.94981095]\n", + " [-0.29742133 0.38453244 -0.8738852 ]\n", + " [-0.28149524 0.40578349 -0.86954022]\n", + " [-0.2648988 0.42711506 -0.86452377]\n", + " [-0.24770314 0.44842444 -0.85881236]\n", + " [-0.22997925 0.46961321 -0.8523925 ]\n", + " [-0.21179812 0.49058697 -0.84526089]\n", + " [-0.19323129 0.51125531 -0.83742443]\n", + " [-0.17435122 0.53153197 -0.82890013]\n", + " [-0.15482648 0.27182331 -0.94981095]\n", + " [-0.13694077 0.29294361 -0.9462723 ]\n", + " [-0.11857545 0.31425931 -0.94190283]\n", + " [-0.09979859 0.33567171 -0.9366775 ]\n", + " [-0.08067899 0.35708564 -0.93058086]\n", + " [-0.06128745 0.37840822 -0.92360764]\n", + " [-0.04169751 0.39954831 -0.91576332]\n", + " [-0.02198542 0.42041683 -0.90706468]\n", + " [-0.17435122 0.53153197 -0.82890013]\n", + " [-0.15380481 0.51753218 -0.84172711]\n", + " [-0.1327188 0.50283891 -0.85413041]\n", + " [-0.11117121 0.48748778 -0.86602346]\n", + " [-0.08924107 0.47151956 -0.87732852]\n", + " [-0.06700981 0.45498127 -0.8879762 ]\n", + " [-0.04456206 0.43792677 -0.89790554]\n", + " [-0.02198542 0.42041683 -0.90706468]\n", + " [-0.28932185 0.37816903 -0.879364 ]\n", + " [-0.26596108 0.35958441 -0.89440693]\n", + " [-0.24162236 0.34032613 -0.9087336 ]\n", + " [-0.21645595 0.32047305 -0.92219512]\n", + " [-0.1906125 0.30011568 -0.93466435]\n", + " [-0.16424412 0.27935614 -0.94603595]\n", + " [-0.29050139 0.39373138 -0.87211499]\n", + " [-0.27052109 0.41984449 -0.86634228]\n", + " [-0.2496047 0.44597609 -0.8595364 ]\n", + " [-0.22788297 0.47194319 -0.85166835]\n", + " [-0.20548667 0.49757203 -0.84273205]\n", + " [-0.18254787 0.52269785 -0.8327444 ]\n", + " [-0.1471664 0.28106016 -0.9483392 ]\n", + " [-0.12491529 0.3070899 -0.94344685]\n", + " [-0.10201128 0.33331448 -0.93728073]\n", + " [-0.07858064 0.35955732 -0.92980838]\n", + " [-0.0547538 0.38564737 -0.92102016]\n", + " [-0.03066729 0.41141763 -0.91093087]\n", + " [-0.16552955 0.52544653 -0.8345693 ]\n", + " [-0.13997581 0.50781709 -0.85001681]\n", + " [-0.11368894 0.48918103 -0.86474086]\n", + " [-0.08681391 0.46961122 -0.8785947 ]\n", + " [-0.05950077 0.44919428 -0.89145059]\n", + " [-0.03190654 0.42803227 -0.90320006]\n", + " [-0.29730556 0.38455475 -0.87391478]\n", + " [-0.29730556 0.38455475 -0.87391478]\n", + " [-0.02213027 0.42040661 -0.90706589]\n", + " [-0.02213027 0.42040661 -0.90706589]\n", + " [-0.2824495 0.38736405 -0.87759408]\n", + " [-0.26228819 0.41353442 -0.87189116]\n", + " [-0.24120874 0.43973103 -0.86513292]\n", + " [-0.21934144 0.46577106 -0.8572903 ]\n", + " [-0.19681654 0.4914807 -0.84835722]\n", + " [-0.17376589 0.5166948 -0.8383507 ]\n", + " [-0.25890611 0.36881534 -0.89271657]\n", + " [-0.23826233 0.39510353 -0.88720024]\n", + " [-0.21675116 0.42144248 -0.88057094]\n", + " [-0.1945011 0.44765012 -0.87279934]\n", + " [-0.171641 0.47355251 -0.86387927]\n", + " [-0.14830238 0.49898342 -0.85382782]\n", + " [-0.23440031 0.34956882 -0.90711528]\n", + " [-0.21331795 0.37590863 -0.90176946]\n", + " [-0.19141819 0.40232735 -0.89526073]\n", + " [-0.16882776 0.42864397 -0.88755931]\n", + " [-0.1456746 0.45468465 -0.87865851]\n", + " [-0.12209054 0.48028213 -0.86857525]\n", + " [-0.20908191 0.32970326 -0.92064136]\n", + " [-0.18760303 0.35602811 -0.91545021]\n", + " [-0.16535593 0.3824633 -0.90905404]\n", + " [-0.14246617 0.40882909 -0.9014223 ]\n", + " [-0.1190616 0.43495206 -0.8925475 ]\n", + " [-0.09527501 0.46066432 -0.88244606]\n", + " [-0.18310104 0.3093093 -0.9331676 ]\n", + " [-0.16126639 0.33555287 -0.92811498]\n", + " [-0.13871233 0.36194101 -0.92182297]\n", + " [-0.11556415 0.38829542 -0.91426013]\n", + " [-0.0919504 0.41444345 -0.905418 ]\n", + " [-0.06800536 0.44021715 -0.89531231]\n", + " [-0.15660971 0.28848944 -0.9445884 ]\n", + " [-0.13445994 0.31458631 -0.93965737]\n", + " [-0.1116398 0.3408645 -0.9334602 ]\n", + " [-0.08827518 0.36714701 -0.92596467]\n", + " [-0.06449596 0.39326233 -0.91716139]\n", + " [-0.04043809 0.41904313 -0.90706539]]\n", + "DEBUG:root:radec2pix: curVec Shape: (96, 3)\n", + "DEBUG:root:radec2pix: fitpx: [[2135.5 4155.4999999 ]\n", + " [2135.5 3863.07142835]\n", + " [2135.5 3570.64285687]\n", + " [2135.5 3278.21428534]\n", + " [2135.5 2985.78571398]\n", + " [2135.5 2693.35714282]\n", + " [2135.50000001 2400.92857102]\n", + " [2135.50000006 2108.49999973]\n", + " [2135.5 4155.4999999 ]\n", + " [1843.07142859 4155.4999999 ]\n", + " [1550.64285722 4155.49999973]\n", + " [1258.21428568 4155.50000007]\n", + " [ 965.78571413 4155.50000028]\n", + " [ 673.35714288 4155.49999997]\n", + " [ 380.92857125 4155.50000021]\n", + " [ 88.4999998 4155.5000002 ]\n", + " [2135.50000006 2108.49999973]\n", + " [1843.07142866 2108.49999999]\n", + " [1550.64285735 2108.49999998]\n", + " [1258.21428559 2108.50000001]\n", + " [ 965.78571467 2108.49999998]\n", + " [ 673.35714297 2108.5 ]\n", + " [ 380.92857138 2108.5 ]\n", + " [ 88.49999984 2108.5 ]\n", + " [ 88.4999998 4155.5000002 ]\n", + " [ 88.49999999 3863.07142858]\n", + " [ 88.50000023 3570.64285698]\n", + " [ 88.4999999 3278.21428577]\n", + " [ 88.50000002 2985.78571428]\n", + " [ 88.50000017 2693.35714281]\n", + " [ 88.49999997 2400.92857143]\n", + " [ 88.49999984 2108.5 ]\n", + " [2134.5 4027.99999995]\n", + " [2134.5 3669.59999994]\n", + " [2134.5 3311.20000034]\n", + " [2134.5 2952.80000006]\n", + " [2134.5 2594.39999997]\n", + " [2134.49999998 2236.00000031]\n", + " [2008.00000001 4154.49999991]\n", + " [1649.60000005 4154.49999977]\n", + " [1291.19999995 4154.50000012]\n", + " [ 932.80000008 4154.49999986]\n", + " [ 574.40000013 4154.49999983]\n", + " [ 215.99999993 4154.50000007]\n", + " [2007.99999975 2109.50000009]\n", + " [1649.5999999 2109.50000001]\n", + " [1291.19999978 2109.50000001]\n", + " [ 932.80000001 2109.5 ]\n", + " [ 574.40000043 2109.49999999]\n", + " [ 216.00000004 2109.5 ]\n", + " [ 89.50000001 4027.99999999]\n", + " [ 89.4999998 3669.60000015]\n", + " [ 89.50000012 3311.19999993]\n", + " [ 89.50000006 2952.79999997]\n", + " [ 89.49999988 2594.40000003]\n", + " [ 89.50000008 2235.99999999]\n", + " [2134.5 4154.49999983]\n", + " [2134.5 4154.49999983]\n", + " [ 89.49999987 2109.5 ]\n", + " [ 89.49999987 2109.5 ]\n", + " [2008. 4027.99999995]\n", + " [1649.60000002 4027.99999993]\n", + " [1291.20000002 4027.99999996]\n", + " [ 932.80000002 4027.99999996]\n", + " [ 574.4000002 4027.99999975]\n", + " [ 215.99999985 4028.00000015]\n", + " [2008.00000001 3669.59999986]\n", + " [1649.60000005 3669.59999982]\n", + " [1291.19999995 3669.60000009]\n", + " [ 932.79999997 3669.60000004]\n", + " [ 574.40000017 3669.59999983]\n", + " [ 215.99999977 3669.60000019]\n", + " [2007.99999999 3311.20000007]\n", + " [1649.5999999 3311.20000024]\n", + " [1291.20000003 3311.19999996]\n", + " [ 932.80000003 3311.19999997]\n", + " [ 574.40000015 3311.19999988]\n", + " [ 216.00000001 3311.19999999]\n", + " [2008.00000002 2952.79999987]\n", + " [1649.59999985 2952.80000027]\n", + " [1291.1999999 2952.80000011]\n", + " [ 932.80000032 2952.79999977]\n", + " [ 574.39999984 2952.80000009]\n", + " [ 216.00000025 2952.79999989]\n", + " [2007.99999995 2594.40000018]\n", + " [1649.59999988 2594.40000012]\n", + " [1291.19999985 2594.4000001 ]\n", + " [ 932.79999977 2594.4000001 ]\n", + " [ 574.39999985 2594.40000005]\n", + " [ 216.00000009 2594.39999997]\n", + " [2007.99999988 2236.00000015]\n", + " [1649.60000009 2235.99999997]\n", + " [1291.19999998 2236. ]\n", + " [ 932.79999991 2236.00000001]\n", + " [ 574.39999979 2236.00000002]\n", + " [ 215.99999986 2236.00000001]]\n", + "DEBUG:root:fitpix2pix: ccdpx: shape: (96, 2)\n", + "DEBUG:root:fitpix2pix: visCut: True\n", + "DEBUG:root:optics_fp: rtanth: [31.72889598 27.34254715 22.95622881 18.56996252 14.18379661 9.79786588\n", + " 5.41274207 1.03869565 31.72889598 32.05497925 32.96668106 34.41749464\n", + " 36.342913 38.67211172 41.33689193 44.27670445 1.03869565 4.67736497\n", + " 9.00877953 13.37609754 17.75284128 22.13341982 26.51593264 30.89955671\n", + " 44.27670445 41.24704355 38.47976296 36.03536075 33.98358137 32.39910327\n", + " 31.35285463 30.89955671 29.81652098 24.44065782 19.06487182 13.68925392\n", + " 8.31413013 2.94220985 31.78219953 32.5803988 34.21489906 36.57374743\n", + " 39.52747698 42.9535403 2.33383998 7.53796979 12.88401801 18.24767393\n", + " 23.61694389 28.9887086 42.91616052 39.37153369 36.28003925 33.76636764\n", + " 31.96711857 31.00691067 31.71398377 31.71398377 30.88506563 30.88506563\n", + " 29.88906763 30.73646927 32.46394115 34.94119572 38.021962 41.57228381\n", + " 24.52910914 25.55486988 27.6084825 30.48291307 33.97043457 37.9021848\n", + " 19.17813281 20.47376266 22.98590632 26.36914053 30.33338108 34.67995379\n", + " 13.846556 15.59170589 18.76907627 22.78723124 27.27710291 32.04099765\n", + " 8.57065926 11.17275166 15.2972975 20.02465966 25.01538387 30.13892197\n", + " 3.60389222 8.02260672 13.1734259 18.4531524 23.77606504 29.11848994]\n", + "DEBUG:root:radec2pix: curVec: [[ 1.46882659e-01 -6.02194070e-01 7.84721471e-01]\n", + " [ 1.20215475e-01 -6.02504338e-01 7.89009988e-01]\n", + " [ 9.29204671e-02 -6.02244253e-01 7.92885645e-01]\n", + " [ 6.51083683e-02 -6.01401550e-01 7.96289568e-01]\n", + " [ 3.68898463e-02 -5.99968035e-01 7.99173007e-01]\n", + " [ 8.37580790e-03 -5.97939670e-01 8.01497347e-01]\n", + " [-2.03223112e-02 -5.95316907e-01 8.03233954e-01]\n", + " [-4.90925388e-02 -5.92105102e-01 8.04364016e-01]\n", + " [ 1.46882659e-01 -6.02194070e-01 7.84721471e-01]\n", + " [ 1.51805607e-01 -5.80529129e-01 7.99963117e-01]\n", + " [ 1.56571476e-01 -5.57955655e-01 8.14966784e-01]\n", + " [ 1.61167911e-01 -5.34546687e-01 8.29629281e-01]\n", + " [ 1.65581761e-01 -5.10379754e-01 8.43857326e-01]\n", + " [ 1.69799025e-01 -4.85537196e-01 8.57567445e-01]\n", + " [ 1.73805135e-01 -4.60106570e-01 8.70685775e-01]\n", + " [ 1.77585388e-01 -4.34180834e-01 8.83148025e-01]\n", + " [-4.90925388e-02 -5.92105102e-01 8.04364016e-01]\n", + " [-4.58398555e-02 -5.69645502e-01 8.20611181e-01]\n", + " [-4.24863302e-02 -5.46268915e-01 8.36531640e-01]\n", + " [-3.90431564e-02 -5.22043854e-01 8.52024558e-01]\n", + " [-3.55219858e-02 -4.97043966e-01 8.66997972e-01]\n", + " [-3.19351399e-02 -4.71349752e-01 8.81368004e-01]\n", + " [-2.82957184e-02 -4.45049628e-01 8.95058758e-01]\n", + " [-2.46175732e-02 -4.18240054e-01 9.08002881e-01]\n", + " [ 1.77585388e-01 -4.34180834e-01 8.83148025e-01]\n", + " [ 1.50144926e-01 -4.33075795e-01 8.88764230e-01]\n", + " [ 1.22043334e-01 -4.31593330e-01 8.93774368e-01]\n", + " [ 9.33860943e-02 -4.29721020e-01 8.98119637e-01]\n", + " [ 6.42799048e-02 -4.27450696e-01 9.01750518e-01]\n", + " [ 3.48344181e-02 -4.24778740e-01 9.04626766e-01]\n", + " [ 5.16301460e-03 -4.21706404e-01 9.06717736e-01]\n", + " [-2.46175732e-02 -4.18240054e-01 9.08002881e-01]\n", + " [ 1.35356686e-01 -6.02325777e-01 7.86690680e-01]\n", + " [ 1.02236149e-01 -6.02323517e-01 7.91678060e-01]\n", + " [ 6.82825969e-02 -6.01452025e-01 7.95985520e-01]\n", + " [ 3.36997875e-02 -5.99694537e-01 7.99519097e-01]\n", + " [-1.30806953e-03 -5.97043653e-01 8.02207682e-01]\n", + " [-3.65355872e-02 -5.93502226e-01 8.04002648e-01]\n", + " [ 1.48957285e-01 -5.92866002e-01 7.91404846e-01]\n", + " [ 1.54885870e-01 -5.65692628e-01 8.09939638e-01]\n", + " [ 1.60566493e-01 -5.37226637e-01 8.28013250e-01]\n", + " [ 1.65975290e-01 -5.07608889e-01 8.45449832e-01]\n", + " [ 1.71086518e-01 -4.76991017e-01 8.62095687e-01]\n", + " [ 1.75873278e-01 -4.45536457e-01 8.77818806e-01]\n", + " [-4.75886845e-02 -5.82441640e-01 8.11478313e-01]\n", + " [-4.35319871e-02 -5.54290155e-01 8.31184330e-01]\n", + " [-3.93350881e-02 -5.24828899e-01 8.50298405e-01]\n", + " [-3.50192405e-02 -4.94191232e-01 8.68647615e-01]\n", + " [-3.06071464e-02 -4.62525476e-01 8.86077529e-01]\n", + " [-2.61232468e-02 -4.29997779e-01 9.02451930e-01]\n", + " [ 1.65696746e-01 -4.33834214e-01 8.85625465e-01]\n", + " [ 1.31607697e-01 -4.32228712e-01 8.92108600e-01]\n", + " [ 9.66304077e-02 -4.30043339e-01 8.97622020e-01]\n", + " [ 6.09606982e-02 -4.27261280e-01 9.02070724e-01]\n", + " [ 2.48005260e-02 -4.23875903e-01 9.05380667e-01]\n", + " [-1.16399266e-02 -4.19891629e-01 9.07499604e-01]\n", + " [ 1.46809748e-01 -6.02123624e-01 7.84789169e-01]\n", + " [ 1.46809748e-01 -6.02123624e-01 7.84789169e-01]\n", + " [-2.45283105e-02 -4.18344999e-01 9.07956950e-01]\n", + " [-2.45283105e-02 -4.18344999e-01 9.07956950e-01]\n", + " [ 1.37460648e-01 -5.93032948e-01 7.93357733e-01]\n", + " [ 1.43282445e-01 -5.65757208e-01 8.12027661e-01]\n", + " [ 1.48881031e-01 -5.37184785e-01 8.30221022e-01]\n", + " [ 1.54232358e-01 -5.07456082e-01 8.47762175e-01]\n", + " [ 1.59310293e-01 -4.76722401e-01 8.64497532e-01]\n", + " [ 1.64087513e-01 -4.45147235e-01 8.80294966e-01]\n", + " [ 1.04214739e-01 -5.92941168e-01 7.98473581e-01]\n", + " [ 1.09728653e-01 -5.65406155e-01 8.17481194e-01]\n", + " [ 1.15089290e-01 -5.36565001e-01 8.35973956e-01]\n", + " [ 1.20271993e-01 -5.06556409e-01 8.53777051e-01]\n", + " [ 1.25249689e-01 -4.75530672e-01 8.70737099e-01]\n", + " [ 1.29994097e-01 -4.43651577e-01 8.86721384e-01]\n", + " [ 7.01327848e-02 -5.91995281e-01 8.02884163e-01]\n", + " [ 7.53297414e-02 -5.64246113e-01 8.22162851e-01]\n", + " [ 8.04425349e-02 -5.35184229e-01 8.40896450e-01]\n", + " [ 8.54462265e-02 -5.04946421e-01 8.58910970e-01]\n", + " [ 9.03134284e-02 -4.73682048e-01 8.76052968e-01]\n", + " [ 9.50155273e-02 -4.41555398e-01 8.92188814e-01]\n", + " [ 3.54181491e-02 -5.90178231e-01 8.06495636e-01]\n", + " [ 4.02875480e-02 -5.62259014e-01 8.25979246e-01]\n", + " [ 4.51408080e-02 -5.33023575e-01 8.44895364e-01]\n", + " [ 4.99533813e-02 -5.02606997e-01 8.63070603e-01]\n", + " [ 5.46984315e-02 -4.71157944e-01 8.80351222e-01]\n", + " [ 5.93478089e-02 -4.38841336e-01 8.96602543e-01]\n", + " [ 2.74874666e-04 -5.87482184e-01 8.09237053e-01]\n", + " [ 4.80560269e-03 -5.59435843e-01 8.28859725e-01]\n", + " [ 9.38717472e-03 -5.30073294e-01 8.47899867e-01]\n", + " [ 1.39961417e-02 -4.99528417e-01 8.66184431e-01]\n", + " [ 1.86070582e-02 -4.67949501e-01 8.83559303e-01]\n", + " [ 2.31930007e-02 -4.35502092e-01 8.99888889e-01]\n", + " [-3.50913939e-02 -5.83909628e-01 8.11059887e-01]\n", + " [-3.09095114e-02 -5.55778210e-01 8.30755791e-01]\n", + " [-2.66106319e-02 -5.26334589e-01 8.49861033e-01]\n", + " [-2.22166169e-02 -4.95712129e-01 8.68202688e-01]\n", + " [-1.77509341e-02 -4.64059086e-01 8.85626371e-01]\n", + " [-1.32387258e-02 -4.31541492e-01 9.01995940e-01]]\n", + "DEBUG:root:radec2pix: curVec Shape: (96, 3)\n", + "DEBUG:root:optics_fp: cphi: [-0.0051738 -0.00607178 -0.0073129 -0.00914033 -0.01209791 -0.01770316\n", + " -0.03238875 -0.17057046 -0.0051738 -0.14196195 -0.27109236 -0.38711253\n", + " -0.48729918 -0.57137557 -0.64065601 -0.69718731 -0.17057046 -0.97567733\n", + " -0.99347832 -0.99703634 -0.99831251 -0.99891078 -0.99923847 -0.99943725\n", + " -0.69718731 -0.74844189 -0.80231456 -0.85678989 -0.9085738 -0.95306497\n", + " -0.98492815 -0.99943725 -0.0060359 -0.00745674 -0.00967884 -0.01364603\n", + " -0.02274227 -0.06503966 -0.06534051 -0.22874689 -0.3749438 -0.49775222\n", + " -0.59656384 -0.67413914 -0.89537598 -0.99040776 -0.99671262 -0.99835535\n", + " -0.9990142 -0.99934296 -0.71895916 -0.78374506 -0.85059233 -0.91398049\n", + " -0.96549457 -0.99546704 -0.00564941 -0.00564941 -0.9994203 -0.9994203\n", + " -0.06950599 -0.24249594 -0.39519134 -0.52103162 -0.62020649 -0.69655704\n", + " -0.08478692 -0.29175445 -0.46477551 -0.59730991 -0.69424327 -0.76406532\n", + " -0.10856248 -0.36427233 -0.55834321 -0.69058088 -0.77756 -0.83512289\n", + " -0.15052868 -0.47847897 -0.68390701 -0.79923279 -0.86476566 -0.90397627\n", + " -0.24345642 -0.66792691 -0.83927119 -0.9096075 -0.9430429 -0.96110205\n", + " -0.57961227 -0.93047808 -0.97475473 -0.98719494 -0.99229449 -0.99486127]\n", + "DEBUG:root:mm_to_pix: fitpx: [[0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]]\n", + "DEBUG:root:radec2pix: ccdpx: [[-4.44999997e+01 -4.99999751e-01]\n", + " [-4.45000003e+01 2.91928571e+02]\n", + " [-4.45000000e+01 5.84357143e+02]\n", + " [-4.44999999e+01 8.76785714e+02]\n", + " [-4.44999999e+01 1.16921429e+03]\n", + " [-4.44999999e+01 1.46164286e+03]\n", + " [-4.45000001e+01 1.75407143e+03]\n", + " [-4.45000000e+01 2.04650000e+03]\n", + " [-4.44999997e+01 -4.99999751e-01]\n", + " [ 2.47928571e+02 -5.00000271e-01]\n", + " [ 5.40357143e+02 -4.99999959e-01]\n", + " [ 8.32785714e+02 -5.00000035e-01]\n", + " [ 1.12521429e+03 -5.00000130e-01]\n", + " [ 1.41764286e+03 -5.00000295e-01]\n", + " [ 1.71007143e+03 -5.00000131e-01]\n", + " [ 2.00250000e+03 -5.00000000e-01]\n", + " [-4.45000000e+01 2.04650000e+03]\n", + " [ 2.47928571e+02 2.04650000e+03]\n", + " [ 5.40357143e+02 2.04650000e+03]\n", + " [ 8.32785714e+02 2.04650000e+03]\n", + " [ 1.12521429e+03 2.04650000e+03]\n", + " [ 1.41764286e+03 2.04650000e+03]\n", + " [ 1.71007143e+03 2.04650000e+03]\n", + " [ 2.00250000e+03 2.04650000e+03]\n", + " [ 2.00250000e+03 -5.00000000e-01]\n", + " [ 2.00250000e+03 2.91928571e+02]\n", + " [ 2.00250000e+03 5.84357143e+02]\n", + " [ 2.00250000e+03 8.76785714e+02]\n", + " [ 2.00250000e+03 1.16921429e+03]\n", + " [ 2.00250000e+03 1.46164286e+03]\n", + " [ 2.00250000e+03 1.75407143e+03]\n", + " [ 2.00250000e+03 2.04650000e+03]\n", + " [-4.35000003e+01 1.27000000e+02]\n", + " [-4.35000001e+01 4.85400000e+02]\n", + " [-4.35000003e+01 8.43800000e+02]\n", + " [-4.34999997e+01 1.20220000e+03]\n", + " [-4.34999997e+01 1.56060000e+03]\n", + " [-4.35000002e+01 1.91900000e+03]\n", + " [ 8.29999999e+01 4.99999945e-01]\n", + " [ 4.41400000e+02 4.99999943e-01]\n", + " [ 7.99800000e+02 5.00000147e-01]\n", + " [ 1.15820000e+03 4.99999799e-01]\n", + " [ 1.51660000e+03 5.00000078e-01]\n", + " [ 1.87500000e+03 4.99999710e-01]\n", + " [ 8.30000000e+01 2.04550000e+03]\n", + " [ 4.41400000e+02 2.04550000e+03]\n", + " [ 7.99800000e+02 2.04550000e+03]\n", + " [ 1.15820000e+03 2.04550000e+03]\n", + " [ 1.51660000e+03 2.04550000e+03]\n", + " [ 1.87500000e+03 2.04550000e+03]\n", + " [ 2.00150000e+03 1.27000000e+02]\n", + " [ 2.00150000e+03 4.85400000e+02]\n", + " [ 2.00150000e+03 8.43800000e+02]\n", + " [ 2.00150000e+03 1.20220000e+03]\n", + " [ 2.00150000e+03 1.56060000e+03]\n", + " [ 2.00150000e+03 1.91900000e+03]\n", + " [-4.34999998e+01 5.00000241e-01]\n", + " [-4.34999998e+01 5.00000241e-01]\n", + " [ 2.00150000e+03 2.04550000e+03]\n", + " [ 2.00150000e+03 2.04550000e+03]\n", + " [ 8.30000001e+01 1.27000000e+02]\n", + " [ 4.41400000e+02 1.27000000e+02]\n", + " [ 7.99800000e+02 1.27000000e+02]\n", + " [ 1.15820000e+03 1.27000000e+02]\n", + " [ 1.51660000e+03 1.27000000e+02]\n", + " [ 1.87500000e+03 1.27000000e+02]\n", + " [ 8.30000000e+01 4.85400000e+02]\n", + " [ 4.41400000e+02 4.85400000e+02]\n", + " [ 7.99800000e+02 4.85400000e+02]\n", + " [ 1.15820000e+03 4.85400000e+02]\n", + " [ 1.51660000e+03 4.85400000e+02]\n", + " [ 1.87500000e+03 4.85400000e+02]\n", + " [ 8.30000001e+01 8.43800000e+02]\n", + " [ 4.41400000e+02 8.43800000e+02]\n", + " [ 7.99800000e+02 8.43800000e+02]\n", + " [ 1.15820000e+03 8.43800000e+02]\n", + " [ 1.51660000e+03 8.43800000e+02]\n", + " [ 1.87500000e+03 8.43800000e+02]\n", + " [ 8.30000001e+01 1.20220000e+03]\n", + " [ 4.41400000e+02 1.20220000e+03]\n", + " [ 7.99800000e+02 1.20220000e+03]\n", + " [ 1.15820000e+03 1.20220000e+03]\n", + " [ 1.51660000e+03 1.20220000e+03]\n", + " [ 1.87500000e+03 1.20220000e+03]\n", + " [ 8.30000002e+01 1.56060000e+03]\n", + " [ 4.41400000e+02 1.56060000e+03]\n", + " [ 7.99800000e+02 1.56060000e+03]\n", + " [ 1.15820000e+03 1.56060000e+03]\n", + " [ 1.51660000e+03 1.56060000e+03]\n", + " [ 1.87500000e+03 1.56060000e+03]\n", + " [ 8.29999999e+01 1.91900000e+03]\n", + " [ 4.41400000e+02 1.91900000e+03]\n", + " [ 7.99800000e+02 1.91900000e+03]\n", + " [ 1.15820000e+03 1.91900000e+03]\n", + " [ 1.51660000e+03 1.91900000e+03]\n", + " [ 1.87500000e+03 1.91900000e+03]]\n", + "DEBUG:root:mm_to_pix: fitpx.shape: (96, 2)\n", + "DEBUG:root:radec2pix: xyfp: [[32.31363499 31.47041645]\n", + " [32.3144687 27.08398795]\n", + " [32.31530242 22.69755946]\n", + " [32.31613613 18.31113097]\n", + " [32.31696984 13.92470248]\n", + " [32.31780355 9.53827398]\n", + " [32.31863726 5.15184549]\n", + " [32.31947097 0.765417 ]\n", + " [32.31363499 31.47041645]\n", + " [27.9272065 31.46958273]\n", + " [23.540778 31.46874902]\n", + " [19.15434951 31.46791531]\n", + " [14.76792102 31.4670816 ]\n", + " [10.38149253 31.46624788]\n", + " [ 5.99506403 31.46541417]\n", + " [ 1.60863554 31.46458045]\n", + " [32.31947097 0.765417 ]\n", + " [27.93304248 0.76458329]\n", + " [23.54661399 0.76374957]\n", + " [19.1601855 0.76291586]\n", + " [14.77375701 0.76208215]\n", + " [10.38732851 0.76124844]\n", + " [ 6.00090002 0.76041472]\n", + " [ 1.61447153 0.75958101]\n", + " [ 1.60863554 31.46458045]\n", + " [ 1.60946926 27.07815197]\n", + " [ 1.61030297 22.69172348]\n", + " [ 1.61113668 18.30529498]\n", + " [ 1.61197039 13.91886648]\n", + " [ 1.6128041 9.53243799]\n", + " [ 1.61363782 5.1460095 ]\n", + " [ 1.61447153 0.75958101]\n", + " [32.29899849 29.55791363]\n", + " [32.30002028 24.18191372]\n", + " [32.30104209 18.80591382]\n", + " [32.30206388 13.42991392]\n", + " [32.30308568 8.05391402]\n", + " [32.30410748 2.67791411]\n", + " [30.40113787 31.45505294]\n", + " [25.02513797 31.45403115]\n", + " [19.64913807 31.45300935]\n", + " [14.27313817 31.45198755]\n", + " [ 8.89713826 31.45096576]\n", + " [ 3.52113836 31.44994396]\n", + " [30.40696816 0.7800535 ]\n", + " [25.03096826 0.7790317 ]\n", + " [19.65496836 0.7780099 ]\n", + " [14.27896845 0.77698811]\n", + " [ 8.90296855 0.77596631]\n", + " [ 3.52696865 0.77494451]\n", + " [ 1.62399904 29.55208334]\n", + " [ 1.62502084 24.17608344]\n", + " [ 1.62604264 18.80008353]\n", + " [ 1.62706443 13.42408364]\n", + " [ 1.62808623 8.04808373]\n", + " [ 1.62910803 2.67208383]\n", + " [32.29863784 31.4554136 ]\n", + " [32.29863784 31.4554136 ]\n", + " [ 1.62946868 0.77458386]\n", + " [ 1.62946868 0.77458386]\n", + " [30.40149852 29.55755297]\n", + " [25.02549862 29.55653118]\n", + " [19.64949872 29.55550938]\n", + " [14.27349882 29.55448759]\n", + " [ 8.89749891 29.55346579]\n", + " [ 3.52149901 29.55244399]\n", + " [30.40252032 24.18155307]\n", + " [25.02652042 24.18053128]\n", + " [19.65052052 24.17950948]\n", + " [14.27452061 24.17848769]\n", + " [ 8.89852071 24.17746589]\n", + " [ 3.52252081 24.17644409]\n", + " [30.40354212 18.80555317]\n", + " [25.02754221 18.80453137]\n", + " [19.65154231 18.80350958]\n", + " [14.27554241 18.80248779]\n", + " [ 8.89954251 18.80146598]\n", + " [ 3.5235426 18.80044419]\n", + " [30.40456392 13.42955327]\n", + " [25.02856401 13.42853147]\n", + " [19.65256411 13.42750967]\n", + " [14.27656421 13.42648788]\n", + " [ 8.9005643 13.42546608]\n", + " [ 3.5245644 13.42444429]\n", + " [30.40558571 8.05355336]\n", + " [25.02958581 8.05253157]\n", + " [19.6535859 8.05150977]\n", + " [14.277586 8.05048797]\n", + " [ 8.9015861 8.04946618]\n", + " [ 3.5255862 8.04844438]\n", + " [30.40660751 2.67755346]\n", + " [25.0306076 2.67653166]\n", + " [19.6546077 2.67550987]\n", + " [14.2786078 2.67448807]\n", + " [ 8.90260789 2.67346627]\n", + " [ 3.52660799 2.67244448]]\n", + "DEBUG:root:radec2pix: camVec: [[0.20622014 0.20805053 0.20961035 0.210899 0.21191543 0.21265818\n", + " 0.21312568 0.21331667 0.20622014 0.17982824 0.1527297 0.12503427\n", + " 0.09685185 0.06829276 0.03946812 0.01049004 0.21331667 0.18597713\n", + " 0.1579279 0.12927353 0.10011961 0.07057467 0.04075124 0.01076573\n", + " 0.01049004 0.01056977 0.01063642 0.01068985 0.01072978 0.01075592\n", + " 0.01076796 0.01076573 0.20696213 0.20902258 0.21067623 0.21192136\n", + " 0.21275532 0.21317532 0.1948134 0.16197729 0.1281888 0.09365018\n", + " 0.05856456 0.02313694 0.20149034 0.16749252 0.1325326 0.09680441\n", + " 0.0605079 0.02385188 0.01062602 0.01071595 0.0107859 0.01083545\n", + " 0.01086402 0.01087112 0.20613793 0.20613793 0.01086844 0.01086844\n", + " 0.19558949 0.1626169 0.12869151 0.09401511 0.05879055 0.02322296\n", + " 0.19753009 0.16421774 0.12995114 0.09493033 0.05935726 0.02343764\n", + " 0.19908829 0.16550536 0.13096617 0.09566871 0.05981412 0.02360896\n", + " 0.20026215 0.16647694 0.13173312 0.09622682 0.06015857 0.02373584\n", + " 0.20104857 0.16712825 0.13224724 0.09660024 0.06038739 0.02381698\n", + " 0.20144435 0.16745515 0.13250401 0.09678486 0.06049766 0.02385117]\n", + " [0.20255556 0.17610143 0.14895462 0.12122494 0.09302239 0.06445739\n", + " 0.03564119 0.00668594 0.20255556 0.20441077 0.20600074 0.2073248\n", + " 0.20838186 0.20917033 0.20968847 0.20993479 0.00668594 0.00675821\n", + " 0.00682246 0.00687853 0.00692617 0.0069651 0.00699507 0.00701584\n", + " 0.20993479 0.18250233 0.15437326 0.12565215 0.09644485 0.06686038\n", + " 0.03701177 0.00701584 0.19112005 0.15821703 0.12438266 0.08981934\n", + " 0.05473042 0.0193211 0.20330747 0.20540191 0.20709749 0.2083924\n", + " 0.20928375 0.20976841 0.00681796 0.00690216 0.00697398 0.00703299\n", + " 0.00707868 0.00711058 0.19806614 0.16396327 0.12891793 0.09312436\n", + " 0.05678335 0.02010461 0.2024732 0.2024732 0.00711848 0.00711848\n", + " 0.19190537 0.19387759 0.19547539 0.1966967 0.19753824 0.19799645\n", + " 0.15886347 0.1604891 0.1618095 0.16282181 0.16352163 0.16390447\n", + " 0.12488974 0.12616714 0.12720791 0.12800859 0.1285643 0.12887024\n", + " 0.09018615 0.09111203 0.09186896 0.09245358 0.0928614 0.09308815\n", + " 0.05495583 0.05552612 0.05599434 0.05635799 0.05661388 0.05675899\n", + " 0.01940412 0.01961547 0.01979108 0.01992994 0.02003078 0.02009239]\n", + " [0.95731108 0.96213474 0.96637261 0.96996192 0.9728508 0.97499833\n", + " 0.97637449 0.97696023 0.95731108 0.96222557 0.96655954 0.97024886\n", + " 0.97324032 0.97549161 0.97697135 0.97765911 0.97696023 0.98253083\n", + " 0.98742708 0.99158512 0.9949513 0.99748218 0.99914484 0.99991744\n", + " 0.97765911 0.9831486 0.98795534 0.99201677 0.99528049 0.99770436\n", + " 0.99925681 0.99991744 0.95949977 0.96502691 0.96961048 0.97315046\n", + " 0.9755715 0.9768229 0.95953833 0.96518051 0.96988569 0.97355136\n", + " 0.97609964 0.97747731 0.97946677 0.98584919 0.99115411 0.99527858\n", + " 0.99814262 0.99969022 0.98013106 0.98640824 0.99159661 0.99559552\n", + " 0.99832741 0.99973878 0.95734621 0.95734621 0.9999156 0.9999156\n", + " 0.96172609 0.96745399 0.9722283 0.9759465 0.97853069 0.9799276\n", + " 0.96733875 0.97328094 0.97822819 0.98207805 0.98475245 0.98619775\n", + " 0.97199095 0.97810522 0.98319175 0.98714806 0.9898957 0.99138039\n", + " 0.97558266 0.98182688 0.98701899 0.99105637 0.99386 0.99537491\n", + " 0.97803851 0.98437036 0.98963392 0.99372641 0.99656823 0.99810379\n", + " 0.97930774 0.98568454 0.99098486 0.99510577 0.99796733 0.99951359]]\n", + "DEBUG:root:radec2pix: camVec Shape: (3, 96)\n", + "DEBUG:root:optics_fp: xyfp: [[-32.29046994 -31.71666141]\n", + " [-32.28860507 -27.33023323]\n", + " [-32.2867402 -22.94380505]\n", + " [-32.28487534 -18.55737688]\n", + " [-32.28301047 -14.1709487 ]\n", + " [-32.2811456 -9.78452053]\n", + " [-32.27928073 -5.39809235]\n", + " [-32.27741587 -1.01166418]\n", + " [-32.29046994 -31.71666141]\n", + " [-27.90404176 -31.71852627]\n", + " [-23.51761359 -31.72039114]\n", + " [-19.13118541 -31.722256 ]\n", + " [-14.74475724 -31.72412087]\n", + " [-10.35832906 -31.72598574]\n", + " [ -5.97190089 -31.72785061]\n", + " [ -1.58547272 -31.72971547]\n", + " [-32.27741587 -1.01166418]\n", + " [-27.8909877 -1.01352905]\n", + " [-23.50455952 -1.01539391]\n", + " [-19.11813134 -1.01725878]\n", + " [-14.73170317 -1.01912365]\n", + " [-10.345275 -1.02098851]\n", + " [ -5.95884682 -1.02285338]\n", + " [ -1.57241864 -1.02471825]\n", + " [ -1.58547272 -31.72971547]\n", + " [ -1.58360785 -27.3432873 ]\n", + " [ -1.58174298 -22.95685912]\n", + " [ -1.57987811 -18.57043094]\n", + " [ -1.57801325 -14.18400278]\n", + " [ -1.57614838 -9.7975746 ]\n", + " [ -1.57428351 -5.41114642]\n", + " [ -1.57241864 -1.02471825]\n", + " [-32.27465685 -29.80416795]\n", + " [-32.27237127 -24.42816844]\n", + " [-32.2700857 -19.05216893]\n", + " [-32.26780012 -13.67616941]\n", + " [-32.26551454 -8.3001699 ]\n", + " [-32.26322896 -2.92417038]\n", + " [-30.37796373 -31.70247449]\n", + " [-25.00196422 -31.70476008]\n", + " [-19.62596471 -31.70704565]\n", + " [-14.24996519 -31.70933123]\n", + " [ -8.87396568 -31.71161681]\n", + " [ -3.49796617 -31.71390239]\n", + " [-30.36492242 -1.02747727]\n", + " [-24.98892291 -1.02976285]\n", + " [-19.61292339 -1.03204842]\n", + " [-14.23692388 -1.034334 ]\n", + " [ -8.86092437 -1.03661958]\n", + " [ -3.48492485 -1.03890516]\n", + " [ -1.59965962 -29.81720927]\n", + " [ -1.59737405 -24.44120975]\n", + " [ -1.59508847 -19.06521024]\n", + " [ -1.59280289 -13.68921073]\n", + " [ -1.59051731 -8.31321121]\n", + " [ -1.58823174 -2.9372117 ]\n", + " [-32.27546357 -31.70166778]\n", + " [-32.27546357 -31.70166778]\n", + " [ -1.58742502 -1.03971187]\n", + " [ -1.58742502 -1.03971187]\n", + " [-30.37715702 -29.80497466]\n", + " [-25.00115751 -29.80726024]\n", + " [-19.625158 -29.80954582]\n", + " [-14.24915848 -29.8118314 ]\n", + " [ -8.87315897 -29.81411698]\n", + " [ -3.49715945 -29.81640256]\n", + " [-30.37487145 -24.42897515]\n", + " [-24.99887193 -24.43126073]\n", + " [-19.62287241 -24.43354631]\n", + " [-14.2468729 -24.43583188]\n", + " [ -8.87087339 -24.43811746]\n", + " [ -3.49487388 -24.44040305]\n", + " [-30.37258587 -19.05297564]\n", + " [-24.99658635 -19.05526122]\n", + " [-19.62058684 -19.05754679]\n", + " [-14.24458732 -19.05983237]\n", + " [ -8.86858781 -19.06211795]\n", + " [ -3.4925883 -19.06440353]\n", + " [-30.37030029 -13.67697612]\n", + " [-24.99430077 -13.6792617 ]\n", + " [-19.61830126 -13.68154728]\n", + " [-14.24230175 -13.68383286]\n", + " [ -8.86630223 -13.68611844]\n", + " [ -3.49030272 -13.68840401]\n", + " [-30.36801471 -8.30097661]\n", + " [-24.9920152 -8.30326219]\n", + " [-19.61601568 -8.30554776]\n", + " [-14.24001617 -8.30783335]\n", + " [ -8.86401666 -8.31011893]\n", + " [ -3.48801714 -8.3124045 ]\n", + " [-30.36572914 -2.9249771 ]\n", + " [-24.98972962 -2.92726267]\n", + " [-19.6137301 -2.92954825]\n", + " [-14.23773059 -2.93183383]\n", + " [ -8.86173108 -2.93411941]\n", + " [ -3.48573156 -2.93640499]]\n", + "DEBUG:root:optics_fp: xyfp shape: (96, 2)\n", + "DEBUG:root:optics_fp: sphi: [0.99998662 0.99998157 0.99997326 0.99995823 0.99992682 0.99984329\n", + " 0.99947535 0.98534548 0.99998662 0.98987212 0.96255334 0.92203248\n", + " 0.87323508 0.82068871 0.76782803 0.71688902 0.98534548 0.21921165\n", + " 0.11402118 0.07693204 0.0580701 0.04666103 0.03901907 0.03354371\n", + " 0.71688902 0.66320038 0.59690146 0.51566567 0.41772438 0.30276585\n", + " 0.17296396 0.03354371 0.99998178 0.9999722 0.99995316 0.99990689\n", + " 0.99974136 0.99788268 0.99786303 0.97348593 0.92704754 0.86731928\n", + " 0.80256563 0.73860437 0.44531096 0.13817549 0.08101827 0.0573289\n", + " 0.04439174 0.0362443 0.69505232 0.62108267 0.52582572 0.40575813\n", + " 0.26042318 0.09510716 0.99998404 0.99998404 0.03404492 0.03404492\n", + " 0.99758153 0.97015242 0.91859883 0.85353737 0.7844386 0.71750142\n", + " 0.99639911 0.95649325 0.88542855 0.80201052 0.71974043 0.64513889\n", + " 0.99408963 0.93129247 0.82961007 0.72325518 0.62880875 0.55006341\n", + " 0.98860564 0.87809901 0.72956919 0.60102159 0.50217562 0.42758264\n", + " 0.96991184 0.74422687 0.54371304 0.41546865 0.33267115 0.27619351\n", + " 0.81489239 0.36634758 0.22327834 0.15951848 0.12390179 0.10124753]\n", + "DEBUG:root:radec2pix: camVec: [[-0.20607518 -0.20787446 -0.20940354 -0.21066179 -0.21164814 -0.21236112\n", + " -0.21279916 -0.21296107 -0.20607518 -0.17964954 -0.15251864 -0.12479221\n", + " -0.09658011 -0.06799262 -0.03914089 -0.01013708 -0.21296107 -0.18561075\n", + " -0.15755214 -0.12888979 -0.09972928 -0.07017922 -0.04035219 -0.01036463\n", + " -0.01013708 -0.01020871 -0.01026764 -0.01031373 -0.01034674 -0.01036638\n", + " -0.0103724 -0.01036463 -0.20680345 -0.20882603 -0.21044235 -0.21165063\n", + " -0.2124482 -0.2128323 -0.19465346 -0.16177694 -0.12795009 -0.0933751\n", + " -0.05825505 -0.022795 -0.20112996 -0.16711987 -0.13214975 -0.09641349\n", + " -0.0601111 -0.02345151 -0.01026957 -0.0103498 -0.01041065 -0.01045169\n", + " -0.01047241 -0.01047238 -0.20599275 -0.20599275 -0.01046737 -0.01046737\n", + " -0.19541667 -0.16240545 -0.12844349 -0.09373247 -0.05847519 -0.02287686\n", + " -0.19732118 -0.16397526 -0.12967711 -0.09462661 -0.05902568 -0.02308015\n", + " -0.19884383 -0.16523235 -0.13066656 -0.09534433 -0.05946678 -0.02324061\n", + " -0.19998259 -0.16617376 -0.13140827 -0.09588212 -0.05979589 -0.0233572\n", + " -0.20073433 -0.16679525 -0.13189744 -0.09623556 -0.06000982 -0.02342863\n", + " -0.20109591 -0.16709274 -0.13212968 -0.09640067 -0.06010576 -0.0234538 ]\n", + " [-0.20019593 -0.17367087 -0.14646307 -0.11868235 -0.09043873 -0.0618427\n", + " -0.03300558 -0.0040396 -0.20019593 -0.20202839 -0.20359907 -0.20490731\n", + " -0.20595196 -0.20673135 -0.20724368 -0.20748743 -0.0040396 -0.00409191\n", + " -0.0041395 -0.00418225 -0.00421998 -0.00425248 -0.00427955 -0.00430103\n", + " -0.20748743 -0.17998755 -0.15180051 -0.12303089 -0.0937848 -0.06417157\n", + " -0.03430461 -0.00430103 -0.18872819 -0.15574492 -0.12184525 -0.0872316\n", + " -0.05210744 -0.0166781 -0.20093724 -0.20300612 -0.20468137 -0.20596106\n", + " -0.20684219 -0.20732153 -0.00416252 -0.00422448 -0.00427905 -0.00432591\n", + " -0.00436469 -0.00439503 -0.19558822 -0.16140908 -0.12630166 -0.09046055\n", + " -0.05408714 -0.0173918 -0.20011322 -0.20011322 -0.00440367 -0.00440367\n", + " -0.18950334 -0.19145029 -0.19302803 -0.19423441 -0.195066 -0.19551916\n", + " -0.15638145 -0.15798254 -0.1592836 -0.16028164 -0.16097217 -0.16135064\n", + " -0.12234264 -0.1235961 -0.12461804 -0.12540495 -0.1259519 -0.1262541\n", + " -0.08758892 -0.08849133 -0.08922984 -0.08980108 -0.09020062 -0.09042422\n", + " -0.05232353 -0.0528708 -0.053321 -0.05367171 -0.05391982 -0.0540624\n", + " -0.016752 -0.01694088 -0.01709901 -0.01722548 -0.01731915 -0.01737894]\n", + " [ 0.95783851 0.96261448 0.96679818 0.97032784 0.97315256 0.9752324\n", + " 0.97653835 0.97705233 0.95783851 0.96276195 0.96710159 0.97079344\n", + " 0.97378441 0.97603235 0.97750603 0.97818516 0.97705233 0.98261483\n", + " 0.98750199 0.99165011 0.99500566 0.99752533 0.99917635 0.99993704\n", + " 0.97818516 0.98361591 0.98835782 0.99234925 0.99553873 0.99788504\n", + " 0.9993576 0.99993704 0.96000729 0.96547149 0.96998338 0.97344474\n", + " 0.97578203 0.97694639 0.96006992 0.96572084 0.97042996 0.97409503\n", + " 0.97663845 0.97800724 0.97955572 0.98592753 0.99122053 0.99533197\n", + " 0.99818215 0.99971531 0.98063234 0.98683331 0.99193725 0.99584519\n", + " 0.9984813 0.99979391 0.95787352 0.95787352 0.99993552 0.99993552\n", + " 0.9622374 0.96797276 0.97274994 0.9764667 0.97904541 0.98043302\n", + " 0.96778572 0.97373181 0.978679 0.98252511 0.98519233 0.98662722\n", + " 0.97236485 0.97847957 0.98356321 0.98751357 0.9902524 0.99172566\n", + " 0.9758766 0.9821179 0.98730436 0.99133364 0.9941269 0.9956294\n", + " 0.9782474 0.98457302 0.98982824 0.99391049 0.99674043 0.99826267\n", + " 0.97942831 0.98579563 0.99108495 0.99519355 0.99804176 0.99957386]]\n", + "DEBUG:root:radec2pix: camVec Shape: (3, 96)\n", + "DEBUG:root:radec2pix: fitpx: [[-4.99999744e-01 -4.99999751e-01]\n", + " [-5.00000258e-01 2.91928571e+02]\n", + " [-5.00000005e-01 5.84357143e+02]\n", + " [-4.99999941e-01 8.76785714e+02]\n", + " [-4.99999889e-01 1.16921429e+03]\n", + " [-4.99999948e-01 1.46164286e+03]\n", + " [-5.00000143e-01 1.75407143e+03]\n", + " [-4.99999962e-01 2.04650000e+03]\n", + " [-4.99999744e-01 -4.99999751e-01]\n", + " [ 2.91928571e+02 -5.00000271e-01]\n", + " [ 5.84357143e+02 -4.99999959e-01]\n", + " [ 8.76785714e+02 -5.00000035e-01]\n", + " [ 1.16921429e+03 -5.00000130e-01]\n", + " [ 1.46164286e+03 -5.00000295e-01]\n", + " [ 1.75407143e+03 -5.00000131e-01]\n", + " [ 2.04650000e+03 -5.00000000e-01]\n", + " [-4.99999962e-01 2.04650000e+03]\n", + " [ 2.91928571e+02 2.04650000e+03]\n", + " [ 5.84357143e+02 2.04650000e+03]\n", + " [ 8.76785714e+02 2.04650000e+03]\n", + " [ 1.16921429e+03 2.04650000e+03]\n", + " [ 1.46164286e+03 2.04650000e+03]\n", + " [ 1.75407143e+03 2.04650000e+03]\n", + " [ 2.04650000e+03 2.04650000e+03]\n", + " [ 2.04650000e+03 -5.00000000e-01]\n", + " [ 2.04650000e+03 2.91928571e+02]\n", + " [ 2.04650000e+03 5.84357143e+02]\n", + " [ 2.04650000e+03 8.76785714e+02]\n", + " [ 2.04650000e+03 1.16921429e+03]\n", + " [ 2.04650000e+03 1.46164286e+03]\n", + " [ 2.04650000e+03 1.75407143e+03]\n", + " [ 2.04650000e+03 2.04650000e+03]\n", + " [ 4.99999742e-01 1.27000000e+02]\n", + " [ 4.99999873e-01 4.85400000e+02]\n", + " [ 4.99999712e-01 8.43800000e+02]\n", + " [ 5.00000277e-01 1.20220000e+03]\n", + " [ 5.00000282e-01 1.56060000e+03]\n", + " [ 4.99999780e-01 1.91900000e+03]\n", + " [ 1.27000000e+02 4.99999945e-01]\n", + " [ 4.85400000e+02 4.99999943e-01]\n", + " [ 8.43800000e+02 5.00000147e-01]\n", + " [ 1.20220000e+03 4.99999799e-01]\n", + " [ 1.56060000e+03 5.00000078e-01]\n", + " [ 1.91900000e+03 4.99999710e-01]\n", + " [ 1.27000000e+02 2.04550000e+03]\n", + " [ 4.85400000e+02 2.04550000e+03]\n", + " [ 8.43800000e+02 2.04550000e+03]\n", + " [ 1.20220000e+03 2.04550000e+03]\n", + " [ 1.56060000e+03 2.04550000e+03]\n", + " [ 1.91900000e+03 2.04550000e+03]\n", + " [ 2.04550000e+03 1.27000000e+02]\n", + " [ 2.04550000e+03 4.85400000e+02]\n", + " [ 2.04550000e+03 8.43800000e+02]\n", + " [ 2.04550000e+03 1.20220000e+03]\n", + " [ 2.04550000e+03 1.56060000e+03]\n", + " [ 2.04550000e+03 1.91900000e+03]\n", + " [ 5.00000247e-01 5.00000241e-01]\n", + " [ 5.00000247e-01 5.00000241e-01]\n", + " [ 2.04550000e+03 2.04550000e+03]\n", + " [ 2.04550000e+03 2.04550000e+03]\n", + " [ 1.27000000e+02 1.27000000e+02]\n", + " [ 4.85400000e+02 1.27000000e+02]\n", + " [ 8.43800000e+02 1.27000000e+02]\n", + " [ 1.20220000e+03 1.27000000e+02]\n", + " [ 1.56060000e+03 1.27000000e+02]\n", + " [ 1.91900000e+03 1.27000000e+02]\n", + " [ 1.27000000e+02 4.85400000e+02]\n", + " [ 4.85400000e+02 4.85400000e+02]\n", + " [ 8.43800000e+02 4.85400000e+02]\n", + " [ 1.20220000e+03 4.85400000e+02]\n", + " [ 1.56060000e+03 4.85400000e+02]\n", + " [ 1.91900000e+03 4.85400000e+02]\n", + " [ 1.27000000e+02 8.43800000e+02]\n", + " [ 4.85400000e+02 8.43800000e+02]\n", + " [ 8.43800000e+02 8.43800000e+02]\n", + " [ 1.20220000e+03 8.43800000e+02]\n", + " [ 1.56060000e+03 8.43800000e+02]\n", + " [ 1.91900000e+03 8.43800000e+02]\n", + " [ 1.27000000e+02 1.20220000e+03]\n", + " [ 4.85400000e+02 1.20220000e+03]\n", + " [ 8.43800000e+02 1.20220000e+03]\n", + " [ 1.20220000e+03 1.20220000e+03]\n", + " [ 1.56060000e+03 1.20220000e+03]\n", + " [ 1.91900000e+03 1.20220000e+03]\n", + " [ 1.27000000e+02 1.56060000e+03]\n", + " [ 4.85400000e+02 1.56060000e+03]\n", + " [ 8.43800000e+02 1.56060000e+03]\n", + " [ 1.20220000e+03 1.56060000e+03]\n", + " [ 1.56060000e+03 1.56060000e+03]\n", + " [ 1.91900000e+03 1.56060000e+03]\n", + " [ 1.27000000e+02 1.91900000e+03]\n", + " [ 4.85400000e+02 1.91900000e+03]\n", + " [ 8.43800000e+02 1.91900000e+03]\n", + " [ 1.20220000e+03 1.91900000e+03]\n", + " [ 1.56060000e+03 1.91900000e+03]\n", + " [ 1.91900000e+03 1.91900000e+03]]\n", + "DEBUG:root:fitpix2pix: ccdpx: shape: (96, 2)\n", + "DEBUG:root:radec2pix: ccdpx: [[-4.45000002e+01 -5.00000175e-01]\n", + " [-4.44999997e+01 2.91928572e+02]\n", + " [-4.45000002e+01 5.84357143e+02]\n", + " [-4.45000000e+01 8.76785714e+02]\n", + " [-4.45000001e+01 1.16921429e+03]\n", + " [-4.44999999e+01 1.46164286e+03]\n", + " [-4.45000001e+01 1.75407143e+03]\n", + " [-4.44999997e+01 2.04650000e+03]\n", + " [-4.45000002e+01 -5.00000175e-01]\n", + " [ 2.47928571e+02 -5.00000003e-01]\n", + " [ 5.40357143e+02 -4.99999889e-01]\n", + " [ 8.32785714e+02 -5.00000160e-01]\n", + " [ 1.12521429e+03 -5.00000087e-01]\n", + " [ 1.41764286e+03 -5.00000059e-01]\n", + " [ 1.71007143e+03 -4.99999907e-01]\n", + " [ 2.00250000e+03 -4.99999721e-01]\n", + " [-4.44999997e+01 2.04650000e+03]\n", + " [ 2.47928571e+02 2.04650000e+03]\n", + " [ 5.40357143e+02 2.04650000e+03]\n", + " [ 8.32785714e+02 2.04650000e+03]\n", + " [ 1.12521429e+03 2.04650000e+03]\n", + " [ 1.41764286e+03 2.04650000e+03]\n", + " [ 1.71007143e+03 2.04650000e+03]\n", + " [ 2.00250000e+03 2.04650000e+03]\n", + " [ 2.00250000e+03 -4.99999721e-01]\n", + " [ 2.00250000e+03 2.91928571e+02]\n", + " [ 2.00250000e+03 5.84357143e+02]\n", + " [ 2.00250000e+03 8.76785714e+02]\n", + " [ 2.00250000e+03 1.16921429e+03]\n", + " [ 2.00250000e+03 1.46164286e+03]\n", + " [ 2.00250000e+03 1.75407143e+03]\n", + " [ 2.00250000e+03 2.04650000e+03]\n", + " [-4.35000001e+01 1.27000000e+02]\n", + " [-4.34999997e+01 4.85400000e+02]\n", + " [-4.35000003e+01 8.43800000e+02]\n", + " [-4.35000003e+01 1.20220000e+03]\n", + " [-4.35000002e+01 1.56060000e+03]\n", + " [-4.35000003e+01 1.91900000e+03]\n", + " [ 8.30000000e+01 4.99999980e-01]\n", + " [ 4.41400000e+02 4.99999948e-01]\n", + " [ 7.99800000e+02 4.99999731e-01]\n", + " [ 1.15820000e+03 4.99999908e-01]\n", + " [ 1.51660000e+03 4.99999771e-01]\n", + " [ 1.87500000e+03 5.00000017e-01]\n", + " [ 8.29999998e+01 2.04550000e+03]\n", + " [ 4.41400000e+02 2.04550000e+03]\n", + " [ 7.99800000e+02 2.04550000e+03]\n", + " [ 1.15820000e+03 2.04550000e+03]\n", + " [ 1.51660000e+03 2.04550000e+03]\n", + " [ 1.87500000e+03 2.04550000e+03]\n", + " [ 2.00150000e+03 1.27000000e+02]\n", + " [ 2.00150000e+03 4.85400000e+02]\n", + " [ 2.00150000e+03 8.43800000e+02]\n", + " [ 2.00150000e+03 1.20220000e+03]\n", + " [ 2.00150000e+03 1.56060000e+03]\n", + " [ 2.00150000e+03 1.91900000e+03]\n", + " [-4.35000001e+01 4.99999868e-01]\n", + " [-4.35000001e+01 4.99999868e-01]\n", + " [ 2.00150000e+03 2.04550000e+03]\n", + " [ 2.00150000e+03 2.04550000e+03]\n", + " [ 8.30000002e+01 1.27000000e+02]\n", + " [ 4.41400000e+02 1.27000000e+02]\n", + " [ 7.99800000e+02 1.27000000e+02]\n", + " [ 1.15820000e+03 1.27000000e+02]\n", + " [ 1.51660000e+03 1.27000000e+02]\n", + " [ 1.87500000e+03 1.27000000e+02]\n", + " [ 8.30000001e+01 4.85400000e+02]\n", + " [ 4.41400000e+02 4.85400000e+02]\n", + " [ 7.99800000e+02 4.85400000e+02]\n", + " [ 1.15820000e+03 4.85400000e+02]\n", + " [ 1.51660000e+03 4.85400000e+02]\n", + " [ 1.87500000e+03 4.85400000e+02]\n", + " [ 8.29999997e+01 8.43800000e+02]\n", + " [ 4.41400000e+02 8.43800000e+02]\n", + " [ 7.99800000e+02 8.43800000e+02]\n", + " [ 1.15820000e+03 8.43800000e+02]\n", + " [ 1.51660000e+03 8.43800000e+02]\n", + " [ 1.87500000e+03 8.43800000e+02]\n", + " [ 8.29999998e+01 1.20220000e+03]\n", + " [ 4.41400000e+02 1.20220000e+03]\n", + " [ 7.99800000e+02 1.20220000e+03]\n", + " [ 1.15820000e+03 1.20220000e+03]\n", + " [ 1.51660000e+03 1.20220000e+03]\n", + " [ 1.87500000e+03 1.20220000e+03]\n", + " [ 8.30000003e+01 1.56060000e+03]\n", + " [ 4.41400000e+02 1.56060000e+03]\n", + " [ 7.99800000e+02 1.56060000e+03]\n", + " [ 1.15820000e+03 1.56060000e+03]\n", + " [ 1.51660000e+03 1.56060000e+03]\n", + " [ 1.87500000e+03 1.56060000e+03]\n", + " [ 8.29999998e+01 1.91900000e+03]\n", + " [ 4.41400000e+02 1.91900000e+03]\n", + " [ 7.99800000e+02 1.91900000e+03]\n", + " [ 1.15820000e+03 1.91900000e+03]\n", + " [ 1.51660000e+03 1.91900000e+03]\n", + " [ 1.87500000e+03 1.91900000e+03]]\n", + "DEBUG:root:fitpix2pix: visCut: True\n", + "DEBUG:root:optics_fp: xyfp: [[ 0.16415906 -31.72847131]\n", + " [ 0.16601788 -27.34204313]\n", + " [ 0.1678767 -22.95561497]\n", + " [ 0.16973552 -18.56918678]\n", + " [ 0.17159434 -14.1827586 ]\n", + " [ 0.17345315 -9.79633043]\n", + " [ 0.17531197 -5.40990225]\n", + " [ 0.17717079 -1.02347407]\n", + " [ 0.16415906 -31.72847131]\n", + " [ 4.55058724 -31.73033014]\n", + " [ 8.93701541 -31.73218895]\n", + " [ 13.32344359 -31.73404778]\n", + " [ 17.70987177 -31.73590659]\n", + " [ 22.09629995 -31.73776541]\n", + " [ 26.48272812 -31.73962422]\n", + " [ 30.8691563 -31.74148305]\n", + " [ 0.17717079 -1.02347407]\n", + " [ 4.56359897 -1.02533289]\n", + " [ 8.95002714 -1.02719171]\n", + " [ 13.33645532 -1.02905053]\n", + " [ 17.7228835 -1.03090935]\n", + " [ 22.10931168 -1.03276817]\n", + " [ 26.49573986 -1.03462699]\n", + " [ 30.88216803 -1.0364858 ]\n", + " [ 30.8691563 -31.74148305]\n", + " [ 30.87101512 -27.35505487]\n", + " [ 30.87287394 -22.96862669]\n", + " [ 30.87473276 -18.58219851]\n", + " [ 30.87659158 -14.19577034]\n", + " [ 30.8784504 -9.80934216]\n", + " [ 30.88030922 -5.42291398]\n", + " [ 30.88216803 -1.0364858 ]\n", + " [ 0.17996951 -29.81597784]\n", + " [ 0.18224768 -24.43997833]\n", + " [ 0.18452584 -19.06397881]\n", + " [ 0.18680401 -13.6879793 ]\n", + " [ 0.18908217 -8.31197977]\n", + " [ 0.19136034 -2.93598025]\n", + " [ 2.07666524 -31.71428177]\n", + " [ 7.45266476 -31.71655993]\n", + " [ 12.82866428 -31.7188381 ]\n", + " [ 18.2046638 -31.72111627]\n", + " [ 23.58066331 -31.72339443]\n", + " [ 28.95666283 -31.7256726 ]\n", + " [ 2.08966426 -1.03928452]\n", + " [ 7.46566378 -1.04156269]\n", + " [ 12.8416633 -1.04384085]\n", + " [ 18.21766282 -1.04611902]\n", + " [ 23.59366233 -1.04839718]\n", + " [ 28.96966185 -1.05067535]\n", + " [ 30.85496675 -29.82897686]\n", + " [ 30.85724492 -24.45297735]\n", + " [ 30.85952308 -19.07697783]\n", + " [ 30.86180126 -13.70097831]\n", + " [ 30.86407941 -8.32497879]\n", + " [ 30.86635759 -2.94897928]\n", + " [ 0.17916541 -31.71347767]\n", + " [ 0.17916541 -31.71347767]\n", + " [ 30.86716168 -1.05147945]\n", + " [ 30.86716168 -1.05147945]\n", + " [ 2.07746934 -29.81678193]\n", + " [ 7.45346886 -29.8190601 ]\n", + " [ 12.82946837 -29.82133827]\n", + " [ 18.20546789 -29.82361643]\n", + " [ 23.58146741 -29.82589461]\n", + " [ 28.95746693 -29.82817277]\n", + " [ 2.07974751 -24.44078242]\n", + " [ 7.45574702 -24.44306058]\n", + " [ 12.83174654 -24.44533875]\n", + " [ 18.20774606 -24.44761692]\n", + " [ 23.58374558 -24.44989508]\n", + " [ 28.95974509 -24.45217325]\n", + " [ 2.08202567 -19.0647829 ]\n", + " [ 7.45802519 -19.06706107]\n", + " [ 12.83402471 -19.06933924]\n", + " [ 18.21002422 -19.0716174 ]\n", + " [ 23.58602374 -19.07389557]\n", + " [ 28.96202325 -19.07617373]\n", + " [ 2.08430384 -13.68878339]\n", + " [ 7.46030335 -13.69106155]\n", + " [ 12.83630287 -13.69333972]\n", + " [ 18.21230239 -13.69561789]\n", + " [ 23.58830191 -13.69789605]\n", + " [ 28.96430143 -13.70017422]\n", + " [ 2.086582 -8.31278387]\n", + " [ 7.46258152 -8.31506203]\n", + " [ 12.83858103 -8.3173402 ]\n", + " [ 18.21458055 -8.31961837]\n", + " [ 23.59058007 -8.32189653]\n", + " [ 28.96657959 -8.3241747 ]\n", + " [ 2.08886017 -2.93678435]\n", + " [ 7.46485969 -2.93906252]\n", + " [ 12.8408592 -2.94134068]\n", + " [ 18.21685872 -2.94361885]\n", + " [ 23.59285824 -2.94589701]\n", + " [ 28.96885776 -2.94817518]]\n", + "DEBUG:root:optics_fp: xyfp shape: (96, 2)\n", + "DEBUG:root:cartToSphere: vec: [[0.20622014 0.20255556 0.95731108]\n", + " [0.20805053 0.17610143 0.96213474]\n", + " [0.20961035 0.14895462 0.96637261]\n", + " [0.210899 0.12122494 0.96996192]\n", + " [0.21191543 0.09302239 0.9728508 ]\n", + " [0.21265818 0.06445739 0.97499833]\n", + " [0.21312568 0.03564119 0.97637449]\n", + " [0.21331667 0.00668594 0.97696023]\n", + " [0.20622014 0.20255556 0.95731108]\n", + " [0.17982824 0.20441077 0.96222557]\n", + " [0.1527297 0.20600074 0.96655954]\n", + " [0.12503427 0.2073248 0.97024886]\n", + " [0.09685185 0.20838186 0.97324032]\n", + " [0.06829276 0.20917033 0.97549161]\n", + " [0.03946812 0.20968847 0.97697135]\n", + " [0.01049004 0.20993479 0.97765911]\n", + " [0.21331667 0.00668594 0.97696023]\n", + " [0.18597713 0.00675821 0.98253083]\n", + " [0.1579279 0.00682246 0.98742708]\n", + " [0.12927353 0.00687853 0.99158512]\n", + " [0.10011961 0.00692617 0.9949513 ]\n", + " [0.07057467 0.0069651 0.99748218]\n", + " [0.04075124 0.00699507 0.99914484]\n", + " [0.01076573 0.00701584 0.99991744]\n", + " [0.01049004 0.20993479 0.97765911]\n", + " [0.01056977 0.18250233 0.9831486 ]\n", + " [0.01063642 0.15437326 0.98795534]\n", + " [0.01068985 0.12565215 0.99201677]\n", + " [0.01072978 0.09644485 0.99528049]\n", + " [0.01075592 0.06686038 0.99770436]\n", + " [0.01076796 0.03701177 0.99925681]\n", + " [0.01076573 0.00701584 0.99991744]\n", + " [0.20696213 0.19112005 0.95949977]\n", + " [0.20902258 0.15821703 0.96502691]\n", + " [0.21067623 0.12438266 0.96961048]\n", + " [0.21192136 0.08981934 0.97315046]\n", + " [0.21275532 0.05473042 0.9755715 ]\n", + " [0.21317532 0.0193211 0.9768229 ]\n", + " [0.1948134 0.20330747 0.95953833]\n", + " [0.16197729 0.20540191 0.96518051]\n", + " [0.1281888 0.20709749 0.96988569]\n", + " [0.09365018 0.2083924 0.97355136]\n", + " [0.05856456 0.20928375 0.97609964]\n", + " [0.02313694 0.20976841 0.97747731]\n", + " [0.20149034 0.00681796 0.97946677]\n", + " [0.16749252 0.00690216 0.98584919]\n", + " [0.1325326 0.00697398 0.99115411]\n", + " [0.09680441 0.00703299 0.99527858]\n", + " [0.0605079 0.00707868 0.99814262]\n", + " [0.02385188 0.00711058 0.99969022]\n", + " [0.01062602 0.19806614 0.98013106]\n", + " [0.01071595 0.16396327 0.98640824]\n", + " [0.0107859 0.12891793 0.99159661]\n", + " [0.01083545 0.09312436 0.99559552]\n", + " [0.01086402 0.05678335 0.99832741]\n", + " [0.01087112 0.02010461 0.99973878]\n", + " [0.20613793 0.2024732 0.95734621]\n", + " [0.20613793 0.2024732 0.95734621]\n", + " [0.01086844 0.00711848 0.9999156 ]\n", + " [0.01086844 0.00711848 0.9999156 ]\n", + " [0.19558949 0.19190537 0.96172609]\n", + " [0.1626169 0.19387759 0.96745399]\n", + " [0.12869151 0.19547539 0.9722283 ]\n", + " [0.09401511 0.1966967 0.9759465 ]\n", + " [0.05879055 0.19753824 0.97853069]\n", + " [0.02322296 0.19799645 0.9799276 ]\n", + " [0.19753009 0.15886347 0.96733875]\n", + " [0.16421774 0.1604891 0.97328094]\n", + " [0.12995114 0.1618095 0.97822819]\n", + " [0.09493033 0.16282181 0.98207805]\n", + " [0.05935726 0.16352163 0.98475245]\n", + " [0.02343764 0.16390447 0.98619775]\n", + " [0.19908829 0.12488974 0.97199095]\n", + " [0.16550536 0.12616714 0.97810522]\n", + " [0.13096617 0.12720791 0.98319175]\n", + " [0.09566871 0.12800859 0.98714806]\n", + " [0.05981412 0.1285643 0.9898957 ]\n", + " [0.02360896 0.12887024 0.99138039]\n", + " [0.20026215 0.09018615 0.97558266]\n", + " [0.16647694 0.09111203 0.98182688]\n", + " [0.13173312 0.09186896 0.98701899]\n", + " [0.09622682 0.09245358 0.99105637]\n", + " [0.06015857 0.0928614 0.99386 ]\n", + " [0.02373584 0.09308815 0.99537491]\n", + " [0.20104857 0.05495583 0.97803851]\n", + " [0.16712825 0.05552612 0.98437036]\n", + " [0.13224724 0.05599434 0.98963392]\n", + " [0.09660024 0.05635799 0.99372641]\n", + " [0.06038739 0.05661388 0.99656823]\n", + " [0.02381698 0.05675899 0.99810379]\n", + " [0.20144435 0.01940412 0.97930774]\n", + " [0.16745515 0.01961547 0.98568454]\n", + " [0.13250401 0.01979108 0.99098486]\n", + " [0.09678486 0.01992994 0.99510577]\n", + " [0.06049766 0.02003078 0.99796733]\n", + " [0.02385117 0.02009239 0.99951359]]\n", + "DEBUG:root:radec2pix: lng: [44.48637088 40.24577336 35.3986005 29.89032997 23.69955042 16.86222735\n", + " 9.49377237 1.79522173 44.48637088 48.66063412 53.44662754 58.90649312\n", + " 65.0719071 71.9184746 79.34035003 87.13941954 1.79522173 2.08115239\n", + " 2.4736322 3.04578526 3.95735654 5.6363423 9.74006464 33.09159725\n", + " 87.13941954 86.68537287 86.05851166 85.13727473 83.65177634 80.86105503\n", + " 73.77851938 33.09159725 42.72105973 37.1234454 30.55748427 22.96885005\n", + " 14.42630836 5.17884001 46.22224274 51.74114431 58.24340245 65.80116251\n", + " 74.36661193 83.70585675 1.93801443 2.35975361 3.01217367 4.15532416\n", + " 6.6725739 16.60005947 86.92909007 86.26070822 85.21749379 83.36321455\n", + " 79.16883097 61.59868241 44.48614146 44.48614146 33.22349754 33.22349754\n", + " 44.45527608 50.01139871 56.64103308 64.45360362 73.42615136 83.31035484\n", + " 38.80796323 44.3420957 51.23163704 59.75644459 70.04944098 81.86211477\n", + " 32.10039047 37.31880048 44.16600061 53.22697224 65.04995068 79.6185637\n", + " 24.24396698 28.69167771 34.89141577 43.85434751 57.06355174 75.69539259\n", + " 15.28811193 18.37837592 22.94811312 30.25991115 43.15274514 67.23630391\n", + " 5.50203766 6.68110194 8.4950185 11.63570463 18.3197087 40.11102427]\n", + "DEBUG:root:make_az_asym: xyp: [[ 0.16415906 -31.72847131]\n", + " [ 0.16601788 -27.34204313]\n", + " [ 0.1678767 -22.95561497]\n", + " [ 0.16973552 -18.56918678]\n", + " [ 0.17159434 -14.1827586 ]\n", + " [ 0.17345315 -9.79633043]\n", + " [ 0.17531197 -5.40990225]\n", + " [ 0.17717079 -1.02347407]\n", + " [ 0.16415906 -31.72847131]\n", + " [ 4.55058724 -31.73033014]\n", + " [ 8.93701541 -31.73218895]\n", + " [ 13.32344359 -31.73404778]\n", + " [ 17.70987177 -31.73590659]\n", + " [ 22.09629995 -31.73776541]\n", + " [ 26.48272812 -31.73962422]\n", + " [ 30.8691563 -31.74148305]\n", + " [ 0.17717079 -1.02347407]\n", + " [ 4.56359897 -1.02533289]\n", + " [ 8.95002714 -1.02719171]\n", + " [ 13.33645532 -1.02905053]\n", + " [ 17.7228835 -1.03090935]\n", + " [ 22.10931168 -1.03276817]\n", + " [ 26.49573986 -1.03462699]\n", + " [ 30.88216803 -1.0364858 ]\n", + " [ 30.8691563 -31.74148305]\n", + " [ 30.87101512 -27.35505487]\n", + " [ 30.87287394 -22.96862669]\n", + " [ 30.87473276 -18.58219851]\n", + " [ 30.87659158 -14.19577034]\n", + " [ 30.8784504 -9.80934216]\n", + " [ 30.88030922 -5.42291398]\n", + " [ 30.88216803 -1.0364858 ]\n", + " [ 0.17996951 -29.81597784]\n", + " [ 0.18224768 -24.43997833]\n", + " [ 0.18452584 -19.06397881]\n", + " [ 0.18680401 -13.6879793 ]\n", + " [ 0.18908217 -8.31197977]\n", + " [ 0.19136034 -2.93598025]\n", + " [ 2.07666524 -31.71428177]\n", + " [ 7.45266476 -31.71655993]\n", + " [ 12.82866428 -31.7188381 ]\n", + " [ 18.2046638 -31.72111627]\n", + " [ 23.58066331 -31.72339443]\n", + " [ 28.95666283 -31.7256726 ]\n", + " [ 2.08966426 -1.03928452]\n", + " [ 7.46566378 -1.04156269]\n", + " [ 12.8416633 -1.04384085]\n", + " [ 18.21766282 -1.04611902]\n", + " [ 23.59366233 -1.04839718]\n", + " [ 28.96966185 -1.05067535]\n", + " [ 30.85496675 -29.82897686]\n", + " [ 30.85724492 -24.45297735]\n", + " [ 30.85952308 -19.07697783]\n", + " [ 30.86180126 -13.70097831]\n", + " [ 30.86407941 -8.32497879]\n", + " [ 30.86635759 -2.94897928]\n", + " [ 0.17916541 -31.71347767]\n", + " [ 0.17916541 -31.71347767]\n", + " [ 30.86716168 -1.05147945]\n", + " [ 30.86716168 -1.05147945]\n", + " [ 2.07746934 -29.81678193]\n", + " [ 7.45346886 -29.8190601 ]\n", + " [ 12.82946837 -29.82133827]\n", + " [ 18.20546789 -29.82361643]\n", + " [ 23.58146741 -29.82589461]\n", + " [ 28.95746693 -29.82817277]\n", + " [ 2.07974751 -24.44078242]\n", + " [ 7.45574702 -24.44306058]\n", + " [ 12.83174654 -24.44533875]\n", + " [ 18.20774606 -24.44761692]\n", + " [ 23.58374558 -24.44989508]\n", + " [ 28.95974509 -24.45217325]\n", + " [ 2.08202567 -19.0647829 ]\n", + " [ 7.45802519 -19.06706107]\n", + " [ 12.83402471 -19.06933924]\n", + " [ 18.21002422 -19.0716174 ]\n", + " [ 23.58602374 -19.07389557]\n", + " [ 28.96202325 -19.07617373]\n", + " [ 2.08430384 -13.68878339]\n", + " [ 7.46030335 -13.69106155]\n", + " [ 12.83630287 -13.69333972]\n", + " [ 18.21230239 -13.69561789]\n", + " [ 23.58830191 -13.69789605]\n", + " [ 28.96430143 -13.70017422]\n", + " [ 2.086582 -8.31278387]\n", + " [ 7.46258152 -8.31506203]\n", + " [ 12.83858103 -8.3173402 ]\n", + " [ 18.21458055 -8.31961837]\n", + " [ 23.59058007 -8.32189653]\n", + " [ 28.96657959 -8.3241747 ]\n", + " [ 2.08886017 -2.93678435]\n", + " [ 7.46485969 -2.93906252]\n", + " [ 12.8408592 -2.94134068]\n", + " [ 18.21685872 -2.94361885]\n", + " [ 23.59285824 -2.94589701]\n", + " [ 28.96885776 -2.94817518]]\n", + "DEBUG:root:make_az_asym: xyp: shape: (96, 2)\n", + "DEBUG:root:radec2pix: lat: [73.19833089 74.18249103 75.09922688 75.92116023 76.61853688 77.16100123\n", + " 77.52079342 77.67706772 73.19833089 74.20159367 75.14093371 75.98890558\n", + " 76.71531245 77.28881429 77.68005228 77.86611976 77.67706772 79.27473553\n", + " 80.90480881 82.56181915 84.24016258 85.93331116 87.63030205 89.26372814\n", + " 77.86611976 79.46663016 81.09832556 82.755367 84.43126132 86.11695715\n", + " 87.79091006 89.26372814 73.63774563 74.80227565 75.83862014 76.69292614\n", + " 77.3096353 77.64025349 73.64559076 74.835883 75.90321746 76.7930912\n", + " 77.44812351 77.8166633 78.36913095 80.34967761 82.37343442 84.43012843\n", + " 86.50734673 88.57380626 78.55945528 80.5426681 82.56690719 84.62047016\n", + " 86.68569475 88.69035885 73.20529527 73.20529527 89.25558432 89.25558432\n", + " 74.09681811 75.34210951 76.46528549 77.40781255 78.10603298 78.5008319\n", + " 75.3160395 76.72544415 78.02222799 79.13621749 79.98176995 80.46955109\n", + " 76.40729948 77.98832745 79.48016045 80.80422916 81.84813181 82.47175257\n", + " 77.31254652 79.06012758 80.75806605 82.3313541 83.64750757 84.48728684\n", + " 77.96997446 79.85669547 81.74302972 83.57869755 85.2518859 86.47101417\n", + " 78.32402093 80.29356392 82.30071175 84.32903186 86.34620527 88.21286949]\n", + "DEBUG:root:cartToSphere: vec: [[-0.20607518 -0.20019593 0.95783851]\n", + " [-0.20787446 -0.17367087 0.96261448]\n", + " [-0.20940354 -0.14646307 0.96679818]\n", + " [-0.21066179 -0.11868235 0.97032784]\n", + " [-0.21164814 -0.09043873 0.97315256]\n", + " [-0.21236112 -0.0618427 0.9752324 ]\n", + " [-0.21279916 -0.03300558 0.97653835]\n", + " [-0.21296107 -0.0040396 0.97705233]\n", + " [-0.20607518 -0.20019593 0.95783851]\n", + " [-0.17964954 -0.20202839 0.96276195]\n", + " [-0.15251864 -0.20359907 0.96710159]\n", + " [-0.12479221 -0.20490731 0.97079344]\n", + " [-0.09658011 -0.20595196 0.97378441]\n", + " [-0.06799262 -0.20673135 0.97603235]\n", + " [-0.03914089 -0.20724368 0.97750603]\n", + " [-0.01013708 -0.20748743 0.97818516]\n", + " [-0.21296107 -0.0040396 0.97705233]\n", + " [-0.18561075 -0.00409191 0.98261483]\n", + " [-0.15755214 -0.0041395 0.98750199]\n", + " [-0.12888979 -0.00418225 0.99165011]\n", + " [-0.09972928 -0.00421998 0.99500566]\n", + " [-0.07017922 -0.00425248 0.99752533]\n", + " [-0.04035219 -0.00427955 0.99917635]\n", + " [-0.01036463 -0.00430103 0.99993704]\n", + " [-0.01013708 -0.20748743 0.97818516]\n", + " [-0.01020871 -0.17998755 0.98361591]\n", + " [-0.01026764 -0.15180051 0.98835782]\n", + " [-0.01031373 -0.12303089 0.99234925]\n", + " [-0.01034674 -0.0937848 0.99553873]\n", + " [-0.01036638 -0.06417157 0.99788504]\n", + " [-0.0103724 -0.03430461 0.9993576 ]\n", + " [-0.01036463 -0.00430103 0.99993704]\n", + " [-0.20680345 -0.18872819 0.96000729]\n", + " [-0.20882603 -0.15574492 0.96547149]\n", + " [-0.21044235 -0.12184525 0.96998338]\n", + " [-0.21165063 -0.0872316 0.97344474]\n", + " [-0.2124482 -0.05210744 0.97578203]\n", + " [-0.2128323 -0.0166781 0.97694639]\n", + " [-0.19465346 -0.20093724 0.96006992]\n", + " [-0.16177694 -0.20300612 0.96572084]\n", + " [-0.12795009 -0.20468137 0.97042996]\n", + " [-0.0933751 -0.20596106 0.97409503]\n", + " [-0.05825505 -0.20684219 0.97663845]\n", + " [-0.022795 -0.20732153 0.97800724]\n", + " [-0.20112996 -0.00416252 0.97955572]\n", + " [-0.16711987 -0.00422448 0.98592753]\n", + " [-0.13214975 -0.00427905 0.99122053]\n", + " [-0.09641349 -0.00432591 0.99533197]\n", + " [-0.0601111 -0.00436469 0.99818215]\n", + " [-0.02345151 -0.00439503 0.99971531]\n", + " [-0.01026957 -0.19558822 0.98063234]\n", + " [-0.0103498 -0.16140908 0.98683331]\n", + " [-0.01041065 -0.12630166 0.99193725]\n", + " [-0.01045169 -0.09046055 0.99584519]\n", + " [-0.01047241 -0.05408714 0.9984813 ]\n", + " [-0.01047238 -0.0173918 0.99979391]\n", + " [-0.20599275 -0.20011322 0.95787352]\n", + " [-0.20599275 -0.20011322 0.95787352]\n", + " [-0.01046737 -0.00440367 0.99993552]\n", + " [-0.01046737 -0.00440367 0.99993552]\n", + " [-0.19541667 -0.18950334 0.9622374 ]\n", + " [-0.16240545 -0.19145029 0.96797276]\n", + " [-0.12844349 -0.19302803 0.97274994]\n", + " [-0.09373247 -0.19423441 0.9764667 ]\n", + " [-0.05847519 -0.195066 0.97904541]\n", + " [-0.02287686 -0.19551916 0.98043302]\n", + " [-0.19732118 -0.15638145 0.96778572]\n", + " [-0.16397526 -0.15798254 0.97373181]\n", + " [-0.12967711 -0.1592836 0.978679 ]\n", + " [-0.09462661 -0.16028164 0.98252511]\n", + " [-0.05902568 -0.16097217 0.98519233]\n", + " [-0.02308015 -0.16135064 0.98662722]\n", + " [-0.19884383 -0.12234264 0.97236485]\n", + " [-0.16523235 -0.1235961 0.97847957]\n", + " [-0.13066656 -0.12461804 0.98356321]\n", + " [-0.09534433 -0.12540495 0.98751357]\n", + " [-0.05946678 -0.1259519 0.9902524 ]\n", + " [-0.02324061 -0.1262541 0.99172566]\n", + " [-0.19998259 -0.08758892 0.9758766 ]\n", + " [-0.16617376 -0.08849133 0.9821179 ]\n", + " [-0.13140827 -0.08922984 0.98730436]\n", + " [-0.09588212 -0.08980108 0.99133364]\n", + " [-0.05979589 -0.09020062 0.9941269 ]\n", + " [-0.0233572 -0.09042422 0.9956294 ]\n", + " [-0.20073433 -0.05232353 0.9782474 ]\n", + " [-0.16679525 -0.0528708 0.98457302]\n", + " [-0.13189744 -0.053321 0.98982824]\n", + " [-0.09623556 -0.05367171 0.99391049]\n", + " [-0.06000982 -0.05391982 0.99674043]\n", + " [-0.02342863 -0.0540624 0.99826267]\n", + " [-0.20109591 -0.016752 0.97942831]\n", + " [-0.16709274 -0.01694088 0.98579563]\n", + " [-0.13212968 -0.01709901 0.99108495]\n", + " [-0.09640067 -0.01722548 0.99519355]\n", + " [-0.06010576 -0.01731915 0.99804176]\n", + " [-0.0234538 -0.01737894 0.99957386]]\n", + "DEBUG:root:radec2pix: fitpx: [[4271.50000018 4155.50000017]\n", + " [4271.49999973 3863.07142834]\n", + " [4271.50000015 3570.64285725]\n", + " [4271.50000001 3278.21428572]\n", + " [4271.5000001 2985.78571433]\n", + " [4271.49999989 2693.35714282]\n", + " [4271.50000013 2400.92857145]\n", + " [4271.49999973 2108.49999999]\n", + " [4271.50000018 4155.50000017]\n", + " [3979.07142857 4155.5 ]\n", + " [3686.64285706 4155.49999989]\n", + " [3394.21428581 4155.50000016]\n", + " [3101.78571433 4155.50000009]\n", + " [2809.35714288 4155.50000006]\n", + " [2516.92857141 4155.49999991]\n", + " [2224.49999999 4155.49999972]\n", + " [4271.49999973 2108.49999999]\n", + " [3979.07142852 2108.5 ]\n", + " [3686.6428568 2108.49999999]\n", + " [3394.2142859 2108.50000001]\n", + " [3101.78571455 2108.50000001]\n", + " [2809.35714254 2108.49999998]\n", + " [2516.92857145 2108.5 ]\n", + " [2224.49999991 2108.49999996]\n", + " [2224.49999999 4155.49999972]\n", + " [2224.50000001 3863.07142866]\n", + " [2224.50000002 3570.64285748]\n", + " [2224.49999999 3278.21428555]\n", + " [2224.49999997 2985.78571404]\n", + " [2224.49999997 2693.35714267]\n", + " [2224.49999997 2400.92857132]\n", + " [2224.49999991 2108.49999996]\n", + " [4270.50000007 4028.00000007]\n", + " [4270.49999974 3669.5999998 ]\n", + " [4270.50000026 3311.20000015]\n", + " [4270.50000028 2952.80000012]\n", + " [4270.50000021 2594.40000005]\n", + " [4270.50000028 2236.00000002]\n", + " [4144.00000002 4154.50000002]\n", + " [3785.60000004 4154.50000005]\n", + " [3427.20000017 4154.50000027]\n", + " [3068.80000004 4154.50000009]\n", + " [2710.40000006 4154.50000023]\n", + " [2352. 4154.49999998]\n", + " [4144.00000024 2109.50000001]\n", + " [3785.60000024 2109.50000001]\n", + " [3427.20000038 2109.50000002]\n", + " [3068.80000022 2109.50000001]\n", + " [2710.3999999 2109.49999999]\n", + " [2352.00000033 2109.50000007]\n", + " [2225.50000001 4028.00000014]\n", + " [2225.5 3669.59999993]\n", + " [2225.49999997 3311.19999965]\n", + " [2225.50000003 2952.80000023]\n", + " [2225.50000001 2594.40000005]\n", + " [2225.50000007 2236.00000012]\n", + " [4270.50000014 4154.50000013]\n", + " [4270.50000014 4154.50000013]\n", + " [2225.5 2109.5 ]\n", + " [2225.5 2109.5 ]\n", + " [4143.99999977 4027.99999977]\n", + " [3785.60000006 4028.00000007]\n", + " [3427.19999985 4027.99999978]\n", + " [3068.80000002 4028.00000004]\n", + " [2710.40000003 4028.0000001 ]\n", + " [2351.99999998 4027.99999983]\n", + " [4143.99999989 3669.59999991]\n", + " [3785.59999992 3669.59999992]\n", + " [3427.20000008 3669.60000009]\n", + " [3068.80000009 3669.60000016]\n", + " [2710.40000007 3669.6000002 ]\n", + " [2352. 3669.60000003]\n", + " [4144.00000025 3311.20000016]\n", + " [3785.59999995 3311.19999996]\n", + " [3427.19999995 3311.19999995]\n", + " [3068.80000029 3311.20000039]\n", + " [2710.39999993 3311.19999986]\n", + " [2352.00000003 3311.20000016]\n", + " [4144.0000002 2952.80000009]\n", + " [3785.6000002 2952.80000011]\n", + " [3427.19999983 2952.79999988]\n", + " [3068.80000029 2952.80000027]\n", + " [2710.40000007 2952.8000001 ]\n", + " [2352.00000006 2952.80000022]\n", + " [4143.99999974 2594.39999993]\n", + " [3785.60000003 2594.40000001]\n", + " [3427.19999994 2594.39999997]\n", + " [3068.7999999 2594.39999994]\n", + " [2710.40000001 2594.40000001]\n", + " [2351.9999999 2594.39999976]\n", + " [4144.00000015 2236.00000001]\n", + " [3785.59999982 2235.99999998]\n", + " [3427.19999971 2235.99999996]\n", + " [3068.80000012 2236.00000002]\n", + " [2710.39999989 2235.99999997]\n", + " [2351.99999988 2235.99999991]]\n", + "DEBUG:root:fitpix2pix: ccdpx: shape: (96, 2)\n", + "DEBUG:root:fitpix2pix: visCut: True\n", + "DEBUG:root:radec2pix: lng: [224.17091663 219.87741809 214.97008665 209.39598188 203.1373574\n", + " 196.23634076 188.81644128 181.08669631 224.17091663 228.3555716\n", + " 233.16265584 238.65783928 244.87601329 251.7942959 259.30486084\n", + " 267.20296141 181.08669631 181.26291687 181.50503492 181.85849799\n", + " 182.42298774 183.46757199 186.05387592 202.53707914 267.20296141\n", + " 266.75372148 266.13046308 265.20807536 263.70434622 260.82362196\n", + " 253.17669924 202.53707914 222.38348083 216.71601144 210.07066421\n", + " 202.39896016 193.78096287 184.48069147 225.9100405 231.44842444\n", + " 237.98973756 245.61222365 254.27065244 263.72553361 181.18560606\n", + " 181.44802269 181.85460599 182.56904059 184.15297918 190.61463228\n", + " 266.99438373 266.33112836 265.28794249 263.40934603 259.04191913\n", + " 238.94596845 224.17054014 224.17054014 202.81670057 202.81670057\n", + " 224.11986404 229.69237658 236.35966367 244.23925438 253.312778\n", + " 263.32641007 218.39761245 223.93365474 230.85002743 239.44337044\n", + " 249.86289594 261.85943825 211.60273873 216.79700073 223.64273186\n", + " 232.75457852 244.72618682 259.56986466 203.65258863 208.03632189\n", + " 214.17758593 223.12426077 236.4587659 255.51668541 194.60966243\n", + " 197.58758667 202.01156736 209.14892478 221.94021993 246.56988658\n", + " 184.76194605 185.78921163 187.37371211 190.13104958 196.0740482\n", + " 216.53792504]\n", + "DEBUG:root:make_az_asym: xyp: [[-32.29046994 -31.71666141]\n", + " [-32.28860507 -27.33023323]\n", + " [-32.2867402 -22.94380505]\n", + " [-32.28487534 -18.55737688]\n", + " [-32.28301047 -14.1709487 ]\n", + " [-32.2811456 -9.78452053]\n", + " [-32.27928073 -5.39809235]\n", + " [-32.27741587 -1.01166418]\n", + " [-32.29046994 -31.71666141]\n", + " [-27.90404176 -31.71852627]\n", + " [-23.51761359 -31.72039114]\n", + " [-19.13118541 -31.722256 ]\n", + " [-14.74475724 -31.72412087]\n", + " [-10.35832906 -31.72598574]\n", + " [ -5.97190089 -31.72785061]\n", + " [ -1.58547272 -31.72971547]\n", + " [-32.27741587 -1.01166418]\n", + " [-27.8909877 -1.01352905]\n", + " [-23.50455952 -1.01539391]\n", + " [-19.11813134 -1.01725878]\n", + " [-14.73170317 -1.01912365]\n", + " [-10.345275 -1.02098851]\n", + " [ -5.95884682 -1.02285338]\n", + " [ -1.57241864 -1.02471825]\n", + " [ -1.58547272 -31.72971547]\n", + " [ -1.58360785 -27.3432873 ]\n", + " [ -1.58174298 -22.95685912]\n", + " [ -1.57987811 -18.57043094]\n", + " [ -1.57801325 -14.18400278]\n", + " [ -1.57614838 -9.7975746 ]\n", + " [ -1.57428351 -5.41114642]\n", + " [ -1.57241864 -1.02471825]\n", + " [-32.27465685 -29.80416795]\n", + " [-32.27237127 -24.42816844]\n", + " [-32.2700857 -19.05216893]\n", + " [-32.26780012 -13.67616941]\n", + " [-32.26551454 -8.3001699 ]\n", + " [-32.26322896 -2.92417038]\n", + " [-30.37796373 -31.70247449]\n", + " [-25.00196422 -31.70476008]\n", + " [-19.62596471 -31.70704565]\n", + " [-14.24996519 -31.70933123]\n", + " [ -8.87396568 -31.71161681]\n", + " [ -3.49796617 -31.71390239]\n", + " [-30.36492242 -1.02747727]\n", + " [-24.98892291 -1.02976285]\n", + " [-19.61292339 -1.03204842]\n", + " [-14.23692388 -1.034334 ]\n", + " [ -8.86092437 -1.03661958]\n", + " [ -3.48492485 -1.03890516]\n", + " [ -1.59965962 -29.81720927]\n", + " [ -1.59737405 -24.44120975]\n", + " [ -1.59508847 -19.06521024]\n", + " [ -1.59280289 -13.68921073]\n", + " [ -1.59051731 -8.31321121]\n", + " [ -1.58823174 -2.9372117 ]\n", + " [-32.27546357 -31.70166778]\n", + " [-32.27546357 -31.70166778]\n", + " [ -1.58742502 -1.03971187]\n", + " [ -1.58742502 -1.03971187]\n", + " [-30.37715702 -29.80497466]\n", + " [-25.00115751 -29.80726024]\n", + " [-19.625158 -29.80954582]\n", + " [-14.24915848 -29.8118314 ]\n", + " [ -8.87315897 -29.81411698]\n", + " [ -3.49715945 -29.81640256]\n", + " [-30.37487145 -24.42897515]\n", + " [-24.99887193 -24.43126073]\n", + " [-19.62287241 -24.43354631]\n", + " [-14.2468729 -24.43583188]\n", + " [ -8.87087339 -24.43811746]\n", + " [ -3.49487388 -24.44040305]\n", + " [-30.37258587 -19.05297564]\n", + " [-24.99658635 -19.05526122]\n", + " [-19.62058684 -19.05754679]\n", + " [-14.24458732 -19.05983237]\n", + " [ -8.86858781 -19.06211795]\n", + " [ -3.4925883 -19.06440353]\n", + " [-30.37030029 -13.67697612]\n", + " [-24.99430077 -13.6792617 ]\n", + " [-19.61830126 -13.68154728]\n", + " [-14.24230175 -13.68383286]\n", + " [ -8.86630223 -13.68611844]\n", + " [ -3.49030272 -13.68840401]\n", + " [-30.36801471 -8.30097661]\n", + " [-24.9920152 -8.30326219]\n", + " [-19.61601568 -8.30554776]\n", + " [-14.24001617 -8.30783335]\n", + " [ -8.86401666 -8.31011893]\n", + " [ -3.48801714 -8.3124045 ]\n", + " [-30.36572914 -2.9249771 ]\n", + " [-24.98972962 -2.92726267]\n", + " [-19.6137301 -2.92954825]\n", + " [-14.23773059 -2.93183383]\n", + " [ -8.86173108 -2.93411941]\n", + " [ -3.48573156 -2.93640499]]\n", + "DEBUG:root:make_az_asym: xyp: shape: (96, 2)\n", + "DEBUG:root:radec2pix: lat: [73.30319327 74.28364829 75.19434757 76.00760673 76.6934474 77.22149469\n", + " 77.56431546 77.70181842 73.30319327 74.31487163 75.26252869 76.11836609\n", + " 76.85166299 77.43039612 77.8244634 78.01035447 77.70181842 79.30062777\n", + " 80.93200296 82.59063863 84.2712796 85.96832552 87.67438557 89.35703566\n", + " 78.01035447 79.61411514 81.24861046 82.90802789 84.58587071 86.27294722\n", + " 87.94616945 89.35703566 73.74128804 74.89975016 75.92621516 76.76637844\n", + " 77.36466213 77.67335289 73.7541097 74.95468773 76.03182731 76.93013306\n", + " 77.59097642 77.96138218 78.39443735 80.37649363 82.40216048 84.46173597\n", + " 86.54472647 88.63280521 78.70517127 80.69206097 82.71932817 84.7752745\n", + " 86.84188191 88.83673743 73.31017726 73.31017726 89.34933673 89.34933673\n", + " 74.20408349 75.46003419 76.59358943 77.54526674 78.24998117 78.64701061\n", + " 75.41740928 76.83842002 78.14733268 79.2729755 80.12769991 80.61933545\n", + " 76.49875662 78.09183026 79.59737911 80.93621381 81.99355302 82.62428133\n", + " 77.38945666 79.14833894 80.86043698 82.45133489 83.78724838 84.64121324\n", + " 78.02753384 79.92284226 81.82091734 83.6737055 85.37260957 86.62213831\n", + " 78.35820379 80.33138971 82.34363217 84.38015735 86.41373806 88.32724747]\n", + "DEBUG:root:radec2pix: xyfp: [[ 0.16415906 -31.72847131]\n", + " [ 0.16601788 -27.34204313]\n", + " [ 0.1678767 -22.95561497]\n", + " [ 0.16973552 -18.56918678]\n", + " [ 0.17159434 -14.1827586 ]\n", + " [ 0.17345315 -9.79633043]\n", + " [ 0.17531197 -5.40990225]\n", + " [ 0.17717079 -1.02347407]\n", + " [ 0.16415906 -31.72847131]\n", + " [ 4.55058724 -31.73033014]\n", + " [ 8.93701541 -31.73218895]\n", + " [ 13.32344359 -31.73404778]\n", + " [ 17.70987177 -31.73590659]\n", + " [ 22.09629995 -31.73776541]\n", + " [ 26.48272812 -31.73962422]\n", + " [ 30.8691563 -31.74148305]\n", + " [ 0.17717079 -1.02347407]\n", + " [ 4.56359897 -1.02533289]\n", + " [ 8.95002714 -1.02719171]\n", + " [ 13.33645532 -1.02905053]\n", + " [ 17.7228835 -1.03090935]\n", + " [ 22.10931168 -1.03276817]\n", + " [ 26.49573986 -1.03462699]\n", + " [ 30.88216803 -1.0364858 ]\n", + " [ 30.8691563 -31.74148305]\n", + " [ 30.87101512 -27.35505487]\n", + " [ 30.87287394 -22.96862669]\n", + " [ 30.87473276 -18.58219851]\n", + " [ 30.87659158 -14.19577034]\n", + " [ 30.8784504 -9.80934216]\n", + " [ 30.88030922 -5.42291398]\n", + " [ 30.88216803 -1.0364858 ]\n", + " [ 0.17996951 -29.81597784]\n", + " [ 0.18224768 -24.43997833]\n", + " [ 0.18452584 -19.06397881]\n", + " [ 0.18680401 -13.6879793 ]\n", + " [ 0.18908217 -8.31197977]\n", + " [ 0.19136034 -2.93598025]\n", + " [ 2.07666524 -31.71428177]\n", + " [ 7.45266476 -31.71655993]\n", + " [ 12.82866428 -31.7188381 ]\n", + " [ 18.2046638 -31.72111627]\n", + " [ 23.58066331 -31.72339443]\n", + " [ 28.95666283 -31.7256726 ]\n", + " [ 2.08966426 -1.03928452]\n", + " [ 7.46566378 -1.04156269]\n", + " [ 12.8416633 -1.04384085]\n", + " [ 18.21766282 -1.04611902]\n", + " [ 23.59366233 -1.04839718]\n", + " [ 28.96966185 -1.05067535]\n", + " [ 30.85496675 -29.82897686]\n", + " [ 30.85724492 -24.45297735]\n", + " [ 30.85952308 -19.07697783]\n", + " [ 30.86180126 -13.70097831]\n", + " [ 30.86407941 -8.32497879]\n", + " [ 30.86635759 -2.94897928]\n", + " [ 0.17916541 -31.71347767]\n", + " [ 0.17916541 -31.71347767]\n", + " [ 30.86716168 -1.05147945]\n", + " [ 30.86716168 -1.05147945]\n", + " [ 2.07746934 -29.81678193]\n", + " [ 7.45346886 -29.8190601 ]\n", + " [ 12.82946837 -29.82133827]\n", + " [ 18.20546789 -29.82361643]\n", + " [ 23.58146741 -29.82589461]\n", + " [ 28.95746693 -29.82817277]\n", + " [ 2.07974751 -24.44078242]\n", + " [ 7.45574702 -24.44306058]\n", + " [ 12.83174654 -24.44533875]\n", + " [ 18.20774606 -24.44761692]\n", + " [ 23.58374558 -24.44989508]\n", + " [ 28.95974509 -24.45217325]\n", + " [ 2.08202567 -19.0647829 ]\n", + " [ 7.45802519 -19.06706107]\n", + " [ 12.83402471 -19.06933924]\n", + " [ 18.21002422 -19.0716174 ]\n", + " [ 23.58602374 -19.07389557]\n", + " [ 28.96202325 -19.07617373]\n", + " [ 2.08430384 -13.68878339]\n", + " [ 7.46030335 -13.69106155]\n", + " [ 12.83630287 -13.69333972]\n", + " [ 18.21230239 -13.69561789]\n", + " [ 23.58830191 -13.69789605]\n", + " [ 28.96430143 -13.70017422]\n", + " [ 2.086582 -8.31278387]\n", + " [ 7.46258152 -8.31506203]\n", + " [ 12.83858103 -8.3173402 ]\n", + " [ 18.21458055 -8.31961837]\n", + " [ 23.59058007 -8.32189653]\n", + " [ 28.96657959 -8.3241747 ]\n", + " [ 2.08886017 -2.93678435]\n", + " [ 7.46485969 -2.93906252]\n", + " [ 12.8408592 -2.94134068]\n", + " [ 18.21685872 -2.94361885]\n", + " [ 23.59285824 -2.94589701]\n", + " [ 28.96885776 -2.94817518]]\n", + "DEBUG:root:radec2pix: xyfp Shape: (96, 2)\n", + "DEBUG:root:radec2pix: xyfp: [[ -0.172993 31.426621 ]\n", + " [ -0.172993 27.04019243]\n", + " [ -0.172993 22.65376385]\n", + " [ -0.172993 18.26733528]\n", + " [ -0.172993 13.88090671]\n", + " [ -0.172993 9.49447814]\n", + " [ -0.172993 5.10804957]\n", + " [ -0.172993 0.721621 ]\n", + " [ -0.172993 31.426621 ]\n", + " [ -4.55942157 31.426621 ]\n", + " [ -8.94585014 31.426621 ]\n", + " [-13.33227871 31.426621 ]\n", + " [-17.71870729 31.426621 ]\n", + " [-22.10513586 31.426621 ]\n", + " [-26.49156443 31.426621 ]\n", + " [-30.877993 31.426621 ]\n", + " [ -0.172993 0.721621 ]\n", + " [ -4.55942157 0.721621 ]\n", + " [ -8.94585014 0.721621 ]\n", + " [-13.33227872 0.721621 ]\n", + " [-17.71870728 0.721621 ]\n", + " [-22.10513586 0.721621 ]\n", + " [-26.49156443 0.721621 ]\n", + " [-30.877993 0.721621 ]\n", + " [-30.877993 31.426621 ]\n", + " [-30.877993 27.04019243]\n", + " [-30.877993 22.65376385]\n", + " [-30.877993 18.26733529]\n", + " [-30.877993 13.88090671]\n", + " [-30.877993 9.49447814]\n", + " [-30.877993 5.10804957]\n", + " [-30.877993 0.721621 ]\n", + " [ -0.187993 29.514121 ]\n", + " [ -0.187993 24.138121 ]\n", + " [ -0.187993 18.76212101]\n", + " [ -0.187993 13.386121 ]\n", + " [ -0.187993 8.010121 ]\n", + " [ -0.187993 2.634121 ]\n", + " [ -2.085493 31.411621 ]\n", + " [ -7.461493 31.411621 ]\n", + " [-12.837493 31.411621 ]\n", + " [-18.213493 31.411621 ]\n", + " [-23.589493 31.411621 ]\n", + " [-28.965493 31.411621 ]\n", + " [ -2.085493 0.736621 ]\n", + " [ -7.461493 0.736621 ]\n", + " [-12.837493 0.736621 ]\n", + " [-18.213493 0.736621 ]\n", + " [-23.58949299 0.736621 ]\n", + " [-28.965493 0.736621 ]\n", + " [-30.862993 29.514121 ]\n", + " [-30.862993 24.138121 ]\n", + " [-30.862993 18.762121 ]\n", + " [-30.862993 13.386121 ]\n", + " [-30.862993 8.010121 ]\n", + " [-30.862993 2.634121 ]\n", + " [ -0.187993 31.411621 ]\n", + " [ -0.187993 31.411621 ]\n", + " [-30.862993 0.736621 ]\n", + " [-30.862993 0.736621 ]\n", + " [ -2.085493 29.514121 ]\n", + " [ -7.461493 29.514121 ]\n", + " [-12.837493 29.514121 ]\n", + " [-18.213493 29.514121 ]\n", + " [-23.589493 29.514121 ]\n", + " [-28.965493 29.514121 ]\n", + " [ -2.085493 24.138121 ]\n", + " [ -7.461493 24.138121 ]\n", + " [-12.837493 24.138121 ]\n", + " [-18.213493 24.138121 ]\n", + " [-23.589493 24.138121 ]\n", + " [-28.965493 24.138121 ]\n", + " [ -2.085493 18.762121 ]\n", + " [ -7.461493 18.762121 ]\n", + " [-12.837493 18.762121 ]\n", + " [-18.213493 18.762121 ]\n", + " [-23.589493 18.762121 ]\n", + " [-28.965493 18.762121 ]\n", + " [ -2.085493 13.386121 ]\n", + " [ -7.461493 13.386121 ]\n", + " [-12.837493 13.386121 ]\n", + " [-18.213493 13.386121 ]\n", + " [-23.589493 13.386121 ]\n", + " [-28.965493 13.386121 ]\n", + " [ -2.085493 8.010121 ]\n", + " [ -7.461493 8.010121 ]\n", + " [-12.837493 8.010121 ]\n", + " [-18.213493 8.010121 ]\n", + " [-23.589493 8.010121 ]\n", + " [-28.965493 8.010121 ]\n", + " [ -2.085493 2.634121 ]\n", + " [ -7.461493 2.634121 ]\n", + " [-12.837493 2.634121 ]\n", + " [-18.213493 2.634121 ]\n", + " [-23.589493 2.634121 ]\n", + " [-28.965493 2.634121 ]]\n", + "DEBUG:root:mm_to_pix: fitpx: [[0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]]\n", + "DEBUG:root:mm_to_pix: fitpx.shape: (96, 2)\n", + "DEBUG:root:optics_fp: rtanth: [45.26169529 42.30243097 39.60873368 37.23827886 35.25632641 33.73142753\n", + " 32.72753223 32.29326616 45.26169529 42.24571523 39.48748363 37.04461879\n", + " 34.98324901 33.37413897 32.28498264 31.76930229 32.29326616 27.90939691\n", + " 23.52648174 19.14517593 14.76691204 10.39553425 6.04599739 1.87684519\n", + " 31.76930229 27.38910685 23.01128618 18.63751379 14.2715122 9.92354331\n", + " 5.63550123 1.87684519 43.93110404 40.47519439 37.47457234 35.04637691\n", + " 33.3160059 32.39547369 43.90748877 40.37685013 37.28961296 34.76410785\n", + " 32.92983309 31.90622779 30.38230115 25.01013154 19.64005824 14.27444739\n", + " 8.9213542 3.63648527 29.86008841 24.49335294 19.13182032 13.78156419\n", + " 8.46399587 3.33911555 45.24048285 45.24048285 1.89760875 1.89760875\n", + " 42.55711672 38.90412112 35.68971629 33.042152 31.10650288 30.02079255\n", + " 38.97957981 34.95468636 31.33776168 28.28574318 25.99834571 24.68901465\n", + " 35.85400749 31.43139051 27.35246822 23.7946523 21.02418109 19.38168349\n", + " 33.30787918 28.49275823 23.91782767 19.75070735 16.30708904 14.12638019\n", + " 31.48209857 26.3352423 21.30188242 16.48630206 12.15026205 9.01456223\n", + " 30.50627799 25.16059326 19.83130509 14.53645837 9.33484517 4.55771859]\n", + "DEBUG:root:radec2pix: xyfp: [[-32.29046994 -31.71666141]\n", + " [-32.28860507 -27.33023323]\n", + " [-32.2867402 -22.94380505]\n", + " [-32.28487534 -18.55737688]\n", + " [-32.28301047 -14.1709487 ]\n", + " [-32.2811456 -9.78452053]\n", + " [-32.27928073 -5.39809235]\n", + " [-32.27741587 -1.01166418]\n", + " [-32.29046994 -31.71666141]\n", + " [-27.90404176 -31.71852627]\n", + " [-23.51761359 -31.72039114]\n", + " [-19.13118541 -31.722256 ]\n", + " [-14.74475724 -31.72412087]\n", + " [-10.35832906 -31.72598574]\n", + " [ -5.97190089 -31.72785061]\n", + " [ -1.58547272 -31.72971547]\n", + " [-32.27741587 -1.01166418]\n", + " [-27.8909877 -1.01352905]\n", + " [-23.50455952 -1.01539391]\n", + " [-19.11813134 -1.01725878]\n", + " [-14.73170317 -1.01912365]\n", + " [-10.345275 -1.02098851]\n", + " [ -5.95884682 -1.02285338]\n", + " [ -1.57241864 -1.02471825]\n", + " [ -1.58547272 -31.72971547]\n", + " [ -1.58360785 -27.3432873 ]\n", + " [ -1.58174298 -22.95685912]\n", + " [ -1.57987811 -18.57043094]\n", + " [ -1.57801325 -14.18400278]\n", + " [ -1.57614838 -9.7975746 ]\n", + " [ -1.57428351 -5.41114642]\n", + " [ -1.57241864 -1.02471825]\n", + " [-32.27465685 -29.80416795]\n", + " [-32.27237127 -24.42816844]\n", + " [-32.2700857 -19.05216893]\n", + " [-32.26780012 -13.67616941]\n", + " [-32.26551454 -8.3001699 ]\n", + " [-32.26322896 -2.92417038]\n", + " [-30.37796373 -31.70247449]\n", + " [-25.00196422 -31.70476008]\n", + " [-19.62596471 -31.70704565]\n", + " [-14.24996519 -31.70933123]\n", + " [ -8.87396568 -31.71161681]\n", + " [ -3.49796617 -31.71390239]\n", + " [-30.36492242 -1.02747727]\n", + " [-24.98892291 -1.02976285]\n", + " [-19.61292339 -1.03204842]\n", + " [-14.23692388 -1.034334 ]\n", + " [ -8.86092437 -1.03661958]\n", + " [ -3.48492485 -1.03890516]\n", + " [ -1.59965962 -29.81720927]\n", + " [ -1.59737405 -24.44120975]\n", + " [ -1.59508847 -19.06521024]\n", + " [ -1.59280289 -13.68921073]\n", + " [ -1.59051731 -8.31321121]\n", + " [ -1.58823174 -2.9372117 ]\n", + " [-32.27546357 -31.70166778]\n", + " [-32.27546357 -31.70166778]\n", + " [ -1.58742502 -1.03971187]\n", + " [ -1.58742502 -1.03971187]\n", + " [-30.37715702 -29.80497466]\n", + " [-25.00115751 -29.80726024]\n", + " [-19.625158 -29.80954582]\n", + " [-14.24915848 -29.8118314 ]\n", + " [ -8.87315897 -29.81411698]\n", + " [ -3.49715945 -29.81640256]\n", + " [-30.37487145 -24.42897515]\n", + " [-24.99887193 -24.43126073]\n", + " [-19.62287241 -24.43354631]\n", + " [-14.2468729 -24.43583188]\n", + " [ -8.87087339 -24.43811746]\n", + " [ -3.49487388 -24.44040305]\n", + " [-30.37258587 -19.05297564]\n", + " [-24.99658635 -19.05526122]\n", + " [-19.62058684 -19.05754679]\n", + " [-14.24458732 -19.05983237]\n", + " [ -8.86858781 -19.06211795]\n", + " [ -3.4925883 -19.06440353]\n", + " [-30.37030029 -13.67697612]\n", + " [-24.99430077 -13.6792617 ]\n", + " [-19.61830126 -13.68154728]\n", + " [-14.24230175 -13.68383286]\n", + " [ -8.86630223 -13.68611844]\n", + " [ -3.49030272 -13.68840401]\n", + " [-30.36801471 -8.30097661]\n", + " [-24.9920152 -8.30326219]\n", + " [-19.61601568 -8.30554776]\n", + " [-14.24001617 -8.30783335]\n", + " [ -8.86401666 -8.31011893]\n", + " [ -3.48801714 -8.3124045 ]\n", + " [-30.36572914 -2.9249771 ]\n", + " [-24.98972962 -2.92726267]\n", + " [-19.6137301 -2.92954825]\n", + " [-14.23773059 -2.93183383]\n", + " [ -8.86173108 -2.93411941]\n", + " [ -3.48573156 -2.93640499]]\n", + "DEBUG:root:radec2pix: xyfp Shape: (96, 2)\n", + "DEBUG:root:optics_fp: cphi: [0.71341716 0.76328013 0.81514194 0.86698087 0.91566575 0.95700502\n", + " 0.98630354 0.99950918 0.71341716 0.66051768 0.59557134 0.51643629\n", + " 0.4214805 0.31036993 0.18497457 0.04990581 0.99950918 0.99934039\n", + " 0.99906819 0.99858739 0.99761569 0.9951653 0.98558541 0.8377988\n", + " 0.04990581 0.05781889 0.0687377 0.08476872 0.11057085 0.15882919\n", + " 0.27935111 0.8377988 0.73466528 0.79733703 0.86111952 0.92071715\n", + " 0.96846887 0.9959178 0.69186293 0.61921532 0.52631184 0.40990453\n", + " 0.26948104 0.10963271 0.999428 0.999152 0.99861839 0.99737128\n", + " 0.99322638 0.95832228 0.05357183 0.06521663 0.08337359 0.1155749\n", + " 0.18791565 0.47564444 0.71341996 0.71341996 0.83653968 0.83653968\n", + " 0.71379735 0.6426352 0.54988271 0.43124184 0.28525093 0.11649124\n", + " 0.77925087 0.71517941 0.62617339 0.50367681 0.34120915 0.14155583\n", + " 0.8471183 0.79527459 0.71732418 0.59864658 0.42182798 0.18020046\n", + " 0.91180529 0.87721591 0.82023759 0.72110338 0.54370846 0.24707693\n", + " 0.96461215 0.94899507 0.92085832 0.86374835 0.72953296 0.3869314\n", + " 0.99539279 0.99320908 0.98902871 0.97944976 0.94931741 0.76479745]\n", + "DEBUG:root:optics_fp: sphi: [0.70073958 0.64606768 0.57926126 0.49834142 0.40194059 0.29007134\n", + " 0.1649404 0.0313274 0.70073958 0.75081049 0.80330242 0.85632562\n", + " 0.90683747 0.95061586 0.98274331 0.99875393 0.0313274 0.03631497\n", + " 0.04315962 0.05313395 0.069014 0.09821415 0.1691786 0.5459791\n", + " 0.99875393 0.99832709 0.99763477 0.99640065 0.99386824 0.98730608\n", + " 0.96018902 0.5459791 0.67842975 0.60353431 0.50840257 0.39023062\n", + " 0.2491346 0.09026478 0.72202887 0.78522123 0.85029163 0.91212843\n", + " 0.9630057 0.99397217 0.03381828 0.04117383 0.05254813 0.07246053\n", + " 0.11619532 0.28568936 0.998564 0.99787113 0.99651836 0.99329877\n", + " 0.98218517 0.87963764 0.70073672 0.70073672 0.54790634 0.54790634\n", + " 0.7003523 0.76617231 0.83524188 0.90223637 0.95845287 0.99319172\n", + " 0.62671212 0.69894092 0.77968384 0.86389216 0.9399874 0.98993027\n", + " 0.53140435 0.60624939 0.69673956 0.80101328 0.90667588 0.98362991\n", + " 0.41062285 0.48009609 0.57202299 0.69282748 0.83927416 0.96899587\n", + " 0.26367291 0.3152909 0.38989736 0.5039234 0.68394565 0.92210851\n", + " 0.09588115 0.11634315 0.14772342 0.20168832 0.31431902 0.6442708 ]\n", + "DEBUG:root:optics_fp: rtanth: [44.94272969 42.00239064 39.33235561 36.99120283 35.04490673 33.56223174\n", + " 32.60648436 32.22458311 44.94272969 41.90992612 39.13459306 36.67522804\n", + " 34.59927513 32.97921831 31.88462562 31.37054947 32.22458311 27.83912196\n", + " 23.45402264 19.06953475 14.68620592 10.30551524 5.93330899 1.63895634\n", + " 31.37054947 26.99005818 22.61186898 18.23763988 13.87111779 9.5229103\n", + " 5.23882082 1.63895634 43.61980801 40.19015843 37.22381993 34.83933779\n", + " 33.16246218 32.30357703 43.58131788 40.02977818 36.92204987 34.37870189\n", + " 32.5323727 31.50584319 30.31278547 24.93826049 19.56454604 14.19256282\n", + " 8.82547273 3.48595044 29.4611953 24.09404931 18.73198196 13.38109994\n", + " 8.0637011 2.9657153 44.92151855 44.92151855 1.65858428 1.65858428\n", + " 42.23832489 38.56329813 35.32679703 32.65945447 30.7099348 29.62031359\n", + " 38.68639649 34.63652908 30.99264061 27.91417471 25.60588368 24.28835443\n", + " 35.59496044 31.14567519 27.03530484 23.44280455 20.64037826 18.98125646\n", + " 33.09332103 28.25278341 23.64475409 19.43532283 15.94339684 13.72788346\n", + " 31.32311186 26.15701072 21.09606209 16.23887967 11.83897557 8.62694755\n", + " 30.41232527 25.05915804 19.71841847 14.40393713 9.16152467 4.26572571]\n", + "DEBUG:root:radec2pix: xyfp: [[ 0.16415906 -31.72847131]\n", + " [ 0.16601788 -27.34204313]\n", + " [ 0.1678767 -22.95561497]\n", + " [ 0.16973552 -18.56918678]\n", + " [ 0.17159434 -14.1827586 ]\n", + " [ 0.17345315 -9.79633043]\n", + " [ 0.17531197 -5.40990225]\n", + " [ 0.17717079 -1.02347407]\n", + " [ 0.16415906 -31.72847131]\n", + " [ 4.55058724 -31.73033014]\n", + " [ 8.93701541 -31.73218895]\n", + " [ 13.32344359 -31.73404778]\n", + " [ 17.70987177 -31.73590659]\n", + " [ 22.09629995 -31.73776541]\n", + " [ 26.48272812 -31.73962422]\n", + " [ 30.8691563 -31.74148305]\n", + " [ 0.17717079 -1.02347407]\n", + " [ 4.56359897 -1.02533289]\n", + " [ 8.95002714 -1.02719171]\n", + " [ 13.33645532 -1.02905053]\n", + " [ 17.7228835 -1.03090935]\n", + " [ 22.10931168 -1.03276817]\n", + " [ 26.49573986 -1.03462699]\n", + " [ 30.88216803 -1.0364858 ]\n", + " [ 30.8691563 -31.74148305]\n", + " [ 30.87101512 -27.35505487]\n", + " [ 30.87287394 -22.96862669]\n", + " [ 30.87473276 -18.58219851]\n", + " [ 30.87659158 -14.19577034]\n", + " [ 30.8784504 -9.80934216]\n", + " [ 30.88030922 -5.42291398]\n", + " [ 30.88216803 -1.0364858 ]\n", + " [ 0.17996951 -29.81597784]\n", + " [ 0.18224768 -24.43997833]\n", + " [ 0.18452584 -19.06397881]\n", + " [ 0.18680401 -13.6879793 ]\n", + " [ 0.18908217 -8.31197977]\n", + " [ 0.19136034 -2.93598025]\n", + " [ 2.07666524 -31.71428177]\n", + " [ 7.45266476 -31.71655993]\n", + " [ 12.82866428 -31.7188381 ]\n", + " [ 18.2046638 -31.72111627]\n", + " [ 23.58066331 -31.72339443]\n", + " [ 28.95666283 -31.7256726 ]\n", + " [ 2.08966426 -1.03928452]\n", + " [ 7.46566378 -1.04156269]\n", + " [ 12.8416633 -1.04384085]\n", + " [ 18.21766282 -1.04611902]\n", + " [ 23.59366233 -1.04839718]\n", + " [ 28.96966185 -1.05067535]\n", + " [ 30.85496675 -29.82897686]\n", + " [ 30.85724492 -24.45297735]\n", + " [ 30.85952308 -19.07697783]\n", + " [ 30.86180126 -13.70097831]\n", + " [ 30.86407941 -8.32497879]\n", + " [ 30.86635759 -2.94897928]\n", + " [ 0.17916541 -31.71347767]\n", + " [ 0.17916541 -31.71347767]\n", + " [ 30.86716168 -1.05147945]\n", + " [ 30.86716168 -1.05147945]\n", + " [ 2.07746934 -29.81678193]\n", + " [ 7.45346886 -29.8190601 ]\n", + " [ 12.82946837 -29.82133827]\n", + " [ 18.20546789 -29.82361643]\n", + " [ 23.58146741 -29.82589461]\n", + " [ 28.95746693 -29.82817277]\n", + " [ 2.07974751 -24.44078242]\n", + " [ 7.45574702 -24.44306058]\n", + " [ 12.83174654 -24.44533875]\n", + " [ 18.20774606 -24.44761692]\n", + " [ 23.58374558 -24.44989508]\n", + " [ 28.95974509 -24.45217325]\n", + " [ 2.08202567 -19.0647829 ]\n", + " [ 7.45802519 -19.06706107]\n", + " [ 12.83402471 -19.06933924]\n", + " [ 18.21002422 -19.0716174 ]\n", + " [ 23.58602374 -19.07389557]\n", + " [ 28.96202325 -19.07617373]\n", + " [ 2.08430384 -13.68878339]\n", + " [ 7.46030335 -13.69106155]\n", + " [ 12.83630287 -13.69333972]\n", + " [ 18.21230239 -13.69561789]\n", + " [ 23.58830191 -13.69789605]\n", + " [ 28.96430143 -13.70017422]\n", + " [ 2.086582 -8.31278387]\n", + " [ 7.46258152 -8.31506203]\n", + " [ 12.83858103 -8.3173402 ]\n", + " [ 18.21458055 -8.31961837]\n", + " [ 23.59058007 -8.32189653]\n", + " [ 28.96657959 -8.3241747 ]\n", + " [ 2.08886017 -2.93678435]\n", + " [ 7.46485969 -2.93906252]\n", + " [ 12.8408592 -2.94134068]\n", + " [ 18.21685872 -2.94361885]\n", + " [ 23.59285824 -2.94589701]\n", + " [ 28.96885776 -2.94817518]]\n", + "DEBUG:root:mm_to_pix: fitpx: [[0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]]\n", + "DEBUG:root:mm_to_pix: fitpx.shape: (96, 2)\n", + "DEBUG:root:optics_fp: cphi: [-0.7172644 -0.76741791 -0.81945139 -0.87124824 -0.91956549 -0.96011654\n", + " -0.98818444 -0.99982014 -0.7172644 -0.66450587 -0.59954537 -0.52014772\n", + " -0.4245785 -0.31242949 -0.18558325 -0.04879815 -0.99982014 -0.99975708\n", + " -0.99965502 -0.99947397 -0.99910595 -0.99816919 -0.99442317 -0.92363168\n", + " -0.04879815 -0.05662794 -0.06748483 -0.0835374 -0.10965891 -0.1594742\n", + " -0.28942109 -0.92363168 -0.73864972 -0.80160861 -0.86540808 -0.92455295\n", + " -0.97121348 -0.99694372 -0.69578694 -0.62321886 -0.53007115 -0.41291013\n", + " -0.27109351 -0.10929135 -0.99978591 -0.99968066 -0.99947617 -0.99899494\n", + " -0.99737425 -0.98288834 -0.05243384 -0.06399014 -0.08214824 -0.11477511\n", + " -0.19009076 -0.51584618 -0.71726898 -0.71726898 -0.92175016 -0.92175016\n", + " -0.71788499 -0.64689125 -0.55397779 -0.43461417 -0.2871469 -0.11621293\n", + " -0.78371934 -0.72014369 -0.63135242 -0.50838973 -0.34426777 -0.14160207\n", + " -0.85170189 -0.80076273 -0.72365733 -0.60523038 -0.42694461 -0.18103644\n", + " -0.91599489 -0.8826498 -0.8273004 -0.72987289 -0.55253697 -0.25009805\n", + " -0.96766665 -0.95325615 -0.92710821 -0.87335662 -0.74384256 -0.39763019\n", + " -0.99654822 -0.99489972 -0.99173015 -0.984408 -0.96090466 -0.80346296]\n", + "DEBUG:root:radec2pix: curVec: [[-0.18958724 0.54919447 -0.81390547]\n", + " [-0.21595747 0.54740242 -0.80852517]\n", + " [-0.24272936 0.54502905 -0.80251217]\n", + " [-0.26977541 0.54207571 -0.7958487 ]\n", + " [-0.29697364 0.53854591 -0.78852708]\n", + " [-0.3242063 0.53444599 -0.78054966]\n", + " [-0.35135914 0.52978584 -0.77192857]\n", + " [-0.37832124 0.52457952 -0.76268563]\n", + " [-0.18958724 0.54919447 -0.81390547]\n", + " [-0.1883254 0.52682913 -0.82884535]\n", + " [-0.18705047 0.50356412 -0.84346624]\n", + " [-0.18574266 0.47948129 -0.85766972]\n", + " [-0.18438805 0.45466471 -0.87136734]\n", + " [-0.18297791 0.42920192 -0.88447996]\n", + " [-0.18150808 0.40318475 -0.8969375 ]\n", + " [-0.17997834 0.37670971 -0.90867904]\n", + " [-0.37832124 0.52457952 -0.76268563]\n", + " [-0.3789048 0.50121845 -0.77795322]\n", + " [-0.37919928 0.47697519 -0.79290767]\n", + " [-0.37918616 0.45192447 -0.8074541 ]\n", + " [-0.37885091 0.42614622 -0.82150556]\n", + " [-0.37818307 0.399727 -0.83498257]\n", + " [-0.37717645 0.37276046 -0.8478134 ]\n", + " [-0.37582927 0.34534697 -0.85993478]\n", + " [-0.17997834 0.37670971 -0.90867904]\n", + " [-0.20740965 0.37333758 -0.90421253]\n", + " [-0.23522144 0.36959117 -0.89892894]\n", + " [-0.26329364 0.36546945 -0.89280935]\n", + " [-0.29150787 0.36097513 -0.8858443 ]\n", + " [-0.31974638 0.35611507 -0.87803434]\n", + " [-0.34789207 0.35090047 -0.86939057]\n", + " [-0.37582927 0.34534697 -0.85993478]\n", + " [-0.20102308 0.54840942 -0.81168764]\n", + " [-0.2336303 0.54582116 -0.80467145]\n", + " [-0.26671344 0.54236098 -0.79668595]\n", + " [-0.3000457 0.53803443 -0.78771285]\n", + " [-0.33341027 0.53285324 -0.7777564 ]\n", + " [-0.36659816 0.52683736 -0.766843 ]\n", + " [-0.18912696 0.53955341 -0.82043471]\n", + " [-0.18757563 0.51152614 -0.83854421]\n", + " [-0.18598409 0.48222865 -0.85607561]\n", + " [-0.18432428 0.45181473 -0.87286196]\n", + " [-0.18258011 0.42044562 -0.88875755]\n", + " [-0.18074554 0.38829233 -0.90363716]\n", + " [-0.37851774 0.5145259 -0.76940718]\n", + " [-0.37904016 0.48529228 -0.78792129]\n", + " [-0.3791097 0.45480731 -0.80586981]\n", + " [-0.37869796 0.42321589 -0.8230894 ]\n", + " [-0.37778573 0.39067743 -0.83943379]\n", + " [-0.37636343 0.35736716 -0.8547744 ]\n", + " [-0.19188921 0.37537683 -0.90679147]\n", + " [-0.22578023 0.37099345 -0.90077031]\n", + " [-0.26012313 0.36604631 -0.89350213]\n", + " [-0.2946994 0.36053883 -0.88496555]\n", + " [-0.32929228 0.35448362 -0.87516168]\n", + " [-0.3636867 0.34790316 -0.86411537]\n", + " [-0.18967226 0.54911447 -0.81393964]\n", + " [-0.18967226 0.54911447 -0.81393964]\n", + " [-0.37573941 0.3454609 -0.85992829]\n", + " [-0.37573941 0.3454609 -0.85992829]\n", + " [-0.20053412 0.53880533 -0.81821444]\n", + " [-0.19912171 0.51065665 -0.83640919]\n", + " [-0.19763922 0.48123735 -0.85401953]\n", + " [-0.19605948 0.45070008 -0.87087894]\n", + " [-0.19436704 0.41920547 -0.88684171]\n", + " [-0.19255629 0.38692459 -0.90178237]\n", + " [-0.23329642 0.53610766 -0.81127144]\n", + " [-0.23226737 0.50765061 -0.82966423]\n", + " [-0.23108732 0.47792214 -0.84746037]\n", + " [-0.229731 0.44707189 -0.8644943 ]\n", + " [-0.22818411 0.4152593 -0.88062008]\n", + " [-0.22644161 0.38265586 -0.89571128]\n", + " [-0.26652909 0.53255578 -0.80333466]\n", + " [-0.26587158 0.50384095 -0.82186167]\n", + " [-0.26498723 0.47385488 -0.83978766]\n", + " [-0.26385149 0.44274492 -0.85694768]\n", + " [-0.2624501 0.41066988 -0.8731954 ]\n", + " [-0.26077777 0.37780212 -0.88840335]\n", + " [-0.30000645 0.52815428 -0.79438604]\n", + " [-0.2997114 0.49922998 -0.8129837 ]\n", + " [-0.29911797 0.4690366 -0.83098322]\n", + " [-0.29820123 0.43771992 -0.84822008]\n", + " [-0.29694603 0.40543865 -0.8645476 ]\n", + " [-0.29534617 0.3723662 -0.87983751]\n", + " [-0.33351208 0.52291416 -0.78443003]\n", + " [-0.33357105 0.49382721 -0.8030349 ]\n", + " [-0.33326376 0.46347622 -0.82105119]\n", + " [-0.3325641 0.43200619 -0.83831484]\n", + " [-0.33145537 0.39957602 -0.85467909]\n", + " [-0.32993007 0.36636009 -0.87001519]\n", + " [-0.36683678 0.51685493 -0.77349322]\n", + " [-0.36724025 0.48765145 -0.79204208]\n", + " [-0.36721289 0.45719261 -0.81001828]\n", + " [-0.36672692 0.42562323 -0.82725826]\n", + " [-0.36576379 0.39310259 -0.84361556]\n", + " [-0.36431449 0.35980575 -0.85896145]]\n", + "DEBUG:root:radec2pix: curVec Shape: (96, 3)\n", + "DEBUG:root:optics_fp: sphi: [-0.69680111 -0.64114722 -0.57314869 -0.49084265 -0.39293677 -0.27960013\n", + " -0.15326941 -0.01896529 -0.69680111 -0.74728304 -0.80034077 -0.85407631\n", + " -0.90539113 -0.94994095 -0.98262854 -0.99880866 -0.01896529 -0.02204027\n", + " -0.02626479 -0.03243122 -0.04227651 -0.06048361 -0.10546358 -0.38328124\n", + " -0.99880866 -0.99839535 -0.9977203 -0.99650464 -0.99396928 -0.9872021\n", + " -0.95720188 -0.38328124 -0.67408945 -0.59784918 -0.50106771 -0.3810536\n", + " -0.23821077 -0.07812313 -0.71824824 -0.78204748 -0.84795317 -0.91077177\n", + " -0.96255302 -0.99400976 -0.02069125 -0.02527007 -0.03236333 -0.04482319\n", + " -0.07241971 -0.18420237 -0.9986244 -0.99795053 -0.99662012 -0.9933915\n", + " -0.98176652 -0.85668122 -0.6967964 -0.6967964 -0.38778427 -0.38778427\n", + " -0.69616172 -0.76258227 -0.83253145 -0.90061674 -0.95788656 -0.99322432\n", + " -0.62111512 -0.69382495 -0.77549605 -0.8611271 -0.93887151 -0.98992366\n", + " -0.52402662 -0.59898168 -0.69015945 -0.79605037 -0.90427778 -0.98347639\n", + " -0.40118994 -0.4700312 -0.56175978 -0.68358289 -0.83348839 -0.96822051\n", + " -0.25223255 -0.30216337 -0.37479377 -0.48708132 -0.66835488 -0.91754577\n", + " -0.08301599 -0.10086897 -0.12834059 -0.17590022 -0.27687945 -0.59535474]\n", + "DEBUG:root:optics_fp: xyfp: [[-32.29046994 -31.71666141]\n", + " [-32.28860507 -27.33023323]\n", + " [-32.2867402 -22.94380505]\n", + " [-32.28487534 -18.55737688]\n", + " [-32.28301047 -14.1709487 ]\n", + " [-32.2811456 -9.78452053]\n", + " [-32.27928073 -5.39809235]\n", + " [-32.27741587 -1.01166418]\n", + " [-32.29046994 -31.71666141]\n", + " [-27.90404176 -31.71852627]\n", + " [-23.51761359 -31.72039114]\n", + " [-19.13118541 -31.722256 ]\n", + " [-14.74475724 -31.72412087]\n", + " [-10.35832906 -31.72598574]\n", + " [ -5.97190089 -31.72785061]\n", + " [ -1.58547272 -31.72971547]\n", + " [-32.27741587 -1.01166418]\n", + " [-27.8909877 -1.01352905]\n", + " [-23.50455952 -1.01539391]\n", + " [-19.11813134 -1.01725878]\n", + " [-14.73170317 -1.01912365]\n", + " [-10.345275 -1.02098851]\n", + " [ -5.95884682 -1.02285338]\n", + " [ -1.57241864 -1.02471825]\n", + " [ -1.58547272 -31.72971547]\n", + " [ -1.58360785 -27.3432873 ]\n", + " [ -1.58174298 -22.95685912]\n", + " [ -1.57987811 -18.57043094]\n", + " [ -1.57801325 -14.18400278]\n", + " [ -1.57614838 -9.7975746 ]\n", + " [ -1.57428351 -5.41114642]\n", + " [ -1.57241864 -1.02471825]\n", + " [-32.27465685 -29.80416795]\n", + " [-32.27237127 -24.42816844]\n", + " [-32.2700857 -19.05216893]\n", + " [-32.26780012 -13.67616941]\n", + " [-32.26551454 -8.3001699 ]\n", + " [-32.26322896 -2.92417038]\n", + " [-30.37796373 -31.70247449]\n", + " [-25.00196422 -31.70476008]\n", + " [-19.62596471 -31.70704565]\n", + " [-14.24996519 -31.70933123]\n", + " [ -8.87396568 -31.71161681]\n", + " [ -3.49796617 -31.71390239]\n", + " [-30.36492242 -1.02747727]\n", + " [-24.98892291 -1.02976285]\n", + " [-19.61292339 -1.03204842]\n", + " [-14.23692388 -1.034334 ]\n", + " [ -8.86092437 -1.03661958]\n", + " [ -3.48492485 -1.03890516]\n", + " [ -1.59965962 -29.81720927]\n", + " [ -1.59737405 -24.44120975]\n", + " [ -1.59508847 -19.06521024]\n", + " [ -1.59280289 -13.68921073]\n", + " [ -1.59051731 -8.31321121]\n", + " [ -1.58823174 -2.9372117 ]\n", + " [-32.27546357 -31.70166778]\n", + " [-32.27546357 -31.70166778]\n", + " [ -1.58742502 -1.03971187]\n", + " [ -1.58742502 -1.03971187]\n", + " [-30.37715702 -29.80497466]\n", + " [-25.00115751 -29.80726024]\n", + " [-19.625158 -29.80954582]\n", + " [-14.24915848 -29.8118314 ]\n", + " [ -8.87315897 -29.81411698]\n", + " [ -3.49715945 -29.81640256]\n", + " [-30.37487145 -24.42897515]\n", + " [-24.99887193 -24.43126073]\n", + " [-19.62287241 -24.43354631]\n", + " [-14.2468729 -24.43583188]\n", + " [ -8.87087339 -24.43811746]\n", + " [ -3.49487388 -24.44040305]\n", + " [-30.37258587 -19.05297564]\n", + " [-24.99658635 -19.05526122]\n", + " [-19.62058684 -19.05754679]\n", + " [-14.24458732 -19.05983237]\n", + " [ -8.86858781 -19.06211795]\n", + " [ -3.4925883 -19.06440353]\n", + " [-30.37030029 -13.67697612]\n", + " [-24.99430077 -13.6792617 ]\n", + " [-19.61830126 -13.68154728]\n", + " [-14.24230175 -13.68383286]\n", + " [ -8.86630223 -13.68611844]\n", + " [ -3.49030272 -13.68840401]\n", + " [-30.36801471 -8.30097661]\n", + " [-24.9920152 -8.30326219]\n", + " [-19.61601568 -8.30554776]\n", + " [-14.24001617 -8.30783335]\n", + " [ -8.86401666 -8.31011893]\n", + " [ -3.48801714 -8.3124045 ]\n", + " [-30.36572914 -2.9249771 ]\n", + " [-24.98972962 -2.92726267]\n", + " [-19.6137301 -2.92954825]\n", + " [-14.23773059 -2.93183383]\n", + " [ -8.86173108 -2.93411941]\n", + " [ -3.48573156 -2.93640499]]\n", + "DEBUG:root:optics_fp: xyfp shape: (96, 2)\n", + "DEBUG:root:radec2pix: ccdpx: [[-4.45000000e+01 -4.99999951e-01]\n", + " [-4.45000000e+01 2.91928572e+02]\n", + " [-4.45000000e+01 5.84357142e+02]\n", + " [-4.45000000e+01 8.76785714e+02]\n", + " [-4.45000000e+01 1.16921429e+03]\n", + " [-4.45000000e+01 1.46164286e+03]\n", + " [-4.45000000e+01 1.75407143e+03]\n", + " [-4.45000000e+01 2.04650000e+03]\n", + " [-4.45000000e+01 -4.99999951e-01]\n", + " [ 2.47928571e+02 -5.00000176e-01]\n", + " [ 5.40357143e+02 -5.00000069e-01]\n", + " [ 8.32785714e+02 -5.00000257e-01]\n", + " [ 1.12521429e+03 -4.99999992e-01]\n", + " [ 1.41764286e+03 -5.00000241e-01]\n", + " [ 1.71007143e+03 -4.99999730e-01]\n", + " [ 2.00250000e+03 -5.00000010e-01]\n", + " [-4.45000000e+01 2.04650000e+03]\n", + " [ 2.47928571e+02 2.04650000e+03]\n", + " [ 5.40357143e+02 2.04650000e+03]\n", + " [ 8.32785714e+02 2.04650000e+03]\n", + " [ 1.12521429e+03 2.04650000e+03]\n", + " [ 1.41764286e+03 2.04650000e+03]\n", + " [ 1.71007143e+03 2.04650000e+03]\n", + " [ 2.00250000e+03 2.04650000e+03]\n", + " [ 2.00250000e+03 -5.00000010e-01]\n", + " [ 2.00250000e+03 2.91928572e+02]\n", + " [ 2.00250000e+03 5.84357143e+02]\n", + " [ 2.00250000e+03 8.76785714e+02]\n", + " [ 2.00250000e+03 1.16921429e+03]\n", + " [ 2.00250000e+03 1.46164286e+03]\n", + " [ 2.00250000e+03 1.75407143e+03]\n", + " [ 2.00250000e+03 2.04650000e+03]\n", + " [-4.35000000e+01 1.27000000e+02]\n", + " [-4.35000000e+01 4.85400000e+02]\n", + " [-4.35000000e+01 8.43800000e+02]\n", + " [-4.35000000e+01 1.20220000e+03]\n", + " [-4.35000000e+01 1.56060000e+03]\n", + " [-4.35000000e+01 1.91900000e+03]\n", + " [ 8.30000000e+01 4.99999720e-01]\n", + " [ 4.41400000e+02 4.99999983e-01]\n", + " [ 7.99800000e+02 4.99999771e-01]\n", + " [ 1.15820000e+03 4.99999773e-01]\n", + " [ 1.51660000e+03 5.00000075e-01]\n", + " [ 1.87500000e+03 4.99999913e-01]\n", + " [ 8.29999998e+01 2.04550000e+03]\n", + " [ 4.41400000e+02 2.04550000e+03]\n", + " [ 7.99800000e+02 2.04550000e+03]\n", + " [ 1.15820000e+03 2.04550000e+03]\n", + " [ 1.51660000e+03 2.04550000e+03]\n", + " [ 1.87500000e+03 2.04550000e+03]\n", + " [ 2.00150000e+03 1.27000000e+02]\n", + " [ 2.00150000e+03 4.85400000e+02]\n", + " [ 2.00150000e+03 8.43800000e+02]\n", + " [ 2.00150000e+03 1.20220000e+03]\n", + " [ 2.00150000e+03 1.56060000e+03]\n", + " [ 2.00150000e+03 1.91900000e+03]\n", + " [-4.35000000e+01 4.99999930e-01]\n", + " [-4.35000000e+01 4.99999930e-01]\n", + " [ 2.00150000e+03 2.04550000e+03]\n", + " [ 2.00150000e+03 2.04550000e+03]\n", + " [ 8.30000000e+01 1.27000000e+02]\n", + " [ 4.41400000e+02 1.27000000e+02]\n", + " [ 7.99800000e+02 1.27000000e+02]\n", + " [ 1.15820000e+03 1.27000000e+02]\n", + " [ 1.51660000e+03 1.27000000e+02]\n", + " [ 1.87500000e+03 1.27000000e+02]\n", + " [ 8.30000000e+01 4.85400000e+02]\n", + " [ 4.41400000e+02 4.85400000e+02]\n", + " [ 7.99800000e+02 4.85400000e+02]\n", + " [ 1.15820000e+03 4.85400000e+02]\n", + " [ 1.51660000e+03 4.85400000e+02]\n", + " [ 1.87500000e+03 4.85400000e+02]\n", + " [ 8.30000000e+01 8.43800000e+02]\n", + " [ 4.41400000e+02 8.43800000e+02]\n", + " [ 7.99800000e+02 8.43800000e+02]\n", + " [ 1.15820000e+03 8.43800000e+02]\n", + " [ 1.51660000e+03 8.43800000e+02]\n", + " [ 1.87500000e+03 8.43800000e+02]\n", + " [ 8.30000000e+01 1.20220000e+03]\n", + " [ 4.41400000e+02 1.20220000e+03]\n", + " [ 7.99800000e+02 1.20220000e+03]\n", + " [ 1.15820000e+03 1.20220000e+03]\n", + " [ 1.51660000e+03 1.20220000e+03]\n", + " [ 1.87500000e+03 1.20220000e+03]\n", + " [ 8.30000000e+01 1.56060000e+03]\n", + " [ 4.41400000e+02 1.56060000e+03]\n", + " [ 7.99800000e+02 1.56060000e+03]\n", + " [ 1.15820000e+03 1.56060000e+03]\n", + " [ 1.51660000e+03 1.56060000e+03]\n", + " [ 1.87500000e+03 1.56060000e+03]\n", + " [ 8.30000000e+01 1.91900000e+03]\n", + " [ 4.41400000e+02 1.91900000e+03]\n", + " [ 7.99800000e+02 1.91900000e+03]\n", + " [ 1.15820000e+03 1.91900000e+03]\n", + " [ 1.51660000e+03 1.91900000e+03]\n", + " [ 1.87500000e+03 1.91900000e+03]]\n", + "DEBUG:root:radec2pix: xyfp: [[-32.29046994 -31.71666141]\n", + " [-32.28860507 -27.33023323]\n", + " [-32.2867402 -22.94380505]\n", + " [-32.28487534 -18.55737688]\n", + " [-32.28301047 -14.1709487 ]\n", + " [-32.2811456 -9.78452053]\n", + " [-32.27928073 -5.39809235]\n", + " [-32.27741587 -1.01166418]\n", + " [-32.29046994 -31.71666141]\n", + " [-27.90404176 -31.71852627]\n", + " [-23.51761359 -31.72039114]\n", + " [-19.13118541 -31.722256 ]\n", + " [-14.74475724 -31.72412087]\n", + " [-10.35832906 -31.72598574]\n", + " [ -5.97190089 -31.72785061]\n", + " [ -1.58547272 -31.72971547]\n", + " [-32.27741587 -1.01166418]\n", + " [-27.8909877 -1.01352905]\n", + " [-23.50455952 -1.01539391]\n", + " [-19.11813134 -1.01725878]\n", + " [-14.73170317 -1.01912365]\n", + " [-10.345275 -1.02098851]\n", + " [ -5.95884682 -1.02285338]\n", + " [ -1.57241864 -1.02471825]\n", + " [ -1.58547272 -31.72971547]\n", + " [ -1.58360785 -27.3432873 ]\n", + " [ -1.58174298 -22.95685912]\n", + " [ -1.57987811 -18.57043094]\n", + " [ -1.57801325 -14.18400278]\n", + " [ -1.57614838 -9.7975746 ]\n", + " [ -1.57428351 -5.41114642]\n", + " [ -1.57241864 -1.02471825]\n", + " [-32.27465685 -29.80416795]\n", + " [-32.27237127 -24.42816844]\n", + " [-32.2700857 -19.05216893]\n", + " [-32.26780012 -13.67616941]\n", + " [-32.26551454 -8.3001699 ]\n", + " [-32.26322896 -2.92417038]\n", + " [-30.37796373 -31.70247449]\n", + " [-25.00196422 -31.70476008]\n", + " [-19.62596471 -31.70704565]\n", + " [-14.24996519 -31.70933123]\n", + " [ -8.87396568 -31.71161681]\n", + " [ -3.49796617 -31.71390239]\n", + " [-30.36492242 -1.02747727]\n", + " [-24.98892291 -1.02976285]\n", + " [-19.61292339 -1.03204842]\n", + " [-14.23692388 -1.034334 ]\n", + " [ -8.86092437 -1.03661958]\n", + " [ -3.48492485 -1.03890516]\n", + " [ -1.59965962 -29.81720927]\n", + " [ -1.59737405 -24.44120975]\n", + " [ -1.59508847 -19.06521024]\n", + " [ -1.59280289 -13.68921073]\n", + " [ -1.59051731 -8.31321121]\n", + " [ -1.58823174 -2.9372117 ]\n", + " [-32.27546357 -31.70166778]\n", + " [-32.27546357 -31.70166778]\n", + " [ -1.58742502 -1.03971187]\n", + " [ -1.58742502 -1.03971187]\n", + " [-30.37715702 -29.80497466]\n", + " [-25.00115751 -29.80726024]\n", + " [-19.625158 -29.80954582]\n", + " [-14.24915848 -29.8118314 ]\n", + " [ -8.87315897 -29.81411698]\n", + " [ -3.49715945 -29.81640256]\n", + " [-30.37487145 -24.42897515]\n", + " [-24.99887193 -24.43126073]\n", + " [-19.62287241 -24.43354631]\n", + " [-14.2468729 -24.43583188]\n", + " [ -8.87087339 -24.43811746]\n", + " [ -3.49487388 -24.44040305]\n", + " [-30.37258587 -19.05297564]\n", + " [-24.99658635 -19.05526122]\n", + " [-19.62058684 -19.05754679]\n", + " [-14.24458732 -19.05983237]\n", + " [ -8.86858781 -19.06211795]\n", + " [ -3.4925883 -19.06440353]\n", + " [-30.37030029 -13.67697612]\n", + " [-24.99430077 -13.6792617 ]\n", + " [-19.61830126 -13.68154728]\n", + " [-14.24230175 -13.68383286]\n", + " [ -8.86630223 -13.68611844]\n", + " [ -3.49030272 -13.68840401]\n", + " [-30.36801471 -8.30097661]\n", + " [-24.9920152 -8.30326219]\n", + " [-19.61601568 -8.30554776]\n", + " [-14.24001617 -8.30783335]\n", + " [ -8.86401666 -8.31011893]\n", + " [ -3.48801714 -8.3124045 ]\n", + " [-30.36572914 -2.9249771 ]\n", + " [-24.98972962 -2.92726267]\n", + " [-19.6137301 -2.92954825]\n", + " [-14.23773059 -2.93183383]\n", + " [ -8.86173108 -2.93411941]\n", + " [ -3.48573156 -2.93640499]]\n", + "DEBUG:root:radec2pix: curVec: [[ 0.82384806 -0.55250842 -0.12652597]\n", + " [ 0.82109671 -0.56191378 -0.10026516]\n", + " [ 0.81762595 -0.57105158 -0.07340233]\n", + " [ 0.81341401 -0.57986014 -0.04604203]\n", + " [ 0.80844732 -0.58828436 -0.01828771]\n", + " [ 0.80272098 -0.59627498 0.0097559 ]\n", + " [ 0.79623944 -0.60378823 0.03798072]\n", + " [ 0.78901712 -0.61078606 0.06627497]\n", + " [ 0.82384806 -0.55250842 -0.12652597]\n", + " [ 0.83975974 -0.53024408 -0.11681095]\n", + " [ 0.85490743 -0.50763948 -0.10693664]\n", + " [ 0.86924155 -0.4847904 -0.09694017]\n", + " [ 0.88272176 -0.46179863 -0.08685802]\n", + " [ 0.89531702 -0.43877165 -0.07672595]\n", + " [ 0.90700579 -0.41582172 -0.06657918]\n", + " [ 0.91777667 -0.39306365 -0.05645311]\n", + " [ 0.78901712 -0.61078606 0.06627497]\n", + " [ 0.80548265 -0.58770234 0.07618178]\n", + " [ 0.82117096 -0.56416661 0.08599012]\n", + " [ 0.83603039 -0.54027951 0.09566216]\n", + " [ 0.85002076 -0.51614493 0.10516234]\n", + " [ 0.86311271 -0.49186986 0.11445738]\n", + " [ 0.87528638 -0.46756568 0.12351558]\n", + " [ 0.88653009 -0.44335033 0.13230602]\n", + " [ 0.91777667 -0.39306365 -0.05645311]\n", + " [ 0.91575204 -0.40058432 -0.03050255]\n", + " [ 0.91293754 -0.40807936 -0.00403668]\n", + " [ 0.90930979 -0.41549253 0.02283984]\n", + " [ 0.90485513 -0.42277083 0.05002009]\n", + " [ 0.89956907 -0.42986658 0.07739645]\n", + " [ 0.89345616 -0.4367382 0.10486102]\n", + " [ 0.88653009 -0.44335033 0.13230602]\n", + " [ 0.82279105 -0.55656209 -0.11512393]\n", + " [ 0.81893892 -0.56791679 -0.08252016]\n", + " [ 0.81398356 -0.5788077 -0.04911628]\n", + " [ 0.80789661 -0.58913068 -0.01510311]\n", + " [ 0.8006691 -0.59879502 0.01932627]\n", + " [ 0.79231336 -0.60772249 0.05397132]\n", + " [ 0.830868 -0.54288103 -0.12222339]\n", + " [ 0.84986286 -0.51535236 -0.11020461]\n", + " [ 0.86765984 -0.48740701 -0.0979837 ]\n", + " [ 0.88418083 -0.45922988 -0.08562812]\n", + " [ 0.8993687 -0.43101874 -0.07320369]\n", + " [ 0.91318795 -0.40298155 -0.0607753 ]\n", + " [ 0.79631386 -0.60076032 0.07050724]\n", + " [ 0.81597838 -0.57215254 0.08258784]\n", + " [ 0.83442285 -0.54296546 0.0944829 ]\n", + " [ 0.85156852 -0.51338906 0.10612601]\n", + " [ 0.86736118 -0.48362043 0.11745577]\n", + " [ 0.8817677 -0.45386729 0.12841418]\n", + " [ 0.91695376 -0.39642009 -0.04524277]\n", + " [ 0.9139444 -0.40562866 -0.0130775 ]\n", + " [ 0.9097243 -0.41474247 0.01975824]\n", + " [ 0.90426428 -0.42366244 0.05306844]\n", + " [ 0.89755607 -0.43230084 0.08665497]\n", + " [ 0.88961185 -0.44058374 0.12031927]\n", + " [ 0.8238955 -0.55246551 -0.12640441]\n", + " [ 0.8238955 -0.55246551 -0.12640441]\n", + " [ 0.88651828 -0.44341071 0.13218275]\n", + " [ 0.88651828 -0.44341071 0.13218275]\n", + " [ 0.82979066 -0.54693909 -0.11092833]\n", + " [ 0.84885733 -0.51929104 -0.09888401]\n", + " [ 0.86671858 -0.49121151 -0.08666114]\n", + " [ 0.88329628 -0.46288564 -0.07432746]\n", + " [ 0.89853324 -0.43451166 -0.06194865]\n", + " [ 0.91239354 -0.40629913 -0.04958878]\n", + " [ 0.82600679 -0.55819682 -0.07828844]\n", + " [ 0.84525552 -0.53024758 -0.06618624]\n", + " [ 0.86328151 -0.50182868 -0.05397228]\n", + " [ 0.88000675 -0.47312572 -0.04171541]\n", + " [ 0.89537448 -0.44433701 -0.02948153]\n", + " [ 0.90934846 -0.41567407 -0.01733338]\n", + " [ 0.82110707 -0.56900888 -0.04485619]\n", + " [ 0.84050619 -0.54081315 -0.03271827]\n", + " [ 0.85867128 -0.51211515 -0.02053558]\n", + " [ 0.87552449 -0.4831011 -0.00837798]\n", + " [ 0.89101007 -0.45396856 0.00368833]\n", + " [ 0.90509245 -0.42492854 0.01560125]\n", + " [ 0.81506284 -0.57927147 -0.01082267]\n", + " [ 0.83458032 -0.55088467 0.00132744]\n", + " [ 0.852859 -0.52196791 0.0134545 ]\n", + " [ 0.86982107 -0.49270847 0.02548846]\n", + " [ 0.8854118 -0.46330326 0.03736352]\n", + " [ 0.89959677 -0.43396182 0.04901833]\n", + " [ 0.80786471 -0.58889453 0.02361873]\n", + " [ 0.8274677 -0.56037372 0.03575628]\n", + " [ 0.84583443 -0.53129944 0.04780193]\n", + " [ 0.86288686 -0.50186032 0.05968658]\n", + " [ 0.87857093 -0.47225301 0.07134581]\n", + " [ 0.89285317 -0.44268578 0.08271951]\n", + " [ 0.7995245 -0.59780055 0.0582672 ]\n", + " [ 0.81917909 -0.5692048 0.07036703]\n", + " [ 0.83760794 -0.54003585 0.08230567]\n", + " [ 0.85473253 -0.5104834 0.09401591]\n", + " [ 0.87049881 -0.48074439 0.10543551]\n", + " [ 0.8848737 -0.4510265 0.11650592]]\n", + "DEBUG:root:radec2pix: curVec Shape: (96, 3)\n", + "DEBUG:root:radec2pix: camVec: [[0.20581047 0.20764708 0.20921111 0.21050368 0.21152432 0.2122716\n", + " 0.21274377 0.21293946 0.20581047 0.17940008 0.15228099 0.12456525\n", + " 0.09636347 0.06778617 0.03894463 0.00995116 0.21293946 0.18558556\n", + " 0.15752187 0.12885256 0.09968382 0.07012532 0.04029051 0.01029607\n", + " 0.00995116 0.01003858 0.01011374 0.01017639 0.01022623 0.01026295\n", + " 0.01028629 0.01029607 0.20655553 0.20862193 0.21028039 0.21153069\n", + " 0.21237025 0.212796 0.1943962 0.16153559 0.12772204 0.0931597\n", + " 0.05805212 0.02260459 0.2011068 0.16709142 0.1321133 0.09636698\n", + " 0.06005439 0.02338579 0.01009044 0.01019035 0.01027142 0.0103331\n", + " 0.01037483 0.01039617 0.20572824 0.20572824 0.01039877 0.01039877\n", + " 0.19517474 0.1621771 0.12822694 0.09352723 0.05828102 0.02269376\n", + " 0.19712067 0.1637837 0.12949375 0.09445078 0.05885684 0.0229182\n", + " 0.19868404 0.16507817 0.13051704 0.09519827 0.05932353 0.02310025\n", + " 0.19986372 0.16605732 0.13129265 0.09576573 0.05967819 0.02323871\n", + " 0.20065641 0.16671646 0.13181555 0.09614872 0.05991775 0.0233323\n", + " 0.20105858 0.16705125 0.13208139 0.09634357 0.06003972 0.02338002]\n", + " [0.20196806 0.17549093 0.14832034 0.12056829 0.0923455 0.06376263\n", + " 0.0349311 0.00596325 0.20196806 0.20380697 0.20537849 0.20668384\n", + " 0.20772258 0.20849323 0.20899395 0.20922323 0.00596325 0.00601646\n", + " 0.00606233 0.00610071 0.00613144 0.00615431 0.00616917 0.00617591\n", + " 0.20922323 0.18176716 0.15361557 0.12487279 0.09564544 0.0660437\n", + " 0.03618151 0.00617591 0.19052281 0.15759064 0.12372836 0.08914025\n", + " 0.05403012 0.01860347 0.20271324 0.2047859 0.20645854 0.207731\n", + " 0.20860063 0.20906415 0.00608691 0.00614821 0.00619816 0.00623643\n", + " 0.00626269 0.00627666 0.19734414 0.16321317 0.12814101 0.0923229\n", + " 0.05596168 0.01926848 0.20188558 0.20188558 0.00627861 0.00627861\n", + " 0.19130075 0.19325024 0.19482509 0.19602426 0.19684438 0.19728171\n", + " 0.15822879 0.1598311 0.16112922 0.16212009 0.16279899 0.16316141\n", + " 0.12422708 0.12548158 0.12650047 0.12727979 0.12781451 0.12810021\n", + " 0.08949878 0.09040196 0.09113695 0.09169995 0.09208666 0.09229337\n", + " 0.05424725 0.05479478 0.05524091 0.05558298 0.05581806 0.05594375\n", + " 0.01867818 0.01886665 0.0190203 0.01913813 0.01921909 0.01926233]\n", + " [0.95752334 0.96233343 0.96655667 0.97012962 0.9730004 0.97512825\n", + " 0.97648344 0.9770472 0.95752334 0.96243355 0.96676273 0.97044592\n", + " 0.97342972 0.97567188 0.97714116 0.97781727 0.9770472 0.98260969\n", + " 0.98749689 0.991645 0.99500027 0.99751921 0.99916896 0.99992792\n", + " 0.97781727 0.98329036 0.98807893 0.99212057 0.99536294 0.99776395\n", + " 0.99929229 0.99992792 0.95970614 0.96521608 0.9697801 0.97329789\n", + " 0.97569443 0.97691953 0.95974864 0.96538541 0.97008348 0.97373975\n", + " 0.97627646 0.97764064 0.97955041 0.98592224 0.99121524 0.99532633\n", + " 0.99817546 0.99970681 0.98028234 0.9865382 0.99170277 0.9956755\n", + " 0.99837901 0.99976029 0.95755841 0.95755841 0.99992622 0.99992622\n", + " 0.96193079 0.96765331 0.9724202 0.97612865 0.97870098 0.98008414\n", + " 0.96752627 0.97346234 0.97840112 0.98224036 0.98490221 0.98633316\n", + " 0.97215857 0.97826559 0.98334273 0.98728777 0.99002231 0.99149217\n", + " 0.97572766 0.98196357 0.98714553 0.99117105 0.99396105 0.99546064\n", + " 0.9781586 0.98448116 0.98973385 0.99381384 0.99664146 0.99816126\n", + " 0.97940113 0.98576768 0.99105637 0.99516413 0.99801095 0.99954106]]\n", + "DEBUG:root:radec2pix: camVec Shape: (3, 96)\n", + "DEBUG:root:optics_fp: xyfp: [[32.2358199 31.31614388]\n", + " [32.23338667 26.92971599]\n", + " [32.23095344 22.54328809]\n", + " [32.2285202 18.15686019]\n", + " [32.22608698 13.7704323 ]\n", + " [32.22365375 9.3840044 ]\n", + " [32.22122051 4.99757651]\n", + " [32.21878728 0.61114861]\n", + " [32.2358199 31.31614388]\n", + " [27.849392 31.31857712]\n", + " [23.46296411 31.32101035]\n", + " [19.07653621 31.32344358]\n", + " [14.69010831 31.3258768 ]\n", + " [10.30368042 31.32831004]\n", + " [ 5.91725252 31.33074327]\n", + " [ 1.53082462 31.3331765 ]\n", + " [32.21878728 0.61114861]\n", + " [27.83235938 0.61358184]\n", + " [23.44593149 0.61601507]\n", + " [19.0595036 0.6184483 ]\n", + " [14.6730757 0.62088153]\n", + " [10.2866478 0.62331476]\n", + " [ 5.90021991 0.625748 ]\n", + " [ 1.513792 0.62818122]\n", + " [ 1.53082462 31.3331765 ]\n", + " [ 1.52839139 26.94674861]\n", + " [ 1.52595816 22.5603207 ]\n", + " [ 1.52352493 18.17389281]\n", + " [ 1.5210917 13.78746492]\n", + " [ 1.51865847 9.40103702]\n", + " [ 1.51622524 5.01460912]\n", + " [ 1.513792 0.62818122]\n", + " [32.219759 29.4036525 ]\n", + " [32.21677684 24.02765333]\n", + " [32.21379467 18.65165415]\n", + " [32.21081251 13.27565498]\n", + " [32.20783035 7.89965581]\n", + " [32.20484818 2.52365664]\n", + " [30.32331188 31.30220479]\n", + " [24.9473127 31.30518695]\n", + " [19.57131353 31.30816912]\n", + " [14.19531435 31.31115127]\n", + " [ 8.81931518 31.31413344]\n", + " [ 3.44331601 31.3171156 ]\n", + " [30.3062959 0.62720951]\n", + " [24.93029672 0.63019167]\n", + " [19.55429755 0.63317383]\n", + " [14.17829838 0.636156 ]\n", + " [ 8.80229921 0.63913816]\n", + " [ 3.42630004 0.64212033]\n", + " [ 1.54476372 29.42066847]\n", + " [ 1.54178156 24.0446693 ]\n", + " [ 1.53879939 18.66867013]\n", + " [ 1.53581723 13.29267096]\n", + " [ 1.53283507 7.91667178]\n", + " [ 1.5298529 2.54067261]\n", + " [32.22081158 31.30115221]\n", + " [32.22081158 31.30115221]\n", + " [ 1.52880032 0.6431729 ]\n", + " [ 1.52880032 0.6431729 ]\n", + " [30.32225929 29.40470508]\n", + " [24.94626012 29.40768724]\n", + " [19.57026095 29.41066941]\n", + " [14.19426178 29.41365157]\n", + " [ 8.8182626 29.41663373]\n", + " [ 3.44226343 29.4196159 ]\n", + " [30.31927713 24.02870591]\n", + " [24.94327796 24.03168807]\n", + " [19.56727878 24.03467023]\n", + " [14.19127961 24.0376524 ]\n", + " [ 8.81528044 24.04063456]\n", + " [ 3.43928127 24.04361672]\n", + " [30.31629496 18.65270673]\n", + " [24.9402958 18.6556889 ]\n", + " [19.56429662 18.65867106]\n", + " [14.18829744 18.66165322]\n", + " [ 8.81229827 18.66463538]\n", + " [ 3.4362991 18.66761755]\n", + " [30.31331281 13.27670756]\n", + " [24.93731363 13.27968972]\n", + " [19.56131446 13.28267189]\n", + " [14.18531529 13.28565406]\n", + " [ 8.80931611 13.28863621]\n", + " [ 3.43331694 13.29161838]\n", + " [30.31033064 7.90070839]\n", + " [24.93433147 7.90369055]\n", + " [19.55833229 7.90667271]\n", + " [14.18233312 7.90965488]\n", + " [ 8.80633395 7.91263704]\n", + " [ 3.43033477 7.9156192 ]\n", + " [30.30734847 2.52470921]\n", + " [24.9313493 2.52769138]\n", + " [19.55535013 2.53067354]\n", + " [14.17935096 2.53365571]\n", + " [ 8.80335178 2.53663787]\n", + " [ 3.42735261 2.53962004]]\n", + "DEBUG:root:optics_fp: xyfp shape: (96, 2)\n", + "DEBUG:root:make_az_asym: xyp: [[-32.29046994 -31.71666141]\n", + " [-32.28860507 -27.33023323]\n", + " [-32.2867402 -22.94380505]\n", + " [-32.28487534 -18.55737688]\n", + " [-32.28301047 -14.1709487 ]\n", + " [-32.2811456 -9.78452053]\n", + " [-32.27928073 -5.39809235]\n", + " [-32.27741587 -1.01166418]\n", + " [-32.29046994 -31.71666141]\n", + " [-27.90404176 -31.71852627]\n", + " [-23.51761359 -31.72039114]\n", + " [-19.13118541 -31.722256 ]\n", + " [-14.74475724 -31.72412087]\n", + " [-10.35832906 -31.72598574]\n", + " [ -5.97190089 -31.72785061]\n", + " [ -1.58547272 -31.72971547]\n", + " [-32.27741587 -1.01166418]\n", + " [-27.8909877 -1.01352905]\n", + " [-23.50455952 -1.01539391]\n", + " [-19.11813134 -1.01725878]\n", + " [-14.73170317 -1.01912365]\n", + " [-10.345275 -1.02098851]\n", + " [ -5.95884682 -1.02285338]\n", + " [ -1.57241864 -1.02471825]\n", + " [ -1.58547272 -31.72971547]\n", + " [ -1.58360785 -27.3432873 ]\n", + " [ -1.58174298 -22.95685912]\n", + " [ -1.57987811 -18.57043094]\n", + " [ -1.57801325 -14.18400278]\n", + " [ -1.57614838 -9.7975746 ]\n", + " [ -1.57428351 -5.41114642]\n", + " [ -1.57241864 -1.02471825]\n", + " [-32.27465685 -29.80416795]\n", + " [-32.27237127 -24.42816844]\n", + " [-32.2700857 -19.05216893]\n", + " [-32.26780012 -13.67616941]\n", + " [-32.26551454 -8.3001699 ]\n", + " [-32.26322896 -2.92417038]\n", + " [-30.37796373 -31.70247449]\n", + " [-25.00196422 -31.70476008]\n", + " [-19.62596471 -31.70704565]\n", + " [-14.24996519 -31.70933123]\n", + " [ -8.87396568 -31.71161681]\n", + " [ -3.49796617 -31.71390239]\n", + " [-30.36492242 -1.02747727]\n", + " [-24.98892291 -1.02976285]\n", + " [-19.61292339 -1.03204842]\n", + " [-14.23692388 -1.034334 ]\n", + " [ -8.86092437 -1.03661958]\n", + " [ -3.48492485 -1.03890516]\n", + " [ -1.59965962 -29.81720927]\n", + " [ -1.59737405 -24.44120975]\n", + " [ -1.59508847 -19.06521024]\n", + " [ -1.59280289 -13.68921073]\n", + " [ -1.59051731 -8.31321121]\n", + " [ -1.58823174 -2.9372117 ]\n", + " [-32.27546357 -31.70166778]\n", + " [-32.27546357 -31.70166778]\n", + " [ -1.58742502 -1.03971187]\n", + " [ -1.58742502 -1.03971187]\n", + " [-30.37715702 -29.80497466]\n", + " [-25.00115751 -29.80726024]\n", + " [-19.625158 -29.80954582]\n", + " [-14.24915848 -29.8118314 ]\n", + " [ -8.87315897 -29.81411698]\n", + " [ -3.49715945 -29.81640256]\n", + " [-30.37487145 -24.42897515]\n", + " [-24.99887193 -24.43126073]\n", + " [-19.62287241 -24.43354631]\n", + " [-14.2468729 -24.43583188]\n", + " [ -8.87087339 -24.43811746]\n", + " [ -3.49487388 -24.44040305]\n", + " [-30.37258587 -19.05297564]\n", + " [-24.99658635 -19.05526122]\n", + " [-19.62058684 -19.05754679]\n", + " [-14.24458732 -19.05983237]\n", + " [ -8.86858781 -19.06211795]\n", + " [ -3.4925883 -19.06440353]\n", + " [-30.37030029 -13.67697612]\n", + " [-24.99430077 -13.6792617 ]\n", + " [-19.61830126 -13.68154728]\n", + " [-14.24230175 -13.68383286]\n", + " [ -8.86630223 -13.68611844]\n", + " [ -3.49030272 -13.68840401]\n", + " [-30.36801471 -8.30097661]\n", + " [-24.9920152 -8.30326219]\n", + " [-19.61601568 -8.30554776]\n", + " [-14.24001617 -8.30783335]\n", + " [ -8.86401666 -8.31011893]\n", + " [ -3.48801714 -8.3124045 ]\n", + " [-30.36572914 -2.9249771 ]\n", + " [-24.98972962 -2.92726267]\n", + " [-19.6137301 -2.92954825]\n", + " [-14.23773059 -2.93183383]\n", + " [ -8.86173108 -2.93411941]\n", + " [ -3.48573156 -2.93640499]]\n", + "DEBUG:root:make_az_asym: xyp: shape: (96, 2)\n", + "DEBUG:root:radec2pix: fitpx: [[ 2.13550000e+03 -4.99999951e-01]\n", + " [ 2.13550000e+03 2.91928572e+02]\n", + " [ 2.13550000e+03 5.84357142e+02]\n", + " [ 2.13550000e+03 8.76785714e+02]\n", + " [ 2.13550000e+03 1.16921429e+03]\n", + " [ 2.13550000e+03 1.46164286e+03]\n", + " [ 2.13550000e+03 1.75407143e+03]\n", + " [ 2.13550000e+03 2.04650000e+03]\n", + " [ 2.13550000e+03 -4.99999951e-01]\n", + " [ 2.42792857e+03 -5.00000176e-01]\n", + " [ 2.72035714e+03 -5.00000069e-01]\n", + " [ 3.01278571e+03 -5.00000257e-01]\n", + " [ 3.30521429e+03 -4.99999992e-01]\n", + " [ 3.59764286e+03 -5.00000241e-01]\n", + " [ 3.89007143e+03 -4.99999730e-01]\n", + " [ 4.18250000e+03 -5.00000010e-01]\n", + " [ 2.13550000e+03 2.04650000e+03]\n", + " [ 2.42792857e+03 2.04650000e+03]\n", + " [ 2.72035714e+03 2.04650000e+03]\n", + " [ 3.01278571e+03 2.04650000e+03]\n", + " [ 3.30521429e+03 2.04650000e+03]\n", + " [ 3.59764286e+03 2.04650000e+03]\n", + " [ 3.89007143e+03 2.04650000e+03]\n", + " [ 4.18250000e+03 2.04650000e+03]\n", + " [ 4.18250000e+03 -5.00000010e-01]\n", + " [ 4.18250000e+03 2.91928572e+02]\n", + " [ 4.18250000e+03 5.84357143e+02]\n", + " [ 4.18250000e+03 8.76785714e+02]\n", + " [ 4.18250000e+03 1.16921429e+03]\n", + " [ 4.18250000e+03 1.46164286e+03]\n", + " [ 4.18250000e+03 1.75407143e+03]\n", + " [ 4.18250000e+03 2.04650000e+03]\n", + " [ 2.13650000e+03 1.27000000e+02]\n", + " [ 2.13650000e+03 4.85400000e+02]\n", + " [ 2.13650000e+03 8.43800000e+02]\n", + " [ 2.13650000e+03 1.20220000e+03]\n", + " [ 2.13650000e+03 1.56060000e+03]\n", + " [ 2.13650000e+03 1.91900000e+03]\n", + " [ 2.26300000e+03 4.99999720e-01]\n", + " [ 2.62140000e+03 4.99999983e-01]\n", + " [ 2.97980000e+03 4.99999771e-01]\n", + " [ 3.33820000e+03 4.99999773e-01]\n", + " [ 3.69660000e+03 5.00000075e-01]\n", + " [ 4.05500000e+03 4.99999913e-01]\n", + " [ 2.26300000e+03 2.04550000e+03]\n", + " [ 2.62140000e+03 2.04550000e+03]\n", + " [ 2.97980000e+03 2.04550000e+03]\n", + " [ 3.33820000e+03 2.04550000e+03]\n", + " [ 3.69660000e+03 2.04550000e+03]\n", + " [ 4.05500000e+03 2.04550000e+03]\n", + " [ 4.18150000e+03 1.27000000e+02]\n", + " [ 4.18150000e+03 4.85400000e+02]\n", + " [ 4.18150000e+03 8.43800000e+02]\n", + " [ 4.18150000e+03 1.20220000e+03]\n", + " [ 4.18150000e+03 1.56060000e+03]\n", + " [ 4.18150000e+03 1.91900000e+03]\n", + " [ 2.13650000e+03 4.99999930e-01]\n", + " [ 2.13650000e+03 4.99999930e-01]\n", + " [ 4.18150000e+03 2.04550000e+03]\n", + " [ 4.18150000e+03 2.04550000e+03]\n", + " [ 2.26300000e+03 1.27000000e+02]\n", + " [ 2.62140000e+03 1.27000000e+02]\n", + " [ 2.97980000e+03 1.27000000e+02]\n", + " [ 3.33820000e+03 1.27000000e+02]\n", + " [ 3.69660000e+03 1.27000000e+02]\n", + " [ 4.05500000e+03 1.27000000e+02]\n", + " [ 2.26300000e+03 4.85400000e+02]\n", + " [ 2.62140000e+03 4.85400000e+02]\n", + " [ 2.97980000e+03 4.85400000e+02]\n", + " [ 3.33820000e+03 4.85400000e+02]\n", + " [ 3.69660000e+03 4.85400000e+02]\n", + " [ 4.05500000e+03 4.85400000e+02]\n", + " [ 2.26300000e+03 8.43800000e+02]\n", + " [ 2.62140000e+03 8.43800000e+02]\n", + " [ 2.97980000e+03 8.43800000e+02]\n", + " [ 3.33820000e+03 8.43800000e+02]\n", + " [ 3.69660000e+03 8.43800000e+02]\n", + " [ 4.05500000e+03 8.43800000e+02]\n", + " [ 2.26300000e+03 1.20220000e+03]\n", + " [ 2.62140000e+03 1.20220000e+03]\n", + " [ 2.97980000e+03 1.20220000e+03]\n", + " [ 3.33820000e+03 1.20220000e+03]\n", + " [ 3.69660000e+03 1.20220000e+03]\n", + " [ 4.05500000e+03 1.20220000e+03]\n", + " [ 2.26300000e+03 1.56060000e+03]\n", + " [ 2.62140000e+03 1.56060000e+03]\n", + " [ 2.97980000e+03 1.56060000e+03]\n", + " [ 3.33820000e+03 1.56060000e+03]\n", + " [ 3.69660000e+03 1.56060000e+03]\n", + " [ 4.05500000e+03 1.56060000e+03]\n", + " [ 2.26300000e+03 1.91900000e+03]\n", + " [ 2.62140000e+03 1.91900000e+03]\n", + " [ 2.97980000e+03 1.91900000e+03]\n", + " [ 3.33820000e+03 1.91900000e+03]\n", + " [ 3.69660000e+03 1.91900000e+03]\n", + " [ 4.05500000e+03 1.91900000e+03]]\n", + "DEBUG:root:fitpix2pix: ccdpx: shape: (96, 2)\n", + "DEBUG:root:fitpix2pix: visCut: True\n", + "DEBUG:root:radec2pix: ccdpx: [[-4.45000003e+01 -5.00000268e-01]\n", + " [-4.44999998e+01 2.91928572e+02]\n", + " [-4.44999999e+01 5.84357143e+02]\n", + " [-4.45000000e+01 8.76785714e+02]\n", + " [-4.44999998e+01 1.16921429e+03]\n", + " [-4.44999999e+01 1.46164286e+03]\n", + " [-4.44999997e+01 1.75407143e+03]\n", + " [-4.44999999e+01 2.04650000e+03]\n", + " [-4.45000003e+01 -5.00000268e-01]\n", + " [ 2.47928572e+02 -4.99999720e-01]\n", + " [ 5.40357143e+02 -5.00000140e-01]\n", + " [ 8.32785714e+02 -4.99999791e-01]\n", + " [ 1.12521429e+03 -4.99999975e-01]\n", + " [ 1.41764286e+03 -4.99999912e-01]\n", + " [ 1.71007143e+03 -4.99999978e-01]\n", + " [ 2.00250000e+03 -4.99999991e-01]\n", + " [-4.44999999e+01 2.04650000e+03]\n", + " [ 2.47928571e+02 2.04650000e+03]\n", + " [ 5.40357143e+02 2.04650000e+03]\n", + " [ 8.32785715e+02 2.04650000e+03]\n", + " [ 1.12521429e+03 2.04650000e+03]\n", + " [ 1.41764286e+03 2.04650000e+03]\n", + " [ 1.71007143e+03 2.04650000e+03]\n", + " [ 2.00250000e+03 2.04650000e+03]\n", + " [ 2.00250000e+03 -4.99999991e-01]\n", + " [ 2.00250000e+03 2.91928572e+02]\n", + " [ 2.00250000e+03 5.84357143e+02]\n", + " [ 2.00250000e+03 8.76785715e+02]\n", + " [ 2.00250000e+03 1.16921429e+03]\n", + " [ 2.00250000e+03 1.46164286e+03]\n", + " [ 2.00250000e+03 1.75407143e+03]\n", + " [ 2.00250000e+03 2.04650000e+03]\n", + " [-4.34999998e+01 1.27000000e+02]\n", + " [-4.35000000e+01 4.85400000e+02]\n", + " [-4.35000001e+01 8.43800000e+02]\n", + " [-4.35000000e+01 1.20220000e+03]\n", + " [-4.35000001e+01 1.56060000e+03]\n", + " [-4.34999999e+01 1.91900000e+03]\n", + " [ 8.30000001e+01 5.00000092e-01]\n", + " [ 4.41400000e+02 4.99999764e-01]\n", + " [ 7.99800000e+02 4.99999911e-01]\n", + " [ 1.15820000e+03 5.00000156e-01]\n", + " [ 1.51660000e+03 4.99999840e-01]\n", + " [ 1.87500000e+03 4.99999915e-01]\n", + " [ 8.29999998e+01 2.04550000e+03]\n", + " [ 4.41400000e+02 2.04550000e+03]\n", + " [ 7.99800000e+02 2.04550000e+03]\n", + " [ 1.15820000e+03 2.04550000e+03]\n", + " [ 1.51660000e+03 2.04550000e+03]\n", + " [ 1.87500000e+03 2.04550000e+03]\n", + " [ 2.00150000e+03 1.27000000e+02]\n", + " [ 2.00150000e+03 4.85400000e+02]\n", + " [ 2.00150000e+03 8.43800000e+02]\n", + " [ 2.00150000e+03 1.20220000e+03]\n", + " [ 2.00150000e+03 1.56060000e+03]\n", + " [ 2.00150000e+03 1.91900000e+03]\n", + " [-4.35000000e+01 4.99999958e-01]\n", + " [-4.35000000e+01 4.99999958e-01]\n", + " [ 2.00150000e+03 2.04550000e+03]\n", + " [ 2.00150000e+03 2.04550000e+03]\n", + " [ 8.30000002e+01 1.27000000e+02]\n", + " [ 4.41400000e+02 1.27000000e+02]\n", + " [ 7.99800000e+02 1.27000000e+02]\n", + " [ 1.15820000e+03 1.27000000e+02]\n", + " [ 1.51660000e+03 1.27000000e+02]\n", + " [ 1.87500000e+03 1.27000000e+02]\n", + " [ 8.29999999e+01 4.85400000e+02]\n", + " [ 4.41400000e+02 4.85400000e+02]\n", + " [ 7.99800000e+02 4.85400000e+02]\n", + " [ 1.15820000e+03 4.85400000e+02]\n", + " [ 1.51660000e+03 4.85400000e+02]\n", + " [ 1.87500000e+03 4.85400000e+02]\n", + " [ 8.30000001e+01 8.43800000e+02]\n", + " [ 4.41400000e+02 8.43800000e+02]\n", + " [ 7.99800000e+02 8.43800000e+02]\n", + " [ 1.15820000e+03 8.43800000e+02]\n", + " [ 1.51660000e+03 8.43800000e+02]\n", + " [ 1.87500000e+03 8.43800000e+02]\n", + " [ 8.29999999e+01 1.20220000e+03]\n", + " [ 4.41400000e+02 1.20220000e+03]\n", + " [ 7.99800000e+02 1.20220000e+03]\n", + " [ 1.15820000e+03 1.20220000e+03]\n", + " [ 1.51660000e+03 1.20220000e+03]\n", + " [ 1.87500000e+03 1.20220000e+03]\n", + " [ 8.29999999e+01 1.56060000e+03]\n", + " [ 4.41400000e+02 1.56060000e+03]\n", + " [ 7.99800000e+02 1.56060000e+03]\n", + " [ 1.15820000e+03 1.56060000e+03]\n", + " [ 1.51660000e+03 1.56060000e+03]\n", + " [ 1.87500000e+03 1.56060000e+03]\n", + " [ 8.29999998e+01 1.91900000e+03]\n", + " [ 4.41400000e+02 1.91900000e+03]\n", + " [ 7.99800000e+02 1.91900000e+03]\n", + " [ 1.15820000e+03 1.91900000e+03]\n", + " [ 1.51660000e+03 1.91900000e+03]\n", + " [ 1.87500000e+03 1.91900000e+03]]\n", + "DEBUG:root:radec2pix: ccdpx: [[-4.45000000e+01 -4.99999902e-01]\n", + " [-4.45000000e+01 2.91928572e+02]\n", + " [-4.45000000e+01 5.84357143e+02]\n", + " [-4.45000000e+01 8.76785715e+02]\n", + " [-4.45000000e+01 1.16921429e+03]\n", + " [-4.45000000e+01 1.46164286e+03]\n", + " [-4.45000000e+01 1.75407143e+03]\n", + " [-4.45000001e+01 2.04650000e+03]\n", + " [-4.45000000e+01 -4.99999902e-01]\n", + " [ 2.47928571e+02 -4.99999902e-01]\n", + " [ 5.40357143e+02 -4.99999727e-01]\n", + " [ 8.32785714e+02 -5.00000071e-01]\n", + " [ 1.12521429e+03 -5.00000281e-01]\n", + " [ 1.41764286e+03 -4.99999968e-01]\n", + " [ 1.71007143e+03 -5.00000211e-01]\n", + " [ 2.00250000e+03 -5.00000200e-01]\n", + " [-4.45000001e+01 2.04650000e+03]\n", + " [ 2.47928571e+02 2.04650000e+03]\n", + " [ 5.40357143e+02 2.04650000e+03]\n", + " [ 8.32785714e+02 2.04650000e+03]\n", + " [ 1.12521429e+03 2.04650000e+03]\n", + " [ 1.41764286e+03 2.04650000e+03]\n", + " [ 1.71007143e+03 2.04650000e+03]\n", + " [ 2.00250000e+03 2.04650000e+03]\n", + " [ 2.00250000e+03 -5.00000200e-01]\n", + " [ 2.00250000e+03 2.91928571e+02]\n", + " [ 2.00250000e+03 5.84357143e+02]\n", + " [ 2.00250000e+03 8.76785714e+02]\n", + " [ 2.00250000e+03 1.16921429e+03]\n", + " [ 2.00250000e+03 1.46164286e+03]\n", + " [ 2.00250000e+03 1.75407143e+03]\n", + " [ 2.00250000e+03 2.04650000e+03]\n", + " [-4.35000000e+01 1.27000000e+02]\n", + " [-4.35000000e+01 4.85400000e+02]\n", + " [-4.35000000e+01 8.43800000e+02]\n", + " [-4.35000000e+01 1.20220000e+03]\n", + " [-4.35000000e+01 1.56060000e+03]\n", + " [-4.35000000e+01 1.91900000e+03]\n", + " [ 8.30000000e+01 5.00000088e-01]\n", + " [ 4.41400000e+02 5.00000229e-01]\n", + " [ 7.99800000e+02 4.99999876e-01]\n", + " [ 1.15820000e+03 5.00000139e-01]\n", + " [ 1.51660000e+03 5.00000172e-01]\n", + " [ 1.87500000e+03 4.99999925e-01]\n", + " [ 8.30000002e+01 2.04550000e+03]\n", + " [ 4.41400000e+02 2.04550000e+03]\n", + " [ 7.99800000e+02 2.04550000e+03]\n", + " [ 1.15820000e+03 2.04550000e+03]\n", + " [ 1.51660000e+03 2.04550000e+03]\n", + " [ 1.87500000e+03 2.04550000e+03]\n", + " [ 2.00150000e+03 1.27000000e+02]\n", + " [ 2.00150000e+03 4.85400000e+02]\n", + " [ 2.00150000e+03 8.43800000e+02]\n", + " [ 2.00150000e+03 1.20220000e+03]\n", + " [ 2.00150000e+03 1.56060000e+03]\n", + " [ 2.00150000e+03 1.91900000e+03]\n", + " [-4.35000000e+01 5.00000166e-01]\n", + " [-4.35000000e+01 5.00000166e-01]\n", + " [ 2.00150000e+03 2.04550000e+03]\n", + " [ 2.00150000e+03 2.04550000e+03]\n", + " [ 8.30000000e+01 1.27000000e+02]\n", + " [ 4.41400000e+02 1.27000000e+02]\n", + " [ 7.99800000e+02 1.27000000e+02]\n", + " [ 1.15820000e+03 1.27000000e+02]\n", + " [ 1.51660000e+03 1.27000000e+02]\n", + " [ 1.87500000e+03 1.27000000e+02]\n", + " [ 8.30000000e+01 4.85400000e+02]\n", + " [ 4.41400000e+02 4.85400000e+02]\n", + " [ 7.99800000e+02 4.85400000e+02]\n", + " [ 1.15820000e+03 4.85400000e+02]\n", + " [ 1.51660000e+03 4.85400000e+02]\n", + " [ 1.87500000e+03 4.85400000e+02]\n", + " [ 8.30000000e+01 8.43800000e+02]\n", + " [ 4.41400000e+02 8.43800000e+02]\n", + " [ 7.99800000e+02 8.43800000e+02]\n", + " [ 1.15820000e+03 8.43800000e+02]\n", + " [ 1.51660000e+03 8.43800000e+02]\n", + " [ 1.87500000e+03 8.43800000e+02]\n", + " [ 8.30000000e+01 1.20220000e+03]\n", + " [ 4.41400000e+02 1.20220000e+03]\n", + " [ 7.99800000e+02 1.20220000e+03]\n", + " [ 1.15820000e+03 1.20220000e+03]\n", + " [ 1.51660000e+03 1.20220000e+03]\n", + " [ 1.87500000e+03 1.20220000e+03]\n", + " [ 8.30000000e+01 1.56060000e+03]\n", + " [ 4.41400000e+02 1.56060000e+03]\n", + " [ 7.99800000e+02 1.56060000e+03]\n", + " [ 1.15820000e+03 1.56060000e+03]\n", + " [ 1.51660000e+03 1.56060000e+03]\n", + " [ 1.87500000e+03 1.56060000e+03]\n", + " [ 8.30000001e+01 1.91900000e+03]\n", + " [ 4.41400000e+02 1.91900000e+03]\n", + " [ 7.99800000e+02 1.91900000e+03]\n", + " [ 1.15820000e+03 1.91900000e+03]\n", + " [ 1.51660000e+03 1.91900000e+03]\n", + " [ 1.87500000e+03 1.91900000e+03]]\n", + "DEBUG:root:make_az_asym: xyp: [[32.2358199 31.31614388]\n", + " [32.23338667 26.92971599]\n", + " [32.23095344 22.54328809]\n", + " [32.2285202 18.15686019]\n", + " [32.22608698 13.7704323 ]\n", + " [32.22365375 9.3840044 ]\n", + " [32.22122051 4.99757651]\n", + " [32.21878728 0.61114861]\n", + " [32.2358199 31.31614388]\n", + " [27.849392 31.31857712]\n", + " [23.46296411 31.32101035]\n", + " [19.07653621 31.32344358]\n", + " [14.69010831 31.3258768 ]\n", + " [10.30368042 31.32831004]\n", + " [ 5.91725252 31.33074327]\n", + " [ 1.53082462 31.3331765 ]\n", + " [32.21878728 0.61114861]\n", + " [27.83235938 0.61358184]\n", + " [23.44593149 0.61601507]\n", + " [19.0595036 0.6184483 ]\n", + " [14.6730757 0.62088153]\n", + " [10.2866478 0.62331476]\n", + " [ 5.90021991 0.625748 ]\n", + " [ 1.513792 0.62818122]\n", + " [ 1.53082462 31.3331765 ]\n", + " [ 1.52839139 26.94674861]\n", + " [ 1.52595816 22.5603207 ]\n", + " [ 1.52352493 18.17389281]\n", + " [ 1.5210917 13.78746492]\n", + " [ 1.51865847 9.40103702]\n", + " [ 1.51622524 5.01460912]\n", + " [ 1.513792 0.62818122]\n", + " [32.219759 29.4036525 ]\n", + " [32.21677684 24.02765333]\n", + " [32.21379467 18.65165415]\n", + " [32.21081251 13.27565498]\n", + " [32.20783035 7.89965581]\n", + " [32.20484818 2.52365664]\n", + " [30.32331188 31.30220479]\n", + " [24.9473127 31.30518695]\n", + " [19.57131353 31.30816912]\n", + " [14.19531435 31.31115127]\n", + " [ 8.81931518 31.31413344]\n", + " [ 3.44331601 31.3171156 ]\n", + " [30.3062959 0.62720951]\n", + " [24.93029672 0.63019167]\n", + " [19.55429755 0.63317383]\n", + " [14.17829838 0.636156 ]\n", + " [ 8.80229921 0.63913816]\n", + " [ 3.42630004 0.64212033]\n", + " [ 1.54476372 29.42066847]\n", + " [ 1.54178156 24.0446693 ]\n", + " [ 1.53879939 18.66867013]\n", + " [ 1.53581723 13.29267096]\n", + " [ 1.53283507 7.91667178]\n", + " [ 1.5298529 2.54067261]\n", + " [32.22081158 31.30115221]\n", + " [32.22081158 31.30115221]\n", + " [ 1.52880032 0.6431729 ]\n", + " [ 1.52880032 0.6431729 ]\n", + " [30.32225929 29.40470508]\n", + " [24.94626012 29.40768724]\n", + " [19.57026095 29.41066941]\n", + " [14.19426178 29.41365157]\n", + " [ 8.8182626 29.41663373]\n", + " [ 3.44226343 29.4196159 ]\n", + " [30.31927713 24.02870591]\n", + " [24.94327796 24.03168807]\n", + " [19.56727878 24.03467023]\n", + " [14.19127961 24.0376524 ]\n", + " [ 8.81528044 24.04063456]\n", + " [ 3.43928127 24.04361672]\n", + " [30.31629496 18.65270673]\n", + " [24.9402958 18.6556889 ]\n", + " [19.56429662 18.65867106]\n", + " [14.18829744 18.66165322]\n", + " [ 8.81229827 18.66463538]\n", + " [ 3.4362991 18.66761755]\n", + " [30.31331281 13.27670756]\n", + " [24.93731363 13.27968972]\n", + " [19.56131446 13.28267189]\n", + " [14.18531529 13.28565406]\n", + " [ 8.80931611 13.28863621]\n", + " [ 3.43331694 13.29161838]\n", + " [30.31033064 7.90070839]\n", + " [24.93433147 7.90369055]\n", + " [19.55833229 7.90667271]\n", + " [14.18233312 7.90965488]\n", + " [ 8.80633395 7.91263704]\n", + " [ 3.43033477 7.9156192 ]\n", + " [30.30734847 2.52470921]\n", + " [24.9313493 2.52769138]\n", + " [19.55535013 2.53067354]\n", + " [14.17935096 2.53365571]\n", + " [ 8.80335178 2.53663787]\n", + " [ 3.42735261 2.53962004]]\n", + "DEBUG:root:make_az_asym: xyp: shape: (96, 2)\n", + "DEBUG:root:radec2pix: xyfp: [[-32.29046994 -31.71666141]\n", + " [-32.28860507 -27.33023323]\n", + " [-32.2867402 -22.94380505]\n", + " [-32.28487534 -18.55737688]\n", + " [-32.28301047 -14.1709487 ]\n", + " [-32.2811456 -9.78452053]\n", + " [-32.27928073 -5.39809235]\n", + " [-32.27741587 -1.01166418]\n", + " [-32.29046994 -31.71666141]\n", + " [-27.90404176 -31.71852627]\n", + " [-23.51761359 -31.72039114]\n", + " [-19.13118541 -31.722256 ]\n", + " [-14.74475724 -31.72412087]\n", + " [-10.35832906 -31.72598574]\n", + " [ -5.97190089 -31.72785061]\n", + " [ -1.58547272 -31.72971547]\n", + " [-32.27741587 -1.01166418]\n", + " [-27.8909877 -1.01352905]\n", + " [-23.50455952 -1.01539391]\n", + " [-19.11813134 -1.01725878]\n", + " [-14.73170317 -1.01912365]\n", + " [-10.345275 -1.02098851]\n", + " [ -5.95884682 -1.02285338]\n", + " [ -1.57241864 -1.02471825]\n", + " [ -1.58547272 -31.72971547]\n", + " [ -1.58360785 -27.3432873 ]\n", + " [ -1.58174298 -22.95685912]\n", + " [ -1.57987811 -18.57043094]\n", + " [ -1.57801325 -14.18400278]\n", + " [ -1.57614838 -9.7975746 ]\n", + " [ -1.57428351 -5.41114642]\n", + " [ -1.57241864 -1.02471825]\n", + " [-32.27465685 -29.80416795]\n", + " [-32.27237127 -24.42816844]\n", + " [-32.2700857 -19.05216893]\n", + " [-32.26780012 -13.67616941]\n", + " [-32.26551454 -8.3001699 ]\n", + " [-32.26322896 -2.92417038]\n", + " [-30.37796373 -31.70247449]\n", + " [-25.00196422 -31.70476008]\n", + " [-19.62596471 -31.70704565]\n", + " [-14.24996519 -31.70933123]\n", + " [ -8.87396568 -31.71161681]\n", + " [ -3.49796617 -31.71390239]\n", + " [-30.36492242 -1.02747727]\n", + " [-24.98892291 -1.02976285]\n", + " [-19.61292339 -1.03204842]\n", + " [-14.23692388 -1.034334 ]\n", + " [ -8.86092437 -1.03661958]\n", + " [ -3.48492485 -1.03890516]\n", + " [ -1.59965962 -29.81720927]\n", + " [ -1.59737405 -24.44120975]\n", + " [ -1.59508847 -19.06521024]\n", + " [ -1.59280289 -13.68921073]\n", + " [ -1.59051731 -8.31321121]\n", + " [ -1.58823174 -2.9372117 ]\n", + " [-32.27546357 -31.70166778]\n", + " [-32.27546357 -31.70166778]\n", + " [ -1.58742502 -1.03971187]\n", + " [ -1.58742502 -1.03971187]\n", + " [-30.37715702 -29.80497466]\n", + " [-25.00115751 -29.80726024]\n", + " [-19.625158 -29.80954582]\n", + " [-14.24915848 -29.8118314 ]\n", + " [ -8.87315897 -29.81411698]\n", + " [ -3.49715945 -29.81640256]\n", + " [-30.37487145 -24.42897515]\n", + " [-24.99887193 -24.43126073]\n", + " [-19.62287241 -24.43354631]\n", + " [-14.2468729 -24.43583188]\n", + " [ -8.87087339 -24.43811746]\n", + " [ -3.49487388 -24.44040305]\n", + " [-30.37258587 -19.05297564]\n", + " [-24.99658635 -19.05526122]\n", + " [-19.62058684 -19.05754679]\n", + " [-14.24458732 -19.05983237]\n", + " [ -8.86858781 -19.06211795]\n", + " [ -3.4925883 -19.06440353]\n", + " [-30.37030029 -13.67697612]\n", + " [-24.99430077 -13.6792617 ]\n", + " [-19.61830126 -13.68154728]\n", + " [-14.24230175 -13.68383286]\n", + " [ -8.86630223 -13.68611844]\n", + " [ -3.49030272 -13.68840401]\n", + " [-30.36801471 -8.30097661]\n", + " [-24.9920152 -8.30326219]\n", + " [-19.61601568 -8.30554776]\n", + " [-14.24001617 -8.30783335]\n", + " [ -8.86401666 -8.31011893]\n", + " [ -3.48801714 -8.3124045 ]\n", + " [-30.36572914 -2.9249771 ]\n", + " [-24.98972962 -2.92726267]\n", + " [-19.6137301 -2.92954825]\n", + " [-14.23773059 -2.93183383]\n", + " [ -8.86173108 -2.93411941]\n", + " [ -3.48573156 -2.93640499]]\n", + "DEBUG:root:radec2pix: xyfp Shape: (96, 2)\n", + "DEBUG:root:cartToSphere: vec: [[0.20581047 0.20196806 0.95752334]\n", + " [0.20764708 0.17549093 0.96233343]\n", + " [0.20921111 0.14832034 0.96655667]\n", + " [0.21050368 0.12056829 0.97012962]\n", + " [0.21152432 0.0923455 0.9730004 ]\n", + " [0.2122716 0.06376263 0.97512825]\n", + " [0.21274377 0.0349311 0.97648344]\n", + " [0.21293946 0.00596325 0.9770472 ]\n", + " [0.20581047 0.20196806 0.95752334]\n", + " [0.17940008 0.20380697 0.96243355]\n", + " [0.15228099 0.20537849 0.96676273]\n", + " [0.12456525 0.20668384 0.97044592]\n", + " [0.09636347 0.20772258 0.97342972]\n", + " [0.06778617 0.20849323 0.97567188]\n", + " [0.03894463 0.20899395 0.97714116]\n", + " [0.00995116 0.20922323 0.97781727]\n", + " [0.21293946 0.00596325 0.9770472 ]\n", + " [0.18558556 0.00601646 0.98260969]\n", + " [0.15752187 0.00606233 0.98749689]\n", + " [0.12885256 0.00610071 0.991645 ]\n", + " [0.09968382 0.00613144 0.99500027]\n", + " [0.07012532 0.00615431 0.99751921]\n", + " [0.04029051 0.00616917 0.99916896]\n", + " [0.01029607 0.00617591 0.99992792]\n", + " [0.00995116 0.20922323 0.97781727]\n", + " [0.01003858 0.18176716 0.98329036]\n", + " [0.01011374 0.15361557 0.98807893]\n", + " [0.01017639 0.12487279 0.99212057]\n", + " [0.01022623 0.09564544 0.99536294]\n", + " [0.01026295 0.0660437 0.99776395]\n", + " [0.01028629 0.03618151 0.99929229]\n", + " [0.01029607 0.00617591 0.99992792]\n", + " [0.20655553 0.19052281 0.95970614]\n", + " [0.20862193 0.15759064 0.96521608]\n", + " [0.21028039 0.12372836 0.9697801 ]\n", + " [0.21153069 0.08914025 0.97329789]\n", + " [0.21237025 0.05403012 0.97569443]\n", + " [0.212796 0.01860347 0.97691953]\n", + " [0.1943962 0.20271324 0.95974864]\n", + " [0.16153559 0.2047859 0.96538541]\n", + " [0.12772204 0.20645854 0.97008348]\n", + " [0.0931597 0.207731 0.97373975]\n", + " [0.05805212 0.20860063 0.97627646]\n", + " [0.02260459 0.20906415 0.97764064]\n", + " [0.2011068 0.00608691 0.97955041]\n", + " [0.16709142 0.00614821 0.98592224]\n", + " [0.1321133 0.00619816 0.99121524]\n", + " [0.09636698 0.00623643 0.99532633]\n", + " [0.06005439 0.00626269 0.99817546]\n", + " [0.02338579 0.00627666 0.99970681]\n", + " [0.01009044 0.19734414 0.98028234]\n", + " [0.01019035 0.16321317 0.9865382 ]\n", + " [0.01027142 0.12814101 0.99170277]\n", + " [0.0103331 0.0923229 0.9956755 ]\n", + " [0.01037483 0.05596168 0.99837901]\n", + " [0.01039617 0.01926848 0.99976029]\n", + " [0.20572824 0.20188558 0.95755841]\n", + " [0.20572824 0.20188558 0.95755841]\n", + " [0.01039877 0.00627861 0.99992622]\n", + " [0.01039877 0.00627861 0.99992622]\n", + " [0.19517474 0.19130075 0.96193079]\n", + " [0.1621771 0.19325024 0.96765331]\n", + " [0.12822694 0.19482509 0.9724202 ]\n", + " [0.09352723 0.19602426 0.97612865]\n", + " [0.05828102 0.19684438 0.97870098]\n", + " [0.02269376 0.19728171 0.98008414]\n", + " [0.19712067 0.15822879 0.96752627]\n", + " [0.1637837 0.1598311 0.97346234]\n", + " [0.12949375 0.16112922 0.97840112]\n", + " [0.09445078 0.16212009 0.98224036]\n", + " [0.05885684 0.16279899 0.98490221]\n", + " [0.0229182 0.16316141 0.98633316]\n", + " [0.19868404 0.12422708 0.97215857]\n", + " [0.16507817 0.12548158 0.97826559]\n", + " [0.13051704 0.12650047 0.98334273]\n", + " [0.09519827 0.12727979 0.98728777]\n", + " [0.05932353 0.12781451 0.99002231]\n", + " [0.02310025 0.12810021 0.99149217]\n", + " [0.19986372 0.08949878 0.97572766]\n", + " [0.16605732 0.09040196 0.98196357]\n", + " [0.13129265 0.09113695 0.98714553]\n", + " [0.09576573 0.09169995 0.99117105]\n", + " [0.05967819 0.09208666 0.99396105]\n", + " [0.02323871 0.09229337 0.99546064]\n", + " [0.20065641 0.05424725 0.9781586 ]\n", + " [0.16671646 0.05479478 0.98448116]\n", + " [0.13181555 0.05524091 0.98973385]\n", + " [0.09614872 0.05558298 0.99381384]\n", + " [0.05991775 0.05581806 0.99664146]\n", + " [0.0233323 0.05594375 0.99816126]\n", + " [0.20105858 0.01867818 0.97940113]\n", + " [0.16705125 0.01886665 0.98576768]\n", + " [0.13208139 0.0190203 0.99105637]\n", + " [0.09634357 0.01913813 0.99516413]\n", + " [0.06003972 0.01921909 0.99801095]\n", + " [0.02338002 0.01926233 0.99954106]]\n", + "DEBUG:root:radec2pix: camVec: [[-0.00114705 -0.00115629 -0.0011641 -0.00117048 -0.00117539 -0.00117881\n", + " -0.00118068 -0.00118097 -0.00114705 -0.03018244 -0.05910007 -0.08778716\n", + " -0.11613176 -0.14402308 -0.17135219 -0.19801388 -0.00118097 -0.03121228\n", + " -0.06111791 -0.09077999 -0.12008538 -0.14892541 -0.17719395 -0.20478471\n", + " -0.19801388 -0.19975823 -0.20124936 -0.20248221 -0.20345393 -0.20416257\n", + " -0.20460656 -0.20478471 -0.00125101 -0.00126235 -0.00127136 -0.00127799\n", + " -0.00128216 -0.00128379 -0.01381426 -0.04933618 -0.08456905 -0.11930642\n", + " -0.15334441 -0.18648385 -0.01428247 -0.05101935 -0.08744986 -0.12336368\n", + " -0.15856056 -0.19284509 -0.1987148 -0.20068229 -0.20226422 -0.20345456\n", + " -0.20424964 -0.20464672 -0.00124645 -0.00124645 -0.20469148 -0.20469148\n", + " -0.01386808 -0.04952932 -0.08490071 -0.11977552 -0.15394951 -0.18722234\n", + " -0.01400325 -0.05001432 -0.08573269 -0.12095098 -0.15546507 -0.18907339\n", + " -0.01411268 -0.05040698 -0.08640482 -0.12189811 -0.15668376 -0.19056116\n", + " -0.01419584 -0.05070556 -0.08691471 -0.12261435 -0.15760261 -0.19168088\n", + " -0.01425179 -0.05090701 -0.08725814 -0.12309542 -0.15821798 -0.19242913\n", + " -0.01427955 -0.05100809 -0.08743051 -0.12333654 -0.15852587 -0.19280295]\n", + " [ 0.20838541 0.18089194 0.15270652 0.12393558 0.09468513 0.06506336\n", + " 0.03518275 0.0051606 0.20838541 0.20823844 0.20782077 0.20713345\n", + " 0.20617803 0.20495645 0.20347155 0.2017284 0.0051606 0.00515607\n", + " 0.00514464 0.00512646 0.00510175 0.0050707 0.00503345 0.00499006\n", + " 0.2017284 0.17512925 0.14784829 0.11999042 0.09166442 0.06298098\n", + " 0.03405194 0.00499006 0.19649007 0.1623152 0.12720686 0.09136033\n", + " 0.05497503 0.01826009 0.20826196 0.20789982 0.20713224 0.20596186\n", + " 0.20439232 0.20242966 0.00526224 0.00525184 0.00523103 0.00520016\n", + " 0.00515961 0.0051096 0.19022738 0.157155 0.12316211 0.08844755\n", + " 0.05321501 0.01767079 0.20829266 0.20829266 0.0050897 0.0050897\n", + " 0.19646111 0.19611969 0.19539637 0.19429398 0.1928159 0.19096695\n", + " 0.16229116 0.16200846 0.16141067 0.16050163 0.15928501 0.15776388\n", + " 0.1271878 0.12696445 0.12649338 0.12577923 0.12482642 0.12363768\n", + " 0.0913464 0.09118412 0.09084281 0.0903271 0.0896414 0.08878838\n", + " 0.05496643 0.05486748 0.05466012 0.05434775 0.0539337 0.05341999\n", + " 0.01825699 0.0182233 0.01815347 0.01804874 0.01791034 0.01773905]\n", + " [ 0.97804612 0.9835023 0.9882709 0.99228958 0.99550658 0.99788044\n", + " 0.9993802 0.99998599 0.97804612 0.97761228 0.9763799 0.97436602\n", + " 0.9715987 0.96811684 0.96396979 0.95921643 0.99998599 0.99949948\n", + " 0.99811729 0.99585778 0.99275046 0.98883543 0.98416308 0.97879432\n", + " 0.95921643 0.96406763 0.96831791 0.97190702 0.97478415 0.97690892\n", + " 0.97825182 0.97879432 0.98050502 0.98673815 0.99187539 0.99581708\n", + " 0.99848691 0.99983245 0.97797552 0.97690512 0.97465087 0.97125985\n", + " 0.96680364 0.96137714 0.99988415 0.99868386 0.99615519 0.9923479\n", + " 0.98733577 0.98121591 0.96141873 0.96696894 0.9715556 0.97508116\n", + " 0.97747135 0.97867638 0.97806575 0.97806575 0.97881331 0.97881331\n", + " 0.98041354 0.9793283 0.97704254 0.97360345 0.96908285 0.96357637\n", + " 0.98664355 0.98552109 0.9831564 0.9795969 0.97491482 0.9692068\n", + " 0.99177825 0.99062564 0.98819716 0.98454072 0.97972882 0.97385839\n", + " 0.99571799 0.99454231 0.99206523 0.98833534 0.98342556 0.97743289\n", + " 0.99838649 0.99719508 0.99468502 0.99090557 0.98593013 0.97985577\n", + " 0.99973135 0.99853197 0.9960052 0.99220076 0.98719237 0.98107714]]\n", + "DEBUG:root:radec2pix: camVec Shape: (3, 96)\n", + "DEBUG:root:radec2pix: lng: [44.46013111 40.20250222 35.33475619 29.80239704 23.58471193 16.71933815\n", + " 9.32438225 1.60411637 44.46013111 48.6443107 53.44435482 58.92326156\n", + " 65.11319638 71.98940835 79.44437917 87.27692771 1.60411637 1.85680988\n", + " 2.20397654 2.71072869 3.51976244 5.01551732 8.70535713 30.95664732\n", + " 87.27692771 86.8388988 86.23319877 85.34102995 83.89722589 81.1670885\n", + " 74.12971046 30.95664732 42.68783954 37.06698546 30.47243013 22.85083712\n", + " 14.27406075 4.99632239 46.19982373 51.73354216 58.25770295 65.84552409\n", + " 74.44848175 83.82899465 1.73364549 2.10727457 2.68608796 3.70275867\n", + " 5.95349638 15.02389602 87.07294759 86.42732935 85.41713359 83.61383424\n", + " 79.49708007 61.65124289 44.45987707 44.45987707 31.12292419 31.12292419\n", + " 44.42569213 49.99636441 56.64851063 64.49322462 73.50720842 83.43797919\n", + " 38.75401666 44.3002287 51.21241262 59.77502346 70.12351892 82.00435394\n", + " 32.01565774 37.23971088 44.10467708 53.20553354 65.10220937 79.77773784\n", + " 24.12278796 28.56396741 34.76649258 43.75755718 57.05411516 75.86717668\n", + " 15.12820823 18.19416817 22.73745459 30.03194111 42.97126995 67.36058422\n", + " 5.30749937 6.44364165 8.19450854 11.23524 17.75019872 39.48443023]\n", + "DEBUG:root:mm_to_pix: fitpx: [[0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]]\n", + "DEBUG:root:mm_to_pix: fitpx.shape: (96, 2)\n", + "DEBUG:root:radec2pix: curVec: [[-0.5331467 -0.71538633 -0.45163813]\n", + " [-0.53059719 -0.70146351 -0.47583144]\n", + " [-0.52756716 -0.68669714 -0.50011992]\n", + " [-0.52404577 -0.67111638 -0.52438424]\n", + " [-0.5200274 -0.65475655 -0.54851195]\n", + " [-0.51551204 -0.63766045 -0.5723954 ]\n", + " [-0.51050574 -0.61987986 -0.59593023]\n", + " [-0.50502112 -0.60147625 -0.61901534]\n", + " [-0.5331467 -0.71538633 -0.45163813]\n", + " [-0.5573617 -0.70049801 -0.44570223]\n", + " [-0.5810236 -0.68502122 -0.43949688]\n", + " [-0.60404614 -0.66902331 -0.43305435]\n", + " [-0.62634944 -0.65257807 -0.42641323]\n", + " [-0.64786009 -0.6357655 -0.41961832]\n", + " [-0.6685117 -0.61867146 -0.41271991]\n", + " [-0.68824623 -0.60138704 -0.4057718 ]\n", + " [-0.50502112 -0.60147625 -0.61901534]\n", + " [-0.53007615 -0.5861468 -0.61274073]\n", + " [-0.55457339 -0.57033959 -0.6059382 ]\n", + " [-0.57842282 -0.55412472 -0.5986425 ]\n", + " [-0.601544 -0.53757663 -0.5908944 ]\n", + " [-0.62386561 -0.52077385 -0.58274033]\n", + " [-0.64532359 -0.50379981 -0.57423273]\n", + " [-0.66585905 -0.4867442 -0.56543063]\n", + " [-0.68824623 -0.60138704 -0.4057718 ]\n", + " [-0.68702664 -0.58679228 -0.42856646]\n", + " [-0.68515996 -0.57153823 -0.45155274]\n", + " [-0.68263183 -0.55565694 -0.47461474]\n", + " [-0.67943528 -0.5391874 -0.49763908]\n", + " [-0.6755697 -0.52217558 -0.52051728]\n", + " [-0.67104048 -0.50467452 -0.54314667]\n", + " [-0.66585905 -0.4867442 -0.56543063]\n", + " [-0.53217725 -0.70937125 -0.46214695]\n", + " [-0.52873188 -0.69173626 -0.49187757]\n", + " [-0.52455326 -0.67286266 -0.52163179]\n", + " [-0.51962886 -0.65281287 -0.55119979]\n", + " [-0.51395871 -0.63166587 -0.58038321]\n", + " [-0.50755667 -0.60952105 -0.60899123]\n", + " [-0.54375918 -0.70892501 -0.44916732]\n", + " [-0.57307721 -0.69027348 -0.44170696]\n", + " [-0.60147802 -0.67080428 -0.43387303]\n", + " [-0.62881187 -0.65065062 -0.42573396]\n", + " [-0.6549437 -0.62995971 -0.41737215]\n", + " [-0.67975462 -0.60889188 -0.40888181]\n", + " [-0.51602719 -0.59491949 -0.61626841]\n", + " [-0.54637128 -0.57580177 -0.60821933]\n", + " [-0.57578704 -0.55603542 -0.59941129]\n", + " [-0.60412237 -0.53575577 -0.58991687]\n", + " [-0.63124574 -0.51510749 -0.5798216 ]\n", + " [-0.65704142 -0.4942467 -0.56922471]\n", + " [-0.68772667 -0.59516592 -0.41570369]\n", + " [-0.68579838 -0.57683174 -0.44378568]\n", + " [-0.68288305 -0.55753818 -0.47204017]\n", + " [-0.67896486 -0.53735414 -0.50025717]\n", + " [-0.67404267 -0.51636429 -0.52823707]\n", + " [-0.66812888 -0.49466913 -0.55579336]\n", + " [-0.53322243 -0.71529034 -0.45170075]\n", + " [-0.53322243 -0.71529034 -0.45170075]\n", + " [-0.66580928 -0.48686453 -0.56538565]\n", + " [-0.66580928 -0.48686453 -0.56538565]\n", + " [-0.54275522 -0.7029816 -0.45960162]\n", + " [-0.57218715 -0.68426438 -0.45208862]\n", + " [-0.60069734 -0.66473463 -0.44417403]\n", + " [-0.62813591 -0.64452587 -0.43592623]\n", + " [-0.65436757 -0.62378548 -0.42742807]\n", + " [-0.67927256 -0.60267405 -0.41877534]\n", + " [-0.53941354 -0.68528581 -0.48930194]\n", + " [-0.56913281 -0.66640787 -0.48165175]\n", + " [-0.59791982 -0.6467356 -0.47352397]\n", + " [-0.62562448 -0.62640363 -0.46498657]\n", + " [-0.65211185 -0.60555969 -0.45612235]\n", + " [-0.67726132 -0.58436451 -0.44702933]\n", + " [-0.53531921 -0.66636352 -0.51903083]\n", + " [-0.56527336 -0.64736283 -0.51126059]\n", + " [-0.59428817 -0.62759165 -0.50294164]\n", + " [-0.62221333 -0.60718577 -0.49414169]\n", + " [-0.64891505 -0.58629304 -0.48494302]\n", + " [-0.67427362 -0.56507365 -0.47544385]\n", + " [-0.5304593 -0.64627745 -0.54857851]\n", + " [-0.56059511 -0.62719326 -0.54070485]\n", + " [-0.58978852 -0.6073683 -0.53221542]\n", + " [-0.61788884 -0.58693916 -0.52317856]\n", + " [-0.64476354 -0.56605335 -0.51367654]\n", + " [-0.67029458 -0.54487005 -0.50380731]\n", + " [-0.52483313 -0.62510707 -0.57774678]\n", + " [-0.55509582 -0.60598021 -0.56978647]\n", + " [-0.58441808 -0.58614814 -0.56114692]\n", + " [-0.61264864 -0.56574752 -0.55189799]\n", + " [-0.63965584 -0.54492495 -0.54212287]\n", + " [-0.66532317 -0.5238383 -0.53191965]\n", + " [-0.51845382 -0.60295221 -0.60634501]\n", + " [-0.54878686 -0.58382465 -0.59831577]\n", + " [-0.5781873 -0.56403285 -0.58954761]\n", + " [-0.60650326 -0.54371263 -0.58011238]\n", + " [-0.63360328 -0.52300921 -0.57009495]\n", + " [-0.65937163 -0.50207911 -0.55959415]]\n", + "DEBUG:root:radec2pix: curVec Shape: (96, 3)\n", + "DEBUG:root:radec2pix: fitpx: [[-5.00000272e-01 -5.00000268e-01]\n", + " [-4.99999785e-01 2.91928572e+02]\n", + " [-4.99999908e-01 5.84357143e+02]\n", + " [-4.99999976e-01 8.76785714e+02]\n", + " [-4.99999814e-01 1.16921429e+03]\n", + " [-4.99999859e-01 1.46164286e+03]\n", + " [-4.99999732e-01 1.75407143e+03]\n", + " [-4.99999866e-01 2.04650000e+03]\n", + " [-5.00000272e-01 -5.00000268e-01]\n", + " [ 2.91928572e+02 -4.99999720e-01]\n", + " [ 5.84357143e+02 -5.00000140e-01]\n", + " [ 8.76785714e+02 -4.99999791e-01]\n", + " [ 1.16921429e+03 -4.99999975e-01]\n", + " [ 1.46164286e+03 -4.99999912e-01]\n", + " [ 1.75407143e+03 -4.99999978e-01]\n", + " [ 2.04650000e+03 -4.99999991e-01]\n", + " [-4.99999866e-01 2.04650000e+03]\n", + " [ 2.91928571e+02 2.04650000e+03]\n", + " [ 5.84357143e+02 2.04650000e+03]\n", + " [ 8.76785715e+02 2.04650000e+03]\n", + " [ 1.16921429e+03 2.04650000e+03]\n", + " [ 1.46164286e+03 2.04650000e+03]\n", + " [ 1.75407143e+03 2.04650000e+03]\n", + " [ 2.04650000e+03 2.04650000e+03]\n", + " [ 2.04650000e+03 -4.99999991e-01]\n", + " [ 2.04650000e+03 2.91928572e+02]\n", + " [ 2.04650000e+03 5.84357143e+02]\n", + " [ 2.04650000e+03 8.76785715e+02]\n", + " [ 2.04650000e+03 1.16921429e+03]\n", + " [ 2.04650000e+03 1.46164286e+03]\n", + " [ 2.04650000e+03 1.75407143e+03]\n", + " [ 2.04650000e+03 2.04650000e+03]\n", + " [ 5.00000192e-01 1.27000000e+02]\n", + " [ 4.99999990e-01 4.85400000e+02]\n", + " [ 4.99999881e-01 8.43800000e+02]\n", + " [ 5.00000044e-01 1.20220000e+03]\n", + " [ 4.99999938e-01 1.56060000e+03]\n", + " [ 5.00000069e-01 1.91900000e+03]\n", + " [ 1.27000000e+02 5.00000092e-01]\n", + " [ 4.85400000e+02 4.99999764e-01]\n", + " [ 8.43800000e+02 4.99999911e-01]\n", + " [ 1.20220000e+03 5.00000156e-01]\n", + " [ 1.56060000e+03 4.99999840e-01]\n", + " [ 1.91900000e+03 4.99999915e-01]\n", + " [ 1.27000000e+02 2.04550000e+03]\n", + " [ 4.85400000e+02 2.04550000e+03]\n", + " [ 8.43800000e+02 2.04550000e+03]\n", + " [ 1.20220000e+03 2.04550000e+03]\n", + " [ 1.56060000e+03 2.04550000e+03]\n", + " [ 1.91900000e+03 2.04550000e+03]\n", + " [ 2.04550000e+03 1.27000000e+02]\n", + " [ 2.04550000e+03 4.85400000e+02]\n", + " [ 2.04550000e+03 8.43800000e+02]\n", + " [ 2.04550000e+03 1.20220000e+03]\n", + " [ 2.04550000e+03 1.56060000e+03]\n", + " [ 2.04550000e+03 1.91900000e+03]\n", + " [ 4.99999957e-01 4.99999958e-01]\n", + " [ 4.99999957e-01 4.99999958e-01]\n", + " [ 2.04550000e+03 2.04550000e+03]\n", + " [ 2.04550000e+03 2.04550000e+03]\n", + " [ 1.27000000e+02 1.27000000e+02]\n", + " [ 4.85400000e+02 1.27000000e+02]\n", + " [ 8.43800000e+02 1.27000000e+02]\n", + " [ 1.20220000e+03 1.27000000e+02]\n", + " [ 1.56060000e+03 1.27000000e+02]\n", + " [ 1.91900000e+03 1.27000000e+02]\n", + " [ 1.27000000e+02 4.85400000e+02]\n", + " [ 4.85400000e+02 4.85400000e+02]\n", + " [ 8.43800000e+02 4.85400000e+02]\n", + " [ 1.20220000e+03 4.85400000e+02]\n", + " [ 1.56060000e+03 4.85400000e+02]\n", + " [ 1.91900000e+03 4.85400000e+02]\n", + " [ 1.27000000e+02 8.43800000e+02]\n", + " [ 4.85400000e+02 8.43800000e+02]\n", + " [ 8.43800000e+02 8.43800000e+02]\n", + " [ 1.20220000e+03 8.43800000e+02]\n", + " [ 1.56060000e+03 8.43800000e+02]\n", + " [ 1.91900000e+03 8.43800000e+02]\n", + " [ 1.27000000e+02 1.20220000e+03]\n", + " [ 4.85400000e+02 1.20220000e+03]\n", + " [ 8.43800000e+02 1.20220000e+03]\n", + " [ 1.20220000e+03 1.20220000e+03]\n", + " [ 1.56060000e+03 1.20220000e+03]\n", + " [ 1.91900000e+03 1.20220000e+03]\n", + " [ 1.27000000e+02 1.56060000e+03]\n", + " [ 4.85400000e+02 1.56060000e+03]\n", + " [ 8.43800000e+02 1.56060000e+03]\n", + " [ 1.20220000e+03 1.56060000e+03]\n", + " [ 1.56060000e+03 1.56060000e+03]\n", + " [ 1.91900000e+03 1.56060000e+03]\n", + " [ 1.27000000e+02 1.91900000e+03]\n", + " [ 4.85400000e+02 1.91900000e+03]\n", + " [ 8.43800000e+02 1.91900000e+03]\n", + " [ 1.20220000e+03 1.91900000e+03]\n", + " [ 1.56060000e+03 1.91900000e+03]\n", + " [ 1.91900000e+03 1.91900000e+03]]\n", + "DEBUG:root:radec2pix: xyfp: [[32.2358199 31.31614388]\n", + " [32.23338667 26.92971599]\n", + " [32.23095344 22.54328809]\n", + " [32.2285202 18.15686019]\n", + " [32.22608698 13.7704323 ]\n", + " [32.22365375 9.3840044 ]\n", + " [32.22122051 4.99757651]\n", + " [32.21878728 0.61114861]\n", + " [32.2358199 31.31614388]\n", + " [27.849392 31.31857712]\n", + " [23.46296411 31.32101035]\n", + " [19.07653621 31.32344358]\n", + " [14.69010831 31.3258768 ]\n", + " [10.30368042 31.32831004]\n", + " [ 5.91725252 31.33074327]\n", + " [ 1.53082462 31.3331765 ]\n", + " [32.21878728 0.61114861]\n", + " [27.83235938 0.61358184]\n", + " [23.44593149 0.61601507]\n", + " [19.0595036 0.6184483 ]\n", + " [14.6730757 0.62088153]\n", + " [10.2866478 0.62331476]\n", + " [ 5.90021991 0.625748 ]\n", + " [ 1.513792 0.62818122]\n", + " [ 1.53082462 31.3331765 ]\n", + " [ 1.52839139 26.94674861]\n", + " [ 1.52595816 22.5603207 ]\n", + " [ 1.52352493 18.17389281]\n", + " [ 1.5210917 13.78746492]\n", + " [ 1.51865847 9.40103702]\n", + " [ 1.51622524 5.01460912]\n", + " [ 1.513792 0.62818122]\n", + " [32.219759 29.4036525 ]\n", + " [32.21677684 24.02765333]\n", + " [32.21379467 18.65165415]\n", + " [32.21081251 13.27565498]\n", + " [32.20783035 7.89965581]\n", + " [32.20484818 2.52365664]\n", + " [30.32331188 31.30220479]\n", + " [24.9473127 31.30518695]\n", + " [19.57131353 31.30816912]\n", + " [14.19531435 31.31115127]\n", + " [ 8.81931518 31.31413344]\n", + " [ 3.44331601 31.3171156 ]\n", + " [30.3062959 0.62720951]\n", + " [24.93029672 0.63019167]\n", + " [19.55429755 0.63317383]\n", + " [14.17829838 0.636156 ]\n", + " [ 8.80229921 0.63913816]\n", + " [ 3.42630004 0.64212033]\n", + " [ 1.54476372 29.42066847]\n", + " [ 1.54178156 24.0446693 ]\n", + " [ 1.53879939 18.66867013]\n", + " [ 1.53581723 13.29267096]\n", + " [ 1.53283507 7.91667178]\n", + " [ 1.5298529 2.54067261]\n", + " [32.22081158 31.30115221]\n", + " [32.22081158 31.30115221]\n", + " [ 1.52880032 0.6431729 ]\n", + " [ 1.52880032 0.6431729 ]\n", + " [30.32225929 29.40470508]\n", + " [24.94626012 29.40768724]\n", + " [19.57026095 29.41066941]\n", + " [14.19426178 29.41365157]\n", + " [ 8.8182626 29.41663373]\n", + " [ 3.44226343 29.4196159 ]\n", + " [30.31927713 24.02870591]\n", + " [24.94327796 24.03168807]\n", + " [19.56727878 24.03467023]\n", + " [14.19127961 24.0376524 ]\n", + " [ 8.81528044 24.04063456]\n", + " [ 3.43928127 24.04361672]\n", + " [30.31629496 18.65270673]\n", + " [24.9402958 18.6556889 ]\n", + " [19.56429662 18.65867106]\n", + " [14.18829744 18.66165322]\n", + " [ 8.81229827 18.66463538]\n", + " [ 3.4362991 18.66761755]\n", + " [30.31331281 13.27670756]\n", + " [24.93731363 13.27968972]\n", + " [19.56131446 13.28267189]\n", + " [14.18531529 13.28565406]\n", + " [ 8.80931611 13.28863621]\n", + " [ 3.43331694 13.29161838]\n", + " [30.31033064 7.90070839]\n", + " [24.93433147 7.90369055]\n", + " [19.55833229 7.90667271]\n", + " [14.18233312 7.90965488]\n", + " [ 8.80633395 7.91263704]\n", + " [ 3.43033477 7.9156192 ]\n", + " [30.30734847 2.52470921]\n", + " [24.9313493 2.52769138]\n", + " [19.55535013 2.53067354]\n", + " [14.17935096 2.53365571]\n", + " [ 8.80335178 2.53663787]\n", + " [ 3.42735261 2.53962004]]\n", + "DEBUG:root:radec2pix: xyfp Shape: (96, 2)\n", + "DEBUG:root:fitpix2pix: ccdpx: shape: (96, 2)\n", + "DEBUG:root:fitpix2pix: visCut: True\n", + "DEBUG:root:radec2pix: lat: [73.24045629 74.22430856 75.14029247 75.96071497 76.65562135 77.19454225\n", + " 77.54971408 77.7004367 73.24045629 74.24542243 75.18640058 76.03561625\n", + " 76.76261911 77.33584079 77.72573436 77.90930638 77.7004367 79.29904106\n", + " 80.93014794 82.5883689 84.26818815 85.9633334 87.6639727 89.31207398\n", + " 77.90930638 79.51115144 81.14420271 82.80268356 84.48015158 86.16770212\n", + " 87.84429449 89.31207398 73.67977076 74.84367611 75.87839932 76.72967459\n", + " 77.34173684 77.66614591 73.68843996 74.88082796 75.94981974 76.8404193\n", + " 77.49482717 77.86108402 78.39292403 80.37467767 82.39987127 84.45839268\n", + " 86.53837212 88.6125356 78.60323781 80.5880931 82.61407297 84.6695731\n", + " 86.73723257 88.74545658 73.24742531 73.24742531 89.30399741 89.30399741\n", + " 74.13967578 75.38730878 76.51234476 77.4557749 78.15346667 78.54590996\n", + " 75.35848529 76.77078371 78.07006468 79.18567192 80.03121451 80.5165253\n", + " 76.44822453 78.03255968 79.52764934 80.85445453 81.89945108 82.52079347\n", + " 77.3504272 79.10147139 80.80332064 82.38074874 83.7000473 84.53866109\n", + " 78.00303059 79.89280789 81.78299446 83.6236493 85.30285158 86.52492363\n", + " 78.35049019 80.32186123 82.33135444 84.36297386 86.3856321 88.26407642]\n", + "DEBUG:root:cartToSphere: vec: [[-0.00114705 0.20838541 0.97804612]\n", + " [-0.00115629 0.18089194 0.9835023 ]\n", + " [-0.0011641 0.15270652 0.9882709 ]\n", + " [-0.00117048 0.12393558 0.99228958]\n", + " [-0.00117539 0.09468513 0.99550658]\n", + " [-0.00117881 0.06506336 0.99788044]\n", + " [-0.00118068 0.03518275 0.9993802 ]\n", + " [-0.00118097 0.0051606 0.99998599]\n", + " [-0.00114705 0.20838541 0.97804612]\n", + " [-0.03018244 0.20823844 0.97761228]\n", + " [-0.05910007 0.20782077 0.9763799 ]\n", + " [-0.08778716 0.20713345 0.97436602]\n", + " [-0.11613176 0.20617803 0.9715987 ]\n", + " [-0.14402308 0.20495645 0.96811684]\n", + " [-0.17135219 0.20347155 0.96396979]\n", + " [-0.19801388 0.2017284 0.95921643]\n", + " [-0.00118097 0.0051606 0.99998599]\n", + " [-0.03121228 0.00515607 0.99949948]\n", + " [-0.06111791 0.00514464 0.99811729]\n", + " [-0.09077999 0.00512646 0.99585778]\n", + " [-0.12008538 0.00510175 0.99275046]\n", + " [-0.14892541 0.0050707 0.98883543]\n", + " [-0.17719395 0.00503345 0.98416308]\n", + " [-0.20478471 0.00499006 0.97879432]\n", + " [-0.19801388 0.2017284 0.95921643]\n", + " [-0.19975823 0.17512925 0.96406763]\n", + " [-0.20124936 0.14784829 0.96831791]\n", + " [-0.20248221 0.11999042 0.97190702]\n", + " [-0.20345393 0.09166442 0.97478415]\n", + " [-0.20416257 0.06298098 0.97690892]\n", + " [-0.20460656 0.03405194 0.97825182]\n", + " [-0.20478471 0.00499006 0.97879432]\n", + " [-0.00125101 0.19649007 0.98050502]\n", + " [-0.00126235 0.1623152 0.98673815]\n", + " [-0.00127136 0.12720686 0.99187539]\n", + " [-0.00127799 0.09136033 0.99581708]\n", + " [-0.00128216 0.05497503 0.99848691]\n", + " [-0.00128379 0.01826009 0.99983245]\n", + " [-0.01381426 0.20826196 0.97797552]\n", + " [-0.04933618 0.20789982 0.97690512]\n", + " [-0.08456905 0.20713224 0.97465087]\n", + " [-0.11930642 0.20596186 0.97125985]\n", + " [-0.15334441 0.20439232 0.96680364]\n", + " [-0.18648385 0.20242966 0.96137714]\n", + " [-0.01428247 0.00526224 0.99988415]\n", + " [-0.05101935 0.00525184 0.99868386]\n", + " [-0.08744986 0.00523103 0.99615519]\n", + " [-0.12336368 0.00520016 0.9923479 ]\n", + " [-0.15856056 0.00515961 0.98733577]\n", + " [-0.19284509 0.0051096 0.98121591]\n", + " [-0.1987148 0.19022738 0.96141873]\n", + " [-0.20068229 0.157155 0.96696894]\n", + " [-0.20226422 0.12316211 0.9715556 ]\n", + " [-0.20345456 0.08844755 0.97508116]\n", + " [-0.20424964 0.05321501 0.97747135]\n", + " [-0.20464672 0.01767079 0.97867638]\n", + " [-0.00124645 0.20829266 0.97806575]\n", + " [-0.00124645 0.20829266 0.97806575]\n", + " [-0.20469148 0.0050897 0.97881331]\n", + " [-0.20469148 0.0050897 0.97881331]\n", + " [-0.01386808 0.19646111 0.98041354]\n", + " [-0.04952932 0.19611969 0.9793283 ]\n", + " [-0.08490071 0.19539637 0.97704254]\n", + " [-0.11977552 0.19429398 0.97360345]\n", + " [-0.15394951 0.1928159 0.96908285]\n", + " [-0.18722234 0.19096695 0.96357637]\n", + " [-0.01400325 0.16229116 0.98664355]\n", + " [-0.05001432 0.16200846 0.98552109]\n", + " [-0.08573269 0.16141067 0.9831564 ]\n", + " [-0.12095098 0.16050163 0.9795969 ]\n", + " [-0.15546507 0.15928501 0.97491482]\n", + " [-0.18907339 0.15776388 0.9692068 ]\n", + " [-0.01411268 0.1271878 0.99177825]\n", + " [-0.05040698 0.12696445 0.99062564]\n", + " [-0.08640482 0.12649338 0.98819716]\n", + " [-0.12189811 0.12577923 0.98454072]\n", + " [-0.15668376 0.12482642 0.97972882]\n", + " [-0.19056116 0.12363768 0.97385839]\n", + " [-0.01419584 0.0913464 0.99571799]\n", + " [-0.05070556 0.09118412 0.99454231]\n", + " [-0.08691471 0.09084281 0.99206523]\n", + " [-0.12261435 0.0903271 0.98833534]\n", + " [-0.15760261 0.0896414 0.98342556]\n", + " [-0.19168088 0.08878838 0.97743289]\n", + " [-0.01425179 0.05496643 0.99838649]\n", + " [-0.05090701 0.05486748 0.99719508]\n", + " [-0.08725814 0.05466012 0.99468502]\n", + " [-0.12309542 0.05434775 0.99090557]\n", + " [-0.15821798 0.0539337 0.98593013]\n", + " [-0.19242913 0.05341999 0.97985577]\n", + " [-0.01427955 0.01825699 0.99973135]\n", + " [-0.05100809 0.0182233 0.99853197]\n", + " [-0.08743051 0.01815347 0.9960052 ]\n", + " [-0.12333654 0.01804874 0.99220076]\n", + " [-0.15852587 0.01791034 0.98719237]\n", + " [-0.19280295 0.01773905 0.98107714]]\n", + "DEBUG:root:mm_to_pix: fitpx: [[0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]]\n", + "DEBUG:root:mm_to_pix: fitpx.shape: (96, 2)\n", + "DEBUG:root:radec2pix: xyfp: [[-32.29046994 -31.71666141]\n", + " [-32.28860507 -27.33023323]\n", + " [-32.2867402 -22.94380505]\n", + " [-32.28487534 -18.55737688]\n", + " [-32.28301047 -14.1709487 ]\n", + " [-32.2811456 -9.78452053]\n", + " [-32.27928073 -5.39809235]\n", + " [-32.27741587 -1.01166418]\n", + " [-32.29046994 -31.71666141]\n", + " [-27.90404176 -31.71852627]\n", + " [-23.51761359 -31.72039114]\n", + " [-19.13118541 -31.722256 ]\n", + " [-14.74475724 -31.72412087]\n", + " [-10.35832906 -31.72598574]\n", + " [ -5.97190089 -31.72785061]\n", + " [ -1.58547272 -31.72971547]\n", + " [-32.27741587 -1.01166418]\n", + " [-27.8909877 -1.01352905]\n", + " [-23.50455952 -1.01539391]\n", + " [-19.11813134 -1.01725878]\n", + " [-14.73170317 -1.01912365]\n", + " [-10.345275 -1.02098851]\n", + " [ -5.95884682 -1.02285338]\n", + " [ -1.57241864 -1.02471825]\n", + " [ -1.58547272 -31.72971547]\n", + " [ -1.58360785 -27.3432873 ]\n", + " [ -1.58174298 -22.95685912]\n", + " [ -1.57987811 -18.57043094]\n", + " [ -1.57801325 -14.18400278]\n", + " [ -1.57614838 -9.7975746 ]\n", + " [ -1.57428351 -5.41114642]\n", + " [ -1.57241864 -1.02471825]\n", + " [-32.27465685 -29.80416795]\n", + " [-32.27237127 -24.42816844]\n", + " [-32.2700857 -19.05216893]\n", + " [-32.26780012 -13.67616941]\n", + " [-32.26551454 -8.3001699 ]\n", + " [-32.26322896 -2.92417038]\n", + " [-30.37796373 -31.70247449]\n", + " [-25.00196422 -31.70476008]\n", + " [-19.62596471 -31.70704565]\n", + " [-14.24996519 -31.70933123]\n", + " [ -8.87396568 -31.71161681]\n", + " [ -3.49796617 -31.71390239]\n", + " [-30.36492242 -1.02747727]\n", + " [-24.98892291 -1.02976285]\n", + " [-19.61292339 -1.03204842]\n", + " [-14.23692388 -1.034334 ]\n", + " [ -8.86092437 -1.03661958]\n", + " [ -3.48492485 -1.03890516]\n", + " [ -1.59965962 -29.81720927]\n", + " [ -1.59737405 -24.44120975]\n", + " [ -1.59508847 -19.06521024]\n", + " [ -1.59280289 -13.68921073]\n", + " [ -1.59051731 -8.31321121]\n", + " [ -1.58823174 -2.9372117 ]\n", + " [-32.27546357 -31.70166778]\n", + " [-32.27546357 -31.70166778]\n", + " [ -1.58742502 -1.03971187]\n", + " [ -1.58742502 -1.03971187]\n", + " [-30.37715702 -29.80497466]\n", + " [-25.00115751 -29.80726024]\n", + " [-19.625158 -29.80954582]\n", + " [-14.24915848 -29.8118314 ]\n", + " [ -8.87315897 -29.81411698]\n", + " [ -3.49715945 -29.81640256]\n", + " [-30.37487145 -24.42897515]\n", + " [-24.99887193 -24.43126073]\n", + " [-19.62287241 -24.43354631]\n", + " [-14.2468729 -24.43583188]\n", + " [ -8.87087339 -24.43811746]\n", + " [ -3.49487388 -24.44040305]\n", + " [-30.37258587 -19.05297564]\n", + " [-24.99658635 -19.05526122]\n", + " [-19.62058684 -19.05754679]\n", + " [-14.24458732 -19.05983237]\n", + " [ -8.86858781 -19.06211795]\n", + " [ -3.4925883 -19.06440353]\n", + " [-30.37030029 -13.67697612]\n", + " [-24.99430077 -13.6792617 ]\n", + " [-19.61830126 -13.68154728]\n", + " [-14.24230175 -13.68383286]\n", + " [ -8.86630223 -13.68611844]\n", + " [ -3.49030272 -13.68840401]\n", + " [-30.36801471 -8.30097661]\n", + " [-24.9920152 -8.30326219]\n", + " [-19.61601568 -8.30554776]\n", + " [-14.24001617 -8.30783335]\n", + " [ -8.86401666 -8.31011893]\n", + " [ -3.48801714 -8.3124045 ]\n", + " [-30.36572914 -2.9249771 ]\n", + " [-24.98972962 -2.92726267]\n", + " [-19.6137301 -2.92954825]\n", + " [-14.23773059 -2.93183383]\n", + " [ -8.86173108 -2.93411941]\n", + " [ -3.48573156 -2.93640499]]\n", + "DEBUG:root:radec2pix: camVec: [[-0.00114705 -0.00115629 -0.0011641 -0.00117048 -0.00117539 -0.00117881\n", + " -0.00118068 -0.00118097 -0.00114705 -0.03018244 -0.05910007 -0.08778716\n", + " -0.11613176 -0.14402308 -0.17135219 -0.19801388 -0.00118097 -0.03121228\n", + " -0.06111791 -0.09077999 -0.12008538 -0.14892541 -0.17719395 -0.20478471\n", + " -0.19801388 -0.19975823 -0.20124936 -0.20248221 -0.20345393 -0.20416257\n", + " -0.20460656 -0.20478471 -0.00125101 -0.00126235 -0.00127136 -0.00127799\n", + " -0.00128216 -0.00128379 -0.01381426 -0.04933618 -0.08456905 -0.11930642\n", + " -0.15334441 -0.18648385 -0.01428247 -0.05101935 -0.08744986 -0.12336368\n", + " -0.15856056 -0.19284509 -0.1987148 -0.20068229 -0.20226422 -0.20345456\n", + " -0.20424964 -0.20464672 -0.00124645 -0.00124645 -0.20469148 -0.20469148\n", + " -0.01386808 -0.04952932 -0.08490071 -0.11977552 -0.15394951 -0.18722234\n", + " -0.01400325 -0.05001432 -0.08573269 -0.12095098 -0.15546507 -0.18907339\n", + " -0.01411268 -0.05040698 -0.08640482 -0.12189811 -0.15668376 -0.19056116\n", + " -0.01419584 -0.05070556 -0.08691471 -0.12261435 -0.15760261 -0.19168088\n", + " -0.01425179 -0.05090701 -0.08725814 -0.12309542 -0.15821798 -0.19242913\n", + " -0.01427955 -0.05100809 -0.08743051 -0.12333654 -0.15852587 -0.19280295]\n", + " [ 0.20838541 0.18089194 0.15270652 0.12393558 0.09468513 0.06506336\n", + " 0.03518275 0.0051606 0.20838541 0.20823844 0.20782077 0.20713345\n", + " 0.20617803 0.20495645 0.20347155 0.2017284 0.0051606 0.00515607\n", + " 0.00514464 0.00512646 0.00510175 0.0050707 0.00503345 0.00499006\n", + " 0.2017284 0.17512925 0.14784829 0.11999042 0.09166442 0.06298098\n", + " 0.03405194 0.00499006 0.19649007 0.1623152 0.12720686 0.09136033\n", + " 0.05497503 0.01826009 0.20826196 0.20789982 0.20713224 0.20596186\n", + " 0.20439232 0.20242966 0.00526224 0.00525184 0.00523103 0.00520016\n", + " 0.00515961 0.0051096 0.19022738 0.157155 0.12316211 0.08844755\n", + " 0.05321501 0.01767079 0.20829266 0.20829266 0.0050897 0.0050897\n", + " 0.19646111 0.19611969 0.19539637 0.19429398 0.1928159 0.19096695\n", + " 0.16229116 0.16200846 0.16141067 0.16050163 0.15928501 0.15776388\n", + " 0.1271878 0.12696445 0.12649338 0.12577923 0.12482642 0.12363768\n", + " 0.0913464 0.09118412 0.09084281 0.0903271 0.0896414 0.08878838\n", + " 0.05496643 0.05486748 0.05466012 0.05434775 0.0539337 0.05341999\n", + " 0.01825699 0.0182233 0.01815347 0.01804874 0.01791034 0.01773905]\n", + " [ 0.97804612 0.9835023 0.9882709 0.99228958 0.99550658 0.99788044\n", + " 0.9993802 0.99998599 0.97804612 0.97761228 0.9763799 0.97436602\n", + " 0.9715987 0.96811684 0.96396979 0.95921643 0.99998599 0.99949948\n", + " 0.99811729 0.99585778 0.99275046 0.98883543 0.98416308 0.97879432\n", + " 0.95921643 0.96406763 0.96831791 0.97190702 0.97478415 0.97690892\n", + " 0.97825182 0.97879432 0.98050502 0.98673815 0.99187539 0.99581708\n", + " 0.99848691 0.99983245 0.97797552 0.97690512 0.97465087 0.97125985\n", + " 0.96680364 0.96137714 0.99988415 0.99868386 0.99615519 0.9923479\n", + " 0.98733577 0.98121591 0.96141873 0.96696894 0.9715556 0.97508116\n", + " 0.97747135 0.97867638 0.97806575 0.97806575 0.97881331 0.97881331\n", + " 0.98041354 0.9793283 0.97704254 0.97360345 0.96908285 0.96357637\n", + " 0.98664355 0.98552109 0.9831564 0.9795969 0.97491482 0.9692068\n", + " 0.99177825 0.99062564 0.98819716 0.98454072 0.97972882 0.97385839\n", + " 0.99571799 0.99454231 0.99206523 0.98833534 0.98342556 0.97743289\n", + " 0.99838649 0.99719508 0.99468502 0.99090557 0.98593013 0.97985577\n", + " 0.99973135 0.99853197 0.9960052 0.99220076 0.98719237 0.98107714]]\n", + "DEBUG:root:radec2pix: camVec Shape: (3, 96)\n", + "DEBUG:root:radec2pix: lng: [ 90.31538026 90.36623882 90.43676438 90.5410988 90.71121584\n", + " 91.03796151 91.92203204 102.88976492 90.31538026 98.24711833\n", + " 105.87469321 112.96816895 119.3908045 125.09574844 130.10218059\n", + " 134.46760759 102.88976492 170.61981741 175.18843619 176.76786642\n", + " 177.56728748 178.0499121 178.37286738 178.60412954 134.46760759\n", + " 138.7587586 143.69705248 149.3491301 155.74646239 162.85581906\n", + " 170.55107093 178.60412954 90.36478543 90.44558973 90.57261901\n", + " 90.80142559 91.33604138 94.02159324 93.79493665 103.34977578\n", + " 112.20947139 120.08219547 126.87889854 132.65213472 159.7741798\n", + " 174.12277646 176.57679256 177.5862344 178.13623505 178.48225333\n", + " 136.25009833 141.93538112 148.66205842 156.50402904 165.39685811\n", + " 175.06487905 90.34286209 90.34286209 178.57562014 178.57562014\n", + " 94.0377805 104.17347615 113.48518905 121.65239591 128.60482826\n", + " 134.43270854 94.93153704 107.15620301 117.97484261 127.00098521\n", + " 134.30466928 140.15819331 96.33160595 111.65389266 124.33611449\n", + " 134.10224284 141.45645803 147.02415603 98.83348775 119.07751066\n", + " 133.73407847 143.6218029 150.36959526 155.14598444 104.53566541\n", + " 132.85570308 147.93620706 156.17810512 161.17666862 164.48488524\n", + " 128.03043433 160.3400738 168.27016728 171.67458296 173.55402386\n", + " 174.74323713]\n", + "DEBUG:root:radec2pix: xyfp: [[32.2358199 31.31614388]\n", + " [32.23338667 26.92971599]\n", + " [32.23095344 22.54328809]\n", + " [32.2285202 18.15686019]\n", + " [32.22608698 13.7704323 ]\n", + " [32.22365375 9.3840044 ]\n", + " [32.22122051 4.99757651]\n", + " [32.21878728 0.61114861]\n", + " [32.2358199 31.31614388]\n", + " [27.849392 31.31857712]\n", + " [23.46296411 31.32101035]\n", + " [19.07653621 31.32344358]\n", + " [14.69010831 31.3258768 ]\n", + " [10.30368042 31.32831004]\n", + " [ 5.91725252 31.33074327]\n", + " [ 1.53082462 31.3331765 ]\n", + " [32.21878728 0.61114861]\n", + " [27.83235938 0.61358184]\n", + " [23.44593149 0.61601507]\n", + " [19.0595036 0.6184483 ]\n", + " [14.6730757 0.62088153]\n", + " [10.2866478 0.62331476]\n", + " [ 5.90021991 0.625748 ]\n", + " [ 1.513792 0.62818122]\n", + " [ 1.53082462 31.3331765 ]\n", + " [ 1.52839139 26.94674861]\n", + " [ 1.52595816 22.5603207 ]\n", + " [ 1.52352493 18.17389281]\n", + " [ 1.5210917 13.78746492]\n", + " [ 1.51865847 9.40103702]\n", + " [ 1.51622524 5.01460912]\n", + " [ 1.513792 0.62818122]\n", + " [32.219759 29.4036525 ]\n", + " [32.21677684 24.02765333]\n", + " [32.21379467 18.65165415]\n", + " [32.21081251 13.27565498]\n", + " [32.20783035 7.89965581]\n", + " [32.20484818 2.52365664]\n", + " [30.32331188 31.30220479]\n", + " [24.9473127 31.30518695]\n", + " [19.57131353 31.30816912]\n", + " [14.19531435 31.31115127]\n", + " [ 8.81931518 31.31413344]\n", + " [ 3.44331601 31.3171156 ]\n", + " [30.3062959 0.62720951]\n", + " [24.93029672 0.63019167]\n", + " [19.55429755 0.63317383]\n", + " [14.17829838 0.636156 ]\n", + " [ 8.80229921 0.63913816]\n", + " [ 3.42630004 0.64212033]\n", + " [ 1.54476372 29.42066847]\n", + " [ 1.54178156 24.0446693 ]\n", + " [ 1.53879939 18.66867013]\n", + " [ 1.53581723 13.29267096]\n", + " [ 1.53283507 7.91667178]\n", + " [ 1.5298529 2.54067261]\n", + " [32.22081158 31.30115221]\n", + " [32.22081158 31.30115221]\n", + " [ 1.52880032 0.6431729 ]\n", + " [ 1.52880032 0.6431729 ]\n", + " [30.32225929 29.40470508]\n", + " [24.94626012 29.40768724]\n", + " [19.57026095 29.41066941]\n", + " [14.19426178 29.41365157]\n", + " [ 8.8182626 29.41663373]\n", + " [ 3.44226343 29.4196159 ]\n", + " [30.31927713 24.02870591]\n", + " [24.94327796 24.03168807]\n", + " [19.56727878 24.03467023]\n", + " [14.19127961 24.0376524 ]\n", + " [ 8.81528044 24.04063456]\n", + " [ 3.43928127 24.04361672]\n", + " [30.31629496 18.65270673]\n", + " [24.9402958 18.6556889 ]\n", + " [19.56429662 18.65867106]\n", + " [14.18829744 18.66165322]\n", + " [ 8.81229827 18.66463538]\n", + " [ 3.4362991 18.66761755]\n", + " [30.31331281 13.27670756]\n", + " [24.93731363 13.27968972]\n", + " [19.56131446 13.28267189]\n", + " [14.18531529 13.28565406]\n", + " [ 8.80931611 13.28863621]\n", + " [ 3.43331694 13.29161838]\n", + " [30.31033064 7.90070839]\n", + " [24.93433147 7.90369055]\n", + " [19.55833229 7.90667271]\n", + " [14.18233312 7.90965488]\n", + " [ 8.80633395 7.91263704]\n", + " [ 3.43033477 7.9156192 ]\n", + " [30.30734847 2.52470921]\n", + " [24.9313493 2.52769138]\n", + " [19.55535013 2.53067354]\n", + " [14.17935096 2.53365571]\n", + " [ 8.80335178 2.53663787]\n", + " [ 3.42735261 2.53962004]]\n", + "DEBUG:root:optics_fp: rtanth: [45.12621722 42.17029986 39.48131725 37.11732942 35.14398081 33.63010767\n", + " 32.639706 32.22108294 45.12621722 42.10767167 39.34740219 36.90340926\n", + " 34.84231167 33.23542179 32.15091525 31.64254972 32.22108294 27.83664346\n", + " 23.45294788 19.07050919 14.69045227 10.31581149 5.95852807 1.75318507\n", + " 31.64254972 27.26187195 22.88339755 18.50869029 14.14124675 9.79079234\n", + " 5.49780688 1.75318507 43.79692971 40.34599343 37.35277865 34.93513576\n", + " 33.218972 32.31623807 43.77085556 40.23738319 37.14847194 34.62331124\n", + " 32.79239466 31.77595577 30.30982943 24.93681956 19.5654525 14.19759296\n", + " 8.839633 3.53685305 29.73311087 24.36567291 19.00307614 13.6510271\n", + " 8.32988182 3.19782325 45.10500496 45.10500496 1.7737717 1.7737717\n", + " 42.42166164 38.76540449 35.54881922 32.90111338 30.96854417 29.89014797\n", + " 38.84875172 34.81931533 31.19850449 28.14447363 25.85882561 24.55705763\n", + " 35.73032881 31.30200643 27.21722925 23.65464611 20.88324085 19.24785615\n", + " 33.19472902 28.37338973 23.79099004 19.61570597 16.16611847 13.98976784\n", + " 31.38353749 26.23138645 21.19074319 16.36497207 12.01581361 8.87411937\n", + " 30.4263959 25.07837271 19.74554986 14.44477252 9.23140937 4.4259617 ]\n", + "DEBUG:root:radec2pix: ccdpx: [[-4.45000003e+01 -5.00000268e-01]\n", + " [-4.44999998e+01 2.91928572e+02]\n", + " [-4.44999999e+01 5.84357143e+02]\n", + " [-4.45000000e+01 8.76785714e+02]\n", + " [-4.44999998e+01 1.16921429e+03]\n", + " [-4.44999999e+01 1.46164286e+03]\n", + " [-4.44999997e+01 1.75407143e+03]\n", + " [-4.44999999e+01 2.04650000e+03]\n", + " [-4.45000003e+01 -5.00000268e-01]\n", + " [ 2.47928572e+02 -4.99999720e-01]\n", + " [ 5.40357143e+02 -5.00000140e-01]\n", + " [ 8.32785714e+02 -4.99999791e-01]\n", + " [ 1.12521429e+03 -4.99999975e-01]\n", + " [ 1.41764286e+03 -4.99999912e-01]\n", + " [ 1.71007143e+03 -4.99999978e-01]\n", + " [ 2.00250000e+03 -4.99999991e-01]\n", + " [-4.44999999e+01 2.04650000e+03]\n", + " [ 2.47928571e+02 2.04650000e+03]\n", + " [ 5.40357143e+02 2.04650000e+03]\n", + " [ 8.32785715e+02 2.04650000e+03]\n", + " [ 1.12521429e+03 2.04650000e+03]\n", + " [ 1.41764286e+03 2.04650000e+03]\n", + " [ 1.71007143e+03 2.04650000e+03]\n", + " [ 2.00250000e+03 2.04650000e+03]\n", + " [ 2.00250000e+03 -4.99999991e-01]\n", + " [ 2.00250000e+03 2.91928572e+02]\n", + " [ 2.00250000e+03 5.84357143e+02]\n", + " [ 2.00250000e+03 8.76785715e+02]\n", + " [ 2.00250000e+03 1.16921429e+03]\n", + " [ 2.00250000e+03 1.46164286e+03]\n", + " [ 2.00250000e+03 1.75407143e+03]\n", + " [ 2.00250000e+03 2.04650000e+03]\n", + " [-4.34999998e+01 1.27000000e+02]\n", + " [-4.35000000e+01 4.85400000e+02]\n", + " [-4.35000001e+01 8.43800000e+02]\n", + " [-4.35000000e+01 1.20220000e+03]\n", + " [-4.35000001e+01 1.56060000e+03]\n", + " [-4.34999999e+01 1.91900000e+03]\n", + " [ 8.30000001e+01 5.00000092e-01]\n", + " [ 4.41400000e+02 4.99999764e-01]\n", + " [ 7.99800000e+02 4.99999911e-01]\n", + " [ 1.15820000e+03 5.00000156e-01]\n", + " [ 1.51660000e+03 4.99999840e-01]\n", + " [ 1.87500000e+03 4.99999915e-01]\n", + " [ 8.29999998e+01 2.04550000e+03]\n", + " [ 4.41400000e+02 2.04550000e+03]\n", + " [ 7.99800000e+02 2.04550000e+03]\n", + " [ 1.15820000e+03 2.04550000e+03]\n", + " [ 1.51660000e+03 2.04550000e+03]\n", + " [ 1.87500000e+03 2.04550000e+03]\n", + " [ 2.00150000e+03 1.27000000e+02]\n", + " [ 2.00150000e+03 4.85400000e+02]\n", + " [ 2.00150000e+03 8.43800000e+02]\n", + " [ 2.00150000e+03 1.20220000e+03]\n", + " [ 2.00150000e+03 1.56060000e+03]\n", + " [ 2.00150000e+03 1.91900000e+03]\n", + " [-4.35000000e+01 4.99999958e-01]\n", + " [-4.35000000e+01 4.99999958e-01]\n", + " [ 2.00150000e+03 2.04550000e+03]\n", + " [ 2.00150000e+03 2.04550000e+03]\n", + " [ 8.30000002e+01 1.27000000e+02]\n", + " [ 4.41400000e+02 1.27000000e+02]\n", + " [ 7.99800000e+02 1.27000000e+02]\n", + " [ 1.15820000e+03 1.27000000e+02]\n", + " [ 1.51660000e+03 1.27000000e+02]\n", + " [ 1.87500000e+03 1.27000000e+02]\n", + " [ 8.29999999e+01 4.85400000e+02]\n", + " [ 4.41400000e+02 4.85400000e+02]\n", + " [ 7.99800000e+02 4.85400000e+02]\n", + " [ 1.15820000e+03 4.85400000e+02]\n", + " [ 1.51660000e+03 4.85400000e+02]\n", + " [ 1.87500000e+03 4.85400000e+02]\n", + " [ 8.30000001e+01 8.43800000e+02]\n", + " [ 4.41400000e+02 8.43800000e+02]\n", + " [ 7.99800000e+02 8.43800000e+02]\n", + " [ 1.15820000e+03 8.43800000e+02]\n", + " [ 1.51660000e+03 8.43800000e+02]\n", + " [ 1.87500000e+03 8.43800000e+02]\n", + " [ 8.29999999e+01 1.20220000e+03]\n", + " [ 4.41400000e+02 1.20220000e+03]\n", + " [ 7.99800000e+02 1.20220000e+03]\n", + " [ 1.15820000e+03 1.20220000e+03]\n", + " [ 1.51660000e+03 1.20220000e+03]\n", + " [ 1.87500000e+03 1.20220000e+03]\n", + " [ 8.29999999e+01 1.56060000e+03]\n", + " [ 4.41400000e+02 1.56060000e+03]\n", + " [ 7.99800000e+02 1.56060000e+03]\n", + " [ 1.15820000e+03 1.56060000e+03]\n", + " [ 1.51660000e+03 1.56060000e+03]\n", + " [ 1.87500000e+03 1.56060000e+03]\n", + " [ 8.29999998e+01 1.91900000e+03]\n", + " [ 4.41400000e+02 1.91900000e+03]\n", + " [ 7.99800000e+02 1.91900000e+03]\n", + " [ 1.15820000e+03 1.91900000e+03]\n", + " [ 1.51660000e+03 1.91900000e+03]\n", + " [ 1.87500000e+03 1.91900000e+03]]\n", + "DEBUG:root:radec2pix: fitpx: [[2135.5 4155.4999999 ]\n", + " [2135.5 3863.07142835]\n", + " [2135.5 3570.64285687]\n", + " [2135.5 3278.21428534]\n", + " [2135.5 2985.78571398]\n", + " [2135.5 2693.35714282]\n", + " [2135.50000001 2400.92857102]\n", + " [2135.50000006 2108.49999973]\n", + " [2135.5 4155.4999999 ]\n", + " [1843.07142859 4155.4999999 ]\n", + " [1550.64285722 4155.49999973]\n", + " [1258.21428568 4155.50000007]\n", + " [ 965.78571413 4155.50000028]\n", + " [ 673.35714288 4155.49999997]\n", + " [ 380.92857125 4155.50000021]\n", + " [ 88.4999998 4155.5000002 ]\n", + " [2135.50000006 2108.49999973]\n", + " [1843.07142866 2108.49999999]\n", + " [1550.64285735 2108.49999998]\n", + " [1258.21428559 2108.50000001]\n", + " [ 965.78571467 2108.49999998]\n", + " [ 673.35714297 2108.5 ]\n", + " [ 380.92857138 2108.5 ]\n", + " [ 88.49999984 2108.5 ]\n", + " [ 88.4999998 4155.5000002 ]\n", + " [ 88.49999999 3863.07142858]\n", + " [ 88.50000023 3570.64285698]\n", + " [ 88.4999999 3278.21428577]\n", + " [ 88.50000002 2985.78571428]\n", + " [ 88.50000017 2693.35714281]\n", + " [ 88.49999997 2400.92857143]\n", + " [ 88.49999984 2108.5 ]\n", + " [2134.5 4027.99999995]\n", + " [2134.5 3669.59999994]\n", + " [2134.5 3311.20000034]\n", + " [2134.5 2952.80000006]\n", + " [2134.5 2594.39999997]\n", + " [2134.49999998 2236.00000031]\n", + " [2008.00000001 4154.49999991]\n", + " [1649.60000005 4154.49999977]\n", + " [1291.19999995 4154.50000012]\n", + " [ 932.80000008 4154.49999986]\n", + " [ 574.40000013 4154.49999983]\n", + " [ 215.99999993 4154.50000007]\n", + " [2007.99999975 2109.50000009]\n", + " [1649.5999999 2109.50000001]\n", + " [1291.19999978 2109.50000001]\n", + " [ 932.80000001 2109.5 ]\n", + " [ 574.40000043 2109.49999999]\n", + " [ 216.00000004 2109.5 ]\n", + " [ 89.50000001 4027.99999999]\n", + " [ 89.4999998 3669.60000015]\n", + " [ 89.50000012 3311.19999993]\n", + " [ 89.50000006 2952.79999997]\n", + " [ 89.49999988 2594.40000003]\n", + " [ 89.50000008 2235.99999999]\n", + " [2134.5 4154.49999983]\n", + " [2134.5 4154.49999983]\n", + " [ 89.49999987 2109.5 ]\n", + " [ 89.49999987 2109.5 ]\n", + " [2008. 4027.99999995]\n", + " [1649.60000002 4027.99999993]\n", + " [1291.20000002 4027.99999996]\n", + " [ 932.80000002 4027.99999996]\n", + " [ 574.4000002 4027.99999975]\n", + " [ 215.99999985 4028.00000015]\n", + " [2008.00000001 3669.59999986]\n", + " [1649.60000005 3669.59999982]\n", + " [1291.19999995 3669.60000009]\n", + " [ 932.79999997 3669.60000004]\n", + " [ 574.40000017 3669.59999983]\n", + " [ 215.99999977 3669.60000019]\n", + " [2007.99999999 3311.20000007]\n", + " [1649.5999999 3311.20000024]\n", + " [1291.20000003 3311.19999996]\n", + " [ 932.80000003 3311.19999997]\n", + " [ 574.40000015 3311.19999988]\n", + " [ 216.00000001 3311.19999999]\n", + " [2008.00000002 2952.79999987]\n", + " [1649.59999985 2952.80000027]\n", + " [1291.1999999 2952.80000011]\n", + " [ 932.80000032 2952.79999977]\n", + " [ 574.39999984 2952.80000009]\n", + " [ 216.00000025 2952.79999989]\n", + " [2007.99999995 2594.40000018]\n", + " [1649.59999988 2594.40000012]\n", + " [1291.19999985 2594.4000001 ]\n", + " [ 932.79999977 2594.4000001 ]\n", + " [ 574.39999985 2594.40000005]\n", + " [ 216.00000009 2594.39999997]\n", + " [2007.99999988 2236.00000015]\n", + " [1649.60000009 2235.99999997]\n", + " [1291.19999998 2236. ]\n", + " [ 932.79999991 2236.00000001]\n", + " [ 574.39999979 2236.00000002]\n", + " [ 215.99999986 2236.00000001]]\n", + "DEBUG:root:fitpix2pix: ccdpx: shape: (96, 2)\n", + "DEBUG:root:fitpix2pix: visCut: True\n", + "DEBUG:root:optics_fp: cphi: [0.713738 0.76376784 0.81578691 0.86774466 0.91646952 0.95772545\n", + " 0.98678686 0.99960811 0.713738 0.66073156 0.59560321 0.51618565\n", + " 0.42082689 0.3091928 0.18318995 0.04750869 0.99960811 0.99947492\n", + " 0.99926025 0.99888104 0.99811368 0.99617106 0.98847974 0.85755676\n", + " 0.04750869 0.05514364 0.06569574 0.08122479 0.10631221 0.15355346\n", + " 0.27346048 0.85755676 0.73505851 0.79793137 0.86187328 0.92151896\n", + " 0.96912745 0.99620029 0.69214539 0.6193195 0.5260996 0.40919818\n", + " 0.26810473 0.10749625 0.99954227 0.99932373 0.99890128 0.99791251\n", + " 0.99460641 0.9658178 0.05106448 0.06231447 0.07990085 0.11122898\n", + " 0.18228563 0.4748373 0.71374111 0.71374111 0.85606035 0.85606035\n", + " 0.71415887 0.64283622 0.5497737 0.43061783 0.28389471 0.11427866\n", + " 0.7798406 0.71568995 0.62643496 0.50339666 0.33999355 0.13909785\n", + " 0.84790325 0.79611069 0.71806949 0.59894626 0.42100084 0.17746713\n", + " 0.9126717 0.87828385 0.82148283 0.72227275 0.54384668 0.24417059\n", + " 0.96534426 0.95000384 0.92228562 0.86574653 0.73169559 0.38493034\n", + " 0.9957126 0.99368273 0.9897899 0.98083551 0.95239474 0.77179741]\n", + "DEBUG:root:optics_fp: sphi: [0.70041278 0.64549104 0.5783526 0.49701026 0.40010451 0.28768378\n", + " 0.16202376 0.02799345 0.70041278 0.75062228 0.80327879 0.85647672\n", + " 0.90714096 0.95099938 0.98307754 0.99887082 0.02799345 0.03240177\n", + " 0.03845716 0.04729349 0.06139281 0.08742554 0.15135324 0.51438935\n", + " 0.99887082 0.99847843 0.9978397 0.99669581 0.9943328 0.98814034\n", + " 0.96188324 0.51438935 0.67800368 0.60274831 0.5071237 0.38833338\n", + " 0.24656029 0.0870918 0.7217581 0.78513907 0.85042296 0.91244553\n", + " 0.96338977 0.99420549 0.03025321 0.03677059 0.04686391 0.06458036\n", + " 0.10372123 0.25922188 0.99869536 0.99805657 0.99680282 0.9937948\n", + " 0.98324562 0.8800736 0.70040962 0.70040962 0.51687588 0.51687588\n", + " 0.69998365 0.76600365 0.83531364 0.90253437 0.95885546 0.99344873\n", + " 0.62597814 0.69841814 0.77947369 0.86405544 0.94042777 0.99027864\n", + " 0.530151 0.60515103 0.69597142 0.80078922 0.90706025 0.98412673\n", + " 0.40869348 0.47813961 0.57023325 0.69160833 0.8391846 0.9697323\n", + " 0.2609798 0.31223822 0.38650903 0.50048271 0.68163155 0.92294563\n", + " 0.09250092 0.11222584 0.14253407 0.19483765 0.3048676 0.63586851]\n", + "DEBUG:root:radec2pix: lat: [77.97206498 79.57806769 81.21593647 82.8803899 84.56638266 86.26889583\n", + " 87.98262539 89.69667435 77.97206498 77.85336036 77.52222772 76.99897078\n", + " 76.31199967 75.49295235 74.57292056 73.58021644 89.69667435 88.18712874\n", + " 86.48361023 84.78319776 83.0967184 81.43034165 79.78948121 78.17954495\n", + " 73.58021644 74.59400834 75.53901524 76.38685312 77.10589211 77.66330027\n", + " 78.02875412 78.17954495 78.66798463 80.65841057 82.69141578 84.75761477\n", + " 86.84771627 88.95113309 77.95267103 77.66228009 77.07171569 76.23019363\n", + " 75.19557036 74.02401451 89.12786485 87.06007007 84.97409331 82.90740441\n", + " 80.87177406 78.87718093 74.03267423 75.23268127 76.30156716 77.18237665\n", + " 77.81504555 78.14660304 77.97746528 77.97746528 78.18485708 78.18485708\n", + " 78.64134167 78.32984157 77.69918411 76.80616019 75.71557851 74.48840848\n", + " 80.62507537 80.23817759 79.46907283 78.40617113 77.13948546 75.74438817\n", + " 82.64779184 82.14857946 81.18831589 79.91227353 78.44384133 76.87031089\n", + " 84.69583972 84.01119948 82.77741875 81.24014725 79.55379065 77.80461009\n", + " 86.74476583 85.70761057 84.09008812 82.26687253 80.3773841 78.48020641\n", + " 88.67187538 86.89501933 84.87693536 82.83944721 80.82012657 78.83603949]\n", + "DEBUG:root:radec2pix: ccdpx: [[-4.44999999e+01 -4.99999855e-01]\n", + " [-4.45000000e+01 2.91928571e+02]\n", + " [-4.45000000e+01 5.84357143e+02]\n", + " [-4.44999998e+01 8.76785714e+02]\n", + " [-4.45000001e+01 1.16921429e+03]\n", + " [-4.45000000e+01 1.46164286e+03]\n", + " [-4.45000000e+01 1.75407143e+03]\n", + " [-4.44999999e+01 2.04650000e+03]\n", + " [-4.44999999e+01 -4.99999855e-01]\n", + " [ 2.47928571e+02 -5.00000005e-01]\n", + " [ 5.40357143e+02 -5.00000101e-01]\n", + " [ 8.32785714e+02 -5.00000211e-01]\n", + " [ 1.12521429e+03 -4.99999718e-01]\n", + " [ 1.41764286e+03 -5.00000108e-01]\n", + " [ 1.71007143e+03 -4.99999976e-01]\n", + " [ 2.00250000e+03 -5.00000222e-01]\n", + " [-4.44999999e+01 2.04650000e+03]\n", + " [ 2.47928572e+02 2.04650000e+03]\n", + " [ 5.40357143e+02 2.04650000e+03]\n", + " [ 8.32785714e+02 2.04650000e+03]\n", + " [ 1.12521429e+03 2.04650000e+03]\n", + " [ 1.41764286e+03 2.04650000e+03]\n", + " [ 1.71007143e+03 2.04650000e+03]\n", + " [ 2.00250000e+03 2.04650000e+03]\n", + " [ 2.00250000e+03 -5.00000222e-01]\n", + " [ 2.00250000e+03 2.91928571e+02]\n", + " [ 2.00250000e+03 5.84357143e+02]\n", + " [ 2.00250000e+03 8.76785714e+02]\n", + " [ 2.00250000e+03 1.16921429e+03]\n", + " [ 2.00250000e+03 1.46164286e+03]\n", + " [ 2.00250000e+03 1.75407143e+03]\n", + " [ 2.00250000e+03 2.04650000e+03]\n", + " [-4.35000000e+01 1.27000000e+02]\n", + " [-4.35000000e+01 4.85400000e+02]\n", + " [-4.34999998e+01 8.43800000e+02]\n", + " [-4.35000001e+01 1.20220000e+03]\n", + " [-4.35000000e+01 1.56060000e+03]\n", + " [-4.34999999e+01 1.91900000e+03]\n", + " [ 8.29999998e+01 4.99999766e-01]\n", + " [ 4.41400000e+02 4.99999737e-01]\n", + " [ 7.99800000e+02 4.99999723e-01]\n", + " [ 1.15820000e+03 5.00000251e-01]\n", + " [ 1.51660000e+03 4.99999874e-01]\n", + " [ 1.87500000e+03 5.00000148e-01]\n", + " [ 8.30000001e+01 2.04550000e+03]\n", + " [ 4.41400000e+02 2.04550000e+03]\n", + " [ 7.99800000e+02 2.04550000e+03]\n", + " [ 1.15820000e+03 2.04550000e+03]\n", + " [ 1.51660000e+03 2.04550000e+03]\n", + " [ 1.87500000e+03 2.04550000e+03]\n", + " [ 2.00150000e+03 1.27000000e+02]\n", + " [ 2.00150000e+03 4.85400000e+02]\n", + " [ 2.00150000e+03 8.43800000e+02]\n", + " [ 2.00150000e+03 1.20220000e+03]\n", + " [ 2.00150000e+03 1.56060000e+03]\n", + " [ 2.00150000e+03 1.91900000e+03]\n", + " [-4.35000002e+01 4.99999824e-01]\n", + " [-4.35000002e+01 4.99999824e-01]\n", + " [ 2.00150000e+03 2.04550000e+03]\n", + " [ 2.00150000e+03 2.04550000e+03]\n", + " [ 8.30000001e+01 1.27000000e+02]\n", + " [ 4.41400000e+02 1.27000000e+02]\n", + " [ 7.99800000e+02 1.27000000e+02]\n", + " [ 1.15820000e+03 1.27000000e+02]\n", + " [ 1.51660000e+03 1.27000000e+02]\n", + " [ 1.87500000e+03 1.27000000e+02]\n", + " [ 8.29999998e+01 4.85400000e+02]\n", + " [ 4.41400000e+02 4.85400000e+02]\n", + " [ 7.99800000e+02 4.85400000e+02]\n", + " [ 1.15820000e+03 4.85400000e+02]\n", + " [ 1.51660000e+03 4.85400000e+02]\n", + " [ 1.87500000e+03 4.85400000e+02]\n", + " [ 8.30000003e+01 8.43800000e+02]\n", + " [ 4.41400000e+02 8.43800000e+02]\n", + " [ 7.99800000e+02 8.43800000e+02]\n", + " [ 1.15820000e+03 8.43800000e+02]\n", + " [ 1.51660000e+03 8.43800000e+02]\n", + " [ 1.87500000e+03 8.43800000e+02]\n", + " [ 8.29999997e+01 1.20220000e+03]\n", + " [ 4.41400000e+02 1.20220000e+03]\n", + " [ 7.99800000e+02 1.20220000e+03]\n", + " [ 1.15820000e+03 1.20220000e+03]\n", + " [ 1.51660000e+03 1.20220000e+03]\n", + " [ 1.87500000e+03 1.20220000e+03]\n", + " [ 8.30000001e+01 1.56060000e+03]\n", + " [ 4.41400000e+02 1.56060000e+03]\n", + " [ 7.99800000e+02 1.56060000e+03]\n", + " [ 1.15820000e+03 1.56060000e+03]\n", + " [ 1.51660000e+03 1.56060000e+03]\n", + " [ 1.87500000e+03 1.56060000e+03]\n", + " [ 8.30000000e+01 1.91900000e+03]\n", + " [ 4.41400000e+02 1.91900000e+03]\n", + " [ 7.99800000e+02 1.91900000e+03]\n", + " [ 1.15820000e+03 1.91900000e+03]\n", + " [ 1.51660000e+03 1.91900000e+03]\n", + " [ 1.87500000e+03 1.91900000e+03]]\n", + "DEBUG:root:radec2pix: fitpx: [[-5.00000272e-01 -5.00000268e-01]\n", + " [-4.99999785e-01 2.91928572e+02]\n", + " [-4.99999908e-01 5.84357143e+02]\n", + " [-4.99999976e-01 8.76785714e+02]\n", + " [-4.99999814e-01 1.16921429e+03]\n", + " [-4.99999859e-01 1.46164286e+03]\n", + " [-4.99999732e-01 1.75407143e+03]\n", + " [-4.99999866e-01 2.04650000e+03]\n", + " [-5.00000272e-01 -5.00000268e-01]\n", + " [ 2.91928572e+02 -4.99999720e-01]\n", + " [ 5.84357143e+02 -5.00000140e-01]\n", + " [ 8.76785714e+02 -4.99999791e-01]\n", + " [ 1.16921429e+03 -4.99999975e-01]\n", + " [ 1.46164286e+03 -4.99999912e-01]\n", + " [ 1.75407143e+03 -4.99999978e-01]\n", + " [ 2.04650000e+03 -4.99999991e-01]\n", + " [-4.99999866e-01 2.04650000e+03]\n", + " [ 2.91928571e+02 2.04650000e+03]\n", + " [ 5.84357143e+02 2.04650000e+03]\n", + " [ 8.76785715e+02 2.04650000e+03]\n", + " [ 1.16921429e+03 2.04650000e+03]\n", + " [ 1.46164286e+03 2.04650000e+03]\n", + " [ 1.75407143e+03 2.04650000e+03]\n", + " [ 2.04650000e+03 2.04650000e+03]\n", + " [ 2.04650000e+03 -4.99999991e-01]\n", + " [ 2.04650000e+03 2.91928572e+02]\n", + " [ 2.04650000e+03 5.84357143e+02]\n", + " [ 2.04650000e+03 8.76785715e+02]\n", + " [ 2.04650000e+03 1.16921429e+03]\n", + " [ 2.04650000e+03 1.46164286e+03]\n", + " [ 2.04650000e+03 1.75407143e+03]\n", + " [ 2.04650000e+03 2.04650000e+03]\n", + " [ 5.00000192e-01 1.27000000e+02]\n", + " [ 4.99999990e-01 4.85400000e+02]\n", + " [ 4.99999881e-01 8.43800000e+02]\n", + " [ 5.00000044e-01 1.20220000e+03]\n", + " [ 4.99999938e-01 1.56060000e+03]\n", + " [ 5.00000069e-01 1.91900000e+03]\n", + " [ 1.27000000e+02 5.00000092e-01]\n", + " [ 4.85400000e+02 4.99999764e-01]\n", + " [ 8.43800000e+02 4.99999911e-01]\n", + " [ 1.20220000e+03 5.00000156e-01]\n", + " [ 1.56060000e+03 4.99999840e-01]\n", + " [ 1.91900000e+03 4.99999915e-01]\n", + " [ 1.27000000e+02 2.04550000e+03]\n", + " [ 4.85400000e+02 2.04550000e+03]\n", + " [ 8.43800000e+02 2.04550000e+03]\n", + " [ 1.20220000e+03 2.04550000e+03]\n", + " [ 1.56060000e+03 2.04550000e+03]\n", + " [ 1.91900000e+03 2.04550000e+03]\n", + " [ 2.04550000e+03 1.27000000e+02]\n", + " [ 2.04550000e+03 4.85400000e+02]\n", + " [ 2.04550000e+03 8.43800000e+02]\n", + " [ 2.04550000e+03 1.20220000e+03]\n", + " [ 2.04550000e+03 1.56060000e+03]\n", + " [ 2.04550000e+03 1.91900000e+03]\n", + " [ 4.99999957e-01 4.99999958e-01]\n", + " [ 4.99999957e-01 4.99999958e-01]\n", + " [ 2.04550000e+03 2.04550000e+03]\n", + " [ 2.04550000e+03 2.04550000e+03]\n", + " [ 1.27000000e+02 1.27000000e+02]\n", + " [ 4.85400000e+02 1.27000000e+02]\n", + " [ 8.43800000e+02 1.27000000e+02]\n", + " [ 1.20220000e+03 1.27000000e+02]\n", + " [ 1.56060000e+03 1.27000000e+02]\n", + " [ 1.91900000e+03 1.27000000e+02]\n", + " [ 1.27000000e+02 4.85400000e+02]\n", + " [ 4.85400000e+02 4.85400000e+02]\n", + " [ 8.43800000e+02 4.85400000e+02]\n", + " [ 1.20220000e+03 4.85400000e+02]\n", + " [ 1.56060000e+03 4.85400000e+02]\n", + " [ 1.91900000e+03 4.85400000e+02]\n", + " [ 1.27000000e+02 8.43800000e+02]\n", + " [ 4.85400000e+02 8.43800000e+02]\n", + " [ 8.43800000e+02 8.43800000e+02]\n", + " [ 1.20220000e+03 8.43800000e+02]\n", + " [ 1.56060000e+03 8.43800000e+02]\n", + " [ 1.91900000e+03 8.43800000e+02]\n", + " [ 1.27000000e+02 1.20220000e+03]\n", + " [ 4.85400000e+02 1.20220000e+03]\n", + " [ 8.43800000e+02 1.20220000e+03]\n", + " [ 1.20220000e+03 1.20220000e+03]\n", + " [ 1.56060000e+03 1.20220000e+03]\n", + " [ 1.91900000e+03 1.20220000e+03]\n", + " [ 1.27000000e+02 1.56060000e+03]\n", + " [ 4.85400000e+02 1.56060000e+03]\n", + " [ 8.43800000e+02 1.56060000e+03]\n", + " [ 1.20220000e+03 1.56060000e+03]\n", + " [ 1.56060000e+03 1.56060000e+03]\n", + " [ 1.91900000e+03 1.56060000e+03]\n", + " [ 1.27000000e+02 1.91900000e+03]\n", + " [ 4.85400000e+02 1.91900000e+03]\n", + " [ 8.43800000e+02 1.91900000e+03]\n", + " [ 1.20220000e+03 1.91900000e+03]\n", + " [ 1.56060000e+03 1.91900000e+03]\n", + " [ 1.91900000e+03 1.91900000e+03]]\n", + "DEBUG:root:fitpix2pix: ccdpx: shape: (96, 2)\n", + "DEBUG:root:fitpix2pix: visCut: True\n", + "DEBUG:root:cartToSphere: vec: [[-0.00114705 0.20838541 0.97804612]\n", + " [-0.00115629 0.18089194 0.9835023 ]\n", + " [-0.0011641 0.15270652 0.9882709 ]\n", + " [-0.00117048 0.12393558 0.99228958]\n", + " [-0.00117539 0.09468513 0.99550658]\n", + " [-0.00117881 0.06506336 0.99788044]\n", + " [-0.00118068 0.03518275 0.9993802 ]\n", + " [-0.00118097 0.0051606 0.99998599]\n", + " [-0.00114705 0.20838541 0.97804612]\n", + " [-0.03018244 0.20823844 0.97761228]\n", + " [-0.05910007 0.20782077 0.9763799 ]\n", + " [-0.08778716 0.20713345 0.97436602]\n", + " [-0.11613176 0.20617803 0.9715987 ]\n", + " [-0.14402308 0.20495645 0.96811684]\n", + " [-0.17135219 0.20347155 0.96396979]\n", + " [-0.19801388 0.2017284 0.95921643]\n", + " [-0.00118097 0.0051606 0.99998599]\n", + " [-0.03121228 0.00515607 0.99949948]\n", + " [-0.06111791 0.00514464 0.99811729]\n", + " [-0.09077999 0.00512646 0.99585778]\n", + " [-0.12008538 0.00510175 0.99275046]\n", + " [-0.14892541 0.0050707 0.98883543]\n", + " [-0.17719395 0.00503345 0.98416308]\n", + " [-0.20478471 0.00499006 0.97879432]\n", + " [-0.19801388 0.2017284 0.95921643]\n", + " [-0.19975823 0.17512925 0.96406763]\n", + " [-0.20124936 0.14784829 0.96831791]\n", + " [-0.20248221 0.11999042 0.97190702]\n", + " [-0.20345393 0.09166442 0.97478415]\n", + " [-0.20416257 0.06298098 0.97690892]\n", + " [-0.20460656 0.03405194 0.97825182]\n", + " [-0.20478471 0.00499006 0.97879432]\n", + " [-0.00125101 0.19649007 0.98050502]\n", + " [-0.00126235 0.1623152 0.98673815]\n", + " [-0.00127136 0.12720686 0.99187539]\n", + " [-0.00127799 0.09136033 0.99581708]\n", + " [-0.00128216 0.05497503 0.99848691]\n", + " [-0.00128379 0.01826009 0.99983245]\n", + " [-0.01381426 0.20826196 0.97797552]\n", + " [-0.04933618 0.20789982 0.97690512]\n", + " [-0.08456905 0.20713224 0.97465087]\n", + " [-0.11930642 0.20596186 0.97125985]\n", + " [-0.15334441 0.20439232 0.96680364]\n", + " [-0.18648385 0.20242966 0.96137714]\n", + " [-0.01428247 0.00526224 0.99988415]\n", + " [-0.05101935 0.00525184 0.99868386]\n", + " [-0.08744986 0.00523103 0.99615519]\n", + " [-0.12336368 0.00520016 0.9923479 ]\n", + " [-0.15856056 0.00515961 0.98733577]\n", + " [-0.19284509 0.0051096 0.98121591]\n", + " [-0.1987148 0.19022738 0.96141873]\n", + " [-0.20068229 0.157155 0.96696894]\n", + " [-0.20226422 0.12316211 0.9715556 ]\n", + " [-0.20345456 0.08844755 0.97508116]\n", + " [-0.20424964 0.05321501 0.97747135]\n", + " [-0.20464672 0.01767079 0.97867638]\n", + " [-0.00124645 0.20829266 0.97806575]\n", + " [-0.00124645 0.20829266 0.97806575]\n", + " [-0.20469148 0.0050897 0.97881331]\n", + " [-0.20469148 0.0050897 0.97881331]\n", + " [-0.01386808 0.19646111 0.98041354]\n", + " [-0.04952932 0.19611969 0.9793283 ]\n", + " [-0.08490071 0.19539637 0.97704254]\n", + " [-0.11977552 0.19429398 0.97360345]\n", + " [-0.15394951 0.1928159 0.96908285]\n", + " [-0.18722234 0.19096695 0.96357637]\n", + " [-0.01400325 0.16229116 0.98664355]\n", + " [-0.05001432 0.16200846 0.98552109]\n", + " [-0.08573269 0.16141067 0.9831564 ]\n", + " [-0.12095098 0.16050163 0.9795969 ]\n", + " [-0.15546507 0.15928501 0.97491482]\n", + " [-0.18907339 0.15776388 0.9692068 ]\n", + " [-0.01411268 0.1271878 0.99177825]\n", + " [-0.05040698 0.12696445 0.99062564]\n", + " [-0.08640482 0.12649338 0.98819716]\n", + " [-0.12189811 0.12577923 0.98454072]\n", + " [-0.15668376 0.12482642 0.97972882]\n", + " [-0.19056116 0.12363768 0.97385839]\n", + " [-0.01419584 0.0913464 0.99571799]\n", + " [-0.05070556 0.09118412 0.99454231]\n", + " [-0.08691471 0.09084281 0.99206523]\n", + " [-0.12261435 0.0903271 0.98833534]\n", + " [-0.15760261 0.0896414 0.98342556]\n", + " [-0.19168088 0.08878838 0.97743289]\n", + " [-0.01425179 0.05496643 0.99838649]\n", + " [-0.05090701 0.05486748 0.99719508]\n", + " [-0.08725814 0.05466012 0.99468502]\n", + " [-0.12309542 0.05434775 0.99090557]\n", + " [-0.15821798 0.0539337 0.98593013]\n", + " [-0.19242913 0.05341999 0.97985577]\n", + " [-0.01427955 0.01825699 0.99973135]\n", + " [-0.05100809 0.0182233 0.99853197]\n", + " [-0.08743051 0.01815347 0.9960052 ]\n", + " [-0.12333654 0.01804874 0.99220076]\n", + " [-0.15852587 0.01791034 0.98719237]\n", + " [-0.19280295 0.01773905 0.98107714]]\n", + "DEBUG:root:radec2pix: curVec: [[-0.69005313 0.67249477 -0.26753964]\n", + " [-0.70148356 0.6698999 -0.24321787]\n", + " [-0.71270774 0.66663974 -0.21826393]\n", + " [-0.72364491 0.66270604 -0.19276605]\n", + " [-0.73421978 0.65809829 -0.16681712]\n", + " [-0.74436483 0.65282233 -0.14051332]\n", + " [-0.75402128 0.64688987 -0.1139535 ]\n", + " [-0.76313943 0.64031835 -0.08723892]\n", + " [-0.69005313 0.67249477 -0.26753964]\n", + " [-0.70418546 0.65278246 -0.27928103]\n", + " [-0.7181607 0.63214021 -0.29093635]\n", + " [-0.73188671 0.61062552 -0.30245383]\n", + " [-0.74527646 0.58830483 -0.31378405]\n", + " [-0.75825054 0.5652516 -0.3248796 ]\n", + " [-0.77073823 0.54154556 -0.33569479]\n", + " [-0.78267785 0.51727247 -0.34618574]\n", + " [-0.76313943 0.64031835 -0.08723892]\n", + " [-0.77873296 0.61968989 -0.09777233]\n", + " [-0.79402151 0.59813927 -0.10844009]\n", + " [-0.80890733 0.57572704 -0.11919445]\n", + " [-0.8233022 0.55251806 -0.12998956]\n", + " [-0.83712624 0.52858347 -0.14078056]\n", + " [-0.85030707 0.5040027 -0.15152282]\n", + " [-0.86277988 0.47886447 -0.1621718 ]\n", + " [-0.78267785 0.51727247 -0.34618574]\n", + " [-0.79565447 0.51327767 -0.32168307]\n", + " [-0.80824902 0.50878328 -0.29643397]\n", + " [-0.82037516 0.50378559 -0.27052666]\n", + " [-0.83195594 0.49828561 -0.24405072]\n", + " [-0.84292279 0.49228959 -0.21709936]\n", + " [-0.85321496 0.48580969 -0.18977139]\n", + " [-0.86277988 0.47886447 -0.1621718 ]\n", + " [-0.69510589 0.67137826 -0.25705843]\n", + " [-0.70898793 0.66775137 -0.22681317]\n", + " [-0.72247936 0.66311614 -0.19570529]\n", + " [-0.73543911 0.65746848 -0.163904 ]\n", + " [-0.74774295 0.65081912 -0.13158628]\n", + " [-0.75928645 0.64319198 -0.09893513]\n", + " [-0.69626804 0.66400966 -0.27258392]\n", + " [-0.71349602 0.63921739 -0.28692257]\n", + " [-0.73039598 0.61308427 -0.30108037]\n", + " [-0.74680538 0.58572906 -0.31496539]\n", + " [-0.76257815 0.55728691 -0.32849028]\n", + " [-0.77758783 0.52790713 -0.3415717 ]\n", + " [-0.76993874 0.631465 -0.09190372]\n", + " [-0.78885763 0.6055554 -0.10491089]\n", + " [-0.80722027 0.57832035 -0.11807202]\n", + " [-0.82486035 0.54987746 -0.13130191]\n", + " [-0.84163069 0.52035791 -0.14451789]\n", + " [-0.85740115 0.48991182 -0.15763781]\n", + " [-0.78833673 0.51567593 -0.3355645 ]\n", + " [-0.80399494 0.51044546 -0.3050206 ]\n", + " [-0.81899249 0.50446023 -0.27344319]\n", + " [-0.83318385 0.49772015 -0.24099654]\n", + " [-0.8464427 0.49023678 -0.20785248]\n", + " [-0.8586606 0.48203514 -0.17419555]\n", + " [-0.69014097 0.67242124 -0.26749787]\n", + " [-0.69014097 0.67242124 -0.26749787]\n", + " [-0.86270709 0.47897579 -0.16223032]\n", + " [-0.86270709 0.47897579 -0.16223032]\n", + " [-0.70129347 0.66293223 -0.26212272]\n", + " [-0.71868235 0.6380378 -0.27641174]\n", + " [-0.73572463 0.61179785 -0.29053857]\n", + " [-0.75225589 0.58433242 -0.30441204]\n", + " [-0.76812945 0.55577705 -0.31794501]\n", + " [-0.78321866 0.52628115 -0.3310539 ]\n", + " [-0.71533458 0.65921343 -0.23180614]\n", + " [-0.73314272 0.63405079 -0.24592953]\n", + " [-0.75055239 0.60753509 -0.2599466 ]\n", + " [-0.7673963 0.57978809 -0.27376758]\n", + " [-0.78352734 0.55094514 -0.28730534]\n", + " [-0.79881878 0.5211556 -0.30047528]\n", + " [-0.72896388 0.65449655 -0.20061389]\n", + " [-0.74713191 0.62910074 -0.21453709]\n", + " [-0.76485369 0.60235084 -0.22841257]\n", + " [-0.78196155 0.57436821 -0.24215137]\n", + " [-0.79830882 0.5452869 -0.25566625]\n", + " [-0.81376854 0.51525604 -0.26887167]\n", + " [-0.74203844 0.64877876 -0.16871594]\n", + " [-0.76050418 0.62318676 -0.18240519]\n", + " [-0.77848235 0.59624449 -0.19610646]\n", + " [-0.7958059 0.56807183 -0.20973166]\n", + " [-0.8123285 0.53880131 -0.223194 ]\n", + " [-0.82792255 0.508582 -0.23640771]\n", + " [-0.75443342 0.64207116 -0.13628952]\n", + " [-0.7731342 0.61631981 -0.14971106]\n", + " [-0.79131338 0.58922606 -0.16320475]\n", + " [-0.80880453 0.56090831 -0.17668362]\n", + " [-0.82546124 0.53149798 -0.1900622 ]\n", + " [-0.84115482 0.5011444 -0.20325563]\n", + " [-0.76604421 0.63439759 -0.10351793]\n", + " [-0.78491732 0.60852297 -0.11663878]\n", + " [-0.80324199 0.58131776 -0.12989215]\n", + " [-0.82085198 0.55289959 -0.14319241]\n", + " [-0.83760038 0.52339956 -0.15645608]\n", + " [-0.85335735 0.49296755 -0.16960021]]\n", + "DEBUG:root:radec2pix: curVec Shape: (96, 3)\n", + "DEBUG:root:radec2pix: lng: [ 90.31538026 90.36623882 90.43676438 90.5410988 90.71121584\n", + " 91.03796151 91.92203204 102.88976492 90.31538026 98.24711833\n", + " 105.87469321 112.96816895 119.3908045 125.09574844 130.10218059\n", + " 134.46760759 102.88976492 170.61981741 175.18843619 176.76786642\n", + " 177.56728748 178.0499121 178.37286738 178.60412954 134.46760759\n", + " 138.7587586 143.69705248 149.3491301 155.74646239 162.85581906\n", + " 170.55107093 178.60412954 90.36478543 90.44558973 90.57261901\n", + " 90.80142559 91.33604138 94.02159324 93.79493665 103.34977578\n", + " 112.20947139 120.08219547 126.87889854 132.65213472 159.7741798\n", + " 174.12277646 176.57679256 177.5862344 178.13623505 178.48225333\n", + " 136.25009833 141.93538112 148.66205842 156.50402904 165.39685811\n", + " 175.06487905 90.34286209 90.34286209 178.57562014 178.57562014\n", + " 94.0377805 104.17347615 113.48518905 121.65239591 128.60482826\n", + " 134.43270854 94.93153704 107.15620301 117.97484261 127.00098521\n", + " 134.30466928 140.15819331 96.33160595 111.65389266 124.33611449\n", + " 134.10224284 141.45645803 147.02415603 98.83348775 119.07751066\n", + " 133.73407847 143.6218029 150.36959526 155.14598444 104.53566541\n", + " 132.85570308 147.93620706 156.17810512 161.17666862 164.48488524\n", + " 128.03043433 160.3400738 168.27016728 171.67458296 173.55402386\n", + " 174.74323713]\n", + "DEBUG:root:optics_fp: xyfp: [[-32.208296 -31.60697943]\n", + " [-32.20831882 -27.22055086]\n", + " [-32.20834163 -22.83412229]\n", + " [-32.20836444 -18.44769372]\n", + " [-32.20838725 -14.06126515]\n", + " [-32.20841007 -9.67483658]\n", + " [-32.20843288 -5.288408 ]\n", + " [-32.2084557 -0.90197943]\n", + " [-32.208296 -31.60697943]\n", + " [-27.82186743 -31.60695662]\n", + " [-23.43543886 -31.60693381]\n", + " [-19.04901029 -31.60691099]\n", + " [-14.66258171 -31.60688818]\n", + " [-10.27615314 -31.60686536]\n", + " [ -5.88972457 -31.60684255]\n", + " [ -1.503296 -31.60681974]\n", + " [-32.2084557 -0.90197943]\n", + " [-27.82202712 -0.90195662]\n", + " [-23.43559855 -0.9019338 ]\n", + " [-19.04916999 -0.90191099]\n", + " [-14.66274141 -0.90188818]\n", + " [-10.27631284 -0.90186536]\n", + " [ -5.88988428 -0.90184255]\n", + " [ -1.5034557 -0.90181973]\n", + " [ -1.503296 -31.60681974]\n", + " [ -1.50331881 -27.22039116]\n", + " [ -1.50334163 -22.83396259]\n", + " [ -1.50336444 -18.44753402]\n", + " [ -1.50338726 -14.06110544]\n", + " [ -1.50341007 -9.67467688]\n", + " [ -1.50343288 -5.2882483 ]\n", + " [ -1.5034557 -0.90181973]\n", + " [-32.19330594 -29.69447935]\n", + " [-32.19333391 -24.31847935]\n", + " [-32.19336187 -18.94247936]\n", + " [-32.19338983 -13.56647936]\n", + " [-32.19341779 -8.19047935]\n", + " [-32.19344575 -2.81447935]\n", + " [-30.29579608 -31.59196949]\n", + " [-24.91979608 -31.59194152]\n", + " [-19.54379608 -31.59191356]\n", + " [-14.16779608 -31.5918856 ]\n", + " [ -8.79179608 -31.59185764]\n", + " [ -3.41579608 -31.59182968]\n", + " [-30.29595562 -0.91696949]\n", + " [-24.91995562 -0.91694153]\n", + " [-19.54395562 -0.91691356]\n", + " [-14.16795562 -0.9168856 ]\n", + " [ -8.79195562 -0.91685764]\n", + " [ -3.41595563 -0.91682968]\n", + " [ -1.51830595 -29.69431981]\n", + " [ -1.51833391 -24.31831981]\n", + " [ -1.51836187 -18.94231981]\n", + " [ -1.51838983 -13.56631981]\n", + " [ -1.51841779 -8.19031981]\n", + " [ -1.51844575 -2.81431982]\n", + " [-32.19329608 -31.59197936]\n", + " [-32.19329608 -31.59197936]\n", + " [ -1.51845562 -0.91681981]\n", + " [ -1.51845562 -0.91681981]\n", + " [-30.29580595 -29.69446949]\n", + " [-24.91980594 -29.69444152]\n", + " [-19.54380595 -29.69441356]\n", + " [-14.16780595 -29.69438561]\n", + " [ -8.79180595 -29.69435764]\n", + " [ -3.41580595 -29.69432968]\n", + " [-30.29583391 -24.31846949]\n", + " [-24.91983391 -24.31844152]\n", + " [-19.54383391 -24.31841356]\n", + " [-14.16783391 -24.31838561]\n", + " [ -8.79183391 -24.31835764]\n", + " [ -3.41583391 -24.31832968]\n", + " [-30.29586187 -18.94246949]\n", + " [-24.91986187 -18.94244153]\n", + " [-19.54386187 -18.94241356]\n", + " [-14.16786187 -18.94238561]\n", + " [ -8.79186187 -18.94235764]\n", + " [ -3.41586187 -18.94232969]\n", + " [-30.29588983 -13.56646949]\n", + " [-24.91988983 -13.56644152]\n", + " [-19.54388984 -13.56641357]\n", + " [-14.16788983 -13.5663856 ]\n", + " [ -8.79188983 -13.56635764]\n", + " [ -3.41588983 -13.56632968]\n", + " [-30.29591779 -8.19046949]\n", + " [-24.91991779 -8.19044152]\n", + " [-19.54391779 -8.19041356]\n", + " [-14.16791779 -8.1903856 ]\n", + " [ -8.79191779 -8.19035764]\n", + " [ -3.41591779 -8.19032968]\n", + " [-30.29594575 -2.81446949]\n", + " [-24.91994576 -2.81444153]\n", + " [-19.54394575 -2.81441356]\n", + " [-14.16794576 -2.8143856 ]\n", + " [ -8.79194575 -2.81435764]\n", + " [ -3.41594575 -2.81432968]]\n", + "DEBUG:root:optics_fp: xyfp shape: (96, 2)\n", + "DEBUG:root:radec2pix: fitpx: [[4271.49999985 4155.49999985]\n", + " [4271.49999998 3863.07142855]\n", + " [4271.50000002 3570.64285716]\n", + " [4271.49999976 3278.21428558]\n", + " [4271.50000012 2985.78571434]\n", + " [4271.50000004 2693.35714287]\n", + " [4271.50000005 2400.92857144]\n", + " [4271.49999991 2108.5 ]\n", + " [4271.49999985 4155.49999985]\n", + " [3979.07142858 4155.50000001]\n", + " [3686.64285722 4155.5000001 ]\n", + " [3394.21428584 4155.50000021]\n", + " [3101.78571415 4155.49999972]\n", + " [2809.35714289 4155.50000011]\n", + " [2516.92857142 4155.49999998]\n", + " [2224.50000001 4155.50000022]\n", + " [4271.49999991 2108.5 ]\n", + " [3979.07142843 2108.5 ]\n", + " [3686.6428569 2108.49999999]\n", + " [3394.21428586 2108.5 ]\n", + " [3101.78571453 2108.50000001]\n", + " [2809.35714306 2108.50000001]\n", + " [2516.9285717 2108.50000003]\n", + " [2224.49999984 2108.49999993]\n", + " [2224.50000001 4155.50000022]\n", + " [2224.5 3863.07142862]\n", + " [2224.49999998 3570.64285684]\n", + " [2224.50000001 3278.21428585]\n", + " [2224.50000002 2985.78571445]\n", + " [2224.5 2693.35714285]\n", + " [2224.49999995 2400.92857125]\n", + " [2224.49999984 2108.49999993]\n", + " [4270.49999995 4027.99999996]\n", + " [4270.50000001 3669.6 ]\n", + " [4270.4999998 3311.19999989]\n", + " [4270.50000006 2952.80000003]\n", + " [4270.50000002 2594.40000001]\n", + " [4270.49999985 2235.99999999]\n", + " [4144.00000023 4154.50000023]\n", + " [3785.60000021 4154.50000026]\n", + " [3427.20000017 4154.50000028]\n", + " [3068.79999989 4154.49999975]\n", + " [2710.40000004 4154.50000013]\n", + " [2351.99999998 4154.49999985]\n", + " [4143.99999992 2109.5 ]\n", + " [3785.59999985 2109.5 ]\n", + " [3427.19999998 2109.5 ]\n", + " [3068.80000001 2109.5 ]\n", + " [2710.40000021 2109.50000002]\n", + " [2352.00000017 2109.50000003]\n", + " [2225.5 4027.99999993]\n", + " [2225.49999998 3669.59999975]\n", + " [2225.50000001 3311.20000015]\n", + " [2225.5 2952.8 ]\n", + " [2225.49999998 2594.39999987]\n", + " [2225.50000008 2236.00000013]\n", + " [4270.50000018 4154.50000018]\n", + " [4270.50000018 4154.50000018]\n", + " [2225.49999981 2109.49999992]\n", + " [2225.49999981 2109.49999992]\n", + " [4143.99999987 4027.99999987]\n", + " [3785.59999992 4027.9999999 ]\n", + " [3427.2000001 4028.00000015]\n", + " [3068.80000011 4028.00000023]\n", + " [2710.39999995 4027.99999982]\n", + " [2351.99999998 4027.99999985]\n", + " [4144.00000018 3669.60000014]\n", + " [3785.5999999 3669.59999991]\n", + " [3427.19999994 3669.59999993]\n", + " [3068.79999994 3669.5999999 ]\n", + " [2710.39999997 3669.59999991]\n", + " [2351.99999997 3669.5999998 ]\n", + " [4143.99999973 3311.19999984]\n", + " [3785.60000019 3311.20000014]\n", + " [3427.1999998 3311.19999981]\n", + " [3068.79999976 3311.19999969]\n", + " [2710.39999985 3311.19999967]\n", + " [2352.00000003 3311.20000016]\n", + " [4144.00000026 2952.80000011]\n", + " [3785.6000001 2952.80000005]\n", + " [3427.20000009 2952.80000006]\n", + " [3068.8000003 2952.80000028]\n", + " [2710.39999986 2952.79999979]\n", + " [2352.00000001 2952.80000004]\n", + " [4143.99999994 2594.39999998]\n", + " [3785.6 2594.4 ]\n", + " [3427.19999999 2594.39999999]\n", + " [3068.79999999 2594.39999999]\n", + " [2710.40000015 2594.40000014]\n", + " [2351.99999993 2594.39999983]\n", + " [4143.99999995 2236. ]\n", + " [3785.59999975 2235.99999997]\n", + " [3427.19999971 2235.99999996]\n", + " [3068.80000003 2236.00000001]\n", + " [2710.39999999 2236. ]\n", + " [2352.00000022 2236.00000016]]\n", + "DEBUG:root:fitpix2pix: ccdpx: shape: (96, 2)\n", + "DEBUG:root:fitpix2pix: visCut: True\n", + "DEBUG:root:radec2pix: curVec: [[-0.12678763 0.17840687 0.97575401]\n", + " [-0.13259871 0.20513908 0.969709 ]\n", + " [-0.13841855 0.23223583 0.96276 ]\n", + " [-0.14421814 0.25958037 0.95489222]\n", + " [-0.14996987 0.28705816 0.94610076]\n", + " [-0.15564724 0.31455533 0.93639142]\n", + " [-0.16122477 0.34195816 0.92578139]\n", + " [-0.16667821 0.36915374 0.91429967]\n", + " [-0.12678763 0.17840687 0.97575401]\n", + " [-0.0986031 0.18506126 0.97776774]\n", + " [-0.07044611 0.19163359 0.97893509]\n", + " [-0.04242838 0.19810307 0.97926248]\n", + " [-0.01466249 0.20445286 0.97876659]\n", + " [ 0.01273796 0.21067059 0.97747412]\n", + " [ 0.03965763 0.21674868 0.97542159]\n", + " [ 0.06597856 0.22268462 0.97265533]\n", + " [-0.16667821 0.36915374 0.91429967]\n", + " [-0.1374928 0.37589046 0.91640717]\n", + " [-0.10827832 0.38227034 0.91768469]\n", + " [-0.07915206 0.38827295 0.91813891]\n", + " [-0.05022969 0.3938829 0.91778714]\n", + " [-0.02162457 0.39908975 0.91665683]\n", + " [ 0.00655181 0.40388773 0.9147851 ]\n", + " [ 0.03418818 0.40827539 0.91221838]\n", + " [ 0.06597856 0.22268462 0.97265533]\n", + " [ 0.06212022 0.2487834 0.966565 ]\n", + " [ 0.05798772 0.27521854 0.95963127]\n", + " [ 0.05361169 0.30186694 0.95184145]\n", + " [ 0.04901966 0.32861003 0.94319273]\n", + " [ 0.04423658 0.35533299 0.93369245]\n", + " [ 0.03928551 0.38192423 0.92335829]\n", + " [ 0.03418818 0.40827539 0.91221838]\n", + " [-0.12922159 0.1900327 0.97323653]\n", + " [-0.13635235 0.22305603 0.96522228]\n", + " [-0.14346743 0.25651049 0.95583443]\n", + " [-0.15051548 0.29018445 0.94505983]\n", + " [-0.15744768 0.32386818 0.93290923]\n", + " [-0.16421765 0.35735262 0.9194192 ]\n", + " [-0.11452223 0.18140755 0.97671693]\n", + " [-0.07998266 0.18951088 0.97861555]\n", + " [-0.04559533 0.19746969 0.97924807]\n", + " [-0.01156716 0.2052513 0.97864095]\n", + " [ 0.02189262 0.21283296 0.97684331]\n", + " [ 0.05457066 0.22020284 0.97392646]\n", + " [-0.15394598 0.37204083 0.91536127]\n", + " [-0.11814205 0.38006037 0.91738573]\n", + " [-0.08241117 0.38752326 0.9181689 ]\n", + " [-0.046967 0.39439906 0.91773824]\n", + " [-0.01201828 0.40066851 0.91614426]\n", + " [ 0.02222994 0.40632281 0.91345914]\n", + " [ 0.06424278 0.23399463 0.97011307]\n", + " [ 0.05932431 0.26622435 0.96208379]\n", + " [ 0.05402502 0.29883644 0.95277389]\n", + " [ 0.04839688 0.33161079 0.9421741 ]\n", + " [ 0.04248588 0.36433596 0.93029794]\n", + " [ 0.0363339 0.39680783 0.91718231]\n", + " [-0.12671114 0.17852039 0.97574318]\n", + " [-0.12671114 0.17852039 0.97574318]\n", + " [ 0.03411238 0.4081715 0.91226771]\n", + " [ 0.03411238 0.4081715 0.91226771]\n", + " [-0.11698436 0.19292922 0.97421403]\n", + " [-0.08230355 0.20104078 0.97611922]\n", + " [-0.047769 0.20898049 0.97675241]\n", + " [-0.0135878 0.21671525 0.97614029]\n", + " [ 0.02003126 0.2242218 0.97433225]\n", + " [ 0.05287576 0.2314879 0.97139977]\n", + " [-0.12399342 0.22597558 0.96620943]\n", + " [-0.0889562 0.23410163 0.96813389]\n", + " [-0.0540497 0.2419801 0.96877462]\n", + " [-0.01948191 0.24957699 0.96815896]\n", + " [ 0.01453926 0.25686811 0.9663371 ]\n", + " [ 0.047804 0.26384026 0.96338107]\n", + " [-0.13100959 0.2594478 0.95682983]\n", + " [-0.09568128 0.26757442 0.95877475]\n", + " [-0.06046965 0.27537957 0.95943187]\n", + " [-0.02558413 0.28282904 0.95882907]\n", + " [ 0.00876775 0.28989854 0.95701722]\n", + " [ 0.04237838 0.29657468 0.95406894]\n", + " [-0.13798215 0.29313403 0.94606203]\n", + " [-0.10242973 0.30124643 0.94802887]\n", + " [-0.06698078 0.30896495 0.94871188]\n", + " [-0.03184631 0.31625587 0.94813925]\n", + " [ 0.00276599 0.3230957 0.94636226]\n", + " [ 0.03665008 0.32947172 0.94345384]\n", + " [-0.14486309 0.32682439 0.93391675]\n", + " [-0.10915564 0.33490742 0.93590708]\n", + " [-0.07353873 0.34252578 0.93662594]\n", + " [-0.03822484 0.3496469 0.93610144]\n", + " [-0.00342205 0.35624879 0.93438487]\n", + " [ 0.03066445 0.36232017 0.93154913]\n", + " [-0.15160671 0.36030969 0.92043051]\n", + " [-0.11581523 0.36834836 0.92244584]\n", + " [-0.08010137 0.37585386 0.92321051]\n", + " [-0.0446786 0.38279513 0.92275225]\n", + " [-0.00975549 0.3891522 0.92112181]\n", + " [ 0.02446296 0.3949156 0.91839166]]\n", + "DEBUG:root:radec2pix: curVec Shape: (96, 3)\n", + "DEBUG:root:radec2pix: lat: [77.97206498 79.57806769 81.21593647 82.8803899 84.56638266 86.26889583\n", + " 87.98262539 89.69667435 77.97206498 77.85336036 77.52222772 76.99897078\n", + " 76.31199967 75.49295235 74.57292056 73.58021644 89.69667435 88.18712874\n", + " 86.48361023 84.78319776 83.0967184 81.43034165 79.78948121 78.17954495\n", + " 73.58021644 74.59400834 75.53901524 76.38685312 77.10589211 77.66330027\n", + " 78.02875412 78.17954495 78.66798463 80.65841057 82.69141578 84.75761477\n", + " 86.84771627 88.95113309 77.95267103 77.66228009 77.07171569 76.23019363\n", + " 75.19557036 74.02401451 89.12786485 87.06007007 84.97409331 82.90740441\n", + " 80.87177406 78.87718093 74.03267423 75.23268127 76.30156716 77.18237665\n", + " 77.81504555 78.14660304 77.97746528 77.97746528 78.18485708 78.18485708\n", + " 78.64134167 78.32984157 77.69918411 76.80616019 75.71557851 74.48840848\n", + " 80.62507537 80.23817759 79.46907283 78.40617113 77.13948546 75.74438817\n", + " 82.64779184 82.14857946 81.18831589 79.91227353 78.44384133 76.87031089\n", + " 84.69583972 84.01119948 82.77741875 81.24014725 79.55379065 77.80461009\n", + " 86.74476583 85.70761057 84.09008812 82.26687253 80.3773841 78.48020641\n", + " 88.67187538 86.89501933 84.87693536 82.83944721 80.82012657 78.83603949]\n", + "DEBUG:root:make_az_asym: xyp: [[-32.208296 -31.60697943]\n", + " [-32.20831882 -27.22055086]\n", + " [-32.20834163 -22.83412229]\n", + " [-32.20836444 -18.44769372]\n", + " [-32.20838725 -14.06126515]\n", + " [-32.20841007 -9.67483658]\n", + " [-32.20843288 -5.288408 ]\n", + " [-32.2084557 -0.90197943]\n", + " [-32.208296 -31.60697943]\n", + " [-27.82186743 -31.60695662]\n", + " [-23.43543886 -31.60693381]\n", + " [-19.04901029 -31.60691099]\n", + " [-14.66258171 -31.60688818]\n", + " [-10.27615314 -31.60686536]\n", + " [ -5.88972457 -31.60684255]\n", + " [ -1.503296 -31.60681974]\n", + " [-32.2084557 -0.90197943]\n", + " [-27.82202712 -0.90195662]\n", + " [-23.43559855 -0.9019338 ]\n", + " [-19.04916999 -0.90191099]\n", + " [-14.66274141 -0.90188818]\n", + " [-10.27631284 -0.90186536]\n", + " [ -5.88988428 -0.90184255]\n", + " [ -1.5034557 -0.90181973]\n", + " [ -1.503296 -31.60681974]\n", + " [ -1.50331881 -27.22039116]\n", + " [ -1.50334163 -22.83396259]\n", + " [ -1.50336444 -18.44753402]\n", + " [ -1.50338726 -14.06110544]\n", + " [ -1.50341007 -9.67467688]\n", + " [ -1.50343288 -5.2882483 ]\n", + " [ -1.5034557 -0.90181973]\n", + " [-32.19330594 -29.69447935]\n", + " [-32.19333391 -24.31847935]\n", + " [-32.19336187 -18.94247936]\n", + " [-32.19338983 -13.56647936]\n", + " [-32.19341779 -8.19047935]\n", + " [-32.19344575 -2.81447935]\n", + " [-30.29579608 -31.59196949]\n", + " [-24.91979608 -31.59194152]\n", + " [-19.54379608 -31.59191356]\n", + " [-14.16779608 -31.5918856 ]\n", + " [ -8.79179608 -31.59185764]\n", + " [ -3.41579608 -31.59182968]\n", + " [-30.29595562 -0.91696949]\n", + " [-24.91995562 -0.91694153]\n", + " [-19.54395562 -0.91691356]\n", + " [-14.16795562 -0.9168856 ]\n", + " [ -8.79195562 -0.91685764]\n", + " [ -3.41595563 -0.91682968]\n", + " [ -1.51830595 -29.69431981]\n", + " [ -1.51833391 -24.31831981]\n", + " [ -1.51836187 -18.94231981]\n", + " [ -1.51838983 -13.56631981]\n", + " [ -1.51841779 -8.19031981]\n", + " [ -1.51844575 -2.81431982]\n", + " [-32.19329608 -31.59197936]\n", + " [-32.19329608 -31.59197936]\n", + " [ -1.51845562 -0.91681981]\n", + " [ -1.51845562 -0.91681981]\n", + " [-30.29580595 -29.69446949]\n", + " [-24.91980594 -29.69444152]\n", + " [-19.54380595 -29.69441356]\n", + " [-14.16780595 -29.69438561]\n", + " [ -8.79180595 -29.69435764]\n", + " [ -3.41580595 -29.69432968]\n", + " [-30.29583391 -24.31846949]\n", + " [-24.91983391 -24.31844152]\n", + " [-19.54383391 -24.31841356]\n", + " [-14.16783391 -24.31838561]\n", + " [ -8.79183391 -24.31835764]\n", + " [ -3.41583391 -24.31832968]\n", + " [-30.29586187 -18.94246949]\n", + " [-24.91986187 -18.94244153]\n", + " [-19.54386187 -18.94241356]\n", + " [-14.16786187 -18.94238561]\n", + " [ -8.79186187 -18.94235764]\n", + " [ -3.41586187 -18.94232969]\n", + " [-30.29588983 -13.56646949]\n", + " [-24.91988983 -13.56644152]\n", + " [-19.54388984 -13.56641357]\n", + " [-14.16788983 -13.5663856 ]\n", + " [ -8.79188983 -13.56635764]\n", + " [ -3.41588983 -13.56632968]\n", + " [-30.29591779 -8.19046949]\n", + " [-24.91991779 -8.19044152]\n", + " [-19.54391779 -8.19041356]\n", + " [-14.16791779 -8.1903856 ]\n", + " [ -8.79191779 -8.19035764]\n", + " [ -3.41591779 -8.19032968]\n", + " [-30.29594575 -2.81446949]\n", + " [-24.91994576 -2.81444153]\n", + " [-19.54394575 -2.81441356]\n", + " [-14.16794576 -2.8143856 ]\n", + " [ -8.79194575 -2.81435764]\n", + " [ -3.41594575 -2.81432968]]\n", + "DEBUG:root:make_az_asym: xyp: shape: (96, 2)\n", + "DEBUG:root:radec2pix: camVec: [[-0.20605921 -0.20787315 -0.20942436 -0.21070676 -0.21171698 -0.21245291\n", + " -0.21291301 -0.2130962 -0.20605921 -0.17962884 -0.15250018 -0.12477652\n", + " -0.0965659 -0.06797863 -0.03912632 -0.01012153 -0.2130962 -0.18573503\n", + " -0.15766321 -0.1289874 -0.09981355 -0.07024926 -0.04040619 -0.01040084\n", + " -0.01012153 -0.01020027 -0.01026637 -0.01031977 -0.01036027 -0.01038751\n", + " -0.01040113 -0.01040084 -0.20679239 -0.20883895 -0.21048459 -0.2117221\n", + " -0.21254753 -0.21295821 -0.1946339 -0.16175754 -0.12793421 -0.09336102\n", + " -0.05824097 -0.02277993 -0.20126076 -0.16723544 -0.13224882 -0.09649617\n", + " -0.06017591 -0.02349561 -0.01025713 -0.01034611 -0.01041588 -0.01046611\n", + " -0.01049618 -0.01050541 -0.20597676 -0.20597676 -0.01050361 -0.01050361\n", + " -0.19540403 -0.16239488 -0.12843557 -0.09372478 -0.05846599 -0.02286533\n", + " -0.19733483 -0.16399068 -0.1296908 -0.094636 -0.05902974 -0.02307851\n", + " -0.19888634 -0.16527244 -0.13070023 -0.09537003 -0.05948408 -0.02324907\n", + " -0.20005292 -0.16623701 -0.13146138 -0.09592455 -0.05982716 -0.0233762\n", + " -0.20083104 -0.16688094 -0.13197015 -0.09629527 -0.0600556 -0.02345845\n", + " -0.20121796 -0.16720058 -0.13222195 -0.09647752 -0.06016577 -0.02349426]\n", + " [-0.20169937 -0.17519485 -0.1480085 -0.12024402 -0.09200964 -0.06341581\n", + " -0.03457423 -0.00559748 -0.20169937 -0.20353396 -0.20511207 -0.20642749\n", + " -0.20747679 -0.20825778 -0.20876879 -0.20900854 -0.00559748 -0.00565735\n", + " -0.00571045 -0.00575671 -0.00579596 -0.00582797 -0.00585246 -0.00586919\n", + " -0.20900854 -0.18153487 -0.15336672 -0.12461057 -0.09537244 -0.06576046\n", + " -0.03588698 -0.00586919 -0.1902398 -0.15728353 -0.12340547 -0.08880315\n", + " -0.0536798 -0.01824146 -0.20244048 -0.20451655 -0.20620095 -0.20748634\n", + " -0.2083686 -0.2088448 -0.00572401 -0.00579384 -0.00585326 -0.00590199\n", + " -0.0059396 -0.00596558 -0.19712185 -0.16296958 -0.1278801 -0.09204872\n", + " -0.05567473 -0.01896706 -0.2016167 -0.2016167 -0.0059719 -0.0059719\n", + " -0.19101701 -0.19297429 -0.19456158 -0.19577312 -0.19660523 -0.1970549\n", + " -0.15792497 -0.15953875 -0.16084786 -0.1618491 -0.16253892 -0.16291334\n", + " -0.12390793 -0.1251726 -0.12620079 -0.12699006 -0.12753631 -0.1278347\n", + " -0.089165 -0.090077 -0.09082101 -0.09139481 -0.09179425 -0.09201449\n", + " -0.05389991 -0.05445583 -0.05491134 -0.05526476 -0.0555129 -0.05565213\n", + " -0.018319 -0.01851594 -0.01867909 -0.01880776 -0.01890068 -0.01895646]\n", + " [ 0.95752648 0.96233857 0.96655829 0.97012578 0.97299031 0.97511138\n", + " 0.97645925 0.97701519 0.95752648 0.96244865 0.96678474 0.97047334\n", + " 0.97346207 0.97570877 0.97718203 0.97786143 0.97701519 0.98258358\n", + " 0.98747643 0.99162952 0.99498928 0.99751244 0.9991662 0.99992869\n", + " 0.97786143 0.98333161 0.98811601 0.99215206 0.99538774 0.99778137\n", + " 0.99930173 0.99992869 0.95971127 0.96521924 0.96977695 0.97328709\n", + " 0.97567516 0.97689101 0.95975804 0.96540534 0.97011031 0.97377263\n", + " 0.97631476 0.97768345 0.97952098 0.98589996 0.99119927 0.99531586\n", + " 0.99817012 0.99970614 0.98032534 0.98657685 0.99173494 0.9956995\n", + " 0.99839379 0.99976492 0.95756163 0.95756163 0.999927 0.999927\n", + " 0.96194063 0.96767186 0.97244542 0.97616011 0.97873802 0.98012578\n", + " 0.96753226 0.97347545 0.97842131 0.98226722 0.98493482 0.98637043\n", + " 0.97215793 0.97827237 0.98335691 0.9873085 0.99004855 0.99152295\n", + " 0.97571944 0.98196303 0.98715219 0.99118387 0.99397914 0.99548324\n", + " 0.97814196 0.9844721 0.98973159 0.9938174 0.99665021 0.9981746\n", + " 0.97937518 0.98574902 0.99104412 0.99515745 0.99800944 0.99954423]]\n", + "DEBUG:root:radec2pix: camVec Shape: (3, 96)\n", + "DEBUG:root:radec2pix: xyfp: [[-32.208296 -31.60697943]\n", + " [-32.20831882 -27.22055086]\n", + " [-32.20834163 -22.83412229]\n", + " [-32.20836444 -18.44769372]\n", + " [-32.20838725 -14.06126515]\n", + " [-32.20841007 -9.67483658]\n", + " [-32.20843288 -5.288408 ]\n", + " [-32.2084557 -0.90197943]\n", + " [-32.208296 -31.60697943]\n", + " [-27.82186743 -31.60695662]\n", + " [-23.43543886 -31.60693381]\n", + " [-19.04901029 -31.60691099]\n", + " [-14.66258171 -31.60688818]\n", + " [-10.27615314 -31.60686536]\n", + " [ -5.88972457 -31.60684255]\n", + " [ -1.503296 -31.60681974]\n", + " [-32.2084557 -0.90197943]\n", + " [-27.82202712 -0.90195662]\n", + " [-23.43559855 -0.9019338 ]\n", + " [-19.04916999 -0.90191099]\n", + " [-14.66274141 -0.90188818]\n", + " [-10.27631284 -0.90186536]\n", + " [ -5.88988428 -0.90184255]\n", + " [ -1.5034557 -0.90181973]\n", + " [ -1.503296 -31.60681974]\n", + " [ -1.50331881 -27.22039116]\n", + " [ -1.50334163 -22.83396259]\n", + " [ -1.50336444 -18.44753402]\n", + " [ -1.50338726 -14.06110544]\n", + " [ -1.50341007 -9.67467688]\n", + " [ -1.50343288 -5.2882483 ]\n", + " [ -1.5034557 -0.90181973]\n", + " [-32.19330594 -29.69447935]\n", + " [-32.19333391 -24.31847935]\n", + " [-32.19336187 -18.94247936]\n", + " [-32.19338983 -13.56647936]\n", + " [-32.19341779 -8.19047935]\n", + " [-32.19344575 -2.81447935]\n", + " [-30.29579608 -31.59196949]\n", + " [-24.91979608 -31.59194152]\n", + " [-19.54379608 -31.59191356]\n", + " [-14.16779608 -31.5918856 ]\n", + " [ -8.79179608 -31.59185764]\n", + " [ -3.41579608 -31.59182968]\n", + " [-30.29595562 -0.91696949]\n", + " [-24.91995562 -0.91694153]\n", + " [-19.54395562 -0.91691356]\n", + " [-14.16795562 -0.9168856 ]\n", + " [ -8.79195562 -0.91685764]\n", + " [ -3.41595563 -0.91682968]\n", + " [ -1.51830595 -29.69431981]\n", + " [ -1.51833391 -24.31831981]\n", + " [ -1.51836187 -18.94231981]\n", + " [ -1.51838983 -13.56631981]\n", + " [ -1.51841779 -8.19031981]\n", + " [ -1.51844575 -2.81431982]\n", + " [-32.19329608 -31.59197936]\n", + " [-32.19329608 -31.59197936]\n", + " [ -1.51845562 -0.91681981]\n", + " [ -1.51845562 -0.91681981]\n", + " [-30.29580595 -29.69446949]\n", + " [-24.91980594 -29.69444152]\n", + " [-19.54380595 -29.69441356]\n", + " [-14.16780595 -29.69438561]\n", + " [ -8.79180595 -29.69435764]\n", + " [ -3.41580595 -29.69432968]\n", + " [-30.29583391 -24.31846949]\n", + " [-24.91983391 -24.31844152]\n", + " [-19.54383391 -24.31841356]\n", + " [-14.16783391 -24.31838561]\n", + " [ -8.79183391 -24.31835764]\n", + " [ -3.41583391 -24.31832968]\n", + " [-30.29586187 -18.94246949]\n", + " [-24.91986187 -18.94244153]\n", + " [-19.54386187 -18.94241356]\n", + " [-14.16786187 -18.94238561]\n", + " [ -8.79186187 -18.94235764]\n", + " [ -3.41586187 -18.94232969]\n", + " [-30.29588983 -13.56646949]\n", + " [-24.91988983 -13.56644152]\n", + " [-19.54388984 -13.56641357]\n", + " [-14.16788983 -13.5663856 ]\n", + " [ -8.79188983 -13.56635764]\n", + " [ -3.41588983 -13.56632968]\n", + " [-30.29591779 -8.19046949]\n", + " [-24.91991779 -8.19044152]\n", + " [-19.54391779 -8.19041356]\n", + " [-14.16791779 -8.1903856 ]\n", + " [ -8.79191779 -8.19035764]\n", + " [ -3.41591779 -8.19032968]\n", + " [-30.29594575 -2.81446949]\n", + " [-24.91994576 -2.81444153]\n", + " [-19.54394575 -2.81441356]\n", + " [-14.16794576 -2.8143856 ]\n", + " [ -8.79194575 -2.81435764]\n", + " [ -3.41594575 -2.81432968]]\n", + "DEBUG:root:radec2pix: xyfp Shape: (96, 2)\n", + "DEBUG:root:radec2pix: camVec: [[ 0.00110855 0.00111823 0.00112655 0.00113349 0.001139 0.00114306\n", + " 0.00114562 0.00114666 0.00110855 0.03013432 0.05904256 0.08772073\n", + " 0.11605724 0.14394136 0.17126266 0.19791015 0.00114666 0.03116962\n", + " 0.06106803 0.09072406 0.1200235 0.1488564 0.17711651 0.20469956\n", + " 0.19791015 0.19966308 0.20115603 0.20238925 0.20336191 0.20407235\n", + " 0.20451873 0.20469956 0.00121266 0.00122459 0.00123428 0.00124164\n", + " 0.00124661 0.00124912 0.01377154 0.04928181 0.08450359 0.11923105\n", + " 0.15326028 0.18638779 0.01424443 0.05097175 0.08739457 0.12330108\n", + " 0.15848878 0.192763 0.19861623 0.2005887 0.20217123 0.20336272\n", + " 0.2041602 0.2045604 0.00120792 0.00120792 0.20460634 0.20460634\n", + " 0.01382559 0.04947523 0.08483539 0.11969997 0.15386543 0.18712908\n", + " 0.01396162 0.04996174 0.08566901 0.1208763 0.15538076 0.1889821\n", + " 0.01407199 0.05035615 0.08634371 0.12182616 0.15660103 0.19047015\n", + " 0.01415593 0.05065593 0.08685581 0.12254563 0.15752301 0.1915915\n", + " 0.01421257 0.05085809 0.08720077 0.12302951 0.15814189 0.1923426\n", + " 0.01424114 0.05096003 0.08737459 0.12327308 0.15845303 0.1927197 ]\n", + " [-0.20853555 -0.18105588 -0.15288447 -0.12412547 -0.09488471 -0.06527159\n", + " -0.0353997 -0.00538646 -0.20853555 -0.20838958 -0.2079729 -0.20728684\n", + " -0.20633313 -0.20511339 -0.20362847 -0.2018782 -0.00538646 -0.00538259\n", + " -0.00537156 -0.00535349 -0.00532854 -0.00529689 -0.00525872 -0.00521415\n", + " -0.2018782 -0.17529764 -0.14802765 -0.12017919 -0.09186258 -0.06318839\n", + " -0.03426807 -0.00521415 -0.196646 -0.16248857 -0.12739553 -0.09156092\n", + " -0.05518617 -0.01848208 -0.20841259 -0.20805164 -0.2072855 -0.20611722\n", + " -0.20454967 -0.20258404 -0.00548838 -0.00547863 -0.00545803 -0.00542687\n", + " -0.0053855 -0.0053342 -0.19038695 -0.15733098 -0.12334981 -0.08864677\n", + " -0.05342545 -0.01789151 -0.20844284 -0.20844284 -0.00531377 -0.00531377\n", + " -0.19661746 -0.19627694 -0.19555447 -0.19445357 -0.19297773 -0.19112874\n", + " -0.1624649 -0.16218264 -0.16158454 -0.16067502 -0.15945889 -0.15793949\n", + " -0.12737685 -0.12715419 -0.12668294 -0.12596768 -0.12501365 -0.12382499\n", + " -0.0915474 -0.09138626 -0.09104555 -0.09052922 -0.08984197 -0.08898771\n", + " -0.05517797 -0.05508029 -0.05487388 -0.05456144 -0.05414617 -0.05363087\n", + " -0.01847933 -0.01844651 -0.01837718 -0.0182723 -0.018133 -0.01796031]\n", + " [ 0.97801416 0.98347217 0.98824343 0.99226588 0.99548762 0.99786688\n", + " 0.99937258 0.99998484 0.97801416 0.97758156 0.97635099 0.97433939\n", + " 0.97157468 0.96809575 0.96395256 0.95920632 0.99998484 0.99949962\n", + " 0.99811915 0.99586168 0.99275675 0.98884464 0.98417584 0.97881096\n", + " 0.95920632 0.96405674 0.9683099 0.97190306 0.97478469 0.97691438\n", + " 0.97826264 0.97881096 0.9804738 0.98670967 0.99185123 0.9957987\n", + " 0.9984753 0.99982841 0.97794404 0.97687554 0.97462396 0.97123615\n", + " 0.9667837 0.96136325 0.99988348 0.99868507 0.99615882 0.99235447\n", + " 0.98734609 0.98123085 0.96140751 0.96695974 0.97155114 0.97508223\n", + " 0.97747856 0.97869042 0.97803381 0.97803381 0.97882992 0.97882992\n", + " 0.9803828 0.97929953 0.97701659 0.97358088 0.96906399 0.96356241\n", + " 0.98661554 0.98549511 0.98313339 0.97957769 0.97489983 0.969196\n", + " 0.99175456 0.99060389 0.98817822 0.98452554 0.97971818 0.9738524\n", + " 0.9957001 0.99452628 0.9920518 0.98832537 0.98342001 0.97743229\n", + " 0.99837538 0.99718585 0.99467828 0.99090201 0.9859307 0.97986124\n", + " 0.99972782 0.99853032 0.996006 0.99220455 0.9872 0.98108947]]\n", + "DEBUG:root:radec2pix: camVec Shape: (3, 96)\n", + "DEBUG:root:cartToSphere: vec: [[-0.20605921 -0.20169937 0.95752648]\n", + " [-0.20787315 -0.17519485 0.96233857]\n", + " [-0.20942436 -0.1480085 0.96655829]\n", + " [-0.21070676 -0.12024402 0.97012578]\n", + " [-0.21171698 -0.09200964 0.97299031]\n", + " [-0.21245291 -0.06341581 0.97511138]\n", + " [-0.21291301 -0.03457423 0.97645925]\n", + " [-0.2130962 -0.00559748 0.97701519]\n", + " [-0.20605921 -0.20169937 0.95752648]\n", + " [-0.17962884 -0.20353396 0.96244865]\n", + " [-0.15250018 -0.20511207 0.96678474]\n", + " [-0.12477652 -0.20642749 0.97047334]\n", + " [-0.0965659 -0.20747679 0.97346207]\n", + " [-0.06797863 -0.20825778 0.97570877]\n", + " [-0.03912632 -0.20876879 0.97718203]\n", + " [-0.01012153 -0.20900854 0.97786143]\n", + " [-0.2130962 -0.00559748 0.97701519]\n", + " [-0.18573503 -0.00565735 0.98258358]\n", + " [-0.15766321 -0.00571045 0.98747643]\n", + " [-0.1289874 -0.00575671 0.99162952]\n", + " [-0.09981355 -0.00579596 0.99498928]\n", + " [-0.07024926 -0.00582797 0.99751244]\n", + " [-0.04040619 -0.00585246 0.9991662 ]\n", + " [-0.01040084 -0.00586919 0.99992869]\n", + " [-0.01012153 -0.20900854 0.97786143]\n", + " [-0.01020027 -0.18153487 0.98333161]\n", + " [-0.01026637 -0.15336672 0.98811601]\n", + " [-0.01031977 -0.12461057 0.99215206]\n", + " [-0.01036027 -0.09537244 0.99538774]\n", + " [-0.01038751 -0.06576046 0.99778137]\n", + " [-0.01040113 -0.03588698 0.99930173]\n", + " [-0.01040084 -0.00586919 0.99992869]\n", + " [-0.20679239 -0.1902398 0.95971127]\n", + " [-0.20883895 -0.15728353 0.96521924]\n", + " [-0.21048459 -0.12340547 0.96977695]\n", + " [-0.2117221 -0.08880315 0.97328709]\n", + " [-0.21254753 -0.0536798 0.97567516]\n", + " [-0.21295821 -0.01824146 0.97689101]\n", + " [-0.1946339 -0.20244048 0.95975804]\n", + " [-0.16175754 -0.20451655 0.96540534]\n", + " [-0.12793421 -0.20620095 0.97011031]\n", + " [-0.09336102 -0.20748634 0.97377263]\n", + " [-0.05824097 -0.2083686 0.97631476]\n", + " [-0.02277993 -0.2088448 0.97768345]\n", + " [-0.20126076 -0.00572401 0.97952098]\n", + " [-0.16723544 -0.00579384 0.98589996]\n", + " [-0.13224882 -0.00585326 0.99119927]\n", + " [-0.09649617 -0.00590199 0.99531586]\n", + " [-0.06017591 -0.0059396 0.99817012]\n", + " [-0.02349561 -0.00596558 0.99970614]\n", + " [-0.01025713 -0.19712185 0.98032534]\n", + " [-0.01034611 -0.16296958 0.98657685]\n", + " [-0.01041588 -0.1278801 0.99173494]\n", + " [-0.01046611 -0.09204872 0.9956995 ]\n", + " [-0.01049618 -0.05567473 0.99839379]\n", + " [-0.01050541 -0.01896706 0.99976492]\n", + " [-0.20597676 -0.2016167 0.95756163]\n", + " [-0.20597676 -0.2016167 0.95756163]\n", + " [-0.01050361 -0.0059719 0.999927 ]\n", + " [-0.01050361 -0.0059719 0.999927 ]\n", + " [-0.19540403 -0.19101701 0.96194063]\n", + " [-0.16239488 -0.19297429 0.96767186]\n", + " [-0.12843557 -0.19456158 0.97244542]\n", + " [-0.09372478 -0.19577312 0.97616011]\n", + " [-0.05846599 -0.19660523 0.97873802]\n", + " [-0.02286533 -0.1970549 0.98012578]\n", + " [-0.19733483 -0.15792497 0.96753226]\n", + " [-0.16399068 -0.15953875 0.97347545]\n", + " [-0.1296908 -0.16084786 0.97842131]\n", + " [-0.094636 -0.1618491 0.98226722]\n", + " [-0.05902974 -0.16253892 0.98493482]\n", + " [-0.02307851 -0.16291334 0.98637043]\n", + " [-0.19888634 -0.12390793 0.97215793]\n", + " [-0.16527244 -0.1251726 0.97827237]\n", + " [-0.13070023 -0.12620079 0.98335691]\n", + " [-0.09537003 -0.12699006 0.9873085 ]\n", + " [-0.05948408 -0.12753631 0.99004855]\n", + " [-0.02324907 -0.1278347 0.99152295]\n", + " [-0.20005292 -0.089165 0.97571944]\n", + " [-0.16623701 -0.090077 0.98196303]\n", + " [-0.13146138 -0.09082101 0.98715219]\n", + " [-0.09592455 -0.09139481 0.99118387]\n", + " [-0.05982716 -0.09179425 0.99397914]\n", + " [-0.0233762 -0.09201449 0.99548324]\n", + " [-0.20083104 -0.05389991 0.97814196]\n", + " [-0.16688094 -0.05445583 0.9844721 ]\n", + " [-0.13197015 -0.05491134 0.98973159]\n", + " [-0.09629527 -0.05526476 0.9938174 ]\n", + " [-0.0600556 -0.0555129 0.99665021]\n", + " [-0.02345845 -0.05565213 0.9981746 ]\n", + " [-0.20121796 -0.018319 0.97937518]\n", + " [-0.16720058 -0.01851594 0.98574902]\n", + " [-0.13222195 -0.01867909 0.99104412]\n", + " [-0.09647752 -0.01880776 0.99515745]\n", + " [-0.06016577 -0.01890068 0.99800944]\n", + " [-0.02349426 -0.01895646 0.99954423]]\n", + "DEBUG:root:optics_fp: rtanth: [31.45867372 27.07232164 22.68599914 18.29972749 13.91355478 9.52761765\n", + " 5.14251895 0.77266756 31.45867372 31.78680319 32.70527593 34.16651578\n", + " 36.10468169 38.44771501 41.12647627 44.07980062 0.77266756 4.62057574\n", + " 8.9768556 13.35288972 17.73406053 22.11731568 26.50162097 30.8865292\n", + " 44.07980062 41.06447698 38.31494783 35.89234872 33.86691125 32.31340541\n", + " 31.3021752 30.8865292 29.54629558 24.17042769 18.79463536 13.41900945\n", + " 8.04388357 2.67227674 31.51224371 32.31623619 33.96261905 36.33706944\n", + " 39.30786805 42.7508727 2.22187045 7.50028847 12.8598094 18.22903784\n", + " 23.60134944 28.97502929 42.72508353 39.20023922 36.1342981 33.65291956\n", + " 31.89283999 30.97725364 31.44375973 31.44375973 30.87190328 30.87190328\n", + " 29.6191671 30.47314683 32.21386423 34.70815714 37.80716925 41.37524227\n", + " 24.25945282 25.29503252 27.36711605 30.26354513 33.77288911 37.72448364\n", + " 18.90898716 20.22047017 22.759345 26.17080258 30.16018539 34.5277484\n", + " 13.57870729 15.35248874 18.5693102 22.62172417 27.13794906 31.92173094\n", + " 8.30755918 10.96964715 15.14772357 19.90921024 24.92192864 30.06045831\n", + " 3.38416012 7.92276206 13.11070286 18.40689143 23.73898749 29.08725072]\n", + "DEBUG:root:radec2pix: lng: [224.38740491 220.12408621 215.2503637 209.71210534 203.48918374\n", + " 196.62002098 189.22355762 181.5046646 224.38740491 228.56999572\n", + " 233.3693139 238.84884696 245.04132431 251.92249978 259.38507008\n", + " 267.22753799 181.5046646 181.74464663 182.07430544 182.55541483\n", + " 183.32331288 184.74247093 188.24144189 209.436015 267.22753799\n", + " 266.78398778 266.170335 265.26578644 263.80029466 261.02373287\n", + " 253.83681058 209.436015 222.61267508 216.98461546 210.38276245\n", + " 202.75476399 194.17390418 184.89586052 226.12630502 231.65859743\n", + " 238.18310357 245.77405246 254.38382437 263.77502084 181.62909594\n", + " 181.98420755 182.53422407 183.50001953 185.63706132 194.24647314\n", + " 267.02133208 266.36745836 265.3435183 263.51322198 259.32352397\n", + " 241.01895217 224.38712569 224.38712569 209.62070535 209.62070535\n", + " 224.34955164 229.91816922 236.57007702 244.41761198 253.43870278\n", + " 263.38126527 218.66991645 224.21163124 231.12094806 239.6844282\n", + " 250.04034734 261.9370562 211.92326671 217.13924206 223.99660639\n", + " 233.09330633 244.99523074 259.69237756 204.0228705 208.45144372\n", + " 214.63892612 223.61475061 236.90559041 255.7456151 195.0232601\n", + " 198.0723045 202.59166286 209.85191686 222.74900651 247.14363581\n", + " 185.201902 186.31923819 188.04100537 191.03114261 197.43976942\n", + " 218.89848666]\n", + "DEBUG:root:radec2pix: curVec: [[ 0.03609684 0.60030254 -0.798958 ]\n", + " [ 0.03384497 0.57782139 -0.81546119]\n", + " [ 0.03152001 0.55442409 -0.83163719]\n", + " [ 0.02912985 0.53017881 -0.84738532]\n", + " [ 0.02668264 0.50515919 -0.86261361]\n", + " [ 0.02418698 0.479446 -0.87723801]\n", + " [ 0.02165199 0.45312811 -0.89118242]\n", + " [ 0.01908733 0.42630252 -0.90437926]\n", + " [ 0.03609684 0.60030254 -0.798958 ]\n", + " [ 0.06496856 0.59751606 -0.79922065]\n", + " [ 0.09368606 0.59415921 -0.7988728 ]\n", + " [ 0.12213781 0.59024982 -0.797927 ]\n", + " [ 0.15021343 0.58581061 -0.79640559]\n", + " [ 0.1778036 0.58086877 -0.79434083]\n", + " [ 0.20479974 0.57545569 -0.7917751 ]\n", + " [ 0.23109358 0.56960686 -0.78876092]\n", + " [ 0.01908733 0.42630252 -0.90437926]\n", + " [ 0.04897521 0.42353623 -0.90455431]\n", + " [ 0.07872287 0.42039635 -0.90391903]\n", + " [ 0.10821369 0.41690067 -0.90248747]\n", + " [ 0.13733477 0.41307144 -0.90028392]\n", + " [ 0.16597753 0.4089351 -0.89734249]\n", + " [ 0.19403691 0.40452208 -0.89370664]\n", + " [ 0.22140972 0.39986688 -0.88942915]\n", + " [ 0.23109358 0.56960686 -0.78876092]\n", + " [ 0.23065434 0.54753041 -0.80436871]\n", + " [ 0.22988795 0.52460035 -0.81972312]\n", + " [ 0.22880209 0.50088949 -0.8347211 ]\n", + " [ 0.22740412 0.47647535 -0.84926945]\n", + " [ 0.22570113 0.45144057 -0.86328467]\n", + " [ 0.22370037 0.42587322 -0.87669273]\n", + " [ 0.22140972 0.39986688 -0.88942915]\n", + " [ 0.03522376 0.59060894 -0.80618879]\n", + " [ 0.03241471 0.56243145 -0.8262083 ]\n", + " [ 0.02950351 0.53294511 -0.84563529]\n", + " [ 0.02650504 0.50228312 -0.86429691]\n", + " [ 0.02343514 0.4705943 -0.88203843]\n", + " [ 0.02031083 0.43804567 -0.89872324]\n", + " [ 0.04868963 0.59908341 -0.79920485]\n", + " [ 0.08398631 0.59528274 -0.79911498]\n", + " [ 0.1189404 0.59064261 -0.79811934]\n", + " [ 0.15334819 0.58520284 -0.79625497]\n", + " [ 0.18700841 0.57901346 -0.79358129]\n", + " [ 0.21972128 0.57213395 -0.79018055]\n", + " [ 0.032137 0.42523575 -0.9045119 ]\n", + " [ 0.06868807 0.421592 -0.90418037]\n", + " [ 0.10491226 0.41740409 -0.90264458]\n", + " [ 0.14060015 0.41271116 -0.89994505]\n", + " [ 0.17555172 0.40756185 -0.89614448]\n", + " [ 0.20957444 0.40201387 -0.89132676]\n", + " [ 0.23085379 0.56011137 -0.79560152]\n", + " [ 0.2300934 0.53247085 -0.81457463]\n", + " [ 0.22884946 0.50361992 -0.83306356]\n", + " [ 0.22713564 0.47369933 -0.85089267]\n", + " [ 0.22496506 0.44286126 -0.86790819]\n", + " [ 0.22235129 0.41127014 -0.88397781]\n", + " [ 0.03618814 0.60021875 -0.79901681]\n", + " [ 0.03618814 0.60021875 -0.79901681]\n", + " [ 0.22132572 0.39997274 -0.88940246]\n", + " [ 0.22132572 0.39997274 -0.88940246]\n", + " [ 0.04777476 0.5894704 -0.80637598]\n", + " [ 0.08321255 0.58567006 -0.80626686]\n", + " [ 0.11830853 0.58104435 -0.80522702]\n", + " [ 0.15285878 0.57563348 -0.8032934 ]\n", + " [ 0.18666225 0.5694879 -0.80052529]\n", + " [ 0.21951965 0.56266731 -0.79700478]\n", + " [ 0.04509043 0.5612854 -0.8263931 ]\n", + " [ 0.08088385 0.55749204 -0.82623267]\n", + " [ 0.11633729 0.55291576 -0.82507563]\n", + " [ 0.15124592 0.54759777 -0.8229589 ]\n", + " [ 0.18540933 0.54158956 -0.81994154]\n", + " [ 0.21862995 0.53495153 -0.81610527]\n", + " [ 0.04228066 0.53179387 -0.84581773]\n", + " [ 0.0783638 0.52801716 -0.84561043]\n", + " [ 0.11410855 0.52350423 -0.84434741]\n", + " [ 0.14930889 0.51829691 -0.84206601]\n", + " [ 0.18376486 0.51244724 -0.83882555]\n", + " [ 0.21728072 0.50601604 -0.83470765]\n", + " [ 0.03935972 0.50112913 -0.86447695]\n", + " [ 0.07566509 0.49737947 -0.86422709]\n", + " [ 0.1116341 0.49294515 -0.862869 ]\n", + " [ 0.14705938 0.48786794 -0.86044082]\n", + " [ 0.18174117 0.48219973 -0.85700266]\n", + " [ 0.21548531 0.47600116 -0.85263648]\n", + " [ 0.03634267 0.46944009 -0.88221608]\n", + " [ 0.07280081 0.46572827 -0.88192813]\n", + " [ 0.10892561 0.46138835 -0.88048623]\n", + " [ 0.14450855 0.45646138 -0.87792954]\n", + " [ 0.17934982 0.4509983 -0.87431926]\n", + " [ 0.21325637 0.44505885 -0.86973808]\n", + " [ 0.03324583 0.43689379 -0.89889851]\n", + " [ 0.06978542 0.43323048 -0.8985774 ]\n", + " [ 0.10599616 0.42900036 -0.89706382]\n", + " [ 0.14166876 0.42424316 -0.89439796]\n", + " [ 0.17660326 0.41900818 -0.89064215]\n", + " [ 0.21060712 0.41335374 -0.88587997]]\n", + "DEBUG:root:radec2pix: curVec Shape: (96, 3)\n", + "DEBUG:root:optics_fp: cphi: [-0.0055044 -0.00639203 -0.0076229 -0.00944382 -0.01241274 -0.01811485\n", + " -0.0335395 -0.22307599 -0.0055044 -0.14344285 -0.2735344 -0.39021968\n", + " -0.49076392 -0.57494454 -0.64415274 -0.70050591 -0.22307599 -0.98662859\n", + " -0.99647595 -0.9984093 -0.99909876 -0.99942085 -0.99959678 -0.99970325\n", + " -0.70050591 -0.75194059 -0.80589783 -0.86028974 -0.91173668 -0.955566\n", + " -0.98643233 -0.99970325 -0.00636666 -0.00777693 -0.00999392 -0.01398706\n", + " -0.02331621 -0.07013242 -0.06618572 -0.2308951 -0.37799383 -0.50124187\n", + " -0.60012567 -0.67754548 -0.93833732 -0.9947436 -0.99821572 -0.99911274\n", + " -0.99947098 -0.99964917 -0.72236515 -0.7873159 -0.85411461 -0.91708811\n", + " -0.96769535 -0.99629275 -0.00598404 -0.00598404 -0.999691 -0.999691\n", + " -0.07041425 -0.24485858 -0.398512 -0.52476457 -0.62394545 -0.7000711\n", + " -0.08596532 -0.29497775 -0.46908383 -0.60182876 -0.69847361 -0.76781625\n", + " -0.11028259 -0.36899894 -0.56404664 -0.69594091 -0.78213485 -0.83890011\n", + " -0.1535634 -0.48599238 -0.6913123 -0.80511955 -0.86923269 -0.90738164\n", + " -0.25098261 -0.68015432 -0.84745756 -0.91480539 -0.94651795 -0.96355992\n", + " -0.61607996 -0.94170609 -0.97911709 -0.98946165 -0.99367815 -0.99579412]\n", + "DEBUG:root:radec2pix: lat: [73.24108038 74.22539246 75.14065481 75.95980834 76.6531185 77.19018187\n", + " 77.5432879 77.69182998 73.24108038 74.24861044 75.19133398 76.04212851\n", + " 76.77071823 77.34548632 77.73675519 77.92139244 77.69182998 79.29098794\n", + " 80.92271511 82.58149911 84.2618841 85.95783408 87.66008742 89.3157252\n", + " 77.92139244 79.52414159 81.15801466 82.81709844 84.49494889 86.18266378\n", + " 87.85870936 89.3157252 73.68081786 74.84436919 75.87765867 76.72697854\n", + " 77.33670031 77.65849826 73.69035695 74.88520803 75.9561532 76.84869716\n", + " 77.50496612 77.87275428 78.38454537 80.36704866 82.39295371 84.45217978\n", + " 86.53330534 88.61095022 78.61571107 80.60164359 82.62842612 84.684393\n", + " 86.75213987 88.75761015 73.24806584 73.24806584 89.30770045 89.30770045\n", + " 74.1417384 75.39152116 76.51854281 77.46407515 78.16380788 78.55793051\n", + " 75.35984123 76.77406669 78.07566348 79.19387762 80.04201199 80.52949342\n", + " 76.4480688 78.03443361 79.53211824 80.86193095 81.91012885 82.53435821\n", + " 77.34827857 79.10130772 80.80570953 82.38629346 83.70950064 84.55228195\n", + " 77.99844552 79.88985033 81.78208758 83.62548455 85.30897599 86.53756064\n", + " 78.34312947 80.31550148 82.32609465 84.35907996 86.38425999 88.27008044]\n", + "DEBUG:root:optics_fp: rtanth: [31.45867372 27.07232164 22.68599914 18.29972749 13.91355478 9.52761765\n", + " 5.14251895 0.77266756 31.45867372 31.78680319 32.70527593 34.16651578\n", + " 36.10468169 38.44771501 41.12647627 44.07980062 0.77266756 4.62057574\n", + " 8.9768556 13.35288972 17.73406053 22.11731568 26.50162097 30.8865292\n", + " 44.07980062 41.06447698 38.31494783 35.89234872 33.86691125 32.31340541\n", + " 31.3021752 30.8865292 29.54629558 24.17042769 18.79463536 13.41900945\n", + " 8.04388357 2.67227674 31.51224371 32.31623619 33.96261905 36.33706944\n", + " 39.30786805 42.7508727 2.22187045 7.50028847 12.8598094 18.22903784\n", + " 23.60134944 28.97502929 42.72508353 39.20023922 36.1342981 33.65291956\n", + " 31.89283999 30.97725364 31.44375973 31.44375973 30.87190328 30.87190328\n", + " 29.6191671 30.47314683 32.21386423 34.70815714 37.80716925 41.37524227\n", + " 24.25945282 25.29503252 27.36711605 30.26354513 33.77288911 37.72448364\n", + " 18.90898716 20.22047017 22.759345 26.17080258 30.16018539 34.5277484\n", + " 13.57870729 15.35248874 18.5693102 22.62172417 27.13794906 31.92173094\n", + " 8.30755918 10.96964715 15.14772357 19.90921024 24.92192864 30.06045831\n", + " 3.38416012 7.92276206 13.11070286 18.40689143 23.73898749 29.08725072]\n", + "DEBUG:root:cartToSphere: vec: [[ 0.00110855 -0.20853555 0.97801416]\n", + " [ 0.00111823 -0.18105588 0.98347217]\n", + " [ 0.00112655 -0.15288447 0.98824343]\n", + " [ 0.00113349 -0.12412547 0.99226588]\n", + " [ 0.001139 -0.09488471 0.99548762]\n", + " [ 0.00114306 -0.06527159 0.99786688]\n", + " [ 0.00114562 -0.0353997 0.99937258]\n", + " [ 0.00114666 -0.00538646 0.99998484]\n", + " [ 0.00110855 -0.20853555 0.97801416]\n", + " [ 0.03013432 -0.20838958 0.97758156]\n", + " [ 0.05904256 -0.2079729 0.97635099]\n", + " [ 0.08772073 -0.20728684 0.97433939]\n", + " [ 0.11605724 -0.20633313 0.97157468]\n", + " [ 0.14394136 -0.20511339 0.96809575]\n", + " [ 0.17126266 -0.20362847 0.96395256]\n", + " [ 0.19791015 -0.2018782 0.95920632]\n", + " [ 0.00114666 -0.00538646 0.99998484]\n", + " [ 0.03116962 -0.00538259 0.99949962]\n", + " [ 0.06106803 -0.00537156 0.99811915]\n", + " [ 0.09072406 -0.00535349 0.99586168]\n", + " [ 0.1200235 -0.00532854 0.99275675]\n", + " [ 0.1488564 -0.00529689 0.98884464]\n", + " [ 0.17711651 -0.00525872 0.98417584]\n", + " [ 0.20469956 -0.00521415 0.97881096]\n", + " [ 0.19791015 -0.2018782 0.95920632]\n", + " [ 0.19966308 -0.17529764 0.96405674]\n", + " [ 0.20115603 -0.14802765 0.9683099 ]\n", + " [ 0.20238925 -0.12017919 0.97190306]\n", + " [ 0.20336191 -0.09186258 0.97478469]\n", + " [ 0.20407235 -0.06318839 0.97691438]\n", + " [ 0.20451873 -0.03426807 0.97826264]\n", + " [ 0.20469956 -0.00521415 0.97881096]\n", + " [ 0.00121266 -0.196646 0.9804738 ]\n", + " [ 0.00122459 -0.16248857 0.98670967]\n", + " [ 0.00123428 -0.12739553 0.99185123]\n", + " [ 0.00124164 -0.09156092 0.9957987 ]\n", + " [ 0.00124661 -0.05518617 0.9984753 ]\n", + " [ 0.00124912 -0.01848208 0.99982841]\n", + " [ 0.01377154 -0.20841259 0.97794404]\n", + " [ 0.04928181 -0.20805164 0.97687554]\n", + " [ 0.08450359 -0.2072855 0.97462396]\n", + " [ 0.11923105 -0.20611722 0.97123615]\n", + " [ 0.15326028 -0.20454967 0.9667837 ]\n", + " [ 0.18638779 -0.20258404 0.96136325]\n", + " [ 0.01424443 -0.00548838 0.99988348]\n", + " [ 0.05097175 -0.00547863 0.99868507]\n", + " [ 0.08739457 -0.00545803 0.99615882]\n", + " [ 0.12330108 -0.00542687 0.99235447]\n", + " [ 0.15848878 -0.0053855 0.98734609]\n", + " [ 0.192763 -0.0053342 0.98123085]\n", + " [ 0.19861623 -0.19038695 0.96140751]\n", + " [ 0.2005887 -0.15733098 0.96695974]\n", + " [ 0.20217123 -0.12334981 0.97155114]\n", + " [ 0.20336272 -0.08864677 0.97508223]\n", + " [ 0.2041602 -0.05342545 0.97747856]\n", + " [ 0.2045604 -0.01789151 0.97869042]\n", + " [ 0.00120792 -0.20844284 0.97803381]\n", + " [ 0.00120792 -0.20844284 0.97803381]\n", + " [ 0.20460634 -0.00531377 0.97882992]\n", + " [ 0.20460634 -0.00531377 0.97882992]\n", + " [ 0.01382559 -0.19661746 0.9803828 ]\n", + " [ 0.04947523 -0.19627694 0.97929953]\n", + " [ 0.08483539 -0.19555447 0.97701659]\n", + " [ 0.11969997 -0.19445357 0.97358088]\n", + " [ 0.15386543 -0.19297773 0.96906399]\n", + " [ 0.18712908 -0.19112874 0.96356241]\n", + " [ 0.01396162 -0.1624649 0.98661554]\n", + " [ 0.04996174 -0.16218264 0.98549511]\n", + " [ 0.08566901 -0.16158454 0.98313339]\n", + " [ 0.1208763 -0.16067502 0.97957769]\n", + " [ 0.15538076 -0.15945889 0.97489983]\n", + " [ 0.1889821 -0.15793949 0.969196 ]\n", + " [ 0.01407199 -0.12737685 0.99175456]\n", + " [ 0.05035615 -0.12715419 0.99060389]\n", + " [ 0.08634371 -0.12668294 0.98817822]\n", + " [ 0.12182616 -0.12596768 0.98452554]\n", + " [ 0.15660103 -0.12501365 0.97971818]\n", + " [ 0.19047015 -0.12382499 0.9738524 ]\n", + " [ 0.01415593 -0.0915474 0.9957001 ]\n", + " [ 0.05065593 -0.09138626 0.99452628]\n", + " [ 0.08685581 -0.09104555 0.9920518 ]\n", + " [ 0.12254563 -0.09052922 0.98832537]\n", + " [ 0.15752301 -0.08984197 0.98342001]\n", + " [ 0.1915915 -0.08898771 0.97743229]\n", + " [ 0.01421257 -0.05517797 0.99837538]\n", + " [ 0.05085809 -0.05508029 0.99718585]\n", + " [ 0.08720077 -0.05487388 0.99467828]\n", + " [ 0.12302951 -0.05456144 0.99090201]\n", + " [ 0.15814189 -0.05414617 0.9859307 ]\n", + " [ 0.1923426 -0.05363087 0.97986124]\n", + " [ 0.01424114 -0.01847933 0.99972782]\n", + " [ 0.05096003 -0.01844651 0.99853032]\n", + " [ 0.08737459 -0.01837718 0.996006 ]\n", + " [ 0.12327308 -0.0182723 0.99220455]\n", + " [ 0.15845303 -0.018133 0.9872 ]\n", + " [ 0.1927197 -0.01796031 0.98108947]]\n", + "DEBUG:root:optics_fp: sphi: [0.99998485 0.99997957 0.99997095 0.99995541 0.99992296 0.99983591\n", + " 0.99943739 0.97480106 0.99998485 0.9896586 0.96186222 0.92072178\n", + " 0.87129259 0.81819238 0.76489689 0.7136466 0.97480106 0.16298472\n", + " 0.08387896 0.05638146 0.04244609 0.03402888 0.028395 0.02436013\n", + " 0.7136466 0.65923088 0.59205464 0.50980542 0.41077515 0.29477725\n", + " 0.16416841 0.02436013 0.99997973 0.99996976 0.99995006 0.99990218\n", + " 0.99972814 0.99753769 0.99780732 0.97297865 0.92580811 0.86530722\n", + " 0.79990573 0.73548088 0.34572109 0.10239711 0.0597107 0.0421157\n", + " 0.0325231 0.02648658 0.69151182 0.61654981 0.52008483 0.39868458\n", + " 0.25212242 0.08602764 0.9999821 0.9999821 0.02485756 0.02485756\n", + " 0.99751784 0.96955881 0.91716312 0.8512474 0.7814679 0.71407315\n", + " 0.99629813 0.95550412 0.88315364 0.79862516 0.71563581 0.64067012\n", + " 0.99390027 0.92942982 0.82574293 0.71809906 0.6231092 0.5442854\n", + " 0.9881388 0.87396305 0.72255609 0.59311256 0.49440321 0.4203077\n", + " 0.9679916 0.73306896 0.53086315 0.40389491 0.32265115 0.26749257\n", + " 0.78768362 0.33643669 0.20329713 0.14479515 0.11226633 0.09161916]\n", + "DEBUG:root:mm_to_pix: fitpx: [[0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]]\n", + "DEBUG:root:mm_to_pix: fitpx.shape: (96, 2)\n", + "DEBUG:root:radec2pix: lng: [270.30457564 270.35386432 270.42218515 270.52319877 270.68775016\n", + " 271.00328211 271.85358468 282.01764037 270.30457564 278.22825834\n", + " 285.84900373 292.93736432 299.35666656 305.05982707 310.06566745\n", + " 314.43133752 282.01764037 350.20239022 354.97318448 356.62297809\n", + " 357.45797758 357.96205284 358.29934604 358.54086611 314.43133752\n", + " 318.71792809 323.65121653 329.29806584 335.69036822 342.79553001\n", + " 350.4881795 358.54086611 270.35332309 270.43180131 270.55509491\n", + " 270.77692983 271.2940439 273.86646927 273.78050957 283.32620486\n", + " 292.17913267 300.04776463 306.84264375 312.61566094 338.92831161\n", + " 353.86519186 356.42636123 357.47985638 358.05382146 358.4148969\n", + " 316.21189934 321.89127155 328.61157088 336.44738638 345.33544633\n", + " 355.00144674 270.33202411 270.33202411 358.51232366 358.51232366\n", + " 274.02225895 284.14773214 293.45215101 301.61524642 308.56613427\n", + " 314.39418307 274.91171606 287.12189287 297.93167364 306.95425335\n", + " 314.25788847 320.11321977 276.3042009 291.6047689 304.27729951\n", + " 314.04247307 321.39984571 326.97203004 278.79000558 298.99985673\n", + " 313.65088315 323.54527533 330.30207858 335.08673923 284.44409964\n", + " 312.71767267 327.81852787 336.08354959 341.09932037 344.41993917\n", + " 307.6197367 340.1007605 348.12231225 351.56865678 353.47160216\n", + " 354.67575821]\n", + "DEBUG:root:radec2pix: camVec: [[-0.00108623 -0.00110818 -0.00112898 -0.00114857 -0.00116686 -0.00118378\n", + " -0.00119922 -0.00121312 -0.00108623 -0.03008973 -0.05897582 -0.08763213\n", + " -0.11594722 -0.14381054 -0.17111212 -0.19774215 -0.00121312 -0.0312253\n", + " -0.06111305 -0.09075893 -0.12004913 -0.1488739 -0.17712688 -0.20470344\n", + " -0.19774215 -0.19951656 -0.20103291 -0.2022905 -0.20328809 -0.20402394\n", + " -0.20449622 -0.20470344 -0.00119558 -0.00122271 -0.00124786 -0.00127089\n", + " -0.00129164 -0.00130994 -0.01373956 -0.04922259 -0.08441749 -0.11911871\n", + " -0.1531227 -0.18622706 -0.01430615 -0.05102028 -0.08743049 -0.12332566\n", + " -0.15850368 -0.19276957 -0.19845732 -0.20045757 -0.20206974 -0.20329178\n", + " -0.20412054 -0.20455274 -0.00118556 -0.00118556 -0.20461015 -0.20461015\n", + " -0.01379915 -0.04942232 -0.08475642 -0.11959564 -0.15373662 -0.18697743\n", + " -0.01395111 -0.04992687 -0.08561039 -0.12079486 -0.15527748 -0.18885795\n", + " -0.0140777 -0.05033965 -0.08630574 -0.12176792 -0.15652378 -0.19037482\n", + " -0.01417814 -0.05065827 -0.08683905 -0.12251113 -0.15747231 -0.19152571\n", + " -0.0142515 -0.05087978 -0.08720594 -0.12301955 -0.15811848 -0.19230704\n", + " -0.01429691 -0.0510015 -0.08740238 -0.12328852 -0.15845779 -0.19271515]\n", + " [ 0.20994474 0.18250974 0.15437814 0.12565449 0.09644464 0.0668576\n", + " 0.03700641 0.00700791 0.20994474 0.20980966 0.20940234 0.20872399\n", + " 0.20777622 0.20656061 0.20507835 0.20333011 0.00700791 0.00701559\n", + " 0.00701392 0.00700302 0.00698305 0.00695418 0.00691659 0.00687038\n", + " 0.20333011 0.17679323 0.14956333 0.12175011 0.09346339 0.06481351\n", + " 0.03591173 0.00687038 0.19807534 0.16396932 0.12892083 0.09312409\n", + " 0.05677987 0.02009792 0.20982687 0.20947825 0.20872203 0.20756102\n", + " 0.20599809 0.20403521 0.00711509 0.00711803 0.00710683 0.00708177\n", + " 0.0070432 0.00699139 0.19185821 0.1588536 0.12491703 0.09025061\n", + " 0.0550575 0.01954302 0.20985223 0.20985223 0.00696998 0.00696998\n", + " 0.19805172 0.19772367 0.19701128 0.19591776 0.19444643 0.19259955\n", + " 0.16395068 0.1636812 0.16309354 0.16219177 0.16098028 0.15946229\n", + " 0.12890725 0.1286975 0.12823673 0.12752928 0.12657997 0.12539259\n", + " 0.09311572 0.09296747 0.092637 0.09212815 0.0914453 0.09059206\n", + " 0.05677687 0.05669199 0.05649545 0.05618991 0.05577844 0.0552636\n", + " 0.02010041 0.0200803 0.02002048 0.0199219 0.01978566 0.01961272]\n", + " [ 0.97771265 0.98320342 0.98801119 0.9920734 0.99533767 0.99776183\n", + " 0.99931431 0.99997471 0.97771265 0.97727914 0.97604944 0.97404051\n", + " 0.97128023 0.96780744 0.96367189 0.95893426 0.99997471 0.99948775\n", + " 0.99810621 0.99584827 0.99274339 0.98883174 0.98416372 0.97879993\n", + " 0.95893426 0.96381393 0.96809947 0.97172808 0.97464791 0.97681802\n", + " 0.97820838 0.97879993 0.98018607 0.98646468 0.9916541 0.9956537\n", + " 0.99838589 0.99979716 0.97764201 0.9765736 0.97432479 0.97094241\n", + " 0.96649792 0.96108746 0.99987235 0.99867225 0.99614527 0.99234098\n", + " 0.98733327 0.98121915 0.96114781 0.96673797 0.971372 0.97494989\n", + " 0.97739627 0.97866043 0.97773239 0.97773239 0.97881873 0.97881873\n", + " 0.98009443 0.97901113 0.97673072 0.97330012 0.96879081 0.96329894\n", + " 0.98636988 0.98524909 0.98288929 0.97933775 0.97466623 0.96897082\n", + " 0.99155673 0.99040541 0.9879811 0.98433168 0.97952939 0.97367044\n", + " 0.99555434 0.9943796 0.99190593 0.98818188 0.98328034 0.97729779\n", + " 0.99828517 0.99709441 0.99458704 0.99081223 0.98584345 0.97977749\n", + " 0.99969574 0.99849668 0.99597189 0.99217088 0.98716749 0.98105872]]\n", + "DEBUG:root:radec2pix: camVec Shape: (3, 96)\n", + "DEBUG:root:radec2pix: lat: [77.96328192 79.56853071 81.20563621 82.86944579 84.55492216 86.25697831\n", + " 87.97026012 89.68446141 77.96328192 77.84499787 77.51456239 76.99218852\n", + " 76.30618444 75.48813083 74.56921129 73.5781677 89.68446141 88.18737722\n", + " 86.48534608 84.7856574 83.09971795 81.43388184 79.79360686 78.18420142\n", + " 73.5781677 74.59165918 75.53717808 76.38588844 77.10603256 77.66476376\n", + " 78.03174302 78.18420142 78.65888684 80.64836049 82.6805387 84.74610355\n", + " 86.83565024 88.93857815 77.94403081 77.65435125 77.06482717 76.22448951\n", + " 75.19110028 74.0211233 89.125335 87.06142445 84.97647052 82.91045242\n", + " 80.87550158 78.88161748 74.03033777 75.2306137 76.3004884 77.18265224\n", + " 77.81700171 78.15051889 77.96868077 77.96868077 78.18950618 78.18950618\n", + " 78.63240168 78.32169564 77.69220555 76.80049546 75.71119975 74.48541744\n", + " 80.6152305 80.22940153 79.46186211 78.40069669 77.13562878 75.74187621\n", + " 82.63719517 82.13946169 81.18123393 79.90730671 78.44079679 76.86879929\n", + " 84.68476231 84.00240554 82.77130238 81.23639689 79.55203729 77.80444657\n", + " 86.73357497 85.70054621 84.08633958 82.26535796 80.37757677 78.48177609\n", + " 88.66315983 86.89328024 84.87745159 82.8411917 80.82286686 78.83968928]\n", + "DEBUG:root:optics_fp: xyfp: [[ 0.173161 -31.45819714]\n", + " [ 0.17304708 -27.07176857]\n", + " [ 0.17293316 -22.68534 ]\n", + " [ 0.17281925 -18.29891143]\n", + " [ 0.17270533 -13.91248287]\n", + " [ 0.17259141 -9.52605429]\n", + " [ 0.17247749 -5.13962573]\n", + " [ 0.17236358 -0.75319715]\n", + " [ 0.173161 -31.45819714]\n", + " [ 4.55958957 -31.45808322]\n", + " [ 8.94601814 -31.45796931]\n", + " [ 13.33244671 -31.45785538]\n", + " [ 17.71887528 -31.45774147]\n", + " [ 22.10530385 -31.45762756]\n", + " [ 26.49173242 -31.45751363]\n", + " [ 30.87816099 -31.45739971]\n", + " [ 0.17236358 -0.75319715]\n", + " [ 4.55879215 -0.75308323]\n", + " [ 8.94522072 -0.75296932]\n", + " [ 13.33164929 -0.7528554 ]\n", + " [ 17.71807786 -0.75274148]\n", + " [ 22.10450643 -0.75262756]\n", + " [ 26.490935 -0.75251364]\n", + " [ 30.87736356 -0.75239973]\n", + " [ 30.87816099 -31.45739971]\n", + " [ 30.87804707 -27.07097114]\n", + " [ 30.87793315 -22.68454257]\n", + " [ 30.87781924 -18.29811401]\n", + " [ 30.87770532 -13.91168544]\n", + " [ 30.87759141 -9.52525687]\n", + " [ 30.87747749 -5.1388283 ]\n", + " [ 30.87736356 -0.75239973]\n", + " [ 0.18811133 -29.54569675]\n", + " [ 0.18797171 -24.16969676]\n", + " [ 0.1878321 -18.79369675]\n", + " [ 0.18769248 -13.41769676]\n", + " [ 0.18755286 -8.04169676]\n", + " [ 0.18741324 -2.66569676]\n", + " [ 2.08566061 -31.44314748]\n", + " [ 7.46166061 -31.44300785]\n", + " [ 12.83766061 -31.44286824]\n", + " [ 18.2136606 -31.44272862]\n", + " [ 23.5896606 -31.442589 ]\n", + " [ 28.9656606 -31.44244938]\n", + " [ 2.08486397 -0.76814748]\n", + " [ 7.46086396 -0.76800786]\n", + " [ 12.83686396 -0.76786825]\n", + " [ 18.21286396 -0.76772863]\n", + " [ 23.58886395 -0.76758901]\n", + " [ 28.96486395 -0.7674494 ]\n", + " [ 30.86311132 -29.54490011]\n", + " [ 30.86297171 -24.16890011]\n", + " [ 30.86283209 -18.79290011]\n", + " [ 30.86269247 -13.41690011]\n", + " [ 30.86255285 -8.04090011]\n", + " [ 30.86241323 -2.66490012]\n", + " [ 0.18816061 -31.44319675]\n", + " [ 0.18816061 -31.44319675]\n", + " [ 30.86236396 -0.76740012]\n", + " [ 30.86236396 -0.76740012]\n", + " [ 2.08561133 -29.54564748]\n", + " [ 7.46161133 -29.54550785]\n", + " [ 12.83761133 -29.54536824]\n", + " [ 18.21361133 -29.54522862]\n", + " [ 23.58961132 -29.545089 ]\n", + " [ 28.96561132 -29.54494938]\n", + " [ 2.08547171 -24.16964747]\n", + " [ 7.46147171 -24.16950786]\n", + " [ 12.83747171 -24.16936824]\n", + " [ 18.21347171 -24.16922862]\n", + " [ 23.58947171 -24.16908901]\n", + " [ 28.9654717 -24.16894939]\n", + " [ 2.0853321 -18.79364747]\n", + " [ 7.46133209 -18.79350785]\n", + " [ 12.83733209 -18.79336824]\n", + " [ 18.21333209 -18.79322862]\n", + " [ 23.58933209 -18.79308901]\n", + " [ 28.96533209 -18.79294939]\n", + " [ 2.08519248 -13.41764748]\n", + " [ 7.46119248 -13.41750786]\n", + " [ 12.83719247 -13.41736824]\n", + " [ 18.21319248 -13.41722863]\n", + " [ 23.58919247 -13.41708901]\n", + " [ 28.96519247 -13.41694939]\n", + " [ 2.08505286 -8.04164748]\n", + " [ 7.46105286 -8.04150786]\n", + " [ 12.83705286 -8.04136825]\n", + " [ 18.21305286 -8.04122863]\n", + " [ 23.58905286 -8.04108901]\n", + " [ 28.96505285 -8.04094939]\n", + " [ 2.08491324 -2.66564748]\n", + " [ 7.46091324 -2.66550786]\n", + " [ 12.83691324 -2.66536825]\n", + " [ 18.21291324 -2.66522863]\n", + " [ 23.58891323 -2.66508901]\n", + " [ 28.96491324 -2.66494939]]\n", + "DEBUG:root:optics_fp: xyfp shape: (96, 2)\n", + "DEBUG:root:radec2pix: curVec: [[-0.16674024 0.53948597 -0.82531969]\n", + " [-0.146125 0.52555483 -0.8381167 ]\n", + " [-0.12497953 0.51092037 -0.85049426]\n", + " [-0.10338199 0.49561806 -0.86236588]\n", + " [-0.0814116 0.47968842 -0.87365392]\n", + " [-0.05915009 0.4631782 -0.88428911]\n", + " [-0.0366823 0.446141 -0.89421061]\n", + " [-0.01409604 0.42863743 -0.90336662]\n", + " [-0.16674024 0.53948597 -0.82531969]\n", + " [-0.14754552 0.55907876 -0.81588067]\n", + " [-0.12821549 0.57809238 -0.80583496]\n", + " [-0.10882514 0.5964578 -0.79523279]\n", + " [-0.08944933 0.61411149 -0.78413385]\n", + " [-0.07016236 0.63099517 -0.77260749]\n", + " [-0.051038 0.64705532 -0.76073289]\n", + " [-0.03214959 0.66224287 -0.74859921]\n", + " [-0.01409604 0.42863743 -0.90336662]\n", + " [ 0.00565558 0.44898281 -0.89352249]\n", + " [ 0.02534094 0.46885847 -0.88290972]\n", + " [ 0.0448825 0.48819177 -0.87158152]\n", + " [ 0.06420495 0.50691736 -0.85960021]\n", + " [ 0.08323551 0.52497722 -0.84703646]\n", + " [ 0.1019036 0.54232002 -0.83396922]\n", + " [ 0.12013968 0.55889982 -0.8204861 ]\n", + " [-0.03214959 0.66224287 -0.74859921]\n", + " [-0.0110512 0.64978531 -0.76003745]\n", + " [ 0.01040478 0.63648832 -0.77121616]\n", + " [ 0.0321359 0.62238987 -0.7820474 ]\n", + " [ 0.05405918 0.6075323 -0.79245322]\n", + " [ 0.07609081 0.5919625 -0.80236562]\n", + " [ 0.09814609 0.57573251 -0.8117262 ]\n", + " [ 0.12013968 0.55889982 -0.8204861 ]\n", + " [-0.15775654 0.53356868 -0.83091355]\n", + " [-0.1321234 0.51601812 -0.8463266 ]\n", + " [-0.10577157 0.49744574 -0.86102271]\n", + " [-0.07884639 0.47792403 -0.87485534]\n", + " [-0.05149838 0.45753907 -0.88769697]\n", + " [-0.02388503 0.43639251 -0.89943932]\n", + " [-0.15832295 0.54804894 -0.82132588]\n", + " [-0.13469683 0.57168215 -0.80934312]\n", + " [-0.11094214 0.59437625 -0.79649778]\n", + " [-0.08719673 0.61601202 -0.78289586]\n", + " [-0.06359744 0.63648208 -0.76866503]\n", + " [-0.04027984 0.65568978 -0.7539552 ]\n", + " [-0.00555848 0.43762147 -0.89914212]\n", + " [ 0.0186145 0.46225025 -0.88655412]\n", + " [ 0.04261086 0.48610043 -0.8728635 ]\n", + " [ 0.06629096 0.50904863 -0.85818122]\n", + " [ 0.08952082 0.53098798 -0.8426374 ]\n", + " [ 0.11217096 0.55182628 -0.82638092]\n", + " [-0.02306391 0.65686602 -0.75365449]\n", + " [ 0.00304531 0.64102791 -0.76751153]\n", + " [ 0.02960991 0.62396626 -0.78089011]\n", + " [ 0.05647735 0.60575718 -0.79364258]\n", + " [ 0.08349333 0.58648708 -0.8056437 ]\n", + " [ 0.11050163 0.56625402 -0.81678992]\n", + " [-0.16660541 0.53950747 -0.82533286]\n", + " [-0.16660541 0.53950747 -0.82533286]\n", + " [ 0.12000312 0.55890299 -0.82050393]\n", + " [ 0.12000312 0.55890299 -0.82050393]\n", + " [-0.14944275 0.54214459 -0.82688941]\n", + " [-0.12573974 0.56587963 -0.81484339]\n", + " [-0.10192613 0.58868164 -0.80191333]\n", + " [-0.07814025 0.61043149 -0.78820524]\n", + " [-0.05451912 0.63102222 -0.77384664]\n", + " [-0.03119826 0.65035764 -0.75898722]\n", + " [-0.12373117 0.5246811 -0.84225907]\n", + " [-0.09983983 0.54867639 -0.83005194]\n", + " [-0.07588939 0.57175797 -0.81690491]\n", + " [-0.05201946 0.59380668 -0.80292441]\n", + " [-0.02836753 0.61471669 -0.7882377 ]\n", + " [-0.00506877 0.6343935 -0.77299366]\n", + " [-0.09731637 0.50618008 -0.85691963]\n", + " [-0.07328135 0.5303938 -0.84457815]\n", + " [-0.04923983 0.55371677 -0.83124796]\n", + " [-0.02533247 0.5760294 -0.81703635]\n", + " [-0.00169682 0.59722658 -0.80207078]\n", + " [ 0.0215327 0.61721543 -0.78649949]\n", + " [-0.07034415 0.48671361 -0.87072473]\n", + " [-0.0462116 0.51110326 -0.85827615]\n", + " [-0.02212641 0.53462958 -0.8447968 ]\n", + " [ 0.00177031 0.55717209 -0.83039516]\n", + " [ 0.02534145 0.57862584 -0.81519933]\n", + " [ 0.0484538 0.59889906 -0.79935734]\n", + " [-0.04296554 0.46636729 -0.88354712]\n", + " [-0.01878303 0.49088917 -0.87101953]\n", + " [ 0.00529734 0.51458018 -0.8574259 ]\n", + " [ 0.02913463 0.53731867 -0.84287592]\n", + " [ 0.05259279 0.5589992 -0.82749858]\n", + " [ 0.07554015 0.57953032 -0.81144211]\n", + " [-0.01533846 0.44524224 -0.89527877]\n", + " [ 0.00884558 0.46985126 -0.88270128]\n", + " [ 0.03287238 0.49366714 -0.86902944]\n", + " [ 0.05660186 0.51656694 -0.85437394]\n", + " [ 0.07989944 0.53844421 -0.83886465]\n", + " [ 0.1026351 0.55920709 -0.82265027]]\n", + "DEBUG:root:radec2pix: curVec Shape: (96, 3)\n", + "DEBUG:root:optics_fp: cphi: [-0.0055044 -0.00639203 -0.0076229 -0.00944382 -0.01241274 -0.01811485\n", + " -0.0335395 -0.22307599 -0.0055044 -0.14344285 -0.2735344 -0.39021968\n", + " -0.49076392 -0.57494454 -0.64415274 -0.70050591 -0.22307599 -0.98662859\n", + " -0.99647595 -0.9984093 -0.99909876 -0.99942085 -0.99959678 -0.99970325\n", + " -0.70050591 -0.75194059 -0.80589783 -0.86028974 -0.91173668 -0.955566\n", + " -0.98643233 -0.99970325 -0.00636666 -0.00777693 -0.00999392 -0.01398706\n", + " -0.02331621 -0.07013242 -0.06618572 -0.2308951 -0.37799383 -0.50124187\n", + " -0.60012567 -0.67754548 -0.93833732 -0.9947436 -0.99821572 -0.99911274\n", + " -0.99947098 -0.99964917 -0.72236515 -0.7873159 -0.85411461 -0.91708811\n", + " -0.96769535 -0.99629275 -0.00598404 -0.00598404 -0.999691 -0.999691\n", + " -0.07041425 -0.24485858 -0.398512 -0.52476457 -0.62394545 -0.7000711\n", + " -0.08596532 -0.29497775 -0.46908383 -0.60182876 -0.69847361 -0.76781625\n", + " -0.11028259 -0.36899894 -0.56404664 -0.69594091 -0.78213485 -0.83890011\n", + " -0.1535634 -0.48599238 -0.6913123 -0.80511955 -0.86923269 -0.90738164\n", + " -0.25098261 -0.68015432 -0.84745756 -0.91480539 -0.94651795 -0.96355992\n", + " -0.61607996 -0.94170609 -0.97911709 -0.98946165 -0.99367815 -0.99579412]\n", + "DEBUG:root:optics_fp: rtanth: [45.10526614 42.15252235 39.46728719 37.10767964 35.13935868 33.63109692\n", + " 32.64672024 32.23425998 45.10526614 42.08371704 39.32015966 36.87264817\n", + " 34.80791464 33.1974573 32.10970154 31.5986741 32.23425998 27.84962696\n", + " 23.46566508 19.08283694 14.70215645 10.32635724 5.96618932 1.74318313\n", + " 31.5986741 27.21812469 22.83983208 18.46540167 14.09842896 9.748941\n", + " 5.45889306 1.74318313 43.77728663 40.33061683 37.34259278 34.93111177\n", + " 33.22196043 32.3267303 43.74864122 40.21129183 37.11812392 34.58850978\n", + " 32.75328451 31.73315358 30.32290674 24.94961031 19.57779834 14.20915457\n", + " 8.84944693 3.53950567 29.68929466 24.32204857 18.9597634 13.60830488\n", + " 8.2886698 3.16557807 45.08405409 45.08405409 1.76362955 1.76362955\n", + " 42.40073703 38.740507 35.51948783 32.86706408 30.92986484 29.84747775\n", + " 38.83207862 34.7984872 31.1727741 28.11319496 25.82178089 24.5148885\n", + " 35.71891532 31.28650338 27.19655174 23.62757526 20.84885967 19.20651814\n", + " 33.18967076 28.36474267 23.77742123 19.59529652 16.13655116 13.95004204\n", + " 31.3858301 26.23117825 21.1868319 16.35517444 11.99601471 8.83853824\n", + " 30.43664187 25.08771711 19.753498 14.45027919 9.23164159 4.4089223 ]\n", + "DEBUG:root:radec2pix: xyfp: [[-32.208296 -31.60697943]\n", + " [-32.20831882 -27.22055086]\n", + " [-32.20834163 -22.83412229]\n", + " [-32.20836444 -18.44769372]\n", + " [-32.20838725 -14.06126515]\n", + " [-32.20841007 -9.67483658]\n", + " [-32.20843288 -5.288408 ]\n", + " [-32.2084557 -0.90197943]\n", + " [-32.208296 -31.60697943]\n", + " [-27.82186743 -31.60695662]\n", + " [-23.43543886 -31.60693381]\n", + " [-19.04901029 -31.60691099]\n", + " [-14.66258171 -31.60688818]\n", + " [-10.27615314 -31.60686536]\n", + " [ -5.88972457 -31.60684255]\n", + " [ -1.503296 -31.60681974]\n", + " [-32.2084557 -0.90197943]\n", + " [-27.82202712 -0.90195662]\n", + " [-23.43559855 -0.9019338 ]\n", + " [-19.04916999 -0.90191099]\n", + " [-14.66274141 -0.90188818]\n", + " [-10.27631284 -0.90186536]\n", + " [ -5.88988428 -0.90184255]\n", + " [ -1.5034557 -0.90181973]\n", + " [ -1.503296 -31.60681974]\n", + " [ -1.50331881 -27.22039116]\n", + " [ -1.50334163 -22.83396259]\n", + " [ -1.50336444 -18.44753402]\n", + " [ -1.50338726 -14.06110544]\n", + " [ -1.50341007 -9.67467688]\n", + " [ -1.50343288 -5.2882483 ]\n", + " [ -1.5034557 -0.90181973]\n", + " [-32.19330594 -29.69447935]\n", + " [-32.19333391 -24.31847935]\n", + " [-32.19336187 -18.94247936]\n", + " [-32.19338983 -13.56647936]\n", + " [-32.19341779 -8.19047935]\n", + " [-32.19344575 -2.81447935]\n", + " [-30.29579608 -31.59196949]\n", + " [-24.91979608 -31.59194152]\n", + " [-19.54379608 -31.59191356]\n", + " [-14.16779608 -31.5918856 ]\n", + " [ -8.79179608 -31.59185764]\n", + " [ -3.41579608 -31.59182968]\n", + " [-30.29595562 -0.91696949]\n", + " [-24.91995562 -0.91694153]\n", + " [-19.54395562 -0.91691356]\n", + " [-14.16795562 -0.9168856 ]\n", + " [ -8.79195562 -0.91685764]\n", + " [ -3.41595563 -0.91682968]\n", + " [ -1.51830595 -29.69431981]\n", + " [ -1.51833391 -24.31831981]\n", + " [ -1.51836187 -18.94231981]\n", + " [ -1.51838983 -13.56631981]\n", + " [ -1.51841779 -8.19031981]\n", + " [ -1.51844575 -2.81431982]\n", + " [-32.19329608 -31.59197936]\n", + " [-32.19329608 -31.59197936]\n", + " [ -1.51845562 -0.91681981]\n", + " [ -1.51845562 -0.91681981]\n", + " [-30.29580595 -29.69446949]\n", + " [-24.91980594 -29.69444152]\n", + " [-19.54380595 -29.69441356]\n", + " [-14.16780595 -29.69438561]\n", + " [ -8.79180595 -29.69435764]\n", + " [ -3.41580595 -29.69432968]\n", + " [-30.29583391 -24.31846949]\n", + " [-24.91983391 -24.31844152]\n", + " [-19.54383391 -24.31841356]\n", + " [-14.16783391 -24.31838561]\n", + " [ -8.79183391 -24.31835764]\n", + " [ -3.41583391 -24.31832968]\n", + " [-30.29586187 -18.94246949]\n", + " [-24.91986187 -18.94244153]\n", + " [-19.54386187 -18.94241356]\n", + " [-14.16786187 -18.94238561]\n", + " [ -8.79186187 -18.94235764]\n", + " [ -3.41586187 -18.94232969]\n", + " [-30.29588983 -13.56646949]\n", + " [-24.91988983 -13.56644152]\n", + " [-19.54388984 -13.56641357]\n", + " [-14.16788983 -13.5663856 ]\n", + " [ -8.79188983 -13.56635764]\n", + " [ -3.41588983 -13.56632968]\n", + " [-30.29591779 -8.19046949]\n", + " [-24.91991779 -8.19044152]\n", + " [-19.54391779 -8.19041356]\n", + " [-14.16791779 -8.1903856 ]\n", + " [ -8.79191779 -8.19035764]\n", + " [ -3.41591779 -8.19032968]\n", + " [-30.29594575 -2.81446949]\n", + " [-24.91994576 -2.81444153]\n", + " [-19.54394575 -2.81441356]\n", + " [-14.16794576 -2.8143856 ]\n", + " [ -8.79194575 -2.81435764]\n", + " [ -3.41594575 -2.81432968]]\n", + "DEBUG:root:optics_fp: cphi: [-0.71462647 -0.76465055 -0.81663789 -0.86852682 -0.91713533 -0.95822269\n", + " -0.98707045 -0.99965519 -0.71462647 -0.66170459 -0.59665476 -0.51729759\n", + " -0.42196448 -0.31030314 -0.18420747 -0.04836971 -0.99965519 -0.99953644\n", + " -0.99934473 -0.99900557 -0.99831831 -0.99657638 -0.98967281 -0.87090507\n", + " -0.04836971 -0.05610053 -0.06679051 -0.08253363 -0.10799424 -0.15602533\n", + " -0.27837409 -0.87090507 -0.73594733 -0.79879708 -0.86266587 -0.92216881\n", + " -0.96955698 -0.99635146 -0.69307094 -0.62034596 -0.5272064 -0.41033606\n", + " -0.26919173 -0.10843276 -0.99959581 -0.99940041 -0.99902199 -0.99813478\n", + " -0.99516407 -0.96924606 -0.05196415 -0.06335735 -0.0811815 -0.11297393\n", + " -0.18526317 -0.48452029 -0.71462988 -0.71462988 -0.86931637 -0.86931637\n", + " -0.71508845 -0.64388103 -0.55091667 -0.43180852 -0.28504096 -0.11526196\n", + " -0.78075859 -0.71676907 -0.62767848 -0.50476226 -0.34135833 -0.1402609\n", + " -0.84875703 -0.7971706 -0.71938094 -0.60051365 -0.4226937 -0.17893311\n", + " -0.91338303 -0.87922117 -0.82275039 -0.7239943 -0.54602022 -0.24622747\n", + " -0.96582068 -0.95066579 -0.92326613 -0.86731478 -0.73433428 -0.38842227\n", + " -0.99588139 -0.99392405 -0.99016821 -0.98152333 -0.95403253 -0.77825973]\n", + "DEBUG:root:make_az_asym: xyp: [[ 0.173161 -31.45819714]\n", + " [ 0.17304708 -27.07176857]\n", + " [ 0.17293316 -22.68534 ]\n", + " [ 0.17281925 -18.29891143]\n", + " [ 0.17270533 -13.91248287]\n", + " [ 0.17259141 -9.52605429]\n", + " [ 0.17247749 -5.13962573]\n", + " [ 0.17236358 -0.75319715]\n", + " [ 0.173161 -31.45819714]\n", + " [ 4.55958957 -31.45808322]\n", + " [ 8.94601814 -31.45796931]\n", + " [ 13.33244671 -31.45785538]\n", + " [ 17.71887528 -31.45774147]\n", + " [ 22.10530385 -31.45762756]\n", + " [ 26.49173242 -31.45751363]\n", + " [ 30.87816099 -31.45739971]\n", + " [ 0.17236358 -0.75319715]\n", + " [ 4.55879215 -0.75308323]\n", + " [ 8.94522072 -0.75296932]\n", + " [ 13.33164929 -0.7528554 ]\n", + " [ 17.71807786 -0.75274148]\n", + " [ 22.10450643 -0.75262756]\n", + " [ 26.490935 -0.75251364]\n", + " [ 30.87736356 -0.75239973]\n", + " [ 30.87816099 -31.45739971]\n", + " [ 30.87804707 -27.07097114]\n", + " [ 30.87793315 -22.68454257]\n", + " [ 30.87781924 -18.29811401]\n", + " [ 30.87770532 -13.91168544]\n", + " [ 30.87759141 -9.52525687]\n", + " [ 30.87747749 -5.1388283 ]\n", + " [ 30.87736356 -0.75239973]\n", + " [ 0.18811133 -29.54569675]\n", + " [ 0.18797171 -24.16969676]\n", + " [ 0.1878321 -18.79369675]\n", + " [ 0.18769248 -13.41769676]\n", + " [ 0.18755286 -8.04169676]\n", + " [ 0.18741324 -2.66569676]\n", + " [ 2.08566061 -31.44314748]\n", + " [ 7.46166061 -31.44300785]\n", + " [ 12.83766061 -31.44286824]\n", + " [ 18.2136606 -31.44272862]\n", + " [ 23.5896606 -31.442589 ]\n", + " [ 28.9656606 -31.44244938]\n", + " [ 2.08486397 -0.76814748]\n", + " [ 7.46086396 -0.76800786]\n", + " [ 12.83686396 -0.76786825]\n", + " [ 18.21286396 -0.76772863]\n", + " [ 23.58886395 -0.76758901]\n", + " [ 28.96486395 -0.7674494 ]\n", + " [ 30.86311132 -29.54490011]\n", + " [ 30.86297171 -24.16890011]\n", + " [ 30.86283209 -18.79290011]\n", + " [ 30.86269247 -13.41690011]\n", + " [ 30.86255285 -8.04090011]\n", + " [ 30.86241323 -2.66490012]\n", + " [ 0.18816061 -31.44319675]\n", + " [ 0.18816061 -31.44319675]\n", + " [ 30.86236396 -0.76740012]\n", + " [ 30.86236396 -0.76740012]\n", + " [ 2.08561133 -29.54564748]\n", + " [ 7.46161133 -29.54550785]\n", + " [ 12.83761133 -29.54536824]\n", + " [ 18.21361133 -29.54522862]\n", + " [ 23.58961132 -29.545089 ]\n", + " [ 28.96561132 -29.54494938]\n", + " [ 2.08547171 -24.16964747]\n", + " [ 7.46147171 -24.16950786]\n", + " [ 12.83747171 -24.16936824]\n", + " [ 18.21347171 -24.16922862]\n", + " [ 23.58947171 -24.16908901]\n", + " [ 28.9654717 -24.16894939]\n", + " [ 2.0853321 -18.79364747]\n", + " [ 7.46133209 -18.79350785]\n", + " [ 12.83733209 -18.79336824]\n", + " [ 18.21333209 -18.79322862]\n", + " [ 23.58933209 -18.79308901]\n", + " [ 28.96533209 -18.79294939]\n", + " [ 2.08519248 -13.41764748]\n", + " [ 7.46119248 -13.41750786]\n", + " [ 12.83719247 -13.41736824]\n", + " [ 18.21319248 -13.41722863]\n", + " [ 23.58919247 -13.41708901]\n", + " [ 28.96519247 -13.41694939]\n", + " [ 2.08505286 -8.04164748]\n", + " [ 7.46105286 -8.04150786]\n", + " [ 12.83705286 -8.04136825]\n", + " [ 18.21305286 -8.04122863]\n", + " [ 23.58905286 -8.04108901]\n", + " [ 28.96505285 -8.04094939]\n", + " [ 2.08491324 -2.66564748]\n", + " [ 7.46091324 -2.66550786]\n", + " [ 12.83691324 -2.66536825]\n", + " [ 18.21291324 -2.66522863]\n", + " [ 23.58891323 -2.66508901]\n", + " [ 28.96491324 -2.66494939]]\n", + "DEBUG:root:make_az_asym: xyp: shape: (96, 2)\n", + "DEBUG:root:optics_fp: sphi: [-0.69950626 -0.64444513 -0.57715037 -0.49564218 -0.39857594 -0.28602322\n", + " -0.16028704 -0.02625833 -0.69950626 -0.74976466 -0.80249804 -0.85580559\n", + " -0.90661236 -0.95063766 -0.98288738 -0.9988295 -0.02625833 -0.03044512\n", + " -0.03619555 -0.04458562 -0.05797023 -0.08267725 -0.1433448 -0.49145128\n", + " -0.9988295 -0.99842512 -0.99776702 -0.99658828 -0.99415152 -0.98775305\n", + " -0.96047273 -0.49145128 -0.67703879 -0.60160056 -0.50577425 -0.38678764\n", + " -0.24486582 -0.08534494 -0.72086938 -0.78432831 -0.84973726 -0.91193438\n", + " -0.96308661 -0.99410379 -0.02842926 -0.03462403 -0.04421613 -0.06104888\n", + " -0.09822663 -0.24609363 -0.99864895 -0.99799091 -0.99669933 -0.99359795\n", + " -0.98268894 -0.87478002 -0.69950278 -0.69950278 -0.49425605 -0.49425605\n", + " -0.69903398 -0.76512562 -0.83456026 -0.9019653 -0.95851534 -0.99333513\n", + " -0.6248328 -0.69731062 -0.77847269 -0.8632584 -0.93993324 -0.99011458\n", + " -0.52878304 -0.60375411 -0.69461576 -0.79961451 -0.90627261 -0.98386124\n", + " -0.40710127 -0.47641382 -0.56840284 -0.68980596 -0.837772 -0.96921207\n", + " -0.25921116 -0.31021694 -0.38416098 -0.49776006 -0.67878801 -0.92148149\n", + " -0.09066564 -0.11006805 -0.13988178 -0.19134252 -0.29970307 -0.6279425 ]\n", + "DEBUG:root:radec2pix: curVec: [[ 1.79217924e-01 -4.23657715e-01 8.87916142e-01]\n", + " [ 1.51790643e-01 -4.22478636e-01 8.93572271e-01]\n", + " [ 1.23699710e-01 -4.20935320e-01 8.98616625e-01]\n", + " [ 9.50505647e-02 -4.19015480e-01 9.02990264e-01]\n", + " [ 6.59498422e-02 -4.16711177e-01 9.06643487e-01]\n", + " [ 3.65071292e-02 -4.14019058e-01 9.09535843e-01]\n", + " [ 6.83575398e-03 -4.10940613e-01 9.11636487e-01]\n", + " [-2.29475753e-02 -4.07482355e-01 9.12924717e-01]\n", + " [ 1.79217924e-01 -4.23657715e-01 8.87916142e-01]\n", + " [ 1.82642145e-01 -3.97205380e-01 8.99371855e-01]\n", + " [ 1.85806739e-01 -3.70501522e-01 9.10057404e-01]\n", + " [ 1.88698725e-01 -3.43654947e-01 9.19942427e-01]\n", + " [ 1.91305357e-01 -3.16778114e-01 9.29006936e-01]\n", + " [ 1.93613669e-01 -2.89987094e-01 9.37241288e-01]\n", + " [ 1.95610044e-01 -2.63401845e-01 9.44646060e-01]\n", + " [ 1.97280058e-01 -2.37146560e-01 9.51231879e-01]\n", + " [-2.29475753e-02 -4.07482355e-01 9.12924717e-01]\n", + " [-1.92562764e-02 -3.80133633e-01 9.24731105e-01]\n", + " [-1.55616390e-02 -3.52532752e-01 9.35670078e-01]\n", + " [-1.18784740e-02 -3.24793397e-01 9.45710395e-01]\n", + " [-8.22141911e-03 -2.97030583e-01 9.54832572e-01]\n", + " [-4.60489262e-03 -2.69359999e-01 9.63028549e-01]\n", + " [-1.04319579e-03 -2.41898460e-01 9.70301008e-01]\n", + " [ 2.44925713e-03 -2.14765395e-01 9.76662596e-01]\n", + " [ 1.97280058e-01 -2.37146560e-01 9.51231879e-01]\n", + " [ 1.70975317e-01 -2.34265076e-01 9.57020018e-01]\n", + " [ 1.43977033e-01 -2.31288688e-01 9.62172623e-01]\n", + " [ 1.16395667e-01 -2.28206260e-01 9.66630204e-01]\n", + " [ 8.83414479e-02 -2.25011639e-01 9.70343007e-01]\n", + " [ 5.99248044e-02 -2.21703622e-01 9.73271042e-01]\n", + " [ 3.12568007e-02 -2.18285648e-01 9.75384226e-01]\n", + " [ 2.44925713e-03 -2.14765395e-01 9.76662596e-01]\n", + " [ 1.67360081e-01 -4.23097191e-01 8.90493891e-01]\n", + " [ 1.33285689e-01 -4.21408053e-01 8.97022953e-01]\n", + " [ 9.83191824e-02 -4.19159306e-01 9.02573440e-01]\n", + " [ 6.26562723e-02 -4.16334527e-01 9.07050028e-01]\n", + " [ 2.64987952e-02 -4.12927580e-01 9.10378288e-01]\n", + " [-9.94315277e-03 -4.08943296e-01 9.12505624e-01]\n", + " [ 1.80649490e-01 -4.12158339e-01 8.93023665e-01]\n", + " [ 1.84673552e-01 -3.79554689e-01 9.06550560e-01]\n", + " [ 1.88294870e-01 -3.46680933e-01 9.18889206e-01]\n", + " [ 1.91489901e-01 -3.13742604e-01 9.29998493e-01]\n", + " [ 1.94234725e-01 -2.80953420e-01 9.39860653e-01]\n", + " [ 1.96503933e-01 -2.48535966e-01 9.48480932e-01]\n", + " [-2.12376296e-02 -3.95608869e-01 9.18173505e-01]\n", + " [-1.67096473e-02 -3.61906512e-01 9.32064624e-01]\n", + " [-1.21915807e-02 -3.27938136e-01 9.44620529e-01]\n", + " [-7.71045155e-03 -2.93914993e-01 9.55800463e-01]\n", + " [-3.29280923e-03 -2.60050116e-01 9.65589506e-01]\n", + " [ 1.03499033e-03 -2.26559546e-01 9.73996766e-01]\n", + " [ 1.85897881e-01 -2.35990460e-01 9.53808409e-01]\n", + " [ 1.53177186e-01 -2.32397767e-01 9.60483226e-01]\n", + " [ 1.19524562e-01 -2.28650711e-01 9.66143225e-01]\n", + " [ 8.51430191e-02 -2.24735882e-01 9.70692768e-01]\n", + " [ 5.02359051e-02 -2.20651032e-01 9.74058251e-01]\n", + " [ 1.50080107e-02 -2.16404272e-01 9.76188481e-01]\n", + " [ 1.79137520e-01 -4.23564375e-01 8.87976897e-01]\n", + " [ 1.79137520e-01 -4.23564375e-01 8.87976897e-01]\n", + " [ 2.53607379e-03 -2.14869682e-01 9.76639436e-01]\n", + " [ 2.53607379e-03 -2.14869682e-01 9.76639436e-01]\n", + " [ 1.68879891e-01 -4.11646507e-01 8.95559454e-01]\n", + " [ 1.72941931e-01 -3.78914001e-01 9.09128851e-01]\n", + " [ 1.76624656e-01 -3.45908379e-01 9.21493963e-01]\n", + " [ 1.79904871e-01 -3.12835492e-01 9.32613635e-01]\n", + " [ 1.82759117e-01 -2.79908944e-01 9.42470205e-01]\n", + " [ 1.85162352e-01 -2.47350929e-01 9.51069094e-01]\n", + " [ 1.34825820e-01 -4.09845188e-01 9.02135755e-01]\n", + " [ 1.38990248e-01 -3.76789814e-01 9.15811742e-01]\n", + " [ 1.42841796e-01 -3.43455493e-01 9.28242719e-01]\n", + " [ 1.46357953e-01 -3.10049231e-01 9.39387473e-01]\n", + " [ 1.49516366e-01 -2.76784373e-01 9.49228775e-01]\n", + " [ 1.52293130e-01 -2.43881702e-01 9.57772686e-01]\n", + " [ 9.98768569e-02 -4.07505714e-01 9.07724466e-01]\n", + " [ 1.04136568e-01 -3.74190641e-01 9.21486266e-01]\n", + " [ 1.08150607e-01 -3.40594527e-01 9.33969386e-01]\n", + " [ 1.11896503e-01 -3.06925777e-01 9.45132657e-01]\n", + " [ 1.15352323e-01 -2.73397631e-01 9.54959463e-01]\n", + " [ 1.18494906e-01 -2.40229351e-01 9.63456702e-01]\n", + " [ 6.42286862e-02 -4.04612259e-01 9.12230013e-01]\n", + " [ 6.85769509e-02 -3.71102284e-01 9.26056314e-01]\n", + " [ 7.27481933e-02 -3.37312511e-01 9.38577632e-01]\n", + " [ 7.67192258e-02 -3.03452715e-01 9.49752921e-01]\n", + " [ 8.04676186e-02 -2.69736140e-01 9.59566244e-01]\n", + " [ 8.39701604e-02 -2.36380683e-01 9.68025405e-01]\n", + " [ 2.80830526e-02 -4.01159401e-01 9.15577674e-01]\n", + " [ 3.25129478e-02 -3.67521278e-01 9.29446619e-01]\n", + " [ 3.68360752e-02 -3.33607517e-01 9.41992106e-01]\n", + " [ 4.10278733e-02 -2.99628925e-01 9.53173238e-01]\n", + " [ 4.50645419e-02 -2.65798739e-01 9.62974671e-01]\n", + " [ 4.89219529e-02 -2.32333802e-01 9.71404986e-01]\n", + " [-8.35007714e-03 -3.97152599e-01 9.17714601e-01]\n", + " [-3.84619467e-03 -3.63454772e-01 9.31603905e-01]\n", + " [ 6.22395816e-04 -3.29488008e-01 9.44159555e-01]\n", + " [ 5.02934301e-03 -2.95463567e-01 9.55340770e-01]\n", + " [ 9.34886787e-03 -2.61594560e-01 9.65132574e-01]\n", + " [ 1.35552622e-02 -2.28097163e-01 9.73544010e-01]]\n", + "DEBUG:root:radec2pix: curVec Shape: (96, 3)\n", + "DEBUG:root:radec2pix: camVec: [[-0.00108623 -0.00110818 -0.00112898 -0.00114857 -0.00116686 -0.00118378\n", + " -0.00119922 -0.00121312 -0.00108623 -0.03008973 -0.05897582 -0.08763213\n", + " -0.11594722 -0.14381054 -0.17111212 -0.19774215 -0.00121312 -0.0312253\n", + " -0.06111305 -0.09075893 -0.12004913 -0.1488739 -0.17712688 -0.20470344\n", + " -0.19774215 -0.19951656 -0.20103291 -0.2022905 -0.20328809 -0.20402394\n", + " -0.20449622 -0.20470344 -0.00119558 -0.00122271 -0.00124786 -0.00127089\n", + " -0.00129164 -0.00130994 -0.01373956 -0.04922259 -0.08441749 -0.11911871\n", + " -0.1531227 -0.18622706 -0.01430615 -0.05102028 -0.08743049 -0.12332566\n", + " -0.15850368 -0.19276957 -0.19845732 -0.20045757 -0.20206974 -0.20329178\n", + " -0.20412054 -0.20455274 -0.00118556 -0.00118556 -0.20461015 -0.20461015\n", + " -0.01379915 -0.04942232 -0.08475642 -0.11959564 -0.15373662 -0.18697743\n", + " -0.01395111 -0.04992687 -0.08561039 -0.12079486 -0.15527748 -0.18885795\n", + " -0.0140777 -0.05033965 -0.08630574 -0.12176792 -0.15652378 -0.19037482\n", + " -0.01417814 -0.05065827 -0.08683905 -0.12251113 -0.15747231 -0.19152571\n", + " -0.0142515 -0.05087978 -0.08720594 -0.12301955 -0.15811848 -0.19230704\n", + " -0.01429691 -0.0510015 -0.08740238 -0.12328852 -0.15845779 -0.19271515]\n", + " [ 0.20994474 0.18250974 0.15437814 0.12565449 0.09644464 0.0668576\n", + " 0.03700641 0.00700791 0.20994474 0.20980966 0.20940234 0.20872399\n", + " 0.20777622 0.20656061 0.20507835 0.20333011 0.00700791 0.00701559\n", + " 0.00701392 0.00700302 0.00698305 0.00695418 0.00691659 0.00687038\n", + " 0.20333011 0.17679323 0.14956333 0.12175011 0.09346339 0.06481351\n", + " 0.03591173 0.00687038 0.19807534 0.16396932 0.12892083 0.09312409\n", + " 0.05677987 0.02009792 0.20982687 0.20947825 0.20872203 0.20756102\n", + " 0.20599809 0.20403521 0.00711509 0.00711803 0.00710683 0.00708177\n", + " 0.0070432 0.00699139 0.19185821 0.1588536 0.12491703 0.09025061\n", + " 0.0550575 0.01954302 0.20985223 0.20985223 0.00696998 0.00696998\n", + " 0.19805172 0.19772367 0.19701128 0.19591776 0.19444643 0.19259955\n", + " 0.16395068 0.1636812 0.16309354 0.16219177 0.16098028 0.15946229\n", + " 0.12890725 0.1286975 0.12823673 0.12752928 0.12657997 0.12539259\n", + " 0.09311572 0.09296747 0.092637 0.09212815 0.0914453 0.09059206\n", + " 0.05677687 0.05669199 0.05649545 0.05618991 0.05577844 0.0552636\n", + " 0.02010041 0.0200803 0.02002048 0.0199219 0.01978566 0.01961272]\n", + " [ 0.97771265 0.98320342 0.98801119 0.9920734 0.99533767 0.99776183\n", + " 0.99931431 0.99997471 0.97771265 0.97727914 0.97604944 0.97404051\n", + " 0.97128023 0.96780744 0.96367189 0.95893426 0.99997471 0.99948775\n", + " 0.99810621 0.99584827 0.99274339 0.98883174 0.98416372 0.97879993\n", + " 0.95893426 0.96381393 0.96809947 0.97172808 0.97464791 0.97681802\n", + " 0.97820838 0.97879993 0.98018607 0.98646468 0.9916541 0.9956537\n", + " 0.99838589 0.99979716 0.97764201 0.9765736 0.97432479 0.97094241\n", + " 0.96649792 0.96108746 0.99987235 0.99867225 0.99614527 0.99234098\n", + " 0.98733327 0.98121915 0.96114781 0.96673797 0.971372 0.97494989\n", + " 0.97739627 0.97866043 0.97773239 0.97773239 0.97881873 0.97881873\n", + " 0.98009443 0.97901113 0.97673072 0.97330012 0.96879081 0.96329894\n", + " 0.98636988 0.98524909 0.98288929 0.97933775 0.97466623 0.96897082\n", + " 0.99155673 0.99040541 0.9879811 0.98433168 0.97952939 0.97367044\n", + " 0.99555434 0.9943796 0.99190593 0.98818188 0.98328034 0.97729779\n", + " 0.99828517 0.99709441 0.99458704 0.99081223 0.98584345 0.97977749\n", + " 0.99969574 0.99849668 0.99597189 0.99217088 0.98716749 0.98105872]]\n", + "DEBUG:root:cartToSphere: vec: [[-0.00108623 0.20994474 0.97771265]\n", + " [-0.00110818 0.18250974 0.98320342]\n", + " [-0.00112898 0.15437814 0.98801119]\n", + " [-0.00114857 0.12565449 0.9920734 ]\n", + " [-0.00116686 0.09644464 0.99533767]\n", + " [-0.00118378 0.0668576 0.99776183]\n", + " [-0.00119922 0.03700641 0.99931431]\n", + " [-0.00121312 0.00700791 0.99997471]\n", + " [-0.00108623 0.20994474 0.97771265]\n", + " [-0.03008973 0.20980966 0.97727914]\n", + " [-0.05897582 0.20940234 0.97604944]\n", + " [-0.08763213 0.20872399 0.97404051]\n", + " [-0.11594722 0.20777622 0.97128023]\n", + " [-0.14381054 0.20656061 0.96780744]\n", + " [-0.17111212 0.20507835 0.96367189]\n", + " [-0.19774215 0.20333011 0.95893426]\n", + " [-0.00121312 0.00700791 0.99997471]\n", + " [-0.0312253 0.00701559 0.99948775]\n", + " [-0.06111305 0.00701392 0.99810621]\n", + " [-0.09075893 0.00700302 0.99584827]\n", + " [-0.12004913 0.00698305 0.99274339]\n", + " [-0.1488739 0.00695418 0.98883174]\n", + " [-0.17712688 0.00691659 0.98416372]\n", + " [-0.20470344 0.00687038 0.97879993]\n", + " [-0.19774215 0.20333011 0.95893426]\n", + " [-0.19951656 0.17679323 0.96381393]\n", + " [-0.20103291 0.14956333 0.96809947]\n", + " [-0.2022905 0.12175011 0.97172808]\n", + " [-0.20328809 0.09346339 0.97464791]\n", + " [-0.20402394 0.06481351 0.97681802]\n", + " [-0.20449622 0.03591173 0.97820838]\n", + " [-0.20470344 0.00687038 0.97879993]\n", + " [-0.00119558 0.19807534 0.98018607]\n", + " [-0.00122271 0.16396932 0.98646468]\n", + " [-0.00124786 0.12892083 0.9916541 ]\n", + " [-0.00127089 0.09312409 0.9956537 ]\n", + " [-0.00129164 0.05677987 0.99838589]\n", + " [-0.00130994 0.02009792 0.99979716]\n", + " [-0.01373956 0.20982687 0.97764201]\n", + " [-0.04922259 0.20947825 0.9765736 ]\n", + " [-0.08441749 0.20872203 0.97432479]\n", + " [-0.11911871 0.20756102 0.97094241]\n", + " [-0.1531227 0.20599809 0.96649792]\n", + " [-0.18622706 0.20403521 0.96108746]\n", + " [-0.01430615 0.00711509 0.99987235]\n", + " [-0.05102028 0.00711803 0.99867225]\n", + " [-0.08743049 0.00710683 0.99614527]\n", + " [-0.12332566 0.00708177 0.99234098]\n", + " [-0.15850368 0.0070432 0.98733327]\n", + " [-0.19276957 0.00699139 0.98121915]\n", + " [-0.19845732 0.19185821 0.96114781]\n", + " [-0.20045757 0.1588536 0.96673797]\n", + " [-0.20206974 0.12491703 0.971372 ]\n", + " [-0.20329178 0.09025061 0.97494989]\n", + " [-0.20412054 0.0550575 0.97739627]\n", + " [-0.20455274 0.01954302 0.97866043]\n", + " [-0.00118556 0.20985223 0.97773239]\n", + " [-0.00118556 0.20985223 0.97773239]\n", + " [-0.20461015 0.00696998 0.97881873]\n", + " [-0.20461015 0.00696998 0.97881873]\n", + " [-0.01379915 0.19805172 0.98009443]\n", + " [-0.04942232 0.19772367 0.97901113]\n", + " [-0.08475642 0.19701128 0.97673072]\n", + " [-0.11959564 0.19591776 0.97330012]\n", + " [-0.15373662 0.19444643 0.96879081]\n", + " [-0.18697743 0.19259955 0.96329894]\n", + " [-0.01395111 0.16395068 0.98636988]\n", + " [-0.04992687 0.1636812 0.98524909]\n", + " [-0.08561039 0.16309354 0.98288929]\n", + " [-0.12079486 0.16219177 0.97933775]\n", + " [-0.15527748 0.16098028 0.97466623]\n", + " [-0.18885795 0.15946229 0.96897082]\n", + " [-0.0140777 0.12890725 0.99155673]\n", + " [-0.05033965 0.1286975 0.99040541]\n", + " [-0.08630574 0.12823673 0.9879811 ]\n", + " [-0.12176792 0.12752928 0.98433168]\n", + " [-0.15652378 0.12657997 0.97952939]\n", + " [-0.19037482 0.12539259 0.97367044]\n", + " [-0.01417814 0.09311572 0.99555434]\n", + " [-0.05065827 0.09296747 0.9943796 ]\n", + " [-0.08683905 0.092637 0.99190593]\n", + " [-0.12251113 0.09212815 0.98818188]\n", + " [-0.15747231 0.0914453 0.98328034]\n", + " [-0.19152571 0.09059206 0.97729779]\n", + " [-0.0142515 0.05677687 0.99828517]\n", + " [-0.05087978 0.05669199 0.99709441]\n", + " [-0.08720594 0.05649545 0.99458704]\n", + " [-0.12301955 0.05618991 0.99081223]\n", + " [-0.15811848 0.05577844 0.98584345]\n", + " [-0.19230704 0.0552636 0.97977749]\n", + " [-0.01429691 0.02010041 0.99969574]\n", + " [-0.0510015 0.0200803 0.99849668]\n", + " [-0.08740238 0.02002048 0.99597189]\n", + " [-0.12328852 0.0199219 0.99217088]\n", + " [-0.15845779 0.01978566 0.98716749]\n", + " [-0.19271515 0.01961272 0.98105872]]\n", + "DEBUG:root:radec2pix: camVec Shape: (3, 96)\n", + "DEBUG:root:radec2pix: ccdpx: [[-4.45000000e+01 -5.00000033e-01]\n", + " [-4.45000003e+01 2.91928571e+02]\n", + " [-4.45000002e+01 5.84357143e+02]\n", + " [-4.44999998e+01 8.76785714e+02]\n", + " [-4.44999998e+01 1.16921429e+03]\n", + " [-4.45000001e+01 1.46164286e+03]\n", + " [-4.44999997e+01 1.75407143e+03]\n", + " [-4.45000002e+01 2.04650000e+03]\n", + " [-4.45000000e+01 -5.00000033e-01]\n", + " [ 2.47928571e+02 -4.99999990e-01]\n", + " [ 5.40357143e+02 -5.00000111e-01]\n", + " [ 8.32785714e+02 -5.00000066e-01]\n", + " [ 1.12521429e+03 -4.99999995e-01]\n", + " [ 1.41764286e+03 -5.00000140e-01]\n", + " [ 1.71007143e+03 -5.00000040e-01]\n", + " [ 2.00250000e+03 -5.00000297e-01]\n", + " [-4.45000002e+01 2.04650000e+03]\n", + " [ 2.47928572e+02 2.04650000e+03]\n", + " [ 5.40357143e+02 2.04650000e+03]\n", + " [ 8.32785714e+02 2.04650000e+03]\n", + " [ 1.12521429e+03 2.04650000e+03]\n", + " [ 1.41764286e+03 2.04650000e+03]\n", + " [ 1.71007143e+03 2.04650000e+03]\n", + " [ 2.00250000e+03 2.04650000e+03]\n", + " [ 2.00250000e+03 -5.00000297e-01]\n", + " [ 2.00250000e+03 2.91928572e+02]\n", + " [ 2.00250000e+03 5.84357143e+02]\n", + " [ 2.00250000e+03 8.76785714e+02]\n", + " [ 2.00250000e+03 1.16921429e+03]\n", + " [ 2.00250000e+03 1.46164286e+03]\n", + " [ 2.00250000e+03 1.75407143e+03]\n", + " [ 2.00250000e+03 2.04650000e+03]\n", + " [-4.34999999e+01 1.27000000e+02]\n", + " [-4.35000000e+01 4.85400000e+02]\n", + " [-4.35000001e+01 8.43800000e+02]\n", + " [-4.35000001e+01 1.20220000e+03]\n", + " [-4.34999998e+01 1.56060000e+03]\n", + " [-4.34999998e+01 1.91900000e+03]\n", + " [ 8.29999999e+01 4.99999893e-01]\n", + " [ 4.41400000e+02 5.00000055e-01]\n", + " [ 7.99800000e+02 4.99999998e-01]\n", + " [ 1.15820000e+03 5.00000122e-01]\n", + " [ 1.51660000e+03 4.99999912e-01]\n", + " [ 1.87500000e+03 5.00000160e-01]\n", + " [ 8.30000002e+01 2.04550000e+03]\n", + " [ 4.41400000e+02 2.04550000e+03]\n", + " [ 7.99800000e+02 2.04550000e+03]\n", + " [ 1.15820000e+03 2.04550000e+03]\n", + " [ 1.51660000e+03 2.04550000e+03]\n", + " [ 1.87500000e+03 2.04550000e+03]\n", + " [ 2.00150000e+03 1.27000000e+02]\n", + " [ 2.00150000e+03 4.85400000e+02]\n", + " [ 2.00150000e+03 8.43800000e+02]\n", + " [ 2.00150000e+03 1.20220000e+03]\n", + " [ 2.00150000e+03 1.56060000e+03]\n", + " [ 2.00150000e+03 1.91900000e+03]\n", + " [-4.35000001e+01 4.99999931e-01]\n", + " [-4.35000001e+01 4.99999931e-01]\n", + " [ 2.00150000e+03 2.04550000e+03]\n", + " [ 2.00150000e+03 2.04550000e+03]\n", + " [ 8.30000000e+01 1.27000000e+02]\n", + " [ 4.41400000e+02 1.27000000e+02]\n", + " [ 7.99800000e+02 1.27000000e+02]\n", + " [ 1.15820000e+03 1.27000000e+02]\n", + " [ 1.51660000e+03 1.27000000e+02]\n", + " [ 1.87500000e+03 1.27000000e+02]\n", + " [ 8.29999999e+01 4.85400000e+02]\n", + " [ 4.41400000e+02 4.85400000e+02]\n", + " [ 7.99800000e+02 4.85400000e+02]\n", + " [ 1.15820000e+03 4.85400000e+02]\n", + " [ 1.51660000e+03 4.85400000e+02]\n", + " [ 1.87500000e+03 4.85400000e+02]\n", + " [ 8.29999999e+01 8.43800000e+02]\n", + " [ 4.41400000e+02 8.43800000e+02]\n", + " [ 7.99800000e+02 8.43800000e+02]\n", + " [ 1.15820000e+03 8.43800000e+02]\n", + " [ 1.51660000e+03 8.43800000e+02]\n", + " [ 1.87500000e+03 8.43800000e+02]\n", + " [ 8.30000001e+01 1.20220000e+03]\n", + " [ 4.41400000e+02 1.20220000e+03]\n", + " [ 7.99800000e+02 1.20220000e+03]\n", + " [ 1.15820000e+03 1.20220000e+03]\n", + " [ 1.51660000e+03 1.20220000e+03]\n", + " [ 1.87500000e+03 1.20220000e+03]\n", + " [ 8.29999998e+01 1.56060000e+03]\n", + " [ 4.41400000e+02 1.56060000e+03]\n", + " [ 7.99800000e+02 1.56060000e+03]\n", + " [ 1.15820000e+03 1.56060000e+03]\n", + " [ 1.51660000e+03 1.56060000e+03]\n", + " [ 1.87500000e+03 1.56060000e+03]\n", + " [ 8.30000002e+01 1.91900000e+03]\n", + " [ 4.41400000e+02 1.91900000e+03]\n", + " [ 7.99800000e+02 1.91900000e+03]\n", + " [ 1.15820000e+03 1.91900000e+03]\n", + " [ 1.51660000e+03 1.91900000e+03]\n", + " [ 1.87500000e+03 1.91900000e+03]]\n", + "DEBUG:root:optics_fp: sphi: [0.99998485 0.99997957 0.99997095 0.99995541 0.99992296 0.99983591\n", + " 0.99943739 0.97480106 0.99998485 0.9896586 0.96186222 0.92072178\n", + " 0.87129259 0.81819238 0.76489689 0.7136466 0.97480106 0.16298472\n", + " 0.08387896 0.05638146 0.04244609 0.03402888 0.028395 0.02436013\n", + " 0.7136466 0.65923088 0.59205464 0.50980542 0.41077515 0.29477725\n", + " 0.16416841 0.02436013 0.99997973 0.99996976 0.99995006 0.99990218\n", + " 0.99972814 0.99753769 0.99780732 0.97297865 0.92580811 0.86530722\n", + " 0.79990573 0.73548088 0.34572109 0.10239711 0.0597107 0.0421157\n", + " 0.0325231 0.02648658 0.69151182 0.61654981 0.52008483 0.39868458\n", + " 0.25212242 0.08602764 0.9999821 0.9999821 0.02485756 0.02485756\n", + " 0.99751784 0.96955881 0.91716312 0.8512474 0.7814679 0.71407315\n", + " 0.99629813 0.95550412 0.88315364 0.79862516 0.71563581 0.64067012\n", + " 0.99390027 0.92942982 0.82574293 0.71809906 0.6231092 0.5442854\n", + " 0.9881388 0.87396305 0.72255609 0.59311256 0.49440321 0.4203077\n", + " 0.9679916 0.73306896 0.53086315 0.40389491 0.32265115 0.26749257\n", + " 0.78768362 0.33643669 0.20329713 0.14479515 0.11226633 0.09161916]\n", + "DEBUG:root:radec2pix: xyfp: [[ 0.173161 -31.45819714]\n", + " [ 0.17304708 -27.07176857]\n", + " [ 0.17293316 -22.68534 ]\n", + " [ 0.17281925 -18.29891143]\n", + " [ 0.17270533 -13.91248287]\n", + " [ 0.17259141 -9.52605429]\n", + " [ 0.17247749 -5.13962573]\n", + " [ 0.17236358 -0.75319715]\n", + " [ 0.173161 -31.45819714]\n", + " [ 4.55958957 -31.45808322]\n", + " [ 8.94601814 -31.45796931]\n", + " [ 13.33244671 -31.45785538]\n", + " [ 17.71887528 -31.45774147]\n", + " [ 22.10530385 -31.45762756]\n", + " [ 26.49173242 -31.45751363]\n", + " [ 30.87816099 -31.45739971]\n", + " [ 0.17236358 -0.75319715]\n", + " [ 4.55879215 -0.75308323]\n", + " [ 8.94522072 -0.75296932]\n", + " [ 13.33164929 -0.7528554 ]\n", + " [ 17.71807786 -0.75274148]\n", + " [ 22.10450643 -0.75262756]\n", + " [ 26.490935 -0.75251364]\n", + " [ 30.87736356 -0.75239973]\n", + " [ 30.87816099 -31.45739971]\n", + " [ 30.87804707 -27.07097114]\n", + " [ 30.87793315 -22.68454257]\n", + " [ 30.87781924 -18.29811401]\n", + " [ 30.87770532 -13.91168544]\n", + " [ 30.87759141 -9.52525687]\n", + " [ 30.87747749 -5.1388283 ]\n", + " [ 30.87736356 -0.75239973]\n", + " [ 0.18811133 -29.54569675]\n", + " [ 0.18797171 -24.16969676]\n", + " [ 0.1878321 -18.79369675]\n", + " [ 0.18769248 -13.41769676]\n", + " [ 0.18755286 -8.04169676]\n", + " [ 0.18741324 -2.66569676]\n", + " [ 2.08566061 -31.44314748]\n", + " [ 7.46166061 -31.44300785]\n", + " [ 12.83766061 -31.44286824]\n", + " [ 18.2136606 -31.44272862]\n", + " [ 23.5896606 -31.442589 ]\n", + " [ 28.9656606 -31.44244938]\n", + " [ 2.08486397 -0.76814748]\n", + " [ 7.46086396 -0.76800786]\n", + " [ 12.83686396 -0.76786825]\n", + " [ 18.21286396 -0.76772863]\n", + " [ 23.58886395 -0.76758901]\n", + " [ 28.96486395 -0.7674494 ]\n", + " [ 30.86311132 -29.54490011]\n", + " [ 30.86297171 -24.16890011]\n", + " [ 30.86283209 -18.79290011]\n", + " [ 30.86269247 -13.41690011]\n", + " [ 30.86255285 -8.04090011]\n", + " [ 30.86241323 -2.66490012]\n", + " [ 0.18816061 -31.44319675]\n", + " [ 0.18816061 -31.44319675]\n", + " [ 30.86236396 -0.76740012]\n", + " [ 30.86236396 -0.76740012]\n", + " [ 2.08561133 -29.54564748]\n", + " [ 7.46161133 -29.54550785]\n", + " [ 12.83761133 -29.54536824]\n", + " [ 18.21361133 -29.54522862]\n", + " [ 23.58961132 -29.545089 ]\n", + " [ 28.96561132 -29.54494938]\n", + " [ 2.08547171 -24.16964747]\n", + " [ 7.46147171 -24.16950786]\n", + " [ 12.83747171 -24.16936824]\n", + " [ 18.21347171 -24.16922862]\n", + " [ 23.58947171 -24.16908901]\n", + " [ 28.9654717 -24.16894939]\n", + " [ 2.0853321 -18.79364747]\n", + " [ 7.46133209 -18.79350785]\n", + " [ 12.83733209 -18.79336824]\n", + " [ 18.21333209 -18.79322862]\n", + " [ 23.58933209 -18.79308901]\n", + " [ 28.96533209 -18.79294939]\n", + " [ 2.08519248 -13.41764748]\n", + " [ 7.46119248 -13.41750786]\n", + " [ 12.83719247 -13.41736824]\n", + " [ 18.21319248 -13.41722863]\n", + " [ 23.58919247 -13.41708901]\n", + " [ 28.96519247 -13.41694939]\n", + " [ 2.08505286 -8.04164748]\n", + " [ 7.46105286 -8.04150786]\n", + " [ 12.83705286 -8.04136825]\n", + " [ 18.21305286 -8.04122863]\n", + " [ 23.58905286 -8.04108901]\n", + " [ 28.96505285 -8.04094939]\n", + " [ 2.08491324 -2.66564748]\n", + " [ 7.46091324 -2.66550786]\n", + " [ 12.83691324 -2.66536825]\n", + " [ 18.21291324 -2.66522863]\n", + " [ 23.58891323 -2.66508901]\n", + " [ 28.96491324 -2.66494939]]\n", + "DEBUG:root:radec2pix: xyfp Shape: (96, 2)\n", + "DEBUG:root:optics_fp: rtanth: [31.49183295 27.10547639 22.71914763 18.33286663 13.94667845 9.56071086\n", + " 5.17552468 0.80400903 31.49183295 31.81893962 32.73584893 34.19514883\n", + " 36.13117923 38.47203574 41.14868729 44.10003298 0.80400903 4.62123428\n", + " 8.97478096 13.34987234 17.73056686 22.11353481 26.49764807 30.88241889\n", + " 44.10003298 41.08265104 38.3306279 35.90503258 33.87605653 32.31848632\n", + " 31.30277019 30.88241889 29.57945042 24.20357534 18.8277716 13.45212473\n", + " 8.07694792 2.70504492 31.5450314 32.34738816 33.9914811 36.36331677\n", + " 39.33145785 42.7719429 2.22895212 7.49884938 12.85690509 18.22553229\n", + " 23.59751677 28.97099101 42.74447401 39.21682332 36.14735337 33.66163739\n", + " 31.89644588 30.97520686 31.47691651 31.47691651 30.86780955 30.86780955\n", + " 29.6519244 30.50411668 32.24233865 34.73382242 37.83003027 41.39549146\n", + " 24.29209321 25.32528987 27.39411567 30.28708623 33.79319995 37.74196451\n", + " 18.94142858 20.24949953 22.78397459 26.19121067 30.17701587 34.5416822\n", + " 13.61074549 15.37910619 18.5898944 22.63745111 27.1500822 31.93121491\n", + " 8.33845435 10.99064764 15.16118736 19.91812291 24.9279841 30.06459569\n", + " 3.40734519 7.92934524 13.11265734 18.40684115 23.73782997 29.08539314]\n", + "DEBUG:root:radec2pix: lng: [ 90.2964384 90.3478894 90.41900227 90.52370941 90.69317626\n", + " 91.01436915 91.85606354 99.82098825 90.2964384 98.16139155\n", + " 105.72927905 112.77495178 119.16321868 124.84620437 129.84075369\n", + " 134.20177453 99.82098825 167.3372664 173.45282833 175.5877589\n", + " 176.67095531 177.32554882 177.76380439 178.07772632 134.20177453\n", + " 138.45558903 143.3516981 148.95804019 155.308999 162.37619731\n", + " 170.03980495 178.07772632 90.34583364 90.4272438 90.55456533\n", + " 90.78188435 91.3031483 93.7291305 93.74640471 103.2233069\n", + " 112.02083939 119.85139884 126.62419493 132.38733532 153.55676438\n", + " 172.05771641 175.35290167 176.71349424 177.45570466 177.92289984\n", + " 135.96861356 141.60475991 148.27615291 156.06135558 164.90482616\n", + " 174.54251233 90.32368928 90.32368928 178.04899302 178.04899302\n", + " 93.98561362 104.03389942 113.27790792 121.40147615 128.33121468\n", + " 134.15142333 94.8637718 106.96302166 117.69569442 126.6774761\n", + " 133.96694623 139.82391059 96.23245551 111.36280739 123.94129691\n", + " 133.676108 141.03771084 146.62863656 98.65756574 118.5861081\n", + " 133.14971036 143.05690148 149.85595749 154.68575435 104.09063117\n", + " 131.90726386 147.0632386 155.45116677 160.56901612 163.96684771\n", + " 125.42327674 158.50946167 167.09834094 170.82105172 172.88266004\n", + " 174.18898669]\n", + "DEBUG:root:optics_fp: xyfp: [[32.23341696 31.55141621]\n", + " [32.23194958 27.16498788]\n", + " [32.2304822 22.77855956]\n", + " [32.22901483 18.39213124]\n", + " [32.22754745 14.00570291]\n", + " [32.22608007 9.61927458]\n", + " [32.22461269 5.23284626]\n", + " [32.2231453 0.84641793]\n", + " [32.23341696 31.55141621]\n", + " [27.84698864 31.5528836 ]\n", + " [23.46056031 31.55435097]\n", + " [19.07413198 31.55581835]\n", + " [14.68770366 31.55728573]\n", + " [10.30127533 31.55875311]\n", + " [ 5.91484701 31.56022049]\n", + " [ 1.52841868 31.56168787]\n", + " [32.2231453 0.84641793]\n", + " [27.83671698 0.84788531]\n", + " [23.45028865 0.84935269]\n", + " [19.06386033 0.85082007]\n", + " [14.677432 0.85228745]\n", + " [10.29100367 0.85375483]\n", + " [ 5.90457535 0.85522221]\n", + " [ 1.51814702 0.85668959]\n", + " [ 1.52841868 31.56168787]\n", + " [ 1.5269513 27.17525955]\n", + " [ 1.52548392 22.78883122]\n", + " [ 1.52401654 18.4024029 ]\n", + " [ 1.52254916 14.01597457]\n", + " [ 1.52108178 9.62954624]\n", + " [ 1.5196144 5.24311792]\n", + " [ 1.51814702 0.85668959]\n", + " [32.21777718 29.63892134]\n", + " [32.21597876 24.26292164]\n", + " [32.21418034 18.88692194]\n", + " [32.21238193 13.51092224]\n", + " [32.21058351 8.13492254]\n", + " [32.20878509 2.75892284]\n", + " [30.32091205 31.53705599]\n", + " [24.94491236 31.53885442]\n", + " [19.56891265 31.54065283]\n", + " [14.19291295 31.54245125]\n", + " [ 8.81691325 31.54424967]\n", + " [ 3.44091356 31.54604808]\n", + " [30.31065043 0.86205771]\n", + " [24.93465073 0.86385613]\n", + " [19.55865103 0.86565455]\n", + " [14.18265134 0.86745297]\n", + " [ 8.80665163 0.86925139]\n", + " [ 3.43065193 0.8710498 ]\n", + " [ 1.5427789 29.64918296]\n", + " [ 1.54098048 24.27318326]\n", + " [ 1.53918206 18.89718357]\n", + " [ 1.53738364 13.52118387]\n", + " [ 1.53558522 8.14518416]\n", + " [ 1.5337868 2.76918446]\n", + " [32.21841195 31.53642123]\n", + " [32.21841195 31.53642123]\n", + " [ 1.53315204 0.87168457]\n", + " [ 1.53315204 0.87168457]\n", + " [30.32027729 29.6395561 ]\n", + " [24.94427759 29.64135452]\n", + " [19.56827789 29.64315294]\n", + " [14.19227819 29.64495136]\n", + " [ 8.81627849 29.64674978]\n", + " [ 3.44027879 29.6485482 ]\n", + " [30.31847887 24.2635564 ]\n", + " [24.94247917 24.26535482]\n", + " [19.56647947 24.26715324]\n", + " [14.19047977 24.26895166]\n", + " [ 8.81448007 24.27075007]\n", + " [ 3.43848037 24.2725485 ]\n", + " [30.31668045 18.8875567 ]\n", + " [24.94068075 18.88935513]\n", + " [19.56468105 18.89115354]\n", + " [14.18868135 18.89295196]\n", + " [ 8.81268165 18.89475038]\n", + " [ 3.43668195 18.89654879]\n", + " [30.31488203 13.51155701]\n", + " [24.93888233 13.51335542]\n", + " [19.56288263 13.51515384]\n", + " [14.18688293 13.51695226]\n", + " [ 8.81088324 13.51875068]\n", + " [ 3.43488354 13.5205491 ]\n", + " [30.31308361 8.13555731]\n", + " [24.93708392 8.13735572]\n", + " [19.56108422 8.13915414]\n", + " [14.18508451 8.14095256]\n", + " [ 8.80908482 8.14275098]\n", + " [ 3.43308512 8.1445494 ]\n", + " [30.31128519 2.75955761]\n", + " [24.93528549 2.76135602]\n", + " [19.5592858 2.76315444]\n", + " [14.18328609 2.76495286]\n", + " [ 8.8072864 2.76675128]\n", + " [ 3.4312867 2.7685497 ]]\n", + "DEBUG:root:optics_fp: xyfp shape: (96, 2)\n", + "DEBUG:root:radec2pix: fitpx: [[-5.00000034e-01 -5.00000033e-01]\n", + " [-5.00000269e-01 2.91928571e+02]\n", + " [-5.00000171e-01 5.84357143e+02]\n", + " [-4.99999761e-01 8.76785714e+02]\n", + " [-4.99999835e-01 1.16921429e+03]\n", + " [-5.00000099e-01 1.46164286e+03]\n", + " [-4.99999719e-01 1.75407143e+03]\n", + " [-5.00000225e-01 2.04650000e+03]\n", + " [-5.00000034e-01 -5.00000033e-01]\n", + " [ 2.91928571e+02 -4.99999990e-01]\n", + " [ 5.84357143e+02 -5.00000111e-01]\n", + " [ 8.76785714e+02 -5.00000066e-01]\n", + " [ 1.16921429e+03 -4.99999995e-01]\n", + " [ 1.46164286e+03 -5.00000140e-01]\n", + " [ 1.75407143e+03 -5.00000040e-01]\n", + " [ 2.04650000e+03 -5.00000297e-01]\n", + " [-5.00000225e-01 2.04650000e+03]\n", + " [ 2.91928572e+02 2.04650000e+03]\n", + " [ 5.84357143e+02 2.04650000e+03]\n", + " [ 8.76785714e+02 2.04650000e+03]\n", + " [ 1.16921429e+03 2.04650000e+03]\n", + " [ 1.46164286e+03 2.04650000e+03]\n", + " [ 1.75407143e+03 2.04650000e+03]\n", + " [ 2.04650000e+03 2.04650000e+03]\n", + " [ 2.04650000e+03 -5.00000297e-01]\n", + " [ 2.04650000e+03 2.91928572e+02]\n", + " [ 2.04650000e+03 5.84357143e+02]\n", + " [ 2.04650000e+03 8.76785714e+02]\n", + " [ 2.04650000e+03 1.16921429e+03]\n", + " [ 2.04650000e+03 1.46164286e+03]\n", + " [ 2.04650000e+03 1.75407143e+03]\n", + " [ 2.04650000e+03 2.04650000e+03]\n", + " [ 5.00000148e-01 1.27000000e+02]\n", + " [ 5.00000006e-01 4.85400000e+02]\n", + " [ 4.99999879e-01 8.43800000e+02]\n", + " [ 4.99999939e-01 1.20220000e+03]\n", + " [ 5.00000182e-01 1.56060000e+03]\n", + " [ 5.00000197e-01 1.91900000e+03]\n", + " [ 1.27000000e+02 4.99999893e-01]\n", + " [ 4.85400000e+02 5.00000055e-01]\n", + " [ 8.43800000e+02 4.99999998e-01]\n", + " [ 1.20220000e+03 5.00000122e-01]\n", + " [ 1.56060000e+03 4.99999912e-01]\n", + " [ 1.91900000e+03 5.00000160e-01]\n", + " [ 1.27000000e+02 2.04550000e+03]\n", + " [ 4.85400000e+02 2.04550000e+03]\n", + " [ 8.43800000e+02 2.04550000e+03]\n", + " [ 1.20220000e+03 2.04550000e+03]\n", + " [ 1.56060000e+03 2.04550000e+03]\n", + " [ 1.91900000e+03 2.04550000e+03]\n", + " [ 2.04550000e+03 1.27000000e+02]\n", + " [ 2.04550000e+03 4.85400000e+02]\n", + " [ 2.04550000e+03 8.43800000e+02]\n", + " [ 2.04550000e+03 1.20220000e+03]\n", + " [ 2.04550000e+03 1.56060000e+03]\n", + " [ 2.04550000e+03 1.91900000e+03]\n", + " [ 4.99999930e-01 4.99999931e-01]\n", + " [ 4.99999930e-01 4.99999931e-01]\n", + " [ 2.04550000e+03 2.04550000e+03]\n", + " [ 2.04550000e+03 2.04550000e+03]\n", + " [ 1.27000000e+02 1.27000000e+02]\n", + " [ 4.85400000e+02 1.27000000e+02]\n", + " [ 8.43800000e+02 1.27000000e+02]\n", + " [ 1.20220000e+03 1.27000000e+02]\n", + " [ 1.56060000e+03 1.27000000e+02]\n", + " [ 1.91900000e+03 1.27000000e+02]\n", + " [ 1.27000000e+02 4.85400000e+02]\n", + " [ 4.85400000e+02 4.85400000e+02]\n", + " [ 8.43800000e+02 4.85400000e+02]\n", + " [ 1.20220000e+03 4.85400000e+02]\n", + " [ 1.56060000e+03 4.85400000e+02]\n", + " [ 1.91900000e+03 4.85400000e+02]\n", + " [ 1.27000000e+02 8.43800000e+02]\n", + " [ 4.85400000e+02 8.43800000e+02]\n", + " [ 8.43800000e+02 8.43800000e+02]\n", + " [ 1.20220000e+03 8.43800000e+02]\n", + " [ 1.56060000e+03 8.43800000e+02]\n", + " [ 1.91900000e+03 8.43800000e+02]\n", + " [ 1.27000000e+02 1.20220000e+03]\n", + " [ 4.85400000e+02 1.20220000e+03]\n", + " [ 8.43800000e+02 1.20220000e+03]\n", + " [ 1.20220000e+03 1.20220000e+03]\n", + " [ 1.56060000e+03 1.20220000e+03]\n", + " [ 1.91900000e+03 1.20220000e+03]\n", + " [ 1.27000000e+02 1.56060000e+03]\n", + " [ 4.85400000e+02 1.56060000e+03]\n", + " [ 8.43800000e+02 1.56060000e+03]\n", + " [ 1.20220000e+03 1.56060000e+03]\n", + " [ 1.56060000e+03 1.56060000e+03]\n", + " [ 1.91900000e+03 1.56060000e+03]\n", + " [ 1.27000000e+02 1.91900000e+03]\n", + " [ 4.85400000e+02 1.91900000e+03]\n", + " [ 8.43800000e+02 1.91900000e+03]\n", + " [ 1.20220000e+03 1.91900000e+03]\n", + " [ 1.56060000e+03 1.91900000e+03]\n", + " [ 1.91900000e+03 1.91900000e+03]]\n", + "DEBUG:root:fitpix2pix: ccdpx: shape: (96, 2)\n", + "DEBUG:root:radec2pix: camVec: [[ 0.00152888 0.00154215 0.00155354 0.00156302 0.00157054 0.00157606\n", + " 0.00157952 0.00158089 0.00152888 0.03055413 0.0594604 0.08813528\n", + " 0.11646734 0.14434605 0.17166149 0.1983039 0.00158089 0.03159291\n", + " 0.06147904 0.0911219 0.12040769 0.14922671 0.17747265 0.2050409\n", + " 0.1983039 0.20004855 0.20153434 0.2027606 0.20372608 0.20442907\n", + " 0.20486781 0.2050409 0.00163462 0.00165059 0.00166353 0.00167335\n", + " 0.00167995 0.00168324 0.01419184 0.04970047 0.08491857 0.11964057\n", + " 0.15366298 0.18678351 0.01467408 0.05138704 0.08779394 0.12368372\n", + " 0.15885436 0.19311093 0.19900616 0.20096941 0.20254341 0.2037261\n", + " 0.2045144 0.20490517 0.00162826 0.00162826 0.20494776 0.20494776\n", + " 0.01424722 0.04989441 0.08525013 0.12010852 0.15426631 0.18752167\n", + " 0.01438645 0.05038177 0.08608239 0.1212815 0.15577635 0.18936679\n", + " 0.01449922 0.05077617 0.08675481 0.12222707 0.15699061 0.19084708\n", + " 0.01458479 0.05107523 0.08726392 0.1229415 0.15790584 0.1919602\n", + " 0.01464229 0.05127607 0.08760541 0.12341989 0.15851749 0.19270261\n", + " 0.01467095 0.05137612 0.08777538 0.12365776 0.15882123 0.1930708 ]\n", + " [-0.20769103 -0.1801941 -0.15200928 -0.12324112 -0.09399571 -0.06438234\n", + " -0.03451442 -0.00450904 -0.20769103 -0.20754198 -0.20712371 -0.20643751\n", + " -0.2054851 -0.20426815 -0.20278791 -0.2010451 -0.00450904 -0.00450572\n", + " -0.00449643 -0.00448126 -0.00446035 -0.00443385 -0.00440189 -0.00436457\n", + " -0.2010451 -0.17444879 -0.14716869 -0.11931453 -0.09099614 -0.06232394\n", + " -0.03340929 -0.00436457 -0.1957935 -0.16161745 -0.12651199 -0.09067166\n", + " -0.05429781 -0.01760077 -0.20756647 -0.20720276 -0.20643606 -0.20526936\n", + " -0.20370571 -0.20174719 -0.00461102 -0.00460274 -0.00458538 -0.00455917\n", + " -0.0045244 -0.0044813 -0.18954613 -0.15647489 -0.12248558 -0.08778034\n", + " -0.05256249 -0.01703747 -0.20759824 -0.20759824 -0.00446412 -0.00446412\n", + " -0.19576354 -0.19542056 -0.19469787 -0.19359884 -0.19212697 -0.19028463\n", + " -0.16159264 -0.16130879 -0.16071144 -0.15980479 -0.15859338 -0.15708053\n", + " -0.12649245 -0.12626898 -0.12579928 -0.12508774 -0.12413931 -0.12295784\n", + " -0.09065756 -0.09049631 -0.09015775 -0.08964573 -0.08896468 -0.0881182\n", + " -0.05428931 -0.05419219 -0.05398843 -0.05368064 -0.05327188 -0.0527647\n", + " -0.01759801 -0.01756642 -0.01750018 -0.01740019 -0.0172675 -0.01710301]\n", + " [ 0.97819328 0.98362986 0.98837785 0.99237552 0.99557136 0.99792406\n", + " 0.99940295 0.99998858 0.97819328 0.97774883 0.97650613 0.97448229\n", + " 0.97170532 0.9682142 0.96405881 0.95929997 0.99998858 0.99949066\n", + " 0.99809825 0.99582966 0.99271451 0.98879307 0.98411589 0.97874367\n", + " 0.95929997 0.9641308 0.96836217 0.97193219 0.97478992 0.97689533\n", + " 0.9782193 0.97874367 0.98064379 0.9868521 0.99196368 0.99587944\n", + " 0.99852337 0.99984368 0.97811796 0.97703474 0.97476817 0.97136534\n", + " 0.96689796 0.96146242 0.9998817 0.99866821 0.9961281 0.99231122\n", + " 0.98729166 0.9811667 0.96149301 0.9670196 0.97158296 0.97508476\n", + " 0.9774513 0.97863353 0.97821282 0.97821282 0.97876273 0.97876273\n", + " 0.98054763 0.97944952 0.97715155 0.97370089 0.9691693 0.96365314\n", + " 0.98675268 0.98561714 0.98324039 0.97966996 0.97497788 0.9692605\n", + " 0.9918616 0.99069568 0.9882551 0.98458804 0.979767 0.97388848\n", + " 0.99577532 0.99458621 0.99209707 0.98835673 0.98343837 0.97743873\n", + " 0.99841789 0.9972131 0.99469118 0.99090157 0.985918 0.97983753\n", + " 0.9997375 0.99852487 0.99598656 0.99217236 0.98715635 0.98103576]]\n", + "DEBUG:root:radec2pix: camVec Shape: (3, 96)\n", + "DEBUG:root:fitpix2pix: visCut: True\n", + "DEBUG:root:cartToSphere: vec: [[-0.00108623 0.20994474 0.97771265]\n", + " [-0.00110818 0.18250974 0.98320342]\n", + " [-0.00112898 0.15437814 0.98801119]\n", + " [-0.00114857 0.12565449 0.9920734 ]\n", + " [-0.00116686 0.09644464 0.99533767]\n", + " [-0.00118378 0.0668576 0.99776183]\n", + " [-0.00119922 0.03700641 0.99931431]\n", + " [-0.00121312 0.00700791 0.99997471]\n", + " [-0.00108623 0.20994474 0.97771265]\n", + " [-0.03008973 0.20980966 0.97727914]\n", + " [-0.05897582 0.20940234 0.97604944]\n", + " [-0.08763213 0.20872399 0.97404051]\n", + " [-0.11594722 0.20777622 0.97128023]\n", + " [-0.14381054 0.20656061 0.96780744]\n", + " [-0.17111212 0.20507835 0.96367189]\n", + " [-0.19774215 0.20333011 0.95893426]\n", + " [-0.00121312 0.00700791 0.99997471]\n", + " [-0.0312253 0.00701559 0.99948775]\n", + " [-0.06111305 0.00701392 0.99810621]\n", + " [-0.09075893 0.00700302 0.99584827]\n", + " [-0.12004913 0.00698305 0.99274339]\n", + " [-0.1488739 0.00695418 0.98883174]\n", + " [-0.17712688 0.00691659 0.98416372]\n", + " [-0.20470344 0.00687038 0.97879993]\n", + " [-0.19774215 0.20333011 0.95893426]\n", + " [-0.19951656 0.17679323 0.96381393]\n", + " [-0.20103291 0.14956333 0.96809947]\n", + " [-0.2022905 0.12175011 0.97172808]\n", + " [-0.20328809 0.09346339 0.97464791]\n", + " [-0.20402394 0.06481351 0.97681802]\n", + " [-0.20449622 0.03591173 0.97820838]\n", + " [-0.20470344 0.00687038 0.97879993]\n", + " [-0.00119558 0.19807534 0.98018607]\n", + " [-0.00122271 0.16396932 0.98646468]\n", + " [-0.00124786 0.12892083 0.9916541 ]\n", + " [-0.00127089 0.09312409 0.9956537 ]\n", + " [-0.00129164 0.05677987 0.99838589]\n", + " [-0.00130994 0.02009792 0.99979716]\n", + " [-0.01373956 0.20982687 0.97764201]\n", + " [-0.04922259 0.20947825 0.9765736 ]\n", + " [-0.08441749 0.20872203 0.97432479]\n", + " [-0.11911871 0.20756102 0.97094241]\n", + " [-0.1531227 0.20599809 0.96649792]\n", + " [-0.18622706 0.20403521 0.96108746]\n", + " [-0.01430615 0.00711509 0.99987235]\n", + " [-0.05102028 0.00711803 0.99867225]\n", + " [-0.08743049 0.00710683 0.99614527]\n", + " [-0.12332566 0.00708177 0.99234098]\n", + " [-0.15850368 0.0070432 0.98733327]\n", + " [-0.19276957 0.00699139 0.98121915]\n", + " [-0.19845732 0.19185821 0.96114781]\n", + " [-0.20045757 0.1588536 0.96673797]\n", + " [-0.20206974 0.12491703 0.971372 ]\n", + " [-0.20329178 0.09025061 0.97494989]\n", + " [-0.20412054 0.0550575 0.97739627]\n", + " [-0.20455274 0.01954302 0.97866043]\n", + " [-0.00118556 0.20985223 0.97773239]\n", + " [-0.00118556 0.20985223 0.97773239]\n", + " [-0.20461015 0.00696998 0.97881873]\n", + " [-0.20461015 0.00696998 0.97881873]\n", + " [-0.01379915 0.19805172 0.98009443]\n", + " [-0.04942232 0.19772367 0.97901113]\n", + " [-0.08475642 0.19701128 0.97673072]\n", + " [-0.11959564 0.19591776 0.97330012]\n", + " [-0.15373662 0.19444643 0.96879081]\n", + " [-0.18697743 0.19259955 0.96329894]\n", + " [-0.01395111 0.16395068 0.98636988]\n", + " [-0.04992687 0.1636812 0.98524909]\n", + " [-0.08561039 0.16309354 0.98288929]\n", + " [-0.12079486 0.16219177 0.97933775]\n", + " [-0.15527748 0.16098028 0.97466623]\n", + " [-0.18885795 0.15946229 0.96897082]\n", + " [-0.0140777 0.12890725 0.99155673]\n", + " [-0.05033965 0.1286975 0.99040541]\n", + " [-0.08630574 0.12823673 0.9879811 ]\n", + " [-0.12176792 0.12752928 0.98433168]\n", + " [-0.15652378 0.12657997 0.97952939]\n", + " [-0.19037482 0.12539259 0.97367044]\n", + " [-0.01417814 0.09311572 0.99555434]\n", + " [-0.05065827 0.09296747 0.9943796 ]\n", + " [-0.08683905 0.092637 0.99190593]\n", + " [-0.12251113 0.09212815 0.98818188]\n", + " [-0.15747231 0.0914453 0.98328034]\n", + " [-0.19152571 0.09059206 0.97729779]\n", + " [-0.0142515 0.05677687 0.99828517]\n", + " [-0.05087978 0.05669199 0.99709441]\n", + " [-0.08720594 0.05649545 0.99458704]\n", + " [-0.12301955 0.05618991 0.99081223]\n", + " [-0.15811848 0.05577844 0.98584345]\n", + " [-0.19230704 0.0552636 0.97977749]\n", + " [-0.01429691 0.02010041 0.99969574]\n", + " [-0.0510015 0.0200803 0.99849668]\n", + " [-0.08740238 0.02002048 0.99597189]\n", + " [-0.12328852 0.0199219 0.99217088]\n", + " [-0.15845779 0.01978566 0.98716749]\n", + " [-0.19271515 0.01961272 0.98105872]]\n", + "DEBUG:root:mm_to_pix: fitpx: [[0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]]\n", + "DEBUG:root:mm_to_pix: fitpx.shape: (96, 2)\n", + "DEBUG:root:radec2pix: lat: [77.88072123 79.48382459 81.11902826 82.7811435 84.46512008 86.16588026\n", + " 87.87809063 89.592501 77.88072123 77.76297714 77.43489604 76.91632478\n", + " 76.23510116 75.42235372 74.50888673 73.52311865 89.592501 88.1660092\n", + " 86.47326812 84.77720909 83.09335022 81.42892112 79.7896882 78.18111406\n", + " 73.52311865 74.53938675 75.48898077 76.34336174 77.07095847 77.63894653\n", + " 78.01676209 78.18111406 78.57535641 80.56236957 82.59241544 84.65614182\n", + " 86.74415968 88.84595283 77.86145981 77.57369823 76.98847403 76.15398719\n", + " 75.12717296 73.96382281 89.0844999 87.04713438 84.96761219 82.90419496\n", + " 80.87086863 78.87814184 73.97634463 75.18085203 76.25721571 77.14851635\n", + " 77.79468183 78.14215534 77.8861108 77.8861108 78.18637455 78.18637455\n", + " 78.54888043 78.24034026 77.6156038 76.73023014 75.64791869 74.42908235\n", + " 80.52930205 80.14668621 79.38566385 78.33252026 77.07564982 75.68958597\n", + " 82.54926459 82.05674096 81.10786838 79.84412063 78.38693881 76.82298725\n", + " 84.59535958 83.92250159 82.7051798 81.18260126 79.50799917 77.76802141\n", + " 86.64409097 85.63122317 84.03581665 82.22723271 80.34771821 78.45776966\n", + " 88.58657998 86.85792078 84.85560606 82.82572865 80.81119712 78.83059106]\n", + "DEBUG:root:make_az_asym: xyp: [[32.23341696 31.55141621]\n", + " [32.23194958 27.16498788]\n", + " [32.2304822 22.77855956]\n", + " [32.22901483 18.39213124]\n", + " [32.22754745 14.00570291]\n", + " [32.22608007 9.61927458]\n", + " [32.22461269 5.23284626]\n", + " [32.2231453 0.84641793]\n", + " [32.23341696 31.55141621]\n", + " [27.84698864 31.5528836 ]\n", + " [23.46056031 31.55435097]\n", + " [19.07413198 31.55581835]\n", + " [14.68770366 31.55728573]\n", + " [10.30127533 31.55875311]\n", + " [ 5.91484701 31.56022049]\n", + " [ 1.52841868 31.56168787]\n", + " [32.2231453 0.84641793]\n", + " [27.83671698 0.84788531]\n", + " [23.45028865 0.84935269]\n", + " [19.06386033 0.85082007]\n", + " [14.677432 0.85228745]\n", + " [10.29100367 0.85375483]\n", + " [ 5.90457535 0.85522221]\n", + " [ 1.51814702 0.85668959]\n", + " [ 1.52841868 31.56168787]\n", + " [ 1.5269513 27.17525955]\n", + " [ 1.52548392 22.78883122]\n", + " [ 1.52401654 18.4024029 ]\n", + " [ 1.52254916 14.01597457]\n", + " [ 1.52108178 9.62954624]\n", + " [ 1.5196144 5.24311792]\n", + " [ 1.51814702 0.85668959]\n", + " [32.21777718 29.63892134]\n", + " [32.21597876 24.26292164]\n", + " [32.21418034 18.88692194]\n", + " [32.21238193 13.51092224]\n", + " [32.21058351 8.13492254]\n", + " [32.20878509 2.75892284]\n", + " [30.32091205 31.53705599]\n", + " [24.94491236 31.53885442]\n", + " [19.56891265 31.54065283]\n", + " [14.19291295 31.54245125]\n", + " [ 8.81691325 31.54424967]\n", + " [ 3.44091356 31.54604808]\n", + " [30.31065043 0.86205771]\n", + " [24.93465073 0.86385613]\n", + " [19.55865103 0.86565455]\n", + " [14.18265134 0.86745297]\n", + " [ 8.80665163 0.86925139]\n", + " [ 3.43065193 0.8710498 ]\n", + " [ 1.5427789 29.64918296]\n", + " [ 1.54098048 24.27318326]\n", + " [ 1.53918206 18.89718357]\n", + " [ 1.53738364 13.52118387]\n", + " [ 1.53558522 8.14518416]\n", + " [ 1.5337868 2.76918446]\n", + " [32.21841195 31.53642123]\n", + " [32.21841195 31.53642123]\n", + " [ 1.53315204 0.87168457]\n", + " [ 1.53315204 0.87168457]\n", + " [30.32027729 29.6395561 ]\n", + " [24.94427759 29.64135452]\n", + " [19.56827789 29.64315294]\n", + " [14.19227819 29.64495136]\n", + " [ 8.81627849 29.64674978]\n", + " [ 3.44027879 29.6485482 ]\n", + " [30.31847887 24.2635564 ]\n", + " [24.94247917 24.26535482]\n", + " [19.56647947 24.26715324]\n", + " [14.19047977 24.26895166]\n", + " [ 8.81448007 24.27075007]\n", + " [ 3.43848037 24.2725485 ]\n", + " [30.31668045 18.8875567 ]\n", + " [24.94068075 18.88935513]\n", + " [19.56468105 18.89115354]\n", + " [14.18868135 18.89295196]\n", + " [ 8.81268165 18.89475038]\n", + " [ 3.43668195 18.89654879]\n", + " [30.31488203 13.51155701]\n", + " [24.93888233 13.51335542]\n", + " [19.56288263 13.51515384]\n", + " [14.18688293 13.51695226]\n", + " [ 8.81088324 13.51875068]\n", + " [ 3.43488354 13.5205491 ]\n", + " [30.31308361 8.13555731]\n", + " [24.93708392 8.13735572]\n", + " [19.56108422 8.13915414]\n", + " [14.18508451 8.14095256]\n", + " [ 8.80908482 8.14275098]\n", + " [ 3.43308512 8.1445494 ]\n", + " [30.31128519 2.75955761]\n", + " [24.93528549 2.76135602]\n", + " [19.5592858 2.76315444]\n", + " [14.18328609 2.76495286]\n", + " [ 8.8072864 2.76675128]\n", + " [ 3.4312867 2.7685497 ]]\n", + "DEBUG:root:make_az_asym: xyp: shape: (96, 2)\n", + "DEBUG:root:radec2pix: lng: [ 90.2964384 90.3478894 90.41900227 90.52370941 90.69317626\n", + " 91.01436915 91.85606354 99.82098825 90.2964384 98.16139155\n", + " 105.72927905 112.77495178 119.16321868 124.84620437 129.84075369\n", + " 134.20177453 99.82098825 167.3372664 173.45282833 175.5877589\n", + " 176.67095531 177.32554882 177.76380439 178.07772632 134.20177453\n", + " 138.45558903 143.3516981 148.95804019 155.308999 162.37619731\n", + " 170.03980495 178.07772632 90.34583364 90.4272438 90.55456533\n", + " 90.78188435 91.3031483 93.7291305 93.74640471 103.2233069\n", + " 112.02083939 119.85139884 126.62419493 132.38733532 153.55676438\n", + " 172.05771641 175.35290167 176.71349424 177.45570466 177.92289984\n", + " 135.96861356 141.60475991 148.27615291 156.06135558 164.90482616\n", + " 174.54251233 90.32368928 90.32368928 178.04899302 178.04899302\n", + " 93.98561362 104.03389942 113.27790792 121.40147615 128.33121468\n", + " 134.15142333 94.8637718 106.96302166 117.69569442 126.6774761\n", + " 133.96694623 139.82391059 96.23245551 111.36280739 123.94129691\n", + " 133.676108 141.03771084 146.62863656 98.65756574 118.5861081\n", + " 133.14971036 143.05690148 149.85595749 154.68575435 104.09063117\n", + " 131.90726386 147.0632386 155.45116677 160.56901612 163.96684771\n", + " 125.42327674 158.50946167 167.09834094 170.82105172 172.88266004\n", + " 174.18898669]\n", + "DEBUG:root:radec2pix: lat: [77.88072123 79.48382459 81.11902826 82.7811435 84.46512008 86.16588026\n", + " 87.87809063 89.592501 77.88072123 77.76297714 77.43489604 76.91632478\n", + " 76.23510116 75.42235372 74.50888673 73.52311865 89.592501 88.1660092\n", + " 86.47326812 84.77720909 83.09335022 81.42892112 79.7896882 78.18111406\n", + " 73.52311865 74.53938675 75.48898077 76.34336174 77.07095847 77.63894653\n", + " 78.01676209 78.18111406 78.57535641 80.56236957 82.59241544 84.65614182\n", + " 86.74415968 88.84595283 77.86145981 77.57369823 76.98847403 76.15398719\n", + " 75.12717296 73.96382281 89.0844999 87.04713438 84.96761219 82.90419496\n", + " 80.87086863 78.87814184 73.97634463 75.18085203 76.25721571 77.14851635\n", + " 77.79468183 78.14215534 77.8861108 77.8861108 78.18637455 78.18637455\n", + " 78.54888043 78.24034026 77.6156038 76.73023014 75.64791869 74.42908235\n", + " 80.52930205 80.14668621 79.38566385 78.33252026 77.07564982 75.68958597\n", + " 82.54926459 82.05674096 81.10786838 79.84412063 78.38693881 76.82298725\n", + " 84.59535958 83.92250159 82.7051798 81.18260126 79.50799917 77.76802141\n", + " 86.64409097 85.63122317 84.03581665 82.22723271 80.34771821 78.45776966\n", + " 88.58657998 86.85792078 84.85560606 82.82572865 80.81119712 78.83059106]\n", + "DEBUG:root:optics_fp: cphi: [0.00531582 0.00617606 0.00736845 0.00913141 0.01200322 0.01750968\n", + " 0.03234551 0.20821284 0.00531582 0.14311708 0.27310311 0.3897246\n", + " 0.4902447 0.57443147 0.64366516 0.70005401 0.20821284 0.985415\n", + " 0.9961538 0.99826353 0.99901596 0.99936749 0.99955952 0.99967574\n", + " 0.70005401 0.75147061 0.80542393 0.85983504 0.91133409 0.95525529\n", + " 0.98625153 0.99967574 0.00616661 0.00753628 0.00968808 0.01355957\n", + " 0.02258341 0.06743141 0.06593447 0.23049481 0.37750356 0.50072179\n", + " 0.5996194 0.67707715 0.93313131 0.9942732 0.99805551 0.99903282\n", + " 0.99942317 0.99961734 0.72190396 0.78684101 0.853656 0.91669352\n", + " 0.96742456 0.9961969 0.00579488 0.00579488 0.99966293 0.99966293\n", + " 0.07014401 0.24442291 0.39798307 0.52421253 0.62341756 0.6995908\n", + " 0.08562066 0.29440551 0.4684183 0.60117718 0.69788907 0.76731313\n", + " 0.10980719 0.36820194 0.56319871 0.69519142 0.78151879 0.83840459\n", + " 0.15281345 0.48480743 0.69026239 0.80432664 0.86864949 0.90694654\n", + " 0.24943532 0.67838632 0.84636544 0.9141376 0.94608152 0.96325609\n", + " 0.61041805 0.94029264 0.97858921 0.98919227 0.99351563 0.99568553]\n", + "DEBUG:root:radec2pix: xyfp: [[ 0.173161 -31.45819714]\n", + " [ 0.17304708 -27.07176857]\n", + " [ 0.17293316 -22.68534 ]\n", + " [ 0.17281925 -18.29891143]\n", + " [ 0.17270533 -13.91248287]\n", + " [ 0.17259141 -9.52605429]\n", + " [ 0.17247749 -5.13962573]\n", + " [ 0.17236358 -0.75319715]\n", + " [ 0.173161 -31.45819714]\n", + " [ 4.55958957 -31.45808322]\n", + " [ 8.94601814 -31.45796931]\n", + " [ 13.33244671 -31.45785538]\n", + " [ 17.71887528 -31.45774147]\n", + " [ 22.10530385 -31.45762756]\n", + " [ 26.49173242 -31.45751363]\n", + " [ 30.87816099 -31.45739971]\n", + " [ 0.17236358 -0.75319715]\n", + " [ 4.55879215 -0.75308323]\n", + " [ 8.94522072 -0.75296932]\n", + " [ 13.33164929 -0.7528554 ]\n", + " [ 17.71807786 -0.75274148]\n", + " [ 22.10450643 -0.75262756]\n", + " [ 26.490935 -0.75251364]\n", + " [ 30.87736356 -0.75239973]\n", + " [ 30.87816099 -31.45739971]\n", + " [ 30.87804707 -27.07097114]\n", + " [ 30.87793315 -22.68454257]\n", + " [ 30.87781924 -18.29811401]\n", + " [ 30.87770532 -13.91168544]\n", + " [ 30.87759141 -9.52525687]\n", + " [ 30.87747749 -5.1388283 ]\n", + " [ 30.87736356 -0.75239973]\n", + " [ 0.18811133 -29.54569675]\n", + " [ 0.18797171 -24.16969676]\n", + " [ 0.1878321 -18.79369675]\n", + " [ 0.18769248 -13.41769676]\n", + " [ 0.18755286 -8.04169676]\n", + " [ 0.18741324 -2.66569676]\n", + " [ 2.08566061 -31.44314748]\n", + " [ 7.46166061 -31.44300785]\n", + " [ 12.83766061 -31.44286824]\n", + " [ 18.2136606 -31.44272862]\n", + " [ 23.5896606 -31.442589 ]\n", + " [ 28.9656606 -31.44244938]\n", + " [ 2.08486397 -0.76814748]\n", + " [ 7.46086396 -0.76800786]\n", + " [ 12.83686396 -0.76786825]\n", + " [ 18.21286396 -0.76772863]\n", + " [ 23.58886395 -0.76758901]\n", + " [ 28.96486395 -0.7674494 ]\n", + " [ 30.86311132 -29.54490011]\n", + " [ 30.86297171 -24.16890011]\n", + " [ 30.86283209 -18.79290011]\n", + " [ 30.86269247 -13.41690011]\n", + " [ 30.86255285 -8.04090011]\n", + " [ 30.86241323 -2.66490012]\n", + " [ 0.18816061 -31.44319675]\n", + " [ 0.18816061 -31.44319675]\n", + " [ 30.86236396 -0.76740012]\n", + " [ 30.86236396 -0.76740012]\n", + " [ 2.08561133 -29.54564748]\n", + " [ 7.46161133 -29.54550785]\n", + " [ 12.83761133 -29.54536824]\n", + " [ 18.21361133 -29.54522862]\n", + " [ 23.58961132 -29.545089 ]\n", + " [ 28.96561132 -29.54494938]\n", + " [ 2.08547171 -24.16964747]\n", + " [ 7.46147171 -24.16950786]\n", + " [ 12.83747171 -24.16936824]\n", + " [ 18.21347171 -24.16922862]\n", + " [ 23.58947171 -24.16908901]\n", + " [ 28.9654717 -24.16894939]\n", + " [ 2.0853321 -18.79364747]\n", + " [ 7.46133209 -18.79350785]\n", + " [ 12.83733209 -18.79336824]\n", + " [ 18.21333209 -18.79322862]\n", + " [ 23.58933209 -18.79308901]\n", + " [ 28.96533209 -18.79294939]\n", + " [ 2.08519248 -13.41764748]\n", + " [ 7.46119248 -13.41750786]\n", + " [ 12.83719247 -13.41736824]\n", + " [ 18.21319248 -13.41722863]\n", + " [ 23.58919247 -13.41708901]\n", + " [ 28.96519247 -13.41694939]\n", + " [ 2.08505286 -8.04164748]\n", + " [ 7.46105286 -8.04150786]\n", + " [ 12.83705286 -8.04136825]\n", + " [ 18.21305286 -8.04122863]\n", + " [ 23.58905286 -8.04108901]\n", + " [ 28.96505285 -8.04094939]\n", + " [ 2.08491324 -2.66564748]\n", + " [ 7.46091324 -2.66550786]\n", + " [ 12.83691324 -2.66536825]\n", + " [ 18.21291324 -2.66522863]\n", + " [ 23.58891323 -2.66508901]\n", + " [ 28.96491324 -2.66494939]]\n", + "DEBUG:root:cartToSphere: vec: [[ 0.00152888 -0.20769103 0.97819328]\n", + " [ 0.00154215 -0.1801941 0.98362986]\n", + " [ 0.00155354 -0.15200928 0.98837785]\n", + " [ 0.00156302 -0.12324112 0.99237552]\n", + " [ 0.00157054 -0.09399571 0.99557136]\n", + " [ 0.00157606 -0.06438234 0.99792406]\n", + " [ 0.00157952 -0.03451442 0.99940295]\n", + " [ 0.00158089 -0.00450904 0.99998858]\n", + " [ 0.00152888 -0.20769103 0.97819328]\n", + " [ 0.03055413 -0.20754198 0.97774883]\n", + " [ 0.0594604 -0.20712371 0.97650613]\n", + " [ 0.08813528 -0.20643751 0.97448229]\n", + " [ 0.11646734 -0.2054851 0.97170532]\n", + " [ 0.14434605 -0.20426815 0.9682142 ]\n", + " [ 0.17166149 -0.20278791 0.96405881]\n", + " [ 0.1983039 -0.2010451 0.95929997]\n", + " [ 0.00158089 -0.00450904 0.99998858]\n", + " [ 0.03159291 -0.00450572 0.99949066]\n", + " [ 0.06147904 -0.00449643 0.99809825]\n", + " [ 0.0911219 -0.00448126 0.99582966]\n", + " [ 0.12040769 -0.00446035 0.99271451]\n", + " [ 0.14922671 -0.00443385 0.98879307]\n", + " [ 0.17747265 -0.00440189 0.98411589]\n", + " [ 0.2050409 -0.00436457 0.97874367]\n", + " [ 0.1983039 -0.2010451 0.95929997]\n", + " [ 0.20004855 -0.17444879 0.9641308 ]\n", + " [ 0.20153434 -0.14716869 0.96836217]\n", + " [ 0.2027606 -0.11931453 0.97193219]\n", + " [ 0.20372608 -0.09099614 0.97478992]\n", + " [ 0.20442907 -0.06232394 0.97689533]\n", + " [ 0.20486781 -0.03340929 0.9782193 ]\n", + " [ 0.2050409 -0.00436457 0.97874367]\n", + " [ 0.00163462 -0.1957935 0.98064379]\n", + " [ 0.00165059 -0.16161745 0.9868521 ]\n", + " [ 0.00166353 -0.12651199 0.99196368]\n", + " [ 0.00167335 -0.09067166 0.99587944]\n", + " [ 0.00167995 -0.05429781 0.99852337]\n", + " [ 0.00168324 -0.01760077 0.99984368]\n", + " [ 0.01419184 -0.20756647 0.97811796]\n", + " [ 0.04970047 -0.20720276 0.97703474]\n", + " [ 0.08491857 -0.20643606 0.97476817]\n", + " [ 0.11964057 -0.20526936 0.97136534]\n", + " [ 0.15366298 -0.20370571 0.96689796]\n", + " [ 0.18678351 -0.20174719 0.96146242]\n", + " [ 0.01467408 -0.00461102 0.9998817 ]\n", + " [ 0.05138704 -0.00460274 0.99866821]\n", + " [ 0.08779394 -0.00458538 0.9961281 ]\n", + " [ 0.12368372 -0.00455917 0.99231122]\n", + " [ 0.15885436 -0.0045244 0.98729166]\n", + " [ 0.19311093 -0.0044813 0.9811667 ]\n", + " [ 0.19900616 -0.18954613 0.96149301]\n", + " [ 0.20096941 -0.15647489 0.9670196 ]\n", + " [ 0.20254341 -0.12248558 0.97158296]\n", + " [ 0.2037261 -0.08778034 0.97508476]\n", + " [ 0.2045144 -0.05256249 0.9774513 ]\n", + " [ 0.20490517 -0.01703747 0.97863353]\n", + " [ 0.00162826 -0.20759824 0.97821282]\n", + " [ 0.00162826 -0.20759824 0.97821282]\n", + " [ 0.20494776 -0.00446412 0.97876273]\n", + " [ 0.20494776 -0.00446412 0.97876273]\n", + " [ 0.01424722 -0.19576354 0.98054763]\n", + " [ 0.04989441 -0.19542056 0.97944952]\n", + " [ 0.08525013 -0.19469787 0.97715155]\n", + " [ 0.12010852 -0.19359884 0.97370089]\n", + " [ 0.15426631 -0.19212697 0.9691693 ]\n", + " [ 0.18752167 -0.19028463 0.96365314]\n", + " [ 0.01438645 -0.16159264 0.98675268]\n", + " [ 0.05038177 -0.16130879 0.98561714]\n", + " [ 0.08608239 -0.16071144 0.98324039]\n", + " [ 0.1212815 -0.15980479 0.97966996]\n", + " [ 0.15577635 -0.15859338 0.97497788]\n", + " [ 0.18936679 -0.15708053 0.9692605 ]\n", + " [ 0.01449922 -0.12649245 0.9918616 ]\n", + " [ 0.05077617 -0.12626898 0.99069568]\n", + " [ 0.08675481 -0.12579928 0.9882551 ]\n", + " [ 0.12222707 -0.12508774 0.98458804]\n", + " [ 0.15699061 -0.12413931 0.979767 ]\n", + " [ 0.19084708 -0.12295784 0.97388848]\n", + " [ 0.01458479 -0.09065756 0.99577532]\n", + " [ 0.05107523 -0.09049631 0.99458621]\n", + " [ 0.08726392 -0.09015775 0.99209707]\n", + " [ 0.1229415 -0.08964573 0.98835673]\n", + " [ 0.15790584 -0.08896468 0.98343837]\n", + " [ 0.1919602 -0.0881182 0.97743873]\n", + " [ 0.01464229 -0.05428931 0.99841789]\n", + " [ 0.05127607 -0.05419219 0.9972131 ]\n", + " [ 0.08760541 -0.05398843 0.99469118]\n", + " [ 0.12341989 -0.05368064 0.99090157]\n", + " [ 0.15851749 -0.05327188 0.985918 ]\n", + " [ 0.19270261 -0.0527647 0.97983753]\n", + " [ 0.01467095 -0.01759801 0.9997375 ]\n", + " [ 0.05137612 -0.01756642 0.99852487]\n", + " [ 0.08777538 -0.01750018 0.99598656]\n", + " [ 0.12365776 -0.01740019 0.99217236]\n", + " [ 0.15882123 -0.0172675 0.98715635]\n", + " [ 0.1930708 -0.01710301 0.98103576]]\n", + "DEBUG:root:radec2pix: xyfp: [[32.23341696 31.55141621]\n", + " [32.23194958 27.16498788]\n", + " [32.2304822 22.77855956]\n", + " [32.22901483 18.39213124]\n", + " [32.22754745 14.00570291]\n", + " [32.22608007 9.61927458]\n", + " [32.22461269 5.23284626]\n", + " [32.2231453 0.84641793]\n", + " [32.23341696 31.55141621]\n", + " [27.84698864 31.5528836 ]\n", + " [23.46056031 31.55435097]\n", + " [19.07413198 31.55581835]\n", + " [14.68770366 31.55728573]\n", + " [10.30127533 31.55875311]\n", + " [ 5.91484701 31.56022049]\n", + " [ 1.52841868 31.56168787]\n", + " [32.2231453 0.84641793]\n", + " [27.83671698 0.84788531]\n", + " [23.45028865 0.84935269]\n", + " [19.06386033 0.85082007]\n", + " [14.677432 0.85228745]\n", + " [10.29100367 0.85375483]\n", + " [ 5.90457535 0.85522221]\n", + " [ 1.51814702 0.85668959]\n", + " [ 1.52841868 31.56168787]\n", + " [ 1.5269513 27.17525955]\n", + " [ 1.52548392 22.78883122]\n", + " [ 1.52401654 18.4024029 ]\n", + " [ 1.52254916 14.01597457]\n", + " [ 1.52108178 9.62954624]\n", + " [ 1.5196144 5.24311792]\n", + " [ 1.51814702 0.85668959]\n", + " [32.21777718 29.63892134]\n", + " [32.21597876 24.26292164]\n", + " [32.21418034 18.88692194]\n", + " [32.21238193 13.51092224]\n", + " [32.21058351 8.13492254]\n", + " [32.20878509 2.75892284]\n", + " [30.32091205 31.53705599]\n", + " [24.94491236 31.53885442]\n", + " [19.56891265 31.54065283]\n", + " [14.19291295 31.54245125]\n", + " [ 8.81691325 31.54424967]\n", + " [ 3.44091356 31.54604808]\n", + " [30.31065043 0.86205771]\n", + " [24.93465073 0.86385613]\n", + " [19.55865103 0.86565455]\n", + " [14.18265134 0.86745297]\n", + " [ 8.80665163 0.86925139]\n", + " [ 3.43065193 0.8710498 ]\n", + " [ 1.5427789 29.64918296]\n", + " [ 1.54098048 24.27318326]\n", + " [ 1.53918206 18.89718357]\n", + " [ 1.53738364 13.52118387]\n", + " [ 1.53558522 8.14518416]\n", + " [ 1.5337868 2.76918446]\n", + " [32.21841195 31.53642123]\n", + " [32.21841195 31.53642123]\n", + " [ 1.53315204 0.87168457]\n", + " [ 1.53315204 0.87168457]\n", + " [30.32027729 29.6395561 ]\n", + " [24.94427759 29.64135452]\n", + " [19.56827789 29.64315294]\n", + " [14.19227819 29.64495136]\n", + " [ 8.81627849 29.64674978]\n", + " [ 3.44027879 29.6485482 ]\n", + " [30.31847887 24.2635564 ]\n", + " [24.94247917 24.26535482]\n", + " [19.56647947 24.26715324]\n", + " [14.19047977 24.26895166]\n", + " [ 8.81448007 24.27075007]\n", + " [ 3.43848037 24.2725485 ]\n", + " [30.31668045 18.8875567 ]\n", + " [24.94068075 18.88935513]\n", + " [19.56468105 18.89115354]\n", + " [14.18868135 18.89295196]\n", + " [ 8.81268165 18.89475038]\n", + " [ 3.43668195 18.89654879]\n", + " [30.31488203 13.51155701]\n", + " [24.93888233 13.51335542]\n", + " [19.56288263 13.51515384]\n", + " [14.18688293 13.51695226]\n", + " [ 8.81088324 13.51875068]\n", + " [ 3.43488354 13.5205491 ]\n", + " [30.31308361 8.13555731]\n", + " [24.93708392 8.13735572]\n", + " [19.56108422 8.13915414]\n", + " [14.18508451 8.14095256]\n", + " [ 8.80908482 8.14275098]\n", + " [ 3.43308512 8.1445494 ]\n", + " [30.31128519 2.75955761]\n", + " [24.93528549 2.76135602]\n", + " [19.5592858 2.76315444]\n", + " [14.18328609 2.76495286]\n", + " [ 8.8072864 2.76675128]\n", + " [ 3.4312867 2.7685497 ]]\n", + "DEBUG:root:radec2pix: xyfp Shape: (96, 2)\n", + "DEBUG:root:radec2pix: lng: [270.42176524 270.49034045 270.58554379 270.72662079 270.95724718\n", + " 271.40230304 272.6202602 289.32090211 270.42176524 278.37487059\n", + " 286.01754065 293.1193046 299.54422335 305.24693184 310.24816583\n", + " 314.60671783 289.32090211 351.88332455 355.81697528 357.18453549\n", + " 357.87852145 358.29811982 358.57917324 358.78056782 314.60671783\n", + " 318.91052218 323.86153916 329.52530495 335.93162927 343.04519816\n", + " 350.73789032 358.78056782 270.47833289 270.58513886 270.75335014\n", + " 271.05727717 271.77214072 275.46283159 273.91137001 283.48836134\n", + " 292.36007687 300.23563069 307.02864268 312.79442784 342.55577414\n", + " 354.88167257 357.01022263 357.88894543 358.36857558 358.67064356\n", + " 316.39469688 322.09565632 328.83707711 336.69003224 345.58630386\n", + " 355.24690052 270.44938101 270.44938101 358.75219462 358.75219462\n", + " 274.16251665 284.32266507 293.64661849 301.81542209 308.76235319\n", + " 314.58099285 275.08757932 287.34521298 298.17498348 307.196148\n", + " 314.48659385 320.3241534 276.53899869 291.90639058 304.59126569\n", + " 314.33729311 321.66504236 327.20736404 279.1393103 299.43995741\n", + " 314.06556227 323.90144592 330.60294465 335.34278839 285.09401101\n", + " 313.41621828 328.3557916 336.49369688 341.42440255 344.68693562\n", + " 309.81698293 341.12351394 348.72452469 351.99035546 353.79501012\n", + " 354.93771634]\n", + "DEBUG:root:optics_fp: xyfp: [[ 0.173161 -31.45819714]\n", + " [ 0.17304708 -27.07176857]\n", + " [ 0.17293316 -22.68534 ]\n", + " [ 0.17281925 -18.29891143]\n", + " [ 0.17270533 -13.91248287]\n", + " [ 0.17259141 -9.52605429]\n", + " [ 0.17247749 -5.13962573]\n", + " [ 0.17236358 -0.75319715]\n", + " [ 0.173161 -31.45819714]\n", + " [ 4.55958957 -31.45808322]\n", + " [ 8.94601814 -31.45796931]\n", + " [ 13.33244671 -31.45785538]\n", + " [ 17.71887528 -31.45774147]\n", + " [ 22.10530385 -31.45762756]\n", + " [ 26.49173242 -31.45751363]\n", + " [ 30.87816099 -31.45739971]\n", + " [ 0.17236358 -0.75319715]\n", + " [ 4.55879215 -0.75308323]\n", + " [ 8.94522072 -0.75296932]\n", + " [ 13.33164929 -0.7528554 ]\n", + " [ 17.71807786 -0.75274148]\n", + " [ 22.10450643 -0.75262756]\n", + " [ 26.490935 -0.75251364]\n", + " [ 30.87736356 -0.75239973]\n", + " [ 30.87816099 -31.45739971]\n", + " [ 30.87804707 -27.07097114]\n", + " [ 30.87793315 -22.68454257]\n", + " [ 30.87781924 -18.29811401]\n", + " [ 30.87770532 -13.91168544]\n", + " [ 30.87759141 -9.52525687]\n", + " [ 30.87747749 -5.1388283 ]\n", + " [ 30.87736356 -0.75239973]\n", + " [ 0.18811133 -29.54569675]\n", + " [ 0.18797171 -24.16969676]\n", + " [ 0.1878321 -18.79369675]\n", + " [ 0.18769248 -13.41769676]\n", + " [ 0.18755286 -8.04169676]\n", + " [ 0.18741324 -2.66569676]\n", + " [ 2.08566061 -31.44314748]\n", + " [ 7.46166061 -31.44300785]\n", + " [ 12.83766061 -31.44286824]\n", + " [ 18.2136606 -31.44272862]\n", + " [ 23.5896606 -31.442589 ]\n", + " [ 28.9656606 -31.44244938]\n", + " [ 2.08486397 -0.76814748]\n", + " [ 7.46086396 -0.76800786]\n", + " [ 12.83686396 -0.76786825]\n", + " [ 18.21286396 -0.76772863]\n", + " [ 23.58886395 -0.76758901]\n", + " [ 28.96486395 -0.7674494 ]\n", + " [ 30.86311132 -29.54490011]\n", + " [ 30.86297171 -24.16890011]\n", + " [ 30.86283209 -18.79290011]\n", + " [ 30.86269247 -13.41690011]\n", + " [ 30.86255285 -8.04090011]\n", + " [ 30.86241323 -2.66490012]\n", + " [ 0.18816061 -31.44319675]\n", + " [ 0.18816061 -31.44319675]\n", + " [ 30.86236396 -0.76740012]\n", + " [ 30.86236396 -0.76740012]\n", + " [ 2.08561133 -29.54564748]\n", + " [ 7.46161133 -29.54550785]\n", + " [ 12.83761133 -29.54536824]\n", + " [ 18.21361133 -29.54522862]\n", + " [ 23.58961132 -29.545089 ]\n", + " [ 28.96561132 -29.54494938]\n", + " [ 2.08547171 -24.16964747]\n", + " [ 7.46147171 -24.16950786]\n", + " [ 12.83747171 -24.16936824]\n", + " [ 18.21347171 -24.16922862]\n", + " [ 23.58947171 -24.16908901]\n", + " [ 28.9654717 -24.16894939]\n", + " [ 2.0853321 -18.79364747]\n", + " [ 7.46133209 -18.79350785]\n", + " [ 12.83733209 -18.79336824]\n", + " [ 18.21333209 -18.79322862]\n", + " [ 23.58933209 -18.79308901]\n", + " [ 28.96533209 -18.79294939]\n", + " [ 2.08519248 -13.41764748]\n", + " [ 7.46119248 -13.41750786]\n", + " [ 12.83719247 -13.41736824]\n", + " [ 18.21319248 -13.41722863]\n", + " [ 23.58919247 -13.41708901]\n", + " [ 28.96519247 -13.41694939]\n", + " [ 2.08505286 -8.04164748]\n", + " [ 7.46105286 -8.04150786]\n", + " [ 12.83705286 -8.04136825]\n", + " [ 18.21305286 -8.04122863]\n", + " [ 23.58905286 -8.04108901]\n", + " [ 28.96505285 -8.04094939]\n", + " [ 2.08491324 -2.66564748]\n", + " [ 7.46091324 -2.66550786]\n", + " [ 12.83691324 -2.66536825]\n", + " [ 18.21291324 -2.66522863]\n", + " [ 23.58891323 -2.66508901]\n", + " [ 28.96491324 -2.66494939]]\n", + "DEBUG:root:optics_fp: xyfp shape: (96, 2)\n", + "DEBUG:root:radec2pix: ccdpx: [[-4.45000000e+01 -4.99999973e-01]\n", + " [-4.45000000e+01 2.91928572e+02]\n", + " [-4.45000000e+01 5.84357143e+02]\n", + " [-4.45000000e+01 8.76785714e+02]\n", + " [-4.45000000e+01 1.16921429e+03]\n", + " [-4.45000000e+01 1.46164286e+03]\n", + " [-4.45000000e+01 1.75407143e+03]\n", + " [-4.45000000e+01 2.04650000e+03]\n", + " [-4.45000000e+01 -4.99999973e-01]\n", + " [ 2.47928571e+02 -4.99999766e-01]\n", + " [ 5.40357143e+02 -5.00000023e-01]\n", + " [ 8.32785714e+02 -4.99999798e-01]\n", + " [ 1.12521429e+03 -5.00000229e-01]\n", + " [ 1.41764286e+03 -5.00000231e-01]\n", + " [ 1.71007143e+03 -4.99999870e-01]\n", + " [ 2.00250000e+03 -4.99999884e-01]\n", + " [-4.45000000e+01 2.04650000e+03]\n", + " [ 2.47928571e+02 2.04650000e+03]\n", + " [ 5.40357143e+02 2.04650000e+03]\n", + " [ 8.32785714e+02 2.04650000e+03]\n", + " [ 1.12521429e+03 2.04650000e+03]\n", + " [ 1.41764286e+03 2.04650000e+03]\n", + " [ 1.71007143e+03 2.04650000e+03]\n", + " [ 2.00250000e+03 2.04650000e+03]\n", + " [ 2.00250000e+03 -4.99999884e-01]\n", + " [ 2.00250000e+03 2.91928572e+02]\n", + " [ 2.00250000e+03 5.84357143e+02]\n", + " [ 2.00250000e+03 8.76785714e+02]\n", + " [ 2.00250000e+03 1.16921429e+03]\n", + " [ 2.00250000e+03 1.46164286e+03]\n", + " [ 2.00250000e+03 1.75407143e+03]\n", + " [ 2.00250000e+03 2.04650000e+03]\n", + " [-4.35000000e+01 1.27000000e+02]\n", + " [-4.35000000e+01 4.85400000e+02]\n", + " [-4.35000000e+01 8.43800000e+02]\n", + " [-4.35000000e+01 1.20220000e+03]\n", + " [-4.35000000e+01 1.56060000e+03]\n", + " [-4.35000000e+01 1.91900000e+03]\n", + " [ 8.30000000e+01 4.99999770e-01]\n", + " [ 4.41400000e+02 5.00000267e-01]\n", + " [ 7.99800000e+02 4.99999825e-01]\n", + " [ 1.15820000e+03 5.00000071e-01]\n", + " [ 1.51660000e+03 5.00000113e-01]\n", + " [ 1.87500000e+03 5.00000214e-01]\n", + " [ 8.30000000e+01 2.04550000e+03]\n", + " [ 4.41400000e+02 2.04550000e+03]\n", + " [ 7.99800000e+02 2.04550000e+03]\n", + " [ 1.15820000e+03 2.04550000e+03]\n", + " [ 1.51660000e+03 2.04550000e+03]\n", + " [ 1.87500000e+03 2.04550000e+03]\n", + " [ 2.00150000e+03 1.27000000e+02]\n", + " [ 2.00150000e+03 4.85400000e+02]\n", + " [ 2.00150000e+03 8.43800000e+02]\n", + " [ 2.00150000e+03 1.20220000e+03]\n", + " [ 2.00150000e+03 1.56060000e+03]\n", + " [ 2.00150000e+03 1.91900000e+03]\n", + " [-4.35000000e+01 5.00000284e-01]\n", + " [-4.35000000e+01 5.00000284e-01]\n", + " [ 2.00150000e+03 2.04550000e+03]\n", + " [ 2.00150000e+03 2.04550000e+03]\n", + " [ 8.30000000e+01 1.27000000e+02]\n", + " [ 4.41400000e+02 1.27000000e+02]\n", + " [ 7.99800000e+02 1.27000000e+02]\n", + " [ 1.15820000e+03 1.27000000e+02]\n", + " [ 1.51660000e+03 1.27000000e+02]\n", + " [ 1.87500000e+03 1.27000000e+02]\n", + " [ 8.30000000e+01 4.85400000e+02]\n", + " [ 4.41400000e+02 4.85400000e+02]\n", + " [ 7.99800000e+02 4.85400000e+02]\n", + " [ 1.15820000e+03 4.85400000e+02]\n", + " [ 1.51660000e+03 4.85400000e+02]\n", + " [ 1.87500000e+03 4.85400000e+02]\n", + " [ 8.30000000e+01 8.43800000e+02]\n", + " [ 4.41400000e+02 8.43800000e+02]\n", + " [ 7.99800000e+02 8.43800000e+02]\n", + " [ 1.15820000e+03 8.43800000e+02]\n", + " [ 1.51660000e+03 8.43800000e+02]\n", + " [ 1.87500000e+03 8.43800000e+02]\n", + " [ 8.30000000e+01 1.20220000e+03]\n", + " [ 4.41400000e+02 1.20220000e+03]\n", + " [ 7.99800000e+02 1.20220000e+03]\n", + " [ 1.15820000e+03 1.20220000e+03]\n", + " [ 1.51660000e+03 1.20220000e+03]\n", + " [ 1.87500000e+03 1.20220000e+03]\n", + " [ 8.30000000e+01 1.56060000e+03]\n", + " [ 4.41400000e+02 1.56060000e+03]\n", + " [ 7.99800000e+02 1.56060000e+03]\n", + " [ 1.15820000e+03 1.56060000e+03]\n", + " [ 1.51660000e+03 1.56060000e+03]\n", + " [ 1.87500000e+03 1.56060000e+03]\n", + " [ 8.30000000e+01 1.91900000e+03]\n", + " [ 4.41400000e+02 1.91900000e+03]\n", + " [ 7.99800000e+02 1.91900000e+03]\n", + " [ 1.15820000e+03 1.91900000e+03]\n", + " [ 1.51660000e+03 1.91900000e+03]\n", + " [ 1.87500000e+03 1.91900000e+03]]\n", + "DEBUG:root:radec2pix: lat: [78.01259544 79.61854981 81.2561548 82.92023352 84.60572556 86.30750292\n", + " 88.02000573 89.72623162 78.01259544 77.8905989 77.5557472 77.02861409\n", + " 76.33783962 75.51523956 74.59210732 73.59715789 89.72623162 88.17123291\n", + " 86.46586111 84.76551164 83.07960166 81.41406813 79.77423864 78.16538766\n", + " 73.59715789 74.60763881 75.5491728 76.39298182 77.10737428 77.65965515\n", + " 78.01977483 78.16538766 78.70852006 80.69871958 82.73128852 84.79686317\n", + " 86.88594315 88.98689611 77.99183548 77.69708601 77.10179122 76.25561048\n", + " 75.21673598 74.0417777 89.11867119 87.04263922 84.95641064 82.89040132\n", + " 80.8558565 78.86257349 74.04815363 75.2440736 76.30818941 77.18330532\n", + " 77.80960312 78.1346569 78.0179859 78.0179859 78.1707132 78.1707132\n", + " 78.68041726 78.36422733 77.72853599 76.83064382 75.73566662 74.50486571\n", + " 80.66353948 80.27068815 79.49543516 78.42701765 77.15572991 75.75689035\n", + " 82.68520532 82.17800874 81.21001267 79.9277617 78.4547664 76.877901\n", + " 84.73149404 84.03535931 82.79194264 81.24820065 79.5578398 77.80619197\n", + " 86.77660248 85.72142555 84.09351686 82.26517071 80.37322779 78.47497463\n", + " 88.68716566 86.88752222 84.86498838 82.8264064 80.80719889 78.82380063]\n", + "DEBUG:root:mm_to_pix: fitpx: [[0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]]\n", + "DEBUG:root:mm_to_pix: fitpx.shape: (96, 2)\n", + "DEBUG:root:optics_fp: sphi: [-0.99998587 -0.99998093 -0.99997285 -0.99995831 -0.99992796 -0.99984669\n", + " -0.99947675 -0.97808354 -0.99998587 -0.98970577 -0.96198477 -0.92093145\n", + " -0.87158484 -0.81855268 -0.76530723 -0.7140899 -0.97808354 -0.17016839\n", + " -0.08762197 -0.05890603 -0.04435211 -0.03556139 -0.02967765 -0.02546394\n", + " -0.7140899 -0.65976656 -0.59269916 -0.51057194 -0.41166757 -0.29578258\n", + " -0.16525108 -0.02546394 -0.99998099 -0.9999716 -0.99995307 -0.99990806\n", + " -0.99974496 -0.99772391 -0.99782396 -0.97307356 -0.92600813 -0.86560828\n", + " -0.80028531 -0.73591205 -0.35953576 -0.10686813 -0.06233133 -0.04397062\n", + " -0.03396069 -0.02766174 -0.69199326 -0.61715575 -0.52083725 -0.39959102\n", + " -0.25315949 -0.08713059 -0.99998321 -0.99998321 -0.02596193 -0.02596193\n", + " -0.99753688 -0.96966873 -0.91739276 -0.85158747 -0.78188909 -0.71454371\n", + " -0.99632781 -0.95568059 -0.88350682 -0.79911576 -0.71620587 -0.64127261\n", + " -0.99395291 -0.92974584 -0.8263215 -0.71882466 -0.6238817 -0.54504838\n", + " -0.98825505 -0.87462092 -0.72355914 -0.59418739 -0.49542716 -0.42124573\n", + " -0.96839146 -0.73470538 -0.53260261 -0.40540407 -0.32392864 -0.26858462\n", + " -0.79207942 -0.34036707 -0.20582312 -0.14662418 -0.11369565 -0.09279187]\n", + "DEBUG:root:optics_fp: rtanth: [31.72889598 27.34254715 22.95622881 18.56996252 14.18379661 9.79786588\n", + " 5.41274207 1.03869565 31.72889598 32.05497925 32.96668106 34.41749464\n", + " 36.342913 38.67211172 41.33689193 44.27670445 1.03869565 4.67736497\n", + " 9.00877953 13.37609754 17.75284128 22.13341982 26.51593264 30.89955671\n", + " 44.27670445 41.24704355 38.47976296 36.03536075 33.98358137 32.39910327\n", + " 31.35285463 30.89955671 29.81652098 24.44065782 19.06487182 13.68925392\n", + " 8.31413013 2.94220985 31.78219953 32.5803988 34.21489906 36.57374743\n", + " 39.52747698 42.9535403 2.33383998 7.53796979 12.88401801 18.24767393\n", + " 23.61694389 28.9887086 42.91616052 39.37153369 36.28003925 33.76636764\n", + " 31.96711857 31.00691067 31.71398377 31.71398377 30.88506563 30.88506563\n", + " 29.88906763 30.73646927 32.46394115 34.94119572 38.021962 41.57228381\n", + " 24.52910914 25.55486988 27.6084825 30.48291307 33.97043457 37.9021848\n", + " 19.17813281 20.47376266 22.98590632 26.36914053 30.33338108 34.67995379\n", + " 13.846556 15.59170589 18.76907627 22.78723124 27.27710291 32.04099765\n", + " 8.57065926 11.17275166 15.2972975 20.02465966 25.01538387 30.13892197\n", + " 3.60389222 8.02260672 13.1734259 18.4531524 23.77606504 29.11848994]\n", + "DEBUG:root:radec2pix: curVec: [[-0.02987895 -0.14550252 0.9889066 ]\n", + " [-0.01441297 -0.12365376 0.99222075]\n", + " [ 0.00151965 -0.10134323 0.99485036]\n", + " [ 0.01783559 -0.07865351 0.99674245]\n", + " [ 0.03445646 -0.05566832 0.99785459]\n", + " [ 0.05130753 -0.03247312 0.99815481]\n", + " [ 0.06831669 -0.00915529 0.99762168]\n", + " [ 0.08541383 0.01419601 0.99624442]\n", + " [-0.02987895 -0.14550252 0.9889066 ]\n", + " [-0.00949815 -0.1629454 0.98658937]\n", + " [ 0.01143282 -0.18052469 0.983504 ]\n", + " [ 0.03281082 -0.19816886 0.97961857]\n", + " [ 0.05453772 -0.21580716 0.97491174]\n", + " [ 0.076519 -0.23336925 0.96937281]\n", + " [ 0.09866254 -0.25078526 0.96300179]\n", + " [ 0.12087814 -0.26798614 0.95580955]\n", + " [ 0.08541383 0.01419601 0.99624442]\n", + " [ 0.10773862 -0.00243247 0.99417628]\n", + " [ 0.13043661 -0.01939697 0.99126689]\n", + " [ 0.15341177 -0.0366296 0.98748322]\n", + " [ 0.17656913 -0.05406237 0.98280242]\n", + " [ 0.1998137 -0.07162633 0.97721244]\n", + " [ 0.22305033 -0.08925151 0.97071248]\n", + " [ 0.24618428 -0.1068673 0.96331339]\n", + " [ 0.12087814 -0.26798614 0.95580955]\n", + " [ 0.13843085 -0.24644382 0.95921965]\n", + " [ 0.15622713 -0.22427541 0.96192184]\n", + " [ 0.17418949 -0.20155822 0.96386322]\n", + " [ 0.19224174 -0.17837253 0.9650007 ]\n", + " [ 0.21030821 -0.1548026 0.96530131]\n", + " [ 0.22831376 -0.13093683 0.96474265]\n", + " [ 0.24618428 -0.1068673 0.96331339]\n", + " [-0.02312943 -0.13609769 0.99042539]\n", + " [-0.00384803 -0.10899862 0.99403445]\n", + " [ 0.01605071 -0.08128781 0.99656142]\n", + " [ 0.03642052 -0.05311884 0.99792381]\n", + " [ 0.0571237 -0.02464906 0.99806278]\n", + " [ 0.07802834 0.00395988 0.99694328]\n", + " [-0.02101474 -0.15301239 0.9880008 ]\n", + " [ 0.00434898 -0.17449114 0.98464914]\n", + " [ 0.03043583 -0.19610374 0.9801107 ]\n", + " [ 0.05706318 -0.21771965 0.9743418 ]\n", + " [ 0.08405685 -0.23920937 0.96732276]\n", + " [ 0.11124809 -0.26044459 0.95905812]\n", + " [ 0.0950366 0.0069115 0.99544979]\n", + " [ 0.12266047 -0.01370374 0.99235408]\n", + " [ 0.15074939 -0.03475604 0.98796085]\n", + " [ 0.17912818 -0.05612033 0.98222381]\n", + " [ 0.20762195 -0.07766968 0.97512079]\n", + " [ 0.23605567 -0.09927497 0.96665516]\n", + " [ 0.12841988 -0.25861687 0.95740569]\n", + " [ 0.15010539 -0.23178335 0.96111646]\n", + " [ 0.1720797 -0.20408611 0.96371025]\n", + " [ 0.19420206 -0.17567161 0.96510365]\n", + " [ 0.21633319 -0.146695 0.965236 ]\n", + " [ 0.23833515 -0.1173206 0.96407066]\n", + " [-0.02975832 -0.14548802 0.98891237]\n", + " [-0.02975832 -0.14548802 0.98891237]\n", + " [ 0.24604465 -0.10688971 0.96334657]\n", + " [ 0.24604465 -0.10688971 0.96334657]\n", + " [-0.01431035 -0.14361428 0.98953027]\n", + " [ 0.01125301 -0.1650833 0.98621543]\n", + " [ 0.03751982 -0.18670451 0.98169939]\n", + " [ 0.06430895 -0.20834738 0.97593838]\n", + " [ 0.09144707 -0.22988214 0.96891261]\n", + " [ 0.11876555 -0.25118001 0.96062654]\n", + " [ 0.00516778 -0.11648242 0.99317931]\n", + " [ 0.03125068 -0.13789356 0.98995392]\n", + " [ 0.05798506 -0.15950933 0.98549201]\n", + " [ 0.08519343 -0.18119938 0.97974939]\n", + " [ 0.11270396 -0.20283344 0.97270572]\n", + " [ 0.14034775 -0.22428156 0.96436523]\n", + " [ 0.02523916 -0.0887224 0.99573657]\n", + " [ 0.05177714 -0.11002941 0.99257879]\n", + " [ 0.07891945 -0.13159401 0.98815724]\n", + " [ 0.10649093 -0.15328651 0.98242706]\n", + " [ 0.13432009 -0.17497655 0.97536727]\n", + " [ 0.16223691 -0.19653351 0.96698178]\n", + " [ 0.04575897 -0.0604875 0.99711954]\n", + " [ 0.07269094 -0.08164305 0.99400726]\n", + " [ 0.10018356 -0.10310957 0.98961188]\n", + " [ 0.1280627 -0.12475843 0.98388784]\n", + " [ 0.1561563 -0.14645977 0.97681357]\n", + " [ 0.18429279 -0.16808276 0.96839266]\n", + " [ 0.06659034 -0.0319351 0.99726921]\n", + " [ 0.09385676 -0.052892 0.99417973]\n", + " [ 0.12164235 -0.07421347 0.98979569]\n", + " [ 0.14977297 -0.09577228 0.984071 ]\n", + " [ 0.17807549 -0.11743955 0.97698366]\n", + " [ 0.20637667 -0.13908485 0.96853708]\n", + " [ 0.0876016 -0.00322727 0.99615036]\n", + " [ 0.11514287 -0.02393952 0.99306043]\n", + " [ 0.14316315 -0.04506993 0.98867235]\n", + " [ 0.1714876 -0.06649287 0.98293983]\n", + " [ 0.1999418 -0.08808086 0.97584068]\n", + " [ 0.22835111 -0.10970435 0.96737827]]\n", + "DEBUG:root:radec2pix: curVec Shape: (96, 3)\n", + "DEBUG:root:radec2pix: fitpx: [[ 2.13550000e+03 -4.99999973e-01]\n", + " [ 2.13550000e+03 2.91928572e+02]\n", + " [ 2.13550000e+03 5.84357143e+02]\n", + " [ 2.13550000e+03 8.76785714e+02]\n", + " [ 2.13550000e+03 1.16921429e+03]\n", + " [ 2.13550000e+03 1.46164286e+03]\n", + " [ 2.13550000e+03 1.75407143e+03]\n", + " [ 2.13550000e+03 2.04650000e+03]\n", + " [ 2.13550000e+03 -4.99999973e-01]\n", + " [ 2.42792857e+03 -4.99999766e-01]\n", + " [ 2.72035714e+03 -5.00000023e-01]\n", + " [ 3.01278571e+03 -4.99999798e-01]\n", + " [ 3.30521429e+03 -5.00000229e-01]\n", + " [ 3.59764286e+03 -5.00000231e-01]\n", + " [ 3.89007143e+03 -4.99999870e-01]\n", + " [ 4.18250000e+03 -4.99999884e-01]\n", + " [ 2.13550000e+03 2.04650000e+03]\n", + " [ 2.42792857e+03 2.04650000e+03]\n", + " [ 2.72035714e+03 2.04650000e+03]\n", + " [ 3.01278571e+03 2.04650000e+03]\n", + " [ 3.30521429e+03 2.04650000e+03]\n", + " [ 3.59764286e+03 2.04650000e+03]\n", + " [ 3.89007143e+03 2.04650000e+03]\n", + " [ 4.18250000e+03 2.04650000e+03]\n", + " [ 4.18250000e+03 -4.99999884e-01]\n", + " [ 4.18250000e+03 2.91928572e+02]\n", + " [ 4.18250000e+03 5.84357143e+02]\n", + " [ 4.18250000e+03 8.76785714e+02]\n", + " [ 4.18250000e+03 1.16921429e+03]\n", + " [ 4.18250000e+03 1.46164286e+03]\n", + " [ 4.18250000e+03 1.75407143e+03]\n", + " [ 4.18250000e+03 2.04650000e+03]\n", + " [ 2.13650000e+03 1.27000000e+02]\n", + " [ 2.13650000e+03 4.85400000e+02]\n", + " [ 2.13650000e+03 8.43800000e+02]\n", + " [ 2.13650000e+03 1.20220000e+03]\n", + " [ 2.13650000e+03 1.56060000e+03]\n", + " [ 2.13650000e+03 1.91900000e+03]\n", + " [ 2.26300000e+03 4.99999770e-01]\n", + " [ 2.62140000e+03 5.00000267e-01]\n", + " [ 2.97980000e+03 4.99999825e-01]\n", + " [ 3.33820000e+03 5.00000071e-01]\n", + " [ 3.69660000e+03 5.00000113e-01]\n", + " [ 4.05500000e+03 5.00000214e-01]\n", + " [ 2.26300000e+03 2.04550000e+03]\n", + " [ 2.62140000e+03 2.04550000e+03]\n", + " [ 2.97980000e+03 2.04550000e+03]\n", + " [ 3.33820000e+03 2.04550000e+03]\n", + " [ 3.69660000e+03 2.04550000e+03]\n", + " [ 4.05500000e+03 2.04550000e+03]\n", + " [ 4.18150000e+03 1.27000000e+02]\n", + " [ 4.18150000e+03 4.85400000e+02]\n", + " [ 4.18150000e+03 8.43800000e+02]\n", + " [ 4.18150000e+03 1.20220000e+03]\n", + " [ 4.18150000e+03 1.56060000e+03]\n", + " [ 4.18150000e+03 1.91900000e+03]\n", + " [ 2.13650000e+03 5.00000284e-01]\n", + " [ 2.13650000e+03 5.00000284e-01]\n", + " [ 4.18150000e+03 2.04550000e+03]\n", + " [ 4.18150000e+03 2.04550000e+03]\n", + " [ 2.26300000e+03 1.27000000e+02]\n", + " [ 2.62140000e+03 1.27000000e+02]\n", + " [ 2.97980000e+03 1.27000000e+02]\n", + " [ 3.33820000e+03 1.27000000e+02]\n", + " [ 3.69660000e+03 1.27000000e+02]\n", + " [ 4.05500000e+03 1.27000000e+02]\n", + " [ 2.26300000e+03 4.85400000e+02]\n", + " [ 2.62140000e+03 4.85400000e+02]\n", + " [ 2.97980000e+03 4.85400000e+02]\n", + " [ 3.33820000e+03 4.85400000e+02]\n", + " [ 3.69660000e+03 4.85400000e+02]\n", + " [ 4.05500000e+03 4.85400000e+02]\n", + " [ 2.26300000e+03 8.43800000e+02]\n", + " [ 2.62140000e+03 8.43800000e+02]\n", + " [ 2.97980000e+03 8.43800000e+02]\n", + " [ 3.33820000e+03 8.43800000e+02]\n", + " [ 3.69660000e+03 8.43800000e+02]\n", + " [ 4.05500000e+03 8.43800000e+02]\n", + " [ 2.26300000e+03 1.20220000e+03]\n", + " [ 2.62140000e+03 1.20220000e+03]\n", + " [ 2.97980000e+03 1.20220000e+03]\n", + " [ 3.33820000e+03 1.20220000e+03]\n", + " [ 3.69660000e+03 1.20220000e+03]\n", + " [ 4.05500000e+03 1.20220000e+03]\n", + " [ 2.26300000e+03 1.56060000e+03]\n", + " [ 2.62140000e+03 1.56060000e+03]\n", + " [ 2.97980000e+03 1.56060000e+03]\n", + " [ 3.33820000e+03 1.56060000e+03]\n", + " [ 3.69660000e+03 1.56060000e+03]\n", + " [ 4.05500000e+03 1.56060000e+03]\n", + " [ 2.26300000e+03 1.91900000e+03]\n", + " [ 2.62140000e+03 1.91900000e+03]\n", + " [ 2.97980000e+03 1.91900000e+03]\n", + " [ 3.33820000e+03 1.91900000e+03]\n", + " [ 3.69660000e+03 1.91900000e+03]\n", + " [ 4.05500000e+03 1.91900000e+03]]\n", + "DEBUG:root:optics_fp: rtanth: [31.72889598 27.34254715 22.95622881 18.56996252 14.18379661 9.79786588\n", + " 5.41274207 1.03869565 31.72889598 32.05497925 32.96668106 34.41749464\n", + " 36.342913 38.67211172 41.33689193 44.27670445 1.03869565 4.67736497\n", + " 9.00877953 13.37609754 17.75284128 22.13341982 26.51593264 30.89955671\n", + " 44.27670445 41.24704355 38.47976296 36.03536075 33.98358137 32.39910327\n", + " 31.35285463 30.89955671 29.81652098 24.44065782 19.06487182 13.68925392\n", + " 8.31413013 2.94220985 31.78219953 32.5803988 34.21489906 36.57374743\n", + " 39.52747698 42.9535403 2.33383998 7.53796979 12.88401801 18.24767393\n", + " 23.61694389 28.9887086 42.91616052 39.37153369 36.28003925 33.76636764\n", + " 31.96711857 31.00691067 31.71398377 31.71398377 30.88506563 30.88506563\n", + " 29.88906763 30.73646927 32.46394115 34.94119572 38.021962 41.57228381\n", + " 24.52910914 25.55486988 27.6084825 30.48291307 33.97043457 37.9021848\n", + " 19.17813281 20.47376266 22.98590632 26.36914053 30.33338108 34.67995379\n", + " 13.846556 15.59170589 18.76907627 22.78723124 27.27710291 32.04099765\n", + " 8.57065926 11.17275166 15.2972975 20.02465966 25.01538387 30.13892197\n", + " 3.60389222 8.02260672 13.1734259 18.4531524 23.77606504 29.11848994]\n", + "DEBUG:root:fitpix2pix: ccdpx: shape: (96, 2)\n", + "DEBUG:root:fitpix2pix: visCut: True\n", + "DEBUG:root:optics_fp: cphi: [-0.0051738 -0.00607178 -0.0073129 -0.00914033 -0.01209791 -0.01770316\n", + " -0.03238875 -0.17057046 -0.0051738 -0.14196195 -0.27109236 -0.38711253\n", + " -0.48729918 -0.57137557 -0.64065601 -0.69718731 -0.17057046 -0.97567733\n", + " -0.99347832 -0.99703634 -0.99831251 -0.99891078 -0.99923847 -0.99943725\n", + " -0.69718731 -0.74844189 -0.80231456 -0.85678989 -0.9085738 -0.95306497\n", + " -0.98492815 -0.99943725 -0.0060359 -0.00745674 -0.00967884 -0.01364603\n", + " -0.02274227 -0.06503966 -0.06534051 -0.22874689 -0.3749438 -0.49775222\n", + " -0.59656384 -0.67413914 -0.89537598 -0.99040776 -0.99671262 -0.99835535\n", + " -0.9990142 -0.99934296 -0.71895916 -0.78374506 -0.85059233 -0.91398049\n", + " -0.96549457 -0.99546704 -0.00564941 -0.00564941 -0.9994203 -0.9994203\n", + " -0.06950599 -0.24249594 -0.39519134 -0.52103162 -0.62020649 -0.69655704\n", + " -0.08478692 -0.29175445 -0.46477551 -0.59730991 -0.69424327 -0.76406532\n", + " -0.10856248 -0.36427233 -0.55834321 -0.69058088 -0.77756 -0.83512289\n", + " -0.15052868 -0.47847897 -0.68390701 -0.79923279 -0.86476566 -0.90397627\n", + " -0.24345642 -0.66792691 -0.83927119 -0.9096075 -0.9430429 -0.96110205\n", + " -0.57961227 -0.93047808 -0.97475473 -0.98719494 -0.99229449 -0.99486127]\n", + "DEBUG:root:radec2pix: xyfp: [[32.23341696 31.55141621]\n", + " [32.23194958 27.16498788]\n", + " [32.2304822 22.77855956]\n", + " [32.22901483 18.39213124]\n", + " [32.22754745 14.00570291]\n", + " [32.22608007 9.61927458]\n", + " [32.22461269 5.23284626]\n", + " [32.2231453 0.84641793]\n", + " [32.23341696 31.55141621]\n", + " [27.84698864 31.5528836 ]\n", + " [23.46056031 31.55435097]\n", + " [19.07413198 31.55581835]\n", + " [14.68770366 31.55728573]\n", + " [10.30127533 31.55875311]\n", + " [ 5.91484701 31.56022049]\n", + " [ 1.52841868 31.56168787]\n", + " [32.2231453 0.84641793]\n", + " [27.83671698 0.84788531]\n", + " [23.45028865 0.84935269]\n", + " [19.06386033 0.85082007]\n", + " [14.677432 0.85228745]\n", + " [10.29100367 0.85375483]\n", + " [ 5.90457535 0.85522221]\n", + " [ 1.51814702 0.85668959]\n", + " [ 1.52841868 31.56168787]\n", + " [ 1.5269513 27.17525955]\n", + " [ 1.52548392 22.78883122]\n", + " [ 1.52401654 18.4024029 ]\n", + " [ 1.52254916 14.01597457]\n", + " [ 1.52108178 9.62954624]\n", + " [ 1.5196144 5.24311792]\n", + " [ 1.51814702 0.85668959]\n", + " [32.21777718 29.63892134]\n", + " [32.21597876 24.26292164]\n", + " [32.21418034 18.88692194]\n", + " [32.21238193 13.51092224]\n", + " [32.21058351 8.13492254]\n", + " [32.20878509 2.75892284]\n", + " [30.32091205 31.53705599]\n", + " [24.94491236 31.53885442]\n", + " [19.56891265 31.54065283]\n", + " [14.19291295 31.54245125]\n", + " [ 8.81691325 31.54424967]\n", + " [ 3.44091356 31.54604808]\n", + " [30.31065043 0.86205771]\n", + " [24.93465073 0.86385613]\n", + " [19.55865103 0.86565455]\n", + " [14.18265134 0.86745297]\n", + " [ 8.80665163 0.86925139]\n", + " [ 3.43065193 0.8710498 ]\n", + " [ 1.5427789 29.64918296]\n", + " [ 1.54098048 24.27318326]\n", + " [ 1.53918206 18.89718357]\n", + " [ 1.53738364 13.52118387]\n", + " [ 1.53558522 8.14518416]\n", + " [ 1.5337868 2.76918446]\n", + " [32.21841195 31.53642123]\n", + " [32.21841195 31.53642123]\n", + " [ 1.53315204 0.87168457]\n", + " [ 1.53315204 0.87168457]\n", + " [30.32027729 29.6395561 ]\n", + " [24.94427759 29.64135452]\n", + " [19.56827789 29.64315294]\n", + " [14.19227819 29.64495136]\n", + " [ 8.81627849 29.64674978]\n", + " [ 3.44027879 29.6485482 ]\n", + " [30.31847887 24.2635564 ]\n", + " [24.94247917 24.26535482]\n", + " [19.56647947 24.26715324]\n", + " [14.19047977 24.26895166]\n", + " [ 8.81448007 24.27075007]\n", + " [ 3.43848037 24.2725485 ]\n", + " [30.31668045 18.8875567 ]\n", + " [24.94068075 18.88935513]\n", + " [19.56468105 18.89115354]\n", + " [14.18868135 18.89295196]\n", + " [ 8.81268165 18.89475038]\n", + " [ 3.43668195 18.89654879]\n", + " [30.31488203 13.51155701]\n", + " [24.93888233 13.51335542]\n", + " [19.56288263 13.51515384]\n", + " [14.18688293 13.51695226]\n", + " [ 8.81088324 13.51875068]\n", + " [ 3.43488354 13.5205491 ]\n", + " [30.31308361 8.13555731]\n", + " [24.93708392 8.13735572]\n", + " [19.56108422 8.13915414]\n", + " [14.18508451 8.14095256]\n", + " [ 8.80908482 8.14275098]\n", + " [ 3.43308512 8.1445494 ]\n", + " [30.31128519 2.75955761]\n", + " [24.93528549 2.76135602]\n", + " [19.5592858 2.76315444]\n", + " [14.18328609 2.76495286]\n", + " [ 8.8072864 2.76675128]\n", + " [ 3.4312867 2.7685497 ]]\n", + "DEBUG:root:optics_fp: sphi: [0.99998662 0.99998157 0.99997326 0.99995823 0.99992682 0.99984329\n", + " 0.99947535 0.98534548 0.99998662 0.98987212 0.96255334 0.92203248\n", + " 0.87323508 0.82068871 0.76782803 0.71688902 0.98534548 0.21921165\n", + " 0.11402118 0.07693204 0.0580701 0.04666103 0.03901907 0.03354371\n", + " 0.71688902 0.66320038 0.59690146 0.51566567 0.41772438 0.30276585\n", + " 0.17296396 0.03354371 0.99998178 0.9999722 0.99995316 0.99990689\n", + " 0.99974136 0.99788268 0.99786303 0.97348593 0.92704754 0.86731928\n", + " 0.80256563 0.73860437 0.44531096 0.13817549 0.08101827 0.0573289\n", + " 0.04439174 0.0362443 0.69505232 0.62108267 0.52582572 0.40575813\n", + " 0.26042318 0.09510716 0.99998404 0.99998404 0.03404492 0.03404492\n", + " 0.99758153 0.97015242 0.91859883 0.85353737 0.7844386 0.71750142\n", + " 0.99639911 0.95649325 0.88542855 0.80201052 0.71974043 0.64513889\n", + " 0.99408963 0.93129247 0.82961007 0.72325518 0.62880875 0.55006341\n", + " 0.98860564 0.87809901 0.72956919 0.60102159 0.50217562 0.42758264\n", + " 0.96991184 0.74422687 0.54371304 0.41546865 0.33267115 0.27619351\n", + " 0.81489239 0.36634758 0.22327834 0.15951848 0.12390179 0.10124753]\n", + "DEBUG:root:optics_fp: cphi: [-0.0051738 -0.00607178 -0.0073129 -0.00914033 -0.01209791 -0.01770316\n", + " -0.03238875 -0.17057046 -0.0051738 -0.14196195 -0.27109236 -0.38711253\n", + " -0.48729918 -0.57137557 -0.64065601 -0.69718731 -0.17057046 -0.97567733\n", + " -0.99347832 -0.99703634 -0.99831251 -0.99891078 -0.99923847 -0.99943725\n", + " -0.69718731 -0.74844189 -0.80231456 -0.85678989 -0.9085738 -0.95306497\n", + " -0.98492815 -0.99943725 -0.0060359 -0.00745674 -0.00967884 -0.01364603\n", + " -0.02274227 -0.06503966 -0.06534051 -0.22874689 -0.3749438 -0.49775222\n", + " -0.59656384 -0.67413914 -0.89537598 -0.99040776 -0.99671262 -0.99835535\n", + " -0.9990142 -0.99934296 -0.71895916 -0.78374506 -0.85059233 -0.91398049\n", + " -0.96549457 -0.99546704 -0.00564941 -0.00564941 -0.9994203 -0.9994203\n", + " -0.06950599 -0.24249594 -0.39519134 -0.52103162 -0.62020649 -0.69655704\n", + " -0.08478692 -0.29175445 -0.46477551 -0.59730991 -0.69424327 -0.76406532\n", + " -0.10856248 -0.36427233 -0.55834321 -0.69058088 -0.77756 -0.83512289\n", + " -0.15052868 -0.47847897 -0.68390701 -0.79923279 -0.86476566 -0.90397627\n", + " -0.24345642 -0.66792691 -0.83927119 -0.9096075 -0.9430429 -0.96110205\n", + " -0.57961227 -0.93047808 -0.97475473 -0.98719494 -0.99229449 -0.99486127]\n", + "DEBUG:root:optics_fp: rtanth: [31.36436077 26.97807037 22.59183361 18.20568928 13.8197254 9.43419362\n", + " 5.05021974 0.69781153 31.36436077 31.70156673 32.63030877 34.10229142\n", + " 36.05103355 38.40402676 41.09188526 44.05335752 0.69781153 4.66402697\n", + " 9.02778296 13.40634529 17.78878395 22.17280059 26.55761376 30.94288484\n", + " 44.05335752 41.04621131 38.30621526 35.89459992 33.88155828 32.34160155\n", + " 31.34453543 30.94288484 29.45203736 24.07626653 18.70062748 13.32527965\n", + " 7.95081375 2.58274138 31.42169962 32.23771351 33.8971959 36.28460223\n", + " 39.26738572 42.72102005 2.2467047 7.54947995 12.91295338 18.28378612\n", + " 23.65696634 29.03119064 42.70202201 39.18809499 36.13521339 33.66902518\n", + " 31.92578297 31.02758019 31.34947523 31.34947523 30.92821126 30.92821126\n", + " 29.52890302 30.39577404 32.15047118 34.65840831 37.76983569 41.34874196\n", + " 24.17023416 25.22195839 27.31111317 30.22332497 33.74617895 37.70891894\n", + " 18.82145258 20.1542562 22.71439544 26.14376082 30.14716324 34.52548949\n", + " 13.49432055 15.2984853 18.54166578 22.61295734 27.14223759 31.93523187\n", + " 8.23098104 10.94056736 15.14746618 19.92481371 24.9470123 30.09171641\n", + " 3.34726194 7.94676841 13.14917661 18.45137705 23.78673027 29.13702987]\n", + "DEBUG:root:radec2pix: camVec: [[0.20581047 0.20764708 0.20921111 0.21050368 0.21152432 0.2122716\n", + " 0.21274377 0.21293946 0.20581047 0.17940008 0.15228099 0.12456525\n", + " 0.09636347 0.06778617 0.03894463 0.00995116 0.21293946 0.18558556\n", + " 0.15752187 0.12885256 0.09968382 0.07012532 0.04029051 0.01029607\n", + " 0.00995116 0.01003858 0.01011374 0.01017639 0.01022623 0.01026295\n", + " 0.01028629 0.01029607 0.20655553 0.20862193 0.21028039 0.21153069\n", + " 0.21237025 0.212796 0.1943962 0.16153559 0.12772204 0.0931597\n", + " 0.05805212 0.02260459 0.2011068 0.16709142 0.1321133 0.09636698\n", + " 0.06005439 0.02338579 0.01009044 0.01019035 0.01027142 0.0103331\n", + " 0.01037483 0.01039617 0.20572824 0.20572824 0.01039877 0.01039877\n", + " 0.19517474 0.1621771 0.12822694 0.09352723 0.05828102 0.02269376\n", + " 0.19712067 0.1637837 0.12949375 0.09445078 0.05885684 0.0229182\n", + " 0.19868404 0.16507817 0.13051704 0.09519827 0.05932353 0.02310025\n", + " 0.19986372 0.16605732 0.13129265 0.09576573 0.05967819 0.02323871\n", + " 0.20065641 0.16671646 0.13181555 0.09614872 0.05991775 0.0233323\n", + " 0.20105858 0.16705125 0.13208139 0.09634357 0.06003972 0.02338002]\n", + " [0.20196806 0.17549093 0.14832034 0.12056829 0.0923455 0.06376263\n", + " 0.0349311 0.00596325 0.20196806 0.20380697 0.20537849 0.20668384\n", + " 0.20772258 0.20849323 0.20899395 0.20922323 0.00596325 0.00601646\n", + " 0.00606233 0.00610071 0.00613144 0.00615431 0.00616917 0.00617591\n", + " 0.20922323 0.18176716 0.15361557 0.12487279 0.09564544 0.0660437\n", + " 0.03618151 0.00617591 0.19052281 0.15759064 0.12372836 0.08914025\n", + " 0.05403012 0.01860347 0.20271324 0.2047859 0.20645854 0.207731\n", + " 0.20860063 0.20906415 0.00608691 0.00614821 0.00619816 0.00623643\n", + " 0.00626269 0.00627666 0.19734414 0.16321317 0.12814101 0.0923229\n", + " 0.05596168 0.01926848 0.20188558 0.20188558 0.00627861 0.00627861\n", + " 0.19130075 0.19325024 0.19482509 0.19602426 0.19684438 0.19728171\n", + " 0.15822879 0.1598311 0.16112922 0.16212009 0.16279899 0.16316141\n", + " 0.12422708 0.12548158 0.12650047 0.12727979 0.12781451 0.12810021\n", + " 0.08949878 0.09040196 0.09113695 0.09169995 0.09208666 0.09229337\n", + " 0.05424725 0.05479478 0.05524091 0.05558298 0.05581806 0.05594375\n", + " 0.01867818 0.01886665 0.0190203 0.01913813 0.01921909 0.01926233]\n", + " [0.95752334 0.96233343 0.96655667 0.97012962 0.9730004 0.97512825\n", + " 0.97648344 0.9770472 0.95752334 0.96243355 0.96676273 0.97044592\n", + " 0.97342972 0.97567188 0.97714116 0.97781727 0.9770472 0.98260969\n", + " 0.98749689 0.991645 0.99500027 0.99751921 0.99916896 0.99992792\n", + " 0.97781727 0.98329036 0.98807893 0.99212057 0.99536294 0.99776395\n", + " 0.99929229 0.99992792 0.95970614 0.96521608 0.9697801 0.97329789\n", + " 0.97569443 0.97691953 0.95974864 0.96538541 0.97008348 0.97373975\n", + " 0.97627646 0.97764064 0.97955041 0.98592224 0.99121524 0.99532633\n", + " 0.99817546 0.99970681 0.98028234 0.9865382 0.99170277 0.9956755\n", + " 0.99837901 0.99976029 0.95755841 0.95755841 0.99992622 0.99992622\n", + " 0.96193079 0.96765331 0.9724202 0.97612865 0.97870098 0.98008414\n", + " 0.96752627 0.97346234 0.97840112 0.98224036 0.98490221 0.98633316\n", + " 0.97215857 0.97826559 0.98334273 0.98728777 0.99002231 0.99149217\n", + " 0.97572766 0.98196357 0.98714553 0.99117105 0.99396105 0.99546064\n", + " 0.9781586 0.98448116 0.98973385 0.99381384 0.99664146 0.99816126\n", + " 0.97940113 0.98576768 0.99105637 0.99516413 0.99801095 0.99954106]]\n", + "DEBUG:root:radec2pix: camVec Shape: (3, 96)\n", + "DEBUG:root:radec2pix: ccdpx: [[-4.44999999e+01 -4.99999873e-01]\n", + " [-4.44999998e+01 2.91928572e+02]\n", + " [-4.44999998e+01 5.84357143e+02]\n", + " [-4.45000002e+01 8.76785714e+02]\n", + " [-4.45000003e+01 1.16921429e+03]\n", + " [-4.45000002e+01 1.46164286e+03]\n", + " [-4.45000002e+01 1.75407143e+03]\n", + " [-4.45000000e+01 2.04650000e+03]\n", + " [-4.44999999e+01 -4.99999873e-01]\n", + " [ 2.47928571e+02 -5.00000280e-01]\n", + " [ 5.40357143e+02 -5.00000000e-01]\n", + " [ 8.32785714e+02 -4.99999974e-01]\n", + " [ 1.12521429e+03 -4.99999987e-01]\n", + " [ 1.41764286e+03 -4.99999863e-01]\n", + " [ 1.71007143e+03 -5.00000138e-01]\n", + " [ 2.00250000e+03 -4.99999700e-01]\n", + " [-4.45000000e+01 2.04650000e+03]\n", + " [ 2.47928571e+02 2.04650000e+03]\n", + " [ 5.40357143e+02 2.04650000e+03]\n", + " [ 8.32785714e+02 2.04650000e+03]\n", + " [ 1.12521429e+03 2.04650000e+03]\n", + " [ 1.41764286e+03 2.04650000e+03]\n", + " [ 1.71007143e+03 2.04650000e+03]\n", + " [ 2.00250000e+03 2.04650000e+03]\n", + " [ 2.00250000e+03 -4.99999700e-01]\n", + " [ 2.00250000e+03 2.91928571e+02]\n", + " [ 2.00250000e+03 5.84357143e+02]\n", + " [ 2.00250000e+03 8.76785714e+02]\n", + " [ 2.00250000e+03 1.16921429e+03]\n", + " [ 2.00250000e+03 1.46164286e+03]\n", + " [ 2.00250000e+03 1.75407143e+03]\n", + " [ 2.00250000e+03 2.04650000e+03]\n", + " [-4.35000000e+01 1.27000000e+02]\n", + " [-4.35000002e+01 4.85400000e+02]\n", + " [-4.34999999e+01 8.43800000e+02]\n", + " [-4.35000003e+01 1.20220000e+03]\n", + " [-4.35000000e+01 1.56060000e+03]\n", + " [-4.35000001e+01 1.91900000e+03]\n", + " [ 8.30000001e+01 5.00000148e-01]\n", + " [ 4.41400000e+02 4.99999823e-01]\n", + " [ 7.99800000e+02 4.99999939e-01]\n", + " [ 1.15820000e+03 5.00000006e-01]\n", + " [ 1.51660000e+03 5.00000232e-01]\n", + " [ 1.87500000e+03 5.00000256e-01]\n", + " [ 8.29999998e+01 2.04550000e+03]\n", + " [ 4.41400000e+02 2.04550000e+03]\n", + " [ 7.99800000e+02 2.04550000e+03]\n", + " [ 1.15820000e+03 2.04550000e+03]\n", + " [ 1.51660000e+03 2.04550000e+03]\n", + " [ 1.87500000e+03 2.04550000e+03]\n", + " [ 2.00150000e+03 1.27000000e+02]\n", + " [ 2.00150000e+03 4.85400000e+02]\n", + " [ 2.00150000e+03 8.43800000e+02]\n", + " [ 2.00150000e+03 1.20220000e+03]\n", + " [ 2.00150000e+03 1.56060000e+03]\n", + " [ 2.00150000e+03 1.91900000e+03]\n", + " [-4.35000003e+01 4.99999725e-01]\n", + " [-4.35000003e+01 4.99999725e-01]\n", + " [ 2.00150000e+03 2.04550000e+03]\n", + " [ 2.00150000e+03 2.04550000e+03]\n", + " [ 8.30000000e+01 1.27000000e+02]\n", + " [ 4.41400000e+02 1.27000000e+02]\n", + " [ 7.99800000e+02 1.27000000e+02]\n", + " [ 1.15820000e+03 1.27000000e+02]\n", + " [ 1.51660000e+03 1.27000000e+02]\n", + " [ 1.87500000e+03 1.27000000e+02]\n", + " [ 8.30000001e+01 4.85400000e+02]\n", + " [ 4.41400000e+02 4.85400000e+02]\n", + " [ 7.99800000e+02 4.85400000e+02]\n", + " [ 1.15820000e+03 4.85400000e+02]\n", + " [ 1.51660000e+03 4.85400000e+02]\n", + " [ 1.87500000e+03 4.85400000e+02]\n", + " [ 8.30000001e+01 8.43800000e+02]\n", + " [ 4.41400000e+02 8.43800000e+02]\n", + " [ 7.99800000e+02 8.43800000e+02]\n", + " [ 1.15820000e+03 8.43800000e+02]\n", + " [ 1.51660000e+03 8.43800000e+02]\n", + " [ 1.87500000e+03 8.43800000e+02]\n", + " [ 8.29999999e+01 1.20220000e+03]\n", + " [ 4.41400000e+02 1.20220000e+03]\n", + " [ 7.99800000e+02 1.20220000e+03]\n", + " [ 1.15820000e+03 1.20220000e+03]\n", + " [ 1.51660000e+03 1.20220000e+03]\n", + " [ 1.87500000e+03 1.20220000e+03]\n", + " [ 8.30000000e+01 1.56060000e+03]\n", + " [ 4.41400000e+02 1.56060000e+03]\n", + " [ 7.99800000e+02 1.56060000e+03]\n", + " [ 1.15820000e+03 1.56060000e+03]\n", + " [ 1.51660000e+03 1.56060000e+03]\n", + " [ 1.87500000e+03 1.56060000e+03]\n", + " [ 8.30000003e+01 1.91900000e+03]\n", + " [ 4.41400000e+02 1.91900000e+03]\n", + " [ 7.99800000e+02 1.91900000e+03]\n", + " [ 1.15820000e+03 1.91900000e+03]\n", + " [ 1.51660000e+03 1.91900000e+03]\n", + " [ 1.87500000e+03 1.91900000e+03]]\n", + "DEBUG:root:optics_fp: cphi: [0.00736113 0.00855795 0.01021949 0.01268159 0.01670634 0.02447236\n", + " 0.04571623 0.33085868 0.00736113 0.14564913 0.27593163 0.39264701\n", + " 0.49309519 0.57710146 0.64609955 0.70223653 0.33085868 0.98998261\n", + " 0.99733613 0.99879292 0.99931459 0.99955889 0.99969254 0.99977352\n", + " 0.70223653 0.7536841 0.80759419 0.86185323 0.91305945 0.9565351\n", + " 0.98696237 0.99977352 0.00834839 0.01021242 0.01314806 0.01845192\n", + " 0.03092476 0.09520001 0.06821327 0.23324784 0.38042607 0.50355732\n", + " 0.60221419 0.67936994 0.95400922 0.99601258 0.99863886 0.99932131\n", + " 0.99959465 0.99973085 0.72410803 0.78903751 0.85569931 0.91837755\n", + " 0.96852369 0.99656102 0.0078431 0.0078431 0.99976286 0.99976286\n", + " 0.07258573 0.24738232 0.40109449 0.52718454 0.6260916 0.70191681\n", + " 0.08867837 0.2981282 0.47216592 0.60454556 0.70074236 0.76966876\n", + " 0.11387947 0.37309127 0.56771826 0.69888097 0.78439808 0.84063622\n", + " 0.15883549 0.49151121 0.69548104 0.80800475 0.87123904 0.90881999\n", + " 0.26040359 0.68729315 0.85132238 0.9170162 0.94790417 0.96449723\n", + " 0.6403374 0.94621821 0.98069844 0.99024463 0.99414155 0.99609937]\n", + "DEBUG:root:make_az_asym: xyp: [[ 0.173161 -31.45819714]\n", + " [ 0.17304708 -27.07176857]\n", + " [ 0.17293316 -22.68534 ]\n", + " [ 0.17281925 -18.29891143]\n", + " [ 0.17270533 -13.91248287]\n", + " [ 0.17259141 -9.52605429]\n", + " [ 0.17247749 -5.13962573]\n", + " [ 0.17236358 -0.75319715]\n", + " [ 0.173161 -31.45819714]\n", + " [ 4.55958957 -31.45808322]\n", + " [ 8.94601814 -31.45796931]\n", + " [ 13.33244671 -31.45785538]\n", + " [ 17.71887528 -31.45774147]\n", + " [ 22.10530385 -31.45762756]\n", + " [ 26.49173242 -31.45751363]\n", + " [ 30.87816099 -31.45739971]\n", + " [ 0.17236358 -0.75319715]\n", + " [ 4.55879215 -0.75308323]\n", + " [ 8.94522072 -0.75296932]\n", + " [ 13.33164929 -0.7528554 ]\n", + " [ 17.71807786 -0.75274148]\n", + " [ 22.10450643 -0.75262756]\n", + " [ 26.490935 -0.75251364]\n", + " [ 30.87736356 -0.75239973]\n", + " [ 30.87816099 -31.45739971]\n", + " [ 30.87804707 -27.07097114]\n", + " [ 30.87793315 -22.68454257]\n", + " [ 30.87781924 -18.29811401]\n", + " [ 30.87770532 -13.91168544]\n", + " [ 30.87759141 -9.52525687]\n", + " [ 30.87747749 -5.1388283 ]\n", + " [ 30.87736356 -0.75239973]\n", + " [ 0.18811133 -29.54569675]\n", + " [ 0.18797171 -24.16969676]\n", + " [ 0.1878321 -18.79369675]\n", + " [ 0.18769248 -13.41769676]\n", + " [ 0.18755286 -8.04169676]\n", + " [ 0.18741324 -2.66569676]\n", + " [ 2.08566061 -31.44314748]\n", + " [ 7.46166061 -31.44300785]\n", + " [ 12.83766061 -31.44286824]\n", + " [ 18.2136606 -31.44272862]\n", + " [ 23.5896606 -31.442589 ]\n", + " [ 28.9656606 -31.44244938]\n", + " [ 2.08486397 -0.76814748]\n", + " [ 7.46086396 -0.76800786]\n", + " [ 12.83686396 -0.76786825]\n", + " [ 18.21286396 -0.76772863]\n", + " [ 23.58886395 -0.76758901]\n", + " [ 28.96486395 -0.7674494 ]\n", + " [ 30.86311132 -29.54490011]\n", + " [ 30.86297171 -24.16890011]\n", + " [ 30.86283209 -18.79290011]\n", + " [ 30.86269247 -13.41690011]\n", + " [ 30.86255285 -8.04090011]\n", + " [ 30.86241323 -2.66490012]\n", + " [ 0.18816061 -31.44319675]\n", + " [ 0.18816061 -31.44319675]\n", + " [ 30.86236396 -0.76740012]\n", + " [ 30.86236396 -0.76740012]\n", + " [ 2.08561133 -29.54564748]\n", + " [ 7.46161133 -29.54550785]\n", + " [ 12.83761133 -29.54536824]\n", + " [ 18.21361133 -29.54522862]\n", + " [ 23.58961132 -29.545089 ]\n", + " [ 28.96561132 -29.54494938]\n", + " [ 2.08547171 -24.16964747]\n", + " [ 7.46147171 -24.16950786]\n", + " [ 12.83747171 -24.16936824]\n", + " [ 18.21347171 -24.16922862]\n", + " [ 23.58947171 -24.16908901]\n", + " [ 28.9654717 -24.16894939]\n", + " [ 2.0853321 -18.79364747]\n", + " [ 7.46133209 -18.79350785]\n", + " [ 12.83733209 -18.79336824]\n", + " [ 18.21333209 -18.79322862]\n", + " [ 23.58933209 -18.79308901]\n", + " [ 28.96533209 -18.79294939]\n", + " [ 2.08519248 -13.41764748]\n", + " [ 7.46119248 -13.41750786]\n", + " [ 12.83719247 -13.41736824]\n", + " [ 18.21319248 -13.41722863]\n", + " [ 23.58919247 -13.41708901]\n", + " [ 28.96519247 -13.41694939]\n", + " [ 2.08505286 -8.04164748]\n", + " [ 7.46105286 -8.04150786]\n", + " [ 12.83705286 -8.04136825]\n", + " [ 18.21305286 -8.04122863]\n", + " [ 23.58905286 -8.04108901]\n", + " [ 28.96505285 -8.04094939]\n", + " [ 2.08491324 -2.66564748]\n", + " [ 7.46091324 -2.66550786]\n", + " [ 12.83691324 -2.66536825]\n", + " [ 18.21291324 -2.66522863]\n", + " [ 23.58891323 -2.66508901]\n", + " [ 28.96491324 -2.66494939]]\n", + "DEBUG:root:optics_fp: xyfp: [[ 0.16415906 -31.72847131]\n", + " [ 0.16601788 -27.34204313]\n", + " [ 0.1678767 -22.95561497]\n", + " [ 0.16973552 -18.56918678]\n", + " [ 0.17159434 -14.1827586 ]\n", + " [ 0.17345315 -9.79633043]\n", + " [ 0.17531197 -5.40990225]\n", + " [ 0.17717079 -1.02347407]\n", + " [ 0.16415906 -31.72847131]\n", + " [ 4.55058724 -31.73033014]\n", + " [ 8.93701541 -31.73218895]\n", + " [ 13.32344359 -31.73404778]\n", + " [ 17.70987177 -31.73590659]\n", + " [ 22.09629995 -31.73776541]\n", + " [ 26.48272812 -31.73962422]\n", + " [ 30.8691563 -31.74148305]\n", + " [ 0.17717079 -1.02347407]\n", + " [ 4.56359897 -1.02533289]\n", + " [ 8.95002714 -1.02719171]\n", + " [ 13.33645532 -1.02905053]\n", + " [ 17.7228835 -1.03090935]\n", + " [ 22.10931168 -1.03276817]\n", + " [ 26.49573986 -1.03462699]\n", + " [ 30.88216803 -1.0364858 ]\n", + " [ 30.8691563 -31.74148305]\n", + " [ 30.87101512 -27.35505487]\n", + " [ 30.87287394 -22.96862669]\n", + " [ 30.87473276 -18.58219851]\n", + " [ 30.87659158 -14.19577034]\n", + " [ 30.8784504 -9.80934216]\n", + " [ 30.88030922 -5.42291398]\n", + " [ 30.88216803 -1.0364858 ]\n", + " [ 0.17996951 -29.81597784]\n", + " [ 0.18224768 -24.43997833]\n", + " [ 0.18452584 -19.06397881]\n", + " [ 0.18680401 -13.6879793 ]\n", + " [ 0.18908217 -8.31197977]\n", + " [ 0.19136034 -2.93598025]\n", + " [ 2.07666524 -31.71428177]\n", + " [ 7.45266476 -31.71655993]\n", + " [ 12.82866428 -31.7188381 ]\n", + " [ 18.2046638 -31.72111627]\n", + " [ 23.58066331 -31.72339443]\n", + " [ 28.95666283 -31.7256726 ]\n", + " [ 2.08966426 -1.03928452]\n", + " [ 7.46566378 -1.04156269]\n", + " [ 12.8416633 -1.04384085]\n", + " [ 18.21766282 -1.04611902]\n", + " [ 23.59366233 -1.04839718]\n", + " [ 28.96966185 -1.05067535]\n", + " [ 30.85496675 -29.82897686]\n", + " [ 30.85724492 -24.45297735]\n", + " [ 30.85952308 -19.07697783]\n", + " [ 30.86180126 -13.70097831]\n", + " [ 30.86407941 -8.32497879]\n", + " [ 30.86635759 -2.94897928]\n", + " [ 0.17916541 -31.71347767]\n", + " [ 0.17916541 -31.71347767]\n", + " [ 30.86716168 -1.05147945]\n", + " [ 30.86716168 -1.05147945]\n", + " [ 2.07746934 -29.81678193]\n", + " [ 7.45346886 -29.8190601 ]\n", + " [ 12.82946837 -29.82133827]\n", + " [ 18.20546789 -29.82361643]\n", + " [ 23.58146741 -29.82589461]\n", + " [ 28.95746693 -29.82817277]\n", + " [ 2.07974751 -24.44078242]\n", + " [ 7.45574702 -24.44306058]\n", + " [ 12.83174654 -24.44533875]\n", + " [ 18.20774606 -24.44761692]\n", + " [ 23.58374558 -24.44989508]\n", + " [ 28.95974509 -24.45217325]\n", + " [ 2.08202567 -19.0647829 ]\n", + " [ 7.45802519 -19.06706107]\n", + " [ 12.83402471 -19.06933924]\n", + " [ 18.21002422 -19.0716174 ]\n", + " [ 23.58602374 -19.07389557]\n", + " [ 28.96202325 -19.07617373]\n", + " [ 2.08430384 -13.68878339]\n", + " [ 7.46030335 -13.69106155]\n", + " [ 12.83630287 -13.69333972]\n", + " [ 18.21230239 -13.69561789]\n", + " [ 23.58830191 -13.69789605]\n", + " [ 28.96430143 -13.70017422]\n", + " [ 2.086582 -8.31278387]\n", + " [ 7.46258152 -8.31506203]\n", + " [ 12.83858103 -8.3173402 ]\n", + " [ 18.21458055 -8.31961837]\n", + " [ 23.59058007 -8.32189653]\n", + " [ 28.96657959 -8.3241747 ]\n", + " [ 2.08886017 -2.93678435]\n", + " [ 7.46485969 -2.93906252]\n", + " [ 12.8408592 -2.94134068]\n", + " [ 18.21685872 -2.94361885]\n", + " [ 23.59285824 -2.94589701]\n", + " [ 28.96885776 -2.94817518]]\n", + "DEBUG:root:optics_fp: xyfp shape: (96, 2)\n", + "DEBUG:root:make_az_asym: xyp: shape: (96, 2)\n", + "DEBUG:root:optics_fp: sphi: [-0.99997291 -0.99996338 -0.99994778 -0.99991959 -0.99986044 -0.99970051\n", + " -0.99895447 -0.94368031 -0.99997291 -0.98933631 -0.96117727 -0.91968926\n", + " -0.86997536 -0.81667246 -0.76325315 -0.71194371 -0.94368031 -0.14118936\n", + " -0.07294272 -0.04911935 -0.03701833 -0.02969904 -0.02479556 -0.0212815\n", + " -0.71194371 -0.65723685 -0.5897386 -0.50715777 -0.40782648 -0.29161723\n", + " -0.16095117 -0.0212815 -0.99996515 -0.99994785 -0.99991356 -0.99982975\n", + " -0.99952172 -0.99545817 -0.99767076 -0.97241732 -0.92481134 -0.86396182\n", + " -0.79833456 -0.73379594 -0.29977727 -0.0892129 -0.05215778 -0.03683652\n", + " -0.02846988 -0.02319957 -0.68968657 -0.61434502 -0.51747338 -0.39570528\n", + " -0.24892141 -0.08286212 -0.99996924 -0.99996924 -0.02177659 -0.02177659\n", + " -0.99736218 -0.96891795 -0.91603668 -0.84975082 -0.77974951 -0.71225894\n", + " -0.99606031 -0.95452584 -0.88150969 -0.79657056 -0.71341443 -0.63844342\n", + " -0.99349457 -0.92779465 -0.82322292 -0.71523799 -0.62025773 -0.54160017\n", + " -0.98730506 -0.87087125 -0.71854445 -0.58917597 -0.49085898 -0.41718848\n", + " -0.96549986 -0.72638015 -0.52464293 -0.39884995 -0.31855562 -0.26409298\n", + " -0.76809376 -0.32352912 -0.19552639 -0.13933979 -0.10808594 -0.08823861]\n", + "DEBUG:root:optics_fp: xyfp: [[ -0.167405 31.491388 ]\n", + " [ -0.167405 27.10495943]\n", + " [ -0.167405 22.71853086]\n", + " [ -0.167405 18.33210229]\n", + " [ -0.167405 13.94567372]\n", + " [ -0.167405 9.55924515]\n", + " [ -0.167405 5.17281657]\n", + " [ -0.167405 0.786388 ]\n", + " [ -0.167405 31.491388 ]\n", + " [ -4.55383357 31.491388 ]\n", + " [ -8.94026214 31.491388 ]\n", + " [-13.32669071 31.491388 ]\n", + " [-17.71311928 31.491388 ]\n", + " [-22.09954786 31.491388 ]\n", + " [-26.48597643 31.491388 ]\n", + " [-30.872405 31.491388 ]\n", + " [ -0.167405 0.786388 ]\n", + " [ -4.55383357 0.786388 ]\n", + " [ -8.94026214 0.786388 ]\n", + " [-13.32669071 0.786388 ]\n", + " [-17.71311929 0.786388 ]\n", + " [-22.09954786 0.786388 ]\n", + " [-26.48597643 0.786388 ]\n", + " [-30.872405 0.786388 ]\n", + " [-30.872405 31.491388 ]\n", + " [-30.872405 27.10495943]\n", + " [-30.872405 22.71853086]\n", + " [-30.872405 18.33210229]\n", + " [-30.872405 13.94567371]\n", + " [-30.872405 9.55924514]\n", + " [-30.872405 5.17281657]\n", + " [-30.872405 0.786388 ]\n", + " [ -0.182405 29.578888 ]\n", + " [ -0.182405 24.202888 ]\n", + " [ -0.182405 18.826888 ]\n", + " [ -0.182405 13.450888 ]\n", + " [ -0.182405 8.074888 ]\n", + " [ -0.182405 2.698888 ]\n", + " [ -2.079905 31.476388 ]\n", + " [ -7.455905 31.476388 ]\n", + " [-12.831905 31.476388 ]\n", + " [-18.207905 31.476388 ]\n", + " [-23.583905 31.476388 ]\n", + " [-28.959905 31.476388 ]\n", + " [ -2.079905 0.801388 ]\n", + " [ -7.455905 0.801388 ]\n", + " [-12.831905 0.801388 ]\n", + " [-18.207905 0.801388 ]\n", + " [-23.583905 0.801388 ]\n", + " [-28.959905 0.801388 ]\n", + " [-30.857405 29.578888 ]\n", + " [-30.857405 24.202888 ]\n", + " [-30.857405 18.826888 ]\n", + " [-30.857405 13.450888 ]\n", + " [-30.857405 8.074888 ]\n", + " [-30.857405 2.698888 ]\n", + " [ -0.182405 31.476388 ]\n", + " [ -0.182405 31.476388 ]\n", + " [-30.857405 0.801388 ]\n", + " [-30.857405 0.801388 ]\n", + " [ -2.079905 29.578888 ]\n", + " [ -7.455905 29.578888 ]\n", + " [-12.831905 29.578888 ]\n", + " [-18.207905 29.578888 ]\n", + " [-23.583905 29.578888 ]\n", + " [-28.959905 29.578888 ]\n", + " [ -2.079905 24.202888 ]\n", + " [ -7.455905 24.202888 ]\n", + " [-12.831905 24.202888 ]\n", + " [-18.207905 24.202888 ]\n", + " [-23.583905 24.202888 ]\n", + " [-28.959905 24.202888 ]\n", + " [ -2.079905 18.826888 ]\n", + " [ -7.455905 18.826888 ]\n", + " [-12.831905 18.826888 ]\n", + " [-18.207905 18.826888 ]\n", + " [-23.583905 18.826888 ]\n", + " [-28.959905 18.826888 ]\n", + " [ -2.079905 13.450888 ]\n", + " [ -7.455905 13.450888 ]\n", + " [-12.831905 13.450888 ]\n", + " [-18.207905 13.450888 ]\n", + " [-23.583905 13.450888 ]\n", + " [-28.959905 13.450888 ]\n", + " [ -2.079905 8.074888 ]\n", + " [ -7.455905 8.074888 ]\n", + " [-12.831905 8.074888 ]\n", + " [-18.20790499 8.074888 ]\n", + " [-23.583905 8.074888 ]\n", + " [-28.959905 8.074888 ]\n", + " [ -2.079905 2.698888 ]\n", + " [ -7.455905 2.698888 ]\n", + " [-12.831905 2.698888 ]\n", + " [-18.207905 2.698888 ]\n", + " [-23.583905 2.698888 ]\n", + " [-28.959905 2.698888 ]]\n", + "DEBUG:root:optics_fp: xyfp shape: (96, 2)\n", + "DEBUG:root:radec2pix: fitpx: [[4271.49999987 4155.49999987]\n", + " [4271.49999978 3863.07142838]\n", + " [4271.49999978 3570.64285699]\n", + " [4271.50000021 3278.21428583]\n", + " [4271.50000028 2985.78571441]\n", + " [4271.50000021 2693.35714292]\n", + " [4271.50000016 2400.92857146]\n", + " [4271.5 2108.5 ]\n", + " [4271.49999987 4155.49999987]\n", + " [3979.07142882 4155.50000028]\n", + " [3686.64285714 4155.5 ]\n", + " [3394.2142857 4155.49999997]\n", + " [3101.78571428 4155.49999999]\n", + " [2809.35714281 4155.49999986]\n", + " [2516.92857145 4155.50000014]\n", + " [2224.49999999 4155.4999997 ]\n", + " [4271.5 2108.5 ]\n", + " [3979.0714288 2108.50000001]\n", + " [3686.64285693 2108.49999999]\n", + " [3394.21428614 2108.50000002]\n", + " [3101.7857146 2108.50000002]\n", + " [2809.35714263 2108.49999998]\n", + " [2516.92857131 2108.49999998]\n", + " [2224.49999992 2108.49999995]\n", + " [2224.49999999 4155.4999997 ]\n", + " [2224.50000001 3863.07142868]\n", + " [2224.5 3570.64285711]\n", + " [2224.50000002 3278.21428594]\n", + " [2224.50000001 2985.78571436]\n", + " [2224.49999998 2693.35714271]\n", + " [2224.50000001 2400.92857146]\n", + " [2224.49999992 2108.49999995]\n", + " [4270.5 4028. ]\n", + " [4270.50000018 3669.60000013]\n", + " [4270.49999988 3311.19999993]\n", + " [4270.50000028 2952.80000012]\n", + " [4270.5 2594.4 ]\n", + " [4270.50000006 2236.00000001]\n", + " [4143.99999986 4154.49999985]\n", + " [3785.60000014 4154.50000018]\n", + " [3427.20000004 4154.50000006]\n", + " [3068.8 4154.49999999]\n", + " [2710.39999994 4154.49999977]\n", + " [2351.99999997 4154.49999974]\n", + " [4144.00000019 2109.50000001]\n", + " [3785.59999998 2109.5 ]\n", + " [3427.19999968 2109.49999999]\n", + " [3068.80000035 2109.50000002]\n", + " [2710.39999998 2109.5 ]\n", + " [2351.99999973 2109.49999993]\n", + " [2225.50000001 4028.00000029]\n", + " [2225.50000001 3669.60000014]\n", + " [2225.50000002 3311.20000027]\n", + " [2225.50000003 2952.80000024]\n", + " [2225.49999999 2594.39999997]\n", + " [2225.49999991 2235.99999983]\n", + " [4270.50000028 4154.50000027]\n", + " [4270.50000028 4154.50000027]\n", + " [2225.50000021 2109.50000012]\n", + " [2225.50000021 2109.50000012]\n", + " [4143.99999997 4027.99999997]\n", + " [3785.60000006 4028.00000007]\n", + " [3427.20000002 4028.00000003]\n", + " [3068.8 4028.00000001]\n", + " [2710.40000007 4028.00000025]\n", + " [2352. 4028.00000001]\n", + " [4143.99999988 3669.5999999 ]\n", + " [3785.59999992 3669.59999992]\n", + " [3427.20000003 3669.60000003]\n", + " [3068.79999996 3669.59999994]\n", + " [2710.39999994 3669.59999984]\n", + " [2352.00000003 3669.60000024]\n", + " [4143.99999986 3311.19999992]\n", + " [3785.60000024 3311.20000018]\n", + " [3427.19999985 3311.19999985]\n", + " [3068.80000018 3311.20000023]\n", + " [2710.39999997 3311.19999993]\n", + " [2351.99999998 3311.19999989]\n", + " [4144.00000009 2952.80000004]\n", + " [3785.60000017 2952.80000009]\n", + " [3427.19999999 2952.79999999]\n", + " [3068.79999994 2952.79999994]\n", + " [2710.40000012 2952.80000019]\n", + " [2351.99999999 2952.79999997]\n", + " [4143.99999998 2594.4 ]\n", + " [3785.60000016 2594.40000005]\n", + " [3427.20000028 2594.40000012]\n", + " [3068.79999967 2594.39999981]\n", + " [2710.40000007 2594.40000006]\n", + " [2351.99999992 2594.39999981]\n", + " [4143.99999971 2235.99999997]\n", + " [3785.59999981 2235.99999998]\n", + " [3427.2 2236. ]\n", + " [3068.79999989 2235.99999998]\n", + " [2710.40000023 2236.00000007]\n", + " [2352.00000024 2236.00000019]]\n", + "DEBUG:root:fitpix2pix: ccdpx: shape: (96, 2)\n", + "DEBUG:root:fitpix2pix: visCut: True\n", + "DEBUG:root:optics_fp: sphi: [0.99998662 0.99998157 0.99997326 0.99995823 0.99992682 0.99984329\n", + " 0.99947535 0.98534548 0.99998662 0.98987212 0.96255334 0.92203248\n", + " 0.87323508 0.82068871 0.76782803 0.71688902 0.98534548 0.21921165\n", + " 0.11402118 0.07693204 0.0580701 0.04666103 0.03901907 0.03354371\n", + " 0.71688902 0.66320038 0.59690146 0.51566567 0.41772438 0.30276585\n", + " 0.17296396 0.03354371 0.99998178 0.9999722 0.99995316 0.99990689\n", + " 0.99974136 0.99788268 0.99786303 0.97348593 0.92704754 0.86731928\n", + " 0.80256563 0.73860437 0.44531096 0.13817549 0.08101827 0.0573289\n", + " 0.04439174 0.0362443 0.69505232 0.62108267 0.52582572 0.40575813\n", + " 0.26042318 0.09510716 0.99998404 0.99998404 0.03404492 0.03404492\n", + " 0.99758153 0.97015242 0.91859883 0.85353737 0.7844386 0.71750142\n", + " 0.99639911 0.95649325 0.88542855 0.80201052 0.71974043 0.64513889\n", + " 0.99408963 0.93129247 0.82961007 0.72325518 0.62880875 0.55006341\n", + " 0.98860564 0.87809901 0.72956919 0.60102159 0.50217562 0.42758264\n", + " 0.96991184 0.74422687 0.54371304 0.41546865 0.33267115 0.27619351\n", + " 0.81489239 0.36634758 0.22327834 0.15951848 0.12390179 0.10124753]\n", + "DEBUG:root:cartToSphere: vec: [[0.20581047 0.20196806 0.95752334]\n", + " [0.20764708 0.17549093 0.96233343]\n", + " [0.20921111 0.14832034 0.96655667]\n", + " [0.21050368 0.12056829 0.97012962]\n", + " [0.21152432 0.0923455 0.9730004 ]\n", + " [0.2122716 0.06376263 0.97512825]\n", + " [0.21274377 0.0349311 0.97648344]\n", + " [0.21293946 0.00596325 0.9770472 ]\n", + " [0.20581047 0.20196806 0.95752334]\n", + " [0.17940008 0.20380697 0.96243355]\n", + " [0.15228099 0.20537849 0.96676273]\n", + " [0.12456525 0.20668384 0.97044592]\n", + " [0.09636347 0.20772258 0.97342972]\n", + " [0.06778617 0.20849323 0.97567188]\n", + " [0.03894463 0.20899395 0.97714116]\n", + " [0.00995116 0.20922323 0.97781727]\n", + " [0.21293946 0.00596325 0.9770472 ]\n", + " [0.18558556 0.00601646 0.98260969]\n", + " [0.15752187 0.00606233 0.98749689]\n", + " [0.12885256 0.00610071 0.991645 ]\n", + " [0.09968382 0.00613144 0.99500027]\n", + " [0.07012532 0.00615431 0.99751921]\n", + " [0.04029051 0.00616917 0.99916896]\n", + " [0.01029607 0.00617591 0.99992792]\n", + " [0.00995116 0.20922323 0.97781727]\n", + " [0.01003858 0.18176716 0.98329036]\n", + " [0.01011374 0.15361557 0.98807893]\n", + " [0.01017639 0.12487279 0.99212057]\n", + " [0.01022623 0.09564544 0.99536294]\n", + " [0.01026295 0.0660437 0.99776395]\n", + " [0.01028629 0.03618151 0.99929229]\n", + " [0.01029607 0.00617591 0.99992792]\n", + " [0.20655553 0.19052281 0.95970614]\n", + " [0.20862193 0.15759064 0.96521608]\n", + " [0.21028039 0.12372836 0.9697801 ]\n", + " [0.21153069 0.08914025 0.97329789]\n", + " [0.21237025 0.05403012 0.97569443]\n", + " [0.212796 0.01860347 0.97691953]\n", + " [0.1943962 0.20271324 0.95974864]\n", + " [0.16153559 0.2047859 0.96538541]\n", + " [0.12772204 0.20645854 0.97008348]\n", + " [0.0931597 0.207731 0.97373975]\n", + " [0.05805212 0.20860063 0.97627646]\n", + " [0.02260459 0.20906415 0.97764064]\n", + " [0.2011068 0.00608691 0.97955041]\n", + " [0.16709142 0.00614821 0.98592224]\n", + " [0.1321133 0.00619816 0.99121524]\n", + " [0.09636698 0.00623643 0.99532633]\n", + " [0.06005439 0.00626269 0.99817546]\n", + " [0.02338579 0.00627666 0.99970681]\n", + " [0.01009044 0.19734414 0.98028234]\n", + " [0.01019035 0.16321317 0.9865382 ]\n", + " [0.01027142 0.12814101 0.99170277]\n", + " [0.0103331 0.0923229 0.9956755 ]\n", + " [0.01037483 0.05596168 0.99837901]\n", + " [0.01039617 0.01926848 0.99976029]\n", + " [0.20572824 0.20188558 0.95755841]\n", + " [0.20572824 0.20188558 0.95755841]\n", + " [0.01039877 0.00627861 0.99992622]\n", + " [0.01039877 0.00627861 0.99992622]\n", + " [0.19517474 0.19130075 0.96193079]\n", + " [0.1621771 0.19325024 0.96765331]\n", + " [0.12822694 0.19482509 0.9724202 ]\n", + " [0.09352723 0.19602426 0.97612865]\n", + " [0.05828102 0.19684438 0.97870098]\n", + " [0.02269376 0.19728171 0.98008414]\n", + " [0.19712067 0.15822879 0.96752627]\n", + " [0.1637837 0.1598311 0.97346234]\n", + " [0.12949375 0.16112922 0.97840112]\n", + " [0.09445078 0.16212009 0.98224036]\n", + " [0.05885684 0.16279899 0.98490221]\n", + " [0.0229182 0.16316141 0.98633316]\n", + " [0.19868404 0.12422708 0.97215857]\n", + " [0.16507817 0.12548158 0.97826559]\n", + " [0.13051704 0.12650047 0.98334273]\n", + " [0.09519827 0.12727979 0.98728777]\n", + " [0.05932353 0.12781451 0.99002231]\n", + " [0.02310025 0.12810021 0.99149217]\n", + " [0.19986372 0.08949878 0.97572766]\n", + " [0.16605732 0.09040196 0.98196357]\n", + " [0.13129265 0.09113695 0.98714553]\n", + " [0.09576573 0.09169995 0.99117105]\n", + " [0.05967819 0.09208666 0.99396105]\n", + " [0.02323871 0.09229337 0.99546064]\n", + " [0.20065641 0.05424725 0.9781586 ]\n", + " [0.16671646 0.05479478 0.98448116]\n", + " [0.13181555 0.05524091 0.98973385]\n", + " [0.09614872 0.05558298 0.99381384]\n", + " [0.05991775 0.05581806 0.99664146]\n", + " [0.0233323 0.05594375 0.99816126]\n", + " [0.20105858 0.01867818 0.97940113]\n", + " [0.16705125 0.01886665 0.98576768]\n", + " [0.13208139 0.0190203 0.99105637]\n", + " [0.09634357 0.01913813 0.99516413]\n", + " [0.06003972 0.01921909 0.99801095]\n", + " [0.02338002 0.01926233 0.99954106]]\n", + "DEBUG:root:make_az_asym: xyp: [[ 0.16415906 -31.72847131]\n", + " [ 0.16601788 -27.34204313]\n", + " [ 0.1678767 -22.95561497]\n", + " [ 0.16973552 -18.56918678]\n", + " [ 0.17159434 -14.1827586 ]\n", + " [ 0.17345315 -9.79633043]\n", + " [ 0.17531197 -5.40990225]\n", + " [ 0.17717079 -1.02347407]\n", + " [ 0.16415906 -31.72847131]\n", + " [ 4.55058724 -31.73033014]\n", + " [ 8.93701541 -31.73218895]\n", + " [ 13.32344359 -31.73404778]\n", + " [ 17.70987177 -31.73590659]\n", + " [ 22.09629995 -31.73776541]\n", + " [ 26.48272812 -31.73962422]\n", + " [ 30.8691563 -31.74148305]\n", + " [ 0.17717079 -1.02347407]\n", + " [ 4.56359897 -1.02533289]\n", + " [ 8.95002714 -1.02719171]\n", + " [ 13.33645532 -1.02905053]\n", + " [ 17.7228835 -1.03090935]\n", + " [ 22.10931168 -1.03276817]\n", + " [ 26.49573986 -1.03462699]\n", + " [ 30.88216803 -1.0364858 ]\n", + " [ 30.8691563 -31.74148305]\n", + " [ 30.87101512 -27.35505487]\n", + " [ 30.87287394 -22.96862669]\n", + " [ 30.87473276 -18.58219851]\n", + " [ 30.87659158 -14.19577034]\n", + " [ 30.8784504 -9.80934216]\n", + " [ 30.88030922 -5.42291398]\n", + " [ 30.88216803 -1.0364858 ]\n", + " [ 0.17996951 -29.81597784]\n", + " [ 0.18224768 -24.43997833]\n", + " [ 0.18452584 -19.06397881]\n", + " [ 0.18680401 -13.6879793 ]\n", + " [ 0.18908217 -8.31197977]\n", + " [ 0.19136034 -2.93598025]\n", + " [ 2.07666524 -31.71428177]\n", + " [ 7.45266476 -31.71655993]\n", + " [ 12.82866428 -31.7188381 ]\n", + " [ 18.2046638 -31.72111627]\n", + " [ 23.58066331 -31.72339443]\n", + " [ 28.95666283 -31.7256726 ]\n", + " [ 2.08966426 -1.03928452]\n", + " [ 7.46566378 -1.04156269]\n", + " [ 12.8416633 -1.04384085]\n", + " [ 18.21766282 -1.04611902]\n", + " [ 23.59366233 -1.04839718]\n", + " [ 28.96966185 -1.05067535]\n", + " [ 30.85496675 -29.82897686]\n", + " [ 30.85724492 -24.45297735]\n", + " [ 30.85952308 -19.07697783]\n", + " [ 30.86180126 -13.70097831]\n", + " [ 30.86407941 -8.32497879]\n", + " [ 30.86635759 -2.94897928]\n", + " [ 0.17916541 -31.71347767]\n", + " [ 0.17916541 -31.71347767]\n", + " [ 30.86716168 -1.05147945]\n", + " [ 30.86716168 -1.05147945]\n", + " [ 2.07746934 -29.81678193]\n", + " [ 7.45346886 -29.8190601 ]\n", + " [ 12.82946837 -29.82133827]\n", + " [ 18.20546789 -29.82361643]\n", + " [ 23.58146741 -29.82589461]\n", + " [ 28.95746693 -29.82817277]\n", + " [ 2.07974751 -24.44078242]\n", + " [ 7.45574702 -24.44306058]\n", + " [ 12.83174654 -24.44533875]\n", + " [ 18.20774606 -24.44761692]\n", + " [ 23.58374558 -24.44989508]\n", + " [ 28.95974509 -24.45217325]\n", + " [ 2.08202567 -19.0647829 ]\n", + " [ 7.45802519 -19.06706107]\n", + " [ 12.83402471 -19.06933924]\n", + " [ 18.21002422 -19.0716174 ]\n", + " [ 23.58602374 -19.07389557]\n", + " [ 28.96202325 -19.07617373]\n", + " [ 2.08430384 -13.68878339]\n", + " [ 7.46030335 -13.69106155]\n", + " [ 12.83630287 -13.69333972]\n", + " [ 18.21230239 -13.69561789]\n", + " [ 23.58830191 -13.69789605]\n", + " [ 28.96430143 -13.70017422]\n", + " [ 2.086582 -8.31278387]\n", + " [ 7.46258152 -8.31506203]\n", + " [ 12.83858103 -8.3173402 ]\n", + " [ 18.21458055 -8.31961837]\n", + " [ 23.59058007 -8.32189653]\n", + " [ 28.96657959 -8.3241747 ]\n", + " [ 2.08886017 -2.93678435]\n", + " [ 7.46485969 -2.93906252]\n", + " [ 12.8408592 -2.94134068]\n", + " [ 18.21685872 -2.94361885]\n", + " [ 23.59285824 -2.94589701]\n", + " [ 28.96885776 -2.94817518]]\n", + "DEBUG:root:make_az_asym: xyp: shape: (96, 2)\n", + "DEBUG:root:optics_fp: xyfp: [[ -0.230877 31.363511 ]\n", + " [ -0.230877 26.97708243]\n", + " [ -0.230877 22.59065386]\n", + " [ -0.230877 18.20422528]\n", + " [ -0.230877 13.81779671]\n", + " [ -0.230877 9.43136815]\n", + " [ -0.230877 5.04493957]\n", + " [ -0.230877 0.658511 ]\n", + " [ -0.230877 31.363511 ]\n", + " [ -4.61730557 31.363511 ]\n", + " [ -9.00373414 31.363511 ]\n", + " [-13.39016272 31.363511 ]\n", + " [-17.77659129 31.363511 ]\n", + " [-22.16301986 31.363511 ]\n", + " [-26.54944843 31.363511 ]\n", + " [-30.935877 31.363511 ]\n", + " [ -0.230877 0.658511 ]\n", + " [ -4.61730558 0.658511 ]\n", + " [ -9.00373414 0.658511 ]\n", + " [-13.39016271 0.658511 ]\n", + " [-17.77659128 0.658511 ]\n", + " [-22.16301986 0.658511 ]\n", + " [-26.54944843 0.658511 ]\n", + " [-30.935877 0.658511 ]\n", + " [-30.935877 31.363511 ]\n", + " [-30.935877 26.97708243]\n", + " [-30.935877 22.59065386]\n", + " [-30.935877 18.20422528]\n", + " [-30.935877 13.81779671]\n", + " [-30.935877 9.43136814]\n", + " [-30.935877 5.04493957]\n", + " [-30.935877 0.658511 ]\n", + " [ -0.245877 29.451011 ]\n", + " [ -0.245877 24.075011 ]\n", + " [ -0.245877 18.699011 ]\n", + " [ -0.245877 13.323011 ]\n", + " [ -0.245877 7.947011 ]\n", + " [ -0.245877 2.571011 ]\n", + " [ -2.143377 31.348511 ]\n", + " [ -7.519377 31.348511 ]\n", + " [-12.895377 31.348511 ]\n", + " [-18.271377 31.348511 ]\n", + " [-23.647377 31.348511 ]\n", + " [-29.023377 31.348511 ]\n", + " [ -2.143377 0.673511 ]\n", + " [ -7.519377 0.673511 ]\n", + " [-12.895377 0.673511 ]\n", + " [-18.271377 0.673511 ]\n", + " [-23.64737701 0.673511 ]\n", + " [-29.023377 0.673511 ]\n", + " [-30.920877 29.451011 ]\n", + " [-30.920877 24.075011 ]\n", + " [-30.920877 18.699011 ]\n", + " [-30.920877 13.323011 ]\n", + " [-30.920877 7.947011 ]\n", + " [-30.920877 2.571011 ]\n", + " [ -0.245877 31.348511 ]\n", + " [ -0.245877 31.348511 ]\n", + " [-30.920877 0.673511 ]\n", + " [-30.920877 0.673511 ]\n", + " [ -2.143377 29.451011 ]\n", + " [ -7.519377 29.451011 ]\n", + " [-12.895377 29.451011 ]\n", + " [-18.271377 29.451011 ]\n", + " [-23.647377 29.451011 ]\n", + " [-29.023377 29.451011 ]\n", + " [ -2.143377 24.075011 ]\n", + " [ -7.519377 24.075011 ]\n", + " [-12.895377 24.075011 ]\n", + " [-18.271377 24.075011 ]\n", + " [-23.647377 24.075011 ]\n", + " [-29.023377 24.075011 ]\n", + " [ -2.143377 18.699011 ]\n", + " [ -7.519377 18.699011 ]\n", + " [-12.895377 18.699011 ]\n", + " [-18.271377 18.699011 ]\n", + " [-23.647377 18.699011 ]\n", + " [-29.023377 18.699011 ]\n", + " [ -2.143377 13.323011 ]\n", + " [ -7.519377 13.323011 ]\n", + " [-12.895377 13.323011 ]\n", + " [-18.271377 13.323011 ]\n", + " [-23.647377 13.323011 ]\n", + " [-29.023377 13.323011 ]\n", + " [ -2.143377 7.947011 ]\n", + " [ -7.519377 7.947011 ]\n", + " [-12.895377 7.947011 ]\n", + " [-18.271377 7.947011 ]\n", + " [-23.647377 7.947011 ]\n", + " [-29.023377 7.947011 ]\n", + " [ -2.143377 2.571011 ]\n", + " [ -7.519377 2.571011 ]\n", + " [-12.895377 2.571011 ]\n", + " [-18.271377 2.571011 ]\n", + " [-23.647377 2.571011 ]\n", + " [-29.023377 2.571011 ]]\n", + "DEBUG:root:optics_fp: xyfp shape: (96, 2)\n", + "DEBUG:root:radec2pix: xyfp: [[ 0.173161 -31.45819714]\n", + " [ 0.17304708 -27.07176857]\n", + " [ 0.17293316 -22.68534 ]\n", + " [ 0.17281925 -18.29891143]\n", + " [ 0.17270533 -13.91248287]\n", + " [ 0.17259141 -9.52605429]\n", + " [ 0.17247749 -5.13962573]\n", + " [ 0.17236358 -0.75319715]\n", + " [ 0.173161 -31.45819714]\n", + " [ 4.55958957 -31.45808322]\n", + " [ 8.94601814 -31.45796931]\n", + " [ 13.33244671 -31.45785538]\n", + " [ 17.71887528 -31.45774147]\n", + " [ 22.10530385 -31.45762756]\n", + " [ 26.49173242 -31.45751363]\n", + " [ 30.87816099 -31.45739971]\n", + " [ 0.17236358 -0.75319715]\n", + " [ 4.55879215 -0.75308323]\n", + " [ 8.94522072 -0.75296932]\n", + " [ 13.33164929 -0.7528554 ]\n", + " [ 17.71807786 -0.75274148]\n", + " [ 22.10450643 -0.75262756]\n", + " [ 26.490935 -0.75251364]\n", + " [ 30.87736356 -0.75239973]\n", + " [ 30.87816099 -31.45739971]\n", + " [ 30.87804707 -27.07097114]\n", + " [ 30.87793315 -22.68454257]\n", + " [ 30.87781924 -18.29811401]\n", + " [ 30.87770532 -13.91168544]\n", + " [ 30.87759141 -9.52525687]\n", + " [ 30.87747749 -5.1388283 ]\n", + " [ 30.87736356 -0.75239973]\n", + " [ 0.18811133 -29.54569675]\n", + " [ 0.18797171 -24.16969676]\n", + " [ 0.1878321 -18.79369675]\n", + " [ 0.18769248 -13.41769676]\n", + " [ 0.18755286 -8.04169676]\n", + " [ 0.18741324 -2.66569676]\n", + " [ 2.08566061 -31.44314748]\n", + " [ 7.46166061 -31.44300785]\n", + " [ 12.83766061 -31.44286824]\n", + " [ 18.2136606 -31.44272862]\n", + " [ 23.5896606 -31.442589 ]\n", + " [ 28.9656606 -31.44244938]\n", + " [ 2.08486397 -0.76814748]\n", + " [ 7.46086396 -0.76800786]\n", + " [ 12.83686396 -0.76786825]\n", + " [ 18.21286396 -0.76772863]\n", + " [ 23.58886395 -0.76758901]\n", + " [ 28.96486395 -0.7674494 ]\n", + " [ 30.86311132 -29.54490011]\n", + " [ 30.86297171 -24.16890011]\n", + " [ 30.86283209 -18.79290011]\n", + " [ 30.86269247 -13.41690011]\n", + " [ 30.86255285 -8.04090011]\n", + " [ 30.86241323 -2.66490012]\n", + " [ 0.18816061 -31.44319675]\n", + " [ 0.18816061 -31.44319675]\n", + " [ 30.86236396 -0.76740012]\n", + " [ 30.86236396 -0.76740012]\n", + " [ 2.08561133 -29.54564748]\n", + " [ 7.46161133 -29.54550785]\n", + " [ 12.83761133 -29.54536824]\n", + " [ 18.21361133 -29.54522862]\n", + " [ 23.58961132 -29.545089 ]\n", + " [ 28.96561132 -29.54494938]\n", + " [ 2.08547171 -24.16964747]\n", + " [ 7.46147171 -24.16950786]\n", + " [ 12.83747171 -24.16936824]\n", + " [ 18.21347171 -24.16922862]\n", + " [ 23.58947171 -24.16908901]\n", + " [ 28.9654717 -24.16894939]\n", + " [ 2.0853321 -18.79364747]\n", + " [ 7.46133209 -18.79350785]\n", + " [ 12.83733209 -18.79336824]\n", + " [ 18.21333209 -18.79322862]\n", + " [ 23.58933209 -18.79308901]\n", + " [ 28.96533209 -18.79294939]\n", + " [ 2.08519248 -13.41764748]\n", + " [ 7.46119248 -13.41750786]\n", + " [ 12.83719247 -13.41736824]\n", + " [ 18.21319248 -13.41722863]\n", + " [ 23.58919247 -13.41708901]\n", + " [ 28.96519247 -13.41694939]\n", + " [ 2.08505286 -8.04164748]\n", + " [ 7.46105286 -8.04150786]\n", + " [ 12.83705286 -8.04136825]\n", + " [ 18.21305286 -8.04122863]\n", + " [ 23.58905286 -8.04108901]\n", + " [ 28.96505285 -8.04094939]\n", + " [ 2.08491324 -2.66564748]\n", + " [ 7.46091324 -2.66550786]\n", + " [ 12.83691324 -2.66536825]\n", + " [ 18.21291324 -2.66522863]\n", + " [ 23.58891323 -2.66508901]\n", + " [ 28.96491324 -2.66494939]]\n", + "DEBUG:root:radec2pix: xyfp Shape: (96, 2)\n", + "DEBUG:root:radec2pix: lng: [44.46013111 40.20250222 35.33475619 29.80239704 23.58471193 16.71933815\n", + " 9.32438225 1.60411637 44.46013111 48.6443107 53.44435482 58.92326156\n", + " 65.11319638 71.98940835 79.44437917 87.27692771 1.60411637 1.85680988\n", + " 2.20397654 2.71072869 3.51976244 5.01551732 8.70535713 30.95664732\n", + " 87.27692771 86.8388988 86.23319877 85.34102995 83.89722589 81.1670885\n", + " 74.12971046 30.95664732 42.68783954 37.06698546 30.47243013 22.85083712\n", + " 14.27406075 4.99632239 46.19982373 51.73354216 58.25770295 65.84552409\n", + " 74.44848175 83.82899465 1.73364549 2.10727457 2.68608796 3.70275867\n", + " 5.95349638 15.02389602 87.07294759 86.42732935 85.41713359 83.61383424\n", + " 79.49708007 61.65124289 44.45987707 44.45987707 31.12292419 31.12292419\n", + " 44.42569213 49.99636441 56.64851063 64.49322462 73.50720842 83.43797919\n", + " 38.75401666 44.3002287 51.21241262 59.77502346 70.12351892 82.00435394\n", + " 32.01565774 37.23971088 44.10467708 53.20553354 65.10220937 79.77773784\n", + " 24.12278796 28.56396741 34.76649258 43.75755718 57.05411516 75.86717668\n", + " 15.12820823 18.19416817 22.73745459 30.03194111 42.97126995 67.36058422\n", + " 5.30749937 6.44364165 8.19450854 11.23524 17.75019872 39.48443023]\n", + "DEBUG:root:radec2pix: lat: [73.24045629 74.22430856 75.14029247 75.96071497 76.65562135 77.19454225\n", + " 77.54971408 77.7004367 73.24045629 74.24542243 75.18640058 76.03561625\n", + " 76.76261911 77.33584079 77.72573436 77.90930638 77.7004367 79.29904106\n", + " 80.93014794 82.5883689 84.26818815 85.9633334 87.6639727 89.31207398\n", + " 77.90930638 79.51115144 81.14420271 82.80268356 84.48015158 86.16770212\n", + " 87.84429449 89.31207398 73.67977076 74.84367611 75.87839932 76.72967459\n", + " 77.34173684 77.66614591 73.68843996 74.88082796 75.94981974 76.8404193\n", + " 77.49482717 77.86108402 78.39292403 80.37467767 82.39987127 84.45839268\n", + " 86.53837212 88.6125356 78.60323781 80.5880931 82.61407297 84.6695731\n", + " 86.73723257 88.74545658 73.24742531 73.24742531 89.30399741 89.30399741\n", + " 74.13967578 75.38730878 76.51234476 77.4557749 78.15346667 78.54590996\n", + " 75.35848529 76.77078371 78.07006468 79.18567192 80.03121451 80.5165253\n", + " 76.44822453 78.03255968 79.52764934 80.85445453 81.89945108 82.52079347\n", + " 77.3504272 79.10147139 80.80332064 82.38074874 83.7000473 84.53866109\n", + " 78.00303059 79.89280789 81.78299446 83.6236493 85.30285158 86.52492363\n", + " 78.35049019 80.32186123 82.33135444 84.36297386 86.3856321 88.26407642]\n", + "DEBUG:root:radec2pix: xyfp: [[ 0.16415906 -31.72847131]\n", + " [ 0.16601788 -27.34204313]\n", + " [ 0.1678767 -22.95561497]\n", + " [ 0.16973552 -18.56918678]\n", + " [ 0.17159434 -14.1827586 ]\n", + " [ 0.17345315 -9.79633043]\n", + " [ 0.17531197 -5.40990225]\n", + " [ 0.17717079 -1.02347407]\n", + " [ 0.16415906 -31.72847131]\n", + " [ 4.55058724 -31.73033014]\n", + " [ 8.93701541 -31.73218895]\n", + " [ 13.32344359 -31.73404778]\n", + " [ 17.70987177 -31.73590659]\n", + " [ 22.09629995 -31.73776541]\n", + " [ 26.48272812 -31.73962422]\n", + " [ 30.8691563 -31.74148305]\n", + " [ 0.17717079 -1.02347407]\n", + " [ 4.56359897 -1.02533289]\n", + " [ 8.95002714 -1.02719171]\n", + " [ 13.33645532 -1.02905053]\n", + " [ 17.7228835 -1.03090935]\n", + " [ 22.10931168 -1.03276817]\n", + " [ 26.49573986 -1.03462699]\n", + " [ 30.88216803 -1.0364858 ]\n", + " [ 30.8691563 -31.74148305]\n", + " [ 30.87101512 -27.35505487]\n", + " [ 30.87287394 -22.96862669]\n", + " [ 30.87473276 -18.58219851]\n", + " [ 30.87659158 -14.19577034]\n", + " [ 30.8784504 -9.80934216]\n", + " [ 30.88030922 -5.42291398]\n", + " [ 30.88216803 -1.0364858 ]\n", + " [ 0.17996951 -29.81597784]\n", + " [ 0.18224768 -24.43997833]\n", + " [ 0.18452584 -19.06397881]\n", + " [ 0.18680401 -13.6879793 ]\n", + " [ 0.18908217 -8.31197977]\n", + " [ 0.19136034 -2.93598025]\n", + " [ 2.07666524 -31.71428177]\n", + " [ 7.45266476 -31.71655993]\n", + " [ 12.82866428 -31.7188381 ]\n", + " [ 18.2046638 -31.72111627]\n", + " [ 23.58066331 -31.72339443]\n", + " [ 28.95666283 -31.7256726 ]\n", + " [ 2.08966426 -1.03928452]\n", + " [ 7.46566378 -1.04156269]\n", + " [ 12.8416633 -1.04384085]\n", + " [ 18.21766282 -1.04611902]\n", + " [ 23.59366233 -1.04839718]\n", + " [ 28.96966185 -1.05067535]\n", + " [ 30.85496675 -29.82897686]\n", + " [ 30.85724492 -24.45297735]\n", + " [ 30.85952308 -19.07697783]\n", + " [ 30.86180126 -13.70097831]\n", + " [ 30.86407941 -8.32497879]\n", + " [ 30.86635759 -2.94897928]\n", + " [ 0.17916541 -31.71347767]\n", + " [ 0.17916541 -31.71347767]\n", + " [ 30.86716168 -1.05147945]\n", + " [ 30.86716168 -1.05147945]\n", + " [ 2.07746934 -29.81678193]\n", + " [ 7.45346886 -29.8190601 ]\n", + " [ 12.82946837 -29.82133827]\n", + " [ 18.20546789 -29.82361643]\n", + " [ 23.58146741 -29.82589461]\n", + " [ 28.95746693 -29.82817277]\n", + " [ 2.07974751 -24.44078242]\n", + " [ 7.45574702 -24.44306058]\n", + " [ 12.83174654 -24.44533875]\n", + " [ 18.20774606 -24.44761692]\n", + " [ 23.58374558 -24.44989508]\n", + " [ 28.95974509 -24.45217325]\n", + " [ 2.08202567 -19.0647829 ]\n", + " [ 7.45802519 -19.06706107]\n", + " [ 12.83402471 -19.06933924]\n", + " [ 18.21002422 -19.0716174 ]\n", + " [ 23.58602374 -19.07389557]\n", + " [ 28.96202325 -19.07617373]\n", + " [ 2.08430384 -13.68878339]\n", + " [ 7.46030335 -13.69106155]\n", + " [ 12.83630287 -13.69333972]\n", + " [ 18.21230239 -13.69561789]\n", + " [ 23.58830191 -13.69789605]\n", + " [ 28.96430143 -13.70017422]\n", + " [ 2.086582 -8.31278387]\n", + " [ 7.46258152 -8.31506203]\n", + " [ 12.83858103 -8.3173402 ]\n", + " [ 18.21458055 -8.31961837]\n", + " [ 23.59058007 -8.32189653]\n", + " [ 28.96657959 -8.3241747 ]\n", + " [ 2.08886017 -2.93678435]\n", + " [ 7.46485969 -2.93906252]\n", + " [ 12.8408592 -2.94134068]\n", + " [ 18.21685872 -2.94361885]\n", + " [ 23.59285824 -2.94589701]\n", + " [ 28.96885776 -2.94817518]]\n", + "DEBUG:root:radec2pix: xyfp Shape: (96, 2)\n", + "DEBUG:root:make_az_asym: xyp: [[ -0.230877 31.363511 ]\n", + " [ -0.230877 26.97708243]\n", + " [ -0.230877 22.59065386]\n", + " [ -0.230877 18.20422528]\n", + " [ -0.230877 13.81779671]\n", + " [ -0.230877 9.43136815]\n", + " [ -0.230877 5.04493957]\n", + " [ -0.230877 0.658511 ]\n", + " [ -0.230877 31.363511 ]\n", + " [ -4.61730557 31.363511 ]\n", + " [ -9.00373414 31.363511 ]\n", + " [-13.39016272 31.363511 ]\n", + " [-17.77659129 31.363511 ]\n", + " [-22.16301986 31.363511 ]\n", + " [-26.54944843 31.363511 ]\n", + " [-30.935877 31.363511 ]\n", + " [ -0.230877 0.658511 ]\n", + " [ -4.61730558 0.658511 ]\n", + " [ -9.00373414 0.658511 ]\n", + " [-13.39016271 0.658511 ]\n", + " [-17.77659128 0.658511 ]\n", + " [-22.16301986 0.658511 ]\n", + " [-26.54944843 0.658511 ]\n", + " [-30.935877 0.658511 ]\n", + " [-30.935877 31.363511 ]\n", + " [-30.935877 26.97708243]\n", + " [-30.935877 22.59065386]\n", + " [-30.935877 18.20422528]\n", + " [-30.935877 13.81779671]\n", + " [-30.935877 9.43136814]\n", + " [-30.935877 5.04493957]\n", + " [-30.935877 0.658511 ]\n", + " [ -0.245877 29.451011 ]\n", + " [ -0.245877 24.075011 ]\n", + " [ -0.245877 18.699011 ]\n", + " [ -0.245877 13.323011 ]\n", + " [ -0.245877 7.947011 ]\n", + " [ -0.245877 2.571011 ]\n", + " [ -2.143377 31.348511 ]\n", + " [ -7.519377 31.348511 ]\n", + " [-12.895377 31.348511 ]\n", + " [-18.271377 31.348511 ]\n", + " [-23.647377 31.348511 ]\n", + " [-29.023377 31.348511 ]\n", + " [ -2.143377 0.673511 ]\n", + " [ -7.519377 0.673511 ]\n", + " [-12.895377 0.673511 ]\n", + " [-18.271377 0.673511 ]\n", + " [-23.64737701 0.673511 ]\n", + " [-29.023377 0.673511 ]\n", + " [-30.920877 29.451011 ]\n", + " [-30.920877 24.075011 ]\n", + " [-30.920877 18.699011 ]\n", + " [-30.920877 13.323011 ]\n", + " [-30.920877 7.947011 ]\n", + " [-30.920877 2.571011 ]\n", + " [ -0.245877 31.348511 ]\n", + " [ -0.245877 31.348511 ]\n", + " [-30.920877 0.673511 ]\n", + " [-30.920877 0.673511 ]\n", + " [ -2.143377 29.451011 ]\n", + " [ -7.519377 29.451011 ]\n", + " [-12.895377 29.451011 ]\n", + " [-18.271377 29.451011 ]\n", + " [-23.647377 29.451011 ]\n", + " [-29.023377 29.451011 ]\n", + " [ -2.143377 24.075011 ]\n", + " [ -7.519377 24.075011 ]\n", + " [-12.895377 24.075011 ]\n", + " [-18.271377 24.075011 ]\n", + " [-23.647377 24.075011 ]\n", + " [-29.023377 24.075011 ]\n", + " [ -2.143377 18.699011 ]\n", + " [ -7.519377 18.699011 ]\n", + " [-12.895377 18.699011 ]\n", + " [-18.271377 18.699011 ]\n", + " [-23.647377 18.699011 ]\n", + " [-29.023377 18.699011 ]\n", + " [ -2.143377 13.323011 ]\n", + " [ -7.519377 13.323011 ]\n", + " [-12.895377 13.323011 ]\n", + " [-18.271377 13.323011 ]\n", + " [-23.647377 13.323011 ]\n", + " [-29.023377 13.323011 ]\n", + " [ -2.143377 7.947011 ]\n", + " [ -7.519377 7.947011 ]\n", + " [-12.895377 7.947011 ]\n", + " [-18.271377 7.947011 ]\n", + " [-23.647377 7.947011 ]\n", + " [-29.023377 7.947011 ]\n", + " [ -2.143377 2.571011 ]\n", + " [ -7.519377 2.571011 ]\n", + " [-12.895377 2.571011 ]\n", + " [-18.271377 2.571011 ]\n", + " [-23.647377 2.571011 ]\n", + " [-29.023377 2.571011 ]]\n", + "DEBUG:root:make_az_asym: xyp: shape: (96, 2)\n", + "DEBUG:root:radec2pix: curVec: [[-0.17958735 0.36607924 -0.91309056]\n", + " [-0.20701917 0.36260779 -0.90865761]\n", + " [-0.23483116 0.35877502 -0.9034018 ]\n", + " [-0.26290329 0.35458018 -0.89730416]\n", + " [-0.29111722 0.35002637 -0.89035516]\n", + " [-0.31935523 0.34512079 -0.88255531]\n", + " [-0.3475002 0.339875 -0.87391567]\n", + " [-0.37543651 0.33430488 -0.86445803]\n", + " [-0.17958735 0.36607924 -0.91309056]\n", + " [-0.17797674 0.33913309 -0.92374944]\n", + " [-0.17631946 0.31197802 -0.93358511]\n", + " [-0.17462691 0.28472385 -0.94256977]\n", + " [-0.17291419 0.25748326 -0.95068557]\n", + " [-0.17120069 0.23037174 -0.95792442]\n", + " [-0.16951077 0.2035081 -0.96428759]\n", + " [-0.16787459 0.17701567 -0.96978532]\n", + " [-0.37543651 0.33430488 -0.86445803]\n", + " [-0.37361549 0.30644636 -0.87550105]\n", + " [-0.37146757 0.27840266 -0.88572219]\n", + " [-0.36900603 0.25028823 -0.89509237]\n", + " [-0.36624826 0.22221861 -0.90359344]\n", + " [-0.36321556 0.19430958 -0.911218 ]\n", + " [-0.35993296 0.16667696 -0.91796899]\n", + " [-0.35642921 0.13943759 -0.92385896]\n", + " [-0.16787459 0.17701567 -0.96978532]\n", + " [-0.19414379 0.17190046 -0.96579419]\n", + " [-0.22083905 0.16669359 -0.96095961]\n", + " [-0.24783338 0.16139466 -0.95526456]\n", + " [-0.27500529 0.15600836 -0.94870094]\n", + " [-0.30223742 0.15054397 -0.94126992]\n", + " [-0.3294157 0.14501478 -0.93298232]\n", + " [-0.35642921 0.13943759 -0.92385896]\n", + " [-0.19148772 0.36451788 -0.91129533]\n", + " [-0.22537908 0.36001965 -0.90531217]\n", + " [-0.25972193 0.35497773 -0.89807312]\n", + " [-0.29429782 0.34939621 -0.88955668]\n", + " [-0.32889002 0.3432884 -0.87976385]\n", + " [-0.36328349 0.33667735 -0.86871944]\n", + " [-0.17898443 0.35435159 -0.91782326]\n", + " [-0.17697759 0.32117118 -0.93033758]\n", + " [-0.17491139 0.28778578 -0.94158661]\n", + " [-0.17281208 0.25440165 -0.95153338]\n", + " [-0.17071541 0.22123146 -0.96016295]\n", + " [-0.16866861 0.18849575 -0.9674814 ]\n", + " [-0.37458837 0.32220807 -0.86940526]\n", + " [-0.37213542 0.28792584 -0.88239103]\n", + " [-0.36920437 0.25347896 -0.89411216]\n", + " [-0.36582554 0.21907978 -0.90453067]\n", + " [-0.36203812 0.18494137 -0.91363291]\n", + " [-0.35788971 0.15127732 -0.92142831]\n", + " [-0.17927321 0.17488664 -0.96813004]\n", + " [-0.21177301 0.16855706 -0.96267373]\n", + " [-0.24478586 0.16208862 -0.95593262]\n", + " [-0.2780859 0.15548785 -0.94788805]\n", + " [-0.31145697 0.14877178 -0.93854223]\n", + " [-0.34469039 0.14196636 -0.92791922]\n", + " [-0.17967495 0.36597631 -0.91311459]\n", + " [-0.17967495 0.36597631 -0.91311459]\n", + " [-0.35634956 0.13954907 -0.92387285]\n", + " [-0.35634956 0.13954907 -0.92387285]\n", + " [-0.19079232 0.35284744 -0.91602236]\n", + " [-0.18875298 0.31953707 -0.92858407]\n", + " [-0.18662655 0.28602154 -0.93987351]\n", + " [-0.18443895 0.25250749 -0.9498538 ]\n", + " [-0.18222529 0.21920737 -0.95851034]\n", + " [-0.18003185 0.18634087 -0.96584969]\n", + " [-0.22467083 0.34823431 -0.91008565]\n", + " [-0.22254311 0.31459845 -0.92276886]\n", + " [-0.22025145 0.2807592 -0.93416464]\n", + " [-0.21782143 0.24692456 -0.94423625]\n", + " [-0.21528711 0.21330682 -0.95296992]\n", + " [-0.2126928 0.18012356 -0.96037351]\n", + " [-0.25900222 0.34309945 -0.90288461]\n", + " [-0.25679108 0.3092023 -0.9156704 ]\n", + " [-0.25434098 0.27510655 -0.92716075]\n", + " [-0.25167794 0.24102175 -0.93731891]\n", + " [-0.2488361 0.20716044 -0.94613168]\n", + " [-0.24585902 0.17373868 -0.953608 ]\n", + " [-0.29356806 0.33744757 -0.89439752]\n", + " [-0.29127832 0.30335512 -0.90726656]\n", + " [-0.28867609 0.26907152 -0.91883983]\n", + " [-0.28578836 0.23480774 -0.92908037]\n", + " [-0.28265028 0.20077671 -0.93797523]\n", + " [-0.27930581 0.16719342 -0.94553404]\n", + " [-0.32815169 0.33129266 -0.88462514]\n", + " [-0.32578856 0.2970727 -0.89755759]\n", + " [-0.32304102 0.26267141 -0.90920197]\n", + " [-0.31993743 0.22830078 -0.91952096]\n", + " [-0.31651448 0.19417399 -0.9285015 ]\n", + " [-0.31281741 0.16050532 -0.93615347]\n", + " [-0.36253815 0.32465828 -0.87359206]\n", + " [-0.36010749 0.29037998 -0.88656757]\n", + " [-0.35722269 0.25593233 -0.89827089]\n", + " [-0.35391357 0.22152769 -0.90866422]\n", + " [-0.35021864 0.18737925 -0.91773412]\n", + " [-0.34618489 0.15370074 -0.9254902 ]]\n", + "DEBUG:root:radec2pix: curVec Shape: (96, 3)\n", + "DEBUG:root:mm_to_pix: fitpx: [[0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]]\n", + "DEBUG:root:mm_to_pix: fitpx.shape: (96, 2)\n", + "DEBUG:root:mm_to_pix: fitpx: [[0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]]\n", + "DEBUG:root:mm_to_pix: fitpx.shape: (96, 2)\n", + "DEBUG:root:radec2pix: xyfp: [[ -0.230877 31.363511 ]\n", + " [ -0.230877 26.97708243]\n", + " [ -0.230877 22.59065386]\n", + " [ -0.230877 18.20422528]\n", + " [ -0.230877 13.81779671]\n", + " [ -0.230877 9.43136815]\n", + " [ -0.230877 5.04493957]\n", + " [ -0.230877 0.658511 ]\n", + " [ -0.230877 31.363511 ]\n", + " [ -4.61730557 31.363511 ]\n", + " [ -9.00373414 31.363511 ]\n", + " [-13.39016272 31.363511 ]\n", + " [-17.77659129 31.363511 ]\n", + " [-22.16301986 31.363511 ]\n", + " [-26.54944843 31.363511 ]\n", + " [-30.935877 31.363511 ]\n", + " [ -0.230877 0.658511 ]\n", + " [ -4.61730558 0.658511 ]\n", + " [ -9.00373414 0.658511 ]\n", + " [-13.39016271 0.658511 ]\n", + " [-17.77659128 0.658511 ]\n", + " [-22.16301986 0.658511 ]\n", + " [-26.54944843 0.658511 ]\n", + " [-30.935877 0.658511 ]\n", + " [-30.935877 31.363511 ]\n", + " [-30.935877 26.97708243]\n", + " [-30.935877 22.59065386]\n", + " [-30.935877 18.20422528]\n", + " [-30.935877 13.81779671]\n", + " [-30.935877 9.43136814]\n", + " [-30.935877 5.04493957]\n", + " [-30.935877 0.658511 ]\n", + " [ -0.245877 29.451011 ]\n", + " [ -0.245877 24.075011 ]\n", + " [ -0.245877 18.699011 ]\n", + " [ -0.245877 13.323011 ]\n", + " [ -0.245877 7.947011 ]\n", + " [ -0.245877 2.571011 ]\n", + " [ -2.143377 31.348511 ]\n", + " [ -7.519377 31.348511 ]\n", + " [-12.895377 31.348511 ]\n", + " [-18.271377 31.348511 ]\n", + " [-23.647377 31.348511 ]\n", + " [-29.023377 31.348511 ]\n", + " [ -2.143377 0.673511 ]\n", + " [ -7.519377 0.673511 ]\n", + " [-12.895377 0.673511 ]\n", + " [-18.271377 0.673511 ]\n", + " [-23.64737701 0.673511 ]\n", + " [-29.023377 0.673511 ]\n", + " [-30.920877 29.451011 ]\n", + " [-30.920877 24.075011 ]\n", + " [-30.920877 18.699011 ]\n", + " [-30.920877 13.323011 ]\n", + " [-30.920877 7.947011 ]\n", + " [-30.920877 2.571011 ]\n", + " [ -0.245877 31.348511 ]\n", + " [ -0.245877 31.348511 ]\n", + " [-30.920877 0.673511 ]\n", + " [-30.920877 0.673511 ]\n", + " [ -2.143377 29.451011 ]\n", + " [ -7.519377 29.451011 ]\n", + " [-12.895377 29.451011 ]\n", + " [-18.271377 29.451011 ]\n", + " [-23.647377 29.451011 ]\n", + " [-29.023377 29.451011 ]\n", + " [ -2.143377 24.075011 ]\n", + " [ -7.519377 24.075011 ]\n", + " [-12.895377 24.075011 ]\n", + " [-18.271377 24.075011 ]\n", + " [-23.647377 24.075011 ]\n", + " [-29.023377 24.075011 ]\n", + " [ -2.143377 18.699011 ]\n", + " [ -7.519377 18.699011 ]\n", + " [-12.895377 18.699011 ]\n", + " [-18.271377 18.699011 ]\n", + " [-23.647377 18.699011 ]\n", + " [-29.023377 18.699011 ]\n", + " [ -2.143377 13.323011 ]\n", + " [ -7.519377 13.323011 ]\n", + " [-12.895377 13.323011 ]\n", + " [-18.271377 13.323011 ]\n", + " [-23.647377 13.323011 ]\n", + " [-29.023377 13.323011 ]\n", + " [ -2.143377 7.947011 ]\n", + " [ -7.519377 7.947011 ]\n", + " [-12.895377 7.947011 ]\n", + " [-18.271377 7.947011 ]\n", + " [-23.647377 7.947011 ]\n", + " [-29.023377 7.947011 ]\n", + " [ -2.143377 2.571011 ]\n", + " [ -7.519377 2.571011 ]\n", + " [-12.895377 2.571011 ]\n", + " [-18.271377 2.571011 ]\n", + " [-23.647377 2.571011 ]\n", + " [-29.023377 2.571011 ]]\n", + "DEBUG:root:radec2pix: xyfp Shape: (96, 2)\n", + "DEBUG:root:radec2pix: xyfp: [[ 0.173161 -31.45819714]\n", + " [ 0.17304708 -27.07176857]\n", + " [ 0.17293316 -22.68534 ]\n", + " [ 0.17281925 -18.29891143]\n", + " [ 0.17270533 -13.91248287]\n", + " [ 0.17259141 -9.52605429]\n", + " [ 0.17247749 -5.13962573]\n", + " [ 0.17236358 -0.75319715]\n", + " [ 0.173161 -31.45819714]\n", + " [ 4.55958957 -31.45808322]\n", + " [ 8.94601814 -31.45796931]\n", + " [ 13.33244671 -31.45785538]\n", + " [ 17.71887528 -31.45774147]\n", + " [ 22.10530385 -31.45762756]\n", + " [ 26.49173242 -31.45751363]\n", + " [ 30.87816099 -31.45739971]\n", + " [ 0.17236358 -0.75319715]\n", + " [ 4.55879215 -0.75308323]\n", + " [ 8.94522072 -0.75296932]\n", + " [ 13.33164929 -0.7528554 ]\n", + " [ 17.71807786 -0.75274148]\n", + " [ 22.10450643 -0.75262756]\n", + " [ 26.490935 -0.75251364]\n", + " [ 30.87736356 -0.75239973]\n", + " [ 30.87816099 -31.45739971]\n", + " [ 30.87804707 -27.07097114]\n", + " [ 30.87793315 -22.68454257]\n", + " [ 30.87781924 -18.29811401]\n", + " [ 30.87770532 -13.91168544]\n", + " [ 30.87759141 -9.52525687]\n", + " [ 30.87747749 -5.1388283 ]\n", + " [ 30.87736356 -0.75239973]\n", + " [ 0.18811133 -29.54569675]\n", + " [ 0.18797171 -24.16969676]\n", + " [ 0.1878321 -18.79369675]\n", + " [ 0.18769248 -13.41769676]\n", + " [ 0.18755286 -8.04169676]\n", + " [ 0.18741324 -2.66569676]\n", + " [ 2.08566061 -31.44314748]\n", + " [ 7.46166061 -31.44300785]\n", + " [ 12.83766061 -31.44286824]\n", + " [ 18.2136606 -31.44272862]\n", + " [ 23.5896606 -31.442589 ]\n", + " [ 28.9656606 -31.44244938]\n", + " [ 2.08486397 -0.76814748]\n", + " [ 7.46086396 -0.76800786]\n", + " [ 12.83686396 -0.76786825]\n", + " [ 18.21286396 -0.76772863]\n", + " [ 23.58886395 -0.76758901]\n", + " [ 28.96486395 -0.7674494 ]\n", + " [ 30.86311132 -29.54490011]\n", + " [ 30.86297171 -24.16890011]\n", + " [ 30.86283209 -18.79290011]\n", + " [ 30.86269247 -13.41690011]\n", + " [ 30.86255285 -8.04090011]\n", + " [ 30.86241323 -2.66490012]\n", + " [ 0.18816061 -31.44319675]\n", + " [ 0.18816061 -31.44319675]\n", + " [ 30.86236396 -0.76740012]\n", + " [ 30.86236396 -0.76740012]\n", + " [ 2.08561133 -29.54564748]\n", + " [ 7.46161133 -29.54550785]\n", + " [ 12.83761133 -29.54536824]\n", + " [ 18.21361133 -29.54522862]\n", + " [ 23.58961132 -29.545089 ]\n", + " [ 28.96561132 -29.54494938]\n", + " [ 2.08547171 -24.16964747]\n", + " [ 7.46147171 -24.16950786]\n", + " [ 12.83747171 -24.16936824]\n", + " [ 18.21347171 -24.16922862]\n", + " [ 23.58947171 -24.16908901]\n", + " [ 28.9654717 -24.16894939]\n", + " [ 2.0853321 -18.79364747]\n", + " [ 7.46133209 -18.79350785]\n", + " [ 12.83733209 -18.79336824]\n", + " [ 18.21333209 -18.79322862]\n", + " [ 23.58933209 -18.79308901]\n", + " [ 28.96533209 -18.79294939]\n", + " [ 2.08519248 -13.41764748]\n", + " [ 7.46119248 -13.41750786]\n", + " [ 12.83719247 -13.41736824]\n", + " [ 18.21319248 -13.41722863]\n", + " [ 23.58919247 -13.41708901]\n", + " [ 28.96519247 -13.41694939]\n", + " [ 2.08505286 -8.04164748]\n", + " [ 7.46105286 -8.04150786]\n", + " [ 12.83705286 -8.04136825]\n", + " [ 18.21305286 -8.04122863]\n", + " [ 23.58905286 -8.04108901]\n", + " [ 28.96505285 -8.04094939]\n", + " [ 2.08491324 -2.66564748]\n", + " [ 7.46091324 -2.66550786]\n", + " [ 12.83691324 -2.66536825]\n", + " [ 18.21291324 -2.66522863]\n", + " [ 23.58891323 -2.66508901]\n", + " [ 28.96491324 -2.66494939]]\n", + "DEBUG:root:optics_fp: rtanth: [45.12621722 42.17029986 39.48131725 37.11732942 35.14398081 33.63010767\n", + " 32.639706 32.22108294 45.12621722 42.10767167 39.34740219 36.90340926\n", + " 34.84231167 33.23542179 32.15091525 31.64254972 32.22108294 27.83664346\n", + " 23.45294788 19.07050919 14.69045227 10.31581149 5.95852807 1.75318507\n", + " 31.64254972 27.26187195 22.88339755 18.50869029 14.14124675 9.79079234\n", + " 5.49780688 1.75318507 43.79692971 40.34599343 37.35277865 34.93513576\n", + " 33.218972 32.31623807 43.77085556 40.23738319 37.14847194 34.62331124\n", + " 32.79239466 31.77595577 30.30982943 24.93681956 19.5654525 14.19759296\n", + " 8.839633 3.53685305 29.73311087 24.36567291 19.00307614 13.6510271\n", + " 8.32988182 3.19782325 45.10500496 45.10500496 1.7737717 1.7737717\n", + " 42.42166164 38.76540449 35.54881922 32.90111338 30.96854417 29.89014797\n", + " 38.84875172 34.81931533 31.19850449 28.14447363 25.85882561 24.55705763\n", + " 35.73032881 31.30200643 27.21722925 23.65464611 20.88324085 19.24785615\n", + " 33.19472902 28.37338973 23.79099004 19.61570597 16.16611847 13.98976784\n", + " 31.38353749 26.23138645 21.19074319 16.36497207 12.01581361 8.87411937\n", + " 30.4263959 25.07837271 19.74554986 14.44477252 9.23140937 4.4259617 ]\n", + "DEBUG:root:radec2pix: camVec: [[-0.00156258 -0.00157957 -0.00159468 -0.00160787 -0.00161907 -0.00162822\n", + " -0.00163527 -0.00164017 -0.00156258 -0.0305812 -0.05948043 -0.08814769\n", + " -0.11647141 -0.14434091 -0.17164574 -0.19827444 -0.00164017 -0.03165868\n", + " -0.06155164 -0.09120162 -0.12049415 -0.14931846 -0.17756745 -0.20513658\n", + " -0.19827444 -0.2000398 -0.20154417 -0.20278831 -0.20377138 -0.20449167\n", + " -0.20494724 -0.20513658 -0.00166992 -0.00169047 -0.00170796 -0.0017223\n", + " -0.00173334 -0.001741 -0.0142227 -0.04972296 -0.08493191 -0.1196437\n", + " -0.15365451 -0.18676067 -0.01473616 -0.05145726 -0.08787283 -0.12377083\n", + " -0.15894736 -0.19320639 -0.19898619 -0.20097311 -0.20256914 -0.20377339\n", + " -0.20458276 -0.20499385 -0.00166195 -0.00166195 -0.20504339 -0.20504339\n", + " -0.01428012 -0.04992014 -0.08526785 -0.1201171 -0.15426444 -0.18750721\n", + " -0.01442512 -0.05041664 -0.08611259 -0.12130566 -0.1557929 -0.1893742\n", + " -0.01454351 -0.0508198 -0.08679712 -0.1222667 -0.15702557 -0.19087549\n", + " -0.01463451 -0.05112705 -0.08731762 -0.122996 -0.15795892 -0.19200933\n", + " -0.01469728 -0.05133568 -0.08766989 -0.12348855 -0.15858803 -0.19277198\n", + " -0.01473117 -0.05144352 -0.08785049 -0.12374011 -0.1589085 -0.19315962]\n", + " [ 0.20900824 0.18154377 0.15338464 0.12463517 0.09540199 0.06579532\n", + " 0.03592916 0.00592057 0.20900824 0.20886066 0.2084416 0.2077524\n", + " 0.20679486 0.20557063 0.20408052 0.20232383 0.00592057 0.00591961\n", + " 0.00591082 0.00589429 0.00587015 0.00583856 0.00579969 0.00575368\n", + " 0.20232383 0.17576331 0.1485108 0.12067777 0.09237455 0.06371165\n", + " 0.03480051 0.00575368 0.19712565 0.16298492 0.12790428 0.09207897\n", + " 0.05571194 0.01901436 0.20888472 0.20852129 0.20775151 0.20657854\n", + " 0.20500532 0.20303275 0.00602383 0.00601719 0.00599868 0.00596852\n", + " 0.005927 0.00587443 0.19084173 0.15780847 0.12384677 0.08916013\n", + " 0.05395206 0.01842821 0.20891558 0.20891558 0.00585328 0.00585328\n", + " 0.19709662 0.19675396 0.1960282 0.19492287 0.19344162 0.19158618\n", + " 0.16296111 0.16267787 0.16207774 0.1611649 0.15994417 0.15841917\n", + " 0.12788582 0.12766348 0.12719172 0.12647465 0.12551724 0.12432386\n", + " 0.09206603 0.09190638 0.09156653 0.09104984 0.09036055 0.08950266\n", + " 0.05570466 0.05560934 0.05540465 0.05509277 0.05467653 0.0541587\n", + " 0.01901283 0.01898296 0.01891568 0.01881174 0.01867213 0.01849786]\n", + " [ 0.97791263 0.9833816 0.98816527 0.99220134 0.99543751 0.99783181\n", + " 0.999353 0.99998113 0.97791263 0.97746714 0.97622445 0.97420169\n", + " 0.97142694 0.96793926 0.96378882 0.95903718 0.99998113 0.99948121\n", + " 0.9980864 0.995815 0.99269668 0.98877192 0.98409154 0.97871644\n", + " 0.95903718 0.96389384 0.9681552 0.97175809 0.97465079 0.9767927\n", + " 0.97815416 0.97871644 0.98037681 0.98662711 0.99178505 0.99575022\n", + " 0.99844538 0.99981769 0.97783684 0.97675304 0.9744875 0.97108738\n", + " 0.9666246 0.96119621 0.99987327 0.99865707 0.99611364 0.99229288\n", + " 0.98726927 0.98114055 0.96124083 0.9668021 0.97140502 0.97494968\n", + " 0.97736128 0.97858976 0.97793227 0.97793227 0.97873538 0.97873538\n", + " 0.98028006 0.97918122 0.976884 0.97343565 0.96890806 0.96339804\n", + " 0.98652704 0.98539031 0.98301344 0.97944414 0.97475455 0.96904116\n", + " 0.99168226 0.99051471 0.98807314 0.98440592 0.97958583 0.97370947\n", + " 0.99564536 0.99445424 0.99196331 0.98822159 0.98330257 0.97730327\n", + " 0.99833911 0.99713201 0.99460762 0.9908155 0.98582976 0.97974782\n", + " 0.99971071 0.99849547 0.99595406 0.99213633 0.98711673 0.98099296]]\n", + "DEBUG:root:radec2pix: camVec Shape: (3, 96)\n", + "DEBUG:root:optics_fp: xyfp: [[ 0.16415906 -31.72847131]\n", + " [ 0.16601788 -27.34204313]\n", + " [ 0.1678767 -22.95561497]\n", + " [ 0.16973552 -18.56918678]\n", + " [ 0.17159434 -14.1827586 ]\n", + " [ 0.17345315 -9.79633043]\n", + " [ 0.17531197 -5.40990225]\n", + " [ 0.17717079 -1.02347407]\n", + " [ 0.16415906 -31.72847131]\n", + " [ 4.55058724 -31.73033014]\n", + " [ 8.93701541 -31.73218895]\n", + " [ 13.32344359 -31.73404778]\n", + " [ 17.70987177 -31.73590659]\n", + " [ 22.09629995 -31.73776541]\n", + " [ 26.48272812 -31.73962422]\n", + " [ 30.8691563 -31.74148305]\n", + " [ 0.17717079 -1.02347407]\n", + " [ 4.56359897 -1.02533289]\n", + " [ 8.95002714 -1.02719171]\n", + " [ 13.33645532 -1.02905053]\n", + " [ 17.7228835 -1.03090935]\n", + " [ 22.10931168 -1.03276817]\n", + " [ 26.49573986 -1.03462699]\n", + " [ 30.88216803 -1.0364858 ]\n", + " [ 30.8691563 -31.74148305]\n", + " [ 30.87101512 -27.35505487]\n", + " [ 30.87287394 -22.96862669]\n", + " [ 30.87473276 -18.58219851]\n", + " [ 30.87659158 -14.19577034]\n", + " [ 30.8784504 -9.80934216]\n", + " [ 30.88030922 -5.42291398]\n", + " [ 30.88216803 -1.0364858 ]\n", + " [ 0.17996951 -29.81597784]\n", + " [ 0.18224768 -24.43997833]\n", + " [ 0.18452584 -19.06397881]\n", + " [ 0.18680401 -13.6879793 ]\n", + " [ 0.18908217 -8.31197977]\n", + " [ 0.19136034 -2.93598025]\n", + " [ 2.07666524 -31.71428177]\n", + " [ 7.45266476 -31.71655993]\n", + " [ 12.82866428 -31.7188381 ]\n", + " [ 18.2046638 -31.72111627]\n", + " [ 23.58066331 -31.72339443]\n", + " [ 28.95666283 -31.7256726 ]\n", + " [ 2.08966426 -1.03928452]\n", + " [ 7.46566378 -1.04156269]\n", + " [ 12.8416633 -1.04384085]\n", + " [ 18.21766282 -1.04611902]\n", + " [ 23.59366233 -1.04839718]\n", + " [ 28.96966185 -1.05067535]\n", + " [ 30.85496675 -29.82897686]\n", + " [ 30.85724492 -24.45297735]\n", + " [ 30.85952308 -19.07697783]\n", + " [ 30.86180126 -13.70097831]\n", + " [ 30.86407941 -8.32497879]\n", + " [ 30.86635759 -2.94897928]\n", + " [ 0.17916541 -31.71347767]\n", + " [ 0.17916541 -31.71347767]\n", + " [ 30.86716168 -1.05147945]\n", + " [ 30.86716168 -1.05147945]\n", + " [ 2.07746934 -29.81678193]\n", + " [ 7.45346886 -29.8190601 ]\n", + " [ 12.82946837 -29.82133827]\n", + " [ 18.20546789 -29.82361643]\n", + " [ 23.58146741 -29.82589461]\n", + " [ 28.95746693 -29.82817277]\n", + " [ 2.07974751 -24.44078242]\n", + " [ 7.45574702 -24.44306058]\n", + " [ 12.83174654 -24.44533875]\n", + " [ 18.20774606 -24.44761692]\n", + " [ 23.58374558 -24.44989508]\n", + " [ 28.95974509 -24.45217325]\n", + " [ 2.08202567 -19.0647829 ]\n", + " [ 7.45802519 -19.06706107]\n", + " [ 12.83402471 -19.06933924]\n", + " [ 18.21002422 -19.0716174 ]\n", + " [ 23.58602374 -19.07389557]\n", + " [ 28.96202325 -19.07617373]\n", + " [ 2.08430384 -13.68878339]\n", + " [ 7.46030335 -13.69106155]\n", + " [ 12.83630287 -13.69333972]\n", + " [ 18.21230239 -13.69561789]\n", + " [ 23.58830191 -13.69789605]\n", + " [ 28.96430143 -13.70017422]\n", + " [ 2.086582 -8.31278387]\n", + " [ 7.46258152 -8.31506203]\n", + " [ 12.83858103 -8.3173402 ]\n", + " [ 18.21458055 -8.31961837]\n", + " [ 23.59058007 -8.32189653]\n", + " [ 28.96657959 -8.3241747 ]\n", + " [ 2.08886017 -2.93678435]\n", + " [ 7.46485969 -2.93906252]\n", + " [ 12.8408592 -2.94134068]\n", + " [ 18.21685872 -2.94361885]\n", + " [ 23.59285824 -2.94589701]\n", + " [ 28.96885776 -2.94817518]]\n", + "DEBUG:root:radec2pix: xyfp: [[ 0.16415906 -31.72847131]\n", + " [ 0.16601788 -27.34204313]\n", + " [ 0.1678767 -22.95561497]\n", + " [ 0.16973552 -18.56918678]\n", + " [ 0.17159434 -14.1827586 ]\n", + " [ 0.17345315 -9.79633043]\n", + " [ 0.17531197 -5.40990225]\n", + " [ 0.17717079 -1.02347407]\n", + " [ 0.16415906 -31.72847131]\n", + " [ 4.55058724 -31.73033014]\n", + " [ 8.93701541 -31.73218895]\n", + " [ 13.32344359 -31.73404778]\n", + " [ 17.70987177 -31.73590659]\n", + " [ 22.09629995 -31.73776541]\n", + " [ 26.48272812 -31.73962422]\n", + " [ 30.8691563 -31.74148305]\n", + " [ 0.17717079 -1.02347407]\n", + " [ 4.56359897 -1.02533289]\n", + " [ 8.95002714 -1.02719171]\n", + " [ 13.33645532 -1.02905053]\n", + " [ 17.7228835 -1.03090935]\n", + " [ 22.10931168 -1.03276817]\n", + " [ 26.49573986 -1.03462699]\n", + " [ 30.88216803 -1.0364858 ]\n", + " [ 30.8691563 -31.74148305]\n", + " [ 30.87101512 -27.35505487]\n", + " [ 30.87287394 -22.96862669]\n", + " [ 30.87473276 -18.58219851]\n", + " [ 30.87659158 -14.19577034]\n", + " [ 30.8784504 -9.80934216]\n", + " [ 30.88030922 -5.42291398]\n", + " [ 30.88216803 -1.0364858 ]\n", + " [ 0.17996951 -29.81597784]\n", + " [ 0.18224768 -24.43997833]\n", + " [ 0.18452584 -19.06397881]\n", + " [ 0.18680401 -13.6879793 ]\n", + " [ 0.18908217 -8.31197977]\n", + " [ 0.19136034 -2.93598025]\n", + " [ 2.07666524 -31.71428177]\n", + " [ 7.45266476 -31.71655993]\n", + " [ 12.82866428 -31.7188381 ]\n", + " [ 18.2046638 -31.72111627]\n", + " [ 23.58066331 -31.72339443]\n", + " [ 28.95666283 -31.7256726 ]\n", + " [ 2.08966426 -1.03928452]\n", + " [ 7.46566378 -1.04156269]\n", + " [ 12.8416633 -1.04384085]\n", + " [ 18.21766282 -1.04611902]\n", + " [ 23.59366233 -1.04839718]\n", + " [ 28.96966185 -1.05067535]\n", + " [ 30.85496675 -29.82897686]\n", + " [ 30.85724492 -24.45297735]\n", + " [ 30.85952308 -19.07697783]\n", + " [ 30.86180126 -13.70097831]\n", + " [ 30.86407941 -8.32497879]\n", + " [ 30.86635759 -2.94897928]\n", + " [ 0.17916541 -31.71347767]\n", + " [ 0.17916541 -31.71347767]\n", + " [ 30.86716168 -1.05147945]\n", + " [ 30.86716168 -1.05147945]\n", + " [ 2.07746934 -29.81678193]\n", + " [ 7.45346886 -29.8190601 ]\n", + " [ 12.82946837 -29.82133827]\n", + " [ 18.20546789 -29.82361643]\n", + " [ 23.58146741 -29.82589461]\n", + " [ 28.95746693 -29.82817277]\n", + " [ 2.07974751 -24.44078242]\n", + " [ 7.45574702 -24.44306058]\n", + " [ 12.83174654 -24.44533875]\n", + " [ 18.20774606 -24.44761692]\n", + " [ 23.58374558 -24.44989508]\n", + " [ 28.95974509 -24.45217325]\n", + " [ 2.08202567 -19.0647829 ]\n", + " [ 7.45802519 -19.06706107]\n", + " [ 12.83402471 -19.06933924]\n", + " [ 18.21002422 -19.0716174 ]\n", + " [ 23.58602374 -19.07389557]\n", + " [ 28.96202325 -19.07617373]\n", + " [ 2.08430384 -13.68878339]\n", + " [ 7.46030335 -13.69106155]\n", + " [ 12.83630287 -13.69333972]\n", + " [ 18.21230239 -13.69561789]\n", + " [ 23.58830191 -13.69789605]\n", + " [ 28.96430143 -13.70017422]\n", + " [ 2.086582 -8.31278387]\n", + " [ 7.46258152 -8.31506203]\n", + " [ 12.83858103 -8.3173402 ]\n", + " [ 18.21458055 -8.31961837]\n", + " [ 23.59058007 -8.32189653]\n", + " [ 28.96657959 -8.3241747 ]\n", + " [ 2.08886017 -2.93678435]\n", + " [ 7.46485969 -2.93906252]\n", + " [ 12.8408592 -2.94134068]\n", + " [ 18.21685872 -2.94361885]\n", + " [ 23.59285824 -2.94589701]\n", + " [ 28.96885776 -2.94817518]]\n", + "DEBUG:root:optics_fp: xyfp shape: (96, 2)\n", + "DEBUG:root:mm_to_pix: fitpx: [[0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]]\n", + "DEBUG:root:mm_to_pix: fitpx.shape: (96, 2)\n", + "DEBUG:root:optics_fp: cphi: [0.713738 0.76376784 0.81578691 0.86774466 0.91646952 0.95772545\n", + " 0.98678686 0.99960811 0.713738 0.66073156 0.59560321 0.51618565\n", + " 0.42082689 0.3091928 0.18318995 0.04750869 0.99960811 0.99947492\n", + " 0.99926025 0.99888104 0.99811368 0.99617106 0.98847974 0.85755676\n", + " 0.04750869 0.05514364 0.06569574 0.08122479 0.10631221 0.15355346\n", + " 0.27346048 0.85755676 0.73505851 0.79793137 0.86187328 0.92151896\n", + " 0.96912745 0.99620029 0.69214539 0.6193195 0.5260996 0.40919818\n", + " 0.26810473 0.10749625 0.99954227 0.99932373 0.99890128 0.99791251\n", + " 0.99460641 0.9658178 0.05106448 0.06231447 0.07990085 0.11122898\n", + " 0.18228563 0.4748373 0.71374111 0.71374111 0.85606035 0.85606035\n", + " 0.71415887 0.64283622 0.5497737 0.43061783 0.28389471 0.11427866\n", + " 0.7798406 0.71568995 0.62643496 0.50339666 0.33999355 0.13909785\n", + " 0.84790325 0.79611069 0.71806949 0.59894626 0.42100084 0.17746713\n", + " 0.9126717 0.87828385 0.82148283 0.72227275 0.54384668 0.24417059\n", + " 0.96534426 0.95000384 0.92228562 0.86574653 0.73169559 0.38493034\n", + " 0.9957126 0.99368273 0.9897899 0.98083551 0.95239474 0.77179741]\n", + "DEBUG:root:optics_fp: sphi: [0.70041278 0.64549104 0.5783526 0.49701026 0.40010451 0.28768378\n", + " 0.16202376 0.02799345 0.70041278 0.75062228 0.80327879 0.85647672\n", + " 0.90714096 0.95099938 0.98307754 0.99887082 0.02799345 0.03240177\n", + " 0.03845716 0.04729349 0.06139281 0.08742554 0.15135324 0.51438935\n", + " 0.99887082 0.99847843 0.9978397 0.99669581 0.9943328 0.98814034\n", + " 0.96188324 0.51438935 0.67800368 0.60274831 0.5071237 0.38833338\n", + " 0.24656029 0.0870918 0.7217581 0.78513907 0.85042296 0.91244553\n", + " 0.96338977 0.99420549 0.03025321 0.03677059 0.04686391 0.06458036\n", + " 0.10372123 0.25922188 0.99869536 0.99805657 0.99680282 0.9937948\n", + " 0.98324562 0.8800736 0.70040962 0.70040962 0.51687588 0.51687588\n", + " 0.69998365 0.76600365 0.83531364 0.90253437 0.95885546 0.99344873\n", + " 0.62597814 0.69841814 0.77947369 0.86405544 0.94042777 0.99027864\n", + " 0.530151 0.60515103 0.69597142 0.80078922 0.90706025 0.98412673\n", + " 0.40869348 0.47813961 0.57023325 0.69160833 0.8391846 0.9697323\n", + " 0.2609798 0.31223822 0.38650903 0.50048271 0.68163155 0.92294563\n", + " 0.09250092 0.11222584 0.14253407 0.19483765 0.3048676 0.63586851]\n", + "DEBUG:root:make_az_asym: xyp: [[ -0.167405 31.491388 ]\n", + " [ -0.167405 27.10495943]\n", + " [ -0.167405 22.71853086]\n", + " [ -0.167405 18.33210229]\n", + " [ -0.167405 13.94567372]\n", + " [ -0.167405 9.55924515]\n", + " [ -0.167405 5.17281657]\n", + " [ -0.167405 0.786388 ]\n", + " [ -0.167405 31.491388 ]\n", + " [ -4.55383357 31.491388 ]\n", + " [ -8.94026214 31.491388 ]\n", + " [-13.32669071 31.491388 ]\n", + " [-17.71311928 31.491388 ]\n", + " [-22.09954786 31.491388 ]\n", + " [-26.48597643 31.491388 ]\n", + " [-30.872405 31.491388 ]\n", + " [ -0.167405 0.786388 ]\n", + " [ -4.55383357 0.786388 ]\n", + " [ -8.94026214 0.786388 ]\n", + " [-13.32669071 0.786388 ]\n", + " [-17.71311929 0.786388 ]\n", + " [-22.09954786 0.786388 ]\n", + " [-26.48597643 0.786388 ]\n", + " [-30.872405 0.786388 ]\n", + " [-30.872405 31.491388 ]\n", + " [-30.872405 27.10495943]\n", + " [-30.872405 22.71853086]\n", + " [-30.872405 18.33210229]\n", + " [-30.872405 13.94567371]\n", + " [-30.872405 9.55924514]\n", + " [-30.872405 5.17281657]\n", + " [-30.872405 0.786388 ]\n", + " [ -0.182405 29.578888 ]\n", + " [ -0.182405 24.202888 ]\n", + " [ -0.182405 18.826888 ]\n", + " [ -0.182405 13.450888 ]\n", + " [ -0.182405 8.074888 ]\n", + " [ -0.182405 2.698888 ]\n", + " [ -2.079905 31.476388 ]\n", + " [ -7.455905 31.476388 ]\n", + " [-12.831905 31.476388 ]\n", + " [-18.207905 31.476388 ]\n", + " [-23.583905 31.476388 ]\n", + " [-28.959905 31.476388 ]\n", + " [ -2.079905 0.801388 ]\n", + " [ -7.455905 0.801388 ]\n", + " [-12.831905 0.801388 ]\n", + " [-18.207905 0.801388 ]\n", + " [-23.583905 0.801388 ]\n", + " [-28.959905 0.801388 ]\n", + " [-30.857405 29.578888 ]\n", + " [-30.857405 24.202888 ]\n", + " [-30.857405 18.826888 ]\n", + " [-30.857405 13.450888 ]\n", + " [-30.857405 8.074888 ]\n", + " [-30.857405 2.698888 ]\n", + " [ -0.182405 31.476388 ]\n", + " [ -0.182405 31.476388 ]\n", + " [-30.857405 0.801388 ]\n", + " [-30.857405 0.801388 ]\n", + " [ -2.079905 29.578888 ]\n", + " [ -7.455905 29.578888 ]\n", + " [-12.831905 29.578888 ]\n", + " [-18.207905 29.578888 ]\n", + " [-23.583905 29.578888 ]\n", + " [-28.959905 29.578888 ]\n", + " [ -2.079905 24.202888 ]\n", + " [ -7.455905 24.202888 ]\n", + " [-12.831905 24.202888 ]\n", + " [-18.207905 24.202888 ]\n", + " [-23.583905 24.202888 ]\n", + " [-28.959905 24.202888 ]\n", + " [ -2.079905 18.826888 ]\n", + " [ -7.455905 18.826888 ]\n", + " [-12.831905 18.826888 ]\n", + " [-18.207905 18.826888 ]\n", + " [-23.583905 18.826888 ]\n", + " [-28.959905 18.826888 ]\n", + " [ -2.079905 13.450888 ]\n", + " [ -7.455905 13.450888 ]\n", + " [-12.831905 13.450888 ]\n", + " [-18.207905 13.450888 ]\n", + " [-23.583905 13.450888 ]\n", + " [-28.959905 13.450888 ]\n", + " [ -2.079905 8.074888 ]\n", + " [ -7.455905 8.074888 ]\n", + " [-12.831905 8.074888 ]\n", + " [-18.20790499 8.074888 ]\n", + " [-23.583905 8.074888 ]\n", + " [-28.959905 8.074888 ]\n", + " [ -2.079905 2.698888 ]\n", + " [ -7.455905 2.698888 ]\n", + " [-12.831905 2.698888 ]\n", + " [-18.207905 2.698888 ]\n", + " [-23.583905 2.698888 ]\n", + " [-28.959905 2.698888 ]]\n", + "DEBUG:root:radec2pix: ccdpx: [[-4.45000000e+01 -4.99999973e-01]\n", + " [-4.45000000e+01 2.91928572e+02]\n", + " [-4.45000000e+01 5.84357143e+02]\n", + " [-4.45000000e+01 8.76785714e+02]\n", + " [-4.45000000e+01 1.16921429e+03]\n", + " [-4.45000000e+01 1.46164286e+03]\n", + " [-4.45000000e+01 1.75407143e+03]\n", + " [-4.45000000e+01 2.04650000e+03]\n", + " [-4.45000000e+01 -4.99999973e-01]\n", + " [ 2.47928571e+02 -4.99999766e-01]\n", + " [ 5.40357143e+02 -5.00000023e-01]\n", + " [ 8.32785714e+02 -4.99999798e-01]\n", + " [ 1.12521429e+03 -5.00000229e-01]\n", + " [ 1.41764286e+03 -5.00000231e-01]\n", + " [ 1.71007143e+03 -4.99999870e-01]\n", + " [ 2.00250000e+03 -4.99999884e-01]\n", + " [-4.45000000e+01 2.04650000e+03]\n", + " [ 2.47928571e+02 2.04650000e+03]\n", + " [ 5.40357143e+02 2.04650000e+03]\n", + " [ 8.32785714e+02 2.04650000e+03]\n", + " [ 1.12521429e+03 2.04650000e+03]\n", + " [ 1.41764286e+03 2.04650000e+03]\n", + " [ 1.71007143e+03 2.04650000e+03]\n", + " [ 2.00250000e+03 2.04650000e+03]\n", + " [ 2.00250000e+03 -4.99999884e-01]\n", + " [ 2.00250000e+03 2.91928572e+02]\n", + " [ 2.00250000e+03 5.84357143e+02]\n", + " [ 2.00250000e+03 8.76785714e+02]\n", + " [ 2.00250000e+03 1.16921429e+03]\n", + " [ 2.00250000e+03 1.46164286e+03]\n", + " [ 2.00250000e+03 1.75407143e+03]\n", + " [ 2.00250000e+03 2.04650000e+03]\n", + " [-4.35000000e+01 1.27000000e+02]\n", + " [-4.35000000e+01 4.85400000e+02]\n", + " [-4.35000000e+01 8.43800000e+02]\n", + " [-4.35000000e+01 1.20220000e+03]\n", + " [-4.35000000e+01 1.56060000e+03]\n", + " [-4.35000000e+01 1.91900000e+03]\n", + " [ 8.30000000e+01 4.99999770e-01]\n", + " [ 4.41400000e+02 5.00000267e-01]\n", + " [ 7.99800000e+02 4.99999825e-01]\n", + " [ 1.15820000e+03 5.00000071e-01]\n", + " [ 1.51660000e+03 5.00000113e-01]\n", + " [ 1.87500000e+03 5.00000214e-01]\n", + " [ 8.30000000e+01 2.04550000e+03]\n", + " [ 4.41400000e+02 2.04550000e+03]\n", + " [ 7.99800000e+02 2.04550000e+03]\n", + " [ 1.15820000e+03 2.04550000e+03]\n", + " [ 1.51660000e+03 2.04550000e+03]\n", + " [ 1.87500000e+03 2.04550000e+03]\n", + " [ 2.00150000e+03 1.27000000e+02]\n", + " [ 2.00150000e+03 4.85400000e+02]\n", + " [ 2.00150000e+03 8.43800000e+02]\n", + " [ 2.00150000e+03 1.20220000e+03]\n", + " [ 2.00150000e+03 1.56060000e+03]\n", + " [ 2.00150000e+03 1.91900000e+03]\n", + " [-4.35000000e+01 5.00000284e-01]\n", + " [-4.35000000e+01 5.00000284e-01]\n", + " [ 2.00150000e+03 2.04550000e+03]\n", + " [ 2.00150000e+03 2.04550000e+03]\n", + " [ 8.30000000e+01 1.27000000e+02]\n", + " [ 4.41400000e+02 1.27000000e+02]\n", + " [ 7.99800000e+02 1.27000000e+02]\n", + " [ 1.15820000e+03 1.27000000e+02]\n", + " [ 1.51660000e+03 1.27000000e+02]\n", + " [ 1.87500000e+03 1.27000000e+02]\n", + " [ 8.30000000e+01 4.85400000e+02]\n", + " [ 4.41400000e+02 4.85400000e+02]\n", + " [ 7.99800000e+02 4.85400000e+02]\n", + " [ 1.15820000e+03 4.85400000e+02]\n", + " [ 1.51660000e+03 4.85400000e+02]\n", + " [ 1.87500000e+03 4.85400000e+02]\n", + " [ 8.30000000e+01 8.43800000e+02]\n", + " [ 4.41400000e+02 8.43800000e+02]\n", + " [ 7.99800000e+02 8.43800000e+02]\n", + " [ 1.15820000e+03 8.43800000e+02]\n", + " [ 1.51660000e+03 8.43800000e+02]\n", + " [ 1.87500000e+03 8.43800000e+02]\n", + " [ 8.30000000e+01 1.20220000e+03]\n", + " [ 4.41400000e+02 1.20220000e+03]\n", + " [ 7.99800000e+02 1.20220000e+03]\n", + " [ 1.15820000e+03 1.20220000e+03]\n", + " [ 1.51660000e+03 1.20220000e+03]\n", + " [ 1.87500000e+03 1.20220000e+03]\n", + " [ 8.30000000e+01 1.56060000e+03]\n", + " [ 4.41400000e+02 1.56060000e+03]\n", + " [ 7.99800000e+02 1.56060000e+03]\n", + " [ 1.15820000e+03 1.56060000e+03]\n", + " [ 1.51660000e+03 1.56060000e+03]\n", + " [ 1.87500000e+03 1.56060000e+03]\n", + " [ 8.30000000e+01 1.91900000e+03]\n", + " [ 4.41400000e+02 1.91900000e+03]\n", + " [ 7.99800000e+02 1.91900000e+03]\n", + " [ 1.15820000e+03 1.91900000e+03]\n", + " [ 1.51660000e+03 1.91900000e+03]\n", + " [ 1.87500000e+03 1.91900000e+03]]\n", + "DEBUG:root:make_az_asym: xyp: shape: (96, 2)\n", + "DEBUG:root:radec2pix: ccdpx: [[-4.45000000e+01 -4.99999951e-01]\n", + " [-4.45000000e+01 2.91928572e+02]\n", + " [-4.45000000e+01 5.84357142e+02]\n", + " [-4.45000000e+01 8.76785714e+02]\n", + " [-4.45000000e+01 1.16921429e+03]\n", + " [-4.45000000e+01 1.46164286e+03]\n", + " [-4.45000000e+01 1.75407143e+03]\n", + " [-4.45000000e+01 2.04650000e+03]\n", + " [-4.45000000e+01 -4.99999951e-01]\n", + " [ 2.47928571e+02 -5.00000176e-01]\n", + " [ 5.40357143e+02 -5.00000069e-01]\n", + " [ 8.32785714e+02 -5.00000257e-01]\n", + " [ 1.12521429e+03 -4.99999992e-01]\n", + " [ 1.41764286e+03 -5.00000241e-01]\n", + " [ 1.71007143e+03 -4.99999730e-01]\n", + " [ 2.00250000e+03 -5.00000010e-01]\n", + " [-4.45000000e+01 2.04650000e+03]\n", + " [ 2.47928571e+02 2.04650000e+03]\n", + " [ 5.40357143e+02 2.04650000e+03]\n", + " [ 8.32785714e+02 2.04650000e+03]\n", + " [ 1.12521429e+03 2.04650000e+03]\n", + " [ 1.41764286e+03 2.04650000e+03]\n", + " [ 1.71007143e+03 2.04650000e+03]\n", + " [ 2.00250000e+03 2.04650000e+03]\n", + " [ 2.00250000e+03 -5.00000010e-01]\n", + " [ 2.00250000e+03 2.91928572e+02]\n", + " [ 2.00250000e+03 5.84357143e+02]\n", + " [ 2.00250000e+03 8.76785714e+02]\n", + " [ 2.00250000e+03 1.16921429e+03]\n", + " [ 2.00250000e+03 1.46164286e+03]\n", + " [ 2.00250000e+03 1.75407143e+03]\n", + " [ 2.00250000e+03 2.04650000e+03]\n", + " [-4.35000000e+01 1.27000000e+02]\n", + " [-4.35000000e+01 4.85400000e+02]\n", + " [-4.35000000e+01 8.43800000e+02]\n", + " [-4.35000000e+01 1.20220000e+03]\n", + " [-4.35000000e+01 1.56060000e+03]\n", + " [-4.35000000e+01 1.91900000e+03]\n", + " [ 8.30000000e+01 4.99999720e-01]\n", + " [ 4.41400000e+02 4.99999983e-01]\n", + " [ 7.99800000e+02 4.99999771e-01]\n", + " [ 1.15820000e+03 4.99999773e-01]\n", + " [ 1.51660000e+03 5.00000075e-01]\n", + " [ 1.87500000e+03 4.99999913e-01]\n", + " [ 8.29999998e+01 2.04550000e+03]\n", + " [ 4.41400000e+02 2.04550000e+03]\n", + " [ 7.99800000e+02 2.04550000e+03]\n", + " [ 1.15820000e+03 2.04550000e+03]\n", + " [ 1.51660000e+03 2.04550000e+03]\n", + " [ 1.87500000e+03 2.04550000e+03]\n", + " [ 2.00150000e+03 1.27000000e+02]\n", + " [ 2.00150000e+03 4.85400000e+02]\n", + " [ 2.00150000e+03 8.43800000e+02]\n", + " [ 2.00150000e+03 1.20220000e+03]\n", + " [ 2.00150000e+03 1.56060000e+03]\n", + " [ 2.00150000e+03 1.91900000e+03]\n", + " [-4.35000000e+01 4.99999930e-01]\n", + " [-4.35000000e+01 4.99999930e-01]\n", + " [ 2.00150000e+03 2.04550000e+03]\n", + " [ 2.00150000e+03 2.04550000e+03]\n", + " [ 8.30000000e+01 1.27000000e+02]\n", + " [ 4.41400000e+02 1.27000000e+02]\n", + " [ 7.99800000e+02 1.27000000e+02]\n", + " [ 1.15820000e+03 1.27000000e+02]\n", + " [ 1.51660000e+03 1.27000000e+02]\n", + " [ 1.87500000e+03 1.27000000e+02]\n", + " [ 8.30000000e+01 4.85400000e+02]\n", + " [ 4.41400000e+02 4.85400000e+02]\n", + " [ 7.99800000e+02 4.85400000e+02]\n", + " [ 1.15820000e+03 4.85400000e+02]\n", + " [ 1.51660000e+03 4.85400000e+02]\n", + " [ 1.87500000e+03 4.85400000e+02]\n", + " [ 8.30000000e+01 8.43800000e+02]\n", + " [ 4.41400000e+02 8.43800000e+02]\n", + " [ 7.99800000e+02 8.43800000e+02]\n", + " [ 1.15820000e+03 8.43800000e+02]\n", + " [ 1.51660000e+03 8.43800000e+02]\n", + " [ 1.87500000e+03 8.43800000e+02]\n", + " [ 8.30000000e+01 1.20220000e+03]\n", + " [ 4.41400000e+02 1.20220000e+03]\n", + " [ 7.99800000e+02 1.20220000e+03]\n", + " [ 1.15820000e+03 1.20220000e+03]\n", + " [ 1.51660000e+03 1.20220000e+03]\n", + " [ 1.87500000e+03 1.20220000e+03]\n", + " [ 8.30000000e+01 1.56060000e+03]\n", + " [ 4.41400000e+02 1.56060000e+03]\n", + " [ 7.99800000e+02 1.56060000e+03]\n", + " [ 1.15820000e+03 1.56060000e+03]\n", + " [ 1.51660000e+03 1.56060000e+03]\n", + " [ 1.87500000e+03 1.56060000e+03]\n", + " [ 8.30000000e+01 1.91900000e+03]\n", + " [ 4.41400000e+02 1.91900000e+03]\n", + " [ 7.99800000e+02 1.91900000e+03]\n", + " [ 1.15820000e+03 1.91900000e+03]\n", + " [ 1.51660000e+03 1.91900000e+03]\n", + " [ 1.87500000e+03 1.91900000e+03]]\n", + "DEBUG:root:radec2pix: xyfp: [[ -0.230877 31.363511 ]\n", + " [ -0.230877 26.97708243]\n", + " [ -0.230877 22.59065386]\n", + " [ -0.230877 18.20422528]\n", + " [ -0.230877 13.81779671]\n", + " [ -0.230877 9.43136815]\n", + " [ -0.230877 5.04493957]\n", + " [ -0.230877 0.658511 ]\n", + " [ -0.230877 31.363511 ]\n", + " [ -4.61730557 31.363511 ]\n", + " [ -9.00373414 31.363511 ]\n", + " [-13.39016272 31.363511 ]\n", + " [-17.77659129 31.363511 ]\n", + " [-22.16301986 31.363511 ]\n", + " [-26.54944843 31.363511 ]\n", + " [-30.935877 31.363511 ]\n", + " [ -0.230877 0.658511 ]\n", + " [ -4.61730558 0.658511 ]\n", + " [ -9.00373414 0.658511 ]\n", + " [-13.39016271 0.658511 ]\n", + " [-17.77659128 0.658511 ]\n", + " [-22.16301986 0.658511 ]\n", + " [-26.54944843 0.658511 ]\n", + " [-30.935877 0.658511 ]\n", + " [-30.935877 31.363511 ]\n", + " [-30.935877 26.97708243]\n", + " [-30.935877 22.59065386]\n", + " [-30.935877 18.20422528]\n", + " [-30.935877 13.81779671]\n", + " [-30.935877 9.43136814]\n", + " [-30.935877 5.04493957]\n", + " [-30.935877 0.658511 ]\n", + " [ -0.245877 29.451011 ]\n", + " [ -0.245877 24.075011 ]\n", + " [ -0.245877 18.699011 ]\n", + " [ -0.245877 13.323011 ]\n", + " [ -0.245877 7.947011 ]\n", + " [ -0.245877 2.571011 ]\n", + " [ -2.143377 31.348511 ]\n", + " [ -7.519377 31.348511 ]\n", + " [-12.895377 31.348511 ]\n", + " [-18.271377 31.348511 ]\n", + " [-23.647377 31.348511 ]\n", + " [-29.023377 31.348511 ]\n", + " [ -2.143377 0.673511 ]\n", + " [ -7.519377 0.673511 ]\n", + " [-12.895377 0.673511 ]\n", + " [-18.271377 0.673511 ]\n", + " [-23.64737701 0.673511 ]\n", + " [-29.023377 0.673511 ]\n", + " [-30.920877 29.451011 ]\n", + " [-30.920877 24.075011 ]\n", + " [-30.920877 18.699011 ]\n", + " [-30.920877 13.323011 ]\n", + " [-30.920877 7.947011 ]\n", + " [-30.920877 2.571011 ]\n", + " [ -0.245877 31.348511 ]\n", + " [ -0.245877 31.348511 ]\n", + " [-30.920877 0.673511 ]\n", + " [-30.920877 0.673511 ]\n", + " [ -2.143377 29.451011 ]\n", + " [ -7.519377 29.451011 ]\n", + " [-12.895377 29.451011 ]\n", + " [-18.271377 29.451011 ]\n", + " [-23.647377 29.451011 ]\n", + " [-29.023377 29.451011 ]\n", + " [ -2.143377 24.075011 ]\n", + " [ -7.519377 24.075011 ]\n", + " [-12.895377 24.075011 ]\n", + " [-18.271377 24.075011 ]\n", + " [-23.647377 24.075011 ]\n", + " [-29.023377 24.075011 ]\n", + " [ -2.143377 18.699011 ]\n", + " [ -7.519377 18.699011 ]\n", + " [-12.895377 18.699011 ]\n", + " [-18.271377 18.699011 ]\n", + " [-23.647377 18.699011 ]\n", + " [-29.023377 18.699011 ]\n", + " [ -2.143377 13.323011 ]\n", + " [ -7.519377 13.323011 ]\n", + " [-12.895377 13.323011 ]\n", + " [-18.271377 13.323011 ]\n", + " [-23.647377 13.323011 ]\n", + " [-29.023377 13.323011 ]\n", + " [ -2.143377 7.947011 ]\n", + " [ -7.519377 7.947011 ]\n", + " [-12.895377 7.947011 ]\n", + " [-18.271377 7.947011 ]\n", + " [-23.647377 7.947011 ]\n", + " [-29.023377 7.947011 ]\n", + " [ -2.143377 2.571011 ]\n", + " [ -7.519377 2.571011 ]\n", + " [-12.895377 2.571011 ]\n", + " [-18.271377 2.571011 ]\n", + " [-23.647377 2.571011 ]\n", + " [-29.023377 2.571011 ]]\n", + "DEBUG:root:make_az_asym: xyp: [[ 0.16415906 -31.72847131]\n", + " [ 0.16601788 -27.34204313]\n", + " [ 0.1678767 -22.95561497]\n", + " [ 0.16973552 -18.56918678]\n", + " [ 0.17159434 -14.1827586 ]\n", + " [ 0.17345315 -9.79633043]\n", + " [ 0.17531197 -5.40990225]\n", + " [ 0.17717079 -1.02347407]\n", + " [ 0.16415906 -31.72847131]\n", + " [ 4.55058724 -31.73033014]\n", + " [ 8.93701541 -31.73218895]\n", + " [ 13.32344359 -31.73404778]\n", + " [ 17.70987177 -31.73590659]\n", + " [ 22.09629995 -31.73776541]\n", + " [ 26.48272812 -31.73962422]\n", + " [ 30.8691563 -31.74148305]\n", + " [ 0.17717079 -1.02347407]\n", + " [ 4.56359897 -1.02533289]\n", + " [ 8.95002714 -1.02719171]\n", + " [ 13.33645532 -1.02905053]\n", + " [ 17.7228835 -1.03090935]\n", + " [ 22.10931168 -1.03276817]\n", + " [ 26.49573986 -1.03462699]\n", + " [ 30.88216803 -1.0364858 ]\n", + " [ 30.8691563 -31.74148305]\n", + " [ 30.87101512 -27.35505487]\n", + " [ 30.87287394 -22.96862669]\n", + " [ 30.87473276 -18.58219851]\n", + " [ 30.87659158 -14.19577034]\n", + " [ 30.8784504 -9.80934216]\n", + " [ 30.88030922 -5.42291398]\n", + " [ 30.88216803 -1.0364858 ]\n", + " [ 0.17996951 -29.81597784]\n", + " [ 0.18224768 -24.43997833]\n", + " [ 0.18452584 -19.06397881]\n", + " [ 0.18680401 -13.6879793 ]\n", + " [ 0.18908217 -8.31197977]\n", + " [ 0.19136034 -2.93598025]\n", + " [ 2.07666524 -31.71428177]\n", + " [ 7.45266476 -31.71655993]\n", + " [ 12.82866428 -31.7188381 ]\n", + " [ 18.2046638 -31.72111627]\n", + " [ 23.58066331 -31.72339443]\n", + " [ 28.95666283 -31.7256726 ]\n", + " [ 2.08966426 -1.03928452]\n", + " [ 7.46566378 -1.04156269]\n", + " [ 12.8416633 -1.04384085]\n", + " [ 18.21766282 -1.04611902]\n", + " [ 23.59366233 -1.04839718]\n", + " [ 28.96966185 -1.05067535]\n", + " [ 30.85496675 -29.82897686]\n", + " [ 30.85724492 -24.45297735]\n", + " [ 30.85952308 -19.07697783]\n", + " [ 30.86180126 -13.70097831]\n", + " [ 30.86407941 -8.32497879]\n", + " [ 30.86635759 -2.94897928]\n", + " [ 0.17916541 -31.71347767]\n", + " [ 0.17916541 -31.71347767]\n", + " [ 30.86716168 -1.05147945]\n", + " [ 30.86716168 -1.05147945]\n", + " [ 2.07746934 -29.81678193]\n", + " [ 7.45346886 -29.8190601 ]\n", + " [ 12.82946837 -29.82133827]\n", + " [ 18.20546789 -29.82361643]\n", + " [ 23.58146741 -29.82589461]\n", + " [ 28.95746693 -29.82817277]\n", + " [ 2.07974751 -24.44078242]\n", + " [ 7.45574702 -24.44306058]\n", + " [ 12.83174654 -24.44533875]\n", + " [ 18.20774606 -24.44761692]\n", + " [ 23.58374558 -24.44989508]\n", + " [ 28.95974509 -24.45217325]\n", + " [ 2.08202567 -19.0647829 ]\n", + " [ 7.45802519 -19.06706107]\n", + " [ 12.83402471 -19.06933924]\n", + " [ 18.21002422 -19.0716174 ]\n", + " [ 23.58602374 -19.07389557]\n", + " [ 28.96202325 -19.07617373]\n", + " [ 2.08430384 -13.68878339]\n", + " [ 7.46030335 -13.69106155]\n", + " [ 12.83630287 -13.69333972]\n", + " [ 18.21230239 -13.69561789]\n", + " [ 23.58830191 -13.69789605]\n", + " [ 28.96430143 -13.70017422]\n", + " [ 2.086582 -8.31278387]\n", + " [ 7.46258152 -8.31506203]\n", + " [ 12.83858103 -8.3173402 ]\n", + " [ 18.21458055 -8.31961837]\n", + " [ 23.59058007 -8.32189653]\n", + " [ 28.96657959 -8.3241747 ]\n", + " [ 2.08886017 -2.93678435]\n", + " [ 7.46485969 -2.93906252]\n", + " [ 12.8408592 -2.94134068]\n", + " [ 18.21685872 -2.94361885]\n", + " [ 23.59285824 -2.94589701]\n", + " [ 28.96885776 -2.94817518]]\n", + "DEBUG:root:make_az_asym: xyp: shape: (96, 2)\n", + "DEBUG:root:cartToSphere: vec: [[-0.00156258 0.20900824 0.97791263]\n", + " [-0.00157957 0.18154377 0.9833816 ]\n", + " [-0.00159468 0.15338464 0.98816527]\n", + " [-0.00160787 0.12463517 0.99220134]\n", + " [-0.00161907 0.09540199 0.99543751]\n", + " [-0.00162822 0.06579532 0.99783181]\n", + " [-0.00163527 0.03592916 0.999353 ]\n", + " [-0.00164017 0.00592057 0.99998113]\n", + " [-0.00156258 0.20900824 0.97791263]\n", + " [-0.0305812 0.20886066 0.97746714]\n", + " [-0.05948043 0.2084416 0.97622445]\n", + " [-0.08814769 0.2077524 0.97420169]\n", + " [-0.11647141 0.20679486 0.97142694]\n", + " [-0.14434091 0.20557063 0.96793926]\n", + " [-0.17164574 0.20408052 0.96378882]\n", + " [-0.19827444 0.20232383 0.95903718]\n", + " [-0.00164017 0.00592057 0.99998113]\n", + " [-0.03165868 0.00591961 0.99948121]\n", + " [-0.06155164 0.00591082 0.9980864 ]\n", + " [-0.09120162 0.00589429 0.995815 ]\n", + " [-0.12049415 0.00587015 0.99269668]\n", + " [-0.14931846 0.00583856 0.98877192]\n", + " [-0.17756745 0.00579969 0.98409154]\n", + " [-0.20513658 0.00575368 0.97871644]\n", + " [-0.19827444 0.20232383 0.95903718]\n", + " [-0.2000398 0.17576331 0.96389384]\n", + " [-0.20154417 0.1485108 0.9681552 ]\n", + " [-0.20278831 0.12067777 0.97175809]\n", + " [-0.20377138 0.09237455 0.97465079]\n", + " [-0.20449167 0.06371165 0.9767927 ]\n", + " [-0.20494724 0.03480051 0.97815416]\n", + " [-0.20513658 0.00575368 0.97871644]\n", + " [-0.00166992 0.19712565 0.98037681]\n", + " [-0.00169047 0.16298492 0.98662711]\n", + " [-0.00170796 0.12790428 0.99178505]\n", + " [-0.0017223 0.09207897 0.99575022]\n", + " [-0.00173334 0.05571194 0.99844538]\n", + " [-0.001741 0.01901436 0.99981769]\n", + " [-0.0142227 0.20888472 0.97783684]\n", + " [-0.04972296 0.20852129 0.97675304]\n", + " [-0.08493191 0.20775151 0.9744875 ]\n", + " [-0.1196437 0.20657854 0.97108738]\n", + " [-0.15365451 0.20500532 0.9666246 ]\n", + " [-0.18676067 0.20303275 0.96119621]\n", + " [-0.01473616 0.00602383 0.99987327]\n", + " [-0.05145726 0.00601719 0.99865707]\n", + " [-0.08787283 0.00599868 0.99611364]\n", + " [-0.12377083 0.00596852 0.99229288]\n", + " [-0.15894736 0.005927 0.98726927]\n", + " [-0.19320639 0.00587443 0.98114055]\n", + " [-0.19898619 0.19084173 0.96124083]\n", + " [-0.20097311 0.15780847 0.9668021 ]\n", + " [-0.20256914 0.12384677 0.97140502]\n", + " [-0.20377339 0.08916013 0.97494968]\n", + " [-0.20458276 0.05395206 0.97736128]\n", + " [-0.20499385 0.01842821 0.97858976]\n", + " [-0.00166195 0.20891558 0.97793227]\n", + " [-0.00166195 0.20891558 0.97793227]\n", + " [-0.20504339 0.00585328 0.97873538]\n", + " [-0.20504339 0.00585328 0.97873538]\n", + " [-0.01428012 0.19709662 0.98028006]\n", + " [-0.04992014 0.19675396 0.97918122]\n", + " [-0.08526785 0.1960282 0.976884 ]\n", + " [-0.1201171 0.19492287 0.97343565]\n", + " [-0.15426444 0.19344162 0.96890806]\n", + " [-0.18750721 0.19158618 0.96339804]\n", + " [-0.01442512 0.16296111 0.98652704]\n", + " [-0.05041664 0.16267787 0.98539031]\n", + " [-0.08611259 0.16207774 0.98301344]\n", + " [-0.12130566 0.1611649 0.97944414]\n", + " [-0.1557929 0.15994417 0.97475455]\n", + " [-0.1893742 0.15841917 0.96904116]\n", + " [-0.01454351 0.12788582 0.99168226]\n", + " [-0.0508198 0.12766348 0.99051471]\n", + " [-0.08679712 0.12719172 0.98807314]\n", + " [-0.1222667 0.12647465 0.98440592]\n", + " [-0.15702557 0.12551724 0.97958583]\n", + " [-0.19087549 0.12432386 0.97370947]\n", + " [-0.01463451 0.09206603 0.99564536]\n", + " [-0.05112705 0.09190638 0.99445424]\n", + " [-0.08731762 0.09156653 0.99196331]\n", + " [-0.122996 0.09104984 0.98822159]\n", + " [-0.15795892 0.09036055 0.98330257]\n", + " [-0.19200933 0.08950266 0.97730327]\n", + " [-0.01469728 0.05570466 0.99833911]\n", + " [-0.05133568 0.05560934 0.99713201]\n", + " [-0.08766989 0.05540465 0.99460762]\n", + " [-0.12348855 0.05509277 0.9908155 ]\n", + " [-0.15858803 0.05467653 0.98582976]\n", + " [-0.19277198 0.0541587 0.97974782]\n", + " [-0.01473117 0.01901283 0.99971071]\n", + " [-0.05144352 0.01898296 0.99849547]\n", + " [-0.08785049 0.01891568 0.99595406]\n", + " [-0.12374011 0.01881174 0.99213633]\n", + " [-0.1589085 0.01867213 0.98711673]\n", + " [-0.19315962 0.01849786 0.98099296]]\n", + "DEBUG:root:optics_fp: xyfp: [[-32.208296 -31.60697943]\n", + " [-32.20831882 -27.22055086]\n", + " [-32.20834163 -22.83412229]\n", + " [-32.20836444 -18.44769372]\n", + " [-32.20838725 -14.06126515]\n", + " [-32.20841007 -9.67483658]\n", + " [-32.20843288 -5.288408 ]\n", + " [-32.2084557 -0.90197943]\n", + " [-32.208296 -31.60697943]\n", + " [-27.82186743 -31.60695662]\n", + " [-23.43543886 -31.60693381]\n", + " [-19.04901029 -31.60691099]\n", + " [-14.66258171 -31.60688818]\n", + " [-10.27615314 -31.60686536]\n", + " [ -5.88972457 -31.60684255]\n", + " [ -1.503296 -31.60681974]\n", + " [-32.2084557 -0.90197943]\n", + " [-27.82202712 -0.90195662]\n", + " [-23.43559855 -0.9019338 ]\n", + " [-19.04916999 -0.90191099]\n", + " [-14.66274141 -0.90188818]\n", + " [-10.27631284 -0.90186536]\n", + " [ -5.88988428 -0.90184255]\n", + " [ -1.5034557 -0.90181973]\n", + " [ -1.503296 -31.60681974]\n", + " [ -1.50331881 -27.22039116]\n", + " [ -1.50334163 -22.83396259]\n", + " [ -1.50336444 -18.44753402]\n", + " [ -1.50338726 -14.06110544]\n", + " [ -1.50341007 -9.67467688]\n", + " [ -1.50343288 -5.2882483 ]\n", + " [ -1.5034557 -0.90181973]\n", + " [-32.19330594 -29.69447935]\n", + " [-32.19333391 -24.31847935]\n", + " [-32.19336187 -18.94247936]\n", + " [-32.19338983 -13.56647936]\n", + " [-32.19341779 -8.19047935]\n", + " [-32.19344575 -2.81447935]\n", + " [-30.29579608 -31.59196949]\n", + " [-24.91979608 -31.59194152]\n", + " [-19.54379608 -31.59191356]\n", + " [-14.16779608 -31.5918856 ]\n", + " [ -8.79179608 -31.59185764]\n", + " [ -3.41579608 -31.59182968]\n", + " [-30.29595562 -0.91696949]\n", + " [-24.91995562 -0.91694153]\n", + " [-19.54395562 -0.91691356]\n", + " [-14.16795562 -0.9168856 ]\n", + " [ -8.79195562 -0.91685764]\n", + " [ -3.41595563 -0.91682968]\n", + " [ -1.51830595 -29.69431981]\n", + " [ -1.51833391 -24.31831981]\n", + " [ -1.51836187 -18.94231981]\n", + " [ -1.51838983 -13.56631981]\n", + " [ -1.51841779 -8.19031981]\n", + " [ -1.51844575 -2.81431982]\n", + " [-32.19329608 -31.59197936]\n", + " [-32.19329608 -31.59197936]\n", + " [ -1.51845562 -0.91681981]\n", + " [ -1.51845562 -0.91681981]\n", + " [-30.29580595 -29.69446949]\n", + " [-24.91980594 -29.69444152]\n", + " [-19.54380595 -29.69441356]\n", + " [-14.16780595 -29.69438561]\n", + " [ -8.79180595 -29.69435764]\n", + " [ -3.41580595 -29.69432968]\n", + " [-30.29583391 -24.31846949]\n", + " [-24.91983391 -24.31844152]\n", + " [-19.54383391 -24.31841356]\n", + " [-14.16783391 -24.31838561]\n", + " [ -8.79183391 -24.31835764]\n", + " [ -3.41583391 -24.31832968]\n", + " [-30.29586187 -18.94246949]\n", + " [-24.91986187 -18.94244153]\n", + " [-19.54386187 -18.94241356]\n", + " [-14.16786187 -18.94238561]\n", + " [ -8.79186187 -18.94235764]\n", + " [ -3.41586187 -18.94232969]\n", + " [-30.29588983 -13.56646949]\n", + " [-24.91988983 -13.56644152]\n", + " [-19.54388984 -13.56641357]\n", + " [-14.16788983 -13.5663856 ]\n", + " [ -8.79188983 -13.56635764]\n", + " [ -3.41588983 -13.56632968]\n", + " [-30.29591779 -8.19046949]\n", + " [-24.91991779 -8.19044152]\n", + " [-19.54391779 -8.19041356]\n", + " [-14.16791779 -8.1903856 ]\n", + " [ -8.79191779 -8.19035764]\n", + " [ -3.41591779 -8.19032968]\n", + " [-30.29594575 -2.81446949]\n", + " [-24.91994576 -2.81444153]\n", + " [-19.54394575 -2.81441356]\n", + " [-14.16794576 -2.8143856 ]\n", + " [ -8.79194575 -2.81435764]\n", + " [ -3.41594575 -2.81432968]]\n", + "DEBUG:root:optics_fp: xyfp shape: (96, 2)\n", + "DEBUG:root:radec2pix: lng: [ 90.42834373 90.49850377 90.5956611 90.73910961 90.97227481\n", + " 91.41759428 92.60593903 105.48424091 90.42834373 98.33000716\n", + " 105.9265086 112.99112584 119.3891666 125.0745167 130.06614193\n", + " 134.42085308 105.48424091 169.40901167 174.51469037 176.30215943\n", + " 177.21090794 177.76079422 178.12927502 178.39338736 134.42085308\n", + " 138.69611239 143.61480744 149.24344747 155.61405077 162.69499667\n", + " 170.36296391 178.39338736 90.48535945 90.59424595 90.76505154\n", + " 91.07156688 91.78204394 95.23155859 93.89518731 103.41200836\n", + " 112.23547382 120.07805375 126.85210045 132.60955299 157.76630729\n", + " 173.33036525 176.09473451 177.23920333 177.86448301 178.25846094\n", + " 136.19687489 141.86022321 148.55920823 156.36843482 165.22645267\n", + " 174.86312285 90.45578538 90.45578538 178.36484692 178.36484692\n", + " 94.14397512 104.23659596 113.5079539 121.64257424 128.57141019\n", + " 134.38353176 95.05856666 107.21909912 117.98189812 126.96805941\n", + " 134.24672537 140.08615622 96.48795214 111.70632897 124.31008611\n", + " 134.03082213 141.36316306 146.92239982 99.03197846 119.08696476\n", + " 133.63934958 143.48868891 150.22824427 155.00803043 104.7802641\n", + " 132.71160718 147.70838425 155.95659867 160.97729932 164.30745367\n", + " 127.76858297 159.74564279 167.84877649 171.35573132 173.29833797\n", + " 174.52977301]\n", + "DEBUG:root:radec2pix: fitpx: [[ 2.13550000e+03 -4.99999973e-01]\n", + " [ 2.13550000e+03 2.91928572e+02]\n", + " [ 2.13550000e+03 5.84357143e+02]\n", + " [ 2.13550000e+03 8.76785714e+02]\n", + " [ 2.13550000e+03 1.16921429e+03]\n", + " [ 2.13550000e+03 1.46164286e+03]\n", + " [ 2.13550000e+03 1.75407143e+03]\n", + " [ 2.13550000e+03 2.04650000e+03]\n", + " [ 2.13550000e+03 -4.99999973e-01]\n", + " [ 2.42792857e+03 -4.99999766e-01]\n", + " [ 2.72035714e+03 -5.00000023e-01]\n", + " [ 3.01278571e+03 -4.99999798e-01]\n", + " [ 3.30521429e+03 -5.00000229e-01]\n", + " [ 3.59764286e+03 -5.00000231e-01]\n", + " [ 3.89007143e+03 -4.99999870e-01]\n", + " [ 4.18250000e+03 -4.99999884e-01]\n", + " [ 2.13550000e+03 2.04650000e+03]\n", + " [ 2.42792857e+03 2.04650000e+03]\n", + " [ 2.72035714e+03 2.04650000e+03]\n", + " [ 3.01278571e+03 2.04650000e+03]\n", + " [ 3.30521429e+03 2.04650000e+03]\n", + " [ 3.59764286e+03 2.04650000e+03]\n", + " [ 3.89007143e+03 2.04650000e+03]\n", + " [ 4.18250000e+03 2.04650000e+03]\n", + " [ 4.18250000e+03 -4.99999884e-01]\n", + " [ 4.18250000e+03 2.91928572e+02]\n", + " [ 4.18250000e+03 5.84357143e+02]\n", + " [ 4.18250000e+03 8.76785714e+02]\n", + " [ 4.18250000e+03 1.16921429e+03]\n", + " [ 4.18250000e+03 1.46164286e+03]\n", + " [ 4.18250000e+03 1.75407143e+03]\n", + " [ 4.18250000e+03 2.04650000e+03]\n", + " [ 2.13650000e+03 1.27000000e+02]\n", + " [ 2.13650000e+03 4.85400000e+02]\n", + " [ 2.13650000e+03 8.43800000e+02]\n", + " [ 2.13650000e+03 1.20220000e+03]\n", + " [ 2.13650000e+03 1.56060000e+03]\n", + " [ 2.13650000e+03 1.91900000e+03]\n", + " [ 2.26300000e+03 4.99999770e-01]\n", + " [ 2.62140000e+03 5.00000267e-01]\n", + " [ 2.97980000e+03 4.99999825e-01]\n", + " [ 3.33820000e+03 5.00000071e-01]\n", + " [ 3.69660000e+03 5.00000113e-01]\n", + " [ 4.05500000e+03 5.00000214e-01]\n", + " [ 2.26300000e+03 2.04550000e+03]\n", + " [ 2.62140000e+03 2.04550000e+03]\n", + " [ 2.97980000e+03 2.04550000e+03]\n", + " [ 3.33820000e+03 2.04550000e+03]\n", + " [ 3.69660000e+03 2.04550000e+03]\n", + " [ 4.05500000e+03 2.04550000e+03]\n", + " [ 4.18150000e+03 1.27000000e+02]\n", + " [ 4.18150000e+03 4.85400000e+02]\n", + " [ 4.18150000e+03 8.43800000e+02]\n", + " [ 4.18150000e+03 1.20220000e+03]\n", + " [ 4.18150000e+03 1.56060000e+03]\n", + " [ 4.18150000e+03 1.91900000e+03]\n", + " [ 2.13650000e+03 5.00000284e-01]\n", + " [ 2.13650000e+03 5.00000284e-01]\n", + " [ 4.18150000e+03 2.04550000e+03]\n", + " [ 4.18150000e+03 2.04550000e+03]\n", + " [ 2.26300000e+03 1.27000000e+02]\n", + " [ 2.62140000e+03 1.27000000e+02]\n", + " [ 2.97980000e+03 1.27000000e+02]\n", + " [ 3.33820000e+03 1.27000000e+02]\n", + " [ 3.69660000e+03 1.27000000e+02]\n", + " [ 4.05500000e+03 1.27000000e+02]\n", + " [ 2.26300000e+03 4.85400000e+02]\n", + " [ 2.62140000e+03 4.85400000e+02]\n", + " [ 2.97980000e+03 4.85400000e+02]\n", + " [ 3.33820000e+03 4.85400000e+02]\n", + " [ 3.69660000e+03 4.85400000e+02]\n", + " [ 4.05500000e+03 4.85400000e+02]\n", + " [ 2.26300000e+03 8.43800000e+02]\n", + " [ 2.62140000e+03 8.43800000e+02]\n", + " [ 2.97980000e+03 8.43800000e+02]\n", + " [ 3.33820000e+03 8.43800000e+02]\n", + " [ 3.69660000e+03 8.43800000e+02]\n", + " [ 4.05500000e+03 8.43800000e+02]\n", + " [ 2.26300000e+03 1.20220000e+03]\n", + " [ 2.62140000e+03 1.20220000e+03]\n", + " [ 2.97980000e+03 1.20220000e+03]\n", + " [ 3.33820000e+03 1.20220000e+03]\n", + " [ 3.69660000e+03 1.20220000e+03]\n", + " [ 4.05500000e+03 1.20220000e+03]\n", + " [ 2.26300000e+03 1.56060000e+03]\n", + " [ 2.62140000e+03 1.56060000e+03]\n", + " [ 2.97980000e+03 1.56060000e+03]\n", + " [ 3.33820000e+03 1.56060000e+03]\n", + " [ 3.69660000e+03 1.56060000e+03]\n", + " [ 4.05500000e+03 1.56060000e+03]\n", + " [ 2.26300000e+03 1.91900000e+03]\n", + " [ 2.62140000e+03 1.91900000e+03]\n", + " [ 2.97980000e+03 1.91900000e+03]\n", + " [ 3.33820000e+03 1.91900000e+03]\n", + " [ 3.69660000e+03 1.91900000e+03]\n", + " [ 4.05500000e+03 1.91900000e+03]]\n", + "DEBUG:root:fitpix2pix: ccdpx: shape: (96, 2)\n", + "DEBUG:root:fitpix2pix: visCut: True\n", + "DEBUG:root:radec2pix: fitpx: [[ 2.13550000e+03 -4.99999951e-01]\n", + " [ 2.13550000e+03 2.91928572e+02]\n", + " [ 2.13550000e+03 5.84357142e+02]\n", + " [ 2.13550000e+03 8.76785714e+02]\n", + " [ 2.13550000e+03 1.16921429e+03]\n", + " [ 2.13550000e+03 1.46164286e+03]\n", + " [ 2.13550000e+03 1.75407143e+03]\n", + " [ 2.13550000e+03 2.04650000e+03]\n", + " [ 2.13550000e+03 -4.99999951e-01]\n", + " [ 2.42792857e+03 -5.00000176e-01]\n", + " [ 2.72035714e+03 -5.00000069e-01]\n", + " [ 3.01278571e+03 -5.00000257e-01]\n", + " [ 3.30521429e+03 -4.99999992e-01]\n", + " [ 3.59764286e+03 -5.00000241e-01]\n", + " [ 3.89007143e+03 -4.99999730e-01]\n", + " [ 4.18250000e+03 -5.00000010e-01]\n", + " [ 2.13550000e+03 2.04650000e+03]\n", + " [ 2.42792857e+03 2.04650000e+03]\n", + " [ 2.72035714e+03 2.04650000e+03]\n", + " [ 3.01278571e+03 2.04650000e+03]\n", + " [ 3.30521429e+03 2.04650000e+03]\n", + " [ 3.59764286e+03 2.04650000e+03]\n", + " [ 3.89007143e+03 2.04650000e+03]\n", + " [ 4.18250000e+03 2.04650000e+03]\n", + " [ 4.18250000e+03 -5.00000010e-01]\n", + " [ 4.18250000e+03 2.91928572e+02]\n", + " [ 4.18250000e+03 5.84357143e+02]\n", + " [ 4.18250000e+03 8.76785714e+02]\n", + " [ 4.18250000e+03 1.16921429e+03]\n", + " [ 4.18250000e+03 1.46164286e+03]\n", + " [ 4.18250000e+03 1.75407143e+03]\n", + " [ 4.18250000e+03 2.04650000e+03]\n", + " [ 2.13650000e+03 1.27000000e+02]\n", + " [ 2.13650000e+03 4.85400000e+02]\n", + " [ 2.13650000e+03 8.43800000e+02]\n", + " [ 2.13650000e+03 1.20220000e+03]\n", + " [ 2.13650000e+03 1.56060000e+03]\n", + " [ 2.13650000e+03 1.91900000e+03]\n", + " [ 2.26300000e+03 4.99999720e-01]\n", + " [ 2.62140000e+03 4.99999983e-01]\n", + " [ 2.97980000e+03 4.99999771e-01]\n", + " [ 3.33820000e+03 4.99999773e-01]\n", + " [ 3.69660000e+03 5.00000075e-01]\n", + " [ 4.05500000e+03 4.99999913e-01]\n", + " [ 2.26300000e+03 2.04550000e+03]\n", + " [ 2.62140000e+03 2.04550000e+03]\n", + " [ 2.97980000e+03 2.04550000e+03]\n", + " [ 3.33820000e+03 2.04550000e+03]\n", + " [ 3.69660000e+03 2.04550000e+03]\n", + " [ 4.05500000e+03 2.04550000e+03]\n", + " [ 4.18150000e+03 1.27000000e+02]\n", + " [ 4.18150000e+03 4.85400000e+02]\n", + " [ 4.18150000e+03 8.43800000e+02]\n", + " [ 4.18150000e+03 1.20220000e+03]\n", + " [ 4.18150000e+03 1.56060000e+03]\n", + " [ 4.18150000e+03 1.91900000e+03]\n", + " [ 2.13650000e+03 4.99999930e-01]\n", + " [ 2.13650000e+03 4.99999930e-01]\n", + " [ 4.18150000e+03 2.04550000e+03]\n", + " [ 4.18150000e+03 2.04550000e+03]\n", + " [ 2.26300000e+03 1.27000000e+02]\n", + " [ 2.62140000e+03 1.27000000e+02]\n", + " [ 2.97980000e+03 1.27000000e+02]\n", + " [ 3.33820000e+03 1.27000000e+02]\n", + " [ 3.69660000e+03 1.27000000e+02]\n", + " [ 4.05500000e+03 1.27000000e+02]\n", + " [ 2.26300000e+03 4.85400000e+02]\n", + " [ 2.62140000e+03 4.85400000e+02]\n", + " [ 2.97980000e+03 4.85400000e+02]\n", + " [ 3.33820000e+03 4.85400000e+02]\n", + " [ 3.69660000e+03 4.85400000e+02]\n", + " [ 4.05500000e+03 4.85400000e+02]\n", + " [ 2.26300000e+03 8.43800000e+02]\n", + " [ 2.62140000e+03 8.43800000e+02]\n", + " [ 2.97980000e+03 8.43800000e+02]\n", + " [ 3.33820000e+03 8.43800000e+02]\n", + " [ 3.69660000e+03 8.43800000e+02]\n", + " [ 4.05500000e+03 8.43800000e+02]\n", + " [ 2.26300000e+03 1.20220000e+03]\n", + " [ 2.62140000e+03 1.20220000e+03]\n", + " [ 2.97980000e+03 1.20220000e+03]\n", + " [ 3.33820000e+03 1.20220000e+03]\n", + " [ 3.69660000e+03 1.20220000e+03]\n", + " [ 4.05500000e+03 1.20220000e+03]\n", + " [ 2.26300000e+03 1.56060000e+03]\n", + " [ 2.62140000e+03 1.56060000e+03]\n", + " [ 2.97980000e+03 1.56060000e+03]\n", + " [ 3.33820000e+03 1.56060000e+03]\n", + " [ 3.69660000e+03 1.56060000e+03]\n", + " [ 4.05500000e+03 1.56060000e+03]\n", + " [ 2.26300000e+03 1.91900000e+03]\n", + " [ 2.62140000e+03 1.91900000e+03]\n", + " [ 2.97980000e+03 1.91900000e+03]\n", + " [ 3.33820000e+03 1.91900000e+03]\n", + " [ 3.69660000e+03 1.91900000e+03]\n", + " [ 4.05500000e+03 1.91900000e+03]]\n", + "DEBUG:root:fitpix2pix: ccdpx: shape: (96, 2)\n", + "DEBUG:root:fitpix2pix: visCut: True\n", + "DEBUG:root:radec2pix: ccdpx: [[-4.45000000e+01 -5.00000261e-01]\n", + " [-4.45000000e+01 2.91928571e+02]\n", + " [-4.45000000e+01 5.84357143e+02]\n", + " [-4.45000000e+01 8.76785715e+02]\n", + " [-4.45000000e+01 1.16921429e+03]\n", + " [-4.45000000e+01 1.46164286e+03]\n", + " [-4.45000000e+01 1.75407143e+03]\n", + " [-4.44999999e+01 2.04650000e+03]\n", + " [-4.45000000e+01 -5.00000261e-01]\n", + " [ 2.47928571e+02 -5.00000125e-01]\n", + " [ 5.40357143e+02 -4.99999959e-01]\n", + " [ 8.32785714e+02 -5.00000265e-01]\n", + " [ 1.12521429e+03 -4.99999989e-01]\n", + " [ 1.41764286e+03 -4.99999804e-01]\n", + " [ 1.71007143e+03 -4.99999857e-01]\n", + " [ 2.00250000e+03 -5.00000247e-01]\n", + " [-4.44999999e+01 2.04650000e+03]\n", + " [ 2.47928572e+02 2.04650000e+03]\n", + " [ 5.40357143e+02 2.04650000e+03]\n", + " [ 8.32785714e+02 2.04650000e+03]\n", + " [ 1.12521429e+03 2.04650000e+03]\n", + " [ 1.41764286e+03 2.04650000e+03]\n", + " [ 1.71007143e+03 2.04650000e+03]\n", + " [ 2.00250000e+03 2.04650000e+03]\n", + " [ 2.00250000e+03 -5.00000247e-01]\n", + " [ 2.00250000e+03 2.91928571e+02]\n", + " [ 2.00250000e+03 5.84357143e+02]\n", + " [ 2.00250000e+03 8.76785714e+02]\n", + " [ 2.00250000e+03 1.16921429e+03]\n", + " [ 2.00250000e+03 1.46164286e+03]\n", + " [ 2.00250000e+03 1.75407143e+03]\n", + " [ 2.00250000e+03 2.04650000e+03]\n", + " [-4.35000000e+01 1.27000000e+02]\n", + " [-4.35000000e+01 4.85400000e+02]\n", + " [-4.35000000e+01 8.43800000e+02]\n", + " [-4.35000000e+01 1.20220000e+03]\n", + " [-4.35000000e+01 1.56060000e+03]\n", + " [-4.35000000e+01 1.91900000e+03]\n", + " [ 8.30000000e+01 4.99999891e-01]\n", + " [ 4.41400000e+02 5.00000001e-01]\n", + " [ 7.99800000e+02 5.00000129e-01]\n", + " [ 1.15820000e+03 5.00000084e-01]\n", + " [ 1.51660000e+03 5.00000000e-01]\n", + " [ 1.87500000e+03 5.00000003e-01]\n", + " [ 8.30000000e+01 2.04550000e+03]\n", + " [ 4.41400000e+02 2.04550000e+03]\n", + " [ 7.99800000e+02 2.04550000e+03]\n", + " [ 1.15820000e+03 2.04550000e+03]\n", + " [ 1.51660000e+03 2.04550000e+03]\n", + " [ 1.87500000e+03 2.04550000e+03]\n", + " [ 2.00150000e+03 1.27000000e+02]\n", + " [ 2.00150000e+03 4.85400000e+02]\n", + " [ 2.00150000e+03 8.43800000e+02]\n", + " [ 2.00150000e+03 1.20220000e+03]\n", + " [ 2.00150000e+03 1.56060000e+03]\n", + " [ 2.00150000e+03 1.91900000e+03]\n", + " [-4.35000000e+01 4.99999945e-01]\n", + " [-4.35000000e+01 4.99999945e-01]\n", + " [ 2.00150000e+03 2.04550000e+03]\n", + " [ 2.00150000e+03 2.04550000e+03]\n", + " [ 8.30000000e+01 1.27000000e+02]\n", + " [ 4.41400000e+02 1.27000000e+02]\n", + " [ 7.99800000e+02 1.27000000e+02]\n", + " [ 1.15820000e+03 1.27000000e+02]\n", + " [ 1.51660000e+03 1.27000000e+02]\n", + " [ 1.87500000e+03 1.27000000e+02]\n", + " [ 8.30000000e+01 4.85400000e+02]\n", + " [ 4.41400000e+02 4.85400000e+02]\n", + " [ 7.99800000e+02 4.85400000e+02]\n", + " [ 1.15820000e+03 4.85400000e+02]\n", + " [ 1.51660000e+03 4.85400000e+02]\n", + " [ 1.87500000e+03 4.85400000e+02]\n", + " [ 8.30000000e+01 8.43800000e+02]\n", + " [ 4.41400000e+02 8.43800000e+02]\n", + " [ 7.99800000e+02 8.43800000e+02]\n", + " [ 1.15820000e+03 8.43800000e+02]\n", + " [ 1.51660000e+03 8.43800000e+02]\n", + " [ 1.87500000e+03 8.43800000e+02]\n", + " [ 8.30000000e+01 1.20220000e+03]\n", + " [ 4.41400000e+02 1.20220000e+03]\n", + " [ 7.99800000e+02 1.20220000e+03]\n", + " [ 1.15820000e+03 1.20220000e+03]\n", + " [ 1.51660000e+03 1.20220000e+03]\n", + " [ 1.87500000e+03 1.20220000e+03]\n", + " [ 8.30000000e+01 1.56060000e+03]\n", + " [ 4.41400000e+02 1.56060000e+03]\n", + " [ 7.99800000e+02 1.56060000e+03]\n", + " [ 1.15820000e+03 1.56060000e+03]\n", + " [ 1.51660000e+03 1.56060000e+03]\n", + " [ 1.87500000e+03 1.56060000e+03]\n", + " [ 8.29999998e+01 1.91900000e+03]\n", + " [ 4.41400000e+02 1.91900000e+03]\n", + " [ 7.99800000e+02 1.91900000e+03]\n", + " [ 1.15820000e+03 1.91900000e+03]\n", + " [ 1.51660000e+03 1.91900000e+03]\n", + " [ 1.87500000e+03 1.91900000e+03]]\n", + "DEBUG:root:radec2pix: lat: [77.93541901 79.53990642 81.17639652 82.83971343 84.5247522 86.22632371\n", + " 87.93883494 89.6479978 77.93541901 77.81390272 77.48107187 76.95718255\n", + " 76.27047293 75.45239232 74.53398915 73.54392335 89.6479978 88.15433501\n", + " 86.45486555 84.75631331 83.07112985 81.40595581 79.76638457 78.15778269\n", + " 73.54392335 74.55657104 75.50172983 76.35064507 77.07169654 77.63217256\n", + " 78.00180643 78.15778269 78.63066146 80.61929653 82.650836 84.71585314\n", + " 86.80474047 88.90593385 77.91466044 77.62156704 77.02994397 76.1887385\n", + " 75.15547704 73.98639339 89.08782254 87.03029774 84.94699254 82.88191704\n", + " 80.84778676 78.85482091 73.9956629 75.19522506 76.26518392 77.14846305\n", + " 77.78520091 78.12246539 77.9408027 77.9408027 78.1630712 78.1630712\n", + " 78.60257643 78.28825427 77.65661779 76.76410296 75.67504453 74.45024854\n", + " 80.58418271 80.19408276 79.42435182 78.36269898 77.09829541 75.70590081\n", + " 82.60493805 82.10218621 81.14204779 79.86827274 78.40301429 76.83279998\n", + " 84.65101194 83.96303088 82.73111849 81.1974567 79.51499711 77.7695032\n", + " 86.69730834 85.65959593 84.04717305 82.22861822 80.34304005 78.44927716\n", + " 88.6217931 86.8566554 84.8442257 82.80989579 80.79300228 78.81115773]\n", + "DEBUG:root:radec2pix: xyfp: [[ 0.16415906 -31.72847131]\n", + " [ 0.16601788 -27.34204313]\n", + " [ 0.1678767 -22.95561497]\n", + " [ 0.16973552 -18.56918678]\n", + " [ 0.17159434 -14.1827586 ]\n", + " [ 0.17345315 -9.79633043]\n", + " [ 0.17531197 -5.40990225]\n", + " [ 0.17717079 -1.02347407]\n", + " [ 0.16415906 -31.72847131]\n", + " [ 4.55058724 -31.73033014]\n", + " [ 8.93701541 -31.73218895]\n", + " [ 13.32344359 -31.73404778]\n", + " [ 17.70987177 -31.73590659]\n", + " [ 22.09629995 -31.73776541]\n", + " [ 26.48272812 -31.73962422]\n", + " [ 30.8691563 -31.74148305]\n", + " [ 0.17717079 -1.02347407]\n", + " [ 4.56359897 -1.02533289]\n", + " [ 8.95002714 -1.02719171]\n", + " [ 13.33645532 -1.02905053]\n", + " [ 17.7228835 -1.03090935]\n", + " [ 22.10931168 -1.03276817]\n", + " [ 26.49573986 -1.03462699]\n", + " [ 30.88216803 -1.0364858 ]\n", + " [ 30.8691563 -31.74148305]\n", + " [ 30.87101512 -27.35505487]\n", + " [ 30.87287394 -22.96862669]\n", + " [ 30.87473276 -18.58219851]\n", + " [ 30.87659158 -14.19577034]\n", + " [ 30.8784504 -9.80934216]\n", + " [ 30.88030922 -5.42291398]\n", + " [ 30.88216803 -1.0364858 ]\n", + " [ 0.17996951 -29.81597784]\n", + " [ 0.18224768 -24.43997833]\n", + " [ 0.18452584 -19.06397881]\n", + " [ 0.18680401 -13.6879793 ]\n", + " [ 0.18908217 -8.31197977]\n", + " [ 0.19136034 -2.93598025]\n", + " [ 2.07666524 -31.71428177]\n", + " [ 7.45266476 -31.71655993]\n", + " [ 12.82866428 -31.7188381 ]\n", + " [ 18.2046638 -31.72111627]\n", + " [ 23.58066331 -31.72339443]\n", + " [ 28.95666283 -31.7256726 ]\n", + " [ 2.08966426 -1.03928452]\n", + " [ 7.46566378 -1.04156269]\n", + " [ 12.8416633 -1.04384085]\n", + " [ 18.21766282 -1.04611902]\n", + " [ 23.59366233 -1.04839718]\n", + " [ 28.96966185 -1.05067535]\n", + " [ 30.85496675 -29.82897686]\n", + " [ 30.85724492 -24.45297735]\n", + " [ 30.85952308 -19.07697783]\n", + " [ 30.86180126 -13.70097831]\n", + " [ 30.86407941 -8.32497879]\n", + " [ 30.86635759 -2.94897928]\n", + " [ 0.17916541 -31.71347767]\n", + " [ 0.17916541 -31.71347767]\n", + " [ 30.86716168 -1.05147945]\n", + " [ 30.86716168 -1.05147945]\n", + " [ 2.07746934 -29.81678193]\n", + " [ 7.45346886 -29.8190601 ]\n", + " [ 12.82946837 -29.82133827]\n", + " [ 18.20546789 -29.82361643]\n", + " [ 23.58146741 -29.82589461]\n", + " [ 28.95746693 -29.82817277]\n", + " [ 2.07974751 -24.44078242]\n", + " [ 7.45574702 -24.44306058]\n", + " [ 12.83174654 -24.44533875]\n", + " [ 18.20774606 -24.44761692]\n", + " [ 23.58374558 -24.44989508]\n", + " [ 28.95974509 -24.45217325]\n", + " [ 2.08202567 -19.0647829 ]\n", + " [ 7.45802519 -19.06706107]\n", + " [ 12.83402471 -19.06933924]\n", + " [ 18.21002422 -19.0716174 ]\n", + " [ 23.58602374 -19.07389557]\n", + " [ 28.96202325 -19.07617373]\n", + " [ 2.08430384 -13.68878339]\n", + " [ 7.46030335 -13.69106155]\n", + " [ 12.83630287 -13.69333972]\n", + " [ 18.21230239 -13.69561789]\n", + " [ 23.58830191 -13.69789605]\n", + " [ 28.96430143 -13.70017422]\n", + " [ 2.086582 -8.31278387]\n", + " [ 7.46258152 -8.31506203]\n", + " [ 12.83858103 -8.3173402 ]\n", + " [ 18.21458055 -8.31961837]\n", + " [ 23.59058007 -8.32189653]\n", + " [ 28.96657959 -8.3241747 ]\n", + " [ 2.08886017 -2.93678435]\n", + " [ 7.46485969 -2.93906252]\n", + " [ 12.8408592 -2.94134068]\n", + " [ 18.21685872 -2.94361885]\n", + " [ 23.59285824 -2.94589701]\n", + " [ 28.96885776 -2.94817518]]\n", + "DEBUG:root:radec2pix: xyfp Shape: (96, 2)\n", + "DEBUG:root:make_az_asym: xyp: [[-32.208296 -31.60697943]\n", + " [-32.20831882 -27.22055086]\n", + " [-32.20834163 -22.83412229]\n", + " [-32.20836444 -18.44769372]\n", + " [-32.20838725 -14.06126515]\n", + " [-32.20841007 -9.67483658]\n", + " [-32.20843288 -5.288408 ]\n", + " [-32.2084557 -0.90197943]\n", + " [-32.208296 -31.60697943]\n", + " [-27.82186743 -31.60695662]\n", + " [-23.43543886 -31.60693381]\n", + " [-19.04901029 -31.60691099]\n", + " [-14.66258171 -31.60688818]\n", + " [-10.27615314 -31.60686536]\n", + " [ -5.88972457 -31.60684255]\n", + " [ -1.503296 -31.60681974]\n", + " [-32.2084557 -0.90197943]\n", + " [-27.82202712 -0.90195662]\n", + " [-23.43559855 -0.9019338 ]\n", + " [-19.04916999 -0.90191099]\n", + " [-14.66274141 -0.90188818]\n", + " [-10.27631284 -0.90186536]\n", + " [ -5.88988428 -0.90184255]\n", + " [ -1.5034557 -0.90181973]\n", + " [ -1.503296 -31.60681974]\n", + " [ -1.50331881 -27.22039116]\n", + " [ -1.50334163 -22.83396259]\n", + " [ -1.50336444 -18.44753402]\n", + " [ -1.50338726 -14.06110544]\n", + " [ -1.50341007 -9.67467688]\n", + " [ -1.50343288 -5.2882483 ]\n", + " [ -1.5034557 -0.90181973]\n", + " [-32.19330594 -29.69447935]\n", + " [-32.19333391 -24.31847935]\n", + " [-32.19336187 -18.94247936]\n", + " [-32.19338983 -13.56647936]\n", + " [-32.19341779 -8.19047935]\n", + " [-32.19344575 -2.81447935]\n", + " [-30.29579608 -31.59196949]\n", + " [-24.91979608 -31.59194152]\n", + " [-19.54379608 -31.59191356]\n", + " [-14.16779608 -31.5918856 ]\n", + " [ -8.79179608 -31.59185764]\n", + " [ -3.41579608 -31.59182968]\n", + " [-30.29595562 -0.91696949]\n", + " [-24.91995562 -0.91694153]\n", + " [-19.54395562 -0.91691356]\n", + " [-14.16795562 -0.9168856 ]\n", + " [ -8.79195562 -0.91685764]\n", + " [ -3.41595563 -0.91682968]\n", + " [ -1.51830595 -29.69431981]\n", + " [ -1.51833391 -24.31831981]\n", + " [ -1.51836187 -18.94231981]\n", + " [ -1.51838983 -13.56631981]\n", + " [ -1.51841779 -8.19031981]\n", + " [ -1.51844575 -2.81431982]\n", + " [-32.19329608 -31.59197936]\n", + " [-32.19329608 -31.59197936]\n", + " [ -1.51845562 -0.91681981]\n", + " [ -1.51845562 -0.91681981]\n", + " [-30.29580595 -29.69446949]\n", + " [-24.91980594 -29.69444152]\n", + " [-19.54380595 -29.69441356]\n", + " [-14.16780595 -29.69438561]\n", + " [ -8.79180595 -29.69435764]\n", + " [ -3.41580595 -29.69432968]\n", + " [-30.29583391 -24.31846949]\n", + " [-24.91983391 -24.31844152]\n", + " [-19.54383391 -24.31841356]\n", + " [-14.16783391 -24.31838561]\n", + " [ -8.79183391 -24.31835764]\n", + " [ -3.41583391 -24.31832968]\n", + " [-30.29586187 -18.94246949]\n", + " [-24.91986187 -18.94244153]\n", + " [-19.54386187 -18.94241356]\n", + " [-14.16786187 -18.94238561]\n", + " [ -8.79186187 -18.94235764]\n", + " [ -3.41586187 -18.94232969]\n", + " [-30.29588983 -13.56646949]\n", + " [-24.91988983 -13.56644152]\n", + " [-19.54388984 -13.56641357]\n", + " [-14.16788983 -13.5663856 ]\n", + " [ -8.79188983 -13.56635764]\n", + " [ -3.41588983 -13.56632968]\n", + " [-30.29591779 -8.19046949]\n", + " [-24.91991779 -8.19044152]\n", + " [-19.54391779 -8.19041356]\n", + " [-14.16791779 -8.1903856 ]\n", + " [ -8.79191779 -8.19035764]\n", + " [ -3.41591779 -8.19032968]\n", + " [-30.29594575 -2.81446949]\n", + " [-24.91994576 -2.81444153]\n", + " [-19.54394575 -2.81441356]\n", + " [-14.16794576 -2.8143856 ]\n", + " [ -8.79194575 -2.81435764]\n", + " [ -3.41594575 -2.81432968]]\n", + "DEBUG:root:make_az_asym: xyp: shape: (96, 2)\n", + "DEBUG:root:radec2pix: curVec: [[-0.78741842 0.50728982 -0.35018463]\n", + " [-0.8004315 0.50321329 -0.32570814]\n", + " [-0.81305603 0.49864949 -0.30048057]\n", + " [-0.8252057 0.49359479 -0.2745901 ]\n", + " [-0.83680352 0.48805045 -0.24812621]\n", + " [-0.8477808 0.48202307 -0.22118198]\n", + " [-0.85807668 0.47552522 -0.19385609]\n", + " [-0.86763846 0.4685758 -0.16625349]\n", + " [-0.78741842 0.50728982 -0.35018463]\n", + " [-0.79850667 0.48237354 -0.36014285]\n", + " [-0.80893623 0.45711958 -0.36968077]\n", + " [-0.81867733 0.43163211 -0.37876266]\n", + " [-0.82770998 0.40601983 -0.38735525]\n", + " [-0.83602391 0.38039566 -0.39542781]\n", + " [-0.84361841 0.35487603 -0.40295284]\n", + " [-0.85050178 0.32957909 -0.40990772]\n", + " [-0.86763846 0.4685758 -0.16625349]\n", + " [-0.87902917 0.44281907 -0.17668896]\n", + " [-0.889594 0.41674938 -0.18692904]\n", + " [-0.89930263 0.39047556 -0.19693559]\n", + " [-0.90813627 0.36410767 -0.20667397]\n", + " [-0.91608707 0.33775691 -0.2161128 ]\n", + " [-0.92315713 0.31153723 -0.22522314]\n", + " [-0.92935764 0.28556759 -0.23397763]\n", + " [-0.85050178 0.32957909 -0.40990772]\n", + " [-0.86340049 0.32395563 -0.3867717 ]\n", + " [-0.87588403 0.31810196 -0.36281994]\n", + " [-0.88786644 0.31201946 -0.33813762]\n", + " [-0.89926963 0.3057129 -0.31281586]\n", + " [-0.91002435 0.29919163 -0.28694957]\n", + " [-0.92007055 0.29247005 -0.26063662]\n", + " [-0.92935764 0.28556759 -0.23397763]\n", + " [-0.79317316 0.50548707 -0.33964564]\n", + " [-0.8088725 0.50016306 -0.30913136]\n", + " [-0.82390133 0.49410317 -0.27757641]\n", + " [-0.83811407 0.48730768 -0.24514491]\n", + " [-0.85138422 0.47978884 -0.21200845]\n", + " [-0.86360306 0.47157242 -0.17835135]\n", + " [-0.79237682 0.49646076 -0.35449356]\n", + " [-0.80552816 0.46568245 -0.36642084]\n", + " [-0.81765931 0.43449993 -0.37768116]\n", + " [-0.82872939 0.40311145 -0.38821226]\n", + " [-0.83871948 0.37172481 -0.39795765]\n", + " [-0.84763205 0.34055524 -0.40686857]\n", + " [-0.87267258 0.45741565 -0.17091956]\n", + " [-0.88608211 0.42562412 -0.18358267]\n", + " [-0.8982198 0.39347041 -0.19591383]\n", + " [-0.90904627 0.36115671 -0.20784782]\n", + " [-0.91854696 0.32888791 -0.21932677]\n", + " [-0.92672949 0.29687579 -0.23029809]\n", + " [-0.85614878 0.32724188 -0.39990251]\n", + " [-0.87168996 0.32019574 -0.37098694]\n", + " [-0.88652131 0.31280468 -0.34092989]\n", + " [-0.90049573 0.30507601 -0.30989687]\n", + " [-0.91348575 0.29702698 -0.2780625 ]\n", + " [-0.92538475 0.2886862 -0.24560811]\n", + " [-0.78750247 0.50719218 -0.35013704]\n", + " [-0.78750247 0.50719218 -0.35013704]\n", + " [-0.92930748 0.28567971 -0.23403996]\n", + " [-0.92930748 0.28567971 -0.23403996]\n", + " [-0.79806524 0.4947135 -0.34402096]\n", + " [-0.81125213 0.46381452 -0.35601416]\n", + " [-0.82339692 0.43250984 -0.36735916]\n", + " [-0.83445865 0.40099807 -0.37799379]\n", + " [-0.8444186 0.36948737 -0.38786121]\n", + " [-0.85327973 0.33819403 -0.3969112 ]\n", + " [-0.81380899 0.48928367 -0.31355448]\n", + " [-0.82708317 0.45808322 -0.32571951]\n", + " [-0.83925769 0.42647601 -0.33729029]\n", + " [-0.85029129 0.39466154 -0.34820539]\n", + " [-0.86016552 0.36284813 -0.35840831]\n", + " [-0.86888432 0.33125326 -0.36784686]\n", + " [-0.82887355 0.48313815 -0.28203928]\n", + " [-0.84221483 0.45169635 -0.29435454]\n", + " [-0.85440541 0.41985142 -0.30613097]\n", + " [-0.86540392 0.38780387 -0.31730775]\n", + " [-0.87519235 0.35576145 -0.32782945]\n", + " [-0.88377537 0.32394087 -0.33764391]\n", + " [-0.84311312 0.47627767 -0.24963942]\n", + " [-0.85650053 0.4446559 -0.26208389]\n", + " [-0.86869272 0.41263908 -0.27404736]\n", + " [-0.87964856 0.38042869 -0.28546878]\n", + " [-0.88935089 0.34823166 -0.29629329]\n", + " [-0.89780524 0.31626302 -0.30646932]\n", + " [-0.85640086 0.46871522 -0.21652623]\n", + " [-0.86981267 0.43697692 -0.22907877]\n", + " [-0.88199157 0.40485547 -0.24121137]\n", + " [-0.89289705 0.37255308 -0.25286175]\n", + " [-0.90251311 0.34027573 -0.26397446]\n", + " [-0.91084627 0.30823672 -0.27449807]\n", + " [-0.86862774 0.46047735 -0.18288371]\n", + " [-0.88204179 0.42868798 -0.19552211]\n", + " [-0.89419272 0.39653049 -0.20780508]\n", + " [-0.90504087 0.3642072 -0.21966823]\n", + " [-0.91457136 0.33192328 -0.23105446]\n", + " [-0.92279159 0.29989073 -0.24191163]]\n", + "DEBUG:root:radec2pix: curVec Shape: (96, 3)\n", + "DEBUG:root:radec2pix: fitpx: [[2135.5 4155.50000026]\n", + " [2135.5 3863.07142876]\n", + " [2135.5 3570.64285709]\n", + " [2135.5 3278.21428545]\n", + " [2135.5 2985.7857141 ]\n", + " [2135.49999999 2693.35714316]\n", + " [2135.50000001 2400.9285712 ]\n", + " [2135.49999993 2108.50000021]\n", + " [2135.5 4155.50000026]\n", + " [1843.07142855 4155.50000013]\n", + " [1550.64285715 4155.49999996]\n", + " [1258.2142856 4155.50000027]\n", + " [ 965.78571429 4155.49999999]\n", + " [ 673.357143 4155.4999998 ]\n", + " [ 380.92857155 4155.49999986]\n", + " [ 88.49999976 4155.50000025]\n", + " [2135.49999993 2108.50000021]\n", + " [1843.07142817 2108.50000006]\n", + " [1550.64285738 2108.49999998]\n", + " [1258.21428605 2108.49999998]\n", + " [ 965.78571448 2108.49999999]\n", + " [ 673.35714251 2108.50000001]\n", + " [ 380.92857138 2108.5 ]\n", + " [ 88.50000013 2108.5 ]\n", + " [ 88.49999976 4155.50000025]\n", + " [ 88.49999974 3863.0714288 ]\n", + " [ 88.49999989 3570.64285722]\n", + " [ 88.50000025 3278.21428557]\n", + " [ 88.50000013 2985.78571423]\n", + " [ 88.49999977 2693.35714293]\n", + " [ 88.49999999 2400.92857143]\n", + " [ 88.50000013 2108.5 ]\n", + " [2134.5 4028.00000018]\n", + " [2134.5 3669.59999979]\n", + " [2134.5 3311.20000021]\n", + " [2134.5 2952.80000004]\n", + " [2134.5 2594.39999994]\n", + " [2134.50000001 2235.99999988]\n", + " [2007.99999999 4154.50000011]\n", + " [1649.6 4154.5 ]\n", + " [1291.20000005 4154.49999987]\n", + " [ 932.80000005 4154.49999992]\n", + " [ 574.4 4154.5 ]\n", + " [ 216. 4154.5 ]\n", + " [2008.00000002 2109.49999999]\n", + " [1649.60000012 2109.49999999]\n", + " [1291.19999984 2109.50000001]\n", + " [ 932.79999968 2109.50000001]\n", + " [ 574.39999959 2109.50000001]\n", + " [ 215.99999972 2109.50000001]\n", + " [ 89.4999999 4028.0000001 ]\n", + " [ 89.50000007 3669.59999994]\n", + " [ 89.49999997 3311.20000002]\n", + " [ 89.50000023 2952.7999999 ]\n", + " [ 89.49999997 2594.40000001]\n", + " [ 89.4999998 2236.00000002]\n", + " [2134.5 4154.50000005]\n", + " [2134.5 4154.50000005]\n", + " [ 89.49999997 2109.5 ]\n", + " [ 89.49999997 2109.5 ]\n", + " [2008. 4027.99999997]\n", + " [1649.59999996 4028.00000014]\n", + " [1291.20000001 4027.99999998]\n", + " [ 932.79999987 4028.00000021]\n", + " [ 574.40000006 4027.99999993]\n", + " [ 215.9999998 4028.0000002 ]\n", + " [2008. 3669.59999996]\n", + " [1649.60000001 3669.59999998]\n", + " [1291.20000007 3669.59999987]\n", + " [ 932.79999997 3669.60000004]\n", + " [ 574.39999998 3669.60000002]\n", + " [ 215.99999986 3669.60000012]\n", + " [2008. 3311.20000004]\n", + " [1649.59999995 3311.20000012]\n", + " [1291.19999997 3311.20000005]\n", + " [ 932.80000015 3311.19999984]\n", + " [ 574.40000003 3311.19999997]\n", + " [ 216.00000001 3311.2 ]\n", + " [2007.99999998 2952.80000014]\n", + " [1649.60000006 2952.7999999 ]\n", + " [1291.20000015 2952.79999984]\n", + " [ 932.80000014 2952.7999999 ]\n", + " [ 574.39999986 2952.80000008]\n", + " [ 215.99999973 2952.80000012]\n", + " [2007.99999998 2594.40000007]\n", + " [1649.60000022 2594.39999977]\n", + " [1291.20000005 2594.39999997]\n", + " [ 932.79999996 2594.40000002]\n", + " [ 574.39999995 2594.40000002]\n", + " [ 216.00000004 2594.39999999]\n", + " [2008.00000021 2235.99999975]\n", + " [1649.59999975 2236.00000009]\n", + " [1291.20000026 2235.99999995]\n", + " [ 932.79999972 2236.00000004]\n", + " [ 574.39999974 2236.00000003]\n", + " [ 216.00000028 2235.99999998]]\n", + "DEBUG:root:fitpix2pix: ccdpx: shape: (96, 2)\n", + "DEBUG:root:fitpix2pix: visCut: True\n", + "DEBUG:root:mm_to_pix: fitpx: [[0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]]\n", + "DEBUG:root:mm_to_pix: fitpx.shape: (96, 2)\n", + "DEBUG:root:radec2pix: xyfp: [[-32.208296 -31.60697943]\n", + " [-32.20831882 -27.22055086]\n", + " [-32.20834163 -22.83412229]\n", + " [-32.20836444 -18.44769372]\n", + " [-32.20838725 -14.06126515]\n", + " [-32.20841007 -9.67483658]\n", + " [-32.20843288 -5.288408 ]\n", + " [-32.2084557 -0.90197943]\n", + " [-32.208296 -31.60697943]\n", + " [-27.82186743 -31.60695662]\n", + " [-23.43543886 -31.60693381]\n", + " [-19.04901029 -31.60691099]\n", + " [-14.66258171 -31.60688818]\n", + " [-10.27615314 -31.60686536]\n", + " [ -5.88972457 -31.60684255]\n", + " [ -1.503296 -31.60681974]\n", + " [-32.2084557 -0.90197943]\n", + " [-27.82202712 -0.90195662]\n", + " [-23.43559855 -0.9019338 ]\n", + " [-19.04916999 -0.90191099]\n", + " [-14.66274141 -0.90188818]\n", + " [-10.27631284 -0.90186536]\n", + " [ -5.88988428 -0.90184255]\n", + " [ -1.5034557 -0.90181973]\n", + " [ -1.503296 -31.60681974]\n", + " [ -1.50331881 -27.22039116]\n", + " [ -1.50334163 -22.83396259]\n", + " [ -1.50336444 -18.44753402]\n", + " [ -1.50338726 -14.06110544]\n", + " [ -1.50341007 -9.67467688]\n", + " [ -1.50343288 -5.2882483 ]\n", + " [ -1.5034557 -0.90181973]\n", + " [-32.19330594 -29.69447935]\n", + " [-32.19333391 -24.31847935]\n", + " [-32.19336187 -18.94247936]\n", + " [-32.19338983 -13.56647936]\n", + " [-32.19341779 -8.19047935]\n", + " [-32.19344575 -2.81447935]\n", + " [-30.29579608 -31.59196949]\n", + " [-24.91979608 -31.59194152]\n", + " [-19.54379608 -31.59191356]\n", + " [-14.16779608 -31.5918856 ]\n", + " [ -8.79179608 -31.59185764]\n", + " [ -3.41579608 -31.59182968]\n", + " [-30.29595562 -0.91696949]\n", + " [-24.91995562 -0.91694153]\n", + " [-19.54395562 -0.91691356]\n", + " [-14.16795562 -0.9168856 ]\n", + " [ -8.79195562 -0.91685764]\n", + " [ -3.41595563 -0.91682968]\n", + " [ -1.51830595 -29.69431981]\n", + " [ -1.51833391 -24.31831981]\n", + " [ -1.51836187 -18.94231981]\n", + " [ -1.51838983 -13.56631981]\n", + " [ -1.51841779 -8.19031981]\n", + " [ -1.51844575 -2.81431982]\n", + " [-32.19329608 -31.59197936]\n", + " [-32.19329608 -31.59197936]\n", + " [ -1.51845562 -0.91681981]\n", + " [ -1.51845562 -0.91681981]\n", + " [-30.29580595 -29.69446949]\n", + " [-24.91980594 -29.69444152]\n", + " [-19.54380595 -29.69441356]\n", + " [-14.16780595 -29.69438561]\n", + " [ -8.79180595 -29.69435764]\n", + " [ -3.41580595 -29.69432968]\n", + " [-30.29583391 -24.31846949]\n", + " [-24.91983391 -24.31844152]\n", + " [-19.54383391 -24.31841356]\n", + " [-14.16783391 -24.31838561]\n", + " [ -8.79183391 -24.31835764]\n", + " [ -3.41583391 -24.31832968]\n", + " [-30.29586187 -18.94246949]\n", + " [-24.91986187 -18.94244153]\n", + " [-19.54386187 -18.94241356]\n", + " [-14.16786187 -18.94238561]\n", + " [ -8.79186187 -18.94235764]\n", + " [ -3.41586187 -18.94232969]\n", + " [-30.29588983 -13.56646949]\n", + " [-24.91988983 -13.56644152]\n", + " [-19.54388984 -13.56641357]\n", + " [-14.16788983 -13.5663856 ]\n", + " [ -8.79188983 -13.56635764]\n", + " [ -3.41588983 -13.56632968]\n", + " [-30.29591779 -8.19046949]\n", + " [-24.91991779 -8.19044152]\n", + " [-19.54391779 -8.19041356]\n", + " [-14.16791779 -8.1903856 ]\n", + " [ -8.79191779 -8.19035764]\n", + " [ -3.41591779 -8.19032968]\n", + " [-30.29594575 -2.81446949]\n", + " [-24.91994576 -2.81444153]\n", + " [-19.54394575 -2.81441356]\n", + " [-14.16794576 -2.8143856 ]\n", + " [ -8.79194575 -2.81435764]\n", + " [ -3.41594575 -2.81432968]]\n", + "DEBUG:root:radec2pix: xyfp Shape: (96, 2)\n", + "DEBUG:root:radec2pix: camVec: [[ 0.00162968 0.00164392 0.00165615 0.00166636 0.0016745 0.00168051\n", + " 0.00168433 0.00168589 0.00162968 0.03065921 0.0595691 0.08824658\n", + " 0.11657974 0.14445783 0.17177197 0.1984171 0.00168589 0.03171597\n", + " 0.06161834 0.09127522 0.12057355 0.14940474 0.17766265 0.205241\n", + " 0.1984171 0.20017053 0.20167036 0.20291139 0.20389075 0.20460646\n", + " 0.20505694 0.205241 0.00173588 0.00175296 0.00176683 0.00177741\n", + " 0.00178459 0.00178824 0.01429458 0.04980805 0.08502967 0.11975303\n", + " 0.15377432 0.1868945 0.0147871 0.05152109 0.08794575 0.12385093\n", + " 0.15903647 0.19330699 0.19912208 0.20110045 0.20269257 0.20389226\n", + " 0.20469584 0.20510055 0.00172908 0.00172908 0.20514779 0.20514779\n", + " 0.01435076 0.05000388 0.08536435 0.12022547 0.15438306 0.18763689\n", + " 0.01449201 0.05049589 0.08620426 0.1214098 0.15590842 0.18949858\n", + " 0.01460664 0.05089468 0.08688344 0.12236492 0.15713605 0.19099623\n", + " 0.0146941 0.05119852 0.08739951 0.12308827 0.15806297 0.19212497\n", + " 0.01475342 0.05140434 0.08774826 0.12357559 0.15868553 0.19288138\n", + " 0.01478357 0.05150885 0.08792506 0.1238221 0.15899976 0.19326249]\n", + " [-0.20886687 -0.18138669 -0.15321267 -0.12445123 -0.0952084 -0.06559229\n", + " -0.03571531 -0.00569466 -0.20886687 -0.20871575 -0.20829328 -0.20760055\n", + " -0.20663909 -0.20541086 -0.20391875 -0.20216791 -0.00569466 -0.00569039\n", + " -0.0056785 -0.00565918 -0.00563263 -0.00559908 -0.00555867 -0.00551146\n", + " -0.20216791 -0.17558603 -0.14832064 -0.12047648 -0.09216227 -0.06348867\n", + " -0.03456748 -0.00551146 -0.19697755 -0.16281769 -0.12772153 -0.09188434\n", + " -0.05550542 -0.01879375 -0.20874173 -0.20837407 -0.20760004 -0.20642226\n", + " -0.2048444 -0.20287264 -0.00579649 -0.00578593 -0.0057639 -0.00573078\n", + " -0.00568698 -0.00563273 -0.19067465 -0.1576223 -0.12364673 -0.08894663\n", + " -0.05372559 -0.0181899 -0.20877415 -0.20877415 -0.0056111 -0.0056111\n", + " -0.19694699 -0.19660038 -0.19587092 -0.19476145 -0.19327535 -0.19141752\n", + " -0.16279237 -0.16250539 -0.1619024 -0.1609872 -0.15976346 -0.15823425\n", + " -0.12770151 -0.1274748 -0.12699943 -0.12628004 -0.12532102 -0.12412508\n", + " -0.09186978 -0.09170505 -0.09136033 -0.09084026 -0.09014925 -0.08928993\n", + " -0.05549654 -0.05539609 -0.05518622 -0.05487037 -0.05445187 -0.05393273\n", + " -0.01879073 -0.01875652 -0.01868512 -0.01857781 -0.01843585 -0.01826001]\n", + " [ 0.97794273 0.98341048 0.98819185 0.99222433 0.99545595 0.99784509\n", + " 0.99936059 0.99998236 0.97794273 0.97749565 0.9762507 0.9742251\n", + " 0.97144709 0.96795574 0.96380057 0.95904056 0.99998236 0.99948072\n", + " 0.99808363 0.99580962 0.99268842 0.98876027 0.98407575 0.97869595\n", + " 0.95904056 0.96389901 0.96815807 0.97175737 0.97464592 0.97678318\n", + " 0.97813943 0.97869595 0.98040646 0.98665461 0.99180849 0.9957681\n", + " 0.99845679 0.99982178 0.97786633 0.97678012 0.97451125 0.97110713\n", + " 0.96663966 0.961204 0.99987386 0.99865515 0.99610859 0.99228429\n", + " 0.98725633 0.98112215 0.96124585 0.96680599 0.97140476 0.97494433\n", + " 0.97735008 0.97857186 0.97796235 0.97796235 0.97871492 0.97871492\n", + " 0.9803091 0.97920779 0.97690711 0.97345458 0.96892234 0.96340632\n", + " 0.98655391 0.98541472 0.9830343 0.97946045 0.97476571 0.96904706\n", + " 0.99170508 0.99053516 0.98809029 0.9844187 0.97959323 0.97371115\n", + " 0.99566261 0.99446915 0.99197511 0.98822939 0.98330525 0.97730001\n", + " 0.99834987 0.99714035 0.99461285 0.99081699 0.9858265 0.97973876\n", + " 0.99971414 0.99849639 0.99595183 0.99213051 0.98710648 0.98097716]]\n", + "DEBUG:root:radec2pix: camVec Shape: (3, 96)\n", + "DEBUG:root:radec2pix: xyfp: [[ -0.167405 31.491388 ]\n", + " [ -0.167405 27.10495943]\n", + " [ -0.167405 22.71853086]\n", + " [ -0.167405 18.33210229]\n", + " [ -0.167405 13.94567372]\n", + " [ -0.167405 9.55924515]\n", + " [ -0.167405 5.17281657]\n", + " [ -0.167405 0.786388 ]\n", + " [ -0.167405 31.491388 ]\n", + " [ -4.55383357 31.491388 ]\n", + " [ -8.94026214 31.491388 ]\n", + " [-13.32669071 31.491388 ]\n", + " [-17.71311928 31.491388 ]\n", + " [-22.09954786 31.491388 ]\n", + " [-26.48597643 31.491388 ]\n", + " [-30.872405 31.491388 ]\n", + " [ -0.167405 0.786388 ]\n", + " [ -4.55383357 0.786388 ]\n", + " [ -8.94026214 0.786388 ]\n", + " [-13.32669071 0.786388 ]\n", + " [-17.71311929 0.786388 ]\n", + " [-22.09954786 0.786388 ]\n", + " [-26.48597643 0.786388 ]\n", + " [-30.872405 0.786388 ]\n", + " [-30.872405 31.491388 ]\n", + " [-30.872405 27.10495943]\n", + " [-30.872405 22.71853086]\n", + " [-30.872405 18.33210229]\n", + " [-30.872405 13.94567371]\n", + " [-30.872405 9.55924514]\n", + " [-30.872405 5.17281657]\n", + " [-30.872405 0.786388 ]\n", + " [ -0.182405 29.578888 ]\n", + " [ -0.182405 24.202888 ]\n", + " [ -0.182405 18.826888 ]\n", + " [ -0.182405 13.450888 ]\n", + " [ -0.182405 8.074888 ]\n", + " [ -0.182405 2.698888 ]\n", + " [ -2.079905 31.476388 ]\n", + " [ -7.455905 31.476388 ]\n", + " [-12.831905 31.476388 ]\n", + " [-18.207905 31.476388 ]\n", + " [-23.583905 31.476388 ]\n", + " [-28.959905 31.476388 ]\n", + " [ -2.079905 0.801388 ]\n", + " [ -7.455905 0.801388 ]\n", + " [-12.831905 0.801388 ]\n", + " [-18.207905 0.801388 ]\n", + " [-23.583905 0.801388 ]\n", + " [-28.959905 0.801388 ]\n", + " [-30.857405 29.578888 ]\n", + " [-30.857405 24.202888 ]\n", + " [-30.857405 18.826888 ]\n", + " [-30.857405 13.450888 ]\n", + " [-30.857405 8.074888 ]\n", + " [-30.857405 2.698888 ]\n", + " [ -0.182405 31.476388 ]\n", + " [ -0.182405 31.476388 ]\n", + " [-30.857405 0.801388 ]\n", + " [-30.857405 0.801388 ]\n", + " [ -2.079905 29.578888 ]\n", + " [ -7.455905 29.578888 ]\n", + " [-12.831905 29.578888 ]\n", + " [-18.207905 29.578888 ]\n", + " [-23.583905 29.578888 ]\n", + " [-28.959905 29.578888 ]\n", + " [ -2.079905 24.202888 ]\n", + " [ -7.455905 24.202888 ]\n", + " [-12.831905 24.202888 ]\n", + " [-18.207905 24.202888 ]\n", + " [-23.583905 24.202888 ]\n", + " [-28.959905 24.202888 ]\n", + " [ -2.079905 18.826888 ]\n", + " [ -7.455905 18.826888 ]\n", + " [-12.831905 18.826888 ]\n", + " [-18.207905 18.826888 ]\n", + " [-23.583905 18.826888 ]\n", + " [-28.959905 18.826888 ]\n", + " [ -2.079905 13.450888 ]\n", + " [ -7.455905 13.450888 ]\n", + " [-12.831905 13.450888 ]\n", + " [-18.207905 13.450888 ]\n", + " [-23.583905 13.450888 ]\n", + " [-28.959905 13.450888 ]\n", + " [ -2.079905 8.074888 ]\n", + " [ -7.455905 8.074888 ]\n", + " [-12.831905 8.074888 ]\n", + " [-18.20790499 8.074888 ]\n", + " [-23.583905 8.074888 ]\n", + " [-28.959905 8.074888 ]\n", + " [ -2.079905 2.698888 ]\n", + " [ -7.455905 2.698888 ]\n", + " [-12.831905 2.698888 ]\n", + " [-18.207905 2.698888 ]\n", + " [-23.583905 2.698888 ]\n", + " [-28.959905 2.698888 ]]\n", + "DEBUG:root:optics_fp: rtanth: [31.57034978 27.18406789 22.79784246 18.41171382 14.02577275 9.64027533\n", + " 5.25633205 0.89702627 31.57034978 31.90657516 32.83068082 34.29517719\n", + " 36.2346004 38.57738799 41.25487818 44.20629586 0.89702627 4.70608217\n", + " 9.05379887 13.42672148 17.80628925 22.18856766 26.57221564 30.95665138\n", + " 44.20629586 41.18838618 38.43502607 36.00695508 33.97398873 32.41056182\n", + " 31.38691822 30.95665138 29.65803336 24.28227528 18.90665475 13.53133577\n", + " 8.15691443 2.78858575 31.62774376 32.44001712 34.0910252 36.46702674\n", + " 39.4372011 42.87825061 2.32483604 7.57927428 12.93401278 18.30122199\n", + " 23.67242106 29.04539658 42.85058957 39.32178756 36.24963004 33.75901556\n", + " 31.98608036 31.05398999 31.55546766 31.55546766 30.94207994 30.94207994\n", + " 29.73492188 30.59748544 32.34268701 34.83813202 37.93605456 41.50175634\n", + " 24.3761262 25.42117355 27.49689714 30.39285101 33.89947174 37.84740055\n", + " 19.02703944 20.34867971 22.88912523 26.29749216 30.28212156 34.64474606\n", + " 13.69903951 15.48238416 18.69618965 22.7418897 27.2514649 32.02957826\n", + " 8.4321936 11.09695565 15.26386952 20.01578758 25.02160156 30.1551337\n", + " 3.51323872 8.02392562 13.19949508 18.48980017 23.81851176 29.16458548]\n", + "DEBUG:root:radec2pix: xyfp Shape: (96, 2)\n", + "DEBUG:root:mm_to_pix: fitpx: [[0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]]\n", + "DEBUG:root:mm_to_pix: fitpx.shape: (96, 2)\n", + "DEBUG:root:optics_fp: cphi: [-0.00747594 -0.00870042 -0.01039606 -0.01289954 -0.01696858 -0.02473916\n", + " -0.04546654 -0.26697332 -0.00747594 -0.14487442 -0.27440415 -0.39058855\n", + " -0.49073902 -0.57464131 -0.6436715 -0.69992333 -0.26697332 -0.98296427\n", + " -0.99542074 -0.99791805 -0.99881542 -0.99923641 -0.99946703 -0.99960689\n", + " -0.69992333 -0.75121935 -0.80504713 -0.85934793 -0.91078494 -0.95473483\n", + " -0.98588803 -0.99960689 -0.00847102 -0.01037136 -0.01335227 -0.01870128\n", + " -0.03109752 -0.0911811 -0.06793149 -0.23195178 -0.37841395 -0.50117932\n", + " -0.59975148 -0.67699869 -0.92564824 -0.99323234 -0.99767802 -0.99883933\n", + " -0.99930549 -0.99953809 -0.72172248 -0.78650646 -0.85317965 -0.91614203\n", + " -0.96694122 -0.99598364 -0.00795487 -0.00795487 -0.9995928 -0.9995928\n", + " -0.07226297 -0.24592654 -0.39887637 -0.52461865 -0.62348955 -0.69945795\n", + " -0.08817399 -0.29602647 -0.46919258 -0.60136972 -0.69774952 -0.76701014\n", + " -0.11299429 -0.36984939 -0.56367146 -0.69504524 -0.7811192 -0.83793215\n", + " -0.1569857 -0.48613658 -0.69011673 -0.80373942 -0.86801033 -0.90636701\n", + " -0.25511271 -0.67830854 -0.84534002 -0.91323709 -0.94538951 -0.96272694\n", + " -0.6124737 -0.93816501 -0.97759544 -0.98864055 -0.99316726 -0.99544587]\n", + "DEBUG:root:optics_fp: sphi: [0.99997205 0.99996215 0.99994596 0.9999168 0.99985602 0.99969394\n", + " 0.99896586 0.96370392 0.99997205 0.98945005 0.96161446 0.92056536\n", + " 0.87130661 0.81840538 0.7653019 0.71421799 0.96370392 0.18379675\n", + " 0.09559053 0.0644947 0.04865962 0.03907157 0.03264451 0.02803701\n", + " 0.71421799 0.66005264 0.59321085 0.51139137 0.41288109 0.29745825\n", + " 0.16740606 0.02803701 0.99996412 0.99994622 0.99991085 0.99982512\n", + " 0.99951636 0.99583433 0.99768999 0.97272729 0.92563647 0.86534345\n", + " 0.80018633 0.73598422 0.37838518 0.11614437 0.06810698 0.04816635\n", + " 0.03726317 0.03039091 0.69218254 0.61758205 0.52161719 0.40085381\n", + " 0.25499936 0.08953536 0.99996836 0.99996836 0.02853493 0.02853493\n", + " 0.99738561 0.96928847 0.91700471 0.85133735 0.78183168 0.71467375\n", + " 0.99610509 0.95517974 0.88309587 0.79897088 0.71634182 0.64163497\n", + " 0.99359564 0.92909172 0.82599908 0.71896601 0.62438193 0.54577441\n", + " 0.98760088 0.87388285 0.72369807 0.59498147 0.49654613 0.42249123\n", + " 0.96691132 0.7347772 0.53422865 0.40742853 0.32594274 0.27047521\n", + " 0.79049097 0.3461884 0.21049264 0.15029925 0.11669955 0.09532849]\n", + "DEBUG:root:cartToSphere: vec: [[ 0.00162968 -0.20886687 0.97794273]\n", + " [ 0.00164392 -0.18138669 0.98341048]\n", + " [ 0.00165615 -0.15321267 0.98819185]\n", + " [ 0.00166636 -0.12445123 0.99222433]\n", + " [ 0.0016745 -0.0952084 0.99545595]\n", + " [ 0.00168051 -0.06559229 0.99784509]\n", + " [ 0.00168433 -0.03571531 0.99936059]\n", + " [ 0.00168589 -0.00569466 0.99998236]\n", + " [ 0.00162968 -0.20886687 0.97794273]\n", + " [ 0.03065921 -0.20871575 0.97749565]\n", + " [ 0.0595691 -0.20829328 0.9762507 ]\n", + " [ 0.08824658 -0.20760055 0.9742251 ]\n", + " [ 0.11657974 -0.20663909 0.97144709]\n", + " [ 0.14445783 -0.20541086 0.96795574]\n", + " [ 0.17177197 -0.20391875 0.96380057]\n", + " [ 0.1984171 -0.20216791 0.95904056]\n", + " [ 0.00168589 -0.00569466 0.99998236]\n", + " [ 0.03171597 -0.00569039 0.99948072]\n", + " [ 0.06161834 -0.0056785 0.99808363]\n", + " [ 0.09127522 -0.00565918 0.99580962]\n", + " [ 0.12057355 -0.00563263 0.99268842]\n", + " [ 0.14940474 -0.00559908 0.98876027]\n", + " [ 0.17766265 -0.00555867 0.98407575]\n", + " [ 0.205241 -0.00551146 0.97869595]\n", + " [ 0.1984171 -0.20216791 0.95904056]\n", + " [ 0.20017053 -0.17558603 0.96389901]\n", + " [ 0.20167036 -0.14832064 0.96815807]\n", + " [ 0.20291139 -0.12047648 0.97175737]\n", + " [ 0.20389075 -0.09216227 0.97464592]\n", + " [ 0.20460646 -0.06348867 0.97678318]\n", + " [ 0.20505694 -0.03456748 0.97813943]\n", + " [ 0.205241 -0.00551146 0.97869595]\n", + " [ 0.00173588 -0.19697755 0.98040646]\n", + " [ 0.00175296 -0.16281769 0.98665461]\n", + " [ 0.00176683 -0.12772153 0.99180849]\n", + " [ 0.00177741 -0.09188434 0.9957681 ]\n", + " [ 0.00178459 -0.05550542 0.99845679]\n", + " [ 0.00178824 -0.01879375 0.99982178]\n", + " [ 0.01429458 -0.20874173 0.97786633]\n", + " [ 0.04980805 -0.20837407 0.97678012]\n", + " [ 0.08502967 -0.20760004 0.97451125]\n", + " [ 0.11975303 -0.20642226 0.97110713]\n", + " [ 0.15377432 -0.2048444 0.96663966]\n", + " [ 0.1868945 -0.20287264 0.961204 ]\n", + " [ 0.0147871 -0.00579649 0.99987386]\n", + " [ 0.05152109 -0.00578593 0.99865515]\n", + " [ 0.08794575 -0.0057639 0.99610859]\n", + " [ 0.12385093 -0.00573078 0.99228429]\n", + " [ 0.15903647 -0.00568698 0.98725633]\n", + " [ 0.19330699 -0.00563273 0.98112215]\n", + " [ 0.19912208 -0.19067465 0.96124585]\n", + " [ 0.20110045 -0.1576223 0.96680599]\n", + " [ 0.20269257 -0.12364673 0.97140476]\n", + " [ 0.20389226 -0.08894663 0.97494433]\n", + " [ 0.20469584 -0.05372559 0.97735008]\n", + " [ 0.20510055 -0.0181899 0.97857186]\n", + " [ 0.00172908 -0.20877415 0.97796235]\n", + " [ 0.00172908 -0.20877415 0.97796235]\n", + " [ 0.20514779 -0.0056111 0.97871492]\n", + " [ 0.20514779 -0.0056111 0.97871492]\n", + " [ 0.01435076 -0.19694699 0.9803091 ]\n", + " [ 0.05000388 -0.19660038 0.97920779]\n", + " [ 0.08536435 -0.19587092 0.97690711]\n", + " [ 0.12022547 -0.19476145 0.97345458]\n", + " [ 0.15438306 -0.19327535 0.96892234]\n", + " [ 0.18763689 -0.19141752 0.96340632]\n", + " [ 0.01449201 -0.16279237 0.98655391]\n", + " [ 0.05049589 -0.16250539 0.98541472]\n", + " [ 0.08620426 -0.1619024 0.9830343 ]\n", + " [ 0.1214098 -0.1609872 0.97946045]\n", + " [ 0.15590842 -0.15976346 0.97476571]\n", + " [ 0.18949858 -0.15823425 0.96904706]\n", + " [ 0.01460664 -0.12770151 0.99170508]\n", + " [ 0.05089468 -0.1274748 0.99053516]\n", + " [ 0.08688344 -0.12699943 0.98809029]\n", + " [ 0.12236492 -0.12628004 0.9844187 ]\n", + " [ 0.15713605 -0.12532102 0.97959323]\n", + " [ 0.19099623 -0.12412508 0.97371115]\n", + " [ 0.0146941 -0.09186978 0.99566261]\n", + " [ 0.05119852 -0.09170505 0.99446915]\n", + " [ 0.08739951 -0.09136033 0.99197511]\n", + " [ 0.12308827 -0.09084026 0.98822939]\n", + " [ 0.15806297 -0.09014925 0.98330525]\n", + " [ 0.19212497 -0.08928993 0.97730001]\n", + " [ 0.01475342 -0.05549654 0.99834987]\n", + " [ 0.05140434 -0.05539609 0.99714035]\n", + " [ 0.08774826 -0.05518622 0.99461285]\n", + " [ 0.12357559 -0.05487037 0.99081699]\n", + " [ 0.15868553 -0.05445187 0.9858265 ]\n", + " [ 0.19288138 -0.05393273 0.97973876]\n", + " [ 0.01478357 -0.01879073 0.99971414]\n", + " [ 0.05150885 -0.01875652 0.99849639]\n", + " [ 0.08792506 -0.01868512 0.99595183]\n", + " [ 0.1238221 -0.01857781 0.99213051]\n", + " [ 0.15899976 -0.01843585 0.98710648]\n", + " [ 0.19326249 -0.01826001 0.98097716]]\n", + "DEBUG:root:radec2pix: xyfp: [[-32.208296 -31.60697943]\n", + " [-32.20831882 -27.22055086]\n", + " [-32.20834163 -22.83412229]\n", + " [-32.20836444 -18.44769372]\n", + " [-32.20838725 -14.06126515]\n", + " [-32.20841007 -9.67483658]\n", + " [-32.20843288 -5.288408 ]\n", + " [-32.2084557 -0.90197943]\n", + " [-32.208296 -31.60697943]\n", + " [-27.82186743 -31.60695662]\n", + " [-23.43543886 -31.60693381]\n", + " [-19.04901029 -31.60691099]\n", + " [-14.66258171 -31.60688818]\n", + " [-10.27615314 -31.60686536]\n", + " [ -5.88972457 -31.60684255]\n", + " [ -1.503296 -31.60681974]\n", + " [-32.2084557 -0.90197943]\n", + " [-27.82202712 -0.90195662]\n", + " [-23.43559855 -0.9019338 ]\n", + " [-19.04916999 -0.90191099]\n", + " [-14.66274141 -0.90188818]\n", + " [-10.27631284 -0.90186536]\n", + " [ -5.88988428 -0.90184255]\n", + " [ -1.5034557 -0.90181973]\n", + " [ -1.503296 -31.60681974]\n", + " [ -1.50331881 -27.22039116]\n", + " [ -1.50334163 -22.83396259]\n", + " [ -1.50336444 -18.44753402]\n", + " [ -1.50338726 -14.06110544]\n", + " [ -1.50341007 -9.67467688]\n", + " [ -1.50343288 -5.2882483 ]\n", + " [ -1.5034557 -0.90181973]\n", + " [-32.19330594 -29.69447935]\n", + " [-32.19333391 -24.31847935]\n", + " [-32.19336187 -18.94247936]\n", + " [-32.19338983 -13.56647936]\n", + " [-32.19341779 -8.19047935]\n", + " [-32.19344575 -2.81447935]\n", + " [-30.29579608 -31.59196949]\n", + " [-24.91979608 -31.59194152]\n", + " [-19.54379608 -31.59191356]\n", + " [-14.16779608 -31.5918856 ]\n", + " [ -8.79179608 -31.59185764]\n", + " [ -3.41579608 -31.59182968]\n", + " [-30.29595562 -0.91696949]\n", + " [-24.91995562 -0.91694153]\n", + " [-19.54395562 -0.91691356]\n", + " [-14.16795562 -0.9168856 ]\n", + " [ -8.79195562 -0.91685764]\n", + " [ -3.41595563 -0.91682968]\n", + " [ -1.51830595 -29.69431981]\n", + " [ -1.51833391 -24.31831981]\n", + " [ -1.51836187 -18.94231981]\n", + " [ -1.51838983 -13.56631981]\n", + " [ -1.51841779 -8.19031981]\n", + " [ -1.51844575 -2.81431982]\n", + " [-32.19329608 -31.59197936]\n", + " [-32.19329608 -31.59197936]\n", + " [ -1.51845562 -0.91681981]\n", + " [ -1.51845562 -0.91681981]\n", + " [-30.29580595 -29.69446949]\n", + " [-24.91980594 -29.69444152]\n", + " [-19.54380595 -29.69441356]\n", + " [-14.16780595 -29.69438561]\n", + " [ -8.79180595 -29.69435764]\n", + " [ -3.41580595 -29.69432968]\n", + " [-30.29583391 -24.31846949]\n", + " [-24.91983391 -24.31844152]\n", + " [-19.54383391 -24.31841356]\n", + " [-14.16783391 -24.31838561]\n", + " [ -8.79183391 -24.31835764]\n", + " [ -3.41583391 -24.31832968]\n", + " [-30.29586187 -18.94246949]\n", + " [-24.91986187 -18.94244153]\n", + " [-19.54386187 -18.94241356]\n", + " [-14.16786187 -18.94238561]\n", + " [ -8.79186187 -18.94235764]\n", + " [ -3.41586187 -18.94232969]\n", + " [-30.29588983 -13.56646949]\n", + " [-24.91988983 -13.56644152]\n", + " [-19.54388984 -13.56641357]\n", + " [-14.16788983 -13.5663856 ]\n", + " [ -8.79188983 -13.56635764]\n", + " [ -3.41588983 -13.56632968]\n", + " [-30.29591779 -8.19046949]\n", + " [-24.91991779 -8.19044152]\n", + " [-19.54391779 -8.19041356]\n", + " [-14.16791779 -8.1903856 ]\n", + " [ -8.79191779 -8.19035764]\n", + " [ -3.41591779 -8.19032968]\n", + " [-30.29594575 -2.81446949]\n", + " [-24.91994576 -2.81444153]\n", + " [-19.54394575 -2.81441356]\n", + " [-14.16794576 -2.8143856 ]\n", + " [ -8.79194575 -2.81435764]\n", + " [ -3.41594575 -2.81432968]]\n", + "DEBUG:root:radec2pix: xyfp: [[ 0.16415906 -31.72847131]\n", + " [ 0.16601788 -27.34204313]\n", + " [ 0.1678767 -22.95561497]\n", + " [ 0.16973552 -18.56918678]\n", + " [ 0.17159434 -14.1827586 ]\n", + " [ 0.17345315 -9.79633043]\n", + " [ 0.17531197 -5.40990225]\n", + " [ 0.17717079 -1.02347407]\n", + " [ 0.16415906 -31.72847131]\n", + " [ 4.55058724 -31.73033014]\n", + " [ 8.93701541 -31.73218895]\n", + " [ 13.32344359 -31.73404778]\n", + " [ 17.70987177 -31.73590659]\n", + " [ 22.09629995 -31.73776541]\n", + " [ 26.48272812 -31.73962422]\n", + " [ 30.8691563 -31.74148305]\n", + " [ 0.17717079 -1.02347407]\n", + " [ 4.56359897 -1.02533289]\n", + " [ 8.95002714 -1.02719171]\n", + " [ 13.33645532 -1.02905053]\n", + " [ 17.7228835 -1.03090935]\n", + " [ 22.10931168 -1.03276817]\n", + " [ 26.49573986 -1.03462699]\n", + " [ 30.88216803 -1.0364858 ]\n", + " [ 30.8691563 -31.74148305]\n", + " [ 30.87101512 -27.35505487]\n", + " [ 30.87287394 -22.96862669]\n", + " [ 30.87473276 -18.58219851]\n", + " [ 30.87659158 -14.19577034]\n", + " [ 30.8784504 -9.80934216]\n", + " [ 30.88030922 -5.42291398]\n", + " [ 30.88216803 -1.0364858 ]\n", + " [ 0.17996951 -29.81597784]\n", + " [ 0.18224768 -24.43997833]\n", + " [ 0.18452584 -19.06397881]\n", + " [ 0.18680401 -13.6879793 ]\n", + " [ 0.18908217 -8.31197977]\n", + " [ 0.19136034 -2.93598025]\n", + " [ 2.07666524 -31.71428177]\n", + " [ 7.45266476 -31.71655993]\n", + " [ 12.82866428 -31.7188381 ]\n", + " [ 18.2046638 -31.72111627]\n", + " [ 23.58066331 -31.72339443]\n", + " [ 28.95666283 -31.7256726 ]\n", + " [ 2.08966426 -1.03928452]\n", + " [ 7.46566378 -1.04156269]\n", + " [ 12.8416633 -1.04384085]\n", + " [ 18.21766282 -1.04611902]\n", + " [ 23.59366233 -1.04839718]\n", + " [ 28.96966185 -1.05067535]\n", + " [ 30.85496675 -29.82897686]\n", + " [ 30.85724492 -24.45297735]\n", + " [ 30.85952308 -19.07697783]\n", + " [ 30.86180126 -13.70097831]\n", + " [ 30.86407941 -8.32497879]\n", + " [ 30.86635759 -2.94897928]\n", + " [ 0.17916541 -31.71347767]\n", + " [ 0.17916541 -31.71347767]\n", + " [ 30.86716168 -1.05147945]\n", + " [ 30.86716168 -1.05147945]\n", + " [ 2.07746934 -29.81678193]\n", + " [ 7.45346886 -29.8190601 ]\n", + " [ 12.82946837 -29.82133827]\n", + " [ 18.20546789 -29.82361643]\n", + " [ 23.58146741 -29.82589461]\n", + " [ 28.95746693 -29.82817277]\n", + " [ 2.07974751 -24.44078242]\n", + " [ 7.45574702 -24.44306058]\n", + " [ 12.83174654 -24.44533875]\n", + " [ 18.20774606 -24.44761692]\n", + " [ 23.58374558 -24.44989508]\n", + " [ 28.95974509 -24.45217325]\n", + " [ 2.08202567 -19.0647829 ]\n", + " [ 7.45802519 -19.06706107]\n", + " [ 12.83402471 -19.06933924]\n", + " [ 18.21002422 -19.0716174 ]\n", + " [ 23.58602374 -19.07389557]\n", + " [ 28.96202325 -19.07617373]\n", + " [ 2.08430384 -13.68878339]\n", + " [ 7.46030335 -13.69106155]\n", + " [ 12.83630287 -13.69333972]\n", + " [ 18.21230239 -13.69561789]\n", + " [ 23.58830191 -13.69789605]\n", + " [ 28.96430143 -13.70017422]\n", + " [ 2.086582 -8.31278387]\n", + " [ 7.46258152 -8.31506203]\n", + " [ 12.83858103 -8.3173402 ]\n", + " [ 18.21458055 -8.31961837]\n", + " [ 23.59058007 -8.32189653]\n", + " [ 28.96657959 -8.3241747 ]\n", + " [ 2.08886017 -2.93678435]\n", + " [ 7.46485969 -2.93906252]\n", + " [ 12.8408592 -2.94134068]\n", + " [ 18.21685872 -2.94361885]\n", + " [ 23.59285824 -2.94589701]\n", + " [ 28.96885776 -2.94817518]]\n", + "DEBUG:root:radec2pix: lng: [270.4470398 270.51926185 270.61931513 270.76712536 271.00759894\n", + " 271.46762895 272.70005845 286.49130114 270.4470398 278.35667351\n", + " 285.95982213 293.02931263 299.43042278 305.11729798 310.10927793\n", + " 314.46353671 286.49130114 349.82837514 354.73471783 356.4521324\n", + " 357.32535522 357.85379375 358.20792761 358.46177059 314.46353671\n", + " 318.74333689 323.66697635 329.30072855 335.67617912 342.7610671\n", + " 350.43132356 358.46177059 270.50490909 270.61684574 270.79254775\n", + " 271.10819213 271.84151891 275.43536905 273.91748404 283.44327486\n", + " 292.27322451 300.11957347 306.89513227 312.65252806 338.59499359\n", + " 353.59240246 356.2502422 357.3507235 357.95203643 358.33094358\n", + " 316.24148386 321.91069268 328.61592969 336.43108737 345.29354618\n", + " 354.93182927 270.47451616 270.47451616 358.43326445 358.43326445\n", + " 274.16755516 284.27018764 293.54850553 301.6868684 308.61690354\n", + " 314.4285595 275.08714159 287.26177752 298.03288482 307.02206797\n", + " 314.30032851 320.13759497 276.52519686 291.76449803 304.37699404\n", + " 314.09790313 321.42651996 326.9808709 279.08719841 299.17442797\n", + " 313.73069285 323.57233622 330.30226172 335.07338778 284.88740412\n", + " 312.85952275 327.83358678 336.05769185 341.06068787 344.37815396\n", + " 308.1938338 339.99132199 348.00244679 351.46719972 353.38615059\n", + " 354.60255033]\n", + "DEBUG:root:mm_to_pix: fitpx: [[0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]]\n", + "DEBUG:root:mm_to_pix: fitpx.shape: (96, 2)\n", + "DEBUG:root:radec2pix: lat: [77.94367134 79.54902489 81.18632945 82.85028944 84.53583766 86.23790238\n", + " 87.95095267 89.65971994 77.94367134 77.82164346 77.48801235 76.9631292\n", + " 76.27533882 75.45615131 74.53651433 73.54460591 89.65971994 88.15347287\n", + " 86.45230283 84.75294209 83.0672058 81.4014907 79.76129308 78.15206149\n", + " 73.54460591 74.55768324 75.50238779 76.35047091 77.07044991 77.62962616\n", + " 77.99774795 78.15206149 78.63928322 80.62896884 82.66134588 84.72698979\n", + " 86.81649257 88.91826945 77.92273249 77.62880737 77.03600995 76.19348076\n", + " 75.15884594 73.98801233 89.08995442 87.02817045 84.94370871 82.87794501\n", + " 80.84312687 78.84936896 73.99670581 75.19609757 76.26512012 77.14708483\n", + " 77.78216783 78.11748405 77.94905666 77.94905666 78.15735777 78.15735777\n", + " 78.61100015 78.29575797 77.66281562 76.76884154 75.67835331 74.45201735\n", + " 80.5936009 80.20229517 79.43086524 78.36733491 77.10116027 75.70726987\n", + " 82.61510476 82.11071991 81.1484309 79.87243611 78.40512567 76.83322353\n", + " 84.66162432 83.97115888 82.73646392 81.20037729 79.51583908 77.76861975\n", + " 86.70802953 85.66590929 84.05006409 82.22924953 80.34192865 78.44668306\n", + " 88.6299785 86.85760815 84.84280506 82.80723116 80.78933117 78.80649174]\n", + "DEBUG:root:radec2pix: ccdpx: [[-4.45000000e+01 -5.00000033e-01]\n", + " [-4.45000003e+01 2.91928571e+02]\n", + " [-4.45000002e+01 5.84357143e+02]\n", + " [-4.44999998e+01 8.76785714e+02]\n", + " [-4.44999998e+01 1.16921429e+03]\n", + " [-4.45000001e+01 1.46164286e+03]\n", + " [-4.44999997e+01 1.75407143e+03]\n", + " [-4.45000002e+01 2.04650000e+03]\n", + " [-4.45000000e+01 -5.00000033e-01]\n", + " [ 2.47928571e+02 -4.99999990e-01]\n", + " [ 5.40357143e+02 -5.00000111e-01]\n", + " [ 8.32785714e+02 -5.00000066e-01]\n", + " [ 1.12521429e+03 -4.99999995e-01]\n", + " [ 1.41764286e+03 -5.00000140e-01]\n", + " [ 1.71007143e+03 -5.00000040e-01]\n", + " [ 2.00250000e+03 -5.00000296e-01]\n", + " [-4.45000002e+01 2.04650000e+03]\n", + " [ 2.47928572e+02 2.04650000e+03]\n", + " [ 5.40357143e+02 2.04650000e+03]\n", + " [ 8.32785714e+02 2.04650000e+03]\n", + " [ 1.12521429e+03 2.04650000e+03]\n", + " [ 1.41764286e+03 2.04650000e+03]\n", + " [ 1.71007143e+03 2.04650000e+03]\n", + " [ 2.00250000e+03 2.04650000e+03]\n", + " [ 2.00250000e+03 -5.00000296e-01]\n", + " [ 2.00250000e+03 2.91928572e+02]\n", + " [ 2.00250000e+03 5.84357143e+02]\n", + " [ 2.00250000e+03 8.76785714e+02]\n", + " [ 2.00250000e+03 1.16921429e+03]\n", + " [ 2.00250000e+03 1.46164286e+03]\n", + " [ 2.00250000e+03 1.75407143e+03]\n", + " [ 2.00250000e+03 2.04650000e+03]\n", + " [-4.34999999e+01 1.27000000e+02]\n", + " [-4.35000000e+01 4.85400000e+02]\n", + " [-4.35000001e+01 8.43800000e+02]\n", + " [-4.35000001e+01 1.20220000e+03]\n", + " [-4.34999998e+01 1.56060000e+03]\n", + " [-4.34999998e+01 1.91900000e+03]\n", + " [ 8.29999999e+01 4.99999893e-01]\n", + " [ 4.41400000e+02 5.00000055e-01]\n", + " [ 7.99800000e+02 4.99999998e-01]\n", + " [ 1.15820000e+03 5.00000122e-01]\n", + " [ 1.51660000e+03 4.99999912e-01]\n", + " [ 1.87500000e+03 5.00000160e-01]\n", + " [ 8.30000002e+01 2.04550000e+03]\n", + " [ 4.41400000e+02 2.04550000e+03]\n", + " [ 7.99800000e+02 2.04550000e+03]\n", + " [ 1.15820000e+03 2.04550000e+03]\n", + " [ 1.51660000e+03 2.04550000e+03]\n", + " [ 1.87500000e+03 2.04550000e+03]\n", + " [ 2.00150000e+03 1.27000000e+02]\n", + " [ 2.00150000e+03 4.85400000e+02]\n", + " [ 2.00150000e+03 8.43800000e+02]\n", + " [ 2.00150000e+03 1.20220000e+03]\n", + " [ 2.00150000e+03 1.56060000e+03]\n", + " [ 2.00150000e+03 1.91900000e+03]\n", + " [-4.35000001e+01 4.99999931e-01]\n", + " [-4.35000001e+01 4.99999931e-01]\n", + " [ 2.00150000e+03 2.04550000e+03]\n", + " [ 2.00150000e+03 2.04550000e+03]\n", + " [ 8.30000000e+01 1.27000000e+02]\n", + " [ 4.41400000e+02 1.27000000e+02]\n", + " [ 7.99800000e+02 1.27000000e+02]\n", + " [ 1.15820000e+03 1.27000000e+02]\n", + " [ 1.51660000e+03 1.27000000e+02]\n", + " [ 1.87500000e+03 1.27000000e+02]\n", + " [ 8.29999999e+01 4.85400000e+02]\n", + " [ 4.41400000e+02 4.85400000e+02]\n", + " [ 7.99800000e+02 4.85400000e+02]\n", + " [ 1.15820000e+03 4.85400000e+02]\n", + " [ 1.51660000e+03 4.85400000e+02]\n", + " [ 1.87500000e+03 4.85400000e+02]\n", + " [ 8.29999999e+01 8.43800000e+02]\n", + " [ 4.41400000e+02 8.43800000e+02]\n", + " [ 7.99800000e+02 8.43800000e+02]\n", + " [ 1.15820000e+03 8.43800000e+02]\n", + " [ 1.51660000e+03 8.43800000e+02]\n", + " [ 1.87500000e+03 8.43800000e+02]\n", + " [ 8.30000001e+01 1.20220000e+03]\n", + " [ 4.41400000e+02 1.20220000e+03]\n", + " [ 7.99800000e+02 1.20220000e+03]\n", + " [ 1.15820000e+03 1.20220000e+03]\n", + " [ 1.51660000e+03 1.20220000e+03]\n", + " [ 1.87500000e+03 1.20220000e+03]\n", + " [ 8.29999998e+01 1.56060000e+03]\n", + " [ 4.41400000e+02 1.56060000e+03]\n", + " [ 7.99800000e+02 1.56060000e+03]\n", + " [ 1.15820000e+03 1.56060000e+03]\n", + " [ 1.51660000e+03 1.56060000e+03]\n", + " [ 1.87500000e+03 1.56060000e+03]\n", + " [ 8.30000002e+01 1.91900000e+03]\n", + " [ 4.41400000e+02 1.91900000e+03]\n", + " [ 7.99800000e+02 1.91900000e+03]\n", + " [ 1.15820000e+03 1.91900000e+03]\n", + " [ 1.51660000e+03 1.91900000e+03]\n", + " [ 1.87500000e+03 1.91900000e+03]]\n", + "DEBUG:root:radec2pix: ccdpx: [[-4.45000000e+01 -4.99999951e-01]\n", + " [-4.45000000e+01 2.91928572e+02]\n", + " [-4.45000000e+01 5.84357142e+02]\n", + " [-4.45000000e+01 8.76785714e+02]\n", + " [-4.45000000e+01 1.16921429e+03]\n", + " [-4.45000000e+01 1.46164286e+03]\n", + " [-4.45000000e+01 1.75407143e+03]\n", + " [-4.45000000e+01 2.04650000e+03]\n", + " [-4.45000000e+01 -4.99999951e-01]\n", + " [ 2.47928571e+02 -5.00000176e-01]\n", + " [ 5.40357143e+02 -5.00000069e-01]\n", + " [ 8.32785714e+02 -5.00000257e-01]\n", + " [ 1.12521429e+03 -4.99999992e-01]\n", + " [ 1.41764286e+03 -5.00000241e-01]\n", + " [ 1.71007143e+03 -4.99999730e-01]\n", + " [ 2.00250000e+03 -5.00000010e-01]\n", + " [-4.45000000e+01 2.04650000e+03]\n", + " [ 2.47928571e+02 2.04650000e+03]\n", + " [ 5.40357143e+02 2.04650000e+03]\n", + " [ 8.32785714e+02 2.04650000e+03]\n", + " [ 1.12521429e+03 2.04650000e+03]\n", + " [ 1.41764286e+03 2.04650000e+03]\n", + " [ 1.71007143e+03 2.04650000e+03]\n", + " [ 2.00250000e+03 2.04650000e+03]\n", + " [ 2.00250000e+03 -5.00000010e-01]\n", + " [ 2.00250000e+03 2.91928572e+02]\n", + " [ 2.00250000e+03 5.84357143e+02]\n", + " [ 2.00250000e+03 8.76785714e+02]\n", + " [ 2.00250000e+03 1.16921429e+03]\n", + " [ 2.00250000e+03 1.46164286e+03]\n", + " [ 2.00250000e+03 1.75407143e+03]\n", + " [ 2.00250000e+03 2.04650000e+03]\n", + " [-4.35000000e+01 1.27000000e+02]\n", + " [-4.35000000e+01 4.85400000e+02]\n", + " [-4.35000000e+01 8.43800000e+02]\n", + " [-4.35000000e+01 1.20220000e+03]\n", + " [-4.35000000e+01 1.56060000e+03]\n", + " [-4.35000000e+01 1.91900000e+03]\n", + " [ 8.30000000e+01 4.99999720e-01]\n", + " [ 4.41400000e+02 4.99999983e-01]\n", + " [ 7.99800000e+02 4.99999771e-01]\n", + " [ 1.15820000e+03 4.99999773e-01]\n", + " [ 1.51660000e+03 5.00000075e-01]\n", + " [ 1.87500000e+03 4.99999913e-01]\n", + " [ 8.29999998e+01 2.04550000e+03]\n", + " [ 4.41400000e+02 2.04550000e+03]\n", + " [ 7.99800000e+02 2.04550000e+03]\n", + " [ 1.15820000e+03 2.04550000e+03]\n", + " [ 1.51660000e+03 2.04550000e+03]\n", + " [ 1.87500000e+03 2.04550000e+03]\n", + " [ 2.00150000e+03 1.27000000e+02]\n", + " [ 2.00150000e+03 4.85400000e+02]\n", + " [ 2.00150000e+03 8.43800000e+02]\n", + " [ 2.00150000e+03 1.20220000e+03]\n", + " [ 2.00150000e+03 1.56060000e+03]\n", + " [ 2.00150000e+03 1.91900000e+03]\n", + " [-4.35000000e+01 4.99999930e-01]\n", + " [-4.35000000e+01 4.99999930e-01]\n", + " [ 2.00150000e+03 2.04550000e+03]\n", + " [ 2.00150000e+03 2.04550000e+03]\n", + " [ 8.30000000e+01 1.27000000e+02]\n", + " [ 4.41400000e+02 1.27000000e+02]\n", + " [ 7.99800000e+02 1.27000000e+02]\n", + " [ 1.15820000e+03 1.27000000e+02]\n", + " [ 1.51660000e+03 1.27000000e+02]\n", + " [ 1.87500000e+03 1.27000000e+02]\n", + " [ 8.30000000e+01 4.85400000e+02]\n", + " [ 4.41400000e+02 4.85400000e+02]\n", + " [ 7.99800000e+02 4.85400000e+02]\n", + " [ 1.15820000e+03 4.85400000e+02]\n", + " [ 1.51660000e+03 4.85400000e+02]\n", + " [ 1.87500000e+03 4.85400000e+02]\n", + " [ 8.30000000e+01 8.43800000e+02]\n", + " [ 4.41400000e+02 8.43800000e+02]\n", + " [ 7.99800000e+02 8.43800000e+02]\n", + " [ 1.15820000e+03 8.43800000e+02]\n", + " [ 1.51660000e+03 8.43800000e+02]\n", + " [ 1.87500000e+03 8.43800000e+02]\n", + " [ 8.30000000e+01 1.20220000e+03]\n", + " [ 4.DEBUG:root:radec2pix: fitpx: [[-5.00000034e-01 -5.00000033e-01]\n", + " [-5.00000269e-01 2.91928571e+02]\n", + " [-5.00000171e-01 5.84357143e+02]\n", + " [-4.99999761e-01 8.76785714e+02]\n", + " [-4.99999835e-01 1.16921429e+03]\n", + " [-5.00000099e-01 1.46164286e+03]\n", + " [-4.99999719e-01 1.75407143e+03]\n", + " [-5.00000225e-01 2.04650000e+03]\n", + " [-5.00000034e-01 -5.00000033e-01]\n", + " [ 2.91928571e+02 -4.99999990e-01]\n", + " [ 5.84357143e+02 -5.00000111e-01]\n", + " [ 8.76785714e+02 -5.00000066e-01]\n", + " [ 1.16921429e+03 -4.99999995e-01]\n", + " [ 1.46164286e+03 -5.00000140e-01]\n", + " [ 1.75407143e+03 -5.00000040e-01]\n", + " [ 2.04650000e+03 -5.00000296e-01]\n", + " [-5.00000225e-01 2.04650000e+03]\n", + " [ 2.91928572e+02 2.04650000e+03]\n", + " [ 5.84357143e+02 2.04650000e+03]\n", + " [ 8.76785714e+02 2.04650000e+03]\n", + " [ 1.16921429e+03 2.04650000e+03]\n", + " [ 1.46164286e+03 2.04650000e+03]\n", + " [ 1.75407143e+03 2.04650000e+03]\n", + " [ 2.04650000e+03 2.04650000e+03]\n", + " [ 2.04650000e+03 -5.00000296e-01]\n", + " [ 2.04650000e+03 2.91928572e+02]\n", + " [ 2.04650000e+03 5.84357143e+02]\n", + " [ 2.04650000e+03 8.76785DEBUG:root:optics_fp: rtanth: [31.53710793 27.15083443 22.76462071 18.37850955 13.99259736 9.60715672\n", + " 5.22337543 0.86680593 31.53710793 31.87457578 32.80044965 34.26706764\n", + " 36.20878157 38.55387546 41.23358186 44.18706537 0.86680593 4.70645911\n", + " 9.05713384 13.4310871 17.81117737 22.19377139 26.57763063 30.96221766\n", + " 44.18706537 41.17129315 38.42050918 35.99551614 33.96616479 32.40686702\n", + " 31.3877559 30.96221766 29.62479828 24.2490533 18.8734536 13.49817273\n", + " 8.12384367 2.75604003 31.59497037 32.40914016 34.06266769 36.44147428\n", + " 39.41445822 42.8581467 2.31847961 7.58192329 12.93825823 18.30612583\n", + " 23.67768384 29.05088524 42.83223469 39.30633844 36.23781045 33.75162698\n", + " 31.98387863 31.05748561 31.52222904 31.52222904 30.94762955 30.94762955\n", + " 29.70218682 30.56681395 32.3147502 34.81319861 37.91407742 41.48250822\n", + " 24.34353743 25.39129827 27.47054774 30.37016151 33.88015908 37.83102431\n", + " 18.99469609 20.32015484 22.86529373 26.27807784 30.26641445 34.63202369\n", + " 13.66718319 15.45645714e+02]\n", + " [ 2.04650000e+03 1.16921429e+03]\n", + " [ 2.04650000e+03 1.46164286e+03]\n", + " [ 2.04650000e+03 1.75407143e+03]\n", + " [ 2.04650000e+03 2.04650000e+03]\n", + " [ 5.00000148e-01 1.27000000e+02]\n", + " [ 5.00000006e-01 4.85400000e+02]\n", + " [ 4.99999879e-01 8.43800000e+02]\n", + " [ 4.99999939e-01 1.20220000e+03]\n", + " [ 5.00000182e-01 1.56060000e+03]\n", + " [ 5.00000197e-01 1.91900000e+03]\n", + " [ 1.27000000e+02 4.99999893e-01]\n", + " [ 4.85400000e+02 5.00000055e-01]\n", + " [ 8.43800000e+02 4.99999998e-01]\n", + " [ 1.20220000e+03 5.00000122e-01]\n", + " [ 1.56060000e+03 4.99999912e-01]\n", + " [ 1.91900000e+03 5.00000160e-01]\n", + " [ 1.27000000e+02 2.04550000e+03]\n", + " [ 4.85400000e+02 2.04550000e+03]\n", + " [ 8.43800000e+02 2.04550000e+03]\n", + " [ 1.20220000e+03 2.04550000e+03]\n", + " [ 1.56060000e+03 2.04550000e+03]\n", + " [ 1.91900000e+03 2.04550000e+03]\n", + " [ 2.04550000e+03 1.27000000e+02]\n", + " [ 2.04550000e+03 4.85400000e+02]\n", + " [ 2.04550000e+03 8.43800000e+02]\n", + " [ 2.04550000e+03 1.20220000e+03]\n", + " [ 2.04550000e+03 1.56060000e+03]\n", + " [ 2.04550000e+03 1.91900000e+03]\n", + " [ 4.99999930e-01 4.99999931e-01]\n", + " [ 4.99999930e-01 4.99999931e-01]\n", + " [ 2.04550000e+03 2.04550000e+03]\n", + " [ 2.04550000e+03 2.04550000e+03]\n", + " [ 1.27000000e+02 1.27000000e+02]\n", + " [ 4.85400000e+02 1.27000000e+02]\n", + " [ 8.43800000e+02 1.27000000e+02]\n", + " [ 1.20220000e+03 1.27000000e+02]\n", + " [ 1.56060000e+03 1.27000000e+02]\n", + " [ 1.91900000e+03 1.27000000e+02]\n", + " [ 1.27000000e+02 4.85400000e+02]\n", + " [ 4.85400000e+02 4.85400000e+02]\n", + " [ 8.43800000e+02 4.85400000e+02]\n", + " [ 1.20220000e+03 4.85400000e+02]\n", + " [ 1.56060000e+03 4.85400000e+02]\n", + " [ 1.91900000e+03 4.85400000e+02]\n", + " [ 1.27000000e+02 8.43800000e+02]\n", + " [ 4.85400000e+02 8.43800000e+02]\n", + " [ 8.43800000e+02 8.43800000e+02]\n", + " [ 1.20220000e+03 8.43800000e+02]\n", + " [ 1.56060000e+03 8.43800000e+02]\n", + " [ 1.91900000e+03 8.43800000e+02]\n", + " [ 1.27000000e+02 1.20220000e+03]\n", + " [ 4.85400000e+02 1.20220000e+03]\n", + " [ 8.43800000e+02 1.20220000e+03]\n", + " [ 1.20220000e+03 1.20220000e+03]\n", + " [ 1.56060000e+03 1.20220000e+03]\n", + " [ 1.91900000e+03 1.20220000e+03]\n", + " [ 1.27000000e+02 1.56060000e+03]\n", + " [ 4.85400000e+02 1.56060000e+03]\n", + " [ 8.43800000e+02 1.56060000e+03]\n", + " [ 1.20220000e+03 1.56060000e+03]\n", + " [ 1.56060000e+03 1.56060000e+03]\n", + " [ 1.91900000e+03 1.56060000e+03]\n", + " [ 1.27000000e+02 1.91900000e+03]\n", + " [ 4.85400000e+02 1.91900000e+03]\n", + " [ 8.43800000e+02 1.91900000e+03]\n", + " [ 1.20220000e+03 1.91900000e+03]\n", + " [ 1.56060000e+03 1.91900000e+03]\n", + " [ 1.91900000e+03 1.91900000e+03]]\n", + "41400000e+02 1.20220000e+03]\n", + " [ 7.99800000e+02 1.20220000e+03]\n", + " [ 1.15820000e+03 1.20220000e+03]\n", + " [ 1.51660000e+03 1.20220000e+03]\n", + " [ 1.87500000e+03 1.20220000e+03]\n", + " [ 8.30000000e+01 1.56060000e+03]\n", + " [ 4.41400000e+02 1.56060000e+03]\n", + " [ 7.99800000e+02 1.56060000e+03]\n", + " [ 1.15820000e+03 1.56060000e+03]\n", + " [ 1.51660000e+03 1.56060000e+03]\n", + " [ 1.87500000e+03 1.56060000e+03]\n", + " [ 8.30000000e+01 1.91900000e+03]\n", + " [ 4.41400000e+02 1.91900000e+03]\n", + " [ 7.99800000e+02 1.91900000e+03]\n", + " [ 1.15820000e+03 1.91900000e+03]\n", + " [ 1.51660000e+03 1.91900000e+03]\n", + " [ 1.87500000e+03 1.91900000e+03]]\n", + "DEBUG:root:radec2pix: xyfp: [[ -0.167405 31.491388 ]\n", + " [ -0.167405 27.10495943]\n", + " [ -0.167405 22.71853086]\n", + " [ -0.167405 18.33210229]\n", + " [ -0.167405 13.94567372]\n", + " [ -0.167405 9.55924515]\n", + " [ -0.167405 5.17281657]\n", + " [ -0.167405 0.786388 ]\n", + " [ -0.167405 31.491388 ]\n", + " [ -4.55383357 31.491388 ]\n", + " [ -8.94026214 31.491388 ]\n", + " [-13.32669071 31.491388 ]\n", + " [-17.71311928 31.491388 ]\n", + " [-22.09954786 31.491388 ]\n", + " [-26.48597643 31.491388 ]\n", + " [-30.872405 31.491388 ]\n", + " [ -0.167405 0.786388 ]\n", + " [ -4.55383357 0.786388 ]\n", + " [ -8.94026214 0.786388 ]\n", + " [-13.32669071 0.786388 ]\n", + " [-17.71311929 0.786388 ]\n", + " [-22.09954786 0.786388 ]\n", + " [-26.48597643 0.786388 ]\n", + " [-30.872405 0.786388 ]\n", + " [-30.872405 31.491388 ]\n", + " [-30.872405 27.10495943]\n", + " [-30.872405 22.71853086]\n", + " [-30.872405 18.33210229]\n", + " [-30.872405 13.94567371]\n", + " [-30.872405 9.55924514]\n", + " [-30.872405 5.17281657]\n", + " [-30.872405 0.786388 ]\n", + " [ -0.182405 29.578888 ]\n", + " [ -0.182405 24.202888 ]\n", + " [ -0.182405 18.826888 ]\n", + " [ -0.182405 13.450888 ]\n", + " [ -0.182405 8.074888 ]\n", + " [ -0.182405 2.698888 ]\n", + " [ -2.079905 31.476388 ]\n", + " [ -7.455905 31.476388 ]\n", + " [-12.831905 31.476388 ]\n", + " [-18.207905 31.476388 ]\n", + " [-23.583905 31.476388 ]\n", + " [-28.959905 31.476388 ]\n", + " [ -2.079905 0.801388 ]\n", + " [ -7.455905 0.801388 ]\n", + " [-12.831905 0.801388 ]\n", + " [-18.207905 0.801388 ]\n", + " [-23.583905 0.801388 ]\n", + " [-28.959905 0.801388 ]\n", + " [-30.857405 29.578888 ]\n", + " [-30.857405 24.202888 ]\n", + " [-30.857405 18.826888 ]\n", + " [-30.857405 13.450888 ]\n", + " [-30.857405 8.074888 ]\n", + " [-30.857405 2.698888 ]\n", + " [ -0.182405 31.476388 ]\n", + " [ -0.182405 31.476388 ]\n", + " [-30.857405 0.801388 ]\n", + " [-30.857405 0.801388 ]\n", + " [ -2.079905 29.578888 ]\n", + " [ -7.455905 29.578888 ]\n", + " [-12.831905 29.578888 ]\n", + " [-18.207905 29.578888 ]\n", + " [-23.583905 29.578888 ]\n", + " [-28.959905 29.578888 ]\n", + " [ -2.079905 24.202888 ]\n", + " [ -7.455905 24.202888 ]\n", + " [-12.831905 24.DEBUG:root:radec2pix: curVec: [[-0.20209273 -0.1794574 0.96278428]\n", + " [-0.17575719 -0.18303038 0.96726898]\n", + " [-0.14875148 -0.18669419 0.97109128]\n", + " [-0.12118288 -0.19041023 0.97419642]\n", + " [-0.09315919 -0.1941447 0.9765394 ]\n", + " [-0.06478903 -0.1978686 0.97808507]\n", + " [-0.03618212 -0.20155741 0.97880819]\n", + " [-0.00744934 -0.20519067 0.97869367]\n", + " [-0.20209273 -0.1794574 0.96278428]\n", + " [-0.20730579 -0.20510645 0.95653314]\n", + " [-0.21232634 -0.23119025 0.949457 ]\n", + " [-0.2171385 -0.25758342 0.94154217]\n", + " [-0.22172623 -0.28416497 0.93278494]\n", + " [-0.22607326 -0.31081804 0.92319176]\n", + " [-0.23016337 -0.33742951 0.91277935]\n", + " [-0.23398076 -0.36388985 0.90157483]\n", + " [-0.00744934 -0.20519067 0.97869367]\n", + " [-0.01102795 -0.2321844 0.97260927]\n", + " [-0.01466701 -0.25954562 0.96561946]\n", + " [-0.01835179 -0.28715373 0.9577087 ]\n", + " [-0.02206761 -0.31489134 0.94887115]\n", + " [-0.02579969 -0.34264258 0.93911151]\n", + " [-0.02953304 -0.37029226 0.92844571]\n", + " [-0.03325257 -0.39772621 0.91690137]\n", + " [-0.23398076 -0.36388985 0.90157202888 ]\n", + " [-18.207905 24.202888 ]\n", + " [-23.583905 24.202888 ]\n", + " [-28.959905 24.202888 ]\n", + " [ -2.079905 18.826888 ]\n", + " [ -7.455905 18.826888 ]\n", + " [-12.831905 18.826888 ]\n", + " [-18.207905 18.826888 ]\n", + " [-23.583905 18.826888 ]\n", + " [-28.959905 18.826888 ]\n", + " [ -2.079905 13.450888 ]\n", + " [ -7.455905 13.450888 ]\n", + " [-12.831905 13.450888 ]\n", + " [-18.207905 13.450888 ]\n", + " [-23.583905 13.450888 ]\n", + " [-28.959905 13.450888 ]\n", + " [ -2.079905 8.074888 ]\n", + " [ -7.455905 8.074888 ]\n", + " [-12.831905 8.074888 ]\n", + " [-18.20790499 8.074888 ]\n", + " [-23.583905 8.074888 ]\n", + " [-28.959905 8.074888 ]\n", + " [ -2.079905 2.698888 ]\n", + " [ -7.455905 2.698888 ]\n", + " [-12.831905 2.698888 ]\n", + " [-18.207905 2.698888 ]\n", + " [-23.583905 2.698888 ]\n", + " [-28.959905 2.698888 ]]\n", + "DEBUG:root:radec2pix: curVec: [[-0.46297757 -0.01379679 -0.88626261]\n", + " [-0.47633568 -0.03593579 -0.87852885]\n", + " [-0.48949909 -0.05860063 -0.87003253]\n", + " [-0.50240234 -0.08168172 -0.86076709]\n", + " [-0.51498361 -0.10507388 -0.85073577]\n", + " [-0.52718463 -0.1286755 -0.83995177]\n", + " [-0.53895084 -0.15238772 -0.82843828]\n", + " [-0.55023175 -0.17611403 -0.81622844]\n", + " [-0.46297757 -0.01379679 -0.88626261]\n", + " [-0.44186582 -0.02685662 -0.89667905]\n", + " [-0.42003309 -0.04031614 -0.90661282]\n", + " [-0.39754847 -0.05410054 -0.9159849 ]\n", + " [-0.3744851 -0.06813967 -0.92472585]\n", + " [-0.35092066 -0.08236729 -0.9327756 ]\n", + " [-0.32693779 -0.09672036 -0.94008343]\n", + " [-0.30262402 -0.11113832 -0.94660814]\n", + " [-0.55023175 -0.17611403 -0.81622844]\n", + " [-0.52925288 -0.19129161 -0.82661896]\n", + " [-0.50741915 -0.2066301 -0.83655831]\n", + " [-0.48479418 -0.22205911 -0.84596948]\n", + " [-0.46144653 -0.23751065 -0.85478406]\n", + " [-0.43745136 -0.25291812 -0.86294191]\n", + " [-0.41289139 -0.26821589 -0.87039126]\n", + " [-0.38785687 -0.2833396 -0.87708934]\n", + " [-0.30262402 -0.11113832 -0.94660814]\n", + " [-0.31513693 -0.13514045 -0.9393752 ]\n", + " [-0.32763788 -0.1595123 -0.9312407 ]\n", + " [-0.34006383 -0.18415071 -0.92219581]\n", + " [-0.35235482 -0.20895417 -0.91224133]\n", + " [-0.36445346 -0.23382127 -0.90138853]\n", + " [-0.385 18.67659162 22.72731378 27.24058114 32.02140662\n", + " 8.40167037 11.07692547 15.25159806 20.00817233 25.01690288 30.15239046\n", + " 3.49098634 8.0185534 13.1988698 18.49123795 23.82109044 29.16788596]\n", + "DEBUG:root:optics_fp: xyfp: [[ 0.236018 -31.56946754]\n", + " [ 0.23651287 -27.18303899]\n", + " [ 0.23700774 -22.79661046]\n", + " [ 0.23750261 -18.41018192]\n", + " [ 0.23799748 -14.02375336]\n", + " [ 0.23849235 -9.63732482]\n", + " [ 0.23898721 -5.25089628]\n", + " [ 0.23948208 -0.86446773]\n", + " [ 0.236018 -31.56946754]\n", + " [ 4.62244655 -31.56996241]\n", + " [ 9.00887509 -31.57045728]\n", + " [ 13.39530363 -31.57095214]\n", + " [ 17.78173218 -31.57144701]\n", + " [ 22.16816072 -31.57194188]\n", + " [ 26.55458927 -31.57243675]\n", + " [ 30.94101781 -31.57293162]\n", + " [ 0.23948208 -0.86446773]\n", + " [ 4.62591062 -0.8649626 ]\n", + " [ 9.01233917 -0.86545747]\n", + " [ 13.39876771 -0.86595234]\n", + " [ 17.78519626 -0.86644721]\n", + " [ 22.1716248 -0.86694208]\n", + " [ 26.55805334 -0.86743695]\n", + " [ 30.94448189 -0.86793181]\n", + " [ 30.94101781 -31.57293162]\n", + " [ 30.94151268 -27.18650307]\n", + " [ 30.94200754 -22.7630481 -0.25865028 -0.88965989]\n", + " [-0.38785687 -0.2833396 -0.87708934]\n", + " [-0.46875038 -0.02342211 -0.88302009]\n", + " [-0.4849995 -0.05092504 -0.87303043]\n", + " [-0.50089081 -0.07910828 -0.86188762]\n", + " [-0.51630902 -0.10777641 -0.84959357]\n", + " [-0.53114688 -0.13674225 -0.83617256]\n", + " [-0.54530559 -0.16582482 -0.82167143]\n", + " [-0.45391155 -0.01951208 -0.89083309]\n", + " [-0.42754329 -0.03579831 -0.90328579]\n", + " [-0.4001602 -0.05260986 -0.91493389]\n", + " [-0.37189519 -0.06981564 -0.92564558]\n", + " [-0.34289135 -0.08729368 -0.93531029]\n", + " [-0.31330285 -0.10492894 -0.94383857]\n", + " [-0.54115608 -0.18262569 -0.82085197]\n", + " [-0.51486125 -0.20134378 -0.83329381]\n", + " [-0.48734524 -0.22023343 -0.84498038]\n", + " [-0.4587321 -0.23916858 -0.85578224]\n", + " [-0.42916032 -0.25802654 -0.86558866]\n", + " [-0.39878535 -0.27668701 -0.87430803]\n", + " [-0.3081609 -0.12150158 -0.94354344]\n", + " [-0.32349763 -0.15117988 -0.93407383]\n", + " [-0.33875321 -0.18131083 -0.9232403 ]\n", + " [-0.35381604 -0.21170695 -0.91104027]\n", + " [-0.36858042 -0.24218154 -0.89749461]\n", + " [-0.38294641 -0.27254728 -0.88264943]\n", + " [-0.46295261 -0.01391537 -0.8862738 ]\n", + " [-0.46295261 -0.01391537 -0.8862738 ]\n", + " [-0.38790425 -0.28320417 -0.87711213]\n", + " [-0.38790425 -0.28320417 -0.87711213]\n", + " [-0.4597003 -0.02909337 -0.88759743]\n", + " [-0.43329618 -0.04557315 -0.90009861]\n", + " [-0.40586153 -0.06255278 -0.91179141]\n", + " [-0.37752882 -0.07990214 -0.92254411]\n", + " [-0.34844098 -0.09750003 -0.93224601]\n", + " [-0.31875242 -0.11523175 -0.94080738]\n", + " [-0.4759337 -0.05679512 -0.87764539]\n", + " [-0.44945714 -0.07378986 -0.89024903]\n", + " [-0.42190738 -0.09121517 -0.90203878]\n", + " [-0.39341536 -0.10894365 -0.91288315]\n", + " [-0.36412347 -0.1268558 -0.92267096]\n", + " [-0.33418689 -0.14483736 -0.93131158]\n", + " [-0.49182387 -0.08515962 -0.86652012]\n", + " [-0.46531822 -0.10262255 -0.87917437]\n", + " [-0.43769949 -0.12045112 -0.89101666]\n", + " [-0.40909688 -0.13851997 -0.90191572]\n", + " [-0.37965206 -0.15671032 -0.91175994]\n", + " [-0.34952082 -0.17490741 -0.92045782]\n", + " [-0.50725537 -0.11399248 -0.85422345]\n", + " [-0.4807637 -0.13187975 -0.866876 ]\n", + " [-0.45312227 -0.1500716 -0.87872563]\n", + " [-0.42445842 -0.483]\n", + " [-0.20690776 -0.36943866 0.90592729]\n", + " [-0.17912643 -0.3748063 0.90963397]\n", + " [-0.15073878 -0.37995447 0.91264036]\n", + " [-0.12184844 -0.38484899 0.9149012 ]\n", + " [-0.09256241 -0.38945949 0.91638066]\n", + " [-0.06299201 -0.39375941 0.91705263]\n", + " [-0.03325257 -0.39772621 0.91690137]\n", + " [-0.19071738 -0.18108874 0.96479726]\n", + " [-0.15797534 -0.1855353 0.96985589]\n", + " [-0.12433316 -0.19007922 0.97386403]\n", + " [-0.0899891 -0.19465626 0.97673482]\n", + " [-0.05514315 -0.19921301 0.9784035 ]\n", + " [-0.0199978 -0.203706 0.97882785]\n", + " [-0.20429916 -0.19059136 0.96017539]\n", + " [-0.21056 -0.2223367 0.95196159]\n", + " [-0.21651608 -0.25460994 0.9424938 ]\n", + " [-0.22213795 -0.28718651 0.93176104]\n", + " [-0.22739569 -0.31985123 0.91977518]\n", + " [-0.2322596 -0.35239735 0.90657134]\n", + " [-0.00909998 -0.21689456 0.97615262]\n", + " [-0.01352945 -0.25024054 0.96808916]\n", + " [-0.01803487 -0.28401823 0.95864925]\n", + " [-0.02258921 -0.31801032 0.94781811]\n", + " [-0.02716525 -0.35200338 0.93560444]\n", + " [-0.03173533 -0.38578571 0.92204243]\n", + " [-0.22225786 -0.366DEBUG:root:fitpix2pix: ccdpx: shape: (96, 2)\n", + "16844359 -0.88964139]\n", + " [-0.39491295 -0.18687664 -0.89951147]\n", + " [-0.36464203 -0.20525471 -0.90824374]\n", + " [-0.52212058 -0.14310717 -0.84077966]\n", + " [-0.49568506 -0.16137645 -0.85337797]\n", + " [-0.4680667 -0.17989228 -0.86518919]\n", + " [-0.43939117 -0.19853008 -0.87608288]\n", + " [-0.40979828 -0.21716956 -0.88594738]\n", + " [-0.37944416 -0.23569294 -0.89469043]\n", + " [-0.53632023 -0.17232283 -0.82623571]\n", + " [-0.50998169 -0.19093154 -0.8387275 ]\n", + " [-0.48243123 -0.20973106 -0.85045458]\n", + " [-0.45379324 -0.2285958 -0.86128721]\n", + " [-0.42420652 -0.24740375 -0.87111435]\n", + " [-0.39382676 -0.26603524 -0.87984415]]\n", + "80007453]\n", + " [ 30.94250242 -18.41364599]\n", + " [ 30.94299728 -14.02721745]\n", + " [ 30.94349215 -9.6407889 ]\n", + " [ 30.94398702 -5.25436036]\n", + " [ 30.94448189 -0.86793181]\n", + " [ 0.25123377 -29.65696924]\n", + " [ 0.25184028 -24.28096928]\n", + " [ 0.25244679 -18.90496931]\n", + " [ 0.2530533 -13.52896935]\n", + " [ 0.25365981 -8.15296938]\n", + " [ 0.25426632 -2.77696942]\n", + " [ 2.14851968 -31.5546833 ]\n", + " [ 7.52451965 -31.55528981]\n", + " [ 12.90051962 -31.55589633]\n", + " [ 18.27651958 -31.55650284]\n", + " [ 23.65251954 -31.55710934]\n", + " [ 29.02851952 -31.55771586]\n", + " [ 2.15198038 -0.8796835 ]\n", + " [ 7.52798035 -0.88029001]\n", + " [ 12.90398031 -0.88089652]\n", + " [ 18.27998027 -0.88150303]\n", + " [ 23.65598025 -0.88210954]\n", + " [ 29.03198021 -0.88271605]\n", + " [ 30.92623357 -29.66042994]\n", + " [ 30.92684009 -24.28442998]\n", + " [ 30.9274466 -18.90843001]\n", + " [ 30.9280531 -13.53243004]\n", + " [ 30.92865961 -8.15643008]\n", + " [ 30.92926612 -2.78043011]\n", + " [ 0.2510197 -31.55446923]\n", + " [ 0.2510197 -31.55446923]\n", + " [ 30.9294802 -0.88293012]\n", + " [ 30.9294802 -0.88293012]\n", + " [ 2.14873376 -29.65718332]\n", + " [ 7.52473372 -29.65778983]\n", + " [ 12.90073369 -29.65839633]\n", + " [ 18.27673365 -29.65900285]\n", + " [ 23.65273362 -29.65960936]\n", + " [ 29.02873359 -29.66021587]\n", + " [ 2.14934027 -24.28118335]\n", + " [ 7.52534023 -24.28178986]\n", + " [ 12.9013402 -24.28239637]\n", + " [ 18.27734016 -24.28300288]\n", + " [ 23.65334013 -24.28360939]\n", + " [ 29.02934009 -24.2842159 ]\n", + " [ 2.14994678 -18.90518338]\n", + " [ 7.52594674 -18.90578989]\n", + " [ 12.90194671 -18.9063964 ]\n", + " [ 18.27794667 -18.90700292]\n", + " [ 23.65394664 -18.90760943]\n", + " [ 29.0299466 -18.90821593]\n", + " [ 2.15055329 -13.52918342]\n", + " [ 7.52655325 -13.52978993]\n", + " [ 12.90255322 -13.53039644]\n", + " [ 18.27855318 -13.53100295]\n", + " [ 23.65455315 -13.53160946]\n", + " [ 29.03055312 -13.53221597]\n", + " [ 2.1511598 -8.15318346]\n", + " [ 7.52715976 -8.15378996]\n", + " [ 12.90315973 -8.15439647]\n", + " [ 18.27915969 -8.15500298]\n", + " [ 23.65515966 -8.15560949]\n", + " [ 29.03115962 -8.156216 ]\n", + " [ 2.1517663 -2.77718348]\n", + " [ 7.52776627 -2.77779 ]\n", + " [ 12.90376624 -2.77839651]\n", + " [ 18.2797662 -2.77900302]\n", + " [ 23.65576617 -2.77960953]\n", + " [ 29.03176613 -2.78021604]]\n", + "23832 0.90358781]\n", + " [-0.18858787 -0.37292126 0.90849565]\n", + " [-0.15395527 -0.37929372 0.91237824]\n", + " [-0.11855003 -0.38529109 0.91514844]\n", + " [-0.08256928 -0.39085746 0.91674029]\n", + " [-0.04621964 -0.39594561 0.91711004]\n", + " [-0.20202207 -0.17955625 0.96278068]\n", + " [-0.20202207 -0.17955625 0.96278068]\n", + " [-0.03334175 -0.39761992 0.91694423]\n", + " [-0.03334175 -0.39761992 0.91694423]\n", + " [-0.19295276 -0.19218737 0.96220229]\n", + " [-0.19911145 -0.2241062 0.95400788]\n", + " [-0.20498921 -0.25654354 0.94454478]\n", + " [-0.21055643 -0.28927524 0.93380181]\n", + " [-0.21578279 -0.32208643 0.92179071]\n", + " [-0.22063815 -0.35477026 0.90854657]\n", + " [-0.16008999 -0.19679436 0.9672865 ]\n", + " [-0.16595243 -0.22915071 0.95914011]\n", + " [-0.17160162 -0.26200144 0.94968844]\n", + " [-0.17700737 -0.29512416 0.93891966]\n", + " [-0.18213836 -0.32830487 0.92684493]\n", + " [-0.18696346 -0.36133615 0.91349923]\n", + " [-0.12632316 -0.2014698 0.97131477]\n", + " [-0.13187808 -0.23418404 0.96320611]\n", + " [-0.13728713 -0.26737266 0.95376313]\n", + " [-0.14251979 -0.30081514 0.94297315]\n", + " [-0.14754437 -0.33429813 0.93084661]\n", + " [-0.1523293 -0.36761323 0.91741828]\n", + " [-0.09185012 -0.20614971 0.97420011]\n", + " [-0.0970847 -0.23914328 0.96611855]\n", + " [-0.10224018 -0.27259504 0.95668118]\n", + " [-0.10728634 -0.30628614 0.94587443]\n", + " [-0.11219197 -0.34000347 0.93370799]\n", + " [-0.11692584 -0.37353744 0.92021635]\n", + " [-0.05687068 -0.21078108 0.97587759]\n", + " [-0.06177148 -0.24397643 0.DEBUG:root:fitpix2pix: visCut: True\n", + "DEBUG:root:radec2pix: curVec Shape: (96, 3)\n", + "96781185]\n", + " [-0.06665933 -0.27761704 0.95837639]\n", + " [-0.07150506 -0.31148512 0.94755688]\n", + " [-0.07627875 -0.34536754 0.9353624 ]\n", + " [-0.08095031 -0.37905358 0.92182722]\n", + " [-0.02158753 -0.2153208 0.97630473]\n", + " [-0.02614192 -0.24864103 0.96824286]\n", + " [-0.03074912 -0.28239612 0.95880495]\n", + " [-0.03538147 -0.31636875 0.94797625]\n", + " [-0.040011 -0.35034558 0.93576551]\n", + " [-0.04460936 -0.38411509 0.92220692]]\n", + "DEBUG:root:radec2pix: curVec Shape: (96, 3)\n", + "DEBUG:root:optics_fp: xyfp shape: (96, 2)\n", + "DEBUG:root:optics_fp: cphi: [0.00780224 0.0090627 0.01080888 0.01338846 0.01758501 0.02561216\n", + " 0.04710747 0.28386977 0.00780224 0.14533491 0.27496322 0.39120201\n", + " 0.49136628 0.57525223 0.64424749 0.70045521 0.28386977 0.98428319\n", + " 0.99578049 0.99808345 0.99891062 0.99929852 0.9995109 0.99963964\n", + " 0.70045521 0.75176312 0.80558693 0.85985876 0.91123211 0.95507721\n", + " 0.98608706 0.99963964 0.00881221 0.01076578 0.01383213 0.0193404\n", + " 0.03213503 0.09472286 0.06831973 0.23248256 0.37902375 0.50180626\n", + " 0.60035228 0.67755053 0.93102393 0.99375313 0.9978592 0.99893119\n", + " 0.99936126 0.99957574 0.72226117 0.78705016 0.85369562 0.91657981\n", + " 0.96723916 0.99609029 0.00828177 0.00828177 0.99962616 0.99962616\n", + " 0.07267344 0.24649478 0.39952529 0.52527664 0.62411014 0.70001939\n", + " 0.08867076 0.29673788 0.46997825 0.60212258 0.69841939 0.76758588\n", + " 0.11364014 0.37079245 0.56463565 0.69588651 0.78180916 0.83848868\n", + " 0.15793745 0.48747001 0.6912696 0.80460719 0.86865107 0.90684836\n", + " 0.25692034 0.68020319 0.84650539 0.91395454 0.94586289 0.96305996\n", + " 0.61832382 0.93964081 0.97815648 0.98893108 0.99334495 0.99556615]\n", + "DEBUG:root:radec2pix: fitpx: [[ 2.13550000e+03 -4.99999951e-01]\n", + " [ 2.13550000e+03 2.91928572e+02]\n", + " [ 2.13550000e+03 5.84357142e+02]\n", + " [ 2.13550000e+03 8.76785714e+02]\n", + " [ 2.13550000e+03 1.16921429e+03]\n", + " [ 2.13550000e+03 1.46164286e+03]\n", + " [ 2.13550000e+03 1.75407143e+03]\n", + " [ 2.13550000e+03 2.04650000e+03]\n", + " [ 2.13550000e+03 -4.99999951e-01]\n", + " [ 2.42792857e+03 -5.00000176e-01]\n", + " [ 2.72035714e+03 -5.00000069e-01]\n", + " [ 3.01278571e+03 -5.00000257e-01]\n", + " [ 3.30521429e+03 -4.99999992e-01]\n", + " [ 3.59764286e+03 -5.00000241e-01]\n", + " [ 3.89007143e+03 -4.99999730e-01]\n", + " [ 4.18250000e+03 -5.00000010e-01]\n", + " [ 2.13550000e+03 2.04650000e+03]\n", + " [ 2.42792857e+03 2.04650000e+03]\n", + " [ 2.72035714e+03 2.04650000e+03]\n", + " [ 3.01278571e+03 2.04650000e+03]\n", + " [ 3.30521429e+03 2.04650000e+03]\n", + " [ 3.59764286e+03 2.04650000e+03]\n", + " [ 3.89007143e+03 2.04650000e+03]\n", + " [ 4.18250000e+03 2.04650000e+03]\n", + " [ 4.18250000e+03 -5.00000010e-01]\n", + " [ 4.18250000e+03 2.91928572e+02]\n", + " [ 4.18250000e+03 5.84357143e+02]\n", + " [ 4.18250000e+03 8.76785714e+02]\n", + " [ 4.18250000e+03 1.16921429e+03]\n", + " [ 4.18250000e+03 1.46164286e+03]\n", + " [ 4.18250000e+03 1.75407143e+03]\n", + " [ 4.18250000e+03 2.04650000e+03]\n", + " [ 2.13650000e+03 1.27000000e+02]\n", + " [ 2.13650000e+03 4.85400000e+02]\n", + " [ 2.13650000e+03 8.43800000e+02]\n", + " [ 2.13650000e+03 1.20220000e+03]\n", + " [ 2.13650000e+03 1.56060000e+03]\n", + " [ 2.13650000e+03 1.91900000e+03]\n", + " [ 2.26300000e+03 4.99999720e-01]\n", + " [ 2.62140000e+03 4.99999983e-01]\n", + " [ 2.97980000e+03 4.99999771e-01]\n", + " [ 3.33820000e+03 4.99999773e-01]\n", + " [ 3.69660000e+03 5.00000075e-01]\n", + " [ 4.05500000e+03 4.99999913e-01]\n", + " [ 2.26300000e+03 2.04550000e+03]\n", + " [ 2.62140000e+03 2.04550000e+03]\n", + " [ 2.97980000e+03 2.04550000e+03]\n", + " [ 3.33820000e+03 2.04550000e+03]\n", + " [ 3.69660000e+03 2.04550000e+03]\n", + " [ 4.05500000e+03 2.04550000e+03]\n", + " [ 4.18150000e+03 1.27000000e+02]\n", + " [ 4.18150000e+03 4.85400000e+02]\n", + " [ 4.18150000e+03 8.43800000e+02]\n", + " [ 4.18150000e+03 1.20220000e+03]\n", + " [ 4.18150000e+03 1.56060000e+03]\n", + " [ 4.18150000e+03 1.91900000e+03]\n", + " [ 2.13650000e+03 4.99999930e-01]\n", + " [ 2.13650000e+03 4.99999930e-01]\n", + " [ 4.18150000e+03 2.04550000e+03]\n", + " [ 4.18150000e+03 2.04550000e+03]\n", + " [ 2.26300000e+03 1.27000000e+02]\n", + " [ 2.62140000e+03 1.27000000e+02]\n", + " [ 2.97980000e+03 1.27000000e+02]\n", + " [ 3.33820000e+03 1.27000000e+02]\n", + " [ 3.69660000e+03 1.27000000e+02]\n", + " [ 4.05500000e+03 1.27000000e+02]\n", + " [ 2.26300000e+03 4.85400000e+02]\n", + " [ 2.62140000e+03 4.85400000e+02]\n", + " [ 2.97980000e+03 4.85400000e+02]\n", + " [ 3.33820000e+03 4.85400000e+02]\n", + " [ 3.69660000e+03 4.85400000e+02]\n", + " [ 4.05500000e+03 4.85400000e+02]\n", + " [ 2.26300000e+03 8.43800000e+02]\n", + " [ 2.62140000e+03 8.43800000e+02]\n", + " [ 2.97980000e+03 8.43800000e+02]\n", + " [ 3.33820000e+03 8.43800000e+02]\n", + " [ 3.69660000e+03 8.43800000e+02]\n", + " [ 4.05500000e+03 8.43800000e+02]\n", + " [ 2.26300000e+03 1.20220000e+03]\n", + " [ 2.62140000e+03 1.20220000e+03]\n", + " [ 2.97980000e+03 1.20220000e+03]\n", + " [ 3.33820000e+03 1.20220000e+03]\n", + " [ 3.69660000e+03 1.20220000e+03]\n", + " [ 4.05500000e+03 1.20220000e+03]\n", + " [ 2.26300000e+03 1.56060000e+03]\n", + " [ 2.62140000e+03 1.56060000e+03]\n", + " [ 2.97980000e+03 1.56060000e+03]\n", + " [ 3.33820000e+03 1.56060000e+03]\n", + " [ 3.69660000e+03 1.56060000e+03]\n", + " [ 4.05500000e+03 1.56060000e+03]\n", + " [ 2.26300000e+03 1.91900000e+03]\n", + " [ 2.62140000e+03 1.91900000e+03]\n", + " [ 2.97980000e+03 1.91900000e+03]\n", + " [ 3.33820000e+03 1.91900000e+03]\n", + " [ 3.69660000e+03 1.91900000e+03]\n", + " [ 4.05500000e+03 1.91900000e+03]]\n", + "DEBUG:root:fitpix2pix: ccdpx: shape: (96, 2)\n", + "DEBUG:root:fitpix2pix: visCut: True\n", + "DEBUG:root:radec2pix: ccdpx: [[-4.45000000e+01 -4.99999838e-01]\n", + " [-4.45000000e+01 2.91928571e+02]\n", + " [-4.45000000e+01 5.84357142e+02]\n", + " [-4.45000000e+01 8.76785714e+02]\n", + " [-4.45000000e+01 1.16921429e+03]\n", + " [-4.45000000e+01 1.46164286e+03]\n", + " [-4.45000000e+01 1.75407143e+03]\n", + " [-4.45000001e+01 2.04650000e+03]\n", + " [-4.45000000e+01 -4.99999838e-01]\n", + " [ 2.47928571e+02 -5.00000127e-01]\n", + " [ 5.40357143e+02 -4.99999855e-01]\n", + " [ 8.32785714e+02 -4.99999742e-01]\n", + " [ 1.12521429e+03 -4.99999752e-01]\n", + " [ 1.41764286e+03 -5.00000255e-01]\n", + " [ 1.71007143e+03 -4.99999843e-01]\n", + " [ 2.00250000e+03 -5.00000108e-01]\n", + " [-4.45000001e+01 2.04650000e+03]\n", + " [ 2.47928572e+02 2.04650000e+03]\n", + " [ 5.40357143e+02 2.04650000e+03]\n", + " [ 8.32785714e+02 2.04650000e+03]\n", + " [ 1.12521429e+03 2.04650000e+03]\n", + " [ 1.41764286e+03 2.04650000e+03]\n", + " [ 1.71007143e+03 2.04650000e+03]\n", + " [ 2.00250000e+03 2.04650000e+03]\n", + " [ 2.00250000e+03 -5.00000108e-01]\n", + " [ 2.00250000e+03 2.91928571e+02]\n", + " [ 2.00250000e+03 5.84357143e+02]\n", + " [ 2.00250000e+03 8.76785714e+02]\n", + " [ 2.00250000e+03 1.16921429e+03]\n", + " [ 2.00250000e+03 1.46164286e+03]\n", + " [ 2.00250000e+03 1.75407143e+03]\n", + " [ 2.00250000e+03 2.04650000e+03]\n", + " [-4.35000000e+01 1.27000000e+02]\n", + " [-4.35000000e+01 4.85400000e+02]\n", + " [-4.35000000e+01 8.43800000e+02]\n", + " [-4.35000000e+01 1.20220000e+03]\n", + " [-4.35000000e+01 1.56060000e+03]\n", + " [-4.35000000e+01 1.91900000e+03]\n", + " [ 8.30000000e+01 5.00000282e-01]\n", + " [ 4.41400000e+02 4.99999845e-01]\n", + " [ 7.99800000e+02 4.99999800e-01]\n", + " [ 1.15820000e+03 4.99999731e-01]\n", + " [ 1.51660000e+03 5.00000238e-01]\n", + " [ 1.87500000e+03 4.99999813e-01]\n", + " [ 8.30000000e+01 2.04550000e+03]\n", + " [ 4.41400000e+02 2.04550000e+03]\n", + " [ 7.99800000e+02 2.04550000e+03]\n", + " [ 1.15820000e+03 2.04550000e+03]\n", + " [ 1.51660000e+03 2.04550000e+03]\n", + " [ 1.87500000e+03 2.04550000e+03]\n", + " [ 2.00150000e+03 1.27000000e+02]\n", + " [ 2.00150000e+03 4.85400000e+02]\n", + " [ 2.00150000e+03 8.43800000e+02]\n", + " [ 2.00150000e+03 1.20220000e+03]\n", + " [ 2.00150000e+03 1.56060000e+03]\n", + " [ 2.00150000e+03 1.91900000e+03]\n", + " [-4.35000000e+01 5.00000147e-01]\n", + " [-4.35000000e+01 5.00000147e-01]\n", + " [ 2.00150000e+03 2.04550000e+03]\n", + " [ 2.00150000e+03 2.04550000e+03]\n", + " [ 8.30000000e+01 1.27000000e+02]\n", + " [ 4.41400000e+02 1.27000000e+02]\n", + " [ 7.99800000e+02 1.27000000e+02]\n", + " [ 1.15820000e+03 1.27000000e+02]\n", + " [ 1.51660000e+03 1.27000000e+02]\n", + " [ 1.87500000e+03 1.27000000e+02]\n", + " [ 8.30000000e+01 4.85400000e+02]\n", + " [ 4.41400000e+02 4.85400000e+02]\n", + " [ 7.99800000e+02 4.85400000e+02]\n", + " [ 1.15820000e+03 4.85400000e+02]\n", + " [ 1.51660000e+03 4.85400000e+02]\n", + " [ 1.87500000e+03 4.85400000e+02]\n", + " [ 8.30000000e+01 8.43800000e+02]\n", + " [ 4.41400000e+02 8.43800000e+02]\n", + " [ 7.99800000e+02 8.43800000e+02]\n", + " [ 1.15820000e+03 8.43800000e+02]\n", + " [ 1.51660000e+03 8.43800000e+02]\n", + " [ 1.87500000e+03 8.43800000e+02]\n", + " [ 8.30000000e+01 1.20220000e+03]\n", + " [ 4.41400000e+02 1.20220000e+03]\n", + " [ 7.99800000e+02 1.20220000e+03]\n", + " [ 1.15820000e+03 1.20220000e+03]\n", + " [ 1.51660000e+03 1.20220000e+03]\n", + " [ 1.87500000e+03 1.20220000e+03]\n", + " [ 8.30000000e+01 1.56060000e+03]\n", + " [ 4.41400000e+02 1.56060000e+03]\n", + " [ 7.99800000e+02 1.56060000e+03]\n", + " [ 1.15820000e+03 1.56060000e+03]\n", + " [ 1.51660000e+03 1.56060000e+03]\n", + " [ 1.87500000e+03 1.56060000e+03]\n", + " [ 8.30000000e+01 1.91900000e+03]\n", + " [ 4.41400000e+02 1.91900000e+03]\n", + " [ 7.99800000e+02 1.91900000e+03]\n", + " [ 1.15820000e+03 1.91900000e+03]\n", + " [ 1.51660000e+03 1.91900000e+03]\n", + " [ 1.87500000e+03 1.91900000e+03]]\n", + "DEBUG:root:optics_fp: sphi: [-0.99996956 -0.99995893 -0.99994158 -0.99991037 -0.99984537 -0.99967195\n", + " -0.99888983 -0.95886284 -0.99996956 -0.98938252 -0.96145475 -0.92030483\n", + " -0.87095303 -0.81797608 -0.76481709 -0.71369637 -0.95886284 -0.17659731\n", + " -0.09176722 -0.06188241 -0.04666441 -0.03744961 -0.03127246 -0.02684394\n", + " -0.71369637 -0.65943324 -0.59247759 -0.51053198 -0.41189324 -0.2963571\n", + " -0.16622968 -0.02684394 -0.99996117 -0.99994205 -0.99990433 -0.99981296\n", + " -0.99948354 -0.99550368 -0.99766348 -0.97260056 -0.92538694 -0.86498004\n", + " -0.79973567 -0.73547623 -0.36495814 -0.11160071 -0.06539891 -0.04622212\n", + " -0.0357361 -0.02912641 -0.69162042 -0.616889 -0.5207723 -0.39985178\n", + " -0.2538669 -0.08834096 -0.99996571 -0.99996571 -0.02734129 -0.02734129\n", + " -0.99735579 -0.96914412 -0.91672217 -0.85093152 -0.78133638 -0.71412384\n", + " -0.99606099 -0.95495897 -0.882678 -0.79840366 -0.71568873 -0.64094611\n", + " -0.99352198 -0.92871576 -0.82534028 -0.71815177 -0.62351779 -0.54491901\n", + " -0.98744912 -0.87313973 -0.72259694 -0.59380744 -0.49542438 -0.42145706\n", + " -0.96643258 -0.73302362 -0.53238015 -0.40581658 -0.32456648 -0.26928704\n", + " -0.78592344 -0.34216247 -0.20786992 -0.14837557 -0.11517726 -0.094064 ]\n", + "DEBUG:root:radec2pix: camVec: [[0.20622014 0.20805053 0.20961035 0.210899 0.21191543 0.21265818\n", + " 0.21312568 0.21331667 0.20622014 0.17982824 0.1527297 0.12503427\n", + " 0.09685185 0.06829276 0.03946812 0.01049004 0.21331667 0.18597713\n", + " 0.1579279 0.12927353 0.10011961 0.07057467 0.04075124 0.01076573\n", + " 0.01049004 0.01056977 0.01063642 0.01068985 0.01072978 0.01075592\n", + " 0.01076796 0.01076573 0.20696213 0.20902258 0.21067623 0.21192136\n", + " 0.21275532 0.21317532 0.1948134 0.16197729 0.1281888 0.09365018\n", + " 0.05856456 0.02313694 0.20149034 0.16749252 0.1325326 0.09680441\n", + " 0.0605079 0.02385188 0.01062602 0.01071595 0.0107859 0.01083545\n", + " 0.01086402 0.01087112 0.20613793 0.20613793 0.01086844 0.01086844\n", + " 0.19558949 0.1626169 0.12869151 0.09401511 0.05879055 0.02322296\n", + " 0.19753009 0.16421774 0.12995114 0.09493033 0.05935726 0.02343764\n", + " 0.19908829 0.16550536 0.13096617 0.09566871 0.05981412 0.02360896\n", + " 0.20026215 0.16647694 0.13173312 0.09622682 0.06015857 0.02373584\n", + " 0.20104857 0.16712825 0.13224724 0.09660024 0.06038739 0.02381698\n", + " 0.20144435 0.16745515 0.13250401 0.09678486 0.06049766 0.02385117]\n", + " [0.20255556 0.17610143 0.14895462 0.12122494 0.09302239 0.06445739\n", + " 0.03564119 0.00668594 0.20255556 0.20441077 0.20600074 0.2073248\n", + " 0.20838186 0.20917033 0.20968847 0.20993479 0.00668594 0.00675821\n", + " 0.00682246 0.00687853 0.00692617 0.0069651 0.00699507 0.00701584\n", + " 0.20993479 0.18250233 0.15437326 0.12565215 0.09644485 0.06686038\n", + " 0.03701177 0.00701584 0.19112005 0.15821703 0.12438266 0.08981934\n", + " 0.05473042 0.0193211 0.20330747 0.20540191 0.20709749 0.2083924\n", + " 0.20928375 0.20976841 0.00681796 0.00690216 0.00697398 0.00703299\n", + " 0.00707868 0.00711058 0.19806614 0.16396327 0.12891793 0.09312436\n", + " 0.05678335 0.02010461 0.2024732 0.2024732 0.00711848 0.00711848\n", + " 0.19190537 0.19387759 0.19547539 0.1966967 0.19753824 0.19799645\n", + " 0.15886347 0.1604891 0.1618095 0.16282181 0.16352163 0.16390447\n", + " 0.12488974 0.12616714 0.12720791 0.12800859 0.1285643 0.12887024\n", + " 0.09018615 0.09111203 0.09186896 0.09245358 0.0928614 0.09308815\n", + " 0.05495583 0.05552612 0.05599434 0.05635799 0.05661388 0.05675899\n", + " 0.01940412 0.01961547 0.01979108 0.01992994 0.02003078 0.02009239]\n", + " [0.95731108 0.96213474 0.96637261 0.96996192 0.9728508 0.97499833\n", + " DEBUG:root:radec2pix: fitpx: [[2135.5 4155.49999984]\n", + " [2135.5 3863.07142868]\n", + " [2135.5 3570.64285754]\n", + " [2135.5 3278.21428588]\n", + " [2135.5 2985.78571458]\n", + " [2135.5 2693.35714314]\n", + " [2135.5 2400.92857131]\n", + " [2135.50000005 2108.49999975]\n", + " [2135.5 4155.49999984]\n", + " [1843.07142855 4155.50000013]\n", + " [1550.64285718 4155.49999985]\n", + " [1258.21428582 4155.49999974]\n", + " [ 965.78571443 4155.49999975]\n", + " [ 673.35714268 4155.50000026]\n", + " [ 380.92857156 4155.49999984]\n", + " [ 88.49999989 4155.50000011]\n", + " [2135.50000005 2108.49999975]\n", + " [1843.07142845 2108.50000002]\n", + " [1550.64285702 2108.50000001]\n", + " [1258.21428598 2108.49999998]\n", + " [ 965.78571394 2108.50000002]\n", + " [ 673.35714284 2108.5 ]\n", + " [ 380.92857156 2108.5 ]\n", + " [ 88.49999977 2108.50000001]\n", + " [ 88.49999989 4155.50000011]\n", + " [ 88.49999981 3863.07142874]\n", + " [ 88.49999988 3570.64285723]\n", + " [ 88.49999983 3278.21428582]\n", + " [ 88.5000001 2985.78571424]\n", + " [ 88.50000005 2693.35714284]\n", + " [ 88.49999995 2400.92857144]\n", + " [ 88.499DEBUG:root:make_az_asym: xyp: [[ 0.236018 -31.56946754]\n", + " [ 0.23651287 -27.18303899]\n", + " [ 0.23700774 -22.79661046]\n", + " [ 0.23750261 -18.41018192]\n", + " [ 0.23799748 -14.02375336]\n", + " [ 0.23849235 -9.63732482]\n", + " [ 0.23898721 -5.25089628]\n", + " [ 0.23948208 -0.86446773]\n", + " [ 0.236018 -31.56946754]\n", + " [ 4.62244655 -31.56996241]\n", + " [ 9.00887509 -31.57045728]\n", + " [ 13.39530363 -31.57095214]\n", + " [ 17.78173218 -31.57144701]\n", + " [ 22.16816072 -31.57194188]\n", + " [ 26.55458927 -31.57243675]\n", + " [ 30.94101781 -31.57293162]\n", + " [ 0.23948208 -0.86446773]\n", + " [ 4.62591062 -0.8649626 ]\n", + " [ 9.01233917 -0.86545747]\n", + " [ 13.39876771 -0.86595234]\n", + " [ 17.78519626 -0.86644721]\n", + " [ 22.1716248 -0.86694208]\n", + " [ 26.55805334 -0.86743695]\n", + " [ 30.94448189 -0.86793181]\n", + " [ 30.94101781 -31.57293162]\n", + " [ 30.94151268 -27.18650307]\n", + " [ 30.94200754 -22.80007453]\n", + " [ 30.94250242 -18.41364599]\n", + " [ 30.94299728 -14.02721745]\n", + " [ 30.94349215 -9.6407889 ]\n", + " [ 30.94398702 -5.25436036]\n", + " [ 30.94448189 -0.86793181]\n", + " [ 0.25123377 -29.65696924]\n", + " [ 0.2518402DEBUG:root:radec2pix: camVec: [[-0.20650899 -0.20834684 -0.209912 -0.2112049 -0.21222492 -0.21297066\n", + " -0.21344048 -0.21363303 -0.20650899 -0.18010636 -0.15299311 -0.12528058\n", + " -0.09707928 -0.06849975 -0.03965325 -0.01065205 -0.21363303 -0.1862962\n", + " -0.15824793 -0.12959237 -0.10043485 -0.07088401 -0.04105265 -0.01105755\n", + " -0.01065205 -0.01075054 -0.01083605 -0.01090831 -0.01096697 -0.01101162\n", + " -0.0110419 -0.01105755 -0.20725456 -0.20932255 -0.21098167 -0.21223121\n", + " -0.21306867 -0.2134911 -0.19509826 -0.16224603 -0.12843717 -0.09387541\n", + " -0.05876435 -0.02330924 -0.20180806 -0.16781243 -0.13285166 -0.09711907\n", + " -0.06081473 -0.02414801 -0.01079628 -0.01090926 -0.01100231 -0.01107479\n", + " -0.01112598 -0.01115523 -0.20642679 -0.20642679 -0.01116024 -0.01116024\n", + " -0.19587779 -0.16288944 -0.12894461 -0.09424616 -0.05899718 -0.02340304\n", + " -0.19782623 -0.16450046 -0.13021766 -0.09517804 -0.05958347 -0.0236399\n", + " -0.19939086 -0.16579789 -0.13124607 -0.09593306 -0.06005988 -0.02383341\n", + " -0.20057035 -0.16677881 -0.13202594 -0.09650734 -0.06042346 -0.02398226\n", + " -0.20136156 -0.16743861 -0.13255205 -0.09689601 -0.0606707 -0.02408492\n", + " -0.20176105 -0.16777281 -0.13281959 -0.09709479 -0.06079851 -0.02414006]\n", + " [-0.20112017 -0.17462343 -0.14743759 -0.11967398 -0.09144325 -0.06285614\n", + " -0.0340241 -0.00505944 -0.20112017 -0.20295163 -0.20451753 -0.20581845\n", + " -0.20685386 -0.20762236 -0.2081222 -0.20835189 -0.00505944 -0.0050993\n", + " -0.00513287 -0.00516008 -0.00518078 -0.00519482 -0.00520206 -0.00520239\n", + " -0.20835189 -0.18087002 -0.15269708 -0.12393724 -0.09469638 -0.06508391\n", + " -0.03521344 -0.00520239 -0.18966571 -0.15671259 -0.12283514 -0.0882373\n", + " -0.053123 -0.01769778 -0.20186172 -0.20392662 -0.20559352 -0.20686189\n", + " -0.20772922 -0.20819238 -0.00517714 -0.00522278 -0.00525872 -0.00528472\n", + " -0.0053005 -0.00530579 -0.19646103 -0.1623014 -0.12720719 -0.09137251\n", + " -0.05499882 -0.01829695 -0.20103758 -0.20103758 -0.00530513 -0.00530513\n", + " -0.19044022 -0.19238166 -0.19395017 -0.19514465 -0.19596195 -0.19639843\n", + " -0.15734701 -0.15893973 -0.16022981 -0.16121459 -0.16188952 -0.16224993\n", + " -0.12332956 -0.12457282 -0.12558234 -0.12635458 -0.12688447 -0.12716713\n", + " -0.08859098 -0.08948154 -0.09020602 -0.09076095 -0.09114176 -0.09134421\n", + " -0.05333481 -0.05386844 -0.05430277 -0.0546353 -0.05486289 -0.05498267\n", + " -0.01776673 -0.01794001 -0.01808024 -0.01818657 -0.01825788 -0.01829321]\n", + " [ 0.95755142 0.96233999 0.96653976 0.97008795 0.97293305 0.97503467\n", + " 0.97636342 0.97690088 0.95755142 0.96248238 0.96683281 0.97053776\n", + " 0.97354358 0.97580774 0.97729871 0.97799592 0.97690088 0.98248039\n", + " 0.98738607 0.99155393 0.99493015 0.99747104 0.99914344 0.99992533\n", + " 0.97799592 0.98344825 0.98821363 0.9922301 0.99544579 0.99781904\n", + " 0.99931881 0.99992533 0.9597252 0.96520735 0.96974134 0.97322767\n", + " 0.97559197 0.97678469 0.95978566 0.96544816 0.97017277 0.97385603\n", + " 0.97641964 0.97781011 0.97941141 0.98580511 0.99112198 0.99525874\n", + " 0.998135 0.97637449 0.97696023 0.95731108 0.96222557 0.96655954 0.97024886\n", + " 0.97324032 0.97549161 0.97697135 0.97765911 0.97696023 0.98253083\n", + " 0.98742708 0.99158512 0.9949513 0.99748218 0.99914484 0.99991744\n", + " 0.97765911 0.9831486 0.98795534 0.99201677 0.99528049 0.99770436\n", + " 0.99925681 0.99991744 0.95949977 0.96502691 0.96961048 0.97315046\n", + " 0.9755715 0.9768229 0.95953833 0.96518051 0.96988569 0.97355136\n", + " 0.97609964 0.97747731 0.97946677 0.98584919 0.99115411 0.99527858\n", + " 0.99814262 0.99969022 0.98013106 0.98640824 0.99159661 0.99559552\n", + " 0.99832741 0.99973878 0.95734621 0.95734621 0.9999156 0.9999156\n", + " 0.96172609 0.96745399 0.9722283 0.9759465 0.97853069 0.9799276\n", + " 0.96733875 0.97328094 0.97822819 0.98207805 0.98475245 0.98619775\n", + " 0.97199095 0.97810522 0.98319175 0.98714806 0.9898957 0.99138039\n", + " 0.97558266 0.98182688 0.98701899 0.99105637 0.99386 0.99537491\n", + " 0.97803851 0.98437036 0.98963392 0.99372641 0.99656823 0.99810379\n", + " 0.97930774 0.98568454 0.99098486 0.99510577 0.99796733 0.99951359]]\n", + "8 -24.28096928]\n", + " [ 0.25244679 -18.90496931]\n", + " [ 0.2530533 -13.52896935]\n", + " [ 0.25365981 -8.15296938]\n", + " [ 0.25426632 -2.77696942]\n", + " [ 2.14851968 -31.5546833 ]\n", + " [ 7.52451965 -31.55528981]\n", + " [ 12.90051962 -31.55589633]\n", + " [ 18.27651958 -31.55650284]\n", + " [ 23.65251954 -31.55710934]\n", + " [ 29.02851952 -31.55771586]\n", + " [ 2.15198038 -0.8796835 ]\n", + " [ 7.52798035 -0.88029001]\n", + " [ 12.90398031 -0.88089652]\n", + " [ 18.27998027 -0.88150303]\n", + " [ 23.65598025 -0.88210954]\n", + " [ 29.03198021 -0.88271605]\n", + " [ 30.92623357 -29.66042994]\n", + " [ 30.92684009 -24.28442998]\n", + " [ 30.9274466 -18.90843001]\n", + " [ 30.9280531 -13.53243004]\n", + " [ 30.92865961 -8.15643008]\n", + " [ 30.92926612 -2.78043011]\n", + " [ 0.2510197 -31.55446923]\n", + " [ 0.2510197 -31.55446923]\n", + " [ 30.9294802 -0.88293012]\n", + " [ 30.9294802 -0.88293012]\n", + " [ 2.14873376 -29.65718332]\n", + " [ 7.52473372 -29.65778983]\n", + " [ 12.90073369 -29.65839633]\n", + " [ 18.27673365 -29.65900285]\n", + " [ 23.65273362 -29.65960936]\n", + " [ 29.02873359 -29.66021587]\n", + " [ 2.14934027 -24.28118335]\n", + " [ 7.525DEBUG:root:optics_fp: xyfp: [[ -0.24606 31.536148 ]\n", + " [ -0.24606 27.14971943]\n", + " [ -0.24606 22.76329086]\n", + " [ -0.24606 18.37686229]\n", + " [ -0.24606 13.99043371]\n", + " [ -0.24606 9.60400514]\n", + " [ -0.24606 5.21757658]\n", + " [ -0.24606 0.831148 ]\n", + " [ -0.24606 31.536148 ]\n", + " [ -4.63248857 31.536148 ]\n", + " [ -9.01891714 31.536148 ]\n", + " [-13.40534571 31.536148 ]\n", + " [-17.79177429 31.536148 ]\n", + " [-22.17820286 31.536148 ]\n", + " [-26.56463143 31.536148 ]\n", + " [-30.95106 31.536148 ]\n", + " [ -0.24606 0.831148 ]\n", + " [ -4.63248857 0.831148 ]\n", + " [ -9.01891714 0.831148 ]\n", + " [-13.40534571 0.831148 ]\n", + " [-17.79177429 0.831148 ]\n", + " [-22.17820285 0.831148 ]\n", + " [-26.56463143 0.831148 ]\n", + " [-30.95106 0.831148 ]\n", + " [-30.95106 31.536148 ]\n", + " [-30.95106 27.14971943]\n", + " [-30.95106 22.76329086]\n", + " [-30.95106 18.37686228]\n", + " [-30.95106 13.99043371]\n", + " [-30.95106 9.60400514]\n", + " [-30.95106 5.21757657]\n", + " [-30.95106 0.831148 ]\n", + " [ -0.26106 29.623648 ]\n", + " [ -0.26106 DEBUG:root:radec2pix: camVec Shape: (3, 96)\n", + "34023 -24.28178986]\n", + " [ 12.9013402 -24.28239637]\n", + " [ 18.27734016 -24.28300288]\n", + " [ 23.65334013 -24.28360939]\n", + " [ 29.02934009 -24.2842159 ]\n", + " [ 2.14994678 -18.90518338]\n", + " [ 7.52594674 -18.90578989]\n", + " [ 12.90194671 -18.9063964 ]\n", + " [ 18.27794667 -18.90700292]\n", + " [ 23.65394664 -18.90760943]\n", + " [ 29.0299466 -18.90821593]\n", + " [ 2.15055329 -13.52918342]\n", + " [ 7.52655325 -13.52978993]\n", + " [ 12.90255322 -13.53039644]\n", + " [ 18.27855318 -13.53100295]\n", + " [ 23.65455315 -13.53160946]\n", + " [ 29.03055312 -13.53221597]\n", + " [ 2.1511598 -8.15318346]\n", + " [ 7.52715976 -8.15378996]\n", + " [ 12.90315973 -8.15439647]\n", + " [ 18.27915969 -8.15500298]\n", + " [ 23.65515966 -8.15560949]\n", + " [ 29.03115962 -8.156216 ]\n", + " [ 2.1517663 -2.77718348]\n", + " [ 7.52776627 -2.77779 ]\n", + " [ 12.90376624 -2.77839651]\n", + " [ 18.2797662 -2.77900302]\n", + " [ 23.65576617 -2.77960953]\n", + " [ 29.03176613 -2.78021604]]\n", + " 0.99969431 0.98045219 0.98668092 0.99181514 0.9957552\n", + " 0.99842443 0.99977036 0.95758648 0.95758648 0.99992365 0.99992365\n", + " 0.96195864 0.96770674 0.97250019 0.97623574 0.97883515 0.98024484\n", + " 0.96752607 0.97348742 0.97845274 0.98231919 0.98500842 0.98646648\n", + " 0.97212813 0.97826002 0.98336338 0.98733549 0.99009754 0.99159492\n", + " 0.9756655 0.9819256 0.98713324 0.99118554 0.99400311 0.99553056\n", + " 0.97806386 0.98440972 0.98968741 0.99379381 0.99664895 0.99819679\n", + " 0.97927362 0.98566244 0.99097531 0.99510896 0.99798306 0.9995412 ]]\n", + " 24.247648 ]\n", + " [ -0.26106 18.87164801]\n", + " [ -0.26106 13.495648 ]\n", + " [ -0.26106 8.119648 ]\n", + " [ -0.26106 2.743648 ]\n", + " [ -2.15856 31.521148 ]\n", + " [ -7.53456 31.521148 ]\n", + " [-12.91056 31.521148 ]\n", + " [-18.28656 31.521148 ]\n", + " [-23.66256 31.521148 ]\n", + " [-29.03856 31.521148 ]\n", + " [ -2.15856 0.846148 ]\n", + " [ -7.53456 0.846148 ]\n", + " [-12.91056 0.846148 ]\n", + " [-18.28655999 0.846148 ]\n", + " [-23.66256 0.846148 ]\n", + " [-29.03856 0.846148 ]\n", + " [-30.93606 29.623648 ]\n", + " [-30.93606 24.247648 ]\n", + " [-30.93606 18.871648 ]\n", + " [-30.93606 13.495648 ]\n", + " [-30.93606 8.119648 ]\n", + " [-30.93606 2.743648 ]\n", + " [ -0.26106 31.521148 ]\n", + " [ -0.26106 31.521148 ]\n", + " [-30.93606 0.846148 ]\n", + " [-30.93606 0.846148 ]\n", + " [ -2.15856 29.623648 ]\n", + " [ -7.53456 29.623648 ]\n", + " [-12.91056 29.623648 ]\n", + " [-18.28656 29.623648 ]\n", + " [-23.66256 29.623648 ]\n", + " [-29.03856 29.623648 ]\n", + " [ -2.15856 24.247648 ]\n", + " [ -7.53456 24.247648 ]\n", + " [-12.91056 24.247648 ]\n", + " [-18.28656 24.247648 ]\n", + " [-23.66256 24.247648 ]\n", + " [-29.03856 24.247648 ]\n", + " [ -2.15856 18.871648 ]\n", + " [ -7.53456 18.871648 ]\n", + " [-12.91056 18.871648 ]\n", + " [-18.28656 18.871648 ]\n", + " [-23.66256 18.871648 ]\n", + " [-29.03856 18.871648 ]\n", + " [ -2.15856 13.495648 ]\n", + " [ -7.53456 13.495648 ]\n", + " [-12.91056 13.495648 ]\n", + " [-18.28656 13.495648 ]\n", + " [-23.66256 13.495648 ]\n", + " [-29.03856 13.495648 ]\n", + " [ -2.15856 8.119648 ]\n", + " [ -7.53456 8.119648 ]\n", + " [-12.91056 8.1DEBUG:root:radec2pix: camVec Shape: (3, 96)\n", + "19648 ]\n", + " [-18.28656 8.119648 ]\n", + " [-23.66256 8.119648 ]\n", + " [-29.03856 8.119648 ]\n", + " [ -2.15856 2.743648 ]\n", + " [ -7.53456 2.743648 ]\n", + " [-12.91056 2.743648 ]\n", + " [-18.28656 2.743648 ]\n", + " [-23.66256 2.743648 ]\n", + " [-29.03856 2.743648 ]]\n", + "99977 2108.50000001]\n", + " [2134.5 4028.00000026]\n", + " [2134.5 3669.59999996]\n", + " [2134.5 3311.20000006]\n", + " [2134.5 2952.80000018]\n", + " [2134.50000001 2594.39999977]\n", + " [2134.49999998 2236.00000029]\n", + " [2008.00000002 4154.49999972]\n", + " [1649.59999996 4154.50000015]\n", + " [1291.19999992 4154.5000002 ]\n", + " [ 932.79999984 4154.50000027]\n", + " [ 574.40000018 4154.49999976]\n", + " [ 215.99999983 4154.50000019]\n", + " [2007.99999997 2109.50000001]\n", + " [1649.60000009 2109.49999999]\n", + " [1291.20000024 2109.49999998]\n", + " [ 932.80000011 2109.5 ]\n", + " [ 574.40000007 2109.5 ]\n", + " [ 216.00000022 2109.49999999]\n", + " [ 89.50000011 4027.99999989]\n", + " [ 89.49999997 3669.60000003]\n", + " [ 89.49999978 3311.20000014]\n", + " [ 89.499999DEBUG:root:optics_fp: xyfp shape: (96, 2)\n", + "74 2952.80000012]\n", + " [ 89.49999998 2594.4 ]\n", + " [ 89.50000005 2236. ]\n", + " [2134.5 4154.49999985]\n", + " [2134.5 4154.49999985]\n", + " [ 89.49999982 2109.5 ]\n", + " [ 89.49999982 2109.5 ]\n", + " [2007.99999998 4028.00000026]\n", + " [1649.60000006 4027.99999978]\n", + " [1291.19999989 4028.00000025]\n", + " [ 932.8000001 4027.99999984]\n", + " [ 574.40000016 4027.9999998 ]\n", + " [ 215.99999996 4028.00000004]\n", + " [2007.99999998 3669.60000024]\n", + " [1649.59999998 3669.60000005]\n", + " [1291.20000009 3669.59999982]\n", + " [ 932.79999983 3669.60000022]\n", + " [ 574.39999986 3669.60000015]\n", + " [ 216.00000022 3669.59999982]\n", + " [2007.99999999 3311.20000008]\n", + " [1649.59999996 3311.2000001 ]\n", + " [1291.19999979 3311.20000031]\n", + " [ 932.80000004 3311.19999996]\n", + " [ 574.39999992 3311.20000007]\n", + " [ 216.00000024 3311.19999984]\n", + " [2008.00000001 2952.79999992]\n", + " [1649.6000001 2952.79999982]\n", + " [1291.20000006 2952.79999994]\n", + " [ 932.79999988 2952.80000009]\n", + " [ 574.39999983 2952.8000001 ]\n", + " [ 215.99999999 2952.8 ]\n", + " [2008.00000001 2594.39999996]\n", + " [1649.60000003 2594.39999997]\n", + " [1291.19999974 2594.40000016]\n", + " [ 932.80000041 2594.39999982]\n", + " [ 574.40000002 2594.39999999]\n", + " [ 215.99999998 2594.40000001]\n", + " [2008.00000001 2235.99999999]\n", + " [1649.59999976 2236.00000009]\n", + " [1291.19999986 2236.00000003]\n", + " [ 932.79999992 2236.00000001]\n", + " [ 574.39999976 2236.00000003]\n", + " [ 216.00000019 2235.99999998]]\n", + "DEBUG:root:make_az_asym: xyp: shape: (96, 2)\n", + "DEBUG:root:fitpix2pix: ccdpx: shape: (96, 2)\n", + "DEBUG:root:fitpix2pix: visCut: True\n", + "DEBUG:root:cartToSphere: vec: [[0.20622014 0.20255556 0.95731108]\n", + " [0.20805053 0.17610143 0.96213474]\n", + " [0.20961035 0.14895462 0.96637261]\n", + " [0.210899 0.12122494 0.96996192]\n", + " [0.21191543 0.09302239 0.9728508 ]\n", + " [0.21265818 0.06445739 0.97499833]\n", + " [0.21312568 0.03564119 0.97637449]\n", + " [0.21331667 0.00668594 0.97696023]\n", + " [0.20622014 0.20255556 0.95731108]\n", + " [0.17982824 0.20441077 0.96222557]\n", + " [0.1527297 0.20600074 0.96655954]\n", + " [0.12503427 0.2073248 0.97024886]\n", + " [0.09685185 0.20838186 0.97324032]\n", + " [0.06829276 0.20917033 0.97549161]\n", + " [0.03946812 0.20968847 0.97697135]\n", + " [0.01049004 0.20993479 0.97765911]\n", + " [0.21331667 0.00668594 0.97696023]\n", + " [0.18597713 0.00675821 0.98253083]\n", + " [0.1579279 0.00682246 0.98742708]\n", + " [0.12927353 0.00687853 0.99158512]\n", + " [0.10011961 0.00692617 0.9949513 ]\n", + " [0.07057467 0.0069651 0.99748218]\n", + " [0.04075124 0.00699507 0.99914484]\n", + " [0.01076573 0.00701584 0.99991744]\n", + " [0.01049004 0.20993479 0.97765911]\n", + " [0.01056977 0.18250233 0.9831486 ]\n", + " [0.01063642 0.15437326 0.98795534]\n", + " [0.01068985 0.12565215 0.99201677]\n", + " [0.01072978 0.09644485 0.99528049]\n", + " [0.01075592 0.06686038 0.99770436]\n", + " [0.01076796 0.03701177 0.99925681]\n", + " [0.01076573 0.00701584 0.99991744]\n", + " [0.20696213 0.19112005 0.95949977]\n", + " [0.20902258 0.15821703 0.96502691]\n", + " [0.21067623 0.12438266 0.96961048]\n", + " [0.21192136 0.08981934 0.97315046]\n", + " [0.21275532 0.05473042 0.9755715 ]\n", + " [0.21317532 0.0193211 0.9768229 ]\n", + " [0.1948134 0.20330747 0.95953833]\n", + " [0.16197729 0.20540191 0.96518051]\n", + " [0.1281888 0.20709749 0.96988569]\n", + " [0.09365018 0.2083924 0.97355136]\n", + " [0.05856456 0.20928375 0.97609964]\n", + " [0.02313694 0.20976841 0.97747731]\n", + " [0.20149034 0.00681796 0.97946677]\n", + " [0.16749252 0.00690216 0.98584919]\n", + " [0.1325326 0.00697398 0.99115411]\n", + " [0.09680441 0.00703299 0.99527858]\n", + " [0.0605079 0.00707868 0.99814262]\n", + " [0.02385188 0.00711058 0.99969022]\n", + " [0.01062602 0.19806614 0.98013106]\n", + " [0.01071595 0.16396327 0.98640824]\n", + " [0.0107859 0.12891793 0.99159661]\n", + " [0.01083545 0.09312436 0.99559552]\n", + " [0.01086402 0.05678335 0.99832741]\n", + " [0.01087112 0.02010461 0.99973878]\n", + " [0.20613793 0.2024732 0.95734621]\n", + " [0.20613793 0.2024732 0.95734621]\n", + " [0.01086844 0.00711848 0.9999156 ]\n", + " [0.01086844 0.00711848 0.9999156 ]\n", + " [0.19558949 0.19190537 0.96172609]\n", + " [0.1626169 0.19387759 0.96745399]\n", + " [0.12869151 0.19547539 0.9722283 ]\n", + " [0.09401511 0.1966967 0.9759465 ]\n", + " [0.05879055 0.19753824 0.97853069]\n", + " [0.02322296 0.19799645 0.9799276 ]\n", + " [0.19753009 0.15886347 0.96733875]\n", + " [0.16421774 0.1604891 0.97328094]\n", + " [0.12995114 0.1618095 0.97822819]\n", + " [0.09493033 0.16282181 0.98207805]\n", + " [0.05935726 0.16352163 0.98475245]\n", + " [0.02343764 0.16390447 0.98619775]\n", + " [0.19908829 0.12488974 0.97199095]\n", + " [0.16550536 0.12616714 0.97810522]\n", + " [0.13096617 0.12720791 0.98319175]\n", + " [0.09566871 0.12800859 0.98714806]\n", + " [0.05981412 0.1285643 0.9898957 ]\n", + " [0.02360896 0.12887024 0.99138039]\n", + " [0.20026215 0.09018615 0.97558266]\n", + " [0.16647694 0.09111203 0.98182688]\n", + " [0.13173312 0.09186896 0.98701899]\n", + " [0.09622682 0.09245358 0.99105637]\n", + " [0.06015857 0.0928614 0.99386 ]\n", + " [0.02373584 0.09308815 0.99537491]\n", + " [0.20104857 0.05495583 0.97803851]\n", + " [0.16712825 0.05552612 0.98437036]\n", + " [0.13224724 0.05599434 0.98963392]\n", + " [0.09660024 0.05635799 0.99372641]\n", + " [0.06038739 0.05661388 0.99656823]\n", + " [0.02381698 0.05675899 0.99810379]\n", + " [0.20144435 0.01940412 0.97930774]\n", + " [0.16745515 0.01961547 0.98568454]\n", + " [0.13250401 0.01979108 0.99098486]\n", + " [0.09678486 0.01992994 0.99510577]\n", + " [0.06049766 0.02003078 0.99796733]\n", + " [0.02385117 0.02009239 0.99951359]]\n", + "DEBUG:root:cartToSphere: vec: [[-0.20650899 -0.20112017 0.95755142]\n", + " [-0.20834684 -0.17462343 0.96233999]\n", + " [-0.209912 -0.14743759 0.96653976]\n", + " [-0.2112049 -0.11967398 0.97008795]\n", + " [-0.21222492 -0.09144325 0.97293305]\n", + " [-0.21297066 -0.06285614 0.97503467]\n", + " [-0.21344048 -0.0340241 0.97636342]\n", + " [-0.21363303 -0.00505944 0.97690088]\n", + " [-0.20650899 -0.20112017 0.95755142]\n", + " [-0.18010636 -0.20295163 0.96248238]\n", + " [-0.15299311 -0.20451753 0.96683281]\n", + " [-0.12528058 -0.20581845 0.97053776]\n", + " [-0.09707928 -0.20685386 0.97354358]\n", + " [-0.06849975 -0.20762236 0.97580774]\n", + " [-0.03965325 -0.2081222 0.97729871]\n", + " [-0.01065205 -0.20835189 0.97799592]\n", + " [-0.21363303 -0.00505944 0.97690088]\n", + " [-0.1862962 -0.0050993 0.98248039]\n", + " [-0.15824793 -0.00513287 0.98738607]\n", + " [-0.12959237 -0.00516008 0.99155393]\n", + " [-0.10043485 -0.00518078 0.99493015]\n", + " [-0.07088401 -0.00519482 0.99747104]\n", + " [-0.04105265 -0.00520206 0.99914344]\n", + " [-0.01105755 -0.00520239 0.99992533]\n", + " [-0.01065205 -0.20835189 0.97799592]\n", + " [-0.01075054 -0.18087002 0.98344825]\n", + " [-0.01083605 -0.15269708 0.98821363]\n", + " [-0.01090831 -0.12393724 0.9922301 ]\n", + " [-0.01096697 -0.09469638 0.99544579]\n", + " [-0.01101162 -0.06508391 0.99781904]\n", + " [-0.0110419 -0.03521344 0.99931881]\n", + " [-0.01105755 -0.00520239 0.99992533]\n", + " [-0.20725456 -0.18966571 0.9597252 ]\n", + " [-0.20932255 -0.15671259 0.96520735]\n", + " [-0.21098167 -0.12283514 0.96974134]\n", + " [-0.21223121 -0.0882373 0.97322767]\n", + " [-0.21306867 -0.053123 0.97559197]\n", + " [-0.2134911 -0.01769778 0.97678469]\n", + " [-0.19509826 -0.20186172 0.95978566]\n", + " [-0.16224603 -0.20392662 0.96544816]\n", + " [-0.12843717 -0.20559352 0.97017277]\n", + " [-0.09387541 -0.20686189 0.97385603]\n", + " [-0.05876435 -0.20772922 0.97641964]\n", + " [-0.02330924 -0.20819238 0.97781011]\n", + " [-0.20180806 -0.00517714 0.97941141]\n", + " [-0.16781243 -0.00522278 0.98580511]\n", + " [-0.13285166 -0.00525872 0.99112198]\n", + " [-0.09711907 -0.00528472 0.99525874]\n", + " [-0.06081473 -0.0053005 0.998135 ]\n", + " [-0.02414801 -0.00530579 0.99969431]\n", + " [-0.01079628 -0.19646103 0.98045219]\n", + " [-0.01090926 -0.1623014 0.98668092]\n", + " [-0.01100231 -0.12720719 0.99181514]\n", + " [-0.01107479 -0.09137251 0.9957552 ]\n", + " [-0.01112598 -0.05499882 0.99842443]\n", + " [-0.01115523 -0.01829695 0.99977036]\n", + " [-0.20642679 -0.20103758 0.95758648]\n", + " [-0.20642679 -0.20103758 0.95758648]\n", + " [-0.01116024 -0.00530513 0.99992365]\n", + " [-0.01116024 -0.00530513 0.99992365]\n", + " [-0.19587779 -0.19044022 0.96195864]\n", + " [-0.16288944 -0.19238166 0.96770674]\n", + " [-0.12894461 -0.19395017 0.97250019]\n", + " [-0.09424616 -0.19514465 0.97623574]\n", + " [-0.05899718 -0.19596195 0.97883515]\n", + " [-0.02340304 -0.19639843 0.98024484]\n", + " [-0.19782623 -0.15734701 0.96752607]\n", + " [-0.16450046 -0.15893973 0.97348742]\n", + " [-0.13021766 -0.16022981 0.97845274]\n", + " [-0.09517804 -0.16121459 0.98231919]\n", + " [-0.05958347 -0.16188952 0.98500842]\n", + " [-0.0236399 -0.16224993 0.98646648]\n", + " [-0.19939086 -0.12332956 0.97212813]\n", + " [-0.16579789 -0.12457282 0.97826002]\n", + " [-0.13124607 -0.12558234 0.98336338]\n", + " [-0.09593306 -0.12635458 0.98733549]\n", + " [-0.06005988 -0.12688447 0.99009754]\n", + " [-0.02383341 -0.12716713 0.99159492]\n", + " [-0.20057035 -0.08859098 0.9756655 ]\n", + " [-0.16677881 -0.08948154 0.9819256 ]\n", + " [-0.13202594 -0.09020602 0.98713324]\n", + " [-0.09650734 -0.09076095 0.99118554]\n", + " [-0.06042346 -0.09114176 0.99400311]\n", + " [-0.02398226 -0.09134421 0.99553056]\n", + " [-0.20136156 -0.05333481 0.97806386]\n", + " [-0.16743861 -0.05386844 0.98440972]\n", + " [-0.13255205 -0.05430277 0.98968741]\n", + " [-0.09689601 -0.0546353 0.99379381]\n", + " [-0.0606707 -0.05486289 0.99664895]\n", + " [-0.02408492 -0.05498267 0.99819679]\n", + " [-0.20176105 -0.01776673 0.97927362]\n", + " [-0.16777281 -0.01794001 0.98566244]\n", + " [-0.13281959 -0.01808024 0.99097531]\n", + " [-0.09709479 -0.01818657 0.99510896]\n", + " [-0.06079851 -0.01825788 0.99798306]\n", + " [-0.02414006 -0.01829321 0.9995412 ]]\n", + "DEBUG:root:make_az_asym: xyp: [[ -0.24606 31.536148 ]\n", + " [ -0.24606 27.14971943]\n", + " [ -0.24606 22.76329086]\n", + " [ -0.24606 18.37686229]\n", + " [ -0.24606 13.99043371]\n", + " [ -0.24606 9.60400514]\n", + " [ -0.24606 5.21757658]\n", + " [ -0.24606 0.831148 ]\n", + " [ -0.24606 31.536148 ]\n", + " [ -4.63248857 31.536148 ]\n", + " [ -9.01891714 31.536148 ]\n", + " [-13.40534571 31.536148 ]\n", + " [-17.79177429 31.536148 ]\n", + " [-22.17820286 31.536148 ]\n", + " [-26.56463143 31.536148 ]\n", + " [-30.95106 31.536148 ]\n", + " [ -0.24606 0.831148 ]\n", + " [ -4.63248857 0.831148 ]\n", + " [ -9.01891714 0.831148 ]\n", + " [-13.40534571 0.831148 ]\n", + " [-17.79177429 0.831148 ]\n", + " [-22.17820285 0.831148 ]\n", + " [-26.56463143 0.831148 ]\n", + " [-30.95106 0.831148 ]\n", + " [-30.95106 31.536148 ]\n", + " [-30.95106 27.14971943]\n", + " [-30.95106 22.76329086]\n", + " [-30.95106 18.37686228]\n", + " [-30.95106 13.99043371]\n", + " [-30.95106 9.60400514]\n", + " [-30.95106 5.21757657]\n", + " [-30.95106 0.831148 ]\n", + " [ -0.26106 29.623648 ]\n", + " [ -0.26106 24.247648 ]\n", + " [ -0.26106 18.87164801]\n", + " [ -0.26106 13.495648 ]\n", + " [ -0.26106 8.119648 ]\n", + " [ -0.26106 2.743648 ]\n", + " [ -2.15856 31.521148 ]\n", + " [ -7.53456 31.521148 ]\n", + " [-12.91056 31.521148 ]\n", + " [-18.28656 31.521148 ]\n", + " [-23.66256 31.521148 ]\n", + " [-29.03856 31.521148 ]\n", + " [ -2.15856 0.846148 ]\n", + " [ -7.53456 0.846148 ]\n", + " [-12.91056 0.846148 ]\n", + " [-18.28655999 0.846148 ]\n", + " [-23.66256 0.846148 ]\n", + " [-29.03856 0.846148 ]\n", + " [-30.93606 29.623648 ]\n", + " [-30.93606 24.247648 ]\n", + " [-30.93606 18.871648 ]\n", + " [-30.93606 13.495648 ]\n", + " [-30.93606 8.119648 ]\n", + " [-30.93606 2.743648 ]\n", + " [ -0.26106 31.521148 ]\n", + " [ -0.26106 31.521148 ]\n", + " [-30.93606 0.846148 ]\n", + " [-30.93606 0.846148 ]\n", + " [ -2.15856 29.623648 ]\n", + " [ -7.53456 29.623648 ]\n", + " [-12.91056 29.623648 ]\n", + " [-18.28656 29.623648 ]\n", + " [-23.66256 29.623648 ]\n", + " [-29.03856 29.623648 ]\n", + " [ -2.15856 24.247648 ]\n", + " [ -7.53456 24.247648 ]\n", + " [-12.91056 24.247648 ]\n", + " [-18.28656 24.247648 ]\n", + " [-23.66256 24.247648 ]\n", + " [-29.03856 24.247648 ]\n", + " [ -2.15856 18.871648 ]\n", + " [ -7.53456 18.871648 ]\n", + " [-12.91056 18.871648 ]\n", + " [-18.28656 18.871648 ]\n", + " [-23.66256 18.871648 ]\n", + " [-29.03856 18.871648 ]\n", + " [ -2.15856 13.495648 ]\n", + " [ -7.53456 13.495648 ]\n", + " [-12.91056 13.495648 ]\n", + " [-18.28656 13.495648 ]\n", + " [-23.66256 13.495648 ]\n", + " [-29.03856 13.495648 ]\n", + " [ -2.15856 8.119648 ]\n", + " [ -7.53456 8.119648 ]\n", + " [-12.91056 8.119648 ]\n", + " [-18.28656 8.119648 ]\n", + " [-23.66256 8.119648 ]\n", + " [-29.03856 8.119648 ]\n", + " [ -2.15856 2.743648 ]\n", + " [ -7.53456 2.743648 ]\n", + " [-12.91056 2.743648 ]\n", + " [-18.28656 2.743648 ]\n", + " [-23.66256 2.743648 ]\n", + " [-29.03856 2.743648 ]]\n", + "DEBUG:root:make_az_asym: xyp: shape: (96, 2)\n", + "DEBUG:root:radec2pix: xyfp: [[ 0.236018 -31.56946754]\n", + " [ 0.23651287 -27.18303899]\n", + " [ 0.23700774 -22.79661046]\n", + " [ 0.23750261 -18.41018192]\n", + " [ 0.23799748 -14.02375336]\n", + " [ 0.23849235 -9.63732482]\n", + " [ 0.23898721 -5.25089628]\n", + " [ 0.23948208 -0.86446773]\n", + " [ 0.236018 -31.56946754]\n", + " [ 4.62244655 -31.56996241]\n", + " [ 9.00887509 -31.57045728]\n", + " [ 13.39530363 -31.57095214]\n", + " [ 17.78173218 -31.57144701]\n", + " [ 22.16816072 -31.57194188]\n", + " [ 26.55458927 -31.57243675]\n", + " [ 30.94101781 -31.57293162]\n", + " [ 0.23948208 -0.86446773]\n", + " [ 4.62591062 -0.8649626 ]\n", + " [ 9.01233917 -0.86545747]\n", + " [ 13.39876771 -0.86595234]\n", + " [ 17.78519626 -0.86644721]\n", + " [ 22.1716248 -0.86694208]\n", + " [ 26.55805334 -0.86743695]\n", + " [ 30.94448189 -0.86793181]\n", + " [ 30.94101781 -31.57293162]\n", + " [ 30.94151268 -27.18650307]\n", + " [ 30.94200754 -22.80007453]\n", + " [ 30.94250242 -18.41364599]\n", + " [ 30.94299728 -14.02721745]\n", + " [ 30.94349215 -9.6407889 ]\n", + " [ 30.94398702 -5.25436036]\n", + " [ 30.94448189 -0.86793181]\n", + " [ 0.25123377 -29.65696924]\n", + " [ 0.25184028 -24.28096928]\n", + " [ 0.25244679 -18.90496931]\n", + " [ 0.2530533 -13.52896935]\n", + " [ 0.25365981 -8.15296938]\n", + " [ 0.25426632 -2.77696942]\n", + " [ 2.14851968 -31.5546833 ]\n", + " [ 7.52451965 -31.55528981]\n", + " [ 12.90051962 -31.55589633]\n", + " [ 18.27651958 -31.55650284]\n", + " [ 23.65251954 -31.55710934]\n", + " [ 29.02851952 -31.55771586]\n", + " [ 2.15198038 -0.8796835 ]\n", + " [ 7.52798035 -0.88029001]\n", + " [ 12.90398031 -0.88089652]\n", + " [ 18.27998027 -0.88150303]\n", + " [ 23.65598025 -0.88210954]\n", + " [ 29.03198021 -0.88271605]\n", + " [ 30.92623357 -29.66042994]\n", + " [ 30.92684009 -24.28442998]\n", + " [ 30.9274466 -18.90843001]\n", + " [ 30.9280531 -13.53243004]\n", + " [ 30.92865961 -8.15643008]\n", + " [ 30.92926612 -2.78043011]\n", + " [ 0.2510197 -31.55446923]\n", + " [ 0.2510197 -31.55446923]\n", + " [ 30.9294802 -0.88293012]\n", + " [ 30.9294802 -0.88293012]\n", + " [ 2.14873376 -29.65718332]\n", + " [ 7.52473372 -29.65778983]\n", + " [ 12.90073369 -29.65839633]\n", + " [ 18.27673365 -29.65900285]\n", + " [ 23.65273362 -29.65960936]\n", + " [ 29.02873359 -29.66021587]\n", + " [ 2.14934027 -24.28118335]\n", + " [ 7.52534023 -24.28178986]\n", + " [ 12.9013402 -24.28239637]\n", + " [ 18.27734016 -24.28300288]\n", + " [ 23.65334013 -24.28360939]\n", + " [ 29.02934009 -24.2842159 ]\n", + " [ 2.14994678 -18.90518338]\n", + " [ 7.52594674 -18.90578989]\n", + " [ 12.90194671 -18.9063964 ]\n", + " [ 18.27794667 -18.90700292]\n", + " [ 23.65394664 -18.90760943]\n", + " [ 29.0299466 -18.90821593]\n", + " [ 2.15055329 -13.52918342]\n", + " [ 7.52655325 -13.52978993]\n", + " [ 12.90255322 -13.53039644]\n", + " [ 18.27855318 -13.53100295]\n", + " [ 23.65455315 -13.53160946]\n", + " [ 29.03055312 -13.53221597]\n", + " [ 2.1511598 -8.15318346]\n", + " [ 7.52715976 -8.15378996]\n", + " [ 12.90315973 -8.15439647]\n", + " [ 18.27915969 -8.15500298]\n", + " [ 23.65515966 -8.15560949]\n", + " [ 29.03115962 -8.156216 ]\n", + " [ 2.1517663 -2.77718348]\n", + " [ 7.52776627 -2.77779 ]\n", + " [ 12.90376624 -2.77839651]\n", + " [ 18.2797662 -2.77900302]\n", + " [ 23.65576617 -2.77960953]\n", + " [ 29.03176613 -2.78021604]]\n", + "DEBUG:root:radec2pix: lng: [44.48637088 40.24577336 35.3986005 29.89032997 23.69955042 16.86222735\n", + " 9.49377237 1.79522173 44.48637088 48.66063412 53.44662754 58.90649312\n", + " 65.0719071 71.9184746 79.34035003 87.13941954 1.79522173 2.08115239\n", + " 2.4736322 3.04578526 3.95735654 5.6363423 9.74006464 33.09159725\n", + " 87.13941954 86.68537287 86.05851166 85.13727473 83.65177634 80.86105503\n", + " 73.77851938 33.09159725 42.72105973 37.1234454 30.55748427 22.96885005\n", + " 14.42630836 5.17884001 46.22224274 51.74114431 58.24340245 65.80116251\n", + " 74.36661193 83.70585675 1.93801443 2.35975361 3.01217367 4.15532416\n", + " 6.6725739 16.60005947 86.92909007 86.26070822 85.21749379 83.36321455\n", + " 79.16883097 61.59868241 44.48614146 44.48614146 33.22349754 33.22349754\n", + " 44.45527608 50.01139871 56.64103308 64.45360362 73.42615136 83.31035484\n", + " 38.80796323 44.3420957 51.23163704 59.75644459 70.04944098 81.86211477\n", + " 32.10039047 37.31880048 44.16600061 53.22697224 65.04995068 79.6185637\n", + " 24.24396698 28.69167771 34.89141577 43.85434751 57.06355174 75.69539259\n", + " 15.28811193 18.37837592 22.94811312 30.25991115 43.15274514 67.23630391\n", + " 5.50203766 6.68110194 8.4950185 11.63570463 18.3197087 40.11102427]\n", + "DEBUG:root:radec2pix: lng: [224.24259986 219.96765614 215.08336296 209.53697562 203.3101935\n", + " 196.44343401 189.05719479 181.35667342 224.24259986 228.41303103\n", + " 233.20099698 238.67135193 244.85870857 251.7410006 259.21279966\n", + " 267.07328529 181.35667342 181.56790868 181.85777415 182.28018564\n", + " 182.95289983 184.19149998 187.22184671 205.19617552 267.07328529\n", + " 266.59845953 265.94084DEBUG:root:radec2pix: xyfp Shape: (96, 2)\n", + "811 264.97008557 263.3938965 260.39700292\n", + " 252.59010355 205.19617552 222.46269399 216.82093439 210.20829157\n", + " 202.57559903 193.99974981 184.73881406 225.97611965 231.49389572\n", + " 238.00639827 245.59111124 254.20436521 263.6117634 181.46953067\n", + " 181.78262482 182.26677669 183.11467024 184.98120654 192.39209935\n", + " 266.85454344 266.15458823 265.05671864 263.08918181 258.56369308\n", + " 238.630299 224.24223838 224.24223838 205.42453452 205.42453452\n", + " 224.19359423 229.74542917 236.38270094 244.22153031 253.24481767\n", + " 263.2046196 218.49803362 224.01504295 230.89947742 239.44320338\n", + " 249.79385261 261.71030558 211.7381028 216.91949721 223.73668556\n", + " 232.79289096 244.66979293 259.38488067 203.8308227 208.21481457\n", + " 214.34263424 223.2424136 236.45716258 255.28910964 194.83531269\n", + " 197.83404909 202.27750364 209.41669409 222.12219565 246.34438586\n", + " 185.03238692 186.10346579 187.75181788 190.6089913 196.71508989\n", + " 217.15465227]\n", + "DEBUG:root:radec2pix: lat: [73.19833089 74.18249103 75.09922688 75.92116023 76.61853688 77.16100123\n", + " 77.52079342 77.67706772 73.19833089 74.20159367 75.14093371 75.98890558\n", + " 76.71531245 77.28881429 77.68005228 77.86611976 77.67706772 79.27473553\n", + " 80.90480881 82.56181915 84.24016258 85.93331116 87.63030205 89.26372814\n", + " 77.86611976 79.46663016 81.09832556 82.755367 84.43126132 86.11695715\n", + " 87.79091006 89.26372814 73.63774563 74.80227565 75.83862014 76.69292614\n", + " 77.3096353 77.64025349 73.64559076 74.835883 75.90321746 76.7930912\n", + " 77.44812351 77.8166633 78.36913095 80.34967761 82.37343442 84.43012843\n", + " 86.50734673 88.57380626 78.55945528 80.5426681 82.56690719 84.62047016\n", + " 86.68569475 88.69035885 73.20529527 73.20529527 89.25558432 89.25558432\n", + " 74.09681811 75.34210951 76.46528549 77.40781255 78.10603298 78.5008319\n", + " 75.3160395 76.72544415 78.02222799 79.13621749 79.98176995 80.46955109\n", + " 76.40729948 77.98832745 79.48016045 80.80422916 81.84813181 82.47175257\n", + " 77.31254652 79.06012758 80.75806605 82.3313541 83.64750757 84.48728684\n", + " 77.96997446 79.85669547 81.74302972 83.57869755 85.2518859 86.47101417\n", + " 78.32402093 80.29356392 82.30071175 84.32903186 86.34620527 88.21286949]\n", + "DEBUG:root:radec2pix: lat: [73.24603516 74.22569152 75.13651604 75.95087507 76.6389128 77.17037377\n", + " 77.51785702 77.66114392 73.24603516 74.25573072 75.20211387 76.05743745\n", + " 76.79113897 77.37139648 77.76826885 77.95827247 77.66114392 79.25921808\n", + " 80.88995617 82.54802878 84.22809839 85.92431704 87.62836983 89.29981459\n", + " 77.95827247 79.56096311 81.19447792 82.85294756 84.52972557 86.21521853\n", + " 87.88507254 89.29981459 73.68365855 74.84176377 75.86929863 76.71215801\n", + " 77.3149747 77.63003049 73.695993 74.89461964 75.97090871 76.86971486\n", + " 77.53277126 77.90734766 78.35340648 80.33462383 82.35957542 84.41843101\n", + " 86.50018709 88.58327287 78.6525924 80.63823128 82.66432935 84.71895211\n", + " 86.78327785 88.77209382 73.25300675 73.25300675 89.29197852 89.29197852\n", + " 74.14551493 75.39944683 76.53201019 77.48405712 78.19096994 78.59236983\n", + " 75.35843946 76.77706596 78.08438262 79.20977154 80.06643025 80.56299799\n", + " 76.44078432 78.03102057 79.5341606 80.87167145 81.93009942 82.56616105\n", + " 77.33417557 79.08997119 80.79891427 82.38701631 83.72204901 84.58091077\n", + " 77.9769458 79.86951112 81.76439499 83.61332437 85.3080928 86.55866797\n", + " 78.31436404 80.28605679 82.29662619 84.33088528 86.36037199 88.26434016]\n", + "DEBUG:root:mm_to_pix: fitpx: [[0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]]\n", + "DEBUG:root:mm_to_pix: fitpx.shape: (96, 2)\n", + "DEBUG:root:radec2pix: xyfp: [[ -0.24606 31.536148 ]\n", + " [ -0.24606 27.14971943]\n", + " [ -0.24606 22.76329086]\n", + " [ -0.24606 18.37686229]\n", + " [ -0.24606 13.99043371]\n", + " [ -0.24606 9.60400514]\n", + " [ -0.24606 5.21757658]\n", + " [ -0.24606 0.831148 ]\n", + " [ -0.24606 31.536148 ]\n", + " [ -4.63248857 31.536148 ]\n", + " [ -9.01891714 31.536148 ]\n", + " [-13.40534571 31.536148 ]\n", + " [-17.79177429 31.536148 ]\n", + " [-22.17820286 31.536148 ]\n", + " [-26.56463143 31.536148 ]\n", + " [-30.95106 31.536148 ]\n", + " [ -0.24606 0.831148 ]\n", + " [ -4.63248857 0.831148 ]\n", + " [ -9.01891714 0.831148 ]\n", + " [-13.40534571 0.831148 ]\n", + " [-17.79177429 0.831148 ]\n", + " [-22.17820285 0.831148 ]\n", + " [-26.56463143 0.831148 ]\n", + " [-30.95106 0.831148 ]\n", + " [-30.95106 31.536148 ]\n", + " [-30.95106 27.14971943]\n", + " [-30.95106 22.76329086]\n", + " [-30.95106 18.37686228]\n", + " [-30.95106 13.99043371]\n", + " [-30.95106 9.60400514]\n", + " [-30.95106 5.21757657]\n", + " [-30.95106 0.831148 ]\n", + " [ -0.26106 29.623648 ]\n", + " [ -0.26106 24.247648 ]\n", + " [ -0.26106 18.87164801]\n", + " [ -0.26106 13.495648 ]\n", + " [ -0.26106 8.119648 ]\n", + " [ -0.26106 2.743648 ]\n", + " [ -2.15856 31.521148 ]\n", + " [ -7.53456 31.521148 ]\n", + " [-12.91056 31.521148 ]\n", + " [-18.28656 31.521148 ]\n", + " [-23.66256 31.521148 ]\n", + " [-29.03856 31.521148 ]\n", + " [ -2.15856 0.846148 ]\n", + " [ -7.53456 0.846148 ]\n", + " [-12.91056 0.846148 ]\n", + " [-18.28655999 0.846148 ]\n", + " [-23.66256 0.846148 ]\n", + " [-29.03856 0.846148 ]\n", + " [-30.93606 29.623648 ]\n", + " [-30.93606 24.247648 ]\n", + " [-30.93606 18.871648 ]\n", + " [-30.93606 13.495648 ]\n", + " [-30.93606 8.119648 ]\n", + " [-30.93606 2.743648 ]\n", + " [ -0.26106 31.521148 ]\n", + " [ -0.26106 31.521148 ]\n", + " [-30.93606 0.846148 ]\n", + " [-30.93606 0.846148 ]\n", + " [ -2.15856 29.623648 ]\n", + " [ -7.53456 29.623648 ]\n", + " [-12.91056 29.623648 ]\n", + " [-18.28656 29.623648 ]\n", + " [-23.66256 29.623648 ]\n", + " [-29.03856 29.623648 ]\n", + " [ -2.15856 24.247648 ]\n", + " [ -7.53456 24.247648 ]\n", + " [-12.91056 24.247648 ]\n", + " [-18.28656 24.247648 ]\n", + " [-23.66256 24.247648 ]\n", + " [-29.03856 24.247648 ]\n", + " [ -2.15856 18.871648 ]\n", + " [ -7.53456 18.871648 ]\n", + " [-12.91056 18.871648 ]\n", + " [-18.28656 18.871648 ]\n", + " [-23.66256 18.871648 ]\n", + " [-29.03856 18.871648 ]\n", + " [ -2.15856 13.495648 ]\n", + " [ -7.53456 13.495648 ]\n", + " [-12.91056 13.495648 ]\n", + " [-18.28656 13.495648 ]\n", + " [-23.66256 13.495648 ]\n", + " [-29.03856 13.495648 ]\n", + " [ -2.15856 8.119648 ]\n", + " [ -7.53456 8.119648 ]\n", + " [-12.91056 8.119648 ]\n", + " [-18.28656 8.119648 ]\n", + " [-23.66256 8.119648 ]\n", + " [-29.03856 8.119648 ]\n", + " [ -2.15856 2.743648 ]\n", + " [ -7.53456 2.743648 ]\n", + " [-12.91056 2.743648 ]\n", + " [-18.28656 2.743648 ]\n", + " [-23.66256 2.743648 ]\n", + " [-29.03856 2.743648 ]]\n", + "DEBUG:root:radec2pix: xyfp Shape: (96, 2)\n", + "DEBUG:root:radec2pix: curVec: [[ 0.12983633 -0.27455204 0.95276634]\n", + " [ 0.1474728 -0.25306354 0.95614362]\n", + " [ 0.16534132 -0.23094129 0.95881613]\n", + " [ 0.18336421 -0.20826243 0.96073114]\n", + " [ 0.20146499 -0.18510706 0.96184574]\n", + " [ 0.21956772 -0.16155925 0.96212714]\n", + " [ 0.23759701 -0.13770728 0.9615531 ]\n", + " [ 0.25547859 -0.11364312 0.96011246]\n", + " [ 0.12983633 -0.27455204 0.95276634]\n", + " [ 0.15200458 -0.29134348 0.94446471]\n", + " [ 0.17403632 -0.30776076 0.9354115 ]\n", + " [ 0.19584906 -0.32374104 0.92565376]\n", + " [ 0.21736365 -0.33922357 0.91524882]\n", + " [ 0.23850452 -0.35414924 0.90426429]\n", + " [ 0.25919964 -0.36845954 0.89277831]\n", + " [ 0.27938002 -0.38209544 0.88088017]\n", + " [ 0.25547859 -0.11364312 0.96011246]\n", + " [ 0.27831106 -0.13113093 0.95149758]\n", + " [ 0.30082147 -0.14844248 0.94205694]\n", + " [ 0.32292469 -0.16551122 0.93183995]\n", + " [ 0.34454071 -0.18227354 0.92090611]\n", + " [ 0.36559516 -0.19866921 0.90932432]\n", + " [ 0.38601912 -0.21464126 0.89717243]\n", + " [ 0.40574823 -0.23013528 0.88453724]\n", + " [ 0.27938002 -0.38209544 0.88088017]\n", + " [ 0.29766234 -0.36228959 0.88325726]\n", + " [ 0.31600013 -0.34171044 0.88508638]\n", + " [ 0.33431187 -0.32044125 0.88631427]\n", + " [ 0.35251849 -0.2985647 0.886899 ]\n", + " [ 0.37054294 -0.27616427 0.88680957]\n", + " [ 0.38831034 -0.25332526 0.88602562]\n", + " [ 0.40574823 -0.23013528 0.88453724]\n", + " [ 0.13756854 -0.26532399 0.95429455]\n", + " [ 0.15935052 -0.23855241 0.95796668]\n", + " [ 0.18140352 -0.21090522 0.96052681]\n", + " [ 0.20358632 -0.18252855 0.96189185]\n", + " [ 0.22575911 -0.1535772 0.96200149]\n", + " [ 0.24778352 -0.12421526 0.96081939]\n", + " [ 0.13957327 -0.28184298 0.94925436]\n", + " [ 0.16666215 -0.30217973 0.93856866]\n", + " [ 0.19346354 -0.3218919 0.92679958]\n", + " [ 0.21983029 -0.3408668 0.9140484 ]\n", + " [ 0.24562328 -0.35899547 0.90043959]\n", + " [ 0.27071122 -0.37617007 0.88612161]\n", + " [ 0.26540677 -0.12136769 0.956467 ]\n", + " [ 0.2931847 -0.14269057 0.94534763]\n", + " [ 0.32039388 -0.16368209 0.93303587]\n", + " [ 0.34688486 -0.18422393 0.91963712]\n", + " [ 0.37252069 -0.2042052 0.90527817]\n", + " [ 0.39717646 -0.22352213 0.89010601]\n", + " [ 0.28727097 -0.37351457 0.88202169]\n", + " [ 0.3097256 -0.34870847 0.88457473]\n", + " [ 0.33218238 -0.32282378 0.88625035]\n", + " [ 0.35449473 -0.29601289 0.88696666]\n", + " [ 0.37652085 -0.26842959 0.88666657]\n", + " [ 0.39812384 -0.24023187 0.88531692]\n", + " [ 0.1299721 -0.27453771 0.95275196]\n", + " [ 0.1299721 -0.27453771 0.95275196]\n", + " [ 0.40562303 -0.23016298 0.88458745]\n", + " [ 0.40562303 -0.23016298 0.88458745]\n", + " [ 0.14720611 -0.27265948 0.9507824 ]\n", + " [ 0.17438576 -0.29309299 0.9400458 ]\n", + " [ 0.20125914 -0.31291822 0.92821169]\n", + " [ 0.22767866 -0.33202266 0.91538155]\n", + " [ 0.25350509 -0.35029808 0.90167978]\n", + " [ 0.27860732 -0.36763792 0.88725437]\n", + " [ 0.16907934 -0.24596447 0.95441797]\n", + " [ 0.196483 -0.2666471 0.94355379]\n", + " [ 0.22352805 -0.28676828 0.93155739]\n", + " [ 0.25006574 -0.3062154 0.91853103]\n", + " [ 0.2759566 -0.32488151 0.90459934]\n", + " [ 0.30107029 -0.34266299 0.88990941]\n", + " [ 0.19120565 -0.21838026 0.95694851]\n", + " [ 0.21878324 -0.23927495 0.94598171]\n", + " [ 0.24595104 -0.25965684 0.93385567]\n", + " [ 0.27255942 -0.27941242 0.9206737 ]\n", + " [ 0.29846895 -0.29843496 0.90656101]\n", + " [ 0.32355033 -0.31662253 0.89166437]\n", + " [ 0.2134433 -0.1900526 0.95829117]\n", + " [ 0.24114321 -0.21112155 0.9472474 ]\n", + " [ 0.26838353 -0.23172881 0.93502516]\n", + " [ 0.29501412 -0.25175954 0.9217287 ]\n", + " [ 0.32089594 -0.27110628 0.90748398]\n", + " [ 0.34590093 -0.28966758 0.89243781]\n", + " [ 0.23565195 -0.16113588 0.95838582]\n", + " [ 0.26342132 -0.18234008 0.94729156]\n", + " [ 0.29068309 -0.20313637 0.93500746]\n", + " [ 0.31728708 -0.22340837 0.92163854]\n", + " [ 0.34309496 -0.24304732 0.90731133]\n", + " [ 0.36798003 -0.26195124 0.89217277]\n", + " [ 0.25769284 -0.13179382 0.95719632]\n", + " [ 0.28547804 -0.15309299 0.94607866]\n", + " [ 0.31270995 -0.17404048 0.93376785]\n", + " [ 0.33923886 -0.19451841 0.92036926]\n", + " [ 0.36492741 -0.21441647 0.90600969]\n", + " [ 0.38965025 -0.23363143 0.89083614]]\n", + "DEBUG:root:radec2pix: curVec Shape: (96, 3)\n", + "DEBUG:root:radec2pix: curVec: [[ 0.13349018 -0.57400753 -0.80789586]\n", + " [ 0.13651889 -0.59541939 -0.79173123]\n", + " [ 0.13965249 -0.61679973 -0.77463235]\n", + " [ 0.14286334 -0.63803779 -0.75663588]\n", + " [ 0.14612406 -0.65902681 -0.7377882 ]\n", + " [ 0.14940959 -0.67966581 -0.71814425]\n", + " [ 0.15269811 -0.69986033 -0.69776701]\n", + " [ 0.15597122 -0.71952282 -0.67672734]\n", + " [ 0.13349018 -0.57400753 -0.80789586]\n", + " [ 0.15952593 -0.56706033 -0.80808048]\n", + " [ 0.18602433 -0.55965507 -0.80757734]\n", + " [ 0.21286826 -0.55179019 -0.80635891]\n", + " [ 0.23993915 -0.5434699 -0.80440641]\n", + " [ 0.2671199 -0.53470517 -0.80170901]\n", + " [ 0.29429603 -0.52551424 -0.79826351]\n", + " [ 0.32135616 -0.5159227 -0.7940743 ]\n", + " [ 0.15597122 -0.71952282 -0.67672734]\n", + " [ 0.18330086 -0.71386649 -0.67586643]\n", + " [ 0.21104425 -0.70752261 -0.67444206]\n", + " [ 0.23907946 -0.7004848 -0.67242996]\n", + " [ 0.26728907 -0.69275361 -0.66981265]\n", + " [ 0.29555784 -0.68433707 -0.66657958]\n", + " [ 0.32377061 -0.67525154 -0.66272766]\n", + " [ 0.35181167 -0.66552235 -0.65826176]\n", + " [ 0.32135616 -0.5159227 -0.7940743 ]\n", + " [ 0.32633733 -0.5378246 -0.77733432]\n", + " [ 0.33115956 -0.55972639 -0.7596313 ]\n", + " [ 0.33578831 -0.58151574 -0.74100314]\n", + " [ 0.34019309 -0.60308755 -0.72149433]\n", + " [ 0.34434703 -0.62434221 -0.70115756]\n", + " [ 0.3482266 -0.64518423 -0.68005554]\n", + " [ 0.35181167 -0.66552235 -0.65826176]\n", + " [ 0.13488471 -0.58331721 -0.80096638]\n", + " [ 0.13867184 -0.60955332 -0.78052218]\n", + " [ 0.14258898 -0.63563174 -0.75870987]\n", + " [ 0.14658547 -0.66135411 -0.73561093]\n", + " [ 0.15061526 -0.6865346 -0.71132643]\n", + " [ 0.1546396 -0.71100218 -0.68597558]\n", + " [ 0.1447883 -0.57110799 -0.80800496]\n", + " [ 0.17702472 -0.56228662 -0.80777225]\n", + " [ 0.20984002 -0.55277491 -0.80647818]\n", + " [ 0.24301632 -0.54257815 -0.80408459]\n", + " [ 0.27633813 -0.53171657 -0.8005715 ]\n", + " [ 0.30959598 -0.52022683 -0.79593616]\n", + " [ 0.16781693 -0.71707398 -0.67649271]\n", + " [ 0.20160595 -0.70967969 -0.6750628 ]\n", + " [ 0.23589476 -0.70124571 -0.67276157]\n", + " [ 0.27046535 -0.69177016 -0.66955399]\n", + " [ 0.30510535 -0.68126794 -0.66542071]\n", + " [ 0.33960246 -0.66977289 -0.66035933]\n", + " [ 0.32345254 -0.52549805 -0.78691185]\n", + " [ 0.32945423 -0.55235586 -0.76574337]\n", + " [ 0.3351826 -0.57910096 -0.74316533]\n", + " [ 0.34057983 -0.60553695 -0.71925683]\n", + " [ 0.34559642 -0.63148026 -0.69411512]\n", + " [ 0.35019048 -0.65675679 -0.66786013]\n", + " [ 0.13358845 -0.5740577 -0.80784397]\n", + " [ 0.13358845 -0.5740577 -0.80784397]\n", + " [ 0.35170447 -0.66548809 -0.65835368]\n", + " [ 0.35170447 -0.66548809 -0.65835368]\n", + " [ 0.1461438 -0.58040484 -0.80110686]\n", + " [ 0.17854677 -0.57167293 -0.80081902]\n", + " [ 0.21152363 -0.56222501 -0.79947532]\n", + " [ 0.24485448 -0.55206523 -0.79703843]\n", + " [ 0.27832325 -0.54121347 -0.79348859]\n", + " [ 0.31172019 -0.52970648 -0.7888229 ]\n", + " [ 0.15008353 -0.60674732 -0.7805976 ]\n", + " [ 0.1829117 -0.59827035 -0.78013839]\n", + " [ 0.21629722 -0.58900571 -0.77864484]\n", + " [ 0.25001746 -0.57895563 -0.77608096]\n", + " [ 0.28385617 -0.56813961 -0.77242673]\n", + " [ 0.31760326 -0.55659494 -0.76767848]\n", + " [ 0.15412794 -0.63293115 -0.75871124]\n", + " [ 0.18730679 -0.62470796 -0.75806077]\n", + " [ 0.22102596 -0.61562929 -0.75640472]\n", + " [ 0.25506304 -0.6056964 -0.75370732]\n", + " [ 0.28920287 -0.59492859 -0.74994779]\n", + " [ 0.32323513 -0.58336348 -0.74512153]\n", + " [ 0.15822441 -0.65875686 -0.73553004]\n", + " [ 0.1916764 -0.65078487 -0.73466945]\n", + " [ 0.2256535 -0.64189514 -0.73283772]\n", + " [ 0.2599349 -0.63208815 -0.72999892]\n", + " [ 0.29430681 -0.62138248 -0.72613175]\n", + " [ 0.3285584 -0.60981542 -0.72123126]\n", + " [ 0.1623263 -0.68403823 -0.71115531]\n", + " [ 0.19597366 -0.67631446 -0.71006555]\n", + " [ 0.23013357 -0.66761695 -0.70804389]\n", + " [ 0.26458696 -0.65794521 -0.7050545 ]\n", + " [ 0.29912106 -0.64731646 -0.70107631]\n", + " [ 0.33352435 -0.63576685 -0.69610489]\n", + " [ 0.16639487 -0.70860389 -0.68570641]\n", + " [ 0.20016047 -0.70112451 -0.68436847]\n", + " [ 0.23442875 -0.69262162 -0.68214255]\n", + " [ 0.26898163 -0.68309366 -0.67899333]\n", + " [ 0.30360673 -0.67255612 -0.6749009 ]\n", + " [ 0.33809192 -0.66104348 -0.6698622 ]]\n", + "DEBUG:root:radec2pix: curVec Shape: (96, 3)\n", + "DEBUG:root:mm_to_pix: fitpx: [[0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]]\n", + "DEBUG:root:optics_fp: rtanth: [45.26169529 42.30243097 39.60873368 37.23827886 35.25632641 33.73142753\n", + " 32.72753223 32.29326616 45.26169529 42.24571523 39.48748363 37.04461879\n", + " 34.98324901 33.37413897 32.28498264 31.76930229 32.29326616 27.90939691\n", + " 23.52648174 19.14517593 14.76691204 10.39553425 6.04599739 1.87684519\n", + " 31.76930229 27.38910685 23.01128618 18.63751379 14.2715122 9.92354331\n", + " 5.63550123 1.87684519 43.93110404 40.47519439 37.47457234 35.04637691\n", + " 33.3160059 32.39547369 43.90748877 40.37685013 37.28961296 34.76410785\n", + " 32.92983309 31.90622779 30.38230115 25.01013154 19.64005824 14.27444739\n", + " 8.9213542 3.63648527 29.86008841 24.49335294 19.13182032 13.78156419\n", + " 8.46399587 3.33911555 45.24048285 45.24048285 1.89760875 1.89760875\n", + " 42.55711672 38.90412112 35.68971629 33.042152 31.10650288 30.02079255\n", + " 38.97957981 34.95468636 31.33776168 28.28574318 25.99834571 24.68901465\n", + " 35.85400749 31.43139051 27.35246822 23.7946523 21.02418109 19.38168349\n", + " 33.30787918 28.49275823 23.91782767 19.75070735 16.30708904 14.12638019\n", + " 31.48209857 26.3352423 21.30188242 16.48630206 12.15026205 9.01456223\n", + " 30.50627799 25.16059326 19.83130509 14.53645837 9.33484517 4.55771859]\n", + "DEBUG:root:mm_to_pix: fitpx.shape: (96, 2)\n", + "DEBUG:root:optics_fp: rtanth: [45.10607628 42.16357777 39.4899731 37.14337318 35.189258 33.69598042\n", + " 32.72668371 32.32853333 45.10607628 42.0744994 39.2994961 36.83909335\n", + " 34.76015989 33.13457624 32.03143895 31.50567459 32.32853333 27.94350461\n", + " 23.55899708 19.17536829 14.79339939 10.41518568 6.04888681 1.78423138\n", + " 31.50567459 27.12594155 22.74878876 18.37606012 14.01189826 9.66791142\n", + " 5.39307341 1.78423138 43.78236587 40.34917919 37.37672691 34.98265169\n", + " 33.29196413 32.41491299 43.7452802 40.19469624 37.08612172 34.53910818\n", + " 32.68520027 31.64644357 30.41697218 25.04308812 19.67036046 14.30009268\n", + " 8.93672046 3.6111005 29.59667216 24.23063563 18.87027174 13.52232821\n", + " 8.21110934 3.12954069 45.08486499 45.08486499 1.80420296 1.80420296\n", + " 42.4016515 38.72807918 35.4912797 32.82073285 30.86377856 29.76151712\n", + " 38.84663114 34.79978185 31.15752935 28.07777067 25.76302637 24.43171303\n", + " 35.74946438 31.30476433 27.19843907 23.60772454 20.80136966 19.12778226\n", + " 33.23838757 28.40342363 23.80170775 19.59823621 16.10786095 13.87941853\n", + " 31.45408342 26.29303007 21.23888529 16.39084557 12.00133913 8.78676362\n", + " 30.52427023 25.1733021 19.8358755 14.52692422 9.29536709 4.42480773]\n", + "DEBUG:root:radec2pix: xyfp: [[ 0.236018 -31.56946754]\n", + " [ 0.23651287 -27.18303899]\n", + " [ 0.23700774 -22.79661046]\n", + " [ 0.23750261 -18.41018192]\n", + " [ 0.23799748 -14.02375336]\n", + " [ 0.23849235 -9.63732482]\n", + " [ 0.23898721 -5.25089628]\n", + " [ 0.23948208 -0.86446773]\n", + " [ 0.236018 -31.56946754]\n", + " [ 4.62244655 -31.56996241]\n", + " [ 9.00887509 -31.57045728]\n", + " [ 13.39530363 -31.57095214]\n", + " [ 17.78173218 -31.57144701]\n", + " [ 22.16816072 -31.57194188]\n", + " [ 26.55458927 -31.57243675]\n", + " [ 30.94101781 -31.57293162]\n", + " [ 0.23948208 -0.86446773]\n", + " [ 4.62591062 -0.8649626 ]\n", + " [ 9.01233917 -0.86545747]\n", + " [ 13.39876771 -0.86595234]\n", + " [ 17.78519626 -0.86644721]\n", + " [ 22.1716248 -0.86694208]\n", + " [ 26.55805334 -0.86743695]\n", + " [ 30.94448189 -0.86793181]\n", + " [ 30.94101781 -31.57293162]\n", + " [ 30.94151268 -27.18650307]\n", + " [ 30.94200754 -22.80007453]\n", + " [ 30.94250242 -18.41364599]\n", + " [ 30.94299728 -14.02721745]\n", + " [ 30.94349215 -9.6407889 ]\n", + " [ 30.94398702 -5.25436036]\n", + " [ 30.94448189 -0.86793181]\n", + " [ 0.25123377 -29.65696924]\n", + " [ 0.25184028 -24.28096928]\n", + " [ 0.25244679 -18.90496931]\n", + " [ 0.2530533 -13.52896935]\n", + " [ 0.25365981 -8.15296938]\n", + " [ 0.25426632 -2.77696942]\n", + " [ 2.14851968 -31.5546833 ]\n", + " [ 7.52451965 -31.55528981]\n", + " [ 12.90051962 -31.55589633]\n", + " [ 18.27651958 -31.55650284]\n", + " [ 23.65251954 -31.55710934]\n", + " [ 29.02851952 -31.55771586]\n", + " [ 2.15198038 -0.8796835 ]\n", + " [ 7.52798035 -0.88029001]\n", + " [ 12.90398031 -0.88089652]\n", + " [ 18.27998027 -0.88150303]\n", + " [ 23.65598025 -0.88210954]\n", + " [ 29.03198021 -0.88271605]\n", + " [ 30.92623357 -29.66042994]\n", + " [ 30.92684009 -24.28442998]\n", + " [ 30.9274466 -18.90843001]\n", + " [ 30.9280531 -13.53243004]\n", + " [ 30.92865961 -8.15643008]\n", + " [ 30.92926612 -2.78043011]\n", + " [ 0.2510197 -31.55446923]\n", + " [ 0.2510197 -31.55446923]\n", + " [ 30.9294802 -0.88293012]\n", + " [ 30.9294802 -0.88293012]\n", + " [ 2.14873376 -29.65718332]\n", + " [ 7.52473372 -29.65778983]\n", + " [ 12.90073369 -29.65839633]\n", + " [ 18.27673365 -29.65900285]\n", + " [ 23.65273362 -29.65960936]\n", + " [ 29.02873359 -29.66021587]\n", + " [ 2.14934027 -24.28118335]\n", + " [ 7.52534023 -24.28178986]\n", + " [ 12.9013402 -24.28239637]\n", + " [ 18.27734016 -24.28300288]\n", + " [ 23.65334013 -24.28360939]\n", + " [ 29.02934009 -24.2842159 ]\n", + " [ 2.14994678 -18.90518338]\n", + " [ 7.52594674 -18.90578989]\n", + " [ 12.90194671 -18.9063964 ]\n", + " [ 18.27794667 -18.90700292]\n", + " [ 23.65394664 -18.90760943]\n", + " [ 29.0299466 -18.90821593]\n", + " [ 2.15055329 -13.52918342]\n", + " [ 7.52655325 -13.52978993]\n", + " [ 12.90255322 -13.53039644]\n", + " [ 18.27855318 -13.53100295]\n", + " [ 23.65455315 -13.53160946]\n", + " [ 29.03055312 -13.53221597]\n", + " [ 2.1511598 -8.15318346]\n", + " [ 7.52715976 -8.15378996]\n", + " [ 12.90315973 -8.15439647]\n", + " [ 18.27915969 -8.15500298]\n", + " [ 23.65515966 -8.15560949]\n", + " [ 29.03115962 -8.156216 ]\n", + " [ 2.1517663 -2.77718348]\n", + " [ 7.52776627 -2.77779 ]\n", + " [ 12.90376624 -2.77839651]\n", + " [ 18.2797662 -2.77900302]\n", + " [ 23.65576617 -2.77960953]\n", + " [ 29.03176613 -2.78021604]]\n", + "DEBUG:root:optics_fp: cphi: [0.71341716 0.76328013 0.81514194 0.86698087 0.91566575 0.95700502\n", + " 0.98630354 0.99950918 0.71341716 0.66051768 0.59557134 0.51643629\n", + " 0.4214805 0.31036993 0.18497457 0.04990581 0.99950918 0.99934039\n", + " 0.99906819 0.99858739 0.99761569 0.9951653 0.98558541 0.8377988\n", + " 0.04990581 0.05781889 0.0687377 0.08476872 0.11057085 0.15882919\n", + " 0.27935111 0.8377988 0.73466528 0.79733703 0.86111952 0.92071715\n", + " 0.96846887 0.9959178 0.69186293 0.61921532 0.52631184 0.40990453\n", + " 0.26948104 0.10963271 0.999428 0.999152 0.99861839 0.99737128\n", + " 0.99322638 0.95832228 0.05357183 0.06521663 0.08337359 0.1155749\n", + " 0.18791565 0.47564444 0.71341996 0.71341996 0.83653968 0.83653968\n", + " 0.71379735 0.6426352 0.54988271 0.43124184 0.28525093 0.11649124\n", + " 0.77925087 0.71517941 0.62617339 0.50367681 0.34120915 0.14155583\n", + " 0.8471183 0.79527459 0.71732418 0.59864658 0.42182798 0.18020046\n", + " 0.91180529 0.87721591 0.82023759 0.72110338 0.54370846 0.24707693\n", + " 0.96461215 0.94899507 0.92085832 0.86374835 0.72953296 0.3869314\n", + " 0.99539279 0.99320908 0.98902871 0.97944976 0.94931741 0.76479745]\n", + "DEBUG:root:optics_fp: cphi: [-0.71639206 -0.76640718 -0.81831665 -0.87003773 -0.918376 -0.95909967\n", + " -0.98753169 -0.99971968 -0.71639206 -0.66375612 -0.59900967 -0.51994628\n", + " -0.42485193 -0.31331297 -0.18716187 -0.0510586 -0.99971968 -0.9996256\n", + " -0.99947438 -0.99920821 -0.99867222 -0.99732533 -0.99206684 -0.90485547\n", + " -0.0510586 -0.05933321 -0.07078632 -0.08767585 -0.11504297 -0.16682032\n", + " -0.29920561 -0.90485547 -0.73771707 -0.80051245 -0.864202 -0.9233738\n", + " -0.97029678 -0.99658165 -0.69495812 -0.62259801 -0.52982456 -0.41324571\n", + " -0.27220694 -0.1112649 -0.9996711 -0.99951604 -0.9992175 -0.99852279\n", + " -0.99622323 -0.97670188 -0.054871 -0.06706472 -0.08616954 -0.12032428\n", + " -0.19827847 -0.52055819 -0.71639646 -0.71639646 -0.90315154 -0.90315154\n", + " -0.71698855 -0.64618487 -0.553643 -0.43489275 -0.28828288 -0.11832391\n", + " -0.78262952 -0.71915739 -0.63068289 -0.50839224 -0.34539889 -0.14417822\n", + " -0.85046147 -0.79948029 -0.72252464 -0.60469794 -0.42783445 -0.18421072\n", + " -0.91474245 -0.88118124 -0.82567874 -0.72846169 -0.55256029 -0.25394179\n", + " -0.96666577 -0.95194756 -0.92535864 -0.87107074 -0.74171607 -0.40123831\n", + " -0.99614527 -0.99433151 -0.99086162 -0.98290647 -0.95774678 -0.79700819]\n", + "DEBUG:root:radec2pix: camVec: [[-0.00156258 -0.00157957 -0.00159468 -0.00160787 -0.00161907 -0.00162822\n", + " -0.00163527 -0.00164017 -0.00156258 -0.0305812 -0.05948043 -0.08814769\n", + " -0.11647141 -0.14434091 -0.17164574 -0.19827444 -0.00164017 -0.03165868\n", + " -0.06155164 -0.09120162 -0.12049415 -0.14931846 -0.17756745 -0.20513658\n", + " -0.19827444 -0.2000398 -0.20154417 -0.20278831 -0.20377138 -0.20449167\n", + " -0.20494724 -0.20513658 -0.00166992 -0.00169047 -0.00170796 -0.0017223\n", + " -0.00173334 -0.001741 -0.0142227 -0.04972296 -0.08493191 -0.1196437\n", + " -0.15365451 -0.18676067 -0.01473616 -0.05145726 -0.08787283 -0.12377083\n", + " -0.15894736 -0.19320639 -0.19898619 -0.20097311 -0.20256914 -0.20377339\n", + " -0.20458276 -0.20499385 -0.00166195 -0.00166195 -0.20504339 -0.20504339\n", + " -0.01428012 -0.04992014 -0.08526785 -0.1201171 -0.15426444 -0.18750721\n", + " -0.01442512 -0.05041664 -0.08611259 -0.12130566 -0.1557929 -0.1893742\n", + " -0.01454351 -0.0508198 -0.08679712 -0.1222667 -0.15702557 -0.19087549\n", + " -0.01463451 -0.05112705 -0.08731762 -0.122996 -0.15795892 -0.19200933\n", + " -0.01469728 -0.05133568 -0.08766989 -0.12348855 -0.15858803 -0.19277198\n", + " -0.01473117 -0.05144352 -0.08785049 -0.12374011 -0.1589085 -0.19315962]\n", + " [ 0.20900824 0.18154377 0.15338464 0.12463517 0.09540199 0.06579532\n", + " 0.03592916 0.00592057 0.20900824 0.20886066 0.2084416 0.2077524\n", + " 0.20679486 0.20557063 0.20408052 0.20232383 0.00592057 0.00591961\n", + " 0.00591082 0.00589429 0.00587015 0.00583856 0.00579969 0.00575368\n", + " 0.20232383 0.17576331 0.1485108 0.12067777 0.09237455 0.06371165\n", + " 0.03480051 0.00575368 0.19712565 0.16298492 0.12790428 0.09207897\n", + " 0.05571194 0.01901436 0.20888472 0.20852129 0.20775151 0.20657854\n", + " 0.20500532 0.20303275 0.00602383 0.00601719 0.00599868 0.00596852\n", + " 0.005927 0.00587443 0.19084173 0.15780847 0.12384677 0.08916013\n", + " 0.05395206 0.01842821 0.20891558 0.20891558 0.00585328 0.00585328\n", + " 0.19709662 0.19675396 0.1960282 0.19492287 0.19344162 0.19158618\n", + " 0.16296111 0.16267787 0.16207774 0.1611649 0.15994417 0.15841917\n", + " 0.12788582 0.12766348 0.12719172 0.12647465 0.12551724 0.12432386\n", + " 0.09206603 0.09190638 0.09156653 0.09104984 0.09036055 0.08950266\n", + " 0.05570466 0.05560934 0.05540465 0.05509277 0.05467653 0.0541587\n", + " 0.01901283 0.01898296 0.01891568 0.01881174 0.01867213 0.01849786]\n", + " [ 0.97791263 0.9833816 0.98816527 0.99220134 0.99543751 0.99783181\n", + " 0.999353 0.99998113 0.97791263 0.97746714 0.97622445 0.97420169\n", + " 0.97142694 0.96793926 0.96378882 0.95903718 0.99998113 0.99948121\n", + " 0.9980864 0.995815 0.99269668 0.98877192 0.98409154 0.97871644\n", + " 0.95903718 0.96389384 0.9681552 0.97175809 0.97465079 0.9767927\n", + " 0.97815416 0.97871644 0.98037681 0.98662711 0.99178505 0.99575022\n", + " 0.99844538 0.99981769 0.97783684 0.97675304 0.9744875 0.97108738\n", + " 0.9666246 0.96119621 0.99987327 0.99865707 0.99611364 0.99229288\n", + " 0.98726927 0.98114055 0.96124083 0.9668021 0.97140502 0.97494968\n", + " 0.97736128 0.97858976 0.97793227 0.97793227 0.97873538 0.97873538\n", + " 0.98028006 0.97918122 0.976884 0.97343565 0.96890806 0.96339804\n", + " 0.98652704 0.98539031 0.98301344 0.97944414 0.97475455 0.96904116\n", + " 0.99168226 0.99051471 0.98807314 0.98440592 0.97958583 0.97370947\n", + " 0.99564536 0.99445424 0.99196331 0.98822159 0.98330257 0.97730327\n", + " 0.99833911 0.99713201 0.99460762 0.9908155 0.98582976 0.97974782\n", + " 0.99971071 0.99849547 0.99595406 0.99213633 0.98711673 0.98099296]]\n", + "DEBUG:root:radec2pix: camVec: [[-0.20605921 -0.20787315 -0.20942436 -0.21070676 -0.21171698 -0.21245291\n", + " -0.21291301 -0.2130962 -0.20605921 -0.17962884 -0.15250018 -0.12477652\n", + " -0.0965659 -0.06797863 -0.03912632 -0.01012153 -0.2130962 -0.18573503\n", + " -0.15766321 -0.1289874 -0.09981355 -0.07024926 -0.04040619 -0.01040084\n", + " -0.01012153 -0.01020027 -0.01026637 -0.01031977 -0.01036027 -0.01038751\n", + " -0.01040113 -0.01040084 -0.20679239 -0.20883895 -0.21048459 -0.2117221\n", + " -0.21254753 -0.21295821 -0.1946339 -0.16175754 -0.12793421 -0.09336102\n", + " -0.05824097 -0.02277993 -0.20126076 -0.16723544 -0.13224882 -0.09649617\n", + " -0.06017591 -0.02349561 -0.01025713 -0.01034611 -0.01041588 -0.01046611\n", + " -0.01049618 -0.01050541 -0.20597676 -0.20597676 -0.01050361 -0.01050361\n", + " -0.19540403 -0.16239488 -0.12843557 -0.09372478 -0.05846599 -0.02286533\n", + " -0.19733483 -0.16399068 -0.1296908 -0.094636 -0.05902974 -0.02307851\n", + " -0.19888634 -0.16527244 -0.13070023 -0.09537003 -0.05948408 -0.02324907\n", + " -0.20005292 -0.16623701 -0.13146138 -0.09592455 -0.05982716 -0.0233762\n", + " -0.20083104 -0.16688094 -0.13197015 -0.09629527 -0.0600556 -0.02345845\n", + " -0.20121796 -0.16720058 -0.13222195 -0.09647752 -0.06016577 -0.02349426]\n", + " [-0.20169937 -0.17519485 -0.1480085 -0.12024402 -0.09200964 -0.06341581\n", + " -0.03457423 -0.00559748 -0.20169937 -0.20353396 -0.20511207 -0.20642749\n", + " -0.20747679 -0.20825778 -0.20876879 -0.20900854 -0.00559748 -0.00565735\n", + " -0.00571045 -0.00575671 -0.00579596 -0.00582797 -0.00585246 -0.00586919\n", + " -0.20900854 -0.18153487 -0.15336672 -0.12461057 -0.09537244 -0.06576046\n", + " -0.03588698 -0.00586919 -0.1902398 -0.15728353 -0.12340547 -0.08880315\n", + " -0.0536798 -0.01824146 -0.20244048 -0.20451655 -0.20620095 -0.20748634\n", + " -0.2083686 -0.2088448 -0.00572401 -0.00579384 -0.00585326 -0.00590199\n", + " -0.0059396 -0.00596558 -0.19712185 -0.16296958 -0.1278801 -0.09204872\n", + " -0.05567473 -0.01896706 -0.2016167 -0.2016167 -0.0059719 -0.0059719\n", + " -0.19101701 -0.19297429 -0.19456158 -0.19577312 -0.19660523 -0.1970549\n", + " -0.15792497 -0.15953875 -0.16084786 -0.1618491 -0.16253892 -0.16291334\n", + " -0.12390793 -0.1251726 -0.12620079 -0.12699006 -0.12753631 -0.1278347\n", + " -0.089165 -0.090077 -0.09082101 -0.09139481 -0.09179425 -0.09201449\n", + " -0.05389991 -0.05445583 -0.05491134 -0.05526476 -0.0555129 -0.05565213\n", + " -0.018319 -0.01851594 -0.01867909 -0.01880776 -0.01890068 -0.01895646]\n", + " [ 0.95752648 0.96233857 0.96655829 0.97012578 0.97299031 0.97511138\n", + " 0.97645925 0.97701519 0.95752648 0.96244865 0.96678474 0.97047334\n", + " 0.97346207 0.97570877 0.97718203 0.97786143 0.97701519 0.98258358\n", + " 0.98747643 0.99162952 0.99498928 0.99751244 0.9991662 0.99992869\n", + " 0.97786143 0.98333161 0.98811601 0.99215206 0.99538774 0.99778137\n", + " 0.99930173 0.99992869 0.95971127 0.96521924 0.96977695 0.97328709\n", + " 0.97567516 0.97689101 0.95975804 0.96540534 0.97011031 0.97377263\n", + " 0.97631476 0.97768345 0.97952098 0.98589996 0.99119927 0.99531586\n", + " 0.99817012 0.99970614 0.98032534 0.98657685 0.99173494 0.9956995\n", + " 0.99839379 0.99976492 0.95756163 0.95756163 0.999927 0.999927\n", + " 0.96194063 0.96767186 0.97244542 0.97616011 0.97873802 0.9801DEBUG:root:optics_fp: sphi: [-0.69769794 -0.64235507 -0.57476766 -0.49298514 -0.3957089 -0.2830686\n", + " -0.15742033 -0.02367621 -0.69769794 -0.74794907 -0.80074179 -0.85419896\n", + " -0.90526286 -0.94964993 -0.98232909 -0.99869566 -0.02367621 -0.02736175\n", + " -0.03241859 -0.03978624 -0.05151501 -0.07309024 -0.12571151 -0.42571889\n", + " -0.99869566 -0.99823823 -0.9974915 -0.99614906 -0.99336052 -0.98598731\n", + " -0.95418866 -0.42571889 -0.67511001 -0.59931613 -0.50314502 -0.38390211\n", + " -0.24191766 -0.08261364 -0.71905021 -0.78254183 -0.84810727 -0.91061956\n", + " -0.96223874 -0.99379078 -0.02564534 -0.03110765 -0.0395524 -0.05433448\n", + " -0.08682898 -0.21460065 -0.99849345 -0.99774863 -0.99628049 -0.99273464\n", + " -0.98014573 -0.8538262 -0.69769342 -0.69769342 -0.42932191 -0.42932191\n", + " -0.69708495 -0.76318092 -0.83275412 -0.90048226 -0.95754529 -0.99297505\n", + " -0.62248778 -0.69484721 -0.77604065 -0.86112562 -0.93845597 -0.98955174\n", + " -0.52603734 -0.60069232 -0.69134517 -0.7964549 -0.90385712 -0.98288677\n", + " -0.40403745 -0.472778622578\n", + " 0.96753226 0.97347545 0.97842131 0.98226722 0.98493482 0.98637043\n", + " 0.97215793 0.97827237 0.98335691 0.9873085 0.99004855 0.99152295\n", + " 0.97571944 0.98196303 0.98715219 0.99118387 0.99397914 0.99548324\n", + " 0.97814196 0.9844721 0.98973159 0.9938174 0.99665021 0.9981746\n", + " 0.97937518 0.98574902 0.99104412 0.99515745 0.99800944 0.99954423]]\n", + " -0.5641406 -0.68508654 -0.83347293 -0.9672195\n", + " -0.25604158 -0.30626107 -0.37909286 -0.49115758 -0.670714 -0.9159737\n", + " -0.08771884 -0.10632422 -0.13488237 -0.1841056 -0.28761277 -0.6039685 ]\n", + "DEBUG:root:radec2pix: camVec Shape: (3, 96)\n", + "DEBUG:root:optics_fp: sphi: [0.70073958 0.64606768 0.57926126 0.49834142 0.40194059 0.29007134\n", + " 0.1649404 0.0313274 0.70073958 0.75081049 0.80330242 0.85632562\n", + " 0.90683747 0.95061586 0.98274331 0.99875393 0.0313274 0.03631497\n", + " 0.04315962 0.05313395 0.069014 0.09821415 0.1691786 0.5459791\n", + " 0.99875393 0.99832709 0.99763477 0.99640065 0.99386824 0.98730608\n", + " 0.96018902 0.5459791 0.67842975 0.60353431 0.50840257 0.39023062\n", + " 0.2491346 0.09026478 0.72202887 0.78522123 0.85029163 0.91212843\n", + " 0.9630057 0.99397217 0.03381828 0.04117383 0.05254813 0.07246053\n", + " 0.11619532 0.28568936 0.998564 0.99787113 0.99651836 0.99329877\n", + " 0.98218517 0.87963764 0.70073672 0.70073672 0.54790634 0.54790634\n", + " 0.7003523 0.76617231 0.83524188 0.90223637 0.95845287 0.99319172\n", + " 0.62671212 0.69894092 0.77968384 0.86389216 0.9399874 0.98993027\n", + " 0.53140435 0.60624939 0.69673956 0.80101328 0.90667588 0.98362991\n", + " 0.41062285 0.48009609 0.57202299 0.69282748 0.83927416 0.96899587\n", + " 0.26367291 0.3152909 0.38989736 0.5039234 0.68394565 0.92210851\n", + " 0.09588115 0.11634315 0.14772342 0.20168832 0.31431902 0.6442708 ]\n", + "DEBUG:root:radec2pix: camVec Shape: (3, 96)\n", + "DEBUG:root:radec2pix: xyfp: [[ -0.24606 31.536148 ]\n", + " [ -0.24606 27.14971943]\n", + " [ -0.24606 22.76329086]\n", + " [ -0.24606 18.37686229]\n", + " [ -0.24606 13.99043371]\n", + " [ -0.24606 9.60400514]\n", + " [ -0.24606 5.21757658]\n", + " [ -0.24606 0.831148 ]\n", + " [ -0.24606 31.536148 ]\n", + " [ -4.63248857 31.536148 ]\n", + " [ -9.01891714 31.536148 ]\n", + " [-13.40534571 31.536148 ]\n", + " [-17.79177429 31.536148 ]\n", + " [-22.17820286 31.536148 ]\n", + " [-26.56463143 31.536148 ]\n", + " [-30.95106 31.536148 ]\n", + " [ -0.24606 0.831148 ]\n", + " [ -4.63248857 0.831148 ]\n", + " [ -9.01891714 0.831148 ]\n", + " [-13.40534571 0.831148 ]\n", + " [-17.79177429 0.831148 ]\n", + " [-22.17820285 0.831148 ]\n", + " [-26.56463143 0.831148 ]\n", + " [-30.95106 0.831148 ]\n", + " [-30.95106 31.536148 ]\n", + " [-30.95106 27.14971943]\n", + " [-30.95106 22.76329086]\n", + " [-30.95106 18.37686228]\n", + " [-30.95106 13.99043371]\n", + " [-30.95106 9.60400514]\n", + " [-30.95106 5.21757657]\n", + " [-30.95106 0.831148 ]\n", + " [ -0.26106 29.623648 ]\n", + " [ -0.26106 24.247648 ]\n", + " [ -0.26106 18.87164801]\n", + " [ -0.26106 13.495648 ]\n", + " [ -0.26106 8.119648 ]\n", + " [ -0.26106 2.743648 ]\n", + " [ -2.15856 31.521148 ]\n", + " [ -7.53456 31.521148 ]\n", + " [-12.91056 31.521148 ]\n", + " [-18.28656 31.521148 ]\n", + " [-23.66256 31.521148 ]\n", + " [-29.03856 31.521148 ]\n", + " [ -2.15856 0.846148 ]\n", + " [ -7.53456 0.846148 ]\n", + " [-12.91056 0.846148 ]\n", + " [-18.28655999 0.846148 ]\n", + " [-23.66256 0.846148 ]\n", + " [-29.03856 0.846148 ]\n", + " [-30.93606 29.623648 ]\n", + " [-30.93606 24.247648 ]\n", + " [-30.93606 18.871648 ]\n", + " [-30.93606 13.495648 ]\n", + " [-30.93606 8.119648 ]\n", + " [-30.93606 2.743648 ]\n", + " [ -0.26106 31.521148 ]\n", + " [ -0.26106 31.521148 ]\n", + " [-30.93606 0.846148 ]\n", + " [-30.93606 0.846148 ]\n", + " [ -2.15856 29.623648 ]\n", + " [ -7.53456 29.623648 ]\n", + " [-12.91056 29.623648 ]\n", + " [-18.28656 29.623648 ]\n", + " [-23.66256 29.623648 ]\n", + " [-29.03856 29.623648 ]\n", + " [ -2.15856 24.247648 ]\n", + " [ -7.53456 24.247648 ]\n", + " [-12.91056 24.247648 ]\n", + " [-18.28656 24.247648 ]\n", + " [-23.66256 24.247648 ]\n", + " [-29.03856 24.247648 ]\n", + " [ -2.15856 18.871648 ]\n", + " [ -7.53456 18.871648 ]\n", + " [-12.91056 18.871648 ]\n", + " [-18.28656 18.871648 ]\n", + " [-23.66256 18.871648 ]\n", + " [-29.03856 18.871648 ]\n", + " [ -2.15856 13.495648 ]\n", + " [ -7.53456 13.495648 ]\n", + " [-12.91056 13.495648 ]\n", + " [-18.28656 13.495648 ]\n", + " [-23.66256 13.495648 ]\n", + " [-29.03856 13.495648 ]\n", + " [ -2.15856 8.119648 ]\n", + " [ -7.53456 8.119648 ]\n", + " [-12.91056 8.119648 ]\n", + " [-18.28656 8.119648 ]\n", + " [-23.66256 8.119648 ]\n", + " [-29.03856 8.119648 ]\n", + " [ -2.15856 2.743648 ]\n", + " [ -7.53456 2.743648 ]\n", + " [-12.91056 2.743648 ]\n", + " [-18.28656 2.743648 ]\n", + " [-23.66256 2.743648 ]\n", + " [-29.03856 2.743648 ]]\n", + "DEBUG:root:radec2pix: ccdpx: [[-4.45000000e+01 -4.99999797e-01]\n", + " [-4.45000000e+01 2.91928572e+02]\n", + " [-4.45000000e+01 5.84357143e+02]\n", + " [-4.45000000e+01 8.76785714e+02]\n", + " [-4.45000000e+01 1.16921429e+03]\n", + " [-4.45000000e+01 1.46164286e+03]\n", + " [-4.45000000e+01 1.75407143e+03]\n", + " [-4.45000001e+01 2.04650000e+03]\n", + " [-4.45000000e+01 -4.99999797e-01]\n", + " [ 2.47928571e+02 -5.00000034e-01]\n", + " [ 5.40357143e+02 -4.99999972e-01]\n", + " [ 8.32785714e+02 -4.99999760e-01]\n", + " [ 1.12521429e+03 -5.00000049e-01]\n", + " [ 1.41764286e+03 -4.99999867e-01]\n", + " [ 1.71007143e+03 -5.00000044e-01]\n", + " [ 2.00250000e+03 -4.99999770e-01]\n", + " [-4.45000001e+01 2.04650000e+03]\n", + " [ 2.47928571e+02 2.04650000e+03]\n", + " [ 5.40357143e+02 2.04650000e+03]\n", + " [ 8.32785714e+02 2.04650000e+03]\n", + " [ 1.12521429e+03 2.04650000e+03]\n", + " [ 1.41764286e+03 2.04650000e+03]\n", + " [ 1.71007143e+03 2.04650000e+03]\n", + " [ 2.00250000e+03 2.04650000e+03]\n", + " [ 2.00250000e+03 -4.99999770e-01]\n", + " [ 2.00250000e+03 2.91928572e+02]\n", + " [ 2.00250000e+03 5.84357143e+02]\n", + " [ 2.00250000e+03 8.76785714e+02]\n", + " [ 2.00250000e+03 1.16921429e+03]\n", + " [ 2.00250000e+03 1.46164286e+03]\n", + " [ 2.00250000e+03 1.75407143e+03]\n", + " [ 2.00250000e+03 2.04650000e+03]\n", + " [-4.35000000e+01 1.27000000e+02]\n", + " [-4.35000000e+01 4.85400000e+02]\n", + " [-4.35000000e+01 8.43800000e+02]\n", + " [-4.35000000e+01 1.20220000e+03]\n", + " [-4.35000000e+01 1.56060000e+03]\n", + " [-4.35000000e+01 1.91900000e+03]\n", + " [ 8.30000000e+01 5.00000045e-01]\n", + " [ 4.41400000e+02 5.00000251e-01]\n", + " [ 7.99800000e+02 4.99999878e-01]\n", + " [ 1.15820000e+03 4.99999746e-01]\n", + " [ 1.51660000e+03 5.00000268e-01]\n", + " [ 1.87500000e+03 4.99999743e-01]\n", + " [ 8.29999998e+01 2.04550000e+03]\n", + " [ 4.41400000e+02 2.04550000e+03]\n", + " [ 7.99800000e+02 2.04550000e+03]\n", + " [ 1.15820000e+03 2.04550000e+03]\n", + " [ 1.51660000e+03 2.04550000e+03]\n", + " [ 1.87500000e+03 2.04550000e+03]\n", + " [ 2.00150000e+03 1.27000000e+02]\n", + " [ 2.00150000e+03 4.85400000e+02]\n", + " [ 2.00150000e+03 8.43800000e+02]\n", + " [ 2.00150000e+03 1.20220000e+03]\n", + " [ 2.00150000e+03 1.56060000e+03]\n", + " [ 2.00150000e+03 1.91900000e+03]\n", + " [-4.35000000e+01 5.00000140e-01]\n", + " [-4.35000000e+01 5.00000140e-01]\n", + " [ 2.00150000e+03 2.04550000e+03]\n", + " [ 2.00150000e+03 2.04550000e+03]\n", + " [ 8.30000000e+01 1.27000000e+02]\n", + " [ 4.41400000e+02 1.27000000e+02]\n", + " [ 7.99800000e+02 1.27000000e+02]\n", + " [ 1.15820000e+03 1.27000000e+02]\n", + " [ 1.51660000e+03 1.27000000e+02]\n", + " [ 1.87500000e+03 1.27000000e+02]\n", + " [ 8.30000000e+01 4.85400000e+02]\n", + " [ 4.41400000e+02 4.85400000e+02]\n", + " [ 7.99800000e+02 4.85400000e+02]\n", + " [ 1.15820000e+03 4.85400000e+02]\n", + " [ 1.51660000e+03 4.85400000e+02]\n", + " [ 1.87500000e+03 4.85400000e+02]\n", + " [ 8.30000000e+01 8.43800000e+02]\n", + " [ 4.41400000e+02 8.43800000e+02]\n", + " [ 7.99800000e+02 8.43800000e+02]\n", + " [ 1.15820000e+03 8.43800000e+02]\n", + " [ 1.51660000e+03 8.43800000e+02]\n", + " [ 1.87500000e+03 8.43800000e+02]\n", + " [ 8.30000000e+01 1.20220000e+03]\n", + " [ 4.41400000e+02 1.20220000e+03]\n", + " [ 7.99800000e+02 1.20220000e+03]\n", + " [ 1.15820000e+03 1.20220000e+03]\n", + " [ 1.51660000e+03 1.20220000e+03]\n", + " [ 1.87500000e+03 1.20220000e+03]\n", + " [ 8.30000001e+01 1.56060000e+03]\n", + " [ 4.41400000e+02 1.56060000e+03]\n", + " [ 7.99800000e+02 1.56060000e+03]\n", + " [ 1.15820000e+03 1.56060000e+03]\n", + " [ 1.51660000e+03 1.56060000e+03]\n", + " [ 1.87500000e+03 1.56060000e+03]\n", + " [ 8.29999998e+01 1.91900000e+03]\n", + " [ 4.41400000e+02 1.91900000e+03]\n", + " [ 7.99800000e+02 1.91900000e+03]\n", + " [ 1.15820000e+03 1.91900000e+03]\n", + " [ 1.51660000e+03 1.91900000e+03]\n", + " [ 1.87500000e+03 1.91900000e+03]]\n", + "DEBUG:root:optics_fp: xyfp: [[-32.29046994 -31.71666141]\n", + " [-32.28860507 -27.33023323]\n", + " [-32.2867402 -22.94380505]\n", + " [-32.28487534 -18.55737688]\n", + " [-32.28301047 -14.1709487 ]\n", + " [-32.2811456 -9.78452053]\n", + " [-32.27928073 -5.39809235]\n", + " [-32.27741587 -1.01166418]\n", + " [-32.29046994 -31.71666141]\n", + " [-27.90404176 -31.71852627]\n", + " [-23.51761359 -31.72039114]\n", + " [-19.13118541 -31.722256 ]\n", + " [-14.74475724 -31.72412087]\n", + " [-10.35832906 -31.72598574]\n", + " [ -5.97190089 -31.72785061]\n", + " [ -1.58547272 -31.72971547]\n", + " [-32.27741587 -1.01166418]\n", + " [-27.8909877 -1.01352905]\n", + " [-23.50455952 -1.01539391]\n", + " [-19.11813134 -1.01725878]\n", + " [-14.73170317 -1.01912365]\n", + " [-10.345275 -1.02098851]\n", + " [ -5.95884682 -1.02285338]\n", + " [ -1.57241864 -1.02471825]\n", + " [ -1.58547272 -31.72971547]\n", + " [ -1.58360785 -27.3432873 ]\n", + " [ -1.58174298 -22.95685912]\n", + " [ -1.57987811 -18.57043094]\n", + " [ -1.57801325 -14.18400278]\n", + " [ -1.57614838 -9.7975746 ]\n", + " [ -1.57428351 -5.41114642]\n", + " [ -1.57241864 -1.02471825]\n", + " [-32.27465685 -29.80416795]\n", + " [-32.27237127 -24.42816844]\n", + " [-32.2700857 -19.05216893]\n", + " [-32.26780012 -13.67616941]\n", + " [-32.26551454 -8.3001699 ]\n", + " [-32.26322896 -2.92417038]\n", + " [-30.37796373 -31.70247449]\n", + " [-25.00196422 -31.70476008]\n", + " [-19.62596471 -31.70704565]\n", + " [-14.24996519 -31.70933123]\n", + " [ -8.87396568 -31.71161681]\n", + " [ -3.49796617 -31.71390239]\n", + " [-30.36492242 -1.02747727]\n", + " [-24.98892291 -1.02976285]\n", + " [-19.61292339 -1.03204842]\n", + " [-14.23692388 -1.034334 ]\n", + " [ -8.86092437 -1.03661958]\n", + " [ -3.48492485 -1.03890516]\n", + " [ -1.59965962 -29.81720927]\n", + " [ -1.59737405 -24.44120975]\n", + " [ -1.59508847 -19.06521024]\n", + " [ -1.59280289 -13.68921073]\n", + " [ -1.59051731 -8.31321121]\n", + " [ -1.58823174 -2.9372117 ]\n", + " [-32.27546357 -31.70166778]\n", + " [-32.27546357 -31.70166778]\n", + " [ -1.58742502 -1.03971187]\n", + " [ -1.58742502 -1.03971187]\n", + " [-30.37715702 -29.80497466]\n", + " [-25.00115751 -29.80726024]\n", + " [-19.625158 -29.80954582]\n", + " [-14.24915848 -29.8118314 ]\n", + " [ -8.87315897 -29.81411698]\n", + " [ -3.49715945 -29.81640256]\n", + " [-30.37487145 -24.42897515]\n", + " [-24.99887193 -24.43126073]\n", + " [-19.62287241 -24.43354631]\n", + " [-14.2468729 -24.43583188]\n", + " [ -8.87087339 -24.43811746]\n", + " [ -3.49487388 -24.44040305]\n", + " [-30.37258587 -19.05297564]\n", + " [-24.99658635 -19.05526122]\n", + " [-19.62058684 -19.05754679]\n", + " [-14.24458732 -19.05983237]\n", + " [ -8.86858781 -19.06211795]\n", + " [ -3.4925883 -19.06440353]\n", + " [-30.37030029 -13.67697612]\n", + " [-24.99430077 -13.6792617 ]\n", + " [-19.61830126 -13.68154728]\n", + " [-14.24230175 -13.68383286]\n", + " [ -8.86630223 -13.68611844]\n", + " [ -3.49030272 -13.68840401]\n", + " [-30.36801471 -8.30097661]\n", + " [-24.9920152 -8.30326219]\n", + " [-19.61601568 -8.30554776]\n", + " [-14.24001617 -8.30783335]\n", + " [ -8.86401666 -8.31011893]\n", + " [ -3.48801714 -8.3124045 ]\n", + " [-30.36572914 -2.9249771 ]\n", + " [-24.98972962 -2.92726267]\n", + " [-19.6137301 -2.92954825]\n", + " [-14.23773059 -2.93183383]\n", + " [ -8.86173108 -2.93411941]\n", + " [ -3.48573156 -2.93640499]]\n", + "DEBUG:root:optics_fp: xyfp shape: (96, 2)\n", + "DEBUG:root:optics_fp: xyfp: [[32.31363499 31.47041645]\n", + " [32.3144687 27.08398795]\n", + " [32.31530242 22.69755946]\n", + " [32.31613613 18.31113097]\n", + " [32.31696984 13.92470248]\n", + " [32.31780355 9.53827398]\n", + " [32.31863726 5.15184549]\n", + " [32.31947097 0.765417 ]\n", + " [32.31363499 31.47041645]\n", + " [27.9272065 31.46958273]\n", + " [23.540778 31.46874902]\n", + " [19.15434951 31.46791531]\n", + " [14.76792102 31.4670816 ]\n", + " [10.38149253 31.46624788]\n", + " [ 5.99506403 31.46541417]\n", + " [ 1.60863554 31.46458045]\n", + " [32.31947097 0.765417 ]\n", + " [27.93304248 0.76458329]\n", + " [23.54661399 0.76374957]\n", + " [19.1601855 0.76291586]\n", + " [14.77375701 0.76208215]\n", + " [10.38732851 0.76124844]\n", + " [ 6.00090002 0.76041472]\n", + " [ 1.61447153 0.75958101]\n", + " [ 1.60863554 31.46458045]\n", + " [ 1.60946926 27.07815197]\n", + " [ 1.61030297 22.69172348]\n", + " [ 1.61113668 18.30529498]\n", + " [ 1.61197039 13.91886648]\n", + " [ 1.6128041 9.53243799]\n", + " [ 1.61363782 5.1460095 ]\n", + " [ 1.61447153 0.75958101]\n", + " [32.29899849 29.55791363]\n", + " [32.30002028 24.18191372]\n", + " [32.30104209 18.80591382]\n", + " [32.30206388 13.42991392]\n", + " [32.30308568 8.05391402]\n", + " [32.30410748 2.67791411]\n", + " [30.40113787 31.45505294]\n", + " [25.02513797 31.45403115]\n", + " [19.64913807 31.45300935]\n", + " [14.27313817 31.45198755]\n", + " [ 8.89713826 31.45096576]\n", + " [ 3.52113836 31.44994396]\n", + " [30.40696816 0.7800535 ]\n", + " [25.03096826 0.7790317 ]\n", + " [19.65496836 0.7780099 ]\n", + " [14.27896845 0.77698811]\n", + " [ 8.90296855 0.77596631]\n", + " [ 3.52696865 0.77494451]\n", + " [ 1.62399904 29.55208334]\n", + " [ 1.62502084 24.17608344]\n", + " [ 1.62604264 18.80008353]\n", + " [ 1.62706443 13.42408364]\n", + " [ 1.62808623 8.04808373]\n", + " [ 1.62910803 2.67208383]\n", + " [32.29863784 31.4554136 ]\n", + " [32.29863784 31.4554136 ]\n", + " [ 1.62946868 0.77458386]\n", + " [ 1.62946868 0.77458386]\n", + " [30.40149852 29.55755297]\n", + " [25.02549862 29.55653118]\n", + " [19.64949872 29.55550938]\n", + " [14.27349882 29.55448759]\n", + " [ 8.89749891 29.55346579]\n", + " [ 3.52149901 29.55244399]\n", + " [30.40252032 24.18155307]\n", + " [25.02652042 24.18053128]\n", + " [19.65052052 24.17950948]\n", + " [14.27452061 24.17848769]\n", + " [ 8.89852071 24.17746589]\n", + " [ 3.52252081 24.17644409]\n", + " [30.40354212 18.80555317]\n", + " [25.02754221 18.80453137]\n", + " [19.65154231 18.80350958]\n", + " [14.27554241 18.80248779]\n", + " [ 8.89954251 18.80146598]\n", + " [ 3.5235426 18.80044419]\n", + " [30.40456392 13.42955327]\n", + " [25.02856401 13.42853147]\n", + " [19.65256411 13.42750967]\n", + " [14.27656421 13.42648788]\n", + " [ 8.9005643 13.42546608]\n", + " [ 3.5245644 13.42444429]\n", + " [30.40558571 8.05355336]\n", + " [25.02958581 8.05253157]\n", + " [19.6535859 8.05150977]\n", + " [14.277586 8.05048797]\n", + " [ 8.9015861 8.04946618]\n", + " [ 3.5255862 8.04844438]\n", + " [30.40660751 2.67755346]\n", + " [25.0306076 2.67653166]\n", + " [19.6546077 2.67550987]\n", + " [14.2786078 2.67448807]\n", + " [ 8.90260789 2.67346627]\n", + " [ 3.52660799 2.67244448]]\n", + "DEBUG:root:optics_fp: xyfp shape: (96, 2)\n", + "DEBUG:root:radec2pix: ccdpx: [[-4.45000000e+01 -5.00000251e-01]\n", + " [-4.45000000e+01 2.91928572e+02]\n", + " [-4.45000000e+01 5.84357143e+02]\n", + " [-4.45000000e+01 8.76785714e+02]\n", + " [-4.45000000e+01 1.16921429e+03]\n", + " [-4.45000000e+01 1.46164286e+03]\n", + " [-4.45000000e+01 1.75407143e+03]\n", + " [-4.45000000e+01 2.04650000e+03]\n", + " [-4.45000000e+01 -5.00000251e-01]\n", + " [ 2.47928571e+02 -5.00000137e-01]\n", + " [ 5.40357143e+02 -5.00000030e-01]\n", + " [ 8.32785714e+02 -4.99999965e-01]\n", + " [ 1.12521429e+03 -4.99999941e-01]\n", + " [ 1.41764286e+03 -5.00000178e-01]\n", + " [ 1.71007143e+03 -4.99999847e-01]\n", + " [ 2.00250000e+03 -5.00000219e-01]\n", + " [-4.45000000e+01 2.04650000e+03]\n", + " [ 2.47928571e+02 2.04650000e+03]\n", + " [ 5.40357143e+02 2.04650000e+03]\n", + " [ 8.32785714e+02 2.04650000e+03]\n", + " [ 1.12521429e+03 2.04650000e+03]\n", + " [ 1.41764286e+03 2.04650000e+03]\n", + " [ 1.71007143e+03 2.04650000e+03]\n", + " [ 2.00250000e+03 2.04650000e+03]\n", + " [ 2.00250000e+03 -5.00000219e-01]\n", + " [ 2.00250000e+03 2.91928572e+02]\n", + " [ 2.00250000e+03 5.84357143e+02]\n", + " [ 2.00250000e+03 8.76785714e+02]\n", + " [ 2.00250000e+03 1.16921429e+03]\n", + " [ 2.00250000e+03 1.46164286e+03]\n", + " [ 2.00250000e+03 1.75407143e+03]\n", + " [ 2.00250000e+03 2.04650000e+03]\n", + " [-4.35000000e+01 1.27000000e+02]\n", + " [-4.35000000e+01 4.85400000e+02]\n", + " [-4.35000000e+01 8.43800000e+02]\n", + " [-4.35000000e+01 1.20220000e+03]\n", + " [-4.35000000e+01 1.56060000e+03]\n", + " [-4.35000000e+01 1.91900000e+03]\n", + " [ 8.30000000e+01 4.99999716e-01]\n", + " [ 4.41400000e+02 4.99999791e-01]\n", + " [ 7.99800000e+02 5.00000291e-01]\n", + " [ 1.15820000e+03 5.00000004e-01]\n", + " [ 1.51660000e+03 5.00000077e-01]\n", + " [ 1.87500000e+03 4.99999846e-01]\n", + " [ 8.30000001e+01 2.04550000e+03]\n", + " [ 4.41400000e+02 2.04550000e+03]\n", + " [ 7.99800000e+02 2.04550000e+03]\n", + " [ 1.15820000e+03 2.04550000e+03]\n", + " [ 1.51660000e+03 2.04550000e+03]\n", + " [ 1.87500000e+03 2.04550000e+03]\n", + " [ 2.00150000e+03 1.27000000e+02]\n", + " [ 2.00150000e+03 4.85400000e+02]\n", + " [ 2.00150000e+03 8.43800000e+02]\n", + " [ 2.00150000e+03 1.20220000e+03]\n", + " [ 2.00150000e+03 1.56060000e+03]\n", + " [ 2.00150000e+03 1.91900000e+03]\n", + " [-4.35000000e+01 4.99999735e-01]\n", + " [-4.35000000e+01 4.99999735e-01]\n", + " [ 2.00150000e+03 2.04550000e+03]\n", + " [ 2.00150000e+03 2.04550000e+03]\n", + " [ 8.30000000e+01 1.27000000e+02]\n", + " [ 4.41400000e+02 1.27000000e+02]\n", + " [ 7.99800000e+02 1.27000000e+02]\n", + " [ 1.15820000e+03 1.27000000e+02]\n", + " [ 1.51660000e+03 1.27000000e+02]\n", + " [ 1.87500000e+03 1.27000000e+02]\n", + " [ 8.30000000e+01 4.85400000e+02]\n", + " [ 4.41400000e+02 4.85400000e+02]\n", + " [ 7.99800000e+02 4.85400000e+02]\n", + " [ 1.15820000e+03 4.85400000e+02]\n", + " [ 1.51660000e+03 4.85400000e+02]\n", + " [ 1.87500000e+03 4.85400000e+02]\n", + " [ 8.30000000e+01 8.43800000e+02]\n", + " [ 4.41400000e+02 8.43800000e+02]\n", + " [ 7.99800000e+02 8.43800000e+02]\n", + " [ 1.15820000e+03 8.43800000e+02]\n", + " [ 1.51660000e+03 8.43800000e+02]\n", + " [ 1.87500000e+03 8.43800000e+02]\n", + " [ 8.30000000e+01 1.20220000e+03]\n", + " [ 4.41400000e+02 1.20220000e+03]\n", + " [ 7.99800000e+02 1.20220000e+03]\n", + " [ 1.15820000e+03 1.20220000e+03]\n", + " [ 1.51660000e+03 1.20220000e+03]\n", + " [ 1.87500000e+03 1.20220000e+03]\n", + " [ 8.30000000e+01 1.56060000e+03]\n", + " [ 4.41400000e+02 1.56060000e+03]\n", + " [ 7.99800000e+02 1.56060000e+03]\n", + " [ 1.15820000e+03 1.56060000e+03]\n", + " [ 1.51660000e+03 1.56060000e+03]\n", + " [ 1.87500000e+03 1.56060000e+03]\n", + " [ 8.30000002e+01 1.91900000e+03]\n", + " [ 4.41400000e+02 1.91900000e+03]\n", + " [ 7.99800000e+02 1.91900000e+03]\n", + " [ 1.15820000e+03 1.91900000e+03]\n", + " [ 1.51660000e+03 1.91900000e+03]\n", + " [ 1.87500000e+03 1.91900000e+03]]\n", + "DEBUG:root:cartToSphere: vec: [[-0.00156258 0.20900824 0.97791263]\n", + " [-0.00157957 0.18154377 0.9833816 ]\n", + " [-0.00159468 0.15338464 0.98816527]\n", + " [-0.00160787 0.12463517 0.99220134]\n", + " [-0.00161907 0.09540199 0.99543751]\n", + " [-0.00162822 0.06579532 0.99783181]\n", + " [-0.00163527 0.03592916 0.999353 ]\n", + " [-0.00164017 0.00592057 0.99998113]\n", + " [-0.00156258 0.20900824 0.97791263]\n", + " [-0.0305812 0.20886066 0.97746714]\n", + " [-0.05948043 0.2084416 0.97622445]\n", + " [-0.08814769 0.2077524 0.97420169]\n", + " [-0.11647141 0.20679486 0.97142694]\n", + " [-0.14434091 0.20557063 0.96793926]\n", + " [-0.17164574 0.20408052 0.96378882]\n", + " [-0.19827444 0.20232383 0.95903718]\n", + " [-0.00164017 0.00592057 0.99998113]\n", + " [-0.03165868 0.00591961 0.99948121]\n", + " [-0.06155164 0.00591082 0.9980864 ]\n", + " [-0.09120162 0.00589429 0.995815 ]\n", + " [-0.12049415 0.00587015 0.99269668]\n", + " [-0.14931846 0.00583856 0.98877192]\n", + " [-0.17756745 0.00579969 0.98409154]\n", + " [-0.20513658 0.00575368 0.97871644]\n", + " [-0.19827444 0.20232383 0.95903718]\n", + " [-0.2000398 0.17576331 0.96389384]\n", + " [-0.20154417 0.1485108 0.9681552 ]\n", + " [-0.20278831 0.12067777 0.97175809]\n", + " [-0.20377138 0.09237455 0.97465079]\n", + " [-0.20449167 0.06371165 0.9767927 ]\n", + " [-0.20494724 0.03480051 0.97815416]\n", + " [-0.20513658 0.00575368 0.97871644]\n", + " [-0.00166992 0.19712565 0.98037681]\n", + " [-0.00169047 0.16298492 0.98662711]\n", + " [-0.00170796 0.12790428 0.99178505]\n", + " [-0.0017223 0.09207897 0.99575022]\n", + " [-0.00173334 0.05571194 0.99844538]\n", + " [-0.001741 0.01901436 0.99981769]\n", + " [-0.0142227 0.20888472 0.97783684]\n", + " [-0.04972296 0.20852129 0.97675304]\n", + " [-0.08493191 0.20775151 0.9744875 ]\n", + " [-0.1196437 0.20657854 0.97108738]\n", + " [-0.15365451 0.20500532 0.9666246 ]\n", + " [-0.18676067 0.20303275 0.96119621]\n", + " [-0.01473616 0.00602383 0.99987327]\n", + " [-0.05145726 0.00601719 0.99865707]\n", + " [-0.08787283 0.00599868 0.99611364]\n", + " [-0.12377083 0.00596852 0.99229288]\n", + " [-0.15894736 0.005927 0.98726927]\n", + " [-0.19320639 0.00587443 0.98114055]\n", + " [-0.19898619 0.19084173 0.96124083]\n", + " [-0.20097311 0.15780847 0.9668021 ]\n", + " [-0.20256914 0.12384677 0.97140502]\n", + " [-0.20377339 0.08916013 0.97494968]\n", + " [-0.20458276 0.05395206 0.97736128]\n", + " [-0.20499385 0.01842821 0.97858976]\n", + " [-0.00166195 0.20891558 0.97793227]\n", + " [-0.00166195 0.20891558 0.97793227]\n", + " [-0.20504339 0.00585328 0.97873538]\n", + " [-0.20504339 0.00585328 0.97873538]\n", + " [-0.01428012 0.19709662 0.98028006]\n", + " [-0.04992014 0.19675396 0.97918122]\n", + " [-0.08526785 0.1960282 0.976884 ]\n", + " [-0.1201171 0.19492287 0.97343565]\n", + " [-0.15426444 0.19344162 0.96890806]\n", + " [-0.18750721 0.19158618 0.96339804]\n", + " [-0.01442512 0.16296111 0.98652704]\n", + " [-0.05041664 0.16267787 0.98539031]\n", + " [-0.08611259 0.16207774 0.98301344]\n", + " [-0.12130566 0.1611649 0.97944414]\n", + " [-0.1557929 0.15994417 0.97475455]\n", + " [-0.1893742 0.15841917 0.96904116]\n", + " [-0.01454351 0.12788582 0.99168226]\n", + " [-0.0508198 0.12766348 0.99051471]\n", + " [-0.08679712 0.12719172 0.98807314]\n", + " [-0.1222667 0.12647465 0.98440592]\n", + " [-0.15702557 0.12551724 0.97958583]\n", + " [-0.19087549 0.12432386 0.97370947]\n", + " [-0.01463451 0.09206603 0.99564536]\n", + " [-0.05112705 0.09190638 0.99445424]\n", + " [-0.08731762 0.09156653 0.99196331]\n", + " [-0.122996 0.09104984 0.98822159]\n", + " [-0.15795892 0.09036055 0.98330257]\n", + " [-0.19200933 0.08950266 0.97730327]\n", + " [-0.01469728 0.05570466 0.99833911]\n", + " [-0.05133568 0.05560934 0.99713201]\n", + " [-0.08766989 0.05540465 0.99460762]\n", + " [-0.12348855 0.05509277 0.9908155 ]\n", + " [-0.15858803 0.05467653 0.98582976]\n", + " [-0.19277198 0.0541587 0.97974782]\n", + " [-0.01473117 0.01901283 0.99971071]\n", + " [-0.05144352 0.01898296 0.99849547]\n", + " [-0.08785049 0.01891568 0.99595406]\n", + " [-0.12374011 0.01881174 0.99213633]\n", + " [-0.1589085 0.01867213 0.98711673]\n", + " [-0.19315962 0.01849786 0.98099296]]\n", + "DEBUG:root:radec2pix: curVec: [[ 1.97534721e-03 5.86464299e-01 8.09972669e-01]\n", + " [ 7.66002533e-03 5.64880788e-01 8.25136970e-01]\n", + " [ 1.33036655e-02 5.42393746e-01 8.40019069e-01]\n", + " [ 1.88975037e-02 5.19079755e-01 8.54516876e-01]\n", + " [ 2.44299775e-02 4.95018742e-01 8.68538785e-01]\n", + " [ 2.98868735e-02 4.70294686e-01 8.82003222e-01]\n", + " [ 3.52517403e-02 4.44996259e-01 8.94838334e-01]\n", + " [ 4.05063978e-02 4.19217110e-01 9.06981944e-01]\n", + " [ 1.97534721e-03 5.86464299e-01 8.09972669e-01]\n", + " [-2.47902807e-02 5.83866998e-01 8.11470745e-01]\n", + " [-5.20962887e-02 5.80650139e-01 8.12484703e-01]\n", + " [-7.98239344e-02 5.76815670e-01 8.12964835e-01]\n", + " [-1.07856969e-01 5.72368590e-01 8.12872113e-01]\n", + " [-1.36080833e-01 5.67317294e-01 8.12177995e-01]\n", + " [-1.64382055e-01 5.61674155e-01 8.10864158e-01]\n", + " [-1.92648107e-01 5.55456095e-01 8.08922267e-01]\n", + " [ 4.05063978e-02 4.19217110e-01 9.06981944e-01]\n", + " [ 1.30379899e-02 4.15043094e-01 9.09708327e-01]\n", + " [-1.50020749e-02 4.10447236e-01 9.11760936e-01]\n", + " [-4.35020951e-02 4.05429600e-01 9.13090580e-01]\n", + " [-7.23507987e-02 3.99994285e-01 9.13657449e-01]\n", + " [-1.01435425e-01 3.94149915e-01 9.13431278e-01]\n", + " [-1.30640920e-01 3.87910042e-01 9.12391774e-01]\n", + " [-1.59850309e-01 3.81293322e-01 9.10529122e-01]\n", + " [-1.92648107e-01 5.55456095e-01 8.08922267e-01]\n", + " [-1.88592468e-01 5.32839418e-01 8.24933352e-01]\n", + " [-1.84309385e-01 5.09340849e-01 8.40596187e-01]\n", + " [-1.79807138e-01 4.85030695e-01 8.55812256e-01]\n", + " [-1.75096101e-01 4.59984503e-01 8.70491592e-01]\n", + " [-1.70189026e-01 4.34284761e-01 8.84552114e-01]\n", + " [-1.65101178e-01 4.08021737e-01 8.97919742e-01]\n", + " [-1.59850309e-01 3.81293322e-01 9.10529122e-01]\n", + " [ 4.36766315e-03 5.77161506e-01 8.16618344e-01]\n", + " [ 1.13072952e-02 5.50090609e-01 8.35028423e-01]\n", + " [ 1.81770796e-02 5.21738306e-01 8.52911914e-01]\n", + " [ 2.49568979e-02 4.92250318e-01 8.70095844e-01]\n", + " [ 3.16206284e-02 4.61781323e-01 8.86430000e-01]\n", + " [ 3.81372403e-02 4.30496630e-01 9.01786118e-01]\n", + " [-9.60125787e-03 5.85335517e-01 8.10734327e-01]\n", + " [-4.27848165e-02 5.81734618e-01 8.12252605e-01]\n", + " [-7.66617792e-02 5.77204832e-01 8.12992960e-01]\n", + " [-1.11017139e-01 5.71754091e-01 8.12879114e-01]\n", + " [-1.45639927e-01 5.65397915e-01 8.11858491e-01]\n", + " [-1.80321626e-01 5.58160947e-01 8.09901518e-01]\n", + " [ 2.85897842e-02 4.17538166e-01 9.08209505e-01]\n", + " [-5.47431577e-03 4.12139888e-DEBUG:root:radec2pix: fitpx: [[ 2.13550000e+03 -4.99999797e-01]\n", + " [ 2.13550000e+03 2.91928572e+02]\n", + " [ 2.13550000e+03 5.84357143e+02]\n", + " [ 2.13550000e+03 8.76785714e+02]\n", + " [ 2.13550000e+03 1.16921429e+03]\n", + " [ 2.13550000e+03 1.46164286e+03]\n", + " [ 2.13550000e+03 1.75407143e+03]\n", + " [ 2.13550000e+03 2.04650000e+03]\n", + " [ 2.13550000e+03 -4.99999797e-01]\n", + " [ 2.42792857e+03 -5.00000034e-01]\n", + " [ 2.72035714e+03 -4.99999972e-01]\n", + " [ 3.01278571e+03 -4.99999760e-01]\n", + " [ 3.30521429e+03 -5.00000049e-01]\n", + " [ 3.59764286e+03 -4.99999867e-01]\n", + " [ 3.89007143e+03 -5.00000044e-01]\n", + " [ 4.18250000e+03 -4.99999770e-01]\n", + " [ 2.13550000e+03 2.04650000e+03]\n", + " [ 2.42792857e+03 2.04650000e+03]\n", + " [ 2.72035714e+03 2.04650000e+03]\n", + " [ 3.01278571e+03 2.04650000e+03]\n", + " [ 3.30521429e+03 2.04650000e+03]\n", + " [ 3.59764286e+03 2.04650000e+03]\n", + " [ 3.89007143e+03 2.04650000e+03]\n", + " [ 4.18250000e+03 2.04650000e+03]\n", + " [ 4.18250000e+03 -4.99999770e-01]\n", + " [ 4.18250000e+03 2.91928572e+02]\n", + " [ 4.18250000e+03 5.84357143e+02]\n", + " [ 4.18250000e+03 8.76785714e+02]\n", + " [ 4.18250000e+03 1.16921429e+03]\n", + " [ 4.18250000e+03 1.46164286e+03]\n", + " [ 4.18250000e+03 1.75407143e+03]\n", + " [ 4.18250000e+03 2.04650000e+03]\n", + " [ 2.13650000e+03 1.27000000e+02]\n", + " [ 2.13650000e+03 4.85400000e+02]\n", + " [ 2.13650000e+03 8.43800000e+02]\n", + " [ 2.13650000e+03 1.20220000e+03]\n", + " [ 2.13650000e+03 1.56060000e+03]\n", + " [ 2.13650000e+03 1.91900000e+03]\n", + " [ 2.26300000e+03 5.00000045e-01]\n", + " [ 2.62140000e+03 5.00000251e-01]\n", + " [ 2.97980000e+03 4.99999878e-01]\n", + " [ 3.33820000e+03 4.99999746e-01]\n", + " [ 3.69660000e+03 5.00000268e-01]\n", + " [ 4.05500000e+03 4.99999743e-01]\n", + " [ 2.26300000e+03 2.04550000e+03]\n", + " [ 2.62140000e+03 2.04550000e+03]\n", + " [ 2.97980000e+03 2.04550000e+03]\n", + " [ 3.33820000e+03 2.04550000e+03]\n", + " [ 3.69660000e+03 2.04550000e+03]\n", + " [ 4.05500000e+03 2.04550000e+03]\n", + " [ 4.18150000e+03 1.27000000e+02]\n", + " [ 4.18150000e+03 4.85400000e+02]\n", + " [ 4.18150000e+03 8.43800000e+02]\n", + " [ 4.18150000e+03 1.20220000e+03]\n", + " [ 4.18150000e+03 1.56060000e+03]\n", + " [ 4.18150000e+03 1.91900000e+03]\n", + " [ 2.13650000e+03 5.00000140e-01]\n", + " [ 2.13650000e+03 5.00000140e-01]\n", + " [ 4.18150000e+03 2.04550000e+03]\n", + " [ 4.18150000e+03 2.04550000e+03]\n", + " [ 2.26300000e+03 1.27000000e+02]\n", + " [ 2.62140000e+03 1.27000000e+02]\n", + " [ 2.97980000e+03 1.27000000e+02]\n", + " [ 3.33820000e+03 1.27000000e+02]\n", + " [ 3.69660000e+03 1.27000000e+02]\n", + " [ 4.05500000e+03 1.27000000e+02]\n", + " [ 2.26300000e+03 4.85400000e+02]\n", + " [ 2.62140000e+03 4.85400000e+02]\n", + " [ 2.97980000e+03 4.85400000e+02]\n", + " [ 3.33820000e+03 4.85400000e+02]\n", + " [ 3.69660000e+03 4.85400000e+02]\n", + " [ 4.05500000e+03 4.85400000e+02]\n", + " [ 2.26300000e+03 8.43800000e+02]\n", + " [ 2.62140000e+03 8.43800000e+02]\n", + " [ 2.97980000e+03 8.43800000e+02]\n", + " [ 3.33820000e+03 8.43800000e+02]\n", + " [ 3.69660000e+03 8.43800000e+02]\n", + " [ 4.05500000e+03 8.43800000e+02]\n", + " [ 2.26300000e+03 1.20220000e+03]\n", + " [ 2.62140000e+03 1.20220000e+03]\n", + " [ 2.97980000e+03 1.20220000e+03]\n", + " [ 3.33820000e+03 1.20220000e+03]\n", + " [ 3.69660000e+03 1.20220000e+03]\n", + " [ 4.05500000e+03 1.20220000e+03]\n", + " [ 2.26300000e+03 1.56060000e+DEBUG:root:radec2pix: lng: [ 90.42834373 90.49850377 90.5956611 90.73910961 90.97227481\n", + " 91.41759428 92.60593903 105.48424091 90.42834373 98.33000716\n", + " 105.9265086 112.99112584 119.3891666 125.0745167 130.06614193\n", + " 134.42085308 105.48424091 169.40901167 174.51469037 176.30215943\n", + " 177.21090794 177.76079422 178.12927502 178.39338736 134.42085308\n", + " 138.69611239 143.61480744 149.24344747 155.61405077 162.69499667\n", + " 170.36296391 178.39338736 90.48535945 90.59424595 90.76505154\n", + " 91.07156688 91.78204394 95.23155859 93.89518731 103.41200836\n", + " 112.23547382 120.07805375 126.85210045 132.60955299 157.76630729\n", + " 173.33036525 176.09473451 177.23920333 177.86448301 178.25846094\n", + " 136.19687489 141.86022321 148.55920823 156.36843482 165.22645267\n", + " 174.86312285 90.45578538 90.45578538 178.36484692 178.36484692\n", + " 94.14397512 104.23659596 113.5079539 121.64257424 128.57141019\n", + " 134.38353176 95.05856666 107.21909912 117.98189812 126.96805941\n", + " 134.24672537 140.08615622 96.48795214 111.70632DEBUG:root:make_az_asym: xyp: [[32.31363499 31.47041645]\n", + " [32.3144687 27.08398795]\n", + " [32.31530242 22.69755946]\n", + " [32.31613613 18.31113097]\n", + " [32.31696984 13.92470248]\n", + " [32.31780355 9.53827398]\n", + " [32.31863726 5.15184549]\n", + " [32.31947097 0.765417 ]\n", + " [32.31363499 31.47041645]\n", + " [27.9272065 31.46958273]\n", + " [23.540778 31.46874902]\n", + " [19.15434951 31.46791531]\n", + " [14.76792102 31.4670816 ]\n", + " [10.38149253 31.46624788]\n", + " [ 5.99506403 31.46541417]\n", + " [ 1.60863554 31.46458045]\n", + " [32.31947097 0.765417 ]\n", + " [27.93304248 0.76458329]\n", + " [23.54661399 0.76374957]\n", + " [19.1601855 0.76291586]\n", + " [14.77375701 0.76208215]\n", + " [10.38732851 0.76124844]\n", + " [ 6.00090002 0.76041472]\n", + " [ 1.61447153 0.75958101]\n", + " [ 1.60863554 31.46458045]\n", + " [ 1.60946926 27.07815197]\n", + " [ 1.61030297 22.69172348]\n", + " [ 1.61113668 18.30529498]\n", + " [ 1.61197039 13.91886648]\n", + " [ 1.6128041 9.53243799]\n", + " [ 1.61363782 5.1460095 ]\n", + " [ 1.61447153 0.75958101]\n", + " [32.29899849 29.55791363]\n", + " [32.30002028 24.18191372]\n", + " [32.30104209 18.80591382]\n", + " [32.30206388 13.42991392]\n", + " [32.30308568 8.05391402]\n", + " [32.30410748 2.67791411]\n", + " [30.40113787 31.45505294]\n", + " [25.02513797 31.45403115]\n", + " [19.64913807 31.45300935]\n", + " [14.27313817 31.45198755]\n", + " [ 8.89713826 31.45096576]\n", + " [ 3.52113836 31.44994396]\n", + " [30.40696816 0.7800535 ]\n", + " [25.03096826 0.7790317 ]\n", + " [19.65496836 0.7780099 ]\n", + " [14.27896845 0.77698811]\n", + " [ 8.90296855 0.77596631]\n", + " [ 3.52696865 0.77494451]\n", + " [ 1.62399904 29.55208334]\n", + " [ 1.62502084 24.17608344]\n", + " [ 1.62604264 18.80008353]\n", + " [ 1.62706443 13.42408364]\n", + " [ 1.62808623 8.04808373]\n", + " [ 1.62910803 2.67208383]\n", + " [32.29863784 31.4554136 ]\n", + " [32.29863784 31.4554136 ]\n", + " [ 1.62946868 0.77458386]\n", + " [ 1.62946868 0.77458386]\n", + " [30.40149852 29.55755297]\n", + " [25.02549862 29.55653118]\n", + " [19.64949872 29.55550938]\n", + " [14.27349882 29.55448759]\n", + " [ 8.89749891 29.55346579]\n", + " [ 3.52149901 29.55244399]\n", + " [30.40252032 24.18155307]\n", + " [25.02652042 24.18053128]\n", + " [19.65052052 24.17950948]\n", + " [14.27452061 24.17848769]\n", + " [ 8.89852071 24.17746589]\n", + " [ 3.52252081 24.17644409]\n", + " [30.40354212 18.80555317]\n", + " [25.02754221 18.80453137]\n", + " [19.65154231 18.80350958]\n", + " [14.27554241 18.80248779]\n", + " [ 8.89954251 18.80146598]\n", + " [ 3.5235426 18.80044419]\n", + " [30.40456392 13.42955327]\n", + " [25.02856401 13.42853147]\n", + " [19.65256411 13.42750967]\n", + " [14.27656421 13.42648788]\n", + " [ 8.9005643 13.42546608]\n", + " [ 3.5245644 13.42444429]\n", + " [30.40558571 8.05355336]\n", + " [25.02958581 8.05253157]\n", + " [19.6535859 8.05150977]\n", + " [14.277586 8.05048797]\n", + " [ 8.9015861 8.04946618]\n", + " [ 3.5255862 8.04844438]\n", + " [30.40660751 2.67755346]\n", + " [25.0306076 2.67653166]\n", + " [19.6546077 2.67550987]\n", + " [14.2786078 2.67448807]\n", + " [ 8.90260789 2.67346627]\n", + " [ 3.52660799 2.67244448]]\n", + "03]\n", + " [ 2.62140000e+03 1.56060000e+03]\n", + " [ 2.97980000e+03 1.56060000e+03]\n", + " [ 3.33820000e+03 1.56060000e+03]\n", + " [ 3.69660000e+03 1.56060000e+03]\n", + " [ 4.05500000e+03 1.56060000e+03]\n", + " [ 2.26300000e+03 1.91900000e+03]\n", + " [ 2.62140000e+03 1.91900000e+03]\n", + " [ 2.97980000e+03 1.91900000e+03]\n", + " [ 3.33820000e+03 1.91900000e+03]\n", + " [ 3.69660000e+03 1.91900000e+03]\n", + " [ 4.05500000e+03 1.9101 9.11104135e-01]\n", + " [-4.02858769e-02 4.06107465e-01 9.12936895e-01]\n", + " [-7.56399941e-02 3.99446740e-01 9.13630611e-01]\n", + " [-1.11328985e-01 3.92173635e-01 9.13129617e-01]\n", + " [-1.47140184e-01 3.84315211e-01 9.11400891e-01]\n", + " [-1.90811398e-01 5.45730242e-01 8.15947004e-01]\n", + " [-1.85685954e-01 5.17409742e-01 8.35348960e-01]\n", + " [-1.80227076e-01 4.87833952e-01 8.54128935e-01]\n", + " [-1.74452981e-01 4.57139672e-01 8.72117812e-01]\n", + " [-1.68387165e-01 4.25478856e-01 8.89164499e-01]\n", + " [-1.62058779e-01 3.93020893e-01 9.05136194e-01]\n", + " [ 1.90437538e-03 5.86384286e-01 8.10030767e-01]\n", + " [ 1.90437538e-03 5.86384286e-01 8.10030767e-01]\n", + " [-1.59768763e-01 3.81408642e-01 9.10495135e-01]\n", + " [-1.59768763e-01 3.81408642e-01 9.10495135e-01]\n", + " [-7.18185483e-03 5.76069974e-01 8.17368831e-01]\n", + " [-4.04903211e-02 5.72359167e-01 8.19002758e-01]\n", + " [-7.44936809e-02 5.67735759e-01 8.19833398e-01]\n", + " [-1.08977707e-01 5.62207020e-01 8.19784804e-01]\n", + " [-1.43731788e-01 5.55787813e-01 8.18804665e-01]\n", + " [-1.785472897 124.31008611\n", + " 134.03082213 141.36316306 146.92239982 99.03197846 119.08696476\n", + " 133.63934958 143.48868891 150.22824427 155.00803043 104.7802641\n", + " 132.71160718 147.70838425 155.95659867 160.97729932 164.30745367\n", + " 127.76858297 159.74564279 167.84877649 171.35573132 173.29833797\n", + " 174.52977301]\n", + "900000e+03]]\n", + "DEBUG:root:make_az_asym: xyp: shape: (96, 2)\n", + "03e-01 5.48502331e-01 8.16863569e-01]\n", + " [-3.48052273e-04 5.48877955e-01 8.35902428e-01]\n", + " [-3.39589321e-02 5.44856949e-01 8.37841092e-01]\n", + " [-6.82707673e-02 5.39970826e-01 8.38910370e-01]\n", + " [-1.03071693e-01 5.34225011e-01 8.39035079e-01]\n", + " [-1.38151968e-01 5.27632785e-01 8.38163276e-01]\n", + " [-1.73302015e-01 5.20217422e-01 8.36265654e-01]\n", + " [ 6.44306472e-03 5.20403975e-01 8.53895889e-01]\n", + " [-2.73948346e-02 5.16072374e-01 8.56106785e-01]\n", + " [-6.19422675e-02 5.10924941e-01 8.57390728e-01]\n", + " [-9.69896612e-02 5.04965759e-01 8.57672774e-01]\n", + " [-1.32327914e-01 4.98207275e-01 8.56900715e-01]\n", + " [-1.67746346e-01 4.90672532e-01 8.55044812DEBUG:root:make_az_asym: xyp: [[-32.29046994 -31.71666141]\n", + " [-32.28860507 -27.33023323]\n", + " [-32.2867402 -22.94380505]\n", + " [-32.28487534 -18.55737688]\n", + " [-32.28301047 -14.1709487 ]\n", + " [-32.2811456 -9.78452053]\n", + " [-32.27928073 -5.39809235]\n", + " [-32.27741587 -1.01166418]\n", + " [-32.29046994 -31.71666141]\n", + " [-27.90404176 -31.71852627]\n", + " [-23.51761359 -31.72039114]\n", + " [-19.13118541 -31.722256 ]\n", + " [-14.74475724 -31.72412087]\n", + " [-10.35832906 -31.72598574]\n", + " [ -5.97190089 -31.72785061]\n", + " [ -1.58547272 -31.72971547]\n", + " [-32.27741587 -1.01166418]\n", + " [-27.8909877 -1.01352905]\n", + " [-23.50455952 -1.01539391]\n", + " [-19.11813134 -1.01725878]\n", + " [-14.73170317 -1.01912365]\n", + " [-10.345275 -1.02098851]\n", + " [ -5.95884682 -1.02285338]\n", + " [ -1.57241864 -1.02471825]\n", + " [ -1.58547272 -31.72971547]\n", + " [ -1.58360785 -27.3432873 ]\n", + " [ -1.58174298 -22.95685912]\n", + " [ -1.57987811 -18.57043094]\n", + " [ -1.57801325 -14.18400278]\n", + " [ -1.57614838 -9.7975746 ]\n", + " [ -1.57428351 -5.41114642]\n", + " [ -1.57241864 -1.02471825]\n", + " [-32.27465685 -29.80416795]\n", + " [-32.2723712DEBUG:root:fitpix2pix: ccdpx: shape: (96, 2)\n", + "DEBUG:root:cartToSphere: vec: [[-0.20605921 -0.20169937 0.95752648]\n", + " [-0.20787315 -0.17519485 0.96233857]\n", + " [-0.20942436 -0.1480085 0.96655829]\n", + " [-0.21070676 -0.12024402 0.97012578]\n", + " [-0.21171698 -0.09200964 0.97299031]\n", + " [-0.21245291 -0.06341581 0.97511138]\n", + " [-0.21291301 -0.03457423 0.97645925]\n", + " [-0.2130962 -0.00559748 0.97701519]\n", + " [-0.20605921 -0.20169937 0.95752648]\n", + " [-0.17962884 -0.20353396 0.96244865]\n", + " [-0.15250018 -0.20511207 0.96678474]\n", + " [-0.12477652 -0.20642749 0.97047334]\n", + " [-0.0965659 -0.20747679 0.97346207]\n", + " [-0.06797863 -0.20825778 0.97570877]\n", + " [-0.03912632 -0.20876879 0.97718203]\n", + " [-0.01012153 -0.20900854 0.97786143]\n", + " [-0.2130962 -0.00559748 0.97701519]\n", + " [-0.18573503 -0.00565735 0.98258358]\n", + " [-0.15766321 -0.00571045 0.98747643]\n", + " [-0.1289874 -0.00575671 0.99162952]\n", + " [-0.09981355 -0.00579596 0.99498928]\n", + " [-0.07024926 -0.00582797 0.99751244]\n", + " [-0.04040619 -0.00585246 0.9991662 ]\n", + " [-0.01040084 -0.00586919 0.99992869]\n", + " [-0.01012153 -0.20900854 0.97786143]\n", + " [-0.01020027 -0.18153487 0.98333161]\n", + " [-0.01026637 -0.15336672 0.98811601]\n", + " [-0.01031977 -0.12461057 0.99215206]\n", + " [-0.01036027 -0.09537244 0.99538774]\n", + " [-0.01038751 -0.06576046 0.99778137]\n", + " [-0.01040113 -0.03588698 0.99930173]\n", + " [-0.01040084 -0.00586919 0.99992869]\n", + " [-0.20679239 -0.1902398 0.95971127]\n", + " [-0.20883895 -0.15728353 0.96521924]\n", + " [-0.21048459 -0.12340547 0.96977695]\n", + " [-0.2117221 -0.08880315 0.97328709]\n", + " [-0.21254753 -0.0536798 0.97567516]\n", + " [-0.21295821 -0.01824146 0.97689101]\n", + " [-0.1946339 -0.20244048 0.95975804]\n", + " [-0.16175754 -0.20451655 0.96540534]\n", + " [-0.12793421 -0.20620095 0.97011031]\n", + " [-0.09336102 -0.20748634 0.97377263]\n", + " [-0.05824097 -0.2083686 0.97631476]\n", + " [-0.02277993 -0.2088448 0.97768345]\n", + " [-0.20126076 -0.00572401 0.97952098]\n", + " [-0.16723544 -0.00579384 0.98589996]\n", + " [-0.13224882 -0.00585326 0.99119927]\n", + " [-0.09649617 -0.00590199 0.99531586]\n", + " [-0.06017591 -0.0059396 0.99817012]\n", + " [-0.02349561 DEBUG:root:radec2pix: fitpx: [[2135.5 4155.50000025]\n", + " [2135.5 3863.07142842]\n", + " [2135.5 3570.64285705]\n", + " [2135.5 3278.21428595]\n", + " [2135.50000001 2985.78571392]\n", + " [2135.5 2693.35714283]\n", + " [2135.49999998 2400.92857178]\n", + " [2135.49999997 2108.50000011]\n", + " [2135.5 4155.50000025]\n", + " [1843.07142855 4155.50000014]\n", + " [1550.64285713 4155.50000003]\n", + " [1258.21428573 4155.49999997]\n", + " [ 965.78571432 4155.49999994]\n", + " [ 673.35714273 4155.50000018]\n", + " [ 380.92857156 4155.49999985]\n", + " [ 88.49999978 4155.50000022]\n", + " [2135.49999997 2108.50000011]\n", + " [1843.07142854 2108.50000001]\n", + " [1550.64285742 2108.49999997]\n", + " [1258.21428585 2108.49999999]\n", + " [ 965.78571387 2108.50000002]\n", + " [ 673.35714329 2108.49999998]\n", + " [ 380.92857158 2108.5 ]\n", + " [ 88.4999998 2108.50000001]\n", + " [ 88.49999978 4155.50000022]\n", + " [ 88.50000021 3863.07142839]\n", + " [ 88.50000011 3570.64285706]\n", + " [ 88.50000015 3278.21428562]\n", + " [ 88.49999997 2985.7857143 ]\n", + " [ 88.49999979 2693.35714292]\n", + " [ 88.49999995 2400.92857144]\n", + " [ 88.4999998 2108.50000001]\n", + " [2134.5 4027.99999985]\n", + " [2134.5 3669.59999985]\n", + " [2134.49999999 3311.20000044]\n", + " [2134.5 2952.7999998 ]\n", + " [2134.5 2594.40000013]\n", + " [2134.50000001 2235.99999985]\n", + " [2007.99999998 4154.50000028]\n", + " [1649.59999995 4154.50000021]\n", + " [1291.20000012 4154.49999971]\n", + " [ 932.8 4154.5 ]\n", + " [ 574.40000006 4154.49999992]\n", + " [ 215.99999986 4154.50000015]\n", + " [2007.99999994 2109.50000002]\n", + " [1649.60000009 2109.49999999]\n", + " [1291.20000007 2109.5 ]\n", + " [ 932.80000034 2109.49999998]\n", + " [ 574.40000029 2109.49999999]\n", + " [ 216.00000015 2109.5 ]\n", + " [ 89.50000013 4027.99999988]\n", + " [ 89.50000024 3669.59999981]\n", + " [ 89.50000003 3311.19999998]\n", + " [ 89.49999973 2952.80000012]\n", + " [ 89.49999991 2594.40000002]\n", + " [ 89.50000029 2235.99999997]\n", + " [2134.5 4154.50000026]\n", + " [2134.5 4154.50000026]\n", + " [ 89.50000019 2109.49999999]\n", + " [ 89.50000019 2109.49999999]\n", + " [2008. 4027.99999998]\n", + " [1649.6 4027.99999999]\n", + " [1291.19999989 4028.00000025]\n", + " [ 932.79999995 407 -24.42816844]\n", + " [-32.2700857 -19.05216893]\n", + " [-32.26780012 -13.67616941]\n", + " [-32.26551454 -8.3001699 ]\n", + " [-32.26322896 -2.92417038]\n", + " [-30.37796373 -31.70247449]\n", + " [-25.00196422 -31.70476008]\n", + " [-19.62596471 -31.70704565]\n", + " [-14.24996519 -31.70933123]\n", + " [ -8.87396568 -31.71161681]\n", + " [ -3.49796617 -31.71390239]\n", + " [-30.36492242 -1.02747727]\n", + " [-24.98892291 -1.02976285]\n", + " [-19.61292339 -1.03204842]\n", + " [-14.23692388 -1.034334 ]\n", + " [ -8.86092437 -1.03661958]\n", + " [ -3.48492485 -1.03890516]\n", + " [ -1.59965962 -29.81720927]\n", + " [ -1.59737405 -24.44120975]\n", + " [ -1.59508847 -19.06521024]\n", + " [ -1.59280289 -13.68921073]\n", + " [ -1.59051731 -8.31321121]\n", + " [ -1.58823174 -2.9372117 ]\n", + " [-32.27546357 -31.70166778]\n", + " [-32.27546357 -31.70166778]\n", + " [ -1.58742502 -1.03971187]\n", + " [ -1.58742502 -1.03971187]\n", + " [-30.37715702 -29.80497466]\n", + " [-25.00115751 -29.80726024]\n", + " [-19.625158 -29.80954582]\n", + " [-14.24915848 -29.8118314 ]\n", + " [ -8.87315897 -29.81411698]\n", + " [ -3.49715945 -29.81640256]\n", + " [-30.37487145 -24.42897515]\n", + " [-24.99887193 -24.43126073-0.00596558 0.99970614]\n", + " [-0.01025713 -0.19712185 0.98032534]\n", + " [-0.01034611 -0.16296958 0.98657685]\n", + " [-0.01041588 -0.1278801 0.99173494]\n", + " [-0.01046611 -0.09204872 0.9956995 ]\n", + " [-0.01049618 -0.05567473 0.99839379]\n", + " [-0.01050541 -0.01896706 0.99976492]\n", + " [-0.20597676 -0.2016167 0.95756163]\n", + " [-0.20597676 -0.2016167 0.95756163]\n", + " [-0.01050361 -0.0059719 0.999927 ]\n", + " [-0.01050361 -0.0059719 0.999927 ]\n", + " [-0.19540403 -0.19101701 0.96194063]\n", + " [-0.16239488 -0.19297429 0.96767186]\n", + " [-0.12843557 -0.19456158 0.97244542]\n", + " [-0.09372478 -0.19577312 0.97616011]\n", + " [-0.05846599 -0.19660523 0.97873802]\n", + " [-0.02286533 -0.1970549 0.98012578]\n", + " [-0.19733483 -0.15792497 0.96753226]\n", + " [-0.16399068 -0.15953875 0.97347545]\n", + " [-0.1296908 -0.16084786 0.97842131]\n", + " [-0.094636 -0.1618491 0.98226722]\n", + " [-0.05902974 -0.16253892 0.98493482]\n", + " [-0.02307851 -0.16291334 0.98637043]\n", + " [-0.19888634 -0.12390793 0.97215793]\n", + " [-0.16527244 -0.1251726 0.97827237]\n", + " [-0.13070023 -0.12620079 0.98335691]\n", + "e-01]\n", + " [ 1.31709121e-02 4.90792934e-01 8.71176689e-01]\n", + " [-2.08197786e-02 4.86147856e-01 8.73628524e-01]\n", + " [-5.55304459e-02 4.80738183e-01 8.75104090e-01]\n", + " [-9.07534936e-02 4.74567519e-01 8.75528111e-01]\n", + " [-1.26280291e-01 4.67648405e-01 8.74847562e-01]\n", + " [-1.61899095e-01 4.60004411e-01 8.73031858e-01]\n", + " [ 1.98088144e-02 4.60199007e-01 8.87594775e-01]\n", + " [-1.42616554e-02 4.55236296e-01 8.90256435e-01]\n", + " [-4.90635883e-02 4.49562553e-01 8.91900373e-01]\n", + " [-8.43909095e-02 4.43181837e-01 8.92450578e-01]\n", + " [-1.20035389e-01 4.36107684e-01 8.91852899e-01]\n", + " [-1.55784537e-01 4.28364856e-01 8.90075687e-01]\n", + " [ 2.63252355e-02 4.28787507e-01 9.03021736e-01]\n", + " [-7.75309333e-03 4.23503325e-01 9.05861371e-01]\n", + " [-4.25747118e-02 4.17564408e-01 9.07649359e-01]\n", + " [-7.79345179e-02 4.10976040e-01 9.08308816e-01]\n", + " [-1.13624684e-01 4.03753442e-01 9.07784440e-01]\n", + " [-1.49432486e-01 3.95923032e-01 9.06043534e-01]]\n", + "]\n", + " [-19.62287241 -24.43354631]\n", + " [-14.2468729 -24.43583188]\n", + " [ -8.87087339 DEBUG:root:radec2pix: lat: [77.93541901 79.53990642 81.17639652 82.83971343 84.5247522 86.22632371\n", + " 87.93883494 89.6479978 77.93541901 77.81390272 77.48107187 76.95718255\n", + " 76.27047293 75.45239232 74.53398915 73.54392335 89.6479978 88.15433501\n", + " 86.45486555 84.75631331 83.07112985 81.40595581 79.76638457 78.15778269\n", + " 73.54392335 74.55657104 75.50172983 76.35064507 77.07169654 77.63217256\n", + " 78.00180643 78.15778269 78.63066146 80.61929653 82.650836 84.71585314\n", + " 86.80474047 88.90593385 77.91466044 77.62156704 77.02994397 76.1887385\n", + " 75.15547704 73.98639339 89.08782254 87.03029774 84.94699254 82.88191704\n", + " 80.84778676 78.85482091 73.9956629 75.19522506 76.26518392 77.14846305\n", + " 77.78520091 78.12246539 77.9408027 77.9408027 78.1630712 78.1630712\n", + " 78.60257643 78.28825427 77.65661779 76.76410296 75.67504453 74.45024854\n", + " 80.58418271 80.19408276 79.42435182 78.36269898 77.09829541 75.70590081\n", + " 82.60493805 82.10218621 81.14204779 79.86827274 78.40301429 76.83279998\n", + " 84.65101194 83.96303088 828.00000008]\n", + " [ 574.3999998 4028.00000025]\n", + " [ 215.99999992 4028.00000008]\n", + " [2008.00000001 3669.59999984]\n", + " [1649.60000007 3669.59999979]\n", + " [1291.19999996 3669.60000008]\n", + " [ 932.80000004 3669.59999994]\n", + " [ 574.39999995 3669.60000006]\n", + " [ 216.00000005 3669.59999995]\n", + " [2007.99999998 3311.2000002 ]\n", + " [1649.59999994 3311.20000015]\n", + " [1291.20000016 3311.19999976]\n", + " [ 932.80000015 3311.19999985]\n", + " [ 574.40000019 3311.19999985]\n", + " [ 216.00000023 3311.19999985]\n", + " [2007.99999995 2952.80000031]\n", + " [1649.60000003 2952.79999994]\n", + " [1291.19999981 2952.80000019]\n", + " [ 932.79999986 2952.8000001 ]\n", + " [ 574.39999987 2952.80000007]\n", + " [ 216.00000004 2952.79999998]\n", + " [2007.99999998 2594.40000008]\n", + " [1649.60000021 2594.39999977]\n", + " [1291.19999986 2594.40000009]\n", + " [ 932.80000028 2594.39999988]\n", + " [ 574.39999984 2594.40000006]\n", + " [ 216.00000019 2594.39999995]\n", + " [2007.99999983 2236.00000022]\n", + " [1649.60000014 2235.99999995]\n", + " [1291.19999989 2236.00000002]\n", + " [ 932.80000032 2235.99999995]\n", + " [ 574.40000023 2235.99999997]\n", + " [ 216.00000006 2235.999992.73111849 81.1974567 79.51499711 77.7695032\n", + " 86.69730834 85.65959593 84.04717305 82.22861822 80.34304005 78.44927716\n", + " 88.6217931 86.8566554 84.8442257 82.80989579 80.79300228 78.81115773]\n", + "DEBUG:root:fitpix2pix: visCut: True\n", + "999]]\n", + "-24.43811746]\n", + " [ -3.49487388 -24.44040305]\n", + " [-30.37258587 -19.05297564]\n", + " [-24.99658635 -19.05526122]\n", + " [-19.62058684 -19.05754679]\n", + " [-14.24458732 -19.05983237]\n", + " [ -8.86858781 -19.06211795]\n", + " [ -3.4925883 -19.06440353]\n", + " [-30.37030029 -13.67697612]\n", + " [-24.99430077 -13.6792617 ]\n", + " [-19.61830126 -13.68154728]\n", + " [-14.24230175 -13.68383286]\n", + " [ -8.86630223 -13.68611844]\n", + " [ -3.49030272 -13.68840401]\n", + " [-30.36801471 -8.30097661]\n", + " [-24.9920152 -8.30326219]\n", + " [-19.61601568 -8.30554776]\n", + " [-14.24001617 -8.30783335]\n", + " [ -8.86401666 -8.31011893]\n", + " [ -3.48801714 -8.3124045 ]\n", + " [-30.36572914 -2.9249771 ]\n", + " [-24.98972962 -2.92726267]\n", + " [-19.6137301 -2.92954825]\n", + " [-14.23773059 -2.93183383]\n", + " [ -8.86173108 -2.93411941]\n", + " [ -3.48573156 -2.93640499]]\n", + " [-0.09537003 -0.12699006 0.9873085 ]\n", + " [-0.05948408 -0.12753631 0.99004855]\n", + " [-0.02324907 -0.1278347 0.99152295]\n", + " [-0.20005292 -0.089165 0.97571944]\n", + " [-0.16623701 -0.090077 0.98196303]\n", + " [-0.13146138 -0.09082101 0.98715219]\n", + " [-0.09592455 -0.09139481 0.99118387]\n", + " [-0.05982716 -0.09179425 0.99397914]\n", + " [-0.0233762 -0.09201449 0.99548324]\n", + " [-0.20083104 -0.05389991 0.97814196]\n", + " [-0.16688094 -0.05445583 0.9844721 ]\n", + " [-0.13197015 -0.05491134 0.98973159]\n", + " [-0.09629527 -0.05526476 0.9938174 ]\n", + " [-0.0600556 -0.0555129 0.99665021]\n", + " [-0.02345845 -0.05565213 0.9981746 ]\n", + " [-0.20121796 -0.018319 0.97937518]\n", + " [-0.16720058 -0.01851594 0.98574902]\n", + " [-0.13222195 -0.01867909 0.99104412]\n", + " [-0.09647752 -0.01880776 0.99515745]\n", + " [-0.06016577 -0.01890068 0.99800944]\n", + " [-0.02349426 -0.01895646 0.99954423]]\n", + "DEBUG:root:radec2pix: curVec Shape: (96, 3)\n", + "DEBUG:root:fitpix2pix: ccdpx: shape: (96, 2)\n", + "DEBUG:root:make_az_asym: xyp: shape: (96, 2)\n", + "DEBUG:root:fitpix2pix: visCut: True\n", + "DEBUG:root:radec2pix: xyfp: [[32.31363499 31.47041645]\n", + " [32.3144687 27.08398795]\n", + " [32.31530242 22.69755946]\n", + " [32.31613613 18.31113097]\n", + " [32.31696984 13.92470248]\n", + " [32.31780355 9.53827398]\n", + " [32.31863726 5.15184549]\n", + " [32.31947097 0.765417 ]\n", + " [32.31363499 31.47041645]\n", + " [27.9272065 31.46958273]\n", + " [23.540778 31.46874902]\n", + " [19.15434951 31.46791531]\n", + " [14.76792102 31.4670816 ]\n", + " [10.38149253 31.46624788]\n", + " [ 5.99506403 31.46541417]\n", + " [ 1.60863554 31.46458045]\n", + " [32.31947097 0.765417 ]\n", + " [27.93304248 0.76458329]\n", + " [23.54661399 0.76374957]\n", + " [19.1601855 0.76291586]\n", + " [14.77375701 0.76208215]\n", + " [10.38732851 0.76124844]\n", + " [ 6.00090002 0.76041472]\n", + " [ 1.61447153 0.75958101]\n", + " [ 1.60863554 31.46458045]\n", + " [ 1.60946926 27.07815197]\n", + " [ 1.61030297 22.69172348]\n", + " [ 1.61113668 18.30529498]\n", + " [ 1.61197039 13.91886648]\n", + " [ 1.6128041 9.53243799]\n", + " [ 1.61363782 5.1460095 ]\n", + " [ 1.61447153 0.75958101]\n", + " [32.29899849 29.55791363]\n", + " [32.30002028 24.18191372]\n", + " [32.30104209 18.80591382]\n", + " [32.30206388 13.42991392]\n", + " [32.30308568 8.05391402]\n", + " [32.30410748 2.67791411]\n", + " [30.40113787 31.45505294]\n", + " [25.02513797 31.45403115]\n", + " [19.64913807 31.45300935]\n", + " [14.27313817 31.45198755]\n", + " [ 8.89713826 31.45096576]\n", + " [ 3.52113836 31.44994396]\n", + " [30.40696816 0.7800535 ]\n", + " [25.03096826 0.7790317 ]\n", + " [19.65496836 0.7780099 ]\n", + " [14.27896845 0.77698811]\n", + " [ 8.90296855 0.77596631]\n", + " [ 3.52696865 0.77494451]\n", + " [ 1.62399904 29.55208334]\n", + " [ 1.62502084 24.17608344]\n", + " [ 1.62604264 18.80008353]\n", + " [ 1.62706443 13.42408364]\n", + " [ 1.62808623 8.04808373]\n", + " [ 1.62910803 2.67208383]\n", + " [32.29863784 31.4554136 ]\n", + " [32.29863784 31.4554136 ]\n", + " [ 1.62946868 0.77458386]\n", + " [ 1.62946868 0.77458386]\n", + " [30.40149852 29.55755297]\n", + " [25.02549862 29.55653118]\n", + " [19.64949872 29.55550938]\n", + " [14.27349882 29.55448759]\n", + " [ 8.89749891 29.55346579]\n", + " [ 3.52149901 29.55244399]\n", + " [30.40252032 24.18155307]\n", + " [25.02652042 24.18053128]\n", + " [19.65052052 24.17950948]\n", + " [14.27452061 24.17848769]\n", + " [ 8.89852071 24.17746589]\n", + " [ 3.52252081 24.17644409]\n", + " [30.40354212 18.80555317]\n", + " [25.02754221 18.80453137]\n", + " [19.65154231 18.80350958]\n", + " [14.27554241 18.80248779]\n", + " [ 8.89954251 18.80146598]\n", + " [ 3.5235426 18.80044419]\n", + " [30.40456392 13.42955327]\n", + " [25.02856401 13.42853147]\n", + " [19.65256411 13.42750967]\n", + " [14.27656421 13.42648788]\n", + " [ 8.9005643 13.42546608]\n", + " [ 3.5245644 13.42444429]\n", + " [30.40558571 8.05355336]\n", + " [25.02958581 8.05253157]\n", + " [19.6535859 8.05150977]\n", + " [14.277586 8.05048797]\n", + " [ 8.9015861 8.04946618]\n", + " [ 3.5255862 8.04844438]\n", + " [30.40660751 2.67755346]\n", + " [25.0306076 2.67653166]\n", + " [19.6546077 2.67550987]\n", + " [14.2786078 2.67448807]\n", + " [ 8.90260789 2.67346627]\n", + " [ 3.52660799 2.67244448]]\n", + "DEBUG:root:radec2pix: xyfp Shape: (96, 2)\n", + "DEBUG:root:radec2pix: lng: [224.38740491 220.12408621 215.2503637 209.71210534 203.48918374\n", + " 196.62002098 189.22355762 181.5046646 224.38740491 228.56999572\n", + " 233.3693139 238.84884696 245.04132431 251.92249978 259.38507008\n", + " 267.22753799 181.5046646 181.74464663 182.07430544 182.55541483\n", + " 183.32331288 184.74247093 188.24144189 209.436015 267.22753799\n", + " 266.78398778 266.170335 265.26578644 263.80029466 261.02373287\n", + " 253.83681058 209.436015 222.61267508 216.98461546 210.38276245\n", + " 202.75476399 194.17390418 184.89586052 226.12630502 231.65859743\n", + " 238.18310357 245.77405246 254.38382437 263.77502084 181.62909594\n", + " 181.98420755 182.53422407 183.50001953 185.63706132 194.24647314\n", + " 267.02133208 266.36745836 265.3435183 263.51322198 259.32352397\n", + " 241.01895217 224.38712569 224.38712569 209.62070535 209.62070535\n", + " 224.34955164 229.91816922 236.57007702 244.41761198 253.43870278\n", + " 263.38126527 218.66991645 224.21163124 231.12094806 239.6844282\n", + " 250.04034734 261.9370562 211.92326671 217.13924206 223.99660639\n", + " 233.09330633 244.99523074 259.69237756 204.0228705 208.45144372\n", + " 214.63892612 223.61475061 236.90559041 255.7456151 195.0232601\n", + " 198.0723045 202.59166286 209.85191686 222.74900651 247.14363581\n", + " 185.201902 186.31923819 188.04100537 191.03114261 197.43976942\n", + " 218.89848666]\n", + "DEBUG:root:radec2pix: lat: [73.24108038 74.22539246 75.14065481 75.95980834 76.6531185 77.19018187\n", + " 77.5432879 77.69182998 73.24108038 74.24861044 75.19133398 76.04212851\n", + " 76.77071823 77.34548632 77.73675519 77.92139244 77.69182998 79.29098794\n", + " 80.92271511 82.58149911 84.2618841 85.95783408 87.66008742 89.3157252\n", + " 77.92139244 79.52414159 81.15801466 82.81709844 84.49494889 86.18266378\n", + " 87.85870936 89.3157252 73.68081786 74.84436919 75.87765867 76.72697854\n", + " 77.33670031 77.65849826 73.69035695 74.88520803 75.9561532 76.84869716\n", + " 77.50496612 77.87275428 78.38454537 80.36704866 82.39295371 84.45217978\n", + " 86.53330534 88.61095022 78.61571107 80.60164359 82.62842612 84.684393\n", + " 86.75213987 88.75761015 73.24806584 73.24806584 89.30770045 89.30770045\n", + " 74.1417384 75.39152116 76.51854281 77.46407515 78.16380788 78.55793051\n", + " 75.35984123 76.77406669 78.07566348 79.19387762 80.04201199 80.52949342\n", + " 76.4480688 78.03443361 79.53211824 80.86193095 81.91012885 82.53435821\n", + " 77.34827857 79.10130772 80.80570953 82.38629346 83.70950064 84.55228195\n", + " 77.99844552 79.88985033 81.78208758 83.62548455 85.30897599 86.53756064\n", + " 78.34312947 80.31550148 82.32609465 84.35907996 86.38425999 88.27008044]\n", + "DEBUG:root:radec2pix: camVec: [[0.20582147 0.20765008 0.20920683 0.21049219 0.21150557 0.2122456\n", + " 0.21271065 0.21289938 0.20582147 0.17940403 0.15227891 0.12455745\n", + " 0.09635017 0.06776763 0.03892112 0.00992292 0.21289938 0.18554193\n", + " 0.15747589 0.1288054 0.09963586 0.07007602 0.04023879 0.01024104\n", + " 0.00992292 0.01000636 0.01007758 0.01013637 0.01018243 0.01021541\n", + " 0.01023502 0.01024104 0.20656285 0.20862007 0.2102697 0.2115111\n", + " 0.21234181 0.21275892 0.19440388 0.16153549 0.12771486 0.09314577\n", + " 0.05803185 0.02257838 0.20106508 0.16704611 0.13206625 0.09631893\n", + " 0.06000442 0.02333228 0.01006049 0.01015553 0.01023184 0.01028888\n", + " 0.01032605 0.01034279 0.20573918 0.20573918 0.01034376 0.01034376\n", + " 0.19517916 0.16217419 0.12821715 0.09351091 0.05825864 0.02266572\n", + " 0.19711638 0.16377271 0.12947641 0.09442771 0.05882858 0.02288505\n", + " 0.19867107 0.16505894 0.13049231 0.09516891 0.05928988 0.02306224\n", + " 0.19984199 0.16603002 0.13126104 0.09573072 0.0596397 0.02319607\n", + " 0.20062602 0.16668139 0.13177743 0.09610838 0.05987462 0.02328514\n", + " 0.20101976 0.1670086 0.13203673 0.09629765 0.05999164 0.02332821]\n", + " [0.20164691 0.17515749 0.1479768 0.12021614 0.09198614 0.06339752\n", + " 0.03456171 0.00559103 0.20164691 0.2034844 0.20505578 0.20636157\n", + " 0.2074012 0.20817322 0.20867589 0.20890768 0.00559103 0.00564441\n", + " 0.00569099 0.00573063 0.00576317 0.00578837 0.00580605 0.00581605\n", + " 0.20890768 0.18144072 0.15328055 0.12453134 0.09529889 0.06569253\n", + " 0.0358258 0.00581605 0.19019593 0.15725033 0.12337711 0.08878017\n", + " 0.0536634 0.01823232 0.20239118 0.20446311 0.20613616 0.2074097\n", + " 0.20828117 0.20874739 0.00571471 0.00577657 0.00582791 0.00586841\n", + " 0.00589767 0.00591534 0.19702358 0.16288078 0.12780019 0.0919758\n", + " 0.05560896 0.01891032 0.20156436 0.20156436 0.00591876 0.00591876\n", + " 0.19097333 0.19292238 0.19449762 0.19569785 0.19651986 0.19695996\n", + " 0.15788822 0.15949023 0.1607887 0.16178086 0.16246211 0.16282774\n", + " 0.12387558 0.1251298 0.12614936 0.12693065 0.1274685 0.12775798\n", + " 0.08913848 0.09004163 0.09077781 0.09134344 0.09173387 0.09194479\n", + " 0.0538804 0.0544282 0.05487585 0.05522072 0.05545959 0.05558951\n", + " 0.018307 0.01849597 0.01865108 0.01877134 0.01885557 0.01890269]\n", + " [0.95758866 0.96239353 0.96661025 0.97017582 0.97303851 0.97515771\n", + " 0.9765038 0.97705813 0.95758866 0.96250106 0.96683156 0.9705155\n", + " 0.97349956 0.97574149 0.97721007 0.97788502 0.97705813 0.98262014\n", + " 0.98750643 0.99165333 0.99500728 0.99752486 0.99917322 0.99993064\n", + " 0.97788502 0.98335097 0.98813132 0.9921639 0.99539662 0.99778762\n", + " 0.99930564 0.99993064 0.9597694 0.96527198 0.96982717 0.97333506\n", + " 0.97572086 0.97693461 0.95981506 0.96545384 0.97015298 0.97380957\n", + " 0.97634587 0.97770893 0.97956122 0.98593216 0.99122376 0.99533322\n", + " 0.99818069 0.99971026 0.98034713 0.98659349 0.99174716 0.99570809\n", + " 0.99839923 0.99976769 0.95762372 0.95762372 0.99992898 0.99992898\n", + " 0.96199495 0.96771922 0.97248704 0.97619571 0.97876753 0.9801495\n", + " 0.96758278 0.97352009 0.97845943 0.98229851 0.98495952 0.98638907\n", + " 0.97220607 0.9783139 0.98339112 0.98733555 0.99006893 0.99153721\n", + " 0.97576509 0.98200129 0.98718283 0.99120735 0.99399598 0.9954939\n", + " 0.97818511 0.98450743 0.98975924 0.99383794 0.99666407 0.99818215\n", + " 0.97941611 0.98578194 0.99106934 0.99517556 0.99802078 0.99954914]]\n", + "DEBUG:root:radec2pix: camVec Shape: (3, 96)\n", + "DEBUG:root:mm_to_pix: fitpx: [[0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]]\n", + "DEBUG:root:mm_to_pix: fitpx.shape: (96, 2)\n", + "DEBUG:root:radec2pix: xyfp: [[-32.29046994 -31.71666141]\n", + " [-32.28860507 -27.33023323]\n", + " [-32.2867402 -22.94380505]\n", + " [-32.28487534 -18.55737688]\n", + " [-32.28301047 -14.1709487 ]\n", + " [-32.2811456 -9.78452053]\n", + " [-32.27928073 -5.39809235]\n", + " [-32.27741587 -1.01166418]\n", + " [-32.29046994 -31.71666141]\n", + " [-27.90404176 -31.71852627]\n", + " [-23.51761359 -31.72039114]\n", + " [-19.13118541 -31.722256 ]\n", + " [-14.74475724 -31.72412087]\n", + " [-10.35832906 -31.72598574]\n", + " [ -5.97190089 -31.72785061]\n", + " [ -1.58547272 -31.72971547]\n", + " [-32.27741587 -1.01166418]\n", + " [-27.8909877 -1.01352905]\n", + " [-23.50455952 -1.01539391]\n", + " [-19.11813134 -1.01725878]\n", + " [-14.73170317 -1.01912365]\n", + " [-10.345275 -1.02098851]\n", + " [ -5.95884682 -1.02285338]\n", + " [ -1.57241864 -1.02471825]\n", + " [ -1.58547272 -31.72971547]\n", + " [ -1.58360785 -27.3432873 ]\n", + " [ -1.58174298 -22.95685912]\n", + " [ -1.57987811 -18.57043094]\n", + " [ -1.57801325 -14.18400278]\n", + " [ -1.57614838 -9.7975746 ]\n", + " [ -1.57428351 -5.41114642]\n", + " [ -1.57241864 -1.02471825]\n", + " [-32.27465685 -29.80416795]\n", + " [-32.27237127 -24.42816844]\n", + " [-32.2700857 -19.05216893]\n", + " [-32.26780012 -13.67616941]\n", + " [-32.26551454 -8.3001699 ]\n", + " [-32.26322896 -2.92417038]\n", + " [-30.37796373 -31.70247449]\n", + " [-25.00196422 -31.70476008]\n", + " [-19.62596471 -31.70704565]\n", + " [-14.24996519 -31.70933123]\n", + " [ -8.87396568 -31.71161681]\n", + " [ -3.49796617 -31.71390239]\n", + " [-30.36492242 -1.02747727]\n", + " [-24.98892291 -1.02976285]\n", + " [-19.61292339 -1.03204842]\n", + " [-14.23692388 -1.034334 ]\n", + " [ -8.86092437 -1.03661958]\n", + " [ -3.48492485 -1.03890516]\n", + " [ -1.59965962 -29.81720927]\n", + " [ -1.59737405 -24.44120975]\n", + " [ -1.59508847 -19.06521024]\n", + " [ -1.59280289 -13.68921073]\n", + " [ -1.59051731 -8.31321121]\n", + " [ -1.58823174 -2.9372117 ]\n", + " [-32.27546357 -31.70166778]\n", + " [-32.27546357 -31.70166778]\n", + " [ -1.58742502 -1.03971187]\n", + " [ -1.58742502 -1.03971187]\n", + " [-30.37715702 -29.80497466]\n", + " [-25.00115751 -29.80726024]\n", + " [-19.625158 -29.80954582]\n", + " [-14.24915848 -29.8118314 ]\n", + " [ -8.87315897 -29.81411698]\n", + " [ -3.49715945 -29.81640256]\n", + " [-30.37487145 -24.42897515]\n", + " [-24.99887193 -24.43126073]\n", + " [-19.62287241 -24.43354631]\n", + " [-14.2468729 -24.43583188]\n", + " [ -8.87087339 -24.43811746]\n", + " [ -3.49487388 -24.44040305]\n", + " [-30.37258587 -19.05297564]\n", + " [-24.99658635 -19.05526122]\n", + " [-19.62058684 -19.05754679]\n", + " [-14.24458732 -19.05983237]\n", + " [ -8.86858781 -19.06211795]\n", + " [ -3.4925883 -19.06440353]\n", + " [-30.37030029 -13.67697612]\n", + " [-24.99430077 -13.6792617 ]\n", + " [-19.61830126 -13.68154728]\n", + " [-14.24230175 -13.68383286]\n", + " [ -8.86630223 -13.68611844]\n", + " [ -3.49030272 -13.68840401]\n", + " [-30.36801471 -8.30097661]\n", + " [-24.9920152 -8.30326219]\n", + " [-19.61601568 -8.30554776]\n", + " [-14.24001617 -8.30783335]\n", + " [ -8.86401666 -8.31011893]\n", + " [ -3.48801714 -8.3124045 ]\n", + " [-30.36572914 -2.9249771 ]\n", + " [-24.98972962 -2.92726267]\n", + " [-19.6137301 -2.92954825]\n", + " [-14.23773059 -2.93183383]\n", + " [ -8.86173108 -2.93411941]\n", + " [ -3.48573156 -2.93640499]]\n", + "DEBUG:root:radec2pix: xyfp Shape: (96, 2)\n", + "DEBUG:root:optics_fp: rtanth: [31.57034978 27.18406789 22.79784246 18.41171382 14.02577275 9.64027533\n", + " 5.25633205 0.89702627 31.57034978 31.90657516 32.83068082 34.29517719\n", + " 36.2346004 38.57738799 41.25487818 44.20629586 0.89702627 4.70608217\n", + " 9.05379887 13.42672148 17.80628925 22.18856766 26.57221564 30.95665138\n", + " 44.20629586 41.18838618 38.43502607 36.00695508 33.97398873 32.41056182\n", + " 31.38691822 30.95665138 29.65803336 24.28227528 18.90665475 13.53133577\n", + " 8.15691443 2.78858575 31.62774376 32.44001712 34.0910252 36.46702674\n", + " 39.4372011 42.87825061 2.32483604 7.57927428 12.93401278 18.30122199\n", + " 23.67242106 29.04539658 42.85058957 39.32178756 36.24963004 33.75901556\n", + " 31.98608036 31.05398999 31.55546766 31.55546766 30.94207994 30.94207994\n", + " 29.73492188 30.59748544 32.34268701 34.83813202 37.93605456 41.50175634\n", + " 24.3761262 25.42117355 27.49689714 30.39285101 33.89947174 37.84740055\n", + " 19.02703944 20.34867971 22.88912523 26.29749216 30.28212156 34.64474606\n", + " 13.69903951 15.48238416 18.69618965 22.7418897 27.2514649 32.02957826\n", + " 8.4321936 11.09695565 15.26386952 20.01578758 25.02160156 30.1551337\n", + " 3.51323872 8.02392562 13.19949508 18.48980017 23.81851176 29.16458548]\n", + "DEBUG:root:radec2pix: xyfp: [[32.31363499 31.47041645]\n", + " [32.3144687 27.08398795]\n", + " [32.31530242 22.69755946]\n", + " [32.31613613 18.31113097]\n", + " [32.31696984 13.92470248]\n", + " [32.31780355 9.53827398]\n", + " [32.31863726 5.15184549]\n", + " [32.31947097 0.765417 ]\n", + " [32.31363499 31.47041645]\n", + " [27.9272065 31.46958273]\n", + " [23.540778 31.46874902]\n", + " [19.15434951 31.46791531]\n", + " [14.76792102 31.4670816 ]\n", + " [10.38149253 31.46624788]\n", + " [ 5.99506403 31.46541417]\n", + " [ 1.60863554 31.46458045]\n", + " [32.31947097 0.765417 ]\n", + " [27.93304248 0.76458329]\n", + " [23.54661399 0.76374957]\n", + " [19.1601855 0.76291586]\n", + " [14.77375701 0.76208215]\n", + " [10.38732851 0.76124844]\n", + " [ 6.00090002 0.76041472]\n", + " [ 1.61447153 0.75958101]\n", + " [ 1.60863554 31.46458045]\n", + " [ 1.60946926 27.07815197]\n", + " [ 1.61030297 22.69172348]\n", + " [ 1.61113668 18.30529498]\n", + " [ 1.61197039 13.91886648]\n", + " [ 1.6128041 9.53243799]\n", + " [ 1.61363782 5.1460095 ]\n", + " [ 1.61447153 0.75958101]\n", + " [32.29899849 29.55791363]\n", + " [32.30002028 24.18191372]\n", + " [32.30104209 18.80591382]\n", + " [32.30206388 13.42991392]\n", + " [32.30308568 8.05391402]\n", + " [32.30410748 2.67791411]\n", + " [30.40113787 31.45505294]\n", + " [25.02513797 31.45403115]\n", + " [19.64913807 31.45300935]\n", + " [14.27313817 31.45198755]\n", + " [ 8.89713826 31.45096576]\n", + " [ 3.52113836 31.44994396]\n", + " [30.40696816 0.7800535 ]\n", + " [25.03096826 0.7790317 ]\n", + " [19.65496836 0.7780099 ]\n", + " [14.27896845 0.77698811]\n", + " [ 8.90296855 0.77596631]\n", + " [ 3.52696865 0.77494451]\n", + " [ 1.62399904 29.55208334]\n", + " [ 1.62502084 24.17608344]\n", + " [ 1.62604264 18.80008353]\n", + " [ 1.62706443 13.42408364]\n", + " [ 1.62808623 8.04808373]\n", + " [ 1.62910803 2.67208383]\n", + " [32.29863784 31.4554136 ]\n", + " [32.29863784 31.4554136 ]\n", + " [ 1.62946868 0.77458386]\n", + " [ 1.62946868 0.77458386]\n", + " [30.40149852 29.55755297]\n", + " [25.02549862 29.55653118]\n", + " [19.64949872 29.55550938]\n", + " [14.27349882 29.55448759]\n", + " [ 8.89749891 29.55346579]\n", + " [ 3.52149901 29.55244399]\n", + " [30.40252032 24.18155307]\n", + " [25.02652042 24.18053128]\n", + " [19.65052052 24.17950948]\n", + " [14.27452061 24.17848769]\n", + " [ 8.89852071 24.17746589]\n", + " [ 3.52252081 24.17644409]\n", + " [30.40354212 18.80555317]\n", + " [25.02754221 18.80453137]\n", + " [19.65154231 18.80350958]\n", + " [14.27554241 18.80248779]\n", + " [ 8.89954251 18.80146598]\n", + " [ 3.5235426 18.80044419]\n", + " [30.40456392 13.42955327]\n", + " [25.02856401 13.42853147]\n", + " [19.65256411 13.42750967]\n", + " [14.27656421 13.42648788]\n", + " [ 8.9005643 13.42546608]\n", + " [ 3.5245644 13.42444429]\n", + " [30.40558571 8.05355336]\n", + " [25.02958581 8.05253157]\n", + " [19.6535859 8.05150977]\n", + " [14.277586 8.05048797]\n", + " [ 8.9015861 8.04946618]\n", + " [ 3.5255862 8.04844438]\n", + " [30.40660751 2.67755346]\n", + " [25.0306076 2.67653166]\n", + " [19.6546077 2.67550987]\n", + " [14.2786078 2.67448807]\n", + " [ 8.90260789 2.67346627]\n", + " [ 3.52660799 2.67244448]]\n", + "DEBUG:root:optics_fp: cphi: [-0.00747594 -0.00870042 -0.01039606 -0.01289954 -0.01696858 -0.02473916\n", + " -0.04546654 -0.26697332 -0.00747594 -0.14487442 -0.27440415 -0.39058855\n", + " -0.49073902 -0.57464131 -0.6436715 -0.69992333 -0.26697332 -0.98296427\n", + " -0.99542074 -0.99791805 -0.99881542 -0.99923641 -0.99946703 -0.99960689\n", + " -0.69992333 -0.75121935 -0.80504713 -0.85934793 -0.91078494 -0.95473483\n", + " -0.98588803 -0.99960689 -0.00847102 -0.01037136 -0.01335227 -0.01870128\n", + " -0.03109752 -0.0911811 -0.06793149 -0.23195178 -0.37841395 -0.50117932\n", + " -0.59975148 -0.67699869 -0.92564824 -0.99323234 -0.99767802 -0.99883933\n", + " -0.99930549 -0.99953809 -0.72172248 -0.78650646 -0.85317965 -0.91614203\n", + " -0.96694122 -0.99598364 -0.00795487 -0.00795487 -0.9995928 -0.9995928\n", + " -0.07226297 -0.24592654 -0.39887637 -0.52461865 -0.62348955 -0.69945795\n", + " -0.08817399 -0.29602647 -0.46919258 -0.60136972 -0.69774952 -0.76701014\n", + " -0.11299429 -0.36984939 -0.56367146 -0.69504524 -0.7811192 -0.83793215\n", + " -0.1569857 -0.48613658 -0.69011673 -0.80373942 -0.86801033 -0.90636701\n", + " -0.25511271 -0.67830854 -0.84534002 -0.91323709 -0.94538951 -0.96272694\n", + " -0.6124737 -0.93816501 -0.97759544 -0.98864055 -0.99316726 -0.99544587]\n", + "DEBUG:root:cartToSphere: vec: [[0.20582147 0.20164691 0.95758866]\n", + " [0.20765008 0.17515749 0.96239353]\n", + " [0.20920683 0.1479768 0.96661025]\n", + " [0.21049219 0.12021614 0.97017582]\n", + " [0.21150557 0.09198614 0.97303851]\n", + " [0.2122456 0.06339752 0.97515771]\n", + " [0.21271065 0.03456171 0.9765038 ]\n", + " [0.21289938 0.00559103 0.97705813]\n", + " [0.20582147 0.20164691 0.95758866]\n", + " [0.17940403 0.2034844 0.96250106]\n", + " [0.15227891 0.20505578 0.96683156]\n", + " [0.12455745 0.20636157 0.9705155 ]\n", + " [0.09635017 0.2074012 0.97349956]\n", + " [0.06776763 0.20817322 0.97574149]\n", + " [0.03892112 0.20867589 0.97721007]\n", + " [0.00992292 0.20890768 0.97788502]\n", + " [0.21289938 0.00559103 0.97705813]\n", + " [0.18554193 0.00564441 0.98262014]\n", + " [0.15747589 0.00569099 0.98750643]\n", + " [0.1288054 0.00573063 0.99165333]\n", + " [0.09963586 0.00576317 0.99500728]\n", + " [0.07007602 0.00578837 0.99752486]\n", + " [0.04023879 0.00580605 0.99917322]\n", + " [0.01024104 0.00581605 0.99993064]\n", + " [0.00992292 0.20890768 0.97788502]\n", + " [0.01000636 0.18144072 0.98335097]\n", + " [0.01007758 0.15328055 0.98813132]\n", + " [0.01013637 0.12453134 0.9921639 ]\n", + " [0.01018243 0.09529889 0.99539662]\n", + " [0.01021541 0.06569253 0.99778762]\n", + " [0.01023502 0.0358258 0.99930564]\n", + " [0.01024104 0.00581605 0.99993064]\n", + " [0.20656285 0.19019593 0.9597694 ]\n", + " [0.20862007 0.15725033 0.96527198]\n", + " [0.2102697 0.12337711 0.96982717]\n", + " [0.2115111 0.08878017 0.97333506]\n", + " [0.21234181 0.0536634 0.97572086]\n", + " [0.21275892 0.01823232 0.97693461]\n", + " [0.19440388 0.20239118 0.95981506]\n", + " [0.16153549 0.20446311 0.96545384]\n", + " [0.12771486 0.20613616 0.97015298]\n", + " [0.09314577 0.2074097 0.97380957]\n", + " [0.05803185 0.20828117 0.97634587]\n", + " [0.02257838 0.20874739 0.97770893]\n", + " [0.20106508 0.00571471 0.97956122]\n", + " [0.16704611 0.00577657 0.98593216]\n", + " [0.13206625 0.00582791 0.99122376]\n", + " [0.09631893 0.00586841 0.99533322]\n", + " [0.06000442 0.00589767 0.99818069]\n", + " [0.02333228 0.00591534 0.99971026]\n", + " [0.01006049 0.19702358 0.98034713]\n", + " [0.01015553 0.16288078 0.98659349]\n", + " [0.01023184 0.12780019 0.99174716]\n", + " [0.01028888 0.0919758 0.99570809]\n", + " [0.01032605 0.05560896 0.99839923]\n", + " [0.01034279 0.01891032 0.99976769]\n", + " [0.20573918 0.20156436 0.95762372]\n", + " [0.20573918 0.20156436 0.95762372]\n", + " [0.01034376 0.00591876 0.99992898]\n", + " [0.01034376 0.00591876 0.99992898]\n", + " [0.19517916 0.19097333 0.96199495]\n", + " [0.16217419 0.19292238 0.96771922]\n", + " [0.12821715 0.19449762 0.97248704]\n", + " [0.09351091 0.19569785 0.97619571]\n", + " [0.05825864 0.19651986 0.97876753]\n", + " [0.02266572 0.19695996 0.9801495 ]\n", + " [0.19711638 0.15788822 0.96758278]\n", + " [0.16377271 0.15949023 0.97352009]\n", + " [0.12947641 0.1607887 0.97845943]\n", + " [0.09442771 0.16178086 0.98229851]\n", + " [0.05882858 0.16246211 0.98495952]\n", + " [0.02288505 0.16282774 0.98638907]\n", + " [0.19867107 0.12387558 0.97220607]\n", + " [0.16505894 0.1251298 0.9783139 ]\n", + " [0.13049231 0.12614936 0.98339112]\n", + " [0.09516891 0.12693065 0.98733555]\n", + " [0.05928988 0.1274685 0.99006893]\n", + " [0.02306224 0.12775798 0.99153721]\n", + " [0.19984199 0.08913848 0.97576509]\n", + " [0.16603002 0.09004163 0.98200129]\n", + " [0.13126104 0.09077781 0.98718283]\n", + " [0.09573072 0.09134344 0.99120735]\n", + " [0.0596397 0.09173387 0.99399598]\n", + " [0.02319607 0.09194479 0.9954939 ]\n", + " [0.20062602 0.0538804 0.97818511]\n", + " [0.16668139 0.0544282 0.98450743]\n", + " [0.13177743 0.05487585 0.98975924]\n", + " [0.09610838 0.05522072 0.99383794]\n", + " [0.05987462 0.05545959 0.99666407]\n", + " [0.02328514 0.05558951 0.99818215]\n", + " [0.20101976 0.018307 0.97941611]\n", + " [0.1670086 0.01849597 0.98578194]\n", + " [0.13203673 0.01865108 0.99106934]\n", + " [0.09629765 0.01877134 0.99517556]\n", + " [0.05999164 0.01885557 0.99802078]\n", + " [0.02332821 0.01890269 0.99954914]]\n", + "DEBUG:root:mm_to_pix: fitpx: [[0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]]\n", + "DEBUG:root:mm_to_pix: fitpx.shape: (96, 2)\n", + "DEBUG:root:optics_fp: sphi: [0.99997205 0.99996215 0.99994596 0.9999168 0.99985602 0.99969394\n", + " 0.99896586 0.96370392 0.99997205 0.98945005 0.96161446 0.92056536\n", + " 0.87130661 0.81840538 0.7653019 0.71421799 0.96370392 0.18379675\n", + " 0.09559053 0.0644947 0.04865962 0.03907157 0.03264451 0.02803701\n", + " 0.71421799 0.66005264 0.59321085 0.51139137 0.41288109 0.29745825\n", + " 0.16740606 0.02803701 0.99996412 0.99994622 0.99991085 0.99982512\n", + " 0.99951636 0.99583433 0.99768999 0.97272729 0.92563647 0.86534345\n", + " 0.80018633 0.73598422 0.37838518 0.11614437 0.06810698 0.04816635\n", + " 0.03726317 0.03039091 0.69218254 0.61758205 0.52161719 0.40085381\n", + " 0.25499936 0.08953536 0.99996836 0.99996836 0.02853493 0.02853493\n", + " 0.99738561 0.96928847 0.91700471 0.85133735 0.78183168 0.71467375\n", + " 0.99610509 0.95517974 0.88309587 0.79897088 0.71634182 0.64163497\n", + " 0.99359564 0.92909172 0.82599908 0.71896601 0.62438193 0.54577441\n", + " 0.98760088 0.87388285 0.72369807 0.59498147 0.49654613 0.42249123\n", + " 0.96691132 0.7347772 0.53422865 0.40742853 0.32594274 0.27047521\n", + " 0.79049097 0.3461884 0.21049264 0.15029925 0.11669955 0.09532849]\n", + "DEBUG:root:optics_fp: rtanth: [45.10526614 42.15252235 39.46728719 37.10767964 35.13935868 33.63109692\n", + " 32.64672024 32.23425998 45.10526614 42.08371704 39.32015966 36.87264817\n", + " 34.80791464 33.1974573 32.10970154 31.5986741 32.23425998 27.84962696\n", + " 23.46566508 19.08283694 14.70215645 10.32635724 5.96618932 1.74318313\n", + " 31.5986741 27.21812469 22.83983208 18.46540167 14.09842896 9.748941\n", + " 5.45889306 1.74318313 43.77728663 40.33061683 37.34259278 34.93111177\n", + " 33.22196043 32.3267303 43.74864122 40.21129183 37.11812392 34.58850978\n", + " 32.75328451 31.73315358 30.32290674 24.94961031 19.57779834 14.20915457\n", + " 8.84944693 3.53950567 29.68929466 24.32204857 18.9597634 13.60830488\n", + " 8.2886698 3.16557807 45.08405409 45.08405409 1.76362955 1.76362955\n", + " 42.40073703 38.740507 35.51948783 32.86706408 30.92986484 29.84747775\n", + " 38.83207862 34.7984872 31.1727741 28.11319496 25.82178089 24.5148885\n", + " 35.71891532 31.28650338 27.19655174 23.62757526 20.84885967 19.20651814\n", + " 33.18967076 28.36474267 23.77742123 19.59529652 16.13655116 13.95004204\n", + " 31.3858301 26.23117825 21.1868319 16.35517444 11.99601471 8.83853824\n", + " 30.43664187 25.08771711 19.753498 14.45027919 9.23164159 4.4089223 ]\n", + "DEBUG:root:radec2pix: lng: [44.41301872 40.14838159 35.2726464 29.73151826 23.50476184 16.63082675\n", + " 9.22889701 1.50432057 44.41301872 48.59866885 53.40161123 58.88530587\n", + " 65.08233359 71.96812796 79.43489015 87.28054707 1.50432057 1.74246974\n", + " 2.06969874 2.54744544 3.31042966 4.7219858 8.21053157 29.59292215\n", + " 87.28054707 86.84336495 86.23844627 85.3466032 83.90123984 81.16110163\n", + " 74.05596575 29.59292215 42.63779834 37.00767795 30.40255608 22.76985585\n", + " 14.18292146 4.89797993 46.15318169 51.6896036 58.21907141 65.81559375\n", + " 74.43095985 83.82681521 1.62803312 1.98053876 2.52674891 3.48654093\n", + " 5.61341407 14.22621651 87.07688216 86.43225722 85.42259355 83.61713665\n", + " 79.48054112 61.32403216 44.41274552 44.41274552 29.77842334 29.77842334\n", + " 44.37598019 49.94895822 56.60624337 64.45998446 73.48745603 83.43540409\n", + " 38.69437311 44.24100899 51.15696074 59.72888922 70.09435151 81.99961851\n", + " 31.94440422 37.16546071 44.03052128 53.13850244 65.05527755 79.7674455\n", + " 24.03901245 28.4719233 34.66704703 43.65653948 56.97056188 75.84073328\n", + " 15.03271986 18.08395091 22.60822524 29.88026153 42.80777081 67.27233698\n", + " 5.20360826 6.3196744 8.04022063 11.03037054 17.44810995 39.01761856]\n", + "DEBUG:root:optics_fp: cphi: [-0.71462647 -0.76465055 -0.81663789 -0.86852682 -0.91713533 -0.95822269\n", + " -0.98707045 -0.99965519 -0.71462647 -0.66170459 -0.59665476 -0.51729759\n", + " -0.42196448 -0.31030314 -0.18420747 -0.04836971 -0.99965519 -0.99953644\n", + " -0.99934473 -0.99900557 -0.99831831 -0.99657638 -0.98967281 -0.87090507\n", + " -0.04836971 -0.05610053 -0.06679051 -0.08253363 -0.10799424 -0.15602533\n", + " -0.27837409 -0.87090507 -0.73594733 -0.79879708 -0.86266587 -0.92216881\n", + " -0.96955698 -0.99635146 -0.69307094 -0.62034596 -0.5272064 -0.41033606\n", + " -0.26919173 -0.10843276 -0.99959581 -0.99940041 -0.99902199 -0.99813478\n", + " -0.99516407 -0.96924606 -0.05196415 -0.06335735 -0.0811815 -0.11297393\n", + " -0.18526317 -0.48452029 -0.71462988 -0.71462988 -0.86931637 -0.86931637\n", + " -0.71508845 -0.64388103 -0.55091667 -0.43180852 -0.28504096 -0.11526196\n", + " -0.78075859 -0.71676907 -0.62767848 -0.50476226 -0.34135833 -0.1402609\n", + " -0.84875703 -0.7971706 -0.71938094 -0.60051365 -0.4226937 -0.17893311\n", + " -0.91338303 -0.87922117 -0.82275039 -0.7239943 -0.54602022 -0.24622747\n", + " -0.96582068 -0.95066579 -0.92326613 -0.86731478 -0.73433428 -0.38842227\n", + " -0.99588139 -0.99392405 -0.99016821 -0.98152333 -0.95403253 -0.77825973]\n", + "DEBUG:root:radec2pix: ccdpx: [[-4.45000002e+01 -5.00000174e-01]\n", + " [-4.44999997e+01 2.91928572e+02]\n", + " [-4.45000002e+01 5.84357143e+02]\n", + " [-4.45000000e+01 8.76785714e+02]\n", + " [-4.45000001e+01 1.16921429e+03]\n", + " [-4.44999999e+01 1.46164286e+03]\n", + " [-4.45000001e+01 1.75407143e+03]\n", + " [-4.44999997e+01 2.04650000e+03]\n", + " [-4.45000002e+01 -5.00000174e-01]\n", + " [ 2.47928571e+02 -5.00000003e-01]\n", + " [ 5.40357143e+02 -4.99999889e-01]\n", + " [ 8.32785714e+02 -5.00000160e-01]\n", + " [ 1.12521429e+03 -5.00000087e-01]\n", + " [ 1.41764286e+03 -5.00000059e-01]\n", + " [ 1.71007143e+03 -4.99999907e-01]\n", + " [ 2.00250000e+03 -4.99999721e-01]\n", + " [-4.44999997e+01 2.04650000e+03]\n", + " [ 2.47928571e+02 2.04650000e+03]\n", + " [ 5.40357143e+02 2.04650000e+03]\n", + " [ 8.32785714e+02 2.04650000e+03]\n", + " [ 1.12521429e+03 2.04650000e+03]\n", + " [ 1.41764286e+03 2.04650000e+03]\n", + " [ 1.71007143e+03 2.04650000e+03]\n", + " [ 2.00250000e+03 2.04650000e+03]\n", + " [ 2.00250000e+03 -4.99999721e-01]\n", + " [ 2.00250000e+03 2.91928571e+02]\n", + " [ 2.00250000e+03 5.84357143e+02]\n", + " [ 2.00250000e+03 8.76785714e+02]\n", + " [ 2.00250000e+03 1.16921429e+03]\n", + " [ 2.00250000e+03 1.46164286e+03]\n", + " [ 2.00250000e+03 1.75407143e+03]\n", + " [ 2.00250000e+03 2.04650000e+03]\n", + " [-4.35000001e+01 1.27000000e+02]\n", + " [-4.34999997e+01 4.85400000e+02]\n", + " [-4.35000003e+01 8.43800000e+02]\n", + " [-4.35000003e+01 1.20220000e+03]\n", + " [-4.35000002e+01 1.56060000e+03]\n", + " [-4.35000003e+01 1.91900000e+03]\n", + " [ 8.30000000e+01 4.99999980e-01]\n", + " [ 4.41400000e+02 4.99999948e-01]\n", + " [ 7.99800000e+02 4.99999731e-01]\n", + " [ 1.15820000e+03 4.99999908e-01]\n", + " [ 1.51660000e+03 4.99999771e-01]\n", + " [ 1.87500000e+03 5.00000017e-01]\n", + " [ 8.29999998e+01 2.04550000e+03]\n", + " [ 4.41400000e+02 2.04550000e+03]\n", + " [ 7.99800000e+02 2.04550000e+03]\n", + " [ 1.15820000e+03 2.04550000e+03]\n", + " [ 1.51660000e+03 2.04550000e+03]\n", + " [ 1.87500000e+03 2.04550000e+03]\n", + " [ 2.00150000e+03 1.27000000e+02]\n", + " [ 2.00150000e+03 4.85400000e+02]\n", + " [ 2.00150000e+03 8.43800000e+02]\n", + " [ 2.00150000e+03 1.20220000e+03]\n", + " [ 2.00150000e+03 1.56060000e+03]\n", + " [ 2.00150000e+03 1.91900000e+03]\n", + " [-4.35000001e+01 4.99999868e-01]\n", + " [-4.35000001e+01 4.99999868e-01]\n", + " [ 2.00150000e+03 2.04550000e+03]\n", + " [ 2.00150000e+03 2.04550000e+03]\n", + " [ 8.30000002e+01 1.27000000e+02]\n", + " [ 4.41400000e+02 1.27000000e+02]\n", + " [ 7.99800000e+02 1.27000000e+02]\n", + " [ 1.15820000e+03 1.27000000e+02]\n", + " [ 1.51660000e+03 1.27000000e+02]\n", + " [ 1.87500000e+03 1.27000000e+02]\n", + " [ 8.30000001e+01 4.85400000e+02]\n", + " [ 4.41400000e+02 4.85400000e+02]\n", + " [ 7.99800000e+02 4.85400000e+02]\n", + " [ 1.15820000e+03 4.85400000e+02]\n", + " [ 1.51660000e+03 4.85400000e+02]\n", + " [ 1.87500000e+03 4.85400000e+02]\n", + " [ 8.29999997e+01 8.43800000e+02]\n", + " [ 4.41400000e+02 8.43800000e+02]\n", + " [ 7.99800000e+02 8.43800000e+02]\n", + " [ 1.15820000e+03 8.43800000e+02]\n", + " [ 1.51660000e+03 8.43800000e+02]\n", + " [ 1.87500000e+03 8.43800000e+02]\n", + " [ 8.29999998e+01 1.20220000e+03]\n", + " [ 4.41400000e+02 1.20220000e+03]\n", + " [ 7.99800000e+02 1.20220000e+03]\n", + " [ 1.15820000e+03 1.20220000e+03]\n", + " [ 1.51660000e+03 1.20220000e+03]\n", + " [ 1.87500000e+03 1.20220000e+03]\n", + " [ 8.30000003e+01 1.56060000e+03]\n", + " [ 4.41400000e+02 1.56060000e+03]\n", + " [ 7.99800000e+02 1.56060000e+03]\n", + " [ 1.15820000e+03 1.56060000e+03]\n", + " [ 1.51660000e+03 1.56060000e+03]\n", + " [ 1.87500000e+03 1.56060000e+03]\n", + " [ 8.29999998e+01 1.91900000e+03]\n", + " [ 4.41400000e+02 1.91900000e+03]\n", + " [ 7.99800000e+02 1.91900000e+03]\n", + " [ 1.15820000e+03 1.91900000e+03]\n", + " [ 1.51660000e+03 1.91900000e+03]\n", + " [ 1.87500000e+03 1.91900000e+03]]\n", + "DEBUG:root:radec2pix: lat: [73.25344023 74.2369792 75.15226824 75.97162966 76.66508667 77.2021609\n", + " 77.55512574 77.70337791 73.25344023 74.25967575 75.20183236 76.05214643\n", + " 76.78010612 77.3540472 77.74432055 77.92785326 77.70337791 79.30226543\n", + " 80.93361724 82.59207196 84.27220803 85.96793867 87.66996871 89.32519361\n", + " 77.92785326 79.53024676 81.16372478 82.82252521 84.50025464 86.18804733\n", + " 87.86471391 89.32519361 73.6926739 74.85593178 75.88945702 76.73895525\n", + " 77.34864846 77.67018969 73.7019933 74.89586821 75.96623187 76.85800237\n", + " 77.51320661 77.87970489 78.39600189 80.37807975 82.40356131 84.46248138\n", + " 86.54333738 88.62073148 78.62203863 80.60748554 82.6338837 84.6897052\n", + " 86.75764582 88.76495286 73.26041353 73.26041353 89.31716551 89.31716551\n", + " 74.15313309 75.40228414 76.52877477 77.47347648 78.17205407 78.56478282\n", + " 75.37129959 76.78525096 78.08623827 79.20344298 80.05020166 80.53598707\n", + " 76.45984424 78.04591405 79.54291278 80.87169379 81.91843153 82.54064538\n", + " 77.36022478 79.11290918 80.81670049 82.39645142 83.71831262 84.55871556\n", + " 78.01034 79.90138935 81.79317677 83.63609258 85.31869407 86.54472849\n", + " 78.35474014 80.32671962 82.33692434 84.36964547 86.39457329 88.27941972]\n", + "DEBUG:root:radec2pix: xyfp: [[-32.29046994 -31.71666141]\n", + " [-32.28860507 -27.33023323]\n", + " [-32.2867402 -22.94380505]\n", + " [-32.28487534 -18.55737688]\n", + " [-32.28301047 -14.1709487 ]\n", + " [-32.2811456 -9.78452053]\n", + " [-32.27928073 -5.39809235]\n", + " [-32.27741587 -1.01166418]\n", + " [-32.29046994 -31.71666141]\n", + " [-27.90404176 -31.71852627]\n", + " [-23.51761359 -31.72039114]\n", + " [-19.13118541 -31.722256 ]\n", + " [-14.74475724 -31.72412087]\n", + " [-10.35832906 -31.72598574]\n", + " [ -5.97190089 -31.72785061]\n", + " [ -1.58547272 -31.72971547]\n", + " [-32.27741587 -1.01166418]\n", + " [-27.8909877 -1.01352905]\n", + " [-23.50455952 -1.01539391]\n", + " [-19.11813134 -1.01725878]\n", + " [-14.73170317 -1.01912365]\n", + " [-10.345275 -1.02098851]\n", + " [ -5.95884682 -1.02285338]\n", + " [ -1.57241864 -1.02471825]\n", + " [ -1.58547272 -31.72971547]\n", + " [ -1.58360785 -27.3432873 ]\n", + " [ -1.58174298 -22.95685912]\n", + " [ -1.57987811 -18.57043094]\n", + " [ -1.57801325 -14.18400278]\n", + " [ -1.57614838 -9.7975746 ]\n", + " [ -1.57428351 -5.41114642]\n", + " [ -1.57241864 -1.02471825]\n", + " [-32.27465685 -29.80416795]\n", + " [-32.27237127 -24.42816844]\n", + " [-32.2700857 -19.05216893]\n", + " [-32.26780012 -13.67616941]\n", + " [-32.26551454 -8.3001699 ]\n", + " [-32.26322896 -2.92417038]\n", + " [-30.37796373 -31.70247449]\n", + " [-25.00196422 -31.70476008]\n", + " [-19.62596471 -31.70704565]\n", + " [-14.24996519 -31.70933123]\n", + " [ -8.87396568 -31.71161681]\n", + " [ -3.49796617 -31.71390239]\n", + " [-30.36492242 -1.02747727]\n", + " [-24.98892291 -1.02976285]\n", + " [-19.61292339 -1.03204842]\n", + " [-14.23692388 -1.034334 ]\n", + " [ -8.86092437 -1.03661958]\n", + " [ -3.48492485 -1.03890516]\n", + " [ -1.59965962 -29.81720927]\n", + " [ -1.59737405 -24.44120975]\n", + " [ -1.59508847 -19.06521024]\n", + " [ -1.59280289 -13.68921073]\n", + " [ -1.59051731 -8.31321121]\n", + " [ -1.58823174 -2.9372117 ]\n", + " [-32.27546357 -31.70166778]\n", + " [-32.27546357 -31.70166778]\n", + " [ -1.58742502 -1.03971187]\n", + " [ -1.58742502 -1.03971187]\n", + " [-30.37715702 -29.80497466]\n", + " [-25.00115751 -29.80726024]\n", + " [-19.625158 -29.80954582]\n", + " [-14.24915848 -29.8118314 ]\n", + " [ -8.87315897 -29.81411698]\n", + " [ -3.49715945 -29.81640256]\n", + " [-30.37487145 -24.42897515]\n", + " [-24.99887193 -24.43126073]\n", + " [-19.62287241 -24.43354631]\n", + " [-14.2468729 -24.43583188]\n", + " [ -8.87087339 -24.43811746]\n", + " [ -3.49487388 -24.44040305]\n", + " [-30.37258587 -19.05297564]\n", + " [-24.99658635 -19.05526122]\n", + " [-19.62058684 -19.05754679]\n", + " [-14.24458732 -19.05983237]\n", + " [ -8.86858781 -19.06211795]\n", + " [ -3.4925883 -19.06440353]\n", + " [-30.37030029 -13.67697612]\n", + " [-24.99430077 -13.6792617 ]\n", + " [-19.61830126 -13.68154728]\n", + " [-14.24230175 -13.68383286]\n", + " [ -8.86630223 -13.68611844]\n", + " [ -3.49030272 -13.68840401]\n", + " [-30.36801471 -8.30097661]\n", + " [-24.9920152 -8.30326219]\n", + " [-19.61601568 -8.30554776]\n", + " [-14.24001617 -8.30783335]\n", + " [ -8.86401666 -8.31011893]\n", + " [ -3.48801714 -8.3124045 ]\n", + " [-30.36572914 -2.9249771 ]\n", + " [-24.98972962 -2.92726267]\n", + " [-19.6137301 -2.92954825]\n", + " [-14.23773059 -2.93183383]\n", + " [ -8.86173108 -2.93411941]\n", + " [ -3.48573156 -2.93640499]]\n", + "DEBUG:root:optics_fp: sphi: [-0.69950626 -0.64444513 -0.57715037 -0.49564218 -0.39857594 -0.28602322\n", + " -0.16028704 -0.02625833 -0.69950626 -0.74976466 -0.80249804 -0.85580559\n", + " -0.90661236 -0.95063766 -0.98288738 -0.9988295 -0.02625833 -0.03044512\n", + " -0.03619555 -0.04458562 -0.05797023 -0.08267725 -0.1433448 -0.49145128\n", + " -0.9988295 -0.99842512 -0.99776702 -0.99658828 -0.99415152 -0.98775305\n", + " -0.96047273 -0.49145128 -0.67703879 -0.60160056 -0.50577425 -0.38678764\n", + " -0.24486582 -0.08534494 -0.72086938 -0.78432831 -0.84973726 -0.91193438\n", + " -0.96308661 -0.99410379 -0.02842926 -0.03462403 -0.04421613 -0.06104888\n", + " -0.09822663 -0.24609363 -0.99864895 -0.99799091 -0.99669933 -0.99359795\n", + " -0.98268894 -0.87478002 -0.69950278 -0.69950278 -0.49425605 -0.49425605\n", + " -0.69903398 -0.76512562 -0.83456026 -0.9019653 -0.95851534 -0.99333513\n", + " -0.6248328 -0.69731062 -0.77847269 -0.8632584 -0.93993324 -0.99011458\n", + " -0.52878304 -0.60375411 -0.69461576 -0.79961451 -0.90627261 -0.98386124\n", + " -0.40710127 -0.47641382 -0.56840284 -0.68980596 -0.837772 -0.96921207\n", + " -0.25921116 -0.31021694 -0.38416098 -0.49776006 -0.67878801 -0.92148149\n", + " -0.09066564 -0.11006805 -0.13988178 -0.19134252 -0.29970307 -0.6279425 ]\n", + "DEBUG:root:optics_fp: xyfp: [[ 0.236018 -31.56946754]\n", + " [ 0.23651287 -27.18303899]\n", + " [ 0.23700774 -22.79661046]\n", + " [ 0.23750261 -18.41018192]\n", + " [ 0.23799748 -14.02375336]\n", + " [ 0.23849235 -9.63732482]\n", + " [ 0.23898721 -5.25089628]\n", + " [ 0.23948208 -0.86446773]\n", + " [ 0.236018 -31.56946754]\n", + " [ 4.62244655 -31.56996241]\n", + " [ 9.00887509 -31.57045728]\n", + " [ 13.39530363 -31.57095214]\n", + " [ 17.78173218 -31.57144701]\n", + " [ 22.16816072 -31.57194188]\n", + " [ 26.55458927 -31.57243675]\n", + " [ 30.94101781 -31.57293162]\n", + " [ 0.23948208 -0.86446773]\n", + " [ 4.62591062 -0.8649626 ]\n", + " [ 9.01233917 -0.86545747]\n", + " [ 13.39876771 -0.86595234]\n", + " [ 17.78519626 -0.86644721]\n", + " [ 22.1716248 -0.86694208]\n", + " [ 26.55805334 -0.86743695]\n", + " [ 30.94448189 -0.86793181]\n", + " [ 30.94101781 -31.57293162]\n", + " [ 30.94151268 -27.18650307]\n", + " [ 30.94200754 -22.80007453]\n", + " [ 30.94250242 -18.41364599]\n", + " [ 30.94299728 -14.02721745]\n", + " [ 30.94349215 -9.6407889 ]\n", + " [ 30.94398702 -5.25436036]\n", + " [ 30.94448189 -0.86793181]\n", + " [ 0.25123377 -29.65696924]\n", + " [ 0.25184028 -24.28096928]\n", + " [ 0.25244679 -18.90496931]\n", + " [ 0.2530533 -13.52896935]\n", + " [ 0.25365981 -8.15296938]\n", + " [ 0.25426632 -2.77696942]\n", + " [ 2.14851968 -31.5546833 ]\n", + " [ 7.52451965 -31.55528981]\n", + " [ 12.90051962 -31.55589633]\n", + " [ 18.27651958 -31.55650284]\n", + " [ 23.65251954 -31.55710934]\n", + " [ 29.02851952 -31.55771586]\n", + " [ 2.15198038 -0.8796835 ]\n", + " [ 7.52798035 -0.88029001]\n", + " [ 12.90398031 -0.88089652]\n", + " [ 18.27998027 -0.88150303]\n", + " [ 23.65598025 -0.88210954]\n", + " [ 29.03198021 -0.88271605]\n", + " [ 30.92623357 -29.66042994]\n", + " [ 30.92684009 -24.28442998]\n", + " [ 30.9274466 -18.90843001]\n", + " [ 30.9280531 -13.53243004]\n", + " [ 30.92865961 -8.15643008]\n", + " [ 30.92926612 -2.78043011]\n", + " [ 0.2510197 -31.55446923]\n", + " [ 0.2510197 -31.55446923]\n", + " [ 30.9294802 -0.88293012]\n", + " [ 30.9294802 -0.88293012]\n", + " [ 2.14873376 -29.65718332]\n", + " [ 7.52473372 -29.65778983]\n", + " [ 12.90073369 -29.65839633]\n", + " [ 18.27673365 -29.65900285]\n", + " [ 23.65273362 -29.65960936]\n", + " [ 29.02873359 -29.66021587]\n", + " [ 2.14934027 -24.28118335]\n", + " [ 7.52534023 -24.28178986]\n", + " [ 12.9013402 -24.28239637]\n", + " [ 18.27734016 -24.28300288]\n", + " [ 23.65334013 -24.28360939]\n", + " [ 29.02934009 -24.2842159 ]\n", + " [ 2.14994678 -18.90518338]\n", + " [ 7.52594674 -18.90578989]\n", + " [ 12.90194671 -18.9063964 ]\n", + " [ 18.27794667 -18.90700292]\n", + " [ 23.65394664 -18.90760943]\n", + " [ 29.0299466 -18.90821593]\n", + " [ 2.15055329 -13.52918342]\n", + " [ 7.52655325 -13.52978993]\n", + " [ 12.90255322 -13.53039644]\n", + " [ 18.27855318 -13.53100295]\n", + " [ 23.65455315 -13.53160946]\n", + " [ 29.03055312 -13.53221597]\n", + " [ 2.1511598 -8.15318346]\n", + " [ 7.52715976 -8.15378996]\n", + " [ 12.90315973 -8.15439647]\n", + " [ 18.27915969 -8.15500298]\n", + " [ 23.65515966 -8.15560949]\n", + " [ 29.03115962 -8.156216 ]\n", + " [ 2.1517663 -2.77718348]\n", + " [ 7.52776627 -2.77779 ]\n", + " [ 12.90376624 -2.77839651]\n", + " [ 18.2797662 -2.77900302]\n", + " [ 23.65576617 -2.77960953]\n", + " [ 29.03176613 -2.78021604]]\n", + "DEBUG:root:optics_fp: xyfp shape: (96, 2)\n", + "DEBUG:root:radec2pix: fitpx: [[4271.50000018 4155.50000017]\n", + " [4271.49999973 3863.07142834]\n", + " [4271.50000015 3570.64285725]\n", + " [4271.50000001 3278.21428572]\n", + " [4271.5000001 2985.78571433]\n", + " [4271.49999989 2693.35714282]\n", + " [4271.50000013 2400.92857145]\n", + " [4271.49999973 2108.49999999]\n", + " [4271.50000018 4155.50000017]\n", + " [3979.07142857 4155.5 ]\n", + " [3686.64285706 4155.49999989]\n", + " [3394.21428581 4155.50000016]\n", + " [3101.78571433 4155.50000009]\n", + " [2809.35714288 4155.50000006]\n", + " [2516.92857141 4155.49999991]\n", + " [2224.49999999 4155.49999972]\n", + " [4271.49999973 2108.49999999]\n", + " [3979.07142852 2108.5 ]\n", + " [3686.6428568 2108.49999999]\n", + " [3394.2142859 2108.50000001]\n", + " [3101.78571455 2108.50000001]\n", + " [2809.35714254 2108.49999998]\n", + " [2516.92857145 2108.5 ]\n", + " [2224.49999991 2108.49999996]\n", + " [2224.49999999 4155.49999972]\n", + " [2224.50000001 3863.07142866]\n", + " [2224.50000002 3570.64285748]\n", + " [2224.49999999 3278.21428555]\n", + " [2224.49999997 2985.78571404]\n", + " [2224.49999997 2693.35714267]\n", + " [2224.49999997 2400.92857132]\n", + " [2224.49999991 2108.49999996]\n", + " [4270.50000007 4028.00000007]\n", + " [4270.49999974 3669.5999998 ]\n", + " [4270.50000026 3311.20000015]\n", + " [4270.50000028 2952.80000012]\n", + " [4270.50000021 2594.40000005]\n", + " [4270.50000028 2236.00000002]\n", + " [4144.00000002 4154.50000002]\n", + " [3785.60000004 4154.50000005]\n", + " [3427.20000017 4154.50000027]\n", + " [3068.80000004 4154.50000009]\n", + " [2710.40000006 4154.50000023]\n", + " [2352. 4154.49999998]\n", + " [4144.00000024 2109.50000001]\n", + " [3785.60000024 2109.50000001]\n", + " [3427.20000038 2109.50000002]\n", + " [3068.80000022 2109.50000001]\n", + " [2710.3999999 2109.49999999]\n", + " [2352.00000033 2109.50000007]\n", + " [2225.50000001 4028.00000014]\n", + " [2225.5 3669.59999993]\n", + " [2225.49999997 3311.19999965]\n", + " [2225.50000003 2952.80000023]\n", + " [2225.50000001 2594.40000005]\n", + " [2225.50000007 2236.00000012]\n", + " [4270.50000014 4154.50000013]\n", + " [4270.50000014 4154.50000013]\n", + " [2225.5 2109.5 ]\n", + " [2225.5 2109.5 ]\n", + " [4143.99999977 4027.99999977]\n", + " [3785.60000006 4028.00000007]\n", + " [3427.19999985 4027.99999978]\n", + " [3068.80000002 4028.00000004]\n", + " [2710.40000003 4028.0000001 ]\n", + " [2351.99999998 4027.99999983]\n", + " [4143.99999989 3669.59999991]\n", + " [3785.59999992 3669.59999992]\n", + " [3427.20000008 3669.60000009]\n", + " [3068.80000009 3669.60000016]\n", + " [2710.40000007 3669.6000002 ]\n", + " [2352. 3669.60000003]\n", + " [4144.00000025 3311.20000016]\n", + " [3785.59999995 3311.19999996]\n", + " [3427.19999995 3311.19999995]\n", + " [3068.80000029 3311.20000039]\n", + " [2710.39999993 3311.19999986]\n", + " [2352.00000003 3311.20000016]\n", + " [4144.0000002 2952.80000009]\n", + " [3785.6000002 2952.80000011]\n", + " [3427.19999983 2952.79999988]\n", + " [3068.80000029 2952.80000027]\n", + " [2710.40000007 2952.8000001 ]\n", + " [2352.00000006 2952.80000022]\n", + " [4143.99999974 2594.39999993]\n", + " [3785.60000003 2594.40000001]\n", + " [3427.19999994 2594.39999997]\n", + " [3068.7999999 2594.39999994]\n", + " [2710.40000001 2594.40000001]\n", + " [2351.9999999 2594.39999976]\n", + " [4144.00000015 2236.00000001]\n", + " [3785.59999982 2235.99999998]\n", + " [3427.19999971 2235.99999996]\n", + " [3068.80000012 2236.00000002]\n", + " [2710.39999989 2235.99999997]\n", + " [2351.99999988 2235.99999991]]\n", + "DEBUG:root:fitpix2pix: ccdpx: shape: (96, 2)\n", + "DEBUG:root:fitpix2pix: visCut: True\n", + "DEBUG:root:optics_fp: xyfp: [[32.23341696 31.55141621]\n", + " [32.23194958 27.16498788]\n", + " [32.2304822 22.77855956]\n", + " [32.22901483 18.39213124]\n", + " [32.22754745 14.00570291]\n", + " [32.22608007 9.61927458]\n", + " [32.22461269 5.23284626]\n", + " [32.2231453 0.84641793]\n", + " [32.23341696 31.55141621]\n", + " [27.84698864 31.5528836 ]\n", + " [23.46056031 31.55435097]\n", + " [19.07413198 31.55581835]\n", + " [14.68770366 31.55728573]\n", + " [10.30127533 31.55875311]\n", + " [ 5.91484701 31.56022049]\n", + " [ 1.52841868 31.56168787]\n", + " [32.2231453 0.84641793]\n", + " [27.83671698 0.84788531]\n", + " [23.45028865 0.84935269]\n", + " [19.06386033 0.85082007]\n", + " [14.677432 0.85228745]\n", + " [10.29100367 0.85375483]\n", + " [ 5.90457535 0.85522221]\n", + " [ 1.51814702 0.85668959]\n", + " [ 1.52841868 31.56168787]\n", + " [ 1.5269513 27.17525955]\n", + " [ 1.52548392 22.78883122]\n", + " [ 1.52401654 18.4024029 ]\n", + " [ 1.52254916 14.01597457]\n", + " [ 1.52108178 9.62954624]\n", + " [ 1.5196144 5.24311792]\n", + " [ 1.51814702 0.85668959]\n", + " [32.21777718 29.63892134]\n", + " [32.21597876 24.26292164]\n", + " [32.21418034 18.88692194]\n", + " [32.21238193 13.51092224]\n", + " [32.21058351 8.13492254]\n", + " [32.20878509 2.75892284]\n", + " [30.32091205 31.53705599]\n", + " [24.94491236 31.53885442]\n", + " [19.56891265 31.54065283]\n", + " [14.19291295 31.54245125]\n", + " [ 8.81691325 31.54424967]\n", + " [ 3.44091356 31.54604808]\n", + " [30.31065043 0.86205771]\n", + " [24.93465073 0.86385613]\n", + " [19.55865103 0.86565455]\n", + " [14.18265134 0.86745297]\n", + " [ 8.80665163 0.86925139]\n", + " [ 3.43065193 0.8710498 ]\n", + " [ 1.5427789 29.64918296]\n", + " [ 1.54098048 24.27318326]\n", + " [ 1.53918206 18.89718357]\n", + " [ 1.53738364 13.52118387]\n", + " [ 1.53558522 8.14518416]\n", + " [ 1.5337868 2.76918446]\n", + " [32.21841195 31.53642123]\n", + " [32.21841195 31.53642123]\n", + " [ 1.53315204 0.87168457]\n", + " [ 1.53315204 0.87168457]\n", + " [30.32027729 29.6395561 ]\n", + " [24.94427759 29.64135452]\n", + " [19.56827789 29.64315294]\n", + " [14.19227819 29.64495136]\n", + " [ 8.81627849 29.64674978]\n", + " [ 3.44027879 29.6485482 ]\n", + " [30.31847887 24.2635564 ]\n", + " [24.94247917 24.26535482]\n", + " [19.56647947 24.26715324]\n", + " [14.19047977 24.26895166]\n", + " [ 8.81448007 24.27075007]\n", + " [ 3.43848037 24.2725485 ]\n", + " [30.31668045 18.8875567 ]\n", + " [24.94068075 18.88935513]\n", + " [19.56468105 18.89115354]\n", + " [14.18868135 18.89295196]\n", + " [ 8.81268165 18.89475038]\n", + " [ 3.43668195 18.89654879]\n", + " [30.31488203 13.51155701]\n", + " [24.93888233 13.51335542]\n", + " [19.56288263 13.51515384]\n", + " [14.18688293 13.51695226]\n", + " [ 8.81088324 13.51875068]\n", + " [ 3.43488354 13.5205491 ]\n", + " [30.31308361 8.13555731]\n", + " [24.93708392 8.13735572]\n", + " [19.56108422 8.13915414]\n", + " [14.18508451 8.14095256]\n", + " [ 8.80908482 8.14275098]\n", + " [ 3.43308512 8.1445494 ]\n", + " [30.31128519 2.75955761]\n", + " [24.93528549 2.76135602]\n", + " [19.5592858 2.76315444]\n", + " [14.18328609 2.76495286]\n", + " [ 8.8072864 2.76675128]\n", + " [ 3.4312867 2.7685497 ]]\n", + "DEBUG:root:optics_fp: xyfp shape: (96, 2)\n", + "DEBUG:root:make_az_asym: xyp: [[ 0.236018 -31.56946754]\n", + " [ 0.23651287 -27.18303899]\n", + " [ 0.23700774 -22.79661046]\n", + " [ 0.23750261 -18.41018192]\n", + " [ 0.23799748 -14.02375336]\n", + " [ 0.23849235 -9.63732482]\n", + " [ 0.23898721 -5.25089628]\n", + " [ 0.23948208 -0.86446773]\n", + " [ 0.236018 -31.56946754]\n", + " [ 4.62244655 -31.56996241]\n", + " [ 9.00887509 -31.57045728]\n", + " [ 13.39530363 -31.57095214]\n", + " [ 17.78173218 -31.57144701]\n", + " [ 22.16816072 -31.57194188]\n", + " [ 26.55458927 -31.57243675]\n", + " [ 30.94101781 -31.57293162]\n", + " [ 0.23948208 -0.86446773]\n", + " [ 4.62591062 -0.8649626 ]\n", + " [ 9.01233917 -0.86545747]\n", + " [ 13.39876771 -0.86595234]\n", + " [ 17.78519626 -0.86644721]\n", + " [ 22.1716248 -0.86694208]\n", + " [ 26.55805334 -0.86743695]\n", + " [ 30.94448189 -0.86793181]\n", + " [ 30.94101781 -31.57293162]\n", + " [ 30.94151268 -27.18650307]\n", + " [ 30.94200754 -22.80007453]\n", + " [ 30.94250242 -18.41364599]\n", + " [ 30.94299728 -14.02721745]\n", + " [ 30.94349215 -9.6407889 ]\n", + " [ 30.94398702 -5.25436036]\n", + " [ 30.94448189 -0.86793181]\n", + " [ 0.25123377 -29.65696924]\n", + " [ 0.25184028 -24.28096928]\n", + " [ 0.25244679 -18.90496931]\n", + " [ 0.2530533 -13.52896935]\n", + " [ 0.25365981 -8.15296938]\n", + " [ 0.25426632 -2.77696942]\n", + " [ 2.14851968 -31.5546833 ]\n", + " [ 7.52451965 -31.55528981]\n", + " [ 12.90051962 -31.55589633]\n", + " [ 18.27651958 -31.55650284]\n", + " [ 23.65251954 -31.55710934]\n", + " [ 29.02851952 -31.55771586]\n", + " [ 2.15198038 -0.8796835 ]\n", + " [ 7.52798035 -0.88029001]\n", + " [ 12.90398031 -0.88089652]\n", + " [ 18.27998027 -0.88150303]\n", + " [ 23.65598025 -0.88210954]\n", + " [ 29.03198021 -0.88271605]\n", + " [ 30.92623357 -29.66042994]\n", + " [ 30.92684009 -24.28442998]\n", + " [ 30.9274466 -18.90843001]\n", + " [ 30.9280531 -13.53243004]\n", + " [ 30.92865961 -8.15643008]\n", + " [ 30.92926612 -2.78043011]\n", + " [ 0.2510197 -31.55446923]\n", + " [ 0.2510197 -31.55446923]\n", + " [ 30.9294802 -0.88293012]\n", + " [ 30.9294802 -0.88293012]\n", + " [ 2.14873376 -29.65718332]\n", + " [ 7.52473372 -29.65778983]\n", + " [ 12.90073369 -29.65839633]\n", + " [ 18.27673365 -29.65900285]\n", + " [ 23.65273362 -29.65960936]\n", + " [ 29.02873359 -29.66021587]\n", + " [ 2.14934027 -24.28118335]\n", + " [ 7.52534023 -24.28178986]\n", + " [ 12.9013402 -24.28239637]\n", + " [ 18.27734016 -24.28300288]\n", + " [ 23.65334013 -24.28360939]\n", + " [ 29.02934009 -24.2842159 ]\n", + " [ 2.14994678 -18.90518338]\n", + " [ 7.52594674 -18.90578989]\n", + " [ 12.90194671 -18.9063964 ]\n", + " [ 18.27794667 -18.90700292]\n", + " [ 23.65394664 -18.90760943]\n", + " [ 29.0299466 -18.90821593]\n", + " [ 2.15055329 -13.52918342]\n", + " [ 7.52655325 -13.52978993]\n", + " [ 12.90255322 -13.53039644]\n", + " [ 18.27855318 -13.53100295]\n", + " [ 23.65455315 -13.53160946]\n", + " [ 29.03055312 -13.53221597]\n", + " [ 2.1511598 -8.15318346]\n", + " [ 7.52715976 -8.15378996]\n", + " [ 12.90315973 -8.15439647]\n", + " [ 18.27915969 -8.15500298]\n", + " [ 23.65515966 -8.15560949]\n", + " [ 29.03115962 -8.156216 ]\n", + " [ 2.1517663 -2.77718348]\n", + " [ 7.52776627 -2.77779 ]\n", + " [ 12.90376624 -2.77839651]\n", + " [ 18.2797662 -2.77900302]\n", + " [ 23.65576617 -2.77960953]\n", + " [ 29.03176613 -2.78021604]]\n", + "DEBUG:root:make_az_asym: xyp: shape: (96, 2)\n", + "DEBUG:root:radec2pix: ccdpx: [[-4.45000003e+01 -5.00000268e-01]\n", + " [-4.44999998e+01 2.91928572e+02]\n", + " [-4.44999999e+01 5.84357143e+02]\n", + " [-4.45000000e+01 8.76785714e+02]\n", + " [-4.44999998e+01 1.16921429e+03]\n", + " [-4.44999999e+01 1.46164286e+03]\n", + " [-4.44999997e+01 1.75407143e+03]\n", + " [-4.44999999e+01 2.04650000e+03]\n", + " [-4.45000003e+01 -5.00000268e-01]\n", + " [ 2.47928572e+02 -4.99999720e-01]\n", + " [ 5.40357143e+02 -5.00000140e-01]\n", + " [ 8.32785714e+02 -4.99999791e-01]\n", + " [ 1.12521429e+03 -4.99999975e-01]\n", + " [ 1.41764286e+03 -4.99999912e-01]\n", + " [ 1.71007143e+03 -4.99999978e-01]\n", + " [ 2.00250000e+03 -4.99999991e-01]\n", + " [-4.44999999e+01 2.04650000e+03]\n", + " [ 2.47928571e+02 2.04650000e+03]\n", + " [ 5.40357143e+02 2.04650000e+03]\n", + " [ 8.32785715e+02 2.04650000e+03]\n", + " [ 1.12521429e+03 2.04650000e+03]\n", + " [ 1.41764286e+03 2.04650000e+03]\n", + " [ 1.71007143e+03 2.04650000e+03]\n", + " [ 2.00250000e+03 2.04650000e+03]\n", + " [ 2.00250000e+03 -4.99999991e-01]\n", + " [ 2.00250000e+03 2.91928572e+02]\n", + " [ 2.00250000e+03 5.84357143e+02]\n", + " [ 2.00250000e+03 8.76785715e+02]\n", + " [ 2.00250000e+03 1.16921429e+03]\n", + " [ 2.00250000e+03 1.46164286e+03]\n", + " [ 2.00250000e+03 1.75407143e+03]\n", + " [ 2.00250000e+03 2.04650000e+03]\n", + " [-4.34999998e+01 1.27000000e+02]\n", + " [-4.35000000e+01 4.85400000e+02]\n", + " [-4.35000001e+01 8.43800000e+02]\n", + " [-4.35000000e+01 1.20220000e+03]\n", + " [-4.35000001e+01 1.56060000e+03]\n", + " [-4.34999999e+01 1.91900000e+03]\n", + " [ 8.30000001e+01 5.00000092e-01]\n", + " [ 4.41400000e+02 4.99999764e-01]\n", + " [ 7.99800000e+02 4.99999911e-01]\n", + " [ 1.15820000e+03 5.00000156e-01]\n", + " [ 1.51660000e+03 4.99999840e-01]\n", + " [ 1.87500000e+03 4.99999915e-01]\n", + " [ 8.29999998e+01 2.04550000e+03]\n", + " [ 4.41400000e+02 2.04550000e+03]\n", + " [ 7.99800000e+02 2.04550000e+03]\n", + " [ 1.15820000e+03 2.04550000e+03]\n", + " [ 1.51660000e+03 2.04550000e+03]\n", + " [ 1.87500000e+03 2.04550000e+03]\n", + " [ 2.00150000e+03 1.27000000e+02]\n", + " [ 2.00150000e+03 4.85400000e+02]\n", + " [ 2.00150000e+03 8.43800000e+02]\n", + " [ 2.00150000e+03 1.20220000e+03]\n", + " [ 2.00150000e+03 1.56060000e+03]\n", + " [ 2.00150000e+03 1.91900000e+03]\n", + " [-4.35000000e+01 4.99999958e-01]\n", + " [-4.35000000e+01 4.99999958e-01]\n", + " [ 2.00150000e+03 2.04550000e+03]\n", + " [ 2.00150000e+03 2.04550000e+03]\n", + " [ 8.30000002e+01 1.27000000e+02]\n", + " [ 4.41400000e+02 1.27000000e+02]\n", + " [ 7.99800000e+02 1.27000000e+02]\n", + " [ 1.15820000e+03 1.27000000e+02]\n", + " [ 1.51660000e+03 1.27000000e+02]\n", + " [ 1.87500000e+03 1.27000000e+02]\n", + " [ 8.29999999e+01 4.85400000e+02]\n", + " [ 4.41400000e+02 4.85400000e+02]\n", + " [ 7.99800000e+02 4.85400000e+02]\n", + " [ 1.15820000e+03 4.85400000e+02]\n", + " [ 1.51660000e+03 4.85400000e+02]\n", + " [ 1.87500000e+03 4.85400000e+02]\n", + " [ 8.30000001e+01 8.43800000e+02]\n", + " [ 4.41400000e+02 8.43800000e+02]\n", + " [ 7.99800000e+02 8.43800000e+02]\n", + " [ 1.15820000e+03 8.43800000e+02]\n", + " [ 1.51660000e+03 8.43800000e+02]\n", + " [ 1.87500000e+03 8.43800000e+02]\n", + " [ 8.29999999e+01 1.20220000e+03]\n", + " [ 4.41400000e+02 1.20220000e+03]\n", + " [ 7.99800000e+02 1.20220000e+03]\n", + " [ 1.15820000e+03 1.20220000e+03]\n", + " [ 1.51660000e+03 1.20220000e+03]\n", + " [ 1.87500000e+03 1.20220000e+03]\n", + " [ 8.29999999e+01 1.56060000e+03]\n", + " [ 4.41400000e+02 1.56060000e+03]\n", + " [ 7.99800000e+02 1.56060000e+03]\n", + " [ 1.15820000e+03 1.56060000e+03]\n", + " [ 1.51660000e+03 1.56060000e+03]\n", + " [ 1.87500000e+03 1.56060000e+03]\n", + " [ 8.29999998e+01 1.91900000e+03]\n", + " [ 4.41400000e+02 1.91900000e+03]\n", + " [ 7.99800000e+02 1.91900000e+03]\n", + " [ 1.15820000e+03 1.91900000e+03]\n", + " [ 1.51660000e+03 1.91900000e+03]\n", + " [ 1.87500000e+03 1.91900000e+03]]\n", + "DEBUG:root:optics_fp: rtanth: [45.08354623 42.13009767 39.44420909 37.08406184 35.11539785 33.60708557\n", + " 32.6230401 32.21134587 45.08354623 42.06280558 39.30031295 36.85418691\n", + " 34.79122159 33.18295674 32.09781375 31.58974814 32.21134587 27.8266828\n", + " 23.4426803 19.05979422 14.67902457 10.30307141 5.94258442 1.71954938\n", + " 31.58974814 27.2090275 22.83049885 18.45572241 14.0881941 9.73767156\n", + " 5.44507054 1.71954938 43.75525849 40.30775232 37.31902868 34.90712904\n", + " 33.19801449 32.30342747 43.72724359 40.19104921 37.09948507 34.57203928\n", + " 32.73962065 31.72289982 30.29997699 24.92663654 19.55475813 14.18600274\n", + " 8.82607125 3.51555769 29.68028893 24.31279095 18.95011366 13.59796176\n", + " 8.27677911 3.14775039 45.06233412 45.06233412 1.74001001 1.74001001\n", + " 42.37901039 38.71988024 35.50042932 32.85018402 30.91587699 29.8370753\n", + " 38.80944181 34.77673616 31.15241137 28.09496116 25.80666004 24.50394488\n", + " 35.69548681 31.26365913 27.1747629 23.607665 20.83215559 19.19474717\n", + " 33.16572831 28.34103278 23.75427319 19.57344126 16.11758242 13.93686031\n", + " 31.36185649 26.20714877 21.16284486 16.33156793 11.97401233 8.82250437\n", + " 30.41330799 25.06427551 19.72990783 14.4264816 9.20761812 4.38632462]\n", + "DEBUG:root:make_az_asym: xyp: [[32.23341696 31.55141621]\n", + " [32.23194958 27.16498788]\n", + " [32.2304822 22.77855956]\n", + " [32.22901483 18.39213124]\n", + " [32.22754745 14.00570291]\n", + " [32.22608007 9.61927458]\n", + " [32.22461269 5.23284626]\n", + " [32.2231453 0.84641793]\n", + " [32.23341696 31.55141621]\n", + " [27.84698864 31.5528836 ]\n", + " [23.46056031 31.55435097]\n", + " [19.07413198 31.55581835]\n", + " [14.68770366 31.55728573]\n", + " [10.30127533 31.55875311]\n", + " [ 5.91484701 31.56022049]\n", + " [ 1.52841868 31.56168787]\n", + " [32.2231453 0.84641793]\n", + " [27.83671698 0.84788531]\n", + " [23.45028865 0.84935269]\n", + " [19.06386033 0.85082007]\n", + " [14.677432 0.85228745]\n", + " [10.29100367 0.85375483]\n", + " [ 5.90457535 0.85522221]\n", + " [ 1.51814702 0.85668959]\n", + " [ 1.52841868 31.56168787]\n", + " [ 1.5269513 27.17525955]\n", + " [ 1.52548392 22.78883122]\n", + " [ 1.52401654 18.4024029 ]\n", + " [ 1.52254916 14.01597457]\n", + " [ 1.52108178 9.62954624]\n", + " [ 1.5196144 5.24311792]\n", + " [ 1.51814702 0.85668959]\n", + " [32.21777718 29.63892134]\n", + " [32.21597876 24.26292164]\n", + " [32.21418034 18.88692194]\n", + " [32.21238193 13.51092224]\n", + " [32.21058351 8.13492254]\n", + " [32.20878509 2.75892284]\n", + " [30.32091205 31.53705599]\n", + " [24.94491236 31.53885442]\n", + " [19.56891265 31.54065283]\n", + " [14.19291295 31.54245125]\n", + " [ 8.81691325 31.54424967]\n", + " [ 3.44091356 31.54604808]\n", + " [30.31065043 0.86205771]\n", + " [24.93465073 0.86385613]\n", + " [19.55865103 0.86565455]\n", + " [14.18265134 0.86745297]\n", + " [ 8.80665163 0.86925139]\n", + " [ 3.43065193 0.8710498 ]\n", + " [ 1.5427789 29.64918296]\n", + " [ 1.54098048 24.27318326]\n", + " [ 1.53918206 18.89718357]\n", + " [ 1.53738364 13.52118387]\n", + " [ 1.53558522 8.14518416]\n", + " [ 1.5337868 2.76918446]\n", + " [32.21841195 31.53642123]\n", + " [32.21841195 31.53642123]\n", + " [ 1.53315204 0.87168457]\n", + " [ 1.53315204 0.87168457]\n", + " [30.32027729 29.6395561 ]\n", + " [24.94427759 29.64135452]\n", + " [19.56827789 29.64315294]\n", + " [14.19227819 29.64495136]\n", + " [ 8.81627849 29.64674978]\n", + " [ 3.44027879 29.6485482 ]\n", + " [30.31847887 24.2635564 ]\n", + " [24.94247917 24.26535482]\n", + " [19.56647947 24.26715324]\n", + " [14.19047977 24.26895166]\n", + " [ 8.81448007 24.27075007]\n", + " [ 3.43848037 24.2725485 ]\n", + " [30.31668045 18.8875567 ]\n", + " [24.94068075 18.88935513]\n", + " [19.56468105 18.89115354]\n", + " [14.18868135 18.89295196]\n", + " [ 8.81268165 18.89475038]\n", + " [ 3.43668195 18.89654879]\n", + " [30.31488203 13.51155701]\n", + " [24.93888233 13.51335542]\n", + " [19.56288263 13.51515384]\n", + " [14.18688293 13.51695226]\n", + " [ 8.81088324 13.51875068]\n", + " [ 3.43488354 13.5205491 ]\n", + " [30.31308361 8.13555731]\n", + " [24.93708392 8.13735572]\n", + " [19.56108422 8.13915414]\n", + " [14.18508451 8.14095256]\n", + " [ 8.80908482 8.14275098]\n", + " [ 3.43308512 8.1445494 ]\n", + " [30.31128519 2.75955761]\n", + " [24.93528549 2.76135602]\n", + " [19.5592858 2.76315444]\n", + " [14.18328609 2.76495286]\n", + " [ 8.8072864 2.76675128]\n", + " [ 3.4312867 2.7685497 ]]\n", + "DEBUG:root:make_az_asym: xyp: shape: (96, 2)\n", + "DEBUG:root:optics_fp: cphi: [0.71431368 0.76437722 0.81641337 0.86835883 0.91702693 0.95816873\n", + " 0.9870555 0.99965535 0.71431368 0.66132929 0.5962023 0.51675291\n", + " 0.42131547 0.30954599 0.18335276 0.04744559 0.99965535 0.9995376\n", + " 0.99934763 0.99901176 0.99833132 0.99660587 0.98975 0.86955594\n", + " 0.04744559 0.05506581 0.06560435 0.08112784 0.10624255 0.15365671\n", + " 0.27469828 0.86955594 0.73565039 0.79855486 0.86249109 0.9220669\n", + " 0.96951843 0.99634831 0.69273272 0.61992142 0.52667287 0.40967477\n", + " 0.26839934 0.10753407 0.99959633 0.99940262 0.99902775 0.99814911\n", + " 0.99520453 0.969333 0.0509959 0.06222863 0.07980586 0.1111717\n", + " 0.18256945 0.47985554 0.71431702 0.71431702 0.86795254 0.86795254\n", + " 0.71476593 0.64346978 0.55038977 0.43114136 0.28422526 0.11432331\n", + " 0.78049181 0.71641143 0.62718906 0.50409223 0.34047225 0.13917969\n", + " 0.84856189 0.79689424 0.71896966 0.59988271 0.42174368 0.17764392\n", + " 0.9132683 0.87905083 0.82247132 0.72349099 0.54506987 0.24461812\n", + " 0.96577787 0.95060272 0.92315504 0.86706843 0.73363771 0.38635141\n", + " 0.99587869 0.99392322 0.99017013 0.9815259 0.95398889 0.77695241]\n", + "DEBUG:root:radec2pix: xyfp: [[ 0.236018 -31.56946754]\n", + " [ 0.23651287 -27.18303899]\n", + " [ 0.23700774 -22.79661046]\n", + " [ 0.23750261 -18.41018192]\n", + " [ 0.23799748 -14.02375336]\n", + " [ 0.23849235 -9.63732482]\n", + " [ 0.23898721 -5.25089628]\n", + " [ 0.23948208 -0.86446773]\n", + " [ 0.236018 -31.56946754]\n", + " [ 4.62244655 -31.56996241]\n", + " [ 9.00887509 -31.57045728]\n", + " [ 13.39530363 -31.57095214]\n", + " [ 17.78173218 -31.57144701]\n", + " [ 22.16816072 -31.57194188]\n", + " [ 26.55458927 -31.57243675]\n", + " [ 30.94101781 -31.57293162]\n", + " [ 0.23948208 -0.86446773]\n", + " [ 4.62591062 -0.8649626 ]\n", + " [ 9.01233917 -0.86545747]\n", + " [ 13.39876771 -0.86595234]\n", + " [ 17.78519626 -0.86644721]\n", + " [ 22.1716248 -0.86694208]\n", + " [ 26.55805334 -0.86743695]\n", + " [ 30.94448189 -0.86793181]\n", + " [ 30.94101781 -31.57293162]\n", + " [ 30.94151268 -27.18650307]\n", + " [ 30.94200754 -22.80007453]\n", + " [ 30.94250242 -18.41364599]\n", + " [ 30.94299728 -14.02721745]\n", + " [ 30.94349215 -9.6407889 ]\n", + " [ 30.94398702 -5.25436036]\n", + " [ 30.94448189 -0.86793181]\n", + " [ 0.25123377 -29.65696924]\n", + " [ 0.25184028 -24.28096928]\n", + " [ 0.25244679 -18.90496931]\n", + " [ 0.2530533 -13.52896935]\n", + " [ 0.25365981 -8.15296938]\n", + " [ 0.25426632 -2.77696942]\n", + " [ 2.14851968 -31.5546833 ]\n", + " [ 7.52451965 -31.55528981]\n", + " [ 12.90051962 -31.55589633]\n", + " [ 18.27651958 -31.55650284]\n", + " [ 23.65251954 -31.55710934]\n", + " [ 29.02851952 -31.55771586]\n", + " [ 2.15198038 -0.8796835 ]\n", + " [ 7.52798035 -0.88029001]\n", + " [ 12.90398031 -0.88089652]\n", + " [ 18.27998027 -0.88150303]\n", + " [ 23.65598025 -0.88210954]\n", + " [ 29.03198021 -0.88271605]\n", + " [ 30.92623357 -29.66042994]\n", + " [ 30.92684009 -24.28442998]\n", + " [ 30.9274466 -18.90843001]\n", + " [ 30.9280531 -13.53243004]\n", + " [ 30.92865961 -8.15643008]\n", + " [ 30.92926612 -2.78043011]\n", + " [ 0.2510197 -31.55446923]\n", + " [ 0.2510197 -31.55446923]\n", + " [ 30.9294802 -0.88293012]\n", + " [ 30.9294802 -0.88293012]\n", + " [ 2.14873376 -29.65718332]\n", + " [ 7.52473372 -29.65778983]\n", + " [ 12.90073369 -29.65839633]\n", + " [ 18.27673365 -29.65900285]\n", + " [ 23.65273362 -29.65960936]\n", + " [ 29.02873359 -29.66021587]\n", + " [ 2.14934027 -24.28118335]\n", + " [ 7.52534023 -24.28178986]\n", + " [ 12.9013402 -24.28239637]\n", + " [ 18.27734016 -24.28300288]\n", + " [ 23.65334013 -24.28360939]\n", + " [ 29.02934009 -24.2842159 ]\n", + " [ 2.14994678 -18.90518338]\n", + " [ 7.52594674 -18.90578989]\n", + " [ 12.90194671 -18.9063964 ]\n", + " [ 18.27794667 -18.90700292]\n", + " [ 23.65394664 -18.90760943]\n", + " [ 29.0299466 -18.90821593]\n", + " [ 2.15055329 -13.52918342]\n", + " [ 7.52655325 -13.52978993]\n", + " [ 12.90255322 -13.53039644]\n", + " [ 18.27855318 -13.53100295]\n", + " [ 23.65455315 -13.53160946]\n", + " [ 29.03055312 -13.53221597]\n", + " [ 2.1511598 -8.15318346]\n", + " [ 7.52715976 -8.15378996]\n", + " [ 12.90315973 -8.15439647]\n", + " [ 18.27915969 -8.15500298]\n", + " [ 23.65515966 -8.15560949]\n", + " [ 29.03115962 -8.156216 ]\n", + " [ 2.1517663 -2.77718348]\n", + " [ 7.52776627 -2.77779 ]\n", + " [ 12.90376624 -2.77839651]\n", + " [ 18.2797662 -2.77900302]\n", + " [ 23.65576617 -2.77960953]\n", + " [ 29.03176613 -2.78021604]]\n", + "DEBUG:root:radec2pix: xyfp Shape: (96, 2)\n", + "DEBUG:root:optics_fp: sphi: [0.69982566 0.64476931 0.57746793 0.49593643 0.39882528 0.28620393\n", + " 0.16037903 0.02625233 0.69982566 0.75009571 0.80283424 0.85613459\n", + " 0.90691415 0.95088447 0.98304718 0.99887382 0.02625233 0.03040715\n", + " 0.0361152 0.04444666 0.05774576 0.08232094 0.14281086 0.49383445\n", + " 0.99887382 0.99848273 0.99784571 0.9967037 0.99434024 0.98812429\n", + " 0.96153048 0.49383445 0.67736143 0.60192204 0.50607224 0.38703053\n", + " 0.24501841 0.0853818 0.72119441 0.7846639 0.85006805 0.91223165\n", + " 0.96330774 0.9942014 0.02841071 0.03456004 0.04408579 0.06081407\n", + " 0.0978159 0.24575094 0.99869886 0.99806192 0.99681043 0.99380121\n", + " 0.98319296 0.87734751 0.69982226 0.69982226 0.49664714 0.49664714\n", + " 0.69936375 0.76547151 0.83490784 0.90228439 0.95875753 0.9934436\n", + " 0.62516601 0.69767805 0.77886705 0.86364983 0.94025457 0.99026714\n", + " 0.52909613 0.60411884 0.69504146 0.80008796 0.9067151 0.98409483\n", + " 0.40735858 0.47672806 0.56880658 0.69033382 0.83839063 0.9696195\n", + " 0.25937061 0.31041017 0.38442785 0.49818906 0.67954081 0.92235166\n", + " 0.0906953 0.11007561 0.13986822 0.1913293 0.29984194 0.62955934]\n", + "DEBUG:root:radec2pix: curVec: [[-0.1625752 0.17051983 -0.97184993]\n", + " [-0.13587259 0.17180428 -0.97571611]\n", + " [-0.10851963 0.1731382 -0.97890074]\n", + " [-0.0806276 0.17449379 -0.98135167]\n", + " [-0.05230773 0.17584787 -0.98302667]\n", + " [-0.02367145 0.17718182 -0.98389342]\n", + " [ 0.00516926 0.17848128 -0.98392973]\n", + " [ 0.03410186 0.17973571 -0.98312366]\n", + " [-0.1625752 0.17051983 -0.97184993]\n", + " [-0.16575861 0.19670243 -0.96634995]\n", + " [-0.16873606 0.22332134 -0.96002902]\n", + " [-0.1715024 0.25025075 -0.95287013]\n", + " [-0.17405175 0.27736902 -0.94486635]\n", + " [-0.17637736 0.30455829 -0.93602098]\n", + " [-0.17847202 0.33170413 -0.92634773]\n", + " [-0.18032844 0.3586954 -0.91587077]\n", + " [ 0.03410186 0.17973571 -0.98312366]\n", + " [ 0.03266024 0.207091 -0.97777637]\n", + " [ 0.0311654 0.23483944 -0.97153443]\n", + " [ 0.02962166 0.26286011 -0.96437914]\n", + " [ 0.02803369 0.29103506 -0.95630158]\n", + " [ 0.02640666 0.31924749 -0.9473034 ]\n", + " [ 0.02474621 0.34738101 -0.93739749]\n", + " [ 0.02305848 0.37531989 -0.92660849]\n", + " [-0.18032844 0.3586954 -0.91587077]\n", + " [-0.15273255 0.36186538 -0.91963374]\n", + " [-0.12446999 0.3648104 -0.92272455]\n", + " [-0.0956468 0.36750252 -0.92509112]\n", + " [-0.06637026 0.36991773 -0.92669081]\n", + " [-0.03675063 0.37203585 -0.92749055]\n", + " [-0.00690191 0.37384064 -0.92746727]\n", + " [ 0.02305848 0.37531989 -0.92660849]\n", + " [-0.1510307 0.17116093 -0.97359831]\n", + " [-0.11785145 0.17277337 -0.97788568]\n", + " [-0.08380592 0.1744318 -0.98109638]\n", + " [-0.04909887 0.17609159 -0.98314854]\n", + " [-0.01393549 0.17771845 -0.9839827 ]\n", + " [ 0.02147782 0.17928753 -0.98356224]\n", + " [-0.16389774 0.18187843 -0.96956576]\n", + " [-0.16766049 0.21427868 -0.96227574]\n", + " [-0.17110901 0.2472088 -0.95373451]\n", + " [-0.17423278 0.28044309 -0.94392511]\n", + " [-0.17701945 0.31376456 -0.93285364]\n", + " [-0.17945568 0.3469639 -0.92054968]\n", + " [ 0.03338075 0.19160222 -0.98090484]\n", + " [ 0.03157658 0.22540871 -0.97375245]\n", + " [ 0.02969691 0.25968515 -0.96523661]\n", + " [ 0.02775021 0.29421328 -0.95533684]\n", + " [ 0.02574597 0.32877799 -0.94405624]\n", + " [ 0.0236948 0.36316523 -0.93142341]\n", + " [-0.16837937 0.36001094 -0.91762765]\n", + " [-0.13409609 0.36374762 -0.92179494]\n", + " [-0.0989168 0.36711837 -0.92489976]\n", + " [-0.06303837 0.37007736 -0.9268597 ]\n", + " [-0.02666386 0.37258749 -0.92761393]\n", + " [ 0.00999536 0.3746205 -0.92712436]\n", + " [-0.16249635 0.17061275 -0.97184681]\n", + " [-0.16249635 0.17061275 -0.97184681]\n", + " [ 0.02296178 0.37522032 -0.92665121]\n", + " [ 0.02296178 0.37522032 -0.92665121]\n", + " [-0.15238511 0.1824854 -0.97132788]\n", + " [-0.15603146 0.21504743 -0.9640585 ]\n", + " [-0.15938845 0.24813239 -0.95552375]\n", + " [-0.16244532 0.28151505 -0.94570651]\n", + " [-0.16518932 0.31497868 -0.93461271]\n", + " [-0.16760668 0.34831384 -0.92227191]\n", + " [-0.11907189 0.18424486 -0.97564118]\n", + " [-0.12238624 0.21721101 -0.96842191]\n", + " [-0.12548144 0.2506829 -0.95990233]\n", + " [-0.12834601 0.28443702 -0.95006467]\n", + " [-0.13096618 0.31825744 -0.9389143 ]\n", + " [-0.13332727 0.35193402 -0.92648059]\n", + " [-0.08489095 0.18602134 -0.97887159]\n", + " [-0.08786877 0.21931172 -0.97169 ]\n", + " [-0.0906968 0.25309452 -0.9631808 ]\n", + " [-0.09336314 0.2871481 -0.95332539]\n", + " [-0.09585365 0.3212571 -0.94212842]\n", + " [-0.09815337 0.35521035 -0.92961902]\n", + " [-0.05004666 0.18777047 -0.98093709]\n", + " [-0.05268183 0.22130615 -0.97378037]\n", + " [-0.05523545 0.25532446 -0.96527637]\n", + " [-0.0576959 0.2896054 -0.95540562]\n", + " [-0.06004956 0.3239339 -0.94417206]\n", + " [-0.06228201 0.35809761 -0.93160456]\n", + " [-0.01474401 0.18945835 -0.98177805]\n", + " [-0.01702979 0.22316137 -0.97463275]\n", + " [-0.01930127 0.25734015 -0.9661281 ]\n", + " [-0.02154783 0.29177581 -0.95624399]\n", + " [-0.02375722 0.32625335 -0.94498378]\n", + " [-0.0259163 0.36055941 -0.93237613]\n", + " [ 0.02081039 0.19106048 -0.98135764]\n", + " [ 0.01887982 0.22485357 -0.97420964]\n", + " [ 0.01689708 0.25911779 -0.96569791]\n", + " [ 0.01487126 0.29363482 -0.95580199]\n", + " [ 0.01281261 0.3281896 -0.94452497]\n", + " [ 0.01073245 0.36256816 -0.93189546]]\n", + "DEBUG:root:radec2pix: curVec Shape: (96, 3)\n", + "DEBUG:root:radec2pix: fitpx: [[-5.00000272e-01 -5.00000268e-01]\n", + " [-4.99999785e-01 2.91928572e+02]\n", + " [-4.99999908e-01 5.84357143e+02]\n", + " [-4.99999976e-01 8.76785714e+02]\n", + " [-4.99999814e-01 1.16921429e+03]\n", + " [-4.99999859e-01 1.46164286e+03]\n", + " [-4.99999732e-01 1.75407143e+03]\n", + " [-4.99999866e-01 2.04650000e+03]\n", + " [-5.00000272e-01 -5.00000268e-01]\n", + " [ 2.91928572e+02 -4.99999720e-01]\n", + " [ 5.84357143e+02 -5.00000140e-01]\n", + " [ 8.76785714e+02 -4.99999791e-01]\n", + " [ 1.16921429e+03 -4.99999975e-01]\n", + " [ 1.46164286e+03 -4.99999912e-01]\n", + " [ 1.75407143e+03 -4.99999978e-01]\n", + " [ 2.04650000e+03 -4.99999991e-01]\n", + " [-4.99999866e-01 2.04650000e+03]\n", + " [ 2.91928571e+02 2.04650000e+03]\n", + " [ 5.84357143e+02 2.04650000e+03]\n", + " [ 8.76785715e+02 2.04650000e+03]\n", + " [ 1.16921429e+03 2.04650000e+03]\n", + " [ 1.46164286e+03 2.04650000e+03]\n", + " [ 1.75407143e+03 2.04650000e+03]\n", + " [ 2.04650000e+03 2.04650000e+03]\n", + " [ 2.04650000e+03 -4.99999991e-01]\n", + " [ 2.04650000e+03 2.91928572e+02]\n", + " [ 2.04650000e+03 5.84357143e+02]\n", + " [ 2.04650000e+03 8.76785715e+02]\n", + " [ 2.04650000e+03 1.16921429e+03]\n", + " [ 2.04650000e+03 1.46164286e+03]\n", + " [ 2.04650000e+03 1.75407143e+03]\n", + " [ 2.04650000e+03 2.04650000e+03]\n", + " [ 5.00000192e-01 1.27000000e+02]\n", + " [ 4.99999990e-01 4.85400000e+02]\n", + " [ 4.99999881e-01 8.43800000e+02]\n", + " [ 5.00000044e-01 1.20220000e+03]\n", + " [ 4.99999938e-01 1.56060000e+03]\n", + " [ 5.00000069e-01 1.91900000e+03]\n", + " [ 1.27000000e+02 5.00000092e-01]\n", + " [ 4.85400000e+02 4.99999764e-01]\n", + " [ 8.43800000e+02 4.99999911e-01]\n", + " [ 1.20220000e+03 5.00000156e-01]\n", + " [ 1.56060000e+03 4.99999840e-01]\n", + " [ 1.91900000e+03 4.99999915e-01]\n", + " [ 1.27000000e+02 2.04550000e+03]\n", + " [ 4.85400000e+02 2.04550000e+03]\n", + " [ 8.43800000e+02 2.04550000e+03]\n", + " [ 1.20220000e+03 2.04550000e+03]\n", + " [ 1.56060000e+03 2.04550000e+03]\n", + " [ 1.91900000e+03 2.04550000e+03]\n", + " [ 2.04550000e+03 1.27000000e+02]\n", + " [ 2.04550000e+03 4.85400000e+02]\n", + " [ 2.04550000e+03 8.43800000e+02]\n", + " [ 2.04550000e+03 1.20220000e+03]\n", + " [ 2.04550000e+03 1.56060000e+03]\n", + " [ 2.04550000e+03 1.91900000e+03]\n", + " [ 4.99999957e-01 4.99999958e-01]\n", + " [ 4.99999957e-01 4.99999958e-01]\n", + " [ 2.04550000e+03 2.04550000e+03]\n", + " [ 2.04550000e+03 2.04550000e+03]\n", + " [ 1.27000000e+02 1.27000000e+02]\n", + " [ 4.85400000e+02 1.27000000e+02]\n", + " [ 8.43800000e+02 1.27000000e+02]\n", + " [ 1.20220000e+03 1.27000000e+02]\n", + " [ 1.56060000e+03 1.27000000e+02]\n", + " [ 1.91900000e+03 1.27000000e+02]\n", + " [ 1.27000000e+02 4.85400000e+02]\n", + " [ 4.85400000e+02 4.85400000e+02]\n", + " [ 8.43800000e+02 4.85400000e+02]\n", + " [ 1.20220000e+03 4.85400000e+02]\n", + " [ 1.56060000e+03 4.85400000e+02]\n", + " [ 1.91900000e+03 4.85400000e+02]\n", + " [ 1.27000000e+02 8.43800000e+02]\n", + " [ 4.85400000e+02 8.43800000e+02]\n", + " [ 8.43800000e+02 8.43800000e+02]\n", + " [ 1.20220000e+03 8.43800000e+02]\n", + " [ 1.56060000e+03 8.43800000e+02]\n", + " [ 1.91900000e+03 8.43800000e+02]\n", + " [ 1.27000000e+02 1.20220000e+03]\n", + " [ 4.85400000e+02 1.20220000e+03]\n", + " [ 8.43800000e+02 1.20220000e+03]\n", + " [ 1.20220000e+03 1.20220000e+03]\n", + " [ 1.56060000e+03 1.20220000e+03]\n", + " [ 1.91900000e+03 1.20220000e+03]\n", + " [ 1.27000000e+02 1.56060000e+03]\n", + " [ 4.85400000e+02 1.56060000e+03]\n", + " [ 8.43800000e+02 1.56060000e+03]\n", + " [ 1.20220000e+03 1.56060000e+03]\n", + " [ 1.56060000e+03 1.56060000e+03]\n", + " [ 1.91900000e+03 1.56060000e+03]\n", + " [ 1.27000000e+02 1.91900000e+03]\n", + " [ 4.85400000e+02 1.91900000e+03]\n", + " [ 8.43800000e+02 1.91900000e+03]\n", + " [ 1.20220000e+03 1.91900000e+03]\n", + " [ 1.56060000e+03 1.91900000e+03]\n", + " [ 1.91900000e+03 1.91900000e+03]]\n", + "DEBUG:root:fitpix2pix: ccdpx: shape: (96, 2)\n", + "DEBUG:root:fitpix2pix: visCut: True\n", + "DEBUG:root:mm_to_pix: fitpx: [[0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]]\n", + "DEBUG:root:mm_to_pix: fitpx.shape: (96, 2)\n", + "DEBUG:root:radec2pix: xyfp: [[32.23341696 31.55141621]\n", + " [32.23194958 27.16498788]\n", + " [32.2304822 22.77855956]\n", + " [32.22901483 18.39213124]\n", + " [32.22754745 14.00570291]\n", + " [32.22608007 9.61927458]\n", + " [32.22461269 5.23284626]\n", + " [32.2231453 0.84641793]\n", + " [32.23341696 31.55141621]\n", + " [27.84698864 31.5528836 ]\n", + " [23.46056031 31.55435097]\n", + " [19.07413198 31.55581835]\n", + " [14.68770366 31.55728573]\n", + " [10.30127533 31.55875311]\n", + " [ 5.91484701 31.56022049]\n", + " [ 1.52841868 31.56168787]\n", + " [32.2231453 0.84641793]\n", + " [27.83671698 0.84788531]\n", + " [23.45028865 0.84935269]\n", + " [19.06386033 0.85082007]\n", + " [14.677432 0.85228745]\n", + " [10.29100367 0.85375483]\n", + " [ 5.90457535 0.85522221]\n", + " [ 1.51814702 0.85668959]\n", + " [ 1.52841868 31.56168787]\n", + " [ 1.5269513 27.17525955]\n", + " [ 1.52548392 22.78883122]\n", + " [ 1.52401654 18.4024029 ]\n", + " [ 1.52254916 14.01597457]\n", + " [ 1.52108178 9.62954624]\n", + " [ 1.5196144 5.24311792]\n", + " [ 1.51814702 0.85668959]\n", + " [32.21777718 29.63892134]\n", + " [32.21597876 24.26292164]\n", + " [32.21418034 18.88692194]\n", + " [32.21238193 13.51092224]\n", + " [32.21058351 8.13492254]\n", + " [32.20878509 2.75892284]\n", + " [30.32091205 31.53705599]\n", + " [24.94491236 31.53885442]\n", + " [19.56891265 31.54065283]\n", + " [14.19291295 31.54245125]\n", + " [ 8.81691325 31.54424967]\n", + " [ 3.44091356 31.54604808]\n", + " [30.31065043 0.86205771]\n", + " [24.93465073 0.86385613]\n", + " [19.55865103 0.86565455]\n", + " [14.18265134 0.86745297]\n", + " [ 8.80665163 0.86925139]\n", + " [ 3.43065193 0.8710498 ]\n", + " [ 1.5427789 29.64918296]\n", + " [ 1.54098048 24.27318326]\n", + " [ 1.53918206 18.89718357]\n", + " [ 1.53738364 13.52118387]\n", + " [ 1.53558522 8.14518416]\n", + " [ 1.5337868 2.76918446]\n", + " [32.21841195 31.53642123]\n", + " [32.21841195 31.53642123]\n", + " [ 1.53315204 0.87168457]\n", + " [ 1.53315204 0.87168457]\n", + " [30.32027729 29.6395561 ]\n", + " [24.94427759 29.64135452]\n", + " [19.56827789 29.64315294]\n", + " [14.19227819 29.64495136]\n", + " [ 8.81627849 29.64674978]\n", + " [ 3.44027879 29.6485482 ]\n", + " [30.31847887 24.2635564 ]\n", + " [24.94247917 24.26535482]\n", + " [19.56647947 24.26715324]\n", + " [14.19047977 24.26895166]\n", + " [ 8.81448007 24.27075007]\n", + " [ 3.43848037 24.2725485 ]\n", + " [30.31668045 18.8875567 ]\n", + " [24.94068075 18.88935513]\n", + " [19.56468105 18.89115354]\n", + " [14.18868135 18.89295196]\n", + " [ 8.81268165 18.89475038]\n", + " [ 3.43668195 18.89654879]\n", + " [30.31488203 13.51155701]\n", + " [24.93888233 13.51335542]\n", + " [19.56288263 13.51515384]\n", + " [14.18688293 13.51695226]\n", + " [ 8.81088324 13.51875068]\n", + " [ 3.43488354 13.5205491 ]\n", + " [30.31308361 8.13555731]\n", + " [24.93708392 8.13735572]\n", + " [19.56108422 8.13915414]\n", + " [14.18508451 8.14095256]\n", + " [ 8.80908482 8.14275098]\n", + " [ 3.43308512 8.1445494 ]\n", + " [30.31128519 2.75955761]\n", + " [24.93528549 2.76135602]\n", + " [19.5592858 2.76315444]\n", + " [14.18328609 2.76495286]\n", + " [ 8.8072864 2.76675128]\n", + " [ 3.4312867 2.7685497 ]]\n", + "DEBUG:root:radec2pix: xyfp Shape: (96, 2)\n", + "DEBUG:root:optics_fp: xyfp: [[-32.203794 -31.5506227 ]\n", + " [-32.20328688 -27.16419416]\n", + " [-32.20277976 -22.77776561]\n", + " [-32.20227264 -18.39133707]\n", + " [-32.20176553 -14.00490853]\n", + " [-32.20125841 -9.61847999]\n", + " [-32.20075129 -5.23205144]\n", + " [-32.20024417 -0.8456229 ]\n", + " [-32.203794 -31.5506227 ]\n", + " [-27.81736545 -31.55112981]\n", + " [-23.43093691 -31.55163693]\n", + " [-19.04450837 -31.55214405]\n", + " [-14.65807983 -31.55265117]\n", + " [-10.27165129 -31.55315829]\n", + " [ -5.88522274 -31.5536654 ]\n", + " [ -1.4987942 -31.55417252]\n", + " [-32.20024417 -0.8456229 ]\n", + " [-27.81381563 -0.84613002]\n", + " [-23.42738708 -0.84663714]\n", + " [-19.04095854 -0.84714426]\n", + " [-14.65453 -0.84765137]\n", + " [-10.26810146 -0.84815849]\n", + " [ -5.88167292 -0.84866561]\n", + " [ -1.49524438 -0.84917273]\n", + " [ -1.4987942 -31.55417252]\n", + " [ -1.49828708 -27.16774398]\n", + " [ -1.49777997 -22.78131544]\n", + " [ -1.49727285 -18.39488689]\n", + " [ -1.49676573 -14.00845835]\n", + " [ -1.49625861 -9.62202981]\n", + " [ -1.49575149 -5.23560127]\n", + " [ -1.49524438 -0.84917273]\n", + " [-32.18857289 -29.63812445]\n", + " [-32.18795136 -24.26212448]\n", + " [-32.18732984 -18.88612452]\n", + " [-32.18670832 -13.51012455]\n", + " [-32.1860868 -8.13412459]\n", + " [-32.18546528 -2.75812462]\n", + " [-30.29129227 -31.5358438 ]\n", + " [-24.91529231 -31.53646533]\n", + " [-19.53929235 -31.53708685]\n", + " [-14.16329238 -31.53770837]\n", + " [ -8.78729242 -31.53832989]\n", + " [ -3.41129245 -31.53895142]\n", + " [-30.28774592 -0.86084401]\n", + " [-24.91174595 -0.86146553]\n", + " [-19.53574599 -0.86208705]\n", + " [-14.15974603 -0.86270858]\n", + " [ -8.78374606 -0.8633301 ]\n", + " [ -3.4077461 -0.86395162]\n", + " [ -1.5135731 -29.6416708 ]\n", + " [ -1.51295157 -24.26567084]\n", + " [ -1.51233005 -18.88967087]\n", + " [ -1.51170853 -13.51367091]\n", + " [ -1.51108701 -8.13767095]\n", + " [ -1.51046548 -2.76167097]\n", + " [-32.18879227 -31.53562444]\n", + " [-32.18879227 -31.53562444]\n", + " [ -1.51024611 -0.86417099]\n", + " [ -1.51024611 -0.86417099]\n", + " [-30.29107291 -29.63834382]\n", + " [-24.91507294 -29.63896534]\n", + " [-19.53907298 -29.63958686]\n", + " [-14.16307301 -29.64020839]\n", + " [ -8.78707305 -29.64082991]\n", + " [ -3.41107308 -29.64145143]\n", + " [-30.29045138 -24.26234385]\n", + " [-24.91445142 -24.26296538]\n", + " [-19.53845145 -24.2635869 ]\n", + " [-14.16245149 -24.26420842]\n", + " [ -8.78645152 -24.26482994]\n", + " [ -3.41045156 -24.26545147]\n", + " [-30.28982986 -18.88634389]\n", + " [-24.91382989 -18.88696541]\n", + " [-19.53782993 -18.88758693]\n", + " [-14.16182997 -18.88820846]\n", + " [ -8.78583 -18.88882997]\n", + " [ -3.40983004 -18.8894515 ]\n", + " [-30.28920834 -13.51034392]\n", + " [-24.91320837 -13.51096545]\n", + " [-19.53720841 -13.51158697]\n", + " [-14.16120844 -13.51220849]\n", + " [ -8.78520848 -13.51283002]\n", + " [ -3.40920852 -13.51345154]\n", + " [-30.28858681 -8.13434396]\n", + " [-24.91258685 -8.13496548]\n", + " [-19.53658688 -8.135587 ]\n", + " [-14.16058692 -8.13620852]\n", + " [ -8.78458696 -8.13683005]\n", + " [ -3.40858699 -8.13745157]\n", + " [-30.28796529 -2.75834399]\n", + " [-24.91196532 -2.75896552]\n", + " [-19.53596536 -2.75958704]\n", + " [-14.1599654 -2.76020856]\n", + " [ -8.78396543 -2.76083009]\n", + " [ -3.40796547 -2.76145161]]\n", + "DEBUG:root:optics_fp: xyfp shape: (96, 2)\n", + "DEBUG:root:mm_to_pix: fitpx: [[0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]]\n", + "DEBUG:root:mm_to_pix: fitpx.shape: (96, 2)\n", + "DEBUG:root:radec2pix: camVec: [[-0.20607518 -0.20787446 -0.20940354 -0.21066179 -0.21164814 -0.21236112\n", + " -0.21279916 -0.21296107 -0.20607518 -0.17964954 -0.15251864 -0.12479221\n", + " -0.09658011 -0.06799262 -0.03914089 -0.01013708 -0.21296107 -0.18561075\n", + " -0.15755214 -0.12888979 -0.09972928 -0.07017922 -0.04035219 -0.01036463\n", + " -0.01013708 -0.01020871 -0.01026764 -0.01031373 -0.01034674 -0.01036638\n", + " -0.0103724 -0.01036463 -0.20680345 -0.20882603 -0.21044235 -0.21165063\n", + " -0.2124482 -0.2128323 -0.19465346 -0.16177694 -0.12795009 -0.0933751\n", + " -0.05825505 -0.022795 -0.20112996 -0.16711987 -0.13214975 -0.09641349\n", + " -0.0601111 -0.02345151 -0.01026957 -0.0103498 -0.01041065 -0.01045169\n", + " -0.01047241 -0.01047238 -0.20599275 -0.20599275 -0.01046737 -0.01046737\n", + " -0.19541667 -0.16240545 -0.12844349 -0.09373247 -0.05847519 -0.02287686\n", + " -0.19732118 -0.16397526 -0.12967711 -0.09462661 -0.05902568 -0.02308015\n", + " -0.19884383 -0.16523235 -0.13066656 -0.09534433 -0.05946678 -0.02324061\n", + " -0.19998259 -0.16617376 -0.13140827 -0.09588212 -0.05979589 -0.0233572\n", + " -0.20073433 -0.16679525 -0.13189744 -0.09623556 -0.06000982 -0.02342863\n", + " -0.20109591 -0.16709274 -0.13212968 -0.09640067 -0.06010576 -0.0234538 ]\n", + " [-0.20019593 -0.17367087 -0.14646307 -0.11868235 -0.09043873 -0.0618427\n", + " -0.03300558 -0.0040396 -0.20019593 -0.20202839 -0.20359907 -0.20490731\n", + " -0.20595196 -0.20673135 -0.20724368 -0.20748743 -0.0040396 -0.00409191\n", + " -0.0041395 -0.00418225 -0.00421998 -0.00425248 -0.00427955 -0.00430103\n", + " -0.20748743 -0.17998755 -0.15180051 -0.12303089 -0.0937848 -0.06417157\n", + " -0.03430461 -0.00430103 -0.18872819 -0.15574492 -0.12184525 -0.0872316\n", + " -0.05210744 -0.0166781 -0.20093724 -0.20300612 -0.20468137 -0.20596106\n", + " -0.20684219 -0.20732153 -0.00416252 -0.00422448 -0.00427905 -0.00432591\n", + " -0.00436469 -0.00439503 -0.19558822 -0.16140908 -0.12630166 -0.09046055\n", + " -0.05408714 -0.0173918 -0.20011322 -0.20011322 -0.00440367 -0.00440367\n", + " -0.18950334 -0.19145029 -0.19302803 -0.19423441 -0.195066 -0.19551916\n", + " -0.15638145 -0.15798254 -0.1592836 -0.16028164 -0.16097217 -0.16135064\n", + " -0.12234264 -0.1235961 -0.12461804 -0.12540495 -0.1259519 -0.1262541\n", + " -0.08758892 -0.08849133 -0.08922984 -0.08980108 -0.09020062 -0.09042422\n", + " -0.05232353 -0.0528708 -0.053321 -0.05367171 -0.05391982 -0.0540624\n", + " -0.016752 -0.01694088 -0.01709901 -0.01722548 -0.01731915 -0.01737894]\n", + " [ 0.95783851 0.96261448 0.96679818 0.97032784 0.97315256 0.9752324\n", + " 0.97653835 0.97705233 0.95783851 0.96276195 0.96710159 0.97079344\n", + " 0.97378441 0.97603235 0.97750603 0.97818516 0.97705233 0.98261483\n", + " 0.98750199 0.99165011 0.99500566 0.99752533 0.99917635 0.99993704\n", + " 0.97818516 0.98361591 0.98835782 0.99234925 0.99553873 0.99788504\n", + " 0.9993576 0.99993704 0.96000729 0.96547149 0.96998338 0.97344474\n", + " 0.97578203 0.97694639 0.96006992 0.96572084 0.97042996 0.97409503\n", + " 0.97663845 0.97800724 0.97955572 0.98592753 0.99122053 0.99533197\n", + " 0.99818215 0.99971531 0.98063234 0.98683331 0.99193725 0.99584519\n", + " 0.9984813 0.99979391 0.95787352 0.95787352 0.99993552 0.99993552\n", + " 0.9622374 0.96797276 0.97274994 0.9764667 0.97904541 0.98043302\n", + " 0.96778572 0.97373181 0.978679 0.98252511 0.98519233 0.98662722\n", + " 0.97236485 0.97847957 0.98356321 0.98751357 0.9902524 0.99172566\n", + " 0.9758766 0.9821179 0.98730436 0.99133364 0.9941269 0.9956294\n", + " 0.9782474 0.98457302 0.98982824 0.99391049 0.99674043 0.99826267\n", + " 0.97942831 0.98579563 0.99108495 0.99519355 0.99804176 0.99957386]]\n", + "DEBUG:root:radec2pix: camVec Shape: (3, 96)\n", + "DEBUG:root:radec2pix: xyfp: [[ 0.236018 -31.56946754]\n", + " [ 0.23651287 -27.18303899]\n", + " [ 0.23700774 -22.79661046]\n", + " [ 0.23750261 -18.41018192]\n", + " [ 0.23799748 -14.02375336]\n", + " [ 0.23849235 -9.63732482]\n", + " [ 0.23898721 -5.25089628]\n", + " [ 0.23948208 -0.86446773]\n", + " [ 0.236018 -31.56946754]\n", + " [ 4.62244655 -31.56996241]\n", + " [ 9.00887509 -31.57045728]\n", + " [ 13.39530363 -31.57095214]\n", + " [ 17.78173218 -31.57144701]\n", + " [ 22.16816072 -31.57194188]\n", + " [ 26.55458927 -31.57243675]\n", + " [ 30.94101781 -31.57293162]\n", + " [ 0.23948208 -0.86446773]\n", + " [ 4.62591062 -0.8649626 ]\n", + " [ 9.01233917 -0.86545747]\n", + " [ 13.39876771 -0.86595234]\n", + " [ 17.78519626 -0.86644721]\n", + " [ 22.1716248 -0.86694208]\n", + " [ 26.55805334 -0.86743695]\n", + " [ 30.94448189 -0.86793181]\n", + " [ 30.94101781 -31.57293162]\n", + " [ 30.94151268 -27.18650307]\n", + " [ 30.94200754 -22.80007453]\n", + " [ 30.94250242 -18.41364599]\n", + " [ 30.94299728 -14.02721745]\n", + " [ 30.94349215 -9.6407889 ]\n", + " [ 30.94398702 -5.25436036]\n", + " [ 30.94448189 -0.86793181]\n", + " [ 0.25123377 -29.65696924]\n", + " [ 0.25184028 -24.28096928]\n", + " [ 0.25244679 -18.90496931]\n", + " [ 0.2530533 -13.52896935]\n", + " [ 0.25365981 -8.15296938]\n", + " [ 0.25426632 -2.77696942]\n", + " [ 2.14851968 -31.5546833 ]\n", + " [ 7.52451965 -31.55528981]\n", + " [ 12.90051962 -31.55589633]\n", + " [ 18.27651958 -31.55650284]\n", + " [ 23.65251954 -31.55710934]\n", + " [ 29.02851952 -31.55771586]\n", + " [ 2.15198038 -0.8796835 ]\n", + " [ 7.52798035 -0.88029001]\n", + " [ 12.90398031 -0.88089652]\n", + " [ 18.27998027 -0.88150303]\n", + " [ 23.65598025 -0.88210954]\n", + " [ 29.03198021 -0.88271605]\n", + " [ 30.92623357 -29.66042994]\n", + " [ 30.92684009 -24.28442998]\n", + " [ 30.9274466 -18.90843001]\n", + " [ 30.9280531 -13.53243004]\n", + " [ 30.92865961 -8.15643008]\n", + " [ 30.92926612 -2.78043011]\n", + " [ 0.2510197 -31.55446923]\n", + " [ 0.2510197 -31.55446923]\n", + " [ 30.9294802 -0.88293012]\n", + " [ 30.9294802 -0.88293012]\n", + " [ 2.14873376 -29.65718332]\n", + " [ 7.52473372 -29.65778983]\n", + " [ 12.90073369 -29.65839633]\n", + " [ 18.27673365 -29.65900285]\n", + " [ 23.65273362 -29.65960936]\n", + " [ 29.02873359 -29.66021587]\n", + " [ 2.14934027 -24.28118335]\n", + " [ 7.52534023 -24.28178986]\n", + " [ 12.9013402 -24.28239637]\n", + " [ 18.27734016 -24.28300288]\n", + " [ 23.65334013 -24.28360939]\n", + " [ 29.02934009 -24.2842159 ]\n", + " [ 2.14994678 -18.90518338]\n", + " [ 7.52594674 -18.90578989]\n", + " [ 12.90194671 -18.9063964 ]\n", + " [ 18.27794667 -18.90700292]\n", + " [ 23.65394664 -18.90760943]\n", + " [ 29.0299466 -18.90821593]\n", + " [ 2.15055329 -13.52918342]\n", + " [ 7.52655325 -13.52978993]\n", + " [ 12.90255322 -13.53039644]\n", + " [ 18.27855318 -13.53100295]\n", + " [ 23.65455315 -13.53160946]\n", + " [ 29.03055312 -13.53221597]\n", + " [ 2.1511598 -8.15318346]\n", + " [ 7.52715976 -8.15378996]\n", + " [ 12.90315973 -8.15439647]\n", + " [ 18.27915969 -8.15500298]\n", + " [ 23.65515966 -8.15560949]\n", + " [ 29.03115962 -8.156216 ]\n", + " [ 2.1517663 -2.77718348]\n", + " [ 7.52776627 -2.77779 ]\n", + " [ 12.90376624 -2.77839651]\n", + " [ 18.2797662 -2.77900302]\n", + " [ 23.65576617 -2.77960953]\n", + " [ 29.03176613 -2.78021604]]\n", + "DEBUG:root:make_az_asym: xyp: [[-32.203794 -31.5506227 ]\n", + " [-32.20328688 -27.16419416]\n", + " [-32.20277976 -22.77776561]\n", + " [-32.20227264 -18.39133707]\n", + " [-32.20176553 -14.00490853]\n", + " [-32.20125841 -9.61847999]\n", + " [-32.20075129 -5.23205144]\n", + " [-32.20024417 -0.8456229 ]\n", + " [-32.203794 -31.5506227 ]\n", + " [-27.81736545 -31.55112981]\n", + " [-23.43093691 -31.55163693]\n", + " [-19.04450837 -31.55214405]\n", + " [-14.65807983 -31.55265117]\n", + " [-10.27165129 -31.55315829]\n", + " [ -5.88522274 -31.5536654 ]\n", + " [ -1.4987942 -31.55417252]\n", + " [-32.20024417 -0.8456229 ]\n", + " [-27.81381563 -0.84613002]\n", + " [-23.42738708 -0.84663714]\n", + " [-19.04095854 -0.84714426]\n", + " [-14.65453 -0.84765137]\n", + " [-10.26810146 -0.84815849]\n", + " [ -5.88167292 -0.84866561]\n", + " [ -1.49524438 -0.84917273]\n", + " [ -1.4987942 -31.55417252]\n", + " [ -1.49828708 -27.16774398]\n", + " [ -1.49777997 -22.78131544]\n", + " [ -1.49727285 -18.39488689]\n", + " [ -1.49676573 -14.00845835]\n", + " [ -1.49625861 -9.62202981]\n", + " [ -1.49575149 -5.23560127]\n", + " [ -1.49524438 -0.84917273]\n", + " [-32.18857289 -29.63812445]\n", + " [-32.18795136 -24.26212448]\n", + " [-32.18732984 -18.88612452]\n", + " [-32.18670832 -13.51012455]\n", + " [-32.1860868 -8.13412459]\n", + " [-32.18546528 -2.75812462]\n", + " [-30.29129227 -31.5358438 ]\n", + " [-24.91529231 -31.53646533]\n", + " [-19.53929235 -31.53708685]\n", + " [-14.16329238 -31.53770837]\n", + " [ -8.78729242 -31.53832989]\n", + " [ -3.41129245 -31.53895142]\n", + " [-30.28774592 -0.86084401]\n", + " [-24.91174595 -0.86146553]\n", + " [-19.53574599 -0.86208705]\n", + " [-14.15974603 -0.86270858]\n", + " [ -8.78374606 -0.8633301 ]\n", + " [ -3.4077461 -0.86395162]\n", + " [ -1.5135731 -29.6416708 ]\n", + " [ -1.51295157 -24.26567084]\n", + " [ -1.51233005 -18.88967087]\n", + " [ -1.51170853 -13.51367091]\n", + " [ -1.51108701 -8.13767095]\n", + " [ -1.51046548 -2.76167097]\n", + " [-32.18879227 -31.53562444]\n", + " [-32.18879227 -31.53562444]\n", + " [ -1.51024611 -0.86417099]\n", + " [ -1.51024611 -0.86417099]\n", + " [-30.29107291 -29.63834382]\n", + " [-24.91507294 -29.63896534]\n", + " [-19.53907298 -29.63958686]\n", + " [-14.16307301 -29.64020839]\n", + " [ -8.78707305 -29.64082991]\n", + " [ -3.41107308 -29.64145143]\n", + " [-30.29045138 -24.26234385]\n", + " [-24.91445142 -24.26296538]\n", + " [-19.53845145 -24.2635869 ]\n", + " [-14.16245149 -24.26420842]\n", + " [ -8.78645152 -24.26482994]\n", + " [ -3.41045156 -24.26545147]\n", + " [-30.28982986 -18.88634389]\n", + " [-24.91382989 -18.88696541]\n", + " [-19.53782993 -18.88758693]\n", + " [-14.16182997 -18.88820846]\n", + " [ -8.78583 -18.88882997]\n", + " [ -3.40983004 -18.8894515 ]\n", + " [-30.28920834 -13.51034392]\n", + " [-24.91320837 -13.51096545]\n", + " [-19.53720841 -13.51158697]\n", + " [-14.16120844 -13.51220849]\n", + " [ -8.78520848 -13.51283002]\n", + " [ -3.40920852 -13.51345154]\n", + " [-30.28858681 -8.13434396]\n", + " [-24.91258685 -8.13496548]\n", + " [-19.53658688 -8.135587 ]\n", + " [-14.16058692 -8.13620852]\n", + " [ -8.78458696 -8.13683005]\n", + " [ -3.40858699 -8.13745157]\n", + " [-30.28796529 -2.75834399]\n", + " [-24.91196532 -2.75896552]\n", + " [-19.53596536 -2.75958704]\n", + " [-14.1599654 -2.76020856]\n", + " [ -8.78396543 -2.76083009]\n", + " [ -3.40796547 -2.76145161]]\n", + "DEBUG:root:make_az_asym: xyp: shape: (96, 2)\n", + "DEBUG:root:radec2pix: xyfp: [[32.23341696 31.55141621]\n", + " [32.23194958 27.16498788]\n", + " [32.2304822 22.77855956]\n", + " [32.22901483 18.39213124]\n", + " [32.22754745 14.00570291]\n", + " [32.22608007 9.61927458]\n", + " [32.22461269 5.23284626]\n", + " [32.2231453 0.84641793]\n", + " [32.23341696 31.55141621]\n", + " [27.84698864 31.5528836 ]\n", + " [23.46056031 31.55435097]\n", + " [19.07413198 31.55581835]\n", + " [14.68770366 31.55728573]\n", + " [10.30127533 31.55875311]\n", + " [ 5.91484701 31.56022049]\n", + " [ 1.52841868 31.56168787]\n", + " [32.2231453 0.84641793]\n", + " [27.83671698 0.84788531]\n", + " [23.45028865 0.84935269]\n", + " [19.06386033 0.85082007]\n", + " [14.677432 0.85228745]\n", + " [10.29100367 0.85375483]\n", + " [ 5.90457535 0.85522221]\n", + " [ 1.51814702 0.85668959]\n", + " [ 1.52841868 31.56168787]\n", + " [ 1.5269513 27.17525955]\n", + " [ 1.52548392 22.78883122]\n", + " [ 1.52401654 18.4024029 ]\n", + " [ 1.52254916 14.01597457]\n", + " [ 1.52108178 9.62954624]\n", + " [ 1.5196144 5.24311792]\n", + " [ 1.51814702 0.85668959]\n", + " [32.21777718 29.63892134]\n", + " [32.21597876 24.26292164]\n", + " [32.21418034 18.88692194]\n", + " [32.21238193 13.51092224]\n", + " [32.21058351 8.13492254]\n", + " [32.20878509 2.75892284]\n", + " [30.32091205 31.53705599]\n", + " [24.94491236 31.53885442]\n", + " [19.56891265 31.54065283]\n", + " [14.19291295 31.54245125]\n", + " [ 8.81691325 31.54424967]\n", + " [ 3.44091356 31.54604808]\n", + " [30.31065043 0.86205771]\n", + " [24.93465073 0.86385613]\n", + " [19.55865103 0.86565455]\n", + " [14.18265134 0.86745297]\n", + " [ 8.80665163 0.86925139]\n", + " [ 3.43065193 0.8710498 ]\n", + " [ 1.5427789 29.64918296]\n", + " [ 1.54098048 24.27318326]\n", + " [ 1.53918206 18.89718357]\n", + " [ 1.53738364 13.52118387]\n", + " [ 1.53558522 8.14518416]\n", + " [ 1.5337868 2.76918446]\n", + " [32.21841195 31.53642123]\n", + " [32.21841195 31.53642123]\n", + " [ 1.53315204 0.87168457]\n", + " [ 1.53315204 0.87168457]\n", + " [30.32027729 29.6395561 ]\n", + " [24.94427759 29.64135452]\n", + " [19.56827789 29.64315294]\n", + " [14.19227819 29.64495136]\n", + " [ 8.81627849 29.64674978]\n", + " [ 3.44027879 29.6485482 ]\n", + " [30.31847887 24.2635564 ]\n", + " [24.94247917 24.26535482]\n", + " [19.56647947 24.26715324]\n", + " [14.19047977 24.26895166]\n", + " [ 8.81448007 24.27075007]\n", + " [ 3.43848037 24.2725485 ]\n", + " [30.31668045 18.8875567 ]\n", + " [24.94068075 18.88935513]\n", + " [19.56468105 18.89115354]\n", + " [14.18868135 18.89295196]\n", + " [ 8.81268165 18.89475038]\n", + " [ 3.43668195 18.89654879]\n", + " [30.31488203 13.51155701]\n", + " [24.93888233 13.51335542]\n", + " [19.56288263 13.51515384]\n", + " [14.18688293 13.51695226]\n", + " [ 8.81088324 13.51875068]\n", + " [ 3.43488354 13.5205491 ]\n", + " [30.31308361 8.13555731]\n", + " [24.93708392 8.13735572]\n", + " [19.56108422 8.13915414]\n", + " [14.18508451 8.14095256]\n", + " [ 8.80908482 8.14275098]\n", + " [ 3.43308512 8.1445494 ]\n", + " [30.31128519 2.75955761]\n", + " [24.93528549 2.76135602]\n", + " [19.5592858 2.76315444]\n", + " [14.18328609 2.76495286]\n", + " [ 8.8072864 2.76675128]\n", + " [ 3.4312867 2.7685497 ]]\n", + "DEBUG:root:radec2pix: ccdpx: [[-4.45000000e+01 -4.99999797e-01]\n", + " [-4.45000000e+01 2.91928572e+02]\n", + " [-4.45000000e+01 5.84357143e+02]\n", + " [-4.45000000e+01 8.76785714e+02]\n", + " [-4.45000000e+01 1.16921429e+03]\n", + " [-4.45000000e+01 1.46164286e+03]\n", + " [-4.45000000e+01 1.75407143e+03]\n", + " [-4.45000001e+01 2.04650000e+03]\n", + " [-4.45000000e+01 -4.99999797e-01]\n", + " [ 2.47928571e+02 -5.00000034e-01]\n", + " [ 5.40357143e+02 -4.99999972e-01]\n", + " [ 8.32785714e+02 -4.99999760e-01]\n", + " [ 1.12521429e+03 -5.00000049e-01]\n", + " [ 1.41764286e+03 -4.99999867e-01]\n", + " [ 1.71007143e+03 -5.00000044e-01]\n", + " [ 2.00250000e+03 -4.99999770e-01]\n", + " [-4.45000001e+01 2.04650000e+03]\n", + " [ 2.47928571e+02 2.04650000e+03]\n", + " [ 5.40357143e+02 2.04650000e+03]\n", + " [ 8.32785714e+02 2.04650000e+03]\n", + " [ 1.12521429e+03 2.04650000e+03]\n", + " [ 1.41764286e+03 2.04650000e+03]\n", + " [ 1.71007143e+03 2.04650000e+03]\n", + " [ 2.00250000e+03 2.04650000e+03]\n", + " [ 2.00250000e+03 -4.99999770e-01]\n", + " [ 2.00250000e+03 2.91928572e+02]\n", + " [ 2.00250000e+03 5.84357143e+02]\n", + " [ 2.00250000e+03 8.76785714e+02]\n", + " [ 2.00250000e+03 1.16921429e+03]\n", + " [ 2.00250000e+03 1.46164286e+03]\n", + " [ 2.00250000e+03 1.75407143e+03]\n", + " [ 2.00250000e+03 2.04650000e+03]\n", + " [-4.35000000e+01 1.27000000e+02]\n", + " [-4.35000000e+01 4.85400000e+02]\n", + " [-4.35000000e+01 8.43800000e+02]\n", + " [-4.35000000e+01 1.20220000e+03]\n", + " [-4.35000000e+01 1.56060000e+03]\n", + " [-4.35000000e+01 1.91900000e+03]\n", + " [ 8.30000000e+01 5.00000045e-01]\n", + " [ 4.41400000e+02 5.00000251e-01]\n", + " [ 7.99800000e+02 4.99999878e-01]\n", + " [ 1.15820000e+03 4.99999746e-01]\n", + " [ 1.51660000e+03 5.00000268e-01]\n", + " [ 1.87500000e+03 4.99999743e-01]\n", + " [ 8.29999998e+01 2.04550000e+03]\n", + " [ 4.41400000e+02 2.04550000e+03]\n", + " [ 7.99800000e+02 2.04550000e+03]\n", + " [ 1.15820000e+03 2.04550000e+03]\n", + " [ 1.51660000e+03 2.04550000e+03]\n", + " [ 1.87500000e+03 2.04550000e+03]\n", + " [ 2.00150000e+03 1.27000000e+02]\n", + " [ 2.00150000e+03 4.85400000e+02]\n", + " [ 2.00150000e+03 8.43800000e+02]\n", + " [ 2.00150000e+03 1.20220000e+03]\n", + " [ 2.00150000e+03 1.56060000e+03]\n", + " [ 2.00150000e+03 1.91900000e+03]\n", + " [-4.35000000e+01 5.00000140e-01]\n", + " [-4.35000000e+01 5.00000140e-01]\n", + " [ 2.00150000e+03 2.04550000e+03]\n", + " [ 2.00150000e+03 2.04550000e+03]\n", + " [ 8.30000000e+01 1.27000000e+02]\n", + " [ 4.41400000e+02 1.27000000e+02]\n", + " [ 7.99800000e+02 1.27000000e+02]\n", + " [ 1.15820000e+03 1.27000000e+02]\n", + " [ 1.51660000e+03 1.27000000e+02]\n", + " [ 1.87500000e+03 1.27000000e+02]\n", + " [ 8.30000000e+01 4.85400000e+02]\n", + " [ 4.41400000e+02 4.85400000e+02]\n", + " [ 7.99800000e+02 4.85400000e+02]\n", + " [ 1.15820000e+03 4.85400000e+02]\n", + " [ 1.51660000e+03 4.85400000e+02]\n", + " [ 1.87500000e+03 4.85400000e+02]\n", + " [ 8.30000000e+01 8.43800000e+02]\n", + " [ 4.41400000e+02 8.43800000e+02]\n", + " [ 7.99800000e+02 8.43800000e+02]\n", + " [ 1.15820000e+03 8.43800000e+02]\n", + " [ 1.51660000e+03 8.43800000e+02]\n", + " [ 1.87500000e+03 8.43800000e+02]\n", + " [ 8.30000000e+01 1.20220000e+03]\n", + " [ 4.41400000e+02 1.20220000e+03]\n", + " [ 7.99800000e+02 1.20220000e+03]\n", + " [ 1.15820000e+03 1.20220000e+03]\n", + " [ 1.51660000e+03 1.20220000e+03]\n", + " [ 1.87500000e+03 1.20220000e+03]\n", + " [ 8.30000001e+01 1.56060000e+03]\n", + " [ 4.41400000e+02 1.56060000e+03]\n", + " [ 7.99800000e+02 1.56060000e+03]\n", + " [ 1.15820000e+03 1.56060000e+03]\n", + " [ 1.51660000e+03 1.56060000e+03]\n", + " [ 1.87500000e+03 1.56060000e+03]\n", + " [ 8.29999998e+01 1.91900000e+03]\n", + " [ 4.41400000e+02 1.91900000e+03]\n", + " [ 7.99800000e+02 1.91900000e+03]\n", + " [ 1.15820000e+03 1.91900000e+03]\n", + " [ 1.51660000e+03 1.91900000e+03]\n", + " [ 1.87500000e+03 1.91900000e+03]]\n", + "DEBUG:root:cartToSphere: vec: [[-0.20607518 -0.20019593 0.95783851]\n", + " [-0.20787446 -0.17367087 0.96261448]\n", + " [-0.20940354 -0.14646307 0.96679818]\n", + " [-0.21066179 -0.11868235 0.97032784]\n", + " [-0.21164814 -0.09043873 0.97315256]\n", + " [-0.21236112 -0.0618427 0.9752324 ]\n", + " [-0.21279916 -0.03300558 0.97653835]\n", + " [-0.21296107 -0.0040396 0.97705233]\n", + " [-0.20607518 -0.20019593 0.95783851]\n", + " [-0.17964954 -0.20202839 0.96276195]\n", + " [-0.15251864 -0.20359907 0.96710159]\n", + " [-0.12479221 -0.20490731 0.97079344]\n", + " [-0.09658011 -0.20595196 0.97378441]\n", + " [-0.06799262 -0.20673135 0.97603235]\n", + " [-0.03914089 -0.20724368 0.97750603]\n", + " [-0.01013708 -0.20748743 0.97818516]\n", + " [-0.21296107 -0.0040396 0.97705233]\n", + " [-0.18561075 -0.00409191 0.98261483]\n", + " [-0.15755214 -0.0041395 0.98750199]\n", + " [-0.12888979 -0.00418225 0.99165011]\n", + " [-0.09972928 -0.00421998 0.99500566]\n", + " [-0.07017922 -0.00425248 0.99752533]\n", + " [-0.04035219 -0.00427955 0.99917635]\n", + " [-0.01036463 -0.00430103 0.99993704]\n", + " [-0.01013708 -0.20748743 0.97818516]\n", + " [-0.01020871 -0.17998755 0.98361591]\n", + " [-0.01026764 -0.15180051 0.98835782]\n", + " [-0.01031373 -0.12303089 0.99234925]\n", + " [-0.01034674 -0.0937848 0.99553873]\n", + " [-0.01036638 -0.06417157 0.99788504]\n", + " [-0.0103724 -0.03430461 0.9993576 ]\n", + " [-0.01036463 -0.00430103 0.99993704]\n", + " [-0.20680345 -0.18872819 0.96000729]\n", + " [-0.20882603 -0.15574492 0.96547149]\n", + " [-0.21044235 -0.12184525 0.96998338]\n", + " [-0.21165063 -0.0872316 0.97344474]\n", + " [-0.2124482 -0.05210744 0.97578203]\n", + " [-0.2128323 -0.0166781 0.97694639]\n", + " [-0.19465346 -0.20093724 0.96006992]\n", + " [-0.16177694 -0.20300612 0.96572084]\n", + " [-0.12795009 -0.20468137 0.97042996]\n", + " [-0.0933751 -0.20596106 0.97409503]\n", + " [-0.05825505 -0.20684219 0.97663845]\n", + " [-0.022795 -0.20732153 0.97800724]\n", + " [-0.20112996 -0.00416252 0.97955572]\n", + " [-0.16711987 -0.00422448 0.98592753]\n", + " [-0.13214975 -0.00427905 0.99122053]\n", + " [-0.09641349 -0.00432591 0.99533197]\n", + " [-0.0601111 -0.00436469 0.99818215]\n", + " [-0.02345151 -0.00439503 0.99971531]\n", + " [-0.01026957 -0.19558822 0.98063234]\n", + " [-0.0103498 -0.16140908 0.98683331]\n", + " [-0.01041065 -0.12630166 0.99193725]\n", + " [-0.01045169 -0.09046055 0.99584519]\n", + " [-0.01047241 -0.05408714 0.9984813 ]\n", + " [-0.01047238 -0.0173918 0.99979391]\n", + " [-0.20599275 -0.20011322 0.95787352]\n", + " [-0.20599275 -0.20011322 0.95787352]\n", + " [-0.01046737 -0.00440367 0.99993552]\n", + " [-0.01046737 -0.00440367 0.99993552]\n", + " [-0.19541667 -0.18950334 0.9622374 ]\n", + " [-0.16240545 -0.19145029 0.96797276]\n", + " [-0.12844349 -0.19302803 0.97274994]\n", + " [-0.09373247 -0.19423441 0.9764667 ]\n", + " [-0.05847519 -0.195066 0.97904541]\n", + " [-0.02287686 -0.19551916 0.98043302]\n", + " [-0.19732118 -0.15638145 0.96778572]\n", + " [-0.16397526 -0.15798254 0.97373181]\n", + " [-0.12967711 -0.1592836 0.978679 ]\n", + " [-0.09462661 -0.16028164 0.98252511]\n", + " [-0.05902568 -0.16097217 0.98519233]\n", + " [-0.02308015 -0.16135064 0.98662722]\n", + " [-0.19884383 -0.12234264 0.97236485]\n", + " [-0.16523235 -0.1235961 0.97847957]\n", + " [-0.13066656 -0.12461804 0.98356321]\n", + " [-0.09534433 -0.12540495 0.98751357]\n", + " [-0.05946678 -0.1259519 0.9902524 ]\n", + " [-0.02324061 -0.1262541 0.99172566]\n", + " [-0.19998259 -0.08758892 0.9758766 ]\n", + " [-0.16617376 -0.08849133 0.9821179 ]\n", + " [-0.13140827 -0.08922984 0.98730436]\n", + " [-0.09588212 -0.08980108 0.99133364]\n", + " [-0.05979589 -0.09020062 0.9941269 ]\n", + " [-0.0233572 -0.09042422 0.9956294 ]\n", + " [-0.20073433 -0.05232353 0.9782474 ]\n", + " [-0.16679525 -0.0528708 0.98457302]\n", + " [-0.13189744 -0.053321 0.98982824]\n", + " [-0.09623556 -0.05367171 0.99391049]\n", + " [-0.06000982 -0.05391982 0.99674043]\n", + " [-0.02342863 -0.0540624 0.99826267]\n", + " [-0.20109591 -0.016752 0.97942831]\n", + " [-0.16709274 -0.01694088 0.98579563]\n", + " [-0.13212968 -0.01709901 0.99108495]\n", + " [-0.09640067 -0.01722548 0.99519355]\n", + " [-0.06010576 -0.01731915 0.99804176]\n", + " [-0.0234538 -0.01737894 0.99957386]]\n", + "DEBUG:root:radec2pix: xyfp: [[-32.203794 -31.5506227 ]\n", + " [-32.20328688 -27.16419416]\n", + " [-32.20277976 -22.77776561]\n", + " [-32.20227264 -18.39133707]\n", + " [-32.20176553 -14.00490853]\n", + " [-32.20125841 -9.61847999]\n", + " [-32.20075129 -5.23205144]\n", + " [-32.20024417 -0.8456229 ]\n", + " [-32.203794 -31.5506227 ]\n", + " [-27.81736545 -31.55112981]\n", + " [-23.43093691 -31.55163693]\n", + " [-19.04450837 -31.55214405]\n", + " [-14.65807983 -31.55265117]\n", + " [-10.27165129 -31.55315829]\n", + " [ -5.88522274 -31.5536654 ]\n", + " [ -1.4987942 -31.55417252]\n", + " [-32.20024417 -0.8456229 ]\n", + " [-27.81381563 -0.84613002]\n", + " [-23.42738708 -0.84663714]\n", + " [-19.04095854 -0.84714426]\n", + " [-14.65453 -0.84765137]\n", + " [-10.26810146 -0.84815849]\n", + " [ -5.88167292 -0.84866561]\n", + " [ -1.49524438 -0.84917273]\n", + " [ -1.4987942 -31.55417252]\n", + " [ -1.49828708 -27.16774398]\n", + " [ -1.49777997 -22.78131544]\n", + " [ -1.49727285 -18.39488689]\n", + " [ -1.49676573 -14.00845835]\n", + " [ -1.49625861 -9.62202981]\n", + " [ -1.49575149 -5.23560127]\n", + " [ -1.49524438 -0.84917273]\n", + " [-32.18857289 -29.63812445]\n", + " [-32.18795136 -24.26212448]\n", + " [-32.18732984 -18.88612452]\n", + " [-32.18670832 -13.51012455]\n", + " [-32.1860868 -8.13412459]\n", + " [-32.18546528 -2.75812462]\n", + " [-30.29129227 -31.5358438 ]\n", + " [-24.91529231 -31.53646533]\n", + " [-19.53929235 -31.53708685]\n", + " [-14.16329238 -31.53770837]\n", + " [ -8.78729242 -31.53832989]\n", + " [ -3.41129245 -31.53895142]\n", + " [-30.28774592 -0.86084401]\n", + " [-24.91174595 -0.86146553]\n", + " [-19.53574599 -0.86208705]\n", + " [-14.15974603 -0.86270858]\n", + " [ -8.78374606 -0.8633301 ]\n", + " [ -3.4077461 -0.86395162]\n", + " [ -1.5135731 -29.6416708 ]\n", + " [ -1.51295157 -24.26567084]\n", + " [ -1.51233005 -18.88967087]\n", + " [ -1.51170853 -13.51367091]\n", + " [ -1.51108701 -8.13767095]\n", + " [ -1.51046548 -2.76167097]\n", + " [-32.18879227 -31.53562444]\n", + " [-32.18879227 -31.53562444]\n", + " [ -1.51024611 -0.86417099]\n", + " [ -1.51024611 -0.86417099]\n", + " [-30.29107291 -29.63834382]\n", + " [-24.91507294 -29.63896534]\n", + " [-19.53907298 -29.63958686]\n", + " [-14.16307301 -29.64020839]\n", + " [ -8.78707305 -29.64082991]\n", + " [ -3.41107308 -29.64145143]\n", + " [-30.29045138 -24.26234385]\n", + " [-24.91445142 -24.26296538]\n", + " [-19.53845145 -24.2635869 ]\n", + " [-14.16245149 -24.26420842]\n", + " [ -8.78645152 -24.26482994]\n", + " [ -3.41045156 -24.26545147]\n", + " [-30.28982986 -18.88634389]\n", + " [-24.91382989 -18.88696541]\n", + " [-19.53782993 -18.88758693]\n", + " [-14.16182997 -18.88820846]\n", + " [ -8.78583 -18.88882997]\n", + " [ -3.40983004 -18.8894515 ]\n", + " [-30.28920834 -13.51034392]\n", + " [-24.91320837 -13.51096545]\n", + " [-19.53720841 -13.51158697]\n", + " [-14.16120844 -13.51220849]\n", + " [ -8.78520848 -13.51283002]\n", + " [ -3.40920852 -13.51345154]\n", + " [-30.28858681 -8.13434396]\n", + " [-24.91258685 -8.13496548]\n", + " [-19.53658688 -8.135587 ]\n", + " [-14.16058692 -8.13620852]\n", + " [ -8.78458696 -8.13683005]\n", + " [ -3.40858699 -8.13745157]\n", + " [-30.28796529 -2.75834399]\n", + " [-24.91196532 -2.75896552]\n", + " [-19.53596536 -2.75958704]\n", + " [-14.1599654 -2.76020856]\n", + " [ -8.78396543 -2.76083009]\n", + " [ -3.40796547 -2.76145161]]\n", + "DEBUG:root:radec2pix: xyfp Shape: (96, 2)\n", + "DEBUG:root:radec2pix: curVec: [[-9.73579582e-01 2.24727713e-01 -4.05000358e-02]\n", + " [-9.70488614e-01 2.31832565e-01 -6.63740249e-02]\n", + " [-9.66574171e-01 2.39046972e-01 -9.26871958e-02]\n", + " [-9.61813277e-01 2.46323107e-01 -1.19332086e-01]\n", + " [-9.56193297e-01 2.53614035e-01 -1.46199519e-01]\n", + " [-9.49711667e-01 2.60876047e-01 -1.73180365e-01]\n", + " [-9.42375777e-01 2.68069696e-01 -2.00166266e-01]\n", + " [-9.34202997e-01 2.75160068e-01 -2.27049991e-01]\n", + " [-9.73579582e-01 2.24727713e-01 -4.05000358e-02]\n", + " [-9.68014209e-01 2.49053977e-01 -3.03415167e-02]\n", + " [-9.61587683e-01 2.73762562e-01 -2.00795441e-02]\n", + " [-9.54285294e-01 2.98738332e-01 -9.74614400e-03]\n", + " [-9.46102868e-01 3.23865668e-01 6.26120935e-04]\n", + " [-9.37046389e-01 3.49031503e-01 1.10033761e-02]\n", + " [-9.27131848e-01 3.74126599e-01 2.13500306e-02]\n", + " [-9.16385260e-01 3.99045958e-01 3.16287781e-02]\n", + " [-9.34202997e-01 2.75160068e-01 -2.27049991e-01]\n", + " [-9.28297839e-01 3.01002689e-01 -2.18312858e-01]\n", + " [-9.21524562e-01 3.27136200e-01 -2.09223299e-01]\n", + " [-9.13869201e-01 3.53439777e-01 -1.99808427e-01]\n", + " [-9.05326723e-01 3.79798241e-01 -1.90096870e-01]\n", + " [-8.95901690e-01 4.06099876e-01 -1.80119553e-01]\n", + " [-8.85609276e-01 4.32234466e-01 -1.69910494e-01]\n", + " [-8.74476110e-01 4.58092788e-01 -1.59507149e-01]\n", + " [-9.16385260e-01 3.99045958e-01 3.16287781e-02]\n", + " [-9.12893151e-01 4.08163455e-01 5.35622635e-03]\n", + " [-9.08590729e-01 4.17136937e-01 -2.14397527e-02]\n", + " [-9.03455820e-01 4.25911574e-01 -4.86509243e-02]\n", + " [-8.97475255e-01 4.34437728e-01 -7.61710409e-02]\n", + " [-8.90645411e-01 4.42670187e-01 -1.03893486e-01]\n", + " [-8.82973067e-01 4.50567651e-01 -1.31709360e-01]\n", + " [-8.74476110e-01 4.58092788e-01 -1.59507149e-01]\n", + " [-9.72313637e-01 2.27891919e-01 -5.16862130e-02]\n", + " [-9.67974922e-01 2.36680605e-01 -8.37068743e-02]\n", + " [-9.62375280e-01 2.45586216e-01 -1.16280829e-01]\n", + " [-9.55487174e-01 2.54521786e-01 -1.49207644e-01]\n", + " [-9.47305869e-01 2.63406958e-01 -1.82286490e-01]\n", + " [-9.37849115e-01 2.72170997e-01 -2.15318336e-01]\n", + " [-9.71248323e-01 2.35304423e-01 -3.61735262e-02]\n", + " [-9.63850602e-01 2.65391567e-01 -2.36502308e-02]\n", + " [-9.55143528e-01 2.95938798e-01 -1.10031746e-02]\n", + " [-9.45115069e-01 3.26733209e-01 1.70797237e-03]\n", + " [-9.33776223e-01 3.57566786e-01 1.44208043e-02]\n", + " [-9.21160591e-01 3.88240171e-01 2.70690735e-02]\n", + " [-9.31763268e-01 2.86359632e-01 -2.23193577e-01]\n", + " [-9.23944613e-01 3.18243326e-01 -2.12244050e-01]\n", + " [-9.14807105e-01 3.50443266e-01 -2.00792127e-01]\n", + " [-9.04337764e-01 3.82745117e-01 -1.88889871e-01]\n", + " [-8.92545109e-01 4.14942981e-01 -1.76594314e-01]\n", + " [-8.79461816e-01 4.46834319e-01 -1.63969528e-01]\n", + " [-9.14998806e-01 4.02950040e-01 2.02101574e-02]\n", + " [-9.10177575e-01 4.14033961e-01 -1.23556286e-02]\n", + " [-9.04116138e-01 4.24846649e-01 -4.55997177e-02]\n", + " [-8.96786508e-01 4.35294594e-01 -7.93257566e-02]\n", + " [-8.88182117e-01 4.45294507e-01 -1.13337235e-01]\n", + " [-8.78320039e-01 4.54771986e-01 -1.47432525e-01]\n", + " [-9.73552790e-01 2.24834183e-01 -4.05531253e-02]\n", + " [-9.73552790e-01 2.24834183e-01 -4.05531253e-02]\n", + " [-8.74546006e-01 4.57979895e-01 -1.59448111e-01]\n", + " [-8.74546006e-01 4.57979895e-01 -1.59448111e-01]\n", + " [-9.70005875e-01 2.38427368e-01 -4.73391140e-02]\n", + " [-9.62593104e-01 2.68695001e-01 -3.48928834e-02]\n", + " [-9.53862975e-01 2.99413036e-01 -2.22993033e-02]\n", + " [-9.43803762e-01 3.30366421e-01 -9.61699721e-03]\n", + " [-9.32426492e-01 3.61346477e-01 3.09193573e-03]\n", + " [-9.19764721e-01 3.92153602e-01 1.57610643e-02]\n", + " [-9.65653419e-01 2.47386000e-01 -7.94584292e-02]\n", + " [-9.58189635e-01 2.78119466e-01 -6.72472052e-02]\n", + " [-9.49391652e-01 3.09273752e-01 -5.48200507e-02]\n", + " [-9.39248105e-01 3.40630752e-01 -4.22337363e-02]\n", + " [-9.27769636e-01 3.71981571e-01 -2.95501845e-02]\n", + " [-9.14989408e-01 4.03126417e-01 -1.68367500e-02]\n", + " [-9.60033922e-01 2.56436559e-01 -1.12139024e-01]\n", + " [-9.52507675e-01 2.87562584e-01 -1.00184283e-01]\n", + " [-9.43638555e-01 3.19079966e-01 -8.79445971e-02]\n", + " [-9.33414892e-01 3.50770644e-01 -7.54757832e-02]\n", + " [-9.21846465e-01 3.82426800e-01 -6.28397840e-02]\n", + " [-9.08965861e-01 4.13848497e-01 -5.01047472e-02]\n", + " [-9.53120141e-01 2.65489975e-01 -1.45179441e-01]\n", + " [-9.45520343e-01 2.96932066e-01 -1.33501423e-01]\n", + " [-9.36576552e-01 3.28738778e-01 -1.21470895e-01]\n", + " [-9.26276444e-01 3.60693491e-01 -1.09142816e-01]\n", + " [-9.14628873e-01 3.92589618e-01 -9.65785528e-02]\n", + " [-9.01665973e-01 4.24226691e-01 -8.38462142e-02]\n", + " [-9.44907379e-01 2.74465227e-01 -1.78378487e-01]\n", + " [-9.37222592e-01 3.06146591e-01 -1.66997241e-01]\n", + " [-9.28199800e-01 3.38169544e-01 -1.55198233e-01]\n", + " [-9.17826109e-01 3.70318973e-01 -1.43035284e-01]\n", + " [-9.06109802e-01 4.02389047e-01 -1.30568303e-01]\n", + " [-8.93082931e-01 4.34178415e-01 -1.17864256e-01]\n", + " [-9.35413332e-01 2.83291525e-01 -2.11536783e-01]\n", + " [-9.27631698e-01 3.15135866e-01 -2.00471490e-01]\n", + " [-9.18524984e-01 3.47302459e-01 -1.88925529e-01]\n", + " [-9.08080139e-01 3.79576951e-01 -1.76951403e-01]\n", + " [-8.96305501e-01 4.11753578e-01 -1.64606925e-01]\n", + " [-8.83233508e-01 4.43630068e-01 -1.51957011e-01]]\n", + "DEBUG:root:radec2pix: curVec Shape: (96, 3)\n", + "DEBUG:root:radec2pix: lng: [224.17091663 219.87741809 214.97008665 209.39598188 203.1373574\n", + " 196.23634076 188.81644128 181.08669631 224.17091663 228.3555716\n", + " 233.16265584 238.65783928 244.87601329 251.7942959 259.30486084\n", + " 267.20296141 181.08669631 181.26291687 181.50503492 181.85849799\n", + " 182.42298774 183.46757199 186.05387592 202.53707914 267.20296141\n", + " 266.75372148 266.13046308 265.20807536 263.70434622 260.82362196\n", + " 253.17669924 202.53707914 222.38348083 216.71601144 210.07066421\n", + " 202.39896016 193.78096287 184.48069147 225.9100405 231.44842444\n", + " 237.98973756 245.61222365 254.27065244 263.72553361 181.18560606\n", + " 181.44802269 181.85460599 182.56904059 184.15297918 190.61463228\n", + " 266.99438373 266.33112836 265.28794249 263.40934603 259.04191913\n", + " 238.94596845 224.17054014 224.17054014 202.81670057 202.81670057\n", + " 224.11986404 229.69237658 236.35966367 244.23925438 253.312778\n", + " 263.32641007 218.39761245 223.93365474 230.85002743 239.44337044\n", + " 249.86289594 261.85943825 211.60273873 216.79700073 223.64273186\n", + " 232.75457852 244.72618682 259.56986466 203.65258863 208.03632189\n", + " 214.17758593 223.12426077 236.4587659 255.51668541 194.60966243\n", + " 197.58758667 202.01156736 209.14892478 221.94021993 246.56988658\n", + " 184.76194605 185.78921163 187.37371211 190.13104958 196.0740482\n", + " 216.53792504]\n", + "DEBUG:root:radec2pix: ccdpx: [[-4.44999999e+01 -4.99999873e-01]\n", + " [-4.44999998e+01 2.91928572e+02]\n", + " [-4.44999998e+01 5.84357143e+02]\n", + " [-4.45000002e+01 8.76785714e+02]\n", + " [-4.45000003e+01 1.16921429e+03]\n", + " [-4.45000002e+01 1.46164286e+03]\n", + " [-4.45000002e+01 1.75407143e+03]\n", + " [-4.45000000e+01 2.04650000e+03]\n", + " [-4.44999999e+01 -4.99999873e-01]\n", + " [ 2.47928571e+02 -5.00000280e-01]\n", + " [ 5.40357143e+02 -5.00000000e-01]\n", + " [ 8.32785714e+02 -4.99999974e-01]\n", + " [ 1.12521429e+03 -4.99999987e-01]\n", + " [ 1.41764286e+03 -4.99999863e-01]\n", + " [ 1.71007143e+03 -5.00000138e-01]\n", + " [ 2.00250000e+03 -4.99999700e-01]\n", + " [-4.45000000e+01 2.04650000e+03]\n", + " [ 2.47928571e+02 2.04650000e+03]\n", + " [ 5.40357143e+02 2.04650000e+03]\n", + " [ 8.32785714e+02 2.04650000e+03]\n", + " [ 1.12521429e+03 2.04650000e+03]\n", + " [ 1.41764286e+03 2.04650000e+03]\n", + " [ 1.71007143e+03 2.04650000e+03]\n", + " [ 2.00250000e+03 2.04650000e+03]\n", + " [ 2.00250000e+03 -4.99999700e-01]\n", + " [ 2.00250000e+03 2.91928571e+02]\n", + " [ 2.00250000e+03 5.84357143e+02]\n", + " [ 2.00250000e+03 8.76785714e+02]\n", + " [ 2.00250000e+03 1.16921429e+03]\n", + " [ 2.00250000e+03 1.46164286e+03]\n", + " [ 2.00250000e+03 1.75407143e+03]\n", + " [ 2.00250000e+03 2.04650000e+03]\n", + " [-4.35000000e+01 1.27000000e+02]\n", + " [-4.35000002e+01 4.85400000e+02]\n", + " [-4.34999999e+01 8.43800000e+02]\n", + " [-4.35000003e+01 1.20220000e+03]\n", + " [-4.35000000e+01 1.56060000e+03]\n", + " [-4.35000001e+01 1.91900000e+03]\n", + " [ 8.30000001e+01 5.00000148e-01]\n", + " [ 4.41400000e+02 4.99999823e-01]\n", + " [ 7.99800000e+02 4.99999939e-01]\n", + " [ 1.15820000e+03 5.00000006e-01]\n", + " [ 1.51660000e+03 5.00000232e-01]\n", + " [ 1.87500000e+03 5.00000256e-01]\n", + " [ 8.29999998e+01 2.04550000e+03]\n", + " [ 4.41400000e+02 2.04550000e+03]\n", + " [ 7.99800000e+02 2.04550000e+03]\n", + " [ 1.15820000e+03 2.04550000e+03]\n", + " [ 1.51660000e+03 2.04550000e+03]\n", + " [ 1.87500000e+03 2.04550000e+03]\n", + " [ 2.00150000e+03 1.27000000e+02]\n", + " [ 2.00150000e+03 4.85400000e+02]\n", + " [ 2.00150000e+03 8.43800000e+02]\n", + " [ 2.00150000e+03 1.20220000e+03]\n", + " [ 2.00150000e+03 1.56060000e+03]\n", + " [ 2.00150000e+03 1.91900000e+03]\n", + " [-4.35000003e+01 4.99999725e-01]\n", + " [-4.35000003e+01 4.99999725e-01]\n", + " [ 2.00150000e+03 2.04550000e+03]\n", + " [ 2.00150000e+03 2.04550000e+03]\n", + " [ 8.30000000e+01 1.27000000e+02]\n", + " [ 4.41400000e+02 1.27000000e+02]\n", + " [ 7.99800000e+02 1.27000000e+02]\n", + " [ 1.15820000e+03 1.27000000e+02]\n", + " [ 1.51660000e+03 1.27000000e+02]\n", + " [ 1.87500000e+03 1.27000000e+02]\n", + " [ 8.30000001e+01 4.85400000e+02]\n", + " [ 4.41400000e+02 4.85400000e+02]\n", + " [ 7.99800000e+02 4.85400000e+02]\n", + " [ 1.15820000e+03 4.85400000e+02]\n", + " [ 1.51660000e+03 4.85400000e+02]\n", + " [ 1.87500000e+03 4.85400000e+02]\n", + " [ 8.30000001e+01 8.43800000e+02]\n", + " [ 4.41400000e+02 8.43800000e+02]\n", + " [ 7.99800000e+02 8.43800000e+02]\n", + " [ 1.15820000e+03 8.43800000e+02]\n", + " [ 1.51660000e+03 8.43800000e+02]\n", + " [ 1.87500000e+03 8.43800000e+02]\n", + " [ 8.29999999e+01 1.20220000e+03]\n", + " [ 4.41400000e+02 1.20220000e+03]\n", + " [ 7.99800000e+02 1.20220000e+03]\n", + " [ 1.15820000e+03 1.20220000e+03]\n", + " [ 1.51660000e+03 1.20220000e+03]\n", + " [ 1.87500000e+03 1.20220000e+03]\n", + " [ 8.30000000e+01 1.56060000e+03]\n", + " [ 4.41400000e+02 1.56060000e+03]\n", + " [ 7.99800000e+02 1.56060000e+03]\n", + " [ 1.15820000e+03 1.56060000e+03]\n", + " [ 1.51660000e+03 1.56060000e+03]\n", + " [ 1.87500000e+03 1.56060000e+03]\n", + " [ 8.30000003e+01 1.91900000e+03]\n", + " [ 4.41400000e+02 1.91900000e+03]\n", + " [ 7.99800000e+02 1.91900000e+03]\n", + " [ 1.15820000e+03 1.91900000e+03]\n", + " [ 1.51660000e+03 1.91900000e+03]\n", + " [ 1.87500000e+03 1.91900000e+03]]\n", + "DEBUG:root:radec2pix: fitpx: [[ 2.13550000e+03 -4.99999797e-01]\n", + " [ 2.13550000e+03 2.91928572e+02]\n", + " [ 2.13550000e+03 5.84357143e+02]\n", + " [ 2.13550000e+03 8.76785714e+02]\n", + " [ 2.13550000e+03 1.16921429e+03]\n", + " [ 2.13550000e+03 1.46164286e+03]\n", + " [ 2.13550000e+03 1.75407143e+03]\n", + " [ 2.13550000e+03 2.04650000e+03]\n", + " [ 2.13550000e+03 -4.99999797e-01]\n", + " [ 2.42792857e+03 -5.00000034e-01]\n", + " [ 2.72035714e+03 -4.99999972e-01]\n", + " [ 3.01278571e+03 -4.99999760e-01]\n", + " [ 3.30521429e+03 -5.00000049e-01]\n", + " [ 3.59764286e+03 -4.99999867e-01]\n", + " [ 3.89007143e+03 -5.00000044e-01]\n", + " [ 4.18250000e+03 -4.99999770e-01]\n", + " [ 2.13550000e+03 2.04650000e+03]\n", + " [ 2.42792857e+03 2.04650000e+03]\n", + " [ 2.72035714e+03 2.04650000e+03]\n", + " [ 3.01278571e+03 2.04650000e+03]\n", + " [ 3.30521429e+03 2.04650000e+03]\n", + " [ 3.59764286e+03 2.04650000e+03]\n", + " [ 3.89007143e+03 2.04650000e+03]\n", + " [ 4.18250000e+03 2.04650000e+03]\n", + " [ 4.18250000e+03 -4.99999770e-01]\n", + " [ 4.18250000e+03 2.91928572e+02]\n", + " [ 4.18250000e+03 5.84357143e+02]\n", + " [ 4.18250000e+03 8.76785714e+02]\n", + " [ 4.18250000e+03 1.16921429e+03]\n", + " [ 4.18250000e+03 1.46164286e+03]\n", + " [ 4.18250000e+03 1.75407143e+03]\n", + " [ 4.18250000e+03 2.04650000e+03]\n", + " [ 2.13650000e+03 1.27000000e+02]\n", + " [ 2.13650000e+03 4.85400000e+02]\n", + " [ 2.13650000e+03 8.43800000e+02]\n", + " [ 2.13650000e+03 1.20220000e+03]\n", + " [ 2.13650000e+03 1.56060000e+03]\n", + " [ 2.13650000e+03 1.91900000e+03]\n", + " [ 2.26300000e+03 5.00000045e-01]\n", + " [ 2.62140000e+03 5.00000251e-01]\n", + " [ 2.97980000e+03 4.99999878e-01]\n", + " [ 3.33820000e+03 4.99999746e-01]\n", + " [ 3.69660000e+03 5.00000268e-01]\n", + " [ 4.05500000e+03 4.99999743e-01]\n", + " [ 2.26300000e+03 2.04550000e+03]\n", + " [ 2.62140000e+03 2.04550000e+03]\n", + " [ 2.97980000e+03 2.04550000e+03]\n", + " [ 3.33820000e+03 2.04550000e+03]\n", + " [ 3.69660000e+03 2.04550000e+03]\n", + " [ 4.05500000e+03 2.04550000e+03]\n", + " [ 4.18150000e+03 1.27000000e+02]\n", + " [ 4.18150000e+03 4.85400000e+02]\n", + " [ 4.18150000e+03 8.43800000e+02]\n", + " [ 4.18150000e+03 1.20220000e+03]\n", + " [ 4.18150000e+03 1.56060000e+03]\n", + " [ 4.18150000e+03 1.91900000e+03]\n", + " [ 2.13650000e+03 5.00000140e-01]\n", + " [ 2.13650000e+03 5.00000140e-01]\n", + " [ 4.18150000e+03 2.04550000e+03]\n", + " [ 4.18150000e+03 2.04550000e+03]\n", + " [ 2.26300000e+03 1.27000000e+02]\n", + " [ 2.62140000e+03 1.27000000e+02]\n", + " [ 2.97980000e+03 1.27000000e+02]\n", + " [ 3.33820000e+03 1.27000000e+02]\n", + " [ 3.69660000e+03 1.27000000e+02]\n", + " [ 4.05500000e+03 1.27000000e+02]\n", + " [ 2.26300000e+03 4.85400000e+02]\n", + " [ 2.62140000e+03 4.85400000e+02]\n", + " [ 2.97980000e+03 4.85400000e+02]\n", + " [ 3.33820000e+03 4.85400000e+02]\n", + " [ 3.69660000e+03 4.85400000e+02]\n", + " [ 4.05500000e+03 4.85400000e+02]\n", + " [ 2.26300000e+03 8.43800000e+02]\n", + " [ 2.62140000e+03 8.43800000e+02]\n", + " [ 2.97980000e+03 8.43800000e+02]\n", + " [ 3.33820000e+03 8.43800000e+02]\n", + " [ 3.69660000e+03 8.43800000e+02]\n", + " [ 4.05500000e+03 8.43800000e+02]\n", + " [ 2.26300000e+03 1.20220000e+03]\n", + " [ 2.62140000e+03 1.20220000e+03]\n", + " [ 2.97980000e+03 1.20220000e+03]\n", + " [ 3.33820000e+03 1.20220000e+03]\n", + " [ 3.69660000e+03 1.20220000e+03]\n", + " [ 4.05500000e+03 1.20220000e+03]\n", + " [ 2.26300000e+03 1.56060000e+03]\n", + " [ 2.62140000e+03 1.56060000e+03]\n", + " [ 2.97980000e+03 1.56060000e+03]\n", + " [ 3.33820000e+03 1.56060000e+03]\n", + " [ 3.69660000e+03 1.56060000e+03]\n", + " [ 4.05500000e+03 1.56060000e+03]\n", + " [ 2.26300000e+03 1.91900000e+03]\n", + " [ 2.62140000e+03 1.91900000e+03]\n", + " [ 2.97980000e+03 1.91900000e+03]\n", + " [ 3.33820000e+03 1.91900000e+03]\n", + " [ 3.69660000e+03 1.91900000e+03]\n", + " [ 4.05500000e+03 1.91900000e+03]]\n", + "DEBUG:root:fitpix2pix: ccdpx: shape: (96, 2)\n", + "DEBUG:root:fitpix2pix: visCut: True\n", + "DEBUG:root:radec2pix: lat: [73.30319327 74.28364829 75.19434757 76.00760673 76.6934474 77.22149469\n", + " 77.56431546 77.70181842 73.30319327 74.31487163 75.26252869 76.11836609\n", + " 76.85166299 77.43039612 77.8244634 78.01035447 77.70181842 79.30062777\n", + " 80.93200296 82.59063863 84.2712796 85.96832552 87.67438557 89.35703566\n", + " 78.01035447 79.61411514 81.24861046 82.90802789 84.58587071 86.27294722\n", + " 87.94616945 89.35703566 73.74128804 74.89975016 75.92621516 76.76637844\n", + " 77.36466213 77.67335289 73.7541097 74.95468773 76.03182731 76.93013306\n", + " 77.59097642 77.96138218 78.39443735 80.37649363 82.40216048 84.46173597\n", + " 86.54472647 88.63280521 78.70517127 80.69206097 82.71932817 84.7752745\n", + " 86.84188191 88.83673743 73.31017726 73.31017726 89.34933673 89.34933673\n", + " 74.20408349 75.46003419 76.59358943 77.54526674 78.24998117 78.64701061\n", + " 75.41740928 76.83842002 78.14733268 79.2729755 80.12769991 80.61933545\n", + " 76.49875662 78.09183026 79.59737911 80.93621381 81.99355302 82.62428133\n", + " 77.38945666 79.14833894 80.86043698 82.45133489 83.78724838 84.64121324\n", + " 78.02753384 79.92284226 81.82091734 83.6737055 85.37260957 86.62213831\n", + " 78.35820379 80.33138971 82.34363217 84.38015735 86.41373806 88.32724747]\n", + "DEBUG:root:mm_to_pix: fitpx: [[0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]]\n", + "DEBUG:root:mm_to_pix: fitpx.shape: (96, 2)\n", + "DEBUG:root:radec2pix: fitpx: [[4271.49999987 4155.49999987]\n", + " [4271.49999978 3863.07142838]\n", + " [4271.49999978 3570.64285699]\n", + " [4271.50000021 3278.21428583]\n", + " [4271.50000028 2985.78571441]\n", + " [4271.50000021 2693.35714292]\n", + " [4271.50000016 2400.92857146]\n", + " [4271.5 2108.5 ]\n", + " [4271.49999987 4155.49999987]\n", + " [3979.07142882 4155.50000028]\n", + " [3686.64285714 4155.5 ]\n", + " [3394.2142857 4155.49999997]\n", + " [3101.78571428 4155.49999999]\n", + " [2809.35714281 4155.49999986]\n", + " [2516.92857145 4155.50000014]\n", + " [2224.49999999 4155.4999997 ]\n", + " [4271.5 2108.5 ]\n", + " [3979.0714288 2108.50000001]\n", + " [3686.64285693 2108.49999999]\n", + " [3394.21428614 2108.50000002]\n", + " [3101.7857146 2108.50000002]\n", + " [2809.35714263 2108.49999998]\n", + " [2516.92857131 2108.49999998]\n", + " [2224.49999992 2108.49999995]\n", + " [2224.49999999 4155.4999997 ]\n", + " [2224.50000001 3863.07142868]\n", + " [2224.5 3570.64285711]\n", + " [2224.50000002 3278.21428594]\n", + " [2224.50000001 2985.78571436]\n", + " [2224.49999998 2693.35714271]\n", + " [2224.50000001 2400.92857146]\n", + " [2224.49999992 2108.49999995]\n", + " [4270.5 4028. ]\n", + " [4270.50000018 3669.60000013]\n", + " [4270.49999988 3311.19999993]\n", + " [4270.50000028 2952.80000012]\n", + " [4270.5 2594.4 ]\n", + " [4270.50000006 2236.00000001]\n", + " [4143.99999986 4154.49999985]\n", + " [3785.60000014 4154.50000018]\n", + " [3427.20000004 4154.50000006]\n", + " [3068.8 4154.49999999]\n", + " [2710.39999994 4154.49999977]\n", + " [2351.99999997 4154.49999974]\n", + " [4144.00000019 2109.50000001]\n", + " [3785.59999998 2109.5 ]\n", + " [3427.19999968 2109.49999999]\n", + " [3068.80000035 2109.50000002]\n", + " [2710.39999998 2109.5 ]\n", + " [2351.99999973 2109.49999993]\n", + " [2225.50000001 4028.00000029]\n", + " [2225.50000001 3669.60000014]\n", + " [2225.50000002 3311.20000027]\n", + " [2225.50000003 2952.80000024]\n", + " [2225.49999999 2594.39999997]\n", + " [2225.49999991 2235.99999983]\n", + " [4270.50000028 4154.50000027]\n", + " [4270.50000028 4154.50000027]\n", + " [2225.50000021 2109.50000012]\n", + " [2225.50000021 2109.50000012]\n", + " [4143.99999997 4027.99999997]\n", + " [3785.60000006 4028.00000007]\n", + " [3427.20000002 4028.00000003]\n", + " [3068.8 4028.00000001]\n", + " [2710.40000007 4028.00000025]\n", + " [2352. 4028.00000001]\n", + " [4143.99999988 3669.5999999 ]\n", + " [3785.59999992 3669.59999992]\n", + " [3427.20000003 3669.60000003]\n", + " [3068.79999996 3669.59999994]\n", + " [2710.39999994 3669.59999984]\n", + " [2352.00000003 3669.60000024]\n", + " [4143.99999986 3311.19999992]\n", + " [3785.60000024 3311.20000018]\n", + " [3427.19999985 3311.19999985]\n", + " [3068.80000018 3311.20000023]\n", + " [2710.39999997 3311.19999993]\n", + " [2351.99999998 3311.19999989]\n", + " [4144.00000009 2952.80000004]\n", + " [3785.60000017 2952.80000009]\n", + " [3427.19999999 2952.79999999]\n", + " [3068.79999994 2952.79999994]\n", + " [2710.40000012 2952.80000019]\n", + " [2351.99999999 2952.79999997]\n", + " [4143.99999998 2594.4 ]\n", + " [3785.60000016 2594.40000005]\n", + " [3427.20000028 2594.40000012]\n", + " [3068.79999967 2594.39999981]\n", + " [2710.40000007 2594.40000006]\n", + " [2351.99999992 2594.39999981]\n", + " [4143.99999971 2235.99999997]\n", + " [3785.59999981 2235.99999998]\n", + " [3427.2 2236. ]\n", + " [3068.79999989 2235.99999998]\n", + " [2710.40000023 2236.00000007]\n", + " [2352.00000024 2236.00000019]]\n", + "DEBUG:root:fitpix2pix: ccdpx: shape: (96, 2)\n", + "DEBUG:root:radec2pix: curVec: [[-0.29262952 -0.11683363 -0.94906157]\n", + " [-0.30505241 -0.14088934 -0.94185626]\n", + " [-0.31747578 -0.16530825 -0.93374638]\n", + " [-0.3298368 -0.18998707 -0.92472298]\n", + " [-0.34207586 -0.21482408 -0.91478671]\n", + " [-0.3541359 -0.23971767 -0.90394867]\n", + " [-0.3659623 -0.26456587 -0.89223119]\n", + " [-0.37750328 -0.28926695 -0.87966807]\n", + " [-0.29262952 -0.11683363 -0.94906157]\n", + " [-0.26800666 -0.13123954 -0.95443628]\n", + " [-0.24328141 -0.14557439 -0.95896937]\n", + " [-0.21855479 -0.15978615 -0.96265372]\n", + " [-0.19393099 -0.17382618 -0.96549222]\n", + " [-0.16951773 -0.18764958 -0.96749748]\n", + " [-0.14542695 -0.20121546 -0.96869156]\n", + " [-0.12177574 -0.21448678 -0.96910582]\n", + " [-0.37750328 -0.28926695 -0.87966807]\n", + " [-0.35196469 -0.30403653 -0.88525852]\n", + " [-0.32619333 -0.31848771 -0.89003567]\n", + " [-0.30029561 -0.33256723 -0.89399194]\n", + " [-0.27437918 -0.34622691 -0.89713042]\n", + " [-0.24855214 -0.3594238 -0.89946449]\n", + " [-0.22292338 -0.3721198 -0.90101722]\n", + " [-0.19760396 -0.38428079 -0.90182091]\n", + " [-0.12177574 -0.21448678 -0.96910582]\n", + " [-0.13215642 -0.23849547 -0.96210945]\n", + " [-0.14278919 -0.26276329 -0.95423619]\n", + " [-0.15360812 -0.2871813 -0.94547948]\n", + " [-0.16455277 -0.31164385 -0.93584213]\n", + " [-0.17556748 -0.33604793 -0.92533661]\n", + " [-0.18660061 -0.36029295 -0.91398534]\n", + " [-0.19760396 -0.38428079 -0.90182091]\n", + " [-0.29795746 -0.12732012 -0.94605018]\n", + " [-0.31319058 -0.15706074 -0.93661282]\n", + " [-0.32836175 -0.1872439 -0.92580683]\n", + " [-0.34335995 -0.21768179 -0.91362935]\n", + " [-0.35808011 -0.2481873 -0.90010094]\n", + " [-0.37242285 -0.27857273 -0.88526745]\n", + " [-0.28195484 -0.12320165 -0.95148453]\n", + " [-0.25169463 -0.14081686 -0.9575074 ]\n", + " [-0.22138056 -0.1582731 -0.9622579 ]\n", + " [-0.19120314 -0.17547939 -0.9657372 ]\n", + " [-0.16136074 -0.19235312 -0.96796849]\n", + " [-0.13206154 -0.20882059 -0.96899624]\n", + " [-0.3663648 -0.29565799 -0.88224894]\n", + " [-0.33489498 -0.31355255 -0.88855509]\n", + " [-0.30318116 -0.33091557 -0.89363084]\n", + " [-0.27142103 -0.34765622 -0.89747745]\n", + " [-0.23981367 -0.36369537 -0.90011948]\n", + " [-0.20856034 -0.37896459 -0.90160325]\n", + " [-0.12634686 -0.22487103 -0.96616225]\n", + " [-0.1392491 -0.25448492 -0.95699902]\n", + " [-0.15246365 -0.28437945 -0.94651105]\n", + " [-0.16587701 -0.31435881 -0.93469961]\n", + " [-0.17938661 -0.34423334 -0.92158768]\n", + " [-0.19289883 -0.37381883 -0.90722077]\n", + " [-0.29258801 -0.11696447 -0.94905825]\n", + " [-0.29258801 -0.11696447 -0.94905825]\n", + " [-0.19765236 -0.38415867 -0.90186233]\n", + " [-0.19765236 -0.38415867 -0.90186233]\n", + " [-0.28728153 -0.13358003 -0.948486 ]\n", + " [-0.2568903 -0.15124343 -0.95453276]\n", + " [-0.22643097 -0.16872351 -0.95930255]\n", + " [-0.19609413 -0.18592881 -0.96279674]\n", + " [-0.16607761 -0.20277637 -0.96503884]\n", + " [-0.13658861 -0.21919236 -0.96607363]\n", + " [-0.30240683 -0.16337738 -0.93907292]\n", + " [-0.27168351 -0.18115633 -0.94518276]\n", + " [-0.2408542 -0.19868408 -0.95000731]\n", + " [-0.21011017 -0.21586802 -0.95354849]\n", + " [-0.17964823 -0.23262456 -0.9558307 ]\n", + " [-0.1496729 -0.24887968 -0.95689964]\n", + " [-0.31749012 -0.19360571 -0.92828705]\n", + " [-0.28649296 -0.21146815 -0.93445332]\n", + " [-0.2553548 -0.22901271 -0.93933333]\n", + " [-0.22426828 -0.24614615 -0.94292938]\n", + " [-0.19342995 -0.26278486 -0.94526661]\n", + " [-0.16304222 -0.27885527 -0.94639155]\n", + " [-0.33242096 -0.22407685 -0.91612547]\n", + " [-0.30120952 -0.24198942 -0.92234156]\n", + " [-0.2698243 -0.25951845 -0.92727829]\n", + " [-0.23845963 -0.27657071 -0.93093805]\n", + " [-0.20731246 -0.29306331 -0.93334637]\n", + " [-0.17658396 -0.30892377 -0.93455027]\n", + " [-0.34709497 -0.25460327 -0.90260858]\n", + " [-0.31573075 -0.27253166 -0.90886775]\n", + " [-0.28416173 -0.29001217 -0.91386271]\n", + " [-0.25258396 -0.30695224 -0.91759559]\n", + " [-0.22119519 -0.32327033 -0.92009183]\n", + " [-0.19019621 -0.33889556 -0.9213985 ]\n", + " [-0.36141339 -0.284997 -0.88778211]\n", + " [-0.32995974 -0.30290649 -0.89407731]\n", + " [-0.29827199 -0.32030579 -0.89913181]\n", + " [-0.26654751 -0.33710354 -0.90294719]\n", + " [-0.23498505 -0.35321997 -0.90554828]\n", + " [-0.20378564 -0.368586 -0.90698168]]\n", + "DEBUG:root:fitpix2pix: visCut: True\n", + "DEBUG:root:radec2pix: curVec Shape: (96, 3)\n", + "DEBUG:root:radec2pix: camVec: [[0.20658103 0.20838989 0.20993522 0.21121099 0.21221385 0.21294172\n", + " 0.21339307 0.21356684 0.20658103 0.18015754 0.1530338 0.12531307\n", + " 0.09710338 0.06851504 0.03965966 0.01064976 0.21356684 0.18621882\n", + " 0.15815829 0.12949192 0.10032565 0.07076705 0.04092766 0.01092393\n", + " 0.01064976 0.01072986 0.01079662 0.01085001 0.01088978 0.0109156\n", + " 0.01092708 0.01092393 0.20731213 0.20935192 0.21098964 0.21221814\n", + " 0.21303349 0.21343308 0.19515895 0.16228971 0.12847052 0.09389848\n", + " 0.05877657 0.02331064 0.20173739 0.16772694 0.13275239 0.09700904\n", + " 0.06069518 0.02401827 0.01078606 0.01087623 0.01094616 0.01099551\n", + " 0.01102363 0.01102984 0.2064986 0.2064986 0.01102671 0.01102671\n", + " 0.19592714 0.16292559 0.1289709 0.09426176 0.0590016 0.02339654\n", + " 0.19785166 0.16451646 0.13022261 0.09517088 0.05956467 0.02361044\n", + " 0.19939573 0.16579218 0.13122742 0.09590173 0.06001727 0.02378066\n", + " 0.20055377 0.16674959 0.13198281 0.09645193 0.06035751 0.0239064\n", + " 0.20132229 0.16738526 0.13248471 0.09681723 0.06058199 0.02398618\n", + " 0.20169858 0.16769559 0.13272857 0.09699294 0.06068709 0.02401844]\n", + " [0.20098859 0.17447006 0.14727238 0.11949936 0.09125926 0.06266255\n", + " 0.03382097 0.00484709 0.20098859 0.20282418 0.20440426 0.20572264\n", + " 0.20677589 0.2075618 0.2080787 0.20832528 0.00484709 0.00490326\n", + " 0.00495363 0.00499813 0.0050366 0.00506881 0.00509451 0.00511348\n", + " 0.20832528 0.18083307 0.15264908 0.12387974 0.09463112 0.06501141\n", + " 0.0351331 0.00511348 0.18952259 0.15655094 0.12266162 0.08805229\n", + " 0.05292621 0.01748945 0.20172997 0.20380791 0.20549566 0.20678588\n", + " 0.20767444 0.20815839 0.00497187 0.00503783 0.00509482 0.00514259\n", + " 0.00518073 0.00520877 0.19643015 0.16225698 0.1271506 0.09130636\n", + " 0.0549237 0.01821176 0.20090587 0.20090587 0.00521618 0.00521618\n", + " 0.19029998 0.19225876 0.19384904 0.19506507 0.19590316 0.19636024\n", + " 0.15719218 0.15880644 0.16011755 0.16112232 0.16181718 0.1621981\n", + " 0.12316354 0.12442767 0.12545686 0.12624866 0.12679897 0.1271029\n", + " 0.08841323 0.08932369 0.09006766 0.09064294 0.0910454 0.09127018\n", + " 0.05314506 0.05369842 0.05415286 0.05450669 0.05475678 0.05489951\n", + " 0.0175654 0.01775879 0.01791986 0.01804791 0.01814173 0.01819993]\n", + " [0.9575635 0.96235848 0.9665599 0.97010815 0.97295274 0.97505345\n", + " 0.97638084 0.97691643 0.9575635 0.96249967 0.96685033 0.97055388\n", + " 0.97355774 0.97581955 0.97730771 0.97800162 0.97691643 0.98249606\n", + " 0.98740135 0.99156788 0.99494191 0.99747999 0.99914912 0.99992726\n", + " 0.97800162 0.98345527 0.98822148 0.99223792 0.99545284 0.99782482\n", + " 0.9993229 0.99992726 0.95974104 0.96522722 0.96976157 0.97324727\n", + " 0.97561035 0.97680113 0.95980102 0.96546589 0.97018908 0.97386995\n", + " 0.97643056 0.97781731 0.97942703 0.98582062 0.99113614 0.99527021\n", + " 0.9981429 0.99969795 0.98045849 0.98668859 0.99182302 0.99576214\n", + " 0.9984297 0.99977331 0.95759864 0.95759864 0.9999256 0.9999256\n", + " 0.96197634 0.96772508 0.97251687 0.97625014 0.97884665 0.98025265\n", + " 0.96754604 0.97350647 0.97847046 0.98233503 0.98502145 0.98647571\n", + " 0.97214818 0.97827946 0.98338189 0.98735208 0.99011108 0.99160442\n", + " 0.97568503 0.98194493 0.98715164 0.99120174 0.99401595 0.99553917\n", + " 0.97808228 0.98442808 0.98970464 0.99380856 0.99666018 0.99820374\n", + " 0.97929012 0.98567886 0.99099042 0.99512142 0.99799196 0.99954584]]\n", + "DEBUG:root:radec2pix: camVec Shape: (3, 96)\n", + "DEBUG:root:radec2pix: xyfp: [[-32.203794 -31.5506227 ]\n", + " [-32.20328688 -27.16419416]\n", + " [-32.20277976 -22.77776561]\n", + " [-32.20227264 -18.39133707]\n", + " [-32.20176553 -14.00490853]\n", + " [-32.20125841 -9.61847999]\n", + " [-32.20075129 -5.23205144]\n", + " [-32.20024417 -0.8456229 ]\n", + " [-32.203794 -31.5506227 ]\n", + " [-27.81736545 -31.55112981]\n", + " [-23.43093691 -31.55163693]\n", + " [-19.04450837 -31.55214405]\n", + " [-14.65807983 -31.55265117]\n", + " [-10.27165129 -31.55315829]\n", + " [ -5.88522274 -31.5536654 ]\n", + " [ -1.4987942 -31.55417252]\n", + " [-32.20024417 -0.8456229 ]\n", + " [-27.81381563 -0.84613002]\n", + " [-23.42738708 -0.84663714]\n", + " [-19.04095854 -0.84714426]\n", + " [-14.65453 -0.84765137]\n", + " [-10.26810146 -0.84815849]\n", + " [ -5.88167292 -0.84866561]\n", + " [ -1.49524438 -0.84917273]\n", + " [ -1.4987942 -31.55417252]\n", + " [ -1.49828708 -27.16774398]\n", + " [ -1.49777997 -22.78131544]\n", + " [ -1.49727285 -18.39488689]\n", + " [ -1.49676573 -14.00845835]\n", + " [ -1.49625861 -9.62202981]\n", + " [ -1.49575149 -5.23560127]\n", + " [ -1.49524438 -0.84917273]\n", + " [-32.18857289 -29.63812445]\n", + " [-32.18795136 -24.26212448]\n", + " [-32.18732984 -18.88612452]\n", + " [-32.18670832 -13.51012455]\n", + " [-32.1860868 -8.13412459]\n", + " [-32.18546528 -2.75812462]\n", + " [-30.29129227 -31.5358438 ]\n", + " [-24.91529231 -31.53646533]\n", + " [-19.53929235 -31.53708685]\n", + " [-14.16329238 -31.53770837]\n", + " [ -8.78729242 -31.53832989]\n", + " [ -3.41129245 -31.53895142]\n", + " [-30.28774592 -0.86084401]\n", + " [-24.91174595 -0.86146553]\n", + " [-19.53574599 -0.86208705]\n", + " [-14.15974603 -0.86270858]\n", + " [ -8.78374606 -0.8633301 ]\n", + " [ -3.4077461 -0.86395162]\n", + " [ -1.5135731 -29.6416708 ]\n", + " [ -1.51295157 -24.26567084]\n", + " [ -1.51233005 -18.88967087]\n", + " [ -1.51170853 -13.51367091]\n", + " [ -1.51108701 -8.13767095]\n", + " [ -1.51046548 -2.76167097]\n", + " [-32.18879227 -31.53562444]\n", + " [-32.18879227 -31.53562444]\n", + " [ -1.51024611 -0.86417099]\n", + " [ -1.51024611 -0.86417099]\n", + " [-30.29107291 -29.63834382]\n", + " [-24.91507294 -29.63896534]\n", + " [-19.53907298 -29.63958686]\n", + " [-14.16307301 -29.64020839]\n", + " [ -8.78707305 -29.64082991]\n", + " [ -3.41107308 -29.64145143]\n", + " [-30.29045138 -24.26234385]\n", + " [-24.91445142 -24.26296538]\n", + " [-19.53845145 -24.2635869 ]\n", + " [-14.16245149 -24.26420842]\n", + " [ -8.78645152 -24.26482994]\n", + " [ -3.41045156 -24.26545147]\n", + " [-30.28982986 -18.88634389]\n", + " [-24.91382989 -18.88696541]\n", + " [-19.53782993 -18.88758693]\n", + " [-14.16182997 -18.88820846]\n", + " [ -8.78583 -18.88882997]\n", + " [ -3.40983004 -18.8894515 ]\n", + " [-30.28920834 -13.51034392]\n", + " [-24.91320837 -13.51096545]\n", + " [-19.53720841 -13.51158697]\n", + " [-14.16120844 -13.51220849]\n", + " [ -8.78520848 -13.51283002]\n", + " [ -3.40920852 -13.51345154]\n", + " [-30.28858681 -8.13434396]\n", + " [-24.91258685 -8.13496548]\n", + " [-19.53658688 -8.135587 ]\n", + " [-14.16058692 -8.13620852]\n", + " [ -8.78458696 -8.13683005]\n", + " [ -3.40858699 -8.13745157]\n", + " [-30.28796529 -2.75834399]\n", + " [-24.91196532 -2.75896552]\n", + " [-19.53596536 -2.75958704]\n", + " [-14.1599654 -2.76020856]\n", + " [ -8.78396543 -2.76083009]\n", + " [ -3.40796547 -2.76145161]]\n", + "DEBUG:root:optics_fp: rtanth: [44.94272969 42.00239064 39.33235561 36.99120283 35.04490673 33.56223174\n", + " 32.60648436 32.22458311 44.94272969 41.90992612 39.13459306 36.67522804\n", + " 34.59927513 32.97921831 31.88462562 31.37054947 32.22458311 27.83912196\n", + " 23.45402264 19.06953475 14.68620592 10.30551524 5.93330899 1.63895634\n", + " 31.37054947 26.99005818 22.61186898 18.23763988 13.87111779 9.5229103\n", + " 5.23882082 1.63895634 43.61980801 40.19015843 37.22381993 34.83933779\n", + " 33.16246218 32.30357703 43.58131788 40.02977818 36.92204987 34.37870189\n", + " 32.5323727 31.50584319 30.31278547 24.93826049 19.56454604 14.19256282\n", + " 8.82547273 3.48595044 29.4611953 24.09404931 18.73198196 13.38109994\n", + " 8.0637011 2.9657153 44.92151855 44.92151855 1.65858428 1.65858428\n", + " 42.23832489 38.56329813 35.32679703 32.65945447 30.7099348 29.62031359\n", + " 38.68639649 34.63652908 30.99264061 27.91417471 25.60588368 24.28835443\n", + " 35.59496044 31.14567519 27.03530484 23.44280455 20.64037826 18.98125646\n", + " 33.09332103 28.25278341 23.64475409 19.43532283 15.94339684 13.72788346\n", + " 31.32311186 26.15701072 21.09606209 16.23887967 11.83897557 8.62694755\n", + " 30.41232527 25.05915804 19.71841847 14.40393713 9.16152467 4.26572571]\n", + "DEBUG:root:radec2pix: camVec: [[ 0.00110855 0.00111823 0.00112655 0.00113349 0.001139 0.00114306\n", + " 0.00114562 0.00114666 0.00110855 0.03013432 0.05904256 0.08772073\n", + " 0.11605724 0.14394136 0.17126266 0.19791015 0.00114666 0.03116962\n", + " 0.06106803 0.09072406 0.1200235 0.1488564 0.17711651 0.20469956\n", + " 0.19791015 0.19966308 0.20115603 0.20238925 0.20336191 0.20407235\n", + " 0.20451873 0.20469956 0.00121266 0.00122459 0.00123428 0.00124164\n", + " 0.00124661 0.00124912 0.01377154 0.04928181 0.08450359 0.11923105\n", + " 0.15326028 0.18638779 0.01424443 0.05097175 0.08739457 0.12330108\n", + " 0.15848878 0.192763 0.19861623 0.2005887 0.20217123 0.20336272\n", + " 0.2041602 0.2045604 0.00120792 0.00120792 0.20460634 0.20460634\n", + " 0.01382559 0.04947523 0.08483539 0.11969997 0.15386543 0.18712908\n", + " 0.01396162 0.04996174 0.08566901 0.1208763 0.15538076 0.1889821\n", + " 0.01407199 0.05035615 0.08634371 0.12182616 0.15660103 0.19047015\n", + " 0.01415593 0.05065593 0.08685581 0.12254563 0.15752301 0.1915915\n", + " 0.01421257 0.05085809 0.08720077 0.12302951 0.15814189 0.1923426\n", + " 0.01424114 0.05096003 0.08737459 0.12327308 0.15845303 0.1927197 ]\n", + " [-0.20853555 -0.18105588 -0.15288447 -0.12412547 -0.09488471 -0.06527159\n", + " -0.0353997 -0.00538646 -0.20853555 -0.20838958 -0.2079729 -0.20728684\n", + " -0.20633313 -0.20511339 -0.20362847 -0.2018782 -0.00538646 -0.00538259\n", + " -0.00537156 -0.00535349 -0.00532854 -0.00529689 -0.00525872 -0.00521415\n", + " -0.2018782 -0.17529764 -0.14802765 -0.12017919 -0.09186258 -0.06318839\n", + " -0.03426807 -0.00521415 -0.196646 -0.16248857 -0.12739553 -0.09156092\n", + " -0.05518617 -0.01848208 -0.20841259 -0.20805164 -0.2072855 -0.20611722\n", + " -0.20454967 -0.20258404 -0.00548838 -0.00547863 -0.00545803 -0.00542687\n", + " -0.0053855 -0.0053342 -0.19038695 -0.15733098 -0.12334981 -0.08864677\n", + " -0.05342545 -0.01789151 -0.20844284 -0.20844284 -0.00531377 -0.00531377\n", + " -0.19661746 -0.19627694 -0.19555447 -0.19445357 -0.19297773 -0.19112874\n", + " -0.1624649 -0.16218264 -0.16158454 -0.16067502 -0.15945889 -0.15793949\n", + " -0.12737685 -0.12715419 -0.12668294 -0.12596768 -0.12501365 -0.12382499\n", + " -0.0915474 -0.09138626 -0.09104555 -0.09052922 -0.08984197 -0.08898771\n", + " -0.05517797 -0.05508029 -0.05487388 -0.05456144 -0.05414617 -0.05363087\n", + " -0.01847933 -0.01844651 -0.01837718 -0.0182723 -0.018133 -0.01796031]\n", + " [ 0.97801416 0.98347217 0.98824343 0.99226588 0.99548762 0.99786688\n", + " 0.99937258 0.99998484 0.97801416 0.97758156 0.97635099 0.97433939\n", + " 0.97157468 0.96809575 0.96395256 0.95920632 0.99998484 0.99949962\n", + " 0.99811915 0.99586168 0.99275675 0.98884464 0.98417584 0.97881096\n", + " 0.95920632 0.96405674 0.9683099 0.97190306 0.97478469 0.97691438\n", + " 0.97826264 0.97881096 0.9804738 0.98670967 0.99185123 0.9957987\n", + " 0.9984753 0.99982841 0.97794404 0.97687554 0.97462396 0.97123615\n", + " 0.9667837 0.96136325 0.99988348 0.99868507 0.99615882 0.99235447\n", + " 0.98734609 0.98123085 0.96140751 0.96695974 0.97155114 0.97508223\n", + " 0.97747856 0.97869042 0.97803381 0.97803381 0.97882992 0.97882992\n", + " 0.9803828 0.97929953 0.97701659 0.97358088 0.96906399 0.96356241\n", + " 0.98661554 0.98549511 0.98313339 0.97957769 0.97489983 0.969196\n", + " 0.99175456 0.99060389 0.98817822 0.98452554 0.97971818 0.9738524\n", + " 0.9957001 0.99452628 0.9920518 0.98832537 0.98342001 0.97743229\n", + " 0.99837538 0.99718585 0.99467828 0.99090201 0.9859307 0.97986124\n", + " 0.99972782 0.99853032 0.996006 0.99220455 0.9872 0.98108947]]\n", + "DEBUG:root:radec2pix: camVec Shape: (3, 96)\n", + "DEBUG:root:radec2pix: ccdpx: [[-4.45000001e+01 -5.00000132e-01]\n", + " [-4.45000001e+01 2.91928571e+02]\n", + " [-4.44999999e+01 5.84357143e+02]\n", + " [-4.44999998e+01 8.76785714e+02]\n", + " [-4.45000000e+01 1.16921429e+03]\n", + " [-4.45000002e+01 1.46164286e+03]\n", + " [-4.44999998e+01 1.75407143e+03]\n", + " [-4.44999999e+01 2.04650000e+03]\n", + " [-4.45000001e+01 -5.00000132e-01]\n", + " [ 2.47928572e+02 -4.99999845e-01]\n", + " [ 5.40357143e+02 -5.00000146e-01]\n", + " [ 8.32785714e+02 -4.99999843e-01]\n", + " [ 1.12521429e+03 -4.99999832e-01]\n", + " [ 1.41764286e+03 -5.00000031e-01]\n", + " [ 1.71007143e+03 -5.00000120e-01]\n", + " [ 2.00250000e+03 -4.99999883e-01]\n", + " [-4.44999999e+01 2.04650000e+03]\n", + " [ 2.47928572e+02 2.04650000e+03]\n", + " [ 5.40357143e+02 2.04650000e+03]\n", + " [ 8.32785714e+02 2.04650000e+03]\n", + " [ 1.12521429e+03 2.04650000e+03]\n", + " [ 1.41764286e+03 2.04650000e+03]\n", + " [ 1.71007143e+03 2.04650000e+03]\n", + " [ 2.00250000e+03 2.04650000e+03]\n", + " [ 2.00250000e+03 -4.99999883e-01]\n", + " [ 2.00250000e+03 2.91928571e+02]\n", + " [ 2.00250000e+03 5.84357143e+02]\n", + " [ 2.00250000e+03 8.76785714e+02]\n", + " [ 2.00250000e+03 1.16921429e+03]\n", + " [ 2.00250000e+03 1.46164286e+03]\n", + " [ 2.00250000e+03 1.75407143e+03]\n", + " [ 2.00250000e+03 2.04650000e+03]\n", + " [-4.35000002e+01 1.27000000e+02]\n", + " [-4.34999998e+01 4.85400000e+02]\n", + " [-4.34999999e+01 8.43800000e+02]\n", + " [-4.35000001e+01 1.20220000e+03]\n", + " [-4.34999999e+01 1.56060000e+03]\n", + " [-4.35000000e+01 1.91900000e+03]\n", + " [ 8.30000001e+01 5.00000120e-01]\n", + " [ 4.41400000e+02 4.99999839e-01]\n", + " [ 7.99800000e+02 4.99999975e-01]\n", + " [ 1.15820000e+03 5.00000060e-01]\n", + " [ 1.51660000e+03 5.00000260e-01]\n", + " [ 1.87500000e+03 4.99999701e-01]\n", + " [ 8.29999997e+01 2.04550000e+03]\n", + " [ 4.41400000e+02 2.04550000e+03]\n", + " [ 7.99800000e+02 2.04550000e+03]\n", + " [ 1.15820000e+03 2.04550000e+03]\n", + " [ 1.51660000e+03 2.04550000e+03]\n", + " [ 1.87500000e+03 2.04550000e+03]\n", + " [ 2.00150000e+03 1.27000000e+02]\n", + " [ 2.00150000e+03 4.85400000e+02]\n", + " [ 2.00150000e+03 8.43800000e+02]\n", + " [ 2.00150000e+03 1.20220000e+03]\n", + " [ 2.00150000e+03 1.56060000e+03]\n", + " [ 2.00150000e+03 1.91900000e+03]\n", + " [-4.35000003e+01 4.99999746e-01]\n", + " [-4.35000003e+01 4.99999746e-01]\n", + " [ 2.00150000e+03 2.04550000e+03]\n", + " [ 2.00150000e+03 2.04550000e+03]\n", + " [ 8.29999998e+01 1.27000000e+02]\n", + " [ 4.41400000e+02 1.27000000e+02]\n", + " [ 7.99800000e+02 1.27000000e+02]\n", + " [ 1.15820000e+03 1.27000000e+02]\n", + " [ 1.51660000e+03 1.27000000e+02]\n", + " [ 1.87500000e+03 1.27000000e+02]\n", + " [ 8.30000000e+01 4.85400000e+02]\n", + " [ 4.41400000e+02 4.85400000e+02]\n", + " [ 7.99800000e+02 4.85400000e+02]\n", + " [ 1.15820000e+03 4.85400000e+02]\n", + " [ 1.51660000e+03 4.85400000e+02]\n", + " [ 1.87500000e+03 4.85400000e+02]\n", + " [ 8.29999999e+01 8.43800000e+02]\n", + " [ 4.41400000e+02 8.43800000e+02]\n", + " [ 7.99800000e+02 8.43800000e+02]\n", + " [ 1.15820000e+03 8.43800000e+02]\n", + " [ 1.51660000e+03 8.43800000e+02]\n", + " [ 1.87500000e+03 8.43800000e+02]\n", + " [ 8.29999998e+01 1.20220000e+03]\n", + " [ 4.41400000e+02 1.20220000e+03]\n", + " [ 7.99800000e+02 1.20220000e+03]\n", + " [ 1.15820000e+03 1.20220000e+03]\n", + " [ 1.51660000e+03 1.20220000e+03]\n", + " [ 1.87500000e+03 1.20220000e+03]\n", + " [ 8.30000000e+01 1.56060000e+03]\n", + " [ 4.41400000e+02 1.56060000e+03]\n", + " [ 7.99800000e+02 1.56060000e+03]\n", + " [ 1.15820000e+03 1.56060000e+03]\n", + " [ 1.51660000e+03 1.56060000e+03]\n", + " [ 1.87500000e+03 1.56060000e+03]\n", + " [ 8.30000000e+01 1.91900000e+03]\n", + " [ 4.41400000e+02 1.91900000e+03]\n", + " [ 7.99800000e+02 1.91900000e+03]\n", + " [ 1.15820000e+03 1.91900000e+03]\n", + " [ 1.51660000e+03 1.91900000e+03]\n", + " [ 1.87500000e+03 1.91900000e+03]]\n", + "DEBUG:root:optics_fp: cphi: [-0.7172644 -0.76741791 -0.81945139 -0.87124824 -0.91956549 -0.96011654\n", + " -0.98818444 -0.99982014 -0.7172644 -0.66450587 -0.59954537 -0.52014772\n", + " -0.4245785 -0.31242949 -0.18558325 -0.04879815 -0.99982014 -0.99975708\n", + " -0.99965502 -0.99947397 -0.99910595 -0.99816919 -0.99442317 -0.92363168\n", + " -0.04879815 -0.05662794 -0.06748483 -0.0835374 -0.10965891 -0.1594742\n", + " -0.28942109 -0.92363168 -0.73864972 -0.80160861 -0.86540808 -0.92455295\n", + " -0.97121348 -0.99694372 -0.69578694 -0.62321886 -0.53007115 -0.41291013\n", + " -0.27109351 -0.10929135 -0.99978591 -0.99968066 -0.99947617 -0.99899494\n", + " -0.99737425 -0.98288834 -0.05243384 -0.06399014 -0.08214824 -0.11477511\n", + " -0.19009076 -0.51584618 -0.71726898 -0.71726898 -0.92175016 -0.92175016\n", + " -0.71788499 -0.64689125 -0.55397779 -0.43461417 -0.2871469 -0.11621293\n", + " -0.78371934 -0.72014369 -0.63135242 -0.50838973 -0.34426777 -0.14160207\n", + " -0.85170189 -0.80076273 -0.72365733 -0.60523038 -0.42694461 -0.18103644\n", + " -0.91599489 -0.8826498 -0.8273004 -0.72987289 -0.55253697 -0.25009805\n", + " -0.96766665 -0.95325615 -0.92710821 -0.87335662 -0.74384256 -0.39763019\n", + " -0.99654822 -0.99489972 -0.99173015 -0.984408 -0.96090466 -0.80346296]\n", + "DEBUG:root:cartToSphere: vec: [[0.20658103 0.20098859 0.9575635 ]\n", + " [0.20838989 0.17447006 0.96235848]\n", + " [0.20993522 0.14727238 0.9665599 ]\n", + " [0.21121099 0.11949936 0.97010815]\n", + " [0.21221385 0.09125926 0.97295274]\n", + " [0.21294172 0.06266255 0.97505345]\n", + " [0.21339307 0.03382097 0.97638084]\n", + " [0.21356684 0.00484709 0.97691643]\n", + " [0.20658103 0.20098859 0.9575635 ]\n", + " [0.18015754 0.20282418 0.96249967]\n", + " [0.1530338 0.20440426 0.96685033]\n", + " [0.12531307 0.20572264 0.97055388]\n", + " [0.09710338 0.20677589 0.97355774]\n", + " [0.06851504 0.2075618 0.97581955]\n", + " [0.03965966 0.2080787 0.97730771]\n", + " [0.01064976 0.20832528 0.97800162]\n", + " [0.21356684 0.00484709 0.97691643]\n", + " [0.18621882 0.00490326 0.98249606]\n", + " [0.15815829 0.00495363 0.98740135]\n", + " [0.12949192 0.00499813 0.99156788]\n", + " [0.10032565 0.0050366 0.99494191]\n", + " [0.07076705 0.00506881 0.99747999]\n", + " [0.04092766 0.00509451 0.99914912]\n", + " [0.01092393 0.00511348 0.99992726]\n", + " [0.01064976 0.20832528 0.97800162]\n", + " [0.01072986 0.18083307 0.98345527]\n", + " [0.01079662 0.15264908 0.98822148]\n", + " [0.01085001 0.12387974 0.99223792]\n", + " [0.01088978 0.09463112 0.99545284]\n", + " [0.0109156 0.06501141 0.99782482]\n", + " [0.01092708 0.0351331 0.9993229 ]\n", + " [0.01092393 0.00511348 0.99992726]\n", + " [0.20731213 0.18952259 0.95974104]\n", + " [0.20935192 0.15655094 0.96522722]\n", + " [0.21098964 0.12266162 0.96976157]\n", + " [0.21221814 0.08805229 0.97324727]\n", + " [0.21303349 0.05292621 0.97561035]\n", + " [0.21343308 0.01748945 0.97680113]\n", + " [0.19515895 0.20172997 0.95980102]\n", + " [0.16228971 0.20380791 0.96546589]\n", + " [0.12847052 0.20549566 0.97018908]\n", + " [0.09389848 0.20678588 0.97386995]\n", + " [0.05877657 0.20767444 0.97643056]\n", + " [0.02331064 0.20815839 0.97781731]\n", + " [0.20173739 0.00497187 0.97942703]\n", + " [0.16772694 0.00503783 0.98582062]\n", + " [0.13275239 0.00509482 0.99113614]\n", + " [0.09700904 0.00514259 0.99527021]\n", + " [0.06069518 0.00518073 0.9981429 ]\n", + " [0.02401827 0.00520877 0.99969795]\n", + " [0.01078606 0.19643015 0.98045849]\n", + " [0.01087623 0.16225698 0.98668859]\n", + " [0.01094616 0.1271506 0.99182302]\n", + " [0.01099551 0.09130636 0.99576214]\n", + " [0.01102363 0.0549237 0.9984297 ]\n", + " [0.01102984 0.01821176 0.99977331]\n", + " [0.2064986 0.20090587 0.95759864]\n", + " [0.2064986 0.20090587 0.95759864]\n", + " [0.01102671 0.00521618 0.9999256 ]\n", + " [0.01102671 0.00521618 0.9999256 ]\n", + " [0.19592714 0.19029998 0.96197634]\n", + " [0.16292559 0.19225876 0.96772508]\n", + " [0.1289709 0.19384904 0.97251687]\n", + " [0.09426176 0.19506507 0.97625014]\n", + " [0.0590016 0.19590316 0.97884665]\n", + " [0.02339654 0.19636024 0.98025265]\n", + " [0.19785166 0.15719218 0.96754604]\n", + " [0.16451646 0.15880644 0.97350647]\n", + " [0.13022261 0.16011755 0.97847046]\n", + " [0.09517088 0.16112232 0.98233503]\n", + " [0.05956467 0.16181718 0.98502145]\n", + " [0.02361044 0.1621981 0.98647571]\n", + " [0.19939573 0.12316354 0.97214818]\n", + " [0.16579218 0.12442767 0.97827946]\n", + " [0.13122742 0.12545686 0.98338189]\n", + " [0.09590173 0.12624866 0.98735208]\n", + " [0.06001727 0.12679897 0.99011108]\n", + " [0.02378066 0.1271029 0.99160442]\n", + " [0.20055377 0.08841323 0.97568503]\n", + " [0.16674959 0.08932369 0.98194493]\n", + " [0.13198281 0.09006766 0.98715164]\n", + " [0.09645193 0.09064294 0.99120174]\n", + " [0.06035751 0.0910454 0.99401595]\n", + " [0.0239064 0.09127018 0.99553917]\n", + " [0.20132229 0.05314506 0.97808228]\n", + " [0.16738526 0.05369842 0.98442808]\n", + " [0.13248471 0.05415286 0.98970464]\n", + " [0.09681723 0.05450669 0.99380856]\n", + " [0.06058199 0.05475678 0.99666018]\n", + " [0.02398618 0.05489951 0.99820374]\n", + " [0.20169858 0.0175654 0.97929012]\n", + " [0.16769559 0.01775879 0.98567886]\n", + " [0.13272857 0.01791986 0.99099042]\n", + " [0.09699294 0.01804791 0.99512142]\n", + " [0.06068709 0.01814173 0.99799196]\n", + " [0.02401844 0.01819993 0.99954584]]\n", + "DEBUG:root:optics_fp: sphi: [-0.69680111 -0.64114722 -0.57314869 -0.49084265 -0.39293677 -0.27960013\n", + " -0.15326941 -0.01896529 -0.69680111 -0.74728304 -0.80034077 -0.85407631\n", + " -0.90539113 -0.94994095 -0.98262854 -0.99880866 -0.01896529 -0.02204027\n", + " -0.02626479 -0.03243122 -0.04227651 -0.06048361 -0.10546358 -0.38328124\n", + " -0.99880866 -0.99839535 -0.9977203 -0.99650464 -0.99396928 -0.9872021\n", + " -0.95720188 -0.38328124 -0.67408945 -0.59784918 -0.50106771 -0.3810536\n", + " -0.23821077 -0.07812313 -0.71824824 -0.78204748 -0.84795317 -0.91077177\n", + " -0.96255302 -0.99400976 -0.02069125 -0.02527007 -0.03236333 -0.04482319\n", + " -0.07241971 -0.18420237 -0.9986244 -0.99795053 -0.99662012 -0.9933915\n", + " -0.98176652 -0.85668122 -0.6967964 -0.6967964 -0.38778427 -0.38778427\n", + " -0.69616172 -0.76258227 -0.83253145 -0.90061674 -0.95788656 -0.99322432\n", + " -0.62111512 -0.69382495 -0.77549605 -0.8611271 -0.93887151 -0.98992366\n", + " -0.52402662 -0.59898168 -0.69015945 -0.79605037 -0.90427778 -0.98347639\n", + " -0.40118994 -0.4700312 -0.56175978 -0.68358289 -0.83348839 -0.96822051\n", + " -0.25223255 -0.30216337 -0.37479377 -0.48708132 -0.66835488 -0.91754577\n", + " -0.08301599 -0.10086897 -0.12834059 -0.17590022 -0.27687945 -0.59535474]\n", + "DEBUG:root:radec2pix: lng: [44.21386846 39.93704685 35.05017674 29.50039724 23.26936887 16.39762201\n", + " 9.00597869 1.30015678 44.21386846 48.38707907 53.17846261 58.652901\n", + " 64.84492629 71.73221904 79.20889503 87.07353952 1.30015678 1.50828626\n", + " 1.79395925 2.21040578 2.87397756 4.09690845 7.09544794 25.08421915\n", + " 87.07353952 86.60429547 85.95429853 84.99452258 83.43549808 80.46877478\n", + " 72.72327889 25.08421915 42.4332296 36.78871515 30.1721461 22.534249\n", + " 13.95213213 4.68455031 45.9485209 51.4701262 57.98745342 65.57788622\n", + " 74.19728483 83.61034654 1.41178444 1.72041252 2.19784005 3.03449456\n", + " 4.87874528 12.23608945 86.85702241 86.16514834 85.07964235 83.13325955\n", + " 78.65106614 58.79906907 44.21351009 44.21351009 25.31647093 25.31647093\n", + " 44.16528338 49.72110165 56.36353517 64.20866184 73.23888739 83.20517984\n", + " 38.4669715 43.98823734 50.87875671 59.43072848 69.79141059 81.71788613\n", + " 31.70295803 36.8883708 43.71214181 52.77876171 64.67058062 79.40261268\n", + " 23.79006954 28.17687017 34.3103939 43.22163096 56.45806862 75.32225144\n", + " 14.78760738 17.78662299 22.23218915 29.3788791 42.10872179 66.39896872\n", + " 4.97718101 6.0450351 7.68908472 10.5407344 16.64345121 37.15297361]\n", + "DEBUG:root:radec2pix: fitpx: [[-5.00000135e-01 -5.00000132e-01]\n", + " [-5.00000144e-01 2.91928571e+02]\n", + " [-4.99999914e-01 5.84357143e+02]\n", + " [-4.99999810e-01 8.76785714e+02]\n", + " [-5.00000028e-01 1.16921429e+03]\n", + " [-5.00000159e-01 1.46164286e+03]\n", + " [-4.99999755e-01 1.75407143e+03]\n", + " [-4.99999923e-01 2.04650000e+03]\n", + " [-5.00000135e-01 -5.00000132e-01]\n", + " [ 2.91928572e+02 -4.99999845e-01]\n", + " [ 5.84357143e+02 -5.00000146e-01]\n", + " [ 8.76785714e+02 -4.99999843e-01]\n", + " [ 1.16921429e+03 -4.99999832e-01]\n", + " [ 1.46164286e+03 -5.00000031e-01]\n", + " [ 1.75407143e+03 -5.00000120e-01]\n", + " [ 2.04650000e+03 -4.99999883e-01]\n", + " [-4.99999923e-01 2.04650000e+03]\n", + " [ 2.91928572e+02 2.04650000e+03]\n", + " [ 5.84357143e+02 2.04650000e+03]\n", + " [ 8.76785714e+02 2.04650000e+03]\n", + " [ 1.16921429e+03 2.04650000e+03]\n", + " [ 1.46164286e+03 2.04650000e+03]\n", + " [ 1.75407143e+03 2.04650000e+03]\n", + " [ 2.04650000e+03 2.04650000e+03]\n", + " [ 2.04650000e+03 -4.99999883e-01]\n", + " [ 2.04650000e+03 2.91928571e+02]\n", + " [ 2.04650000e+03 5.84357143e+02]\n", + " [ 2.04650000e+03 8.76785714e+02]\n", + " [ 2.04650000e+03 1.16921429e+03]\n", + " [ 2.04650000e+03 1.46164286e+03]\n", + " [ 2.04650000e+03 1.75407143e+03]\n", + " [ 2.04650000e+03 2.04650000e+03]\n", + " [ 4.99999783e-01 1.27000000e+02]\n", + " [ 5.00000221e-01 4.85400000e+02]\n", + " [ 5.00000070e-01 8.43800000e+02]\n", + " [ 4.99999908e-01 1.20220000e+03]\n", + " [ 5.00000086e-01 1.56060000e+03]\n", + " [ 5.00000004e-01 1.91900000e+03]\n", + " [ 1.27000000e+02 5.00000120e-01]\n", + " [ 4.85400000e+02 4.99999839e-01]\n", + " [ 8.43800000e+02 4.99999975e-01]\n", + " [ 1.20220000e+03 5.00000060e-01]\n", + " [ 1.56060000e+03 5.00000260e-01]\n", + " [ 1.91900000e+03 4.99999701e-01]\n", + " [ 1.27000000e+02 2.04550000e+03]\n", + " [ 4.85400000e+02 2.04550000e+03]\n", + " [ 8.43800000e+02 2.04550000e+03]\n", + " [ 1.20220000e+03 2.04550000e+03]\n", + " [ 1.56060000e+03 2.04550000e+03]\n", + " [ 1.91900000e+03 2.04550000e+03]\n", + " [ 2.04550000e+03 1.27000000e+02]\n", + " [ 2.04550000e+03 4.85400000e+02]\n", + " [ 2.04550000e+03 8.43800000e+02]\n", + " [ 2.04550000e+03 1.20220000e+03]\n", + " [ 2.04550000e+03 1.56060000e+03]\n", + " [ 2.04550000e+03 1.91900000e+03]\n", + " [ 4.99999741e-01 4.99999746e-01]\n", + " [ 4.99999741e-01 4.99999746e-01]\n", + " [ 2.04550000e+03 2.04550000e+03]\n", + " [ 2.04550000e+03 2.04550000e+03]\n", + " [ 1.27000000e+02 1.27000000e+02]\n", + " [ 4.85400000e+02 1.27000000e+02]\n", + " [ 8.43800000e+02 1.27000000e+02]\n", + " [ 1.20220000e+03 1.27000000e+02]\n", + " [ 1.56060000e+03 1.27000000e+02]\n", + " [ 1.91900000e+03 1.27000000e+02]\n", + " [ 1.27000000e+02 4.85400000e+02]\n", + " [ 4.85400000e+02 4.85400000e+02]\n", + " [ 8.43800000e+02 4.85400000e+02]\n", + " [ 1.20220000e+03 4.85400000e+02]\n", + " [ 1.56060000e+03 4.85400000e+02]\n", + " [ 1.91900000e+03 4.85400000e+02]\n", + " [ 1.27000000e+02 8.43800000e+02]\n", + " [ 4.85400000e+02 8.43800000e+02]\n", + " [ 8.43800000e+02 8.43800000e+02]\n", + " [ 1.20220000e+03 8.43800000e+02]\n", + " [ 1.56060000e+03 8.43800000e+02]\n", + " [ 1.91900000e+03 8.43800000e+02]\n", + " [ 1.27000000e+02 1.20220000e+03]\n", + " [ 4.85400000e+02 1.20220000e+03]\n", + " [ 8.43800000e+02 1.20220000e+03]\n", + " [ 1.20220000e+03 1.20220000e+03]\n", + " [ 1.56060000e+03 1.20220000e+03]\n", + " [ 1.91900000e+03 1.20220000e+03]\n", + " [ 1.27000000e+02 1.56060000e+03]\n", + " [ 4.85400000e+02 1.56060000e+03]\n", + " [ 8.43800000e+02 1.56060000e+03]\n", + " [ 1.20220000e+03 1.56060000e+03]\n", + " [ 1.56060000e+03 1.56060000e+03]\n", + " [ 1.91900000e+03 1.56060000e+03]\n", + " [ 1.27000000e+02 1.91900000e+03]\n", + " [ 4.85400000e+02 1.91900000e+03]\n", + " [ 8.43800000e+02 1.91900000e+03]\n", + " [ 1.20220000e+03 1.91900000e+03]\n", + " [ 1.56060000e+03 1.91900000e+03]\n", + " [ 1.91900000e+03 1.91900000e+03]]\n", + "DEBUG:root:fitpix2pix: ccdpx: shape: (96, 2)\n", + "DEBUG:root:fitpix2pix: visCut: True\n", + "DEBUG:root:cartToSphere: vec: [[ 0.00110855 -0.20853555 0.97801416]\n", + " [ 0.00111823 -0.18105588 0.98347217]\n", + " [ 0.00112655 -0.15288447 0.98824343]\n", + " [ 0.00113349 -0.12412547 0.99226588]\n", + " [ 0.001139 -0.09488471 0.99548762]\n", + " [ 0.00114306 -0.06527159 0.99786688]\n", + " [ 0.00114562 -0.0353997 0.99937258]\n", + " [ 0.00114666 -0.00538646 0.99998484]\n", + " [ 0.00110855 -0.20853555 0.97801416]\n", + " [ 0.03013432 -0.20838958 0.97758156]\n", + " [ 0.05904256 -0.2079729 0.97635099]\n", + " [ 0.08772073 -0.20728684 0.97433939]\n", + " [ 0.11605724 -0.20633313 0.97157468]\n", + " [ 0.14394136 -0.20511339 0.96809575]\n", + " [ 0.17126266 -0.20362847 0.96395256]\n", + " [ 0.19791015 -0.2018782 0.95920632]\n", + " [ 0.00114666 -0.00538646 0.99998484]\n", + " [ 0.03116962 -0.00538259 0.99949962]\n", + " [ 0.06106803 -0.00537156 0.99811915]\n", + " [ 0.09072406 -0.00535349 0.99586168]\n", + " [ 0.1200235 -0.00532854 0.99275675]\n", + " [ 0.1488564 -0.00529689 0.98884464]\n", + " [ 0.17711651 -0.00525872 0.98417584]\n", + " [ 0.20469956 -0.00521415 0.97881096]\n", + " [ 0.19791015 -0.2018782 0.95920632]\n", + " [ 0.19966308 -0.17529764 0.96405674]\n", + " [ 0.20115603 -0.14802765 0.9683099 ]\n", + " [ 0.20238925 -0.12017919 0.97190306]\n", + " [ 0.20336191 -0.09186258 0.97478469]\n", + " [ 0.20407235 -0.06318839 0.97691438]\n", + " [ 0.20451873 -0.03426807 0.97826264]\n", + " [ 0.20469956 -0.00521415 0.97881096]\n", + " [ 0.00121266 -0.196646 0.9804738 ]\n", + " [ 0.00122459 -0.16248857 0.98670967]\n", + " [ 0.00123428 -0.12739553 0.99185123]\n", + " [ 0.00124164 -0.09156092 0.9957987 ]\n", + " [ 0.00124661 -0.05518617 0.9984753 ]\n", + " [ 0.00124912 -0.01848208 0.99982841]\n", + " [ 0.01377154 -0.20841259 0.97794404]\n", + " [ 0.04928181 -0.20805164 0.97687554]\n", + " [ 0.08450359 -0.2072855 0.97462396]\n", + " [ 0.11923105 -0.20611722 0.97123615]\n", + " [ 0.15326028 -0.20454967 0.9667837 ]\n", + " [ 0.18638779 -0.20258404 0.96136325]\n", + " [ 0.01424443 -0.00548838 0.99988348]\n", + " [ 0.05097175 -0.00547863 0.99868507]\n", + " [ 0.08739457 -0.00545803 0.99615882]\n", + " [ 0.12330108 -0.00542687 0.99235447]\n", + " [ 0.15848878 -0.0053855 0.98734609]\n", + " [ 0.192763 -0.0053342 0.98123085]\n", + " [ 0.19861623 -0.19038695 0.96140751]\n", + " [ 0.2005887 -0.15733098 0.96695974]\n", + " [ 0.20217123 -0.12334981 0.97155114]\n", + " [ 0.20336272 -0.08864677 0.97508223]\n", + " [ 0.2041602 -0.05342545 0.97747856]\n", + " [ 0.2045604 -0.01789151 0.97869042]\n", + " [ 0.00120792 -0.20844284 0.97803381]\n", + " [ 0.00120792 -0.20844284 0.97803381]\n", + " [ 0.20460634 -0.00531377 0.97882992]\n", + " [ 0.20460634 -0.00531377 0.97882992]\n", + " [ 0.01382559 -0.19661746 0.9803828 ]\n", + " [ 0.04947523 -0.19627694 0.97929953]\n", + " [ 0.08483539 -0.19555447 0.97701659]\n", + " [ 0.11969997 -0.19445357 0.97358088]\n", + " [ 0.15386543 -0.19297773 0.96906399]\n", + " [ 0.18712908 -0.19112874 0.96356241]\n", + " [ 0.01396162 -0.1624649 0.98661554]\n", + " [ 0.04996174 -0.16218264 0.98549511]\n", + " [ 0.08566901 -0.16158454 0.98313339]\n", + " [ 0.1208763 -0.16067502 0.97957769]\n", + " [ 0.15538076 -0.15945889 0.97489983]\n", + " [ 0.1889821 -0.15793949 0.969196 ]\n", + " [ 0.01407199 -0.12737685 0.99175456]\n", + " [ 0.05035615 -0.12715419 0.99060389]\n", + " [ 0.08634371 -0.12668294 0.98817822]\n", + " [ 0.12182616 -0.12596768 0.98452554]\n", + " [ 0.15660103 -0.12501365 0.97971818]\n", + " [ 0.19047015 -0.12382499 0.9738524 ]\n", + " [ 0.01415593 -0.0915474 0.9957001 ]\n", + " [ 0.05065593 -0.09138626 0.99452628]\n", + " [ 0.08685581 -0.09104555 0.9920518 ]\n", + " [ 0.12254563 -0.09052922 0.98832537]\n", + " [ 0.15752301 -0.08984197 0.98342001]\n", + " [ 0.1915915 -0.08898771 0.97743229]\n", + " [ 0.01421257 -0.05517797 0.99837538]\n", + " [ 0.05085809 -0.05508029 0.99718585]\n", + " [ 0.08720077 -0.05487388 0.99467828]\n", + " [ 0.12302951 -0.05456144 0.99090201]\n", + " [ 0.15814189 -0.05414617 0.9859307 ]\n", + " [ 0.1923426 -0.05363087 0.97986124]\n", + " [ 0.01424114 -0.01847933 0.99972782]\n", + " [ 0.05096003 -0.01844651 0.99853032]\n", + " [ 0.08737459 -0.01837718 0.996006 ]\n", + " [ 0.12327308 -0.0182723 0.99220455]\n", + " [ 0.15845303 -0.018133 0.9872 ]\n", + " [ 0.1927197 -0.01796031 0.98108947]]\n", + "DEBUG:root:optics_fp: xyfp: [[32.2358199 31.31614388]\n", + " [32.23338667 26.92971599]\n", + " [32.23095344 22.54328809]\n", + " [32.2285202 18.15686019]\n", + " [32.22608698 13.7704323 ]\n", + " [32.22365375 9.3840044 ]\n", + " [32.22122051 4.99757651]\n", + " [32.21878728 0.61114861]\n", + " [32.2358199 31.31614388]\n", + " [27.849392 31.31857712]\n", + " [23.46296411 31.32101035]\n", + " [19.07653621 31.32344358]\n", + " [14.69010831 31.3258768 ]\n", + " [10.30368042 31.32831004]\n", + " [ 5.91725252 31.33074327]\n", + " [ 1.53082462 31.3331765 ]\n", + " [32.21878728 0.61114861]\n", + " [27.83235938 0.61358184]\n", + " [23.44593149 0.61601507]\n", + " [19.0595036 0.6184483 ]\n", + " [14.6730757 0.62088153]\n", + " [10.2866478 0.62331476]\n", + " [ 5.90021991 0.625748 ]\n", + " [ 1.513792 0.62818122]\n", + " [ 1.53082462 31.3331765 ]\n", + " [ 1.52839139 26.94674861]\n", + " [ 1.52595816 22.5603207 ]\n", + " [ 1.52352493 18.17389281]\n", + " [ 1.5210917 13.78746492]\n", + " [ 1.51865847 9.40103702]\n", + " [ 1.51622524 5.01460912]\n", + " [ 1.513792 0.62818122]\n", + " [32.219759 29.4036525 ]\n", + " [32.21677684 24.02765333]\n", + " [32.21379467 18.65165415]\n", + " [32.21081251 13.27565498]\n", + " [32.20783035 7.89965581]\n", + " [32.20484818 2.52365664]\n", + " [30.32331188 31.30220479]\n", + " [24.9473127 31.30518695]\n", + " [19.57131353 31.30816912]\n", + " [14.19531435 31.31115127]\n", + " [ 8.81931518 31.31413344]\n", + " [ 3.44331601 31.3171156 ]\n", + " [30.3062959 0.62720951]\n", + " [24.93029672 0.63019167]\n", + " [19.55429755 0.63317383]\n", + " [14.17829838 0.636156 ]\n", + " [ 8.80229921 0.63913816]\n", + " [ 3.42630004 0.64212033]\n", + " [ 1.54476372 29.42066847]\n", + " [ 1.54178156 24.0446693 ]\n", + " [ 1.53879939 18.66867013]\n", + " [ 1.53581723 13.29267096]\n", + " [ 1.53283507 7.91667178]\n", + " [ 1.5298529 2.54067261]\n", + " [32.22081158 31.30115221]\n", + " [32.22081158 31.30115221]\n", + " [ 1.52880032 0.6431729 ]\n", + " [ 1.52880032 0.6431729 ]\n", + " [30.32225929 29.40470508]\n", + " [24.94626012 29.40768724]\n", + " [19.57026095 29.41066941]\n", + " [14.19426178 29.41365157]\n", + " [ 8.8182626 29.41663373]\n", + " [ 3.44226343 29.4196159 ]\n", + " [30.31927713 24.02870591]\n", + " [24.94327796 24.03168807]\n", + " [19.56727878 24.03467023]\n", + " [14.19127961 24.0376524 ]\n", + " [ 8.81528044 24.04063456]\n", + " [ 3.43928127 24.04361672]\n", + " [30.31629496 18.65270673]\n", + " [24.9402958 18.6556889 ]\n", + " [19.56429662 18.65867106]\n", + " [14.18829744 18.66165322]\n", + " [ 8.81229827 18.66463538]\n", + " [ 3.4362991 18.66761755]\n", + " [30.31331281 13.27670756]\n", + " [24.93731363 13.27968972]\n", + " [19.56131446 13.28267189]\n", + " [14.18531529 13.28565406]\n", + " [ 8.80931611 13.28863621]\n", + " [ 3.43331694 13.29161838]\n", + " [30.31033064 7.90070839]\n", + " [24.93433147 7.90369055]\n", + " [19.55833229 7.90667271]\n", + " [14.18233312 7.90965488]\n", + " [ 8.80633395 7.91263704]\n", + " [ 3.43033477 7.9156192 ]\n", + " [30.30734847 2.52470921]\n", + " [24.9313493 2.52769138]\n", + " [19.55535013 2.53067354]\n", + " [14.17935096 2.53365571]\n", + " [ 8.80335178 2.53663787]\n", + " [ 3.42735261 2.53962004]]\n", + "DEBUG:root:optics_fp: xyfp shape: (96, 2)\n", + "DEBUG:root:radec2pix: lng: [270.30457564 270.35386432 270.42218515 270.52319877 270.68775016\n", + " 271.00328211 271.85358468 282.01764037 270.30457564 278.22825834\n", + " 285.84900373 292.93736432 299.35666656 305.05982707 310.06566745\n", + " 314.43133752 282.01764037 350.20239022 354.97318448 356.62297809\n", + " 357.45797758 357.96205284 358.29934604 358.54086611 314.43133752\n", + " 318.71792809 323.65121653 329.29806584 335.69036822 342.79553001\n", + " 350.4881795 358.54086611 270.35332309 270.43180131 270.55509491\n", + " 270.77692983 271.2940439 273.86646927 273.78050957 283.32620486\n", + " 292.17913267 300.04776463 306.84264375 312.61566094 338.92831161\n", + " 353.86519186 356.42636123 357.47985638 358.05382146 358.4148969\n", + " 316.21189934 321.89127155 328.61157088 336.44738638 345.33544633\n", + " 355.00144674 270.33202411 270.33202411 358.51232366 358.51232366\n", + " 274.02225895 284.14773214 293.45215101 301.61524642 308.56613427\n", + " 314.39418307 274.91171606 287.12189287 297.93167364 306.95425335\n", + " 314.25788847 320.11321977 276.3042009 291.6047689 304.27729951\n", + " 314.04247307 321.39984571 326.97203004 278.79000558 298.99985673\n", + " 313.65088315 323.54527533 330.30207858 335.08673923 284.44409964\n", + " 312.71767267 327.81852787 336.08354959 341.09932037 344.41993917\n", + " 307.6197367 340.1007605 348.12231225 351.56865678 353.47160216\n", + " 354.67575821]\n", + "DEBUG:root:radec2pix: lat: [73.24843796 74.22959053 75.14101603 75.95564397 76.6437957 77.17522107\n", + " 77.52247637 77.66531399 73.24843796 74.25938156 75.20604331 76.06127099\n", + " 76.79469021 77.37449152 77.77070397 77.95983585 77.66531399 79.26403549\n", + " 80.8954867 82.55419485 84.2348008 85.93154111 87.63625009 89.30890983\n", + " 77.95983585 79.5631834 81.19741545 82.85654952 84.53396682 86.22024\n", + " 87.89143193 89.30890983 73.68688931 74.8461168 75.87404737 76.71704667\n", + " 77.31977046 77.63442603 73.69912883 74.89851762 75.9747656 76.87322604\n", + " 77.53566935 77.90931811 78.357841 80.33991917 82.36567874 84.42519517\n", + " 86.5076147 88.59172382 78.65442708 80.64093339 82.6678651 84.72327772\n", + " 86.78866387 88.77999774 73.25542451 73.25542451 89.30107513 89.30107513\n", + " 74.14922787 75.40361568 76.5361131 77.48786454 78.19419066 78.59463145\n", + " 75.36296624 76.78183851 78.08930019 79.21461778 80.0707569 80.56622359\n", + " 76.44568445 78.03639269 79.53999931 80.87766645 81.93562678 82.57036945\n", + " 77.33928008 79.09582585 80.80551049 82.39402202 83.72877916 84.58613925\n", + " 77.98201104 79.8754942 81.77128989 83.62092117 85.31596639 86.56531268\n", + " 78.31903282 80.2916347 82.30308639 84.33811541 86.36841377 88.27312586]\n", + "DEBUG:root:radec2pix: lat: [77.96328192 79.56853071 81.20563621 82.86944579 84.55492216 86.25697831\n", + " 87.97026012 89.68446141 77.96328192 77.84499787 77.51456239 76.99218852\n", + " 76.30618444 75.48813083 74.56921129 73.5781677 89.68446141 88.18737722\n", + " 86.48534608 84.7856574 83.09971795 81.43388184 79.79360686 78.18420142\n", + " 73.5781677 74.59165918 75.53717808 76.38588844 77.10603256 77.66476376\n", + " 78.03174302 78.18420142 78.65888684 80.64836049 82.6805387 84.74610355\n", + " 86.83565024 88.93857815 77.94403081 77.65435125 77.06482717 76.22448951\n", + " 75.19110028 74.0211233 89.125335 87.06142445 84.97647052 82.91045242\n", + " 80.87550158 78.88161748 74.03033777 75.2306137 76.3004884 77.18265224\n", + " 77.81700171 78.15051889 77.96868077 77.96868077 78.18950618 78.18950618\n", + " 78.63240168 78.32169564 77.69220555 76.80049546 75.71119975 74.48541744\n", + " 80.6152305 80.22940153 79.46186211 78.40069669 77.13562878 75.74187621\n", + " 82.63719517 82.13946169 81.18123393 79.90730671 78.44079679 76.86879929\n", + " 84.68476231 84.00240554 82.77130238 81.23639689 79.55203729 77.80444657\n", + " 86.73357497 85.70054621 84.08633958 82.26535796 80.37757677 78.48177609\n", + " 88.66315983 86.89328024 84.87745159 82.8411917 80.82286686 78.83968928]\n", + "DEBUG:root:make_az_asym: xyp: [[32.2358199 31.31614388]\n", + " [32.23338667 26.92971599]\n", + " [32.23095344 22.54328809]\n", + " [32.2285202 18.15686019]\n", + " [32.22608698 13.7704323 ]\n", + " [32.22365375 9.3840044 ]\n", + " [32.22122051 4.99757651]\n", + " [32.21878728 0.61114861]\n", + " [32.2358199 31.31614388]\n", + " [27.849392 31.31857712]\n", + " [23.46296411 31.32101035]\n", + " [19.07653621 31.32344358]\n", + " [14.69010831 31.3258768 ]\n", + " [10.30368042 31.32831004]\n", + " [ 5.91725252 31.33074327]\n", + " [ 1.53082462 31.3331765 ]\n", + " [32.21878728 0.61114861]\n", + " [27.83235938 0.61358184]\n", + " [23.44593149 0.61601507]\n", + " [19.0595036 0.6184483 ]\n", + " [14.6730757 0.62088153]\n", + " [10.2866478 0.62331476]\n", + " [ 5.90021991 0.625748 ]\n", + " [ 1.513792 0.62818122]\n", + " [ 1.53082462 31.3331765 ]\n", + " [ 1.52839139 26.94674861]\n", + " [ 1.52595816 22.5603207 ]\n", + " [ 1.52352493 18.17389281]\n", + " [ 1.5210917 13.78746492]\n", + " [ 1.51865847 9.40103702]\n", + " [ 1.51622524 5.01460912]\n", + " [ 1.513792 0.62818122]\n", + " [32.219759 29.4036525 ]\n", + " [32.21677684 24.02765333]\n", + " [32.21379467 18.65165415]\n", + " [32.21081251 13.27565498]\n", + " [32.20783035 7.89965581]\n", + " [32.20484818 2.52365664]\n", + " [30.32331188 31.30220479]\n", + " [24.9473127 31.30518695]\n", + " [19.57131353 31.30816912]\n", + " [14.19531435 31.31115127]\n", + " [ 8.81931518 31.31413344]\n", + " [ 3.44331601 31.3171156 ]\n", + " [30.3062959 0.62720951]\n", + " [24.93029672 0.63019167]\n", + " [19.55429755 0.63317383]\n", + " [14.17829838 0.636156 ]\n", + " [ 8.80229921 0.63913816]\n", + " [ 3.42630004 0.64212033]\n", + " [ 1.54476372 29.42066847]\n", + " [ 1.54178156 24.0446693 ]\n", + " [ 1.53879939 18.66867013]\n", + " [ 1.53581723 13.29267096]\n", + " [ 1.53283507 7.91667178]\n", + " [ 1.5298529 2.54067261]\n", + " [32.22081158 31.30115221]\n", + " [32.22081158 31.30115221]\n", + " [ 1.52880032 0.6431729 ]\n", + " [ 1.52880032 0.6431729 ]\n", + " [30.32225929 29.40470508]\n", + " [24.94626012 29.40768724]\n", + " [19.57026095 29.41066941]\n", + " [14.19426178 29.41365157]\n", + " [ 8.8182626 29.41663373]\n", + " [ 3.44226343 29.4196159 ]\n", + " [30.31927713 24.02870591]\n", + " [24.94327796 24.03168807]\n", + " [19.56727878 24.03467023]\n", + " [14.19127961 24.0376524 ]\n", + " [ 8.81528044 24.04063456]\n", + " [ 3.43928127 24.04361672]\n", + " [30.31629496 18.65270673]\n", + " [24.9402958 18.6556889 ]\n", + " [19.56429662 18.65867106]\n", + " [14.18829744 18.66165322]\n", + " [ 8.81229827 18.66463538]\n", + " [ 3.4362991 18.66761755]\n", + " [30.31331281 13.27670756]\n", + " [24.93731363 13.27968972]\n", + " [19.56131446 13.28267189]\n", + " [14.18531529 13.28565406]\n", + " [ 8.80931611 13.28863621]\n", + " [ 3.43331694 13.29161838]\n", + " [30.31033064 7.90070839]\n", + " [24.93433147 7.90369055]\n", + " [19.55833229 7.90667271]\n", + " [14.18233312 7.90965488]\n", + " [ 8.80633395 7.91263704]\n", + " [ 3.43033477 7.9156192 ]\n", + " [30.30734847 2.52470921]\n", + " [24.9313493 2.52769138]\n", + " [19.55535013 2.53067354]\n", + " [14.17935096 2.53365571]\n", + " [ 8.80335178 2.53663787]\n", + " [ 3.42735261 2.53962004]]\n", + "DEBUG:root:make_az_asym: xyp: shape: (96, 2)\n", + "DEBUG:root:radec2pix: curVec: [[-0.2354119 -0.37438087 0.89689476]\n", + " [-0.20834887 -0.38002249 0.90120678]\n", + " [-0.18057578 -0.38546996 0.90487861]\n", + " [-0.1521946 -0.39068481 0.90785582]\n", + " [-0.12330888 -0.39563253 0.9100933 ]\n", + " [-0.09402559 -0.40028239 0.91155537]\n", + " [-0.064456 -0.40460751 0.91221608]\n", + " [-0.03471544 -0.40858509 0.91205979]\n", + " [-0.2354119 -0.37438087 0.89689476]\n", + " [-0.23882307 -0.40045329 0.88464722]\n", + " [-0.24192777 -0.42612792 0.87171437]\n", + " [-0.24471389 -0.4513099 0.85815761]\n", + " [-0.24717014 -0.47590962 0.84404796]\n", + " [-0.24928559 -0.49984275 0.82946604]\n", + " [-0.25104931 -0.52303001 0.81450221]\n", + " [-0.25245017 -0.54539678 0.7992567 ]\n", + " [-0.03471544 -0.40858509 0.91205979]\n", + " [-0.03839047 -0.43553041 0.89935501]\n", + " [-0.04201627 -0.46199904 0.8858846 ]\n", + " [-0.04557904 -0.48789215 0.87171314]\n", + " [-0.0490658 -0.51311882 0.85691401]\n", + " [-0.05246437 -0.53759615 0.84156869]\n", + " [-0.05576328 -0.56124853 0.82576664]\n", + " [-0.05895145 -0.58400604 0.80960588]\n", + " [-0.25245017 -0.54539678 0.7992567 ]\n", + " [-0.22647619 -0.55226326 0.80231779]\n", + " [-0.19976665 -0.55873907 0.8049248 ]\n", + " [-0.17242853 -0.56478444 0.8070235 ]\n", + " [-0.14456922 -0.57036354 0.80856984]\n", + " [-0.11629681 -0.57544448 0.80952993]\n", + " [-0.08772065 -0.57999964 0.80987993]\n", + " [-0.05895145 -0.58400604 0.80960588]\n", + " [-0.22371838 -0.37695195 0.89880883]\n", + " [-0.19005966 -0.38374172 0.90367008]\n", + " [-0.15543562 -0.39020103 0.9075147 ]\n", + " [-0.12003615 -0.39626471 0.91025579]\n", + " [-0.08405827 -0.40187621 0.91182768]\n", + " [-0.04770857 -0.40698768 0.91218689]\n", + " [-0.23684488 -0.38581111 0.89165817]\n", + " [-0.24082137 -0.41751111 0.87617895]\n", + " [-0.24432554 -0.44851868 0.8597302 ]\n", + " [-0.24733629 -0.47866669 0.8424387 ]\n", + " [-0.24983347 -0.50779986 0.82445287]\n", + " [-0.25179686 -0.53577415 0.80594317]\n", + " [-0.03642475 -0.42037234 0.90662028]\n", + " [-0.04089735 -0.45308875 0.8905268 ]\n", + " [-0.04528201 -0.48499017 0.87334648]\n", + " [-0.04955448 -0.51590585 0.8552108 ]\n", + " [-0.05369235 -0.54568312 0.83626973]\n", + " [-0.05767468 -0.57418522 0.81669147]\n", + " [-0.24121812 -0.54836071 0.80069617]\n", + " [-0.20887505 -0.55651831 0.80415085]\n", + " [-0.17553342 -0.56404925 0.8068683 ]\n", + " [-0.14139071 -0.57088595 0.80876319]\n", + " [-0.10664602 -0.57696976 0.80977313]\n", + " [-0.07150122 -0.58225171 0.80985833]\n", + " [-0.23533285 -0.37449017 0.89686987]\n", + " [-0.23533285 -0.37449017 0.89686987]\n", + " [-0.05903934 -0.58391707 0.80966364]\n", + " [-0.05903934 -0.58391707 0.80966364]\n", + " [-0.22523819 -0.38831699 0.89357578]\n", + " [-0.22925185 -0.42013512 0.87802623]\n", + " [-0.23281571 -0.4512503 0.8614929 ]\n", + " [-0.23590901 -0.48149511 0.84410272]\n", + " [-0.23851207 -0.51071444 0.82600409]\n", + " [-0.24060502 -0.53876461 0.80736728]\n", + " [-0.19159963 -0.39521777 0.89838327]\n", + " [-0.1957136 -0.42733229 0.88265695]\n", + " [-0.19944187 -0.45871571 0.86591156]\n", + " [-0.20276439 -0.4891998 0.84827481]\n", + " [-0.20566266 -0.51862987 0.82989513]\n", + " [-0.20811793 -0.54686362 0.81094211]\n", + " [-0.15699298 -0.40176714 0.90218422]\n", + " [-0.16120047 -0.43412069 0.88631463]\n", + " [-0.1650875 -0.46571772 0.86939814]\n", + " [-0.16863416 -0.49638908 0.8515635 ]\n", + " [-0.17182242 -0.52598059 0.83295947]\n", + " [-0.17463435 -0.55435156 0.813755 ]\n", + " [-0.12160813 -0.40789939 0.90489201]\n", + " [-0.12590274 -0.44043314 0.88891347]\n", + " [-0.129944 -0.47218813 0.87186749]\n", + " [-0.13371137 -0.5029944 0.85388401]\n", + " [-0.13718642 -0.53269827 0.83511223]\n", + " [-0.14035123 -0.56116063 0.81572071]\n", + " [-0.08564199 -0.41355725 0.90644131]\n", + " [-0.09001719 -0.44621065 0.89038922]\n", + " [-0.09420823 -0.47806689 0.87325647]\n", + " [-0.09819325 -0.50895539 0.85517396]\n", + " [-0.10195255 -0.53872296 0.83629137]\n", + " [-0.10546737 -0.56723182 0.81677702]\n", + " [-0.04930103 -0.41869229 0.90678894]\n", + " [-0.05374962 -0.45140333 0.89069973]\n", + " [-0.05808497 -0.48330319 0.87352399]\n", + " [-0.06228348 -0.5142211 0.85539314]\n", + " [-0.06632352 -0.54400426 0.83645715]\n", + " [-0.07018476 -0.57251575 0.81688421]]\n", + "DEBUG:root:radec2pix: curVec Shape: (96, 3)\n", + "DEBUG:root:radec2pix: xyfp: [[32.2358199 31.31614388]\n", + " [32.23338667 26.92971599]\n", + " [32.23095344 22.54328809]\n", + " [32.2285202 18.15686019]\n", + " [32.22608698 13.7704323 ]\n", + " [32.22365375 9.3840044 ]\n", + " [32.22122051 4.99757651]\n", + " [32.21878728 0.61114861]\n", + " [32.2358199 31.31614388]\n", + " [27.849392 31.31857712]\n", + " [23.46296411 31.32101035]\n", + " [19.07653621 31.32344358]\n", + " [14.69010831 31.3258768 ]\n", + " [10.30368042 31.32831004]\n", + " [ 5.91725252 31.33074327]\n", + " [ 1.53082462 31.3331765 ]\n", + " [32.21878728 0.61114861]\n", + " [27.83235938 0.61358184]\n", + " [23.44593149 0.61601507]\n", + " [19.0595036 0.6184483 ]\n", + " [14.6730757 0.62088153]\n", + " [10.2866478 0.62331476]\n", + " [ 5.90021991 0.625748 ]\n", + " [ 1.513792 0.62818122]\n", + " [ 1.53082462 31.3331765 ]\n", + " [ 1.52839139 26.94674861]\n", + " [ 1.52595816 22.5603207 ]\n", + " [ 1.52352493 18.17389281]\n", + " [ 1.5210917 13.78746492]\n", + " [ 1.51865847 9.40103702]\n", + " [ 1.51622524 5.01460912]\n", + " [ 1.513792 0.62818122]\n", + " [32.219759 29.4036525 ]\n", + " [32.21677684 24.02765333]\n", + " [32.21379467 18.65165415]\n", + " [32.21081251 13.27565498]\n", + " [32.20783035 7.89965581]\n", + " [32.20484818 2.52365664]\n", + " [30.32331188 31.30220479]\n", + " [24.9473127 31.30518695]\n", + " [19.57131353 31.30816912]\n", + " [14.19531435 31.31115127]\n", + " [ 8.81931518 31.31413344]\n", + " [ 3.44331601 31.3171156 ]\n", + " [30.3062959 0.62720951]\n", + " [24.93029672 0.63019167]\n", + " [19.55429755 0.63317383]\n", + " [14.17829838 0.636156 ]\n", + " [ 8.80229921 0.63913816]\n", + " [ 3.42630004 0.64212033]\n", + " [ 1.54476372 29.42066847]\n", + " [ 1.54178156 24.0446693 ]\n", + " [ 1.53879939 18.66867013]\n", + " [ 1.53581723 13.29267096]\n", + " [ 1.53283507 7.91667178]\n", + " [ 1.5298529 2.54067261]\n", + " [32.22081158 31.30115221]\n", + " [32.22081158 31.30115221]\n", + " [ 1.52880032 0.6431729 ]\n", + " [ 1.52880032 0.6431729 ]\n", + " [30.32225929 29.40470508]\n", + " [24.94626012 29.40768724]\n", + " [19.57026095 29.41066941]\n", + " [14.19426178 29.41365157]\n", + " [ 8.8182626 29.41663373]\n", + " [ 3.44226343 29.4196159 ]\n", + " [30.31927713 24.02870591]\n", + " [24.94327796 24.03168807]\n", + " [19.56727878 24.03467023]\n", + " [14.19127961 24.0376524 ]\n", + " [ 8.81528044 24.04063456]\n", + " [ 3.43928127 24.04361672]\n", + " [30.31629496 18.65270673]\n", + " [24.9402958 18.6556889 ]\n", + " [19.56429662 18.65867106]\n", + " [14.18829744 18.66165322]\n", + " [ 8.81229827 18.66463538]\n", + " [ 3.4362991 18.66761755]\n", + " [30.31331281 13.27670756]\n", + " [24.93731363 13.27968972]\n", + " [19.56131446 13.28267189]\n", + " [14.18531529 13.28565406]\n", + " [ 8.80931611 13.28863621]\n", + " [ 3.43331694 13.29161838]\n", + " [30.31033064 7.90070839]\n", + " [24.93433147 7.90369055]\n", + " [19.55833229 7.90667271]\n", + " [14.18233312 7.90965488]\n", + " [ 8.80633395 7.91263704]\n", + " [ 3.43033477 7.9156192 ]\n", + " [30.30734847 2.52470921]\n", + " [24.9313493 2.52769138]\n", + " [19.55535013 2.53067354]\n", + " [14.17935096 2.53365571]\n", + " [ 8.80335178 2.53663787]\n", + " [ 3.42735261 2.53962004]]\n", + "DEBUG:root:radec2pix: xyfp Shape: (96, 2)\n", + "DEBUG:root:optics_fp: rtanth: [31.49183295 27.10547639 22.71914763 18.33286663 13.94667845 9.56071086\n", + " 5.17552468 0.80400903 31.49183295 31.81893962 32.73584893 34.19514883\n", + " 36.13117923 38.47203574 41.14868729 44.10003298 0.80400903 4.62123428\n", + " 8.97478096 13.34987234 17.73056686 22.11353481 26.49764807 30.88241889\n", + " 44.10003298 41.08265104 38.3306279 35.90503258 33.87605653 32.31848632\n", + " 31.30277019 30.88241889 29.57945042 24.20357534 18.8277716 13.45212473\n", + " 8.07694792 2.70504492 31.5450314 32.34738816 33.9914811 36.36331677\n", + " 39.33145785 42.7719429 2.22895212 7.49884938 12.85690509 18.22553229\n", + " 23.59751677 28.97099101 42.74447401 39.21682332 36.14735337 33.66163739\n", + " 31.89644588 30.97520686 31.47691651 31.47691651 30.86780955 30.86780955\n", + " 29.6519244 30.50411668 32.24233865 34.73382242 37.83003027 41.39549146\n", + " 24.29209321 25.32528987 27.39411567 30.28708623 33.79319995 37.74196451\n", + " 18.94142858 20.24949953 22.78397459 26.19121067 30.17701587 34.5416822\n", + " 13.61074549 15.37910619 18.5898944 22.63745111 27.1500822 31.93121491\n", + " 8.33845435 10.99064764 15.16118736 19.91812291 24.9279841 30.06459569\n", + " 3.40734519 7.92934524 13.11265734 18.40684115 23.73782997 29.08539314]\n", + "DEBUG:root:radec2pix: camVec: [[-0.00108623 -0.00110818 -0.00112898 -0.00114857 -0.00116686 -0.00118378\n", + " -0.00119922 -0.00121312 -0.00108623 -0.03008973 -0.05897582 -0.08763213\n", + " -0.11594722 -0.14381054 -0.17111212 -0.19774215 -0.00121312 -0.0312253\n", + " -0.06111305 -0.09075893 -0.12004913 -0.1488739 -0.17712688 -0.20470344\n", + " -0.19774215 -0.19951656 -0.20103291 -0.2022905 -0.20328809 -0.20402394\n", + " -0.20449622 -0.20470344 -0.00119558 -0.00122271 -0.00124786 -0.00127089\n", + " -0.00129164 -0.00130994 -0.01373956 -0.04922259 -0.08441749 -0.11911871\n", + " -0.1531227 -0.18622706 -0.01430615 -0.05102028 -0.08743049 -0.12332566\n", + " -0.15850368 -0.19276957 -0.19845732 -0.20045757 -0.20206974 -0.20329178\n", + " -0.20412054 -0.20455274 -0.00118556 -0.00118556 -0.20461015 -0.20461015\n", + " -0.01379915 -0.04942232 -0.08475642 -0.11959564 -0.15373662 -0.18697743\n", + " -0.01395111 -0.04992687 -0.08561039 -0.12079486 -0.15527748 -0.18885795\n", + " -0.0140777 -0.05033965 -0.08630574 -0.12176792 -0.15652378 -0.19037482\n", + " -0.01417814 -0.05065827 -0.08683905 -0.12251113 -0.15747231 -0.19152571\n", + " -0.0142515 -0.05087978 -0.08720594 -0.12301955 -0.15811848 -0.19230704\n", + " -0.01429691 -0.0510015 -0.08740238 -0.12328852 -0.15845779 -0.19271515]\n", + " [ 0.20994474 0.18250974 0.15437814 0.12565449 0.09644464 0.0668576\n", + " 0.03700641 0.00700791 0.20994474 0.20980966 0.20940234 0.20872399\n", + " 0.20777622 0.20656061 0.20507835 0.20333011 0.00700791 0.00701559\n", + " 0.00701392 0.00700302 0.00698305 0.00695418 0.00691659 0.00687038\n", + " 0.20333011 0.17679323 0.14956333 0.12175011 0.09346339 0.06481351\n", + " 0.03591173 0.00687038 0.19807534 0.16396932 0.12892083 0.09312409\n", + " 0.05677987 0.02009792 0.20982687 0.20947825 0.20872203 0.20756102\n", + " 0.20599809 0.20403521 0.00711509 0.00711803 0.00710683 0.00708177\n", + " 0.0070432 0.00699139 0.19185821 0.1588536 0.12491703 0.09025061\n", + " 0.0550575 0.01954302 0.20985223 0.20985223 0.00696998 0.00696998\n", + " 0.19805172 0.19772367 0.19701128 0.19591776 0.19444643 0.19259955\n", + " 0.16395068 0.1636812 0.16309354 0.16219177 0.16098028 0.15946229\n", + " 0.12890725 0.1286975 0.12823673 0.12752928 0.12657997 0.12539259\n", + " 0.09311572 0.09296747 0.092637 0.09212815 0.0914453 0.09059206\n", + " 0.05677687 0.05669199 0.05649545 0.05618991 0.05577844 0.0552636\n", + " 0.02010041 0.0200803 0.02002048 0.0199219 0.01978566 0.01961272]\n", + " [ 0.97771265 0.98320342 0.98801119 0.9920734 0.99533767 0.99776183\n", + " 0.99931431 0.99997471 0.97771265 0.97727914 0.97604944 0.97404051\n", + " 0.97128023 0.96780744 0.96367189 0.95893426 0.99997471 0.99948775\n", + " 0.99810621 0.99584827 0.99274339 0.98883174 0.98416372 0.97879993\n", + " 0.95893426 0.96381393 0.96809947 0.97172808 0.97464791 0.97681802\n", + " 0.97820838 0.97879993 0.98018607 0.98646468 0.9916541 0.9956537\n", + " 0.99838589 0.99979716 0.97764201 0.9765736 0.97432479 0.97094241\n", + " 0.96649792 0.96108746 0.99987235 0.99867225 0.99614527 0.99234098\n", + " 0.98733327 0.98121915 0.96114781 0.96673797 0.971372 0.97494989\n", + " 0.97739627 0.97866043 0.97773239 0.97773239 0.97881873 0.97881873\n", + " 0.98009443 0.97901113 0.97673072 0.97330012 0.96879081 0.96329894\n", + " 0.98636988 0.98524909 0.98288929 0.97933775 0.97466623 0.96897082\n", + " 0.99155673 0.99040541 0.9879811 0.98433168 0.97952939 0.97367044\n", + " 0.99555434 0.9943796 0.99190593 0.98818188 0.98328034 0.97729779\n", + " 0.99828517 0.99709441 0.99458704 0.99081223 0.98584345 0.97977749\n", + " 0.99969574 0.99849668 0.99597189 0.99217088 0.98716749 0.98105872]]\n", + "DEBUG:root:radec2pix: camVec Shape: (3, 96)\n", + "DEBUG:root:optics_fp: rtanth: [45.0829242 42.14007881 39.46623798 37.11957906 35.16566323 33.67292833\n", + " 32.70458448 32.30781794 45.0829242 42.05181002 39.27748601 36.81804721\n", + " 34.74043472 33.1165898 32.01563284 31.49245123 32.30781794 27.92274647\n", + " 23.53818074 19.15446803 14.77236778 10.39391962 6.02708817 1.76054813\n", + " 31.49245123 27.11255561 22.73517913 18.3621235 13.99743906 9.65248838\n", + " 5.37533955 1.76054813 43.75905359 40.32550839 37.35292806 34.95909888\n", + " 33.26918554 32.39354213 43.72230567 40.17242604 37.06494796 34.51955493\n", + " 32.6679006 31.63204924 30.39623387 25.02228675 19.64946278 14.27902981\n", + " 8.91530985 3.58853155 29.58337372 24.21709844 18.85636405 13.50776907\n", + " 8.19511667 3.10850472 45.06171287 45.06171287 1.78051042 1.78051042\n", + " 42.37849474 38.70556314 35.46980647 32.8008609 30.84620775 29.74698879\n", + " 38.82304306 34.77660814 31.13517347 28.05687673 25.74452154 24.41669917\n", + " 35.72566697 31.28109784 27.17523938 23.58565115 20.78160237 19.11203303\n", + " 33.21476541 28.37964838 23.77795187 19.57499171 16.08640287 13.86243725\n", + " 31.43120667 26.26984115 21.21535074 16.36705265 11.9779994 8.76739863\n", + " 30.50284606 25.15168819 19.81398425 14.50459502 9.27228848 4.40115246]\n", + "DEBUG:root:optics_fp: cphi: [0.00531582 0.00617606 0.00736845 0.00913141 0.01200322 0.01750968\n", + " 0.03234551 0.20821284 0.00531582 0.14311708 0.27310311 0.3897246\n", + " 0.4902447 0.57443147 0.64366516 0.70005401 0.20821284 0.985415\n", + " 0.9961538 0.99826353 0.99901596 0.99936749 0.99955952 0.99967574\n", + " 0.70005401 0.75147061 0.80542393 0.85983504 0.91133409 0.95525529\n", + " 0.98625153 0.99967574 0.00616661 0.00753628 0.00968808 0.01355957\n", + " 0.02258341 0.06743141 0.06593447 0.23049481 0.37750356 0.50072179\n", + " 0.5996194 0.67707715 0.93313131 0.9942732 0.99805551 0.99903282\n", + " 0.99942317 0.99961734 0.72190396 0.78684101 0.853656 0.91669352\n", + " 0.96742456 0.9961969 0.00579488 0.00579488 0.99966293 0.99966293\n", + " 0.07014401 0.24442291 0.39798307 0.52421253 0.62341756 0.6995908\n", + " 0.08562066 0.29440551 0.4684183 0.60117718 0.69788907 0.76731313\n", + " 0.10980719 0.36820194 0.56319871 0.69519142 0.78151879 0.83840459\n", + " 0.15281345 0.48480743 0.69026239 0.80432664 0.86864949 0.90694654\n", + " 0.24943532 0.67838632 0.84636544 0.9141376 0.94608152 0.96325609\n", + " 0.61041805 0.94029264 0.97858921 0.98919227 0.99351563 0.99568553]\n", + "DEBUG:root:mm_to_pix: fitpx: [[0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]]\n", + "DEBUG:root:mm_to_pix: fitpx.shape: (96, 2)\n", + "DEBUG:root:optics_fp: cphi: [0.71674184 0.76675024 0.81864942 0.87035228 0.91865771 0.95932569\n", + " 0.98767201 0.99974255 0.71674184 0.66409483 0.59932455 0.52022133\n", + " 0.42506968 0.31345852 0.18722881 0.05105417 0.99974255 0.99965353\n", + " 0.99950987 0.99925593 0.99874223 0.99744464 0.99234175 0.9056856\n", + " 0.05105417 0.05923154 0.07055215 0.08725098 0.11432168 0.16558509\n", + " 0.29698694 0.9056856 0.73806414 0.80084934 0.86451924 0.92365062\n", + " 0.9704975 0.99665945 0.6953044 0.6229226 0.53010496 0.41345588\n", + " 0.27232584 0.11128947 0.99969644 0.99954923 0.99926436 0.99859785\n", + " 0.99637691 0.97728259 0.0548278 0.06688083 0.08577093 0.11956053\n", + " 0.19678357 0.51804091 0.7167462 0.7167462 0.90395966 0.90395966\n", + " 0.7173329 0.64650885 0.55392153 0.43509499 0.28838199 0.1183142\n", + " 0.78296688 0.7194824 0.6309635 0.50857972 0.34543889 0.14404729\n", + " 0.85078398 0.79980651 0.72282072 0.60489433 0.42782202 0.18390653\n", + " 0.9150296 0.88149415 0.82599605 0.72871014 0.55254711 0.25338228\n", + " 0.96687862 0.95220074 0.92565817 0.87139471 0.74187378 0.40036553\n", + " 0.99622933 0.99443943 0.99100871 0.9831251 0.95810564 0.79702588]\n", + "DEBUG:root:radec2pix: curVec: [[ 0.33227596 -0.51206604 -0.7920739 ]\n", + " [ 0.33734303 -0.53393895 -0.77531212]\n", + " [ 0.3422373 -0.55581593 -0.75758979]\n", + " [ 0.34692421 -0.57758472 -0.73894485]\n", + " [ 0.35137306 -0.59914038 -0.71942184]\n", + " [ 0.35555661 -0.62038345 -0.69907358]\n", + " [ 0.35945095 -0.64121862 -0.6779629 ]\n", + " [ 0.36303565 -0.66155475 -0.65616341]\n", + " [ 0.33227596 -0.51206604 -0.7920739 ]\n", + " [ 0.35899477 -0.50197533 -0.78685673]\n", + " [ 0.3853443 -0.49157414 -0.7809383 ]\n", + " [ 0.4112263 -0.48091167 -0.77434934]\n", + " [ 0.43654727 -0.47004382 -0.76712794]\n", + " [ 0.46121865 -0.45903309 -0.75931942]\n", + " [ 0.48515728 -0.4479476 -0.75097627]\n", + " [ 0.50828673 -0.43685904 -0.74215819]\n", + " [ 0.36303565 -0.66155475 -0.65616341]\n", + " [ 0.39064417 -0.65098927 -0.65085336]\n", + " [ 0.41781112 -0.63987606 -0.64497481]\n", + " [ 0.44443417 -0.62826749 -0.63855949]\n", + " [ 0.47041945 -0.61622174 -0.63164572]\n", + " [ 0.49568101 -0.60380249 -0.6242779 ]\n", + " [ 0.52013892 -0.59107947 -0.61650674]\n", + " [ 0.54371696 -0.57812956 -0.60838974]\n", + " [ 0.50828673 -0.43685904 -0.74215819]\n", + " [ 0.51464211 -0.45713736 -0.72537503]\n", + " [ 0.52062221 -0.47755656 -0.70773741]\n", + " [ 0.52618866 -0.49800868 -0.6892843 ]\n", + " [ 0.53130816 -0.51838863 -0.67006333]\n", + " [ 0.53595183 -0.53859663 -0.65013022]\n", + " [ 0.54009493 -0.55853923 -0.62954856]\n", + " [ 0.54371696 -0.57812956 -0.60838974]\n", + " [ 0.33459633 -0.52156061 -0.78486931]\n", + " [ 0.34069581 -0.54838507 -0.76367544]\n", + " [ 0.34650079 -0.5751033 -0.74107584]\n", + " [ 0.35195316 -0.60151912 -0.71714972]\n", + " [ 0.35700275 -0.62744928 -0.69199454]\n", + " [ 0.36160695 -0.65271999 -0.66573045]\n", + " [ 0.34398234 -0.507782 -0.78983137]\n", + " [ 0.37649415 -0.49519965 -0.78296198]\n", + " [ 0.40835306 -0.48219889 -0.77506903]\n", + " [ 0.43938497 -0.46887988 -0.76621962]\n", + " [ 0.46942686 -0.45535753 -0.75649715]\n", + " [ 0.49832835 -0.44175896 -0.74600125]\n", + " [ 0.37510877 -0.65695002 -0.65399547]\n", + " [ 0.40866211 -0.64362649 -0.6471014 ]\n", + " [ 0.44144965 -0.62953177 -0.63938405]\n", + " [ 0.473295 -0.61477055 -0.63091125]\n", + " [ 0.50403973 -0.59946015 -0.62176481]\n", + " [ 0.53353829 -0.58373186 -0.61204085]\n", + " [ 0.51102331 -0.44571462 -0.73497868]\n", + " [ 0.51856473 -0.47067753 -0.71383001]\n", + " [ 0.52550385 -0.49574457 -0.69143548]\n", + " [ 0.53177732 -0.52072083 -0.66787926]\n", + " [ 0.53733192 -0.54542275 -0.64326389]\n", + " [ 0.54212386 -0.569681 -0.6177097 ]\n", + " [ 0.33238542 -0.51210676 -0.79200164]\n", + " [ 0.33238542 -0.51210676 -0.79200164]\n", + " [ 0.54362644 -0.57810784 -0.60849127]\n", + " [ 0.54362644 -0.57810784 -0.60849127]\n", + " [ 0.34623826 -0.5172169 -0.78269135]\n", + " [ 0.37887147 -0.50456293 -0.77580453]\n", + " [ 0.41084237 -0.49146407 -0.76790078]\n", + " [ 0.44197658 -0.47802055 -0.75904747]\n", + " [ 0.47211091 -0.46434773 -0.74932802]\n", + " [ 0.50109422 -0.45057448 -0.73884181]\n", + " [ 0.35245084 -0.54399334 -0.76147859]\n", + " [ 0.38538826 -0.53115503 -0.754553 ]\n", + " [ 0.41763809 -0.51780059 -0.74663309]\n", + " [ 0.44902537 -0.50402997 -0.73778724]\n", + " [ 0.47938708 -0.48995861 -0.7280993 ]\n", + " [ 0.50857149 -0.47571773 -0.71766822]\n", + " [ 0.35834749 -0.5706719 -0.73886444]\n", + " [ 0.39153 -0.55767629 -0.73191626]\n", + " [ 0.42400169 -0.54409868 -0.72400221]\n", + " [ 0.45558702 -0.53003899 -0.71519168]\n", + " [ 0.48612396 -0.51561203 -0.70556909]\n", + " [ 0.51546179 -0.50094912 -0.69523314]\n", + " [ 0.36386964 -0.59705651 -0.71492825]\n", + " [ 0.39723693 -0.58393036 -0.70797469]\n", + " [ 0.42987259 -0.57016096 -0.70009002]\n", + " [ 0.46160059 -0.555849 -0.69134419]\n", + " [ 0.4922602 -0.54110909 -0.68182171]\n", + " [ 0.52170255 -0.526072 -0.67162095]\n", + " [ 0.36896633 -0.62296419 -0.68976769]\n", + " [ 0.40245617 -0.60973475 -0.6828269 ]\n", + " [ 0.43519691 -0.59580487 -0.67499644]\n", + " [ 0.46701215 -0.58127677 -0.66634598]\n", + " [ 0.4977424 -0.56626574 -0.65695937]\n", + " [ 0.52724068 -0.55090233 -0.64693422]\n", + " [ 0.37359414 -0.64822149 -0.66350307]\n", + " [ 0.40714241 -0.63491727 -0.65659357]\n", + " [ 0.43992837 -0.62085951 -0.64884243]\n", + " [ 0.47177558 -0.6061523 -0.64031804]\n", + " [ 0.50252541 -0.59091233 -0.63110286]\n", + " [ 0.53203213 -0.57527063 -0.62129342]]\n", + "DEBUG:root:radec2pix: curVec Shape: (96, 3)\n", + "DEBUG:root:optics_fp: sphi: [-0.99998587 -0.99998093 -0.99997285 -0.99995831 -0.99992796 -0.99984669\n", + " -0.99947675 -0.97808354 -0.99998587 -0.98970577 -0.96198477 -0.92093145\n", + " -0.87158484 -0.81855268 -0.76530723 -0.7140899 -0.97808354 -0.17016839\n", + " -0.08762197 -0.05890603 -0.04435211 -0.03556139 -0.02967765 -0.02546394\n", + " -0.7140899 -0.65976656 -0.59269916 -0.51057194 -0.41166757 -0.29578258\n", + " -0.16525108 -0.02546394 -0.99998099 -0.9999716 -0.99995307 -0.99990806\n", + " -0.99974496 -0.99772391 -0.99782396 -0.97307356 -0.92600813 -0.86560828\n", + " -0.80028531 -0.73591205 -0.35953576 -0.10686813 -0.06233133 -0.04397062\n", + " -0.03396069 -0.02766174 -0.69199326 -0.61715575 -0.52083725 -0.39959102\n", + " -0.25315949 -0.08713059 -0.99998321 -0.99998321 -0.02596193 -0.02596193\n", + " -0.99753688 -0.96966873 -0.91739276 -0.85158747 -0.78188909 -0.71454371\n", + " -0.99632781 -0.95568059 -0.88350682 -0.79911576 -0.71620587 -0.64127261\n", + " -0.99395291 -0.92974584 -0.8263215 -0.71882466 -0.6238817 -0.54504838\n", + " -0.98825505 -0.87462092 -0.72355914 -0.59418739 -0.49542716 -0.42124573\n", + " -0.96839146 -0.73470538 -0.53260261 -0.40540407 -0.32392864 -0.26858462\n", + " -0.79207942 -0.34036707 -0.20582312 -0.14662418 -0.11369565 -0.09279187]\n", + "DEBUG:root:optics_fp: sphi: [0.69733861 0.64194554 0.57429359 0.49242959 0.39505443 0.28230164\n", + " 0.15653753 0.02269007 0.69733861 0.74764835 0.80050614 0.85403148\n", + " 0.90516063 0.94960189 0.98231633 0.99869589 0.02269007 0.02632152\n", + " 0.03130538 0.03856929 0.05013934 0.07144362 0.12352264 0.42394999\n", + " 0.99869589 0.99824427 0.99750809 0.99618636 0.99344379 0.98619551\n", + " 0.95488154 0.42394999 0.67473055 0.59886588 0.50259973 0.38323562\n", + " 0.24111118 0.08166976 0.71871537 0.78228347 0.84793203 0.91052415\n", + " 0.96220509 0.99378803 0.02463779 0.03002235 0.03835014 0.05293717\n", + " 0.08504731 0.21194041 0.99849582 0.99776097 0.99631488 0.99282691\n", + " 0.98044695 0.85535584 0.69733413 0.69733413 0.42761774 0.42761774\n", + " 0.69673058 0.76290649 0.83256888 0.90038456 0.95751545 0.99297621\n", + " 0.62206339 0.69451068 0.77581252 0.86101491 0.93844125 0.9895708\n", + " 0.52551558 0.6002579 0.6910356 0.79630575 0.903863 0.98294374\n", + " 0.40338671 0.47219495 0.5636759 0.68482227 0.83348167 0.96736623\n", + " 0.25523664 0.305473 0.37836089 0.49058257 0.67053956 0.91635552\n", + " 0.08675898 0.10531014 0.13379739 0.18293452 0.28641505 0.60394515]\n", + "DEBUG:root:cartToSphere: vec: [[-0.00108623 0.20994474 0.97771265]\n", + " [-0.00110818 0.18250974 0.98320342]\n", + " [-0.00112898 0.15437814 0.98801119]\n", + " [-0.00114857 0.12565449 0.9920734 ]\n", + " [-0.00116686 0.09644464 0.99533767]\n", + " [-0.00118378 0.0668576 0.99776183]\n", + " [-0.00119922 0.03700641 0.99931431]\n", + " [-0.00121312 0.00700791 0.99997471]\n", + " [-0.00108623 0.20994474 0.97771265]\n", + " [-0.03008973 0.20980966 0.97727914]\n", + " [-0.05897582 0.20940234 0.97604944]\n", + " [-0.08763213 0.20872399 0.97404051]\n", + " [-0.11594722 0.20777622 0.97128023]\n", + " [-0.14381054 0.20656061 0.96780744]\n", + " [-0.17111212 0.20507835 0.96367189]\n", + " [-0.19774215 0.20333011 0.95893426]\n", + " [-0.00121312 0.00700791 0.99997471]\n", + " [-0.0312253 0.00701559 0.99948775]\n", + " [-0.06111305 0.00701392 0.99810621]\n", + " [-0.09075893 0.00700302 0.99584827]\n", + " [-0.12004913 0.00698305 0.99274339]\n", + " [-0.1488739 0.00695418 0.98883174]\n", + " [-0.17712688 0.00691659 0.98416372]\n", + " [-0.20470344 0.00687038 0.97879993]\n", + " [-0.19774215 0.20333011 0.95893426]\n", + " [-0.19951656 0.17679323 0.96381393]\n", + " [-0.20103291 0.14956333 0.96809947]\n", + " [-0.2022905 0.12175011 0.97172808]\n", + " [-0.20328809 0.09346339 0.97464791]\n", + " [-0.20402394 0.06481351 0.97681802]\n", + " [-0.20449622 0.03591173 0.97820838]\n", + " [-0.20470344 0.00687038 0.97879993]\n", + " [-0.00119558 0.19807534 0.98018607]\n", + " [-0.00122271 0.16396932 0.98646468]\n", + " [-0.00124786 0.12892083 0.9916541 ]\n", + " [-0.00127089 0.09312409 0.9956537 ]\n", + " [-0.00129164 0.05677987 0.99838589]\n", + " [-0.00130994 0.02009792 0.99979716]\n", + " [-0.01373956 0.20982687 0.97764201]\n", + " [-0.04922259 0.20947825 0.9765736 ]\n", + " [-0.08441749 0.20872203 0.97432479]\n", + " [-0.11911871 0.20756102 0.97094241]\n", + " [-0.1531227 0.20599809 0.96649792]\n", + " [-0.18622706 0.20403521 0.96108746]\n", + " [-0.01430615 0.00711509 0.99987235]\n", + " [-0.05102028 0.00711803 0.99867225]\n", + " [-0.08743049 0.00710683 0.99614527]\n", + " [-0.12332566 0.00708177 0.99234098]\n", + " [-0.15850368 0.0070432 0.98733327]\n", + " [-0.19276957 0.00699139 0.98121915]\n", + " [-0.19845732 0.19185821 0.96114781]\n", + " [-0.20045757 0.1588536 0.96673797]\n", + " [-0.20206974 0.12491703 0.971372 ]\n", + " [-0.20329178 0.09025061 0.97494989]\n", + " [-0.20412054 0.0550575 0.97739627]\n", + " [-0.20455274 0.01954302 0.97866043]\n", + " [-0.00118556 0.20985223 0.97773239]\n", + " [-0.00118556 0.20985223 0.97773239]\n", + " [-0.20461015 0.00696998 0.97881873]\n", + " [-0.20461015 0.00696998 0.97881873]\n", + " [-0.01379915 0.19805172 0.98009443]\n", + " [-0.04942232 0.19772367 0.97901113]\n", + " [-0.08475642 0.19701128 0.97673072]\n", + " [-0.11959564 0.19591776 0.97330012]\n", + " [-0.15373662 0.19444643 0.96879081]\n", + " [-0.18697743 0.19259955 0.96329894]\n", + " [-0.01395111 0.16395068 0.98636988]\n", + " [-0.04992687 0.1636812 0.98524909]\n", + " [-0.08561039 0.16309354 0.98288929]\n", + " [-0.12079486 0.16219177 0.97933775]\n", + " [-0.15527748 0.16098028 0.97466623]\n", + " [-0.18885795 0.15946229 0.96897082]\n", + " [-0.0140777 0.12890725 0.99155673]\n", + " [-0.05033965 0.1286975 0.99040541]\n", + " [-0.08630574 0.12823673 0.9879811 ]\n", + " [-0.12176792 0.12752928 0.98433168]\n", + " [-0.15652378 0.12657997 0.97952939]\n", + " [-0.19037482 0.12539259 0.97367044]\n", + " [-0.01417814 0.09311572 0.99555434]\n", + " [-0.05065827 0.09296747 0.9943796 ]\n", + " [-0.08683905 0.092637 0.99190593]\n", + " [-0.12251113 0.09212815 0.98818188]\n", + " [-0.15747231 0.0914453 0.98328034]\n", + " [-0.19152571 0.09059206 0.97729779]\n", + " [-0.0142515 0.05677687 0.99828517]\n", + " [-0.05087978 0.05669199 0.99709441]\n", + " [-0.08720594 0.05649545 0.99458704]\n", + " [-0.12301955 0.05618991 0.99081223]\n", + " [-0.15811848 0.05577844 0.98584345]\n", + " [-0.19230704 0.0552636 0.97977749]\n", + " [-0.01429691 0.02010041 0.99969574]\n", + " [-0.0510015 0.0200803 0.99849668]\n", + " [-0.08740238 0.02002048 0.99597189]\n", + " [-0.12328852 0.0199219 0.99217088]\n", + " [-0.15845779 0.01978566 0.98716749]\n", + " [-0.19271515 0.01961272 0.98105872]]\n", + "DEBUG:root:radec2pix: xyfp: [[32.2358199 31.31614388]\n", + " [32.23338667 26.92971599]\n", + " [32.23095344 22.54328809]\n", + " [32.2285202 18.15686019]\n", + " [32.22608698 13.7704323 ]\n", + " [32.22365375 9.3840044 ]\n", + " [32.22122051 4.99757651]\n", + " [32.21878728 0.61114861]\n", + " [32.2358199 31.31614388]\n", + " [27.849392 31.31857712]\n", + " [23.46296411 31.32101035]\n", + " [19.07653621 31.32344358]\n", + " [14.69010831 31.3258768 ]\n", + " [10.30368042 31.32831004]\n", + " [ 5.91725252 31.33074327]\n", + " [ 1.53082462 31.3331765 ]\n", + " [32.21878728 0.61114861]\n", + " [27.83235938 0.61358184]\n", + " [23.44593149 0.61601507]\n", + " [19.0595036 0.6184483 ]\n", + " [14.6730757 0.62088153]\n", + " [10.2866478 0.62331476]\n", + " [ 5.90021991 0.625748 ]\n", + " [ 1.513792 0.62818122]\n", + " [ 1.53082462 31.3331765 ]\n", + " [ 1.52839139 26.94674861]\n", + " [ 1.52595816 22.5603207 ]\n", + " [ 1.52352493 18.17389281]\n", + " [ 1.5210917 13.78746492]\n", + " [ 1.51865847 9.40103702]\n", + " [ 1.51622524 5.01460912]\n", + " [ 1.513792 0.62818122]\n", + " [32.219759 29.4036525 ]\n", + " [32.21677684 24.02765333]\n", + " [32.21379467 18.65165415]\n", + " [32.21081251 13.27565498]\n", + " [32.20783035 7.89965581]\n", + " [32.20484818 2.52365664]\n", + " [30.32331188 31.30220479]\n", + " [24.9473127 31.30518695]\n", + " [19.57131353 31.30816912]\n", + " [14.19531435 31.31115127]\n", + " [ 8.81931518 31.31413344]\n", + " [ 3.44331601 31.3171156 ]\n", + " [30.3062959 0.62720951]\n", + " [24.93029672 0.63019167]\n", + " [19.55429755 0.63317383]\n", + " [14.17829838 0.636156 ]\n", + " [ 8.80229921 0.63913816]\n", + " [ 3.42630004 0.64212033]\n", + " [ 1.54476372 29.42066847]\n", + " [ 1.54178156 24.0446693 ]\n", + " [ 1.53879939 18.66867013]\n", + " [ 1.53581723 13.29267096]\n", + " [ 1.53283507 7.91667178]\n", + " [ 1.5298529 2.54067261]\n", + " [32.22081158 31.30115221]\n", + " [32.22081158 31.30115221]\n", + " [ 1.52880032 0.6431729 ]\n", + " [ 1.52880032 0.6431729 ]\n", + " [30.32225929 29.40470508]\n", + " [24.94626012 29.40768724]\n", + " [19.57026095 29.41066941]\n", + " [14.19426178 29.41365157]\n", + " [ 8.8182626 29.41663373]\n", + " [ 3.44226343 29.4196159 ]\n", + " [30.31927713 24.02870591]\n", + " [24.94327796 24.03168807]\n", + " [19.56727878 24.03467023]\n", + " [14.19127961 24.0376524 ]\n", + " [ 8.81528044 24.04063456]\n", + " [ 3.43928127 24.04361672]\n", + " [30.31629496 18.65270673]\n", + " [24.9402958 18.6556889 ]\n", + " [19.56429662 18.65867106]\n", + " [14.18829744 18.66165322]\n", + " [ 8.81229827 18.66463538]\n", + " [ 3.4362991 18.66761755]\n", + " [30.31331281 13.27670756]\n", + " [24.93731363 13.27968972]\n", + " [19.56131446 13.28267189]\n", + " [14.18531529 13.28565406]\n", + " [ 8.80931611 13.28863621]\n", + " [ 3.43331694 13.29161838]\n", + " [30.31033064 7.90070839]\n", + " [24.93433147 7.90369055]\n", + " [19.55833229 7.90667271]\n", + " [14.18233312 7.90965488]\n", + " [ 8.80633395 7.91263704]\n", + " [ 3.43033477 7.9156192 ]\n", + " [30.30734847 2.52470921]\n", + " [24.9313493 2.52769138]\n", + " [19.55535013 2.53067354]\n", + " [14.17935096 2.53365571]\n", + " [ 8.80335178 2.53663787]\n", + " [ 3.42735261 2.53962004]]\n", + "DEBUG:root:optics_fp: xyfp: [[ -0.167405 31.491388 ]\n", + " [ -0.167405 27.10495943]\n", + " [ -0.167405 22.71853086]\n", + " [ -0.167405 18.33210229]\n", + " [ -0.167405 13.94567372]\n", + " [ -0.167405 9.55924515]\n", + " [ -0.167405 5.17281657]\n", + " [ -0.167405 0.786388 ]\n", + " [ -0.167405 31.491388 ]\n", + " [ -4.55383357 31.491388 ]\n", + " [ -8.94026214 31.491388 ]\n", + " [-13.32669071 31.491388 ]\n", + " [-17.71311928 31.491388 ]\n", + " [-22.09954786 31.491388 ]\n", + " [-26.48597643 31.491388 ]\n", + " [-30.872405 31.491388 ]\n", + " [ -0.167405 0.786388 ]\n", + " [ -4.55383357 0.786388 ]\n", + " [ -8.94026214 0.786388 ]\n", + " [-13.32669071 0.786388 ]\n", + " [-17.71311929 0.786388 ]\n", + " [-22.09954786 0.786388 ]\n", + " [-26.48597643 0.786388 ]\n", + " [-30.872405 0.786388 ]\n", + " [-30.872405 31.491388 ]\n", + " [-30.872405 27.10495943]\n", + " [-30.872405 22.71853086]\n", + " [-30.872405 18.33210229]\n", + " [-30.872405 13.94567371]\n", + " [-30.872405 9.55924514]\n", + " [-30.872405 5.17281657]\n", + " [-30.872405 0.786388 ]\n", + " [ -0.182405 29.578888 ]\n", + " [ -0.182405 24.202888 ]\n", + " [ -0.182405 18.826888 ]\n", + " [ -0.182405 13.450888 ]\n", + " [ -0.182405 8.074888 ]\n", + " [ -0.182405 2.698888 ]\n", + " [ -2.079905 31.476388 ]\n", + " [ -7.455905 31.476388 ]\n", + " [-12.831905 31.476388 ]\n", + " [-18.207905 31.476388 ]\n", + " [-23.583905 31.476388 ]\n", + " [-28.959905 31.476388 ]\n", + " [ -2.079905 0.801388 ]\n", + " [ -7.455905 0.801388 ]\n", + " [-12.831905 0.801388 ]\n", + " [-18.207905 0.801388 ]\n", + " [-23.583905 0.801388 ]\n", + " [-28.959905 0.801388 ]\n", + " [-30.857405 29.578888 ]\n", + " [-30.857405 24.202888 ]\n", + " [-30.857405 18.826888 ]\n", + " [-30.857405 13.450888 ]\n", + " [-30.857405 8.074888 ]\n", + " [-30.857405 2.698888 ]\n", + " [ -0.182405 31.476388 ]\n", + " [ -0.182405 31.476388 ]\n", + " [-30.857405 0.801388 ]\n", + " [-30.857405 0.801388 ]\n", + " [ -2.079905 29.578888 ]\n", + " [ -7.455905 29.578888 ]\n", + " [-12.831905 29.578888 ]\n", + " [-18.207905 29.578888 ]\n", + " [-23.583905 29.578888 ]\n", + " [-28.959905 29.578888 ]\n", + " [ -2.079905 24.202888 ]\n", + " [ -7.455905 24.202888 ]\n", + " [-12.831905 24.202888 ]\n", + " [-18.207905 24.202888 ]\n", + " [-23.583905 24.202888 ]\n", + " [-28.959905 24.202888 ]\n", + " [ -2.079905 18.826888 ]\n", + " [ -7.455905 18.826888 ]\n", + " [-12.831905 18.826888 ]\n", + " [-18.207905 18.826888 ]\n", + " [-23.583905 18.826888 ]\n", + " [-28.959905 18.826888 ]\n", + " [ -2.079905 13.450888 ]\n", + " [ -7.455905 13.450888 ]\n", + " [-12.831905 13.450888 ]\n", + " [-18.207905 13.450888 ]\n", + " [-23.583905 13.450888 ]\n", + " [-28.959905 13.450888 ]\n", + " [ -2.079905 8.074888 ]\n", + " [ -7.455905 8.074888 ]\n", + " [-12.831905 8.074888 ]\n", + " [-18.20790499 8.074888 ]\n", + " [-23.583905 8.074888 ]\n", + " [-28.959905 8.074888 ]\n", + " [ -2.079905 2.698888 ]\n", + " [ -7.455905 2.698888 ]\n", + " [-12.831905 2.698888 ]\n", + " [-18.207905 2.698888 ]\n", + " [-23.583905 2.698888 ]\n", + " [-28.959905 2.698888 ]]\n", + "DEBUG:root:optics_fp: xyfp shape: (96, 2)\n", + "DEBUG:root:radec2pix: lng: [ 90.2964384 90.3478894 90.41900227 90.52370941 90.69317626\n", + " 91.01436915 91.85606354 99.82098825 90.2964384 98.16139155\n", + " 105.72927905 112.77495178 119.16321868 124.84620437 129.84075369\n", + " 134.20177453 99.82098825 167.3372664 173.45282833 175.5877589\n", + " 176.67095531 177.32554882 177.76380439 178.07772632 134.20177453\n", + " 138.45558903 143.3516981 148.95804019 155.308999 162.37619731\n", + " 170.03980495 178.07772632 90.34583364 90.4272438 90.55456533\n", + " 90.78188435 91.3031483 93.7291305 93.74640471 103.2233069\n", + " 112.02083939 119.85139884 126.62419493 132.38733532 153.55676438\n", + " 172.05771641 175.35290167 176.71349424 177.45570466 177.92289984\n", + " 135.96861356 141.60475991 148.27615291 156.06135558 164.90482616\n", + " 174.54251233 90.32368928 90.32368928 178.04899302 178.04899302\n", + " 93.98561362 104.03389942 113.27790792 121.40147615 128.33121468\n", + " 134.15142333 94.8637718 106.96302166 117.69569442 126.6774761\n", + " 133.96694623 139.82391059 96.23245551 111.36280739 123.94129691\n", + " 133.676108 141.03771084 146.62863656 98.65756574 118.5861081\n", + " 133.14971036 143.05690148 149.85595749 154.68575435 104.09063117\n", + " 131.90726386 147.0632386 155.45116677 160.56901612 163.96684771\n", + " 125.42327674 158.50946167 167.09834094 170.82105172 172.88266004\n", + " 174.18898669]\n", + "DEBUG:root:radec2pix: camVec: [[ 0.00162968 0.00164392 0.00165615 0.00166636 0.0016745 0.00168051\n", + " 0.00168433 0.00168589 0.00162968 0.03065921 0.0595691 0.08824658\n", + " 0.11657974 0.14445783 0.17177197 0.1984171 0.00168589 0.03171597\n", + " 0.06161834 0.09127522 0.12057355 0.14940474 0.17766265 0.205241\n", + " 0.1984171 0.20017053 0.20167036 0.20291139 0.20389075 0.20460646\n", + " 0.20505694 0.205241 0.00173588 0.00175296 0.00176683 0.00177741\n", + " 0.00178459 0.00178824 0.01429458 0.04980805 0.08502967 0.11975303\n", + " 0.15377432 0.1868945 0.0147871 0.05152109 0.08794575 0.12385093\n", + " 0.15903647 0.19330699 0.19912208 0.20110045 0.20269257 0.20389226\n", + " 0.20469584 0.20510055 0.00172908 0.00172908 0.20514779 0.20514779\n", + " 0.01435076 0.05000388 0.08536435 0.12022547 0.15438306 0.18763689\n", + " 0.01449201 0.05049589 0.08620426 0.1214098 0.15590842 0.18949858\n", + " 0.01460664 0.05089468 0.08688344 0.12236492 0.15713605 0.19099623\n", + " 0.0146941 0.05119852 0.08739951 0.12308827 0.15806297 0.19212497\n", + " 0.01475342 0.05140434 0.08774826 0.12357559 0.15868553 0.19288138\n", + " 0.01478357 0.05150885 0.08792506 0.1238221 0.15899976 0.19326249]\n", + " [-0.20886687 -0.18138669 -0.15321267 -0.12445123 -0.0952084 -0.06559229\n", + " -0.03571531 -0.00569466 -0.20886687 -0.20871575 -0.20829328 -0.20760055\n", + " -0.20663909 -0.20541086 -0.20391875 -0.20216791 -0.00569466 -0.00569039\n", + " -0.0056785 -0.00565918 -0.00563263 -0.00559908 -0.00555867 -0.00551146\n", + " -0.20216791 -0.17558603 -0.14832064 -0.12047648 -0.09216227 -0.06348867\n", + " -0.03456748 -0.00551146 -0.19697755 -0.16281769 -0.12772153 -0.09188434\n", + " -0.05550542 -0.01879375 -0.20874173 -0.20837407 -0.20760004 -0.20642226\n", + " -0.2048444 -0.20287264 -0.00579649 -0.00578593 -0.0057639 -0.00573078\n", + " -0.00568698 -0.00563273 -0.19067465 -0.1576223 -0.12364673 -0.08894663\n", + " -0.05372559 -0.0181899 -0.20877415 -0.20877415 -0.0056111 -0.0056111\n", + " -0.19694699 -0.19660038 -0.19587092 -0.19476145 -0.19327535 -0.19141752\n", + " -0.16279237 -0.16250539 -0.1619024 -0.1609872 -0.15976346 -0.15823425\n", + " -0.12770151 -0.1274748 -0.12699943 -0.12628004 -0.12532102 -0.12412508\n", + " -0.09186978 -0.09170505 -0.09136033 -0.09084026 -0.09014925 -0.08928993\n", + " -0.05549654 -0.05539609 -0.05518622 -0.05487037 -0.05445187 -0.05393273\n", + " -0.01879073 -0.01875652 -0.01868512 -0.01857781 -0.01843585 -0.01826001]\n", + " [ 0.97794273 0.98341048 0.98819185 0.99222433 0.99545595 0.99784509\n", + " 0.99936059 0.99998236 0.97794273 0.97749565 0.9762507 0.9742251\n", + " 0.97144709 0.96795574 0.96380057 0.95904056 0.99998236 0.99948072\n", + " 0.99808363 0.99580962 0.99268842 0.98876027 0.98407575 0.97869595\n", + " 0.95904056 0.96389901 0.96815807 0.97175737 0.97464592 0.97678318\n", + " 0.97813943 0.97869595 0.98040646 0.98665461 0.99180849 0.9957681\n", + " 0.99845679 0.99982178 0.97786633 0.97678012 0.97451125 0.97110713\n", + " 0.96663966 0.961204 0.99987386 0.99865515 0.99610859 0.99228429\n", + " 0.98725633 0.98112215 0.96124585 0.96680599 0.97140476 0.97494433\n", + " 0.97735008 0.97857186 0.97796235 0.97796235 0.97871492 0.97871492\n", + " 0.9803091 0.97920779 0.97690711 0.97345458 0.96892234 0.96340632\n", + " 0.98655391 0.98541472 0.9830343 0.97946045 0.97476571 0.96904706\n", + " 0.99170508 0.99053516 0.98809029 0.9844187 0.97959323 0.97371115\n", + " 0.99566261 0.99446915 0.99197511 0.98822939 0.98330525 0.97730001\n", + " 0.99834987 0.99714035 0.99461285 0.99081699 0.9858265 0.97973876\n", + " 0.99971414 0.99849639 0.99595183 0.99213051 0.98710648 0.98097716]]\n", + "DEBUG:root:radec2pix: camVec Shape: (3, 96)\n", + "DEBUG:root:optics_fp: xyfp: [[-32.31281793 -31.43806373]\n", + " [-32.31091541 -27.05163558]\n", + " [-32.30901287 -22.66520742]\n", + " [-32.30711034 -18.27877926]\n", + " [-32.3052078 -13.8923511 ]\n", + " [-32.30330527 -9.50592294]\n", + " [-32.30140274 -5.11949478]\n", + " [-32.2995002 -0.73306663]\n", + " [-32.31281793 -31.43806373]\n", + " [-27.92638978 -31.43996627]\n", + " [-23.53996162 -31.4418688 ]\n", + " [-19.15353346 -31.44377134]\n", + " [-14.7671053 -31.44567387]\n", + " [-10.38067715 -31.44757641]\n", + " [ -5.99424899 -31.44947894]\n", + " [ -1.60782083 -31.45138147]\n", + " [-32.2995002 -0.73306663]\n", + " [-27.91307204 -0.73496916]\n", + " [-23.52664389 -0.73687169]\n", + " [-19.14021573 -0.73877423]\n", + " [-14.75378757 -0.74067676]\n", + " [-10.36735941 -0.74257929]\n", + " [ -5.98093125 -0.74448183]\n", + " [ -1.59450309 -0.74638436]\n", + " [ -1.60782083 -31.45138147]\n", + " [ -1.60591829 -27.06495331]\n", + " [ -1.60401576 -22.67852516]\n", + " [ -1.60211323 -18.292097 ]\n", + " [ -1.60021069 -13.90566884]\n", + " [ -1.59830816 -9.51924068]\n", + " [ -1.59640563 -5.13281252]\n", + " [ -1.59450309 -0.74638436]\n", + " [-32.29698843 -29.52557043]\n", + " [-32.29465669 -24.14957093]\n", + " [-32.29232495 -18.77357144]\n", + " [-32.2899932 -13.39757194]\n", + " [-32.28766146 -8.02157244]\n", + " [-32.28532972 -2.64557295]\n", + " [-30.40031161 -31.42389325]\n", + " [-25.02431212 -31.42622499]\n", + " [-19.64831262 -31.42855673]\n", + " [-14.27231313 -31.43088848]\n", + " [ -8.89631363 -31.43322022]\n", + " [ -3.52031414 -31.43555196]\n", + " [-30.38700689 -0.74889614]\n", + " [-25.01100739 -0.75122788]\n", + " [-19.6350079 -0.75355962]\n", + " [-14.25900841 -0.75589136]\n", + " [ -8.88300892 -0.7582231 ]\n", + " [ -3.50700942 -0.76055484]\n", + " [ -1.62199131 -29.53887515]\n", + " [ -1.61965957 -24.16287565]\n", + " [ -1.61732783 -18.78687616]\n", + " [ -1.61499609 -13.41087666]\n", + " [ -1.61266434 -8.03487716]\n", + " [ -1.6103326 -2.65887768]\n", + " [-32.29781143 -31.42307024]\n", + " [-32.29781143 -31.42307024]\n", + " [ -1.60950959 -0.76137785]\n", + " [ -1.60950959 -0.76137785]\n", + " [-30.3994886 -29.52639343]\n", + " [-25.02348911 -29.52872517]\n", + " [-19.64748962 -29.53105692]\n", + " [-14.27149012 -29.53338866]\n", + " [ -8.89549063 -29.5357204 ]\n", + " [ -3.51949113 -29.53805214]\n", + " [-30.39715686 -24.15039394]\n", + " [-25.02115737 -24.15272568]\n", + " [-19.64515788 -24.15505742]\n", + " [-14.26915838 -24.15738916]\n", + " [ -8.89315889 -24.1597209 ]\n", + " [ -3.51715939 -24.16205264]\n", + " [-30.39482512 -18.77439444]\n", + " [-25.01882563 -18.77672618]\n", + " [-19.64282613 -18.77905793]\n", + " [-14.26682664 -18.78138967]\n", + " [ -8.89082714 -18.78372141]\n", + " [ -3.51482765 -18.78605315]\n", + " [-30.39249338 -13.39839495]\n", + " [-25.01649389 -13.40072669]\n", + " [-19.64049439 -13.40305843]\n", + " [-14.2644949 -13.40539017]\n", + " [ -8.8884954 -13.40772191]\n", + " [ -3.51249591 -13.41005365]\n", + " [-30.39016163 -8.02239545]\n", + " [-25.01416214 -8.02472719]\n", + " [-19.63816265 -8.02705893]\n", + " [-14.26216315 -8.02939068]\n", + " [ -8.88616366 -8.03172242]\n", + " [ -3.51016417 -8.03405416]\n", + " [-30.3878299 -2.64639596]\n", + " [-25.01183041 -2.6487277 ]\n", + " [-19.63583091 -2.65105944]\n", + " [-14.25983141 -2.65339118]\n", + " [ -8.88383191 -2.65572292]\n", + " [ -3.50783243 -2.65805467]]\n", + "DEBUG:root:optics_fp: xyfp shape: (96, 2)\n", + "DEBUG:root:radec2pix: lat: [77.88072123 79.48382459 81.11902826 82.7811435 84.46512008 86.16588026\n", + " 87.87809063 89.592501 77.88072123 77.76297714 77.43489604 76.91632478\n", + " 76.23510116 75.42235372 74.50888673 73.52311865 89.592501 88.1660092\n", + " 86.47326812 84.77720909 83.09335022 81.42892112 79.7896882 78.18111406\n", + " 73.52311865 74.53938675 75.48898077 76.34336174 77.07095847 77.63894653\n", + " 78.01676209 78.18111406 78.57535641 80.56236957 82.59241544 84.65614182\n", + " 86.74415968 88.84595283 77.86145981 77.57369823 76.98847403 76.15398719\n", + " 75.12717296 73.96382281 89.0844999 87.04713438 84.96761219 82.90419496\n", + " 80.87086863 78.87814184 73.97634463 75.18085203 76.25721571 77.14851635\n", + " 77.79468183 78.14215534 77.8861108 77.8861108 78.18637455 78.18637455\n", + " 78.54888043 78.24034026 77.6156038 76.73023014 75.64791869 74.42908235\n", + " 80.52930205 80.14668621 79.38566385 78.33252026 77.07564982 75.68958597\n", + " 82.54926459 82.05674096 81.10786838 79.84412063 78.38693881 76.82298725\n", + " 84.59535958 83.92250159 82.7051798 81.18260126 79.50799917 77.76802141\n", + " 86.64409097 85.63122317 84.03581665 82.22723271 80.34771821 78.45776966\n", + " 88.58657998 86.85792078 84.85560606 82.82572865 80.81119712 78.83059106]\n", + "DEBUG:root:radec2pix: ccdpx: [[-4.44999999e+01 -4.99999855e-01]\n", + " [-4.45000000e+01 2.91928571e+02]\n", + " [-4.45000000e+01 5.84357143e+02]\n", + " [-4.44999998e+01 8.76785714e+02]\n", + " [-4.45000001e+01 1.16921429e+03]\n", + " [-4.45000000e+01 1.46164286e+03]\n", + " [-4.45000000e+01 1.75407143e+03]\n", + " [-4.44999999e+01 2.04650000e+03]\n", + " [-4.44999999e+01 -4.99999855e-01]\n", + " [ 2.47928571e+02 -5.00000005e-01]\n", + " [ 5.40357143e+02 -5.00000101e-01]\n", + " [ 8.32785714e+02 -5.00000211e-01]\n", + " [ 1.12521429e+03 -4.99999718e-01]\n", + " [ 1.41764286e+03 -5.00000108e-01]\n", + " [ 1.71007143e+03 -4.99999976e-01]\n", + " [ 2.00250000e+03 -5.00000222e-01]\n", + " [-4.44999999e+01 2.04650000e+03]\n", + " [ 2.47928572e+02 2.04650000e+03]\n", + " [ 5.40357143e+02 2.04650000e+03]\n", + " [ 8.32785714e+02 2.04650000e+03]\n", + " [ 1.12521429e+03 2.04650000e+03]\n", + " [ 1.41764286e+03 2.04650000e+03]\n", + " [ 1.71007143e+03 2.04650000e+03]\n", + " [ 2.00250000e+03 2.04650000e+03]\n", + " [ 2.00250000e+03 -5.00000222e-01]\n", + " [ 2.00250000e+03 2.91928571e+02]\n", + " [ 2.00250000e+03 5.84357143e+02]\n", + " [ 2.00250000e+03 8.76785714e+02]\n", + " [ 2.00250000e+03 1.16921429e+03]\n", + " [ 2.00250000e+03 1.46164286e+03]\n", + " [ 2.00250000e+03 1.75407143e+03]\n", + " [ 2.00250000e+03 2.04650000e+03]\n", + " [-4.35000000e+01 1.27000000e+02]\n", + " [-4.35000000e+01 4.85400000e+02]\n", + " [-4.34999998e+01 8.43800000e+02]\n", + " [-4.35000001e+01 1.20220000e+03]\n", + " [-4.35000000e+01 1.56060000e+03]\n", + " [-4.34999999e+01 1.91900000e+03]\n", + " [ 8.29999998e+01 4.99999766e-01]\n", + " [ 4.41400000e+02 4.99999737e-01]\n", + " [ 7.99800000e+02 4.99999723e-01]\n", + " [ 1.15820000e+03 5.00000251e-01]\n", + " [ 1.51660000e+03 4.99999874e-01]\n", + " [ 1.87500000e+03 5.00000148e-01]\n", + " [ 8.30000001e+01 2.04550000e+03]\n", + " [ 4.41400000e+02 2.04550000e+03]\n", + " [ 7.99800000e+02 2.04550000e+03]\n", + " [ 1.15820000e+03 2.04550000e+03]\n", + " [ 1.51660000e+03 2.04550000e+03]\n", + " [ 1.87500000e+03 2.04550000e+03]\n", + " [ 2.00150000e+03 1.27000000e+02]\n", + " [ 2.00150000e+03 4.85400000e+02]\n", + " [ 2.00150000e+03 8.43800000e+02]\n", + " [ 2.00150000e+03 1.20220000e+03]\n", + " [ 2.00150000e+03 1.56060000e+03]\n", + " [ 2.00150000e+03 1.91900000e+03]\n", + " [-4.35000002e+01 4.99999824e-01]\n", + " [-4.35000002e+01 4.99999824e-01]\n", + " [ 2.00150000e+03 2.04550000e+03]\n", + " [ 2.00150000e+03 2.04550000e+03]\n", + " [ 8.30000001e+01 1.27000000e+02]\n", + " [ 4.41400000e+02 1.27000000e+02]\n", + " [ 7.99800000e+02 1.27000000e+02]\n", + " [ 1.15820000e+03 1.27000000e+02]\n", + " [ 1.51660000e+03 1.27000000e+02]\n", + " [ 1.87500000e+03 1.27000000e+02]\n", + " [ 8.29999998e+01 4.85400000e+02]\n", + " [ 4.41400000e+02 4.85400000e+02]\n", + " [ 7.99800000e+02 4.85400000e+02]\n", + " [ 1.15820000e+03 4.85400000e+02]\n", + " [ 1.51660000e+03 4.85400000e+02]\n", + " [ 1.87500000e+03 4.85400000e+02]\n", + " [ 8.30000003e+01 8.43800000e+02]\n", + " [ 4.41400000e+02 8.43800000e+02]\n", + " [ 7.99800000e+02 8.43800000e+02]\n", + " [ 1.15820000e+03 8.43800000e+02]\n", + " [ 1.51660000e+03 8.43800000e+02]\n", + " [ 1.87500000e+03 8.43800000e+02]\n", + " [ 8.29999997e+01 1.20220000e+03]\n", + " [ 4.41400000e+02 1.20220000e+03]\n", + " [ 7.99800000e+02 1.20220000e+03]\n", + " [ 1.15820000e+03 1.20220000e+03]\n", + " [ 1.51660000e+03 1.20220000e+03]\n", + " [ 1.87500000e+03 1.20220000e+03]\n", + " [ 8.30000001e+01 1.56060000e+03]\n", + " [ 4.41400000e+02 1.56060000e+03]\n", + " [ 7.99800000e+02 1.56060000e+03]\n", + " [ 1.15820000e+03 1.56060000e+03]\n", + " [ 1.51660000e+03 1.56060000e+03]\n", + " [ 1.87500000e+03 1.56060000e+03]\n", + " [ 8.30000000e+01 1.91900000e+03]\n", + " [ 4.41400000e+02 1.91900000e+03]\n", + " [ 7.99800000e+02 1.91900000e+03]\n", + " [ 1.15820000e+03 1.91900000e+03]\n", + " [ 1.51660000e+03 1.91900000e+03]\n", + " [ 1.87500000e+03 1.91900000e+03]]\n", + "DEBUG:root:make_az_asym: xyp: [[ -0.167405 31.491388 ]\n", + " [ -0.167405 27.10495943]\n", + " [ -0.167405 22.71853086]\n", + " [ -0.167405 18.33210229]\n", + " [ -0.167405 13.94567372]\n", + " [ -0.167405 9.55924515]\n", + " [ -0.167405 5.17281657]\n", + " [ -0.167405 0.786388 ]\n", + " [ -0.167405 31.491388 ]\n", + " [ -4.55383357 31.491388 ]\n", + " [ -8.94026214 31.491388 ]\n", + " [-13.32669071 31.491388 ]\n", + " [-17.71311928 31.491388 ]\n", + " [-22.09954786 31.491388 ]\n", + " [-26.48597643 31.491388 ]\n", + " [-30.872405 31.491388 ]\n", + " [ -0.167405 0.786388 ]\n", + " [ -4.55383357 0.786388 ]\n", + " [ -8.94026214 0.786388 ]\n", + " [-13.32669071 0.786388 ]\n", + " [-17.71311929 0.786388 ]\n", + " [-22.09954786 0.786388 ]\n", + " [-26.48597643 0.786388 ]\n", + " [-30.872405 0.786388 ]\n", + " [-30.872405 31.491388 ]\n", + " [-30.872405 27.10495943]\n", + " [-30.872405 22.71853086]\n", + " [-30.872405 18.33210229]\n", + " [-30.872405 13.94567371]\n", + " [-30.872405 9.55924514]\n", + " [-30.872405 5.17281657]\n", + " [-30.872405 0.786388 ]\n", + " [ -0.182405 29.578888 ]\n", + " [ -0.182405 24.202888 ]\n", + " [ -0.182405 18.826888 ]\n", + " [ -0.182405 13.450888 ]\n", + " [ -0.182405 8.074888 ]\n", + " [ -0.182405 2.698888 ]\n", + " [ -2.079905 31.476388 ]\n", + " [ -7.455905 31.476388 ]\n", + " [-12.831905 31.476388 ]\n", + " [-18.207905 31.476388 ]\n", + " [-23.583905 31.476388 ]\n", + " [-28.959905 31.476388 ]\n", + " [ -2.079905 0.801388 ]\n", + " [ -7.455905 0.801388 ]\n", + " [-12.831905 0.801388 ]\n", + " [-18.207905 0.801388 ]\n", + " [-23.583905 0.801388 ]\n", + " [-28.959905 0.801388 ]\n", + " [-30.857405 29.578888 ]\n", + " [-30.857405 24.202888 ]\n", + " [-30.857405 18.826888 ]\n", + " [-30.857405 13.450888 ]\n", + " [-30.857405 8.074888 ]\n", + " [-30.857405 2.698888 ]\n", + " [ -0.182405 31.476388 ]\n", + " [ -0.182405 31.476388 ]\n", + " [-30.857405 0.801388 ]\n", + " [-30.857405 0.801388 ]\n", + " [ -2.079905 29.578888 ]\n", + " [ -7.455905 29.578888 ]\n", + " [-12.831905 29.578888 ]\n", + " [-18.207905 29.578888 ]\n", + " [-23.583905 29.578888 ]\n", + " [-28.959905 29.578888 ]\n", + " [ -2.079905 24.202888 ]\n", + " [ -7.455905 24.202888 ]\n", + " [-12.831905 24.202888 ]\n", + " [-18.207905 24.202888 ]\n", + " [-23.583905 24.202888 ]\n", + " [-28.959905 24.202888 ]\n", + " [ -2.079905 18.826888 ]\n", + " [ -7.455905 18.826888 ]\n", + " [-12.831905 18.826888 ]\n", + " [-18.207905 18.826888 ]\n", + " [-23.583905 18.826888 ]\n", + " [-28.959905 18.826888 ]\n", + " [ -2.079905 13.450888 ]\n", + " [ -7.455905 13.450888 ]\n", + " [-12.831905 13.450888 ]\n", + " [-18.207905 13.450888 ]\n", + " [-23.583905 13.450888 ]\n", + " [-28.959905 13.450888 ]\n", + " [ -2.079905 8.074888 ]\n", + " [ -7.455905 8.074888 ]\n", + " [-12.831905 8.074888 ]\n", + " [-18.20790499 8.074888 ]\n", + " [-23.583905 8.074888 ]\n", + " [-28.959905 8.074888 ]\n", + " [ -2.079905 2.698888 ]\n", + " [ -7.455905 2.698888 ]\n", + " [-12.831905 2.698888 ]\n", + " [-18.207905 2.698888 ]\n", + " [-23.583905 2.698888 ]\n", + " [-28.959905 2.698888 ]]\n", + "DEBUG:root:make_az_asym: xyp: shape: (96, 2)\n", + "DEBUG:root:make_az_asym: xyp: [[-32.31281793 -31.43806373]\n", + " [-32.31091541 -27.05163558]\n", + " [-32.30901287 -22.66520742]\n", + " [-32.30711034 -18.27877926]\n", + " [-32.3052078 -13.8923511 ]\n", + " [-32.30330527 -9.50592294]\n", + " [-32.30140274 -5.11949478]\n", + " [-32.2995002 -0.73306663]\n", + " [-32.31281793 -31.43806373]\n", + " [-27.92638978 -31.43996627]\n", + " [-23.53996162 -31.4418688 ]\n", + " [-19.15353346 -31.44377134]\n", + " [-14.7671053 -31.44567387]\n", + " [-10.38067715 -31.44757641]\n", + " [ -5.99424899 -31.44947894]\n", + " [ -1.60782083 -31.45138147]\n", + " [-32.2995002 -0.73306663]\n", + " [-27.91307204 -0.73496916]\n", + " [-23.52664389 -0.73687169]\n", + " [-19.14021573 -0.73877423]\n", + " [-14.75378757 -0.74067676]\n", + " [-10.36735941 -0.74257929]\n", + " [ -5.98093125 -0.74448183]\n", + " [ -1.59450309 -0.74638436]\n", + " [ -1.60782083 -31.45138147]\n", + " [ -1.60591829 -27.06495331]\n", + " [ -1.60401576 -22.67852516]\n", + " [ -1.60211323 -18.292097 ]\n", + " [ -1.60021069 -13.90566884]\n", + " [ -1.59830816 -9.51924068]\n", + " [ -1.59640563 -5.13281252]\n", + " [ -1.59450309 -0.74638436]\n", + " [-32.29698843 -29.52557043]\n", + " [-32.29465669 -24.14957093]\n", + " [-32.29232495 -18.77357144]\n", + " [-32.2899932 -13.39757194]\n", + " [-32.28766146 -8.02157244]\n", + " [-32.28532972 -2.64557295]\n", + " [-30.40031161 -31.42389325]\n", + " [-25.02431212 -31.42622499]\n", + " [-19.64831262 -31.42855673]\n", + " [-14.27231313 -31.43088848]\n", + " [ -8.89631363 -31.43322022]\n", + " [ -3.52031414 -31.43555196]\n", + " [-30.38700689 -0.74889614]\n", + " [-25.01100739 -0.75122788]\n", + " [-19.6350079 -0.75355962]\n", + " [-14.25900841 -0.75589136]\n", + " [ -8.88300892 -0.7582231 ]\n", + " [ -3.50700942 -0.76055484]\n", + " [ -1.62199131 -29.53887515]\n", + " [ -1.61965957 -24.16287565]\n", + " [ -1.61732783 -18.78687616]\n", + " [ -1.61499609 -13.41087666]\n", + " [ -1.61266434 -8.03487716]\n", + " [ -1.6103326 -2.65887768]\n", + " [-32.29781143 -31.42307024]\n", + " [-32.29781143 -31.42307024]\n", + " [ -1.60950959 -0.76137785]\n", + " [ -1.60950959 -0.76137785]\n", + " [-30.3994886 -29.52639343]\n", + " [-25.02348911 -29.52872517]\n", + " [-19.64748962 -29.53105692]\n", + " [-14.27149012 -29.53338866]\n", + " [ -8.89549063 -29.5357204 ]\n", + " [ -3.51949113 -29.53805214]\n", + " [-30.39715686 -24.15039394]\n", + " [-25.02115737 -24.15272568]\n", + " [-19.64515788 -24.15505742]\n", + " [-14.26915838 -24.15738916]\n", + " [ -8.89315889 -24.1597209 ]\n", + " [ -3.51715939 -24.16205264]\n", + " [-30.39482512 -18.77439444]\n", + " [-25.01882563 -18.77672618]\n", + " [-19.64282613 -18.77905793]\n", + " [-14.26682664 -18.78138967]\n", + " [ -8.89082714 -18.78372141]\n", + " [ -3.51482765 -18.78605315]\n", + " [-30.39249338 -13.39839495]\n", + " [-25.01649389 -13.40072669]\n", + " [-19.64049439 -13.40305843]\n", + " [-14.2644949 -13.40539017]\n", + " [ -8.8884954 -13.40772191]\n", + " [ -3.51249591 -13.41005365]\n", + " [-30.39016163 -8.02239545]\n", + " [-25.01416214 -8.02472719]\n", + " [-19.63816265 -8.02705893]\n", + " [-14.26216315 -8.02939068]\n", + " [ -8.88616366 -8.03172242]\n", + " [ -3.51016417 -8.03405416]\n", + " [-30.3878299 -2.64639596]\n", + " [-25.01183041 -2.6487277 ]\n", + " [-19.63583091 -2.65105944]\n", + " [-14.25983141 -2.65339118]\n", + " [ -8.88383191 -2.65572292]\n", + " [ -3.50783243 -2.65805467]]\n", + "DEBUG:root:make_az_asym: xyp: shape: (96, 2)\n", + "DEBUG:root:radec2pix: curVec: [[-0.20396735 0.55281553 0.80795564]\n", + " [-0.20001505 0.53017361 0.8239599 ]\n", + " [-0.19582147 0.50665293 0.83961703]\n", + " [-0.19139461 0.48232386 0.85482852]\n", + " [-0.18674446 0.457262 0.86950444]\n", + " [-0.18188335 0.43154994 0.88356273]\n", + " [-0.17682617 0.40527804 0.89692932]\n", + " [-0.17159038 0.37854427 0.90953888]\n", + " [-0.20396735 0.55281553 0.80795564]\n", + " [-0.23199756 0.54583302 0.80513567]\n", + " [-0.25972843 0.53833647 0.80170754]\n", + " [-0.28705402 0.53035941 0.79769599]\n", + " [-0.31387122 0.52193959 0.7931355 ]\n", + " [-0.34007961 0.51311853 0.78807057]\n", + " [-0.36558072 0.50394117 0.78255609]\n", + " [-0.39027726 0.49445583 0.77665764]\n", + " [-0.17159038 0.37854427 0.90953888]\n", + " [-0.20060816 0.3714441 0.90652394]\n", + " [-0.22935006 0.3640318 0.90270671]\n", + " [-0.25770505 0.3563415 0.89811405]\n", + " [-0.28556759 0.34841074 0.89278279]\n", + " [-0.31283805 0.34028012 0.88675915]\n", + " [-0.33942207 0.33199321 0.88009838]\n", + " [-0.36522891 0.32359684 0.87286478]\n", + " [-0.39027726 0.49445583 0.77665764]\n", + " [-0.38807628 0.47199631 0.79159099]\n", + " [-0.3853988 0.4487532 0.80628055]\n", + " [-0.38225425 0.42480268 0.82062438]\n", + " [-0.37865276 0.40022477 0.83453114]\n", + " [-0.37460561 0.37510401 0.84791958]\n", + " [-0.37012585 0.34952989 0.86071814]\n", + " [-0.36522891 0.32359684 0.87286478]\n", + " [-0.20237086 0.54303291 0.81496092]\n", + " [-0.1973647 0.5146831 0.83435513]\n", + " [-0.19200368 0.48508283 0.85312908]\n", + " [-0.18630538 0.45436904 0.8711137 ]\n", + " [-0.18029249 0.42269385 0.88815794]\n", + " [-0.17399349 0.39022681 0.90412903]\n", + " [-0.21620583 0.54976035 0.80685723]\n", + " [-0.25037292 0.54085275 0.80298923]\n", + " [-0.28398478 0.53120597 0.79823108]\n", + " [-0.31685045 0.52088779 0.79264223]\n", + " [-0.34878493 0.50997462 0.78630462]\n", + " [-0.3796075 0.49855057 0.77932373]\n", + " [-0.18428704 0.37558105 0.90828253]\n", + " [-0.21967985 0.36666493 0.90404513]\n", + " [-0.25454738 0.3573133 0.89862831]\n", + " [-0.28869298 0.34759389 0.89209576]\n", + " [-0.32193316 0.33758146 0.88453253]\n", + " [-0.35409584 0.32735752 0.87604406]\n", + " [-0.38929342 0.48479722 0.7832128 ]\n", + " [-0.38627325 0.45673391 0.80136578]\n", + " [-0.38254681 0.42756882 0.81904997]\n", + " [-0.37813245 0.39744763 0.83609284]\n", + " [-0.373051 0.36652603 0.85234478]\n", + " [-0.36732745 0.33497082 0.86767799]\n", + " [-0.20405049 0.55271671 0.80800225]\n", + " [-0.20405049 0.55271671 0.80800225]\n", + " [-0.36515952 0.32371487 0.87285005]\n", + " [-0.36515952 0.32371487 0.87285005]\n", + " [-0.2145742 0.54006635 0.81380971]\n", + " [-0.24887782 0.53113972 0.80990767]\n", + " [-0.28262659 0.52148883 0.80509106]\n", + " [-0.31562939 0.51118196 0.79941923]\n", + " [-0.34770168 0.50029595 0.79297384]\n", + " [-0.3786636 0.48891526 0.78585988]\n", + " [-0.20968898 0.51169143 0.8331881 ]\n", + " [-0.24433728 0.50272325 0.82919758]\n", + " [-0.27843217 0.49307541 0.82422822]\n", + " [-0.31178179 0.4828174 0.81833946]\n", + " [-0.3442026 0.47202717 0.81161254]\n", + " [-0.37551731 0.46078989 0.80415137]\n", + " [-0.20442635 0.4820718 0.85194874]\n", + " [-0.23935638 0.47308121 0.8478813 ]\n", + " [-0.27373558 0.46345962 0.84277756]\n", + " [-0.30737094 0.45327723 0.83669759]\n", + " [-0.34007949 0.44261249 0.82972292]\n", + " [-0.37168619 0.43155084 0.82195696]\n", + " [-0.19880321 0.45134458 0.86992261]\n", + " [-0.23395044 0.44235175 0.86578988]\n", + " [-0.26855132 0.43278109 0.86057 ]\n", + " [-0.30241148 0.42270285 0.85432406]\n", + " [-0.33534812 0.41219524 0.84713442]\n", + " [-0.36718788 0.40134321 0.83910469]\n", + " [-0.1928415 0.41966211 0.88695877]\n", + " [-0.22813942 0.41068781 0.88277286]\n", + " [-0.26289797 0.40119341 0.8774557 ]\n", + " [-0.29692156 0.39124852 0.87106956]\n", + " [-0.3300272 0.38093027 0.86369797]\n", + " [-0.36204254 0.37032248 0.85544518]\n", + " [-0.18656901 0.38719407 0.90292456]\n", + " [-0.22194931 0.37825914 0.89869824]\n", + " [-0.25680011 0.36886601 0.89330374]\n", + " [-0.29092496 0.35908298 0.88680442]\n", + " [-0.32414051 0.34898549 0.87928497]\n", + " [-0.35627473 0.33865571 0.87085052]]\n", + "DEBUG:root:radec2pix: curVec Shape: (96, 3)\n", + "DEBUG:root:cartToSphere: vec: [[ 0.00162968 -0.20886687 0.97794273]\n", + " [ 0.00164392 -0.18138669 0.98341048]\n", + " [ 0.00165615 -0.15321267 0.98819185]\n", + " [ 0.00166636 -0.12445123 0.99222433]\n", + " [ 0.0016745 -0.0952084 0.99545595]\n", + " [ 0.00168051 -0.06559229 0.99784509]\n", + " [ 0.00168433 -0.03571531 0.99936059]\n", + " [ 0.00168589 -0.00569466 0.99998236]\n", + " [ 0.00162968 -0.20886687 0.97794273]\n", + " [ 0.03065921 -0.20871575 0.97749565]\n", + " [ 0.0595691 -0.20829328 0.9762507 ]\n", + " [ 0.08824658 -0.20760055 0.9742251 ]\n", + " [ 0.11657974 -0.20663909 0.97144709]\n", + " [ 0.14445783 -0.20541086 0.96795574]\n", + " [ 0.17177197 -0.20391875 0.96380057]\n", + " [ 0.1984171 -0.20216791 0.95904056]\n", + " [ 0.00168589 -0.00569466 0.99998236]\n", + " [ 0.03171597 -0.00569039 0.99948072]\n", + " [ 0.06161834 -0.0056785 0.99808363]\n", + " [ 0.09127522 -0.00565918 0.99580962]\n", + " [ 0.12057355 -0.00563263 0.99268842]\n", + " [ 0.14940474 -0.00559908 0.98876027]\n", + " [ 0.17766265 -0.00555867 0.98407575]\n", + " [ 0.205241 -0.00551146 0.97869595]\n", + " [ 0.1984171 -0.20216791 0.95904056]\n", + " [ 0.20017053 -0.17558603 0.96389901]\n", + " [ 0.20167036 -0.14832064 0.96815807]\n", + " [ 0.20291139 -0.12047648 0.97175737]\n", + " [ 0.20389075 -0.09216227 0.97464592]\n", + " [ 0.20460646 -0.06348867 0.97678318]\n", + " [ 0.20505694 -0.03456748 0.97813943]\n", + " [ 0.205241 -0.00551146 0.97869595]\n", + " [ 0.00173588 -0.19697755 0.98040646]\n", + " [ 0.00175296 -0.16281769 0.98665461]\n", + " [ 0.00176683 -0.12772153 0.99180849]\n", + " [ 0.00177741 -0.09188434 0.9957681 ]\n", + " [ 0.00178459 -0.05550542 0.99845679]\n", + " [ 0.00178824 -0.01879375 0.99982178]\n", + " [ 0.01429458 -0.20874173 0.97786633]\n", + " [ 0.04980805 -0.20837407 0.97678012]\n", + " [ 0.08502967 -0.20760004 0.97451125]\n", + " [ 0.11975303 -0.20642226 0.97110713]\n", + " [ 0.15377432 -0.2048444 0.96663966]\n", + " [ 0.1868945 -0.20287264 0.961204 ]\n", + " [ 0.0147871 -0.00579649 0.99987386]\n", + " [ 0.05152109 -0.00578593 0.99865515]\n", + " [ 0.08794575 -0.0057639 0.99610859]\n", + " [ 0.12385093 -0.00573078 0.99228429]\n", + " [ 0.15903647 -0.00568698 0.98725633]\n", + " [ 0.19330699 -0.00563273 0.98112215]\n", + " [ 0.19912208 -0.19067465 0.96124585]\n", + " [ 0.20110045 -0.1576223 0.96680599]\n", + " [ 0.20269257 -0.12364673 0.97140476]\n", + " [ 0.20389226 -0.08894663 0.97494433]\n", + " [ 0.20469584 -0.05372559 0.97735008]\n", + " [ 0.20510055 -0.0181899 0.97857186]\n", + " [ 0.00172908 -0.20877415 0.97796235]\n", + " [ 0.00172908 -0.20877415 0.97796235]\n", + " [ 0.20514779 -0.0056111 0.97871492]\n", + " [ 0.20514779 -0.0056111 0.97871492]\n", + " [ 0.01435076 -0.19694699 0.9803091 ]\n", + " [ 0.05000388 -0.19660038 0.97920779]\n", + " [ 0.08536435 -0.19587092 0.97690711]\n", + " [ 0.12022547 -0.19476145 0.97345458]\n", + " [ 0.15438306 -0.19327535 0.96892234]\n", + " [ 0.18763689 -0.19141752 0.96340632]\n", + " [ 0.01449201 -0.16279237 0.98655391]\n", + " [ 0.05049589 -0.16250539 0.98541472]\n", + " [ 0.08620426 -0.1619024 0.9830343 ]\n", + " [ 0.1214098 -0.1609872 0.97946045]\n", + " [ 0.15590842 -0.15976346 0.97476571]\n", + " [ 0.18949858 -0.15823425 0.96904706]\n", + " [ 0.01460664 -0.12770151 0.99170508]\n", + " [ 0.05089468 -0.1274748 0.99053516]\n", + " [ 0.08688344 -0.12699943 0.98809029]\n", + " [ 0.12236492 -0.12628004 0.9844187 ]\n", + " [ 0.15713605 -0.12532102 0.97959323]\n", + " [ 0.19099623 -0.12412508 0.97371115]\n", + " [ 0.0146941 -0.09186978 0.99566261]\n", + " [ 0.05119852 -0.09170505 0.99446915]\n", + " [ 0.08739951 -0.09136033 0.99197511]\n", + " [ 0.12308827 -0.09084026 0.98822939]\n", + " [ 0.15806297 -0.09014925 0.98330525]\n", + " [ 0.19212497 -0.08928993 0.97730001]\n", + " [ 0.01475342 -0.05549654 0.99834987]\n", + " [ 0.05140434 -0.05539609 0.99714035]\n", + " [ 0.08774826 -0.05518622 0.99461285]\n", + " [ 0.12357559 -0.05487037 0.99081699]\n", + " [ 0.15868553 -0.05445187 0.9858265 ]\n", + " [ 0.19288138 -0.05393273 0.97973876]\n", + " [ 0.01478357 -0.01879073 0.99971414]\n", + " [ 0.05150885 -0.01875652 0.99849639]\n", + " [ 0.08792506 -0.01868512 0.99595183]\n", + " [ 0.1238221 -0.01857781 0.99213051]\n", + " [ 0.15899976 -0.01843585 0.98710648]\n", + " [ 0.19326249 -0.01826001 0.98097716]]\n", + "DEBUG:root:radec2pix: fitpx: [[4271.49999985 4155.49999985]\n", + " [4271.49999998 3863.07142855]\n", + " [4271.50000002 3570.64285716]\n", + " [4271.49999976 3278.21428558]\n", + " [4271.50000012 2985.78571434]\n", + " [4271.50000004 2693.35714287]\n", + " [4271.50000005 2400.92857144]\n", + " [4271.49999991 2108.5 ]\n", + " [4271.49999985 4155.49999985]\n", + " [3979.07142858 4155.50000001]\n", + " [3686.64285722 4155.5000001 ]\n", + " [3394.21428584 4155.50000021]\n", + " [3101.78571415 4155.49999972]\n", + " [2809.35714289 4155.50000011]\n", + " [2516.92857142 4155.49999998]\n", + " [2224.50000001 4155.50000022]\n", + " [4271.49999991 2108.5 ]\n", + " [3979.07142843 2108.5 ]\n", + " [3686.6428569 2108.49999999]\n", + " [3394.21428586 2108.5 ]\n", + " [3101.78571453 2108.50000001]\n", + " [2809.35714306 2108.50000001]\n", + " [2516.9285717 2108.50000003]\n", + " [2224.49999984 2108.49999993]\n", + " [2224.50000001 4155.50000022]\n", + " [2224.5 3863.07142862]\n", + " [2224.49999998 3570.64285684]\n", + " [2224.50000001 3278.21428585]\n", + " [2224.50000002 2985.78571445]\n", + " [2224.5 2693.35714285]\n", + " [2224.49999995 2400.92857125]\n", + " [2224.49999984 2108.49999993]\n", + " [4270.49999995 4027.99999996]\n", + " [4270.50000001 3669.6 ]\n", + " [4270.4999998 3311.19999989]\n", + " [4270.50000006 2952.80000003]\n", + " [4270.50000002 2594.40000001]\n", + " [4270.49999985 2235.99999999]\n", + " [4144.00000023 4154.50000023]\n", + " [3785.60000021 4154.50000026]\n", + " [3427.20000017 4154.50000028]\n", + " [3068.79999989 4154.49999975]\n", + " [2710.40000004 4154.50000013]\n", + " [2351.99999998 4154.49999985]\n", + " [4143.99999992 2109.5 ]\n", + " [3785.59999985 2109.5 ]\n", + " [3427.19999998 2109.5 ]\n", + " [3068.80000001 2109.5 ]\n", + " [2710.40000021 2109.50000002]\n", + " [2352.00000017 2109.50000003]\n", + " [2225.5 4027.99999993]\n", + " [2225.49999998 3669.59999975]\n", + " [2225.50000001 3311.20000015]\n", + " [2225.5 2952.8 ]\n", + " [2225.49999998 2594.39999987]\n", + " [2225.50000008 2236.00000013]\n", + " [4270.50000018 4154.50000018]\n", + " [4270.50000018 4154.50000018]\n", + " [2225.49999981 2109.49999992]\n", + " [2225.49999981 2109.49999992]\n", + " [4143.99999987 4027.99999987]\n", + " [3785.59999992 4027.9999999 ]\n", + " [3427.2000001 4028.00000015]\n", + " [3068.80000011 4028.00000023]\n", + " [2710.39999995 4027.99999982]\n", + " [2351.99999998 4027.99999985]\n", + " [4144.00000018 3669.60000014]\n", + " [3785.5999999 3669.59999991]\n", + " [3427.19999994 3669.59999993]\n", + " [3068.79999994 3669.5999999 ]\n", + " [2710.39999997 3669.59999991]\n", + " [2351.99999997 3669.5999998 ]\n", + " [4143.99999973 3311.19999984]\n", + " [3785.60000019 3311.20000014]\n", + " [3427.1999998 3311.19999981]\n", + " [3068.79999976 3311.19999969]\n", + " [2710.39999985 3311.19999967]\n", + " [2352.00000003 3311.20000016]\n", + " [4144.00000026 2952.80000011]\n", + " [3785.6000001 2952.80000005]\n", + " [3427.20000009 2952.80000006]\n", + " [3068.8000003 2952.80000028]\n", + " [2710.39999986 2952.79999979]\n", + " [2352.00000001 2952.80000004]\n", + " [4143.99999994 2594.39999998]\n", + " [3785.6 2594.4 ]\n", + " [3427.19999999 2594.39999999]\n", + " [3068.79999999 2594.39999999]\n", + " [2710.40000015 2594.40000014]\n", + " [2351.99999993 2594.39999983]\n", + " [4143.99999995 2236. ]\n", + " [3785.59999975 2235.99999997]\n", + " [3427.19999971 2235.99999996]\n", + " [3068.80000003 2236.00000001]\n", + " [2710.39999999 2236. ]\n", + " [2352.00000022 2236.00000016]]\n", + "DEBUG:root:fitpix2pix: ccdpx: shape: (96, 2)\n", + "DEBUG:root:fitpix2pix: visCut: True\n", + "DEBUG:root:radec2pix: xyfp: [[ -0.167405 31.491388 ]\n", + " [ -0.167405 27.10495943]\n", + " [ -0.167405 22.71853086]\n", + " [ -0.167405 18.33210229]\n", + " [ -0.167405 13.94567372]\n", + " [ -0.167405 9.55924515]\n", + " [ -0.167405 5.17281657]\n", + " [ -0.167405 0.786388 ]\n", + " [ -0.167405 31.491388 ]\n", + " [ -4.55383357 31.491388 ]\n", + " [ -8.94026214 31.491388 ]\n", + " [-13.32669071 31.491388 ]\n", + " [-17.71311928 31.491388 ]\n", + " [-22.09954786 31.491388 ]\n", + " [-26.48597643 31.491388 ]\n", + " [-30.872405 31.491388 ]\n", + " [ -0.167405 0.786388 ]\n", + " [ -4.55383357 0.786388 ]\n", + " [ -8.94026214 0.786388 ]\n", + " [-13.32669071 0.786388 ]\n", + " [-17.71311929 0.786388 ]\n", + " [-22.09954786 0.786388 ]\n", + " [-26.48597643 0.786388 ]\n", + " [-30.872405 0.786388 ]\n", + " [-30.872405 31.491388 ]\n", + " [-30.872405 27.10495943]\n", + " [-30.872405 22.71853086]\n", + " [-30.872405 18.33210229]\n", + " [-30.872405 13.94567371]\n", + " [-30.872405 9.55924514]\n", + " [-30.872405 5.17281657]\n", + " [-30.872405 0.786388 ]\n", + " [ -0.182405 29.578888 ]\n", + " [ -0.182405 24.202888 ]\n", + " [ -0.182405 18.826888 ]\n", + " [ -0.182405 13.450888 ]\n", + " [ -0.182405 8.074888 ]\n", + " [ -0.182405 2.698888 ]\n", + " [ -2.079905 31.476388 ]\n", + " [ -7.455905 31.476388 ]\n", + " [-12.831905 31.476388 ]\n", + " [-18.207905 31.476388 ]\n", + " [-23.583905 31.476388 ]\n", + " [-28.959905 31.476388 ]\n", + " [ -2.079905 0.801388 ]\n", + " [ -7.455905 0.801388 ]\n", + " [-12.831905 0.801388 ]\n", + " [-18.207905 0.801388 ]\n", + " [-23.583905 0.801388 ]\n", + " [-28.959905 0.801388 ]\n", + " [-30.857405 29.578888 ]\n", + " [-30.857405 24.202888 ]\n", + " [-30.857405 18.826888 ]\n", + " [-30.857405 13.450888 ]\n", + " [-30.857405 8.074888 ]\n", + " [-30.857405 2.698888 ]\n", + " [ -0.182405 31.476388 ]\n", + " [ -0.182405 31.476388 ]\n", + " [-30.857405 0.801388 ]\n", + " [-30.857405 0.801388 ]\n", + " [ -2.079905 29.578888 ]\n", + " [ -7.455905 29.578888 ]\n", + " [-12.831905 29.578888 ]\n", + " [-18.207905 29.578888 ]\n", + " [-23.583905 29.578888 ]\n", + " [-28.959905 29.578888 ]\n", + " [ -2.079905 24.202888 ]\n", + " [ -7.455905 24.202888 ]\n", + " [-12.831905 24.202888 ]\n", + " [-18.207905 24.202888 ]\n", + " [-23.583905 24.202888 ]\n", + " [-28.959905 24.202888 ]\n", + " [ -2.079905 18.826888 ]\n", + " [ -7.455905 18.826888 ]\n", + " [-12.831905 18.826888 ]\n", + " [-18.207905 18.826888 ]\n", + " [-23.583905 18.826888 ]\n", + " [-28.959905 18.826888 ]\n", + " [ -2.079905 13.450888 ]\n", + " [ -7.455905 13.450888 ]\n", + " [-12.831905 13.450888 ]\n", + " [-18.207905 13.450888 ]\n", + " [-23.583905 13.450888 ]\n", + " [-28.959905 13.450888 ]\n", + " [ -2.079905 8.074888 ]\n", + " [ -7.455905 8.074888 ]\n", + " [-12.831905 8.074888 ]\n", + " [-18.20790499 8.074888 ]\n", + " [-23.583905 8.074888 ]\n", + " [-28.959905 8.074888 ]\n", + " [ -2.079905 2.698888 ]\n", + " [ -7.455905 2.698888 ]\n", + " [-12.831905 2.698888 ]\n", + " [-18.207905 2.698888 ]\n", + " [-23.583905 2.698888 ]\n", + " [-28.959905 2.698888 ]]\n", + "DEBUG:root:radec2pix: xyfp Shape: (96, 2)\n", + "DEBUG:root:radec2pix: xyfp: [[-32.31281793 -31.43806373]\n", + " [-32.31091541 -27.05163558]\n", + " [-32.30901287 -22.66520742]\n", + " [-32.30711034 -18.27877926]\n", + " [-32.3052078 -13.8923511 ]\n", + " [-32.30330527 -9.50592294]\n", + " [-32.30140274 -5.11949478]\n", + " [-32.2995002 -0.73306663]\n", + " [-32.31281793 -31.43806373]\n", + " [-27.92638978 -31.43996627]\n", + " [-23.53996162 -31.4418688 ]\n", + " [-19.15353346 -31.44377134]\n", + " [-14.7671053 -31.44567387]\n", + " [-10.38067715 -31.44757641]\n", + " [ -5.99424899 -31.44947894]\n", + " [ -1.60782083 -31.45138147]\n", + " [-32.2995002 -0.73306663]\n", + " [-27.91307204 -0.73496916]\n", + " [-23.52664389 -0.73687169]\n", + " [-19.14021573 -0.73877423]\n", + " [-14.75378757 -0.74067676]\n", + " [-10.36735941 -0.74257929]\n", + " [ -5.98093125 -0.74448183]\n", + " [ -1.59450309 -0.74638436]\n", + " [ -1.60782083 -31.45138147]\n", + " [ -1.60591829 -27.06495331]\n", + " [ -1.60401576 -22.67852516]\n", + " [ -1.60211323 -18.292097 ]\n", + " [ -1.60021069 -13.90566884]\n", + " [ -1.59830816 -9.51924068]\n", + " [ -1.59640563 -5.13281252]\n", + " [ -1.59450309 -0.74638436]\n", + " [-32.29698843 -29.52557043]\n", + " [-32.29465669 -24.14957093]\n", + " [-32.29232495 -18.77357144]\n", + " [-32.2899932 -13.39757194]\n", + " [-32.28766146 -8.02157244]\n", + " [-32.28532972 -2.64557295]\n", + " [-30.40031161 -31.42389325]\n", + " [-25.02431212 -31.42622499]\n", + " [-19.64831262 -31.42855673]\n", + " [-14.27231313 -31.43088848]\n", + " [ -8.89631363 -31.43322022]\n", + " [ -3.52031414 -31.43555196]\n", + " [-30.38700689 -0.74889614]\n", + " [-25.01100739 -0.75122788]\n", + " [-19.6350079 -0.75355962]\n", + " [-14.25900841 -0.75589136]\n", + " [ -8.88300892 -0.7582231 ]\n", + " [ -3.50700942 -0.76055484]\n", + " [ -1.62199131 -29.53887515]\n", + " [ -1.61965957 -24.16287565]\n", + " [ -1.61732783 -18.78687616]\n", + " [ -1.61499609 -13.41087666]\n", + " [ -1.61266434 -8.03487716]\n", + " [ -1.6103326 -2.65887768]\n", + " [-32.29781143 -31.42307024]\n", + " [-32.29781143 -31.42307024]\n", + " [ -1.60950959 -0.76137785]\n", + " [ -1.60950959 -0.76137785]\n", + " [-30.3994886 -29.52639343]\n", + " [-25.02348911 -29.52872517]\n", + " [-19.64748962 -29.53105692]\n", + " [-14.27149012 -29.53338866]\n", + " [ -8.89549063 -29.5357204 ]\n", + " [ -3.51949113 -29.53805214]\n", + " [-30.39715686 -24.15039394]\n", + " [-25.02115737 -24.15272568]\n", + " [-19.64515788 -24.15505742]\n", + " [-14.26915838 -24.15738916]\n", + " [ -8.89315889 -24.1597209 ]\n", + " [ -3.51715939 -24.16205264]\n", + " [-30.39482512 -18.77439444]\n", + " [-25.01882563 -18.77672618]\n", + " [-19.64282613 -18.77905793]\n", + " [-14.26682664 -18.78138967]\n", + " [ -8.89082714 -18.78372141]\n", + " [ -3.51482765 -18.78605315]\n", + " [-30.39249338 -13.39839495]\n", + " [-25.01649389 -13.40072669]\n", + " [-19.64049439 -13.40305843]\n", + " [-14.2644949 -13.40539017]\n", + " [ -8.8884954 -13.40772191]\n", + " [ -3.51249591 -13.41005365]\n", + " [-30.39016163 -8.02239545]\n", + " [-25.01416214 -8.02472719]\n", + " [-19.63816265 -8.02705893]\n", + " [-14.26216315 -8.02939068]\n", + " [ -8.88616366 -8.03172242]\n", + " [ -3.51016417 -8.03405416]\n", + " [-30.3878299 -2.64639596]\n", + " [-25.01183041 -2.6487277 ]\n", + " [-19.63583091 -2.65105944]\n", + " [-14.25983141 -2.65339118]\n", + " [ -8.88383191 -2.65572292]\n", + " [ -3.50783243 -2.65805467]]\n", + "DEBUG:root:radec2pix: lng: [270.4470398 270.51926185 270.61931513 270.76712536 271.00759894\n", + " 271.46762895 272.70005845 286.49130114 270.4470398 278.35667351\n", + " 285.95982213 293.02931263 299.43042278 305.11729798 310.10927793\n", + " 314.46353671 286.49130114 349.82837514 354.73471783 356.4521324\n", + " 357.32535522 357.85379375 358.20792761 358.46177059 314.46353671\n", + " 318.74333689 323.66697635 329.30072855 335.67617912 342.7610671\n", + " 350.43132356 358.46177059 270.50490909 270.61684574 270.79254775\n", + " 271.10819213 271.84151891 275.43536905 273.91748404 283.44327486\n", + " 292.27322451 300.11957347 306.89513227 312.65252806 338.59499359\n", + " 353.59240246 356.2502422 357.3507235 357.95203643 358.33094358\n", + " 316.24148386 321.91069268 328.61592969 336.43108737 345.29354618\n", + " 354.93182927 270.47451616 270.47451616 358.43326445 358.43326445\n", + " 274.16755516 284.27018764 293.54850553 301.6868684 308.61690354\n", + " 314.4285595 275.08714159 287.26177752 298.03288482 307.02206797\n", + " 314.30032851 320.13759497 276.52519686 291.76449803 304.37699404\n", + " 314.09790313 321.42651996 326.9808709 279.08719841 299.17442797\n", + " 313.73069285 323.57233622 330.30226172 335.07338778 284.88740412\n", + " 312.85952275 327.83358678 336.05769185 341.06068787 344.37815396\n", + " 308.1938338 339.99132199 348.00244679 351.46719972 353.38615059\n", + " 354.60255033]\n", + "DEBUG:root:radec2pix: xyfp Shape: (96, 2)\n", + "DEBUG:root:optics_fp: rtanth: [31.72889598 27.34254715 22.95622881 18.56996252 14.18379661 9.79786588\n", + " 5.41274207 1.03869565 31.72889598 32.05497925 32.96668106 34.41749464\n", + " 36.342913 38.67211172 41.33689193 44.27670445 1.03869565 4.67736497\n", + " 9.00877953 13.37609754 17.75284128 22.13341982 26.51593264 30.89955671\n", + " 44.27670445 41.24704355 38.47976296 36.03536075 33.98358137 32.39910327\n", + " 31.35285463 30.89955671 29.81652098 24.44065782 19.06487182 13.68925392\n", + " 8.31413013 2.94220985 31.78219953 32.5803988 34.21489906 36.57374743\n", + " 39.52747698 42.9535403 2.33383998 7.53796979 12.88401801 18.24767393\n", + " 23.61694389 28.9887086 42.91616052 39.37153369 36.28003925 33.76636764\n", + " 31.96711857 31.00691067 31.71398377 31.71398377 30.88506563 30.88506563\n", + " 29.88906763 30.73646927 32.46394115 34.94119572 38.021962 41.57228381\n", + " 24.52910914 25.55486988 27.6084825 30.48291307 33.97043457 37.9021848\n", + " 19.17813281 20.47376266 22.98590632 26.36914053 30.33338108 34.67995379\n", + " 13.846556 15.59170589 18.76907627 22.78723124 27.27710291 32.04099765\n", + " 8.57065926 11.17275166 15.2972975 20.02465966 25.01538387 30.13892197\n", + " 3.60389222 8.02260672 13.1734259 18.4531524 23.77606504 29.11848994]\n", + "DEBUG:root:radec2pix: camVec: [[-0.00174024 -0.00176337 -0.00178449 -0.00180353 -0.00182039 -0.001835\n", + " -0.00184725 -0.00185707 -0.00174024 -0.0307605 -0.05966066 -0.08832819\n", + " -0.11665151 -0.14451993 -0.17182299 -0.19844965 -0.00185707 -0.03187835\n", + " -0.06177226 -0.09142104 -0.12071058 -0.14953103 -0.1777762 -0.20534186\n", + " -0.19844965 -0.20021951 -0.20172864 -0.20297731 -0.20396466 -0.20468905\n", + " -0.20514862 -0.20534186 -0.00185028 -0.00187827 -0.00190298 -0.00192425\n", + " -0.00194192 -0.00195581 -0.0144012 -0.04990298 -0.08511243 -0.11982373\n", + " -0.15383302 -0.18693675 -0.01495442 -0.05167778 -0.08809246 -0.12398684\n", + " -0.15915858 -0.19341315 -0.19916328 -0.201156 -0.20275765 -0.20396715\n", + " -0.20478152 -0.20519745 -0.00183964 -0.00183964 -0.20524866 -0.20524866\n", + " -0.01446124 -0.05010266 -0.08545073 -0.12029942 -0.1544452 -0.18768535\n", + " -0.01461361 -0.05060625 -0.08630213 -0.12149421 -0.15597972 -0.18955833\n", + " -0.01473929 -0.05101673 -0.08699359 -0.12246151 -0.1572181 -0.19106523\n", + " -0.01483744 -0.0513315 -0.08752139 -0.12319735 -0.15815714 -0.19220433\n", + " -0.01490708 -0.05154747 -0.08788092 -0.1236965 -0.15879197 -0.19297207\n", + " -0.01494734 -0.05166195 -0.08806808 -0.12395417 -0.15911791 -0.19336467]\n", + " [ 0.20894107 0.18147259 0.15331081 0.12455987 0.09532558 0.06571725\n", + " 0.03584843 0.00583647 0.20894107 0.20879621 0.2083801 0.20769404\n", + " 0.20673975 0.20551876 0.20403188 0.20227886 0.00583647 0.00584019\n", + " 0.00583613 0.00582438 0.00580507 0.00577839 0.00574449 0.00570348\n", + " 0.20227886 0.17571613 0.1484622 0.12062809 0.09232414 0.06366093\n", + " 0.03474987 0.00570348 0.1970566 0.16291184 0.12782912 0.09200243\n", + " 0.05563309 0.01893178 0.2088187 0.20845876 0.20769278 0.20652378\n", + " 0.20495452 0.20298606 0.00594178 0.00594091 0.00592823 0.00590399\n", + " 0.0058685 0.00582205 0.19079562 0.1577603 0.12379719 0.08910965\n", + " 0.05390131 0.01837776 0.20884841 0.20884841 0.00580307 0.00580307\n", + " 0.19702878 0.19668974 0.19596793 0.19486681 0.19338978 0.1915385\n", + " 0.16288937 0.16260994 0.16201386 0.16110551 0.1598896 0.15836938\n", + " 0.12781212 0.12759366 0.12712576 0.126413 0.12546054 0.12427244\n", + " 0.09199108 0.09183551 0.0914995 0.09098698 0.09030259 0.0894502\n", + " 0.05562756 0.05553685 0.05533649 0.05502916 0.05461804 0.05410588\n", + " 0.0189322 0.01890777 0.01884587 0.01874743 0.01861357 0.01844527]\n", + " [ 0.97792668 0.98339442 0.98817641 0.99221045 0.99544448 0.9978366\n", + " 0.99935553 0.99998124 0.97792668 0.97747528 0.97622658 0.97419778\n", + " 0.97141706 0.96792357 0.96376753 0.95901043 0.99998124 0.99947469\n", + " 0.99807321 0.9957953 0.99267077 0.98874015 0.98405418 0.97867369\n", + " 0.95901043 0.96386513 0.96812423 0.97172479 0.97461514 0.97675467\n", + " 0.97811374 0.97867369 0.98039037 0.98663884 0.99179438 0.99575692\n", + " 0.99844939 0.99981886 0.97784833 0.97675721 0.97448427 0.97107683\n", + " 0.96660698 0.96117184 0.99987052 0.99864614 0.99609466 0.9922663\n", + " 0.98723559 0.98110013 0.96121331 0.96677192 0.97137201 0.97491378\n", + " 0.97732245 0.97854804 0.9779463 0.9779463 0.97869265 0.97869265\n", + " 0.98029105 0.9791848 0.97688011 0.97342435 0.96888961 0.96337283\n", + " 0.98653611 0.98539181 0.98300735 0.97943054 0.97473363 0.9690133\n", + " 0.99168887 0.99051358 0.98806435 0.98438962 0.97956221 0.97367882\n", + " 0.99564928 0.99445026 0.99195154 0.9882023 0.98327604 0.97726975\n", + " 0.9983403 0.99712513 0.99459279 0.9907931 0.98580017 0.97971135\n", + " 0.99970903 0.99848562 0.99593617 0.99211083 0.9870841 0.98095356]]\n", + "DEBUG:root:radec2pix: camVec Shape: (3, 96)\n", + "DEBUG:root:radec2pix: lat: [77.94367134 79.54902489 81.18632945 82.85028944 84.53583766 86.23790238\n", + " 87.95095267 89.65971994 77.94367134 77.82164346 77.48801235 76.9631292\n", + " 76.27533882 75.45615131 74.53651433 73.54460591 89.65971994 88.15347287\n", + " 86.45230283 84.75294209 83.0672058 81.4014907 79.76129308 78.15206149\n", + " 73.54460591 74.55768324 75.50238779 76.35047091 77.07044991 77.62962616\n", + " 77.99774795 78.15206149 78.63928322 80.62896884 82.66134588 84.72698979\n", + " 86.81649257 88.91826945 77.92273249 77.62880737 77.03600995 76.19348076\n", + " 75.15884594 73.98801233 89.08995442 87.02817045 84.94370871 82.87794501\n", + " 80.84312687 78.84936896 73.99670581 75.19609757 76.26512012 77.14708483\n", + " 77.78216783 78.11748405 77.94905666 77.94905666 78.15735777 78.15735777\n", + " 78.61100015 78.29575797 77.66281562 76.76884154 75.67835331 74.45201735\n", + " 80.5936009 80.20229517 79.43086524 78.36733491 77.10116027 75.70726987\n", + " 82.61510476 82.11071991 81.1484309 79.87243611 78.40512567 76.83322353\n", + " 84.66162432 83.97115888 82.73646392 81.20037729 79.51583908 77.76861975\n", + " 86.70802953 85.66590929 84.05006409 82.22924953 80.34192865 78.44668306\n", + " 88.6299785 86.85760815 84.84280506 82.80723116 80.78933117 78.80649174]\n", + "DEBUG:root:mm_to_pix: fitpx: [[0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]]\n", + "DEBUG:root:mm_to_pix: fitpx.shape: (96, 2)\n", + "DEBUG:root:optics_fp: cphi: [-0.0051738 -0.00607178 -0.0073129 -0.00914033 -0.01209791 -0.01770316\n", + " -0.03238875 -0.17057046 -0.0051738 -0.14196195 -0.27109236 -0.38711253\n", + " -0.48729918 -0.57137557 -0.64065601 -0.69718731 -0.17057046 -0.97567733\n", + " -0.99347832 -0.99703634 -0.99831251 -0.99891078 -0.99923847 -0.99943725\n", + " -0.69718731 -0.74844189 -0.80231456 -0.85678989 -0.9085738 -0.95306497\n", + " -0.98492815 -0.99943725 -0.0060359 -0.00745674 -0.00967884 -0.01364603\n", + " -0.02274227 -0.06503966 -0.06534051 -0.22874689 -0.3749438 -0.49775222\n", + " -0.59656384 -0.67413914 -0.89537598 -0.99040776 -0.99671262 -0.99835535\n", + " -0.9990142 -0.99934296 -0.71895916 -0.78374506 -0.85059233 -0.91398049\n", + " -0.96549457 -0.99546704 -0.00564941 -0.00564941 -0.9994203 -0.9994203\n", + " -0.06950599 -0.24249594 -0.39519134 -0.52103162 -0.62020649 -0.69655704\n", + " -0.08478692 -0.29175445 -0.46477551 -0.59730991 -0.69424327 -0.76406532\n", + " -0.10856248 -0.36427233 -0.55834321 -0.69058088 -0.77756 -0.83512289\n", + " -0.15052868 -0.47847897 -0.68390701 -0.79923279 -0.86476566 -0.90397627\n", + " -0.24345642 -0.66792691 -0.83927119 -0.9096075 -0.9430429 -0.96110205\n", + " -0.57961227 -0.93047808 -0.97475473 -0.98719494 -0.99229449 -0.99486127]\n", + "DEBUG:root:mm_to_pix: fitpx: [[0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]]\n", + "DEBUG:root:mm_to_pix: fitpx.shape: (96, 2)\n", + "DEBUG:root:optics_fp: sphi: [0.99998662 0.99998157 0.99997326 0.99995823 0.99992682 0.99984329\n", + " 0.99947535 0.98534548 0.99998662 0.98987212 0.96255334 0.92203248\n", + " 0.87323508 0.82068871 0.76782803 0.71688902 0.98534548 0.21921165\n", + " 0.11402118 0.07693204 0.0580701 0.04666103 0.03901907 0.03354371\n", + " 0.71688902 0.66320038 0.59690146 0.51566567 0.41772438 0.30276585\n", + " 0.17296396 0.03354371 0.99998178 0.9999722 0.99995316 0.99990689\n", + " 0.99974136 0.99788268 0.99786303 0.97348593 0.92704754 0.86731928\n", + " 0.80256563 0.73860437 0.44531096 0.13817549 0.08101827 0.0573289\n", + " 0.04439174 0.0362443 0.69505232 0.62108267 0.52582572 0.40575813\n", + " 0.26042318 0.09510716 0.99998404 0.99998404 0.03404492 0.03404492\n", + " 0.99758153 0.97015242 0.91859883 0.85353737 0.7844386 0.71750142\n", + " 0.99639911 0.95649325 0.88542855 0.80201052 0.71974043 0.64513889\n", + " 0.99408963 0.93129247 0.82961007 0.72325518 0.62880875 0.55006341\n", + " 0.98860564 0.87809901 0.72956919 0.60102159 0.50217562 0.42758264\n", + " 0.96991184 0.74422687 0.54371304 0.41546865 0.33267115 0.27619351\n", + " 0.81489239 0.36634758 0.22327834 0.15951848 0.12390179 0.10124753]\n", + "DEBUG:root:cartToSphere: vec: [[-0.00174024 0.20894107 0.97792668]\n", + " [-0.00176337 0.18147259 0.98339442]\n", + " [-0.00178449 0.15331081 0.98817641]\n", + " [-0.00180353 0.12455987 0.99221045]\n", + " [-0.00182039 0.09532558 0.99544448]\n", + " [-0.001835 0.06571725 0.9978366 ]\n", + " [-0.00184725 0.03584843 0.99935553]\n", + " [-0.00185707 0.00583647 0.99998124]\n", + " [-0.00174024 0.20894107 0.97792668]\n", + " [-0.0307605 0.20879621 0.97747528]\n", + " [-0.05966066 0.2083801 0.97622658]\n", + " [-0.08832819 0.20769404 0.97419778]\n", + " [-0.11665151 0.20673975 0.97141706]\n", + " [-0.14451993 0.20551876 0.96792357]\n", + " [-0.17182299 0.20403188 0.96376753]\n", + " [-0.19844965 0.20227886 0.95901043]\n", + " [-0.00185707 0.00583647 0.99998124]\n", + " [-0.03187835 0.00584019 0.99947469]\n", + " [-0.06177226 0.00583613 0.99807321]\n", + " [-0.09142104 0.00582438 0.9957953 ]\n", + " [-0.12071058 0.00580507 0.99267077]\n", + " [-0.14953103 0.00577839 0.98874015]\n", + " [-0.1777762 0.00574449 0.98405418]\n", + " [-0.20534186 0.00570348 0.97867369]\n", + " [-0.19844965 0.20227886 0.95901043]\n", + " [-0.20021951 0.17571613 0.96386513]\n", + " [-0.20172864 0.1484622 0.96812423]\n", + " [-0.20297731 0.12062809 0.97172479]\n", + " [-0.20396466 0.09232414 0.97461514]\n", + " [-0.20468905 0.06366093 0.97675467]\n", + " [-0.20514862 0.03474987 0.97811374]\n", + " [-0.20534186 0.00570348 0.97867369]\n", + " [-0.00185028 0.1970566 0.98039037]\n", + " [-0.00187827 0.16291184 0.98663884]\n", + " [-0.00190298 0.12782912 0.99179438]\n", + " [-0.00192425 0.09200243 0.99575692]\n", + " [-0.00194192 0.05563309 0.99844939]\n", + " [-0.00195581 0.01893178 0.99981886]\n", + " [-0.0144012 0.2088187 0.97784833]\n", + " [-0.04990298 0.20845876 0.97675721]\n", + " [-0.08511243 0.20769278 0.97448427]\n", + " [-0.11982373 0.20652378 0.97107683]\n", + " [-0.15383302 0.20495452 0.96660698]\n", + " [-0.18693675 0.20298606 0.96117184]\n", + " [-0.01495442 0.00594178 0.99987052]\n", + " [-0.05167778 0.00594091 0.99864614]\n", + " [-0.08809246 0.00592823 0.99609466]\n", + " [-0.12398684 0.00590399 0.9922663 ]\n", + " [-0.15915858 0.0058685 0.98723559]\n", + " [-0.19341315 0.00582205 0.98110013]\n", + " [-0.19916328 0.19079562 0.96121331]\n", + " [-0.201156 0.1577603 0.96677192]\n", + " [-0.20275765 0.12379719 0.97137201]\n", + " [-0.20396715 0.08910965 0.97491378]\n", + " [-0.20478152 0.05390131 0.97732245]\n", + " [-0.20519745 0.01837776 0.97854804]\n", + " [-0.00183964 0.20884841 0.9779463 ]\n", + " [-0.00183964 0.20884841 0.9779463 ]\n", + " [-0.20524866 0.00580307 0.97869265]\n", + " [-0.20524866 0.00580307 0.97869265]\n", + " [-0.01446124 0.19702878 0.98029105]\n", + " [-0.05010266 0.19668974 0.9791848 ]\n", + " [-0.08545073 0.19596793 0.97688011]\n", + " [-0.12029942 0.19486681 0.97342435]\n", + " [-0.1544452 0.19338978 0.96888961]\n", + " [-0.18768535 0.1915385 0.96337283]\n", + " [-0.01461361 0.16288937 0.98653611]\n", + " [-0.05060625 0.16260994 0.98539181]\n", + " [-0.08630213 0.16201386 0.98300735]\n", + " [-0.12149421 0.16110551 0.97943054]\n", + " [-0.15597972 0.1598896 0.97473363]\n", + " [-0.18955833 0.15836938 0.9690133 ]\n", + " [-0.01473929 0.12781212 0.99168887]\n", + " [-0.05101673 0.12759366 0.99051358]\n", + " [-0.08699359 0.12712576 0.98806435]\n", + " [-0.12246151 0.126413 0.98438962]\n", + " [-0.1572181 0.12546054 0.97956221]\n", + " [-0.19106523 0.12427244 0.97367882]\n", + " [-0.01483744 0.09199108 0.99564928]\n", + " [-0.0513315 0.09183551 0.99445026]\n", + " [-0.08752139 0.0914995 0.99195154]\n", + " [-0.12319735 0.09098698 0.9882023 ]\n", + " [-0.15815714 0.09030259 0.98327604]\n", + " [-0.19220433 0.0894502 0.97726975]\n", + " [-0.01490708 0.05562756 0.9983403 ]\n", + " [-0.05154747 0.05553685 0.99712513]\n", + " [-0.08788092 0.05533649 0.99459279]\n", + " [-0.1236965 0.05502916 0.9907931 ]\n", + " [-0.15879197 0.05461804 0.98580017]\n", + " [-0.19297207 0.05410588 0.97971135]\n", + " [-0.01494734 0.0189322 0.99970903]\n", + " [-0.05166195 0.01890777 0.99848562]\n", + " [-0.08806808 0.01884587 0.99593617]\n", + " [-0.12395417 0.01874743 0.99211083]\n", + " [-0.15911791 0.01861357 0.9870841 ]\n", + " [-0.19336467 0.01844527 0.98095356]]\n", + "DEBUG:root:radec2pix: xyfp: [[ -0.167405 31.491388 ]\n", + " [ -0.167405 27.10495943]\n", + " [ -0.167405 22.71853086]\n", + " [ -0.167405 18.33210229]\n", + " [ -0.167405 13.94567372]\n", + " [ -0.167405 9.55924515]\n", + " [ -0.167405 5.17281657]\n", + " [ -0.167405 0.786388 ]\n", + " [ -0.167405 31.491388 ]\n", + " [ -4.55383357 31.491388 ]\n", + " [ -8.94026214 31.491388 ]\n", + " [-13.32669071 31.491388 ]\n", + " [-17.71311928 31.491388 ]\n", + " [-22.09954786 31.491388 ]\n", + " [-26.48597643 31.491388 ]\n", + " [-30.872405 31.491388 ]\n", + " [ -0.167405 0.786388 ]\n", + " [ -4.55383357 0.786388 ]\n", + " [ -8.94026214 0.786388 ]\n", + " [-13.32669071 0.786388 ]\n", + " [-17.71311929 0.786388 ]\n", + " [-22.09954786 0.786388 ]\n", + " [-26.48597643 0.786388 ]\n", + " [-30.872405 0.786388 ]\n", + " [-30.872405 31.491388 ]\n", + " [-30.872405 27.10495943]\n", + " [-30.872405 22.71853086]\n", + " [-30.872405 18.33210229]\n", + " [-30.872405 13.94567371]\n", + " [-30.872405 9.55924514]\n", + " [-30.872405 5.17281657]\n", + " [-30.872405 0.786388 ]\n", + " [ -0.182405 29.578888 ]\n", + " [ -0.182405 24.202888 ]\n", + " [ -0.182405 18.826888 ]\n", + " [ -0.182405 13.450888 ]\n", + " [ -0.182405 8.074888 ]\n", + " [ -0.182405 2.698888 ]\n", + " [ -2.079905 31.476388 ]\n", + " [ -7.455905 31.476388 ]\n", + " [-12.831905 31.476388 ]\n", + " [-18.207905 31.476388 ]\n", + " [-23.583905 31.476388 ]\n", + " [-28.959905 31.476388 ]\n", + " [ -2.079905 0.801388 ]\n", + " [ -7.455905 0.801388 ]\n", + " [-12.831905 0.801388 ]\n", + " [-18.207905 0.801388 ]\n", + " [-23.583905 0.801388 ]\n", + " [-28.959905 0.801388 ]\n", + " [-30.857405 29.578888 ]\n", + " [-30.857405 24.202888 ]\n", + " [-30.857405 18.826888 ]\n", + " [-30.857405 13.450888 ]\n", + " [-30.857405 8.074888 ]\n", + " [-30.857405 2.698888 ]\n", + " [ -0.182405 31.476388 ]\n", + " [ -0.182405 31.476388 ]\n", + " [-30.857405 0.801388 ]\n", + " [-30.857405 0.801388 ]\n", + " [ -2.079905 29.578888 ]\n", + " [ -7.455905 29.578888 ]\n", + " [-12.831905 29.578888 ]\n", + " [-18.207905 29.578888 ]\n", + " [-23.583905 29.578888 ]\n", + " [-28.959905 29.578888 ]\n", + " [ -2.079905 24.202888 ]\n", + " [ -7.455905 24.202888 ]\n", + " [-12.831905 24.202888 ]\n", + " [-18.207905 24.202888 ]\n", + " [-23.583905 24.202888 ]\n", + " [-28.959905 24.202888 ]\n", + " [ -2.079905 18.826888 ]\n", + " [ -7.455905 18.826888 ]\n", + " [-12.831905 18.826888 ]\n", + " [-18.207905 18.826888 ]\n", + " [-23.583905 18.826888 ]\n", + " [-28.959905 18.826888 ]\n", + " [ -2.079905 13.450888 ]\n", + " [ -7.455905 13.450888 ]\n", + " [-12.831905 13.450888 ]\n", + " [-18.207905 13.450888 ]\n", + " [-23.583905 13.450888 ]\n", + " [-28.959905 13.450888 ]\n", + " [ -2.079905 8.074888 ]\n", + " [ -7.455905 8.074888 ]\n", + " [-12.831905 8.074888 ]\n", + " [-18.20790499 8.074888 ]\n", + " [-23.583905 8.074888 ]\n", + " [-28.959905 8.074888 ]\n", + " [ -2.079905 2.698888 ]\n", + " [ -7.455905 2.698888 ]\n", + " [-12.831905 2.698888 ]\n", + " [-18.207905 2.698888 ]\n", + " [-23.583905 2.698888 ]\n", + " [-28.959905 2.698888 ]]\n", + "DEBUG:root:radec2pix: xyfp: [[-32.31281793 -31.43806373]\n", + " [-32.31091541 -27.05163558]\n", + " [-32.30901287 -22.66520742]\n", + " [-32.30711034 -18.27877926]\n", + " [-32.3052078 -13.8923511 ]\n", + " [-32.30330527 -9.50592294]\n", + " [-32.30140274 -5.11949478]\n", + " [-32.2995002 -0.73306663]\n", + " [-32.31281793 -31.43806373]\n", + " [-27.92638978 -31.43996627]\n", + " [-23.53996162 -31.4418688 ]\n", + " [-19.15353346 -31.44377134]\n", + " [-14.7671053 -31.44567387]\n", + " [-10.38067715 -31.44757641]\n", + " [ -5.99424899 -31.44947894]\n", + " [ -1.60782083 -31.45138147]\n", + " [-32.2995002 -0.73306663]\n", + " [-27.91307204 -0.73496916]\n", + " [-23.52664389 -0.73687169]\n", + " [-19.14021573 -0.73877423]\n", + " [-14.75378757 -0.74067676]\n", + " [-10.36735941 -0.74257929]\n", + " [ -5.98093125 -0.74448183]\n", + " [ -1.59450309 -0.74638436]\n", + " [ -1.60782083 -31.45138147]\n", + " [ -1.60591829 -27.06495331]\n", + " [ -1.60401576 -22.67852516]\n", + " [ -1.60211323 -18.292097 ]\n", + " [ -1.60021069 -13.90566884]\n", + " [ -1.59830816 -9.51924068]\n", + " [ -1.59640563 -5.13281252]\n", + " [ -1.59450309 -0.74638436]\n", + " [-32.29698843 -29.52557043]\n", + " [-32.29465669 -24.14957093]\n", + " [-32.29232495 -18.77357144]\n", + " [-32.2899932 -13.39757194]\n", + " [-32.28766146 -8.02157244]\n", + " [-32.28532972 -2.64557295]\n", + " [-30.40031161 -31.42389325]\n", + " [-25.02431212 -31.42622499]\n", + " [-19.64831262 -31.42855673]\n", + " [-14.27231313 -31.43088848]\n", + " [ -8.89631363 -31.43322022]\n", + " [ -3.52031414 -31.43555196]\n", + " [-30.38700689 -0.74889614]\n", + " [-25.01100739 -0.75122788]\n", + " [-19.6350079 -0.75355962]\n", + " [-14.25900841 -0.75589136]\n", + " [ -8.88300892 -0.7582231 ]\n", + " [ -3.50700942 -0.76055484]\n", + " [ -1.62199131 -29.53887515]\n", + " [ -1.61965957 -24.16287565]\n", + " [ -1.61732783 -18.78687616]\n", + " [ -1.61499609 -13.41087666]\n", + " [ -1.61266434 -8.03487716]\n", + " [ -1.6103326 -2.65887768]\n", + " [-32.29781143 -31.42307024]\n", + " [-32.29781143 -31.42307024]\n", + " [ -1.60950959 -0.76137785]\n", + " [ -1.60950959 -0.76137785]\n", + " [-30.3994886 -29.52639343]\n", + " [-25.02348911 -29.52872517]\n", + " [-19.64748962 -29.53105692]\n", + " [-14.27149012 -29.53338866]\n", + " [ -8.89549063 -29.5357204 ]\n", + " [ -3.51949113 -29.53805214]\n", + " [-30.39715686 -24.15039394]\n", + " [-25.02115737 -24.15272568]\n", + " [-19.64515788 -24.15505742]\n", + " [-14.26915838 -24.15738916]\n", + " [ -8.89315889 -24.1597209 ]\n", + " [ -3.51715939 -24.16205264]\n", + " [-30.39482512 -18.77439444]\n", + " [-25.01882563 -18.77672618]\n", + " [-19.64282613 -18.77905793]\n", + " [-14.26682664 -18.78138967]\n", + " [ -8.89082714 -18.78372141]\n", + " [ -3.51482765 -18.78605315]\n", + " [-30.39249338 -13.39839495]\n", + " [-25.01649389 -13.40072669]\n", + " [-19.64049439 -13.40305843]\n", + " [-14.2644949 -13.40539017]\n", + " [ -8.8884954 -13.40772191]\n", + " [ -3.51249591 -13.41005365]\n", + " [-30.39016163 -8.02239545]\n", + " [-25.01416214 -8.02472719]\n", + " [-19.63816265 -8.02705893]\n", + " [-14.26216315 -8.02939068]\n", + " [ -8.88616366 -8.03172242]\n", + " [ -3.51016417 -8.03405416]\n", + " [-30.3878299 -2.64639596]\n", + " [-25.01183041 -2.6487277 ]\n", + " [-19.63583091 -2.65105944]\n", + " [-14.25983141 -2.65339118]\n", + " [ -8.88383191 -2.65572292]\n", + " [ -3.50783243 -2.65805467]]\n", + "DEBUG:root:radec2pix: lng: [ 90.47719648 90.55672682 90.66687597 90.82953968 91.0940213\n", + " 91.5994309 92.9498036 107.65020813 90.47719648 98.38070645\n", + " 105.9767833 113.03909385 119.43357191 125.11472623 130.10200281\n", + " 134.45251944 107.65020813 169.61839319 174.60281853 176.35464905\n", + " 177.24671913 177.78699525 178.149242 178.40898834 134.45251944\n", + " 138.72924775 143.64878868 149.27726033 155.64622183 162.72363484\n", + " 170.38599488 178.40898834 90.53796733 90.66055396 90.85289348\n", + " 91.19818153 91.99914413 95.89819456 93.94516067 103.46269209\n", + " 112.28380041 120.12202419 126.89084824 132.64302298 158.33080444\n", + " 173.44203131 176.15005523 177.27375664 177.8883436 178.27582468\n", + " 136.22925254 141.89402899 148.59312727 156.4003322 165.25344571\n", + " 174.88216618 90.50467598 90.50467598 178.38048842 178.38048842\n", + " 94.19778856 104.29099371 113.55934226 121.68876645 128.61161022\n", + " 134.41785939 95.12656191 107.28679494 118.04349613 127.02097674\n", + " 134.29081962 140.12241992 96.57828818 111.79338073 124.38427646\n", + " 134.09036566 141.4100222 146.95926252 99.16244844 119.20302386\n", + " 133.72701528 143.55240671 150.27503583 155.04314708 105.00164812\n", + " 132.86645918 147.80237126 156.01703787 161.01884636 164.3374646\n", + " 128.29176769 159.89787077 167.9213331 171.39949271 173.32787944\n", + " 174.55097942]\n", + "DEBUG:root:optics_fp: rtanth: [31.53710793 27.15083443 22.76462071 18.37850955 13.99259736 9.60715672\n", + " 5.22337543 0.86680593 31.53710793 31.87457578 32.80044965 34.26706764\n", + " 36.20878157 38.55387546 41.23358186 44.18706537 0.86680593 4.70645911\n", + " 9.05713384 13.4310871 17.81117737 22.19377139 26.57763063 30.96221766\n", + " 44.18706537 41.17129315 38.42050918 35.99551614 33.96616479 32.40686702\n", + " 31.3877559 30.96221766 29.62479828 24.2490533 18.8734536 13.49817273\n", + " 8.12384367 2.75604003 31.59497037 32.40914016 34.06266769 36.44147428\n", + " 39.41445822 42.8581467 2.31847961 7.58192329 12.93825823 18.30612583\n", + " 23.67768384 29.05088524 42.83223469 39.30633844 36.23781045 33.75162698\n", + " 31.98387863 31.05748561 31.52222904 31.52222904 30.94762955 30.94762955\n", + " 29.70218682 30.56681395 32.3147502 34.81319861 37.91407742 41.48250822\n", + " 24.34353743 25.39129827 27.47054774 30.37016151 33.88015908 37.83102431\n", + " 18.99469609 20.32015484 22.86529373 26.27807784 30.26641445 34.63202369\n", + " 13.66718319 15.4564585 18.67659162 22.72731378 27.24058114 32.02140662\n", + " 8.40167037 11.07692547 15.25159806 20.00817233 25.01690288 30.15239046\n", + " 3.49098634 8.0185534 13.1988698 18.49123795 23.82109044 29.16788596]\n", + "DEBUG:root:optics_fp: xyfp: [[ 0.16415906 -31.72847131]\n", + " [ 0.16601788 -27.34204313]\n", + " [ 0.1678767 -22.95561497]\n", + " [ 0.16973552 -18.56918678]\n", + " [ 0.17159434 -14.1827586 ]\n", + " [ 0.17345315 -9.79633043]\n", + " [ 0.17531197 -5.40990225]\n", + " [ 0.17717079 -1.02347407]\n", + " [ 0.16415906 -31.72847131]\n", + " [ 4.55058724 -31.73033014]\n", + " [ 8.93701541 -31.73218895]\n", + " [ 13.32344359 -31.73404778]\n", + " [ 17.70987177 -31.73590659]\n", + " [ 22.09629995 -31.73776541]\n", + " [ 26.48272812 -31.73962422]\n", + " [ 30.8691563 -31.74148305]\n", + " [ 0.17717079 -1.02347407]\n", + " [ 4.56359897 -1.02533289]\n", + " [ 8.95002714 -1.02719171]\n", + " [ 13.33645532 -1.02905053]\n", + " [ 17.7228835 -1.03090935]\n", + " [ 22.10931168 -1.03276817]\n", + " [ 26.49573986 -1.03462699]\n", + " [ 30.88216803 -1.0364858 ]\n", + " [ 30.8691563 -31.74148305]\n", + " [ 30.87101512 -27.35505487]\n", + " [ 30.87287394 -22.96862669]\n", + " [ 30.87473276 -18.58219851]\n", + " [ 30.87659158 -14.19577034]\n", + " [ 30.8784504 -9.80934216]\n", + " [ 30.88030922 -5.42291398]\n", + " [ 30.88216803 -1.0364858 ]\n", + " [ 0.17996951 -29.81597784]\n", + " [ 0.18224768 -24.43997833]\n", + " [ 0.18452584 -19.06397881]\n", + " [ 0.18680401 -13.6879793 ]\n", + " [ 0.18908217 -8.31197977]\n", + " [ 0.19136034 -2.93598025]\n", + " [ 2.07666524 -31.71428177]\n", + " [ 7.45266476 -31.71655993]\n", + " [ 12.82866428 -31.7188381 ]\n", + " [ 18.2046638 -31.72111627]\n", + " [ 23.58066331 -31.72339443]\n", + " [ 28.95666283 -31.7256726 ]\n", + " [ 2.08966426 -1.03928452]\n", + " [ 7.46566378 -1.04156269]\n", + " [ 12.8416633 -1.04384085]\n", + " [ 18.21766282 -1.04611902]\n", + " [ 23.59366233 -1.04839718]\n", + " [ 28.96966185 -1.05067535]\n", + " [ 30.85496675 -29.82897686]\n", + " [ 30.85724492 -24.45297735]\n", + " [ 30.85952308 -19.07697783]\n", + " [ 30.86180126 -13.70097831]\n", + " [ 30.86407941 -8.32497879]\n", + " [ 30.86635759 -2.94897928]\n", + " [ 0.17916541 -31.71347767]\n", + " [ 0.17916541 -31.71347767]\n", + " [ 30.86716168 -1.05147945]\n", + " [ 30.86716168 -1.05147945]\n", + " [ 2.07746934 -29.81678193]\n", + " [ 7.45346886 -29.8190601 ]\n", + " [ 12.82946837 -29.82133827]\n", + " [ 18.20546789 -29.82361643]\n", + " [ 23.58146741 -29.82589461]\n", + " [ 28.95746693 -29.82817277]\n", + " [ 2.07974751 -24.44078242]\n", + " [ 7.45574702 -24.44306058]\n", + " [ 12.83174654 -24.44533875]\n", + " [ 18.20774606 -24.44761692]\n", + " [ 23.58374558 -24.44989508]\n", + " [ 28.95974509 -24.45217325]\n", + " [ 2.08202567 -19.0647829 ]\n", + " [ 7.45802519 -19.06706107]\n", + " [ 12.83402471 -19.06933924]\n", + " [ 18.21002422 -19.0716174 ]\n", + " [ 23.58602374 -19.07389557]\n", + " [ 28.96202325 -19.07617373]\n", + " [ 2.08430384 -13.68878339]\n", + " [ 7.46030335 -13.69106155]\n", + " [ 12.83630287 -13.69333972]\n", + " [ 18.21230239 -13.69561789]\n", + " [ 23.58830191 -13.69789605]\n", + " [ 28.96430143 -13.70017422]\n", + " [ 2.086582 -8.31278387]\n", + " [ 7.46258152 -8.31506203]\n", + " [ 12.83858103 -8.3173402 ]\n", + " [ 18.21458055 -8.31961837]\n", + " [ 23.59058007 -8.32189653]\n", + " [ 28.96657959 -8.3241747 ]\n", + " [ 2.08886017 -2.93678435]\n", + " [ 7.46485969 -2.93906252]\n", + " [ 12.8408592 -2.94134068]\n", + " [ 18.21685872 -2.94361885]\n", + " [ 23.59285824 -2.94589701]\n", + " [ 28.96885776 -2.94817518]]\n", + "DEBUG:root:optics_fp: xyfp shape: (96, 2)\n", + "DEBUG:root:radec2pix: lat: [77.93927193 79.54395482 81.18055575 82.84390632 84.52894038 86.23049276\n", + " 87.9428694 89.64907294 77.93927193 77.81611283 77.48163499 76.95619116\n", + " 76.26808809 75.44881244 74.52941663 73.53851291 89.64907294 88.14278148\n", + " 86.44266427 84.74397225 83.05883421 81.39378264 79.75434117 78.14585205\n", + " 73.53851291 74.55039439 75.49464441 76.34256389 77.06256929 77.62200189\n", + " 77.99067226 78.14585205 78.63460262 80.62342084 82.65501815 84.72002626\n", + " 86.80886799 88.90945013 77.91780497 77.62268078 77.02911929 76.18620636\n", + " 75.15153709 73.98133314 89.07797965 87.01823413 84.93466191 82.86963733\n", + " 80.83566227 78.84284498 73.98994449 75.188461 76.25722019 77.13921802\n", + " 77.77469141 78.11085607 77.94465092 77.94465092 78.15114253 78.15114253\n", + " 78.60576152 78.28926489 77.65557547 76.7612779 75.67077293 74.44486167\n", + " 80.58736145 80.19458487 79.42244991 78.35883667 77.09292697 75.69943663\n", + " 82.60788147 82.10171615 81.13877773 79.86296648 78.39628485 76.82509319\n", + " 84.6534244 83.96086026 82.72578935 81.19023674 79.50664486 77.76043854\n", + " 86.6984902 85.65438612 84.03898568 82.21913056 80.33294013 78.43884558\n", + " 88.61780046 86.84637931 84.83282934 82.79823023 80.78132572 78.79952798]\n", + "DEBUG:root:optics_fp: cphi: [0.00780224 0.0090627 0.01080888 0.01338846 0.01758501 0.02561216\n", + " 0.04710747 0.28386977 0.00780224 0.14533491 0.27496322 0.39120201\n", + " 0.49136628 0.57525223 0.64424749 0.70045521 0.28386977 0.98428319\n", + " 0.99578049 0.99808345 0.99891062 0.99929852 0.9995109 0.99963964\n", + " 0.70045521 0.75176312 0.80558693 0.85985876 0.91123211 0.95507721\n", + " 0.98608706 0.99963964 0.00881221 0.01076578 0.01383213 0.0193404\n", + " 0.03213503 0.09472286 0.06831973 0.23248256 0.37902375 0.50180626\n", + " 0.60035228 0.67755053 0.93102393 0.99375313 0.9978592 0.99893119\n", + " 0.99936126 0.99957574 0.72226117 0.78705016 0.85369562 0.91657981\n", + " 0.96723916 0.99609029 0.00828177 0.00828177 0.99962616 0.99962616\n", + " 0.07267344 0.24649478 0.39952529 0.52527664 0.62411014 0.70001939\n", + " 0.08867076 0.29673788 0.46997825 0.60212258 0.69841939 0.76758588\n", + " 0.11364014 0.37079245 0.56463565 0.69588651 0.78180916 0.83848868\n", + " 0.15793745 0.48747001 0.6912696 0.80460719 0.86865107 0.90684836\n", + " 0.25692034 0.68020319 0.84650539 0.91395454 0.94586289 0.96305996\n", + " 0.61832382 0.93964081 0.97815648 0.98893108 0.99334495 0.99556615]\n", + "DEBUG:root:radec2pix: ccdpx: [[-4.45000000e+01 -4.99999838e-01]\n", + " [-4.45000000e+01 2.91928571e+02]\n", + " [-4.45000000e+01 5.84357142e+02]\n", + " [-4.45000000e+01 8.76785714e+02]\n", + " [-4.45000000e+01 1.16921429e+03]\n", + " [-4.45000000e+01 1.46164286e+03]\n", + " [-4.45000000e+01 1.75407143e+03]\n", + " [-4.45000001e+01 2.04650000e+03]\n", + " [-4.45000000e+01 -4.99999838e-01]\n", + " [ 2.47928571e+02 -5.00000127e-01]\n", + " [ 5.40357143e+02 -4.99999855e-01]\n", + " [ 8.32785714e+02 -4.99999742e-01]\n", + " [ 1.12521429e+03 -4.99999752e-01]\n", + " [ 1.41764286e+03 -5.00000255e-01]\n", + " [ 1.71007143e+03 -4.99999843e-01]\n", + " [ 2.00250000e+03 -5.00000108e-01]\n", + " [-4.45000001e+01 2.04650000e+03]\n", + " [ 2.47928572e+02 2.04650000e+03]\n", + " [ 5.40357143e+02 2.04650000e+03]\n", + " [ 8.32785714e+02 2.04650000e+03]\n", + " [ 1.12521429e+03 2.04650000e+03]\n", + " [ 1.41764286e+03 2.04650000e+03]\n", + " [ 1.71007143e+03 2.04650000e+03]\n", + " [ 2.00250000e+03 2.04650000e+03]\n", + " [ 2.00250000e+03 -5.00000108e-01]\n", + " [ 2.00250000e+03 2.91928571e+02]\n", + " [ 2.00250000e+03 5.84357143e+02]\n", + " [ 2.00250000e+03 8.76785714e+02]\n", + " [ 2.00250000e+03 1.16921429e+03]\n", + " [ 2.00250000e+03 1.46164286e+03]\n", + " [ 2.00250000e+03 1.75407143e+03]\n", + " [ 2.00250000e+03 2.04650000e+03]\n", + " [-4.35000000e+01 1.27000000e+02]\n", + " [-4.35000000e+01 4.85400000e+02]\n", + " [-4.35000000e+01 8.43800000e+02]\n", + " [-4.35000000e+01 1.20220000e+03]\n", + " [-4.35000000e+01 1.56060000e+03]\n", + " [-4.35000000e+01 1.91900000e+03]\n", + " [ 8.30000000e+01 5.00000282e-01]\n", + " [ 4.41400000e+02 4.99999845e-01]\n", + " [ 7.99800000e+02 4.99999800e-01]\n", + " [ 1.15820000e+03 4.99999731e-01]\n", + " [ 1.51660000e+03 5.00000238e-01]\n", + " [ 1.87500000e+03 4.99999813e-01]\n", + " [ 8.30000000e+01 2.04550000e+03]\n", + " [ 4.41400000e+02 2.04550000e+03]\n", + " [ 7.99800000e+02 2.04550000e+03]\n", + " [ 1.15820000e+03 2.04550000e+03]\n", + " [ 1.51660000e+03 2.04550000e+03]\n", + " [ 1.87500000e+03 2.04550000e+03]\n", + " [ 2.00150000e+03 1.27000000e+02]\n", + " [ 2.00150000e+03 4.85400000e+02]\n", + " [ 2.00150000e+03 8.43800000e+02]\n", + " [ 2.00150000e+03 1.20220000e+03]\n", + " [ 2.00150000e+03 1.56060000e+03]\n", + " [ 2.00150000e+03 1.91900000e+03]\n", + " [-4.35000000e+01 5.00000147e-01]\n", + " [-4.35000000e+01 5.00000147e-01]\n", + " [ 2.00150000e+03 2.04550000e+03]\n", + " [ 2.00150000e+03 2.04550000e+03]\n", + " [ 8.30000000e+01 1.27000000e+02]\n", + " [ 4.41400000e+02 1.27000000e+02]\n", + " [ 7.99800000e+02 1.27000000e+02]\n", + " [ 1.15820000e+03 1.27000000e+02]\n", + " [ 1.51660000e+03 1.27000000e+02]\n", + " [ 1.87500000e+03 1.27000000e+02]\n", + " [ 8.30000000e+01 4.85400000e+02]\n", + " [ 4.41400000e+02 4.85400000e+02]\n", + " [ 7.99800000e+02 4.85400000e+02]\n", + " [ 1.15820000e+03 4.85400000e+02]\n", + " [ 1.51660000e+03 4.85400000e+02]\n", + " [ 1.87500000e+03 4.85400000e+02]\n", + " [ 8.30000000e+01 8.43800000e+02]\n", + " [ 4.41400000e+02 8.43800000e+02]\n", + " [ 7.99800000e+02 8.43800000e+02]\n", + " [ 1.15820000e+03 8.43800000e+02]\n", + " [ 1.51660000e+03 8.43800000e+02]\n", + " [ 1.87500000e+03 8.43800000e+02]\n", + " [ 8.30000000e+01 1.20220000e+03]\n", + " [ 4.41400000e+02 1.20220000e+03]\n", + " [ 7.99800000e+02 1.20220000e+03]\n", + " [ 1.15820000e+03 1.20220000e+03]\n", + " [ 1.51660000e+03 1.20220000e+03]\n", + " [ 1.87500000e+03 1.20220000e+03]\n", + " [ 8.30000000e+01 1.56060000e+03]\n", + " [ 4.41400000e+02 1.56060000e+03]\n", + " [ 7.99800000e+02 1.56060000e+03]\n", + " [ 1.15820000e+03 1.56060000e+03]\n", + " [ 1.51660000e+03 1.56060000e+03]\n", + " [ 1.87500000e+03 1.56060000e+03]\n", + " [ 8.30000000e+01 1.91900000e+03]\n", + " [ 4.41400000e+02 1.91900000e+03]\n", + " [ 7.99800000e+02 1.91900000e+03]\n", + " [ 1.15820000e+03 1.91900000e+03]\n", + " [ 1.51660000e+03 1.91900000e+03]\n", + " [ 1.87500000e+03 1.91900000e+03]]\n", + "DEBUG:root:optics_fp: sphi: [-0.99996956 -0.99995893 -0.99994158 -0.99991037 -0.99984537 -0.99967195\n", + " -0.99888983 -0.95886284 -0.99996956 -0.98938252 -0.96145475 -0.92030483\n", + " -0.87095303 -0.81797608 -0.76481709 -0.71369637 -0.95886284 -0.17659731\n", + " -0.09176722 -0.06188241 -0.04666441 -0.03744961 -0.03127246 -0.02684394\n", + " -0.71369637 -0.65943324 -0.59247759 -0.51053198 -0.41189324 -0.2963571\n", + " -0.16622968 -0.02684394 -0.99996117 -0.99994205 -0.99990433 -0.99981296\n", + " -0.99948354 -0.99550368 -0.99766348 -0.97260056 -0.92538694 -0.86498004\n", + " -0.79973567 -0.73547623 -0.36495814 -0.11160071 -0.06539891 -0.04622212\n", + " -0.0357361 -0.02912641 -0.69162042 -0.616889 -0.5207723 -0.39985178\n", + " -0.2538669 -0.08834096 -0.99996571 -0.99996571 -0.02734129 -0.02734129\n", + " -0.99735579 -0.96914412 -0.91672217 -0.85093152 -0.78133638 -0.71412384\n", + " -0.99606099 -0.95495897 -0.882678 -0.79840366 -0.71568873 -0.64094611\n", + " -0.99352198 -0.92871576 -0.82534028 -0.71815177 -0.62351779 -0.54491901\n", + " -0.98744912 -0.87313973 -0.72259694 -0.59380744 -0.49542438 -0.42145706\n", + " -0.96643258 -0.73302362 -0.53238015 -0.40581658 -0.32456648 -0.26928704\n", + " -0.78592344 -0.34216247 -0.20786992 -0.14837557 -0.11517726 -0.094064 ]\n", + "DEBUG:root:radec2pix: ccdpx: [[-4.44999997e+01 -4.99999751e-01]\n", + " [-4.45000003e+01 2.91928571e+02]\n", + " [-4.45000000e+01 5.84357143e+02]\n", + " [-4.44999999e+01 8.76785714e+02]\n", + " [-4.44999999e+01 1.16921429e+03]\n", + " [-4.44999999e+01 1.46164286e+03]\n", + " [-4.45000001e+01 1.75407143e+03]\n", + " [-4.45000000e+01 2.04650000e+03]\n", + " [-4.44999997e+01 -4.99999751e-01]\n", + " [ 2.47928571e+02 -5.00000271e-01]\n", + " [ 5.40357143e+02 -4.99999959e-01]\n", + " [ 8.32785714e+02 -5.00000035e-01]\n", + " [ 1.12521429e+03 -5.00000130e-01]\n", + " [ 1.41764286e+03 -5.00000295e-01]\n", + " [ 1.71007143e+03 -5.00000131e-01]\n", + " [ 2.00250000e+03 -5.00000000e-01]\n", + " [-4.45000000e+01 2.04650000e+03]\n", + " [ 2.47928571e+02 2.04650000e+03]\n", + " [ 5.40357143e+02 2.04650000e+03]\n", + " [ 8.32785714e+02 2.04650000e+03]\n", + " [ 1.12521429e+03 2.04650000e+03]\n", + " [ 1.41764286e+03 2.04650000e+03]\n", + " [ 1.71007143e+03 2.04650000e+03]\n", + " [ 2.00250000e+03 2.04650000e+03]\n", + " [ 2.00250000e+03 -5.00000000e-01]\n", + " [ 2.00250000e+03 2.91928571e+02]\n", + " [ 2.00250000e+03 5.84357143e+02]\n", + " [ 2.00250000e+03 8.76785714e+02]\n", + " [ 2.00250000e+03 1.16921429e+03]\n", + " [ 2.00250000e+03 1.46164286e+03]\n", + " [ 2.00250000e+03 1.75407143e+03]\n", + " [ 2.00250000e+03 2.04650000e+03]\n", + " [-4.35000003e+01 1.27000000e+02]\n", + " [-4.35000001e+01 4.85400000e+02]\n", + " [-4.35000003e+01 8.43800000e+02]\n", + " [-4.34999997e+01 1.20220000e+03]\n", + " [-4.34999997e+01 1.56060000e+03]\n", + " [-4.35000002e+01 1.91900000e+03]\n", + " [ 8.29999999e+01 4.99999945e-01]\n", + " [ 4.41400000e+02 4.99999943e-01]\n", + " [ 7.99800000e+02 5.00000147e-01]\n", + " [ 1.15820000e+03 4.99999799e-01]\n", + " [ 1.51660000e+03 5.00000078e-01]\n", + " [ 1.87500000e+03 4.99999710e-01]\n", + " [ 8.30000000e+01 2.04550000e+03]\n", + " [ 4.41400000e+02 2.04550000e+03]\n", + " [ 7.99800000e+02 2.04550000e+03]\n", + " [ 1.15820000e+03 2.04550000e+03]\n", + " [ 1.51660000e+03 2.04550000e+03]\n", + " [ 1.87500000e+03 2.04550000e+03]\n", + " [ 2.00150000e+03 1.27000000e+02]\n", + " [ 2.00150000e+03 4.85400000e+02]\n", + " [ 2.00150000e+03 8.43800000e+02]\n", + " [ 2.00150000e+03 1.20220000e+03]\n", + " [ 2.00150000e+03 1.56060000e+03]\n", + " [ 2.00150000e+03 1.91900000e+03]\n", + " [-4.34999998e+01 5.00000241e-01]\n", + " [-4.34999998e+01 5.00000241e-01]\n", + " [ 2.00150000e+03 2.04550000e+03]\n", + " [ 2.00150000e+03 2.04550000e+03]\n", + " [ 8.30000001e+01 1.27000000e+02]\n", + " [ 4.41400000e+02 1.27000000e+02]\n", + " [ 7.99800000e+02 1.27000000e+02]\n", + " [ 1.15820000e+03 1.27000000e+02]\n", + " [ 1.51660000e+03 1.27000000e+02]\n", + " [ 1.87500000e+03 1.27000000e+02]\n", + " [ 8.30000000e+01 4.85400000e+02]\n", + " [ 4.41400000e+02 4.85400000e+02]\n", + " [ 7.99800000e+02 4.85400000e+02]\n", + " [ 1.15820000e+03 4.85400000e+02]\n", + " [ 1.51660000e+03 4.85400000e+02]\n", + " [ 1.87500000e+03 4.85400000e+02]\n", + " [ 8.30000001e+01 8.43800000e+02]\n", + " [ 4.41400000e+02 8.43800000e+02]\n", + " [ 7.99800000e+02 8.43800000e+02]\n", + " [ 1.15820000e+03 8.43800000e+02]\n", + " [ 1.51660000e+03 8.43800000e+02]\n", + " [ 1.87500000e+03 8.43800000e+02]\n", + " [ 8.30000001e+01 1.20220000e+03]\n", + " [ 4.41400000e+02 1.20220000e+03]\n", + " [ 7.99800000e+02 1.20220000e+03]\n", + " [ 1.15820000e+03 1.20220000e+03]\n", + " [ 1.51660000e+03 1.20220000e+03]\n", + " [ 1.87500000e+03 1.20220000e+03]\n", + " [ 8.30000002e+01 1.56060000e+03]\n", + " [ 4.41400000e+02 1.56060000e+03]\n", + " [ 7.99800000e+02 1.56060000e+03]\n", + " [ 1.15820000e+03 1.56060000e+03]\n", + " [ 1.51660000e+03 1.56060000e+03]\n", + " [ 1.87500000e+03 1.56060000e+03]\n", + " [ 8.29999999e+01 1.91900000e+03]\n", + " [ 4.41400000e+02 1.91900000e+03]\n", + " [ 7.99800000e+02 1.91900000e+03]\n", + " [ 1.15820000e+03 1.91900000e+03]\n", + " [ 1.51660000e+03 1.91900000e+03]\n", + " [ 1.87500000e+03 1.91900000e+03]]\n", + "DEBUG:root:radec2pix: fitpx: [[2135.5 4155.49999984]\n", + " [2135.5 3863.07142868]\n", + " [2135.5 3570.64285754]\n", + " [2135.5 3278.21428588]\n", + " [2135.5 2985.78571458]\n", + " [2135.5 2693.35714314]\n", + " [2135.5 2400.92857131]\n", + " [2135.50000005 2108.49999975]\n", + " [2135.5 4155.49999984]\n", + " [1843.07142855 4155.50000013]\n", + " [1550.64285718 4155.49999985]\n", + " [1258.21428582 4155.49999974]\n", + " [ 965.78571443 4155.49999975]\n", + " [ 673.35714268 4155.50000026]\n", + " [ 380.92857156 4155.49999984]\n", + " [ 88.49999989 4155.50000011]\n", + " [2135.50000005 2108.49999975]\n", + " [1843.07142845 2108.50000002]\n", + " [1550.64285702 2108.50000001]\n", + " [1258.21428598 2108.49999998]\n", + " [ 965.78571394 2108.50000002]\n", + " [ 673.35714284 2108.5 ]\n", + " [ 380.92857156 2108.5 ]\n", + " [ 88.49999977 2108.50000001]\n", + " [ 88.49999989 4155.50000011]\n", + " [ 88.49999981 3863.07142874]\n", + " [ 88.49999988 3570.64285723]\n", + " [ 88.49999983 3278.21428582]\n", + " [ 88.5000001 2985.78571424]\n", + " [ 88.50000005 2693.35714284]\n", + " [ 88.49999995 2400.92857144]\n", + " [ 88.49999977 2108.50000001]\n", + " [2134.5 4028.00000026]\n", + " [2134.5 3669.59999996]\n", + " [2134.5 3311.20000006]\n", + " [2134.5 2952.80000018]\n", + " [2134.50000001 2594.39999977]\n", + " [2134.49999998 2236.00000029]\n", + " [2008.00000002 4154.49999972]\n", + " [1649.59999996 4154.50000015]\n", + " [1291.19999992 4154.5000002 ]\n", + " [ 932.79999984 4154.50000027]\n", + " [ 574.40000018 4154.49999976]\n", + " [ 215.99999983 4154.50000019]\n", + " [2007.99999997 2109.50000001]\n", + " [1649.60000009 2109.49999999]\n", + " [1291.20000024 2109.49999998]\n", + " [ 932.80000011 2109.5 ]\n", + " [ 574.40000007 2109.5 ]\n", + " [ 216.00000022 2109.49999999]\n", + " [ 89.50000011 4027.99999989]\n", + " [ 89.49999997 3669.60000003]\n", + " [ 89.49999978 3311.20000014]\n", + " [ 89.49999974 2952.80000012]\n", + " [ 89.49999998 2594.4 ]\n", + " [ 89.50000005 2236. ]\n", + " [2134.5 4154.49999985]\n", + " [2134.5 4154.49999985]\n", + " [ 89.49999982 2109.5 ]\n", + " [ 89.49999982 2109.5 ]\n", + " [2007.99999998 4028.00000026]\n", + " [1649.60000006 4027.99999978]\n", + " [1291.19999989 4028.00000025]\n", + " [ 932.8000001 4027.99999984]\n", + " [ 574.40000016 4027.9999998 ]\n", + " [ 215.99999996 4028.00000004]\n", + " [2007.99999998 3669.60000024]\n", + " [1649.59999998 3669.60000005]\n", + " [1291.20000009 3669.59999982]\n", + " [ 932.79999983 3669.60000022]\n", + " [ 574.39999986 3669.60000015]\n", + " [ 216.00000022 3669.59999982]\n", + " [2007.99999999 3311.20000008]\n", + " [1649.59999996 3311.2000001 ]\n", + " [1291.19999979 3311.20000031]\n", + " [ 932.80000004 3311.19999996]\n", + " [ 574.39999992 3311.20000007]\n", + " [ 216.00000024 3311.19999984]\n", + " [2008.00000001 2952.79999992]\n", + " [1649.6000001 2952.79999982]\n", + " [1291.20000006 2952.79999994]\n", + " [ 932.79999988 2952.80000009]\n", + " [ 574.39999983 2952.8000001 ]\n", + " [ 215.99999999 2952.8 ]\n", + " [2008.00000001 2594.39999996]\n", + " [1649.60000003 2594.39999997]\n", + " [1291.19999974 2594.40000016]\n", + " [ 932.80000041 2594.39999982]\n", + " [ 574.40000002 2594.39999999]\n", + " [ 215.99999998 2594.40000001]\n", + " [2008.00000001 2235.99999999]\n", + " [1649.59999976 2236.00000009]\n", + " [1291.19999986 2236.00000003]\n", + " [ 932.79999992 2236.00000001]\n", + " [ 574.39999976 2236.00000003]\n", + " [ 216.00000019 2235.99999998]]\n", + "DEBUG:root:make_az_asym: xyp: [[ 0.16415906 -31.72847131]\n", + " [ 0.16601788 -27.34204313]\n", + " [ 0.1678767 -22.95561497]\n", + " [ 0.16973552 -18.56918678]\n", + " [ 0.17159434 -14.1827586 ]\n", + " [ 0.17345315 -9.79633043]\n", + " [ 0.17531197 -5.40990225]\n", + " [ 0.17717079 -1.02347407]\n", + " [ 0.16415906 -31.72847131]\n", + " [ 4.55058724 -31.73033014]\n", + " [ 8.93701541 -31.73218895]\n", + " [ 13.32344359 -31.73404778]\n", + " [ 17.70987177 -31.73590659]\n", + " [ 22.09629995 -31.73776541]\n", + " [ 26.48272812 -31.73962422]\n", + " [ 30.8691563 -31.74148305]\n", + " [ 0.17717079 -1.02347407]\n", + " [ 4.56359897 -1.02533289]\n", + " [ 8.95002714 -1.02719171]\n", + " [ 13.33645532 -1.02905053]\n", + " [ 17.7228835 -1.03090935]\n", + " [ 22.10931168 -1.03276817]\n", + " [ 26.49573986 -1.03462699]\n", + " [ 30.88216803 -1.0364858 ]\n", + " [ 30.8691563 -31.74148305]\n", + " [ 30.87101512 -27.35505487]\n", + " [ 30.87287394 -22.96862669]\n", + " [ 30.87473276 -18.58219851]\n", + " [ 30.87659158 -14.19577034]\n", + " [ 30.8784504 -9.80934216]\n", + " [ 30.88030922 -5.42291398]\n", + " [ 30.88216803 -1.0364858 ]\n", + " [ 0.17996951 -29.81597784]\n", + " [ 0.18224768 -24.43997833]\n", + " [ 0.18452584 -19.06397881]\n", + " [ 0.18680401 -13.6879793 ]\n", + " [ 0.18908217 -8.31197977]\n", + " [ 0.19136034 -2.93598025]\n", + " [ 2.07666524 -31.71428177]\n", + " [ 7.45266476 -31.71655993]\n", + " [ 12.82866428 -31.7188381 ]\n", + " [ 18.2046638 -31.72111627]\n", + " [ 23.58066331 -31.72339443]\n", + " [ 28.95666283 -31.7256726 ]\n", + " [ 2.08966426 -1.03928452]\n", + " [ 7.46566378 -1.04156269]\n", + " [ 12.8416633 -1.04384085]\n", + " [ 18.21766282 -1.04611902]\n", + " [ 23.59366233 -1.04839718]\n", + " [ 28.96966185 -1.05067535]\n", + " [ 30.85496675 -29.82897686]\n", + " [ 30.85724492 -24.45297735]\n", + " [ 30.85952308 -19.07697783]\n", + " [ 30.86180126 -13.70097831]\n", + " [ 30.86407941 -8.32497879]\n", + " [ 30.86635759 -2.94897928]\n", + " [ 0.17916541 -31.71347767]\n", + " [ 0.17916541 -31.71347767]\n", + " [ 30.86716168 -1.05147945]\n", + " [ 30.86716168 -1.05147945]\n", + " [ 2.07746934 -29.81678193]\n", + " [ 7.45346886 -29.8190601 ]\n", + " [ 12.82946837 -29.82133827]\n", + " [ 18.20546789 -29.82361643]\n", + " [ 23.58146741 -29.82589461]\n", + " [ 28.95746693 -29.82817277]\n", + " [ 2.07974751 -24.44078242]\n", + " [ 7.45574702 -24.44306058]\n", + " [ 12.83174654 -24.44533875]\n", + " [ 18.20774606 -24.44761692]\n", + " [ 23.58374558 -24.44989508]\n", + " [ 28.95974509 -24.45217325]\n", + " [ 2.08202567 -19.0647829 ]\n", + " [ 7.45802519 -19.06706107]\n", + " [ 12.83402471 -19.06933924]\n", + " [ 18.21002422 -19.0716174 ]\n", + " [ 23.58602374 -19.07389557]\n", + " [ 28.96202325 -19.07617373]\n", + " [ 2.08430384 -13.68878339]\n", + " [ 7.46030335 -13.69106155]\n", + " [ 12.83630287 -13.69333972]\n", + " [ 18.21230239 -13.69561789]\n", + " [ 23.58830191 -13.69789605]\n", + " [ 28.96430143 -13.70017422]\n", + " [ 2.086582 -8.31278387]\n", + " [ 7.46258152 -8.31506203]\n", + " [ 12.83858103 -8.3173402 ]\n", + " [ 18.21458055 -8.31961837]\n", + " [ 23.59058007 -8.32189653]\n", + " [ 28.96657959 -8.3241747 ]\n", + " [ 2.08886017 -2.93678435]\n", + " [ 7.46485969 -2.93906252]\n", + " [ 12.8408592 -2.94134068]\n", + " [ 18.21685872 -2.94361885]\n", + " [ 23.59285824 -2.94589701]\n", + " [ 28.96885776 -2.94817518]]\n", + "DEBUG:root:fitpix2pix: ccdpx: shape: (96, 2)\n", + "DEBUG:root:make_az_asym: xyp: shape: (96, 2)\n", + "DEBUG:root:fitpix2pix: visCut: True\n", + "DEBUG:root:optics_fp: xyfp: [[ -0.24606 31.536148 ]\n", + " [ -0.24606 27.14971943]\n", + " [ -0.24606 22.76329086]\n", + " [ -0.24606 18.37686229]\n", + " [ -0.24606 13.99043371]\n", + " [ -0.24606 9.60400514]\n", + " [ -0.24606 5.21757658]\n", + " [ -0.24606 0.831148 ]\n", + " [ -0.24606 31.536148 ]\n", + " [ -4.63248857 31.536148 ]\n", + " [ -9.01891714 31.536148 ]\n", + " [-13.40534571 31.536148 ]\n", + " [-17.79177429 31.536148 ]\n", + " [-22.17820286 31.536148 ]\n", + " [-26.56463143 31.536148 ]\n", + " [-30.95106 31.536148 ]\n", + " [ -0.24606 0.831148 ]\n", + " [ -4.63248857 0.831148 ]\n", + " [ -9.01891714 0.831148 ]\n", + " [-13.40534571 0.831148 ]\n", + " [-17.79177429 0.831148 ]\n", + " [-22.17820285 0.831148 ]\n", + " [-26.56463143 0.831148 ]\n", + " [-30.95106 0.831148 ]\n", + " [-30.95106 31.536148 ]\n", + " [-30.95106 27.14971943]\n", + " [-30.95106 22.76329086]\n", + " [-30.95106 18.37686228]\n", + " [-30.95106 13.99043371]\n", + " [-30.95106 9.60400514]\n", + " [-30.95106 5.21757657]\n", + " [-30.95106 0.831148 ]\n", + " [ -0.26106 29.623648 ]\n", + " [ -0.26106 24.247648 ]\n", + " [ -0.26106 18.87164801]\n", + " [ -0.26106 13.495648 ]\n", + " [ -0.26106 8.119648 ]\n", + " [ -0.26106 2.743648 ]\n", + " [ -2.15856 31.521148 ]\n", + " [ -7.53456 31.521148 ]\n", + " [-12.91056 31.521148 ]\n", + " [-18.28656 31.521148 ]\n", + " [-23.66256 31.521148 ]\n", + " [-29.03856 31.521148 ]\n", + " [ -2.15856 0.846148 ]\n", + " [ -7.53456 0.846148 ]\n", + " [-12.91056 0.846148 ]\n", + " [-18.28655999 0.846148 ]\n", + " [-23.66256 0.846148 ]\n", + " [-29.03856 0.846148 ]\n", + " [-30.93606 29.623648 ]\n", + " [-30.93606 24.247648 ]\n", + " [-30.93606 18.871648 ]\n", + " [-30.93606 13.495648 ]\n", + " [-30.93606 8.119648 ]\n", + " [-30.93606 2.743648 ]\n", + " [ -0.26106 31.521148 ]\n", + " [ -0.26106 31.521148 ]\n", + " [-30.93606 0.846148 ]\n", + " [-30.93606 0.846148 ]\n", + " [ -2.15856 29.623648 ]\n", + " [ -7.53456 29.623648 ]\n", + " [-12.91056 29.623648 ]\n", + " [-18.28656 29.623648 ]\n", + " [-23.66256 29.623648 ]\n", + " [-29.03856 29.623648 ]\n", + " [ -2.15856 24.247648 ]\n", + " [ -7.53456 24.247648 ]\n", + " [-12.91056 24.247648 ]\n", + " [-18.28656 24.247648 ]\n", + " [-23.66256 24.247648 ]\n", + " [-29.03856 24.247648 ]\n", + " [ -2.15856 18.871648 ]\n", + " [ -7.53456 18.871648 ]\n", + " [-12.91056 18.871648 ]\n", + " [-18.28656 18.871648 ]\n", + " [-23.66256 18.871648 ]\n", + " [-29.03856 18.871648 ]\n", + " [ -2.15856 13.495648 ]\n", + " [ -7.53456 13.495648 ]\n", + " [-12.91056 13.495648 ]\n", + " [-18.28656 13.495648 ]\n", + " [-23.66256 13.495648 ]\n", + " [-29.03856 13.495648 ]\n", + " [ -2.15856 8.119648 ]\n", + " [ -7.53456 8.119648 ]\n", + " [-12.91056 8.119648 ]\n", + " [-18.28656 8.119648 ]\n", + " [-23.66256 8.119648 ]\n", + " [-29.03856 8.119648 ]\n", + " [ -2.15856 2.743648 ]\n", + " [ -7.53456 2.743648 ]\n", + " [-12.91056 2.743648 ]\n", + " [-18.28656 2.743648 ]\n", + " [-23.66256 2.743648 ]\n", + " [-29.03856 2.743648 ]]\n", + "DEBUG:root:optics_fp: xyfp shape: (96, 2)\n", + "DEBUG:root:radec2pix: fitpx: [[-4.99999744e-01 -4.99999751e-01]\n", + " [-5.00000258e-01 2.91928571e+02]\n", + " [-5.00000005e-01 5.84357143e+02]\n", + " [-4.99999941e-01 8.76785714e+02]\n", + " [-4.99999889e-01 1.16921429e+03]\n", + " [-4.99999948e-01 1.46164286e+03]\n", + " [-5.00000143e-01 1.75407143e+03]\n", + " [-4.99999962e-01 2.04650000e+03]\n", + " [-4.99999744e-01 -4.99999751e-01]\n", + " [ 2.91928571e+02 -5.00000271e-01]\n", + " [ 5.84357143e+02 -4.99999959e-01]\n", + " [ 8.76785714e+02 -5.00000035e-01]\n", + " [ 1.16921429e+03 -5.00000130e-01]\n", + " [ 1.46164286e+03 -5.00000295e-01]\n", + " [ 1.75407143e+03 -5.00000131e-01]\n", + " [ 2.04650000e+03 -5.00000000e-01]\n", + " [-4.99999962e-01 2.04650000e+03]\n", + " [ 2.91928571e+02 2.04650000e+03]\n", + " [ 5.84357143e+02 2.04650000e+03]\n", + " [ 8.76785714e+02 2.04650000e+03]\n", + " [ 1.16921429e+03 2.04650000e+03]\n", + " [ 1.46164286e+03 2.04650000e+03]\n", + " [ 1.75407143e+03 2.04650000e+03]\n", + " [ 2.04650000e+03 2.04650000e+03]\n", + " [ 2.04650000e+03 -5.00000000e-01]\n", + " [ 2.04650000e+03 2.91928571e+02]\n", + " [ 2.04650000e+03 5.84357143e+02]\n", + " [ 2.04650000e+03 8.76785714e+02]\n", + " [ 2.04650000e+03 1.16921429e+03]\n", + " [ 2.04650000e+03 1.46164286e+03]\n", + " [ 2.04650000e+03 1.75407143e+03]\n", + " [ 2.04650000e+03 2.04650000e+03]\n", + " [ 4.99999741e-01 1.27000000e+02]\n", + " [ 4.99999873e-01 4.85400000e+02]\n", + " [ 4.99999712e-01 8.43800000e+02]\n", + " [ 5.00000277e-01 1.20220000e+03]\n", + " [ 5.00000282e-01 1.56060000e+03]\n", + " [ 4.99999780e-01 1.91900000e+03]\n", + " [ 1.27000000e+02 4.99999945e-01]\n", + " [ 4.85400000e+02 4.99999943e-01]\n", + " [ 8.43800000e+02 5.00000147e-01]\n", + " [ 1.20220000e+03 4.99999799e-01]\n", + " [ 1.56060000e+03 5.00000078e-01]\n", + " [ 1.91900000e+03 4.99999710e-01]\n", + " [ 1.27000000e+02 2.04550000e+03]\n", + " [ 4.85400000e+02 2.04550000e+03]\n", + " [ 8.43800000e+02 2.04550000e+03]\n", + " [ 1.20220000e+03 2.04550000e+03]\n", + " [ 1.56060000e+03 2.04550000e+03]\n", + " [ 1.91900000e+03 2.04550000e+03]\n", + " [ 2.04550000e+03 1.27000000e+02]\n", + " [ 2.04550000e+03 4.85400000e+02]\n", + " [ 2.04550000e+03 8.43800000e+02]\n", + " [ 2.04550000e+03 1.20220000e+03]\n", + " [ 2.04550000e+03 1.56060000e+03]\n", + " [ 2.04550000e+03 1.91900000e+03]\n", + " [ 5.00000247e-01 5.00000241e-01]\n", + " [ 5.00000247e-01 5.00000241e-01]\n", + " [ 2.04550000e+03 2.04550000e+03]\n", + " [ 2.04550000e+03 2.04550000e+03]\n", + " [ 1.27000000e+02 1.27000000e+02]\n", + " [ 4.85400000e+02 1.27000000e+02]\n", + " [ 8.43800000e+02 1.27000000e+02]\n", + " [ 1.20220000e+03 1.27000000e+02]\n", + " [ 1.56060000e+03 1.27000000e+02]\n", + " [ 1.91900000e+03 1.27000000e+02]\n", + " [ 1.27000000e+02 4.85400000e+02]\n", + " [ 4.85400000e+02 4.85400000e+02]\n", + " [ 8.43800000e+02 4.85400000e+02]\n", + " [ 1.20220000e+03 4.85400000e+02]\n", + " [ 1.56060000e+03 4.85400000e+02]\n", + " [ 1.91900000e+03 4.85400000e+02]\n", + " [ 1.27000000e+02 8.43800000e+02]\n", + " [ 4.85400000e+02 8.43800000e+02]\n", + " [ 8.43800000e+02 8.43800000e+02]\n", + " [ 1.20220000e+03 8.43800000e+02]\n", + " [ 1.56060000e+03 8.43800000e+02]\n", + " [ 1.91900000e+03 8.43800000e+02]\n", + " [ 1.27000000e+02 1.20220000e+03]\n", + " [ 4.85400000e+02 1.20220000e+03]\n", + " [ 8.43800000e+02 1.20220000e+03]\n", + " [ 1.20220000e+03 1.20220000e+03]\n", + " [ 1.56060000e+03 1.20220000e+03]\n", + " [ 1.91900000e+03 1.20220000e+03]\n", + " [ 1.27000000e+02 1.56060000e+03]\n", + " [ 4.85400000e+02 1.56060000e+03]\n", + " [ 8.43800000e+02 1.56060000e+03]\n", + " [ 1.20220000e+03 1.56060000e+03]\n", + " [ 1.56060000e+03 1.56060000e+03]\n", + " [ 1.91900000e+03 1.56060000e+03]\n", + " [ 1.27000000e+02 1.91900000e+03]\n", + " [ 4.85400000e+02 1.91900000e+03]\n", + " [ 8.43800000e+02 1.91900000e+03]\n", + " [ 1.20220000e+03 1.91900000e+03]\n", + " [ 1.56060000e+03 1.91900000e+03]\n", + " [ 1.91900000e+03 1.91900000e+03]]\n", + "DEBUG:root:fitpix2pix: ccdpx: shape: (96, 2)\n", + "DEBUG:root:fitpix2pix: visCut: True\n", + "DEBUG:root:optics_fp: rtanth: [31.5581844 27.17194416 22.78577643 18.39973306 14.01393083 9.62869923\n", + " 5.24546963 0.89418442 31.5581844 31.89890725 32.82747441 34.29617149\n", + " 36.23938733 38.58549624 41.26583765 44.21967554 0.89418442 4.73506565\n", + " 9.08425224 13.45763509 17.83742574 22.21983534 26.60356968 30.98806655\n", + " 44.21967554 41.20406839 38.45324836 36.02791805 33.99780815 32.43720936\n", + " 31.41616867 30.98806655 29.64590075 24.27020709 18.89468775 13.51955065\n", + " 8.14555257 2.77930847 31.61752824 32.43532389 34.09156981 36.4722193\n", + " 39.44633291 42.89063222 2.34966506 7.60940668 12.96487432 18.33236521\n", + " 23.70371309 29.07678054 42.86493558 39.33911823 36.27027014 33.78315439\n", + " 32.01364237 31.08452713 31.54331756 31.54331756 30.97348847 30.97348847\n", + " 29.72484887 30.59328006 32.34398987 34.84424384 37.94616883 41.5151163\n", + " 24.36657877 25.41873926 27.5008582 30.40205338 33.9127594 37.86381389\n", + " 19.01831838 20.34892081 22.89680053 26.31066557 30.29920003 34.66460262\n", + " 13.69180262 15.48701401 18.70915549 22.76005595 27.27289033 32.05313869\n", + " 8.42835902 11.10942753 15.28411843 20.03975859 25.04760117 30.18237029\n", + " 3.52303344 8.04946636 13.22795543 18.51935347 23.84862372 29.19503391]\n", + "DEBUG:root:radec2pix: xyfp: [[ 0.16415906 -31.72847131]\n", + " [ 0.16601788 -27.34204313]\n", + " [ 0.1678767 -22.95561497]\n", + " [ 0.16973552 -18.56918678]\n", + " [ 0.17159434 -14.1827586 ]\n", + " [ 0.17345315 -9.79633043]\n", + " [ 0.17531197 -5.40990225]\n", + " [ 0.17717079 -1.02347407]\n", + " [ 0.16415906 -31.72847131]\n", + " [ 4.55058724 -31.73033014]\n", + " [ 8.93701541 -31.73218895]\n", + " [ 13.32344359 -31.73404778]\n", + " [ 17.70987177 -31.73590659]\n", + " [ 22.09629995 -31.73776541]\n", + " [ 26.48272812 -31.73962422]\n", + " [ 30.8691563 -31.74148305]\n", + " [ 0.17717079 -1.02347407]\n", + " [ 4.56359897 -1.02533289]\n", + " [ 8.95002714 -1.02719171]\n", + " [ 13.33645532 -1.02905053]\n", + " [ 17.7228835 -1.03090935]\n", + " [ 22.10931168 -1.03276817]\n", + " [ 26.49573986 -1.03462699]\n", + " [ 30.88216803 -1.0364858 ]\n", + " [ 30.8691563 -31.74148305]\n", + " [ 30.87101512 -27.35505487]\n", + " [ 30.87287394 -22.96862669]\n", + " [ 30.87473276 -18.58219851]\n", + " [ 30.87659158 -14.19577034]\n", + " [ 30.8784504 -9.80934216]\n", + " [ 30.88030922 -5.42291398]\n", + " [ 30.88216803 -1.0364858 ]\n", + " [ 0.17996951 -29.81597784]\n", + " [ 0.18224768 -24.43997833]\n", + " [ 0.18452584 -19.06397881]\n", + " [ 0.18680401 -13.6879793 ]\n", + " [ 0.18908217 -8.31197977]\n", + " [ 0.19136034 -2.93598025]\n", + " [ 2.07666524 -31.71428177]\n", + " [ 7.45266476 -31.71655993]\n", + " [ 12.82866428 -31.7188381 ]\n", + " [ 18.2046638 -31.72111627]\n", + " [ 23.58066331 -31.72339443]\n", + " [ 28.95666283 -31.7256726 ]\n", + " [ 2.08966426 -1.03928452]\n", + " [ 7.46566378 -1.04156269]\n", + " [ 12.8416633 -1.04384085]\n", + " [ 18.21766282 -1.04611902]\n", + " [ 23.59366233 -1.04839718]\n", + " [ 28.96966185 -1.05067535]\n", + " [ 30.85496675 -29.82897686]\n", + " [ 30.85724492 -24.45297735]\n", + " [ 30.85952308 -19.07697783]\n", + " [ 30.86180126 -13.70097831]\n", + " [ 30.86407941 -8.32497879]\n", + " [ 30.86635759 -2.94897928]\n", + " [ 0.17916541 -31.71347767]\n", + " [ 0.17916541 -31.71347767]\n", + " [ 30.86716168 -1.05147945]\n", + " [ 30.86716168 -1.05147945]\n", + " [ 2.07746934 -29.81678193]\n", + " [ 7.45346886 -29.8190601 ]\n", + " [ 12.82946837 -29.82133827]\n", + " [ 18.20546789 -29.82361643]\n", + " [ 23.58146741 -29.82589461]\n", + " [ 28.95746693 -29.82817277]\n", + " [ 2.07974751 -24.44078242]\n", + " [ 7.45574702 -24.44306058]\n", + " [ 12.83174654 -24.44533875]\n", + " [ 18.20774606 -24.44761692]\n", + " [ 23.58374558 -24.44989508]\n", + " [ 28.95974509 -24.45217325]\n", + " [ 2.08202567 -19.0647829 ]\n", + " [ 7.45802519 -19.06706107]\n", + " [ 12.83402471 -19.06933924]\n", + " [ 18.21002422 -19.0716174 ]\n", + " [ 23.58602374 -19.07389557]\n", + " [ 28.96202325 -19.07617373]\n", + " [ 2.08430384 -13.68878339]\n", + " [ 7.46030335 -13.69106155]\n", + " [ 12.83630287 -13.69333972]\n", + " [ 18.21230239 -13.69561789]\n", + " [ 23.58830191 -13.69789605]\n", + " [ 28.96430143 -13.70017422]\n", + " [ 2.086582 -8.31278387]\n", + " [ 7.46258152 -8.31506203]\n", + " [ 12.83858103 -8.3173402 ]\n", + " [ 18.21458055 -8.31961837]\n", + " [ 23.59058007 -8.32189653]\n", + " [ 28.96657959 -8.3241747 ]\n", + " [ 2.08886017 -2.93678435]\n", + " [ 7.46485969 -2.93906252]\n", + " [ 12.8408592 -2.94134068]\n", + " [ 18.21685872 -2.94361885]\n", + " [ 23.59285824 -2.94589701]\n", + " [ 28.96885776 -2.94817518]]\n", + "DEBUG:root:radec2pix: xyfp Shape: (96, 2)\n", + "DEBUG:root:optics_fp: cphi: [-0.00832855 -0.00971656 -0.01163892 -0.01447769 -0.01909311 -0.02791171\n", + " -0.05146104 -0.30320505 -0.00832855 -0.1457499 -0.27524782 -0.39135911\n", + " -0.49141415 -0.57521551 -0.64415037 -0.70031796 -0.30320505 -0.98362937\n", + " -0.99556659 -0.99797672 -0.99884564 -0.99925418 -0.99947834 -0.99961448\n", + " -0.70031796 -0.75160095 -0.80539882 -0.85964958 -0.91101663 -0.95488339\n", + " -0.98595524 -0.99961448 -0.00938916 -0.01152859 -0.01488525 -0.02091069\n", + " -0.03488457 -0.10276119 -0.06880165 -0.23281216 -0.37919455 -0.50184326\n", + " -0.60029249 -0.67742851 -0.92933123 -0.99345681 -0.99774332 -0.99886819\n", + " -0.99932092 -0.99954725 -0.72211351 -0.78687071 -0.8534883 -0.91636505\n", + " -0.96706125 -0.99601335 -0.00880814 -0.00880814 -0.99960055 -0.99960055\n", + " -0.0731997 -0.24684669 -0.39969867 -0.52530483 -0.62403795 -0.69988601\n", + " -0.08935604 -0.29715482 -0.47014172 -0.60210737 -0.6983006 -0.76741609\n", + " -0.11456071 -0.37126057 -0.56474055 -0.69579203 -0.78162959 -0.83828312\n", + " -0.15923419 -0.48790573 -0.69122322 -0.80440059 -0.86841556 -0.90662579\n", + " -0.25884683 -0.68029192 -0.84621522 -0.91366637 -0.94562561 -0.96286848\n", + " -0.61966627 -0.93908148 -0.97786122 -0.98875506 -0.9932273 -0.99548108]\n", + "DEBUG:root:make_az_asym: xyp: [[ -0.24606 31.536148 ]\n", + " [ -0.24606 27.14971943]\n", + " [ -0.24606 22.76329086]\n", + " [ -0.24606 18.37686229]\n", + " [ -0.24606 13.99043371]\n", + " [ -0.24606 9.60400514]\n", + " [ -0.24606 5.21757658]\n", + " [ -0.24606 0.831148 ]\n", + " [ -0.24606 31.536148 ]\n", + " [ -4.63248857 31.536148 ]\n", + " [ -9.01891714 31.536148 ]\n", + " [-13.40534571 31.536148 ]\n", + " [-17.79177429 31.536148 ]\n", + " [-22.17820286 31.536148 ]\n", + " [-26.56463143 31.536148 ]\n", + " [-30.95106 31.536148 ]\n", + " [ -0.24606 0.831148 ]\n", + " [ -4.63248857 0.831148 ]\n", + " [ -9.01891714 0.831148 ]\n", + " [-13.40534571 0.831148 ]\n", + " [-17.79177429 0.831148 ]\n", + " [-22.17820285 0.831148 ]\n", + " [-26.56463143 0.831148 ]\n", + " [-30.95106 0.831148 ]\n", + " [-30.95106 31.536148 ]\n", + " [-30.95106 27.14971943]\n", + " [-30.95106 22.76329086]\n", + " [-30.95106 18.37686228]\n", + " [-30.95106 13.99043371]\n", + " [-30.95106 9.60400514]\n", + " [-30.95106 5.21757657]\n", + " [-30.95106 0.831148 ]\n", + " [ -0.26106 29.623648 ]\n", + " [ -0.26106 24.247648 ]\n", + " [ -0.26106 18.87164801]\n", + " [ -0.26106 13.495648 ]\n", + " [ -0.26106 8.119648 ]\n", + " [ -0.26106 2.743648 ]\n", + " [ -2.15856 31.521148 ]\n", + " [ -7.53456 31.521148 ]\n", + " [-12.91056 31.521148 ]\n", + " [-18.28656 31.521148 ]\n", + " [-23.66256 31.521148 ]\n", + " [-29.03856 31.521148 ]\n", + " [ -2.15856 0.846148 ]\n", + " [ -7.53456 0.846148 ]\n", + " [-12.91056 0.846148 ]\n", + " [-18.28655999 0.846148 ]\n", + " [-23.66256 0.846148 ]\n", + " [-29.03856 0.846148 ]\n", + " [-30.93606 29.623648 ]\n", + " [-30.93606 24.247648 ]\n", + " [-30.93606 18.871648 ]\n", + " [-30.93606 13.495648 ]\n", + " [-30.93606 8.119648 ]\n", + " [-30.93606 2.743648 ]\n", + " [ -0.26106 31.521148 ]\n", + " [ -0.26106 31.521148 ]\n", + " [-30.93606 0.846148 ]\n", + " [-30.93606 0.846148 ]\n", + " [ -2.15856 29.623648 ]\n", + " [ -7.53456 29.623648 ]\n", + " [-12.91056 29.623648 ]\n", + " [-18.28656 29.623648 ]\n", + " [-23.66256 29.623648 ]\n", + " [-29.03856 29.623648 ]\n", + " [ -2.15856 24.247648 ]\n", + " [ -7.53456 24.247648 ]\n", + " [-12.91056 24.247648 ]\n", + " [-18.28656 24.247648 ]\n", + " [-23.66256 24.247648 ]\n", + " [-29.03856 24.247648 ]\n", + " [ -2.15856 18.871648 ]\n", + " [ -7.53456 18.871648 ]\n", + " [-12.91056 18.871648 ]\n", + " [-18.28656 18.871648 ]\n", + " [-23.66256 18.871648 ]\n", + " [-29.03856 18.871648 ]\n", + " [ -2.15856 13.495648 ]\n", + " [ -7.53456 13.495648 ]\n", + " [-12.91056 13.495648 ]\n", + " [-18.28656 13.495648 ]\n", + " [-23.66256 13.495648 ]\n", + " [-29.03856 13.495648 ]\n", + " [ -2.15856 8.119648 ]\n", + " [ -7.53456 8.119648 ]\n", + " [-12.91056 8.119648 ]\n", + " [-18.28656 8.119648 ]\n", + " [-23.66256 8.119648 ]\n", + " [-29.03856 8.119648 ]\n", + " [ -2.15856 2.743648 ]\n", + " [ -7.53456 2.743648 ]\n", + " [-12.91056 2.743648 ]\n", + " [-18.28656 2.743648 ]\n", + " [-23.66256 2.743648 ]\n", + " [-29.03856 2.743648 ]]\n", + "DEBUG:root:make_az_asym: xyp: shape: (96, 2)\n", + "DEBUG:root:optics_fp: sphi: [0.99996532 0.99995279 0.99993227 0.99989519 0.99981771 0.99961039\n", + " 0.998675 0.95292534 0.99996532 0.98932147 0.96137331 0.92023804\n", + " 0.87092602 0.8180019 0.76489888 0.71383104 0.95292534 0.18020339\n", + " 0.09405934 0.06358046 0.04803532 0.03861462 0.0322962 0.02776482\n", + " 0.71383104 0.65961808 0.59273329 0.51088414 0.41236963 0.296981\n", + " 0.16700975 0.02776482 0.99995592 0.99993354 0.99988921 0.99978135\n", + " 0.99939135 0.99470606 0.99763036 0.97252172 0.92531697 0.86495858\n", + " 0.79978055 0.73558862 0.36924717 0.1142084 0.06714366 0.04756397\n", + " 0.03684701 0.03008799 0.69177459 0.61711788 0.52111201 0.40034372\n", + " 0.25454379 0.08920432 0.99996121 0.99996121 0.02826205 0.02826205\n", + " 0.9973173 0.96905455 0.91664659 0.85091412 0.78139404 0.71425456\n", + " 0.99599975 0.95482931 0.88259094 0.79841512 0.71580463 0.64114939\n", + " 0.99341625 0.92852872 0.82526851 0.71824331 0.62374288 0.54523519\n", + " 0.98724084 0.87289633 0.72264131 0.59408727 0.49583709 0.42193564\n", + " 0.96591838 0.73294127 0.53284125 0.40646497 0.32525713 0.2699709\n", + " 0.78486541 0.34369459 0.20925449 0.1495441 0.11618746 0.09496005]\n", + "DEBUG:root:mm_to_pix: fitpx: [[0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]]\n", + "DEBUG:root:mm_to_pix: fitpx.shape: (96, 2)\n", + "DEBUG:root:radec2pix: curVec: [[-1.81187577e-01 3.69445421e-01 -9.11417107e-01]\n", + " [-1.53599254e-01 3.72695787e-01 -9.15153058e-01]\n", + " [-1.25342701e-01 3.75707893e-01 -9.18222624e-01]\n", + " [-9.65239318e-02 3.78453594e-01 -9.20573738e-01]\n", + " [-6.72501786e-02 3.80908588e-01 -9.22163793e-01]\n", + " [-3.76316509e-02 3.83052371e-01 -9.22959772e-01]\n", + " [-7.78233373e-03 3.84868371e-01 -9.22938661e-01]\n", + " [ 2.21803771e-02 3.86344190e-01 -9.22087955e-01]\n", + " [-1.81187577e-01 3.69445421e-01 -9.11417107e-01]\n", + " [-1.82683241e-01 3.96040140e-01 -8.99877237e-01]\n", + " [-1.83924890e-01 4.22228989e-01 -8.87634111e-01]\n", + " [-1.84907029e-01 4.47914862e-01 -8.74746630e-01]\n", + " [-1.85624348e-01 4.73005739e-01 -8.61283445e-01]\n", + " [-1.86071259e-01 4.97414666e-01 -8.47322923e-01]\n", + " [-1.86241496e-01 5.21059450e-01 -8.32953273e-01]\n", + " [-1.86127978e-01 5.43862288e-01 -8.18272685e-01]\n", + " [ 2.21803771e-02 3.86344190e-01 -9.22087955e-01]\n", + " [ 2.04823295e-02 4.13822001e-01 -9.10127368e-01]\n", + " [ 1.87733766e-02 4.40839555e-01 -8.97389574e-01]\n", + " [ 1.70605177e-02 4.67295666e-01 -8.83936479e-01]\n", + " [ 1.53508095e-02 4.93096825e-01 -8.69838993e-01]\n", + " [ 1.36513514e-02 5.18157402e-01 -8.55176325e-01]\n", + " [ 1.19693416e-02 5.42398842e-01 -8.40035851e-01]\n", + " [ 1.03121957e-02 5.65748059e-01 -8.24513670e-01]\n", + " [-1.86127978e-01 5.43862288e-01 -8.18272685e-01]\n", + " [-1.59552115e-01 5.48438138e-01 -8.20828077e-01]\n", + " [-1.32295294e-01 5.52572962e-01 -8.22897975e-01]\n", + " [-1.04468625e-01 5.56237736e-01 -8.24430644e-01]\n", + " [-7.61830358e-02 5.59407122e-01 -8.25384648e-01]\n", + " [-4.75496948e-02 5.62059540e-01 -8.25728830e-01]\n", + " [-1.86804275e-02 5.64177502e-01 -8.25442177e-01]\n", + " [ 1.03121957e-02 5.65748059e-01 -8.24513670e-01]\n", + " [-1.69253496e-01 3.70981802e-01 -9.13085843e-01]\n", + " [-1.34978516e-01 3.74809878e-01 -9.17223177e-01]\n", + " [-9.98051258e-02 3.78251512e-01 -9.20306868e-01]\n", + " [-6.39301256e-02 3.81260374e-01 -9.22254556e-01]\n", + " [-2.75565007e-02 3.83798726e-01 -9.23005513e-01]\n", + " [ 9.10443033e-03 3.85837777e-01 -9.22521718e-01]\n", + " [-1.81777507e-01 3.81096151e-01 -9.06489195e-01]\n", + " [-1.83440687e-01 4.13431141e-01 -8.91865576e-01]\n", + " [-1.84716998e-01 4.45059384e-01 -8.76242989e-01]\n", + " [-1.85596607e-01 4.75809348e-01 -8.59743778e-01]\n", + " [-1.86069185e-01 5.05520917e-01 -8.42512232e-01]\n", + " [-1.86122847e-01 5.34044614e-01 -8.24714882e-01]\n", + " [ 2.13393039e-02 3.98369976e-01 -9.16976552e-01]\n", + " [ 1.92501532e-02 4.31750347e-01 -9.01787708e-01]\n", + " [ 1.71517704e-02 4.64338061e-01 -8.85491944e-01]\n", + " [ 1.50571207e-02 4.95957733e-01 -8.68216108e-01]\n", + " [ 1.29792740e-02 5.26451627e-01 -8.50106007e-01]\n", + " [ 1.09315604e-02 5.55677487e-01 -8.31326068e-01]\n", + " [-1.74632125e-01 5.45832896e-01 -8.19493790e-01]\n", + " [-1.41587585e-01 5.51147743e-01 -8.22307194e-01]\n", + " [-1.07630646e-01 5.55771016e-01 -8.24338657e-01]\n", + " [-7.29655860e-02 5.59654548e-01 -8.25507608e-01]\n", + " [-3.77971109e-02 5.62758645e-01 -8.25756675e-01]\n", + " [-2.33141025e-03 5.65052976e-01 -8.25051331e-01]\n", + " [-1.81100035e-01 3.69548432e-01 -9.11392744e-01]\n", + " [-1.81100035e-01 3.69548432e-01 -9.11392744e-01]\n", + " [ 1.02185820e-02 5.65665386e-01 -8.24571557e-01]\n", + " [ 1.02185820e-02 5.65665386e-01 -8.24571557e-01]\n", + " [-1.69935564e-01 3.82574142e-01 -9.08162392e-01]\n", + " [-1.71627632e-01 4.15030286e-01 -8.93472897e-01]\n", + " [-1.72956451e-01 4.46771477e-01 -8.77770650e-01]\n", + " [-1.73912552e-01 4.77625955e-01 -8.61178188e-01]\n", + " [-1.74486057e-01 5.07433787e-01 -8.43839776e-01]\n", + " [-1.74665421e-01 5.36045912e-01 -8.25921770e-01]\n", + " [-1.35672747e-01 3.86514377e-01 -9.12249715e-01]\n", + " [-1.37444411e-01 4.19274603e-01 -8.97395031e-01]\n", + " [-1.38919834e-01 4.51298224e-01 -8.81493728e-01]\n", + " [-1.40090305e-01 4.82412691e-01 -8.64669129e-01]\n", + " [-1.40947023e-01 5.12458631e-01 -8.47065575e-01]\n", + " [-1.41479471e-01 5.41288482e-01 -8.28848803e-01]\n", + " [-1.00510302e-01 3.90046804e-01 -9.15292942e-01]\n", + " [-1.02358884e-01 4.23052465e-01 -9.00305099e-01]\n", + " [-1.03979049e-01 4.55302511e-01 -8.84244299e-01]\n", + " [-1.05362210e-01 4.86623475e-01 -8.67234915e-01]\n", + " [-1.06499959e-01 5.16856527e-01 -8.49421620e-01]\n", + " [-1.07382410e-01 5.45855798e-01 -8.30969594e-01]\n", + " [-6.46450420e-02 3.93124498e-01 -9.17209980e-01]\n", + " [-6.65683549e-02 4.26315470e-01 -9.02121818e-01]\n", + " [-6.83325211e-02 4.58735002e-01 -8.85941795e-01]\n", + " [-6.99283183e-02 4.90208738e-01 -8.68795387e-01]\n", + " [-7.13468267e-02 5.20578311e-01 -8.50827746e-01]\n", + " [-7.25780021e-02 5.49699437e-01 -8.32203678e-01]\n", + " [-2.82799131e-02 3.95709018e-01 -9.17940423e-01]\n", + " [-3.02757097e-02 4.29023434e-01 -9.02785841e-01]\n", + " [-3.21832019e-02 4.61554402e-01 -8.86527933e-01]\n", + " [-3.39918559e-02 4.93126883e-01 -8.69293064e-01]\n", + " [-3.56913682e-02 5.23582867e-01 -8.51226825e-01]\n", + " [-3.72706950e-02 5.52779300e-01 -8.32493808e-01]\n", + " [ 8.37385030e-03 3.97770951e-01 -9.17446537e-01]\n", + " [ 6.30842084e-03 4.31145437e-01 -9.02260393e-01]\n", + " [ 4.25929880e-03 4.63728841e-01 -8.85966941e-01]\n", + " [ 2.23877950e-03 4.95345796e-01 -8.68693001e-01]\n", + " [ 2.59157879e-04 5.25838520e-01 -8.50584378e-01]\n", + " [-1.66689227e-03 5.55064656e-01 -8.31805535e-01]]\n", + "DEBUG:root:radec2pix: curVec Shape: (96, 3)\n", + "DEBUG:root:radec2pix: xyfp: [[ -0.24606 31.536148 ]\n", + " [ -0.24606 27.14971943]\n", + " [ -0.24606 22.76329086]\n", + " [ -0.24606 18.37686229]\n", + " [ -0.24606 13.99043371]\n", + " [ -0.24606 9.60400514]\n", + " [ -0.24606 5.21757658]\n", + " [ -0.24606 0.831148 ]\n", + " [ -0.24606 31.536148 ]\n", + " [ -4.63248857 31.536148 ]\n", + " [ -9.01891714 31.536148 ]\n", + " [-13.40534571 31.536148 ]\n", + " [-17.79177429 31.536148 ]\n", + " [-22.17820286 31.536148 ]\n", + " [-26.56463143 31.536148 ]\n", + " [-30.95106 31.536148 ]\n", + " [ -0.24606 0.831148 ]\n", + " [ -4.63248857 0.831148 ]\n", + " [ -9.01891714 0.831148 ]\n", + " [-13.40534571 0.831148 ]\n", + " [-17.79177429 0.831148 ]\n", + " [-22.17820285 0.831148 ]\n", + " [-26.56463143 0.831148 ]\n", + " [-30.95106 0.831148 ]\n", + " [-30.95106 31.536148 ]\n", + " [-30.95106 27.14971943]\n", + " [-30.95106 22.76329086]\n", + " [-30.95106 18.37686228]\n", + " [-30.95106 13.99043371]\n", + " [-30.95106 9.60400514]\n", + " [-30.95106 5.21757657]\n", + " [-30.95106 0.831148 ]\n", + " [ -0.26106 29.623648 ]\n", + " [ -0.26106 24.247648 ]\n", + " [ -0.26106 18.87164801]\n", + " [ -0.26106 13.495648 ]\n", + " [ -0.26106 8.119648 ]\n", + " [ -0.26106 2.743648 ]\n", + " [ -2.15856 31.521148 ]\n", + " [ -7.53456 31.521148 ]\n", + " [-12.91056 31.521148 ]\n", + " [-18.28656 31.521148 ]\n", + " [-23.66256 31.521148 ]\n", + " [-29.03856 31.521148 ]\n", + " [ -2.15856 0.846148 ]\n", + " [ -7.53456 0.846148 ]\n", + " [-12.91056 0.846148 ]\n", + " [-18.28655999 0.846148 ]\n", + " [-23.66256 0.846148 ]\n", + " [-29.03856 0.846148 ]\n", + " [-30.93606 29.623648 ]\n", + " [-30.93606 24.247648 ]\n", + " [-30.93606 18.871648 ]\n", + " [-30.93606 13.495648 ]\n", + " [-30.93606 8.119648 ]\n", + " [-30.93606 2.743648 ]\n", + " [ -0.26106 31.521148 ]\n", + " [ -0.26106 31.521148 ]\n", + " [-30.93606 0.846148 ]\n", + " [-30.93606 0.846148 ]\n", + " [ -2.15856 29.623648 ]\n", + " [ -7.53456 29.623648 ]\n", + " [-12.91056 29.623648 ]\n", + " [-18.28656 29.623648 ]\n", + " [-23.66256 29.623648 ]\n", + " [-29.03856 29.623648 ]\n", + " [ -2.15856 24.247648 ]\n", + " [ -7.53456 24.247648 ]\n", + " [-12.91056 24.247648 ]\n", + " [-18.28656 24.247648 ]\n", + " [-23.66256 24.247648 ]\n", + " [-29.03856 24.247648 ]\n", + " [ -2.15856 18.871648 ]\n", + " [ -7.53456 18.871648 ]\n", + " [-12.91056 18.871648 ]\n", + " [-18.28656 18.871648 ]\n", + " [-23.66256 18.871648 ]\n", + " [-29.03856 18.871648 ]\n", + " [ -2.15856 13.495648 ]\n", + " [ -7.53456 13.495648 ]\n", + " [-12.91056 13.495648 ]\n", + " [-18.28656 13.495648 ]\n", + " [-23.66256 13.495648 ]\n", + " [-29.03856 13.495648 ]\n", + " [ -2.15856 8.119648 ]\n", + " [ -7.53456 8.119648 ]\n", + " [-12.91056 8.119648 ]\n", + " [-18.28656 8.119648 ]\n", + " [-23.66256 8.119648 ]\n", + " [-29.03856 8.119648 ]\n", + " [ -2.15856 2.743648 ]\n", + " [ -7.53456 2.743648 ]\n", + " [-12.91056 2.743648 ]\n", + " [-18.28656 2.743648 ]\n", + " [-23.66256 2.743648 ]\n", + " [-29.03856 2.743648 ]]\n", + "DEBUG:root:radec2pix: xyfp Shape: (96, 2)\n", + "DEBUG:root:optics_fp: xyfp: [[ 0.26283402 -31.55708986]\n", + " [ 0.26401791 -27.17066146]\n", + " [ 0.2652018 -22.78423305]\n", + " [ 0.26638569 -18.39780463]\n", + " [ 0.26756957 -14.01137623]\n", + " [ 0.26875346 -9.62494781]\n", + " [ 0.26993735 -5.2385194 ]\n", + " [ 0.27112123 -0.85209099]\n", + " [ 0.26283402 -31.55708986]\n", + " [ 4.64926244 -31.55827376]\n", + " [ 9.03569085 -31.55945764]\n", + " [ 13.42211926 -31.56064153]\n", + " [ 17.80854767 -31.56182542]\n", + " [ 22.19497608 -31.56300931]\n", + " [ 26.5814045 -31.56419319]\n", + " [ 30.96783291 -31.56537708]\n", + " [ 0.27112123 -0.85209099]\n", + " [ 4.65754965 -0.85327487]\n", + " [ 9.04397805 -0.85445876]\n", + " [ 13.43040647 -0.85564265]\n", + " [ 17.81683488 -0.85682653]\n", + " [ 22.20326329 -0.85801042]\n", + " [ 26.5896917 -0.85919431]\n", + " [ 30.97612012 -0.8603782 ]\n", + " [ 30.96783291 -31.56537708]\n", + " [ 30.9690168 -27.17894867]\n", + " [ 30.97020068 -22.79252025]\n", + " [ 30.97138456 -18.40609184]\n", + " [ 30.97256845 -14.01966343]\n", + " [ 30.97375234 -9.63323502]\n", + " [ 30.97493622 -5.24680661]\n", + " [ 30.97612012 -0.8603782 ]\n", + " [ 0.2783502 -29.64459399]\n", + " [ 0.27980117 -24.26859418]\n", + " [ 0.28125214 -18.89259438]\n", + " [ 0.28270311 -13.51659457]\n", + " [ 0.28415408 -8.14059477]\n", + " [ 0.28560505 -2.76459497]\n", + " [ 2.175338 -31.54260605]\n", + " [ 7.55133781 -31.54405702]\n", + " [ 12.92733761 -31.54550799]\n", + " [ 18.30333742 -31.54695896]\n", + " [ 23.67933722 -31.54840993]\n", + " [ 29.05533702 -31.5498609 ]\n", + " [ 2.18361712 -0.86760716]\n", + " [ 7.55961692 -0.86905814]\n", + " [ 12.93561673 -0.87050911]\n", + " [ 18.31161653 -0.87196007]\n", + " [ 23.68761633 -0.87341105]\n", + " [ 29.06361614 -0.87486202]\n", + " [ 30.95334909 -29.6528731 ]\n", + " [ 30.95480005 -24.27687329]\n", + " [ 30.95625103 -18.90087349]\n", + " [ 30.95770199 -13.52487368]\n", + " [ 30.95915297 -8.14887388]\n", + " [ 30.96060394 -2.77287408]\n", + " [ 0.27783807 -31.54209392]\n", + " [ 0.27783807 -31.54209392]\n", + " [ 30.96111607 -0.87537415]\n", + " [ 30.96111607 -0.87537415]\n", + " [ 2.17585013 -29.64510611]\n", + " [ 7.55184994 -29.64655709]\n", + " [ 12.92784974 -29.64800806]\n", + " [ 18.30384955 -29.64945903]\n", + " [ 23.67984935 -29.65091 ]\n", + " [ 29.05584916 -29.65236097]\n", + " [ 2.1773011 -24.26910631]\n", + " [ 7.55330091 -24.27055728]\n", + " [ 12.92930071 -24.27200825]\n", + " [ 18.30530052 -24.27345922]\n", + " [ 23.68130032 -24.27491019]\n", + " [ 29.05730013 -24.27636116]\n", + " [ 2.17875207 -18.89310651]\n", + " [ 7.55475188 -18.89455748]\n", + " [ 12.93075168 -18.89600845]\n", + " [ 18.30675149 -18.89745942]\n", + " [ 23.68275129 -18.89891039]\n", + " [ 29.0587511 -18.90036136]\n", + " [ 2.18020304 -13.51710671]\n", + " [ 7.55620285 -13.51855767]\n", + " [ 12.93220265 -13.52000864]\n", + " [ 18.30820245 -13.52145961]\n", + " [ 23.68420226 -13.52291058]\n", + " [ 29.06020207 -13.52436156]\n", + " [ 2.18165401 -8.1411069 ]\n", + " [ 7.55765382 -8.14255787]\n", + " [ 12.93365363 -8.14400884]\n", + " [ 18.30965343 -8.14545981]\n", + " [ 23.68565323 -8.14691078]\n", + " [ 29.06165303 -8.14836175]\n", + " [ 2.18310498 -2.76510709]\n", + " [ 7.55910479 -2.76655806]\n", + " [ 12.93510459 -2.76800904]\n", + " [ 18.31110439 -2.76946001]\n", + " [ 23.68710421 -2.77091098]\n", + " [ 29.063104 -2.77236195]]\n", + "DEBUG:root:optics_fp: xyfp shape: (96, 2)\n", + "DEBUG:root:radec2pix: xyfp: [[ 0.16415906 -31.72847131]\n", + " [ 0.16601788 -27.34204313]\n", + " [ 0.1678767 -22.95561497]\n", + " [ 0.16973552 -18.56918678]\n", + " [ 0.17159434 -14.1827586 ]\n", + " [ 0.17345315 -9.79633043]\n", + " [ 0.17531197 -5.40990225]\n", + " [ 0.17717079 -1.02347407]\n", + " [ 0.16415906 -31.72847131]\n", + " [ 4.55058724 -31.73033014]\n", + " [ 8.93701541 -31.73218895]\n", + " [ 13.32344359 -31.73404778]\n", + " [ 17.70987177 -31.73590659]\n", + " [ 22.09629995 -31.73776541]\n", + " [ 26.48272812 -31.73962422]\n", + " [ 30.8691563 -31.74148305]\n", + " [ 0.17717079 -1.02347407]\n", + " [ 4.56359897 -1.02533289]\n", + " [ 8.95002714 -1.02719171]\n", + " [ 13.33645532 -1.02905053]\n", + " [ 17.7228835 -1.03090935]\n", + " [ 22.10931168 -1.03276817]\n", + " [ 26.49573986 -1.03462699]\n", + " [ 30.88216803 -1.0364858 ]\n", + " [ 30.8691563 -31.74148305]\n", + " [ 30.87101512 -27.35505487]\n", + " [ 30.87287394 -22.96862669]\n", + " [ 30.87473276 -18.58219851]\n", + " [ 30.87659158 -14.19577034]\n", + " [ 30.8784504 -9.80934216]\n", + " [ 30.88030922 -5.42291398]\n", + " [ 30.88216803 -1.0364858 ]\n", + " [ 0.17996951 -29.81597784]\n", + " [ 0.18224768 -24.43997833]\n", + " [ 0.18452584 -19.06397881]\n", + " [ 0.18680401 -13.6879793 ]\n", + " [ 0.18908217 -8.31197977]\n", + " [ 0.19136034 -2.93598025]\n", + " [ 2.07666524 -31.71428177]\n", + " [ 7.45266476 -31.71655993]\n", + " [ 12.82866428 -31.7188381 ]\n", + " [ 18.2046638 -31.72111627]\n", + " [ 23.58066331 -31.72339443]\n", + " [ 28.95666283 -31.7256726 ]\n", + " [ 2.08966426 -1.03928452]\n", + " [ 7.46566378 -1.04156269]\n", + " [ 12.8416633 -1.04384085]\n", + " [ 18.21766282 -1.04611902]\n", + " [ 23.59366233 -1.04839718]\n", + " [ 28.96966185 -1.05067535]\n", + " [ 30.85496675 -29.82897686]\n", + " [ 30.85724492 -24.45297735]\n", + " [ 30.85952308 -19.07697783]\n", + " [ 30.86180126 -13.70097831]\n", + " [ 30.86407941 -8.32497879]\n", + " [ 30.86635759 -2.94897928]\n", + " [ 0.17916541 -31.71347767]\n", + " [ 0.17916541 -31.71347767]\n", + " [ 30.86716168 -1.05147945]\n", + " [ 30.86716168 -1.05147945]\n", + " [ 2.07746934 -29.81678193]\n", + " [ 7.45346886 -29.8190601 ]\n", + " [ 12.82946837 -29.82133827]\n", + " [ 18.20546789 -29.82361643]\n", + " [ 23.58146741 -29.82589461]\n", + " [ 28.95746693 -29.82817277]\n", + " [ 2.07974751 -24.44078242]\n", + " [ 7.45574702 -24.44306058]\n", + " [ 12.83174654 -24.44533875]\n", + " [ 18.20774606 -24.44761692]\n", + " [ 23.58374558 -24.44989508]\n", + " [ 28.95974509 -24.45217325]\n", + " [ 2.08202567 -19.0647829 ]\n", + " [ 7.45802519 -19.06706107]\n", + " [ 12.83402471 -19.06933924]\n", + " [ 18.21002422 -19.0716174 ]\n", + " [ 23.58602374 -19.07389557]\n", + " [ 28.96202325 -19.07617373]\n", + " [ 2.08430384 -13.68878339]\n", + " [ 7.46030335 -13.69106155]\n", + " [ 12.83630287 -13.69333972]\n", + " [ 18.21230239 -13.69561789]\n", + " [ 23.58830191 -13.69789605]\n", + " [ 28.96430143 -13.70017422]\n", + " [ 2.086582 -8.31278387]\n", + " [ 7.46258152 -8.31506203]\n", + " [ 12.83858103 -8.3173402 ]\n", + " [ 18.21458055 -8.31961837]\n", + " [ 23.59058007 -8.32189653]\n", + " [ 28.96657959 -8.3241747 ]\n", + " [ 2.08886017 -2.93678435]\n", + " [ 7.46485969 -2.93906252]\n", + " [ 12.8408592 -2.94134068]\n", + " [ 18.21685872 -2.94361885]\n", + " [ 23.59285824 -2.94589701]\n", + " [ 28.96885776 -2.94817518]]\n", + "DEBUG:root:mm_to_pix: fitpx: [[0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]]\n", + "DEBUG:root:mm_to_pix: fitpx.shape: (96, 2)\n", + "DEBUG:root:radec2pix: camVec: [[ 0.00152888 0.00154215 0.00155354 0.00156302 0.00157054 0.00157606\n", + " 0.00157952 0.00158089 0.00152888 0.03055413 0.0594604 0.08813528\n", + " 0.11646734 0.14434605 0.17166149 0.1983039 0.00158089 0.03159291\n", + " 0.06147904 0.0911219 0.12040769 0.14922671 0.17747265 0.2050409\n", + " 0.1983039 0.20004855 0.20153434 0.2027606 0.20372608 0.20442907\n", + " 0.20486781 0.2050409 0.00163462 0.00165059 0.00166353 0.00167335\n", + " 0.00167995 0.00168324 0.01419184 0.04970047 0.08491857 0.11964057\n", + " 0.15366298 0.18678351 0.01467408 0.05138704 0.08779394 0.12368372\n", + " 0.15885436 0.19311093 0.19900616 0.20096941 0.20254341 0.2037261\n", + " 0.2045144 0.20490517 0.00162826 0.00162826 0.20494776 0.20494776\n", + " 0.01424722 0.04989441 0.08525013 0.12010852 0.15426631 0.18752167\n", + " 0.01438645 0.05038177 0.08608239 0.1212815 0.15577635 0.18936679\n", + " 0.01449922 0.05077617 0.08675481 0.12222707 0.15699061 0.19084708\n", + " 0.01458479 0.05107523 0.08726392 0.1229415 0.15790584 0.1919602\n", + " 0.01464229 0.05127607 0.08760541 0.12341989 0.15851749 0.19270261\n", + " 0.01467095 0.05137612 0.08777538 0.12365776 0.15882123 0.1930708 ]\n", + " [-0.20769103 -0.1801941 -0.15200928 -0.12324112 -0.09399571 -0.06438234\n", + " -0.03451442 -0.00450904 -0.20769103 -0.20754198 -0.20712371 -0.20643751\n", + " -0.2054851 -0.20426815 -0.20278791 -0.2010451 -0.00450904 -0.00450572\n", + " -0.00449643 -0.00448126 -0.00446035 -0.00443385 -0.00440189 -0.00436457\n", + " -0.2010451 -0.17444879 -0.14716869 -0.11931453 -0.09099614 -0.06232394\n", + " -0.03340929 -0.00436457 -0.1957935 -0.16161745 -0.12651199 -0.09067166\n", + " -0.05429781 -0.01760077 -0.20756647 -0.20720276 -0.20643606 -0.20526936\n", + " -0.20370571 -0.20174719 -0.00461102 -0.00460274 -0.00458538 -0.00455917\n", + " -0.0045244 -0.0044813 -0.18954613 -0.15647489 -0.12248558 -0.08778034\n", + " -0.05256249 -0.01703747 -0.20759824 -0.20759824 -0.00446412 -0.00446412\n", + " -0.19576354 -0.19542056 -0.19469787 -0.19359884 -0.19212697 -0.19028463\n", + " -0.16159264 -0.16130879 -0.16071144 -0.15980479 -0.15859338 -0.15708053\n", + " -0.12649245 -0.12626898 -0.12579928 -0.12508774 -0.12413931 -0.12295784\n", + " -0.09065756 -0.09049631 -0.09015775 -0.08964573 -0.08896468 -0.0881182\n", + " -0.05428931 -0.05419219 -0.05398843 -0.05368064 -0.05327188 -0.0527647\n", + " -0.01759801 -0.01756642 -0.01750018 -0.01740019 -0.0172675 -0.01710301]\n", + " [ 0.97819328 0.98362986 0.98837785 0.99237552 0.99557136 0.99792406\n", + " 0.99940295 0.99998858 0.97819328 0.97774883 0.97650613 0.97448229\n", + " 0.97170532 0.9682142 0.96405881 0.95929997 0.99998858 0.99949066\n", + " 0.99809825 0.99582966 0.99271451 0.98879307 0.98411589 0.97874367\n", + " 0.95929997 0.9641308 0.96836217 0.97193219 0.97478992 0.97689533\n", + " 0.9782193 0.97874367 0.98064379 0.9868521 0.99196368 0.99587944\n", + " 0.99852337 0.99984368 0.97811796 0.97703474 0.97476817 0.97136534\n", + " 0.96689796 0.96146242 0.9998817 0.99866821 0.9961281 0.99231122\n", + " 0.98729166 0.9811667 0.96149301 0.9670196 0.97158296 0.97508476\n", + " 0.9774513 0.97863353 0.97821282 0.97821282 0.97876273 0.97876273\n", + " 0.98054763 0.97944952 0.97715155 0.97370089 0.9691693 0.96365314\n", + " 0.98675268 0.98561714 0.98324039 0.97966996 0.97497788 0.9692605\n", + " 0.9918616 0.99069568 0.9882551 0.98458804 0.979767 0.97388848\n", + " 0.99577532 0.99458621 0.99209707 0.98835673 0.98343837 0.97743873\n", + " 0.99841789 0.9972131 0.99469118 0.99090157 0.985918 0.97983753\n", + " 0.9997375 0.99852487 0.99598656 0.99217236 0.98715635 0.98103576]]\n", + "DEBUG:root:radec2pix: camVec Shape: (3, 96)\n", + "DEBUG:root:make_az_asym: xyp: [[ 0.26283402 -31.55708986]\n", + " [ 0.26401791 -27.17066146]\n", + " [ 0.2652018 -22.78423305]\n", + " [ 0.26638569 -18.39780463]\n", + " [ 0.26756957 -14.01137623]\n", + " [ 0.26875346 -9.62494781]\n", + " [ 0.26993735 -5.2385194 ]\n", + " [ 0.27112123 -0.85209099]\n", + " [ 0.26283402 -31.55708986]\n", + " [ 4.64926244 -31.55827376]\n", + " [ 9.03569085 -31.55945764]\n", + " [ 13.42211926 -31.56064153]\n", + " [ 17.80854767 -31.56182542]\n", + " [ 22.19497608 -31.56300931]\n", + " [ 26.5814045 -31.56419319]\n", + " [ 30.96783291 -31.56537708]\n", + " [ 0.27112123 -0.85209099]\n", + " [ 4.65754965 -0.85327487]\n", + " [ 9.04397805 -0.85445876]\n", + " [ 13.43040647 -0.85564265]\n", + " [ 17.81683488 -0.85682653]\n", + " [ 22.20326329 -0.85801042]\n", + " [ 26.5896917 -0.85919431]\n", + " [ 30.97612012 -0.8603782 ]\n", + " [ 30.96783291 -31.56537708]\n", + " [ 30.9690168 -27.17894867]\n", + " [ 30.97020068 -22.79252025]\n", + " [ 30.97138456 -18.40609184]\n", + " [ 30.97256845 -14.01966343]\n", + " [ 30.97375234 -9.63323502]\n", + " [ 30.97493622 -5.24680661]\n", + " [ 30.97612012 -0.8603782 ]\n", + " [ 0.2783502 -29.64459399]\n", + " [ 0.27980117 -24.26859418]\n", + " [ 0.28125214 -18.89259438]\n", + " [ 0.28270311 -13.51659457]\n", + " [ 0.28415408 -8.14059477]\n", + " [ 0.28560505 -2.76459497]\n", + " [ 2.175338 -31.54260605]\n", + " [ 7.55133781 -31.54405702]\n", + " [ 12.92733761 -31.54550799]\n", + " [ 18.30333742 -31.54695896]\n", + " [ 23.67933722 -31.54840993]\n", + " [ 29.05533702 -31.5498609 ]\n", + " [ 2.18361712 -0.86760716]\n", + " [ 7.55961692 -0.86905814]\n", + " [ 12.93561673 -0.87050911]\n", + " [ 18.31161653 -0.87196007]\n", + " [ 23.68761633 -0.87341105]\n", + " [ 29.06361614 -0.87486202]\n", + " [ 30.95334909 -29.6528731 ]\n", + " [ 30.95480005 -24.27687329]\n", + " [ 30.95625103 -18.90087349]\n", + " [ 30.95770199 -13.52487368]\n", + " [ 30.95915297 -8.14887388]\n", + " [ 30.96060394 -2.77287408]\n", + " [ 0.27783807 -31.54209392]\n", + " [ 0.27783807 -31.54209392]\n", + " [ 30.96111607 -0.87537415]\n", + " [ 30.96111607 -0.87537415]\n", + " [ 2.17585013 -29.64510611]\n", + " [ 7.55184994 -29.64655709]\n", + " [ 12.92784974 -29.64800806]\n", + " [ 18.30384955 -29.64945903]\n", + " [ 23.67984935 -29.65091 ]\n", + " [ 29.05584916 -29.65236097]\n", + " [ 2.1773011 -24.26910631]\n", + " [ 7.55330091 -24.27055728]\n", + " [ 12.92930071 -24.27200825]\n", + " [ 18.30530052 -24.27345922]\n", + " [ 23.68130032 -24.27491019]\n", + " [ 29.05730013 -24.27636116]\n", + " [ 2.17875207 -18.89310651]\n", + " [ 7.55475188 -18.89455748]\n", + " [ 12.93075168 -18.89600845]\n", + " [ 18.30675149 -18.89745942]\n", + " [ 23.68275129 -18.89891039]\n", + " [ 29.0587511 -18.90036136]\n", + " [ 2.18020304 -13.51710671]\n", + " [ 7.55620285 -13.51855767]\n", + " [ 12.93220265 -13.52000864]\n", + " [ 18.30820245 -13.52145961]\n", + " [ 23.68420226 -13.52291058]\n", + " [ 29.06020207 -13.52436156]\n", + " [ 2.18165401 -8.1411069 ]\n", + " [ 7.55765382 -8.14255787]\n", + " [ 12.93365363 -8.14400884]\n", + " [ 18.30965343 -8.14545981]\n", + " [ 23.68565323 -8.14691078]\n", + " [ 29.06165303 -8.14836175]\n", + " [ 2.18310498 -2.76510709]\n", + " [ 7.55910479 -2.76655806]\n", + " [ 12.93510459 -2.76800904]\n", + " [ 18.31110439 -2.76946001]\n", + " [ 23.68710421 -2.77091098]\n", + " [ 29.063104 -2.77236195]]\n", + "DEBUG:root:make_az_asym: xyp: shape: (96, 2)\n", + "DEBUG:root:radec2pix: xyfp: [[ -0.24606 31.536148 ]\n", + " [ -0.24606 27.14971943]\n", + " [ -0.24606 22.76329086]\n", + " [ -0.24606 18.37686229]\n", + " [ -0.24606 13.99043371]\n", + " [ -0.24606 9.60400514]\n", + " [ -0.24606 5.21757658]\n", + " [ -0.24606 0.831148 ]\n", + " [ -0.24606 31.536148 ]\n", + " [ -4.63248857 31.536148 ]\n", + " [ -9.01891714 31.536148 ]\n", + " [-13.40534571 31.536148 ]\n", + " [-17.79177429 31.536148 ]\n", + " [-22.17820286 31.536148 ]\n", + " [-26.56463143 31.536148 ]\n", + " [-30.95106 31.536148 ]\n", + " [ -0.24606 0.831148 ]\n", + " [ -4.63248857 0.831148 ]\n", + " [ -9.01891714 0.831148 ]\n", + " [-13.40534571 0.831148 ]\n", + " [-17.79177429 0.831148 ]\n", + " [-22.17820285 0.831148 ]\n", + " [-26.56463143 0.831148 ]\n", + " [-30.95106 0.831148 ]\n", + " [-30.95106 31.536148 ]\n", + " [-30.95106 27.14971943]\n", + " [-30.95106 22.76329086]\n", + " [-30.95106 18.37686228]\n", + " [-30.95106 13.99043371]\n", + " [-30.95106 9.60400514]\n", + " [-30.95106 5.21757657]\n", + " [-30.95106 0.831148 ]\n", + " [ -0.26106 29.623648 ]\n", + " [ -0.26106 24.247648 ]\n", + " [ -0.26106 18.87164801]\n", + " [ -0.26106 13.495648 ]\n", + " [ -0.26106 8.119648 ]\n", + " [ -0.26106 2.743648 ]\n", + " [ -2.15856 31.521148 ]\n", + " [ -7.53456 31.521148 ]\n", + " [-12.91056 31.521148 ]\n", + " [-18.28656 31.521148 ]\n", + " [-23.66256 31.521148 ]\n", + " [-29.03856 31.521148 ]\n", + " [ -2.15856 0.846148 ]\n", + " [ -7.53456 0.846148 ]\n", + " [-12.91056 0.846148 ]\n", + " [-18.28655999 0.846148 ]\n", + " [-23.66256 0.846148 ]\n", + " [-29.03856 0.846148 ]\n", + " [-30.93606 29.623648 ]\n", + " [-30.93606 24.247648 ]\n", + " [-30.93606 18.871648 ]\n", + " [-30.93606 13.495648 ]\n", + " [-30.93606 8.119648 ]\n", + " [-30.93606 2.743648 ]\n", + " [ -0.26106 31.521148 ]\n", + " [ -0.26106 31.521148 ]\n", + " [-30.93606 0.846148 ]\n", + " [-30.93606 0.846148 ]\n", + " [ -2.15856 29.623648 ]\n", + " [ -7.53456 29.623648 ]\n", + " [-12.91056 29.623648 ]\n", + " [-18.28656 29.623648 ]\n", + " [-23.66256 29.623648 ]\n", + " [-29.03856 29.623648 ]\n", + " [ -2.15856 24.247648 ]\n", + " [ -7.53456 24.247648 ]\n", + " [-12.91056 24.247648 ]\n", + " [-18.28656 24.247648 ]\n", + " [-23.66256 24.247648 ]\n", + " [-29.03856 24.247648 ]\n", + " [ -2.15856 18.871648 ]\n", + " [ -7.53456 18.871648 ]\n", + " [-12.91056 18.871648 ]\n", + " [-18.28656 18.871648 ]\n", + " [-23.66256 18.871648 ]\n", + " [-29.03856 18.871648 ]\n", + " [ -2.15856 13.495648 ]\n", + " [ -7.53456 13.495648 ]\n", + " [-12.91056 13.495648 ]\n", + " [-18.28656 13.495648 ]\n", + " [-23.66256 13.495648 ]\n", + " [-29.03856 13.495648 ]\n", + " [ -2.15856 8.119648 ]\n", + " [ -7.53456 8.119648 ]\n", + " [-12.91056 8.119648 ]\n", + " [-18.28656 8.119648 ]\n", + " [-23.66256 8.119648 ]\n", + " [-29.03856 8.119648 ]\n", + " [ -2.15856 2.743648 ]\n", + " [ -7.53456 2.743648 ]\n", + " [-12.91056 2.743648 ]\n", + " [-18.28656 2.743648 ]\n", + " [-23.66256 2.743648 ]\n", + " [-29.03856 2.743648 ]]\n", + "DEBUG:root:radec2pix: ccdpx: [[-4.45000000e+01 -4.99999951e-01]\n", + " [-4.45000000e+01 2.91928572e+02]\n", + " [-4.45000000e+01 5.84357142e+02]\n", + " [-4.45000000e+01 8.76785714e+02]\n", + " [-4.45000000e+01 1.16921429e+03]\n", + " [-4.45000000e+01 1.46164286e+03]\n", + " [-4.45000000e+01 1.75407143e+03]\n", + " [-4.45000000e+01 2.04650000e+03]\n", + " [-4.45000000e+01 -4.99999951e-01]\n", + " [ 2.47928571e+02 -5.00000176e-01]\n", + " [ 5.40357143e+02 -5.00000069e-01]\n", + " [ 8.32785714e+02 -5.00000257e-01]\n", + " [ 1.12521429e+03 -4.99999992e-01]\n", + " [ 1.41764286e+03 -5.00000241e-01]\n", + " [ 1.71007143e+03 -4.99999730e-01]\n", + " [ 2.00250000e+03 -5.00000010e-01]\n", + " [-4.45000000e+01 2.04650000e+03]\n", + " [ 2.47928571e+02 2.04650000e+03]\n", + " [ 5.40357143e+02 2.04650000e+03]\n", + " [ 8.32785714e+02 2.04650000e+03]\n", + " [ 1.12521429e+03 2.04650000e+03]\n", + " [ 1.41764286e+03 2.04650000e+03]\n", + " [ 1.71007143e+03 2.04650000e+03]\n", + " [ 2.00250000e+03 2.04650000e+03]\n", + " [ 2.00250000e+03 -5.00000010e-01]\n", + " [ 2.00250000e+03 2.91928572e+02]\n", + " [ 2.00250000e+03 5.84357143e+02]\n", + " [ 2.00250000e+03 8.76785714e+02]\n", + " [ 2.00250000e+03 1.16921429e+03]\n", + " [ 2.00250000e+03 1.46164286e+03]\n", + " [ 2.00250000e+03 1.75407143e+03]\n", + " [ 2.00250000e+03 2.04650000e+03]\n", + " [-4.35000000e+01 1.27000000e+02]\n", + " [-4.35000000e+01 4.85400000e+02]\n", + " [-4.35000000e+01 8.43800000e+02]\n", + " [-4.35000000e+01 1.20220000e+03]\n", + " [-4.35000000e+01 1.56060000e+03]\n", + " [-4.35000000e+01 1.91900000e+03]\n", + " [ 8.30000000e+01 4.99999720e-01]\n", + " [ 4.41400000e+02 4.99999983e-01]\n", + " [ 7.99800000e+02 4.99999771e-01]\n", + " [ 1.15820000e+03 4.99999773e-01]\n", + " [ 1.51660000e+03 5.00000075e-01]\n", + " [ 1.87500000e+03 4.99999913e-01]\n", + " [ 8.29999998e+01 2.04550000e+03]\n", + " [ 4.41400000e+02 2.04550000e+03]\n", + " [ 7.99800000e+02 2.04550000e+03]\n", + " [ 1.15820000e+03 2.04550000e+03]\n", + " [ 1.51660000e+03 2.04550000e+03]\n", + " [ 1.87500000e+03 2.04550000e+03]\n", + " [ 2.00150000e+03 1.27000000e+02]\n", + " [ 2.00150000e+03 4.85400000e+02]\n", + " [ 2.00150000e+03 8.43800000e+02]\n", + " [ 2.00150000e+03 1.20220000e+03]\n", + " [ 2.00150000e+03 1.56060000e+03]\n", + " [ 2.00150000e+03 1.91900000e+03]\n", + " [-4.35000000e+01 4.99999930e-01]\n", + " [-4.35000000e+01 4.99999930e-01]\n", + " [ 2.00150000e+03 2.04550000e+03]\n", + " [ 2.00150000e+03 2.04550000e+03]\n", + " [ 8.30000000e+01 1.27000000e+02]\n", + " [ 4.41400000e+02 1.27000000e+02]\n", + " [ 7.99800000e+02 1.27000000e+02]\n", + " [ 1.15820000e+03 1.27000000e+02]\n", + " [ 1.51660000e+03 1.27000000e+02]\n", + " [ 1.87500000e+03 1.27000000e+02]\n", + " [ 8.30000000e+01 4.85400000e+02]\n", + " [ 4.41400000e+02 4.85400000e+02]\n", + " [ 7.99800000e+02 4.85400000e+02]\n", + " [ 1.15820000e+03 4.85400000e+02]\n", + " [ 1.51660000e+03 4.85400000e+02]\n", + " [ 1.87500000e+03 4.85400000e+02]\n", + " [ 8.30000000e+01 8.43800000e+02]\n", + " [ 4.41400000e+02 8.43800000e+02]\n", + " [ 7.99800000e+02 8.43800000e+02]\n", + " [ 1.15820000e+03 8.43800000e+02]\n", + " [ 1.51660000e+03 8.43800000e+02]\n", + " [ 1.87500000e+03 8.43800000e+02]\n", + " [ 8.30000000e+01 1.20220000e+03]\n", + " [ 4.41400000e+02 1.20220000e+03]\n", + " [ 7.99800000e+02 1.20220000e+03]\n", + " [ 1.15820000e+03 1.20220000e+03]\n", + " [ 1.51660000e+03 1.20220000e+03]\n", + " [ 1.87500000e+03 1.20220000e+03]\n", + " [ 8.30000000e+01 1.56060000e+03]\n", + " [ 4.41400000e+02 1.56060000e+03]\n", + " [ 7.99800000e+02 1.56060000e+03]\n", + " [ 1.15820000e+03 1.56060000e+03]\n", + " [ 1.51660000e+03 1.56060000e+03]\n", + " [ 1.87500000e+03 1.56060000e+03]\n", + " [ 8.30000000e+01 1.91900000e+03]\n", + " [ 4.41400000e+02 1.91900000e+03]\n", + " [ 7.99800000e+02 1.91900000e+03]\n", + " [ 1.15820000e+03 1.91900000e+03]\n", + " [ 1.51660000e+03 1.91900000e+03]\n", + " [ 1.87500000e+03 1.91900000e+03]]\n", + "DEBUG:root:radec2pix: xyfp: [[ 0.26283402 -31.55708986]\n", + " [ 0.26401791 -27.17066146]\n", + " [ 0.2652018 -22.78423305]\n", + " [ 0.26638569 -18.39780463]\n", + " [ 0.26756957 -14.01137623]\n", + " [ 0.26875346 -9.62494781]\n", + " [ 0.26993735 -5.2385194 ]\n", + " [ 0.27112123 -0.85209099]\n", + " [ 0.26283402 -31.55708986]\n", + " [ 4.64926244 -31.55827376]\n", + " [ 9.03569085 -31.55945764]\n", + " [ 13.42211926 -31.56064153]\n", + " [ 17.80854767 -31.56182542]\n", + " [ 22.19497608 -31.56300931]\n", + " [ 26.5814045 -31.56419319]\n", + " [ 30.96783291 -31.56537708]\n", + " [ 0.27112123 -0.85209099]\n", + " [ 4.65754965 -0.85327487]\n", + " [ 9.04397805 -0.85445876]\n", + " [ 13.43040647 -0.85564265]\n", + " [ 17.81683488 -0.85682653]\n", + " [ 22.20326329 -0.85801042]\n", + " [ 26.5896917 -0.85919431]\n", + " [ 30.97612012 -0.8603782 ]\n", + " [ 30.96783291 -31.56537708]\n", + " [ 30.9690168 -27.17894867]\n", + " [ 30.97020068 -22.79252025]\n", + " [ 30.97138456 -18.40609184]\n", + " [ 30.97256845 -14.01966343]\n", + " [ 30.97375234 -9.63323502]\n", + " [ 30.97493622 -5.24680661]\n", + " [ 30.97612012 -0.8603782 ]\n", + " [ 0.2783502 -29.64459399]\n", + " [ 0.27980117 -24.26859418]\n", + " [ 0.28125214 -18.89259438]\n", + " [ 0.28270311 -13.51659457]\n", + " [ 0.28415408 -8.14059477]\n", + " [ 0.28560505 -2.76459497]\n", + " [ 2.175338 -31.54260605]\n", + " [ 7.55133781 -31.54405702]\n", + " [ 12.92733761 -31.54550799]\n", + " [ 18.30333742 -31.54695896]\n", + " [ 23.67933722 -31.54840993]\n", + " [ 29.05533702 -31.5498609 ]\n", + " [ 2.18361712 -0.86760716]\n", + " [ 7.55961692 -0.86905814]\n", + " [ 12.93561673 -0.87050911]\n", + " [ 18.31161653 -0.87196007]\n", + " [ 23.68761633 -0.87341105]\n", + " [ 29.06361614 -0.87486202]\n", + " [ 30.95334909 -29.6528731 ]\n", + " [ 30.95480005 -24.27687329]\n", + " [ 30.95625103 -18.90087349]\n", + " [ 30.95770199 -13.52487368]\n", + " [ 30.95915297 -8.14887388]\n", + " [ 30.96060394 -2.77287408]\n", + " [ 0.27783807 -31.54209392]\n", + " [ 0.27783807 -31.54209392]\n", + " [ 30.96111607 -0.87537415]\n", + " [ 30.96111607 -0.87537415]\n", + " [ 2.17585013 -29.64510611]\n", + " [ 7.55184994 -29.64655709]\n", + " [ 12.92784974 -29.64800806]\n", + " [ 18.30384955 -29.64945903]\n", + " [ 23.67984935 -29.65091 ]\n", + " [ 29.05584916 -29.65236097]\n", + " [ 2.1773011 -24.26910631]\n", + " [ 7.55330091 -24.27055728]\n", + " [ 12.92930071 -24.27200825]\n", + " [ 18.30530052 -24.27345922]\n", + " [ 23.68130032 -24.27491019]\n", + " [ 29.05730013 -24.27636116]\n", + " [ 2.17875207 -18.89310651]\n", + " [ 7.55475188 -18.89455748]\n", + " [ 12.93075168 -18.89600845]\n", + " [ 18.30675149 -18.89745942]\n", + " [ 23.68275129 -18.89891039]\n", + " [ 29.0587511 -18.90036136]\n", + " [ 2.18020304 -13.51710671]\n", + " [ 7.55620285 -13.51855767]\n", + " [ 12.93220265 -13.52000864]\n", + " [ 18.30820245 -13.52145961]\n", + " [ 23.68420226 -13.52291058]\n", + " [ 29.06020207 -13.52436156]\n", + " [ 2.18165401 -8.1411069 ]\n", + " [ 7.55765382 -8.14255787]\n", + " [ 12.93365363 -8.14400884]\n", + " [ 18.30965343 -8.14545981]\n", + " [ 23.68565323 -8.14691078]\n", + " [ 29.06165303 -8.14836175]\n", + " [ 2.18310498 -2.76510709]\n", + " [ 7.55910479 -2.76655806]\n", + " [ 12.93510459 -2.76800904]\n", + " [ 18.31110439 -2.76946001]\n", + " [ 23.68710421 -2.77091098]\n", + " [ 29.063104 -2.77236195]]\n", + "DEBUG:root:radec2pix: xyfp Shape: (96, 2)\n", + "DEBUG:root:cartToSphere: vec: [[ 0.00152888 -0.20769103 0.97819328]\n", + " [ 0.00154215 -0.1801941 0.98362986]\n", + " [ 0.00155354 -0.15200928 0.98837785]\n", + " [ 0.00156302 -0.12324112 0.99237552]\n", + " [ 0.00157054 -0.09399571 0.99557136]\n", + " [ 0.00157606 -0.06438234 0.99792406]\n", + " [ 0.00157952 -0.03451442 0.99940295]\n", + " [ 0.00158089 -0.00450904 0.99998858]\n", + " [ 0.00152888 -0.20769103 0.97819328]\n", + " [ 0.03055413 -0.20754198 0.97774883]\n", + " [ 0.0594604 -0.20712371 0.97650613]\n", + " [ 0.08813528 -0.20643751 0.97448229]\n", + " [ 0.11646734 -0.2054851 0.97170532]\n", + " [ 0.14434605 -0.20426815 0.9682142 ]\n", + " [ 0.17166149 -0.20278791 0.96405881]\n", + " [ 0.1983039 -0.2010451 0.95929997]\n", + " [ 0.00158089 -0.00450904 0.99998858]\n", + " [ 0.03159291 -0.00450572 0.99949066]\n", + " [ 0.06147904 -0.00449643 0.99809825]\n", + " [ 0.0911219 -0.00448126 0.99582966]\n", + " [ 0.12040769 -0.00446035 0.99271451]\n", + " [ 0.14922671 -0.00443385 0.98879307]\n", + " [ 0.17747265 -0.00440189 0.98411589]\n", + " [ 0.2050409 -0.00436457 0.97874367]\n", + " [ 0.1983039 -0.2010451 0.95929997]\n", + " [ 0.20004855 -0.17444879 0.9641308 ]\n", + " [ 0.20153434 -0.14716869 0.96836217]\n", + " [ 0.2027606 -0.11931453 0.97193219]\n", + " [ 0.20372608 -0.09099614 0.97478992]\n", + " [ 0.20442907 -0.06232394 0.97689533]\n", + " [ 0.20486781 -0.03340929 0.9782193 ]\n", + " [ 0.2050409 -0.00436457 0.97874367]\n", + " [ 0.00163462 -0.1957935 0.98064379]\n", + " [ 0.00165059 -0.16161745 0.9868521 ]\n", + " [ 0.00166353 -0.12651199 0.99196368]\n", + " [ 0.00167335 -0.09067166 0.99587944]\n", + " [ 0.00167995 -0.05429781 0.99852337]\n", + " [ 0.00168324 -0.01760077 0.99984368]\n", + " [ 0.01419184 -0.20756647 0.97811796]\n", + " [ 0.04970047 -0.20720276 0.97703474]\n", + " [ 0.08491857 -0.20643606 0.97476817]\n", + " [ 0.11964057 -0.20526936 0.97136534]\n", + " [ 0.15366298 -0.20370571 0.96689796]\n", + " [ 0.18678351 -0.20174719 0.96146242]\n", + " [ 0.01467408 -0.00461102 0.9998817 ]\n", + " [ 0.05138704 -0.00460274 0.99866821]\n", + " [ 0.08779394 -0.00458538 0.9961281 ]\n", + " [ 0.12368372 -0.00455917 0.99231122]\n", + " [ 0.15885436 -0.0045244 0.98729166]\n", + " [ 0.19311093 -0.0044813 0.9811667 ]\n", + " [ 0.19900616 -0.18954613 0.96149301]\n", + " [ 0.20096941 -0.15647489 0.9670196 ]\n", + " [ 0.20254341 -0.12248558 0.97158296]\n", + " [ 0.2037261 -0.08778034 0.97508476]\n", + " [ 0.2045144 -0.05256249 0.9774513 ]\n", + " [ 0.20490517 -0.01703747 0.97863353]\n", + " [ 0.00162826 -0.20759824 0.97821282]\n", + " [ 0.00162826 -0.20759824 0.97821282]\n", + " [ 0.20494776 -0.00446412 0.97876273]\n", + " [ 0.20494776 -0.00446412 0.97876273]\n", + " [ 0.01424722 -0.19576354 0.98054763]\n", + " [ 0.04989441 -0.19542056 0.97944952]\n", + " [ 0.08525013 -0.19469787 0.97715155]\n", + " [ 0.12010852 -0.19359884 0.97370089]\n", + " [ 0.15426631 -0.19212697 0.9691693 ]\n", + " [ 0.18752167 -0.19028463 0.96365314]\n", + " [ 0.01438645 -0.16159264 0.98675268]\n", + " [ 0.05038177 -0.16130879 0.98561714]\n", + " [ 0.08608239 -0.16071144 0.98324039]\n", + " [ 0.1212815 -0.15980479 0.97966996]\n", + " [ 0.15577635 -0.15859338 0.97497788]\n", + " [ 0.18936679 -0.15708053 0.9692605 ]\n", + " [ 0.01449922 -0.12649245 0.9918616 ]\n", + " [ 0.05077617 -0.12626898 0.99069568]\n", + " [ 0.08675481 -0.12579928 0.9882551 ]\n", + " [ 0.12222707 -0.12508774 0.98458804]\n", + " [ 0.15699061 -0.12413931 0.979767 ]\n", + " [ 0.19084708 -0.12295784 0.97388848]\n", + " [ 0.01458479 -0.09065756 0.99577532]\n", + " [ 0.05107523 -0.09049631 0.99458621]\n", + " [ 0.08726392 -0.09015775 0.99209707]\n", + " [ 0.1229415 -0.08964573 0.98835673]\n", + " [ 0.15790584 -0.08896468 0.98343837]\n", + " [ 0.1919602 -0.0881182 0.97743873]\n", + " [ 0.01464229 -0.05428931 0.99841789]\n", + " [ 0.05127607 -0.05419219 0.9972131 ]\n", + " [ 0.08760541 -0.05398843 0.99469118]\n", + " [ 0.12341989 -0.05368064 0.99090157]\n", + " [ 0.15851749 -0.05327188 0.985918 ]\n", + " [ 0.19270261 -0.0527647 0.97983753]\n", + " [ 0.01467095 -0.01759801 0.9997375 ]\n", + " [ 0.05137612 -0.01756642 0.99852487]\n", + " [ 0.08777538 -0.01750018 0.99598656]\n", + " [ 0.12365776 -0.01740019 0.99217236]\n", + " [ 0.15882123 -0.0172675 0.98715635]\n", + " [ 0.1930708 -0.01710301 0.98103576]]\n", + "DEBUG:root:radec2pix: lng: [270.42176524 270.49034045 270.58554379 270.72662079 270.95724718\n", + " 271.40230304 272.6202602 289.32090211 270.42176524 278.37487059\n", + " 286.01754065 293.1193046 299.54422335 305.24693184 310.24816583\n", + " 314.60671783 289.32090211 351.88332455 355.81697528 357.18453549\n", + " 357.87852145 358.29811982 358.57917324 358.78056782 314.60671783\n", + " 318.91052218 323.86153916 329.52530495 335.93162927 343.04519816\n", + " 350.73789032 358.78056782 270.47833289 270.58513886 270.75335014\n", + " 271.05727717 271.77214072 275.46283159 273.91137001 283.48836134\n", + " 292.36007687 300.23563069 307.02864268 312.79442784 342.55577414\n", + " 354.88167257 357.01022263 357.88894543 358.36857558 358.67064356\n", + " 316.39469688 322.09565632 328.83707711 336.69003224 345.58630386\n", + " 355.24690052 270.44938101 270.44938101 358.75219462 358.75219462\n", + " 274.16251665 284.32266507 293.64661849 301.81542209 308.76235319\n", + " 314.58099285 275.08757932 287.34521298 298.17498348 307.196148\n", + " 314.48659385 320.3241534 276.53899869 291.90639058 304.59126569\n", + " 314.33729311 321.66504236 327.20736404 279.1393103 299.43995741\n", + " 314.06556227 323.90144592 330.60294465 335.34278839 285.09401101\n", + " 313.41621828 328.3557916 336.49369688 341.42440255 344.68693562\n", + " 309.81698293 341.12351394 348.72452469 351.99035546 353.79501012\n", + " 354.93771634]\n", + "DEBUG:root:radec2pix: ccdpx: [[-4.45000000e+01 -5.00000251e-01]\n", + " [-4.45000000e+01 2.91928572e+02]\n", + " [-4.45000000e+01 5.84357143e+02]\n", + " [-4.45000000e+01 8.76785714e+02]\n", + " [-4.45000000e+01 1.16921429e+03]\n", + " [-4.45000000e+01 1.46164286e+03]\n", + " [-4.45000000e+01 1.75407143e+03]\n", + " [-4.45000000e+01 2.04650000e+03]\n", + " [-4.45000000e+01 -5.00000251e-01]\n", + " [ 2.47928571e+02 -5.00000137e-01]\n", + " [ 5.40357143e+02 -5.00000030e-01]\n", + " [ 8.32785714e+02 -4.99999965e-01]\n", + " [ 1.12521429e+03 -4.99999941e-01]\n", + " [ 1.41764286e+03 -5.00000178e-01]\n", + " [ 1.71007143e+03 -4.99999847e-01]\n", + " [ 2.00250000e+03 -5.00000219e-01]\n", + " [-4.45000000e+01 2.04650000e+03]\n", + " [ 2.47928571e+02 2.04650000e+03]\n", + " [ 5.40357143e+02 2.04650000e+03]\n", + " [ 8.32785714e+02 2.04650000e+03]\n", + " [ 1.12521429e+03 2.04650000e+03]\n", + " [ 1.41764286e+03 2.04650000e+03]\n", + " [ 1.71007143e+03 2.04650000e+03]\n", + " [ 2.00250000e+03 2.04650000e+03]\n", + " [ 2.00250000e+03 -5.00000219e-01]\n", + " [ 2.00250000e+03 2.91928572e+02]\n", + " [ 2.00250000e+03 5.84357143e+02]\n", + " [ 2.00250000e+03 8.76785714e+02]\n", + " [ 2.00250000e+03 1.16921429e+03]\n", + " [ 2.00250000e+03 1.46164286e+03]\n", + " [ 2.00250000e+03 1.75407143e+03]\n", + " [ 2.00250000e+03 2.04650000e+03]\n", + " [-4.35000000e+01 1.27000000e+02]\n", + " [-4.35000000e+01 4.85400000e+02]\n", + " [-4.35000000e+01 8.43800000e+02]\n", + " [-4.35000000e+01 1.20220000e+03]\n", + " [-4.35000000e+01 1.56060000e+03]\n", + " [-4.35000000e+01 1.91900000e+03]\n", + " [ 8.30000000e+01 4.99999716e-01]\n", + " [ 4.41400000e+02 4.99999791e-01]\n", + " [ 7.99800000e+02 5.00000291e-01]\n", + " [ 1.15820000e+03 5.00000004e-01]\n", + " [ 1.51660000e+03 5.00000077e-01]\n", + " [ 1.87500000e+03 4.99999846e-01]\n", + " [ 8.30000001e+01 2.04550000e+03]\n", + " [ 4.41400000e+02 2.04550000e+03]\n", + " [ 7.99800000e+02 2.04550000e+03]\n", + " [ 1.15820000e+03 2.04550000e+03]\n", + " [ 1.51660000e+03 2.04550000e+03]\n", + " [ 1.87500000e+03 2.04550000e+03]\n", + " [ 2.00150000e+03 1.27000000e+02]\n", + " [ 2.00150000e+03 4.85400000e+02]\n", + " [ 2.00150000e+03 8.43800000e+02]\n", + " [ 2.00150000e+03 1.20220000e+03]\n", + " [ 2.00150000e+03 1.56060000e+03]\n", + " [ 2.00150000e+03 1.91900000e+03]\n", + " [-4.35000000e+01 4.99999735e-01]\n", + " [-4.35000000e+01 4.99999735e-01]\n", + " [ 2.00150000e+03 2.04550000e+03]\n", + " [ 2.00150000e+03 2.04550000e+03]\n", + " [ 8.30000000e+01 1.27000000e+02]\n", + " [ 4.41400000e+02 1.27000000e+02]\n", + " [ 7.99800000e+02 1.27000000e+02]\n", + " [ 1.15820000e+03 1.27000000e+02]\n", + " [ 1.51660000e+03 1.27000000e+02]\n", + " [ 1.87500000e+03 1.27000000e+02]\n", + " [ 8.30000000e+01 4.85400000e+02]\n", + " [ 4.41400000e+02 4.85400000e+02]\n", + " [ 7.99800000e+02 4.85400000e+02]\n", + " [ 1.15820000e+03 4.85400000e+02]\n", + " [ 1.51660000e+03 4.85400000e+02]\n", + " [ 1.87500000e+03 4.85400000e+02]\n", + " [ 8.30000000e+01 8.43800000e+02]\n", + " [ 4.41400000e+02 8.43800000e+02]\n", + " [ 7.99800000e+02 8.43800000e+02]\n", + " [ 1.15820000e+03 8.43800000e+02]\n", + " [ 1.51660000e+03 8.43800000e+02]\n", + " [ 1.87500000e+03 8.43800000e+02]\n", + " [ 8.30000000e+01 1.20220000e+03]\n", + " [ 4.41400000e+02 1.20220000e+03]\n", + " [ 7.99800000e+02 1.20220000e+03]\n", + " [ 1.15820000e+03 1.20220000e+03]\n", + " [ 1.51660000e+03 1.20220000e+03]\n", + " [ 1.87500000e+03 1.20220000e+03]\n", + " [ 8.30000000e+01 1.56060000e+03]\n", + " [ 4.41400000e+02 1.56060000e+03]\n", + " [ 7.99800000e+02 1.56060000e+03]\n", + " [ 1.15820000e+03 1.56060000e+03]\n", + " [ 1.51660000e+03 1.56060000e+03]\n", + " [ 1.87500000e+03 1.56060000e+03]\n", + " [ 8.30000002e+01 1.91900000e+03]\n", + " [ 4.41400000e+02 1.91900000e+03]\n", + " [ 7.99800000e+02 1.91900000e+03]\n", + " [ 1.15820000e+03 1.91900000e+03]\n", + " [ 1.51660000e+03 1.91900000e+03]\n", + " [ 1.87500000e+03 1.91900000e+03]]\n", + "DEBUG:root:mm_to_pix: fitpx: [[0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]]\n", + "DEBUG:root:mm_to_pix: fitpx.shape: (96, 2)\n", + "DEBUG:root:radec2pix: lat: [78.01259544 79.61854981 81.2561548 82.92023352 84.60572556 86.30750292\n", + " 88.02000573 89.72623162 78.01259544 77.8905989 77.5557472 77.02861409\n", + " 76.33783962 75.51523956 74.59210732 73.59715789 89.72623162 88.17123291\n", + " 86.46586111 84.76551164 83.07960166 81.41406813 79.77423864 78.16538766\n", + " 73.59715789 74.60763881 75.5491728 76.39298182 77.10737428 77.65965515\n", + " 78.01977483 78.16538766 78.70852006 80.69871958 82.73128852 84.79686317\n", + " 86.88594315 88.98689611 77.99183548 77.69708601 77.10179122 76.25561048\n", + " 75.21673598 74.0417777 89.11867119 87.04263922 84.95641064 82.89040132\n", + " 80.8558565 78.86257349 74.04815363 75.2440736 76.30818941 77.18330532\n", + " 77.80960312 78.1346569 78.0179859 78.0179859 78.1707132 78.1707132\n", + " 78.68041726 78.36422733 77.72853599 76.83064382 75.73566662 74.50486571\n", + " 80.66353948 80.27068815 79.49543516 78.42701765 77.15572991 75.75689035\n", + " 82.68520532 82.17800874 81.21001267 79.9277617 78.4547664 76.877901\n", + " 84.73149404 84.03535931 82.79194264 81.24820065 79.5578398 77.80619197\n", + " 86.77660248 85.72142555 84.09351686 82.26517071 80.37322779 78.47497463\n", + " 88.68716566 86.88752222 84.86498838 82.8264064 80.80719889 78.82380063]\n", + "DEBUG:root:radec2pix: fitpx: [[ 2.13550000e+03 -4.99999951e-01]\n", + " [ 2.13550000e+03 2.91928572e+02]\n", + " [ 2.13550000e+03 5.84357142e+02]\n", + " [ 2.13550000e+03 8.76785714e+02]\n", + " [ 2.13550000e+03 1.16921429e+03]\n", + " [ 2.13550000e+03 1.46164286e+03]\n", + " [ 2.13550000e+03 1.75407143e+03]\n", + " [ 2.13550000e+03 2.04650000e+03]\n", + " [ 2.13550000e+03 -4.99999951e-01]\n", + " [ 2.42792857e+03 -5.00000176e-01]\n", + " [ 2.72035714e+03 -5.00000069e-01]\n", + " [ 3.01278571e+03 -5.00000257e-01]\n", + " [ 3.30521429e+03 -4.99999992e-01]\n", + " [ 3.59764286e+03 -5.00000241e-01]\n", + " [ 3.89007143e+03 -4.99999730e-01]\n", + " [ 4.18250000e+03 -5.00000010e-01]\n", + " [ 2.13550000e+03 2.04650000e+03]\n", + " [ 2.42792857e+03 2.04650000e+03]\n", + " [ 2.72035714e+03 2.04650000e+03]\n", + " [ 3.01278571e+03 2.04650000e+03]\n", + " [ 3.30521429e+03 2.04650000e+03]\n", + " [ 3.59764286e+03 2.04650000e+03]\n", + " [ 3.89007143e+03 2.04650000e+03]\n", + " [ 4.18250000e+03 2.04650000e+03]\n", + " [ 4.18250000e+03 -5.00000010e-01]\n", + " [ 4.18250000e+03 2.91928572e+02]\n", + " [ 4.18250000e+03 5.84357143e+02]\n", + " [ 4.18250000e+03 8.76785714e+02]\n", + " [ 4.18250000e+03 1.16921429e+03]\n", + " [ 4.18250000e+03 1.46164286e+03]\n", + " [ 4.18250000e+03 1.75407143e+03]\n", + " [ 4.18250000e+03 2.04650000e+03]\n", + " [ 2.13650000e+03 1.27000000e+02]\n", + " [ 2.13650000e+03 4.85400000e+02]\n", + " [ 2.13650000e+03 8.43800000e+02]\n", + " [ 2.13650000e+03 1.20220000e+03]\n", + " [ 2.13650000e+03 1.56060000e+03]\n", + " [ 2.13650000e+03 1.91900000e+03]\n", + " [ 2.26300000e+03 4.99999720e-01]\n", + " [ 2.62140000e+03 4.99999983e-01]\n", + " [ 2.97980000e+03 4.99999771e-01]\n", + " [ 3.33820000e+03 4.99999773e-01]\n", + " [ 3.69660000e+03 5.00000075e-01]\n", + " [ 4.05500000e+03 4.99999913e-01]\n", + " [ 2.26300000e+03 2.04550000e+03]\n", + " [ 2.62140000e+03 2.04550000e+03]\n", + " [ 2.97980000e+03 2.04550000e+03]\n", + " [ 3.33820000e+03 2.04550000e+03]\n", + " [ 3.69660000e+03 2.04550000e+03]\n", + " [ 4.05500000e+03 2.04550000e+03]\n", + " [ 4.18150000e+03 1.27000000e+02]\n", + " [ 4.18150000e+03 4.85400000e+02]\n", + " [ 4.18150000e+03 8.43800000e+02]\n", + " [ 4.18150000e+03 1.20220000e+03]\n", + " [ 4.18150000e+03 1.56060000e+03]\n", + " [ 4.18150000e+03 1.91900000e+03]\n", + " [ 2.13650000e+03 4.99999930e-01]\n", + " [ 2.13650000e+03 4.99999930e-01]\n", + " [ 4.18150000e+03 2.04550000e+03]\n", + " [ 4.18150000e+03 2.04550000e+03]\n", + " [ 2.26300000e+03 1.27000000e+02]\n", + " [ 2.62140000e+03 1.27000000e+02]\n", + " [ 2.97980000e+03 1.27000000e+02]\n", + " [ 3.33820000e+03 1.27000000e+02]\n", + " [ 3.69660000e+03 1.27000000e+02]\n", + " [ 4.05500000e+03 1.27000000e+02]\n", + " [ 2.26300000e+03 4.85400000e+02]\n", + " [ 2.62140000e+03 4.85400000e+02]\n", + " [ 2.97980000e+03 4.85400000e+02]\n", + " [ 3.33820000e+03 4.85400000e+02]\n", + " [ 3.69660000e+03 4.85400000e+02]\n", + " [ 4.05500000e+03 4.85400000e+02]\n", + " [ 2.26300000e+03 8.43800000e+02]\n", + " [ 2.62140000e+03 8.43800000e+02]\n", + " [ 2.97980000e+03 8.43800000e+02]\n", + " [ 3.33820000e+03 8.43800000e+02]\n", + " [ 3.69660000e+03 8.43800000e+02]\n", + " [ 4.05500000e+03 8.43800000e+02]\n", + " [ 2.26300000e+03 1.20220000e+03]\n", + " [ 2.62140000e+03 1.20220000e+03]\n", + " [ 2.97980000e+03 1.20220000e+03]\n", + " [ 3.33820000e+03 1.20220000e+03]\n", + " [ 3.69660000e+03 1.20220000e+03]\n", + " [ 4.05500000e+03 1.20220000e+03]\n", + " [ 2.26300000e+03 1.56060000e+03]\n", + " [ 2.62140000e+03 1.56060000e+03]\n", + " [ 2.97980000e+03 1.56060000e+03]\n", + " [ 3.33820000e+03 1.56060000e+03]\n", + " [ 3.69660000e+03 1.56060000e+03]\n", + " [ 4.05500000e+03 1.56060000e+03]\n", + " [ 2.26300000e+03 1.91900000e+03]\n", + " [ 2.62140000e+03 1.91900000e+03]\n", + " [ 2.97980000e+03 1.91900000e+03]\n", + " [ 3.33820000e+03 1.91900000e+03]\n", + " [ 3.69660000e+03 1.91900000e+03]\n", + " [ 4.05500000e+03 1.91900000e+03]]\n", + "DEBUG:root:fitpix2pix: ccdpx: shape: (96, 2)\n", + "DEBUG:root:fitpix2pix: visCut: True\n", + "DEBUG:root:radec2pix: curVec: [[-0.26652584 -0.54762503 -0.79313984]\n", + " [-0.25682867 -0.52829929 -0.80928295]\n", + " [-0.24687683 -0.50810138 -0.82515745]\n", + " [-0.23668789 -0.48710401 -0.84065958]\n", + " [-0.22628436 -0.46538212 -0.85569555]\n", + " [-0.21569364 -0.44301357 -0.87018115]\n", + " [-0.20494784 -0.42007991 -0.88404143]\n", + " [-0.19408332 -0.39666679 -0.89721075]\n", + " [-0.26652584 -0.54762503 -0.79313984]\n", + " [-0.29139784 -0.53744789 -0.79135142]\n", + " [-0.31654581 -0.52653136 -0.78902692]\n", + " [-0.34185133 -0.51491221 -0.78613172]\n", + " [-0.36720053 -0.50262921 -0.78264146]\n", + " [-0.39248344 -0.48972372 -0.77854186]\n", + " [-0.41759352 -0.47624041 -0.77382862]\n", + " [-0.44242766 -0.46222784 -0.76850712]\n", + " [-0.19408332 -0.39666679 -0.89721075]\n", + " [-0.21932413 -0.38475562 -0.89658242]\n", + " [-0.24490368 -0.37228899 -0.89522237]\n", + " [-0.27070977 -0.35929981 -0.89309567]\n", + " [-0.2966329 -0.34582459 -0.89017654]\n", + " [-0.32256467 -0.33190443 -0.88644881]\n", + " [-0.34839711 -0.3175856 -0.88190637]\n", + " [-0.37402322 -0.30291966 -0.87655366]\n", + " [-0.44242766 -0.46222784 -0.76850712]\n", + " [-0.43408756 -0.4414306 -0.78530696]\n", + " [-0.42523571 -0.41985997 -0.80180559]\n", + " [-0.41588786 -0.39758274 -0.81790296]\n", + " [-0.40606435 -0.37466995 -0.83350715]\n", + " [-0.3957907 -0.35119846 -0.84853366]\n", + " [-0.38509806 -0.32725173 -0.86290543]\n", + " [-0.37402322 -0.30291966 -0.87655366]\n", + " [-0.2624148 -0.53927681 -0.80019935]\n", + " [-0.25035739 -0.51499433 -0.81981829]\n", + " [-0.23793417 -0.48947388 -0.83892946]\n", + " [-0.22518452 -0.46285247 -0.85735612]\n", + " [-0.21215888 -0.43527354 -0.87494317]\n", + " [-0.19891814 -0.40688889 -0.89155651]\n", + " [-0.27729598 -0.54321599 -0.79247923]\n", + " [-0.30798077 -0.53023992 -0.78993258]\n", + " [-0.33896191 -0.51618968 -0.78654501]\n", + " [-0.37002792 -0.5011358 -0.78226737]\n", + " [-0.40097629 -0.48515452 -0.77707343]\n", + " [-0.43161229 -0.46832965 -0.77095925]\n", + " [-0.20507684 -0.39162488 -0.89698018]\n", + " [-0.23625453 -0.37664981 -0.89572245]\n", + " [-0.26782906 -0.36087263 -0.89333003]\n", + " [-0.29959784 -0.34435901 -0.88975165]\n", + " [-0.33136121 -0.32718465 -0.8849576 ]\n", + " [-0.36292077 -0.30943696 -0.878941 ]\n", + " [-0.43877044 -0.45330838 -0.77588144]\n", + " [-0.42820205 -0.42729141 -0.79628202]\n", + " [-0.41688036 -0.40017868 -0.81612976]\n", + " [-0.40484082 -0.37209911 -0.83525215]\n", + " [-0.39213052 -0.34319429 -0.85349361]\n", + " [-0.37880916 -0.31362057 -0.87071566]\n", + " [-0.26657757 -0.54752701 -0.79319012]\n", + " [-0.26657757 -0.54752701 -0.79319012]\n", + " [-0.37397453 -0.30305409 -0.87652796]\n", + " [-0.37397453 -0.30305409 -0.87652796]\n", + " [-0.27316849 -0.53491141 -0.79953034]\n", + " [-0.30395484 -0.52179218 -0.79708492]\n", + " [-0.33504047 -0.50761443 -0.79377294]\n", + " [-0.3662145 -0.49244781 -0.7895455 ]\n", + " [-0.39727459 -0.47636783 -0.78437657]\n", + " [-0.42802571 -0.45945792 -0.77826243]\n", + " [-0.26119228 -0.51048035 -0.81926089]\n", + " [-0.29221498 -0.49697184 -0.81708592]\n", + " [-0.3235481 -0.48244975 -0.81397719]\n", + " [-0.35498258 -0.46698132 -0.8098863 ]\n", + " [-0.3863165 -0.45064023 -0.80478752]\n", + " [-0.41735377 -0.43350932 -0.79867735]\n", + " [-0.24882262 -0.48481882 -0.83847362]\n", + " [-0.28000589 -0.47094282 -0.83654621]\n", + " [-0.31151469 -0.45609905 -0.83362597]\n", + " [-0.34314178 -0.44035279 -0.82966447]\n", + " [-0.37468559 -0.42377677 -0.82463565]\n", + " [-0.40594885 -0.40645391 -0.81853573]\n", + " [-0.23609915 -0.45806288 -0.85699217]\n", + " [-0.26736774 -0.44383845 -0.85529055]\n", + " [-0.29898035 -0.42869325 -0.85254493]\n", + " [-0.33073141 -0.41269152 -0.84870633]\n", + " [-0.36241973 -0.39590598 -0.84374783]\n", + " [-0.39384708 -0.37842037 -0.83766491]\n", + " [-0.2230727 -0.43035534 -0.87466156]\n", + " [-0.25435221 -0.41579996 -0.87316399]\n", + " [-0.28599683 -0.40037259 -0.87057889]\n", + " [-0.3178025 -0.38413749 -0.86685637]\n", + " [-0.34956853 -0.36716823 -0.86196829]\n", + " [-0.3810962 -0.34954992 -0.85590919]\n", + " [-0.20980463 -0.40184787 -0.89134747]\n", + " [-0.24102168 -0.38697903 -0.89003134]\n", + " [-0.27262697 -0.37128936 -0.88759154]\n", + " [-0.30441762 -0.35484405 -0.88397716]\n", + " [-0.33619366 -0.33771816 -0.87915884]\n", + " [-0.36775649 -0.31999851 -0.87313007]]\n", + "DEBUG:root:radec2pix: curVec Shape: (96, 3)\n", + "DEBUG:root:radec2pix: fitpx: [[2135.5 4155.50000025]\n", + " [2135.5 3863.07142842]\n", + " [2135.5 3570.64285705]\n", + " [2135.5 3278.21428595]\n", + " [2135.50000001 2985.78571392]\n", + " [2135.5 2693.35714283]\n", + " [2135.49999998 2400.92857178]\n", + " [2135.49999997 2108.50000011]\n", + " [2135.5 4155.50000025]\n", + " [1843.07142855 4155.50000014]\n", + " [1550.64285713 4155.50000003]\n", + " [1258.21428573 4155.49999997]\n", + " [ 965.78571432 4155.49999994]\n", + " [ 673.35714273 4155.50000018]\n", + " [ 380.92857156 4155.49999985]\n", + " [ 88.49999978 4155.50000022]\n", + " [2135.49999997 2108.50000011]\n", + " [1843.07142854 2108.50000001]\n", + " [1550.64285742 2108.49999997]\n", + " [1258.21428585 2108.49999999]\n", + " [ 965.78571387 2108.50000002]\n", + " [ 673.35714329 2108.49999998]\n", + " [ 380.92857158 2108.5 ]\n", + " [ 88.4999998 2108.50000001]\n", + " [ 88.49999978 4155.50000022]\n", + " [ 88.50000021 3863.07142839]\n", + " [ 88.50000011 3570.64285706]\n", + " [ 88.50000015 3278.21428562]\n", + " [ 88.49999997 2985.7857143 ]\n", + " [ 88.49999979 2693.35714292]\n", + " [ 88.49999995 2400.92857144]\n", + " [ 88.4999998 2108.50000001]\n", + " [2134.5 4027.99999985]\n", + " [2134.5 3669.59999985]\n", + " [2134.49999999 3311.20000044]\n", + " [2134.5 2952.7999998 ]\n", + " [2134.5 2594.40000013]\n", + " [2134.50000001 2235.99999985]\n", + " [2007.99999998 4154.50000028]\n", + " [1649.59999995 4154.50000021]\n", + " [1291.20000012 4154.49999971]\n", + " [ 932.8 4154.5 ]\n", + " [ 574.40000006 4154.49999992]\n", + " [ 215.99999986 4154.50000015]\n", + " [2007.99999994 2109.50000002]\n", + " [1649.60000009 2109.49999999]\n", + " [1291.20000007 2109.5 ]\n", + " [ 932.80000034 2109.49999998]\n", + " [ 574.40000029 2109.49999999]\n", + " [ 216.00000015 2109.5 ]\n", + " [ 89.50000013 4027.99999988]\n", + " [ 89.50000024 3669.59999981]\n", + " [ 89.50000003 3311.19999998]\n", + " [ 89.49999973 2952.80000012]\n", + " [ 89.49999991 2594.40000002]\n", + " [ 89.50000029 2235.99999997]\n", + " [2134.5 4154.50000026]\n", + " [2134.5 4154.50000026]\n", + " [ 89.50000019 2109.49999999]\n", + " [ 89.50000019 2109.49999999]\n", + " [2008. 4027.99999998]\n", + " [1649.6 4027.99999999]\n", + " [1291.19999989 4028.00000025]\n", + " [ 932.79999995 4028.00000008]\n", + " [ 574.3999998 4028.00000025]\n", + " [ 215.99999992 4028.00000008]\n", + " [2008.00000001 3669.59999984]\n", + " [1649.60000007 3669.59999979]\n", + " [1291.19999996 3669.60000008]\n", + " [ 932.80000004 3669.59999994]\n", + " [ 574.39999995 3669.60000006]\n", + " [ 216.00000005 3669.59999995]\n", + " [2007.99999998 3311.2000002 ]\n", + " [1649.59999994 3311.20000015]\n", + " [1291.20000016 3311.19999976]\n", + " [ 932.80000015 3311.19999985]\n", + " [ 574.40000019 3311.19999985]\n", + " [ 216.00000023 3311.19999985]\n", + " [2007.99999995 2952.80000031]\n", + " [1649.60000003 2952.79999994]\n", + " [1291.19999981 2952.80000019]\n", + " [ 932.79999986 2952.8000001 ]\n", + " [ 574.39999987 2952.80000007]\n", + " [ 216.00000004 2952.79999998]\n", + " [2007.99999998 2594.40000008]\n", + " [1649.60000021 2594.39999977]\n", + " [1291.19999986 2594.40000009]\n", + " [ 932.80000028 2594.39999988]\n", + " [ 574.39999984 2594.40000006]\n", + " [ 216.00000019 2594.39999995]\n", + " [2007.99999983 2236.00000022]\n", + " [1649.60000014 2235.99999995]\n", + " [1291.19999989 2236.00000002]\n", + " [ 932.80000032 2235.99999995]\n", + " [ 574.40000023 2235.99999997]\n", + " [ 216.00000006 2235.99999999]]\n", + "DEBUG:root:fitpix2pix: ccdpx: shape: (96, 2)\n", + "DEBUG:root:fitpix2pix: visCut: True\n", + "DEBUG:root:radec2pix: xyfp: [[ 0.26283402 -31.55708986]\n", + " [ 0.26401791 -27.17066146]\n", + " [ 0.2652018 -22.78423305]\n", + " [ 0.26638569 -18.39780463]\n", + " [ 0.26756957 -14.01137623]\n", + " [ 0.26875346 -9.62494781]\n", + " [ 0.26993735 -5.2385194 ]\n", + " [ 0.27112123 -0.85209099]\n", + " [ 0.26283402 -31.55708986]\n", + " [ 4.64926244 -31.55827376]\n", + " [ 9.03569085 -31.55945764]\n", + " [ 13.42211926 -31.56064153]\n", + " [ 17.80854767 -31.56182542]\n", + " [ 22.19497608 -31.56300931]\n", + " [ 26.5814045 -31.56419319]\n", + " [ 30.96783291 -31.56537708]\n", + " [ 0.27112123 -0.85209099]\n", + " [ 4.65754965 -0.85327487]\n", + " [ 9.04397805 -0.85445876]\n", + " [ 13.43040647 -0.85564265]\n", + " [ 17.81683488 -0.85682653]\n", + " [ 22.20326329 -0.85801042]\n", + " [ 26.5896917 -0.85919431]\n", + " [ 30.97612012 -0.8603782 ]\n", + " [ 30.96783291 -31.56537708]\n", + " [ 30.9690168 -27.17894867]\n", + " [ 30.97020068 -22.79252025]\n", + " [ 30.97138456 -18.40609184]\n", + " [ 30.97256845 -14.01966343]\n", + " [ 30.97375234 -9.63323502]\n", + " [ 30.97493622 -5.24680661]\n", + " [ 30.97612012 -0.8603782 ]\n", + " [ 0.2783502 -29.64459399]\n", + " [ 0.27980117 -24.26859418]\n", + " [ 0.28125214 -18.89259438]\n", + " [ 0.28270311 -13.51659457]\n", + " [ 0.28415408 -8.14059477]\n", + " [ 0.28560505 -2.76459497]\n", + " [ 2.175338 -31.54260605]\n", + " [ 7.55133781 -31.54405702]\n", + " [ 12.92733761 -31.54550799]\n", + " [ 18.30333742 -31.54695896]\n", + " [ 23.67933722 -31.54840993]\n", + " [ 29.05533702 -31.5498609 ]\n", + " [ 2.18361712 -0.86760716]\n", + " [ 7.55961692 -0.86905814]\n", + " [ 12.93561673 -0.87050911]\n", + " [ 18.31161653 -0.87196007]\n", + " [ 23.68761633 -0.87341105]\n", + " [ 29.06361614 -0.87486202]\n", + " [ 30.95334909 -29.6528731 ]\n", + " [ 30.95480005 -24.27687329]\n", + " [ 30.95625103 -18.90087349]\n", + " [ 30.95770199 -13.52487368]\n", + " [ 30.95915297 -8.14887388]\n", + " [ 30.96060394 -2.77287408]\n", + " [ 0.27783807 -31.54209392]\n", + " [ 0.27783807 -31.54209392]\n", + " [ 30.96111607 -0.87537415]\n", + " [ 30.96111607 -0.87537415]\n", + " [ 2.17585013 -29.64510611]\n", + " [ 7.55184994 -29.64655709]\n", + " [ 12.92784974 -29.64800806]\n", + " [ 18.30384955 -29.64945903]\n", + " [ 23.67984935 -29.65091 ]\n", + " [ 29.05584916 -29.65236097]\n", + " [ 2.1773011 -24.26910631]\n", + " [ 7.55330091 -24.27055728]\n", + " [ 12.92930071 -24.27200825]\n", + " [ 18.30530052 -24.27345922]\n", + " [ 23.68130032 -24.27491019]\n", + " [ 29.05730013 -24.27636116]\n", + " [ 2.17875207 -18.89310651]\n", + " [ 7.55475188 -18.89455748]\n", + " [ 12.93075168 -18.89600845]\n", + " [ 18.30675149 -18.89745942]\n", + " [ 23.68275129 -18.89891039]\n", + " [ 29.0587511 -18.90036136]\n", + " [ 2.18020304 -13.51710671]\n", + " [ 7.55620285 -13.51855767]\n", + " [ 12.93220265 -13.52000864]\n", + " [ 18.30820245 -13.52145961]\n", + " [ 23.68420226 -13.52291058]\n", + " [ 29.06020207 -13.52436156]\n", + " [ 2.18165401 -8.1411069 ]\n", + " [ 7.55765382 -8.14255787]\n", + " [ 12.93365363 -8.14400884]\n", + " [ 18.30965343 -8.14545981]\n", + " [ 23.68565323 -8.14691078]\n", + " [ 29.06165303 -8.14836175]\n", + " [ 2.18310498 -2.76510709]\n", + " [ 7.55910479 -2.76655806]\n", + " [ 12.93510459 -2.76800904]\n", + " [ 18.31110439 -2.76946001]\n", + " [ 23.68710421 -2.77091098]\n", + " [ 29.063104 -2.77236195]]\n", + "DEBUG:root:radec2pix: camVec: [[0.20582147 0.20765008 0.20920683 0.21049219 0.21150557 0.2122456\n", + " 0.21271065 0.21289938 0.20582147 0.17940403 0.15227891 0.12455745\n", + " 0.09635017 0.06776763 0.03892112 0.00992292 0.21289938 0.18554193\n", + " 0.15747589 0.1288054 0.09963586 0.07007602 0.04023879 0.01024104\n", + " 0.00992292 0.01000636 0.01007758 0.01013637 0.01018243 0.01021541\n", + " 0.01023502 0.01024104 0.20656285 0.20862007 0.2102697 0.2115111\n", + " 0.21234181 0.21275892 0.19440388 0.16153549 0.12771486 0.09314577\n", + " 0.05803185 0.02257838 0.20106508 0.16704611 0.13206625 0.09631893\n", + " 0.06000442 0.02333228 0.01006049 0.01015553 0.01023184 0.01028888\n", + " 0.01032605 0.01034279 0.20573918 0.20573918 0.01034376 0.01034376\n", + " 0.19517916 0.16217419 0.12821715 0.09351091 0.05825864 0.02266572\n", + " 0.19711638 0.16377271 0.12947641 0.09442771 0.05882858 0.02288505\n", + " 0.19867107 0.16505894 0.13049231 0.09516891 0.05928988 0.02306224\n", + " 0.19984199 0.16603002 0.13126104 0.09573072 0.0596397 0.02319607\n", + " 0.20062602 0.16668139 0.13177743 0.09610838 0.05987462 0.02328514\n", + " 0.20101976 0.1670086 0.13203673 0.09629765 0.05999164 0.02332821]\n", + " [0.20164691 0.17515749 0.1479768 0.12021614 0.09198614 0.06339752\n", + " 0.03456171 0.00559103 0.20164691 0.2034844 0.20505578 0.20636157\n", + " 0.2074012 0.20817322 0.20867589 0.20890768 0.00559103 0.00564441\n", + " 0.00569099 0.00573063 0.00576317 0.00578837 0.00580605 0.00581605\n", + " 0.20890768 0.18144072 0.15328055 0.12453134 0.09529889 0.06569253\n", + " 0.0358258 0.00581605 0.19019593 0.15725033 0.12337711 0.08878017\n", + " 0.0536634 0.01823232 0.20239118 0.20446311 0.20613616 0.2074097\n", + " 0.20828117 0.20874739 0.00571471 0.00577657 0.00582791 0.00586841\n", + " 0.00589767 0.00591534 0.19702358 0.16288078 0.12780019 0.0919758\n", + " 0.05560896 0.01891032 0.20156436 0.20156436 0.00591876 0.00591876\n", + " 0.19097333 0.19292238 0.19449762 0.19569785 0.19651986 0.19695996\n", + " 0.15788822 0.15949023 0.1607887 0.16178086 0.16246211 0.16282774\n", + " 0.12387558 0.1251298 0.12614936 0.12693065 0.1274685 0.12775798\n", + " 0.08913848 0.09004163 0.09077781 0.09134344 0.09173387 0.09194479\n", + " 0.0538804 0.0544282 0.05487585 0.05522072 0.05545959 0.05558951\n", + " 0.018307 0.01849597 0.01865108 0.01877134 0.01885557 0.01890269]\n", + " [0.95758866 0.96239353 0.96661025 0.97017582 0.97303851 0.97515771\n", + " 0.9765038 0.97705813 0.95758866 0.96250106 0.96683156 0.9705155\n", + " 0.97349956 0.97574149 0.97721007 0.97788502 0.97705813 0.98262014\n", + " 0.98750643 0.99165333 0.99500728 0.99752486 0.99917322 0.99993064\n", + " 0.97788502 0.98335097 0.98813132 0.9921639 0.99539662 0.99778762\n", + " 0.99930564 0.99993064 0.9597694 0.96527198 0.96982717 0.97333506\n", + " 0.97572086 0.97693461 0.95981506 0.96545384 0.97015298 0.97380957\n", + " 0.97634587 0.97770893 0.97956122 0.98593216 0.99122376 0.99533322\n", + " 0.99818069 0.99971026 0.98034713 0.98659349 0.99174716 0.99570809\n", + " 0.99839923 0.99976769 0.95762372 0.95762372 0.99992898 0.99992898\n", + " 0.96199495 0.96771922 0.97248704 0.97619571 0.97876753 0.9801495\n", + " 0.96758278 0.97352009 0.97845943 0.98229851 0.98495952 0.98638907\n", + " 0.97220607 0.9783139 0.98339112 0.98733555 0.99006893 0.99153721\n", + " 0.97576509 0.98200129 0.98718283 0.99120735 0.99399598 0.9954939\n", + " 0.97818511 0.98450743 0.98975924 0.99383794 0.99666407 0.99818215\n", + " 0.97941611 0.98578194 0.99106934 0.99517556 0.99802078 0.99954914]]\n", + "DEBUG:root:radec2pix: camVec Shape: (3, 96)\n", + "DEBUG:root:optics_fp: rtanth: [31.36436077 26.97807037 22.59183361 18.20568928 13.8197254 9.43419362\n", + " 5.05021974 0.69781153 31.36436077 31.70156673 32.63030877 34.10229142\n", + " 36.05103355 38.40402676 41.09188526 44.05335752 0.69781153 4.66402697\n", + " 9.02778296 13.40634529 17.78878395 22.17280059 26.55761376 30.94288484\n", + " 44.05335752 41.04621131 38.30621526 35.89459992 33.88155828 32.34160155\n", + " 31.34453543 30.94288484 29.45203736 24.07626653 18.70062748 13.32527965\n", + " 7.95081375 2.58274138 31.42169962 32.23771351 33.8971959 36.28460223\n", + " 39.26738572 42.72102005 2.2467047 7.54947995 12.91295338 18.28378612\n", + " 23.65696634 29.03119064 42.70202201 39.18809499 36.13521339 33.66902518\n", + " 31.92578297 31.02758019 31.34947523 31.34947523 30.92821126 30.92821126\n", + " 29.52890302 30.39577404 32.15047118 34.65840831 37.76983569 41.34874196\n", + " 24.17023416 25.22195839 27.31111317 30.22332497 33.74617895 37.70891894\n", + " 18.82145258 20.1542562 22.71439544 26.14376082 30.14716324 34.52548949\n", + " 13.49432055 15.2984853 18.54166578 22.61295734 27.14223759 31.93523187\n", + " 8.23098104 10.94056736 15.14746618 19.92481371 24.9470123 30.09171641\n", + " 3.34726194 7.94676841 13.14917661 18.45137705 23.78673027 29.13702987]\n", + "DEBUG:root:radec2pix: ccdpx: [[-4.45000000e+01 -4.99999783e-01]\n", + " [-4.45000000e+01 2.91928571e+02]\n", + " [-4.45000000e+01 5.84357143e+02]\n", + " [-4.45000000e+01 8.76785714e+02]\n", + " [-4.45000000e+01 1.16921429e+03]\n", + " [-4.45000000e+01 1.46164286e+03]\n", + " [-4.45000000e+01 1.75407143e+03]\n", + " [-4.44999999e+01 2.04650000e+03]\n", + " [-4.45000000e+01 -4.99999783e-01]\n", + " [ 2.47928571e+02 -5.00000080e-01]\n", + " [ 5.40357143e+02 -5.00000178e-01]\n", + " [ 8.32785714e+02 -4.99999867e-01]\n", + " [ 1.12521429e+03 -5.00000095e-01]\n", + " [ 1.41764286e+03 -5.00000221e-01]\n", + " [ 1.71007143e+03 -5.00000185e-01]\n", + " [ 2.00250000e+03 -5.00000018e-01]\n", + " [-4.44999999e+01 2.04650000e+03]\n", + " [ 2.47928572e+02 2.04650000e+03]\n", + " [ 5.40357143e+02 2.04650000e+03]\n", + " [ 8.32785714e+02 2.04650000e+03]\n", + " [ 1.12521429e+03 2.04650000e+03]\n", + " [ 1.41764286e+03 2.04650000e+03]\n", + " [ 1.71007143e+03 2.04650000e+03]\n", + " [ 2.00250000e+03 2.04650000e+03]\n", + " [ 2.00250000e+03 -5.00000018e-01]\n", + " [ 2.00250000e+03 2.91928571e+02]\n", + " [ 2.00250000e+03 5.84357143e+02]\n", + " [ 2.00250000e+03 8.76785714e+02]\n", + " [ 2.00250000e+03 1.16921429e+03]\n", + " [ 2.00250000e+03 1.46164286e+03]\n", + " [ 2.00250000e+03 1.75407143e+03]\n", + " [ 2.00250000e+03 2.04650000e+03]\n", + " [-4.35000000e+01 1.27000000e+02]\n", + " [-4.35000000e+01 4.85400000e+02]\n", + " [-4.35000000e+01 8.43800000e+02]\n", + " [-4.35000000e+01 1.20220000e+03]\n", + " [-4.35000000e+01 1.56060000e+03]\n", + " [-4.35000000e+01 1.91900000e+03]\n", + " [ 8.30000000e+01 4.99999873e-01]\n", + " [ 4.41400000e+02 5.00000123e-01]\n", + " [ 7.99800000e+02 5.00000108e-01]\n", + " [ 1.15820000e+03 4.99999719e-01]\n", + " [ 1.51660000e+03 4.99999964e-01]\n", + " [ 1.87500000e+03 5.00000185e-01]\n", + " [ 8.30000000e+01 2.04550000e+03]\n", + " [ 4.41400000e+02 2.04550000e+03]\n", + " [ 7.99800000e+02 2.04550000e+03]\n", + " [ 1.15820000e+03 2.04550000e+03]\n", + " [ 1.51660000e+03 2.04550000e+03]\n", + " [ 1.87500000e+03 2.04550000e+03]\n", + " [ 2.00150000e+03 1.27000000e+02]\n", + " [ 2.00150000e+03 4.85400000e+02]\n", + " [ 2.00150000e+03 8.43800000e+02]\n", + " [ 2.00150000e+03 1.20220000e+03]\n", + " [ 2.00150000e+03 1.56060000e+03]\n", + " [ 2.00150000e+03 1.91900000e+03]\n", + " [-4.35000000e+01 4.99999853e-01]\n", + " [-4.35000000e+01 4.99999853e-01]\n", + " [ 2.00150000e+03 2.04550000e+03]\n", + " [ 2.00150000e+03 2.04550000e+03]\n", + " [ 8.30000000e+01 1.27000000e+02]\n", + " [ 4.41400000e+02 1.27000000e+02]\n", + " [ 7.99800000e+02 1.27000000e+02]\n", + " [ 1.15820000e+03 1.27000000e+02]\n", + " [ 1.51660000e+03 1.27000000e+02]\n", + " [ 1.87500000e+03 1.27000000e+02]\n", + " [ 8.30000000e+01 4.85400000e+02]\n", + " [ 4.41400000e+02 4.85400000e+02]\n", + " [ 7.99800000e+02 4.85400000e+02]\n", + " [ 1.15820000e+03 4.85400000e+02]\n", + " [ 1.51660000e+03 4.85400000e+02]\n", + " [ 1.87500000e+03 4.85400000e+02]\n", + " [ 8.30000000e+01 8.43800000e+02]\n", + " [ 4.41400000e+02 8.43800000e+02]\n", + " [ 7.99800000e+02 8.43800000e+02]\n", + " [ 1.15820000e+03 8.43800000e+02]\n", + " [ 1.51660000e+03 8.43800000e+02]\n", + " [ 1.87500000e+03 8.43800000e+02]\n", + " [ 8.30000000e+01 1.20220000e+03]\n", + " [ 4.41400000e+02 1.20220000e+03]\n", + " [ 7.99800000e+02 1.20220000e+03]\n", + " [ 1.15820000e+03 1.20220000e+03]\n", + " [ 1.51660000e+03 1.20220000e+03]\n", + " [ 1.87500000e+03 1.20220000e+03]\n", + " [ 8.30000001e+01 1.56060000e+03]\n", + " [ 4.41400000e+02 1.56060000e+03]\n", + " [ 7.99800000e+02 1.56060000e+03]\n", + " [ 1.15820000e+03 1.56060000e+03]\n", + " [ 1.51660000e+03 1.56060000e+03]\n", + " [ 1.87500000e+03 1.56060000e+03]\n", + " [ 8.29999999e+01 1.91900000e+03]\n", + " [ 4.41400000e+02 1.91900000e+03]\n", + " [ 7.99800000e+02 1.91900000e+03]\n", + " [ 1.15820000e+03 1.91900000e+03]\n", + " [ 1.51660000e+03 1.91900000e+03]\n", + " [ 1.87500000e+03 1.91900000e+03]]\n", + "DEBUG:root:radec2pix: curVec: [[-9.11796651e-01 4.09077661e-01 3.58096913e-02]\n", + " [-9.08271179e-01 4.18272566e-01 9.56686538e-03]\n", + " [-9.03941040e-01 4.27310888e-01 -1.72046836e-02]\n", + " [-8.98784063e-01 4.36137748e-01 -4.43967642e-02]\n", + " [-8.92787154e-01 4.44703296e-01 -7.19032409e-02]\n", + " [-8.85946819e-01 4.52961982e-01 -9.96176510e-02]\n", + " [-8.78269980e-01 4.60872131e-01 -1.27431242e-01]\n", + " [-8.69774639e-01 4.68396115e-01 -1.55232592e-01]\n", + " [-9.11796651e-01 4.09077661e-01 3.58096913e-02]\n", + " [-8.99942096e-01 4.33585087e-01 4.59151029e-02]\n", + " [-8.87358869e-01 4.57683485e-01 5.58575462e-02]\n", + " [-8.74106515e-01 4.81284734e-01 6.55957686e-02]\n", + " [-8.60253940e-01 5.04306486e-01 7.50874677e-02]\n", + " [-8.45879150e-01 5.26672349e-01 8.42893876e-02]\n", + " [-8.31068782e-01 5.48312185e-01 9.31580790e-02]\n", + " [-8.15916918e-01 5.69162960e-01 1.01651897e-01]\n", + " [-8.69774639e-01 4.68396115e-01 -1.55232592e-01]\n", + " [-8.57524952e-01 4.93690883e-01 -1.44638408e-01]\n", + " [-8.44544611e-01 5.18460746e-01 -1.33950944e-01]\n", + " [-8.30896010e-01 5.42614098e-01 -1.23214288e-01]\n", + " [-8.16649418e-01 5.66068581e-01 -1.12472620e-01]\n", + " [-8.01882503e-01 5.88750598e-01 -1.01770253e-01]\n", + " [-7.86680888e-01 6.10593509e-01 -9.11523305e-02]\n", + " [-7.71139344e-01 6.31535543e-01 -8.06657915e-02]\n", + " [-8.15916918e-01 5.69162960e-01 1.01651897e-01]\n", + " [-8.11451390e-01 5.79333235e-01 7.69392327e-02]\n", + " [-8.06358673e-01 5.89171119e-01 5.16050766e-02]\n", + " [-8.00619943e-01 5.98618770e-01 2.57541266e-02]\n", + " [-7.94224870e-01 6.07623733e-01 -5.06069960e-04]\n", + " [-7.87172409e-01 6.16138738e-01 -2.70675880e-02]\n", + " [-7.79471148e-01 6.24121632e-01 -5.38230328e-02]\n", + " [-7.71139344e-01 6.31535543e-01 -8.06657915e-02]\n", + " [-9.10317285e-01 4.13186918e-01 2.44747186e-02]\n", + " [-9.05458206e-01 4.24358943e-01 -8.05756017e-03]\n", + " [-8.99367540e-01 4.35240507e-01 -4.12762616e-02]\n", + " [-8.92017407e-01 4.45737774e-01 -7.49852134e-02]\n", + " [-8.83401478e-01 4.55766831e-01 -1.08988188e-01]\n", + " [-8.73537087e-01 4.65252599e-01 -1.43083811e-01]\n", + " [-9.06710154e-01 4.19839387e-01 4.01445654e-02]\n", + " [-8.91683693e-01 4.49612859e-01 5.24258356e-02]\n", + " [-8.75620818e-01 4.78683652e-01 6.44216140e-02]\n", + " [-8.58644504e-01 5.06897755e-01 7.60544650e-02]\n", + " [-8.40898314e-01 5.34114562e-01 8.72448345e-02]\n", + " [-8.22544941e-01 5.60207822e-01 9.79133146e-02]\n", + " [-8.64557621e-01 4.79458004e-01 -1.50532858e-01]\n", + " [-8.49045597e-01 5.10118293e-01 -1.37480548e-01]\n", + " [-8.32497128e-01 5.39898197e-01 -1.24332091e-01]\n", + " [-8.15038360e-01 5.68642215e-01 -1.11168805e-01]\n", + " [-7.96812351e-01 5.96214637e-01 -9.80723434e-02]\n", + " [-7.77980473e-01 6.22494866e-01 -8.51265245e-02]\n", + " [-8.14098067e-01 5.73564185e-01 9.09310910e-02]\n", + " [-8.08206727e-01 5.85812703e-01 6.02109928e-02]\n", + " [-8.01353571e-01 5.97503979e-01 2.86609520e-02]\n", + " [-7.93515987e-01 6.08539213e-01 -3.52200768e-03]\n", + " [-7.84692091e-01 6.18831378e-01 -3.61392926e-02]\n", + " [-7.74901713e-01 6.28305047e-01 -6.89935099e-02]\n", + " [-9.11746695e-01 4.09193706e-01 3.57557663e-02]\n", + " [-9.11746695e-01 4.09193706e-01 3.57557663e-02]\n", + " [-7.71222492e-01 6.31441184e-01 -8.06095484e-02]\n", + " [-7.71222492e-01 6.31441184e-01 -8.06095484e-02]\n", + " [-9.05260782e-01 4.23873464e-01 2.88825794e-02]\n", + " [-8.90172800e-01 4.53753381e-01 4.12341573e-02]\n", + " [-8.74041308e-01 4.82916457e-01 5.33243571e-02]\n", + " [-8.56989545e-01 5.11208432e-01 6.50757987e-02]\n", + " [-8.39161351e-01 5.38488590e-01 7.64085391e-02]\n", + " [-8.20720134e-01 5.64630305e-01 8.72415093e-02]\n", + " [-9.00351703e-01 4.35148068e-01 -3.60127969e-03]\n", + " [-8.85111284e-01 4.65293689e-01 8.93299867e-03]\n", + " [-8.68812304e-01 4.94684373e-01 2.12732562e-02]\n", + " [-8.51578791e-01 5.23165197e-01 3.33427584e-02]\n", + " [-8.33554955e-01 5.50595649e-01 4.50618212e-02]\n", + " [-8.14905062e-01 5.76848974e-01 5.63471507e-02]\n", + " [-8.94220781e-01 4.46112588e-01 -3.67797995e-02]\n", + " [-8.78860475e-01 4.76470457e-01 -2.40866908e-02]\n", + " [-8.62434115e-01 5.06038196e-01 -1.15213754e-02]\n", + " [-8.45066663e-01 5.34660294e-01 8.39868970e-04]\n", + " [-8.26902394e-01 5.62197072e-01 1.29183190e-02]\n", + " [-8.08105332e-01 5.88522812e-01 2.46306924e-02]\n", + " [-8.86840363e-01 4.56672745e-01 -7.04568954e-02]\n", + " [-8.71393533e-01 4.87188149e-01 -5.76282753e-02]\n", + " [-8.54880738e-01 5.16881398e-01 -4.48613868e-02]\n", + " [-8.37427848e-01 5.45596586e-01 -3.22329643e-02]\n", + " [-8.19179041e-01 5.73195267e-01 -1.98213335e-02]\n", + " [-8.00297582e-01 5.99553457e-01 -7.70918694e-03]\n", + " [-8.78204492e-01 4.66743898e-01 -1.04436598e-01]\n", + " [-8.62705740e-01 4.97360314e-01 -9.14960381e-02]\n", + " [-8.46148634e-01 5.27126461e-01 -7.85505164e-02]\n", + " [-8.28659594e-01 5.55886356e-01 -6.56782818e-02]\n", + " [-8.10382494e-01 5.83502889e-01 -5.29584041e-02]\n", + " [-7.91479700e-01 6.09853901e-01 -4.04734844e-02]\n", + " [-8.68330881e-01 4.76250225e-01 -1.38517884e-01]\n", + " [-8.52815931e-01 5.06909474e-01 -1.25490133e-01]\n", + " [-8.36257570e-01 5.36695214e-01 -1.12390049e-01]\n", + " [-8.18782141e-01 5.65451758e-01 -9.92981107e-02]\n", + " [-8.00532953e-01 5.93043112e-01 -8.62951819e-02]\n", + " [-7.81671587e-01 6.19348430e-01 -7.34646320e-02]]\n", + "DEBUG:root:radec2pix: curVec Shape: (96, 3)\n", + "DEBUG:root:optics_fp: cphi: [0.00736113 0.00855795 0.01021949 0.01268159 0.01670634 0.02447236\n", + " 0.04571623 0.33085868 0.00736113 0.14564913 0.27593163 0.39264701\n", + " 0.49309519 0.57710146 0.64609955 0.70223653 0.33085868 0.98998261\n", + " 0.99733613 0.99879292 0.99931459 0.99955889 0.99969254 0.99977352\n", + " 0.70223653 0.7536841 0.80759419 0.86185323 0.91305945 0.9565351\n", + " 0.98696237 0.99977352 0.00834839 0.01021242 0.01314806 0.01845192\n", + " 0.03092476 0.09520001 0.06821327 0.23324784 0.38042607 0.50355732\n", + " 0.60221419 0.67936994 0.95400922 0.99601258 0.99863886 0.99932131\n", + " 0.99959465 0.99973085 0.72410803 0.78903751 0.85569931 0.91837755\n", + " 0.96852369 0.99656102 0.0078431 0.0078431 0.99976286 0.99976286\n", + " 0.07258573 0.24738232 0.40109449 0.52718454 0.6260916 0.70191681\n", + " 0.08867837 0.2981282 0.47216592 0.60454556 0.70074236 0.76966876\n", + " 0.11387947 0.37309127 0.56771826 0.69888097 0.78439808 0.84063622\n", + " 0.15883549 0.49151121 0.69548104 0.80800475 0.87123904 0.90881999\n", + " 0.26040359 0.68729315 0.85132238 0.9170162 0.94790417 0.96449723\n", + " 0.6403374 0.94621821 0.98069844 0.99024463 0.99414155 0.99609937]\n", + "DEBUG:root:optics_fp: sphi: [-0.99997291 -0.99996338 -0.99994778 -0.99991959 -0.99986044 -0.99970051\n", + " -0.99895447 -0.94368031 -0.99997291 -0.98933631 -0.96117727 -0.91968926\n", + " -0.86997536 -0.81667246 -0.76325315 -0.71194371 -0.94368031 -0.14118936\n", + " -0.07294272 -0.04911935 -0.03701833 -0.02969904 -0.02479556 -0.0212815\n", + " -0.71194371 -0.65723685 -0.5897386 -0.50715777 -0.40782648 -0.29161723\n", + " -0.16095117 -0.0212815 -0.99996515 -0.99994785 -0.99991356 -0.99982975\n", + " -0.99952172 -0.99545817 -0.99767076 -0.97241732 -0.92481134 -0.86396182\n", + " -0.79833456 -0.73379594 -0.29977727 -0.0892129 -0.05215778 -0.03683652\n", + " -0.02846988 -0.02319957 -0.68968657 -0.61434502 -0.51747338 -0.39570528\n", + " -0.24892141 -0.08286212 -0.99996924 -0.99996924 -0.02177659 -0.02177659\n", + " -0.99736218 -0.96891795 -0.91603668 -0.84975082 -0.77974951 -0.71225894\n", + " -0.99606031 -0.95452584 -0.88150969 -0.79657056 -0.71341443 -0.63844342\n", + " -0.99349457 -0.92779465 -0.82322292 -0.71523799 -0.62025773 -0.54160017\n", + " -0.98730506 -0.87087125 -0.71854445 -0.58917597 -0.49085898 -0.41718848\n", + " -0.96549986 -0.72638015 -0.52464293 -0.39884995 -0.31855562 -0.26409298\n", + " -0.76809376 -0.32352912 -0.19552639 -0.13933979 -0.10808594 -0.08823861]\n", + "DEBUG:root:cartToSphere: vec: [[0.20582147 0.20164691 0.95758866]\n", + " [0.20765008 0.17515749 0.96239353]\n", + " [0.20920683 0.1479768 0.96661025]\n", + " [0.21049219 0.12021614 0.97017582]\n", + " [0.21150557 0.09198614 0.97303851]\n", + " [0.2122456 0.06339752 0.97515771]\n", + " [0.21271065 0.03456171 0.9765038 ]\n", + " [0.21289938 0.00559103 0.97705813]\n", + " [0.20582147 0.20164691 0.95758866]\n", + " [0.17940403 0.2034844 0.96250106]\n", + " [0.15227891 0.20505578 0.96683156]\n", + " [0.12455745 0.20636157 0.9705155 ]\n", + " [0.09635017 0.2074012 0.97349956]\n", + " [0.06776763 0.20817322 0.97574149]\n", + " [0.03892112 0.20867589 0.97721007]\n", + " [0.00992292 0.20890768 0.97788502]\n", + " [0.21289938 0.00559103 0.97705813]\n", + " [0.18554193 0.00564441 0.98262014]\n", + " [0.15747589 0.00569099 0.98750643]\n", + " [0.1288054 0.00573063 0.99165333]\n", + " [0.09963586 0.00576317 0.99500728]\n", + " [0.07007602 0.00578837 0.99752486]\n", + " [0.04023879 0.00580605 0.99917322]\n", + " [0.01024104 0.00581605 0.99993064]\n", + " [0.00992292 0.20890768 0.97788502]\n", + " [0.01000636 0.18144072 0.98335097]\n", + " [0.01007758 0.15328055 0.98813132]\n", + " [0.01013637 0.12453134 0.9921639 ]\n", + " [0.01018243 0.09529889 0.99539662]\n", + " [0.01021541 0.06569253 0.99778762]\n", + " [0.01023502 0.0358258 0.99930564]\n", + " [0.01024104 0.00581605 0.99993064]\n", + " [0.20656285 0.19019593 0.9597694 ]\n", + " [0.20862007 0.15725033 0.96527198]\n", + " [0.2102697 0.12337711 0.96982717]\n", + " [0.2115111 0.08878017 0.97333506]\n", + " [0.21234181 0.0536634 0.97572086]\n", + " [0.21275892 0.01823232 0.97693461]\n", + " [0.19440388 0.20239118 0.95981506]\n", + " [0.16153549 0.20446311 0.96545384]\n", + " [0.12771486 0.20613616 0.97015298]\n", + " [0.09314577 0.2074097 0.97380957]\n", + " [0.05803185 0.20828117 0.97634587]\n", + " [0.02257838 0.20874739 0.97770893]\n", + " [0.20106508 0.00571471 0.97956122]\n", + " [0.16704611 0.00577657 0.98593216]\n", + " [0.13206625 0.00582791 0.99122376]\n", + " [0.09631893 0.00586841 0.99533322]\n", + " [0.06000442 0.00589767 0.99818069]\n", + " [0.02333228 0.00591534 0.99971026]\n", + " [0.01006049 0.19702358 0.98034713]\n", + " [0.01015553 0.16288078 0.98659349]\n", + " [0.01023184 0.12780019 0.99174716]\n", + " [0.01028888 0.0919758 0.99570809]\n", + " [0.01032605 0.05560896 0.99839923]\n", + " [0.01034279 0.01891032 0.99976769]\n", + " [0.20573918 0.20156436 0.95762372]\n", + " [0.20573918 0.20156436 0.95762372]\n", + " [0.01034376 0.00591876 0.99992898]\n", + " [0.01034376 0.00591876 0.99992898]\n", + " [0.19517916 0.19097333 0.96199495]\n", + " [0.16217419 0.19292238 0.96771922]\n", + " [0.12821715 0.19449762 0.97248704]\n", + " [0.09351091 0.19569785 0.97619571]\n", + " [0.05825864 0.19651986 0.97876753]\n", + " [0.02266572 0.19695996 0.9801495 ]\n", + " [0.19711638 0.15788822 0.96758278]\n", + " [0.16377271 0.15949023 0.97352009]\n", + " [0.12947641 0.1607887 0.97845943]\n", + " [0.09442771 0.16178086 0.98229851]\n", + " [0.05882858 0.16246211 0.98495952]\n", + " [0.02288505 0.16282774 0.98638907]\n", + " [0.19867107 0.12387558 0.97220607]\n", + " [0.16505894 0.1251298 0.9783139 ]\n", + " [0.13049231 0.12614936 0.98339112]\n", + " [0.09516891 0.12693065 0.98733555]\n", + " [0.05928988 0.1274685 0.99006893]\n", + " [0.02306224 0.12775798 0.99153721]\n", + " [0.19984199 0.08913848 0.97576509]\n", + " [0.16603002 0.09004163 0.98200129]\n", + " [0.13126104 0.09077781 0.98718283]\n", + " [0.09573072 0.09134344 0.99120735]\n", + " [0.0596397 0.09173387 0.99399598]\n", + " [0.02319607 0.09194479 0.9954939 ]\n", + " [0.20062602 0.0538804 0.97818511]\n", + " [0.16668139 0.0544282 0.98450743]\n", + " [0.13177743 0.05487585 0.98975924]\n", + " [0.09610838 0.05522072 0.99383794]\n", + " [0.05987462 0.05545959 0.99666407]\n", + " [0.02328514 0.05558951 0.99818215]\n", + " [0.20101976 0.018307 0.97941611]\n", + " [0.1670086 0.01849597 0.98578194]\n", + " [0.13203673 0.01865108 0.99106934]\n", + " [0.09629765 0.01877134 0.99517556]\n", + " [0.05999164 0.01885557 0.99802078]\n", + " [0.02332821 0.01890269 0.99954914]]\n", + "DEBUG:root:radec2pix: fitpx: [[ 2.13550000e+03 -4.99999783e-01]\n", + " [ 2.13550000e+03 2.91928571e+02]\n", + " [ 2.13550000e+03 5.84357143e+02]\n", + " [ 2.13550000e+03 8.76785714e+02]\n", + " [ 2.13550000e+03 1.16921429e+03]\n", + " [ 2.13550000e+03 1.46164286e+03]\n", + " [ 2.13550000e+03 1.75407143e+03]\n", + " [ 2.13550000e+03 2.04650000e+03]\n", + " [ 2.13550000e+03 -4.99999783e-01]\n", + " [ 2.42792857e+03 -5.00000080e-01]\n", + " [ 2.72035714e+03 -5.00000178e-01]\n", + " [ 3.01278571e+03 -4.99999867e-01]\n", + " [ 3.30521429e+03 -5.00000095e-01]\n", + " [ 3.59764286e+03 -5.00000221e-01]\n", + " [ 3.89007143e+03 -5.00000185e-01]\n", + " [ 4.18250000e+03 -5.00000018e-01]\n", + " [ 2.13550000e+03 2.04650000e+03]\n", + " [ 2.42792857e+03 2.04650000e+03]\n", + " [ 2.72035714e+03 2.04650000e+03]\n", + " [ 3.01278571e+03 2.04650000e+03]\n", + " [ 3.30521429e+03 2.04650000e+03]\n", + " [ 3.59764286e+03 2.04650000e+03]\n", + " [ 3.89007143e+03 2.04650000e+03]\n", + " [ 4.18250000e+03 2.04650000e+03]\n", + " [ 4.18250000e+03 -5.00000018e-01]\n", + " [ 4.18250000e+03 2.91928571e+02]\n", + " [ 4.18250000e+03 5.84357143e+02]\n", + " [ 4.18250000e+03 8.76785714e+02]\n", + " [ 4.18250000e+03 1.16921429e+03]\n", + " [ 4.18250000e+03 1.46164286e+03]\n", + " [ 4.18250000e+03 1.75407143e+03]\n", + " [ 4.18250000e+03 2.04650000e+03]\n", + " [ 2.13650000e+03 1.27000000e+02]\n", + " [ 2.13650000e+03 4.85400000e+02]\n", + " [ 2.13650000e+03 8.43800000e+02]\n", + " [ 2.13650000e+03 1.20220000e+03]\n", + " [ 2.13650000e+03 1.56060000e+03]\n", + " [ 2.13650000e+03 1.91900000e+03]\n", + " [ 2.26300000e+03 4.99999873e-01]\n", + " [ 2.62140000e+03 5.00000123e-01]\n", + " [ 2.97980000e+03 5.00000108e-01]\n", + " [ 3.33820000e+03 4.99999719e-01]\n", + " [ 3.69660000e+03 4.99999964e-01]\n", + " [ 4.05500000e+03 5.00000185e-01]\n", + " [ 2.26300000e+03 2.04550000e+03]\n", + " [ 2.62140000e+03 2.04550000e+03]\n", + " [ 2.97980000e+03 2.04550000e+03]\n", + " [ 3.33820000e+03 2.04550000e+03]\n", + " [ 3.69660000e+03 2.04550000e+03]\n", + " [ 4.05500000e+03 2.04550000e+03]\n", + " [ 4.18150000e+03 1.27000000e+02]\n", + " [ 4.18150000e+03 4.85400000e+02]\n", + " [ 4.18150000e+03 8.43800000e+02]\n", + " [ 4.18150000e+03 1.20220000e+03]\n", + " [ 4.18150000e+03 1.56060000e+03]\n", + " [ 4.18150000e+03 1.91900000e+03]\n", + " [ 2.13650000e+03 4.99999853e-01]\n", + " [ 2.13650000e+03 4.99999853e-01]\n", + " [ 4.18150000e+03 2.04550000e+03]\n", + " [ 4.18150000e+03 2.04550000e+03]\n", + " [ 2.26300000e+03 1.27000000e+02]\n", + " [ 2.62140000e+03 1.27000000e+02]\n", + " [ 2.97980000e+03 1.27000000e+02]\n", + " [ 3.33820000e+03 1.27000000e+02]\n", + " [ 3.69660000e+03 1.27000000e+02]\n", + " [ 4.05500000e+03 1.27000000e+02]\n", + " [ 2.26300000e+03 4.85400000e+02]\n", + " [ 2.62140000e+03 4.85400000e+02]\n", + " [ 2.97980000e+03 4.85400000e+02]\n", + " [ 3.33820000e+03 4.85400000e+02]\n", + " [ 3.69660000e+03 4.85400000e+02]\n", + " [ 4.05500000e+03 4.85400000e+02]\n", + " [ 2.26300000e+03 8.43800000e+02]\n", + " [ 2.62140000e+03 8.43800000e+02]\n", + " [ 2.97980000e+03 8.43800000e+02]\n", + " [ 3.33820000e+03 8.43800000e+02]\n", + " [ 3.69660000e+03 8.43800000e+02]\n", + " [ 4.05500000e+03 8.43800000e+02]\n", + " [ 2.26300000e+03 1.20220000e+03]\n", + " [ 2.62140000e+03 1.20220000e+03]\n", + " [ 2.97980000e+03 1.20220000e+03]\n", + " [ 3.33820000e+03 1.20220000e+03]\n", + " [ 3.69660000e+03 1.20220000e+03]\n", + " [ 4.05500000e+03 1.20220000e+03]\n", + " [ 2.26300000e+03 1.56060000e+03]\n", + " [ 2.62140000e+03 1.56060000e+03]\n", + " [ 2.97980000e+03 1.56060000e+03]\n", + " [ 3.33820000e+03 1.56060000e+03]\n", + " [ 3.69660000e+03 1.56060000e+03]\n", + " [ 4.05500000e+03 1.56060000e+03]\n", + " [ 2.26300000e+03 1.91900000e+03]\n", + " [ 2.62140000e+03 1.91900000e+03]\n", + " [ 2.97980000e+03 1.91900000e+03]\n", + " [ 3.33820000e+03 1.91900000e+03]\n", + " [ 3.69660000e+03 1.91900000e+03]\n", + " [ 4.05500000e+03 1.91900000e+03]]\n", + "DEBUG:root:fitpix2pix: ccdpx: shape: (96, 2)\n", + "DEBUG:root:fitpix2pix: visCut: True\n", + "DEBUG:root:radec2pix: camVec: [[-0.00114705 -0.00115629 -0.0011641 -0.00117048 -0.00117539 -0.00117881\n", + " -0.00118068 -0.00118097 -0.00114705 -0.03018244 -0.05910007 -0.08778716\n", + " -0.11613176 -0.14402308 -0.17135219 -0.19801388 -0.00118097 -0.03121228\n", + " -0.06111791 -0.09077999 -0.12008538 -0.14892541 -0.17719395 -0.20478471\n", + " -0.19801388 -0.19975823 -0.20124936 -0.20248221 -0.20345393 -0.20416257\n", + " -0.20460656 -0.20478471 -0.00125101 -0.00126235 -0.00127136 -0.00127799\n", + " -0.00128216 -0.00128379 -0.01381426 -0.04933618 -0.08456905 -0.11930642\n", + " -0.15334441 -0.18648385 -0.01428247 -0.05101935 -0.08744986 -0.12336368\n", + " -0.15856056 -0.19284509 -0.1987148 -0.20068229 -0.20226422 -0.20345456\n", + " -0.20424964 -0.20464672 -0.00124645 -0.00124645 -0.20469148 -0.20469148\n", + " -0.01386808 -0.04952932 -0.08490071 -0.11977552 -0.15394951 -0.18722234\n", + " -0.01400325 -0.05001432 -0.08573269 -0.12095098 -0.15546507 -0.18907339\n", + " -0.01411268 -0.05040698 -0.08640482 -0.12189811 -0.15668376 -0.19056116\n", + " -0.01419584 -0.05070556 -0.08691471 -0.12261435 -0.15760261 -0.19168088\n", + " -0.01425179 -0.05090701 -0.08725814 -0.12309542 -0.15821798 -0.19242913\n", + " -0.01427955 -0.05100809 -0.08743051 -0.12333654 -0.15852587 -0.19280295]\n", + " [ 0.20838541 0.18089194 0.15270652 0.12393558 0.09468513 0.06506336\n", + " 0.03518275 0.0051606 0.20838541 0.20823844 0.20782077 0.20713345\n", + " 0.20617803 0.20495645 0.20347155 0.2017284 0.0051606 0.00515607\n", + " 0.00514464 0.00512646 0.00510175 0.0050707 0.00503345 0.00499006\n", + " 0.2017284 0.17512925 0.14784829 0.11999042 0.09166442 0.06298098\n", + " 0.03405194 0.00499006 0.19649007 0.1623152 0.12720686 0.09136033\n", + " 0.05497503 0.01826009 0.20826196 0.20789982 0.20713224 0.20596186\n", + " 0.20439232 0.20242966 0.00526224 0.00525184 0.00523103 0.00520016\n", + " 0.00515961 0.0051096 0.19022738 0.157155 0.12316211 0.08844755\n", + " 0.05321501 0.01767079 0.20829266 0.20829266 0.0050897 0.0050897\n", + " 0.19646111 0.19611969 0.19539637 0.19429398 0.1928159 0.19096695\n", + " 0.16229116 0.16200846 0.16141067 0.16050163 0.15928501 0.15776388\n", + " 0.1271878 0.12696445 0.12649338 0.12577923 0.12482642 0.12363768\n", + " 0.0913464 0.09118412 0.09084281 0.0903271 0.0896414 0.08878838\n", + " 0.05496643 0.05486748 0.05466012 0.05434775 0.0539337 0.05341999\n", + " 0.01825699 0.0182233 0.01815347 0.01804874 0.01791034 0.01773905]\n", + " [ 0.97804612 0.9835023 0.9882709 0.99228958 0.99550658 0.99788044\n", + " 0.9993802 0.99998599 0.97804612 0.97761228 0.9763799 0.97436602\n", + " 0.9715987 0.96811684 0.96396979 0.95921643 0.99998599 0.99949948\n", + " 0.99811729 0.99585778 0.99275046 0.98883543 0.98416308 0.97879432\n", + " 0.95921643 0.96406763 0.96831791 0.97190702 0.97478415 0.97690892\n", + " 0.97825182 0.97879432 0.98050502 0.98673815 0.99187539 0.99581708\n", + " 0.99848691 0.99983245 0.97797552 0.97690512 0.97465087 0.97125985\n", + " 0.96680364 0.96137714 0.99988415 0.99868386 0.99615519 0.9923479\n", + " 0.98733577 0.98121591 0.96141873 0.96696894 0.9715556 0.97508116\n", + " 0.97747135 0.97867638 0.97806575 0.97806575 0.97881331 0.97881331\n", + " 0.98041354 0.9793283 0.97704254 0.97360345 0.96908285 0.96357637\n", + " 0.98664355 0.98552109 0.9831564 0.9795969 0.97491482 0.9692068\n", + " 0.99177825 0.99062564 0.98819716 0.98454072 0.97972882 0.97385839\n", + " 0.99571799 0.99454231 0.99206523 0.98833534 0.98342556 0.97743289\n", + " 0.99838649 0.99719508 0.99468502 0.99090557 0.98593013 0.97985577\n", + " 0.99973135 0.99853197 0.9960052 0.99220076 0.98719237 0.98107714]]\n", + "DEBUG:root:radec2pix: camVec Shape: (3, 96)\n", + "DEBUG:root:radec2pix: lng: [44.41301872 40.14838159 35.2726464 29.73151826 23.50476184 16.63082675\n", + " 9.22889701 1.50432057 44.41301872 48.59866885 53.40161123 58.88530587\n", + " 65.08233359 71.96812796 79.43489015 87.28054707 1.50432057 1.74246974\n", + " 2.06969874 2.54744544 3.31042966 4.7219858 8.21053157 29.59292215\n", + " 87.28054707 86.84336495 86.23844627 85.3466032 83.90123984 81.16110163\n", + " 74.05596575 29.59292215 42.63779834 37.00767795 30.40255608 22.76985585\n", + " 14.18292146 4.89797993 46.15318169 51.6896036 58.21907141 65.81559375\n", + " 74.43095985 83.82681521 1.62803312 1.98053876 2.52674891 3.48654093\n", + " 5.61341407 14.22621651 87.07688216 86.43225722 85.42259355 83.61713665\n", + " 79.48054112 61.32403216 44.41274552 44.41274552 29.77842334 29.77842334\n", + " 44.37598019 49.94895822 56.60624337 64.45998446 73.48745603 83.43540409\n", + " 38.69437311 44.24100899 51.15696074 59.72888922 70.09435151 81.99961851\n", + " 31.94440422 37.16546071 44.03052128 53.13850244 65.05527755 79.7674455\n", + " 24.03901245 28.4719233 34.66704703 43.65653948 56.97056188 75.84073328\n", + " 15.03271986 18.08395091 22.60822524 29.88026153 42.80777081 67.27233698\n", + " 5.20360826 6.3196744 8.04022063 11.03037054 17.44810995 39.01761856]\n", + "DEBUG:root:optics_fp: xyfp: [[ -0.230877 31.363511 ]\n", + " [ -0.230877 26.97708243]\n", + " [ -0.230877 22.59065386]\n", + " [ -0.230877 18.20422528]\n", + " [ -0.230877 13.81779671]\n", + " [ -0.230877 9.43136815]\n", + " [ -0.230877 5.04493957]\n", + " [ -0.230877 0.658511 ]\n", + " [ -0.230877 31.363511 ]\n", + " [ -4.61730557 31.363511 ]\n", + " [ -9.00373414 31.363511 ]\n", + " [-13.39016272 31.363511 ]\n", + " [-17.77659129 31.363511 ]\n", + " [-22.16301986 31.363511 ]\n", + " [-26.54944843 31.363511 ]\n", + " [-30.935877 31.363511 ]\n", + " [ -0.230877 0.658511 ]\n", + " [ -4.61730558 0.658511 ]\n", + " [ -9.00373414 0.658511 ]\n", + " [-13.39016271 0.658511 ]\n", + " [-17.77659128 0.658511 ]\n", + " [-22.16301986 0.658511 ]\n", + " [-26.54944843 0.658511 ]\n", + " [-30.935877 0.658511 ]\n", + " [-30.935877 31.363511 ]\n", + " [-30.935877 26.97708243]\n", + " [-30.935877 22.59065386]\n", + " [-30.935877 18.20422528]\n", + " [-30.935877 13.81779671]\n", + " [-30.935877 9.43136814]\n", + " [-30.935877 5.04493957]\n", + " [-30.935877 0.658511 ]\n", + " [ -0.245877 29.451011 ]\n", + " [ -0.245877 24.075011 ]\n", + " [ -0.245877 18.699011 ]\n", + " [ -0.245877 13.323011 ]\n", + " [ -0.245877 7.947011 ]\n", + " [ -0.245877 2.571011 ]\n", + " [ -2.143377 31.348511 ]\n", + " [ -7.519377 31.348511 ]\n", + " [-12.895377 31.348511 ]\n", + " [-18.271377 31.348511 ]\n", + " [-23.647377 31.348511 ]\n", + " [-29.023377 31.348511 ]\n", + " [ -2.143377 0.673511 ]\n", + " [ -7.519377 0.673511 ]\n", + " [-12.895377 0.673511 ]\n", + " [-18.271377 0.673511 ]\n", + " [-23.64737701 0.673511 ]\n", + " [-29.023377 0.673511 ]\n", + " [-30.920877 29.451011 ]\n", + " [-30.920877 24.075011 ]\n", + " [-30.920877 18.699011 ]\n", + " [-30.920877 13.323011 ]\n", + " [-30.920877 7.947011 ]\n", + " [-30.920877 2.571011 ]\n", + " [ -0.245877 31.348511 ]\n", + " [ -0.245877 31.348511 ]\n", + " [-30.920877 0.673511 ]\n", + " [-30.920877 0.673511 ]\n", + " [ -2.143377 29.451011 ]\n", + " [ -7.519377 29.451011 ]\n", + " [-12.895377 29.451011 ]\n", + " [-18.271377 29.451011 ]\n", + " [-23.647377 29.451011 ]\n", + " [-29.023377 29.451011 ]\n", + " [ -2.143377 24.075011 ]\n", + " [ -7.519377 24.075011 ]\n", + " [-12.895377 24.075011 ]\n", + " [-18.271377 24.075011 ]\n", + " [-23.647377 24.075011 ]\n", + " [-29.023377 24.075011 ]\n", + " [ -2.143377 18.699011 ]\n", + " [ -7.519377 18.699011 ]\n", + " [-12.895377 18.699011 ]\n", + " [-18.271377 18.699011 ]\n", + " [-23.647377 18.699011 ]\n", + " [-29.023377 18.699011 ]\n", + " [ -2.143377 13.323011 ]\n", + " [ -7.519377 13.323011 ]\n", + " [-12.895377 13.323011 ]\n", + " [-18.271377 13.323011 ]\n", + " [-23.647377 13.323011 ]\n", + " [-29.023377 13.323011 ]\n", + " [ -2.143377 7.947011 ]\n", + " [ -7.519377 7.947011 ]\n", + " [-12.895377 7.947011 ]\n", + " [-18.271377 7.947011 ]\n", + " [-23.647377 7.947011 ]\n", + " [-29.023377 7.947011 ]\n", + " [ -2.143377 2.571011 ]\n", + " [ -7.519377 2.571011 ]\n", + " [-12.895377 2.571011 ]\n", + " [-18.271377 2.571011 ]\n", + " [-23.647377 2.571011 ]\n", + " [-29.023377 2.571011 ]]\n", + "DEBUG:root:radec2pix: lat: [73.25344023 74.2369792 75.15226824 75.97162966 76.66508667 77.2021609\n", + " 77.55512574 77.70337791 73.25344023 74.25967575 75.20183236 76.05214643\n", + " 76.78010612 77.3540472 77.74432055 77.92785326 77.70337791 79.30226543\n", + " 80.93361724 82.59207196 84.27220803 85.96793867 87.66996871 89.32519361\n", + " 77.92785326 79.53024676 81.16372478 82.82252521 84.50025464 86.18804733\n", + " 87.86471391 89.32519361 73.6926739 74.85593178 75.88945702 76.73895525\n", + " 77.34864846 77.67018969 73.7019933 74.89586821 75.96623187 76.85800237\n", + " 77.51320661 77.87970489 78.39600189 80.37807975 82.40356131 84.46248138\n", + " 86.54333738 88.62073148 78.62203863 80.60748554 82.6338837 84.6897052\n", + " 86.75764582 88.76495286 73.26041353 73.26041353 89.31716551 89.31716551\n", + " 74.15313309 75.40228414 76.52877477 77.47347648 78.17205407 78.56478282\n", + " 75.37129959 76.78525096 78.08623827 79.20344298 80.05020166 80.53598707\n", + " 76.45984424 78.04591405 79.54291278 80.87169379 81.91843153 82.54064538\n", + " 77.36022478 79.11290918 80.81670049 82.39645142 83.71831262 84.55871556\n", + " 78.01034 79.90138935 81.79317677 83.63609258 85.31869407 86.54472849\n", + " 78.35474014 80.32671962 82.33692434 84.36964547 86.39457329 88.27941972]\n", + "DEBUG:root:optics_fp: xyfp shape: (96, 2)\n", + "DEBUG:root:cartToSphere: vec: [[-0.00114705 0.20838541 0.97804612]\n", + " [-0.00115629 0.18089194 0.9835023 ]\n", + " [-0.0011641 0.15270652 0.9882709 ]\n", + " [-0.00117048 0.12393558 0.99228958]\n", + " [-0.00117539 0.09468513 0.99550658]\n", + " [-0.00117881 0.06506336 0.99788044]\n", + " [-0.00118068 0.03518275 0.9993802 ]\n", + " [-0.00118097 0.0051606 0.99998599]\n", + " [-0.00114705 0.20838541 0.97804612]\n", + " [-0.03018244 0.20823844 0.97761228]\n", + " [-0.05910007 0.20782077 0.9763799 ]\n", + " [-0.08778716 0.20713345 0.97436602]\n", + " [-0.11613176 0.20617803 0.9715987 ]\n", + " [-0.14402308 0.20495645 0.96811684]\n", + " [-0.17135219 0.20347155 0.96396979]\n", + " [-0.19801388 0.2017284 0.95921643]\n", + " [-0.00118097 0.0051606 0.99998599]\n", + " [-0.03121228 0.00515607 0.99949948]\n", + " [-0.06111791 0.00514464 0.99811729]\n", + " [-0.09077999 0.00512646 0.99585778]\n", + " [-0.12008538 0.00510175 0.99275046]\n", + " [-0.14892541 0.0050707 0.98883543]\n", + " [-0.17719395 0.00503345 0.98416308]\n", + " [-0.20478471 0.00499006 0.97879432]\n", + " [-0.19801388 0.2017284 0.95921643]\n", + " [-0.19975823 0.17512925 0.96406763]\n", + " [-0.20124936 0.14784829 0.96831791]\n", + " [-0.20248221 0.11999042 0.97190702]\n", + " [-0.20345393 0.09166442 0.97478415]\n", + " [-0.20416257 0.06298098 0.97690892]\n", + " [-0.20460656 0.03405194 0.97825182]\n", + " [-0.20478471 0.00499006 0.97879432]\n", + " [-0.00125101 0.19649007 0.98050502]\n", + " [-0.00126235 0.1623152 0.98673815]\n", + " [-0.00127136 0.12720686 0.99187539]\n", + " [-0.00127799 0.09136033 0.99581708]\n", + " [-0.00128216 0.05497503 0.99848691]\n", + " [-0.00128379 0.01826009 0.99983245]\n", + " [-0.01381426 0.20826196 0.97797552]\n", + " [-0.04933618 0.20789982 0.97690512]\n", + " [-0.08456905 0.20713224 0.97465087]\n", + " [-0.11930642 0.20596186 0.97125985]\n", + " [-0.15334441 0.20439232 0.96680364]\n", + " [-0.18648385 0.20242966 0.96137714]\n", + " [-0.01428247 0.00526224 0.99988415]\n", + " [-0.05101935 0.00525184 0.99868386]\n", + " [-0.08744986 0.00523103 0.99615519]\n", + " [-0.12336368 0.00520016 0.9923479 ]\n", + " [-0.15856056 0.00515961 0.98733577]\n", + " [-0.19284509 0.0051096 0.98121591]\n", + " [-0.1987148 0.19022738 0.96141873]\n", + " [-0.20068229 0.157155 0.96696894]\n", + " [-0.20226422 0.12316211 0.9715556 ]\n", + " [-0.20345456 0.08844755 0.97508116]\n", + " [-0.20424964 0.05321501 0.97747135]\n", + " [-0.20464672 0.01767079 0.97867638]\n", + " [-0.00124645 0.20829266 0.97806575]\n", + " [-0.00124645 0.20829266 0.97806575]\n", + " [-0.20469148 0.0050897 0.97881331]\n", + " [-0.20469148 0.0050897 0.97881331]\n", + " [-0.01386808 0.19646111 0.98041354]\n", + " [-0.04952932 0.19611969 0.9793283 ]\n", + " [-0.08490071 0.19539637 0.97704254]\n", + " [-0.11977552 0.19429398 0.97360345]\n", + " [-0.15394951 0.1928159 0.96908285]\n", + " [-0.18722234 0.19096695 0.96357637]\n", + " [-0.01400325 0.16229116 0.98664355]\n", + " [-0.05001432 0.16200846 0.98552109]\n", + " [-0.08573269 0.16141067 0.9831564 ]\n", + " [-0.12095098 0.16050163 0.9795969 ]\n", + " [-0.15546507 0.15928501 0.97491482]\n", + " [-0.18907339 0.15776388 0.9692068 ]\n", + " [-0.01411268 0.1271878 0.99177825]\n", + " [-0.05040698 0.12696445 0.99062564]\n", + " [-0.08640482 0.12649338 0.98819716]\n", + " [-0.12189811 0.12577923 0.98454072]\n", + " [-0.15668376 0.12482642 0.97972882]\n", + " [-0.19056116 0.12363768 0.97385839]\n", + " [-0.01419584 0.0913464 0.99571799]\n", + " [-0.05070556 0.09118412 0.99454231]\n", + " [-0.08691471 0.09084281 0.99206523]\n", + " [-0.12261435 0.0903271 0.98833534]\n", + " [-0.15760261 0.0896414 0.98342556]\n", + " [-0.19168088 0.08878838 0.97743289]\n", + " [-0.01425179 0.05496643 0.99838649]\n", + " [-0.05090701 0.05486748 0.99719508]\n", + " [-0.08725814 0.05466012 0.99468502]\n", + " [-0.12309542 0.05434775 0.99090557]\n", + " [-0.15821798 0.0539337 0.98593013]\n", + " [-0.19242913 0.05341999 0.97985577]\n", + " [-0.01427955 0.01825699 0.99973135]\n", + " [-0.05100809 0.0182233 0.99853197]\n", + " [-0.08743051 0.01815347 0.9960052 ]\n", + " [-0.12333654 0.01804874 0.99220076]\n", + " [-0.15852587 0.01791034 0.98719237]\n", + " [-0.19280295 0.01773905 0.98107714]]\n", + "DEBUG:root:make_az_asym: xyp: [[ -0.230877 31.363511 ]\n", + " [ -0.230877 26.97708243]\n", + " [ -0.230877 22.59065386]\n", + " [ -0.230877 18.20422528]\n", + " [ -0.230877 13.81779671]\n", + " [ -0.230877 9.43136815]\n", + " [ -0.230877 5.04493957]\n", + " [ -0.230877 0.658511 ]\n", + " [ -0.230877 31.363511 ]\n", + " [ -4.61730557 31.363511 ]\n", + " [ -9.00373414 31.363511 ]\n", + " [-13.39016272 31.363511 ]\n", + " [-17.77659129 31.363511 ]\n", + " [-22.16301986 31.363511 ]\n", + " [-26.54944843 31.363511 ]\n", + " [-30.935877 31.363511 ]\n", + " [ -0.230877 0.658511 ]\n", + " [ -4.61730558 0.658511 ]\n", + " [ -9.00373414 0.658511 ]\n", + " [-13.39016271 0.658511 ]\n", + " [-17.77659128 0.658511 ]\n", + " [-22.16301986 0.658511 ]\n", + " [-26.54944843 0.658511 ]\n", + " [-30.935877 0.658511 ]\n", + " [-30.935877 31.363511 ]\n", + " [-30.935877 26.97708243]\n", + " [-30.935877 22.59065386]\n", + " [-30.935877 18.20422528]\n", + " [-30.935877 13.81779671]\n", + " [-30.935877 9.43136814]\n", + " [-30.935877 5.04493957]\n", + " [-30.935877 0.658511 ]\n", + " [ -0.245877 29.451011 ]\n", + " [ -0.245877 24.075011 ]\n", + " [ -0.245877 18.699011 ]\n", + " [ -0.245877 13.323011 ]\n", + " [ -0.245877 7.947011 ]\n", + " [ -0.245877 2.571011 ]\n", + " [ -2.143377 31.348511 ]\n", + " [ -7.519377 31.348511 ]\n", + " [-12.895377 31.348511 ]\n", + " [-18.271377 31.348511 ]\n", + " [-23.647377 31.348511 ]\n", + " [-29.023377 31.348511 ]\n", + " [ -2.143377 0.673511 ]\n", + " [ -7.519377 0.673511 ]\n", + " [-12.895377 0.673511 ]\n", + " [-18.271377 0.673511 ]\n", + " [-23.64737701 0.673511 ]\n", + " [-29.023377 0.673511 ]\n", + " [-30.920877 29.451011 ]\n", + " [-30.920877 24.075011 ]\n", + " [-30.920877 18.699011 ]\n", + " [-30.920877 13.323011 ]\n", + " [-30.920877 7.947011 ]\n", + " [-30.920877 2.571011 ]\n", + " [ -0.245877 31.348511 ]\n", + " [ -0.245877 31.348511 ]\n", + " [-30.920877 0.673511 ]\n", + " [-30.920877 0.673511 ]\n", + " [ -2.143377 29.451011 ]\n", + " [ -7.519377 29.451011 ]\n", + " [-12.895377 29.451011 ]\n", + " [-18.271377 29.451011 ]\n", + " [-23.647377 29.451011 ]\n", + " [-29.023377 29.451011 ]\n", + " [ -2.143377 24.075011 ]\n", + " [ -7.519377 24.075011 ]\n", + " [-12.895377 24.075011 ]\n", + " [-18.271377 24.075011 ]\n", + " [-23.647377 24.075011 ]\n", + " [-29.023377 24.075011 ]\n", + " [ -2.143377 18.699011 ]\n", + " [ -7.519377 18.699011 ]\n", + " [-12.895377 18.699011 ]\n", + " [-18.271377 18.699011 ]\n", + " [-23.647377 18.699011 ]\n", + " [-29.023377 18.699011 ]\n", + " [ -2.143377 13.323011 ]\n", + " [ -7.519377 13.323011 ]\n", + " [-12.895377 13.323011 ]\n", + " [-18.271377 13.323011 ]\n", + " [-23.647377 13.323011 ]\n", + " [-29.023377 13.323011 ]\n", + " [ -2.143377 7.947011 ]\n", + " [ -7.519377 7.947011 ]\n", + " [-12.895377 7.947011 ]\n", + " [-18.271377 7.947011 ]\n", + " [-23.647377 7.947011 ]\n", + " [-29.023377 7.947011 ]\n", + " [ -2.143377 2.571011 ]\n", + " [ -7.519377 2.571011 ]\n", + " [-12.895377 2.571011 ]\n", + " [-18.271377 2.571011 ]\n", + " [-23.647377 2.571011 ]\n", + " [-29.023377 2.571011 ]]\n", + "DEBUG:root:make_az_asym: xyp: shape: (96, 2)\n", + "DEBUG:root:radec2pix: lng: [ 90.31538026 90.36623882 90.43676438 90.5410988 90.71121584\n", + " 91.03796151 91.92203204 102.88976492 90.31538026 98.24711833\n", + " 105.87469321 112.96816895 119.3908045 125.09574844 130.10218059\n", + " 134.46760759 102.88976492 170.61981741 175.18843619 176.76786642\n", + " 177.56728748 178.0499121 178.37286738 178.60412954 134.46760759\n", + " 138.7587586 143.69705248 149.3491301 155.74646239 162.85581906\n", + " 170.55107093 178.60412954 90.36478543 90.44558973 90.57261901\n", + " 90.80142559 91.33604138 94.02159324 93.79493665 103.34977578\n", + " 112.20947139 120.08219547 126.87889854 132.65213472 159.7741798\n", + " 174.12277646 176.57679256 177.5862344 178.13623505 178.48225333\n", + " 136.25009833 141.93538112 148.66205842 156.50402904 165.39685811\n", + " 175.06487905 90.34286209 90.34286209 178.57562014 178.57562014\n", + " 94.0377805 104.17347615 113.48518905 121.65239591 128.60482826\n", + " 134.43270854 94.93153704 107.15620301 117.97484261 127.00098521\n", + " 134.30466928 140.15819331 96.33160595 111.65389266 124.33611449\n", + " 134.10224284 141.45645803 147.02415603 98.83348775 119.07751066\n", + " 133.73407847 143.6218029 150.36959526 155.14598444 104.53566541\n", + " 132.85570308 147.93620706 156.17810512 161.17666862 164.48488524\n", + " 128.03043433 160.3400738 168.27016728 171.67458296 173.55402386\n", + " 174.74323713]\n", + "DEBUG:root:radec2pix: lat: [77.97206498 79.57806769 81.21593647 82.8803899 84.56638266 86.26889583\n", + " 87.98262539 89.69667435 77.97206498 77.85336036 77.52222772 76.99897078\n", + " 76.31199967 75.49295235 74.57292056 73.58021644 89.69667435 88.18712874\n", + " 86.48361023 84.78319776 83.0967184 81.43034165 79.78948121 78.17954495\n", + " 73.58021644 74.59400834 75.53901524 76.38685312 77.10589211 77.66330027\n", + " 78.02875412 78.17954495 78.66798463 80.65841057 82.69141578 84.75761477\n", + " 86.84771627 88.95113309 77.95267103 77.66228009 77.07171569 76.23019363\n", + " 75.19557036 74.02401451 89.12786485 87.06007007 84.97409331 82.90740441\n", + " 80.87177406 78.87718093 74.03267423 75.23268127 76.30156716 77.18237665\n", + " 77.81504555 78.14660304 77.97746528 77.97746528 78.18485708 78.18485708\n", + " 78.64134167 78.32984157 77.69918411 76.80616019 75.71557851 74.48840848\n", + " 80.62507537 80.23817759 79.46907283 78.40617113 77.13948546 75.74438817\n", + " 82.64779184 82.14857946 81.18831589 79.91227353 78.44384133 76.87031089\n", + " 84.69583972 84.01119948 82.77741875 81.24014725 79.55379065 77.80461009\n", + " 86.74476583 85.70761057 84.09008812 82.26687253 80.3773841 78.48020641\n", + " 88.67187538 86.89501933 84.87693536 82.83944721 80.82012657 78.83603949]\n", + "DEBUG:root:optics_fp: rtanth: [45.08354623 42.13009767 39.44420909 37.08406184 35.11539785 33.60708557\n", + " 32.6230401 32.21134587 45.08354623 42.06280558 39.30031295 36.85418691\n", + " 34.79122159 33.18295674 32.09781375 31.58974814 32.21134587 27.8266828\n", + " 23.4426803 19.05979422 14.67902457 10.30307141 5.94258442 1.71954938\n", + " 31.58974814 27.2090275 22.83049885 18.45572241 14.0881941 9.73767156\n", + " 5.44507054 1.71954938 43.75525849 40.30775232 37.31902868 34.90712904\n", + " 33.19801449 32.30342747 43.72724359 40.19104921 37.09948507 34.57203928\n", + " 32.73962065 31.72289982 30.29997699 24.92663654 19.55475813 14.18600274\n", + " 8.82607125 3.51555769 29.68028893 24.31279095 18.95011366 13.59796176\n", + " 8.27677911 3.14775039 45.06233412 45.06233412 1.74001001 1.74001001\n", + " 42.37901039 38.71988024 35.50042932 32.85018402 30.91587699 29.8370753\n", + " 38.80944181 34.77673616 31.15241137 28.09496116 25.80666004 24.50394488\n", + " 35.69548681 31.26365913 27.1747629 23.607665 20.83215559 19.19474717\n", + " 33.16572831 28.34103278 23.75427319 19.57344126 16.11758242 13.93686031\n", + " 31.36185649 26.20714877 21.16284486 16.33156793 11.97401233 8.82250437\n", + " 30.41330799 25.06427551 19.72990783 14.4264816 9.20761812 4.38632462]\n", + "DEBUG:root:radec2pix: xyfp: [[ -0.230877 31.363511 ]\n", + " [ -0.230877 26.97708243]\n", + " [ -0.230877 22.59065386]\n", + " [ -0.230877 18.20422528]\n", + " [ -0.230877 13.81779671]\n", + " [ -0.230877 9.43136815]\n", + " [ -0.230877 5.04493957]\n", + " [ -0.230877 0.658511 ]\n", + " [ -0.230877 31.363511 ]\n", + " [ -4.61730557 31.363511 ]\n", + " [ -9.00373414 31.363511 ]\n", + " [-13.39016272 31.363511 ]\n", + " [-17.77659129 31.363511 ]\n", + " [-22.16301986 31.363511 ]\n", + " [-26.54944843 31.363511 ]\n", + " [-30.935877 31.363511 ]\n", + " [ -0.230877 0.658511 ]\n", + " [ -4.61730558 0.658511 ]\n", + " [ -9.00373414 0.658511 ]\n", + " [-13.39016271 0.658511 ]\n", + " [-17.77659128 0.658511 ]\n", + " [-22.16301986 0.658511 ]\n", + " [-26.54944843 0.658511 ]\n", + " [-30.935877 0.658511 ]\n", + " [-30.935877 31.363511 ]\n", + " [-30.935877 26.97708243]\n", + " [-30.935877 22.59065386]\n", + " [-30.935877 18.20422528]\n", + " [-30.935877 13.81779671]\n", + " [-30.935877 9.43136814]\n", + " [-30.935877 5.04493957]\n", + " [-30.935877 0.658511 ]\n", + " [ -0.245877 29.451011 ]\n", + " [ -0.245877 24.075011 ]\n", + " [ -0.245877 18.699011 ]\n", + " [ -0.245877 13.323011 ]\n", + " [ -0.245877 7.947011 ]\n", + " [ -0.245877 2.571011 ]\n", + " [ -2.143377 31.348511 ]\n", + " [ -7.519377 31.348511 ]\n", + " [-12.895377 31.348511 ]\n", + " [-18.271377 31.348511 ]\n", + " [-23.647377 31.348511 ]\n", + " [-29.023377 31.348511 ]\n", + " [ -2.143377 0.673511 ]\n", + " [ -7.519377 0.673511 ]\n", + " [-12.895377 0.673511 ]\n", + " [-18.271377 0.673511 ]\n", + " [-23.64737701 0.673511 ]\n", + " [-29.023377 0.673511 ]\n", + " [-30.920877 29.451011 ]\n", + " [-30.920877 24.075011 ]\n", + " [-30.920877 18.699011 ]\n", + " [-30.920877 13.323011 ]\n", + " [-30.920877 7.947011 ]\n", + " [-30.920877 2.571011 ]\n", + " [ -0.245877 31.348511 ]\n", + " [ -0.245877 31.348511 ]\n", + " [-30.920877 0.673511 ]\n", + " [-30.920877 0.673511 ]\n", + " [ -2.143377 29.451011 ]\n", + " [ -7.519377 29.451011 ]\n", + " [-12.895377 29.451011 ]\n", + " [-18.271377 29.451011 ]\n", + " [-23.647377 29.451011 ]\n", + " [-29.023377 29.451011 ]\n", + " [ -2.143377 24.075011 ]\n", + " [ -7.519377 24.075011 ]\n", + " [-12.895377 24.075011 ]\n", + " [-18.271377 24.075011 ]\n", + " [-23.647377 24.075011 ]\n", + " [-29.023377 24.075011 ]\n", + " [ -2.143377 18.699011 ]\n", + " [ -7.519377 18.699011 ]\n", + " [-12.895377 18.699011 ]\n", + " [-18.271377 18.699011 ]\n", + " [-23.647377 18.699011 ]\n", + " [-29.023377 18.699011 ]\n", + " [ -2.143377 13.323011 ]\n", + " [ -7.519377 13.323011 ]\n", + " [-12.895377 13.323011 ]\n", + " [-18.271377 13.323011 ]\n", + " [-23.647377 13.323011 ]\n", + " [-29.023377 13.323011 ]\n", + " [ -2.143377 7.947011 ]\n", + " [ -7.519377 7.947011 ]\n", + " [-12.895377 7.947011 ]\n", + " [-18.271377 7.947011 ]\n", + " [-23.647377 7.947011 ]\n", + " [-29.023377 7.947011 ]\n", + " [ -2.143377 2.571011 ]\n", + " [ -7.519377 2.571011 ]\n", + " [-12.895377 2.571011 ]\n", + " [-18.271377 2.571011 ]\n", + " [-23.647377 2.571011 ]\n", + " [-29.023377 2.571011 ]]\n", + "DEBUG:root:radec2pix: xyfp Shape: (96, 2)\n", + "DEBUG:root:optics_fp: cphi: [0.71431368 0.76437722 0.81641337 0.86835883 0.91702693 0.95816873\n", + " 0.9870555 0.99965535 0.71431368 0.66132929 0.5962023 0.51675291\n", + " 0.42131547 0.30954599 0.18335276 0.04744559 0.99965535 0.9995376\n", + " 0.99934763 0.99901176 0.99833132 0.99660587 0.98975 0.86955594\n", + " 0.04744559 0.05506581 0.06560435 0.08112784 0.10624255 0.15365671\n", + " 0.27469828 0.86955594 0.73565039 0.79855486 0.86249109 0.9220669\n", + " 0.96951843 0.99634831 0.69273272 0.61992142 0.52667287 0.40967477\n", + " 0.26839934 0.10753407 0.99959633 0.99940262 0.99902775 0.99814911\n", + " 0.99520453 0.969333 0.0509959 0.06222863 0.07980586 0.1111717\n", + " 0.18256945 0.47985554 0.71431702 0.71431702 0.86795254 0.86795254\n", + " 0.71476593 0.64346978 0.55038977 0.43114136 0.28422526 0.11432331\n", + " 0.78049181 0.71641143 0.62718906 0.50409223 0.34047225 0.13917969\n", + " 0.84856189 0.79689424 0.71896966 0.59988271 0.42174368 0.17764392\n", + " 0.9132683 0.87905083 0.82247132 0.72349099 0.54506987 0.24461812\n", + " 0.96577787 0.95060272 0.92315504 0.86706843 0.73363771 0.38635141\n", + " 0.99587869 0.99392322 0.99017013 0.9815259 0.95398889 0.77695241]\n", + "DEBUG:root:optics_fp: sphi: [0.69982566 0.64476931 0.57746793 0.49593643 0.39882528 0.28620393\n", + " 0.16037903 0.02625233 0.69982566 0.75009571 0.80283424 0.85613459\n", + " 0.90691415 0.95088447 0.98304718 0.99887382 0.02625233 0.03040715\n", + " 0.0361152 0.04444666 0.05774576 0.08232094 0.14281086 0.49383445\n", + " 0.99887382 0.99848273 0.99784571 0.9967037 0.99434024 0.98812429\n", + " 0.96153048 0.49383445 0.67736143 0.60192204 0.50607224 0.38703053\n", + " 0.24501841 0.0853818 0.72119441 0.7846639 0.85006805 0.91223165\n", + " 0.96330774 0.9942014 0.02841071 0.03456004 0.04408579 0.06081407\n", + " 0.0978159 0.24575094 0.99869886 0.99806192 0.99681043 0.99380121\n", + " 0.98319296 0.87734751 0.69982226 0.69982226 0.49664714 0.49664714\n", + " 0.69936375 0.76547151 0.83490784 0.90228439 0.95875753 0.9934436\n", + " 0.62516601 0.69767805 0.77886705 0.86364983 0.94025457 0.99026714\n", + " 0.52909613 0.60411884 0.69504146 0.80008796 0.9067151 0.98409483\n", + " 0.40735858 0.47672806 0.56880658 0.69033382 0.83839063 0.9696195\n", + " 0.25937061 0.31041017 0.38442785 0.49818906 0.67954081 0.92235166\n", + " 0.0906953 0.11007561 0.13986822 0.1913293 0.29984194 0.62955934]\n", + "DEBUG:root:mm_to_pix: fitpx: [[0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]]\n", + "DEBUG:root:mm_to_pix: fitpx.shape: (96, 2)\n", + "DEBUG:root:radec2pix: curVec: [[ 0.56040352 -0.70064005 -0.44164626]\n", + " [ 0.56084743 -0.68561816 -0.46408824]\n", + " [ 0.56075658 -0.66984012 -0.48668909]\n", + " [ 0.56011538 -0.65333717 -0.50933418]\n", + " [ 0.55891459 -0.63614867 -0.53191103]\n", + " [ 0.55715006 -0.61832188 -0.55431207]\n", + " [ 0.55482221 -0.59991185 -0.57643568]\n", + " [ 0.55193597 -0.58098134 -0.59818673]\n", + " [ 0.56040352 -0.70064005 -0.44164626]\n", + " [ 0.53794414 -0.71415044 -0.44788979]\n", + " [ 0.51459614 -0.72734001 -0.45405652]\n", + " [ 0.49043209 -0.74012844 -0.46009375]\n", + " [ 0.46553253 -0.75244161 -0.4659518 ]\n", + " [ 0.43998396 -0.76421228 -0.47158637]\n", + " [ 0.41387802 -0.77538024 -0.4769596 ]\n", + " [ 0.38731124 -0.78589256 -0.48204034]\n", + " [ 0.55193597 -0.58098134 -0.59818673]\n", + " [ 0.528655 -0.59405443 -0.60631941]\n", + " [ 0.50446983 -0.60691743 -0.61413469]\n", + " [ 0.47945586 -0.61949106 -0.62157293]\n", + " [ 0.45369161 -0.6317033 -0.62858162]\n", + " [ 0.42726089 -0.64348843 -0.63511476]\n", + " [ 0.40025495 -0.65478628 -0.64113251]\n", + " [ 0.37277352 -0.66554234 -0.64660135]\n", + " [ 0.38731124 -0.78589256 -0.48204034]\n", + " [ 0.38628498 -0.7712523 -0.50591878]\n", + " [ 0.38492006 -0.7556997 -0.52986272]\n", + " [ 0.38320577 -0.73926394 -0.55375281]\n", + " [ 0.38113503 -0.72198099 -0.57747687]\n", + " [ 0.37870462 -0.7038952 -0.60092791]\n", + " [ 0.37591557 -0.68506074 -0.62400262]\n", + " [ 0.37277352 -0.66554234 -0.64660135]\n", + " [ 0.56058602 -0.69423177 -0.45142614]\n", + " [ 0.56077209 -0.67530898 -0.47905369]\n", + " [ 0.56013877 -0.65528038 -0.50680586]\n", + " [ 0.55866649 -0.63421511 -0.53447447]\n", + " [ 0.55634755 -0.61220012 -0.56186157]\n", + " [ 0.5531846 -0.58934 -0.58878278]\n", + " [ 0.55072674 -0.70651471 -0.44445136]\n", + " [ 0.52259348 -0.72286791 -0.45205978]\n", + " [ 0.49319649 -0.73865882 -0.45950012]\n", + " [ 0.46268091 -0.75374838 -0.4666795 ]\n", + " [ 0.43120588 -0.76801279 -0.47351646]\n", + " [ 0.39894216 -0.78134424 -0.4799441 ]\n", + " [ 0.54191214 -0.58676749 -0.60169356]\n", + " [ 0.51276163 -0.60265967 -0.61145469]\n", + " [ 0.48232755 -0.61815655 -0.62067915]\n", + " [ 0.45075317 -0.63312258 -0.62926733]\n", + " [ 0.418193 -0.64743666 -0.63713451]\n", + " [ 0.38481859 -0.66099032 -0.64420995]\n", + " [ 0.38699647 -0.77958822 -0.49241845]\n", + " [ 0.38551337 -0.76102789 -0.52174322]\n", + " [ 0.38351038 -0.74112552 -0.55104695]\n", + " [ 0.38097297 -0.71994452 -0.58012023]\n", + " [ 0.37789523 -0.69756668 -0.6087659 ]\n", + " [ 0.37428095 -0.67409615 -0.63679522]\n", + " [ 0.5603307 -0.70063665 -0.44174403]\n", + " [ 0.5603307 -0.70063665 -0.44174403]\n", + " [ 0.37287953 -0.66557436 -0.64650725]\n", + " [ 0.37287953 -0.66557436 -0.64650725]\n", + " [ 0.5509468 -0.70011621 -0.454197 ]\n", + " [ 0.52270814 -0.71649127 -0.4619702 ]\n", + " [ 0.4931997 -0.73230936 -0.46954985]\n", + " [ 0.46256792 -0.74743131 -0.47684102]\n", + " [ 0.4309723 -0.76173325 -0.48376165]\n", + " [ 0.3985838 -0.7751071 -0.49024478]\n", + " [ 0.55104122 -0.68119798 -0.48199885]\n", + " [ 0.52253192 -0.69759907 -0.49022028]\n", + " [ 0.49274075 -0.71346216 -0.49817497]\n", + " [ 0.46181585 -0.7286481 -0.50576484]\n", + " [ 0.42991655 -0.74303278 -0.51290744]\n", + " [ 0.39721387 -0.75650723 -0.51953629]\n", + " [ 0.5503302 -0.66115397 -0.50991381]\n", + " [ 0.52159527 -0.67752795 -0.51855014]\n", + " [ 0.491572 -0.69338845 -0.52684858]\n", + " [ 0.460408 -0.70859676 -0.53471029]\n", + " [ 0.42826132 -0.72302868 -0.54205329]\n", + " [ 0.39530288 -0.73657429 -0.54881139]\n", + " [ 0.54879546 -0.64005322 -0.53773173]\n", + " [ 0.51988188 -0.65634651 -0.54674682]\n", + " [ 0.48967752 -0.67215602 -0.55535774]\n", + " [ 0.45832837 -0.68734378 -0.56346573]\n", + " [ 0.42599083 -0.70178591 -0.57098892]\n", + " [ 0.39283587 -0.71537199 -0.57786063]\n", + " [ 0.54642966 -0.61798265 -0.56525398]\n", + " [ 0.51738432 -0.63414144 -0.57461126]\n", + " [ 0.48704907 -0.64985091 -0.58350407]\n", + " [ 0.45556821 -0.66497411 -0.59183362]\n", + " [ 0.42309688 -0.67938803 -0.59951726]\n", + " [ 0.38980619 -0.69298251 -0.60648692]\n", + " [ 0.54323535 -0.59504699 -0.5922959 ]\n", + " [ 0.51410424 -0.61101797 -0.60195836]\n", + " [ 0.48368734 -0.62657871 -0.61110201]\n", + " [ 0.45212797 -0.64159334 -0.61962753]\n", + " [ 0.41958066 -0.65594021 -0.6274508 ]\n", + " [ 0.38621684 -0.66951029 -0.63450179]]\n", + "DEBUG:root:radec2pix: curVec Shape: (96, 3)\n", + "DEBUG:root:optics_fp: rtanth: [31.45867372 27.07232164 22.68599914 18.29972749 13.91355478 9.52761765\n", + " 5.14251895 0.77266756 31.45867372 31.78680319 32.70527593 34.16651578\n", + " 36.10468169 38.44771501 41.12647627 44.07980062 0.77266756 4.62057574\n", + " 8.9768556 13.35288972 17.73406053 22.11731568 26.50162097 30.8865292\n", + " 44.07980062 41.06447698 38.31494783 35.89234872 33.86691125 32.31340541\n", + " 31.3021752 30.8865292 29.54629558 24.17042769 18.79463536 13.41900945\n", + " 8.04388357 2.67227674 31.51224371 32.31623619 33.96261905 36.33706944\n", + " 39.30786805 42.7508727 2.22187045 7.50028847 12.8598094 18.22903784\n", + " 23.60134944 28.97502929 42.72508353 39.20023922 36.1342981 33.65291956\n", + " 31.89283999 30.97725364 31.44375973 31.44375973 30.87190328 30.87190328\n", + " 29.6191671 30.47314683 32.21386423 34.70815714 37.80716925 41.37524227\n", + " 24.25945282 25.29503252 27.36711605 30.26354513 33.77288911 37.72448364\n", + " 18.90898716 20.22047017 22.759345 26.17080258 30.16018539 34.5277484\n", + " 13.57870729 15.35248874 18.5693102 22.62172417 27.13794906 31.92173094\n", + " 8.30755918 10.96964715 15.14772357 19.90921024 24.92192864 30.06045831\n", + " 3.38416012 7.92276206 13.11070286 18.40689143 23.73898749 29.08725072]\n", + "DEBUG:root:optics_fp: xyfp: [[-32.203794 -31.5506227 ]\n", + " [-32.20328688 -27.16419416]\n", + " [-32.20277976 -22.77776561]\n", + " [-32.20227264 -18.39133707]\n", + " [-32.20176553 -14.00490853]\n", + " [-32.20125841 -9.61847999]\n", + " [-32.20075129 -5.23205144]\n", + " [-32.20024417 -0.8456229 ]\n", + " [-32.203794 -31.5506227 ]\n", + " [-27.81736545 -31.55112981]\n", + " [-23.43093691 -31.55163693]\n", + " [-19.04450837 -31.55214405]\n", + " [-14.65807983 -31.55265117]\n", + " [-10.27165129 -31.55315829]\n", + " [ -5.88522274 -31.5536654 ]\n", + " [ -1.4987942 -31.55417252]\n", + " [-32.20024417 -0.8456229 ]\n", + " [-27.81381563 -0.84613002]\n", + " [-23.42738708 -0.84663714]\n", + " [-19.04095854 -0.84714426]\n", + " [-14.65453 -0.84765137]\n", + " [-10.26810146 -0.84815849]\n", + " [ -5.88167292 -0.84866561]\n", + " [ -1.49524438 -0.84917273]\n", + " [ -1.4987942 -31.55417252]\n", + " [ -1.49828708 -27.16774398]\n", + " [ -1.49777997 -22.78131544]\n", + " [ -1.49727285 -18.39488689]\n", + " [ -1.49676573 -14.00845835]\n", + " [ -1.49625861 -9.62202981]\n", + " [ -1.49575149 -5.23560127]\n", + " [ -1.49524438 -0.84917273]\n", + " [-32.18857289 -29.63812445]\n", + " [-32.18795136 -24.26212448]\n", + " [-32.18732984 -18.88612452]\n", + " [-32.18670832 -13.51012455]\n", + " [-32.1860868 -8.13412459]\n", + " [-32.18546528 -2.75812462]\n", + " [-30.29129227 -31.5358438 ]\n", + " [-24.91529231 -31.53646533]\n", + " [-19.53929235 -31.53708685]\n", + " [-14.16329238 -31.53770837]\n", + " [ -8.78729242 -31.53832989]\n", + " [ -3.41129245 -31.53895142]\n", + " [-30.28774592 -0.86084401]\n", + " [-24.91174595 -0.86146553]\n", + " [-19.53574599 -0.86208705]\n", + " [-14.15974603 -0.86270858]\n", + " [ -8.78374606 -0.8633301 ]\n", + " [ -3.4077461 -0.86395162]\n", + " [ -1.5135731 -29.6416708 ]\n", + " [ -1.51295157 -24.26567084]\n", + " [ -1.51233005 -18.88967087]\n", + " [ -1.51170853 -13.51367091]\n", + " [ -1.51108701 -8.13767095]\n", + " [ -1.51046548 -2.76167097]\n", + " [-32.18879227 -31.53562444]\n", + " [-32.18879227 -31.53562444]\n", + " [ -1.51024611 -0.86417099]\n", + " [ -1.51024611 -0.86417099]\n", + " [-30.29107291 -29.63834382]\n", + " [-24.91507294 -29.63896534]\n", + " [-19.53907298 -29.63958686]\n", + " [-14.16307301 -29.64020839]\n", + " [ -8.78707305 -29.64082991]\n", + " [ -3.41107308 -29.64145143]\n", + " [-30.29045138 -24.26234385]\n", + " [-24.91445142 -24.26296538]\n", + " [-19.53845145 -24.2635869 ]\n", + " [-14.16245149 -24.26420842]\n", + " [ -8.78645152 -24.26482994]\n", + " [ -3.41045156 -24.26545147]\n", + " [-30.28982986 -18.88634389]\n", + " [-24.91382989 -18.88696541]\n", + " [-19.53782993 -18.88758693]\n", + " [-14.16182997 -18.88820846]\n", + " [ -8.78583 -18.88882997]\n", + " [ -3.40983004 -18.8894515 ]\n", + " [-30.28920834 -13.51034392]\n", + " [-24.91320837 -13.51096545]\n", + " [-19.53720841 -13.51158697]\n", + " [-14.16120844 -13.51220849]\n", + " [ -8.78520848 -13.51283002]\n", + " [ -3.40920852 -13.51345154]\n", + " [-30.28858681 -8.13434396]\n", + " [-24.91258685 -8.13496548]\n", + " [-19.53658688 -8.135587 ]\n", + " [-14.16058692 -8.13620852]\n", + " [ -8.78458696 -8.13683005]\n", + " [ -3.40858699 -8.13745157]\n", + " [-30.28796529 -2.75834399]\n", + " [-24.91196532 -2.75896552]\n", + " [-19.53596536 -2.75958704]\n", + " [-14.1599654 -2.76020856]\n", + " [ -8.78396543 -2.76083009]\n", + " [ -3.40796547 -2.76145161]]\n", + "DEBUG:root:optics_fp: xyfp shape: (96, 2)\n", + "DEBUG:root:radec2pix: xyfp: [[ -0.230877 31.363511 ]\n", + " [ -0.230877 26.97708243]\n", + " [ -0.230877 22.59065386]\n", + " [ -0.230877 18.20422528]\n", + " [ -0.230877 13.81779671]\n", + " [ -0.230877 9.43136815]\n", + " [ -0.230877 5.04493957]\n", + " [ -0.230877 0.658511 ]\n", + " [ -0.230877 31.363511 ]\n", + " [ -4.61730557 31.363511 ]\n", + " [ -9.00373414 31.363511 ]\n", + " [-13.39016272 31.363511 ]\n", + " [-17.77659129 31.363511 ]\n", + " [-22.16301986 31.363511 ]\n", + " [-26.54944843 31.363511 ]\n", + " [-30.935877 31.363511 ]\n", + " [ -0.230877 0.658511 ]\n", + " [ -4.61730558 0.658511 ]\n", + " [ -9.00373414 0.658511 ]\n", + " [-13.39016271 0.658511 ]\n", + " [-17.77659128 0.658511 ]\n", + " [-22.16301986 0.658511 ]\n", + " [-26.54944843 0.658511 ]\n", + " [-30.935877 0.658511 ]\n", + " [-30.935877 31.363511 ]\n", + " [-30.935877 26.97708243]\n", + " [-30.935877 22.59065386]\n", + " [-30.935877 18.20422528]\n", + " [-30.935877 13.81779671]\n", + " [-30.935877 9.43136814]\n", + " [-30.935877 5.04493957]\n", + " [-30.935877 0.658511 ]\n", + " [ -0.245877 29.451011 ]\n", + " [ -0.245877 24.075011 ]\n", + " [ -0.245877 18.699011 ]\n", + " [ -0.245877 13.323011 ]\n", + " [ -0.245877 7.947011 ]\n", + " [ -0.245877 2.571011 ]\n", + " [ -2.143377 31.348511 ]\n", + " [ -7.519377 31.348511 ]\n", + " [-12.895377 31.348511 ]\n", + " [-18.271377 31.348511 ]\n", + " [-23.647377 31.348511 ]\n", + " [-29.023377 31.348511 ]\n", + " [ -2.143377 0.673511 ]\n", + " [ -7.519377 0.673511 ]\n", + " [-12.895377 0.673511 ]\n", + " [-18.271377 0.673511 ]\n", + " [-23.64737701 0.673511 ]\n", + " [-29.023377 0.673511 ]\n", + " [-30.920877 29.451011 ]\n", + " [-30.920877 24.075011 ]\n", + " [-30.920877 18.699011 ]\n", + " [-30.920877 13.323011 ]\n", + " [-30.920877 7.947011 ]\n", + " [-30.920877 2.571011 ]\n", + " [ -0.245877 31.348511 ]\n", + " [ -0.245877 31.348511 ]\n", + " [-30.920877 0.673511 ]\n", + " [-30.920877 0.673511 ]\n", + " [ -2.143377 29.451011 ]\n", + " [ -7.519377 29.451011 ]\n", + " [-12.895377 29.451011 ]\n", + " [-18.271377 29.451011 ]\n", + " [-23.647377 29.451011 ]\n", + " [-29.023377 29.451011 ]\n", + " [ -2.143377 24.075011 ]\n", + " [ -7.519377 24.075011 ]\n", + " [-12.895377 24.075011 ]\n", + " [-18.271377 24.075011 ]\n", + " [-23.647377 24.075011 ]\n", + " [-29.023377 24.075011 ]\n", + " [ -2.143377 18.699011 ]\n", + " [ -7.519377 18.699011 ]\n", + " [-12.895377 18.699011 ]\n", + " [-18.271377 18.699011 ]\n", + " [-23.647377 18.699011 ]\n", + " [-29.023377 18.699011 ]\n", + " [ -2.143377 13.323011 ]\n", + " [ -7.519377 13.323011 ]\n", + " [-12.895377 13.323011 ]\n", + " [-18.271377 13.323011 ]\n", + " [-23.647377 13.323011 ]\n", + " [-29.023377 13.323011 ]\n", + " [ -2.143377 7.947011 ]\n", + " [ -7.519377 7.947011 ]\n", + " [-12.895377 7.947011 ]\n", + " [-18.271377 7.947011 ]\n", + " [-23.647377 7.947011 ]\n", + " [-29.023377 7.947011 ]\n", + " [ -2.143377 2.571011 ]\n", + " [ -7.519377 2.571011 ]\n", + " [-12.895377 2.571011 ]\n", + " [-18.271377 2.571011 ]\n", + " [-23.647377 2.571011 ]\n", + " [-29.023377 2.571011 ]]\n", + "DEBUG:root:optics_fp: cphi: [-0.0055044 -0.00639203 -0.0076229 -0.00944382 -0.01241274 -0.01811485\n", + " -0.0335395 -0.22307599 -0.0055044 -0.14344285 -0.2735344 -0.39021968\n", + " -0.49076392 -0.57494454 -0.64415274 -0.70050591 -0.22307599 -0.98662859\n", + " -0.99647595 -0.9984093 -0.99909876 -0.99942085 -0.99959678 -0.99970325\n", + " -0.70050591 -0.75194059 -0.80589783 -0.86028974 -0.91173668 -0.955566\n", + " -0.98643233 -0.99970325 -0.00636666 -0.00777693 -0.00999392 -0.01398706\n", + " -0.02331621 -0.07013242 -0.06618572 -0.2308951 -0.37799383 -0.50124187\n", + " -0.60012567 -0.67754548 -0.93833732 -0.9947436 -0.99821572 -0.99911274\n", + " -0.99947098 -0.99964917 -0.72236515 -0.7873159 -0.85411461 -0.91708811\n", + " -0.96769535 -0.99629275 -0.00598404 -0.00598404 -0.999691 -0.999691\n", + " -0.07041425 -0.24485858 -0.398512 -0.52476457 -0.62394545 -0.7000711\n", + " -0.08596532 -0.29497775 -0.46908383 -0.60182876 -0.69847361 -0.76781625\n", + " -0.11028259 -0.36899894 -0.56404664 -0.69594091 -0.78213485 -0.83890011\n", + " -0.1535634 -0.48599238 -0.6913123 -0.80511955 -0.86923269 -0.90738164\n", + " -0.25098261 -0.68015432 -0.84745756 -0.91480539 -0.94651795 -0.96355992\n", + " -0.61607996 -0.94170609 -0.97911709 -0.98946165 -0.99367815 -0.99579412]\n", + "DEBUG:root:radec2pix: camVec: [[0.20658103 0.20838989 0.20993522 0.21121099 0.21221385 0.21294172\n", + " 0.21339307 0.21356684 0.20658103 0.18015754 0.1530338 0.12531307\n", + " 0.09710338 0.06851504 0.03965966 0.01064976 0.21356684 0.18621882\n", + " 0.15815829 0.12949192 0.10032565 0.07076705 0.04092766 0.01092393\n", + " 0.01064976 0.01072986 0.01079662 0.01085001 0.01088978 0.0109156\n", + " 0.01092708 0.01092393 0.20731213 0.20935192 0.21098964 0.21221814\n", + " 0.21303349 0.21343308 0.19515895 0.16228971 0.12847052 0.09389848\n", + " 0.05877657 0.02331064 0.20173739 0.16772694 0.13275239 0.09700904\n", + " 0.06069518 0.02401827 0.01078606 0.01087623 0.01094616 0.01099551\n", + " 0.01102363 0.01102984 0.2064986 0.2064986 0.01102671 0.01102671\n", + " 0.19592714 0.16292559 0.1289709 0.09426176 0.0590016 0.02339654\n", + " 0.19785166 0.16451646 0.13022261 0.09517088 0.05956467 0.02361044\n", + " 0.19939573 0.16579218 0.13122742 0.09590173 0.06001727 0.02378066\n", + " 0.20055377 0.16674959 0.13198281 0.09645193 0.06035751 0.0239064\n", + " 0.20132229 0.16738526 0.13248471 0.09681723 0.06058199 0.02398618\n", + " 0.20169858 0.16769559 0.13272857 0.09699294 0.06068709 0.02401844]\n", + " [0.20098859 0.17447006 0.14727238 0.11949936 0.09125926 0.06266255\n", + " 0.03382097 0.00484709 0.20098859 0.20282418 0.20440426 0.20572264\n", + " 0.20677589 0.2075618 0.2080787 0.20832528 0.00484709 0.00490326\n", + " 0.00495363 0.00499813 0.0050366 0.00506881 0.00509451 0.00511348\n", + " 0.20832528 0.18083307 0.15264908 0.12387974 0.09463112 0.06501141\n", + " 0.0351331 0.00511348 0.18952259 0.15655094 0.12266162 0.08805229\n", + " 0.05292621 0.01748945 0.20172997 0.20380791 0.20549566 0.20678588\n", + " 0.20767444 0.20815839 0.00497187 0.00503783 0.00509482 0.00514259\n", + " 0.00518073 0.00520877 0.19643015 0.16225698 0.1271506 0.09130636\n", + " 0.0549237 0.01821176 0.20090587 0.20090587 0.00521618 0.00521618\n", + " 0.19029998 0.19225876 0.19384904 0.19506507 0.19590316 0.19636024\n", + " 0.15719218 0.15880644 0.16011755 0.16112232 0.16181718 0.1621981\n", + " 0.12316354 0.12442767 0.12545686 0.12624866 0.12679897 0.1271029\n", + " 0.08841323 0.08932369 0.09006766 0.09064294 0.0910454 0.09127018\n", + " 0.05314506 0.05369842 0.05415286 0.05450669 0.05475678 0.05489951\n", + " 0.0175654 0.01775879 0.01791986 0.01804791 0.01814173 0.01819993]\n", + " [0.9575635 0.96235848 0.9665599 0.97010815 0.97295274 0.97505345\n", + " 0.97638084 0.97691643 0.9575635 0.96249967 0.96685033 0.97055388\n", + " 0.97355774 0.97581955 0.97730771 0.97800162 0.97691643 0.98249606\n", + " 0.98740135 0.99156788 0.99494191 0.99747999 0.99914912 0.99992726\n", + " 0.97800162 0.98345527 0.98822148 0.99223792 0.99545284 0.99782482\n", + " 0.9993229 0.99992726 0.95974104 0.96522722 0.96976157 0.97324727\n", + " 0.97561035 0.97680113 0.95980102 0.96546589 0.97018908 0.97386995\n", + " 0.97643056 0.97781731 0.97942703 0.98582062 0.99113614 0.99527021\n", + " 0.9981429 0.99969795 0.98045849 0.98668859 0.99182302 0.99576214\n", + " 0.9984297 0.99977331 0.95759864 0.95759864 0.9999256 0.9999256\n", + " 0.96197634 0.96772508 0.97251687 0.97625014 0.97884665 0.98025265\n", + " 0.96754604 0.97350647 0.97847046 0.98233503 0.98502145 0.98647571\n", + " 0.97214818 0.97827946 0.98338189 0.98735208 0.99011108 0.99160442\n", + " 0.97568503 0.98194493 0.98715164 0.99120174 0.99401595 0.99553917\n", + " 0.97808228 0.98442808 0.98970464 0.99380856 0.99666018 0.99820374\n", + " 0.97929012 0.98567886 0.99099042 0.99512142 0.99799196 0.99954584]]\n", + "DEBUG:root:optics_fp: sphi: [0.99998485 0.99997957 0.99997095 0.99995541 0.99992296 0.99983591\n", + " 0.99943739 0.97480106 0.99998485 0.9896586 0.96186222 0.92072178\n", + " 0.87129259 0.81819238 0.76489689 0.7136466 0.97480106 0.16298472\n", + " 0.08387896 0.05638146 0.04244609 0.03402888 0.028395 0.02436013\n", + " 0.7136466 0.65923088 0.59205464 0.50980542 0.41077515 0.29477725\n", + " 0.16416841 0.02436013 0.99997973 0.99996976 0.99995006 0.99990218\n", + " 0.99972814 0.99753769 0.99780732 0.97297865 0.92580811 0.86530722\n", + " 0.79990573 0.73548088 0.34572109 0.10239711 0.0597107 0.0421157\n", + " 0.0325231 0.02648658 0.69151182 0.61654981 0.52008483 0.39868458\n", + " 0.25212242 0.08602764 0.9999821 0.9999821 0.02485756 0.02485756\n", + " 0.99751784 0.96955881 0.91716312 0.8512474 0.7814679 0.71407315\n", + " 0.99629813 0.95550412 0.88315364 0.79862516 0.71563581 0.64067012\n", + " 0.99390027 0.92942982 0.82574293 0.71809906 0.6231092 0.5442854\n", + " 0.9881388 0.87396305 0.72255609 0.59311256 0.49440321 0.4203077\n", + " 0.9679916 0.73306896 0.53086315 0.40389491 0.32265115 0.26749257\n", + " 0.78768362 0.33643669 0.20329713 0.14479515 0.11226633 0.09161916]\n", + "DEBUG:root:radec2pix: camVec Shape: (3, 96)\n", + "DEBUG:root:make_az_asym: xyp: [[-32.203794 -31.5506227 ]\n", + " [-32.20328688 -27.16419416]\n", + " [-32.20277976 -22.77776561]\n", + " [-32.20227264 -18.39133707]\n", + " [-32.20176553 -14.00490853]\n", + " [-32.20125841 -9.61847999]\n", + " [-32.20075129 -5.23205144]\n", + " [-32.20024417 -0.8456229 ]\n", + " [-32.203794 -31.5506227 ]\n", + " [-27.81736545 -31.55112981]\n", + " [-23.43093691 -31.55163693]\n", + " [-19.04450837 -31.55214405]\n", + " [-14.65807983 -31.55265117]\n", + " [-10.27165129 -31.55315829]\n", + " [ -5.88522274 -31.5536654 ]\n", + " [ -1.4987942 -31.55417252]\n", + " [-32.20024417 -0.8456229 ]\n", + " [-27.81381563 -0.84613002]\n", + " [-23.42738708 -0.84663714]\n", + " [-19.04095854 -0.84714426]\n", + " [-14.65453 -0.84765137]\n", + " [-10.26810146 -0.84815849]\n", + " [ -5.88167292 -0.84866561]\n", + " [ -1.49524438 -0.84917273]\n", + " [ -1.4987942 -31.55417252]\n", + " [ -1.49828708 -27.16774398]\n", + " [ -1.49777997 -22.78131544]\n", + " [ -1.49727285 -18.39488689]\n", + " [ -1.49676573 -14.00845835]\n", + " [ -1.49625861 -9.62202981]\n", + " [ -1.49575149 -5.23560127]\n", + " [ -1.49524438 -0.84917273]\n", + " [-32.18857289 -29.63812445]\n", + " [-32.18795136 -24.26212448]\n", + " [-32.18732984 -18.88612452]\n", + " [-32.18670832 -13.51012455]\n", + " [-32.1860868 -8.13412459]\n", + " [-32.18546528 -2.75812462]\n", + " [-30.29129227 -31.5358438 ]\n", + " [-24.91529231 -31.53646533]\n", + " [-19.53929235 -31.53708685]\n", + " [-14.16329238 -31.53770837]\n", + " [ -8.78729242 -31.53832989]\n", + " [ -3.41129245 -31.53895142]\n", + " [-30.28774592 -0.86084401]\n", + " [-24.91174595 -0.86146553]\n", + " [-19.53574599 -0.86208705]\n", + " [-14.15974603 -0.86270858]\n", + " [ -8.78374606 -0.8633301 ]\n", + " [ -3.4077461 -0.86395162]\n", + " [ -1.5135731 -29.6416708 ]\n", + " [ -1.51295157 -24.26567084]\n", + " [ -1.51233005 -18.88967087]\n", + " [ -1.51170853 -13.51367091]\n", + " [ -1.51108701 -8.13767095]\n", + " [ -1.51046548 -2.76167097]\n", + " [-32.18879227 -31.53562444]\n", + " [-32.18879227 -31.53562444]\n", + " [ -1.51024611 -0.86417099]\n", + " [ -1.51024611 -0.86417099]\n", + " [-30.29107291 -29.63834382]\n", + " [-24.91507294 -29.63896534]\n", + " [-19.53907298 -29.63958686]\n", + " [-14.16307301 -29.64020839]\n", + " [ -8.78707305 -29.64082991]\n", + " [ -3.41107308 -29.64145143]\n", + " [-30.29045138 -24.26234385]\n", + " [-24.91445142 -24.26296538]\n", + " [-19.53845145 -24.2635869 ]\n", + " [-14.16245149 -24.26420842]\n", + " [ -8.78645152 -24.26482994]\n", + " [ -3.41045156 -24.26545147]\n", + " [-30.28982986 -18.88634389]\n", + " [-24.91382989 -18.88696541]\n", + " [-19.53782993 -18.88758693]\n", + " [-14.16182997 -18.88820846]\n", + " [ -8.78583 -18.88882997]\n", + " [ -3.40983004 -18.8894515 ]\n", + " [-30.28920834 -13.51034392]\n", + " [-24.91320837 -13.51096545]\n", + " [-19.53720841 -13.51158697]\n", + " [-14.16120844 -13.51220849]\n", + " [ -8.78520848 -13.51283002]\n", + " [ -3.40920852 -13.51345154]\n", + " [-30.28858681 -8.13434396]\n", + " [-24.91258685 -8.13496548]\n", + " [-19.53658688 -8.135587 ]\n", + " [-14.16058692 -8.13620852]\n", + " [ -8.78458696 -8.13683005]\n", + " [ -3.40858699 -8.13745157]\n", + " [-30.28796529 -2.75834399]\n", + " [-24.91196532 -2.75896552]\n", + " [-19.53596536 -2.75958704]\n", + " [-14.1599654 -2.76020856]\n", + " [ -8.78396543 -2.76083009]\n", + " [ -3.40796547 -2.76145161]]\n", + "DEBUG:root:make_az_asym: xyp: shape: (96, 2)\n", + "DEBUG:root:radec2pix: ccdpx: [[-4.45000000e+01 -5.00000261e-01]\n", + " [-4.45000000e+01 2.91928571e+02]\n", + " [-4.45000000e+01 5.84357143e+02]\n", + " [-4.45000000e+01 8.76785715e+02]\n", + " [-4.45000000e+01 1.16921429e+03]\n", + " [-4.45000000e+01 1.46164286e+03]\n", + " [-4.45000000e+01 1.75407143e+03]\n", + " [-4.44999999e+01 2.04650000e+03]\n", + " [-4.45000000e+01 -5.00000261e-01]\n", + " [ 2.47928571e+02 -5.00000125e-01]\n", + " [ 5.40357143e+02 -4.99999959e-01]\n", + " [ 8.32785714e+02 -5.00000265e-01]\n", + " [ 1.12521429e+03 -4.99999989e-01]\n", + " [ 1.41764286e+03 -4.99999804e-01]\n", + " [ 1.71007143e+03 -4.99999857e-01]\n", + " [ 2.00250000e+03 -5.00000247e-01]\n", + " [-4.44999999e+01 2.04650000e+03]\n", + " [ 2.47928572e+02 2.04650000e+03]\n", + " [ 5.40357143e+02 2.04650000e+03]\n", + " [ 8.32785714e+02 2.04650000e+03]\n", + " [ 1.12521429e+03 2.04650000e+03]\n", + " [ 1.41764286e+03 2.04650000e+03]\n", + " [ 1.71007143e+03 2.04650000e+03]\n", + " [ 2.00250000e+03 2.04650000e+03]\n", + " [ 2.00250000e+03 -5.00000247e-01]\n", + " [ 2.00250000e+03 2.91928571e+02]\n", + " [ 2.00250000e+03 5.84357143e+02]\n", + " [ 2.00250000e+03 8.76785714e+02]\n", + " [ 2.00250000e+03 1.16921429e+03]\n", + " [ 2.00250000e+03 1.46164286e+03]\n", + " [ 2.00250000e+03 1.75407143e+03]\n", + " [ 2.00250000e+03 2.04650000e+03]\n", + " [-4.35000000e+01 1.27000000e+02]\n", + " [-4.35000000e+01 4.85400000e+02]\n", + " [-4.35000000e+01 8.43800000e+02]\n", + " [-4.35000000e+01 1.20220000e+03]\n", + " [-4.35000000e+01 1.56060000e+03]\n", + " [-4.35000000e+01 1.91900000e+03]\n", + " [ 8.30000000e+01 4.99999891e-01]\n", + " [ 4.41400000e+02 5.00000001e-01]\n", + " [ 7.99800000e+02 5.00000129e-01]\n", + " [ 1.15820000e+03 5.00000084e-01]\n", + " [ 1.51660000e+03 5.00000000e-01]\n", + " [ 1.87500000e+03 5.00000003e-01]\n", + " [ 8.30000000e+01 2.04550000e+03]\n", + " [ 4.41400000e+02 2.04550000e+03]\n", + " [ 7.99800000e+02 2.04550000e+03]\n", + " [ 1.15820000e+03 2.04550000e+03]\n", + " [ 1.51660000e+03 2.04550000e+03]\n", + " [ 1.87500000e+03 2.04550000e+03]\n", + " [ 2.00150000e+03 1.27000000e+02]\n", + " [ 2.00150000e+03 4.85400000e+02]\n", + " [ 2.00150000e+03 8.43800000e+02]\n", + " [ 2.00150000e+03 1.20220000e+03]\n", + " [ 2.00150000e+03 1.56060000e+03]\n", + " [ 2.00150000e+03 1.91900000e+03]\n", + " [-4.35000000e+01 4.99999945e-01]\n", + " [-4.35000000e+01 4.99999945e-01]\n", + " [ 2.00150000e+03 2.04550000e+03]\n", + " [ 2.00150000e+03 2.04550000e+03]\n", + " [ 8.30000000e+01 1.27000000e+02]\n", + " [ 4.41400000e+02 1.27000000e+02]\n", + " [ 7.99800000e+02 1.27000000e+02]\n", + " [ 1.15820000e+03 1.27000000e+02]\n", + " [ 1.51660000e+03 1.27000000e+02]\n", + " [ 1.87500000e+03 1.27000000e+02]\n", + " [ 8.30000000e+01 4.85400000e+02]\n", + " [ 4.41400000e+02 4.85400000e+02]\n", + " [ 7.99800000e+02 4.85400000e+02]\n", + " [ 1.15820000e+03 4.85400000e+02]\n", + " [ 1.51660000e+03 4.85400000e+02]\n", + " [ 1.87500000e+03 4.85400000e+02]\n", + " [ 8.30000000e+01 8.43800000e+02]\n", + " [ 4.41400000e+02 8.43800000e+02]\n", + " [ 7.99800000e+02 8.43800000e+02]\n", + " [ 1.15820000e+03 8.43800000e+02]\n", + " [ 1.51660000e+03 8.43800000e+02]\n", + " [ 1.87500000e+03 8.43800000e+02]\n", + " [ 8.30000000e+01 1.20220000e+03]\n", + " [ 4.41400000e+02 1.20220000e+03]\n", + " [ 7.99800000e+02 1.20220000e+03]\n", + " [ 1.15820000e+03 1.20220000e+03]\n", + " [ 1.51660000e+03 1.20220000e+03]\n", + " [ 1.87500000e+03 1.20220000e+03]\n", + " [ 8.30000000e+01 1.56060000e+03]\n", + " [ 4.41400000e+02 1.56060000e+03]\n", + " [ 7.99800000e+02 1.56060000e+03]\n", + " [ 1.15820000e+03 1.56060000e+03]\n", + " [ 1.51660000e+03 1.56060000e+03]\n", + " [ 1.87500000e+03 1.56060000e+03]\n", + " [ 8.29999998e+01 1.91900000e+03]\n", + " [ 4.41400000e+02 1.91900000e+03]\n", + " [ 7.99800000e+02 1.91900000e+03]\n", + " [ 1.15820000e+03 1.91900000e+03]\n", + " [ 1.51660000e+03 1.91900000e+03]\n", + " [ 1.87500000e+03 1.91900000e+03]]\n", + "DEBUG:root:optics_fp: xyfp: [[ 0.173161 -31.45819714]\n", + " [ 0.17304708 -27.07176857]\n", + " [ 0.17293316 -22.68534 ]\n", + " [ 0.17281925 -18.29891143]\n", + " [ 0.17270533 -13.91248287]\n", + " [ 0.17259141 -9.52605429]\n", + " [ 0.17247749 -5.13962573]\n", + " [ 0.17236358 -0.75319715]\n", + " [ 0.173161 -31.45819714]\n", + " [ 4.55958957 -31.45808322]\n", + " [ 8.94601814 -31.45796931]\n", + " [ 13.33244671 -31.45785538]\n", + " [ 17.71887528 -31.45774147]\n", + " [ 22.10530385 -31.45762756]\n", + " [ 26.49173242 -31.45751363]\n", + " [ 30.87816099 -31.45739971]\n", + " [ 0.17236358 -0.75319715]\n", + " [ 4.55879215 -0.75308323]\n", + " [ 8.94522072 -0.75296932]\n", + " [ 13.33164929 -0.7528554 ]\n", + " [ 17.71807786 -0.75274148]\n", + " [ 22.10450643 -0.75262756]\n", + " [ 26.490935 -0.75251364]\n", + " [ 30.87736356 -0.75239973]\n", + " [ 30.87816099 -31.45739971]\n", + " [ 30.87804707 -27.07097114]\n", + " [ 30.87793315 -22.68454257]\n", + " [ 30.87781924 -18.29811401]\n", + " [ 30.87770532 -13.91168544]\n", + " [ 30.87759141 -9.52525687]\n", + " [ 30.87747749 -5.1388283 ]\n", + " [ 30.87736356 -0.75239973]\n", + " [ 0.18811133 -29.54569675]\n", + " [ 0.18797171 -24.16969676]\n", + " [ 0.1878321 -18.79369675]\n", + " [ 0.18769248 -13.41769676]\n", + " [ 0.18755286 -8.04169676]\n", + " [ 0.18741324 -2.66569676]\n", + " [ 2.08566061 -31.44314748]\n", + " [ 7.46166061 -31.44300785]\n", + " [ 12.83766061 -31.44286824]\n", + " [ 18.2136606 -31.44272862]\n", + " [ 23.5896606 -31.442589 ]\n", + " [ 28.9656606 -31.44244938]\n", + " [ 2.08486397 -0.76814748]\n", + " [ 7.46086396 -0.76800786]\n", + " [ 12.83686396 -0.76786825]\n", + " [ 18.21286396 -0.76772863]\n", + " [ 23.58886395 -0.76758901]\n", + " [ 28.96486395 -0.7674494 ]\n", + " [ 30.86311132 -29.54490011]\n", + " [ 30.86297171 -24.16890011]\n", + " [ 30.86283209 -18.79290011]\n", + " [ 30.86269247 -13.41690011]\n", + " [ 30.86255285 -8.04090011]\n", + " [ 30.86241323 -2.66490012]\n", + " [ 0.18816061 -31.44319675]\n", + " [ 0.18816061 -31.44319675]\n", + " [ 30.86236396 -0.76740012]\n", + " [ 30.86236396 -0.76740012]\n", + " [ 2.08561133 -29.54564748]\n", + " [ 7.46161133 -29.54550785]\n", + " [ 12.83761133 -29.54536824]\n", + " [ 18.21361133 -29.54522862]\n", + " [ 23.58961132 -29.545089 ]\n", + " [ 28.96561132 -29.54494938]\n", + " [ 2.08547171 -24.16964747]\n", + " [ 7.46147171 -24.16950786]\n", + " [ 12.83747171 -24.16936824]\n", + " [ 18.21347171 -24.16922862]\n", + " [ 23.58947171 -24.16908901]\n", + " [ 28.9654717 -24.16894939]\n", + " [ 2.0853321 -18.79364747]\n", + " [ 7.46133209 -18.79350785]\n", + " [ 12.83733209 -18.79336824]\n", + " [ 18.21333209 -18.79322862]\n", + " [ 23.58933209 -18.79308901]\n", + " [ 28.96533209 -18.79294939]\n", + " [ 2.08519248 -13.41764748]\n", + " [ 7.46119248 -13.41750786]\n", + " [ 12.83719247 -13.41736824]\n", + " [ 18.21319248 -13.41722863]\n", + " [ 23.58919247 -13.41708901]\n", + " [ 28.96519247 -13.41694939]\n", + " [ 2.08505286 -8.04164748]\n", + " [ 7.46105286 -8.04150786]\n", + " [ 12.83705286 -8.04136825]\n", + " [ 18.21305286 -8.04122863]\n", + " [ 23.58905286 -8.04108901]\n", + " [ 28.96505285 -8.04094939]\n", + " [ 2.08491324 -2.66564748]\n", + " [ 7.46091324 -2.66550786]\n", + " [ 12.83691324 -2.66536825]\n", + " [ 18.21291324 -2.66522863]\n", + " [ 23.58891323 -2.66508901]\n", + " [ 28.96491324 -2.66494939]]\n", + "DEBUG:root:optics_fp: xyfp shape: (96, 2)\n", + "DEBUG:root:radec2pix: xyfp: [[-32.203794 -31.5506227 ]\n", + " [-32.20328688 -27.16419416]\n", + " [-32.20277976 -22.77776561]\n", + " [-32.20227264 -18.39133707]\n", + " [-32.20176553 -14.00490853]\n", + " [-32.20125841 -9.61847999]\n", + " [-32.20075129 -5.23205144]\n", + " [-32.20024417 -0.8456229 ]\n", + " [-32.203794 -31.5506227 ]\n", + " [-27.81736545 -31.55112981]\n", + " [-23.43093691 -31.55163693]\n", + " [-19.04450837 -31.55214405]\n", + " [-14.65807983 -31.55265117]\n", + " [-10.27165129 -31.55315829]\n", + " [ -5.88522274 -31.5536654 ]\n", + " [ -1.4987942 -31.55417252]\n", + " [-32.20024417 -0.8456229 ]\n", + " [-27.81381563 -0.84613002]\n", + " [-23.42738708 -0.84663714]\n", + " [-19.04095854 -0.84714426]\n", + " [-14.65453 -0.84765137]\n", + " [-10.26810146 -0.84815849]\n", + " [ -5.88167292 -0.84866561]\n", + " [ -1.49524438 -0.84917273]\n", + " [ -1.4987942 -31.55417252]\n", + " [ -1.49828708 -27.16774398]\n", + " [ -1.49777997 -22.78131544]\n", + " [ -1.49727285 -18.39488689]\n", + " [ -1.49676573 -14.00845835]\n", + " [ -1.49625861 -9.62202981]\n", + " [ -1.49575149 -5.23560127]\n", + " [ -1.49524438 -0.84917273]\n", + " [-32.18857289 -29.63812445]\n", + " [-32.18795136 -24.26212448]\n", + " [-32.18732984 -18.88612452]\n", + " [-32.18670832 -13.51012455]\n", + " [-32.1860868 -8.13412459]\n", + " [-32.18546528 -2.75812462]\n", + " [-30.29129227 -31.5358438 ]\n", + " [-24.91529231 -31.53646533]\n", + " [-19.53929235 -31.53708685]\n", + " [-14.16329238 -31.53770837]\n", + " [ -8.78729242 -31.53832989]\n", + " [ -3.41129245 -31.53895142]\n", + " [-30.28774592 -0.86084401]\n", + " [-24.91174595 -0.86146553]\n", + " [-19.53574599 -0.86208705]\n", + " [-14.15974603 -0.86270858]\n", + " [ -8.78374606 -0.8633301 ]\n", + " [ -3.4077461 -0.86395162]\n", + " [ -1.5135731 -29.6416708 ]\n", + " [ -1.51295157 -24.26567084]\n", + " [ -1.51233005 -18.88967087]\n", + " [ -1.51170853 -13.51367091]\n", + " [ -1.51108701 -8.13767095]\n", + " [ -1.51046548 -2.76167097]\n", + " [-32.18879227 -31.53562444]\n", + " [-32.18879227 -31.53562444]\n", + " [ -1.51024611 -0.86417099]\n", + " [ -1.51024611 -0.86417099]\n", + " [-30.29107291 -29.63834382]\n", + " [-24.91507294 -29.63896534]\n", + " [-19.53907298 -29.63958686]\n", + " [-14.16307301 -29.64020839]\n", + " [ -8.78707305 -29.64082991]\n", + " [ -3.41107308 -29.64145143]\n", + " [-30.29045138 -24.26234385]\n", + " [-24.91445142 -24.26296538]\n", + " [-19.53845145 -24.2635869 ]\n", + " [-14.16245149 -24.26420842]\n", + " [ -8.78645152 -24.26482994]\n", + " [ -3.41045156 -24.26545147]\n", + " [-30.28982986 -18.88634389]\n", + " [-24.91382989 -18.88696541]\n", + " [-19.53782993 -18.88758693]\n", + " [-14.16182997 -18.88820846]\n", + " [ -8.78583 -18.88882997]\n", + " [ -3.40983004 -18.8894515 ]\n", + " [-30.28920834 -13.51034392]\n", + " [-24.91320837 -13.51096545]\n", + " [-19.53720841 -13.51158697]\n", + " [-14.16120844 -13.51220849]\n", + " [ -8.78520848 -13.51283002]\n", + " [ -3.40920852 -13.51345154]\n", + " [-30.28858681 -8.13434396]\n", + " [-24.91258685 -8.13496548]\n", + " [-19.53658688 -8.135587 ]\n", + " [-14.16058692 -8.13620852]\n", + " [ -8.78458696 -8.13683005]\n", + " [ -3.40858699 -8.13745157]\n", + " [-30.28796529 -2.75834399]\n", + " [-24.91196532 -2.75896552]\n", + " [-19.53596536 -2.75958704]\n", + " [-14.1599654 -2.76020856]\n", + " [ -8.78396543 -2.76083009]\n", + " [ -3.40796547 -2.76145161]]\n", + "DEBUG:root:radec2pix: xyfp Shape: (96, 2)\n", + "DEBUG:root:cartToSphere: vec: [[0.20658103 0.20098859 0.9575635 ]\n", + " [0.20838989 0.17447006 0.96235848]\n", + " [0.20993522 0.14727238 0.9665599 ]\n", + " [0.21121099 0.11949936 0.97010815]\n", + " [0.21221385 0.09125926 0.97295274]\n", + " [0.21294172 0.06266255 0.97505345]\n", + " [0.21339307 0.03382097 0.97638084]\n", + " [0.21356684 0.00484709 0.97691643]\n", + " [0.20658103 0.20098859 0.9575635 ]\n", + " [0.18015754 0.20282418 0.96249967]\n", + " [0.1530338 0.20440426 0.96685033]\n", + " [0.12531307 0.20572264 0.97055388]\n", + " [0.09710338 0.20677589 0.97355774]\n", + " [0.06851504 0.2075618 0.97581955]\n", + " [0.03965966 0.2080787 0.97730771]\n", + " [0.01064976 0.20832528 0.97800162]\n", + " [0.21356684 0.00484709 0.97691643]\n", + " [0.18621882 0.00490326 0.98249606]\n", + " [0.15815829 0.00495363 0.98740135]\n", + " [0.12949192 0.00499813 0.99156788]\n", + " [0.10032565 0.0050366 0.99494191]\n", + " [0.07076705 0.00506881 0.99747999]\n", + " [0.04092766 0.00509451 0.99914912]\n", + " [0.01092393 0.00511348 0.99992726]\n", + " [0.01064976 0.20832528 0.97800162]\n", + " [0.01072986 0.18083307 0.98345527]\n", + " [0.01079662 0.15264908 0.98822148]\n", + " [0.01085001 0.12387974 0.99223792]\n", + " [0.01088978 0.09463112 0.99545284]\n", + " [0.0109156 0.06501141 0.99782482]\n", + " [0.01092708 0.0351331 0.9993229 ]\n", + " [0.01092393 0.00511348 0.99992726]\n", + " [0.20731213 0.18952259 0.95974104]\n", + " [0.20935192 0.15655094 0.96522722]\n", + " [0.21098964 0.12266162 0.96976157]\n", + " [0.21221814 0.08805229 0.97324727]\n", + " [0.21303349 0.05292621 0.97561035]\n", + " [0.21343308 0.01748945 0.97680113]\n", + " [0.19515895 0.20172997 0.95980102]\n", + " [0.16228971 0.20380791 0.96546589]\n", + " [0.12847052 0.20549566 0.97018908]\n", + " [0.09389848 0.20678588 0.97386995]\n", + " [0.05877657 0.20767444 0.97643056]\n", + " [0.02331064 0.20815839 0.97781731]\n", + " [0.20173739 0.00497187 0.97942703]\n", + " [0.16772694 0.00503783 0.98582062]\n", + " [0.13275239 0.00509482 0.99113614]\n", + " [0.09700904 0.00514259 0.99527021]\n", + " [0.06069518 0.00518073 0.9981429 ]\n", + " [0.02401827 0.00520877 0.99969795]\n", + " [0.01078606 0.19643015 0.98045849]\n", + " [0.01087623 0.16225698 0.98668859]\n", + " [0.01094616 0.1271506 0.99182302]\n", + " [0.01099551 0.09130636 0.99576214]\n", + " [0.01102363 0.0549237 0.9984297 ]\n", + " [0.01102984 0.01821176 0.99977331]\n", + " [0.2064986 0.20090587 0.95759864]\n", + " [0.2064986 0.20090587 0.95759864]\n", + " [0.01102671 0.00521618 0.9999256 ]\n", + " [0.01102671 0.00521618 0.9999256 ]\n", + " [0.19592714 0.19029998 0.96197634]\n", + " [0.16292559 0.19225876 0.96772508]\n", + " [0.1289709 0.19384904 0.97251687]\n", + " [0.09426176 0.19506507 0.97625014]\n", + " [0.0590016 0.19590316 0.97884665]\n", + " [0.02339654 0.19636024 0.98025265]\n", + " [0.19785166 0.15719218 0.96754604]\n", + " [0.16451646 0.15880644 0.97350647]\n", + " [0.13022261 0.16011755 0.97847046]\n", + " [0.09517088 0.16112232 0.98233503]\n", + " [0.05956467 0.16181718 0.98502145]\n", + " [0.02361044 0.1621981 0.98647571]\n", + " [0.19939573 0.12316354 0.97214818]\n", + " [0.16579218 0.12442767 0.97827946]\n", + " [0.13122742 0.12545686 0.98338189]\n", + " [0.09590173 0.12624866 0.98735208]\n", + " [0.06001727 0.12679897 0.99011108]\n", + " [0.02378066 0.1271029 0.99160442]\n", + " [0.20055377 0.08841323 0.97568503]\n", + " [0.16674959 0.08932369 0.98194493]\n", + " [0.13198281 0.09006766 0.98715164]\n", + " [0.09645193 0.09064294 0.99120174]\n", + " [0.06035751 0.0910454 0.99401595]\n", + " [0.0239064 0.09127018 0.99553917]\n", + " [0.20132229 0.05314506 0.97808228]\n", + " [0.16738526 0.05369842 0.98442808]\n", + " [0.13248471 0.05415286 0.98970464]\n", + " [0.09681723 0.05450669 0.99380856]\n", + " [0.06058199 0.05475678 0.99666018]\n", + " [0.02398618 0.05489951 0.99820374]\n", + " [0.20169858 0.0175654 0.97929012]\n", + " [0.16769559 0.01775879 0.98567886]\n", + " [0.13272857 0.01791986 0.99099042]\n", + " [0.09699294 0.01804791 0.99512142]\n", + " [0.06068709 0.01814173 0.99799196]\n", + " [0.02401844 0.01819993 0.99954584]]\n", + "DEBUG:root:radec2pix: fitpx: [[2135.5 4155.50000026]\n", + " [2135.5 3863.07142876]\n", + " [2135.5 3570.64285709]\n", + " [2135.5 3278.21428545]\n", + " [2135.5 2985.7857141 ]\n", + " [2135.49999999 2693.35714316]\n", + " [2135.50000001 2400.9285712 ]\n", + " [2135.49999993 2108.50000021]\n", + " [2135.5 4155.50000026]\n", + " [1843.07142855 4155.50000013]\n", + " [1550.64285715 4155.49999996]\n", + " [1258.2142856 4155.50000027]\n", + " [ 965.78571429 4155.49999999]\n", + " [ 673.357143 4155.4999998 ]\n", + " [ 380.92857155 4155.49999986]\n", + " [ 88.49999976 4155.50000025]\n", + " [2135.49999993 2108.50000021]\n", + " [1843.07142817 2108.50000006]\n", + " [1550.64285738 2108.49999998]\n", + " [1258.21428605 2108.49999998]\n", + " [ 965.78571448 2108.49999999]\n", + " [ 673.35714251 2108.50000001]\n", + " [ 380.92857138 2108.5 ]\n", + " [ 88.50000013 2108.5 ]\n", + " [ 88.49999976 4155.50000025]\n", + " [ 88.49999974 3863.0714288 ]\n", + " [ 88.49999989 3570.64285722]\n", + " [ 88.50000025 3278.21428557]\n", + " [ 88.50000013 2985.78571423]\n", + " [ 88.49999977 2693.35714293]\n", + " [ 88.49999999 2400.92857143]\n", + " [ 88.50000013 2108.5 ]\n", + " [2134.5 4028.00000018]\n", + " [2134.5 3669.59999979]\n", + " [2134.5 3311.20000021]\n", + " [2134.5 2952.80000004]\n", + " [2134.5 2594.39999994]\n", + " [2134.50000001 2235.99999988]\n", + " [2007.99999999 4154.50000011]\n", + " [1649.6 4154.5 ]\n", + " [1291.20000005 4154.49999987]\n", + " [ 932.80000005 4154.49999992]\n", + " [ 574.4 4154.5 ]\n", + " [ 216. 4154.5 ]\n", + " [2008.00000002 2109.49999999]\n", + " [1649.60000012 2109.49999999]\n", + " [1291.19999984 2109.50000001]\n", + " [ 932.79999968 2109.50000001]\n", + " [ 574.39999959 2109.50000001]\n", + " [ 215.99999972 2109.50000001]\n", + " [ 89.4999999 4028.0000001 ]\n", + " [ 89.50000007 3669.59999994]\n", + " [ 89.49999997 3311.20000002]\n", + " [ 89.50000023 2952.7999999 ]\n", + " [ 89.49999997 2594.40000001]\n", + " [ 89.4999998 2236.00000002]\n", + " [2134.5 4154.50000005]\n", + " [2134.5 4154.50000005]\n", + " [ 89.49999997 2109.5 ]\n", + " [ 89.49999997 2109.5 ]\n", + " [2008. 4027.99999997]\n", + " [1649.59999996 4028.00000014]\n", + " [1291.20000001 4027.99999998]\n", + " [ 932.79999987 4028.00000021]\n", + " [ 574.40000006 4027.99999993]\n", + " [ 215.9999998 4028.0000002 ]\n", + " [2008. 3669.59999996]\n", + " [1649.60000001 3669.59999998]\n", + " [1291.20000007 3669.59999987]\n", + " [ 932.79999997 3669.60000004]\n", + " [ 574.39999998 3669.60000002]\n", + " [ 215.99999986 3669.60000012]\n", + " [2008. 3311.20000004]\n", + " [1649.59999995 3311.20000012]\n", + " [1291.19999997 3311.20000005]\n", + " [ 932.80000015 3311.19999984]\n", + " [ 574.40000003 3311.19999997]\n", + " [ 216.00000001 3311.2 ]\n", + " [2007.99999998 2952.80000014]\n", + " [1649.60000006 2952.7999999 ]\n", + " [1291.20000015 2952.79999984]\n", + " [ 932.80000014 2952.7999999 ]\n", + " [ 574.39999986 2952.80000008]\n", + " [ 215.99999973 2952.80000012]\n", + " [2007.99999998 2594.40000007]\n", + " [1649.60000022 2594.39999977]\n", + " [1291.20000005 2594.39999997]\n", + " [ 932.79999996 2594.40000002]\n", + " [ 574.39999995 2594.40000002]\n", + " [ 216.00000004 2594.39999999]\n", + " [2008.00000021 2235.99999975]\n", + " [1649.59999975 2236.00000009]\n", + " [1291.20000026 2235.99999995]\n", + " [ 932.79999972 2236.00000004]\n", + " [ 574.39999974 2236.00000003]\n", + " [ 216.00000028 2235.99999998]]\n", + "DEBUG:root:fitpix2pix: ccdpx: shape: (96, 2)\n", + "DEBUG:root:fitpix2pix: visCut: True\n", + "DEBUG:root:make_az_asym: xyp: [[ 0.173161 -31.45819714]\n", + " [ 0.17304708 -27.07176857]\n", + " [ 0.17293316 -22.68534 ]\n", + " [ 0.17281925 -18.29891143]\n", + " [ 0.17270533 -13.91248287]\n", + " [ 0.17259141 -9.52605429]\n", + " [ 0.17247749 -5.13962573]\n", + " [ 0.17236358 -0.75319715]\n", + " [ 0.173161 -31.45819714]\n", + " [ 4.55958957 -31.45808322]\n", + " [ 8.94601814 -31.45796931]\n", + " [ 13.33244671 -31.45785538]\n", + " [ 17.71887528 -31.45774147]\n", + " [ 22.10530385 -31.45762756]\n", + " [ 26.49173242 -31.45751363]\n", + " [ 30.87816099 -31.45739971]\n", + " [ 0.17236358 -0.75319715]\n", + " [ 4.55879215 -0.75308323]\n", + " [ 8.94522072 -0.75296932]\n", + " [ 13.33164929 -0.7528554 ]\n", + " [ 17.71807786 -0.75274148]\n", + " [ 22.10450643 -0.75262756]\n", + " [ 26.490935 -0.75251364]\n", + " [ 30.87736356 -0.75239973]\n", + " [ 30.87816099 -31.45739971]\n", + " [ 30.87804707 -27.07097114]\n", + " [ 30.87793315 -22.68454257]\n", + " [ 30.87781924 -18.29811401]\n", + " [ 30.87770532 -13.91168544]\n", + " [ 30.87759141 -9.52525687]\n", + " [ 30.87747749 -5.1388283 ]\n", + " [ 30.87736356 -0.75239973]\n", + " [ 0.18811133 -29.54569675]\n", + " [ 0.18797171 -24.16969676]\n", + " [ 0.1878321 -18.79369675]\n", + " [ 0.18769248 -13.41769676]\n", + " [ 0.18755286 -8.04169676]\n", + " [ 0.18741324 -2.66569676]\n", + " [ 2.08566061 -31.44314748]\n", + " [ 7.46166061 -31.44300785]\n", + " [ 12.83766061 -31.44286824]\n", + " [ 18.2136606 -31.44272862]\n", + " [ 23.5896606 -31.442589 ]\n", + " [ 28.9656606 -31.44244938]\n", + " [ 2.08486397 -0.76814748]\n", + " [ 7.46086396 -0.76800786]\n", + " [ 12.83686396 -0.76786825]\n", + " [ 18.21286396 -0.76772863]\n", + " [ 23.58886395 -0.76758901]\n", + " [ 28.96486395 -0.7674494 ]\n", + " [ 30.86311132 -29.54490011]\n", + " [ 30.86297171 -24.16890011]\n", + " [ 30.86283209 -18.79290011]\n", + " [ 30.86269247 -13.41690011]\n", + " [ 30.86255285 -8.04090011]\n", + " [ 30.86241323 -2.66490012]\n", + " [ 0.18816061 -31.44319675]\n", + " [ 0.18816061 -31.44319675]\n", + " [ 30.86236396 -0.76740012]\n", + " [ 30.86236396 -0.76740012]\n", + " [ 2.08561133 -29.54564748]\n", + " [ 7.46161133 -29.54550785]\n", + " [ 12.83761133 -29.54536824]\n", + " [ 18.21361133 -29.54522862]\n", + " [ 23.58961132 -29.545089 ]\n", + " [ 28.96561132 -29.54494938]\n", + " [ 2.08547171 -24.16964747]\n", + " [ 7.46147171 -24.16950786]\n", + " [ 12.83747171 -24.16936824]\n", + " [ 18.21347171 -24.16922862]\n", + " [ 23.58947171 -24.16908901]\n", + " [ 28.9654717 -24.16894939]\n", + " [ 2.0853321 -18.79364747]\n", + " [ 7.46133209 -18.79350785]\n", + " [ 12.83733209 -18.79336824]\n", + " [ 18.21333209 -18.79322862]\n", + " [ 23.58933209 -18.79308901]\n", + " [ 28.96533209 -18.79294939]\n", + " [ 2.08519248 -13.41764748]\n", + " [ 7.46119248 -13.41750786]\n", + " [ 12.83719247 -13.41736824]\n", + " [ 18.21319248 -13.41722863]\n", + " [ 23.58919247 -13.41708901]\n", + " [ 28.96519247 -13.41694939]\n", + " [ 2.08505286 -8.04164748]\n", + " [ 7.46105286 -8.04150786]\n", + " [ 12.83705286 -8.04136825]\n", + " [ 18.21305286 -8.04122863]\n", + " [ 23.58905286 -8.04108901]\n", + " [ 28.96505285 -8.04094939]\n", + " [ 2.08491324 -2.66564748]\n", + " [ 7.46091324 -2.66550786]\n", + " [ 12.83691324 -2.66536825]\n", + " [ 18.21291324 -2.66522863]\n", + " [ 23.58891323 -2.66508901]\n", + " [ 28.96491324 -2.66494939]]\n", + "DEBUG:root:radec2pix: lng: [44.21386846 39.93704685 35.05017674 29.50039724 23.26936887 16.39762201\n", + " 9.00597869 1.30015678 44.21386846 48.38707907 53.17846261 58.652901\n", + " 64.84492629 71.73221904 79.20889503 87.07353952 1.30015678 1.50828626\n", + " 1.79395925 2.21040578 2.87397756 4.09690845 7.09544794 25.08421915\n", + " 87.07353952 86.60429547 85.95429853 84.99452258 83.43549808 80.46877478\n", + " 72.72327889 25.08421915 42.4332296 36.78871515 30.1721461 22.534249\n", + " 13.95213213 4.68455031 45.9485209 51.4701262 57.98745342 65.57788622\n", + " 74.19728483 83.61034654 1.41178444 1.72041252 2.19784005 3.03449456\n", + " 4.87874528 12.23608945 86.85702241 86.16514834 85.07964235 83.13325955\n", + " 78.65106614 58.79906907 44.21351009 44.21351009 25.31647093 25.31647093\n", + " 44.16528338 49.72110165 56.36353517 64.20866184 73.23888739 83.20517984\n", + " 38.4669715 43.98823734 50.87875671 59.43072848 69.79141059 81.71788613\n", + " 31.70295803 36.8883708 43.71214181 52.77876171 64.67058062 79.40261268\n", + " 23.79006954 28.17687017 34.3103939 43.22163096 56.45806862 75.32225144\n", + " 14.78760738 17.78662299 22.23218915 29.3788791 42.10872179 66.39896872\n", + " 4.97718101 6.0450351 7.68908472 10.5407344 16.64345121 37.15297361]\n", + "DEBUG:root:make_az_asym: xyp: shape: (96, 2)\n", + "DEBUG:root:mm_to_pix: fitpx: [[0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]]\n", + "DEBUG:root:mm_to_pix: fitpx.shape: (96, 2)\n", + "DEBUG:root:radec2pix: lat: [73.24843796 74.22959053 75.14101603 75.95564397 76.6437957 77.17522107\n", + " 77.52247637 77.66531399 73.24843796 74.25938156 75.20604331 76.06127099\n", + " 76.79469021 77.37449152 77.77070397 77.95983585 77.66531399 79.26403549\n", + " 80.8954867 82.55419485 84.2348008 85.93154111 87.63625009 89.30890983\n", + " 77.95983585 79.5631834 81.19741545 82.85654952 84.53396682 86.22024\n", + " 87.89143193 89.30890983 73.68688931 74.8461168 75.87404737 76.71704667\n", + " 77.31977046 77.63442603 73.69912883 74.89851762 75.9747656 76.87322604\n", + " 77.53566935 77.90931811 78.357841 80.33991917 82.36567874 84.42519517\n", + " 86.5076147 88.59172382 78.65442708 80.64093339 82.6678651 84.72327772\n", + " 86.78866387 88.77999774 73.25542451 73.25542451 89.30107513 89.30107513\n", + " 74.14922787 75.40361568 76.5361131 77.48786454 78.19419066 78.59463145\n", + " 75.36296624 76.78183851 78.08930019 79.21461778 80.0707569 80.56622359\n", + " 76.44568445 78.03639269 79.53999931 80.87766645 81.93562678 82.57036945\n", + " 77.33928008 79.09582585 80.80551049 82.39402202 83.72877916 84.58613925\n", + " 77.98201104 79.8754942 81.77128989 83.62092117 85.31596639 86.56531268\n", + " 78.31903282 80.2916347 82.30308639 84.33811541 86.36841377 88.27312586]\n", + "DEBUG:root:radec2pix: xyfp: [[ 0.173161 -31.45819714]\n", + " [ 0.17304708 -27.07176857]\n", + " [ 0.17293316 -22.68534 ]\n", + " [ 0.17281925 -18.29891143]\n", + " [ 0.17270533 -13.91248287]\n", + " [ 0.17259141 -9.52605429]\n", + " [ 0.17247749 -5.13962573]\n", + " [ 0.17236358 -0.75319715]\n", + " [ 0.173161 -31.45819714]\n", + " [ 4.55958957 -31.45808322]\n", + " [ 8.94601814 -31.45796931]\n", + " [ 13.33244671 -31.45785538]\n", + " [ 17.71887528 -31.45774147]\n", + " [ 22.10530385 -31.45762756]\n", + " [ 26.49173242 -31.45751363]\n", + " [ 30.87816099 -31.45739971]\n", + " [ 0.17236358 -0.75319715]\n", + " [ 4.55879215 -0.75308323]\n", + " [ 8.94522072 -0.75296932]\n", + " [ 13.33164929 -0.7528554 ]\n", + " [ 17.71807786 -0.75274148]\n", + " [ 22.10450643 -0.75262756]\n", + " [ 26.490935 -0.75251364]\n", + " [ 30.87736356 -0.75239973]\n", + " [ 30.87816099 -31.45739971]\n", + " [ 30.87804707 -27.07097114]\n", + " [ 30.87793315 -22.68454257]\n", + " [ 30.87781924 -18.29811401]\n", + " [ 30.87770532 -13.91168544]\n", + " [ 30.87759141 -9.52525687]\n", + " [ 30.87747749 -5.1388283 ]\n", + " [ 30.87736356 -0.75239973]\n", + " [ 0.18811133 -29.54569675]\n", + " [ 0.18797171 -24.16969676]\n", + " [ 0.1878321 -18.79369675]\n", + " [ 0.18769248 -13.41769676]\n", + " [ 0.18755286 -8.04169676]\n", + " [ 0.18741324 -2.66569676]\n", + " [ 2.08566061 -31.44314748]\n", + " [ 7.46166061 -31.44300785]\n", + " [ 12.83766061 -31.44286824]\n", + " [ 18.2136606 -31.44272862]\n", + " [ 23.5896606 -31.442589 ]\n", + " [ 28.9656606 -31.44244938]\n", + " [ 2.08486397 -0.76814748]\n", + " [ 7.46086396 -0.76800786]\n", + " [ 12.83686396 -0.76786825]\n", + " [ 18.21286396 -0.76772863]\n", + " [ 23.58886395 -0.76758901]\n", + " [ 28.96486395 -0.7674494 ]\n", + " [ 30.86311132 -29.54490011]\n", + " [ 30.86297171 -24.16890011]\n", + " [ 30.86283209 -18.79290011]\n", + " [ 30.86269247 -13.41690011]\n", + " [ 30.86255285 -8.04090011]\n", + " [ 30.86241323 -2.66490012]\n", + " [ 0.18816061 -31.44319675]\n", + " [ 0.18816061 -31.44319675]\n", + " [ 30.86236396 -0.76740012]\n", + " [ 30.86236396 -0.76740012]\n", + " [ 2.08561133 -29.54564748]\n", + " [ 7.46161133 -29.54550785]\n", + " [ 12.83761133 -29.54536824]\n", + " [ 18.21361133 -29.54522862]\n", + " [ 23.58961132 -29.545089 ]\n", + " [ 28.96561132 -29.54494938]\n", + " [ 2.08547171 -24.16964747]\n", + " [ 7.46147171 -24.16950786]\n", + " [ 12.83747171 -24.16936824]\n", + " [ 18.21347171 -24.16922862]\n", + " [ 23.58947171 -24.16908901]\n", + " [ 28.9654717 -24.16894939]\n", + " [ 2.0853321 -18.79364747]\n", + " [ 7.46133209 -18.79350785]\n", + " [ 12.83733209 -18.79336824]\n", + " [ 18.21333209 -18.79322862]\n", + " [ 23.58933209 -18.79308901]\n", + " [ 28.96533209 -18.79294939]\n", + " [ 2.08519248 -13.41764748]\n", + " [ 7.46119248 -13.41750786]\n", + " [ 12.83719247 -13.41736824]\n", + " [ 18.21319248 -13.41722863]\n", + " [ 23.58919247 -13.41708901]\n", + " [ 28.96519247 -13.41694939]\n", + " [ 2.08505286 -8.04164748]\n", + " [ 7.46105286 -8.04150786]\n", + " [ 12.83705286 -8.04136825]\n", + " [ 18.21305286 -8.04122863]\n", + " [ 23.58905286 -8.04108901]\n", + " [ 28.96505285 -8.04094939]\n", + " [ 2.08491324 -2.66564748]\n", + " [ 7.46091324 -2.66550786]\n", + " [ 12.83691324 -2.66536825]\n", + " [ 18.21291324 -2.66522863]\n", + " [ 23.58891323 -2.66508901]\n", + " [ 28.96491324 -2.66494939]]\n", + "DEBUG:root:radec2pix: xyfp Shape: (96, 2)\n", + "DEBUG:root:radec2pix: xyfp: [[-32.203794 -31.5506227 ]\n", + " [-32.20328688 -27.16419416]\n", + " [-32.20277976 -22.77776561]\n", + " [-32.20227264 -18.39133707]\n", + " [-32.20176553 -14.00490853]\n", + " [-32.20125841 -9.61847999]\n", + " [-32.20075129 -5.23205144]\n", + " [-32.20024417 -0.8456229 ]\n", + " [-32.203794 -31.5506227 ]\n", + " [-27.81736545 -31.55112981]\n", + " [-23.43093691 -31.55163693]\n", + " [-19.04450837 -31.55214405]\n", + " [-14.65807983 -31.55265117]\n", + " [-10.27165129 -31.55315829]\n", + " [ -5.88522274 -31.5536654 ]\n", + " [ -1.4987942 -31.55417252]\n", + " [-32.20024417 -0.8456229 ]\n", + " [-27.81381563 -0.84613002]\n", + " [-23.42738708 -0.84663714]\n", + " [-19.04095854 -0.84714426]\n", + " [-14.65453 -0.84765137]\n", + " [-10.26810146 -0.84815849]\n", + " [ -5.88167292 -0.84866561]\n", + " [ -1.49524438 -0.84917273]\n", + " [ -1.4987942 -31.55417252]\n", + " [ -1.49828708 -27.16774398]\n", + " [ -1.49777997 -22.78131544]\n", + " [ -1.49727285 -18.39488689]\n", + " [ -1.49676573 -14.00845835]\n", + " [ -1.49625861 -9.62202981]\n", + " [ -1.49575149 -5.23560127]\n", + " [ -1.49524438 -0.84917273]\n", + " [-32.18857289 -29.63812445]\n", + " [-32.18795136 -24.26212448]\n", + " [-32.18732984 -18.88612452]\n", + " [-32.18670832 -13.51012455]\n", + " [-32.1860868 -8.13412459]\n", + " [-32.18546528 -2.75812462]\n", + " [-30.29129227 -31.5358438 ]\n", + " [-24.91529231 -31.53646533]\n", + " [-19.53929235 -31.53708685]\n", + " [-14.16329238 -31.53770837]\n", + " [ -8.78729242 -31.53832989]\n", + " [ -3.41129245 -31.53895142]\n", + " [-30.28774592 -0.86084401]\n", + " [-24.91174595 -0.86146553]\n", + " [-19.53574599 -0.86208705]\n", + " [-14.15974603 -0.86270858]\n", + " [ -8.78374606 -0.8633301 ]\n", + " [ -3.4077461 -0.86395162]\n", + " [ -1.5135731 -29.6416708 ]\n", + " [ -1.51295157 -24.26567084]\n", + " [ -1.51233005 -18.88967087]\n", + " [ -1.51170853 -13.51367091]\n", + " [ -1.51108701 -8.13767095]\n", + " [ -1.51046548 -2.76167097]\n", + " [-32.18879227 -31.53562444]\n", + " [-32.18879227 -31.53562444]\n", + " [ -1.51024611 -0.86417099]\n", + " [ -1.51024611 -0.86417099]\n", + " [-30.29107291 -29.63834382]\n", + " [-24.91507294 -29.63896534]\n", + " [-19.53907298 -29.63958686]\n", + " [-14.16307301 -29.64020839]\n", + " [ -8.78707305 -29.64082991]\n", + " [ -3.41107308 -29.64145143]\n", + " [-30.29045138 -24.26234385]\n", + " [-24.91445142 -24.26296538]\n", + " [-19.53845145 -24.2635869 ]\n", + " [-14.16245149 -24.26420842]\n", + " [ -8.78645152 -24.26482994]\n", + " [ -3.41045156 -24.26545147]\n", + " [-30.28982986 -18.88634389]\n", + " [-24.91382989 -18.88696541]\n", + " [-19.53782993 -18.88758693]\n", + " [-14.16182997 -18.88820846]\n", + " [ -8.78583 -18.88882997]\n", + " [ -3.40983004 -18.8894515 ]\n", + " [-30.28920834 -13.51034392]\n", + " [-24.91320837 -13.51096545]\n", + " [-19.53720841 -13.51158697]\n", + " [-14.16120844 -13.51220849]\n", + " [ -8.78520848 -13.51283002]\n", + " [ -3.40920852 -13.51345154]\n", + " [-30.28858681 -8.13434396]\n", + " [-24.91258685 -8.13496548]\n", + " [-19.53658688 -8.135587 ]\n", + " [-14.16058692 -8.13620852]\n", + " [ -8.78458696 -8.13683005]\n", + " [ -3.40858699 -8.13745157]\n", + " [-30.28796529 -2.75834399]\n", + " [-24.91196532 -2.75896552]\n", + " [-19.53596536 -2.75958704]\n", + " [-14.1599654 -2.76020856]\n", + " [ -8.78396543 -2.76083009]\n", + " [ -3.40796547 -2.76145161]]\n", + "DEBUG:root:mm_to_pix: fitpx: [[0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]]\n", + "DEBUG:root:mm_to_pix: fitpx.shape: (96, 2)\n", + "DEBUG:root:radec2pix: ccdpx: [[-4.45000001e+01 -5.00000132e-01]\n", + " [-4.45000001e+01 2.91928571e+02]\n", + " [-4.44999999e+01 5.84357143e+02]\n", + " [-4.44999998e+01 8.76785714e+02]\n", + " [-4.45000000e+01 1.16921429e+03]\n", + " [-4.45000002e+01 1.46164286e+03]\n", + " [-4.44999998e+01 1.75407143e+03]\n", + " [-4.44999999e+01 2.04650000e+03]\n", + " [-4.45000001e+01 -5.00000132e-01]\n", + " [ 2.47928572e+02 -4.99999845e-01]\n", + " [ 5.40357143e+02 -5.00000146e-01]\n", + " [ 8.32785714e+02 -4.99999843e-01]\n", + " [ 1.12521429e+03 -4.99999832e-01]\n", + " [ 1.41764286e+03 -5.00000031e-01]\n", + " [ 1.71007143e+03 -5.00000120e-01]\n", + " [ 2.00250000e+03 -4.99999883e-01]\n", + " [-4.44999999e+01 2.04650000e+03]\n", + " [ 2.47928572e+02 2.04650000e+03]\n", + " [ 5.40357143e+02 2.04650000e+03]\n", + " [ 8.32785714e+02 2.04650000e+03]\n", + " [ 1.12521429e+03 2.04650000e+03]\n", + " [ 1.41764286e+03 2.04650000e+03]\n", + " [ 1.71007143e+03 2.04650000e+03]\n", + " [ 2.00250000e+03 2.04650000e+03]\n", + " [ 2.00250000e+03 -4.99999883e-01]\n", + " [ 2.00250000e+03 2.91928571e+02]\n", + " [ 2.00250000e+03 5.84357143e+02]\n", + " [ 2.00250000e+03 8.76785714e+02]\n", + " [ 2.00250000e+03 1.16921429e+03]\n", + " [ 2.00250000e+03 1.46164286e+03]\n", + " [ 2.00250000e+03 1.75407143e+03]\n", + " [ 2.00250000e+03 2.04650000e+03]\n", + " [-4.35000002e+01 1.27000000e+02]\n", + " [-4.34999998e+01 4.85400000e+02]\n", + " [-4.34999999e+01 8.43800000e+02]\n", + " [-4.35000001e+01 1.20220000e+03]\n", + " [-4.34999999e+01 1.56060000e+03]\n", + " [-4.35000000e+01 1.91900000e+03]\n", + " [ 8.30000001e+01 5.00000120e-01]\n", + " [ 4.41400000e+02 4.99999839e-01]\n", + " [ 7.99800000e+02 4.99999975e-01]\n", + " [ 1.15820000e+03 5.00000060e-01]\n", + " [ 1.51660000e+03 5.00000260e-01]\n", + " [ 1.87500000e+03 4.99999701e-01]\n", + " [ 8.29999997e+01 2.04550000e+03]\n", + " [ 4.41400000e+02 2.04550000e+03]\n", + " [ 7.99800000e+02 2.04550000e+03]\n", + " [ 1.15820000e+03 2.04550000e+03]\n", + " [ 1.51660000e+03 2.04550000e+03]\n", + " [ 1.87500000e+03 2.04550000e+03]\n", + " [ 2.00150000e+03 1.27000000e+02]\n", + " [ 2.00150000e+03 4.85400000e+02]\n", + " [ 2.00150000e+03 8.43800000e+02]\n", + " [ 2.00150000e+03 1.20220000e+03]\n", + " [ 2.00150000e+03 1.56060000e+03]\n", + " [ 2.00150000e+03 1.91900000e+03]\n", + " [-4.35000003e+01 4.99999746e-01]\n", + " [-4.35000003e+01 4.99999746e-01]\n", + " [ 2.00150000e+03 2.04550000e+03]\n", + " [ 2.00150000e+03 2.04550000e+03]\n", + " [ 8.29999998e+01 1.27000000e+02]\n", + " [ 4.41400000e+02 1.27000000e+02]\n", + " [ 7.99800000e+02 1.27000000e+02]\n", + " [ 1.15820000e+03 1.27000000e+02]\n", + " [ 1.51660000e+03 1.27000000e+02]\n", + " [ 1.87500000e+03 1.27000000e+02]\n", + " [ 8.30000000e+01 4.85400000e+02]\n", + " [ 4.41400000e+02 4.85400000e+02]\n", + " [ 7.99800000e+02 4.85400000e+02]\n", + " [ 1.15820000e+03 4.85400000e+02]\n", + " [ 1.51660000e+03 4.85400000e+02]\n", + " [ 1.87500000e+03 4.85400000e+02]\n", + " [ 8.29999999e+01 8.43800000e+02]\n", + " [ 4.41400000e+02 8.43800000e+02]\n", + " [ 7.99800000e+02 8.43800000e+02]\n", + " [ 1.15820000e+03 8.43800000e+02]\n", + " [ 1.51660000e+03 8.43800000e+02]\n", + " [ 1.87500000e+03 8.43800000e+02]\n", + " [ 8.29999998e+01 1.20220000e+03]\n", + " [ 4.41400000e+02 1.20220000e+03]\n", + " [ 7.99800000e+02 1.20220000e+03]\n", + " [ 1.15820000e+03 1.20220000e+03]\n", + " [ 1.51660000e+03 1.20220000e+03]\n", + " [ 1.87500000e+03 1.20220000e+03]\n", + " [ 8.30000000e+01 1.56060000e+03]\n", + " [ 4.41400000e+02 1.56060000e+03]\n", + " [ 7.99800000e+02 1.56060000e+03]\n", + " [ 1.15820000e+03 1.56060000e+03]\n", + " [ 1.51660000e+03 1.56060000e+03]\n", + " [ 1.87500000e+03 1.56060000e+03]\n", + " [ 8.30000000e+01 1.91900000e+03]\n", + " [ 4.41400000e+02 1.91900000e+03]\n", + " [ 7.99800000e+02 1.91900000e+03]\n", + " [ 1.15820000e+03 1.91900000e+03]\n", + " [ 1.51660000e+03 1.91900000e+03]\n", + " [ 1.87500000e+03 1.91900000e+03]]\n", + "DEBUG:root:optics_fp: rtanth: [45.0829242 42.14007881 39.46623798 37.11957906 35.16566323 33.67292833\n", + " 32.70458448 32.30781794 45.0829242 42.05181002 39.27748601 36.81804721\n", + " 34.74043472 33.1165898 32.01563284 31.49245123 32.30781794 27.92274647\n", + " 23.53818074 19.15446803 14.77236778 10.39391962 6.02708817 1.76054813\n", + " 31.49245123 27.11255561 22.73517913 18.3621235 13.99743906 9.65248838\n", + " 5.37533955 1.76054813 43.75905359 40.32550839 37.35292806 34.95909888\n", + " 33.26918554 32.39354213 43.72230567 40.17242604 37.06494796 34.51955493\n", + " 32.6679006 31.63204924 30.39623387 25.02228675 19.64946278 14.27902981\n", + " 8.91530985 3.58853155 29.58337372 24.21709844 18.85636405 13.50776907\n", + " 8.19511667 3.10850472 45.06171287 45.06171287 1.78051042 1.78051042\n", + " 42.37849474 38.70556314 35.46980647 32.8008609 30.84620775 29.74698879\n", + " 38.82304306 34.77660814 31.13517347 28.05687673 25.74452154 24.41669917\n", + " 35.72566697 31.28109784 27.17523938 23.58565115 20.78160237 19.11203303\n", + " 33.21476541 28.37964838 23.77795187 19.57499171 16.08640287 13.86243725\n", + " 31.43120667 26.26984115 21.21535074 16.36705265 11.9779994 8.76739863\n", + " 30.50284606 25.15168819 19.81398425 14.50459502 9.27228848 4.40115246]\n", + "DEBUG:root:optics_fp: cphi: [0.71674184 0.76675024 0.81864942 0.87035228 0.91865771 0.95932569\n", + " 0.98767201 0.99974255 0.71674184 0.66409483 0.59932455 0.52022133\n", + " 0.42506968 0.31345852 0.18722881 0.05105417 0.99974255 0.99965353\n", + " 0.99950987 0.99925593 0.99874223 0.99744464 0.99234175 0.9056856\n", + " 0.05105417 0.05923154 0.07055215 0.08725098 0.11432168 0.16558509\n", + " 0.29698694 0.9056856 0.73806414 0.80084934 0.86451924 0.92365062\n", + " 0.9704975 0.99665945 0.6953044 0.6229226 0.53010496 0.41345588\n", + " 0.27232584 0.11128947 0.99969644 0.99954923 0.99926436 0.99859785\n", + " 0.99637691 0.97728259 0.0548278 0.06688083 0.08577093 0.11956053\n", + " 0.19678357 0.51804091 0.7167462 0.7167462 0.90395966 0.90395966\n", + " 0.7173329 0.64650885 0.55392153 0.43509499 0.28838199 0.1183142\n", + " 0.78296688 0.7194824 0.6309635 0.50857972 0.34543889 0.14404729\n", + " 0.85078398 0.79980651 0.72282072 0.60489433 0.42782202 0.18390653\n", + " 0.9150296 0.88149415 0.82599605 0.72871014 0.55254711 0.25338228\n", + " 0.96687862 0.95220074 0.92565817 0.87139471 0.74187378 0.40036553\n", + " 0.99622933 0.99443943 0.99100871 0.9831251 0.95810564 0.79702588]\n", + "DEBUG:root:radec2pix: xyfp: [[ 0.173161 -31.45819714]\n", + " [ 0.17304708 -27.07176857]\n", + " [ 0.17293316 -22.68534 ]\n", + " [ 0.17281925 -18.29891143]\n", + " [ 0.17270533 -13.91248287]\n", + " [ 0.17259141 -9.52605429]\n", + " [ 0.17247749 -5.13962573]\n", + " [ 0.17236358 -0.75319715]\n", + " [ 0.173161 -31.45819714]\n", + " [ 4.55958957 -31.45808322]\n", + " [ 8.94601814 -31.45796931]\n", + " [ 13.33244671 -31.45785538]\n", + " [ 17.71887528 -31.45774147]\n", + " [ 22.10530385 -31.45762756]\n", + " [ 26.49173242 -31.45751363]\n", + " [ 30.87816099 -31.45739971]\n", + " [ 0.17236358 -0.75319715]\n", + " [ 4.55879215 -0.75308323]\n", + " [ 8.94522072 -0.75296932]\n", + " [ 13.33164929 -0.7528554 ]\n", + " [ 17.71807786 -0.75274148]\n", + " [ 22.10450643 -0.75262756]\n", + " [ 26.490935 -0.75251364]\n", + " [ 30.87736356 -0.75239973]\n", + " [ 30.87816099 -31.45739971]\n", + " [ 30.87804707 -27.07097114]\n", + " [ 30.87793315 -22.68454257]\n", + " [ 30.87781924 -18.29811401]\n", + " [ 30.87770532 -13.91168544]\n", + " [ 30.87759141 -9.52525687]\n", + " [ 30.87747749 -5.1388283 ]\n", + " [ 30.87736356 -0.75239973]\n", + " [ 0.18811133 -29.54569675]\n", + " [ 0.18797171 -24.16969676]\n", + " [ 0.1878321 -18.79369675]\n", + " [ 0.18769248 -13.41769676]\n", + " [ 0.18755286 -8.04169676]\n", + " [ 0.18741324 -2.66569676]\n", + " [ 2.08566061 -31.44314748]\n", + " [ 7.46166061 -31.44300785]\n", + " [ 12.83766061 -31.44286824]\n", + " [ 18.2136606 -31.44272862]\n", + " [ 23.5896606 -31.442589 ]\n", + " [ 28.9656606 -31.44244938]\n", + " [ 2.08486397 -0.76814748]\n", + " [ 7.46086396 -0.76800786]\n", + " [ 12.83686396 -0.76786825]\n", + " [ 18.21286396 -0.76772863]\n", + " [ 23.58886395 -0.76758901]\n", + " [ 28.96486395 -0.7674494 ]\n", + " [ 30.86311132 -29.54490011]\n", + " [ 30.86297171 -24.16890011]\n", + " [ 30.86283209 -18.79290011]\n", + " [ 30.86269247 -13.41690011]\n", + " [ 30.86255285 -8.04090011]\n", + " [ 30.86241323 -2.66490012]\n", + " [ 0.18816061 -31.44319675]\n", + " [ 0.18816061 -31.44319675]\n", + " [ 30.86236396 -0.76740012]\n", + " [ 30.86236396 -0.76740012]\n", + " [ 2.08561133 -29.54564748]\n", + " [ 7.46161133 -29.54550785]\n", + " [ 12.83761133 -29.54536824]\n", + " [ 18.21361133 -29.54522862]\n", + " [ 23.58961132 -29.545089 ]\n", + " [ 28.96561132 -29.54494938]\n", + " [ 2.08547171 -24.16964747]\n", + " [ 7.46147171 -24.16950786]\n", + " [ 12.83747171 -24.16936824]\n", + " [ 18.21347171 -24.16922862]\n", + " [ 23.58947171 -24.16908901]\n", + " [ 28.9654717 -24.16894939]\n", + " [ 2.0853321 -18.79364747]\n", + " [ 7.46133209 -18.79350785]\n", + " [ 12.83733209 -18.79336824]\n", + " [ 18.21333209 -18.79322862]\n", + " [ 23.58933209 -18.79308901]\n", + " [ 28.96533209 -18.79294939]\n", + " [ 2.08519248 -13.41764748]\n", + " [ 7.46119248 -13.41750786]\n", + " [ 12.83719247 -13.41736824]\n", + " [ 18.21319248 -13.41722863]\n", + " [ 23.58919247 -13.41708901]\n", + " [ 28.96519247 -13.41694939]\n", + " [ 2.08505286 -8.04164748]\n", + " [ 7.46105286 -8.04150786]\n", + " [ 12.83705286 -8.04136825]\n", + " [ 18.21305286 -8.04122863]\n", + " [ 23.58905286 -8.04108901]\n", + " [ 28.96505285 -8.04094939]\n", + " [ 2.08491324 -2.66564748]\n", + " [ 7.46091324 -2.66550786]\n", + " [ 12.83691324 -2.66536825]\n", + " [ 18.21291324 -2.66522863]\n", + " [ 23.58891323 -2.66508901]\n", + " [ 28.96491324 -2.66494939]]\n", + "DEBUG:root:radec2pix: fitpx: [[-5.00000135e-01 -5.00000132e-01]\n", + " [-5.00000144e-01 2.91928571e+02]\n", + " [-4.99999914e-01 5.84357143e+02]\n", + " [-4.99999810e-01 8.76785714e+02]\n", + " [-5.00000028e-01 1.16921429e+03]\n", + " [-5.00000159e-01 1.46164286e+03]\n", + " [-4.99999755e-01 1.75407143e+03]\n", + " [-4.99999923e-01 2.04650000e+03]\n", + " [-5.00000135e-01 -5.00000132e-01]\n", + " [ 2.91928572e+02 -4.99999845e-01]\n", + " [ 5.84357143e+02 -5.00000146e-01]\n", + " [ 8.76785714e+02 -4.99999843e-01]\n", + " [ 1.16921429e+03 -4.99999832e-01]\n", + " [ 1.46164286e+03 -5.00000031e-01]\n", + " [ 1.75407143e+03 -5.00000120e-01]\n", + " [ 2.04650000e+03 -4.99999883e-01]\n", + " [-4.99999923e-01 2.04650000e+03]\n", + " [ 2.91928572e+02 2.04650000e+03]\n", + " [ 5.84357143e+02 2.04650000e+03]\n", + " [ 8.76785714e+02 2.04650000e+03]\n", + " [ 1.16921429e+03 2.04650000e+03]\n", + " [ 1.46164286e+03 2.04650000e+03]\n", + " [ 1.75407143e+03 2.04650000e+03]\n", + " [ 2.04650000e+03 2.04650000e+03]\n", + " [ 2.04650000e+03 -4.99999883e-01]\n", + " [ 2.04650000e+03 2.91928571e+02]\n", + " [ 2.04650000e+03 5.84357143e+02]\n", + " [ 2.04650000e+03 8.76785714e+02]\n", + " [ 2.04650000e+03 1.16921429e+03]\n", + " [ 2.04650000e+03 1.46164286e+03]\n", + " [ 2.04650000e+03 1.75407143e+03]\n", + " [ 2.04650000e+03 2.04650000e+03]\n", + " [ 4.99999783e-01 1.27000000e+02]\n", + " [ 5.00000221e-01 4.85400000e+02]\n", + " [ 5.00000070e-01 8.43800000e+02]\n", + " [ 4.99999908e-01 1.20220000e+03]\n", + " [ 5.00000086e-01 1.56060000e+03]\n", + " [ 5.00000004e-01 1.91900000e+03]\n", + " [ 1.27000000e+02 5.00000120e-01]\n", + " [ 4.85400000e+02 4.99999839e-01]\n", + " [ 8.43800000e+02 4.99999975e-01]\n", + " [ 1.20220000e+03 5.00000060e-01]\n", + " [ 1.56060000e+03 5.00000260e-01]\n", + " [ 1.91900000e+03 4.99999701e-01]\n", + " [ 1.27000000e+02 2.04550000e+03]\n", + " [ 4.85400000e+02 2.04550000e+03]\n", + " [ 8.43800000e+02 2.04550000e+03]\n", + " [ 1.20220000e+03 2.04550000e+03]\n", + " [ 1.56060000e+03 2.04550000e+03]\n", + " [ 1.91900000e+03 2.04550000e+03]\n", + " [ 2.04550000e+03 1.27000000e+02]\n", + " [ 2.04550000e+03 4.85400000e+02]\n", + " [ 2.04550000e+03 8.43800000e+02]\n", + " [ 2.04550000e+03 1.20220000e+03]\n", + " [ 2.04550000e+03 1.56060000e+03]\n", + " [ 2.04550000e+03 1.91900000e+03]\n", + " [ 4.99999741e-01 4.99999746e-01]\n", + " [ 4.99999741e-01 4.99999746e-01]\n", + " [ 2.04550000e+03 2.04550000e+03]\n", + " [ 2.04550000e+03 2.04550000e+03]\n", + " [ 1.27000000e+02 1.27000000e+02]\n", + " [ 4.85400000e+02 1.27000000e+02]\n", + " [ 8.43800000e+02 1.27000000e+02]\n", + " [ 1.20220000e+03 1.27000000e+02]\n", + " [ 1.56060000e+03 1.27000000e+02]\n", + " [ 1.91900000e+03 1.27000000e+02]\n", + " [ 1.27000000e+02 4.85400000e+02]\n", + " [ 4.85400000e+02 4.85400000e+02]\n", + " [ 8.43800000e+02 4.85400000e+02]\n", + " [ 1.20220000e+03 4.85400000e+02]\n", + " [ 1.56060000e+03 4.85400000e+02]\n", + " [ 1.91900000e+03 4.85400000e+02]\n", + " [ 1.27000000e+02 8.43800000e+02]\n", + " [ 4.85400000e+02 8.43800000e+02]\n", + " [ 8.43800000e+02 8.43800000e+02]\n", + " [ 1.20220000e+03 8.43800000e+02]\n", + " [ 1.56060000e+03 8.43800000e+02]\n", + " [ 1.91900000e+03 8.43800000e+02]\n", + " [ 1.27000000e+02 1.20220000e+03]\n", + " [ 4.85400000e+02 1.20220000e+03]\n", + " [ 8.43800000e+02 1.20220000e+03]\n", + " [ 1.20220000e+03 1.20220000e+03]\n", + " [ 1.56060000e+03 1.20220000e+03]\n", + " [ 1.91900000e+03 1.20220000e+03]\n", + " [ 1.27000000e+02 1.56060000e+03]\n", + " [ 4.85400000e+02 1.56060000e+03]\n", + " [ 8.43800000e+02 1.56060000e+03]\n", + " [ 1.20220000e+03 1.56060000e+03]\n", + " [ 1.56060000e+03 1.56060000e+03]\n", + " [ 1.91900000e+03 1.56060000e+03]\n", + " [ 1.27000000e+02 1.91900000e+03]\n", + " [ 4.85400000e+02 1.91900000e+03]\n", + " [ 8.43800000e+02 1.91900000e+03]\n", + " [ 1.20220000e+03 1.91900000e+03]\n", + " [ 1.56060000e+03 1.91900000e+03]\n", + " [ 1.91900000e+03 1.91900000e+03]]\n", + "DEBUG:root:fitpix2pix: ccdpx: shape: (96, 2)\n", + "DEBUG:root:fitpix2pix: visCut: True\n", + "DEBUG:root:optics_fp: sphi: [0.69733861 0.64194554 0.57429359 0.49242959 0.39505443 0.28230164\n", + " 0.15653753 0.02269007 0.69733861 0.74764835 0.80050614 0.85403148\n", + " 0.90516063 0.94960189 0.98231633 0.99869589 0.02269007 0.02632152\n", + " 0.03130538 0.03856929 0.05013934 0.07144362 0.12352264 0.42394999\n", + " 0.99869589 0.99824427 0.99750809 0.99618636 0.99344379 0.98619551\n", + " 0.95488154 0.42394999 0.67473055 0.59886588 0.50259973 0.38323562\n", + " 0.24111118 0.08166976 0.71871537 0.78228347 0.84793203 0.91052415\n", + " 0.96220509 0.99378803 0.02463779 0.03002235 0.03835014 0.05293717\n", + " 0.08504731 0.21194041 0.99849582 0.99776097 0.99631488 0.99282691\n", + " 0.98044695 0.85535584 0.69733413 0.69733413 0.42761774 0.42761774\n", + " 0.69673058 0.76290649 0.83256888 0.90038456 0.95751545 0.99297621\n", + " 0.62206339 0.69451068 0.77581252 0.86101491 0.93844125 0.9895708\n", + " 0.52551558 0.6002579 0.6910356 0.79630575 0.903863 0.98294374\n", + " 0.40338671 0.47219495 0.5636759 0.68482227 0.83348167 0.96736623\n", + " 0.25523664 0.305473 0.37836089 0.49058257 0.67053956 0.91635552\n", + " 0.08675898 0.10531014 0.13379739 0.18293452 0.28641505 0.60394515]\n", + "DEBUG:root:radec2pix: ccdpx: [[-4.45000000e+01 -4.99999973e-01]\n", + " [-4.45000000e+01 2.91928572e+02]\n", + " [-4.45000000e+01 5.84357143e+02]\n", + " [-4.45000000e+01 8.76785714e+02]\n", + " [-4.45000000e+01 1.16921429e+03]\n", + " [-4.45000000e+01 1.46164286e+03]\n", + " [-4.45000000e+01 1.75407143e+03]\n", + " [-4.45000000e+01 2.04650000e+03]\n", + " [-4.45000000e+01 -4.99999973e-01]\n", + " [ 2.47928571e+02 -4.99999766e-01]\n", + " [ 5.40357143e+02 -5.00000023e-01]\n", + " [ 8.32785714e+02 -4.99999798e-01]\n", + " [ 1.12521429e+03 -5.00000229e-01]\n", + " [ 1.41764286e+03 -5.00000231e-01]\n", + " [ 1.71007143e+03 -4.99999870e-01]\n", + " [ 2.00250000e+03 -4.99999884e-01]\n", + " [-4.45000000e+01 2.04650000e+03]\n", + " [ 2.47928571e+02 2.04650000e+03]\n", + " [ 5.40357143e+02 2.04650000e+03]\n", + " [ 8.32785714e+02 2.04650000e+03]\n", + " [ 1.12521429e+03 2.04650000e+03]\n", + " [ 1.41764286e+03 2.04650000e+03]\n", + " [ 1.71007143e+03 2.04650000e+03]\n", + " [ 2.00250000e+03 2.04650000e+03]\n", + " [ 2.00250000e+03 -4.99999884e-01]\n", + " [ 2.00250000e+03 2.91928572e+02]\n", + " [ 2.00250000e+03 5.84357143e+02]\n", + " [ 2.00250000e+03 8.76785714e+02]\n", + " [ 2.00250000e+03 1.16921429e+03]\n", + " [ 2.00250000e+03 1.46164286e+03]\n", + " [ 2.00250000e+03 1.75407143e+03]\n", + " [ 2.00250000e+03 2.04650000e+03]\n", + " [-4.35000000e+01 1.27000000e+02]\n", + " [-4.35000000e+01 4.85400000e+02]\n", + " [-4.35000000e+01 8.43800000e+02]\n", + " [-4.35000000e+01 1.20220000e+03]\n", + " [-4.35000000e+01 1.56060000e+03]\n", + " [-4.35000000e+01 1.91900000e+03]\n", + " [ 8.30000000e+01 4.99999770e-01]\n", + " [ 4.41400000e+02 5.00000267e-01]\n", + " [ 7.99800000e+02 4.99999825e-01]\n", + " [ 1.15820000e+03 5.00000071e-01]\n", + " [ 1.51660000e+03 5.00000113e-01]\n", + " [ 1.87500000e+03 5.00000214e-01]\n", + " [ 8.30000000e+01 2.04550000e+03]\n", + " [ 4.41400000e+02 2.04550000e+03]\n", + " [ 7.99800000e+02 2.04550000e+03]\n", + " [ 1.15820000e+03 2.04550000e+03]\n", + " [ 1.51660000e+03 2.04550000e+03]\n", + " [ 1.87500000e+03 2.04550000e+03]\n", + " [ 2.00150000e+03 1.27000000e+02]\n", + " [ 2.00150000e+03 4.85400000e+02]\n", + " [ 2.00150000e+03 8.43800000e+02]\n", + " [ 2.00150000e+03 1.20220000e+03]\n", + " [ 2.00150000e+03 1.56060000e+03]\n", + " [ 2.00150000e+03 1.91900000e+03]\n", + " [-4.35000000e+01 5.00000284e-01]\n", + " [-4.35000000e+01 5.00000284e-01]\n", + " [ 2.00150000e+03 2.04550000e+03]\n", + " [ 2.00150000e+03 2.04550000e+03]\n", + " [ 8.30000000e+01 1.27000000e+02]\n", + " [ 4.41400000e+02 1.27000000e+02]\n", + " [ 7.99800000e+02 1.27000000e+02]\n", + " [ 1.15820000e+03 1.27000000e+02]\n", + " [ 1.51660000e+03 1.27000000e+02]\n", + " [ 1.87500000e+03 1.27000000e+02]\n", + " [ 8.30000000e+01 4.85400000e+02]\n", + " [ 4.41400000e+02 4.85400000e+02]\n", + " [ 7.99800000e+02 4.85400000e+02]\n", + " [ 1.15820000e+03 4.85400000e+02]\n", + " [ 1.51660000e+03 4.85400000e+02]\n", + " [ 1.87500000e+03 4.85400000e+02]\n", + " [ 8.30000000e+01 8.43800000e+02]\n", + " [ 4.41400000e+02 8.43800000e+02]\n", + " [ 7.99800000e+02 8.43800000e+02]\n", + " [ 1.15820000e+03 8.43800000e+02]\n", + " [ 1.51660000e+03 8.43800000e+02]\n", + " [ 1.87500000e+03 8.43800000e+02]\n", + " [ 8.30000000e+01 1.20220000e+03]\n", + " [ 4.41400000e+02 1.20220000e+03]\n", + " [ 7.99800000e+02 1.20220000e+03]\n", + " [ 1.15820000e+03 1.20220000e+03]\n", + " [ 1.51660000e+03 1.20220000e+03]\n", + " [ 1.87500000e+03 1.20220000e+03]\n", + " [ 8.30000000e+01 1.56060000e+03]\n", + " [ 4.41400000e+02 1.56060000e+03]\n", + " [ 7.99800000e+02 1.56060000e+03]\n", + " [ 1.15820000e+03 1.56060000e+03]\n", + " [ 1.51660000e+03 1.56060000e+03]\n", + " [ 1.87500000e+03 1.56060000e+03]\n", + " [ 8.30000000e+01 1.91900000e+03]\n", + " [ 4.41400000e+02 1.91900000e+03]\n", + " [ 7.99800000e+02 1.91900000e+03]\n", + " [ 1.15820000e+03 1.91900000e+03]\n", + " [ 1.51660000e+03 1.91900000e+03]\n", + " [ 1.87500000e+03 1.91900000e+03]]\n", + "DEBUG:root:optics_fp: xyfp: [[-32.31281793 -31.43806373]\n", + " [-32.31091541 -27.05163558]\n", + " [-32.30901287 -22.66520742]\n", + " [-32.30711034 -18.27877926]\n", + " [-32.3052078 -13.8923511 ]\n", + " [-32.30330527 -9.50592294]\n", + " [-32.30140274 -5.11949478]\n", + " [-32.2995002 -0.73306663]\n", + " [-32.31281793 -31.43806373]\n", + " [-27.92638978 -31.43996627]\n", + " [-23.53996162 -31.4418688 ]\n", + " [-19.15353346 -31.44377134]\n", + " [-14.7671053 -31.44567387]\n", + " [-10.38067715 -31.44757641]\n", + " [ -5.99424899 -31.44947894]\n", + " [ -1.60782083 -31.45138147]\n", + " [-32.2995002 -0.73306663]\n", + " [-27.91307204 -0.73496916]\n", + " [-23.52664389 -0.73687169]\n", + " [-19.14021573 -0.73877423]\n", + " [-14.75378757 -0.74067676]\n", + " [-10.36735941 -0.74257929]\n", + " [ -5.98093125 -0.74448183]\n", + " [ -1.59450309 -0.74638436]\n", + " [ -1.60782083 -31.45138147]\n", + " [ -1.60591829 -27.06495331]\n", + " [ -1.60401576 -22.67852516]\n", + " [ -1.60211323 -18.292097 ]\n", + " [ -1.60021069 -13.90566884]\n", + " [ -1.59830816 -9.51924068]\n", + " [ -1.59640563 -5.13281252]\n", + " [ -1.59450309 -0.74638436]\n", + " [-32.29698843 -29.52557043]\n", + " [-32.29465669 -24.14957093]\n", + " [-32.29232495 -18.77357144]\n", + " [-32.2899932 -13.39757194]\n", + " [-32.28766146 -8.02157244]\n", + " [-32.28532972 -2.64557295]\n", + " [-30.40031161 -31.42389325]\n", + " [-25.02431212 -31.42622499]\n", + " [-19.64831262 -31.42855673]\n", + " [-14.27231313 -31.43088848]\n", + " [ -8.89631363 -31.43322022]\n", + " [ -3.52031414 -31.43555196]\n", + " [-30.38700689 -0.74889614]\n", + " [-25.01100739 -0.75122788]\n", + " [-19.6350079 -0.75355962]\n", + " [-14.25900841 -0.75589136]\n", + " [ -8.88300892 -0.7582231 ]\n", + " [ -3.50700942 -0.76055484]\n", + " [ -1.62199131 -29.53887515]\n", + " [ -1.61965957 -24.16287565]\n", + " [ -1.61732783 -18.78687616]\n", + " [ -1.61499609 -13.41087666]\n", + " [ -1.61266434 -8.03487716]\n", + " [ -1.6103326 -2.65887768]\n", + " [-32.29781143 -31.42307024]\n", + " [-32.29781143 -31.42307024]\n", + " [ -1.60950959 -0.76137785]\n", + " [ -1.60950959 -0.76137785]\n", + " [-30.3994886 -29.52639343]\n", + " [-25.02348911 -29.52872517]\n", + " [-19.64748962 -29.53105692]\n", + " [-14.27149012 -29.53338866]\n", + " [ -8.89549063 -29.5357204 ]\n", + " [ -3.51949113 -29.53805214]\n", + " [-30.39715686 -24.15039394]\n", + " [-25.02115737 -24.15272568]\n", + " [-19.64515788 -24.15505742]\n", + " [-14.26915838 -24.15738916]\n", + " [ -8.89315889 -24.1597209 ]\n", + " [ -3.51715939 -24.16205264]\n", + " [-30.39482512 -18.77439444]\n", + " [-25.01882563 -18.77672618]\n", + " [-19.64282613 -18.77905793]\n", + " [-14.26682664 -18.78138967]\n", + " [ -8.89082714 -18.78372141]\n", + " [ -3.51482765 -18.78605315]\n", + " [-30.39249338 -13.39839495]\n", + " [-25.01649389 -13.40072669]\n", + " [-19.64049439 -13.40305843]\n", + " [-14.2644949 -13.40539017]\n", + " [ -8.8884954 -13.40772191]\n", + " [ -3.51249591 -13.41005365]\n", + " [-30.39016163 -8.02239545]\n", + " [-25.01416214 -8.02472719]\n", + " [-19.63816265 -8.02705893]\n", + " [-14.26216315 -8.02939068]\n", + " [ -8.88616366 -8.03172242]\n", + " [ -3.51016417 -8.03405416]\n", + " [-30.3878299 -2.64639596]\n", + " [-25.01183041 -2.6487277 ]\n", + " [-19.63583091 -2.65105944]\n", + " [-14.25983141 -2.65339118]\n", + " [ -8.88383191 -2.65572292]\n", + " [ -3.50783243 -2.65805467]]\n", + "DEBUG:root:optics_fp: xyfp shape: (96, 2)\n", + "DEBUG:root:radec2pix: fitpx: [[ 2.13550000e+03 -4.99999973e-01]\n", + " [ 2.13550000e+03 2.91928572e+02]\n", + " [ 2.13550000e+03 5.84357143e+02]\n", + " [ 2.13550000e+03 8.76785714e+02]\n", + " [ 2.13550000e+03 1.16921429e+03]\n", + " [ 2.13550000e+03 1.46164286e+03]\n", + " [ 2.13550000e+03 1.75407143e+03]\n", + " [ 2.13550000e+03 2.04650000e+03]\n", + " [ 2.13550000e+03 -4.99999973e-01]\n", + " [ 2.42792857e+03 -4.99999766e-01]\n", + " [ 2.72035714e+03 -5.00000023e-01]\n", + " [ 3.01278571e+03 -4.99999798e-01]\n", + " [ 3.30521429e+03 -5.00000229e-01]\n", + " [ 3.59764286e+03 -5.00000231e-01]\n", + " [ 3.89007143e+03 -4.99999870e-01]\n", + " [ 4.18250000e+03 -4.99999884e-01]\n", + " [ 2.13550000e+03 2.04650000e+03]\n", + " [ 2.42792857e+03 2.04650000e+03]\n", + " [ 2.72035714e+03 2.04650000e+03]\n", + " [ 3.01278571e+03 2.04650000e+03]\n", + " [ 3.30521429e+03 2.04650000e+03]\n", + " [ 3.59764286e+03 2.04650000e+03]\n", + " [ 3.89007143e+03 2.04650000e+03]\n", + " [ 4.18250000e+03 2.04650000e+03]\n", + " [ 4.18250000e+03 -4.99999884e-01]\n", + " [ 4.18250000e+03 2.91928572e+02]\n", + " [ 4.18250000e+03 5.84357143e+02]\n", + " [ 4.18250000e+03 8.76785714e+02]\n", + " [ 4.18250000e+03 1.16921429e+03]\n", + " [ 4.18250000e+03 1.46164286e+03]\n", + " [ 4.18250000e+03 1.75407143e+03]\n", + " [ 4.18250000e+03 2.04650000e+03]\n", + " [ 2.13650000e+03 1.27000000e+02]\n", + " [ 2.13650000e+03 4.85400000e+02]\n", + " [ 2.13650000e+03 8.43800000e+02]\n", + " [ 2.13650000e+03 1.20220000e+03]\n", + " [ 2.13650000e+03 1.56060000e+03]\n", + " [ 2.13650000e+03 1.91900000e+03]\n", + " [ 2.26300000e+03 4.99999770e-01]\n", + " [ 2.62140000e+03 5.00000267e-01]\n", + " [ 2.97980000e+03 4.99999825e-01]\n", + " [ 3.33820000e+03 5.00000071e-01]\n", + " [ 3.69660000e+03 5.00000113e-01]\n", + " [ 4.05500000e+03 5.00000214e-01]\n", + " [ 2.26300000e+03 2.04550000e+03]\n", + " [ 2.62140000e+03 2.04550000e+03]\n", + " [ 2.97980000e+03 2.04550000e+03]\n", + " [ 3.33820000e+03 2.04550000e+03]\n", + " [ 3.69660000e+03 2.04550000e+03]\n", + " [ 4.05500000e+03 2.04550000e+03]\n", + " [ 4.18150000e+03 1.27000000e+02]\n", + " [ 4.18150000e+03 4.85400000e+02]\n", + " [ 4.18150000e+03 8.43800000e+02]\n", + " [ 4.18150000e+03 1.20220000e+03]\n", + " [ 4.18150000e+03 1.56060000e+03]\n", + " [ 4.18150000e+03 1.91900000e+03]\n", + " [ 2.13650000e+03 5.00000284e-01]\n", + " [ 2.13650000e+03 5.00000284e-01]\n", + " [ 4.18150000e+03 2.04550000e+03]\n", + " [ 4.18150000e+03 2.04550000e+03]\n", + " [ 2.26300000e+03 1.27000000e+02]\n", + " [ 2.62140000e+03 1.27000000e+02]\n", + " [ 2.97980000e+03 1.27000000e+02]\n", + " [ 3.33820000e+03 1.27000000e+02]\n", + " [ 3.69660000e+03 1.27000000e+02]\n", + " [ 4.05500000e+03 1.27000000e+02]\n", + " [ 2.26300000e+03 4.85400000e+02]\n", + " [ 2.62140000e+03 4.85400000e+02]\n", + " [ 2.97980000e+03 4.85400000e+02]\n", + " [ 3.33820000e+03 4.85400000e+02]\n", + " [ 3.69660000e+03 4.85400000e+02]\n", + " [ 4.05500000e+03 4.85400000e+02]\n", + " [ 2.26300000e+03 8.43800000e+02]\n", + " [ 2.62140000e+03 8.43800000e+02]\n", + " [ 2.97980000e+03 8.43800000e+02]\n", + " [ 3.33820000e+03 8.43800000e+02]\n", + " [ 3.69660000e+03 8.43800000e+02]\n", + " [ 4.05500000e+03 8.43800000e+02]\n", + " [ 2.26300000e+03 1.20220000e+03]\n", + " [ 2.62140000e+03 1.20220000e+03]\n", + " [ 2.97980000e+03 1.20220000e+03]\n", + " [ 3.33820000e+03 1.20220000e+03]\n", + " [ 3.69660000e+03 1.20220000e+03]\n", + " [ 4.05500000e+03 1.20220000e+03]\n", + " [ 2.26300000e+03 1.56060000e+03]\n", + " [ 2.62140000e+03 1.56060000e+03]\n", + " [ 2.97980000e+03 1.56060000e+03]\n", + " [ 3.33820000e+03 1.56060000e+03]\n", + " [ 3.69660000e+03 1.56060000e+03]\n", + " [ 4.05500000e+03 1.56060000e+03]\n", + " [ 2.26300000e+03 1.91900000e+03]\n", + " [ 2.62140000e+03 1.91900000e+03]\n", + " [ 2.97980000e+03 1.91900000e+03]\n", + " [ 3.33820000e+03 1.91900000e+03]\n", + " [ 3.69660000e+03 1.91900000e+03]\n", + " [ 4.05500000e+03 1.91900000e+03]]\n", + "DEBUG:root:fitpix2pix: ccdpx: shape: (96, 2)\n", + "DEBUG:root:fitpix2pix: visCut: True\n", + "DEBUG:root:make_az_asym: xyp: [[-32.31281793 -31.43806373]\n", + " [-32.31091541 -27.05163558]\n", + " [-32.30901287 -22.66520742]\n", + " [-32.30711034 -18.27877926]\n", + " [-32.3052078 -13.8923511 ]\n", + " [-32.30330527 -9.50592294]\n", + " [-32.30140274 -5.11949478]\n", + " [-32.2995002 -0.73306663]\n", + " [-32.31281793 -31.43806373]\n", + " [-27.92638978 -31.43996627]\n", + " [-23.53996162 -31.4418688 ]\n", + " [-19.15353346 -31.44377134]\n", + " [-14.7671053 -31.44567387]\n", + " [-10.38067715 -31.44757641]\n", + " [ -5.99424899 -31.44947894]\n", + " [ -1.60782083 -31.45138147]\n", + " [-32.2995002 -0.73306663]\n", + " [-27.91307204 -0.73496916]\n", + " [-23.52664389 -0.73687169]\n", + " [-19.14021573 -0.73877423]\n", + " [-14.75378757 -0.74067676]\n", + " [-10.36735941 -0.74257929]\n", + " [ -5.98093125 -0.74448183]\n", + " [ -1.59450309 -0.74638436]\n", + " [ -1.60782083 -31.45138147]\n", + " [ -1.60591829 -27.06495331]\n", + " [ -1.60401576 -22.67852516]\n", + " [ -1.60211323 -18.292097 ]\n", + " [ -1.60021069 -13.90566884]\n", + " [ -1.59830816 -9.51924068]\n", + " [ -1.59640563 -5.13281252]\n", + " [ -1.59450309 -0.74638436]\n", + " [-32.29698843 -29.52557043]\n", + " [-32.29465669 -24.14957093]\n", + " [-32.29232495 -18.77357144]\n", + " [-32.2899932 -13.39757194]\n", + " [-32.28766146 -8.02157244]\n", + " [-32.28532972 -2.64557295]\n", + " [-30.40031161 -31.42389325]\n", + " [-25.02431212 -31.42622499]\n", + " [-19.64831262 -31.42855673]\n", + " [-14.27231313 -31.43088848]\n", + " [ -8.89631363 -31.43322022]\n", + " [ -3.52031414 -31.43555196]\n", + " [-30.38700689 -0.74889614]\n", + " [-25.01100739 -0.75122788]\n", + " [-19.6350079 -0.75355962]\n", + " [-14.25900841 -0.75589136]\n", + " [ -8.88300892 -0.7582231 ]\n", + " [ -3.50700942 -0.76055484]\n", + " [ -1.62199131 -29.53887515]\n", + " [ -1.61965957 -24.16287565]\n", + " [ -1.61732783 -18.78687616]\n", + " [ -1.61499609 -13.41087666]\n", + " [ -1.61266434 -8.03487716]\n", + " [ -1.6103326 -2.65887768]\n", + " [-32.29781143 -31.42307024]\n", + " [-32.29781143 -31.42307024]\n", + " [ -1.60950959 -0.76137785]\n", + " [ -1.60950959 -0.76137785]\n", + " [-30.3994886 -29.52639343]\n", + " [-25.02348911 -29.52872517]\n", + " [-19.64748962 -29.53105692]\n", + " [-14.27149012 -29.53338866]\n", + " [ -8.89549063 -29.5357204 ]\n", + " [ -3.51949113 -29.53805214]\n", + " [-30.39715686 -24.15039394]\n", + " [-25.02115737 -24.15272568]\n", + " [-19.64515788 -24.15505742]\n", + " [-14.26915838 -24.15738916]\n", + " [ -8.89315889 -24.1597209 ]\n", + " [ -3.51715939 -24.16205264]\n", + " [-30.39482512 -18.77439444]\n", + " [-25.01882563 -18.77672618]\n", + " [-19.64282613 -18.77905793]\n", + " [-14.26682664 -18.78138967]\n", + " [ -8.89082714 -18.78372141]\n", + " [ -3.51482765 -18.78605315]\n", + " [-30.39249338 -13.39839495]\n", + " [-25.01649389 -13.40072669]\n", + " [-19.64049439 -13.40305843]\n", + " [-14.2644949 -13.40539017]\n", + " [ -8.8884954 -13.40772191]\n", + " [ -3.51249591 -13.41005365]\n", + " [-30.39016163 -8.02239545]\n", + " [-25.01416214 -8.02472719]\n", + " [-19.63816265 -8.02705893]\n", + " [-14.26216315 -8.02939068]\n", + " [ -8.88616366 -8.03172242]\n", + " [ -3.51016417 -8.03405416]\n", + " [-30.3878299 -2.64639596]\n", + " [-25.01183041 -2.6487277 ]\n", + " [-19.63583091 -2.65105944]\n", + " [-14.25983141 -2.65339118]\n", + " [ -8.88383191 -2.65572292]\n", + " [ -3.50783243 -2.65805467]]\n", + "DEBUG:root:make_az_asym: xyp: shape: (96, 2)\n", + "DEBUG:root:radec2pix: curVec: [[ 0.21619042 0.56719553 -0.79470179]\n", + " [ 0.18981384 0.56963933 -0.79967602]\n", + " [ 0.16274546 0.57157927 -0.80424564]\n", + " [ 0.13509324 0.57299518 -0.80834791]\n", + " [ 0.10696562 0.57387072 -0.81193026]\n", + " [ 0.0784718 0.57419339 -0.81495039]\n", + " [ 0.04972211 0.57395479 -0.81737605]\n", + " [ 0.02082803 0.5731511 -0.81918497]\n", + " [ 0.21619042 0.56719553 -0.79470179]\n", + " [ 0.219658 0.54483336 -0.80926323]\n", + " [ 0.22288506 0.52158512 -0.82357223]\n", + " [ 0.22586305 0.49752728 -0.83752761]\n", + " [ 0.22858327 0.4727406 -0.8510382 ]\n", + " [ 0.23103678 0.44731045 -0.86402278]\n", + " [ 0.23321477 0.42132712 -0.87640991]\n", + " [ 0.23510891 0.39488603 -0.88813784]\n", + " [ 0.02082803 0.5731511 -0.81918497]\n", + " [ 0.022587 0.55009368 -0.83479744]\n", + " [ 0.02435984 0.52612197 -0.85006016]\n", + " [ 0.02613877 0.50130774 -0.86487416]\n", + " [ 0.0279162 0.47572767 -0.87914951]\n", + " [ 0.02968457 0.44946509 -0.89280455]\n", + " [ 0.03143641 0.42261105 -0.90576578]\n", + " [ 0.03316437 0.39526445 -0.91796848]\n", + " [ 0.23510891 0.39488603 -0.88813784]\n", + " [ 0.20787219 0.39593149 -0.89444251]\n", + " [ 0.17992268 0.39667298 -0.90015464]\n", + " [ 0.15136305 0.39709062 -0.90521172]\n", + " [ 0.1222976 0.39716841 -0.90956064]\n", + " [ 0.092834 0.39689436 -0.91315755]\n", + " [ 0.06308424 0.39626077 -0.91596822]\n", + " [ 0.03316437 0.39526445 -0.91796848]\n", + " [ 0.20479397 0.56824639 -0.79696642]\n", + " [ 0.17198692 0.57090474 -0.80280027]\n", + " [ 0.13824795 0.57278591 -0.80796275]\n", + " [ 0.10377648 0.57385825 -0.81235285]\n", + " [ 0.06877361 0.57409875 -0.81589265]\n", + " [ 0.03344292 0.57349386 -0.81852695]\n", + " [ 0.21764206 0.55756812 -0.80109283]\n", + " [ 0.22173035 0.52955492 -0.818784 ]\n", + " [ 0.22544904 0.50028626 -0.83599425]\n", + " [ 0.22878219 0.46990905 -0.85255158]\n", + " [ 0.23171342 0.43858045 -0.86830644]\n", + " [ 0.23422666 0.40646885 -0.88313133]\n", + " [ 0.02169206 0.56321858 -0.82602317]\n", + " [ 0.02385917 0.53433572 -0.84493554]\n", + " [ 0.02603919 0.50415042 -0.86322321]\n", + " [ 0.02821804 0.47280172 -0.88071691]\n", + " [ 0.03038182 0.44044314 -0.89726628]\n", + " [ 0.03251681 0.4072456 -0.91273965]\n", + " [ 0.22332183 0.39546924 -0.89091607]\n", + " [ 0.18944817 0.39654974 -0.89825258]\n", + " [ 0.15460584 0.39715333 -0.90463599]\n", + " [ 0.11898605 0.39724892 -0.90996462]\n", + " [ 0.08278714 0.39681447 -0.91415784]\n", + " [ 0.04621701 0.39583767 -0.91715676]\n", + " [ 0.21611378 0.56712984 -0.79476951]\n", + " [ 0.21611378 0.56712984 -0.79476951]\n", + " [ 0.03326098 0.39536271 -0.91792267]\n", + " [ 0.03326098 0.39536271 -0.91792267]\n", + " [ 0.20627703 0.55865145 -0.80334198]\n", + " [ 0.2102533 0.53054035 -0.82117019]\n", + " [ 0.21388394 0.50116802 -0.83850121]\n", + " [ 0.2171528 0.47068095 -0.8551632 ]\n", + " [ 0.22004309 0.43923601 -0.87100675]\n", + " [ 0.22253832 0.40700167 -0.88590425]\n", + " [ 0.17334039 0.56122645 -0.8093071 ]\n", + " [ 0.17699559 0.5328702 -0.82747925]\n", + " [ 0.1803732 0.50323835 -0.84511341]\n", + " [ 0.18345636 0.47247575 -0.86203853]\n", + " [ 0.18622722 0.44073834 -0.87810543]\n", + " [ 0.18866831 0.40819494 -0.89318596]\n", + " [ 0.13946953 0.56304026 -0.81457591]\n", + " [ 0.14279701 0.53448631 -0.83302665]\n", + " [ 0.14591459 0.50464513 -0.85090671]\n", + " [ 0.14880493 0.47365966 -0.86804586]\n", + " [ 0.15144976 0.44168491 -0.88429487]\n", + " [ 0.15383123 0.40889023 -0.89952473]\n", + " [ 0.10486346 0.56406096 -0.81904755]\n", + " [ 0.10785496 0.53535594 -0.83771196]\n", + " [ 0.11070358 0.50535495 -0.85578098]\n", + " [ 0.1133922 0.47419916 -0.87308497]\n", + " [ 0.11590295 0.44204283 -0.88947436]\n", + " [ 0.11821842 0.4090559 -0.90481914]\n", + " [ 0.06972307 0.56426515 -0.82264423]\n", + " [ 0.07236961 0.53545451 -0.84145773]\n", + " [ 0.07493971 0.50534253 -0.85965863]\n", + " [ 0.07741718 0.47406904 -0.8770776 ]\n", + " [ 0.07978545 0.44178778 -0.89356468]\n", + " [ 0.0820283 0.40866925 -0.90898889]\n", + " [ 0.03425211 0.56363888 -0.82531086]\n", + " [ 0.03654548 0.53476709 -0.84420885]\n", + " [ 0.03882848 0.50459243 -0.8624841 ]\n", + " [ 0.04108642 0.47325401 -0.87996735]\n", + " [ 0.04330464 0.44090536 -0.89650832]\n", + " [ 0.04546872 0.40771733 -0.91197542]]\n", + "DEBUG:root:radec2pix: xyfp: [[-32.31281793 -31.43806373]\n", + " [-32.31091541 -27.05163558]\n", + " [-32.30901287 -22.66520742]\n", + " [-32.30711034 -18.27877926]\n", + " [-32.3052078 -13.8923511 ]\n", + " [-32.30330527 -9.50592294]\n", + " [-32.30140274 -5.11949478]\n", + " [-32.2995002 -0.73306663]\n", + " [-32.31281793 -31.43806373]\n", + " [-27.92638978 -31.43996627]\n", + " [-23.53996162 -31.4418688 ]\n", + " [-19.15353346 -31.44377134]\n", + " [-14.7671053 -31.44567387]\n", + " [-10.38067715 -31.44757641]\n", + " [ -5.99424899 -31.44947894]\n", + " [ -1.60782083 -31.45138147]\n", + " [-32.2995002 -0.73306663]\n", + " [-27.91307204 -0.73496916]\n", + " [-23.52664389 -0.73687169]\n", + " [-19.14021573 -0.73877423]\n", + " [-14.75378757 -0.74067676]\n", + " [-10.36735941 -0.74257929]\n", + " [ -5.98093125 -0.74448183]\n", + " [ -1.59450309 -0.74638436]\n", + " [ -1.60782083 -31.45138147]\n", + " [ -1.60591829 -27.06495331]\n", + " [ -1.60401576 -22.67852516]\n", + " [ -1.60211323 -18.292097 ]\n", + " [ -1.60021069 -13.90566884]\n", + " [ -1.59830816 -9.51924068]\n", + " [ -1.59640563 -5.13281252]\n", + " [ -1.59450309 -0.74638436]\n", + " [-32.29698843 -29.52557043]\n", + " [-32.29465669 -24.14957093]\n", + " [-32.29232495 -18.77357144]\n", + " [-32.2899932 -13.39757194]\n", + " [-32.28766146 -8.02157244]\n", + " [-32.28532972 -2.64557295]\n", + " [-30.40031161 -31.42389325]\n", + " [-25.02431212 -31.42622499]\n", + " [-19.64831262 -31.42855673]\n", + " [-14.27231313 -31.43088848]\n", + " [ -8.89631363 -31.43322022]\n", + " [ -3.52031414 -31.43555196]\n", + " [-30.38700689 -0.74889614]\n", + " [-25.01100739 -0.75122788]\n", + " [-19.6350079 -0.75355962]\n", + " [-14.25900841 -0.75589136]\n", + " [ -8.88300892 -0.7582231 ]\n", + " [ -3.50700942 -0.76055484]\n", + " [ -1.62199131 -29.53887515]\n", + " [ -1.61965957 -24.16287565]\n", + " [ -1.61732783 -18.78687616]\n", + " [ -1.61499609 -13.41087666]\n", + " [ -1.61266434 -8.03487716]\n", + " [ -1.6103326 -2.65887768]\n", + " [-32.29781143 -31.42307024]\n", + " [-32.29781143 -31.42307024]\n", + " [ -1.60950959 -0.76137785]\n", + " [ -1.60950959 -0.76137785]\n", + " [-30.3994886 -29.52639343]\n", + " [-25.02348911 -29.52872517]\n", + " [-19.64748962 -29.53105692]\n", + " [-14.27149012 -29.53338866]\n", + " [ -8.89549063 -29.5357204 ]\n", + " [ -3.51949113 -29.53805214]\n", + " [-30.39715686 -24.15039394]\n", + " [-25.02115737 -24.15272568]\n", + " [-19.64515788 -24.15505742]\n", + " [-14.26915838 -24.15738916]\n", + " [ -8.89315889 -24.1597209 ]\n", + " [ -3.51715939 -24.16205264]\n", + " [-30.39482512 -18.77439444]\n", + " [-25.01882563 -18.77672618]\n", + " [-19.64282613 -18.77905793]\n", + " [-14.26682664 -18.78138967]\n", + " [ -8.89082714 -18.78372141]\n", + " [ -3.51482765 -18.78605315]\n", + " [-30.39249338 -13.39839495]\n", + " [-25.01649389 -13.40072669]\n", + " [-19.64049439 -13.40305843]\n", + " [-14.2644949 -13.40539017]\n", + " [ -8.8884954 -13.40772191]\n", + " [ -3.51249591 -13.41005365]\n", + " [-30.39016163 -8.02239545]\n", + " [-25.01416214 -8.02472719]\n", + " [-19.63816265 -8.02705893]\n", + " [-14.26216315 -8.02939068]\n", + " [ -8.88616366 -8.03172242]\n", + " [ -3.51016417 -8.03405416]\n", + " [-30.3878299 -2.64639596]\n", + " [-25.01183041 -2.6487277 ]\n", + " [-19.63583091 -2.65105944]\n", + " [-14.25983141 -2.65339118]\n", + " [ -8.88383191 -2.65572292]\n", + " [ -3.50783243 -2.65805467]]\n", + "DEBUG:root:radec2pix: curVec Shape: (96, 3)\n", + "DEBUG:root:radec2pix: xyfp Shape: (96, 2)\n", + "DEBUG:root:mm_to_pix: fitpx: [[0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]]\n", + "DEBUG:root:mm_to_pix: fitpx.shape: (96, 2)\n", + "DEBUG:root:radec2pix: camVec: [[0.20622014 0.20805053 0.20961035 0.210899 0.21191543 0.21265818\n", + " 0.21312568 0.21331667 0.20622014 0.17982824 0.1527297 0.12503427\n", + " 0.09685185 0.06829276 0.03946812 0.01049004 0.21331667 0.18597713\n", + " 0.1579279 0.12927353 0.10011961 0.07057467 0.04075124 0.01076573\n", + " 0.01049004 0.01056977 0.01063642 0.01068985 0.01072978 0.01075592\n", + " 0.01076796 0.01076573 0.20696213 0.20902258 0.21067623 0.21192136\n", + " 0.21275532 0.21317532 0.1948134 0.16197729 0.1281888 0.09365018\n", + " 0.05856456 0.02313694 0.20149034 0.16749252 0.1325326 0.09680441\n", + " 0.0605079 0.02385188 0.01062602 0.01071595 0.0107859 0.01083545\n", + " 0.01086402 0.01087112 0.20613793 0.20613793 0.01086844 0.01086844\n", + " 0.19558949 0.1626169 0.12869151 0.09401511 0.05879055 0.02322296\n", + " 0.19753009 0.16421774 0.12995114 0.09493033 0.05935726 0.02343764\n", + " 0.19908829 0.16550536 0.13096617 0.09566871 0.05981412 0.02360896\n", + " 0.20026215 0.16647694 0.13173312 0.09622682 0.06015857 0.02373584\n", + " 0.20104857 0.16712825 0.13224724 0.09660024 0.06038739 0.02381698\n", + " 0.20144435 0.16745515 0.13250401 0.09678486 0.06049766 0.02385117]\n", + " [0.20255556 0.17610143 0.14895462 0.12122494 0.09302239 0.06445739\n", + " 0.03564119 0.00668594 0.20255556 0.20441077 0.20600074 0.2073248\n", + " 0.20838186 0.20917033 0.20968847 0.20993479 0.00668594 0.00675821\n", + " 0.00682246 0.00687853 0.00692617 0.0069651 0.00699507 0.00701584\n", + " 0.20993479 0.18250233 0.15437326 0.12565215 0.09644485 0.06686038\n", + " 0.03701177 0.00701584 0.19112005 0.15821703 0.12438266 0.08981934\n", + " 0.05473042 0.0193211 0.20330747 0.20540191 0.20709749 0.2083924\n", + " 0.20928375 0.20976841 0.00681796 0.00690216 0.00697398 0.00703299\n", + " 0.00707868 0.00711058 0.19806614 0.16396327 0.12891793 0.09312436\n", + " 0.05678335 0.02010461 0.2024732 0.2024732 0.00711848 0.00711848\n", + " 0.19190537 0.19387759 0.19547539 0.1966967 0.19753824 0.19799645\n", + " 0.15886347 0.1604891 0.1618095 0.16282181 0.16352163 0.16390447\n", + " 0.12488974 0.12616714 0.12720791 0.12800859 0.1285643 0.12887024\n", + " 0.09018615 0.09111203 0.09186896 0.09245358 0.0928614 0.09308815\n", + " 0.05495583 0.05552612 0.05599434 0.05635799 0.05661388 0.05675899\n", + " 0.01940412 0.01961547 0.01979108 0.01992994 0.02003078 0.02009239]\n", + " [0.95731108 0.96213474 0.96637261 0.96996192 0.9728508 0.97499833\n", + " 0.97637449 0.97696023 0.95731108 0.96222557 0.96655954 0.97024886\n", + " 0.97324032 0.97549161 0.97697135 0.97765911 0.97696023 0.98253083\n", + " 0.98742708 0.99158512 0.9949513 0.99748218 0.99914484 0.99991744\n", + " 0.97765911 0.9831486 0.98795534 0.99201677 0.99528049 0.99770436\n", + " 0.99925681 0.99991744 0.95949977 0.96502691 0.96961048 0.97315046\n", + " 0.9755715 0.9768229 0.95953833 0.96518051 0.96988569 0.97355136\n", + " 0.97609964 0.97747731 0.97946677 0.98584919 0.99115411 0.99527858\n", + " 0.99814262 0.99969022 0.98013106 0.98640824 0.99159661 0.99559552\n", + " 0.99832741 0.99973878 0.95734621 0.95734621 0.9999156 0.9999156\n", + " 0.96172609 0.96745399 0.9722283 0.9759465 0.97853069 0.9799276\n", + " 0.96733875 0.97328094 0.97822819 0.98207805 0.98475245 0.98619775\n", + " 0.97199095 0.97810522 0.98319175 0.98714806 0.9898957 0.99138039\n", + " 0.97558266 0.98182688 0.98701899 0.99105637 0.99386 0.99537491\n", + " 0.97803851 0.98437036 0.98963392 0.99372641 0.99656823 0.99810379\n", + " 0.97930774 0.98568454 0.99098486 0.99510577 0.99796733 0.99951359]]\n", + "DEBUG:root:radec2pix: camVec Shape: (3, 96)\n", + "DEBUG:root:radec2pix: xyfp: [[-32.31281793 -31.43806373]\n", + " [-32.31091541 -27.05163558]\n", + " [-32.30901287 -22.66520742]\n", + " [-32.30711034 -18.27877926]\n", + " [-32.3052078 -13.8923511 ]\n", + " [-32.30330527 -9.50592294]\n", + " [-32.30140274 -5.11949478]\n", + " [-32.2995002 -0.73306663]\n", + " [-32.31281793 -31.43806373]\n", + " [-27.92638978 -31.43996627]\n", + " [-23.53996162 -31.4418688 ]\n", + " [-19.15353346 -31.44377134]\n", + " [-14.7671053 -31.44567387]\n", + " [-10.38067715 -31.44757641]\n", + " [ -5.99424899 -31.44947894]\n", + " [ -1.60782083 -31.45138147]\n", + " [-32.2995002 -0.73306663]\n", + " [-27.91307204 -0.73496916]\n", + " [-23.52664389 -0.73687169]\n", + " [-19.14021573 -0.73877423]\n", + " [-14.75378757 -0.74067676]\n", + " [-10.36735941 -0.74257929]\n", + " [ -5.98093125 -0.74448183]\n", + " [ -1.59450309 -0.74638436]\n", + " [ -1.60782083 -31.45138147]\n", + " [ -1.60591829 -27.06495331]\n", + " [ -1.60401576 -22.67852516]\n", + " [ -1.60211323 -18.292097 ]\n", + " [ -1.60021069 -13.90566884]\n", + " [ -1.59830816 -9.51924068]\n", + " [ -1.59640563 -5.13281252]\n", + " [ -1.59450309 -0.74638436]\n", + " [-32.29698843 -29.52557043]\n", + " [-32.29465669 -24.14957093]\n", + " [-32.29232495 -18.77357144]\n", + " [-32.2899932 -13.39757194]\n", + " [-32.28766146 -8.02157244]\n", + " [-32.28532972 -2.64557295]\n", + " [-30.40031161 -31.42389325]\n", + " [-25.02431212 -31.42622499]\n", + " [-19.64831262 -31.42855673]\n", + " [-14.27231313 -31.43088848]\n", + " [ -8.89631363 -31.43322022]\n", + " [ -3.52031414 -31.43555196]\n", + " [-30.38700689 -0.74889614]\n", + " [-25.01100739 -0.75122788]\n", + " [-19.6350079 -0.75355962]\n", + " [-14.25900841 -0.75589136]\n", + " [ -8.88300892 -0.7582231 ]\n", + " [ -3.50700942 -0.76055484]\n", + " [ -1.62199131 -29.53887515]\n", + " [ -1.61965957 -24.16287565]\n", + " [ -1.61732783 -18.78687616]\n", + " [ -1.61499609 -13.41087666]\n", + " [ -1.61266434 -8.03487716]\n", + " [ -1.6103326 -2.65887768]\n", + " [-32.29781143 -31.42307024]\n", + " [-32.29781143 -31.42307024]\n", + " [ -1.60950959 -0.76137785]\n", + " [ -1.60950959 -0.76137785]\n", + " [-30.3994886 -29.52639343]\n", + " [-25.02348911 -29.52872517]\n", + " [-19.64748962 -29.53105692]\n", + " [-14.27149012 -29.53338866]\n", + " [ -8.89549063 -29.5357204 ]\n", + " [ -3.51949113 -29.53805214]\n", + " [-30.39715686 -24.15039394]\n", + " [-25.02115737 -24.15272568]\n", + " [-19.64515788 -24.15505742]\n", + " [-14.26915838 -24.15738916]\n", + " [ -8.89315889 -24.1597209 ]\n", + " [ -3.51715939 -24.16205264]\n", + " [-30.39482512 -18.77439444]\n", + " [-25.01882563 -18.77672618]\n", + " [-19.64282613 -18.77905793]\n", + " [-14.26682664 -18.78138967]\n", + " [ -8.89082714 -18.78372141]\n", + " [ -3.51482765 -18.78605315]\n", + " [-30.39249338 -13.39839495]\n", + " [-25.01649389 -13.40072669]\n", + " [-19.64049439 -13.40305843]\n", + " [-14.2644949 -13.40539017]\n", + " [ -8.8884954 -13.40772191]\n", + " [ -3.51249591 -13.41005365]\n", + " [-30.39016163 -8.02239545]\n", + " [-25.01416214 -8.02472719]\n", + " [-19.63816265 -8.02705893]\n", + " [-14.26216315 -8.02939068]\n", + " [ -8.88616366 -8.03172242]\n", + " [ -3.51016417 -8.03405416]\n", + " [-30.3878299 -2.64639596]\n", + " [-25.01183041 -2.6487277 ]\n", + " [-19.63583091 -2.65105944]\n", + " [-14.25983141 -2.65339118]\n", + " [ -8.88383191 -2.65572292]\n", + " [ -3.50783243 -2.65805467]]\n", + "DEBUG:root:radec2pix: curVec: [[-0.45230603 -0.45647571 -0.76619135]\n", + " [-0.44405605 -0.43562482 -0.78297206]\n", + " [-0.43528219 -0.41400751 -0.79945431]\n", + " [-0.42599999 -0.39169065 -0.81553813]\n", + " [-0.41622941 -0.36874549 -0.83113166]\n", + " [-0.40599563 -0.34524908 -0.84615047]\n", + " [-0.39532946 -0.32128509 -0.86051758]\n", + " [-0.38426744 -0.29694356 -0.87416421]\n", + " [-0.45230603 -0.45647571 -0.76619135]\n", + " [-0.47658831 -0.44181433 -0.7600419 ]\n", + " [-0.50036356 -0.42675728 -0.75333561]\n", + " [-0.52354379 -0.41136655 -0.74610955]\n", + " [-0.54604616 -0.39570721 -0.73841005]\n", + " [-0.56779263 -0.37984695 -0.73029297]\n", + " [-0.58870935 -0.36385601 -0.72182415]\n", + " [-0.60872585 -0.34780733 -0.71307987]\n", + " [-0.38426744 -0.29694356 -0.87416421]\n", + " [-0.4094301 -0.28189033 -0.86770089]\n", + " [-0.43414173 -0.26663168 -0.86048156]\n", + " [-0.45830995 -0.25123158 -0.852546 ]\n", + " [-0.4818498 -0.23575556 -0.84394317]\n", + " [-0.50468399 -0.22027019 -0.83473057]\n", + " [-0.52674219 -0.20484319 -0.8249739 ]\n", + " [-0.54795957 -0.18954424 -0.81474738]\n", + " [-0.60872585 -0.34780733 -0.71307987]\n", + " [-0.60205905 -0.32664939 -0.72857743]\n", + " [-0.59468499 -0.30488163 -0.74390655]\n", + " [-0.58662176 -0.28257617 -0.75896352]\n", + " [-0.57789057 -0.25980845 -0.773655 ]\n", + " [-0.56851624 -0.23665772 -0.78789746]\n", + " [-0.55852791 -0.21320725 -0.80161665]\n", + " [-0.54795957 -0.18954424 -0.81474738]\n", + " [-0.44885838 -0.44743345 -0.77351758]\n", + " [-0.43839397 -0.42135441 -0.79389621]\n", + " [-0.4271575 -0.39419033 -0.81372628]\n", + " [-0.41518386 -0.36607044 -0.83283539]\n", + " [-0.40251942 -0.33713675 -0.85106811]\n", + " [-0.38922331 -0.30754593 -0.86828608]\n", + " [-0.46292273 -0.45006566 -0.7636383 ]\n", + " [-0.4923544 -0.43182249 -0.75572249]\n", + " [-0.52093651 -0.41304636 -0.74700593]\n", + " [-0.54851437 -0.39385579 -0.73757007]\n", + " [-0.57494428 -0.37437542 -0.72751778]\n", + " [-0.60009171 -0.35473565 -0.71697459]\n", + " [-0.39532615 -0.29049333 -0.87139593]\n", + " [-0.42587408 -0.27189787 -0.86296165]\n", + " [-0.4556519 -0.25305706 -0.85343041]\n", + " [-0.48450008 -0.23409092 -0.84288855]\n", + " [-0.51227625 -0.21512202 -0.83144186]\n", + " [-0.53885332 -0.1962758 -0.81921482]\n", + " [-0.60583989 -0.33871671 -0.71988125]\n", + " [-0.5971903 -0.31236626 -0.73877674]\n", + " [-0.58749612 -0.28517103 -0.75731485]\n", + " [-0.57679509 -0.25726848 -0.77531952]\n", + " [-0.56513298 -0.22880452 -0.79263687]\n", + " [-0.55256544 -0.19993413 -0.80913397]\n", + " [-0.45236253 -0.45635639 -0.76622907]\n", + " [-0.45236253 -0.45635639 -0.76622907]\n", + " [-0.5479256 -0.18967744 -0.81473922]\n", + " [-0.5479256 -0.18967744 -0.81473922]\n", + " [-0.4594605 -0.44111932 -0.7709149 ]\n", + " [-0.48901223 -0.42281946 -0.76294872]\n", + " [-0.51771596 -0.40400128 -0.75415725]\n", + " [-0.54541705 -0.38478379 -0.74462184]\n", + " [-0.57197229 -0.36529197 -0.73444501]\n", + " [-0.59724801 -0.34565626 -0.72375172]\n", + " [-0.44910185 -0.41498189 -0.79126327]\n", + " [-0.47895817 -0.39654517 -0.78316729]\n", + " [-0.50797267 -0.37763361 -0.77418126]\n", + " [-0.53599032 -0.35836761 -0.7643867 ]\n", + " [-0.56286917 -0.3388729 -0.75388557]\n", + " [-0.58847803 -0.31927994 -0.74280141]\n", + " [-0.43795165 -0.38777133 -0.81106828]\n", + " [-0.46805968 -0.36923391 -0.80286142]\n", + " [-0.49733513 -0.35026856 -0.79370631]\n", + " [-0.52562218 -0.33099669 -0.78368521]\n", + " [-0.55277957 -0.31154436 -0.77290029]\n", + " [-0.57867829 -0.2920416 -0.76147432]\n", + " [-0.42604425 -0.35961726 -0.83015765]\n", + " [-0.45634989 -0.34101671 -0.8218591 ]\n", + " [-0.48583611 -0.32203881 -0.81256032]\n", + " [-0.51434596 -0.3028054 -0.80234476]\n", + " [-0.54173835 -0.28344221 -0.79131541]\n", + " [-0.56788577 -0.26407837 -0.779595 ]\n", + " [-0.41342535 -0.33066209 -0.84837613]\n", + " [-0.44387287 -0.31203712 -0.84000578]\n", + " [-0.47351865 -0.29308892 -0.83058953]\n", + " [-0.50220454 -0.27393903 -0.82021217]\n", + " [-0.52978911 -0.25471218 -0.80897787]\n", + " [-0.55614557 -0.23553612 -0.79700994]\n", + " [-0.40015347 -0.30106282 -0.86558557]\n", + " [-0.4306855 -0.28245273 -0.85716419]\n", + " [-0.46043833 -0.26357654 -0.84765792]\n", + " [-0.48925271 -0.24455479 -0.83715276]\n", + " [-0.51698655 -0.22551066 -0.82575411]\n", + " [-0.54351299 -0.20657021 -0.81358612]]\n", + "DEBUG:root:cartToSphere: vec: [[0.20622014 0.20255556 0.95731108]\n", + " [0.20805053 0.17610143 0.96213474]\n", + " [0.20961035 0.14895462 0.96637261]\n", + " [0.210899 0.12122494 0.96996192]\n", + " [0.21191543 0.09302239 0.9728508 ]\n", + " [0.21265818 0.06445739 0.97499833]\n", + " [0.21312568 0.03564119 0.97637449]\n", + " [0.21331667 0.00668594 0.97696023]\n", + " [0.20622014 0.20255556 0.95731108]\n", + " [0.17982824 0.20441077 0.96222557]\n", + " [0.1527297 0.20600074 0.96655954]\n", + " [0.12503427 0.2073248 0.97024886]\n", + " [0.09685185 0.20838186 0.97324032]\n", + " [0.06829276 0.20917033 0.97549161]\n", + " [0.03946812 0.20968847 0.97697135]\n", + " [0.01049004 0.20993479 0.97765911]\n", + " [0.21331667 0.00668594 0.97696023]\n", + " [0.18597713 0.00675821 0.98253083]\n", + " [0.1579279 0.00682246 0.98742708]\n", + " [0.12927353 0.00687853 0.99158512]\n", + " [0.10011961 0.00692617 0.9949513 ]\n", + " [0.07057467 0.0069651 0.99748218]\n", + " [0.04075124 0.00699507 0.99914484]\n", + " [0.01076573 0.00701584 0.99991744]\n", + " [0.01049004 0.20993479 0.97765911]\n", + " [0.01056977 0.18250233 0.9831486 ]\n", + " [0.01063642 0.15437326 0.98795534]\n", + " [0.01068985 0.12565215 0.99201677]\n", + " [0.01072978 0.09644485 0.99528049]\n", + " [0.01075592 0.06686038 0.99770436]\n", + " [0.01076796 0.03701177 0.99925681]\n", + " [0.01076573 0.00701584 0.99991744]\n", + " [0.20696213 0.19112005 0.95949977]\n", + " [0.20902258 0.15821703 0.96502691]\n", + " [0.21067623 0.12438266 0.96961048]\n", + " [0.21192136 0.08981934 0.97315046]\n", + " [0.21275532 0.05473042 0.9755715 ]\n", + " [0.21317532 0.0193211 0.9768229 ]\n", + " [0.1948134 0.20330747 0.95953833]\n", + " [0.16197729 0.20540191 0.96518051]\n", + " [0.1281888 0.20709749 0.96988569]\n", + " [0.09365018 0.2083924 0.97355136]\n", + " [0.05856456 0.20928375 0.97609964]\n", + " [0.02313694 0.20976841 0.97747731]\n", + " [0.20149034 0.00681796 0.97946677]\n", + " [0.16749252 0.00690216 0.98584919]\n", + " [0.1325326 0.00697398 0.99115411]\n", + " [0.09680441 0.00703299 0.99527858]\n", + " [0.0605079 0.00707868 0.99814262]\n", + " [0.02385188 0.00711058 0.99969022]\n", + " [0.01062602 0.19806614 0.98013106]\n", + " [0.01071595 0.16396327 0.98640824]\n", + " [0.0107859 0.12891793 0.99159661]\n", + " [0.01083545 0.09312436 0.99559552]\n", + " [0.01086402 0.05678335 0.99832741]\n", + " [0.01087112 0.02010461 0.99973878]\n", + " [0.20613793 0.2024732 0.95734621]\n", + " [0.20613793 0.2024732 0.95734621]\n", + " [0.01086844 0.00711848 0.9999156 ]\n", + " [0.01086844 0.00711848 0.9999156 ]\n", + " [0.19558949 0.19190537 0.96172609]\n", + " [0.1626169 0.19387759 0.96745399]\n", + " [0.12869151 0.19547539 0.9722283 ]\n", + " [0.09401511 0.1966967 0.9759465 ]\n", + " [0.05879055 0.19753824 0.97853069]\n", + " [0.02322296 0.19799645 0.9799276 ]\n", + " [0.19753009 0.15886347 0.96733875]\n", + " [0.16421774 0.1604891 0.97328094]\n", + " [0.12995114 0.1618095 0.97822819]\n", + " [0.09493033 0.16282181 0.98207805]\n", + " [0.05935726 0.16352163 0.98475245]\n", + " [0.02343764 0.16390447 0.98619775]\n", + " [0.19908829 0.12488974 0.97199095]\n", + " [0.16550536 0.12616714 0.97810522]\n", + " [0.13096617 0.12720791 0.98319175]\n", + " [0.09566871 0.12800859 0.98714806]\n", + " [0.05981412 0.1285643 0.9898957 ]\n", + " [0.02360896 0.12887024 0.99138039]\n", + " [0.20026215 0.09018615 0.97558266]\n", + " [0.16647694 0.09111203 0.98182688]\n", + " [0.13173312 0.09186896 0.98701899]\n", + " [0.09622682 0.09245358 0.99105637]\n", + " [0.06015857 0.0928614 0.99386 ]\n", + " [0.02373584 0.09308815 0.99537491]\n", + " [0.20104857 0.05495583 0.97803851]\n", + " [0.16712825 0.05552612 0.98437036]\n", + " [0.13224724 0.05599434 0.98963392]\n", + " [0.09660024 0.05635799 0.99372641]\n", + " [0.06038739 0.05661388 0.99656823]\n", + " [0.02381698 0.05675899 0.99810379]\n", + " [0.20144435 0.01940412 0.97930774]\n", + " [0.16745515 0.01961547 0.98568454]\n", + " [0.13250401 0.01979108 0.99098486]\n", + " [0.09678486 0.01992994 0.99510577]\n", + " [0.06049766 0.02003078 0.99796733]\n", + " [0.02385117 0.02009239 0.99951359]]\n", + "DEBUG:root:radec2pix: curVec Shape: (96, 3)\n", + "DEBUG:root:radec2pix: ccdpx: [[-4.44999997e+01 -4.99999751e-01]\n", + " [-4.45000003e+01 2.91928571e+02]\n", + " [-4.45000000e+01 5.84357143e+02]\n", + " [-4.44999999e+01 8.76785714e+02]\n", + " [-4.44999999e+01 1.16921429e+03]\n", + " [-4.44999999e+01 1.46164286e+03]\n", + " [-4.45000001e+01 1.75407143e+03]\n", + " [-4.45000000e+01 2.04650000e+03]\n", + " [-4.44999997e+01 -4.99999751e-01]\n", + " [ 2.47928571e+02 -5.00000271e-01]\n", + " [ 5.40357143e+02 -4.99999959e-01]\n", + " [ 8.32785714e+02 -5.00000035e-01]\n", + " [ 1.12521429e+03 -5.00000130e-01]\n", + " [ 1.41764286e+03 -5.00000295e-01]\n", + " [ 1.71007143e+03 -5.00000131e-01]\n", + " [ 2.00250000e+03 -5.00000000e-01]\n", + " [-4.45000000e+01 2.04650000e+03]\n", + " [ 2.47928571e+02 2.04650000e+03]\n", + " [ 5.40357143e+02 2.04650000e+03]\n", + " [ 8.32785714e+02 2.04650000e+03]\n", + " [ 1.12521429e+03 2.04650000e+03]\n", + " [ 1.41764286e+03 2.04650000e+03]\n", + " [ 1.71007143e+03 2.04650000e+03]\n", + " [ 2.00250000e+03 2.04650000e+03]\n", + " [ 2.00250000e+03 -5.00000000e-01]\n", + " [ 2.00250000e+03 2.91928571e+02]\n", + " [ 2.00250000e+03 5.84357143e+02]\n", + " [ 2.00250000e+03 8.76785714e+02]\n", + " [ 2.00250000e+03 1.16921429e+03]\n", + " [ 2.00250000e+03 1.46164286e+03]\n", + " [ 2.00250000e+03 1.75407143e+03]\n", + " [ 2.00250000e+03 2.04650000e+03]\n", + " [-4.35000003e+01 1.27000000e+02]\n", + " [-4.35000001e+01 4.85400000e+02]\n", + " [-4.35000003e+01 8.43800000e+02]\n", + " [-4.34999997e+01 1.20220000e+03]\n", + " [-4.34999997e+01 1.56060000e+03]\n", + " [-4.35000002e+01 1.91900000e+03]\n", + " [ 8.29999999e+01 4.99999945e-01]\n", + " [ 4.41400000e+02 4.99999942e-01]\n", + " [ 7.99800000e+02 5.00000147e-01]\n", + " [ 1.15820000e+03 4.99999799e-01]\n", + " [ 1.51660000e+03 5.00000078e-01]\n", + " [ 1.87500000e+03 4.99999710e-01]\n", + " [ 8.30000000e+01 2.04550000e+03]\n", + " [ 4.41400000e+02 2.04550000e+03]\n", + " [ 7.99800000e+02 2.04550000e+03]\n", + " [ 1.15820000e+03 2.04550000e+03]\n", + " [ 1.51660000e+03 2.04550000e+03]\n", + " [ 1.87500000e+03 2.04550000e+03]\n", + " [ 2.00150000e+03 1.27000000e+02]\n", + " [ 2.00150000e+03 4.85400000e+02]\n", + " [ 2.00150000e+03 8.43800000e+02]\n", + " [ 2.00150000e+03 1.20220000e+03]\n", + " [ 2.00150000e+03 1.56060000e+03]\n", + " [ 2.00150000e+03 1.91900000e+03]\n", + " [-4.34999998e+01 5.00000241e-01]\n", + " [-4.34999998e+01 5.00000241e-01]\n", + " [ 2.00150000e+03 2.04550000e+03]\n", + " [ 2.00150000e+03 2.04550000e+03]\n", + " [ 8.30000001e+01 1.27000000e+02]\n", + " [ 4.41400000e+02 1.27000000e+02]\n", + " [ 7.99800000e+02 1.27000000e+02]\n", + " [ 1.15820000e+03 1.27000000e+02]\n", + " [ 1.51660000e+03 1.27000000e+02]\n", + " [ 1.87500000e+03 1.27000000e+02]\n", + " [ 8.30000000e+01 4.85400000e+02]\n", + " [ 4.41400000e+02 4.85400000e+02]\n", + " [ 7.99800000e+02 4.85400000e+02]\n", + " [ 1.15820000e+03 4.85400000e+02]\n", + " [ 1.51660000e+03 4.85400000e+02]\n", + " [ 1.87500000e+03 4.85400000e+02]\n", + " [ 8.30000001e+01 8.43800000e+02]\n", + " [ 4.41400000e+02 8.43800000e+02]\n", + " [ 7.99800000e+02 8.43800000e+02]\n", + " [ 1.15820000e+03 8.43800000e+02]\n", + " [ 1.51660000e+03 8.43800000e+02]\n", + " [ 1.87500000e+03 8.43800000e+02]\n", + " [ 8.30000001e+01 1.20220000e+03]\n", + " [ 4.41400000e+02 1.20220000e+03]\n", + " [ 7.99800000e+02 1.20220000e+03]\n", + " [ 1.15820000e+03 1.20220000e+03]\n", + " [ 1.51660000e+03 1.20220000e+03]\n", + " [ 1.87500000e+03 1.20220000e+03]\n", + " [ 8.30000002e+01 1.56060000e+03]\n", + " [ 4.41400000e+02 1.56060000e+03]\n", + " [ 7.99800000e+02 1.56060000e+03]\n", + " [ 1.15820000e+03 1.56060000e+03]\n", + " [ 1.51660000e+03 1.56060000e+03]\n", + " [ 1.87500000e+03 1.56060000e+03]\n", + " [ 8.29999999e+01 1.91900000e+03]\n", + " [ 4.41400000e+02 1.91900000e+03]\n", + " [ 7.99800000e+02 1.91900000e+03]\n", + " [ 1.15820000e+03 1.91900000e+03]\n", + " [ 1.51660000e+03 1.91900000e+03]\n", + " [ 1.87500000e+03 1.91900000e+03]]\n", + "DEBUG:root:radec2pix: lng: [44.48637088 40.24577336 35.3986005 29.89032997 23.69955042 16.86222735\n", + " 9.49377237 1.79522173 44.48637088 48.66063412 53.44662754 58.90649312\n", + " 65.0719071 71.9184746 79.34035003 87.13941954 1.79522173 2.08115239\n", + " 2.4736322 3.04578526 3.95735654 5.6363423 9.74006464 33.09159725\n", + " 87.13941954 86.68537287 86.05851166 85.13727473 83.65177634 80.86105503\n", + " 73.77851938 33.09159725 42.72105973 37.1234454 30.55748427 22.96885005\n", + " 14.42630836 5.17884001 46.22224274 51.74114431 58.24340245 65.80116251\n", + " 74.36661193 83.70585675 1.93801443 2.35975361 3.01217367 4.15532416\n", + " 6.6725739 16.60005947 86.92909007 86.26070822 85.21749379 83.36321455\n", + " 79.16883097 61.59868241 44.48614146 44.48614146 33.22349754 33.22349754\n", + " 44.45527608 50.01139871 56.64103308 64.45360362 73.42615136 83.31035484\n", + " 38.80796323 44.3420957 51.23163704 59.75644459 70.04944098 81.86211477\n", + " 32.10039047 37.31880048 44.16600061 53.22697224 65.04995068 79.6185637\n", + " 24.24396698 28.69167771 34.89141577 43.85434751 57.06355174 75.69539259\n", + " 15.28811193 18.37837592 22.94811312 30.25991115 43.15274514 67.23630391\n", + " 5.50203766 6.68110194 8.4950185 11.63570463 18.3197087 40.11102427]\n", + "DEBUG:root:radec2pix: lat: [73.19833089 74.18249103 75.09922688 75.92116023 76.61853688 77.16100123\n", + " 77.52079342 77.67706772 73.19833089 74.20159367 75.14093371 75.98890558\n", + " 76.71531245 77.28881429 77.68005228 77.86611976 77.67706772 79.27473553\n", + " 80.90480881 82.56181915 84.24016258 85.93331116 87.63030205 89.26372814\n", + " 77.86611976 79.46663016 81.09832556 82.755367 84.43126132 86.11695715\n", + " 87.79091006 89.26372814 73.63774563 74.80227565 75.83862014 76.69292614\n", + " 77.3096353 77.64025349 73.64559076 74.835883 75.90321746 76.7930912\n", + " 77.44812351 77.8166633 78.36913095 80.34967761 82.37343442 84.43012843\n", + " 86.50734673 88.57380626 78.55945528 80.5426681 82.56690719 84.62047016\n", + " 86.68569475 88.69035885 73.20529527 73.20529527 89.25558432 89.25558432\n", + " 74.09681811 75.34210951 76.46528549 77.40781255 78.10603298 78.5008319\n", + " 75.3160395 76.72544415 78.02222799 79.13621749 79.98176995 80.46955109\n", + " 76.40729948 77.98832745 79.48016045 80.80422916 81.84813181 82.47175257\n", + " 77.31254652 79.06012758 80.75806605 82.3313541 83.64750757 84.48728684\n", + " 77.96997446 79.85669547 81.74302972 83.57869755 85.2518859 86.47101417\n", + " 78.32402093 80.29356392 82.30071175 84.32903186 86.34620527 88.21286949]\n", + "DEBUG:root:radec2pix: camVec: [[-0.00174024 -0.00176337 -0.00178449 -0.00180353 -0.00182039 -0.001835\n", + " -0.00184725 -0.00185707 -0.00174024 -0.0307605 -0.05966066 -0.08832819\n", + " -0.11665151 -0.14451993 -0.17182299 -0.19844965 -0.00185707 -0.03187835\n", + " -0.06177226 -0.09142104 -0.12071058 -0.14953103 -0.1777762 -0.20534186\n", + " -0.19844965 -0.20021951 -0.20172864 -0.20297731 -0.20396466 -0.20468905\n", + " -0.20514862 -0.20534186 -0.00185028 -0.00187827 -0.00190298 -0.00192425\n", + " -0.00194192 -0.00195581 -0.0144012 -0.04990298 -0.08511243 -0.11982373\n", + " -0.15383302 -0.18693675 -0.01495442 -0.05167778 -0.08809246 -0.12398684\n", + " -0.15915858 -0.19341315 -0.19916328 -0.201156 -0.20275765 -0.20396715\n", + " -0.20478152 -0.20519745 -0.00183964 -0.00183964 -0.20524866 -0.20524866\n", + " -0.01446124 -0.05010266 -0.08545073 -0.12029942 -0.1544452 -0.18768535\n", + " -0.01461361 -0.05060625 -0.08630213 -0.12149421 -0.15597972 -0.18955833\n", + " -0.01473929 -0.05101673 -0.08699359 -0.12246151 -0.1572181 -0.19106523\n", + " -0.01483744 -0.0513315 -0.08752139 -0.12319735 -0.15815714 -0.19220433\n", + " -0.01490708 -0.05154747 -0.08788092 -0.1236965 -0.15879197 -0.19297207\n", + " -0.01494734 -0.05166195 -0.08806808 -0.12395417 -0.15911791 -0.19336467]\n", + " [ 0.20894107 0.18147259 0.15331081 0.12455987 0.09532558 0.06571725\n", + " 0.03584843 0.00583647 0.20894107 0.20879621 0.2083801 0.20769404\n", + " 0.20673975 0.20551876 0.20403188 0.20227886 0.00583647 0.00584019\n", + " 0.00583613 0.00582438 0.00580507 0.00577839 0.00574449 0.00570348\n", + " 0.20227886 0.17571613 0.1484622 0.12062809 0.09232414 0.06366093\n", + " 0.03474987 0.00570348 0.1970566 0.16291184 0.12782912 0.09200243\n", + " 0.05563309 0.01893178 0.2088187 0.20845876 0.20769278 0.20652378\n", + " 0.20495452 0.20298606 0.00594178 0.00594091 0.00592823 0.00590399\n", + " 0.0058685 0.00582205 0.19079562 0.1577603 0.12379719 0.08910965\n", + " 0.05390131 0.01837776 0.20884841 0.20884841 0.00580307 0.00580307\n", + " 0.19702878 0.19668974 0.19596793 0.19486681 0.19338978 0.1915385\n", + " 0.16288937 0.16260994 0.16201386 0.16110551 0.1598896 0.15836938\n", + " 0.12781212 0.12759366 0.12712576 0.126413 0.12546054 0.12427244\n", + " 0.09199108 0.09183551 0.0914995 0.09098698 0.09030259 0.0894502\n", + " 0.05562756 0.05553685 0.05533649 0.05502916 0.05461804 0.05410588\n", + " 0.0189322 0.01890777 0.01884587 0.01874743 0.01861357 0.01844527]\n", + " [ 0.97792668 0.98339442 0.98817641 0.99221045 0.99544448 0.9978366\n", + " 0.99935553 0.99998124 0.97792668 0.97747528 0.97622658 0.97419778\n", + " 0.97141706 0.96792357 0.96376753 0.95901043 0.99998124 0.99947469\n", + " 0.99807321 0.9957953 0.99267077 0.98874015 0.98405418 0.97867369\n", + " 0.95901043 0.96386513 0.96812423 0.97172479 0.97461514 0.97675467\n", + " 0.97811374 0.97867369 0.98039037 0.98663884 0.99179438 0.99575692\n", + " 0.99844939 0.99981886 0.97784833 0.97675721 0.97448427 0.97107683\n", + " 0.96660698 0.96117184 0.99987052 0.99864614 0.99609466 0.9922663\n", + " 0.98723559 0.98110013 0.96121331 0.96677192 0.97137201 0.97491378\n", + " 0.97732245 0.97854804 0.9779463 0.9779463 0.97869265 0.97869265\n", + " 0.98029105 0.9791848 0.97688011 0.97342435 0.96888961 0.96337283\n", + " 0.98653611 0.98539181 0.98300735 0.97943054 0.97473363 0.9690133\n", + " 0.99168887 0.99051358 0.98806435 0.98438962 0.97956221 0.97367882\n", + " 0.99564928 0.99445026 0.99195154 0.9882023 0.98327604 0.97726975\n", + " 0.9983403 0.99712513 0.99459279 0.9907931 0.98580017 0.97971135\n", + " 0.99970903 0.99848562 0.99593617 0.99211083 0.9870841 0.98095356]]\n", + "DEBUG:root:radec2pix: camVec Shape: (3, 96)\n", + "DEBUG:root:radec2pix: fitpx: [[-4.99999744e-01 -4.99999751e-01]\n", + " [-5.00000258e-01 2.91928571e+02]\n", + " [-5.00000005e-01 5.84357143e+02]\n", + " [-4.99999941e-01 8.76785714e+02]\n", + " [-4.99999889e-01 1.16921429e+03]\n", + " [-4.99999948e-01 1.46164286e+03]\n", + " [-5.00000143e-01 1.75407143e+03]\n", + " [-4.99999962e-01 2.04650000e+03]\n", + " [-4.99999744e-01 -4.99999751e-01]\n", + " [ 2.91928571e+02 -5.00000271e-01]\n", + " [ 5.84357143e+02 -4.99999959e-01]\n", + " [ 8.76785714e+02 -5.00000035e-01]\n", + " [ 1.16921429e+03 -5.00000130e-01]\n", + " [ 1.46164286e+03 -5.00000295e-01]\n", + " [ 1.75407143e+03 -5.00000131e-01]\n", + " [ 2.04650000e+03 -5.00000000e-01]\n", + " [-4.99999962e-01 2.04650000e+03]\n", + " [ 2.91928571e+02 2.04650000e+03]\n", + " [ 5.84357143e+02 2.04650000e+03]\n", + " [ 8.76785714e+02 2.04650000e+03]\n", + " [ 1.16921429e+03 2.04650000e+03]\n", + " [ 1.46164286e+03 2.04650000e+03]\n", + " [ 1.75407143e+03 2.04650000e+03]\n", + " [ 2.04650000e+03 2.04650000e+03]\n", + " [ 2.04650000e+03 -5.00000000e-01]\n", + " [ 2.04650000e+03 2.91928571e+02]\n", + " [ 2.04650000e+03 5.84357143e+02]\n", + " [ 2.04650000e+03 8.76785714e+02]\n", + " [ 2.04650000e+03 1.16921429e+03]\n", + " [ 2.04650000e+03 1.46164286e+03]\n", + " [ 2.04650000e+03 1.75407143e+03]\n", + " [ 2.04650000e+03 2.04650000e+03]\n", + " [ 4.99999742e-01 1.27000000e+02]\n", + " [ 4.99999873e-01 4.85400000e+02]\n", + " [ 4.99999712e-01 8.43800000e+02]\n", + " [ 5.00000277e-01 1.20220000e+03]\n", + " [ 5.00000282e-01 1.56060000e+03]\n", + " [ 4.99999780e-01 1.91900000e+03]\n", + " [ 1.27000000e+02 4.99999945e-01]\n", + " [ 4.85400000e+02 4.99999942e-01]\n", + " [ 8.43800000e+02 5.00000147e-01]\n", + " [ 1.20220000e+03 4.99999799e-01]\n", + " [ 1.56060000e+03 5.00000078e-01]\n", + " [ 1.91900000e+03 4.99999710e-01]\n", + " [ 1.27000000e+02 2.04550000e+03]\n", + " [ 4.85400000e+02 2.04550000e+03]\n", + " [ 8.43800000e+02 2.04550000e+03]\n", + " [ 1.20220000e+03 2.04550000e+03]\n", + " [ 1.56060000e+03 2.04550000e+03]\n", + " [ 1.91900000e+03 2.04550000e+03]\n", + " [ 2.04550000e+03 1.27000000e+02]\n", + " [ 2.04550000e+03 4.85400000e+02]\n", + " [ 2.04550000e+03 8.43800000e+02]\n", + " [ 2.04550000e+03 1.20220000e+03]\n", + " [ 2.04550000e+03 1.56060000e+03]\n", + " [ 2.04550000e+03 1.91900000e+03]\n", + " [ 5.00000247e-01 5.00000241e-01]\n", + " [ 5.00000247e-01 5.00000241e-01]\n", + " [ 2.04550000e+03 2.04550000e+03]\n", + " [ 2.04550000e+03 2.04550000e+03]\n", + " [ 1.27000000e+02 1.27000000e+02]\n", + " [ 4.85400000e+02 1.27000000e+02]\n", + " [ 8.43800000e+02 1.27000000e+02]\n", + " [ 1.20220000e+03 1.27000000e+02]\n", + " [ 1.56060000e+03 1.27000000e+02]\n", + " [ 1.91900000e+03 1.27000000e+02]\n", + " [ 1.27000000e+02 4.85400000e+02]\n", + " [ 4.85400000e+02 4.85400000e+02]\n", + " [ 8.43800000e+02 4.85400000e+02]\n", + " [ 1.20220000e+03 4.85400000e+02]\n", + " [ 1.56060000e+03 4.85400000e+02]\n", + " [ 1.91900000e+03 4.85400000e+02]\n", + " [ 1.27000000e+02 8.43800000e+02]\n", + " [ 4.85400000e+02 8.43800000e+02]\n", + " [ 8.43800000e+02 8.43800000e+02]\n", + " [ 1.20220000e+03 8.43800000e+02]\n", + " [ 1.56060000e+03 8.43800000e+02]\n", + " [ 1.91900000e+03 8.43800000e+02]\n", + " [ 1.27000000e+02 1.20220000e+03]\n", + " [ 4.85400000e+02 1.20220000e+03]\n", + " [ 8.43800000e+02 1.20220000e+03]\n", + " [ 1.20220000e+03 1.20220000e+03]\n", + " [ 1.56060000e+03 1.20220000e+03]\n", + " [ 1.91900000e+03 1.20220000e+03]\n", + " [ 1.27000000e+02 1.56060000e+03]\n", + " [ 4.85400000e+02 1.56060000e+03]\n", + " [ 8.43800000e+02 1.56060000e+03]\n", + " [ 1.20220000e+03 1.56060000e+03]\n", + " [ 1.56060000e+03 1.56060000e+03]\n", + " [ 1.91900000e+03 1.56060000e+03]\n", + " [ 1.27000000e+02 1.91900000e+03]\n", + " [ 4.85400000e+02 1.91900000e+03]\n", + " [ 8.43800000e+02 1.91900000e+03]\n", + " [ 1.20220000e+03 1.91900000e+03]\n", + " [ 1.56060000e+03 1.91900000e+03]\n", + " [ 1.91900000e+03 1.91900000e+03]]\n", + "DEBUG:root:fitpix2pix: ccdpx: shape: (96, 2)\n", + "DEBUG:root:fitpix2pix: visCut: True\n", + "DEBUG:root:cartToSphere: vec: [[-0.00174024 0.20894107 0.97792668]\n", + " [-0.00176337 0.18147259 0.98339442]\n", + " [-0.00178449 0.15331081 0.98817641]\n", + " [-0.00180353 0.12455987 0.99221045]\n", + " [-0.00182039 0.09532558 0.99544448]\n", + " [-0.001835 0.06571725 0.9978366 ]\n", + " [-0.00184725 0.03584843 0.99935553]\n", + " [-0.00185707 0.00583647 0.99998124]\n", + " [-0.00174024 0.20894107 0.97792668]\n", + " [-0.0307605 0.20879621 0.97747528]\n", + " [-0.05966066 0.2083801 0.97622658]\n", + " [-0.08832819 0.20769404 0.97419778]\n", + " [-0.11665151 0.20673975 0.97141706]\n", + " [-0.14451993 0.20551876 0.96792357]\n", + " [-0.17182299 0.20403188 0.96376753]\n", + " [-0.19844965 0.20227886 0.95901043]\n", + " [-0.00185707 0.00583647 0.99998124]\n", + " [-0.03187835 0.00584019 0.99947469]\n", + " [-0.06177226 0.00583613 0.99807321]\n", + " [-0.09142104 0.00582438 0.9957953 ]\n", + " [-0.12071058 0.00580507 0.99267077]\n", + " [-0.14953103 0.00577839 0.98874015]\n", + " [-0.1777762 0.00574449 0.98405418]\n", + " [-0.20534186 0.00570348 0.97867369]\n", + " [-0.19844965 0.20227886 0.95901043]\n", + " [-0.20021951 0.17571613 0.96386513]\n", + " [-0.20172864 0.1484622 0.96812423]\n", + " [-0.20297731 0.12062809 0.97172479]\n", + " [-0.20396466 0.09232414 0.97461514]\n", + " [-0.20468905 0.06366093 0.97675467]\n", + " [-0.20514862 0.03474987 0.97811374]\n", + " [-0.20534186 0.00570348 0.97867369]\n", + " [-0.00185028 0.1970566 0.98039037]\n", + " [-0.00187827 0.16291184 0.98663884]\n", + " [-0.00190298 0.12782912 0.99179438]\n", + " [-0.00192425 0.09200243 0.99575692]\n", + " [-0.00194192 0.05563309 0.99844939]\n", + " [-0.00195581 0.01893178 0.99981886]\n", + " [-0.0144012 0.2088187 0.97784833]\n", + " [-0.04990298 0.20845876 0.97675721]\n", + " [-0.08511243 0.20769278 0.97448427]\n", + " [-0.11982373 0.20652378 0.97107683]\n", + " [-0.15383302 0.20495452 0.96660698]\n", + " [-0.18693675 0.20298606 0.96117184]\n", + " [-0.01495442 0.00594178 0.99987052]\n", + " [-0.05167778 0.00594091 0.99864614]\n", + " [-0.08809246 0.00592823 0.99609466]\n", + " [-0.12398684 0.00590399 0.9922663 ]\n", + " [-0.15915858 0.0058685 0.98723559]\n", + " [-0.19341315 0.00582205 0.98110013]\n", + " [-0.19916328 0.19079562 0.96121331]\n", + " [-0.201156 0.1577603 0.96677192]\n", + " [-0.20275765 0.12379719 0.97137201]\n", + " [-0.20396715 0.08910965 0.97491378]\n", + " [-0.20478152 0.05390131 0.97732245]\n", + " [-0.20519745 0.01837776 0.97854804]\n", + " [-0.00183964 0.20884841 0.9779463 ]\n", + " [-0.00183964 0.20884841 0.9779463 ]\n", + " [-0.20524866 0.00580307 0.97869265]\n", + " [-0.20524866 0.00580307 0.97869265]\n", + " [-0.01446124 0.19702878 0.98029105]\n", + " [-0.05010266 0.19668974 0.9791848 ]\n", + " [-0.08545073 0.19596793 0.97688011]\n", + " [-0.12029942 0.19486681 0.97342435]\n", + " [-0.1544452 0.19338978 0.96888961]\n", + " [-0.18768535 0.1915385 0.96337283]\n", + " [-0.01461361 0.16288937 0.98653611]\n", + " [-0.05060625 0.16260994 0.98539181]\n", + " [-0.08630213 0.16201386 0.98300735]\n", + " [-0.12149421 0.16110551 0.97943054]\n", + " [-0.15597972 0.1598896 0.97473363]\n", + " [-0.18955833 0.15836938 0.9690133 ]\n", + " [-0.01473929 0.12781212 0.99168887]\n", + " [-0.05101673 0.12759366 0.99051358]\n", + " [-0.08699359 0.12712576 0.98806435]\n", + " [-0.12246151 0.126413 0.98438962]\n", + " [-0.1572181 0.12546054 0.97956221]\n", + " [-0.19106523 0.12427244 0.97367882]\n", + " [-0.01483744 0.09199108 0.99564928]\n", + " [-0.0513315 0.09183551 0.99445026]\n", + " [-0.08752139 0.0914995 0.99195154]\n", + " [-0.12319735 0.09098698 0.9882023 ]\n", + " [-0.15815714 0.09030259 0.98327604]\n", + " [-0.19220433 0.0894502 0.97726975]\n", + " [-0.01490708 0.05562756 0.9983403 ]\n", + " [-0.05154747 0.05553685 0.99712513]\n", + " [-0.08788092 0.05533649 0.99459279]\n", + " [-0.1236965 0.05502916 0.9907931 ]\n", + " [-0.15879197 0.05461804 0.98580017]\n", + " [-0.19297207 0.05410588 0.97971135]\n", + " [-0.01494734 0.0189322 0.99970903]\n", + " [-0.05166195 0.01890777 0.99848562]\n", + " [-0.08806808 0.01884587 0.99593617]\n", + " [-0.12395417 0.01874743 0.99211083]\n", + " [-0.15911791 0.01861357 0.9870841 ]\n", + " [-0.19336467 0.01844527 0.98095356]]\n", + "DEBUG:root:radec2pix: lng: [ 90.47719648 90.55672682 90.66687597 90.82953968 91.0940213\n", + " 91.5994309 92.9498036 107.65020813 90.47719648 98.38070645\n", + " 105.9767833 113.03909385 119.43357191 125.11472623 130.10200281\n", + " 134.45251944 107.65020813 169.61839319 174.60281853 176.35464905\n", + " 177.24671913 177.78699525 178.149242 178.40898834 134.45251944\n", + " 138.72924775 143.64878868 149.27726033 155.64622183 162.72363484\n", + " 170.38599488 178.40898834 90.53796733 90.66055396 90.85289348\n", + " 91.19818153 91.99914413 95.89819456 93.94516067 103.46269209\n", + " 112.28380041 120.12202419 126.89084824 132.64302298 158.33080444\n", + " 173.44203131 176.15005523 177.27375664 177.8883436 178.27582468\n", + " 136.22925254 141.89402899 148.59312727 156.4003322 165.25344571\n", + " 174.88216618 90.50467598 90.50467598 178.38048842 178.38048842\n", + " 94.19778856 104.29099371 113.55934226 121.68876645 128.61161022\n", + " 134.41785939 95.12656191 107.28679494 118.04349613 127.02097674\n", + " 134.29081962 140.12241992 96.57828818 111.79338073 124.38427646\n", + " 134.09036566 141.4100222 146.95926252 99.16244844 119.20302386\n", + " 133.72701528 143.55240671 150.27503583 155.04314708 105.00164812\n", + " 132.86645918 147.80237126 156.01703787 161.01884636 164.3374646\n", + " 128.29176769 159.89787077 167.9213331 171.39949271 173.32787944\n", + " 174.55097942]\n", + "DEBUG:root:optics_fp: rtanth: [45.26169529 42.30243097 39.60873368 37.23827886 35.25632641 33.73142753\n", + " 32.72753223 32.29326616 45.26169529 42.24571523 39.48748363 37.04461879\n", + " 34.98324901 33.37413897 32.28498264 31.76930229 32.29326616 27.90939691\n", + " 23.52648174 19.14517593 14.76691204 10.39553425 6.04599739 1.87684519\n", + " 31.76930229 27.38910685 23.01128618 18.63751379 14.2715122 9.92354331\n", + " 5.63550123 1.87684519 43.93110404 40.47519439 37.47457234 35.04637691\n", + " 33.3160059 32.39547369 43.90748877 40.37685013 37.28961296 34.76410785\n", + " 32.92983309 31.90622779 30.38230115 25.01013154 19.64005824 14.27444739\n", + " 8.9213542 3.63648527 29.86008841 24.49335294 19.13182032 13.78156419\n", + " 8.46399587 3.33911555 45.24048285 45.24048285 1.89760875 1.89760875\n", + " 42.55711672 38.90412112 35.68971629 33.042152 31.10650288 30.02079255\n", + " 38.97957981 34.95468636 31.33776168 28.28574318 25.99834571 24.68901465\n", + " 35.85400749 31.43139051 27.35246822 23.7946523 21.02418109 19.38168349\n", + " 33.30787918 28.49275823 23.91782767 19.75070735 16.30708904 14.12638019\n", + " 31.48209857 26.3352423 21.30188242 16.48630206 12.15026205 9.01456223\n", + " 30.50627799 25.16059326 19.83130509 14.53645837 9.33484517 4.55771859]\n", + "DEBUG:root:radec2pix: lat: [77.93927193 79.54395482 81.18055575 82.84390632 84.52894038 86.23049276\n", + " 87.9428694 89.64907294 77.93927193 77.81611283 77.48163499 76.95619116\n", + " 76.26808809 75.44881244 74.52941663 73.53851291 89.64907294 88.14278148\n", + " 86.44266427 84.74397225 83.05883421 81.39378264 79.75434117 78.14585205\n", + " 73.53851291 74.55039439 75.49464441 76.34256389 77.06256929 77.62200189\n", + " 77.99067226 78.14585205 78.63460262 80.62342084 82.65501815 84.72002626\n", + " 86.80886799 88.90945013 77.91780497 77.62268078 77.02911929 76.18620636\n", + " 75.15153709 73.98133314 89.07797965 87.01823413 84.93466191 82.86963733\n", + " 80.83566227 78.84284498 73.98994449 75.188461 76.25722019 77.13921802\n", + " 77.77469141 78.11085607 77.94465092 77.94465092 78.15114253 78.15114253\n", + " 78.60576152 78.28926489 77.65557547 76.7612779 75.67077293 74.44486167\n", + " 80.58736145 80.19458487 79.42244991 78.35883667 77.09292697 75.69943663\n", + " 82.60788147 82.10171615 81.13877773 79.86296648 78.39628485 76.82509319\n", + " 84.6534244 83.96086026 82.72578935 81.19023674 79.50664486 77.76043854\n", + " 86.6984902 85.65438612 84.03898568 82.21913056 80.33294013 78.43884558\n", + " 88.61780046 86.84637931 84.83282934 82.79823023 80.78132572 78.79952798]\n", + "DEBUG:root:optics_fp: cphi: [0.71341716 0.76328013 0.81514194 0.86698087 0.91566575 0.95700502\n", + " 0.98630354 0.99950918 0.71341716 0.66051768 0.59557134 0.51643629\n", + " 0.4214805 0.31036993 0.18497457 0.04990581 0.99950918 0.99934039\n", + " 0.99906819 0.99858739 0.99761569 0.9951653 0.98558541 0.8377988\n", + " 0.04990581 0.05781889 0.0687377 0.08476872 0.11057085 0.15882919\n", + " 0.27935111 0.8377988 0.73466528 0.79733703 0.86111952 0.92071715\n", + " 0.96846887 0.9959178 0.69186293 0.61921532 0.52631184 0.40990453\n", + " 0.26948104 0.10963271 0.999428 0.999152 0.99861839 0.99737128\n", + " 0.99322638 0.95832228 0.05357183 0.06521663 0.08337359 0.1155749\n", + " 0.18791565 0.47564444 0.71341996 0.71341996 0.83653968 0.83653968\n", + " 0.71379735 0.6426352 0.54988271 0.43124184 0.28525093 0.11649124\n", + " 0.77925087 0.71517941 0.62617339 0.50367681 0.34120915 0.14155583\n", + " 0.8471183 0.79527459 0.71732418 0.59864658 0.42182798 0.18020046\n", + " 0.91180529 0.87721591 0.82023759 0.72110338 0.54370846 0.24707693\n", + " 0.96461215 0.94899507 0.92085832 0.86374835 0.72953296 0.3869314\n", + " 0.99539279 0.99320908 0.98902871 0.97944976 0.94931741 0.76479745]\n", + "DEBUG:root:optics_fp: sphi: [0.70073958 0.64606768 0.57926126 0.49834142 0.40194059 0.29007134\n", + " 0.1649404 0.0313274 0.70073958 0.75081049 0.80330242 0.85632562\n", + " 0.90683747 0.95061586 0.98274331 0.99875393 0.0313274 0.03631497\n", + " 0.04315962 0.05313395 0.069014 0.09821415 0.1691786 0.5459791\n", + " 0.99875393 0.99832709 0.99763477 0.99640065 0.99386824 0.98730608\n", + " 0.96018902 0.5459791 0.67842975 0.60353431 0.50840257 0.39023062\n", + " 0.2491346 0.09026478 0.72202887 0.78522123 0.85029163 0.91212843\n", + " 0.9630057 0.99397217 0.03381828 0.04117383 0.05254813 0.07246053\n", + " 0.11619532 0.28568936 0.998564 0.99787113 0.99651836 0.99329877\n", + " 0.98218517 0.87963764 0.70073672 0.70073672 0.54790634 0.54790634\n", + " 0.7003523 0.76617231 0.83524188 0.90223637 0.95845287 0.99319172\n", + " 0.62671212 0.69894092 0.77968384 0.86389216 0.9399874 0.98993027\n", + " 0.53140435 0.60624939 0.69673956 0.80101328 0.90667588 0.98362991\n", + " 0.41062285 0.48009609 0.57202299 0.69282748 0.83927416 0.96899587\n", + " 0.26367291 0.3152909 0.38989736 0.5039234 0.68394565 0.92210851\n", + " 0.09588115 0.11634315 0.14772342 0.20168832 0.31431902 0.6442708 ]\n", + "DEBUG:root:optics_fp: xyfp: [[-32.29046994 -31.71666141]\n", + " [-32.28860507 -27.33023323]\n", + " [-32.2867402 -22.94380505]\n", + " [-32.28487534 -18.55737688]\n", + " [-32.28301047 -14.1709487 ]\n", + " [-32.2811456 -9.78452053]\n", + " [-32.27928073 -5.39809235]\n", + " [-32.27741587 -1.01166418]\n", + " [-32.29046994 -31.71666141]\n", + " [-27.90404176 -31.71852627]\n", + " [-23.51761359 -31.72039114]\n", + " [-19.13118541 -31.722256 ]\n", + " [-14.74475724 -31.72412087]\n", + " [-10.35832906 -31.72598574]\n", + " [ -5.97190089 -31.72785061]\n", + " [ -1.58547272 -31.72971547]\n", + " [-32.27741587 -1.01166418]\n", + " [-27.8909877 -1.01352905]\n", + " [-23.50455952 -1.01539391]\n", + " [-19.11813134 -1.01725878]\n", + " [-14.73170317 -1.01912365]\n", + " [-10.345275 -1.02098851]\n", + " [ -5.95884682 -1.02285338]\n", + " [ -1.57241864 -1.02471825]\n", + " [ -1.58547272 -31.72971547]\n", + " [ -1.58360785 -27.3432873 ]\n", + " [ -1.58174298 -22.95685912]\n", + " [ -1.57987811 -18.57043094]\n", + " [ -1.57801325 -14.18400278]\n", + " [ -1.57614838 -9.7975746 ]\n", + " [ -1.57428351 -5.41114642]\n", + " [ -1.57241864 -1.02471825]\n", + " [-32.27465685 -29.80416795]\n", + " [-32.27237127 -24.42816844]\n", + " [-32.2700857 -19.05216893]\n", + " [-32.26780012 -13.67616941]\n", + " [-32.26551454 -8.3001699 ]\n", + " [-32.26322896 -2.92417038]\n", + " [-30.37796373 -31.70247449]\n", + " [-25.00196422 -31.70476008]\n", + " [-19.62596471 -31.70704565]\n", + " [-14.24996519 -31.70933123]\n", + " [ -8.87396568 -31.71161681]\n", + " [ -3.49796617 -31.71390239]\n", + " [-30.36492242 -1.02747727]\n", + " [-24.98892291 -1.02976285]\n", + " [-19.61292339 -1.03204842]\n", + " [-14.23692388 -1.034334 ]\n", + " [ -8.86092437 -1.03661958]\n", + " [ -3.48492485 -1.03890516]\n", + " [ -1.59965962 -29.81720927]\n", + " [ -1.59737405 -24.44120975]\n", + " [ -1.59508847 -19.06521024]\n", + " [ -1.59280289 -13.68921073]\n", + " [ -1.59051731 -8.31321121]\n", + " [ -1.58823174 -2.9372117 ]\n", + " [-32.27546357 -31.70166778]\n", + " [-32.27546357 -31.70166778]\n", + " [ -1.58742502 -1.03971187]\n", + " [ -1.58742502 -1.03971187]\n", + " [-30.37715702 -29.80497466]\n", + " [-25.00115751 -29.80726024]\n", + " [-19.625158 -29.80954582]\n", + " [-14.24915848 -29.8118314 ]\n", + " [ -8.87315897 -29.81411698]\n", + " [ -3.49715945 -29.81640256]\n", + " [-30.37487145 -24.42897515]\n", + " [-24.99887193 -24.43126073]\n", + " [-19.62287241 -24.43354631]\n", + " [-14.2468729 -24.43583188]\n", + " [ -8.87087339 -24.43811746]\n", + " [ -3.49487388 -24.44040305]\n", + " [-30.37258587 -19.05297564]\n", + " [-24.99658635 -19.05526122]\n", + " [-19.62058684 -19.05754679]\n", + " [-14.24458732 -19.05983237]\n", + " [ -8.86858781 -19.06211795]\n", + " [ -3.4925883 -19.06440353]\n", + " [-30.37030029 -13.67697612]\n", + " [-24.99430077 -13.6792617 ]\n", + " [-19.61830126 -13.68154728]\n", + " [-14.24230175 -13.68383286]\n", + " [ -8.86630223 -13.68611844]\n", + " [ -3.49030272 -13.68840401]\n", + " [-30.36801471 -8.30097661]\n", + " [-24.9920152 -8.30326219]\n", + " [-19.61601568 -8.30554776]\n", + " [-14.24001617 -8.30783335]\n", + " [ -8.86401666 -8.31011893]\n", + " [ -3.48801714 -8.3124045 ]\n", + " [-30.36572914 -2.9249771 ]\n", + " [-24.98972962 -2.92726267]\n", + " [-19.6137301 -2.92954825]\n", + " [-14.23773059 -2.93183383]\n", + " [ -8.86173108 -2.93411941]\n", + " [ -3.48573156 -2.93640499]]\n", + "DEBUG:root:optics_fp: xyfp shape: (96, 2)\n", + "DEBUG:root:optics_fp: rtanth: [31.5581844 27.17194416 22.78577643 18.39973306 14.01393083 9.62869923\n", + " 5.24546963 0.89418442 31.5581844 31.89890725 32.82747441 34.29617149\n", + " 36.23938733 38.58549624 41.26583765 44.21967554 0.89418442 4.73506565\n", + " 9.08425224 13.45763509 17.83742574 22.21983534 26.60356968 30.98806655\n", + " 44.21967554 41.20406839 38.45324836 36.02791805 33.99780815 32.43720936\n", + " 31.41616867 30.98806655 29.64590075 24.27020709 18.89468775 13.51955065\n", + " 8.14555257 2.77930847 31.61752824 32.43532389 34.09156981 36.4722193\n", + " 39.44633291 42.89063222 2.34966506 7.60940668 12.96487432 18.33236521\n", + " 23.70371309 29.07678054 42.86493558 39.33911823 36.27027014 33.78315439\n", + " 32.01364237 31.08452713 31.54331756 31.54331756 30.97348847 30.97348847\n", + " 29.72484887 30.59328006 32.34398987 34.84424384 37.94616883 41.5151163\n", + " 24.36657877 25.41873926 27.5008582 30.40205338 33.9127594 37.86381389\n", + " 19.01831838 20.34892081 22.89680053 26.31066557 30.29920003 34.66460262\n", + " 13.69180262 15.48701401 18.70915549 22.76005595 27.27289033 32.05313869\n", + " 8.42835902 11.10942753 15.28411843 20.03975859 25.04760117 30.18237029\n", + " 3.52303344 8.04946636 13.22795543 18.51935347 23.84862372 29.19503391]\n", + "DEBUG:root:optics_fp: cphi: [-0.00832855 -0.00971656 -0.01163892 -0.01447769 -0.01909311 -0.02791171\n", + " -0.05146104 -0.30320505 -0.00832855 -0.1457499 -0.27524782 -0.39135911\n", + " -0.49141415 -0.57521551 -0.64415037 -0.70031796 -0.30320505 -0.98362937\n", + " -0.99556659 -0.99797672 -0.99884564 -0.99925418 -0.99947834 -0.99961448\n", + " -0.70031796 -0.75160095 -0.80539882 -0.85964958 -0.91101663 -0.95488339\n", + " -0.98595524 -0.99961448 -0.00938916 -0.01152859 -0.01488525 -0.02091069\n", + " -0.03488457 -0.10276119 -0.06880165 -0.23281216 -0.37919455 -0.50184326\n", + " -0.60029249 -0.67742851 -0.92933123 -0.99345681 -0.99774332 -0.99886819\n", + " -0.99932092 -0.99954725 -0.72211351 -0.78687071 -0.8534883 -0.91636505\n", + " -0.96706125 -0.99601335 -0.00880814 -0.00880814 -0.99960055 -0.99960055\n", + " -0.0731997 -0.24684669 -0.39969867 -0.52530483 -0.62403795 -0.69988601\n", + " -0.08935604 -0.29715482 -0.47014172 -0.60210737 -0.6983006 -0.76741609\n", + " -0.11456071 -0.37126057 -0.56474055 -0.69579203 -0.78162959 -0.83828312\n", + " -0.15923419 -0.48790573 -0.69122322 -0.80440059 -0.86841556 -0.90662579\n", + " -0.25884683 -0.68029192 -0.84621522 -0.91366637 -0.94562561 -0.96286848\n", + " -0.61966627 -0.93908148 -0.97786122 -0.98875506 -0.9932273 -0.99548108]\n", + "DEBUG:root:make_az_asym: xyp: [[-32.29046994 -31.71666141]\n", + " [-32.28860507 -27.33023323]\n", + " [-32.2867402 -22.94380505]\n", + " [-32.28487534 -18.55737688]\n", + " [-32.28301047 -14.1709487 ]\n", + " [-32.2811456 -9.78452053]\n", + " [-32.27928073 -5.39809235]\n", + " [-32.27741587 -1.01166418]\n", + " [-32.29046994 -31.71666141]\n", + " [-27.90404176 -31.71852627]\n", + " [-23.51761359 -31.72039114]\n", + " [-19.13118541 -31.722256 ]\n", + " [-14.74475724 -31.72412087]\n", + " [-10.35832906 -31.72598574]\n", + " [ -5.97190089 -31.72785061]\n", + " [ -1.58547272 -31.72971547]\n", + " [-32.27741587 -1.01166418]\n", + " [-27.8909877 -1.01352905]\n", + " [-23.50455952 -1.01539391]\n", + " [-19.11813134 -1.01725878]\n", + " [-14.73170317 -1.01912365]\n", + " [-10.345275 -1.02098851]\n", + " [ -5.95884682 -1.02285338]\n", + " [ -1.57241864 -1.02471825]\n", + " [ -1.58547272 -31.72971547]\n", + " [ -1.58360785 -27.3432873 ]\n", + " [ -1.58174298 -22.95685912]\n", + " [ -1.57987811 -18.57043094]\n", + " [ -1.57801325 -14.18400278]\n", + " [ -1.57614838 -9.7975746 ]\n", + " [ -1.57428351 -5.41114642]\n", + " [ -1.57241864 -1.02471825]\n", + " [-32.27465685 -29.80416795]\n", + " [-32.27237127 -24.42816844]\n", + " [-32.2700857 -19.05216893]\n", + " [-32.26780012 -13.67616941]\n", + " [-32.26551454 -8.3001699 ]\n", + " [-32.26322896 -2.92417038]\n", + " [-30.37796373 -31.70247449]\n", + " [-25.00196422 -31.70476008]\n", + " [-19.62596471 -31.70704565]\n", + " [-14.24996519 -31.70933123]\n", + " [ -8.87396568 -31.71161681]\n", + " [ -3.49796617 -31.71390239]\n", + " [-30.36492242 -1.02747727]\n", + " [-24.98892291 -1.02976285]\n", + " [-19.61292339 -1.03204842]\n", + " [-14.23692388 -1.034334 ]\n", + " [ -8.86092437 -1.03661958]\n", + " [ -3.48492485 -1.03890516]\n", + " [ -1.59965962 -29.81720927]\n", + " [ -1.59737405 -24.44120975]\n", + " [ -1.59508847 -19.06521024]\n", + " [ -1.59280289 -13.68921073]\n", + " [ -1.59051731 -8.31321121]\n", + " [ -1.58823174 -2.9372117 ]\n", + " [-32.27546357 -31.70166778]\n", + " [-32.27546357 -31.70166778]\n", + " [ -1.58742502 -1.03971187]\n", + " [ -1.58742502 -1.03971187]\n", + " [-30.37715702 -29.80497466]\n", + " [-25.00115751 -29.80726024]\n", + " [-19.625158 -29.80954582]\n", + " [-14.24915848 -29.8118314 ]\n", + " [ -8.87315897 -29.81411698]\n", + " [ -3.49715945 -29.81640256]\n", + " [-30.37487145 -24.42897515]\n", + " [-24.99887193 -24.43126073]\n", + " [-19.62287241 -24.43354631]\n", + " [-14.2468729 -24.43583188]\n", + " [ -8.87087339 -24.43811746]\n", + " [ -3.49487388 -24.44040305]\n", + " [-30.37258587 -19.05297564]\n", + " [-24.99658635 -19.05526122]\n", + " [-19.62058684 -19.05754679]\n", + " [-14.24458732 -19.05983237]\n", + " [ -8.86858781 -19.06211795]\n", + " [ -3.4925883 -19.06440353]\n", + " [-30.37030029 -13.67697612]\n", + " [-24.99430077 -13.6792617 ]\n", + " [-19.61830126 -13.68154728]\n", + " [-14.24230175 -13.68383286]\n", + " [ -8.86630223 -13.68611844]\n", + " [ -3.49030272 -13.68840401]\n", + " [-30.36801471 -8.30097661]\n", + " [-24.9920152 -8.30326219]\n", + " [-19.61601568 -8.30554776]\n", + " [-14.24001617 -8.30783335]\n", + " [ -8.86401666 -8.31011893]\n", + " [ -3.48801714 -8.3124045 ]\n", + " [-30.36572914 -2.9249771 ]\n", + " [-24.98972962 -2.92726267]\n", + " [-19.6137301 -2.92954825]\n", + " [-14.23773059 -2.93183383]\n", + " [ -8.86173108 -2.93411941]\n", + " [ -3.48573156 -2.93640499]]\n", + "DEBUG:root:make_az_asym: xyp: shape: (96, 2)\n", + "DEBUG:root:optics_fp: sphi: [0.99996532 0.99995279 0.99993227 0.99989519 0.99981771 0.99961039\n", + " 0.998675 0.95292534 0.99996532 0.98932147 0.96137331 0.92023804\n", + " 0.87092602 0.8180019 0.76489888 0.71383104 0.95292534 0.18020339\n", + " 0.09405934 0.06358046 0.04803532 0.03861462 0.0322962 0.02776482\n", + " 0.71383104 0.65961808 0.59273329 0.51088414 0.41236963 0.296981\n", + " 0.16700975 0.02776482 0.99995592 0.99993354 0.99988921 0.99978135\n", + " 0.99939135 0.99470606 0.99763036 0.97252172 0.92531697 0.86495858\n", + " 0.79978055 0.73558862 0.36924717 0.1142084 0.06714366 0.04756397\n", + " 0.03684701 0.03008799 0.69177459 0.61711788 0.52111201 0.40034372\n", + " 0.25454379 0.08920432 0.99996121 0.99996121 0.02826205 0.02826205\n", + " 0.9973173 0.96905455 0.91664659 0.85091412 0.78139404 0.71425456\n", + " 0.99599975 0.95482931 0.88259094 0.79841512 0.71580463 0.64114939\n", + " 0.99341625 0.92852872 0.82526851 0.71824331 0.62374288 0.54523519\n", + " 0.98724084 0.87289633 0.72264131 0.59408727 0.49583709 0.42193564\n", + " 0.96591838 0.73294127 0.53284125 0.40646497 0.32525713 0.2699709\n", + " 0.78486541 0.34369459 0.20925449 0.1495441 0.11618746 0.09496005]\n", + "DEBUG:root:radec2pix: xyfp: [[-32.29046994 -31.71666141]\n", + " [-32.28860507 -27.33023323]\n", + " [-32.2867402 -22.94380505]\n", + " [-32.28487534 -18.55737688]\n", + " [-32.28301047 -14.1709487 ]\n", + " [-32.2811456 -9.78452053]\n", + " [-32.27928073 -5.39809235]\n", + " [-32.27741587 -1.01166418]\n", + " [-32.29046994 -31.71666141]\n", + " [-27.90404176 -31.71852627]\n", + " [-23.51761359 -31.72039114]\n", + " [-19.13118541 -31.722256 ]\n", + " [-14.74475724 -31.72412087]\n", + " [-10.35832906 -31.72598574]\n", + " [ -5.97190089 -31.72785061]\n", + " [ -1.58547272 -31.72971547]\n", + " [-32.27741587 -1.01166418]\n", + " [-27.8909877 -1.01352905]\n", + " [-23.50455952 -1.01539391]\n", + " [-19.11813134 -1.01725878]\n", + " [-14.73170317 -1.01912365]\n", + " [-10.345275 -1.02098851]\n", + " [ -5.95884682 -1.02285338]\n", + " [ -1.57241864 -1.02471825]\n", + " [ -1.58547272 -31.72971547]\n", + " [ -1.58360785 -27.3432873 ]\n", + " [ -1.58174298 -22.95685912]\n", + " [ -1.57987811 -18.57043094]\n", + " [ -1.57801325 -14.18400278]\n", + " [ -1.57614838 -9.7975746 ]\n", + " [ -1.57428351 -5.41114642]\n", + " [ -1.57241864 -1.02471825]\n", + " [-32.27465685 -29.80416795]\n", + " [-32.27237127 -24.42816844]\n", + " [-32.2700857 -19.05216893]\n", + " [-32.26780012 -13.67616941]\n", + " [-32.26551454 -8.3001699 ]\n", + " [-32.26322896 -2.92417038]\n", + " [-30.37796373 -31.70247449]\n", + " [-25.00196422 -31.70476008]\n", + " [-19.62596471 -31.70704565]\n", + " [-14.24996519 -31.70933123]\n", + " [ -8.87396568 -31.71161681]\n", + " [ -3.49796617 -31.71390239]\n", + " [-30.36492242 -1.02747727]\n", + " [-24.98892291 -1.02976285]\n", + " [-19.61292339 -1.03204842]\n", + " [-14.23692388 -1.034334 ]\n", + " [ -8.86092437 -1.03661958]\n", + " [ -3.48492485 -1.03890516]\n", + " [ -1.59965962 -29.81720927]\n", + " [ -1.59737405 -24.44120975]\n", + " [ -1.59508847 -19.06521024]\n", + " [ -1.59280289 -13.68921073]\n", + " [ -1.59051731 -8.31321121]\n", + " [ -1.58823174 -2.9372117 ]\n", + " [-32.27546357 -31.70166778]\n", + " [-32.27546357 -31.70166778]\n", + " [ -1.58742502 -1.03971187]\n", + " [ -1.58742502 -1.03971187]\n", + " [-30.37715702 -29.80497466]\n", + " [-25.00115751 -29.80726024]\n", + " [-19.625158 -29.80954582]\n", + " [-14.24915848 -29.8118314 ]\n", + " [ -8.87315897 -29.81411698]\n", + " [ -3.49715945 -29.81640256]\n", + " [-30.37487145 -24.42897515]\n", + " [-24.99887193 -24.43126073]\n", + " [-19.62287241 -24.43354631]\n", + " [-14.2468729 -24.43583188]\n", + " [ -8.87087339 -24.43811746]\n", + " [ -3.49487388 -24.44040305]\n", + " [-30.37258587 -19.05297564]\n", + " [-24.99658635 -19.05526122]\n", + " [-19.62058684 -19.05754679]\n", + " [-14.24458732 -19.05983237]\n", + " [ -8.86858781 -19.06211795]\n", + " [ -3.4925883 -19.06440353]\n", + " [-30.37030029 -13.67697612]\n", + " [-24.99430077 -13.6792617 ]\n", + " [-19.61830126 -13.68154728]\n", + " [-14.24230175 -13.68383286]\n", + " [ -8.86630223 -13.68611844]\n", + " [ -3.49030272 -13.68840401]\n", + " [-30.36801471 -8.30097661]\n", + " [-24.9920152 -8.30326219]\n", + " [-19.61601568 -8.30554776]\n", + " [-14.24001617 -8.30783335]\n", + " [ -8.86401666 -8.31011893]\n", + " [ -3.48801714 -8.3124045 ]\n", + " [-30.36572914 -2.9249771 ]\n", + " [-24.98972962 -2.92726267]\n", + " [-19.6137301 -2.92954825]\n", + " [-14.23773059 -2.93183383]\n", + " [ -8.86173108 -2.93411941]\n", + " [ -3.48573156 -2.93640499]]\n", + "DEBUG:root:radec2pix: xyfp Shape: (96, 2)\n", + "DEBUG:root:optics_fp: xyfp: [[ 0.26283402 -31.55708986]\n", + " [ 0.26401791 -27.17066146]\n", + " [ 0.2652018 -22.78423305]\n", + " [ 0.26638569 -18.39780463]\n", + " [ 0.26756957 -14.01137623]\n", + " [ 0.26875346 -9.62494781]\n", + " [ 0.26993735 -5.2385194 ]\n", + " [ 0.27112123 -0.85209099]\n", + " [ 0.26283402 -31.55708986]\n", + " [ 4.64926244 -31.55827376]\n", + " [ 9.03569085 -31.55945764]\n", + " [ 13.42211926 -31.56064153]\n", + " [ 17.80854767 -31.56182542]\n", + " [ 22.19497608 -31.56300931]\n", + " [ 26.5814045 -31.56419319]\n", + " [ 30.96783291 -31.56537708]\n", + " [ 0.27112123 -0.85209099]\n", + " [ 4.65754965 -0.85327487]\n", + " [ 9.04397805 -0.85445876]\n", + " [ 13.43040647 -0.85564265]\n", + " [ 17.81683488 -0.85682653]\n", + " [ 22.20326329 -0.85801042]\n", + " [ 26.5896917 -0.85919431]\n", + " [ 30.97612012 -0.8603782 ]\n", + " [ 30.96783291 -31.56537708]\n", + " [ 30.9690168 -27.17894867]\n", + " [ 30.97020068 -22.79252025]\n", + " [ 30.97138456 -18.40609184]\n", + " [ 30.97256845 -14.01966343]\n", + " [ 30.97375234 -9.63323502]\n", + " [ 30.97493622 -5.24680661]\n", + " [ 30.97612012 -0.8603782 ]\n", + " [ 0.2783502 -29.64459399]\n", + " [ 0.27980117 -24.26859418]\n", + " [ 0.28125214 -18.89259438]\n", + " [ 0.28270311 -13.51659457]\n", + " [ 0.28415408 -8.14059477]\n", + " [ 0.28560505 -2.76459497]\n", + " [ 2.175338 -31.54260605]\n", + " [ 7.55133781 -31.54405702]\n", + " [ 12.92733761 -31.54550799]\n", + " [ 18.30333742 -31.54695896]\n", + " [ 23.67933722 -31.54840993]\n", + " [ 29.05533702 -31.5498609 ]\n", + " [ 2.18361712 -0.86760716]\n", + " [ 7.55961692 -0.86905814]\n", + " [ 12.93561673 -0.87050911]\n", + " [ 18.31161653 -0.87196007]\n", + " [ 23.68761633 -0.87341105]\n", + " [ 29.06361614 -0.87486202]\n", + " [ 30.95334909 -29.6528731 ]\n", + " [ 30.95480005 -24.27687329]\n", + " [ 30.95625103 -18.90087349]\n", + " [ 30.95770199 -13.52487368]\n", + " [ 30.95915297 -8.14887388]\n", + " [ 30.96060394 -2.77287408]\n", + " [ 0.27783807 -31.54209392]\n", + " [ 0.27783807 -31.54209392]\n", + " [ 30.96111607 -0.87537415]\n", + " [ 30.96111607 -0.87537415]\n", + " [ 2.17585013 -29.64510611]\n", + " [ 7.55184994 -29.64655709]\n", + " [ 12.92784974 -29.64800806]\n", + " [ 18.30384955 -29.64945903]\n", + " [ 23.67984935 -29.65091 ]\n", + " [ 29.05584916 -29.65236097]\n", + " [ 2.1773011 -24.26910631]\n", + " [ 7.55330091 -24.27055728]\n", + " [ 12.92930071 -24.27200825]\n", + " [ 18.30530052 -24.27345922]\n", + " [ 23.68130032 -24.27491019]\n", + " [ 29.05730013 -24.27636116]\n", + " [ 2.17875207 -18.89310651]\n", + " [ 7.55475188 -18.89455748]\n", + " [ 12.93075168 -18.89600845]\n", + " [ 18.30675149 -18.89745942]\n", + " [ 23.68275129 -18.89891039]\n", + " [ 29.0587511 -18.90036136]\n", + " [ 2.18020304 -13.51710671]\n", + " [ 7.55620285 -13.51855767]\n", + " [ 12.93220265 -13.52000864]\n", + " [ 18.30820245 -13.52145961]\n", + " [ 23.68420226 -13.52291058]\n", + " [ 29.06020207 -13.52436156]\n", + " [ 2.18165401 -8.1411069 ]\n", + " [ 7.55765382 -8.14255787]\n", + " [ 12.93365363 -8.14400884]\n", + " [ 18.30965343 -8.14545981]\n", + " [ 23.68565323 -8.14691078]\n", + " [ 29.06165303 -8.14836175]\n", + " [ 2.18310498 -2.76510709]\n", + " [ 7.55910479 -2.76655806]\n", + " [ 12.93510459 -2.76800904]\n", + " [ 18.31110439 -2.76946001]\n", + " [ 23.68710421 -2.77091098]\n", + " [ 29.063104 -2.77236195]]\n", + "DEBUG:root:optics_fp: xyfp shape: (96, 2)\n", + "DEBUG:root:radec2pix: curVec: [[ 0.37641736 -0.78998246 -0.48398108]\n", + " [ 0.3753092 -0.77537349 -0.50787691]\n", + " [ 0.37387597 -0.75984696 -0.53183584]\n", + " [ 0.37210701 -0.74343198 -0.55573848]\n", + " [ 0.36999547 -0.72616444 -0.57947266]\n", + " [ 0.36753846 -0.7080885 -0.60293131]\n", + " [ 0.3647374 -0.68925818 -0.62601102]\n", + " [ 0.36159824 -0.66973808 -0.64861207]\n", + " [ 0.37641736 -0.78998246 -0.48398108]\n", + " [ 0.34937459 -0.79949131 -0.48862157]\n", + " [ 0.32212135 -0.80824861 -0.49292193]\n", + " [ 0.2947683 -0.81622798 -0.49687376]\n", + " [ 0.26742935 -0.82341097 -0.50047568]\n", + " [ 0.24022134 -0.82978703 -0.50373325]\n", + " [ 0.21326327 -0.83535379 -0.50665849]\n", + " [ 0.18667439 -0.84011794 -0.50926861]\n", + " [ 0.36159824 -0.66973808 -0.64861207]\n", + " [ 0.3336307 -0.67964579 -0.65327801]\n", + " [ 0.30545437 -0.68890963 -0.65734401]\n", + " [ 0.27718496 -0.69750177 -0.66080238]\n", + " [ 0.2489379 -0.70540344 -0.66365346]\n", + " [ 0.22082826 -0.71260444 -0.66590524]\n", + " [ 0.19297257 -0.71910224 -0.66757288]\n", + " [ 0.16549121 -0.72490123 -0.66867844]\n", + " [ 0.18667439 -0.84011794 -0.50926861]\n", + " [ 0.18384152 -0.82629093 -0.53239609]\n", + " [ 0.18094912 -0.81152498 -0.55559393]\n", + " [ 0.17799177 -0.79584787 -0.57874441]\n", + " [ 0.17496588 -0.77929698 -0.60173346]\n", + " [ 0.17187102 -0.76191821 -0.62445255]\n", + " [ 0.16871046 -0.7437656 -0.64679944]\n", + " [ 0.16549121 -0.72490123 -0.66867844]\n", + " [ 0.37588097 -0.78376121 -0.49440051]\n", + " [ 0.37430483 -0.76523637 -0.52374535]\n", + " [ 0.3722296 -0.74536147 -0.55306546]\n", + " [ 0.36964106 -0.72419974 -0.58215138]\n", + " [ 0.36653396 -0.70183266 -0.61080584]\n", + " [ 0.36291279 -0.67836409 -0.63883994]\n", + " [ 0.36465581 -0.79417052 -0.48612687]\n", + " [ 0.33135585 -0.80532328 -0.49158694]\n", + " [ 0.29784934 -0.81532012 -0.49652681]\n", + " [ 0.26434465 -0.82412379 -0.50094099]\n", + " [ 0.23105678 -0.83171489 -0.50483969]\n", + " [ 0.19820511 -0.83809274 -0.50824727]\n", + " [ 0.34944865 -0.67420271 -0.65064302]\n", + " [ 0.31501669 -0.68591646 -0.65595967]\n", + " [ 0.28038604 -0.6966343 -0.6603668 ]\n", + " [ 0.2457694 -0.70631793 -0.66386173]\n", + " [ 0.21137883 -0.71494845 -0.66645907]\n", + " [ 0.17743036 -0.72252412 -0.66818962]\n", + " [ 0.18553676 -0.83419095 -0.519328 ]\n", + " [ 0.18202644 -0.81660963 -0.54773633]\n", + " [ 0.17842102 -0.79764439 -0.57613312]\n", + " [ 0.17471302 -0.77736017 -0.60430665]\n", + " [ 0.1709017 -0.75584143 -0.63205723]\n", + " [ 0.16699465 -0.73319098 -0.65919934]\n", + " [ 0.37632211 -0.78996786 -0.48407898]\n", + " [ 0.37632211 -0.78996786 -0.48407898]\n", + " [ 0.1655955 -0.72494823 -0.66860167]\n", + " [ 0.1655955 -0.72494823 -0.66860167]\n", + " [ 0.36416882 -0.78798098 -0.49645447]\n", + " [ 0.33073688 -0.7991851 -0.50191264]\n", + " [ 0.29709572 -0.80923754 -0.50682219]\n", + " [ 0.26345405 -0.81810116 -0.51117753]\n", + " [ 0.23002724 -0.82575642 -0.51498913]\n", + " [ 0.19703589 -0.83220193 -0.51828256]\n", + " [ 0.36247751 -0.76949952 -0.52581417]\n", + " [ 0.32871494 -0.78083704 -0.53126265]\n", + " [ 0.29473814 -0.79103848 -0.5360854 ]\n", + " [ 0.26075664 -0.80006728 -0.54027615]\n", + " [ 0.22698588 -0.80790443 -0.54384542]\n", + " [ 0.19364775 -0.81454761 -0.54682057]\n", + " [ 0.36030898 -0.74966046 -0.55514559]\n", + " [ 0.32628003 -0.76111382 -0.56057747]\n", + " [ 0.29203569 -0.77145211 -0.56531124]\n", + " [ 0.2577864 -0.78063943 -0.5693402 ]\n", + " [ 0.22374684 -0.78865774 -0.57267471]\n", + " [ 0.19013806 -0.79550506 -0.5753427 ]\n", + " [ 0.35764949 -0.72852692 -0.58423914]\n", + " [ 0.32341966 -0.74007885 -0.58964652]\n", + " [ 0.28897669 -0.75054291 -0.59428765]\n", + " [ 0.25453204 -0.75988332 -0.59815615]\n", + " [ 0.22029942 -0.76808278 -0.60126285]\n", + " [ 0.18649806 -0.77513995 -0.6036361 ]\n", + " [ 0.35449459 -0.70618014 -0.61289738]\n", + " [ 0.3201315 -0.71781322 -0.61827179]\n", + " [ 0.28556018 -0.72839259 -0.62281587]\n", + " [ 0.25099296 -0.73788185 -0.62652447]\n", + " [ 0.21664268 -0.74626362 -0.62940969]\n", + " [ 0.18272672 -0.75353686 -0.63150071]\n", + " [ 0.35084961 -0.68272367 -0.6409313 ]\n", + " [ 0.31642309 -0.69441973 -0.64626439]\n", + " [ 0.28179513 -0.70510355 -0.65070768]\n", + " [ 0.24717846 -0.71473739 -0.6542578 ]\n", + " [ 0.21278529 -0.72330291 -0.6569287 ]\n", + " [ 0.17883182 -0.73079863 -0.65875074]]\n", + "DEBUG:root:radec2pix: curVec Shape: (96, 3)\n", + "DEBUG:root:mm_to_pix: fitpx: [[0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]]\n", + "DEBUG:root:mm_to_pix: fitpx.shape: (96, 2)\n", + "DEBUG:root:make_az_asym: xyp: [[ 0.26283402 -31.55708986]\n", + " [ 0.26401791 -27.17066146]\n", + " [ 0.2652018 -22.78423305]\n", + " [ 0.26638569 -18.39780463]\n", + " [ 0.26756957 -14.01137623]\n", + " [ 0.26875346 -9.62494781]\n", + " [ 0.26993735 -5.2385194 ]\n", + " [ 0.27112123 -0.85209099]\n", + " [ 0.26283402 -31.55708986]\n", + " [ 4.64926244 -31.55827376]\n", + " [ 9.03569085 -31.55945764]\n", + " [ 13.42211926 -31.56064153]\n", + " [ 17.80854767 -31.56182542]\n", + " [ 22.19497608 -31.56300931]\n", + " [ 26.5814045 -31.56419319]\n", + " [ 30.96783291 -31.56537708]\n", + " [ 0.27112123 -0.85209099]\n", + " [ 4.65754965 -0.85327487]\n", + " [ 9.04397805 -0.85445876]\n", + " [ 13.43040647 -0.85564265]\n", + " [ 17.81683488 -0.85682653]\n", + " [ 22.20326329 -0.85801042]\n", + " [ 26.5896917 -0.85919431]\n", + " [ 30.97612012 -0.8603782 ]\n", + " [ 30.96783291 -31.56537708]\n", + " [ 30.9690168 -27.17894867]\n", + " [ 30.97020068 -22.79252025]\n", + " [ 30.97138456 -18.40609184]\n", + " [ 30.97256845 -14.01966343]\n", + " [ 30.97375234 -9.63323502]\n", + " [ 30.97493622 -5.24680661]\n", + " [ 30.97612012 -0.8603782 ]\n", + " [ 0.2783502 -29.64459399]\n", + " [ 0.27980117 -24.26859418]\n", + " [ 0.28125214 -18.89259438]\n", + " [ 0.28270311 -13.51659457]\n", + " [ 0.28415408 -8.14059477]\n", + " [ 0.28560505 -2.76459497]\n", + " [ 2.175338 -31.54260605]\n", + " [ 7.55133781 -31.54405702]\n", + " [ 12.92733761 -31.54550799]\n", + " [ 18.30333742 -31.54695896]\n", + " [ 23.67933722 -31.54840993]\n", + " [ 29.05533702 -31.5498609 ]\n", + " [ 2.18361712 -0.86760716]\n", + " [ 7.55961692 -0.86905814]\n", + " [ 12.93561673 -0.87050911]\n", + " [ 18.31161653 -0.87196007]\n", + " [ 23.68761633 -0.87341105]\n", + " [ 29.06361614 -0.87486202]\n", + " [ 30.95334909 -29.6528731 ]\n", + " [ 30.95480005 -24.27687329]\n", + " [ 30.95625103 -18.90087349]\n", + " [ 30.95770199 -13.52487368]\n", + " [ 30.95915297 -8.14887388]\n", + " [ 30.96060394 -2.77287408]\n", + " [ 0.27783807 -31.54209392]\n", + " [ 0.27783807 -31.54209392]\n", + " [ 30.96111607 -0.87537415]\n", + " [ 30.96111607 -0.87537415]\n", + " [ 2.17585013 -29.64510611]\n", + " [ 7.55184994 -29.64655709]\n", + " [ 12.92784974 -29.64800806]\n", + " [ 18.30384955 -29.64945903]\n", + " [ 23.67984935 -29.65091 ]\n", + " [ 29.05584916 -29.65236097]\n", + " [ 2.1773011 -24.26910631]\n", + " [ 7.55330091 -24.27055728]\n", + " [ 12.92930071 -24.27200825]\n", + " [ 18.30530052 -24.27345922]\n", + " [ 23.68130032 -24.27491019]\n", + " [ 29.05730013 -24.27636116]\n", + " [ 2.17875207 -18.89310651]\n", + " [ 7.55475188 -18.89455748]\n", + " [ 12.93075168 -18.89600845]\n", + " [ 18.30675149 -18.89745942]\n", + " [ 23.68275129 -18.89891039]\n", + " [ 29.0587511 -18.90036136]\n", + " [ 2.18020304 -13.51710671]\n", + " [ 7.55620285 -13.51855767]\n", + " [ 12.93220265 -13.52000864]\n", + " [ 18.30820245 -13.52145961]\n", + " [ 23.68420226 -13.52291058]\n", + " [ 29.06020207 -13.52436156]\n", + " [ 2.18165401 -8.1411069 ]\n", + " [ 7.55765382 -8.14255787]\n", + " [ 12.93365363 -8.14400884]\n", + " [ 18.30965343 -8.14545981]\n", + " [ 23.68565323 -8.14691078]\n", + " [ 29.06165303 -8.14836175]\n", + " [ 2.18310498 -2.76510709]\n", + " [ 7.55910479 -2.76655806]\n", + " [ 12.93510459 -2.76800904]\n", + " [ 18.31110439 -2.76946001]\n", + " [ 23.68710421 -2.77091098]\n", + " [ 29.063104 -2.77236195]]\n", + "DEBUG:root:make_az_asym: xyp: shape: (96, 2)\n", + "DEBUG:root:radec2pix: camVec: [[-0.00114705 -0.00115629 -0.0011641 -0.00117048 -0.00117539 -0.00117881\n", + " -0.00118068 -0.00118097 -0.00114705 -0.03018244 -0.05910007 -0.08778716\n", + " -0.11613176 -0.14402308 -0.17135219 -0.19801388 -0.00118097 -0.03121228\n", + " -0.06111791 -0.09077999 -0.12008538 -0.14892541 -0.17719395 -0.20478471\n", + " -0.19801388 -0.19975823 -0.20124936 -0.20248221 -0.20345393 -0.20416257\n", + " -0.20460656 -0.20478471 -0.00125101 -0.00126235 -0.00127136 -0.00127799\n", + " -0.00128216 -0.00128379 -0.01381426 -0.04933618 -0.08456905 -0.11930642\n", + " -0.15334441 -0.18648385 -0.01428247 -0.05101935 -0.08744986 -0.12336368\n", + " -0.15856056 -0.19284509 -0.1987148 -0.20068229 -0.20226422 -0.20345456\n", + " -0.20424964 -0.20464672 -0.00124645 -0.00124645 -0.20469148 -0.20469148\n", + " -0.01386808 -0.04952932 -0.08490071 -0.11977552 -0.15394951 -0.18722234\n", + " -0.01400325 -0.05001432 -0.08573269 -0.12095098 -0.15546507 -0.18907339\n", + " -0.01411268 -0.05040698 -0.08640482 -0.12189811 -0.15668376 -0.19056116\n", + " -0.01419584 -0.05070556 -0.08691471 -0.12261435 -0.15760261 -0.19168088\n", + " -0.01425179 -0.05090701 -0.08725814 -0.12309542 -0.15821798 -0.19242913\n", + " -0.01427955 -0.05100809 -0.08743051 -0.12333654 -0.15852587 -0.19280295]\n", + " [ 0.20838541 0.18089194 0.15270652 0.12393558 0.09468513 0.06506336\n", + " 0.03518275 0.0051606 0.20838541 0.20823844 0.20782077 0.20713345\n", + " 0.20617803 0.20495645 0.20347155 0.2017284 0.0051606 0.00515607\n", + " 0.00514464 0.00512646 0.00510175 0.0050707 0.00503345 0.00499006\n", + " 0.2017284 0.17512925 0.14784829 0.11999042 0.09166442 0.06298098\n", + " 0.03405194 0.00499006 0.19649007 0.1623152 0.12720686 0.09136033\n", + " 0.05497503 0.01826009 0.20826196 0.20789982 0.20713224 0.20596186\n", + " 0.20439232 0.20242966 0.00526224 0.00525184 0.00523103 0.00520016\n", + " 0.00515961 0.0051096 0.19022738 0.157155 0.12316211 0.08844755\n", + " 0.05321501 0.01767079 0.20829266 0.20829266 0.0050897 0.0050897\n", + " 0.19646111 0.19611969 0.19539637 0.19429398 0.1928159 0.19096695\n", + " 0.16229116 0.16200846 0.16141067 0.16050163 0.15928501 0.15776388\n", + " 0.1271878 0.12696445 0.12649338 0.12577923 0.12482642 0.12363768\n", + " 0.0913464 0.09118412 0.09084281 0.0903271 0.0896414 0.08878838\n", + " 0.05496643 0.05486748 0.05466012 0.05434775 0.0539337 0.05341999\n", + " 0.01825699 0.0182233 0.01815347 0.01804874 0.01791034 0.01773905]\n", + " [ 0.97804612 0.9835023 0.9882709 0.99228958 0.99550658 0.99788044\n", + " 0.9993802 0.99998599 0.97804612 0.97761228 0.9763799 0.97436602\n", + " 0.9715987 0.96811684 0.96396979 0.95921643 0.99998599 0.99949948\n", + " 0.99811729 0.99585778 0.99275046 0.98883543 0.98416308 0.97879432\n", + " 0.95921643 0.96406763 0.96831791 0.97190702 0.97478415 0.97690892\n", + " 0.97825182 0.97879432 0.98050502 0.98673815 0.99187539 0.99581708\n", + " 0.99848691 0.99983245 0.97797552 0.97690512 0.97465087 0.97125985\n", + " 0.96680364 0.96137714 0.99988415 0.99868386 0.99615519 0.9923479\n", + " 0.98733577 0.98121591 0.96141873 0.96696894 0.9715556 0.97508116\n", + " 0.97747135 0.97867638 0.97806575 0.97806575 0.97881331 0.97881331\n", + " 0.98041354 0.9793283 0.97704254 0.97360345 0.96908285 0.96357637\n", + " 0.98664355 0.98552109 0.9831564 0.9795969 0.97491482 0.9692068\n", + " 0.99177825 0.99062564 0.98819716 0.98454072 0.97972882 0.97385839\n", + " 0.99571799 0.99454231 0.99206523 0.98833534 0.98342556 0.97743289\n", + " 0.99838649 0.99719508 0.99468502 0.99090557 0.98593013 0.97985577\n", + " 0.99973135 0.99853197 0.9960052 0.99220076 0.98719237 0.98107714]]\n", + "DEBUG:root:radec2pix: xyfp: [[ 0.26283402 -31.55708986]\n", + " [ 0.26401791 -27.17066146]\n", + " [ 0.2652018 -22.78423305]\n", + " [ 0.26638569 -18.39780463]\n", + " [ 0.26756957 -14.01137623]\n", + " [ 0.26875346 -9.62494781]\n", + " [ 0.26993735 -5.2385194 ]\n", + " [ 0.27112123 -0.85209099]\n", + " [ 0.26283402 -31.55708986]\n", + " [ 4.64926244 -31.55827376]\n", + " [ 9.03569085 -31.55945764]\n", + " [ 13.42211926 -31.56064153]\n", + " [ 17.80854767 -31.56182542]\n", + " [ 22.19497608 -31.56300931]\n", + " [ 26.5814045 -31.56419319]\n", + " [ 30.96783291 -31.56537708]\n", + " [ 0.27112123 -0.85209099]\n", + " [ 4.65754965 -0.85327487]\n", + " [ 9.04397805 -0.85445876]\n", + " [ 13.43040647 -0.85564265]\n", + " [ 17.81683488 -0.85682653]\n", + " [ 22.20326329 -0.85801042]\n", + " [ 26.5896917 -0.85919431]\n", + " [ 30.97612012 -0.8603782 ]\n", + " [ 30.96783291 -31.56537708]\n", + " [ 30.9690168 -27.17894867]\n", + " [ 30.97020068 -22.79252025]\n", + " [ 30.97138456 -18.40609184]\n", + " [ 30.97256845 -14.01966343]\n", + " [ 30.97375234 -9.63323502]\n", + " [ 30.97493622 -5.24680661]\n", + " [ 30.97612012 -0.8603782 ]\n", + " [ 0.2783502 -29.64459399]\n", + " [ 0.27980117 -24.26859418]\n", + " [ 0.28125214 -18.89259438]\n", + " [ 0.28270311 -13.51659457]\n", + " [ 0.28415408 -8.14059477]\n", + " [ 0.28560505 -2.76459497]\n", + " [ 2.175338 -31.54260605]\n", + " [ 7.55133781 -31.54405702]\n", + " [ 12.92733761 -31.54550799]\n", + " [ 18.30333742 -31.54695896]\n", + " [ 23.67933722 -31.54840993]\n", + " [ 29.05533702 -31.5498609 ]\n", + " [ 2.18361712 -0.86760716]\n", + " [ 7.55961692 -0.86905814]\n", + " [ 12.93561673 -0.87050911]\n", + " [ 18.31161653 -0.87196007]\n", + " [ 23.68761633 -0.87341105]\n", + " [ 29.06361614 -0.87486202]\n", + " [ 30.95334909 -29.6528731 ]\n", + " [ 30.95480005 -24.27687329]\n", + " [ 30.95625103 -18.90087349]\n", + " [ 30.95770199 -13.52487368]\n", + " [ 30.95915297 -8.14887388]\n", + " [ 30.96060394 -2.77287408]\n", + " [ 0.27783807 -31.54209392]\n", + " [ 0.27783807 -31.54209392]\n", + " [ 30.96111607 -0.87537415]\n", + " [ 30.96111607 -0.87537415]\n", + " [ 2.17585013 -29.64510611]\n", + " [ 7.55184994 -29.64655709]\n", + " [ 12.92784974 -29.64800806]\n", + " [ 18.30384955 -29.64945903]\n", + " [ 23.67984935 -29.65091 ]\n", + " [ 29.05584916 -29.65236097]\n", + " [ 2.1773011 -24.26910631]\n", + " [ 7.55330091 -24.27055728]\n", + " [ 12.92930071 -24.27200825]\n", + " [ 18.30530052 -24.27345922]\n", + " [ 23.68130032 -24.27491019]\n", + " [ 29.05730013 -24.27636116]\n", + " [ 2.17875207 -18.89310651]\n", + " [ 7.55475188 -18.89455748]\n", + " [ 12.93075168 -18.89600845]\n", + " [ 18.30675149 -18.89745942]\n", + " [ 23.68275129 -18.89891039]\n", + " [ 29.0587511 -18.90036136]\n", + " [ 2.18020304 -13.51710671]\n", + " [ 7.55620285 -13.51855767]\n", + " [ 12.93220265 -13.52000864]\n", + " [ 18.30820245 -13.52145961]\n", + " [ 23.68420226 -13.52291058]\n", + " [ 29.06020207 -13.52436156]\n", + " [ 2.18165401 -8.1411069 ]\n", + " [ 7.55765382 -8.14255787]\n", + " [ 12.93365363 -8.14400884]\n", + " [ 18.30965343 -8.14545981]\n", + " [ 23.68565323 -8.14691078]\n", + " [ 29.06165303 -8.14836175]\n", + " [ 2.18310498 -2.76510709]\n", + " [ 7.55910479 -2.76655806]\n", + " [ 12.93510459 -2.76800904]\n", + " [ 18.31110439 -2.76946001]\n", + " [ 23.68710421 -2.77091098]\n", + " [ 29.063104 -2.77236195]]\n", + "DEBUG:root:radec2pix: camVec Shape: (3, 96)\n", + "DEBUG:root:radec2pix: xyfp Shape: (96, 2)\n", + "DEBUG:root:radec2pix: xyfp: [[-32.29046994 -31.71666141]\n", + " [-32.28860507 -27.33023323]\n", + " [-32.2867402 -22.94380505]\n", + " [-32.28487534 -18.55737688]\n", + " [-32.28301047 -14.1709487 ]\n", + " [-32.2811456 -9.78452053]\n", + " [-32.27928073 -5.39809235]\n", + " [-32.27741587 -1.01166418]\n", + " [-32.29046994 -31.71666141]\n", + " [-27.90404176 -31.71852627]\n", + " [-23.51761359 -31.72039114]\n", + " [-19.13118541 -31.722256 ]\n", + " [-14.74475724 -31.72412087]\n", + " [-10.35832906 -31.72598574]\n", + " [ -5.97190089 -31.72785061]\n", + " [ -1.58547272 -31.72971547]\n", + " [-32.27741587 -1.01166418]\n", + " [-27.8909877 -1.01352905]\n", + " [-23.50455952 -1.01539391]\n", + " [-19.11813134 -1.01725878]\n", + " [-14.73170317 -1.01912365]\n", + " [-10.345275 -1.02098851]\n", + " [ -5.95884682 -1.02285338]\n", + " [ -1.57241864 -1.02471825]\n", + " [ -1.58547272 -31.72971547]\n", + " [ -1.58360785 -27.3432873 ]\n", + " [ -1.58174298 -22.95685912]\n", + " [ -1.57987811 -18.57043094]\n", + " [ -1.57801325 -14.18400278]\n", + " [ -1.57614838 -9.7975746 ]\n", + " [ -1.57428351 -5.41114642]\n", + " [ -1.57241864 -1.02471825]\n", + " [-32.27465685 -29.80416795]\n", + " [-32.27237127 -24.42816844]\n", + " [-32.2700857 -19.05216893]\n", + " [-32.26780012 -13.67616941]\n", + " [-32.26551454 -8.3001699 ]\n", + " [-32.26322896 -2.92417038]\n", + " [-30.37796373 -31.70247449]\n", + " [-25.00196422 -31.70476008]\n", + " [-19.62596471 -31.70704565]\n", + " [-14.24996519 -31.70933123]\n", + " [ -8.87396568 -31.71161681]\n", + " [ -3.49796617 -31.71390239]\n", + " [-30.36492242 -1.02747727]\n", + " [-24.98892291 -1.02976285]\n", + " [-19.61292339 -1.03204842]\n", + " [-14.23692388 -1.034334 ]\n", + " [ -8.86092437 -1.03661958]\n", + " [ -3.48492485 -1.03890516]\n", + " [ -1.59965962 -29.81720927]\n", + " [ -1.59737405 -24.44120975]\n", + " [ -1.59508847 -19.06521024]\n", + " [ -1.59280289 -13.68921073]\n", + " [ -1.59051731 -8.31321121]\n", + " [ -1.58823174 -2.9372117 ]\n", + " [-32.27546357 -31.70166778]\n", + " [-32.27546357 -31.70166778]\n", + " [ -1.58742502 -1.03971187]\n", + " [ -1.58742502 -1.03971187]\n", + " [-30.37715702 -29.80497466]\n", + " [-25.00115751 -29.80726024]\n", + " [-19.625158 -29.80954582]\n", + " [-14.24915848 -29.8118314 ]\n", + " [ -8.87315897 -29.81411698]\n", + " [ -3.49715945 -29.81640256]\n", + " [-30.37487145 -24.42897515]\n", + " [-24.99887193 -24.43126073]\n", + " [-19.62287241 -24.43354631]\n", + " [-14.2468729 -24.43583188]\n", + " [ -8.87087339 -24.43811746]\n", + " [ -3.49487388 -24.44040305]\n", + " [-30.37258587 -19.05297564]\n", + " [-24.99658635 -19.05526122]\n", + " [-19.62058684 -19.05754679]\n", + " [-14.24458732 -19.05983237]\n", + " [ -8.86858781 -19.06211795]\n", + " [ -3.4925883 -19.06440353]\n", + " [-30.37030029 -13.67697612]\n", + " [-24.99430077 -13.6792617 ]\n", + " [-19.61830126 -13.68154728]\n", + " [-14.24230175 -13.68383286]\n", + " [ -8.86630223 -13.68611844]\n", + " [ -3.49030272 -13.68840401]\n", + " [-30.36801471 -8.30097661]\n", + " [-24.9920152 -8.30326219]\n", + " [-19.61601568 -8.30554776]\n", + " [-14.24001617 -8.30783335]\n", + " [ -8.86401666 -8.31011893]\n", + " [ -3.48801714 -8.3124045 ]\n", + " [-30.36572914 -2.9249771 ]\n", + " [-24.98972962 -2.92726267]\n", + " [-19.6137301 -2.92954825]\n", + " [-14.23773059 -2.93183383]\n", + " [ -8.86173108 -2.93411941]\n", + " [ -3.48573156 -2.93640499]]\n", + "DEBUG:root:mm_to_pix: fitpx: [[0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]]\n", + "DEBUG:root:mm_to_pix: fitpx.shape: (96, 2)\n", + "DEBUG:root:radec2pix: ccdpx: [[-4.45000003e+01 -5.00000268e-01]\n", + " [-4.44999998e+01 2.91928572e+02]\n", + " [-4.44999999e+01 5.84357143e+02]\n", + " [-4.45000000e+01 8.76785714e+02]\n", + " [-4.44999998e+01 1.16921429e+03]\n", + " [-4.44999999e+01 1.46164286e+03]\n", + " [-4.44999997e+01 1.75407143e+03]\n", + " [-4.44999999e+01 2.04650000e+03]\n", + " [-4.45000003e+01 -5.00000268e-01]\n", + " [ 2.47928572e+02 -4.99999720e-01]\n", + " [ 5.40357143e+02 -5.00000140e-01]\n", + " [ 8.32785714e+02 -4.99999791e-01]\n", + " [ 1.12521429e+03 -4.99999975e-01]\n", + " [ 1.41764286e+03 -4.99999912e-01]\n", + " [ 1.71007143e+03 -4.99999978e-01]\n", + " [ 2.00250000e+03 -4.99999991e-01]\n", + " [-4.44999999e+01 2.04650000e+03]\n", + " [ 2.47928571e+02 2.04650000e+03]\n", + " [ 5.40357143e+02 2.04650000e+03]\n", + " [ 8.32785715e+02 2.04650000e+03]\n", + " [ 1.12521429e+03 2.04650000e+03]\n", + " [ 1.41764286e+03 2.04650000e+03]\n", + " [ 1.71007143e+03 2.04650000e+03]\n", + " [ 2.00250000e+03 2.04650000e+03]\n", + " [ 2.00250000e+03 -4.99999991e-01]\n", + " [ 2.00250000e+03 2.91928572e+02]\n", + " [ 2.00250000e+03 5.84357143e+02]\n", + " [ 2.00250000e+03 8.76785715e+02]\n", + " [ 2.00250000e+03 1.16921429e+03]\n", + " [ 2.00250000e+03 1.46164286e+03]\n", + " [ 2.00250000e+03 1.75407143e+03]\n", + " [ 2.00250000e+03 2.04650000e+03]\n", + " [-4.34999998e+01 1.27000000e+02]\n", + " [-4.35000000e+01 4.85400000e+02]\n", + " [-4.35000001e+01 8.43800000e+02]\n", + " [-4.35000000e+01 1.20220000e+03]\n", + " [-4.35000001e+01 1.56060000e+03]\n", + " [-4.34999999e+01 1.91900000e+03]\n", + " [ 8.30000001e+01 5.00000092e-01]\n", + " [ 4.41400000e+02 4.99999764e-01]\n", + " [ 7.99800000e+02 4.99999911e-01]\n", + " [ 1.15820000e+03 5.00000156e-01]\n", + " [ 1.51660000e+03 4.99999840e-01]\n", + " [ 1.87500000e+03 4.99999915e-01]\n", + " [ 8.29999998e+01 2.04550000e+03]\n", + " [ 4.41400000e+02 2.04550000e+03]\n", + " [ 7.99800000e+02 2.04550000e+03]\n", + " [ 1.15820000e+03 2.04550000e+03]\n", + " [ 1.51660000e+03 2.04550000e+03]\n", + " [ 1.87500000e+03 2.04550000e+03]\n", + " [ 2.00150000e+03 1.27000000e+02]\n", + " [ 2.00150000e+03 4.85400000e+02]\n", + " [ 2.00150000e+03 8.43800000e+02]\n", + " [ 2.00150000e+03 1.20220000e+03]\n", + " [ 2.00150000e+03 1.56060000e+03]\n", + " [ 2.00150000e+03 1.91900000e+03]\n", + " [-4.35000000e+01 4.99999958e-01]\n", + " [-4.35000000e+01 4.99999958e-01]\n", + " [ 2.00150000e+03 2.04550000e+03]\n", + " [ 2.00150000e+03 2.04550000e+03]\n", + " [ 8.30000002e+01 1.27000000e+02]\n", + " [ 4.41400000e+02 1.27000000e+02]\n", + " [ 7.99800000e+02 1.27000000e+02]\n", + " [ 1.15820000e+03 1.27000000e+02]\n", + " [ 1.51660000e+03 1.27000000e+02]\n", + " [ 1.87500000e+03 1.27000000e+02]\n", + " [ 8.29999999e+01 4.85400000e+02]\n", + " [ 4.41400000e+02 4.85400000e+02]\n", + " [ 7.99800000e+02 4.85400000e+02]\n", + " [ 1.15820000e+03 4.85400000e+02]\n", + " [ 1.51660000e+03 4.85400000e+02]\n", + " [ 1.87500000e+03 4.85400000e+02]\n", + " [ 8.30000001e+01 8.43800000e+02]\n", + " [ 4.41400000e+02 8.43800000e+02]\n", + " [ 7.99800000e+02 8.43800000e+02]\n", + " [ 1.15820000e+03 8.43800000e+02]\n", + " [ 1.51660000e+03 8.43800000e+02]\n", + " [ 1.87500000e+03 8.43800000e+02]\n", + " [ 8.29999999e+01 1.20220000e+03]\n", + " [ 4.41400000e+02 1.20220000e+03]\n", + " [ 7.99800000e+02 1.20220000e+03]\n", + " [ 1.15820000e+03 1.20220000e+03]\n", + " [ 1.51660000e+03 1.20220000e+03]\n", + " [ 1.87500000e+03 1.20220000e+03]\n", + " [ 8.29999999e+01 1.56060000e+03]\n", + " [ 4.41400000e+02 1.56060000e+03]\n", + " [ 7.99800000e+02 1.56060000e+03]\n", + " [ 1.15820000e+03 1.56060000e+03]\n", + " [ 1.51660000e+03 1.56060000e+03]\n", + " [ 1.87500000e+03 1.56060000e+03]\n", + " [ 8.29999998e+01 1.91900000e+03]\n", + " [ 4.41400000e+02 1.91900000e+03]\n", + " [ 7.99800000e+02 1.91900000e+03]\n", + " [ 1.15820000e+03 1.91900000e+03]\n", + " [ 1.51660000e+03 1.91900000e+03]\n", + " [ 1.87500000e+03 1.91900000e+03]]\n", + "DEBUG:root:cartToSphere: vec: [[-0.00114705 0.20838541 0.97804612]\n", + " [-0.00115629 0.18089194 0.9835023 ]\n", + " [-0.0011641 0.15270652 0.9882709 ]\n", + " [-0.00117048 0.12393558 0.99228958]\n", + " [-0.00117539 0.09468513 0.99550658]\n", + " [-0.00117881 0.06506336 0.99788044]\n", + " [-0.00118068 0.03518275 0.9993802 ]\n", + " [-0.00118097 0.0051606 0.99998599]\n", + " [-0.00114705 0.20838541 0.97804612]\n", + " [-0.03018244 0.20823844 0.97761228]\n", + " [-0.05910007 0.20782077 0.9763799 ]\n", + " [-0.08778716 0.20713345 0.97436602]\n", + " [-0.11613176 0.20617803 0.9715987 ]\n", + " [-0.14402308 0.20495645 0.96811684]\n", + " [-0.17135219 0.20347155 0.96396979]\n", + " [-0.19801388 0.2017284 0.95921643]\n", + " [-0.00118097 0.0051606 0.99998599]\n", + " [-0.03121228 0.00515607 0.99949948]\n", + " [-0.06111791 0.00514464 0.99811729]\n", + " [-0.09077999 0.00512646 0.99585778]\n", + " [-0.12008538 0.00510175 0.99275046]\n", + " [-0.14892541 0.0050707 0.98883543]\n", + " [-0.17719395 0.00503345 0.98416308]\n", + " [-0.20478471 0.00499006 0.97879432]\n", + " [-0.19801388 0.2017284 0.95921643]\n", + " [-0.19975823 0.17512925 0.96406763]\n", + " [-0.20124936 0.14784829 0.96831791]\n", + " [-0.20248221 0.11999042 0.97190702]\n", + " [-0.20345393 0.09166442 0.97478415]\n", + " [-0.20416257 0.06298098 0.97690892]\n", + " [-0.20460656 0.03405194 0.97825182]\n", + " [-0.20478471 0.00499006 0.97879432]\n", + " [-0.00125101 0.19649007 0.98050502]\n", + " [-0.00126235 0.1623152 0.98673815]\n", + " [-0.00127136 0.12720686 0.99187539]\n", + " [-0.00127799 0.09136033 0.99581708]\n", + " [-0.00128216 0.05497503 0.99848691]\n", + " [-0.00128379 0.01826009 0.99983245]\n", + " [-0.01381426 0.20826196 0.97797552]\n", + " [-0.04933618 0.20789982 0.97690512]\n", + " [-0.08456905 0.20713224 0.97465087]\n", + " [-0.11930642 0.20596186 0.97125985]\n", + " [-0.15334441 0.20439232 0.96680364]\n", + " [-0.18648385 0.20242966 0.96137714]\n", + " [-0.01428247 0.00526224 0.99988415]\n", + " [-0.05101935 0.00525184 0.99868386]\n", + " [-0.08744986 0.00523103 0.99615519]\n", + " [-0.12336368 0.00520016 0.9923479 ]\n", + " [-0.15856056 0.00515961 0.98733577]\n", + " [-0.19284509 0.0051096 0.98121591]\n", + " [-0.1987148 0.19022738 0.96141873]\n", + " [-0.20068229 0.157155 0.96696894]\n", + " [-0.20226422 0.12316211 0.9715556 ]\n", + " [-0.20345456 0.08844755 0.97508116]\n", + " [-0.20424964 0.05321501 0.97747135]\n", + " [-0.20464672 0.01767079 0.97867638]\n", + " [-0.00124645 0.20829266 0.97806575]\n", + " [-0.00124645 0.20829266 0.97806575]\n", + " [-0.20469148 0.0050897 0.97881331]\n", + " [-0.20469148 0.0050897 0.97881331]\n", + " [-0.01386808 0.19646111 0.98041354]\n", + " [-0.04952932 0.19611969 0.9793283 ]\n", + " [-0.08490071 0.19539637 0.97704254]\n", + " [-0.11977552 0.19429398 0.97360345]\n", + " [-0.15394951 0.1928159 0.96908285]\n", + " [-0.18722234 0.19096695 0.96357637]\n", + " [-0.01400325 0.16229116 0.98664355]\n", + " [-0.05001432 0.16200846 0.98552109]\n", + " [-0.08573269 0.16141067 0.9831564 ]\n", + " [-0.12095098 0.16050163 0.9795969 ]\n", + " [-0.15546507 0.15928501 0.97491482]\n", + " [-0.18907339 0.15776388 0.9692068 ]\n", + " [-0.01411268 0.1271878 0.99177825]\n", + " [-0.05040698 0.12696445 0.99062564]\n", + " [-0.08640482 0.12649338 0.98819716]\n", + " [-0.12189811 0.12577923 0.98454072]\n", + " [-0.15668376 0.12482642 0.97972882]\n", + " [-0.19056116 0.12363768 0.97385839]\n", + " [-0.01419584 0.0913464 0.99571799]\n", + " [-0.05070556 0.09118412 0.99454231]\n", + " [-0.08691471 0.09084281 0.99206523]\n", + " [-0.12261435 0.0903271 0.98833534]\n", + " [-0.15760261 0.0896414 0.98342556]\n", + " [-0.19168088 0.08878838 0.97743289]\n", + " [-0.01425179 0.05496643 0.99838649]\n", + " [-0.05090701 0.05486748 0.99719508]\n", + " [-0.08725814 0.05466012 0.99468502]\n", + " [-0.12309542 0.05434775 0.99090557]\n", + " [-0.15821798 0.0539337 0.98593013]\n", + " [-0.19242913 0.05341999 0.97985577]\n", + " [-0.01427955 0.01825699 0.99973135]\n", + " [-0.05100809 0.0182233 0.99853197]\n", + " [-0.08743051 0.01815347 0.9960052 ]\n", + " [-0.12333654 0.01804874 0.99220076]\n", + " [-0.15852587 0.01791034 0.98719237]\n", + " [-0.19280295 0.01773905 0.98107714]]\n", + "DEBUG:root:radec2pix: lng: [ 90.31538026 90.36623882 90.43676438 90.5410988 90.71121584\n", + " 91.03796151 91.92203204 102.88976492 90.31538026 98.24711833\n", + " 105.87469321 112.96816895 119.3908045 125.09574844 130.10218059\n", + " 134.46760759 102.88976492 170.61981741 175.18843619 176.76786642\n", + " 177.56728748 178.0499121 178.37286738 178.60412954 134.46760759\n", + " 138.7587586 143.69705248 149.3491301 155.74646239 162.85581906\n", + " 170.55107093 178.60412954 90.36478543 90.44558973 90.57261901\n", + " 90.80142559 91.33604138 94.02159324 93.79493665 103.34977578\n", + " 112.20947139 120.08219547 126.87889854 132.65213472 159.7741798\n", + " 174.12277646 176.57679256 177.5862344 178.13623505 178.48225333\n", + " 136.25009833 141.93538112 148.66205842 156.50402904 165.39685811\n", + " 175.06487905 90.34286209 90.34286209 178.57562014 178.57562014\n", + " 94.0377805 104.17347615 113.48518905 121.65239591 128.60482826\n", + " 134.43270854 94.93153704 107.15620301 117.97484261 127.00098521\n", + " 134.30466928 140.15819331 96.33160595 111.65389266 124.33611449\n", + " 134.10224284 141.45645803 147.02415603 98.83348775 119.07751066\n", + " 133.73407847 143.6218029 150.36959526 155.14598444 104.53566541\n", + " 132.85570308 147.93620706 156.17810512 161.17666862 164.48488524\n", + " 128.03043433 160.3400738 168.27016728 171.67458296 173.55402386\n", + " 174.74323713]\n", + "DEBUG:root:radec2pix: xyfp: [[ 0.26283402 -31.55708986]\n", + " [ 0.26401791 -27.17066146]\n", + " [ 0.2652018 -22.78423305]\n", + " [ 0.26638569 -18.39780463]\n", + " [ 0.26756957 -14.01137623]\n", + " [ 0.26875346 -9.62494781]\n", + " [ 0.26993735 -5.2385194 ]\n", + " [ 0.27112123 -0.85209099]\n", + " [ 0.26283402 -31.55708986]\n", + " [ 4.64926244 -31.55827376]\n", + " [ 9.03569085 -31.55945764]\n", + " [ 13.42211926 -31.56064153]\n", + " [ 17.80854767 -31.56182542]\n", + " [ 22.19497608 -31.56300931]\n", + " [ 26.5814045 -31.56419319]\n", + " [ 30.96783291 -31.56537708]\n", + " [ 0.27112123 -0.85209099]\n", + " [ 4.65754965 -0.85327487]\n", + " [ 9.04397805 -0.85445876]\n", + " [ 13.43040647 -0.85564265]\n", + " [ 17.81683488 -0.85682653]\n", + " [ 22.20326329 -0.85801042]\n", + " [ 26.5896917 -0.85919431]\n", + " [ 30.97612012 -0.8603782 ]\n", + " [ 30.96783291 -31.56537708]\n", + " [ 30.9690168 -27.17894867]\n", + " [ 30.97020068 -22.79252025]\n", + " [ 30.97138456 -18.40609184]\n", + " [ 30.97256845 -14.01966343]\n", + " [ 30.97375234 -9.63323502]\n", + " [ 30.97493622 -5.24680661]\n", + " [ 30.97612012 -0.8603782 ]\n", + " [ 0.2783502 -29.64459399]\n", + " [ 0.27980117 -24.26859418]\n", + " [ 0.28125214 -18.89259438]\n", + " [ 0.28270311 -13.51659457]\n", + " [ 0.28415408 -8.14059477]\n", + " [ 0.28560505 -2.76459497]\n", + " [ 2.175338 -31.54260605]\n", + " [ 7.55133781 -31.54405702]\n", + " [ 12.92733761 -31.54550799]\n", + " [ 18.30333742 -31.54695896]\n", + " [ 23.67933722 -31.54840993]\n", + " [ 29.05533702 -31.5498609 ]\n", + " [ 2.18361712 -0.86760716]\n", + " [ 7.55961692 -0.86905814]\n", + " [ 12.93561673 -0.87050911]\n", + " [ 18.31161653 -0.87196007]\n", + " [ 23.68761633 -0.87341105]\n", + " [ 29.06361614 -0.87486202]\n", + " [ 30.95334909 -29.6528731 ]\n", + " [ 30.95480005 -24.27687329]\n", + " [ 30.95625103 -18.90087349]\n", + " [ 30.95770199 -13.52487368]\n", + " [ 30.95915297 -8.14887388]\n", + " [ 30.96060394 -2.77287408]\n", + " [ 0.27783807 -31.54209392]\n", + " [ 0.27783807 -31.54209392]\n", + " [ 30.96111607 -0.87537415]\n", + " [ 30.96111607 -0.87537415]\n", + " [ 2.17585013 -29.64510611]\n", + " [ 7.55184994 -29.64655709]\n", + " [ 12.92784974 -29.64800806]\n", + " [ 18.30384955 -29.64945903]\n", + " [ 23.67984935 -29.65091 ]\n", + " [ 29.05584916 -29.65236097]\n", + " [ 2.1773011 -24.26910631]\n", + " [ 7.55330091 -24.27055728]\n", + " [ 12.92930071 -24.27200825]\n", + " [ 18.30530052 -24.27345922]\n", + " [ 23.68130032 -24.27491019]\n", + " [ 29.05730013 -24.27636116]\n", + " [ 2.17875207 -18.89310651]\n", + " [ 7.55475188 -18.89455748]\n", + " [ 12.93075168 -18.89600845]\n", + " [ 18.30675149 -18.89745942]\n", + " [ 23.68275129 -18.89891039]\n", + " [ 29.0587511 -18.90036136]\n", + " [ 2.18020304 -13.51710671]\n", + " [ 7.55620285 -13.51855767]\n", + " [ 12.93220265 -13.52000864]\n", + " [ 18.30820245 -13.52145961]\n", + " [ 23.68420226 -13.52291058]\n", + " [ 29.06020207 -13.52436156]\n", + " [ 2.18165401 -8.1411069 ]\n", + " [ 7.55765382 -8.14255787]\n", + " [ 12.93365363 -8.14400884]\n", + " [ 18.30965343 -8.14545981]\n", + " [ 23.68565323 -8.14691078]\n", + " [ 29.06165303 -8.14836175]\n", + " [ 2.18310498 -2.76510709]\n", + " [ 7.55910479 -2.76655806]\n", + " [ 12.93510459 -2.76800904]\n", + " [ 18.31110439 -2.76946001]\n", + " [ 23.68710421 -2.77091098]\n", + " [ 29.063104 -2.77236195]]\n", + "DEBUG:root:radec2pix: lat: [77.97206498 79.57806769 81.21593647 82.8803899 84.56638266 86.26889583\n", + " 87.98262539 89.69667435 77.97206498 77.85336036 77.52222772 76.99897078\n", + " 76.31199967 75.49295235 74.57292056 73.58021644 89.69667435 88.18712874\n", + " 86.48361023 84.78319776 83.0967184 81.43034165 79.78948121 78.17954495\n", + " 73.58021644 74.59400834 75.53901524 76.38685312 77.10589211 77.66330027\n", + " 78.02875412 78.17954495 78.66798463 80.65841057 82.69141578 84.75761477\n", + " 86.84771627 88.95113309 77.95267103 77.66228009 77.07171569 76.23019363\n", + " 75.19557036 74.02401451 89.12786485 87.06007007 84.97409331 82.90740441\n", + " 80.87177406 78.87718093 74.03267423 75.23268127 76.30156716 77.18237665\n", + " 77.81504555 78.14660304 77.97746528 77.97746528 78.18485708 78.18485708\n", + " 78.64134167 78.32984157 77.69918411 76.80616019 75.71557851 74.48840848\n", + " 80.62507537 80.23817759 79.46907283 78.40617113 77.13948546 75.74438817\n", + " 82.64779184 82.14857946 81.18831589 79.91227353 78.44384133 76.87031089\n", + " 84.69583972 84.01119948 82.77741875 81.24014725 79.55379065 77.80461009\n", + " 86.74476583 85.70761057 84.09008812 82.26687253 80.3773841 78.48020641\n", + " 88.67187538 86.89501933 84.87693536 82.83944721 80.82012657 78.83603949]\n", + "DEBUG:root:radec2pix: fitpx: [[-5.00000272e-01 -5.00000268e-01]\n", + " [-4.99999785e-01 2.91928572e+02]\n", + " [-4.99999908e-01 5.84357143e+02]\n", + " [-4.99999976e-01 8.76785714e+02]\n", + " [-4.99999814e-01 1.16921429e+03]\n", + " [-4.99999859e-01 1.46164286e+03]\n", + " [-4.99999732e-01 1.75407143e+03]\n", + " [-4.99999866e-01 2.04650000e+03]\n", + " [-5.00000272e-01 -5.00000268e-01]\n", + " [ 2.91928572e+02 -4.99999720e-01]\n", + " [ 5.84357143e+02 -5.00000140e-01]\n", + " [ 8.76785714e+02 -4.99999791e-01]\n", + " [ 1.16921429e+03 -4.99999975e-01]\n", + " [ 1.46164286e+03 -4.99999912e-01]\n", + " [ 1.75407143e+03 -4.99999978e-01]\n", + " [ 2.04650000e+03 -4.99999991e-01]\n", + " [-4.99999866e-01 2.04650000e+03]\n", + " [ 2.91928571e+02 2.04650000e+03]\n", + " [ 5.84357143e+02 2.04650000e+03]\n", + " [ 8.76785715e+02 2.04650000e+03]\n", + " [ 1.16921429e+03 2.04650000e+03]\n", + " [ 1.46164286e+03 2.04650000e+03]\n", + " [ 1.75407143e+03 2.04650000e+03]\n", + " [ 2.04650000e+03 2.04650000e+03]\n", + " [ 2.04650000e+03 -4.99999991e-01]\n", + " [ 2.04650000e+03 2.91928572e+02]\n", + " [ 2.04650000e+03 5.84357143e+02]\n", + " [ 2.04650000e+03 8.76785715e+02]\n", + " [ 2.04650000e+03 1.16921429e+03]\n", + " [ 2.04650000e+03 1.46164286e+03]\n", + " [ 2.04650000e+03 1.75407143e+03]\n", + " [ 2.04650000e+03 2.04650000e+03]\n", + " [ 5.00000192e-01 1.27000000e+02]\n", + " [ 4.99999990e-01 4.85400000e+02]\n", + " [ 4.99999881e-01 8.43800000e+02]\n", + " [ 5.00000044e-01 1.20220000e+03]\n", + " [ 4.99999938e-01 1.56060000e+03]\n", + " [ 5.00000069e-01 1.91900000e+03]\n", + " [ 1.27000000e+02 5.00000092e-01]\n", + " [ 4.85400000e+02 4.99999764e-01]\n", + " [ 8.43800000e+02 4.99999911e-01]\n", + " [ 1.20220000e+03 5.00000156e-01]\n", + " [ 1.56060000e+03 4.99999840e-01]\n", + " [ 1.91900000e+03 4.99999915e-01]\n", + " [ 1.27000000e+02 2.04550000e+03]\n", + " [ 4.85400000e+02 2.04550000e+03]\n", + " [ 8.43800000e+02 2.04550000e+03]\n", + " [ 1.20220000e+03 2.04550000e+03]\n", + " [ 1.56060000e+03 2.04550000e+03]\n", + " [ 1.91900000e+03 2.04550000e+03]\n", + " [ 2.04550000e+03 1.27000000e+02]\n", + " [ 2.04550000e+03 4.85400000e+02]\n", + " [ 2.04550000e+03 8.43800000e+02]\n", + " [ 2.04550000e+03 1.20220000e+03]\n", + " [ 2.04550000e+03 1.56060000e+03]\n", + " [ 2.04550000e+03 1.91900000e+03]\n", + " [ 4.99999957e-01 4.99999958e-01]\n", + " [ 4.99999957e-01 4.99999958e-01]\n", + " [ 2.04550000e+03 2.04550000e+03]\n", + " [ 2.04550000e+03 2.04550000e+03]\n", + " [ 1.27000000e+02 1.27000000e+02]\n", + " [ 4.85400000e+02 1.27000000e+02]\n", + " [ 8.43800000e+02 1.27000000e+02]\n", + " [ 1.20220000e+03 1.27000000e+02]\n", + " [ 1.56060000e+03 1.27000000e+02]\n", + " [ 1.91900000e+03 1.27000000e+02]\n", + " [ 1.27000000e+02 4.85400000e+02]\n", + " [ 4.85400000e+02 4.85400000e+02]\n", + " [ 8.43800000e+02 4.85400000e+02]\n", + " [ 1.20220000e+03 4.85400000e+02]\n", + " [ 1.56060000e+03 4.85400000e+02]\n", + " [ 1.91900000e+03 4.85400000e+02]\n", + " [ 1.27000000e+02 8.43800000e+02]\n", + " [ 4.85400000e+02 8.43800000e+02]\n", + " [ 8.43800000e+02 8.43800000e+02]\n", + " [ 1.20220000e+03 8.43800000e+02]\n", + " [ 1.56060000e+03 8.43800000e+02]\n", + " [ 1.91900000e+03 8.43800000e+02]\n", + " [ 1.27000000e+02 1.20220000e+03]\n", + " [ 4.85400000e+02 1.20220000e+03]\n", + " [ 8.43800000e+02 1.20220000e+03]\n", + " [ 1.20220000e+03 1.20220000e+03]\n", + " [ 1.56060000e+03 1.20220000e+03]\n", + " [ 1.91900000e+03 1.20220000e+03]\n", + " [ 1.27000000e+02 1.56060000e+03]\n", + " [ 4.85400000e+02 1.56060000e+03]\n", + " [ 8.43800000e+02 1.56060000e+03]\n", + " [ 1.20220000e+03 1.56060000e+03]\n", + " [ 1.56060000e+03 1.56060000e+03]\n", + " [ 1.91900000e+03 1.56060000e+03]\n", + " [ 1.27000000e+02 1.91900000e+03]\n", + " [ 4.85400000e+02 1.91900000e+03]\n", + " [ 8.43800000e+02 1.91900000e+03]\n", + " [ 1.20220000e+03 1.91900000e+03]\n", + " [ 1.56060000e+03 1.91900000e+03]\n", + " [ 1.91900000e+03 1.91900000e+03]]\n", + "DEBUG:root:fitpix2pix: ccdpx: shape: (96, 2)\n", + "DEBUG:root:fitpix2pix: visCut: True\n", + "DEBUG:root:radec2pix: ccdpx: [[-4.45000000e+01 -4.99999783e-01]\n", + " [-4.45000000e+01 2.91928571e+02]\n", + " [-4.45000000e+01 5.84357143e+02]\n", + " [-4.45000000e+01 8.76785714e+02]\n", + " [-4.45000000e+01 1.16921429e+03]\n", + " [-4.45000000e+01 1.46164286e+03]\n", + " [-4.45000000e+01 1.75407143e+03]\n", + " [-4.44999999e+01 2.04650000e+03]\n", + " [-4.45000000e+01 -4.99999783e-01]\n", + " [ 2.47928571e+02 -5.00000080e-01]\n", + " [ 5.40357143e+02 -5.00000178e-01]\n", + " [ 8.32785714e+02 -4.99999867e-01]\n", + " [ 1.12521429e+03 -5.00000095e-01]\n", + " [ 1.41764286e+03 -5.00000221e-01]\n", + " [ 1.71007143e+03 -5.00000185e-01]\n", + " [ 2.00250000e+03 -5.00000018e-01]\n", + " [-4.44999999e+01 2.04650000e+03]\n", + " [ 2.47928572e+02 2.04650000e+03]\n", + " [ 5.40357143e+02 2.04650000e+03]\n", + " [ 8.32785714e+02 2.04650000e+03]\n", + " [ 1.12521429e+03 2.04650000e+03]\n", + " [ 1.41764286e+03 2.04650000e+03]\n", + " [ 1.71007143e+03 2.04650000e+03]\n", + " [ 2.00250000e+03 2.04650000e+03]\n", + " [ 2.00250000e+03 -5.00000018e-01]\n", + " [ 2.00250000e+03 2.91928571e+02]\n", + " [ 2.00250000e+03 5.84357143e+02]\n", + " [ 2.00250000e+03 8.76785714e+02]\n", + " [ 2.00250000e+03 1.16921429e+03]\n", + " [ 2.00250000e+03 1.46164286e+03]\n", + " [ 2.00250000e+03 1.75407143e+03]\n", + " [ 2.00250000e+03 2.04650000e+03]\n", + " [-4.35000000e+01 1.27000000e+02]\n", + " [-4.35000000e+01 4.85400000e+02]\n", + " [-4.35000000e+01 8.43800000e+02]\n", + " [-4.35000000e+01 1.20220000e+03]\n", + " [-4.35000000e+01 1.56060000e+03]\n", + " [-4.35000000e+01 1.91900000e+03]\n", + " [ 8.30000000e+01 4.99999873e-01]\n", + " [ 4.41400000e+02 5.00000123e-01]\n", + " [ 7.99800000e+02 5.00000108e-01]\n", + " [ 1.15820000e+03 4.99999719e-01]\n", + " [ 1.51660000e+03 4.99999964e-01]\n", + " [ 1.87500000e+03 5.00000185e-01]\n", + " [ 8.30000000e+01 2.04550000e+03]\n", + " [ 4.41400000e+02 2.04550000e+03]\n", + " [ 7.99800000e+02 2.04550000e+03]\n", + " [ 1.15820000e+03 2.04550000e+03]\n", + " [ 1.51660000e+03 2.04550000e+03]\n", + " [ 1.87500000e+03 2.04550000e+03]\n", + " [ 2.00150000e+03 1.27000000e+02]\n", + " [ 2.00150000e+03 4.85400000e+02]\n", + " [ 2.00150000e+03 8.43800000e+02]\n", + " [ 2.00150000e+03 1.20220000e+03]\n", + " [ 2.00150000e+03 1.56060000e+03]\n", + " [ 2.00150000e+03 1.91900000e+03]\n", + " [-4.35000000e+01 4.99999853e-01]\n", + " [-4.35000000e+01 4.99999853e-01]\n", + " [ 2.00150000e+03 2.04550000e+03]\n", + " [ 2.00150000e+03 2.04550000e+03]\n", + " [ 8.30000000e+01 1.27000000e+02]\n", + " [ 4.41400000e+02 1.27000000e+02]\n", + " [ 7.99800000e+02 1.27000000e+02]\n", + " [ 1.15820000e+03 1.27000000e+02]\n", + " [ 1.51660000e+03 1.27000000e+02]\n", + " [ 1.87500000e+03 1.27000000e+02]\n", + " [ 8.30000000e+01 4.85400000e+02]\n", + " [ 4.41400000e+02 4.85400000e+02]\n", + " [ 7.99800000e+02 4.85400000e+02]\n", + " [ 1.15820000e+03 4.85400000e+02]\n", + " [ 1.51660000e+03 4.85400000e+02]\n", + " [ 1.87500000e+03 4.85400000e+02]\n", + " [ 8.30000000e+01 8.43800000e+02]\n", + " [ 4.41400000e+02 8.43800000e+02]\n", + " [ 7.99800000e+02 8.43800000e+02]\n", + " [ 1.15820000e+03 8.43800000e+02]\n", + " [ 1.51660000e+03 8.43800000e+02]\n", + " [ 1.87500000e+03 8.43800000e+02]\n", + " [ 8.30000000e+01 1.20220000e+03]\n", + " [ 4.41400000e+02 1.20220000e+03]\n", + " [ 7.99800000e+02 1.20220000e+03]\n", + " [ 1.15820000e+03 1.20220000e+03]\n", + " [ 1.51660000e+03 1.20220000e+03]\n", + " [ 1.87500000e+03 1.20220000e+03]\n", + " [ 8.30000001e+01 1.56060000e+03]\n", + " [ 4.41400000e+02 1.56060000e+03]\n", + " [ 7.99800000e+02 1.56060000e+03]\n", + " [ 1.15820000e+03 1.56060000e+03]\n", + " [ 1.51660000e+03 1.56060000e+03]\n", + " [ 1.87500000e+03 1.56060000e+03]\n", + " [ 8.29999999e+01 1.91900000e+03]\n", + " [ 4.41400000e+02 1.91900000e+03]\n", + " [ 7.99800000e+02 1.91900000e+03]\n", + " [ 1.15820000e+03 1.91900000e+03]\n", + " [ 1.51660000e+03 1.91900000e+03]\n", + " [ 1.87500000e+03 1.91900000e+03]]\n", + "DEBUG:root:radec2pix: fitpx: [[ 2.13550000e+03 -4.99999783e-01]\n", + " [ 2.13550000e+03 2.91928571e+02]\n", + " [ 2.13550000e+03 5.84357143e+02]\n", + " [ 2.13550000e+03 8.76785714e+02]\n", + " [ 2.13550000e+03 1.16921429e+03]\n", + " [ 2.13550000e+03 1.46164286e+03]\n", + " [ 2.13550000e+03 1.75407143e+03]\n", + " [ 2.13550000e+03 2.04650000e+03]\n", + " [ 2.13550000e+03 -4.99999783e-01]\n", + " [ 2.42792857e+03 -5.00000080e-01]\n", + " [ 2.72035714e+03 -5.00000178e-01]\n", + " [ 3.01278571e+03 -4.99999867e-01]\n", + " [ 3.30521429e+03 -5.00000095e-01]\n", + " [ 3.59764286e+03 -5.00000221e-01]\n", + " [ 3.89007143e+03 -5.00000185e-01]\n", + " [ 4.18250000e+03 -5.00000018e-01]\n", + " [ 2.13550000e+03 2.04650000e+03]\n", + " [ 2.42792857e+03 2.04650000e+03]\n", + " [ 2.72035714e+03 2.04650000e+03]\n", + " [ 3.01278571e+03 2.04650000e+03]\n", + " [ 3.30521429e+03 2.04650000e+03]\n", + " [ 3.59764286e+03 2.04650000e+03]\n", + " [ 3.89007143e+03 2.04650000e+03]\n", + " [ 4.18250000e+03 2.04650000e+03]\n", + " [ 4.18250000e+03 -5.00000018e-01]\n", + " [ 4.18250000e+03 2.91928571e+02]\n", + " [ 4.18250000e+03 5.84357143e+02]\n", + " [ 4.18250000e+03 8.76785714e+02]\n", + " [ 4.18250000e+03 1.16921429e+03]\n", + " [ 4.18250000e+03 1.46164286e+03]\n", + " [ 4.18250000e+03 1.75407143e+03]\n", + " [ 4.18250000e+03 2.04650000e+03]\n", + " [ 2.13650000e+03 1.27000000e+02]\n", + " [ 2.13650000e+03 4.85400000e+02]\n", + " [ 2.13650000e+03 8.43800000e+02]\n", + " [ 2.13650000e+03 1.20220000e+03]\n", + " [ 2.13650000e+03 1.56060000e+03]\n", + " [ 2.13650000e+03 1.91900000e+03]\n", + " [ 2.26300000e+03 4.99999873e-01]\n", + " [ 2.62140000e+03 5.00000123e-01]\n", + " [ 2.97980000e+03 5.00000108e-01]\n", + " [ 3.33820000e+03 4.99999719e-01]\n", + " [ 3.69660000e+03 4.99999964e-01]\n", + " [ 4.05500000e+03 5.00000185e-01]\n", + " [ 2.26300000e+03 2.04550000e+03]\n", + " [ 2.62140000e+03 2.04550000e+03]\n", + " [ 2.97980000e+03 2.04550000e+03]\n", + " [ 3.33820000e+03 2.04550000e+03]\n", + " [ 3.69660000e+03 2.04550000e+03]\n", + " [ 4.05500000e+03 2.04550000e+03]\n", + " [ 4.18150000e+03 1.27000000e+02]\n", + " [ 4.18150000e+03 4.85400000e+02]\n", + " [ 4.18150000e+03 8.43800000e+02]\n", + " [ 4.18150000e+03 1.20220000e+03]\n", + " [ 4.18150000e+03 1.56060000e+03]\n", + " [ 4.18150000e+03 1.91900000e+03]\n", + " [ 2.13650000e+03 4.99999853e-01]\n", + " [ 2.13650000e+03 4.99999853e-01]\n", + " [ 4.18150000e+03 2.04550000e+03]\n", + " [ 4.18150000e+03 2.04550000e+03]\n", + " [ 2.26300000e+03 1.27000000e+02]\n", + " [ 2.62140000e+03 1.27000000e+02]\n", + " [ 2.97980000e+03 1.27000000e+02]\n", + " [ 3.33820000e+03 1.27000000e+02]\n", + " [ 3.69660000e+03 1.27000000e+02]\n", + " [ 4.05500000e+03 1.27000000e+02]\n", + " [ 2.26300000e+03 4.85400000e+02]\n", + " [ 2.62140000e+03 4.85400000e+02]\n", + " [ 2.97980000e+03 4.85400000e+02]\n", + " [ 3.33820000e+03 4.85400000e+02]\n", + " [ 3.69660000e+03 4.85400000e+02]\n", + " [ 4.05500000e+03 4.85400000e+02]\n", + " [ 2.26300000e+03 8.43800000e+02]\n", + " [ 2.62140000e+03 8.43800000e+02]\n", + " [ 2.97980000e+03 8.43800000e+02]\n", + " [ 3.33820000e+03 8.43800000e+02]\n", + " [ 3.69660000e+03 8.43800000e+02]\n", + " [ 4.05500000e+03 8.43800000e+02]\n", + " [ 2.26300000e+03 1.20220000e+03]\n", + " [ 2.62140000e+03 1.20220000e+03]\n", + " [ 2.97980000e+03 1.20220000e+03]\n", + " [ 3.33820000e+03 1.20220000e+03]\n", + " [ 3.69660000e+03 1.20220000e+03]\n", + " [ 4.05500000e+03 1.20220000e+03]\n", + " [ 2.26300000e+03 1.56060000e+03]\n", + " [ 2.62140000e+03 1.56060000e+03]\n", + " [ 2.97980000e+03 1.56060000e+03]\n", + " [ 3.33820000e+03 1.56060000e+03]\n", + " [ 3.69660000e+03 1.56060000e+03]\n", + " [ 4.05500000e+03 1.56060000e+03]\n", + " [ 2.26300000e+03 1.91900000e+03]\n", + " [ 2.62140000e+03 1.91900000e+03]\n", + " [ 2.97980000e+03 1.91900000e+03]\n", + " [ 3.33820000e+03 1.91900000e+03]\n", + " [ 3.69660000e+03 1.91900000e+03]\n", + " [ 4.05500000e+03 1.91900000e+03]]\n", + "DEBUG:root:fitpix2pix: ccdpx: shape: (96, 2)\n", + "DEBUG:root:fitpix2pix: visCut: True\n", + "DEBUG:root:optics_fp: rtanth: [31.45867372 27.07232164 22.68599914 18.29972749 13.91355478 9.52761765\n", + " 5.14251895 0.77266756 31.45867372 31.78680319 32.70527593 34.16651578\n", + " 36.10468169 38.44771501 41.12647627 44.07980062 0.77266756 4.62057574\n", + " 8.9768556 13.35288972 17.73406053 22.11731568 26.50162097 30.8865292\n", + " 44.07980062 41.06447698 38.31494783 35.89234872 33.86691125 32.31340541\n", + " 31.3021752 30.8865292 29.54629558 24.17042769 18.79463536 13.41900945\n", + " 8.04388357 2.67227674 31.51224371 32.31623619 33.96261905 36.33706944\n", + " 39.30786805 42.7508727 2.22187045 7.50028847 12.8598094 18.22903784\n", + " 23.60134944 28.97502929 42.72508353 39.20023922 36.1342981 33.65291956\n", + " 31.89283999 30.97725364 31.44375973 31.44375973 30.87190328 30.87190328\n", + " 29.6191671 30.47314683 32.21386423 34.70815714 37.80716925 41.37524227\n", + " 24.25945282 25.29503252 27.36711605 30.26354513 33.77288911 37.72448364\n", + " 18.90898716 20.22047017 22.759345 26.17080258 30.16018539 34.5277484\n", + " 13.57870729 15.35248874 18.5693102 22.62172417 27.13794906 31.92173094\n", + " 8.30755918 10.96964715 15.14772357 19.90921024 24.92192864 30.06045831\n", + " 3.38416012 7.92276206 13.11070286 18.40689143 23.73898749 29.08725072]\n", + "DEBUG:root:optics_fp: cphi: [-0.0055044 -0.00639203 -0.0076229 -0.00944382 -0.01241274 -0.01811485\n", + " -0.0335395 -0.22307599 -0.0055044 -0.14344285 -0.2735344 -0.39021968\n", + " -0.49076392 -0.57494454 -0.64415274 -0.70050591 -0.22307599 -0.98662859\n", + " -0.99647595 -0.9984093 -0.99909876 -0.99942085 -0.99959678 -0.99970325\n", + " -0.70050591 -0.75194059 -0.80589783 -0.86028974 -0.91173668 -0.955566\n", + " -0.98643233 -0.99970325 -0.00636666 -0.00777693 -0.00999392 -0.01398706\n", + " -0.02331621 -0.07013242 -0.06618572 -0.2308951 -0.37799383 -0.50124187\n", + " -0.60012567 -0.67754548 -0.93833732 -0.9947436 -0.99821572 -0.99911274\n", + " -0.99947098 -0.99964917 -0.72236515 -0.7873159 -0.85411461 -0.91708811\n", + " -0.96769535 -0.99629275 -0.00598404 -0.00598404 -0.999691 -0.999691\n", + " -0.07041425 -0.24485858 -0.398512 -0.52476457 -0.62394545 -0.7000711\n", + " -0.08596532 -0.29497775 -0.46908383 -0.60182876 -0.69847361 -0.76781625\n", + " -0.11028259 -0.36899894 -0.56404664 -0.69594091 -0.78213485 -0.83890011\n", + " -0.1535634 -0.48599238 -0.6913123 -0.80511955 -0.86923269 -0.90738164\n", + " -0.25098261 -0.68015432 -0.84745756 -0.91480539 -0.94651795 -0.96355992\n", + " -0.61607996 -0.94170609 -0.97911709 -0.98946165 -0.99367815 -0.99579412]\n", + "DEBUG:root:optics_fp: sphi: [0.99998485 0.99997957 0.99997095 0.99995541 0.99992296 0.99983591\n", + " 0.99943739 0.97480106 0.99998485 0.9896586 0.96186222 0.92072178\n", + " 0.87129259 0.81819238 0.76489689 0.7136466 0.97480106 0.16298472\n", + " 0.08387896 0.05638146 0.04244609 0.03402888 0.028395 0.02436013\n", + " 0.7136466 0.65923088 0.59205464 0.50980542 0.41077515 0.29477725\n", + " 0.16416841 0.02436013 0.99997973 0.99996976 0.99995006 0.99990218\n", + " 0.99972814 0.99753769 0.99780732 0.97297865 0.92580811 0.86530722\n", + " 0.79990573 0.73548088 0.34572109 0.10239711 0.0597107 0.0421157\n", + " 0.0325231 0.02648658 0.69151182 0.61654981 0.52008483 0.39868458\n", + " 0.25212242 0.08602764 0.9999821 0.9999821 0.02485756 0.02485756\n", + " 0.99751784 0.96955881 0.91716312 0.8512474 0.7814679 0.71407315\n", + " 0.99629813 0.95550412 0.88315364 0.79862516 0.71563581 0.64067012\n", + " 0.99390027 0.92942982 0.82574293 0.71809906 0.6231092 0.5442854\n", + " 0.9881388 0.87396305 0.72255609 0.59311256 0.49440321 0.4203077\n", + " 0.9679916 0.73306896 0.53086315 0.40389491 0.32265115 0.26749257\n", + " 0.78768362 0.33643669 0.20329713 0.14479515 0.11226633 0.09161916]\n", + "DEBUG:root:optics_fp: xyfp: [[ 0.173161 -31.45819714]\n", + " [ 0.17304708 -27.07176857]\n", + " [ 0.17293316 -22.68534 ]\n", + " [ 0.17281925 -18.29891143]\n", + " [ 0.17270533 -13.91248287]\n", + " [ 0.17259141 -9.52605429]\n", + " [ 0.17247749 -5.13962573]\n", + " [ 0.17236358 -0.75319715]\n", + " [ 0.173161 -31.45819714]\n", + " [ 4.55958957 -31.45808322]\n", + " [ 8.94601814 -31.45796931]\n", + " [ 13.33244671 -31.45785538]\n", + " [ 17.71887528 -31.45774147]\n", + " [ 22.10530385 -31.45762756]\n", + " [ 26.49173242 -31.45751363]\n", + " [ 30.87816099 -31.45739971]\n", + " [ 0.17236358 -0.75319715]\n", + " [ 4.55879215 -0.75308323]\n", + " [ 8.94522072 -0.75296932]\n", + " [ 13.33164929 -0.7528554 ]\n", + " [ 17.71807786 -0.75274148]\n", + " [ 22.10450643 -0.75262756]\n", + " [ 26.490935 -0.75251364]\n", + " [ 30.87736356 -0.75239973]\n", + " [ 30.87816099 -31.45739971]\n", + " [ 30.87804707 -27.07097114]\n", + " [ 30.87793315 -22.68454257]\n", + " [ 30.87781924 -18.29811401]\n", + " [ 30.87770532 -13.91168544]\n", + " [ 30.87759141 -9.52525687]\n", + " [ 30.87747749 -5.1388283 ]\n", + " [ 30.87736356 -0.75239973]\n", + " [ 0.18811133 -29.54569675]\n", + " [ 0.18797171 -24.16969676]\n", + " [ 0.1878321 -18.79369675]\n", + " [ 0.18769248 -13.41769676]\n", + " [ 0.18755286 -8.04169676]\n", + " [ 0.18741324 -2.66569676]\n", + " [ 2.08566061 -31.44314748]\n", + " [ 7.46166061 -31.44300785]\n", + " [ 12.83766061 -31.44286824]\n", + " [ 18.2136606 -31.44272862]\n", + " [ 23.5896606 -31.442589 ]\n", + " [ 28.9656606 -31.44244938]\n", + " [ 2.08486397 -0.76814748]\n", + " [ 7.46086396 -0.76800786]\n", + " [ 12.83686396 -0.76786825]\n", + " [ 18.21286396 -0.76772863]\n", + " [ 23.58886395 -0.76758901]\n", + " [ 28.96486395 -0.7674494 ]\n", + " [ 30.86311132 -29.54490011]\n", + " [ 30.86297171 -24.16890011]\n", + " [ 30.86283209 -18.79290011]\n", + " [ 30.86269247 -13.41690011]\n", + " [ 30.86255285 -8.04090011]\n", + " [ 30.86241323 -2.66490012]\n", + " [ 0.18816061 -31.44319675]\n", + " [ 0.18816061 -31.44319675]\n", + " [ 30.86236396 -0.76740012]\n", + " [ 30.86236396 -0.76740012]\n", + " [ 2.08561133 -29.54564748]\n", + " [ 7.46161133 -29.54550785]\n", + " [ 12.83761133 -29.54536824]\n", + " [ 18.21361133 -29.54522862]\n", + " [ 23.58961132 -29.545089 ]\n", + " [ 28.96561132 -29.54494938]\n", + " [ 2.08547171 -24.16964747]\n", + " [ 7.46147171 -24.16950786]\n", + " [ 12.83747171 -24.16936824]\n", + " [ 18.21347171 -24.16922862]\n", + " [ 23.58947171 -24.16908901]\n", + " [ 28.9654717 -24.16894939]\n", + " [ 2.0853321 -18.79364747]\n", + " [ 7.46133209 -18.79350785]\n", + " [ 12.83733209 -18.79336824]\n", + " [ 18.21333209 -18.79322862]\n", + " [ 23.58933209 -18.79308901]\n", + " [ 28.96533209 -18.79294939]\n", + " [ 2.08519248 -13.41764748]\n", + " [ 7.46119248 -13.41750786]\n", + " [ 12.83719247 -13.41736824]\n", + " [ 18.21319248 -13.41722863]\n", + " [ 23.58919247 -13.41708901]\n", + " [ 28.96519247 -13.41694939]\n", + " [ 2.08505286 -8.04164748]\n", + " [ 7.46105286 -8.04150786]\n", + " [ 12.83705286 -8.04136825]\n", + " [ 18.21305286 -8.04122863]\n", + " [ 23.58905286 -8.04108901]\n", + " [ 28.96505285 -8.04094939]\n", + " [ 2.08491324 -2.66564748]\n", + " [ 7.46091324 -2.66550786]\n", + " [ 12.83691324 -2.66536825]\n", + " [ 18.21291324 -2.66522863]\n", + " [ 23.58891323 -2.66508901]\n", + " [ 28.96491324 -2.66494939]]\n", + "DEBUG:root:optics_fp: xyfp shape: (96, 2)\n", + "DEBUG:root:make_az_asym: xyp: [[ 0.173161 -31.45819714]\n", + " [ 0.17304708 -27.07176857]\n", + " [ 0.17293316 -22.68534 ]\n", + " [ 0.17281925 -18.29891143]\n", + " [ 0.17270533 -13.91248287]\n", + " [ 0.17259141 -9.52605429]\n", + " [ 0.17247749 -5.13962573]\n", + " [ 0.17236358 -0.75319715]\n", + " [ 0.173161 -31.45819714]\n", + " [ 4.55958957 -31.45808322]\n", + " [ 8.94601814 -31.45796931]\n", + " [ 13.33244671 -31.45785538]\n", + " [ 17.71887528 -31.45774147]\n", + " [ 22.10530385 -31.45762756]\n", + " [ 26.49173242 -31.45751363]\n", + " [ 30.87816099 -31.45739971]\n", + " [ 0.17236358 -0.75319715]\n", + " [ 4.55879215 -0.75308323]\n", + " [ 8.94522072 -0.75296932]\n", + " [ 13.33164929 -0.7528554 ]\n", + " [ 17.71807786 -0.75274148]\n", + " [ 22.10450643 -0.75262756]\n", + " [ 26.490935 -0.75251364]\n", + " [ 30.87736356 -0.75239973]\n", + " [ 30.87816099 -31.45739971]\n", + " [ 30.87804707 -27.07097114]\n", + " [ 30.87793315 -22.68454257]\n", + " [ 30.87781924 -18.29811401]\n", + " [ 30.87770532 -13.91168544]\n", + " [ 30.87759141 -9.52525687]\n", + " [ 30.87747749 -5.1388283 ]\n", + " [ 30.87736356 -0.75239973]\n", + " [ 0.18811133 -29.54569675]\n", + " [ 0.18797171 -24.16969676]\n", + " [ 0.1878321 -18.79369675]\n", + " [ 0.18769248 -13.41769676]\n", + " [ 0.18755286 -8.04169676]\n", + " [ 0.18741324 -2.66569676]\n", + " [ 2.08566061 -31.44314748]\n", + " [ 7.46166061 -31.44300785]\n", + " [ 12.83766061 -31.44286824]\n", + " [ 18.2136606 -31.44272862]\n", + " [ 23.5896606 -31.442589 ]\n", + " [ 28.9656606 -31.44244938]\n", + " [ 2.08486397 -0.76814748]\n", + " [ 7.46086396 -0.76800786]\n", + " [ 12.83686396 -0.76786825]\n", + " [ 18.21286396 -0.76772863]\n", + " [ 23.58886395 -0.76758901]\n", + " [ 28.96486395 -0.7674494 ]\n", + " [ 30.86311132 -29.54490011]\n", + " [ 30.86297171 -24.16890011]\n", + " [ 30.86283209 -18.79290011]\n", + " [ 30.86269247 -13.41690011]\n", + " [ 30.86255285 -8.04090011]\n", + " [ 30.86241323 -2.66490012]\n", + " [ 0.18816061 -31.44319675]\n", + " [ 0.18816061 -31.44319675]\n", + " [ 30.86236396 -0.76740012]\n", + " [ 30.86236396 -0.76740012]\n", + " [ 2.08561133 -29.54564748]\n", + " [ 7.46161133 -29.54550785]\n", + " [ 12.83761133 -29.54536824]\n", + " [ 18.21361133 -29.54522862]\n", + " [ 23.58961132 -29.545089 ]\n", + " [ 28.96561132 -29.54494938]\n", + " [ 2.08547171 -24.16964747]\n", + " [ 7.46147171 -24.16950786]\n", + " [ 12.83747171 -24.16936824]\n", + " [ 18.21347171 -24.16922862]\n", + " [ 23.58947171 -24.16908901]\n", + " [ 28.9654717 -24.16894939]\n", + " [ 2.0853321 -18.79364747]\n", + " [ 7.46133209 -18.79350785]\n", + " [ 12.83733209 -18.79336824]\n", + " [ 18.21333209 -18.79322862]\n", + " [ 23.58933209 -18.79308901]\n", + " [ 28.96533209 -18.79294939]\n", + " [ 2.08519248 -13.41764748]\n", + " [ 7.46119248 -13.41750786]\n", + " [ 12.83719247 -13.41736824]\n", + " [ 18.21319248 -13.41722863]\n", + " [ 23.58919247 -13.41708901]\n", + " [ 28.96519247 -13.41694939]\n", + " [ 2.08505286 -8.04164748]\n", + " [ 7.46105286 -8.04150786]\n", + " [ 12.83705286 -8.04136825]\n", + " [ 18.21305286 -8.04122863]\n", + " [ 23.58905286 -8.04108901]\n", + " [ 28.96505285 -8.04094939]\n", + " [ 2.08491324 -2.66564748]\n", + " [ 7.46091324 -2.66550786]\n", + " [ 12.83691324 -2.66536825]\n", + " [ 18.21291324 -2.66522863]\n", + " [ 23.58891323 -2.66508901]\n", + " [ 28.96491324 -2.66494939]]\n", + "DEBUG:root:make_az_asym: xyp: shape: (96, 2)\n", + "DEBUG:root:radec2pix: curVec: [[ 0.23577139 0.38423439 -0.89262298]\n", + " [ 0.20853788 0.38518649 -0.89896792]\n", + " [ 0.18059079 0.38584764 -0.90471463]\n", + " [ 0.15203276 0.38619816 -0.90980054]\n", + " [ 0.12296805 0.38622237 -0.91417238]\n", + " [ 0.09350432 0.38590864 -0.91778617]\n", + " [ 0.06375353 0.38524961 -0.92060753]\n", + " [ 0.03383174 0.38424234 -0.92261218]\n", + " [ 0.23577139 0.38423439 -0.89262298]\n", + " [ 0.23725627 0.35732221 -0.90334395]\n", + " [ 0.23844153 0.33020036 -0.91329807]\n", + " [ 0.23932249 0.302979 -0.92245784]\n", + " [ 0.23989525 0.27577168 -0.93080623]\n", + " [ 0.24015622 0.24869535 -0.93833662]\n", + " [ 0.24010172 0.2218706 -0.9450527 ]\n", + " [ 0.23972786 0.19542205 -0.95096834]\n", + " [ 0.03383174 0.38424234 -0.92261218]\n", + " [ 0.0355144 0.35638559 -0.93366377]\n", + " [ 0.0371568 0.32829867 -0.94384286]\n", + " [ 0.03875292 0.30009687 -0.95312123]\n", + " [ 0.0402973 0.27189648 -0.96148241]\n", + " [ 0.04178503 0.24381416 -0.96892139]\n", + " [ 0.04321164 0.21596736 -0.97544393]\n", + " [ 0.04457298 0.1884759 -0.98106579]\n", + " [ 0.23972786 0.19542205 -0.95096834]\n", + " [ 0.21347294 0.19456055 -0.9573795 ]\n", + " [ 0.18649593 0.19367932 -0.96317578]\n", + " [ 0.15890459 0.19275941 -0.96829393]\n", + " [ 0.13080708 0.19178655 -0.97268054]\n", + " [ 0.10231231 0.19075118 -0.97629206]\n", + " [ 0.07353045 0.18964806 -0.97909493]\n", + " [ 0.04457298 0.1884759 -0.98106579]\n", + " [ 0.2239974 0.38459194 -0.89549662]\n", + " [ 0.19012722 0.38556495 -0.90287945]\n", + " [ 0.15528712 0.38608113 -0.90930043]\n", + " [ 0.11966826 0.38610993 -0.91465766]\n", + " [ 0.08346892 0.38563001 -0.9188702 ]\n", + " [ 0.04689702 0.38462962 -0.92187891]\n", + " [ 0.23636354 0.37253662 -0.89741225]\n", + " [ 0.23798275 0.3393973 -0.91004048]\n", + " [ 0.23914734 0.30605211 -0.92148828]\n", + " [ 0.23984981 0.2727087 -0.93171993]\n", + " [ 0.24008351 0.23958238 -0.94072323]\n", + " [ 0.23984156 0.20689683 -0.94850921]\n", + " [ 0.03467239 0.37213634 -0.92753025]\n", + " [ 0.03670819 0.33782595 -0.9404925 ]\n", + " [ 0.03867726 0.30328421 -0.95211489]\n", + " [ 0.04056935 0.26872486 -0.96236224]\n", + " [ 0.04237538 0.23436271 -0.97122523]\n", + " [ 0.0440873 0.20041489 -0.97871864]\n", + " [ 0.22837772 0.19513756 -0.95381599]\n", + " [ 0.19569935 0.19407219 -0.96126882]\n", + " [ 0.16204341 0.19295764 -0.9677341 ]\n", + " [ 0.12760882 0.19176569 -0.9731094 ]\n", + " [ 0.09259617 0.19047868 -0.9773146 ]\n", + " [ 0.0572088 0.18908865 -0.98029212]\n", + " [ 0.23568517 0.38414656 -0.89268355]\n", + " [ 0.23568517 0.38414656 -0.89268355]\n", + " [ 0.04466764 0.18857329 -0.98104277]\n", + " [ 0.04466764 0.18857329 -0.98104277]\n", + " [ 0.22468026 0.37293588 -0.90024308]\n", + " [ 0.22632748 0.33966249 -0.91291033]\n", + " [ 0.2275428 0.30617862 -0.92438029]\n", + " [ 0.22831911 0.27269222 -0.93461721]\n", + " [ 0.22865019 0.23941845 -0.94360897]\n", + " [ 0.22852951 0.20658059 -0.95136677]\n", + " [ 0.19082198 0.3737928 -0.9076706 ]\n", + " [ 0.19254648 0.34018233 -0.92043568]\n", + " [ 0.19390382 0.30635094 -0.93196052]\n", + " [ 0.19488768 0.27250765 -0.9422093 ]\n", + " [ 0.19549298 0.23886726 -0.95117029]\n", + " [ 0.19571421 0.20565156 -0.95885525]\n", + " [ 0.15599258 0.37421467 -0.91412783]\n", + " [ 0.15779197 0.34033109 -0.92697165]\n", + " [ 0.15929012 0.30621962 -0.9385394 ]\n", + " [ 0.16048092 0.2720907 -0.9487953 ]\n", + " [ 0.16135975 0.23815895 -0.95772822]\n", + " [ 0.1619218 0.20464459 -0.96535067]\n", + " [ 0.12038322 0.37417156 -0.91951266]\n", + " [ 0.12225564 0.34008037 -0.93241563]\n", + " [ 0.12389459 0.30575739 -0.94401406]\n", + " [ 0.12529341 0.27141447 -0.95427236]\n", + " [ 0.12644708 0.23726631 -0.96318006]\n", + " [ 0.12735068 0.20353169 -0.97075056]\n", + " [ 0.08419217 0.37364283 -0.92374386]\n", + " [ 0.08613573 0.33941151 -0.93668589]\n", + " [ 0.08791564 0.3049471 -0.94830275]\n", + " [ 0.08952398 0.27046262 -0.95855904]\n", + " [ 0.09095443 0.23617286 -0.96744492]\n", + " [ 0.09220115 0.2022956 -0.97497458]\n", + " [ 0.04762724 0.3726174 -0.92676206]\n", + " [ 0.04963953 0.33831524 -0.93972268]\n", + " [ 0.05155962 0.30378092 -0.95134576]\n", + " [ 0.05337789 0.2692281 -0.96159608]\n", + " [ 0.05508609 0.23487161 -0.97046424]\n", + " [ 0.05667676 0.20092868 -0.97796493]]\n", + "DEBUG:root:radec2pix: curVec Shape: (96, 3)\n", + "DEBUG:root:radec2pix: xyfp: [[ 0.173161 -31.45819714]\n", + " [ 0.17304708 -27.07176857]\n", + " [ 0.17293316 -22.68534 ]\n", + " [ 0.17281925 -18.29891143]\n", + " [ 0.17270533 -13.91248287]\n", + " [ 0.17259141 -9.52605429]\n", + " [ 0.17247749 -5.13962573]\n", + " [ 0.17236358 -0.75319715]\n", + " [ 0.173161 -31.45819714]\n", + " [ 4.55958957 -31.45808322]\n", + " [ 8.94601814 -31.45796931]\n", + " [ 13.33244671 -31.45785538]\n", + " [ 17.71887528 -31.45774147]\n", + " [ 22.10530385 -31.45762756]\n", + " [ 26.49173242 -31.45751363]\n", + " [ 30.87816099 -31.45739971]\n", + " [ 0.17236358 -0.75319715]\n", + " [ 4.55879215 -0.75308323]\n", + " [ 8.94522072 -0.75296932]\n", + " [ 13.33164929 -0.7528554 ]\n", + " [ 17.71807786 -0.75274148]\n", + " [ 22.10450643 -0.75262756]\n", + " [ 26.490935 -0.75251364]\n", + " [ 30.87736356 -0.75239973]\n", + " [ 30.87816099 -31.45739971]\n", + " [ 30.87804707 -27.07097114]\n", + " [ 30.87793315 -22.68454257]\n", + " [ 30.87781924 -18.29811401]\n", + " [ 30.87770532 -13.91168544]\n", + " [ 30.87759141 -9.52525687]\n", + " [ 30.87747749 -5.1388283 ]\n", + " [ 30.87736356 -0.75239973]\n", + " [ 0.18811133 -29.54569675]\n", + " [ 0.18797171 -24.16969676]\n", + " [ 0.1878321 -18.79369675]\n", + " [ 0.18769248 -13.41769676]\n", + " [ 0.18755286 -8.04169676]\n", + " [ 0.18741324 -2.66569676]\n", + " [ 2.08566061 -31.44314748]\n", + " [ 7.46166061 -31.44300785]\n", + " [ 12.83766061 -31.44286824]\n", + " [ 18.2136606 -31.44272862]\n", + " [ 23.5896606 -31.442589 ]\n", + " [ 28.9656606 -31.44244938]\n", + " [ 2.08486397 -0.76814748]\n", + " [ 7.46086396 -0.76800786]\n", + " [ 12.83686396 -0.76786825]\n", + " [ 18.21286396 -0.76772863]\n", + " [ 23.58886395 -0.76758901]\n", + " [ 28.96486395 -0.7674494 ]\n", + " [ 30.86311132 -29.54490011]\n", + " [ 30.86297171 -24.16890011]\n", + " [ 30.86283209 -18.79290011]\n", + " [ 30.86269247 -13.41690011]\n", + " [ 30.86255285 -8.04090011]\n", + " [ 30.86241323 -2.66490012]\n", + " [ 0.18816061 -31.44319675]\n", + " [ 0.18816061 -31.44319675]\n", + " [ 30.86236396 -0.76740012]\n", + " [ 30.86236396 -0.76740012]\n", + " [ 2.08561133 -29.54564748]\n", + " [ 7.46161133 -29.54550785]\n", + " [ 12.83761133 -29.54536824]\n", + " [ 18.21361133 -29.54522862]\n", + " [ 23.58961132 -29.545089 ]\n", + " [ 28.96561132 -29.54494938]\n", + " [ 2.08547171 -24.16964747]\n", + " [ 7.46147171 -24.16950786]\n", + " [ 12.83747171 -24.16936824]\n", + " [ 18.21347171 -24.16922862]\n", + " [ 23.58947171 -24.16908901]\n", + " [ 28.9654717 -24.16894939]\n", + " [ 2.0853321 -18.79364747]\n", + " [ 7.46133209 -18.79350785]\n", + " [ 12.83733209 -18.79336824]\n", + " [ 18.21333209 -18.79322862]\n", + " [ 23.58933209 -18.79308901]\n", + " [ 28.96533209 -18.79294939]\n", + " [ 2.08519248 -13.41764748]\n", + " [ 7.46119248 -13.41750786]\n", + " [ 12.83719247 -13.41736824]\n", + " [ 18.21319248 -13.41722863]\n", + " [ 23.58919247 -13.41708901]\n", + " [ 28.96519247 -13.41694939]\n", + " [ 2.08505286 -8.04164748]\n", + " [ 7.46105286 -8.04150786]\n", + " [ 12.83705286 -8.04136825]\n", + " [ 18.21305286 -8.04122863]\n", + " [ 23.58905286 -8.04108901]\n", + " [ 28.96505285 -8.04094939]\n", + " [ 2.08491324 -2.66564748]\n", + " [ 7.46091324 -2.66550786]\n", + " [ 12.83691324 -2.66536825]\n", + " [ 18.21291324 -2.66522863]\n", + " [ 23.58891323 -2.66508901]\n", + " [ 28.96491324 -2.66494939]]\n", + "DEBUG:root:radec2pix: xyfp Shape: (96, 2)\n", + "DEBUG:root:radec2pix: camVec: [[-0.00108623 -0.00110818 -0.00112898 -0.00114857 -0.00116686 -0.00118378\n", + " -0.00119922 -0.00121312 -0.00108623 -0.03008973 -0.05897582 -0.08763213\n", + " -0.11594722 -0.14381054 -0.17111212 -0.19774215 -0.00121312 -0.0312253\n", + " -0.06111305 -0.09075893 -0.12004913 -0.1488739 -0.17712688 -0.20470344\n", + " -0.19774215 -0.19951656 -0.20103291 -0.2022905 -0.20328809 -0.20402394\n", + " -0.20449622 -0.20470344 -0.00119558 -0.00122271 -0.00124786 -0.00127089\n", + " -0.00129164 -0.00130994 -0.01373956 -0.04922259 -0.08441749 -0.11911871\n", + " -0.1531227 -0.18622706 -0.01430615 -0.05102028 -0.08743049 -0.12332566\n", + " -0.15850368 -0.19276957 -0.19845732 -0.20045757 -0.20206974 -0.20329178\n", + " -0.20412054 -0.20455274 -0.00118556 -0.00118556 -0.20461015 -0.20461015\n", + " -0.01379915 -0.04942232 -0.08475642 -0.11959564 -0.15373662 -0.18697743\n", + " -0.01395111 -0.04992687 -0.08561039 -0.12079486 -0.15527748 -0.18885795\n", + " -0.0140777 -0.05033965 -0.08630574 -0.12176792 -0.15652378 -0.19037482\n", + " -0.01417814 -0.05065827 -0.08683905 -0.12251113 -0.15747231 -0.19152571\n", + " -0.0142515 -0.05087978 -0.08720594 -0.12301955 -0.15811848 -0.19230704\n", + " -0.01429691 -0.0510015 -0.08740238 -0.12328852 -0.15845779 -0.19271515]\n", + " [ 0.20994474 0.18250974 0.15437814 0.12565449 0.09644464 0.0668576\n", + " 0.03700641 0.00700791 0.20994474 0.20980966 0.20940234 0.20872399\n", + " 0.20777622 0.20656061 0.20507835 0.20333011 0.00700791 0.00701559\n", + " 0.00701392 0.00700302 0.00698305 0.00695418 0.00691659 0.00687038\n", + " 0.20333011 0.17679323 0.14956333 0.12175011 0.09346339 0.06481351\n", + " 0.03591173 0.00687038 0.19807534 0.16396932 0.12892083 0.09312409\n", + " 0.05677987 0.02009792 0.20982687 0.20947825 0.20872203 0.20756102\n", + " 0.20599809 0.20403521 0.00711509 0.00711803 0.00710683 0.00708177\n", + " 0.0070432 0.00699139 0.19185821 0.1588536 0.12491703 0.09025061\n", + " 0.0550575 0.01954302 0.20985223 0.20985223 0.00696998 0.00696998\n", + " 0.19805172 0.19772367 0.19701128 0.19591776 0.19444643 0.19259955\n", + " 0.16395068 0.1636812 0.16309354 0.16219177 0.16098028 0.15946229\n", + " 0.12890725 0.1286975 0.12823673 0.12752928 0.12657997 0.12539259\n", + " 0.09311572 0.09296747 0.092637 0.09212815 0.0914453 0.09059206\n", + " 0.05677687 0.05669199 0.05649545 0.05618991 0.05577844 0.0552636\n", + " 0.02010041 0.0200803 0.02002048 0.0199219 0.01978566 0.01961272]\n", + " [ 0.97771265 0.98320342 0.98801119 0.9920734 0.99533767 0.99776183\n", + " 0.99931431 0.99997471 0.97771265 0.97727914 0.97604944 0.97404051\n", + " 0.97128023 0.96780744 0.96367189 0.95893426 0.99997471 0.99948775\n", + " 0.99810621 0.99584827 0.99274339 0.98883174 0.98416372 0.97879993\n", + " 0.95893426 0.96381393 0.96809947 0.97172808 0.97464791 0.97681802\n", + " 0.97820838 0.97879993 0.98018607 0.98646468 0.9916541 0.9956537\n", + " 0.99838589 0.99979716 0.97764201 0.9765736 0.97432479 0.97094241\n", + " 0.96649792 0.96108746 0.99987235 0.99867225 0.99614527 0.99234098\n", + " 0.98733327 0.98121915 0.96114781 0.96673797 0.971372 0.97494989\n", + " 0.97739627 0.97866043 0.97773239 0.97773239 0.97881873 0.97881873\n", + " 0.98009443 0.97901113 0.97673072 0.97330012 0.96879081 0.96329894\n", + " 0.98636988 0.98524909 0.98288929 0.97933775 0.97466623 0.96897082\n", + " 0.99155673 0.99040541 0.9879811 0.98433168 0.97952939 0.97367044\n", + " 0.99555434 0.9943796 0.99190593 0.98818188 0.98328034 0.97729779\n", + " 0.99828517 0.99709441 0.99458704 0.99081223 0.98584345 0.97977749\n", + " 0.99969574 0.99849668 0.99597189 0.99217088 0.98716749 0.98105872]]\n", + "DEBUG:root:radec2pix: camVec Shape: (3, 96)\n", + "DEBUG:root:mm_to_pix: fitpx: [[0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]]\n", + "DEBUG:root:radec2pix: curVec: [[-1.12894475e-01 -2.14757947e-01 -9.70120540e-01]\n", + " [-9.89351233e-02 -1.92492747e-01 -9.76298307e-01]\n", + " [-8.47448234e-02 -1.69534580e-01 -9.81873893e-01]\n", + " [-7.03668647e-02 -1.45984650e-01 -9.86781124e-01]\n", + " [-5.58474558e-02 -1.21941555e-01 -9.90964842e-01]\n", + " [-4.12357650e-02 -9.75026917e-02 -9.94380630e-01]\n", + " [-2.65836828e-02 -7.27652650e-02 -9.96994746e-01]\n", + " [-1.19454031e-02 -4.78267542e-02 -9.98784215e-01]\n", + " [-1.12894475e-01 -2.14757947e-01 -9.70120540e-01]\n", + " [-1.37008582e-01 -2.02783669e-01 -9.69591374e-01]\n", + " [-1.61474390e-01 -1.90261738e-01 -9.68362790e-01]\n", + " [-1.86185583e-01 -1.77253517e-01 -9.66393357e-01]\n", + " [-2.11038458e-01 -1.63817474e-01 -9.63652741e-01]\n", + " [-2.35931018e-01 -1.50010412e-01 -9.60121571e-01]\n", + " [-2.60762562e-01 -1.35888523e-01 -9.55791397e-01]\n", + " [-2.85433776e-01 -1.21508075e-01 -9.50664687e-01]\n", + " [-1.19454031e-02 -4.78267542e-02 -9.98784215e-01]\n", + " [-3.60684134e-02 -3.37991309e-02 -9.98777597e-01]\n", + " [-6.06568347e-02 -1.94536017e-02 -9.97969091e-01]\n", + " [-8.56105277e-02 -4.84640796e-03 -9.96316892e-01]\n", + " [-1.10829607e-01 9.96588957e-03 -9.93789454e-01]\n", + " [-1.36213250e-01 2.49256606e-02 -9.90365923e-01]\n", + " [-1.61659516e-01 3.99740455e-02 -9.86036651e-01]\n", + " [-1.87065927e-01 5.50512559e-02 -9.80803598e-01]\n", + " [-2.85433776e-01 -1.21508075e-01 -9.50664687e-01]\n", + " [-2.72570926e-01 -9.74812518e-02 -9.57184672e-01]\n", + " [-2.59237772e-01 -7.28961547e-02 -9.63058632e-01]\n", + " [-2.45475092e-01 -4.78467380e-02 -9.68221394e-01]\n", + " [-2.31326857e-01 -2.24283154e-02 -9.72617528e-01]\n", + " [-2.16840841e-01 3.26135680e-03 -9.76201523e-01]\n", + " [-2.02068748e-01 2.91219647e-02 -9.78938268e-01]\n", + " [-1.87065927e-01 5.50512559e-02 -9.80803598e-01]\n", + " [-1.06921115e-01 -2.05101563e-01 -9.72882945e-01]\n", + " [-8.96522843e-02 -1.77332784e-01 -9.80058953e-01]\n", + " [-7.20790800e-02 -1.48624147e-01 -9.86263387e-01]\n", + " [-5.42853450e-02 -1.19158172e-01 -9.91390151e-01]\n", + " [-3.63615716e-02 -8.91142710e-02 -9.95357465e-01]\n", + " [-1.84042712e-02 -5.86715097e-02 -9.98107678e-01]\n", + " [-1.23311015e-01 -2.09533132e-01 -9.69994979e-01]\n", + " [-1.53115978e-01 -1.94479711e-01 -9.68882418e-01]\n", + " [-1.83343307e-01 -1.78665197e-01 -9.66676771e-01]\n", + " [-2.13801064e-01 -1.62198371e-01 -9.63317597e-01]\n", + " [-2.44301430e-01 -1.45183918e-01 -9.58769233e-01]\n", + " [-2.74659572e-01 -1.27725302e-01 -9.53020654e-01]\n", + " [-2.24495831e-02 -4.18392356e-02 -9.98872111e-01]\n", + " [-5.23409518e-02 -2.44269390e-02 -9.98330481e-01]\n", + " [-8.28316710e-02 -6.59287934e-03 -9.96541744e-01]\n", + " [-1.13737844e-01 1.15590134e-02 -9.93443553e-01]\n", + " [-1.44873841e-01 2.99226318e-02 -9.88997577e-01]\n", + " [-1.76051717e-01 4.83892088e-02 -9.83190865e-01]\n", + " [-2.79801554e-01 -1.11156715e-01 -9.53601214e-01]\n", + " [-2.63714747e-01 -8.13226805e-02 -9.61166559e-01]\n", + " [-2.46961899e-01 -5.07432970e-02 -9.67695685e-01]\n", + " [-2.29622587e-01 -1.95933760e-02 -9.73082508e-01]\n", + " [-2.11784783e-01 1.19471095e-02 -9.77243302e-01]\n", + " [-1.93545213e-01 4.36926330e-02 -9.80117954e-01]\n", + " [-1.12928919e-01 -2.14643160e-01 -9.70141934e-01]\n", + " [-1.12928919e-01 -2.14643160e-01 -9.70141934e-01]\n", + " [-1.87030862e-01 5.49110476e-02 -9.80818145e-01]\n", + " [-1.87030862e-01 5.49110476e-02 -9.80818145e-01]\n", + " [-1.17325554e-01 -1.99922074e-01 -9.72761984e-01]\n", + " [-1.47199532e-01 -1.84688390e-01 -9.71711118e-01]\n", + " [-1.77505050e-01 -1.68716807e-01 -9.69549687e-01]\n", + " [-2.08050777e-01 -1.52114721e-01 -9.66217360e-01]\n", + " [-2.38648978e-01 -1.34985947e-01 -9.61678460e-01]\n", + " [-2.69114446e-01 -1.17433631e-01 -9.55921941e-01]\n", + " [-1.00103363e-01 -1.71966992e-01 -9.80003403e-01]\n", + " [-1.30126877e-01 -1.56250490e-01 -9.79108156e-01]\n", + " [-1.60609794e-01 -1.39859251e-01 -9.77058792e-01]\n", + " [-1.91362422e-01 -1.22897424e-01 -9.73794972e-01]\n", + " [-2.22197162e-01 -1.05467192e-01 -9.69280709e-01]\n", + " [-2.52927651e-01 -8.76715020e-02 -9.63504702e-01]\n", + " [-8.25522637e-02 -1.43086168e-01 -9.86261361e-01]\n", + " [-1.12657435e-01 -1.26924227e-01 -9.85494060e-01]\n", + " [-1.43252192e-01 -1.10147644e-01 -9.83537648e-01]\n", + " [-1.74148366e-01 -9.28586352e-02 -9.80331383e-01]\n", + " [-2.05158465e-01 -7.51589950e-02 -9.75838680e-01]\n", + " [-2.36095053e-01 -5.71523766e-02 -9.70047799e-01]\n", + " [-6.47563652e-02 -1.13460692e-01 -9.91429919e-01]\n", + " [-9.48757078e-02 -9.68872234e-02 -9.90763073e-01]\n", + " [-1.25516474e-01 -7.97572927e-02 -9.88880371e-01]\n", + " [-1.56491904e-01 -6.21725244e-02 -9.85720478e-01]\n", + " [-1.87614755e-01 -4.42353599e-02 -9.81246114e-01]\n", + " [-2.18696834e-01 -2.60507727e-02 -9.75445053e-01]\n", + " [-4.68065568e-02 -8.32692368e-02 -9.95427235e-01]\n", + " [-7.68733289e-02 -6.63167973e-02 -9.94832938e-01]\n", + " [-1.07494353e-01 -4.88652071e-02 -9.93004107e-01]\n", + " [-1.38484182e-01 -3.10165986e-02 -9.89878832e-01]\n", + " [-1.69656069e-01 -1.28747589e-02 -9.85419230e-01]\n", + " [-2.00821543e-01 5.45371900e-03 -9.79612661e-01]\n", + " [-2.87998311e-02 -5.26908117e-02 -9.98195496e-01]\n", + " [-5.87483696e-02 -3.53924357e-02 -9.97645230e-01]\n", + " [-8.92844560e-02 -1.76520757e-02 -9.95849733e-01]\n", + " [-1.20223826e-01 4.26886540e-04 -9.92746720e-01]\n", + " [-1.51380511e-01 1.87389670e-02 -9.88297927e-01]\n", + " [-1.82566330e-01 3.71759366e-02 -9.82490450e-01]]\n", + "DEBUG:root:mm_to_pix: fitpx.shape: (96, 2)\n", + "DEBUG:root:radec2pix: curVec Shape: (96, 3)\n", + "DEBUG:root:cartToSphere: vec: [[-0.00108623 0.20994474 0.97771265]\n", + " [-0.00110818 0.18250974 0.98320342]\n", + " [-0.00112898 0.15437814 0.98801119]\n", + " [-0.00114857 0.12565449 0.9920734 ]\n", + " [-0.00116686 0.09644464 0.99533767]\n", + " [-0.00118378 0.0668576 0.99776183]\n", + " [-0.00119922 0.03700641 0.99931431]\n", + " [-0.00121312 0.00700791 0.99997471]\n", + " [-0.00108623 0.20994474 0.97771265]\n", + " [-0.03008973 0.20980966 0.97727914]\n", + " [-0.05897582 0.20940234 0.97604944]\n", + " [-0.08763213 0.20872399 0.97404051]\n", + " [-0.11594722 0.20777622 0.97128023]\n", + " [-0.14381054 0.20656061 0.96780744]\n", + " [-0.17111212 0.20507835 0.96367189]\n", + " [-0.19774215 0.20333011 0.95893426]\n", + " [-0.00121312 0.00700791 0.99997471]\n", + " [-0.0312253 0.00701559 0.99948775]\n", + " [-0.06111305 0.00701392 0.99810621]\n", + " [-0.09075893 0.00700302 0.99584827]\n", + " [-0.12004913 0.00698305 0.99274339]\n", + " [-0.1488739 0.00695418 0.98883174]\n", + " [-0.17712688 0.00691659 0.98416372]\n", + " [-0.20470344 0.00687038 0.97879993]\n", + " [-0.19774215 0.20333011 0.95893426]\n", + " [-0.19951656 0.17679323 0.96381393]\n", + " [-0.20103291 0.14956333 0.96809947]\n", + " [-0.2022905 0.12175011 0.97172808]\n", + " [-0.20328809 0.09346339 0.97464791]\n", + " [-0.20402394 0.06481351 0.97681802]\n", + " [-0.20449622 0.03591173 0.97820838]\n", + " [-0.20470344 0.00687038 0.97879993]\n", + " [-0.00119558 0.19807534 0.98018607]\n", + " [-0.00122271 0.16396932 0.98646468]\n", + " [-0.00124786 0.12892083 0.9916541 ]\n", + " [-0.00127089 0.09312409 0.9956537 ]\n", + " [-0.00129164 0.05677987 0.99838589]\n", + " [-0.00130994 0.02009792 0.99979716]\n", + " [-0.01373956 0.20982687 0.97764201]\n", + " [-0.04922259 0.20947825 0.9765736 ]\n", + " [-0.08441749 0.20872203 0.97432479]\n", + " [-0.11911871 0.20756102 0.97094241]\n", + " [-0.1531227 0.20599809 0.96649792]\n", + " [-0.18622706 0.20403521 0.96108746]\n", + " [-0.01430615 0.00711509 0.99987235]\n", + " [-0.05102028 0.00711803 0.99867225]\n", + " [-0.08743049 0.00710683 0.99614527]\n", + " [-0.12332566 0.00708177 0.99234098]\n", + " [-0.15850368 0.0070432 0.98733327]\n", + " [-0.19276957 0.00699139 0.98121915]\n", + " [-0.19845732 0.19185821 0.96114781]\n", + " [-0.20045757 0.1588536 0.96673797]\n", + " [-0.20206974 0.12491703 0.971372 ]\n", + " [-0.20329178 0.09025061 0.97494989]\n", + " [-0.20412054 0.0550575 0.97739627]\n", + " [-0.20455274 0.01954302 0.97866043]\n", + " [-0.00118556 0.20985223 0.97773239]\n", + " [-0.00118556 0.20985223 0.97773239]\n", + " [-0.20461015 0.00696998 0.97881873]\n", + " [-0.20461015 0.00696998 0.97881873]\n", + " [-0.01379915 0.19805172 0.98009443]\n", + " [-0.04942232 0.19772367 0.97901113]\n", + " [-0.08475642 0.19701128 0.97673072]\n", + " [-0.11959564 0.19591776 0.97330012]\n", + " [-0.15373662 0.19444643 0.96879081]\n", + " [-0.18697743 0.19259955 0.96329894]\n", + " [-0.01395111 0.16395068 0.98636988]\n", + " [-0.04992687 0.1636812 0.98524909]\n", + " [-0.08561039 0.16309354 0.98288929]\n", + " [-0.12079486 0.16219177 0.97933775]\n", + " [-0.15527748 0.16098028 0.97466623]\n", + " [-0.18885795 0.15946229 0.96897082]\n", + " [-0.0140777 0.12890725 0.99155673]\n", + " [-0.05033965 0.1286975 0.99040541]\n", + " [-0.08630574 0.12823673 0.9879811 ]\n", + " [-0.12176792 0.12752928 0.98433168]\n", + " [-0.15652378 0.12657997 0.97952939]\n", + " [-0.19037482 0.12539259 0.97367044]\n", + " [-0.01417814 0.09311572 0.99555434]\n", + " [-0.05065827 0.09296747 0.9943796 ]\n", + " [-0.08683905 0.092637 0.99190593]\n", + " [-0.12251113 0.09212815 0.98818188]\n", + " [-0.15747231 0.0914453 0.98328034]\n", + " [-0.19152571 0.09059206 0.97729779]\n", + " [-0.0142515 0.05677687 0.99828517]\n", + " [-0.05087978 0.05669199 0.99709441]\n", + " [-0.08720594 0.05649545 0.99458704]\n", + " [-0.12301955 0.05618991 0.99081223]\n", + " [-0.15811848 0.05577844 0.98584345]\n", + " [-0.19230704 0.0552636 0.97977749]\n", + " [-0.01429691 0.02010041 0.99969574]\n", + " [-0.0510015 0.0200803 0.99849668]\n", + " [-0.08740238 0.02002048 0.99597189]\n", + " [-0.12328852 0.0199219 0.99217088]\n", + " [-0.15845779 0.01978566 0.98716749]\n", + " [-0.19271515 0.01961272 0.98105872]]\n", + "DEBUG:root:radec2pix: xyfp: [[ 0.173161 -31.45819714]\n", + " [ 0.17304708 -27.07176857]\n", + " [ 0.17293316 -22.68534 ]\n", + " [ 0.17281925 -18.29891143]\n", + " [ 0.17270533 -13.91248287]\n", + " [ 0.17259141 -9.52605429]\n", + " [ 0.17247749 -5.13962573]\n", + " [ 0.17236358 -0.75319715]\n", + " [ 0.173161 -31.45819714]\n", + " [ 4.55958957 -31.45808322]\n", + " [ 8.94601814 -31.45796931]\n", + " [ 13.33244671 -31.45785538]\n", + " [ 17.71887528 -31.45774147]\n", + " [ 22.10530385 -31.45762756]\n", + " [ 26.49173242 -31.45751363]\n", + " [ 30.87816099 -31.45739971]\n", + " [ 0.17236358 -0.75319715]\n", + " [ 4.55879215 -0.75308323]\n", + " [ 8.94522072 -0.75296932]\n", + " [ 13.33164929 -0.7528554 ]\n", + " [ 17.71807786 -0.75274148]\n", + " [ 22.10450643 -0.75262756]\n", + " [ 26.490935 -0.75251364]\n", + " [ 30.87736356 -0.75239973]\n", + " [ 30.87816099 -31.45739971]\n", + " [ 30.87804707 -27.07097114]\n", + " [ 30.87793315 -22.68454257]\n", + " [ 30.87781924 -18.29811401]\n", + " [ 30.87770532 -13.91168544]\n", + " [ 30.87759141 -9.52525687]\n", + " [ 30.87747749 -5.1388283 ]\n", + " [ 30.87736356 -0.75239973]\n", + " [ 0.18811133 -29.54569675]\n", + " [ 0.18797171 -24.16969676]\n", + " [ 0.1878321 -18.79369675]\n", + " [ 0.18769248 -13.41769676]\n", + " [ 0.18755286 -8.04169676]\n", + " [ 0.18741324 -2.66569676]\n", + " [ 2.08566061 -31.44314748]\n", + " [ 7.46166061 -31.44300785]\n", + " [ 12.83766061 -31.44286824]\n", + " [ 18.2136606 -31.44272862]\n", + " [ 23.5896606 -31.442589 ]\n", + " [ 28.9656606 -31.44244938]\n", + " [ 2.08486397 -0.76814748]\n", + " [ 7.46086396 -0.76800786]\n", + " [ 12.83686396 -0.76786825]\n", + " [ 18.21286396 -0.76772863]\n", + " [ 23.58886395 -0.76758901]\n", + " [ 28.96486395 -0.7674494 ]\n", + " [ 30.86311132 -29.54490011]\n", + " [ 30.86297171 -24.16890011]\n", + " [ 30.86283209 -18.79290011]\n", + " [ 30.86269247 -13.41690011]\n", + " [ 30.86255285 -8.04090011]\n", + " [ 30.86241323 -2.66490012]\n", + " [ 0.18816061 -31.44319675]\n", + " [ 0.18816061 -31.44319675]\n", + " [ 30.86236396 -0.76740012]\n", + " [ 30.86236396 -0.76740012]\n", + " [ 2.08561133 -29.54564748]\n", + " [ 7.46161133 -29.54550785]\n", + " [ 12.83761133 -29.54536824]\n", + " [ 18.21361133 -29.54522862]\n", + " [ 23.58961132 -29.545089 ]\n", + " [ 28.96561132 -29.54494938]\n", + " [ 2.08547171 -24.16964747]\n", + " [ 7.46147171 -24.16950786]\n", + " [ 12.83747171 -24.16936824]\n", + " [ 18.21347171 -24.16922862]\n", + " [ 23.58947171 -24.16908901]\n", + " [ 28.9654717 -24.16894939]\n", + " [ 2.0853321 -18.79364747]\n", + " [ 7.46133209 -18.79350785]\n", + " [ 12.83733209 -18.79336824]\n", + " [ 18.21333209 -18.79322862]\n", + " [ 23.58933209 -18.79308901]\n", + " [ 28.96533209 -18.79294939]\n", + " [ 2.08519248 -13.41764748]\n", + " [ 7.46119248 -13.41750786]\n", + " [ 12.83719247 -13.41736824]\n", + " [ 18.21319248 -13.41722863]\n", + " [ 23.58919247 -13.41708901]\n", + " [ 28.96519247 -13.41694939]\n", + " [ 2.08505286 -8.04164748]\n", + " [ 7.46105286 -8.04150786]\n", + " [ 12.83705286 -8.04136825]\n", + " [ 18.21305286 -8.04122863]\n", + " [ 23.58905286 -8.04108901]\n", + " [ 28.96505285 -8.04094939]\n", + " [ 2.08491324 -2.66564748]\n", + " [ 7.46091324 -2.66550786]\n", + " [ 12.83691324 -2.66536825]\n", + " [ 18.21291324 -2.66522863]\n", + " [ 23.58891323 -2.66508901]\n", + " [ 28.96491324 -2.66494939]]\n", + "DEBUG:root:radec2pix: camVec: [[-0.20629584 -0.20812128 -0.20967356 -0.21095376 -0.21196139 -0.21269501\n", + " -0.2131529 -0.21333373 -0.20629584 -0.1798852 -0.15276427 -0.12504507\n", + " -0.09683814 -0.06825398 -0.03940385 -0.01040007 -0.21333373 -0.18599064\n", + " -0.15793623 -0.12927467 -0.10011211 -0.07055816 -0.04072622 -0.01073294\n", + " -0.01040007 -0.01048759 -0.01056224 -0.01062379 -0.01067191 -0.0107063\n", + " -0.0107267 -0.01073294 -0.20703611 -0.20908844 -0.21073192 -0.21196628\n", + " -0.21278893 -0.21319686 -0.19488162 -0.16201965 -0.12820231 -0.09363367\n", + " -0.05851721 -0.02305821 -0.20150602 -0.16750285 -0.13253465 -0.0967959\n", + " -0.06048842 -0.02382238 -0.0105395 -0.01063912 -0.01071899 -0.01077856\n", + " -0.01081726 -0.01083465 -0.20621357 -0.20621357 -0.01083565 -0.01083565\n", + " -0.19565571 -0.16265759 -0.12870452 -0.09399937 -0.05874512 -0.0231472\n", + " -0.19758845 -0.16425347 -0.12996305 -0.09491705 -0.05931746 -0.02337052\n", + " -0.19913769 -0.16553623 -0.13097704 -0.09565767 -0.05977969 -0.02355053\n", + " -0.20030226 -0.16650264 -0.13174231 -0.09621721 -0.0601289 -0.023686\n", + " -0.20107886 -0.16714801 -0.13225382 -0.09659125 -0.06036201 -0.02377567\n", + " -0.201464 -0.16746808 -0.13250731 -0.0967762 -0.06047657 -0.02381854]\n", + " [-0.20078674 -0.17428103 -0.14708674 -0.11931584 -0.09107902 -0.06248699\n", + " -0.03365118 -0.00468399 -0.20078674 -0.20262142 -0.20419049 -0.20549514\n", + " -0.20653488 -0.20730818 -0.20781318 -0.2080483 -0.00468399 -0.00472909\n", + " -0.00476846 -0.004802 -0.00482954 -0.00485094 -0.00486604 -0.00487474\n", + " -0.2080483 -0.18056016 -0.15238099 -0.12361519 -0.09436952 -0.06475431\n", + " -0.03488367 -0.00487474 -0.1893284 -0.1563645 -0.12247778 -0.08787247\n", + " -0.05275245 -0.01732329 -0.20152974 -0.20359843 -0.20526972 -0.2065434\n", + " -0.20741673 -0.20788637 -0.0048039 -0.00485635 -0.0048999 -0.00493429\n", + " -0.00495921 -0.00497442 -0.19615466 -0.1619874 -0.12688576 -0.09104519\n", + " -0.05466885 -0.01796812 -0.20070413 -0.20070413 -0.00497744 -0.00497744\n", + " -0.19010422 -0.19204948 -0.19362274 -0.19482286 -0.19564642 -0.1960896\n", + " -0.15700026 -0.15859759 -0.1598933 -0.16088429 -0.1615658 -0.16193328\n", + " -0.12297381 -0.12422245 -0.12523802 -0.12601654 -0.12655298 -0.12684288\n", + " -0.088228 -0.0891244 -0.0898551 -0.09041635 -0.09080384 -0.09101389\n", + " -0.05296627 -0.0535061 -0.05394701 -0.05428637 -0.05452132 -0.05464944\n", + " -0.01739439 -0.0175743 -0.01772184 -0.01783608 -0.01791601 -0.0179608 ]\n", + " [ 0.95766733 0.96245086 0.96664496 0.9701867 0.97302465 0.97511856\n", + " 0.97643916 0.97696816 0.95766733 0.96259331 0.96693812 0.97063664\n", + " 0.97363531 0.97589175 0.97737455 0.97806326 0.97696816 0.98254014\n", + " 0.9874378 0.9915972 0.99496444 0.99749587 0.99915849 0.99993052\n", + " 0.97806326 0.98350803 0.98826539 0.99227336 0.99548004 0.9978438\n", + " 0.99933381 0.99993052 0.95983895 0.96531454 0.96984084 0.97331841\n", + " 0.97567313 0.97685567 0.95989943 0.96555544 0.97027239 0.9739469\n", + " 0.97650091 0.97788117 0.9794755 0.98585963 0.99116626 0.99529202\n", + " 0.99815658 0.99970383 0.98051633 0.98673547 0.99185942 0.99578843\n", + " 0.99844594 0.99977985 0.95770236 0.95770236 0.9999289 0.9999289\n", + " 0.96207028 0.96781171 0.97259724 0.9763238 0.97891342 0.98031274\n", + " 0.96763099 0.97358492 0.97854164 0.98239859 0.98507763 0.98652493\n", + " 0.97222509 0.97834888 0.98344316 0.98740541 0.99015692 0.99164321\n", + " 0.97575346 0.98200495 0.98720313 0.99124524 0.9940519 0.9955679\n", + " 0.97814205 0.98447887 0.98974676 0.9938426 0.99668644 0.9982225\n", + " 0.97934146 0.98572085 0.99102359 0.99514634 0.99800882 0.99955494]]\n", + "DEBUG:root:radec2pix: lng: [ 90.2964384 90.3478894 90.41900227 90.52370941 90.69317626\n", + " 91.01436915 91.85606354 99.82098825 90.2964384 98.16139155\n", + " 105.72927905 112.77495178 119.16321868 124.84620437 129.84075369\n", + " 134.20177453 99.82098825 167.3372664 173.45282833 175.5877589\n", + " 176.67095531 177.32554882 177.76380439 178.07772632 134.20177453\n", + " 138.45558903 143.3516981 148.95804019 155.308999 162.37619731\n", + " 170.03980495 178.07772632 90.34583364 90.4272438 90.55456533\n", + " 90.78188435 91.3031483 93.7291305 93.74640471 103.2233069\n", + " 112.02083939 119.85139884 126.62419493 132.38733532 153.55676438\n", + " 172.05771641 175.35290167 176.71349424 177.45570466 177.92289984\n", + " 135.96861356 141.60475991 148.27615291 156.06135558 164.90482616\n", + " 174.54251233 90.32368928 90.32368928 178.04899302 178.04899302\n", + " 93.98561362 104.03389942 113.27790792 121.40147615 128.33121468\n", + " 134.15142333 94.8637718 106.96302166 117.69569442 126.6774761\n", + " 133.96694623 139.82391059 96.23245551 111.36280739 123.94129691\n", + " 133.676108 141.03771084 146.62863656 98.65756574 118.5861081\n", + " 133.14971036 143.05690148 149.85595749 154.68575435 104.09063117\n", + " 131.90726386 147.0632386 155.45116677 160.56901612 163.96684771\n", + " 125.42327674 158.50946167 167.09834094 170.82105172 172.88266004\n", + " 174.18898669]\n", + "DEBUG:root:radec2pix: camVec Shape: (3, 96)\n", + "DEBUG:root:radec2pix: lat: [77.88072123 79.48382459 81.11902826 82.7811435 84.46512008 86.16588026\n", + " 87.87809063 89.592501 77.88072123 77.76297714 77.43489604 76.91632478\n", + " 76.23510116 75.42235372 74.50888673 73.52311865 89.592501 88.1660092\n", + " 86.47326812 84.77720909 83.09335022 81.42892112 79.7896882 78.18111406\n", + " 73.52311865 74.53938675 75.48898077 76.34336174 77.07095847 77.63894653\n", + " 78.01676209 78.18111406 78.57535641 80.56236957 82.59241544 84.65614182\n", + " 86.74415968 88.84595283 77.86145981 77.57369823 76.98847403 76.15398719\n", + " 75.12717296 73.96382281 89.0844999 87.04713438 84.96761219 82.90419496\n", + " 80.87086863 78.87814184 73.97634463 75.18085203 76.25721571 77.14851635\n", + " 77.79468183 78.14215534 77.8861108 77.8861108 78.18637455 78.18637455\n", + " 78.54888043 78.24034026 77.6156038 76.73023014 75.64791869 74.42908235\n", + " 80.52930205 80.14668621 79.38566385 78.33252026 77.07564982 75.68958597\n", + " 82.54926459 82.05674096 81.10786838 79.84412063 78.38693881 76.82298725\n", + " 84.59535958 83.92250159 82.7051798 81.18260126 79.50799917 77.76802141\n", + " 86.64409097 85.63122317 84.03581665 82.22723271 80.34771821 78.45776966\n", + " 88.58657998 86.85792078 84.85560606 82.82572865 80.81119712 78.83059106]\n", + "DEBUG:root:radec2pix: ccdpx: [[-4.45000000e+01 -4.99999973e-01]\n", + " [-4.45000000e+01 2.91928572e+02]\n", + " [-4.45000000e+01 5.84357143e+02]\n", + " [-4.45000000e+01 8.76785714e+02]\n", + " [-4.45000000e+01 1.16921429e+03]\n", + " [-4.45000000e+01 1.46164286e+03]\n", + " [-4.45000000e+01 1.75407143e+03]\n", + " [-4.45000000e+01 2.04650000e+03]\n", + " [-4.45000000e+01 -4.99999973e-01]\n", + " [ 2.47928571e+02 -4.99999766e-01]\n", + " [ 5.40357143e+02 -5.00000023e-01]\n", + " [ 8.32785714e+02 -4.99999798e-01]\n", + " [ 1.12521429e+03 -5.00000229e-01]\n", + " [ 1.41764286e+03 -5.00000231e-01]\n", + " [ 1.71007143e+03 -4.99999870e-01]\n", + " [ 2.00250000e+03 -4.99999884e-01]\n", + " [-4.45000000e+01 2.04650000e+03]\n", + " [ 2.47928571e+02 2.04650000e+03]\n", + " [ 5.40357143e+02 2.04650000e+03]\n", + " [ 8.32785714e+02 2.04650000e+03]\n", + " [ 1.12521429e+03 2.04650000e+03]\n", + " [ 1.41764286e+03 2.04650000e+03]\n", + " [ 1.71007143e+03 2.04650000e+03]\n", + " [ 2.00250000e+03 2.04650000e+03]\n", + " [ 2.00250000e+03 -4.99999884e-01]\n", + " [ 2.00250000e+03 2.91928572e+02]\n", + " [ 2.00250000e+03 5.84357143e+02]\n", + " [ 2.00250000e+03 8.76785714e+02]\n", + " [ 2.00250000e+03 1.16921429e+03]\n", + " [ 2.00250000e+03 1.46164286e+03]\n", + " [ 2.00250000e+03 1.75407143e+03]\n", + " [ 2.00250000e+03 2.04650000e+03]\n", + " [-4.35000000e+01 1.27000000e+02]\n", + " [-4.35000000e+01 4.85400000e+02]\n", + " [-4.35000000e+01 8.43800000e+02]\n", + " [-4.35000000e+01 1.20220000e+03]\n", + " [-4.35000000e+01 1.56060000e+03]\n", + " [-4.35000000e+01 1.91900000e+03]\n", + " [ 8.30000000e+01 4.99999770e-01]\n", + " [ 4.41400000e+02 5.00000267e-01]\n", + " [ 7.99800000e+02 4.99999825e-01]\n", + " [ 1.15820000e+03 5.00000071e-01]\n", + " [ 1.51660000e+03 5.00000113e-01]\n", + " [ 1.87500000e+03 5.00000214e-01]\n", + " [ 8.30000000e+01 2.04550000e+03]\n", + " [ 4.41400000e+02 2.04550000e+03]\n", + " [ 7.99800000e+02 2.04550000e+03]\n", + " [ 1.15820000e+03 2.04550000e+03]\n", + " [ 1.51660000e+03 2.04550000e+03]\n", + " [ 1.87500000e+03 2.04550000e+03]\n", + " [ 2.00150000e+03 1.27000000e+02]\n", + " [ 2.00150000e+03 4.85400000e+02]\n", + " [ 2.00150000e+03 8.43800000e+02]\n", + " [ 2.00150000e+03 1.20220000e+03]\n", + " [ 2.00150000e+03 1.56060000e+03]\n", + " [ 2.00150000e+03 1.91900000e+03]\n", + " [-4.35000000e+01 5.00000284e-01]\n", + " [-4.35000000e+01 5.00000284e-01]\n", + " [ 2.00150000e+03 2.04550000e+03]\n", + " [ 2.00150000e+03 2.04550000e+03]\n", + " [ 8.30000000e+01 1.27000000e+02]\n", + " [ 4.41400000e+02 1.27000000e+02]\n", + " [ 7.99800000e+02 1.27000000e+02]\n", + " [ 1.15820000e+03 1.27000000e+02]\n", + " [ 1.51660000e+03 1.27000000e+02]\n", + " [ 1.87500000e+03 1.27000000e+02]\n", + " [ 8.30000000e+01 4.85400000e+02]\n", + " [ 4.41400000e+02 4.85400000e+02]\n", + " [ 7.99800000e+02 4.85400000e+02]\n", + " [ 1.15820000e+03 4.85400000e+02]\n", + " [ 1.51660000e+03 4.85400000e+02]\n", + " [ 1.87500000e+03 4.85400000e+02]\n", + " [ 8.30000000e+01 8.43800000e+02]\n", + " [ 4.41400000e+02 8.43800000e+02]\n", + " [ 7.99800000e+02 8.43800000e+02]\n", + " [ 1.15820000e+03 8.43800000e+02]\n", + " [ 1.51660000e+03 8.43800000e+02]\n", + " [ 1.87500000e+03 8.43800000e+02]\n", + " [ 8.30000000e+01 1.20220000e+03]\n", + " [ 4.41400000e+02 1.20220000e+03]\n", + " [ 7.99800000e+02 1.20220000e+03]\n", + " [ 1.15820000e+03 1.20220000e+03]\n", + " [ 1.51660000e+03 1.20220000e+03]\n", + " [ 1.87500000e+03 1.20220000e+03]\n", + " [ 8.30000000e+01 1.56060000e+03]\n", + " [ 4.41400000e+02 1.56060000e+03]\n", + " [ 7.99800000e+02 1.56060000e+03]\n", + " [ 1.15820000e+03 1.56060000e+03]\n", + " [ 1.51660000e+03 1.56060000e+03]\n", + " [ 1.87500000e+03 1.56060000e+03]\n", + " [ 8.30000000e+01 1.91900000e+03]\n", + " [ 4.41400000e+02 1.91900000e+03]\n", + " [ 7.99800000e+02 1.91900000e+03]\n", + " [ 1.15820000e+03 1.91900000e+03]\n", + " [ 1.51660000e+03 1.91900000e+03]\n", + " [ 1.87500000e+03 1.91900000e+03]]\n", + "DEBUG:root:cartToSphere: vec: [[-0.20629584 -0.20078674 0.95766733]\n", + " [-0.20812128 -0.17428103 0.96245086]\n", + " [-0.20967356 -0.14708674 0.96664496]\n", + " [-0.21095376 -0.11931584 0.9701867 ]\n", + " [-0.21196139 -0.09107902 0.97302465]\n", + " [-0.21269501 -0.06248699 0.97511856]\n", + " [-0.2131529 -0.03365118 0.97643916]\n", + " [-0.21333373 -0.00468399 0.97696816]\n", + " [-0.20629584 -0.20078674 0.95766733]\n", + " [-0.1798852 -0.20262142 0.96259331]\n", + " [-0.15276427 -0.20419049 0.96693812]\n", + " [-0.12504507 -0.20549514 0.97063664]\n", + " [-0.09683814 -0.20653488 0.97363531]\n", + " [-0.06825398 -0.20730818 0.97589175]\n", + " [-0.03940385 -0.20781318 0.97737455]\n", + " [-0.01040007 -0.2080483 0.97806326]\n", + " [-0.21333373 -0.00468399 0.97696816]\n", + " [-0.18599064 -0.00472909 0.98254014]\n", + " [-0.15793623 -0.00476846 0.9874378 ]\n", + " [-0.12927467 -0.004802 0.9915972 ]\n", + " [-0.10011211 -0.00482954 0.99496444]\n", + " [-0.07055816 -0.00485094 0.99749587]\n", + " [-0.04072622 -0.00486604 0.99915849]\n", + " [-0.01073294 -0.00487474 0.99993052]\n", + " [-0.01040007 -0.2080483 0.97806326]\n", + " [-0.01048759 -0.18056016 0.98350803]\n", + " [-0.01056224 -0.15238099 0.98826539]\n", + " [-0.01062379 -0.12361519 0.99227336]\n", + " [-0.01067191 -0.09436952 0.99548004]\n", + " [-0.0107063 -0.06475431 0.9978438 ]\n", + " [-0.0107267 -0.03488367 0.99933381]\n", + " [-0.01073294 -0.00487474 0.99993052]\n", + " [-0.20703611 -0.1893284 0.95983895]\n", + " [-0.20908844 -0.1563645 0.96531454]\n", + " [-0.21073192 -0.12247778 0.96984084]\n", + " [-0.21196628 -0.08787247 0.97331841]\n", + " [-0.21278893 -0.05275245 0.97567313]\n", + " [-0.21319686 -0.01732329 0.97685567]\n", + " [-0.19488162 -0.20152974 0.95989943]\n", + " [-0.16201965 -0.20359843 0.96555544]\n", + " [-0.12820231 -0.20526972 0.97027239]\n", + " [-0.09363367 -0.2065434 0.9739469 ]\n", + " [-0.05851721 -0.20741673 0.97650091]\n", + " [-0.02305821 -0.20788637 0.97788117]\n", + " [-0.20150602 -0.0048039 0.9794755 ]\n", + " [-0.16750285 -0.00485635 0.98585963]\n", + " [-0.13253465 -0.0048999 0.99116626]\n", + " [-0.0967959 -0.00493429 0.99529202]\n", + " [-0.06048842 -0.00495921 0.99815658]\n", + " [-0.02382238 -0.00497442 0.99970383]\n", + " [-0.0105395 -0.19615466 0.98051633]\n", + " [-0.01063912 -0.1619874 0.98673547]\n", + " [-0.01071899 -0.12688576 0.99185942]\n", + " [-0.01077856 -0.09104519 0.99578843]\n", + " [-0.01081726 -0.05466885 0.99844594]\n", + " [-0.01083465 -0.01796812 0.99977985]\n", + " [-0.20621357 -0.20070413 0.95770236]\n", + " [-0.20621357 -0.20070413 0.95770236]\n", + " [-0.01083565 -0.00497744 0.9999289 ]\n", + " [-0.01083565 -0.00497744 0.9999289 ]\n", + " [-0.19565571 -0.19010422 0.96207028]\n", + " [-0.16265759 -0.19204948 0.96781171]\n", + " [-0.12870452 -0.19362274 0.97259724]\n", + " [-0.09399937 -0.19482286 0.9763238 ]\n", + " [-0.05874512 -0.19564642 0.97891342]\n", + " [-0.0231472 -0.1960896 0.98031274]\n", + " [-0.19758845 -0.15700026 0.96763099]\n", + " [-0.16425347 -0.15859759 0.97358492]\n", + " [-0.12996305 -0.1598933 0.97854164]\n", + " [-0.09491705 -0.16088429 0.98239859]\n", + " [-0.05931746 -0.1615658 0.98507763]\n", + " [-0.02337052 -0.16193328 0.98652493]\n", + " [-0.19913769 -0.12297381 0.97222509]\n", + " [-0.16553623 -0.12422245 0.97834888]\n", + " [-0.13097704 -0.12523802 0.98344316]\n", + " [-0.09565767 -0.12601654 0.98740541]\n", + " [-0.05977969 -0.12655298 0.99015692]\n", + " [-0.02355053 -0.12684288 0.99164321]\n", + " [-0.20030226 -0.088228 0.97575346]\n", + " [-0.16650264 -0.0891244 0.98200495]\n", + " [-0.13174231 -0.0898551 0.98720313]\n", + " [-0.09621721 -0.09041635 0.99124524]\n", + " [-0.0601289 -0.09080384 0.9940519 ]\n", + " [-0.023686 -0.09101389 0.9955679 ]\n", + " [-0.20107886 -0.05296627 0.97814205]\n", + " [-0.16714801 -0.0535061 0.98447887]\n", + " [-0.13225382 -0.05394701 0.98974676]\n", + " [-0.09659125 -0.05428637 0.9938426 ]\n", + " [-0.06036201 -0.05452132 0.99668644]\n", + " [-0.02377567 -0.05464944 0.9982225 ]\n", + " [-0.201464 -0.01739439 0.97934146]\n", + " [-0.16746808 -0.0175743 0.98572085]\n", + " [-0.13250731 -0.01772184 0.99102359]\n", + " [-0.0967762 -0.01783608 0.99514634]\n", + " [-0.06047657 -0.01791601 0.99800882]\n", + " [-0.02381854 -0.0179608 0.99955494]]\n", + "DEBUG:root:radec2pix: lng: [224.22465666 219.9428498 215.04979529 209.49258103 203.25301711\n", + " 196.37209253 188.97143587 181.25779309 224.22465666 228.40166279\n", + " 233.19815281 238.6792283 244.87949815 251.77642798 259.26349599\n", + " 267.13824006 181.25779309 181.45651552 181.7293675 182.12731457\n", + " 182.76188514 183.93294711 186.8134933 204.42682228 267.13824006\n", + " 266.67578867 266.03490179 265.0879329 263.54803827 260.61180811\n", + " 252.90738353 204.42682228 222.44199402 216.7905754 210.16523251\n", + " 202.51687812 193.92347078 184.64535837 225.96080389 231.48791131\n", + " 238.01293878 245.61347707 254.24497485 263.67077373 181.36567301\n", + " 181.66068982 182.11730117 182.91819426 184.68697431 191.79462375\n", + " 266.92442169 266.24228499 265.17126169 263.2483557 258.80752919\n", + " 238.9103071 224.22429417 224.22429417 204.67204832 204.67204832\n", + " 224.17550953 229.73684595 236.38729877 244.24332674 253.28700279\n", + " 263.26773103 218.4700285 223.99636381 230.89540499 239.46063162\n", + " 249.83973486 261.78766678 211.69663969 216.8854629 223.71683254\n", + " 232.7982941 244.71540545 259.48183646 203.77225927 208.15895021\n", + " 214.29602039 223.21973304 236.48809111 255.41258234 194.75709541\n", + " 197.7504966 202.19079752 209.33692857 222.08957905 246.48817507\n", + " 184.93467768 185.99075879 187.61766642 190.44256036 196.50176943\n", + " 217.01878407]\n", + "DEBUG:root:radec2pix: fitpx: [[ 2.13550000e+03 -4.99999973e-01]\n", + " [ 2.13550000e+03 2.91928572e+02]\n", + " [ 2.13550000e+03 5.84357143e+02]\n", + " [ 2.13550000e+03 8.76785714e+02]\n", + " [ 2.13550000e+03 1.16921429e+03]\n", + " [ 2.13550000e+03 1.46164286e+03]\n", + " [ 2.13550000e+03 1.75407143e+03]\n", + " [ 2.13550000e+03 2.04650000e+03]\n", + " [ 2.13550000e+03 -4.99999973e-01]\n", + " [ 2.42792857e+03 -4.99999766e-01]\n", + " [ 2.72035714e+03 -5.00000023e-01]\n", + " [ 3.01278571e+03 -4.99999798e-01]\n", + " [ 3.30521429e+03 -5.00000229e-01]\n", + " [ 3.59764286e+03 -5.00000231e-01]\n", + " [ 3.89007143e+03 -4.99999870e-01]\n", + " [ 4.18250000e+03 -4.99999884e-01]\n", + " [ 2.13550000e+03 2.04650000e+03]\n", + " [ 2.42792857e+03 2.04650000e+03]\n", + " [ 2.72035714e+03 2.04650000e+03]\n", + " [ 3.01278571e+03 2.04650000e+03]\n", + " [ 3.30521429e+03 2.04650000e+03]\n", + " [ 3.59764286e+03 2.04650000e+03]\n", + " [ 3.89007143e+03 2.04650000e+03]\n", + " [ 4.18250000e+03 2.04650000e+03]\n", + " [ 4.18250000e+03 -4.99999884e-01]\n", + " [ 4.18250000e+03 2.91928572e+02]\n", + " [ 4.18250000e+03 5.84357143e+02]\n", + " [ 4.18250000e+03 8.76785714e+02]\n", + " [ 4.18250000e+03 1.16921429e+03]\n", + " [ 4.18250000e+03 1.46164286e+03]\n", + " [ 4.18250000e+03 1.75407143e+03]\n", + " [ 4.18250000e+03 2.04650000e+03]\n", + " [ 2.13650000e+03 1.27000000e+02]\n", + " [ 2.13650000e+03 4.85400000e+02]\n", + " [ 2.13650000e+03 8.43800000e+02]\n", + " [ 2.13650000e+03 1.20220000e+03]\n", + " [ 2.13650000e+03 1.56060000e+03]\n", + " [ 2.13650000e+03 1.91900000e+03]\n", + " [ 2.26300000e+03 4.99999770e-01]\n", + " [ 2.62140000e+03 5.00000267e-01]\n", + " [ 2.97980000e+03 4.99999825e-01]\n", + " [ 3.33820000e+03 5.00000071e-01]\n", + " [ 3.69660000e+03 5.00000113e-01]\n", + " [ 4.05500000e+03 5.00000214e-01]\n", + " [ 2.26300000e+03 2.04550000e+03]\n", + " [ 2.62140000e+03 2.04550000e+03]\n", + " [ 2.97980000e+03 2.04550000e+03]\n", + " [ 3.33820000e+03 2.04550000e+03]\n", + " [ 3.69660000e+03 2.04550000e+03]\n", + " [ 4.05500000e+03 2.04550000e+03]\n", + " [ 4.18150000e+03 1.27000000e+02]\n", + " [ 4.18150000e+03 4.85400000e+02]\n", + " [ 4.18150000e+03 8.43800000e+02]\n", + " [ 4.18150000e+03 1.20220000e+03]\n", + " [ 4.18150000e+03 1.56060000e+03]\n", + " [ 4.18150000e+03 1.91900000e+03]\n", + " [ 2.13650000e+03 5.00000284e-01]\n", + " [ 2.13650000e+03 5.00000284e-01]\n", + " [ 4.18150000e+03 2.04550000e+03]\n", + " [ 4.18150000e+03 2.04550000e+03]\n", + " [ 2.26300000e+03 1.27000000e+02]\n", + " [ 2.62140000e+03 1.27000000e+02]\n", + " [ 2.97980000e+03 1.27000000e+02]\n", + " [ 3.33820000e+03 1.27000000e+02]\n", + " [ 3.69660000e+03 1.27000000e+02]\n", + " [ 4.05500000e+03 1.27000000e+02]\n", + " [ 2.26300000e+03 4.85400000e+02]\n", + " [ 2.62140000e+03 4.85400000e+02]\n", + " [ 2.97980000e+03 4.85400000e+02]\n", + " [ 3.33820000e+03 4.85400000e+02]\n", + " [ 3.69660000e+03 4.85400000e+02]\n", + " [ 4.05500000e+03 4.85400000e+02]\n", + " [ 2.26300000e+03 8.43800000e+02]\n", + " [ 2.62140000e+03 8.43800000e+02]\n", + " [ 2.97980000e+03 8.43800000e+02]\n", + " [ 3.33820000e+03 8.43800000e+02]\n", + " [ 3.69660000e+03 8.43800000e+02]\n", + " [ 4.05500000e+03 8.43800000e+02]\n", + " [ 2.26300000e+03 1.20220000e+03]\n", + " [ 2.62140000e+03 1.20220000e+03]\n", + " [ 2.97980000e+03 1.20220000e+03]\n", + " [ 3.33820000e+03 1.20220000e+03]\n", + " [ 3.69660000e+03 1.20220000e+03]\n", + " [ 4.05500000e+03 1.20220000e+03]\n", + " [ 2.26300000e+03 1.56060000e+03]\n", + " [ 2.62140000e+03 1.56060000e+03]\n", + " [ 2.97980000e+03 1.56060000e+03]\n", + " [ 3.33820000e+03 1.56060000e+03]\n", + " [ 3.69660000e+03 1.56060000e+03]\n", + " [ 4.05500000e+03 1.56060000e+03]\n", + " [ 2.26300000e+03 1.91900000e+03]\n", + " [ 2.62140000e+03 1.91900000e+03]\n", + " [ 2.97980000e+03 1.91900000e+03]\n", + " [ 3.33820000e+03 1.91900000e+03]\n", + " [ 3.69660000e+03 1.91900000e+03]\n", + " [ 4.05500000e+03 1.91900000e+03]]\n", + "DEBUG:root:radec2pix: lat: [73.26908943 74.24907619 75.16003276 75.97420276 76.66164507 77.19203919\n", + " 77.53795274 77.67919539 73.26908943 74.27917066 75.22575502 76.08096918\n", + " 76.81416078 77.39343277 77.78879656 77.97677996 77.67919539 79.27760057\n", + " 80.9086962 82.56716816 84.24766937 85.94438651 87.64930302 89.3245763\n", + " 77.97677996 79.57988268 81.21386953 82.87289707 84.55034798 86.23677698\n", + " 87.90848861 89.3245763 73.70687233 74.86526918 75.89266936 76.7347974\n", + " 77.33616788 77.64902834 73.71922865 74.91822462 75.99447399 76.89265343\n", + " 77.55435927 77.92679672 78.37161008 80.3532483 82.37868114 84.43807116\n", + " 86.5205023 88.60550058 78.67128345 80.65746446 82.68422414 84.73967937\n", + " 86.80532112 88.79773368 73.27606371 73.27606371 89.31677804 89.31677804\n", + " 74.16894713 75.42332545 76.55590489 77.50736059 78.21290493 78.61205636\n", + " 75.38223897 76.80151051 78.10907648 79.23409871 80.08944165 80.58344411\n", + " 76.46449862 78.05559614 79.5593541 80.89695848 81.95437214 82.58757556\n", + " 77.35718097 79.11401738 80.82399404 82.41287861 83.74766412 84.60361539\n", + " 77.99846994 79.89205969 81.78816951 83.63850339 85.33442441 86.58329889\n", + " 78.33357011 80.30591073 82.31728996 84.35260664 86.38369379 88.29053235]\n", + "DEBUG:root:fitpix2pix: ccdpx: shape: (96, 2)\n", + "DEBUG:root:optics_fp: rtanth: [31.72889598 27.34254715 22.95622881 18.56996252 14.18379661 9.79786588\n", + " 5.41274207 1.03869565 31.72889598 32.05497925 32.96668106 34.41749464\n", + " 36.342913 38.67211172 41.33689193 44.27670445 1.03869565 4.67736497\n", + " 9.00877953 13.37609754 17.75284128 22.13341982 26.51593264 30.89955671\n", + " 44.27670445 41.24704355 38.47976296 36.03536075 33.98358137 32.39910327\n", + " 31.35285463 30.89955671 29.81652098 24.44065782 19.06487182 13.68925392\n", + " 8.31413013 2.94220985 31.78219953 32.5803988 34.21489906 36.57374743\n", + " 39.52747698 42.9535403 2.33383998 7.53796979 12.88401801 18.24767393\n", + " 23.61694389 28.9887086 42.91616052 39.37153369 36.28003925 33.76636764\n", + " 31.96711857 31.00691067 31.71398377 31.71398377 30.88506563 30.88506563\n", + " 29.88906763 30.73646927 32.46394115 34.94119572 38.021962 41.57228381\n", + " 24.52910914 25.55486988 27.6084825 30.48291307 33.97043457 37.9021848\n", + " 19.17813281 20.47376266 22.98590632 26.36914053 30.33338108 34.67995379\n", + " 13.846556 15.59170589 18.76907627 22.78723124 27.27710291 32.04099765\n", + " 8.57065926 11.17275166 15.2972975 20.02465966 25.01538387 30.13892197\n", + " 3.60389222 8.02260672 13.1734259 18.4531524 23.77606504 29.11848994]\n", + "DEBUG:root:fitpix2pix: visCut: True\n", + "DEBUG:root:optics_fp: cphi: [-0.0051738 -0.00607178 -0.0073129 -0.00914033 -0.01209791 -0.01770316\n", + " -0.03238875 -0.17057046 -0.0051738 -0.14196195 -0.27109236 -0.38711253\n", + " -0.48729918 -0.57137557 -0.64065601 -0.69718731 -0.17057046 -0.97567733\n", + " -0.99347832 -0.99703634 -0.99831251 -0.99891078 -0.99923847 -0.99943725\n", + " -0.69718731 -0.74844189 -0.80231456 -0.85678989 -0.9085738 -0.95306497\n", + " -0.98492815 -0.99943725 -0.0060359 -0.00745674 -0.00967884 -0.01364603\n", + " -0.02274227 -0.06503966 -0.06534051 -0.22874689 -0.3749438 -0.49775222\n", + " -0.59656384 -0.67413914 -0.89537598 -0.99040776 -0.99671262 -0.99835535\n", + " -0.9990142 -0.99934296 -0.71895916 -0.78374506 -0.85059233 -0.91398049\n", + " -0.96549457 -0.99546704 -0.00564941 -0.00564941 -0.9994203 -0.9994203\n", + " -0.06950599 -0.24249594 -0.39519134 -0.52103162 -0.62020649 -0.69655704\n", + " -0.08478692 -0.29175445 -0.46477551 -0.59730991 -0.69424327 -0.76406532\n", + " -0.10856248 -0.36427233 -0.55834321 -0.69058088 -0.77756 -0.83512289\n", + " -0.15052868 -0.47847897 -0.68390701 -0.79923279 -0.86476566 -0.90397627\n", + " -0.24345642 -0.66792691 -0.83927119 -0.9096075 -0.9430429 -0.96110205\n", + " -0.57961227 -0.93047808 -0.97475473 -0.98719494 -0.99229449 -0.99486127]\n", + "DEBUG:root:optics_fp: sphi: [0.99998662 0.99998157 0.99997326 0.99995823 0.99992682 0.99984329\n", + " 0.99947535 0.98534548 0.99998662 0.98987212 0.96255334 0.92203248\n", + " 0.87323508 0.82068871 0.76782803 0.71688902 0.98534548 0.21921165\n", + " 0.11402118 0.07693204 0.0580701 0.04666103 0.03901907 0.03354371\n", + " 0.71688902 0.66320038 0.59690146 0.51566567 0.41772438 0.30276585\n", + " 0.17296396 0.03354371 0.99998178 0.9999722 0.99995316 0.99990689\n", + " 0.99974136 0.99788268 0.99786303 0.97348593 0.92704754 0.86731928\n", + " 0.80256563 0.73860437 0.44531096 0.13817549 0.08101827 0.0573289\n", + " 0.04439174 0.0362443 0.69505232 0.62108267 0.52582572 0.40575813\n", + " 0.26042318 0.09510716 0.99998404 0.99998404 0.03404492 0.03404492\n", + " 0.99758153 0.97015242 0.91859883 0.85353737 0.7844386 0.71750142\n", + " 0.99639911 0.95649325 0.88542855 0.80201052 0.71974043 0.64513889\n", + " 0.99408963 0.93129247 0.82961007 0.72325518 0.62880875 0.55006341\n", + " 0.98860564 0.87809901 0.72956919 0.60102159 0.50217562 0.42758264\n", + " 0.96991184 0.74422687 0.54371304 0.41546865 0.33267115 0.27619351\n", + " 0.81489239 0.36634758 0.22327834 0.15951848 0.12390179 0.10124753]\n", + "DEBUG:root:optics_fp: rtanth: [45.0390902 42.09683712 39.42396804 37.07878541 35.12698266 33.63710755\n", + " 32.6724136 32.28002056 45.0390902 42.00763364 39.23320577 36.77402747\n", + " 34.69719395 33.07480842 31.97611838 31.45604637 32.28002056 27.89482687\n", + " 23.51009392 19.1261386 14.74365456 10.36450837 5.99601772 1.72131774\n", + " 31.45604637 27.07594694 22.69829207 18.32483384 13.95951711 9.61343916\n", + " 5.33383708 1.72131774 43.71543665 40.28285706 37.31193504 34.92069834\n", + " 33.23450917 32.36375719 43.67830098 40.1281473 37.02087501 34.47644006\n", + " 32.62678968 31.59418683 30.3683705 24.99424245 19.62114004 14.2502235\n", + " 8.88545749 3.55479843 29.54687443 24.18030108 18.81910954 13.46972753\n", + " 8.15542687 3.06450112 45.0178789 45.0178789 1.74119478 1.74119478\n", + " 42.33466612 38.66132674 35.42562866 32.75751668 30.80482728 29.70896533\n", + " 38.78006096 34.73279944 31.09090442 28.01292685 25.70226752 24.37810068\n", + " 35.68424094 31.23842634 27.13146257 23.54136773 20.73833358 19.07259071\n", + " 33.17589074 28.33926527 23.73585762 19.53127415 16.04223037 13.82166388\n", + " 31.39613279 26.23340206 21.17707168 16.3263008 11.93442847 8.72443809\n", + " 30.47289508 25.12113778 19.7825313 14.471637 9.23638255 4.35844005]\n", + "DEBUG:root:optics_fp: xyfp: [[ 0.16415906 -31.72847131]\n", + " [ 0.16601788 -27.34204313]\n", + " [ 0.1678767 -22.95561497]\n", + " [ 0.16973552 -18.56918678]\n", + " [ 0.17159434 -14.1827586 ]\n", + " [ 0.17345315 -9.79633043]\n", + " [ 0.17531197 -5.40990225]\n", + " [ 0.17717079 -1.02347407]\n", + " [ 0.16415906 -31.72847131]\n", + " [ 4.55058724 -31.73033014]\n", + " [ 8.93701541 -31.73218895]\n", + " [ 13.32344359 -31.73404778]\n", + " [ 17.70987177 -31.73590659]\n", + " [ 22.09629995 -31.73776541]\n", + " [ 26.48272812 -31.73962422]\n", + " [ 30.8691563 -31.74148305]\n", + " [ 0.17717079 -1.02347407]\n", + " [ 4.56359897 -1.02533289]\n", + " [ 8.95002714 -1.02719171]\n", + " [ 13.33645532 -1.02905053]\n", + " [ 17.7228835 -1.03090935]\n", + " [ 22.10931168 -1.03276817]\n", + " [ 26.49573986 -1.03462699]\n", + " [ 30.88216803 -1.0364858 ]\n", + " [ 30.8691563 -31.74148305]\n", + " [ 30.87101512 -27.35505487]\n", + " [ 30.87287394 -22.96862669]\n", + " [ 30.87473276 -18.58219851]\n", + " [ 30.87659158 -14.19577034]\n", + " [ 30.8784504 -9.80934216]\n", + " [ 30.88030922 -5.42291398]\n", + " [ 30.88216803 -1.0364858 ]\n", + " [ 0.17996951 -29.81597784]\n", + " [ 0.18224768 -24.43997833]\n", + " [ 0.18452584 -19.06397881]\n", + " [ 0.18680401 -13.6879793 ]\n", + " [ 0.18908217 -8.31197977]\n", + " [ 0.19136034 -2.93598025]\n", + " [ 2.07666524 -31.71428177]\n", + " [ 7.45266476 -31.71655993]\n", + " [ 12.82866428 -31.7188381 ]\n", + " [ 18.2046638 -31.72111627]\n", + " [ 23.58066331 -31.72339443]\n", + " [ 28.95666283 -31.7256726 ]\n", + " [ 2.08966426 -1.03928452]\n", + " [ 7.46566378 -1.04156269]\n", + " [ 12.8416633 -1.04384085]\n", + " [ 18.21766282 -1.04611902]\n", + " [ 23.59366233 -1.04839718]\n", + " [ 28.96966185 -1.05067535]\n", + " [ 30.85496675 -29.82897686]\n", + " [ 30.85724492 -24.45297735]\n", + " [ 30.85952308 -19.07697783]\n", + " [ 30.86180126 -13.70097831]\n", + " [ 30.86407941 -8.32497879]\n", + " [ 30.86635759 -2.94897928]\n", + " [ 0.17916541 -31.71347767]\n", + " [ 0.17916541 -31.71347767]\n", + " [ 30.86716168 -1.05147945]\n", + " [ 30.86716168 -1.05147945]\n", + " [ 2.07746934 -29.81678193]\n", + " [ 7.45346886 -29.8190601 ]\n", + " [ 12.82946837 -29.82133827]\n", + " [ 18.20546789 -29.82361643]\n", + " [ 23.58146741 -29.82589461]\n", + " [ 28.95746693 -29.82817277]\n", + " [ 2.07974751 -24.44078242]\n", + " [ 7.45574702 -24.44306058]\n", + " [ 12.83174654 -24.44533875]\n", + " [ 18.20774606 -24.44761692]\n", + " [ 23.58374558 -24.44989508]\n", + " [ 28.95974509 -24.45217325]\n", + " [ 2.08202567 -19.0647829 ]\n", + " [ 7.45802519 -19.06706107]\n", + " [ 12.83402471 -19.06933924]\n", + " [ 18.21002422 -19.0716174 ]\n", + " [ 23.58602374 -19.07389557]\n", + " [ 28.96202325 -19.07617373]\n", + " [ 2.08430384 -13.68878339]\n", + " [ 7.46030335 -13.69106155]\n", + " [ 12.83630287 -13.69333972]\n", + " [ 18.21230239 -13.69561789]\n", + " [ 23.58830191 -13.69789605]\n", + " [ 28.96430143 -13.70017422]\n", + " [ 2.086582 -8.31278387]\n", + " [ 7.46258152 -8.31506203]\n", + " [ 12.83858103 -8.3173402 ]\n", + " [ 18.21458055 -8.31961837]\n", + " [ 23.59058007 -8.32189653]\n", + " [ 28.96657959 -8.3241747 ]\n", + " [ 2.08886017 -2.93678435]\n", + " [ 7.46485969 -2.93906252]\n", + " [ 12.8408592 -2.94134068]\n", + " [ 18.21685872 -2.94361885]\n", + " [ 23.59285824 -2.94589701]\n", + " [ 28.96885776 -2.94817518]]\n", + "DEBUG:root:optics_fp: xyfp shape: (96, 2)\n", + "DEBUG:root:optics_fp: cphi: [-0.71661052 -0.76668522 -0.81865324 -0.87041945 -0.91877042 -0.95945138\n", + " -0.98776621 -0.99975905 -0.71661052 -0.66390451 -0.59904941 -0.51982885\n", + " -0.42452343 -0.31272572 -0.18629262 -0.04992637 -0.99975905 -0.9996769\n", + " -0.99954452 -0.99931081 -0.99883841 -0.997645 -0.9929376 -0.91049017\n", + " -0.04992637 -0.05798589 -0.06914879 -0.08562676 -0.11237014 -0.16312264\n", + " -0.29391715 -0.91049017 -0.73796092 -0.80082989 -0.86457988 -0.92376676\n", + " -0.97061799 -0.99671508 -0.69515031 -0.62267974 -0.52972774 -0.41289021\n", + " -0.27152486 -0.11024131 -0.99971595 -0.99957998 -0.99931728 -0.99870324\n", + " -0.99665599 -0.97888657 -0.05365319 -0.06553749 -0.08417765 -0.1175659\n", + " -0.19410544 -0.51637928 -0.71661494 -0.71661494 -0.90871193 -0.90871193\n", + " -0.71720854 -0.64629919 -0.55357618 -0.43455016 -0.28757779 -0.11723007\n", + " -0.78293369 -0.71938388 -0.63073804 -0.50813028 -0.34464727 -0.14284199\n", + " -0.85084193 -0.79983697 -0.72276415 -0.60462283 -0.42711476 -0.18254722\n", + " -0.91515494 -0.88164179 -0.82613743 -0.72873282 -0.5521103 -0.25185684\n", + " -0.9670144 -0.95239316 -0.92593126 -0.87175367 -0.74209777 -0.39893833\n", + " -0.99629342 -0.99453874 -0.99117471 -0.98343711 -0.95881096 -0.79843817]\n", + "DEBUG:root:optics_fp: sphi: [-0.69747355 -0.64202319 -0.57428814 -0.49231086 -0.39479224 -0.28187416\n", + " -0.15594205 -0.02195087 -0.69747355 -0.74781736 -0.80071206 -0.85427043\n", + " -0.90541695 -0.94984347 -0.98249431 -0.9987529 -0.02195087 -0.02541825\n", + " -0.03017857 -0.03712011 -0.04818532 -0.06858898 -0.11863781 -0.41353071\n", + " -0.9987529 -0.9983174 -0.99760636 -0.99632728 -0.99366642 -0.9866058\n", + " -0.9558309 -0.41353071 -0.67484345 -0.59889188 -0.50249541 -0.38295557\n", + " -0.24062567 -0.080988 -0.71886442 -0.7824768 -0.84816774 -0.91078081\n", + " -0.96243143 -0.99390485 -0.02383323 -0.02898045 -0.03694547 -0.05091008\n", + " -0.08171193 -0.2044042 -0.99855963 -0.99785011 -0.99645076 -0.99306508\n", + " -0.98098067 -0.85635999 -0.69746902 -0.69746902 -0.41742381 -0.41742381\n", + " -0.6968586 -0.76308411 -0.83279855 -0.90064763 -0.95775728 -0.99310478\n", + " -0.62210517 -0.69461272 -0.77599583 -0.86128022 -0.93873226 -0.98974551\n", + " -0.52542175 -0.60021731 -0.69109478 -0.79651192 -0.90419742 -0.98319709\n", + " -0.40310226 -0.47191923 -0.56346867 -0.68479813 -0.83377108 -0.9677645\n", + " -0.2547217 -0.30487255 -0.37769207 -0.48994442 -0.67029166 -0.91697776\n", + " -0.08601994 -0.10436806 -0.13256201 -0.18124971 -0.28404496 -0.60207682]\n", + "DEBUG:root:make_az_asym: xyp: [[ 0.16415906 -31.72847131]\n", + " [ 0.16601788 -27.34204313]\n", + " [ 0.1678767 -22.95561497]\n", + " [ 0.16973552 -18.56918678]\n", + " [ 0.17159434 -14.1827586 ]\n", + " [ 0.17345315 -9.79633043]\n", + " [ 0.17531197 -5.40990225]\n", + " [ 0.17717079 -1.02347407]\n", + " [ 0.16415906 -31.72847131]\n", + " [ 4.55058724 -31.73033014]\n", + " [ 8.93701541 -31.73218895]\n", + " [ 13.32344359 -31.73404778]\n", + " [ 17.70987177 -31.73590659]\n", + " [ 22.09629995 -31.73776541]\n", + " [ 26.48272812 -31.73962422]\n", + " [ 30.8691563 -31.74148305]\n", + " [ 0.17717079 -1.02347407]\n", + " [ 4.56359897 -1.02533289]\n", + " [ 8.95002714 -1.02719171]\n", + " [ 13.33645532 -1.02905053]\n", + " [ 17.7228835 -1.03090935]\n", + " [ 22.10931168 -1.03276817]\n", + " [ 26.49573986 -1.03462699]\n", + " [ 30.88216803 -1.0364858 ]\n", + " [ 30.8691563 -31.74148305]\n", + " [ 30.87101512 -27.35505487]\n", + " [ 30.87287394 -22.96862669]\n", + " [ 30.87473276 -18.58219851]\n", + " [ 30.87659158 -14.19577034]\n", + " [ 30.8784504 -9.80934216]\n", + " [ 30.88030922 -5.42291398]\n", + " [ 30.88216803 -1.0364858 ]\n", + " [ 0.17996951 -29.81597784]\n", + " [ 0.18224768 -24.43997833]\n", + " [ 0.18452584 -19.06397881]\n", + " [ 0.18680401 -13.6879793 ]\n", + " [ 0.18908217 -8.31197977]\n", + " [ 0.19136034 -2.93598025]\n", + " [ 2.07666524 -31.71428177]\n", + " [ 7.45266476 -31.71655993]\n", + " [ 12.82866428 -31.7188381 ]\n", + " [ 18.2046638 -31.72111627]\n", + " [ 23.58066331 -31.72339443]\n", + " [ 28.95666283 -31.7256726 ]\n", + " [ 2.08966426 -1.03928452]\n", + " [ 7.46566378 -1.04156269]\n", + " [ 12.8416633 -1.04384085]\n", + " [ 18.21766282 -1.04611902]\n", + " [ 23.59366233 -1.04839718]\n", + " [ 28.96966185 -1.05067535]\n", + " [ 30.85496675 -29.82897686]\n", + " [ 30.85724492 -24.45297735]\n", + " [ 30.85952308 -19.07697783]\n", + " [ 30.86180126 -13.70097831]\n", + " [ 30.86407941 -8.32497879]\n", + " [ 30.86635759 -2.94897928]\n", + " [ 0.17916541 -31.71347767]\n", + " [ 0.17916541 -31.71347767]\n", + " [ 30.86716168 -1.05147945]\n", + " [ 30.86716168 -1.05147945]\n", + " [ 2.07746934 -29.81678193]\n", + " [ 7.45346886 -29.8190601 ]\n", + " [ 12.82946837 -29.82133827]\n", + " [ 18.20546789 -29.82361643]\n", + " [ 23.58146741 -29.82589461]\n", + " [ 28.95746693 -29.82817277]\n", + " [ 2.07974751 -24.44078242]\n", + " [ 7.45574702 -24.44306058]\n", + " [ 12.83174654 -24.44533875]\n", + " [ 18.20774606 -24.44761692]\n", + " [ 23.58374558 -24.44989508]\n", + " [ 28.95974509 -24.45217325]\n", + " [ 2.08202567 -19.0647829 ]\n", + " [ 7.45802519 -19.06706107]\n", + " [ 12.83402471 -19.06933924]\n", + " [ 18.21002422 -19.0716174 ]\n", + " [ 23.58602374 -19.07389557]\n", + " [ 28.96202325 -19.07617373]\n", + " [ 2.08430384 -13.68878339]\n", + " [ 7.46030335 -13.69106155]\n", + " [ 12.83630287 -13.69333972]\n", + " [ 18.21230239 -13.69561789]\n", + " [ 23.58830191 -13.69789605]\n", + " [ 28.96430143 -13.70017422]\n", + " [ 2.086582 -8.31278387]\n", + " [ 7.46258152 -8.31506203]\n", + " [ 12.83858103 -8.3173402 ]\n", + " [ 18.21458055 -8.31961837]\n", + " [ 23.59058007 -8.32189653]\n", + " [ 28.96657959 -8.3241747 ]\n", + " [ 2.08886017 -2.93678435]\n", + " [ 7.46485969 -2.93906252]\n", + " [ 12.8408592 -2.94134068]\n", + " [ 18.21685872 -2.94361885]\n", + " [ 23.59285824 -2.94589701]\n", + " [ 28.96885776 -2.94817518]]\n", + "DEBUG:root:make_az_asym: xyp: shape: (96, 2)\n", + "DEBUG:root:optics_fp: xyfp: [[32.275486 31.41357429]\n", + " [32.27502267 27.02714574]\n", + " [32.27455935 22.64071719]\n", + " [32.27409601 18.25428864]\n", + " [32.27363269 13.8678601 ]\n", + " [32.27316936 9.48143155]\n", + " [32.27270604 5.095003 ]\n", + " [32.27224271 0.70857446]\n", + " [32.275486 31.41357429]\n", + " [27.88905745 31.41403761]\n", + " [23.5026289 31.41450094]\n", + " [19.11620036 31.41496427]\n", + " [14.72977181 31.41542759]\n", + " [10.34334326 31.41589092]\n", + " [ 5.95691471 31.41635424]\n", + " [ 1.57048617 31.41681757]\n", + " [32.27224271 0.70857446]\n", + " [27.88581416 0.70903778]\n", + " [23.49938562 0.70950111]\n", + " [19.11295707 0.70996444]\n", + " [14.72652852 0.71042776]\n", + " [10.34009998 0.71089109]\n", + " [ 5.95367142 0.71135442]\n", + " [ 1.56724288 0.71181774]\n", + " [ 1.57048617 31.41681757]\n", + " [ 1.57002284 27.03038902]\n", + " [ 1.56955951 22.64396047]\n", + " [ 1.56909619 18.25753194]\n", + " [ 1.56863286 13.87110338]\n", + " [ 1.56816953 9.48467484]\n", + " [ 1.56770621 5.09824629]\n", + " [ 1.56724288 0.71181774]\n", + " [32.26028399 29.50107588]\n", + " [32.25971613 24.12507591]\n", + " [32.25914828 18.74907594]\n", + " [32.25858043 13.37307597]\n", + " [32.25801258 7.997076 ]\n", + " [32.25744472 2.62107603]\n", + " [30.36298443 31.3987763 ]\n", + " [24.98698446 31.39934415]\n", + " [19.61098448 31.399912 ]\n", + " [14.23498451 31.40047985]\n", + " [ 8.85898454 31.40104771]\n", + " [ 3.48298457 31.40161556]\n", + " [30.35974431 0.72377647]\n", + " [24.98374433 0.72434432]\n", + " [19.60774436 0.72491217]\n", + " [14.23174439 0.72548003]\n", + " [ 8.85574442 0.72604788]\n", + " [ 3.47974445 0.72661573]\n", + " [ 1.58528416 29.504316 ]\n", + " [ 1.5847163 24.12831603]\n", + " [ 1.58414845 18.75231606]\n", + " [ 1.5835806 13.37631609]\n", + " [ 1.58301275 8.00031612]\n", + " [ 1.5824449 2.62431615]\n", + " [32.26048441 31.39857587]\n", + " [32.26048441 31.39857587]\n", + " [ 1.58224447 0.72681616]\n", + " [ 1.58224447 0.72681616]\n", + " [30.36278399 29.50127631]\n", + " [24.98678403 29.50184416]\n", + " [19.61078405 29.50241201]\n", + " [14.23478409 29.50297987]\n", + " [ 8.85878411 29.50354772]\n", + " [ 3.48278414 29.50411557]\n", + " [30.36221615 24.12527634]\n", + " [24.98621618 24.12584419]\n", + " [19.6102162 24.12641204]\n", + " [14.23421623 24.1269799 ]\n", + " [ 8.85821626 24.12754775]\n", + " [ 3.48221629 24.1281156 ]\n", + " [30.36164829 18.74927637]\n", + " [24.98564832 18.74984422]\n", + " [19.60964835 18.75041208]\n", + " [14.23364838 18.75097993]\n", + " [ 8.85764841 18.75154778]\n", + " [ 3.48164844 18.75211563]\n", + " [30.36108043 13.3732764 ]\n", + " [24.98508046 13.37384425]\n", + " [19.60908049 13.3744121 ]\n", + " [14.23308053 13.37497996]\n", + " [ 8.85708056 13.37554781]\n", + " [ 3.48108059 13.37611567]\n", + " [30.36051258 7.99727643]\n", + " [24.98451261 7.99784428]\n", + " [19.60851265 7.99841214]\n", + " [14.23251268 7.99897999]\n", + " [ 8.85651271 7.99954784]\n", + " [ 3.48051273 8.00011569]\n", + " [30.35994473 2.62127646]\n", + " [24.98394476 2.62184431]\n", + " [19.60794479 2.62241216]\n", + " [14.23194482 2.62298002]\n", + " [ 8.85594485 2.62354787]\n", + " [ 3.47994488 2.62411572]]\n", + "DEBUG:root:optics_fp: xyfp shape: (96, 2)\n", + "DEBUG:root:radec2pix: xyfp: [[ 0.16415906 -31.72847131]\n", + " [ 0.16601788 -27.34204313]\n", + " [ 0.1678767 -22.95561497]\n", + " [ 0.16973552 -18.56918678]\n", + " [ 0.17159434 -14.1827586 ]\n", + " [ 0.17345315 -9.79633043]\n", + " [ 0.17531197 -5.40990225]\n", + " [ 0.17717079 -1.02347407]\n", + " [ 0.16415906 -31.72847131]\n", + " [ 4.55058724 -31.73033014]\n", + " [ 8.93701541 -31.73218895]\n", + " [ 13.32344359 -31.73404778]\n", + " [ 17.70987177 -31.73590659]\n", + " [ 22.09629995 -31.73776541]\n", + " [ 26.48272812 -31.73962422]\n", + " [ 30.8691563 -31.74148305]\n", + " [ 0.17717079 -1.02347407]\n", + " [ 4.56359897 -1.02533289]\n", + " [ 8.95002714 -1.02719171]\n", + " [ 13.33645532 -1.02905053]\n", + " [ 17.7228835 -1.03090935]\n", + " [ 22.10931168 -1.03276817]\n", + " [ 26.49573986 -1.03462699]\n", + " [ 30.88216803 -1.0364858 ]\n", + " [ 30.8691563 -31.74148305]\n", + " [ 30.87101512 -27.35505487]\n", + " [ 30.87287394 -22.96862669]\n", + " [ 30.87473276 -18.58219851]\n", + " [ 30.87659158 -14.19577034]\n", + " [ 30.8784504 -9.80934216]\n", + " [ 30.88030922 -5.42291398]\n", + " [ 30.88216803 -1.0364858 ]\n", + " [ 0.17996951 -29.81597784]\n", + " [ 0.18224768 -24.43997833]\n", + " [ 0.18452584 -19.06397881]\n", + " [ 0.18680401 -13.6879793 ]\n", + " [ 0.18908217 -8.31197977]\n", + " [ 0.19136034 -2.93598025]\n", + " [ 2.07666524 -31.71428177]\n", + " [ 7.45266476 -31.71655993]\n", + " [ 12.82866428 -31.7188381 ]\n", + " [ 18.2046638 -31.72111627]\n", + " [ 23.58066331 -31.72339443]\n", + " [ 28.95666283 -31.7256726 ]\n", + " [ 2.08966426 -1.03928452]\n", + " [ 7.46566378 -1.04156269]\n", + " [ 12.8416633 -1.04384085]\n", + " [ 18.21766282 -1.04611902]\n", + " [ 23.59366233 -1.04839718]\n", + " [ 28.96966185 -1.05067535]\n", + " [ 30.85496675 -29.82897686]\n", + " [ 30.85724492 -24.45297735]\n", + " [ 30.85952308 -19.07697783]\n", + " [ 30.86180126 -13.70097831]\n", + " [ 30.86407941 -8.32497879]\n", + " [ 30.86635759 -2.94897928]\n", + " [ 0.17916541 -31.71347767]\n", + " [ 0.17916541 -31.71347767]\n", + " [ 30.86716168 -1.05147945]\n", + " [ 30.86716168 -1.05147945]\n", + " [ 2.07746934 -29.81678193]\n", + " [ 7.45346886 -29.8190601 ]\n", + " [ 12.82946837 -29.82133827]\n", + " [ 18.20546789 -29.82361643]\n", + " [ 23.58146741 -29.82589461]\n", + " [ 28.95746693 -29.82817277]\n", + " [ 2.07974751 -24.44078242]\n", + " [ 7.45574702 -24.44306058]\n", + " [ 12.83174654 -24.44533875]\n", + " [ 18.20774606 -24.44761692]\n", + " [ 23.58374558 -24.44989508]\n", + " [ 28.95974509 -24.45217325]\n", + " [ 2.08202567 -19.0647829 ]\n", + " [ 7.45802519 -19.06706107]\n", + " [ 12.83402471 -19.06933924]\n", + " [ 18.21002422 -19.0716174 ]\n", + " [ 23.58602374 -19.07389557]\n", + " [ 28.96202325 -19.07617373]\n", + " [ 2.08430384 -13.68878339]\n", + " [ 7.46030335 -13.69106155]\n", + " [ 12.83630287 -13.69333972]\n", + " [ 18.21230239 -13.69561789]\n", + " [ 23.58830191 -13.69789605]\n", + " [ 28.96430143 -13.70017422]\n", + " [ 2.086582 -8.31278387]\n", + " [ 7.46258152 -8.31506203]\n", + " [ 12.83858103 -8.3173402 ]\n", + " [ 18.21458055 -8.31961837]\n", + " [ 23.59058007 -8.32189653]\n", + " [ 28.96657959 -8.3241747 ]\n", + " [ 2.08886017 -2.93678435]\n", + " [ 7.46485969 -2.93906252]\n", + " [ 12.8408592 -2.94134068]\n", + " [ 18.21685872 -2.94361885]\n", + " [ 23.59285824 -2.94589701]\n", + " [ 28.96885776 -2.94817518]]\n", + "DEBUG:root:radec2pix: xyfp Shape: (96, 2)\n", + "DEBUG:root:make_az_asym: xyp: [[32.275486 31.41357429]\n", + " [32.27502267 27.02714574]\n", + " [32.27455935 22.64071719]\n", + " [32.27409601 18.25428864]\n", + " [32.27363269 13.8678601 ]\n", + " [32.27316936 9.48143155]\n", + " [32.27270604 5.095003 ]\n", + " [32.27224271 0.70857446]\n", + " [32.275486 31.41357429]\n", + " [27.88905745 31.41403761]\n", + " [23.5026289 31.41450094]\n", + " [19.11620036 31.41496427]\n", + " [14.72977181 31.41542759]\n", + " [10.34334326 31.41589092]\n", + " [ 5.95691471 31.41635424]\n", + " [ 1.57048617 31.41681757]\n", + " [32.27224271 0.70857446]\n", + " [27.88581416 0.70903778]\n", + " [23.49938562 0.70950111]\n", + " [19.11295707 0.70996444]\n", + " [14.72652852 0.71042776]\n", + " [10.34009998 0.71089109]\n", + " [ 5.95367142 0.71135442]\n", + " [ 1.56724288 0.71181774]\n", + " [ 1.57048617 31.41681757]\n", + " [ 1.57002284 27.03038902]\n", + " [ 1.56955951 22.64396047]\n", + " [ 1.56909619 18.25753194]\n", + " [ 1.56863286 13.87110338]\n", + " [ 1.56816953 9.48467484]\n", + " [ 1.56770621 5.09824629]\n", + " [ 1.56724288 0.71181774]\n", + " [32.26028399 29.50107588]\n", + " [32.25971613 24.12507591]\n", + " [32.25914828 18.74907594]\n", + " [32.25858043 13.37307597]\n", + " [32.25801258 7.997076 ]\n", + " [32.25744472 2.62107603]\n", + " [30.36298443 31.3987763 ]\n", + " [24.98698446 31.39934415]\n", + " [19.61098448 31.399912 ]\n", + " [14.23498451 31.40047985]\n", + " [ 8.85898454 31.40104771]\n", + " [ 3.48298457 31.40161556]\n", + " [30.35974431 0.72377647]\n", + " [24.98374433 0.72434432]\n", + " [19.60774436 0.72491217]\n", + " [14.23174439 0.72548003]\n", + " [ 8.85574442 0.72604788]\n", + " [ 3.47974445 0.72661573]\n", + " [ 1.58528416 29.504316 ]\n", + " [ 1.5847163 24.12831603]\n", + " [ 1.58414845 18.75231606]\n", + " [ 1.5835806 13.37631609]\n", + " [ 1.58301275 8.00031612]\n", + " [ 1.5824449 2.62431615]\n", + " [32.26048441 31.39857587]\n", + " [32.26048441 31.39857587]\n", + " [ 1.58224447 0.72681616]\n", + " [ 1.58224447 0.72681616]\n", + " [30.36278399 29.50127631]\n", + " [24.98678403 29.50184416]\n", + " [19.61078405 29.50241201]\n", + " [14.23478409 29.50297987]\n", + " [ 8.85878411 29.50354772]\n", + " [ 3.48278414 29.50411557]\n", + " [30.36221615 24.12527634]\n", + " [24.98621618 24.12584419]\n", + " [19.6102162 24.12641204]\n", + " [14.23421623 24.1269799 ]\n", + " [ 8.85821626 24.12754775]\n", + " [ 3.48221629 24.1281156 ]\n", + " [30.36164829 18.74927637]\n", + " [24.98564832 18.74984422]\n", + " [19.60964835 18.75041208]\n", + " [14.23364838 18.75097993]\n", + " [ 8.85764841 18.75154778]\n", + " [ 3.48164844 18.75211563]\n", + " [30.36108043 13.3732764 ]\n", + " [24.98508046 13.37384425]\n", + " [19.60908049 13.3744121 ]\n", + " [14.23308053 13.37497996]\n", + " [ 8.85708056 13.37554781]\n", + " [ 3.48108059 13.37611567]\n", + " [30.36051258 7.99727643]\n", + " [24.98451261 7.99784428]\n", + " [19.60851265 7.99841214]\n", + " [14.23251268 7.99897999]\n", + " [ 8.85651271 7.99954784]\n", + " [ 3.48051273 8.00011569]\n", + " [30.35994473 2.62127646]\n", + " [24.98394476 2.62184431]\n", + " [19.60794479 2.62241216]\n", + " [14.23194482 2.62298002]\n", + " [ 8.85594485 2.62354787]\n", + " [ 3.47994488 2.62411572]]\n", + "DEBUG:root:mm_to_pix: fitpx: [[0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]]\n", + "DEBUG:root:make_az_asym: xyp: shape: (96, 2)\n", + "DEBUG:root:mm_to_pix: fitpx.shape: (96, 2)\n", + "DEBUG:root:radec2pix: xyfp: [[ 0.16415906 -31.72847131]\n", + " [ 0.16601788 -27.34204313]\n", + " [ 0.1678767 -22.95561497]\n", + " [ 0.16973552 -18.56918678]\n", + " [ 0.17159434 -14.1827586 ]\n", + " [ 0.17345315 -9.79633043]\n", + " [ 0.17531197 -5.40990225]\n", + " [ 0.17717079 -1.02347407]\n", + " [ 0.16415906 -31.72847131]\n", + " [ 4.55058724 -31.73033014]\n", + " [ 8.93701541 -31.73218895]\n", + " [ 13.32344359 -31.73404778]\n", + " [ 17.70987177 -31.73590659]\n", + " [ 22.09629995 -31.73776541]\n", + " [ 26.48272812 -31.73962422]\n", + " [ 30.8691563 -31.74148305]\n", + " [ 0.17717079 -1.02347407]\n", + " [ 4.56359897 -1.02533289]\n", + " [ 8.95002714 -1.02719171]\n", + " [ 13.33645532 -1.02905053]\n", + " [ 17.7228835 -1.03090935]\n", + " [ 22.10931168 -1.03276817]\n", + " [ 26.49573986 -1.03462699]\n", + " [ 30.88216803 -1.0364858 ]\n", + " [ 30.8691563 -31.74148305]\n", + " [ 30.87101512 -27.35505487]\n", + " [ 30.87287394 -22.96862669]\n", + " [ 30.87473276 -18.58219851]\n", + " [ 30.87659158 -14.19577034]\n", + " [ 30.8784504 -9.80934216]\n", + " [ 30.88030922 -5.42291398]\n", + " [ 30.88216803 -1.0364858 ]\n", + " [ 0.17996951 -29.81597784]\n", + " [ 0.18224768 -24.43997833]\n", + " [ 0.18452584 -19.06397881]\n", + " [ 0.18680401 -13.6879793 ]\n", + " [ 0.18908217 -8.31197977]\n", + " [ 0.19136034 -2.93598025]\n", + " [ 2.07666524 -31.71428177]\n", + " [ 7.45266476 -31.71655993]\n", + " [ 12.82866428 -31.7188381 ]\n", + " [ 18.2046638 -31.72111627]\n", + " [ 23.58066331 -31.72339443]\n", + " [ 28.95666283 -31.7256726 ]\n", + " [ 2.08966426 -1.03928452]\n", + " [ 7.46566378 -1.04156269]\n", + " [ 12.8416633 -1.04384085]\n", + " [ 18.21766282 -1.04611902]\n", + " [ 23.59366233 -1.04839718]\n", + " [ 28.96966185 -1.05067535]\n", + " [ 30.85496675 -29.82897686]\n", + " [ 30.85724492 -24.45297735]\n", + " [ 30.85952308 -19.07697783]\n", + " [ 30.86180126 -13.70097831]\n", + " [ 30.86407941 -8.32497879]\n", + " [ 30.86635759 -2.94897928]\n", + " [ 0.17916541 -31.71347767]\n", + " [ 0.17916541 -31.71347767]\n", + " [ 30.86716168 -1.05147945]\n", + " [ 30.86716168 -1.05147945]\n", + " [ 2.07746934 -29.81678193]\n", + " [ 7.45346886 -29.8190601 ]\n", + " [ 12.82946837 -29.82133827]\n", + " [ 18.20546789 -29.82361643]\n", + " [ 23.58146741 -29.82589461]\n", + " [ 28.95746693 -29.82817277]\n", + " [ 2.07974751 -24.44078242]\n", + " [ 7.45574702 -24.44306058]\n", + " [ 12.83174654 -24.44533875]\n", + " [ 18.20774606 -24.44761692]\n", + " [ 23.58374558 -24.44989508]\n", + " [ 28.95974509 -24.45217325]\n", + " [ 2.08202567 -19.0647829 ]\n", + " [ 7.45802519 -19.06706107]\n", + " [ 12.83402471 -19.06933924]\n", + " [ 18.21002422 -19.0716174 ]\n", + " [ 23.58602374 -19.07389557]\n", + " [ 28.96202325 -19.07617373]\n", + " [ 2.08430384 -13.68878339]\n", + " [ 7.46030335 -13.69106155]\n", + " [ 12.83630287 -13.69333972]\n", + " [ 18.21230239 -13.69561789]\n", + " [ 23.58830191 -13.69789605]\n", + " [ 28.96430143 -13.70017422]\n", + " [ 2.086582 -8.31278387]\n", + " [ 7.46258152 -8.31506203]\n", + " [ 12.83858103 -8.3173402 ]\n", + " [ 18.21458055 -8.31961837]\n", + " [ 23.59058007 -8.32189653]\n", + " [ 28.96657959 -8.3241747 ]\n", + " [ 2.08886017 -2.93678435]\n", + " [ 7.46485969 -2.93906252]\n", + " [ 12.8408592 -2.94134068]\n", + " [ 18.21685872 -2.94361885]\n", + " [ 23.59285824 -2.94589701]\n", + " [ 28.96885776 -2.94817518]]\n", + "DEBUG:root:radec2pix: xyfp: [[32.275486 31.41357429]\n", + " [32.27502267 27.02714574]\n", + " [32.27455935 22.64071719]\n", + " [32.27409601 18.25428864]\n", + " [32.27363269 13.8678601 ]\n", + " [32.27316936 9.48143155]\n", + " [32.27270604 5.095003 ]\n", + " [32.27224271 0.70857446]\n", + " [32.275486 31.41357429]\n", + " [27.88905745 31.41403761]\n", + " [23.5026289 31.41450094]\n", + " [19.11620036 31.41496427]\n", + " [14.72977181 31.41542759]\n", + " [10.34334326 31.41589092]\n", + " [ 5.95691471 31.41635424]\n", + " [ 1.57048617 31.41681757]\n", + " [32.27224271 0.70857446]\n", + " [27.88581416 0.70903778]\n", + " [23.49938562 0.70950111]\n", + " [19.11295707 0.70996444]\n", + " [14.72652852 0.71042776]\n", + " [10.34009998 0.71089109]\n", + " [ 5.95367142 0.71135442]\n", + " [ 1.56724288 0.71181774]\n", + " [ 1.57048617 31.41681757]\n", + " [ 1.57002284 27.03038902]\n", + " [ 1.56955951 22.64396047]\n", + " [ 1.56909619 18.25753194]\n", + " [ 1.56863286 13.87110338]\n", + " [ 1.56816953 9.48467484]\n", + " [ 1.56770621 5.09824629]\n", + " [ 1.56724288 0.71181774]\n", + " [32.26028399 29.50107588]\n", + " [32.25971613 24.12507591]\n", + " [32.25914828 18.74907594]\n", + " [32.25858043 13.37307597]\n", + " [32.25801258 7.997076 ]\n", + " [32.25744472 2.62107603]\n", + " [30.36298443 31.3987763 ]\n", + " [24.98698446 31.39934415]\n", + " [19.61098448 31.399912 ]\n", + " [14.23498451 31.40047985]\n", + " [ 8.85898454 31.40104771]\n", + " [ 3.48298457 31.40161556]\n", + " [30.35974431 0.72377647]\n", + " [24.98374433 0.72434432]\n", + " [19.60774436 0.72491217]\n", + " [14.23174439 0.72548003]\n", + " [ 8.85574442 0.72604788]\n", + " [ 3.47974445 0.72661573]\n", + " [ 1.58528416 29.504316 ]\n", + " [ 1.5847163 24.12831603]\n", + " [ 1.58414845 18.75231606]\n", + " [ 1.5835806 13.37631609]\n", + " [ 1.58301275 8.00031612]\n", + " [ 1.5824449 2.62431615]\n", + " [32.26048441 31.39857587]\n", + " [32.26048441 31.39857587]\n", + " [ 1.58224447 0.72681616]\n", + " [ 1.58224447 0.72681616]\n", + " [30.36278399 29.50127631]\n", + " [24.98678403 29.50184416]\n", + " [19.61078405 29.50241201]\n", + " [14.23478409 29.50297987]\n", + " [ 8.85878411 29.50354772]\n", + " [ 3.48278414 29.50411557]\n", + " [30.36221615 24.12527634]\n", + " [24.98621618 24.12584419]\n", + " [19.6102162 24.12641204]\n", + " [14.23421623 24.1269799 ]\n", + " [ 8.85821626 24.12754775]\n", + " [ 3.48221629 24.1281156 ]\n", + " [30.36164829 18.74927637]\n", + " [24.98564832 18.74984422]\n", + " [19.60964835 18.75041208]\n", + " [14.23364838 18.75097993]\n", + " [ 8.85764841 18.75154778]\n", + " [ 3.48164844 18.75211563]\n", + " [30.36108043 13.3732764 ]\n", + " [24.98508046 13.37384425]\n", + " [19.60908049 13.3744121 ]\n", + " [14.23308053 13.37497996]\n", + " [ 8.85708056 13.37554781]\n", + " [ 3.48108059 13.37611567]\n", + " [30.36051258 7.99727643]\n", + " [24.98451261 7.99784428]\n", + " [19.60851265 7.99841214]\n", + " [14.23251268 7.99897999]\n", + " [ 8.85651271 7.99954784]\n", + " [ 3.48051273 8.00011569]\n", + " [30.35994473 2.62127646]\n", + " [24.98394476 2.62184431]\n", + " [19.60794479 2.62241216]\n", + " [14.23194482 2.62298002]\n", + " [ 8.85594485 2.62354787]\n", + " [ 3.47994488 2.62411572]]\n", + "DEBUG:root:radec2pix: xyfp Shape: (96, 2)\n", + "DEBUG:root:radec2pix: curVec: [[ 0.0319045 -0.21897001 -0.97520984]\n", + " [ 0.03830292 -0.24442165 -0.96891225]\n", + " [ 0.04495992 -0.27018339 -0.96175857]\n", + " [ 0.05182888 -0.29613667 -0.95373835]\n", + " [ 0.05886755 -0.32216699 -0.94485081]\n", + " [ 0.06603757 -0.34816326 -0.93510501]\n", + " [ 0.07330375 -0.37401741 -0.92452017]\n", + " [ 0.08063356 -0.39962439 -0.91312572]\n", + " [ 0.0319045 -0.21897001 -0.97520984]\n", + " [ 0.05724553 -0.20991969 -0.97604133]\n", + " [ 0.08314461 -0.20066026 -0.97612624]\n", + " [ 0.10948016 -0.19120771 -0.97542489]\n", + " [ 0.13613484 -0.1815825 -0.97390713]\n", + " [ 0.16299473 -0.17180965 -0.97155245]\n", + " [ 0.18994843 -0.16191842 -0.96835015]\n", + " [ 0.21688672 -0.15194193 -0.96429964]\n", + " [ 0.08063356 -0.39962439 -0.91312572]\n", + " [ 0.10747811 -0.39203942 -0.91364848]\n", + " [ 0.13478896 -0.38398654 -0.91344747]\n", + " [ 0.16245162 -0.37548012 -0.91248241]\n", + " [ 0.19035339 -0.36653846 -0.91072232]\n", + " [ 0.21838145 -0.35718441 -0.90814583]\n", + " [ 0.24642211 -0.34744584 -0.90474169]\n", + " [ 0.27436122 -0.33735569 -0.90050933]\n", + " [ 0.21688672 -0.15194193 -0.96429964]\n", + " [ 0.22533222 -0.17788006 -0.95790609]\n", + " [ 0.23376877 -0.20418648 -0.95061035]\n", + " [ 0.24215243 -0.23074894 -0.94239966]\n", + " [ 0.25044184 -0.25745708 -0.93327099]\n", + " [ 0.25859767 -0.2842009 -0.92323188]\n", + " [ 0.26658253 -0.31087029 -0.91230117]\n", + " [ 0.27436122 -0.33735569 -0.90050933]\n", + " [ 0.03474538 -0.22999086 -0.97257234]\n", + " [ 0.04276871 -0.26140906 -0.96428012]\n", + " [ 0.05113343 -0.29317479 -0.95469048]\n", + " [ 0.05975996 -0.32507561 -0.94379796]\n", + " [ 0.06857758 -0.35690697 -0.9316193 ]\n", + " [ 0.07752264 -0.38847115 -0.9181941 ]\n", + " [ 0.04289862 -0.21513726 -0.97564116]\n", + " [ 0.07434899 -0.20390352 -0.97616371]\n", + " [ 0.1065162 -0.19237088 -0.97552434]\n", + " [ 0.13918253 -0.18057515 -0.97366362]\n", + " [ 0.1721381 -0.16856235 -0.97054377]\n", + " [ 0.20517878 -0.15638798 -0.9661493 ]\n", + " [ 0.09224782 -0.39628825 -0.91348014]\n", + " [ 0.12547646 -0.38667492 -0.91364006]\n", + " [ 0.15929147 -0.37637282 -0.91267175]\n", + " [ 0.19348475 -0.36541396 -0.9105143 ]\n", + " [ 0.22784853 -0.35384049 -0.90712841]\n", + " [ 0.26217326 -0.34170583 -0.90249781]\n", + " [ 0.2204748 -0.16323277 -0.96163711]\n", + " [ 0.23082437 -0.19528485 -0.95319669]\n", + " [ 0.2411167 -0.22777821 -0.94338742]\n", + " [ 0.2512746 -0.260509 -0.93219962]\n", + " [ 0.26122567 -0.29327464 -0.91964729]\n", + " [ 0.27090198 -0.32587261 -0.90576993]\n", + " [ 0.03201145 -0.2190258 -0.97519381]\n", + " [ 0.03201145 -0.2190258 -0.97519381]\n", + " [ 0.27423977 -0.33730061 -0.90056696]\n", + " [ 0.27423977 -0.33730061 -0.90056696]\n", + " [ 0.04569952 -0.2261407 -0.97302207]\n", + " [ 0.07733149 -0.214997 -0.97354822]\n", + " [ 0.109669 -0.20352684 -0.97290777]\n", + " [ 0.14249534 -0.1917663 -0.97104107]\n", + " [ 0.17560129 -0.17976179 -0.96791006]\n", + " [ 0.2087827 -0.16756928 -0.963499 ]\n", + " [ 0.05389327 -0.25766913 -0.96472905]\n", + " [ 0.08598654 -0.24678635 -0.96524754]\n", + " [ 0.11875616 -0.23550141 -0.96459114]\n", + " [ 0.15198842 -0.22385095 -0.96269947]\n", + " [ 0.18547553 -0.21188217 -0.95953362]\n", + " [ 0.21901295 -0.19965199 -0.95507718]\n", + " [ 0.06240031 -0.28954783 -0.95512735]\n", + " [ 0.09487796 -0.27893643 -0.95561113]\n", + " [ 0.12800686 -0.26785093 -0.95491891]\n", + " [ 0.16157589 -0.25632791 -0.95298963]\n", + " [ 0.19537809 -0.24441455 -0.94978362]\n", + " [ 0.2292079 -0.2321681 -0.94528393]\n", + " [ 0.07114189 -0.32156494 -0.94421122]\n", + " [ 0.10392923 -0.31123715 -0.94463229]\n", + " [ 0.13734608 -0.30036705 -0.9438833 ]\n", + " [ 0.1711832 -0.28899043 -0.94190278]\n", + " [ 0.2052338 -0.27715364 -0.9386506 ]\n", + " [ 0.23929098 -0.26491344 -0.93410957]\n", + " [ 0.080048 -0.35351606 -0.93199716]\n", + " [ 0.1130719 -0.3434844 -0.93232677]\n", + " [ 0.14670598 -0.33284587 -0.93149932]\n", + " [ 0.18074202 -0.32163481 -0.92945326]\n", + " [ 0.21497296 -0.30989604 -0.92614851]\n", + " [ 0.24919056 -0.29768521 -0.921568 ]\n", + " [ 0.08905539 -0.38520315 -0.91852473]\n", + " [ 0.12224341 -0.37547896 -0.91873396]\n", + " [ 0.15602382 -0.3650868 -0.91780619]\n", + " [ 0.19018861 -0.35405927 -0.91568025]\n", + " [ 0.22453022 -0.34243923 -0.91231659]\n", + " [ 0.25883936 -0.33028073 -0.90769864]]\n", + "DEBUG:root:radec2pix: curVec Shape: (96, 3)\n", + "DEBUG:root:mm_to_pix: fitpx: [[0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]]\n", + "DEBUG:root:mm_to_pix: fitpx.shape: (96, 2)\n", + "DEBUG:root:radec2pix: ccdpx: [[-4.45000000e+01 -4.99999951e-01]\n", + " [-4.45000000e+01 2.91928572e+02]\n", + " [-4.45000000e+01 5.84357142e+02]\n", + " [-4.45000000e+01 8.76785714e+02]\n", + " [-4.45000000e+01 1.16921429e+03]\n", + " [-4.45000000e+01 1.46164286e+03]\n", + " [-4.45000000e+01 1.75407143e+03]\n", + " [-4.45000000e+01 2.04650000e+03]\n", + " [-4.45000000e+01 -4.99999951e-01]\n", + " [ 2.47928571e+02 -5.00000176e-01]\n", + " [ 5.40357143e+02 -5.00000069e-01]\n", + " [ 8.32785714e+02 -5.00000257e-01]\n", + " [ 1.12521429e+03 -4.99999992e-01]\n", + " [ 1.41764286e+03 -5.00000241e-01]\n", + " [ 1.71007143e+03 -4.99999730e-01]\n", + " [ 2.00250000e+03 -5.00000010e-01]\n", + " [-4.45000000e+01 2.04650000e+03]\n", + " [ 2.47928571e+02 2.04650000e+03]\n", + " [ 5.40357143e+02 2.04650000e+03]\n", + " [ 8.32785714e+02 2.04650000e+03]\n", + " [ 1.12521429e+03 2.04650000e+03]\n", + " [ 1.41764286e+03 2.04650000e+03]\n", + " [ 1.71007143e+03 2.04650000e+03]\n", + " [ 2.00250000e+03 2.04650000e+03]\n", + " [ 2.00250000e+03 -5.00000010e-01]\n", + " [ 2.00250000e+03 2.91928572e+02]\n", + " [ 2.00250000e+03 5.84357143e+02]\n", + " [ 2.00250000e+03 8.76785714e+02]\n", + " [ 2.00250000e+03 1.16921429e+03]\n", + " [ 2.00250000e+03 1.46164286e+03]\n", + " [ 2.00250000e+03 1.75407143e+03]\n", + " [ 2.00250000e+03 2.04650000e+03]\n", + " [-4.35000000e+01 1.27000000e+02]\n", + " [-4.35000000e+01 4.85400000e+02]\n", + " [-4.35000000e+01 8.43800000e+02]\n", + " [-4.35000000e+01 1.20220000e+03]\n", + " [-4.35000000e+01 1.56060000e+03]\n", + " [-4.35000000e+01 1.91900000e+03]\n", + " [ 8.30000000e+01 4.99999720e-01]\n", + " [ 4.41400000e+02 4.99999983e-01]\n", + " [ 7.99800000e+02 4.99999771e-01]\n", + " [ 1.15820000e+03 4.99999773e-01]\n", + " [ 1.51660000e+03 5.00000075e-01]\n", + " [ 1.87500000e+03 4.99999913e-01]\n", + " [ 8.29999998e+01 2.04550000e+03]\n", + " [ 4.41400000e+02 2.04550000e+03]\n", + " [ 7.99800000e+02 2.04550000e+03]\n", + " [ 1.15820000e+03 2.04550000e+03]\n", + " [ 1.51660000e+03 2.04550000e+03]\n", + " [ 1.87500000e+03 2.04550000e+03]\n", + " [ 2.00150000e+03 1.27000000e+02]\n", + " [ 2.00150000e+03 4.85400000e+02]\n", + " [ 2.00150000e+03 8.43800000e+02]\n", + " [ 2.00150000e+03 1.20220000e+03]\n", + " [ 2.00150000e+03 1.56060000e+03]\n", + " [ 2.00150000e+03 1.91900000e+03]\n", + " [-4.35000000e+01 4.99999930e-01]\n", + " [-4.35000000e+01 4.99999930e-01]\n", + " [ 2.00150000e+03 2.04550000e+03]\n", + " [ 2.00150000e+03 2.04550000e+03]\n", + " [ 8.30000000e+01 1.27000000e+02]\n", + " [ 4.41400000e+02 1.27000000e+02]\n", + " [ 7.99800000e+02 1.27000000e+02]\n", + " [ 1.15820000e+03 1.27000000e+02]\n", + " [ 1.51660000e+03 1.27000000e+02]\n", + " [ 1.87500000e+03 1.27000000e+02]\n", + " [ 8.30000000e+01 4.85400000e+02]\n", + " [ 4.41400000e+02 4.85400000e+02]\n", + " [ 7.99800000e+02 4.85400000e+02]\n", + " [ 1.15820000e+03 4.85400000e+02]\n", + " [ 1.51660000e+03 4.85400000e+02]\n", + " [ 1.87500000e+03 4.85400000e+02]\n", + " [ 8.30000000e+01 8.43800000e+02]\n", + " [ 4.41400000e+02 8.43800000e+02]\n", + " [ 7.99800000e+02 8.43800000e+02]\n", + " [ 1.15820000e+03 8.43800000e+02]\n", + " [ 1.51660000e+03 8.43800000e+02]\n", + " [ 1.87500000e+03 8.43800000e+02]\n", + " [ 8.30000000e+01 1.20220000e+03]\n", + " [ 4.41400000e+02 1.20220000e+03]\n", + " [ 7.99800000e+02 1.20220000e+03]\n", + " [ 1.15820000e+03 1.20220000e+03]\n", + " [ 1.51660000e+03 1.20220000e+03]\n", + " [ 1.87500000e+03 1.20220000e+03]\n", + " [ 8.30000000e+01 1.56060000e+03]\n", + " [ 4.41400000e+02 1.56060000e+03]\n", + " [ 7.99800000e+02 1.56060000e+03]\n", + " [ 1.15820000e+03 1.56060000e+03]\n", + " [ 1.51660000e+03 1.56060000e+03]\n", + " [ 1.87500000e+03 1.56060000e+03]\n", + " [ 8.30000000e+01 1.91900000e+03]\n", + " [ 4.41400000e+02 1.91900000e+03]\n", + " [ 7.99800000e+02 1.91900000e+03]\n", + " [ 1.15820000e+03 1.91900000e+03]\n", + " [ 1.51660000e+03 1.91900000e+03]\n", + " [ 1.87500000e+03 1.91900000e+03]]\n", + "DEBUG:root:radec2pix: camVec: [[-0.20650899 -0.20834684 -0.209912 -0.2112049 -0.21222492 -0.21297066\n", + " -0.21344048 -0.21363303 -0.20650899 -0.18010636 -0.15299311 -0.12528058\n", + " -0.09707928 -0.06849975 -0.03965325 -0.01065205 -0.21363303 -0.1862962\n", + " -0.15824793 -0.12959237 -0.10043485 -0.07088401 -0.04105265 -0.01105755\n", + " -0.01065205 -0.01075054 -0.01083605 -0.01090831 -0.01096697 -0.01101162\n", + " -0.0110419 -0.01105755 -0.20725456 -0.20932255 -0.21098167 -0.21223121\n", + " -0.21306867 -0.2134911 -0.19509826 -0.16224603 -0.12843717 -0.09387541\n", + " -0.05876435 -0.02330924 -0.20180806 -0.16781243 -0.13285166 -0.09711907\n", + " -0.06081473 -0.02414801 -0.01079628 -0.01090926 -0.01100231 -0.01107479\n", + " -0.01112598 -0.01115523 -0.20642679 -0.20642679 -0.01116024 -0.01116024\n", + " -0.19587779 -0.16288944 -0.12894461 -0.09424616 -0.05899718 -0.02340304\n", + " -0.19782623 -0.16450046 -0.13021766 -0.09517804 -0.05958347 -0.0236399\n", + " -0.19939086 -0.16579789 -0.13124607 -0.09593306 -0.06005988 -0.02383341\n", + " -0.20057035 -0.16677881 -0.13202594 -0.09650734 -0.06042346 -0.02398226\n", + " -0.20136156 -0.16743861 -0.13255205 -0.09689601 -0.0606707 -0.02408492\n", + " -0.20176105 -0.16777281 -0.13281959 -0.09709479 -0.06079851 -0.02414006]\n", + " [-0.20112017 -0.17462343 -0.14743759 -0.11967398 -0.09144325 -0.06285614\n", + " -0.0340241 -0.00505944 -0.20112017 -0.20295163 -0.20451753 -0.20581845\n", + " -0.20685386 -0.20762236 -0.2081222 -0.20835189 -0.00505944 -0.0050993\n", + " -0.00513287 -0.00516008 -0.00518078 -0.00519482 -0.00520206 -0.00520239\n", + " -0.20835189 -0.18087002 -0.15269708 -0.12393724 -0.09469638 -0.06508391\n", + " -0.03521344 -0.00520239 -0.18966571 -0.15671259 -0.12283514 -0.0882373\n", + " -0.053123 -0.01769778 -0.20186172 -0.20392662 -0.20559352 -0.20686189\n", + " -0.20772922 -0.20819238 -0.00517714 -0.00522278 -0.00525872 -0.00528472\n", + " -0.0053005 -0.00530579 -0.19646103 -0.1623014 -0.12720719 -0.09137251\n", + " -0.05499882 -0.01829695 -0.20103758 -0.20103758 -0.00530513 -0.00530513\n", + " -0.19044022 -0.19238166 -0.19395017 -0.19514465 -0.19596195 -0.19639843\n", + " -0.15734701 -0.15893973 -0.16022981 -0.16121459 -0.16188952 -0.16224993\n", + " -0.12332956 -0.12457282 -0.12558234 -0.12635458 -0.12688447 -0.12716713\n", + " -0.08859098 -0.08948154 -0.09020602 -0.09076095 -0.09114176 -0.09134421\n", + " -0.05333481 -0.05386844 -0.05430277 -0.0546353 -0.05486289 -0.05498267\n", + " -0.01776673 -0.01794001 -0.01808024 -0.01818657 -0.01825788 -0.01829321]\n", + " [ 0.95755142 0.96233999 0.96653976 0.97008795 0.97293305 0.97503467\n", + " 0.97636342 0.97690088 0.95755142 0.96248238 0.96683281 0.97053776\n", + " 0.97354358 0.97580774 0.97729871 0.97799592 0.97690088 0.98248039\n", + " 0.98738607 0.99155393 0.99493015 0.99747104 0.99914344 0.99992533\n", + " 0.97799592 0.98344825 0.98821363 0.9922301 0.99544579 0.99781904\n", + " 0.99931881 0.99992533 0.9597252 0.96520735 0.96974134 0.97322767\n", + " 0.97559197 0.97678469 0.95978566 0.96544816 0.97017277 0.97385603\n", + " 0.97641964 0.97781011 0.97941141 0.98580511 0.99112198 0.99525874\n", + " 0.998135 0.99969431 0.98045219 0.98668092 0.99181514 0.9957552\n", + " 0.99842443 0.99977036 0.95758648 0.95758648 0.99992365 0.99992365\n", + " 0.96195864 0.96770674 0.97250019 0.97623574 0.97883515 0.98024484\n", + " 0.96752607 0.97348742 0.97845274 0.98231919 0.98500842 0.98646648\n", + " 0.97212813 0.97826002 0.98336338 0.98733549 0.99009754 0.99159492\n", + " 0.9756655 0.9819256 0.98713324 0.99118554 0.99400311 0.99553056\n", + " 0.97806386 0.98440972 0.98968741 0.99379381 0.99664895 0.99819679\n", + " 0.97927362 0.98566244 0.99097531 0.99510896 0.99798306 0.9995412 ]]\n", + "DEBUG:root:radec2pix: camVec Shape: (3, 96)\n", + "DEBUG:root:radec2pix: fitpx: [[ 2.13550000e+03 -4.99999951e-01]\n", + " [ 2.13550000e+03 2.91928572e+02]\n", + " [ 2.13550000e+03 5.84357142e+02]\n", + " [ 2.13550000e+03 8.76785714e+02]\n", + " [ 2.13550000e+03 1.16921429e+03]\n", + " [ 2.13550000e+03 1.46164286e+03]\n", + " [ 2.13550000e+03 1.75407143e+03]\n", + " [ 2.13550000e+03 2.04650000e+03]\n", + " [ 2.13550000e+03 -4.99999951e-01]\n", + " [ 2.42792857e+03 -5.00000176e-01]\n", + " [ 2.72035714e+03 -5.00000069e-01]\n", + " [ 3.01278571e+03 -5.00000257e-01]\n", + " [ 3.30521429e+03 -4.99999992e-01]\n", + " [ 3.59764286e+03 -5.00000241e-01]\n", + " [ 3.89007143e+03 -4.99999730e-01]\n", + " [ 4.18250000e+03 -5.00000010e-01]\n", + " [ 2.13550000e+03 2.04650000e+03]\n", + " [ 2.42792857e+03 2.04650000e+03]\n", + " [ 2.72035714e+03 2.04650000e+03]\n", + " [ 3.01278571e+03 2.04650000e+03]\n", + " [ 3.30521429e+03 2.04650000e+03]\n", + " [ 3.59764286e+03 2.04650000e+03]\n", + " [ 3.89007143e+03 2.04650000e+03]\n", + " [ 4.18250000e+03 2.04650000e+03]\n", + " [ 4.18250000e+03 -5.00000010e-01]\n", + " [ 4.18250000e+03 2.91928572e+02]\n", + " [ 4.18250000e+03 5.84357143e+02]\n", + " [ 4.18250000e+03 8.76785714e+02]\n", + " [ 4.18250000e+03 1.16921429e+03]\n", + " [ 4.18250000e+03 1.46164286e+03]\n", + " [ 4.18250000e+03 1.75407143e+03]\n", + " [ 4.18250000e+03 2.04650000e+03]\n", + " [ 2.13650000e+03 1.27000000e+02]\n", + " [ 2.13650000e+03 4.85400000e+02]\n", + " [ 2.13650000e+03 8.43800000e+02]\n", + " [ 2.13650000e+03 1.20220000e+03]\n", + " [ 2.13650000e+03 1.56060000e+03]\n", + " [ 2.13650000e+03 1.91900000e+03]\n", + " [ 2.26300000e+03 4.99999720e-01]\n", + " [ 2.62140000e+03 4.99999983e-01]\n", + " [ 2.97980000e+03 4.99999771e-01]\n", + " [ 3.33820000e+03 4.99999773e-01]\n", + " [ 3.69660000e+03 5.00000075e-01]\n", + " [ 4.05500000e+03 4.99999913e-01]\n", + " [ 2.26300000e+03 2.04550000e+03]\n", + " [ 2.62140000e+03 2.04550000e+03]\n", + " [ 2.97980000e+03 2.04550000e+03]\n", + " [ 3.33820000e+03 2.04550000e+03]\n", + " [ 3.69660000e+03 2.04550000e+03]\n", + " [ 4.05500000e+03 2.04550000e+03]\n", + " [ 4.18150000e+03 1.27000000e+02]\n", + " [ 4.18150000e+03 4.85400000e+02]\n", + " [ 4.18150000e+03 8.43800000e+02]\n", + " [ 4.18150000e+03 1.20220000e+03]\n", + " [ 4.18150000e+03 1.56060000e+03]\n", + " [ 4.18150000e+03 1.91900000e+03]\n", + " [ 2.13650000e+03 4.99999930e-01]\n", + " [ 2.13650000e+03 4.99999930e-01]\n", + " [ 4.18150000e+03 2.04550000e+03]\n", + " [ 4.18150000e+03 2.04550000e+03]\n", + " [ 2.26300000e+03 1.27000000e+02]\n", + " [ 2.62140000e+03 1.27000000e+02]\n", + " [ 2.97980000e+03 1.27000000e+02]\n", + " [ 3.33820000e+03 1.27000000e+02]\n", + " [ 3.69660000e+03 1.27000000e+02]\n", + " [ 4.05500000e+03 1.27000000e+02]\n", + " [ 2.26300000e+03 4.85400000e+02]\n", + " [ 2.62140000e+03 4.85400000e+02]\n", + " [ 2.97980000e+03 4.85400000e+02]\n", + " [ 3.33820000e+03 4.85400000e+02]\n", + " [ 3.69660000e+03 4.85400000e+02]\n", + " [ 4.05500000e+03 4.85400000e+02]\n", + " [ 2.26300000e+03 8.43800000e+02]\n", + " [ 2.62140000e+03 8.43800000e+02]\n", + " [ 2.97980000e+03 8.43800000e+02]\n", + " [ 3.33820000e+03 8.43800000e+02]\n", + " [ 3.69660000e+03 8.43800000e+02]\n", + " [ 4.05500000e+03 8.43800000e+02]\n", + " [ 2.26300000e+03 1.20220000e+03]\n", + " [ 2.62140000e+03 1.20220000e+03]\n", + " [ 2.97980000e+03 1.20220000e+03]\n", + " [ 3.33820000e+03 1.20220000e+03]\n", + " [ 3.69660000e+03 1.20220000e+03]\n", + " [ 4.05500000e+03 1.20220000e+03]\n", + " [ 2.26300000e+03 1.56060000e+03]\n", + " [ 2.62140000e+03 1.56060000e+03]\n", + " [ 2.97980000e+03 1.56060000e+03]\n", + " [ 3.33820000e+03 1.56060000e+03]\n", + " [ 3.69660000e+03 1.56060000e+03]\n", + " [ 4.05500000e+03 1.56060000e+03]\n", + " [ 2.26300000e+03 1.91900000e+03]\n", + " [ 2.62140000e+03 1.91900000e+03]\n", + " [ 2.97980000e+03 1.91900000e+03]\n", + " [ 3.33820000e+03 1.91900000e+03]\n", + " [ 3.69660000e+03 1.91900000e+03]\n", + " [ 4.05500000e+03 1.91900000e+03]]\n", + "DEBUG:root:fitpix2pix: ccdpx: shape: (96, 2)\n", + "DEBUG:root:fitpix2pix: visCut: True\n", + "DEBUG:root:radec2pix: xyfp: [[32.275486 31.41357429]\n", + " [32.27502267 27.02714574]\n", + " [32.27455935 22.64071719]\n", + " [32.27409601 18.25428864]\n", + " [32.27363269 13.8678601 ]\n", + " [32.27316936 9.48143155]\n", + " [32.27270604 5.095003 ]\n", + " [32.27224271 0.70857446]\n", + " [32.275486 31.41357429]\n", + " [27.88905745 31.41403761]\n", + " [23.5026289 31.41450094]\n", + " [19.11620036 31.41496427]\n", + " [14.72977181 31.41542759]\n", + " [10.34334326 31.41589092]\n", + " [ 5.95691471 31.41635424]\n", + " [ 1.57048617 31.41681757]\n", + " [32.27224271 0.70857446]\n", + " [27.88581416 0.70903778]\n", + " [23.49938562 0.70950111]\n", + " [19.11295707 0.70996444]\n", + " [14.72652852 0.71042776]\n", + " [10.34009998 0.71089109]\n", + " [ 5.95367142 0.71135442]\n", + " [ 1.56724288 0.71181774]\n", + " [ 1.57048617 31.41681757]\n", + " [ 1.57002284 27.03038902]\n", + " [ 1.56955951 22.64396047]\n", + " [ 1.56909619 18.25753194]\n", + " [ 1.56863286 13.87110338]\n", + " [ 1.56816953 9.48467484]\n", + " [ 1.56770621 5.09824629]\n", + " [ 1.56724288 0.71181774]\n", + " [32.26028399 29.50107588]\n", + " [32.25971613 24.12507591]\n", + " [32.25914828 18.74907594]\n", + " [32.25858043 13.37307597]\n", + " [32.25801258 7.997076 ]\n", + " [32.25744472 2.62107603]\n", + " [30.36298443 31.3987763 ]\n", + " [24.98698446 31.39934415]\n", + " [19.61098448 31.399912 ]\n", + " [14.23498451 31.40047985]\n", + " [ 8.85898454 31.40104771]\n", + " [ 3.48298457 31.40161556]\n", + " [30.35974431 0.72377647]\n", + " [24.98374433 0.72434432]\n", + " [19.60774436 0.72491217]\n", + " [14.23174439 0.72548003]\n", + " [ 8.85574442 0.72604788]\n", + " [ 3.47974445 0.72661573]\n", + " [ 1.58528416 29.504316 ]\n", + " [ 1.5847163 24.12831603]\n", + " [ 1.58414845 18.75231606]\n", + " [ 1.5835806 13.37631609]\n", + " [ 1.58301275 8.00031612]\n", + " [ 1.5824449 2.62431615]\n", + " [32.26048441 31.39857587]\n", + " [32.26048441 31.39857587]\n", + " [ 1.58224447 0.72681616]\n", + " [ 1.58224447 0.72681616]\n", + " [30.36278399 29.50127631]\n", + " [24.98678403 29.50184416]\n", + " [19.61078405 29.50241201]\n", + " [14.23478409 29.50297987]\n", + " [ 8.85878411 29.50354772]\n", + " [ 3.48278414 29.50411557]\n", + " [30.36221615 24.12527634]\n", + " [24.98621618 24.12584419]\n", + " [19.6102162 24.12641204]\n", + " [14.23421623 24.1269799 ]\n", + " [ 8.85821626 24.12754775]\n", + " [ 3.48221629 24.1281156 ]\n", + " [30.36164829 18.74927637]\n", + " [24.98564832 18.74984422]\n", + " [19.60964835 18.75041208]\n", + " [14.23364838 18.75097993]\n", + " [ 8.85764841 18.75154778]\n", + " [ 3.48164844 18.75211563]\n", + " [30.36108043 13.3732764 ]\n", + " [24.98508046 13.37384425]\n", + " [19.60908049 13.3744121 ]\n", + " [14.23308053 13.37497996]\n", + " [ 8.85708056 13.37554781]\n", + " [ 3.48108059 13.37611567]\n", + " [30.36051258 7.99727643]\n", + " [24.98451261 7.99784428]\n", + " [19.60851265 7.99841214]\n", + " [14.23251268 7.99897999]\n", + " [ 8.85651271 7.99954784]\n", + " [ 3.48051273 8.00011569]\n", + " [30.35994473 2.62127646]\n", + " [24.98394476 2.62184431]\n", + " [19.60794479 2.62241216]\n", + " [14.23194482 2.62298002]\n", + " [ 8.85594485 2.62354787]\n", + " [ 3.47994488 2.62411572]]\n", + "DEBUG:root:radec2pix: ccdpx: [[-4.45000001e+01 -5.00000082e-01]\n", + " [-4.45000001e+01 2.91928571e+02]\n", + " [-4.45000003e+01 5.84357143e+02]\n", + " [-4.44999997e+01 8.76785714e+02]\n", + " [-4.45000002e+01 1.16921429e+03]\n", + " [-4.44999997e+01 1.46164286e+03]\n", + " [-4.45000001e+01 1.75407143e+03]\n", + " [-4.44999998e+01 2.04650000e+03]\n", + " [-4.45000001e+01 -5.00000082e-01]\n", + " [ 2.47928572e+02 -4.99999837e-01]\n", + " [ 5.40357143e+02 -5.00000111e-01]\n", + " [ 8.32785714e+02 -5.00000236e-01]\n", + " [ 1.12521429e+03 -4.99999746e-01]\n", + " [ 1.41764286e+03 -4.99999876e-01]\n", + " [ 1.71007143e+03 -4.99999788e-01]\n", + " [ 2.00250000e+03 -5.00000040e-01]\n", + " [-4.44999998e+01 2.04650000e+03]\n", + " [ 2.47928572e+02 2.04650000e+03]\n", + " [ 5.40357143e+02 2.04650000e+03]\n", + " [ 8.32785714e+02 2.04650000e+03]\n", + " [ 1.12521429e+03 2.04650000e+03]\n", + " [ 1.41764286e+03 2.04650000e+03]\n", + " [ 1.71007143e+03 2.04650000e+03]\n", + " [ 2.00250000e+03 2.04650000e+03]\n", + " [ 2.00250000e+03 -5.00000040e-01]\n", + " [ 2.00250000e+03 2.91928572e+02]\n", + " [ 2.00250000e+03 5.84357143e+02]\n", + " [ 2.00250000e+03 8.76785714e+02]\n", + " [ 2.00250000e+03 1.16921429e+03]\n", + " [ 2.00250000e+03 1.46164286e+03]\n", + " [ 2.00250000e+03 1.75407143e+03]\n", + " [ 2.00250000e+03 2.04650000e+03]\n", + " [-4.35000002e+01 1.27000000e+02]\n", + " [-4.35000000e+01 4.85400000e+02]\n", + " [-4.34999999e+01 8.43800000e+02]\n", + " [-4.35000002e+01 1.20220000e+03]\n", + " [-4.35000002e+01 1.56060000e+03]\n", + " [-4.34999998e+01 1.91900000e+03]\n", + " [ 8.29999997e+01 4.99999723e-01]\n", + " [ 4.41400000e+02 4.99999738e-01]\n", + " [ 7.99800000e+02 4.99999955e-01]\n", + " [ 1.15820000e+03 5.00000275e-01]\n", + " [ 1.51660000e+03 4.99999778e-01]\n", + " [ 1.87500000e+03 5.00000195e-01]\n", + " [ 8.29999999e+01 2.04550000e+03]\n", + " [ 4.41400000e+02 2.04550000e+03]\n", + " [ 7.99800000e+02 2.04550000e+03]\n", + " [ 1.15820000e+03 2.04550000e+03]\n", + " [ 1.51660000e+03 2.04550000e+03]\n", + " [ 1.87500000e+03 2.04550000e+03]\n", + " [ 2.00150000e+03 1.27000000e+02]\n", + " [ 2.00150000e+03 4.85400000e+02]\n", + " [ 2.00150000e+03 8.43800000e+02]\n", + " [ 2.00150000e+03 1.20220000e+03]\n", + " [ 2.00150000e+03 1.56060000e+03]\n", + " [ 2.00150000e+03 1.91900000e+03]\n", + " [-4.34999997e+01 5.00000254e-01]\n", + " [-4.34999997e+01 5.00000254e-01]\n", + " [ 2.00150000e+03 2.04550000e+03]\n", + " [ 2.00150000e+03 2.04550000e+03]\n", + " [ 8.30000000e+01 1.27000000e+02]\n", + " [ 4.41400000e+02 1.27000000e+02]\n", + " [ 7.99800000e+02 1.27000000e+02]\n", + " [ 1.15820000e+03 1.27000000e+02]\n", + " [ 1.51660000e+03 1.27000000e+02]\n", + " [ 1.87500000e+03 1.27000000e+02]\n", + " [ 8.29999998e+01 4.85400000e+02]\n", + " [ 4.41400000e+02 4.85400000e+02]\n", + " [ 7.99800000e+02 4.85400000e+02]\n", + " [ 1.15820000e+03 4.85400000e+02]\n", + " [ 1.51660000e+03 4.85400000e+02]\n", + " [ 1.87500000e+03 4.85400000e+02]\n", + " [ 8.29999999e+01 8.43800000e+02]\n", + " [ 4.41400000e+02 8.43800000e+02]\n", + " [ 7.99800000e+02 8.43800000e+02]\n", + " [ 1.15820000e+03 8.43800000e+02]\n", + " [ 1.51660000e+03 8.43800000e+02]\n", + " [ 1.87500000e+03 8.43800000e+02]\n", + " [ 8.30000002e+01 1.20220000e+03]\n", + " [ 4.41400000e+02 1.20220000e+03]\n", + " [ 7.99800000e+02 1.20220000e+03]\n", + " [ 1.15820000e+03 1.20220000e+03]\n", + " [ 1.51660000e+03 1.20220000e+03]\n", + " [ 1.87500000e+03 1.20220000e+03]\n", + " [ 8.30000002e+01 1.56060000e+03]\n", + " [ 4.41400000e+02 1.56060000e+03]\n", + " [ 7.99800000e+02 1.56060000e+03]\n", + " [ 1.15820000e+03 1.56060000e+03]\n", + " [ 1.51660000e+03 1.56060000e+03]\n", + " [ 1.87500000e+03 1.56060000e+03]\n", + " [ 8.29999999e+01 1.91900000e+03]\n", + " [ 4.41400000e+02 1.91900000e+03]\n", + " [ 7.99800000e+02 1.91900000e+03]\n", + " [ 1.15820000e+03 1.91900000e+03]\n", + " [ 1.51660000e+03 1.91900000e+03]\n", + " [ 1.87500000e+03 1.91900000e+03]]\n", + "DEBUG:root:cartToSphere: vec: [[-0.20650899 -0.20112017 0.95755142]\n", + " [-0.20834684 -0.17462343 0.96233999]\n", + " [-0.209912 -0.14743759 0.96653976]\n", + " [-0.2112049 -0.11967398 0.97008795]\n", + " [-0.21222492 -0.09144325 0.97293305]\n", + " [-0.21297066 -0.06285614 0.97503467]\n", + " [-0.21344048 -0.0340241 0.97636342]\n", + " [-0.21363303 -0.00505944 0.97690088]\n", + " [-0.20650899 -0.20112017 0.95755142]\n", + " [-0.18010636 -0.20295163 0.96248238]\n", + " [-0.15299311 -0.20451753 0.96683281]\n", + " [-0.12528058 -0.20581845 0.97053776]\n", + " [-0.09707928 -0.20685386 0.97354358]\n", + " [-0.06849975 -0.20762236 0.97580774]\n", + " [-0.03965325 -0.2081222 0.97729871]\n", + " [-0.01065205 -0.20835189 0.97799592]\n", + " [-0.21363303 -0.00505944 0.97690088]\n", + " [-0.1862962 -0.0050993 0.98248039]\n", + " [-0.15824793 -0.00513287 0.98738607]\n", + " [-0.12959237 -0.00516008 0.99155393]\n", + " [-0.10043485 -0.00518078 0.99493015]\n", + " [-0.07088401 -0.00519482 0.99747104]\n", + " [-0.04105265 -0.00520206 0.99914344]\n", + " [-0.01105755 -0.00520239 0.99992533]\n", + " [-0.01065205 -0.20835189 0.97799592]\n", + " [-0.01075054 -0.18087002 0.98344825]\n", + " [-0.01083605 -0.15269708 0.98821363]\n", + " [-0.01090831 -0.12393724 0.9922301 ]\n", + " [-0.01096697 -0.09469638 0.99544579]\n", + " [-0.01101162 -0.06508391 0.99781904]\n", + " [-0.0110419 -0.03521344 0.99931881]\n", + " [-0.01105755 -0.00520239 0.99992533]\n", + " [-0.20725456 -0.18966571 0.9597252 ]\n", + " [-0.20932255 -0.15671259 0.96520735]\n", + " [-0.21098167 -0.12283514 0.96974134]\n", + " [-0.21223121 -0.0882373 0.97322767]\n", + " [-0.21306867 -0.053123 0.97559197]\n", + " [-0.2134911 -0.01769778 0.97678469]\n", + " [-0.19509826 -0.20186172 0.95978566]\n", + " [-0.16224603 -0.20392662 0.96544816]\n", + " [-0.12843717 -0.20559352 0.97017277]\n", + " [-0.09387541 -0.20686189 0.97385603]\n", + " [-0.05876435 -0.20772922 0.97641964]\n", + " [-0.02330924 -0.20819238 0.97781011]\n", + " [-0.20180806 -0.00517714 0.97941141]\n", + " [-0.16781243 -0.00522278 0.98580511]\n", + " [-0.13285166 -0.00525872 0.99112198]\n", + " [-0.09711907 -0.00528472 0.99525874]\n", + " [-0.06081473 -0.0053005 0.998135 ]\n", + " [-0.02414801 -0.00530579 0.99969431]\n", + " [-0.01079628 -0.19646103 0.98045219]\n", + " [-0.01090926 -0.1623014 0.98668092]\n", + " [-0.01100231 -0.12720719 0.99181514]\n", + " [-0.01107479 -0.09137251 0.9957552 ]\n", + " [-0.01112598 -0.05499882 0.99842443]\n", + " [-0.01115523 -0.01829695 0.99977036]\n", + " [-0.20642679 -0.20103758 0.95758648]\n", + " [-0.20642679 -0.20103758 0.95758648]\n", + " [-0.01116024 -0.00530513 0.99992365]\n", + " [-0.01116024 -0.00530513 0.99992365]\n", + " [-0.19587779 -0.19044022 0.96195864]\n", + " [-0.16288944 -0.19238166 0.96770674]\n", + " [-0.12894461 -0.19395017 0.97250019]\n", + " [-0.09424616 -0.19514465 0.97623574]\n", + " [-0.05899718 -0.19596195 0.97883515]\n", + " [-0.02340304 -0.19639843 0.98024484]\n", + " [-0.19782623 -0.15734701 0.96752607]\n", + " [-0.16450046 -0.15893973 0.97348742]\n", + " [-0.13021766 -0.16022981 0.97845274]\n", + " [-0.09517804 -0.16121459 0.98231919]\n", + " [-0.05958347 -0.16188952 0.98500842]\n", + " [-0.0236399 -0.16224993 0.98646648]\n", + " [-0.19939086 -0.12332956 0.97212813]\n", + " [-0.16579789 -0.12457282 0.97826002]\n", + " [-0.13124607 -0.12558234 0.98336338]\n", + " [-0.09593306 -0.12635458 0.98733549]\n", + " [-0.06005988 -0.12688447 0.99009754]\n", + " [-0.02383341 -0.12716713 0.99159492]\n", + " [-0.20057035 -0.08859098 0.9756655 ]\n", + " [-0.16677881 -0.08948154 0.9819256 ]\n", + " [-0.13202594 -0.09020602 0.98713324]\n", + " [-0.09650734 -0.09076095 0.99118554]\n", + " [-0.06042346 -0.09114176 0.99400311]\n", + " [-0.02398226 -0.09134421 0.99553056]\n", + " [-0.20136156 -0.05333481 0.97806386]\n", + " [-0.16743861 -0.05386844 0.98440972]\n", + " [-0.13255205 -0.05430277 0.98968741]\n", + " [-0.09689601 -0.0546353 0.99379381]\n", + " [-0.0606707 -0.05486289 0.99664895]\n", + " [-0.02408492 -0.05498267 0.99819679]\n", + " [-0.20176105 -0.01776673 0.97927362]\n", + " [-0.16777281 -0.01794001 0.98566244]\n", + " [-0.13281959 -0.01808024 0.99097531]\n", + " [-0.09709479 -0.01818657 0.99510896]\n", + " [-0.06079851 -0.01825788 0.99798306]\n", + " [-0.02414006 -0.01829321 0.9995412 ]]\n", + "DEBUG:root:radec2pix: lng: [224.24259986 219.96765614 215.08336296 209.53697562 203.3101935\n", + " 196.44343401 189.05719479 181.35667342 224.24259986 228.41303103\n", + " 233.20099698 238.67135193 244.85870857 251.7410006 259.21279966\n", + " 267.07328529 181.35667342 181.56790868 181.85777415 182.28018564\n", + " 182.95289983 184.19149998 187.22184671 205.19617552 267.07328529\n", + " 266.59845953 265.94084811 264.97008557 263.3938965 260.39700292\n", + " 252.59010355 205.19617552 222.46269399 216.82093439 210.20829157\n", + " 202.57559903 193.99974981 184.73881406 225.97611965 231.49389572\n", + " 238.00639827 245.59111124 254.20436521 263.6117634 181.46953067\n", + " 181.78262482 182.26677669 183.11467024 184.98120654 192.39209935\n", + " 266.85454344 266.15458823 265.05671864 263.08918181 258.56369308\n", + " 238.630299 224.24223838 224.24223838 205.42453452 205.42453452\n", + " 224.19359423 229.74542917 236.38270094 244.22153031 253.24481767\n", + " 263.2046196 218.49803362 224.01504295 230.89947742 239.44320338\n", + " 249.79385261 261.71030558 211.7381028 216.91949721 223.73668556\n", + " 232.79289096 244.66979293 259.38488067 203.8308227 208.21481457\n", + " 214.34263424 223.2424136 236.45716258 255.28910964 194.83531269\n", + " 197.83404909 202.27750364 209.41669409 222.12219565 246.34438586\n", + " 185.03238692 186.10346579 187.75181788 190.6089913 196.71508989\n", + " 217.15465227]\n", + "DEBUG:root:radec2pix: fitpx: [[4271.50000008 4155.50000008]\n", + " [4271.50000011 3863.07142867]\n", + " [4271.50000027 3570.64285733]\n", + " [4271.49999971 3278.21428555]\n", + " [4271.50000017 2985.78571436]\n", + " [4271.4999997 2693.35714277]\n", + " [4271.5000001 2400.92857145]\n", + " [4271.49999983 2108.5 ]\n", + " [4271.50000008 4155.50000008]\n", + " [3979.07142843 4155.49999984]\n", + " [3686.64285723 4155.50000011]\n", + " [3394.21428586 4155.50000024]\n", + " [3101.78571417 4155.49999975]\n", + " [2809.35714282 4155.49999988]\n", + " [2516.92857139 4155.49999979]\n", + " [2224.5 4155.50000004]\n", + " [4271.49999983 2108.5 ]\n", + " [3979.07142844 2108.5 ]\n", + " [3686.64285726 2108.5 ]\n", + " [3394.21428608 2108.50000001]\n", + " [3101.7857142 2108.5 ]\n", + " [2809.35714302 2108.50000001]\n", + " [2516.92857112 2108.49999996]\n", + " [2224.50000006 2108.50000003]\n", + " [2224.5 4155.50000004]\n", + " [2224.49999999 3863.07142838]\n", + " [2224.49999998 3570.64285685]\n", + " [2224.50000004 3278.21428613]\n", + " [2224.49999996 2985.78571394]\n", + " [2224.50000004 2693.35714312]\n", + " [2224.49999998 2400.92857136]\n", + " [2224.50000006 2108.50000003]\n", + " [4270.50000017 4028.00000015]\n", + " [4270.49999995 3669.59999996]\n", + " [4270.49999992 3311.19999995]\n", + " [4270.50000022 2952.80000009]\n", + " [4270.50000024 2594.40000006]\n", + " [4270.49999979 2235.99999998]\n", + " [4144.00000027 4154.50000028]\n", + " [3785.60000021 4154.50000026]\n", + " [3427.20000003 4154.50000005]\n", + " [3068.79999988 4154.49999973]\n", + " [2710.40000006 4154.50000022]\n", + " [2351.99999998 4154.4999998 ]\n", + " [4144.00000013 2109.5 ]\n", + " [3785.6 2109.5 ]\n", + " [3427.19999974 2109.49999999]\n", + " [3068.8 2109.5 ]\n", + " [2710.39999984 2109.49999999]\n", + " [2351.99999972 2109.49999994]\n", + " [2225.5 4027.99999997]\n", + " [2225.50000002 3669.60000025]\n", + " [2225.50000002 3311.20000025]\n", + " [2225.50000004 2952.80000031]\n", + " [2225.50000002 2594.40000011]\n", + " [2225.50000016 2236.00000026]\n", + " [4270.49999974 4154.49999975]\n", + " [4270.49999974 4154.49999975]\n", + " [2225.50000003 2109.50000001]\n", + " [2225.50000003 2109.50000001]\n", + " [4143.99999996 4027.99999996]\n", + " [3785.60000018 4028.00000021]\n", + " [3427.19999989 4027.99999984]\n", + " [3068.80000004 4028.00000009]\n", + " [2710.39999997 4027.9999999 ]\n", + " [2351.99999997 4027.99999976]\n", + " [4144.00000024 3669.60000019]\n", + " [3785.60000022 3669.60000021]\n", + " [3427.19999988 3669.59999985]\n", + " [3068.80000005 3669.60000008]\n", + " [2710.39999999 3669.59999998]\n", + " [2352. 3669.60000003]\n", + " [4144.00000009 3311.20000006]\n", + " [3785.60000001 3311.20000001]\n", + " [3427.20000009 3311.20000009]\n", + " [3068.80000003 3311.20000004]\n", + " [2710.40000012 3311.20000025]\n", + " [2351.99999998 3311.19999988]\n", + " [4143.99999976 2952.79999989]\n", + " [3785.59999985 2952.79999992]\n", + " [3427.19999969 2952.79999979]\n", + " [3068.79999997 2952.79999997]\n", + " [2710.40000016 2952.80000025]\n", + " [2352.00000009 2952.80000036]\n", + " [4143.99999979 2594.39999994]\n", + " [3785.60000002 2594.40000001]\n", + " [3427.20000024 2594.4000001 ]\n", + " [3068.80000002 2594.40000001]\n", + " [2710.40000021 2594.40000019]\n", + " [2351.99999998 2594.39999995]\n", + " [4144.00000008 2236.00000001]\n", + " [3785.60000005 2236.00000001]\n", + " [3427.20000007 2236.00000001]\n", + " [3068.79999979 2235.99999996]\n", + " [2710.39999971 2235.99999991]\n", + " [2351.99999979 2235.99999984]]\n", + "DEBUG:root:fitpix2pix: ccdpx: shape: (96, 2)\n", + "DEBUG:root:radec2pix: lat: [73.24603516 74.22569152 75.13651604 75.95087507 76.6389128 77.17037377\n", + " 77.51785702 77.66114392 73.24603516 74.25573072 75.20211387 76.05743745\n", + " 76.79113897 77.37139648 77.76826885 77.95827247 77.66114392 79.25921808\n", + " 80.88995617 82.54802878 84.22809839 85.92431704 87.62836983 89.29981459\n", + " 77.95827247 79.56096311 81.19447792 82.85294756 84.52972557 86.21521853\n", + " 87.88507254 89.29981459 73.68365855 74.84176377 75.86929863 76.71215801\n", + " 77.3149747 77.63003049 73.695993 74.89461964 75.97090871 76.86971486\n", + " 77.53277126 77.90734766 78.35340648 80.33462383 82.35957542 84.41843101\n", + " 86.50018709 88.58327287 78.6525924 80.63823128 82.66432935 84.71895211\n", + " 86.78327785 88.77209382 73.25300675 73.25300675 89.29197852 89.29197852\n", + " 74.14551493 75.39944683 76.53201019 77.48405712 78.19096994 78.59236983\n", + " 75.35843946 76.77706596 78.08438262 79.20977154 80.06643025 80.56299799\n", + " 76.44078432 78.03102057 79.5341606 80.87167145 81.93009942 82.56616105\n", + " 77.33417557 79.08997119 80.79891427 82.38701631 83.72204901 84.58091077\n", + " 77.9769458 79.86951112 81.76439499 83.61332437 85.3080928 86.55866797\n", + " 78.31436404 80.28605679 82.29662619 84.33088528 86.36037199 88.26434016]\n", + "DEBUG:root:fitpix2pix: visCut: True\n", + "DEBUG:root:optics_fp: rtanth: [45.10607628 42.16357777 39.4899731 37.14337318 35.189258 33.69598042\n", + " 32.72668371 32.32853333 45.10607628 42.0744994 39.2994961 36.83909335\n", + " 34.76015989 33.13457624 32.03143895 31.50567459 32.32853333 27.94350461\n", + " 23.55899708 19.17536829 14.79339939 10.41518568 6.04888681 1.78423138\n", + " 31.50567459 27.12594155 22.74878876 18.37606012 14.01189826 9.66791142\n", + " 5.39307341 1.78423138 43.78236587 40.34917919 37.37672691 34.98265169\n", + " 33.29196413 32.41491299 43.7452802 40.19469624 37.08612172 34.53910818\n", + " 32.68520027 31.64644357 30.41697218 25.04308812 19.67036046 14.30009268\n", + " 8.93672046 3.6111005 29.59667216 24.23063563 18.87027174 13.52232821\n", + " 8.21110934 3.12954069 45.08486499 45.08486499 1.80420296 1.80420296\n", + " 42.4016515 38.72807918 35.4912797 32.82073285 30.86377856 29.76151712\n", + " 38.84663114 34.79978185 31.15752935 28.07777067 25.76302637 24.43171303\n", + " 35.74946438 31.30476433 27.19843907 23.60772454 20.80136966 19.12778226\n", + " 33.23838757 28.40342363 23.80170775 19.59823621 16.10786095 13.87941853\n", + " 31.45408342 26.29303007 21.23888529 16.39084557 12.00133913 8.78676362\n", + " 30.52427023 25.1733021 19.8358755 14.52692422 9.29536709 4.42480773]\n", + "DEBUG:root:optics_fp: cphi: [-0.71639206 -0.76640718 -0.81831665 -0.87003773 -0.918376 -0.95909967\n", + " -0.98753169 -0.99971968 -0.71639206 -0.66375612 -0.59900967 -0.51994628\n", + " -0.42485193 -0.31331297 -0.18716187 -0.0510586 -0.99971968 -0.9996256\n", + " -0.99947438 -0.99920821 -0.99867222 -0.99732533 -0.99206684 -0.90485547\n", + " -0.0510586 -0.05933321 -0.07078632 -0.08767585 -0.11504297 -0.16682032\n", + " -0.29920561 -0.90485547 -0.73771707 -0.80051245 -0.864202 -0.9233738\n", + " -0.97029678 -0.99658165 -0.69495812 -0.62259801 -0.52982456 -0.41324571\n", + " -0.27220694 -0.1112649 -0.9996711 -0.99951604 -0.9992175 -0.99852279\n", + " -0.99622323 -0.97670188 -0.054871 -0.06706472 -0.08616954 -0.12032428\n", + " -0.19827847 -0.52055819 -0.71639646 -0.71639646 -0.90315154 -0.90315154\n", + " -0.71698855 -0.64618487 -0.553643 -0.43489275 -0.28828288 -0.11832391\n", + " -0.78262952 -0.71915739 -0.63068289 -0.50839224 -0.34539889 -0.14417822\n", + " -0.85046147 -0.79948029 -0.72252464 -0.60469794 -0.42783445 -0.18421072\n", + " -0.91474245 -0.88118124 -0.82567874 -0.72846169 -0.55256029 -0.25394179\n", + " -0.96666577 -0.95194756 -0.92535864 -0.87107074 -0.74171607 -0.40123831\n", + " -0.99614527 -0.99433151 -0.99086162 -0.98290647 -0.95774678 -0.79700819]\n", + "DEBUG:root:optics_fp: sphi: [-0.69769794 -0.64235507 -0.57476766 -0.49298514 -0.3957089 -0.2830686\n", + " -0.15742033 -0.02367621 -0.69769794 -0.74794907 -0.80074179 -0.85419896\n", + " -0.90526286 -0.94964993 -0.98232909 -0.99869566 -0.02367621 -0.02736175\n", + " -0.03241859 -0.03978624 -0.05151501 -0.07309024 -0.12571151 -0.42571889\n", + " -0.99869566 -0.99823823 -0.9974915 -0.99614906 -0.99336052 -0.98598731\n", + " -0.95418866 -0.42571889 -0.67511001 -0.59931613 -0.50314502 -0.38390211\n", + " -0.24191766 -0.08261364 -0.71905021 -0.78254183 -0.84810727 -0.91061956\n", + " -0.96223874 -0.99379078 -0.02564534 -0.03110765 -0.0395524 -0.05433448\n", + " -0.08682898 -0.21460065 -0.99849345 -0.99774863 -0.99628049 -0.99273464\n", + " -0.98014573 -0.8538262 -0.69769342 -0.69769342 -0.42932191 -0.42932191\n", + " -0.69708495 -0.76318092 -0.83275412 -0.90048226 -0.95754529 -0.99297505\n", + " -0.62248778 -0.69484721 -0.77604065 -0.86112562 -0.93845597 -0.98955174\n", + " -0.52603734 -0.60069232 -0.69134517 -0.7964549 -0.90385712 -0.98288677\n", + " -0.40403745 -0.47277862 -0.5641406 -0.68508654 -0.83347293 -0.9672195\n", + " -0.25604158 -0.30626107 -0.37909286 -0.49115758 -0.670714 -0.9159737\n", + " -0.08771884 -0.10632422 -0.13488237 -0.1841056 -0.28761277 -0.6039685 ]\n", + "DEBUG:root:optics_fp: xyfp: [[32.31363499 31.47041645]\n", + " [32.3144687 27.08398795]\n", + " [32.31530242 22.69755946]\n", + " [32.31613613 18.31113097]\n", + " [32.31696984 13.92470248]\n", + " [32.31780355 9.53827398]\n", + " [32.31863726 5.15184549]\n", + " [32.31947097 0.765417 ]\n", + " [32.31363499 31.47041645]\n", + " [27.9272065 31.46958273]\n", + " [23.540778 31.46874902]\n", + " [19.15434951 31.46791531]\n", + " [14.76792102 31.4670816 ]\n", + " [10.38149253 31.46624788]\n", + " [ 5.99506403 31.46541417]\n", + " [ 1.60863554 31.46458045]\n", + " [32.31947097 0.765417 ]\n", + " [27.93304248 0.76458329]\n", + " [23.54661399 0.76374957]\n", + " [19.1601855 0.76291586]\n", + " [14.77375701 0.76208215]\n", + " [10.38732851 0.76124844]\n", + " [ 6.00090002 0.76041472]\n", + " [ 1.61447153 0.75958101]\n", + " [ 1.60863554 31.46458045]\n", + " [ 1.60946926 27.07815197]\n", + " [ 1.61030297 22.69172348]\n", + " [ 1.61113668 18.30529498]\n", + " [ 1.61197039 13.91886648]\n", + " [ 1.6128041 9.53243799]\n", + " [ 1.61363782 5.1460095 ]\n", + " [ 1.61447153 0.75958101]\n", + " [32.29899849 29.55791363]\n", + " [32.30002028 24.18191372]\n", + " [32.30104209 18.80591382]\n", + " [32.30206388 13.42991392]\n", + " [32.30308568 8.05391402]\n", + " [32.30410748 2.67791411]\n", + " [30.40113787 31.45505294]\n", + " [25.02513797 31.45403115]\n", + " [19.64913807 31.45300935]\n", + " [14.27313817 31.45198755]\n", + " [ 8.89713826 31.45096576]\n", + " [ 3.52113836 31.44994396]\n", + " [30.40696816 0.7800535 ]\n", + " [25.03096826 0.7790317 ]\n", + " [19.65496836 0.7780099 ]\n", + " [14.27896845 0.77698811]\n", + " [ 8.90296855 0.77596631]\n", + " [ 3.52696865 0.77494451]\n", + " [ 1.62399904 29.55208334]\n", + " [ 1.62502084 24.17608344]\n", + " [ 1.62604264 18.80008353]\n", + " [ 1.62706443 13.42408364]\n", + " [ 1.62808623 8.04808373]\n", + " [ 1.62910803 2.67208383]\n", + " [32.29863784 31.4554136 ]\n", + " [32.29863784 31.4554136 ]\n", + " [ 1.62946868 0.77458386]\n", + " [ 1.62946868 0.77458386]\n", + " [30.40149852 29.55755297]\n", + " [25.02549862 29.55653118]\n", + " [19.64949872 29.55550938]\n", + " [14.27349882 29.55448759]\n", + " [ 8.89749891 29.55346579]\n", + " [ 3.52149901 29.55244399]\n", + " [30.40252032 24.18155307]\n", + " [25.02652042 24.18053128]\n", + " [19.65052052 24.17950948]\n", + " [14.27452061 24.17848769]\n", + " [ 8.89852071 24.17746589]\n", + " [ 3.52252081 24.17644409]\n", + " [30.40354212 18.80555317]\n", + " [25.02754221 18.80453137]\n", + " [19.65154231 18.80350958]\n", + " [14.27554241 18.80248779]\n", + " [ 8.89954251 18.80146598]\n", + " [ 3.5235426 18.80044419]\n", + " [30.40456392 13.42955327]\n", + " [25.02856401 13.42853147]\n", + " [19.65256411 13.42750967]\n", + " [14.27656421 13.42648788]\n", + " [ 8.9005643 13.42546608]\n", + " [ 3.5245644 13.42444429]\n", + " [30.40558571 8.05355336]\n", + " [25.02958581 8.05253157]\n", + " [19.6535859 8.05150977]\n", + " [14.277586 8.05048797]\n", + " [ 8.9015861 8.04946618]\n", + " [ 3.5255862 8.04844438]\n", + " [30.40660751 2.67755346]\n", + " [25.0306076 2.67653166]\n", + " [19.6546077 2.67550987]\n", + " [14.2786078 2.67448807]\n", + " [ 8.90260789 2.67346627]\n", + " [ 3.52660799 2.67244448]]\n", + "DEBUG:root:optics_fp: xyfp shape: (96, 2)\n", + "DEBUG:root:make_az_asym: xyp: [[32.31363499 31.47041645]\n", + " [32.3144687 27.08398795]\n", + " [32.31530242 22.69755946]\n", + " [32.31613613 18.31113097]\n", + " [32.31696984 13.92470248]\n", + " [32.31780355 9.53827398]\n", + " [32.31863726 5.15184549]\n", + " [32.31947097 0.765417 ]\n", + " [32.31363499 31.47041645]\n", + " [27.9272065 31.46958273]\n", + " [23.540778 31.46874902]\n", + " [19.15434951 31.46791531]\n", + " [14.76792102 31.4670816 ]\n", + " [10.38149253 31.46624788]\n", + " [ 5.99506403 31.46541417]\n", + " [ 1.60863554 31.46458045]\n", + " [32.31947097 0.765417 ]\n", + " [27.93304248 0.76458329]\n", + " [23.54661399 0.76374957]\n", + " [19.1601855 0.76291586]\n", + " [14.77375701 0.76208215]\n", + " [10.38732851 0.76124844]\n", + " [ 6.00090002 0.76041472]\n", + " [ 1.61447153 0.75958101]\n", + " [ 1.60863554 31.46458045]\n", + " [ 1.60946926 27.07815197]\n", + " [ 1.61030297 22.69172348]\n", + " [ 1.61113668 18.30529498]\n", + " [ 1.61197039 13.91886648]\n", + " [ 1.6128041 9.53243799]\n", + " [ 1.61363782 5.1460095 ]\n", + " [ 1.61447153 0.75958101]\n", + " [32.29899849 29.55791363]\n", + " [32.30002028 24.18191372]\n", + " [32.30104209 18.80591382]\n", + " [32.30206388 13.42991392]\n", + " [32.30308568 8.05391402]\n", + " [32.30410748 2.67791411]\n", + " [30.40113787 31.45505294]\n", + " [25.02513797 31.45403115]\n", + " [19.64913807 31.45300935]\n", + " [14.27313817 31.45198755]\n", + " [ 8.89713826 31.45096576]\n", + " [ 3.52113836 31.44994396]\n", + " [30.40696816 0.7800535 ]\n", + " [25.03096826 0.7790317 ]\n", + " [19.65496836 0.7780099 ]\n", + " [14.27896845 0.77698811]\n", + " [ 8.90296855 0.77596631]\n", + " [ 3.52696865 0.77494451]\n", + " [ 1.62399904 29.55208334]\n", + " [ 1.62502084 24.17608344]\n", + " [ 1.62604264 18.80008353]\n", + " [ 1.62706443 13.42408364]\n", + " [ 1.62808623 8.04808373]\n", + " [ 1.62910803 2.67208383]\n", + " [32.29863784 31.4554136 ]\n", + " [32.29863784 31.4554136 ]\n", + " [ 1.62946868 0.77458386]\n", + " [ 1.62946868 0.77458386]\n", + " [30.40149852 29.55755297]\n", + " [25.02549862 29.55653118]\n", + " [19.64949872 29.55550938]\n", + " [14.27349882 29.55448759]\n", + " [ 8.89749891 29.55346579]\n", + " [ 3.52149901 29.55244399]\n", + " [30.40252032 24.18155307]\n", + " [25.02652042 24.18053128]\n", + " [19.65052052 24.17950948]\n", + " [14.27452061 24.17848769]\n", + " [ 8.89852071 24.17746589]\n", + " [ 3.52252081 24.17644409]\n", + " [30.40354212 18.80555317]\n", + " [25.02754221 18.80453137]\n", + " [19.65154231 18.80350958]\n", + " [14.27554241 18.80248779]\n", + " [ 8.89954251 18.80146598]\n", + " [ 3.5235426 18.80044419]\n", + " [30.40456392 13.42955327]\n", + " [25.02856401 13.42853147]\n", + " [19.65256411 13.42750967]\n", + " [14.27656421 13.42648788]\n", + " [ 8.9005643 13.42546608]\n", + " [ 3.5245644 13.42444429]\n", + " [30.40558571 8.05355336]\n", + " [25.02958581 8.05253157]\n", + " [19.6535859 8.05150977]\n", + " [14.277586 8.05048797]\n", + " [ 8.9015861 8.04946618]\n", + " [ 3.5255862 8.04844438]\n", + " [30.40660751 2.67755346]\n", + " [25.0306076 2.67653166]\n", + " [19.6546077 2.67550987]\n", + " [14.2786078 2.67448807]\n", + " [ 8.90260789 2.67346627]\n", + " [ 3.52660799 2.67244448]]\n", + "DEBUG:root:make_az_asym: xyp: shape: (96, 2)\n", + "DEBUG:root:radec2pix: xyfp: [[32.31363499 31.47041645]\n", + " [32.3144687 27.08398795]\n", + " [32.31530242 22.69755946]\n", + " [32.31613613 18.31113097]\n", + " [32.31696984 13.92470248]\n", + " [32.31780355 9.53827398]\n", + " [32.31863726 5.15184549]\n", + " [32.31947097 0.765417 ]\n", + " [32.31363499 31.47041645]\n", + " [27.9272065 31.46958273]\n", + " [23.540778 31.46874902]\n", + " [19.15434951 31.46791531]\n", + " [14.76792102 31.4670816 ]\n", + " [10.38149253 31.46624788]\n", + " [ 5.99506403 31.46541417]\n", + " [ 1.60863554 31.46458045]\n", + " [32.31947097 0.765417 ]\n", + " [27.93304248 0.76458329]\n", + " [23.54661399 0.76374957]\n", + " [19.1601855 0.76291586]\n", + " [14.77375701 0.76208215]\n", + " [10.38732851 0.76124844]\n", + " [ 6.00090002 0.76041472]\n", + " [ 1.61447153 0.75958101]\n", + " [ 1.60863554 31.46458045]\n", + " [ 1.60946926 27.07815197]\n", + " [ 1.61030297 22.69172348]\n", + " [ 1.61113668 18.30529498]\n", + " [ 1.61197039 13.91886648]\n", + " [ 1.6128041 9.53243799]\n", + " [ 1.61363782 5.1460095 ]\n", + " [ 1.61447153 0.75958101]\n", + " [32.29899849 29.55791363]\n", + " [32.30002028 24.18191372]\n", + " [32.30104209 18.80591382]\n", + " [32.30206388 13.42991392]\n", + " [32.30308568 8.05391402]\n", + " [32.30410748 2.67791411]\n", + " [30.40113787 31.45505294]\n", + " [25.02513797 31.45403115]\n", + " [19.64913807 31.45300935]\n", + " [14.27313817 31.45198755]\n", + " [ 8.89713826 31.45096576]\n", + " [ 3.52113836 31.44994396]\n", + " [30.40696816 0.7800535 ]\n", + " [25.03096826 0.7790317 ]\n", + " [19.65496836 0.7780099 ]\n", + " [14.27896845 0.77698811]\n", + " [ 8.90296855 0.77596631]\n", + " [ 3.52696865 0.77494451]\n", + " [ 1.62399904 29.55208334]\n", + " [ 1.62502084 24.17608344]\n", + " [ 1.62604264 18.80008353]\n", + " [ 1.62706443 13.42408364]\n", + " [ 1.62808623 8.04808373]\n", + " [ 1.62910803 2.67208383]\n", + " [32.29863784 31.4554136 ]\n", + " [32.29863784 31.4554136 ]\n", + " [ 1.62946868 0.77458386]\n", + " [ 1.62946868 0.77458386]\n", + " [30.40149852 29.55755297]\n", + " [25.02549862 29.55653118]\n", + " [19.64949872 29.55550938]\n", + " [14.27349882 29.55448759]\n", + " [ 8.89749891 29.55346579]\n", + " [ 3.52149901 29.55244399]\n", + " [30.40252032 24.18155307]\n", + " [25.02652042 24.18053128]\n", + " [19.65052052 24.17950948]\n", + " [14.27452061 24.17848769]\n", + " [ 8.89852071 24.17746589]\n", + " [ 3.52252081 24.17644409]\n", + " [30.40354212 18.80555317]\n", + " [25.02754221 18.80453137]\n", + " [19.65154231 18.80350958]\n", + " [14.27554241 18.80248779]\n", + " [ 8.89954251 18.80146598]\n", + " [ 3.5235426 18.80044419]\n", + " [30.40456392 13.42955327]\n", + " [25.02856401 13.42853147]\n", + " [19.65256411 13.42750967]\n", + " [14.27656421 13.42648788]\n", + " [ 8.9005643 13.42546608]\n", + " [ 3.5245644 13.42444429]\n", + " [30.40558571 8.05355336]\n", + " [25.02958581 8.05253157]\n", + " [19.6535859 8.05150977]\n", + " [14.277586 8.05048797]\n", + " [ 8.9015861 8.04946618]\n", + " [ 3.5255862 8.04844438]\n", + " [30.40660751 2.67755346]\n", + " [25.0306076 2.67653166]\n", + " [19.6546077 2.67550987]\n", + " [14.2786078 2.67448807]\n", + " [ 8.90260789 2.67346627]\n", + " [ 3.52660799 2.67244448]]\n", + "DEBUG:root:radec2pix: xyfp Shape: (96, 2)\n", + "DEBUG:root:radec2pix: curVec: [[-0.2952011 -0.11578513 -0.94839344]\n", + " [-0.28242063 -0.09170872 -0.95489691]\n", + " [-0.26915768 -0.06708097 -0.96075714]\n", + " [-0.25545279 -0.04199595 -0.96590901]\n", + " [-0.24134962 -0.01654914 -0.97029711]\n", + " [-0.22689566 0.00916152 -0.97387598]\n", + " [-0.21214236 0.03503558 -0.97661053]\n", + " [-0.19714492 0.06097067 -0.9784766 ]\n", + " [-0.2952011 -0.11578513 -0.94839344]\n", + " [-0.31948365 -0.10113596 -0.94217924]\n", + " [-0.34337634 -0.08636416 -0.93521865]\n", + " [-0.36678832 -0.07152624 -0.92755071]\n", + " [-0.38963198 -0.05667793 -0.91922496]\n", + " [-0.41182251 -0.04187363 -0.9103015 ]\n", + " [-0.43327709 -0.02716624 -0.90085124]\n", + " [-0.45391351 -0.01260707 -0.89095656]\n", + " [-0.19714492 0.06097067 -0.9784766 ]\n", + " [-0.22232377 0.07599037 -0.972007 ]\n", + " [-0.24722178 0.09089579 -0.96468614]\n", + " [-0.27174363 0.10562916 -0.95655522]\n", + " [-0.29579865 0.12013488 -0.94766596]\n", + " [-0.31930142 0.13435987 -0.93807997]\n", + " [-0.34217162 0.14825357 -0.92786824]\n", + " [-0.36433303 0.16176738 -0.91711109]\n", + " [-0.45391351 -0.01260707 -0.89095656]\n", + " [-0.44293371 0.01152602 -0.89648027]\n", + " [-0.43127224 0.03608381 -0.90149998]\n", + " [-0.4189736 0.06096648 -0.90594934]\n", + " [-0.40608268 0.0860751 -0.90977356]\n", + " [-0.39264587 0.11131083 -0.91292887]\n", + " [-0.37871203 0.13657462 -0.9153822 ]\n", + " [-0.36433303 0.16176738 -0.91711109]\n", + " [-0.28977451 -0.10531152 -0.95128346]\n", + " [-0.27378213 -0.07542034 -0.95883008]\n", + " [-0.25710488 -0.04479452 -0.96534477]\n", + " [-0.23982179 -0.01360917 -0.97072154]\n", + " [-0.22202028 0.01795542 -0.97487671]\n", + " [-0.20379666 0.04971345 -0.97775022]\n", + " [-0.30578787 -0.10933528 -0.94580102]\n", + " [-0.33529897 -0.09129122 -0.93767826]\n", + " [-0.3641339 -0.07311935 -0.9284719 ]\n", + " [-0.39213001 -0.0549226 -0.91826879]\n", + " [-0.4191311 -0.03680113 -0.90717958]\n", + " [-0.44498502 -0.01885163 -0.89533957]\n", + " [-0.20820287 0.06744093 -0.9757578 ]\n", + " [-0.2388853 0.08577972 -0.9672516 ]\n", + " [-0.2690506 0.10388942 -0.95750653]\n", + " [-0.29852989 0.12166673 -0.94661349]\n", + " [-0.3271659 0.13901395 -0.93468583]\n", + " [-0.35481255 0.15583883 -0.92185808]\n", + " [-0.44914341 -0.00219295 -0.89345699]\n", + " [-0.43522123 0.02768338 -0.89989783]\n", + " [-0.42031952 0.05809839 -0.90551426]\n", + " [-0.40452068 0.08886963 -0.91020064]\n", + " [-0.38791022 0.11981512 -0.91387636]\n", + " [-0.37057932 0.15075247 -0.91648495]\n", + " [-0.29524186 -0.11565402 -0.94839675]\n", + " [-0.29524186 -0.11565402 -0.94839675]\n", + " [-0.36430841 0.16163595 -0.91714405]\n", + " [-0.36430841 0.16163595 -0.91714405]\n", + " [-0.3003626 -0.09896966 -0.94867661]\n", + " [-0.32999831 -0.08087446 -0.94051073]\n", + " [-0.35896551 -0.06267308 -0.93124425]\n", + " [-0.3871015 -0.04446893 -0.92096414]\n", + " [-0.41425069 -0.02636256 -0.90978095]\n", + " [-0.44026216 -0.00845091 -0.8978295 ]\n", + " [-0.28447635 -0.06902086 -0.95619523]\n", + " [-0.31442887 -0.05080328 -0.94792063]\n", + " [-0.34373544 -0.03254098 -0.93850255]\n", + " [-0.37223278 -0.01433847 -0.92802864]\n", + " [-0.39976633 0.00370294 -0.91660961]\n", + " [-0.42618814 0.02148601 -0.90437936]\n", + " [-0.26788557 -0.0383493 -0.96268721]\n", + " [-0.29810076 -0.02004365 -0.95432394]\n", + " [-0.32769468 -0.00175541 -0.94478205]\n", + " [-0.35650283 0.01641032 -0.93415011]\n", + " [-0.38437082 0.03435213 -0.92253943]\n", + " [-0.41115262 0.05197306 -0.91008369]\n", + " [-0.25066872 -0.00713047 -0.96804667]\n", + " [-0.28109114 0.01122781 -0.95961539]\n", + " [-0.31091973 0.02950578 -0.94997807]\n", + " [-0.33998853 0.04759829 -0.93922426]\n", + " [-0.36814261 0.06540447 -0.92746605]\n", + " [-0.39523681 0.08282834 -0.91483733]\n", + " [-0.23291264 0.02445502 -0.97219013]\n", + " [-0.26348524 0.0428297 -0.96371217]\n", + " [-0.29349453 0.06106072 -0.95400867]\n", + " [-0.32277313 0.0790434 -0.94317 ]\n", + " [-0.35116516 0.09667795 -0.93130897]\n", + " [-0.37852549 0.11386984 -0.9185598 ]\n", + " [-0.21471313 0.05622113 -0.97505767]\n", + " [-0.24537739 0.07457571 -0.96655491]\n", + " [-0.27551196 0.09272337 -0.95681531]\n", + " [-0.30494827 0.11056039 -0.94592968]\n", + " [-0.33352942 0.12798846 -0.93401129]\n", + " [-0.36110964 0.14491475 -0.92119463]]\n", + "DEBUG:root:radec2pix: curVec Shape: (96, 3)\n", + "DEBUG:root:mm_to_pix: fitpx: [[0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]]\n", + "DEBUG:root:mm_to_pix: fitpx.shape: (96, 2)\n", + "DEBUG:root:radec2pix: camVec: [[ 0.00114566 0.00115565 0.00116422 0.00117136 0.00117701 0.00118116\n", + " 0.00118376 0.00118481 0.00114566 0.03017404 0.05908469 0.08776498\n", + " 0.11610332 0.14398904 0.17131174 0.19796003 0.00118481 0.03120455\n", + " 0.06110052 0.09075528 0.1200543 0.14888674 0.17714546 0.20472589\n", + " 0.19796003 0.19971011 0.20119978 0.20242973 0.20339908 0.20410611\n", + " 0.20454887 0.20472589 0.00124992 0.00126219 0.00127213 0.00127966\n", + " 0.00128472 0.00128725 0.01380981 0.04932315 0.08454761 0.11927732\n", + " 0.15330846 0.18643745 0.01428113 0.05100494 0.08742589 0.12333185\n", + " 0.15851879 0.19279062 0.19866498 0.20063357 0.20221208 0.20339952\n", + " 0.20419277 0.20458843 0.00124504 0.00124504 0.2046327 0.2046327\n", + " 0.01386393 0.04951642 0.08487904 0.1197456 0.15391263 0.18717755\n", + " 0.01400003 0.0500023 0.08571147 0.12092013 0.15542529 0.1890269\n", + " 0.01411023 0.05039551 0.08638432 0.12186779 0.15664287 0.19051132\n", + " 0.01419378 0.0506935 0.08689379 0.12258434 0.15756175 0.19162897\n", + " 0.0142499 0.05089361 0.08723571 0.12306478 0.15817704 0.19237609\n", + " 0.01427798 0.05099373 0.08740674 0.12330495 0.15848438 0.1927489 ]\n", + " [-0.20812604 -0.1806373 -0.15245726 -0.12369032 -0.09444319 -0.06482624\n", + " -0.03495355 -0.00494229 -0.20812604 -0.20797994 -0.20756351 -0.20687811\n", + " -0.20592557 -0.20470759 -0.20322504 -0.20147731 -0.00494229 -0.00493875\n", + " -0.0049287 -0.00491221 -0.00488939 -0.0048604 -0.00482538 -0.00478446\n", + " -0.20147731 -0.17488831 -0.14761103 -0.11975687 -0.09143612 -0.06275929\n", + " -0.03383788 -0.00478446 -0.19623245 -0.16206424 -0.12696122 -0.09111882\n", + " -0.05474021 -0.01803675 -0.20800294 -0.20764209 -0.20687664 -0.20570979\n", + " -0.20414458 -0.20218204 -0.00504426 -0.00503536 -0.00501654 -0.004988\n", + " -0.00495001 -0.00490286 -0.1899823 -0.15691665 -0.12292805 -0.08821992\n", + " -0.05299579 -0.01746139 -0.2080333 -0.2080333 -0.00488406 -0.00488406\n", + " -0.19620382 -0.19586344 -0.1951417 -0.19404219 -0.19256861 -0.19072284\n", + " -0.16204052 -0.16175873 -0.16116182 -0.16025398 -0.15904007 -0.15752379\n", + " -0.12694255 -0.12672084 -0.12625153 -0.1255387 -0.12458735 -0.12340188\n", + " -0.09110536 -0.09094551 -0.09060732 -0.09009413 -0.08941017 -0.08855947\n", + " -0.05473209 -0.05463571 -0.05443186 -0.05412272 -0.05371108 -0.05319971\n", + " -0.01803407 -0.01800225 -0.01793496 -0.01783294 -0.01769716 -0.01752858]\n", + " [ 0.97810134 0.9835491 0.98830938 0.99232018 0.99552956 0.99789587\n", + " 0.99938824 0.99998708 0.97810134 0.97766757 0.97643555 0.97442227\n", + " 0.97165564 0.96817455 0.96402898 0.95928031 0.99998708 0.99950082\n", + " 0.99811945 0.99586111 0.99275529 0.98884231 0.98417285 0.97880765\n", + " 0.95928031 0.96412134 0.96836441 0.97194676 0.97481703 0.97693499\n", + " 0.97827131 0.97880765 0.98055661 0.9867794 0.99190687 0.99583921\n", + " 0.9984998 0.9998365 0.97803071 0.97696059 0.97470701 0.97131684\n", + " 0.96686168 0.96143824 0.9998853 0.99868571 0.9961584 0.99235295\n", + " 0.98734355 0.98122767 0.96147748 0.96701775 0.97159609 0.97511327\n", + " 0.97749515 0.97869233 0.97812095 0.97812095 0.97882665 0.97882665\n", + " 0.98046512 0.97938023 0.97709532 0.97365734 0.96913788 0.96363342\n", + " 0.98668479 0.98556272 0.98319907 0.97964125 0.97496115 0.96925491\n", + " 0.9918097 0.99065742 0.98822988 0.98457518 0.97976579 0.97389805\n", + " 0.9957401 0.99456477 0.9920886 0.98836032 0.98345316 0.97746384\n", + " 0.99839939 0.99720849 0.9946995 0.99092169 0.98594885 0.97987817\n", + " 0.99973542 0.99853671 0.99601124 0.99220858 0.98720287 0.98109154]]\n", + "DEBUG:root:radec2pix: camVec Shape: (3, 96)\n", + "DEBUG:root:radec2pix: xyfp: [[32.31363499 31.47041645]\n", + " [32.3144687 27.08398795]\n", + " [32.31530242 22.69755946]\n", + " [32.31613613 18.31113097]\n", + " [32.31696984 13.92470248]\n", + " [32.31780355 9.53827398]\n", + " [32.31863726 5.15184549]\n", + " [32.31947097 0.765417 ]\n", + " [32.31363499 31.47041645]\n", + " [27.9272065 31.46958273]\n", + " [23.540778 31.46874902]\n", + " [19.15434951 31.46791531]\n", + " [14.76792102 31.4670816 ]\n", + " [10.38149253 31.46624788]\n", + " [ 5.99506403 31.46541417]\n", + " [ 1.60863554 31.46458045]\n", + " [32.31947097 0.765417 ]\n", + " [27.93304248 0.76458329]\n", + " [23.54661399 0.76374957]\n", + " [19.1601855 0.76291586]\n", + " [14.77375701 0.76208215]\n", + " [10.38732851 0.76124844]\n", + " [ 6.00090002 0.76041472]\n", + " [ 1.61447153 0.75958101]\n", + " [ 1.60863554 31.46458045]\n", + " [ 1.60946926 27.07815197]\n", + " [ 1.61030297 22.69172348]\n", + " [ 1.61113668 18.30529498]\n", + " [ 1.61197039 13.91886648]\n", + " [ 1.6128041 9.53243799]\n", + " [ 1.61363782 5.1460095 ]\n", + " [ 1.61447153 0.75958101]\n", + " [32.29899849 29.55791363]\n", + " [32.30002028 24.18191372]\n", + " [32.30104209 18.80591382]\n", + " [32.30206388 13.42991392]\n", + " [32.30308568 8.05391402]\n", + " [32.30410748 2.67791411]\n", + " [30.40113787 31.45505294]\n", + " [25.02513797 31.45403115]\n", + " [19.64913807 31.45300935]\n", + " [14.27313817 31.45198755]\n", + " [ 8.89713826 31.45096576]\n", + " [ 3.52113836 31.44994396]\n", + " [30.40696816 0.7800535 ]\n", + " [25.03096826 0.7790317 ]\n", + " [19.65496836 0.7780099 ]\n", + " [14.27896845 0.77698811]\n", + " [ 8.90296855 0.77596631]\n", + " [ 3.52696865 0.77494451]\n", + " [ 1.62399904 29.55208334]\n", + " [ 1.62502084 24.17608344]\n", + " [ 1.62604264 18.80008353]\n", + " [ 1.62706443 13.42408364]\n", + " [ 1.62808623 8.04808373]\n", + " [ 1.62910803 2.67208383]\n", + " [32.29863784 31.4554136 ]\n", + " [32.29863784 31.4554136 ]\n", + " [ 1.62946868 0.77458386]\n", + " [ 1.62946868 0.77458386]\n", + " [30.40149852 29.55755297]\n", + " [25.02549862 29.55653118]\n", + " [19.64949872 29.55550938]\n", + " [14.27349882 29.55448759]\n", + " [ 8.89749891 29.55346579]\n", + " [ 3.52149901 29.55244399]\n", + " [30.40252032 24.18155307]\n", + " [25.02652042 24.18053128]\n", + " [19.65052052 24.17950948]\n", + " [14.27452061 24.17848769]\n", + " [ 8.89852071 24.17746589]\n", + " [ 3.52252081 24.17644409]\n", + " [30.40354212 18.80555317]\n", + " [25.02754221 18.80453137]\n", + " [19.65154231 18.80350958]\n", + " [14.27554241 18.80248779]\n", + " [ 8.89954251 18.80146598]\n", + " [ 3.5235426 18.80044419]\n", + " [30.40456392 13.42955327]\n", + " [25.02856401 13.42853147]\n", + " [19.65256411 13.42750967]\n", + " [14.27656421 13.42648788]\n", + " [ 8.9005643 13.42546608]\n", + " [ 3.5245644 13.42444429]\n", + " [30.40558571 8.05355336]\n", + " [25.02958581 8.05253157]\n", + " [19.6535859 8.05150977]\n", + " [14.277586 8.05048797]\n", + " [ 8.9015861 8.04946618]\n", + " [ 3.5255862 8.04844438]\n", + " [30.40660751 2.67755346]\n", + " [25.0306076 2.67653166]\n", + " [19.6546077 2.67550987]\n", + " [14.2786078 2.67448807]\n", + " [ 8.90260789 2.67346627]\n", + " [ 3.52660799 2.67244448]]\n", + "DEBUG:root:radec2pix: ccdpx: [[-4.45000002e+01 -5.00000175e-01]\n", + " [-4.44999997e+01 2.91928572e+02]\n", + " [-4.45000002e+01 5.84357143e+02]\n", + " [-4.45000000e+01 8.76785714e+02]\n", + " [-4.45000001e+01 1.16921429e+03]\n", + " [-4.44999999e+01 1.46164286e+03]\n", + " [-4.45000001e+01 1.75407143e+03]\n", + " [-4.44999997e+01 2.04650000e+03]\n", + " [-4.45000002e+01 -5.00000175e-01]\n", + " [ 2.47928571e+02 -5.00000003e-01]\n", + " [ 5.40357143e+02 -4.99999889e-01]\n", + " [ 8.32785714e+02 -5.00000160e-01]\n", + " [ 1.12521429e+03 -5.00000087e-01]\n", + " [ 1.41764286e+03 -5.00000059e-01]\n", + " [ 1.71007143e+03 -4.99999907e-01]\n", + " [ 2.00250000e+03 -4.99999721e-01]\n", + " [-4.44999997e+01 2.04650000e+03]\n", + " [ 2.47928571e+02 2.04650000e+03]\n", + " [ 5.40357143e+02 2.04650000e+03]\n", + " [ 8.32785714e+02 2.04650000e+03]\n", + " [ 1.12521429e+03 2.04650000e+03]\n", + " [ 1.41764286e+03 2.04650000e+03]\n", + " [ 1.71007143e+03 2.04650000e+03]\n", + " [ 2.00250000e+03 2.04650000e+03]\n", + " [ 2.00250000e+03 -4.99999721e-01]\n", + " [ 2.00250000e+03 2.91928571e+02]\n", + " [ 2.00250000e+03 5.84357143e+02]\n", + " [ 2.00250000e+03 8.76785714e+02]\n", + " [ 2.00250000e+03 1.16921429e+03]\n", + " [ 2.00250000e+03 1.46164286e+03]\n", + " [ 2.00250000e+03 1.75407143e+03]\n", + " [ 2.00250000e+03 2.04650000e+03]\n", + " [-4.35000001e+01 1.27000000e+02]\n", + " [-4.34999997e+01 4.85400000e+02]\n", + " [-4.35000003e+01 8.43800000e+02]\n", + " [-4.35000003e+01 1.20220000e+03]\n", + " [-4.35000002e+01 1.56060000e+03]\n", + " [-4.35000003e+01 1.91900000e+03]\n", + " [ 8.30000000e+01 4.99999980e-01]\n", + " [ 4.41400000e+02 4.99999948e-01]\n", + " [ 7.99800000e+02 4.99999731e-01]\n", + " [ 1.15820000e+03 4.99999908e-01]\n", + " [ 1.51660000e+03 4.99999771e-01]\n", + " [ 1.87500000e+03 5.00000017e-01]\n", + " [ 8.29999998e+01 2.04550000e+03]\n", + " [ 4.41400000e+02 2.04550000e+03]\n", + " [ 7.99800000e+02 2.04550000e+03]\n", + " [ 1.15820000e+03 2.04550000e+03]\n", + " [ 1.51660000e+03 2.04550000e+03]\n", + " [ 1.87500000e+03 2.04550000e+03]\n", + " [ 2.00150000e+03 1.27000000e+02]\n", + " [ 2.00150000e+03 4.85400000e+02]\n", + " [ 2.00150000e+03 8.43800000e+02]\n", + " [ 2.00150000e+03 1.20220000e+03]\n", + " [ 2.00150000e+03 1.56060000e+03]\n", + " [ 2.00150000e+03 1.91900000e+03]\n", + " [-4.35000001e+01 4.99999868e-01]\n", + " [-4.35000001e+01 4.99999868e-01]\n", + " [ 2.00150000e+03 2.04550000e+03]\n", + " [ 2.00150000e+03 2.04550000e+03]\n", + " [ 8.30000002e+01 1.27000000e+02]\n", + " [ 4.41400000e+02 1.27000000e+02]\n", + " [ 7.99800000e+02 1.27000000e+02]\n", + " [ 1.15820000e+03 1.27000000e+02]\n", + " [ 1.51660000e+03 1.27000000e+02]\n", + " [ 1.87500000e+03 1.27000000e+02]\n", + " [ 8.30000001e+01 4.85400000e+02]\n", + " [ 4.41400000e+02 4.85400000e+02]\n", + " [ 7.99800000e+02 4.85400000e+02]\n", + " [ 1.15820000e+03 4.85400000e+02]\n", + " [ 1.51660000e+03 4.85400000e+02]\n", + " [ 1.87500000e+03 4.85400000e+02]\n", + " [ 8.29999997e+01 8.43800000e+02]\n", + " [ 4.41400000e+02 8.43800000e+02]\n", + " [ 7.99800000e+02 8.43800000e+02]\n", + " [ 1.15820000e+03 8.43800000e+02]\n", + " [ 1.51660000e+03 8.43800000e+02]\n", + " [ 1.87500000e+03 8.43800000e+02]\n", + " [ 8.29999998e+01 1.20220000e+03]\n", + " [ 4.41400000e+02 1.20220000e+03]\n", + " [ 7.99800000e+02 1.20220000e+03]\n", + " [ 1.15820000e+03 1.20220000e+03]\n", + " [ 1.51660000e+03 1.20220000e+03]\n", + " [ 1.87500000e+03 1.20220000e+03]\n", + " [ 8.30000003e+01 1.56060000e+03]\n", + " [ 4.41400000e+02 1.56060000e+03]\n", + " [ 7.99800000e+02 1.56060000e+03]\n", + " [ 1.15820000e+03 1.56060000e+03]\n", + " [ 1.51660000e+03 1.56060000e+03]\n", + " [ 1.87500000e+03 1.56060000e+03]\n", + " [ 8.29999998e+01 1.91900000e+03]\n", + " [ 4.41400000e+02 1.91900000e+03]\n", + " [ 7.99800000e+02 1.91900000e+03]\n", + " [ 1.15820000e+03 1.91900000e+03]\n", + " [ 1.51660000e+03 1.91900000e+03]\n", + " [ 1.87500000e+03 1.91900000e+03]]\n", + "DEBUG:root:cartToSphere: vec: [[ 0.00114566 -0.20812604 0.97810134]\n", + " [ 0.00115565 -0.1806373 0.9835491 ]\n", + " [ 0.00116422 -0.15245726 0.98830938]\n", + " [ 0.00117136 -0.12369032 0.99232018]\n", + " [ 0.00117701 -0.09444319 0.99552956]\n", + " [ 0.00118116 -0.06482624 0.99789587]\n", + " [ 0.00118376 -0.03495355 0.99938824]\n", + " [ 0.00118481 -0.00494229 0.99998708]\n", + " [ 0.00114566 -0.20812604 0.97810134]\n", + " [ 0.03017404 -0.20797994 0.97766757]\n", + " [ 0.05908469 -0.20756351 0.97643555]\n", + " [ 0.08776498 -0.20687811 0.97442227]\n", + " [ 0.11610332 -0.20592557 0.97165564]\n", + " [ 0.14398904 -0.20470759 0.96817455]\n", + " [ 0.17131174 -0.20322504 0.96402898]\n", + " [ 0.19796003 -0.20147731 0.95928031]\n", + " [ 0.00118481 -0.00494229 0.99998708]\n", + " [ 0.03120455 -0.00493875 0.99950082]\n", + " [ 0.06110052 -0.0049287 0.99811945]\n", + " [ 0.09075528 -0.00491221 0.99586111]\n", + " [ 0.1200543 -0.00488939 0.99275529]\n", + " [ 0.14888674 -0.0048604 0.98884231]\n", + " [ 0.17714546 -0.00482538 0.98417285]\n", + " [ 0.20472589 -0.00478446 0.97880765]\n", + " [ 0.19796003 -0.20147731 0.95928031]\n", + " [ 0.19971011 -0.17488831 0.96412134]\n", + " [ 0.20119978 -0.14761103 0.96836441]\n", + " [ 0.20242973 -0.11975687 0.97194676]\n", + " [ 0.20339908 -0.09143612 0.97481703]\n", + " [ 0.20410611 -0.06275929 0.97693499]\n", + " [ 0.20454887 -0.03383788 0.97827131]\n", + " [ 0.20472589 -0.00478446 0.97880765]\n", + " [ 0.00124992 -0.19623245 0.98055661]\n", + " [ 0.00126219 -0.16206424 0.9867794 ]\n", + " [ 0.00127213 -0.12696122 0.99190687]\n", + " [ 0.00127966 -0.09111882 0.99583921]\n", + " [ 0.00128472 -0.05474021 0.9984998 ]\n", + " [ 0.00128725 -0.01803675 0.9998365 ]\n", + " [ 0.01380981 -0.20800294 0.97803071]\n", + " [ 0.04932315 -0.20764209 0.97696059]\n", + " [ 0.08454761 -0.20687664 0.97470701]\n", + " [ 0.11927732 -0.20570979 0.97131684]\n", + " [ 0.15330846 -0.20414458 0.96686168]\n", + " [ 0.18643745 -0.20218204 0.96143824]\n", + " [ 0.01428113 -0.00504426 0.9998853 ]\n", + " [ 0.05100494 -0.00503536 0.99868571]\n", + " [ 0.08742589 -0.00501654 0.9961584 ]\n", + " [ 0.12333185 -0.004988 0.99235295]\n", + " [ 0.15851879 -0.00495001 0.98734355]\n", + " [ 0.19279062 -0.00490286 0.98122767]\n", + " [ 0.19866498 -0.1899823 0.96147748]\n", + " [ 0.20063357 -0.15691665 0.96701775]\n", + " [ 0.20221208 -0.12292805 0.97159609]\n", + " [ 0.20339952 -0.08821992 0.97511327]\n", + " [ 0.20419277 -0.05299579 0.97749515]\n", + " [ 0.20458843 -0.01746139 0.97869233]\n", + " [ 0.00124504 -0.2080333 0.97812095]\n", + " [ 0.00124504 -0.2080333 0.97812095]\n", + " [ 0.2046327 -0.00488406 0.97882665]\n", + " [ 0.2046327 -0.00488406 0.97882665]\n", + " [ 0.01386393 -0.19620382 0.98046512]\n", + " [ 0.04951642 -0.19586344 0.97938023]\n", + " [ 0.08487904 -0.1951417 0.97709532]\n", + " [ 0.1197456 -0.19404219 0.97365734]\n", + " [ 0.15391263 -0.19256861 0.96913788]\n", + " [ 0.18717755 -0.19072284 0.96363342]\n", + " [ 0.01400003 -0.16204052 0.98668479]\n", + " [ 0.0500023 -0.16175873 0.98556272]\n", + " [ 0.08571147 -0.16116182 0.98319907]\n", + " [ 0.12092013 -0.16025398 0.97964125]\n", + " [ 0.15542529 -0.15904007 0.97496115]\n", + " [ 0.1890269 -0.15752379 0.96925491]\n", + " [ 0.01411023 -0.12694255 0.9918097 ]\n", + " [ 0.05039551 -0.12672084 0.99065742]\n", + " [ 0.08638432 -0.12625153 0.98822988]\n", + " [ 0.12186779 -0.1255387 0.98457518]\n", + " [ 0.15664287 -0.12458735 0.97976579]\n", + " [ 0.19051132 -0.12340188 0.97389805]\n", + " [ 0.01419378 -0.09110536 0.9957401 ]\n", + " [ 0.0506935 -0.09094551 0.99456477]\n", + " [ 0.08689379 -0.09060732 0.9920886 ]\n", + " [ 0.12258434 -0.09009413 0.98836032]\n", + " [ 0.15756175 -0.08941017 0.98345316]\n", + " [ 0.19162897 -0.08855947 0.97746384]\n", + " [ 0.0142499 -0.05473209 0.99839939]\n", + " [ 0.05089361 -0.05463571 0.99720849]\n", + " [ 0.08723571 -0.05443186 0.9946995 ]\n", + " [ 0.12306478 -0.05412272 0.99092169]\n", + " [ 0.15817704 -0.05371108 0.98594885]\n", + " [ 0.19237609 -0.05319971 0.97987817]\n", + " [ 0.01427798 -0.01803407 0.99973542]\n", + " [ 0.05099373 -0.01800225 0.99853671]\n", + " [ 0.08740674 -0.01793496 0.99601124]\n", + " [ 0.12330495 -0.01783294 0.99220858]\n", + " [ 0.15848438 -0.01769716 0.98720287]\n", + " [ 0.1927489 -0.01752858 0.98109154]]\n", + "DEBUG:root:radec2pix: lng: [270.31539085 270.36655189 270.43752447 270.542579 270.71402077\n", + " 271.04383538 271.93968007 283.48101478 270.31539085 278.25496108\n", + " 285.88944585 292.98836581 299.41482725 305.12212741 310.12974078\n", + " 314.49549071 283.48101478 351.00638008 355.38819591 356.90183998\n", + " 357.66783206 358.13024629 358.43966874 358.66123705 314.49549071\n", + " 318.7910165 323.73421549 329.3915583 335.79415496 342.90819266\n", + " 350.6068072 358.66123705 270.36494598 270.44622312 270.57407396\n", + " 270.80460183 271.34445266 274.08218667 273.79842993 283.36234739\n", + " 292.22915231 300.10657084 306.9058095 312.67997848 340.54617186\n", + " 354.36185807 356.71594406 357.68400903 358.21142556 358.54322592\n", + " 316.27981968 321.97083668 328.70389405 336.55230838 345.45057848\n", + " 355.12169333 270.34290102 270.34290102 358.63275532 358.63275532\n", + " 274.04185073 284.1877247 293.50716352 301.67919787 308.63398936\n", + " 314.46249394 274.93799638 287.17724528 298.00560006 307.03649051\n", + " 314.34141513 320.19418356 276.34264386 291.68718176 304.38086955\n", + " 314.14993264 321.50269119 327.06723776 278.85521862 299.13552131\n", + " 313.8014816 323.6857401 330.42677291 335.19643967 284.59338686\n", + " 312.96912569 328.03736148 336.26056332 341.24440919 344.5417427\n", + " 308.36945368 340.55550723 348.40444495 351.77067409 353.62846105\n", + " 354.80381648]\n", + "DEBUG:root:radec2pix: fitpx: [[4271.50000018 4155.50000017]\n", + " [4271.49999973 3863.07142834]\n", + " [4271.50000015 3570.64285725]\n", + " [4271.50000001 3278.21428572]\n", + " [4271.5000001 2985.78571433]\n", + " [4271.49999989 2693.35714282]\n", + " [4271.50000013 2400.92857145]\n", + " [4271.49999973 2108.49999999]\n", + " [4271.50000018 4155.50000017]\n", + " [3979.07142857 4155.5 ]\n", + " [3686.64285706 4155.49999989]\n", + " [3394.21428581 4155.50000016]\n", + " [3101.78571433 4155.50000009]\n", + " [2809.35714288 4155.50000006]\n", + " [2516.92857141 4155.49999991]\n", + " [2224.49999999 4155.49999972]\n", + " [4271.49999973 2108.49999999]\n", + " [3979.07142852 2108.5 ]\n", + " [3686.6428568 2108.49999999]\n", + " [3394.2142859 2108.50000001]\n", + " [3101.78571455 2108.50000001]\n", + " [2809.35714254 2108.49999998]\n", + " [2516.92857145 2108.5 ]\n", + " [2224.49999991 2108.49999996]\n", + " [2224.49999999 4155.49999972]\n", + " [2224.50000001 3863.07142866]\n", + " [2224.50000002 3570.64285748]\n", + " [2224.49999999 3278.21428555]\n", + " [2224.49999997 2985.78571404]\n", + " [2224.49999997 2693.35714267]\n", + " [2224.49999997 2400.92857132]\n", + " [2224.49999991 2108.49999996]\n", + " [4270.50000007 4028.00000007]\n", + " [4270.49999974 3669.5999998 ]\n", + " [4270.50000026 3311.20000015]\n", + " [4270.50000028 2952.80000012]\n", + " [4270.50000021 2594.40000005]\n", + " [4270.50000028 2236.00000002]\n", + " [4144.00000002 4154.50000002]\n", + " [3785.60000004 4154.50000005]\n", + " [3427.20000017 4154.50000027]\n", + " [3068.80000004 4154.50000009]\n", + " [2710.40000006 4154.50000023]\n", + " [2352. 4154.49999998]\n", + " [4144.00000024 2109.50000001]\n", + " [3785.60000024 2109.50000001]\n", + " [3427.20000038 2109.50000002]\n", + " [3068.80000022 2109.50000001]\n", + " [2710.3999999 2109.49999999]\n", + " [2352.00000033 2109.50000007]\n", + " [2225.50000001 4028.00000014]\n", + " [2225.5 3669.59999993]\n", + " [2225.49999997 3311.19999965]\n", + " [2225.50000003 2952.80000023]\n", + " [2225.50000001 2594.40000005]\n", + " [2225.50000007 2236.00000012]\n", + " [4270.50000014 4154.50000013]\n", + " [4270.50000014 4154.50000013]\n", + " [2225.5 2109.5 ]\n", + " [2225.5 2109.5 ]\n", + " [4143.99999977 4027.99999977]\n", + " [3785.60000006 4028.00000007]\n", + " [3427.19999985 4027.99999978]\n", + " [3068.80000002 4028.00000004]\n", + " [2710.40000003 4028.0000001 ]\n", + " [2351.99999998 4027.99999983]\n", + " [4143.99999989 3669.59999991]\n", + " [3785.59999992 3669.59999992]\n", + " [3427.20000008 3669.60000009]\n", + " [3068.80000009 3669.60000016]\n", + " [2710.40000007 3669.6000002 ]\n", + " [2352. 3669.60000003]\n", + " [4144.00000025 3311.20000016]\n", + " [3785.59999995 3311.19999996]\n", + " [3427.19999995 3311.19999995]\n", + " [3068.80000029 3311.20000039]\n", + " [2710.39999993 3311.19999986]\n", + " [2352.00000003 3311.20000016]\n", + " [4144.0000002 2952.80000009]\n", + " [3785.6000002 2952.80000011]\n", + " [3427.19999983 2952.79999988]\n", + " [3068.80000029 2952.80000027]\n", + " [2710.40000007 2952.8000001 ]\n", + " [2352.00000006 2952.80000022]\n", + " [4143.99999974 2594.39999993]\n", + " [3785.60000003 2594.40000001]\n", + " [3427.19999994 2594.39999997]\n", + " [3068.7999999 2594.39999994]\n", + " [2710.40000001 2594.40000001]\n", + " [2351.9999999 2594.39999976]\n", + " [4144.00000015 2236.00000001]\n", + " [3785.59999982 2235.99999998]\n", + " [3427.19999971 2235.99999996]\n", + " [3068.80000012 2236.00000002]\n", + " [2710.39999989 2235.99999997]\n", + " [2351.99999988 2235.99999991]]\n", + "DEBUG:root:fitpix2pix: ccdpx: shape: (96, 2)\n", + "DEBUG:root:fitpix2pix: visCut: True\n", + "DEBUG:root:radec2pix: lat: [77.98725933 79.59290201 81.23038669 82.89455027 84.58030503 86.2825061\n", + " 87.99575217 89.70880341 77.98725933 77.86842442 77.53699463 77.01330297\n", + " 76.32579246 75.50615888 74.58567435 73.59317035 89.70880341 88.18955545\n", + " 86.48562338 84.78529769 83.09901991 81.43298752 79.79264001 78.18327445\n", + " 73.59317035 74.60559591 75.5496878 76.3965297 77.11433871 77.67029216\n", + " 78.03413945 78.18327445 78.68303826 80.67298244 82.70560399 84.77150761\n", + " 86.86118368 88.96388538 77.96782959 77.67716345 77.0861016 76.24391961\n", + " 75.20859077 74.03673952 89.13217661 87.06213831 84.97619114 82.90974635\n", + " 80.87458441 78.88067366 74.04491662 75.24365824 76.31136856 77.19067025\n", + " 77.8215059 78.15105181 77.99265855 77.99265855 78.18859038 78.18859038\n", + " 78.65635764 78.34456159 77.7133866 76.81969543 75.7283623 74.50063549\n", + " 80.63959245 80.25225497 79.48245907 78.41882236 77.15141692 75.75558792\n", + " 82.66188886 82.16191851 81.200562 79.92354945 78.45441908 76.88031771\n", + " 84.70956295 84.0235478 82.78807615 81.24955295 79.56251519 77.81300601\n", + " 86.75780924 85.71788826 84.09815339 82.27374035 80.38380312 78.4866344\n", + " 88.68197076 86.90004071 84.8808155 82.84304634 80.82390053 78.84030268]\n", + "DEBUG:root:optics_fp: rtanth: [31.42709713 27.04074579 22.65442436 18.26815439 13.88198464 9.49605401\n", + " 5.11097808 0.742067 31.42709713 31.75564253 32.6750783 34.13769417\n", + " 36.07748738 38.42225317 41.10274314 44.05772304 0.742067 4.61617395\n", + " 8.97490789 13.35179361 17.73339574 22.11691136 26.50139096 30.88642402\n", + " 44.05772304 41.04415255 38.29678143 35.87681689 33.85454213 32.30472979\n", + " 31.29764563 30.88642402 29.51471971 24.13885305 18.76306281 13.38744101\n", + " 8.01232674 2.64082086 31.48077532 32.28565953 33.93362876 36.31007107\n", + " 39.28300031 42.72809051 2.2117621 7.49776555 12.85860945 18.22838275\n", + " 23.6009913 28.97485798 42.70371969 39.18128664 36.11843741 33.64093596\n", + " 31.88551984 30.97519863 31.41218354 31.41218354 30.87178238 30.87178238\n", + " 29.58771061 30.4426874 32.18516063 34.68161856 37.78289981 41.35315131\n", + " 24.22804504 25.26505023 27.33953387 30.23872042 33.75074911 37.7047566\n", + " 18.87767108 20.19136108 22.73364051 26.14858527 30.14102461 34.5111137\n", + " 13.54760187 15.32521169 18.5469529 22.60352987 27.12291311 31.90905859\n", + " 8.27715649 10.94695923 15.13153214 19.89706928 24.91237079 30.05265085\n", + " 3.35974322 7.91280426 13.10495402 18.40298673 23.73610696 29.08501983]\n", + "DEBUG:root:optics_fp: cphi: [0.00550458 0.00639749 0.00763617 0.00946965 0.01246169 0.01821736\n", + " 0.03384734 0.23312315 0.00550458 0.14357831 0.27378206 0.39054421\n", + " 0.49112919 0.57532118 0.64452059 0.70085313 0.23312315 0.98770575\n", + " 0.99676233 0.99853841 0.99917171 0.99946758 0.99962921 0.99972703\n", + " 0.70085313 0.75231162 0.80628167 0.86066702 0.91207829 0.95583505\n", + " 0.98659156 0.99972703 0.00636947 0.00778798 0.01001931 0.01404249\n", + " 0.02346297 0.07118734 0.06624656 0.23110858 0.37831182 0.50160995\n", + " 0.60050131 0.67790282 0.94291018 0.99516222 0.9983578 0.99918316\n", + " 0.9995128 0.99967679 0.72272376 0.78769728 0.85449414 0.91742373\n", + " 0.96793131 0.99637757 0.00598472 0.00598472 0.99971529 0.99971529\n", + " 0.07048511 0.24509968 0.39886372 0.52516272 0.62434311 0.70044222\n", + " 0.08607764 0.29532864 0.46955786 0.60232354 0.69893243 0.76821854\n", + " 0.11047406 0.36953888 0.56469148 0.69653837 0.7826374 0.83930914\n", + " 0.15393817 0.48687699 0.69216184 0.80578092 0.86972564 0.90775141\n", + " 0.25195766 0.68160416 0.84839347 0.91538572 0.94689876 0.96382489\n", + " 0.62072988 0.94296444 0.97959085 0.9897031 0.99382317 0.99589043]\n", + "DEBUG:root:optics_fp: sphi: [-0.99998485 -0.99997954 -0.99997084 -0.99995516 -0.99992235 -0.99983405\n", + " -0.99942701 -0.97244722 -0.99998485 -0.98963896 -0.96179176 -0.92058417\n", + " -0.87108674 -0.81792759 -0.76458695 -0.71330561 -0.97244722 -0.15632448\n", + " -0.08040428 -0.05404675 -0.04069277 -0.03262757 -0.02722955 -0.0233637\n", + " -0.71330561 -0.65880742 -0.59153179 -0.50916823 -0.41001608 -0.29390365\n", + " -0.16320875 -0.0233637 -0.99997971 -0.99996967 -0.99994981 -0.9999014\n", + " -0.99972471 -0.99746296 -0.99780328 -0.97292796 -0.92567822 -0.8650939\n", + " -0.79962377 -0.73515153 -0.33304712 -0.0982454 -0.05728621 -0.04041066\n", + " -0.03121144 -0.02542276 -0.69113701 -0.61606249 -0.51946104 -0.39791167\n", + " -0.251215 -0.08503968 -0.99998209 -0.99998209 -0.02386066 -0.02386066\n", + " -0.99751283 -0.96949788 -0.91701021 -0.85100183 -0.78115023 -0.71370911\n", + " -0.99628843 -0.95539573 -0.8829017 -0.79825206 -0.71518771 -0.64018769\n", + " -0.99387901 -0.92921527 -0.82530209 -0.71751954 -0.62247788 -0.54365446\n", + " -0.98808048 -0.87347054 -0.72174233 -0.59221374 -0.49353552 -0.41950849\n", + " -0.96773826 -0.7317211 -0.52936616 -0.40257793 -0.32153186 -0.26653625\n", + " -0.7840245 -0.33289349 -0.20100193 -0.14313552 -0.11097528 -0.09056624]\n", + "DEBUG:root:optics_fp: xyfp: [[ -0.172993 31.426621 ]\n", + " [ -0.172993 27.04019243]\n", + " [ -0.172993 22.65376385]\n", + " [ -0.172993 18.26733528]\n", + " [ -0.172993 13.88090671]\n", + " [ -0.172993 9.49447814]\n", + " [ -0.172993 5.10804957]\n", + " [ -0.172993 0.721621 ]\n", + " [ -0.172993 31.426621 ]\n", + " [ -4.55942157 31.426621 ]\n", + " [ -8.94585014 31.426621 ]\n", + " [-13.33227871 31.426621 ]\n", + " [-17.71870729 31.426621 ]\n", + " [-22.10513586 31.426621 ]\n", + " [-26.49156443 31.426621 ]\n", + " [-30.877993 31.426621 ]\n", + " [ -0.172993 0.721621 ]\n", + " [ -4.55942157 0.721621 ]\n", + " [ -8.94585014 0.721621 ]\n", + " [-13.33227872 0.721621 ]\n", + " [-17.71870728 0.721621 ]\n", + " [-22.10513586 0.721621 ]\n", + " [-26.49156443 0.721621 ]\n", + " [-30.877993 0.721621 ]\n", + " [-30.877993 31.426621 ]\n", + " [-30.877993 27.04019243]\n", + " [-30.877993 22.65376385]\n", + " [-30.877993 18.26733529]\n", + " [-30.877993 13.88090671]\n", + " [-30.877993 9.49447814]\n", + " [-30.877993 5.10804957]\n", + " [-30.877993 0.721621 ]\n", + " [ -0.187993 29.514121 ]\n", + " [ -0.187993 24.138121 ]\n", + " [ -0.187993 18.76212101]\n", + " [ -0.187993 13.386121 ]\n", + " [ -0.187993 8.010121 ]\n", + " [ -0.187993 2.634121 ]\n", + " [ -2.085493 31.411621 ]\n", + " [ -7.461493 31.411621 ]\n", + " [-12.837493 31.411621 ]\n", + " [-18.213493 31.411621 ]\n", + " [-23.589493 31.411621 ]\n", + " [-28.965493 31.411621 ]\n", + " [ -2.085493 0.736621 ]\n", + " [ -7.461493 0.736621 ]\n", + " [-12.837493 0.736621 ]\n", + " [-18.213493 0.736621 ]\n", + " [-23.58949299 0.736621 ]\n", + " [-28.965493 0.736621 ]\n", + " [-30.862993 29.514121 ]\n", + " [-30.862993 24.138121 ]\n", + " [-30.862993 18.762121 ]\n", + " [-30.862993 13.386121 ]\n", + " [-30.862993 8.010121 ]\n", + " [-30.862993 2.634121 ]\n", + " [ -0.187993 31.411621 ]\n", + " [ -0.187993 31.411621 ]\n", + " [-30.862993 0.736621 ]\n", + " [-30.862993 0.736621 ]\n", + " [ -2.085493 29.514121 ]\n", + " [ -7.461493 29.514121 ]\n", + " [-12.837493 29.514121 ]\n", + " [-18.213493 29.514121 ]\n", + " [-23.589493 29.514121 ]\n", + " [-28.965493 29.514121 ]\n", + " [ -2.085493 24.138121 ]\n", + " [ -7.461493 24.138121 ]\n", + " [-12.837493 24.138121 ]\n", + " [-18.213493 24.138121 ]\n", + " [-23.589493 24.138121 ]\n", + " [-28.965493 24.138121 ]\n", + " [ -2.085493 18.762121 ]\n", + " [ -7.461493 18.762121 ]\n", + " [-12.837493 18.762121 ]\n", + " [-18.213493 18.762121 ]\n", + " [-23.589493 18.762121 ]\n", + " [-28.965493 18.762121 ]\n", + " [ -2.085493 13.386121 ]\n", + " [ -7.461493 13.386121 ]\n", + " [-12.837493 13.386121 ]\n", + " [-18.213493 13.386121 ]\n", + " [-23.589493 13.386121 ]\n", + " [-28.965493 13.386121 ]\n", + " [ -2.085493 8.010121 ]\n", + " [ -7.461493 8.010121 ]\n", + " [-12.837493 8.010121 ]\n", + " [-18.213493 8.010121 ]\n", + " [-23.589493 8.010121 ]\n", + " [-28.965493 8.010121 ]\n", + " [ -2.085493 2.634121 ]\n", + " [ -7.461493 2.634121 ]\n", + " [-12.837493 2.634121 ]\n", + " [-18.213493 2.634121 ]\n", + " [-23.589493 2.634121 ]\n", + " [-28.965493 2.634121 ]]\n", + "DEBUG:root:optics_fp: xyfp shape: (96, 2)\n", + "DEBUG:root:make_az_asym: xyp: [[ -0.172993 31.426621 ]\n", + " [ -0.172993 27.04019243]\n", + " [ -0.172993 22.65376385]\n", + " [ -0.172993 18.26733528]\n", + " [ -0.172993 13.88090671]\n", + " [ -0.172993 9.49447814]\n", + " [ -0.172993 5.10804957]\n", + " [ -0.172993 0.721621 ]\n", + " [ -0.172993 31.426621 ]\n", + " [ -4.55942157 31.426621 ]\n", + " [ -8.94585014 31.426621 ]\n", + " [-13.33227871 31.426621 ]\n", + " [-17.71870729 31.426621 ]\n", + " [-22.10513586 31.426621 ]\n", + " [-26.49156443 31.426621 ]\n", + " [-30.877993 31.426621 ]\n", + " [ -0.172993 0.721621 ]\n", + " [ -4.55942157 0.721621 ]\n", + " [ -8.94585014 0.721621 ]\n", + " [-13.33227872 0.721621 ]\n", + " [-17.71870728 0.721621 ]\n", + " [-22.10513586 0.721621 ]\n", + " [-26.49156443 0.721621 ]\n", + " [-30.877993 0.721621 ]\n", + " [-30.877993 31.426621 ]\n", + " [-30.877993 27.04019243]\n", + " [-30.877993 22.65376385]\n", + " [-30.877993 18.26733529]\n", + " [-30.877993 13.88090671]\n", + " [-30.877993 9.49447814]\n", + " [-30.877993 5.10804957]\n", + " [-30.877993 0.721621 ]\n", + " [ -0.187993 29.514121 ]\n", + " [ -0.187993 24.138121 ]\n", + " [ -0.187993 18.76212101]\n", + " [ -0.187993 13.386121 ]\n", + " [ -0.187993 8.010121 ]\n", + " [ -0.187993 2.634121 ]\n", + " [ -2.085493 31.411621 ]\n", + " [ -7.461493 31.411621 ]\n", + " [-12.837493 31.411621 ]\n", + " [-18.213493 31.411621 ]\n", + " [-23.589493 31.411621 ]\n", + " [-28.965493 31.411621 ]\n", + " [ -2.085493 0.736621 ]\n", + " [ -7.461493 0.736621 ]\n", + " [-12.837493 0.736621 ]\n", + " [-18.213493 0.736621 ]\n", + " [-23.58949299 0.736621 ]\n", + " [-28.965493 0.736621 ]\n", + " [-30.862993 29.514121 ]\n", + " [-30.862993 24.138121 ]\n", + " [-30.862993 18.762121 ]\n", + " [-30.862993 13.386121 ]\n", + " [-30.862993 8.010121 ]\n", + " [-30.862993 2.634121 ]\n", + " [ -0.187993 31.411621 ]\n", + " [ -0.187993 31.411621 ]\n", + " [-30.862993 0.736621 ]\n", + " [-30.862993 0.736621 ]\n", + " [ -2.085493 29.514121 ]\n", + " [ -7.461493 29.514121 ]\n", + " [-12.837493 29.514121 ]\n", + " [-18.213493 29.514121 ]\n", + " [-23.589493 29.514121 ]\n", + " [-28.965493 29.514121 ]\n", + " [ -2.085493 24.138121 ]\n", + " [ -7.461493 24.138121 ]\n", + " [-12.837493 24.138121 ]\n", + " [-18.213493 24.138121 ]\n", + " [-23.589493 24.138121 ]\n", + " [-28.965493 24.138121 ]\n", + " [ -2.085493 18.762121 ]\n", + " [ -7.461493 18.762121 ]\n", + " [-12.837493 18.762121 ]\n", + " [-18.213493 18.762121 ]\n", + " [-23.589493 18.762121 ]\n", + " [-28.965493 18.762121 ]\n", + " [ -2.085493 13.386121 ]\n", + " [ -7.461493 13.386121 ]\n", + " [-12.837493 13.386121 ]\n", + " [-18.213493 13.386121 ]\n", + " [-23.589493 13.386121 ]\n", + " [-28.965493 13.386121 ]\n", + " [ -2.085493 8.010121 ]\n", + " [ -7.461493 8.010121 ]\n", + " [-12.837493 8.010121 ]\n", + " [-18.213493 8.010121 ]\n", + " [-23.589493 8.010121 ]\n", + " [-28.965493 8.010121 ]\n", + " [ -2.085493 2.634121 ]\n", + " [ -7.461493 2.634121 ]\n", + " [-12.837493 2.634121 ]\n", + " [-18.213493 2.634121 ]\n", + " [-23.589493 2.634121 ]\n", + " [-28.965493 2.634121 ]]\n", + "DEBUG:root:make_az_asym: xyp: shape: (96, 2)\n", + "DEBUG:root:radec2pix: curVec: [[ 0.22771216 -0.14772757 -0.96245714]\n", + " [ 0.23625868 -0.17362835 -0.95605179]\n", + " [ 0.24478321 -0.19990303 -0.94874652]\n", + " [ 0.25324156 -0.22643944 -0.94052852]\n", + " [ 0.26159196 -0.25312739 -0.93139475]\n", + " [ 0.26979468 -0.27985699 -0.92135275]\n", + " [ 0.27781195 -0.30651829 -0.91042136]\n", + " [ 0.28560825 -0.33300178 -0.89863104]\n", + " [ 0.22771216 -0.14772757 -0.96245714]\n", + " [ 0.25444549 -0.13768947 -0.95723514]\n", + " [ 0.2809108 -0.12765914 -0.95120569]\n", + " [ 0.30700861 -0.11768001 -0.94440306]\n", + " [ 0.33264334 -0.10779849 -0.93687133]\n", + " [ 0.3577234 -0.09806457 -0.92866426]\n", + " [ 0.38216082 -0.08853249 -0.91984515]\n", + " [ 0.40587059 -0.07926143 -0.91048706]\n", + " [ 0.28560825 -0.33300178 -0.89863104]\n", + " [ 0.31321187 -0.32247726 -0.89325626]\n", + " [ 0.34044625 -0.3116993 -0.88709633]\n", + " [ 0.3672077 -0.30071464 -0.88018703]\n", + " [ 0.39339911 -0.28957256 -0.87257371]\n", + " [ 0.41893034 -0.27832446 -0.86431063]\n", + " [ 0.44371761 -0.26702396 -0.85546063]\n", + " [ 0.46768188 -0.25572741 -0.84609524]\n", + " [ 0.40587059 -0.07926143 -0.91048706]\n", + " [ 0.41562587 -0.10356783 -0.90361986]\n", + " [ 0.4251452 -0.12836565 -0.89597646]\n", + " [ 0.43438272 -0.15353641 -0.88754618]\n", + " [ 0.44329488 -0.1789664 -0.87832834]\n", + " [ 0.45184056 -0.20454573 -0.8683324 ]\n", + " [ 0.4599813 -0.23016749 -0.85757806]\n", + " [ 0.46768188 -0.25572741 -0.84609524]\n", + " [ 0.23153034 -0.15893267 -0.95975732]\n", + " [ 0.24199681 -0.19094212 -0.95130366]\n", + " [ 0.25238586 -0.22340148 -0.94148455]\n", + " [ 0.26261965 -0.25610715 -0.9302903 ]\n", + " [ 0.27262498 -0.28885683 -0.9177349 ]\n", + " [ 0.28233325 -0.3214482 -0.90385784]\n", + " [ 0.239424 -0.14344028 -0.96026092]\n", + " [ 0.2720218 -0.13113695 -0.95331382]\n", + " [ 0.30411766 -0.11888795 -0.94518681]\n", + " [ 0.33553399 -0.10677747 -0.93595701]\n", + " [ 0.36610212 -0.09489761 -0.92572333]\n", + " [ 0.39566136 -0.08335025 -0.91460637]\n", + " [ 0.2976558 -0.32835696 -0.89642776]\n", + " [ 0.33125186 -0.31528212 -0.88930838]\n", + " [ 0.36418965 -0.30187291 -0.88104406]\n", + " [ 0.39628762 -0.28821903 -0.87171435]\n", + " [ 0.42737974 -0.27441513 -0.86141912]\n", + " [ 0.45731385 -0.26056098 -0.85027761]\n", + " [ 0.41006997 -0.08982263 -0.90762025]\n", + " [ 0.42187286 -0.11995982 -0.898684 ]\n", + " [ 0.43327563 -0.15071677 -0.88857002]\n", + " [ 0.44419719 -0.1818822 -0.87727289]\n", + " [ 0.45456183 -0.2132537 -0.86481004]\n", + " [ 0.46430008 -0.24463556 -0.85122199]\n", + " [ 0.22783313 -0.14778108 -0.96242029]\n", + " [ 0.22783313 -0.14778108 -0.96242029]\n", + " [ 0.46757587 -0.25567878 -0.84616852]\n", + " [ 0.46757587 -0.25567878 -0.84616852]\n", + " [ 0.24316598 -0.15457294 -0.95758943]\n", + " [ 0.27588316 -0.14219863 -0.95061456]\n", + " [ 0.30808682 -0.12985302 -0.94245462]\n", + " [ 0.33959905 -0.11762001 -0.93318702]\n", + " [ 0.37025135 -0.10559105 -0.92291086]\n", + " [ 0.39988357 -0.09386714 -0.91174672]\n", + " [ 0.25374499 -0.18653423 -0.94911457]\n", + " [ 0.28676059 -0.17397537 -0.94207268]\n", + " [ 0.31923088 -0.16137441 -0.93383614]\n", + " [ 0.35097688 -0.14881498 -0.92448328]\n", + " [ 0.38183046 -0.13638719 -0.9141138 ]\n", + " [ 0.41163319 -0.12418976 -0.90284828]\n", + " [ 0.26422508 -0.21895361 -0.93927867]\n", + " [ 0.29747936 -0.20623428 -0.93218745]\n", + " [ 0.33015816 -0.19340389 -0.92389963]\n", + " [ 0.36208135 -0.18054661 -0.91449441]\n", + " [ 0.39308121 -0.16775221 -0.9040721 ]\n", + " [ 0.42300109 -0.15511803 -0.89275331]\n", + " [ 0.27452776 -0.25162766 -0.92807221]\n", + " [ 0.30795924 -0.23877214 -0.92095004]\n", + " [ 0.34078712 -0.22573767 -0.91263719]\n", + " [ 0.37283032 -0.2126097 -0.90321352]\n", + " [ 0.40392155 -0.1994787 -0.89277972]\n", + " [ 0.43390589 -0.18644169 -0.88145628]\n", + " [ 0.28457911 -0.2843544 -0.91550931]\n", + " [ 0.31812445 -0.27138778 -0.9083752 ]\n", + " [ 0.35104071 -0.25817524 -0.90006442]\n", + " [ 0.38314626 -0.24480396 -0.89065704]\n", + " [ 0.41427432 -0.23136594 -0.88025371]\n", + " [ 0.4442714 -0.21795889 -0.86897459]\n", + " [ 0.29430989 -0.31693179 -0.9016296 ]\n", + " [ 0.32790427 -0.30388036 -0.89450294]\n", + " [ 0.36084736 -0.29051732 -0.88622168]\n", + " [ 0.39295747 -0.27693173 -0.87686558]\n", + " [ 0.42406838 -0.26321752 -0.86653479]\n", + " [ 0.45402768 -0.24947386 -0.85534885]]\n", + "DEBUG:root:radec2pix: curVec Shape: (96, 3)\n", + "DEBUG:root:radec2pix: xyfp: [[ -0.172993 31.426621 ]\n", + " [ -0.172993 27.04019243]\n", + " [ -0.172993 22.65376385]\n", + " [ -0.172993 18.26733528]\n", + " [ -0.172993 13.88090671]\n", + " [ -0.172993 9.49447814]\n", + " [ -0.172993 5.10804957]\n", + " [ -0.172993 0.721621 ]\n", + " [ -0.172993 31.426621 ]\n", + " [ -4.55942157 31.426621 ]\n", + " [ -8.94585014 31.426621 ]\n", + " [-13.33227871 31.426621 ]\n", + " [-17.71870729 31.426621 ]\n", + " [-22.10513586 31.426621 ]\n", + " [-26.49156443 31.426621 ]\n", + " [-30.877993 31.426621 ]\n", + " [ -0.172993 0.721621 ]\n", + " [ -4.55942157 0.721621 ]\n", + " [ -8.94585014 0.721621 ]\n", + " [-13.33227872 0.721621 ]\n", + " [-17.71870728 0.721621 ]\n", + " [-22.10513586 0.721621 ]\n", + " [-26.49156443 0.721621 ]\n", + " [-30.877993 0.721621 ]\n", + " [-30.877993 31.426621 ]\n", + " [-30.877993 27.04019243]\n", + " [-30.877993 22.65376385]\n", + " [-30.877993 18.26733529]\n", + " [-30.877993 13.88090671]\n", + " [-30.877993 9.49447814]\n", + " [-30.877993 5.10804957]\n", + " [-30.877993 0.721621 ]\n", + " [ -0.187993 29.514121 ]\n", + " [ -0.187993 24.138121 ]\n", + " [ -0.187993 18.76212101]\n", + " [ -0.187993 13.386121 ]\n", + " [ -0.187993 8.010121 ]\n", + " [ -0.187993 2.634121 ]\n", + " [ -2.085493 31.411621 ]\n", + " [ -7.461493 31.411621 ]\n", + " [-12.837493 31.411621 ]\n", + " [-18.213493 31.411621 ]\n", + " [-23.589493 31.411621 ]\n", + " [-28.965493 31.411621 ]\n", + " [ -2.085493 0.736621 ]\n", + " [ -7.461493 0.736621 ]\n", + " [-12.837493 0.736621 ]\n", + " [-18.213493 0.736621 ]\n", + " [-23.58949299 0.736621 ]\n", + " [-28.965493 0.736621 ]\n", + " [-30.862993 29.514121 ]\n", + " [-30.862993 24.138121 ]\n", + " [-30.862993 18.762121 ]\n", + " [-30.862993 13.386121 ]\n", + " [-30.862993 8.010121 ]\n", + " [-30.862993 2.634121 ]\n", + " [ -0.187993 31.411621 ]\n", + " [ -0.187993 31.411621 ]\n", + " [-30.862993 0.736621 ]\n", + " [-30.862993 0.736621 ]\n", + " [ -2.085493 29.514121 ]\n", + " [ -7.461493 29.514121 ]\n", + " [-12.837493 29.514121 ]\n", + " [-18.213493 29.514121 ]\n", + " [-23.589493 29.514121 ]\n", + " [-28.965493 29.514121 ]\n", + " [ -2.085493 24.138121 ]\n", + " [ -7.461493 24.138121 ]\n", + " [-12.837493 24.138121 ]\n", + " [-18.213493 24.138121 ]\n", + " [-23.589493 24.138121 ]\n", + " [-28.965493 24.138121 ]\n", + " [ -2.085493 18.762121 ]\n", + " [ -7.461493 18.762121 ]\n", + " [-12.837493 18.762121 ]\n", + " [-18.213493 18.762121 ]\n", + " [-23.589493 18.762121 ]\n", + " [-28.965493 18.762121 ]\n", + " [ -2.085493 13.386121 ]\n", + " [ -7.461493 13.386121 ]\n", + " [-12.837493 13.386121 ]\n", + " [-18.213493 13.386121 ]\n", + " [-23.589493 13.386121 ]\n", + " [-28.965493 13.386121 ]\n", + " [ -2.085493 8.010121 ]\n", + " [ -7.461493 8.010121 ]\n", + " [-12.837493 8.010121 ]\n", + " [-18.213493 8.010121 ]\n", + " [-23.589493 8.010121 ]\n", + " [-28.965493 8.010121 ]\n", + " [ -2.085493 2.634121 ]\n", + " [ -7.461493 2.634121 ]\n", + " [-12.837493 2.634121 ]\n", + " [-18.213493 2.634121 ]\n", + " [-23.589493 2.634121 ]\n", + " [-28.965493 2.634121 ]]\n", + "DEBUG:root:radec2pix: xyfp Shape: (96, 2)\n", + "DEBUG:root:radec2pix: camVec: [[ 0.00110855 0.00111823 0.00112655 0.00113349 0.001139 0.00114306\n", + " 0.00114562 0.00114666 0.00110855 0.03013432 0.05904256 0.08772073\n", + " 0.11605724 0.14394136 0.17126266 0.19791015 0.00114666 0.03116962\n", + " 0.06106803 0.09072406 0.1200235 0.1488564 0.17711651 0.20469956\n", + " 0.19791015 0.19966308 0.20115603 0.20238925 0.20336191 0.20407235\n", + " 0.20451873 0.20469956 0.00121266 0.00122459 0.00123428 0.00124164\n", + " 0.00124661 0.00124912 0.01377154 0.04928181 0.08450359 0.11923105\n", + " 0.15326028 0.18638779 0.01424443 0.05097175 0.08739457 0.12330108\n", + " 0.15848878 0.192763 0.19861623 0.2005887 0.20217123 0.20336272\n", + " 0.2041602 0.2045604 0.00120792 0.00120792 0.20460634 0.20460634\n", + " 0.01382559 0.04947523 0.08483539 0.11969997 0.15386543 0.18712908\n", + " 0.01396162 0.04996174 0.08566901 0.1208763 0.15538076 0.1889821\n", + " 0.01407199 0.05035615 0.08634371 0.12182616 0.15660103 0.19047015\n", + " 0.01415593 0.05065593 0.08685581 0.12254563 0.15752301 0.1915915\n", + " 0.01421257 0.05085809 0.08720077 0.12302951 0.15814189 0.1923426\n", + " 0.01424114 0.05096003 0.08737459 0.12327308 0.15845303 0.1927197 ]\n", + " [-0.20853555 -0.18105588 -0.15288447 -0.12412547 -0.09488471 -0.06527159\n", + " -0.0353997 -0.00538646 -0.20853555 -0.20838958 -0.2079729 -0.20728684\n", + " -0.20633313 -0.20511339 -0.20362847 -0.2018782 -0.00538646 -0.00538259\n", + " -0.00537156 -0.00535349 -0.00532854 -0.00529689 -0.00525872 -0.00521415\n", + " -0.2018782 -0.17529764 -0.14802765 -0.12017919 -0.09186258 -0.06318839\n", + " -0.03426807 -0.00521415 -0.196646 -0.16248857 -0.12739553 -0.09156092\n", + " -0.05518617 -0.01848208 -0.20841259 -0.20805164 -0.2072855 -0.20611722\n", + " -0.20454967 -0.20258404 -0.00548838 -0.00547863 -0.00545803 -0.00542687\n", + " -0.0053855 -0.0053342 -0.19038695 -0.15733098 -0.12334981 -0.08864677\n", + " -0.05342545 -0.01789151 -0.20844284 -0.20844284 -0.00531377 -0.00531377\n", + " -0.19661746 -0.19627694 -0.19555447 -0.19445357 -0.19297773 -0.19112874\n", + " -0.1624649 -0.16218264 -0.16158454 -0.16067502 -0.15945889 -0.15793949\n", + " -0.12737685 -0.12715419 -0.12668294 -0.12596768 -0.12501365 -0.12382499\n", + " -0.0915474 -0.09138626 -0.09104555 -0.09052922 -0.08984197 -0.08898771\n", + " -0.05517797 -0.05508029 -0.05487388 -0.05456144 -0.05414617 -0.05363087\n", + " -0.01847933 -0.01844651 -0.01837718 -0.0182723 -0.018133 -0.01796031]\n", + " [ 0.97801416 0.98347217 0.98824343 0.99226588 0.99548762 0.99786688\n", + " 0.99937258 0.99998484 0.97801416 0.97758156 0.97635099 0.97433939\n", + " 0.97157468 0.96809575 0.96395256 0.95920632 0.99998484 0.99949962\n", + " 0.99811915 0.99586168 0.99275675 0.98884464 0.98417584 0.97881096\n", + " 0.95920632 0.96405674 0.9683099 0.97190306 0.97478469 0.97691438\n", + " 0.97826264 0.97881096 0.9804738 0.98670967 0.99185123 0.9957987\n", + " 0.9984753 0.99982841 0.97794404 0.97687554 0.97462396 0.97123615\n", + " 0.9667837 0.96136325 0.99988348 0.99868507 0.99615882 0.99235447\n", + " 0.98734609 0.98123085 0.96140751 0.96695974 0.97155114 0.97508223\n", + " 0.97747856 0.97869042 0.97803381 0.97803381 0.97882992 0.97882992\n", + " 0.9803828 0.97929953 0.97701659 0.97358088 0.96906399 0.96356241\n", + " 0.98661554 0.98549511 0.98313339 0.97957769 0.97489983 0.969196\n", + " 0.99175456 0.99060389 0.98817822 0.98452554 0.97971818 0.9738524\n", + " 0.9957001 0.99452628 0.9920518 0.98832537 0.98342001 0.97743229\n", + " 0.99837538 0.99718585 0.99467828 0.99090201 0.9859307 0.97986124\n", + " 0.99972782 0.99853032 0.996006 0.99220455 0.9872 0.98108947]]\n", + "DEBUG:root:radec2pix: camVec Shape: (3, 96)\n", + "DEBUG:root:mm_to_pix: fitpx: [[0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]]\n", + "DEBUG:root:mm_to_pix: fitpx.shape: (96, 2)\n", + "DEBUG:root:radec2pix: xyfp: [[ -0.172993 31.426621 ]\n", + " [ -0.172993 27.04019243]\n", + " [ -0.172993 22.65376385]\n", + " [ -0.172993 18.26733528]\n", + " [ -0.172993 13.88090671]\n", + " [ -0.172993 9.49447814]\n", + " [ -0.172993 5.10804957]\n", + " [ -0.172993 0.721621 ]\n", + " [ -0.172993 31.426621 ]\n", + " [ -4.55942157 31.426621 ]\n", + " [ -8.94585014 31.426621 ]\n", + " [-13.33227871 31.426621 ]\n", + " [-17.71870729 31.426621 ]\n", + " [-22.10513586 31.426621 ]\n", + " [-26.49156443 31.426621 ]\n", + " [-30.877993 31.426621 ]\n", + " [ -0.172993 0.721621 ]\n", + " [ -4.55942157 0.721621 ]\n", + " [ -8.94585014 0.721621 ]\n", + " [-13.33227872 0.721621 ]\n", + " [-17.71870728 0.721621 ]\n", + " [-22.10513586 0.721621 ]\n", + " [-26.49156443 0.721621 ]\n", + " [-30.877993 0.721621 ]\n", + " [-30.877993 31.426621 ]\n", + " [-30.877993 27.04019243]\n", + " [-30.877993 22.65376385]\n", + " [-30.877993 18.26733529]\n", + " [-30.877993 13.88090671]\n", + " [-30.877993 9.49447814]\n", + " [-30.877993 5.10804957]\n", + " [-30.877993 0.721621 ]\n", + " [ -0.187993 29.514121 ]\n", + " [ -0.187993 24.138121 ]\n", + " [ -0.187993 18.76212101]\n", + " [ -0.187993 13.386121 ]\n", + " [ -0.187993 8.010121 ]\n", + " [ -0.187993 2.634121 ]\n", + " [ -2.085493 31.411621 ]\n", + " [ -7.461493 31.411621 ]\n", + " [-12.837493 31.411621 ]\n", + " [-18.213493 31.411621 ]\n", + " [-23.589493 31.411621 ]\n", + " [-28.965493 31.411621 ]\n", + " [ -2.085493 0.736621 ]\n", + " [ -7.461493 0.736621 ]\n", + " [-12.837493 0.736621 ]\n", + " [-18.213493 0.736621 ]\n", + " [-23.58949299 0.736621 ]\n", + " [-28.965493 0.736621 ]\n", + " [-30.862993 29.514121 ]\n", + " [-30.862993 24.138121 ]\n", + " [-30.862993 18.762121 ]\n", + " [-30.862993 13.386121 ]\n", + " [-30.862993 8.010121 ]\n", + " [-30.862993 2.634121 ]\n", + " [ -0.187993 31.411621 ]\n", + " [ -0.187993 31.411621 ]\n", + " [-30.862993 0.736621 ]\n", + " [-30.862993 0.736621 ]\n", + " [ -2.085493 29.514121 ]\n", + " [ -7.461493 29.514121 ]\n", + " [-12.837493 29.514121 ]\n", + " [-18.213493 29.514121 ]\n", + " [-23.589493 29.514121 ]\n", + " [-28.965493 29.514121 ]\n", + " [ -2.085493 24.138121 ]\n", + " [ -7.461493 24.138121 ]\n", + " [-12.837493 24.138121 ]\n", + " [-18.213493 24.138121 ]\n", + " [-23.589493 24.138121 ]\n", + " [-28.965493 24.138121 ]\n", + " [ -2.085493 18.762121 ]\n", + " [ -7.461493 18.762121 ]\n", + " [-12.837493 18.762121 ]\n", + " [-18.213493 18.762121 ]\n", + " [-23.589493 18.762121 ]\n", + " [-28.965493 18.762121 ]\n", + " [ -2.085493 13.386121 ]\n", + " [ -7.461493 13.386121 ]\n", + " [-12.837493 13.386121 ]\n", + " [-18.213493 13.386121 ]\n", + " [-23.589493 13.386121 ]\n", + " [-28.965493 13.386121 ]\n", + " [ -2.085493 8.010121 ]\n", + " [ -7.461493 8.010121 ]\n", + " [-12.837493 8.010121 ]\n", + " [-18.213493 8.010121 ]\n", + " [-23.589493 8.010121 ]\n", + " [-28.965493 8.010121 ]\n", + " [ -2.085493 2.634121 ]\n", + " [ -7.461493 2.634121 ]\n", + " [-12.837493 2.634121 ]\n", + " [-18.213493 2.634121 ]\n", + " [-23.589493 2.634121 ]\n", + " [-28.965493 2.634121 ]]\n", + "DEBUG:root:cartToSphere: vec: [[ 0.00110855 -0.20853555 0.97801416]\n", + " [ 0.00111823 -0.18105588 0.98347217]\n", + " [ 0.00112655 -0.15288447 0.98824343]\n", + " [ 0.00113349 -0.12412547 0.99226588]\n", + " [ 0.001139 -0.09488471 0.99548762]\n", + " [ 0.00114306 -0.06527159 0.99786688]\n", + " [ 0.00114562 -0.0353997 0.99937258]\n", + " [ 0.00114666 -0.00538646 0.99998484]\n", + " [ 0.00110855 -0.20853555 0.97801416]\n", + " [ 0.03013432 -0.20838958 0.97758156]\n", + " [ 0.05904256 -0.2079729 0.97635099]\n", + " [ 0.08772073 -0.20728684 0.97433939]\n", + " [ 0.11605724 -0.20633313 0.97157468]\n", + " [ 0.14394136 -0.20511339 0.96809575]\n", + " [ 0.17126266 -0.20362847 0.96395256]\n", + " [ 0.19791015 -0.2018782 0.95920632]\n", + " [ 0.00114666 -0.00538646 0.99998484]\n", + " [ 0.03116962 -0.00538259 0.99949962]\n", + " [ 0.06106803 -0.00537156 0.99811915]\n", + " [ 0.09072406 -0.00535349 0.99586168]\n", + " [ 0.1200235 -0.00532854 0.99275675]\n", + " [ 0.1488564 -0.00529689 0.98884464]\n", + " [ 0.17711651 -0.00525872 0.98417584]\n", + " [ 0.20469956 -0.00521415 0.97881096]\n", + " [ 0.19791015 -0.2018782 0.95920632]\n", + " [ 0.19966308 -0.17529764 0.96405674]\n", + " [ 0.20115603 -0.14802765 0.9683099 ]\n", + " [ 0.20238925 -0.12017919 0.97190306]\n", + " [ 0.20336191 -0.09186258 0.97478469]\n", + " [ 0.20407235 -0.06318839 0.97691438]\n", + " [ 0.20451873 -0.03426807 0.97826264]\n", + " [ 0.20469956 -0.00521415 0.97881096]\n", + " [ 0.00121266 -0.196646 0.9804738 ]\n", + " [ 0.00122459 -0.16248857 0.98670967]\n", + " [ 0.00123428 -0.12739553 0.99185123]\n", + " [ 0.00124164 -0.09156092 0.9957987 ]\n", + " [ 0.00124661 -0.05518617 0.9984753 ]\n", + " [ 0.00124912 -0.01848208 0.99982841]\n", + " [ 0.01377154 -0.20841259 0.97794404]\n", + " [ 0.04928181 -0.20805164 0.97687554]\n", + " [ 0.08450359 -0.2072855 0.97462396]\n", + " [ 0.11923105 -0.20611722 0.97123615]\n", + " [ 0.15326028 -0.20454967 0.9667837 ]\n", + " [ 0.18638779 -0.20258404 0.96136325]\n", + " [ 0.01424443 -0.00548838 0.99988348]\n", + " [ 0.05097175 -0.00547863 0.99868507]\n", + " [ 0.08739457 -0.00545803 0.99615882]\n", + " [ 0.12330108 -0.00542687 0.99235447]\n", + " [ 0.15848878 -0.0053855 0.98734609]\n", + " [ 0.192763 -0.0053342 0.98123085]\n", + " [ 0.19861623 -0.19038695 0.96140751]\n", + " [ 0.2005887 -0.15733098 0.96695974]\n", + " [ 0.20217123 -0.12334981 0.97155114]\n", + " [ 0.20336272 -0.08864677 0.97508223]\n", + " [ 0.2041602 -0.05342545 0.97747856]\n", + " [ 0.2045604 -0.01789151 0.97869042]\n", + " [ 0.00120792 -0.20844284 0.97803381]\n", + " [ 0.00120792 -0.20844284 0.97803381]\n", + " [ 0.20460634 -0.00531377 0.97882992]\n", + " [ 0.20460634 -0.00531377 0.97882992]\n", + " [ 0.01382559 -0.19661746 0.9803828 ]\n", + " [ 0.04947523 -0.19627694 0.97929953]\n", + " [ 0.08483539 -0.19555447 0.97701659]\n", + " [ 0.11969997 -0.19445357 0.97358088]\n", + " [ 0.15386543 -0.19297773 0.96906399]\n", + " [ 0.18712908 -0.19112874 0.96356241]\n", + " [ 0.01396162 -0.1624649 0.98661554]\n", + " [ 0.04996174 -0.16218264 0.98549511]\n", + " [ 0.08566901 -0.16158454 0.98313339]\n", + " [ 0.1208763 -0.16067502 0.97957769]\n", + " [ 0.15538076 -0.15945889 0.97489983]\n", + " [ 0.1889821 -0.15793949 0.969196 ]\n", + " [ 0.01407199 -0.12737685 0.99175456]\n", + " [ 0.05035615 -0.12715419 0.99060389]\n", + " [ 0.08634371 -0.12668294 0.98817822]\n", + " [ 0.12182616 -0.12596768 0.98452554]\n", + " [ 0.15660103 -0.12501365 0.97971818]\n", + " [ 0.19047015 -0.12382499 0.9738524 ]\n", + " [ 0.01415593 -0.0915474 0.9957001 ]\n", + " [ 0.05065593 -0.09138626 0.99452628]\n", + " [ 0.08685581 -0.09104555 0.9920518 ]\n", + " [ 0.12254563 -0.09052922 0.98832537]\n", + " [ 0.15752301 -0.08984197 0.98342001]\n", + " [ 0.1915915 -0.08898771 0.97743229]\n", + " [ 0.01421257 -0.05517797 0.99837538]\n", + " [ 0.05085809 -0.05508029 0.99718585]\n", + " [ 0.08720077 -0.05487388 0.99467828]\n", + " [ 0.12302951 -0.05456144 0.99090201]\n", + " [ 0.15814189 -0.05414617 0.9859307 ]\n", + " [ 0.1923426 -0.05363087 0.97986124]\n", + " [ 0.01424114 -0.01847933 0.99972782]\n", + " [ 0.05096003 -0.01844651 0.99853032]\n", + " [ 0.08737459 -0.01837718 0.996006 ]\n", + " [ 0.12327308 -0.0182723 0.99220455]\n", + " [ 0.15845303 -0.018133 0.9872 ]\n", + " [ 0.1927197 -0.01796031 0.98108947]]\n", + "DEBUG:root:radec2pix: lng: [270.30457564 270.35386432 270.42218515 270.52319877 270.68775016\n", + " 271.00328211 271.85358468 282.01764037 270.30457564 278.22825834\n", + " 285.84900373 292.93736432 299.35666656 305.05982707 310.06566745\n", + " 314.43133752 282.01764037 350.20239022 354.97318448 356.62297809\n", + " 357.45797758 357.96205284 358.29934604 358.54086611 314.43133752\n", + " 318.71792809 323.65121653 329.29806584 335.69036822 342.79553001\n", + " 350.4881795 358.54086611 270.35332309 270.43180131 270.55509491\n", + " 270.77692983 271.2940439 273.86646927 273.78050957 283.32620486\n", + " 292.17913267 300.04776463 306.84264375 312.61566094 338.92831161\n", + " 353.86519186 356.42636123 357.47985638 358.05382146 358.4148969\n", + " 316.21189934 321.89127155 328.61157088 336.44738638 345.33544633\n", + " 355.00144674 270.33202411 270.33202411 358.51232366 358.51232366\n", + " 274.02225895 284.14773214 293.45215101 301.61524642 308.56613427\n", + " 314.39418307 274.91171606 287.12189287 297.93167364 306.95425335\n", + " 314.25788847 320.11321977 276.3042009 291.6047689 304.27729951\n", + " 314.04247307 321.39984571 326.97203004 278.79000558 298.99985673\n", + " 313.65088315 323.54527533 330.30207858 335.08673923 284.44409964\n", + " 312.71767267 327.81852787 336.08354959 341.09932037 344.41993917\n", + " 307.6197367 340.1007605 348.12231225 351.56865678 353.47160216\n", + " 354.67575821]\n", + "DEBUG:root:radec2pix: ccdpx: [[-4.45000000e+01 -4.99999902e-01]\n", + " [-4.45000000e+01 2.91928572e+02]\n", + " [-4.45000000e+01 5.84357143e+02]\n", + " [-4.45000000e+01 8.76785715e+02]\n", + " [-4.45000000e+01 1.16921429e+03]\n", + " [-4.45000000e+01 1.46164286e+03]\n", + " [-4.45000000e+01 1.75407143e+03]\n", + " [-4.45000001e+01 2.04650000e+03]\n", + " [-4.45000000e+01 -4.99999902e-01]\n", + " [ 2.47928571e+02 -4.99999902e-01]\n", + " [ 5.40357143e+02 -4.99999727e-01]\n", + " [ 8.32785714e+02 -5.00000071e-01]\n", + " [ 1.12521429e+03 -5.00000281e-01]\n", + " [ 1.41764286e+03 -4.99999968e-01]\n", + " [ 1.71007143e+03 -5.00000211e-01]\n", + " [ 2.00250000e+03 -5.00000200e-01]\n", + " [-4.45000001e+01 2.04650000e+03]\n", + " [ 2.47928571e+02 2.04650000e+03]\n", + " [ 5.40357143e+02 2.04650000e+03]\n", + " [ 8.32785714e+02 2.04650000e+03]\n", + " [ 1.12521429e+03 2.04650000e+03]\n", + " [ 1.41764286e+03 2.04650000e+03]\n", + " [ 1.71007143e+03 2.04650000e+03]\n", + " [ 2.00250000e+03 2.04650000e+03]\n", + " [ 2.00250000e+03 -5.00000200e-01]\n", + " [ 2.00250000e+03 2.91928571e+02]\n", + " [ 2.00250000e+03 5.84357143e+02]\n", + " [ 2.00250000e+03 8.76785714e+02]\n", + " [ 2.00250000e+03 1.16921429e+03]\n", + " [ 2.00250000e+03 1.46164286e+03]\n", + " [ 2.00250000e+03 1.75407143e+03]\n", + " [ 2.00250000e+03 2.04650000e+03]\n", + " [-4.35000000e+01 1.27000000e+02]\n", + " [-4.35000000e+01 4.85400000e+02]\n", + " [-4.35000000e+01 8.43800000e+02]\n", + " [-4.35000000e+01 1.20220000e+03]\n", + " [-4.35000000e+01 1.56060000e+03]\n", + " [-4.35000000e+01 1.91900000e+03]\n", + " [ 8.30000000e+01 5.00000088e-01]\n", + " [ 4.41400000e+02 5.00000229e-01]\n", + " [ 7.99800000e+02 4.99999876e-01]\n", + " [ 1.15820000e+03 5.00000139e-01]\n", + " [ 1.51660000e+03 5.00000172e-01]\n", + " [ 1.87500000e+03 4.99999925e-01]\n", + " [ 8.30000002e+01 2.04550000e+03]\n", + " [ 4.41400000e+02 2.04550000e+03]\n", + " [ 7.99800000e+02 2.04550000e+03]\n", + " [ 1.15820000e+03 2.04550000e+03]\n", + " [ 1.51660000e+03 2.04550000e+03]\n", + " [ 1.87500000e+03 2.04550000e+03]\n", + " [ 2.00150000e+03 1.27000000e+02]\n", + " [ 2.00150000e+03 4.85400000e+02]\n", + " [ 2.00150000e+03 8.43800000e+02]\n", + " [ 2.00150000e+03 1.20220000e+03]\n", + " [ 2.00150000e+03 1.56060000e+03]\n", + " [ 2.00150000e+03 1.91900000e+03]\n", + " [-4.35000000e+01 5.00000166e-01]\n", + " [-4.35000000e+01 5.00000166e-01]\n", + " [ 2.00150000e+03 2.04550000e+03]\n", + " [ 2.00150000e+03 2.04550000e+03]\n", + " [ 8.30000000e+01 1.27000000e+02]\n", + " [ 4.41400000e+02 1.27000000e+02]\n", + " [ 7.99800000e+02 1.27000000e+02]\n", + " [ 1.15820000e+03 1.27000000e+02]\n", + " [ 1.51660000e+03 1.27000000e+02]\n", + " [ 1.87500000e+03 1.27000000e+02]\n", + " [ 8.30000000e+01 4.85400000e+02]\n", + " [ 4.41400000e+02 4.85400000e+02]\n", + " [ 7.99800000e+02 4.85400000e+02]\n", + " [ 1.15820000e+03 4.85400000e+02]\n", + " [ 1.51660000e+03 4.85400000e+02]\n", + " [ 1.87500000e+03 4.85400000e+02]\n", + " [ 8.30000000e+01 8.43800000e+02]\n", + " [ 4.41400000e+02 8.43800000e+02]\n", + " [ 7.99800000e+02 8.43800000e+02]\n", + " [ 1.15820000e+03 8.43800000e+02]\n", + " [ 1.51660000e+03 8.43800000e+02]\n", + " [ 1.87500000e+03 8.43800000e+02]\n", + " [ 8.30000000e+01 1.20220000e+03]\n", + " [ 4.41400000e+02 1.20220000e+03]\n", + " [ 7.99800000e+02 1.20220000e+03]\n", + " [ 1.15820000e+03 1.20220000e+03]\n", + " [ 1.51660000e+03 1.20220000e+03]\n", + " [ 1.87500000e+03 1.20220000e+03]\n", + " [ 8.30000000e+01 1.56060000e+03]\n", + " [ 4.41400000e+02 1.56060000e+03]\n", + " [ 7.99800000e+02 1.56060000e+03]\n", + " [ 1.15820000e+03 1.56060000e+03]\n", + " [ 1.51660000e+03 1.56060000e+03]\n", + " [ 1.87500000e+03 1.56060000e+03]\n", + " [ 8.30000001e+01 1.91900000e+03]\n", + " [ 4.41400000e+02 1.91900000e+03]\n", + " [ 7.99800000e+02 1.91900000e+03]\n", + " [ 1.15820000e+03 1.91900000e+03]\n", + " [ 1.51660000e+03 1.91900000e+03]\n", + " [ 1.87500000e+03 1.91900000e+03]]\n", + "DEBUG:root:radec2pix: lat: [77.96328192 79.56853071 81.20563621 82.86944579 84.55492216 86.25697831\n", + " 87.97026012 89.68446141 77.96328192 77.84499787 77.51456239 76.99218852\n", + " 76.30618444 75.48813083 74.56921129 73.5781677 89.68446141 88.18737722\n", + " 86.48534608 84.7856574 83.09971795 81.43388184 79.79360686 78.18420142\n", + " 73.5781677 74.59165918 75.53717808 76.38588844 77.10603256 77.66476376\n", + " 78.03174302 78.18420142 78.65888684 80.64836049 82.6805387 84.74610355\n", + " 86.83565024 88.93857815 77.94403081 77.65435125 77.06482717 76.22448951\n", + " 75.19110028 74.0211233 89.125335 87.06142445 84.97647052 82.91045242\n", + " 80.87550158 78.88161748 74.03033777 75.2306137 76.3004884 77.18265224\n", + " 77.81700171 78.15051889 77.96868077 77.96868077 78.18950618 78.18950618\n", + " 78.63240168 78.32169564 77.69220555 76.80049546 75.71119975 74.48541744\n", + " 80.6152305 80.22940153 79.46186211 78.40069669 77.13562878 75.74187621\n", + " 82.63719517 82.13946169 81.18123393 79.90730671 78.44079679 76.86879929\n", + " 84.68476231 84.00240554 82.77130238 81.23639689 79.55203729 77.80444657\n", + " 86.73357497 85.70054621 84.08633958 82.26535796 80.37757677 78.48177609\n", + " 88.66315983 86.89328024 84.87745159 82.8411917 80.82286686 78.83968928]\n", + "DEBUG:root:radec2pix: fitpx: [[2135.5 4155.4999999 ]\n", + " [2135.5 3863.07142835]\n", + " [2135.5 3570.64285687]\n", + " [2135.5 3278.21428534]\n", + " [2135.5 2985.78571398]\n", + " [2135.5 2693.35714282]\n", + " [2135.50000001 2400.92857102]\n", + " [2135.50000006 2108.49999973]\n", + " [2135.5 4155.4999999 ]\n", + " [1843.07142859 4155.4999999 ]\n", + " [1550.64285722 4155.49999973]\n", + " [1258.21428568 4155.50000007]\n", + " [ 965.78571413 4155.50000028]\n", + " [ 673.35714288 4155.49999997]\n", + " [ 380.92857125 4155.50000021]\n", + " [ 88.4999998 4155.5000002 ]\n", + " [2135.50000006 2108.49999973]\n", + " [1843.07142866 2108.49999999]\n", + " [1550.64285735 2108.49999998]\n", + " [1258.21428559 2108.50000001]\n", + " [ 965.78571467 2108.49999998]\n", + " [ 673.35714297 2108.5 ]\n", + " [ 380.92857138 2108.5 ]\n", + " [ 88.49999984 2108.5 ]\n", + " [ 88.4999998 4155.5000002 ]\n", + " [ 88.49999999 3863.07142858]\n", + " [ 88.50000023 3570.64285698]\n", + " [ 88.4999999 3278.21428577]\n", + " [ 88.50000002 2985.78571428]\n", + " [ 88.50000017 2693.35714281]\n", + " [ 88.49999997 2400.92857143]\n", + " [ 88.49999984 2108.5 ]\n", + " [2134.5 4027.99999995]\n", + " [2134.5 3669.59999994]\n", + " [2134.5 3311.20000034]\n", + " [2134.5 2952.80000006]\n", + " [2134.5 2594.39999997]\n", + " [2134.49999998 2236.00000031]\n", + " [2008.00000001 4154.49999991]\n", + " [1649.60000005 4154.49999977]\n", + " [1291.19999995 4154.50000012]\n", + " [ 932.80000008 4154.49999986]\n", + " [ 574.40000013 4154.49999983]\n", + " [ 215.99999993 4154.50000007]\n", + " [2007.99999975 2109.50000009]\n", + " [1649.5999999 2109.50000001]\n", + " [1291.19999978 2109.50000001]\n", + " [ 932.80000001 2109.5 ]\n", + " [ 574.40000043 2109.49999999]\n", + " [ 216.00000004 2109.5 ]\n", + " [ 89.50000001 4027.99999999]\n", + " [ 89.4999998 3669.60000015]\n", + " [ 89.50000012 3311.19999993]\n", + " [ 89.50000006 2952.79999997]\n", + " [ 89.49999988 2594.40000003]\n", + " [ 89.50000008 2235.99999999]\n", + " [2134.5 4154.49999983]\n", + " [2134.5 4154.49999983]\n", + " [ 89.49999987 2109.5 ]\n", + " [ 89.49999987 2109.5 ]\n", + " [2008. 4027.99999995]\n", + " [1649.60000002 4027.99999993]\n", + " [1291.20000002 4027.99999996]\n", + " [ 932.80000002 4027.99999996]\n", + " [ 574.4000002 4027.99999975]\n", + " [ 215.99999985 4028.00000015]\n", + " [2008.00000001 3669.59999986]\n", + " [1649.60000005 3669.59999982]\n", + " [1291.19999995 3669.60000009]\n", + " [ 932.79999997 3669.60000004]\n", + " [ 574.40000017 3669.59999983]\n", + " [ 215.99999977 3669.60000019]\n", + " [2007.99999999 3311.20000007]\n", + " [1649.5999999 3311.20000024]\n", + " [1291.20000003 3311.19999996]\n", + " [ 932.80000003 3311.19999997]\n", + " [ 574.40000015 3311.19999988]\n", + " [ 216.00000001 3311.19999999]\n", + " [2008.00000002 2952.79999987]\n", + " [1649.59999985 2952.80000027]\n", + " [1291.1999999 2952.80000011]\n", + " [ 932.80000032 2952.79999977]\n", + " [ 574.39999984 2952.80000009]\n", + " [ 216.00000025 2952.79999989]\n", + " [2007.99999995 2594.40000018]\n", + " [1649.59999988 2594.40000012]\n", + " [1291.19999985 2594.4000001 ]\n", + " [ 932.79999977 2594.4000001 ]\n", + " [ 574.39999985 2594.40000005]\n", + " [ 216.00000009 2594.39999997]\n", + " [2007.99999988 2236.00000015]\n", + " [1649.60000009 2235.99999997]\n", + " [1291.19999998 2236. ]\n", + " [ 932.79999991 2236.00000001]\n", + " [ 574.39999979 2236.00000002]\n", + " [ 215.99999986 2236.00000001]]\n", + "DEBUG:root:fitpix2pix: ccdpx: shape: (96, 2)\n", + "DEBUG:root:fitpix2pix: visCut: True\n", + "DEBUG:root:optics_fp: rtanth: [31.49183295 27.10547639 22.71914763 18.33286663 13.94667845 9.56071086\n", + " 5.17552468 0.80400903 31.49183295 31.81893962 32.73584893 34.19514883\n", + " 36.13117923 38.47203574 41.14868729 44.10003298 0.80400903 4.62123428\n", + " 8.97478096 13.34987234 17.73056686 22.11353481 26.49764807 30.88241889\n", + " 44.10003298 41.08265104 38.3306279 35.90503258 33.87605653 32.31848632\n", + " 31.30277019 30.88241889 29.57945042 24.20357534 18.8277716 13.45212473\n", + " 8.07694792 2.70504492 31.5450314 32.34738816 33.9914811 36.36331677\n", + " 39.33145785 42.7719429 2.22895212 7.49884938 12.85690509 18.22553229\n", + " 23.59751677 28.97099101 42.74447401 39.21682332 36.14735337 33.66163739\n", + " 31.89644588 30.97520686 31.47691651 31.47691651 30.86780955 30.86780955\n", + " 29.6519244 30.50411668 32.24233865 34.73382242 37.83003027 41.39549146\n", + " 24.29209321 25.32528987 27.39411567 30.28708623 33.79319995 37.74196451\n", + " 18.94142858 20.24949953 22.78397459 26.19121067 30.17701587 34.5416822\n", + " 13.61074549 15.37910619 18.5898944 22.63745111 27.1500822 31.93121491\n", + " 8.33845435 10.99064764 15.16118736 19.91812291 24.9279841 30.06459569\n", + " 3.40734519 7.92934524 13.11265734 18.40684115 23.73782997 29.08539314]\n", + "DEBUG:root:optics_fp: cphi: [0.00531582 0.00617606 0.00736845 0.00913141 0.01200322 0.01750968\n", + " 0.03234551 0.20821284 0.00531582 0.14311708 0.27310311 0.3897246\n", + " 0.4902447 0.57443147 0.64366516 0.70005401 0.20821284 0.985415\n", + " 0.9961538 0.99826353 0.99901596 0.99936749 0.99955952 0.99967574\n", + " 0.70005401 0.75147061 0.80542393 0.85983504 0.91133409 0.95525529\n", + " 0.98625153 0.99967574 0.00616661 0.00753628 0.00968808 0.01355957\n", + " 0.02258341 0.06743141 0.06593447 0.23049481 0.37750356 0.50072179\n", + " 0.5996194 0.67707715 0.93313131 0.9942732 0.99805551 0.99903282\n", + " 0.99942317 0.99961734 0.72190396 0.78684101 0.853656 0.91669352\n", + " 0.96742456 0.9961969 0.00579488 0.00579488 0.99966293 0.99966293\n", + " 0.07014401 0.24442291 0.39798307 0.52421253 0.62341756 0.6995908\n", + " 0.08562066 0.29440551 0.4684183 0.60117718 0.69788907 0.76731313\n", + " 0.10980719 0.36820194 0.56319871 0.69519142 0.78151879 0.83840459\n", + " 0.15281345 0.48480743 0.69026239 0.80432664 0.86864949 0.90694654\n", + " 0.24943532 0.67838632 0.84636544 0.9141376 0.94608152 0.96325609\n", + " 0.61041805 0.94029264 0.97858921 0.98919227 0.99351563 0.99568553]\n", + "DEBUG:root:optics_fp: sphi: [-0.99998587 -0.99998093 -0.99997285 -0.99995831 -0.99992796 -0.99984669\n", + " -0.99947675 -0.97808354 -0.99998587 -0.98970577 -0.96198477 -0.92093145\n", + " -0.87158484 -0.81855268 -0.76530723 -0.7140899 -0.97808354 -0.17016839\n", + " -0.08762197 -0.05890603 -0.04435211 -0.03556139 -0.02967765 -0.02546394\n", + " -0.7140899 -0.65976656 -0.59269916 -0.51057194 -0.41166757 -0.29578258\n", + " -0.16525108 -0.02546394 -0.99998099 -0.9999716 -0.99995307 -0.99990806\n", + " -0.99974496 -0.99772391 -0.99782396 -0.97307356 -0.92600813 -0.86560828\n", + " -0.80028531 -0.73591205 -0.35953576 -0.10686813 -0.06233133 -0.04397062\n", + " -0.03396069 -0.02766174 -0.69199326 -0.61715575 -0.52083725 -0.39959102\n", + " -0.25315949 -0.08713059 -0.99998321 -0.99998321 -0.02596193 -0.02596193\n", + " -0.99753688 -0.96966873 -0.91739276 -0.85158747 -0.78188909 -0.71454371\n", + " -0.99632781 -0.95568059 -0.88350682 -0.79911576 -0.71620587 -0.64127261\n", + " -0.99395291 -0.92974584 -0.8263215 -0.71882466 -0.6238817 -0.54504838\n", + " -0.98825505 -0.87462092 -0.72355914 -0.59418739 -0.49542716 -0.42124573\n", + " -0.96839146 -0.73470538 -0.53260261 -0.40540407 -0.32392864 -0.26858462\n", + " -0.79207942 -0.34036707 -0.20582312 -0.14662418 -0.11369565 -0.09279187]\n", + "DEBUG:root:optics_fp: xyfp: [[ -0.167405 31.491388 ]\n", + " [ -0.167405 27.10495943]\n", + " [ -0.167405 22.71853086]\n", + " [ -0.167405 18.33210229]\n", + " [ -0.167405 13.94567372]\n", + " [ -0.167405 9.55924515]\n", + " [ -0.167405 5.17281657]\n", + " [ -0.167405 0.786388 ]\n", + " [ -0.167405 31.491388 ]\n", + " [ -4.55383357 31.491388 ]\n", + " [ -8.94026214 31.491388 ]\n", + " [-13.32669071 31.491388 ]\n", + " [-17.71311928 31.491388 ]\n", + " [-22.09954786 31.491388 ]\n", + " [-26.48597643 31.491388 ]\n", + " [-30.872405 31.491388 ]\n", + " [ -0.167405 0.786388 ]\n", + " [ -4.55383357 0.786388 ]\n", + " [ -8.94026214 0.786388 ]\n", + " [-13.32669071 0.786388 ]\n", + " [-17.71311929 0.786388 ]\n", + " [-22.09954786 0.786388 ]\n", + " [-26.48597643 0.786388 ]\n", + " [-30.872405 0.786388 ]\n", + " [-30.872405 31.491388 ]\n", + " [-30.872405 27.10495943]\n", + " [-30.872405 22.71853086]\n", + " [-30.872405 18.33210229]\n", + " [-30.872405 13.94567371]\n", + " [-30.872405 9.55924514]\n", + " [-30.872405 5.17281657]\n", + " [-30.872405 0.786388 ]\n", + " [ -0.182405 29.578888 ]\n", + " [ -0.182405 24.202888 ]\n", + " [ -0.182405 18.826888 ]\n", + " [ -0.182405 13.450888 ]\n", + " [ -0.182405 8.074888 ]\n", + " [ -0.182405 2.698888 ]\n", + " [ -2.079905 31.476388 ]\n", + " [ -7.455905 31.476388 ]\n", + " [-12.831905 31.476388 ]\n", + " [-18.207905 31.476388 ]\n", + " [-23.583905 31.476388 ]\n", + " [-28.959905 31.476388 ]\n", + " [ -2.079905 0.801388 ]\n", + " [ -7.455905 0.801388 ]\n", + " [-12.831905 0.801388 ]\n", + " [-18.207905 0.801388 ]\n", + " [-23.583905 0.801388 ]\n", + " [-28.959905 0.801388 ]\n", + " [-30.857405 29.578888 ]\n", + " [-30.857405 24.202888 ]\n", + " [-30.857405 18.826888 ]\n", + " [-30.857405 13.450888 ]\n", + " [-30.857405 8.074888 ]\n", + " [-30.857405 2.698888 ]\n", + " [ -0.182405 31.476388 ]\n", + " [ -0.182405 31.476388 ]\n", + " [-30.857405 0.801388 ]\n", + " [-30.857405 0.801388 ]\n", + " [ -2.079905 29.578888 ]\n", + " [ -7.455905 29.578888 ]\n", + " [-12.831905 29.578888 ]\n", + " [-18.207905 29.578888 ]\n", + " [-23.583905 29.578888 ]\n", + " [-28.959905 29.578888 ]\n", + " [ -2.079905 24.202888 ]\n", + " [ -7.455905 24.202888 ]\n", + " [-12.831905 24.202888 ]\n", + " [-18.207905 24.202888 ]\n", + " [-23.583905 24.202888 ]\n", + " [-28.959905 24.202888 ]\n", + " [ -2.079905 18.826888 ]\n", + " [ -7.455905 18.826888 ]\n", + " [-12.831905 18.826888 ]\n", + " [-18.207905 18.826888 ]\n", + " [-23.583905 18.826888 ]\n", + " [-28.959905 18.826888 ]\n", + " [ -2.079905 13.450888 ]\n", + " [ -7.455905 13.450888 ]\n", + " [-12.831905 13.450888 ]\n", + " [-18.207905 13.450888 ]\n", + " [-23.583905 13.450888 ]\n", + " [-28.959905 13.450888 ]\n", + " [ -2.079905 8.074888 ]\n", + " [ -7.455905 8.074888 ]\n", + " [-12.831905 8.074888 ]\n", + " [-18.20790499 8.074888 ]\n", + " [-23.583905 8.074888 ]\n", + " [-28.959905 8.074888 ]\n", + " [ -2.079905 2.698888 ]\n", + " [ -7.455905 2.698888 ]\n", + " [-12.831905 2.698888 ]\n", + " [-18.207905 2.698888 ]\n", + " [-23.583905 2.698888 ]\n", + " [-28.959905 2.698888 ]]\n", + "DEBUG:root:optics_fp: xyfp shape: (96, 2)\n", + "DEBUG:root:make_az_asym: xyp: [[ -0.167405 31.491388 ]\n", + " [ -0.167405 27.10495943]\n", + " [ -0.167405 22.71853086]\n", + " [ -0.167405 18.33210229]\n", + " [ -0.167405 13.94567372]\n", + " [ -0.167405 9.55924515]\n", + " [ -0.167405 5.17281657]\n", + " [ -0.167405 0.786388 ]\n", + " [ -0.167405 31.491388 ]\n", + " [ -4.55383357 31.491388 ]\n", + " [ -8.94026214 31.491388 ]\n", + " [-13.32669071 31.491388 ]\n", + " [-17.71311928 31.491388 ]\n", + " [-22.09954786 31.491388 ]\n", + " [-26.48597643 31.491388 ]\n", + " [-30.872405 31.491388 ]\n", + " [ -0.167405 0.786388 ]\n", + " [ -4.55383357 0.786388 ]\n", + " [ -8.94026214 0.786388 ]\n", + " [-13.32669071 0.786388 ]\n", + " [-17.71311929 0.786388 ]\n", + " [-22.09954786 0.786388 ]\n", + " [-26.48597643 0.786388 ]\n", + " [-30.872405 0.786388 ]\n", + " [-30.872405 31.491388 ]\n", + " [-30.872405 27.10495943]\n", + " [-30.872405 22.71853086]\n", + " [-30.872405 18.33210229]\n", + " [-30.872405 13.94567371]\n", + " [-30.872405 9.55924514]\n", + " [-30.872405 5.17281657]\n", + " [-30.872405 0.786388 ]\n", + " [ -0.182405 29.578888 ]\n", + " [ -0.182405 24.202888 ]\n", + " [ -0.182405 18.826888 ]\n", + " [ -0.182405 13.450888 ]\n", + " [ -0.182405 8.074888 ]\n", + " [ -0.182405 2.698888 ]\n", + " [ -2.079905 31.476388 ]\n", + " [ -7.455905 31.476388 ]\n", + " [-12.831905 31.476388 ]\n", + " [-18.207905 31.476388 ]\n", + " [-23.583905 31.476388 ]\n", + " [-28.959905 31.476388 ]\n", + " [ -2.079905 0.801388 ]\n", + " [ -7.455905 0.801388 ]\n", + " [-12.831905 0.801388 ]\n", + " [-18.207905 0.801388 ]\n", + " [-23.583905 0.801388 ]\n", + " [-28.959905 0.801388 ]\n", + " [-30.857405 29.578888 ]\n", + " [-30.857405 24.202888 ]\n", + " [-30.857405 18.826888 ]\n", + " [-30.857405 13.450888 ]\n", + " [-30.857405 8.074888 ]\n", + " [-30.857405 2.698888 ]\n", + " [ -0.182405 31.476388 ]\n", + " [ -0.182405 31.476388 ]\n", + " [-30.857405 0.801388 ]\n", + " [-30.857405 0.801388 ]\n", + " [ -2.079905 29.578888 ]\n", + " [ -7.455905 29.578888 ]\n", + " [-12.831905 29.578888 ]\n", + " [-18.207905 29.578888 ]\n", + " [-23.583905 29.578888 ]\n", + " [-28.959905 29.578888 ]\n", + " [ -2.079905 24.202888 ]\n", + " [ -7.455905 24.202888 ]\n", + " [-12.831905 24.202888 ]\n", + " [-18.207905 24.202888 ]\n", + " [-23.583905 24.202888 ]\n", + " [-28.959905 24.202888 ]\n", + " [ -2.079905 18.826888 ]\n", + " [ -7.455905 18.826888 ]\n", + " [-12.831905 18.826888 ]\n", + " [-18.207905 18.826888 ]\n", + " [-23.583905 18.826888 ]\n", + " [-28.959905 18.826888 ]\n", + " [ -2.079905 13.450888 ]\n", + " [ -7.455905 13.450888 ]\n", + " [-12.831905 13.450888 ]\n", + " [-18.207905 13.450888 ]\n", + " [-23.583905 13.450888 ]\n", + " [-28.959905 13.450888 ]\n", + " [ -2.079905 8.074888 ]\n", + " [ -7.455905 8.074888 ]\n", + " [-12.831905 8.074888 ]\n", + " [-18.20790499 8.074888 ]\n", + " [-23.583905 8.074888 ]\n", + " [-28.959905 8.074888 ]\n", + " [ -2.079905 2.698888 ]\n", + " [ -7.455905 2.698888 ]\n", + " [-12.831905 2.698888 ]\n", + " [-18.207905 2.698888 ]\n", + " [-23.583905 2.698888 ]\n", + " [-28.959905 2.698888 ]]\n", + "DEBUG:root:make_az_asym: xyp: shape: (96, 2)\n", + "DEBUG:root:radec2pix: xyfp: [[ -0.167405 31.491388 ]\n", + " [ -0.167405 27.10495943]\n", + " [ -0.167405 22.71853086]\n", + " [ -0.167405 18.33210229]\n", + " [ -0.167405 13.94567372]\n", + " [ -0.167405 9.55924515]\n", + " [ -0.167405 5.17281657]\n", + " [ -0.167405 0.786388 ]\n", + " [ -0.167405 31.491388 ]\n", + " [ -4.55383357 31.491388 ]\n", + " [ -8.94026214 31.491388 ]\n", + " [-13.32669071 31.491388 ]\n", + " [-17.71311928 31.491388 ]\n", + " [-22.09954786 31.491388 ]\n", + " [-26.48597643 31.491388 ]\n", + " [-30.872405 31.491388 ]\n", + " [ -0.167405 0.786388 ]\n", + " [ -4.55383357 0.786388 ]\n", + " [ -8.94026214 0.786388 ]\n", + " [-13.32669071 0.786388 ]\n", + " [-17.71311929 0.786388 ]\n", + " [-22.09954786 0.786388 ]\n", + " [-26.48597643 0.786388 ]\n", + " [-30.872405 0.786388 ]\n", + " [-30.872405 31.491388 ]\n", + " [-30.872405 27.10495943]\n", + " [-30.872405 22.71853086]\n", + " [-30.872405 18.33210229]\n", + " [-30.872405 13.94567371]\n", + " [-30.872405 9.55924514]\n", + " [-30.872405 5.17281657]\n", + " [-30.872405 0.786388 ]\n", + " [ -0.182405 29.578888 ]\n", + " [ -0.182405 24.202888 ]\n", + " [ -0.182405 18.826888 ]\n", + " [ -0.182405 13.450888 ]\n", + " [ -0.182405 8.074888 ]\n", + " [ -0.182405 2.698888 ]\n", + " [ -2.079905 31.476388 ]\n", + " [ -7.455905 31.476388 ]\n", + " [-12.831905 31.476388 ]\n", + " [-18.207905 31.476388 ]\n", + " [-23.583905 31.476388 ]\n", + " [-28.959905 31.476388 ]\n", + " [ -2.079905 0.801388 ]\n", + " [ -7.455905 0.801388 ]\n", + " [-12.831905 0.801388 ]\n", + " [-18.207905 0.801388 ]\n", + " [-23.583905 0.801388 ]\n", + " [-28.959905 0.801388 ]\n", + " [-30.857405 29.578888 ]\n", + " [-30.857405 24.202888 ]\n", + " [-30.857405 18.826888 ]\n", + " [-30.857405 13.450888 ]\n", + " [-30.857405 8.074888 ]\n", + " [-30.857405 2.698888 ]\n", + " [ -0.182405 31.476388 ]\n", + " [ -0.182405 31.476388 ]\n", + " [-30.857405 0.801388 ]\n", + " [-30.857405 0.801388 ]\n", + " [ -2.079905 29.578888 ]\n", + " [ -7.455905 29.578888 ]\n", + " [-12.831905 29.578888 ]\n", + " [-18.207905 29.578888 ]\n", + " [-23.583905 29.578888 ]\n", + " [-28.959905 29.578888 ]\n", + " [ -2.079905 24.202888 ]\n", + " [ -7.455905 24.202888 ]\n", + " [-12.831905 24.202888 ]\n", + " [-18.207905 24.202888 ]\n", + " [-23.583905 24.202888 ]\n", + " [-28.959905 24.202888 ]\n", + " [ -2.079905 18.826888 ]\n", + " [ -7.455905 18.826888 ]\n", + " [-12.831905 18.826888 ]\n", + " [-18.207905 18.826888 ]\n", + " [-23.583905 18.826888 ]\n", + " [-28.959905 18.826888 ]\n", + " [ -2.079905 13.450888 ]\n", + " [ -7.455905 13.450888 ]\n", + " [-12.831905 13.450888 ]\n", + " [-18.207905 13.450888 ]\n", + " [-23.583905 13.450888 ]\n", + " [-28.959905 13.450888 ]\n", + " [ -2.079905 8.074888 ]\n", + " [ -7.455905 8.074888 ]\n", + " [-12.831905 8.074888 ]\n", + " [-18.20790499 8.074888 ]\n", + " [-23.583905 8.074888 ]\n", + " [-28.959905 8.074888 ]\n", + " [ -2.079905 2.698888 ]\n", + " [ -7.455905 2.698888 ]\n", + " [-12.831905 2.698888 ]\n", + " [-18.207905 2.698888 ]\n", + " [-23.583905 2.698888 ]\n", + " [-28.959905 2.698888 ]]\n", + "DEBUG:root:radec2pix: xyfp Shape: (96, 2)\n", + "DEBUG:root:mm_to_pix: fitpx: [[0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]]\n", + "DEBUG:root:mm_to_pix: fitpx.shape: (96, 2)\n", + "DEBUG:root:radec2pix: curVec: [[-0.25699938 0.33933602 -0.904877 ]\n", + " [-0.27281166 0.31772124 -0.90808976]\n", + " [-0.28863003 0.29533352 -0.91075289]\n", + " [-0.30438674 0.27226596 -0.91280883]\n", + " [-0.3200156 0.24861052 -0.91421159]\n", + " [-0.33545176 0.22445932 -0.9149263 ]\n", + " [-0.35063191 0.1999057 -0.91492894]\n", + " [-0.36549465 0.17504471 -0.91420622]\n", + " [-0.25699938 0.33933602 -0.904877 ]\n", + " [-0.23478825 0.32800135 -0.9150353 ]\n", + " [-0.21200256 0.31604316 -0.92475491]\n", + " [-0.18872348 0.30351445 -0.93394991]\n", + " [-0.16503401 0.29046684 -0.94254591]\n", + " [-0.14101977 0.27695173 -0.95047944]\n", + " [-0.11676931 0.26302129 -0.95769762]\n", + " [-0.09237404 0.24872918 -0.96415809]\n", + " [-0.36549465 0.17504471 -0.91420622]\n", + " [-0.34351478 0.16173843 -0.92511528]\n", + " [-0.32081022 0.14802637 -0.93550468]\n", + " [-0.29745639 0.13395648 -0.94529115]\n", + " [-0.2735324 0.11957839 -0.95440088]\n", + " [-0.24912223 0.10494408 -0.96276937]\n", + " [-0.22431515 0.09010817 -0.97034181]\n", + " [-0.19920524 0.07512765 -0.97707375]\n", + " [-0.09237404 0.24872918 -0.96415809]\n", + " [-0.10733501 0.22543574 -0.96832738]\n", + " [-0.12250337 0.20149177 -0.97179936]\n", + " [-0.13781429 0.17698311 -0.97451742]\n", + " [-0.15320367 0.15199825 -0.97643493]\n", + " [-0.16860762 0.12662936 -0.97751546]\n", + " [-0.18396247 0.10097263 -0.97773326]\n", + " [-0.19920524 0.07512765 -0.97707375]\n", + " [-0.26381348 0.32997482 -0.90637689]\n", + " [-0.28320564 0.3029506 -0.90995357]\n", + " [-0.30253958 0.27485818 -0.91264603]\n", + " [-0.32169281 0.24586722 -0.91436483]\n", + " [-0.34054597 0.21614746 -0.91504575]\n", + " [-0.35898327 0.18587144 -0.91464901]\n", + " [-0.24744494 0.33440119 -0.90936618]\n", + " [-0.21982608 0.32008188 -0.92153355]\n", + " [-0.19142458 0.30487903 -0.9329552 ]\n", + " [-0.16239243 0.28888819 -0.94348944]\n", + " [-0.13288728 0.27220406 -0.95301937]\n", + " [-0.10307337 0.25492333 -0.96145201]\n", + " [-0.35595477 0.16938184 -0.91902448]\n", + " [-0.328519 0.15279564 -0.9320562 ]\n", + " [-0.30006944 0.13564731 -0.94422357]\n", + " [-0.27075009 0.11802742 -0.95538679]\n", + " [-0.24071563 0.10003174 -0.96542718]\n", + " [-0.21013243 0.08176181 -0.97424811]\n", + " [-0.09895125 0.23870823 -0.96603676]\n", + " [-0.11743594 0.20971207 -0.97068514]\n", + " [-0.13616744 0.17982379 -0.97422884]\n", + " [-0.15502748 0.14920509 -0.97657786]\n", + " [-0.17389845 0.11802572 -0.97766521]\n", + " [-0.19266336 0.08646419 -0.97744809]\n", + " [-0.25697848 0.33922589 -0.90492423]\n", + " [-0.25697848 0.33922589 -0.90492423]\n", + " [-0.19923965 0.07526764 -0.97705596]\n", + " [-0.19923965 0.07526764 -0.97705596]\n", + " [-0.25427058 0.32508501 -0.91086015]\n", + " [-0.226615 0.31059626 -0.92313358]\n", + " [-0.19816106 0.295245 -0.9346457 ]\n", + " [-0.16906027 0.27912543 -0.94525532]\n", + " [-0.13947024 0.2623314 -0.95484569]\n", + " [-0.10955554 0.24495925 -0.9633237 ]\n", + " [-0.27364829 0.2978853 -0.91453866]\n", + " [-0.24592321 0.28294069 -0.92707407]\n", + " [-0.21735585 0.26719144 -0.93881051]\n", + " [-0.18809628 0.25072852 -0.94960781]\n", + " [-0.15830194 0.23364411 -0.95934922]\n", + " [-0.12813838 0.21603428 -0.96794098]\n", + " [-0.29298561 0.26962932 -0.917311 ]\n", + " [-0.26524241 0.25426085 -0.93005262]\n", + " [-0.23661414 0.23814366 -0.94196674]\n", + " [-0.20724941 0.22136679 -0.95291365]\n", + " [-0.17730533 0.20402192 -0.96277613]\n", + " [-0.1469483 0.18620572 -0.97145953]\n", + " [-0.31215991 0.24048532 -0.91908814]\n", + " [-0.28444977 0.22472153 -0.93198099]\n", + " [-0.25581342 0.20826411 -0.94402625]\n", + " [-0.22639795 0.19120145 -0.95508427]\n", + " [-0.19636 0.17362577 -0.96503722]\n", + " [-0.16586648 0.15563496 -0.97378954]\n", + " [-0.33105149 0.21062228 -0.91980605]\n", + " [-0.3034248 0.19449026 -0.93279522]\n", + " [-0.27483291 0.17771988 -0.94492461]\n", + " [-0.24542147 0.16039996 -0.95605447]\n", + " [-0.2153464 0.142624 -0.96606642]\n", + " [-0.18477471 0.1244914 -0.9748642 ]\n", + " [-0.34954403 0.18021266 -0.91942502]\n", + " [-0.32204997 0.16373989 -0.9324554 ]\n", + " [-0.2935543 0.14668489 -0.94462131]\n", + " [-0.2642014 0.12913771 -0.95578296]\n", + " [-0.23414631 0.11119346 -0.96582168]\n", + " [-0.20355562 0.09295317 -0.97464087]]\n", + "DEBUG:root:radec2pix: curVec Shape: (96, 3)\n", + "DEBUG:root:radec2pix: xyfp: [[ -0.167405 31.491388 ]\n", + " [ -0.167405 27.10495943]\n", + " [ -0.167405 22.71853086]\n", + " [ -0.167405 18.33210229]\n", + " [ -0.167405 13.94567372]\n", + " [ -0.167405 9.55924515]\n", + " [ -0.167405 5.17281657]\n", + " [ -0.167405 0.786388 ]\n", + " [ -0.167405 31.491388 ]\n", + " [ -4.55383357 31.491388 ]\n", + " [ -8.94026214 31.491388 ]\n", + " [-13.32669071 31.491388 ]\n", + " [-17.71311928 31.491388 ]\n", + " [-22.09954786 31.491388 ]\n", + " [-26.48597643 31.491388 ]\n", + " [-30.872405 31.491388 ]\n", + " [ -0.167405 0.786388 ]\n", + " [ -4.55383357 0.786388 ]\n", + " [ -8.94026214 0.786388 ]\n", + " [-13.32669071 0.786388 ]\n", + " [-17.71311929 0.786388 ]\n", + " [-22.09954786 0.786388 ]\n", + " [-26.48597643 0.786388 ]\n", + " [-30.872405 0.786388 ]\n", + " [-30.872405 31.491388 ]\n", + " [-30.872405 27.10495943]\n", + " [-30.872405 22.71853086]\n", + " [-30.872405 18.33210229]\n", + " [-30.872405 13.94567371]\n", + " [-30.872405 9.55924514]\n", + " [-30.872405 5.17281657]\n", + " [-30.872405 0.786388 ]\n", + " [ -0.182405 29.578888 ]\n", + " [ -0.182405 24.202888 ]\n", + " [ -0.182405 18.826888 ]\n", + " [ -0.182405 13.450888 ]\n", + " [ -0.182405 8.074888 ]\n", + " [ -0.182405 2.698888 ]\n", + " [ -2.079905 31.476388 ]\n", + " [ -7.455905 31.476388 ]\n", + " [-12.831905 31.476388 ]\n", + " [-18.207905 31.476388 ]\n", + " [-23.583905 31.476388 ]\n", + " [-28.959905 31.476388 ]\n", + " [ -2.079905 0.801388 ]\n", + " [ -7.455905 0.801388 ]\n", + " [-12.831905 0.801388 ]\n", + " [-18.207905 0.801388 ]\n", + " [-23.583905 0.801388 ]\n", + " [-28.959905 0.801388 ]\n", + " [-30.857405 29.578888 ]\n", + " [-30.857405 24.202888 ]\n", + " [-30.857405 18.826888 ]\n", + " [-30.857405 13.450888 ]\n", + " [-30.857405 8.074888 ]\n", + " [-30.857405 2.698888 ]\n", + " [ -0.182405 31.476388 ]\n", + " [ -0.182405 31.476388 ]\n", + " [-30.857405 0.801388 ]\n", + " [-30.857405 0.801388 ]\n", + " [ -2.079905 29.578888 ]\n", + " [ -7.455905 29.578888 ]\n", + " [-12.831905 29.578888 ]\n", + " [-18.207905 29.578888 ]\n", + " [-23.583905 29.578888 ]\n", + " [-28.959905 29.578888 ]\n", + " [ -2.079905 24.202888 ]\n", + " [ -7.455905 24.202888 ]\n", + " [-12.831905 24.202888 ]\n", + " [-18.207905 24.202888 ]\n", + " [-23.583905 24.202888 ]\n", + " [-28.959905 24.202888 ]\n", + " [ -2.079905 18.826888 ]\n", + " [ -7.455905 18.826888 ]\n", + " [-12.831905 18.826888 ]\n", + " [-18.207905 18.826888 ]\n", + " [-23.583905 18.826888 ]\n", + " [-28.959905 18.826888 ]\n", + " [ -2.079905 13.450888 ]\n", + " [ -7.455905 13.450888 ]\n", + " [-12.831905 13.450888 ]\n", + " [-18.207905 13.450888 ]\n", + " [-23.583905 13.450888 ]\n", + " [-28.959905 13.450888 ]\n", + " [ -2.079905 8.074888 ]\n", + " [ -7.455905 8.074888 ]\n", + " [-12.831905 8.074888 ]\n", + " [-18.20790499 8.074888 ]\n", + " [-23.583905 8.074888 ]\n", + " [-28.959905 8.074888 ]\n", + " [ -2.079905 2.698888 ]\n", + " [ -7.455905 2.698888 ]\n", + " [-12.831905 2.698888 ]\n", + " [-18.207905 2.698888 ]\n", + " [-23.583905 2.698888 ]\n", + " [-28.959905 2.698888 ]]\n", + "DEBUG:root:radec2pix: camVec: [[0.20581047 0.20764708 0.20921111 0.21050368 0.21152432 0.2122716\n", + " 0.21274377 0.21293946 0.20581047 0.17940008 0.15228099 0.12456525\n", + " 0.09636347 0.06778617 0.03894463 0.00995116 0.21293946 0.18558556\n", + " 0.15752187 0.12885256 0.09968382 0.07012532 0.04029051 0.01029607\n", + " 0.00995116 0.01003858 0.01011374 0.01017639 0.01022623 0.01026295\n", + " 0.01028629 0.01029607 0.20655553 0.20862193 0.21028039 0.21153069\n", + " 0.21237025 0.212796 0.1943962 0.16153559 0.12772204 0.0931597\n", + " 0.05805212 0.02260459 0.2011068 0.16709142 0.1321133 0.09636698\n", + " 0.06005439 0.02338579 0.01009044 0.01019035 0.01027142 0.0103331\n", + " 0.01037483 0.01039617 0.20572824 0.20572824 0.01039877 0.01039877\n", + " 0.19517474 0.1621771 0.12822694 0.09352723 0.05828102 0.02269376\n", + " 0.19712067 0.1637837 0.12949375 0.09445078 0.05885684 0.0229182\n", + " 0.19868404 0.16507817 0.13051704 0.09519827 0.05932353 0.02310025\n", + " 0.19986372 0.16605732 0.13129265 0.09576573 0.05967819 0.02323871\n", + " 0.20065641 0.16671646 0.13181555 0.09614872 0.05991775 0.0233323\n", + " 0.20105858 0.16705125 0.13208139 0.09634357 0.06003972 0.02338002]\n", + " [0.20196806 0.17549093 0.14832034 0.12056829 0.0923455 0.06376263\n", + " 0.0349311 0.00596325 0.20196806 0.20380697 0.20537849 0.20668384\n", + " 0.20772258 0.20849323 0.20899395 0.20922323 0.00596325 0.00601646\n", + " 0.00606233 0.00610071 0.00613144 0.00615431 0.00616917 0.00617591\n", + " 0.20922323 0.18176716 0.15361557 0.12487279 0.09564544 0.0660437\n", + " 0.03618151 0.00617591 0.19052281 0.15759064 0.12372836 0.08914025\n", + " 0.05403012 0.01860347 0.20271324 0.2047859 0.20645854 0.207731\n", + " 0.20860063 0.20906415 0.00608691 0.00614821 0.00619816 0.00623643\n", + " 0.00626269 0.00627666 0.19734414 0.16321317 0.12814101 0.0923229\n", + " 0.05596168 0.01926848 0.20188558 0.20188558 0.00627861 0.00627861\n", + " 0.19130075 0.19325024 0.19482509 0.19602426 0.19684438 0.19728171\n", + " 0.15822879 0.1598311 0.16112922 0.16212009 0.16279899 0.16316141\n", + " 0.12422708 0.12548158 0.12650047 0.12727979 0.12781451 0.12810021\n", + " 0.08949878 0.09040196 0.09113695 0.09169995 0.09208666 0.09229337\n", + " 0.05424725 0.05479478 0.05524091 0.05558298 0.05581806 0.05594375\n", + " 0.01867818 0.01886665 0.0190203 0.01913813 0.01921909 0.01926233]\n", + " [0.95752334 0.96233343 0.96655667 0.97012962 0.9730004 0.97512825\n", + " 0.97648344 0.9770472 0.95752334 0.96243355 0.96676273 0.97044592\n", + " 0.97342972 0.97567188 0.97714116 0.97781727 0.9770472 0.98260969\n", + " 0.98749689 0.991645 0.99500027 0.99751921 0.99916896 0.99992792\n", + " 0.97781727 0.98329036 0.98807893 0.99212057 0.99536294 0.99776395\n", + " 0.99929229 0.99992792 0.95970614 0.96521608 0.9697801 0.97329789\n", + " 0.97569443 0.97691953 0.95974864 0.96538541 0.97008348 0.97373975\n", + " 0.97627646 0.97764064 0.97955041 0.98592224 0.99121524 0.99532633\n", + " 0.99817546 0.99970681 0.98028234 0.9865382 0.99170277 0.9956755\n", + " 0.99837901 0.99976029 0.95755841 0.95755841 0.99992622 0.99992622\n", + " 0.96193079 0.96765331 0.9724202 0.97612865 0.97870098 0.98008414\n", + " 0.96752627 0.97346234 0.97840112 0.98224036 0.98490221 0.98633316\n", + " 0.97215857 0.97826559 0.98334273 0.98728777 0.99002231 0.99149217\n", + " 0.97572766 0.98196357 0.98714553 0.99117105 0.99396105 0.99546064\n", + " 0.9781586 0.98448116 0.98973385 0.99381384 0.99664146 0.99816126\n", + " 0.97940113 0.98576768 0.99105637 0.99516413 0.99801095 0.99954106]]\n", + "DEBUG:root:radec2pix: camVec Shape: (3, 96)\n", + "DEBUG:root:radec2pix: ccdpx: [[-4.45000000e+01 -4.99999838e-01]\n", + " [-4.45000000e+01 2.91928571e+02]\n", + " [-4.45000000e+01 5.84357142e+02]\n", + " [-4.45000000e+01 8.76785714e+02]\n", + " [-4.45000000e+01 1.16921429e+03]\n", + " [-4.45000000e+01 1.46164286e+03]\n", + " [-4.45000000e+01 1.75407143e+03]\n", + " [-4.45000001e+01 2.04650000e+03]\n", + " [-4.45000000e+01 -4.99999838e-01]\n", + " [ 2.47928571e+02 -5.00000127e-01]\n", + " [ 5.40357143e+02 -4.99999855e-01]\n", + " [ 8.32785714e+02 -4.99999742e-01]\n", + " [ 1.12521429e+03 -4.99999752e-01]\n", + " [ 1.41764286e+03 -5.00000255e-01]\n", + " [ 1.71007143e+03 -4.99999843e-01]\n", + " [ 2.00250000e+03 -5.00000108e-01]\n", + " [-4.45000001e+01 2.04650000e+03]\n", + " [ 2.47928572e+02 2.04650000e+03]\n", + " [ 5.40357143e+02 2.04650000e+03]\n", + " [ 8.32785714e+02 2.04650000e+03]\n", + " [ 1.12521429e+03 2.04650000e+03]\n", + " [ 1.41764286e+03 2.04650000e+03]\n", + " [ 1.71007143e+03 2.04650000e+03]\n", + " [ 2.00250000e+03 2.04650000e+03]\n", + " [ 2.00250000e+03 -5.00000108e-01]\n", + " [ 2.00250000e+03 2.91928571e+02]\n", + " [ 2.00250000e+03 5.84357143e+02]\n", + " [ 2.00250000e+03 8.76785714e+02]\n", + " [ 2.00250000e+03 1.16921429e+03]\n", + " [ 2.00250000e+03 1.46164286e+03]\n", + " [ 2.00250000e+03 1.75407143e+03]\n", + " [ 2.00250000e+03 2.04650000e+03]\n", + " [-4.35000000e+01 1.27000000e+02]\n", + " [-4.35000000e+01 4.85400000e+02]\n", + " [-4.35000000e+01 8.43800000e+02]\n", + " [-4.35000000e+01 1.20220000e+03]\n", + " [-4.35000000e+01 1.56060000e+03]\n", + " [-4.35000000e+01 1.91900000e+03]\n", + " [ 8.30000000e+01 5.00000282e-01]\n", + " [ 4.41400000e+02 4.99999845e-01]\n", + " [ 7.99800000e+02 4.99999800e-01]\n", + " [ 1.15820000e+03 4.99999731e-01]\n", + " [ 1.51660000e+03 5.00000238e-01]\n", + " [ 1.87500000e+03 4.99999813e-01]\n", + " [ 8.30000000e+01 2.04550000e+03]\n", + " [ 4.41400000e+02 2.04550000e+03]\n", + " [ 7.99800000e+02 2.04550000e+03]\n", + " [ 1.15820000e+03 2.04550000e+03]\n", + " [ 1.51660000e+03 2.04550000e+03]\n", + " [ 1.87500000e+03 2.04550000e+03]\n", + " [ 2.00150000e+03 1.27000000e+02]\n", + " [ 2.00150000e+03 4.85400000e+02]\n", + " [ 2.00150000e+03 8.43800000e+02]\n", + " [ 2.00150000e+03 1.20220000e+03]\n", + " [ 2.00150000e+03 1.56060000e+03]\n", + " [ 2.00150000e+03 1.91900000e+03]\n", + " [-4.35000000e+01 5.00000147e-01]\n", + " [-4.35000000e+01 5.00000147e-01]\n", + " [ 2.00150000e+03 2.04550000e+03]\n", + " [ 2.00150000e+03 2.04550000e+03]\n", + " [ 8.30000000e+01 1.27000000e+02]\n", + " [ 4.41400000e+02 1.27000000e+02]\n", + " [ 7.99800000e+02 1.27000000e+02]\n", + " [ 1.15820000e+03 1.27000000e+02]\n", + " [ 1.51660000e+03 1.27000000e+02]\n", + " [ 1.87500000e+03 1.27000000e+02]\n", + " [ 8.30000000e+01 4.85400000e+02]\n", + " [ 4.41400000e+02 4.85400000e+02]\n", + " [ 7.99800000e+02 4.85400000e+02]\n", + " [ 1.15820000e+03 4.85400000e+02]\n", + " [ 1.51660000e+03 4.85400000e+02]\n", + " [ 1.87500000e+03 4.85400000e+02]\n", + " [ 8.30000000e+01 8.43800000e+02]\n", + " [ 4.41400000e+02 8.43800000e+02]\n", + " [ 7.99800000e+02 8.43800000e+02]\n", + " [ 1.15820000e+03 8.43800000e+02]\n", + " [ 1.51660000e+03 8.43800000e+02]\n", + " [ 1.87500000e+03 8.43800000e+02]\n", + " [ 8.30000000e+01 1.20220000e+03]\n", + " [ 4.41400000e+02 1.20220000e+03]\n", + " [ 7.99800000e+02 1.20220000e+03]\n", + " [ 1.15820000e+03 1.20220000e+03]\n", + " [ 1.51660000e+03 1.20220000e+03]\n", + " [ 1.87500000e+03 1.20220000e+03]\n", + " [ 8.30000000e+01 1.56060000e+03]\n", + " [ 4.41400000e+02 1.56060000e+03]\n", + " [ 7.99800000e+02 1.56060000e+03]\n", + " [ 1.15820000e+03 1.56060000e+03]\n", + " [ 1.51660000e+03 1.56060000e+03]\n", + " [ 1.87500000e+03 1.56060000e+03]\n", + " [ 8.30000000e+01 1.91900000e+03]\n", + " [ 4.41400000e+02 1.91900000e+03]\n", + " [ 7.99800000e+02 1.91900000e+03]\n", + " [ 1.15820000e+03 1.91900000e+03]\n", + " [ 1.51660000e+03 1.91900000e+03]\n", + " [ 1.87500000e+03 1.91900000e+03]]\n", + "DEBUG:root:cartToSphere: vec: [[0.20581047 0.20196806 0.95752334]\n", + " [0.20764708 0.17549093 0.96233343]\n", + " [0.20921111 0.14832034 0.96655667]\n", + " [0.21050368 0.12056829 0.97012962]\n", + " [0.21152432 0.0923455 0.9730004 ]\n", + " [0.2122716 0.06376263 0.97512825]\n", + " [0.21274377 0.0349311 0.97648344]\n", + " [0.21293946 0.00596325 0.9770472 ]\n", + " [0.20581047 0.20196806 0.95752334]\n", + " [0.17940008 0.20380697 0.96243355]\n", + " [0.15228099 0.20537849 0.96676273]\n", + " [0.12456525 0.20668384 0.97044592]\n", + " [0.09636347 0.20772258 0.97342972]\n", + " [0.06778617 0.20849323 0.97567188]\n", + " [0.03894463 0.20899395 0.97714116]\n", + " [0.00995116 0.20922323 0.97781727]\n", + " [0.21293946 0.00596325 0.9770472 ]\n", + " [0.18558556 0.00601646 0.98260969]\n", + " [0.15752187 0.00606233 0.98749689]\n", + " [0.12885256 0.00610071 0.991645 ]\n", + " [0.09968382 0.00613144 0.99500027]\n", + " [0.07012532 0.00615431 0.99751921]\n", + " [0.04029051 0.00616917 0.99916896]\n", + " [0.01029607 0.00617591 0.99992792]\n", + " [0.00995116 0.20922323 0.97781727]\n", + " [0.01003858 0.18176716 0.98329036]\n", + " [0.01011374 0.15361557 0.98807893]\n", + " [0.01017639 0.12487279 0.99212057]\n", + " [0.01022623 0.09564544 0.99536294]\n", + " [0.01026295 0.0660437 0.99776395]\n", + " [0.01028629 0.03618151 0.99929229]\n", + " [0.01029607 0.00617591 0.99992792]\n", + " [0.20655553 0.19052281 0.95970614]\n", + " [0.20862193 0.15759064 0.96521608]\n", + " [0.21028039 0.12372836 0.9697801 ]\n", + " [0.21153069 0.08914025 0.97329789]\n", + " [0.21237025 0.05403012 0.97569443]\n", + " [0.212796 0.01860347 0.97691953]\n", + " [0.1943962 0.20271324 0.95974864]\n", + " [0.16153559 0.2047859 0.96538541]\n", + " [0.12772204 0.20645854 0.97008348]\n", + " [0.0931597 0.207731 0.97373975]\n", + " [0.05805212 0.20860063 0.97627646]\n", + " [0.02260459 0.20906415 0.97764064]\n", + " [0.2011068 0.00608691 0.97955041]\n", + " [0.16709142 0.00614821 0.98592224]\n", + " [0.1321133 0.00619816 0.99121524]\n", + " [0.09636698 0.00623643 0.99532633]\n", + " [0.06005439 0.00626269 0.99817546]\n", + " [0.02338579 0.00627666 0.99970681]\n", + " [0.01009044 0.19734414 0.98028234]\n", + " [0.01019035 0.16321317 0.9865382 ]\n", + " [0.01027142 0.12814101 0.99170277]\n", + " [0.0103331 0.0923229 0.9956755 ]\n", + " [0.01037483 0.05596168 0.99837901]\n", + " [0.01039617 0.01926848 0.99976029]\n", + " [0.20572824 0.20188558 0.95755841]\n", + " [0.20572824 0.20188558 0.95755841]\n", + " [0.01039877 0.00627861 0.99992622]\n", + " [0.01039877 0.00627861 0.99992622]\n", + " [0.19517474 0.19130075 0.96193079]\n", + " [0.1621771 0.19325024 0.96765331]\n", + " [0.12822694 0.19482509 0.9724202 ]\n", + " [0.09352723 0.19602426 0.97612865]\n", + " [0.05828102 0.19684438 0.97870098]\n", + " [0.02269376 0.19728171 0.98008414]\n", + " [0.19712067 0.15822879 0.96752627]\n", + " [0.1637837 0.1598311 0.97346234]\n", + " [0.12949375 0.16112922 0.97840112]\n", + " [0.09445078 0.16212009 0.98224036]\n", + " [0.05885684 0.16279899 0.98490221]\n", + " [0.0229182 0.16316141 0.98633316]\n", + " [0.19868404 0.12422708 0.97215857]\n", + " [0.16507817 0.12548158 0.97826559]\n", + " [0.13051704 0.12650047 0.98334273]\n", + " [0.09519827 0.12727979 0.98728777]\n", + " [0.05932353 0.12781451 0.99002231]\n", + " [0.02310025 0.12810021 0.99149217]\n", + " [0.19986372 0.08949878 0.97572766]\n", + " [0.16605732 0.09040196 0.98196357]\n", + " [0.13129265 0.09113695 0.98714553]\n", + " [0.09576573 0.09169995 0.99117105]\n", + " [0.05967819 0.09208666 0.99396105]\n", + " [0.02323871 0.09229337 0.99546064]\n", + " [0.20065641 0.05424725 0.9781586 ]\n", + " [0.16671646 0.05479478 0.98448116]\n", + " [0.13181555 0.05524091 0.98973385]\n", + " [0.09614872 0.05558298 0.99381384]\n", + " [0.05991775 0.05581806 0.99664146]\n", + " [0.0233323 0.05594375 0.99816126]\n", + " [0.20105858 0.01867818 0.97940113]\n", + " [0.16705125 0.01886665 0.98576768]\n", + " [0.13208139 0.0190203 0.99105637]\n", + " [0.09634357 0.01913813 0.99516413]\n", + " [0.06003972 0.01921909 0.99801095]\n", + " [0.02338002 0.01926233 0.99954106]]\n", + "DEBUG:root:radec2pix: lng: [44.46013111 40.20250222 35.33475619 29.80239704 23.58471193 16.71933815\n", + " 9.32438225 1.60411637 44.46013111 48.6443107 53.44435482 58.92326156\n", + " 65.11319638 71.98940835 79.44437917 87.27692771 1.60411637 1.85680988\n", + " 2.20397654 2.71072869 3.51976244 5.01551732 8.70535713 30.95664732\n", + " 87.27692771 86.8388988 86.23319877 85.34102995 83.89722589 81.1670885\n", + " 74.12971046 30.95664732 42.68783954 37.06698546 30.47243013 22.85083712\n", + " 14.27406075 4.99632239 46.19982373 51.73354216 58.25770295 65.84552409\n", + " 74.44848175 83.82899465 1.73364549 2.10727457 2.68608796 3.70275867\n", + " 5.95349638 15.02389602 87.07294759 86.42732935 85.41713359 83.61383424\n", + " 79.49708007 61.65124289 44.45987707 44.45987707 31.12292419 31.12292419\n", + " 44.42569213 49.99636441 56.64851063 64.49322462 73.50720842 83.43797919\n", + " 38.75401666 44.3002287 51.21241262 59.77502346 70.12351892 82.00435394\n", + " 32.01565774 37.23971088 44.10467708 53.20553354 65.10220937 79.77773784\n", + " 24.12278796 28.56396741 34.76649258 43.75755718 57.05411516 75.86717668\n", + " 15.12820823 18.19416817 22.73745459 30.03194111 42.97126995 67.36058422\n", + " 5.30749937 6.44364165 8.19450854 11.23524 17.75019872 39.48443023]\n", + "DEBUG:root:radec2pix: fitpx: [[2135.5 4155.49999984]\n", + " [2135.5 3863.07142868]\n", + " [2135.5 3570.64285754]\n", + " [2135.5 3278.21428588]\n", + " [2135.5 2985.78571458]\n", + " [2135.5 2693.35714314]\n", + " [2135.5 2400.92857131]\n", + " [2135.50000005 2108.49999975]\n", + " [2135.5 4155.49999984]\n", + " [1843.07142855 4155.50000013]\n", + " [1550.64285718 4155.49999985]\n", + " [1258.21428582 4155.49999974]\n", + " [ 965.78571443 4155.49999975]\n", + " [ 673.35714268 4155.50000026]\n", + " [ 380.92857156 4155.49999984]\n", + " [ 88.49999989 4155.50000011]\n", + " [2135.50000005 2108.49999975]\n", + " [1843.07142845 2108.50000002]\n", + " [1550.64285702 2108.50000001]\n", + " [1258.21428598 2108.49999998]\n", + " [ 965.78571394 2108.50000002]\n", + " [ 673.35714284 2108.5 ]\n", + " [ 380.92857156 2108.5 ]\n", + " [ 88.49999977 2108.50000001]\n", + " [ 88.49999989 4155.50000011]\n", + " [ 88.49999981 3863.07142874]\n", + " [ 88.49999988 3570.64285723]\n", + " [ 88.49999983 3278.21428582]\n", + " [ 88.5000001 2985.78571424]\n", + " [ 88.50000005 2693.35714284]\n", + " [ 88.49999995 2400.92857144]\n", + " [ 88.49999977 2108.50000001]\n", + " [2134.5 4028.00000026]\n", + " [2134.5 3669.59999996]\n", + " [2134.5 3311.20000006]\n", + " [2134.5 2952.80000018]\n", + " [2134.50000001 2594.39999977]\n", + " [2134.49999998 2236.00000029]\n", + " [2008.00000002 4154.49999972]\n", + " [1649.59999996 4154.50000015]\n", + " [1291.19999992 4154.5000002 ]\n", + " [ 932.79999984 4154.50000027]\n", + " [ 574.40000018 4154.49999976]\n", + " [ 215.99999983 4154.50000019]\n", + " [2007.99999997 2109.50000001]\n", + " [1649.60000009 2109.49999999]\n", + " [1291.20000024 2109.49999998]\n", + " [ 932.80000011 2109.5 ]\n", + " [ 574.40000007 2109.5 ]\n", + " [ 216.00000022 2109.49999999]\n", + " [ 89.50000011 4027.99999989]\n", + " [ 89.49999997 3669.60000003]\n", + " [ 89.49999978 3311.20000014]\n", + " [ 89.49999974 2952.80000012]\n", + " [ 89.49999998 2594.4 ]\n", + " [ 89.50000005 2236. ]\n", + " [2134.5 4154.49999985]\n", + " [2134.5 4154.49999985]\n", + " [ 89.49999982 2109.5 ]\n", + " [ 89.49999982 2109.5 ]\n", + " [2007.99999998 4028.00000026]\n", + " [1649.60000006 4027.99999978]\n", + " [1291.19999989 4028.00000025]\n", + " [ 932.8000001 4027.99999984]\n", + " [ 574.40000016 4027.9999998 ]\n", + " [ 215.99999996 4028.00000004]\n", + " [2007.99999998 3669.60000024]\n", + " [1649.59999998 3669.60000005]\n", + " [1291.20000009 3669.59999982]\n", + " [ 932.79999983 3669.60000022]\n", + " [ 574.39999986 3669.60000015]\n", + " [ 216.00000022 3669.59999982]\n", + " [2007.99999999 3311.20000008]\n", + " [1649.59999996 3311.2000001 ]\n", + " [1291.19999979 3311.20000031]\n", + " [ 932.80000004 3311.19999996]\n", + " [ 574.39999992 3311.20000007]\n", + " [ 216.00000024 3311.19999984]\n", + " [2008.00000001 2952.79999992]\n", + " [1649.6000001 2952.79999982]\n", + " [1291.20000006 2952.79999994]\n", + " [ 932.79999988 2952.80000009]\n", + " [ 574.39999983 2952.8000001 ]\n", + " [ 215.99999999 2952.8 ]\n", + " [2008.00000001 2594.39999996]\n", + " [1649.60000003 2594.39999997]\n", + " [1291.19999974 2594.40000016]\n", + " [ 932.80000041 2594.39999982]\n", + " [ 574.40000002 2594.39999999]\n", + " [ 215.99999998 2594.40000001]\n", + " [2008.00000001 2235.99999999]\n", + " [1649.59999976 2236.00000009]\n", + " [1291.19999986 2236.00000003]\n", + " [ 932.79999992 2236.00000001]\n", + " [ 574.39999976 2236.00000003]\n", + " [ 216.00000019 2235.99999998]]\n", + "DEBUG:root:fitpix2pix: ccdpx: shape: (96, 2)\n", + "DEBUG:root:fitpix2pix: visCut: True\n", + "DEBUG:root:radec2pix: lat: [73.24045629 74.22430856 75.14029247 75.96071497 76.65562135 77.19454225\n", + " 77.54971408 77.7004367 73.24045629 74.24542243 75.18640058 76.03561625\n", + " 76.76261911 77.33584079 77.72573436 77.90930638 77.7004367 79.29904106\n", + " 80.93014794 82.5883689 84.26818815 85.9633334 87.6639727 89.31207398\n", + " 77.90930638 79.51115144 81.14420271 82.80268356 84.48015158 86.16770212\n", + " 87.84429449 89.31207398 73.67977076 74.84367611 75.87839932 76.72967459\n", + " 77.34173684 77.66614591 73.68843996 74.88082796 75.94981974 76.8404193\n", + " 77.49482717 77.86108402 78.39292403 80.37467767 82.39987127 84.45839268\n", + " 86.53837212 88.6125356 78.60323781 80.5880931 82.61407297 84.6695731\n", + " 86.73723257 88.74545658 73.24742531 73.24742531 89.30399741 89.30399741\n", + " 74.13967578 75.38730878 76.51234476 77.4557749 78.15346667 78.54590996\n", + " 75.35848529 76.77078371 78.07006468 79.18567192 80.03121451 80.5165253\n", + " 76.44822453 78.03255968 79.52764934 80.85445453 81.89945108 82.52079347\n", + " 77.3504272 79.10147139 80.80332064 82.38074874 83.7000473 84.53866109\n", + " 78.00303059 79.89280789 81.78299446 83.6236493 85.30285158 86.52492363\n", + " 78.35049019 80.32186123 82.33135444 84.36297386 86.3856321 88.26407642]\n", + "DEBUG:root:optics_fp: rtanth: [45.12621722 42.17029986 39.48131725 37.11732942 35.14398081 33.63010767\n", + " 32.639706 32.22108294 45.12621722 42.10767167 39.34740219 36.90340926\n", + " 34.84231167 33.23542179 32.15091525 31.64254972 32.22108294 27.83664346\n", + " 23.45294788 19.07050919 14.69045227 10.31581149 5.95852807 1.75318507\n", + " 31.64254972 27.26187195 22.88339755 18.50869029 14.14124675 9.79079234\n", + " 5.49780688 1.75318507 43.79692971 40.34599343 37.35277865 34.93513576\n", + " 33.218972 32.31623807 43.77085556 40.23738319 37.14847194 34.62331124\n", + " 32.79239466 31.77595577 30.30982943 24.93681956 19.5654525 14.19759296\n", + " 8.839633 3.53685305 29.73311087 24.36567291 19.00307614 13.6510271\n", + " 8.32988182 3.19782325 45.10500496 45.10500496 1.7737717 1.7737717\n", + " 42.42166164 38.76540449 35.54881922 32.90111338 30.96854417 29.89014797\n", + " 38.84875172 34.81931533 31.19850449 28.14447363 25.85882561 24.55705763\n", + " 35.73032881 31.30200643 27.21722925 23.65464611 20.88324085 19.24785615\n", + " 33.19472902 28.37338973 23.79099004 19.61570597 16.16611847 13.98976784\n", + " 31.38353749 26.23138645 21.19074319 16.36497207 12.01581361 8.87411937\n", + " 30.4263959 25.07837271 19.74554986 14.44477252 9.23140937 4.4259617 ]\n", + "DEBUG:root:optics_fp: cphi: [0.713738 0.76376784 0.81578691 0.86774466 0.91646952 0.95772545\n", + " 0.98678686 0.99960811 0.713738 0.66073156 0.59560321 0.51618565\n", + " 0.42082689 0.3091928 0.18318995 0.04750869 0.99960811 0.99947492\n", + " 0.99926025 0.99888104 0.99811368 0.99617106 0.98847974 0.85755676\n", + " 0.04750869 0.05514364 0.06569574 0.08122479 0.10631221 0.15355346\n", + " 0.27346048 0.85755676 0.73505851 0.79793137 0.86187328 0.92151896\n", + " 0.96912745 0.99620029 0.69214539 0.6193195 0.5260996 0.40919818\n", + " 0.26810473 0.10749625 0.99954227 0.99932373 0.99890128 0.99791251\n", + " 0.99460641 0.9658178 0.05106448 0.06231447 0.07990085 0.11122898\n", + " 0.18228563 0.4748373 0.71374111 0.71374111 0.85606035 0.85606035\n", + " 0.71415887 0.64283622 0.5497737 0.43061783 0.28389471 0.11427866\n", + " 0.7798406 0.71568995 0.62643496 0.50339666 0.33999355 0.13909785\n", + " 0.84790325 0.79611069 0.71806949 0.59894626 0.42100084 0.17746713\n", + " 0.9126717 0.87828385 0.82148283 0.72227275 0.54384668 0.24417059\n", + " 0.96534426 0.95000384 0.92228562 0.86574653 0.73169559 0.38493034\n", + " 0.9957126 0.99368273 0.9897899 0.98083551 0.95239474 0.77179741]\n", + "DEBUG:root:optics_fp: sphi: [0.70041278 0.64549104 0.5783526 0.49701026 0.40010451 0.28768378\n", + " 0.16202376 0.02799345 0.70041278 0.75062228 0.80327879 0.85647672\n", + " 0.90714096 0.95099938 0.98307754 0.99887082 0.02799345 0.03240177\n", + " 0.03845716 0.04729349 0.06139281 0.08742554 0.15135324 0.51438935\n", + " 0.99887082 0.99847843 0.9978397 0.99669581 0.9943328 0.98814034\n", + " 0.96188324 0.51438935 0.67800368 0.60274831 0.5071237 0.38833338\n", + " 0.24656029 0.0870918 0.7217581 0.78513907 0.85042296 0.91244553\n", + " 0.96338977 0.99420549 0.03025321 0.03677059 0.04686391 0.06458036\n", + " 0.10372123 0.25922188 0.99869536 0.99805657 0.99680282 0.9937948\n", + " 0.98324562 0.8800736 0.70040962 0.70040962 0.51687588 0.51687588\n", + " 0.69998365 0.76600365 0.83531364 0.90253437 0.95885546 0.99344873\n", + " 0.62597814 0.69841814 0.77947369 0.86405544 0.94042777 0.99027864\n", + " 0.530151 0.60515103 0.69597142 0.80078922 0.90706025 0.98412673\n", + " 0.40869348 0.47813961 0.57023325 0.69160833 0.8391846 0.9697323\n", + " 0.2609798 0.31223822 0.38650903 0.50048271 0.68163155 0.92294563\n", + " 0.09250092 0.11222584 0.14253407 0.19483765 0.3048676 0.63586851]\n", + "DEBUG:root:optics_fp: xyfp: [[-32.208296 -31.60697943]\n", + " [-32.20831882 -27.22055086]\n", + " [-32.20834163 -22.83412229]\n", + " [-32.20836444 -18.44769372]\n", + " [-32.20838725 -14.06126515]\n", + " [-32.20841007 -9.67483658]\n", + " [-32.20843288 -5.288408 ]\n", + " [-32.2084557 -0.90197943]\n", + " [-32.208296 -31.60697943]\n", + " [-27.82186743 -31.60695662]\n", + " [-23.43543886 -31.60693381]\n", + " [-19.04901029 -31.60691099]\n", + " [-14.66258171 -31.60688818]\n", + " [-10.27615314 -31.60686536]\n", + " [ -5.88972457 -31.60684255]\n", + " [ -1.503296 -31.60681974]\n", + " [-32.2084557 -0.90197943]\n", + " [-27.82202712 -0.90195662]\n", + " [-23.43559855 -0.9019338 ]\n", + " [-19.04916999 -0.90191099]\n", + " [-14.66274141 -0.90188818]\n", + " [-10.27631284 -0.90186536]\n", + " [ -5.88988428 -0.90184255]\n", + " [ -1.5034557 -0.90181973]\n", + " [ -1.503296 -31.60681974]\n", + " [ -1.50331881 -27.22039116]\n", + " [ -1.50334163 -22.83396259]\n", + " [ -1.50336444 -18.44753402]\n", + " [ -1.50338726 -14.06110544]\n", + " [ -1.50341007 -9.67467688]\n", + " [ -1.50343288 -5.2882483 ]\n", + " [ -1.5034557 -0.90181973]\n", + " [-32.19330594 -29.69447935]\n", + " [-32.19333391 -24.31847935]\n", + " [-32.19336187 -18.94247936]\n", + " [-32.19338983 -13.56647936]\n", + " [-32.19341779 -8.19047935]\n", + " [-32.19344575 -2.81447935]\n", + " [-30.29579608 -31.59196949]\n", + " [-24.91979608 -31.59194152]\n", + " [-19.54379608 -31.59191356]\n", + " [-14.16779608 -31.5918856 ]\n", + " [ -8.79179608 -31.59185764]\n", + " [ -3.41579608 -31.59182968]\n", + " [-30.29595562 -0.91696949]\n", + " [-24.91995562 -0.91694153]\n", + " [-19.54395562 -0.91691356]\n", + " [-14.16795562 -0.9168856 ]\n", + " [ -8.79195562 -0.91685764]\n", + " [ -3.41595563 -0.91682968]\n", + " [ -1.51830595 -29.69431981]\n", + " [ -1.51833391 -24.31831981]\n", + " [ -1.51836187 -18.94231981]\n", + " [ -1.51838983 -13.56631981]\n", + " [ -1.51841779 -8.19031981]\n", + " [ -1.51844575 -2.81431982]\n", + " [-32.19329608 -31.59197936]\n", + " [-32.19329608 -31.59197936]\n", + " [ -1.51845562 -0.91681981]\n", + " [ -1.51845562 -0.91681981]\n", + " [-30.29580595 -29.69446949]\n", + " [-24.91980594 -29.69444152]\n", + " [-19.54380595 -29.69441356]\n", + " [-14.16780595 -29.69438561]\n", + " [ -8.79180595 -29.69435764]\n", + " [ -3.41580595 -29.69432968]\n", + " [-30.29583391 -24.31846949]\n", + " [-24.91983391 -24.31844152]\n", + " [-19.54383391 -24.31841356]\n", + " [-14.16783391 -24.31838561]\n", + " [ -8.79183391 -24.31835764]\n", + " [ -3.41583391 -24.31832968]\n", + " [-30.29586187 -18.94246949]\n", + " [-24.91986187 -18.94244153]\n", + " [-19.54386187 -18.94241356]\n", + " [-14.16786187 -18.94238561]\n", + " [ -8.79186187 -18.94235764]\n", + " [ -3.41586187 -18.94232969]\n", + " [-30.29588983 -13.56646949]\n", + " [-24.91988983 -13.56644152]\n", + " [-19.54388984 -13.56641357]\n", + " [-14.16788983 -13.5663856 ]\n", + " [ -8.79188983 -13.56635764]\n", + " [ -3.41588983 -13.56632968]\n", + " [-30.29591779 -8.19046949]\n", + " [-24.91991779 -8.19044152]\n", + " [-19.54391779 -8.19041356]\n", + " [-14.16791779 -8.1903856 ]\n", + " [ -8.79191779 -8.19035764]\n", + " [ -3.41591779 -8.19032968]\n", + " [-30.29594575 -2.81446949]\n", + " [-24.91994576 -2.81444153]\n", + " [-19.54394575 -2.81441356]\n", + " [-14.16794576 -2.8143856 ]\n", + " [ -8.79194575 -2.81435764]\n", + " [ -3.41594575 -2.81432968]]\n", + "DEBUG:root:optics_fp: xyfp shape: (96, 2)\n", + "DEBUG:root:make_az_asym: xyp: [[-32.208296 -31.60697943]\n", + " [-32.20831882 -27.22055086]\n", + " [-32.20834163 -22.83412229]\n", + " [-32.20836444 -18.44769372]\n", + " [-32.20838725 -14.06126515]\n", + " [-32.20841007 -9.67483658]\n", + " [-32.20843288 -5.288408 ]\n", + " [-32.2084557 -0.90197943]\n", + " [-32.208296 -31.60697943]\n", + " [-27.82186743 -31.60695662]\n", + " [-23.43543886 -31.60693381]\n", + " [-19.04901029 -31.60691099]\n", + " [-14.66258171 -31.60688818]\n", + " [-10.27615314 -31.60686536]\n", + " [ -5.88972457 -31.60684255]\n", + " [ -1.503296 -31.60681974]\n", + " [-32.2084557 -0.90197943]\n", + " [-27.82202712 -0.90195662]\n", + " [-23.43559855 -0.9019338 ]\n", + " [-19.04916999 -0.90191099]\n", + " [-14.66274141 -0.90188818]\n", + " [-10.27631284 -0.90186536]\n", + " [ -5.88988428 -0.90184255]\n", + " [ -1.5034557 -0.90181973]\n", + " [ -1.503296 -31.60681974]\n", + " [ -1.50331881 -27.22039116]\n", + " [ -1.50334163 -22.83396259]\n", + " [ -1.50336444 -18.44753402]\n", + " [ -1.50338726 -14.06110544]\n", + " [ -1.50341007 -9.67467688]\n", + " [ -1.50343288 -5.2882483 ]\n", + " [ -1.5034557 -0.90181973]\n", + " [-32.19330594 -29.69447935]\n", + " [-32.19333391 -24.31847935]\n", + " [-32.19336187 -18.94247936]\n", + " [-32.19338983 -13.56647936]\n", + " [-32.19341779 -8.19047935]\n", + " [-32.19344575 -2.81447935]\n", + " [-30.29579608 -31.59196949]\n", + " [-24.91979608 -31.59194152]\n", + " [-19.54379608 -31.59191356]\n", + " [-14.16779608 -31.5918856 ]\n", + " [ -8.79179608 -31.59185764]\n", + " [ -3.41579608 -31.59182968]\n", + " [-30.29595562 -0.91696949]\n", + " [-24.91995562 -0.91694153]\n", + " [-19.54395562 -0.91691356]\n", + " [-14.16795562 -0.9168856 ]\n", + " [ -8.79195562 -0.91685764]\n", + " [ -3.41595563 -0.91682968]\n", + " [ -1.51830595 -29.69431981]\n", + " [ -1.51833391 -24.31831981]\n", + " [ -1.51836187 -18.94231981]\n", + " [ -1.51838983 -13.56631981]\n", + " [ -1.51841779 -8.19031981]\n", + " [ -1.51844575 -2.81431982]\n", + " [-32.19329608 -31.59197936]\n", + " [-32.19329608 -31.59197936]\n", + " [ -1.51845562 -0.91681981]\n", + " [ -1.51845562 -0.91681981]\n", + " [-30.29580595 -29.69446949]\n", + " [-24.91980594 -29.69444152]\n", + " [-19.54380595 -29.69441356]\n", + " [-14.16780595 -29.69438561]\n", + " [ -8.79180595 -29.69435764]\n", + " [ -3.41580595 -29.69432968]\n", + " [-30.29583391 -24.31846949]\n", + " [-24.91983391 -24.31844152]\n", + " [-19.54383391 -24.31841356]\n", + " [-14.16783391 -24.31838561]\n", + " [ -8.79183391 -24.31835764]\n", + " [ -3.41583391 -24.31832968]\n", + " [-30.29586187 -18.94246949]\n", + " [-24.91986187 -18.94244153]\n", + " [-19.54386187 -18.94241356]\n", + " [-14.16786187 -18.94238561]\n", + " [ -8.79186187 -18.94235764]\n", + " [ -3.41586187 -18.94232969]\n", + " [-30.29588983 -13.56646949]\n", + " [-24.91988983 -13.56644152]\n", + " [-19.54388984 -13.56641357]\n", + " [-14.16788983 -13.5663856 ]\n", + " [ -8.79188983 -13.56635764]\n", + " [ -3.41588983 -13.56632968]\n", + " [-30.29591779 -8.19046949]\n", + " [-24.91991779 -8.19044152]\n", + " [-19.54391779 -8.19041356]\n", + " [-14.16791779 -8.1903856 ]\n", + " [ -8.79191779 -8.19035764]\n", + " [ -3.41591779 -8.19032968]\n", + " [-30.29594575 -2.81446949]\n", + " [-24.91994576 -2.81444153]\n", + " [-19.54394575 -2.81441356]\n", + " [-14.16794576 -2.8143856 ]\n", + " [ -8.79194575 -2.81435764]\n", + " [ -3.41594575 -2.81432968]]\n", + "DEBUG:root:make_az_asym: xyp: shape: (96, 2)\n", + "DEBUG:root:radec2pix: xyfp: [[-32.208296 -31.60697943]\n", + " [-32.20831882 -27.22055086]\n", + " [-32.20834163 -22.83412229]\n", + " [-32.20836444 -18.44769372]\n", + " [-32.20838725 -14.06126515]\n", + " [-32.20841007 -9.67483658]\n", + " [-32.20843288 -5.288408 ]\n", + " [-32.2084557 -0.90197943]\n", + " [-32.208296 -31.60697943]\n", + " [-27.82186743 -31.60695662]\n", + " [-23.43543886 -31.60693381]\n", + " [-19.04901029 -31.60691099]\n", + " [-14.66258171 -31.60688818]\n", + " [-10.27615314 -31.60686536]\n", + " [ -5.88972457 -31.60684255]\n", + " [ -1.503296 -31.60681974]\n", + " [-32.2084557 -0.90197943]\n", + " [-27.82202712 -0.90195662]\n", + " [-23.43559855 -0.9019338 ]\n", + " [-19.04916999 -0.90191099]\n", + " [-14.66274141 -0.90188818]\n", + " [-10.27631284 -0.90186536]\n", + " [ -5.88988428 -0.90184255]\n", + " [ -1.5034557 -0.90181973]\n", + " [ -1.503296 -31.60681974]\n", + " [ -1.50331881 -27.22039116]\n", + " [ -1.50334163 -22.83396259]\n", + " [ -1.50336444 -18.44753402]\n", + " [ -1.50338726 -14.06110544]\n", + " [ -1.50341007 -9.67467688]\n", + " [ -1.50343288 -5.2882483 ]\n", + " [ -1.5034557 -0.90181973]\n", + " [-32.19330594 -29.69447935]\n", + " [-32.19333391 -24.31847935]\n", + " [-32.19336187 -18.94247936]\n", + " [-32.19338983 -13.56647936]\n", + " [-32.19341779 -8.19047935]\n", + " [-32.19344575 -2.81447935]\n", + " [-30.29579608 -31.59196949]\n", + " [-24.91979608 -31.59194152]\n", + " [-19.54379608 -31.59191356]\n", + " [-14.16779608 -31.5918856 ]\n", + " [ -8.79179608 -31.59185764]\n", + " [ -3.41579608 -31.59182968]\n", + " [-30.29595562 -0.91696949]\n", + " [-24.91995562 -0.91694153]\n", + " [-19.54395562 -0.91691356]\n", + " [-14.16795562 -0.9168856 ]\n", + " [ -8.79195562 -0.91685764]\n", + " [ -3.41595563 -0.91682968]\n", + " [ -1.51830595 -29.69431981]\n", + " [ -1.51833391 -24.31831981]\n", + " [ -1.51836187 -18.94231981]\n", + " [ -1.51838983 -13.56631981]\n", + " [ -1.51841779 -8.19031981]\n", + " [ -1.51844575 -2.81431982]\n", + " [-32.19329608 -31.59197936]\n", + " [-32.19329608 -31.59197936]\n", + " [ -1.51845562 -0.91681981]\n", + " [ -1.51845562 -0.91681981]\n", + " [-30.29580595 -29.69446949]\n", + " [-24.91980594 -29.69444152]\n", + " [-19.54380595 -29.69441356]\n", + " [-14.16780595 -29.69438561]\n", + " [ -8.79180595 -29.69435764]\n", + " [ -3.41580595 -29.69432968]\n", + " [-30.29583391 -24.31846949]\n", + " [-24.91983391 -24.31844152]\n", + " [-19.54383391 -24.31841356]\n", + " [-14.16783391 -24.31838561]\n", + " [ -8.79183391 -24.31835764]\n", + " [ -3.41583391 -24.31832968]\n", + " [-30.29586187 -18.94246949]\n", + " [-24.91986187 -18.94244153]\n", + " [-19.54386187 -18.94241356]\n", + " [-14.16786187 -18.94238561]\n", + " [ -8.79186187 -18.94235764]\n", + " [ -3.41586187 -18.94232969]\n", + " [-30.29588983 -13.56646949]\n", + " [-24.91988983 -13.56644152]\n", + " [-19.54388984 -13.56641357]\n", + " [-14.16788983 -13.5663856 ]\n", + " [ -8.79188983 -13.56635764]\n", + " [ -3.41588983 -13.56632968]\n", + " [-30.29591779 -8.19046949]\n", + " [-24.91991779 -8.19044152]\n", + " [-19.54391779 -8.19041356]\n", + " [-14.16791779 -8.1903856 ]\n", + " [ -8.79191779 -8.19035764]\n", + " [ -3.41591779 -8.19032968]\n", + " [-30.29594575 -2.81446949]\n", + " [-24.91994576 -2.81444153]\n", + " [-19.54394575 -2.81441356]\n", + " [-14.16794576 -2.8143856 ]\n", + " [ -8.79194575 -2.81435764]\n", + " [ -3.41594575 -2.81432968]]\n", + "DEBUG:root:radec2pix: xyfp Shape: (96, 2)\n", + "DEBUG:root:radec2pix: curVec: [[ 0.5151721 -0.42927301 -0.74183717]\n", + " [ 0.51150996 -0.4070747 -0.75673493]\n", + " [ 0.50725295 -0.38416614 -0.77143426]\n", + " [ 0.50241175 -0.36062334 -0.78583283]\n", + " [ 0.4969991 -0.33652586 -0.79983888]\n", + " [ 0.49103024 -0.31195738 -0.8133707 ]\n", + " [ 0.48452349 -0.28700599 -0.82635619]\n", + " [ 0.47750079 -0.26176421 -0.83873267]\n", + " [ 0.5151721 -0.42927301 -0.74183717]\n", + " [ 0.49263334 -0.44166196 -0.74983139]\n", + " [ 0.46920674 -0.45386546 -0.75752966]\n", + " [ 0.44497682 -0.46582368 -0.76485549]\n", + " [ 0.42003031 -0.47747993 -0.77174313]\n", + " [ 0.39445693 -0.4887805 -0.7781371 ]\n", + " [ 0.36835013 -0.49967489 -0.78399183]\n", + " [ 0.34180747 -0.51011614 -0.78927129]\n", + " [ 0.47750079 -0.26176421 -0.83873267]\n", + " [ 0.45382621 -0.27313529 -0.84819743]\n", + " [ 0.42930197 -0.28451654 -0.85717569]\n", + " [ 0.40400603 -0.29585038 -0.86559325]\n", + " [ 0.37802045 -0.30708214 -0.87338485]\n", + " [ 0.35143323 -0.31815943 -0.88049376]\n", + " [ 0.32433927 -0.32903199 -0.88687202]\n", + " [ 0.2968403 -0.33965199 -0.89248102]\n", + " [ 0.34180747 -0.51011614 -0.78927129]\n", + " [ 0.33647362 -0.48788793 -0.80545072]\n", + " [ 0.33075643 -0.46482522 -0.82130244]\n", + " [ 0.3246644 -0.44099824 -0.8367279 ]\n", + " [ 0.31820922 -0.41648214 -0.85163696]\n", + " [ 0.31140636 -0.39135859 -0.86594719]\n", + " [ 0.30427543 -0.36571653 -0.87958393]\n", + " [ 0.2968403 -0.33965199 -0.89248102]\n", + " [ 0.51357329 -0.41972901 -0.74837827]\n", + " [ 0.50868267 -0.39203525 -0.7665183 ]\n", + " [ 0.50290904 -0.36334972 -0.78425728]\n", + " [ 0.49627501 -0.33381736 -0.80142191]\n", + " [ 0.48880869 -0.30359227 -0.81786172]\n", + " [ 0.48054528 -0.27283848 -0.8334479 ]\n", + " [ 0.50544773 -0.43461874 -0.74540536]\n", + " [ 0.47721547 -0.4496854 -0.75501552]\n", + " [ 0.4477334 -0.46441382 -0.76410379]\n", + " [ 0.41716023 -0.47869834 -0.77254465]\n", + " [ 0.38566123 -0.49244013 -0.78023595]\n", + " [ 0.35341014 -0.50554764 -0.78709775]\n", + " [ 0.46731292 -0.266804 -0.84287262]\n", + " [ 0.43771651 -0.28075556 -0.85415489]\n", + " [ 0.40692095 -0.29466466 -0.86463176]\n", + " [ 0.37507551 -0.30842948 -0.8741794 ]\n", + " [ 0.34234229 -0.32195356 -0.88269341]\n", + " [ 0.30889887 -0.33514534 -0.89008937]\n", + " [ 0.33962121 -0.50049651 -0.79634206]\n", + " [ 0.33282623 -0.47268342 -0.8159639 ]\n", + " [ 0.32546341 -0.44368628 -0.83499464]\n", + " [ 0.31755292 -0.41364131 -0.85326491]\n", + " [ 0.30912327 -0.38269894 -0.87062295]\n", + " [ 0.30021232 -0.35102591 -0.88693482]\n", + " [ 0.51508513 -0.42924101 -0.74191608]\n", + " [ 0.51508513 -0.42924101 -0.74191608]\n", + " [ 0.29696081 -0.33970589 -0.89242041]\n", + " [ 0.29696081 -0.33970589 -0.89242041]\n", + " [ 0.5038884 -0.42509175 -0.75192651]\n", + " [ 0.47552319 -0.44012688 -0.7616863 ]\n", + " [ 0.44590988 -0.45483999 -0.7708988 ]\n", + " [ 0.41520626 -0.46912528 -0.77943905]\n", + " [ 0.38357702 -0.48288353 -0.78720529]\n", + " [ 0.35119585 -0.4960227 -0.79411772]\n", + " [ 0.49887587 -0.3973461 -0.77022006]\n", + " [ 0.47017049 -0.41226634 -0.78036925]\n", + " [ 0.44022247 -0.42691223 -0.78990514]\n", + " [ 0.40918687 -0.44117767 -0.79870418]\n", + " [ 0.37722689 -0.45496258 -0.80666531]\n", + " [ 0.34451646 -0.46817366 -0.81370869]\n", + " [ 0.49299859 -0.3685943 -0.78809304]\n", + " [ 0.4640056 -0.38336037 -0.79858226]\n", + " [ 0.4337764 -0.39790203 -0.8084009 ]\n", + " [ 0.40246356 -0.41211328 -0.81742628]\n", + " [ 0.37022924 -0.42589373 -0.82555729]\n", + " [ 0.33724802 -0.43914932 -0.83271343]\n", + " [ 0.48627846 -0.33898086 -0.80537273]\n", + " [ 0.45704839 -0.35355196 -0.81615426]\n", + " [ 0.42659009 -0.36795062 -0.82621621]\n", + " [ 0.39505421 -0.38207158 -0.8354361 ]\n", + " [ 0.36260237 -0.39581482 -0.84371212]\n", + " [ 0.32941011 -0.40908621 -0.85096266]\n", + " [ 0.47874291 -0.30865973 -0.821909 ]\n", + " [ 0.44932467 -0.32299463 -0.83293566]\n", + " [ 0.41868848 -0.33721104 -0.84320144]\n", + " [ 0.38698384 -0.35120494 -0.85258348]\n", + " [ 0.35437235 -0.36487744 -0.86097891]\n", + " [ 0.32103052 -0.37813507 -0.86830483]\n", + " [ 0.47042671 -0.27779523 -0.837573 ]\n", + " [ 0.44086832 -0.29185365 -0.84879713]\n", + " [ 0.41010529 -0.30584943 -0.85922627]\n", + " [ 0.37828678 -0.31968015 -0.86873685]\n", + " [ 0.34557473 -0.33324866 -0.87722485]\n", + " [ 0.31214649 -0.3464628 -0.88460618]]\n", + "DEBUG:root:radec2pix: curVec Shape: (96, 3)\n", + "DEBUG:root:mm_to_pix: fitpx: [[0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]]\n", + "DEBUG:root:mm_to_pix: fitpx.shape: (96, 2)\n", + "DEBUG:root:radec2pix: camVec: [[0.20582147 0.20765008 0.20920683 0.21049219 0.21150557 0.2122456\n", + " 0.21271065 0.21289938 0.20582147 0.17940403 0.15227891 0.12455745\n", + " 0.09635017 0.06776763 0.03892112 0.00992292 0.21289938 0.18554193\n", + " 0.15747589 0.1288054 0.09963586 0.07007602 0.04023879 0.01024104\n", + " 0.00992292 0.01000636 0.01007758 0.01013637 0.01018243 0.01021541\n", + " 0.01023502 0.01024104 0.20656285 0.20862007 0.2102697 0.2115111\n", + " 0.21234181 0.21275892 0.19440388 0.16153549 0.12771486 0.09314577\n", + " 0.05803185 0.02257838 0.20106508 0.16704611 0.13206625 0.09631893\n", + " 0.06000442 0.02333228 0.01006049 0.01015553 0.01023184 0.01028888\n", + " 0.01032605 0.01034279 0.20573918 0.20573918 0.01034376 0.01034376\n", + " 0.19517916 0.16217419 0.12821715 0.09351091 0.05825864 0.02266572\n", + " 0.19711638 0.16377271 0.12947641 0.09442771 0.05882858 0.02288505\n", + " 0.19867107 0.16505894 0.13049231 0.09516891 0.05928988 0.02306224\n", + " 0.19984199 0.16603002 0.13126104 0.09573072 0.0596397 0.02319607\n", + " 0.20062602 0.16668139 0.13177743 0.09610838 0.05987462 0.02328514\n", + " 0.20101976 0.1670086 0.13203673 0.09629765 0.05999164 0.02332821]\n", + " [0.20164691 0.17515749 0.1479768 0.12021614 0.09198614 0.06339752\n", + " 0.03456171 0.00559103 0.20164691 0.2034844 0.20505578 0.20636157\n", + " 0.2074012 0.20817322 0.20867589 0.20890768 0.00559103 0.00564441\n", + " 0.00569099 0.00573063 0.00576317 0.00578837 0.00580605 0.00581605\n", + " 0.20890768 0.18144072 0.15328055 0.12453134 0.09529889 0.06569253\n", + " 0.0358258 0.00581605 0.19019593 0.15725033 0.12337711 0.08878017\n", + " 0.0536634 0.01823232 0.20239118 0.20446311 0.20613616 0.2074097\n", + " 0.20828117 0.20874739 0.00571471 0.00577657 0.00582791 0.00586841\n", + " 0.00589767 0.00591534 0.19702358 0.16288078 0.12780019 0.0919758\n", + " 0.05560896 0.01891032 0.20156436 0.20156436 0.00591876 0.00591876\n", + " 0.19097333 0.19292238 0.19449762 0.19569785 0.19651986 0.19695996\n", + " 0.15788822 0.15949023 0.1607887 0.16178086 0.16246211 0.16282774\n", + " 0.12387558 0.1251298 0.12614936 0.12693065 0.1274685 0.12775798\n", + " 0.08913848 0.09004163 0.09077781 0.09134344 0.09173387 0.09194479\n", + " 0.0538804 0.0544282 0.05487585 0.05522072 0.05545959 0.05558951\n", + " 0.018307 0.01849597 0.01865108 0.01877134 0.01885557 0.01890269]\n", + " [0.95758866 0.96239353 0.96661025 0.97017582 0.97303851 0.97515771\n", + " 0.9765038 0.97705813 0.95758866 0.96250106 0.96683156 0.9705155\n", + " 0.97349956 0.97574149 0.97721007 0.97788502 0.97705813 0.98262014\n", + " 0.98750643 0.99165333 0.99500728 0.99752486 0.99917322 0.99993064\n", + " 0.97788502 0.98335097 0.98813132 0.9921639 0.99539662 0.99778762\n", + " 0.99930564 0.99993064 0.9597694 0.96527198 0.96982717 0.97333506\n", + " 0.97572086 0.97693461 0.95981506 0.96545384 0.97015298 0.97380957\n", + " 0.97634587 0.97770893 0.97956122 0.98593216 0.99122376 0.99533322\n", + " 0.99818069 0.99971026 0.98034713 0.98659349 0.99174716 0.99570809\n", + " 0.99839923 0.99976769 0.95762372 0.95762372 0.99992898 0.99992898\n", + " 0.96199495 0.96771922 0.97248704 0.97619571 0.97876753 0.9801495\n", + " 0.96758278 0.97352009 0.97845943 0.98229851 0.98495952 0.98638907\n", + " 0.97220607 0.9783139 0.98339112 0.98733555 0.99006893 0.99153721\n", + " 0.97576509 0.98200129 0.98718283 0.99120735 0.99399598 0.9954939\n", + " 0.97818511 0.98450743 0.98975924 0.99383794 0.99666407 0.99818215\n", + " 0.97941611 0.98578194 0.99106934 0.99517556 0.99802078 0.99954914]]\n", + "DEBUG:root:radec2pix: camVec Shape: (3, 96)\n", + "DEBUG:root:radec2pix: xyfp: [[-32.208296 -31.60697943]\n", + " [-32.20831882 -27.22055086]\n", + " [-32.20834163 -22.83412229]\n", + " [-32.20836444 -18.44769372]\n", + " [-32.20838725 -14.06126515]\n", + " [-32.20841007 -9.67483658]\n", + " [-32.20843288 -5.288408 ]\n", + " [-32.2084557 -0.90197943]\n", + " [-32.208296 -31.60697943]\n", + " [-27.82186743 -31.60695662]\n", + " [-23.43543886 -31.60693381]\n", + " [-19.04901029 -31.60691099]\n", + " [-14.66258171 -31.60688818]\n", + " [-10.27615314 -31.60686536]\n", + " [ -5.88972457 -31.60684255]\n", + " [ -1.503296 -31.60681974]\n", + " [-32.2084557 -0.90197943]\n", + " [-27.82202712 -0.90195662]\n", + " [-23.43559855 -0.9019338 ]\n", + " [-19.04916999 -0.90191099]\n", + " [-14.66274141 -0.90188818]\n", + " [-10.27631284 -0.90186536]\n", + " [ -5.88988428 -0.90184255]\n", + " [ -1.5034557 -0.90181973]\n", + " [ -1.503296 -31.60681974]\n", + " [ -1.50331881 -27.22039116]\n", + " [ -1.50334163 -22.83396259]\n", + " [ -1.50336444 -18.44753402]\n", + " [ -1.50338726 -14.06110544]\n", + " [ -1.50341007 -9.67467688]\n", + " [ -1.50343288 -5.2882483 ]\n", + " [ -1.5034557 -0.90181973]\n", + " [-32.19330594 -29.69447935]\n", + " [-32.19333391 -24.31847935]\n", + " [-32.19336187 -18.94247936]\n", + " [-32.19338983 -13.56647936]\n", + " [-32.19341779 -8.19047935]\n", + " [-32.19344575 -2.81447935]\n", + " [-30.29579608 -31.59196949]\n", + " [-24.91979608 -31.59194152]\n", + " [-19.54379608 -31.59191356]\n", + " [-14.16779608 -31.5918856 ]\n", + " [ -8.79179608 -31.59185764]\n", + " [ -3.41579608 -31.59182968]\n", + " [-30.29595562 -0.91696949]\n", + " [-24.91995562 -0.91694153]\n", + " [-19.54395562 -0.91691356]\n", + " [-14.16795562 -0.9168856 ]\n", + " [ -8.79195562 -0.91685764]\n", + " [ -3.41595563 -0.91682968]\n", + " [ -1.51830595 -29.69431981]\n", + " [ -1.51833391 -24.31831981]\n", + " [ -1.51836187 -18.94231981]\n", + " [ -1.51838983 -13.56631981]\n", + " [ -1.51841779 -8.19031981]\n", + " [ -1.51844575 -2.81431982]\n", + " [-32.19329608 -31.59197936]\n", + " [-32.19329608 -31.59197936]\n", + " [ -1.51845562 -0.91681981]\n", + " [ -1.51845562 -0.91681981]\n", + " [-30.29580595 -29.69446949]\n", + " [-24.91980594 -29.69444152]\n", + " [-19.54380595 -29.69441356]\n", + " [-14.16780595 -29.69438561]\n", + " [ -8.79180595 -29.69435764]\n", + " [ -3.41580595 -29.69432968]\n", + " [-30.29583391 -24.31846949]\n", + " [-24.91983391 -24.31844152]\n", + " [-19.54383391 -24.31841356]\n", + " [-14.16783391 -24.31838561]\n", + " [ -8.79183391 -24.31835764]\n", + " [ -3.41583391 -24.31832968]\n", + " [-30.29586187 -18.94246949]\n", + " [-24.91986187 -18.94244153]\n", + " [-19.54386187 -18.94241356]\n", + " [-14.16786187 -18.94238561]\n", + " [ -8.79186187 -18.94235764]\n", + " [ -3.41586187 -18.94232969]\n", + " [-30.29588983 -13.56646949]\n", + " [-24.91988983 -13.56644152]\n", + " [-19.54388984 -13.56641357]\n", + " [-14.16788983 -13.5663856 ]\n", + " [ -8.79188983 -13.56635764]\n", + " [ -3.41588983 -13.56632968]\n", + " [-30.29591779 -8.19046949]\n", + " [-24.91991779 -8.19044152]\n", + " [-19.54391779 -8.19041356]\n", + " [-14.16791779 -8.1903856 ]\n", + " [ -8.79191779 -8.19035764]\n", + " [ -3.41591779 -8.19032968]\n", + " [-30.29594575 -2.81446949]\n", + " [-24.91994576 -2.81444153]\n", + " [-19.54394575 -2.81441356]\n", + " [-14.16794576 -2.8143856 ]\n", + " [ -8.79194575 -2.81435764]\n", + " [ -3.41594575 -2.81432968]]\n", + "DEBUG:root:cartToSphere: vec: [[0.20582147 0.20164691 0.95758866]\n", + " [0.20765008 0.17515749 0.96239353]\n", + " [0.20920683 0.1479768 0.96661025]\n", + " [0.21049219 0.12021614 0.97017582]\n", + " [0.21150557 0.09198614 0.97303851]\n", + " [0.2122456 0.06339752 0.97515771]\n", + " [0.21271065 0.03456171 0.9765038 ]\n", + " [0.21289938 0.00559103 0.97705813]\n", + " [0.20582147 0.20164691 0.95758866]\n", + " [0.17940403 0.2034844 0.96250106]\n", + " [0.15227891 0.20505578 0.96683156]\n", + " [0.12455745 0.20636157 0.9705155 ]\n", + " [0.09635017 0.2074012 0.97349956]\n", + " [0.06776763 0.20817322 0.97574149]\n", + " [0.03892112 0.20867589 0.97721007]\n", + " [0.00992292 0.20890768 0.97788502]\n", + " [0.21289938 0.00559103 0.97705813]\n", + " [0.18554193 0.00564441 0.98262014]\n", + " [0.15747589 0.00569099 0.98750643]\n", + " [0.1288054 0.00573063 0.99165333]\n", + " [0.09963586 0.00576317 0.99500728]\n", + " [0.07007602 0.00578837 0.99752486]\n", + " [0.04023879 0.00580605 0.99917322]\n", + " [0.01024104 0.00581605 0.99993064]\n", + " [0.00992292 0.20890768 0.97788502]\n", + " [0.01000636 0.18144072 0.98335097]\n", + " [0.01007758 0.15328055 0.98813132]\n", + " [0.01013637 0.12453134 0.9921639 ]\n", + " [0.01018243 0.09529889 0.99539662]\n", + " [0.01021541 0.06569253 0.99778762]\n", + " [0.01023502 0.0358258 0.99930564]\n", + " [0.01024104 0.00581605 0.99993064]\n", + " [0.20656285 0.19019593 0.9597694 ]\n", + " [0.20862007 0.15725033 0.96527198]\n", + " [0.2102697 0.12337711 0.96982717]\n", + " [0.2115111 0.08878017 0.97333506]\n", + " [0.21234181 0.0536634 0.97572086]\n", + " [0.21275892 0.01823232 0.97693461]\n", + " [0.19440388 0.20239118 0.95981506]\n", + " [0.16153549 0.20446311 0.96545384]\n", + " [0.12771486 0.20613616 0.97015298]\n", + " [0.09314577 0.2074097 0.97380957]\n", + " [0.05803185 0.20828117 0.97634587]\n", + " [0.02257838 0.20874739 0.97770893]\n", + " [0.20106508 0.00571471 0.97956122]\n", + " [0.16704611 0.00577657 0.98593216]\n", + " [0.13206625 0.00582791 0.99122376]\n", + " [0.09631893 0.00586841 0.99533322]\n", + " [0.06000442 0.00589767 0.99818069]\n", + " [0.02333228 0.00591534 0.99971026]\n", + " [0.01006049 0.19702358 0.98034713]\n", + " [0.01015553 0.16288078 0.98659349]\n", + " [0.01023184 0.12780019 0.99174716]\n", + " [0.01028888 0.0919758 0.99570809]\n", + " [0.01032605 0.05560896 0.99839923]\n", + " [0.01034279 0.01891032 0.99976769]\n", + " [0.20573918 0.20156436 0.95762372]\n", + " [0.20573918 0.20156436 0.95762372]\n", + " [0.01034376 0.00591876 0.99992898]\n", + " [0.01034376 0.00591876 0.99992898]\n", + " [0.19517916 0.19097333 0.96199495]\n", + " [0.16217419 0.19292238 0.96771922]\n", + " [0.12821715 0.19449762 0.97248704]\n", + " [0.09351091 0.19569785 0.97619571]\n", + " [0.05825864 0.19651986 0.97876753]\n", + " [0.02266572 0.19695996 0.9801495 ]\n", + " [0.19711638 0.15788822 0.96758278]\n", + " [0.16377271 0.15949023 0.97352009]\n", + " [0.12947641 0.1607887 0.97845943]\n", + " [0.09442771 0.16178086 0.98229851]\n", + " [0.05882858 0.16246211 0.98495952]\n", + " [0.02288505 0.16282774 0.98638907]\n", + " [0.19867107 0.12387558 0.97220607]\n", + " [0.16505894 0.1251298 0.9783139 ]\n", + " [0.13049231 0.12614936 0.98339112]\n", + " [0.09516891 0.12693065 0.98733555]\n", + " [0.05928988 0.1274685 0.99006893]\n", + " [0.02306224 0.12775798 0.99153721]\n", + " [0.19984199 0.08913848 0.97576509]\n", + " [0.16603002 0.09004163 0.98200129]\n", + " [0.13126104 0.09077781 0.98718283]\n", + " [0.09573072 0.09134344 0.99120735]\n", + " [0.0596397 0.09173387 0.99399598]\n", + " [0.02319607 0.09194479 0.9954939 ]\n", + " [0.20062602 0.0538804 0.97818511]\n", + " [0.16668139 0.0544282 0.98450743]\n", + " [0.13177743 0.05487585 0.98975924]\n", + " [0.09610838 0.05522072 0.99383794]\n", + " [0.05987462 0.05545959 0.99666407]\n", + " [0.02328514 0.05558951 0.99818215]\n", + " [0.20101976 0.018307 0.97941611]\n", + " [0.1670086 0.01849597 0.98578194]\n", + " [0.13203673 0.01865108 0.99106934]\n", + " [0.09629765 0.01877134 0.99517556]\n", + " [0.05999164 0.01885557 0.99802078]\n", + " [0.02332821 0.01890269 0.99954914]]\n", + "DEBUG:root:radec2pix: ccdpx: [[-4.45000000e+01 -5.00000033e-01]\n", + " [-4.45000003e+01 2.91928571e+02]\n", + " [-4.45000002e+01 5.84357143e+02]\n", + " [-4.44999998e+01 8.76785714e+02]\n", + " [-4.44999998e+01 1.16921429e+03]\n", + " [-4.45000001e+01 1.46164286e+03]\n", + " [-4.44999997e+01 1.75407143e+03]\n", + " [-4.45000002e+01 2.04650000e+03]\n", + " [-4.45000000e+01 -5.00000033e-01]\n", + " [ 2.47928571e+02 -4.99999990e-01]\n", + " [ 5.40357143e+02 -5.00000111e-01]\n", + " [ 8.32785714e+02 -5.00000066e-01]\n", + " [ 1.12521429e+03 -4.99999995e-01]\n", + " [ 1.41764286e+03 -5.00000140e-01]\n", + " [ 1.71007143e+03 -5.00000040e-01]\n", + " [ 2.00250000e+03 -5.00000296e-01]\n", + " [-4.45000002e+01 2.04650000e+03]\n", + " [ 2.47928572e+02 2.04650000e+03]\n", + " [ 5.40357143e+02 2.04650000e+03]\n", + " [ 8.32785714e+02 2.04650000e+03]\n", + " [ 1.12521429e+03 2.04650000e+03]\n", + " [ 1.41764286e+03 2.04650000e+03]\n", + " [ 1.71007143e+03 2.04650000e+03]\n", + " [ 2.00250000e+03 2.04650000e+03]\n", + " [ 2.00250000e+03 -5.00000296e-01]\n", + " [ 2.00250000e+03 2.91928572e+02]\n", + " [ 2.00250000e+03 5.84357143e+02]\n", + " [ 2.00250000e+03 8.76785714e+02]\n", + " [ 2.00250000e+03 1.16921429e+03]\n", + " [ 2.00250000e+03 1.46164286e+03]\n", + " [ 2.00250000e+03 1.75407143e+03]\n", + " [ 2.00250000e+03 2.04650000e+03]\n", + " [-4.34999999e+01 1.27000000e+02]\n", + " [-4.35000000e+01 4.85400000e+02]\n", + " [-4.35000001e+01 8.43800000e+02]\n", + " [-4.35000001e+01 1.20220000e+03]\n", + " [-4.34999998e+01 1.56060000e+03]\n", + " [-4.34999998e+01 1.91900000e+03]\n", + " [ 8.29999999e+01 4.99999893e-01]\n", + " [ 4.41400000e+02 5.00000055e-01]\n", + " [ 7.99800000e+02 4.99999998e-01]\n", + " [ 1.15820000e+03 5.00000122e-01]\n", + " [ 1.51660000e+03 4.99999912e-01]\n", + " [ 1.87500000e+03 5.00000160e-01]\n", + " [ 8.30000002e+01 2.04550000e+03]\n", + " [ 4.41400000e+02 2.04550000e+03]\n", + " [ 7.99800000e+02 2.04550000e+03]\n", + " [ 1.15820000e+03 2.04550000e+03]\n", + " [ 1.51660000e+03 2.04550000e+03]\n", + " [ 1.87500000e+03 2.04550000e+03]\n", + " [ 2.00150000e+03 1.27000000e+02]\n", + " [ 2.00150000e+03 4.85400000e+02]\n", + " [ 2.00150000e+03 8.43800000e+02]\n", + " [ 2.00150000e+03 1.20220000e+03]\n", + " [ 2.00150000e+03 1.56060000e+03]\n", + " [ 2.00150000e+03 1.91900000e+03]\n", + " [-4.35000001e+01 4.99999931e-01]\n", + " [-4.35000001e+01 4.99999931e-01]\n", + " [ 2.00150000e+03 2.04550000e+03]\n", + " [ 2.00150000e+03 2.04550000e+03]\n", + " [ 8.30000000e+01 1.27000000e+02]\n", + " [ 4.41400000e+02 1.27000000e+02]\n", + " [ 7.99800000e+02 1.27000000e+02]\n", + " [ 1.15820000e+03 1.27000000e+02]\n", + " [ 1.51660000e+03 1.27000000e+02]\n", + " [ 1.87500000e+03 1.27000000e+02]\n", + " [ 8.29999999e+01 4.85400000e+02]\n", + " [ 4.41400000e+02 4.85400000e+02]\n", + " [ 7.99800000e+02 4.85400000e+02]\n", + " [ 1.15820000e+03 4.85400000e+02]\n", + " [ 1.51660000e+03 4.85400000e+02]\n", + " [ 1.87500000e+03 4.85400000e+02]\n", + " [ 8.29999999e+01 8.43800000e+02]\n", + " [ 4.41400000e+02 8.43800000e+02]\n", + " [ 7.99800000e+02 8.43800000e+02]\n", + " [ 1.15820000e+03 8.43800000e+02]\n", + " [ 1.51660000e+03 8.43800000e+02]\n", + " [ 1.87500000e+03 8.43800000e+02]\n", + " [ 8.30000001e+01 1.20220000e+03]\n", + " [ 4.41400000e+02 1.20220000e+03]\n", + " [ 7.99800000e+02 1.20220000e+03]\n", + " [ 1.15820000e+03 1.20220000e+03]\n", + " [ 1.51660000e+03 1.20220000e+03]\n", + " [ 1.87500000e+03 1.20220000e+03]\n", + " [ 8.29999998e+01 1.56060000e+03]\n", + " [ 4.41400000e+02 1.56060000e+03]\n", + " [ 7.99800000e+02 1.56060000e+03]\n", + " [ 1.15820000e+03 1.56060000e+03]\n", + " [ 1.51660000e+03 1.56060000e+03]\n", + " [ 1.87500000e+03 1.56060000e+03]\n", + " [ 8.30000002e+01 1.91900000e+03]\n", + " [ 4.41400000e+02 1.91900000e+03]\n", + " [ 7.99800000e+02 1.91900000e+03]\n", + " [ 1.15820000e+03 1.91900000e+03]\n", + " [ 1.51660000e+03 1.91900000e+03]\n", + " [ 1.87500000e+03 1.91900000e+03]]\n", + "DEBUG:root:radec2pix: lng: [44.41301872 40.14838159 35.2726464 29.73151826 23.50476184 16.63082675\n", + " 9.22889701 1.50432057 44.41301872 48.59866885 53.40161123 58.88530587\n", + " 65.08233359 71.96812796 79.43489015 87.28054707 1.50432057 1.74246974\n", + " 2.06969874 2.54744544 3.31042966 4.7219858 8.21053157 29.59292215\n", + " 87.28054707 86.84336495 86.23844627 85.3466032 83.90123984 81.16110163\n", + " 74.05596575 29.59292215 42.63779834 37.00767795 30.40255608 22.76985585\n", + " 14.18292146 4.89797993 46.15318169 51.6896036 58.21907141 65.81559375\n", + " 74.43095985 83.82681521 1.62803312 1.98053876 2.52674891 3.48654093\n", + " 5.61341407 14.22621651 87.07688216 86.43225722 85.42259355 83.61713665\n", + " 79.48054112 61.32403216 44.41274552 44.41274552 29.77842334 29.77842334\n", + " 44.37598019 49.94895822 56.60624337 64.45998446 73.48745603 83.43540409\n", + " 38.69437311 44.24100899 51.15696074 59.72888922 70.09435151 81.99961851\n", + " 31.94440422 37.16546071 44.03052128 53.13850244 65.05527755 79.7674455\n", + " 24.03901245 28.4719233 34.66704703 43.65653948 56.97056188 75.84073328\n", + " 15.03271986 18.08395091 22.60822524 29.88026153 42.80777081 67.27233698\n", + " 5.20360826 6.3196744 8.04022063 11.03037054 17.44810995 39.01761856]\n", + "DEBUG:root:radec2pix: lat: [73.25344023 74.2369792 75.15226824 75.97162966 76.66508667 77.2021609\n", + " 77.55512574 77.70337791 73.25344023 74.25967575 75.20183236 76.05214643\n", + " 76.78010612 77.3540472 77.74432055 77.92785326 77.70337791 79.30226543\n", + " 80.93361724 82.59207196 84.27220803 85.96793867 87.66996871 89.32519361\n", + " 77.92785326 79.53024676 81.16372478 82.82252521 84.50025464 86.18804733\n", + " 87.86471391 89.32519361 73.6926739 74.85593178 75.88945702 76.73895525\n", + " 77.34864846 77.67018969 73.7019933 74.89586821 75.96623187 76.85800237\n", + " 77.51320661 77.87970489 78.39600189 80.37807975 82.40356131 84.46248138\n", + " 86.54333738 88.62073148 78.62203863 80.60748554 82.6338837 84.6897052\n", + " 86.75764582 88.76495286 73.26041353 73.26041353 89.31716551 89.31716551\n", + " 74.15313309 75.40228414 76.52877477 77.47347648 78.17205407 78.56478282\n", + " 75.37129959 76.78525096 78.08623827 79.20344298 80.05020166 80.53598707\n", + " 76.45984424 78.04591405 79.54291278 80.87169379 81.91843153 82.54064538\n", + " 77.36022478 79.11290918 80.81670049 82.39645142 83.71831262 84.55871556\n", + " 78.01034 79.90138935 81.79317677 83.63609258 85.31869407 86.54472849\n", + " 78.35474014 80.32671962 82.33692434 84.36964547 86.39457329 88.27941972]\n", + "DEBUG:root:radec2pix: fitpx: [[-5.00000034e-01 -5.00000033e-01]\n", + " [-5.00000269e-01 2.91928571e+02]\n", + " [-5.00000171e-01 5.84357143e+02]\n", + " [-4.99999761e-01 8.76785714e+02]\n", + " [-4.99999835e-01 1.16921429e+03]\n", + " [-5.00000099e-01 1.46164286e+03]\n", + " [-4.99999719e-01 1.75407143e+03]\n", + " [-5.00000225e-01 2.04650000e+03]\n", + " [-5.00000034e-01 -5.00000033e-01]\n", + " [ 2.91928571e+02 -4.99999990e-01]\n", + " [ 5.84357143e+02 -5.00000111e-01]\n", + " [ 8.76785714e+02 -5.00000066e-01]\n", + " [ 1.16921429e+03 -4.99999995e-01]\n", + " [ 1.46164286e+03 -5.00000140e-01]\n", + " [ 1.75407143e+03 -5.00000040e-01]\n", + " [ 2.04650000e+03 -5.00000296e-01]\n", + " [-5.00000225e-01 2.04650000e+03]\n", + " [ 2.91928572e+02 2.04650000e+03]\n", + " [ 5.84357143e+02 2.04650000e+03]\n", + " [ 8.76785714e+02 2.04650000e+03]\n", + " [ 1.16921429e+03 2.04650000e+03]\n", + " [ 1.46164286e+03 2.04650000e+03]\n", + " [ 1.75407143e+03 2.04650000e+03]\n", + " [ 2.04650000e+03 2.04650000e+03]\n", + " [ 2.04650000e+03 -5.00000296e-01]\n", + " [ 2.04650000e+03 2.91928572e+02]\n", + " [ 2.04650000e+03 5.84357143e+02]\n", + " [ 2.04650000e+03 8.76785714e+02]\n", + " [ 2.04650000e+03 1.16921429e+03]\n", + " [ 2.04650000e+03 1.46164286e+03]\n", + " [ 2.04650000e+03 1.75407143e+03]\n", + " [ 2.04650000e+03 2.04650000e+03]\n", + " [ 5.00000148e-01 1.27000000e+02]\n", + " [ 5.00000006e-01 4.85400000e+02]\n", + " [ 4.99999879e-01 8.43800000e+02]\n", + " [ 4.99999939e-01 1.20220000e+03]\n", + " [ 5.00000182e-01 1.56060000e+03]\n", + " [ 5.00000197e-01 1.91900000e+03]\n", + " [ 1.27000000e+02 4.99999893e-01]\n", + " [ 4.85400000e+02 5.00000055e-01]\n", + " [ 8.43800000e+02 4.99999998e-01]\n", + " [ 1.20220000e+03 5.00000122e-01]\n", + " [ 1.56060000e+03 4.99999912e-01]\n", + " [ 1.91900000e+03 5.00000160e-01]\n", + " [ 1.27000000e+02 2.04550000e+03]\n", + " [ 4.85400000e+02 2.04550000e+03]\n", + " [ 8.43800000e+02 2.04550000e+03]\n", + " [ 1.20220000e+03 2.04550000e+03]\n", + " [ 1.56060000e+03 2.04550000e+03]\n", + " [ 1.91900000e+03 2.04550000e+03]\n", + " [ 2.04550000e+03 1.27000000e+02]\n", + " [ 2.04550000e+03 4.85400000e+02]\n", + " [ 2.04550000e+03 8.43800000e+02]\n", + " [ 2.04550000e+03 1.20220000e+03]\n", + " [ 2.04550000e+03 1.56060000e+03]\n", + " [ 2.04550000e+03 1.91900000e+03]\n", + " [ 4.99999930e-01 4.99999931e-01]\n", + " [ 4.99999930e-01 4.99999931e-01]\n", + " [ 2.04550000e+03 2.04550000e+03]\n", + " [ 2.04550000e+03 2.04550000e+03]\n", + " [ 1.27000000e+02 1.27000000e+02]\n", + " [ 4.85400000e+02 1.27000000e+02]\n", + " [ 8.43800000e+02 1.27000000e+02]\n", + " [ 1.20220000e+03 1.27000000e+02]\n", + " [ 1.56060000e+03 1.27000000e+02]\n", + " [ 1.91900000e+03 1.27000000e+02]\n", + " [ 1.27000000e+02 4.85400000e+02]\n", + " [ 4.85400000e+02 4.85400000e+02]\n", + " [ 8.43800000e+02 4.85400000e+02]\n", + " [ 1.20220000e+03 4.85400000e+02]\n", + " [ 1.56060000e+03 4.85400000e+02]\n", + " [ 1.91900000e+03 4.85400000e+02]\n", + " [ 1.27000000e+02 8.43800000e+02]\n", + " [ 4.85400000e+02 8.43800000e+02]\n", + " [ 8.43800000e+02 8.43800000e+02]\n", + " [ 1.20220000e+03 8.43800000e+02]\n", + " [ 1.56060000e+03 8.43800000e+02]\n", + " [ 1.91900000e+03 8.43800000e+02]\n", + " [ 1.27000000e+02 1.20220000e+03]\n", + " [ 4.85400000e+02 1.20220000e+03]\n", + " [ 8.43800000e+02 1.20220000e+03]\n", + " [ 1.20220000e+03 1.20220000e+03]\n", + " [ 1.56060000e+03 1.20220000e+03]\n", + " [ 1.91900000e+03 1.20220000e+03]\n", + " [ 1.27000000e+02 1.56060000e+03]\n", + " [ 4.85400000e+02 1.56060000e+03]\n", + " [ 8.43800000e+02 1.56060000e+03]\n", + " [ 1.20220000e+03 1.56060000e+03]\n", + " [ 1.56060000e+03 1.56060000e+03]\n", + " [ 1.91900000e+03 1.56060000e+03]\n", + " [ 1.27000000e+02 1.91900000e+03]\n", + " [ 4.85400000e+02 1.91900000e+03]\n", + " [ 8.43800000e+02 1.91900000e+03]\n", + " [ 1.20220000e+03 1.91900000e+03]\n", + " [ 1.56060000e+03 1.91900000e+03]\n", + " [ 1.91900000e+03 1.91900000e+03]]\n", + "DEBUG:root:fitpix2pix: ccdpx: shape: (96, 2)\n", + "DEBUG:root:fitpix2pix: visCut: True\n", + "DEBUG:root:optics_fp: rtanth: [45.08354623 42.13009767 39.44420909 37.08406184 35.11539785 33.60708557\n", + " 32.6230401 32.21134587 45.08354623 42.06280558 39.30031295 36.85418691\n", + " 34.79122159 33.18295674 32.09781375 31.58974814 32.21134587 27.8266828\n", + " 23.4426803 19.05979422 14.67902457 10.30307141 5.94258442 1.71954938\n", + " 31.58974814 27.2090275 22.83049885 18.45572241 14.0881941 9.73767156\n", + " 5.44507054 1.71954938 43.75525849 40.30775232 37.31902868 34.90712904\n", + " 33.19801449 32.30342747 43.72724359 40.19104921 37.09948507 34.57203928\n", + " 32.73962065 31.72289982 30.29997699 24.92663654 19.55475813 14.18600274\n", + " 8.82607125 3.51555769 29.68028893 24.31279095 18.95011366 13.59796176\n", + " 8.27677911 3.14775039 45.06233412 45.06233412 1.74001001 1.74001001\n", + " 42.37901039 38.71988024 35.50042932 32.85018402 30.91587699 29.8370753\n", + " 38.80944181 34.77673616 31.15241137 28.09496116 25.80666004 24.50394488\n", + " 35.69548681 31.26365913 27.1747629 23.607665 20.83215559 19.19474717\n", + " 33.16572831 28.34103278 23.75427319 19.57344126 16.11758242 13.93686031\n", + " 31.36185649 26.20714877 21.16284486 16.33156793 11.97401233 8.82250437\n", + " 30.41330799 25.06427551 19.72990783 14.4264816 9.20761812 4.38632462]\n", + "DEBUG:root:optics_fp: cphi: [0.71431368 0.76437722 0.81641337 0.86835883 0.91702693 0.95816873\n", + " 0.9870555 0.99965535 0.71431368 0.66132929 0.5962023 0.51675291\n", + " 0.42131547 0.30954599 0.18335276 0.04744559 0.99965535 0.9995376\n", + " 0.99934763 0.99901176 0.99833132 0.99660587 0.98975 0.86955594\n", + " 0.04744559 0.05506581 0.06560435 0.08112784 0.10624255 0.15365671\n", + " 0.27469828 0.86955594 0.73565039 0.79855486 0.86249109 0.9220669\n", + " 0.96951843 0.99634831 0.69273272 0.61992142 0.52667287 0.40967477\n", + " 0.26839934 0.10753407 0.99959633 0.99940262 0.99902775 0.99814911\n", + " 0.99520453 0.969333 0.0509959 0.06222863 0.07980586 0.1111717\n", + " 0.18256945 0.47985554 0.71431702 0.71431702 0.86795254 0.86795254\n", + " 0.71476593 0.64346978 0.55038977 0.43114136 0.28422526 0.11432331\n", + " 0.78049181 0.71641143 0.62718906 0.50409223 0.34047225 0.13917969\n", + " 0.84856189 0.79689424 0.71896966 0.59988271 0.42174368 0.17764392\n", + " 0.9132683 0.87905083 0.82247132 0.72349099 0.54506987 0.24461812\n", + " 0.96577787 0.95060272 0.92315504 0.86706843 0.73363771 0.38635141\n", + " 0.99587869 0.99392322 0.99017013 0.9815259 0.95398889 0.77695241]\n", + "DEBUG:root:optics_fp: sphi: [0.69982566 0.64476931 0.57746793 0.49593643 0.39882528 0.28620393\n", + " 0.16037903 0.02625233 0.69982566 0.75009571 0.80283424 0.85613459\n", + " 0.90691415 0.95088447 0.98304718 0.99887382 0.02625233 0.03040715\n", + " 0.0361152 0.04444666 0.05774576 0.08232094 0.14281086 0.49383445\n", + " 0.99887382 0.99848273 0.99784571 0.9967037 0.99434024 0.98812429\n", + " 0.96153048 0.49383445 0.67736143 0.60192204 0.50607224 0.38703053\n", + " 0.24501841 0.0853818 0.72119441 0.7846639 0.85006805 0.91223165\n", + " 0.96330774 0.9942014 0.02841071 0.03456004 0.04408579 0.06081407\n", + " 0.0978159 0.24575094 0.99869886 0.99806192 0.99681043 0.99380121\n", + " 0.98319296 0.87734751 0.69982226 0.69982226 0.49664714 0.49664714\n", + " 0.69936375 0.76547151 0.83490784 0.90228439 0.95875753 0.9934436\n", + " 0.62516601 0.69767805 0.77886705 0.86364983 0.94025457 0.99026714\n", + " 0.52909613 0.60411884 0.69504146 0.80008796 0.9067151 0.98409483\n", + " 0.40735858 0.47672806 0.56880658 0.69033382 0.83839063 0.9696195\n", + " 0.25937061 0.31041017 0.38442785 0.49818906 0.67954081 0.92235166\n", + " 0.0906953 0.11007561 0.13986822 0.1913293 0.29984194 0.62955934]\n", + "DEBUG:root:optics_fp: xyfp: [[-32.203794 -31.5506227 ]\n", + " [-32.20328688 -27.16419416]\n", + " [-32.20277976 -22.77776561]\n", + " [-32.20227264 -18.39133707]\n", + " [-32.20176553 -14.00490853]\n", + " [-32.20125841 -9.61847999]\n", + " [-32.20075129 -5.23205144]\n", + " [-32.20024417 -0.8456229 ]\n", + " [-32.203794 -31.5506227 ]\n", + " [-27.81736545 -31.55112981]\n", + " [-23.43093691 -31.55163693]\n", + " [-19.04450837 -31.55214405]\n", + " [-14.65807983 -31.55265117]\n", + " [-10.27165129 -31.55315829]\n", + " [ -5.88522274 -31.5536654 ]\n", + " [ -1.4987942 -31.55417252]\n", + " [-32.20024417 -0.8456229 ]\n", + " [-27.81381563 -0.84613002]\n", + " [-23.42738708 -0.84663714]\n", + " [-19.04095854 -0.84714426]\n", + " [-14.65453 -0.84765137]\n", + " [-10.26810146 -0.84815849]\n", + " [ -5.88167292 -0.84866561]\n", + " [ -1.49524438 -0.84917273]\n", + " [ -1.4987942 -31.55417252]\n", + " [ -1.49828708 -27.16774398]\n", + " [ -1.49777997 -22.78131544]\n", + " [ -1.49727285 -18.39488689]\n", + " [ -1.49676573 -14.00845835]\n", + " [ -1.49625861 -9.62202981]\n", + " [ -1.49575149 -5.23560127]\n", + " [ -1.49524438 -0.84917273]\n", + " [-32.18857289 -29.63812445]\n", + " [-32.18795136 -24.26212448]\n", + " [-32.18732984 -18.88612452]\n", + " [-32.18670832 -13.51012455]\n", + " [-32.1860868 -8.13412459]\n", + " [-32.18546528 -2.75812462]\n", + " [-30.29129227 -31.5358438 ]\n", + " [-24.91529231 -31.53646533]\n", + " [-19.53929235 -31.53708685]\n", + " [-14.16329238 -31.53770837]\n", + " [ -8.78729242 -31.53832989]\n", + " [ -3.41129245 -31.53895142]\n", + " [-30.28774592 -0.86084401]\n", + " [-24.91174595 -0.86146553]\n", + " [-19.53574599 -0.86208705]\n", + " [-14.15974603 -0.86270858]\n", + " [ -8.78374606 -0.8633301 ]\n", + " [ -3.4077461 -0.86395162]\n", + " [ -1.5135731 -29.6416708 ]\n", + " [ -1.51295157 -24.26567084]\n", + " [ -1.51233005 -18.88967087]\n", + " [ -1.51170853 -13.51367091]\n", + " [ -1.51108701 -8.13767095]\n", + " [ -1.51046548 -2.76167097]\n", + " [-32.18879227 -31.53562444]\n", + " [-32.18879227 -31.53562444]\n", + " [ -1.51024611 -0.86417099]\n", + " [ -1.51024611 -0.86417099]\n", + " [-30.29107291 -29.63834382]\n", + " [-24.91507294 -29.63896534]\n", + " [-19.53907298 -29.63958686]\n", + " [-14.16307301 -29.64020839]\n", + " [ -8.78707305 -29.64082991]\n", + " [ -3.41107308 -29.64145143]\n", + " [-30.29045138 -24.26234385]\n", + " [-24.91445142 -24.26296538]\n", + " [-19.53845145 -24.2635869 ]\n", + " [-14.16245149 -24.26420842]\n", + " [ -8.78645152 -24.26482994]\n", + " [ -3.41045156 -24.26545147]\n", + " [-30.28982986 -18.88634389]\n", + " [-24.91382989 -18.88696541]\n", + " [-19.53782993 -18.88758693]\n", + " [-14.16182997 -18.88820846]\n", + " [ -8.78583 -18.88882997]\n", + " [ -3.40983004 -18.8894515 ]\n", + " [-30.28920834 -13.51034392]\n", + " [-24.91320837 -13.51096545]\n", + " [-19.53720841 -13.51158697]\n", + " [-14.16120844 -13.51220849]\n", + " [ -8.78520848 -13.51283002]\n", + " [ -3.40920852 -13.51345154]\n", + " [-30.28858681 -8.13434396]\n", + " [-24.91258685 -8.13496548]\n", + " [-19.53658688 -8.135587 ]\n", + " [-14.16058692 -8.13620852]\n", + " [ -8.78458696 -8.13683005]\n", + " [ -3.40858699 -8.13745157]\n", + " [-30.28796529 -2.75834399]\n", + " [-24.91196532 -2.75896552]\n", + " [-19.53596536 -2.75958704]\n", + " [-14.1599654 -2.76020856]\n", + " [ -8.78396543 -2.76083009]\n", + " [ -3.40796547 -2.76145161]]\n", + "DEBUG:root:optics_fp: xyfp shape: (96, 2)\n", + "DEBUG:root:make_az_asym: xyp: [[-32.203794 -31.5506227 ]\n", + " [-32.20328688 -27.16419416]\n", + " [-32.20277976 -22.77776561]\n", + " [-32.20227264 -18.39133707]\n", + " [-32.20176553 -14.00490853]\n", + " [-32.20125841 -9.61847999]\n", + " [-32.20075129 -5.23205144]\n", + " [-32.20024417 -0.8456229 ]\n", + " [-32.203794 -31.5506227 ]\n", + " [-27.81736545 -31.55112981]\n", + " [-23.43093691 -31.55163693]\n", + " [-19.04450837 -31.55214405]\n", + " [-14.65807983 -31.55265117]\n", + " [-10.27165129 -31.55315829]\n", + " [ -5.88522274 -31.5536654 ]\n", + " [ -1.4987942 -31.55417252]\n", + " [-32.20024417 -0.8456229 ]\n", + " [-27.81381563 -0.84613002]\n", + " [-23.42738708 -0.84663714]\n", + " [-19.04095854 -0.84714426]\n", + " [-14.65453 -0.84765137]\n", + " [-10.26810146 -0.84815849]\n", + " [ -5.88167292 -0.84866561]\n", + " [ -1.49524438 -0.84917273]\n", + " [ -1.4987942 -31.55417252]\n", + " [ -1.49828708 -27.16774398]\n", + " [ -1.49777997 -22.78131544]\n", + " [ -1.49727285 -18.39488689]\n", + " [ -1.49676573 -14.00845835]\n", + " [ -1.49625861 -9.62202981]\n", + " [ -1.49575149 -5.23560127]\n", + " [ -1.49524438 -0.84917273]\n", + " [-32.18857289 -29.63812445]\n", + " [-32.18795136 -24.26212448]\n", + " [-32.18732984 -18.88612452]\n", + " [-32.18670832 -13.51012455]\n", + " [-32.1860868 -8.13412459]\n", + " [-32.18546528 -2.75812462]\n", + " [-30.29129227 -31.5358438 ]\n", + " [-24.91529231 -31.53646533]\n", + " [-19.53929235 -31.53708685]\n", + " [-14.16329238 -31.53770837]\n", + " [ -8.78729242 -31.53832989]\n", + " [ -3.41129245 -31.53895142]\n", + " [-30.28774592 -0.86084401]\n", + " [-24.91174595 -0.86146553]\n", + " [-19.53574599 -0.86208705]\n", + " [-14.15974603 -0.86270858]\n", + " [ -8.78374606 -0.8633301 ]\n", + " [ -3.4077461 -0.86395162]\n", + " [ -1.5135731 -29.6416708 ]\n", + " [ -1.51295157 -24.26567084]\n", + " [ -1.51233005 -18.88967087]\n", + " [ -1.51170853 -13.51367091]\n", + " [ -1.51108701 -8.13767095]\n", + " [ -1.51046548 -2.76167097]\n", + " [-32.18879227 -31.53562444]\n", + " [-32.18879227 -31.53562444]\n", + " [ -1.51024611 -0.86417099]\n", + " [ -1.51024611 -0.86417099]\n", + " [-30.29107291 -29.63834382]\n", + " [-24.91507294 -29.63896534]\n", + " [-19.53907298 -29.63958686]\n", + " [-14.16307301 -29.64020839]\n", + " [ -8.78707305 -29.64082991]\n", + " [ -3.41107308 -29.64145143]\n", + " [-30.29045138 -24.26234385]\n", + " [-24.91445142 -24.26296538]\n", + " [-19.53845145 -24.2635869 ]\n", + " [-14.16245149 -24.26420842]\n", + " [ -8.78645152 -24.26482994]\n", + " [ -3.41045156 -24.26545147]\n", + " [-30.28982986 -18.88634389]\n", + " [-24.91382989 -18.88696541]\n", + " [-19.53782993 -18.88758693]\n", + " [-14.16182997 -18.88820846]\n", + " [ -8.78583 -18.88882997]\n", + " [ -3.40983004 -18.8894515 ]\n", + " [-30.28920834 -13.51034392]\n", + " [-24.91320837 -13.51096545]\n", + " [-19.53720841 -13.51158697]\n", + " [-14.16120844 -13.51220849]\n", + " [ -8.78520848 -13.51283002]\n", + " [ -3.40920852 -13.51345154]\n", + " [-30.28858681 -8.13434396]\n", + " [-24.91258685 -8.13496548]\n", + " [-19.53658688 -8.135587 ]\n", + " [-14.16058692 -8.13620852]\n", + " [ -8.78458696 -8.13683005]\n", + " [ -3.40858699 -8.13745157]\n", + " [-30.28796529 -2.75834399]\n", + " [-24.91196532 -2.75896552]\n", + " [-19.53596536 -2.75958704]\n", + " [-14.1599654 -2.76020856]\n", + " [ -8.78396543 -2.76083009]\n", + " [ -3.40796547 -2.76145161]]\n", + "DEBUG:root:make_az_asym: xyp: shape: (96, 2)\n", + "DEBUG:root:radec2pix: xyfp: [[-32.203794 -31.5506227 ]\n", + " [-32.20328688 -27.16419416]\n", + " [-32.20277976 -22.77776561]\n", + " [-32.20227264 -18.39133707]\n", + " [-32.20176553 -14.00490853]\n", + " [-32.20125841 -9.61847999]\n", + " [-32.20075129 -5.23205144]\n", + " [-32.20024417 -0.8456229 ]\n", + " [-32.203794 -31.5506227 ]\n", + " [-27.81736545 -31.55112981]\n", + " [-23.43093691 -31.55163693]\n", + " [-19.04450837 -31.55214405]\n", + " [-14.65807983 -31.55265117]\n", + " [-10.27165129 -31.55315829]\n", + " [ -5.88522274 -31.5536654 ]\n", + " [ -1.4987942 -31.55417252]\n", + " [-32.20024417 -0.8456229 ]\n", + " [-27.81381563 -0.84613002]\n", + " [-23.42738708 -0.84663714]\n", + " [-19.04095854 -0.84714426]\n", + " [-14.65453 -0.84765137]\n", + " [-10.26810146 -0.84815849]\n", + " [ -5.88167292 -0.84866561]\n", + " [ -1.49524438 -0.84917273]\n", + " [ -1.4987942 -31.55417252]\n", + " [ -1.49828708 -27.16774398]\n", + " [ -1.49777997 -22.78131544]\n", + " [ -1.49727285 -18.39488689]\n", + " [ -1.49676573 -14.00845835]\n", + " [ -1.49625861 -9.62202981]\n", + " [ -1.49575149 -5.23560127]\n", + " [ -1.49524438 -0.84917273]\n", + " [-32.18857289 -29.63812445]\n", + " [-32.18795136 -24.26212448]\n", + " [-32.18732984 -18.88612452]\n", + " [-32.18670832 -13.51012455]\n", + " [-32.1860868 -8.13412459]\n", + " [-32.18546528 -2.75812462]\n", + " [-30.29129227 -31.5358438 ]\n", + " [-24.91529231 -31.53646533]\n", + " [-19.53929235 -31.53708685]\n", + " [-14.16329238 -31.53770837]\n", + " [ -8.78729242 -31.53832989]\n", + " [ -3.41129245 -31.53895142]\n", + " [-30.28774592 -0.86084401]\n", + " [-24.91174595 -0.86146553]\n", + " [-19.53574599 -0.86208705]\n", + " [-14.15974603 -0.86270858]\n", + " [ -8.78374606 -0.8633301 ]\n", + " [ -3.4077461 -0.86395162]\n", + " [ -1.5135731 -29.6416708 ]\n", + " [ -1.51295157 -24.26567084]\n", + " [ -1.51233005 -18.88967087]\n", + " [ -1.51170853 -13.51367091]\n", + " [ -1.51108701 -8.13767095]\n", + " [ -1.51046548 -2.76167097]\n", + " [-32.18879227 -31.53562444]\n", + " [-32.18879227 -31.53562444]\n", + " [ -1.51024611 -0.86417099]\n", + " [ -1.51024611 -0.86417099]\n", + " [-30.29107291 -29.63834382]\n", + " [-24.91507294 -29.63896534]\n", + " [-19.53907298 -29.63958686]\n", + " [-14.16307301 -29.64020839]\n", + " [ -8.78707305 -29.64082991]\n", + " [ -3.41107308 -29.64145143]\n", + " [-30.29045138 -24.26234385]\n", + " [-24.91445142 -24.26296538]\n", + " [-19.53845145 -24.2635869 ]\n", + " [-14.16245149 -24.26420842]\n", + " [ -8.78645152 -24.26482994]\n", + " [ -3.41045156 -24.26545147]\n", + " [-30.28982986 -18.88634389]\n", + " [-24.91382989 -18.88696541]\n", + " [-19.53782993 -18.88758693]\n", + " [-14.16182997 -18.88820846]\n", + " [ -8.78583 -18.88882997]\n", + " [ -3.40983004 -18.8894515 ]\n", + " [-30.28920834 -13.51034392]\n", + " [-24.91320837 -13.51096545]\n", + " [-19.53720841 -13.51158697]\n", + " [-14.16120844 -13.51220849]\n", + " [ -8.78520848 -13.51283002]\n", + " [ -3.40920852 -13.51345154]\n", + " [-30.28858681 -8.13434396]\n", + " [-24.91258685 -8.13496548]\n", + " [-19.53658688 -8.135587 ]\n", + " [-14.16058692 -8.13620852]\n", + " [ -8.78458696 -8.13683005]\n", + " [ -3.40858699 -8.13745157]\n", + " [-30.28796529 -2.75834399]\n", + " [-24.91196532 -2.75896552]\n", + " [-19.53596536 -2.75958704]\n", + " [-14.1599654 -2.76020856]\n", + " [ -8.78396543 -2.76083009]\n", + " [ -3.40796547 -2.76145161]]\n", + "DEBUG:root:radec2pix: xyfp Shape: (96, 2)\n", + "DEBUG:root:mm_to_pix: fitpx: [[0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]]\n", + "DEBUG:root:mm_to_pix: fitpx.shape: (96, 2)\n", + "DEBUG:root:radec2pix: curVec: [[-8.28069166e-02 2.42778320e-01 -9.66541102e-01]\n", + " [-9.76834085e-02 2.19425030e-01 -9.70726845e-01]\n", + " [-1.12778616e-01 1.95428973e-01 -9.74211733e-01]\n", + " [-1.28027971e-01 1.70876164e-01 -9.76939187e-01]\n", + " [-1.43367698e-01 1.45855270e-01 -9.78862576e-01]\n", + " [-1.58734205e-01 1.20458715e-01 -9.79945483e-01]\n", + " [-1.74064085e-01 9.47828614e-02 -9.80162182e-01]\n", + " [-1.89294552e-01 6.89274541e-02 -9.79498126e-01]\n", + " [-8.28069166e-02 2.42778320e-01 -9.66541102e-01]\n", + " [-5.83630527e-02 2.28075936e-01 -9.71892546e-01]\n", + " [-3.40020435e-02 2.13147611e-01 -9.76428163e-01]\n", + " [-9.82131382e-03 1.98052049e-01 -9.80142300e-01]\n", + " [ 1.40806589e-02 1.82848541e-01 -9.83040257e-01]\n", + " [ 3.76039641e-02 1.67596513e-01 -9.85138239e-01]\n", + " [ 6.06462997e-02 1.52355272e-01 -9.86463328e-01]\n", + " [ 8.31015429e-02 1.37184080e-01 -9.87053525e-01]\n", + " [-1.89294552e-01 6.89274541e-02 -9.79498126e-01]\n", + " [-1.63924455e-01 5.38468398e-02 -9.85002178e-01]\n", + " [-1.38490710e-01 3.87645692e-02 -9.89604786e-01]\n", + " [-1.13095672e-01 2.37407500e-02 -9.93300431e-01]\n", + " [-8.78414029e-02 8.83479655e-03 -9.96095294e-01]\n", + " [-6.28289225e-02 -5.89500799e-03 -9.98006901e-01]\n", + " [-3.81581608e-02 -2.03915487e-02 -9.99063631e-01]\n", + " [-1.39288539e-02 -3.45983699e-02 -9.99304228e-01]\n", + " [ 8.31015429e-02 1.37184080e-01 -9.87053525e-01]\n", + " [ 7.02708968e-02 1.13694783e-01 -9.91027496e-01]\n", + " [ 5.69872991e-02 8.97007325e-02 -9.94337079e-01]\n", + " [ 4.33197539e-02 6.52936573e-02 -9.96925342e-01]\n", + " [ 2.93331537e-02 4.05658254e-02 -9.98746204e-01]\n", + " [ 1.50895596e-02 1.56108284e-02 -9.99764276e-01]\n", + " [ 6.49216890e-04 -9.47612361e-03 -9.99954890e-01]\n", + " [-1.39288539e-02 -3.45983699e-02 -9.99304228e-01]\n", + " [-8.91780744e-02 2.32630663e-01 -9.68467989e-01]\n", + " [-1.07565191e-01 2.03565334e-01 -9.73134567e-01]\n", + " [-1.26216687e-01 1.73619900e-01 -9.76691086e-01]\n", + " [-1.45014886e-01 1.42956404e-01 -9.79047573e-01]\n", + " [-1.63842725e-01 1.11745018e-01 -9.80137038e-01]\n", + " [-1.82583702e-01 8.01645954e-02 -9.79916746e-01]\n", + " [-7.21953842e-02 2.36320667e-01 -9.68989354e-01]\n", + " [-4.22794678e-02 2.18141695e-01 -9.75000845e-01]\n", + " [-1.25846046e-02 1.99681742e-01 -9.79779990e-01]\n", + " [ 1.67083453e-02 1.81049746e-01 -9.83331999e-01]\n", + " [ 4.54153443e-02 1.62355079e-01 -9.85686702e-01]\n", + " [ 7.33465571e-02 1.43706889e-01 -9.86898481e-01]\n", + " [-1.78195632e-01 6.24449122e-02 -9.82011685e-01]\n", + " [-1.47046508e-01 4.39532813e-02 -9.88152536e-01]\n", + " [-1.15903575e-01 2.55187620e-02 -9.92932603e-01]\n", + " [-8.49548951e-02 7.25105641e-03 -9.96358413e-01]\n", + " [-5.43864326e-02 -1.07425395e-02 -9.98462174e-01]\n", + " [-2.43819875e-02 -2.83571960e-02 -9.99300449e-01]\n", + " [ 7.74914116e-02 1.27062171e-01 -9.88863128e-01]\n", + " [ 6.14510455e-02 9.79222229e-02 -9.93295025e-01]\n", + " [ 4.47995783e-02 6.81151400e-02 -9.96671122e-01]\n", + " [ 2.76581128e-02 3.78105050e-02 -9.98902095e-01]\n", + " [ 1.01410131e-02 7.18064973e-03 -9.99922796e-01]\n", + " [-7.64133158e-03 -2.35985196e-02 -9.99692313e-01]\n", + " [-8.27737180e-02 2.42649825e-01 -9.66576212e-01]\n", + " [-8.27737180e-02 2.42649825e-01 -9.66576212e-01]\n", + " [-1.39608209e-02 -3.44644843e-02 -9.99308408e-01]\n", + " [-1.39608209e-02 -3.44644843e-02 -9.99308408e-01]\n", + " [-7.85569317e-02 2.26278206e-01 -9.70889789e-01]\n", + " [-4.85099672e-02 2.08046125e-01 -9.76915346e-01]\n", + " [-1.86699803e-02 1.89552545e-01 -9.81693060e-01]\n", + " [ 1.07821231e-02 1.70906901e-01 -9.85228185e-01]\n", + " [ 3.96629291e-02 1.52218961e-01 -9.87550627e-01]\n", + " [ 6.77839583e-02 1.33598085e-01 -9.88714765e-01]\n", + " [-9.68360000e-02 1.97154787e-01 -9.75578177e-01]\n", + " [-6.64558297e-02 1.78795333e-01 -9.81639369e-01]\n", + " [-3.62439467e-02 1.60230440e-01 -9.86414002e-01]\n", + " [-6.38201195e-03 1.41570720e-01 -9.89907572e-01]\n", + " [ 2.29475518e-02 1.22926730e-01 -9.92150406e-01]\n", + " [ 5.15594088e-02 1.04408132e-01 -9.93197145e-01]\n", + " [-1.15399327e-01 1.67163222e-01 -9.79152415e-01]\n", + " [-8.47427626e-02 1.48711573e-01 -9.85242880e-01]\n", + " [-5.42167931e-02 1.30112230e-01 -9.90015832e-01]\n", + " [-2.40045007e-02 1.11476496e-01 -9.93477113e-01]\n", + " [ 5.71164657e-03 9.29151196e-02 -9.95657651e-01]\n", + " [ 3.47482287e-02 7.45374780e-02 -9.96612625e-01]\n", + " [-1.34129801e-01 1.36465920e-01 -9.81522414e-01]\n", + " [-1.03255026e-01 1.17958445e-01 -9.87635664e-01]\n", + " [-7.24735257e-02 9.93628296e-02 -9.92408493e-01]\n", + " [-4.19700886e-02 8.07905141e-02 -9.95847079e-01]\n", + " [-1.19279602e-02 6.23518123e-02 -9.97982953e-01]\n", + " [ 1.74702001e-02 4.41552113e-02 -9.98871918e-01]\n", + " [-1.52910964e-01 1.05233396e-01 -9.82621071e-01]\n", + " [-1.21877891e-01 8.67072833e-02 -9.88750538e-01]\n", + " [-9.09009130e-02 6.81541300e-02 -9.93525057e-01]\n", + " [-6.01664556e-02 4.96849647e-02 -9.96951053e-01]\n", + " [-2.98589111e-02 3.14091008e-02 -9.99060516e-01]\n", + " [-1.61062115e-04 1.34336480e-02 -9.99909752e-01]\n", + " [-1.71626816e-01 7.36447442e-02 -9.82405562e-01]\n", + " [-1.40496948e-01 5.51375118e-02 -9.88544618e-01]\n", + " [-1.09386213e-01 3.66653509e-02 -9.93322862e-01]\n", + " [-7.84823347e-02 1.83383842e-02 -9.96746822e-01]\n", + " [-4.79708955e-02 2.64487938e-04 -9.98848699e-01]\n", + " [-1.80353686e-02 -1.74508969e-02 -9.99685046e-01]]\n", + "DEBUG:root:radec2pix: curVec Shape: (96, 3)\n", + "DEBUG:root:radec2pix: xyfp: [[-32.203794 -31.5506227 ]\n", + " [-32.20328688 -27.16419416]\n", + " [-32.20277976 -22.77776561]\n", + " [-32.20227264 -18.39133707]\n", + " [-32.20176553 -14.00490853]\n", + " [-32.20125841 -9.61847999]\n", + " [-32.20075129 -5.23205144]\n", + " [-32.20024417 -0.8456229 ]\n", + " [-32.203794 -31.5506227 ]\n", + " [-27.81736545 -31.55112981]\n", + " [-23.43093691 -31.55163693]\n", + " [-19.04450837 -31.55214405]\n", + " [-14.65807983 -31.55265117]\n", + " [-10.27165129 -31.55315829]\n", + " [ -5.88522274 -31.5536654 ]\n", + " [ -1.4987942 -31.55417252]\n", + " [-32.20024417 -0.8456229 ]\n", + " [-27.81381563 -0.84613002]\n", + " [-23.42738708 -0.84663714]\n", + " [-19.04095854 -0.84714426]\n", + " [-14.65453 -0.84765137]\n", + " [-10.26810146 -0.84815849]\n", + " [ -5.88167292 -0.84866561]\n", + " [ -1.49524438 -0.84917273]\n", + " [ -1.4987942 -31.55417252]\n", + " [ -1.49828708 -27.16774398]\n", + " [ -1.49777997 -22.78131544]\n", + " [ -1.49727285 -18.39488689]\n", + " [ -1.49676573 -14.00845835]\n", + " [ -1.49625861 -9.62202981]\n", + " [ -1.49575149 -5.23560127]\n", + " [ -1.49524438 -0.84917273]\n", + " [-32.18857289 -29.63812445]\n", + " [-32.18795136 -24.26212448]\n", + " [-32.18732984 -18.88612452]\n", + " [-32.18670832 -13.51012455]\n", + " [-32.1860868 -8.13412459]\n", + " [-32.18546528 -2.75812462]\n", + " [-30.29129227 -31.5358438 ]\n", + " [-24.91529231 -31.53646533]\n", + " [-19.53929235 -31.53708685]\n", + " [-14.16329238 -31.53770837]\n", + " [ -8.78729242 -31.53832989]\n", + " [ -3.41129245 -31.53895142]\n", + " [-30.28774592 -0.86084401]\n", + " [-24.91174595 -0.86146553]\n", + " [-19.53574599 -0.86208705]\n", + " [-14.15974603 -0.86270858]\n", + " [ -8.78374606 -0.8633301 ]\n", + " [ -3.4077461 -0.86395162]\n", + " [ -1.5135731 -29.6416708 ]\n", + " [ -1.51295157 -24.26567084]\n", + " [ -1.51233005 -18.88967087]\n", + " [ -1.51170853 -13.51367091]\n", + " [ -1.51108701 -8.13767095]\n", + " [ -1.51046548 -2.76167097]\n", + " [-32.18879227 -31.53562444]\n", + " [-32.18879227 -31.53562444]\n", + " [ -1.51024611 -0.86417099]\n", + " [ -1.51024611 -0.86417099]\n", + " [-30.29107291 -29.63834382]\n", + " [-24.91507294 -29.63896534]\n", + " [-19.53907298 -29.63958686]\n", + " [-14.16307301 -29.64020839]\n", + " [ -8.78707305 -29.64082991]\n", + " [ -3.41107308 -29.64145143]\n", + " [-30.29045138 -24.26234385]\n", + " [-24.91445142 -24.26296538]\n", + " [-19.53845145 -24.2635869 ]\n", + " [-14.16245149 -24.26420842]\n", + " [ -8.78645152 -24.26482994]\n", + " [ -3.41045156 -24.26545147]\n", + " [-30.28982986 -18.88634389]\n", + " [-24.91382989 -18.88696541]\n", + " [-19.53782993 -18.88758693]\n", + " [-14.16182997 -18.88820846]\n", + " [ -8.78583 -18.88882997]\n", + " [ -3.40983004 -18.8894515 ]\n", + " [-30.28920834 -13.51034392]\n", + " [-24.91320837 -13.51096545]\n", + " [-19.53720841 -13.51158697]\n", + " [-14.16120844 -13.51220849]\n", + " [ -8.78520848 -13.51283002]\n", + " [ -3.40920852 -13.51345154]\n", + " [-30.28858681 -8.13434396]\n", + " [-24.91258685 -8.13496548]\n", + " [-19.53658688 -8.135587 ]\n", + " [-14.16058692 -8.13620852]\n", + " [ -8.78458696 -8.13683005]\n", + " [ -3.40858699 -8.13745157]\n", + " [-30.28796529 -2.75834399]\n", + " [-24.91196532 -2.75896552]\n", + " [-19.53596536 -2.75958704]\n", + " [-14.1599654 -2.76020856]\n", + " [ -8.78396543 -2.76083009]\n", + " [ -3.40796547 -2.76145161]]\n", + "DEBUG:root:radec2pix: camVec: [[-0.00156258 -0.00157957 -0.00159468 -0.00160787 -0.00161907 -0.00162822\n", + " -0.00163527 -0.00164017 -0.00156258 -0.0305812 -0.05948043 -0.08814769\n", + " -0.11647141 -0.14434091 -0.17164574 -0.19827444 -0.00164017 -0.03165868\n", + " -0.06155164 -0.09120162 -0.12049415 -0.14931846 -0.17756745 -0.20513658\n", + " -0.19827444 -0.2000398 -0.20154417 -0.20278831 -0.20377138 -0.20449167\n", + " -0.20494724 -0.20513658 -0.00166992 -0.00169047 -0.00170796 -0.0017223\n", + " -0.00173334 -0.001741 -0.0142227 -0.04972296 -0.08493191 -0.1196437\n", + " -0.15365451 -0.18676067 -0.01473616 -0.05145726 -0.08787283 -0.12377083\n", + " -0.15894736 -0.19320639 -0.19898619 -0.20097311 -0.20256914 -0.20377339\n", + " -0.20458276 -0.20499385 -0.00166195 -0.00166195 -0.20504339 -0.20504339\n", + " -0.01428012 -0.04992014 -0.08526785 -0.1201171 -0.15426444 -0.18750721\n", + " -0.01442512 -0.05041664 -0.08611259 -0.12130566 -0.1557929 -0.1893742\n", + " -0.01454351 -0.0508198 -0.08679712 -0.1222667 -0.15702557 -0.19087549\n", + " -0.01463451 -0.05112705 -0.08731762 -0.122996 -0.15795892 -0.19200933\n", + " -0.01469728 -0.05133568 -0.08766989 -0.12348855 -0.15858803 -0.19277198\n", + " -0.01473117 -0.05144352 -0.08785049 -0.12374011 -0.1589085 -0.19315962]\n", + " [ 0.20900824 0.18154377 0.15338464 0.12463517 0.09540199 0.06579532\n", + " 0.03592916 0.00592057 0.20900824 0.20886066 0.2084416 0.2077524\n", + " 0.20679486 0.20557063 0.20408052 0.20232383 0.00592057 0.00591961\n", + " 0.00591082 0.00589429 0.00587015 0.00583856 0.00579969 0.00575368\n", + " 0.20232383 0.17576331 0.1485108 0.12067777 0.09237455 0.06371165\n", + " 0.03480051 0.00575368 0.19712565 0.16298492 0.12790428 0.09207897\n", + " 0.05571194 0.01901436 0.20888472 0.20852129 0.20775151 0.20657854\n", + " 0.20500532 0.20303275 0.00602383 0.00601719 0.00599868 0.00596852\n", + " 0.005927 0.00587443 0.19084173 0.15780847 0.12384677 0.08916013\n", + " 0.05395206 0.01842821 0.20891558 0.20891558 0.00585328 0.00585328\n", + " 0.19709662 0.19675396 0.1960282 0.19492287 0.19344162 0.19158618\n", + " 0.16296111 0.16267787 0.16207774 0.1611649 0.15994417 0.15841917\n", + " 0.12788582 0.12766348 0.12719172 0.12647465 0.12551724 0.12432386\n", + " 0.09206603 0.09190638 0.09156653 0.09104984 0.09036055 0.08950266\n", + " 0.05570466 0.05560934 0.05540465 0.05509277 0.05467653 0.0541587\n", + " 0.01901283 0.01898296 0.01891568 0.01881174 0.01867213 0.01849786]\n", + " [ 0.97791263 0.9833816 0.98816527 0.99220134 0.99543751 0.99783181\n", + " 0.999353 0.99998113 0.97791263 0.97746714 0.97622445 0.97420169\n", + " 0.97142694 0.96793926 0.96378882 0.95903718 0.99998113 0.99948121\n", + " 0.9980864 0.995815 0.99269668 0.98877192 0.98409154 0.97871644\n", + " 0.95903718 0.96389384 0.9681552 0.97175809 0.97465079 0.9767927\n", + " 0.97815416 0.97871644 0.98037681 0.98662711 0.99178505 0.99575022\n", + " 0.99844538 0.99981769 0.97783684 0.97675304 0.9744875 0.97108738\n", + " 0.9666246 0.96119621 0.99987327 0.99865707 0.99611364 0.99229288\n", + " 0.98726927 0.98114055 0.96124083 0.9668021 0.97140502 0.97494968\n", + " 0.97736128 0.97858976 0.97793227 0.97793227 0.97873538 0.97873538\n", + " 0.98028006 0.97918122 0.976884 0.97343565 0.96890806 0.96339804\n", + " 0.98652704 0.98539031 0.98301344 0.97944414 0.97475455 0.96904116\n", + " 0.99168226 0.99051471 0.98807314 0.98440592 0.97958583 0.97370947\n", + " 0.99564536 0.99445424 0.99196331 0.98822159 0.98330257 0.97730327\n", + " 0.99833911 0.99713201 0.99460762 0.9908155 0.98582976 0.97974782\n", + " 0.99971071 0.99849547 0.99595406 0.99213633 0.98711673 0.98099296]]\n", + "DEBUG:root:radec2pix: camVec Shape: (3, 96)\n", + "DEBUG:root:radec2pix: ccdpx: [[-4.45000001e+01 -5.00000132e-01]\n", + " [-4.45000001e+01 2.91928571e+02]\n", + " [-4.44999999e+01 5.84357143e+02]\n", + " [-4.44999998e+01 8.76785714e+02]\n", + " [-4.45000000e+01 1.16921429e+03]\n", + " [-4.45000002e+01 1.46164286e+03]\n", + " [-4.44999998e+01 1.75407143e+03]\n", + " [-4.44999999e+01 2.04650000e+03]\n", + " [-4.45000001e+01 -5.00000132e-01]\n", + " [ 2.47928572e+02 -4.99999845e-01]\n", + " [ 5.40357143e+02 -5.00000146e-01]\n", + " [ 8.32785714e+02 -4.99999843e-01]\n", + " [ 1.12521429e+03 -4.99999832e-01]\n", + " [ 1.41764286e+03 -5.00000031e-01]\n", + " [ 1.71007143e+03 -5.00000120e-01]\n", + " [ 2.00250000e+03 -4.99999883e-01]\n", + " [-4.44999999e+01 2.04650000e+03]\n", + " [ 2.47928572e+02 2.04650000e+03]\n", + " [ 5.40357143e+02 2.04650000e+03]\n", + " [ 8.32785714e+02 2.04650000e+03]\n", + " [ 1.12521429e+03 2.04650000e+03]\n", + " [ 1.41764286e+03 2.04650000e+03]\n", + " [ 1.71007143e+03 2.04650000e+03]\n", + " [ 2.00250000e+03 2.04650000e+03]\n", + " [ 2.00250000e+03 -4.99999883e-01]\n", + " [ 2.00250000e+03 2.91928571e+02]\n", + " [ 2.00250000e+03 5.84357143e+02]\n", + " [ 2.00250000e+03 8.76785714e+02]\n", + " [ 2.00250000e+03 1.16921429e+03]\n", + " [ 2.00250000e+03 1.46164286e+03]\n", + " [ 2.00250000e+03 1.75407143e+03]\n", + " [ 2.00250000e+03 2.04650000e+03]\n", + " [-4.35000002e+01 1.27000000e+02]\n", + " [-4.34999998e+01 4.85400000e+02]\n", + " [-4.34999999e+01 8.43800000e+02]\n", + " [-4.35000001e+01 1.20220000e+03]\n", + " [-4.34999999e+01 1.56060000e+03]\n", + " [-4.35000000e+01 1.91900000e+03]\n", + " [ 8.30000001e+01 5.00000120e-01]\n", + " [ 4.41400000e+02 4.99999839e-01]\n", + " [ 7.99800000e+02 4.99999975e-01]\n", + " [ 1.15820000e+03 5.00000060e-01]\n", + " [ 1.51660000e+03 5.00000260e-01]\n", + " [ 1.87500000e+03 4.99999701e-01]\n", + " [ 8.29999997e+01 2.04550000e+03]\n", + " [ 4.41400000e+02 2.04550000e+03]\n", + " [ 7.99800000e+02 2.04550000e+03]\n", + " [ 1.15820000e+03 2.04550000e+03]\n", + " [ 1.51660000e+03 2.04550000e+03]\n", + " [ 1.87500000e+03 2.04550000e+03]\n", + " [ 2.00150000e+03 1.27000000e+02]\n", + " [ 2.00150000e+03 4.85400000e+02]\n", + " [ 2.00150000e+03 8.43800000e+02]\n", + " [ 2.00150000e+03 1.20220000e+03]\n", + " [ 2.00150000e+03 1.56060000e+03]\n", + " [ 2.00150000e+03 1.91900000e+03]\n", + " [-4.35000003e+01 4.99999746e-01]\n", + " [-4.35000003e+01 4.99999746e-01]\n", + " [ 2.00150000e+03 2.04550000e+03]\n", + " [ 2.00150000e+03 2.04550000e+03]\n", + " [ 8.29999998e+01 1.27000000e+02]\n", + " [ 4.41400000e+02 1.27000000e+02]\n", + " [ 7.99800000e+02 1.27000000e+02]\n", + " [ 1.15820000e+03 1.27000000e+02]\n", + " [ 1.51660000e+03 1.27000000e+02]\n", + " [ 1.87500000e+03 1.27000000e+02]\n", + " [ 8.30000000e+01 4.85400000e+02]\n", + " [ 4.41400000e+02 4.85400000e+02]\n", + " [ 7.99800000e+02 4.85400000e+02]\n", + " [ 1.15820000e+03 4.85400000e+02]\n", + " [ 1.51660000e+03 4.85400000e+02]\n", + " [ 1.87500000e+03 4.85400000e+02]\n", + " [ 8.29999999e+01 8.43800000e+02]\n", + " [ 4.41400000e+02 8.43800000e+02]\n", + " [ 7.99800000e+02 8.43800000e+02]\n", + " [ 1.15820000e+03 8.43800000e+02]\n", + " [ 1.51660000e+03 8.43800000e+02]\n", + " [ 1.87500000e+03 8.43800000e+02]\n", + " [ 8.29999998e+01 1.20220000e+03]\n", + " [ 4.41400000e+02 1.20220000e+03]\n", + " [ 7.99800000e+02 1.20220000e+03]\n", + " [ 1.15820000e+03 1.20220000e+03]\n", + " [ 1.51660000e+03 1.20220000e+03]\n", + " [ 1.87500000e+03 1.20220000e+03]\n", + " [ 8.30000000e+01 1.56060000e+03]\n", + " [ 4.41400000e+02 1.56060000e+03]\n", + " [ 7.99800000e+02 1.56060000e+03]\n", + " [ 1.15820000e+03 1.56060000e+03]\n", + " [ 1.51660000e+03 1.56060000e+03]\n", + " [ 1.87500000e+03 1.56060000e+03]\n", + " [ 8.30000000e+01 1.91900000e+03]\n", + " [ 4.41400000e+02 1.91900000e+03]\n", + " [ 7.99800000e+02 1.91900000e+03]\n", + " [ 1.15820000e+03 1.91900000e+03]\n", + " [ 1.51660000e+03 1.91900000e+03]\n", + " [ 1.87500000e+03 1.91900000e+03]]\n", + "DEBUG:root:cartToSphere: vec: [[-0.00156258 0.20900824 0.97791263]\n", + " [-0.00157957 0.18154377 0.9833816 ]\n", + " [-0.00159468 0.15338464 0.98816527]\n", + " [-0.00160787 0.12463517 0.99220134]\n", + " [-0.00161907 0.09540199 0.99543751]\n", + " [-0.00162822 0.06579532 0.99783181]\n", + " [-0.00163527 0.03592916 0.999353 ]\n", + " [-0.00164017 0.00592057 0.99998113]\n", + " [-0.00156258 0.20900824 0.97791263]\n", + " [-0.0305812 0.20886066 0.97746714]\n", + " [-0.05948043 0.2084416 0.97622445]\n", + " [-0.08814769 0.2077524 0.97420169]\n", + " [-0.11647141 0.20679486 0.97142694]\n", + " [-0.14434091 0.20557063 0.96793926]\n", + " [-0.17164574 0.20408052 0.96378882]\n", + " [-0.19827444 0.20232383 0.95903718]\n", + " [-0.00164017 0.00592057 0.99998113]\n", + " [-0.03165868 0.00591961 0.99948121]\n", + " [-0.06155164 0.00591082 0.9980864 ]\n", + " [-0.09120162 0.00589429 0.995815 ]\n", + " [-0.12049415 0.00587015 0.99269668]\n", + " [-0.14931846 0.00583856 0.98877192]\n", + " [-0.17756745 0.00579969 0.98409154]\n", + " [-0.20513658 0.00575368 0.97871644]\n", + " [-0.19827444 0.20232383 0.95903718]\n", + " [-0.2000398 0.17576331 0.96389384]\n", + " [-0.20154417 0.1485108 0.9681552 ]\n", + " [-0.20278831 0.12067777 0.97175809]\n", + " [-0.20377138 0.09237455 0.97465079]\n", + " [-0.20449167 0.06371165 0.9767927 ]\n", + " [-0.20494724 0.03480051 0.97815416]\n", + " [-0.20513658 0.00575368 0.97871644]\n", + " [-0.00166992 0.19712565 0.98037681]\n", + " [-0.00169047 0.16298492 0.98662711]\n", + " [-0.00170796 0.12790428 0.99178505]\n", + " [-0.0017223 0.09207897 0.99575022]\n", + " [-0.00173334 0.05571194 0.99844538]\n", + " [-0.001741 0.01901436 0.99981769]\n", + " [-0.0142227 0.20888472 0.97783684]\n", + " [-0.04972296 0.20852129 0.97675304]\n", + " [-0.08493191 0.20775151 0.9744875 ]\n", + " [-0.1196437 0.20657854 0.97108738]\n", + " [-0.15365451 0.20500532 0.9666246 ]\n", + " [-0.18676067 0.20303275 0.96119621]\n", + " [-0.01473616 0.00602383 0.99987327]\n", + " [-0.05145726 0.00601719 0.99865707]\n", + " [-0.08787283 0.00599868 0.99611364]\n", + " [-0.12377083 0.00596852 0.99229288]\n", + " [-0.15894736 0.005927 0.98726927]\n", + " [-0.19320639 0.00587443 0.98114055]\n", + " [-0.19898619 0.19084173 0.96124083]\n", + " [-0.20097311 0.15780847 0.9668021 ]\n", + " [-0.20256914 0.12384677 0.97140502]\n", + " [-0.20377339 0.08916013 0.97494968]\n", + " [-0.20458276 0.05395206 0.97736128]\n", + " [-0.20499385 0.01842821 0.97858976]\n", + " [-0.00166195 0.20891558 0.97793227]\n", + " [-0.00166195 0.20891558 0.97793227]\n", + " [-0.20504339 0.00585328 0.97873538]\n", + " [-0.20504339 0.00585328 0.97873538]\n", + " [-0.01428012 0.19709662 0.98028006]\n", + " [-0.04992014 0.19675396 0.97918122]\n", + " [-0.08526785 0.1960282 0.976884 ]\n", + " [-0.1201171 0.19492287 0.97343565]\n", + " [-0.15426444 0.19344162 0.96890806]\n", + " [-0.18750721 0.19158618 0.96339804]\n", + " [-0.01442512 0.16296111 0.98652704]\n", + " [-0.05041664 0.16267787 0.98539031]\n", + " [-0.08611259 0.16207774 0.98301344]\n", + " [-0.12130566 0.1611649 0.97944414]\n", + " [-0.1557929 0.15994417 0.97475455]\n", + " [-0.1893742 0.15841917 0.96904116]\n", + " [-0.01454351 0.12788582 0.99168226]\n", + " [-0.0508198 0.12766348 0.99051471]\n", + " [-0.08679712 0.12719172 0.98807314]\n", + " [-0.1222667 0.12647465 0.98440592]\n", + " [-0.15702557 0.12551724 0.97958583]\n", + " [-0.19087549 0.12432386 0.97370947]\n", + " [-0.01463451 0.09206603 0.99564536]\n", + " [-0.05112705 0.09190638 0.99445424]\n", + " [-0.08731762 0.09156653 0.99196331]\n", + " [-0.122996 0.09104984 0.98822159]\n", + " [-0.15795892 0.09036055 0.98330257]\n", + " [-0.19200933 0.08950266 0.97730327]\n", + " [-0.01469728 0.05570466 0.99833911]\n", + " [-0.05133568 0.05560934 0.99713201]\n", + " [-0.08766989 0.05540465 0.99460762]\n", + " [-0.12348855 0.05509277 0.9908155 ]\n", + " [-0.15858803 0.05467653 0.98582976]\n", + " [-0.19277198 0.0541587 0.97974782]\n", + " [-0.01473117 0.01901283 0.99971071]\n", + " [-0.05144352 0.01898296 0.99849547]\n", + " [-0.08785049 0.01891568 0.99595406]\n", + " [-0.12374011 0.01881174 0.99213633]\n", + " [-0.1589085 0.01867213 0.98711673]\n", + " [-0.19315962 0.01849786 0.98099296]]\n", + "DEBUG:root:radec2pix: fitpx: [[-5.00000135e-01 -5.00000132e-01]\n", + " [-5.00000144e-01 2.91928571e+02]\n", + " [-4.99999914e-01 5.84357143e+02]\n", + " [-4.99999810e-01 8.76785714e+02]\n", + " [-5.00000028e-01 1.16921429e+03]\n", + " [-5.00000159e-01 1.46164286e+03]\n", + " [-4.99999755e-01 1.75407143e+03]\n", + " [-4.99999923e-01 2.04650000e+03]\n", + " [-5.00000135e-01 -5.00000132e-01]\n", + " [ 2.91928572e+02 -4.99999845e-01]\n", + " [ 5.84357143e+02 -5.00000146e-01]\n", + " [ 8.76785714e+02 -4.99999843e-01]\n", + " [ 1.16921429e+03 -4.99999832e-01]\n", + " [ 1.46164286e+03 -5.00000031e-01]\n", + " [ 1.75407143e+03 -5.00000120e-01]\n", + " [ 2.04650000e+03 -4.99999883e-01]\n", + " [-4.99999923e-01 2.04650000e+03]\n", + " [ 2.91928572e+02 2.04650000e+03]\n", + " [ 5.84357143e+02 2.04650000e+03]\n", + " [ 8.76785714e+02 2.04650000e+03]\n", + " [ 1.16921429e+03 2.04650000e+03]\n", + " [ 1.46164286e+03 2.04650000e+03]\n", + " [ 1.75407143e+03 2.04650000e+03]\n", + " [ 2.04650000e+03 2.04650000e+03]\n", + " [ 2.04650000e+03 -4.99999883e-01]\n", + " [ 2.04650000e+03 2.91928571e+02]\n", + " [ 2.04650000e+03 5.84357143e+02]\n", + " [ 2.04650000e+03 8.76785714e+02]\n", + " [ 2.04650000e+03 1.16921429e+03]\n", + " [ 2.04650000e+03 1.46164286e+03]\n", + " [ 2.04650000e+03 1.75407143e+03]\n", + " [ 2.04650000e+03 2.04650000e+03]\n", + " [ 4.99999783e-01 1.27000000e+02]\n", + " [ 5.00000221e-01 4.85400000e+02]\n", + " [ 5.00000070e-01 8.43800000e+02]\n", + " [ 4.99999908e-01 1.20220000e+03]\n", + " [ 5.00000086e-01 1.56060000e+03]\n", + " [ 5.00000004e-01 1.91900000e+03]\n", + " [ 1.27000000e+02 5.00000120e-01]\n", + " [ 4.85400000e+02 4.99999839e-01]\n", + " [ 8.43800000e+02 4.99999975e-01]\n", + " [ 1.20220000e+03 5.00000060e-01]\n", + " [ 1.56060000e+03 5.00000260e-01]\n", + " [ 1.91900000e+03 4.99999701e-01]\n", + " [ 1.27000000e+02 2.04550000e+03]\n", + " [ 4.85400000e+02 2.04550000e+03]\n", + " [ 8.43800000e+02 2.04550000e+03]\n", + " [ 1.20220000e+03 2.04550000e+03]\n", + " [ 1.56060000e+03 2.04550000e+03]\n", + " [ 1.91900000e+03 2.04550000e+03]\n", + " [ 2.04550000e+03 1.27000000e+02]\n", + " [ 2.04550000e+03 4.85400000e+02]\n", + " [ 2.04550000e+03 8.43800000e+02]\n", + " [ 2.04550000e+03 1.20220000e+03]\n", + " [ 2.04550000e+03 1.56060000e+03]\n", + " [ 2.04550000e+03 1.91900000e+03]\n", + " [ 4.99999741e-01 4.99999746e-01]\n", + " [ 4.99999741e-01 4.99999746e-01]\n", + " [ 2.04550000e+03 2.04550000e+03]\n", + " [ 2.04550000e+03 2.04550000e+03]\n", + " [ 1.27000000e+02 1.27000000e+02]\n", + " [ 4.85400000e+02 1.27000000e+02]\n", + " [ 8.43800000e+02 1.27000000e+02]\n", + " [ 1.20220000e+03 1.27000000e+02]\n", + " [ 1.56060000e+03 1.27000000e+02]\n", + " [ 1.91900000e+03 1.27000000e+02]\n", + " [ 1.27000000e+02 4.85400000e+02]\n", + " [ 4.85400000e+02 4.85400000e+02]\n", + " [ 8.43800000e+02 4.85400000e+02]\n", + " [ 1.20220000e+03 4.85400000e+02]\n", + " [ 1.56060000e+03 4.85400000e+02]\n", + " [ 1.91900000e+03 4.85400000e+02]\n", + " [ 1.27000000e+02 8.43800000e+02]\n", + " [ 4.85400000e+02 8.43800000e+02]\n", + " [ 8.43800000e+02 8.43800000e+02]\n", + " [ 1.20220000e+03 8.43800000e+02]\n", + " [ 1.56060000e+03 8.43800000e+02]\n", + " [ 1.91900000e+03 8.43800000e+02]\n", + " [ 1.27000000e+02 1.20220000e+03]\n", + " [ 4.85400000e+02 1.20220000e+03]\n", + " [ 8.43800000e+02 1.20220000e+03]\n", + " [ 1.20220000e+03 1.20220000e+03]\n", + " [ 1.56060000e+03 1.20220000e+03]\n", + " [ 1.91900000e+03 1.20220000e+03]\n", + " [ 1.27000000e+02 1.56060000e+03]\n", + " [ 4.85400000e+02 1.56060000e+03]\n", + " [ 8.43800000e+02 1.56060000e+03]\n", + " [ 1.20220000e+03 1.56060000e+03]\n", + " [ 1.56060000e+03 1.56060000e+03]\n", + " [ 1.91900000e+03 1.56060000e+03]\n", + " [ 1.27000000e+02 1.91900000e+03]\n", + " [ 4.85400000e+02 1.91900000e+03]\n", + " [ 8.43800000e+02 1.91900000e+03]\n", + " [ 1.20220000e+03 1.91900000e+03]\n", + " [ 1.56060000e+03 1.91900000e+03]\n", + " [ 1.91900000e+03 1.91900000e+03]]\n", + "DEBUG:root:fitpix2pix: ccdpx: shape: (96, 2)\n", + "DEBUG:root:fitpix2pix: visCut: True\n", + "DEBUG:root:radec2pix: lng: [ 90.42834373 90.49850377 90.5956611 90.73910961 90.97227481\n", + " 91.41759428 92.60593903 105.48424091 90.42834373 98.33000716\n", + " 105.9265086 112.99112584 119.3891666 125.0745167 130.06614193\n", + " 134.42085308 105.48424091 169.40901167 174.51469037 176.30215943\n", + " 177.21090794 177.76079422 178.12927502 178.39338736 134.42085308\n", + " 138.69611239 143.61480744 149.24344747 155.61405077 162.69499667\n", + " 170.36296391 178.39338736 90.48535945 90.59424595 90.76505154\n", + " 91.07156688 91.78204394 95.23155859 93.89518731 103.41200836\n", + " 112.23547382 120.07805375 126.85210045 132.60955299 157.76630729\n", + " 173.33036525 176.09473451 177.23920333 177.86448301 178.25846094\n", + " 136.19687489 141.86022321 148.55920823 156.36843482 165.22645267\n", + " 174.86312285 90.45578538 90.45578538 178.36484692 178.36484692\n", + " 94.14397512 104.23659596 113.5079539 121.64257424 128.57141019\n", + " 134.38353176 95.05856666 107.21909912 117.98189812 126.96805941\n", + " 134.24672537 140.08615622 96.48795214 111.70632897 124.31008611\n", + " 134.03082213 141.36316306 146.92239982 99.03197846 119.08696476\n", + " 133.63934958 143.48868891 150.22824427 155.00803043 104.7802641\n", + " 132.71160718 147.70838425 155.95659867 160.97729932 164.30745367\n", + " 127.76858297 159.74564279 167.84877649 171.35573132 173.29833797\n", + " 174.52977301]\n", + "DEBUG:root:radec2pix: lat: [77.93541901 79.53990642 81.17639652 82.83971343 84.5247522 86.22632371\n", + " 87.93883494 89.6479978 77.93541901 77.81390272 77.48107187 76.95718255\n", + " 76.27047293 75.45239232 74.53398915 73.54392335 89.6479978 88.15433501\n", + " 86.45486555 84.75631331 83.07112985 81.40595581 79.76638457 78.15778269\n", + " 73.54392335 74.55657104 75.50172983 76.35064507 77.07169654 77.63217256\n", + " 78.00180643 78.15778269 78.63066146 80.61929653 82.650836 84.71585314\n", + " 86.80474047 88.90593385 77.91466044 77.62156704 77.02994397 76.1887385\n", + " 75.15547704 73.98639339 89.08782254 87.03029774 84.94699254 82.88191704\n", + " 80.84778676 78.85482091 73.9956629 75.19522506 76.26518392 77.14846305\n", + " 77.78520091 78.12246539 77.9408027 77.9408027 78.1630712 78.1630712\n", + " 78.60257643 78.28825427 77.65661779 76.76410296 75.67504453 74.45024854\n", + " 80.58418271 80.19408276 79.42435182 78.36269898 77.09829541 75.70590081\n", + " 82.60493805 82.10218621 81.14204779 79.86827274 78.40301429 76.83279998\n", + " 84.65101194 83.96303088 82.73111849 81.1974567 79.51499711 77.7695032\n", + " 86.69730834 85.65959593 84.04717305 82.22861822 80.34304005 78.44927716\n", + " 88.6217931 86.8566554 84.8442257 82.80989579 80.79300228 78.81115773]\n", + "DEBUG:root:optics_fp: rtanth: [31.57034978 27.18406789 22.79784246 18.41171382 14.02577275 9.64027533\n", + " 5.25633205 0.89702627 31.57034978 31.90657516 32.83068082 34.29517719\n", + " 36.2346004 38.57738799 41.25487818 44.20629586 0.89702627 4.70608217\n", + " 9.05379887 13.42672148 17.80628925 22.18856766 26.57221564 30.95665138\n", + " 44.20629586 41.18838618 38.43502607 36.00695508 33.97398873 32.41056182\n", + " 31.38691822 30.95665138 29.65803336 24.28227528 18.90665475 13.53133577\n", + " 8.15691443 2.78858575 31.62774376 32.44001712 34.0910252 36.46702674\n", + " 39.4372011 42.87825061 2.32483604 7.57927428 12.93401278 18.30122199\n", + " 23.67242106 29.04539658 42.85058957 39.32178756 36.24963004 33.75901556\n", + " 31.98608036 31.05398999 31.55546766 31.55546766 30.94207994 30.94207994\n", + " 29.73492188 30.59748544 32.34268701 34.83813202 37.93605456 41.50175634\n", + " 24.3761262 25.42117355 27.49689714 30.39285101 33.89947174 37.84740055\n", + " 19.02703944 20.34867971 22.88912523 26.29749216 30.28212156 34.64474606\n", + " 13.69903951 15.48238416 18.69618965 22.7418897 27.2514649 32.02957826\n", + " 8.4321936 11.09695565 15.26386952 20.01578758 25.02160156 30.1551337\n", + " 3.51323872 8.02392562 13.19949508 18.48980017 23.81851176 29.16458548]\n", + "DEBUG:root:optics_fp: cphi: [-0.00747594 -0.00870042 -0.01039606 -0.01289954 -0.01696858 -0.02473916\n", + " -0.04546654 -0.26697332 -0.00747594 -0.14487442 -0.27440415 -0.39058855\n", + " -0.49073902 -0.57464131 -0.6436715 -0.69992333 -0.26697332 -0.98296427\n", + " -0.99542074 -0.99791805 -0.99881542 -0.99923641 -0.99946703 -0.99960689\n", + " -0.69992333 -0.75121935 -0.80504713 -0.85934793 -0.91078494 -0.95473483\n", + " -0.98588803 -0.99960689 -0.00847102 -0.01037136 -0.01335227 -0.01870128\n", + " -0.03109752 -0.0911811 -0.06793149 -0.23195178 -0.37841395 -0.50117932\n", + " -0.59975148 -0.67699869 -0.92564824 -0.99323234 -0.99767802 -0.99883933\n", + " -0.99930549 -0.99953809 -0.72172248 -0.78650646 -0.85317965 -0.91614203\n", + " -0.96694122 -0.99598364 -0.00795487 -0.00795487 -0.9995928 -0.9995928\n", + " -0.07226297 -0.24592654 -0.39887637 -0.52461865 -0.62348955 -0.69945795\n", + " -0.08817399 -0.29602647 -0.46919258 -0.60136972 -0.69774952 -0.76701014\n", + " -0.11299429 -0.36984939 -0.56367146 -0.69504524 -0.7811192 -0.83793215\n", + " -0.1569857 -0.48613658 -0.69011673 -0.80373942 -0.86801033 -0.90636701\n", + " -0.25511271 -0.67830854 -0.84534002 -0.91323709 -0.94538951 -0.96272694\n", + " -0.6124737 -0.93816501 -0.97759544 -0.98864055 -0.99316726 -0.99544587]\n", + "DEBUG:root:optics_fp: sphi: [0.99997205 0.99996215 0.99994596 0.9999168 0.99985602 0.99969394\n", + " 0.99896586 0.96370392 0.99997205 0.98945005 0.96161446 0.92056536\n", + " 0.87130661 0.81840538 0.7653019 0.71421799 0.96370392 0.18379675\n", + " 0.09559053 0.0644947 0.04865962 0.03907157 0.03264451 0.02803701\n", + " 0.71421799 0.66005264 0.59321085 0.51139137 0.41288109 0.29745825\n", + " 0.16740606 0.02803701 0.99996412 0.99994622 0.99991085 0.99982512\n", + " 0.99951636 0.99583433 0.99768999 0.97272729 0.92563647 0.86534345\n", + " 0.80018633 0.73598422 0.37838518 0.11614437 0.06810698 0.04816635\n", + " 0.03726317 0.03039091 0.69218254 0.61758205 0.52161719 0.40085381\n", + " 0.25499936 0.08953536 0.99996836 0.99996836 0.02853493 0.02853493\n", + " 0.99738561 0.96928847 0.91700471 0.85133735 0.78183168 0.71467375\n", + " 0.99610509 0.95517974 0.88309587 0.79897088 0.71634182 0.64163497\n", + " 0.99359564 0.92909172 0.82599908 0.71896601 0.62438193 0.54577441\n", + " 0.98760088 0.87388285 0.72369807 0.59498147 0.49654613 0.42249123\n", + " 0.96691132 0.7347772 0.53422865 0.40742853 0.32594274 0.27047521\n", + " 0.79049097 0.3461884 0.21049264 0.15029925 0.11669955 0.09532849]\n", + "DEBUG:root:optics_fp: xyfp: [[ 0.236018 -31.56946754]\n", + " [ 0.23651287 -27.18303899]\n", + " [ 0.23700774 -22.79661046]\n", + " [ 0.23750261 -18.41018192]\n", + " [ 0.23799748 -14.02375336]\n", + " [ 0.23849235 -9.63732482]\n", + " [ 0.23898721 -5.25089628]\n", + " [ 0.23948208 -0.86446773]\n", + " [ 0.236018 -31.56946754]\n", + " [ 4.62244655 -31.56996241]\n", + " [ 9.00887509 -31.57045728]\n", + " [ 13.39530363 -31.57095214]\n", + " [ 17.78173218 -31.57144701]\n", + " [ 22.16816072 -31.57194188]\n", + " [ 26.55458927 -31.57243675]\n", + " [ 30.94101781 -31.57293162]\n", + " [ 0.23948208 -0.86446773]\n", + " [ 4.62591062 -0.8649626 ]\n", + " [ 9.01233917 -0.86545747]\n", + " [ 13.39876771 -0.86595234]\n", + " [ 17.78519626 -0.86644721]\n", + " [ 22.1716248 -0.86694208]\n", + " [ 26.55805334 -0.86743695]\n", + " [ 30.94448189 -0.86793181]\n", + " [ 30.94101781 -31.57293162]\n", + " [ 30.94151268 -27.18650307]\n", + " [ 30.94200754 -22.80007453]\n", + " [ 30.94250242 -18.41364599]\n", + " [ 30.94299728 -14.02721745]\n", + " [ 30.94349215 -9.6407889 ]\n", + " [ 30.94398702 -5.25436036]\n", + " [ 30.94448189 -0.86793181]\n", + " [ 0.25123377 -29.65696924]\n", + " [ 0.25184028 -24.28096928]\n", + " [ 0.25244679 -18.90496931]\n", + " [ 0.2530533 -13.52896935]\n", + " [ 0.25365981 -8.15296938]\n", + " [ 0.25426632 -2.77696942]\n", + " [ 2.14851968 -31.5546833 ]\n", + " [ 7.52451965 -31.55528981]\n", + " [ 12.90051962 -31.55589633]\n", + " [ 18.27651958 -31.55650284]\n", + " [ 23.65251954 -31.55710934]\n", + " [ 29.02851952 -31.55771586]\n", + " [ 2.15198038 -0.8796835 ]\n", + " [ 7.52798035 -0.88029001]\n", + " [ 12.90398031 -0.88089652]\n", + " [ 18.27998027 -0.88150303]\n", + " [ 23.65598025 -0.88210954]\n", + " [ 29.03198021 -0.88271605]\n", + " [ 30.92623357 -29.66042994]\n", + " [ 30.92684009 -24.28442998]\n", + " [ 30.9274466 -18.90843001]\n", + " [ 30.9280531 -13.53243004]\n", + " [ 30.92865961 -8.15643008]\n", + " [ 30.92926612 -2.78043011]\n", + " [ 0.2510197 -31.55446923]\n", + " [ 0.2510197 -31.55446923]\n", + " [ 30.9294802 -0.88293012]\n", + " [ 30.9294802 -0.88293012]\n", + " [ 2.14873376 -29.65718332]\n", + " [ 7.52473372 -29.65778983]\n", + " [ 12.90073369 -29.65839633]\n", + " [ 18.27673365 -29.65900285]\n", + " [ 23.65273362 -29.65960936]\n", + " [ 29.02873359 -29.66021587]\n", + " [ 2.14934027 -24.28118335]\n", + " [ 7.52534023 -24.28178986]\n", + " [ 12.9013402 -24.28239637]\n", + " [ 18.27734016 -24.28300288]\n", + " [ 23.65334013 -24.28360939]\n", + " [ 29.02934009 -24.2842159 ]\n", + " [ 2.14994678 -18.90518338]\n", + " [ 7.52594674 -18.90578989]\n", + " [ 12.90194671 -18.9063964 ]\n", + " [ 18.27794667 -18.90700292]\n", + " [ 23.65394664 -18.90760943]\n", + " [ 29.0299466 -18.90821593]\n", + " [ 2.15055329 -13.52918342]\n", + " [ 7.52655325 -13.52978993]\n", + " [ 12.90255322 -13.53039644]\n", + " [ 18.27855318 -13.53100295]\n", + " [ 23.65455315 -13.53160946]\n", + " [ 29.03055312 -13.53221597]\n", + " [ 2.1511598 -8.15318346]\n", + " [ 7.52715976 -8.15378996]\n", + " [ 12.90315973 -8.15439647]\n", + " [ 18.27915969 -8.15500298]\n", + " [ 23.65515966 -8.15560949]\n", + " [ 29.03115962 -8.156216 ]\n", + " [ 2.1517663 -2.77718348]\n", + " [ 7.52776627 -2.77779 ]\n", + " [ 12.90376624 -2.77839651]\n", + " [ 18.2797662 -2.77900302]\n", + " [ 23.65576617 -2.77960953]\n", + " [ 29.03176613 -2.78021604]]\n", + "DEBUG:root:optics_fp: xyfp shape: (96, 2)\n", + "DEBUG:root:make_az_asym: xyp: [[ 0.236018 -31.56946754]\n", + " [ 0.23651287 -27.18303899]\n", + " [ 0.23700774 -22.79661046]\n", + " [ 0.23750261 -18.41018192]\n", + " [ 0.23799748 -14.02375336]\n", + " [ 0.23849235 -9.63732482]\n", + " [ 0.23898721 -5.25089628]\n", + " [ 0.23948208 -0.86446773]\n", + " [ 0.236018 -31.56946754]\n", + " [ 4.62244655 -31.56996241]\n", + " [ 9.00887509 -31.57045728]\n", + " [ 13.39530363 -31.57095214]\n", + " [ 17.78173218 -31.57144701]\n", + " [ 22.16816072 -31.57194188]\n", + " [ 26.55458927 -31.57243675]\n", + " [ 30.94101781 -31.57293162]\n", + " [ 0.23948208 -0.86446773]\n", + " [ 4.62591062 -0.8649626 ]\n", + " [ 9.01233917 -0.86545747]\n", + " [ 13.39876771 -0.86595234]\n", + " [ 17.78519626 -0.86644721]\n", + " [ 22.1716248 -0.86694208]\n", + " [ 26.55805334 -0.86743695]\n", + " [ 30.94448189 -0.86793181]\n", + " [ 30.94101781 -31.57293162]\n", + " [ 30.94151268 -27.18650307]\n", + " [ 30.94200754 -22.80007453]\n", + " [ 30.94250242 -18.41364599]\n", + " [ 30.94299728 -14.02721745]\n", + " [ 30.94349215 -9.6407889 ]\n", + " [ 30.94398702 -5.25436036]\n", + " [ 30.94448189 -0.86793181]\n", + " [ 0.25123377 -29.65696924]\n", + " [ 0.25184028 -24.28096928]\n", + " [ 0.25244679 -18.90496931]\n", + " [ 0.2530533 -13.52896935]\n", + " [ 0.25365981 -8.15296938]\n", + " [ 0.25426632 -2.77696942]\n", + " [ 2.14851968 -31.5546833 ]\n", + " [ 7.52451965 -31.55528981]\n", + " [ 12.90051962 -31.55589633]\n", + " [ 18.27651958 -31.55650284]\n", + " [ 23.65251954 -31.55710934]\n", + " [ 29.02851952 -31.55771586]\n", + " [ 2.15198038 -0.8796835 ]\n", + " [ 7.52798035 -0.88029001]\n", + " [ 12.90398031 -0.88089652]\n", + " [ 18.27998027 -0.88150303]\n", + " [ 23.65598025 -0.88210954]\n", + " [ 29.03198021 -0.88271605]\n", + " [ 30.92623357 -29.66042994]\n", + " [ 30.92684009 -24.28442998]\n", + " [ 30.9274466 -18.90843001]\n", + " [ 30.9280531 -13.53243004]\n", + " [ 30.92865961 -8.15643008]\n", + " [ 30.92926612 -2.78043011]\n", + " [ 0.2510197 -31.55446923]\n", + " [ 0.2510197 -31.55446923]\n", + " [ 30.9294802 -0.88293012]\n", + " [ 30.9294802 -0.88293012]\n", + " [ 2.14873376 -29.65718332]\n", + " [ 7.52473372 -29.65778983]\n", + " [ 12.90073369 -29.65839633]\n", + " [ 18.27673365 -29.65900285]\n", + " [ 23.65273362 -29.65960936]\n", + " [ 29.02873359 -29.66021587]\n", + " [ 2.14934027 -24.28118335]\n", + " [ 7.52534023 -24.28178986]\n", + " [ 12.9013402 -24.28239637]\n", + " [ 18.27734016 -24.28300288]\n", + " [ 23.65334013 -24.28360939]\n", + " [ 29.02934009 -24.2842159 ]\n", + " [ 2.14994678 -18.90518338]\n", + " [ 7.52594674 -18.90578989]\n", + " [ 12.90194671 -18.9063964 ]\n", + " [ 18.27794667 -18.90700292]\n", + " [ 23.65394664 -18.90760943]\n", + " [ 29.0299466 -18.90821593]\n", + " [ 2.15055329 -13.52918342]\n", + " [ 7.52655325 -13.52978993]\n", + " [ 12.90255322 -13.53039644]\n", + " [ 18.27855318 -13.53100295]\n", + " [ 23.65455315 -13.53160946]\n", + " [ 29.03055312 -13.53221597]\n", + " [ 2.1511598 -8.15318346]\n", + " [ 7.52715976 -8.15378996]\n", + " [ 12.90315973 -8.15439647]\n", + " [ 18.27915969 -8.15500298]\n", + " [ 23.65515966 -8.15560949]\n", + " [ 29.03115962 -8.156216 ]\n", + " [ 2.1517663 -2.77718348]\n", + " [ 7.52776627 -2.77779 ]\n", + " [ 12.90376624 -2.77839651]\n", + " [ 18.2797662 -2.77900302]\n", + " [ 23.65576617 -2.77960953]\n", + " [ 29.03176613 -2.78021604]]\n", + "DEBUG:root:make_az_asym: xyp: shape: (96, 2)\n", + "DEBUG:root:radec2pix: curVec: [[ 0.33105105 -0.51418556 -0.79121326]\n", + " [ 0.32561883 -0.49199341 -0.80741244]\n", + " [ 0.31981639 -0.46896171 -0.82328148]\n", + " [ 0.31365243 -0.44516059 -0.83872177]\n", + " [ 0.30713901 -0.42066504 -0.85364311]\n", + " [ 0.300292 -0.39555656 -0.86796297]\n", + " [ 0.29313136 -0.36992397 -0.88160664]\n", + " [ 0.28568123 -0.34386322 -0.89450786]\n", + " [ 0.33105105 -0.51418556 -0.79121326]\n", + " [ 0.30407033 -0.52392383 -0.79564129]\n", + " [ 0.27690375 -0.53311357 -0.7994462 ]\n", + " [ 0.24966055 -0.54172291 -0.80262438]\n", + " [ 0.22245229 -0.54972434 -0.80518205]\n", + " [ 0.19539286 -0.55709425 -0.80713545]\n", + " [ 0.16859888 -0.56381219 -0.80851112]\n", + " [ 0.14219047 -0.5698604 -0.80934603]\n", + " [ 0.28568123 -0.34386322 -0.89450786]\n", + " [ 0.25779753 -0.35405847 -0.89899001]\n", + " [ 0.22977366 -0.36390035 -0.90265198]\n", + " [ 0.20172375 -0.37335454 -0.90549098]\n", + " [ 0.17376179 -0.38239185 -0.90751491]\n", + " [ 0.14600093 -0.39098823 -0.90874195]\n", + " [ 0.11855382 -0.3991243 -0.90920008]\n", + " [ 0.09153421 -0.40678474 -0.90892665]\n", + " [ 0.14219047 -0.5698604 -0.80934603]\n", + " [ 0.13519896 -0.54885693 -0.82491049]\n", + " [ 0.12810258 -0.52695692 -0.8401822 ]\n", + " [ 0.12091128 -0.50423639 -0.85505914]\n", + " [ 0.11363907 -0.48077416 -0.86944946]\n", + " [ 0.10630395 -0.45665275 -0.88327104]\n", + " [ 0.09892745 -0.43195906 -0.89645118]\n", + " [ 0.09153421 -0.40678474 -0.90892665]\n", + " [ 0.32863635 -0.50465161 -0.79832631]\n", + " [ 0.32172779 -0.47687998 -0.81797109]\n", + " [ 0.31427163 -0.44791649 -0.837021 ]\n", + " [ 0.30628864 -0.41789709 -0.85530655]\n", + " [ 0.29780807 -0.3869719 -0.87267583]\n", + " [ 0.28886844 -0.35530745 -0.88899474]\n", + " [ 0.31929878 -0.51842246 -0.79327577]\n", + " [ 0.28609159 -0.52999352 -0.7982847 ]\n", + " [ 0.25271352 -0.5407086 -0.80235285]\n", + " [ 0.21936903 -0.55051526 -0.80548754]\n", + " [ 0.18626782 -0.55936994 -0.80771874]\n", + " [ 0.153626 -0.56723615 -0.80909963]\n", + " [ 0.27357429 -0.34843915 -0.89651953]\n", + " [ 0.23929142 -0.36070121 -0.90146228]\n", + " [ 0.20491133 -0.37239767 -0.90516922]\n", + " [ 0.17064398 -0.38347265 -0.90765046]\n", + " [ 0.13669771 -0.39388181 -0.90893941]\n", + " [ 0.10328027 -0.40359121 -0.90909148]\n", + " [ 0.13924536 -0.5607979 -0.81615957]\n", + " [ 0.13060582 -0.53444257 -0.83505285]\n", + " [ 0.121818 -0.50681585 -0.85340381]\n", + " [ 0.11290601 -0.47806168 -0.87103919]\n", + " [ 0.10390291 -0.44833203 -0.88780774]\n", + " [ 0.09484967 -0.41778885 -0.90357956]\n", + " [ 0.33094128 -0.51414537 -0.79128529]\n", + " [ 0.33094128 -0.51414537 -0.79128529]\n", + " [ 0.09165103 -0.40684617 -0.90888739]\n", + " [ 0.09165103 -0.40684617 -0.90888739]\n", + " [ 0.31694829 -0.50894694 -0.80032293]\n", + " [ 0.28361306 -0.5205794 -0.80533268]\n", + " [ 0.25010903 -0.53137025 -0.809377 ]\n", + " [ 0.21664102 -0.54126744 -0.81246306]\n", + " [ 0.18341855 -0.55022804 -0.81462061]\n", + " [ 0.15065709 -0.55821633 -0.81590255]\n", + " [ 0.30992519 -0.48122178 -0.81998291]\n", + " [ 0.27626968 -0.4930148 -0.8249918 ]\n", + " [ 0.2424534 -0.50400883 -0.82897012]\n", + " [ 0.20868242 -0.51415238 -0.83192486]\n", + " [ 0.17516597 -0.52340405 -0.83388553]\n", + " [ 0.14211762 -0.53173018 -0.83490454]\n", + " [ 0.30237633 -0.452297 -0.83904469]\n", + " [ 0.26846428 -0.46423122 -0.84404757]\n", + " [ 0.23440239 -0.47541257 -0.84796133]\n", + " [ 0.2003982 -0.48578948 -0.85079324]\n", + " [ 0.16666085 -0.49532125 -0.85257318]\n", + " [ 0.13340209 -0.50397571 -0.8533536 ]\n", + " [ 0.29432313 -0.42230835 -0.85733864]\n", + " [ 0.26022011 -0.4343644 -0.86233002]\n", + " [ 0.22598071 -0.44571801 -0.86618022]\n", + " [ 0.19181383 -0.45631686 -0.86889722]\n", + " [ 0.15792852 -0.46612004 -0.87051174]\n", + " [ 0.124535 -0.47509593 -0.87107685]\n", + " [ 0.28579561 -0.39140572 -0.87471277]\n", + " [ 0.25156922 -0.4035636 -0.87968708]\n", + " [ 0.217222 -0.41507417 -0.88347498]\n", + " [ 0.18296378 -0.4258838 -0.88608535]\n", + " [ 0.14900343 -0.43595053 -0.88755006]\n", + " [ 0.11554988 -0.44524227 -0.88792317]\n", + " [ 0.2768329 -0.35975533 -0.89103291]\n", + " [ 0.2425524 -0.37199407 -0.89598479]\n", + " [ 0.20816829 -0.38364516 -0.89971237]\n", + " [ 0.17389063 -0.39465335 -0.90222546]\n", + " [ 0.13992792 -0.40497496 -0.90355712]\n", + " [ 0.10648816 -0.41457665 -0.9037624 ]]\n", + "DEBUG:root:radec2pix: curVec Shape: (96, 3)\n", + "DEBUG:root:radec2pix: xyfp: [[ 0.236018 -31.56946754]\n", + " [ 0.23651287 -27.18303899]\n", + " [ 0.23700774 -22.79661046]\n", + " [ 0.23750261 -18.41018192]\n", + " [ 0.23799748 -14.02375336]\n", + " [ 0.23849235 -9.63732482]\n", + " [ 0.23898721 -5.25089628]\n", + " [ 0.23948208 -0.86446773]\n", + " [ 0.236018 -31.56946754]\n", + " [ 4.62244655 -31.56996241]\n", + " [ 9.00887509 -31.57045728]\n", + " [ 13.39530363 -31.57095214]\n", + " [ 17.78173218 -31.57144701]\n", + " [ 22.16816072 -31.57194188]\n", + " [ 26.55458927 -31.57243675]\n", + " [ 30.94101781 -31.57293162]\n", + " [ 0.23948208 -0.86446773]\n", + " [ 4.62591062 -0.8649626 ]\n", + " [ 9.01233917 -0.86545747]\n", + " [ 13.39876771 -0.86595234]\n", + " [ 17.78519626 -0.86644721]\n", + " [ 22.1716248 -0.86694208]\n", + " [ 26.55805334 -0.86743695]\n", + " [ 30.94448189 -0.86793181]\n", + " [ 30.94101781 -31.57293162]\n", + " [ 30.94151268 -27.18650307]\n", + " [ 30.94200754 -22.80007453]\n", + " [ 30.94250242 -18.41364599]\n", + " [ 30.94299728 -14.02721745]\n", + " [ 30.94349215 -9.6407889 ]\n", + " [ 30.94398702 -5.25436036]\n", + " [ 30.94448189 -0.86793181]\n", + " [ 0.25123377 -29.65696924]\n", + " [ 0.25184028 -24.28096928]\n", + " [ 0.25244679 -18.90496931]\n", + " [ 0.2530533 -13.52896935]\n", + " [ 0.25365981 -8.15296938]\n", + " [ 0.25426632 -2.77696942]\n", + " [ 2.14851968 -31.5546833 ]\n", + " [ 7.52451965 -31.55528981]\n", + " [ 12.90051962 -31.55589633]\n", + " [ 18.27651958 -31.55650284]\n", + " [ 23.65251954 -31.55710934]\n", + " [ 29.02851952 -31.55771586]\n", + " [ 2.15198038 -0.8796835 ]\n", + " [ 7.52798035 -0.88029001]\n", + " [ 12.90398031 -0.88089652]\n", + " [ 18.27998027 -0.88150303]\n", + " [ 23.65598025 -0.88210954]\n", + " [ 29.03198021 -0.88271605]\n", + " [ 30.92623357 -29.66042994]\n", + " [ 30.92684009 -24.28442998]\n", + " [ 30.9274466 -18.90843001]\n", + " [ 30.9280531 -13.53243004]\n", + " [ 30.92865961 -8.15643008]\n", + " [ 30.92926612 -2.78043011]\n", + " [ 0.2510197 -31.55446923]\n", + " [ 0.2510197 -31.55446923]\n", + " [ 30.9294802 -0.88293012]\n", + " [ 30.9294802 -0.88293012]\n", + " [ 2.14873376 -29.65718332]\n", + " [ 7.52473372 -29.65778983]\n", + " [ 12.90073369 -29.65839633]\n", + " [ 18.27673365 -29.65900285]\n", + " [ 23.65273362 -29.65960936]\n", + " [ 29.02873359 -29.66021587]\n", + " [ 2.14934027 -24.28118335]\n", + " [ 7.52534023 -24.28178986]\n", + " [ 12.9013402 -24.28239637]\n", + " [ 18.27734016 -24.28300288]\n", + " [ 23.65334013 -24.28360939]\n", + " [ 29.02934009 -24.2842159 ]\n", + " [ 2.14994678 -18.90518338]\n", + " [ 7.52594674 -18.90578989]\n", + " [ 12.90194671 -18.9063964 ]\n", + " [ 18.27794667 -18.90700292]\n", + " [ 23.65394664 -18.90760943]\n", + " [ 29.0299466 -18.90821593]\n", + " [ 2.15055329 -13.52918342]\n", + " [ 7.52655325 -13.52978993]\n", + " [ 12.90255322 -13.53039644]\n", + " [ 18.27855318 -13.53100295]\n", + " [ 23.65455315 -13.53160946]\n", + " [ 29.03055312 -13.53221597]\n", + " [ 2.1511598 -8.15318346]\n", + " [ 7.52715976 -8.15378996]\n", + " [ 12.90315973 -8.15439647]\n", + " [ 18.27915969 -8.15500298]\n", + " [ 23.65515966 -8.15560949]\n", + " [ 29.03115962 -8.156216 ]\n", + " [ 2.1517663 -2.77718348]\n", + " [ 7.52776627 -2.77779 ]\n", + " [ 12.90376624 -2.77839651]\n", + " [ 18.2797662 -2.77900302]\n", + " [ 23.65576617 -2.77960953]\n", + " [ 29.03176613 -2.78021604]]\n", + "DEBUG:root:radec2pix: xyfp Shape: (96, 2)\n", + "DEBUG:root:radec2pix: camVec: [[-0.00174024 -0.00176337 -0.00178449 -0.00180353 -0.00182039 -0.001835\n", + " -0.00184725 -0.00185707 -0.00174024 -0.0307605 -0.05966066 -0.08832819\n", + " -0.11665151 -0.14451993 -0.17182299 -0.19844965 -0.00185707 -0.03187835\n", + " -0.06177226 -0.09142104 -0.12071058 -0.14953103 -0.1777762 -0.20534186\n", + " -0.19844965 -0.20021951 -0.20172864 -0.20297731 -0.20396466 -0.20468905\n", + " -0.20514862 -0.20534186 -0.00185028 -0.00187827 -0.00190298 -0.00192425\n", + " -0.00194192 -0.00195581 -0.0144012 -0.04990298 -0.08511243 -0.11982373\n", + " -0.15383302 -0.18693675 -0.01495442 -0.05167778 -0.08809246 -0.12398684\n", + " -0.15915858 -0.19341315 -0.19916328 -0.201156 -0.20275765 -0.20396715\n", + " -0.20478152 -0.20519745 -0.00183964 -0.00183964 -0.20524866 -0.20524866\n", + " -0.01446124 -0.05010266 -0.08545073 -0.12029942 -0.1544452 -0.18768535\n", + " -0.01461361 -0.05060625 -0.08630213 -0.12149421 -0.15597972 -0.18955833\n", + " -0.01473929 -0.05101673 -0.08699359 -0.12246151 -0.1572181 -0.19106523\n", + " -0.01483744 -0.0513315 -0.08752139 -0.12319735 -0.15815714 -0.19220433\n", + " -0.01490708 -0.05154747 -0.08788092 -0.1236965 -0.15879197 -0.19297207\n", + " -0.01494734 -0.05166195 -0.08806808 -0.12395417 -0.15911791 -0.19336467]\n", + " [ 0.20894107 0.18147259 0.15331081 0.12455987 0.09532558 0.06571725\n", + " 0.03584843 0.00583647 0.20894107 0.20879621 0.2083801 0.20769404\n", + " 0.20673975 0.20551876 0.20403188 0.20227886 0.00583647 0.00584019\n", + " 0.00583613 0.00582438 0.00580507 0.00577839 0.00574449 0.00570348\n", + " 0.20227886 0.17571613 0.1484622 0.12062809 0.09232414 0.06366093\n", + " 0.03474987 0.00570348 0.1970566 0.16291184 0.12782912 0.09200243\n", + " 0.05563309 0.01893178 0.2088187 0.20845876 0.20769278 0.20652378\n", + " 0.20495452 0.20298606 0.00594178 0.00594091 0.00592823 0.00590399\n", + " 0.0058685 0.00582205 0.19079562 0.1577603 0.12379719 0.08910965\n", + " 0.05390131 0.01837776 0.20884841 0.20884841 0.00580307 0.00580307\n", + " 0.19702878 0.19668974 0.19596793 0.19486681 0.19338978 0.1915385\n", + " 0.16288937 0.16260994 0.16201386 0.16110551 0.1598896 0.15836938\n", + " 0.12781212 0.12759366 0.12712576 0.126413 0.12546054 0.12427244\n", + " 0.09199108 0.09183551 0.0914995 0.09098698 0.09030259 0.0894502\n", + " 0.05562756 0.05553685 0.05533649 0.05502916 0.05461804 0.05410588\n", + " 0.0189322 0.01890777 0.01884587 0.01874743 0.01861357 0.01844527]\n", + " [ 0.97792668 0.98339442 0.98817641 0.99221045 0.99544448 0.9978366\n", + " 0.99935553 0.99998124 0.97792668 0.97747528 0.97622658 0.97419778\n", + " 0.97141706 0.96792357 0.96376753 0.95901043 0.99998124 0.99947469\n", + " 0.99807321 0.9957953 0.99267077 0.98874015 0.98405418 0.97867369\n", + " 0.95901043 0.96386513 0.96812423 0.97172479 0.97461514 0.97675467\n", + " 0.97811374 0.97867369 0.98039037 0.98663884 0.99179438 0.99575692\n", + " 0.99844939 0.99981886 0.97784833 0.97675721 0.97448427 0.97107683\n", + " 0.96660698 0.96117184 0.99987052 0.99864614 0.99609466 0.9922663\n", + " 0.98723559 0.98110013 0.96121331 0.96677192 0.97137201 0.97491378\n", + " 0.97732245 0.97854804 0.9779463 0.9779463 0.97869265 0.97869265\n", + " 0.98029105 0.9791848 0.97688011 0.97342435 0.96888961 0.96337283\n", + " 0.98653611 0.98539181 0.98300735 0.97943054 0.97473363 0.9690133\n", + " 0.99168887 0.99051358 0.98806435 0.98438962 0.97956221 0.97367882\n", + " 0.99564928 0.99445026 0.99195154 0.9882023 0.98327604 0.97726975\n", + " 0.9983403 0.99712513 0.99459279 0.9907931 0.98580017 0.97971135\n", + " 0.99970903 0.99848562 0.99593617 0.99211083 0.9870841 0.98095356]]\n", + "DEBUG:root:radec2pix: camVec Shape: (3, 96)\n", + "DEBUG:root:mm_to_pix: fitpx: [[0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]]\n", + "DEBUG:root:mm_to_pix: fitpx.shape: (96, 2)\n", + "DEBUG:root:cartToSphere: vec: [[-0.00174024 0.20894107 0.97792668]\n", + " [-0.00176337 0.18147259 0.98339442]\n", + " [-0.00178449 0.15331081 0.98817641]\n", + " [-0.00180353 0.12455987 0.99221045]\n", + " [-0.00182039 0.09532558 0.99544448]\n", + " [-0.001835 0.06571725 0.9978366 ]\n", + " [-0.00184725 0.03584843 0.99935553]\n", + " [-0.00185707 0.00583647 0.99998124]\n", + " [-0.00174024 0.20894107 0.97792668]\n", + " [-0.0307605 0.20879621 0.97747528]\n", + " [-0.05966066 0.2083801 0.97622658]\n", + " [-0.08832819 0.20769404 0.97419778]\n", + " [-0.11665151 0.20673975 0.97141706]\n", + " [-0.14451993 0.20551876 0.96792357]\n", + " [-0.17182299 0.20403188 0.96376753]\n", + " [-0.19844965 0.20227886 0.95901043]\n", + " [-0.00185707 0.00583647 0.99998124]\n", + " [-0.03187835 0.00584019 0.99947469]\n", + " [-0.06177226 0.00583613 0.99807321]\n", + " [-0.09142104 0.00582438 0.9957953 ]\n", + " [-0.12071058 0.00580507 0.99267077]\n", + " [-0.14953103 0.00577839 0.98874015]\n", + " [-0.1777762 0.00574449 0.98405418]\n", + " [-0.20534186 0.00570348 0.97867369]\n", + " [-0.19844965 0.20227886 0.95901043]\n", + " [-0.20021951 0.17571613 0.96386513]\n", + " [-0.20172864 0.1484622 0.96812423]\n", + " [-0.20297731 0.12062809 0.97172479]\n", + " [-0.20396466 0.09232414 0.97461514]\n", + " [-0.20468905 0.06366093 0.97675467]\n", + " [-0.20514862 0.03474987 0.97811374]\n", + " [-0.20534186 0.00570348 0.97867369]\n", + " [-0.00185028 0.1970566 0.98039037]\n", + " [-0.00187827 0.16291184 0.98663884]\n", + " [-0.00190298 0.12782912 0.99179438]\n", + " [-0.00192425 0.09200243 0.99575692]\n", + " [-0.00194192 0.05563309 0.99844939]\n", + " [-0.00195581 0.01893178 0.99981886]\n", + " [-0.0144012 0.2088187 0.97784833]\n", + " [-0.04990298 0.20845876 0.97675721]\n", + " [-0.08511243 0.20769278 0.97448427]\n", + " [-0.11982373 0.20652378 0.97107683]\n", + " [-0.15383302 0.20495452 0.96660698]\n", + " [-0.18693675 0.20298606 0.96117184]\n", + " [-0.01495442 0.00594178 0.99987052]\n", + " [-0.05167778 0.00594091 0.99864614]\n", + " [-0.08809246 0.00592823 0.99609466]\n", + " [-0.12398684 0.00590399 0.9922663 ]\n", + " [-0.15915858 0.0058685 0.98723559]\n", + " [-0.19341315 0.00582205 0.98110013]\n", + " [-0.19916328 0.19079562 0.96121331]\n", + " [-0.201156 0.1577603 0.96677192]\n", + " [-0.20275765 0.12379719 0.97137201]\n", + " [-0.20396715 0.08910965 0.97491378]\n", + " [-0.20478152 0.05390131 0.97732245]\n", + " [-0.20519745 0.01837776 0.97854804]\n", + " [-0.00183964 0.20884841 0.9779463 ]\n", + " [-0.00183964 0.20884841 0.9779463 ]\n", + " [-0.20524866 0.00580307 0.97869265]\n", + " [-0.20524866 0.00580307 0.97869265]\n", + " [-0.01446124 0.19702878 0.98029105]\n", + " [-0.05010266 0.19668974 0.9791848 ]\n", + " [-0.08545073 0.19596793 0.97688011]\n", + " [-0.12029942 0.19486681 0.97342435]\n", + " [-0.1544452 0.19338978 0.96888961]\n", + " [-0.18768535 0.1915385 0.96337283]\n", + " [-0.01461361 0.16288937 0.98653611]\n", + " [-0.05060625 0.16260994 0.98539181]\n", + " [-0.08630213 0.16201386 0.98300735]\n", + " [-0.12149421 0.16110551 0.97943054]\n", + " [-0.15597972 0.1598896 0.97473363]\n", + " [-0.18955833 0.15836938 0.9690133 ]\n", + " [-0.01473929 0.12781212 0.99168887]\n", + " [-0.05101673 0.12759366 0.99051358]\n", + " [-0.08699359 0.12712576 0.98806435]\n", + " [-0.12246151 0.126413 0.98438962]\n", + " [-0.1572181 0.12546054 0.97956221]\n", + " [-0.19106523 0.12427244 0.97367882]\n", + " [-0.01483744 0.09199108 0.99564928]\n", + " [-0.0513315 0.09183551 0.99445026]\n", + " [-0.08752139 0.0914995 0.99195154]\n", + " [-0.12319735 0.09098698 0.9882023 ]\n", + " [-0.15815714 0.09030259 0.98327604]\n", + " [-0.19220433 0.0894502 0.97726975]\n", + " [-0.01490708 0.05562756 0.9983403 ]\n", + " [-0.05154747 0.05553685 0.99712513]\n", + " [-0.08788092 0.05533649 0.99459279]\n", + " [-0.1236965 0.05502916 0.9907931 ]\n", + " [-0.15879197 0.05461804 0.98580017]\n", + " [-0.19297207 0.05410588 0.97971135]\n", + " [-0.01494734 0.0189322 0.99970903]\n", + " [-0.05166195 0.01890777 0.99848562]\n", + " [-0.08806808 0.01884587 0.99593617]\n", + " [-0.12395417 0.01874743 0.99211083]\n", + " [-0.15911791 0.01861357 0.9870841 ]\n", + " [-0.19336467 0.01844527 0.98095356]]\n", + "DEBUG:root:radec2pix: xyfp: [[ 0.236018 -31.56946754]\n", + " [ 0.23651287 -27.18303899]\n", + " [ 0.23700774 -22.79661046]\n", + " [ 0.23750261 -18.41018192]\n", + " [ 0.23799748 -14.02375336]\n", + " [ 0.23849235 -9.63732482]\n", + " [ 0.23898721 -5.25089628]\n", + " [ 0.23948208 -0.86446773]\n", + " [ 0.236018 -31.56946754]\n", + " [ 4.62244655 -31.56996241]\n", + " [ 9.00887509 -31.57045728]\n", + " [ 13.39530363 -31.57095214]\n", + " [ 17.78173218 -31.57144701]\n", + " [ 22.16816072 -31.57194188]\n", + " [ 26.55458927 -31.57243675]\n", + " [ 30.94101781 -31.57293162]\n", + " [ 0.23948208 -0.86446773]\n", + " [ 4.62591062 -0.8649626 ]\n", + " [ 9.01233917 -0.86545747]\n", + " [ 13.39876771 -0.86595234]\n", + " [ 17.78519626 -0.86644721]\n", + " [ 22.1716248 -0.86694208]\n", + " [ 26.55805334 -0.86743695]\n", + " [ 30.94448189 -0.86793181]\n", + " [ 30.94101781 -31.57293162]\n", + " [ 30.94151268 -27.18650307]\n", + " [ 30.94200754 -22.80007453]\n", + " [ 30.94250242 -18.41364599]\n", + " [ 30.94299728 -14.02721745]\n", + " [ 30.94349215 -9.6407889 ]\n", + " [ 30.94398702 -5.25436036]\n", + " [ 30.94448189 -0.86793181]\n", + " [ 0.25123377 -29.65696924]\n", + " [ 0.25184028 -24.28096928]\n", + " [ 0.25244679 -18.90496931]\n", + " [ 0.2530533 -13.52896935]\n", + " [ 0.25365981 -8.15296938]\n", + " [ 0.25426632 -2.77696942]\n", + " [ 2.14851968 -31.5546833 ]\n", + " [ 7.52451965 -31.55528981]\n", + " [ 12.90051962 -31.55589633]\n", + " [ 18.27651958 -31.55650284]\n", + " [ 23.65251954 -31.55710934]\n", + " [ 29.02851952 -31.55771586]\n", + " [ 2.15198038 -0.8796835 ]\n", + " [ 7.52798035 -0.88029001]\n", + " [ 12.90398031 -0.88089652]\n", + " [ 18.27998027 -0.88150303]\n", + " [ 23.65598025 -0.88210954]\n", + " [ 29.03198021 -0.88271605]\n", + " [ 30.92623357 -29.66042994]\n", + " [ 30.92684009 -24.28442998]\n", + " [ 30.9274466 -18.90843001]\n", + " [ 30.9280531 -13.53243004]\n", + " [ 30.92865961 -8.15643008]\n", + " [ 30.92926612 -2.78043011]\n", + " [ 0.2510197 -31.55446923]\n", + " [ 0.2510197 -31.55446923]\n", + " [ 30.9294802 -0.88293012]\n", + " [ 30.9294802 -0.88293012]\n", + " [ 2.14873376 -29.65718332]\n", + " [ 7.52473372 -29.65778983]\n", + " [ 12.90073369 -29.65839633]\n", + " [ 18.27673365 -29.65900285]\n", + " [ 23.65273362 -29.65960936]\n", + " [ 29.02873359 -29.66021587]\n", + " [ 2.14934027 -24.28118335]\n", + " [ 7.52534023 -24.28178986]\n", + " [ 12.9013402 -24.28239637]\n", + " [ 18.27734016 -24.28300288]\n", + " [ 23.65334013 -24.28360939]\n", + " [ 29.02934009 -24.2842159 ]\n", + " [ 2.14994678 -18.90518338]\n", + " [ 7.52594674 -18.90578989]\n", + " [ 12.90194671 -18.9063964 ]\n", + " [ 18.27794667 -18.90700292]\n", + " [ 23.65394664 -18.90760943]\n", + " [ 29.0299466 -18.90821593]\n", + " [ 2.15055329 -13.52918342]\n", + " [ 7.52655325 -13.52978993]\n", + " [ 12.90255322 -13.53039644]\n", + " [ 18.27855318 -13.53100295]\n", + " [ 23.65455315 -13.53160946]\n", + " [ 29.03055312 -13.53221597]\n", + " [ 2.1511598 -8.15318346]\n", + " [ 7.52715976 -8.15378996]\n", + " [ 12.90315973 -8.15439647]\n", + " [ 18.27915969 -8.15500298]\n", + " [ 23.65515966 -8.15560949]\n", + " [ 29.03115962 -8.156216 ]\n", + " [ 2.1517663 -2.77718348]\n", + " [ 7.52776627 -2.77779 ]\n", + " [ 12.90376624 -2.77839651]\n", + " [ 18.2797662 -2.77900302]\n", + " [ 23.65576617 -2.77960953]\n", + " [ 29.03176613 -2.78021604]]\n", + "DEBUG:root:radec2pix: lng: [ 90.47719648 90.55672682 90.66687597 90.82953968 91.0940213\n", + " 91.5994309 92.9498036 107.65020813 90.47719648 98.38070645\n", + " 105.9767833 113.03909385 119.43357191 125.11472623 130.10200281\n", + " 134.45251944 107.65020813 169.61839319 174.60281853 176.35464905\n", + " 177.24671913 177.78699525 178.149242 178.40898834 134.45251944\n", + " 138.72924775 143.64878868 149.27726033 155.64622183 162.72363484\n", + " 170.38599488 178.40898834 90.53796733 90.66055396 90.85289348\n", + " 91.19818153 91.99914413 95.89819456 93.94516067 103.46269209\n", + " 112.28380041 120.12202419 126.89084824 132.64302298 158.33080444\n", + " 173.44203131 176.15005523 177.27375664 177.8883436 178.27582468\n", + " 136.22925254 141.89402899 148.59312727 156.4003322 165.25344571\n", + " 174.88216618 90.50467598 90.50467598 178.38048842 178.38048842\n", + " 94.19778856 104.29099371 113.55934226 121.68876645 128.61161022\n", + " 134.41785939 95.12656191 107.28679494 118.04349613 127.02097674\n", + " 134.29081962 140.12241992 96.57828818 111.79338073 124.38427646\n", + " 134.09036566 141.4100222 146.95926252 99.16244844 119.20302386\n", + " 133.72701528 143.55240671 150.27503583 155.04314708 105.00164812\n", + " 132.86645918 147.80237126 156.01703787 161.01884636 164.3374646\n", + " 128.29176769 159.89787077 167.9213331 171.39949271 173.32787944\n", + " 174.55097942]\n", + "DEBUG:root:radec2pix: lat: [77.93927193 79.54395482 81.18055575 82.84390632 84.52894038 86.23049276\n", + " 87.9428694 89.64907294 77.93927193 77.81611283 77.48163499 76.95619116\n", + " 76.26808809 75.44881244 74.52941663 73.53851291 89.64907294 88.14278148\n", + " 86.44266427 84.74397225 83.05883421 81.39378264 79.75434117 78.14585205\n", + " 73.53851291 74.55039439 75.49464441 76.34256389 77.06256929 77.62200189\n", + " 77.99067226 78.14585205 78.63460262 80.62342084 82.65501815 84.72002626\n", + " 86.80886799 88.90945013 77.91780497 77.62268078 77.02911929 76.18620636\n", + " 75.15153709 73.98133314 89.07797965 87.01823413 84.93466191 82.86963733\n", + " 80.83566227 78.84284498 73.98994449 75.188461 76.25722019 77.13921802\n", + " 77.77469141 78.11085607 77.94465092 77.94465092 78.15114253 78.15114253\n", + " 78.60576152 78.28926489 77.65557547 76.7612779 75.67077293 74.44486167\n", + " 80.58736145 80.19458487 79.42244991 78.35883667 77.09292697 75.69943663\n", + " 82.60788147 82.10171615 81.13877773 79.86296648 78.39628485 76.82509319\n", + " 84.6534244 83.96086026 82.72578935 81.19023674 79.50664486 77.76043854\n", + " 86.6984902 85.65438612 84.03898568 82.21913056 80.33294013 78.43884558\n", + " 88.61780046 86.84637931 84.83282934 82.79823023 80.78132572 78.79952798]\n", + "DEBUG:root:radec2pix: ccdpx: [[-4.45000000e+01 -4.99999797e-01]\n", + " [-4.45000000e+01 2.91928572e+02]\n", + " [-4.45000000e+01 5.84357143e+02]\n", + " [-4.45000000e+01 8.76785714e+02]\n", + " [-4.45000000e+01 1.16921429e+03]\n", + " [-4.45000000e+01 1.46164286e+03]\n", + " [-4.45000000e+01 1.75407143e+03]\n", + " [-4.45000001e+01 2.04650000e+03]\n", + " [-4.45000000e+01 -4.99999797e-01]\n", + " [ 2.47928571e+02 -5.00000034e-01]\n", + " [ 5.40357143e+02 -4.99999972e-01]\n", + " [ 8.32785714e+02 -4.99999760e-01]\n", + " [ 1.12521429e+03 -5.00000049e-01]\n", + " [ 1.41764286e+03 -4.99999867e-01]\n", + " [ 1.71007143e+03 -5.00000044e-01]\n", + " [ 2.00250000e+03 -4.99999770e-01]\n", + " [-4.45000001e+01 2.04650000e+03]\n", + " [ 2.47928571e+02 2.04650000e+03]\n", + " [ 5.40357143e+02 2.04650000e+03]\n", + " [ 8.32785714e+02 2.04650000e+03]\n", + " [ 1.12521429e+03 2.04650000e+03]\n", + " [ 1.41764286e+03 2.04650000e+03]\n", + " [ 1.71007143e+03 2.04650000e+03]\n", + " [ 2.00250000e+03 2.04650000e+03]\n", + " [ 2.00250000e+03 -4.99999770e-01]\n", + " [ 2.00250000e+03 2.91928572e+02]\n", + " [ 2.00250000e+03 5.84357143e+02]\n", + " [ 2.00250000e+03 8.76785714e+02]\n", + " [ 2.00250000e+03 1.16921429e+03]\n", + " [ 2.00250000e+03 1.46164286e+03]\n", + " [ 2.00250000e+03 1.75407143e+03]\n", + " [ 2.00250000e+03 2.04650000e+03]\n", + " [-4.35000000e+01 1.27000000e+02]\n", + " [-4.35000000e+01 4.85400000e+02]\n", + " [-4.35000000e+01 8.43800000e+02]\n", + " [-4.35000000e+01 1.20220000e+03]\n", + " [-4.35000000e+01 1.56060000e+03]\n", + " [-4.35000000e+01 1.91900000e+03]\n", + " [ 8.30000000e+01 5.00000045e-01]\n", + " [ 4.41400000e+02 5.00000251e-01]\n", + " [ 7.99800000e+02 4.99999878e-01]\n", + " [ 1.15820000e+03 4.99999746e-01]\n", + " [ 1.51660000e+03 5.00000268e-01]\n", + " [ 1.87500000e+03 4.99999743e-01]\n", + " [ 8.29999998e+01 2.04550000e+03]\n", + " [ 4.41400000e+02 2.04550000e+03]\n", + " [ 7.99800000e+02 2.04550000e+03]\n", + " [ 1.15820000e+03 2.04550000e+03]\n", + " [ 1.51660000e+03 2.04550000e+03]\n", + " [ 1.87500000e+03 2.04550000e+03]\n", + " [ 2.00150000e+03 1.27000000e+02]\n", + " [ 2.00150000e+03 4.85400000e+02]\n", + " [ 2.00150000e+03 8.43800000e+02]\n", + " [ 2.00150000e+03 1.20220000e+03]\n", + " [ 2.00150000e+03 1.56060000e+03]\n", + " [ 2.00150000e+03 1.91900000e+03]\n", + " [-4.35000000e+01 5.00000140e-01]\n", + " [-4.35000000e+01 5.00000140e-01]\n", + " [ 2.00150000e+03 2.04550000e+03]\n", + " [ 2.00150000e+03 2.04550000e+03]\n", + " [ 8.30000000e+01 1.27000000e+02]\n", + " [ 4.41400000e+02 1.27000000e+02]\n", + " [ 7.99800000e+02 1.27000000e+02]\n", + " [ 1.15820000e+03 1.27000000e+02]\n", + " [ 1.51660000e+03 1.27000000e+02]\n", + " [ 1.87500000e+03 1.27000000e+02]\n", + " [ 8.30000000e+01 4.85400000e+02]\n", + " [ 4.41400000e+02 4.85400000e+02]\n", + " [ 7.99800000e+02 4.85400000e+02]\n", + " [ 1.15820000e+03 4.85400000e+02]\n", + " [ 1.51660000e+03 4.85400000e+02]\n", + " [ 1.87500000e+03 4.85400000e+02]\n", + " [ 8.30000000e+01 8.43800000e+02]\n", + " [ 4.41400000e+02 8.43800000e+02]\n", + " [ 7.99800000e+02 8.43800000e+02]\n", + " [ 1.15820000e+03 8.43800000e+02]\n", + " [ 1.51660000e+03 8.43800000e+02]\n", + " [ 1.87500000e+03 8.43800000e+02]\n", + " [ 8.30000000e+01 1.20220000e+03]\n", + " [ 4.41400000e+02 1.20220000e+03]\n", + " [ 7.99800000e+02 1.20220000e+03]\n", + " [ 1.15820000e+03 1.20220000e+03]\n", + " [ 1.51660000e+03 1.20220000e+03]\n", + " [ 1.87500000e+03 1.20220000e+03]\n", + " [ 8.30000001e+01 1.56060000e+03]\n", + " [ 4.41400000e+02 1.56060000e+03]\n", + " [ 7.99800000e+02 1.56060000e+03]\n", + " [ 1.15820000e+03 1.56060000e+03]\n", + " [ 1.51660000e+03 1.56060000e+03]\n", + " [ 1.87500000e+03 1.56060000e+03]\n", + " [ 8.29999998e+01 1.91900000e+03]\n", + " [ 4.41400000e+02 1.91900000e+03]\n", + " [ 7.99800000e+02 1.91900000e+03]\n", + " [ 1.15820000e+03 1.91900000e+03]\n", + " [ 1.51660000e+03 1.91900000e+03]\n", + " [ 1.87500000e+03 1.91900000e+03]]\n", + "DEBUG:root:radec2pix: fitpx: [[ 2.13550000e+03 -4.99999797e-01]\n", + " [ 2.13550000e+03 2.91928572e+02]\n", + " [ 2.13550000e+03 5.84357143e+02]\n", + " [ 2.13550000e+03 8.76785714e+02]\n", + " [ 2.13550000e+03 1.16921429e+03]\n", + " [ 2.13550000e+03 1.46164286e+03]\n", + " [ 2.13550000e+03 1.75407143e+03]\n", + " [ 2.13550000e+03 2.04650000e+03]\n", + " [ 2.13550000e+03 -4.99999797e-01]\n", + " [ 2.42792857e+03 -5.00000034e-01]\n", + " [ 2.72035714e+03 -4.99999972e-01]\n", + " [ 3.01278571e+03 -4.99999760e-01]\n", + " [ 3.30521429e+03 -5.00000049e-01]\n", + " [ 3.59764286e+03 -4.99999867e-01]\n", + " [ 3.89007143e+03 -5.00000044e-01]\n", + " [ 4.18250000e+03 -4.99999770e-01]\n", + " [ 2.13550000e+03 2.04650000e+03]\n", + " [ 2.42792857e+03 2.04650000e+03]\n", + " [ 2.72035714e+03 2.04650000e+03]\n", + " [ 3.01278571e+03 2.04650000e+03]\n", + " [ 3.30521429e+03 2.04650000e+03]\n", + " [ 3.59764286e+03 2.04650000e+03]\n", + " [ 3.89007143e+03 2.04650000e+03]\n", + " [ 4.18250000e+03 2.04650000e+03]\n", + " [ 4.18250000e+03 -4.99999770e-01]\n", + " [ 4.18250000e+03 2.91928572e+02]\n", + " [ 4.18250000e+03 5.84357143e+02]\n", + " [ 4.18250000e+03 8.76785714e+02]\n", + " [ 4.18250000e+03 1.16921429e+03]\n", + " [ 4.18250000e+03 1.46164286e+03]\n", + " [ 4.18250000e+03 1.75407143e+03]\n", + " [ 4.18250000e+03 2.04650000e+03]\n", + " [ 2.13650000e+03 1.27000000e+02]\n", + " [ 2.13650000e+03 4.85400000e+02]\n", + " [ 2.13650000e+03 8.43800000e+02]\n", + " [ 2.13650000e+03 1.20220000e+03]\n", + " [ 2.13650000e+03 1.56060000e+03]\n", + " [ 2.13650000e+03 1.91900000e+03]\n", + " [ 2.26300000e+03 5.00000045e-01]\n", + " [ 2.62140000e+03 5.00000251e-01]\n", + " [ 2.97980000e+03 4.99999878e-01]\n", + " [ 3.33820000e+03 4.99999746e-01]\n", + " [ 3.69660000e+03 5.00000268e-01]\n", + " [ 4.05500000e+03 4.99999743e-01]\n", + " [ 2.26300000e+03 2.04550000e+03]\n", + " [ 2.62140000e+03 2.04550000e+03]\n", + " [ 2.97980000e+03 2.04550000e+03]\n", + " [ 3.33820000e+03 2.04550000e+03]\n", + " [ 3.69660000e+03 2.04550000e+03]\n", + " [ 4.05500000e+03 2.04550000e+03]\n", + " [ 4.18150000e+03 1.27000000e+02]\n", + " [ 4.18150000e+03 4.85400000e+02]\n", + " [ 4.18150000e+03 8.43800000e+02]\n", + " [ 4.18150000e+03 1.20220000e+03]\n", + " [ 4.18150000e+03 1.56060000e+03]\n", + " [ 4.18150000e+03 1.91900000e+03]\n", + " [ 2.13650000e+03 5.00000140e-01]\n", + " [ 2.13650000e+03 5.00000140e-01]\n", + " [ 4.18150000e+03 2.04550000e+03]\n", + " [ 4.18150000e+03 2.04550000e+03]\n", + " [ 2.26300000e+03 1.27000000e+02]\n", + " [ 2.62140000e+03 1.27000000e+02]\n", + " [ 2.97980000e+03 1.27000000e+02]\n", + " [ 3.33820000e+03 1.27000000e+02]\n", + " [ 3.69660000e+03 1.27000000e+02]\n", + " [ 4.05500000e+03 1.27000000e+02]\n", + " [ 2.26300000e+03 4.85400000e+02]\n", + " [ 2.62140000e+03 4.85400000e+02]\n", + " [ 2.97980000e+03 4.85400000e+02]\n", + " [ 3.33820000e+03 4.85400000e+02]\n", + " [ 3.69660000e+03 4.85400000e+02]\n", + " [ 4.05500000e+03 4.85400000e+02]\n", + " [ 2.26300000e+03 8.43800000e+02]\n", + " [ 2.62140000e+03 8.43800000e+02]\n", + " [ 2.97980000e+03 8.43800000e+02]\n", + " [ 3.33820000e+03 8.43800000e+02]\n", + " [ 3.69660000e+03 8.43800000e+02]\n", + " [ 4.05500000e+03 8.43800000e+02]\n", + " [ 2.26300000e+03 1.20220000e+03]\n", + " [ 2.62140000e+03 1.20220000e+03]\n", + " [ 2.97980000e+03 1.20220000e+03]\n", + " [ 3.33820000e+03 1.20220000e+03]\n", + " [ 3.69660000e+03 1.20220000e+03]\n", + " [ 4.05500000e+03 1.20220000e+03]\n", + " [ 2.26300000e+03 1.56060000e+03]\n", + " [ 2.62140000e+03 1.56060000e+03]\n", + " [ 2.97980000e+03 1.56060000e+03]\n", + " [ 3.33820000e+03 1.56060000e+03]\n", + " [ 3.69660000e+03 1.56060000e+03]\n", + " [ 4.05500000e+03 1.56060000e+03]\n", + " [ 2.26300000e+03 1.91900000e+03]\n", + " [ 2.62140000e+03 1.91900000e+03]\n", + " [ 2.97980000e+03 1.91900000e+03]\n", + " [ 3.33820000e+03 1.91900000e+03]\n", + " [ 3.69660000e+03 1.91900000e+03]\n", + " [ 4.05500000e+03 1.91900000e+03]]\n", + "DEBUG:root:fitpix2pix: ccdpx: shape: (96, 2)\n", + "DEBUG:root:fitpix2pix: visCut: True\n", + "DEBUG:root:optics_fp: rtanth: [31.5581844 27.17194416 22.78577643 18.39973306 14.01393083 9.62869923\n", + " 5.24546963 0.89418442 31.5581844 31.89890725 32.82747441 34.29617149\n", + " 36.23938733 38.58549624 41.26583765 44.21967554 0.89418442 4.73506565\n", + " 9.08425224 13.45763509 17.83742574 22.21983534 26.60356968 30.98806655\n", + " 44.21967554 41.20406839 38.45324836 36.02791805 33.99780815 32.43720936\n", + " 31.41616867 30.98806655 29.64590075 24.27020709 18.89468775 13.51955065\n", + " 8.14555257 2.77930847 31.61752824 32.43532389 34.09156981 36.4722193\n", + " 39.44633291 42.89063222 2.34966506 7.60940668 12.96487432 18.33236521\n", + " 23.70371309 29.07678054 42.86493558 39.33911823 36.27027014 33.78315439\n", + " 32.01364237 31.08452713 31.54331756 31.54331756 30.97348847 30.97348847\n", + " 29.72484887 30.59328006 32.34398987 34.84424384 37.94616883 41.5151163\n", + " 24.36657877 25.41873926 27.5008582 30.40205338 33.9127594 37.86381389\n", + " 19.01831838 20.34892081 22.89680053 26.31066557 30.29920003 34.66460262\n", + " 13.69180262 15.48701401 18.70915549 22.76005595 27.27289033 32.05313869\n", + " 8.42835902 11.10942753 15.28411843 20.03975859 25.04760117 30.18237029\n", + " 3.52303344 8.04946636 13.22795543 18.51935347 23.84862372 29.19503391]\n", + "DEBUG:root:optics_fp: cphi: [-0.00832855 -0.00971656 -0.01163892 -0.01447769 -0.01909311 -0.02791171\n", + " -0.05146104 -0.30320505 -0.00832855 -0.1457499 -0.27524782 -0.39135911\n", + " -0.49141415 -0.57521551 -0.64415037 -0.70031796 -0.30320505 -0.98362937\n", + " -0.99556659 -0.99797672 -0.99884564 -0.99925418 -0.99947834 -0.99961448\n", + " -0.70031796 -0.75160095 -0.80539882 -0.85964958 -0.91101663 -0.95488339\n", + " -0.98595524 -0.99961448 -0.00938916 -0.01152859 -0.01488525 -0.02091069\n", + " -0.03488457 -0.10276119 -0.06880165 -0.23281216 -0.37919455 -0.50184326\n", + " -0.60029249 -0.67742851 -0.92933123 -0.99345681 -0.99774332 -0.99886819\n", + " -0.99932092 -0.99954725 -0.72211351 -0.78687071 -0.8534883 -0.91636505\n", + " -0.96706125 -0.99601335 -0.00880814 -0.00880814 -0.99960055 -0.99960055\n", + " -0.0731997 -0.24684669 -0.39969867 -0.52530483 -0.62403795 -0.69988601\n", + " -0.08935604 -0.29715482 -0.47014172 -0.60210737 -0.6983006 -0.76741609\n", + " -0.11456071 -0.37126057 -0.56474055 -0.69579203 -0.78162959 -0.83828312\n", + " -0.15923419 -0.48790573 -0.69122322 -0.80440059 -0.86841556 -0.90662579\n", + " -0.25884683 -0.68029192 -0.84621522 -0.91366637 -0.94562561 -0.96286848\n", + " -0.61966627 -0.93908148 -0.97786122 -0.98875506 -0.9932273 -0.99548108]\n", + "DEBUG:root:optics_fp: sphi: [0.99996532 0.99995279 0.99993227 0.99989519 0.99981771 0.99961039\n", + " 0.998675 0.95292534 0.99996532 0.98932147 0.96137331 0.92023804\n", + " 0.87092602 0.8180019 0.76489888 0.71383104 0.95292534 0.18020339\n", + " 0.09405934 0.06358046 0.04803532 0.03861462 0.0322962 0.02776482\n", + " 0.71383104 0.65961808 0.59273329 0.51088414 0.41236963 0.296981\n", + " 0.16700975 0.02776482 0.99995592 0.99993354 0.99988921 0.99978135\n", + " 0.99939135 0.99470606 0.99763036 0.97252172 0.92531697 0.86495858\n", + " 0.79978055 0.73558862 0.36924717 0.1142084 0.06714366 0.04756397\n", + " 0.03684701 0.03008799 0.69177459 0.61711788 0.52111201 0.40034372\n", + " 0.25454379 0.08920432 0.99996121 0.99996121 0.02826205 0.02826205\n", + " 0.9973173 0.96905455 0.91664659 0.85091412 0.78139404 0.71425456\n", + " 0.99599975 0.95482931 0.88259094 0.79841512 0.71580463 0.64114939\n", + " 0.99341625 0.92852872 0.82526851 0.71824331 0.62374288 0.54523519\n", + " 0.98724084 0.87289633 0.72264131 0.59408727 0.49583709 0.42193564\n", + " 0.96591838 0.73294127 0.53284125 0.40646497 0.32525713 0.2699709\n", + " 0.78486541 0.34369459 0.20925449 0.1495441 0.11618746 0.09496005]\n", + "DEBUG:root:optics_fp: xyfp: [[ 0.26283402 -31.55708986]\n", + " [ 0.26401791 -27.17066146]\n", + " [ 0.2652018 -22.78423305]\n", + " [ 0.26638569 -18.39780463]\n", + " [ 0.26756957 -14.01137623]\n", + " [ 0.26875346 -9.62494781]\n", + " [ 0.26993735 -5.2385194 ]\n", + " [ 0.27112123 -0.85209099]\n", + " [ 0.26283402 -31.55708986]\n", + " [ 4.64926244 -31.55827376]\n", + " [ 9.03569085 -31.55945764]\n", + " [ 13.42211926 -31.56064153]\n", + " [ 17.80854767 -31.56182542]\n", + " [ 22.19497608 -31.56300931]\n", + " [ 26.5814045 -31.56419319]\n", + " [ 30.96783291 -31.56537708]\n", + " [ 0.27112123 -0.85209099]\n", + " [ 4.65754965 -0.85327487]\n", + " [ 9.04397805 -0.85445876]\n", + " [ 13.43040647 -0.85564265]\n", + " [ 17.81683488 -0.85682653]\n", + " [ 22.20326329 -0.85801042]\n", + " [ 26.5896917 -0.85919431]\n", + " [ 30.97612012 -0.8603782 ]\n", + " [ 30.96783291 -31.56537708]\n", + " [ 30.9690168 -27.17894867]\n", + " [ 30.97020068 -22.79252025]\n", + " [ 30.97138456 -18.40609184]\n", + " [ 30.97256845 -14.01966343]\n", + " [ 30.97375234 -9.63323502]\n", + " [ 30.97493622 -5.24680661]\n", + " [ 30.97612012 -0.8603782 ]\n", + " [ 0.2783502 -29.64459399]\n", + " [ 0.27980117 -24.26859418]\n", + " [ 0.28125214 -18.89259438]\n", + " [ 0.28270311 -13.51659457]\n", + " [ 0.28415408 -8.14059477]\n", + " [ 0.28560505 -2.76459497]\n", + " [ 2.175338 -31.54260605]\n", + " [ 7.55133781 -31.54405702]\n", + " [ 12.92733761 -31.54550799]\n", + " [ 18.30333742 -31.54695896]\n", + " [ 23.67933722 -31.54840993]\n", + " [ 29.05533702 -31.5498609 ]\n", + " [ 2.18361712 -0.86760716]\n", + " [ 7.55961692 -0.86905814]\n", + " [ 12.93561673 -0.87050911]\n", + " [ 18.31161653 -0.87196007]\n", + " [ 23.68761633 -0.87341105]\n", + " [ 29.06361614 -0.87486202]\n", + " [ 30.95334909 -29.6528731 ]\n", + " [ 30.95480005 -24.27687329]\n", + " [ 30.95625103 -18.90087349]\n", + " [ 30.95770199 -13.52487368]\n", + " [ 30.95915297 -8.14887388]\n", + " [ 30.96060394 -2.77287408]\n", + " [ 0.27783807 -31.54209392]\n", + " [ 0.27783807 -31.54209392]\n", + " [ 30.96111607 -0.87537415]\n", + " [ 30.96111607 -0.87537415]\n", + " [ 2.17585013 -29.64510611]\n", + " [ 7.55184994 -29.64655709]\n", + " [ 12.92784974 -29.64800806]\n", + " [ 18.30384955 -29.64945903]\n", + " [ 23.67984935 -29.65091 ]\n", + " [ 29.05584916 -29.65236097]\n", + " [ 2.1773011 -24.26910631]\n", + " [ 7.55330091 -24.27055728]\n", + " [ 12.92930071 -24.27200825]\n", + " [ 18.30530052 -24.27345922]\n", + " [ 23.68130032 -24.27491019]\n", + " [ 29.05730013 -24.27636116]\n", + " [ 2.17875207 -18.89310651]\n", + " [ 7.55475188 -18.89455748]\n", + " [ 12.93075168 -18.89600845]\n", + " [ 18.30675149 -18.89745942]\n", + " [ 23.68275129 -18.89891039]\n", + " [ 29.0587511 -18.90036136]\n", + " [ 2.18020304 -13.51710671]\n", + " [ 7.55620285 -13.51855767]\n", + " [ 12.93220265 -13.52000864]\n", + " [ 18.30820245 -13.52145961]\n", + " [ 23.68420226 -13.52291058]\n", + " [ 29.06020207 -13.52436156]\n", + " [ 2.18165401 -8.1411069 ]\n", + " [ 7.55765382 -8.14255787]\n", + " [ 12.93365363 -8.14400884]\n", + " [ 18.30965343 -8.14545981]\n", + " [ 23.68565323 -8.14691078]\n", + " [ 29.06165303 -8.14836175]\n", + " [ 2.18310498 -2.76510709]\n", + " [ 7.55910479 -2.76655806]\n", + " [ 12.93510459 -2.76800904]\n", + " [ 18.31110439 -2.76946001]\n", + " [ 23.68710421 -2.77091098]\n", + " [ 29.063104 -2.77236195]]\n", + "DEBUG:root:optics_fp: xyfp shape: (96, 2)\n", + "DEBUG:root:make_az_asym: xyp: [[ 0.26283402 -31.55708986]\n", + " [ 0.26401791 -27.17066146]\n", + " [ 0.2652018 -22.78423305]\n", + " [ 0.26638569 -18.39780463]\n", + " [ 0.26756957 -14.01137623]\n", + " [ 0.26875346 -9.62494781]\n", + " [ 0.26993735 -5.2385194 ]\n", + " [ 0.27112123 -0.85209099]\n", + " [ 0.26283402 -31.55708986]\n", + " [ 4.64926244 -31.55827376]\n", + " [ 9.03569085 -31.55945764]\n", + " [ 13.42211926 -31.56064153]\n", + " [ 17.80854767 -31.56182542]\n", + " [ 22.19497608 -31.56300931]\n", + " [ 26.5814045 -31.56419319]\n", + " [ 30.96783291 -31.56537708]\n", + " [ 0.27112123 -0.85209099]\n", + " [ 4.65754965 -0.85327487]\n", + " [ 9.04397805 -0.85445876]\n", + " [ 13.43040647 -0.85564265]\n", + " [ 17.81683488 -0.85682653]\n", + " [ 22.20326329 -0.85801042]\n", + " [ 26.5896917 -0.85919431]\n", + " [ 30.97612012 -0.8603782 ]\n", + " [ 30.96783291 -31.56537708]\n", + " [ 30.9690168 -27.17894867]\n", + " [ 30.97020068 -22.79252025]\n", + " [ 30.97138456 -18.40609184]\n", + " [ 30.97256845 -14.01966343]\n", + " [ 30.97375234 -9.63323502]\n", + " [ 30.97493622 -5.24680661]\n", + " [ 30.97612012 -0.8603782 ]\n", + " [ 0.2783502 -29.64459399]\n", + " [ 0.27980117 -24.26859418]\n", + " [ 0.28125214 -18.89259438]\n", + " [ 0.28270311 -13.51659457]\n", + " [ 0.28415408 -8.14059477]\n", + " [ 0.28560505 -2.76459497]\n", + " [ 2.175338 -31.54260605]\n", + " [ 7.55133781 -31.54405702]\n", + " [ 12.92733761 -31.54550799]\n", + " [ 18.30333742 -31.54695896]\n", + " [ 23.67933722 -31.54840993]\n", + " [ 29.05533702 -31.5498609 ]\n", + " [ 2.18361712 -0.86760716]\n", + " [ 7.55961692 -0.86905814]\n", + " [ 12.93561673 -0.87050911]\n", + " [ 18.31161653 -0.87196007]\n", + " [ 23.68761633 -0.87341105]\n", + " [ 29.06361614 -0.87486202]\n", + " [ 30.95334909 -29.6528731 ]\n", + " [ 30.95480005 -24.27687329]\n", + " [ 30.95625103 -18.90087349]\n", + " [ 30.95770199 -13.52487368]\n", + " [ 30.95915297 -8.14887388]\n", + " [ 30.96060394 -2.77287408]\n", + " [ 0.27783807 -31.54209392]\n", + " [ 0.27783807 -31.54209392]\n", + " [ 30.96111607 -0.87537415]\n", + " [ 30.96111607 -0.87537415]\n", + " [ 2.17585013 -29.64510611]\n", + " [ 7.55184994 -29.64655709]\n", + " [ 12.92784974 -29.64800806]\n", + " [ 18.30384955 -29.64945903]\n", + " [ 23.67984935 -29.65091 ]\n", + " [ 29.05584916 -29.65236097]\n", + " [ 2.1773011 -24.26910631]\n", + " [ 7.55330091 -24.27055728]\n", + " [ 12.92930071 -24.27200825]\n", + " [ 18.30530052 -24.27345922]\n", + " [ 23.68130032 -24.27491019]\n", + " [ 29.05730013 -24.27636116]\n", + " [ 2.17875207 -18.89310651]\n", + " [ 7.55475188 -18.89455748]\n", + " [ 12.93075168 -18.89600845]\n", + " [ 18.30675149 -18.89745942]\n", + " [ 23.68275129 -18.89891039]\n", + " [ 29.0587511 -18.90036136]\n", + " [ 2.18020304 -13.51710671]\n", + " [ 7.55620285 -13.51855767]\n", + " [ 12.93220265 -13.52000864]\n", + " [ 18.30820245 -13.52145961]\n", + " [ 23.68420226 -13.52291058]\n", + " [ 29.06020207 -13.52436156]\n", + " [ 2.18165401 -8.1411069 ]\n", + " [ 7.55765382 -8.14255787]\n", + " [ 12.93365363 -8.14400884]\n", + " [ 18.30965343 -8.14545981]\n", + " [ 23.68565323 -8.14691078]\n", + " [ 29.06165303 -8.14836175]\n", + " [ 2.18310498 -2.76510709]\n", + " [ 7.55910479 -2.76655806]\n", + " [ 12.93510459 -2.76800904]\n", + " [ 18.31110439 -2.76946001]\n", + " [ 23.68710421 -2.77091098]\n", + " [ 29.063104 -2.77236195]]\n", + "DEBUG:root:make_az_asym: xyp: shape: (96, 2)\n", + "DEBUG:root:radec2pix: xyfp: [[ 0.26283402 -31.55708986]\n", + " [ 0.26401791 -27.17066146]\n", + " [ 0.2652018 -22.78423305]\n", + " [ 0.26638569 -18.39780463]\n", + " [ 0.26756957 -14.01137623]\n", + " [ 0.26875346 -9.62494781]\n", + " [ 0.26993735 -5.2385194 ]\n", + " [ 0.27112123 -0.85209099]\n", + " [ 0.26283402 -31.55708986]\n", + " [ 4.64926244 -31.55827376]\n", + " [ 9.03569085 -31.55945764]\n", + " [ 13.42211926 -31.56064153]\n", + " [ 17.80854767 -31.56182542]\n", + " [ 22.19497608 -31.56300931]\n", + " [ 26.5814045 -31.56419319]\n", + " [ 30.96783291 -31.56537708]\n", + " [ 0.27112123 -0.85209099]\n", + " [ 4.65754965 -0.85327487]\n", + " [ 9.04397805 -0.85445876]\n", + " [ 13.43040647 -0.85564265]\n", + " [ 17.81683488 -0.85682653]\n", + " [ 22.20326329 -0.85801042]\n", + " [ 26.5896917 -0.85919431]\n", + " [ 30.97612012 -0.8603782 ]\n", + " [ 30.96783291 -31.56537708]\n", + " [ 30.9690168 -27.17894867]\n", + " [ 30.97020068 -22.79252025]\n", + " [ 30.97138456 -18.40609184]\n", + " [ 30.97256845 -14.01966343]\n", + " [ 30.97375234 -9.63323502]\n", + " [ 30.97493622 -5.24680661]\n", + " [ 30.97612012 -0.8603782 ]\n", + " [ 0.2783502 -29.64459399]\n", + " [ 0.27980117 -24.26859418]\n", + " [ 0.28125214 -18.89259438]\n", + " [ 0.28270311 -13.51659457]\n", + " [ 0.28415408 -8.14059477]\n", + " [ 0.28560505 -2.76459497]\n", + " [ 2.175338 -31.54260605]\n", + " [ 7.55133781 -31.54405702]\n", + " [ 12.92733761 -31.54550799]\n", + " [ 18.30333742 -31.54695896]\n", + " [ 23.67933722 -31.54840993]\n", + " [ 29.05533702 -31.5498609 ]\n", + " [ 2.18361712 -0.86760716]\n", + " [ 7.55961692 -0.86905814]\n", + " [ 12.93561673 -0.87050911]\n", + " [ 18.31161653 -0.87196007]\n", + " [ 23.68761633 -0.87341105]\n", + " [ 29.06361614 -0.87486202]\n", + " [ 30.95334909 -29.6528731 ]\n", + " [ 30.95480005 -24.27687329]\n", + " [ 30.95625103 -18.90087349]\n", + " [ 30.95770199 -13.52487368]\n", + " [ 30.95915297 -8.14887388]\n", + " [ 30.96060394 -2.77287408]\n", + " [ 0.27783807 -31.54209392]\n", + " [ 0.27783807 -31.54209392]\n", + " [ 30.96111607 -0.87537415]\n", + " [ 30.96111607 -0.87537415]\n", + " [ 2.17585013 -29.64510611]\n", + " [ 7.55184994 -29.64655709]\n", + " [ 12.92784974 -29.64800806]\n", + " [ 18.30384955 -29.64945903]\n", + " [ 23.67984935 -29.65091 ]\n", + " [ 29.05584916 -29.65236097]\n", + " [ 2.1773011 -24.26910631]\n", + " [ 7.55330091 -24.27055728]\n", + " [ 12.92930071 -24.27200825]\n", + " [ 18.30530052 -24.27345922]\n", + " [ 23.68130032 -24.27491019]\n", + " [ 29.05730013 -24.27636116]\n", + " [ 2.17875207 -18.89310651]\n", + " [ 7.55475188 -18.89455748]\n", + " [ 12.93075168 -18.89600845]\n", + " [ 18.30675149 -18.89745942]\n", + " [ 23.68275129 -18.89891039]\n", + " [ 29.0587511 -18.90036136]\n", + " [ 2.18020304 -13.51710671]\n", + " [ 7.55620285 -13.51855767]\n", + " [ 12.93220265 -13.52000864]\n", + " [ 18.30820245 -13.52145961]\n", + " [ 23.68420226 -13.52291058]\n", + " [ 29.06020207 -13.52436156]\n", + " [ 2.18165401 -8.1411069 ]\n", + " [ 7.55765382 -8.14255787]\n", + " [ 12.93365363 -8.14400884]\n", + " [ 18.30965343 -8.14545981]\n", + " [ 23.68565323 -8.14691078]\n", + " [ 29.06165303 -8.14836175]\n", + " [ 2.18310498 -2.76510709]\n", + " [ 7.55910479 -2.76655806]\n", + " [ 12.93510459 -2.76800904]\n", + " [ 18.31110439 -2.76946001]\n", + " [ 23.68710421 -2.77091098]\n", + " [ 29.063104 -2.77236195]]\n", + "DEBUG:root:radec2pix: xyfp Shape: (96, 2)\n", + "DEBUG:root:mm_to_pix: fitpx: [[0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]]\n", + "DEBUG:root:mm_to_pix: fitpx.shape: (96, 2)\n", + "DEBUG:root:radec2pix: xyfp: [[ 0.26283402 -31.55708986]\n", + " [ 0.26401791 -27.17066146]\n", + " [ 0.2652018 -22.78423305]\n", + " [ 0.26638569 -18.39780463]\n", + " [ 0.26756957 -14.01137623]\n", + " [ 0.26875346 -9.62494781]\n", + " [ 0.26993735 -5.2385194 ]\n", + " [ 0.27112123 -0.85209099]\n", + " [ 0.26283402 -31.55708986]\n", + " [ 4.64926244 -31.55827376]\n", + " [ 9.03569085 -31.55945764]\n", + " [ 13.42211926 -31.56064153]\n", + " [ 17.80854767 -31.56182542]\n", + " [ 22.19497608 -31.56300931]\n", + " [ 26.5814045 -31.56419319]\n", + " [ 30.96783291 -31.56537708]\n", + " [ 0.27112123 -0.85209099]\n", + " [ 4.65754965 -0.85327487]\n", + " [ 9.04397805 -0.85445876]\n", + " [ 13.43040647 -0.85564265]\n", + " [ 17.81683488 -0.85682653]\n", + " [ 22.20326329 -0.85801042]\n", + " [ 26.5896917 -0.85919431]\n", + " [ 30.97612012 -0.8603782 ]\n", + " [ 30.96783291 -31.56537708]\n", + " [ 30.9690168 -27.17894867]\n", + " [ 30.97020068 -22.79252025]\n", + " [ 30.97138456 -18.40609184]\n", + " [ 30.97256845 -14.01966343]\n", + " [ 30.97375234 -9.63323502]\n", + " [ 30.97493622 -5.24680661]\n", + " [ 30.97612012 -0.8603782 ]\n", + " [ 0.2783502 -29.64459399]\n", + " [ 0.27980117 -24.26859418]\n", + " [ 0.28125214 -18.89259438]\n", + " [ 0.28270311 -13.51659457]\n", + " [ 0.28415408 -8.14059477]\n", + " [ 0.28560505 -2.76459497]\n", + " [ 2.175338 -31.54260605]\n", + " [ 7.55133781 -31.54405702]\n", + " [ 12.92733761 -31.54550799]\n", + " [ 18.30333742 -31.54695896]\n", + " [ 23.67933722 -31.54840993]\n", + " [ 29.05533702 -31.5498609 ]\n", + " [ 2.18361712 -0.86760716]\n", + " [ 7.55961692 -0.86905814]\n", + " [ 12.93561673 -0.87050911]\n", + " [ 18.31161653 -0.87196007]\n", + " [ 23.68761633 -0.87341105]\n", + " [ 29.06361614 -0.87486202]\n", + " [ 30.95334909 -29.6528731 ]\n", + " [ 30.95480005 -24.27687329]\n", + " [ 30.95625103 -18.90087349]\n", + " [ 30.95770199 -13.52487368]\n", + " [ 30.95915297 -8.14887388]\n", + " [ 30.96060394 -2.77287408]\n", + " [ 0.27783807 -31.54209392]\n", + " [ 0.27783807 -31.54209392]\n", + " [ 30.96111607 -0.87537415]\n", + " [ 30.96111607 -0.87537415]\n", + " [ 2.17585013 -29.64510611]\n", + " [ 7.55184994 -29.64655709]\n", + " [ 12.92784974 -29.64800806]\n", + " [ 18.30384955 -29.64945903]\n", + " [ 23.67984935 -29.65091 ]\n", + " [ 29.05584916 -29.65236097]\n", + " [ 2.1773011 -24.26910631]\n", + " [ 7.55330091 -24.27055728]\n", + " [ 12.92930071 -24.27200825]\n", + " [ 18.30530052 -24.27345922]\n", + " [ 23.68130032 -24.27491019]\n", + " [ 29.05730013 -24.27636116]\n", + " [ 2.17875207 -18.89310651]\n", + " [ 7.55475188 -18.89455748]\n", + " [ 12.93075168 -18.89600845]\n", + " [ 18.30675149 -18.89745942]\n", + " [ 23.68275129 -18.89891039]\n", + " [ 29.0587511 -18.90036136]\n", + " [ 2.18020304 -13.51710671]\n", + " [ 7.55620285 -13.51855767]\n", + " [ 12.93220265 -13.52000864]\n", + " [ 18.30820245 -13.52145961]\n", + " [ 23.68420226 -13.52291058]\n", + " [ 29.06020207 -13.52436156]\n", + " [ 2.18165401 -8.1411069 ]\n", + " [ 7.55765382 -8.14255787]\n", + " [ 12.93365363 -8.14400884]\n", + " [ 18.30965343 -8.14545981]\n", + " [ 23.68565323 -8.14691078]\n", + " [ 29.06165303 -8.14836175]\n", + " [ 2.18310498 -2.76510709]\n", + " [ 7.55910479 -2.76655806]\n", + " [ 12.93510459 -2.76800904]\n", + " [ 18.31110439 -2.76946001]\n", + " [ 23.68710421 -2.77091098]\n", + " [ 29.063104 -2.77236195]]\n", + "DEBUG:root:radec2pix: ccdpx: [[-4.45000000e+01 -4.99999783e-01]\n", + " [-4.45000000e+01 2.91928571e+02]\n", + " [-4.45000000e+01 5.84357143e+02]\n", + " [-4.45000000e+01 8.76785714e+02]\n", + " [-4.45000000e+01 1.16921429e+03]\n", + " [-4.45000000e+01 1.46164286e+03]\n", + " [-4.45000000e+01 1.75407143e+03]\n", + " [-4.44999999e+01 2.04650000e+03]\n", + " [-4.45000000e+01 -4.99999783e-01]\n", + " [ 2.47928571e+02 -5.00000080e-01]\n", + " [ 5.40357143e+02 -5.00000178e-01]\n", + " [ 8.32785714e+02 -4.99999867e-01]\n", + " [ 1.12521429e+03 -5.00000095e-01]\n", + " [ 1.41764286e+03 -5.00000221e-01]\n", + " [ 1.71007143e+03 -5.00000185e-01]\n", + " [ 2.00250000e+03 -5.00000018e-01]\n", + " [-4.44999999e+01 2.04650000e+03]\n", + " [ 2.47928572e+02 2.04650000e+03]\n", + " [ 5.40357143e+02 2.04650000e+03]\n", + " [ 8.32785714e+02 2.04650000e+03]\n", + " [ 1.12521429e+03 2.04650000e+03]\n", + " [ 1.41764286e+03 2.04650000e+03]\n", + " [ 1.71007143e+03 2.04650000e+03]\n", + " [ 2.00250000e+03 2.04650000e+03]\n", + " [ 2.00250000e+03 -5.00000018e-01]\n", + " [ 2.00250000e+03 2.91928571e+02]\n", + " [ 2.00250000e+03 5.84357143e+02]\n", + " [ 2.00250000e+03 8.76785714e+02]\n", + " [ 2.00250000e+03 1.16921429e+03]\n", + " [ 2.00250000e+03 1.46164286e+03]\n", + " [ 2.00250000e+03 1.75407143e+03]\n", + " [ 2.00250000e+03 2.04650000e+03]\n", + " [-4.35000000e+01 1.27000000e+02]\n", + " [-4.35000000e+01 4.85400000e+02]\n", + " [-4.35000000e+01 8.43800000e+02]\n", + " [-4.35000000e+01 1.20220000e+03]\n", + " [-4.35000000e+01 1.56060000e+03]\n", + " [-4.35000000e+01 1.91900000e+03]\n", + " [ 8.30000000e+01 4.99999873e-01]\n", + " [ 4.41400000e+02 5.00000123e-01]\n", + " [ 7.99800000e+02 5.00000108e-01]\n", + " [ 1.15820000e+03 4.99999719e-01]\n", + " [ 1.51660000e+03 4.99999964e-01]\n", + " [ 1.87500000e+03 5.00000185e-01]\n", + " [ 8.30000000e+01 2.04550000e+03]\n", + " [ 4.41400000e+02 2.04550000e+03]\n", + " [ 7.99800000e+02 2.04550000e+03]\n", + " [ 1.15820000e+03 2.04550000e+03]\n", + " [ 1.51660000e+03 2.04550000e+03]\n", + " [ 1.87500000e+03 2.04550000e+03]\n", + " [ 2.00150000e+03 1.27000000e+02]\n", + " [ 2.00150000e+03 4.85400000e+02]\n", + " [ 2.00150000e+03 8.43800000e+02]\n", + " [ 2.00150000e+03 1.20220000e+03]\n", + " [ 2.00150000e+03 1.56060000e+03]\n", + " [ 2.00150000e+03 1.91900000e+03]\n", + " [-4.35000000e+01 4.99999853e-01]\n", + " [-4.35000000e+01 4.99999853e-01]\n", + " [ 2.00150000e+03 2.04550000e+03]\n", + " [ 2.00150000e+03 2.04550000e+03]\n", + " [ 8.30000000e+01 1.27000000e+02]\n", + " [ 4.41400000e+02 1.27000000e+02]\n", + " [ 7.99800000e+02 1.27000000e+02]\n", + " [ 1.15820000e+03 1.27000000e+02]\n", + " [ 1.51660000e+03 1.27000000e+02]\n", + " [ 1.87500000e+03 1.27000000e+02]\n", + " [ 8.30000000e+01 4.85400000e+02]\n", + " [ 4.41400000e+02 4.85400000e+02]\n", + " [ 7.99800000e+02 4.85400000e+02]\n", + " [ 1.15820000e+03 4.85400000e+02]\n", + " [ 1.51660000e+03 4.85400000e+02]\n", + " [ 1.87500000e+03 4.85400000e+02]\n", + " [ 8.30000000e+01 8.43800000e+02]\n", + " [ 4.41400000e+02 8.43800000e+02]\n", + " [ 7.99800000e+02 8.43800000e+02]\n", + " [ 1.15820000e+03 8.43800000e+02]\n", + " [ 1.51660000e+03 8.43800000e+02]\n", + " [ 1.87500000e+03 8.43800000e+02]\n", + " [ 8.30000000e+01 1.20220000e+03]\n", + " [ 4.41400000e+02 1.20220000e+03]\n", + " [ 7.99800000e+02 1.20220000e+03]\n", + " [ 1.15820000e+03 1.20220000e+03]\n", + " [ 1.51660000e+03 1.20220000e+03]\n", + " [ 1.87500000e+03 1.20220000e+03]\n", + " [ 8.30000001e+01 1.56060000e+03]\n", + " [ 4.41400000e+02 1.56060000e+03]\n", + " [ 7.99800000e+02 1.56060000e+03]\n", + " [ 1.15820000e+03 1.56060000e+03]\n", + " [ 1.51660000e+03 1.56060000e+03]\n", + " [ 1.87500000e+03 1.56060000e+03]\n", + " [ 8.29999999e+01 1.91900000e+03]\n", + " [ 4.41400000e+02 1.91900000e+03]\n", + " [ 7.99800000e+02 1.91900000e+03]\n", + " [ 1.15820000e+03 1.91900000e+03]\n", + " [ 1.51660000e+03 1.91900000e+03]\n", + " [ 1.87500000e+03 1.91900000e+03]]\n", + "DEBUG:root:radec2pix: fitpx: [[ 2.13550000e+03 -4.99999783e-01]\n", + " [ 2.13550000e+03 2.91928571e+02]\n", + " [ 2.13550000e+03 5.84357143e+02]\n", + " [ 2.13550000e+03 8.76785714e+02]\n", + " [ 2.13550000e+03 1.16921429e+03]\n", + " [ 2.13550000e+03 1.46164286e+03]\n", + " [ 2.13550000e+03 1.75407143e+03]\n", + " [ 2.13550000e+03 2.04650000e+03]\n", + " [ 2.13550000e+03 -4.99999783e-01]\n", + " [ 2.42792857e+03 -5.00000080e-01]\n", + " [ 2.72035714e+03 -5.00000178e-01]\n", + " [ 3.01278571e+03 -4.99999867e-01]\n", + " [ 3.30521429e+03 -5.00000095e-01]\n", + " [ 3.59764286e+03 -5.00000221e-01]\n", + " [ 3.89007143e+03 -5.00000185e-01]\n", + " [ 4.18250000e+03 -5.00000018e-01]\n", + " [ 2.13550000e+03 2.04650000e+03]\n", + " [ 2.42792857e+03 2.04650000e+03]\n", + " [ 2.72035714e+03 2.04650000e+03]\n", + " [ 3.01278571e+03 2.04650000e+03]\n", + " [ 3.30521429e+03 2.04650000e+03]\n", + " [ 3.59764286e+03 2.04650000e+03]\n", + " [ 3.89007143e+03 2.04650000e+03]\n", + " [ 4.18250000e+03 2.04650000e+03]\n", + " [ 4.18250000e+03 -5.00000018e-01]\n", + " [ 4.18250000e+03 2.91928571e+02]\n", + " [ 4.18250000e+03 5.84357143e+02]\n", + " [ 4.18250000e+03 8.76785714e+02]\n", + " [ 4.18250000e+03 1.16921429e+03]\n", + " [ 4.18250000e+03 1.46164286e+03]\n", + " [ 4.18250000e+03 1.75407143e+03]\n", + " [ 4.18250000e+03 2.04650000e+03]\n", + " [ 2.13650000e+03 1.27000000e+02]\n", + " [ 2.13650000e+03 4.85400000e+02]\n", + " [ 2.13650000e+03 8.43800000e+02]\n", + " [ 2.13650000e+03 1.20220000e+03]\n", + " [ 2.13650000e+03 1.56060000e+03]\n", + " [ 2.13650000e+03 1.91900000e+03]\n", + " [ 2.26300000e+03 4.99999873e-01]\n", + " [ 2.62140000e+03 5.00000123e-01]\n", + " [ 2.97980000e+03 5.00000108e-01]\n", + " [ 3.33820000e+03 4.99999719e-01]\n", + " [ 3.69660000e+03 4.99999964e-01]\n", + " [ 4.05500000e+03 5.00000185e-01]\n", + " [ 2.26300000e+03 2.04550000e+03]\n", + " [ 2.62140000e+03 2.04550000e+03]\n", + " [ 2.97980000e+03 2.04550000e+03]\n", + " [ 3.33820000e+03 2.04550000e+03]\n", + " [ 3.69660000e+03 2.04550000e+03]\n", + " [ 4.05500000e+03 2.04550000e+03]\n", + " [ 4.18150000e+03 1.27000000e+02]\n", + " [ 4.18150000e+03 4.85400000e+02]\n", + " [ 4.18150000e+03 8.43800000e+02]\n", + " [ 4.18150000e+03 1.20220000e+03]\n", + " [ 4.18150000e+03 1.56060000e+03]\n", + " [ 4.18150000e+03 1.91900000e+03]\n", + " [ 2.13650000e+03 4.99999853e-01]\n", + " [ 2.13650000e+03 4.99999853e-01]\n", + " [ 4.18150000e+03 2.04550000e+03]\n", + " [ 4.18150000e+03 2.04550000e+03]\n", + " [ 2.26300000e+03 1.27000000e+02]\n", + " [ 2.62140000e+03 1.27000000e+02]\n", + " [ 2.97980000e+03 1.27000000e+02]\n", + " [ 3.33820000e+03 1.27000000e+02]\n", + " [ 3.69660000e+03 1.27000000e+02]\n", + " [ 4.05500000e+03 1.27000000e+02]\n", + " [ 2.26300000e+03 4.85400000e+02]\n", + " [ 2.62140000e+03 4.85400000e+02]\n", + " [ 2.97980000e+03 4.85400000e+02]\n", + " [ 3.33820000e+03 4.85400000e+02]\n", + " [ 3.69660000e+03 4.85400000e+02]\n", + " [ 4.05500000e+03 4.85400000e+02]\n", + " [ 2.26300000e+03 8.43800000e+02]\n", + " [ 2.62140000e+03 8.43800000e+02]\n", + " [ 2.97980000e+03 8.43800000e+02]\n", + " [ 3.33820000e+03 8.43800000e+02]\n", + " [ 3.69660000e+03 8.43800000e+02]\n", + " [ 4.05500000e+03 8.43800000e+02]\n", + " [ 2.26300000e+03 1.20220000e+03]\n", + " [ 2.62140000e+03 1.20220000e+03]\n", + " [ 2.97980000e+03 1.20220000e+03]\n", + " [ 3.33820000e+03 1.20220000e+03]\n", + " [ 3.69660000e+03 1.20220000e+03]\n", + " [ 4.05500000e+03 1.20220000e+03]\n", + " [ 2.26300000e+03 1.56060000e+03]\n", + " [ 2.62140000e+03 1.56060000e+03]\n", + " [ 2.97980000e+03 1.56060000e+03]\n", + " [ 3.33820000e+03 1.56060000e+03]\n", + " [ 3.69660000e+03 1.56060000e+03]\n", + " [ 4.05500000e+03 1.56060000e+03]\n", + " [ 2.26300000e+03 1.91900000e+03]\n", + " [ 2.62140000e+03 1.91900000e+03]\n", + " [ 2.97980000e+03 1.91900000e+03]\n", + " [ 3.33820000e+03 1.91900000e+03]\n", + " [ 3.69660000e+03 1.91900000e+03]\n", + " [ 4.05500000e+03 1.91900000e+03]]\n", + "DEBUG:root:fitpix2pix: ccdpx: shape: (96, 2)\n", + "DEBUG:root:fitpix2pix: visCut: True\n" + ] + } + ], + "source": [ + "from testfun import test_radec2pix_SectorCameraCCD, test_radec2pix_benchmark_SectorCameraCCD\n", + "\n", + "test_radec2pix_df=pd.DataFrame(data=None, columns=['dr_med','dr_max','dr_std',\n", + " 'dc_med','dc_max','dc_std',\n", + " 'Sector','Camera','CCD'])\n", + "pool=Pool()\n", + "\n", + "for result in pool.map(test_radec2pix_benchmark_SectorCameraCCD, inlist):\n", + " r_med=np.median(result[1])\n", + " r_max=max(result[1])\n", + " r_std=np.std(result[1])\n", + " \n", + " dc_med=np.median(result[2])\n", + " dc_max=max(result[2])\n", + " dc_std=np.std(result[2])\n", + " \n", + " rdf=pd.DataFrame({'dr_med': r_med,'dr_max': r_max,'dr_std':r_std,\n", + " 'dc_med': dc_med,'dc_max': dc_max,'dc_std':dc_std,\n", + " 'Sector':result[3],'Camera':result[4],'CCD':result[5]},index=[0])\n", + " \n", + " test_radec2pix_df=pd.concat([rdf, test_radec2pix_df],ignore_index=True)\n", + " \n", + "pool.close()" + ] + }, + { + "cell_type": "markdown", + "id": "5a95a1d9", + "metadata": {}, + "source": [ + "## This is pretty close on median, but still has some large variance for some CCD's" + ] + }, + { + "cell_type": "code", + "execution_count": 359, + "id": "a9bcaa70", + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
dr_meddr_maxdr_stddc_meddc_maxdc_stdSectorCameraCCD
0-5.591055e-094.978149e-071.935521e-074.742674e-093.105574e-071.562396e-076844
1-2.025899e-094.118909e-071.693487e-078.136619e-093.340397e-071.456049e-076843
28.196821e-112.816727e+023.080824e+02-3.943114e-094.199341e-013.415502e+006842
31.899946e-081.968150e+033.978828e+024.772573e-103.811416e-072.524231e+006841
4-9.089923e-094.335776e-073.081167e+02-4.905587e-103.757229e-011.901432e+006834
..............................
1083-2.203478e-091.957050e+033.542976e+02-7.359404e-091.280899e+003.336352e-01121
1084-5.529387e-094.889534e-071.784676e-07-1.625949e-093.927616e-071.572296e-07114
1085-1.632441e-084.988395e-071.769206e-07-8.869733e-093.322805e-071.469008e-07113
1086-2.403380e-084.622466e-073.129441e+02-4.867219e-103.767221e-073.402373e+00112
10871.434836e-081.946104e+033.920907e+02-6.204459e-093.211851e-075.693437e+00111
\n", + "

1088 rows × 9 columns

\n", + "
" + ], + "text/plain": [ + " dr_med dr_max dr_std dc_med dc_max \\\n", + "0 -5.591055e-09 4.978149e-07 1.935521e-07 4.742674e-09 3.105574e-07 \n", + "1 -2.025899e-09 4.118909e-07 1.693487e-07 8.136619e-09 3.340397e-07 \n", + "2 8.196821e-11 2.816727e+02 3.080824e+02 -3.943114e-09 4.199341e-01 \n", + "3 1.899946e-08 1.968150e+03 3.978828e+02 4.772573e-10 3.811416e-07 \n", + "4 -9.089923e-09 4.335776e-07 3.081167e+02 -4.905587e-10 3.757229e-01 \n", + "... ... ... ... ... ... \n", + "1083 -2.203478e-09 1.957050e+03 3.542976e+02 -7.359404e-09 1.280899e+00 \n", + "1084 -5.529387e-09 4.889534e-07 1.784676e-07 -1.625949e-09 3.927616e-07 \n", + "1085 -1.632441e-08 4.988395e-07 1.769206e-07 -8.869733e-09 3.322805e-07 \n", + "1086 -2.403380e-08 4.622466e-07 3.129441e+02 -4.867219e-10 3.767221e-07 \n", + "1087 1.434836e-08 1.946104e+03 3.920907e+02 -6.204459e-09 3.211851e-07 \n", + "\n", + " dc_std Sector Camera CCD \n", + "0 1.562396e-07 68 4 4 \n", + "1 1.456049e-07 68 4 3 \n", + "2 3.415502e+00 68 4 2 \n", + "3 2.524231e+00 68 4 1 \n", + "4 1.901432e+00 68 3 4 \n", + "... ... ... ... .. \n", + "1083 3.336352e-01 1 2 1 \n", + "1084 1.572296e-07 1 1 4 \n", + "1085 1.469008e-07 1 1 3 \n", + "1086 3.402373e+00 1 1 2 \n", + "1087 5.693437e+00 1 1 1 \n", + "\n", + "[1088 rows x 9 columns]" + ] + }, + "execution_count": 359, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "test_radec2pix_df" + ] + }, + { + "cell_type": "markdown", + "id": "f0cb45ab", + "metadata": {}, + "source": [ + "## This is not bad on average (median), but there are still significant outliers in recovery position\n", + "\n", + "# What does this look like on the CCD? Is this an edge effect?" + ] + }, + { + "cell_type": "code", + "execution_count": 360, + "id": "2ae7420c", + "metadata": {}, + "outputs": [ + { + "name": "stderr", + "output_type": "stream", + "text": [ + "DEBUG:root:radec2pix: curVec: [[ 0.46422488 -0.48431262 -0.74157707]\n", + " [ 0.47206223 -0.5031397 -0.72388376]\n", + " [ 0.47982924 -0.52189993 -0.70525482]\n", + " [ 0.48746659 -0.54050036 -0.68573733]\n", + " [ 0.49491826 -0.55885165 -0.66538766]\n", + " [ 0.50213387 -0.57686899 -0.64426993]\n", + " [ 0.5090697 -0.59447242 -0.62245529]\n", + " [ 0.51568896 -0.61158715 -0.60002171]\n", + " [ 0.46422488 -0.48431262 -0.74157707]\n", + " [ 0.48562849 -0.4683047 -0.7381434 ]\n", + " [ 0.50717666 -0.45170169 -0.73398734]\n", + " [ 0.52875681 -0.43454511 -0.72909998]\n", + " [ 0.55025857 -0.41688235 -0.7234809 ]\n", + " [ 0.57157666 -0.39876656 -0.71713691]\n", + " [ 0.59261215 -0.38025667 -0.71008148]\n", + " [ 0.61327282 -0.36141732 -0.70233465]\n", + " [ 0.51568896 -0.61158715 -0.60002171]\n", + " [ 0.53857278 -0.59630697 -0.59527922]\n", + " [ 0.56149396 -0.58023598 -0.58995825]\n", + " [ 0.58433429 -0.56341299 -0.58405415]\n", + " [ 0.60698333 -0.54588155 -0.5775678 ]\n", + " [ 0.62933654 -0.52769139 -0.57050619]\n", + " [ 0.65129367 -0.50889996 -0.5628831 ]\n", + " [ 0.67275852 -0.48957323 -0.55471977]\n", + " [ 0.61327282 -0.36141732 -0.70233465]\n", + " [ 0.62298303 -0.37998517 -0.68374222]\n", + " [ 0.63238744 -0.39861214 -0.66422473]\n", + " [ 0.64142004 -0.41720633 -0.64383166]\n", + " [ 0.65002225 -0.43568112 -0.6226179 ]\n", + " [ 0.65814212 -0.4539536 -0.60064555]\n", + " [ 0.66573397 -0.4719435 -0.57798582]\n", + " [ 0.67275852 -0.48957323 -0.55471977]\n", + " [ 0.46772015 -0.49246989 -0.73396953]\n", + " [ 0.47728716 -0.51551162 -0.7116493 ]\n", + " [ 0.48668921 -0.53836033 -0.68796931]\n", + " [ 0.49582161 -0.56084996 -0.6630296 ]\n", + " [ 0.50459169 -0.58282441 -0.63694814]\n", + " [ 0.51292186 -0.60413863 -0.60985874]\n", + " [ 0.47355937 -0.47747316 -0.74010871]\n", + " [ 0.49990441 -0.45744893 -0.73541557]\n", + " [ 0.52635462 -0.43657126 -0.72962755]\n", + " [ 0.55270564 -0.41492497 -0.72274044]\n", + " [ 0.5787638 -0.39260793 -0.71476673]\n", + " [ 0.60434974 -0.36973101 -0.70573392]\n", + " [ 0.52563171 -0.60496664 -0.59810256]\n", + " [ 0.55371839 -0.58570216 -0.59190279]\n", + " [ 0.58174287 -0.56528804 -0.58482875]\n", + " [ 0.60949866 -0.54380245 -0.57687978]\n", + " [ 0.6367931 -0.52133715 -0.56806878]\n", + " [ 0.66344326 -0.49800143 -0.55842423]\n", + " [ 0.61746935 -0.36956471 -0.69437276]\n", + " [ 0.62917257 -0.39237377 -0.67095805]\n", + " [ 0.64035017 -0.41517955 -0.64620244]\n", + " [ 0.65089124 -0.43782046 -0.62020468]\n", + " [ 0.66070012 -0.46014372 -0.59307934]\n", + " [ 0.66969534 -0.48200264 -0.5649616 ]\n", + " [ 0.46432456 -0.48432332 -0.74150767]\n", + " [ 0.46432456 -0.48432332 -0.74150767]\n", + " [ 0.67266305 -0.48958056 -0.55482907]\n", + " [ 0.67266305 -0.48958056 -0.55482907]\n", + " [ 0.4770194 -0.48563278 -0.73253894]\n", + " [ 0.50354045 -0.46563077 -0.72776026]\n", + " [ 0.53015368 -0.44475328 -0.72189446]\n", + " [ 0.55665267 -0.42308479 -0.71493851]\n", + " [ 0.58284311 -0.40072304 -0.7069052 ]\n", + " [ 0.60854536 -0.37777911 -0.69782196]\n", + " [ 0.48675408 -0.50871759 -0.71012455]\n", + " [ 0.51372893 -0.48879708 -0.70509574]\n", + " [ 0.54075847 -0.46794044 -0.69900788]\n", + " [ 0.56763328 -0.4462314 -0.69185981]\n", + " [ 0.59415868 -0.42376741 -0.68366413]\n", + " [ 0.62015483 -0.40066014 -0.6744475 ]\n", + " [ 0.4962987 -0.5316178 -0.68634548]\n", + " [ 0.52365529 -0.51180504 -0.68105854]\n", + " [ 0.55103119 -0.49099928 -0.67474761]\n", + " [ 0.57821686 -0.46928325 -0.66741178]\n", + " [ 0.60501846 -0.44675382 -0.65906273]\n", + " [ 0.63125589 -0.4235231 -0.64972624]\n", + " [ 0.50554653 -0.55416701 -0.66130298]\n", + " [ 0.53320965 -0.53448804 -0.65575147]\n", + " [ 0.56086132 -0.51376369 -0.64921602]\n", + " [ 0.58829319 -0.49207538 -0.64169536]\n", + " [ 0.61531229 -0.4695188 -0.6332005 ]\n", + " [ 0.6417379 -0.44620592 -0.62375696]\n", + " [ 0.51440426 -0.57620897 -0.63511533]\n", + " [ 0.54229831 -0.55668956 -0.62929269]\n", + " [ 0.57015567 -0.53607722 -0.62253011]\n", + " [ 0.59776922 -0.51445185 -0.6148262 ]\n", + " [ 0.62494651 -0.49190749 -0.60619212]\n", + " [ 0.6515058 -0.4685553 -0.5966541 ]\n", + " [ 0.52279419 -0.59759833 -0.6079165 ]\n", + " [ 0.55084388 -0.5782632 -0.60181616]\n", + " [ 0.57883711 -0.55779241 -0.5948237 ]\n", + " [ 0.60656739 -0.53626449 -0.58693815]\n", + " [ 0.63384217 -0.51377174 -0.57817186]\n", + " [ 0.66047881 -0.490424 -0.56855259]]\n", + "DEBUG:root:radec2pix: curVec Shape: (96, 3)\n", + "DEBUG:root:radec2pix: camVec: [[-0.20605921 -0.20787315 -0.20942436 -0.21070676 -0.21171698 -0.21245291\n", + " -0.21291301 -0.2130962 -0.20605921 -0.17962884 -0.15250018 -0.12477652\n", + " -0.0965659 -0.06797863 -0.03912632 -0.01012153 -0.2130962 -0.18573503\n", + " -0.15766321 -0.1289874 -0.09981355 -0.07024926 -0.04040619 -0.01040084\n", + " -0.01012153 -0.01020027 -0.01026637 -0.01031977 -0.01036027 -0.01038751\n", + " -0.01040113 -0.01040084 -0.20679239 -0.20883895 -0.21048459 -0.2117221\n", + " -0.21254753 -0.21295821 -0.1946339 -0.16175754 -0.12793421 -0.09336102\n", + " -0.05824097 -0.02277993 -0.20126076 -0.16723544 -0.13224882 -0.09649617\n", + " -0.06017591 -0.02349561 -0.01025713 -0.01034611 -0.01041588 -0.01046611\n", + " -0.01049618 -0.01050541 -0.20597676 -0.20597676 -0.01050361 -0.01050361\n", + " -0.19540403 -0.16239488 -0.12843557 -0.09372478 -0.05846599 -0.02286533\n", + " -0.19733483 -0.16399068 -0.1296908 -0.094636 -0.05902974 -0.02307851\n", + " -0.19888634 -0.16527244 -0.13070023 -0.09537003 -0.05948408 -0.02324907\n", + " -0.20005292 -0.16623701 -0.13146138 -0.09592455 -0.05982716 -0.0233762\n", + " -0.20083104 -0.16688094 -0.13197015 -0.09629527 -0.0600556 -0.02345845\n", + " -0.20121796 -0.16720058 -0.13222195 -0.09647752 -0.06016577 -0.02349426]\n", + " [-0.20169937 -0.17519485 -0.1480085 -0.12024402 -0.09200964 -0.06341581\n", + " -0.03457423 -0.00559748 -0.20169937 -0.20353396 -0.20511207 -0.20642749\n", + " -0.20747679 -0.20825778 -0.20876879 -0.20900854 -0.00559748 -0.00565735\n", + " -0.00571045 -0.00575671 -0.00579596 -0.00582797 -0.00585246 -0.00586919\n", + " -0.20900854 -0.18153487 -0.15336672 -0.12461057 -0.09537244 -0.06576046\n", + " -0.03588698 -0.00586919 -0.1902398 -0.15728353 -0.12340547 -0.08880315\n", + " -0.0536798 -0.01824146 -0.20244048 -0.20451655 -0.20620095 -0.20748634\n", + " -0.2083686 -0.2088448 -0.00572401 -0.00579384 -0.00585326 -0.00590199\n", + " -0.0059396 -0.00596558 -0.19712185 -0.16296958 -0.1278801 -0.09204872\n", + " -0.05567473 -0.01896706 -0.2016167 -0.2016167 -0.0059719 -0.0059719\n", + " -0.19101701 -0.19297429 -0.19456158 -0.19577312 -0.19660523 -0.1970549\n", + " -0.15792497 -0.15953875 -0.16084786 -0.1618491 -0.16253892 -0.16291334\n", + " -0.12390793 -0.1251726 -0.12620079 -0.12699006 -0.12753631 -0.1278347\n", + " -0.089165 -0.090077 -0.09082101 -0.09139481 -0.09179425 -0.09201449\n", + " -0.05389991 -0.05445583 -0.05491134 -0.05526476 -0.0555129 -0.05565213\n", + " -0.018319 -0.01851594 -0.01867909 -0.01880776 -0.01890068 -0.01895646]\n", + " [ 0.95752648 0.96233857 0.96655829 0.97012578 0.97299031 0.97511138\n", + " 0.97645925 0.97701519 0.95752648 0.96244865 0.96678474 0.97047334\n", + " 0.97346207 0.97570877 0.97718203 0.97786143 0.97701519 0.98258358\n", + " 0.98747643 0.99162952 0.99498928 0.99751244 0.9991662 0.99992869\n", + " 0.97786143 0.98333161 0.98811601 0.99215206 0.99538774 0.99778137\n", + " 0.99930173 0.99992869 0.95971127 0.96521924 0.96977695 0.97328709\n", + " 0.97567516 0.97689101 0.95975804 0.96540534 0.97011031 0.97377263\n", + " 0.97631476 0.97768345 0.97952098 0.98589996 0.99119927 0.99531586\n", + " 0.99817012 0.99970614 0.98032534 0.98657685 0.99173494 0.9956995\n", + " 0.99839379 0.99976492 0.95756163 0.95756163 0.999927 0.999927\n", + " 0.96194063 0.96767186 0.97244542 0.97616011 0.97873802 0.98012578\n", + " 0.96753226 0.97347545 0.97842131 0.98226722 0.98493482 0.98637043\n", + " 0.97215793 0.97827237 0.98335691 0.9873085 0.99004855 0.99152295\n", + " 0.97571944 0.98196303 0.98715219 0.99118387 0.99397914 0.99548324\n", + " 0.97814196 0.9844721 0.98973159 0.9938174 0.99665021 0.9981746\n", + " 0.97937518 0.98574902 0.99104412 0.99515745 0.99800944 0.99954423]]\n", + "DEBUG:root:radec2pix: camVec Shape: (3, 96)\n", + "DEBUG:root:cartToSphere: vec: [[-0.20605921 -0.20169937 0.95752648]\n", + " [-0.20787315 -0.17519485 0.96233857]\n", + " [-0.20942436 -0.1480085 0.96655829]\n", + " [-0.21070676 -0.12024402 0.97012578]\n", + " [-0.21171698 -0.09200964 0.97299031]\n", + " [-0.21245291 -0.06341581 0.97511138]\n", + " [-0.21291301 -0.03457423 0.97645925]\n", + " [-0.2130962 -0.00559748 0.97701519]\n", + " [-0.20605921 -0.20169937 0.95752648]\n", + " [-0.17962884 -0.20353396 0.96244865]\n", + " [-0.15250018 -0.20511207 0.96678474]\n", + " [-0.12477652 -0.20642749 0.97047334]\n", + " [-0.0965659 -0.20747679 0.97346207]\n", + " [-0.06797863 -0.20825778 0.97570877]\n", + " [-0.03912632 -0.20876879 0.97718203]\n", + " [-0.01012153 -0.20900854 0.97786143]\n", + " [-0.2130962 -0.00559748 0.97701519]\n", + " [-0.18573503 -0.00565735 0.98258358]\n", + " [-0.15766321 -0.00571045 0.98747643]\n", + " [-0.1289874 -0.00575671 0.99162952]\n", + " [-0.09981355 -0.00579596 0.99498928]\n", + " [-0.07024926 -0.00582797 0.99751244]\n", + " [-0.04040619 -0.00585246 0.9991662 ]\n", + " [-0.01040084 -0.00586919 0.99992869]\n", + " [-0.01012153 -0.20900854 0.97786143]\n", + " [-0.01020027 -0.18153487 0.98333161]\n", + " [-0.01026637 -0.15336672 0.98811601]\n", + " [-0.01031977 -0.12461057 0.99215206]\n", + " [-0.01036027 -0.09537244 0.99538774]\n", + " [-0.01038751 -0.06576046 0.99778137]\n", + " [-0.01040113 -0.03588698 0.99930173]\n", + " [-0.01040084 -0.00586919 0.99992869]\n", + " [-0.20679239 -0.1902398 0.95971127]\n", + " [-0.20883895 -0.15728353 0.96521924]\n", + " [-0.21048459 -0.12340547 0.96977695]\n", + " [-0.2117221 -0.08880315 0.97328709]\n", + " [-0.21254753 -0.0536798 0.97567516]\n", + " [-0.21295821 -0.01824146 0.97689101]\n", + " [-0.1946339 -0.20244048 0.95975804]\n", + " [-0.16175754 -0.20451655 0.96540534]\n", + " [-0.12793421 -0.20620095 0.97011031]\n", + " [-0.09336102 -0.20748634 0.97377263]\n", + " [-0.05824097 -0.2083686 0.97631476]\n", + " [-0.02277993 -0.2088448 0.97768345]\n", + " [-0.20126076 -0.00572401 0.97952098]\n", + " [-0.16723544 -0.00579384 0.98589996]\n", + " [-0.13224882 -0.00585326 0.99119927]\n", + " [-0.09649617 -0.00590199 0.99531586]\n", + " [-0.06017591 -0.0059396 0.99817012]\n", + " [-0.02349561 -0.00596558 0.99970614]\n", + " [-0.01025713 -0.19712185 0.98032534]\n", + " [-0.01034611 -0.16296958 0.98657685]\n", + " [-0.01041588 -0.1278801 0.99173494]\n", + " [-0.01046611 -0.09204872 0.9956995 ]\n", + " [-0.01049618 -0.05567473 0.99839379]\n", + " [-0.01050541 -0.01896706 0.99976492]\n", + " [-0.20597676 -0.2016167 0.95756163]\n", + " [-0.20597676 -0.2016167 0.95756163]\n", + " [-0.01050361 -0.0059719 0.999927 ]\n", + " [-0.01050361 -0.0059719 0.999927 ]\n", + " [-0.19540403 -0.19101701 0.96194063]\n", + " [-0.16239488 -0.19297429 0.96767186]\n", + " [-0.12843557 -0.19456158 0.97244542]\n", + " [-0.09372478 -0.19577312 0.97616011]\n", + " [-0.05846599 -0.19660523 0.97873802]\n", + " [-0.02286533 -0.1970549 0.98012578]\n", + " [-0.19733483 -0.15792497 0.96753226]\n", + " [-0.16399068 -0.15953875 0.97347545]\n", + " [-0.1296908 -0.16084786 0.97842131]\n", + " [-0.094636 -0.1618491 0.98226722]\n", + " [-0.05902974 -0.16253892 0.98493482]\n", + " [-0.02307851 -0.16291334 0.98637043]\n", + " [-0.19888634 -0.12390793 0.97215793]\n", + " [-0.16527244 -0.1251726 0.97827237]\n", + " [-0.13070023 -0.12620079 0.98335691]\n", + " [-0.09537003 -0.12699006 0.9873085 ]\n", + " [-0.05948408 -0.12753631 0.99004855]\n", + " [-0.02324907 -0.1278347 0.99152295]\n", + " [-0.20005292 -0.089165 0.97571944]\n", + " [-0.16623701 -0.090077 0.98196303]\n", + " [-0.13146138 -0.09082101 0.98715219]\n", + " [-0.09592455 -0.09139481 0.99118387]\n", + " [-0.05982716 -0.09179425 0.99397914]\n", + " [-0.0233762 -0.09201449 0.99548324]\n", + " [-0.20083104 -0.05389991 0.97814196]\n", + " [-0.16688094 -0.05445583 0.9844721 ]\n", + " [-0.13197015 -0.05491134 0.98973159]\n", + " [-0.09629527 -0.05526476 0.9938174 ]\n", + " [-0.0600556 -0.0555129 0.99665021]\n", + " [-0.02345845 -0.05565213 0.9981746 ]\n", + " [-0.20121796 -0.018319 0.97937518]\n", + " [-0.16720058 -0.01851594 0.98574902]\n", + " [-0.13222195 -0.01867909 0.99104412]\n", + " [-0.09647752 -0.01880776 0.99515745]\n", + " [-0.06016577 -0.01890068 0.99800944]\n", + " [-0.02349426 -0.01895646 0.99954423]]\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "DEBUG:root:radec2pix: lng: [224.38740491 220.12408621 215.2503637 209.71210534 203.48918374\n", + " 196.62002098 189.22355762 181.5046646 224.38740491 228.56999572\n", + " 233.3693139 238.84884696 245.04132431 251.92249978 259.38507008\n", + " 267.22753799 181.5046646 181.74464663 182.07430544 182.55541483\n", + " 183.32331288 184.74247093 188.24144189 209.436015 267.22753799\n", + " 266.78398778 266.170335 265.26578644 263.80029466 261.02373287\n", + " 253.83681058 209.436015 222.61267508 216.98461546 210.38276245\n", + " 202.75476399 194.17390418 184.89586052 226.12630502 231.65859743\n", + " 238.18310357 245.77405246 254.38382437 263.77502084 181.62909594\n", + " 181.98420755 182.53422407 183.50001953 185.63706132 194.24647314\n", + " 267.02133208 266.36745836 265.3435183 263.51322198 259.32352397\n", + " 241.01895217 224.38712569 224.38712569 209.62070535 209.62070535\n", + " 224.34955164 229.91816922 236.57007702 244.41761198 253.43870278\n", + " 263.38126527 218.66991645 224.21163124 231.12094806 239.6844282\n", + " 250.04034734 261.9370562 211.92326671 217.13924206 223.99660639\n", + " 233.09330633 244.99523074 259.69237756 204.0228705 208.45144372\n", + " 214.63892612 223.61475061 236.90559041 255.7456151 195.0232601\n", + " 198.0723045 202.59166286 209.85191686 222.74900651 247.14363581\n", + " 185.201902 186.31923819 188.04100537 191.03114261 197.43976942\n", + " 218.89848666]\n", + "DEBUG:root:radec2pix: lat: [73.24108038 74.22539246 75.14065481 75.95980834 76.6531185 77.19018187\n", + " 77.5432879 77.69182998 73.24108038 74.24861044 75.19133398 76.04212851\n", + " 76.77071823 77.34548632 77.73675519 77.92139244 77.69182998 79.29098794\n", + " 80.92271511 82.58149911 84.2618841 85.95783408 87.66008742 89.3157252\n", + " 77.92139244 79.52414159 81.15801466 82.81709844 84.49494889 86.18266378\n", + " 87.85870936 89.3157252 73.68081786 74.84436919 75.87765867 76.72697854\n", + " 77.33670031 77.65849826 73.69035695 74.88520803 75.9561532 76.84869716\n", + " 77.50496612 77.87275428 78.38454537 80.36704866 82.39295371 84.45217978\n", + " 86.53330534 88.61095022 78.61571107 80.60164359 82.62842612 84.684393\n", + " 86.75213987 88.75761015 73.24806584 73.24806584 89.30770045 89.30770045\n", + " 74.1417384 75.39152116 76.51854281 77.46407515 78.16380788 78.55793051\n", + " 75.35984123 76.77406669 78.07566348 79.19387762 80.04201199 80.52949342\n", + " 76.4480688 78.03443361 79.53211824 80.86193095 81.91012885 82.53435821\n", + " 77.34827857 79.10130772 80.80570953 82.38629346 83.70950064 84.55228195\n", + " 77.99844552 79.88985033 81.78208758 83.62548455 85.30897599 86.53756064\n", + " 78.34312947 80.31550148 82.32609465 84.35907996 86.38425999 88.27008044]\n", + "DEBUG:root:optics_fp: rtanth: [45.10526614 42.15252235 39.46728719 37.10767964 35.13935868 33.63109692\n", + " 32.64672024 32.23425998 45.10526614 42.08371704 39.32015966 36.87264817\n", + " 34.80791464 33.1974573 32.10970154 31.5986741 32.23425998 27.84962696\n", + " 23.46566508 19.08283694 14.70215645 10.32635724 5.96618932 1.74318313\n", + " 31.5986741 27.21812469 22.83983208 18.46540167 14.09842896 9.748941\n", + " 5.45889306 1.74318313 43.77728663 40.33061683 37.34259278 34.93111177\n", + " 33.22196043 32.3267303 43.74864122 40.21129183 37.11812392 34.58850978\n", + " 32.75328451 31.73315358 30.32290674 24.94961031 19.57779834 14.20915457\n", + " 8.84944693 3.53950567 29.68929466 24.32204857 18.9597634 13.60830488\n", + " 8.2886698 3.16557807 45.08405409 45.08405409 1.76362955 1.76362955\n", + " 42.40073703 38.740507 35.51948783 32.86706408 30.92986484 29.84747775\n", + " 38.83207862 34.7984872 31.1727741 28.11319496 25.82178089 24.5148885\n", + " 35.71891532 31.28650338 27.19655174 23.62757526 20.84885967 19.20651814\n", + " 33.18967076 28.36474267 23.77742123 19.59529652 16.13655116 13.95004204\n", + " 31.3858301 26.23117825 21.1868319 16.35517444 11.99601471 8.83853824\n", + " 30.43664187 25.08771711 19.753498 14.45027919 9.23164159 4.4089223 ]\n", + "DEBUG:root:optics_fp: cphi: [-0.71462647 -0.76465055 -0.81663789 -0.86852682 -0.91713533 -0.95822269\n", + " -0.98707045 -0.99965519 -0.71462647 -0.66170459 -0.59665476 -0.51729759\n", + " -0.42196448 -0.31030314 -0.18420747 -0.04836971 -0.99965519 -0.99953644\n", + " -0.99934473 -0.99900557 -0.99831831 -0.99657638 -0.98967281 -0.87090507\n", + " -0.04836971 -0.05610053 -0.06679051 -0.08253363 -0.10799424 -0.15602533\n", + " -0.27837409 -0.87090507 -0.73594733 -0.79879708 -0.86266587 -0.92216881\n", + " -0.96955698 -0.99635146 -0.69307094 -0.62034596 -0.5272064 -0.41033606\n", + " -0.26919173 -0.10843276 -0.99959581 -0.99940041 -0.99902199 -0.99813478\n", + " -0.99516407 -0.96924606 -0.05196415 -0.06335735 -0.0811815 -0.11297393\n", + " -0.18526317 -0.48452029 -0.71462988 -0.71462988 -0.86931637 -0.86931637\n", + " -0.71508845 -0.64388103 -0.55091667 -0.43180852 -0.28504096 -0.11526196\n", + " -0.78075859 -0.71676907 -0.62767848 -0.50476226 -0.34135833 -0.1402609\n", + " -0.84875703 -0.7971706 -0.71938094 -0.60051365 -0.4226937 -0.17893311\n", + " -0.91338303 -0.87922117 -0.82275039 -0.7239943 -0.54602022 -0.24622747\n", + " -0.96582068 -0.95066579 -0.92326613 -0.86731478 -0.73433428 -0.38842227\n", + " -0.99588139 -0.99392405 -0.99016821 -0.98152333 -0.95403253 -0.77825973]\n", + "DEBUG:root:optics_fp: sphi: [-0.69950626 -0.64444513 -0.57715037 -0.49564218 -0.39857594 -0.28602322\n", + " -0.16028704 -0.02625833 -0.69950626 -0.74976466 -0.80249804 -0.85580559\n", + " -0.90661236 -0.95063766 -0.98288738 -0.9988295 -0.02625833 -0.03044512\n", + " -0.03619555 -0.04458562 -0.05797023 -0.08267725 -0.1433448 -0.49145128\n", + " -0.9988295 -0.99842512 -0.99776702 -0.99658828 -0.99415152 -0.98775305\n", + " -0.96047273 -0.49145128 -0.67703879 -0.60160056 -0.50577425 -0.38678764\n", + " -0.24486582 -0.08534494 -0.72086938 -0.78432831 -0.84973726 -0.91193438\n", + " -0.96308661 -0.99410379 -0.02842926 -0.03462403 -0.04421613 -0.06104888\n", + " -0.09822663 -0.24609363 -0.99864895 -0.99799091 -0.99669933 -0.99359795\n", + " -0.98268894 -0.87478002 -0.69950278 -0.69950278 -0.49425605 -0.49425605\n", + " -0.69903398 -0.76512562 -0.83456026 -0.9019653 -0.95851534 -0.99333513\n", + " -0.6248328 -0.69731062 -0.77847269 -0.8632584 -0.93993324 -0.99011458\n", + " -0.52878304 -0.60375411 -0.69461576 -0.79961451 -0.90627261 -0.98386124\n", + " -0.40710127 -0.47641382 -0.56840284 -0.68980596 -0.837772 -0.96921207\n", + " -0.25921116 -0.31021694 -0.38416098 -0.49776006 -0.67878801 -0.92148149\n", + " -0.09066564 -0.11006805 -0.13988178 -0.19134252 -0.29970307 -0.6279425 ]\n", + "DEBUG:root:optics_fp: xyfp: [[32.23341696 31.55141621]\n", + " [32.23194958 27.16498788]\n", + " [32.2304822 22.77855956]\n", + " [32.22901483 18.39213124]\n", + " [32.22754745 14.00570291]\n", + " [32.22608007 9.61927458]\n", + " [32.22461269 5.23284626]\n", + " [32.2231453 0.84641793]\n", + " [32.23341696 31.55141621]\n", + " [27.84698864 31.5528836 ]\n", + " [23.46056031 31.55435097]\n", + " [19.07413198 31.55581835]\n", + " [14.68770366 31.55728573]\n", + " [10.30127533 31.55875311]\n", + " [ 5.91484701 31.56022049]\n", + " [ 1.52841868 31.56168787]\n", + " [32.2231453 0.84641793]\n", + " [27.83671698 0.84788531]\n", + " [23.45028865 0.84935269]\n", + " [19.06386033 0.85082007]\n", + " [14.677432 0.85228745]\n", + " [10.29100367 0.85375483]\n", + " [ 5.90457535 0.85522221]\n", + " [ 1.51814702 0.85668959]\n", + " [ 1.52841868 31.56168787]\n", + " [ 1.5269513 27.17525955]\n", + " [ 1.52548392 22.78883122]\n", + " [ 1.52401654 18.4024029 ]\n", + " [ 1.52254916 14.01597457]\n", + " [ 1.52108178 9.62954624]\n", + " [ 1.5196144 5.24311792]\n", + " [ 1.51814702 0.85668959]\n", + " [32.21777718 29.63892134]\n", + " [32.21597876 24.26292164]\n", + " [32.21418034 18.88692194]\n", + " [32.21238193 13.51092224]\n", + " [32.21058351 8.13492254]\n", + " [32.20878509 2.75892284]\n", + " [30.32091205 31.53705599]\n", + " [24.94491236 31.53885442]\n", + " [19.56891265 31.54065283]\n", + " [14.19291295 31.54245125]\n", + " [ 8.81691325 31.54424967]\n", + " [ 3.44091356 31.54604808]\n", + " [30.31065043 0.86205771]\n", + " [24.93465073 0.86385613]\n", + " [19.55865103 0.86565455]\n", + " [14.18265134 0.86745297]\n", + " [ 8.80665163 0.86925139]\n", + " [ 3.43065193 0.8710498 ]\n", + " [ 1.5427789 29.64918296]\n", + " [ 1.54098048 24.27318326]\n", + " [ 1.53918206 18.89718357]\n", + " [ 1.53738364 13.52118387]\n", + " [ 1.53558522 8.14518416]\n", + " [ 1.5337868 2.76918446]\n", + " [32.21841195 31.53642123]\n", + " [32.21841195 31.53642123]\n", + " [ 1.53315204 0.87168457]\n", + " [ 1.53315204 0.87168457]\n", + " [30.32027729 29.6395561 ]\n", + " [24.94427759 29.64135452]\n", + " [19.56827789 29.64315294]\n", + " [14.19227819 29.64495136]\n", + " [ 8.81627849 29.64674978]\n", + " [ 3.44027879 29.6485482 ]\n", + " [30.31847887 24.2635564 ]\n", + " [24.94247917 24.26535482]\n", + " [19.56647947 24.26715324]\n", + " [14.19047977 24.26895166]\n", + " [ 8.81448007 24.27075007]\n", + " [ 3.43848037 24.2725485 ]\n", + " [30.31668045 18.8875567 ]\n", + " [24.94068075 18.88935513]\n", + " [19.56468105 18.89115354]\n", + " [14.18868135 18.89295196]\n", + " [ 8.81268165 18.89475038]\n", + " [ 3.43668195 18.89654879]\n", + " [30.31488203 13.51155701]\n", + " [24.93888233 13.51335542]\n", + " [19.56288263 13.51515384]\n", + " [14.18688293 13.51695226]\n", + " [ 8.81088324 13.51875068]\n", + " [ 3.43488354 13.5205491 ]\n", + " [30.31308361 8.13555731]\n", + " [24.93708392 8.13735572]\n", + " [19.56108422 8.13915414]\n", + " [14.18508451 8.14095256]\n", + " [ 8.80908482 8.14275098]\n", + " [ 3.43308512 8.1445494 ]\n", + " [30.31128519 2.75955761]\n", + " [24.93528549 2.76135602]\n", + " [19.5592858 2.76315444]\n", + " [14.18328609 2.76495286]\n", + " [ 8.8072864 2.76675128]\n", + " [ 3.4312867 2.7685497 ]]\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "DEBUG:root:optics_fp: xyfp shape: (96, 2)\n", + "DEBUG:root:make_az_asym: xyp: [[32.23341696 31.55141621]\n", + " [32.23194958 27.16498788]\n", + " [32.2304822 22.77855956]\n", + " [32.22901483 18.39213124]\n", + " [32.22754745 14.00570291]\n", + " [32.22608007 9.61927458]\n", + " [32.22461269 5.23284626]\n", + " [32.2231453 0.84641793]\n", + " [32.23341696 31.55141621]\n", + " [27.84698864 31.5528836 ]\n", + " [23.46056031 31.55435097]\n", + " [19.07413198 31.55581835]\n", + " [14.68770366 31.55728573]\n", + " [10.30127533 31.55875311]\n", + " [ 5.91484701 31.56022049]\n", + " [ 1.52841868 31.56168787]\n", + " [32.2231453 0.84641793]\n", + " [27.83671698 0.84788531]\n", + " [23.45028865 0.84935269]\n", + " [19.06386033 0.85082007]\n", + " [14.677432 0.85228745]\n", + " [10.29100367 0.85375483]\n", + " [ 5.90457535 0.85522221]\n", + " [ 1.51814702 0.85668959]\n", + " [ 1.52841868 31.56168787]\n", + " [ 1.5269513 27.17525955]\n", + " [ 1.52548392 22.78883122]\n", + " [ 1.52401654 18.4024029 ]\n", + " [ 1.52254916 14.01597457]\n", + " [ 1.52108178 9.62954624]\n", + " [ 1.5196144 5.24311792]\n", + " [ 1.51814702 0.85668959]\n", + " [32.21777718 29.63892134]\n", + " [32.21597876 24.26292164]\n", + " [32.21418034 18.88692194]\n", + " [32.21238193 13.51092224]\n", + " [32.21058351 8.13492254]\n", + " [32.20878509 2.75892284]\n", + " [30.32091205 31.53705599]\n", + " [24.94491236 31.53885442]\n", + " [19.56891265 31.54065283]\n", + " [14.19291295 31.54245125]\n", + " [ 8.81691325 31.54424967]\n", + " [ 3.44091356 31.54604808]\n", + " [30.31065043 0.86205771]\n", + " [24.93465073 0.86385613]\n", + " [19.55865103 0.86565455]\n", + " [14.18265134 0.86745297]\n", + " [ 8.80665163 0.86925139]\n", + " [ 3.43065193 0.8710498 ]\n", + " [ 1.5427789 29.64918296]\n", + " [ 1.54098048 24.27318326]\n", + " [ 1.53918206 18.89718357]\n", + " [ 1.53738364 13.52118387]\n", + " [ 1.53558522 8.14518416]\n", + " [ 1.5337868 2.76918446]\n", + " [32.21841195 31.53642123]\n", + " [32.21841195 31.53642123]\n", + " [ 1.53315204 0.87168457]\n", + " [ 1.53315204 0.87168457]\n", + " [30.32027729 29.6395561 ]\n", + " [24.94427759 29.64135452]\n", + " [19.56827789 29.64315294]\n", + " [14.19227819 29.64495136]\n", + " [ 8.81627849 29.64674978]\n", + " [ 3.44027879 29.6485482 ]\n", + " [30.31847887 24.2635564 ]\n", + " [24.94247917 24.26535482]\n", + " [19.56647947 24.26715324]\n", + " [14.19047977 24.26895166]\n", + " [ 8.81448007 24.27075007]\n", + " [ 3.43848037 24.2725485 ]\n", + " [30.31668045 18.8875567 ]\n", + " [24.94068075 18.88935513]\n", + " [19.56468105 18.89115354]\n", + " [14.18868135 18.89295196]\n", + " [ 8.81268165 18.89475038]\n", + " [ 3.43668195 18.89654879]\n", + " [30.31488203 13.51155701]\n", + " [24.93888233 13.51335542]\n", + " [19.56288263 13.51515384]\n", + " [14.18688293 13.51695226]\n", + " [ 8.81088324 13.51875068]\n", + " [ 3.43488354 13.5205491 ]\n", + " [30.31308361 8.13555731]\n", + " [24.93708392 8.13735572]\n", + " [19.56108422 8.13915414]\n", + " [14.18508451 8.14095256]\n", + " [ 8.80908482 8.14275098]\n", + " [ 3.43308512 8.1445494 ]\n", + " [30.31128519 2.75955761]\n", + " [24.93528549 2.76135602]\n", + " [19.5592858 2.76315444]\n", + " [14.18328609 2.76495286]\n", + " [ 8.8072864 2.76675128]\n", + " [ 3.4312867 2.7685497 ]]\n", + "DEBUG:root:make_az_asym: xyp: shape: (96, 2)\n", + "DEBUG:root:radec2pix: xyfp: [[32.23341696 31.55141621]\n", + " [32.23194958 27.16498788]\n", + " [32.2304822 22.77855956]\n", + " [32.22901483 18.39213124]\n", + " [32.22754745 14.00570291]\n", + " [32.22608007 9.61927458]\n", + " [32.22461269 5.23284626]\n", + " [32.2231453 0.84641793]\n", + " [32.23341696 31.55141621]\n", + " [27.84698864 31.5528836 ]\n", + " [23.46056031 31.55435097]\n", + " [19.07413198 31.55581835]\n", + " [14.68770366 31.55728573]\n", + " [10.30127533 31.55875311]\n", + " [ 5.91484701 31.56022049]\n", + " [ 1.52841868 31.56168787]\n", + " [32.2231453 0.84641793]\n", + " [27.83671698 0.84788531]\n", + " [23.45028865 0.84935269]\n", + " [19.06386033 0.85082007]\n", + " [14.677432 0.85228745]\n", + " [10.29100367 0.85375483]\n", + " [ 5.90457535 0.85522221]\n", + " [ 1.51814702 0.85668959]\n", + " [ 1.52841868 31.56168787]\n", + " [ 1.5269513 27.17525955]\n", + " [ 1.52548392 22.78883122]\n", + " [ 1.52401654 18.4024029 ]\n", + " [ 1.52254916 14.01597457]\n", + " [ 1.52108178 9.62954624]\n", + " [ 1.5196144 5.24311792]\n", + " [ 1.51814702 0.85668959]\n", + " [32.21777718 29.63892134]\n", + " [32.21597876 24.26292164]\n", + " [32.21418034 18.88692194]\n", + " [32.21238193 13.51092224]\n", + " [32.21058351 8.13492254]\n", + " [32.20878509 2.75892284]\n", + " [30.32091205 31.53705599]\n", + " [24.94491236 31.53885442]\n", + " [19.56891265 31.54065283]\n", + " [14.19291295 31.54245125]\n", + " [ 8.81691325 31.54424967]\n", + " [ 3.44091356 31.54604808]\n", + " [30.31065043 0.86205771]\n", + " [24.93465073 0.86385613]\n", + " [19.55865103 0.86565455]\n", + " [14.18265134 0.86745297]\n", + " [ 8.80665163 0.86925139]\n", + " [ 3.43065193 0.8710498 ]\n", + " [ 1.5427789 29.64918296]\n", + " [ 1.54098048 24.27318326]\n", + " [ 1.53918206 18.89718357]\n", + " [ 1.53738364 13.52118387]\n", + " [ 1.53558522 8.14518416]\n", + " [ 1.5337868 2.76918446]\n", + " [32.21841195 31.53642123]\n", + " [32.21841195 31.53642123]\n", + " [ 1.53315204 0.87168457]\n", + " [ 1.53315204 0.87168457]\n", + " [30.32027729 29.6395561 ]\n", + " [24.94427759 29.64135452]\n", + " [19.56827789 29.64315294]\n", + " [14.19227819 29.64495136]\n", + " [ 8.81627849 29.64674978]\n", + " [ 3.44027879 29.6485482 ]\n", + " [30.31847887 24.2635564 ]\n", + " [24.94247917 24.26535482]\n", + " [19.56647947 24.26715324]\n", + " [14.19047977 24.26895166]\n", + " [ 8.81448007 24.27075007]\n", + " [ 3.43848037 24.2725485 ]\n", + " [30.31668045 18.8875567 ]\n", + " [24.94068075 18.88935513]\n", + " [19.56468105 18.89115354]\n", + " [14.18868135 18.89295196]\n", + " [ 8.81268165 18.89475038]\n", + " [ 3.43668195 18.89654879]\n", + " [30.31488203 13.51155701]\n", + " [24.93888233 13.51335542]\n", + " [19.56288263 13.51515384]\n", + " [14.18688293 13.51695226]\n", + " [ 8.81088324 13.51875068]\n", + " [ 3.43488354 13.5205491 ]\n", + " [30.31308361 8.13555731]\n", + " [24.93708392 8.13735572]\n", + " [19.56108422 8.13915414]\n", + " [14.18508451 8.14095256]\n", + " [ 8.80908482 8.14275098]\n", + " [ 3.43308512 8.1445494 ]\n", + " [30.31128519 2.75955761]\n", + " [24.93528549 2.76135602]\n", + " [19.5592858 2.76315444]\n", + " [14.18328609 2.76495286]\n", + " [ 8.8072864 2.76675128]\n", + " [ 3.4312867 2.7685497 ]]\n", + "DEBUG:root:radec2pix: xyfp Shape: (96, 2)\n", + "DEBUG:root:mm_to_pix: fitpx: [[0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]]\n", + "DEBUG:root:mm_to_pix: fitpx.shape: (96, 2)\n", + "DEBUG:root:radec2pix: xyfp: [[32.23341696 31.55141621]\n", + " [32.23194958 27.16498788]\n", + " [32.2304822 22.77855956]\n", + " [32.22901483 18.39213124]\n", + " [32.22754745 14.00570291]\n", + " [32.22608007 9.61927458]\n", + " [32.22461269 5.23284626]\n", + " [32.2231453 0.84641793]\n", + " [32.23341696 31.55141621]\n", + " [27.84698864 31.5528836 ]\n", + " [23.46056031 31.55435097]\n", + " [19.07413198 31.55581835]\n", + " [14.68770366 31.55728573]\n", + " [10.30127533 31.55875311]\n", + " [ 5.91484701 31.56022049]\n", + " [ 1.52841868 31.56168787]\n", + " [32.2231453 0.84641793]\n", + " [27.83671698 0.84788531]\n", + " [23.45028865 0.84935269]\n", + " [19.06386033 0.85082007]\n", + " [14.677432 0.85228745]\n", + " [10.29100367 0.85375483]\n", + " [ 5.90457535 0.85522221]\n", + " [ 1.51814702 0.85668959]\n", + " [ 1.52841868 31.56168787]\n", + " [ 1.5269513 27.17525955]\n", + " [ 1.52548392 22.78883122]\n", + " [ 1.52401654 18.4024029 ]\n", + " [ 1.52254916 14.01597457]\n", + " [ 1.52108178 9.62954624]\n", + " [ 1.5196144 5.24311792]\n", + " [ 1.51814702 0.85668959]\n", + " [32.21777718 29.63892134]\n", + " [32.21597876 24.26292164]\n", + " [32.21418034 18.88692194]\n", + " [32.21238193 13.51092224]\n", + " [32.21058351 8.13492254]\n", + " [32.20878509 2.75892284]\n", + " [30.32091205 31.53705599]\n", + " [24.94491236 31.53885442]\n", + " [19.56891265 31.54065283]\n", + " [14.19291295 31.54245125]\n", + " [ 8.81691325 31.54424967]\n", + " [ 3.44091356 31.54604808]\n", + " [30.31065043 0.86205771]\n", + " [24.93465073 0.86385613]\n", + " [19.55865103 0.86565455]\n", + " [14.18265134 0.86745297]\n", + " [ 8.80665163 0.86925139]\n", + " [ 3.43065193 0.8710498 ]\n", + " [ 1.5427789 29.64918296]\n", + " [ 1.54098048 24.27318326]\n", + " [ 1.53918206 18.89718357]\n", + " [ 1.53738364 13.52118387]\n", + " [ 1.53558522 8.14518416]\n", + " [ 1.5337868 2.76918446]\n", + " [32.21841195 31.53642123]\n", + " [32.21841195 31.53642123]\n", + " [ 1.53315204 0.87168457]\n", + " [ 1.53315204 0.87168457]\n", + " [30.32027729 29.6395561 ]\n", + " [24.94427759 29.64135452]\n", + " [19.56827789 29.64315294]\n", + " [14.19227819 29.64495136]\n", + " [ 8.81627849 29.64674978]\n", + " [ 3.44027879 29.6485482 ]\n", + " [30.31847887 24.2635564 ]\n", + " [24.94247917 24.26535482]\n", + " [19.56647947 24.26715324]\n", + " [14.19047977 24.26895166]\n", + " [ 8.81448007 24.27075007]\n", + " [ 3.43848037 24.2725485 ]\n", + " [30.31668045 18.8875567 ]\n", + " [24.94068075 18.88935513]\n", + " [19.56468105 18.89115354]\n", + " [14.18868135 18.89295196]\n", + " [ 8.81268165 18.89475038]\n", + " [ 3.43668195 18.89654879]\n", + " [30.31488203 13.51155701]\n", + " [24.93888233 13.51335542]\n", + " [19.56288263 13.51515384]\n", + " [14.18688293 13.51695226]\n", + " [ 8.81088324 13.51875068]\n", + " [ 3.43488354 13.5205491 ]\n", + " [30.31308361 8.13555731]\n", + " [24.93708392 8.13735572]\n", + " [19.56108422 8.13915414]\n", + " [14.18508451 8.14095256]\n", + " [ 8.80908482 8.14275098]\n", + " [ 3.43308512 8.1445494 ]\n", + " [30.31128519 2.75955761]\n", + " [24.93528549 2.76135602]\n", + " [19.5592858 2.76315444]\n", + " [14.18328609 2.76495286]\n", + " [ 8.8072864 2.76675128]\n", + " [ 3.4312867 2.7685497 ]]\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "DEBUG:root:radec2pix: ccdpx: [[-4.44999999e+01 -4.99999873e-01]\n", + " [-4.44999998e+01 2.91928572e+02]\n", + " [-4.44999998e+01 5.84357143e+02]\n", + " [-4.45000002e+01 8.76785714e+02]\n", + " [-4.45000003e+01 1.16921429e+03]\n", + " [-4.45000002e+01 1.46164286e+03]\n", + " [-4.45000002e+01 1.75407143e+03]\n", + " [-4.45000000e+01 2.04650000e+03]\n", + " [-4.44999999e+01 -4.99999873e-01]\n", + " [ 2.47928571e+02 -5.00000280e-01]\n", + " [ 5.40357143e+02 -5.00000000e-01]\n", + " [ 8.32785714e+02 -4.99999974e-01]\n", + " [ 1.12521429e+03 -4.99999987e-01]\n", + " [ 1.41764286e+03 -4.99999863e-01]\n", + " [ 1.71007143e+03 -5.00000138e-01]\n", + " [ 2.00250000e+03 -4.99999700e-01]\n", + " [-4.45000000e+01 2.04650000e+03]\n", + " [ 2.47928571e+02 2.04650000e+03]\n", + " [ 5.40357143e+02 2.04650000e+03]\n", + " [ 8.32785714e+02 2.04650000e+03]\n", + " [ 1.12521429e+03 2.04650000e+03]\n", + " [ 1.41764286e+03 2.04650000e+03]\n", + " [ 1.71007143e+03 2.04650000e+03]\n", + " [ 2.00250000e+03 2.04650000e+03]\n", + " [ 2.00250000e+03 -4.99999700e-01]\n", + " [ 2.00250000e+03 2.91928571e+02]\n", + " [ 2.00250000e+03 5.84357143e+02]\n", + " [ 2.00250000e+03 8.76785714e+02]\n", + " [ 2.00250000e+03 1.16921429e+03]\n", + " [ 2.00250000e+03 1.46164286e+03]\n", + " [ 2.00250000e+03 1.75407143e+03]\n", + " [ 2.00250000e+03 2.04650000e+03]\n", + " [-4.35000000e+01 1.27000000e+02]\n", + " [-4.35000002e+01 4.85400000e+02]\n", + " [-4.34999999e+01 8.43800000e+02]\n", + " [-4.35000003e+01 1.20220000e+03]\n", + " [-4.35000000e+01 1.56060000e+03]\n", + " [-4.35000001e+01 1.91900000e+03]\n", + " [ 8.30000001e+01 5.00000148e-01]\n", + " [ 4.41400000e+02 4.99999823e-01]\n", + " [ 7.99800000e+02 4.99999939e-01]\n", + " [ 1.15820000e+03 5.00000006e-01]\n", + " [ 1.51660000e+03 5.00000232e-01]\n", + " [ 1.87500000e+03 5.00000256e-01]\n", + " [ 8.29999998e+01 2.04550000e+03]\n", + " [ 4.41400000e+02 2.04550000e+03]\n", + " [ 7.99800000e+02 2.04550000e+03]\n", + " [ 1.15820000e+03 2.04550000e+03]\n", + " [ 1.51660000e+03 2.04550000e+03]\n", + " [ 1.87500000e+03 2.04550000e+03]\n", + " [ 2.00150000e+03 1.27000000e+02]\n", + " [ 2.00150000e+03 4.85400000e+02]\n", + " [ 2.00150000e+03 8.43800000e+02]\n", + " [ 2.00150000e+03 1.20220000e+03]\n", + " [ 2.00150000e+03 1.56060000e+03]\n", + " [ 2.00150000e+03 1.91900000e+03]\n", + " [-4.35000003e+01 4.99999725e-01]\n", + " [-4.35000003e+01 4.99999725e-01]\n", + " [ 2.00150000e+03 2.04550000e+03]\n", + " [ 2.00150000e+03 2.04550000e+03]\n", + " [ 8.30000000e+01 1.27000000e+02]\n", + " [ 4.41400000e+02 1.27000000e+02]\n", + " [ 7.99800000e+02 1.27000000e+02]\n", + " [ 1.15820000e+03 1.27000000e+02]\n", + " [ 1.51660000e+03 1.27000000e+02]\n", + " [ 1.87500000e+03 1.27000000e+02]\n", + " [ 8.30000001e+01 4.85400000e+02]\n", + " [ 4.41400000e+02 4.85400000e+02]\n", + " [ 7.99800000e+02 4.85400000e+02]\n", + " [ 1.15820000e+03 4.85400000e+02]\n", + " [ 1.51660000e+03 4.85400000e+02]\n", + " [ 1.87500000e+03 4.85400000e+02]\n", + " [ 8.30000001e+01 8.43800000e+02]\n", + " [ 4.41400000e+02 8.43800000e+02]\n", + " [ 7.99800000e+02 8.43800000e+02]\n", + " [ 1.15820000e+03 8.43800000e+02]\n", + " [ 1.51660000e+03 8.43800000e+02]\n", + " [ 1.87500000e+03 8.43800000e+02]\n", + " [ 8.29999999e+01 1.20220000e+03]\n", + " [ 4.41400000e+02 1.20220000e+03]\n", + " [ 7.99800000e+02 1.20220000e+03]\n", + " [ 1.15820000e+03 1.20220000e+03]\n", + " [ 1.51660000e+03 1.20220000e+03]\n", + " [ 1.87500000e+03 1.20220000e+03]\n", + " [ 8.30000000e+01 1.56060000e+03]\n", + " [ 4.41400000e+02 1.56060000e+03]\n", + " [ 7.99800000e+02 1.56060000e+03]\n", + " [ 1.15820000e+03 1.56060000e+03]\n", + " [ 1.51660000e+03 1.56060000e+03]\n", + " [ 1.87500000e+03 1.56060000e+03]\n", + " [ 8.30000003e+01 1.91900000e+03]\n", + " [ 4.41400000e+02 1.91900000e+03]\n", + " [ 7.99800000e+02 1.91900000e+03]\n", + " [ 1.15820000e+03 1.91900000e+03]\n", + " [ 1.51660000e+03 1.91900000e+03]\n", + " [ 1.87500000e+03 1.91900000e+03]]\n", + "DEBUG:root:radec2pix: fitpx: [[4271.49999987 4155.49999987]\n", + " [4271.49999978 3863.07142838]\n", + " [4271.49999978 3570.64285699]\n", + " [4271.50000021 3278.21428583]\n", + " [4271.50000028 2985.78571441]\n", + " [4271.50000021 2693.35714292]\n", + " [4271.50000016 2400.92857146]\n", + " [4271.5 2108.5 ]\n", + " [4271.49999987 4155.49999987]\n", + " [3979.07142882 4155.50000028]\n", + " [3686.64285714 4155.5 ]\n", + " [3394.2142857 4155.49999997]\n", + " [3101.78571428 4155.49999999]\n", + " [2809.35714281 4155.49999986]\n", + " [2516.92857145 4155.50000014]\n", + " [2224.49999999 4155.4999997 ]\n", + " [4271.5 2108.5 ]\n", + " [3979.0714288 2108.50000001]\n", + " [3686.64285693 2108.49999999]\n", + " [3394.21428614 2108.50000002]\n", + " [3101.7857146 2108.50000002]\n", + " [2809.35714263 2108.49999998]\n", + " [2516.92857131 2108.49999998]\n", + " [2224.49999992 2108.49999995]\n", + " [2224.49999999 4155.4999997 ]\n", + " [2224.50000001 3863.07142868]\n", + " [2224.5 3570.64285711]\n", + " [2224.50000002 3278.21428594]\n", + " [2224.50000001 2985.78571436]\n", + " [2224.49999998 2693.35714271]\n", + " [2224.50000001 2400.92857146]\n", + " [2224.49999992 2108.49999995]\n", + " [4270.5 4028. ]\n", + " [4270.50000018 3669.60000013]\n", + " [4270.49999988 3311.19999993]\n", + " [4270.50000028 2952.80000012]\n", + " [4270.5 2594.4 ]\n", + " [4270.50000006 2236.00000001]\n", + " [4143.99999986 4154.49999985]\n", + " [3785.60000014 4154.50000018]\n", + " [3427.20000004 4154.50000006]\n", + " [3068.8 4154.49999999]\n", + " [2710.39999994 4154.49999977]\n", + " [2351.99999997 4154.49999974]\n", + " [4144.00000019 2109.50000001]\n", + " [3785.59999998 2109.5 ]\n", + " [3427.19999968 2109.49999999]\n", + " [3068.80000035 2109.50000002]\n", + " [2710.39999998 2109.5 ]\n", + " [2351.99999973 2109.49999993]\n", + " [2225.50000001 4028.00000029]\n", + " [2225.50000001 3669.60000014]\n", + " [2225.50000002 3311.20000027]\n", + " [2225.50000003 2952.80000024]\n", + " [2225.49999999 2594.39999997]\n", + " [2225.49999991 2235.99999983]\n", + " [4270.50000028 4154.50000027]\n", + " [4270.50000028 4154.50000027]\n", + " [2225.50000021 2109.50000012]\n", + " [2225.50000021 2109.50000012]\n", + " [4143.99999997 4027.99999997]\n", + " [3785.60000006 4028.00000007]\n", + " [3427.20000002 4028.00000003]\n", + " [3068.8 4028.00000001]\n", + " [2710.40000007 4028.00000025]\n", + " [2352. 4028.00000001]\n", + " [4143.99999988 3669.5999999 ]\n", + " [3785.59999992 3669.59999992]\n", + " [3427.20000003 3669.60000003]\n", + " [3068.79999996 3669.59999994]\n", + " [2710.39999994 3669.59999984]\n", + " [2352.00000003 3669.60000024]\n", + " [4143.99999986 3311.19999992]\n", + " [3785.60000024 3311.20000018]\n", + " [3427.19999985 3311.19999985]\n", + " [3068.80000018 3311.20000023]\n", + " [2710.39999997 3311.19999993]\n", + " [2351.99999998 3311.19999989]\n", + " [4144.00000009 2952.80000004]\n", + " [3785.60000017 2952.80000009]\n", + " [3427.19999999 2952.79999999]\n", + " [3068.79999994 2952.79999994]\n", + " [2710.40000012 2952.80000019]\n", + " [2351.99999999 2952.79999997]\n", + " [4143.99999998 2594.4 ]\n", + " [3785.60000016 2594.40000005]\n", + " [3427.20000028 2594.40000012]\n", + " [3068.79999967 2594.39999981]\n", + " [2710.40000007 2594.40000006]\n", + " [2351.99999992 2594.39999981]\n", + " [4143.99999971 2235.99999997]\n", + " [3785.59999981 2235.99999998]\n", + " [3427.2 2236. ]\n", + " [3068.79999989 2235.99999998]\n", + " [2710.40000023 2236.00000007]\n", + " [2352.00000024 2236.00000019]]\n", + "DEBUG:root:fitpix2pix: ccdpx: shape: (96, 2)\n", + "DEBUG:root:fitpix2pix: visCut: True\n" + ] + } + ], + "source": [ + "xy = footprint()\n", + "SectorCameraCCD = (1, 1, 1)\n", + "Sector, Camera, CCD = SectorCameraCCD\n", + "\n", + "dir_testfiles='/Users/tapritc2/tessgi/tesspoint/TESSPoint_CreateTestFiles/testfiles'\n", + " \n", + "pixfile=dir_testfiles+\"/TEST_radec2pix_Sec{:02d}_Cam{}_CCD{}_stars2px.dat\".format(Sector,Camera,CCD)\n", + "\n", + "output_pix_df = test_radec2pix_SectorCameraCCD(SectorCameraCCD)\n", + "benchmark_pix_df = pd.read_csv(pixfile,names=['tic','ra','dec','el','ela','s','c','ccd','row','col','edge'],\n", + " index_col=0, skiprows=16,delimiter=\"|\" )\n", + "fprfile=\"/Users/tapritc2/tessgi/tesspoint/TESSPoint_CreateTestFiles/footprint_input.dat\"\n", + "footprint_df=pd.read_csv(fprfile,delimiter=' ',names=['tic','row','col'],index_col=False)" + ] + }, + { + "cell_type": "code", + "execution_count": 361, + "id": "017415bb", + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "" + ] + }, + "execution_count": 361, + "metadata": {}, + "output_type": "execute_result" + }, + { + "data": { + "image/png": "iVBORw0KGgoAAAANSUhEUgAAAjEAAAGdCAYAAADjWSL8AAAAOXRFWHRTb2Z0d2FyZQBNYXRwbG90bGliIHZlcnNpb24zLjYuMCwgaHR0cHM6Ly9tYXRwbG90bGliLm9yZy89olMNAAAACXBIWXMAAA9hAAAPYQGoP6dpAABSmUlEQVR4nO3de1xUdf4/8NdwlcvMIKPDgKBQKhcxJDVFM++3Mist3HJd2Vr7lqnrarW17SbWrpb7Vcvs6tcVK8sos/pVYihCuqgpwqYCXiEBuRjCDAiC4Of3B8vREUQ4zu3g6/l4zGNmzvnM+bzP+3Bm3nzOmTkqIYQAERERkcI42TsAIiIiIjlYxBAREZEisYghIiIiRWIRQ0RERIrEIoaIiIgUiUUMERERKRKLGCIiIlIkFjFERESkSC72DsBaLl++jLNnz0KtVkOlUtk7HCIiImoHIQSqqqoQEBAAJ6e2x1o6bRFz9uxZBAUF2TsMIiIikqGgoACBgYFttum0RYxarQbQlASNRmPnaIiIiKg9TCYTgoKCpM/xtnTaIqb5EJJGo2ERQ0REpDDtORWEJ/YSERGRIrGIISIiIkViEUNERESKxCKGiIiIFIlFDBERESkSixgiIiJSJBYxREREpEgsYoiIiEiRWMQQERGRIrGIkeFoaQGe+X+rcbS0wN6h2EVpeRESk9egtLzI3qHYza2eA67/rb3+AHNwq68/AOSczsCrH/4WOacz7BYDixgZfqkowYFfd+OXihKb9OdoO0ulqQyZhSmoNJXZO5QbslbulJQDudrK3a2w/m250fo72j5rDdb6G1BK7hxxH7Bl7nJOZ+CDnX9BZu1/UFh20ur9XQ+LGAVwxJ1FKZg7+Zg7+Zg7+Zg7+WyZu8KykzgtzqLB6j21rdNeANLSjpYWSCMvB4pyze4BoFdXA/r5BdklNlsoLS+Sdoz8khyzewDw0ejhp+thl9hs5VbPAdf/1l5/gDm41dcfaBqBKSw7iWOFB1GvEnAVKuQW7JfmB+p7I/y2gTaLh0VMO73z0xc48Otus2nfndmK7840PR7cbQTevv9PFuvP0XaWtENbkFmYYjYtNTcR+G8dFx04BrHjF9gsnrZYK3dKyoFcbeVuV9bnOHU+Cy5OblL7zrb+bbnR9g/tNhgxkfcCcIx91hqstQ842vvd9Tjie4Atc5dzOgMf7HgRp0QxLqkEKlwEugog+Xwyks8nwwVAtEcU/nbbxxbprz1UQghhs95syGQyQavVwmg0QqPR3PTyrh2J+e7MVtzX8yEM7hEGwPIjMYnJa1rsLFez9c5y7Y6SmpuIUWGxCDaEA3CcNxnAerlTUg7kait3DZfr0dt3AEYNeKTTrn9bbrT992Z/j2NlB677+s5Q5FlrH3C097vrccT3AFvm7tUPf4vMiz+jEU1lQ71KoMJZoGujCm5ChdtUAXhy7LKbHonpyOc3R2LaqZ9fkFmR8t0ZYHCPMNwbNtgq/Y28czqieo8AcP2dxZb8dD3Md85cINgQjtCQaJvG0R7Wyp2SciBXe3In5aATrn9bbrT9fTR6xJiujMTYe5+1BmvtA472fnc9jvgeYMvcPXz3nzD0vyfx5hbsx46KZHRtAO7znYzQwEE2P5QEsIhxWI64sygFcycfcycfcycfcyefLXMXfttAsyJlR0UyXIUKoYGDMH7oDIv31x4d+nbS8uXLMXjwYKjVauj1ejz44IM4duyYWRshBOLj4xEQEAAPDw+MGjUKR48eNWtTV1eH+fPno1u3bvDy8sLUqVNRWFho1qaiogKzZs2CVquFVqvFrFmzUFlZKW8tLaxXVwMGdxuBXl0N9g7FLnw0ekQHjnGY/47s4VbPAdf/1l5/gDm41dcfAJyhwu0qfwTqe9svCNEBEydOFBs2bBBHjhwRWVlZ4r777hM9e/YU1dXVUpvXXntNqNVqsWXLFnH48GExY8YM4e/vL0wmk9TmqaeeEj169BDJycni0KFDYvTo0SIqKko0NDRIbSZNmiQiIyNFenq6SE9PF5GRkWLKlCntjtVoNAoAwmg0dmQVHVLJr4Xisx/eFCW/Fto7FMVh7uRj7uRj7uRj7uSzZe6yTx0Ur2ycKbJPHbT4sjvy+d2hIuZaZWVlAoBIS0sTQghx+fJlYTAYxGuvvSa1uXjxotBqteK9994TQghRWVkpXF1dxebNm6U2RUVFwsnJSSQlJQkhhMjOzhYAxL59+6Q2e/fuFQBEbm5uu2LrTEUMERHRraIjn9839WN3RqMRAODr6wsAyMvLQ0lJCSZMmCC1cXd3x8iRI5Geng4AyMjIwKVLl8zaBAQEIDIyUmqzd+9eaLVaDBkyRGozdOhQaLVaqc216urqYDKZzG5ERETUeckuYoQQWLRoEe6++25ERkYCAEpKmr6C7OfnZ9bWz89PmldSUgI3Nzd07dq1zTZ6fcvjjHq9XmpzreXLl0vnz2i1WgQFdd4fniMiIqKbKGLmzZuHn3/+GZ9++mmLeSqVyuy5EKLFtGtd26a19m0t58UXX4TRaJRuBQW35sUZiYiIbhWyipj58+fjm2++wa5duxAYGChNNxiavq1z7WhJWVmZNDpjMBhQX1+PioqKNtuUlpa26PfcuXMtRnmaubu7Q6PRmN2IiIio8+pQESOEwLx58/Dll18iJSUFISEhZvNDQkJgMBiQnJwsTauvr0daWhqGDRsGABg4cCBcXV3N2hQXF+PIkSNSm5iYGBiNRvz0009Sm/3798NoNEptiIiI6NbWoR+7e+aZZ/DJJ5/g66+/hlqtlkZctFotPDw8oFKpsHDhQixbtgx9+vRBnz59sGzZMnh6euKxxx6T2j7xxBNYvHgxdDodfH198eyzz6J///4YN24cACA8PByTJk3CnDlz8P777wMAnnzySUyZMgWhoaGWXH8iIiJSqA4VMe+++y4AYNSoUWbTN2zYgLi4OADA888/j9raWsydOxcVFRUYMmQIfvjhB6jVaqn96tWr4eLigtjYWNTW1mLs2LFISEiAs7Oz1GbTpk1YsGCB9C2mqVOnYu3atXLWkYiIiDohXgCSiIiIHEZHPr9v6ndiiIiIiOyFRQwREREpEosYGUqrjUjI2IHSaqNt+isvQmLyGpSWF9mkv86EuZOPuZOPuZOPuZPPlrlzlO3EIkaG8zVV2Jm/F+drqmzSX6WpDJmFKag0ldmkv86EuZOPuZOPuZOPuZPPlrlzlO3EIoaIiIgUqUNfsb6VlVYbpZGXk+Vnze4BwNdTDT9vreX6Ky+SKtz8khyzewDw0ejhp+thsf46E+ZOPuZOPuZOPuZOPlvmzhG3E79i3U4JGTuwM3/vdeePDY5B3MBxN91Ps8TkNcgsTLnu/OjAMYgdv8Bi/XUmzJ18zJ18zJ18zJ18tsydrfrqyOc3i5h2unYkJjF7O2IjJqK3LgCA9UdiUnMTMSosFsGGcAD8z6QtzJ18zJ18zJ18zJ18tsydrfrqyOc3Dye1k5+3tkWR0lsXgHB94HVecZP96XqY/zHkAsGGcISGRFulv86EuZOPuZOPuZOPuZPPlrlzxO3EE3uJiIhIkVjEyODrqcbY4Bj4eqpv3NgCfDR6RAeOgY9Gb5P+OhPmTj7mTj7mTj7mTj5b5s5RthPPiSEiIiKHwWsnERERUafHIoaIiIgUiUUMERERKRKLGCIiIlIkFjFERESkSCxiiIiISJFYxBAREZEisYghIiIiRWIRQ0RERIrEIoaIiIgUiUUMERERKRKLGCIiIlIkFjFERESkSCxiiIiISJFYxBAREZEisYghIiIiRWIRQ0RERIrEIkaG0mojEjJ2oLTaaO9QiIiI7KK0vAiJyWtQWl5ktxhYxMhwvqYKO/P34nxNlb1DISIisotKUxkyC1NQaSqzWwwsYoiIiEiRXOwdgFKUVhulkZeT5WfN7gHA11MNP2+tXWIjIiKyhdLyImnkJb8kx+weAHw0evjpetgsHhYx7bTt2AHszN9rNi0xe7v0eGxwDOIGjrN1WERERDaTdmgLMgtTzKal5iYCuU2PowPHIHb8ApvFwyKmnSaHDsaQoDAATSMwidnbERsxEb11AQCaRmKIiIg6s5F3TkdU7xEAmkZgUnMTMSosFsGGcABNIzG2xCKmnfy8tS0OF/XWBSBcH2iniIiIiGzLT9fD/HBRLhBsCEdoSLRd4uGJvURERKRILGJk8PVUY2xwDA8hERHRLctHo0d04BibH0K6mkoIIezWuxWZTCZotVoYjUZoNBp7h0NERETt0JHPb47EEBERkSKxiCEiIiJFYhFDREREisQihoiIiBSJRQwREREpEosYIiIiUiQWMURERKRILGKIiIhIkVjEEBERkSKxiCEiIiJFYhFDREREisQihoiIiBSJRQwREREpEosYIiIiUiQWMURERKRILGKIiIhIkVjEEBERkSKxiCEiIiJFYhFDREREisQihoiIiBSJRQwREREpEosYIiIiUiQWMTKUVhuRkLEDpdVG2/RXXoTE5DUoLS+ySX+dCXMnH3MnH3MnH3Mnny1z5yjbiUWMDOdrqrAzfy/O11TZpL9KUxkyC1NQaSqzSX+dCXMnH3MnH3MnH3Mnny1z5yjbiUUMERERKZKLvQNQitJqozTycrL8rNk9APh6quHnrbVcf+VFUoWbX5Jjdg8APho9/HQ9LNZfZ8LcycfcycfcycfcyWfL3DnidlIJIYRNe7QRk8kErVYLo9EIjUZz08tLyNiBnfl7rzt/bHAM4gaOu+l+miUmr0FmYcp150cHjkHs+AUW668zYe7kY+7kY+7kY+7ks2XubNVXRz6/WcS007UjMYnZ2xEbMRG9dQEArD8Sk5qbiFFhsQg2hAPgfyZtYe7kY+7kY+7kY+7ks2XubNVXRz6/eTipnfy8tS2KlN66AITrA63Tn66H+R9DLhBsCEdoSLRV+utMmDv5mDv5mDv5mDv5bJk7R9xOPLGXiIiIFIlFjAy+nmqMDY6Br6faJv35aPSIDhwDH43eJv11JsydfMydfMydfMydfLbMnaNsJ54TQ0RERA6jI5/fHR6J+fHHH3H//fcjICAAKpUKX331ldn8uLg4qFQqs9vQoUPN2tTV1WH+/Pno1q0bvLy8MHXqVBQWFpq1qaiowKxZs6DVaqHVajFr1ixUVlZ2NFwiIiLqpDpcxFy4cAFRUVFYu3btddtMmjQJxcXF0u377783m79w4UJs3boVmzdvxp49e1BdXY0pU6agsbFRavPYY48hKysLSUlJSEpKQlZWFmbNmtXRcImIiKiT6vC3kyZPnozJkye32cbd3R0Gg6HVeUajEevXr8dHH32EceOaflfl448/RlBQEHbs2IGJEyciJycHSUlJ2LdvH4YMGQIAWLduHWJiYnDs2DGEhoZ2NGwiIiLqZKxyYm9qair0ej369u2LOXPmoKzsyrUVMjIycOnSJUyYMEGaFhAQgMjISKSnpwMA9u7dC61WKxUwADB06FBotVqpzbXq6upgMpnMbkRERNR5WbyImTx5MjZt2oSUlBSsXLkSBw4cwJgxY1BXVwcAKCkpgZubG7p27Wr2Oj8/P5SUlEht9PqWZzzr9XqpzbWWL18unT+j1WoRFBRk4TUjIiIiR2LxH7ubMWOG9DgyMhKDBg1Cr1698N1332HatGnXfZ0QAiqVSnp+9ePrtbnaiy++iEWLFknPTSYTCxkiIqJOzOq/E+Pv749evXrhxIkTAACDwYD6+npUVFSYtSsrK4Ofn5/UprS0tMWyzp07J7W5lru7OzQajdnNWkqrjUjI2IHSaqPV+iAiInJkpeVFSExeg9LyIrvFYPUipry8HAUFBfD39wcADBw4EK6urkhOTpbaFBcX48iRIxg2bBgAICYmBkajET/99JPUZv/+/TAajVIbezpfU4Wd+XulaykRERHdaipNZcgsTJGup2QPHT6cVF1djZMnT0rP8/LykJWVBV9fX/j6+iI+Ph7Tp0+Hv78/8vPz8Ze//AXdunXDQw89BADQarV44oknsHjxYuh0Ovj6+uLZZ59F//79pW8rhYeHY9KkSZgzZw7ef/99AMCTTz6JKVOm8JtJREREBEBGEXPw4EGMHj1aet58Hsrs2bPx7rvv4vDhw/jwww9RWVkJf39/jB49Gp999hnU6is/0b969Wq4uLggNjYWtbW1GDt2LBISEuDs7Cy12bRpExYsWCB9i2nq1Klt/jaNtV17Feur7wHLX8WaiIjI0Vx7Jeur7wHbX3Gclx1op4SMHdiZv/e688cGxyBu4Lib7oeIiMhRJSavQWZhynXnRweOQez4BTfVR0c+vy3+7aTOanLoYAwJCgPQNAKTmL0dsRET0VsXAAA2uxgkERGRvYy8czqieo8A0DQCk5qbiFFhsQg2hAOAzS8IySKmnfy8tS0OF/XWBSBcH2iniIiIiGzLT9fD/HBRLhBsCEdoSLRd4rH6t5OIiIiIrIFFjAy+nmqMDY7hISQiIrpl+Wj0iA4cY/NDSFfjib1ERETkMDry+c2RGCIiIlIkFjFERESkSCxiiIiISJFYxBAREZEisYghIiIiRWIRQ0RERIrEIoaIiIgUiUUMERERKRKLGCIiIlIkFjFERESkSCxiiIiISJFYxBAREZEisYghIiIiRWIRQ0RERIrEIoaIiIgUiUUMERERKRKLGCIiIlIkFjFERESkSCxiiIiISJFYxBAREZEisYghIiIiRWIRQ0RERIrEIoaIiIgUiUUMERERKRKLGCIiIlIkFjFERESkSCxiiIiISJFYxBAREZEisYghIiIiRWIRQ0RERIrEIoaIiIgUiUUMERERKZKLvQMgUqrGxkZcunTJ3mEQ2YWrqyucnZ3tHQbd4ljEyFBabcS2YwcwOXQw/Ly11u+vvAhph7Zg5J3T4afrYfX+OhNr5E4IgZKSElRWVlpkeY6qsbEBF+tr0MXNE87OfKvoiFsldz4+PjAYDFCpVBZbJt/v5LNl7hxlO3XevcuKztdUYWf+XgwJCrNJEVNpKkNmYQqieo/gTt1B1shdcwGj1+vh6elp0TdwR1JXX4uKC2Xo6qWHu5uHvcNRlM6eOyEEampqUFZWBgDw9/e32LL5fiefLXPnKNuJRQxRBzQ2NkoFjE6ns3c41qW6DJd6Z7i7u6OLexd7R6Mst0DuPDyairOysjLo9XoeWiK7YBHTTqXVRpyvqQIAnCw/a3YPAL6eaouOypSWF6HS1PRfTn5Jjtk9APho9Pwv5Tqsmbvmc2A8PT1vMkrHdKmhHo2NDQCAuku1ZvcA4OzsAlcXN7vE5uhuxdw17weXLl26qSKG73fy2TJ3jridVEIIYdMebcRkMkGr1cJoNEKj0dz08hIydmBn/t7rzh8bHIO4geNuup9miclrkFmYct350YFjEDt+gcX660ysmbuLFy8iLy8PISEh6NKl8/2Hfd5Uipr6quvO93RTw1fjZ8OIlONWzJ2l9ge+38lny9zZqq+OfH6ziGmnq0diMopO4sMjn+F3kTMwsEdvANYfiUnNTcSosFgEG8IB8D+Ttlgzd529iLl2NKHqYgXUXbrC3bXp0EFnHE2wlFsxd5baH/h+J58tc3dtXzuyP0Z3j0DcE/kwuqq7W6yvjnx+83BSO/l5a6UiJe98MSobSuHr4YVwfaB1+tP1MP9jyAWCDeEIDYm2Sn+dCXMnn6uLm9kHbdXFCri7eqCLe+c8fHYjcXFxqKysxFdffXXdNqmpqRg9ejQqKirg4+MjTb/Vc9cR3Gfls2Xuru2r8WgjSi78gq7q7nbbVvyxO6JbSEFBAZ544gkEBATAzc0NvXr1wh//+EeUl5d3aDn5+flQqVTIysqySpwqlarNwsFW3nzzTSQkJEjPR40ahYULF5q1GTZsGIqLi6HVWv+bikRkjiMx7XT14aTztdXwcfHD+dpq5JQVArD84aSr+Wj0iA4cAx+N3irL78wcPXfVdQ04XGhE/0AtvN2tuzuePn0aMTEx6Nu3Lz799FOEhITg6NGjeO6557Bt2zbs27cPvr6+UntnZxd4uqk79e+c3Eh7ChM3NzcYDAazacydfI6+zzoyW+Su+ZBSRVUZDJ49ca62yK4n93Ikpp22HTuAZbs3YNnuDdh+eg/8PAOw/fQeadq2Ywes1refrgdixy/gMWEZHD13NXUN2He6HDV1DVbv65lnnoGbmxt++OEHjBw5Ej179sTkyZOxY8cOFBUV4aWXXpLaqlQqfPft9/DV+EmHl3x8fKRRiZCQEABAdHQ0VCoVRo0aBaDp8MuDDz6IpUuXQq/XQ6PR4H/+539QX18vLTs4OBhvvPGGWWwDBgxAfHy8NB8AHnroIahUKun5tZpHgzZv3oxhw4ahS5cu6NevH1JTU83apaWl4a677oK7uzv8/f3xwgsvoKHhSr6/+OIL9O/fHx4eHtDpdBg3bhwuXLhgtj7Nj9PS0vDmm29CpVJBpVIhPz8fqampUKlUZj9++M3X/w8jYsbA20uN4OBgrFy50iym4OBgLFu2DI8//jjUajV69uyJDz74QJpfX1+PefPmwd/fH126dEFwcDCWL1/eah46G0ffZx2ZLXKXdmgLElKX4uuMd1FRdw4uTm5IzU1EQupSJKQuRdqhLVbruzX8N6GdJocOxpCgMABNX61OzN6O2IiJ6K0LANA0EkPkqM6fP4/t27fjH//4h/T7Hs0MBgNmzpyJzz77DO+88067frzvp59+wl133YUdO3agX79+cHO7ch7Nzp070aVLF+zatQv5+fn4/e9/j27duuEf//hHu2I9cOAA9Ho9NmzYgEmTJt3wq7vPPfcc3njjDURERGDVqlWYOnUq8vLyoNPpUFRUhHvvvRdxcXH48MMPkZubizlz5qBLly6Ij49HcXExHn30UaxYsQIPPfQQqqqqsHv3brT2fYc333wTx48fR2RkJF555RUAQPfu3ZGfn2/WLiMjA7GxsYiPj8eMGTOQnp6OuXPnQqfTIS4uTmq3cuVKvPrqq/jLX/6CL774Ak8//TTuuecehIWFYc2aNfjmm2+QmJiInj17oqCgAAUFBe3KH5E1jbxzOqJ6jwBw/ROJbYlFTDtdfWJvs966AKud2EudV3VdgzTyUlZVZ3YPAJ7uLhY/tHTixAkIIRAeHt7q/PDwcFRUVODcuXPQ62/8JtS9e3cAgE6na3Eoxc3NDf/617/g6emJfv364ZVXXsFzzz2HV199FU5ONx78bV5280/a38i8efMwffp0AMC7776LpKQkrF+/Hs8//zzeeecdBAUFYe3atVCpVAgLC8PZs2fx5z//GS+//DKKi4vR0NCAadOmoVevXgCA/v37t9qPVquFm5sbPD0924xr1apVGDt2LP72t78BAPr27Yvs7Gz885//NCti7r33XsydOxcA8Oc//xmrV69GamoqwsLCcObMGfTp0wd33303VCqVFBuRvTnaSdg8nERkY4cLjdi0/ww27T+D5OxSAEBydqk07XCh0eYxNY88WOISClFRUWY/BhgTE4Pq6mqrjSTExMRIj11cXDBo0CDk5DQdo8/JyUFMTIzZeg0fPhzV1dUoLCxEVFQUxo4di/79++ORRx7BunXrUFFRcVPx5OTkYPjw4WbThg8fjhMnTqCxsVGadscdd0iPVSoVDAaD9DP+cXFxyMrKQmhoKBYsWIAffvjhpmIi6qxYxMjg66nG2OAYHkIiWfoHajFzSE/MHNIT4yOafvxsfISfNK1/oOVPEO/duzdUKhWys7NbnZ+bm4uuXbuiW7duAJo+VK89pHKzV+xuLiScnJwsvuzr9SWEaFGYXV2wOTs7Izk5Gdu2bUNERATeeusthIaGIi8vT3bfbfV5NVdX1xYxX758GQBw5513Ii8vD6+++ipqa2sRGxuLhx9+WHZMRNbgCCdhs4iRwc9bi7iB42xy8UfqfLzdXaDXdGm6qd0BAHq1uzTNGt9S0ul0GD9+PN555x3U1taazSspKcGmTZswY8YM6cO3e/fuKC4ultqcOHECNTU10vPmc2CuHllo9p///Mesj3379sHb2xuBgYGtLttkMrUoGlxdXVtddmv27dsnPW5oaEBGRgbCwprOX4uIiEB6erpZEZGeng61Wo0ePZqGxFUqFYYPH46lS5ciMzMTbm5u2Lp1a6t9ubm53TCuiIgI7Nmzx2xaeno6+vbt26Gf5tdoNJgxYwbWrVuHzz77DFu2bMH58+fb/Xoia3OEk7BZxBDdItauXYu6ujpMnDgRP/74IwoKCpCUlITx48ejR48eZifejhkzBmvXrsWhQ4dw8OBBPPXUU2YjB3q9Hh4eHkhKSkJpaSmMxiuHwOrr6/HEE08gOzsb27Ztw5IlSzBv3jzpfJgxY8bgo48+wu7du3HkyBHMnj27xYd7cHAwdu7ciZKSkhse3nn77bexdetW5Obm4plnnkFFRQUef/xxAMDcuXNRUFCA+fPnIzc3F19//TWWLFmCRYsWwcnJCfv378eyZctw8OBBnDlzBl9++SXOnTt33XOHgoODsX//fuTn5+PXX3+VRk6utnjxYuzcuROvvvoqjh8/jo0bN2Lt2rV49tlnb7CFrli9ejU2b96M3NxcHD9+HJ9//jkMBoPZj+kREQDRSRmNRgFAGI1Ge4dCnUhtba3Izs4WtbW1Flle1cVLIv3kr6Lq4iWLLO9G8vPzRVxcnDAYDMLV1VUEBQWJ+fPni19//dWsXVFRkZgwYYLw8vISffr0Ed9//73QarViw4YNUpt169aJoKAg4eTkJEaOHCmEEGL27NnigQceEC+//LLQ6XTC29tb/OEPfxAXL16UXmc0GkVsbKzQaDQiKChIJCQkiKioKLFkyRKpzTfffCN69+4tXFxcRK9evVpdl7y8PAFAfPLJJ2LIkCHCzc1NhIeHi507d5q1S01NFYMHDxZubm7CYDCIP//5z+LSpaZ8Z2dni4kTJ4ru3bsLd3d30bdvX/HWW29Jr21en2bHjh0TQ4cOFR4eHgKAyMvLE7t27RIAREVFhdTuiy++EBEREcLV1VX07NlT/POf/zSLqVevXmL16tVm067OwQcffCAGDBggvLy8hEajEWPHjhWHDh1qNQ/2ZOn9gUiIjn1+89pJRB3Q2a+ddLPa8zP9lpKfn4+QkBBkZmZiwIABVu+PWuL+QNbQkc9vHk4iIiIiRWIRQ0RERIrEH7sjIou5+mKJ1hYcHNzqV5eJ6NbBkRgiIiJSJBYxREREpEgsYoiIiEiRWMQQERGRIrGIISIiIkViEUNERESKxCKGiGwqNTUVKpUKlZWV9g5FEhcXhwcffNDeYZhpT0yOmEsiW2IRQ3SLiIuLg0qlkm46nQ6TJk3Czz//bO/QqBVvvvmm2e/ujBo1CgsXLjRrM2zYMBQXF0Or1do2OCIHwSKGyJ7qqoC83U33NjBp0iQUFxejuLgYO3fuhIuLC6ZMmWKTvh1RY2Njq1eidgRarfaGV612c3ODwWCASqWyTVBEDoZFDJE91V8A8vc03duAu7s7DAYDDAYDBgwYgD//+c8oKCjAuXPnpDZFRUWYMWMGunbtCp1OhwceeAD5+fnS/ObDHP/7v/8Lf39/6HQ6PPPMM7h06ZLUpq6uDs8//zyCgoLg7u6OPn36YP369WaxZGRkYNCgQfD09MSwYcNw7NgxaV58fDwGDBiAf/3rX+jZsye8vb3x9NNPo7GxEStWrIDBYIBer8c//vEPs2WuWrUK/fv3h5eXF4KCgjB37lxUV1dL8xMSEuDj44Nvv/0WERERcHd3xy+//NIiTxkZGa0uv1l+fj5UKhU2b96MYcOGoUuXLujXrx9SU1PN2qWlpeGuu+6Cu7s7/P398cILL6ChoUGa/8UXX6B///7w8PCATqfDuHHjcOHCBbM8Nz9OS0vDm2++KY2k5efnt3o4acuWLejXrx/c3d0RHByMlStXmsUUHByMZcuW4fHHH4darUbPnj3xwQcfSPPr6+sxb948+Pv7o0uXLggODsby5ctbzQORvbGIIbpFVVdXY9OmTejduzd0Oh0AoKamBqNHj4a3tzd+/PFH7NmzB97e3pg0aRLq6+ul1+7atQunTp3Crl27sHHjRiQkJJgd+vjd736HzZs3Y82aNcjJycF7770Hb29vs/5feuklrFy5EgcPHoSLiwsef/xxs/mnTp3Ctm3bkJSUhE8//RT/+te/cN9996GwsBBpaWl4/fXX8de//hX79u2TXuPk5IQ1a9bgyJEj2LhxI1JSUvD888+bLbempgbLly/H//3f/+Ho0aPQ6/Vm81NTUzF27FgsXboUL730Ups5fO6557B48WJkZmZi2LBhmDp1KsrLywE0FYP33nsvBg8ejP/85z949913sX79evz9738HABQXF+PRRx/F448/jpycHKSmpmLatGmtXkrhzTffRExMDObMmSONpAUFBbVol5GRgdjYWPzmN7/B4cOHER8fj7/97W8tLgexcuVKDBo0CJmZmZg7dy6efvpp5ObmAgDWrFmDb775BomJiTh27Bg+/vhjBAcHt5kHIrsRnZTRaBQAhNFotHco1InU1taK7OxsUVtbK38hF01CmIqbbkWZQqQsa7pvnnbRZKlwzcyePVs4OzsLLy8v4eXlJQAIf39/kZGRIbVZv369CA0NFZcvX5am1dXVCQ8PD7F9+3ZpOb169RINDQ1Sm0ceeUTMmDFDCCHEsWPHBACRnJzcahy7du0SAMSOHTukad99950AIOV1yZIlwtPTU5hMV3IxceJEERwcLBobG6VpoaGhYvny5ddd58TERKHT6aTnGzZsEABEVlZWi9w88MAD4quvvhJqtVp88skn112mEELk5eUJAOK1116Tpl26dEkEBgaK119/XQghxF/+8pcWuXz77beFt7e3aGxsFBkZGQKAyM/Pb7WP5piajRw5Uvzxj380a9Ocy4qKCiGEEI899pgYP368WZvnnntORERESM979eolfvvb30rPL1++LPR6vXj33XeFEELMnz9fjBkzxizu67HI/kB0jY58fnd4JObHH3/E/fffj4CAAKhUKnz11VfXFkWIj49HQEAAPDw8MGrUKBw9etSsTV1dHebPn49u3brBy8sLU6dORWFhoVmbiooKzJo1C1qtFlqtFrNmzeIZ+NQ5nM0CDm5ouh3b1jTt2LYr085mWa3r0aNHIysrC1lZWdi/fz8mTJiAyZMnS4dUMjIycPLkSajVanh7e8Pb2xu+vr64ePEiTp06JS2nX79+cHZ2lp77+/ujrKwMAJCVlQVnZ2eMHDmyzVjuuOMOs9cDkJYBNB32UKvV0nM/Pz9ERETAycnJbNrVr9m1axfGjx+PHj16QK1W43e/+x3Ky8ulQzRA03kkV/fdbP/+/Zg+fTo2btyIRx99tM3Ym8XExEiPXVxcMGjQIOTk5AAAcnJyEBMTY3a+yvDhw1FdXY3CwkJERUVh7Nix6N+/Px555BGsW7cOFRUV7er3enJycjB8+HCzacOHD8eJEyfQ2NgoTbt6/VUqFQwGg5THuLg4ZGVlITQ0FAsWLMAPP/xwUzERWVOHi5gLFy4gKioKa9eubXX+ihUrsGrVKqxduxYHDhyAwWDA+PHjUVV15cTFhQsXYuvWrdi8eTP27NmD6upqTJkyxWwne+yxx5CVlYWkpCQkJSUhKysLs2bNkrGKRA4mYAAw6PdNt9DJTdNCJ1+ZFjDAal17eXmhd+/e6N27N+666y6sX78eFy5cwLp16wAAly9fxsCBA6VCp/l2/PhxPPbYY9JyXF1dzZarUqmkE2Q9PDzaFcvVy2j+oL/6JNvW+mir319++QX33nsvIiMjsWXLFmRkZODtt98GALPzdTw8PFo9Efb2229HWFgY/vWvf5kdOuuo5mULIVr0I/57qEilUsHZ2RnJycnYtm0bIiIi8NZbbyE0NBR5eXmy+26rz6u1lcc777wTeXl5ePXVV1FbW4vY2Fg8/PDDsmMisqYOFzGTJ0/G3//+d0ybNq3FPCEE3njjDbz00kuYNm0aIiMjsXHjRtTU1OCTTz4BABiNRqxfvx4rV67EuHHjEB0djY8//hiHDx/Gjh07ADT9N5GUlIT/+7//Q0xMDGJiYrBu3Tp8++23Zif/ESmSuxpQG67cAPPn7uq2X29BKpUKTk5OqK2tBdD0AXbixAno9Xqp2Gm+tfdrvP3798fly5eRlpZmzdBbOHjwIBoaGrBy5UoMHToUffv2xdmzZ9v9+m7duiElJQWnTp3CjBkzzAqf67n6fJyGhgZkZGQgLCwMABAREYH09HSzIiI9PR1qtRo9evQA0JT/4cOHY+nSpcjMzISbmxu2bt3aal9ubm5m/+i1JiIiAnv27DGblp6ejr59+5qNnN2IRqPBjBkzsG7dOnz22WfYsmULzp8/3+7XE9mKRU/szcvLQ0lJCSZMmCBNc3d3x8iRI5Geng6gabj60qVLZm0CAgIQGRkptdm7dy+0Wi2GDBkitRk6dCi0Wq3U5lp1dXUwmUxmNyIyV1dXh5KSEpSUlCAnJwfz589HdXU17r//fgDAzJkz0a1bNzzwwAPYvXs38vLykJaWhj/+8Y8tDvleT3BwMGbPno3HH38cX331FfLy8pCamorExERrrhpuv/12NDQ04K233sLp06fx0Ucf4b333uvQMvR6PVJSUpCbm4tHH33U7JtErXn77bexdetW5Obm4plnnkFFRYV0gvLcuXNRUFCA+fPnIzc3F19//TWWLFmCRYsWwcnJCfv378eyZctw8OBBnDlzBl9++SXOnTuH8PDwVvsKDg7G/v37kZ+fj19//bXVr4YvXrwYO3fuxKuvvorjx49j48aNWLt2LZ599tl252D16tXYvHkzcnNzcfz4cXz++ecwGAw3/Lo3kT1YtIgpKSkB0HSc+mp+fn7SvJKSEri5uaFr165ttrn2GwNA0xtMc5trLV++XDp/RqvVtnrmPpHDcfMCgu9uureBpKQk+Pv7w9/fH0OGDMGBAwfw+eefY9SoUQAAT09P/Pjjj+jZsyemTZuG8PBwPP7446itrYVGo2l3P++++y4efvhhzJ07F2FhYZgzZ47ZeSnWMGDAAKxatQqvv/46IiMjsWnTJllfDTYYDEhJScHhw4cxc+bMNkc/XnvtNbz++uuIiorC7t278fXXX6Nbt24AgB49euD777/HTz/9hKioKDz11FN44okn8Ne//hVA02jHjz/+iHvvvRd9+/bFX//6V6xcuRKTJ09uta9nn30Wzs7OiIiIQPfu3XHmzJkWbe68804kJiZi8+bNiIyMxMsvv4xXXnkFcXFx7V5/b29vvP766xg0aBAGDx6M/Px8fP/992bnIhE5CpVo7YBpe1+sUmHr1q3Sbxmkp6dj+PDhOHv2rHSiHgDMmTMHBQUFSEpKwieffILf//73qKurM1vW+PHjcfvtt+O9997DsmXLsHHjxhaHjvr06YMnnngCL7zwQotY6urqzJZpMpkQFBQEo9HYoTdforZcvHgReXl5CAkJQZcuXewdDtlJfn4+QkJCkJmZiQEDBtg7HLvh/kDWYDKZoNVq2/X5bdHS2mBoOr5/7WhJWVmZNDpjMBhQX1/f4iz8a9uUlpa2WP65c+dajPI0c3d3h0ajMbsRERFR52XRIiYkJAQGgwHJycnStPr6eqSlpWHYsGEAgIEDB8LV1dWsTXFxMY4cOSK1iYmJgdFoxE8//SS12b9/P4xGo9SGiIiIbm0uHX1BdXU1Tp48KT3Py8tDVlYWfH190bNnTyxcuBDLli1Dnz590KdPHyxbtgyenp7S1zO1Wi2eeOIJLF68GDqdDr6+vnj22WfRv39/jBs3DgAQHh6OSZMmYc6cOXj//fcBAE8++SSmTJmC0NBQS6w3EZFswcHBrX51mYhsq8NFzMGDBzF69Gjp+aJFiwAAs2fPRkJCAp5//nnU1tZi7ty5qKiowJAhQ/DDDz+Y/WjV6tWr4eLigtjYWNTW1mLs2LFISEgw+wrgpk2bsGDBAulbTFOnTr3ub9MQERHRreemTux1ZB05MYiovXgiI9EV3B/IGux2Yi8RERGRrbCIISIiIkViEUNERESKxCKGiIiIFIlFDBFdl0qlwldffdVmm7i4OOlXu9sjPz8fKpUKWVlZNxXbzUhISGjXtYDas/5EZD8sYohuER0tNoCmH6JsvpbP9YqPN998EwkJCZYJ0kZmzJiB48ePS8/j4+NbvXzA1etPRI6nw78TQ0SWc+HSBWSXZyNCFwEvV9tcBLIjmi8l0hatVmuDSCzLw8MDHh4eN2zXnvUnIvvhSAyRHdVcqsGBkgOouVRj875HjRqFBQsW4Pnnn4evry8MBgPi4+PN2lx9OCUkJAQAEB0dDZVKJV35+toRnqSkJNx9993w8fGBTqfDlClTcOrUqQ7FFhwcjFdffRWPPfYYvL29ERAQgLfeesuszZkzZ/DAAw/A29sbGo0GsbGxZtdc+89//oPRo0dDrVZDo9Fg4MCBOHjwIADzw0kJCQlYunQp/vOf/0ClUkGlUkkjS9ceTjp8+DDGjBkDDw8P6HQ6PPnkk6iurpbmN+fif//3f+Hv7w+dTodnnnkGly5dktq888476NOnD7p06QI/Pz88/PDDHcoNEV3BIoboFrZx40Z4eXlh//79WLFiBV555RWz65pdrflaZjt27EBxcTG+/PLLVttduHABixYtwoEDB7Bz5044OTnhoYcewuXLlzsU2z//+U/ccccdOHToEF588UX86U9/kmITQuDBBx/E+fPnkZaWhuTkZJw6dQozZsyQXj9z5kwEBgbiwIEDyMjIwAsvvABXV9cW/cyYMQOLFy9Gv379UFxcjOLiYrPlNKupqcGkSZPQtWtXHDhwAJ9//jl27NiBefPmmbXbtWsXTp06hV27dmHjxo1ISEiQiqKDBw9iwYIFeOWVV3Ds2DEkJSXhnnvu6VBeiOgKHk6SobTaiG3HDmBy6GD4eStvKJ3s68KlC9LIy7nac2b3AODp6mmzQ0t33HEHlixZAgDo06cP1q5di507d2L8+PEt2nbv3h0AoNPp2jzMMn36dLPn69evh16vR3Z2NiIjI9sd2/Dhw/HCCy8AAPr27Yt///vfWL16NcaPH48dO3bg559/Rl5eHoKCggAAH330Efr164cDBw5g8ODBOHPmDJ577jmEhYVJ69caDw8PeHt7w8XFpc312rRpE2pra/Hhhx/Cy6tp+6xduxb3338/Xn/9dfj5+QEAunbtirVr18LZ2RlhYWG47777sHPnTsyZMwdnzpyBl5cXpkyZArVajV69eiE6OrrdOSFyJKXlRUg7tAUj75wOP10Pu8TAkRgZztdUYWf+XpyvqbJ3KKRA2eXZ+Pz45/j8+OdILUgFAKQWpErTssuzbRbLHXfcYfbc398fZWVlN7XMU6dO4bHHHsNtt90GjUYjHYY6c+ZMh5YTExPT4nlOTg4AICcnB0FBQVIBAwARERHw8fGR2ixatAh/+MMfMG7cOLz22msdPqR1rZycHERFRUkFDNBUaF2+fBnHjh2TpvXr18/sOnBX53T8+PHo1asXbrvtNsyaNQubNm1CTY3tDyUSWUKlqQyZhSmoNN3ce8bNYBFDZGMRugg80vcRPNL3EYwKGgUAGBU0SpoWoYuwWSzXHl5RqVQdPuxzrfvvvx/l5eVYt24d9u/fj/379wMA6uvrb2q5zfEBTYeTmh9f7erp8fHxOHr0KO677z6kpKQgIiICW7duld339fq8Oi6g7Zyq1WocOnQIn376Kfz9/fHyyy8jKioKlZWVsuMiupXxcFI7lVYbpZGXk+Vnze4BwNdTzUNL1C5erl4tDhd19+iO7p7d7RRR+7i5uQEAGhsbr9umvLwcOTk5eP/99zFixAgAwJ49e2T1t2/fvhbPmw8NRURE4MyZMygoKJBGY7Kzs2E0GhEeHi69pm/fvujbty/+9Kc/4dFHH8WGDRvw0EMPtbpuba1Xc58bN27EhQsXpNGYf//733ByckLfvn3bvV4uLi4YN24cxo0bhyVLlsDHxwcpKSmYNm1au5dBZC+l5UXSyEt+SY7ZPQD4aPQ2PbTEIqadth07gJ35e82mJWZvlx6PDY5B3MBxtg6LyGb0ej08PDyQlJSEwMBAdOnSpcXXq7t27QqdTocPPvgA/v7+OHPmjHReS0f9+9//xooVK/Dggw8iOTkZn3/+Ob777jsAwLhx43DHHXdg5syZeOONN9DQ0IC5c+di5MiRGDRoEGpra/Hcc8/h4YcfRkhICAoLC3HgwIEW5+s0Cw4ORl5eHrKyshAYGAi1Wg13d3ezNjNnzsSSJUswe/ZsxMfH49y5c5g/fz5mzZolnQ9zI99++y1Onz6Ne+65B127dsX333+Py5cvIzQ0VFaOiGwt7dAWZBammE1LzU0EcpseRweOQez4BTaLh0VMO00OHYwhQU3/BZ4sP4vE7O2IjZiI3roAAE0jMUQd5enqicGGwfB09bR3KDfk4uKCNWvW4JVXXsHLL7+MESNGIDU11ayNk5MTNm/ejAULFiAyMhKhoaFYs2aN9HXsjli8eDEyMjKwdOlSqNVqrFy5EhMnTgRw5avP8+fPxz333AMnJydMmjRJ+hq2s7MzysvL8bvf/Q6lpaXo1q0bpk2bhqVLl7ba1/Tp0/Hll19i9OjRqKysxIYNGxAXF2fWxtPTE9u3b8cf//hHDB48GJ6enpg+fTpWrVrV7nXy8fHBl19+ifj4eFy8eBF9+vTBp59+in79+nU4P0T2MPLO6Yjq3TTKml+Sg9TcRIwKi0WwoWkE1Eejt2k8KiGEsGmPNmIymaDVamE0GqHRaCy67D152Xhlz1t4+e75uDvE+ucvOMIZ4Epl6dxdvHgReXl5CAkJQZcuXSwQoeO61FCPqpoKqD27wtXFzaZ9BwcHY+HChVi4cKFN+7UUe+bOlqyxP/D9Tj5b5q60vAhf/fg2Tp7Pwh/G/AOhIZb7ll1HPr95Yq8MproLqGwohanugk36c4QzwJWKuZOvsbEBNfVVaGxssHcoisPcycd9Vj5b5q7SVIZj5RlovNz2uWTWxsNJMmg8vOHj4geNh7e9QyEiIrILZ5UzbtcNsPkhpKuxiGmnq7+dVFFTBT/PAFTUVCGnrBCA5b+d5GhngCsJcyffpYZ6afSg7lKt2T0AODu72OTwSH5+vtX7sDRHyZ0ScZ+Vz5a5u7YvFyc3hBgiUWkqQ6WpzC7biefEtFNCxo4W3066mqW/nZSYvKbFGeBXs/UZ4Epizdx19nNizptKUVN//R9x9HRTw1fTvm/i3GpuxdxZan/g+518tsydrfrqyOc3i5h2uvZ3Ylr7dpI1R2JaOwOc/5m0zpq5a37TDg4ObtdVkJXm2tGEqosVUHfpCnfXpnXlaML13Yq5q62tRX5+/k0XMXy/k8+WubNVXx35/ObhpHby89a2KFJ66wIQrg+0Tn+6HuZ/DLlAsCHcomeAd1bWzF3zr7HW1NR0yiLG1cXN7IO26mIF3F090MXd8b8Cbm+3Yu6aL5nQ2oU1O4Lvd/LZMneOuJ1YxBB1gLOzM3x8fKRr4Xh6el73p+iVrq6+Dg2XGlFXVwcIfpGxIzp77oQQqKmpQVlZGXx8fMyuFUVkSyxiZPD1VGNscIzNfuDOR6NHdOAYu54BrlTWyF3zlY5v9kKJjq6xsQEX62tQ7VYPZ2e+VXTErZI7Hx+fNq/8LWuZfL+TzZa5c5TtxHNiiGRqbGzEpUuX7B0GkV24urpyBIasgufEENmAs7Mz38SJiOyo8x2sJSIiolsCixgiIiJSJBYxREREpEgsYoiIiEiRWMQQERGRIrGIISIiIkViEUNERESKxCKGiIiIFIlFDBERESkSixgiIiJSJBYxREREpEgsYoiIiEiRWMQQERGRIrGIISIiIkViEUNERESKxCKGiIiIFIlFDBERESkSixgiIiJSJBYxREREpEgsYoiIiEiRWMQQERGRIrGIISIiIkViEUNERESKxCKGiIiIFIlFDBERESkSixgiIiJSJBYxREREpEgsYoiIiEiRWMQQERGRIrGIISIiIkViEUNERESKxCJGhtJqIxIydqC02mjvUIiIiOyitLwIiclrUFpeZLcYWMTIcL6mCjvz9+J8TZW9QyEiIrKLSlMZMgtTUGkqs1sMLGKIiIhIkVzsHYBSlFYbpZGXk+Vnze4BwNdTDT9vrV1iIyIisoXS8iJp5CW/JMfsHgB8NHr46XrYLB4WMe207dgB7MzfazYtMXu79HhscAziBo6zdVhEREQ2k3ZoCzILU8ympeYmArlNj6MDxyB2/AKbxcMipp0mhw7GkKAwAE0jMInZ2xEbMRG9dQEAmkZiiIiIOrORd05HVO8RAJpGYFJzEzEqLBbBhnAATSMxtsQipp38vLUtDhf11gUgXB9op4iIiIhsy0/Xw/xwUS4QbAhHaEi0XeLhib1ERESkSCxiZPD1VGNscAwPIRER0S3LR6NHdOAYmx9CuppKCCHs1rsVmUwmaLVaGI1GaDQae4dDRERE7dCRz2+OxBAREZEisYghIiIiRWIRQ0RERIrEIoaIiIgUyeJFTHx8PFQqldnNYDBI84UQiI+PR0BAADw8PDBq1CgcPXrUbBl1dXWYP38+unXrBi8vL0ydOhWFhYWWDpWIiIgUzCojMf369UNxcbF0O3z4sDRvxYoVWLVqFdauXYsDBw7AYDBg/PjxqKq6ckXohQsXYuvWrdi8eTP27NmD6upqTJkyBY2NjdYIl4iIiBTIKr/Y6+LiYjb60kwIgTfeeAMvvfQSpk2bBgDYuHEj/Pz88Mknn+B//ud/YDQasX79enz00UcYN67pWkQff/wxgoKCsGPHDkycONEaIRMREZHCWGUk5sSJEwgICEBISAh+85vf4PTp0wCAvLw8lJSUYMKECVJbd3d3jBw5Eunp6QCAjIwMXLp0yaxNQEAAIiMjpTatqaurg8lkMrtZS2m1EQkZO1BabbRaH2b9lRchMXkNSsuLbNJfZ8LcycfcycfcycfcyWfL3DnKdrJ4ETNkyBB8+OGH2L59O9atW4eSkhIMGzYM5eXlKCkpAQD4+fmZvcbPz0+aV1JSAjc3N3Tt2vW6bVqzfPlyaLVa6RYUFGThNbvifE0Vdubvxfmaqhs3toBKUxkyC1Oky59T+zF38jF38jF38jF38tkyd46ynSxexEyePBnTp09H//79MW7cOHz33XcAmg4bNVOpVGavEUK0mHatG7V58cUXYTQapVtBQcFNrAURERE5OqtfxdrLywv9+/fHiRMn8OCDDwJoGm3x9/eX2pSVlUmjMwaDAfX19aioqDAbjSkrK8OwYcOu24+7uzvc3d2tsxJoOoTUPPJysvys2T3QdD2la69yfVP9lRdJFW5+SY7ZPdB0zQqzK4mShLmTj7mTj7mTj7mTz5a5c8TtZPUipq6uDjk5ORgxYgRCQkJgMBiQnJyM6Oimy3bX19cjLS0Nr7/+OgBg4MCBcHV1RXJyMmJjYwEAxcXFOHLkCFasWGHtcK9r27ED2Jm/12xaYvZ26fHY4BjEDRxnsf7SDm1BZmGK2bTU3EQgt+lxdOAYxI5fYLH+OhPmTj7mTj7mTj7mTj5b5s4Rt5PFLwD57LPP4v7770fPnj1RVlaGv//970hLS8Phw4fRq1cvvP7661i+fDk2bNiAPn36YNmyZUhNTcWxY8egVjddFfrpp5/Gt99+i4SEBPj6+uLZZ59FeXk5MjIy4Ozs3K44LH0ByGtHYhKztyM2YiJ66wIAWH8kJjU3EaPCYhFsCAfA/0zawtzJx9zJx9zJx9zJZ8vc2aqvjnx+W3wkprCwEI8++ih+/fVXdO/eHUOHDsW+ffvQq1cvAMDzzz+P2tpazJ07FxUVFRgyZAh++OEHqYABgNWrV8PFxQWxsbGora3F2LFjkZCQ0O4Cxhr8vLUtipTeugCE6wOt05+uh/kfQy4QbAhHaEi0VfrrTJg7+Zg7+Zg7+Zg7+WyZO0fcThYvYjZv3tzmfJVKhfj4eMTHx1+3TZcuXfDWW2/hrbfesnB0RERE1Fnw2kky+HqqMTY4Br6e6hs3tgAfjR7RgWPgo9HbpL/OhLmTj7mTj7mTj7mTz5a5c5TtZPFzYhyFpc+JISIiIuvryOc3R2KIiIhIkVjEEBERkSKxiCEiIiJFYhFDREREisQihoiIiBSJRQwREREpEosYIiIiUiQWMURERKRILGKIiIhIkVjEEBERkSKxiCEiIiJFYhFDREREisQihoiIiBSJRQwREREpEosYIiIiUiQWMURERKRILGKIiIhIkVjEEBERkSKxiCEiIiJFYhFDREREisQihoiIiBSJRYwMpdVGJGTsQGm10d6hEBER2UVpeRESk9egtLzIbjGwiJHhfE0VdubvxfmaKnuHQkREZBeVpjJkFqag0lRmtxhYxBAREZEiudg7AKUorTZKIy8ny8+a3QOAr6caft5au8RGRERkC6XlRdLIS35Jjtk9APho9PDT9bBZPCxi2mnbsQPYmb/XbFpi9nbp8djgGMQNHGfrsIiIiGwm7dAWZBammE1LzU0EcpseRweOQez4BTaLh0VMO00OHYwhQWEAmkZgErO3IzZiInrrAgA0jcQQERF1ZiPvnI6o3iMANI3ApOYmYlRYLIIN4QCaRmJsiUVMO/l5a1scLuqtC0C4PtBOEREREdmWn66H+eGiXCDYEI7QkGi7xMMTe4mIiEiRWMTI4OupxtjgGB5CIiKiW5aPRo/owDE2P4R0NZUQQtitdysymUzQarUwGo3QaDT2DoeIiIjaoSOf3xyJISIiIkViEUNERESKxCKGiIiIFIlFDBERESkSixgiIiJSJBYxREREpEgsYoiIiEiRWMQQERGRIrGIISIiIkViEUNERESKxCKGiIiIFIlFDBERESkSixgiIiJSJBYxREREpEgsYoiIiEiRWMQQERGRIrGIISIiIkViEUNERESKxCJGhtJqIxIydqC02mib/sqLkJi8BqXlRTbprzNh7uRj7uRj7uRj7uSzZe4cZTuxiJHhfE0VdubvxfmaKpv0V2kqQ2ZhCipNZTbprzNh7uRj7uRj7uRj7uSzZe4cZTuxiCEiIiJFcrF3AEpRWm2URl5Olp81uwcAX081/Ly1luuvvEiqcPNLcszuAcBHo4efrofF+utMmDv5mDv5mDv5mDv5bJk7R9xOKiGEsGmPNmIymaDVamE0GqHRaG56eQkZO7Azf+91548NjkHcwHE33U+zxOQ1yCxMue786MAxiB2/wGL9dSbMnXzMnXzMnXzMnXy2zJ2t+urI5zeLmHa6diQmMXs7YiMmorcuAID1R2JScxMxKiwWwYZwAPzPpC3MnXzMnXzMnXzMnXy2zJ2t+urI5zcPJ7WTn7e2RZHSWxeAcH2gdfrT9TD/Y8gFgg3hCA2Jtkp/nQlzJx9zJx9zJx9zJ58tc+eI24kn9hIREZEisYiRwddTjbHBMfD1VNukPx+NHtGBY+Cj0dukv86EuZOPuZOPuZOPuZPPlrlzlO3Ec2KIiIjIYXTk85sjMURERKRILGKIiIhIkVjEEBERkSKxiCEiIiJFYhFDREREisQihoiIiBSJRQwREREpEosYR2IqBva+3XRvC3VVQN7upntH4GjxtMVasSopB0REdsYixpFcOAfkftd0bwv1F4D8PU33jsDR4mmLtWJVUg7kaqtQYxFHRB3AIoaIbKutQu1WKOJuhIUcUbs5fBHzzjvvICQkBF26dMHAgQOxe/due4eEb7J/woiNs/BN9k83vzBTMVD8c9PtXG7TtHO5V6aZilFaXoTE5DUoLS+6+f7qqoCqkis3wPx5O944HS0ee8R6rugwfjhzEOeKDt98rFbOgVxt5c6ieVWgG63/TeWnrULOgQoca/0NKOVvyxHjtHVMOacz8OqHv0XO6Qyb9NcaF7v13A6fffYZFi5ciHfeeQfDhw/H+++/j8mTJyM7Oxs9e/a0W1w/lx5HZWMOfi49jqkRd93cwo5+2XQI6WoZCVceh92HSsMwZBamIKr3CPPLoMtxNqvpDfJqx7ZdeRx8NxAyos1FVJrKHCqetlgr1lpjCTJqChCW+y1QfPDmYrVyDuRqK3cdzmtd1ZUP5asLNQCor266d/NuOQ8A3LwAd9tcbLW9brT+Fv27u1pzgdOtj91zYq11tFruLMwR47R1TIVlJ3H44hEMLTuJ8NsGWr2/1jh0EbNq1So88cQT+MMf/gAAeOONN7B9+3a8++67WL58uZ2js5B+04Dg/35AncttKmAGxgHdw5qmeXUHykuu9+qOCxjQ9AYINH1QHNsGhE4G1IamaW5elutLifG05apY646nAcV7URc0DOg7smm+3FiVlAO52irUKn9puvfp1XIeYLcizqbaKvIAhyzkiByBwxYx9fX1yMjIwAsvvGA2fcKECUhPT7d5PN9k/4SfS48DAPafzZDu/76raf4dfn3ljcpo/JtuV+sehlI3HSpNZcDFEuSX5ACAdA80XQZdVqXtrm75Zqg2XPnAvI7S8qKmeK6Kw57x2CPW0mqTtNyC6vMAgF+qz+Pyr8VXlivng8YKOZCrrdxVVJ0DINBVre94Xtsq1K4diXHQIu5Gf1eXxWU4qZyuO7/N/LRV5DXUAQHRQM8hdi9wrLZvWev9xcIcMU5bx5RzOgOFZScBALkF+83uASBQ39umozIOW8T8+uuvaGxshJ+fn9l0Pz8/lJS0HJmoq6tDXV2d9NxkMlk0nn8eeAuVjTlm0/LrdiM/r+kcne1nwjE14iOL9Zd2aAsyC1PMpqXmJgL/PW0mOnAMYscvsFh/SounLdaK9erlOl++BC8AqSe/RePp7Te1XEfSVu7OXzoHCMDXrXuLecAN1r+jhZqdiri23OjvytPZGzWN1ded32Z+2iryCvYDZzOBsuwr7e00UmWLfcuSy7U0R4zT1jF9sWc1Dl88YjZtd0UKdlc0xdC/SyT+dtvHFuvvRhy2iGmmUqnMngshWkwDgOXLl2Pp0qVWi+O5wfPNRmLy63Yj2H0EhgQ0VZx3+PW9+U68ugNh9wFe3THyzumI6t30xpRfkoPU3ESMCotFsCEcQFN1fdPcvJreANvxn66jxdMWa8V69XJ/KcxEeu4m3NN3OnoFRt/Ucs1YKAdytZW7a0dirPI34MBu9Hd17UhMh/LTVpF3+xggaEjTNDuPVNli33Lkvy1HjNPWMT18958w9KqRmN0VKRjRdQzC/vs3GqjvbdH+bsRhi5hu3brB2dm5xahLWVlZi9EZAHjxxRexaNEi6bnJZEJQUJDF4pkacZd0uOjvu4D8vN0YEjAQfx39W4v1AY0/EPMMAMAPMB8CzAWCDeEIDYm2XH/u6nb/B+en6+FQ8bTFWrFeu9xdJ79Br8Boh8yBXB3Kndy8tlWo2bmIa0uH/64stY840OFGW+1bVnl/sQBHjNPWMYXfNtDscNHuihSEBQ3B+KEzrNLfjTjsV6zd3NwwcOBAJCcnm01PTk7GsGHDWrR3d3eHRqMxuxGRA2ou1Fo7j6OtebcKBy7kiByNw47EAMCiRYswa9YsDBo0CDExMfjggw9w5swZPPXUU3aN6w6/vth+Jtwyh5DawUejR3TgGIcZUnW0eNpirViVlAO52lrHW2H923Kj9b+p/LQ1GudABc6tvm85Ypy2jilQ3xv9u0Ta/BDS1VRCCGG33tvhnXfewYoVK1BcXIzIyEisXr0a99xzzw1fZzKZoNVqYTQaOSpDRESkEB35/Hb4IkYuFjFERETK05HPb4c9J4aIiIioLSxiiIiISJFYxBAREZEisYghIiIiRWIRQ0RERIrEIoaIiIgUiUUMERERKRKLGCIiIlIkFjFERESkSA597aSb0fxDxCaTyc6REBERUXs1f26354ICnbaIqaqqAgAEBQXZORIiIiLqqKqqKmi12jbbdNprJ12+fBlnz56FWq2GSqWy6LJNJhOCgoJQUFDA6zIpCLebMnG7KRO3mzI5wnYTQqCqqgoBAQFwcmr7rJdOOxLj5OSEwMBAq/ah0Wi4cyoQt5sycbspE7ebMtl7u91oBKYZT+wlIiIiRWIRQ0RERIrEIkYGd3d3LFmyBO7u7vYOhTqA202ZuN2UidtNmZS23Trtib1ERETUuXEkhoiIiBSJRQwREREpEosYIiIiUiQWMURERKRILGI66J133kFISAi6dOmCgQMHYvfu3fYO6ZYWHx8PlUpldjMYDNJ8IQTi4+MREBAADw8PjBo1CkePHjVbRl1dHebPn49u3brBy8sLU6dORWFhoa1XpVP78ccfcf/99yMgIAAqlQpfffWV2XxLbaeKigrMmjULWq0WWq0Ws2bNQmVlpZXXrvO60XaLi4trsf8NHTrUrA23m20tX74cgwcPhlqthl6vx4MPPohjx46ZtelM+xuLmA747LPPsHDhQrz00kvIzMzEiBEjMHnyZJw5c8beod3S+vXrh+LiYul2+PBhad6KFSuwatUqrF27FgcOHIDBYMD48eOla2sBwMKFC7F161Zs3rwZe/bsQXV1NaZMmYLGxkZ7rE6ndOHCBURFRWHt2rWtzrfUdnrssceQlZWFpKQkJCUlISsrC7NmzbL6+nVWN9puADBp0iSz/e/77783m8/tZltpaWl45plnsG/fPiQnJ6OhoQETJkzAhQsXpDadan8T1G533XWXeOqpp8ymhYWFiRdeeMFOEdGSJUtEVFRUq/MuX74sDAaDeO2116RpFy9eFFqtVrz33ntCCCEqKyuFq6ur2Lx5s9SmqKhIODk5iaSkJKvGfqsCILZu3So9t9R2ys7OFgDEvn37pDZ79+4VAERubq6V16rzu3a7CSHE7NmzxQMPPHDd13C72V9ZWZkAINLS0oQQnW9/40hMO9XX1yMjIwMTJkwwmz5hwgSkp6fbKSoCgBMnTiAgIAAhISH4zW9+g9OnTwMA8vLyUFJSYrbN3N3dMXLkSGmbZWRk4NKlS2ZtAgICEBkZye1qI5baTnv37oVWq8WQIUOkNkOHDoVWq+W2tKLU1FTo9Xr07dsXc+bMQVlZmTSP283+jEYjAMDX1xdA59vfWMS006+//orGxkb4+fmZTffz80NJSYmdoqIhQ4bgww8/xPbt27Fu3TqUlJRg2LBhKC8vl7ZLW9uspKQEbm5u6Nq163XbkHVZajuVlJRAr9e3WL5er+e2tJLJkydj06ZNSElJwcqVK3HgwAGMGTMGdXV1ALjd7E0IgUWLFuHuu+9GZGQkgM63v3Xaq1hbi0qlMnsuhGgxjWxn8uTJ0uP+/fsjJiYGt99+OzZu3CidYChnm3G72p4ltlNr7bktrWfGjBnS48jISAwaNAi9evXCd999h2nTpl33ddxutjFv3jz8/PPP2LNnT4t5nWV/40hMO3Xr1g3Ozs4tKsyysrIWFS3Zj5eXF/r3748TJ05I31Jqa5sZDAbU19ejoqLium3Iuiy1nQwGA0pLS1ss/9y5c9yWNuLv749evXrhxIkTALjd7Gn+/Pn45ptvsGvXLgQGBkrTO9v+xiKmndzc3DBw4EAkJyebTU9OTsawYcPsFBVdq66uDjk5OfD390dISAgMBoPZNquvr0daWpq0zQYOHAhXV1ezNsXFxThy5Ai3q41YajvFxMTAaDTip59+ktrs378fRqOR29JGysvLUVBQAH9/fwDcbvYghMC8efPw5ZdfIiUlBSEhIWbzO93+ZrNTiDuBzZs3C1dXV7F+/XqRnZ0tFi5cKLy8vER+fr69Q7tlLV68WKSmporTp0+Lffv2iSlTpgi1Wi1tk9dee01otVrx5ZdfisOHD4tHH31U+Pv7C5PJJC3jqaeeEoGBgWLHjh3i0KFDYsyYMSIqKko0NDTYa7U6naqqKpGZmSkyMzMFALFq1SqRmZkpfvnlFyGE5bbTpEmTxB133CH27t0r9u7dK/r37y+mTJli8/XtLNrablVVVWLx4sUiPT1d5OXliV27domYmBjRo0cPbjc7evrpp4VWqxWpqamiuLhYutXU1EhtOtP+xiKmg95++23Rq1cv4ebmJu68807pa2tkHzNmzBD+/v7C1dVVBAQEiGnTpomjR49K8y9fviyWLFkiDAaDcHd3F/fcc484fPiw2TJqa2vFvHnzhK+vr/Dw8BBTpkwRZ86csfWqdGq7du0SAFrcZs+eLYSw3HYqLy8XM2fOFGq1WqjVajFz5kxRUVFho7XsfNrabjU1NWLChAmie/fuwtXVVfTs2VPMnj27xTbhdrOt1rYXALFhwwapTWfa31RCCGG7cR8iIiIiy+A5MURERKRILGKIiIhIkVjEEBERkSKxiCEiIiJFYhFDREREisQihoiIiBSJRQwREREpEosYIiIiUiQWMURERKRILGKIiIhIkVjEEBERkSKxiCEiIiJF+v8ScdzI+TkpgwAAAABJRU5ErkJggg==\n", + "text/plain": [ + "
" + ] + }, + "metadata": {}, + "output_type": "display_data" + } + ], + "source": [ + "plt.plot(output_pix_df.row, output_pix_df.col,linestyle='None',marker='+',label='Output positions',alpha=0.5)\n", + "plt.plot(benchmark_pix_df.row,benchmark_pix_df.col,linestyle='None',marker='+',label='Benchmark positions',alpha=0.5)\n", + "plt.plot(footprint_df.row, footprint_df.col,linestyle='None',marker='+',label='Initial positions',alpha=0.5)\n", + "\n", + "plt.legend()" + ] + }, + { + "cell_type": "markdown", + "id": "2260f813", + "metadata": {}, + "source": [ + "# There was a large offset between some Benchmark (old tess_stars2px.py) and output (TESSPoint-vectorize), but overall on average good agreement. \n", + "\n", + "tess_stars2px.py, however, had some large excursions as well - are we doing better or worse?\n", + "\n", + "# Overlplotting our initial testing footprint, it looks like we are much closer than our benchmark (e.g. all our output orange markers are covered by our input green markers, but there are a few benchmark points that are at high offset)\n", + "\n", + "Lets check this in a more systematic manner! Do a point-bypoint comparison with our Initial footprint pixel locations vs footprint pixel ->RA, DEC -> output pixel locations" + ] + }, + { + "cell_type": "code", + "execution_count": 362, + "id": "d4dc337c", + "metadata": {}, + "outputs": [], + "source": [ + "def test_radec2pix_initial_SectorCameraCCD(SectorCameraCCD):\n", + " Sector, Camera, CCD = SectorCameraCCD\n", + " \n", + " dir_testfiles='/Users/tapritc2/tessgi/tesspoint/TESSPoint_CreateTestFiles/testfiles'\n", + " fprfile=\"/Users/tapritc2/tessgi/tesspoint/TESSPoint_CreateTestFiles/footprint_input.dat\" \n", + " pixfile=dir_testfiles+\"/TEST_radec2pix_Sec{:02d}_Cam{}_CCD{}_stars2px.dat\".format(Sector,Camera,CCD)\n", + "\n", + " output_pix_df = test_radec2pix_SectorCameraCCD(SectorCameraCCD)\n", + " init_pix_df=pd.read_csv(fprfile,delimiter=' ',names=['tic','row','col'],index_col=False)\n", + " init_pix_df['index']=init_pix_df['tic']\n", + "\n", + " idx = output_pix_df.index.intersection(init_pix_df.index)\n", + " \n", + " dr = output_pix_df.loc[idx, 'row'] - init_pix_df.loc[idx, 'row']\n", + " dc = output_pix_df.loc[idx, 'col'] - init_pix_df.loc[idx, 'col']\n", + " \n", + " return idx, dr, dc, Sector, Camera, CCD" + ] + }, + { + "cell_type": "markdown", + "id": "4316f5a3", + "metadata": {}, + "source": [ + "### this is the same as the benchmark test, but comparing against our input footprint instead of our benchmark footprint\n", + "- that is, we are coparing (initial): footprint pixel location vs TESSPoint.radec2pix(tess_stars2pix.py --reverse footprint())\n", + "- not benchmark: tess_stars2px.py (tess_stars2px.py --reverse footprint()) vs TESSPoint.radec2pix(tess_stars2pix.py --reverse footprint())" + ] + }, + { + "cell_type": "code", + "execution_count": 363, + "id": "f72654d6", + "metadata": {}, + "outputs": [ + { + "name": "stderr", + "output_type": "stream", + "text": [ + "DEBUG:root:radec2pix: curVec: [[ 0.17639461 0.85315956 -0.49092129]\n", + " [ 0.17707234 0.86618747 -0.46729504]\n", + " [ 0.17747537 0.87886304 -0.44283434]\n", + " [ 0.17761066 0.8910915 -0.41762471]\n", + " [ 0.17748364 0.90278895 -0.39175461]\n", + " [ 0.17709854 0.91388195 -0.36531614]\n", + " [ 0.17645896 0.92430725 -0.33840559]\n", + " [ 0.17556838 0.9340117 -0.31112358]\n", + " [ 0.17639461 0.85315956 -0.49092129]\n", + " [ 0.14990529 0.85596884 -0.4948189 ]\n", + " [ 0.12271918 0.85827805 -0.49829589]\n", + " [ 0.09494999 0.86003087 -0.50132963]\n", + " [ 0.06671016 0.86118203 -0.50390005]\n", + " [ 0.03811166 0.86169705 -0.50598981]\n", + " [ 0.00926676 0.86155202 -0.50758472]\n", + " [-0.0197117 0.86073337 -0.50867427]\n", + " [ 0.17556838 0.9340117 -0.31112358]\n", + " [ 0.1480553 0.93795815 -0.31355084]\n", + " [ 0.11985776 0.94123389 -0.31577348]\n", + " [ 0.09108221 0.94378338 -0.31776871]\n", + " [ 0.06183594 0.94556081 -0.31951692]\n", + " [ 0.0322291 0.94653011 -0.3210016 ]\n", + " [ 0.00237563 0.9466654 -0.32220953]\n", + " [-0.02760701 0.94595149 -0.32313097]\n", + " [-0.0197117 0.86073337 -0.50867427]\n", + " [-0.02083275 0.87461804 -0.48436482]\n", + " [-0.02196542 0.88807063 -0.45918197]\n", + " [-0.02310375 0.90099938 -0.43320473]\n", + " [-0.02424219 0.91332158 -0.40651692]\n", + " [-0.02537552 0.92496305 -0.37920896]\n", + " [-0.02649873 0.93585835 -0.35137866]\n", + " [-0.02760701 0.94595149 -0.32313097]\n", + " [ 0.1766347 0.85888734 -0.48074185]\n", + " [ 0.17727858 0.87463094 -0.45121284]\n", + " [ 0.17751711 0.88974983 -0.42051506]\n", + " [ 0.17736093 0.90408506 -0.38881012]\n", + " [ 0.1768179 0.91750139 -0.35626764]\n", + " [ 0.17589454 0.92988656 -0.3230667 ]\n", + " [ 0.16494057 0.85448725 -0.49259126]\n", + " [ 0.13199101 0.85760264 -0.4970876 ]\n", + " [ 0.09810801 0.85990956 -0.5009295 ]\n", + " [ 0.06349903 0.86132008 -0.50407896]\n", + " [ 0.02837031 0.86177069 -0.50650411]\n", + " [-0.00707122 0.86122167 -0.50818032]\n", + " [ 0.16366708 0.93577883 -0.31229963]\n", + " [ 0.12947331 0.94017174 -0.31514087]\n", + " [ 0.09435725 0.94350102 -0.31765159]\n", + " [ 0.05851594 0.9456783 -0.31979437]\n", + " [ 0.02215228 0.94663724 -0.32153883]\n", + " [-0.01452247 0.94633461 -0.32286207]\n", + " [-0.02009906 0.86683794 -0.49818472]\n", + " [-0.02148064 0.88357651 -0.4677939 ]\n", + " [-0.02287387 0.89957386 -0.4361693 ]\n", + " [-0.0242684 0.91467402 -0.40346311]\n", + " [-0.0256546 0.92874045 -0.36984189]\n", + " [-0.02702334 0.94165655 -0.33548872]\n", + " [ 0.17630813 0.85321498 -0.49085603]\n", + " [ 0.17630813 0.85321498 -0.49085603]\n", + " [-0.02750064 0.9459223 -0.3232255 ]\n", + " [-0.02750064 0.9459223 -0.3232255 ]\n", + " [ 0.16521581 0.86020545 -0.48244204]\n", + " [ 0.13212247 0.86343447 -0.48685169]\n", + " [ 0.09809742 0.86583121 -0.49062532]\n", + " [ 0.0633472 0.86730806 -0.49372448]\n", + " [ 0.02807754 0.86780175 -0.4961167 ]\n", + " [-0.00750455 0.86727266 -0.49777688]\n", + " [ 0.16573187 0.87606847 -0.4528101 ]\n", + " [ 0.13228051 0.8795937 -0.45696476]\n", + " [ 0.09790109 0.88222514 -0.46053684]\n", + " [ 0.06279741 0.88387593 -0.4634866 ]\n", + " [ 0.02717395 0.88448309 -0.46578025]\n", + " [-0.00876173 0.88400698 -0.46739157]\n", + " [ 0.16586826 0.89129165 -0.42200345]\n", + " [ 0.13213066 0.89507628 -0.42588723]\n", + " [ 0.09746695 0.8979144 -0.42924343]\n", + " [ 0.06207838 0.89971941 -0.43203155]\n", + " [ 0.02616855 0.90042803 -0.43421719]\n", + " [-0.010054 0.90000012 -0.43577368]\n", + " [ 0.16563499 0.90571646 -0.39018296]\n", + " [ 0.13168118 0.90972475 -0.39377778]\n", + " [ 0.09680221 0.91274228 -0.39690157]\n", + " [ 0.06119726 0.91468221 -0.3995139 ]\n", + " [ 0.02506941 0.91548047 -0.40158066]\n", + " [-0.01137167 0.91509606 -0.40307553]\n", + " [ 0.16503925 0.9192078 -0.35751793]\n", + " [ 0.13093781 0.92340415 -0.36080475]\n", + " [ 0.09591198 0.92657356 -0.36367888]\n", + " [ 0.06015953 0.9286286 -0.36610076]\n", + " [ 0.02388337 0.92950418 -0.36803744]\n", + " [-0.01270591 0.92915829 -0.3694637 ]\n", + " [ 0.16408709 0.93165329 -0.32418755]\n", + " [ 0.12990556 0.93600145 -0.32714802]\n", + " [ 0.09480101 0.93929423 -0.32975614]\n", + " [ 0.05897056 0.94144348 -0.33197387]\n", + " [ 0.02261707 0.94238315 -0.33377009]\n", + " [-0.01404828 0.94207028 -0.33512123]]\n", + "DEBUG:root:radec2pix: curVec Shape: (96, 3)\n", + "DEBUG:root:radec2pix: curVec: [[-0.58931191 0.78491528 -0.19136217]\n", + " [-0.5988581 0.78343015 -0.16615104]\n", + " [-0.60825733 0.7812345 -0.14034129]\n", + " [-0.61743931 0.77830987 -0.11402826]\n", + " [-0.62633825 0.77464645 -0.08731132]\n", + " [-0.63489519 0.77024213 -0.06029228]\n", + " [-0.64305904 0.76510204 -0.03307471]\n", + " [-0.65078688 0.75923858 -0.00576364]\n", + " [-0.58931191 0.78491528 -0.19136217]\n", + " [-0.60748894 0.76818234 -0.20212146]\n", + " [-0.62565871 0.75050396 -0.21282617]\n", + " [-0.64371666 0.73192005 -0.22343211]\n", + " [-0.66156198 0.7124802 -0.2338968 ]\n", + " [-0.67910033 0.69224229 -0.24417894]\n", + " [-0.69624504 0.67127182 -0.25423804]\n", + " [-0.71291746 0.64964181 -0.26403449]\n", + " [-0.65078688 0.75923858 -0.00576364]\n", + " [-0.67044649 0.7418021 -0.01520361]\n", + " [-0.68997143 0.72341088 -0.02482179]\n", + " [-0.70925147 0.70410701 -0.03457846]\n", + " [-0.7281852 0.68393849 -0.04443483]\n", + " [-0.74667844 0.66296089 -0.05435222]\n", + " [-0.76464301 0.64123918 -0.06429137]\n", + " [-0.78199664 0.61884877 -0.07421222]\n", + " [-0.71291746 0.64964181 -0.26403449]\n", + " [-0.72419932 0.64702387 -0.23852767]\n", + " [-0.73512407 0.64382621 -0.21232148]\n", + " [-0.74561517 0.64003393 -0.1855117 ]\n", + " [-0.75560465 0.63563835 -0.15819451]\n", + " [-0.7650322 0.63063747 -0.13046885]\n", + " [-0.77384474 0.62503656 -0.10243842]\n", + " [-0.78199664 0.61884877 -0.07421222]\n", + " [-0.59355014 0.78429778 -0.1804861 ]\n", + " [-0.60516141 0.78200209 -0.14917238]\n", + " [-0.61648161 0.77861986 -0.11705357]\n", + " [-0.62738756 0.77412951 -0.08431108]\n", + " [-0.63777082 0.76852708 -0.05113226]\n", + " [-0.64754072 0.76182506 -0.0177084 ]\n", + " [-0.59726466 0.77773389 -0.19597176]\n", + " [-0.61955215 0.75658516 -0.20912684]\n", + " [-0.64172452 0.73405475 -0.22215597]\n", + " [-0.6635944 0.71023007 -0.23498028]\n", + " [-0.68498826 0.68521757 -0.24752367]\n", + " [-0.70574984 0.659141 -0.25971196]\n", + " [-0.65934189 0.75177742 -0.0099488 ]\n", + " [-0.6833603 0.72976039 -0.0216443 ]\n", + " [-0.70706593 0.70635046 -0.03356771]\n", + " [-0.73026848 0.68163353 -0.04564726]\n", + " [-0.75279442 0.65571211 -0.05781165]\n", + " [-0.77448382 0.62871016 -0.06998823]\n", + " [-0.71781867 0.64864575 -0.25297245]\n", + " [-0.73141512 0.64505028 -0.22122853]\n", + " [-0.74439826 0.64056842 -0.1885294 ]\n", + " [-0.75663943 0.63518162 -0.15505188]\n", + " [-0.76802757 0.62888623 -0.12097835]\n", + " [-0.77846801 0.62169524 -0.08650198]\n", + " [-0.58940678 0.7848558 -0.19131391]\n", + " [-0.58940678 0.7848558 -0.19131391]\n", + " [-0.78191172 0.61894852 -0.0742751 ]\n", + " [-0.78191172 0.61894852 -0.0742751 ]\n", + " [-0.6014713 0.7771511 -0.1851174 ]\n", + " [-0.62392949 0.75592638 -0.19821025]\n", + " [-0.64625672 0.73331294 -0.21119751]\n", + " [-0.66826361 0.70939919 -0.22400121]\n", + " [-0.68977598 0.68429184 -0.2365455 ]\n", + " [-0.71063737 0.65811472 -0.24875599]\n", + " [-0.61324789 0.77478851 -0.15371983]\n", + " [-0.63614809 0.75336262 -0.16661442]\n", + " [-0.65887247 0.7305339 -0.17946391]\n", + " [-0.68122869 0.70639205 -0.19219194]\n", + " [-0.70304219 0.68104352 -0.20472274]\n", + " [-0.72415631 0.65461204 -0.21698091]\n", + " [-0.62470976 0.7713456 -0.12150593]\n", + " [-0.64798482 0.74974221 -0.13417263]\n", + " [-0.67104239 0.72672908 -0.14685693]\n", + " [-0.6936899 0.70239546 -0.15948335]\n", + " [-0.7157534 0.67684661 -0.17197598]\n", + " [-0.73707601 0.65020594 -0.18425849]\n", + " [-0.63573174 0.76680175 -0.08865801]\n", + " [-0.6593115 0.74504602 -0.10106818]\n", + " [-0.68263775 0.7218795 -0.11355916]\n", + " [-0.70551883 0.69739014 -0.12605625]\n", + " [-0.72778144 0.67168174 -0.138484 ]\n", + " [-0.74926801 0.64487756 -0.15076595]\n", + " [-0.64620475 0.76115326 -0.0553637 ]\n", + " [-0.67001861 0.73927013 -0.0674888 ]\n", + " [-0.69354944 0.71598039 -0.0797575 ]\n", + " [-0.71660654 0.69137062 -0.09209625]\n", + " [-0.73901684 0.6655436 -0.10443092]\n", + " [-0.76062174 0.63862269 -0.11668602]\n", + " [-0.65603801 0.75441252 -0.02181462]\n", + " [-0.6800155 0.73242621 -0.03362685]\n", + " [-0.70368689 0.70904251 -0.04564504]\n", + " [-0.7268619 0.68434735 -0.05779694]\n", + " [-0.74936718 0.65844314 -0.07001046]\n", + " [-0.77104309 0.63145366 -0.08221212]]\n", + "DEBUG:root:radec2pix: curVec Shape: (96, 3)\n", + "DEBUG:root:radec2pix: camVec: [[-0.20605921 -0.20787315 -0.20942436 -0.21070676 -0.21171698 -0.21245291\n", + " -0.21291301 -0.2130962 -0.20605921 -0.17962884 -0.15250018 -0.12477652\n", + " -0.0965659 -0.06797863 -0.03912632 -0.01012153 -0.2130962 -0.18573503\n", + " -0.15766321 -0.1289874 -0.09981355 -0.07024926 -0.04040619 -0.01040084\n", + " -0.01012153 -0.01020027 -0.01026637 -0.01031977 -0.01036027 -0.01038751\n", + " -0.01040113 -0.01040084 -0.20679239 -0.20883895 -0.21048459 -0.2117221\n", + " -0.21254753 -0.21295821 -0.1946339 -0.16175754 -0.12793421 -0.09336102\n", + " -0.05824097 -0.02277993 -0.20126076 -0.16723544 -0.13224882 -0.09649617\n", + " -0.06017591 -0.02349561 -0.01025713 -0.01034611 -0.01041588 -0.01046611\n", + " -0.01049618 -0.01050541 -0.20597676 -0.20597676 -0.01050361 -0.01050361\n", + " -0.19540403 -0.16239488 -0.12843557 -0.09372478 -0.05846599 -0.02286533\n", + " -0.19733483 -0.16399068 -0.1296908 -0.094636 -0.05902974 -0.02307851\n", + " -0.19888634 -0.16527244 -0.13070023 -0.09537003 -0.05948408 -0.02324907\n", + " -0.20005292 -0.16623701 -0.13146138 -0.09592455 -0.05982716 -0.0233762\n", + " -0.20083104 -0.16688094 -0.13197015 -0.09629527 -0.0600556 -0.02345845\n", + " -0.20121796 -0.16720058 -0.13222195 -0.09647752 -0.06016577 -0.02349426]\n", + " [-0.20169937 -0.17519485 -0.1480085 -0.12024402 -0.09200964 -0.06341581\n", + " -0.03457423 -0.00559748 -0.20169937 -0.20353396 -0.20511207 -0.20642749\n", + " -0.20747679 -0.20825778 -0.20876879 -0.20900854 -0.00559748 -0.00565735\n", + " -0.00571045 -0.00575671 -0.00579596 -0.00582797 -0.00585246 -0.00586919\n", + " -0.20900854 -0.18153487 -0.15336672 -0.12461057 -0.09537244 -0.06576046\n", + " -0.03588698 -0.00586919 -0.1902398 -0.15728353 -0.12340547 -0.08880315\n", + " -0.0536798 -0.01824146 -0.20244048 -0.20451655 -0.20620095 -0.20748634\n", + " -0.2083686 -0.2088448 -0.00572401 -0.00579384 -0.00585326 -0.00590199\n", + " -0.0059396 -0.00596558 -0.19712185 -0.16296958 -0.1278801 -0.09204872\n", + " -0.05567473 -0.01896706 -0.2016167 -0.2016167 -0.0059719 -0.0059719\n", + " -0.19101701 -0.19297429 -0.19456158 -0.19577312 -0.19660523 -0.1970549\n", + " -0.15792497 -0.15953875 -0.16084786 -0.1618491 -0.16253892 -0.16291334\n", + " -0.12390793 -0.1251726 -0.12620079 -0.12699006 -0.12753631 -0.1278347\n", + " -0.089165 -0.090077 -0.09082101 -0.09139481 -0.09179425 -0.09201449\n", + " -0.05389991 -0.05445583 -0.05491134 -0.05526476 -0.0555129 -0.05565213\n", + " -0.018319 -0.01851594 -0.01867909 -0.01880776 -0.01890068 -0.01895646]\n", + " [ 0.95752648 0.96233857 0.96655829 0.97012578 0.97299031 0.97511138\n", + " 0.97645925 0.97701519 0.95752648 0.96244865 0.96678474 0.97047334\n", + " 0.97346207 0.97570877 0.97718203 0.97786143 0.97701519 0.98258358\n", + " 0.98747643 0.99162952 0.99498928 0.99751244 0.9991662 0.99992869\n", + " 0.97786143 0.98333161 0.98811601 0.99215206 0.99538774 0.99778137\n", + " 0.99930173 0.99992869 0.95971127 0.96521924 0.96977695 0.97328709\n", + " 0.97567516 0.97689101 0.95975804 0.96540534 0.97011031 0.97377263\n", + " 0.97631476 0.97768345 0.97952098 0.98589996 0.99119927 0.99531586\n", + " 0.99817012 0.99970614 0.98032534 0.98657685 0.99173494 0.9956995\n", + " 0.99839379 0.99976492 0.95756163 0.95756163 0.999927 0.999927\n", + " 0.96194063 0.96767186 0.97244542 0.97616011 0.97873802 0.98012578\n", + " 0.96753226 0.97347545 0.97842131 0.98226722 0.98493482 0.98637043\n", + " 0.97215793 0.97827237 0.98335691 0.9873085 0.99004855 0.99152295\n", + " 0.97571944 0.98196303 0.98715219 0.99118387 0.99397914 0.99548324\n", + " 0.97814196 0.9844721 0.98973159 0.9938174 0.99665021 0.9981746\n", + " 0.97937518 0.98574902 0.99104412 0.99515745 0.99800944 0.99954423]]\n", + "DEBUG:root:radec2pix: camVec Shape: (3, 96)\n", + "DEBUG:root:radec2pix: camVec: [[-0.20650899 -0.20834684 -0.209912 -0.2112049 -0.21222492 -0.21297066\n", + " -0.21344048 -0.21363303 -0.20650899 -0.18010636 -0.15299311 -0.12528058\n", + " -0.09707928 -0.06849975 -0.03965325 -0.01065205 -0.21363303 -0.1862962\n", + " -0.15824793 -0.12959237 -0.10043485 -0.07088401 -0.04105265 -0.01105755\n", + " -0.01065205 -0.01075054 -0.01083605 -0.01090831 -0.01096697 -0.01101162\n", + " -0.0110419 -0.01105755 -0.20725456 -0.20932255 -0.21098167 -0.21223121\n", + " -0.21306867 -0.2134911 -0.19509826 -0.16224603 -0.12843717 -0.09387541\n", + " -0.05876435 -0.02330924 -0.20180806 -0.16781243 -0.13285166 -0.09711907\n", + " -0.06081473 -0.02414801 -0.01079628 -0.01090926 -0.01100231 -0.01107479\n", + " -0.01112598 -0.01115523 -0.20642679 -0.20642679 -0.01116024 -0.01116024\n", + " -0.19587779 -0.16288944 -0.12894461 -0.09424616 -0.05899718 -0.02340304\n", + " -0.19782623 -0.16450046 -0.13021766 -0.09517804 -0.05958347 -0.0236399\n", + " -0.19939086 -0.16579789 -0.13124607 -0.09593306 -0.06005988 -0.02383341\n", + " -0.20057035 -0.16677881 -0.13202594 -0.09650734 -0.06042346 -0.02398226\n", + " -0.20136156 -0.16743861 -0.13255205 -0.09689601 -0.0606707 -0.02408492\n", + " -0.20176105 -0.16777281 -0.13281959 -0.09709479 -0.06079851 -0.02414006]\n", + " [-0.20112017 -0.17462343 -0.14743759 -0.11967398 -0.09144325 -0.06285614\n", + " -0.0340241 -0.00505944 -0.20112017 -0.20295163 -0.20451753 -0.20581845\n", + " -0.20685386 -0.20762236 -0.2081222 -0.20835189 -0.00505944 -0.0050993\n", + " -0.00513287 -0.00516008 -0.00518078 -0.00519482 -0.00520206 -0.00520239\n", + " -0.20835189 -0.18087002 -0.15269708 -0.12393724 -0.09469638 -0.06508391\n", + " -0.03521344 -0.00520239 -0.18966571 -0.15671259 -0.12283514 -0.0882373\n", + " -0.053123 -0.01769778 -0.20186172 -0.20392662 -0.20559352 -0.20686189\n", + " -0.20772922 -0.20819238 -0.00517714 -0.00522278 -0.00525872 -0.00528472\n", + " -0.0053005 -0.00530579 -0.19646103 -0.1623014 -0.12720719 -0.09137251\n", + " -0.05499882 -0.01829695 -0.20103758 -0.20103758 -0.00530513 -0.00530513\n", + " -0.19044022 -0.19238166 -0.19395017 -0.19514465 -0.19596195 -0.19639843\n", + " -0.15734701 -0.15893973 -0.16022981 -0.16121459 -0.16188952 -0.16224993\n", + " -0.12332956 -0.12457282 -0.12558234 -0.12635458 -0.12688447 -0.12716713\n", + " -0.08859098 -0.08948154 -0.09020602 -0.09076095 -0.09114176 -0.09134421\n", + " -0.05333481 -0.05386844 -0.05430277 -0.0546353 -0.05486289 -0.05498267\n", + " -0.01776673 -0.01794001 -0.01808024 -0.01818657 -0.01825788 -0.01829321]\n", + " [ 0.95755142 0.96233999 0.96653976 0.97008795 0.97293305 0.97503467\n", + " 0.97636342 0.97690088 0.95755142 0.96248238 0.96683281 0.97053776\n", + " 0.97354358 0.97580774 0.97729871 0.97799592 0.97690088 0.98248039\n", + " 0.98738607 0.99155393 0.99493015 0.99747104 0.99914344 0.99992533\n", + " 0.97799592 0.98344825 0.98821363 0.9922301 0.99544579 0.99781904\n", + " 0.99931881 0.99992533 0.9597252 0.96520735 0.96974134 0.97322767\n", + " 0.97559197 0.97678469 0.95978566 0.96544816 0.97017277 0.97385603\n", + " 0.97641964 0.97781011 0.97941141 0.98580511 0.99112198 0.99525874\n", + " 0.998135 0.99969431 0.98045219 0.98668092 0.99181514 0.9957552\n", + " 0.99842443 0.99977036 0.95758648 0.95758648 0.99992365 0.99992365\n", + " 0.96195864 0.96770674 0.97250019 0.97623574 0.97883515 0.98024484\n", + " 0.96752607 0.97348742 0.97845274 0.98231919 0.98500842 0.98646648\n", + " 0.97212813 0.97826002 0.98336338 0.98733549 0.99009754 0.99159492\n", + " 0.9756655 0.9819256 0.98713324 0.99118554 0.99400311 0.99553056\n", + " 0.97806386 0.98440972 0.98968741 0.99379381 0.99664895 0.99819679\n", + " 0.97927362 0.98566244 0.99097531 0.99510896 0.99798306 0.9995412 ]]\n", + "DEBUG:root:radec2pix: camVec Shape: (3, 96)\n", + "DEBUG:root:cartToSphere: vec: [[-0.20605921 -0.20169937 0.95752648]\n", + " [-0.20787315 -0.17519485 0.96233857]\n", + " [-0.20942436 -0.1480085 0.96655829]\n", + " [-0.21070676 -0.12024402 0.97012578]\n", + " [-0.21171698 -0.09200964 0.97299031]\n", + " [-0.21245291 -0.06341581 0.97511138]\n", + " [-0.21291301 -0.03457423 0.97645925]\n", + " [-0.2130962 -0.00559748 0.97701519]\n", + " [-0.20605921 -0.20169937 0.95752648]\n", + " [-0.17962884 -0.20353396 0.96244865]\n", + " [-0.15250018 -0.20511207 0.96678474]\n", + " [-0.12477652 -0.20642749 0.97047334]\n", + " [-0.0965659 -0.20747679 0.97346207]\n", + " [-0.06797863 -0.20825778 0.97570877]\n", + " [-0.03912632 -0.20876879 0.97718203]\n", + " [-0.01012153 -0.20900854 0.97786143]\n", + " [-0.2130962 -0.00559748 0.97701519]\n", + " [-0.18573503 -0.00565735 0.98258358]\n", + " [-0.15766321 -0.00571045 0.98747643]\n", + " [-0.1289874 -0.00575671 0.99162952]\n", + " [-0.09981355 -0.00579596 0.99498928]\n", + " [-0.07024926 -0.00582797 0.99751244]\n", + " [-0.04040619 -0.00585246 0.9991662 ]\n", + " [-0.01040084 -0.00586919 0.99992869]\n", + " [-0.01012153 -0.20900854 0.97786143]\n", + " [-0.01020027 -0.18153487 0.98333161]\n", + " [-0.01026637 -0.15336672 0.98811601]\n", + " [-0.01031977 -0.12461057 0.99215206]\n", + " [-0.01036027 -0.09537244 0.99538774]\n", + " [-0.01038751 -0.06576046 0.99778137]\n", + " [-0.01040113 -0.03588698 0.99930173]\n", + " [-0.01040084 -0.00586919 0.99992869]\n", + " [-0.20679239 -0.1902398 0.95971127]\n", + " [-0.20883895 -0.15728353 0.96521924]\n", + " [-0.21048459 -0.12340547 0.96977695]\n", + " [-0.2117221 -0.08880315 0.97328709]\n", + " [-0.21254753 -0.0536798 0.97567516]\n", + " [-0.21295821 -0.01824146 0.97689101]\n", + " [-0.1946339 -0.20244048 0.95975804]\n", + " [-0.16175754 -0.20451655 0.96540534]\n", + " [-0.12793421 -0.20620095 0.97011031]\n", + " [-0.09336102 -0.20748634 0.97377263]\n", + " [-0.05824097 -0.2083686 0.97631476]\n", + " [-0.02277993 -0.2088448 0.97768345]\n", + " [-0.20126076 -0.00572401 0.97952098]\n", + " [-0.16723544 -0.00579384 0.98589996]\n", + " [-0.13224882 -0.00585326 0.99119927]\n", + " [-0.09649617 -0.00590199 0.99531586]\n", + " [-0.06017591 -0.0059396 0.99817012]\n", + " [-0.02349561 -0.00596558 0.99970614]\n", + " [-0.01025713 -0.19712185 0.98032534]\n", + " [-0.01034611 -0.16296958 0.98657685]\n", + " [-0.01041588 -0.1278801 0.99173494]\n", + " [-0.01046611 -0.09204872 0.9956995 ]\n", + " [-0.01049618 -0.05567473 0.99839379]\n", + " [-0.01050541 -0.01896706 0.99976492]\n", + " [-0.20597676 -0.2016167 0.95756163]\n", + " [-0.20597676 -0.2016167 0.95756163]\n", + " [-0.01050361 -0.0059719 0.999927 ]\n", + " [-0.01050361 -0.0059719 0.999927 ]\n", + " [-0.19540403 -0.19101701 0.96194063]\n", + " [-0.16239488 -0.19297429 0.96767186]\n", + " [-0.12843557 -0.19456158 0.97244542]\n", + " [-0.09372478 -0.19577312 0.97616011]\n", + " [-0.05846599 -0.19660523 0.97873802]\n", + " [-0.02286533 -0.1970549 0.98012578]\n", + " [-0.19733483 -0.15792497 0.96753226]\n", + " [-0.16399068 -0.15953875 0.97347545]\n", + " [-0.1296908 -0.16084786 0.97842131]\n", + " [-0.094636 -0.1618491 0.98226722]\n", + " [-0.05902974 -0.16253892 0.98493482]\n", + " [-0.02307851 -0.16291334 0.98637043]\n", + " [-0.19888634 -0.12390793 0.97215793]\n", + " [-0.16527244 -0.1251726 0.97827237]\n", + " [-0.13070023 -0.12620079 0.98335691]\n", + " [-0.09537003 -0.12699006 0.9873085 ]\n", + " [-0.05948408 -0.12753631 0.99004855]\n", + " [-0.02324907 -0.1278347 0.99152295]\n", + " [-0.20005292 -0.089165 0.97571944]\n", + " [-0.16623701 -0.090077 0.98196303]\n", + " [-0.13146138 -0.09082101 0.98715219]\n", + " [-0.09592455 -0.09139481 0.99118387]\n", + " [-0.05982716 -0.09179425 0.99397914]\n", + " [-0.0233762 -0.09201449 0.99548324]\n", + " [-0.20083104 -0.05389991 0.97814196]\n", + " [-0.16688094 -0.05445583 0.9844721 ]\n", + " [-0.13197015 -0.05491134 0.98973159]\n", + " [-0.09629527 -0.05526476 0.9938174 ]\n", + " [-0.0600556 -0.0555129 0.99665021]\n", + " [-0.02345845 -0.05565213 0.9981746 ]\n", + " [-0.20121796 -0.018319 0.97937518]\n", + " [-0.16720058 -0.01851594 0.98574902]\n", + " [-0.13222195 -0.01867909 0.99104412]\n", + " [-0.09647752 -0.01880776 0.99515745]\n", + " [-0.06016577 -0.01890068 0.99800944]\n", + " [-0.02349426 -0.01895646 0.99954423]]\n", + "DEBUG:root:radec2pix: lng: [224.38740491 220.12408621 215.2503637 209.71210534 203.48918374\n", + " 196.62002098 189.22355762 181.5046646 224.38740491 228.56999572\n", + " 233.3693139 238.84884696 245.04132431 251.92249978 259.38507008\n", + " 267.22753799 181.5046646 181.74464663 182.07430544 182.55541483\n", + " 183.32331288 184.74247093 188.24144189 209.436015 267.22753799\n", + " 266.78398778 266.170335 265.26578644 263.80029466 261.02373287\n", + " 253.83681058 209.436015 222.61267508 216.98461546 210.38276245\n", + " 202.75476399 194.17390418 184.89586052 226.12630502 231.65859743\n", + " 238.18310357 245.77405246 254.38382437 263.77502084 181.62909594\n", + " 181.98420755 182.53422407 183.50001953 185.63706132 194.24647314\n", + " 267.02133208 266.36745836 265.3435183 263.51322198 259.32352397\n", + " 241.01895217 224.38712569 224.38712569 209.62070535 209.62070535\n", + " 224.34955164 229.91816922 236.57007702 244.41761198 253.43870278\n", + " 263.38126527 218.66991645 224.21163124 231.12094806 239.6844282\n", + " 250.04034734 261.9370562 211.92326671 217.13924206 223.99660639\n", + " 233.09330633 244.99523074 259.69237756 204.0228705 208.45144372\n", + " 214.63892612 223.61475061 236.90559041 255.7456151 195.0232601\n", + " 198.0723045 202.59166286 209.85191686 222.74900651 247.14363581\n", + " 185.201902 186.31923819 188.04100537 191.03114261 197.43976942\n", + " 218.89848666]\n", + "DEBUG:root:radec2pix: lat: [73.24108038 74.22539246 75.14065481 75.95980834 76.6531185 77.19018187\n", + " 77.5432879 77.69182998 73.24108038 74.24861044 75.19133398 76.04212851\n", + " 76.77071823 77.34548632 77.73675519 77.92139244 77.69182998 79.29098794\n", + " 80.92271511 82.58149911 84.2618841 85.95783408 87.66008742 89.3157252\n", + " 77.92139244 79.52414159 81.15801466 82.81709844 84.49494889 86.18266378\n", + " 87.85870936 89.3157252 73.68081786 74.84436919 75.87765867 76.72697854\n", + " 77.33670031 77.65849826 73.69035695 74.88520803 75.9561532 76.84869716\n", + " 77.50496612 77.87275428 78.38454537 80.36704866 82.39295371 84.45217978\n", + " 86.53330534 88.61095022 78.61571107 80.60164359 82.62842612 84.684393\n", + " 86.75213987 88.75761015 73.24806584 73.24806584 89.30770045 89.30770045\n", + " 74.1417384 75.39152116 76.51854281 77.46407515 78.16380788 78.55793051\n", + " 75.35984123 76.77406669 78.07566348 79.19387762 80.04201199 80.52949342\n", + " 76.4480688 78.03443361 79.53211824 80.86193095 81.91012885 82.53435821\n", + " 77.34827857 79.10130772 80.80570953 82.38629346 83.70950064 84.55228195\n", + " 77.99844552 79.88985033 81.78208758 83.62548455 85.30897599 86.53756064\n", + " 78.34312947 80.31550148 82.32609465 84.35907996 86.38425999 88.27008044]\n", + "DEBUG:root:optics_fp: rtanth: [45.10526614 42.15252235 39.46728719 37.10767964 35.13935868 33.63109692\n", + " 32.64672024 32.23425998 45.10526614 42.08371704 39.32015966 36.87264817\n", + " 34.80791464 33.1974573 32.10970154 31.5986741 32.23425998 27.84962696\n", + " 23.46566508 19.08283694 14.70215645 10.32635724 5.96618932 1.74318313\n", + " 31.5986741 27.21812469 22.83983208 18.46540167 14.09842896 9.748941\n", + " 5.45889306 1.74318313 43.77728663 40.33061683 37.34259278 34.93111177\n", + " 33.22196043 32.3267303 43.74864122 40.21129183 37.11812392 34.58850978\n", + " 32.75328451 31.73315358 30.32290674 24.94961031 19.57779834 14.20915457\n", + " 8.84944693 3.53950567 29.68929466 24.32204857 18.9597634 13.60830488\n", + " 8.2886698 3.16557807 45.08405409 45.08405409 1.76362955 1.76362955\n", + " 42.40073703 38.740507 35.51948783 32.86706408 30.92986484 29.84747775\n", + " 38.83207862 34.7984872 31.1727741 28.11319496 25.82178089 24.5148885\n", + " 35.71891532 31.28650338 27.19655174 23.62757526 20.84885967 19.20651814\n", + " 33.18967076 28.36474267 23.77742123 19.59529652 16.13655116 13.95004204\n", + " 31.3858301 26.23117825 21.1868319 16.35517444 11.99601471 8.83853824\n", + " 30.43664187 25.08771711 19.753498 14.45027919 9.23164159 4.4089223 ]\n", + "DEBUG:root:cartToSphere: vec: [[-0.20650899 -0.20112017 0.95755142]\n", + " [-0.20834684 -0.17462343 0.96233999]\n", + " [-0.209912 -0.14743759 0.96653976]\n", + " [-0.2112049 -0.11967398 0.97008795]\n", + " [-0.21222492 -0.09144325 0.97293305]\n", + " [-0.21297066 -0.06285614 0.97503467]\n", + " [-0.21344048 -0.0340241 0.97636342]\n", + " [-0.21363303 -0.00505944 0.97690088]\n", + " [-0.20650899 -0.20112017 0.95755142]\n", + " [-0.18010636 -0.20295163 0.96248238]\n", + " [-0.15299311 -0.20451753 0.96683281]\n", + " [-0.12528058 -0.20581845 0.97053776]\n", + " [-0.09707928 -0.20685386 0.97354358]\n", + " [-0.06849975 -0.20762236 0.97580774]\n", + " [-0.03965325 -0.2081222 0.97729871]\n", + " [-0.01065205 -0.20835189 0.97799592]\n", + " [-0.21363303 -0.00505944 0.97690088]\n", + " [-0.1862962 -0.0050993 0.98248039]\n", + " [-0.15824793 -0.00513287 0.98738607]\n", + " [-0.12959237 -0.00516008 0.99155393]\n", + " [-0.10043485 -0.00518078 0.99493015]\n", + " [-0.07088401 -0.00519482 0.99747104]\n", + " [-0.04105265 -0.00520206 0.99914344]\n", + " [-0.01105755 -0.00520239 0.99992533]\n", + " [-0.01065205 -0.20835189 0.97799592]\n", + " [-0.01075054 -0.18087002 0.98344825]\n", + " [-0.01083605 -0.15269708 0.98821363]\n", + " [-0.01090831 -0.12393724 0.9922301 ]\n", + " [-0.01096697 -0.09469638 0.99544579]\n", + " [-0.01101162 -0.06508391 0.99781904]\n", + " [-0.0110419 -0.03521344 0.99931881]\n", + " [-0.01105755 -0.00520239 0.99992533]\n", + " [-0.20725456 -0.18966571 0.9597252 ]\n", + " [-0.20932255 -0.15671259 0.96520735]\n", + " [-0.21098167 -0.12283514 0.96974134]\n", + " [-0.21223121 -0.0882373 0.97322767]\n", + " [-0.21306867 -0.053123 0.97559197]\n", + " [-0.2134911 -0.01769778 0.97678469]\n", + " [-0.19509826 -0.20186172 0.95978566]\n", + " [-0.16224603 -0.20392662 0.96544816]\n", + " [-0.12843717 -0.20559352 0.97017277]\n", + " [-0.09387541 -0.20686189 0.97385603]\n", + " [-0.05876435 -0.20772922 0.97641964]\n", + " [-0.02330924 -0.20819238 0.97781011]\n", + " [-0.20180806 -0.00517714 0.97941141]\n", + " [-0.16781243 -0.00522278 0.98580511]\n", + " [-0.13285166 -0.00525872 0.99112198]\n", + " [-0.09711907 -0.00528472 0.99525874]\n", + " [-0.06081473 -0.0053005 0.998135 ]\n", + " [-0.02414801 -0.00530579 0.99969431]\n", + " [-0.01079628 -0.19646103 0.98045219]\n", + " [-0.01090926 -0.1623014 0.98668092]\n", + " [-0.01100231 -0.12720719 0.99181514]\n", + " [-0.01107479 -0.09137251 0.9957552 ]\n", + " [-0.01112598 -0.05499882 0.99842443]\n", + " [-0.01115523 -0.01829695 0.99977036]\n", + " [-0.20642679 -0.20103758 0.95758648]\n", + " [-0.20642679 -0.20103758 0.95758648]\n", + " [-0.01116024 -0.00530513 0.99992365]\n", + " [-0.01116024 -0.00530513 0.99992365]\n", + " [-0.19587779 -0.19044022 0.96195864]\n", + " [-0.16288944 -0.19238166 0.96770674]\n", + " [-0.12894461 -0.19395017 0.97250019]\n", + " [-0.09424616 -0.19514465 0.97623574]\n", + " [-0.05899718 -0.19596195 0.97883515]\n", + " [-0.02340304 -0.19639843 0.98024484]\n", + " [-0.19782623 -0.15734701 0.96752607]\n", + " [-0.16450046 -0.15893973 0.97348742]\n", + " [-0.13021766 -0.16022981 0.97845274]\n", + " [-0.09517804 -0.16121459 0.98231919]\n", + " [-0.05958347 -0.16188952 0.98500842]\n", + " [-0.0236399 -0.16224993 0.98646648]\n", + " [-0.19939086 -0.12332956 0.97212813]\n", + " [-0.16579789 -0.12457282 0.97826002]\n", + " [-0.13124607 -0.12558234 0.98336338]\n", + " [-0.09593306 -0.12635458 0.98733549]\n", + " [-0.06005988 -0.12688447 0.99009754]\n", + " [-0.02383341 -0.12716713 0.99159492]\n", + " [-0.20057035 -0.08859098 0.9756655 ]\n", + " [-0.16677881 -0.08948154 0.9819256 ]\n", + " [-0.13202594 -0.09020602 0.98713324]\n", + " [-0.09650734 -0.09076095 0.99118554]\n", + " [-0.06042346 -0.09114176 0.99400311]\n", + " [-0.02398226 -0.09134421 0.99553056]\n", + " [-0.20136156 -0.05333481 0.97806386]\n", + " [-0.16743861 -0.05386844 0.98440972]\n", + " [-0.13255205 -0.05430277 0.98968741]\n", + " [-0.09689601 -0.0546353 0.99379381]\n", + " [-0.0606707 -0.05486289 0.99664895]\n", + " [-0.02408492 -0.05498267 0.99819679]\n", + " [-0.20176105 -0.01776673 0.97927362]\n", + " [-0.16777281 -0.01794001 0.98566244]\n", + " [-0.13281959 -0.01808024 0.99097531]\n", + " [-0.09709479 -0.01818657 0.99510896]\n", + " [-0.06079851 -0.01825788 0.99798306]\n", + " [-0.02414006 -0.01829321 0.9995412 ]]\n", + "DEBUG:root:optics_fp: cphi: [-0.71462647 -0.76465055 -0.81663789 -0.86852682 -0.91713533 -0.95822269\n", + " -0.98707045 -0.99965519 -0.71462647 -0.66170459 -0.59665476 -0.51729759\n", + " -0.42196448 -0.31030314 -0.18420747 -0.04836971 -0.99965519 -0.99953644\n", + " -0.99934473 -0.99900557 -0.99831831 -0.99657638 -0.98967281 -0.87090507\n", + " -0.04836971 -0.05610053 -0.06679051 -0.08253363 -0.10799424 -0.15602533\n", + " -0.27837409 -0.87090507 -0.73594733 -0.79879708 -0.86266587 -0.92216881\n", + " -0.96955698 -0.99635146 -0.69307094 -0.62034596 -0.5272064 -0.41033606\n", + " -0.26919173 -0.10843276 -0.99959581 -0.99940041 -0.99902199 -0.99813478\n", + " -0.99516407 -0.96924606 -0.05196415 -0.06335735 -0.0811815 -0.11297393\n", + " -0.18526317 -0.48452029 -0.71462988 -0.71462988 -0.86931637 -0.86931637\n", + " -0.71508845 -0.64388103 -0.55091667 -0.43180852 -0.28504096 -0.11526196\n", + " -0.78075859 -0.71676907 -0.62767848 -0.50476226 -0.34135833 -0.1402609\n", + " -0.84875703 -0.7971706 -0.71938094 -0.60051365 -0.4226937 -0.17893311\n", + " -0.91338303 -0.87922117 -0.82275039 -0.7239943 -0.54602022 -0.24622747\n", + " -0.96582068 -0.95066579 -0.92326613 -0.86731478 -0.73433428 -0.38842227\n", + " -0.99588139 -0.99392405 -0.99016821 -0.98152333 -0.95403253 -0.77825973]\n", + "DEBUG:root:radec2pix: lng: [224.24259986 219.96765614 215.08336296 209.53697562 203.3101935\n", + " 196.44343401 189.05719479 181.35667342 224.24259986 228.41303103\n", + " 233.20099698 238.67135193 244.85870857 251.7410006 259.21279966\n", + " 267.07328529 181.35667342 181.56790868 181.85777415 182.28018564\n", + " 182.95289983 184.19149998 187.22184671 205.19617552 267.07328529\n", + " 266.59845953 265.94084811 264.97008557 263.3938965 260.39700292\n", + " 252.59010355 205.19617552 222.46269399 216.82093439 210.20829157\n", + " 202.57559903 193.99974981 184.73881406 225.97611965 231.49389572\n", + " 238.00639827 245.59111124 254.20436521 263.6117634 181.46953067\n", + " 181.78262482 182.26677669 183.11467024 184.98120654 192.39209935\n", + " 266.85454344 266.15458823 265.05671864 263.08918181 258.56369308\n", + " 238.630299 224.24223838 224.24223838 205.42453452 205.42453452\n", + " 224.19359423 229.74542917 236.38270094 244.22153031 253.24481767\n", + " 263.2046196 218.49803362 224.01504295 230.89947742 239.44320338\n", + " 249.79385261 261.71030558 211.7381028 216.91949721 223.73668556\n", + " 232.79289096 244.66979293 259.38488067 203.8308227 208.21481457\n", + " 214.34263424 223.2424136 236.45716258 255.28910964 194.83531269\n", + " 197.83404909 202.27750364 209.41669409 222.12219565 246.34438586\n", + " 185.03238692 186.10346579 187.75181788 190.6089913 196.71508989\n", + " 217.15465227]\n", + "DEBUG:root:optics_fp: sphi: [-0.69950626 -0.64444513 -0.57715037 -0.49564218 -0.39857594 -0.28602322\n", + " -0.16028704 -0.02625833 -0.69950626 -0.74976466 -0.80249804 -0.85580559\n", + " -0.90661236 -0.95063766 -0.98288738 -0.9988295 -0.02625833 -0.03044512\n", + " -0.03619555 -0.04458562 -0.05797023 -0.08267725 -0.1433448 -0.49145128\n", + " -0.9988295 -0.99842512 -0.99776702 -0.99658828 -0.99415152 -0.98775305\n", + " -0.96047273 -0.49145128 -0.67703879 -0.60160056 -0.50577425 -0.38678764\n", + " -0.24486582 -0.08534494 -0.72086938 -0.78432831 -0.84973726 -0.91193438\n", + " -0.96308661 -0.99410379 -0.02842926 -0.03462403 -0.04421613 -0.06104888\n", + " -0.09822663 -0.24609363 -0.99864895 -0.99799091 -0.99669933 -0.99359795\n", + " -0.98268894 -0.87478002 -0.69950278 -0.69950278 -0.49425605 -0.49425605\n", + " -0.69903398 -0.76512562 -0.83456026 -0.9019653 -0.95851534 -0.99333513\n", + " -0.6248328 -0.69731062 -0.77847269 -0.8632584 -0.93993324 -0.99011458\n", + " -0.52878304 -0.60375411 -0.69461576 -0.79961451 -0.90627261 -0.98386124\n", + " -0.40710127 -0.47641382 -0.56840284 -0.68980596 -0.837772 -0.96921207\n", + " -0.25921116 -0.31021694 -0.38416098 -0.49776006 -0.67878801 -0.92148149\n", + " -0.09066564 -0.11006805 -0.13988178 -0.19134252 -0.29970307 -0.6279425 ]\n", + "DEBUG:root:radec2pix: lat: [73.24603516 74.22569152 75.13651604 75.95087507 76.6389128 77.17037377\n", + " 77.51785702 77.66114392 73.24603516 74.25573072 75.20211387 76.05743745\n", + " 76.79113897 77.37139648 77.76826885 77.95827247 77.66114392 79.25921808\n", + " 80.88995617 82.54802878 84.22809839 85.92431704 87.62836983 89.29981459\n", + " 77.95827247 79.56096311 81.19447792 82.85294756 84.52972557 86.21521853\n", + " 87.88507254 89.29981459 73.68365855 74.84176377 75.86929863 76.71215801\n", + " 77.3149747 77.63003049 73.695993 74.89461964 75.97090871 76.86971486\n", + " 77.53277126 77.90734766 78.35340648 80.33462383 82.35957542 84.41843101\n", + " 86.50018709 88.58327287 78.6525924 80.63823128 82.66432935 84.71895211\n", + " 86.78327785 88.77209382 73.25300675 73.25300675 89.29197852 89.29197852\n", + " 74.14551493 75.39944683 76.53201019 77.48405712 78.19096994 78.59236983\n", + " 75.35843946 76.77706596 78.08438262 79.20977154 80.06643025 80.56299799\n", + " 76.44078432 78.03102057 79.5341606 80.87167145 81.93009942 82.56616105\n", + " 77.33417557 79.08997119 80.79891427 82.38701631 83.72204901 84.58091077\n", + " 77.9769458 79.86951112 81.76439499 83.61332437 85.3080928 86.55866797\n", + " 78.31436404 80.28605679 82.29662619 84.33088528 86.36037199 88.26434016]\n", + "DEBUG:root:optics_fp: xyfp: [[32.23341696 31.55141621]\n", + " [32.23194958 27.16498788]\n", + " [32.2304822 22.77855956]\n", + " [32.22901483 18.39213124]\n", + " [32.22754745 14.00570291]\n", + " [32.22608007 9.61927458]\n", + " [32.22461269 5.23284626]\n", + " [32.2231453 0.84641793]\n", + " [32.23341696 31.55141621]\n", + " [27.84698864 31.5528836 ]\n", + " [23.46056031 31.55435097]\n", + " [19.07413198 31.55581835]\n", + " [14.68770366 31.55728573]\n", + " [10.30127533 31.55875311]\n", + " [ 5.91484701 31.56022049]\n", + " [ 1.52841868 31.56168787]\n", + " [32.2231453 0.84641793]\n", + " [27.83671698 0.84788531]\n", + " [23.45028865 0.84935269]\n", + " [19.06386033 0.85082007]\n", + " [14.677432 0.85228745]\n", + " [10.29100367 0.85375483]\n", + " [ 5.90457535 0.85522221]\n", + " [ 1.51814702 0.85668959]\n", + " [ 1.52841868 31.56168787]\n", + " [ 1.5269513 27.17525955]\n", + " [ 1.52548392 22.78883122]\n", + " [ 1.52401654 18.4024029 ]\n", + " [ 1.52254916 14.01597457]\n", + " [ 1.52108178 9.62954624]\n", + " [ 1.5196144 5.24311792]\n", + " [ 1.51814702 0.85668959]\n", + " [32.21777718 29.63892134]\n", + " [32.21597876 24.26292164]\n", + " [32.21418034 18.88692194]\n", + " [32.21238193 13.51092224]\n", + " [32.21058351 8.13492254]\n", + " [32.20878509 2.75892284]\n", + " [30.32091205 31.53705599]\n", + " [24.94491236 31.53885442]\n", + " [19.56891265 31.54065283]\n", + " [14.19291295 31.54245125]\n", + " [ 8.81691325 31.54424967]\n", + " [ 3.44091356 31.54604808]\n", + " [30.31065043 0.86205771]\n", + " [24.93465073 0.86385613]\n", + " [19.55865103 0.86565455]\n", + " [14.18265134 0.86745297]\n", + " [ 8.80665163 0.86925139]\n", + " [ 3.43065193 0.8710498 ]\n", + " [ 1.5427789 29.64918296]\n", + " [ 1.54098048 24.27318326]\n", + " [ 1.53918206 18.89718357]\n", + " [ 1.53738364 13.52118387]\n", + " [ 1.53558522 8.14518416]\n", + " [ 1.5337868 2.76918446]\n", + " [32.21841195 31.53642123]\n", + " [32.21841195 31.53642123]\n", + " [ 1.53315204 0.87168457]\n", + " [ 1.53315204 0.87168457]\n", + " [30.32027729 29.6395561 ]\n", + " [24.94427759 29.64135452]\n", + " [19.56827789 29.64315294]\n", + " [14.19227819 29.64495136]\n", + " [ 8.81627849 29.64674978]\n", + " [ 3.44027879 29.6485482 ]\n", + " [30.31847887 24.2635564 ]\n", + " [24.94247917 24.26535482]\n", + " [19.56647947 24.26715324]\n", + " [14.19047977 24.26895166]\n", + " [ 8.81448007 24.27075007]\n", + " [ 3.43848037 24.2725485 ]\n", + " [30.31668045 18.8875567 ]\n", + " [24.94068075 18.88935513]\n", + " [19.56468105 18.89115354]\n", + " [14.18868135 18.89295196]\n", + " [ 8.81268165 18.89475038]\n", + " [ 3.43668195 18.89654879]\n", + " [30.31488203 13.51155701]\n", + " [24.93888233 13.51335542]\n", + " [19.56288263 13.51515384]\n", + " [14.18688293 13.51695226]\n", + " [ 8.81088324 13.51875068]\n", + " [ 3.43488354 13.5205491 ]\n", + " [30.31308361 8.13555731]\n", + " [24.93708392 8.13735572]\n", + " [19.56108422 8.13915414]\n", + " [14.18508451 8.14095256]\n", + " [ 8.80908482 8.14275098]\n", + " [ 3.43308512 8.1445494 ]\n", + " [30.31128519 2.75955761]\n", + " [24.93528549 2.76135602]\n", + " [19.5592858 2.76315444]\n", + " [14.18328609 2.76495286]\n", + " [ 8.8072864 2.76675128]\n", + " [ 3.4312867 2.7685497 ]]\n", + "DEBUG:root:optics_fp: xyfp shape: (96, 2)\n", + "DEBUG:root:make_az_asym: xyp: [[32.23341696 31.55141621]\n", + " [32.23194958 27.16498788]\n", + " [32.2304822 22.77855956]\n", + " [32.22901483 18.39213124]\n", + " [32.22754745 14.00570291]\n", + " [32.22608007 9.61927458]\n", + " [32.22461269 5.23284626]\n", + " [32.2231453 0.84641793]\n", + " [32.23341696 31.55141621]\n", + " [27.84698864 31.5528836 ]\n", + " [23.46056031 31.55435097]\n", + " [19.07413198 31.55581835]\n", + " [14.68770366 31.55728573]\n", + " [10.30127533 31.55875311]\n", + " [ 5.91484701 31.56022049]\n", + " [ 1.52841868 31.56168787]\n", + " [32.2231453 0.84641793]\n", + " [27.83671698 0.84788531]\n", + " [23.45028865 0.84935269]\n", + " [19.06386033 0.85082007]\n", + " [14.677432 0.85228745]\n", + " [10.29100367 0.85375483]\n", + " [ 5.90457535 0.85522221]\n", + " [ 1.51814702 0.85668959]\n", + " [ 1.52841868 31.56168787]\n", + " [ 1.5269513 27.17525955]\n", + " [ 1.52548392 22.78883122]\n", + " [ 1.52401654 18.4024029 ]\n", + " [ 1.52254916 14.01597457]\n", + " [ 1.52108178 9.62954624]\n", + " [ 1.5196144 5.24311792]\n", + " [ 1.51814702 0.85668959]\n", + " [32.21777718 29.63892134]\n", + " [32.21597876 24.26292164]\n", + " [32.21418034 18.88692194]\n", + " [32.21238193 13.51092224]\n", + " [32.21058351 8.13492254]\n", + " [32.20878509 2.75892284]\n", + " [30.32091205 31.53705599]\n", + " [24.94491236 31.53885442]\n", + " [19.56891265 31.54065283]\n", + " [14.19291295 31.54245125]\n", + " [ 8.81691325 31.54424967]\n", + " [ 3.44091356 31.54604808]\n", + " [30.31065043 0.86205771]\n", + " [24.93465073 0.86385613]\n", + " [19.55865103 0.86565455]\n", + " [14.18265134 0.86745297]\n", + " [ 8.80665163 0.86925139]\n", + " [ 3.43065193 0.8710498 ]\n", + " [ 1.5427789 29.64918296]\n", + " [ 1.54098048 24.27318326]\n", + " [ 1.53918206 18.89718357]\n", + " [ 1.53738364 13.52118387]\n", + " [ 1.53558522 8.14518416]\n", + " [ 1.5337868 2.76918446]\n", + " [32.21841195 31.53642123]\n", + " [32.21841195 31.53642123]\n", + " [ 1.53315204 0.87168457]\n", + " [ 1.53315204 0.87168457]\n", + " [30.32027729 29.6395561 ]\n", + " [24.94427759 29.64135452]\n", + " [19.56827789 29.64315294]\n", + " [14.19227819 29.64495136]\n", + " [ 8.81627849 29.64674978]\n", + " [ 3.44027879 29.6485482 ]\n", + " [30.31847887 24.2635564 ]\n", + " [24.94247917 24.26535482]\n", + " [19.56647947 24.26715324]\n", + " [14.19047977 24.26895166]\n", + " [ 8.81448007 24.27075007]\n", + " [ 3.43848037 24.2725485 ]\n", + " [30.31668045 18.8875567 ]\n", + " [24.94068075 18.88935513]\n", + " [19.56468105 18.89115354]\n", + " [14.18868135 18.89295196]\n", + " [ 8.81268165 18.89475038]\n", + " [ 3.43668195 18.89654879]\n", + " [30.31488203 13.51155701]\n", + " [24.93888233 13.51335542]\n", + " [19.56288263 13.51515384]\n", + " [14.18688293 13.51695226]\n", + " [ 8.81088324 13.51875068]\n", + " [ 3.43488354 13.5205491 ]\n", + " [30.31308361 8.13555731]\n", + " [24.93708392 8.13735572]\n", + " [19.56108422 8.13915414]\n", + " [14.18508451 8.14095256]\n", + " [ 8.80908482 8.14275098]\n", + " [ 3.43308512 8.1445494 ]\n", + " [30.31128519 2.75955761]\n", + " [24.93528549 2.76135602]\n", + " [19.5592858 2.76315444]\n", + " [14.18328609 2.76495286]\n", + " [ 8.8072864 2.76675128]\n", + " [ 3.4312867 2.7685497 ]]\n", + "DEBUG:root:make_az_asym: xyp: shape: (96, 2)\n", + "DEBUG:root:optics_fp: rtanth: [45.10607628 42.16357777 39.4899731 37.14337318 35.189258 33.69598042\n", + " 32.72668371 32.32853333 45.10607628 42.0744994 39.2994961 36.83909335\n", + " 34.76015989 33.13457624 32.03143895 31.50567459 32.32853333 27.94350461\n", + " 23.55899708 19.17536829 14.79339939 10.41518568 6.04888681 1.78423138\n", + " 31.50567459 27.12594155 22.74878876 18.37606012 14.01189826 9.66791142\n", + " 5.39307341 1.78423138 43.78236587 40.34917919 37.37672691 34.98265169\n", + " 33.29196413 32.41491299 43.7452802 40.19469624 37.08612172 34.53910818\n", + " 32.68520027 31.64644357 30.41697218 25.04308812 19.67036046 14.30009268\n", + " 8.93672046 3.6111005 29.59667216 24.23063563 18.87027174 13.52232821\n", + " 8.21110934 3.12954069 45.08486499 45.08486499 1.80420296 1.80420296\n", + " 42.4016515 38.72807918 35.4912797 32.82073285 30.86377856 29.76151712\n", + " 38.84663114 34.79978185 31.15752935 28.07777067 25.76302637 24.43171303\n", + " 35.74946438 31.30476433 27.19843907 23.60772454 20.80136966 19.12778226\n", + " 33.23838757 28.40342363 23.80170775 19.59823621 16.10786095 13.87941853\n", + " 31.45408342 26.29303007 21.23888529 16.39084557 12.00133913 8.78676362\n", + " 30.52427023 25.1733021 19.8358755 14.52692422 9.29536709 4.42480773]\n", + "DEBUG:root:optics_fp: cphi: [-0.71639206 -0.76640718 -0.81831665 -0.87003773 -0.918376 -0.95909967\n", + " -0.98753169 -0.99971968 -0.71639206 -0.66375612 -0.59900967 -0.51994628\n", + " -0.42485193 -0.31331297 -0.18716187 -0.0510586 -0.99971968 -0.9996256\n", + " -0.99947438 -0.99920821 -0.99867222 -0.99732533 -0.99206684 -0.90485547\n", + " -0.0510586 -0.05933321 -0.07078632 -0.08767585 -0.11504297 -0.16682032\n", + " -0.29920561 -0.90485547 -0.73771707 -0.80051245 -0.864202 -0.9233738\n", + " -0.97029678 -0.99658165 -0.69495812 -0.62259801 -0.52982456 -0.41324571\n", + " -0.27220694 -0.1112649 -0.9996711 -0.99951604 -0.9992175 -0.99852279\n", + " -0.99622323 -0.97670188 -0.054871 -0.06706472 -0.08616954 -0.12032428\n", + " -0.19827847 -0.52055819 -0.71639646 -0.71639646 -0.90315154 -0.90315154\n", + " -0.71698855 -0.64618487 -0.553643 -0.43489275 -0.28828288 -0.11832391\n", + " -0.78262952 -0.71915739 -0.63068289 -0.50839224 -0.34539889 -0.14417822\n", + " -0.85046147 -0.79948029 -0.72252464 -0.60469794 -0.42783445 -0.18421072\n", + " -0.91474245 -0.88118124 -0.82567874 -0.72846169 -0.55256029 -0.25394179\n", + " -0.96666577 -0.95194756 -0.92535864 -0.87107074 -0.74171607 -0.40123831\n", + " -0.99614527 -0.99433151 -0.99086162 -0.98290647 -0.95774678 -0.79700819]\n", + "DEBUG:root:radec2pix: xyfp: [[32.23341696 31.55141621]\n", + " [32.23194958 27.16498788]\n", + " [32.2304822 22.77855956]\n", + " [32.22901483 18.39213124]\n", + " [32.22754745 14.00570291]\n", + " [32.22608007 9.61927458]\n", + " [32.22461269 5.23284626]\n", + " [32.2231453 0.84641793]\n", + " [32.23341696 31.55141621]\n", + " [27.84698864 31.5528836 ]\n", + " [23.46056031 31.55435097]\n", + " [19.07413198 31.55581835]\n", + " [14.68770366 31.55728573]\n", + " [10.30127533 31.55875311]\n", + " [ 5.91484701 31.56022049]\n", + " [ 1.52841868 31.56168787]\n", + " [32.2231453 0.84641793]\n", + " [27.83671698 0.84788531]\n", + " [23.45028865 0.84935269]\n", + " [19.06386033 0.85082007]\n", + " [14.677432 0.85228745]\n", + " [10.29100367 0.85375483]\n", + " [ 5.90457535 0.85522221]\n", + " [ 1.51814702 0.85668959]\n", + " [ 1.52841868 31.56168787]\n", + " [ 1.5269513 27.17525955]\n", + " [ 1.52548392 22.78883122]\n", + " [ 1.52401654 18.4024029 ]\n", + " [ 1.52254916 14.01597457]\n", + " [ 1.52108178 9.62954624]\n", + " [ 1.5196144 5.24311792]\n", + " [ 1.51814702 0.85668959]\n", + " [32.21777718 29.63892134]\n", + " [32.21597876 24.26292164]\n", + " [32.21418034 18.88692194]\n", + " [32.21238193 13.51092224]\n", + " [32.21058351 8.13492254]\n", + " [32.20878509 2.75892284]\n", + " [30.32091205 31.53705599]\n", + " [24.94491236 31.53885442]\n", + " [19.56891265 31.54065283]\n", + " [14.19291295 31.54245125]\n", + " [ 8.81691325 31.54424967]\n", + " [ 3.44091356 31.54604808]\n", + " [30.31065043 0.86205771]\n", + " [24.93465073 0.86385613]\n", + " [19.55865103 0.86565455]\n", + " [14.18265134 0.86745297]\n", + " [ 8.80665163 0.86925139]\n", + " [ 3.43065193 0.8710498 ]\n", + " [ 1.5427789 29.64918296]\n", + " [ 1.54098048 24.27318326]\n", + " [ 1.53918206 18.89718357]\n", + " [ 1.53738364 13.52118387]\n", + " [ 1.53558522 8.14518416]\n", + " [ 1.5337868 2.76918446]\n", + " [32.21841195 31.53642123]\n", + " [32.21841195 31.53642123]\n", + " [ 1.53315204 0.87168457]\n", + " [ 1.53315204 0.87168457]\n", + " [30.32027729 29.6395561 ]\n", + " [24.94427759 29.64135452]\n", + " [19.56827789 29.64315294]\n", + " [14.19227819 29.64495136]\n", + " [ 8.81627849 29.64674978]\n", + " [ 3.44027879 29.6485482 ]\n", + " [30.31847887 24.2635564 ]\n", + " [24.94247917 24.26535482]\n", + " [19.56647947 24.26715324]\n", + " [14.19047977 24.26895166]\n", + " [ 8.81448007 24.27075007]\n", + " [ 3.43848037 24.2725485 ]\n", + " [30.31668045 18.8875567 ]\n", + " [24.94068075 18.88935513]\n", + " [19.56468105 18.89115354]\n", + " [14.18868135 18.89295196]\n", + " [ 8.81268165 18.89475038]\n", + " [ 3.43668195 18.89654879]\n", + " [30.31488203 13.51155701]\n", + " [24.93888233 13.51335542]\n", + " [19.56288263 13.51515384]\n", + " [14.18688293 13.51695226]\n", + " [ 8.81088324 13.51875068]\n", + " [ 3.43488354 13.5205491 ]\n", + " [30.31308361 8.13555731]\n", + " [24.93708392 8.13735572]\n", + " [19.56108422 8.13915414]\n", + " [14.18508451 8.14095256]\n", + " [ 8.80908482 8.14275098]\n", + " [ 3.43308512 8.1445494 ]\n", + " [30.31128519 2.75955761]\n", + " [24.93528549 2.76135602]\n", + " [19.5592858 2.76315444]\n", + " [14.18328609 2.76495286]\n", + " [ 8.8072864 2.76675128]\n", + " [ 3.4312867 2.7685497 ]]\n", + "DEBUG:root:radec2pix: xyfp Shape: (96, 2)\n", + "DEBUG:root:mm_to_pix: fitpx: [[0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]]\n", + "DEBUG:root:mm_to_pix: fitpx.shape: (96, 2)\n", + "DEBUG:root:optics_fp: sphi: [-0.69769794 -0.64235507 -0.57476766 -0.49298514 -0.3957089 -0.2830686\n", + " -0.15742033 -0.02367621 -0.69769794 -0.74794907 -0.80074179 -0.85419896\n", + " -0.90526286 -0.94964993 -0.98232909 -0.99869566 -0.02367621 -0.02736175\n", + " -0.03241859 -0.03978624 -0.05151501 -0.07309024 -0.12571151 -0.42571889\n", + " -0.99869566 -0.99823823 -0.9974915 -0.99614906 -0.99336052 -0.98598731\n", + " -0.95418866 -0.42571889 -0.67511001 -0.59931613 -0.50314502 -0.38390211\n", + " -0.24191766 -0.08261364 -0.71905021 -0.78254183 -0.84810727 -0.91061956\n", + " -0.96223874 -0.99379078 -0.02564534 -0.03110765 -0.0395524 -0.05433448\n", + " -0.08682898 -0.21460065 -0.99849345 -0.99774863 -0.99628049 -0.99273464\n", + " -0.98014573 -0.8538262 -0.69769342 -0.69769342 -0.42932191 -0.42932191\n", + " -0.69708495 -0.76318092 -0.83275412 -0.90048226 -0.95754529 -0.99297505\n", + " -0.62248778 -0.69484721 -0.77604065 -0.86112562 -0.93845597 -0.98955174\n", + " -0.52603734 -0.60069232 -0.69134517 -0.7964549 -0.90385712 -0.98288677\n", + " -0.40403745 -0.47277862 -0.5641406 -0.68508654 -0.83347293 -0.9672195\n", + " -0.25604158 -0.30626107 -0.37909286 -0.49115758 -0.670714 -0.9159737\n", + " -0.08771884 -0.10632422 -0.13488237 -0.1841056 -0.28761277 -0.6039685 ]\n", + "DEBUG:root:radec2pix: xyfp: [[32.23341696 31.55141621]\n", + " [32.23194958 27.16498788]\n", + " [32.2304822 22.77855956]\n", + " [32.22901483 18.39213124]\n", + " [32.22754745 14.00570291]\n", + " [32.22608007 9.61927458]\n", + " [32.22461269 5.23284626]\n", + " [32.2231453 0.84641793]\n", + " [32.23341696 31.55141621]\n", + " [27.84698864 31.5528836 ]\n", + " [23.46056031 31.55435097]\n", + " [19.07413198 31.55581835]\n", + " [14.68770366 31.55728573]\n", + " [10.30127533 31.55875311]\n", + " [ 5.91484701 31.56022049]\n", + " [ 1.52841868 31.56168787]\n", + " [32.2231453 0.84641793]\n", + " [27.83671698 0.84788531]\n", + " [23.45028865 0.84935269]\n", + " [19.06386033 0.85082007]\n", + " [14.677432 0.85228745]\n", + " [10.29100367 0.85375483]\n", + " [ 5.90457535 0.85522221]\n", + " [ 1.51814702 0.85668959]\n", + " [ 1.52841868 31.56168787]\n", + " [ 1.5269513 27.17525955]\n", + " [ 1.52548392 22.78883122]\n", + " [ 1.52401654 18.4024029 ]\n", + " [ 1.52254916 14.01597457]\n", + " [ 1.52108178 9.62954624]\n", + " [ 1.5196144 5.24311792]\n", + " [ 1.51814702 0.85668959]\n", + " [32.21777718 29.63892134]\n", + " [32.21597876 24.26292164]\n", + " [32.21418034 18.88692194]\n", + " [32.21238193 13.51092224]\n", + " [32.21058351 8.13492254]\n", + " [32.20878509 2.75892284]\n", + " [30.32091205 31.53705599]\n", + " [24.94491236 31.53885442]\n", + " [19.56891265 31.54065283]\n", + " [14.19291295 31.54245125]\n", + " [ 8.81691325 31.54424967]\n", + " [ 3.44091356 31.54604808]\n", + " [30.31065043 0.86205771]\n", + " [24.93465073 0.86385613]\n", + " [19.55865103 0.86565455]\n", + " [14.18265134 0.86745297]\n", + " [ 8.80665163 0.86925139]\n", + " [ 3.43065193 0.8710498 ]\n", + " [ 1.5427789 29.64918296]\n", + " [ 1.54098048 24.27318326]\n", + " [ 1.53918206 18.89718357]\n", + " [ 1.53738364 13.52118387]\n", + " [ 1.53558522 8.14518416]\n", + " [ 1.5337868 2.76918446]\n", + " [32.21841195 31.53642123]\n", + " [32.21841195 31.53642123]\n", + " [ 1.53315204 0.87168457]\n", + " [ 1.53315204 0.87168457]\n", + " [30.32027729 29.6395561 ]\n", + " [24.94427759 29.64135452]\n", + " [19.56827789 29.64315294]\n", + " [14.19227819 29.64495136]\n", + " [ 8.81627849 29.64674978]\n", + " [ 3.44027879 29.6485482 ]\n", + " [30.31847887 24.2635564 ]\n", + " [24.94247917 24.26535482]\n", + " [19.56647947 24.26715324]\n", + " [14.19047977 24.26895166]\n", + " [ 8.81448007 24.27075007]\n", + " [ 3.43848037 24.2725485 ]\n", + " [30.31668045 18.8875567 ]\n", + " [24.94068075 18.88935513]\n", + " [19.56468105 18.89115354]\n", + " [14.18868135 18.89295196]\n", + " [ 8.81268165 18.89475038]\n", + " [ 3.43668195 18.89654879]\n", + " [30.31488203 13.51155701]\n", + " [24.93888233 13.51335542]\n", + " [19.56288263 13.51515384]\n", + " [14.18688293 13.51695226]\n", + " [ 8.81088324 13.51875068]\n", + " [ 3.43488354 13.5205491 ]\n", + " [30.31308361 8.13555731]\n", + " [24.93708392 8.13735572]\n", + " [19.56108422 8.13915414]\n", + " [14.18508451 8.14095256]\n", + " [ 8.80908482 8.14275098]\n", + " [ 3.43308512 8.1445494 ]\n", + " [30.31128519 2.75955761]\n", + " [24.93528549 2.76135602]\n", + " [19.5592858 2.76315444]\n", + " [14.18328609 2.76495286]\n", + " [ 8.8072864 2.76675128]\n", + " [ 3.4312867 2.7685497 ]]\n", + "DEBUG:root:radec2pix: curVec: [[ 0.32075591 0.79063002 -0.52155518]\n", + " [ 0.302139 0.78531213 -0.54036736]\n", + " [ 0.28301017 0.77920041 -0.55924231]\n", + " [ 0.26342901 0.77229818 -0.57806632]\n", + " [ 0.24345886 0.76461405 -0.5967354 ]\n", + " [ 0.22316718 0.7561626 -0.61515407]\n", + " [ 0.20262562 0.74696503 -0.63323463]\n", + " [ 0.18190979 0.73704968 -0.65089677]\n", + " [ 0.32075591 0.79063002 -0.52155518]\n", + " [ 0.34001669 0.77522562 -0.5323663 ]\n", + " [ 0.35934256 0.75886921 -0.54313023]\n", + " [ 0.37864419 0.74160295 -0.55376316]\n", + " [ 0.39783564 0.72347431 -0.56419122]\n", + " [ 0.41683379 0.70453694 -0.57434945]\n", + " [ 0.43555834 0.68485149 -0.58418094]\n", + " [ 0.45393198 0.66448599 -0.59363636]\n", + " [ 0.18190979 0.73704968 -0.65089677]\n", + " [ 0.20067106 0.72071938 -0.66354706]\n", + " [ 0.21965478 0.70347379 -0.67592633]\n", + " [ 0.23877593 0.68534968 -0.68795485]\n", + " [ 0.25795142 0.66639125 -0.69955969]\n", + " [ 0.27709928 0.64665126 -0.71067442]\n", + " [ 0.29613858 0.62619158 -0.72123924]\n", + " [ 0.31498998 0.60508308 -0.7312016 ]\n", + " [ 0.45393198 0.66448599 -0.59363636]\n", + " [ 0.43589869 0.65796066 -0.61406848]\n", + " [ 0.41715914 0.65076947 -0.63441103]\n", + " [ 0.39776862 0.64291264 -0.65455592]\n", + " [ 0.37778736 0.63439723 -0.67440112]\n", + " [ 0.35728143 0.62523768 -0.69384999]\n", + " [ 0.33632301 0.61545626 -0.71281164]\n", + " [ 0.31498998 0.60508308 -0.7312016 ]\n", + " [ 0.31277118 0.78835775 -0.52977944]\n", + " [ 0.28960268 0.78130542 -0.55289432]\n", + " [ 0.26572392 0.77306352 -0.57598923]\n", + " [ 0.24124992 0.76364568 -0.59886873]\n", + " [ 0.21630487 0.75307879 -0.62135701]\n", + " [ 0.19102236 0.74140486 -0.64329565]\n", + " [ 0.32907712 0.78401612 -0.52633352]\n", + " [ 0.3527386 0.76449041 -0.53956455]\n", + " [ 0.37640877 0.74357609 -0.55264006]\n", + " [ 0.39992805 0.72135827 -0.56542003]\n", + " [ 0.42314345 0.69793582 -0.57778474]\n", + " [ 0.44590832 0.67342348 -0.58963259]\n", + " [ 0.19012819 0.73007948 -0.6563804 ]\n", + " [ 0.21328319 0.70944558 -0.67171218]\n", + " [ 0.23668743 0.68747262 -0.68655696]\n", + " [ 0.26018722 0.66423878 -0.70077775]\n", + " [ 0.28363162 0.63984128 -0.71425222]\n", + " [ 0.30687227 0.61439776 -0.7268733 ]\n", + " [ 0.44609723 0.66179355 -0.60251685]\n", + " [ 0.42351332 0.65334931 -0.62751187]\n", + " [ 0.39992316 0.64390431 -0.65226429]\n", + " [ 0.37543551 0.63346864 -0.67658381]\n", + " [ 0.35017206 0.62206896 -0.70029261]\n", + " [ 0.32426806 0.60974951 -0.72322594]\n", + " [ 0.32075884 0.79056218 -0.52165622]\n", + " [ 0.32075884 0.79056218 -0.52165622]\n", + " [ 0.31499942 0.60519272 -0.73110679]\n", + " [ 0.31499942 0.60519272 -0.73110679]\n", + " [ 0.3210947 0.78177945 -0.53452697]\n", + " [ 0.34477928 0.76216255 -0.54793749]\n", + " [ 0.36848515 0.7411564 -0.56116477]\n", + " [ 0.3920529 0.7188451 -0.5740699 ]\n", + " [ 0.41532937 0.69532697 -0.58653382]\n", + " [ 0.43816748 0.6707166 -0.5984551 ]\n", + " [ 0.29792701 0.77464171 -0.55782589]\n", + " [ 0.32163859 0.75478468 -0.57170683]\n", + " [ 0.3454091 0.7335386 -0.5853321 ]\n", + " [ 0.36907974 0.71098504 -0.59856531]\n", + " [ 0.39249696 0.68722098 -0.61128836]\n", + " [ 0.41551249 0.6623611 -0.62339967]\n", + " [ 0.27402807 0.76632245 -0.58108392]\n", + " [ 0.29770892 0.74625022 -0.59538223]\n", + " [ 0.32148898 0.72479259 -0.60936076]\n", + " [ 0.34521027 0.70202913 -0.62288439]\n", + " [ 0.36871916 0.67805615 -0.63583492]\n", + " [ 0.39186648 0.65298877 -0.64810981]\n", + " [ 0.24951276 0.75683442 -0.60410681]\n", + " [ 0.27310453 0.73656975 -0.6187721 ]\n", + " [ 0.2968381 0.71492746 -0.63306071]\n", + " [ 0.32055659 0.69198591 -0.64683768]\n", + " [ 0.34410664 0.66784122 -0.65998388]\n", + " [ 0.3673387 0.64260926 -0.67239544]\n", + " [ 0.22450542 0.74620391 -0.62671927]\n", + " [ 0.24795002 0.72576816 -0.64170193]\n", + " [ 0.27158098 0.70396747 -0.65625725]\n", + " [ 0.2952427 0.68087969 -0.67024965]\n", + " [ 0.3187826 0.65660123 -0.68355869]\n", + " [ 0.34205124 0.63124874 -0.696079 ]\n", + " [ 0.19914007 0.73447258 -0.64876287]\n", + " [ 0.22238047 0.71388666 -0.66401263]\n", + " [ 0.24585344 0.69195391 -0.67879001]\n", + " [ 0.26940479 0.66875234 -0.69295841]\n", + " [ 0.2928831 0.64437892 -0.70639599]\n", + " [ 0.31613965 0.61895107 -0.71899603]]\n", + "DEBUG:root:radec2pix: ccdpx: [[-4.44999999e+01 -4.99999873e-01]\n", + " [-4.44999998e+01 2.91928572e+02]\n", + " [-4.44999998e+01 5.84357143e+02]\n", + " [-4.45000002e+01 8.76785714e+02]\n", + " [-4.45000003e+01 1.16921429e+03]\n", + " [-4.45000002e+01 1.46164286e+03]\n", + " [-4.45000002e+01 1.75407143e+03]\n", + " [-4.45000000e+01 2.04650000e+03]\n", + " [-4.44999999e+01 -4.99999873e-01]\n", + " [ 2.47928571e+02 -5.00000280e-01]\n", + " [ 5.40357143e+02 -5.00000000e-01]\n", + " [ 8.32785714e+02 -4.99999974e-01]\n", + " [ 1.12521429e+03 -4.99999987e-01]\n", + " [ 1.41764286e+03 -4.99999863e-01]\n", + " [ 1.71007143e+03 -5.00000138e-01]\n", + " [ 2.00250000e+03 -4.99999700e-01]\n", + " [-4.45000000e+01 2.04650000e+03]\n", + " [ 2.47928571e+02 2.04650000e+03]\n", + " [ 5.40357143e+02 2.04650000e+03]\n", + " [ 8.32785714e+02 2.04650000e+03]\n", + " [ 1.12521429e+03 2.04650000e+03]\n", + " [ 1.41764286e+03 2.04650000e+03]\n", + " [ 1.71007143e+03 2.04650000e+03]\n", + " [ 2.00250000e+03 2.04650000e+03]\n", + " [ 2.00250000e+03 -4.99999700e-01]\n", + " [ 2.00250000e+03 2.91928571e+02]\n", + " [ 2.00250000e+03 5.84357143e+02]\n", + " [ 2.00250000e+03 8.76785714e+02]\n", + " [ 2.00250000e+03 1.16921429e+03]\n", + " [ 2.00250000e+03 1.46164286e+03]\n", + " [ 2.00250000e+03 1.75407143e+03]\n", + " [ 2.00250000e+03 2.04650000e+03]\n", + " [-4.35000000e+01 1.27000000e+02]\n", + " [-4.35000002e+01 4.85400000e+02]\n", + " [-4.34999999e+01 8.43800000e+02]\n", + " [-4.35000003e+01 1.20220000e+03]\n", + " [-4.35000000e+01 1.56060000e+03]\n", + " [-4.35000001e+01 1.91900000e+03]\n", + " [ 8.30000001e+01 5.00000148e-01]\n", + " [ 4.41400000e+02 4.99999823e-01]\n", + " [ 7.99800000e+02 4.99999939e-01]\n", + " [ 1.15820000e+03 5.00000006e-01]\n", + " [ 1.51660000e+03 5.00000232e-01]\n", + " [ 1.87500000e+03 5.00000256e-01]\n", + " [ 8.29999998e+01 2.04550000e+03]\n", + " [ 4.41400000e+02 2.04550000e+03]\n", + " [ 7.99800000e+02 2.04550000e+03]\n", + " [ 1.15820000e+03 2.04550000e+03]\n", + " [ 1.51660000e+03 2.04550000e+03]\n", + " [ 1.87500000e+03 2.04550000e+03]\n", + " [ 2.00150000e+03 1.27000000e+02]\n", + " [ 2.00150000e+03 4.85400000e+02]\n", + " [ 2.00150000e+03 8.43800000e+02]\n", + " [ 2.00150000e+03 1.20220000e+03]\n", + " [ 2.00150000e+03 1.56060000e+03]\n", + " [ 2.00150000e+03 1.91900000e+03]\n", + " [-4.35000003e+01 4.99999725e-01]\n", + " [-4.35000003e+01 4.99999725e-01]\n", + " [ 2.00150000e+03 2.04550000e+03]\n", + " [ 2.00150000e+03 2.04550000e+03]\n", + " [ 8.30000000e+01 1.27000000e+02]\n", + " [ 4.41400000e+02 1.27000000e+02]\n", + " [ 7.99800000e+02 1.27000000e+02]\n", + " [ 1.15820000e+03 1.27000000e+02]\n", + " [ 1.51660000e+03 1.27000000e+02]\n", + " [ 1.87500000e+03 1.27000000e+02]\n", + " [ 8.30000001e+01 4.85400000e+02]\n", + " [ 4.41400000e+02 4.85400000e+02]\n", + " [ 7.99800000e+02 4.85400000e+02]\n", + " [ 1.15820000e+03 4.85400000e+02]\n", + " [ 1.51660000e+03 4.85400000e+02]\n", + " [ 1.87500000e+03 4.85400000e+02]\n", + " [ 8.30000001e+01 8.43800000e+02]\n", + " [ 4.41400000e+02 8.43800000e+02]\n", + " [ 7.99800000e+02 8.43800000e+02]\n", + " [ 1.15820000e+03 8.43800000e+02]\n", + " [ 1.51660000e+03 8.43800000e+02]\n", + " [ 1.87500000e+03 8.43800000e+02]\n", + " [ 8.29999999e+01 1.20220000e+03]\n", + " [ 4.41400000e+02 1.20220000e+03]\n", + " [ 7.99800000e+02 1.20220000e+03]\n", + " [ 1.15820000e+03 1.20220000e+03]\n", + " [ 1.51660000e+03 1.20220000e+03]\n", + " [ 1.87500000e+03 1.20220000e+03]\n", + " [ 8.30000000e+01 1.56060000e+03]\n", + " [ 4.41400000e+02 1.56060000e+03]\n", + " [ 7.99800000e+02 1.56060000e+03]\n", + " [ 1.15820000e+03 1.56060000e+03]\n", + " [ 1.51660000e+03 1.56060000e+03]\n", + " [ 1.87500000e+03 1.56060000e+03]\n", + " [ 8.30000003e+01 1.91900000e+03]\n", + " [ 4.41400000e+02 1.91900000e+03]\n", + " [ 7.99800000e+02 1.91900000e+03]\n", + " [ 1.15820000e+03 1.91900000e+03]\n", + " [ 1.51660000e+03 1.91900000e+03]\n", + " [ 1.87500000e+03 1.91900000e+03]]\n", + "DEBUG:root:optics_fp: xyfp: [[32.31363499 31.47041645]\n", + " [32.3144687 27.08398795]\n", + " [32.31530242 22.69755946]\n", + " [32.31613613 18.31113097]\n", + " [32.31696984 13.92470248]\n", + " [32.31780355 9.53827398]\n", + " [32.31863726 5.15184549]\n", + " [32.31947097 0.765417 ]\n", + " [32.31363499 31.47041645]\n", + " [27.9272065 31.46958273]\n", + " [23.540778 31.46874902]\n", + " [19.15434951 31.46791531]\n", + " [14.76792102 31.4670816 ]\n", + " [10.38149253 31.46624788]\n", + " [ 5.99506403 31.46541417]\n", + " [ 1.60863554 31.46458045]\n", + " [32.31947097 0.765417 ]\n", + " [27.93304248 0.76458329]\n", + " [23.54661399 0.76374957]\n", + " [19.1601855 0.76291586]\n", + " [14.77375701 0.76208215]\n", + " [10.38732851 0.76124844]\n", + " [ 6.00090002 0.76041472]\n", + " [ 1.61447153 0.75958101]\n", + " [ 1.60863554 31.46458045]\n", + " [ 1.60946926 27.07815197]\n", + " [ 1.61030297 22.69172348]\n", + " [ 1.61113668 18.30529498]\n", + " [ 1.61197039 13.91886648]\n", + " [ 1.6128041 9.53243799]\n", + " [ 1.61363782 5.1460095 ]\n", + " [ 1.61447153 0.75958101]\n", + " [32.29899849 29.55791363]\n", + " [32.30002028 24.18191372]\n", + " [32.30104209 18.80591382]\n", + " [32.30206388 13.42991392]\n", + " [32.30308568 8.05391402]\n", + " [32.30410748 2.67791411]\n", + " [30.40113787 31.45505294]\n", + " [25.02513797 31.45403115]\n", + " [19.64913807 31.45300935]\n", + " [14.27313817 31.45198755]\n", + " [ 8.89713826 31.45096576]\n", + " [ 3.52113836 31.44994396]\n", + " [30.40696816 0.7800535 ]\n", + " [25.03096826 0.7790317 ]\n", + " [19.65496836 0.7780099 ]\n", + " [14.27896845 0.77698811]\n", + " [ 8.90296855 0.77596631]\n", + " [ 3.52696865 0.77494451]\n", + " [ 1.62399904 29.55208334]\n", + " [ 1.62502084 24.17608344]\n", + " [ 1.62604264 18.80008353]\n", + " [ 1.62706443 13.42408364]\n", + " [ 1.62808623 8.04808373]\n", + " [ 1.62910803 2.67208383]\n", + " [32.29863784 31.4554136 ]\n", + " [32.29863784 31.4554136 ]\n", + " [ 1.62946868 0.77458386]\n", + " [ 1.62946868 0.77458386]\n", + " [30.40149852 29.55755297]\n", + " [25.02549862 29.55653118]\n", + " [19.64949872 29.55550938]\n", + " [14.27349882 29.55448759]\n", + " [ 8.89749891 29.55346579]\n", + " [ 3.52149901 29.55244399]\n", + " [30.40252032 24.18155307]\n", + " [25.02652042 24.18053128]\n", + " [19.65052052 24.17950948]\n", + " [14.27452061 24.17848769]\n", + " [ 8.89852071 24.17746589]\n", + " [ 3.52252081 24.17644409]\n", + " [30.40354212 18.80555317]\n", + " [25.02754221 18.80453137]\n", + " [19.65154231 18.80350958]\n", + " [14.27554241 18.80248779]\n", + " [ 8.89954251 18.80146598]\n", + " [ 3.5235426 18.80044419]\n", + " [30.40456392 13.42955327]\n", + " [25.02856401 13.42853147]\n", + " [19.65256411 13.42750967]\n", + " [14.27656421 13.42648788]\n", + " [ 8.9005643 13.42546608]\n", + " [ 3.5245644 13.42444429]\n", + " [30.40558571 8.05355336]\n", + " [25.02958581 8.05253157]\n", + " [19.6535859 8.05150977]\n", + " [14.277586 8.05048797]\n", + " [ 8.9015861 8.04946618]\n", + " [ 3.5255862 8.04844438]\n", + " [30.40660751 2.67755346]\n", + " [25.0306076 2.67653166]\n", + " [19.6546077 2.67550987]\n", + " [14.2786078 2.67448807]\n", + " [ 8.90260789 2.67346627]\n", + " [ 3.52660799 2.67244448]]\n", + "DEBUG:root:radec2pix: curVec Shape: (96, 3)\n", + "DEBUG:root:optics_fp: xyfp shape: (96, 2)\n", + "DEBUG:root:radec2pix: fitpx: [[4271.49999987 4155.49999987]\n", + " [4271.49999978 3863.07142838]\n", + " [4271.49999978 3570.64285699]\n", + " [4271.50000021 3278.21428583]\n", + " [4271.50000028 2985.78571441]\n", + " [4271.50000021 2693.35714292]\n", + " [4271.50000016 2400.92857146]\n", + " [4271.5 2108.5 ]\n", + " [4271.49999987 4155.49999987]\n", + " [3979.07142882 4155.50000028]\n", + " [3686.64285714 4155.5 ]\n", + " [3394.2142857 4155.49999997]\n", + " [3101.78571428 4155.49999999]\n", + " [2809.35714281 4155.49999986]\n", + " [2516.92857145 4155.50000014]\n", + " [2224.49999999 4155.4999997 ]\n", + " [4271.5 2108.5 ]\n", + " [3979.0714288 2108.50000001]\n", + " [3686.64285693 2108.49999999]\n", + " [3394.21428614 2108.50000002]\n", + " [3101.7857146 2108.50000002]\n", + " [2809.35714263 2108.49999998]\n", + " [2516.92857131 2108.49999998]\n", + " [2224.49999992 2108.49999995]\n", + " [2224.49999999 4155.4999997 ]\n", + " [2224.50000001 3863.07142868]\n", + " [2224.5 3570.64285711]\n", + " [2224.50000002 3278.21428594]\n", + " [2224.50000001 2985.78571436]\n", + " [2224.49999998 2693.35714271]\n", + " [2224.50000001 2400.92857146]\n", + " [2224.49999992 2108.49999995]\n", + " [4270.5 4028. ]\n", + " [4270.50000018 3669.60000013]\n", + " [4270.49999988 3311.19999993]\n", + " [4270.50000028 2952.80000012]\n", + " [4270.5 2594.4 ]\n", + " [4270.50000006 2236.00000001]\n", + " [4143.99999986 4154.49999985]\n", + " [3785.60000014 4154.50000018]\n", + " [3427.20000004 4154.50000006]\n", + " [3068.8 4154.49999999]\n", + " [2710.39999994 4154.49999977]\n", + " [2351.99999997 4154.49999974]\n", + " [4144.00000019 2109.50000001]\n", + " [3785.59999998 2109.5 ]\n", + " [3427.19999968 2109.49999999]\n", + " [3068.80000035 2109.50000002]\n", + " [2710.39999998 2109.5 ]\n", + " [2351.99999973 2109.49999993]\n", + " [2225.50000001 4028.00000029]\n", + " [2225.50000001 3669.60000014]\n", + " [2225.50000002 3311.20000027]\n", + " [2225.50000003 2952.80000024]\n", + " [2225.49999999 2594.39999997]\n", + " [2225.49999991 2235.99999983]\n", + " [4270.50000028 4154.50000027]\n", + " [4270.50000028 4154.50000027]\n", + " [2225.50000021 2109.50000012]\n", + " [2225.50000021 2109.50000012]\n", + " [4143.99999997 4027.99999997]\n", + " [3785.60000006 4028.00000007]\n", + " [3427.20000002 4028.00000003]\n", + " [3068.8 4028.00000001]\n", + " [2710.40000007 4028.00000025]\n", + " [2352. 4028.00000001]\n", + " [4143.99999988 3669.5999999 ]\n", + " [3785.59999992 3669.59999992]\n", + " [3427.20000003 3669.60000003]\n", + " [3068.79999996 3669.59999994]\n", + " [2710.39999994 3669.59999984]\n", + " [2352.00000003 3669.60000024]\n", + " [4143.99999986 3311.19999992]\n", + " [3785.60000024 3311.20000018]\n", + " [3427.19999985 3311.19999985]\n", + " [3068.80000018 3311.20000023]\n", + " [2710.39999997 3311.19999993]\n", + " [2351.99999998 3311.19999989]\n", + " [4144.00000009 2952.80000004]\n", + " [3785.60000017 2952.80000009]\n", + " [3427.19999999 2952.79999999]\n", + " [3068.79999994 2952.79999994]\n", + " [2710.40000012 2952.80000019]\n", + " [2351.99999999 2952.79999997]\n", + " [4143.99999998 2594.4 ]\n", + " [3785.60000016 2594.40000005]\n", + " [3427.20000028 2594.40000012]\n", + " [3068.79999967 2594.39999981]\n", + " [2710.40000007 2594.40000006]\n", + " [2351.99999992 2594.39999981]\n", + " [4143.99999971 2235.99999997]\n", + " [3785.59999981 2235.99999998]\n", + " [3427.2 2236. ]\n", + " [3068.79999989 2235.99999998]\n", + " [2710.40000023 2236.00000007]\n", + " [2352.00000024 2236.00000019]]\n", + "DEBUG:root:fitpix2pix: ccdpx: shape: (96, 2)\n", + "DEBUG:root:fitpix2pix: visCut: True\n", + "DEBUG:root:make_az_asym: xyp: [[32.31363499 31.47041645]\n", + " [32.3144687 27.08398795]\n", + " [32.31530242 22.69755946]\n", + " [32.31613613 18.31113097]\n", + " [32.31696984 13.92470248]\n", + " [32.31780355 9.53827398]\n", + " [32.31863726 5.15184549]\n", + " [32.31947097 0.765417 ]\n", + " [32.31363499 31.47041645]\n", + " [27.9272065 31.46958273]\n", + " [23.540778 31.46874902]\n", + " [19.15434951 31.46791531]\n", + " [14.76792102 31.4670816 ]\n", + " [10.38149253 31.46624788]\n", + " [ 5.99506403 31.46541417]\n", + " [ 1.60863554 31.46458045]\n", + " [32.31947097 0.765417 ]\n", + " [27.93304248 0.76458329]\n", + " [23.54661399 0.76374957]\n", + " [19.1601855 0.76291586]\n", + " [14.77375701 0.76208215]\n", + " [10.38732851 0.76124844]\n", + " [ 6.00090002 0.76041472]\n", + " [ 1.61447153 0.75958101]\n", + " [ 1.60863554 31.46458045]\n", + " [ 1.60946926 27.07815197]\n", + " [ 1.61030297 22.69172348]\n", + " [ 1.61113668 18.30529498]\n", + " [ 1.61197039 13.91886648]\n", + " [ 1.6128041 9.53243799]\n", + " [ 1.61363782 5.1460095 ]\n", + " [ 1.61447153 0.75958101]\n", + " [32.29899849 29.55791363]\n", + " [32.30002028 24.18191372]\n", + " [32.30104209 18.80591382]\n", + " [32.30206388 13.42991392]\n", + " [32.30308568 8.05391402]\n", + " [32.30410748 2.67791411]\n", + " [30.40113787 31.45505294]\n", + " [25.02513797 31.45403115]\n", + " [19.64913807 31.45300935]\n", + " [14.27313817 31.45198755]\n", + " [ 8.89713826 31.45096576]\n", + " [ 3.52113836 31.44994396]\n", + " [30.40696816 0.7800535 ]\n", + " [25.03096826 0.7790317 ]\n", + " [19.65496836 0.7780099 ]\n", + " [14.27896845 0.77698811]\n", + " [ 8.90296855 0.77596631]\n", + " [ 3.52696865 0.77494451]\n", + " [ 1.62399904 29.55208334]\n", + " [ 1.62502084 24.17608344]\n", + " [ 1.62604264 18.80008353]\n", + " [ 1.62706443 13.42408364]\n", + " [ 1.62808623 8.04808373]\n", + " [ 1.62910803 2.67208383]\n", + " [32.29863784 31.4554136 ]\n", + " [32.29863784 31.4554136 ]\n", + " [ 1.62946868 0.77458386]\n", + " [ 1.62946868 0.77458386]\n", + " [30.40149852 29.55755297]\n", + " [25.02549862 29.55653118]\n", + " [19.64949872 29.55550938]\n", + " [14.27349882 29.55448759]\n", + " [ 8.89749891 29.55346579]\n", + " [ 3.52149901 29.55244399]\n", + " [30.40252032 24.18155307]\n", + " [25.02652042 24.18053128]\n", + " [19.65052052 24.17950948]\n", + " [14.27452061 24.17848769]\n", + " [ 8.89852071 24.17746589]\n", + " [ 3.52252081 24.17644409]\n", + " [30.40354212 18.80555317]\n", + " [25.02754221 18.80453137]\n", + " [19.65154231 18.80350958]\n", + " [14.27554241 18.80248779]\n", + " [ 8.89954251 18.80146598]\n", + " [ 3.5235426 18.80044419]\n", + " [30.40456392 13.42955327]\n", + " [25.02856401 13.42853147]\n", + " [19.65256411 13.42750967]\n", + " [14.27656421 13.42648788]\n", + " [ 8.9005643 13.42546608]\n", + " [ 3.5245644 13.42444429]\n", + " [30.40558571 8.05355336]\n", + " [25.02958581 8.05253157]\n", + " [19.6535859 8.05150977]\n", + " [14.277586 8.05048797]\n", + " [ 8.9015861 8.04946618]\n", + " [ 3.5255862 8.04844438]\n", + " [30.40660751 2.67755346]\n", + " [25.0306076 2.67653166]\n", + " [19.6546077 2.67550987]\n", + " [14.2786078 2.67448807]\n", + " [ 8.90260789 2.67346627]\n", + " [ 3.52660799 2.67244448]]\n", + "DEBUG:root:make_az_asym: xyp: shape: (96, 2)\n", + "DEBUG:root:radec2pix: camVec: [[-0.20629584 -0.20812128 -0.20967356 -0.21095376 -0.21196139 -0.21269501\n", + " -0.2131529 -0.21333373 -0.20629584 -0.1798852 -0.15276427 -0.12504507\n", + " -0.09683814 -0.06825398 -0.03940385 -0.01040007 -0.21333373 -0.18599064\n", + " -0.15793623 -0.12927467 -0.10011211 -0.07055816 -0.04072622 -0.01073294\n", + " -0.01040007 -0.01048759 -0.01056224 -0.01062379 -0.01067191 -0.0107063\n", + " -0.0107267 -0.01073294 -0.20703611 -0.20908844 -0.21073192 -0.21196628\n", + " -0.21278893 -0.21319686 -0.19488162 -0.16201965 -0.12820231 -0.09363367\n", + " -0.05851721 -0.02305821 -0.20150602 -0.16750285 -0.13253465 -0.0967959\n", + " -0.06048842 -0.02382238 -0.0105395 -0.01063912 -0.01071899 -0.01077856\n", + " -0.01081726 -0.01083465 -0.20621357 -0.20621357 -0.01083565 -0.01083565\n", + " -0.19565571 -0.16265759 -0.12870452 -0.09399937 -0.05874512 -0.0231472\n", + " -0.19758845 -0.16425347 -0.12996305 -0.09491705 -0.05931746 -0.02337052\n", + " -0.19913769 -0.16553623 -0.13097704 -0.09565767 -0.05977969 -0.02355053\n", + " -0.20030226 -0.16650264 -0.13174231 -0.09621721 -0.0601289 -0.023686\n", + " -0.20107886 -0.16714801 -0.13225382 -0.09659125 -0.06036201 -0.02377567\n", + " -0.201464 -0.16746808 -0.13250731 -0.0967762 -0.06047657 -0.02381854]\n", + " [-0.20078674 -0.17428103 -0.14708674 -0.11931584 -0.09107902 -0.06248699\n", + " -0.03365118 -0.00468399 -0.20078674 -0.20262142 -0.20419049 -0.20549514\n", + " -0.20653488 -0.20730818 -0.20781318 -0.2080483 -0.00468399 -0.00472909\n", + " -0.00476846 -0.004802 -0.00482954 -0.00485094 -0.00486604 -0.00487474\n", + " -0.2080483 -0.18056016 -0.15238099 -0.12361519 -0.09436952 -0.06475431\n", + " -0.03488367 -0.00487474 -0.1893284 -0.1563645 -0.12247778 -0.08787247\n", + " -0.05275245 -0.01732329 -0.20152974 -0.20359843 -0.20526972 -0.2065434\n", + " -0.20741673 -0.20788637 -0.0048039 -0.00485635 -0.0048999 -0.00493429\n", + " -0.00495921 -0.00497442 -0.19615466 -0.1619874 -0.12688576 -0.09104519\n", + " -0.05466885 -0.01796812 -0.20070413 -0.20070413 -0.00497744 -0.00497744\n", + " -0.19010422 -0.19204948 -0.19362274 -0.19482286 -0.19564642 -0.1960896\n", + " -0.15700026 -0.15859759 -0.1598933 -0.16088429 -0.1615658 -0.16193328\n", + " -0.12297381 -0.12422245 -0.12523802 -0.12601654 -0.12655298 -0.12684288\n", + " -0.088228 -0.0891244 -0.0898551 -0.09041635 -0.09080384 -0.09101389\n", + " -0.05296627 -0.0535061 -0.05394701 -0.05428637 -0.05452132 -0.05464944\n", + " -0.01739439 -0.0175743 -0.01772184 -0.01783608 -0.01791601 -0.0179608 ]\n", + " [ 0.95766733 0.96245086 0.96664496 0.9701867 0.97302465 0.97511856\n", + " 0.97643916 0.97696816 0.95766733 0.96259331 0.96693812 0.97063664\n", + " 0.97363531 0.97589175 0.97737455 0.97806326 0.97696816 0.98254014\n", + " 0.9874378 0.9915972 0.99496444 0.99749587 0.99915849 0.99993052\n", + " 0.97806326 0.98350803 0.98826539 0.99227336 0.99548004 0.9978438\n", + " 0.99933381 0.99993052 0.95983895 0.96531454 0.96984084 0.97331841\n", + " 0.97567313 0.97685567 0.95989943 0.96555544 0.97027239 0.9739469\n", + " 0.97650091 0.97788117 0.9794755 0.98585963 0.99116626 0.99529202\n", + " 0.99815658 0.99970383 0.98051633 0.98673547 0.99185942 0.99578843\n", + " 0.99844594 0.99977985 0.95770236 0.95770236 0.9999289 0.9999289\n", + " 0.96207028 0.96781171 0.97259724 0.9763238 0.97891342 0.98031274\n", + " 0.96763099 0.97358492 0.97854164 0.98239859 0.98507763 0.98652493\n", + " 0.97222509 0.97834888 0.98344316 0.98740541 0.99015692 0.99164321\n", + " 0.97575346 0.98200495 0.98720313 0.99124524 0.9940519 0.9955679\n", + " 0.97814205 0.98447887 0.98974676 0.9938426 0.99668644 0.9982225\n", + " 0.97934146 0.98572085 0.99102359 0.99514634 0.99800882 0.99955494]]\n", + "DEBUG:root:radec2pix: camVec Shape: (3, 96)\n", + "DEBUG:root:radec2pix: xyfp: [[32.31363499 31.47041645]\n", + " [32.3144687 27.08398795]\n", + " [32.31530242 22.69755946]\n", + " [32.31613613 18.31113097]\n", + " [32.31696984 13.92470248]\n", + " [32.31780355 9.53827398]\n", + " [32.31863726 5.15184549]\n", + " [32.31947097 0.765417 ]\n", + " [32.31363499 31.47041645]\n", + " [27.9272065 31.46958273]\n", + " [23.540778 31.46874902]\n", + " [19.15434951 31.46791531]\n", + " [14.76792102 31.4670816 ]\n", + " [10.38149253 31.46624788]\n", + " [ 5.99506403 31.46541417]\n", + " [ 1.60863554 31.46458045]\n", + " [32.31947097 0.765417 ]\n", + " [27.93304248 0.76458329]\n", + " [23.54661399 0.76374957]\n", + " [19.1601855 0.76291586]\n", + " [14.77375701 0.76208215]\n", + " [10.38732851 0.76124844]\n", + " [ 6.00090002 0.76041472]\n", + " [ 1.61447153 0.75958101]\n", + " [ 1.60863554 31.46458045]\n", + " [ 1.60946926 27.07815197]\n", + " [ 1.61030297 22.69172348]\n", + " [ 1.61113668 18.30529498]\n", + " [ 1.61197039 13.91886648]\n", + " [ 1.6128041 9.53243799]\n", + " [ 1.61363782 5.1460095 ]\n", + " [ 1.61447153 0.75958101]\n", + " [32.29899849 29.55791363]\n", + " [32.30002028 24.18191372]\n", + " [32.30104209 18.80591382]\n", + " [32.30206388 13.42991392]\n", + " [32.30308568 8.05391402]\n", + " [32.30410748 2.67791411]\n", + " [30.40113787 31.45505294]\n", + " [25.02513797 31.45403115]\n", + " [19.64913807 31.45300935]\n", + " [14.27313817 31.45198755]\n", + " [ 8.89713826 31.45096576]\n", + " [ 3.52113836 31.44994396]\n", + " [30.40696816 0.7800535 ]\n", + " [25.03096826 0.7790317 ]\n", + " [19.65496836 0.7780099 ]\n", + " [14.27896845 0.77698811]\n", + " [ 8.90296855 0.77596631]\n", + " [ 3.52696865 0.77494451]\n", + " [ 1.62399904 29.55208334]\n", + " [ 1.62502084 24.17608344]\n", + " [ 1.62604264 18.80008353]\n", + " [ 1.62706443 13.42408364]\n", + " [ 1.62808623 8.04808373]\n", + " [ 1.62910803 2.67208383]\n", + " [32.29863784 31.4554136 ]\n", + " [32.29863784 31.4554136 ]\n", + " [ 1.62946868 0.77458386]\n", + " [ 1.62946868 0.77458386]\n", + " [30.40149852 29.55755297]\n", + " [25.02549862 29.55653118]\n", + " [19.64949872 29.55550938]\n", + " [14.27349882 29.55448759]\n", + " [ 8.89749891 29.55346579]\n", + " [ 3.52149901 29.55244399]\n", + " [30.40252032 24.18155307]\n", + " [25.02652042 24.18053128]\n", + " [19.65052052 24.17950948]\n", + " [14.27452061 24.17848769]\n", + " [ 8.89852071 24.17746589]\n", + " [ 3.52252081 24.17644409]\n", + " [30.40354212 18.80555317]\n", + " [25.02754221 18.80453137]\n", + " [19.65154231 18.80350958]\n", + " [14.27554241 18.80248779]\n", + " [ 8.89954251 18.80146598]\n", + " [ 3.5235426 18.80044419]\n", + " [30.40456392 13.42955327]\n", + " [25.02856401 13.42853147]\n", + " [19.65256411 13.42750967]\n", + " [14.27656421 13.42648788]\n", + " [ 8.9005643 13.42546608]\n", + " [ 3.5245644 13.42444429]\n", + " [30.40558571 8.05355336]\n", + " [25.02958581 8.05253157]\n", + " [19.6535859 8.05150977]\n", + " [14.277586 8.05048797]\n", + " [ 8.9015861 8.04946618]\n", + " [ 3.5255862 8.04844438]\n", + " [30.40660751 2.67755346]\n", + " [25.0306076 2.67653166]\n", + " [19.6546077 2.67550987]\n", + " [14.2786078 2.67448807]\n", + " [ 8.90260789 2.67346627]\n", + " [ 3.52660799 2.67244448]]\n", + "DEBUG:root:radec2pix: xyfp Shape: (96, 2)\n", + "DEBUG:root:mm_to_pix: fitpx: [[0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]]\n", + "DEBUG:root:mm_to_pix: fitpx.shape: (96, 2)\n", + "DEBUG:root:cartToSphere: vec: [[-0.20629584 -0.20078674 0.95766733]\n", + " [-0.20812128 -0.17428103 0.96245086]\n", + " [-0.20967356 -0.14708674 0.96664496]\n", + " [-0.21095376 -0.11931584 0.9701867 ]\n", + " [-0.21196139 -0.09107902 0.97302465]\n", + " [-0.21269501 -0.06248699 0.97511856]\n", + " [-0.2131529 -0.03365118 0.97643916]\n", + " [-0.21333373 -0.00468399 0.97696816]\n", + " [-0.20629584 -0.20078674 0.95766733]\n", + " [-0.1798852 -0.20262142 0.96259331]\n", + " [-0.15276427 -0.20419049 0.96693812]\n", + " [-0.12504507 -0.20549514 0.97063664]\n", + " [-0.09683814 -0.20653488 0.97363531]\n", + " [-0.06825398 -0.20730818 0.97589175]\n", + " [-0.03940385 -0.20781318 0.97737455]\n", + " [-0.01040007 -0.2080483 0.97806326]\n", + " [-0.21333373 -0.00468399 0.97696816]\n", + " [-0.18599064 -0.00472909 0.98254014]\n", + " [-0.15793623 -0.00476846 0.9874378 ]\n", + " [-0.12927467 -0.004802 0.9915972 ]\n", + " [-0.10011211 -0.00482954 0.99496444]\n", + " [-0.07055816 -0.00485094 0.99749587]\n", + " [-0.04072622 -0.00486604 0.99915849]\n", + " [-0.01073294 -0.00487474 0.99993052]\n", + " [-0.01040007 -0.2080483 0.97806326]\n", + " [-0.01048759 -0.18056016 0.98350803]\n", + " [-0.01056224 -0.15238099 0.98826539]\n", + " [-0.01062379 -0.12361519 0.99227336]\n", + " [-0.01067191 -0.09436952 0.99548004]\n", + " [-0.0107063 -0.06475431 0.9978438 ]\n", + " [-0.0107267 -0.03488367 0.99933381]\n", + " [-0.01073294 -0.00487474 0.99993052]\n", + " [-0.20703611 -0.1893284 0.95983895]\n", + " [-0.20908844 -0.1563645 0.96531454]\n", + " [-0.21073192 -0.12247778 0.96984084]\n", + " [-0.21196628 -0.08787247 0.97331841]\n", + " [-0.21278893 -0.05275245 0.97567313]\n", + " [-0.21319686 -0.01732329 0.97685567]\n", + " [-0.19488162 -0.20152974 0.95989943]\n", + " [-0.16201965 -0.20359843 0.96555544]\n", + " [-0.12820231 -0.20526972 0.97027239]\n", + " [-0.09363367 -0.2065434 0.9739469 ]\n", + " [-0.05851721 -0.20741673 0.97650091]\n", + " [-0.02305821 -0.20788637 0.97788117]\n", + " [-0.20150602 -0.0048039 0.9794755 ]\n", + " [-0.16750285 -0.00485635 0.98585963]\n", + " [-0.13253465 -0.0048999 0.99116626]\n", + " [-0.0967959 -0.00493429 0.99529202]\n", + " [-0.06048842 -0.00495921 0.99815658]\n", + " [-0.02382238 -0.00497442 0.99970383]\n", + " [-0.0105395 -0.19615466 0.98051633]\n", + " [-0.01063912 -0.1619874 0.98673547]\n", + " [-0.01071899 -0.12688576 0.99185942]\n", + " [-0.01077856 -0.09104519 0.99578843]\n", + " [-0.01081726 -0.05466885 0.99844594]\n", + " [-0.01083465 -0.01796812 0.99977985]\n", + " [-0.20621357 -0.20070413 0.95770236]\n", + " [-0.20621357 -0.20070413 0.95770236]\n", + " [-0.01083565 -0.00497744 0.9999289 ]\n", + " [-0.01083565 -0.00497744 0.9999289 ]\n", + " [-0.19565571 -0.19010422 0.96207028]\n", + " [-0.16265759 -0.19204948 0.96781171]\n", + " [-0.12870452 -0.19362274 0.97259724]\n", + " [-0.09399937 -0.19482286 0.9763238 ]\n", + " [-0.05874512 -0.19564642 0.97891342]\n", + " [-0.0231472 -0.1960896 0.98031274]\n", + " [-0.19758845 -0.15700026 0.96763099]\n", + " [-0.16425347 -0.15859759 0.97358492]\n", + " [-0.12996305 -0.1598933 0.97854164]\n", + " [-0.09491705 -0.16088429 0.98239859]\n", + " [-0.05931746 -0.1615658 0.98507763]\n", + " [-0.02337052 -0.16193328 0.98652493]\n", + " [-0.19913769 -0.12297381 0.97222509]\n", + " [-0.16553623 -0.12422245 0.97834888]\n", + " [-0.13097704 -0.12523802 0.98344316]\n", + " [-0.09565767 -0.12601654 0.98740541]\n", + " [-0.05977969 -0.12655298 0.99015692]\n", + " [-0.02355053 -0.12684288 0.99164321]\n", + " [-0.20030226 -0.088228 0.97575346]\n", + " [-0.16650264 -0.0891244 0.98200495]\n", + " [-0.13174231 -0.0898551 0.98720313]\n", + " [-0.09621721 -0.09041635 0.99124524]\n", + " [-0.0601289 -0.09080384 0.9940519 ]\n", + " [-0.023686 -0.09101389 0.9955679 ]\n", + " [-0.20107886 -0.05296627 0.97814205]\n", + " [-0.16714801 -0.0535061 0.98447887]\n", + " [-0.13225382 -0.05394701 0.98974676]\n", + " [-0.09659125 -0.05428637 0.9938426 ]\n", + " [-0.06036201 -0.05452132 0.99668644]\n", + " [-0.02377567 -0.05464944 0.9982225 ]\n", + " [-0.201464 -0.01739439 0.97934146]\n", + " [-0.16746808 -0.0175743 0.98572085]\n", + " [-0.13250731 -0.01772184 0.99102359]\n", + " [-0.0967762 -0.01783608 0.99514634]\n", + " [-0.06047657 -0.01791601 0.99800882]\n", + " [-0.02381854 -0.0179608 0.99955494]]\n", + "DEBUG:root:radec2pix: lng: [224.22465666 219.9428498 215.04979529 209.49258103 203.25301711\n", + " 196.37209253 188.97143587 181.25779309 224.22465666 228.40166279\n", + " 233.19815281 238.6792283 244.87949815 251.77642798 259.26349599\n", + " 267.13824006 181.25779309 181.45651552 181.7293675 182.12731457\n", + " 182.76188514 183.93294711 186.8134933 204.42682228 267.13824006\n", + " 266.67578867 266.03490179 265.0879329 263.54803827 260.61180811\n", + " 252.90738353 204.42682228 222.44199402 216.7905754 210.16523251\n", + " 202.51687812 193.92347078 184.64535837 225.96080389 231.48791131\n", + " 238.01293878 245.61347707 254.24497485 263.67077373 181.36567301\n", + " 181.66068982 182.11730117 182.91819426 184.68697431 191.79462375\n", + " 266.92442169 266.24228499 265.17126169 263.2483557 258.80752919\n", + " 238.9103071 224.22429417 224.22429417 204.67204832 204.67204832\n", + " 224.17550953 229.73684595 236.38729877 244.24332674 253.28700279\n", + " 263.26773103 218.4700285 223.99636381 230.89540499 239.46063162\n", + " 249.83973486 261.78766678 211.69663969 216.8854629 223.71683254\n", + " 232.7982941 244.71540545 259.48183646 203.77225927 208.15895021\n", + " 214.29602039 223.21973304 236.48809111 255.41258234 194.75709541\n", + " 197.7504966 202.19079752 209.33692857 222.08957905 246.48817507\n", + " 184.93467768 185.99075879 187.61766642 190.44256036 196.50176943\n", + " 217.01878407]\n", + "DEBUG:root:radec2pix: lat: [73.26908943 74.24907619 75.16003276 75.97420276 76.66164507 77.19203919\n", + " 77.53795274 77.67919539 73.26908943 74.27917066 75.22575502 76.08096918\n", + " 76.81416078 77.39343277 77.78879656 77.97677996 77.67919539 79.27760057\n", + " 80.9086962 82.56716816 84.24766937 85.94438651 87.64930302 89.3245763\n", + " 77.97677996 79.57988268 81.21386953 82.87289707 84.55034798 86.23677698\n", + " 87.90848861 89.3245763 73.70687233 74.86526918 75.89266936 76.7347974\n", + " 77.33616788 77.64902834 73.71922865 74.91822462 75.99447399 76.89265343\n", + " 77.55435927 77.92679672 78.37161008 80.3532483 82.37868114 84.43807116\n", + " 86.5205023 88.60550058 78.67128345 80.65746446 82.68422414 84.73967937\n", + " 86.80532112 88.79773368 73.27606371 73.27606371 89.31677804 89.31677804\n", + " 74.16894713 75.42332545 76.55590489 77.50736059 78.21290493 78.61205636\n", + " 75.38223897 76.80151051 78.10907648 79.23409871 80.08944165 80.58344411\n", + " 76.46449862 78.05559614 79.5593541 80.89695848 81.95437214 82.58757556\n", + " 77.35718097 79.11401738 80.82399404 82.41287861 83.74766412 84.60361539\n", + " 77.99846994 79.89205969 81.78816951 83.63850339 85.33442441 86.58329889\n", + " 78.33357011 80.30591073 82.31728996 84.35260664 86.38369379 88.29053235]\n", + "DEBUG:root:optics_fp: rtanth: [45.0390902 42.09683712 39.42396804 37.07878541 35.12698266 33.63710755\n", + " 32.6724136 32.28002056 45.0390902 42.00763364 39.23320577 36.77402747\n", + " 34.69719395 33.07480842 31.97611838 31.45604637 32.28002056 27.89482687\n", + " 23.51009392 19.1261386 14.74365456 10.36450837 5.99601772 1.72131774\n", + " 31.45604637 27.07594694 22.69829207 18.32483384 13.95951711 9.61343916\n", + " 5.33383708 1.72131774 43.71543665 40.28285706 37.31193504 34.92069834\n", + " 33.23450917 32.36375719 43.67830098 40.1281473 37.02087501 34.47644006\n", + " 32.62678968 31.59418683 30.3683705 24.99424245 19.62114004 14.2502235\n", + " 8.88545749 3.55479843 29.54687443 24.18030108 18.81910954 13.46972753\n", + " 8.15542687 3.06450112 45.0178789 45.0178789 1.74119478 1.74119478\n", + " 42.33466612 38.66132674 35.42562866 32.75751668 30.80482728 29.70896533\n", + " 38.78006096 34.73279944 31.09090442 28.01292685 25.70226752 24.37810068\n", + " 35.68424094 31.23842634 27.13146257 23.54136773 20.73833358 19.07259071\n", + " 33.17589074 28.33926527 23.73585762 19.53127415 16.04223037 13.82166388\n", + " 31.39613279 26.23340206 21.17707168 16.3263008 11.93442847 8.72443809\n", + " 30.47289508 25.12113778 19.7825313 14.471637 9.23638255 4.35844005]\n", + "DEBUG:root:radec2pix: curVec: [[-0.71958005 0.64070795 -0.26776458]\n", + " [-0.73091358 0.63801628 -0.24228199]\n", + " [-0.74188118 0.63475581 -0.21609576]\n", + " [-0.75240633 0.63091173 -0.18930163]\n", + " [-0.76242096 0.6264756 -0.16199569]\n", + " [-0.77186459 0.62144574 -0.13427674]\n", + " [-0.78068393 0.61582781 -0.10624837]\n", + " [-0.78883319 0.60963527 -0.07801953]\n", + " [-0.71958005 0.64070795 -0.26776458]\n", + " [-0.73547679 0.61828675 -0.27711978]\n", + " [-0.75074613 0.59541086 -0.28612263]\n", + " [-0.7653384 0.57217693 -0.29473834]\n", + " [-0.77921303 0.54868775 -0.30293368]\n", + " [-0.79233849 0.52505197 -0.31067693]\n", + " [-0.80469233 0.50138334 -0.31793867]\n", + " [-0.81626114 0.477799 -0.32469349]\n", + " [-0.78883319 0.60963527 -0.07801953]\n", + " [-0.80520814 0.5864507 -0.08783756]\n", + " [-0.82080688 0.56281581 -0.09754193]\n", + " [-0.83557823 0.53883167 -0.10709548]\n", + " [-0.84948246 0.51460258 -0.11646344]\n", + " [-0.86249064 0.49023586 -0.12561326]\n", + " [-0.87458338 0.46584324 -0.13451389]\n", + " [-0.88574953 0.44154293 -0.14313491]\n", + " [-0.81626114 0.477799 -0.32469349]\n", + " [-0.82785581 0.47360749 -0.30058394]\n", + " [-0.83901006 0.46909416 -0.27570417]\n", + " [-0.84964664 0.46424905 -0.25014677]\n", + " [-0.85969596 0.45906709 -0.22400953]\n", + " [-0.86909668 0.45354927 -0.19739307]\n", + " [-0.87779593 0.44770317 -0.17040005]\n", + " [-0.88574953 0.44154293 -0.14313491]\n", + " [-0.72461682 0.639527 -0.25677943]\n", + " [-0.73827179 0.63584702 -0.22506295]\n", + " [-0.75130001 0.63129741 -0.19238468]\n", + " [-0.76357272 0.62585999 -0.1589213 ]\n", + " [-0.7749785 0.61953174 -0.12485494]\n", + " [-0.7854223 0.61232631 -0.0903786 ]\n", + " [-0.72662419 0.63098549 -0.27179883]\n", + " [-0.74569251 0.60318757 -0.28303255]\n", + " [-0.76376797 0.57480201 -0.29370245]\n", + " [-0.78077206 0.54601552 -0.30374667]\n", + " [-0.79664676 0.51702803 -0.31310694]\n", + " [-0.8113545 0.48805052 -0.32173059]\n", + " [-0.79603773 0.59961052 -0.08240846]\n", + " [-0.81559195 0.57088015 -0.09436961]\n", + " [-0.83392823 0.54157335 -0.10612267]\n", + " [-0.85096863 0.51188086 -0.11760263]\n", + " [-0.86665976 0.48200044 -0.1287495 ]\n", + " [-0.88096939 0.45214037 -0.13950638]\n", + " [-0.82132725 0.476091 -0.31425929]\n", + " [-0.83525189 0.47073978 -0.28418013]\n", + " [-0.84843745 0.46489463 -0.25303534]\n", + " [-0.86075258 0.45854409 -0.22100296]\n", + " [-0.87208441 0.45169002 -0.18826818]\n", + " [-0.88233918 0.44434913 -0.15502072]\n", + " [-0.71967471 0.6406239 -0.2677113 ]\n", + " [-0.71967471 0.6406239 -0.2677113 ]\n", + " [-0.88568705 0.44164731 -0.14319952]\n", + " [-0.88568705 0.44164731 -0.14319952]\n", + " [-0.73159235 0.62985057 -0.26088482]\n", + " [-0.75072138 0.60194166 -0.27218312]\n", + " [-0.76883789 0.57344068 -0.28293829]\n", + " [-0.78586326 0.54453468 -0.29308858]\n", + " [-0.80173957 0.51542393 -0.30257534]\n", + " [-0.81642942 0.48632055 -0.31134439]\n", + " [-0.74531268 0.62607511 -0.2292138 ]\n", + " [-0.76459247 0.59788893 -0.24068067]\n", + " [-0.78280807 0.56910197 -0.25166341]\n", + " [-0.79988046 0.53990214 -0.26210099]\n", + " [-0.815752 0.51048994 -0.27193509]\n", + " [-0.83038591 0.48107871 -0.28110942]\n", + " [-0.75839369 0.62144824 -0.1965734 ]\n", + " [-0.77779253 0.59304004 -0.20818811]\n", + " [-0.79608128 0.56402811 -0.21937844]\n", + " [-0.81318066 0.53460132 -0.23008397]\n", + " [-0.82903367 0.50495975 -0.24024742]\n", + " [-0.84360436 0.47531611 -0.2498125 ]\n", + " [-0.77070629 0.61595217 -0.16314025]\n", + " [-0.79019158 0.58737835 -0.17488266]\n", + " [-0.8085267 0.55820335 -0.18626218]\n", + " [-0.82563248 0.52861708 -0.19721813]\n", + " [-0.84145292 0.49881892 -0.20769371]\n", + " [-0.85595323 0.46902011 -0.2176332 ]\n", + " [-0.78213861 0.60958457 -0.12909626]\n", + " [-0.80167662 0.58090341 -0.14094614]\n", + " [-0.82003077 0.55162864 -0.15249717]\n", + " [-0.83712226 0.52195093 -0.16368734]\n", + " [-0.85289634 0.49206893 -0.17445919]\n", + " [-0.86731949 0.4621923 -0.18475707]\n", + " [-0.79259515 0.60235979 -0.09463407]\n", + " [-0.8121513 0.57363147 -0.10657017]\n", + " [-0.83049702 0.54432153 -0.11827411]\n", + " [-0.84755416 0.51462083 -0.12968174]\n", + " [-0.86326903 0.48472731 -0.14073385]\n", + " [-0.87760915 0.45484952 -0.151374 ]]\n", + "DEBUG:root:radec2pix: curVec Shape: (96, 3)\n", + "DEBUG:root:optics_fp: cphi: [-0.71661052 -0.76668522 -0.81865324 -0.87041945 -0.91877042 -0.95945138\n", + " -0.98776621 -0.99975905 -0.71661052 -0.66390451 -0.59904941 -0.51982885\n", + " -0.42452343 -0.31272572 -0.18629262 -0.04992637 -0.99975905 -0.9996769\n", + " -0.99954452 -0.99931081 -0.99883841 -0.997645 -0.9929376 -0.91049017\n", + " -0.04992637 -0.05798589 -0.06914879 -0.08562676 -0.11237014 -0.16312264\n", + " -0.29391715 -0.91049017 -0.73796092 -0.80082989 -0.86457988 -0.92376676\n", + " -0.97061799 -0.99671508 -0.69515031 -0.62267974 -0.52972774 -0.41289021\n", + " -0.27152486 -0.11024131 -0.99971595 -0.99957998 -0.99931728 -0.99870324\n", + " -0.99665599 -0.97888657 -0.05365319 -0.06553749 -0.08417765 -0.1175659\n", + " -0.19410544 -0.51637928 -0.71661494 -0.71661494 -0.90871193 -0.90871193\n", + " -0.71720854 -0.64629919 -0.55357618 -0.43455016 -0.28757779 -0.11723007\n", + " -0.78293369 -0.71938388 -0.63073804 -0.50813028 -0.34464727 -0.14284199\n", + " -0.85084193 -0.79983697 -0.72276415 -0.60462283 -0.42711476 -0.18254722\n", + " -0.91515494 -0.88164179 -0.82613743 -0.72873282 -0.5521103 -0.25185684\n", + " -0.9670144 -0.95239316 -0.92593126 -0.87175367 -0.74209777 -0.39893833\n", + " -0.99629342 -0.99453874 -0.99117471 -0.98343711 -0.95881096 -0.79843817]\n", + "DEBUG:root:optics_fp: sphi: [-0.69747355 -0.64202319 -0.57428814 -0.49231086 -0.39479224 -0.28187416\n", + " -0.15594205 -0.02195087 -0.69747355 -0.74781736 -0.80071206 -0.85427043\n", + " -0.90541695 -0.94984347 -0.98249431 -0.9987529 -0.02195087 -0.02541825\n", + " -0.03017857 -0.03712011 -0.04818532 -0.06858898 -0.11863781 -0.41353071\n", + " -0.9987529 -0.9983174 -0.99760636 -0.99632728 -0.99366642 -0.9866058\n", + " -0.9558309 -0.41353071 -0.67484345 -0.59889188 -0.50249541 -0.38295557\n", + " -0.24062567 -0.080988 -0.71886442 -0.7824768 -0.84816774 -0.91078081\n", + " -0.96243143 -0.99390485 -0.02383323 -0.02898045 -0.03694547 -0.05091008\n", + " -0.08171193 -0.2044042 -0.99855963 -0.99785011 -0.99645076 -0.99306508\n", + " -0.98098067 -0.85635999 -0.69746902 -0.69746902 -0.41742381 -0.41742381\n", + " -0.6968586 -0.76308411 -0.83279855 -0.90064763 -0.95775728 -0.99310478\n", + " -0.62210517 -0.69461272 -0.77599583 -0.86128022 -0.93873226 -0.98974551\n", + " -0.52542175 -0.60021731 -0.69109478 -0.79651192 -0.90419742 -0.98319709\n", + " -0.40310226 -0.47191923 -0.56346867 -0.68479813 -0.83377108 -0.9677645\n", + " -0.2547217 -0.30487255 -0.37769207 -0.48994442 -0.67029166 -0.91697776\n", + " -0.08601994 -0.10436806 -0.13256201 -0.18124971 -0.28404496 -0.60207682]\n", + "DEBUG:root:radec2pix: camVec: [[ 0.00162968 0.00164392 0.00165615 0.00166636 0.0016745 0.00168051\n", + " 0.00168433 0.00168589 0.00162968 0.03065921 0.0595691 0.08824658\n", + " 0.11657974 0.14445783 0.17177197 0.1984171 0.00168589 0.03171597\n", + " 0.06161834 0.09127522 0.12057355 0.14940474 0.17766265 0.205241\n", + " 0.1984171 0.20017053 0.20167036 0.20291139 0.20389075 0.20460646\n", + " 0.20505694 0.205241 0.00173588 0.00175296 0.00176683 0.00177741\n", + " 0.00178459 0.00178824 0.01429458 0.04980805 0.08502967 0.11975303\n", + " 0.15377432 0.1868945 0.0147871 0.05152109 0.08794575 0.12385093\n", + " 0.15903647 0.19330699 0.19912208 0.20110045 0.20269257 0.20389226\n", + " 0.20469584 0.20510055 0.00172908 0.00172908 0.20514779 0.20514779\n", + " 0.01435076 0.05000388 0.08536435 0.12022547 0.15438306 0.18763689\n", + " 0.01449201 0.05049589 0.08620426 0.1214098 0.15590842 0.18949858\n", + " 0.01460664 0.05089468 0.08688344 0.12236492 0.15713605 0.19099623\n", + " 0.0146941 0.05119852 0.08739951 0.12308827 0.15806297 0.19212497\n", + " 0.01475342 0.05140434 0.08774826 0.12357559 0.15868553 0.19288138\n", + " 0.01478357 0.05150885 0.08792506 0.1238221 0.15899976 0.19326249]\n", + " [-0.20886687 -0.18138669 -0.15321267 -0.12445123 -0.0952084 -0.06559229\n", + " -0.03571531 -0.00569466 -0.20886687 -0.20871575 -0.20829328 -0.20760055\n", + " -0.20663909 -0.20541086 -0.20391875 -0.20216791 -0.00569466 -0.00569039\n", + " -0.0056785 -0.00565918 -0.00563263 -0.00559908 -0.00555867 -0.00551146\n", + " -0.20216791 -0.17558603 -0.14832064 -0.12047648 -0.09216227 -0.06348867\n", + " -0.03456748 -0.00551146 -0.19697755 -0.16281769 -0.12772153 -0.09188434\n", + " -0.05550542 -0.01879375 -0.20874173 -0.20837407 -0.20760004 -0.20642226\n", + " -0.2048444 -0.20287264 -0.00579649 -0.00578593 -0.0057639 -0.00573078\n", + " -0.00568698 -0.00563273 -0.19067465 -0.1576223 -0.12364673 -0.08894663\n", + " -0.05372559 -0.0181899 -0.20877415 -0.20877415 -0.0056111 -0.0056111\n", + " -0.19694699 -0.19660038 -0.19587092 -0.19476145 -0.19327535 -0.19141752\n", + " -0.16279237 -0.16250539 -0.1619024 -0.1609872 -0.15976346 -0.15823425\n", + " -0.12770151 -0.1274748 -0.12699943 -0.12628004 -0.12532102 -0.12412508\n", + " -0.09186978 -0.09170505 -0.09136033 -0.09084026 -0.09014925 -0.08928993\n", + " -0.05549654 -0.05539609 -0.05518622 -0.05487037 -0.05445187 -0.05393273\n", + " -0.01879073 -0.01875652 -0.01868512 -0.01857781 -0.01843585 -0.01826001]\n", + " [ 0.97794273 0.98341048 0.98819185 0.99222433 0.99545595 0.99784509\n", + " 0.99936059 0.99998236 0.97794273 0.97749565 0.9762507 0.9742251\n", + " 0.97144709 0.96795574 0.96380057 0.95904056 0.99998236 0.99948072\n", + " 0.99808363 0.99580962 0.99268842 0.98876027 0.98407575 0.97869595\n", + " 0.95904056 0.96389901 0.96815807 0.97175737 0.97464592 0.97678318\n", + " 0.97813943 0.97869595 0.98040646 0.98665461 0.99180849 0.9957681\n", + " 0.99845679 0.99982178 0.97786633 0.97678012 0.97451125 0.97110713\n", + " 0.96663966 0.961204 0.99987386 0.99865515 0.99610859 0.99228429\n", + " 0.98725633 0.98112215 0.96124585 0.96680599 0.97140476 0.97494433\n", + " 0.97735008 0.97857186 0.97796235 0.97796235 0.97871492 0.97871492\n", + " 0.9803091 0.97920779 0.97690711 0.97345458 0.96892234 0.96340632\n", + " 0.98655391 0.98541472 0.9830343 0.97946045 0.97476571 0.96904706\n", + " 0.99170508 0.99053516 0.98809029 0.9844187 0.97959323 0.97371115\n", + " 0.99566261 0.99446915 0.99197511 0.98822939 0.98330525 0.97730001\n", + " 0.99834987 0.99714035 0.99461285 0.99081699 0.9858265 0.97973876\n", + " 0.99971414 0.99849639 0.99595183 0.99213051 0.98710648 0.98097716]]\n", + "DEBUG:root:optics_fp: xyfp: [[32.275486 31.41357429]\n", + " [32.27502267 27.02714574]\n", + " [32.27455935 22.64071719]\n", + " [32.27409601 18.25428864]\n", + " [32.27363269 13.8678601 ]\n", + " [32.27316936 9.48143155]\n", + " [32.27270604 5.095003 ]\n", + " [32.27224271 0.70857446]\n", + " [32.275486 31.41357429]\n", + " [27.88905745 31.41403761]\n", + " [23.5026289 31.41450094]\n", + " [19.11620036 31.41496427]\n", + " [14.72977181 31.41542759]\n", + " [10.34334326 31.41589092]\n", + " [ 5.95691471 31.41635424]\n", + " [ 1.57048617 31.41681757]\n", + " [32.27224271 0.70857446]\n", + " [27.88581416 0.70903778]\n", + " [23.49938562 0.70950111]\n", + " [19.11295707 0.70996444]\n", + " [14.72652852 0.71042776]\n", + " [10.34009998 0.71089109]\n", + " [ 5.95367142 0.71135442]\n", + " [ 1.56724288 0.71181774]\n", + " [ 1.57048617 31.41681757]\n", + " [ 1.57002284 27.03038902]\n", + " [ 1.56955951 22.64396047]\n", + " [ 1.56909619 18.25753194]\n", + " [ 1.56863286 13.87110338]\n", + " [ 1.56816953 9.48467484]\n", + " [ 1.56770621 5.09824629]\n", + " [ 1.56724288 0.71181774]\n", + " [32.26028399 29.50107588]\n", + " [32.25971613 24.12507591]\n", + " [32.25914828 18.74907594]\n", + " [32.25858043 13.37307597]\n", + " [32.25801258 7.997076 ]\n", + " [32.25744472 2.62107603]\n", + " [30.36298443 31.3987763 ]\n", + " [24.98698446 31.39934415]\n", + " [19.61098448 31.399912 ]\n", + " [14.23498451 31.40047985]\n", + " [ 8.85898454 31.40104771]\n", + " [ 3.48298457 31.40161556]\n", + " [30.35974431 0.72377647]\n", + " [24.98374433 0.72434432]\n", + " [19.60774436 0.72491217]\n", + " [14.23174439 0.72548003]\n", + " [ 8.85574442 0.72604788]\n", + " [ 3.47974445 0.72661573]\n", + " [ 1.58528416 29.504316 ]\n", + " [ 1.5847163 24.12831603]\n", + " [ 1.58414845 18.75231606]\n", + " [ 1.5835806 13.37631609]\n", + " [ 1.58301275 8.00031612]\n", + " [ 1.5824449 2.62431615]\n", + " [32.26048441 31.39857587]\n", + " [32.26048441 31.39857587]\n", + " [ 1.58224447 0.72681616]\n", + " [ 1.58224447 0.72681616]\n", + " [30.36278399 29.50127631]\n", + " [24.98678403 29.50184416]\n", + " [19.61078405 29.50241201]\n", + " [14.23478409 29.50297987]\n", + " [ 8.85878411 29.50354772]\n", + " [ 3.48278414 29.50411557]\n", + " [30.36221615 24.12527634]\n", + " [24.98621618 24.12584419]\n", + " [19.6102162 24.12641204]\n", + " [14.23421623 24.1269799 ]\n", + " [ 8.85821626 24.12754775]\n", + " [ 3.48221629 24.1281156 ]\n", + " [30.36164829 18.74927637]\n", + " [24.98564832 18.74984422]\n", + " [19.60964835 18.75041208]\n", + " [14.23364838 18.75097993]\n", + " [ 8.85764841 18.75154778]\n", + " [ 3.48164844 18.75211563]\n", + " [30.36108043 13.3732764 ]\n", + " [24.98508046 13.37384425]\n", + " [19.60908049 13.3744121 ]\n", + " [14.23308053 13.37497996]\n", + " [ 8.85708056 13.37554781]\n", + " [ 3.48108059 13.37611567]\n", + " [30.36051258 7.99727643]\n", + " [24.98451261 7.99784428]\n", + " [19.60851265 7.99841214]\n", + " [14.23251268 7.99897999]\n", + " [ 8.85651271 7.99954784]\n", + " [ 3.48051273 8.00011569]\n", + " [30.35994473 2.62127646]\n", + " [24.98394476 2.62184431]\n", + " [19.60794479 2.62241216]\n", + " [14.23194482 2.62298002]\n", + " [ 8.85594485 2.62354787]\n", + " [ 3.47994488 2.62411572]]\n", + "DEBUG:root:optics_fp: xyfp shape: (96, 2)\n", + "DEBUG:root:radec2pix: xyfp: [[32.31363499 31.47041645]\n", + " [32.3144687 27.08398795]\n", + " [32.31530242 22.69755946]\n", + " [32.31613613 18.31113097]\n", + " [32.31696984 13.92470248]\n", + " [32.31780355 9.53827398]\n", + " [32.31863726 5.15184549]\n", + " [32.31947097 0.765417 ]\n", + " [32.31363499 31.47041645]\n", + " [27.9272065 31.46958273]\n", + " [23.540778 31.46874902]\n", + " [19.15434951 31.46791531]\n", + " [14.76792102 31.4670816 ]\n", + " [10.38149253 31.46624788]\n", + " [ 5.99506403 31.46541417]\n", + " [ 1.60863554 31.46458045]\n", + " [32.31947097 0.765417 ]\n", + " [27.93304248 0.76458329]\n", + " [23.54661399 0.76374957]\n", + " [19.1601855 0.76291586]\n", + " [14.77375701 0.76208215]\n", + " [10.38732851 0.76124844]\n", + " [ 6.00090002 0.76041472]\n", + " [ 1.61447153 0.75958101]\n", + " [ 1.60863554 31.46458045]\n", + " [ 1.60946926 27.07815197]\n", + " [ 1.61030297 22.69172348]\n", + " [ 1.61113668 18.30529498]\n", + " [ 1.61197039 13.91886648]\n", + " [ 1.6128041 9.53243799]\n", + " [ 1.61363782 5.1460095 ]\n", + " [ 1.61447153 0.75958101]\n", + " [32.29899849 29.55791363]\n", + " [32.30002028 24.18191372]\n", + " [32.30104209 18.80591382]\n", + " [32.30206388 13.42991392]\n", + " [32.30308568 8.05391402]\n", + " [32.30410748 2.67791411]\n", + " [30.40113787 31.45505294]\n", + " [25.02513797 31.45403115]\n", + " [19.64913807 31.45300935]\n", + " [14.27313817 31.45198755]\n", + " [ 8.89713826 31.45096576]\n", + " [ 3.52113836 31.44994396]\n", + " [30.40696816 0.7800535 ]\n", + " [25.03096826 0.7790317 ]\n", + " [19.65496836 0.7780099 ]\n", + " [14.27896845 0.77698811]\n", + " [ 8.90296855 0.77596631]\n", + " [ 3.52696865 0.77494451]\n", + " [ 1.62399904 29.55208334]\n", + " [ 1.62502084 24.17608344]\n", + " [ 1.62604264 18.80008353]\n", + " [ 1.62706443 13.42408364]\n", + " [ 1.62808623 8.04808373]\n", + " [ 1.62910803 2.67208383]\n", + " [32.29863784 31.4554136 ]\n", + " [32.29863784 31.4554136 ]\n", + " [ 1.62946868 0.77458386]\n", + " [ 1.62946868 0.77458386]\n", + " [30.40149852 29.55755297]\n", + " [25.02549862 29.55653118]\n", + " [19.64949872 29.55550938]\n", + " [14.27349882 29.55448759]\n", + " [ 8.89749891 29.55346579]\n", + " [ 3.52149901 29.55244399]\n", + " [30.40252032 24.18155307]\n", + " [25.02652042 24.18053128]\n", + " [19.65052052 24.17950948]\n", + " [14.27452061 24.17848769]\n", + " [ 8.89852071 24.17746589]\n", + " [ 3.52252081 24.17644409]\n", + " [30.40354212 18.80555317]\n", + " [25.02754221 18.80453137]\n", + " [19.65154231 18.80350958]\n", + " [14.27554241 18.80248779]\n", + " [ 8.89954251 18.80146598]\n", + " [ 3.5235426 18.80044419]\n", + " [30.40456392 13.42955327]\n", + " [25.02856401 13.42853147]\n", + " [19.65256411 13.42750967]\n", + " [14.27656421 13.42648788]\n", + " [ 8.9005643 13.42546608]\n", + " [ 3.5245644 13.42444429]\n", + " [30.40558571 8.05355336]\n", + " [25.02958581 8.05253157]\n", + " [19.6535859 8.05150977]\n", + " [14.277586 8.05048797]\n", + " [ 8.9015861 8.04946618]\n", + " [ 3.5255862 8.04844438]\n", + " [30.40660751 2.67755346]\n", + " [25.0306076 2.67653166]\n", + " [19.6546077 2.67550987]\n", + " [14.2786078 2.67448807]\n", + " [ 8.90260789 2.67346627]\n", + " [ 3.52660799 2.67244448]]\n", + "DEBUG:root:make_az_asym: xyp: [[32.275486 31.41357429]\n", + " [32.27502267 27.02714574]\n", + " [32.27455935 22.64071719]\n", + " [32.27409601 18.25428864]\n", + " [32.27363269 13.8678601 ]\n", + " [32.27316936 9.48143155]\n", + " [32.27270604 5.095003 ]\n", + " [32.27224271 0.70857446]\n", + " [32.275486 31.41357429]\n", + " [27.88905745 31.41403761]\n", + " [23.5026289 31.41450094]\n", + " [19.11620036 31.41496427]\n", + " [14.72977181 31.41542759]\n", + " [10.34334326 31.41589092]\n", + " [ 5.95691471 31.41635424]\n", + " [ 1.57048617 31.41681757]\n", + " [32.27224271 0.70857446]\n", + " [27.88581416 0.70903778]\n", + " [23.49938562 0.70950111]\n", + " [19.11295707 0.70996444]\n", + " [14.72652852 0.71042776]\n", + " [10.34009998 0.71089109]\n", + " [ 5.95367142 0.71135442]\n", + " [ 1.56724288 0.71181774]\n", + " [ 1.57048617 31.41681757]\n", + " [ 1.57002284 27.03038902]\n", + " [ 1.56955951 22.64396047]\n", + " [ 1.56909619 18.25753194]\n", + " [ 1.56863286 13.87110338]\n", + " [ 1.56816953 9.48467484]\n", + " [ 1.56770621 5.09824629]\n", + " [ 1.56724288 0.71181774]\n", + " [32.26028399 29.50107588]\n", + " [32.25971613 24.12507591]\n", + " [32.25914828 18.74907594]\n", + " [32.25858043 13.37307597]\n", + " [32.25801258 7.997076 ]\n", + " [32.25744472 2.62107603]\n", + " [30.36298443 31.3987763 ]\n", + " [24.98698446 31.39934415]\n", + " [19.61098448 31.399912 ]\n", + " [14.23498451 31.40047985]\n", + " [ 8.85898454 31.40104771]\n", + " [ 3.48298457 31.40161556]\n", + " [30.35974431 0.72377647]\n", + " [24.98374433 0.72434432]\n", + " [19.60774436 0.72491217]\n", + " [14.23174439 0.72548003]\n", + " [ 8.85574442 0.72604788]\n", + " [ 3.47974445 0.72661573]\n", + " [ 1.58528416 29.504316 ]\n", + " [ 1.5847163 24.12831603]\n", + " [ 1.58414845 18.75231606]\n", + " [ 1.5835806 13.37631609]\n", + " [ 1.58301275 8.00031612]\n", + " [ 1.5824449 2.62431615]\n", + " [32.26048441 31.39857587]\n", + " [32.26048441 31.39857587]\n", + " [ 1.58224447 0.72681616]\n", + " [ 1.58224447 0.72681616]\n", + " [30.36278399 29.50127631]\n", + " [24.98678403 29.50184416]\n", + " [19.61078405 29.50241201]\n", + " [14.23478409 29.50297987]\n", + " [ 8.85878411 29.50354772]\n", + " [ 3.48278414 29.50411557]\n", + " [30.36221615 24.12527634]\n", + " [24.98621618 24.12584419]\n", + " [19.6102162 24.12641204]\n", + " [14.23421623 24.1269799 ]\n", + " [ 8.85821626 24.12754775]\n", + " [ 3.48221629 24.1281156 ]\n", + " [30.36164829 18.74927637]\n", + " [24.98564832 18.74984422]\n", + " [19.60964835 18.75041208]\n", + " [14.23364838 18.75097993]\n", + " [ 8.85764841 18.75154778]\n", + " [ 3.48164844 18.75211563]\n", + " [30.36108043 13.3732764 ]\n", + " [24.98508046 13.37384425]\n", + " [19.60908049 13.3744121 ]\n", + " [14.23308053 13.37497996]\n", + " [ 8.85708056 13.37554781]\n", + " [ 3.48108059 13.37611567]\n", + " [30.36051258 7.99727643]\n", + " [24.98451261 7.99784428]\n", + " [19.60851265 7.99841214]\n", + " [14.23251268 7.99897999]\n", + " [ 8.85651271 7.99954784]\n", + " [ 3.48051273 8.00011569]\n", + " [30.35994473 2.62127646]\n", + " [24.98394476 2.62184431]\n", + " [19.60794479 2.62241216]\n", + " [14.23194482 2.62298002]\n", + " [ 8.85594485 2.62354787]\n", + " [ 3.47994488 2.62411572]]\n", + "DEBUG:root:make_az_asym: xyp: shape: (96, 2)\n", + "DEBUG:root:radec2pix: ccdpx: [[-4.45000002e+01 -5.00000175e-01]\n", + " [-4.44999997e+01 2.91928572e+02]\n", + " [-4.45000002e+01 5.84357143e+02]\n", + " [-4.45000000e+01 8.76785714e+02]\n", + " [-4.45000001e+01 1.16921429e+03]\n", + " [-4.44999999e+01 1.46164286e+03]\n", + " [-4.45000001e+01 1.75407143e+03]\n", + " [-4.44999997e+01 2.04650000e+03]\n", + " [-4.45000002e+01 -5.00000175e-01]\n", + " [ 2.47928571e+02 -5.00000003e-01]\n", + " [ 5.40357143e+02 -4.99999889e-01]\n", + " [ 8.32785714e+02 -5.00000160e-01]\n", + " [ 1.12521429e+03 -5.00000087e-01]\n", + " [ 1.41764286e+03 -5.00000059e-01]\n", + " [ 1.71007143e+03 -4.99999907e-01]\n", + " [ 2.00250000e+03 -4.99999721e-01]\n", + " [-4.44999997e+01 2.04650000e+03]\n", + " [ 2.47928571e+02 2.04650000e+03]\n", + " [ 5.40357143e+02 2.04650000e+03]\n", + " [ 8.32785714e+02 2.04650000e+03]\n", + " [ 1.12521429e+03 2.04650000e+03]\n", + " [ 1.41764286e+03 2.04650000e+03]\n", + " [ 1.71007143e+03 2.04650000e+03]\n", + " [ 2.00250000e+03 2.04650000e+03]\n", + " [ 2.00250000e+03 -4.99999721e-01]\n", + " [ 2.00250000e+03 2.91928571e+02]\n", + " [ 2.00250000e+03 5.84357143e+02]\n", + " [ 2.00250000e+03 8.76785714e+02]\n", + " [ 2.00250000e+03 1.16921429e+03]\n", + " [ 2.00250000e+03 1.46164286e+03]\n", + " [ 2.00250000e+03 1.75407143e+03]\n", + " [ 2.00250000e+03 2.04650000e+03]\n", + " [-4.35000001e+01 1.27000000e+02]\n", + " [-4.34999997e+01 4.85400000e+02]\n", + " [-4.35000003e+01 8.43800000e+02]\n", + " [-4.35000003e+01 1.20220000e+03]\n", + " [-4.35000002e+01 1.56060000e+03]\n", + " [-4.35000003e+01 1.91900000e+03]\n", + " [ 8.30000000e+01 4.99999980e-01]\n", + " [ 4.41400000e+02 4.99999948e-01]\n", + " [ 7.99800000e+02 4.99999731e-01]\n", + " [ 1.15820000e+03 4.99999908e-01]\n", + " [ 1.51660000e+03 4.99999771e-01]\n", + " [ 1.87500000e+03 5.00000017e-01]\n", + " [ 8.29999998e+01 2.04550000e+03]\n", + " [ 4.41400000e+02 2.04550000e+03]\n", + " [ 7.99800000e+02 2.04550000e+03]\n", + " [ 1.15820000e+03 2.04550000e+03]\n", + " [ 1.51660000e+03 2.04550000e+03]\n", + " [ 1.87500000e+03 2.04550000e+03]\n", + " [ 2.00150000e+03 1.27000000e+02]\n", + " [ 2.00150000e+03 4.85400000e+02]\n", + " [ 2.00150000e+03 8.43800000e+02]\n", + " [ 2.00150000e+03 1.20220000e+03]\n", + " [ 2.00150000e+03 1.56060000e+03]\n", + " [ 2.00150000e+03 1.91900000e+03]\n", + " [-4.35000001e+01 4.99999868e-01]\n", + " [-4.35000001e+01 4.99999868e-01]\n", + " [ 2.00150000e+03 2.04550000e+03]\n", + " [ 2.00150000e+03 2.04550000e+03]\n", + " [ 8.30000002e+01 1.27000000e+02]\n", + " [ 4.41400000e+02 1.27000000e+02]\n", + " [ 7.99800000e+02 1.27000000e+02]\n", + " [ 1.15820000e+03 1.27000000e+02]\n", + " [ 1.51660000e+03 1.27000000e+02]\n", + " [ 1.87500000e+03 1.27000000e+02]\n", + " [ 8.30000001e+01 4.85400000e+02]\n", + " [ 4.41400000e+02 4.85400000e+02]\n", + " [ 7.99800000e+02 4.85400000e+02]\n", + " [ 1.15820000e+03 4.85400000e+02]\n", + " [ 1.51660000e+03 4.85400000e+02]\n", + " [ 1.87500000e+03 4.85400000e+02]\n", + " [ 8.29999997e+01 8.43800000e+02]\n", + " [ 4.41400000e+02 8.43800000e+02]\n", + " [ 7.99800000e+02 8.43800000e+02]\n", + " [ 1.15820000e+03 8.43800000e+02]\n", + " [ 1.51660000e+03 8.43800000e+02]\n", + " [ 1.87500000e+03 8.43800000e+02]\n", + " [ 8.29999998e+01 1.20220000e+03]\n", + " [ 4.41400000e+02 1.20220000e+03]\n", + " [ 7.99800000e+02 1.20220000e+03]\n", + " [ 1.15820000e+03 1.20220000e+03]\n", + " [ 1.51660000e+03 1.20220000e+03]\n", + " [ 1.87500000e+03 1.20220000e+03]\n", + " [ 8.30000003e+01 1.56060000e+03]\n", + " [ 4.41400000e+02 1.56060000e+03]\n", + " [ 7.99800000e+02 1.56060000e+03]\n", + " [ 1.15820000e+03 1.56060000e+03]\n", + " [ 1.51660000e+03 1.56060000e+03]\n", + " [ 1.87500000e+03 1.56060000e+03]\n", + " [ 8.29999998e+01 1.91900000e+03]\n", + " [ 4.41400000e+02 1.91900000e+03]\n", + " [ 7.99800000e+02 1.91900000e+03]\n", + " [ 1.15820000e+03 1.91900000e+03]\n", + " [ 1.51660000e+03 1.91900000e+03]\n", + " [ 1.87500000e+03 1.91900000e+03]]\n", + "DEBUG:root:radec2pix: camVec Shape: (3, 96)\n", + "DEBUG:root:radec2pix: xyfp: [[32.275486 31.41357429]\n", + " [32.27502267 27.02714574]\n", + " [32.27455935 22.64071719]\n", + " [32.27409601 18.25428864]\n", + " [32.27363269 13.8678601 ]\n", + " [32.27316936 9.48143155]\n", + " [32.27270604 5.095003 ]\n", + " [32.27224271 0.70857446]\n", + " [32.275486 31.41357429]\n", + " [27.88905745 31.41403761]\n", + " [23.5026289 31.41450094]\n", + " [19.11620036 31.41496427]\n", + " [14.72977181 31.41542759]\n", + " [10.34334326 31.41589092]\n", + " [ 5.95691471 31.41635424]\n", + " [ 1.57048617 31.41681757]\n", + " [32.27224271 0.70857446]\n", + " [27.88581416 0.70903778]\n", + " [23.49938562 0.70950111]\n", + " [19.11295707 0.70996444]\n", + " [14.72652852 0.71042776]\n", + " [10.34009998 0.71089109]\n", + " [ 5.95367142 0.71135442]\n", + " [ 1.56724288 0.71181774]\n", + " [ 1.57048617 31.41681757]\n", + " [ 1.57002284 27.03038902]\n", + " [ 1.56955951 22.64396047]\n", + " [ 1.56909619 18.25753194]\n", + " [ 1.56863286 13.87110338]\n", + " [ 1.56816953 9.48467484]\n", + " [ 1.56770621 5.09824629]\n", + " [ 1.56724288 0.71181774]\n", + " [32.26028399 29.50107588]\n", + " [32.25971613 24.12507591]\n", + " [32.25914828 18.74907594]\n", + " [32.25858043 13.37307597]\n", + " [32.25801258 7.997076 ]\n", + " [32.25744472 2.62107603]\n", + " [30.36298443 31.3987763 ]\n", + " [24.98698446 31.39934415]\n", + " [19.61098448 31.399912 ]\n", + " [14.23498451 31.40047985]\n", + " [ 8.85898454 31.40104771]\n", + " [ 3.48298457 31.40161556]\n", + " [30.35974431 0.72377647]\n", + " [24.98374433 0.72434432]\n", + " [19.60774436 0.72491217]\n", + " [14.23174439 0.72548003]\n", + " [ 8.85574442 0.72604788]\n", + " [ 3.47974445 0.72661573]\n", + " [ 1.58528416 29.504316 ]\n", + " [ 1.5847163 24.12831603]\n", + " [ 1.58414845 18.75231606]\n", + " [ 1.5835806 13.37631609]\n", + " [ 1.58301275 8.00031612]\n", + " [ 1.5824449 2.62431615]\n", + " [32.26048441 31.39857587]\n", + " [32.26048441 31.39857587]\n", + " [ 1.58224447 0.72681616]\n", + " [ 1.58224447 0.72681616]\n", + " [30.36278399 29.50127631]\n", + " [24.98678403 29.50184416]\n", + " [19.61078405 29.50241201]\n", + " [14.23478409 29.50297987]\n", + " [ 8.85878411 29.50354772]\n", + " [ 3.48278414 29.50411557]\n", + " [30.36221615 24.12527634]\n", + " [24.98621618 24.12584419]\n", + " [19.6102162 24.12641204]\n", + " [14.23421623 24.1269799 ]\n", + " [ 8.85821626 24.12754775]\n", + " [ 3.48221629 24.1281156 ]\n", + " [30.36164829 18.74927637]\n", + " [24.98564832 18.74984422]\n", + " [19.60964835 18.75041208]\n", + " [14.23364838 18.75097993]\n", + " [ 8.85764841 18.75154778]\n", + " [ 3.48164844 18.75211563]\n", + " [30.36108043 13.3732764 ]\n", + " [24.98508046 13.37384425]\n", + " [19.60908049 13.3744121 ]\n", + " [14.23308053 13.37497996]\n", + " [ 8.85708056 13.37554781]\n", + " [ 3.48108059 13.37611567]\n", + " [30.36051258 7.99727643]\n", + " [24.98451261 7.99784428]\n", + " [19.60851265 7.99841214]\n", + " [14.23251268 7.99897999]\n", + " [ 8.85651271 7.99954784]\n", + " [ 3.48051273 8.00011569]\n", + " [30.35994473 2.62127646]\n", + " [24.98394476 2.62184431]\n", + " [19.60794479 2.62241216]\n", + " [14.23194482 2.62298002]\n", + " [ 8.85594485 2.62354787]\n", + " [ 3.47994488 2.62411572]]\n", + "DEBUG:root:radec2pix: xyfp Shape: (96, 2)\n", + "DEBUG:root:cartToSphere: vec: [[ 0.00162968 -0.20886687 0.97794273]\n", + " [ 0.00164392 -0.18138669 0.98341048]\n", + " [ 0.00165615 -0.15321267 0.98819185]\n", + " [ 0.00166636 -0.12445123 0.99222433]\n", + " [ 0.0016745 -0.0952084 0.99545595]\n", + " [ 0.00168051 -0.06559229 0.99784509]\n", + " [ 0.00168433 -0.03571531 0.99936059]\n", + " [ 0.00168589 -0.00569466 0.99998236]\n", + " [ 0.00162968 -0.20886687 0.97794273]\n", + " [ 0.03065921 -0.20871575 0.97749565]\n", + " [ 0.0595691 -0.20829328 0.9762507 ]\n", + " [ 0.08824658 -0.20760055 0.9742251 ]\n", + " [ 0.11657974 -0.20663909 0.97144709]\n", + " [ 0.14445783 -0.20541086 0.96795574]\n", + " [ 0.17177197 -0.20391875 0.96380057]\n", + " [ 0.1984171 -0.20216791 0.95904056]\n", + " [ 0.00168589 -0.00569466 0.99998236]\n", + " [ 0.03171597 -0.00569039 0.99948072]\n", + " [ 0.06161834 -0.0056785 0.99808363]\n", + " [ 0.09127522 -0.00565918 0.99580962]\n", + " [ 0.12057355 -0.00563263 0.99268842]\n", + " [ 0.14940474 -0.00559908 0.98876027]\n", + " [ 0.17766265 -0.00555867 0.98407575]\n", + " [ 0.205241 -0.00551146 0.97869595]\n", + " [ 0.1984171 -0.20216791 0.95904056]\n", + " [ 0.20017053 -0.17558603 0.96389901]\n", + " [ 0.20167036 -0.14832064 0.96815807]\n", + " [ 0.20291139 -0.12047648 0.97175737]\n", + " [ 0.20389075 -0.09216227 0.97464592]\n", + " [ 0.20460646 -0.06348867 0.97678318]\n", + " [ 0.20505694 -0.03456748 0.97813943]\n", + " [ 0.205241 -0.00551146 0.97869595]\n", + " [ 0.00173588 -0.19697755 0.98040646]\n", + " [ 0.00175296 -0.16281769 0.98665461]\n", + " [ 0.00176683 -0.12772153 0.99180849]\n", + " [ 0.00177741 -0.09188434 0.9957681 ]\n", + " [ 0.00178459 -0.05550542 0.99845679]\n", + " [ 0.00178824 -0.01879375 0.99982178]\n", + " [ 0.01429458 -0.20874173 0.97786633]\n", + " [ 0.04980805 -0.20837407 0.97678012]\n", + " [ 0.08502967 -0.20760004 0.97451125]\n", + " [ 0.11975303 -0.20642226 0.97110713]\n", + " [ 0.15377432 -0.2048444 0.96663966]\n", + " [ 0.1868945 -0.20287264 0.961204 ]\n", + " [ 0.0147871 -0.00579649 0.99987386]\n", + " [ 0.05152109 -0.00578593 0.99865515]\n", + " [ 0.08794575 -0.0057639 0.99610859]\n", + " [ 0.12385093 -0.00573078 0.99228429]\n", + " [ 0.15903647 -0.00568698 0.98725633]\n", + " [ 0.19330699 -0.00563273 0.98112215]\n", + " [ 0.19912208 -0.19067465 0.96124585]\n", + " [ 0.20110045 -0.1576223 0.96680599]\n", + " [ 0.20269257 -0.12364673 0.97140476]\n", + " [ 0.20389226 -0.08894663 0.97494433]\n", + " [ 0.20469584 -0.05372559 0.97735008]\n", + " [ 0.20510055 -0.0181899 0.97857186]\n", + " [ 0.00172908 -0.20877415 0.97796235]\n", + " [ 0.00172908 -0.20877415 0.97796235]\n", + " [ 0.20514779 -0.0056111 0.97871492]\n", + " [ 0.20514779 -0.0056111 0.97871492]\n", + " [ 0.01435076 -0.19694699 0.9803091 ]\n", + " [ 0.05000388 -0.19660038 0.97920779]\n", + " [ 0.08536435 -0.19587092 0.97690711]\n", + " [ 0.12022547 -0.19476145 0.97345458]\n", + " [ 0.15438306 -0.19327535 0.96892234]\n", + " [ 0.18763689 -0.19141752 0.96340632]\n", + " [ 0.01449201 -0.16279237 0.98655391]\n", + " [ 0.05049589 -0.16250539 0.98541472]\n", + " [ 0.08620426 -0.1619024 0.9830343 ]\n", + " [ 0.1214098 -0.1609872 0.97946045]\n", + " [ 0.15590842 -0.15976346 0.97476571]\n", + " [ 0.18949858 -0.15823425 0.96904706]\n", + " [ 0.01460664 -0.12770151 0.99170508]\n", + " [ 0.05089468 -0.1274748 0.99053516]\n", + " [ 0.08688344 -0.12699943 0.98809029]\n", + " [ 0.12236492 -0.12628004 0.9844187 ]\n", + " [ 0.15713605 -0.12532102 0.97959323]\n", + " [ 0.19099623 -0.12412508 0.97371115]\n", + " [ 0.0146941 -0.09186978 0.99566261]\n", + " [ 0.05119852 -0.09170505 0.99446915]\n", + " [ 0.08739951 -0.09136033 0.99197511]\n", + " [ 0.12308827 -0.09084026 0.98822939]\n", + " [ 0.15806297 -0.09014925 0.98330525]\n", + " [ 0.19212497 -0.08928993 0.97730001]\n", + " [ 0.01475342 -0.05549654 0.99834987]\n", + " [ 0.05140434 -0.05539609 0.99714035]\n", + " [ 0.08774826 -0.05518622 0.99461285]\n", + " [ 0.12357559 -0.05487037 0.99081699]\n", + " [ 0.15868553 -0.05445187 0.9858265 ]\n", + " [ 0.19288138 -0.05393273 0.97973876]\n", + " [ 0.01478357 -0.01879073 0.99971414]\n", + " [ 0.05150885 -0.01875652 0.99849639]\n", + " [ 0.08792506 -0.01868512 0.99595183]\n", + " [ 0.1238221 -0.01857781 0.99213051]\n", + " [ 0.15899976 -0.01843585 0.98710648]\n", + " [ 0.19326249 -0.01826001 0.98097716]]\n", + "DEBUG:root:mm_to_pix: fitpx: [[0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]]\n", + "DEBUG:root:mm_to_pix: fitpx.shape: (96, 2)\n", + "DEBUG:root:radec2pix: fitpx: [[4271.50000018 4155.50000017]\n", + " [4271.49999973 3863.07142834]\n", + " [4271.50000015 3570.64285725]\n", + " [4271.50000001 3278.21428572]\n", + " [4271.5000001 2985.78571433]\n", + " [4271.49999989 2693.35714282]\n", + " [4271.50000013 2400.92857145]\n", + " [4271.49999973 2108.49999999]\n", + " [4271.50000018 4155.50000017]\n", + " [3979.07142857 4155.5 ]\n", + " [3686.64285706 4155.49999989]\n", + " [3394.21428581 4155.50000016]\n", + " [3101.78571433 4155.50000009]\n", + " [2809.35714288 4155.50000006]\n", + " [2516.92857141 4155.49999991]\n", + " [2224.49999999 4155.49999972]\n", + " [4271.49999973 2108.49999999]\n", + " [3979.07142852 2108.5 ]\n", + " [3686.6428568 2108.49999999]\n", + " [3394.2142859 2108.50000001]\n", + " [3101.78571455 2108.50000001]\n", + " [2809.35714254 2108.49999998]\n", + " [2516.92857145 2108.5 ]\n", + " [2224.49999991 2108.49999996]\n", + " [2224.49999999 4155.49999972]\n", + " [2224.50000001 3863.07142866]\n", + " [2224.50000002 3570.64285748]\n", + " [2224.49999999 3278.21428555]\n", + " [2224.49999997 2985.78571404]\n", + " [2224.49999997 2693.35714267]\n", + " [2224.49999997 2400.92857132]\n", + " [2224.49999991 2108.49999996]\n", + " [4270.50000007 4028.00000007]\n", + " [4270.49999974 3669.5999998 ]\n", + " [4270.50000026 3311.20000015]\n", + " [4270.50000028 2952.80000012]\n", + " [4270.50000021 2594.40000005]\n", + " [4270.50000028 2236.00000002]\n", + " [4144.00000002 4154.50000002]\n", + " [3785.60000004 4154.50000005]\n", + " [3427.20000017 4154.50000027]\n", + " [3068.80000004 4154.50000009]\n", + " [2710.40000006 4154.50000023]\n", + " [2352. 4154.49999998]\n", + " [4144.00000024 2109.50000001]\n", + " [3785.60000024 2109.50000001]\n", + " [3427.20000038 2109.50000002]\n", + " [3068.80000022 2109.50000001]\n", + " [2710.3999999 2109.49999999]\n", + " [2352.00000033 2109.50000007]\n", + " [2225.50000001 4028.00000014]\n", + " [2225.5 3669.59999993]\n", + " [2225.49999997 3311.19999965]\n", + " [2225.50000003 2952.80000023]\n", + " [2225.50000001 2594.40000005]\n", + " [2225.50000007 2236.00000012]\n", + " [4270.50000014 4154.50000013]\n", + " [4270.50000014 4154.50000013]\n", + " [2225.5 2109.5 ]\n", + " [2225.5 2109.5 ]\n", + " [4143.99999977 4027.99999977]\n", + " [3785.60000006 4028.00000007]\n", + " [3427.19999985 4027.99999978]\n", + " [3068.80000002 4028.00000004]\n", + " [2710.40000003 4028.0000001 ]\n", + " [2351.99999998 4027.99999983]\n", + " [4143.99999989 3669.59999991]\n", + " [3785.59999992 3669.59999992]\n", + " [3427.20000008 3669.60000009]\n", + " [3068.80000009 3669.60000016]\n", + " [2710.40000007 3669.6000002 ]\n", + " [2352. 3669.60000003]\n", + " [4144.00000025 3311.20000016]\n", + " [3785.59999995 3311.19999996]\n", + " [3427.19999995 3311.19999995]\n", + " [3068.80000029 3311.20000039]\n", + " [2710.39999993 3311.19999986]\n", + " [2352.00000003 3311.20000016]\n", + " [4144.0000002 2952.80000009]\n", + " [3785.6000002 2952.80000011]\n", + " [3427.19999983 2952.79999988]\n", + " [3068.80000029 2952.80000027]\n", + " [2710.40000007 2952.8000001 ]\n", + " [2352.00000006 2952.80000022]\n", + " [4143.99999974 2594.39999993]\n", + " [3785.60000003 2594.40000001]\n", + " [3427.19999994 2594.39999997]\n", + " [3068.7999999 2594.39999994]\n", + " [2710.40000001 2594.40000001]\n", + " [2351.9999999 2594.39999976]\n", + " [4144.00000015 2236.00000001]\n", + " [3785.59999982 2235.99999998]\n", + " [3427.19999971 2235.99999996]\n", + " [3068.80000012 2236.00000002]\n", + " [2710.39999989 2235.99999997]\n", + " [2351.99999988 2235.99999991]]\n", + "DEBUG:root:fitpix2pix: ccdpx: shape: (96, 2)\n", + "DEBUG:root:fitpix2pix: visCut: True\n", + "DEBUG:root:radec2pix: xyfp: [[32.275486 31.41357429]\n", + " [32.27502267 27.02714574]\n", + " [32.27455935 22.64071719]\n", + " [32.27409601 18.25428864]\n", + " [32.27363269 13.8678601 ]\n", + " [32.27316936 9.48143155]\n", + " [32.27270604 5.095003 ]\n", + " [32.27224271 0.70857446]\n", + " [32.275486 31.41357429]\n", + " [27.88905745 31.41403761]\n", + " [23.5026289 31.41450094]\n", + " [19.11620036 31.41496427]\n", + " [14.72977181 31.41542759]\n", + " [10.34334326 31.41589092]\n", + " [ 5.95691471 31.41635424]\n", + " [ 1.57048617 31.41681757]\n", + " [32.27224271 0.70857446]\n", + " [27.88581416 0.70903778]\n", + " [23.49938562 0.70950111]\n", + " [19.11295707 0.70996444]\n", + " [14.72652852 0.71042776]\n", + " [10.34009998 0.71089109]\n", + " [ 5.95367142 0.71135442]\n", + " [ 1.56724288 0.71181774]\n", + " [ 1.57048617 31.41681757]\n", + " [ 1.57002284 27.03038902]\n", + " [ 1.56955951 22.64396047]\n", + " [ 1.56909619 18.25753194]\n", + " [ 1.56863286 13.87110338]\n", + " [ 1.56816953 9.48467484]\n", + " [ 1.56770621 5.09824629]\n", + " [ 1.56724288 0.71181774]\n", + " [32.26028399 29.50107588]\n", + " [32.25971613 24.12507591]\n", + " [32.25914828 18.74907594]\n", + " [32.25858043 13.37307597]\n", + " [32.25801258 7.997076 ]\n", + " [32.25744472 2.62107603]\n", + " [30.36298443 31.3987763 ]\n", + " [24.98698446 31.39934415]\n", + " [19.61098448 31.399912 ]\n", + " [14.23498451 31.40047985]\n", + " [ 8.85898454 31.40104771]\n", + " [ 3.48298457 31.40161556]\n", + " [30.35974431 0.72377647]\n", + " [24.98374433 0.72434432]\n", + " [19.60774436 0.72491217]\n", + " [14.23174439 0.72548003]\n", + " [ 8.85574442 0.72604788]\n", + " [ 3.47974445 0.72661573]\n", + " [ 1.58528416 29.504316 ]\n", + " [ 1.5847163 24.12831603]\n", + " [ 1.58414845 18.75231606]\n", + " [ 1.5835806 13.37631609]\n", + " [ 1.58301275 8.00031612]\n", + " [ 1.5824449 2.62431615]\n", + " [32.26048441 31.39857587]\n", + " [32.26048441 31.39857587]\n", + " [ 1.58224447 0.72681616]\n", + " [ 1.58224447 0.72681616]\n", + " [30.36278399 29.50127631]\n", + " [24.98678403 29.50184416]\n", + " [19.61078405 29.50241201]\n", + " [14.23478409 29.50297987]\n", + " [ 8.85878411 29.50354772]\n", + " [ 3.48278414 29.50411557]\n", + " [30.36221615 24.12527634]\n", + " [24.98621618 24.12584419]\n", + " [19.6102162 24.12641204]\n", + " [14.23421623 24.1269799 ]\n", + " [ 8.85821626 24.12754775]\n", + " [ 3.48221629 24.1281156 ]\n", + " [30.36164829 18.74927637]\n", + " [24.98564832 18.74984422]\n", + " [19.60964835 18.75041208]\n", + " [14.23364838 18.75097993]\n", + " [ 8.85764841 18.75154778]\n", + " [ 3.48164844 18.75211563]\n", + " [30.36108043 13.3732764 ]\n", + " [24.98508046 13.37384425]\n", + " [19.60908049 13.3744121 ]\n", + " [14.23308053 13.37497996]\n", + " [ 8.85708056 13.37554781]\n", + " [ 3.48108059 13.37611567]\n", + " [30.36051258 7.99727643]\n", + " [24.98451261 7.99784428]\n", + " [19.60851265 7.99841214]\n", + " [14.23251268 7.99897999]\n", + " [ 8.85651271 7.99954784]\n", + " [ 3.48051273 8.00011569]\n", + " [30.35994473 2.62127646]\n", + " [24.98394476 2.62184431]\n", + " [19.60794479 2.62241216]\n", + " [14.23194482 2.62298002]\n", + " [ 8.85594485 2.62354787]\n", + " [ 3.47994488 2.62411572]]\n", + "DEBUG:root:radec2pix: lng: [270.4470398 270.51926185 270.61931513 270.76712536 271.00759894\n", + " 271.46762895 272.70005845 286.49130114 270.4470398 278.35667351\n", + " 285.95982213 293.02931263 299.43042278 305.11729798 310.10927793\n", + " 314.46353671 286.49130114 349.82837514 354.73471783 356.4521324\n", + " 357.32535522 357.85379375 358.20792761 358.46177059 314.46353671\n", + " 318.74333689 323.66697635 329.30072855 335.67617912 342.7610671\n", + " 350.43132356 358.46177059 270.50490909 270.61684574 270.79254775\n", + " 271.10819213 271.84151891 275.43536905 273.91748404 283.44327486\n", + " 292.27322451 300.11957347 306.89513227 312.65252806 338.59499359\n", + " 353.59240246 356.2502422 357.3507235 357.95203643 358.33094358\n", + " 316.24148386 321.91069268 328.61592969 336.43108737 345.29354618\n", + " 354.93182927 270.47451616 270.47451616 358.43326445 358.43326445\n", + " 274.16755516 284.27018764 293.54850553 301.6868684 308.61690354\n", + " 314.4285595 275.08714159 287.26177752 298.03288482 307.02206797\n", + " 314.30032851 320.13759497 276.52519686 291.76449803 304.37699404\n", + " 314.09790313 321.42651996 326.9808709 279.08719841 299.17442797\n", + " 313.73069285 323.57233622 330.30226172 335.07338778 284.88740412\n", + " 312.85952275 327.83358678 336.05769185 341.06068787 344.37815396\n", + " 308.1938338 339.99132199 348.00244679 351.46719972 353.38615059\n", + " 354.60255033]\n", + "DEBUG:root:radec2pix: ccdpx: [[-4.45000001e+01 -5.00000082e-01]\n", + " [-4.45000001e+01 2.91928571e+02]\n", + " [-4.45000003e+01 5.84357143e+02]\n", + " [-4.44999997e+01 8.76785714e+02]\n", + " [-4.45000002e+01 1.16921429e+03]\n", + " [-4.44999997e+01 1.46164286e+03]\n", + " [-4.45000001e+01 1.75407143e+03]\n", + " [-4.44999998e+01 2.04650000e+03]\n", + " [-4.45000001e+01 -5.00000082e-01]\n", + " [ 2.47928572e+02 -4.99999837e-01]\n", + " [ 5.40357143e+02 -5.00000111e-01]\n", + " [ 8.32785714e+02 -5.00000236e-01]\n", + " [ 1.12521429e+03 -4.99999746e-01]\n", + " [ 1.41764286e+03 -4.99999876e-01]\n", + " [ 1.71007143e+03 -4.99999788e-01]\n", + " [ 2.00250000e+03 -5.00000040e-01]\n", + " [-4.44999998e+01 2.04650000e+03]\n", + " [ 2.47928572e+02 2.04650000e+03]\n", + " [ 5.40357143e+02 2.04650000e+03]\n", + " [ 8.32785714e+02 2.04650000e+03]\n", + " [ 1.12521429e+03 2.04650000e+03]\n", + " [ 1.41764286e+03 2.04650000e+03]\n", + " [ 1.71007143e+03 2.04650000e+03]\n", + " [ 2.00250000e+03 2.04650000e+03]\n", + " [ 2.00250000e+03 -5.00000040e-01]\n", + " [ 2.00250000e+03 2.91928572e+02]\n", + " [ 2.00250000e+03 5.84357143e+02]\n", + " [ 2.00250000e+03 8.76785714e+02]\n", + " [ 2.00250000e+03 1.16921429e+03]\n", + " [ 2.00250000e+03 1.46164286e+03]\n", + " [ 2.00250000e+03 1.75407143e+03]\n", + " [ 2.00250000e+03 2.04650000e+03]\n", + " [-4.35000002e+01 1.27000000e+02]\n", + " [-4.35000000e+01 4.85400000e+02]\n", + " [-4.34999999e+01 8.43800000e+02]\n", + " [-4.35000002e+01 1.20220000e+03]\n", + " [-4.35000002e+01 1.56060000e+03]\n", + " [-4.34999998e+01 1.91900000e+03]\n", + " [ 8.29999997e+01 4.99999723e-01]\n", + " [ 4.41400000e+02 4.99999738e-01]\n", + " [ 7.99800000e+02 4.99999955e-01]\n", + " [ 1.15820000e+03 5.00000275e-01]\n", + " [ 1.51660000e+03 4.99999778e-01]\n", + " [ 1.87500000e+03 5.00000195e-01]\n", + " [ 8.29999999e+01 2.04550000e+03]\n", + " [ 4.41400000e+02 2.04550000e+03]\n", + " [ 7.99800000e+02 2.04550000e+03]\n", + " [ 1.15820000e+03 2.04550000e+03]\n", + " [ 1.51660000e+03 2.04550000e+03]\n", + " [ 1.87500000e+03 2.04550000e+03]\n", + " [ 2.00150000e+03 1.27000000e+02]\n", + " [ 2.00150000e+03 4.85400000e+02]\n", + " [ 2.00150000e+03 8.43800000e+02]\n", + " [ 2.00150000e+03 1.20220000e+03]\n", + " [ 2.00150000e+03 1.56060000e+03]\n", + " [ 2.00150000e+03 1.91900000e+03]\n", + " [-4.34999997e+01 5.00000254e-01]\n", + " [-4.34999997e+01 5.00000254e-01]\n", + " [ 2.00150000e+03 2.04550000e+03]\n", + " [ 2.00150000e+03 2.04550000e+03]\n", + " [ 8.30000000e+01 1.27000000e+02]\n", + " [ 4.41400000e+02 1.27000000e+02]\n", + " [ 7.99800000e+02 1.27000000e+02]\n", + " [ 1.15820000e+03 1.27000000e+02]\n", + " [ 1.51660000e+03 1.27000000e+02]\n", + " [ 1.87500000e+03 1.27000000e+02]\n", + " [ 8.29999998e+01 4.85400000e+02]\n", + " [ 4.41400000e+02 4.85400000e+02]\n", + " [ 7.99800000e+02 4.85400000e+02]\n", + " [ 1.15820000e+03 4.85400000e+02]\n", + " [ 1.51660000e+03 4.85400000e+02]\n", + " [ 1.87500000e+03 4.85400000e+02]\n", + " [ 8.29999999e+01 8.43800000e+02]\n", + " [ 4.41400000e+02 8.43800000e+02]\n", + " [ 7.99800000e+02 8.43800000e+02]\n", + " [ 1.15820000e+03 8.43800000e+02]\n", + " [ 1.51660000e+03 8.43800000e+02]\n", + " [ 1.87500000e+03 8.43800000e+02]\n", + " [ 8.30000002e+01 1.20220000e+03]\n", + " [ 4.41400000e+02 1.20220000e+03]\n", + " [ 7.99800000e+02 1.20220000e+03]\n", + " [ 1.15820000e+03 1.20220000e+03]\n", + " [ 1.51660000e+03 1.20220000e+03]\n", + " [ 1.87500000e+03 1.20220000e+03]\n", + " [ 8.30000002e+01 1.56060000e+03]\n", + " [ 4.41400000e+02 1.56060000e+03]\n", + " [ 7.99800000e+02 1.56060000e+03]\n", + " [ 1.15820000e+03 1.56060000e+03]\n", + " [ 1.51660000e+03 1.56060000e+03]\n", + " [ 1.87500000e+03 1.56060000e+03]\n", + " [ 8.29999999e+01 1.91900000e+03]\n", + " [ 4.41400000e+02 1.91900000e+03]\n", + " [ 7.99800000e+02 1.91900000e+03]\n", + " [ 1.15820000e+03 1.91900000e+03]\n", + " [ 1.51660000e+03 1.91900000e+03]\n", + " [ 1.87500000e+03 1.91900000e+03]]\n", + "DEBUG:root:radec2pix: lat: [77.94367134 79.54902489 81.18632945 82.85028944 84.53583766 86.23790238\n", + " 87.95095267 89.65971994 77.94367134 77.82164346 77.48801235 76.9631292\n", + " 76.27533882 75.45615131 74.53651433 73.54460591 89.65971994 88.15347287\n", + " 86.45230283 84.75294209 83.0672058 81.4014907 79.76129308 78.15206149\n", + " 73.54460591 74.55768324 75.50238779 76.35047091 77.07044991 77.62962616\n", + " 77.99774795 78.15206149 78.63928322 80.62896884 82.66134588 84.72698979\n", + " 86.81649257 88.91826945 77.92273249 77.62880737 77.03600995 76.19348076\n", + " 75.15884594 73.98801233 89.08995442 87.02817045 84.94370871 82.87794501\n", + " 80.84312687 78.84936896 73.99670581 75.19609757 76.26512012 77.14708483\n", + " 77.78216783 78.11748405 77.94905666 77.94905666 78.15735777 78.15735777\n", + " 78.61100015 78.29575797 77.66281562 76.76884154 75.67835331 74.45201735\n", + " 80.5936009 80.20229517 79.43086524 78.36733491 77.10116027 75.70726987\n", + " 82.61510476 82.11071991 81.1484309 79.87243611 78.40512567 76.83322353\n", + " 84.66162432 83.97115888 82.73646392 81.20037729 79.51583908 77.76861975\n", + " 86.70802953 85.66590929 84.05006409 82.22924953 80.34192865 78.44668306\n", + " 88.6299785 86.85760815 84.84280506 82.80723116 80.78933117 78.80649174]\n", + "DEBUG:root:radec2pix: fitpx: [[4271.50000008 4155.50000008]\n", + " [4271.50000011 3863.07142867]\n", + " [4271.50000027 3570.64285733]\n", + " [4271.49999971 3278.21428555]\n", + " [4271.50000017 2985.78571436]\n", + " [4271.4999997 2693.35714277]\n", + " [4271.5000001 2400.92857145]\n", + " [4271.49999983 2108.5 ]\n", + " [4271.50000008 4155.50000008]\n", + " [3979.07142843 4155.49999984]\n", + " [3686.64285723 4155.50000011]\n", + " [3394.21428586 4155.50000024]\n", + " [3101.78571417 4155.49999975]\n", + " [2809.35714282 4155.49999988]\n", + " [2516.92857139 4155.49999979]\n", + " [2224.5 4155.50000004]\n", + " [4271.49999983 2108.5 ]\n", + " [3979.07142844 2108.5 ]\n", + " [3686.64285726 2108.5 ]\n", + " [3394.21428608 2108.50000001]\n", + " [3101.7857142 2108.5 ]\n", + " [2809.35714302 2108.50000001]\n", + " [2516.92857112 2108.49999996]\n", + " [2224.50000006 2108.50000003]\n", + " [2224.5 4155.50000004]\n", + " [2224.49999999 3863.07142838]\n", + " [2224.49999998 3570.64285685]\n", + " [2224.50000004 3278.21428613]\n", + " [2224.49999996 2985.78571394]\n", + " [2224.50000004 2693.35714312]\n", + " [2224.49999998 2400.92857136]\n", + " [2224.50000006 2108.50000003]\n", + " [4270.50000017 4028.00000015]\n", + " [4270.49999995 3669.59999996]\n", + " [4270.49999992 3311.19999995]\n", + " [4270.50000022 2952.80000009]\n", + " [4270.50000024 2594.40000006]\n", + " [4270.49999979 2235.99999998]\n", + " [4144.00000027 4154.50000028]\n", + " [3785.60000021 4154.50000026]\n", + " [3427.20000003 4154.50000005]\n", + " [3068.79999988 4154.49999973]\n", + " [2710.40000006 4154.50000022]\n", + " [2351.99999998 4154.4999998 ]\n", + " [4144.00000013 2109.5 ]\n", + " [3785.6 2109.5 ]\n", + " [3427.19999974 2109.49999999]\n", + " [3068.8 2109.5 ]\n", + " [2710.39999984 2109.49999999]\n", + " [2351.99999972 2109.49999994]\n", + " [2225.5 4027.99999997]\n", + " [2225.50000002 3669.60000025]\n", + " [2225.50000002 3311.20000025]\n", + " [2225.50000004 2952.80000031]\n", + " [2225.50000002 2594.40000011]\n", + " [2225.50000016 2236.00000026]\n", + " [4270.49999974 4154.49999975]\n", + " [4270.49999974 4154.49999975]\n", + " [2225.50000003 2109.50000001]\n", + " [2225.50000003 2109.50000001]\n", + " [4143.99999996 4027.99999996]\n", + " [3785.60000018 4028.00000021]\n", + " [3427.19999989 4027.99999984]\n", + " [3068.80000004 4028.00000009]\n", + " [2710.39999997 4027.9999999 ]\n", + " [2351.99999997 4027.99999976]\n", + " [4144.00000024 3669.60000019]\n", + " [3785.60000022 3669.60000021]\n", + " [3427.19999988 3669.59999985]\n", + " [3068.80000005 3669.60000008]\n", + " [2710.39999999 3669.59999998]\n", + " [2352. 3669.60000003]\n", + " [4144.00000009 3311.20000006]\n", + " [3785.60000001 3311.20000001]\n", + " [3427.20000009 3311.20000009]\n", + " [3068.80000003 3311.20000004]\n", + " [2710.40000012 3311.20000025]\n", + " [2351.99999998 3311.19999988]\n", + " [4143.99999976 2952.79999989]\n", + " [3785.59999985 2952.79999992]\n", + " [3427.19999969 2952.79999979]\n", + " [3068.79999997 2952.79999997]\n", + " [2710.40000016 2952.80000025]\n", + " [2352.00000009 2952.80000036]\n", + " [4143.99999979 2594.39999994]\n", + " [3785.60000002 2594.40000001]\n", + " [3427.20000024 2594.4000001 ]\n", + " [3068.80000002 2594.40000001]\n", + " [2710.40000021 2594.40000019]\n", + " [2351.99999998 2594.39999995]\n", + " [4144.00000008 2236.00000001]\n", + " [3785.60000005 2236.00000001]\n", + " [3427.20000007 2236.00000001]\n", + " [3068.79999979 2235.99999996]\n", + " [2710.39999971 2235.99999991]\n", + " [2351.99999979 2235.99999984]]\n", + "DEBUG:root:fitpix2pix: ccdpx: shape: (96, 2)\n", + "DEBUG:root:fitpix2pix: visCut: True\n", + "DEBUG:root:radec2pix: curVec: [[-0.03144949 0.86012216 -0.50911766]\n", + " [-0.0326787 0.87400628 -0.48481453]\n", + " [-0.03390523 0.88745939 -0.4596371 ]\n", + " [-0.03512284 0.90038971 -0.43366433]\n", + " [-0.0363256 0.91271449 -0.40697998]\n", + " [-0.03750782 0.92435951 -0.37967441]\n", + " [-0.03866411 0.93525927 -0.35184539]\n", + " [-0.03978936 0.94535774 -0.32359783]\n", + " [-0.03144949 0.86012216 -0.50911766]\n", + " [-0.06042237 0.85835137 -0.50949197]\n", + " [-0.08925683 0.85591634 -0.50935296]\n", + " [-0.11784107 0.85283817 -0.50870477]\n", + " [-0.14606471 0.84914814 -0.50755545]\n", + " [-0.17381861 0.84488796 -0.50591642]\n", + " [-0.20099443 0.84011003 -0.50380193]\n", + " [-0.2274837 0.83487774 -0.50122882]\n", + " [-0.03978936 0.94535774 -0.32359783]\n", + " [-0.06975076 0.94344369 -0.32411238]\n", + " [-0.09955327 0.94069003 -0.32433225]\n", + " [-0.12907994 0.93711972 -0.32426071]\n", + " [-0.15821787 0.93276622 -0.32390476]\n", + " [-0.18685881 0.92767294 -0.32327495]\n", + " [-0.21489863 0.92189284 -0.32238514]\n", + " [-0.24223555 0.9154883 -0.32125241]\n", + " [-0.2274837 0.83487774 -0.50122882]\n", + " [-0.2303971 0.8478167 -0.4776233 ]\n", + " [-0.23305296 0.86042125 -0.45316839]\n", + " [-0.23544506 0.87259673 -0.42794927]\n", + " [-0.23756647 0.88425941 -0.40205406]\n", + " [-0.23940996 0.89533601 -0.37557464]\n", + " [-0.24096843 0.90576335 -0.34860719]\n", + " [-0.24223555 0.9154883 -0.32125241]\n", + " [-0.03208492 0.86621747 -0.49863599]\n", + " [-0.03359143 0.88295604 -0.46825233]\n", + " [-0.03508748 0.898955 -0.43663347]\n", + " [-0.03656204 0.91405829 -0.40393151]\n", + " [-0.03800464 0.92812931 -0.37031288]\n", + " [-0.03940544 0.94105137 -0.3359606 ]\n", + " [-0.04409619 0.85948076 -0.50926255]\n", + " [-0.07952749 0.85686146 -0.50937592]\n", + " [-0.11463963 0.85326411 -0.50872204]\n", + " [-0.14922875 0.84874209 -0.50731414]\n", + " [-0.18309394 0.84337221 -0.50517316]\n", + " [-0.21603569 0.83725547 -0.50232645]\n", + " [-0.05286076 0.94459435 -0.32395563]\n", + " [-0.08948946 0.94168161 -0.32438771]\n", + " [-0.12576291 0.93752943 -0.3243798 ]\n", + " [-0.16147153 0.9321951 -0.32394328]\n", + " [-0.19641598 0.92575848 -0.32309751]\n", + " [-0.23040562 0.91832094 -0.32186937]\n", + " [-0.2286956 0.84057275 -0.49105578]\n", + " [-0.2320929 0.85621944 -0.46154215]\n", + " [-0.23509743 0.87126843 -0.43083701]\n", + " [-0.23769675 0.88556106 -0.39910132]\n", + " [-0.23987755 0.89896239 -0.36650426]\n", + " [-0.2416271 0.91136028 -0.33322482]\n", + " [-0.03155288 0.86016536 -0.50903829]\n", + " [-0.03155288 0.86016536 -0.50903829]\n", + " [-0.24213955 0.91547918 -0.32135076]\n", + " [-0.24213955 0.91547918 -0.32135076]\n", + " [-0.04467736 0.86552877 -0.49886259]\n", + " [-0.08024651 0.86288224 -0.49899372]\n", + " [-0.115494 0.85923463 -0.49837435]\n", + " [-0.15021573 0.85463923 -0.49701812]\n", + " [-0.18421108 0.84917263 -0.49494659]\n", + " [-0.21728135 0.84293544 -0.49218762]\n", + " [-0.04630748 0.88225683 -0.46848533]\n", + " [-0.08222304 0.87953963 -0.4686677 ]\n", + " [-0.11780953 0.87576113 -0.46814887]\n", + " [-0.15286179 0.87097478 -0.46694348]\n", + " [-0.18717989 0.8652569 -0.46507439]\n", + " [-0.22056742 0.85870726 -0.46257092]\n", + " [-0.0479038 0.89824691 -0.43687264]\n", + " [-0.08409963 0.8954684 -0.43710823]\n", + " [-0.11995888 0.89157551 -0.43669553]\n", + " [-0.15527502 0.88662234 -0.4356495 ]\n", + " [-0.1898485 0.88068558 -0.43399362]\n", + " [-0.22348501 0.87386468 -0.43175801]\n", + " [-0.04945456 0.91334302 -0.40417667]\n", + " [-0.08586277 0.91051261 -0.40446802]\n", + " [-0.12192735 0.90652179 -0.40416824]\n", + " [-0.1574404 0.90142563 -0.4032919 ]\n", + " [-0.19220252 0.89530162 -0.40186216]\n", + " [-0.22602111 0.8882495 -0.39990909]\n", + " [-0.05094851 0.92740859 -0.37056383]\n", + " [-0.08749909 0.92453612 -0.37091357]\n", + " [-0.12370006 0.92046445 -0.37073373]\n", + " [-0.15934242 0.91524969 -0.37003784]\n", + " [-0.19422681 0.90897041 -0.36884787]\n", + " [-0.22816184 0.90172696 -0.36719295]\n", + " [-0.05237512 0.94032703 -0.33621708]\n", + " [-0.08899628 0.93742288 -0.33662739]\n", + " [-0.12526334 0.93328839 -0.33657374]\n", + " [-0.16096678 0.92798057 -0.33606809]\n", + " [-0.19590723 0.921579 -0.33513058]\n", + " [-0.22989396 0.9141848 -0.33378873]]\n", + "DEBUG:root:radec2pix: curVec Shape: (96, 3)\n", + "DEBUG:root:radec2pix: camVec: [[ 0.00110855 0.00111823 0.00112655 0.00113349 0.001139 0.00114306\n", + " 0.00114562 0.00114666 0.00110855 0.03013432 0.05904256 0.08772073\n", + " 0.11605724 0.14394136 0.17126266 0.19791015 0.00114666 0.03116962\n", + " 0.06106803 0.09072406 0.1200235 0.1488564 0.17711651 0.20469956\n", + " 0.19791015 0.19966308 0.20115603 0.20238925 0.20336191 0.20407235\n", + " 0.20451873 0.20469956 0.00121266 0.00122459 0.00123428 0.00124164\n", + " 0.00124661 0.00124912 0.01377154 0.04928181 0.08450359 0.11923105\n", + " 0.15326028 0.18638779 0.01424443 0.05097175 0.08739457 0.12330108\n", + " 0.15848878 0.192763 0.19861623 0.2005887 0.20217123 0.20336272\n", + " 0.2041602 0.2045604 0.00120792 0.00120792 0.20460634 0.20460634\n", + " 0.01382559 0.04947523 0.08483539 0.11969997 0.15386543 0.18712908\n", + " 0.01396162 0.04996174 0.08566901 0.1208763 0.15538076 0.1889821\n", + " 0.01407199 0.05035615 0.08634371 0.12182616 0.15660103 0.19047015\n", + " 0.01415593 0.05065593 0.08685581 0.12254563 0.15752301 0.1915915\n", + " 0.01421257 0.05085809 0.08720077 0.12302951 0.15814189 0.1923426\n", + " 0.01424114 0.05096003 0.08737459 0.12327308 0.15845303 0.1927197 ]\n", + " [-0.20853555 -0.18105588 -0.15288447 -0.12412547 -0.09488471 -0.06527159\n", + " -0.0353997 -0.00538646 -0.20853555 -0.20838958 -0.2079729 -0.20728684\n", + " -0.20633313 -0.20511339 -0.20362847 -0.2018782 -0.00538646 -0.00538259\n", + " -0.00537156 -0.00535349 -0.00532854 -0.00529689 -0.00525872 -0.00521415\n", + " -0.2018782 -0.17529764 -0.14802765 -0.12017919 -0.09186258 -0.06318839\n", + " -0.03426807 -0.00521415 -0.196646 -0.16248857 -0.12739553 -0.09156092\n", + " -0.05518617 -0.01848208 -0.20841259 -0.20805164 -0.2072855 -0.20611722\n", + " -0.20454967 -0.20258404 -0.00548838 -0.00547863 -0.00545803 -0.00542687\n", + " -0.0053855 -0.0053342 -0.19038695 -0.15733098 -0.12334981 -0.08864677\n", + " -0.05342545 -0.01789151 -0.20844284 -0.20844284 -0.00531377 -0.00531377\n", + " -0.19661746 -0.19627694 -0.19555447 -0.19445357 -0.19297773 -0.19112874\n", + " -0.1624649 -0.16218264 -0.16158454 -0.16067502 -0.15945889 -0.15793949\n", + " -0.12737685 -0.12715419 -0.12668294 -0.12596768 -0.12501365 -0.12382499\n", + " -0.0915474 -0.09138626 -0.09104555 -0.09052922 -0.08984197 -0.08898771\n", + " -0.05517797 -0.05508029 -0.05487388 -0.05456144 -0.05414617 -0.05363087\n", + " -0.01847933 -0.01844651 -0.01837718 -0.0182723 -0.018133 -0.01796031]\n", + " [ 0.97801416 0.98347217 0.98824343 0.99226588 0.99548762 0.99786688\n", + " 0.99937258 0.99998484 0.97801416 0.97758156 0.97635099 0.97433939\n", + " 0.97157468 0.96809575 0.96395256 0.95920632 0.99998484 0.99949962\n", + " 0.99811915 0.99586168 0.99275675 0.98884464 0.98417584 0.97881096\n", + " 0.95920632 0.96405674 0.9683099 0.97190306 0.97478469 0.97691438\n", + " 0.97826264 0.97881096 0.9804738 0.98670967 0.99185123 0.9957987\n", + " 0.9984753 0.99982841 0.97794404 0.97687554 0.97462396 0.97123615\n", + " 0.9667837 0.96136325 0.99988348 0.99868507 0.99615882 0.99235447\n", + " 0.98734609 0.98123085 0.96140751 0.96695974 0.97155114 0.97508223\n", + " 0.97747856 0.97869042 0.97803381 0.97803381 0.97882992 0.97882992\n", + " 0.9803828 0.97929953 0.97701659 0.97358088 0.96906399 0.96356241\n", + " 0.98661554 0.98549511 0.98313339 0.97957769 0.97489983 0.969196\n", + " 0.99175456 0.99060389 0.98817822 0.98452554 0.97971818 0.9738524\n", + " 0.9957001 0.99452628 0.9920518 0.98832537 0.98342001 0.97743229\n", + " 0.99837538 0.99718585 0.99467828 0.99090201 0.9859307 0.97986124\n", + " 0.99972782 0.99853032 0.996006 0.99220455 0.9872 0.98108947]]\n", + "DEBUG:root:radec2pix: camVec Shape: (3, 96)\n", + "DEBUG:root:radec2pix: curVec: [[ 0.25133154 0.50946946 -0.82296618]\n", + " [ 0.22644031 0.51993816 -0.82364379]\n", + " [ 0.20081726 0.5301136 -0.82380337]\n", + " [ 0.17456739 0.53994172 -0.82340098]\n", + " [ 0.14779574 0.54937236 -0.82240284]\n", + " [ 0.12060773 0.55835921 -0.82078546]\n", + " [ 0.09310955 0.56686003 -0.81853547]\n", + " [ 0.06540833 0.57483703 -0.81564952]\n", + " [ 0.25133154 0.50946946 -0.82296618]\n", + " [ 0.24550649 0.48772265 -0.83776678]\n", + " [ 0.23922804 0.46519273 -0.85227089]\n", + " [ 0.23252702 0.44195085 -0.86637788]\n", + " [ 0.22543382 0.41807272 -0.87999704]\n", + " [ 0.21797848 0.39363894 -0.89304746]\n", + " [ 0.21019115 0.36873523 -0.9054579 ]\n", + " [ 0.20210254 0.34345248 -0.91716681]\n", + " [ 0.06540833 0.57483703 -0.81564952]\n", + " [ 0.05761294 0.5530008 -0.83118642]\n", + " [ 0.0496095 0.53027467 -0.84637325]\n", + " [ 0.04142785 0.50672517 -0.86111168]\n", + " [ 0.0330981 0.48242389 -0.87531235]\n", + " [ 0.02465119 0.45744905 -0.88889408]\n", + " [ 0.01611923 0.43188662 -0.90178385]\n", + " [ 0.00753545 0.40583035 -0.91391736]\n", + " [ 0.20210254 0.34345248 -0.91716681]\n", + " [ 0.17578203 0.35292022 -0.91899293]\n", + " [ 0.14879932 0.36228374 -0.92011372]\n", + " [ 0.12125451 0.37149083 -0.92048461]\n", + " [ 0.09324916 0.38049286 -0.92007053]\n", + " [ 0.0648879 0.38924437 -0.91884622]\n", + " [ 0.03627929 0.3977031 -0.91679663]\n", + " [ 0.00753545 0.40583035 -0.91391736]\n", + " [ 0.24055597 0.51399321 -0.82337343]\n", + " [ 0.2095425 0.5266332 -0.8238625 ]\n", + " [ 0.17753416 0.53877865 -0.8235285 ]\n", + " [ 0.14472432 0.55033562 -0.82230504]\n", + " [ 0.11130709 0.56121888 -0.82014883]\n", + " [ 0.07747836 0.57135248 -0.81703944]\n", + " [ 0.24876529 0.50012453 -0.8294524 ]\n", + " [ 0.24131601 0.47293581 -0.84740681]\n", + " [ 0.23321655 0.44464092 -0.86481472]\n", + " [ 0.22452302 0.41537733 -0.88150501]\n", + " [ 0.21529081 0.38529345 -0.89732871]\n", + " [ 0.20557562 0.35454926 -0.9121587 ]\n", + " [ 0.06213235 0.56540343 -0.82247099]\n", + " [ 0.05243559 0.53803402 -0.84129062]\n", + " [ 0.04245581 0.50939364 -0.85948568]\n", + " [ 0.03224828 0.47961188 -0.87688796]\n", + " [ 0.02187001 0.4488329 -0.89334805]\n", + " [ 0.01138057 0.41721821 -0.90873508]\n", + " [ 0.1907428 0.34767708 -0.91800753]\n", + " [ 0.15802673 0.35921828 -0.91977703]\n", + " [ 0.12441537 0.37055049 -0.92044182]\n", + " [ 0.09009495 0.3815827 -0.91993345]\n", + " [ 0.05525823 0.39223123 -0.91820542]\n", + " [ 0.02010658 0.40241973 -0.91523444]\n", + " [ 0.25122867 0.50943273 -0.82302032]\n", + " [ 0.25122867 0.50943273 -0.82302032]\n", + " [ 0.00766325 0.405893 -0.91388848]\n", + " [ 0.00766325 0.405893 -0.91388848]\n", + " [ 0.23803217 0.50466955 -0.82984898]\n", + " [ 0.23042747 0.47742818 -0.84791834]\n", + " [ 0.22219585 0.4490673 -0.86542912]\n", + " [ 0.2133931 0.41972405 -0.88221035]\n", + " [ 0.20407407 0.38954667 -0.89811311]\n", + " [ 0.19429412 0.35869534 -0.9130101 ]\n", + " [ 0.20685206 0.51727576 -0.83044447]\n", + " [ 0.1988201 0.48991521 -0.84879542]\n", + " [ 0.19022704 0.46139941 -0.86655886]\n", + " [ 0.18112735 0.43186418 -0.88356449]\n", + " [ 0.17157462 0.40145716 -0.89966343]\n", + " [ 0.16162353 0.3703392 -0.91472767]\n", + " [ 0.17468358 0.52940231 -0.83019205]\n", + " [ 0.16624249 0.50196704 -0.8487594 ]\n", + " [ 0.15730532 0.47334387 -0.86671831]\n", + " [ 0.14792545 0.44366692 -0.88389916]\n", + " [ 0.13815583 0.41308313 -0.90015293]\n", + " [ 0.12805117 0.38175389 -0.91535068]\n", + " [ 0.14171964 0.54095512 -0.82902539]\n", + " [ 0.13288568 0.51348926 -0.84774417]\n", + " [ 0.12361974 0.48480615 -0.8658413 ]\n", + " [ 0.1139748 0.45503822 -0.88314776]\n", + " [ 0.10400412 0.42433152 -0.89951426]\n", + " [ 0.09376319 0.39284786 -0.91481092]\n", + " [ 0.10815398 0.55184864 -0.82690132]\n", + " [ 0.09894248 0.52439542 -0.84570671]\n", + " [ 0.08936243 0.49569933 -0.86388456]\n", + " [ 0.0794673 0.46589129 -0.88126628]\n", + " [ 0.06931153 0.43511647 -0.89770239]\n", + " [ 0.05895212 0.40353677 -0.91306228]\n", + " [ 0.07418258 0.56200649 -0.82379952]\n", + " [ 0.06460939 0.53460795 -0.84262682]\n", + " [ 0.05473084 0.50594503 -0.8608276 ]\n", + " [ 0.04460165 0.47614754 -0.87823358]\n", + " [ 0.0342781 0.44535988 -0.89469525]\n", + " [ 0.02381907 0.41374373 -0.91008174]]\n", + "DEBUG:root:cartToSphere: vec: [[ 0.00110855 -0.20853555 0.97801416]\n", + " [ 0.00111823 -0.18105588 0.98347217]\n", + " [ 0.00112655 -0.15288447 0.98824343]\n", + " [ 0.00113349 -0.12412547 0.99226588]\n", + " [ 0.001139 -0.09488471 0.99548762]\n", + " [ 0.00114306 -0.06527159 0.99786688]\n", + " [ 0.00114562 -0.0353997 0.99937258]\n", + " [ 0.00114666 -0.00538646 0.99998484]\n", + " [ 0.00110855 -0.20853555 0.97801416]\n", + " [ 0.03013432 -0.20838958 0.97758156]\n", + " [ 0.05904256 -0.2079729 0.97635099]\n", + " [ 0.08772073 -0.20728684 0.97433939]\n", + " [ 0.11605724 -0.20633313 0.97157468]\n", + " [ 0.14394136 -0.20511339 0.96809575]\n", + " [ 0.17126266 -0.20362847 0.96395256]\n", + " [ 0.19791015 -0.2018782 DEBUG:root:radec2pix: curVec Shape: (96, 3)\n", + "0.95920632]\n", + " [ 0.00114666 -0.00538646 0.99998484]\n", + " [ 0.03116962 -0.00538259 0.99949962]\n", + " [ 0.06106803 -0.00537156 0.99811915]\n", + " [ 0.09072406 -0.00535349 0.99586168]\n", + " [ 0.1200235 -0.00532854 0.99275675]\n", + " [ 0.1488564 -0.00529689 0.98884464]\n", + " [ 0.17711651 -0.00525872 0.98417584]\n", + " [ 0.20469956 -0.00521415 0.97881096]\n", + " [ 0.19791015 -0.2018782 0.95920632]\n", + " [ 0.19966308 -0.17529764 0.96405674]\n", + " [ 0.20115603 -0.14802765 0.9683099 ]\n", + " [ 0.20238925 -0.12017919 0.97190306]\n", + " [ 0.20336191 -0.09186258 0.97478469]\n", + " [ 0.20407235 -0.06318839 0.97691438]\n", + " [ 0.20451873 -0.03426807 0.97826264]\n", + " [ 0.20469956 -0.00521415 0.97881096]\n", + " [ 0.00121266 -0.196646 0.9804738 ]\n", + " [ 0.00122459 -0.16248857 0.98670967]\n", + " [ 0.00123428 -0.12739553 0.99185123]\n", + " [ 0.00124164 -0.09156092 0.9957987 ]\n", + " [ 0.00124661 -0.05518617 0.9984753 ]\n", + " [ 0.00124912 -0.01848208 0.99982841]\n", + " [ 0.01377154 -0.20841259 0.97794404]\n", + " [ 0.04928181 -0.20805164 0.97687554]\n", + " [ 0.08450359 -0.2072855 0.97462396]\n", + " [ 0.11923105 -0.20611722 0.97123615]\n", + " [ 0.15326028 -0.20454967 0.9667837 ]\n", + " [ 0.18638779 -0.20258404 0.96136325]\n", + " [ 0.01424443 -0.00548838 0.99988348]\n", + " [ 0.05097175 -0.00547863 0.99868507]\n", + " [ 0.08739457 -0.00545803 0.99615882]\n", + " [ 0.12330108 -0.00542687 0.99235447]\n", + " [ 0.15848878 -0.0053855 0.98734609]\n", + " [ 0.192763 -0.0053342 0.98123085]\n", + " [ 0.19861623 -0.19038695 0.96140751]\n", + " [ 0.2005887 -0.15733098 0.96695974]\n", + " [ 0.20217123 -0.12334981 0.97155114]\n", + " [ 0.20336272 -0.08864677 0.97508223]\n", + " [ 0.2041602 -0.05342545 0.97747856]\n", + " [ 0.2045604 -0.01789151 0.97869042]\n", + " [ 0.00120792 -0.20844284 0.97803381]\n", + " [ 0.00120792 -0.20844284 0.97803381]\n", + " [ 0.20460634 -0.00531377 0.97882992]\n", + " [ 0.20460634 -0.00531377 0.97882992]\n", + " [ 0.01382559 -0.19661746 0.9803828 ]\n", + " [ 0.04947523 -0.19627694 0.97929953]\n", + " [ 0.08483539 -0.19555447 0.97701659]\n", + " [ 0.11969997 -0.19445357 0.97358088]\n", + " [ 0.15386543 -0.19297773 0.96906399]\n", + " [ 0.18712908 -0.19112874 0.96356241]\n", + " [ 0.01396162 -0.1624649 0.98661554]\n", + " [ 0.04996174 -0.16218264 0.98549511]\n", + " [ 0.08566901 -0.16158454 0.98313339]\n", + " [ 0.1208763 -0.16067502 0.97957769]\n", + " [ 0.15538076 -0.15945889 0.97489983]\n", + " [ 0.1889821 -0.15793949 0.969196 ]\n", + " [ 0.01407199 -0.12737685 0.99175456]\n", + " [ 0.05035615 -0.12715419 0.99060389]\n", + " [ 0.08634371 -0.12668294 0.98817822]\n", + " [ 0.12182616 -0.12596768 0.98452554]\n", + " [ 0.15660103 -0.12501365 0.97971818]\n", + " [ 0.19047015 -0.12382499 0.9738524 ]\n", + " [ 0.01415593 -0.0915474 0.9957001 ]\n", + " [ 0.05065593 -0.09138626 0.99452628]\n", + " [ 0.08685581 -0.09104555 0.9920518 ]\n", + " [ 0.12254563 -0.09052922 0.98832537]\n", + " [ 0.15752301 -0.08984197 0.98342001]\n", + " [ 0.1915915 -0.08898771 0.97743229]\n", + " [ 0.01421257 -0.05517797 0.99837538]\n", + " [ 0.05085809 -0.05508029 0.99718585]\n", + " [ 0.08720077 -0.05487388 0.99467828]\n", + " [ 0.12302951 -0.05456144 0.99090201]\n", + " [ 0.15814189 -0.05414617 0.9859307 ]\n", + " [ 0.1923426 -0.05363087 0.97986124]\n", + " [ 0.01424114 -0.01847933 0.99972782]\n", + " [ 0.05096003 -0.01844651 0.99853032]\n", + " [ 0.08737459 -0.01837718 0.996006 ]\n", + " [ 0.12327308 -0.0182723 0.99220455]\n", + " [ 0.15845303 -0.018133 0.9872 ]\n", + " [ 0.1927197 -0.01796031 0.98108947]]\n", + "DEBUG:root:radec2pix: camVec: [[-0.20607518 -0.20787446 -0.20940354 -0.21066179 -0.21164814 -0.21236112\n", + " -0.21279916 -0.21296107 -0.20607518 -0.17964954 -0.15251864 -0.12479221\n", + " -0.09658011 -0.06799262 -0.03914089 -0.01013708 -0.21296107 -0.18561075\n", + " -0.15755214 -0.12888979 -0.09972928 -0.07017922 -0.04035219 -0.01036463\n", + " -0.01013708 -0.01020871 -0.01026764 -0.01031373 -0.01034674 -0.01036638\n", + " -0.0103724 -0.01036463 -0.20680345 -0.20882603 -0.21044235 -0.21165063\n", + " -0.2124482 -0.2128323 -0.19465346 -0.16177694 -0.12795009 -0.0933751\n", + " -0.05825505 -0.022795 -0.20112996 -0.16711987 -0.13214975 -0.09641349\n", + " -0.0601111 -0.02345151 -0.01026957 -0.0103498 -0.01041065 -0.01045169\n", + " -0.01047241 -0.01047238 -0.20599275 -0.20599275 -0.01046737 -0.01046737\n", + " -0.19541667 -0.16240545 -0.12844349 -0.09373247 -0.05847519 -0.02287686\n", + " -0.19732118 -0.16397526 -0.12967711 -0.09462661 -0.05902568 -0.02308015\n", + " -0.19884383 -0.16523235 -0.13066656 -0.09534433 -0.05946678 -0.02324061\n", + " -0.19998259 -0.16617376 -0.13140827 -0.09588212 -0.05979589 -0.0233572\n", + " -0.20073433 -0.16679525 -0.13189744 -0.09623556 -0.06000982 -0.02342863\n", + " -0.20109591 -0.16709274 -0.13212968 -0.09640067 -0.06010576 -0.0234538 ]\n", + " [-0.20019593 -0.17367087 -0.14646307 -0.11868235 -0.09043873 -0.0618427\n", + " -0.03300558 -0.0040396 -0.20019593 -0.20202839 -0.20359907 -0.20490731\n", + " -0.20595196 -0.20673135 -0.20724368 -0.20748743 -0.0040396 -0.00409191\n", + " -0.0041395 -0.00418225 -0.00421998 -0.00425248 -0.00427955 -0.00430103\n", + " -0.20748743 -0.17998755 -0.15180051 -0.12303089 -0.0937848 -0.06417157\n", + " -0.03430461 -0.00430103 -0.18872819 -0.15574492 -0.12184525 -0.0872316\n", + " -0.05210744 -0.0166781 -0.20093724 -0.20300612 -0.20468137 -0.20596106\n", + " -0.20684219 -0.20732153 -0.00416252 -0.00422448 -0.00427905 -0.00432591\n", + " -0.00436469 -0.00439503 -0.19558822 -0.16140908 -0.12630166 -0.09046055\n", + " -0.05408714 -0.0173918 -0.20011322 -0.20011322 -0.00440367 -0.00440367\n", + " -0.18950334 -0.19145029 -0.19302803 -0.19423441 -0.195066 -0.19551916\n", + " -0.15638145 -0.15798254 -0.1592836 -0.16028164 -0.16097217 -0.16135064\n", + " -0.12234264 -0.1235961 -0.12461804 -0.12540495 -0.1259519 -0.1262541\n", + " -0.08758892 -0.08849133 -0.08922984 -0.08980108 -0.09020062 -0.09042422\n", + " -0.05232353 -0.0528708 -0.053321 -0.05367171 -0.05391982 -0.0540624\n", + " -0.016752 -0.01694088 -0.01709901 -0.01722548 -0.01731915 -0.01737894]\n", + " [ 0.95783851 0.96261448 0.96679818 0.97032784 0.97315256 0.9752324\n", + " 0.97653835 0.97705233 0.95783851 0.96276195 0.96710159 0.97079344\n", + " 0.97378441 0.97603235 0.97750603 0.97818516 0.97705233 0.98261483\n", + " 0.98750199 0.99165011 0.99500566 0.99752533 0.99917635 0.99993704\n", + " 0.97818516 0.98361591 0.98835782 0.99234925 0.99553873 0.99788504\n", + " 0.9993576 0.99993704 0.96000729 0.96547149 0.9699833DEBUG:root:radec2pix: curVec: [[ 0.46115962 0.65623267 -0.59723571]\n", + " [ 0.44318731 0.64963878 -0.61770095]\n", + " [ 0.42449968 0.64238915 -0.63807225]\n", + " [ 0.40515182 0.63448421 -0.65824144]\n", + " [ 0.38520373 0.62593121 -0.67810634]\n", + " [ 0.36472126 0.61674484 -0.69757022]\n", + " [ 0.34377639 0.60694754 -0.71654203]\n", + " [ 0.32244688 0.59656956 -0.73493726]\n", + " [ 0.46115962 0.65623267 -0.59723571]\n", + " [ 0.478918 0.63504451 -0.60609902]\n", + " [ 0.49615555 0.61336887 -0.61449842]\n", + " [ 0.5128088 0.59129732 -0.62241033]\n", + " [ 0.52881874 0.56892742 -0.62981929]\n", + " [ 0.54413033 0.54636253 -0.63671828]\n", + " [ 0.55869164 0.52371215 -0.64310904]\n", + " [ 0.57245269 0.50109272 -0.64900231]\n", + " [ 0.32244688 0.59656956 -0.73493726]\n", + " [ 0.34090557 0.57468813 -0.7439872 ]\n", + " [ 0.35899803 0.55236021 -0.75234209]\n", + " [ 0.37665726 0.52968108 -0.75997846]\n", + " [ 0.3938217 0.50675074 -0.7668821 ]\n", + " [ 0.41043557 0.48367297 -0.77304793]\n", + " [ 0.42644865 0.46055506 -0.77847966]\n", + " [ 0.44181551 0.43750844 -0.78318926]\n", + " [ 0.57245269 0.50109272 -0.64900DEBUG:root:radec2pix: lng: [270.30457564 270.35386432 270.42218515 270.52319877 270.68775016\n", + " 271.00328211 271.85358468 282.01764037 270.30457564 278.22825834\n", + " 285.84900373 292.93736432 299.35666656 305.05982707 310.06566745\n", + " 314.43133752 282.01764037 350.20239022 354.97318448 356.62297809\n", + " 357.45797758 357.96205284 358.29934604 358.54086611 314.43133752\n", + " 318.71792809 323.65121653 329.29806584 335.69036822 342.79553001\n", + " 350.4881795 358.54086611 270.35332309 270.43180131 270.55509491\n", + " 270.77692983 271.2940439 273.86646927 273.78050957 283.32620486\n", + " 292.17913267 300.04776463 306.84264375 312.61566094 338.92831161\n", + " 353.86519186 356.42636123 357.47985638 358.05382146 358.4148969\n", + " 316.21189934 321.89127155 328.61157088 336.44738638 345.33544633\n", + " 355.00144674 270.33202411 270.33202411 358.51232366 358.51232366\n", + " 274.02225895 284.14773214 293.45215101 301.61524642 308.56613427\n", + " 314.39418307 274.91171606 287.12189287 297.93167364 306.95425335\n", + " 314.25788847 320.11321977 276.3042009 291.6047689 304.27729951\n", + " 314.04247307 321.39984571 326.97203004 278.79000558 298.99985673\n", + " 313.65088315 323.54527533 330.30207858 335.08673923 284.44409964\n", + " 312.71767267 327.81852787 336.08354959 341.09932037 344.41993917\n", + " 307.6197367 340.1007605 348.12231225 351.56865678 353.47160216\n", + " 354.67575821]\n", + "231]\n", + " [ 0.55601161 0.49320773 -0.66902707]\n", + " [ 0.53872523 0.48490769 -0.68894097]\n", + " [ 0.52065389 0.47619455 -0.70863127]\n", + " [ 0.50185981 0.46707778 -0.72799387]\n", + " [ 0.48240834 0.45757421 -0.74693241]\n", + " [ 0.46236892 0.44770763 -0.76535799]\n", + " [ 0.44181551 0.43750844 -0.78318926]\n", + " [ 0.45347673 0.65336629 -0.60619415]\n", + " [ 0.43096267 0.64484341 -0.6312275 ]\n", + " [ 0.40742833 0.63533542 -0.65601147]\n", + " [ 0.38298205 0.62485282 -0.68035557]\n", + " [ 0.35774508 0.61342269 -0.70408171]\n", + " [ 0.33185237 0.60108959 -0.72702497]\n", + " [ 0.4689022 0.64703837 -0.60122547]\n", + " [ 0.49032559 0.62073032 -0.61177994]\n", + " [ 0.51090317 0.59378037 -0.62161308]\n", + " [ 0.53052447 0.56636566 -0.63069305]\n", + " [ 0.54908807 0.53867652 -0.63900696]\n", + " [ 0.56649923 0.51091734 -0.64656176]\n", + " [ 0.33060895 0.58712639 -0.73890481]\n", + " [ 0.35299418 0.5599965 -0.74953254]\n", + " [ 0.37476203 0.53229001 -0.75909207]\n", + " [ 0.39579688 0.5041891 -0.76755337]\n", + " [ 0.41599603 0.4758848 -0.77490707]\n", + " [ 0.43526906 0.44757627 -0.78116345]\n", + " [ 0.565346 0.49778314 -0.65772019]\n", + " [ 0.54461858 0.48784105 -0.68220357]\n", + " [ 0.52268136 0.47727642 -0.7064074 ]\n", + " [ 0.49964804 0.46610361 -0.73013647]\n", + " [ 0.47563903 0.4543535 -0.75321339]\n", + " [ 0.45078404 0.44207269 -0.77547759]\n", + " [ 0.46116098 0.6561397 -0.59733679]\n", + " [ 0.46116098 0.6561397 -0.59733679]\n", + " [ 0.44183519 0.4376224 -0.78311449]\n", + " [ 0.44183519 0.4376224 -0.78311449]\n", + " [ 0.46124932 0.64422942 -0.61009632]\n", + " [ 0.48276899 0.6178198 -0.62067124]\n", + " [ 0.50345362 0.59076746 -0.63049842]\n", + " [ 0.52319287 0.56324994 -0.63954572]\n", + " [ 0.54188598 0.53545754 -0.64779998]\n", + " [ 0.55943937 0.50759408 -0.65526776]\n", + " [ 0.43881459 0.63561738 -0.63516321]\n", + " [ 0.46058135 0.60895501 -0.64578527]\n", + " [ 0.48154534 0.58165117 -0.65558828]\n", + " [ 0.50159604 0.55388477 -0.66453974]\n", + " [ 0.52063393 0.52584636 -0.67262613]\n", + " [ 0.5385682 0.49773843 -0.67985348]\n", + " [ 0.41534523 0.62603757 -0.65997371]\n", + " [ 0.43732096 0.59917515 -0.67062622]\n", + " [ 0.45852954 0.57167777 -0.68039341]\n", + " [ 0.47885967 0.54372576 -0.68924286]\n", + " [ 0.49821208 0.51551013 -0.69716141]\n", + " [ 0.51649765 0.48723239 -0.70415536]\n", + " [ 0.3909492 0.61550101 -0.68433707]\n", + " [ 0.41309493 0.58849275 -0.69500278]\n", + " [ 0.4345132 0.5608612 -0.70472193]\n", + " [ 0.4550915 0.53278784 -0.71346257]\n", + " [ 0.47473002 0.50446408 -0.72121245]\n", + " [ 0.49334022 0.4760907 -0.72797875]\n", + " [ 0.36574731 0.60403528 -0.70807505]\n", + " [ 0.38802289 0.5769369 -0.71873643]\n", + " [ 0.40961501 0.54923185 -0.72839544]\n", + " [ 0.43040976 0.52110234 -0.73702089]\n", + " [ 0.45030628 0.49273988 -0.74460168]\n", + " [ 0.46921568 0.46434459 -0.75114629]\n", + " [ 0.33987414 0.59168536 -0.73102258]\n", + " [ 0.3622382 0.5645536 -0.74166213]\n", + " [ 0.38396696 0.53683659 -0.75124952]\n", + " [ 0.40494522 0.50871663 -0.75975441]\n", + " [ 0.42507075 0.48038494 -0.76716698]\n", + " [ 0.44425362 0.45204095 -0.77349706]]\n", + "DEBUG:root:optics_fp: rtanth: [31.53710793 27.15083443 22.76462071 18.37850955 13.99259736 9.60715672\n", + " 5.22337543 0.86680593 31.53710793 31.87457578 32.80044965 34.26706764\n", + " 36.20878157 38.55387546 41.23358186 44.18706537 0.86680593 4.70645911\n", + " 9.05713384 13.4310871 17.81117737 22.19377139 26.57763063 30.96221766\n", + " 44.18706537 41.17129315 38.42050918 35.99551614 33.96616479 32.40686702\n", + " 31.3877559 30.96221766 29.62479828 24.2490533 18.8734536 13.49817273\n", + " 8.12384367 2.75604003 31.59497037 32.40914016 34.06266769 36.44147428\n", + " 39.41445822 42.8581467 2.31847961 7.58192329 12.93825823 18.30612583\n", + " 23.67768384 29.05088524 42.83223469 39.30633844 36.23781045 33.75162698\n", + " 31.98387863 31.05748561 31.52222904 31.52222904 30.94762955 30.94762955\n", + " 29.70218682 30.56681395 32.3147502 34.81319861 37.91407742 41.48250822\n", + " 24.34353743 25.39129827 27.47054774 30.37016151 33.88015908 37.83102431\n", + " 18.99469609 20.32015484DEBUG:root:radec2pix: curVec Shape: (96, 3)\n", + " 22.86529373 26.27807784 30.26641445 34.63202369\n", + " 13.66718319 15.4564585 18.67659162 22.72731378 27.24058114 32.02140662\n", + " 8.40167037 11.07692547 15.25159806 20.00817233 25.01690288 30.15239046\n", + " 3.49098634 8.0185534 13.1988698 18.49123795 23.82109044 29.16788596]\n", + "8 0.97344474\n", + " 0.97578203 0.97694639 0.96006992 0.96572084 0.97042996 0.97409503\n", + " 0.97663845 0.97800724 0.97955572 0.98592753 0.99122053 0.99533197\n", + " 0.99818215 0.99971531 0.98063234 0.98683331 0.99193725 0.99584519\n", + " 0.9984813 0.99979391 0.95787352 0.95787352 0.99993552 0.99993552\n", + " 0.9622374 0.96797276 0.97274994 0.9764667 0.97904541 0.98043302\n", + " 0.96778572 0.97373181 0.978679 0.98252511 0.98519233 0.98662722\n", + " 0.97236485 0.97847957 0.98356321 0.98751357 0.9902524 0.99172566\n", + " 0.9758766 0.9821179 0.98730436 0.99133364 0.9941269 0.9956294\n", + " 0.9782474 0.98457302 0.98982824 0.99391049 0.99674043 0.99826267\n", + " 0.97942831 0.98579563 0.99108495 0.99519355 0.99804176 0.99957386]]\n", + "DEBUG:root:radec2pix: lat: [77.96328192 79.56853071 81.20563621 82.86944579 84.55492216 86.25697831\n", + " 87.97026012 89.68446141 77.96328192 77.84499787 77.51456239 76.99218852\n", + " 76.30618444 75.48813083 74.56921129 73.5781677 89.68446141 88.18737722\n", + " 86.48534608 84.7856574 83.09971795 81.43388184 79.79360686 78.18420142\n", + " 73.5781677 74.59165918 75.53717808 76.38588844 77.10603256 77.66476376\n", + " 78.03174302 78.18420142 78.65888684 80.64836049 82.6805387 84.74610355\n", + " 86.83565024 88.93857815 77.94403081 77.65435125 77.06482717 76.22448951\n", + " 75.19110028 74.0211233 89.125335 87.06142445 84.97647052 82.91045242\n", + " 80.87550158 78.88161748 74.03033777 75.2306137 76.3004884 77.18265224\n", + " 77.81700171 78.15051889 77.96868077 77.96868077 78.18950618 78.18950618\n", + " 78.63240168 78.32169564 77.69220555 76.80049546 75.71119975 74.48541744\n", + " 80.6152305 80.22940153 79.46186211 78.40069669 77.13562878 75.74187621\n", + " 82.63719517 82.13946169 81.18123393 79.90730671 78.44079679 76.86879929\n", + " 84.68476231 84.00240554 82.77130238 81.23639689 79.55203729 77.80444657\n", + " 86.73357497 85.70054621 84.08633958 82.26535796 80.37757677 78.48177609\n", + " 88.66315983 86.89328024 84.87745159 82.8411917 80.82286686 78.83968928]\n", + "DEBUG:root:optics_fp: cphi: [0.00780224 0.0090627 0.01080888 0.01338846 0.01758501 0.02561216\n", + " 0.04710747 0.28386977 0.00780224 0.14533491 0.27496322 0.39120201\n", + " 0.49136628 0.57525223 0.64424749 0.70045521 0.28386977 0.98428319\n", + " 0.99578049 0.99808345 0.99891062 0.99929852 0.9995109 0.99963964\n", + " 0.70045521 0.75176312 0.80558693 0.85985876 0.91123211 0.95507721\n", + " 0.98608706 0.99963964 0.00881221 0.01076578 0.01383213 0.0193404\n", + " 0.03213503 0.09472286 0.06831973 0.23248256 0.37902375 0.50180626\n", + " 0.60035228 0.67755053 0.93102393 0.99375313 0.9978592 0.99893119\n", + " 0.99936126 0.99957574 0.72226117 0.78705016 0.85369562 0.91657981\n", + " 0.96723916 0.99609029 0.00828177 0.00828177 0.99962616 0.99962616\n", + " 0.07267344 0.24649478 0.39952529 0.52527664 0.62411014 0.70001939\n", + " 0.08867076 0.29673788 0.46997825 0.60212258 0.69841939 0.76758588\n", + " 0.11364014 0.37079245 0.56463565 0.69588651 0.78180916 0.83848868\n", + " 0.15793745 0.48747001 0.6912696 0.80460719 0.86865107 0.90684836\n", + " 0.25692034 0.68020319 0.84650539 0.91395454 0.94586289 0.96305996\n", + " 0.61832382 0.93964081 0.97815648 0.98893108 0.99334495 0.99556615]\n", + "DEBUG:root:optics_fp: sphi: [-0.99996956 -0.99995893 -0.99994158 -0.99991037 -0.99984537 -0.99967195\n", + " -0.99888983 -0.95886284 -0.99996956 -0.98938252 -0.96145475 -0.92030483\n", + " -0.87095303 -0.81797608 -0.76481709 -0.71369637 -0.95886284 -0.17659731\n", + " -0.09176722 -0.06188241 -0.04666441 -0.03744961 -0.03127246 -0.02684394\n", + " -0.71369637 -0.65943324 -0.59247759 -0.51053198 -0.41189324 -0.2963571\n", + " -0.16622968 -0.02684394 -0.99996117 -0.99994205 -0.99990433 -0.99981296\n", + " -0.99948354 -0.99550368 -0.99766348 -0.97260056 -0.92538694 -0.86498004\n", + " -0.79973567 -0.73547623 -0.36495814 -0.11160071 -0.06539891 -0.04622212\n", + " -0.0357361 -0.02912641 -0.69162042 -0.616889 -0.5207723 -0.39985178\n", + " -0.2538669 -0.08834096 -0.99996571 -0.99996571 -0.02734129 -0.02734129\n", + " -0.99735579 -0.96914412 -0.91672217 -0.85093152 -0.78133638 -0.71412384\n", + " -0.99606099 -0.95495897 -0.882678 -0.79840366 -0.71568873 -0.64094611\n", + " -0.99352198 -0.92871576 -0.82534028 -0.71815177 -0.62351779 -0.54491901\n", + " -0.98744912 -0.87313973 -0.72259694 -0.59380744 -0.49542438 -0.42145706\n", + " -0.96643258 -0.73302362 -0.53238015 -0.40581658 -0.32456648 -0.26928704\n", + " -0.78592344 -0.34216247 -0.20786992 -0.14837557 -0.11517726 -0.094064 ]\n", + "DEBUG:root:radec2pix: camVec: [[ 0.00114566 0.00115565 0.00116422 0.00117136 0.00117701 0.00118116\n", + " 0.00118376 0.00118481 0.00114566 0.03017404 0.05908469 0.08776498\n", + " 0.11610332 0.14398904 0.17131174 0.19796003 0.00118481 0.03120455\n", + " 0.06110052 0.09075528 0.1200543 0.14888674 0.17714546 0.20472589\n", + " 0.19796003 0.19971011 0.20119978 0.20242973 0.20339908 0.20410611\n", + " 0.20454887 0.20472589 0.00124992 0.00126219 0.00127213 0.00127966\n", + " 0.00128472 0.00128725 0.01380981 0.04932315 0.08454761 0.11927732\n", + " 0.15330846 0.18643745 0.01428113 0.05100494 0.08742589 0.12333185\n", + " 0.15851879 0.19279062 0.19866498 0.20063357 0.20221208 0.20339952\n", + " 0.20419277 0.20458843 0.00124504 0.00124504 0.2046327 0.2046327\n", + " 0.01386393 0.04951642 0.08487904 0.1197456 0.15391263 0.18717755\n", + " 0.01400003 0.0500023 0.08571147 0.12092013 0.15542529 0.1890269\n", + " 0.01411023 0.05039551 0.08638432 0.12186779 0.15664287 0.19051132\n", + " 0.01419378 0.0506935 0.08689379 0.12258434 0.15756175 0.19162897\n", + " 0.0142499 0.05089361 0.08723571 0.12306478 0.15817704 0.19237609\n", + " 0.01427798 0.05099373 0.08740674 0.12330495 0.15848438 0.1927489 ]\n", + " [-0.20812604 -0.1806373 -0.15245726 -0.12369032 -0.09444319 -0.06482624\n", + " -0.03495355 -0.00494229 -0.20812604 -0.20797994 -0.20756351 -0.20687811\n", + " -0.20592557 -0.20470759 -0.20322504 -0.20147731 -0.00494229 -0.00493875\n", + " -0.0049287 -0.00491221 -0.00488939 -0.0048604 -0.00482538 -0.00478446\n", + " -0.20147731 -0.17488831 -0.14761103 -0.11975687 -0.09143612 -0.06275929\n", + " -0.03383788 -0.00478446 -0.19623245 -0.16206424 -0.12696122 -0.09111882\n", + " -0.05474021 -0.01803675 -0.20800294 -0.20764209 -0.20687664 -0.20570979\n", + " -0.20414458 -0.20218204 -0.00504426 -0.00503536 -0.00501654 -0.004988\n", + " -0.00495001 -0.00490286 -0.1899823 -0.15691665 -0.12292805 -0.08821992\n", + " -0.05299579 -0.01746139 -0.2080333 -0.2080333 -0.00488406 -0.00488406\n", + " -0.19620382 -0.19586344 -0.1951417 -0.19404219 -0.19256861 -0.19072284\n", + " -0.16204052 -0.16175873 -0.16116182 -0.16025398 -0.15904007 -0.15752379\n", + " -0.12694255 -0.12672084 -0.12625153 -0.1255387 -0.12458735 -0.12340188\n", + " -0.09110536 -0.09094551 -0.09060732 -0.09009413 -0.08941017 -0.08855947\n", + " -0.05473209 -0.05463571 -0.05443186 -0.05412272 -0.05371108 -0.05319971\n", + " -0.01803407 -0.01800225 -0.01793496 -0.01783294 -0.01769716 -0.01752858]\n", + " [ 0.97810134 0.9835491 0.98830938 0.99232018 0.99552956 0.99789587\n", + " 0.99938824 0.99998708 0.97810134 0.97766757 0.97643555 0.97442227\n", + " 0.97165564 0.96817455 0.96402898 0.95928031 0.99998708 0.99950082\n", + " 0.99811945 0.99586111 0.99275529 0.98884231 0.98417285 0.97880765\n", + " 0.95928031 0.96412134 0.96836441 0.97194676 0.97481703 0.97693499\n", + " 0.97827131 0.97880765 0.98055661 0.9867794 0.99190687 0.99583921\n", + " 0.9984998 0.9998365 0.97803071 0.97696059 0.97470701 0.97131684\n", + " 0.96686168 0.96143824 0.9998853 0.99868571 0.9961584 0.99235295\n", + " 0.98734355 0.98122767 0.96147748 0.96701775 0.97159609 0.97511327\n", + " 0.97749515 0.97869233 0.97812095 0.97812095 0.97882665 0.97882665\n", + " 0.98046512 0.97938023 0.97709532 0.97365734 0.96913788 0.96363342\n", + " 0.98668479 0.98556272 0.98319907 0.97964125 0.97496115 0.96925491\n", + " 0.9918097 0.99065742 0.98822988 0.98457518 0.97976579 0.97389805\n", + " 0.9957401 0.99456477 0.9920886 0.98836032 0.98345316 0.97746384\n", + " 0.99839939 0.99720849 0.9946995 0.99092169 0.98594885 0.97987817\n", + " 0.99973542 0.99853671 0.99601124 0.99220858 0.98720287 0.98109154]]\n", + "DEBUG:root:radec2pix: camVec Shape: (3, 96)\n", + "DEBUG:root:optics_fp: xyfp: [[ -0.24606 31.536148 ]\n", + " [ -0.24606 27.14971943]\n", + " [ -0.24606 22.76329086]\n", + " [ -0.24606 18.37686229]\n", + " [ -0.24606 13.99043371]\n", + " [ -0.24606 9.60400514]\n", + " [ -0.24606 5.21757658]\n", + " [ -0.24606 0.831148 ]\n", + " [ -0.24606 31.536148 ]\n", + " [ -4.63248857 31.536148 ]\n", + " [ -9.01891714 31.536148 ]\n", + " [-13.40534571 31.536148 ]\n", + " [-17.79177429 31.536148 ]\n", + " [-22.17820286 31.536148 ]\n", + " [-26.56463143 31.536148 ]\n", + " [-30.95106 31.536148 ]\n", + " [ -0.24606 0.831148 ]\n", + " [ -4.63248857 0.831148 ]\n", + " [ -9.01891714 0.831148 ]\n", + " [-13.40534571 0.831148 ]\n", + " [-17.79177429 0.831148 ]\n", + " [-22.17820285 0.831148 ]\n", + " [-26.56463143 0.831148 ]\n", + " [-30.95106 0.831148 ]\n", + " [-30.95106 31.536148 ]\n", + " [-30.95106 27.14971943]\n", + " [-30.95106 22.76329086]\n", + " [-DEBUG:root:radec2pix: camVec Shape: (3, 96)\n", + "30.95106 18.37686228]\n", + " [-30.95106 13.99043371]\n", + " [-30.95106 9.60400514]\n", + " [-30.95106 5.21757657]\n", + " [-30.95106 0.831148 ]\n", + " [ -0.26106 29.623648 ]\n", + " [ -0.26106 24.247648 ]\n", + " [ -0.26106 18.87164801]\n", + " [ -0.26106 13.495648 ]\n", + " [ -0.26106 8.119648 ]\n", + " [ -0.26106 2.743648 ]\n", + " [ -2.15856 31.521148 ]\n", + " [ -7.53456 31.521148 ]\n", + " [-12.91056 31.521148 ]\n", + " [-18.28656 31.521148 ]\n", + " [-23.66256 31.521148 ]\n", + " [-29.03856 31.521148 ]\n", + " [ -2.15856 0.846148 ]\n", + " [ -7.53456 0.846148 ]\n", + " [-12.91056 0.846148 ]\n", + " [-18.28655999 0.846148 ]\n", + " [-23.66256 0.846148 ]\n", + " [-29.03856 0.846148 ]\n", + " [-30.93606 29.623648 ]\n", + " [-30.93606 24.247648 ]\n", + " [-30.93606 18.871648 ]\n", + " [-30.93606 13.495648 ]\n", + " [-30.93606 8.119648 ]\n", + " [-30.93606 2.743648 ]\n", + " [ -0.26106 31.521148 ]\n", + " [ -0.26106 31.521148 ]\n", + " [-30.93606 0.846148 ]\n", + " [-30.93606 0.846148 ]\n", + " [DEBUG:root:cartToSphere: vec: [[ 0.00114566 -0.20812604 0.97810134]\n", + " [ 0.00115565 -0.1806373 0.9835491 ]\n", + " [ 0.00116422 -0.15245726 0.98830938]\n", + " [ 0.00117136 -0.12369032 0.99232018]\n", + " [ 0.00117701 -0.09444319 0.99552956]\n", + " [ 0.00118116 -0.06482624 0.99789587]\n", + " [ 0.00118376 -0.03495355 0.99938824]\n", + " [ 0.00118481 -0.00494229 0.99998708]\n", + " [ 0.00114566 -0.20812604 0.97810134]\n", + " [ 0.03017404 -0.20797994 0.97766757]\n", + " [ 0.05908469 -0.20756351 0.97643555]\n", + " [ 0.08776498 -0.20687811 0.97442227]\n", + " [ 0.11610332 -0.20592557 0.97165564]\n", + " [ 0.14398904 -0.20470759 0.96817455]\n", + " [ 0.17131174 -0.20322504 0.96402898]\n", + " [ 0.19796003 -0.20147731 0.95928031]\n", + " [ 0.00118481 -0.00494229 0.99998708]\n", + " [ 0.03120455 -0.00493875 0.99950082]\n", + " [ 0.06110052 -0.0049287 0.99811945]\n", + " [ 0.09075528 -0.00491221 0.99586111]\n", + " [ 0.1200543 -0.00488939 0.99275529]\n", + " [ 0.14888674 -0.0048604 0.98884231]\n", + " [ 0.17714546 -0.00482538 0.98417285]\n", + " [ 0.20472589 -0.00478446 0.97880765]\n", + " [ 0.19796003 -0.20147731 0.95928031]\n", + " [ 0.19971011 -0.17488831 0.96412134]\n", + " [ 0.20119978 -0.14761103 0.96836441]\n", + " [ 0.20242973 -0.11975687 0.97194676]\n", + " [ 0.20339908 -0.09143612 0.97481703]\n", + " [ 0.20410611 -0.06275929 0.97693499]\n", + " [ 0.20454887 -0.03383788 0.97827131]\n", + " [ 0.20472589 -0.00478446 0.97880765]\n", + " [ 0.00124992 -0.19623245 0.98055661]\n", + " [ 0.00126219 -0.16206424 0.9867794 ]\n", + " [ 0.00127213 -0.12696122 0.99190687]\n", + " [ 0.00127966 -0.09111882 0.99583921]\n", + " [ 0.00128472 -0.05474021 0.9984998 ]\n", + " [ 0.00128725 -0.01803675 0.9998365 ]\n", + " [ 0.01380981 -0.20800294 0.97803071]\n", + " [ 0.04932315 -0.20764209 0.97696059]\n", + " [ 0.08454761 -0.20687664 0.97470701]\n", + " [ 0.11927732 -0.20570979 0.97131684]\n", + " [ 0.15330846 -0.20414458 0.96686168]\n", + " [ 0.18643745 -0.20218204 0.96143824]\n", + " [ 0.01428113 -0.00504426 0.9998853 ]\n", + " [ 0.05100494 -0.00503536 0.99868571]\n", + " [ 0.08742589 -0.00501654 0.9961584 ]\n", + " [ 0.12333185 -0.004988 0.99235295]\n", + " [ 0.15851879 -0.00495001 0.98734355]\n", + " [ 0.19279062 -0.00490286 0.98122767]\n", + " [ 0.19866498 -0.1899823 0.96147748]\n", + " [ 0.20063357 -0.15691665 0.96701775]\n", + " [ 0.20221208 -0.12292805 0.97159609]\n", + " [ 0.20339952 -0.08821992 0.97511327]\n", + " [ 0.20419277 -0.05299579 0.97749515]\n", + " [ 0.20458843 -0.01746139 0.97869233]\n", + " [ 0.00124504 -0.2080333 0.97812095]\n", + " [ 0.00124504 -0.2080333 0.97812095]\n", + " [ 0.2046327 -0.00488406 0.97882665]\n", + " [ 0.2046327 -0.00488406 0.97882665]\n", + " [ 0.01386393 -0.19620382 0.98046512]\n", + " [ 0.04951642 -0.19586344 0.97938023]\n", + " [ 0.08487904 -0.1951417 0.97709532]\n", + " [ 0.1197456 -0.19404219 0.97365734]\n", + " [ 0.15391263 -0.19256861 0.96913788]\n", + " [ 0.18717755 -0.19072284 0.96363342]\n", + " [ 0.01400003 -0.16204052 0.98668479]\n", + " [ 0.0500023 -0.16175873 0.98556272]\n", + " [ 0.08571147 -0.16116182 0.98319907]\n", + " [ 0.12092013 -0.16025398 0.97964125]\n", + " [ 0.15542529 -0.15904007 0.97496115]\n", + " [ 0.1890269 -0.15752379 0.96925491]\n", + " [ 0.01411023 -0.12694255 0.9918097 ]\n", + " [ 0.05039551 -0.12672084 0.99065742]\n", + " [ 0.08638432 -0.12625153 0.98822988]\n", + " [ 0.12186779 -0.1255387 0.98457518]\n", + " [ 0.15664287 -0.12458735 0.97976579]\n", + " [ 0.19051132 -0.12340188 0.97389805]\n", + " [ 0.01419378 -0.09110536 0.9957401 ]\n", + " [ 0.0506935 -0.09094551 0.99456477]\n", + " [ 0.08689379 -0.09060732 0.9920886 ]\n", + " [ 0.12258434 -0.09009413 0.98836032]\n", + " [ 0.15756175 -0.08941017 0.98345316]\n", + " [ 0.19162897 -0.08855947 0.97746384]\n", + " [ 0.0142499 -0.05473209 0.99839939]\n", + " [ 0.05089361 -0.05463571 0.99720849]\n", + " [ 0.08723571 -0.05443186 0.9946995 ]\n", + " [ 0.12306478 -0.05412272 0.99092169]\n", + " [ 0.15817704 -0.05371108 0.98594885]\n", + " [ 0.19237609 -0.05319971 0.97987817]\n", + " [ 0.01427798 -0.01803407 0.99973542]\n", + " [ 0.05099373 -0.01800225 0.99853671]\n", + " [ 0.08740674 -0.01793496 0.99601124]\n", + " [ 0.12330495 -0.01783294 0.99220858]\n", + " [ 0.15848438 -0.01769716 0.98720287]\n", + " [ 0.1927489 -0.01752858 0.98109154]]\n", + " -2.15856 29.623648 ]\n", + " [ -7.53456 29.623648 ]\n", + " [-12.91056 29.623648 ]\n", + " [-18.28656 29.623648 ]\n", + " [-23.66256 29.623648 ]\n", + " [-29.03856 29.623648 ]\n", + " [ -2.15856 24.247648 ]\n", + " [ -7.53456 24.247648 ]\n", + " [-12.91056 24.247648 ]\n", + " [-18.28656 24.247648 ]\n", + " [-23.66256 24.247648 ]\n", + " [-29.03856 24.247648 ]\n", + " [ -2.15856 18.871648 ]\n", + " [ -7.53456 18.871648 ]\n", + " [-12.91056 18.871648 ]\n", + " [-18.28656 18.871648 ]\n", + " [-23.66256 18.871648 ]\n", + " [-29.03856 18.871648 ]\n", + " [ -2.15856 13.495648 ]\n", + " [ -7.53456 13.495648 ]\n", + " [-12.91056 13.495648 ]\n", + " [-18.28656 13.495648 ]\n", + " [-23.66256 13.495648 ]\n", + " [-29.03856 13.495648 ]\n", + " [ -2.15856 8.119648 ]\n", + " [ -7.53456 8.119648 ]\n", + " [-12.91056 8.119648 ]\n", + " [-18.28656 8.119648 ]\n", + " [-23.66256 8.119648 ]\n", + " [-29.03856 8.119648 ]\n", + " [ -2.15856 2.743648 ]\n", + " [ -7.53456 2.743648 ]\n", + " [-12.91056 2.743648 ]\n", + " [-18.28656 2.743648 ]\n", + " [-23.66256 2.743648 ]\n", + " [-29.03856 2.743648 ]]\n", + "DEBUG:root:optics_fp: xyfp shape: (96, 2)\n", + "DEBUG:root:optics_fp: rtanth: [31.49183295 27.10547639 22.71914763 18.33286663 13.94667845 9.56071086\n", + " 5.17552468 0.80400903 31.49183295 31.81893962 32.73584893 34.19514883\n", + " 36.13117923 38.47203574 41.14868729 44.10003298 0.80400903 4.62123428\n", + " 8.97478096 13.34987234 17.73056686 22.11353481 26.49764807 30.88241889\n", + " 44.10003298 41.08265104 38.3306279 35.90503258 33.87605653 32.31848632\n", + " 31.30277019 30.88241889 29.57945042 24.20357534 18.8277716 13.45212473\n", + " 8.07694792 2.70504492 31.5450314 32.34738816 33.9914811 36.36331677\n", + " 39.33145785 42.7719429 2.22895212 7.49884938 12.85690509 18.22553229\n", + " 23.59751677 28.97099101 42.74447401 39.21682332 36.14735337 33.66163739\n", + " 31.89644588 30.97520686 31.47691651 31.47691651 30.86780955 30.86780955\n", + " 29.6519244 30.50411668 32.24233865 34.73382242 37.83003027 41.39549146\n", + " 24.29209321 25.32528987 27.39411567 30.28708623 33.79319995 37.74196451\n", + " 18.94142858 20.24949953 22.78397459 26.19121067 30.17701587 34.5416822\n", + " 13.61074549 15.37910619 18.5898944 22.63745111 27.1500822 31.93121491\n", + " 8.33845435 10.99064764 15.16118736 19.91812291 24.9279841 30.06459569\n", + " 3.40734519 7.92934524 13.11265734 18.40684115 23.73782997 29.08539314]\n", + "DEBUG:root:radec2pix: lng: [270.31539085 270.36655189 270.43752447 270.542579 270.71402077\n", + " 271.04383538 271.93968007 283.48101478 270.31539085 278.25496108\n", + " 285.88944585 292.98836581 299.41482725 305.12212741 310.12974078\n", + " 314.49549071 283.48101478 351.00638008 355.38819591 356.90183998\n", + " 357.66783206 358.13024629 358.43966874 358.66123705 314.49549071\n", + " 318.7910165 323.73421549 329.3915583 335.79415496 342.90819266\n", + " 350.6068072 358.66123705 270.36494598 270.44622312 270.57407396\n", + " 270.80460183 271.34445266 274.08218667 273.79842993 283.36234739\n", + " 292.22915231 300.10657084 306.9058095 312.67997848 340.54617186\n", + " 354.36185807 356.71594406 357.68400903 358.21142556 358.54322592\n", + " 316.27981968 321.97083668 328.70389405 336.55230838 345.45057848\n", + " 355.12169333 270.34290102 270.34290102 358.63275532 358.63275532\n", + " 274.04185073 284.1877247 293.50716352 301.67919787 308.63398936\n", + " 314.46249394 274.93799638 287.17724528 298.00560006 307.03649051\n", + " 314.34141513 320.19418356 276.34264386 291.68718176 304.38086955\n", + " 314.14993264 321.50269119 327.06723776 278.85521862 299.13552131\n", + " 313.8014816 323.6857401 330.42677291 335.19643967 284.59338686\n", + " 312.96912569 328.03736148 336.26056332 341.24440919 344.5417427\n", + " 308.36945368 340.55550723 348.40444495 351.77067409 353.62846105\n", + " 354.80381648]\n", + "DEBUG:root:cartToSphere: vec: [[-0.20607518 -0.20019593 0.95783851]\n", + " [-0.20787446 -0.17367087 0.96261448]\n", + " [-0.20940354 -0.14646307 0.96679818]\n", + " [-0.21066179 -0.11868235 0.97032784]\n", + " [-0.21164814 -0.09043873 0.97315256]\n", + " [-0.21236112 -0.0618427 0.9752324 ]\n", + " [-0.21279916 -0.03300558 0.97653835]\n", + " [-0.21296107 -0.0040396 0.97705233]\n", + " [-0.20607518 -0.20019593 0.95783851]\n", + " [-0.17964954 -0.20202839 0.96276195]\n", + " [-0.15251864 -0.20359907 0.96710159]\n", + " [-0.12479221 -0.20490731 0.97079344]\n", + " [-0.09658011 -0.20595196 0.97378441]\n", + " [-0.06799262 -0.20673135 0.97603235]\n", + " [-0.03914089 -0.20724368 0.97750603]\n", + " [-0.01013708 -0.20748743 0.978DEBUG:root:radec2pix: lat: [77.98725933 79.59290201 81.23038669 82.89455027 84.58030503 86.2825061\n", + " 87.99575217 89.70880341 77.98725933 77.86842442 77.53699463 77.01330297\n", + " 76.32579246 75.50615888 74.58567435 73.59317035 89.70880341 88.18955545\n", + " 86.48562338 84.78529769 83.09901991 81.43298752 79.79264001 78.18327445\n", + " 73.59317035 74.60559591 75.5496878 76.3965297 77.11433871 77.67029216\n", + " 78.03413945 78.18327445 78.68303826 80.67298244 82.70560399 84.77150761\n", + " 86.86118368 88.96388538 77.96782959 77.67716345 77.0861016 76.24391961\n", + " 75.20859077 74.03673952 89.13217661 87.06213831 84.97619114 82.90974635\n", + " 80.87458441 78.88067366 74.04491662 75.24365824 76.31136856 77.19067025\n", + " 77.8215059 78.15105181 77.99265855 77.99265855 78.18859038 78.18859038\n", + " 78.65635764 78.34456159 77.7133866 76.81969543 75.7283623 74.50063549\n", + " 80.63959245 80.25225497 79.48245907 78.41882236 77.15141692 75.75558792\n", + " 82.66188886 82.16191851 81.200562 79.92354945 78.45441908 76.88031771\n", + " 84.70956295 84.0235478 82.78807615 81.24955295 79.56251519 77.81300601\n", + " 86.75780924 85.71788826 84.09815339 82.27374035 80.38380312 78.4866344\n", + " 88.68197076 86.90004071 84.8808155 82.84304634 80.82390053 78.84030268]\n", + "DEBUG:root:make_az_asym: xyp: [[ -0.24606 31.536148 ]\n", + " [ -0.24606 27.14971943]\n", + " [ -0.24606 22.76329086]\n", + " [ -0.24606 18.37686229]\n", + " [ -0.24606 13.99043371]\n", + " [ -0.24606 9.60400514]\n", + " [ -0.24606 5.21757658]\n", + " [ -0.24606 0.831148 ]\n", + " [ -0.24606 31.536148 ]\n", + " [ -4.63248857 31.536148 ]\n", + " [ -9.01891714 31.536148 ]\n", + " [-13.40534571 31.536148 ]\n", + " [-17.79177429 31.536148 ]\n", + " [-22.17820286 31.536148 ]\n", + " [-26.56463143 31.536148 ]\n", + " [-30.95106 31.536148 ]\n", + " [ -0.24606 0.831148 ]\n", + " [ -4.63248857 0.831148 ]\n", + " [ -9.01891714 0.831148 ]\n", + " [-13.40534571 0.831148 ]\n", + " [-17.79177429 0.831148 ]\n", + " [-22.17820285 0.831148 ]\n", + " [-26.56463143 0.831148 ]\n", + " [-30.95106 0.831148 ]\n", + " [-30.95106 31.536148 ]\n", + " [-30.95106 27.14971943]\n", + " [-30.95106 22.76318516]\n", + " [-0.21296107 -0.0040396 0.97705233]\n", + " [-0.18561075 -0.00409191 0.98261483]\n", + " [-0.15755214 -0.0041395 0.98750199]\n", + " [-0.12888979 -0.00418225 0.99165011]\n", + " [-0.09972928 -0.00421998 0.99500566]\n", + " [-0.07017922 -0.00425248 0.99752533]\n", + " [-0.04035219 -0.00427955 0.99917635]\n", + " [-0.01036463 -0.00430103 0.99993704]\n", + " [-0.01013708 -0.20748743 0.97818516]\n", + " [-0.01020871 -0.17998755 0.98361591]\n", + " [-0.01026764 -0.15180051 0.98835782]\n", + " [-0.01031373 -0.12303089 0.99234925]\n", + " [-0.01034674 -0.0937848 0.99553873]\n", + " [-0.01036638 -0.06417157 0.99788504]\n", + " [-0.0103724 -0.03430461 0.9993576 ]\n", + " [-0.01036463 -0.00430103 0.99993704]\n", + " [-0.20680345 -0.18872819 0.96000729]\n", + " [-0.20882603 -0.15574492 0.96547149]\n", + " [-0.21044235 -0.12184525 0.96998338]\n", + " [-0.21165063 -0.0872316 0.97344474]\n", + " [-0.2124482 -0.05210744 0.97578203]\n", + " [-0.2128323 -0.0166781 0.97694639]\n", + " [-0.19465346 -0.20093724 0.96006992]\n", + " [-0.16177694 -0.20300612 0.96572084]\n", + " [-0.12795009 -0.20468137 0.97042996]\n", + " [-0.0933751 -0.20596106 0.97409503]\n", + " [-0.05825505 -0.20684219 0.97663845]\n", + " [-0.022795 -0.20732153 0.97800724]\n", + " [-0.20112996 -0.00416252 0.97955572]\n", + " [-0.16711987 -0.00422448 0.98592753]\n", + " [-0.13214975 -0.00427905 0.99122053]\n", + " [-0.09641349 -0.00432591 0.99533197]\n", + " [-0.0601111 -0.00436469 0.99818215]\n", + " [-0.02345151 -0.00439503 0.99971531]\n", + " [-0.01026957 -0.19558822 0.98063234]\n", + " [-0.0103498 -0.16140908 0.98683331]\n", + " [-0.01041065 -0.12630166 0.99193725]\n", + " [-0.01045169 -0.09046055 0.99584519]\n", + " [-0.01047241 -0.05408714 0.9984813 ]\n", + " [-0.01047238 -0.0173918 0.99979391]\n", + " [-0.20599275 -0.20011322 0.95787352]\n", + " [-0.20599275 -0.20011322 0.95787352]\n", + " [-0.01046737 -0.00440367 0.99993552]\n", + " [-0.01046737 -0.00440367 0.99993552]\n", + " [-0.19541667 -0.18950334 0.9622374 ]\n", + " [-0.16240545 -0.19145029 0.96797276]\n", + " [-0.12844349 -0.19302803 0.97274994]\n", + " [-0.09373247 -0.19423441 0.9764667 ]\n", + " [-0.05847519 -0.195066 0.97904541]\n", + " [-0.02287686 -0.19551916 0.98043302]\n", + " [-0.19732118 -0.15638145 0.96778572]\n", + " [-0.16397526 -0.15798254 0.97373181]\n", + " [-0.12967711 -0.1592836 0.978679 ]\n", + " [-0.09462661 -0.16028164 0.98252511]\n", + " [-0.05902568 -0.16097217 0.98519233]\n", + " [-0.02308015 -0.16135064 0.98662722]\n", + " [-0.19884383 -0.12234264 0.97236485]\n", + " [-0.16523235 -0.1235961 0.97847957]\n", + " [-0.13066656 -0.12461804 0.98356321]\n", + " [-0.09534433 -0.12540495 0.98751357]\n", + " [-0.05946678 -0.1259519 0.9902524 ]\n", + " [-0.02324061 -0.1262541 0.99172566]\n", + " [-0.19998259 -0.08758892 0.9758766 ]\n", + " [-0.16617376 -0.08849133 0.9821179 ]\n", + " [-0.13140827 -0.08922984 0.98730436]\n", + " [-0.09588212 -0.08980108 0.99133364]\n", + " [-0.05979589 -0.09020062 0.9941269 ]\n", + " [-0.0233572 -0.09042422 0.9956294 ]\n", + " [-0.20073433 -0.05232353 0.9782474 ]\n", + " [-0.16679525 -0.0528708 0.98457302]\n", + " [-0.13189744 -0.053321 0.98982824]\n", + " [-0.09623556 -0.05367171 0.99391049]\n", + " [-0.06000982 -0.05391982 0.99674043]\n", + " [-0.02342863 -0.0540624 0.99826267]\n", + " [-0.20109591 -0.016752 0.97942831]\n", + " [-0.16709274 -0.01694088 0.98579563]\n", + " [-0.13212968 -0.01709901 0.99108495]\n", + " [-0.09640067 -0.01722548 0.99519355]\n", + " [-0.06010576 -0.01731915 0.99804176]\n", + " [-0.0234538 -0.01737894 0.99957386]]\n", + "29086]\n", + " [-30.95106 18.37686228]\n", + " [-30.95106 13.99043371]\n", + " [-30.95106 9.60400514]\n", + " [-30.95106 5.21757657]\n", + " [-30.95106 0.831148 ]\n", + " [ -0.26106 29.623648 ]\n", + " [ -0.26106 24.247648 ]\n", + " [ -0.26106 18.87164801]\n", + " [ -0.26106 13.495648 ]\n", + " [ -0.26106 8.119648 ]\n", + " [ -0.26106 2.743648 ]\n", + " [ -2.15856 31.521148 ]\n", + " [ -7.53456 31.521148 ]\n", + " [-12.91056 31.521148 ]\n", + " [-18.28656 31.521148 ]\n", + " [-23.66256 31.521148 ]\n", + " [-29.03856 31.521148 ]\n", + " [ -2.15856 0.846148 ]\n", + " [ -7.53456 0.846148 ]\n", + " [-12.91056 0.846148 ]\n", + " [-18.28655999 0.846148 ]\n", + " [-23.66256 0.846148 ]\n", + " [-29.03856 0.846148 ]\n", + " [-30.93606 29.623648 ]\n", + " [-30.93606 24.247648 ]\n", + " [-30.93606 18.871648 ]\n", + " [-30.93606 13.495648 ]\n", + " [-30.93606 8.119648 ]\n", + " [-30.93606 2.743648 ]\n", + " [ -0.26106 31.52114DEBUG:root:optics_fp: cphi: [0.00531582 0.00617606 0.00736845 0.00913141 0.01200322 0.01750968\n", + " 0.03234551 0.20821284 0.00531582 0.14311708 0.27310311 0.3897246\n", + " 0.4902447 0.57443147 0.64366516 0.70005401 0.20821284 0.985415\n", + " 0.9961538 0.99826353 0.99901596 0.99936749 0.99955952 0.99967574\n", + " 0.70005401 0.75147061 0.80542393 0.85983504 0.91133409 0.95525529\n", + " 0.98625153 0.99967574 0.00616661 0.00753628 0.00968808 0.01355957\n", + " 0.02258341 0.06743141 0.06593447 0.23049481 0.37750356 0.50072179\n", + " 0.5996194 0.67707715 0.93313131 0.9942732 0.99805551 0.99903282\n", + " 0.99942317 0.99961734 0.72190396 0.78684101 0.853656 0.91669352\n", + " 0.96742456 0.9961969 0.00579488 0.00579488 0.99966293 0.99966293\n", + " 0.07014401 0.24442291 0.39798307 0.52421253 0.62341756 0.6995908\n", + " 0.08562066 0.29440551 0.4684183 0.60117718 0.69788907 0.76731313\n", + " 0.10980719 0.36820194 0.56319871 0.69519142 0.78151879 0.83840459\n", + " 0.15281345 0.48480743 0.69026239 0.80432664 0.86864949 0.90694654\n", + " 0.24943532 0.67838632 0.84636544 0.9141376 0.94608152 0.96325609\n", + " 0.61041805 0.94029264 0.97858921 0.98919227 0.99351563 0.99568553]\n", + "8 ]\n", + " [ -0.26106 31.521148 ]\n", + " [-30.93606 0.846148 ]\n", + " [-30.93606 0.846148 ]\n", + " [ -2.15856 29.623648 ]\n", + " [ -7.53456 29.623648 ]\n", + " [-12.91056 29.623648 ]\n", + " [-18.28656 29.623648 ]\n", + " [-23.66256 29.623648 ]\n", + " [-29.03856 29.623648 ]\n", + " [ -2.15856 24.247648 ]\n", + " [ -7.53456 24.247648 ]\n", + " [-12.91056 24.247648 ]\n", + " [-18.28656 24.247648 ]\n", + " [-23.66256 24.247648 ]\n", + " [-29.03856 24.247648 ]\n", + " [ -2.15856 18.871648 ]\n", + " [ -7.53456 18.871648 ]\n", + " [-12.91056 18.871648 ]\n", + " [-18.28656 18.871648 ]\n", + " [-23.66256 18.871648 ]\n", + " [-29.03856 18.871648 ]\n", + " [ -2.15856 13.495648 ]\n", + " [ -7.53456 13.495648 ]\n", + " [-12.91056 13.495648 ]\n", + " [-18.28656 13.495648 ]\n", + " [-23.66256 13.495648 ]\n", + " [-29.03856 13.495648 ]\n", + " [ -2.15856 8.119648 ]\n", + " [ -7.53456 8.119648 ]\n", + " [-12.91056 8.119648 ]\n", + " [-18.28656 8.119648 ]\n", + " [-23.66256 8.119648 ]\n", + " [-29.03856 8.119648 ]\n", + " [ -2.15856 2.743648 ]\n", + " [ -7.53456 2.743648 ]\n", + " [-12.91056 2.743648 ]\n", + " [-18.28656 2.743648 ]\n", + " [-23.66256 2.743648 ]\n", + " [-29.03856 2.743648 ]]\n", + "DEBUG:root:make_az_asym: xyp: shape: (96, 2)\n", + "DEBUG:root:radec2pix: curVec: [[-0.25092106 -0.19397079 -0.94837437]\n", + " [-0.23406337 -0.17448729 -0.95643532]\n", + " [-0.21679571 -0.15436025 -0.96393596]\n", + " [-0.19917093 -0.13368166 -0.97080387]\n", + " [-0.18124541 -0.11254044 -0.97697735]\n", + " [-0.16307941 -0.09102385 -0.98240509]\n", + " [-0.14473694 -0.06921853 -0.9870461 ]\n", + " [-0.12628546 -0.04721098 -0.99086987]\n", + " [-0.25092106 -0.19397079 -0.94837437]\n", + " [-0.27240853 -0.17798278 -0.94557693]\n", + " [-0.29407131 -0.16139274 -0.94205862]\n", + " [-0.3158115 -0.14427952 -0.9377881 ]\n", + " [-0.33753441 -0.12671866 -0.93274482]\n", + " [-0.35914793 -0.10878379 -0.92691901]\n", + " [-0.38056226 -0.09054777 -0.92031161]\n", + " [-0.40169013 -0.07208327 -0.9129343 ]\n", + " [-0.12628546 -0.04721098 -0.99086987]\n", + " [-0.14748255 -0.02920053 -0.98863352]\n", + " [-0.16899508 -0.0107943 -0.98555778]\n", + " [-0.19073026 0.007935 -0.98161041]\n", + " [-0.2125967 0.02691437 -0.9767693 ]\n", + " [-0.23450341 0.04606956 -0.97102304]\n", + " [-0.25635971 0.06532489 -0.96437148]\n", + " [-0.27807579 0.08460366 -0.95682604]\n", + " [-0.40169013 -0.07208327 -0.9129343 ]\n", + " [-0.38563823 -0.05067501 -0.9212574 ]\n", + " [-0.36896059 -0.02879738 -0.92899881]\n", + " [-0.35170644 -0.00653569 -0.93608753]\n", + " [-0.33392939 0.01602399 -0.94246188]\n", + " [-0.31568828 0.0387938 -0.94806959]\n", + " [-0.29704731 0.06168403 -0.95286829]\n", + " [-0.27807579 0.08460366 -0.95682604]\n", + " [-0.24369786 -0.18550696 -0.9519446 ]\n", + " [-0.22275504 -0.16118177 -0.96145755]\n", + " [-0.20124839 -0.13598188 -0.97005568]\n", + " [-0.17928023 -0.1100722 -0.97762094]\n", + " [-0.15696147 -0.0836135 -0.98405888]\n", + " [-0.13441141 -0.05676517 -0.98929838]\n", + " [-0.26020491 -0.1870132 -0.94726948]\n", + " [-0.28667079 -0.16700166 -0.94336117]\n", + " [-0.3133024 -0.14616477 -0.93833761]\n", + " [-0.33992416 -0.12464289 -0.93215649]\n", + " [-0.36636643 -0.10257172 -0.9247998 ]\n", + " [-0.39246494DEBUG:root:optics_fp: rtanth: [31.42709713 27.04074579 22.65442436 18.26815439 13.88198464 9.49605401\n", + " 5.11097808 0.742067 31.42709713 31.75564253 32.6750783 34.13769417\n", + " 36.07748738 38.42225317 41.10274314 44.05772304 0.742067 4.61617395\n", + " 8.97490789 13.35179361 17.73339574 22.11691136 26.50139096 30.88642402\n", + " 44.05772304 41.04415255 38.29678143 35.87681689 33.85454213 32.30472979\n", + " 31.29764563 30.88642402 29.51471971 24.13885305 18.76306281 13.38744101\n", + " 8.01232674 2.64082086 31.48077532 32.28565953 33.93362876 36.31007107\n", + " 39.28300031 42.72809051 2.2117621 7.49776555 12.85860945 18.22838275\n", + " 23.6009913 28.97485798 42.70371969 39.18128664 36.11843741 33.64093596\n", + " 31.88551984 30.97519863 31.41218354 31.41218354 30.87178238 30.87178238\n", + " 29.58771061 30.4426874 32.18516063 34.68161856 37.78289981 41.35315131\n", + " 24.22804504 25.26505023 27.33953387 30.23872042 33.75074911 37.7047566\n", + " 18.87767108 20.19136108 22.73364051 26.14858527 30.14102461 34.5111137\n", + " 13.54760187 15.3252116DEBUG:root:radec2pix: lng: [224.17091663 219.87741809 214.97008665 209.39598188 203.1373574\n", + " 196.23634076 188.81644128 181.08669631 224.17091663 228.3555716\n", + " 233.16265584 238.65783928 244.87601329 251.7942959 259.30486084\n", + " 267.20296141 181.08669631 181.26291687 181.50503492 181.85849799\n", + " 182.42298774 183.46757199 186.05387592 202.53707914 267.20296141\n", + " 266.75372148 266.13046308 265.20807536 263.70434622 260.82362196\n", + " 253.17669924 202.53707914 222.38348083 216.71601144 210.07066421\n", + " 202.39896016 193.78096287 184.48069147 225.9100405 231.44842444\n", + " 237.98973756 245.61222365 254.27065244 263.72553361 181.18560606\n", + " 181.44802269 181.85460599 182.56904059 184.15297918 190.61463228\n", + " 266.99438373 266.33112836 265.28794249 263.40934603 259.04191913\n", + " 238.94596845 224.17054014 224.17054014 202.81670057 202.81670057\n", + " 224.11986404 229.69237658 236.35966367 244.23925438 253.312778\n", + " 263.32641007 218.39761245 223.93365474 230.85002743 239.44337044\n", + " 249.86289594 261.85943825 211.60273873 216.79700073 223.64273186\n", + " 232.75457852 244.72618682 259.56986466 203.65258863 208.03632189\n", + " 214.17758593 223.12426077 236.4587659 255.51668541 194.60966243\n", + " 197.58758667 202.01156736 209.14892478 221.94021993 246.56988658\n", + " 184.76194605 185.78921163 187.37371211 190.13104958 196.0740482\n", + " 216.53792504]\n", + "9 18.5469529 22.60352987 27.12291311 31.90905859\n", + " 8.27715649 10.94695923 15.13153214 19.89706928 24.91237079 30.05265085\n", + " 3.35974322 7.91280426 13.10495402 18.40298673 23.73610696 29.08501983]\n", + " -0.08008526 -0.91627377]\n", + " [-0.13554608 -0.03948753 -0.98998384]\n", + " [-0.16174985 -0.01713932 -0.98668294]\n", + " [-0.18833486 0.00573123 -0.98208815]\n", + " [-0.21513239 0.02898991 -0.97615452]\n", + " [-0.2419749 0.05250003 -0.96886113]\n", + " [-0.26869577 0.07612181 -0.9602125 ]\n", + " [-0.39469945 -0.06287609 -0.91665639]\n", + " [-0.37459872 -0.03631236 -0.92647569]\n", + " [-0.35360674 -0.00912825 -0.93534964]\n", + " [-0.33182033 0.01851817 -0.94316083]\n", + " [-0.30934781 0.04646517 -0.9498131 ]\n", + " [-0.28630954 0.07454701 -0.95523274]\n", + " [-0.25093724 -0.19385181 -0.94839442]\n", + " [-0.25093724 -0.19385181 -0.94839442]\n", + " [-0.27806722 0.08445946 -0.95684127]\n", + " [-0.27806722 0.08445946 -0.95684127]\n", + " [-0.25297818 -0.17859611 -0.95084461]\n", + " [-0.27948707 -0.15839519 -0.94699416]\n", + " [-0.30617281 -0.13739012 -0.94200964]\n", + " [-0.3328602 -0.1157198 -0.93584882]\n", + " [-0.35937953 -0.09351905 -0.92849369]\n", + " [-0.38556611 -0.07092163 -0.91995049]\n", + " [-0.23205581 -0.15407949 -0.96042158]\n", + " [-0.25864428 -0.13337744 -0.95672023]\n", + " [-0.28544316 -0.1119285 -0.95183728]\n", + " [-0.31227829 -0.08986808 -0.9457304 ]\n", + " [-0.33897979 -0.06732937 -0.9383813 ]\n", + " [-0.36538175 -0.04444615 -0.92979606]\n", + " [-0.21054675 -0.12870631 -0.96907417]\n", + " [-0.23715185 -0.1075517 -0.96550072]\n", + " [-0.26400357 -0.08570403 -0.96070648]\n", + " [-0.29092887 -0.06329657 -0.95464859]\n", + " [-0.31775783 -0.0404621 -0.94730818]\n", + " [-0.34432358 -0.01733528 -0.93869098]\n", + " [-0.18855337 -0.10264003 -0.97668452]\n", + " [-0.21511194 -0.08107792 -0.97321797]\n", + " [-0.24195553 -0.05887446 -0.96849952]\n", + " [-0.26891227 -0.03616207 -0.96248558]\n", + " [-0.29581256 -0.01307412 -0.95515653]\n", + " [-0.32248894 0.01025329 -0.9465177 ]\n", + " [-0.16618682 -0.07604062 -0.98315806]\n", + " [-0.19263617 -0.05411462 -0.97977697]\n", + " [-0.21941059 -0.03159795 -0.97512079]\n", + " [-0.24633954 -0.00862332 -0.96914523]\n", + " [-0.27325405 0.01467468 -0.96182996]\n", + " [-0.29998665 0.03815831 -0.95317991]\n", + " [-0.14356685 -0.04906734 -0.98842347]\n", + " [-0.16984535 -0.02682135 -0.98510567]\n", + " [-0.19649026 -0.00403517 -0.98049747]\n", + " [-0.22333238 0.01915748 -0.97455407]\n", + " [-0.25020375 0.04262046 -0.96725466]\n", + " [-0.27693743 0.06621447 -0.95860383]]\n", + "DEBUG:root:optics_fp: sphi: [-0.99998587 -0.99998093 -0.99997285 -0.99995831 -0.99992796 -0.99984669\n", + " -0.99947675 -0.97808354 -0.99998587 -0.98970577 -0.96198477 -0.92093145\n", + " -0.87158484 -0.81855268 -0.76530723 -0.7140899 -0.97808354 -0.17016839\n", + " -0.08762197 -0.05890603 -0.04435211 -0.03556139 -0.02967765 -0.02546394\n", + " -0.7140899 -0.65976656 -0.59269916 -0.51057194 -0.41166757 -0.29578258\n", + " -0.16525108 -0.02546394 -0.99998099 -0.9999716 -0.99995307 -0.99990806\n", + " -0.99974496 -0.99772391 -0.99782396 -0.97307356 -0.92600813 -0.86560828\n", + " -0.80028531 -0.73591205 -0.35953576 -0.10686813 -0.06233133 -0.04397062\n", + " -0.03396069 -0.02766174 -0.69199326 -0.61715575 -0.52083725 -0.39959102\n", + " -0.25315949 -0.08713059 -0.99998321 -0.99998321 -0.02596193 -0.02596193\n", + " -0.99753688 -0.96966873 -0.91739276 -0.85158747 -0.78188909 -0.71454371\n", + " -0.99632781 -0.95568059 -0.88350682 -0.79911576 -0.71620587 -0.64127261\n", + " -0.99395291 -0.92974584 -0.8263215 -0.71882466 -0.6238817 -0.54504838\n", + " -0.98825505 -0.87462092 -0.72355914 -0.59418739 -0.49542716 -0.42124573\n", + " -0.96839146 -0.73470538 -0.53260261 -0.40540407 -0.32392864 -0.26858462\n", + " -0.79207942 -0.34036707 -0.20582312 -0.14662418 -0.11369565 -0.09279187]\n", + "DEBUG:root:radec2pix: lat: [73.30319327 74.28364829 75.19434757 76.00760673 76.6934474 77.22149469\n", + " 77.56431546 77.70181842 73.30319327 74.31487163 75.26252869 76.11836609\n", + " 76.85166299 77.43039612 77.8244634 78.01035447 77.70181842 79.30062777\n", + " 80.93200296 82.59063863 84.2712796 85.96832552 87.67438557 89.35703566\n", + " 78.01035447 79.61411514 81.24861046 82.90802789 84.58587071 86.27294722\n", + " 87.94616945 89.35703566 73.74128804 74.89975016 75.92621516 76.76637844\n", + " 77.36466213 77.67335289 73.7541097 74.95468773 76.03182731 76.93013306\n", + " 77.59097642 77.96138218 78.39443735 80.37649363 82.40216048 84.46173597\n", + " 86.54472647 88.63280521 78.70517127 80.69206097 82.71932817 84.7752745\n", + " 86.84188191 88.83673743 73.31017726 73.31017726 89.34933673 89.34933673\n", + " 74.20408349 75.46003419 76.59358943 77.54526674 78.24998117 78.64701061\n", + " 75.41740928 76.83842002 78.14733268 79.2729755 80.12769991 80.61933545\n", + " 76.49875662 78.09183026 79.59737911 80.93621381 81.99355302 82.62428133\n", + " 77.38945666 79.14833894 80.86043698 82.45133489 83.78724838 84.64121324\n", + " 78.02753384 79.92284226 81.82091734 83.6737055 85.37260957 86.62213831\n", + " 78.35820379 80.33138971 82.34363217 84.38015735 86.41373806 88.32724747]\n", + "DEBUG:root:radec2pix: xyfp: [[ -0.24606 31.536148 ]\n", + " [ -0.24DEBUG:root:optics_fp: cphi: [0.00550458 0.00639749 0.00763617 0.00946965 0.01246169 0.01821736\n", + " 0.03384734 0.23312315 0.00550458 0.14357831 0.27378206 0.39054421\n", + " 0.49112919 0.57532118 0.64452059 0.70085313 0.23312315 0.98770575\n", + " 0.99676233 0.99853841 0.99917171 0.99946758 0.99962921 0.99972703\n", + " 0.70085313 0.75231162 0.80628167 0.86066702 0.91207829 0.95583505\n", + " 0.98659156 0.99972703 0.00636947 0.00778798 0.01001931 0.01404249\n", + " 0.02346297 0.07118734 0.06624656 0.23110858 0.37831182 0.50160995\n", + " 0.60050131 0.67790282 0.94291018 0.99516222 0.9983578 0.99918316\n", + " 0.9995128 0.99967679 0.72272376 0.78769728 0.85449414 0.91742373\n", + " 0.96793131 0.99637757 0.00598472 0.00598472 0.99971529 0.99971529\n", + " 0.07048511 0.24509968 0.39886372 0.52516272 0.62434311 0.70044222\n", + " 0.08607764 0.29532864 0.46955786 0.60232354 0.69893243 0.76821854\n", + " 0.11047406 0.36953888 0.56469148 0.69653837 0.7826374 0.83930914\n", + " 0.15393817 0.48687699 0.69216184 0.80578092 0.86972564 0.90775141\n", + " 0.25195766 0.68160416 0.84839347 0.91538572 0.94689876 0.96382489\n", + " 0.62072988 0.94296444 0.97959085 0.9897031 0.99382317 0.99589043]\n", + "DEBUG:root:radec2pix: curVec Shape: (96, 3)\n", + "606 27.14971943]\n", + " [ -0.24606 22.76329086]\n", + " [ -0.24606 18.37686229]\n", + " [ -0.24606 13.99043371]\n", + " [ -0.24606 9.60400514]\n", + " [ -0.24606 5.21757658]\n", + " [ -0.24606 0.831148 ]\n", + " [ -0.24606 31.536148 ]\n", + " [ -4.63248857 31.536148 ]\n", + " [ -9.01891714 31.536148 ]\n", + " [-13.40534571 31.536148 ]\n", + " [-17.79177429 31.536148 ]\n", + " [-22.17820286 31.536148 ]\n", + " [-26.56463143 31.536148 ]\n", + " [-30.95106 31.536148 ]\n", + " [ -0.24606 0.831148 ]\n", + " [ -4.63248857 0.831148 ]\n", + " [ -9.01891714 0.831148 ]\n", + " [-13.40534571 0.831148 ]\n", + " [-17.79177429 0.831148 ]\n", + " [-22.17820285 0.831148 ]\n", + " [-26.56463143 0.831148 ]\n", + " [-30.95106 0.831148 ]\n", + " [-30.95106 31.536148 ]\n", + " [-30.95106 27.14971943]\n", + " [-30.95106 22.76329086]\n", + " [-30.95106 18.37686228]\n", + " [-30.95106 13.99043371]\n", + " [-30.95106 9.60400514]\n", + " [-30.95106 5.21757657]\n", + " [-30.95106 0.831148 ]\n", + " [ -0.26106 29.623648 ]\n", + " [ -0.26106 24.247648 ]\n", + " [ -0.26106 18.87164801]\n", + " [ -0.26106 13.495648 ]\n", + " [ -0.26106 8.119648 ]\n", + " [ -0.26106 2.743648 ]\n", + " [ -2.15856 31.521148 ]\n", + " [ -7.53456 31.521148 ]\n", + " [-12.91056 31.521148 ]\n", + " [-18.28656 31.521148 ]\n", + " [-23.66256 31.521148 ]\n", + " [-29.03856 31.521148 ]\n", + " [ -2.15856 0.846148 ]\n", + " [ -7.53456 0.846148 ]\n", + " [-12.91056 0.846148 ]\n", + " [-18.28655999 0.846148 ]\n", + " [-23.66256 0.846148 ]\n", + " [-29.03856 0.846148 ]\n", + " [-30.93606 29.623648 ]\n", + " [-30.93606 24.247648 ]\n", + " [-30.93606 18.871648 ]\n", + " [-30.93606 13.495648 ]\n", + " [-30.93606 8.119648 ]\n", + " [-30.93606 2.743648 ]\n", + " [ -0.26106 31.521148 ]\n", + " [ -0.26106 31.521148 ]\n", + " [-30.93606 0.846148 ]\n", + " [-30.93606 0.846148 ]\n", + " [ -2.15856 29.623648 ]\n", + " [ -7.53456 29.623648 ]\n", + " [-12.91056 29.623648 ]\n", + " [-18.28656 29.623648 ]\n", + " [-23.66256 29.623648 ]\n", + " [-29.03856 29.623648 ]\n", + " [ -2.15856 24.247648 ]\n", + " [ -7.53456 24.247648 ]\n", + " [-12.91056 24.247648 ]\n", + " [-18.28656 24.247648 ]\n", + " [-23.66256 24.247648 ]\n", + " [-29.03856 24.247648 ]\n", + " [ -2.15856 18.871648 ]\n", + " [ -7.53456 18.871648 ]\n", + " [-12.91056 18.871648 ]\n", + " [-18.28656 18.871648 ]\n", + " [-23.66256 18.871648 ]\n", + " [-29.03856 18.871648 ]\n", + " [ -2.15856 13.495648 ]\n", + " [ -7.53456 13.495648 ]\n", + " [-12.91056 13.495648 ]\n", + " [-18.28656 13.495648 ]\n", + " [-23.66256 13.495648 ]\n", + " [-29.03856 13.495648 ]\n", + " [ -2.15856 8.119648 ]\n", + " [ -7.53456 8.119648 ]\n", + " [-12.91056 8.119648 ]\n", + " [-18.28656 8.119648 ]\n", + " [-23.66256 8.119648 ]\n", + " [-29.03856 8.119648 ]\n", + " [ -2.15856 2.743648 ]\n", + " [ -7.53456 2.743648 ]\n", + " [-12.91056 2.743648 ]\n", + " [-18.28656 2.743648 ]\n", + " [-23.66256 2.743648 ]\n", + " [-29.03856 2.743648 ]]\n", + "DEBUG:root:radec2pix: xyfp Shape: (96, 2)\n", + "DEBUG:root:optics_fp: sphi: [-0.99998485 -0.99997954 -0.99997084 -0.99995516 -0.99992235 -0.99983405\n", + " -0.99942701 -0.97244722 -0.99998485 -0.98963896 -0.96179176 -0.92058417\n", + " -0.87108674 -0.81792759 -0.76458695 -0.71330561 -0.97244722 -0.15632448\n", + " -0.08040428 -0.05404675 -0.04069277 -0.03262757 -0.02722955 -0.0233637\n", + " -0.71330561 -0.65880742 -0.59153179 -0.50916823 -0.41001608 -0.29390365\n", + " -0.16320875 -0.0233637 -0.99997971 -0.99996967 -0.99994981 -0.9999014\n", + " -0.99972471 -0.99746296 -0.99780328 -0.97292796 -0.92567822 -0.8650939\n", + " -0.79962377 -0.73515153 -0.33304712 -0.0982454 -0.05728621 -0.04041066\n", + " -0.03121144 -0.02542276 -0.69113701 -0.61606249 -0.51946104 -0.39791167\n", + " -0.251215 -0.08503968 -0.99998209 -0.99998209 -0.02386066 -0.02386066\n", + " -0.99751283 -0.96949788 -0.91701021 -0.85100183 -0.78115023 -0.71370911\n", + " -0.99628843 -0.95539573 -0.8829017 -0.79825206 -0.71518771 -0.64018769\n", + " -0.99387901 -0.92921527 -0.82530209 -0.71751954 -0.62247788 -0.54365446\n", + " -0.98808048 -0.87347054 -0.72174233 -0.59221374 -0.49353552 -0.41950849\n", + " -0.96773826 -0.7317211 -0.52936616 -0.40257793 -0.32153186 -0.26653625\n", + " -0.7840245 -0.33289349 -0.20100193 -0.14313552 -0.11097528 -0.09056624]\n", + "DEBUG:root:optics_fp: xyfp: [[ -0.167405 31.491388 ]\n", + " [ -0.167405 27.10495943]\n", + " [ -0.167405 22.71853086]\n", + " [ -0.167405 18.33210229]\n", + " [ -0.167405 13.94567372]\n", + " [ -0.167405 9.55924515]\n", + " [ -0.167405 5.17281657]\n", + " [ -0.167405 0.786388 ]\n", + " [ -0.167405 31.491388 ]\n", + " [ -4.55383357 31.491388 ]\n", + " [ -8.94026214 31.491388 ]\n", + " [-13.32669071 31.491388 ]\n", + " [-17.71311928 31.491388 ]\n", + " [-22.09954786 31.491388 ]\n", + " [-26.48597643 31.491388 ]\n", + " [-30.872405 31.491388 ]\n", + " [ -0.167405 0.786388 ]\n", + " [ -4.55383357 0.786388 ]\n", + " [ -8.94026214 0.786388 ]\n", + " [-13.32669071 0.786388 ]\n", + " [-17.71311929 0.786388 ]\n", + " [-22.09954786 0.786388 ]\n", + " [-26.48597643 0.786388 ]\n", + " [-30.872405 0.786388 ]\n", + " [-30.872405 31.491388 ]\n", + " [-30.872405 27.10495943]\n", + " [-30.872405 22.71853086]\n", + " [-30.872405 18.33210229]\n", + " [-30.872405 13.94567371]\n", + " [-30.872405 9.55924514]\n", + " [-30.872405 5.17281657]\n", + " [-30.872405 0.786388 ]\n", + " [ -0.182405 29.578888 ]\n", + " [ -0.182405 24.202888 ]\n", + " [ -0.182405 18.826888 ]\n", + " [ -0.182405 13.450888 ]\n", + " [ -0.182405 8.074888 ]\n", + " [ -0.182405 2.698888 ]\n", + " [ -2.079905 31.476388 ]\n", + " [ -7.455905 31.476388 ]\n", + " [-12.831905 31.476388 ]\n", + " [-18.207905 31.476388 ]\n", + " [-23.583905 31.476388 ]\n", + " [-28.959905 31.476388 ]\n", + " [ -2.079905 0.801388 ]\n", + " [ -7.455905 0.801388 ]\n", + " [-12.831905 0.801388 ]\n", + " [-18.207905 0.801388 ]\n", + " [-23.583905 0.801388 ]\n", + " [-28.959905 0.801388 ]\n", + " [-30.857405 29.578888 ]\n", + " [-30.857405 24.202888 ]\n", + " [-30.857405 18.826888 ]\n", + " [-30.857405 13.450888 ]\n", + " [-30.857405 8.074888 ]\n", + " [-30.857405 2.698888 ]\n", + " [ -0.182405 31.476388 ]\n", + " [ -0.182405 31.476388 ]\n", + " [-30.857405 0.801388 ]\n", + " [-30.857405 0.801388 ]\n", + " [ -2.079905 29.578888 ]\n", + " [ -7.455905 29.578888 ]\n", + " [-12.831905 29.578888 ]\n", + " [-18.207905 29.578888 ]\n", + " [-23.583905 29.578888 ]\n", + " [-28.959905 29.578888 ]\n", + " [ -2.079905 24.202888 ]\n", + " [ -7.455905 24.202888 ]\n", + " [-12.831905 24.202888 ]\n", + " [-18.207905 24.202888 ]\n", + " [-23.583905 24.202888 ]\n", + " [-28.959905 24.202888 ]\n", + " [ -2.079905 18.826888 ]\n", + " [ -7.455905 18.826888 ]\n", + " [-12.831905 18.826888 ]\n", + " [-18.207905 18.826888 ]\n", + " [-23.583905 18.826888 ]\n", + " [-28.959905 18.826888 ]\n", + " [ -2.079905 13.450888 ]\n", + " [ -7.455905 13.450888 ]\n", + " [-12.831905 13.450888 ]\n", + " [-18.207905 13.450888 ]\n", + " [-23.583905 13.450888 ]\n", + " [-28.959905 13.450888 ]\n", + " [ -2.079905 8.074888 ]\n", + " [ -7.455905 8.074888 ]\n", + " [-12.831905 8.074888 ]\n", + " [-18.20790499 8.074888 ]\n", + " [-23.583905 8.074888 ]\n", + " [-28.959905 8.074888 ]\n", + " [ -2.079905 2.698888 ]\n", + " [ -7.455905 2.698888 ]\n", + " [-12.831905 2.698888 ]\n", + " [-18.207905 2.698888 ]\n", + " [-23.583905 2.698888 ]\n", + " [-28.959905 2.698888 ]]\n", + "DEBUG:root:optics_fp: xyfp shape: (96, 2)\n", + "DEBUG:root:mm_to_pix: fitpx: [[0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]]\n", + "DEBUG:root:optics_fp: rtanth: [44.94272969 42.00239064 39.33235561 36.99120283 35.04490673 33.56223174\n", + " 32.60648436 32.22458311 44.94272969 41.90992612 39.13459306 36.67522804\n", + " 34.59927513 32.97921831 31.88462562 31.37054947 32.22458311 27.83912196\n", + " 23.45402264 19.06953475 14.68620592 10.30551524 5.93330899 1.63895634\n", + " 31.37054947 26.99005818 22.61186898 18.23763988 13.87111779 9.5229103\n", + " 5.23882082 1.63895634 43.61980801 40.19015843 37.22381993 34.83933779\n", + " 33.16246218 32.30357703 43.58131788 40.02977818 36.92204987 34.37870189\n", + " 32.5323727 31.50584319 30.31278547 24.93826049 19.56454604 14.19256282\n", + " 8.82547273 3.48595044 29.4611953 24.09404931 18.73198196 13.38109994\n", + " 8.0637011 2.9657153 44.92151855 44.92151855 1.65858428 1.65858428\n", + " 42.23832489 38.56329813 35.32679703 32.65945447 30.7099348 29.62031359\n", + " 38.68639649 34.63652908 30.99264061 27.91417471 25.60588368 24.28835443\n", + " 35.59496044 31.14567519 27.03530484 23.44280455 20.64037826 18.98125646\n", + " 33.09332103 28.25278341 23.64475409 19.43532283 15.94339684 13.72788346\n", + " 31.32311186 26.15701072 21.09606209 16.23887967 11.83897557 8.62694755\n", + " 30.41232527 25.05915804 19.71841847 14.40393713 9.16152467 4.26572571]\n", + "DEBUG:root:mm_to_pix: fitpx.shape: (96, 2)\n", + "DEBUG:root:radec2pix: camVec: [[-0.20629584 -0.20812128 -0.20967356 -0.21095376 -0.21196139 -0.21269501\n", + " -0.2131529 -0.21333373 -0.20629584 -0.1798852 -0.15276427 -0.12504507\n", + " -0.09683814 -0.06825398 -0.03940385 -0.01040007 -0.21333373 -0.18599064\n", + " -0.15793623 -0.12927467 -0.10011211 -0.07055816 -0.04072622 -0.01073294\n", + " -0.01040007 -0.01048759 -0.01056224 -0.01062379 -0.01067191 -0.0107063\n", + " -0.0107267 -0.01073294 -0.20703611 -0.20908844 -0.21073192 -0.21196628\n", + " -0.21278893 -0.21319686 -0.19488162 -0.16201965 -0.12820231 -0.09363367\n", + " -0.05851721 -0.02305821 -0.20150602 -0.16750285 -0.13253465 -0.0967959\n", + " -0.06048842 -0.02382238 -0.0105395 -0.01063912 -0.01071899 -0.01077856\n", + " -0.01081726 -0.01083465 -0.20621357 -0.20621357 -0.01083565 -0.01083565\n", + " -0.19565571 -0.16265759 -0.12870452 -0.09399937 -0.05874512 -0.0231472\n", + " -0.19758845 -0.16425347 -0.12996305 -0.09491705 -0.05931746 -0.02337052\n", + " -0.19913769 -0.16553623 -0.13097704 -0.09565767 -0.05977969 -0.02355053\n", + " -0.20030226 -0.16650264 -0.13174231 -0.09621721 -0.0601289 -0.023686\n", + " -0.20107886 -0.16714801 -0.13225382 -0.09659125 -0.06036201 -0.02377567\n", + " -0.201464 -0.16746808 -0.13250731 -0.0967762 -0.06047657 -0.02381854]\n", + " [-0.20078674 -0.17428103 -0.14708674 -0.11931584 -0.09107902 -0.06248699\n", + " -0.03365118 -0.00468399 -0.20078674 -0.20262142 -0.20419049 -0.20549514\n", + " -0.20653488 -0.20730818 -0.20781318 -0.2080483 -0.00468399 -0.00472909\n", + " -0.00476846 -0.004802 -0.00482954 -0.00485094 -0.00486604 -0.00487474\n", + " -0.2080483 -0.18056016 -0.15238099 -0.12361519 -0.09436952 -0.06475431\n", + " -0.03488367 -0.00487474 -0.1893284 -0.1563645 -0.12247778 -0.08787247\n", + " -0.05275245 -0.01732329 -0.20152974 -0.20359843 -0.20526972 -0.2065434\n", + " -0.20741673 -0.20788637 -0.0048039 -0.00485635 -0.0048999 -0.00493429\n", + " -0.00495921 -0.00497442 -0.19615466 -0.1619874 -0.12688576 -0.09104519\n", + " -0.05466885 -0.01796812 -0.20070413 -0.20070413 -0.00497744 -0.00497744\n", + " -0.19010422 -0.19204948 -0.19362274 -0.19482286 -0.19564642 -0.1960896\n", + " -0.15700026 -0.15859759 -0.1598933 -0.16088429 -0.1615658 -0.16193328\n", + " -0.12297381 -0.12422245 -0.12523802 -0.12601654 -0.12655298 -0.12684288\n", + " -0.088228 -0.0891244 -0.0898551 -0.09041635 -0.09080384 -0.09101389\n", + " -0.05296627 -0.0535061 -0.05394701 -0.05428637 -0.05452132 -0.05464944\n", + " -0.01739439 -0.0175743 -0.01772184 -0.01783608 -0.01791601 -0.0179608 ]\n", + " [ 0.95766733 0.96245086 0.96664496 0.9701867 0.97302465 0.97511856\n", + " 0.97643916 0.97696816 0.95766733 0.96259331 0.96693812 0.97063664\n", + " 0.97363531 0.97589175 0.97737455 0.97806326 0.97696816 0.98254014\n", + " 0.9874378 0.9915972 0.99496444 0.99749587 0.99915849 0.99993052\n", + " 0.97806326 0.98350803 0.98826539 0.99227336 0.99548004 0.9978438\n", + " 0.99933381 0.99993052 0.95983895 0.96531454 0.96984084 0.97331841\n", + " 0.97567313 0.97685567 0.95989943 0.96555544 0.97027239 0.9739469\n", + " 0.97650091 0.97788117 0.9794755 0.98585963 0.99116626 0.99529202\n", + " 0.99815658 0.99970383 0.98051633 0.98673547 0.99185942 0.99578843\n", + " 0.99844594 0.99977985 0.95770236 0.95770236 0.9999289 0.9999289\n", + " 0.96207028 0.96781171 0.97259724 0.9763238 0.97891342 0.98031274\n", + " 0.96763099 0.97358492 0.97854164 0.98239859 0.98507763 0.98652493\n", + " 0.97222509 0.97834888 0.98344316 0.98740541 0.99015692 0.99164321\n", + " 0.97575346 0.98200495 0.98720313 0.99124524 0.9940519 0.9955679\n", + " 0.97814205 0.98447887 0.98974676 0.9938426 0.99668644 0.9982225\n", + " 0.97934146 0.98572085 0.99102359 0.99514634 0.99800882 0.99955494]]\n", + "DEBUG:root:radec2pix: camVec Shape: (3, 96)\n", + "DEBUG:root:optics_fp: xyfp: [[ -0.172993 31.426621 ]\n", + " [ -0.172993 27.04019243]\n", + " [ -0.172993 22.65376385]\n", + " [ -0.172993 18.26733528]\n", + " [ -0.172993 13.88090671]\n", + " [ -0.172993 9.49447814]\n", + " [ -0.172993 5.10804957]\n", + " [ -0.172993 0.721621 ]\n", + " [ -0.172993 31.426621 ]\n", + " [ -4.55942157 31.426621 ]\n", + " [ -8.94585014 31.426621 ]\n", + " [-13.33227871 31.426621 ]\n", + " [-17.71870729 31.426621 ]\n", + " [-22.10513586 31.426621 ]\n", + " [-26.49156443 31.426621 ]\n", + " [-30.877993 31.426621 ]\n", + " [ -0.172993 0.721621 ]\n", + " [ -4.55942157 0.721621 ]\n", + " [ -8.94585014 0.721621 ]\n", + " [-13.33227872 0.721621 ]\n", + " [-17.71870728 0.721621 ]\n", + " [-22.10513586 0.721621 ]\n", + " [-26.49156443 0.721621 ]\n", + " [-30.877993 0.721621 ]\n", + " [-30.877993 31.426621 ]\n", + " [-30.877993 27.04019243]\n", + " [-30.877993 22.65376385]\n", + " [-30.877993 18.26733529]\n", + " [-30.877993 13.88090671]\n", + " [-30.877993 9.49447814]\n", + " [-30.877993 5.10804957]\n", + " [-30.877993 0.721621 ]\n", + " [ -0.187993 29.514121 ]\n", + " [ -0.187993 24.138121 ]\n", + " [ -0.187993 18.76212101]\n", + " [ -0.187993 13.386121 ]\n", + " [ -0.187993 8.010121 ]\n", + " [ -0.187993 2.634121 ]\n", + " [ -2.085493 31.411621 ]\n", + " [ -7.461493 31.411621 ]\n", + " [-12.837493 31.411621 ]\n", + " [-18.213493 31.411621 ]\n", + " [-23.589493 31.411621 ]\n", + " [-28.965493 31.411621 ]\n", + " [ -2.085493 0.736621 ]\n", + " [ -7.461493 0.736621 ]\n", + " [-12.837493 0.736621 ]\n", + " [-18.213493 0.736621 ]\n", + " [-23.58949299 0.736621 ]\n", + " [-28.965493 0.736621 ]\n", + " [-30.862993 29.514121 ]\n", + " [-30.862993 24.138121 ]\n", + " [-30.862993 18.762121 ]\n", + " [-30.862993 13.386121 ]\n", + " [-30.862993 8.010121 ]\n", + " [-30.862993 2.634121 ]\n", + " [ -0.187993 31.411621 ]\n", + " [ -0.187993 31.411621 ]\n", + " [-30.862993 0.736621 ]\n", + " [-30.862993 0.736621 ]\n", + " [ -2.085493 29.514121 ]\n", + " [ -7.461493 29.514121 ]\n", + " [-12.837493 29.514121 ]\n", + " [-18.213493 29.514121 ]\n", + " [-23.589493 29.514121 ]\n", + " [-28.965493 29.514121 ]\n", + " [ -2.085493 24.138121 ]\n", + " [ -7.461493 24.138121 ]\n", + " [-12.837493 24.138121 ]\n", + " [-18.213493 24.138121 ]\n", + " [-23.589493 24.138121 ]\n", + " [-28.965493 24.138121 ]\n", + " [ -2.085493 18.762121 ]\n", + " [ -7.461493 18.762121 ]\n", + " [-12.837493 18.762121 ]\n", + " [-18.213493 18.762121 ]\n", + " [-23.589493 18.762121 ]\n", + " [-28.965493 18.762121 ]\n", + " [ -2.085493 13.386121 ]\n", + " [ -7.461493 13.386121 ]\n", + " [-12.837493 13.386121 ]\n", + " [-18.213493 13.386121 ]\n", + " [-23.589493 13.386121 ]\n", + " [-28.965493 13.386121 ]\n", + " [ -2.085493 8.010121 ]\n", + " [ -7.461493 8.010121 ]\n", + " [-12.837493 8.010121 ]\n", + " [-18.213493 8.010121 ]\n", + " [-23.589493 8.010121 ]\n", + " [-28.965493 8.010121 ]\n", + " [ -2.085493 2.634121 ]\n", + " [ -7.461493 2.634121 ]\n", + " [-12.837493 2.634121 ]\n", + " [-18.213493 2.634121 ]\n", + " [-23.589493 2.634121 ]\n", + " [-28.965493 2.634121 ]]\n", + "DEBUG:root:optics_fp: cphi: [-0.7172644 -0.76741791 -0.81945139 -0.87124824 -0.91956549 -0.96011654\n", + " -0.98818444 -0.99982014 -0.7172644 -0.66450587 -0.59954537 -0.52014772\n", + " -0.4245785 -0.31242949 -0.18558325 -0.04879815 -0.99982014 -0.99975708\n", + " -0.99965502 -0.99947397 -0.99910595 -0.99816919 -0.99442317 -0.92363168\n", + " -0.04879815 -0.05662794 -0.06748483 -0.0835374 -0.10965891 -0.1594742\n", + " -0.28942109 -0.92363168 -0.73864972 -0.80160861 -0.865408DEBUG:root:optics_fp: xyfp shape: (96, 2)\n", + "08 -0.92455295\n", + " -0.97121348 -0.99694372 -0.69578694 -0.62321886 -0.53007115 -0.41291013\n", + " -0.27109351 -0.10929135 -0.99978591 -0.99968066 -0.99947617 -0.99899494\n", + " -0.99737425 -0.98288834 -0.05243384 -0.06399014 -0.08214824 -0.11477511\n", + " -0.19009076 -0.51584618 -0.71726898 -0.71726898 -0.92175016 -0.92175016\n", + " -0.71788499 -0.64689125 -0.55397779 -0.43461417 -0.2871469 -0.11621293\n", + " -0.78371934 -0.72014369 -0.63135242 -0.50838973 -0.34426777 -0.14160207\n", + " -0.85170189 -0.80076273 -0.72365733 -0.60523038 -0.42694461 -0.18103644\n", + " -0.91599489 -0.8826498 -0.8273004 -0.72987289 -0.55253697 -0.25009805\n", + " -0.96766665 -0.95325615 -0.92710821 -0.87335662 -0.74384256 -0.39763019\n", + " -0.99654822 -0.99489972 -0.99173015 -0.984408 -0.96090466 -0.80346296]\n", + "DEBUG:root:radec2pix: xyfp: [[ -0.24606 31.536148 ]\n", + " [ -0.24606 27.14971943]\n", + " [ -0.24606 22.76329086]\n", + " [ -0.24606 18.37686229]\n", + " [ -0.24606 13.99043371]\n", + " [ -0.24606 9.60400514]\n", + " [ -0.24606 5.21757658]\n", + " [ -0.24606 0.831148 ]\n", + " [ -0.24606 31.536148 ]\n", + " [ -4.63248857 31.536148 ]\n", + " [ -9.01891714 31.536148 ]\n", + " [-13.40534571 31.536148 ]\n", + " [-17.79177429 31.536148 ]\n", + " [-22.17820286 31.536148 ]\n", + " [-26.56463143 31.536148 ]\n", + " [-30.95106 31.536148 ]\n", + " [ -0.24606 0.831148 ]\n", + " [ -4.63248857 0.831148 ]\n", + " [ -9.01891714 0.831148 ]\n", + " [-13.40534571 0.831148 ]\n", + " [-17.79177429 0.831148 ]\n", + " [-22.17820285 0.831148 ]\n", + " [-26.56463143 0.831148 ]\n", + " [-30.95106 0.831148 ]\n", + " [-30.95106 31.536148 ]\n", + " [-30.95106 27.14971943]\n", + " [-30.95106 22.76329086]\n", + " [-30.95106 18.37686228]\n", + " [-30.95106 13.99043371]\n", + " [-30.95106 9.60400514]\n", + " [-30.95106 5.21757657]\n", + " [-30.95106 0.831148 ]\n", + " [ -0.26106 29.623648 ]\n", + " [ -0.26106 24.247648 ]\n", + " [ -0.26106 18.87164801]\n", + " [ -0.26106 13.495648 ]\n", + " [ -0.26106 8.119648 ]\n", + " [ -0.26106 2.743648 ]\n", + " [ -2.15856 31.521148 ]\n", + " [ -7.53456 31.521148 ]\n", + " [-12.91056 31.521148 ]\n", + " [-18.28656 31.521148 ]\n", + " [-23.66256 31.521148 ]\n", + " [-29.03856 31.521148 ]\n", + " [ -2.15856 0.846148 ]\n", + " [ -7.53456 0.846148 ]\n", + " [-12.91056 0.846148 ]\n", + " [-18.28655999 0.846148 ]\n", + " [-23.66256 0.846148 ]\n", + " [-29.03856 0.846148 ]\n", + " [-30.93606 29.623648 ]\n", + " [-30.93606 24.247648 ]\n", + " [-30.93606 18.871648 ]\n", + " [-30.93606 13.495648 ]\n", + " [-30.93606 8.119648 ]\n", + " [-30.93606 2.743648 ]\n", + " [ -0.26106 31.521148 ]\n", + " [ -0.26106 31.521148 ]\n", + " [-30.93606 0.846148 ]\n", + " [-30.93606 0.846148 ]\n", + " [ -2.15856 29.623648 ]\n", + " [ -7.53456 29.623648 ]\n", + " [-12.91056 29.623648 ]\n", + " [-18.28656 29.623648 ]\n", + " [-23.66256 29.623648 ]\n", + " [-29.03856 29.623648 ]\n", + " [ -2.15856 24.247648 ]\n", + " [ -7.53456 24.247648 ]\n", + " [-12.91056 24.247648 ]\n", + " [-18.28656 24.247648 ]\n", + " [-23.66256 24.247648 ]\n", + " [-29.03856 24.247648 ]\n", + " [ -2.15856 18.871648 ]\n", + " [ -7.53456 18.871648 ]\n", + " [-12.91056 18.871648 ]\n", + " [-18.286DEBUG:root:optics_fp: sphi: [-0.69680111 -0.64114722 -0.57314869 -0.49084265 -0.39293677 -0.27960013\n", + " -0.15326941 -0.01896529 -0.69680111 -0.74728304 -0.80034077 -0.85407631\n", + " -0.90539113 -0.94994095 -0.98262854 -0.99880866 -0.01896529 -0.02204027\n", + " -0.02626479 -0.03243122 -0.04227651 -0.06048361 -0.10546358 -0.38328124\n", + " -0.99880866 -0.99839535 -0.9977203 -0.99650464 -0.99396928 -0.9872021\n", + " -0.95720188 -0.38328124 -0.67408945 -0.59784918 -0.50106771 -0.3810536\n", + " -0.23821077 -0.07812313 -0.71824824 -0.78204748 -0.84795317 -0.91077177\n", + " -0.96255302 -0.99400976 -0.02069125 -0.02527007 -0.03236333 -0.04482319\n", + " -0.07241971 -0.18420237 -0.9986244 -0.99795053 -0.99662012 -0.9933915\n", + " -0.98176652 -0.85668122 -0.6967964 -0.6967964 -0.38778427 -0.38778427\n", + " -0.69616172 -0.76258227 -0.83253145 -0.90061674 -0.95788656 -0.99322432\n", + " -0.62111512 -0.69382495 -0.77549605 -0.8611271 -0.93887151 -0.98992366\n", + " -0.52402662 -0.59898168 -0.69015945 -0.79605037 -0.90427778 -0.98347639\n", + " -0.40118994 -0.4700312 -DEBUG:root:make_az_asym: xyp: [[ -0.172993 31.426621 ]\n", + " [ -0.172993 27.04019243]\n", + " [ -0.172993 22.65376385]\n", + " [ -0.172993 18.26733528]\n", + " [ -0.172993 13.88090671]\n", + " [ -0.172993 9.49447814]\n", + " [ -0.172993 5.10804957]\n", + " [ -0.172993 0.721621 ]\n", + " [ -0.172993 31.426621 ]\n", + " [ -4.55942157 31.426621 ]\n", + " [ -8.94585014 31.426621 ]\n", + " [-13.33227871 31.426621 ]\n", + " [-17.71870729 31.426621 ]\n", + " [-22.10513586 31.426621 ]\n", + " [-26.49156443 31.426621 ]\n", + " [-30.877993 31.426621 ]\n", + " [ -0.172993 0.721621 ]\n", + " [ -4.55942157 0.721621 ]\n", + " [ -8.94585014 0.721621 ]\n", + " [-13.33227872 0.721621 ]\n", + " [-17.71870728 0.721621 ]\n", + " [-22.10513586 0.721621 ]\n", + " [-26.49156443 0.721621 ]\n", + " [-30.877993 0.721621 ]\n", + " [-30.877993 31.426621 ]\n", + " [-30.877993 27.04019243]\n", + " [-30.877993 22.65376385]\n", + " [-30.877993 18.26733529]\n", + " [-30.877993 13.88090671]\n", + " [-30.877993 9.49447814]\n", + " [-30.877993 5.10804957]\n", + " [-30.877993 0.721621 ]\n", + " [ -0.187993 29.514121 ]\n", + " [ -0.187993 24.138121 ]\n", + " [ -0.187993 18.76212101]\n", + " [ -0.187993 13.386121 ]\n", + " [ -0.187993 8.010121 ]\n", + " [ -0.187993 2.634121 ]\n", + " [ -2.085493 31.411621 ]\n", + " [ -7.461493 31.411621 ]\n", + " [-12.837493 31.411621 ]\n", + " [-18.213493 31.411621 ]\n", + " [-23.589493 31.411621 ]\n", + " [-28.965493 31.411621 ]\n", + " [ -2.085493 0.736621 ]\n", + " [ -7.461493 0.736621 ]\n", + " [-12.837493 0.736621 ]\n", + " [-18.213493 0.736621 ]\n", + " [-23.58949299 0.736621 ]\n", + " [-28.965493 0.736621 ]\n", + " [-30.862993 29.514121 ]\n", + " [-30.862993 24.138121 ]\n", + " [-30.862993 18.762121 ]\n", + " [-30.862993 13.386121 ]\n", + " [-30.862993 8.010121 ]\n", + " [-30.862993 2.634121 ]\n", + " [ -0.187993 31.411621 ]\n", + " [ -0.187993 31.411621 ]\n", + " [-30.862993 0.736621 ]\n", + " [-30.862993 0.736621 ]\n", + " [ -2.085493 29.514121 ]\n", + " [ -7.461493 29.514121 ]\n", + " [-12.837493 29.514121 ]\n", + " [-18.213493 29.514121 ]\n", + " [-23.589493 29.514121 ]\n", + " [-28.965493 29.514121 ]\n", + " [ -2.085493 24.138121 ]\n", + " [ -7.461493 24.138121 56 18.871648 ]\n", + " [-23.66256 18.871648 ]\n", + " [-29.03856 18.871648 ]\n", + " [ -2.15856 13.495648 ]\n", + " [ -7.53456 13.495648 ]\n", + " [-12.91056 13.495648 ]\n", + " [-18.28656 13.495648 ]\n", + " [-23.66256 13.495648 ]\n", + " [-29.03856 13.495648 ]\n", + " [ -2.15856 8.119648 ]\n", + " [ -7.53456 8.119648 ]\n", + " [-12.91056 8.119648 ]\n", + " [-18.28656 8.119648 ]\n", + " [-23.66256 8.119648 ]\n", + " [-29.03856 8.119648 ]\n", + " [ -2.15856 2.743648 ]\n", + " [ -7.53456 2.743648 ]\n", + " [-12.91056 2.743648 ]\n", + " [-18.28656 2.743648 ]\n", + " [-23.66256 2.743648 ]\n", + " [-29.03856 2.743648 ]]\n", + "0.56175978 -0.68358289 -0.83348839 -0.96822051\n", + " -0.25223255 -0.30216337 -0.37479377 -0.48708132 -0.66835488 -0.91754577\n", + " -0.08301599 -0.10086897 -0.12834059 -0.17590022 -0.27687945 -0.59535474]\n", + "DEBUG:root:cartToSphere: vec: [[-0.20629584 -0.20078674 0.95766733]\n", + " [-0.20812128 -0.17428103 0.96245086]\n", + " [-0.20967356 -0.14708674 0.96664496]\n", + " [-0.21095376 -0.11931584 0.9701867 ]\n", + " [-0.21196139 -0.09DEBUG:root:radec2pix: curVec: [[-0.22661957 0.21819781 -0.94922773]\n", + " [-0.20058322 0.21517466 -0.95575428]\n", + " [-0.17383364 0.21207717 -0.9616679 ]\n", + " [-0.14647951 0.20889495 -0.96690571]\n", + " [-0.11862966 0.20562236 -0.97141466]\n", + " [-0.09039338 0.20225856 -0.97515153]\n", + " [-0.06188073 0.19880724 -0.97808305]\n", + " [-0.03320273 0.19527619 -0.9801861 ]\n", + " [-0.22661957 0.21819781 -0.94922773]\n", + " [-0.22486503 0.24440799 -0.94323934]\n", + " [-0.22275554 0.27099489 -0.93645168]\n", + " [-0.22030524 0.2978332 -0.92884928]\n", + " [-0.21752781 0.32480184 -0.92042676]\n", + " [-0.21443651 0.35178354 -0.91118896]\n", + " [-0.21104455 0.37866462 -0.9011511 ]\n", + " [-0.20736558 0.40533484 -0.8903388 ]\n", + " [-0.03320273 0.19527619 -0.9801861 ]\n", + " [-0.02955966 0.22236059 -0.97451629]\n", + " [-0.02581588 0.24981993 -0.96794811]\n", + " [-0.02198538 0.27753381 -0.96046428]\n", + " [-0.01808222 0.30538492 -0.95205729]\n", + " [-0.01412088 0.33325728 -0.94273018]\n", + " [-0.01011634 0.36103548 -0.93249721]\n", + " [-0.0060842 0.38860501 -0.92138436]\n", + " [-0.20736558 0.40533484 -0.89033]\n", + " [-12.837493 24.138121 ]\n", + " [-18.213493 24.138121 ]\n", + " [-23.589493 24.138121 ]\n", + " [-28.965493 24.138121 ]\n", + " [ -2.085493 18.762121 ]\n", + " [ -7.461493 18.762121 ]\n", + " [-12.837493 18.762121 ]\n", + " [-18.213493 18.762121 ]\n", + " [-23.589493 18.762121 ]\n", + " [-28.965493 18.762121 ]\n", + " [ -2.085493 13.386121 ]\n", + " [ -7.461493 13.386121 ]\n", + " [-12.837493 13.386121 ]\n", + " [-18.213493 13.386121 ]\n", + " [-23.589493 13.386121 ]\n", + " [-28.965493 13.386121 ]\n", + " [ -2.085493 8.010121 ]\n", + " [ -7.461493 8.010121 ]\n", + " [-12.837493 8.010121 ]\n", + " [-18.213493 8.010121 ]\n", + " [-23.589493 8.010121 ]\n", + " [-28.965493 8.010121 ]\n", + " [ -2.085493 2.634121 ]\n", + " [ -7.461493 2.634121 ]\n", + " [-12.837493 2.634121 ]\n", + " [-18.213493 2.634121 ]\n", + " [-23.589493 2.634121 ]\n", + " [-28.965493 2.634121 ]]\n", + "107902 0.97302465]\n", + " [-0.21269501 -0.06248699 0.97511856]\n", + " [-0.2131529 -0.03365118 0.97643916]\n", + " [-0.21333373 -0.00468399 0.97696816]\n", + " [-0.20629584 -0.20078674 0.95766733]\n", + " [-0.179888 ]\n", + " [-0.1801301 0.404022 -0.89683854]\n", + " [-0.15221175 0.40236175 -0.90273839]\n", + " [-0.12371413 0.40034268 -0.90797608]\n", + " [-0.0947423 0.39795768 -0.91249854]\n", + " [-0.06540454 0.39520419 -0.91626191]\n", + " [-0.03581317 0.39208431 -0.91923191]\n", + " [-0.0060842 0.38860501 -0.92138436]\n", + " [-0.21535645 0.21697724 -0.95212524]\n", + " [-0.18295166 0.21322465 -0.95972076]\n", + " [-0.14958356 0.20934934 -0.96633204]\n", + " [-0.11545243 0.20533896 -0.97185732]\n", + " [-0.08075948 0.20119193 -0.97621704]\n", + " [-0.04570777 0.19691675 -0.97935417]\n", + " [-0.22581101 0.22956122 -0.94673705]\n", + " [-0.223419 0.26195497 -0.9388629 ]\n", + " [-0.2205081 0.2947896 -0.92977162]\n", + " [-0.2171037 0.32784041 -0.9194491 ]\n", + " [-0.21323025 0.36089153 -0.90790427]\n", + " [-0.20891224 0.39373508 -0.89516946]\n", + " [-0.03172624 0.20704333 -0.97781722]\n", + " [-0.02719279 0.24050567 -0.97026675]\n", + " [-0.02252179 0.27441109 -0.9613487 ]\n", + " [-0.01773909 0.30854245 -0.95104515]\n", + " [-0.01287131 0.34268614 -0.93936177]\n", + " [-0.00794634 0.37663002 -0.92632969]\n", + " [-0.19559453 0.404DEBUG:root:make_az_asym: xyp: [[ -0.167405 31.491388 ]\n", + " [ -0.167405 27.10495943]\n", + " [ -0.167405 22.71853086]\n", + " [ -0.167405 18.33210229]\n", + " [ -0.167405 13.94567372]\n", + " [ -0.167405 9.55924515]\n", + " [ -0.167405 5.17281657]\n", + " [ -0.167405 0.786388 ]\n", + " [ -0.167405 31.491388 ]\n", + " [ -4.55383357 31.491388 ]\n", + " [ -8.94026214 31.491388 ]\n", + " [-13.32669071 31.491388 ]\n", + " [-17.71311928 31.491388 ]\n", + " [-22.09954786 31.491388 ]\n", + " [-26.48597643 31.491388 ]\n", + " [-30.872405 31.491388 ]\n", + " [ -0.167405 0.786388 ]\n", + " [ -4.55383357 0.786388 ]\n", + " [ -8.94026214 0.786388 ]\n", + " [-13.32669071 0.786388 ]\n", + " [-17.71311929 0.786388 ]\n", + " [-22.09954786 0.786388 ]\n", + " [-26.48597643 0.786388 ]\n", + " [-30.872405 0.786388 ]\n", + " [-30.872405 31.491388 ]\n", + " [-30.872405 27.10495943]\n", + " [-30.872405 22.71853086]\n", + " [-30.872405 18.33210229]\n", + " [-30.872405 13.94567371]\n", + " [-30.872405 9.55924514]\n", + " [-30.872405 5.17281657]\n", + " [-30.872405 0.786388 ]\n", + " [ -0.182405 29.578888 ]\n", + " [ -0.182405 24.202888 ]\n", + " [ -0.182405 18.826888 ]\n", + " [ -0.182405 13.450888 ]\n", + " [ -0.182405 8.074888 ]\n", + " [ -0.182405 2.698888 ]\n", + " [ -2.079905 31.476388 ]\n", + " [ -7.455905 31.476388 ]\n", + " [-12.831905 31.476388 ]\n", + " [-18.207905 31.476388 ]\n", + " [-23.583905 31.476388 ]\n", + " [-28.959905 31.476388 ]\n", + " [ -2.079905 0.801388 ]\n", + " [ -7.455905 0.801388 ]\n", + " [-12.831905 0.801388 ]\n", + " [-18.207905 0.801388 ]\n", + " [-23.583905 0.801388 ]\n", + " [-28.959905 0.801388 ]\n", + " [-30.857405 29.578888 ]\n", + " [-30.857405 24.202888 ]\n", + " [-30.857405 18.826888 ]\n", + " [-30.857405 13.450888 ]\n", + " [-30.857405 8.074888 ]\n", + " [-30.857405 2.698888 ]\n", + " [ -0.182405 31.476388 ]\n", + " [ -0.182405 31.476388 ]\n", + " [-30.857405 0.801388 ]\n", + " [-30.857405 0.801388 ]\n", + " [ -2.079905 29.578888 ]\n", + " [ -7.455905 29.578888 ]\n", + " [-12.831905 29.578888 ]\n", + " [-18.207905 29.578888 ]\n", + " [-23.583905 29.578888 ]\n", + " [-28.959905 29.578888 ]\n", + " [ -2.079905 24.202888 ]\n", + " [ -7.455905 24.202888 ]\n", + " [-12.831905 24.202888 ]\n", + " [-18.207905 24.202888 ]\n", + " [-23.583905 24.202888 ]\n", + " [-28.959905 24.202888 ]\n", + " [ -2.079905 18.826888 ]\n", + " [ -7.455905 18.826888 ]\n", + " [-12.831905 18.826888 ]\n", + " [-18.207905 18.826888 ]\n", + " [-23.583905 18.826888 ]\n", + " [-28.959905 18.826888 ]\n", + " [ -2.079905 13.450888 ]\n", + " [ -7.455905 13.450888 ]\n", + " [-12.831905 13.450888 ]\n", + " [-18.207905 13.450888 ]\n", + " [-23.583905 13.450888 ]\n", + " [-28.959905 13.450888 ]\n", + " [ -2.079905 8.074888 ]\n", + " [ -7.455905 8.074888 ]\n", + " [-12.831905 8.074888 ]\n", + " [-18.20790499 8.074888 ]\n", + " [-23.583905 8.074888 ]\n", + " [-28.959905 8.074888 ]\n", + " [ -2.079905 2.698888 ]\n", + " [ -7.455905 2.698888 ]\n", + " [-12.831905 2.698888 ]\n", + " [-18.207905 2.698888 ]\n", + " [-23.583905 2.698888 ]\n", + " [-28.959905 2.698888 ]]\n", + "DEBUG:root:make_az_asym: xyp: shape: (96, 2)\n", + "71317 -0.89328049]\n", + " [-0.16174259 0.40287129 -0.90085185]\n", + " [-0.12696781 0.40049595 -0.90745918]\n", + " [-0.09146289 0.3975723 -0.91300099]\n", + " [-0.05542727 0.3940956 -0.91739658]\n", + " [-0.01906931 0.39007177 -0.92058697]\n", + " [-0.22652649 0.21827643 -0.94923187]\n", + " [-0.22652649 0.21827643 -0.94923187]\n", + " [-0.00619978 0.38852371 -0.92141787]\n", + " [-0.00619978 0.38852371 -0.92141787]\n", + " [-0.21458615 0.22831256 -0.94964528]\n", + " [-0.21205515 0.26084723 -0.94180217]\n", + " [-0.2090294 0.29381969 -0.93272541]\n", + " [-0.205534 0.32700565 -0.92240072]\n", + " [-0.20159293 0.36018942 -0.91083691]\n", + " [-0.19723029 0.39316292 -0.89806633]\n", + " [-0.18202809 0.22468358 -0.95727899]\n", + " [-0.17910924 0.25756349 -0.94951616]\n", + " [-0.17576398 0.29087491 -0.94047797]\n", + " [-0.17201632 0.32439513 -0.93014955]\n", + " [-0.16788906 0.35790907 -0.91853925]\n", + " [-0.16340551 0.39120778 -0.90567936]\n", + " [-0.14850949 0.22090293 -0.96392262]\n", + " [-0.14521038 0.25404826 -0.95622875]\n", + " [-0.14155245 0.28762268 -0.94722547]\n", + " [-0.13755889 0.32140525 -0.93689712]\n", + " [-0.13325201 0.35518136 -0.92525137]\n", + " [-0.12865496 0.38874103 -0.91232029]\n", + " [-0.1142302 0.21695845 -0.96947434]\n", + " [-0.11055664 0.25029003 -0DEBUG:root:make_az_asym: xyp: shape: (96, 2)\n", + ".96183789]\n", + " [-0.10659091 0.28405179 -0.95286566]\n", + " [-0.10235615 0.3180244 -0.94254108]\n", + " [-0.09787502 0.35199363 -0.93087108]\n", + " [-0.09317138 0.38574841 -0.91788739]\n", + " [-0.07939113 0.2128489 -0.9738544 ]\n", + " [-0.07534812 0.24628844 -0.96626325]\n", + " [-0.07107889 0.28016211 -0.9573176 ]\n", + " [-0.06660728 0.31425187 -0.94700012]\n", + " [-0.06195727 0.34834377 -0.93531701]\n", + " [-0.0571541 0.38222591 -0.92229971]\n", + " [-0.0441955 0.20858316 -0.97700554]\n", + " [-0.03978874 0.24205314 -0.96944682]\n", + " [-0.0352213 0.27596352 -0.96052256]\n", + " [-0.03051846 0.31009701 -0.95021496]\n", + " [-0.02570608 0.34423993 -0.93852974]\n", + " [-0.02081131 0.37818008 -0.92549809]]\n", + "852 -0.20262142 0.96259331]\n", + " [-0.15276427 -0.20419049 0.96693812]\n", + " [-0.12504507 -0.20549514 0.97063664]\n", + " [-0.09683814 -0.20653488 0.97363531]\n", + " [-0.06825398 -0.20730818 0.97589175]\n", + " [-0.03940385 -0.20781318 0.97737455]\n", + " [-0.01040007 -0.2080483 0.97806326]\n", + " [-0.21333373 -0.00468399 0.97696816]\n", + " [-0.18599064 -0.00472909 0.98254014]\n", + " [-0.15793623 -0.00476846 0.9874378 ]\n", + " [-0.12927467 -0.004802 0.9915972 ]\n", + " [-0.10011211 -0.00482954 0.99496444]\n", + " [-0.07055816 -0.00485094 0.99749587]\n", + " [-0.04072622 -0.00486604 0.99915849]\n", + " [-0.01073294 -0.00487474 0.99993052]\n", + " [-0.01040007 -0.2080483 0.97806326]\n", + " [-0.01048759 -0.18056016 0.98350803]\n", + " [-0.01056224 -0.15238099 0.98826539]\n", + " [-0.01062379 -0.12361519 0.99227336]\n", + " [-0.01067191 -0.09436952 0.99548004]\n", + " [-0.0107063 -0.06475431 0.9978438 ]\n", + " [-0.0107267 -0.03488367 0.99933381]\n", + " [-0.01073294 -0.00487474 0.99993052]\n", + " [-0.20703611 -0.1893284 0.95983895]\n", + " [-0.20908844 -0.1563645 0.96531454]\n", + " [-0.21073192 -0.12247778 0.96984084]\n", + " [-0.21196628 -0.08787247 0.97331841]\n", + " [-0.21278893 -0.05275245 0.97567313]\n", + " [-0.21319686 -0.01732329 0.97685567]\n", + " [-0.19488162 -0.20152974 0.95989943]\n", + " [-0.16201965 -0.20359843 0.96555544]\n", + " [-0.12820231 -0.20526972 0.97027239]\n", + " [-0.09363367 -0.2065434 0.9739469 ]\n", + " [-0.05851721 -0.20741673 0.97650091]\n", + " DEBUG:root:radec2pix: curVec Shape: (96, 3)\n", + "DEBUG:root:optics_fp: xyfp: [[32.2358199 31.31614388]\n", + " [32.23338667 26.92971599]\n", + " [32.23095344 22.54328809]\n", + " [32.2285202 18.15686019]\n", + " [32.22608698 13.7704323 ]\n", + " [32.22365375 9.3840044 ]\n", + " [32.22122051 4.99757651]\n", + " [32.21878728 0.61114861]\n", + " [32.2358199 31.31614388]\n", + " [27.849392 31.31857712]\n", + " [23.46296411 31.32101035]\n", + " [19.07653621 31.32344358]\n", + " [14.69010831 31.3258768 ]\n", + " [10.30368042 31.32831004]\n", + " [ 5.91725252 31.33074327]\n", + " [ 1.53082462 31.3331765 ]\n", + " [32.21878728 0.61114861]\n", + " [27.83235938 0.61358184]\n", + " [23.44593149 0.61601507]\n", + " [19.0595036 0.6184483 ]\n", + " [14.6730757 0.62088153]\n", + " [10.2866478 0.62331476]\n", + " [ 5.90021991 0.625748 ]\n", + " [ 1.513792 0.62818122]\n", + " [ 1.53082462 31.3331765 ]\n", + " [ 1.52839139 26.94674861]\n", + " [ 1.52595816 22.5603207 ]\n", + " [ 1.52352493 18.17389281]\n", + " [ 1.5210917 13.78746492]\n", + " [ 1.51865847 9.40103702]\n", + " [ 1.51622524 5.01460912]\n", + " [ 1.513792 0.62818122]\n", + " [32.219759 29.4036525 ]\n", + " [32.21677684 24.02765333]\n", + " [32.21379467 18.65165415]\n", + " [32.21081251 13.27565498]\n", + " [32.20783035 7.89965581]\n", + " [32.20484818 2.52365664]\n", + " [30.32331188 31.30220479]\n", + " [24.9473127 31.30518695]\n", + " [19.57131353 31.30816912]\n", + " [14.19531435 31.31115127]\n", + " [ 8.81931518 31.31413344]\n", + " [ 3.44331601 31.3171156 ]\n", + " [30.3062959 0.62720951]\n", + " [24.93029672 0.63019167]\n", + " [19.55429755 0.63317383]\n", + " [14.17829838 0.636156 ]\n", + " [ 8.80229921 0.63913816]\n", + " [ 3.42630004 0.64212033]\n", + " [ 1.54476372 29.42066847]\n", + " [ 1.54178156 24.0446693 ]\n", + " [ 1.53879939 18.66867013]\n", + " [ 1.53581723 13.29267096]\n", + " [ 1.53283507 7.91667178]\n", + " [ 1.5298529 2.54067261]\n", + " [32.22081158 31.30115221]\n", + " [32.22081158 31.30115221]\n", + " [ 1.52880032 0.6431729 ]\n", + " [ 1.52880032 0.6431729 ]\n", + " [30.32225929 29.40470508]\n", + " [24.94626012 29.40768724]\n", + " [19.57026095 29.41066941]\n", + " [14.19426178 29.41365157]\n", + " [ 8.8182626 29.41663373]\n", + " [ 3.44226343 29.4196159 ]\n", + " [30.31927713 24.02870591]\n", + " [24.94327796 24.03168807]\n", + " [19.56727878 24.03467023]\n", + " [14.19127961 24.0376524 ]\n", + " [ 8.81528044 24.04063456]\n", + " [ 3.43928127 24.04361672]\n", + " [30.31629496 18.65270673]\n", + " [24.9402958 18.6556889 ]\n", + " [19.56429662 18.65867106]\n", + " [14.18829744 18.66165322]\n", + " [ 8.81229827 18.66463538]\n", + " [ 3.4362991 18.66761755]\n", + " [30.31331281 13.27670756]\n", + " [24.93731363 13.27968972]\n", + " [19.56131446 13.28267189]\n", + " [14.18531529 13.28565406]\n", + " [ 8.80931611 13.28863621]\n", + " [ 3.43331694 13.29161838]\n", + " [30.31033064 7.90070839]\n", + " [24.93433147 7.90369055]\n", + " [19.55833229 7.90667271]\n", + " [14.18233312 7.90965488]\n", + " [ 8.80633395 7.91263704]\n", + " [ 3.43033477 7.9156192 ]\n", + " [30.30734847 2.52470921]\n", + " [24.9313493 2.52769138]\n", + " [19.55535013 2.53067354]\n", + " [14.17935096 2.53365571]\n", + " [ 8.80335178 2.53663787]\n", + " [ 3.42735261 2.53962004]]\n", + "DEBUG:root:radec2pix: ccdpx: [[-4.45000000e+01 -5.00000251e-01]\n", + " [-4.45000000e+01 2.91928572e+02]\n", + " [-4.45000000e+01 5.84357143e+02]\n", + " [-4.45000000e+01 8.76785714e+02]\n", + " [-4.45000000e+01 1.16921429e+03]\n", + " [-4.45000000e+01 1.46164286e+03]\n", + " [-4.45000000e+01 1.75407143e+03]\n", + " [-4.45000000e+01 2.04650000e+03]\n", + " [-4.45000000e+01 -5.00000[-0.02305821 -0.20788637 0.97788117]\n", + " [-0.20150602 -0.0048039 0.9794755 ]\n", + " [-0.16750285 -0.00485635 0.98585963]\n", + " [-0.13253465 -0.0048999 0.99116626]\n", + " [-0.0967959 -0.00493429 0.99529202]\n", + " [-0.06048842 -0.00495921 0.99815658]\n", + " [-0.02382238 -0.00497442 0.99970383]\n", + " [-0.0105395 -0.19615466 0.98051633]\n", + " [-0.01063912 -0.1619874 0.98673547]\n", + " [-0.01071899 -0.12688576 0.99185942]\n", + " [-0.01077856 -0.09104519 0.99578843]\n", + " [-0.01081726 -0.05466885 0.99844594]\n", + " [-0.01083465 -0.01796812 0.99977985]\n", + " [-0.20621357 -0.20070413 0.95770236]\n", + " [-0.20621357 -0.20070413 0.95770236]\n", + " [-0.01083565 -0.00497744 0.9999289 ]\n", + " [-0.01083565 -0.00497744 0.9999289 ]\n", + " [-0.19565571 -0.19010422 0.96207028]\n", + " [-0.16265759 -0.19204948 0.96781171]\n", + " [-0.12870452 -0.19362274 0.97259724]\n", + " [-0.09399937 -0.19482286 0.9763238 ]\n", + " [-0.05874512 -0.19564642 0.97891342]\n", + " [-0.0231472 -0.1960896 0.98031274]\n", + " [-0.19758845 -0.15700026 0.96763099]\n", + " [-0.16425347 -0.15859759 0.97358492]\n", + " [-0.12996305 -0.1598933 251e-01]\n", + " [ 2.47928571e+02 -5.00000137e-01]\n", + " [ 5.40357143e+02 -5.00000030e-01]\n", + " [ 8.32785714e+02 -4.99999965e-01]\n", + " [ 1.12521429e+03 -4.99999941e-01]\n", + " [ 1.41764286e+03 -5.00000178e-01]\n", + " [ 1.71007143e+03 -4.99999847e-01]\n", + " [ 2.00250000e+03 -5.00000219e-01]\n", + " [-4.45000000e+01 2.04650000e+03]\n", + " [ 2.47928571e+02 2.04650000e+03]\n", + " [ 5.40357143e+02 2.04650000e+03]\n", + " [ 8.32785714e+02 2.04650000e+03]\n", + " [ 1.12521429e+03 2.04650000e+03]\n", + " [ 1.41764286e+03 2.04650000e+03]\n", + " [ 1.71007143e+03 2.04650000e+03]\n", + " [ 2.00250000e+03 2.04650000e+03]\n", + " [ 2.00250000e+03 -5.00000219e-01]\n", + " [ 2.00250000e+03 2.91928572e+02]\n", + " [ 2.00250000e+03 5.84357143e+02]\n", + " [ 2.00250000e+03 8.76785714e+02]\n", + " [ 2.00250000e+03 1.16921429e+03]\n", + " [ 2.00250000e+03 1.46164286e+03]\n", + " [ 2.00250000e+03 1.75407143e+03]\n", + " [ 2.00250000e+03 2.04650000e+03]\n", + " [-4.35000000e+01 1.27000000e+02]\n", + " [-4.35000000e+01 4.85400000e+02]\n", + " [-4.35000000e+01 8.43800000e+02]\n", + " [-4.35000000e+01 1.20220000e+03]\n", + " [-4.35000000e+01 1.56060000e+03]\n", + " [-4.350000 0.97854164]\n", + " [-0.09491705 -0.16088429 0.98239859]\n", + " [-0.05931746 -0.1615658 0.98507763]\n", + " [-0.02337052 -0.16193328 0.98652493]\n", + " [-0.19913769 -0.12297381 0.97222509]\n", + " [-0.16553623 -0.12422245 0.97834888]\n", + " [-0.13097704 -0.12523802 0.98344316]\n", + " [-0.09565767 -0.12601654 0.98740541]\n", + " [-0.05977969 -0.12655298 0.99015692]\n", + " [-0.02355053 -0.12684288 0.99164321]\n", + " [-0.20030226 -0.088228 0.97575346]\n", + " [-0.16650264 -0.0891244 0.98200495]\n", + " [-0.13174231 -0.0898551 0.98720313]\n", + " [-0.09621721 -0.09041635 0.99124524]\n", + " [-0.0601289 -0.09080384 0.9940519 ]\n", + " [-0.023686 -0.09101389 0.9955679 ]\n", + " [-0.20107886 -0.05296627 0.97814205]\n", + " [-0.16714801 -0.0535061 0.98447887]\n", + " [-0.13225382 -0.05394701 0.98974676]\n", + " [-0.09659125 -0.05428637 0.9938426 ]\n", + " [-0.06036201 -0.05452132 0.99668644]\n", + " [-0.02377567 -0.05464944 0.9982225 ]\n", + " [-0.201464 -0.01739439 0.97934146]\n", + " [-0.16746808 -0.0175743 0.98572085]\n", + " [-0.13250731 -0.01772184 0.99102359]\n", + " [-0.0967762 -0.01783608 0.99514634]\n", + " [-0.06047657 -0.01791601 0.99800882]\n", + " [-0.02381854 -0.0179608 0.99955494]]\n", + "00e+01 1.91900000e+03]\n", + " [ 8.30000000e+01 4.99999716e-01]\n", + " [ 4.41400000e+02 4.99999791e-01]\n", + " [ 7.99800000e+02 5.00000291e-01]\n", + " [ 1.15820000e+03 5.00000004e-01]\n", + " [ 1.51660000e+03 5.00000077e-01]\n", + " [ 1.87500000e+03 4.99999846e-01]\n", + " [ 8.30000001e+01 2.04550000e+03]\n", + " [ 4.41400000e+02 2.04550000e+03]\n", + " [ 7.99800000e+02 2.04550000e+03]\n", + " [ 1.15820000e+03 2.04550000e+03]\n", + " [ 1.51660000e+03 2.04550000e+03]\n", + " [ 1.87500000e+03 2.04550000e+03]\n", + " [ 2.00150000e+03 1.27000000e+02]\n", + " [ 2.00150000e+03 4.85400000e+02]\n", + " [ 2.00150000e+03 8.43800000e+02]\n", + " [ 2.00150000e+03 1.20220000e+03]\n", + " [ 2.00150000e+03 1.56060000e+03]\n", + " [ 2.00150000e+03 1.91900000e+03]\n", + " [-4.35000000e+01 4.99999735e-01]\n", + " [-4.35000000e+01 4.99999735e-01]\n", + " [ 2.00150000e+03 2.04550000e+03]\n", + " [ 2.00150000e+03 2.04550000e+03]\n", + " [ 8.30000000e+01 1.27000000e+02]\n", + " [ 4.41400000e+02 1.27000000e+02]\n", + " [ 7.99800000e+02 1.27000000e+02]\n", + " [ 1.15820000e+03 1.27000000e+02]DEBUG:root:optics_fp: xyfp shape: (96, 2)\n", + "\n", + " [ 1.51660000e+03 1.27000000e+02]\n", + " [ 1.87500000e+03 1.27000000e+02]\n", + " [ 8.30000000e+01 4.85400000e+02]\n", + " [ 4.41400000e+02 4.85400000e+02]\n", + " [ 7.99800000e+02 4.85400000e+02]\n", + " [ 1.15820000e+03 4.85400000e+02]\n", + " [ 1.51660000e+03 4.85400000e+02]\n", + " [ 1.87500000e+03 4.85400000e+02]\n", + " [ 8.30000000e+01 8.43800000e+02]\n", + " [ 4.41400000e+02 8.43800000e+02]\n", + " [ 7.99800000e+02 8.43800000e+02]\n", + " [ 1.15820000e+03 8.43800000e+02]\n", + " [ 1.51660000e+03 8.43800000e+02]\n", + " [ 1.87500000e+03 8.43800000e+02]\n", + " [ 8.30000000e+01 1.20220000e+03]\n", + " [ 4.41400000e+02 1.20220000e+03]\n", + " [ 7.99800000e+02 1.20220000e+03]\n", + " [ 1.15820000e+03 1.20220000e+03]\n", + " [ 1.51660000e+03 1.20220000e+03]\n", + " [ 1.87500000e+03 1.20220000e+03]\n", + " [ 8.30000000e+01 1.56060000e+03]\n", + " [ 4.41400000e+02 1.56060000e+03]\n", + " [ 7.99800000e+02 1.56060000e+03]\n", + " [ 1.15820000e+03 1.56060000e+03]\n", + " [ 1.51660000e+03 1.56060000e+03]\n", + " [ 1.87500000e+03 1.56060000e+03]\n", + " [ 8.30000002e+01 1.91900000e+03]\n", + " [ 4.41400000e+02 1.91900000e+03]\n", + " [ 7.99800000e+02 1.91900000e+03]\n", + " [ 1.15820000e+03 1.91900000e+03]\n", + " [ 1.51660000e+03 1.91900000e+03]\n", + " [ 1.87500000e+03 1.91900000e+03]]\n", + "DEBUG:root:radec2pix: xyfp: [[ -0.172993 31.426621 ]\n", + " [ -0.172993 27.04019243]\n", + " [ -0.172993 22.65376385]\n", + " [ -0.172993 18.26733528]\n", + " [ -0.172993 13.88090671]\n", + " [ -0.172993 9.49447814]\n", + " [ -0.172993 5.10804957]\n", + " [ -0.172993 0.721621 ]\n", + " [ -0.172993 31.426621 ]\n", + " [ -4.55942157 31.426621 ]\n", + " [ -8.94585014 31.426621 ]\n", + " [-13.33227871 31.426621 ]\n", + " [-17.71870729 31.426621 ]\n", + " [-22.10513586 31.426621 ]\n", + " [-26.49156443 31.426621 ]\n", + " [-30.877993 31.426621 ]\n", + " [ -0.172993 0.721621 ]\n", + " [ -4.55942157 0.721621 ]\n", + " [ -8.94585014 0.721621 ]\n", + " [-13.33227872 0.721621 ]\n", + " [-17.71870728 0.721621 ]\n", + " [-22.10513586 0.721621 ]\n", + " [-26.49156443 0.721621 ]\n", + " [-30.877993 0.721621 ]\n", + " [-30.877993 31.426621 ]\n", + " [-30.877993 27.04019243]\n", + " [-30.877993 22.65376385]\n", + " [-30.877993 18.26733529]\n", + " [-30.877993 13.88090671]\n", + " [-30.877993 9.49447814]\n", + " [-30.877993 5.10804957]\n", + " [-30.877993 0.721621 ]\n", + " [ -0.187993 29.514121 ]\n", + " [ -0.187993 24.138121 ]\n", + " [ -0.187993 18.76212101]\n", + " [ -0.187993 13.386121 ]\n", + " [ -0.187993 8.010121 ]\n", + " [ -0.187993 2.634121 ]\n", + " [ -2.085493 31.411621 ]\n", + " [ -7.461493 31.411621 ]\n", + " [-12.837493 31.411621 ]\n", + " [-18.213493 31.411621 ]\n", + " [-23.589493 31.411621 ]\n", + " [-28.965493 31.411621 ]\n", + " [ -2.085493 0.736621 ]\n", + " [ -7.461493 0.736621 ]\n", + " [-12.837493 0.736621 ]\n", + " [-18.213493 0.736621 ]\n", + " [-23.58949299 0.736621 ]\n", + " [-28.965493 0.736621 ]\n", + " [-30.862993 29.514121 ]\n", + " [-30.862993 24.138121 ]\n", + " [-30.862993 18.762121 ]\n", + " [-30.862993 13.386121 ]\n", + " [-30.862993 8.010121 ]\n", + " [-30.862993 2.634121 ]\n", + " [ -0.187993 31.411621 ]\n", + " [ -0.187993 31.411621 ]\n", + " [-30.862993 0.736621 ]\n", + " [-30.862993 0.736621 ]\n", + " [ -2.085493 29.514121 ]\n", + " [ -7.461493 29.514121 ]\n", + " [-12.837493 29.514121 ]\n", + " [-18.213493 29.514121 ]\n", + " [-23.589493 29.514121 ]\n", + " [-28.965493 29.514121 ]\n", + " [ -2.085493 24.138121 ]\n", + " [ -7.461493 24.138121 ]\n", + " [-12.837493 24.138121 ]\n", + " [-18.213493 24.138121 ]\n", + " [-23.589493 24.138121 ]\n", + " [-28.965493 24.138121 ]\n", + " [ -2.085493 18.762121 ]\n", + " [ -7.461493 18.762121 ]\n", + " [-12.837493 18.762121 ]\n", + " [-18.213493 18.762121 ]\n", + " [-23.589493 18.762121 ]\n", + " [-28.965493 18.762121 ]\n", + " [ -2.085493 13.386121 ]\n", + " [ -7.461493 13.386121 ]\n", + " [-12.837493 13.386121 ]\n", + " [-18.213493 13.386121 ]\n", + " [-23.589493 13.386121 ]\n", + " [-28.965493 13.386121 ]\n", + " [ -2.085493 8.010121 ]\n", + " [ -7.461493 8.010121 ]\n", + " [-12.837493 8.010121 ]\n", + " [-18.213493 8.010121 ]\n", + " [-23.589493 8.010121 ]\n", + " [-28.965493 8.010121 ]\n", + " [ -2.085493 2.634121 ]\n", + " [ -7.461493 2.634121 ]\n", + " [-12.837493 2.634121 ]\n", + " [-18.213493 2.634121 ]\n", + " [-23.589493 2.634121 ]\n", + " [-28.965493 2.634121 ]]\n", + "DEBUG:root:radec2pix: xyfp: [[ -0.167405 31.491388 ]\n", + " [ -0.167405 27.10495943]\n", + " [ -0.167405 22.71853086]\n", + " [ -0.167405 18.33210229]\n", + " [ -0.167405 13.94567372]\n", + " [ -0.167405 9.55924515]\n", + " [ -0.167405 5.17281657]\n", + " [ -0.167405 0.786388 ]\n", + " [ -0.167405 31.491388 ]\n", + " [ -4.55383357 31.491388 ]\n", + " [ -8.94026214 31.491388 ]\n", + " [-13.32669071 31.491388 ]\n", + " [-17.71311928 31.491388 ]\n", + " [-22.09954786 31.491388 ]\n", + " [-26.48597643 31.491388 ]\n", + " [-30.872405 31.491388 ]\n", + " [ -0.167405 0.786388 ]\n", + " [ -4.55383357 0.786388 ]\n", + " [ -8.94026214 0.786388 ]\n", + " [-13.32669071 0.786388 ]\n", + " [-17.71311929 0.786388 ]\n", + " [-22.09954786 0.786388 ]\n", + " [-26.48597643 0.786388 ]\n", + " [-30.872405 0.786388 ]\n", + " [-30.872405 31.491388 ]\n", + " [-30.872405 27.10495943]\n", + " [-30.872405 22.71853086]\n", + " [-30.872405 18.33210229]\n", + " [-30.872405 13.94567371]\n", + " [-30.872405 9.55924514]\n", + " [-30.872405 5.17281657]\n", + " [-30.872405 0.786388 ]\n", + " [ -0.182405 29.578888 ]\n", + " [ -0.182405 24.202888 ]\n", + " [ -0.182405 18.826888 ]\n", + " [ -0.182405 13.450888 ]\n", + " [ -0.182405 8.074888 ]\n", + " [ -0.182405 2.698888 ]\n", + " [ -2.079905 31.476388 ]\n", + " [ -7.455905 31.476388 ]\n", + " [-12.831905 31.476388 ]\n", + " [-18.207905 31.476388 ]\n", + " [-23.583905 31.476388 ]\n", + " [-28.959905 31.476388 ]\n", + " [ -2.079905 0.801388 ]\n", + " [ -7.455905 0.801388 ]\n", + " [-12.831905 0.801388 ]\n", + " [-18.207905 0.801388 ]\n", + " [-23.583905 0.801388 ]\n", + " [-28.959905 0.801388 ]\n", + " [-30.857405 29.578888 ]\n", + " [-30.857405 24.202888 ]\n", + " [-30.857405 18.826888 ]\n", + " [-30.857405 13.450888 ]\n", + " [-30.857405 8.074888 ]\n", + " [-30.857405 2.698888 ]\n", + " [ -0.182405 31.476388 ]\n", + " [ -0.182405 31.476388 ]\n", + " [-30.857405 0.801388 ]\n", + " [-30.857405 0.801388 ]\n", + " [ -2.079905 29.578888 ]\n", + " [ -7.455905 29.578888 ]\n", + " [-12.831905 29.578888 ]\n", + " [-18.207905 29.578888 ]\n", + " [-23.583905 29.578888 ]\n", + " [-28.959905 29.578888 ]\n", + " [ -2.079905 24.202888 ]\n", + " [ -7.455905 24.202888 ]\n", + " [-12.831905 24.2028DEBUG:root:radec2pix: xyfp Shape: (96, 2)\n", + "88 ]\n", + " [-18.207905 24.202888 ]\n", + " [-23.583905 24.202888 ]\n", + " [-28.959905 24.202888 ]\n", + " [ -2.079905 18.826888 ]\n", + " [ -7.455905 18.826888 ]\n", + " [-12.831905 18.826888 ]\n", + " [-18.207905 18.826888 ]\n", + " [-23.583905 18.826888 ]\n", + " [-28.959905 18.826888 ]\n", + " [ -2.079905 13.450888 ]\n", + " [ -7.455905 13.450888 ]\n", + " [-12.831905 13.450888 ]\n", + " [-18.207905 13.450888 ]\n", + " [-23.583905 13.450888 ]\n", + " [-28.959905 13.450888 ]\n", + " [ -2.079905 8.074888 ]\n", + " [ -7.455905 8.074888 ]\n", + " [-12.831905 8.074888 ]\n", + " [-18.20790499 8.074888 ]\n", + " [-23.583905 8.074888 ]\n", + " [-28.959905 8.074888 ]\n", + " [ -2.079905 2.698888 ]\n", + " [ -7.455905 2.698888 ]\n", + " [-12.831905 2.698888 ]\n", + " [-18.207905 2.698888 ]\n", + " [-23.583905 2.698888 ]\n", + " [-28.959905 2.698888 ]]\n", + "DEBUG:root:radec2pix: lng: [224.22465666 219.9428498 215.04979529 209.49258103 203.25301711\n", + " 196.37209253 188.97143587 181.25779309 224.22465666 228.40166279\n", + " 233.19815281 238.6792283 244.87949815 251.77642798 259.26349599\n", + " 267.13824006 181.25779309 181.45651552 181.7293675 182.12731457\n", + " 182.76188514 183.93294711 186.8134933 204.42682228 267.13824006\n", + " 266.67578867 266.03490179 265.0879329 263.54803827 260.61180811\n", + " 252.90738353 204.42682228 222.44199402 216.7905754 210.16523251\n", + " 202.51687812 193.92347078 184.64535837 225.96080389 231.48791131\n", + " 238.01293878 245.61347707 254.24497485 263.67077373 181.36567301\n", + " 181.66068982 182.11730117 182.91819426 184.68697431 191.79462375\n", + " 266.92442169 266.24228499 265.17126169 263.2483557 258.80752919\n", + " 238.9103071 224.22429417 224.22429417 204.67204832 204.67204832\n", + " 224.17550953 229.73684595 236.38729877 244.24332674 253.28700279\n", + " 263.26773103 218.4700285 223.99636381 230.89540499 239.46063162\n", + " 249.83973486 261.78766678 211.69663969 216.8854629 223.71683254\n", + " 232.7982941 244.71540545 259.48183646 203.77225927 208.15895021\n", + " 214.29602039 223.21973304 236.48809111 255.41258234 194.75709541\n", + " 197.7504966 202.19079752 209.33692857 222.08957905 246.48817507\n", + " 184.93467768 185.99075879 187.61766642 190.44256036 196.50176943\n", + " 217.01878407]\n", + "DEBUG:root:radec2pix: xyfp Shape: (96, 2)\n", + "DEBUG:root:radec2pix: camVec: [[-0.20607518 -0.20787446 -0.20940354 -0.21066179 -0.21164814 -0.21236112\n", + " -0.21279916 -0.21296107 -0.20607518 -0.17964954 -0.15251864 -0.12479221\n", + " -0.09658011 -0.06799262 -0.03914089 -0.01013708 -0.21296107 -0.18561075\n", + " -0.15755214 -0.12888979 -0.09972928 -0.07017922 -0.04035219 -0.01036463\n", + " -0.01013708 -0.01020871 -0.01026764 -0.01031373 -0.01034674 -0.01036638\n", + " -0.0103724 -0.01036463 -0.20680345 -0.20882603 -0.21044235 -0.21165063\n", + " -0.2124482 -0.2128323 -0.19465346 -0.16177694 -0.12795009 -0.0933751\n", + " -0.05825505 -0.022795 -0.20112996 -0.16711987 -0.13214975 -0.09641349\n", + " -0.0601111 -0.02345151 -0.01026957 -0.0103498 -0.01041065 -0.01045169\n", + " -0.01047241 -0.01047238 -0.20599275 -0.20599275 -0.01046737 -0.01046737\n", + " -0.19541667 -0.16240545 -0.12844349 -0.09373247 -0.05847519 -0.02287686\n", + " -0.19732118 -0.16397526 -0.12967711 -0.09462661 -0.05902568 -0.02308015\n", + " -0.19884383 -0.16523235 -0.13066656 -0.09534433 -0.05946678 -0.02324061\n", + " -0.19998259 -0.16617376 -0.13140827 -0.09588212 -0.05979589 -0.0233572\n", + " -0.20073433 -0.16679525 -0.13189744 -0.09623556 -0.06000982 -0.02342863\n", + " -0.20109591 -0.16709274 -0.13212968 -0.09640067 -0.06010576 -0.0234538 ]\n", + " [-0.20019593 -0.17367087 -0.14646307 -0.11868235 -0.09043873 -0.0618427\n", + " -0.03300558 -0.0040396 -0.20019593 -0.20202839 -0.20359907 -0.20490731\n", + " -0.20595196 -0.20673135 -0.20724368 -0.20748743 -0.0040396 -0.00409191\n", + " -0.0041395 -0.00418225 -0.00421998 -0.00425248 -0.00427955 -0.00430103\n", + " -0.20748743 -0.17998755 -0.15180051 -0.12303089 -0.0937848 -0.06417157\n", + " -0.03430461 -0.00430103 -0.18872819 -0.15574492 -0.12184525 -0.0872316\n", + " -0.05210744 -0.0166781 -0.20093724 -0.20300612 -0.20468137 -0.20596106\n", + " -0.20684219 -0.20732153 -0.00416252 -0.00422448 -0.00427905 -0.00432591\n", + " -0.00436469 -0.00439503 -0.19558822 -0.16140908 -0.12630166 -0.09046055\n", + " -0.05408714 -0.0173918 -0.20011322 -0.20011322 -0.00440367 -0.00440367\n", + " -0.18950334 -0.19145029 -0.19302803 -0.19423441 -0.195066 -0.19551916\n", + " -0.15638145 -0.15798254 -0.1592836 -0.16028164 -0.16097217 -0.16135064\n", + " -0.12234264 -0.1235961 -0.12461804 -0.12540495 -0.1259519 -0.1262541\n", + " -0.08758892 -0.08849133 -0.08922984 -0.08980108 -0.09020062 -0.09042422\n", + " -0.05232353 -0.0528708 -0.053321 -0.05367171 -0.05391982 -0.0540624\n", + " -0.016752 -0.01694088 -0.01709901 -0.01722548 -0.01731915 -0.01737894]\n", + " [ 0.95783851 0.96261448 0.96679818 0.97032784 0.97315256 0.9752324\n", + " 0.97653835 0.97705233 0.95783851 0.96276195 0.96710159 0.97079344\n", + " 0.97378441 0.97603235 0.97750603 0.97818516 0.97705233 0.98261483\n", + " 0.98750199 0.99165011 0.99500566 0.99752533 0.99917635 0.99993704\n", + " 0.97818516 0.98361591 0.98835782 0.99234925 0.99553873 0.99788504\n", + " 0.9993576 0.99993704 0.96000729 0.96547149 0.96998338 0.97DEBUG:root:radec2pix: lat: [73.26908943 74.24907619 75.16003276 75.97420276 76.66164507 77.19203919\n", + " 77.53795274 77.67919539 73.26908943 74.27917066 75.22575502 76.08096918\n", + " 76.81416078 77.39343277 77.78879656 77.97677996 77.67919539 79.27760057\n", + " 80.9086962 82.56716816 84.24766937 85.94438651 87.64930302 89.3245763\n", + " 77.97677996 79.57988268 81.21386953 82.87289707 84.55034798 86.23677698\n", + " 87.90848861 89.3245763 73.70687233 74.86526918 75.89266936 76.7347974\n", + " 77.33616788 77.64902834 73.71922865 74.91822462 75.99447399 76.89265343\n", + " 77.55435927 77.92679672 78.37161008 80.3532483 82.37868114 84.43807116\n", + " 86.5205023 88.60550058 78.67128345 80.65746446 82.68422414 84.73967937\n", + " 86.80532112 88.79773368 73.27606371 73.27606371 89.31677804 89.31677804\n", + " 74.16894713 75.42332545 76.55590489 77.50736059 78.21290493 78.61205636\n", + " 75.38223897 76.80151051 78.10907648 79.23409871 80.08944165 80.58344411\n", + " 76.46449862 78.05559614 79.5593541 80.89695848 81.95437214 82.58757556\n", + " 77.35718097 79.11401738 8DEBUG:root:mm_to_pix: fitpx: [[0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]]\n", + "DEBUG:root:make_az_asym: xyp: [[32.2358199 31.31614388]\n", + " [32.23338667 26.92971599]\n", + " [32.23095344 22.54328809]\n", + " [32.2285202 18.15686019]\n", + " [32.22608698 13.7704323 ]\n", + " [32.22365375 9.3840044 ]\n", + " [32.22122051 4.99757651]\n", + " [32.21878728 0.61114861]\n", + " [32.2358199 31.31614388]\n", + " [27.849392 31.31857712]\n", + " [23.46296411 31.32101035]\n", + " [19.07653621 31.32344358]\n", + " [14.69010831 31.3258768 ]\n", + " [10.30368042 31.32831004]\n", + " [ 5.91725252 31.33074327]\n", + " [ 1.53082462 31.3331765 ]\n", + " [32.21878728 0.61114861]\n", + " [27.83235938 0.61358184]\n", + " [23.44593149 0.61601507]\n", + " [19.0595036 0.6184483 ]\n", + " [14.6730757 0.62088153]\n", + " [10.2866478 0.62331476]\n", + " [ 5.90021991 0.625748 ]\n", + " [ 1.513792 0.62818122]\n", + " [ 1.53082462 31.3331765 ]\n", + " [ 1.52839139 26.94674861]\n", + " [ 1.52595816 22.5603207 ]\n", + " [ 1.52352493 18.17389281]\n", + " [ 1.5210917 13.78746492]\n", + " [ 1.51865847 9.40103702]\n", + " [ 1.51622524 5.01460912]\n", + " [ 1.513792 0.62818122]\n", + " [32.219759 29.4036525 ]\n", + " [32.21677684 24.02765333]\n", + " [32.21379467 18.65165415]\n", + " [32.21081251 13.27565498]\n", + " [32.20783035 7.89965581]\n", + " [32.20484818 2.52365664]\n", + " [30.32331188 31.30220479]\n", + " [24.9473127 31.30518695]\n", + " [19.57131353 31.30816912]\n", + " [14.19531435 31.31115127]\n", + " [ 8.81931518 31.31413344]\n", + " [ 3.44331601 31.3171156 ]\n", + " [30.3062959 0.62720951]\n", + " [24.93029672 0.63019167]\n", + " [19.55429755 0.63317383]\n", + " [14.17829838 0.636156 ]\n", + " [ 8.80229921 0.63913816]\n", + " [ 3.42630004 0.64212033]\n", + " [ 1.54476372 29.42066847]\n", + " [ 1.54178156 24.0446693 ]\n", + " [ 1.53879939 18.66867013]\n", + " [ 1.53581723 13.29267096]\n", + " [ 1.53283507 7.91667178]\n", + " [ 1.5298529 2.54067261]\n", + " [32.22081158 31.30115221]\n", + " [32.22081158 31.30115221]\n", + " [ 1.52880032 0.6431729 ]\n", + " [ 1.52880032 0.6431729 ]\n", + " [30.32225929 29.40470508]\n", + " [24.94626012 29.40768724]\n", + " [19.57026095 29.41066941]\n", + " [14.19426178 29.41365157]\n", + " [ 8.8182626 29.41663373]\n", + " [ 3.44226343 29.4196159 ]\n", + " [30.31927713 24.02870591]\n", + " [24.94327796 24.03168807]\n", + " [19.56727878 24.03467023]\n", + " [14.19127961 24.0376524 ]\n", + " [ 8.81528044 24.04063456]\n", + " [ 3.43928127 24.04361672]\n", + " [30.31629496 18.65270673]\n", + " [24.9402958 18.6556889 ]\n", + " [19.56429662 18.65867106]\n", + " [14.18829744 18.66165322]\n", + " [ 8.81229827 18.6646353DEBUG:root:radec2pix: curVec: [[-9.10221987e-02 -2.42478440e-01 -9.65877407e-01]\n", + " [-8.86555789e-02 -2.68517185e-01 -9.59186483e-01]\n", + " [-8.60158294e-02 -2.94888134e-01 -9.51652387e-01]\n", + " [-8.31270302e-02 -3.21466143e-01 -9.43265294e-01]\n", + " [-8.00105227e-02 -3.48131048e-01 -9.34025208e-01]\n", + " [-7.66853018e-02 -3.74766939e-01 -9.23942155e-01]\n", + " [-7.31686197e-02 -4.01261663e-01 -9.13036380e-01]\n", + " [-6.94765563e-02 -4.27506745e-01 -9.01338444e-01]\n", + " [-9.10221987e-02 -2.42478440e-01 -9.65877407e-01]\n", + " [-6.46561926e-02 -2.38087023e-01 -9.69089339e-01]\n", + " [-3.76419467e-02 -2.33572496e-01 -9.71610505e-01]\n", + " [-1.00980999e-02 -2.28928136e-01 -9.73390948e-01]\n", + " [ 1.78592952e-02 -2.24152619e-01 -9.74390399e-01]\n", + " [ 4.61158781e-02 -2.19249884e-01 -9.74578275e-01]\n", + " [ 7.45582052e-02 -2.14228742e-01 -9.73933838e-01]\n", + " [ 1.03073405e-01 -2.09102385e-01 -9.72446433e-01]\n", + " [-6.94765563e-02 -4.27506745e-01 -9.01338444e-01]\n", + " [-4.18655693e-02 -4.24817015e-01 -9.04310664e-01]\n", + " [-1.36530476e-02 -4.21733751e-01 -9.06616919e-01]\n", + " [ 1.50496856e-02 -4.18249915e-01 -9.08207309e-01]\n", + " [ 4.41315544e-02 -4.14362828e-01 -9.09041172e-01]\n", + " [ 7.34797517e-02 -4.10074501e-01 -9.09087251e-01]\n", + " [ 1.02978873e-01 -4.05391937e-01 -9.08324132e-01]\n", + " [ 1.32511229e-01 -4.00327290e-01 -9.06740776e-01]\n", + " [ 1.03073405e-01 -2.09102385e-01 -9.72446433e-01]\n", + " [ 1.07371000e-01 -2.35980791e-01 -9.65807711e-01]\n", + " [ 1.11673123e-01 -2.63200195e-01 -9.58256109e-01]\n", + " [ 1.15957421e-01 -2.90642080e-01 -9.49779479e-01]\n", + " [ 1.20202876e-01 -3.18190460e-01 -9.40375510e-01]\n", + " [ 1.24389513e-01 -3.45730291e-01 -9.30052587e-01]\n", + " [ 1.28498299e-01 -3.73147029e-01 -9.18830497e-01]\n", + " [ 1.32511229e-01 -4.00327290e-01 -9.06740776e-01]\n", + " [-8.99361901e-02 -2.53767936e-01 -9.63074928e-01]\n", + " [-8.68475668e-02 -2.85921676e-01 -9.54309329e-01]\n", + " [-8.33731175e-02 -3.18449467e-01 -9.44266308e-01]\n", + " [-7.95532621e-02 -3.51128059e-01 -9.32941780e-01]\n", + " [-7.54230357e-02 -3.83744010e-01 -9.20354225e-01]\n", + " [-7.10136890e-02 -4.16092362e-01 -9.06545201e-01]\n", + " [-7.96058695e-02 -2.40666982e-01 -9.67337743e-01]\n", + " [-4.68392534e-02 -2.35204199e-01 -9.70816702e-01]\n", + " [-1.32171822e-02 -2.29549015e-01 -9.73207355e-01]\n", + " [ 2.10456587e-02 -2.23696747e-01 -9.74431550e-01]\n", + " [ 5.57386485e-02 -2.17654605e-01 -9.74433002e-01]\n", + " [ 9.06531751e-02 -2.11440652e-01 -9.73177709e-01]\n", + " [-5.75322103e-02 -4.26292210e-01 -9.02754117e-01]\n", + " [-2.32736346e-02 -4.22731223e-01 -9.05956208e-01]\n", + " [ 1.17777309e-02 -4.18571841e-01 -9.08107317e-01]\n", + " [ 4.74174218e-02 -4.13807314e-01 -9.09128756e-01]\n", + " [ 8.34376646e-02 -4.08441387e-01 -9.08963030e-01]\n", + " [ 1.19624999e-01 -4.02489095e-01 -9.07575004e-01]\n", + " [ 1.04847218e-01 -2.20789518e-01 -9.69669557e-01]\n", + " [ 1.10119333e-01 -2.53976312e-01 -9.60921311e-01]\n", + " [ 1.15376056e-01 -2.87557117e-01 -9.50788762e-01]\n", + " [ 1.20578164e-01 -3.21317467e-01 -9.39263537e-01]\n", + " [ 1.25688878e-01 -3.55045518e-01 -9.26361153e-01]\n", + " [ 1.30673582e-01 -3.88530815e-01 -9.12122920e-01]\n", + " [-9.09256764e-02 -2.42551955e-01 -9.65868040e-01]\n", + " [-9.09256764e-02 -2.42551955e-01 -9.65868040e-01]\n", + " [ 1.32396777e-01 -4.00252826e-01 -9.06790367e-01]\n", + " [ 1.32396777e-01 -4.00252826e-01 -9.06790367e-01]\n", + " [-7.85576115e-02 -2.51932657e-01 -9.64551003e-01]\n", + " [-4.56289414e-02 -2.46590761e-01 -9.68044935e-01]\n", + " [-1.18506754e-02 -2.41027236e-01 -9.70445997e-01]\n", + " [ 2.25634753e-02 -2.35237840e-01 -9.71675897e-01]\n", + " [ 5.74034578e-02 -2.29230287e-01 -9.71678094e-01]\n", + " [ 9.24606239e-02 -2.23023090e-01 -9.70418329e-01]\n", + " [-7.53210526e-02 -2.84225062e-01 -9.55794357e-01]\n", + " [-4.19849160e-02 -2.79221542e-01 -9.59308395e-01]\n", + " [-7.81384703e-03 -2.73916552e-01 -9.61721720e-01]\n", + " [ 2.69813269e-02 -2.68306920e-01 -9.62955557e-01]\n", + " [ 6.21919104e-02 -2.62401361e-01 -9.62952591e-01]\n", + " [ 9.76087449e-02 -2.56219252e-01 -9.61677819e-01]\n", + " [-7.17257291e-02 -3.16888985e-01 -9.45746685e-01]\n", + " [-3.80570673e-02 -3.12219898e-01 -9.49247278e-01]\n", + " [-3.56541137e-03 -3.07174079e-01 -9.51646664e-01]\n", + " [ 3.15410295e-02 -3.01748739e-01 -9.52865605e-01]\n", + " [ 6.70544189e-02 -2.95952727e-01 -9.52846099e-01]\n", + " [ 1.02764603e-01 -2.89805519e-01 -9.51552520e-01]\n", + " [-6.78113352e-02 -3.49701882e-01 -9.34403669e-01]\n", + " [-3.38831308e-02 -3.45365387e-01 -9.37856430e-01]\n", + " [ 8.58166467e-04 -3.40581342e-01 -9.40214663e-01]\n", + " [ 3.62063550e-02 -3.35346478e-01 -9.41398874e-01]\n", + " [ 7.19539676e-02 -3.29668842e-01 -9.41350669e-01]\n", + " [ 1.07889631e-01 -3.23567220e-01 -9.40034086e-01]\n", + " [-6.36122168e-02 -3.82450586e-01 -9.21783616e-01]\n", + " [-2.94959015e-02 -3.78445411e-01 -9.25153535e-01]\n", + " [ 5.42471899e-03 -3.73926012e-01 -9.27442672e-01]\n", + " [ 4.09446995e-02 -3.68887894e-01 -9.28571620e-01]\n", + " [ 7.68565756e-02 -3.63337542e-01 -9.28482039e-01]\n", + " [ 1.12947836e-01 -3.57292396e-01 -9.27138032e-01]\n", + " [-5.91591594e-02 -4.14929891e-01 -9.07928069e-01]\n", + " [-2.49252872e-02 -4.11253717e-01 -9.11180065e-01]\n", + " [ 1.01044021e-02 -4.07000472e-01 -9.13372058e-01]\n", + " [ 4.57254495e-02 -4.02164012e-01 -9.14425115e-01]\n", + " [ 8.17301816e-02 -3.96748820e-01 -9.14281440e-01]\n", + " [ 1.17905298e-01 -3.90770586e-01 -9.12905630e-01]]\n", + "344474\n", + " 0.97578203 0.97694639 0.96006992 0.96572084 0.97042996 0.97409503\n", + " 0.97663845 0.97800724 0.97955572 0.98592753 0.99122053 0.99533197\n", + " 0.99818215 0.99971531 0.98063234 0.98683331 0.99193725 0.99584519\n", + " 0.9984813 0.99979391 0.95787352 0.95787352 0.99993552 0.99993552\n", + " 0.9622374 0.96797276 0.97274994 0.9764667 0.97904541 0.98043302\n", + " 0.96778572 0.97373181 0.978679 0.98252511 0.98519233 0.98662722\n", + " 0.97236485 0.97847957 0.98356321 0.98751357 0.9902524 0.99172566\n", + " 0.9758766 0.9821179 0.98730436 0.99133364 0.9941269 0.9956294\n", + " 0.9782474 0.98457302 0.98982824 0.99391049 0.99674043 0.99826267\n", + " 0.97942831 0.98579563 0.99108495 0.99519355 0.99804176 0.99957386]]\n", + "DEBUG:root:radec2pix: curVec: [[ 0.46422488 -0.48431262 -0.74157707]\n", + " [ 0.47206223 -0.5031397 -0.72388376]\n", + " [ 0.47982924 -0.52189993 -0.70525482]\n", + " [ 0.48746659 -0.54050036 -0.68573733]\n", + " [ 0.49491826 -0.55885165 -0.66538766]\n", + " [ 0.50213387 -0.57686899 -0.64426993]\n", + " [ 0.5090697 -0.59447242 -0.62245529]\n", + " [ 0.51568896 -0.611580.82399404 82.41287861 83.74766412 84.60361539\n", + " 77.99846994 79.89205969 81.78816951 83.63850339 85.33442441 86.58329889\n", + " 78.33357011 80.30591073 82.31728996 84.35260664 86.38369379 88.29053235]\n", + "8]\n", + " [ 3.4362991 18.66761755]\n", + " [30.31331281 13.27670756]\n", + " [24.93731363 13.27968972]\n", + " [19.56131446 13.28267189]\n", + " [14.18531529 13.28565406]\n", + " [ 8.80931611 13.28863621]\n", + " [ 3.43331694 13.29161838]\n", + " [30.31033064 7.90070839]\n", + " [24.93433147 7.90369055]\n", + " [19.55833229 7.90667271]\n", + " [14.18233312 7.90965488]\n", + " [ 8.80633395 7.91263704]\n", + " [ 3.43033477 7.9156192 ]\n", + " [30.30734847 2.52470921]\n", + " [24.9313493 2.52769138]\n", + " [19.55535013 2.53067354]\n", + " [14.17935096 2.53365571]\n", + " [ 8.80335178 2.53663787]\n", + " [ 3.42735261 2.53962004]]\n", + "DEBUG:root:radec2pix: fitpx: [[2135.5 4155.50000025]\n", + " [2135.5 3863.07142842]\n", + " [2135.5 3570.64285705]\n", + " [2135.5 3278.21428595]\n", + " [2135.50000001 2985.78571392]\n", + " [2135.5 2693.35714283]\n", + " [2135.49999998 2400.92857178]\n", + " [2135.49999997 2108.50000011]\n", + " [2135.5 4155.50000025]\n", + " [1843.07142855 4155.50000014]\n", + " [1550.64285713 4155.50000003]\n", + " [1258.21428573 4155.49999997]\n", + " [ 965.78571432 4155.49999994]\n", + " [ 673.35714273 4155.50000018]\n", + " [ 380.92857156 4155.49999985]\n", + " [ 88.49999978 4155.50000022]\n", + " [2135.49999997 2108.50000011]\n", + " [1843.07142854 2108.50000001]\n", + " [1550.64285742 2108.49999997]\n", + " [1258.21428585 2108.49999999]\n", + " [ 965.78571387 2108.50000002]\n", + " [ 673.35714329 2108.49999998]\n", + " [ 380.92857158 2108.5 ]\n", + " [ 88.4999998 2108.50000001]\n", + " [ 88.49999978 4155.50000022]\n", + " [ 88.50000021 3863.07142839]\n", + " [ 88.50000011 3570.64285706]\n", + " [ 88.50000015 3278.21428562]\n", + " [ 88.49999997 2985.7857143 ]\n", + " [ 88.49999979 2693.35714292]\n", + " [ 88.49999995 2400.92857144]\n", + " [ 88.4999998 2108.50000001]\n", + " [2134.5 4027.99999985]\n", + " [2134.5 3669.59999985]\n", + " [2134.49999999 3311.20000044]\n", + " [2134.5 2952.7999998 ]\n", + " [2134.5 2594.40000013]\n", + " [2134.50000001 2235.99999985]\n", + " [2007.99999998 4154.50000028]\n", + " [1649.59999995 4154.50000021]\n", + " [1291.20000012 4154.49999971]\n", + " [ 932.8 4154.5 ]\n", + " [ 574.40000006 4154.49999992]\n", + " [ 215.99999986 4154.50000015]\n", + " [2007.99999994 2109.50000002]\n", + " [1649.60000009 2109.49999999]\n", + " [1291.20000007 2109.5 ]\n", + " [ 932.80000034 2109.49999998]\n", + " [ 574.40000029 2109.49999999]\n", + " [ 216.00000015 2109.5 ]\n", + " [ 89.50000013 4027.99999988]\n", + " [ 89.50000024 3669.59999981]\n", + " [ 89.50000003 3311.19999998]\n", + " [ 89.49999973 2952.80000012]\n", + " [ 89.49999991 2594.40000002]\n", + " [ 89.50000029 2235.99999997]\n", + " [2134.5 4154.50000026]\n", + " [2134.5 4154.50000026]\n", + " [ 89.50000019 2109.49999999]\n", + " [ 89.50000019 2109.49999999]\n", + " [2008. 4027.99999998]\n", + " [1649.6 4027.99999999]\n", + " [1291.19999989 4028.00000025]\n", + " [ 932.79999995 4028.00000008]\n", + " [ 574.3999998 4028.00000025]\n", + " [ 215.99999992 4028.00000008]\n", + " [2008.00000001 3669.59999984]\n", + " [1649.60000007 3669.59999979]\n", + " [1291.19999996 3669.60000008]\n", + " [ 932.80000004 3669.59999994]\n", + " [ 574.39999995 3669.60000006]\n", + " [ 216.00000005 3669.59999995]\n", + " [2007.99999998 3311.2000002DEBUG:root:radec2pix: curVec Shape: (96, 3)\n", + "DEBUG:root:mm_to_pix: fitpx: [[0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]]\n", + " ]\n", + " [1649.59999994 3311.20000015]\n", + " [1291.20000016 3311.1999997DEBUG:root:make_az_asym: xyp: shape: (96, 2)\n", + "DEBUG:root:mm_to_pix: fitpx.shape: (96, 2)\n", + "DEBUG:root:radec2pix: camVec Shape: (3, 96)\n", + "DEBUG:root:mm_to_pix: fitpx.shape: (96, 2)\n", + "6]\n", + " [ 932.80000015 3311.19999985]\n", + " [ 574.40000019 3311.19999985]\n", + " [ 216.00000023 3311.19999985]\n", + " [2007.99999995 2952.80000031]\n", + " [1649.60000003 2952.79999994]\n", + " [1291.19999981 2952.80000019]\n", + " [ 932.79999986 2952.8000001 ]\n", + " [ 574.39999987 2952.80000007]\n", + " [ 216.00000004 2952.79999998]\n", + " [2007.99999998 2594.40000008]\n", + " [1649.60000021 2594.39999977]\n", + " [1291.19999986 2594.40000009]\n", + " [ 932.80000028 2594.39999988]\n", + " [ 574.39999984 2594.40000006]\n", + " [ 216.00000019 2594.39999995]\n", + " [2007.99999983 2236.00000022]\n", + " [1649.60000014 2235.99999995]\n", + " [1291.19999989 2236.00000002]\n", + " [ 932.80000032 2235.99999995]\n", + " [ 574.40000023 2235.99999997]\n", + " [ 216.00000006 2235.99999999]]\n", + "715 -0.60002171]\n", + " [ 0.46422488 -0.48431262 -0.74157707]\n", + " [ 0.48562849 -0.4683047 -0.7381434 ]\n", + " [ 0.50717666 -0.45170169 -0.73398734]\n", + " [ 0.52875681 -0.43454511 -0.72909998]\n", + " [ 0.55025857 -0.41688235 -0.7234809 ]\n", + " [ 0.57157666 -0.39876656 -0.71713691]\n", + " [ 0.59261215 -0.38025667 -0.71008148]\n", + " [ 0.61327282 -0.36141732 -0.70233465]\n", + " [ 0.51568896 -0.61158715 -0.60002171]\n", + " [ 0.53857278 -0.59630697 -0.59527922]\n", + " [ 0.56149396 -0.58023598 -0.58995825]\n", + " [ 0.58433429 -0.56341299 -0.58405415]\n", + " [ 0.60698333 -0.54588155 -0.5775678 ]\n", + " [ 0.62933654 -0.52769139 -0.57050619]\n", + " [ 0.65129367 -0.50889996 -0.5628831 ]\n", + " [ 0.67275852 -0.48957323 -0.55471977]\n", + " [ 0.61327282 -0.36141732 -0.70233465]\n", + " [ 0.62298303 -0.37998517 -0.68374222]\n", + " [ 0.63238744 -0.39861214 -0.66422473]\n", + " [ 0.64142004 -0.41720633 -0.64383166]\n", + " [ 0.65002225 -0.43568112 -0.6226179 ]\n", + " [ 0.65814212 -0.4539536 -0.60064555]\n", + " [ 0.66573397 -0.4719435 -0.57798582]\n", + " [ 0.67275852 -0.48957323 -0.55471977]\n", + " [ 0.46772015 -0.49246989 -0.73396953]\n", + " [ 0.47728716 -0.51551162 -0.7116493 ]\n", + " [ 0.48668921 -0.53836033 -0.68796931]\n", + " [ 0.49582161 -0.56084996 -0.6630296 ]\n", + " [ 0.50459169 -0.58282441 -0.63694814]\n", + " [ 0.51292186 -0.60413863 -0.60985874]\n", + " [ 0.47355937 -0.47747316 -0.74010871]\n", + " [ 0.49990441 -0.45744893 -0.73541557]\n", + " [ 0.52635462 -0.43657126 -0.72962755]\n", + " [ 0.55270564 -0.41492497 -0.72274044]\n", + " [ 0.5787638 -0.39260793 -0.71476673]\n", + " [ 0.60434974 -0.36973101 -0.70573392]\n", + " [ 0.52563171 -0.60496664 -0.59810256]\n", + " [ 0.55371839 -0.58570216 -0.59190279]\n", + " [ 0.58174287 -0.56528804 -0.58482875]\n", + " [ 0.60949866 -0.54380245 -0.57687978]\n", + " [ 0.6367931 -0.52133715 -0.56806878]\n", + " [ 0.66344326 -0.49800143 -0.55842423]\n", + " [ 0.61746935 -0.36956471 -0.69437276]\n", + " [ 0.62917257 -0.39237377 -0.67095805]\n", + " [ 0.64035017 -0.41517955 -0.64620244]\n", + " [ 0.65089124 -0.43782046 -0.62020468]\n", + " [ 0.66070012 -0.46014372 -0.59307934]\n", + " [ 0.66969534 -0.48200264 -0.5649616 ]\n", + " [ 0.46432456 -0.48432332 -0.74150767]\n", + " [ 0.46432456 -0.48432332 -0.74150767]\n", + " [ 0.67266305 -0.48958056 -0.55482907]\n", + " [ 0.67266305 -0.48958056 -0.55482907]\n", + " [ 0.4770194 -0.48563278 -0.73253894]\n", + " [ 0.50354045 -0.46563077 -0.72776026]\n", + " [ 0.53015368 -0.44475328 -0.72189446]\n", + " [ 0.55DEBUG:root:fitpix2pix: ccdpx: shape: (96, 2)\n", + "665267 -0.42308479 -0.71493851]\n", + " [ 0.58284311 -0.40072304 -0.7069052 ]\n", + " [ 0.60854536 -0.37777911 -0.69782196]\n", + " [ 0.48675408 -0.50871759 -0.71012455]\n", + " [ 0.51372893 -0.48879708 -0.70509574]\n", + " [ 0.54075847 -0.46794044 -0.69900788]\n", + " [ 0.56763328 -0.4462314 -0.69185981]\n", + " [ 0.59415868 -0.42376741 -0.68366413]\n", + " [ 0.62015483 -0.40066014 -0.6744475 ]\n", + " [ 0.4962987 -0.5316178 -0.68634548]\n", + " [ 0.52365529 -0.51180504 -0.68105854]\n", + " [ 0.55103119 -0.49099928 -0.67474761]\n", + " [ 0.57821686 -0.46928325 -0.66741178]\n", + " [ 0.60501846 -0.44675382 -0.65906273]\n", + " [ 0.63125589 -0.4235231 -0.64972624]\n", + " [ 0.50554653 -0.55416701 -0.66130298]\n", + " [ 0.53320965 -0.53448804 -0.65575147]\n", + " [ 0.56086132 -0.51376369 -0.64921602]\n", + " [ 0.58829319 -0.49207538 -0.64169536]\n", + " [ 0.61531229 -0.4695188 -0.6332005 ]\n", + " [ 0.6417379 -0.44620592 -0.62375696]\n", + " [ 0.51440426 -0.57620897 -0.63511533]\n", + " [ 0.54229831 -0.55668956 -0.62929269]\n", + " [ 0.57015567 -0.53607722 -0.62253011]\n", + " [ 0.59776922 -0.51445185 -0.6148262 ]\n", + " [ 0.62494651 -0.49190749 -0.60619212]\n", + " [ 0.6515058 -0.4685553 -0.5966541 ]\n", + " [ 0.52279419 -0.59759833 -0.6079165 ]\n", + " [ 0.55084388 -0.5782632 -0.60181616]\n", + " [ 0.57883711 -0.55779241 -0.5948237 ]\n", + " [ 0.60656739 -0.53626449 -0.58693815]\n", + " [ 0.63384217 -0.51377174 -0.57817186]\n", + " [ 0.66047881 -0.490424 -0.56855259]]\n", + "DEBUG:root:fitpix2pix: visCut: True\n", + "DEBUG:root:radec2pix: curVec Shape: (96, 3)\n", + "DEBUG:root:radec2pix: xyfp: [[ -0.172993 31.426621 ]\n", + " [ -0.172993 27.04019243]\n", + " [ -0.172993 22.65376385]\n", + " [ -0.172993 18.26733528]\n", + " [ -0.172993 13.88090671]\n", + " [ -0.172993 9.49447814]\n", + " [ -0.172993 5.10804957]\n", + " [ -0.172993 0.721621 ]\n", + " [ -0.172993 31.426621 ]\n", + " [ -4.55942157 31.426621 ]\n", + " [ -8.94585014 31.426621 ]\n", + " [-13.33227871 31.426621 ]\n", + " [-17.71870729 31.426621 ]\n", + " [-22.10513586 31.426621 ]\n", + " [-26.49156443 31.426621 ]\n", + " [-30.877993 31.426621 ]\n", + " [ -0.172993 0.721621 ]\n", + " [ -4.55942157 0.721621 ]\n", + " [ -8.94585014 0.721621 ]\n", + " [-13.33227872 DEBUG:root:optics_fp: rtanth: [45.0390902 42.09683712 39.42396804 37.07878541 35.12698266 33.63710755\n", + " 32.6724136 32.28002056 45.0390902 42.00763364 39.23320577 36.77402747\n", + " 34.69719395 33.07480842 31.97611838 31.45604637 32.28002056 27.89482687\n", + " 23.51009392 19.1261386 14.74365456 10.36450837 5.99601772 1.72131774\n", + " 31.45604637 27.07594694 22.69829207 18.32483384 13.95951711 9.61343916\n", + " 5.33383708 1.72131774 43.71543665 40.28285706 37.31193504 34.92069834\n", + " 33.23450917 32.36375719 43.67830098 40.1281473 37.02087501 34.47644006\n", + " 32.62678968 31.59418683 30.3683705 24.99424245 19.62114004 14.2502235\n", + " 8.88545749 3.55479843 29.54687443 24.18030108 18.81910954 13.46972753\n", + " 8.15542687 3.06450112 45.0178789 45.0178789 1.74119478 1.74119478\n", + " 42.33466612 38.66132674 35.42562866 32.75751668 30.80482728 29.70896533\n", + " 38.78006096 34.73279944 31.09090442 28.01292685 25.70226752 24.37810068\n", + " 35.68424094 31.23842634 27.13146257 23.54136773 20.73833358 19.07259071\n", + " 33.17589074 28.339265DEBUG:root:cartToSphere: vec: [[-0.20607518 -0.20019593 0.95783851]\n", + " [-0.20787446 -0.17367087 0.96261448]\n", + " [-0.20940354 -0.14646307 0.96679818]\n", + " [-0.21066179 -0.11868235 0.97032784]\n", + " [-0.21164814 -0.09043873 0.97315256]\n", + " [-0.21236112 -0.0618427 0.9752324 ]\n", + " [-0.21279916 -0.03300558 0.97653835]\n", + " [-0.21296107 -0.0040396 0.97705233]\n", + " [-0.20607518 -0.20019593 0.95783851]\n", + " [-0.17964954 -0.20202839 0.96276195]\n", + " [-0.15251864 -0.20359907 0.96710159]\n", + " [-0.12479221 -0.20490731 0.97079344]\n", + " [-0.09658011 -0.20595196 0.97378441]\n", + " [-0.06799262 -0.20673135 0.97603235]\n", + " [-0.03914089 -0.20724368 0.97750603]\n", + " [-0.01013708 -0.20748743 0.97818516]\n", + " [-0.21296107 -0.0040396 0.97705233]\n", + " [-0.18561075 -0.00409191 0.98261483]\n", + " [-0.15755214 -0.0041395 0.98750199]\n", + " [-0.12888979 -0.00418225 0.99165011]\n", + " [-0.09972928 -0.00421998 0.99500566]\n", + " [-0.07017922 -0.00425248 0.99752533]\n", + " [-0.04035219 -0.00427955 0.99917635]\n", + " [-0.01036463 -0.00430103 0.99993704]\n", + " [-0.01013708 -0.20748743 0.97818DEBUG:root:radec2pix: xyfp: [[32.2358199 31.31614388]\n", + " [32.23338667 26.92971599]\n", + " [32.23095344 22.54328809]\n", + " [32.2285202 18.15686019]\n", + " [32.22608698 13.7704323 ]\n", + " [32.22365375 9.3840044 ]\n", + " [32.22122051 4.99757651]\n", + " [32.21878728 0.61114861]\n", + " [32.2358199 31.31614388]\n", + " [27.849392 31.31857712]\n", + " [23.46296411 31.32101035]\n", + " [19.07653621 31.32344358]\n", + " [14.69010831 31.3258768 ]\n", + " [10.30368042 31.32831004]\n", + " [ 5.91725252 31.33074327]\n", + " [ 1.53082462 31.3331765 ]\n", + " [32.21878728 0.61114861]\n", + " [27.83235938 0.61358184]\n", + " [23.44593149 0.61601507]\n", + " [19.0595036 0.6184483 ]\n", + " [14.6730757 0.62088153]\n", + " [10.2866478 0.62331476]\n", + " [ 5.90021991 0.625748 ]\n", + " [ 1.513792 0.62818122]\n", + " [ 1.53082462 31.3331765 ]\n", + " [ 1.52839139 26.94674861]\n", + " [ 1.52595816 22.5603207 ]\n", + " [ 1.52352493 18.17389281]\n", + " [ 1.5210917 13.78746492]\n", + " [ 1.51865847 9.40103702]\n", + " [ 1.51622524 5.01460912]\n", + " [ 1.513792 0.62818122]\n", + " [32.219759 29.4036525 ]\n", + " [32.21677684 24.02765333]\n", + " [32.21379467 18.65165415]\n", + " [32.21081251 13.27565498]\n", + "DEBUG:root:radec2pix: camVec: [[-0.20650899 -0.20834684 -0.209912 -0.2112049 -0.21222492 -0.21297066\n", + " -0.21344048 -0.21363303 -0.20650899 -0.18010636 -0.15299311 -0.12528058\n", + " -0.09707928 -0.06849975 -0.03965325 -0.01065205 -0.21363303 -0.1862962\n", + " -0.15824793 -0.12959237 -0.10043485 -0.07088401 -0.04105265 -0.01105755\n", + " -0.01065205 -0.01075054 -0.01083605 -0.01090831 -0.01096697 -0.01101162\n", + " -0.0110419 -0.01105755 -0.20725456 -0.20932255 -0.21098167 -0.21223121\n", + " -0.21306867 -0.2134911 -0.19509826 -0.16224603 -0.12843717 -0.09387541\n", + " -0.05876435 -0.02330924 -0.20180806 -0.16781243 -0.13285166 -0.09711907\n", + " -0.06081473 -0.02414801 -0.01079628 -0.01090926 -0.01100231 -0.01107479\n", + " -0.01112598 -0.01115523 -0.20642679 -0.20642679 -0.01116024 -0.01116024\n", + " -0.19587779 -0.16288944 -0.12894461 -0.09424616 -0.05899718 -0.02340304\n", + " -0.19782623 -0.16450046 -0.13021766 -0.09517804 -0.05958347 -0.0236399\n", + " -0.19939086 -0.16579789 -0.13124607 -0.09593306 -0.06005988 -0.02383341\n", + " -0.20057 0.721621 ]\n", + " [-17.71870728 0.721621 ]\n", + " [-22.10513586 0.721621 ]\n", + " [-26.49156443 0.721621 ]\n", + " [-30.877993 0.721621 ]\n", + " [-30.877993 31.426621 ]\n", + " [-30.877993 27.04019243]\n", + " [-30.877993 22.65376385]\n", + " [-30.877993 18.26733529]\n", + " [-30.877993 13.88090671]\n", + " [-30.877993 9.49447814]\n", + " [-30.877993 5.10804957]\n", + " [-30.877993 0.721621 ]\n", + " [ -0.187993 29.514121 ]\n", + " [ -0.187993 24.138121 ]\n", + " [ -0.187993 18.76212101]\n", + " [ -0.187993 13.386121 ]\n", + " [ -0.187993 8.010121 ]\n", + " [ -0.187993 2.634121 ]\n", + " [ -2.085493 31.411621 ]\n", + " [ -7.461493 31.411621 ]\n", + " [-12.837493 31.411621 ]\n", + " [-18.213493 31.411621 ]\n", + " [-23.589493 31.411621 ]\n", + " [-28.965493 31.411621 ]\n", + " [ -2.085493 0.736621 ]\n", + " [ -7.461493 0.736621 ]\n", + " [-12.837493 0.736621 ]\n", + " [-18.213493 0.736621 ]\n", + " [-23.58949299 0.736621 ]\n", + " [-28.965493 0.736621 ]\n", + " [-30.862993 29.514121 ]\n", + " [-30.862993 24.138121 ]\n", + " [-30.862993 18.762121 ]\n", + " [-30.862993 13.386121 ]\n", + " [-30.862993 8.010121 ]\n", + " [-30.862993 2.634121 ]\n", + " [ -0.187993 31.411621 ]\n", + " [ -0.187993 31.411621 ]\n", + " [-30.862993 0.736621 ]\n", + " [-30.862993 0.736621 ]\n", + " [ -2.085493 29.514121 ]\n", + " [ -7.461493 29.514121 ]\n", + " [-12.837493 29.514121 ]\n", + " [-18.213493 29.514121 ]\n", + " [-23.589493 29.514121 ]\n", + " [-28.965493 29.514121 ]\n", + " [ -2.085493 24.138121 ]\n", + " [ -7.461493 24.138121 ]\n", + " [-12.837493 24.138121 ]\n", + " [-18.213493 24.138121 ]\n", + " [-23.589493 24.138121 ]\n", + " [-28.965493 24.138121 ]\n", + " [ -2.085493 18.762121 ]\n", + " [ -7.461493 18.762121 ]\n", + " [-12.837493 18.762121 ]\n", + " [-18.213493 18.762121 ]\n", + " [-23.589493 18.762121 ]\n", + " [-28.965493 18.762121 ]\n", + " [ -2.085493 13.386121 ]\n", + " [ -7.461493 13.386121 ]\n", + " [-12.837493 13.386121 ]\n", + " [-18.213493 13.386121 ]\n", + " [-23.589493 13.386121 ]\n", + " [-28.965493 13.386121 ]\n", + " [ -2.085493 8.010121 ]\n", + " [ -7.461493 8.010121 ]\n", + " [-12.837493 8.010121 ]\n", + " [-18.213493 8.010121 ]\n", + " [-23.589493 516]\n", + " [-0.01020871 -0.17998755 0.98361591]\n", + " [-0.01026764 -0.15180051 0.98835782]\n", + " [-0.01031373 -0.12303089 0.99234925]\n", + " [-0.01034674 -0.0937848 0.99553873]\n", + " [-0.01036638 -0.06417157 0.99788504]\n", + " [-0.0103724 -0.03430461 0.9993576 ]\n", + " [-0.01036463 -0.00430103 0.99993704]\n", + " [-0.20680345 -0.18872819 0.96000729]\n", + " [-0.20882603 -0.15574492 0.96547149]\n", + " [-0.21044235 -0.12184525 0.96998338]\n", + " [-0.21165063 -0.0872316 0.97344474]\n", + " [-0.2124482 -0.05210744 0.97578203]\n", + " [-0.2128323 -0.0166781 0.97694639]\n", + " [-0.19465346 -0.20093724 0.96006992]\n", + " [-0.16177694 -0.20300612 0.96572084]\n", + " [-0.12795009 -0.20468137 0.97042996]\n", + " [-0.0933751 -0.20596106 0.97409503]\n", + " [-0.05825505 -0.20684219 0.97663845]\n", + " [-0.022795 -0.20732153 0.97800724]\n", + " [-0.20112996 -0.00416252 0.97955572]\n", + " [-0.16711987 -0.00422448 0.98592753]\n", + " [-0.13214975 -0.00427905 0.99122053]\n", + " [-0.09641349 -0.00432591 0.99533197]\n", + " [-0.0601111 -0.00436469 0.99818215]\n", + " [-0.02345151 -0.00439503 0.99971531]\n", + " [-0.01026957 -0.19558822 0.98063234]\n", + " [-0.0103498 -0.16140908 0.98683331]\n", + " [-0.01041065 -0.12630166 0.99193725]\n", + " [-0.01045169 -0.09046055 0.99584519]\n", + " [-0.01047241 -0.05408714 0.9984813 ]\n", + " [-0.01047238 -0.0173918 0.99979391]\n", + " [-0.20599275 -0.20011322 0.95787352]\n", + " [-0.20599275 -0.20011322 0.95787352]\n", + " [-0.01046737 -0.00440367 0.99993552]\n", + " [-0.01046737 -0.00440367 0.99993552]\n", + " [-0.19541667 -0.18950334 0.9622374 ]\n", + " [-0.16240545 -0.19145029 0.96797276]\n", + " [-0.12844349 -0.19302803 0.97274994]\n", + " [-0.09373247 -0.19423441 0.9764667 ]\n", + " [-0.05847519 -0.195066 0.97904541]\n", + " [-0.02287686 -0.19551916 0.98043302]\n", + " [-0.19732118 -0.15638145 0.96778572]\n", + " [-0.16397526 -0.15798254 0.97373181]\n", + " [-0.12967711 -0.1592836 0.978679 ]\n", + " [-0.09462661 -0.16028164 0.98252511]\n", + " [-0.05902568 -0.16097217 0.98519233]\n", + " [-0.02308015 -0.16135064 0.98662722]\n", + " [-0.19884383 -0.12234264 0.97236485]\n", + " [-0.16523235 -0.1235961 0.97847957]\n", + " [-0.13066656 -0.12461804 0.98356321]\n", + " [-0.09534433 -0.12540495 0.98751357]\n", + " [-0.0 8.010121 ]\n", + " [-28.965493 8.010121 ]\n", + " [ -2.085493 2.634121 ]\n", + " [ -7.461493 2.634121 ]\n", + " [-12.837493 2.634121 ]\n", + " [-18.213493 2.634121 ]\n", + " [-23.589493 2.634121 ]\n", + " [-28.965493 2.634121 ]]\n", + "DEBUG:root:radec2pix: camVec: [[-0.20605921 -0.20787315 -0.20942436 -0.21070676 -0.21171698 -0.21245291\n", + " -0.21291301 -0.2130962 -0.20605921 -0.17962884 -0.15250018 -0.12477652\n", + " -0.0965659 -0.06797863 -0.03912632 -0.01012153 -0.2130962 -0.18573503\n", + " -0.15766321 -0.1289874 -0.09981355 -0.07024926 -0.04040619 -0.01040084\n", + " -0.01012153 -0.01020027 -0.01026637 -0.01031977 -0.01036027 -0.01038751\n", + " -0.01040113 -0.01040084 -0.20679239 -0.20883895 -0.21048459 -0.2117221\n", + " -0.21254753 -0.21295821 -0.1946339 -0.16175754 -0.12793421 -0.09336102\n", + " -0.05824097 -0.02277993 -0.20126076 -0.16723544 -0.13224882 -0.09649617\n", + " -0.06017591 -0.02349561 -0.01025713 -0.01034611 -0.01041588 -0.01046611\n", + " -0.01049618 -0.01050541 -0.20597676 -0.20597676 -0.01050361 -0.01050361\n", + " -0.1954040 [32.20783035 7.89965581]\n", + " [32.20484818 2.52365664]\n", + " [30.32331188 31.30220479]\n", + " [24.9473127 31.30518695]\n", + " [19.57131353 31.30816912]\n", + " [14.19531435 31.31115127]\n", + " [ 8.81931518 31.31413344]\n", + " [ 3.44331601 31.3171156 ]\n", + " [30.3062959 0.62720951]\n", + " [24.93029672 0.63019167]\n", + " [19.55429755 0.63317383]\n", + " [14.17829838 0.636156 ]\n", + " [ 8.80229921 0.63913816]\n", + " [ 3.42630004 0.64212033]\n", + " [ 1.54476372 29.42066847]\n", + " [ 1.54178156 24.0446693 ]\n", + " [ 1.53879939 18.66867013]\n", + " [ 1.53581723 13.29267096]\n", + " [ 1.53283507 7.91667178]\n", + " [ 1.5298529 2.54067261]\n", + " [32.22081158 31.30115221]\n", + " [32.22081158 31.30115221]\n", + " [ 1.52880032 0.6431729 ]\n", + " [ 1.52880032 0.6431729 ]\n", + " [30.32225929 29.40470508]\n", + " [24.94626012 29.40768724]\n", + " [19.57026095 29.41066941]\n", + " [14.19426178 29.41365157]\n", + " [ 8.8182626 29.41663373]\n", + " [ 3.44226343 29.4196159 ]\n", + " [30.31927713 24.02870591]\n", + " [24.94327796 24.03168807]\n", + " [19.56727878 24.03467023]\n", + " [14.19127961 24.0376524 ]\n", + " [ 8.81528044 24.04063456]\n", + " [ 3.43928127 24.04361672]\n", + " [30.31629496 18.65270673]\n", + " 5946678 -0.1259519 0.9902524 ]\n", + " [-0.02324061 -0.1262541 0.99172566]\n", + " [-0.19998259 -0.08758892 0.9758766 ]\n", + " [-0.16617376 -0.08849133 0.9821179 ]\n", + " [-0.13140827 -0.08922984 0.98730436]\n", + " [-0.09588212 -0.08980108 0.99133364]\n", + " [-0.05979589 -0.09020062 0.9941269 ]\n", + " [-0.0233572 -0.09042422 0.9956294 ]\n", + " [-0.20073433 -0.05232353 0.9782474 ]\n", + " [-0.16679525 -0.0528708 0.98457302]\n", + " [-0.13189744 -0.053321 0.98982824]\n", + " [-0.09623556 -0.05367171 0.99391049]\n", + " [-0.06000982 -0.05391982 0.99674043]\n", + " [-0.02342863 -0.0540624 0.99826267]\n", + " [-0.20109591 -0.016752 0.97942831]\n", + " [-0.16709274 -0.01694088 0.98579563]\n", + " [-0.13212968 -0.01709901 0.99108495]\n", + " [-0.09640067 -0.01722548 0.99519355]\n", + " [-0.06010576 -0.01731915 0.99804176]\n", + " [-0.0234538 -0.01737894 0.99957386]]\n", + "3 -0.16239488 -0.12843557 -0.09372478 -0.05846599 -0.02286533\n", + " -0.19733483 -0.16399068 -0.1296908 -0.094636 -0.05902974 -0.02307851\n", + " -0.19888634 -0.16527244 -0.13070023 -0.09537003 -0.05948408 -0.02324907\n", + " -0.20005292 -035 -0.16677881 -0.13202594 -0.09650734 -0.06042346 -0.02398226\n", + " -0.20136156 -0.16743861 -0.13255205 -0.09689601 -0.0606707 -0.02408492\n", + " -0.20176105 -0.16777281 -0.13281959 -0.09709479 -0.06079851 -0.02414006]\n", + " [-0.20112017 -0.17462343 -0.14743759 -0.11967398 -0.09144325 -0.06285614\n", + " -0.0340241 -0.00505944 -0.20112017 -0.20295163 -0.20451753 -0.20581845\n", + " -0.20685386 -0.20762236 -0.2081222 -0.20835189 -0.00505944 -0.0050993\n", + " -0.00513287 -0.00516008 -0.00518078 -0.00519482 -0.00520206 -0.00520239\n", + " -0.20835189 -0.18087002 -0.15269708 -0.12393724 -0.09469638 -0.06508391\n", + " -0.03521344 -0.00520239 -0.18966571 -0.15671259 -0.12283514 -0.0882373\n", + " -0.053123 -0.01769778 -0.20186172 -0.20392662 -0.20559352 -0.20686189\n", + " -0.20772922 -0.20819238 -0.00517714 -0.00522278 -0.00525872 -0.00528472\n", + " -0.0053005 -0.00530579 -0.19646103 -0.1623014 -0.12720719 -0.09137251\n", + " -0.05499882 -0.01829695 -0.20103758 -0.20103758 -0.00530513 -0.00530513\n", + " -0.19044022 -0.19238166 -0.19395017 -0.19514465[24.9402958 18.6556889 ]\n", + " [19.56429662 18.65867106]\n", + " [14.18829744 18.66165322]\n", + " [ 8.81229827 18.66463538]\n", + " [ 3.4362991 18.66761755]\n", + " [30.31331281 13.27670756]\n", + " [24.93731363 13.27968972]\n", + " [19.56131446 13.28267189]\n", + " [14.18531529 13.28565406]\n", + " [ 8.80931611 13.28863621]\n", + " [ 3.43331694 13.29161838]\n", + " [30.31033064 7.90070839]\n", + " [24.93433147 7.90369055]\n", + " [19.55833229 7.90667271]\n", + " [14.18233312 7.90965488]\n", + " [ 8.80633395 7.91263704]\n", + " [ 3.43033477 7.9156192 ]\n", + " [30.30734847 2.52470921]\n", + " [24.9313493 2.52769138]\n", + " [19.55535013 2.53067354]\n", + " [14.17935096 2.53365571]\n", + " [ 8.80335178 2.53663787]\n", + " [ 3.42735261 2.53962004]]\n", + " -0.19596195 -0.19639843\n", + " -0.15734701 -0.15893973 -0.16022981 -0.16121459 -0.16188952 -0.16224993\n", + " -0.12332956 -0.12457282 -0.12558234 -0.12635458 -0.12688447 -0.12716713\n", + " -0.08859098 -0.08948154 -0.09020602 -0.09076095 -0.09114176 -0.09134421\n", + " -0.05333481 -0.05386844 -0.05430277 -0.0546353 -0.05486289 -0.05498267\n", + " -0.01776673 -0.01794001 -0.01808024 -0.01818657 -0.01825788 -0.01829321]\n", + " [ 0.95755142 0.96233999 0.96653976 0.97008795 0.97293305 0.97503467\n", + " 0.97636342 0.97690088 0.95755142 0.96248238 0.96683281 0.97053776\n", + " 0.97354358 0.97580774 0.97729871 0.97799592 0.97690088 0.98248039\n", + " 0.98738607 0.99155393 0.99493015 0.99747104 0.99914344 0.99992533\n", + " 0.97799592 0.98344825 0.98821363 0.9922301 0.99544579 0.99781904\n", + " 0.99931881 0.99992533 0.9597252 0.96520735 0.96974134 0.97322767\n", + " 0.97559197 0.97678469 0.95978566 0.96544816 0.97017277 0.97385603\n", + " 0.97641964 0.97781011 0.97941141 0.98580511 0.99112198 0.99525874\n", + " 0.998135 0.99969431 0.98045219 0.98668092 0.99181514 0.9957552\n", + " 0.99842443 0.99977036 0.95758648 0.95758648 0.99992365 0.99992365\n", + " 0.96195864 0.96770674 0.97250019 0.97623574 0.97883515 0.98024484\n", + " 0.96752607 0.97348742 0.97845274 0.98231919 0.98500842 0.98646648\n", + " 0.97212813 0.97826002 0.98336338 0.98733549 0.99009754 0.99159492\n", + " 0.9756655 0.9819256 0.98713324 0.99118554 0.99400311 0.99553056\n", + " 0.97806386 0.98440972 0.98968741 0.99379381 0.99664895 0.99819679\n", + " 0.97927362 0.98566244 0.99097531 0.99510896 0.99798306 0.9995412 ]]\n", + "DEBUG:root:radec2pix: xyfp: [[ -0.167405 31.491388 ]\n", + " [ -0.167405 27.10495943]\n", + " [ -0.167405 22.71853086]\n", + " [ -0.167405 18.33210229]\n", + " [ -0.167405 13.94567372]\n", + " [ -0.167405 9.55924515]\n", + " [ -0.167405 5.17281657]\n", + " [ -0.167405 0.786388 ]\n", + " [ -0.167405 31.491388 ]\n", + " [ -4.55383357 31.491388 ]\n", + " [ -8.94026214 31.491388 ]\n", + " [-13.32669071 31.491388 ]\n", + " [-17.71311928 31.491388 ]\n", + " [-22.09954786 31.491388 ]\n", + " [-26.48597643 31.491388 ]\n", + " [-30.872405 31.491388 ]\n", + " [ -0.167405 0.786388 ]\n", + " [ -4.55383357 0.786388 ]\n", + " [ -8.94026214 0.786388 ]\n", + " [-13.32669071 0.786388 ]\n", + " [-17.71311929 0.786388 ]\n", + " [-22.09954786 0.786388 ]\n", + " [-26.48597643 0.786388 ]\n", + " [-30.872405 0.786388 ]\n", + " [-30.872405 31.491388 ]\n", + " [-30.872405 27.10495943]\n", + " [-30.872405 27 23.73585762 19.53127415 16.04223037 13.82166388\n", + " 31.39613279 26.23340206 21.17707168 16.3263008 11.93442847 8.72443809\n", + " 30.47289508 25.12113778 19.7825313 14.471637 9.23638255 4.35844005]\n", + "DEBUG:root:radec2pix: camVec Shape: (3, 96)\n", + "DEBUG:root:radec2pix: lng: [224.17091663 219.87741809 214.97008665 209.39598188 203.1373574\n", + " 196.23634076 188.81644128 181.08669631 224.17091663 228.3555716\n", + " 233.16265584 238.65783928 244.87601329 251.7942959 259.30486084\n", + " 267.20296141 181.08669631 181.26291687 181.50503492 181.85849799\n", + " 182.42298774 183.46757199 186.05387592 202.53707914 267.20296141\n", + " 266.75372148 266.13046308 265.20807536 263.70434622 260.82362196\n", + " 253.17669924 202.53707914 222.38348083 216.71601144 210.07066421\n", + " 202.39896016 193.78096287 184.48069147 225.9100405 231.44842444\n", + " 237.98973756 245.61222365 254.27065244 263.72553361 181.18560606\n", + " 181.44802269 181.85460599 182.56904059 184.15297918 190.61463228\n", + " 266.99438373 266.33112836 265.28794249 263.40934603 259.04191913\n", + " 238.94DEBUG:root:radec2pix: xyfp Shape: (96, 2)\n", + "596845 224.17054014 224.17054014 202.81670057 202.81670057\n", + " 224.11986404 229.69237658 236.35966367 244.23925438 253.312778\n", + " 263.32641007 218.39761245 223.93365474 230.85002743 239.44337044\n", + " 249.86289594 261.85943825 211.60273873 216.79700073 223.64273186\n", + " 232.75457852 244.72618682 259.56986466 203.65258863 208.03632189\n", + " 214.17758593 223.12426077 236.4587659 255.51668541 194.60966243\n", + " 197.58758667 202.01156736 209.14892478 221.94021993 246.56988658\n", + " 184.76194605 185.78921163 187.37371211 190.13104958 196.0740482\n", + " 216.53792504]\n", + "DEBUG:root:radec2pix: ccdpx: [[-4.45000000e+01 -4.99999902e-01]\n", + " [-4.45000000e+01 2.91928572e+02]\n", + " [-4.45000000e+01 5.84357143e+02]\n", + " [-4.45000000e+01 8.76785715e+02]\n", + " [-4.45000000e+01 1.16921429e+03]\n", + " [-4.45000000e+01 1.46164286e+03]\n", + " [-4.45000000e+01 1.75407143e+03]\n", + " [-4.45000001e+01 2.04650000e+03]\n", + " [-4.45000000e+01 -4.99999902e-01]\n", + " [ 2.47928571e+02 -4.99999902e-01]\n", + " [ 5.40357143e+02 -4.99999727e-01]\n", + " [ 8.32785714e+02 -5.00000071e-01]\n", + " [ 1.12521429e+03 -5.00000281e-01]\n", + " [ 1.41764286e+03 -4.99999968e-01]\n", + " [ 1.71007143e+03 -5.00000211e-01]\n", + " [ 2.00250000e+03 -5.00000200e-01]\n", + " [-4.45000001e+01 2.04650000e+03]\n", + " [ 2.47928571e+02 2.04650000e+03]\n", + " [ 5.40357143e+02 2.04650000e+03]\n", + " [ 8.32785714e+02 2.04650000e+03]\n", + " [ 1.12521429e+03 2.04650000e+03]\n", + " [ 1.41764286e+03 2.04650000e+03]\n", + " [ 1.71007143e+03 2.04650000e+03]\n", + " [ 2.00250000e+03 2.04650000e+03]\n", + " [ 2.00250000e+03 -5.00000200e-01]\n", + " [ 2.00250000e+03 2.91928571e+02]\n", + " [ 2.00250000e+03 5.84357143e+02]\n", + " [ 2.00250000e+03 8.76785714e+02]\n", + " [ 2.00250000e+03 1.16921429e+03]\n", + " [ 2.00250000e+03 1.46164286e+03]\n", + " [ 2.00250000e+03 1.75407143e+03]\n", + " [ 2.00250000e+03 2.04650000e+03]\n", + " [-4.35000000e+01 1.27000000e+02]\n", + " [-4.35000000e+01 4.85400000e+02]\n", + " [-4.35000000e+01 8.43800000e+02]\n", + " [-4.35000000e+01 1.20220000e+03]\n", + " [-4.35000000e+01 1.56060000e+03]\n", + " [-4.35000000e+01 1.91900000e+03]\n", + " [ 8.30000000e+01 5.00000088e-01]\n", + " [ 4.41400000e+02 5.00000229e-DEBUG:root:optics_fp: cphi: [-0.71661052 -0.76668522 -0.81865324 -0.87041945 -0.91877042 -0.95945138\n", + " -0.98776621 -0.99975905 -0.71661052 -0.66390451 -0.59904941 -0.51982885\n", + " -0.42452343 -0.31272572 -0.18629262 -0.04992637 -0.99975905 -0.9996769\n", + " -0.99954452 -0.99931081 -0.99883841 -0.997645 -0.9929376 -0.91049017\n", + " -0.04992637 -0.05798589 -0.06914879 -0.08562676 -0.11237014 -0.16312264\n", + " -0.29391715 -0.91049017 -0.73796092 -0.80082989 -0.86457988 -0.92376676\n", + " -0.97061799 -0.99671508 -0.69515031 -0.62267974 -0.52972774 -0.41289021\n", + " -0.27152486 -0.11024131 -0.99971595 -0.99957998 -0.99931728 -0.99870324\n", + " -0.99665599 -0.97888657 -0.05365319 -0.06553749 -0.08417765 -0.1175659\n", + " -0.19410544 -0.51637928 -0.71661494 -0.71661494 -0.90871193 -0.90871193\n", + " -0.71720854 -0.64629919 -0.55357618 -0.43455016 -0.28757779 -0.11723007\n", + " -0.78293369 -0.71938388 -0.63073804 -0.50813028 -0.34464727 -0.14284199\n", + " -0.85084193 -0.79983697 -0.72276415 -0.60462283 -0.42711476 -0.18254722\n", + " -0.91515494 -0.88164179 DEBUG:root:radec2pix: lat: [73.30319327 74.28364829 75.19434757 76.00760673 76.6934474 77.22149469\n", + " 77.56431546 77.70181842 73.30319327 74.31487163 75.26252869 76.11836609\n", + " 76.85166299 77.43039612 77.8244634 78.01035447 77.70181842 79.30062777\n", + " 80.93200296 82.59063863 84.2712796 85.96832552 87.67438557 89.35703566\n", + " 78.01035447 79.61411514 81.24861046 82.90802789 84.58587071 86.27294722\n", + " 87.94616945 89.35703566 73.74128804 74.89975016 75.92621516 76.76637844\n", + " 77.36466213 77.67335289 73.7541097 74.95468773 76.03182731 76.93013306\n", + " 77.59097642 77.96138218 78.39443735 80.37649363 82.40216048 84.46173597\n", + " 86.54472647 88.63280521 78.70517127 80.69206097 82.71932817 84.7752745\n", + " 86.84188191 88.83673743 73.31017726 73.31017726 89.34933673 89.34933673\n", + " 74.20408349 75.46003419 76.59358943 77.54526674 78.24998117 78.64701061\n", + " 75.41740928 76.83842002 78.14733268 79.2729755 80.12769991 80.61933545\n", + " 76.49875662 78.09183026 79.59737911 80.93621381 81.99355302 82.62428133\n", + " 77.38945666 79.14833894 01]\n", + " [ 7.99800000e+02 4.99999876e-01]\n", + " [ 1.15820000e+03 5.00000139e-01]\n", + " [ 1.51660000e+03 5.00000172e-01]\n", + " [ 1.87500000e+03 4.99999925e-01]\n", + " [ 8.30000002e+01 2.04550000e+03]\n", + " [ 4.41400000e+02 2.04550000e+03]\n", + " [ 7.99800000e+02 2.04550000e+03]\n", + " [ 1.15820000e+03 2.04550000e+03]\n", + " [ 1.51660000e+03 2.04550000e+03]\n", + " [ 1.87500000e+03 2.04550000e+03]\n", + " [ 2.00150000e+03 1.27000000e+02]\n", + " [ 2.00150000e+03 4.85400000e+02]\n", + " [ 2.00150000e+03 8.43800000e+02]\n", + " [ 2.00150000e+03 1.20220000e+03]\n", + " [ 2.00150000e+03 1.56060000e+03]\n", + " [ 2.00150000e+03 1.91900000e+03]\n", + " [-4.35000000e+01 5.00000166e-01]\n", + " [-4.35000000e+01 5.00000166e-01]\n", + " [ 2.00150000e+03 2.04550000e+03]\n", + " [ 2.00150000e+03 2.04550000e+03]\n", + " [ 8.30000000e+01 1.27000000e+02]\n", + " [ 4.41400000e+02 1.27000000e+02]\n", + " [ 7.99800000e+02 1.27000000e+02]\n", + " [ 1.15820000e+03 1.27000000e+02]\n", + " [ 1.51660000e+03 1.27000000e+02]\n", + " [ 1.87500000e+03 1.27000000e+02]\n", + " [ 8.30000000e+01 4.85400000e+02]\n", + " [ 4.41400000e+02 4.85400000e+02]\n", + " [ 7.99800000e+022.71853086]\n", + " [-30.872405 18.33210229]\n", + " [-30.872405 13.94567371]\n", + " [-30.872405 9.55924514]\n", + " [-30.872405 5.17281657]\n", + " [-30.872405 0.786388 ]\n", + " [ -0.182405 29.578888 ]\n", + " [ -0.182405 24.202888 ]\n", + " [ -0.182405 18.826888 ]\n", + " [ -0.182405 13.450888 ]\n", + " [ -0.182405 8.074888 ]\n", + " [ -0.182405 2.698888 ]\n", + " [ -2.079905 31.476388 ]\n", + " [ -7.455905 31.476388 ]\n", + " [-12.831905 31.476388 ]\n", + " [-18.207905 31.476388 ]\n", + " [-23.583905 31.476388 ]\n", + " [-28.959905 31.476388 ]\n", + " [ -2.079905 0.801388 ]\n", + " [ -7.455905 0.801388 ]\n", + " [-12.831905 0.801388 ]\n", + " [-18.207905 0.801388 ]\n", + " [-23.583905 0.801388 ]\n", + " [-28.959905 0.801388 ]\n", + " [-30.857405 29.578888 ]\n", + " [-30.857405 24.202888 ]\n", + " [-30.857405 18.826888 ]\n", + " [-30.857405 13.450888 ]\n", + " [-30.857405 8.074888 ]\n", + " [-30.857405 2.698888 ]\n", + " [ -0.182405 31.476388 ]\n", + " [ -0.182405 31.476388 ]\n", + " [-30.857405 0.801388 ]\n", + " [-30.857405 0.801388 ]\n", + " [ -2.079905 29.578888 ]\n", + " -0.82613743 -0.72873282 -0.5521103 -0.25185684\n", + " -0.9670144 -0.95239316 -0.92593126 -0.87175367 -0.74209777 -0.39893833\n", + " -0.99629342 -0.99453874 -0.99117471 -0.98343711 -0.95881096 -0.79843817]\n", + "2 4.85400000e+02]\n", + " [ 1.15820000e+03 4.85400000e+02]\n", + " [ 1.51660000e+03 4.85400000e+02]\n", + " [ 1.87500000e+03 4.85400000e+02]\n", + " [ 8.30000000e+01 8.43800000e+02]\n", + " [ 4.41400000e+02 8.43800000e+02]\n", + " [ 7.99800000e+02 8.43800000e+02]\n", + " [ 1.15820000e+03 8.43800000e+02]\n", + " [ 1.51660000e+03 8.43800000e+02]\n", + " [ 1.87500000e+03 8.43800000e+02]\n", + " [ 8.30000000e+01 1.20220000e+03]\n", + " [ 4.41400000e+02 1.20220000e+03]\n", + " [ 7.99800000e+02 1.20220000e+03]\n", + " [ 1.15820000e+03 1.20220000e+03]\n", + " [ 1.51660000e+03 1.20220000e+03]\n", + " [ 1.87500000e+03 1.20220000e+03]\n", + " [ 8.30000000e+01 1.56060000e+03]\n", + " [ 4.41400000e+02 1.56060000e+03]\n", + " [ 7.99800000e+02 1.56060000e+03]\n", + " [ 1.15820000e+03 1.56060000e+03]\n", + " [ 1.51660000e+03 1.56060000e+03]\n", + " [ 1.87500000e+03 1.56060000e+03]\n", + " [ 8.30000001e+01 1.91900000e+03]\n", + " [ 4.41400000e+0DEBUG:root:mm_to_pix: fitpx: [[0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]]\n", + "2 1.91900000e+03]\n", + " [ 7.99800000e+02 1.91900000e+03]\n", + " [ 1.15820000e+03 1.91900000e+03]\n", + " [ 1.51660000e+03DEBUG:root:mm_to_pix: fitpx.shape: (96, 2)\n", + "DEBUG:root:cartToSphere: vec: [[-0.20650899 -0.20112017 0.95755142]\n", + " [-0.20834684 -0.17462343 0.96233999]\n", + " [-0.209912 -0.14743759 0.96653976]\n", + " [-0.2112049 -0.11967398 0.97008795]\n", + " [-0.21222492 -0.09144325 0.97293305]\n", + " [-0.21297066 -0.06285614 0.97503467]\n", + " [-0.21344048 -0.0340241 0.97636342]\n", + " [-0.21363303 -0.00505944 0.97690088]\n", + " [-0.20650899 -0.20112017 0.95755142]\n", + " [-0.18010636 -0.20295163 0.96248238]\n", + " [-0.15299311 -0.20451753 0.96683281]\n", + " [-0.12528058 -0.20581845 0.97053776]\n", + " [-0.09707928 -0.20685386 0.97354358]\n", + " [-0.06849975 -0.20762236 0.97580774]\n", + " [-0.03965325 -0.2081222 0.97729871]\n", + " [-0.01065205 -0.20835189 0.97799592]\n", + " [-0.21363303 -0.00505944 0.97690088]\n", + " [-0.1862962 -0.0050993 0.98248039]\n", + " [-0.15824793 -0.00513287 0.98738607]\n", + " [-0.12959237 -0.00516008 0.99155393]\n", + " [-0.10043485 -0.00518078 0.99493015]\n", + " [-0.07088401 -0.00519482 0.99747104]\n", + " [-0.04105265 -0.00520206 0.99914344]\n", + " [-0.01105755 -0.00520239 0.99992533]\n", + " [-0.01065205 -0.20835189 0.97799592]\n", + " [-0.01075054 -0.18087002 0.98344825]\n", + " [-0.01083605 -0.15269708 0.98821363]\n", + " [-0.01090831 -0.12393724 0.9922301 ]\n", + " [-0.01096697 -0.09469638 0.99544579]\n", + " [-0.01101162 -0.06508391 0.99781904]\n", + " [-0.0110419 -0.03521344 0.99931881]\n", + " [-0.01105755 -0.00520239 0.99992533]\n", + " [-0.20725456 -0.18966571 0.9597252 ]\n", + " [-0.20932255 -0.15671259 0.96520735]\n", + " [-0.21098167 -0.12283514 0.96974134]\n", + " [-0.21223121 -0.0882373 0.97322767]\n", + " [-0.21306867 -0.053123 0.97559197]\n", + " [-0.2134911 -0.01769778 0.97678469]\n", + " [-0.19509826 -0.20186172 0.95978566]\n", + " [-0.16224603 -0.20392662 0.96544816]\n", + " [-0.12843717 -0.20559352 0.97017277]\n", + " [-0.09387541 -0.20686189 0.97385603]\n", + " [-0.05876435 -0.20772922 0.97641964]\n", + " [-0.02330924 -0.20819238 0.97781011]\n", + " [-0.20180806 -0.00517714 0.97941141]\n", + " [-0.16781243 -0.00522278 0.98580511]\n", + " [-0.13285166 -0.00525872 0.99112198]\n", + " [-0.09711907 -0.00528472 0.99525874]\n", + " [-0.06081473 -0.0053005 0.998135 ]\n", + " [-0.02414801 -0DEBUG:root:optics_fp: sphi: [-0.69747355 -0.64202319 -0.57428814 -0.49231086 -0.39479224 -0.28187416\n", + " -0.15594205 -0.02195087 -0.69747355 -0.74781736 -0.80071206 -0.85427043\n", + " -0.90541695 -0.94984347 -0.98249431 -0.9987529 -0.02195087 -0.02541825\n", + " -0.03017857 -0.03712011 -0.04818532 -0.06858898 -0.11863781 -0.41353071\n", + " -0.9987529 -0.9983174 -0.99760636 -0.99632728 -0.99366642 -0.9866058\n", + " -0.9558309 -0.41353071 -0.67484345 -0.59889188 -0.50249541 -0.38295557\n", + " -0.24062567 -0.080988 -0.71886442 -0.7824768 -0.84816774 -0.91078081\n", + " -0.96243143 -0.99390485 -0.02383323 -0.02898045 -0.03694547 -0.05091008\n", + " -0.08171193 -0.2044042 -0.99855963 -0.99785011 -0.99645076 -0.99306508\n", + " -0.98098067 -0.85635999 -0.69746902 -0.69746902 -0.41742381 -0.41742381\n", + " -0.6968586 -0.76308411 -0.83279855 -0.90064763 -0.95775728 -0.99310478\n", + " -0.62210517 -0.69461272 -0.77599583 -0.86128022 -0.93873226 -0.98974551\n", + " -0.52542175 -0.60021731 -0.69109478 -0.79651192 -0.90419742 -0.98319709\n", + " -0.40310226 -0.47191923.00530579 0.99969431]\n", + " [-0.01079628 -0.19646103 0.98045219]\n", + " [-0.01090926 -0.1623014 0.98668092]\n", + " [-0.01100231 -0.12720719 0.99181514]\n", + " [-0.01107479 -0.09137251 0.9957552 ]\n", + " [-0.01112598 -0.05499882 0.99842443]\n", + " [-0.01115523 -0.01829695 0.99977036]\n", + " [-0.20642679 -0.20103758 0.95758648]\n", + " [-0.20642679 -0.20103758 0.95758648]\n", + " [-0.01116024 -0.00530513 0.99992365]\n", + " [-0.01116024 -0.00530513 0.99992365]\n", + " [-0.19587779 -0.19044022 0.96195864]\n", + " [-0.16288944 -0.19238166 0.96770674]\n", + " [-0.12894461 -0.19395017 0.97250019]\n", + " [-0.09424616 -0.19514465 0.97623574]\n", + " [-0.05899718 -0.19596195 0.97883515]\n", + " [-0.02340304 -0.19639843 0.98024484]\n", + " [-0.19782623 -0.15734701 0.96752607]\n", + " [-0.16450046 -0.15893973 0.97348742]\n", + " [-0.13021766 -0.16022981 0.97845274]\n", + " [-0.09517804 -0.16121459 0.98231919]\n", + " [-0.05958347 -0.16188952 0.98500842]\n", + " [-0.0236399 -0.16224993 0.98646648]\n", + " [-0.19939086 -0.12332956 0.97212813]\n", + " [-0.16579789 -0.12457282 0.97826002]\n", + " [-0.13124607 -0.12558234 0.98336338]\n", + " [80.86043698 82.45133489 83.78724838 84.64121324\n", + " 78.02753384 79.92284226 81.82091734 83.6737055 85.37260957 86.62213831\n", + " 78.35820379 80.33138971 82.34363217 84.38015735 86.41373806 88.32724747]\n", + "[ -7.455905 29.578888 ]\n", + " [-12.831905 29.578888 ]\n", + " [-18.207905 29.578888 ]\n", + " [-23.583905 29.578888 ]\n", + " [-28.959905 29.578888 ]\n", + " [ -2.079905 24.202888 ]\n", + " [ -7.455905 24.202888 ]\n", + " [-12.831905 24.202888 ]\n", + " [-18.207905 24.202888 ]\n", + " [-23.583905 24.202888 ]\n", + " [-28.959905 24.202888 ]\n", + " [ -2.079905 18.826888 ]\n", + " [ -7.455905 18.826888 ]\n", + " [-12.831905 18.826888 ]\n", + " [-18.207905 18.826888 ]\n", + " [-23.583905 18.826888 ]\n", + " [-28.959905 18.826888 ]\n", + " [ -2.079905 13.450888 ]\n", + " [ -7.455905 13.450888 ]\n", + " [-12.831905 13.450888 ]\n", + " [-18.207905 13.450888 ]\n", + " [-23.583905 13.450888 ]\n", + " [-28.959905 13.450888 ]\n", + " [ -2.079905 8.074888 ]\n", + " [ -7.455905 8.074888 ]\n", + " [-12.831905 8.074888 ]\n", + " [-18.20790499 8.074888 ]\n", + " [-23.583905 8.0748 1.91900000e+03]\n", + " [ 1.87500000e+03 1.91900000e+03]]\n", + " -0.56346867 -0.68479813 -0.83377108 -0.9677645\n", + " -0.2547217 -0.30487255 -0.37769207 -0.48994442 -0.67029166 -0.91697776\n", + " -0.08601994 -0.10436806 -0.13256201 -0.18124971 -0.28404496 -0.60207682]\n", + "-0.09593306 -0.12635458 0.98733549]\n", + " [-0.06005988 -0.12688447 0.99009754]\n", + " [-0.02383341 -0.12716713 0.99159492]\n", + " [-0.20057035 -0.08859098 0.9756655 ]\n", + " [-0.16677881 -0.08948154 0.9819256 ]\n", + " [-0.13202594 -0.09020602 0.98713324]\n", + " [-0.09650734 -0.09076095 0.99118554]\n", + " [-0.06042346 -0.09114176 0.99400311]\n", + " [-0.02398226 -0.09134421 0.99553056]\n", + " [-0.20136156 -0.05333481 0.97806386]\n", + " [-0.16743861 -0.05386844 0.98440972]\n", + " [-0.13255205 -0.05430277 0.98968741]\n", + " [-0.09689601 -0.0546353 0.99379381]\n", + " [-0.0606707 -0.05486289 0.99664895]\n", + " [-0.02408492 -0.05498267 0.99819679]\n", + " [-0.20176105 -0.01776673 0.97927362]\n", + " [-0.16777281 -0.01794001 0.98566244]\n", + " [-0.13281959 -0.01808024 0.99097531]\n", + " [-0.09709479 -0.01818657 0.99510896]\n", + " [-0.06079851 -0.01825788 0.99798306]\n", + " [-0.02414006 -0.01829321 0.9995412 ]]\n", + "88 ]\n", + " [-28.959905 8.074888 ]\n", + " [ -2.079905 2.698888 ]\n", + " [ -7.455905 2.698888 ]\n", + " [-12.831905 2.698888 ]\n", + " [-18.207905 2.698888 ]\n", + " [-23.583905 2.698888 ]\n", + " [-28.959905 2.698888 ]]\n", + "0.16623701 -0.13146138 -0.09592455 -0.05982716 -0.0233762\n", + " -0.20083104 -0.16688094 -0.13197015 -0.09629527 -0.0600556 -0.02345845\n", + " -0.20121796 -0.16720058 -0.13222195 -0.09647752 -0.06016577 -0.02349426]\n", + " [-0.20169937 -0.17519485 -0.1480085 -0.12024402 -0.09200964 -0.06341581\n", + " -0.03457423 -0.00559748 -0.20169937 -0.20353396 -0.20511207 -0.20642749\n", + " -0.20747679 -0.20825778 -0.20876879 -0.20900854 -0.00559748 -0.00565735\n", + " -0.00571045 -0.00575671 -0.00579596 -0.00582797 -0.00585246 -0.00586919\n", + " -0.20900854 -0.18153487 -0.15336672 -0.12461057 -0.09537244 -0.06576046\n", + " -0.03588698 -0.00586919 -0.1902398 -0.15728353 -0.12340547 -0.08880315\n", + " -0.0536798 -0.01824146 -0.20244048 -0.20451655 -0.20620095 -0.2074863DEBUG:root:radec2pix: xyfp: [[32.2358199 31.31614388]\n", + " [32.23338667 26.92971599]\n", + " [32.23095344 22.54328809]\n", + " [32.2285202 18.15686019]\n", + " [32.22608698 13.7704323 ]\n", + " [32.22365375 9.3840044 ]\n", + " [32.22122051 4.99757651]\n", + " [32.21878728 0.61114861]\n", + " [32.2358199 31.31614388]\n", + " [27.849392 31.31857712]\n", + " [23.46296411 31.32101035]\n", + " [19.07653621 31.32344358]\n", + " [14.69010831 31.3258768 ]\n", + " [10.30368042 31.32831004]\n", + " [ 5.91725252 31.33074327]\n", + " [ 1.53082462 31.3331765 ]\n", + " [32.21878728 0.61114861]\n", + " [27.83235938 0.61358184]\n", + " [23.44593149 0.61601507]\n", + " [19.0595036 0.6184483 ]\n", + " [14.6730757 0.62088153]\n", + " [10.2866478 0.62331476]\n", + " [ 5.90021991 0.625748 ]\n", + " [ 1.513792 0.62818122]\n", + " [ 1.53082462 31.3331765 ]\n", + " [ 1.52839139 26.94674861]\n", + " [ 1.52595816 22.5603207 ]\n", + " [ 1.52352493 18.17389281]\n", + " [ 1.5210917 13.78746492]\n", + " [ 1.51865847 9.40103702]\n", + " [ 1.51622524 5.01460912]\n", + " [ 1.513792 0.62818122]\n", + " [32.219759 29.4036525 ]\n", + " [32.21677684 24.02765333]\n", + " [32.21379467 18.65165415]\n", + " [32.21081251 13.27565498]\n", + " [32.20783035 7.89965581]\n", + " [32.20484818 2.52365664]\n", + " [30.32331188 31.30220479]\n", + " [24.9473127 31.30518695]\n", + " [19.57131353 31.30816912]\n", + " [14.19531435 31.31115127]\n", + " [ 8.81931518 31.31413344]\n", + " [ 3.44331601 31.3171156 ]\n", + " [30.3062959 0.62720951]\n", + " [24.93029672 0.63019167]\n", + " [19.55429755 0.63317383]\n", + " [14.17829838 0.636156 ]\n", + " [ 8.80229921 0.63913816]\n", + " [ 3.42630004 0.64212033]\n", + " [ 1.54476372 29.42066847]\n", + " [ 1.54178156 24.0446693 ]\n", + " [ 1.53879939 18.66867013]\n", + " [ 1.53581723 13.29267096]\n", + " [ 1.53283507 7.91667178]\n", + " [ 1.5298529 2.54067261]\n", + " [32.22081158 31.30115221]\n", + " [32.22081158 31.30115221]\n", + " [ 1.52880032 0.6431729 ]\n", + " [ 1.52880032 0.6431729 ]\n", + " [30.32225929 29.40470508]\n", + " [24.94626012 29.40768724]\n", + " [19.57026095 29.41066941]\n", + " [14.19426178 29.41365157]\n", + " [ 8.8182626 29.41663373]\n", + " [ 3.44226343 29.4196159 ]\n", + " [30.31927713 24.02870591]\n", + " [24.94327796 24.03168807]\n", + " [19.56727878 24.03467023]\n", + " [14.19127961 24.0376524 ]\n", + " [ 8.81528044 24.04063456]\n", + " [ 3.43928127 24.04361672]\n", + " [30.31629496 18.65270673]\n", + " [24.9402958 18.6556889 ]\n", + " [19.56429662 18.65867106]\n", + " [14.18829744 18.66165322]\n", + " [ 8.81229827 18.66463538]\n", + " [ 3.4362991 18.66761755]\n", + " [30.31331281 13.27670756]\n", + " [24.93731363 13.27968972]\n", + " [19.56131446 13.28267189]\n", + " [14.18531529 13.28565406]\n", + " [ 8.80931611 13.28863621]\n", + " [ 3.43331694 13.29161838]\n", + " [30.31033064 7.90070839]\n", + " [24.93433147 7.90369055]\n", + " [19.55833229 7.90667271]\n", + " [14.18233312 7.90965488]\n", + " [ 8.80633395 7.91263704]\n", + " [ 3.43033477 7.9156192 ]\n", + " [30.30734847 2.52470921]\n", + " [24.9313493 2.52769138]\n", + " [19.55535013 2.53067354]\n", + " [14.17935096 2.53365571]\n", + " [ 8.80335178 2.53663787]\n", + " [ 3.42735261 2.53962004]]\n", + "4\n", + " -0.2083686 -0.2088448 -0.00572401 -0.00579384 -0.00585326 -0.00590199\n", + " -0.0059396 -0.00596558 -0.19712185 -0.16296958 -0.1278801 -0.09204872\n", + " -0.05567473 -0.01896706 -0.2016167 -0.2016167 -0.0059719 -0.0059719\n", + " -0.19101701 -0.19297429 -0.19456158 -0.19577312 -0.19660523 -0.1970549\n", + " -0.15792497 -0.15953875 -0.16084786 -0.1618491 -0.16253892 -0.16291334\n", + " -0.1239DEBUG:root:radec2pix: curVec: [[-9.22490218e-01 3.82442520e-01 5.24358227e-02]\n", + " [-9.20521034e-01 3.89791857e-01 2.65204628e-02]\n", + " [-9.17762923e-01 3.97128705e-01 9.47749548e-05]\n", + " [-9.14191930e-01 4.04398611e-01 -2.67372009e-02]\n", + " [-9.09793961e-01 4.11549640e-01 -5.38687576e-02]\n", + " [-9.04564277e-01 4.18534687e-01 -8.11922624e-02]\n", + " [-8.98507284e-01 4.25312509e-01 -1.08599865e-01]\n", + " [-8.91636527e-01 4.31848002e-01 -1.35983846e-01]\n", + " [-9.22490218e-01 3.82442520e-01 5.24358227e-02]\n", + " [-9.12099044e-01 4.05180469e-01 6.24829720e-02]\n", + " [-9.00789475e-01 4.28150837e-01 7.25615791e-02]\n", + " [-8.88568976e-01 4.51238752e-01 8.26363359e-02]\n", + " [-8.75455487e-01 4.74330607e-01 9.26723511e-02]\n", + " [-8.61476616e-01 4.97317023e-01 1.02634398e-01]\n", + " [-8.46669312e-01 5.20094085e-01 1.12486523e-01]\n", + " [-8.31079817e-01 5.42563766e-01 1.22192054e-01]\n", + " [-8.91636527e-01 4.31848002e-01 -1.35983846e-01]\n", + " [-8.80783100e-01 4.56072042e-01 -1.27355495e-01]\n", + " [-8.68998002e-01 4.80429028e-01 -1.18450075e-01]\n", + " DEBUG:root:radec2pix: lng: [224.24259986 219.96765614 215.08336296 209.53697562 203.3101935\n", + " 196.44343401 189.05719479 181.35667342 224.24259986 228.41303103\n", + " 233.20099698 238.67135193 244.85870857 251.7410006 259.21279966\n", + " 267.07328529 181.35667342 181.56790868 181.85777415 182.28018564\n", + " 182.95289983 184.19149998 187.22184671 205.19617552 267.07328529\n", + " 266.59845953 265.94084811 264.97008557 263.3938965 260.39700292\n", + " 252.59010355 205.19617552 222.46269399 216.82093439 210.20829157\n", + " 202.57559903 193.99974981 184.73881406 225.97611965 231.49389572\n", + " 238.00639827 245.59111124 254.20436521 263.6117634 181.46953067\n", + " 181.78262482 182.26677669 183.11467024 184.98120654 192.39209935\n", + " 266.85454344 266.15458823 265.05671864 263.08918181 258.56369308\n", + " 238.630299 224.24223838 224.24223838 205.42453452 205.42453452\n", + " 224.19359423 229.74542917 236.38270094 244.22153031 253.24481767\n", + " 263.2046196 218.49803362 224.01504295 230.89947742 239.44320338\n", + " 249.79385261 261.71030558 211.7381028 216.919497DEBUG:root:radec2pix: ccdpx: [[-4.45000000e+01 -4.99999838e-01]\n", + " [-4.45000000e+01 2.91928571e+02]\n", + " [-4.45000000e+01 5.84357142e+02]\n", + " [-4.45000000e+01 8.76785714e+02]\n", + " [-4.45000000e+01 1.16921429e+03]\n", + " [-4.45000000e+01 1.46164286e+03]\n", + " [-4.45000000e+01 1.75407143e+03]\n", + " [-4.45000001e+01 2.04650000e+03]\n", + " [-4.45000000e+01 -4.99999838e-01]\n", + " [ 2.47928571e+02 -5.00000127e-01]\n", + " [ 5.40357143e+02 -4.99999855e-01]\n", + " [ 8.32785714e+02 -4.99999742e-01]\n", + " [ 1.12521429e+03 -4.99999752e-01]\n", + " [ 1.41764286e+03 -5.00000255e-01]\n", + " [ 1.71007143e+03 -4.99999843e-01]\n", + " [ 2.00250000e+03 -5.00000108e-01]\n", + " [-4.45000001e+01 2.04650000e+03]\n", + " [ 2.47928572e+02 2.04650000e+03]\n", + " [ 5.40357143e+02 2.04650000e+03]\n", + " [ 8.32785714e+02 2.04650000e+03]\n", + " [ 1.12521429e+03 2.04650000e+03]\n", + " [ 1.41764286e+03 2.04650000e+03]\n", + " [ 1.71007143e+03 2.04650000e+03]\n", + " [ 2.00250000e+03 2.04650000e+03]\n", + " [ 2.00250000e+03 -5.00000108e-01]\n", + " [ 2.00250000e+03 2.91928571e+02]\n", + " [ 2.00250000e+03 5.84357143e+02]\n", + " [ 2.00250000e+03 8.76785714e+02]\n", + " [ 2.00250000e+03 1.16921429e+03]\n", + " [ 2.00250000e+03 1.46164286e+03]\n", + " [ 2.00250000e+03 1.75407143e+03]\n", + " [ 2.00250000e+03 2.04650000e+03]\n", + " [-4.35000000e+01 1.27000000e+02]\n", + " [-4.35000000e+01 4.85400000e+02]\n", + " [-4.35000000e+01 8.43800000e+02]\n", + " [-4.35000000e+01 1.20220000e+03]\n", + " [-4.35000000e+01 1.56060000e+03]\n", + " [-4.35000000e+01 1.91900000e+03]\n", + " [ 8.30000000e+01 5.00000282e-01]\n", + " [ 4.41400000e+02 4.99999845e-01]\n", + " [ 7.99800000e+02 4.99999800e-01]\n", + " [ 1.15820000e+03 4.99999731e-01]\n", + " [ 1.51660000e+03 5.00000238e-01]\n", + " [ 1.87500000e+03 4.99999813e-01]\n", + " [ 8.30000000e+01 2.04550000e+03]\n", + " [ 4.41400000e+02 2.04550000e+03]\n", + " [ 7.99800000e+02 2.04550000e+03]\n", + " [ 1.15820000e+03 2.04550000e+03]\n", + " [ 1.51660000e+03 2.04550000e+03]\n", + " [ 1.87500000e+03 2.04550000e+03]\n", + " [ 2.00150000e+03 1.27000000e+02]\n", + " [ 2.00150000e+03 4.85400000e+02]\n", + " [ 2.00150000e+03 8.43800000e+02]\n", + " [ 2.00150000e+03 1.20220000e+03]\n", + " [ 2.00150000e+03 1.56060000e+03]\n", + " [ 2.00150000e+03 1.91900000e+03]\n", + " [-4.35000021 223.73668556\n", + " 232.79289096 244.66979293 259.38488067 203.8308227 208.21481457\n", + " 214.34263424 223.2424136 236.45716258 255.28910964 194.83531269\n", + " 197.83404909 202.27750364 209.41669409 222.12219565 246.34438586\n", + " 185.03238692 186.10346579 187.75181788 190.6089913 196.71508989\n", + " 217.15465227]\n", + "DEBUG:root:optics_fp: xyfp: [[32.275486 31.41357429]\n", + " [32.27502267 27.02714574]\n", + " [32.27455935 22.64071719]\n", + " [32.27409601 18.25428864]\n", + " [32.27363269 13.8678601 ]\n", + " [32.27316936 9.48143155]\n", + " [32.27270604 5.095003 ]\n", + " [32.27224271 0.70857446]\n", + " [32.275486 31.41357429]\n", + " [27.88905745 31.41403761]\n", + " [23.5026289 31.41450094]\n", + " [19.11620036 31.41496427]\n", + " [14.72977181 31.41542759]\n", + " [10.34334326 31.41589092]\n", + " [ 5.95691471 31.41635424]\n", + " [ 1.57048617 31.41681757]\n", + " [32.27224271 0.70857446]\n", + " [27.88581416 0.70903778]\n", + " [23.49938562 0.70950111]\n", + " [19.11295707 0.70996444]\n", + " [14.72652852 0.71042776]\n", + " [10.34009998 0.71089109]\n", + " [ 5.95367142 0.71135442]\n", + " [ 1.56724288 0.71181774]\n", + " [ 1.57048617 31.41681757]\n", + " [ 1.57002284 27.03038902]\n", + " [ 1.56955951 22.64396047]\n", + " [ 1.56909619 18.25753194]\n", + " [ 1.56863286 13.87110338]\n", + " [ 1.56816953 9.48467484]\n", + " [ 1.56770621 5.09824629]\n", + " [ 1.56724288 0.71181774]\n", + " [32.26028399 29.50107588]\n", + " [32.25971613 24.12507591]\n", + " [32.25914828 18.74907594]\n", + " [32.25858043 13.37307597]\n", + " [32.25801258 7.997076 ]\n", + " [32.25744472 2.62107603]\n", + " [30.36298443 31.3987763 ]\n", + " [24.98698446 31.39934415]\n", + " [19.61098448 31.399912 ]\n", + " [14.23498451 31.40047985]\n", + " [ 8.85898454 31.40104771]\n", + " [ 3.48298457 31.40161556]\n", + " [30.35974431 0.72377647]\n", + " [24.98374433 0.72434432]\n", + " [19.60774436 0.72491217]\n", + " [14.23174439 0.72548003]\n", + " [ 8.85574442 0.72604788]\n", + " [ 3.47974445 0.72661573]\n", + " [ 1.58528416 29.504316 ]\n", + " [ 1.5847163 24.12831603]\n", + " [ 1.58414845 18.75231606]\n", + " [ 1.5835806 13.37631609]\n", + " [ 1.58301275 8.00031612]\n", + " [ 1.5824449 2.62431615]\n", + " [32.26048441 31.39857587]\n", + " [32.26048441 31.39857587]\n", + " [ 1.58224447 0.72681616]\n", + " [ 1.58224447 0.72681616]\n", + " [30.36278399 29.50127631]\n", + " [24.98678403 29.50184416]\n", + " [1DEBUG:root:optics_fp: rtanth: [44.94272969 42.00239064 39.33235561 36.99120283 35.04490673 33.56223174\n", + " 32.60648436 32.22458311 44.94272969 41.90992612 39.13459306 36.67522804\n", + " 34.59927513 32.97921831 31.88462562 31.37054947 32.22458311 27.83912196\n", + " 23.45402264 19.06953475 14.68620592 10.30551524 5.93330899 1.63895634\n", + " 31.37054947 26.99005818 22.61186898 18.23763988 13.87111779 9.5229103\n", + " 5.23882082 1.63895634 43.61980801 40.19015843 37.22381993 34.83933779\n", + " 33.16246218 32.30357703 43.58131788 40.02977818 36.92204987 34.37870189\n", + " 32.5323727 31.50584319 30.31278547 24.93826049 19.56454604 14.19256282\n", + " 8.82547273 3.48595044 29.4611953 24.09404931 18.73198196 13.38109994\n", + " 8.0637011 2.9657153 44.92151855 44.92151855 1.65858428 1.65858428\n", + " 42.23832489 38.56329813 35.32679703 32.65945447 30.7099348 29.62031359\n", + " 38.68639649 34.63652908 30.99264061 27.91417471 25.60588368 24.28835443\n", + " 35.59496044 31.14567519 27.03530484 23.44280455 20.64037826 18.98125646\n", + " 33.09332103 28.25278341 23.64475409 19.43532283 15.94339684 13.72788346\n", + " 31.32311186 26.15701072 21.09606209 16.23887967 11.83897557 8.62694755\n", + " 30.41232527 25.05915804 19.71841847 14.40393713 9.16152467 4.26572571]\n", + "0793 -0.1251726 -0.12620079 -0.12699006 -0.12753631 -0.1278347\n", + " -0.089165 -0.090077 -0.09082101 -0.09139481 -0.09179425 -0.09201449\n", + " -0.05389991 -0.05445583 -0.05491134 -0.05526476 -0.0555129 -0.05565213\n", + " -0.018319 -0.01851594 -0.01867909 -0.01880776 -0.01890068 -0.01895646]\n", + " [ 0.95752648 0.96233857 0.96655829 0.97012578 0.97299031 0.97511138\n", + " 0.97645925 0.97701519 0.95752648 0.96244865 0.96678474 0.97047334\n", + " 0.97346207 0.97570877 0.97718203 0.97786143 0.97701519 0.98258358\n", + " 0.98747643 0.99162952 0.99498928 0.99751244 0.9991662 0.99992869\n", + " 0.97786143 0.98333161 0.98811601 0.99215206 0.99538774 0.99778137\n", + " 0.99930173 0.99992869 0.95971127 0.96521924 0.96977695 0.97328709\n", + " 0.97567516 0.97689101 0.95975804 0.96540534 0.97011031 0.973772DEBUG:root:radec2pix: fitpx: [[2135.5 4155.4999999 ]\n", + " [2135.5 3863.07142835]\n", + " [2135.5 3570.64285687]\n", + " [2135.5 3278.21428534]\n", + " [2135.5 2985.78571398]\n", + " [2135.5 2693.35714282]\n", + " [2135.50000001 2400.92857102]\n", + " [2135.50000006 2108.49999973]\n", + " [2135.5 4155.4999999 ]\n", + " [1843.07142859 4155.4999999 ]\n", + " [1550.64285722 4155.49999973]\n", + " [1258.21428568 4155.50000007]\n", + " [ 965.78571413 4155.50000028]\n", + " [ 673.35714288 4155.49999997]\n", + " [ 380.92857125 4155.50000021]\n", + " [ 88.4999998 4155.5000002 ]\n", + " [2135.50000006 2108.49999973]\n", + " [1843.07142866 2108.49999999]\n", + " [1550.64285735 2108.49999998]\n", + " [1258.21428559 2108.50000001]\n", + " [ 965.78571467 2108.49999998]\n", + " [ 673.35714297 2108.5 ]\n", + " [ 380.92857138 2108.5 ]\n", + " [ 88.49999984 2108.5 ]\n", + " [ 88.4999998 4155.5000002 ]\n", + " [ 88.49999999 3863.07142858]\n", + " [ 88.50000023 3570.64285698]\n", + " [ 88.4999999 3278.21428577]\n", + " [ 88.50000002 2985.78571428]\n", + " [ 88.50000017 2693.35714281]\n", + " [ 88.49999997 2400.92857143]\n", + " [ 88.499[-8.56289948e-01 5.04798438e-01 -1.09298039e-01]\n", + " [-8.42675619e-01 5.29066830e-01 -9.99304327e-02]\n", + " [-8.28180742e-01 5.53125824e-01 -9.03796480e-02]\n", + " [-8.12841496e-01 5.76870361e-01 -8.06801659e-02]\n", + " [-7.96705436e-01 6.00198348e-01 -7.08688291e-02]\n", + " [-8.31079817e-01 5.42563766e-01 1.22192054e-01]\n", + " [-8.28416801e-01 5.51844808e-01 9.58796771e-02]\n", + " [-8.25027240e-01 5.60868285e-01 6.89697080e-02]\n", + " [-8.20889061e-01 5.69572947e-01 4.15669025e-02]\n", + " [-8.15988349e-01 5.77904201e-01 1.37749523e-02]\n", + " [-8.10319796e-01 5.85813372e-01 -1.43011342e-02]\n", + " [-8.03887462e-01 5.93257268e-01 -4.25530569e-02]\n", + " [-7.96705436e-01 6.00198348e-01 -7.08688291e-02]\n", + " [-9.21692631e-01 3.85722657e-01 4.12398442e-02]\n", + " [-9.18751965e-01 3.94729822e-01 9.12113249e-03]\n", + " [-9.14601365e-01 4.03663832e-01 -2.36612474e-02]\n", + " [-9.09210825e-01 4.12427839e-01 -5.69118079e-02]\n", + " [-9.02571601e-01 4.20935237e-01 -9.04324736e-02]\n", + " [-8.94695592e-01 4.29112645e-01 -1.24024733e-01]\n", + " [-9.18067042e-01 3.92346123e-0DEBUG:root:radec2pix: ccdpx: [[-4.44999999e+01 -4.99999855e-01]\n", + " [-4.45000000e+01 2.91928571e+02]\n", + " [-4.45000000e+01 5.84357143e+02]\n", + " [-4.44999998e+01 8.76785714e+02]\n", + " [-4.45000001e+01 1.16921429e+03]\n", + " [-4.45000000e+01 1.46164286e+03]\n", + " [-4.45000000e+01 1.75407143e+03]\n", + " [-4.44999999e+01 2.04650000e+03]\n", + " [-4.44999999e+01 -4.99999855e-01]\n", + " [ 2.47928571e+02 -5.00000005e-01]\n", + " [ 5.40357143e+02 -5.00000101e-01]\n", + " [ 8.32785714e+02 -5.00000211e-01]\n", + " [ 1.12521429e+03 -4.99999718e-01]\n", + " [ 1.41764286e+03 -5.00000108e-01]\n", + " [ 1.71007143e+03 -4.99999976e-01]\n", + " [ 2.00250000e+03 -5.00000222e-01]\n", + " [-4.44999999e+01 2.04650000e+03]\n", + " [ 2.47928572e+02 2.04650000e+03]\n", + " [ 5.40357143e+02 2.04650000e+03]\n", + " [ 8.32785714e+02 2.04650000e+03]\n", + " [ 1.12521429e+03 2.04650000e+03]\n", + " [ 1.41764286e+03 2.04650000e+03]\n", + " [ 1.71007143e+03 2.04650000e+03]\n", + " [ 2.00250000e+03 2.04650000e+03]\n", + " [ 2.00250000e+03 -5.00000222e-01]\n", + " [ 2.00250000e+03 2.91928571e+02]\n", + " [ 2.00250000e+03 5.84357143e+02]\n", + " [ 2.00250000e+03 8.76785714e+02]\n", + " [ 2.00250000e+03 1.16921429e+03]\n", + " [ 2.00250000e+03 1.46164286e+03]\n", + " [ 2.00250000e+03 1.75407143e+03]\n", + " [ 2.00250000e+03 2.04650000e+03]\n", + " [-4.35000000e+01 1.27000000e+02]\n", + " [-4.35000000e+01 4.85400000e+02]\n", + " [-4.34999998e+01 8.43800000e+02]\n", + " [-4.35000001e+01 1.20220000e+03]\n", + " [-4.35000000e+01 1.56060000e+03]\n", + " [-4.34999999e+01 1.91900000e+03]\n", + " [ 8.29999998e+01 4.99999766e-01]\n", + " [ 4.41400000e+02 4.99999737e-01]\n", + " [ 7.99800000e+02 4.99999723e-01]\n", + " [ 1.15820000e+03 5.00000251e-01]\n", + " [ 1.51660000e+03 4.99999874e-01]\n", + " [ 1.87500000e+03 5.00000148e-01]\n", + " [ 8.30000001e+01 2.04550000e+03]\n", + " [ 4.41400000e+02 2.04550000e+03]\n", + " [ 7.99800000e+02 2.04550000e+03]\n", + " [ 1.15820000e+03 2.04550000e+03]\n", + " [ 1.51660000e+03 2.04550000e+03]\n", + " [ 1.87500000e+03 2.04550000e+03]\n", + " [ 2.00150000e+03 1.27000000e+02]\n", + " [ 2.00150000e+03 4.85400000e+02]\n", + " [ 2.00150000e+03 8.43800000e+02]\n", + " [ 2.00150000e+03 1.20220000e+03]\n", + " [ 2.00150000e+03 1.56060000e+03]\n", + " [ 2.00150000e+03 1.91900000e+03]\n", + " [-4.350000DEBUG:root:radec2pix: curVec: [[ 0.51852241 -0.35368588 0.77848623]\n", + " [ 0.54028128 -0.35566641 0.76262543]\n", + " [ 0.56204332 -0.3575578 0.74582822]\n", + " [ 0.58369941 -0.35932869 0.72813315]\n", + " [ 0.60514393 -0.36095038 0.70958837]\n", + " [ 0.62627634 -0.36239874 0.69025003]\n", + " [ 0.64700189 -0.36365513 0.67018169]\n", + " [ 0.66723197 -0.36470655 0.6494541 ]\n", + " [ 0.51852241 -0.35368588 0.77848623]\n", + " [ 0.50903345 -0.37833446 0.77314163]\n", + " [ 0.49907649 -0.40324638 0.76701696]\n", + " [ 0.48866287 -0.42830187 0.76010927]\n", + " [ 0.47780942 -0.45338217 0.7524246 ]\n", + " [ 0.46653913 -0.47837221 0.74397666]\n", + " [ 0.45488161 -0.50316185 0.73478628]\n", + " [ 0.44287311 -0.52764622 0.72488128]\n", + " [ 0.66723197 -0.36470655 0.6494541 ]\n", + " [ 0.65894831 -0.39054237 0.64285596]\n", + " [ 0.64996739 -0.41659445 0.63560322]\n", + " [ 0.64029614 -0.44273848 0.62769698]\n", + " [ 0.62994752 -0.46885667 0.61914421]\n", + " [ 0.61894143 -0.49483554 0.60995844]\n", + " [ 0.60730567 -0.52056408 0.60016069]\n", + " [ 0.59507662 -0.54593331 0.58978016]\n", + " [ 0.44287311 -0.52764622 0.72488128]\n", + " [ 0.46495358 -0.53146447 0.7080704 ]\n", + " [ 0.48709592 -0.53493421 0.69034988]\n", + " [ 0.50919006 -0.53801749 0.67176086]\n", + " [ 0.53113244 -0.54068235 0.65235031]\n", + " [ 0.55282416 -0.5429026 0.63217261]\n", + " [ 0.57416964 -0.54465777 0.61129137]\n", + " [ 0.59507662 -0.54593331 0.58978016]\n", + " [ 0.52797055 -0.35464249 0.77167079]\n", + " [ 0.55465496 -0.35701504 0.75159706]\n", + " [ 0.58123548 -0.35922219 0.73015391]\n", + " [ 0.60751606 -0.36120984 0.7074261 ]\n", + " [ 0.6333117 -0.36293368 0.68351696]\n", + " [ 0.6584505 -0.36436172 0.65854649]\n", + " [ 0.51451779 -0.36440015 0.77619841]\n", + " [ 0.50257281 -0.39480284 0.76912372]\n", + " [ 0.4899354 -0.42548213 0.76087335]\n", + " [ 0.47663419 -0.45621873 0.7514548 ]\n", + " [ 0.46271158 -0.48680097 0.74089326]\n", + " [ 0.44822484 -0.51702822 0.72922995]\n", + " [ 0.66363767 -0.37593295 0.64672982]\n", + " [ 0.65301506 -0.40775881 0.6382038 ]\n", + " [ 0.64135148 -0.43978522 0.62869487]\n", + " [ 0.62866831 -0.47179267 0.61821342]\n", + " [ 0.61500229 -0.50357205 0.60678446]\n", + " [ 0.60040817 -0.53491976 0.59445007]\n", + " [ 0.45252707 -0.52926772 0.71770114]\n", + " [ 0.47964517 -0.53371729 0.69648142]\n", + " [ 0.50674598 -0.53760515 0.67393561]\n", + " [ 0.53363621 -0.54087001 0.6501477 ]\n", + " [ 0.56013361 -0.54346365 0.62521805]\n", + " [ 0.58606354 -0.54535082 0.5992679 ]\n", + " [ 0.51856505 -0.35377647 0.77841666]\n", + " [ 0.51856505 -0.35377647 0.77841666]\n", + " [ 0.59504876 -0.54584375 0.58989115]\n", + " [ 0.59504876 -0.54584375 0.58989115]\n", + " [ 0.52395553 -0.36532371 0.76942133]\n", + " [ 0.51208564 -0.39588703 0.76226095]\n", + " [ 0.49949804 -0.42672044 0.75393062]\n", + " [ 0.48622038 -0.45760277 0.74443901]\n", + " [ 0.47229476 -0.48832177 0.73381164]\n", + " [ 0.45777856 -0.51867651 0.72208966]\n", + " [ 0.5507337 -0.36784311 0.74925553]\n", + " [ 0.53908337 -0.39881316 0.74184714]\n", + " [ 0.52664472 -0.43003391 0.73329133]\n", + " [ 0.51344368 -0.46128156 0.72359858]\n", + " [ 0.49952201 -0.49234359 0.71279418]\n", + " [ 0.4849377 -0.52301867 0.70091861]\n", + " [ 0.57740996 -0.37017052 0.72771665]\n", + " [ 0.56598639 -0.40147064 0.72005606]\n", + " [ 0.55370738 -0.43300342 0.71127785]\n", + " [ 0.5405979 -0.46454522 0.70139265]\n", + " [ 0.52669942 -0.49588442 0.69042477]\n", + " [ 0.51207035 -0.52681931 0.67841386]\n", + " [ 0.60378732 -0.37225 0.70489063]\n", + " [ 0.5925965 -0.40380061 0.69697521]\n", + " [ 0.58048821 -0.43556935 0.68797731]\n", + " [ 0.5674865 -0.46733404 0.67790705]\n", + " [ 0.553632 -0.4988842 0.66678795]\n", + " [ 0.53898286 -0.53001752 0.65465938]\n", + " [ 0.62968043 -0.37403665 0.68088115]\n", + " [ 0.61872801 -0.40575786 0.67270812]\n", + " [ 0.60680182 -0.4376869 0.66349207]\n", + " [ 0.59392476 -0.4696032 0.65324284]\n", + " [ 0.580136 -0.50129717 0.64198394]\n", + " [ 0.56549261 -0.53256579 0.62975534]\n", + " [ 0.65491705 -0.3754985 0.65580831]\n", + " [ 0.64420777 -0.40731098 0.64737479]\n", + " [ 0.63247411 -0.4393252 0.6379419 ]\n", + " [ 0.61973779 -0.47132155 0.62751977]\n", + " [ 0.60603618 -0.50309088 0.61613288]\n", + " [ 0.59142466 -0.53442967 0.60382266]]\n", + "DEBUG:root:radec2pix: lat: [73.24603516 74.22569152 75.13651604 75.95087507 76.6389128 77.17037377\n", + " 77.51785702 77.66114392 73.24603516 74.25573072 75.20211387 76.05743745\n", + " 76.79113897 77.37139648 77.76826885 77.95827247 77.9.61078405 29.50241201]\n", + " [14.23478409 29.50297987]\n", + " [ 8.85878411 29.50354772]\n", + " [ 3.48278414 29.50411557]\n", + " [30.36221615 24.12527634]\n", + " [24.98621618 24.12584419]\n", + " [19.6102162 24.12641204]\n", + " [14.23421623 24.1269799 ]\n", + " [ 8.85821626 24.12754775]\n", + " [ 3.48221629 24.1281156 ]\n", + " [30.36164829 18.74927637]\n", + " [24.98564832 18.74984422]\n", + " [19.60964835 18.75041208]\n", + " [14.23364838 18.75097993]\n", + " [ 8.85764841 18.75154778]\n", + " [ 3.48164844 18.75211563]\n", + " [30.36108043 13.3732764 ]\n", + " [24.98508046 13.37384425]\n", + " [19.60908049 13.3744121 ]\n", + " [14.23308053 13.37497996]\n", + " [ 8.85708056 13.37554781]\n", + " [ 3.48108059 13.37611567]\n", + " [30.36051258 7.99727643]\n", + " [24.98451261 7.99784428]\n", + " [19.60851265 7.99841214]\n", + " [14.23251268 7.99897999]\n", + " [ 8.85651271 7.99954784]\n", + " [ 3.48051273 8.00011569]\n", + " [30.35994473 2.62127646]\n", + " [24.98394476 2.62184431]\n", + " [19.60794479 2.62241216]\n", + " [14.23194482 2.62298002]\n", + " [ 8.85594485 2.62354787]\n", + " [ 3.47994488 2.62411572]]\n", + "66114392 79.25921808\n", + " 80.88995617 82.54802878 84.22809839 85.92431704 87.62836983 89DEBUG:root:optics_fp: xyfp shape: (96, 2)\n", + ".29981459\n", + " 77.95827247 79.56096311 81.19447792 82.85294756 84.52972557 86.21521853\n", + " 87.88507254 89.29981459 73.68365855 74.84176377 75.86929863 76.71215801\n", + " 77.3149747 77.63003049 73.695993 74.89461964 75.97090871 76.86971486\n", + " 77.53277126 77.90734766 78.35340648 80.33462383 82.35957542 84.41843101\n", + " 86.50018709 88.58327287 78.6525924 80.63823128 82.66432935 84.71895211\n", + " 86.78327785 88.77209382 73.25300675 73.25300675 89.29197852 89.29197852\n", + " 74.14551493 75.39944683 76.53201019 77.48405712 78.19096994 78.59236983\n", + " 75.35843946 76.77706596 78.08438262 79.20977154 80.06643025 80.56299799\n", + " 76.44078432 78.03102057 79.5341606 80.87167145 81.93009942 82.56616105\n", + " 77.33417557 79.08997119 80.79891427 82.38701631 83.72204901 84.58091077\n", + " 77.9769458 79.86951112 81.76439499 83.61332437 85.3080928 86.55866797\n", + " 78.31436404 80.28605679 82.29662619 84.33088528 86.36037199 88.26434016]\n", + "DEBUG:root:radec2pix: curVec Shape: (96, 3)\n", + "99984 2108.5 ]\n", + " [2134.5 4027.99999995]\n", + " [2134.5 3669.59999994]\n", + " [2134.5 3311.20000034]\n", + " [2134.5 2952.80000006]\n", + " [2134.5 2594.39999997]\n", + " [2134.49999998 2236.00000031]\n", + " [2008.00000001 4154.49999991]\n", + " [1649.60000005 4154.49999977]\n", + " [1291.19999995 4154.50000012]\n", + " [ 932.80000008 4154.49999986]\n", + " [ 574.40000013 4154.49999983]\n", + " [ 215.99999993 4154.50000007]\n", + " [2007.99999975 2109.50000009]\n", + " [1649.5999999 2109.50000001]\n", + " [1291.19999978 2109.50000001]\n", + " [ 932.80000001 2109.5 ]\n", + " [ 574.40000043 2109.49999999]\n", + " [ 216.00000004 2109.5 ]\n", + " [ 89.50000001 4027.99999999]\n", + " [ 89.4999998 3669.60000015]\n", + " [ 89.50000012 3311.19999993]\n", + " [ 89.50000006 2952.79999997]\n", + " [ 89.49999988 2594.40000003]\n", + " [ 89.50000008 2235.99999999]\n", + " [2134.5 4154.49999983]\n", + " [2134.5 4154.49999983]\n", + " [ 89.49999987 2109.5 ]\n", + " [ 89.49999987 2109.5 ]\n", + " [2008. 4027.99999995]\n", + " [1649.60000002 4027.99999993]\n", + " [1291.20000002 4027.99999996]\n", + " [ 932.80000002 4027.99999996]\n", + " [ 574.400000263\n", + " 0.97631476 0.97768345 0.97952098 0.98589996 0.99119927 0.99531586\n", + " 0.99817012 0.99970614 0.98032534 0.98657685 0.99173494 0.9956995\n", + " 0.99839379 0.99976492 0.95756163 0.95756163 0.999927 0.999927\n", + " 0.96194063 0.96767186 0.97244542 0.97616011 0.97873802 0.98012578\n", + " 0.96753226 0.97347545 0.97842131 0.98226722 0.98493482 0.98637043\n", + " 0.97215793 0.97827237 0.98335691 0.9873085 0.99004855 0.99152295\n", + " 0.97571944 0.98196303 0.98715219 0.99118387 0.99397914 0.99548324\n", + " 0.97814196 0.9844721 0.98973159 0.9938174 0.99665021 0.9981746\n", + " 0.97937518 0.98574902 0.99104412 0.99515745 0.99800944 0.99954423]]\n", + "DEBUG:root:optics_fp: cphi: [-0.7172644 -0.76741791 -0.81945139 -0.87124824 -0.91956549 -0.96011654\n", + " -0.98818444 -0.99982014 -0.7172644 -0.66450587 -0.59954537 -0.52014772\n", + " -0.4245785 -0.31242949 -0.18558325 -0.04879815 -0.99982014 -0.99975708\n", + " -0.99965502 -0.99947397 -0.99910595 -0.99816919 -0.99442317 -0.92363168\n", + " -0.04879815 00e+01 5.00000147e-01]\n", + " [-4.35000000e+01 5.00000147e-01]\n", + " [ 2.00150000e+03 2.04550000e+03]\n", + " [ 2.00150000e+03 2.04550000e+03]\n", + " [ 8.30000000e+01 1.27000000e+02]\n", + " [ 4.41400000e+02 1.27000000e+02]\n", + " [ 7.99800000e+02 1.27000000e+02]\n", + " [ 1.15820000e+03 1.27000000e+02]\n", + " [ 1.51660000e+03 1.27000000e+02]\n", + " [ 1.87500000e+03 1.27000000e+02]\n", + " [ 8.30000000e+01 4.85400000e+02]\n", + " [ 4.41400000e+02 4.85400000e+02]\n", + " [ 7.99800000e+02 4.85400000e+02]\n", + " [ 1.15820000e+03 4.85400000e+02]\n", + " [ 1.51660000e+03 4.85400000e+02]\n", + " [ 1.87500000e+03 4.85400000e+02]\n", + " [ 8.30000000e+01 8.43800000e+02]\n", + " [ 4.41400000e+02 8.43800000e+02]\n", + " [ 7.99800000e+02 8.43800000e+02]\n", + " [ 1.15820000e+03 8.43800000e+02]\n", + " [ 1.51660000e+03 8.43800000e+02]\n", + " [ 1.87500000e+03 8.43800000e+02]\n", + " [ 8.30000000e+01 1.20220000e+03]\n", + " [ 4.41400000e+02 1.20220000e+03]\n", + " [ 7.99800000e+02 1.20220000e+03]\n", + " [ 1.15820000e+03 1.20220000e+03]\n", + " [ 1.51660000e+03 1.20220000e+03]\n", + " [ 1.87500000e+03 1.20220000e+03]\n", + " [ 8.30000000e+01 1.56060000e+02e+01 4.99999824e-01]\n", + " [-4.35000002e+01 4.99999824e-01]\n", + " [ 2.00150000e+03 2.04550000e+03]\n", + " [ 2.00150000e+03 2.04550000e+03]\n", + " [ 8.30000001e+01 1.27000000e+02]\n", + " [ 4.41400000e+02 1.27000000e+02]\n", + " [ 7.99800000e+02 1.27000000e+02]\n", + " [ 1.15820000e+03 1.27000000e+02]\n", + " [ 1.51660000e+03 1.27000000e+02]\n", + " [ 1.87500000e+03 1.27000000e+02]\n", + " [ 8.29999998e+01 4.85400000e+02]\n", + " [ 4.41400000e+02 4.85400000e+02]\n", + " [ 7.99800000e+02 4.85400000e+02]\n", + " [ 1.15820000e+03 4.85400000e+02]\n", + " [ 1.51660000e+03 4.85400000e+02]\n", + " [ 1.87500000e+03 4.85400000e+02]\n", + " [ 8.30000003e+01 8.43800000e+02]\n", + " [ 4.41400000e+02 8.43800000e+02]\n", + " [ 7.99800000e+02 8.43800000e+02]\n", + " [ 1.15820000e+03 8.43800000e+02]\n", + " [ 1.51660000e+03 8.43800000e+02]\n", + " [ 1.87500000e+03 8.43800000e+02]\n", + " [ 8.29999997e+01 1.20220000e+03]\n", + " [ 4.41400000e+02 1.20220000e+03]\n", + " [ 7.99800000e+02 1.20220000e+03]\n", + " [ 1.15820000e+03 1.20220000e+03]\n", + " [ 1.51660000e+03 1.20220000e+03]\n", + " [ 1.87500000e+03 1.20220000e+03]\n", + " [ 8.30000001e+01 1.56060000e+DEBUG:root:radec2pix: camVec Shape: (3, 96)\n", + "1 5.67223621e-02]\n", + " [-9.04713364e-01 4.20385865e-01 6.90612274e-02]\n", + " [-8.89986355e-01 4.48660582e-01 8.14123414e-02]\n", + " [-8.73914757e-01 4.76960356e-01 9.37113484e-02]\n", + " [-8.56549357e-01 5.05083950e-01 1.05893355e-01]\n", + " [-8.37962040e-01 5.32842499e-01 1.17891860e-01]\n", + " [-8.87044145e-01 4.42363383e-01 -1.32163998e-01]\n", + " [-8.73115184e-01 4.72157182e-01 -1.21397983e-01]\n", + " [-8.57794572e-01 5.02030129e-01 -1.10246186e-01]\n", + " [-8.41109696e-01 5.31770491e-01 -9.87655003e-02]\n", + " [-8.23108088e-01 5.61178538e-01 -8.70156561e-02]\n", + " [-8.03861067e-01 5.90062040e-01 -7.50611313e-02]\n", + " [-8.30061110e-01 5.46561268e-01 1.10767028e-01]\n", + " [-8.26312455e-01 5.57770237e-01 7.81030631e-02]\n", + " [-8.21449578e-01 5.68530861e-01 4.46458351e-02]\n", + " [-8.15443470e-01 5.78739900e-01 1.05866083e-02]\n", + " [-8.08284448e-01 5.88307697e-01 -2.38810598e-02]\n", + " [-7.99984133e-01 5.97157063e-01 -5.85562013e-02]\n", + " [-9.22450822e-01 3.82544848e-01 5.23824458e-02]\n", + " [-9.22450822e-01 4027.99999975]\n", + " [ 215.99999985 4028.00000015]\n", + " [2008.00000001 3669.59999986]\n", + " [1649.60000005 3669.59999982]\n", + " [1291.19999995 3669.60000009]\n", + " [ 932.79999997 3669.60000004]\n", + " [ 574.40000017 3669.59999983]\n", + " [ 215.99999977 3669.60000019]\n", + " [2007.99999999 3311.20000007]\n", + " [1649.5999999 3311.20000024]\n", + " [1291.20000003 3311.19999996]\n", + " [ 932.80000003 3311.19999997]\n", + " [ 574.40000015 3311.19999988]\n", + " [ 216.00000001 3311.19999999]\n", + " [2008.00000002 2952.79999987]\n", + " [1649.59999985 2952.80000027]\n", + " [1291.1999999 2952.80000011]\n", + " [ 932.80000032 2952.79999977]\n", + " [ 574.39999984 2952.80000009]\n", + " [ 216.00000025 2952.79999989]\n", + " [2007.99999995 2594.40000018]\n", + " [1649.59999988 2594.40000012]\n", + " [1291.19999985 2594.4000001 ]\n", + " [ 932.79999977 2594.4000001 ]\n", + " [ 574.39999985 2594.40000005]\n", + " [ 216.00000009 2594.39999997]\n", + " [2007.99999988 2236.00000015]\n", + " [1649.60000009 2235.99999997]\n", + " [1291.19999998 2236. ]\n", + " [ 932.79999991 2236.00000001]\n", + " [ 574.39999979 2236.00000002]\n", + " [ 215.99999986 2236.00000001]]\n", + "03]\n", + " [ 4.41400000e+02DEBUG:root:fitpix2pix: ccdpx: shape: (96, 2)\n", + " 1.56060000e+03]\n", + " [ 7.99800000e+02 1.56060000e+03]\n", + " [ 1.15820000e+03 1.56060000e+03]\n", + " [ 1.51660000e+03 1.56060000e+03]\n", + " [ 1.87500000e+03 1.56060000e+03]\n", + " [ 8.30000000e+01 1.91900000e+03]\n", + " [ 4.41400000e+02 1.91900000e+03]\n", + " [ 7.99800000e+02 1.91900000e+03]\n", + " [ 1.15820000e+03 1.91900000e+03]\n", + " [ 1.51660000e+03 1.91900000e+03]\n", + " [ 1.87500000e+03 1.91900000e+03]]\n", + "3.82544848e-01 5.23824458e-02]\n", + " [-7.96787722e-01 6.00096556e-01 -7.08057183e-02]\n", + " [-7.96787722e-01 6.00096556e-01 -7.08057183e-02]\n", + " [-9.17297603e-01 3.95588752e-01 4.55482791e-02]\n", + " [-9.03905846e-01 4.23806512e-01 5.78123031e-02]\n", + " [-8.89132455e-01 4.52247612e-01 7.01111582e-02]\n", + " [-8.73006738e-01 4.80700032e-01 8.23815198e-02]\n", + " [-8.55579595e-01 5.08961877e-01 9.45587910e-02]\n", + " [-8.36922923e-01 5.36844036e-01 1.06576278e-01]\n", + " [-9.14323769e-01 4.04764466e-01 1.33331590e-02]\n", + " [-9.00824914e-01 4.33440875e-01 2.53669625e-02]\n", + " [-8.85926840e-01 4.62306443e-01 3.75018127e-02]\n", + " [-8.69659558e-01 4.91146137e-01 4.96762076e-02]\n", + " [-8.52073609e-01 5.19757780e-01 6.18256875e-02]\n", + " [-8.33240615e-01 5.47952041e-01 7.38825993e-02]\n", + " [-9.10138845e-01 4.13841638e-01 -1.95545893e-02]\n", + " [-8.96535685e-01 4.42903283e-01 -7.77475722e-03]\n", + " [-8.81523689e-01 4.72121349e-01 4.17351502e-03]\n", + " [-8.65132473e-01 5.01280762e-01 1.62296481e-02]\n", + " [-8.47411556e-01 5.30180268e-01 2.83291025e-02]\n", + " [-8.28432089e-01 5.58630326e-01 4.04033813e-02]\n", + " [-9.04713372e-01 4.22721362e-01 -5.29184712e-02]\n", + " [-8.91009485e-01 4.52091676e-01 -4.14151552e-02]\n", + " [-8.75894234e-01 4.81589643e-01 -2.96767112e-02]\n", + " [-8.59396282e-01 5.11001478e-01 -1.77628982e-02]\n", + " [-8.41563981e-01 5.40126970e-01 -5.73774394e-03]\n", + " [-8.22468125e-01 5.68775976e-01 6.33024257e-03]\n", + " [-8.98038722e-01 4.31316370e-01 -8.65600550e-02]\n", + " [-8.84237374e-01 4.60918423e-01 -7.53556476e-02]\n", + " [-8.69028703e-01 4.90624258e-01 -6.38510126e-02]\n", + " [-8.52440461e-01 5.20221443e-01 -5.21048009e-02]\n", + " [-8.34520192e-01 5.49510370e-01 -4.01796268e-02]\n", + " [-8.15338651e-01 5.78299976e-01 -2.81428859e-02]\n", + " [-8.90126721e-01 4.39553210e-01 -1.20280490e-01]\n", + " [-8.76230608e-01 4.69310469e-01 -1.09396548e-01]\n", + " [-8.60937617e-01 4.99152492e-01 -9.81489170e-02]\n", + " [-8.44275105e-01 5.28867531e-01 -8.65949344e-02]\n", + " [-8.26290475e-01 5.58255982e-01 -7.47951230e-02]\n", + " [-8.07054837e-01 5.87125871e-01 -6.28148181e-02]]\n", + "DEBUG:root:make_az_asym: xyp: [[32.275486 31.41357429]\n", + " [32.27502267 27.02714574]\n", + " [32.27455935 22.64071719]\n", + " [32.27409601 18.25428864]\n", + " [32.27363269 13.8678601 ]\n", + " [32.27316936 9.48143155]\n", + " [32.27270604 5.095003 ]\n", + " [32.27224271 0.70857446]\n", + " [32.275486 31.41357429]\n", + " [27.88905745 31.41403761]\n", + " [23.5026289 31.41450094]\n", + " [19.11620036 31.41496427]\n", + " [14.72977181 31.41542759]\n", + " [10.34334326 31.41589092]\n", + " [ 5.95691471 31.41635424]\n", + " [ 1.57048617 31.41681757]\n", + " [32.27224271 0.70857446]\n", + " [27.88581416 0.70903778]\n", + " [23.49938562 0.70950111]\n", + " [19.11295707 0.70996444]\n", + " [14.72652852 0.71042776]\n", + " [10.34009998 0.71089109]\n", + " [ 5.95367142 0.71135442]\n", + " [ 1.56724288 0.71181774]\n", + " [ 1.57048617 31.41681757]\n", + " [ 1.57002284 27.03038902]\n", + " [ 1.56955951 22.64396047]\n", + " [ 1.56909619 18.25753194]\n", + " [ 1.56863286 13.87110338]\n", + " [ 1.56816953 9.48467484]\n", + " [ 1.56770621 5.09824629]\n", + " [ 1.56724288 0.71181774]\n", + " [32.26028399 29.50107588]\n", + " [32.25971613 24.12507591]\n", + " [32.25914828 18.74907594]\n", + " [32.25858043 13.37307597]\n", + " [32.25801258 7.997076 ]\n", + " [32.25744472 2.62107603]\n", + " [30.36298443 31.3987763 ]\n", + " [24.98698446 31.39934415]\n", + " [19.61098448 31.399912 ]\n", + " [14.23498451 31.40047985]\n", + " [ 8.85898454 31.40104771]\n", + " [ 3.48298457 31.40161556]\n", + " [30.35974431 0.72377647]\n", + " [24.98374433 0.72434432]\n", + " [19.60774436 0.72491217]\n", + " [14.23174439 0.72548003]\n", + " [ 8.85574442 0.72604788]\n", + " [ 3.47974445 0.72661573]\n", + " [ 1.58528416 29.504316 ]\n", + " [ 1.5847163 24.12831603]\n", + " [ 1.58414845 18.75231606]\n", + " [ 1.5835806 13.37631609]\n", + " [ 1.58301275 8.00031612]\n", + " [ 1.5824449 2.62431615]\n", + " [32.26048441 31.39857587]\n", + " [32.26048441 31.39857587]\n", + " [ 1.58224447 0.72DEBUG:root:optics_fp: rtanth: [45.10607628 42.16357777 39.4899731 37.14337318 35.189258 33.69598042\n", + " 32.72668371 32.32853333 45.10607628 42.0744994 39.2994961 36.83909335\n", + " 34.76015989 33.13457624 32.03143895 31.50567459 32.32853333 27.94350461\n", + " 23.55899708 19.17536829 14.79339939 10.41518568 6.04888681 1.78423138\n", + " 31.50567459 27.12594155 22.74878876 18.37606012 14.01189826 9.66791142\n", + " 5.39307341 1.78423138 43.78236587 40.34917919 37.37672691 34.98265169\n", + " 33.29196413 32.41491299 43.7452802 40.19469624 37.08612172 34.53910818\n", + " 32.68520027 31.64644357 30.41697218 25.04308812 19.67036046 14.30009268\n", + " 8.93672046 3.6111005 29.59667216 24.23063563 18.87027174 13.52232821\n", + " 8.21110934 3.12954069 45.08486499 45.08486499 1.80420296 1.80420296\n", + " 42.4016515 38.72807918 35.4912797 32.82073285 30.86377856 29.76151712\n", + " 38.84663114 34.79978185 31.15752935 28.07777067 25.76302637 24.43171303\n", + " 35.74946438 31.30476433 27.19843907 23.60772454 20.80136966 19.12778226\n", + " 33.23838757 28.40342DEBUG:root:radec2pix: fitpx: [[4271.49999985 4155.49999985]\n", + " [4271.49999998 3863.07142855]\n", + " [4271.50000002 3570.64285716]\n", + " [4271.49999976 3278.21428558]\n", + " [4271.50000012 2985.78571434]\n", + " [4271.50000004 2693.35714287]\n", + " [4271.50000005 2400.92857144]\n", + " [4271.49999991 2108.5 ]\n", + " [4271.49999985 4155.49999985]\n", + " [3979.07142858 4155.50000001]\n", + " [3686.64285722 4155.5000001 ]\n", + " [3394.21428584 4155.50000021]\n", + " [3101.78571415 4155.49999972]\n", + " [2809.35714289 4155.50000011]\n", + " [2516.92857142 4155.49999998]\n", + " [2224.50000001 4155.50000022]\n", + " [4271.49999991 2108.5 ]\n", + " [3979.07142843 2108.5 ]\n", + " [3686.6428569 2108.49999999]\n", + " [3394.21428586 2108.5 ]\n", + " [3101.78571453 2108.50000001]\n", + " [2809.35714306 2108.50000001]\n", + " [2516.9285717 2108.50000003]\n", + " [2224.49999984 2108.49999993]\n", + " [2224.50000001 4155.50000022]\n", + " [2224.5 3863.07142862]\n", + " [2224.49999998 3570.64285684]\n", + " [2224.50000001 3278.21428585]\n", + " [2224.50000002 2985.78571445]\n", + " [2224.5 2693.35714285]\n", + " [2224.49999995 2400.92857125]\n", + " [2224.499DEBUG:root:radec2pix: curVec Shape: (96, 3)\n", + "03]\n", + " [ 4.41400000e+02 1.56060000e+03]\n", + " [ 7.99800000e+02 1.56060000e+03]\n", + " [ 1.15820000e+03 1.56060000e+03]\n", + " [ 1.51660000e+03 1.56060000e+03]\n", + " [ 1.87500000e+03 1.56060000e+03]\n", + " [ 8.30000000e+01 1.91900000e+03]\n", + " [ 4.41400000e+02 1.91900000e+03]\n", + " [ 7.99800000e+02 1.91900000e+03]\n", + " [ 1.15820000e+03 1.91900000e+03]\n", + " [ 1.51660000e+03 1.91900000e+03]\n", + " [ 1.87500000e+03 1.91900000e+03]]\n", + "99984 2108.49999993]\n", + " [4270.49999995 4027.99999996]\n", + " [4270.50000001 3669.6 ]\n", + " [4270.4999998 3311.19999989]\n", + " [4270.50000006 2952.80000003]\n", + " [4270.50000002 2594.40000001]\n", + " [4270.49999985 2235.99999999]\n", + " [4144.00000023 4154.50000023]\n", + " [3785.60000021 4154.50000026]\n", + " [3427.20000017 4154.50000028]\n", + " [3068.79999989 4154.49999975]\n", + " [2710.40000004 4154.50000013]\n", + " [2351.99999998 4154.49999985]\n", + " [4143.99999992 2109.5 ]\n", + " [3785.59999985 2109.5 ]\n", + " [3427.19999998 2109.5 ]\n", + " [3068.80000001 2109.5 ]\n", + " [2710.40000021 2109.50000002]\n", + " [2352.00000017 21DEBUG:root:fitpix2pix: visCut: True\n", + "681616]\n", + " [ 1.58224447 0.72681616]\n", + " [30.36278399 29.50127631]\n", + " [24.98678403 29.50184416]\n", + " [19.61078405 29.50241201]\n", + " [14.23478409 29.50297987]\n", + " [ 8.85878411 29.50354772]\n", + " [ 3.48278414 29.50411557]\n", + " [30.36221615 24.12527634]\n", + " [24.98621618 24.12584419]\n", + " [19.6102162 24.12641204]\n", + " [14.23421623 24.1269799 ]\n", + " [ 8.85821626 24.12754775]\n", + " [ 3.48221629 24.1281156 ]\n", + " [30.36164829 18.74927637]\n", + " [24.98564832 18.74984422]\n", + " [19.60964835 18.75041208]\n", + " [14.23364838 18.75097993]\n", + " [ 8.85764841 18.75154778]\n", + " [ 3.48164844 18.75211563]\n", + " [30.36108043 13.3732764 ]\n", + " [24.98508046 13.37384425]\n", + " [19.60908049 13.3744121 ]\n", + " [14.23308053 13.37497996]\n", + " [ 8.85708056 13.37554781]\n", + " [ 3.48108059 13.37611567]\n", + " [30.36051258 7.99727643]\n", + " [24.98451261 7.99784428]\n", + " [19.60851265 7.99841214]\n", + " [14.23251268 7.99897999]\n", + " [ 8.85651271 7.99954784]\n", + " [ 3.48051273 8.00011569]\n", + " [30.35994473 2.62127646]\n", + " [24.98394476 2.62184431]\n", + " [19.60794479 2.62241216]\n", + " [14.23194482 2.62298002]\n", + " [ 8.855944363 23.80170775 19.59823621 16.10786095 13.87941853\n", + " 31.45408342 26.29303007 21.23888529 16.39084557 12.00133913 8.78676362\n", + " 30.52427023 25.1733021 19.8358755 14.52692422 9.29536709 4.42480773]\n", + "-0.05662794 -0.06748483 -0.0835374 -0.10965891 -0.1594742\n", + " -0.28942109 -0.92363168 -0.73864972 -0.80160861 -0.86540808 -0.92455295\n", + " -0.97121348 -0.99694372 -0.69578694 -0.62321886 -0.53007115 -0.41291013\n", + " -0.27109351 -0.10929135 -0.99978591 -0.99968066 -0.99947617 -0.99899494\n", + " -0.99737425 -0.98288834 -0.05243384 -0.06399014 -0.08214824 -0.11477511\n", + " -0.19009076 -0.51584618 -0.71726898 -0.71726898 -0.92175016 -0.92175016\n", + " -0.71788499 -0.64689125 -0.55397779 -0.43461417 -0.2871469 -0.11621293\n", + " -0.78371934 -0.72014369 -0.63135242 -0.50838973 -0.34426777 -0.14160207\n", + " -0.85170189 -0.80076273 -0.72365733 -0.60523038 -0.42694461 -0.18103644\n", + " -0.91599489 -0.8826498 -0.8273004 -0.72987289 -0.55253697 -0.25009805\n", + " -0.96766665 -0.95325615 -0.92710821 -0.87335662 -0.74384256 -0.39763019\n", + " -0.99654822 -0.99489972 -0.99173015 -0.984408 -0.96090466 -0.80346296]\n", + "09.50000003]\n", + " [2225.5 4027.99999993]\n", + " [2225.49999998 3669.59999975]\n", + " [2225.50000001 3311.20000015]\n", + " [2225.5 2952.8 ]\n", + " [2225.49999998 2594.39999987]\n", + " [2225.50000008 2236.00000013]\n", + " [4270.50000018 4154.50000018]\n", + " [4270.50000018 4154.50000018]\n", + " [2225.49999981 2109.49999992]\n", + " [2225.49999981 2109.49999992]\n", + " [4143.99999987 4027.99999987]\n", + " [3785.59999992 4027.9999999 ]\n", + " [3427.2000001 4028.00000015]\n", + " [3068.80000011 4028.00000023]\n", + " [2710.39999995 4027.99999982]\n", + " [2351.99999998 4027.99999985]\n", + " [4144.00000018 3669.60000014]\n", + " [3785.5999999 3669.59999991]\n", + " [3427.19999994 3669.59999993]\n", + " [3068.79999994 3669.5999999 ]\n", + " [2710.39999997 3669.59999991]\n", + " [2351.99999997 3669.5999998 ]\n", + " [4143.99999973 3311.19999984]\n", + " [3785.60000019 3311.20000014]\n", + " [3427.1999998 3311.19999981]\n", + " [3068.79999976 3311.19999969]\n", + " [2710.39999985 3311.19999967]\n", + " [2352.00000003 3311.20000016]\n", + " [4144.00000026 2952.80000011]\n", + " [3785.6000001 2952.80000DEBUG:root:cartToSphere: vec: [[-0.20605921 -0.20169937 0.95752648]\n", + " [-0.20787315 -0.17519485 0.96233857]\n", + " [-0.20942436 -0.1480085 0.96655829]\n", + " [-0.21070676 -0.12024402 0.97012578]\n", + " [-0.21171698 -0.09200964 0.97299031]\n", + " [-0.21245291 -0.06341581 0.97511138]\n", + " [-0.21291301 -0.03457423 0.97645925]\n", + " [-0.2130962 -0.00559748 0.97701519]\n", + " [-0.20605921 -0.20169937 0.95752648]\n", + " [-0.17962884 -0.20353396 0.96244865]\n", + " [-0.15250018 -0.20511207 0.96678474]\n", + " [-0.12477652 -0.20642749 0.97047334]\n", + " [-0.0965659 -0.20747679 0.97346207]\n", + " [-0.06797863 -0.20825778 0.97570877]\n", + " [-0.03912632 -0.20876879 0.97718203]\n", + " [-0.01012153 -0.20900854 0.97786143]\n", + " [-0.2130962 -0.00559748 0.97701519]\n", + " [-0.18573503 -0.00565735 0.98258358]\n", + " [-0.15766321 -0.00571045 0.98747643]\n", + " [-0.1289874 -0.00575671 0.99162952]\n", + " [-0.09981355 -0.00579596 0.99498928]\n", + " [-0.07024926 -0.00582797 0.99751244]\n", + " [-0.04040619 -0.00585246 0.9991662 ]\n", + " [-0.01040084 -0.00586919 0.99992869]\n", + " [-0.01012153 -0.20900854 0.9778685 2.62354787]\n", + " [ 3.47994488 2.62411572]]\n", + "143]\n", + " [-0.01020027 -0.18153487 0.98333161]\n", + " [-0.01026637 -0.15336672 0.98811601]\n", + " [-0.01031977 -0.12461057 0.99215206]\n", + " [-0.01036027 -0.09537244 0.99538774]\n", + " [-0.01038751 -0.06576046 0.99778137]\n", + " [-0.01040113 -0.03588698 0.99930173]\n", + " [-0.01040084 -0.00586919 0.99992869]\n", + " [-0.20679239 -0.1902398 0.95971127]\n", + " [-0.20883895 -0.15728353 0.96521924]\n", + " [-0.21048459 -0.12340547 0.96977695]\n", + " [-0.2117221 -0.08880315 0.97328709]\n", + " [-0.21254753 -0.0536798 0.97567516]\n", + " [-0.21295821 -0.01824146 0.97689101]\n", + " [-0.1946339 -0.20244048 0.95975804]\n", + " [-0.16175754 -0.20451655 0.96540534]\n", + " [-0.12793421 -0.20620095 0.97011031]\n", + " [-0.09336102 -0.20748634 0.97377263]\n", + " [-0.05824097 -0.2083686 0.97631476]\n", + " [-0.02277993 -0.2088448 0.97768345]\n", + " [-0.20126076 -0.00572401 0.97952098]\n", + " [-0.16723544 -0.00579384 0.98589996]\n", + " [-0.13224882 -0.00585326 0.99119927]\n", + " [-0.09649617 -0.00590199 0.99531586]\n", + " [-0.06017591 -0.0059396 0.99817012]\n", + " [-0.02349561 -0.00596558 0.99970614]\n", + " [-0.01025713 -0.19712185 0.98032534]\n", + " [-0.01034611 -0.16296958 0.98657685]\n", + " [-0.01041588 -0.1278801 0.99173494]\n", + " [-0.01046611 -0.09204872 0.9956995 ]\n", + " [-0.01049618 -0.05567473 0.99839379]\n", + " [-0.01050541 -0.01896706 0.99976492]\n", + " [-0.20597676 -0.2016167 0.95756163]\n", + " [-0.20597676 -0.2016167 0.95756163]\n", + " [-0.01050361 -0.0059719 0.999927 ]\n", + " [-0.01050361 -0.0059719 0.999927 ]\n", + " [-0.19540403 -0.19101701 0.96194063]\n", + " [-0.16239488 -0.19297429 0.96767186]\n", + " [-0.12843557 -0.19456158 0.97244542]\n", + " [-0.09372478 -0.19577312 0.97616011]\n", + " [-0.05846599 -0.19660523 0.97873802]\n", + " [-0.02286533 -0.1970549 0.98012578]\n", + " [-0.19733483 -0.15792497 0.96753226]\n", + " [-0.16399068 -0.15953875 0.97347545]\n", + " [-0.1296908 -0.16084786 0.97842131]\n", + " [-0.094636 -0.1618491 0.98226722]\n", + " [-0.05902974 -0.16253892 0.98493482]\n", + " [-0.02307851 -0.16291334 0.98637043]\n", + " [-0.19888634 -0.12390793 0.97215793]\n", + " [-0.16527244 -0.1251726 0.97827237]\n", + " [-0.13070023 -0.12620079 0.98335691]\n", + " 005]\n", + " [3427.20000009 2952.80000006]\n", + " [3068.8000003 2952.80000028]\n", + " [2710.39999986 2952.79999979]\n", + " [2352.00000001 2952.80000004]\n", + " [4143.99999994 2594.39999998]\n", + " [3785.6 2594.4 ]\n", + " [3427.19999999 2594.39999999]\n", + " [3068.79999999 2594.39999999]\n", + " [2710.40000015 2594.40000014]\n", + " [2351.99999993 2594.39999983]\n", + " [4143.99999995 2236. ]\n", + " [3785.59999975 2235.99999997]\n", + " [3427.19999971 2235.99999996]\n", + " [3068.80000003 2236.00000001]\n", + " [2710.39999999 2236. ]\n", + " [2352.00000022 2236.00000016]]\n", + "DEBUG:root:make_az_asym: xyp: shape: (96, 2)\n", + "DEBUG:root:radec2pix: camVec: [[-0.20605921 -0.20787315 -0.20942436 -0.21070676 -0.21171698 -0.21245291\n", + " -0.21291301 -0.2130962 -0.20605921 -0.17962884 -0.15250018 -0.12477652\n", + " -0.0965659 -0.06797863 -0.03912632 -0.01012153 -0.2130962 -0.18573503\n", + " -0.15766321 -0.1289874 -0.09981355 -0.07024926 -0.04040619 -0.01040084\n", + " -0.01012153 -0.01020027 -0.01026637 -0.01031977 -0.01036027 -0.01038751\n", + " -0.01040113 -0.01040084 -0.20679239 -0.20883895 -0[-0.09537003 -0.12699006 0.9873085 ]\n", + " [-0.05948408 -0.12753631 0.99004855]\n", + " [-0.02324907 -0.1278347 0.99152295]\n", + " [-0.20005292 -0.089165 0.97571944]\n", + " [-0.16623701 -0.090077 0.98196303]\n", + " [-0.13146138 -0.09082101 0.98715219]\n", + " [-0.09592455 -0.09139481 0.99118387]\n", + " [-0.05982716 -0.09179425 0.99397914]\n", + " [-0.0233762 -0.09201449 0.99548324]\n", + " [-0.20083104 -0.05389991 0.97814196]\n", + " [-0.16688094 -0.05445583 0.9844721 ]\n", + " [-0.13197015 -0.05491134 0.98973159]\n", + " [-0.09629527 -0.05526476 0.9938174 ]\n", + " [-0.0600556 -0.0555129 0.99665021]\n", + " [-0.02345845 -0.05565213 0.9981746 ]\n", + " [-0.20121796 -0.018319 0.97937518]\n", + " [-0.16720058 -0.01851594 0.98574902]\n", + " [-0.13222195 -0.01867909 0.99104412]\n", + " [-0.09647752 -0.01880776 0.99515745]\n", + " [-0.06016577 -0.01890068 0.99800944]\n", + " [-0.02349426 -0.01895646 0.99954423]]\n", + ".21048459 -0.2117221\n", + " -0.21254753 -0.21295821 -0.1946339 -0.16175754 -0.12793421 -0.09336102\n", + " -0.05824097 -0.02277993 -0.20126076 -0.16723544 -0.13224882 -0.09649617\n", + " -0.06017591 -0.02349561 -0.01025713 -0.01034611 -0.01041588 -0.01046611\n", + " -0.01049618 -0.01050541 -0.20597676 -0.20597676 -0.01050361 -0.01050361\n", + " -0.19540403 -0.16239488 -0.12843557 -0.09372478 -0.05846599 -0.02286533\n", + " -0.19733483 -0.16399068 -0.1296908 -0.094636 -0.05902974 -0.02307851\n", + " -0.19888634 -0.16527244 -0.13070023 -0.09537003 -0.05948408 -0.02324907\n", + " -0.20005292 -0.16623701 -0.13146138 -0.09592455 -0.05982716 -0.0233762\n", + " -0.20083104 -0.16688094 -0.13197015 -0.09629527 -0.0600556 -0.02345845\n", + " -0.20121796 -0.16720058 -0.13222195 -0.09647752 -0.06016577 -0.02349426]\n", + " [-0.20169937 -0.17519485 -0.1480085 -0.12024402 -0.09200964 -0.06341581\n", + " -0.03457423 -0.00559748 -0.20169937 -0.20353396 -0.20511207 -0.20642749\n", + " -0.20747679 -0.20825778 -0.20876879 -0.20900854 -0.00559748 -0.00565735\n", + " -0.00571045 -0.00575671 -0.00579596 -0.00582797 -0.00585246 -0.00586919\n", + " -0.20900854 -0.18153487 -0.15336672 -0.12461057 -0.09537244 -0.06576046\n", + " -0.03588698 -0.00586919 -0.1902398 -0.15728353 -0.12340547 -0.08880315\n", + " -0.0536798 -0.01824146 -0.20244048 -0.20451655 -0.20620095 -0.20748634\n", + " -0.2083686 -0.2088448 -0.00572401 -0.00579384 -0.00585326 -0.00590199\n", + " -0.0059396 -0.00596558 -0.19712185 -0.16296958 -0.1278801 -0.09204872\n", + " -0.05567473 -0.01896706 -0.2016167 -0.2016167 -0.0059719 -0.0059719\n", + " -0.19101701 -0.19297429 -0.19456158 -0.19577312 -0.19660523 -0.1970549\n", + " -0.15792497 -0.15953875 -0.16084786 -0.1618491 -0.16253892 -0.16291334\n", + " -0.12390793 -0.1251726 -0.12620079 -0.12699006 -0.12753631 -0.1278347\n", + " -0.089165 -0.090077 -0.09082101 -0.09139481 -0.09179425 -0.09201449\n", + " -0.05389991 -0.05445583 -0.05491134 -0.05526476 -0.0555129 -0.05565213\n", + " -0.018319 -0.01851594 -0.01867909 -0.01880776 -0.01890068 -0.01895646]\n", + " [ 0.95752648 0.96233857 0.96655829 0.97012578 0.97299031 0.97511138\n", + " 0.97645925 0.97701519 0.95752648 0.96244865 0.96678474 0.97047334\n", + " 0.97346207 0.97570877 0.97718203 0.97786143 0.97701519 0.98258358\n", + " 0.98747643 0DEBUG:root:fitpix2pix: ccdpx: shape: (96, 2)\n", + ".99162952 0.99498928 0.99751244 0.9991662 0.99992869\n", + " 0.97786143 0.98333161 0.98811601 0.99215206 0.99538774 0.99778137\n", + " 0.99930173 0.99992869 0.95971127 0.96521924 0.96977695 0.97328709\n", + " 0.97567516 0.97689101 0.95975804 0.96540534 0.97011031 0.97377263\n", + " 0.97631476 0.97768345 0.97952098 0.98589996 0.99119927 0.99531586\n", + " 0.99817012 0.99970614 0.98032534 0.98657685 0.99173494 0.9956995\n", + " 0.99839379 0.99976492 0.95756163 0.95756163 0.999927 0.999927\n", + " 0.96194063 0.96767186 0.97244542 0.97616011 0.97873802 0.98012578\n", + " 0.96753226 0.97347545 0.97842131 0.98226722 0.98493482 0.98637043\n", + " 0.97215793 0.97827237 0.98335691 0.9873085 0.99004855 0.99152295\n", + " 0.97571944 0.98196303 0.98715219 0.99118387 0.99397914 0.99548324\n", + " 0.97814196 0.9844721 0.98973159 0.9938174 0.99665021 0.9981746\n", + " 0.97937518 0.98574902 0.99104412 0.99515745 0.99800944 0.99954423]]\n", + "DEBUG:root:DEBUG:root:optics_fp: cphi: [-0.71639206 -0.76640718 -0.81831665 -0.87003773 -0.918376 -0.95909967\n", + " -0.98753169 -0.99971968 -0.71639206 -0.66375612 -0.59900967 -0.51994628\n", + " -0.42485193 -0.31331297 -0.18716187 -0.0510586 -0.99971968 -0.9996256\n", + " -0.99947438 -0.99920821 -0.99867222 -0.99732533 -0.99206684 -0.90485547\n", + " -0.0510586 -0.05933321 -0.07078632 -0.08767585 -0.11504297 -0.16682032\n", + " -0.29920561 -0.90485547 -0.73771707 -0.80051245 -0.864202 -0.9233738\n", + " -0.97029678 -0.99658165 -0.69495812 -0.62259801 -0.52982456 -0.41324571\n", + " -0.27220694 -0.1112649 -0.9996711 -0.99951604 -0.9992175 -0.99852279\n", + " -0.99622323 -0.97670188 -0.054871 -0.06706472 -0.08616954 -0.12032428\n", + " -0.19827847 -0.52055819 -0.71639646 -0.71639646 -0.90315154 -0.90315154\n", + " -0.71698855 -0.64618487 -0.553643 -0.43489275 -0.28828288 -0.11832391\n", + " -0.78262952 -0.71915739 -0.63068289 -0.50839224 -0.34539889 -0.14417822\n", + " -0.85046147 -0.79948029 -0.72252464 -0.60469794 -0.42783445 -0.18421072\n", + " -0.91474245 -0.88118124 DEBUG:root:radec2pix: xyfp: [[32.275486 31.41357429]\n", + " [32.27502267 27.02714574]\n", + " [32.27455935 22.64071719]\n", + " [32.27409601 18.25428864]\n", + " [32.27363269 13.8678601 ]\n", + " [32.27316936 9.48143155]\n", + " [32.27270604 5.095003 ]\n", + " [32.27224271 0.70857446]\n", + " [32.275486 31.41357429]\n", + " [27.88905745 31.41403761]\n", + " [23.5026289 31.41450094]\n", + " [19.11620036 31.41496427]\n", + " [14.72977181 31.41542759]\n", + " [10.34334326 31.41589092]\n", + " [ 5.95691471 31.41635424]\n", + " [ 1.57048617 31.41681757]\n", + " [32.27224271 0.70857446]\n", + " [27.88581416 0.70903778]\n", + " [23.49938562 0.70950111]\n", + " [19.11295707 0.70996444]\n", + " [14.72652852 0.71042776]\n", + " [10.34009998 0.71089109]\n", + " [ 5.95367142 0.71135442]\n", + " [ 1.56724288 0.71181774]\n", + " [ 1.57048617 31.41681757]\n", + " [ 1.57002284 27.03038902]\n", + " [ 1.56955951 22.64396047]\n", + " [ 1.56909619 18.25753194]\n", + " [ 1.56863286 13.87110338]\n", + " [ 1.56816953 9.48467484]\n", + " [ 1.56770621 5.09824629]\n", + " [ 1.56724288 0.71181774]\n", + " [32.26028399 29.50107588]\n", + " [32.25971613 24.12507591]\n", + " [32.25914828 18.74907594]\n", + " [32.25858043 13.37307597]\n", + " [32.25801258 7.997076 ]\n", + " [32.25744472 2.62107603]\n", + " [30.36298443 31.3987763 ]\n", + " [24.98698446 31.39934415]\n", + " [19.61098448 31.399912 ]\n", + " [14.23498451 31.40047985]\n", + " [ 8.85898454 31.40104771]\n", + " [ 3.48298457 31.40161556]\n", + " [30.35974431 0.72377647]\n", + " [24.98374433 0.72434432]\n", + " [19.60774436 0.72491217]\n", + " [14.23174439 0.72548003]\n", + " [ 8.85574442 0.72604788]\n", + " [ 3.47974445 0.72661573]\n", + " [ 1.58528416 29.504316 ]\n", + " [ 1.5847163 24.12831603]\n", + " [ 1.58414845 18.75231606]\n", + " [ 1.5835806 13.37631609]\n", + " [ 1.58301275 8.00031612]\n", + " [ 1.5824449 2.62431615]\n", + " [32.26048441 31.39857587]\n", + " [32.26048441 31.39857587]\n", + " [ 1.58224447 0.72681616]\n", + " [ 1.58224447 0.72681616]\n", + " [30.36278399 29.50127631]\n", + " [24.98678403 29.50184416]\n", + " [19.61078405 29.50241201]\n", + " [14.23478409 29.50297987]\n", + " [ 8.85878411 29.50354772]\n", + " [ 3.48278414 29.50411557]\n", + " [30.36221615 24.12527634]\n", + " [24.98621618 24.12584419]\n", + " [19.6102162 24.12641204]\n", + " [14.23421623 24.1269799 ]\n", + " [ 8.85821626 24.12754775]\n", + " [ 3.48221629 24.1281156 ]\n", + " [30.36164829 18.74927637]\n", + " DEBUG:root:fitpix2pix: visCut: True\n", + "radec2pix: camVec: [[0.20658103 0.20838989 0.20993522 0.21121099 0.21221385 0.21294172\n", + " 0.21339307 0.21356684 0.20658103 0.18015754 0.1530338 0.12531307\n", + " 0.09710338 0.06851504 0.03965966 0.01064976 0.21356684 0.18621882\n", + " 0.15815829 0.12949192 0.10032565 0.07076705 0.04092766 0.01092393\n", + " 0.01064976 0.01072986 0.01079662 0.01085001 0.01088978 0.0109156\n", + " 0.01092708 0.01092393 0.20731213 0.20935192 0.21098964 0.21221814\n", + " 0.21303349 0.21343308 0.19515895 0.16228971 0.12847052 0.09389848\n", + " 0.05877657 0.02331064 0.20173739 0.16772694 0.13275239 0.09700904\n", + " 0.06069518 0.02401827 0.01078606 0.01087623 0.01094616 0.01099551\n", + " 0.01102363 0.01102984 0.2064986 0.2064986 0.01102671 0.01102671\n", + " 0.19592714 0.16292559 0.1289709 0.09426176 0.0590016 0.02339654\n", + " 0.19785166 0.16451646 0.13022261 0.09517088 0.05956467 0.02361044\n", + " 0.19939573 0.16579218 0.13122742 0.09590173 0.06001727 0.02378066\n", + " 0.20055377 0.16674959 0.13198281 0.09645193 0.06035751 0.0239064\n", + " 0.20132229 0.16738526 0.13248471 0.09681723 0.06058199 0.02398618\n", + " 0.20169858 0.16769559 0.13272857 0.09699294 0.06068709 0.02401844]\n", + " [0.20098859 0.17447006 0.14727238 0.11949936 0.09125926 0.06266255\n", + " 0.03382097 0.00484709 0.20098859 0.20282418 0.20440426 0.20572264\n", + " 0.20677589 0.2075618 0.2080787 0.20832528 0.00484709 0.00490326\n", + " 0.00495363 0.00499813 0.0050366 0.00506881 0.00509451 0.00511348\n", + " 0.20832528 0.18083307 0.15264908 0.12387974 0.09463112 0.06501141\n", + " 0.0351331 0.00511348 0.18952259 0.15655094 0.12266162 0.08805229\n", + " 0.05292621 0.01748945 0.20172997 0.20380791 0.20549566 0.20678588\n", + " 0.20767444 0.20815839 0.00497187 0.00503783 0.00509482 0.00514259\n", + " 0.00518073 0.00520877 0.19643015 0.16225698 0.1271506 0.09130636\n", + " 0.0549237 0.01821176 0.20090587 0.20090587 0.00521618 0.00521618\n", + " 0.19029998 0.19225876 0.19384904 0.19506507 0.19590316 0.19636024\n", + " 0.15719218 0.15880644 0.16011755 0.16112232 0.16181718 0.1621981\n", + " 0.12316354 0.12442767 0.12545686 0.126248[24.98564832 18.74984422]\n", + " [19.60964835 18.75041208]\n", + " [14.23364838 18.75097993]\n", + " [ 8.85764841 18.75154778]\n", + " [ 3.48164844 18.75211563]\n", + " [30.36108043 13.3732764 ]\n", + " [24.98508046 13.37384425]\n", + " [19.60908049 13.3744121 ]\n", + " [14.23308053 13.37497996]\n", + " [ 8.85708056 13.37554781]\n", + " [ 3.48108059 13.37611567]\n", + " [30.36051258 7.99727643]\n", + " [24.98451261 7.99784428]\n", + " [19.60851265 7.99841214]\n", + " [14.23251268 7.99897999]\n", + " [ 8.85651271 7.99954784]\n", + " [ 3.48051273 8.00011569]\n", + " [30.35994473 2.62127646]\n", + " [24.98394476 2.62184431]\n", + " [19.60794479 2.62241216]\n", + " [14.23194482 2.62298002]\n", + " [ 8.85594485 2.62354787]\n", + " [ 3.47994488 2.62411572]]\n", + "-0.82567874 -0.72846169 -0.55256029 -0.25394179\n", + " -0.96666577 -0.95194756 -0.92535864 -0.87107074 -0.74171607 -0.40123831\n", + " -0.99614527 -0.99433151 -0.99086162 -0.98290647 -0.95774678 -0.79700819]\n", + "DEBUG:root:optics_fp: sphi: [-0.69680111 -0.64114722 -0.57314869 -0.49084265 -0.39293677 -0.27960013\n", + " -0.15326941 -0.01896529 -0.69680111 -0.74728304 -0.80034077 -0.85407631\n", + " -0.905391DEBUG:root:radec2pix: lng: [224.38740491 220.12408621 215.2503637 209.71210534 203.48918374\n", + " 196.62002098 189.22355762 181.5046646 224.38740491 228.56999572\n", + " 233.3693139 238.84884696 245.04132431 251.92249978 259.38507008\n", + " 267.22753799 181.5046646 181.74464663 182.07430544 182.55541483\n", + " 183.32331288 184.74247093 188.24144189 209.436015 267.22753799\n", + " 266.78398778 266.170335 265.26578644 263.80029466 261.02373287\n", + " 253.83681058 209.436015 222.61267508 216.98461546 210.38276245\n", + " 202.75476399 194.17390418 184.89586052 226.12630502 231.65859743\n", + " 238.18310357 245.77405246 254.38382437 263.77502084 181.62909594\n", + " 181.98420755 182.53422407 183.50001953 185.63706132 194.24647314\n", + " 267.02133208 266.36745836 265.3435183 263.51322198 259.32352397\n", + " 241.01895217 224.38712569 224.38712569 209.62070535 209.62070535\n", + " 224.34955164 229.91816922 236.57007702 244.41761198 253.43870278\n", + " 263.38126527 218.66991645 224.21163124 231.12094806 239.6844282\n", + " 250.04034734 261.9370562 211.92326671 217.139242DEBUG:root:radec2pix: fitpx: [[2135.5 4155.49999984]\n", + " [2135.5 3863.07142868]\n", + " [2135.5 3570.64285754]\n", + " [2135.5 3278.21428588]\n", + " [2135.5 2985.78571458]\n", + " [2135.5 2693.35714314]\n", + " [2135.5 2400.92857131]\n", + " [2135.50000005 2108.49999975]\n", + " [2135.5 4155.49999984]\n", + " [1843.07142855 4155.50000013]\n", + " [1550.64285718 4155.49999985]\n", + " [1258.21428582 4155.49999974]\n", + " [ 965.78571443 4155.49999975]\n", + " [ 673.35714268 4155.50000026]\n", + " [ 380.92857156 4155.49999984]\n", + " [ 88.49999989 4155.50000011]\n", + " [2135.50000005 2108.49999975]\n", + " [1843.07142845 2108.50000002]\n", + " [1550.64285702 2108.50000001]\n", + " [1258.21428598 2108.49999998]\n", + " [ 965.78571394 2108.50000002]\n", + " [ 673.35714284 2108.5 ]\n", + " [ 380.92857156 2108.5 ]\n", + " [ 88.49999977 2108.50000001]\n", + " [ 88.49999989 4155.50000011]\n", + " [ 88.49999981 3863.07142874]\n", + " [ 88.49999988 3570.64285723]\n", + " [ 88.49999983 3278.21428582]\n", + " [ 88.5000001 2985.78571424]\n", + " [ 88.50000005 2693.35714284]\n", + " [ 88.49999995 2400.92857144]\n", + " [ 88.499DEBUG:root:radec2pix: xyfp Shape: (96, 2)\n", + "66 0.12679897 0.1271029\n", + " 0.08841323 0.08932369 0.09006766 0.09064294 0.0910454 0.09127018\n", + " 0.05314506 0.05369842 0.05415286 0.05450669 0.05475678 0.05489951\n", + " 0.0175654 0.01775879 0.01791986 0.01804791 0.01814173 0.01819993]\n", + " [0.9575635 0.96235848 0.9665599 0.97010815 0.97295274 0.97505345\n", + " 0.97638084 0.97691643 0.9575635 0.96249967 0.96685033 0.97055388\n", + " 0.97355774 0.97581955 0.97730771 0.97800162 0.97691643 0.98249606\n", + " 0.98740135 0.99156788 0.99494191 0.99747999 0.99914912 0.99992726\n", + " 0.97800162 0.98345527 0.98822148 0.99223792 0.99545284 0.99782482\n", + " 0.9993229 0.99992726 0.95974104 0.96522722 0.96976157 0.97324727\n", + " 0.97561035 0.97680113 0.95980102 0.96546589 0.97018908 0.97386995\n", + " 0.97643056 0.97781731 0.97942703 0.98582062 0.99113614 0.99527021\n", + " 0.9981429 0.99969795 0.98045849 0.98668859 0.99182302 0.99576214\n", + " 0.9984297 0.99977331 0.95759864 0.95759864 0.9999256 0.9999256\n", + " 0.96197634 0.96772508 0.97251687 0.97625014 0.9713 -0.94994095 -0.98262854 -0.99880866 -0.01896529 -0.02204027\n", + " -0.02626479 -0.03243122 -0.04227651 -0.06048361 -0.10546358 -0.38328124\n", + " -0.99880866 -0.99839535 -0.9977203 -0.99650464 -0.99396928 -0.9872021\n", + " -0.95720188 -0.38328124 -0.67408945 -0.59784918 -0.50106771 -0.3810536\n", + " -0.23821077 -0.07812313 -0.71824824 -0.78204748 -0.84795317 -0.91077177\n", + " -0.96255302 -0.99400976 -0.02069125 -0.02527007 -0.03236333 -0.04482319\n", + " -0.07241971 -0.18420237 -0.9986244 -0.99795053 -0.99662012 -0.9933915\n", + " -0.98176652 -0.85668122 -0.6967964 -0.6967964 -0.38778427 -0.38778427\n", + " -0.69616172 -0.76258227 -0.83253145 -0.90061674 -0.95788656 -0.99322432\n", + " -0.62111512 -0.69382495 -0.77549605 -0.8611271 -0.93887151 -0.98992366\n", + " -0.52402662 -0.59898168 -0.69015945 -0.79605037 -0.90427778 -0.98347639\n", + " -0.40118994 -0.4700312 -0.56175978 -0.68358289 -0.83348839 -0.96822051\n", + " -0.25223255 -0.30216337 -0.37479377 -0.48708132 -0.66835488 -0.91754577\n", + " -0.08301599 -0.10086897 -0.12834059 -0.17590022 -0.27687945 -0.DEBUG:root:optics_fp: sphi: [-0.69769794 -0.64235507 -0.57476766 -0.49298514 -0.3957089 -0.2830686\n", + " -0.15742033 -0.02367621 -0.69769794 -0.74794907 -0.80074179 -0.85419896\n", + " -0.90526286 -0.94964993 -0.98232909 -0.99869566 -0.02367621 -0.02736175\n", + " -0.03241859 -0.03978624 -0.05151501 -0.07309024 -0.12571151 -0.42571889\n", + " -0.99869566 -0.99823823 -0.9974915 -0.99614906 -0.99336052 -0.98598731\n", + " -0.95418866 -0.42571889 -0.67511001 -0.59931613 -0.50314502 -0.38390211\n", + " -0.24191766 -0.08261364 -0.71905021 -0.78254183 -0.84810727 -0.91061956\n", + " -0.96223874 -0.99379078 -0.02564534 -0.03110765 -0.0395524 -0.05433448\n", + " -0.08682898 -0.21460065 -0.99849345 -0.99774863 -0.99628049 -0.99273464\n", + " -0.98014573 -0.8538262 -0.69769342 -0.69769342 -0.42932191 -0.42932191\n", + " -0.69708495 -0.76318092 -0.83275412 -0.90048226 -0.95754529 -0.99297505\n", + " -0.62248778 -0.69484721 -0.77604065 -0.86112562 -0.93845597 -0.98955174\n", + " -0.52603734 -0.60069232 -0.69134517 -0.7964549 -0.90385712 -0.98288677\n", + " -0.40403745 -0.4727786259535474]\n", + "884665 0.98025265\n", + " 0.96754604 0.97350647 0.97847046 0.98233503 0.98502145 0.98647571\n", + " 0.97214818 0.97827946 0.98338189 0.98735208 0.99011108 0.99160442\n", + " 0.97568503 0.98194493 0.98715164 0.99120174 0.99401595 0.99553917\n", + " 0.97808228 0.98442808 0.98970464 0.99380856 0.99666018 0.99820374\n", + " 0.97929012 0.98567886 0.99099042 0.99512142 0.99799196 0.99954584]]\n", + "99977 2108.50000001]\n", + " [2134.5 4028.00000026]\n", + " [2134.5 3669.59999996]\n", + " [2134.5 3311.20000006]\n", + " [2134.5 2952.80000018]\n", + " [2134.50000001 2594.39999977]\n", + " [2134.49999998 2236.00000029]\n", + " [2008.00000002 4154.49999972]\n", + " [1649.59999996 4154.50000015]\n", + " [1291.19999992 4154.5000002 ]\n", + " [ 932.79999984 4154.50000027]\n", + " [ 574.40000018 4154.49999976]\n", + " [ 215.99999983 4154.50000019]\n", + " [2007.99999997 2109.50000001]\n", + " [1649.60000009 2109.49999999]\n", + " [1291.20000024 2109.49999998]\n", + " [ 932.80000011 2109.5 ]\n", + " [ 574.40000007 2109.5 ]\n", + " [ 216.00000022 2109.49999999]\n", + " [ 89.50000011 4027.99999989]\n", + " [ 89.49999997 3669DEBUG:root:radec2pix: camVec Shape: (3, 96)\n", + "06 223.99660639\n", + " 233.09330633 244.99523074 259.69237756 204.0228705 208.45144372\n", + " 214.63892612 223.61475061 236.90559041 255.7456151 195.0232601\n", + " 198.0723045 202.59166286 209.85191686 222.74900651 247.14363581\n", + " 185.201902 186.31923819 188.04100537 191.03114261 197.43976942\n", + " 218.89848666]\n", + "DEBUG:root:mm_to_pix: fitpx: [[0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0 -0.5641406 -0.68508654 -0.83347293 -0.9672195\n", + " -0.25604158 -0.30626107 -0.37909286 -0.49115758 -0.670714 -0.9159737\n", + " -0.08771884 -0.10632422 -0.13488237 -0.1841056 -0.28761277 -0.6039685 ]\n", + "DEBUG:root:radec2pix: camVec Shape: (3, 96)\n", + ".60000003]\n", + " [ 89.49999978 3311.20000014]\n", + " [ 89.49999974 2952.80000012]\n", + " [ 89.49999998 2594.4 ]\n", + " [ 89.50000005 2236. ]\n", + " [2134.5 4154.49999985]\n", + " [2134.5 4154.49999985]\n", + " [ 89.49999982 2109.5 ]\n", + " [ 89.49999982 2109.5 ]\n", + " [2007.99999998 4028.00000026]\n", + " [1649.60000006 4027.99999978]\n", + " [1291.19999989 4028.00000025]\n", + " [ 932.8000001 4027.99999984]\n", + " [ 574.40000016 4027.9999998 ]\n", + " [ 215.99999996 4028.00000004]\n", + " [2007.99999998 3669.60000024]\n", + " [1649.59999998 3669.60000005]\n", + " [1291.20000009 3669.59999982]\n", + " [ 932.79999983 3669.60000022]\n", + " [ 574.39999986 3669.60000015]\n", + " [ 216.00000022 3669.59999982]\n", + " [2007.99999999 3311.20000008]\n", + " [1649.59999996 3311.2000001 ]\n", + " [1291.19999979 3311.20000031]\n", + " [ 932.80000004 3311.19999996]\n", + " [ 574.. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]]\n", + "39999992 3311.20000007]\n", + " [ 216.00000024 3311.19999984]\n", + " [2008.00000001 2952.79999992]\n", + " [1649.6000001 2952.79999982]\n", + " [1291.20000006 2952.79999994]\n", + " [ 932.79999988 2952.80000009]\n", + " [ 574.39999983 2952.8000001 ]\n", + " [ 215.99999999 2952.8 ]\n", + " [2008.00000001 2594.39999996]\n", + " [1649.60000003 2594.39999997]\n", + " [1291.19999974 2594.40000016]\n", + " [ 932.80000041 2594.39999982]\n", + " [ 574.40000002 2594.39999999]\n", + " [ 215.99999998 2594.40000001]\n", + " [2008.00000001 2235.99999999]\n", + " [1649.59999976 2236.00000009]\n", + " [1291.19999986 2236.00000003]\n", + " [ 932.79999992 2236.00000001]\n", + " [ 574.39999976 2236.00000003]\n", + " [ 216.00000019 2235.99999998]]\n", + "DEBUG:root:mm_to_pix: fitpx.shape: (96, 2)\n", + "DEBUG:root:fitpix2pix: ccdpx: shape: (96, 2)\n", + "DEBUG:root:fitpix2pix: visCut: True\n", + "DEBUG:root:radec2pix: lat: [73.24108038 74.22539246 75.14065481 75.95980834 76.6531185 77.19018187\n", + " 77.5432879 77.69182998 73.24108038 74.24861044 75.19133398 76.04212851\n", + " 76.77071823 77.34548632 77.73675519 77.92139244 77.69182998 79.29098794\n", + " 80.92271511 82.58149911 84.2618841 85.95783408 87.66008742 89.3157252\n", + " 77.92139244 79.52414159 81.15801466 82.81709844 84.49494889 86.18266378\n", + " 87.85870936 89.3157252 73.68081786 74.84436919 75.87765867 76.72697854\n", + " 77.33670031 77.65849826 73.69035695 74.88520803 75.9561532 76.84869716\n", + " 77.50496612 77.87275428 78.38454537 80.36704866 82.39295371 84.45217978\n", + " 86.53330534 88.61095022 78.61571107 80.60164359 82.62842612 84.684393\n", + " 86.75213987 88.75761015 73.24806584 73.24806584 89.30770045 89.30770045\n", + " 74.1417384 75.39152116 76.51854281 77.46407515 78.16380788 78.55793051\n", + " 75.35984123 76.77406669 78.07566348 79.19387762 80.04201199 80.52949342\n", + " 76.4480688 78.03443361 79.53211824 80.86193095 81.91012885 82.53435821\n", + " 77.34827857 79.10130772 80.80570953 82.38629346 83.70950064 84.55228195\n", + " 77.99844552 79.88985033 81.78208758 83.62548455 85.30897599 86.53756064\n", + " 78.34312947 80.31550148 82.32609465 84.35907996 86.38425999 88.27008044]\n", + "DEBUG:root:optics_fp: xyfp: [[32.2358199 31.31614388]\n", + " [32.23338667 26.92971599]\n", + " [32.23095344 22.54328809]\n", + " [32.2285202 18.15686019]\n", + " [32.22608698 13.7704323 ]\n", + " [32.22365375 9.3840044 ]\n", + " [32.22122051 4.99757651]\n", + " [32.21878728 0.61114861]\n", + " [32.2358199 31.31614388]\n", + " [27.849392 31.31857712]\n", + " [23.46296411 31.32101035]\n", + " [19.07653621 31.32344358]\n", + " [14.69010831 31.3258768 ]\n", + " [10.30368042 31.32831004]\n", + " [ 5.91725252 31.33074327]\n", + " [ 1.53082462 31.3331765 ]\n", + " [32.21878728 0.61114861]\n", + " [27.83235938 0.61358184]\n", + " [23.44593149 0.61601507]\n", + " [19.0595036 0.6184483 ]\n", + " [14.6730757 0.62088153]\n", + " [10.2866478 0.62331476]\n", + " [ 5.90021991 0.625748 ]\n", + " [ 1.513792 0.62818122]\n", + " [ 1.53082462 31.3331765 ]\n", + " [ 1.52839139 26.94674861]\n", + " [ 1.52595816 22.5603207 ]\n", + " [ 1.52352493 18.17389281]\n", + " [ 1.5210917 13.78746492]\n", + " [ 1.51865847 9.40103702]\n", + " [ 1.51622524 5.01460912]\n", + " [ 1.513792 0.62818122]\n", + " [32.219759 29.4036525 ]\n", + " [32.21677684 24.02765333]\n", + " [32.21379467 18.65165415]\n", + " [32.21081251 13.27565498]\n", + " [32.20783035 7.89965581]\n", + " [32.20484818 2.52365664]\n", + " [30.32331188 31.30220479]\n", + " [24.9473127 31.30518695]\n", + " [19.57131353 31.30816912]\n", + " [14.19531435 31.31115127]\n", + " [ 8.81931518 31.31413344]\n", + " [ 3.44331601 31.3171156 ]\n", + " [30.3062959 0.62720951]\n", + " [24.93029672 0.63019167]\n", + " [19.55429755 0.63317383]\n", + " [14.17829838 0.636156 ]\n", + " [ 8.80229921 0.63913816]\n", + " [ 3.42630004 0.64212033]\n", + " [ 1.54476372 29.42066847]\n", + " [ 1.54178156 24.0446693 ]\n", + " [ 1.53879939 18.66867013]\n", + " [ 1.53581723 13.29267096]\n", + " [ 1.53283507 7.91667178]\n", + " [ 1.5298529 2.54067261]\n", + " [32.22081158 31.30115221]\n", + " [32.22081158 31.30115221]\n", + " [ 1.52880032 0.6431729 ]\n", + " [ 1.52880032 0.6431729 ]\n", + " [30.32225929 29.40470508]\n", + " [24.94626012 29.40768724]\n", + " [19.57026095 29.41066941]\n", + " [14.19426178 29.41365157]\n", + " [ 8.8182626 29.41663373]\n", + " [ 3.44226343 29.4196159 ]\n", + " [30.31927713 24.02870591]\n", + " [24.94327796 24.03168807]\n", + " [19.56727878 24.03467023]\n", + " [14.19127961 24.0376524 ]\n", + " [ 8.81528044 24.04063456]\n", + " [ 3.43928127 24.04361672]\n", + " [30.31629496 18.65270673]\n", + " [24.9402958 18.6556889 ]\n", + " [19.56429662 18.65867106]\n", + " [14.18829744 18.66165322]\n", + " [ 8.81229827 18.66463538]\n", + " [ 3.4362991 18.66761755]\n", + " [30.31331281 13.27670756]\n", + " [24.93731363 13.27968972]\n", + " [19.56131446 13.28267189]\n", + " [14.18531529 13.28565406]\n", + " [ 8.80931611 13.28863621]\n", + " [ 3.43331694 13.29161838]\n", + " [30.31033064 7.90070839]\n", + " [24.93433147 7.90369055]\n", + " [19.55833229 7.90667271]\n", + " [14.18233312 7.90965488]\n", + " [ 8.80633395 7.91263704]\n", + " [ 3.43033477 7.9156192 ]\n", + " [30.30734847 2.52470921]\n", + " [24.9313493 2.52769138]\n", + " [19.55535013 2.53067354]\n", + " [14.17935096 2.53365571]\n", + " [ 8.80335178 2.53663787]\n", + " [ 3.42735261 2.53962004]]\n", + "DEBUG:root:optics_fp: xyfp shape: (96, 2)\n", + "DEBUG:root:optics_fp: xyfp: [[32.31363499 31.47041645]\n", + " [32.3144687 27.08398795]\n", + " [32.31530242 22.69755946]\n", + " [32.31613613 18.31113097]\n", + " [32.31696984 13.92470248]\n", + " [32.31780355 9.53827398]\n", + " [32.31863726 5.15184549]\n", + " [32.31947097 0.765417 ]\n", + " [32.31363499 31.47041645]\n", + " [27.9272065 31.46958273]\n", + " [23.540778 31.46874902]\n", + " [19.15434951 31.46791531]\n", + " [14.76792102 31.4670816 ]\n", + " [10.38149253 31.46624788]\n", + " [ 5.99506403 31.46541417]\n", + " [ 1.60863554 31.46458045]\n", + " [32.31947097 0.765417 ]\n", + " [27.93304248 0.76458329]\n", + " [23.54661399 0.76374957]\n", + " [19.1601855 0.76291586]\n", + " [14.77375701 0.76208215]\n", + " [10.38732851 0.76124844]\n", + " [ 6.00090002 0.76041472]\n", + " [ 1.61447153 0.75958101]\n", + " [ 1.60863554 31.46458045]\n", + " [ 1.60946926 27.07815197]\n", + " [ 1.61030297 22.69172348]\n", + " [ 1.61113668 18.30529498]\n", + " [ 1.61197039 13.91886648]\n", + " [ 1.6128041 9.53243799]\n", + " [ 1.61363782 5.1460095 ]\n", + " [ 1.61447153 0.75958101]\n", + " [32.29899849 29.55791363]\n", + " [32.30002028 24.18191372]\n", + " [32.30104209 18.80591382]\n", + " [32.30206388 13.42991392]\n", + " [32.30308568 8.05391402]\n", + " [32.30410748 2.67791411]\n", + " [30.40113787 31.45505294]\n", + " [25.02513797 31.45403115]\n", + " [19.64913807 31.45300935]\n", + " [14.27313817 31.45198755]\n", + " [ 8.89713826 31.45096576]\n", + " [ 3.52113836 31.44994396]\n", + " [30.40696816 0.7800535 ]\n", + " [25.03096826 0.7790317 ]\n", + " [19.65496836 0.7780099 ]\n", + " [14.27896845 0.77698811]\n", + " [ 8.90296855 0.77596631]\n", + " [ 3.52696865 0.77494451]\n", + " [ 1.62399904 29.55208334]\n", + " [ 1.62502084 24.17608344]\n", + " [ 1.62604264 18.80008353]\n", + " [ 1.62706443 13.42408364]\n", + " [ 1.62808623 8.04808373]\n", + " [ 1.62910803 2.67208383]\n", + " [32.29863784 31.4554136 ]\n", + " [32.29863784 31.4554136 ]\n", + " [ 1.62946868 0.77458386]\n", + " [ 1.62946868 0.77458386]\n", + " [30.40149852 29.55755297]\n", + " [25.02549862 29.55653118]\n", + " [19.64949872 29.55550938]\n", + " [14.27349882 29.55448759]\n", + " [ 8.89749891 29.55346579]\n", + " [ 3.52149901 29.55244399]\n", + " [30.40252032 24.18155307]\n", + " [25.02652042 24.18053128]\n", + " [19.65052052 24.17950948]\n", + " [14.27452061 24.17848769]\n", + " [ 8.89852071 24.17746589]\n", + " [ 3.52252081 24.17644409]\n", + " [30.40354212 18.80555317]\n", + " [25.02754221 18.80453137]\n", + " [19.65154231 18.80350958]\n", + " [14.27554241 18.80248779]\n", + " [ 8.89954251 18.80146598]\n", + " [ 3.5235426 18.80044419]\n", + " [30.40456392 13.42955327]\n", + " [25.02856401DEBUG:root:radec2pix: xyfp: [[32.275486 31.41357429]\n", + " [32.27502267 27.02714574]\n", + " [32.27455935 22.64071719]\n", + " [32.27409601 18.25428864]\n", + " [32.27363269 13.8678601 ]\n", + " [32.27316936 9.48143155]\n", + " [32.27270604 5.095003 ]\n", + " [32.27224271 0.70857446]\n", + " [32.275486 31.41357429]\n", + " [27.88905745 31.41403761]\n", + " [23.5026289 31.41450094]\n", + " [19.11620036 31.41496427]\n", + " [14.72977181 31.41542759]\n", + " [10.34334326 31.41589092]\n", + " [ 5.95691471 31.41635424]\n", + " [ 1.57048617 31.41681757]\n", + " [32.27224271 0.70857446]\n", + " [27.88581416 0.70903778]\n", + " [23.49938562 0.70950111]\n", + " [19.11295707 0.70996444]\n", + " [14.72652852 0.71042776]\n", + " [10.34009998 0.71089109]\n", + " [ 5.95367142 0.71135442]\n", + " [ 1.56724288 0.71181774]\n", + " [ 1.57048617 31.41681757]\n", + " [ 1.57002284 27.03038902]\n", + " [ 1.56955951 22.64396047]\n", + " [ 1.56909619 18.25753194]\n", + " [ 1.56863286 13.87110338]\n", + " [ 1.56816953 9.48467484]\n", + " [ 1.56770621 5.09824629]\n", + " [ 1.56724288 0.71181774]\n", + " [32.26028399 29.50107588]\n", + " [32.25971613 24.12507591]\n", + " [32.25914828 18.74907594]\n", + " [32.25858043 13.37307597]\n", + " 13.42853147]\n", + " [19.65256411 13.42750967]\n", + " [14.27656421 13.42648788]\n", + " [ 8.9005643 13.42546608]\n", + " [ 3.5245644 13.42444429]\n", + " [30.40558571 8.05355336]\n", + " [25.02958581 8.05253157]\n", + " [19.6535859 8.05150977]\n", + " [14.277586 8.05048797]\n", + " [ 8.9015861 8.04946618]\n", + " [ 3.5255862 8.04844438]\n", + " [30.40660751 2.67755346]\n", + " [25.0306076 2.67653166]\n", + " [19.6546077 2.67550987]\n", + " [14.2786078 2.67448807]\n", + " [ 8.90260789 2.67346627]\n", + " [ 3.52660799 2.67244448]]\n", + "DEBUG:root:radec2pix: curVec: [[ 0.28745645 0.35010228 -0.89151399]\n", + " [ 0.30911222 0.36111646 -0.87979801]\n", + " [ 0.33090951 0.37222515 -0.86714897]\n", + " [ 0.35274851 0.38334969 -0.85358743]\n", + " [ 0.37453303 0.39441991 -0.83914119]\n", + " [ 0.39616986 0.405373 -0.82384596]\n", + " [ 0.41756857 0.41615264 -0.80774592]\n", + " [ 0.43864177 0.42670845 -0.79089399]\n", + " [ 0.28745645 0.35010228 -0.89151399]\n", + " [ 0.27132239 0.37136402 -0.88795998]\n", + " [ 0.25475573 0.39288501 -0.88359543]\n", + " [ 0.2378044 0.41454552 -0.87840827]\n", + " [ 0.22052032 0.43623435 -0.87239348]\n", + " [ 0.20295965 0 [32.25801258 7.997076 ]\n", + " [32.25744472 2.62107603]\n", + " [30.36298443 31.3987763 ]\n", + " [24.98698446 31.39934415]\n", + " [19.61098448 31.399912 ]\n", + " [14.23498451 31.40047985]\n", + " [ 8.85898454 31.40104771]\n", + " [ 3.48298457 31.40161556]\n", + " [30.35974431 0.72377647]\n", + " [24.98374433 0.72434432]\n", + " [19.60774436 0.72491217]\n", + " [14.23174439 0.72548003]\n", + " [ 8.85574442 0.72604788]\n", + " [ 3.47974445 0.72661573]\n", + " [ 1.58528416 29.504316 ]\n", + " [ 1.5847163 24.12831603]\n", + " [ 1.58414845 18.75231606]\n", + " [ 1.5835806 13.37631609]\n", + " [ 1.58301275 8.00031612]\n", + " [ 1.5824449 2.62431615]\n", + " [32.26048441 31.39857587]\n", + " [32.26048441 31.39857587]\n", + " [ 1.58224447 0.72681616]\n", + " [ 1.58224447 0.72681616]\n", + " [30.36278399 29.50127631]\n", + " [24.98678403 29.50184416]\n", + " [19.61078405 29.50241201]\n", + " [14.23478409 29.50297987]\n", + " [ 8.85878411 29.50354772]\n", + " [ 3.48278414 29.50411557]\n", + " [30.36221615 24.12527634]\n", + " [24.98621618 24.12584419]\n", + " [19.6102162 24.12641204]\n", + " [14.23421623 24.1269799 ]\n", + " [ 8.85821626 24.12754775]\n", + " [ 3.48221629 24.1281156 ]\n", + " [30.36164829 18.74927637]\n", + " .45784738 -0.86555367]\n", + " [ 0.18518277 0.47928662 -0.85789957]\n", + " [ 0.16725396 0.50045977 -0.84945049]\n", + " [ 0.43864177 0.42670845 -0.79089399]\n", + " [ 0.42341066 0.44967599 -0.78645719]\n", + " [ 0.4075298 0.47275441 -0.78129555]\n", + " [ 0.39104358 0.49583082 -0.77539455]\n", + " [ 0.3740009 0.51879691 -0.76874774]\n", + " [ 0.35645604 0.54154795 -0.76135728]\n", + " [ 0.33846904 0.56398284 -0.7532344 ]\n", + " [ 0.32010545 0.58600483 -0.74439965]\n", + " [ 0.16725396 0.50045977 -0.84945049]\n", + " [ 0.18873794 0.51347704 -0.83708979]\n", + " [ 0.21049528 0.52634415 -0.82380433]\n", + " [ 0.23243115 0.53898679 -0.8096104 ]\n", + " [ 0.25445224 0.55133586 -0.79453308]\n", + " [ 0.27646598 0.56332711 -0.77860717]\n", + " [ 0.29838052 0.57490132 -0.76187764]\n", + " [ 0.32010545 0.58600483 -0.74439965]\n", + " [ 0.29682023 0.35496018 -0.88651059]\n", + " [ 0.32346999 0.3685347 -0.87152128]\n", + " [ 0.35023279 0.38217184 -0.85515009]\n", + " [ 0.37693008 0.39573894 -0.83744517]\n", + " [ 0.40339024 0.40912027 -0.81847231]\n", + " [ 0.42944804 0.42221463 -0.79831647]\n", + " [ 0.28055187 0.35937055 -0.89002441]\n", + " [[24.98564832 18.74984422]\n", + " [19.60964835 18.75041208]\n", + " [14.23364838 18.75097993]\n", + " [ 8.85764841 18.75154778]\n", + " [ 3.48164844 18.75211563]\n", + " [30.36108043 13.3732764 ]\n", + " [24.98508046 13.37384425]\n", + " [19.60908049 13.3744121 ]\n", + " [14.23308053 13.37497996]\n", + " [ 8.85708056 13.37554781]\n", + " [ 3.48108059 13.37611567]\n", + " [30.36051258 7.99727643]\n", + " [24.98451261 7.99784428]\n", + " [19.60851265 7.99841214]\n", + " [14.23251268 7.99897999]\n", + " [ 8.85651271 7.99954784]\n", + " [ 3.48051273 8.00011569]\n", + " [30.35994473 2.62127646]\n", + " [24.98394476 2.62184431]\n", + " [19.60794479 2.62241216]\n", + " [14.23194482 2.62298002]\n", + " [ 8.85594485 2.62354787]\n", + " [ 3.47994488 2.62411572]]\n", + " 0.26048143 0.38562053 -0.88512498]\n", + " [ 0.23980824 0.41213981 -0.87899533]\n", + " [ 0.21862619 0.4387202 -0.8716233 ]\n", + " [ 0.19703869 0.46516993 -0.86301373]\n", + " [ 0.17515852 0.49131096 -0.85318992]\n", + " [ 0.43201184 0.43666546 -0.78910649]\n", + " [ 0.4129015 0.46490321 -0.78318411]\n", + " [ 0.39285903 0.49319482 -0.77615762]\n", + " [ 0.37197251 0.52133908 -0.76801173]\n", + " [ 0.35034191 0.5491432 -0.7DEBUG:root:cartToSphere: vec: [[0.20658103 0.20098859 0.9575635 ]\n", + " [0.20838989 0.17447006 0.96235848]\n", + " [0.20993522 0.14727238 0.9665599 ]\n", + " [0.21121099 0.11949936 0.97010815]\n", + " [0.21221385 0.09125926 0.97295274]\n", + " [0.21294172 0.06266255 0.97505345]\n", + " [0.21339307 0.03382097 0.97638084]\n", + " [0.21356684 0.00484709 0.97691643]\n", + " [0.20658103 0.20098859 0.9575635 ]\n", + " [0.18015754 0.20282418 0.96249967]\n", + " [0.1530338 0.20440426 0.96685033]\n", + " [0.12531307 0.20572264 0.97055388]\n", + " [0.09710338 0.20677589 0.97355774]\n", + " [0.06851504 0.2075618 0.97581955]\n", + " [0.03965966 0.2080787 0.97730771]\n", + " [0.01064976 0.20832528 0.97800162]\n", + " [0.21356684 0.00484709 0.97691643]\n", + " [0.18621882 0.00490326 0.98249606]\n", + " [0.15815829 0.00495363 0.98740135]\n", + " [0.12949192 0.00499813 0.99156788]\n", + " [0.10032565 0.0050366 0.99494191]\n", + " [0.07076705 0.00506881 0.99747999]\n", + " [0.04092766 0.00509451 0.99914912]\n", + " [0.01092393 0.00511348 0.99992726]\n", + " [0.01064976 0.20832528 0.97800162]\n", + " [0.01072986 0.18083307 0.98345527]\n", + " [0.01079662 0.15264908 0.98822148]\n", + " [0.01085001 0.12387974 0.99223792]\n", + " [0.01088978 0.09463112 0.99545284]\n", + " [0.0109156 0.06501141 0.99782482]\n", + " [0.01092708 0.0351331 0.9993229 ]\n", + " [0.01092393 0.00511348 0.99992726]\n", + " [0.20731213 0.18952259 0.95974104]\n", + " [0.20935192 0.15655094 0.96522722]\n", + " [0.21098964 0.12266162 0.96976157]\n", + " [0.21221814 0.08805229 0.97324727]\n", + " [0.21303349 0.05292621 0.97561035]\n", + " [0.21343308 0.01748945 0.97680113]\n", + " [0.19515895 0.20172997 0.95980102]\n", + " [0.16228971 0.20380791 0.96546589]\n", + " [0.12847052 0.20549566 0.97018908]\n", + " [0.09389848 0.20678588 0.97386995]\n", + " [0.05877657 0.20767444 0.97643056]\n", + " [0.02331064 0.20815839 0.97781731]\n", + " [0.20173739 0.00497187 0.97942703]\n", + " [0.16772694 0.00503783 0.98582062]\n", + " [0.13275239 0.00509482 0.99113614]\n", + " [0.09700904 0.00514259 0.99527021]\n", + " [0.06069518 0.00518073 0.9981429 ]\n", + " [0.02401827 0.00520877 0.99969795]\n", + " [0.01078606 0.19643015 0.98045849]\n", + " [0.01087623 0.16225698 0.98668859]\n", + " [0.01094616 0.1271506 0.99182302]\n", + " [0.01099551 0.09130636 0.99576214]\n", + " [0.01102363 0.0549237 0.DEBUG:root:optics_fp: xyfp shape: (96, 2)\n", + "DEBUG:root:make_az_asym: xyp: [[32.2358199 31.31614388]\n", + " [32.23338667 26.92971599]\n", + " [32.23095344 22.54328809]\n", + " [32.2285202 18.15686019]\n", + " [32.22608698 13.7704323 ]\n", + " [32.22365375 9.3840044 ]\n", + " [32.22122051 4.99757651]\n", + " [32.21878728 0.61114861]\n", + " [32.2358199 31.31614388]\n", + " [27.849392 31.31857712]\n", + " [23.46296411 31.32101035]\n", + " [19.07653621 31.32344358]\n", + " [14.69010831 31.3258768 ]\n", + " [10.30368042 31.32831004]\n", + " [ 5.91725252 31.33074327]\n", + " [ 1.53082462 31.3331765 ]\n", + " [32.21878728 0.61114861]\n", + " [27.83235938 0.61358184]\n", + " [23.44593149 0.61601507]\n", + " [19.0595036 0.6184483 ]\n", + " [14.6730757 0.62088153]\n", + " [10.2866478 0.62331476]\n", + " [ 5.90021991 0.625748 ]\n", + " [ 1.513792 0.62818122]\n", + " [ 1.53082462 31.3331765 ]\n", + " [ 1.52839139 26.94674861]\n", + " [ 1.52595816 22.5603207 ]\n", + " [ 1.52352493 18.17389281]\n", + " [ 1.5210917 13.78746492]\n", + " [ 1.51865847 9.40103702]\n", + " [ 1.51622524 5.01460912]\n", + " [ 1.513792 0.62818122]\n", + " [32.219759 29.4036525 ]\n", + " [32.21677684 24.02765333]\n", + " [32.213799984297 ]\n", + " [0.01102984 0.01821176 0.99977331]\n", + " [0.2064986 0.20090587 0.95759864]\n", + " [0.2064986 0.20090587 0.95759864]\n", + " [0.01102671 0.00521618 0.9999256 ]\n", + " [0.01102671 0.00521618 0.9999256 ]\n", + " [0.19592714 0.19029998 0.96197634]\n", + " [0.16292559 0.19225876 0.96772508]\n", + " [0.1289709 0.19384904 0.97251687]\n", + " [0.09426176 0.19506507 0.97625014]\n", + " [0.0590016 0.19590316 0.97884665]\n", + " [0.02339654 0.19636024 0.98025265]\n", + " [0.19785166 0.15719218 0.96754604]\n", + " [0.16451646 0.15880644 0.97350647]\n", + " [0.13022261 0.16011755 0.97847046]\n", + " [0.09517088 0.16112232 0.98233503]\n", + " [0.05956467 0.16181718 0.98502145]\n", + " [0.02361044 0.1621981 0.98647571]\n", + " [0.19939573 0.12316354 0.97214818]\n", + " [0.16579218 0.12442767 0.97827946]\n", + " [0.13122742 0.12545686 0.98338189]\n", + " [0.09590173 0.12624866 0.98735208]\n", + " [0.06001727 0.12679897 0.99011108]\n", + " [0.02378066 0.1271029 0.99160442]\n", + " [0.20055377 0.08841323 0.97568503]\n", + " [0.16674959 0.08932369 0.98194493]\n", + " [0.13198281 0.09006766 0.98715164]\n", + " [0.09645193 0.09064294 0.99120174]\n", + " [0.06035751 0.0910454 0.99401595]\n", + " [0.0239064 0.09127018 0.99553917]\n", + " [0.20132229 0.05314506 0.97808228]\n", + " [0.16738526 0.05369842 0.98442808]\n", + " [0.13248471 0.05415286 0.98970464]\n", + " [0.09681723 0.05450669 0.99380856]\n", + " [0.06058199 0.05475678 0.99666018]\n", + " [0.02398618 0.05489951 0.99820374]\n", + " [0.20169858 0.0175654 0.97929012]\n", + " [0.16769559 0.01775879 0.98567886]\n", + " [0.13272857 0.01791986 0.99099042]\n", + " [0.09699294 0.01804791 0.99512142]\n", + " [0.06068709 0.01814173 0.99799196]\n", + " [0.02401844 0.01819993 0.99954584]]\n", + "5875048]\n", + " [ 0.32808009 0.57642282 -0.74839841]\n", + " [ 0.17664299 0.50607666 -0.84420594]\n", + " [ 0.20317026 0.52193859 -0.82843343]\n", + " [ 0.23001354 0.53750066 -0.81128713]\n", + " [ 0.25700052 0.55263354 -0.7928095 ]\n", + " [ 0.28396074 0.56721899 -0.77306463]\n", + " [ 0.31072568 0.58115025 -0.75213957]\n", + " [ 0.28747576 0.35021181 -0.89146474]\n", + " [ 0.28747576 0.35021181 -0.89146474]\n", + " [ 0.32009494 0.58589322 -0.74449202]\n", + " [ 0.32009494 0.58589322 -0.74449202]\n", + " [ 0.28991271 0.36419226 -0.88505063]\n", + " [ 0.26987291 0.39063594 -0.88009782]\n", + " [ 0.24920701 0.41732944 -0.87391762]\n", + " [ 0.22800894 0.44406592 -0.86649719]\n", + " [ 0.20638231 0.47065428 -0.85784083]\n", + " [ 0.1844403 0.49691649 -0.84797157]\n", + " [ 0.31661523 0.37795439 -0.87000303]\n", + " [ 0.2966819 0.40489348 -0.8648937 ]\n", + " [ 0.27605843 0.43203273 -0.85856826]\n", + " [ 0.25483848 0.4591685 -0.85101213]\n", + " [ 0.23312595 0.48611078 -0.84222836]\n", + " [ 0.21103497 0.51268097 -0.83223943]\n", + " [ 0.34344076 0.39175045 -0.85356899]\n", + " [ 0.32364449 0.41910918 -0.84829343]\n", + " [ 0.30309711 0.44662575 -0.84181802]\n", + " [ 0.28189149 0.47409855 -0.83412694]\n", + " [ 0.26013135 0.50133765 -0.82522254]\n", + " [ 0.23793126 0.52816317 -0.81512722]\n", + " [ 0.37021111 0.40544903 -0.83579592]\n", + " [ 0.35058342 0.43315441 -0.83034242]\n", + " [ 0.33014675 0.46098135 -0.8237107 ]\n", + " [ 0.30899277 0.48872916 -0.81588435]\n", + " [ 0.28722446 0.51620729 -0.80686563]\n", + " [ 0.26495639 0.54323427 -0.79667725]\n", + " [ 0.39675455 0.41893513 -0.81674916]\n", + " [ 0.37732664 0.44691538 -0.81110496]\n", + " [ 0.35703513 0.47498575 -0.80430993]\n", + " [ 0.33597015 0.50294566 -0.79634774]\n", + " [ 0.31423359 0.53060358 -0.78722112]\n", + " [ 0.29193954 0.55777655 -0.77695342]\n", + " [ 0.4229054 0.43210779 -0.79651358]\n", + " [ 0.40370719 0.46029111 -0.79066592]\n", + " [ 0.3835941 0.48853713 -0.78370086]\n", + " [ 0.36265474 0.51664483 -0.77560277]\n", + " [ 0.3409896 0.54442173 -0.76637528]\n", + " [ 0.31871191 0.57168374 -0.7560426 ]]\n", + "467 18.65165415]\n", + " [32.21081251 13.27565498]\n", + " [32.20783035 7.89965581]\n", + " [32.20484818 2.52365664]\n", + " [30.32331188 31.30220479]\n", + " [24.9473127 31.30518695]\n", + " [19.57131353 31.30816912]\n", + " [14.19531435 31.31115127]\n", + " [ 8.81931518 31.31413344]\n", + " [ 3.44331601 31.3171156 ]\n", + " [30.3062959 0.62720951]\n", + " [24.93029672 0.63019167]\n", + " [19.55429755 0.63317383]\n", + " [14.17829838 0.636156 ]\n", + " [ 8.80229921 0.63913816]\n", + " [ 3.42630004 0.64212033]\n", + " [ 1.54476372 29.42066847]\n", + " [ 1.54178156 24.0446693 ]\n", + " [ 1.53879939 18.66867013]\n", + " [ 1.53581723 13.29267096]\n", + " [ 1.53283507 7.91667178]\n", + " [ 1.5298529 2.54067261]\n", + " [32.22081158 31.30115221]\n", + " [32.22081158 31.30115221]\n", + " [ 1.52880032 0.6431729 ]\n", + " [ 1.52880032 0.6431729 ]\n", + " [30.32225929 29.40470508]\n", + " [24.94626012 29.40768724]\n", + " [19.57026095 29.41066941]\n", + " [14.19426178 29.41365157]\n", + " [ 8.8182626 29.41663373]\n", + " [ 3.44226343 29.4196159 ]\n", + " [30.31927713 24.02870591]\n", + " [24.94327796 24.03168807]\n", + " [19.56727878 24.03467023]\n", + " [14.19127961 24.0376524 ]\n", + " [ 8.81528044 24.04063456]\n", + " [ 3.43928127 24.04361672]\n", + " [30.31629496 18.65270673]\n", + " [24.9402958 18.6556889 ]\n", + " [19.56429662 18.65867106]\n", + " [14.18829744 18.66165322]\n", + " [ 8.81229827 18.66463538]\n", + " [ 3.4362991 18.66761755]\n", + " [30.31331281 13.27670756]\n", + " [24.93731363 13.27968972]\n", + " [19.56131446 13.28267189]\n", + " [14.18531529 13.28565406]\n", + " [ 8.80931611 13.28863621]\n", + " [ 3.43331694 13.29161838]\n", + " [30.31033064 7.90070839]\n", + " [24.93433147 7.90369055]\n", + " [19.55833229 7.90667271]\n", + " [14.18233312 7.90965488]\n", + " [ 8.80633395 7.91263704]\n", + " [ 3.43033477 7.9156192 ]\n", + " [30.30734847 2.52470921]\n", + " [24.9313493 2.52769138]\n", + " [19.55535013 2.53067354]\n", + " [14.17935096 2.53365571]\n", + " [ 8.80335178 2.53663787]\n", + " [ 3.42735261 2.53962004]]\n", + "DEBUGDEBUG:root:radec2pix: curVec Shape: (96, 3)\n", + ":root:cartToSphere: vec: [[-0.20605921 -0.20169937 0.95752648]\n", + " [-0.20787315 -0.17519485 0.96233857]\n", + " [-0.20942436 -0.1480085 0.96655829]\n", + " [-0.21070676 -0.12024402 0.97012578]\n", + " [-0.21171698 -0.09200964 0.97299031]\n", + " [-0.21245291 -0.06341581 0.97511138]\n", + " [-0.21291301 -0.03457423 0.97645925]\n", + " [-0.2130962 -0.00559748 0.97701519]\n", + " [-0.20605921 -0.20169937 0.95752648]\n", + " [-0.17962884 -0.20353396 0.96244865]\n", + " [-0.15250018 -0.20511207 0.96678474]\n", + " [-0.12477652 -0.20642749 0.97047334]\n", + " [-0.0965659 -0.20747679 0.97346207]\n", + " [-0.06797863 -0.20825778 0.97570877]\n", + " [-0.03912632 -0.20876879 0.97718203]\n", + " [-0.01012153 -0.20900854 0.97786143]\n", + " [-0.2130962 -0.00559748 0.97701519]\n", + " [-0.18573503 -0.00565735 0.98258358]\n", + " [-0.15766321 -0.00571045 0.98747643]\n", + " [-0.1289874 -0.00575671 0.99162952]\n", + " [-0.09981355 -0.00579596 0.99498928]\n", + " [-0.07024926 -0.00582797 0.99751244]\n", + " [-0.04040619 -0.00585246 0.9991662 ]\n", + " [-0.01040084 -0.00586919 0.99992869]\n", + " [-0.01012153 -0.20900854 0.97786143]\n", + " [-0.01020027 -0.18153487 0.98333161]\n", + " [-0.01026637 -0.15336672 0.98811601]\n", + " [-0.01031977 -0.12461057 0.99215206]\n", + " [-0.01036027 -0.09537244 0.99538774]\n", + " [-0.01038751 -0.06576046 0.99778137]\n", + " [-0.01040113 -0.03588698 0.99930173]\n", + " [-0.01040084 -0.00586919 0.99992869]\n", + " [-0.20679239 -0.1902398 0.95971127]\n", + " [-0.20883895 -0.15728353 0.96521924]\n", + " [-0.21048459 -0.12340547 0.96977695]\n", + " [-0.2117221 -0.08880315 0.97328709]\n", + " [-0.21254753 -0.0536798 0.97567516]\n", + " [-0.21295821 -0.01824146 0.97689101]\n", + " [-0.1946339 -0.20244048 0.95975804]\n", + " [-0.16175754 -0.20451655 0.96540534]\n", + " [-0.12793421 -0.20620095 0.97011031]\n", + " [-0.09336102 -0.20748634 0.97377263]\n", + " [-0.05824097 -0.2083686 0.97631476]\n", + " [-0.02277993 -0.2088448 0.97768345]\n", + " [-0.20126076 -0.00572401 0.97952098]\n", + " [-0.16723544 -0.00579384 0.98589996]\n", + " [-0.13224882 -0.00585326 0.99119927]\n", + " [-0.09649617 -0.00590199 0.99531586]\n", + " [-0.06017591 -0.0059396 0.99817012]\n", + " [-0.02349561 -0.005DEBUG:root:make_az_asym: xyp: shape: (96, 2)\n", + "DEBUG:root:optics_fp: rtanth: [45.10526614 42.15252235 39.46728719 37.10767964 35.13935868 33.63109692\n", + " 32.64672024 32.23425998 45.10526614 42.08371704 39.32015966 36.87264817\n", + " 34.80791464 33.1974573 32.10970154 31.5986741 32.23425998 27.84962696\n", + " 23.46566508 19.08283694 14.70215645 10.32635724 5.96618932 1.74318313\n", + " 31.5986741 27.21812469 22.83983208 18.46540167 14.09842896 9.748941\n", + " 5.45889306 1.74318313 43.77728663 40.33061683 37.34259278 34.93111177\n", + " 33.22196043 32.3267303 43.74864122 40.21129183 37.11812392 34.58850978\n", + " 32.75328451 31.73315358 30.32290674 24.94961031 19.57779834 14.20915457\n", + " 8.84944693 3.53950567 29.68929466 24.32204857 18.9597634 13.60830488\n", + " 8.2886698 3.16557807 45.08405409 45.08405409 1.76362955 1.76362955\n", + " 42.40073703 38.740507 35.51948783 32.86706408 30.92986484 29.84747775\n", + " 38.83207862 34.7984872 31.1727741 28.11319496 25.82178089 24.5148885\n", + " 35.71891532 31.28650338 27.19655174 23.62757526 20.84885967 19.20651814\n", + " 33.18967076 28.36474267 23.77742123 19.59529652 16.13655116 13.95004204\n", + " 31.3858301 26.23117825 21.1868319 16.35517444 11.99601471 8.83853824\n", + " 30.43664187 25.08771711 19.753498 14.45027919 9.23164159 4.4089223 ]\n", + "DEBUG:root:radec2pix: ccdpx: [[-4.45000001e+01 -5.00000082e-01]\n", + " [-4.45000001e+01 2.91928571e+02]\n", + " [-4.45000003e+01 5.84357143e+02]\n", + " [-4.44999997e+01 8.76785714e+02]\n", + " [-4.45000002e+01 1.16921429e+03]\n", + " [-4.44999997e+01 1.46164286e+03]\n", + " [-4.45000001e+01 1.75407143e+03]\n", + " [-4.44999998e+01 2.04650000e+03]\n", + " [-4.45000001e+01 -5.00000082e-01]\n", + " [ 2.47928572e+02 -4.99999837e-01]\n", + " [ 5.40357143e+02 -5.00000111e-01]\n", + " [ 8.32785714e+02 -5.00000236e-01]\n", + " [ 1.12521429e+03 -4.99999746e-01]\n", + " [ 1.41764286e+03 -4.99999876e-01]\n", + " [ 1.71007143e+03 -4.99999788e-01]\n", + " [ 2.00250000e+03 -5.00000040e-01]\n", + " [-4.44999998e+01 2.04650000e+03]\n", + " [ 2.47928572e+02 2.04650000e+03]\n", + " [ 5.40357143e+02 2.04650000e+03]\n", + " [ 8.32785714e+02 2.04650000e+03]\n", + " [ 1.12521429e+03 2.04650000e+03]\n", + " [ 1.41764286e+03 2.04650000e+03]\n", + " [ 1.71007143e+03 2.04650000e+03]\n", + " [ 2.00250000e+03 2.04650000e+03]\n", + " [ 2.00250000e+03 -5.00000040e-01]\n", + " [ 2.00250000e+03 2.91928572e+02]\n", + " [ 2.00250000e+03 5.84357143e+02]\n", + " [ 2.00250000e+03 8.76785714e+02]\n", + " [ 2.00250000e+03 1.16921429e+03]\n", + " [ 2.00250000e+03 1.46164286e+03]\n", + " [ 2.00250000e+03 1.75407143e+03]\n", + " [ 2.00250000e+03 2.04650000e+03]\n", + " [-4.35000002e+01 1.27000000e+02]\n", + " [-4.35000000e+01 4.85400000e+02]\n", + " [-4.34999999e+01 8.43800000e+02]\n", + " [-4.35000002e+01 1.20220000e+03]\n", + " [-4.35000002e+01 1.56060000e+03]\n", + " [-4.34999998e+01 1.91900000e+03]\n", + " [ 8.29999997e+01 4.99999723e-01]\n", + " [ 4.41400000e+02 4.99999738e-01]\n", + " [ 7.99800000e+02 4.99999955e-01]\n", + " [ 1.15820000e+03 5.00000275e-01]\n", + " [ 1.51660000e+03 4.99999778e-01]\n", + " [ 1.87500000e+03 5.00000195e-01]\n", + " [ 8.29999999e+01 2.04550000e+03]\n", + " [ 4.41400000e+02 2.04550000e+03]\n", + " [ 7.99800000e+02 2.04550000e+03]\n", + " [ 1.15820000e+03 2.04550000e+03]\n", + " [ 1.51660000e+03 2.04550000e+03]\n", + " [ 1.87500000e+03 2.04550000e+03]\n", + " [ 2.00150000e+03 1.27000000e+02]\n", + " [ 2.00150000e+03 4.85400000e+02]\n", + " [ 2.00150000e+03 8.43800000e+02]\n", + " [ 2.00150000e+03 1.20220000e+03]\n", + " [ 2.00150000e+03 1.56060000e+03]\n", + " [ 2.00150000e+03 1.91900000e+03]\n", + " [-4.34999997e+01 5.00000254e-01]\n", + " [-4.34999997e+01 5.00000254e-01]\n", + " [ 2.00150000e+03 2.04550000e+03]\n", + " [ 2.00150000e+03 2.04550000e+03]\n", + " [ 8.30000000e+01 1.27000000e+02]\n", + " [ 4.41400000e+02 1.27000000e+02]\n", + " [ 7.99800000e+02 1.27000000e+02]\n", + " [ 1.15820000e+03 1.27000000e+02]\n", + " [ 1.51660000e+03 1.27000000e+02]\n", + " [ 1.87500000e+03 1.27000000e+02]\n", + " [ 8.29999998e+01 4.85400000e+02]\n", + " [ 4.41400000e+02 4.85400000e+02]\n", + " [ 7.99800000e+02 4.85400000e+02]\n", + " [ 1.15820000e+03 4.85400000e+02]\n", + " [ 1.51660000e+03 4.85400000e+02]\n", + " [ 1.87500000e+03 4.85400000e+02]\n", + " [ 8.29999999e+01 8.43800000e+02]\n", + " [ 4.41400000e+02 8.43800000e+02]\n", + " [ 7.99800000e+02 8.43800000e+02]\n", + " [ 1.15820000e+03 8.43800000e+02]\n", + " [ 1.51660000e+03 8.43800000e+02]\n", + " [ 1.87500000e+03 8.43800000e+02]\n", + " [ 8.30000002e+01 1.20220000e+03]\n", + " [ 4.41400000e+02 1.20220000e+03]\n", + " [ 7.99800000e+02 1.20220000e+03]\n", + " [ 1.15820000e+03 1.20220000e+03]\n", + " [ 1.51660000e+03 1.20220000e+03]\n", + " [ 1.87500000e+03 1.20220000e+03]\n", + " [ 8.30000002e+01 1.56060000e+03]\n", + " [ 4.41400000e+02 1.56060000e+03]\n", + " [ 7.99800000e+02 1.56060000e+03]\n", + " [ 1.15820000e+03 1.56060000e+03]\n", + " [ 1.51660000e+03 1.56060000e+03]\n", + " [ 1.87500000e+03 1.56060000e+03]\n", + " [ 8.29999999e+01 1.91900000e+03]\n", + " [ 4.41400000e+02 1.91900000e+03]\n", + " [ 7.99800000e+02 1.91900000e+03]\n", + " [ 1.15820000e+03 1.91900000e+03]\n", + " [ 1.51660000e+03 1.91900000e+03]\n", + " [ 1.87500000e+03 1.91900000e+03]]\n", + "DEBUG:root:radec2pix: lng: [44.21386846 39.93704685 35.05017674 29.50039724 23.26936887 16.39762201\n", + " 9.00597869 1.30015678 44.21386846 48.38707907 53.17846261 58.652901\n", + " 64.84492629 71.73221904 79.20889503 87.07353952 1.30015678 1.50828626\n", + " 1.79395925 2.21040578 2.87397756 4.09690845 7.09544794 25.08421915\n", + " 87.07353952 86.60429547 85.95429853 84.99452258 83.43549808 80.46877478\n", + " 72.72327889 25.08421915 42.4332296 36.78871515 30.1721461 22.534249\n", + " 13.95213213 4.68455031 45.9485209 51.4701262 57.98745342 65.57788622\n", + " 74.19728483 83.61034654 1.41178444 1.72041252 2.19784005 3.03449456\n", + " 4.87874528 12.23608945 86.85702241 86.16514834 85.07964235 83.13325955\n", + " 78.65106614 58.79906907 44.21351009 44.21351009 25.31647093 25.31647093\n", + " 44.16528338 49.72110165 56.36353517 64.20866184 73.23888739 83.20517984\n", + " 38.4669715 43.98823734 50.87875671 59.43072848 69.79141059 81.71788613\n", + " 31.70295803 36.8883708 43.71214181 52.77876171 64.67058062 79.40261268\n", + " 23.79006954 28.17687017 34.3103939 43.22163096 56.45806862 75.32225144\n", + " 14.78760738 17.78662299 22.23218915 29.3788791 42.10872179 66.39896872\n", + " 4.97718101 6.0450351 7.68908472 10.5407344 16.64345121 37.15297361]\n", + "DEBUG:root:make_az_asym: xyp: [[32.31363499 31.47041645]\n", + " [32.3144687 27.08398795]\n", + " [32.31530242 22.69755946]\n", + " [32.31613613 18.31113097]\n", + " [32.31696984 13.92470248]\n", + " [32.31780355 9.53827398]\n", + " [32.31863726 5.15184549]\n", + " [32.31947097 0.765417 ]\n", + " [32.31363499 31.47041645]\n", + " [27.9272065 31.46958273]\n", + " [23.540778 31.46874902]\n", + " [19.15434951 31.46791531]\n", + " [14.76792102 31.4670816 ]\n", + " [10.38149253 31.46624788]\n", + " [ 5.99506403 31.46541417]\n", + " [ 1.60863554 31.46458045]\n", + " [32.31947097 0.765417 ]\n", + " [27.93304248 0.76458329]\n", + " [23.54661399 0.76374957]\n", + " [19.1601855 0.76291586]\n", + " [14.77375701 0.76208215]\n", + " [10.38732851 0.76124844]\n", + " [ 6.00090002 0.76041472]\n", + " [ 1.61447153 0.75958101]\n", + " [ 1.60863554 31.46458045]\n", + " [ 1.60946926 27.07815197]\n", + " [ 1.61030297 22.69172348]\n", + " [ 1.61113668 18.30529498]\n", + " [ 1.61197039 13.91886648]\n", + " [ 1.6128041 9.53243799]\n", + " [ 1.61363782 5.1460095 ]\n", + " [ 1.61447153 0.75958101]\n", + " [32.29899849 29.55791363]\n", + " [32.30002028 24.18191372]\n", + " [32.30104209 18.80591382]\n", + " [32.30206388 13.42991392]\n", + " [32.30308568 8.05391402]\n", + " [32.30410748 2.67791411]\n", + " [30.40113787 31.45505294]\n", + " [25.02513797 31.45403115]\n", + " [19.64913807 31.45300935]\n", + " [14.27313817 31.45198755]\n", + " [ 8.89713826 31.45096576]\n", + " [ 3.52113836 31.44994396]\n", + " [30.40696816 0.7800535 ]\n", + " [25.03096826 0.7790317 ]\n", + " [19.65496836 0.7780099 ]\n", + " [14.27896845 0.77698811]\n", + " [ 8.90296855 0.77596631]\n", + " [ 3.52696865 0.77494451]\n", + " [ 1.62399904 29.55208334]\n", + " [ 1.62502084 24.17608344]\n", + " [ 1.62604264 18.80008353]\n", + " [ 1.62706443 13.42408364]\n", + " [ 1.62808623 8.04808373]\n", + " [ 1.62910803 2.67208383]\n", + " [32.29863784 31.4554136 ]\n", + " [32.29863784 31.4554136 ]\n", + " [ 1.62946868 0.77458386]\n", + " [ 1.62946868 0.77458386]\n", + " [30.40149852 29.55755297]\n", + " [25.02549862 29.55653118]\n", + " [19.64949872 29.55550938]\n", + " [14.27349882 29.55448759]\n", + " [ 8.89749891 29.55346579]\n", + " [ 3.52149901 29.55244399]\n", + " [30.40252032 24.18155307]\n", + " [25.02652042 24.18053128]\n", + " [19.65052052 24.17950948]\n", + " [14.27452061 24.17848769]\n", + " [ 8.89852071 24.17746589]\n", + " [ 3.52252081 24.17644409]\n", + " [30.40354212 18.80555317]\n", + " [25.02754221 18.80453137]\n", + " [19.65154231 18.80350958]\n", + " [14.27554241 18.80248779]\n", + " [ 8.89954251 18.80146598]\n", + " [ 3.5235426 18.80044419]\n", + " [30.40456392 13.42955327]\n", + " [25.02856401 13.42853147]\n", + " [19.65256411 13.42750967]\n", + " [14.27656421 13.42648788]\n", + " [ 8.9005643 13.42546608]\n", + " [ 3.5245644 13.42444429]\n", + " [30.40558571 8.05355336]\n", + " [25.02958581 8.05253157]\n", + " [19.6535859 8.05150977]\n", + " [14.277586 8.05048797]\n", + " [ 8.9015861 8.04946618]\n", + " [ 3.5255862 8.04844438]\n", + " [30.40660751 2.67755346]\n", + " [25.0306076 2.67653166]\n", + " [19.6546077 2.67550987]\n", + " [14.2786078 2.67448807]\n", + " [ 8.90260789 2.67346627]\n", + " [ 3.52660799 2.67244448]]\n", + "96558 0.99970614]\n", + " [-0.01025713 -0.19712185 0.98032534]\n", + " [-0.01034611 -0.16296958 0.98657685]\n", + " [-0.01041588 -0.1278801 0.99173494]\n", + " [-0.01046611 -0.09204872 0.9956995 ]\n", + " [-0.01049618 -0.05567473 0.99839379]\n", + " [-0.01050541 -0.01896706 0.99976492]\n", + " [-0.20597676 -0.2016167 0.95756163]\n", + " [-0.20597676 -0.2016167 0.95756163]\n", + " [-0.01050361 -0.0059719 0.999927 ]\n", + " [-0.01050361 -0.0059719 0.999927 ]\n", + " [-0.19540403 -0.19101701 0.96194063]\n", + " [-0.16239488 -0.19297429 0.96767186]\n", + " [-0.12843557 -0.19456158 0.97244542]\n", + " [-0.09372478 -0.19577312 DEBUG:root:radec2pix: curVec: [[ 1.98950123e-01 3.33149950e-01 -9.21645246e-01]\n", + " [ 1.72608089e-01 3.42544625e-01 -9.23509409e-01]\n", + " [ 1.45607323e-01 3.51848175e-01 -9.24662841e-01]\n", + " [ 1.18047978e-01 3.61008533e-01 -9.25060816e-01]\n", + " [ 9.00316435e-02 3.69977294e-01 -9.24668105e-01]\n", + " [ 6.16630393e-02 3.78709275e-01 -9.23459233e-01]\n", + " [ 3.30507845e-02 3.87162450e-01 -9.21418951e-01]\n", + " [ 4.30706047e-03 3.95298261e-01 -9.18542723e-01]\n", + " [ 1.98950123e-01 3.33149950e-01 -9.21645246e-01]\n", + " [ 1.90478579e-01 3.07504784e-01 -9.32286822e-01]\n", + " [ 1.81782930e-01 2.81717490e-01 -9.42120068e-01]\n", + " [ 1.72896669e-01 2.55893309e-01 -9.51117951e-01]\n", + " [ 1.63853427e-01 2.30140885e-01 -9.59263899e-01]\n", + " [ 1.54686536e-01 2.04572398e-01 -9.66551711e-01]\n", + " [ 1.45428765e-01 1.79303976e-01 -9.72985384e-01]\n", + " [ 1.36112324e-01 1.54456080e-01 -9.78578947e-01]\n", + " [ 4.30706047e-03 3.95298261e-01 -9.18542723e-01]\n", + " [-4.30804669e-03 3.68726252e-01 -9.29528048e-01]\n", + " [-1.28931488e-02 3.41910538e-01 -9.39644055e-01]\n", + " DEBUG:root:make_az_asym: xyp: shape: (96, 2)\n", + "DEBUG:root:optics_fp: cphi: [-0.71462647 -0.76465055 -0.81663789 -0.86852682 -0.91713533 -0.95822269\n", + " -0.98707045 -0.99965519 -0.71462647 -0.66170459 -0.59665476 -0.51729759\n", + " -0.42196448 -0.31030314 -0.18420747 -0.04836971 -0.99965519 -0.99953644\n", + " -0.99934473 -0.99900557 -0.99831831 -0.99657638 -0.98967281 -0.87090507\n", + " -0.04836971 -0.05610053 -0.06679051 -0.08253363 -0.10799424 -0.15602533\n", + " -0.27837409 -0.87090507 -0.73594733 -0.79879708 -0.86266587 -0.92216881\n", + " -0.96955698 -0.99635146 -0.69307094 -0.62034596 -0.5272064 -0.41033606\n", + " -0.26919173 -0.10843276 -0.99959581 -0.99940041 -0.99902199 -0.99813478\n", + " -0.99516407 -0.96924606 -0.05196415 -0.06335735 -0.0811815 -0.11297393\n", + " -0.18526317 -0.48452029 -0.71462988 -0.71462988 -0.86931637 -0.86931637\n", + " -0.71508845 -0.64388103 -0.55091667 -0.43180852 -0.28504096 -0.11526196\n", + " -0.78075859 -0.71676907 -0.62767848 -0.50476226 -0.34135833 -0.1402609\n", + " -0.84875703 -0.7971706 -0.71938094 -0.60051365 -0[-2.14144589e-02 3.14961563e-01 -9.48862811e-01]\n", + " [-2.98391854e-02 2.87991057e-01 -9.57168101e-01]\n", + " [-3.81356901e-02 2.61111416e-01 -9.64555078e-01]\n", + " [-4.62733158e-02 2.34436144e-01 -9.71029595e-01]\n", + " [-5.42219247e-02 2.08081312e-01 -9.76607470e-01]\n", + " [ 1.36112324e-01 1.54456080e-01 -9.78578947e-01]\n", + " [ 1.10135957e-01 1.61850953e-01 -9.80649958e-01]\n", + " [ 8.35785801e-02 1.69414913e-01 -9.81994505e-01]\n", + " [ 5.65454558e-02 1.77095041e-01 -9.82568042e-01]\n", + " [ 2.91421436e-02 1.84843219e-01 -9.82335849e-01]\n", + " [ 1.47488018e-03 1.92615937e-01 -9.81273115e-01]\n", + " [-2.63491572e-02 2.00373839e-01 -9.79365124e-01]\n", + " [-5.42219247e-02 2.08081312e-01 -9.76607470e-01]\n", + " [ 1.87523649e-01 3.37166077e-01 -9.22580033e-01]\n", + " [ 1.54782928e-01 3.48624843e-01 -9.24393295e-01]\n", + " [ 1.21152275e-01 3.59894728e-01 -9.25093461e-01]\n", + " [ 8.68180191e-02 3.70885139e-01 -9.24611727e-01]\n", + " [ 5.19730357e-02 3.81512893e-01 -9.22901249e-01]\n", + " [ 1.68188275e-02 3.91702042e-01 -9.19938388e-01]\n", + " [ 1.95197233e-01 3.22024492e-01 -9.26389911e-01]\n", + " [ 1.84659422e-01 2.90484081e-01 -9.38892910e-01]\n", + " [ 1.73818410e-01 2.58834309e-01 -9.50153651e-01]\n", + " [ 1.62736075e-01 2.27273780e-01 -9.60137281e-01]\n", + " [ 1.51473753e-01 1.96009063e-01 -9.68832364e-01]\n", + " [ 1.40091527e-01 1.65255737e-01 -9.76250432e-01]\n", + " [ 6.47721052e-04 3.83722485e-01 -9.23448231e-01]\n", + " [-9.89523597e-03 3.50978228e-01 -9.36331334e-01]\n", + " [-2.03596538e-02 3.17977513e-01 -9.47879626e-01]\n", + " [-3.06847269e-02 2.84925563e-01 -9.58058386e-01]\n", + " [-4.08121842e-02 2.52029341e-01 -9.66858613e-01]\n", + " [-5.06858264e-02 2.19498775e-01 -9.74295250e-01]\n", + " [ 1.24896367e-01 1.57740555e-01 -9.79550313e-01]\n", + " [ 9.26549419e-02 1.66925762e-01 -9.81606261e-01]\n", + " [ 5.96453195e-02 1.76311642e-01 -9.82525644e-01]\n", + " [ 2.60616941e-02 1.85807612e-01 -9.82240459e-01]\n", + " [-7.90032514e-03 1.95333518e-01 -9.80705053e-01]\n", + " [-4.20430486e-02 2.04818477e-01 -9.77896607e-01]\n", + " [ 1.98832728e-01 3.33094827e-01 -9.21690502e-01]\n", + " [ 1.98832728e-01 3.33094827e-01 -9.21690502e-01]\n", + " [-5.40998210.97616011]\n", + " [-0.05846599 -0.19660523 0.97873802]\n", + " [-0.02286533 -0.1970549 0.98012578]\n", + " [-0.19733483 -0.15792497 0.96753226]\n", + " [-0.16399068 -0.15953875 0.97347545]\n", + " [-0.1296908 -0.16084786 0.97842131]\n", + " [-0.094636 -0.1618491 0.98226722]\n", + " [-0.05902974 -0.16253892 0.98493482]\n", + " [-0.02307851 -0.16291334 0.98637043]\n", + " [-0.19888634 -0.12390793 0.97215793]\n", + " [-0.16527244 -0.1251726 0.97827237]\n", + " [-0.13070023 -0.12620079 0.98335691]\n", + " [-0.09537003 -0.12699006 0.9873085 ]\n", + " [-0.05948408 -0.12753631 0.99004855]\n", + " [-0.02324907 -0.1278347 0.99152295]\n", + " [-0.20005292 -0.089165 0.97571944]\n", + " [-0.16623701 -0.090077 0.98196303]\n", + " [-0.13146138 -0.09082101 0.98715219]\n", + " [-0.09592455 -0.09139481 0.99118387]\n", + " [-0.05982716 -0.09179425 0.99397914]\n", + " [-0.0233762 -0.09201449 0.99548324]\n", + " [-0.20083104 -0.05389991 0.97814196]\n", + " [-0.16688094 -0.05445583 0.9844721 ]\n", + " [-0.13197015 -0.05491134 0.98973159]\n", + " [-0.09629527 -0.05526476 0.9938174 ]\n", + " [-0.0600556 -0.0555129 0.99665021]\n", + " [-0.023458458e-02 2.08144521e-01 -9.76600772e-01]\n", + " [-5.40998218e-02 2.08144521e-01 -9.76600772e-01]\n", + " [ 1.83875818e-01 3.26051666e-01 -9.27297145e-01]\n", + " [ 1.73318104e-01 2.94378095e-01 -9.39841674e-01]\n", + " [ 1.62479752e-01 2.62583302e-01 -9.51131084e-01]\n", + " [ 1.51423084e-01 2.30866055e-01 -9.61130540e-01]\n", + " [ 1.40209803e-01 1.99432642e-01 -9.69828765e-01]\n", + " [ 1.28900152e-01 1.68498142e-01 -9.77237498e-01]\n", + " [ 1.51104667e-01 3.37399457e-01 -9.29154985e-01]\n", + " [ 1.40503686e-01 3.05389484e-01 -9.41804638e-01]\n", + " [ 1.29686398e-01 2.73227214e-01 -9.53167524e-01]\n", + " [ 1.18716197e-01 2.41112218e-01 -9.63208888e-01]\n", + " [ 1.07655639e-01 2.09250131e-01 -9.71918024e-01]\n", + " [ 9.65653846e-02 1.77854302e-01 -9.79307395e-01]\n", + " [ 1.17450415e-01 3.48579168e-01 -9.29891372e-01]\n", + " [ 1.06826451e-01 3.16293699e-01 -9.42627395e-01]\n", + " [ 9.60516379e-02 2.83828090e-01 -9.54052251e-01]\n", + " [ 8.51899278e-02 2.51383197e-01 -9.64131300e-01]\n", + " [ 7.43041335e-02 2.19164401e-01 -9.72854491e-01]\n", + " [ 6.34549058e-02 1.87383371e-01 -9.80235149e-01]\n", + " [ 8.30996280e-02 3.59500767e-01 -9.29437276e-01]\n", + " [ 7.24740000e-02 3.27002063e-01 -9.42240506e-01]\n", + " [ 6.17645213e-02 2.94297995e-01 -9.53715804e-01]\n", + " [ 5.10349898e-02 2.61590960e-01 -9.63828615e-01]\n", + " [ 4.03476684e-02 2.29086539e-01 -9.72569495e-01]\n", + " [ 2.97625197e-02 1.96995168e-01 -9.79952599e-01]\n", + " [ 4.82454090e-02 3.70081763e-01 -9.27745584e-01]\n", + " [ 3.76400740e-02 3.37433963e-01 -9.40596378e-01]\n", + " [ 2.70193550e-02 3.04557745e-01 -9.52110568e-01]\n", + " [ 1.64461617e-02 2.71656987e-01 -9.62253607e-01]\n", + " [ 5.98141671e-03 2.38937790e-01 -9.71016455e-01]\n", + " [-4.31626476e-03 2.06609969e-01 -9.78413865e-01]\n", + " [ 1.30894144e-02 3.80246836e-01 -9.24792415e-01]\n", + " [ 2.52636935e-03 3.47515909e-01 -9.37670683e-01]\n", + " [-7.98268138e-03 3.14535489e-01 -9.49212149e-01]\n", + " [-1.83763125e-02 2.81510548e-01 -9.59382157e-01]\n", + " [-2.85955100e-02 2.48647830e-01 -9.68171758e-01]\n", + " [-3.85834227e-02 2.16157139e-01 -9.75595926e-01]]\n", + "DEBUG:root:radec2pix: camVec: [[0.20581047 0.20764708 0.20921111 0.21050368 0.21152432 0.2122716\n", + " 0.21274377 0.21293946 0.20581047 0.17940008 0.15228099 0.12456525\n", + " 0.09636347 0.06778617 0.03894463 0.00995116 0.21293946 0.18558556\n", + " 0.15752187 0.12885256 0.09968382 0.07012532 0.04029051 0.01029607\n", + " 0.00995116 0.01003858 0.01011374 0.01017639 0.01022623 0.01026295\n", + " 0.01028629 0.01029607 0.20655553 0.20862193 0.21028039 0.21153069\n", + " 0.21237025 0.212796 0.1943962 0.16153559 0.12772204 0.0931597\n", + " 0.05805212 0.02260459 0.2011068 0.16709142 0.1321133 0.09636698\n", + " 0.06005439 0.02338579 0.01009044 0.01019035 0.01027142 0.0103331\n", + " 0.01037483 0.01039617 0.20572824 0.20572824 0.01039877 0.01039877\n", + " 0.19517474 0.1621771 0.12822694 0.09352723 0.05828102 0.02269376\n", + " 0.19712067 0.1637837 0.12949375 0.09445078 0.05885684 0.0229182\n", + " 0.19868404 0.16507817 0.13051704 0.09519827 0.05932353 0.02310025\n", + " 0.19986372 0.16605732 0.13129265 0.09576573 0.05967819 0.02323871\n", + " 0.20065641 0.16671646 0.13181555 0.09614872 0.05991775 0.0233323\n", + " 0.20105858 0.16705125 0.13DEBUG:root:radec2pix: curVec Shape: (96, 3)\n", + "DEBUG:root:radec2pix: xyfp: [[32.2358199 31.31614388]\n", + " [32.23338667 26.92971599]\n", + " [32.23095344 22.54328809]\n", + " [32.2285202 18.15686019]\n", + " [32.22608698 13.7704323 ]\n", + " [32.22365375 9.3840044 ]\n", + " [32.22122051 4.99757651]\n", + " [32.21878728 0.61114861]\n", + " [32.2358199 31.31614388]\n", + " [27.849392 31.31857712]\n", + " [23.46296411 31.32101035]\n", + " [19.07653621 31.32344358]\n", + " [14.69010831 31.3258768 ]\n", + " [10.30368042 31.32831004]\n", + " [ 5.91725252 31.33074327]\n", + " [ 1.53082462 31.3331765 ]\n", + " [32.21878728 0.61114861]\n", + " [27.83235938 0.61358184]\n", + " [23.44593149 0.61601507]\n", + " [19.0595036 0.6184483 ]\n", + " [14.6730757 0.62088153]\n", + " [10.2866478 0.62331476]\n", + " [ 5.90021991 0.625748 ]\n", + " [ 1.513792 0.62818122]\n", + " [ 1.53082462 31.3331765 ]\n", + " [ 1.52839139 26.94674861]\n", + " [ 1.52595816 22.5603207 ]\n", + " [ 1.52352493 18.17389281]\n", + " [ 1.5210917 13.78746492]\n", + " [ 1.51865847 9.40103702]\n", + " [ 1.51622524 5.01460912]\n", + " [ 1.513792 0.62818122]\n", + " [32.219759 29.4036525 ]\n", + " [32.21677684 24.02765333]\n", + " [32.21379.4226937 -0.17893311\n", + " -0.91338303 -0.87922117 -0.82275039 -0.7239943 -0.54602022 -0.24622747\n", + " -0.96582068 -0.95066579 -0.92326613 -0.86731478 -0.73433428 -0.38842227\n", + " -0.99588139 -0.99392405 -0.99016821 -0.98152333 -0.95403253 -0.77825973]\n", + " -0.05565213 0.9981746 ]\n", + " [-0.20121796 -0.018319 0.97937518]\n", + " [-0.16720058 -0.01851594 0.98574902]\n", + " [-0.13222195 -0.01867909 0.99104412]\n", + " [-0.09647752 -0.01880776 0.99515745]\n", + " [-0.06016577 -0.01890068 0.99800944]\n", + " [-0.02349426 -0.01895646 0.99954423]]\n", + "DEBUG:root:radec2pix: lat: [73.24843796 74.22959053 75.14101603 75.95564397 76.6437957 77.17522107\n", + " 77.52247637 77.66531399 73.24843796 74.25938156 75.20604331 76.06127099\n", + " 76.79469021 77.37449152 77.77070397 77.95983585 77.66531399 79.26403549\n", + " 80.8954867 82.55419485 84.2348008 85.93154111 87.63625009 89.30890983\n", + " 77.95983585 79.5631834 81.19741545 82.85654952 84.53396682 86.22024\n", + " 87.89143193 89.30890983 73.68688931 74.8461168 75.87404737 76.71704667\n", + " 77.31977046 77.63442603 73.69912883 74.89851762 75.9747656 76.87322604\n", + " 77.53566935 77.90931811 78.357841 80.33991917 82.36567874 84.42519517\n", + " 86.5076147 88.59172382 78.65442708 80.64093339 82.6678651 84.72327772\n", + " 86.78866387 88.77999774 73.25542451 73.25542451 89.30107513 89.30107513\n", + " 74.14922787 75.40361568 76.5361131 77.48786454 78.19419066 78.59463145\n", + " 75.36296624 76.78183851 78.08930019 79.21461778 80.0707569 80.56622359\n", + " 76.44568445 78.03639269 79.53999931 80.87766645 81.93562678 82.57036945\n", + " 77.33928008 79.09582585 80.80551049 82.39402202 83.72877916 84.58613925\n", + " 77.98201104 79.8754942 81.77128989 83.62092117 85.31596639 86.56531268\n", + " 78.31903282 80.2916347 82.30308639 84.33811541 86.36841377 88.27312586]\n", + "DEBUG:root:radec2pix: fitpx: [[4271.50000008 4155.50000008]\n", + " [4271.50000011 3863.07142867]\n", + " [4271.50000027 3570.64285733]\n", + " [4271.49999971 3278.21428555]\n", + " [4271.50000017 2985.78571436]\n", + " [4271.4999997 2693.35714277]\n", + " [4271.5000001 2400.92857145]\n", + " [4271.49999983 2108.5 ]\n", + " [4271.50000008 4155.50000008]\n", + " [3979.07142843 4155.49999984]\n", + " [3686.64285723 4155.50000011]\n", + " [3394.21428586 4155.50000024]\n", + " [3101.78571417 4155.49999975]\n", + " [2809.35714282 4155.49999988]\n", + " [2516.92857139 4155.49999979]\n", + " [2224.5 4155.50000004]\n", + " [4271.49999983 2108.5 ]\n", + " [3979.07142844 2108.5 ]\n", + " [3686.64285726 2108.5 ]\n", + " [3394.21428608 2108.50000001]\n", + " [3101.7857142 2108.5 ]\n", + " [2809.35714302 2108.50000001]\n", + " [2516.92857112 2108.49999996]\n", + " [2224.50000006 2108.50000003]\n", + " [2224.5 4155.50000004]\n", + " [2224.49999999 3863.07142838]\n", + " [2224.49999998 3570.64285685]\n", + " [2224.50000004 3278.21428613]\n", + " [2224.49999996 2985.78571394]\n", + " [2224.50000004 2693.35714312]\n", + " [2224.49999998 2400.92857136]\n", + " [2224.50000006 2108.50000003]\n", + " [4270.50000017 4028.00000015]\n", + " [4270.49999995 3669.59999996]\n", + " [4270.49999992 3311.19999995]\n", + " [4270.50000022 2952.80000009]\n", + " [4270.50000024 2594.40000006]\n", + " [4270.49999979 2235.99999998]\n", + " [4144.00000027 4154.50000028]\n", + " [3785.60000021 4154.50000026]\n", + " [3427.20000003 4154.50000005]\n", + " [30467 18.65165415]\n", + " [32.21081251 13.27565498]\n", + " [32.20783035 7.89965581]\n", + " [32.20484818 2.52365664]\n", + " [30.32331188 31.30220479]\n", + " [24.9473127 31.30518695]\n", + " [19.57131353 31.30816912]\n", + " [14.19531435 31.31115127]\n", + " [ 8.81931518 31.31413344]\n", + " [ 3.44331601 31.3171156 ]\n", + " [30.3062959 0.62720951]\n", + " [24.93029672 0.63019167]\n", + " [19.55429755 0.63317383]\n", + " [14.17829838 0.636156 ]\n", + " [ 8.80229921 0.63913816]\n", + " [ 3.42630004 0.64212033]\n", + " [ 1.54476372 29.42066847]\n", + " [ 1.54178156 24.0446693 ]\n", + " [ 1.53879939 18.66867013]\n", + " [ 1.53581723 13.29267096]\n", + " [ 1.53283507 7.91667178]\n", + " [ 1.5298529 2.54067261]\n", + " [32.22081158 31.30115221]\n", + " [32.22081158 31.30115221]\n", + " [ 1.52880032 0.6431729 ]\n", + " [ 1.52880032 0.6431729 ]\n", + " [30.32225929 29.40470508]\n", + " [24.94626012 29.40768724]\n", + " [19.57026095 29.41066941]\n", + " [14.19426178 29.41365157]\n", + " [ 8.8182626 29.41663373]\n", + " [ 3.44226343 29.4196159 ]\n", + " [30.31927713 24.02870591]\n", + " [24.94327796 24.03168807]\n", + " [19.56727878 24.03467023]\n", + " [14.19127961 24.0376524 ]\n", + " [ 8.81528044 24.04063456]\n", + " [ 3.43928127 24.04361672]\n", + " [30.31629496 18.65270673]\n", + " [24.9402958 18.6556889 ]\n", + " [19.56429662 18.65867106]\n", + " [14.18829744 18.66165322]\n", + " [ 8.81229827 18.66463538]\n", + " [ 3.4362991 18.66761755]\n", + " [30.31331281 13.27670756]\n", + " [24.93731363 13.27968972]\n", + " [19.56131446 13.28267189]\n", + " [14.18531529 13.28565406]\n", + " [ 8.80931611 13.28863621]\n", + " [ 3.43331694 13.29161838]\n", + " [30.31033064 7.90070839]\n", + " [24.93433147 7.90369055]\n", + " [19.55833229 7.90667271]\n", + " [14.18233312 7.90965488]\n", + " [ 8.80633395 7.91263704]\n", + " [ 3.43033477 7.9156192 ]\n", + " [30.30734847 2.52470921]\n", + " [24.9313493 2.52769138]\n", + " [19.55535013 2.53067354]\n", + " [14.17935096 2.53365571]\n", + " [ 8.80335178 2.53663787]\n", + " [ 3.42735261 2.53962004]]\n", + "208139 0.09634357 0.06003972 0.02338002]\n", + " [0.20196806 0.17549093 0.14832034 0.12056829 0.0923455 0.06376263\n", + " 0.0349311 0.00596325 0.20196806 0.20380697 0.20537849 0.20668384\n", + " 0.20772258 0.20849323 0.20899395 0.20922323 0.00596325 0.00601646\n", + " 0.00606233 0.00610071 0.00613144 0.00615431 0.00616917 0.00617591\n", + " 0.20922323 0.18176716 0.15361557 0.12487279 0.09564544 0.0660437\n", + " 0.03618151 0.00617591 0.19052281 0.15759064 0.12372836 0.08914025\n", + " 0.05403012 0.01860347 0.20271324 0.2047859 0.20645854 0.207731\n", + " 0.20860063 0.20906415 0.00608691 0.00614821 0.00619816 0.00623643\n", + " 0.00626269 0.00627666 0.19734414 0.16321317 0.12814101 0.0923229\n", + " 0.05596168 0.01926848 0.20188558 0.20188558 0.00627861 0.00627861\n", + " 0.19130075 0.19325024 0.19482509 0.19602426 0.19684438 0.19728171\n", + " 0.15822879 0.1598311 0.16112922 0.16212009 0.16279899 0.16316141\n", + " 0.12422708 0.12548158 0.12650047 0.12727979 0.12781451 0.12810021\n", + " 0.08949878 0.09040196 0.09113695 0.09169995 0.09208666 0.09229337\n", + " 0.05424725 0.05479478 0.05524091 0.05558298 0.05581806 0.05594375\n", + " 0.01867818 0.01886665 0.0190203 0.01913813 0.01921909 0.01926233]\n", + " [0.95752334 0.96233343 0.96655667 0.97012962 0.9730004 0.97512825\n", + " 0.97648344 0.9770472 0.95752334 0.96243355 0.96676273 0.97044592\n", + " 0.97342972 0.97567188 0.97714116 0.97781727 0.9770472 0.98260969\n", + " 0.98749689 0.991645 0.99500027 0.99751921 0.99916896 0.99992792\n", + " 0.97781727 0.98329036 0.98807893 0.99212057 0.99536294 0.99776395\n", + " 0.99929229 0.99992792 0.95970614 0.96521608 0.9697801 0.97329789\n", + " 0.97569443 0.97691953 0.95974864 0.96538541 0.97008348 0.97373975\n", + " 0.97627646 0.97764064 0.97955041 0.98592224 0.99121524 0.99532633\n", + " 0.99817546 0.99970681 0.98028234 0.9865382 0.99170277 0.9956755\n", + " 0.99837901 0.99976029 0.95755841 0.95755841 0.99992622 0.99992622\n", + " 0.96193079 0.96765331 0.9724202 0.97612865 0.97870098 0.98008414\n", + " 0.96752627 0.97346234 0.97840112 0.98224036 0.98490221 0.98633316\n", + " 0.97215857 0.97826559 0.98334273 0.98728777 0.99002231 0.99149217\n", + " 0.97572766 0.98196357 0.98714553 0.99117105 0.99396105 0.99546064\n", + " 0.9781586 0.98448116 0.98973385 0.99381384 0.99664146 0.99816126\n", + " 0.97940113 0.98576768 0.99105637 0.99516413 0.99801095 0.99954106]]\n", + "DEBUG:root:radec2pix: xyfp Shape: (96, 2)\n", + "68.79999988 4154.49999973]\n", + " [2710.40000006 4154.50000022]\n", + " [2351.99999998 4154.4999998 ]\n", + " [4144.00000013 2109.5 ]\n", + " [3785.6 2109.5 ]\n", + " [3427.19999974 2109.49999999]\n", + " [3068.8 2109.5 ]\n", + " [2710.39999984 2109.49999999]\n", + " [2351.99999972 2109.49999994]\n", + " [2225.5 4027.99999997]\n", + " [2225.50000002 3669.60000025]\n", + " [2225.50000002 3311.20000025]\n", + " [2225.50000004 2952.80000031]\n", + " [2225.50000002 2594.40000011]\n", + " [2225.50000016 2236.00000026]\n", + " [4270.49999974 4154.49999975]\n", + " [4270.49999974 4154.49999975]\n", + " [2225.50000003 2109.50000001]\n", + " [2225.50000003 2109.50000001]\n", + " [4143.99999996 4027.99999996]\n", + " [3785.60000018 4028.00000021]\n", + " [3427.19999989 4027.99999984]\n", + " [3068.80000004 4028.00000009]\n", + " [2710.39999997 4027.9999999 ]\n", + " [2351.99999997 4027.99999976]\n", + " [4144.00000024 3669.60000019]\n", + " [3785.60000022 3669.60000021]\n", + " [3427.19999988 3669.59999985]\n", + " [3068.80000005 3669.60000008]\n", + " [2710.39999999 3669.59999998]\n", + " [2352. 3669.60000003]\n", + " [4144.00000009 3311.20000006]\n", + " [3785.60000001 3311.20000001]\n", + " [3427.20000009 3311.20000009]\n", + " [3068.80000003 3311.20000004]\n", + " [2710.40000012 3311.20000025]\n", + " [2351.99999998 3311.19999988]\n", + " [4143.99999976 2952.79999989]\n", + " [3785.59999985 2952.79999992]\n", + " [3427.19999969 2952.79999979]\n", + " [3068.79999997 2952.79999997]\n", + " [2710.40000016 2952.80000025]\n", + " [2352.00000009 2952.80000036]\n", + " [4143.99999979 2594.39999994]\n", + " [3785.60000002 2594.40000001]\n", + " [3427.20000024 2594.4000001 ]\n", + " [3068.80000002 2594.40000001]\n", + " [2710.40000021 2594.40000019]\n", + " [2351.99999998 2594.39999995]\n", + " [4144.00000008 2236.00000001]\n", + " [3785.60000005 2236.00000001]\n", + " [3427.20000007 2236.00000001]\n", + " [3068.79999979 2235.99999996]\n", + " [2710.39999971 2235.99999991]\n", + " [2351.99999979 2235.99999984]]\n", + "DEBUG:root:optics_fp: sphi: [-0.69950626 -0.64444513 -0.57715037 -0.49564218 -0.39857594 -0.28602322\n", + " -0.16028704 -0.02625833 -0.69950626 -0.74976466 -0.80249804 -0.85580559\n", + " -0.90661236 -0.95063766 -0.98288738 -0.9988295 -0.02625833 -0.03044512\n", + " -0.03619555 -0.04458562 -0.05797023 -0.08267725 -0.1433448 -0.49145128\n", + " -0.9988295 -0.99842512 -0.99776702 -0.99658828 -0.9941DEBUG:root:radec2pix: lng: [224.38740491 220.12408621 215.2503637 209.71210534 203.48918374\n", + " 196.62002098 189.22355762 181.5046646 224.38740491 228.56999572\n", + " 233.3693139 238.84884696 245.04132431 251.92249978 259.38507008\n", + " 267.22753799 181.5046646 181.74464663 182.07430544 182.55541483\n", + " 183.32331288 184.74247093 188.24144189 209.436015 267.22753799\n", + " 266.78398778 266.170335 265.26578644 263.80029466 261.02373287\n", + " 253.83681058 209.436015 222.61267508 216.98461546 210.38276245\n", + " 202.75476399 194.17390418 184.89586052 226.12630502 231.65859743\n", + " 238.18310357 245.77405246 254.38382437 263.77502084 181.62909594\n", + " 181.98420755 182.53422407 183.50001953 185.63706132 194.24647314\n", + " 267.02133208 266.36745836 265.3435183 263.51322198 259.32352397\n", + " 241.01895217 224.38712569 224.38712569 209.62070535 209.62070535\n", + " 224.34955164 229.91816922 236.57007702 244.41761198 253.43870278\n", + " 263.38126527 218.66991645 224.21163124 231.12094806 239.6844282\n", + " 250.04034734 261.9370562 211.92326671 217.139242DEBUG:root:radec2pix: camVec Shape: (3, 96)\n", + "DEBUG:root:fitpix2pix: ccdpx: shape: (96, 2)\n", + "DEBUG:root:radec2pix: xyfp: [[32.31363499 31.47041645]\n", + " [32.3144687 27.08398795]\n", + " [32.31530242 22.69755946]\n", + " [32.31613613 18.31113097]\n", + " [32.31696984 13.92470248]\n", + " [32.31780355 9.53827398]\n", + " [32.31863726 5.15184549]\n", + " [32.31947097 0.765417 ]\n", + " [32.31363499 31.47041645]\n", + " [27.9272065 31.46958273]\n", + " [23.540778 31.46874902]\n", + " [19.15434951 31.46791531]\n", + " [14.76792102 31.4670816 ]\n", + " [10.38149253 31.46624788]\n", + " [ 5.99506403 31.46541417]\n", + " [ 1.60863554 31.46458045]\n", + " [32.31947097 0.765417 ]\n", + " [27.93304248 0.76458329]\n", + " [23.54661399 0.76374957]\n", + " [19.1601855 0.76291586]\n", + " [14.77375701 0.76208215]\n", + " [10.38732851 0.76124844]\n", + " [ 6.00090002 0.76041472]\n", + " [ 1.61447153 0.75958101]\n", + " [ 1.60863554 31.46458045]\n", + " [ 1.60946926 27.07815197]\n", + " [ 1.61030297 22.69172348]\n", + " [ 1.61113668 18.30529498]\n", + " [ 1.61197039 13.91886648]\n", + " [ 1.6128041 9.53243799]\n", + " [ 1.61363782 5.1460095 ]\n", + " [ 1.61447153 0.75958101]\n", + " [32.29899849 29.55791363]\n", + " [32.30002028 24.18191372]\n", + " [32.30104209 18.80591382]\n", + " [32.30206388 13.42991392]\n", + " [32.30308568 8.05391402]\n", + " [32.30410748 2.67791411]\n", + " [30.40113787 31.45505294]\n", + " [25.02513797 31.45403115]\n", + " [19.64913807 31.45300935]\n", + " [14.27313817 31.45198755]\n", + " [ 8.89713826 31.45096576]\n", + " [ 3.52113836 31.44994396]\n", + " [30.40696816 0.7800535 ]\n", + " [25.03096826 0.7790317 ]\n", + " [19.65496836 0.7780099 ]\n", + " [14.27896845 0.77698811]\n", + " [ 8.90296855 0.77596631]\n", + " [ 3.52696865 0.77494451]\n", + " [ 1.62399904 29.55208334]\n", + " [ 1.62502084 24.17608344]\n", + " [ 1.62604264 18.80008353]\n", + " [ 1.62706443 13.42408364]\n", + " [ 1.62808623 8.04808373]\n", + " [ 1.62910803 2.67208383]\n", + " [32.29863784 31.4554136 ]\n", + " [32.29863784 31.4554136 ]\n", + " [ 1.62946868 0.77458386]\n", + " [ 1.62946868 0.77458386]\n", + " [30.40149852 29.55755297]\n", + " [25.02549862 29.55653118]\n", + " [19.64949872 29.55550938]\n", + " [14.27349882 29.55448759]\n", + " [ 8.89749891 29.55346579]\n", + " [ 3.52149901 29.55244399]\n", + " [30.40252032 24.18155307]\n", + " [25.02652042 24.18053128]\n", + " [19.65052052 24.17950948]\n", + " [14.27452061 24.178DEBUG:root:fitpix2pix: visCut: True\n", + "48769]\n", + " [ 8.89852071 24.17746589]\n", + " [ 3.52252081 24.17644409]\n", + " [30.40354212 18.80555317]\n", + " [25.02754221 18.80453137]\n", + " [19.65154231 18.80350958]\n", + " [14.27554241 18.80248779]\n", + " [ 8.89954251 18.80146598]\n", + " [ 3.5235426 18.80044419]\n", + " [30.40456392 13.42955327]\n", + " [25.02856401 13.42853147]\n", + " [19.65256411 13.42750967]\n", + " [14.27656421 13.42648788]\n", + " [ 8.9005643 13.42546608]\n", + " [ 3.5245644 13.42444429]\n", + " [30.40558571 8.05355336]\n", + " [25.02958581 8.05253157]\n", + " [19.6535859 8.05150977]\n", + " [14.277586 8.05048797]\n", + " [ 8.9015861 8.04946618]\n", + " [ 3.5255862 8.04844438]\n", + " [30.40660751 2.67755346]\n", + " [25.0306076 2.67653166]\n", + " [19.6546077 2.67550987]\n", + " [14.2786078 2.67448807]\n", + " [ 8.90260789 2.67346627]\n", + " [ 3.52660799 2.67244448]]\n", + "5152 -0.98775305\n", + " -0.96047273 -0.49145128 -0.67703879 -0.60160056 -0.50577425 -0.38678764\n", + " -0.24486582 -0.08534494 -0.72086938 -0.78432831 -0.84973726 -0.91193438\n", + " -0.96308661 -0.99410379 -0.02842926 -0.03462403 -0.04421613 -0.06104888\n", + " -0.09822663 -0.24609363 -0.99864895 -0.99799091 -0.99669933 -0.99359795\n", + " -0.98268894 -0.87478002 -0.69950278 -0.69950278 -0.49425605 -0.49425605\n", + " -0.69903398 -0.76512562 -0.83456026 -0.9019653 -0.95851534 -0.99333513\n", + " -0.6248328 -0.69731062 -0.77847269 -0.8632584 -0.93993324 -0.99011458\n", + " -0.52878304 -0.60375411 -0.69461576 -0.79961451 -0.90627261 -0.98386124\n", + " -0.40710127 -0.47641382 -0.56840284 -0.68980596 -0.837772 -0.96921207\n", + " -0.25921116 -0.31021694 -0.38416098 -0.49776006 -0.67878801 -0.92148149\n", + " -0.09066564 -0.11006805 -0.13988178 -0.19134252 -0.29970307 -0.6279425 ]\n", + "06 223.99660639\n", + " 233.09330633 244.99523074 259.69237756 204.0228705 208.45144372\n", + " 214.63892612 223.61475061 236.90559041 255.7456151 195.0232601\n", + " 198.0723045 202.59166286 209.85191686 222.74900651 247.14363581\n", + " 185.201902 186.31923819 188.04100537 191.03114261 197.43976942\n", + " 218.89848666]\n", + "DEBUG:root:radec2pix: xyfp Shape: (96, 2)\n", + "DEBUG:root:radec2pix: camVec: [[ 0.00152888 0.00154215 0.00155354 0.00156302 0.00157054 0.00157606\n", + " 0.00157952 0.00158089 0.00152888 0.03055413 0.0594604 0.08813528\n", + " 0.11646734 0.14434605 0.17166149 0.1983039 0.00158089 0.03159291\n", + " 0.06147904 0.0911219 0.12040769 0.14922671 0.17747265 0.2050409\n", + " 0.1983039 0.20004855 0.20153434 0.2027606 0.20372608 0.20442907\n", + " 0.20486781 0.2050409 0.00163462 0.00165059 0.00166353 0.00167335\n", + " 0.00167995 0.00168324 0.01419184 0.04970047 0.08491857 0.11964057\n", + " 0.15366298 0.18678351 0.01467408 0.05138704 0.08779394 0.12368372\n", + " 0.15885436 0.19311093 0.19900616 0.20096941 0.20254341 0.2037261\n", + " 0.2045144 0.20490517 0.00162826 0.00162826 0.20494776 0.20494776\n", + " 0.01424722 0.04989441 0.08525013 0.12010852 0.15426631 0.18752167\n", + " 0.01438645 0.05038177 0.08608239 0.1212815 0.15577635 0.18936679\n", + " 0.01449922 0.05077617 0.08675481 0.12222707 0.15699061 0.19084708\n", + " 0.01458479 0.05107523 0.08726392 0.1229415 0.15790584 0.1919602\n", + " 0.01464229 0.05127607 0.08760541 0.12341989 0.15851749 0.19270261\n", + " 0.01467095 0.05137612 0.08777538 0.12365776 0.15882123 0.1930708 ]\n", + " [-0.20769103 -0.1801941 -0.15200928 -0.12324112 -0.09399571 -0.06438234\n", + " -0.03451442 -0.00450904 -0.20769103 -0.20754198 -0.20712371 -0.20643751\n", + " -0.2054851 -0.20426815 -0.20278791 -0.2010451 -0.00450904 -0.00450572\n", + " -0.00449643 -0.00448126 -0.00446035 -0.00443385 -0.00440189 -0.00436457\n", + " -0.2010451 -0.17444879 -0.14716869 -0.11931453 -0.09099614 -0.06232394\n", + " -0.03340929 -0.00436457 -0.1957935 -0.16161745 -0.12651199 -0.09067166\n", + " -0.05429781 -0.01760077 -0.20756647 -0.20720276 -0.20643606 -0.20526936\n", + " -0.20370571 -0.20174719 -0.00461102 -0.00460274 -0.00458538 -0.00455917\n", + " -0.0045244 -0.0044813 -0.18954613 -0.15647489 -0.12248558 -0.08778034\n", + " -0.05256249 -0.01703747 -0.20759824 -0.20759824 -0.00446412 -0.00446412\n", + " -0.19576354 -0.19542056 -0.19469787 -0.19359884 -0.19212697 -0.19028463\n", + " -0.16159264 -0.16130879 -0.16071144 -0.15980479 -0.15859338 -0.15708053\n", + " -0.12649245 -0.12626898 -0.12579928 -0.12508774 -0.12413931 -0.12295784\n", + " -0.09065756 -0.09049631 -0.09015775 -0.08964573 -0.08896468 -0.0881182\n", + " -0.05428931 -0.05419219 -0.05398843 -0.05368064 -0.05327188 -0.0527647\n", + " -0.01759801 -0.01756642 -0.01750018 -0.01740019 -0.0172675 -0.01710301]\n", + " [ 0.97819328 0.98362986 0.98837785 0.99237552 0.99557136 0.99792406\n", + " 0.99940295 0.99998858 0.97819328 0.97774883 0.97650613 0.97448229\n", + " 0.97170532 0.9682142 0.96405881 0.95929997 0.99998858 0.99949066\n", + " 0.99809825 0.99582966 0.99271451 0.98879307 0.98411589 0.97874367\n", + " 0.95929997 0.9641308 0.96836217 0.97193219 0.97478992 0.97689533\n", + " 0.9782193 0.97874367 0.98064379 0.9868521 0.99196368 0.99587944\n", + " 0.99852337 0.99984368 0.97811796 0.97703474 0.97476817 0.97136534\n", + " 0.96689796 0.96146242 0.9998817 0.99866821 0.9961281 0.99231122\n", + " 0.98729166 0.9811667 0.96149301 0.9670196 0.97158296 0.97508476\n", + " 0.9774513 0.97863353 0.97821282 0.97821282 0.97876273 0.97876273\n", + " 0.98054763 0.97944952 0.97715155 0.97370089 0.9691693 0.96365314\n", + " 0.98675268 0.98561714 0.98324039 0.97966996 0.97497788 0.9692605\n", + " 0.9918616 0.99069568 0.9882551 0.98458804 0.979767 0.97388848\n", + " 0.99577532 0.99458621 0.99209707 0.98835673 0.98343837 0.97743873\n", + " 0.99841789 0.9972131 0.99469118 0.99090157 0.985918 0.97983753\n", + " 0.9997375 0.99852487 0.99598656 0.99217236 0.98715635 0.98103576]]\n", + "DEBUG:root:mm_to_pix: fitpx: [[0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]]\n", + "DEBUG:root:radec2pix: curVec: [[-0.25011605 0.96093894 -0.11848338]\n", + " [-0.25115746 0.95700009 -0.14515773]\n", + " [-0.2518792 0.95229813 -0.17229378]\n", + " [-0.25228338 0.94680867 -0.19976598]\n", + " [-0.25237146 0.94051782 -0.22745302]\n", + " [-0.25214456 0.9334223 -0.255237 ]\n", + " [-0.25160397 0.92552948 -0.28300287]\n", + " [-0.25075175 0.91685738 -0.31063821]\n", + " [-0.25011605 0.96093894 -0.11848338]\n", + " [-0.22399451 0.96745529 -0.11771456]\n", + " [-0.19713393 0.97337042 -0.11699675]\n", + " [-0.16964302 0.97861786 -0.11631135]\n", + " [-0.14163003 0.98314155 -0.11564441]\n", + " [-0.11320368 0.98689568 -0.1149863 ]\n", + " [-0.08447382 0.9898447 -0.11433126]\n", + " [-0.055DEBUG:root:mm_to_pix: fitpx.shape: (96, 2)\n", + "DEBUG:root:radec2pix: camVec Shape: (3, 96)\n", + "55173 0.99196351 -0.11367677]\n", + " [-0.25075175 0.91685738 -0.31063821]\n", + " [-0.22365135 0.92346875 -0.31174595]\n", + " [-0.19581689 0.92947233 -0.31262906]\n", + " [-0.16734985 0.93480271 -0.31326972]\n", + " [-0.13835342 0.939404 -0.3136534 ]\n", + " [-0.10893449 0.94322974 -0.31376893]\n", + " [-0.07920453 0.94624327 -0.31360855]\n", + " [-0.04927939 0.9484183 -0.31316811]\n", + " [-0.05555173 0.99196351 -0.11367677]\n", + " [-0.0548403 0.98842539 -0.14144893]\n", + " [-0.05406461 0.98401865 -0.16965941]\n", + " [-0.05322586 0.97871746 -0.19818968]\n", + " [-0.05232562 0.97250606 -0.22692287]\n", + " [-0.05136592 0.96537948 -0.25574206]\n", + " [-0.05034941 0.95734414 -0.28452966]\n", + " [-0.04927939 0.9484183 -0.31316811]\n", + " [-0.25052124 0.9593368 -0.13004622]\n", + " [-0.25158131 0.95400014 -0.1630662 ]\n", + " [-0.25216356 0.94749173 -0.19665441]\n", + " [-0.25227096 0.93978166 -0.23058578]\n", + " [-0.2519056 0.93086386 -0.26464322]\n", + " [-0.25107019 0.92075635 -0.29861599]\n", + " [-0.23882853 0.96383728 -0.11823126]\n", + " [-0.20630205 0.97142876 -0.11732705]\n", + " [-0.17277357 0.97804992 -0.11648026]\n", + " [-0.13844256 0.98359324 -0.11566327]\n", + " [-0.10350923 0.98797439 -0.11485833]\n", + " [-0.06817641 0.99113227 -0.11405616]\n", + " [-0.23903611 0.91984117 -0.31105298]\n", + " [-0.20531543 0.9275444 -0.31226104]\n", + " [-0.17059293 0.93426859 -0.31311379]\n", + " [-0.13505775 0.93990692 -0.31358315]\n", + " [-0.09890675 0.94437389 -0.31364853]\n", + " [-0.06234703 0.94760632 -0.31329718]\n", + " [-0.05534901 0.99051978 -0.12572614]\n", + " [-0.0544347 0.98560302 -0.16007357]\n", + " [-0.05342486 0.97935482 -0.19496131]\n", + " [-0.05232218 0.97174199 -0.23017363]\n", + " [-0.05113044 0.96275541 -0.26549519]\n", + " [-0.04985477 0.95241184 -0.30070947]\n", + " [-0.25003221 0.96094996 -0.11857093]\n", + " [-0.25003221 0.96094996 -0.11857093]\n", + " [-0.04938567 0.94844432 -0.31307255]\n", + " [-0.04938567 0.94844432 -0.31307255]\n", + " [-0.23926874 0.9622432 -0.1297632 ]\n", + " [-0.2066047 0.96988329 -0.1289996 ]\n", + " [-0.17293908 0.97654511 -0.12826431]\n", + " [-0.13847045 0.98212115 -0.12753031]\n", + " [-0.10339853 0.98652697 -0.12678045]\n", + " [-0.06792624 0.98970123 -0.12600594]\n", + " [-0.24020718 0.95694886 -0.16293985]\n", + " [-0.20720047 0.96469708 -0.16256538]\n", + " [-0.17319259 0.97145002 -0.16213941]\n", + " [-0.13837942 0.9771002 -0.16163645]\n", + " [-0.10295945 0.98156267 -0.16104061]\n", + " [-0.06713617 0.98477538 -0.16034398]\n", + " [-0.24069217 0.95046534 -0.19667974]\n", + " [-0.20741125 0.95827778 -0.19668316]\n", + " [-0.17312855 0.96508597 -0.19655935]\n", + " [-0.13803744 0.97078237 -0.19628362]\n", + " [-0.10233552 0.97528147 -0.19584046]\n", + " [-0.06622724 0.97852049 -0.19522195]\n", + " [-0.24072603 0.94276266 -0.23075864]\n", + " [-0.20723767 0.95059504 -0.23113116]\n", + " [-0.17274658 0.95742196 -0.23130459]\n", + " [-0.13744404 0.96313585 -0.2312541 ]\n", + " [-0.10152718 0.96765081 -0.23096349]\n", + " [-0.06520148 0.97090346 -0.23042403]\n", + " [-0.24031021 0.93383472 -0.26495985]\n", + " [-0.2066797 0.94164241 -0.26569357]\n", + " [-0.17204597 0.94845092 -0.26615979]\n", + " [-0.13659891 0.95415285 -0.26633265]\n", + " [-0.1005354 0.95866218 -0.26619441]\n", + " [-0.06406188 0.9619153 -0.26573487]\n", + " [-0.23944691 0.92369954 -0.29907246]\n", + " [-0.2057385 0.93143786 -0.3001586 ]\n", + " [-0.17102761 0.9381906 -0.30091186]\n", + " [-0.13550345 0.94385076 -0.30130477]\n", + " [-0.09936287 0.94833262 -0.30131753]\n", + " [-0.06281288 0.95157281 -0.30093808]]\n", + "DEBUG:root:mm_to_pix: fitpx: [[0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]]\n", + "DEBUG:root:optics_fp: rtanth: [45.0829242 42.14007881 39.46623798 37.11957906 35.16566323 33.67292833\n", + " 32.70458448 32.30781794 45.0829242 42.05181002 39.27748601 36.81804721\n", + " 34.74043472 33.1165898 32.01563284 31.49245123 32.30781794 27.92274647\n", + " 23.53818074 19.15446803 14.77236778 10.39391962 6.02708817 1.76054813\n", + " 31.49245123 27.11255561 22.73517913 18.3621235 13.99743906 9.65248838\n", + " 5.37533955 1.76054813 43.75905359 40.32550839 37.35292806 34.95909888\n", + " 33.26918554 32.39354213 43.72230567 40.17242604 37.06494796 34.51955493\n", + " 32.6679006 31.63204924 30.39623387 25.02228675 19.64946278 14.27902981\n", + " 8.91530985 3.58853155 29.58337372 24.21709844 18.85636405 13.50776907\n", + " 8.19511667 3.10850472 45.06171287 45.06171287 1.78051042 1.78051042\n", + " 42.37849474 38.70556314 35.46980647 32.8008609 30.84620775 29.74698879\n", + " 38.82304306 34.77660814 31.135173DEBUG:root:optics_fp: xyfp: [[32.23341696 31.55141621]\n", + " [32.23194958 27.16498788]\n", + " [32.2304822 22.77855956]\n", + " [32.22901483 18.39213124]\n", + " [32.22754745 14.00570291]\n", + " [32.22608007 9.61927458]\n", + " [32.22461269 5.23284626]\n", + " [32.2231453 0.84641793]\n", + " [32.23341696 31.55141621]\n", + " [27.84698864 31.5528836 ]\n", + " [23.46056031 31.55435097]\n", + " [19.07413198 31.55581835]\n", + " [14.68770366 31.55728573]\n", + " [10.30127533 31.55875311]\n", + " [ 5.91484701 31.56022049]\n", + " [ 1.52841868 31.56168787]\n", + " [32.2231453 0.84641793]\n", + " [27.83671698 0.84788531]\n", + " [23.45028865 0.84935269]\n", + " [19.06386033 0.85082007]\n", + " [14.677432 0.85228745]\n", + " [10.29100367 0.85375483]\n", + " [ 5.90457535 0.85522221]\n", + " [ 1.51814702 0.85668959]\n", + " [ 1.52841868 31.56168787]\n", + " [ 1.5269513 27.17525955]\n", + " [ 1.52548392 22.78883122]\n", + " [ 1.52401654 18.4024029 ]\n", + " [ 1.52254916 14.01597457]\n", + " [ 1.52108178 9.62954624]\n", + " [ 1.5196144 5.24311792]\n", + " [ 1.51814702 0.85668959]\n", + " [32.21777718 29.63892134]\n", + " [32.21597876 24.26292164]\n", + " [32.21418034 18.88692194]\n", + " [32.21238193 13.51092224]\n", + " [32.21058351 8.13492254]\n", + " [32.20878509 2.75892284]\n", + " [30.32091205 31.53705599]\n", + " [24.94491236 31.53885442]\n", + " [19.56891265 31.54065283]\n", + " [14.19291295 31.54245125]\n", + " [ 8.81691325 31.54424967]\n", + " [ 3.44091356 31.54604808]\n", + " [30.31065043 0.86205771]\n", + " [24.93465073 0.86385613]\n", + " [19.55865103 0.86565455]\n", + " [14.18265134 0.86745297]\n", + " [ 8.80665163 0.86925139]\n", + " [ 3.43065193 0.8710498 ]\n", + " [ 1.5427789 29.64918296]\n", + " [ 1.54098048 24.27318326]\n", + " [ 1.53918206 18.89718357]\n", + " [ 1.53738364 13.52118387]\n", + " [ 1.53558522 8.14518416]\n", + " [ 1.5337868 2.76918446]\n", + " [32.21841195 31.53642123]\n", + " [32.21841195 31.53642123]\n", + " [ 1.53315204 0.87168457]\n", + " [ 1.53315204 0.87168457]\n", + " [30.32027729 29.6395561 ]\n", + " [24.94427759 29.64135452]\n", + " [19.56827789 29.64315294]\n", + " [14.19227819 29.64495136]\n", + " [ 8.81627849 29.64674978]\n", + " [ 3.44027879 29.6485482 ]\n", + " [30.31847887 24.2635564 ]\n", + " [24.94247917 24.26535482]\n", + " [19.56647947 24.26715324]\n", + " [14.19047977 24.26895166]\n", + " [ 8.81448007 24.27075007]\n", + " [ 3.43848037 24.2725485 ]\n", + " [30.31668045 18.8875567 ]\n", + " [24.94068075 18.88935513]\n", + " [19.56468105 18.89115354]\n", + " [14.18868135 18.89295196]\n", + " [ 8.81268165 18.89475038]\n", + " [ 3.43668195 18.89654879]\n", + " [30.31488203 13.51155701]\n", + " [24.93888233 13.51335542]\n", + " [19.56288263 13.51515384]\n", + " [14.18688293 13.51695226]\n", + " [ 8.81088324 13.51875068]\n", + " [ 3.43488354 13.5205491 ]\n", + " [30.31308361 8.13555731]\n", + " [24.93708392 8.13735572]\n", + " [19.56108422 8.13915414]\n", + " [14.18508451 8.14095256]\n", + " [ 8.80908482 8.14275098]\n", + " [ 3.43308512 8.1445494 ]\n", + " [30.31128519 2.75955761]\n", + " [24.93528549 2.76135602]\n", + " [19.5592858 2.76315444]\n", + " [14.18328609 2.76495286]\n", + " [ 8.8072864 2.76675128]\n", + " [ 3.4312867 2.7685497 ]]\n", + "DEBUG:root:mm_to_pix: fitpx.shape: (96, 2)\n", + "47 28.05687673 25.74452154 24.41669917\n", + " 35.72566697 31.28109784 27.17523938 23.58565115 20.78160237 19.11203303\n", + " 33.21476541 28.37964838 23.77795187 19.57499171 16.08640287 13.86243725\n", + " 31.43120667 26.26984115 21.21535074 16.36705265 11.9779994 8.76739863\n", + " 30.50284606 25.15168819 19.81398425 14.50459502 9.27228848 4.40115246]\n", + "DEBUG:root:cartToSphere: vec: [[0.20581047 0.20196806 0.95752334]\n", + " [0.20764708 0.17549093 0.96233343]\n", + " [0.20921111 0.14832034 0.96655667]\n", + " [0.21050368 0.12056829 0.97012962]\n", + " [0.21152432 0.0923455 0.9730004 ]\n", + " [0.2122716 0.06376263 0.97512825]\n", + " [0.21274377 0.0349311 0.97648344]\n", + " [0.21293946 0.00596325 0.9770472 ]\n", + " [0.20581047 0.20196806 0.95752334]\n", + " [0.17940008 0.20380697 0.96243355]\n", + " [0.15228099 0.20537849 0.96676273]\n", + " [0.12456525 0.20668384 0.97044592]\n", + " [0.09636347 0.20772258 0.97342972]\n", + " [0.06778617 0.20849323 0.97567188]\n", + " [0.03894463 0.20899395 0.97714116]\n", + " [0.00995116 0.20922323 0.97781727]\n", + " [0.21293946 0.00596325 0.9770472 ]\n", + " [0.18558556 0.00601646 0.98260969]\n", + " [0.15752187 0.00606233 0.98749689]\n", + " [0.12885256 0.00610071 0.991645 ]\n", + " [0.09968382 0.00613144 0.99500027]\n", + " [0.07012532 0.00615431 0.99751921]\n", + " [0.04029051 0.00616917 0.99916896]\n", + " [0.01029607 0.00617591 0.99992792]\n", + " [0.00995116 0.20922323 0.97781727]\n", + " [0.01003858 0.18176716 0.98329036]\n", + " [0.01011374 0.15361557 0.98807893]\n", + " [0.01017639 0.12487279 0.99212057]\n", + " [0.01022623 0.09564544 0.99536294]\n", + " [0.01026295 0.0660437 0.99776395]\n", + " [0.01028629 0.03618151 0.99929229]\n", + " [0.01029607 0.00617591 0.99992792]\n", + " [0.20655553 0.19052281 0.95970614]\n", + " [0.20862193 0.15759064 0.96521608]\n", + " [0.21028039 0.12372836 0.9697801 ]\n", + " [0.21153069 0.08914025 0.97329789]\n", + " [0.21237025 0.05403012 0.97569443]\n", + " [0.212796 0.01860347 0.97691953]\n", + " [0.1943962 0.20271324 0.95974864]\n", + " [0.16153559 0.2047859 0.96538541]\n", + " [0.12772204 0.20645854 0.97008348]\n", + " [0.0931597 0.207731 0.97373975]\n", + " [0.05805212 0.20860063 0.97627646]\n", + " [0.02260459 0.20906415 0.97764064]\n", + " [0.2011068 0.00608691 0.97955041]\n", + " [0.16709142 0.00614821 0.98592224]\n", + " [0.1321133 0.00619816 0.99121524]\n", + " [0.09636698 0.00623643 0.99532633]\n", + " [0.06005439 0.00626269 0.99817546]\n", + " [0.02338579 0.00627666 0.99970681]\n", + " [0.01009044 0.19734414 0.98028234]\n", + " [0.01019035 0.16321317 0.9865382 ]\n", + " [0.01027142 0.12814101 0.99170277]\n", + " [0.0103331 0.0923229 0.9956755 ]\n", + " [0.01037483 0.05596168 0.99837901]\n", + " [0.01039617 0.01926848 0.99976029]\n", + " [0.20572824 0.20188558 0.95755841]\n", + " [0.20572824 0.20188558 0.95755841]\n", + " [0.01039877 0.00627861 0.99992622]\n", + " [0.01039877 0.00627861 0.99992622]\n", + " [0.19517474 0.19130075 0.96193079]\n", + " [0.1621771 0.19325024 0.96765331]\n", + " [0.12822694 0.19482509 0.9724202 ]\n", + " [0.09352723 0.19602426 0.97612865]\n", + " [0.05828102 0.19684438 0.97870098]\n", + " [0.02269376 0.19728171 0.98008414]\n", + " [0.19712067 0.15822879 0.96752627]\n", + " [0.1637837 0.1598311 0.97346234]\n", + " [0.12949375 0.16112922 0.97840112]\n", + " [0.09445078 0.16212009 0.98224036]\n", + " [0.05885684 0.16279899 0.98490221]\n", + " [0.0229182 0.16316141 0.98633316]\n", + " [0.19868404 0.12422708 0.97215857]\n", + " [0.16507817 0.12548158 0.97826559]\n", + " [0.13051704 0.12650047 0.98334273]\n", + " [0.09519827 0.12727979 0.98728777]\n", + " [0.05932353 0.12781451 0.99002231]\n", + " [0.02310025 0.12810021 0.99149217]\n", + " [0.19986372 0.08949878 0.97572766]\n", + " [0.16605732 0.09040196 0.98196357]\n", + " [0.13129265 0.09113695 0.98714553]\n", + " [0.09576573 0.09169995 0.99117105]\n", + " [0.05967819 0.09208666 0.99396105]\n", + " [0.02323871 0.09229337 0.99546064]\n", + " [0.20065641 0.05424725 0.9781586 ]\n", + " [0.16671646 0.05479478 0.98448116]\n", + " [0.13181555 0.05524091 0.98973385]\n", + " [0.09614872 0.05558298 0.99381384]\n", + " [0.05991775 0.05581806 0.99664146]\n", + " [0.0233323 0.05594375 0.99816126]\n", + " [0.20105858 0.01867818 0.97940113]\n", + " [0.16705125 0.01886665 0.98576768]\n", + " [0.13208139 0.0190203 0.99105637]\n", + " [0.09634357 0.01913813 0.99516413]\n", + " [0.06003972 0.01921909 0.99801095]\n", + " [0.02338002 0.01926233 0.99954106]]\n", + "DEBUG:root:radec2pix: curVec Shape: (96, 3)\n", + "DEBUG:root:optics_fp: xyfp shape: (96, 2)\n", + "DEBUG:root:radec2pix: xyfp: [[32.2358199 31.31614388]\n", + " [32.23338667 26.92971599]\n", + " [32.23095344 22.54328809]\n", + " [32.2285202 18.15686019]\n", + " [32.22608698 13.7704323 ]\n", + " [32.22365375 9.3840044 ]\n", + " [32.22122051 4.99757651]\n", + " [32.21878728 0.61114861]\n", + " [32.2358199 31.31614388]\n", + " [27.849392 31.31857712]\n", + " [23.46296411 31.32101035]\n", + " [19.07653621 31.32344358]\n", + " [14.69010831 31.3258768 ]\n", + " [10.30368042 31.32831004]\n", + " [ 5.91725252 31.33074327]\n", + " [ 1.53082462 31.3331765 ]\n", + " [32.21878728 0.61114861]\n", + " [27.83235938 0.61358184]\n", + " [23.44593149 0.61601507]\n", + " [19.0595036 0.6184483 ]\n", + " [14.6730757 0.62088153]\n", + " [10.2866478 0.62331476]\n", + " [ 5.90021991 0.625748 ]\n", + " [ 1.513792 0.62818122]\n", + " [ 1.53082462 31.3331765 ]\n", + " [ 1.52839139 26.94674861]\n", + " [ 1.52595816 22.5603207 ]\n", + " [ 1.52352493 18.17389281]\n", + " [ 1.5210917 13.78746492]\n", + " [ 1.51865847 9.40103702]\n", + " [ 1.51622524 5.01460912]\n", + " [ 1.513792 0.62818122]\n", + " [32.219759 29.4036525 ]\n", + " [32.21677684 24.02765333]\n", + " [32.21379467 18.65165415]\n", + " [32.21081251 13.27565498]\n", + " [32.20783035 7.89965581]\n", + " [32.20484818 2.52365664]\n", + " [30.32331188 31.30220479]\n", + " [24.9473127 31.30518695]\n", + " [19.57131353 31.30816912]\n", + " [14.19531435 31.31115127]\n", + " [ 8.81931518 31.31413344]\n", + " [ 3.44331601 31.3171156 ]\n", + " [30.3062959 0.62720951]\n", + " [24.93029672 0.63019167]\n", + " [19.55429755 0.63317383]\n", + " [14.17829838 0.636156 ]\n", + " [ 8.80229921 0.63913816]\n", + " [ 3.42630004 0.64212033]\n", + " [ 1.54476372 29.42066847]\n", + " [ 1.54178156 24.0446693 ]\n", + " [ 1.53879939 18.66867013]\n", + " [ 1.53581723 13.29267096]\n", + " [ 1.53283507 7.91667178]\n", + " [ 1.5298529 2.54067261]\n", + " [32.22081158 31.30115221]\n", + " [32.22081158 31.30115221]\n", + " [ 1.52880032 0.6431729 ]\n", + " [ 1.52880032 0.6431729 ]\n", + " [30.32225929 29.40470508]\n", + " [24.94626012 29.40768724]\n", + " [19.57026095 29.41066941]\n", + " [14.19426178 29.41365157]\n", + " [ 8.8182626 29.41663373]\n", + " [ 3.44226343 29.4196159 ]\n", + " [30.31927713 24.02870591]\n", + " [24.94327796 24.03168807]\n", + " [19.56727878 24.03467023]\n", + " [14.19127961 24.0376524 ]\n", + " [ 8.81528044 24.04063456]\n", + " [ 3.43928127 24.04361672]\n", + " [30.31629496 18.65270673]\n", + " [24.9402958 18.6556889 ]\n", + " [19.56429662 18.65867106]\n", + " [14.18829744 18.66165322]\n", + " [ 8.81229827 18.66463538]\n", + " [ 3.4362991 18.66761755]\n", + " [30.31331281 13.27670756]\n", + " [24.93731363 13.27968972]\n", + " [19.56131446 13.28267189]\n", + " [14.18531529 13.28565406]\n", + " [ 8.80931611 13.28863621]\n", + " [ 3.43331694 13.29161838]\n", + " [30.31033064 7.90070839]\n", + " [24.93433147 7.90369055]\n", + " [19.55833229 7.90667271]\n", + " [14.18233312 7.90965488]\n", + " [ 8.80633395 7.91263704]\n", + " [ 3.43033477 7.9156192 ]\n", + " [30.30734847 2.52470921]\n", + " [24.9313493 2.52769138]\n", + " [19.55535013 2.53067354]\n", + " [14.17935096 2.53365571]\n", + " [ 8.80335178 2.53663787]\n", + " [ 3.42735261 2.53962004]]\n", + "DEBUG:root:radec2pix: lng: [44.46013111 40.20250222 35.33475619 29.80239704 23.58471193 16.71933815\n", + " 9.32438225 1.60411637 44.46013111 48.6443107 53.44435482 58.92326156\n", + " 65.11319638 71.98940835 79.44437917 87.27692771 1.60411637 1.85680988\n", + " 2.20397654 2.71072869 3.51976244 5.01551732 8.70535713 30.95664732\n", + " 87.27692771 86.8388988 86.23319877 85.34102995 83.89722589 81.1670885\n", + " 74.12971046 30.95664732 42.68783954 37.06698546 30.47243013 22.85083712\n", + " 14.27406075 4.99632239 46.19982373 51.73354216 58.25770295 65.84552409\n", + " 74.44848175 83.82899465 1.73364549 2.10727457 2.68608796 3.70275867\n", + " 5.95349638 15.02389602 87.07294759 86.42732935 85.41713359 83.61383424\n", + " 79.49708007 61.65124289 44.45987707 44.45987707 31.12292419 31.12292419\n", + " 44.42569213 49.99636441 56.64851063 64.49322462 73.50DEBUG:root:cartToSphere: vec: [[ 0.00152888 -0.20769103 0.97819328]\n", + " [ 0.00154215 -0.1801941 0.98362986]\n", + " [ 0.00155354 -0.15200928 0.98837785]\n", + " [ 0.00156302 -0.12324112 0.99237552]\n", + " [ 0.00157054 -0.09399571 0.99557136]\n", + " [ 0.00157606 -0.06438234 0.99792406]\n", + " [ 0.00157952 -0.03451442 0.99940295]\n", + " [ 0.00158089 -0.00450904 0.99998858]\n", + " [ 0.00152888 -0.20769103 0.97819328]\n", + " [ 0.03055413 -0.20754198 0.97774883]\n", + " [ 0.0594604 -0.20712371 0.97650613]\n", + " [ 0.08813528 -0.20643751 0.97448229]\n", + " [ 0.11646734 -0.2054851 0.97170532]\n", + " [ 0.14434605 -0.20426815 0.9682142 ]\n", + " [ 0.17166149 -0.20278791 0.96405881]\n", + " [ 0.1983039 -0.2010451 0.95929997]\n", + " [ 0.00158089 -0.00450904 0.99998858]\n", + " [ 0.03159291 -0.00450572 0.99949066]\n", + " [ 0.06147904 -0.00449643 0.99809825]\n", + " [ 0.0911219 -0.00448126 0.99582966]\n", + " [ 0.12040769 -0.00446035 0.99271451]\n", + " [ 0.14922671 -0.00443385 0.98879307]\n", + " [ 0.17747265 -0.00440189 0.98411589]\n", + " [ 0.2050409 -0.00436457 0.97874367]\n", + " [ 0.1983039 -0.2010451 0.95929720842 83.43797919\n", + " 38.75401666 44.3002287 51.21241262 59.77502346 70.12351892 82.00435394\n", + " 32.01565774 37.23971088 44.10467708 53.20553354 65.10220937 79.77773784\n", + " 24.12278796 28.56396741 34.76649258 43.75755718 57.05411516 75.86717668\n", + " 15.12820823 18.19416817 22.73745459 30.03194111 42.97126995 67.36058422\n", + " 5.30749937 6.44364165 8.19450854 11.23524 17.75019872 39.48443023]\n", + "997]\n", + " [ 0.20004855 -0.17444879 0.9641308 ]\n", + " [ 0.20153434 -0.14716869 0.96836217]\n", + " [ 0.2027606 -0.11931453 0.97193219]\n", + " [ 0.20372608 -0.09099614 0.97478992]\n", + " [ 0.20442907 -0.06232394 0.97689533]\n", + " [ 0.20486781 -0.03340929 0.9782193 ]\n", + " [ 0.2050409 -0.00436457 0.97874367]\n", + " [ 0.00163462 -0.1957935 0.98064379]\n", + " [ 0.00165059 -0.16161745 0.9868521 ]\n", + " [ 0.00166353 -0.12651199 0.99196368]\n", + " [ 0.00167335 -0.09067166 0.99587944]\n", + " [ 0.00167995 -0.05429781 0.99852337]\n", + " [ 0.00168324 -0.01760077 0.99984368]\n", + " [ 0.01419184 -0.20756647 0.97811796]\n", + " [ 0.04970047 -0.20720276 0.97703474]\n", + " [ 0.08491857 -0.20643606 0.97476817]\n", + " [ 0.11964057 -0.20526936 0.97136534]\n", + " [ 0.15366298 -0.20370571 0.96689796]\n", + " [ 0.18678351 -0.20174719 0.96146242]\n", + " [ 0.01467408 -0.00461102 0.9998817 ]\n", + " [ 0.05138704 -0.00460274 0.99866821]\n", + " [ 0.08779394 -0.00458538 0.9961281 ]\n", + " [ 0.12368372 -0.00455917 0.99231122]\n", + " [ 0.15885436 -0.0045244 0.98729166]\n", + " [ 0.19311093 -0.0044813 0.9811667 ]\n", + " [ 0.19900616 -0.18954613 0.96149301]\n", + " [ 0.20096941 -0.15647489 0.9670196 ]\n", + " [ 0.20254341 -0.12248558 0.97158296]\n", + " [ 0.2037261 -0.08778034 0.97508476]\n", + " [ 0.2045144 -0.05256249 0.9774513 ]\n", + " [ 0.20490517 -0.01703747 0.97863353]\n", + " [ 0.00162826 -0.20759824 0.97821282]\n", + " [ 0.00162826 -0.20759824 0.97821282]\n", + " [ 0.20494776 -0.00446412 0.97876273]\n", + " [ 0.20494776 -0.00446412 0.97876273]\n", + " [ 0.01424722 -0.19576354 0.98054763]\n", + " [ 0.04989441 -0.19542056 0.97944952]\n", + " [ 0.08525013 -0.19469787 0.97715155]\n", + " [ 0.12010852 -0.19359884 0.97370089]\n", + " [ 0.15426631 -0.19212697 0.9691693 ]\n", + " [ 0.18752167 -0.19028463 0.96365314]\n", + " [ 0.01438645 -0.16159264 0.98675268]\n", + " [ 0.05038177 -0.16130879 0.98561714]\n", + " [ 0.08608239 -0.16071144 0.98324039]\n", + " [ 0.1212815 -0.15980479 0.97966996]\n", + " [ 0.15577635 -0.15859338 0.97497788]\n", + " [ 0.18936679 -0.15708053 0.9692605 ]\n", + " [ 0.01449922 -0.12649245 0.9918616 ]\n", + " [ 0.05077617 -0.12626898 0.99069568]\n", + " [ 0.08675481 -0.12579928 0.9882551 ]\n", + " [ 0.12222707 -0.12508774 0.98458804]\n", + " [ 0.15699061 -0.12413931 0.979767 ]\n", + " [ 0.19084708 -0.12295784 0.97388848]\n", + " [ 0.01458479 -0.09065756 0.99577532]\n", + " [ 0.05107523 -0.09049631 0.99458621]\n", + " [ 0.08726392 -0.09015775 0.99209707]\n", + " [ 0.1229415 -0.08964573 0.98835673]\n", + " [ 0.15790584 -0.08896468 0.98343837]\n", + " [ 0.1919602 -0.0881182 0.97743873]\n", + " [ 0.01464229 -0.05428931 0.99841789]\n", + " [ 0.05127607 -0.05419219 0.9972131 ]\n", + " [ 0.08760541 -0.05398843 0.99469118]\n", + " [ 0.12341989 -0.05368064 0.99090157]\n", + " [ 0.15851749 -0.05327188 0.985918 ]\n", + " [ 0.19270261 -0.0527647 0.97983753]\n", + " [ 0.01467095 -0.01759801 0.9997375 ]\n", + " [ 0.05137612 -0.01756642 0.99852487]\n", + " [ 0.08777538 -0.01750018 0.99598656]\n", + " [ 0.12365776 -0.01740019 0.99217236]\n", + " [ 0.15882123 -0.0172675 0.98715635]\n", + " [ 0.1930708 -0.01710301 0.98103576]]\n", + "DEBUG:root:optics_fp: cphi: [0.71674184 0.76675024 0.81864942 0.87035228 0.91865771 0.95932569\n", + " 0.98767201 0.99974255 0.71674184 0.66409483 0.59932455 0.52022133\n", + " 0.42506968 0.31345852 0.18722881 0.05105417 0.99974255 0.99965353\n", + " 0.99950987 0.99925593 0.99874223 0.99744464 0.99234175 0.9056856\n", + " 0.05105417 0.05923154 0.07055215 0.08725098 0.11432168 0.16558509\n", + " 0.29698694 0.9056856 0.73806414 0.80084934 0.86451924 0.92365062\n", + " 0.9704975 0.99665945 0.6953044 0.6229226 0.53010496 0.41345588\n", + " 0.27232584 0.11128947 0.99969644 0.99954923 0.99926436 0.99859785\n", + " 0.99637691 0.97728259 0.0548278 0.06688083 0.08577093 0.11956053\n", + " 0.19678357 0.51804091 0.7167462 0.7167462 0.90395966 0.90395966\n", + " 0.7173329 0.64650885 0.55392153 0.43509499 0.28838199 0.1183142\n", + " 0.78296688 0.7194824 0.6309635 0.50857972 0.34543889 0.14404729\n", + " 0.8507839DEBUG:root:radec2pix: xyfp: [[32.31363499 31.47041645]\n", + " [32.3144687 27.08398795]\n", + " [32.31530242 22.69755946]\n", + " [32.31613613 18.31113097]\n", + " [32.31696984 13.92470248]\n", + " [32.31780355 9.53827398]\n", + " [32.31863726 5.15184549]\n", + " [32.31947097 0.765417 ]\n", + " [32.31363499 31.47041645]\n", + " [27.9272065 31.46958273]\n", + " [23.540778 31.46874902]\n", + " [19.15434951 31.46791531]\n", + " [14.76792102 31.4670816 ]\n", + " [10.38149253 31.46624788]\n", + " [ 5.99506403 31.46541417]\n", + " [ 1.60863554 31.46458045]\n", + " [32.31947097 0.765417 ]\n", + " [27.93304248 0.76458329]\n", + " [23.54661399 0.76374957]\n", + " [19.1601855 0.76291586]\n", + " [14.77375701 0.76208215]\n", + " [10.38732851 0.76124844]\n", + " [ 6.00090002 0.76041472]\n", + " [ 1.61447153 0.75958101]\n", + " [ 1.60863554 31.46458045]\n", + " [ 1.60946926 27.07815197]\n", + " [ 1.61030297 22.69172348]\n", + " [ 1.61113668 18.30529498]\n", + " [ 1.61197039 13.91886648]\n", + " [ 1.6128041 9.53243799]\n", + " [ 1.61363782 5.1460095 ]\n", + " [ 1.61447153 0.75958101]\n", + " [32.29899849 29.55791363]\n", + " [32.30002028 24.18191372]\n", + " [32.30104209 18.80591382]\n", + " [32.30206388 13.42991392]\n", + " [32.30308568 8.05391402]\n", + " [32.30410748 2.67791411]\n", + " [30.40113787 31.45505294]\n", + " [25.02513797 31.45403115]\n", + " [19.64913807 31.45300935]\n", + " [14.27313817 31.45198755]\n", + " [ 8.89713826 31.45096576]\n", + " [ 3.52113836 31.44994396]\n", + " [30.40696816 0.7800535 ]\n", + " [25.03096826 0.7790317 ]\n", + " [19.65496836 0.7780099 ]\n", + " [14.27896845 0.77698811]\n", + " [ 8.90296855 0.77596631]\n", + " [ 3.52696865 0.77494451]\n", + " [ 1.62399904 29.55208334]\n", + " [ 1.62502084 24.17608344]\n", + " [ 1.62604264 18.80008353]\n", + " [ 1.62706443 13.42408364]\n", + " [ 1.62808623 8.04808373]\n", + " [ 1.62910803 2.67208383]\n", + " [32.29863784 31.4554136 ]\n", + " [32.29863784 31.4554136 ]\n", + " [ 1.62946868 0.77458386]\n", + " [ 1.62946868 0.77458386]\n", + " [30.40149852 29.55755297]\n", + " [25.02549862 29.55653118]\n", + " [19.64949872 29.55550938]\n", + " [14.27349882 29.55448759]\n", + " [ 8.89749891 29.55346579]\n", + " [ 3.52149901 29.55244399]\n", + " [30.40252032 24.18155307]\n", + " [25.02652042 24.18053128]\n", + " [19.65052052 24.17950948]\n", + " [14.27452061 24.17848769]\n", + " [ 8.89852071 24.17746589]\n", + " [ 3.52252081 24.17644409]\n", + " [30.40354212 18.80555317]\n", + " [25.02754221 18.80453137]\n", + " [19.65154231 18.80350958]\n", + " [14.27554241 18.80248779]\n", + " [ 8.89954251 18.80146598]\n", + " [ 3.5235426 18.80044419]\n", + " [30.40456392 13.42955327]\n", + " [25.02856401 13.42853147]\n", + " [19.65256411 13.42750967]\n", + " [14.27656421 13.42648788]\n", + " [ 8.9005643 13.42546608]\n", + " [ 3.5245644 13.42444429]\n", + " [30.40558571 8.05355336]\n", + " [25.02958581 8.05253157]\n", + " [19.6535859 8.05150977]\n", + " [14.277586 8.05048797]\n", + " [ 8.9015861 8.04946618]\n", + " [ 3.5255862 8.04844438]\n", + " [30.40660751 2.67755346]\n", + " [25.0306076 2.67653166]\n", + " [19.6546077 2.67550987]\n", + " [14.2786078 2.67448807]\n", + " [ 8.90260789 2.67346627]\n", + " [ 3.52660799 2.67244448]]\n", + "8 0.79980651 0.72282072 0.60489433 0.42782202 0.18390653\n", + " 0.9150296 0.88149415 0.82599605 0.72871014 0.55254711 0.25338228\n", + " 0.96687862 0.95220074 0.92565817 0.87139471 0.74187378 0.40036553\n", + " 0.99622933 0.99443943 0.99100871 0.9831251 0.95810564 0.79702588]\n", + "DEBUG:root:radec2pix: camVec: [[0.20582147 0.20765008 0.20920683 0.21049219 0.21150557 0.2122456\n", + " 0.21271065 0.21289938 0.20582147 0.17940403 0.15227891 0.12455745\n", + " 0.09635017 0.06776763 0.03892112 0.00992292 0.21289938 0.18554193\n", + " 0.15747589 0.1288054 0.09963586 0.07007602 0.04023879 0.01024104\n", + " 0.00992292 0.01000636 0.01007758 0.01013637 0.01018243 0.01021541\n", + " 0.01023502 0.01024104 0.20656285 0.20862007 0.2102697 0.2115111\n", + " 0.21234181 0.21275892 0.19440388 0.16153549 0.12771486 0.09314577\n", + " 0.05803185 0.02257838 0.20106508 0.16704611 0.13206625 0.09631893\n", + " 0.06000442 0.02333228 0.01006049 0.01015553 0.01023184 0.01028888\n", + " 0.01032605 0.01034279 0.20573918 0.20573918 0.01034376 0.01034376\n", + " 0.19517916 0.16217419 0.12821715 0.09351091 0.05825864 0.02266572\n", + " 0.19711638 0.16377271 0.12947641 0.09442771 0.05882858 0.02288505\n", + " 0.19867107 0.16505894 0.13049231 0.09516891 0.05928988 0.02306224\n", + " 0.19984199 0.16603002 0.13126104 0.09573072 0.0596397 0.02319607\n", + " 0.20062602 0.16668139 0.13177743 0.09610838 0.05987462 0.02328514\n", + " 0.20101976 0.1670086 0.13203673 0.09629765 0.05999164 0.02332821]\n", + " [0DEBUG:root:radec2pix: lat: [73.24045629 74.22430856 75.14029247 75.96071497 76.65562135 77.19454225\n", + " 77.54971408 77.7004367 73.24045629 74.24542243 75.18640058 76.03561625\n", + " 76.76261911 77.33584079 77.72573436 77.90930638 77.7004367 79.29904106\n", + " 80.93014794 82.5883689 84.26818815 85.9633334 87.6639727 89.31207398\n", + " 77.90930638 79.51115144 81.14420271 82.80268356 84.48015158 86.16770212\n", + " 87.84429449 89.31207398 73.67977076 74.84367611 75.87839932 76.72967459\n", + " 77.34173684 77.66614591 73.68843996 74.88082796 75.94981974 76.8404193\n", + " 77.49482717 77.86108402 78.39292403 80.37467767 82.39987127 84.45839268\n", + " 86.53837212 88.6125356 78.60323781 80.5880931 82.61407297 84.6695731\n", + " 86.73723257 88.74545658 73.24742531 73.24742531 89.30399741 89.30399741\n", + " 74.13967578 75.38730878 76.51234476 77.4557749 78.15346667 78.54590996\n", + " 75.35848529 76.77078371 78.07006468 79.18567192 80.03121451 80.5165253\n", + " 76.44822453 78.03255968 79.52764934 80.85445453 81.89945108 82.52079347\n", + " 77.3504272 79.10147139 80.80332064 82.38074874 83.7000473 84.53866109\n", + " 78.00303059 79.89280789 81.78299446 83.6236493 85.30285158 86.52492363\n", + " 78.35049019 80.32186123 82.33135444 84.36297386 86.3856321 88.26407642]\n", + ".20164691 0.17515749 0.1479768 0.12021614 0.09198614 0.06339752\n", + " 0.03456171 0.00559103 0.20164691 0.2034844 0.20505578 0.20636157\n", + " 0.2074012 0.20817322 0.20867589 0.20890768 0.00559103 0.00564441\n", + " 0.00569099 0.00573063 0.00576317 0.00578837 0.00580605 0.00581605\n", + " 0.20890768 0.18144072 0.15328055 0.12453134 0.09529889 0.06569253\n", + " 0.0358258 0.00581605 0.19019593 0.15725033 0.12337711 0.08878017\n", + " 0.0536634 0.01823232 0.20239118 0.20446311 0.20613616 0.2074097\n", + " 0.20828117 0.20874739 0.00571471 0.00577657 0.00582791 0.00586841\n", + " 0.00589767 0.00591534 0.19702358 0.16288078 0.12780019 0.0919758\n", + " 0.05560896 0.01891032 0.20156436 0.20156436 0.00591876 0.00591876\n", + " 0.19097333 0.19292238 0.19449762 0.19569785 0.19651986 0.19695996\n", + " 0.15788822 0.15949023 0.1607887 0.16178086 0.16246211 0.16282774\n", + " 0.12387558 0.1251298 0.12614936 0.12693065 0.1274685 0.12775798\n", + " 0.08913848 0.09004163 0.09077781 0.09134344 0.09173387 0.09194479\n", + " 0.0538804 0.0544282 0.05487585 0.05522072 0.05545959 0.05558951\n", + " 0.018307 0.01849597 0.01865108 0.01877134 0.01885557 0.01890269]\n", + " [0.95758866 0.96239353 0.96661025 0.97017582 0.97303851 0.97515771\n", + " 0.9765038 0.97705813 0.95758866 0.96250106 0.96683156 0.9705155\n", + " 0.97349956 0.97574149 0.97721007 0.97788502 0.97705813 0.98262014\n", + " 0.98750643 0.99165333 0.99500728 0.99752486 0.99917322 0.99993064\n", + " 0.97788502 0.98335097 0.98813132 0.9921639 0.99539662 0.99778762\n", + " 0.99930564 0.99993064 0.9597694 0.96527198 0.96982717 0.97333506\n", + " 0.97572086 0.97693461 0.95981506 0.96545384 0.97015298 0.97380957\n", + " 0.97634587 0.97770893 0.97956122 0.98593216 0.99122376 0.99533322\n", + " 0.99818069 0.99971026 0.98034713 0.98659349 0.99174716 0.99570809\n", + " 0.99839923 0.99976769 0.95762372 0.95762372 0.99992898 0.99992898\n", + " 0.96199495 0.96771922 0.97248704 0.97619571 0.97876753 0.9801495\n", + " 0.96758278 0.97352009 0.97845943 0.98229851 0.98495952 0.98638907\n", + " 0.97220607 0.9783139 0.98339112 0.98733555 0.99006893 0.99153721\n", + " 0.97576509 0.98200129 0.98718283 0.99120735 0.99399598 0.9954939\n", + " 0.97818511 0.98450743 0.98975924 0.99383794 0.99666407 0.99818215\n", + " 0.97941611 0.98578194 0.99106934 0.99517556 0.99802078 0.99954914]]\n", + "DEBUG:root:radec2pix: ccdpx: [[-4.44999999e+01 -4.99999855e-01]\n", + " [-4.45000000e+01 2.91928571e+02]\n", + " [-4.45000000e+01 5.84357143e+02]\n", + " [-4.44999998e+01 8.76785714e+02]\n", + " [-4.45000001e+01 1.16921429e+03]\n", + " [-4.45000000e+01 1.46164286e+03]\n", + " [-4.45000000e+01 1.75407143e+03]\n", + " [-4.44999999e+01 2.04650000e+03]\n", + " [-4.44999999e+01 -4.99999855e-01]\n", + " [ 2.47928571e+02 -5.00000005e-01]\n", + " [ 5.40357143e+02 -5.00000101e-01]\n", + " [ 8.32785714e+02 -5.00000211e-01]\n", + " [ 1.12521429e+03 -4.99999718e-01]\n", + " [ 1.41764286e+03 -5.00000108e-01]\n", + " [ 1.71007143e+03 -4.99999976e-01]\n", + " [ 2.00250000e+03 -5.00000222e-01]\n", + " [-4.44999999e+01 2.04650000e+03]\n", + " [ 2.4792857DEBUG:root:optics_fp: sphi: [0.69733861 0.64194554 0.57429359 0.49242959 0.39505443 0.28230164\n", + " 0.15653753 0.02269007 0.69733861 0.74764835 0.80050614 0.85403148\n", + " 0.90516063 0.94960189 0.98231633 0.99869589 0.02269007 0.02632152\n", + " 0.03130538 0.03856929 0.05013934 0.07144362 0.12352264 0.42394999\n", + " 0.99869589 0.99824427 0.99750809 0.99618636 0.99344379 0.98619551\n", + " 0.95488154 0.42394999 0.67473055 0.59886588 0.50259973 0.38323562\n", + " 0.24111118 0.08166976 0.71871537 0.78228347 0.84793203 0.91052415\n", + " 0.96220509 0.99378803 0.02463779 0.03002235 0.03835014 0.05293717\n", + " 0.08504731 0.21194041 0.99849582 0.99776097 0.99631488 0.99282691\n", + " 0.98044695 0.85535584 0.69733413 0.69733413 0.42761774 0.42761774\n", + " 0.69673058 0.76290649 0.83256888 0.90038456 0.95751545 0.99297621\n", + " 0.62206339 0.69451068 0.77581252 0.86101491 0.93844125 0.9895708\n", + " 0.52551558 0.6002579 0.6910356 0.79630575 0.903863 0.98294374\n", + " 0.40338671 0.47219495 0.5636759 0.68482227 0.83348167 0.96736623\n", + " 0.25523664 0.305473 0.37836089 0DEBUG:root:radec2pix: camVec Shape: (3, 96)\n", + "DEBUG:root:radec2pix: lng: [270.42176524 270.49034045 270.58554379 270.72662079 270.95724718\n", + " 271.40230304 272.6202602 289.32090211 270.42176524 278.37487059\n", + " 286.01754065 293.1193046 299.54422335 305.24693184 310.24816583\n", + " 314.60671783 289.32090211 351.88332455 355.81697528 357.18453549\n", + " 357.87852145 358.29811982 358.57917324 358.78056782 314.60671783\n", + " 318.91052218 323.86153916 329.52530495 335.93162927 343.04519816\n", + " 350.73789032 358.78056782 270.47833289 270.58513886 270.75335014\n", + " 271.05727717 271.77214072 275.46283159 273.91137001 283.48836134\n", + " 292.36007687 300.23563069 307.02864268 312.79442784 342.55577414\n", + " 354.88167257 357.01022263 357.88894543 358.36857558 358.67064356\n", + " 316.39469688 322.09565632 328.83707711 336.69003224 345.58630386\n", + " 355.24690052 270.44938101 270.44938101 358.75219462 358.75219462\n", + " 274.16251665 284.32266507 293.64661849 301.81542209 308.76235319\n", + " 314.58099285 275.08757932 287.34521298 298.17498348 307.196148\n", + " 314.48659385 320.3241534 276.53899869 291.90639058 304.59126569\n", + " 314.33729311 321.66504236 327.20736404 279.1393103 299.43995741\n", + " 314.06556227 323.90144592 330.60294465 335.34278839 285.09401101\n", + " 313.41621828 328.3557916 336.49369688 341.42440255 344.68693562\n", + " 309.81698293 341.12351394 348.72452469 351.99035546 353.79501012\n", + " 354.93771634]\n", + "2e+02 2.04650000e+03]\n", + " [ 5.40357143e+02 2.04650000e+03]\n", + " [ 8.32785714e+02 2.04650000e+03]\n", + " [ 1.12521429e+03 2.04650000e+03]\n", + " [ 1.41764286e+03 2.04650000e+03]\n", + " [ 1.71007143e+03 2.04650000e+03]\n", + " [ 2.00250000e+03 2.04650000e+03]\n", + " [ 2.00250000e+03 -5.00000222e-01]\n", + " [ 2.00250000e+03 2.91928571e+02]\n", + " [ 2.00250000e+03 5.84357143e+02]\n", + " [ 2.00250000e+03 8.76785714e+02]\n", + " [ 2.00250000e+03 1.16921429e+03]\n", + " [ 2.00250000e+03 1.46164286e+03]\n", + " [ 2.00250000e+03 1.75407143e+03]\n", + " [ 2.00250000e+03 2.04650000e+03]\n", + " [-4.35000000e+01 1.27000000e+02]\n", + " [-4.35000000e+01 4.85400000e+02]\n", + " [-4.34999998e+01 8.43800000e+02]\n", + " [-4.35000001e+01 1.20220000e+03]\n", + " [-4.35000000e+01 1.56060000e+03]\n", + " [-4.34999999e+01 1.91900000e+03]\n", + " [ 8.29999998e+01 4.99999766e-01]\n", + " [ 4.41400000e+02 4.99999737e-01]\n", + " [ 7.99800000e+02 4.99999723e-01]\n", + " [ 1.15820000e+03 5.00000251e-01]\n", + " [ 1.51660000e+03 4.99999874e-01]\n", + " [ 1.87500000e+03 5.00000148e-01]\n", + " [ 8.30000001e+01 2.04550000e+03]\n", + " [ 4.41400000e+02 2.04550000e+03]\n", + " [ 7.99800000e+02 2.04550000e+03]\n", + " [ 1.15820000e+03 2.04550000e+03]\n", + " [ 1.51660000e+03 2.04550000e+03]\n", + " [ 1.87500000e+03 2.04550000e+03]\n", + " [ 2.00150000e+03 1.27000000e+02]\n", + " [ 2.00150000e+03 4.85400000e+02]\n", + " [ 2.00150000e+03 8.43800000e+02]\n", + " [ 2.00150000e+03 1.20220000e+03]\n", + " [ 2.00150000e+03 1.56060000e+03]\n", + " [ 2.00150000e+03 1.91900000e+03]\n", + " [-4.35000002e+01 4.99999824e-01]\n", + " [-4.35000002e+01 4.99999824e-01]\n", + " [ 2.00150000e+03 2.04550000e+03]\n", + " [ 2.00150000e+03 2.04550000e+03]\n", + " [ 8.30000001e+01 1.27000000e+02]\n", + " [ 4.41400000e+02 1.27000000e+02]\n", + " [ 7.99800000e+02 1.27000000e+02]\n", + " [ 1.15820000e+03 1.27000000e+02]\n", + " [ 1.51660000e+03 1.27000000e+02]\n", + " [ 1.87500000e+03 1.27000000e+02]\n", + " [ 8.29999998e+01 4.85400000e+02]\n", + " [ 4.41400000e+02 4.85400000e+02]\n", + " [ 7.99800000e+02 4.85400000e+02]\n", + " [ 1.15820000e+03 4.85400000e+02]\n", + " [ 1.51660000e+03 4.85400000e+02]\n", + " [ 1.87500000e+03 4.85400000e+02]\n", + " [ 8.30000003e+01 8.43800000e+02]\n", + " [ 4.41400000e+02 8.43800000e+02]\n", + " [ 7.99800000e+02 8.43800000e+02]\n", + " [ 1.15820000e+03 8.43800000e+02]\n", + " [ 1.51660000e+03 8.43800000e+02]\n", + " [ 1.87500000e+03 8.43800000e+02]\n", + " [ 8.29999997e+01 1.20220000e+03]\n", + " [ 4.41400000e+02 1.20220000e+03]\n", + " [ 7.99800000e+02 1.20220000e+03]\n", + " [ 1.15820000e+03 1.20220000e+03]\n", + " [ 1.51660000e+03 1.20220000e+03]\n", + " [ 1.87500000e+03 1.20220000e+03]\n", + " [ 8.30000001e+01 1.56060000e+03]\n", + " [ 4.41400000e+02 1.56060000e+03]\n", + " [ 7.99800000e+02 1.56060000e+03]\n", + " [ 1.15820000e+03 1.56060000e+03]\n", + " [ 1.51660000e+03 1.56060000e+03]\n", + " [ 1.87500000e+03 1.56060000e+03]\n", + " [ 8.30000000e+01 1.91900000e+03]\n", + " [ 4.41400000e+02 1.91900000e+03]\n", + " [ 7.99800000e+02 1.91900000e+03]\n", + " [ 1.15820000e+03 1.91900000e+03]\n", + " [ 1.51660000e+03 1.91900000e+03]\n", + " [ 1.87500000e+03 1.91900000e+03]]\n", + ".49058257 0.67053956 0.91635552\n", + " 0.08675898 0.10531014 0.13379739 0.18293452 0.28641505 0.60394515]\n", + "DEBUG:root:make_az_asym: xyp: [[32.23341696 31.55141621]\n", + " [32.23194958 27.16498788]\n", + " [32.2304822 22.77855956]\n", + " [32.22901483 18.39213124]\n", + " [32.22754745 14.00570291]\n", + " [32.22608007 9.61927458]\n", + " [32.22461269 5.23284626]\n", + " [32.2231453 0.84641793]\n", + " [32.23341696 31.55141621]\n", + " [27.84698864 31.5528836 ]\n", + " [23.46056031 31.55435097]\n", + " [19.07413198 31.55581835]\n", + " [14.68770366 31.55728573]\n", + " [10.30127533 31.55875311]\n", + " [ 5.91484701 31.56022049]\n", + " [ 1.52841868 31.56168787]\n", + " [32.2231453 0.84641793]\n", + " [27.83671698 0.84788531]\n", + " [23.45028865 0.84935269]\n", + " [19.06386033 0.85082007]\n", + " [14.677432 0.85228745]\n", + " [10.29100367 0.85375483]\n", + " [ 5.90457535 0.85522221]\n", + " [ 1.51814702 0.85668959]\n", + " [ 1.52841868 31.56168787]\n", + " [ 1.5269513 27.17525955]\n", + " [ 1.52548392 22.78883122]\n", + " [ 1.52401654 18.4024029 ]\n", + " [ 1.52254916 14.01597457]\n", + " [ 1.52108178 9.62954624]\n", + " [ 1.5196144 5.24311792]\n", + " [ 1.51814702 0.85668959]\n", + " [32.21777718 29.63892134]\n", + " [32.21597876 24.26292164]\n", + " [32.21418034 18.88692194]\n", + " [32.21238193 13.51092224]\n", + " [32.21058351 8.13492254]\n", + " [32.20878509 2.75892284]\n", + " [30.32091205 31.53705599]\n", + " [24.94491236 31.53885442]\n", + " [19.56891265 31.54065283]\n", + " [14.19291295 31.54245125]\n", + " [ 8.81691325 31.54424967]\n", + " [ 3.44091356 31.54604808]\n", + " [30.31065043 0.86205771]\n", + " [24.93465073 0.86385613]\n", + " [19.55865103 0.86565455]\n", + " [14.18265134 0.86745297]\n", + " [ 8.80665163 0.86925139]\n", + " [ 3.43065193 0.8710498 ]\n", + " [ 1.5427789 29.64918296]\n", + " [ 1.54098048 24.27318326]\n", + " [ 1.53918206 18.89718357]\n", + " [ 1.53738364 13.52118387]\n", + " [ 1.53558522 8.14518416]\n", + " [ 1.5337868 2.76918446]\n", + " [32.21841195 31.53642123]\n", + " [32.21841195 31.53642123]\n", + " [ 1.53315204 0.87168457]\n", + " [ 1.53315204 0.87168457]\n", + " [30.32027729 29.6395561 ]\n", + " [24.94427759 29.64135452]\n", + " [19.56827789 29.64315294]\n", + " [14.19227819 29.64495136]\n", + " [ 8.81627849 29.64674978]\n", + " [ 3.44027879 29.6485482 ]\n", + " [30.31847887 24.2635564 ]\n", + " [24.94247917 24.26535482]\n", + " [19.56647947 24.26715324]\n", + " [14.19047977 24.26895166]\n", + " [ 8.81448007 24.27075007]\n", + " [ 3.43848037 24.2725485 ]\n", + " [30.31668045 18.8875567 ]\n", + " [24.94068075 18.88935513]\n", + " [19.56468105 18.89115354]\n", + " [14.18868135 18.89295196]\n", + " [ 8.81268165 18.89475038]\n", + " [ 3.43668195 18.89654879]\n", + " [30.31488203 13.51155701]\n", + " [24.93888233 13.51335542]\n", + " [19.56288263 13.51515384]\n", + " [14.18688293 13.51695226]\n", + " [ 8.81088324 13.51875068]\n", + " [ 3.43488354 13.5205491 ]\n", + " [30.31308361 8.13555731]\n", + " [24.93708392 8.13735572]\n", + " [19.56108422 8.13915414]\n", + " [14.18508451 8.14095256]\n", + " [ 8.80908482 8.14275098]\n", + " [ 3.43308512 8.1445494 ]\n", + " [30.31128519 2.75955761]\n", + " [24.93528549 2.76135602]\n", + " [19.5592858 2.76315444]\n", + " [14.18328609 2.76495286]\n", + " [ 8.8072864 2.76675128]\n", + " [ 3.4312867 2.7685497 ]]\n", + "DEBUG:root:radec2pix: lat: [78.01259544 79.61854981 81.2561548 82.92023352 84.60572556 86.30750292\n", + " 88.02000573 89.72623162 78.01259544 77.8905989 77.5557472 77.02861409\n", + " 76.33783962 75.51523956 74.59210732 73.59715789 89.72623162 88.17123291\n", + " 86.46586111 84.76551164 83.07960166 81.41406813 79.77423864 78.16538766\n", + " 73.59715789 74.60763881 75.5491728 76.39298182 77.10737428 77.65965515\n", + " 78.01977483 78.16538766 78.70852006 80.69871958 82.73128852 84.79686317\n", + " 86.88594315 88.98689611 77.99183548 77.69708601 77.10179122 76.25561048\n", + " 75.21673598 74.0417777 89.11867119 87.04263922 84.95641064 82.89040132\n", + " 80.8558565 78.86257349 74.04815363 75.2440736 76.30818941 77.18330532\n", + " 77.80960312 78.1346569 78.0179859 78.0179859 78.1707132 78.1707132\n", + " 78.68041726 78.36422733 77.72853599 76.83064382 75.73566662 74.50486571\n", + " 80.66353948 80.27068815 79.49543516 78.42701765 77.15572991 75.75689035\n", + " 82.68520532 82.17800874 81.21001267 79.9277617 78.4547664 76.877901\n", + " 84.73149404 84.03535931 82.79194264 81.24820065 79.5578398 77.80619197\n", + " 86.77660248 85.72142555 84.09351686 82.26517071 80.37322779 78.47497463\n", + " 88.68716566 86.88752222 84.86498838 82.8264064 80.80719889 78.82380063]\n", + "DEBUG:root:make_az_asym: xyp: shape: (96, 2)\n", + "DEBUG:root:radec2pix: ccdpx: [[-4.45000002e+01 -5.00000175e-01]\n", + " [-4.44999997e+01 2.91928572e+02]\n", + " [-4.45000002e+01 5.84357143e+02]\n", + " [-4.45000000e+01 8.76785714e+02]\n", + " [-4.45000001e+01 1.16921429e+03]\n", + " [-4.44999999e+01 1.46164286e+03]\n", + " [-4.45000001e+01 1.75407143e+03]\n", + " [-4.44999997e+01 2.04650000e+03]\n", + " [-4.45000002e+01 -5.00000175e-01]\n", + " [ 2.47928571e+02 -5.00000003e-01]\n", + " [ 5.40357143e+02 -4.99999889e-01]\n", + " [ 8.32785714e+02 -5.00000160e-01]\n", + " [ 1.12521429e+03 -5.00000087e-01]\n", + " [ 1.41764286e+03 -5.00000059e-01]\n", + " [ 1.71007143e+03 -4.99999907e-01]\n", + " [ 2.00250000e+03 -4.99999721e-01]\n", + " [-4.44999997e+01 2.04650000e+03]\n", + " [ 2.47928571e+02 2.04650000e+03]\n", + " [ 5.40357143e+02 2.04650000e+03]\n", + " [ 8.32785714e+02 2.04650000e+03]\n", + " [ 1.12521429e+03 2.04650000e+03]\n", + " [ 1.41764286e+03 2.04650000e+03]\n", + " [ 1.71007143e+03 2.04650000e+03]\n", + " [ 2.00250000e+03 2.04650000e+03]\n", + " [ 2.00250000e+03 -4.99999721e-01]\n", + " [ 2.00250000e+03 2.91928571e+02]\n", + " [ 2.00250000e+03 5.84357143e+02]\n", + " [ 2.00250000e+03 8.76785714e+02]\n", + " [ 2.00250000e+03 1.16921429e+03]\n", + " [ 2.00250000e+03 1.46164286e+03]\n", + " [ 2.00250000e+03 1.75407143e+03]\n", + " [ 2.00250000e+03 2.04650000e+03]\n", + " [-4.35000001e+01 1.27000000e+02]\n", + " [-4.34999997e+01 4.85400000e+02]\n", + " [-4.35000003e+01 8.43800000e+02]\n", + " [-4.35000003e+01 1.20220000e+03]\n", + " [-4.35000002e+01 1.56060000e+03]\n", + " [-4.35000003e+01 1.91900000e+03]\n", + " [ 8.30000000e+01 4.99999980e-01]\n", + " [ 4.41400000e+02 4.99999948e-01]\n", + " [ 7.99800000e+02 4.99999731e-01]\n", + " [ 1.15820000e+03 4.99999908e-01]\n", + " [ 1.51660000e+03 4.99999771e-01]\n", + " [ 1.87500000e+03 5.00000017e-01]\n", + " [ 8.29999998e+01 2.04550000e+03]\n", + " [ 4.41400000e+02 2.04550000e+03]\n", + " [ 7.99800000e+02 2.04550000e+03]\n", + " [ 1.15820000e+03 2.04550000e+03]\n", + " [ 1.51660000e+03 2.04550000e+03]\n", + " [ 1.87500000e+03 2.04550000e+03]\n", + " [ 2.00150000e+03 1.27000000e+02]\n", + " [ 2.00150000e+03 4.85400000e+02]\n", + " [ 2.00150000e+03 8.43800000e+02]\n", + " [ 2.00150000e+03 1.20220000e+03]\n", + " [ 2.00150000e+03 1.56060000e+03]\n", + " [ 2.00150000e+03 1.91900000e+03]\n", + " [-4.35000001e+01 4.99999868e-01]\n", + " [-4.35000001e+01 4.99999868e-01]\n", + " [ 2.00150000e+03 2.04550000e+03]\n", + " [ 2.00150000e+03 2.04550000e+03]\n", + " [ 8.30000002e+01 1.27000000e+02]\n", + " [ 4.41400000e+02 1.27000000e+02]\n", + " [ 7.99800000e+02 1.27000000e+02]\n", + " [ 1.15820000e+03 1.27000000e+02]\n", + " [ 1.51660000e+03 1.27000000e+02]\n", + " [ 1.87500000e+03 1.27000000e+02]\n", + " [ 8.30000001e+01 4.85400000e+02]\n", + " [ 4.41400000e+02 4.85400000e+02]\n", + " [ 7.99800000e+02 4.85400000e+02]\n", + " [ 1.15820000e+03 4.85400000e+02]\n", + " [ 1.51660000e+03 4.85400000e+02]\n", + " [ 1.87500000e+03 4.85400000e+02]\n", + " [ 8.29999997e+01 8.43800000e+02]\n", + " [ 4.41400000e+02 8.43800000e+02]\n", + " [ 7.99800000e+02 8.43800000e+02]\n", + " [ 1.15820000e+03 8.43800000e+02]\n", + " [ 1.51660000e+03 8.43800000e+02]\n", + " [ 1.87500000e+03 8.43800000e+02]\n", + " [ 8.29999998e+01 1.20220000e+03]\n", + " [ 4.41400000e+02 1.20220000e+03]\n", + " [ 7.99800000e+02 1.20220000e+03]\n", + " [ 1.15820000e+03 1.20220000e+03]\n", + " [ 1.51660000e+03 1.20220000e+03]\n", + " [ 1.87500000e+03 1.20220000e+03]\n", + " [ 8.30000003e+01 1.56060000e+03]\n", + " [ 4.41400000e+02 1.56060000e+03]\n", + " [ 7.99800000e+02 1.56060000e+03]\n", + " [ 1.15820000e+03 1.56060000e+03]\n", + " [ 1.51660000e+03 1.56060000e+03]\n", + " [ 1.87500000e+03 1.56060000e+03]\n", + " [ 8.29999998e+01 1.91900000e+03]\n", + " [ 4.41400000e+02 1.91900000e+03]\n", + " [ 7.99800000e+02 1.91900000e+03]\n", + " [ 1.15820000e+03 1.91900000e+03]\n", + " [ 1.51660000e+03 1.91900000e+03]\n", + " [ 1.87500000e+03 1.91900000e+03]]\n", + "DEBUG:root:radec2pix: lat: [73.24108038 74.22539246 75.14065481 75.95980834 76.6531185 77.19018187\n", + " 77.5432879 77.69182998 73.24108038 74.24861044 75.19133398 76.04212851\n", + " 76.77071823 77.34548632 77.73675519 77.92139244 77.69182998 79.29098794\n", + " 80.92271511 82.58149911 84.2618841 85.95783408 87.66008742 89.3157252\n", + " 77.92139244 79.52414159 81.15801466 82.81709844 84.49494889 86.18266378\n", + " 87.85870936 89.3157252 73.68081786 74.84436919 75.87765867 76.72697854\n", + " 77.33670031 77.65849826 73.69035695 74.88520803 75.9561532 76.84869716\n", + " 77.50496612 77.87275428 78.38454537 80.36704866 82.39295371 84.45217978\n", + " 86.53330534 88.61095022 78.61571107 80.60164359 82.62842612 84.684393\n", + " 86.75213987 88.75761015 73.24806584 73.24806584 89.30770045 89.30770045\n", + " 74.1417384 75.39152116 76.51854281 77.46407515 78.16380788 78.55793051\n", + " 75.35984123 76.77406669 78.07566348 79.19387762 80.04201199 80.52949342\n", + " 76.4480688 78.03443361 79.53211824 80.86193095 81.91012885 82.53435821\n", + " 77.34827857 79.10130772 80.80570953 82.38629346 83.70950064 84.55228195\n", + " 77.99844552 79.88985033 81.78208758 83.62548455 85.30897599 86.53756064\n", + " 78.34312947 80.31550148 82.32609465 84.35907996 86.38425999 88.27008044]\n", + "DEBUG:root:radec2pix: fitpx: [[4271.49999985 4155.49999985]\n", + " [4271.49999998 3863.07142855]\n", + " [4271.50000002 3570.64285716]\n", + " [4271.49999976 3278.21428558]\n", + " [4271.50000012 2985.78571434]\n", + " [4271.50000004 2693.35714287]\n", + " [4271.50000005 2400.92857144]\n", + " [4271.49999991 2108.5 ]\n", + " [4271.49999985 4155.49999985]\n", + " [3979.07142858 4155.50000001]\n", + " [3686.64285722 4155.5000001 ]\n", + " [3394.21428584 4155.50000021]\n", + " [3101.78571415 4155.49999972]\n", + " [2809.35714289 4155.50000011]\n", + " [2516.92857142 4155.49999998]\n", + " [2224.50000001 4155.50000022]\n", + " [4271.49999991 2108.5 ]\n", + " [3979.07142843 2108.5 ]\n", + " [3686.6428569 2108.49999999]\n", + " [3394.21428586 2108.5 ]\n", + " [3101.78571453 2108.50000001]\n", + " [2809.35714306 2108.50000001]\n", + " [2516.9285717 2108.50000003]\n", + " [2224.49999984 2108.49999993]\n", + " [2224.50000001 4155.50000022]\n", + " [2224.5 3863.07142862]\n", + " [2224.49999998 3570.64285684]\n", + " [2224.50000001 3278.21428585]\n", + " [2224.50000002 2985.78571445]\n", + " [2224.5 2693.35714285]\n", + " [2224.49999995 2400.92857125]\n", + " [2224.49999984 2108.49999993]\n", + " [4270.49999995 4027.99999996]\n", + " [4270.50000001 3669.6 ]\n", + " [4270.4999998 3311.19999989]\n", + " [4270.50000006 2952.80000003]\n", + " [4270.50000002 2594.40000001]\n", + " [4270.49999985 2235.99999999]\n", + " [4144.00000023 4154.50000023]\n", + " [3785.60000021 4154.50000026]\n", + " [3427.20000017 4154.50000028]\n", + " [3068.79999989 4154.49999975]\n", + " [2710.40000004 4154.50000013]\n", + " [2351.99999998 4154.49999985]\n", + " [4143.99999992 2109.5 ]\n", + " [3785.59999985 2109.5 ]\n", + " [3427.19999998 2109.5 ]\n", + " [3068.80000001 2109.5 ]\n", + " [2710.40000021 2109.50000002]\n", + " [2352.00000017 2109.50000003]\n", + " [2225.5 4027.99999993]\n", + " [2225.49999998 3669.59999975]\n", + " [2225.50000001 3311.20000015]\n", + " [2225.5 2952.8 ]\n", + " [2225.49999998 2594.39999987]\n", + " [2225.50000008 2236.00000013]\n", + " [4270.50000018 4154.50000018]\n", + " [4270.50000018 4154.50000018]\n", + " [2225.49999981 2109.49999992]\n", + " [2225.49999981 2109.49999992]\n", + " [4143.99999987 4027.99999987]\n", + " [3785.59999992 4027.9999999 ]\n", + " [3427.2000001 4028.00000015]\n", + " [3068.80000011 4028.00000023]\n", + " [2710.39999995 4027.99999982]\n", + " [2351.99999998 4027.99999985]\n", + " [4144.00000018 3669.60000014]\n", + " [3785.5999999 3669.59999991]\n", + " [3427.19999994 3669.59999993]\n", + " [3068.79999994 3669.5999999 ]\n", + " [2710.39999997 3669.59999991]\n", + " [2351.99999997 3669.5999998 ]\n", + " [4143.99999973 3311.19999984]\n", + " [3785.60000019 3311.20000014]\n", + " [3427.1999998 3311.19999981]\n", + " [3068.79999976 3311.19999969]\n", + " [2710.39999985 3311.19999967]\n", + " [2352.00000003 3311.20000016]\n", + " [4144.00000026 2952.80000011]\n", + " [3785.6000001 2952.80000005]\n", + " [3427.20000009 2952.80000006]\n", + " [3068.8000003 2952.80000028]\n", + " [2710.39999986 2952.79999979]\n", + " [2352.00000001 2952.80000004]\n", + " [4143.99999994 2594.39999998]\n", + " [3785.6 2594.4 ]\n", + " [3427.19999999 2594.39999999]\n", + " [3068.79999999 2594.39999999]\n", + " [2710.40000015 2594.40000014]\n", + " [2351.99999993 2594.39999983]\n", + " [4143.99999995 2236. ]\n", + " [3785.59999975 2235.99999997]\n", + " [3427.19999971 2235.99999996]\n", + " [3068.80000003 2236.00000001]\n", + " [2710.39999999 2236. ]\n", + " [2352.00000022 2236.00000016]]\n", + "DEBUG:root:cartToSphere: vec: [[0.20582147 0.20164691 0.95758866]\n", + " [0.20765008 0.17515749 0.96239353]\n", + " [0.20920683 0.1479768 0.96661025]\n", + " [0.21049219 0.12021614 0.97017582]\n", + " [0.21150557 0.09198614 0.97303851]\n", + " [0.2122456 0.06339752 0.97515771]\n", + " [0.21271065 0.03456171 0.9765038 ]\n", + " [0.21289938 0.00559103 0.97705813]\n", + " [0.20582147 0.20164691 0.95758866]\n", + " [0.17940403 0.2034844 0.96250106]\n", + " [0.15227891 0.20505578 0.96683156]\n", + " [0.12455745 0.20636157 0.9705155 ]\n", + " [0.09635017 0.2074012 0.97349956]\n", + " [0.06776763 0.20817322 0.97574149]\n", + " [0.03892112 0.20867589 0.97721007]\n", + " [0.00992292 0.20890768 0.97788502]\n", + " [0.21289938 0.00559103 0.97705813]\n", + " [0.18554193 0.00564441 0.98262014]\n", + " [0.15747589 0.00569099 0.98750643]\n", + " [0.1288054 0.00573063 0.99165333]\n", + " [0.09963586 0.00576317 0.99500728]\n", + " [0.07007602 0.00578837 0.99752486]\n", + " [0.04023879 0.00580605 0.99917322]\n", + " [0.01024104 0.00581605 0.99993064]\n", + " [0.00992292 0.20890768 0.97788502]\n", + " [0.01000636 0.18144072 0.98335097]\n", + " [0.01007758 0.15328055 0.98813132]\n", + " [0.01013637 0.12453134 0.9921639 ]\n", + " [0.01018243 0.09529889 0.99539662]\n", + " [0.01021541 0.06569253 0.99778762]\n", + " [0.01023502 0.0358258 0.99930564]\n", + " [0.01024104 0.00581605 0.99993064]\n", + " [0.20656285 0.19019593 0.9597694 ]\n", + " [0.20862007 0.15725033 0.96527198]\n", + " [0.2102697 0.12337711 0.96982717]\n", + " [0.2115111 0.08878017 0.97333506]\n", + " [0.21234181 0.0536634 0.97572086]\n", + " [0.21275892 0.01823232 0.97693461]\n", + " [0.19440388 0.20239118 0.95981506]\n", + " [0.16153549 0.20446311 0.96545384]\n", + " [0.12771486 0.20613616 0.97015298]\n", + " [0.09314577 0.2074097 0.97380957]\n", + " [0.05803185 0.20828117 0.97634587]\n", + " [0.02257838 0.20874739 0.97770893]\n", + " [0.20106508 0.00571471 0.97956122]\n", + " [0.16704611 0.00577657 0.98593216]\n", + " [0.13206625 0.00582791 0.99122376]\n", + " [0.09631893 0.00586841 0.99533322]\n", + " [0.06000442 0.00589767 0.99818069]\n", + " [0.02333228 0.00591534 0.99971026]\n", + " [0.01006049 0.19702358 0.98034713]\n", + " [0.01015553 0.16288078 0.98659349]\n", + " [0.01023184 0.12780019 0.99174716]\n", + " [0.01028888 0.0919758 0.99570809]\n", + " [0.01032605 0.05560896 0.99839923]\n", + " [0.01034279 0.01891032 0.99976769]\n", + " [0.20573918 0.20156436 0.95762372]\n", + " [0.20573918 0.20156436 0.95762372]\n", + " [0.01034376 0.00591876 0.99992898]\n", + " [0.01034376 0.00591876 0.99992898]\n", + " [0.19517916 0.19097333 0.96199495]\n", + " [0.16217419 0.19292238 0.96771922]\n", + " [0.12821715 0.19449762 0.97248704]\n", + " [0.09351091 0.19569785 0.97619571]\n", + " [0.05825864 0.19651986 0.97876753]\n", + " [0.02266572 0.19695996 0.9801495 ]\n", + " [0.19711638 0.15788822 0.96758278]\n", + " [0.16377271 0.15949023 0.97352009]\n", + " [0.12947641 0.1607887 0.97845943]\n", + " [0.09442771 0.16178086 0.98229851]\n", + " [0.05882858 0.16246211 0.98495952]\n", + " [0.02288505 0.16282774 0.98638907]\n", + " [0.19867107 0.12387558 0.97220607]\n", + " [0.16505894 0.1251298 0.9783139 ]\n", + " [0.13049231 0.12614936 0.98339112]\n", + " [0.09516891 0.12693065 0.98733555]\n", + " [0.05928988 0.1274685 0.99006893]\n", + " [0.02306224 0.12775798 0.99153721]\n", + " [0.19984199 0.08913848 0.97576509]\n", + " [0.16603002 0.09004163 0.98200129]\n", + " [0.13126104 0.09077781 0.98718283]\n", + " [0.09573072 0.09134344 0.99120735]\n", + " [0.0596397 0.09173387 0.99399598]\n", + " [0.02319607 0.09194479 0.9954939 ]\n", + " [0.20062602 0.0538804 0.97818511]\n", + " [0.16668139 0.0544282 0.98450743]\n", + " [0.13177743 0.05487585 0.98975924]\n", + " [0.09610838 0.05522072 0.99383794]\n", + " [0.05987462 0.05545959 0.99666407]\n", + " [0.02328514 0.05558951 0.99818215]\n", + " [0.20101976 0.018307 0.97941611]\n", + " [0.1670086 0.01849597 0.98578194]\n", + " [0.13203673 0.01865108 0.99106934]\n", + " [0.09629765 0.01877134 0.99517556]\n", + " [0.05999164 0.01885557 0.99802078]\n", + " [0.02332821 0.01890269 0.99954914]]\n", + "DEBUG:root:optics_fp: rtanth: [45.12621722 42.17029986 39.48131725 37.11732942 35.14398081 33.63010767\n", + " 32.639706 32.22108294 45.12621722 42.10767167 39.34740219 36.90340926\n", + " 34.84231167 33.23542179 32.15091525 31.64254972 32.22108294 27.83664346\n", + " 23.45294788 19.07050919 14.69045227 10.31581149 5.95852807 1.75318507\n", + " 31.64254972 27.26187195 22.88339755 18.50869029 14.14124675 9.79079234\n", + " 5.49780688 1.75318507 43.79692971 40.34599343 37.35277865 34.93513576\n", + " 33.218972 32.31623807 43.77085556 40.23738319 37.14847194 34.62331124\n", + " 32.79239466 31.77595577 30.30982943 24.93681956 19.5654525 14.19759296\n", + " 8.839633 3.53685305 29.73311087 24.36567291 19.00307614 13.6510271\n", + " 8.32988182 3.19782325 45.10500496 45.10500496 1.7737717 1.7737717\n", + " 42.42166164 38.76540449 35.54881922 32.90111338 30.96854417 29.89014797\n", + " 38.84875172 34.81931533 31.19850449 28.14447363 25.85882561 24.55705763\n", + " 35.73032881 31.30200643 27.21722925 23.65464611 20.88324085 19.24785615\n", + " 33.19472902 28.37338973 23.79099004 19.61570597 16.16611847 13.98976784\n", + " 31.38353749 26.23138645 21.19074319 16.36497207 12.01581361 8.87411937\n", + " 30.4263959 25.07837271 19.74554986 14.44477252 9.23140937 4.4259617 ]\n", + "DEBUG:root:optics_fp: xyfp: [[-32.31281793 -31.43806373]\n", + " [-32.31091541 -27.05163558]\n", + " [-32.30901287 -22.66520742]\n", + " [-32.30711034 -18.27877926]\n", + " [-32.3052078 -13.8923511 ]\n", + " [-32.30330527 -9.50592294]\n", + " [-32.30140274 -5.11949478]\n", + " [-32.2995002 -0.73306663]\n", + " [-32.31281793 -31.43806373]\n", + " [-27.92638978 -31.43996627]\n", + " [-23.53996162 -31.4418688 ]\n", + " [-19.15353346 -31.44377134]\n", + " [-14.7671053 -31.44567387]\n", + " [-10.38067715 -31.44757641]\n", + " [ -5.99424899 -31.44947894]\n", + " [ -1.60782083 -31.45138147]\n", + " [-32.2995002 -0.73306663]\n", + " [-27.91307204 -0.73496916]\n", + " [-23.52664389 -0.73687169]\n", + " [-19.14021573 -0.73877423]\n", + " [-14.75378757 -0.74067676]\n", + " [-10.36735941 -0.74257929]\n", + " [ -5.9DEBUG:root:fitpix2pix: ccdpx: shape: (96, 2)\n", + "8093125 -0.74448183]\n", + " [ -1.59450309 -0.74638436]\n", + " [ -1.60782083 -31.45138147]\n", + " [ -1.60591829 -27.06495331]\n", + " [ -1.60401576 -22.67852516]\n", + " [ -1.60211323 -18.292097 ]\n", + " [ -1.60021069 -13.90566884]\n", + " [ -1.59830816 -9.51924068]\n", + " [ -1.59640563 -5.13281252]\n", + " [ -1.59450309 -0.74638436]\n", + " [-32.29698843 -29.52557043]\n", + " [-32.29465669 -24.14957093]\n", + " [-32.29232495 -18.77357144]\n", + " [-32.2899932 -13.39757194]\n", + " [-32.28766146 -8.02157244]\n", + " [-32.28532972 -2.64557295]\n", + " [-30.40031161 -31.42389325]\n", + " [-25.02431212 -31.42622499]\n", + " [-19.64831262 -31.42855673]\n", + " [-14.27231313 -31.43088848]\n", + " [ -8.89631363 -31.43322022]\n", + " [ -3.52031414 -31.43555196]\n", + " [-30.38700689 -0.74889614]\n", + " [-25.01100739 -0.75122788]\n", + " [-19.6350079 -0.75355962]\n", + " [-14.25900841 -0.75589136]\n", + " [ -8.88300892 -0.7582231 ]\n", + " [ -3.50700942 -0.76055484]\n", + " [ -1.62199131 -29.53887515]\n", + " [ -1.61965957 -24.16287565]\n", + " [ -1.61732783 -18.78687616]\n", + " [ -1.61499609 -13.41087666]\n", + " [ -1.61266434 -8.03487716]\n", + " [ -1.6103326 -2.65887768]\n", + " [-32.29781143 -31.42307024]\n", + " [-32.29781143 -31.42307024]\n", + " [ -1.60950959 -0.76137785]\n", + " [ -1.60950959 -0.76137785]\n", + " [-30.3994886 -29.52639343]\n", + " [-25.02348911 -29.52872517]\n", + " [-19.64748962 -29.53105692]\n", + " [-14.27149012 -29.53338866]\n", + " [ -8.89549063 -29.5357204 ]\n", + " [ -3.51949113 -29.53805214]\n", + " [-30.39715686 -24.15039394]\n", + " [-25.02115737 -24.15272568]\n", + " [-19.64515788 -24.15505742]\n", + " [-14.26915838 -24.15738916]\n", + " [ -8.89315889 -24.1597209 ]\n", + " [ -3.51715939 -24.16205264]\n", + " [-30.39482512 -18.77439444]\n", + " [-25.01882563 -18.77672618]\n", + " [-19.64282613 -18.77905793]\n", + " [-14.26682664 -18.78138967]\n", + " [ -8.89082714 -18.78372141]\n", + " [ -3.51482765 -18.78605315]\n", + " [-30.39249338 -13.39839495]\n", + " [-25.01649389 -13.40072669]\n", + " [-19.64049439 -13.40305843]\n", + " [-14.2644949 -13.40539017]\n", + " [ -8.8884954 -13.40772191]\n", + " [ -3.51249591 -13.41005365]\n", + " [-30.39016163 -8.02239545]\n", + " [-25.01416214 -8.02472719]\n", + " [-19.63816265 -8.02705893]\n", + " [-14.26216315 -8.02939068]\n", + " [ -8.88616366 -8.03172242]\n", + " [ -3.51016417 -8.03405416]\n", + " [-30.3878299 -2.64639596]\n", + " [-25.01183041 -2.6487277 ]\n", + " [-19.63583091 -2.65105944]\n", + " [-14.25983141 -2.65339118]\n", + " [ -8.88383191 -2.65572292]\n", + " [ -3.50783243 -2.65805467]]\n", + "DEBUG:root:fitpix2pix: visCut: True\n", + "DEBUG:root:radec2pix: xyfp: [[32.23341696 31.55141621]\n", + " [32.23194958 27.16498788]\n", + " [32.2304822 22.77855956]\n", + " [32.22901483 18.39213124]\n", + " [32.22754745 14.00570291]\n", + " [32.22608007 9.61927458]\n", + " [32.22461269 5.23284626]\n", + " [32.2231453 0.84641793]\n", + " [32.23341696 31.55141621]\n", + " [27.84698864 31.5528836 ]\n", + " [23.46056031 31.55435097]\n", + " [19.07413198 31.55581835]\n", + " [14.68770366 31.55728573]\n", + " [10.30127533 31.55875311]\n", + " [ 5.91484701 31.56022049]\n", + " [ 1.52841868 31.56168787]\n", + " [32.2231453 0.84641793]\n", + " [27.83671698 0.84788531]\n", + " [23.45028865 0.84935269]\n", + " [19.06386033 0.85082007]\n", + " [14.677432 0.85228745]\n", + " [10.29100367 0.85375483]\n", + " [ 5.90457535 0.85522221]\n", + " [ 1.51814702 0.85668959]\n", + " [ 1.52841868 31.56168787]\n", + " [ 1.5269513 27.17525955]\n", + " [ 1.52548392 22.78883122]\n", + " [ 1.52401654 18.4024029 ]\n", + " [ 1.52254916 14.01597457]\n", + " [ 1.52108178 9.62954624]\n", + " [ 1.5196144 5.24311792]\n", + " [ 1.51814702 0.85668959]\n", + " [32.21777718 29.63892134]\n", + " [32.21597876 24.26292164]\n", + " [32.21418034 18.88692194]\n", + " [32.21238193 13.51092224]\n", + " [32.21058351 8.13492254]\n", + " [32.20878509 2.75892284]\n", + " [30.32091205 31.53705599]\n", + " [24.94491236 31.53885442]\n", + " [19.56891265 31.54065283]\n", + " [14.19291295 31.54245125]\n", + " [ 8.81691325 31.54424967]\n", + " [ 3.44091356 31.54604808]\n", + " [30.31065043 0.86205771]\n", + " [24.93465073 0.86385613]\n", + " [19.55865103 0.86565455]\n", + " [14.18265134 0.86745297]\n", + " [ 8.80665163 0.86925139]\n", + " [ 3.43065193 0.8710498 ]\n", + " [ 1.5427789 29.64918296]\n", + " [ 1.54098048 24.27318326]\n", + " [ 1.53918206 18.89718357]\n", + " [ 1.53738364 13.52118387]\n", + " [ 1.53558522 8.14518416]\n", + " [ 1.5337868 2.76918446]\n", + " [32.21841195 31.53642123]\n", + " [32.21841195 31.53642123]\n", + " [ 1.53315204 0.87168457]\n", + " [ 1.53315204 0.87168457]\n", + " [30.32027729 29.6395561 ]\n", + " [24.94427759 29.64135452]\n", + " [19.56827789 29.64315294]\n", + " [14.19227819 29.64495136]\n", + " [ 8.81627849 29.64674978]\n", + " [ 3.44027879 29.6485482 ]\n", + " [30.31847887 24.2635564 ]\n", + " [24.94247917 24.26535482]\n", + " [19.56647947 24.26715324]\n", + " [14.19047977 24.26895166]\n", + " [ 8.81448007 24.27075007]\n", + " [ 3.43848037 24.2725485 ]\n", + " [30.31668045 18.8875567 ]\n", + " [24.94068075 18.88935513]\n", + " [19.56468105 18.89115354]\n", + " [14.18868135 18.89295196]\n", + " [ 8.81268165 18.89475038]\n", + " [ 3.43668195 18.89654879]\n", + " [30.31488203 13.51155701]\n", + " [24.93888233 13.51335542]\n", + " [19.56288263 13.51515384]\n", + " [14.18688293 13.51695226]\n", + " [ 8.81088324 13.51875068]\n", + " [ 3.43488354 13.5205491 ]\n", + " [30.31308361 8.13555731]\n", + " [24.93708392 8.13735572]\n", + " [19.56108422 8.13915414]\n", + " [14.18508451 8.14095256]\n", + " [ 8.80908482 8.14275098]\n", + " [ 3.43308512 8.1445494 ]\n", + " [30.31128519 2.75955761]\n", + " [24.93528549 2.76135602]\n", + " [19.5592858 2.76315444]\n", + " [14.18328609 2.76495286]\n", + " [ 8.8072864 2.76675128]\n", + " [ 3.4312867 2.7685497 ]]\n", + "DEBUG:root:radec2pix: curVec: [[-0.41002379 -0.06474337 -0.90977403]\n", + " [-0.39404223 -0.04327191 -0.91807313]\n", + " [-0.3774245 -0.02134004 -0.92579444]\n", + " [-0.36021963 0.00096679 -0.93286702]\n", + " [-0.34248096 0.02356228 -0.93922927]\n", + " [-0.32426706 0.04635835 -0.94482897]\n", + " [-0.30564194 0.06926509 -0.94962379]\n", + " [-0.28667476 0.09219138 -0.95358184]\n", + " [-0.41002379 -0.06474337 -0.90977403]\n", + " [-0.43060889 -0.04607949 -0.90136156]\n", + " [-0.45071159 -0.02736102 -0.89225021]\n", + " [-0.47025688 -0.00865953 -0.8824871 ]\n", + " [-0.48917383 0.00995477 -0.8721295 ]\n", + " [-0.50739522 0.02841341 -0.86124489]\n", + " [-0.52485663 0.04664975 -0.84991136]\n", + " [-0.54149519 0.06459875 -0.83821832]\n", + " [-0.28667476 0.09219138 -0.95358184]\n", + " [-0.30804631 0.11137663 -0.94482946]\n", + " [-0.32907199 0.13040236 -0.93525764]\n", + " [-0.34967282 0.14919501 -0.92491609]\n", + " [-0.36977513 0.16768392 -0.91386457]\n", + " [-0.389311 0.18580184 -0.90217217]\n", + " [-0.40821808 0.20348485 -0.8899168 ]\n", + " [-0.42643869 0.22067164 -0.87718531]\n", + " [-0.54149519 0.06459875 -0.83821832]\n", + " [-0.52716275 0.08644145 -0.84535632]\n", + " [-0.51203579 0.10858489 -0.85207316]\n", + " [-0.49616809 0.13093865 -0.85829616]\n", + " [-0.47961484 0.15341324 -0.86396411]\n", + " [-0.46243388 0.17591951 -0.8690266 ]\n", + " [-0.44468666 0.19836847 -0.8734436 ]\n", + " [-0.42643869 0.22067164 -0.87718531]\n", + " [-0.4032084 -0.05537993 -0.91343092]\n", + " [-0.38318827 -0.02874346 -0.92322292]\n", + " [-0.36226075 -0.00150044 -0.93207558]\n", + " [-0.3405222 0.02619068 -0.93987163]\n", + " [-0.31808046 0.05416774 -0.94651502]\n", + " [-0.29505552 0.08226467 -0.95193212]\n", + " [-0.41900009 -0.0565444 -0.90622385]\n", + " [-0.44391529 -0.03362358 -0.8954377 ]\n", + " [-0.46803096 -0.01069216 -0.88364738]\n", + " [-0.49121485 0.01212002 -0.87095412]\n", + " [-0.51334311 0.0346869 -0.85748217]\n", + " [-0.53429784 0.0568865 -0.84337996]\n", + " [-0.29609545 0.1004927 -0.9498572 ]\n", + " [-0.32206588 0.12390837 -0.93857354]\n", + " [-0.34743763 0.1470112 -0.92610734]\n", + " [-0.37207287 0.16966989 -0.91256447]\n", + " [-0.39584652 0.19176059 -0.89807205]\n", + " [-0.41864581 0.21316679 -0.88277721]\n", + " [-0.53529143 0.07401868 -0.84141804]\n", + " [-0.51718329 0.10100312 -0.849894 ]\n", + " [-0.49793516 0.12834941 -0.85766369]\n", + " [-0.47764802 0.15589247 -0.86460968]\n", + " [-0.45642846 0.18346DEBUG:root:radec2pix: fitpx: [[4271.50000018 4155.50000017]\n", + " [4271.49999973 3863.07142834]\n", + " [4271.50000015 3570.64285725]\n", + " [4271.50000001 3278.21428572]\n", + " [4271.5000001 2985.78571433]\n", + " [4271.49999989 2693.35714282]\n", + " [4271.50000013 2400.92857145]\n", + " [4271.49999973 2108.49999999]\n", + " [4271.50000018 4155.50000017]\n", + " [3979.07142857 4155.5 ]\n", + " [3686.64285706 4155.49999989]\n", + " [3394.21428581 4155.50000016]\n", + " [3101.78571433 4155.50000009]\n", + " [2809.35714288 4155.50000006]\n", + " [2516.92857141 4155.49999991]\n", + " [2224.49999999 4155.49999972]\n", + " [4271.49999973 2108.49999999]\n", + " [3979.07142852 2108.5 ]\n", + " [3686.6428568 2108.49999999]\n", + " [3394.2142859 2108.50000001]\n", + " [3101.78571455 2108.50000001]\n", + " [2809.35714254 2108.49999998]\n", + " [2516.92857145 2108.5 ]\n", + " [2224.49999991 2108.49999996]\n", + " [2224.49999999 4155.49999972]\n", + " [2224.50000001 3863.07142866]\n", + " [2224.50000002 3570.64285748]\n", + " [2224.49999999 3278.21428555]\n", + " [2224.49999997 2985.78571404]\n", + " [2224.49999997 2693.35714267]\n", + " [2224.49999997 2400.92857132]\n", + " [2224.49999991 2108.49999996]\n", + " [4270.50000007 4028.00000007]\n", + " [4270.49999974 3669.5999998 ]\n", + " [4270.50000026 3311.20000015]\n", + " [4270.50000028 2952.80000012]\n", + " [4270.50000021 2594.40000005]\n", + " [4270.50000028 2236.00000002]\n", + " [4144.00000002 4154.50000002]\n", + " [3785.60000004 4154.50000005]\n", + " [3427.20000017 4154.50000027]\n", + " [3068.80000004 4154.50000009]\n", + " [2710.40000006 4154.50000023]\n", + " [2352. 4154.49999998]\n", + " [4144.00000024 2109.50000001]\n", + " [3785.60000024 2109.50000001]\n", + " [3427.20000038 2109.50000002]\n", + " [3068.80000022 2109.50000001]\n", + " [2710.3999999 2109.49999999]\n", + " [2352.00000033 2109.50000007]\n", + " [2225.50000001 4028.00000014]\n", + " [2225.5 3669.59999993]\n", + " [2225.49999997 3311.19999965]\n", + " [2225.50000003 2952.80000023]\n", + " [2225.50000001 2594.40000005]\n", + " [2225.50000007 2236.00000012]\n", + " [4270.50000014 4154.50000013]\n", + " [4270.50000014 4154.50000013]\n", + " [2225.5 2109.5 ]\n", + " [2225.5 2109.5 ]\n", + " [4143.99999977 4027.99999977]\n", + " [3785.60000006 4028.00000007]\n", + " [3427.19999985 4027.99999978]\n", + " [3068.80000002 4028.00000004]\n", + " [2710.40000003 4028.0000001 ]\n", + " [2351.99999998 4027.99999983]\n", + " [4143.99999989 3669.59999991]\n", + " [3785.59999992 3669.59999992]\n", + " [3427.20000008 3669.60000009]\n", + " [3068.80000009 3669.60000016]\n", + " [2710.40000007 3669.6000002 ]\n", + " [2352. 3669.60000003]\n", + " [4144.00000025 3311.20000016]\n", + " [3785.59999995 3311.19999996]\n", + " [3427.19999995 3311.19999995]\n", + " [3068.80000029 3311.20000039]\n", + " [2710.39999993 3311.19999986]\n", + " [2352.00000003 3311.20000016]\n", + " [4144.0000002 2952.80000009]\n", + " [3785.6000002 2952.80000011]\n", + " [3427.19999983 2952.79999988]\n", + " [3068.80000029 2952.80000027]\n", + " [2710.40000007 2952.8000001 ]\n", + " [2352.00000006 2952.80000022]\n", + " [4143.99999974 2594.39999993]\n", + " [3785.60000003 2594.40000001]\n", + " [3427.19999994 2594.39999997]\n", + " [3068.7999999 2594.39999994]\n", + " [2710.40000001 2594.40000001]\n", + " [2351.9999999 2594.39999976]\n", + " [4144.00000015 2236.00000001]\n", + " [3785.59999982 2235.99999998]\n", + " [3427.19999971 2235.99999996]\n", + " [3068.80000012 2236.00000002]\n", + " [2710.39999989 2235.99999997]\n", + " [2351.99999988 2235.99999991]]\n", + "DEBUG:root:optics_fp: cphi: [0.713738 0.76376784 0.81578691 0.86774466 0.91646952 0.95772545\n", + " 0.98678686 0.99960811 0.713738 0.66073156 0.59560321 0.51618565\n", + " 0.42082689 0.3091928 0.18318995 0.04750869 0.99960811 0.99947492\n", + " 0.99926025 0.99888104 0.99811368 0.99617106 0.98847974 0.85755676\n", + " 0.04750869 0.05514364 0.06569574 0.08122479 0.10631221 0.15355346\n", + " 0.27346048 0.85755676 0.73505851 0.79793137 0.86187328 0.92151896\n", + " 0.96912745 0.99620029 0.69214539 0.6193195 0.5260996 0.40919818\n", + " 0.26810473 0.10749625 0.99954227 0.99932373 0.99890128 0.99791251\n", + " 0.99460641 0.9658178 0.05106448 0.06231447 0.07990085 0.11122898\n", + " 0.18228563 0.4748373 0.71374111 0.71374111 0.85606035 0.85606035\n", + " 0.71415887 0.64283622 0.5497737 0.43061783 0.28389471 0.11427866\n", + " 0.7798406 0.71568995 0.62643496 0.50339666 0.33999355 0.13909785\n", + " 0.84790325 0.79611069 0.71806949 0.59894626 0.42100084 0.17746713\n", + " 0.9126717 0.87828385 0.82148283 0.72227275 0.54384668 0.24417059\n", + " 0.96534426 0.95000384 0.922DEBUG:root:fitpix2pix: ccdpx: shape: (96, 2)\n", + "DEBUG:root:optics_fp: xyfp shape: (96, 2)\n", + "DEBUG:root:fitpix2pix: visCut: True\n", + "28562 0.86574653 0.73169559 0.38493034\n", + " 0.9957126 0.99368273 0.9897899 0.98083551 0.95239474 0.77179741]\n", + "DEBUG:root:radec2pix: lng: [44.41301872 40.14838159 35.2726464 29.73151826 23.50476184 16.63082675\n", + " 9.22889701 1.50432057 44.41301872 48.59866885 53.40161123 58.88530587\n", + " 65.08233359 71.96812796 79.43489015 87.28054707 1.50432057 1.74246974\n", + " 2.06969874 2.54744544 3.31042966 4.7219858 8.21053157 29.59292215\n", + " 87.28054707 86.84336495 86.23844627 85.3466032 83.90123984 81.16110163\n", + " 74.05596575 29.59292215 42.63779834 37.00767795 30.40255608 22.76985585\n", + " 14.18292146 4.89797993 46.15318169 51.6896036 58.21907141 65.81559375\n", + " 74.43095985 83.82681521 1.62803312 1.98053876 2.52674891 3.48654093\n", + " 5.61341407 14.22621651 87.07688216 86.43225722 85.42259355 83.61713665\n", + " 79.48054112 61.32403216 44.41274552 44.41274552 29.77842334 29.77842334\n", + " 44.37598019 49.94895822 56.60624337 64.45998446 73.48745603 83.43540409\n", + " 38.69437311 44.24100899 51.15696074 59.72888922 70.09435151 81.99961851\n", + " 31.94440422 37.16546071 44.03052128 53.13850244 65.05527755 79.7674455\n", + " 24.03901245 28.4719233 34.66704703 43.65653948 56.97056188 75.84073328\n", + " 15.03271986 18.08395091 22.60822524 29.88026153 42.80777081 67.27233698\n", + " 5.20360826 6.3196744 8.04022063 11.03037054 17.44810995 39.01761856]\n", + "814 -0.87063914]\n", + " [-0.43439126 0.21091279 -0.87568261]\n", + " [-0.41004141 -0.06460718 -0.90977577]\n", + " [-0.41004141 -0.06460718 -0.90977577]\n", + " [-0.42644079 0.22053786 -0.87721793]\n", + " [-0.42644079 0.22053786 -0.87721793]\n", + " [-0.4122031 -0.04728704 -0.90986402]\n", + " [-0.4372269 -0.02429409 -0.89902305]\n", + " [-0.46146059 -0.00131047 -0.88715974]\n", + " [-0.48477197 0.0215335 -0.87437546]\n", + " [-0.50703785 0.04411148 -0.86079428]\n", + " [-0.52814153 0.06630147 -0.84656402]\n", + " [-0.39227396 -0.02057529 -0.91961829]\n", + " [-0.41757526 0.00259352 -0.90863864]\n", + " [-0.4421146 0.02569651 -0.89659041]\n", + " [-0.46575947 0.04860215 -0.88357566]\n", + " [-0.48838782 0.07118355 -0.86971848]\n", + " [-0.50988584 0.09331891 -0.85516549]\n", + " [-0.37142079 0.00672786 -0.92844027]\n", + " [-0.39695465 0.03002929 -0.91734685]\n", + " [-0.42175769 0.05320809 -0.90514604]\n", + " [-0.44569644 0.07613194 -0.89194092]\n", + " [-0.46864909 0.09867385 -0.8778562 ]\n", + " [-0.4905036 0.12071268 -0.86303804]\n", + " [-0.34973948 0.03446351 -0.93621288]\n", + " [-0.37545992 0.05785297 -0.92503129]\n", + " [-0.40048437 0.08106269 -0.91271086]\n", + " [-0.42467802 0.10396005 -0.89935582]\n", + " [-0.44791852 0.12641851 -0.88509172]\n", + " [-0.47009457 0.14831799 -0.87006486]\n", + " [-0.32733736 0.06246908 -0.94284032]\n", + " [-0.35319706 0.08590093 -0.93159695]\n", + " [-0.37839952 0.10909599 -0.91919088]\n", + " [-0.40280853 0.13192187 -0.90572728]\n", + " [-0.42630074 0.15425295 -0.89133254]\n", + " [-0.44876464 0.17597056 -0.87615333]\n", + " [-0.30433401 0.09057818 -0.94824913]\n", + " [-0.33028429 0.11400623 -0.93697111]\n", + " [-0.35561997 0.13714108 -0.92451434]\n", + " [-0.38020359 0.15985106 -0.91098456]\n", + " [-0.40391055 0.18201183 -0.89650877]\n", + " [-0.42662845 0.2035063 -0.88123399]]\n", + "DEBUG:root:radec2pix: xyfp Shape: (96, 2)\n", + "DEBUG:root:radec2pix: curVec Shape: (96, 3)\n", + "DEBUG:root:optics_fp: rtanth: [31.36436077 26.97807037 22.59183361 18.20568928 13.8197254 9.43419362\n", + " 5.05021974 0.69781153 31.36436077 31.70156673 32.63030877 34.10229142\n", + " 36.05103355 38.40402676 41.09188526 44.05335752 0.69781153 4.66402697\n", + " 9.02778296 13.40634529 17.78878395 22.17280059 26.55761376 30.94288484\n", + " 44.05335752 41.04621131 38.30621526 35.89459992 33.88155828 32.34160155\n", + " 31.34453543 30.94288484 29.45203736 24.07626653 18.70062748 13.32527965\n", + " 7.95081375 2.58274138 31.42169962 32.23771351 33.8971959 36.28460223\n", + " 39.26738572 42.72102005 2.2467047 7.54947995 12.91295338 18.28378612\n", + " 23.65696634 29.03119064 42.70202201 39.18809499 36.13521339 33.66902518\n", + " 31.92578297 31.02758019 31.34947523 31.34947523 30.92821126 30.92821126\n", + " 29.52890302 30.39577404 32.15047118 34.65840831 37.76983569 41.34874196\n", + " 24.17023416 25.22195839 27.31111317 30.22332497 33.74617895 37.70891894\n", + " 18.82145258 20.1542562 22.71439544 26.14376082 30.14716324 34.52548949\n", + " 13.49432055 15.2984853 18.54166578 22.61295734 27.14223759 31.93523187\n", + " 8.23098104 10.94056736 15.14746618 19.92481371 24.9470123 30.09171641\n", + " 3.34726194 7.94676841 13.14917661 18.45137705 23.78673027 29.13702987]\n", + "DEBUG:root:optics_fp: sphi: [0.70041278 0.64549104 0.5783526 0.49701026 0.40010451 0.28768378\n", + " 0.16202376 0.02799345 0.70041278 0.75062228 0.80327879 0.85647672\n", + " 0.90714096 0.95099938 0.98307754 0.99887082 0.02799345 0.03240177\n", + " 0.03845716 0.04729349 0.06139281 0.08742554 0.15135324 0.51438935\n", + " 0.99887082 0.99847843 0.9978397 0.99669581 0.9943328 0.98814034\n", + " 0.96188324 0.51438935 0.67800368 0.60274831 0.5071237 0.38833338\n", + " 0.24656029 0.0870918 0.7217581 0.78513907 0.85042296 0.91244553\n", + " 0.96338977 0.99420549 0.03025321 0.03677059 0.04686391 0.06458036\n", + " 0.10372123 0.25922188 0.99869536 0.99805657 0.99680282 0.9937948\n", + " 0.98324562 0.8800736 0.70040962 0.70040962 0.51687588 0.51687588\n", + " 0.69998365 0.76600365 0.83531364 0.90253437 0.95885546 0.99344873\n", + " 0.62597814 0.69841814 0.77947369 0.86405544 0.94042777 0.99027864\n", + " 0.530151 0.60515103 0.69597142 0.80078922 0.90706025 0.98412673\n", + " 0.40869348 0.47813961 0.57023325 0.69160833 0.8391846 0.9697323\n", + " 0.2609798 0.31223822 0.38650903 0.50048271 0.68163155 0.92294563\n", + " 0.09250092 0.11222584 0.14253407 0.19483765 0.3048676 0.63586851]\n", + "DEBUG:root:radec2pix: lat: [73.25344023 74.2369792 75.15226824 75.97162966 76.66508667 77.2021609\n", + " 77.55512574 77.70337791 73.25344023 74.25967575 75.20183236 76.05214643\n", + " 76.78010612 77.3540472 77.74432055 77.92785326 77.70337791 79.30226543\n", + " 80.93361724 82.59207196 84.27220803 85.96793867 87.66996871 89.32519361\n", + " 77.92785326 79.53024676 81.16372478 82.82252521 84.50025464 86.18804733\n", + " 87.86471391 89.32519361 73.6926739 74.85593178 75.88945702 76.73895525\n", + " 77.34864846 77.67018969 73.7019933 74.89586821 75.96623187 76.85800237\n", + " 77.51320661 77.87970489 78.39600189 80.37807975 82.40356131 84.46248138\n", + " 86.54333738 88.62073148 78.62203863 80.60748554 82.6338837 84.6897052\n", + " 86.75764582 88.76495286 73.26041353 73.26041353 89.31716551 89.31716551\n", + " 74.15313309 75.40228414 76.52877477 77.47347648 78.17205407 78.56478282\n", + " 75.37129959 76.78525096 78.08623827 79.20344298 80.05020166 80.53598707\n", + " 76.45984424 78.04591405 79.54291278 80.87169379 81.91843153 82.54064538\n", + " 77.36022478 79.11290918 80.81670049 82.39645142 83.71831262 84.55871556\n", + " 78.01034 79.90138935 81.79317677 83.63609258 85.31869407 86.54472849\n", + " 78.35474014 80.32671962 82.33692434 84.36964547 86.39457329 88.27941972]\n", + "DEBUG:root:optics_fp: rtanth: [45.10526614 42.15252235 39.46728719 37.10767964 35.13935868 33.63109692\n", + " 32.64672024 32.23425998 45.10526614 42.08371704 39.32015966 36.87264817\n", + " 34.80791464 33.1974573 32.10970154 31.5986741 32.23425998 27.84962696\n", + " 23.46566508 19.08283694 14.70215645 10.32635724 5.96618932 1.74318313\n", + " 31.5986741 27.21812469 22.83983208 18.46540167 14.09842896 9.748941\n", + " 5.45889306 1.74318313 43.77728663 40.33061683 37.34259278 34.93111177\n", + " 33.22196043 32.3267303 43.74864122 40.21129183 37.11812392 34.58850978\n", + " 32.75328451 31.73315358 30.32290674 24.94961031 19.57779834 14.20915457\n", + " 8.84944693 3.53950567 29.68929466 24.32204857 18.9597634 13.60830488\n", + " 8.2886698 3.16557807 45.08405409 45.08405409 1.76362955 1.76362955\n", + " 42.40073703 38.740507 35.51948783 32.86706408 30.92986484 29.84747775\n", + " 38.83207862 34.7984872 31.1727741 28.11319496 25.82178089 24.5148885\n", + " 35.71891532 31.28650338 27.19655174 23.62757526 20.84885967 19.20651814\n", + " 33.18967076 28.36474267 23.77742123 19.59529652 16.13655116 13.95004204\n", + " 31.3858301 26.23117825 21.1868319 16.35517444 11.99601471 8.83853824\n", + " 30.43664187 25.08771711 19.753498 14.45027919 9.23164159 4.4089223 ]\n", + "DEBUG:root:optics_fp: cphi: [0.00736113 0.00855795 0.01021949 0.01268159 0.01670634 0.02447236\n", + " 0.04571623 0.33085868 0.00736113 0.14564913 0.27593163 0.39264701\n", + " 0.49309519 0.57710146 0.64609955 0.70223653 0.33085868 0.98998261\n", + " 0.99733613 0.99879292 0.99931459 0.99955889 0.99969254 0.99977352\n", + " 0.70223653 0.7536841 0.80759419 0.86185323 0.91305945 0.9565351\n", + " 0.98696237 0.99977352 0.00834839 0.01021242 0.01314806 0.01845192\n", + " 0.03092476 0.09520001 0.06821327 0.23324784 0.38042607 0.50355732\n", + " 0.60221419 0.67936994 0.95400922 0.99601258 0.99863886 0.99932131\n", + " 0.99959465 0.99973085 0.72410803 0.78903751 0.85569931 0.91837755\n", + " 0.96852369 0.99656102 0.0078431 0.0078431 0.99976286 0.99976286\n", + " 0.07258573 0.24738232 0.40109449 0.52718454 0.6260916 0.70191681\n", + " 0.08867837 0.2981282 0.47216592 0.60454556 0.70074236 0.76966876\n", + " 0.11387947 0.37309127 0.56771826 0.69888097 0.78439808 0.84063622\n", + " 0.15883549 0.49151121 0.69548104 0.80800475 0.87123904 0.90881999\n", + " 0.26040359 0.68729315 0.85132238 0.9170162 0.94790417 0.96449723\n", + " 0.6403374 0.94621821 0.98069844 0.99024463 0.99414155 0.99609937]\n", + "DEBUG:root:make_az_asym: xyp: [[-32.31281793 -31.43806373]\n", + " [-32.31091541 -27.05163558]\n", + " [-32.30901287 -22.66520742]\n", + " [-32.30711034 -18.27877926]\n", + " [-32.3052078 -13.8923511 ]\n", + " [-32.30330527 -9.50592294]\n", + " [-32.30140274 -5.11949478]\n", + " [-32.2995002 -0.73306663]\n", + " [-32.31281793 -31.43806373]\n", + " [-27.92638978 -31.43996627]\n", + " [-23.53996162 -31.4418688 ]\n", + " [-19.15353346 -31.44377134]\n", + " [-14.7671053 -31.44567387]\n", + " [-10.38067715 -31.44757641]\n", + " [ -5.99424899 -31.44947894]\n", + " [ -1.60782083 -31.45138147]\n", + " [-32.2995002 -0.73306663]\n", + " [-27.91307204 -0.73496916]\n", + " [-23.52664389 -0.73687169]\n", + " [-19.14021573 -0.73877423]\n", + " [-14.75378757 -0.74067676]\n", + " [-10.36735941 -0.74257929]\n", + " [ -5.98093125 -0.74448183]\n", + " [ -1.59450309 -0.74638436]\n", + " [ -1.60782083 -31.45138147]\n", + " [ -1.60591829 -27.06495331]\n", + " [ -1.60401576 -22.67852516]\n", + " [ -1.60211323 -18.292097 ]\n", + " [ -1.60021069 -13.90566884]\n", + " [ -1.59830816 -9.51924068]\n", + " [ -1.59640563 -5.13281252]\n", + " [ -1.59450309 -0.74638436]\n", + " [-32.29698843 -29.52557043]\n", + " [-32.29465669 -24.14957093]\n", + " [-32.29232495 -18.77357144]\n", + " [-32.2899932 -13.39757194]\n", + " [-32.28766146 -8.02157244]\n", + " [-32.28532972 -2.64557295]\n", + " [-30.40031161 -31.42389325]\n", + " [-25.02431212 -31.42622499]\n", + " [-19.64831262 -31.42855673]\n", + " [-14.27231313 -31.43088848]\n", + " [ -8.89631363 -31.43322022]\n", + " [ -3.52031414 -31.43555196]\n", + " [-30.38700689 -0.74889614]\n", + " [-25.01100739 -0.75122788]\n", + " [-19.6350079 -0.75355962]\n", + " [-14.25900841 -0.75589136]\n", + " [ -8.88300892 -0.7582231 ]\n", + " [ -3.50700942 -0.76055484]\n", + " [ -1.62199131 -29.53887515]\n", + " [ -1.61965957 -24.16287565]\n", + " [ -1.61732783 -18.78687616]\n", + " [ -1.61499609 -13.41087666]\n", + " [ -1.61266434 -8.03487716]\n", + " [ -1.6103326 -2.65887768]\n", + " [-32.29781143 -31.42307024]\n", + " [-32.29781143 -31.42307024]\n", + " [ -1.60950959 -0.76137785]\n", + " [ -1.60950959 -0.76137785]\n", + " [-30.3994886 -29.52639343]\n", + " [-25.02348911 -29.52872517]\n", + " [-19.64748962 -29.53105692]\n", + " [-14.27149012 -29.53338866]\n", + " [ -8.89549063 -29.5357204 ]\n", + " [ -3.51949113 -29.53805214]\n", + " [-30.39715686 -24.15039394]\n", + " [-25.02115737 -24.15272568]\n", + " [-19.64515788 -24.15505742]\n", + " [-14.26915838 -24.15738916]\n", + " [ -8.89315889 -24.1597209 ]\n", + " [ -3.51715939 -24.16205264]\n", + " [-30.39482512 -18.77439444]\n", + " [-25.01882563 -18.77672618]\n", + " [-19.64282613 -18.77905793]\n", + " [-14.26682664 -18.78138967]\n", + " [ -8.89082714 -18.78372141]\n", + " [ -3.51482765 -18.78605315]\n", + " [-30.39249338 -13.39839495]\n", + " [-25.01649389 -13.40072669]\n", + " [-19.64049439 -13.40305843]\n", + " [-14.2644949 -13.40539017]\n", + " [ -8.8884954 -13.40772191]\n", + " [ -3.51249591 -13.41005365]\n", + " [-30.39016163 -8.02239545]\n", + " [-25.01416214 -8.02472719]\n", + " [-19.63816265 -8.02705893]\n", + " [-14.26216315 -8.02939068]\n", + " [ -8.88616366 -8.03172242]\n", + " [ -3.51016417 -8.03405416]\n", + " [-30.3878299 -2.64639596]\n", + " [-25.01183041 -2.6487277 ]\n", + " [-19.63583091 -2.65105944]\n", + " [-14.25983141 -2.65339118]\n", + " [ -8.88383191 -2.65572292]\n", + " [ -3.50783243 -2.65805467]]\n", + "DEBUG:root:mm_to_pix: fitpx: [[0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]]\n", + "DEBUG:root:radec2pix: camVec: [[ 0.00114566 0.00115565 0.00116422 0.00117136 0.00117701 0.00118116\n", + " 0.00118376 0.00118481 0.00114566 0.03017404 0.05908469 0.08776498\n", + " 0.11610332 0.14398904 0.17131174 0.19796003 0.00118481 0.03120455\n", + " 0.06110052 0.09075528 0.1200543 0.14888674 0.17714546 0.20472589\n", + " 0.19796003 0.19971011 0.20119978 0.20242973 0.20339908 0.20410611\n", + " 0.20454887 0.20472589 0.00124992 0.00126219 0.00127213 0.00127966\n", + " 0.00128472 0.00128725 0.01380981 0.04932315 0.08454761 0.11927732\n", + " 0.15330846 0.18643745 0.01428113 0.05100494 0.08742589 0.12333185\n", + " 0.15851879 0.19279062 0.19866498 0.20063357 0.20221208 0.20339952\n", + " 0.20419277 0.20458843 0.00124504 0.00124504 0.2046327 0.2046327\n", + " 0.01386393 0.04951642 0.08487904 0.1197456 0.15391263 0.18717755\n", + " 0.01400003 0.0500023 0.08571147 0.12092013 0.15542529 0.1890269\n", + " 0.01411023 0.05039551 0.08638432 0.12186779 0.15664287 0.19051132\n", + " 0.01419378 0.0506935 0.08689379 0.12258434 0.15756175 0.19162897\n", + " 0.0142499 0.05089361 0.08723571 0.12306478 0.15817704 0.19237609\n", + " 0.01427798 0.05099373 0.08740674 0.12330495 0.15848438 0.1927489 ]\n", + " [-0.20812604 -0.1806373 -0.15245726 -0.12369032 -0.09444319 -0.06482624\n", + " -0.03495355 -0.00494229 -0.20812604 -0.20797994 -0.20756351 -0.20687811\n", + " -0.20592557 DEBUG:root:mm_to_pix: fitpx.shape: (96, 2)\n", + "-0.20470759 -0.20322504 -0.20147731 -0.00494229 -0.00493875\n", + " -0.0049287 -0.00491221 -0.00488939 -0.0048604 -0.00482538 -0.00478446\n", + " -0.20147731 -0.17488831 -0.14761103 -0.11975687 -0.09143612 -0.06275929\n", + " -0.03383788 -0.00478446 -0.19623245 -0.16206424 -0.12696122 -0.09111882\n", + " -0.05474021 -0.01803675 -0.20800294 -0.20764209 -0.20687664 -0.20570979\n", + " -0.20414458 -0.20218204 -0.00504426 -0.00503536 -0.00501654 -0.004988\n", + " -0.00495001 -0.00490286 -0.1899823 -0.15691665 -0.12292805 -0.08821992\n", + " -0.05299579 -0.01746139 -0.2080333 -0.2080333 -0.00488406 -0.00488406\n", + " -0.19620382 -0.19586344 -0.1951417 -0.19404219 -0.19256861 -0.19072284\n", + " -0.16204052 -0.16175873 -0.16116182 -0.16025398 -0.15904007 -0.15752379\n", + " -0.12694255 -0.12672084 -0.12625153 -0.1255387 -0.12458735 -0.12340188\n", + " -0.09110536 -0.09094551 -0.09060732 -0.09009413 -0.08941017 -0.08855947\n", + " -0.05473209 -0.05463571 -0.05443186 -0.05412272 -0.05371108 -0.05319971\n", + " -0.01803407 -0.01800225 -0.01793496 -0.01783294 -0.01769716 -0.01752858]\n", + " [ 0.97810134 0.9835491 0.98830938 0.99232018 0.99552956 0.99789587\n", + " 0.99938824 0.99998708 0.97810134 0.97766757 0.97643555 0.97442227\n", + " 0.97165564 0.96817455 0.96402898 0.95928031 0.99998708 0.99950082\n", + " 0.99811945 0.99586111 0.99275529 0.98884231 0.98417285 0.97880765\n", + " 0.95928031 0.96412134 0.96836441 0.97194676 0.97481703 0.97693499\n", + " 0.97827131 0.97880765 0.98055661 0.9867794 0.99190687 0.99583921\n", + " 0.9984998 0.9998365 0.97803071 0.97696059 0.97470701 0.97131684\n", + " 0.96686168 0.96143824 0.9998853 0.99868571 0.9961584 0.99235295\n", + " 0.98734355 0.98122767 0.96147748 0.96701775 0.97159609 0.97511327\n", + " 0.97749515 0.97869233 0.97812095 0.97812095 0.97882665 0.97882665\n", + " 0.98046512 0.97938023 0.97709532 0.97365734 0.96913788 0.96363342\n", + " 0.98668479 0.98556272 0.98319907 0.97964125 0.97496115 0.96925491\n", + " 0.9918097 0.99065742 0.98822988 0.9845751DEBUG:root:optics_fp: sphi: [-0.99997291 -0.99996338 -0.99994778 -0.99991959 -0.99986044 -0.99970051\n", + " -0.99895447 -0.94368031 -0.99997291 -0.98933631 -0.96117727 -0.91968926\n", + " -0.86997536 -0.81667246 -0.76325315 -0.71194371 -0.94368031 -0.14118936\n", + " -0.07294272 -0.04911935 -0.03701833 -0.02969904 -0.02479556 -0.0212815\n", + " -0.71194371 -0.65723685 -0.5897386 -0.50715777 -0.40782648 -0.29161723\n", + " -0.16095117 -0.0212815 -0.99996515 -0.99994785 -0.99991356 -0.99982975\n", + " -0.99952172 -0.99545817 -0.99767076 -0.97241732 -0.92481134 -0.86396182\n", + " -0.79833456 -0.73379594 -0.29977727 -0.0892129 -0.05215778 -0.03683652\n", + " -0.02846988 -0.02319957 -0.68968657 -0.61434502 -0.51747338 -0.39570528\n", + " -0.24892141 -0.08286212 -0.99996924 -0.99996924 -0.02177659 -0.02177659\n", + " -0.99736218 -0.96891795 -0.91603668 -0.84975082 -0.77974951 -0.71225894\n", + " -0.99606031 -0.95452584 -0.88150969 -0.79657056 -0.71341443 -0.63844342\n", + " -0.99349457 -0.92779465 -0.82322292 -0.71523799 -0.62025773 -0.54160017\n", + " -0.98730506 -0.87087125DEBUG:root:optics_fp: xyfp: [[-32.208296 -31.60697943]\n", + " [-32.20831882 -27.22055086]\n", + " [-32.20834163 -22.83412229]\n", + " [-32.20836444 -18.44769372]\n", + " [-32.20838725 -14.06126515]\n", + " [-32.20841007 -9.67483658]\n", + " [-32.20843288 -5.288408 ]\n", + " [-32.2084557 -0.90197943]\n", + " [-32.208296 -31.60697943]\n", + " [-27.82186743 -31.60695662]\n", + " [-23.43543886 -31.60693381]\n", + " [-19.04901029 -31.60691099]\n", + " [-14.66258171 -31.60688818]\n", + " [-10.27615314 -31.60686536]\n", + " [ -5.88972457 -31.60684255]\n", + " [ -1.503296 -31.60681974]\n", + " [-32.2084557 -0.90197943]\n", + " [-27.82202712 -0.90195662]\n", + " [-23.43559855 -0.9019338 ]\n", + " [-19.04916999 -0.90191099]\n", + " [-14.66274141 -0.90188818]\n", + " [-10.27631284 -0.90186536]\n", + " [ -5.88988428 -0.90184255]\n", + " [ -1.5034557 -0.90181973]\n", + " [ -1.503296 -31.60681974]\n", + " [ -1.50331881 -27.22039116]\n", + " [ -1.50334163 -22.83396259]\n", + " [ -1.50336444 -18.44753402]\n", + " [ -1.50338726 -14.06110544]\n", + " [ -1.50341007 -9.67467688]\n", + " [ -1.50343288 -5.2882483 ]\n", + " [ -1.5034557 -0.90181973]\n", + " [-32.19330594 -29.69447935]\n", + " [-32.19333391 8 0.97976579 0.97389805\n", + " 0.9957401 0.99456477 0.9920886 0.98836032 0.98345316 0.97746384\n", + " 0.99839939 0.99720849 0.9946995 0.99092169 0.98594885 0.97987817\n", + " 0.99973542 0.99853671 0.99601124 0.99220858 0.98720287 0.98109154]]\n", + "-24.31847935]\n", + " [-32.19336187 -18.94247936]\n", + " [-32.19338983 -13.56647936]\n", + " [-32.19341779 -8.19047935]\n", + " [-32.19344575 -2.81447935]\n", + " [-30.29579608 -31.59196949]\n", + " [-24.91979608 -31.59194152]\n", + " [-19.54379608 -31.59191356]\n", + " [-14.16779608 -31.5918856 ]\n", + " [ -8.79179608 -31.59185764]\n", + " [ -3.41579608 -31.59182968]\n", + " [-30.29595562 -0.91696949]\n", + " [-24.91995562 -0.91694153]\n", + " [-19.54395562 -0.91691356]\n", + " [-14.16795562 -0.9168856 ]\n", + " [ -8.79195562 -0.91685764]\n", + " [ -3.41595563 -0.91682968]\n", + " [ -1.51830595 -29.69431981]\n", + " [ -1.51833391 -24.31831981]\n", + " [ -1.51836187 -18.94231981]\n", + " [ -1.51838983 -13.56631981]\n", + " [ -1.51841779 -8.19031981]\n", + " [ -1.51844575 -2.81431982]\n", + " [-32.19329608 -31.59197936]\n", + " [-32.19329608 -31.59197936]\n", + " [ -1.51845562 -0.91681981]\n", + " [ -1.51845562 -0.91681981]\n", + " [-30.29580595 -29.69446949]\n", + " [-24.91980594 -29.69444152]\n", + " [-19.54380595 -29.69441356]\n", + " [-14.16780595 -29.69438561]\n", + " [ -8.79180595 -29.69435764]\n", + " [ -3.41580595 -29.69432968]\n", + " [-30.29583391 -24.31846949]\n", + " [-24.91983391 -24.31844152]\n", + " [-19.54383391 -24.31841356]\n", + " [-14.16783391 -24.31838561]\n", + " [ -8.79183391 -24.31835764]\n", + " [ -3.41583391 -24.31832968]\n", + " [-30.29586187 -18.94246949]\n", + " [-24.91986187 -18.94244153]\n", + " [-19.54386187 -18.94241356]\n", + " [-14.16786187 -18.94238561]\n", + " [ -8.79186187 -18.94235764]\n", + " [ -3.41586187 -18.94232969]\n", + " [-30.29588983 -13.56646949]\n", + " [-24.91988983 -13.56644152]\n", + " [-19.54388984 -13.56641357]\n", + " [-14.16788983 -13.5663856 ]\n", + " [ -8.79188983 -13.56635764]\n", + " [ -3.41588983 -13.56632968]\n", + " [-30.29591779 -8.19046949]\n", + " [-24.91991779 -8.19044152]\n", + " [-19.54391779 -8.19041356]\n", + " [-14.16791779 -8.1903856 ]\n", + " [ -8.79191779 -8.19035764]\n", + " [ -3.41591779 -8.19032968]\n", + " [-30.29594575 -2.81446949]\n", + " [-24.91994576 -2.81444153]\n", + " [-19.54394575 -2.81441356]\n", + " [-14.16794576 -2.814385DEBUG:root:radec2pix: camVec Shape: (3, 96)\n", + "6 ]\n", + " [ -8.79194575 -2.81435764]\n", + " [ -3.41594575 -2.81432968]]\n", + " -0.71854445 -0.58917597 -0.49085898 -0.41718848\n", + " -0.96549986 -0.72638015 -0.52464293 -0.39884995 -0.31855562 -0.26409298\n", + " -0.76809376 -0.32352912 -0.19552639 -0.13933979 -0.10808594 -0.08823861]\n", + "DEBUG:root:make_az_asym: xyp: shape: (96, 2)\n", + "DEBUG:root:optics_fp: xyfp shape: (96, 2)\n", + "DEBUG:root:optics_fp: cphi: [-0.71462647 -0.76465055 -0.81663789 -0.86852682 -0.91713533 -0.95822269\n", + " -0.98707045 -0.99965519 -0.71462647 -0.66170459 -0.59665476 -0.51729759\n", + " -0.42196448 -0.31030314 -0.18420747 -0.04836971 -0.99965519 -0.99953644\n", + " -0.99934473 -0.99900557 -0.99831831 -0.99657638 -0.98967281 -0.87090507\n", + " -0.04836971 -0.05610053 -0.06679051 -0.08253363 -0.10799424 -0.15602533\n", + " -0.27837409 -0.87090507 -0.73594733 -0.79879708 -0.86266587 -0.92216881\n", + " -0.96955698 -0.99635146 -0.69307094 -0.62034596 -0.5272064 -0.41033606\n", + " -0.26919173 -0.10843276 -0.99959581 -0.99940041 -0.99902199 -0.99813478\n", + " -0.99516407 -0.96924606 -0.05196415 -0.06335735 -0.0811815 -0.11297393\n", + " -0.18526317 -0.48452029 -0.71462988 -0.71462988 -0.86931637 -0.86931637\n", + " -0.71508845 -0.64388103 -0.55091667 -0.43180852 -0.28504096 -0.11526196\n", + " -0.78075859 -0.71676907 -0.62767848 -0.50476226 -0.34135833 -0.1402609\n", + " -0.84875703 -0.7971706 -0.71938094 -0.60051365 -0.4226937 -0.17893311\n", + " -0.91338303 -0.87922117 -0.82275039 -0.7239943 -0.54602022 -0.24622747\n", + " -0.96582068 -0.95066579 -0.92326613 -0.86731478 -0.73433428 -0.38842227\n", + " -0.99588139 -0.99392405 -0.99016821 -0.98152333 -0.95403253 -0.77825973]\n", + "DEBUG:root:radec2pix: xyfp: [[32.23341696 31.55141621]\n", + " [32.23194958 27.16498788]\n", + " [32.2304822 22.77855956]\n", + " [32.22901483 18.39213124]\n", + " [32.22754745 14.00570291]\n", + " [32.22608007 9.61927458]\n", + " [32.22461269 5.23284626]\n", + " [32.2231453 0.84641793]\n", + " [32.23341696 31.55141621]\n", + " [27.84698864 31.5528836 ]\n", + " [23.46056031 31.55435097]\n", + " [19.07413198 31.55581835]\n", + " [14.68770366 31.55728573]\n", + " [10.30127533 31.55875311]\n", + " [ 5.91484701 31.56022049]\n", + " [ 1.52841868 31.56168787]\n", + " [32.2231453 0.84641793]\n", + " [27.83671698 0.84788531]\n", + " [23.45028865 0.84935269]\n", + " [19.06386033 0.85082007]\n", + " [14.677432 0.85228745]\n", + " [10.29100367 0.85375483]\n", + " [ 5.90457535 0.85522221]\n", + " [ 1.51814702 0.85668959]\n", + " [ 1.52841868 31.56168787]\n", + " [ 1.5269513 27.17525955]\n", + " [ 1.52548392 22.78883122]\n", + " [ 1.52401654 18.4024029 ]\n", + " [ 1.52254916 14.01597457]\n", + " [ 1.52108178 9.62954624]\n", + " [ 1.5196144 5.24311792]\n", + " [ 1.51814702 0.85668959]\n", + " [32.21777718 29.63892134]\n", + " [32.21597876 24.26292164]\n", + " [32.21418034 18.88692194]\n", + " [32.21238193 13.51092224]\n", + " [32.21058351 8.13492254]\n", + " [32.20878509 2.75892284]\n", + " [30.32091205 31.53705599]\n", + " [24.94491236 31.53885442]\n", + " [19.56891265 31.54065283]\n", + " [14.19291295 31.54245125]\n", + " [ 8.81691325 31.54424967]\n", + " [ 3.44091356 31.54604808]\n", + " [30.31065043 0.86205771]\n", + " [24.93465073 0.86385613]\n", + " [19.55865103 0.86565455]\n", + " [14.18265134 0.86745297]\n", + " [ 8.80665163 0.86925139]\n", + " [ 3.43065193 0.8710498 ]\n", + " [ 1.5427789 29.64918296]\n", + " [ 1.54098048 24.27318326]\n", + " [ 1.53918206 18.89718357]\n", + " [ 1.53738364 13.52118387]\n", + " [ 1.53558522 8.14518416]\n", + " [ 1.5337868 2.76918446]\n", + " [32.21841195 31.53642123]\n", + " [32.21841195 31.53642123]\n", + " [ 1.53315204 0.87168457]\n", + " [ 1.53315204 0.87168457]\n", + " [30.32027729 29.6395561 ]\n", + " [24.94427759 29.64135452]\n", + " [19.56827789 29.64315294]\n", + " [14.19227819 29.64495136]\n", + " [ 8.81627849 29.64674978]\n", + " [ 3.44027879 29.6485482 ]\n", + " [30.31847887 24.2635564 ]\n", + " [24.94247917 24.26535482]\n", + " [19.56647947 24.26715324]\n", + " [14.19047977 24.26895166]\n", + " [ 8.81448007 24.27075007]\n", + " [ 3.43848037 24.2725485 ]\n", + " [30.31668045 18.8875567 ]\n", + " [24.94068075 18.88935513]\n", + " [19.56468105 18.89115354]\n", + " [14.18868135 18.89295196]\n", + " [ 8.81268165 18.89475038]\n", + " [ 3.43668195 18.89654879]\n", + " [30.31488203 13.51155701]\n", + " [24.93888233 13.51335542]\n", + " [19.56288263 13.51515384]\n", + " [14.18688293 13.51695226]\n", + " [ 8.81088324 13.51875068]\n", + " [ 3.43488354 13.5205491 ]\n", + " [30.31308361 8.13555731]\n", + " [24.93708392 8.13735572]\n", + " [19.56108422 8.13915414]\n", + " [14.18508451 8.14095256]\n", + " [ 8.80908482 8.14275098]\n", + " [ 3.43308512 8.1445494 ]\n", + " [30.31128519 2.75955761]\n", + " [24.93528549 2.76135602]\n", + " [19.5592858 2.76315444]\n", + " [14.18328609 2.76495286]\n", + " [ 8.8072864 2.76675128]\n", + " [ 3.4312867 2.7685497 ]]\n", + "DEBUG:root:optics_fp: rtanth: [45.08354623 42.13009767 39.44420909 37.08406184 35.11539785 33.60708557\n", + " 32.6230401 32.21134587 45.08354623 42.06280558 39.30031295 36.85418691\n", + " 34.79122159 33.18295674 32.09781375 31.58974814 32.21134587 27.8266828\n", + " 23.4426803 19.05979422 14.67902457 10.30307141 5.94258442 1.71954938\n", + " 31.58974814 27.2090275 22.83049885 18.45572241 14.0881941 9.73767156\n", + " 5.44507054 1.71954938 43.75525849 40.30775232 37.31902868 34.90712904\n", + " 33.19801449 32.30342747 43.72724359 40.19104921 37.09948507 34.57203928\n", + " 32.73962065 31.72289982 30.29997699 24.92663654 19.55475813 14.18600274\n", + " 8.82607125 3.51555769 29.68028893 24.31279095 18.95011366 13.59796176\n", + " 8.27677911 3.14775039 45.06233412 45.06233412 1.74001001 1.74001001\n", + " 42.37901039 38.71988024 35.50042932 32.85018402 30.91587699 29.8370753\n", + " 38.80944181 34.77673616 31.15241137 28.09496116 25.80666004 24.50394488\n", + " 35.69548681 31.26365913 27.1747629 23.607665 20.83215559 19.19474717\n", + " 33.16572831 28.34103278 23.75427319 19.57344126 16.11758242 13.93686031\n", + " 31.36185649 26.20714877 21.16284486 16.33156793 11.97401233 8.82250437\n", + " 30.41330799 25.06427551 19.72990783 14.4264816 9.20761812 4.38632462]\n", + "DEBUG:root:optics_fp: xyfp: [[ -0.230877 31.363511 ]\n", + " [ -0.230877 26.97708243]\n", + " [ -0.230877 22.59065386]\n", + " [ -0.230877 18.20422528]\n", + " [ -0.230877 13.81779671]\n", + " [ -0.230877 9.43136815]\n", + " [ -0.230877 5.04493957]\n", + " [ -0.230877 0.658511 ]\n", + " [ -0.230877 31.363511 ]\n", + " [ -4.61730557 31.363511 ]\n", + " [ -9.00373414 31.363511 ]\n", + " [-13.39016272 31.363511 ]\n", + " [-17.77659129 31.363511 ]\n", + " [-22.16301986 31.363511 ]\n", + " [-26.54944843 31.363511 ]\n", + " [-30.935877 31.363511 ]\n", + " [ -0.230877 0.658511 ]\n", + " [ -4.61730558 0.658511 ]\n", + " [ -9.00373414 0.658511 ]\n", + " [-13.39016271 0.658511 ]\n", + " [-17.77659128 0.658511 ]\n", + " [-22.16301986 0.658511 ]\n", + " [-26.54944843 0.658511 ]\n", + " [-30.935877 0.658511 ]\n", + " [-30.935877 31.363511 ]\n", + " [-30.935877 26.97708243]\n", + " [-30.935877 22.59065386]\n", + " [-30.935877 18.20422528]\n", + " [-30.935877 13.81779671]\n", + " [-30.935877 9.43136814]\n", + " [-30.935877 5.04493957]\n", + " [-30.935877 0.658511 ]\n", + " [ -0.245877 29.451011 ]\n", + " [ -0.245877 24.075011 ]\n", + " [ -0.245877 18.699011 ]\n", + " [ -0.245877 13.323011 ]\n", + " [ -0.245877 7.947011 ]\n", + " [ -0.245877 2.571011 ]\n", + " [ -2.143377 31.348511 ]\n", + " [ -7.519377 31.348511 ]\n", + " [-12.895377 31.348511 ]\n", + " [-18.271377 31.348511 ]\n", + " [-23.647377 31.348511 ]\n", + " [-29.023377 31.348511 ]\n", + " [ -2.143377 0.673511 ]\n", + " [ -7.519377 0.673511 ]\n", + " [-12.895377 0.673511 ]\n", + " [-18.271377 0.673511 ]\n", + " [-23.64737701 0.673511 ]\n", + " [-29.023377 0.673511 ]\n", + " [-30.920877 29.451011 ]\n", + " [-30.920877 24.075011 ]\n", + " [-30.920877 18.699011 ]\n", + " [-30.920877 13.323011 ]\n", + " DEBUG:root:make_az_asym: xyp: [[-32.208296 -31.60697943]\n", + " [-32.20831882 -27.22055086]\n", + " [-32.20834163 -22.83412229]\n", + " [-32.20836444 -18.44769372]\n", + " [-32.20838725 -14.06126515]\n", + " [-32.20841007 -9.67483658]\n", + " [-32.20843288 -5.288408 ]\n", + " [-32.2084557 -0.90197943]\n", + " [-32.208296 -31.60697943]\n", + " [-27.82186743 -31.60695662]\n", + " [-23.43543886 -31.60693381]\n", + " [-19.04901029 -31.60691099]\n", + " [-14.66258171 -31.60688818]\n", + " [-10.27615314 -31.60686536]\n", + " [ -5.88972457 -31.60684255]\n", + " [ -1.503296 -31.60681974]\n", + " [-32.2084557 -0.90197943]\n", + " [-27.82202712 -0.90195662]\n", + " [-23.43559855 -0.9019338 ]\n", + " [-19.04916999 -0.90191099]\n", + " [-14.66274141 -0.90188818]\n", + " [-10.27631284 -0.90186536]\n", + " [ -5.88988428 -0.90184255]\n", + " [ -1.5034557 -0.90181973]\n", + " [ -1.503296 -31.60681974]\n", + " [ -1.50331881 -27.22039116]\n", + " [ -1.50334163 -22.83396259]\n", + " [ -1.50336444 -18.44753402]\n", + " [ -1.50338726 -14.06110544]\n", + " [ -1.50341007 -9.67467688]\n", + " [ -1.50343288 -5.2882483 ]\n", + " [ -1.5034557 -0.90181973]\n", + " [-32.19330594 -29.69447935]\n", + " [-32.1933339[-30.920877 7.947011 ]\n", + " [-30.920877 2.571011 ]\n", + " [ -0.245877 31.348511 ]\n", + " [ -0.245877 31.348511 ]\n", + " [-30.920877 0.673511 ]\n", + " [-30.920877 0.673511 ]\n", + " [ -2.143377 29.451011 ]\n", + " [ -7.519377 29.451011 ]\n", + " [-12.895377 29.451011 ]\n", + " [-18.271377 29.451011 ]\n", + " [-23.647377 29.451011 ]\n", + " [-29.023377 29.451011 ]\n", + " [ -2.143377 24.075011 ]\n", + " [ -7.519377 24.075011 ]\n", + " [-12.895377 24.075011 ]\n", + " [-18.271377 24.075011 ]\n", + " [-23.647377 24.075011 ]\n", + " [-29.023377 24.075011 ]\n", + " [ -2.143377 18.699011 ]\n", + " [ -7.519377 18.699011 ]\n", + " [-12.895377 18.699011 ]\n", + " [-18.271377 18.699011 ]\n", + " [-23.647377 18.699011 ]\n", + " [-29.023377 18.699011 ]\n", + " [ -2.143377 13.323011 ]\n", + " [ -7.519377 13.323011 ]\n", + " [-12.895377 13.323011 ]\n", + " [-18.271377 13.323011 ]\n", + " [-23.647377 13.323011 ]\n", + " [-29.023377 13.323011 ]\n", + " [ -2.143377 7.947011 ]\n", + " [ -7.519377 7.947011 ]\n", + " [-12.895377 7.947011 ]\n", + " [-18.271377 7.947011 ]\n", + " [-23.647377 7.947011 ]\n", + " [-29.023377 7.947011 ]\n", + " [ -2.143377 2.571011 ]\n", + " [ -7.519377 2.571011 ]\n", + " [-12.895377 2.571011 ]\n", + " [-18.271377 2.571011 ]\n", + " [-23.647377 2.571011 ]\n", + " [-29.023377 2.571011 ]]\n", + "DEBUG:root:radec2pix: xyfp: [[-32.31281793 -31.43806373]\n", + " [-32.31091541 -27.05163558]\n", + " [-32.30901287 -22.66520742]\n", + " [-32.30711034 -18.27877926]\n", + " [-32.3052078 -13.8923511 ]\n", + " [-32.30330527 -9.50592294]\n", + " [-32.30140274 -5.11949478]\n", + " [-32.2995002 -0.73306663]\n", + " [-32.31281793 -31.43806373]\n", + " [-27.92638978 -31.43996627]\n", + " [-23.53996162 -31.4418688 ]\n", + " [-19.15353346 -31.44377134]\n", + " [-14.7671053 -31.44567387]\n", + " [-10.38067715 -31.44757641]\n", + " [ -5.99424899 -31.44947894]\n", + " [ -1.60782083 -31.45138147]\n", + " [-32.2995002 -0.73306663]\n", + " [-27.91307204 -0.73496916]\n", + " [-23.52664389 -0.73687169]\n", + " [-19.14021573 -0.73877423]\n", + " [-14.75378757 -0.74067676]\n", + " [-10.36735941 -0.74257929]\n", + " [ -5.98093125 -0.74448183]\n", + " [ -1.59450309 -0.74638436]\n", + " [ -1.60782083 -31.45138147]\n", + " [ -1.60591829 -27.06495331]\n", + " [ -1.60401576 -22.67852516]\n", + " [ -1.60211323 -18.292097 ]\n", + " [ -1.60021069 -13.90566884]\n", + " [ -1.59830816 -9.51924068]\n", + " [ -1.59640563 -5.13281252]\n", + " [ -1.59450309 -0.74638436]\n", + " [-32.29698843 -29.52557043]\n", + " [-32.29465669 -24.14957093]\n", + " [-32.29232495 -18.77357144]\n", + " [-32.2899932 -13.39757194]\n", + " [-32.28766146 -8.02157244]\n", + " [-32.28532972 -2.64557295]\n", + " [-30.40031161 -31.42389325]\n", + " [-25.02431212 -31.42622499]\n", + " [-19.64831262 -31.42855673]\n", + " [-14.27231313 -31.43088848]\n", + " [ -8.89631363 -31.43322022]\n", + " [ -3.52031414 -31.43555196]\n", + " [-30.38700689 -0.74889614]\n", + " [-25.01100739 -0.75122788]\n", + " [-19.6350079 -0.75355962]\n", + " [-14.25900841 -0.75589136]\n", + " [ -8.88300892 -0.7582231 ]\n", + " [ -3.50700942 -0.76055484]\n", + " [ -1.62199131 -29.53887515]\n", + " [ -1.61965957 -24.16287565]\n", + " [ -1.61732783 -18.78687616]\n", + " [ -1.61499609 -13.41087666]\n", + " [ -1.61266434 -8.03487716]\n", + " [ -1.6103326 -2.65887768]\n", + " [-32.29781143 -31.42307024]\n", + " [-32.29781143 -31.42307024]\n", + " [ -1.60950959 -0.76137785]\n", + " [ -1.60950959 -0.76137785]\n", + " [-30.3994886 1 -24.31847935]\n", + " [-32.19336187 -18.94247936]\n", + " [-32.19338983 -13.56647936]\n", + " [-32.19341779 -8.19047935]\n", + " [-32.19344575 -2.81447935]\n", + " [-30.29579608 -31.59196949]\n", + " [-24.91979608 -31.59194152]\n", + " [-19.54379608 -31.59191356]\n", + " [-14.16779608 -31.5918856 ]\n", + " [ -8.79179608 -31.59185764]\n", + " [ -3.41579608 -31.59182968]\n", + " [-30.29595562 -0.91696949]\n", + " [-24.91995562 -0.91694153]\n", + " [-19.54395562 -0.91691356]\n", + " [-14.16795562 -0.9168856 ]\n", + " [ -8.79195562 -0.91685764]\n", + " [ -3.41595563 -0.91682968]\n", + " [ -1.51830595 -29.69431981]\n", + " [ -1.51833391 -24.31831981]\n", + " [ -1.51836187 -18.94231981]\n", + " [ -1.51838983 -13.56631981]\n", + " [ -1.51841779 -8.19031981]\n", + " [ -1.51844575 -2.81431982]\n", + " [-32.19329608 -31.59197936]\n", + " [-32.19329608 -31.59197936]\n", + " [ -1.51845562 -0.91681981]\n", + " [ -1.51845562 -0.91681981]\n", + " [-30.29580595 -29.69446949]\n", + " [-24.91980594 -29.69444152]\n", + " [-19.54380595 -29.69441356]\n", + " [-14.16780595 -29.69438561]\n", + " [ -8.79180595 -29.69435764]\n", + " [ -3.41580595 -29.69432968]\n", + " [-30.29583391 -24.31846949]\n", + " [-24.91983391 -24.31844152DEBUG:root:radec2pix: ccdpx: [[-4.44999999e+01 -4.99999873e-01]\n", + " [-4.44999998e+01 2.91928572e+02]\n", + " [-4.44999998e+01 5.84357143e+02]\n", + " [-4.45000002e+01 8.76785714e+02]\n", + " [-4.45000003e+01 1.16921429e+03]\n", + " [-4.45000002e+01 1.46164286e+03]\n", + " [-4.45000002e+01 1.75407143e+03]\n", + " [-4.45000000e+01 2.04650000e+03]\n", + " [-4.44999999e+01 -4.99999873e-01]\n", + " [ 2.47928571e+02 -5.00000280e-01]\n", + " [ 5.40357143e+02 -5.00000000e-01]\n", + " [ 8.32785714e+02 -4.99999974e-01]\n", + " [ 1.12521429e+03 -4.99999987e-01]\n", + " [ 1.41764286e+03 -4.99999863e-01]\n", + " [ 1.71007143e+03 -5.00000138e-01]\n", + " [ 2.00250000e+03 -4.99999700e-01]\n", + " [-4.45000000e+01 2.04650000e+03]\n", + " [ 2.47928571e+02 2.04650000e+03]\n", + " [ 5.40357143e+02 2.04650000e+03]\n", + " [ 8.32785714e+02 2.04650000e+03]\n", + " [ 1.12521429e+03 2.04650000e+03]\n", + " [ 1.41764286e+03 2.04650000e+03]\n", + " [ 1.71007143e+03 2.04650000e+03]\n", + " [ 2.00250000e+03 2.04650000e+03]\n", + " [ 2.00250000e+03 -4.99999700e-01]\n", + " [ 2.00250000e+03 2.91928571e+02]\n", + " [ 2.00250000e+03 5.84357143e+02]\n", + " [ 2.00250000e+03 8.76785]\n", + " [-19.54383391 -24.31841356]\n", + " [-14.16783391 -24.31838561]\n", + " [ -8.79183391 -24.31835764]\n", + " [ -3.41583391 -24.31832968]\n", + " [-30.29586187 -18.94246949]\n", + " [-24.91986187 -18.94244153]\n", + " [-19.54386187 -18.94241356]\n", + " [-14.16786187 -18.94238561]\n", + " [ -8.79186187 -18.94235764]\n", + " [ -3.41586187 -18.94232969]\n", + " [-30.29588983 -13.56646949]\n", + " [-24.91988983 -13.56644152]\n", + " [-19.54388984 -13.56641357]\n", + " [-14.16788983 -13.5663856 ]\n", + " [ -8.79188983 -13.56635764]\n", + " [ -3.41588983 -13.56632968]\n", + " [-30.29591779 -8.19046949]\n", + " [-24.91991779 -8.19044152]\n", + " [-19.54391779 -8.19041356]\n", + " [-14.16791779 -8.1903856 ]\n", + " [ -8.79191779 -8.19035764]\n", + " [ -3.41591779 -8.19032968]\n", + " [-30.29594575 -2.81446949]\n", + " [-24.91994576 -2.81444153]\n", + " [-19.54394575 -2.81441356]\n", + " [-14.16794576 -2.8143856 ]\n", + " [ -8.79194575 -2.81435764]\n", + " [ -3.41594575 -2.81432968]]\n", + "DEBUG:root:optics_fp: xyfp shape: (96, 2)\n", + "DEBUG:root:optics_fp: cphi: [0.71431368 0.76437722 0.81641337 0.86835883 0.91702693 0.95816873\n", + " 0.9870555 0.99965535 0.71431368 0.66132929 0.5962023 0.51675291\n", + " 0.42131547 0.30954599 0.18335276 0.04744559 0.99965535 0.9995376\n", + " 0.99934763 0.99901176 0.99833132 0.99660587 0.98975 0.86955594\n", + " 0.04744559 0.05506581 0.06560435 0.08112784 0.10624255 0.15365671\n", + " 0.27469828 0.86955594 0.73565039 0.79855486 0.86249109 0.9220669\n", + " 0.96951843 0.99634831 0.69273272 0.61992142 0.52667287 0.40967477\n", + " 0.26839934 0.10753407 0.99959633 0.99940262 0.99902775 0.99814911\n", + " 0.99520453 0.969333 0.0509959 0.06222863 0.07980586 0.1111717\n", + " 0.18256945 0.47985554 0.71431702 0.71431702 0.86795254 0.86795254\n", + " 0.71476593 0.64346978 0.55038977 0.43114136 0.28422526 0.11432331\n", + " 0.78049181 0.71641143 0.62718906 0.50409223 0.34047225 0.13917969\n", + " 0.84856189 0.79689424 0.71896966 0.59988271 0.42174368 0.17764392\n", + " 0.9132683 0.87905083 0.82247132 0.72349099 0.54506987 0.24461812\n", + " 0.96577787 0.95060272 0.92315504 0.86706843 0.73363771 0.38635141\n", + " 0.99587869 0.99392322 0.99017013 0.9815259 0.95398889 0.77695241]\n", + "714e+02]\n", + " [ 2.00250000e+03 1.16921429e+03]\n", + " DEBUG:root:cartToSphere: vec: [[ 0.00114566 -0.20812604 0.97810134]\n", + " [ 0.00115565 -0.1806373 0.9835491 ]\n", + " [ 0.00116422 -0.15245726 0.98830938]\n", + " [ 0.00117136 -0.12369032 0.99232018]\n", + " [ 0.00117701 -0.09444319 0.99552956]\n", + " [ 0.00118116 -0.06482624 0.99789587]\n", + " [ 0.00118376 -0.03495355 0.99938824]\n", + " [ 0.00118481 -0.00494229 0.99998708]\n", + " [ 0.00114566 -0.20812604 0.97810134]\n", + " [ 0.03017404 -0.20797994 0.97766757]\n", + " [ 0.05908469 -0.20756351 0.97643555]\n", + " [ 0.08776498 -0.20687811 0.97442227]\n", + " [ 0.11610332 -0.20592557 0.97165564]\n", + " [ 0.14398904 -0.20470759 0.96817455]\n", + " [ 0.17131174 -0.20322504 0.96402898]\n", + " [ 0.19796003 -0.20147731 0.95928031]\n", + " [ 0.00118481 -0.00494229 0.99998708]\n", + " [ 0.03120455 -0.00493875 0.99950082]\n", + " [ 0.06110052 -0.0049287 0.99811945]\n", + " [ 0.09075528 -0.00491221 0.99586111]\n", + " [ 0.1200543 -0.00488939 0.99275529]\n", + " [ 0.14888674 -0.0048604 0.98884231]\n", + " [ 0.17714546 -0.00482538 0.98417285]\n", + " [ 0.20472589 -0.00478446 0.97880765]\n", + " [ 0.19796003 -0.20147731 0.95928031]\n", + " [ 0.19971011 -0.17488831 0.96412134]\n", + " [ 0.20119978 -0.14761103 0.96836441]\n", + " [ 0.20242973 -0.11975687 0.97194676]\n", + " [ 0.20339908 -0.09143612 0.97481703]\n", + " [ 0.20410611 -0.06275929 0.97693499]\n", + " [ 0.20454887 -0.03383788 0.97827131]\n", + " [ 0.20472589 -0.00478446 0.97880765]\n", + " [ 0.00124992 -0.19623245 0.98055661]\n", + " [ 0.00126219 -0.16206424 0.9867794 ]\n", + " [ 0.00127213 -0.12696122 0.99190687]\n", + " [ 0.00127966 -0.09111882 0.99583921]\n", + " [ 0.00128472 -0.05474021 0.9984998 ]\n", + " [ 0.00128725 -0.01803675 0.9998365 ]\n", + " [ 0.01380981 -0.20800294 0.97803071]\n", + " [ 0.04932315 -0.20764209 0.97696059]\n", + " [ 0.08454761 -0.20687664 0.97470701]\n", + " [ 0.11927732 -0.20570979 0.97131684]\n", + " [ 0.15330846 -0.20414458 0.96686168]\n", + " [ 0.18643745 -0.20218204 0.96143824]\n", + " [ 0.01428113 -0.00504426 0.9998853 ]\n", + " [ 0.05100494 -0.00503536 0.99868571]\n", + " [ 0.08742589 -0.00501654 0.9961584 ]\n", + " [ 0.12333185 -0.004988 0.99235295]\n", + " [ 0.15851879 -0.00495001 0.98734355]\n", + " [ 0.19279062 -0.00490286 0.98122767]\n", + " [ 0.19866498 -0.1899823 0.96147748]\n", + " [ 0.20063357 -0.15691665 0.96701775]\n", + " [ 0.20221208 -0.12292805 0.97159609]\n", + " [ 0.20339952 -0.08821992 0.97511327]\n", + " [ 0.20419277 -0.05299579 0.97749515]\n", + " [ 0.20458843 -0.01746139 0.97869233]\n", + " [ 0.00124504 -0.2080333 0.97812095]\n", + " [ 0.00124504 -0.2080333 0.97812095]\n", + " [ 0.2046327 -0.00488406 0.97882665]\n", + " [ 0.2046327 -0.00488406 0.97882665]\n", + " [ 0.01386393 -0.19620382 0.98046512]\n", + " [ 0.04951642 -0.19586344 0.97938023]\n", + " [ 0.08487904 -0.1951417 0.97709532]\n", + " [ 0.1197456 -0.19404219 0.97365734]\n", + " [ 0.15391263 -0.19256861 0.96913788]\n", + " [ 0.18717755 -0.19072284 0.96363342]\n", + " [ 0.01400003 -0.16204052 0.98668479]\n", + " [ 0.0500023 -0.16175873 0.98556272]\n", + " [ 0.08571147 -0.16116182 0.98319907]\n", + " [ 0.12092013 -0.16025398 0.97964125]\n", + " [ 0.15542529 -0.15904007 0.97496115]\n", + " [ 0.1890269 -0.15752379 0.96925491]\n", + " [ 0.01411023 -0.12694255 0.9918097 ]\n", + " [ 0.05039551 -0.12672084 0.99065742]\n", + " [ 0.08638432 -0.12625153 0.98822988]\n", + " [ 0.12186779 -0.1255387 0.98457518]\n", + " [ 0.15664287 -0.12458735 0.97976579]\n", + " [ 0.19051132 -0.12340188 0.97389805]\n", + " [ 0.01419378 -0.09110536 0.9957401 ]\n", + " [ 0.0506935 -0.09094551 0.99456477]\n", + " [ 0.08689379 -0.09060732 0.9920886 ]\n", + " [ 0.12258434 -0.09009413 0.98836032]\n", + " [ 0.15756175 -0.08941017 0.98345316]\n", + " [ 0.19162897 -0.08855947 0.97746384]\n", + " [ 0.0142499 -0.05473209 0.99839939]\n", + " [ 0.05089361 -0.05463571 0.99720849]\n", + " [ 0.08723571 -0.05443186 0.9946995 ]\n", + " [ 0.12306478 -0.05412272 0.99092169]\n", + " [ 0.15817704 -0.05371108 0.98594885]\n", + " [ 0.19237609 -0.05319971 0.97987817]\n", + " [ 0.01427798 -0.01803407 0.99973542]\n", + " [ 0.05099373 -0.01800225 0.99853671]\n", + " [ 0.08740674 -0.01793496 0.99601124]\n", + " [ 0.12330495 -0.01783294 0.99220858]\n", + " [ 0.15848438 -0.01769716 0.98720287]\n", + " [ 0.1927489 -0.01752858 0.98109154]]\n", + "[ 2.00250000e+03 1.46164286e+03]\n", + " [ 2.00250000e+03 1.75407143e+03]\n", + " [ 2.00250000e+03 2.04650000e+03]\n", + " [-4.35000000e+01 1.27000000e+02]\n", + " [-4.35000002e+01 4.85400000e+02]\n", + " [-4.34999999e+01 8.43800000e+02]\n", + " [-4.35000003e+0DEBUG:root:make_az_asym: xyp: shape: (96, 2)\n", + "1 1.20220000e+03]\n", + " [-4.35000000e+01 1.56060000e+03]\n", + " [-4.35000001e+01 1.91900000e+03]\n", + " [ 8.30000001e+01 5.00000148e-01]\n", + " [ 4.41400000e+02 4.99999823e-01]\n", + " [ 7.99800000e+02 4.99999939e-01]\n", + " [ 1.15820000e+03 5.00000006e-01]\n", + " [ 1.51660000e+03 5.00000232e-01]\n", + " [ 1.87500000e+03 5.00000256e-01]\n", + " [ 8.29999998e+01 2.04550000e+03]\n", + " [ 4.41400000e+02 2.04550000e+03]\n", + " [ 7.99800000e+02 2.04550000e+03]\n", + " [ 1.15820000e+03 2.04550000e+03]\n", + " [ 1.51660000e+03 2.04550000e+03]\n", + " [ 1.87500000e+03 2.04550000e+03]\n", + " [ 2.00150000e+03 1.27000000e+02]\n", + " [ 2.00150000e+03 4.85400000e+02]\n", + " [ 2.00150000e+03 8.43800000e+02]\n", + " [ 2.00150000e+03 1.20220000e+03]\n", + " [ 2.00150000e+03 1.56060000e+03]\n", + " [ 2.00150000e+03 1.91900000e+03]\n", + " [-4.35000003e+01 4.99999725e-01]\n", + " [-4.35000003e+01 4.99999725e-01]\n", + " [ 2.00150000e+03 2.04550000e+03]\n", + " [ 2.00150000e+03 2.04550000e+03]\n", + " [ 8.30000000e+01 1.27000000e+02]\n", + " [ 4.41400000e+02 1.27000000e+02]\n", + " [ 7.99800000e+02 1.27000000e+02]\n", + " [ 1.15820000e+03 1.27000000e+02]\n", + " [ 1.51660000e+03 1.27000000e+02]\n", + " [ 1.87500000e+03 1.27000000e+02]\n", + " [ 8.30000001e+01 4.85400000e+02]\n", + " [ 4.41400000e+02 4.85400000e+02]\n", + " [ 7.99800000e+02 4.85400000e+02]\n", + " [ 1.15820000e+03 4.85400000e+02]\n", + " [ 1.51660000e+03 4.85400000e+02]\n", + " [ 1.87500000e+03 4.85400000e+02]\n", + " [ 8.30000001e+01 8.43800000e+02]\n", + " [ 4.41400000e+02 8.43800000e+02]\n", + " [ 7.99800000e+02 8.43800000e+02]\n", + " [ 1.15820000e+03 8.43800000e+02]\n", + " [ 1.51660000e+03 8.43800000e+02]\n", + " [ 1.87500000e+03 8.43800000e+02]\n", + " [ 8.29999999e+01 1.20220000e+03]\n", + " [ 4.41400000e+02 1.20220000e+03]\n", + " [ 7.99800000e+02 1.20220000e+03]\n", + " [ 1.15820000e+03 1.20220000e+03]\n", + " [ 1.51660000e+03 1.20220000e+03]\n", + " [ 1.87500000e+03 1.20220000e+03]\n", + " [ 8.30000000e+01 1.56060000e+03]\n", + " [ 4.41400000e+02 1.56060000e+03]\n", + " [ 7.99800000e+02 1.56060000e+03]\n", + " [ 1.15820000e+03 1.56060000e+03]\n", + " [ 1.51660000e+03 1.56060000e+03]\n", + " [ 1.87500000e+03 1.56060000e+03]\n", + " [ 8.30000003e+01 1.91900000e+03]\n", + " [ 4.41400 -29.52639343]\n", + " [-25.02348911 -29.52872517]\n", + " [-19.64748962 -29.53105692]\n", + " [-14.27149012 -29.53338866]\n", + " [ -8.89549063 -29.5357204 ]\n", + " [ -3.51949113 -29.53805214]\n", + " [-30.39715686 -24.15039394]\n", + " [-25.02115737 -24.15272568]\n", + " [-19.64515788 -24.15505742]\n", + " [-14.26915838 -24.15738916]\n", + " [ -8.89315889 -24.1597209 ]\n", + " [ -3.51715939 -24.16205264]\n", + " [-30.39482512 -18.77439444]\n", + " [-25.01882563 -18.77672618]\n", + " [-19.64282613 -18.77905793]\n", + " [-14.26682664 -18.78138967]\n", + " [ -8.89082714 -18.78372141]\n", + " [ -3.51482765 -18.78605315]\n", + " [-30.39249338 -13.39839495]\n", + " [-25.01649389 -13.40072669]\n", + " [-19.64049439 -13.40305843]\n", + " [-14.2644949 -13.40539017]\n", + " [ -8.8884954 -13.40772191]\n", + " [ -3.51249591 -13.41005365]\n", + " [-30.39016163 -8.02239545]\n", + " [-25.01416214 -8.02472719]\n", + " [-19.63816265 -8.02705893]\n", + " [-14.26216315 -8.02939068]\n", + " [ -8.88616366 -8.03172242]\n", + " [ -3.51016417 -8.03405416]\n", + " [-30.3878299 -2.64639596]\n", + " [-25.01183041 -2.6487277 ]\n", + " [-19.63583091 -2.65105944]\n", + " [-14.25983141 -2.65339118]\n", + " [ -8.88383191 -2.65572292]\n", + " [ -3.50783243 -2.65805467]]\n", + "DEBUG:root:optics_fp: sphi: [0.69982566 0.64476931 0.57746793 0.49593643 0.39882528 0.28620393\n", + " 0.16037903 0.02625233 0.69982566 0.75009571 0.80283424 0.85613459\n", + " 0.90691415 0.95088447 0.98304718 0.99887382 0.02625233 0.03040715\n", + " 0.0361152 0.04444666 0.05774576 0.08232094 0.14281086 0.49383445\n", + " 0.99887382 0.99848273 0.99784571 0.9967037 0.99434024 0.98812429\n", + " 0.96153048 0.49383445 0.67736143 0.60192204 0.50607224 0.38703053\n", + " 0.24501841 0.0853818 0.72119441 0.7846639 0.85006805 0.91223165\n", + " 0.96330774 0.9942014 0.02841071 0.03456004 0.04408579 0.06081407\n", + " 0.0978159 0.24575094 0.99869886 0.99806192 0.99681043 0.99380121\n", + " 0.98319296 0.87734751 0.69982226 0.69982226 0.49664714 0.49664714\n", + " 0.69936375 0.76547151 0.83490784 0.90228439 0.95875753 0.9934436\n", + " 0.62516601 0.69767805 0.77886705 0.86364983 0.94025457 0.99026714\n", + " 0.52909613 0.60411884 0.69504146 0.80008796 0.9067151 0.98409483\n", + " 0.40735858 0.47672806 0.56880658 0.69033382 0.83839063 0.9696195\n", + " 0.25937061 0.31041017 0.38442785 0.49818906 0.67954081 0.92235166\n", + " 0.0906953 0.11007561 0.13986822 0.1913293 0.29984194 0.62955934]\n", + "DEBUG:root:radec2pix: xyfp Shape: (96, 2)\n", + "000e+02 1.91900000e+03]\n", + " [ 7.99800000e+02 1.91900000e+03]\n", + " [ 1.15820000e+03 1.91900000e+03]\n", + " [ 1.51660000e+03 1.91900000e+03]\n", + " [ 1.87500000e+03 1.91900000e+03]]\n", + "DEBUG:root:radec2pix: lng: [270.31539085 270.36655189 270.43752447 270.542579 270.71402077\n", + " 271.04383538 271.93968007 283.48101478 270.31539085 278.25496108\n", + " 285.88944585 292.98836581 299.41482725 305.12212741 310.12974078\n", + " 314.49549071 283.48101478 351.00638008 355.38819591 356.90183998\n", + " 357.66783206 358.13024629 358.43966874 358.66123705 314.49549071\n", + " 318.7910165 323.73421549 329.3915583 335.79415496 342.90819266\n", + " 350.6068072 358.66123705 270.36494598 270.44622312 270.57407396\n", + " 270.80460183 271.34445266 274.08218667 273.79842993 283.36234739\n", + " 292.22915231 300.10657084 306.9058095 312.67997848 340.54617186\n", + " 354.36185807 356.71594406 357.68400903 358.21142556 358.54322592\n", + " 316.27981968 321.97083668 328.70389405 336.55230838 345.45057848\n", + " 355.12169333 270.34290102 270.34290102 358.63275532 358.63275532\n", + " 274.04185073 284.1877247 293.50716352 301.67919787 308.63398936\n", + " 314.46249394 274.93799638 287.17724528 298.00560006 307.03649051\n", + " 314.34141513 320.19418356 276.34264386 291.68718176 304.38086955\n", + " 314.14993264 321.50269119 327.06723776 278.85521862 299.13552131\n", + " 313.8014816 323.6857401 330.42677291 335.19643967 284.59338686\n", + " 312.96912569 328.03736148 336.26056332 341.24440919 344.5417427\n", + " 308.36945368 340.55550723 348.40444495 351.77067409 353.62846105\n", + " 354.80381648]\n", + "DEBUG:root:radec2pix: curVec: [[-2.05990295e-01 4.15969905e-01 -8.85740953e-01]\n", + " [-1.78746263e-01 4.14736932e-01 -8.92212447e-01]\n", + " [-1.50820614e-01 4.13143306e-01 -8.98090057e-01]\n", + " [-1.22316935e-01 4.11177424e-01 -9.03311515e-01]\n", + " [-9.33402961e-02 4.08831894e-01 -9.07823811e-01]\n", + " [-6.39990042e-02 4.06103792e-01 -9.11583149e-01]\n", + " [-3.44053988e-02 4.02994932e-01 -9.14555276e-01]\n", + " [-4.67550578e-03 3.99512054e-01 -9.16716019e-01]\n", + " [-2.05990295e-01 4.15969905e-01 -8.85740953e-01]\n", + " [-2.01918756e-01 4.42164317e-01 -8.73910483e-01]\n", + " [-1.97596221e-01 4.67899889e-01 -8.61408978e-01]\n", + " [-1.93039167e-01 4.93081374e-01 -8.48296315e-01]\n", + " [-1.88264367e-01 5.17618805e-01 -8.34642019e-01]\n", + " [-1.83288437e-01 5.41427399e-01 -8.20525271e-01]\n", + " [-1.78127502e-01 5.64427193e-01 -8.06035072e-01]\n", + " [-1.72797138e-01 5.86542660e-01 -7.91270407e-01]\n", + " [-4.67550578e-03 3.99512054e-01 -9.16716019e-01]\n", + " [-6.14947939e-04 4.26600430e-01 -9.04439990e-01]\n", + " [ 3.43488728e-03 4.53218035e-01 -8.91393075e-01]\n", + " [ 7.45802726e-03 4.79265427e-01 -8.77638324e-01]\n", + " [ 1.14389443e-02 5.04650937e-01 -8.63247695e-01]\n", + " [ 1.53626440e-02 5.29290860e-01 -8.48301347e-01]\n", + " [ 1.92145999e-02 5.53108646e-01 -8.32887522e-01]\n", + " [ 2.29805501e-02 5.76033317e-01 -8.17103122e-01]\n", + " [-1.72797138e-01 5.86542660e-01 -7.91270407e-01]\n", + " [-1.46211145e-01 5.86754610e-01 -7.96455478e-01]\n", + " [-1.18982393e-01 5.86408210e-01 -8.01229431e-01]\n", + " [-9.12196478e-02 5.85491831e-01 -8.05529820e-01]\n", + " [-6.30318925e-02 5.83997698e-01 -8.09304436e-01]\n", + " [-3.45287355e-02 5.81922025e-01 -8.12511245e-01]\n", + " [-5.82074515e-03 5.79265418e-01 -8.15118209e-01]\n", + " [ 2.29805501e-02 5.76033317e-01 -8.17103122e-01]\n", + " [-1.94188712e-01 4.15566355e-01 -8.88591778e-01]\n", + " [-1.60326826e-01 4.13815247e-01 -8.96131826e-01]\n", + " [-1.25544017e-01 4.11510273e-01 -9.02717007e-01]\n", + " [-9.00329968e-02 4.08636064e-01 -9.08245906e-01]\n", + " [-5.39932470e-02 4.05187263e-01 -9.12637941e-01]\n", + " [-1.76331722e-02 4.01169247e-01 -9.15834213e-01]\n", + " [-2.04155055e-01 4.27437614e-01 -8.80691660e-01]\n", + " [-1.98994127e-01 4.59246152e-01 -8.65733394e-01]\n", + " [-1.93472683e-01 4.90270229e-01 -8.49825525e-01]\n", + " [-1.87621503e-01 5.20342015e-01 -8.33092047e-01]\n", + " [-1.81471137e-01 5.49305387e-01 -8.15678747e-01]\n", + " [-1.75051033e-01 5.77014987e-01 -7.97753621e-01]\n", + " [-3.00655381e-03 4.11386433e-01 -9.11456068e-01]\n", + " [ 1.96506094e-03 4.44282199e-01 -8.95884739e-01]\n", + " [ 6.90485930e-03 4.76371203e-01 -8.79217152e-01]\n", + " [ 1.17840557e-02 5.07481409e-01 -8.61582123e-01]\n", + " [ 1.65750323e-02 5.37458627e-01 -8.43127210e-01]\n", + " [ 2.12511642e-02 5.66164333e-01 -8.24018408e-01]\n", + " [-1.61309708e-01 5.86628489e-01 -7.93628499e-01]\n", + " [-1.28278969e-01 5.86513689e-01 -7.99716324e-01]\n", + " [-9.43907992e-02 5.85548352e-01 -8.05123285e-01]\n", + " [-5.98457283e-02 5.83716568e-01 -8.09749009e-01]\n", + " [-2.48455810e-02 5.81011414e-01 -8.13516093e-01]\n", + " [ 1.04056741e-02 5.77435992e-01 -8.16369645e-01]\n", + " [-2.05884932e-01 4.16056534e-01 -8.85724763e-01]\n", + " [-2.05884932e-01 4.16056534e-01 -8.85724763e-01]\n", + " [ 2.28693096e-02 5.75968545e-01 -8.17151901e-01]\n", + " [ 2.28693096e-02 5.75968545e-01 -8.17151901e-01]\n", + " [-1.92453998e-01 4.26991713e-01 -8.83538078e-01]\n", + " [-1.87294878e-01 4.58922885e-01 -8.68510457e-01]\n", + " [-1.81798427e-01 4.90065048e-01 -8.52517202e-01]\n", + " [-1.75995839e-01 5.20250215e-01 -8.35682463e-01]\n", + " [-1.69918076e-01 5.49322511e-01 -8.18151958e-01]\n", + " [-1.63594831e-01 5.77137047e-01 -8.00093470e-01]\n", + " [-1.58580556e-01 4.25352006e-01 -8.91026306e-01]\n", + " [-1.53432946e-01 4.57592141e-01 -8.75824048e-01]\n", + " [-1.48014024e-01 4.89032099e-01 -8.59615876e-01]\n", + " [-1.42355936e-01 5.19503258e-01 -8.42526648e-01]\n", + " [-1.36490614e-01 5.48850477e-01 -8.24702047e-01]\n", + " [-1.30448453e-01 5.76930493e-01 -8.06309126e-01]\n", + " [-1.23789471e-01 4.23137390e-01 -8.97569449e-01]\n", + " [-1.18663603e-01 4.55628984e-01 -8.82225129e-01]\n", + " [-1.13333546e-01 4.87312155e-01 -8.65842001e-01]\n", + " [-1.07831818e-01 5.18017418e-01 -8.48545965e-01]\n", + " [-1.02190684e-01 5.47590240e-01 -8.30482988e-01]\n", + " [-9.64408202e-02 5.75889122e-01 -8.11819492e-01]\n", + " [-8.82735948e-02 4.20331922e-01 -9.03066358e-01]\n", + " [-8.31805095e-02 4.53016115e-01 -8.87613318e-01]\n", + " [-7.79519752e-02 4.84887193e-01 -8.71095804e-01]\n", + " [-7.26201448e-02 5.15774718e-01 -8.53640882e-01]\n", + " [-6.72167494e-02 5.45524542e-01 -8.35395046e-01]\n", + " [-6.17720107e-02 5.73996692e-01 -8.16524351e-01]\n", + " [-5.22325188e-02 4.16929550e-01 -9.07436782e-01]\n", + " [-4.71835881e-02 4.49745777e-01 -8.91909437e-01]\n", + " [-4.20695898e-02 4.81748399e-01 -8.75299166e-01]\n", + " [-3.69215900e-02 5.12766113e-01 -8.57734055e-01]\n", + " [-3.17699463e-02 5.42644902e-01 -8.39361174e-01]\n", + " [-2.66436745e-02 5.71245840e-01 -8.20346454e-01]\n", + " [-1.58746958e-02 4.12935034e-01 -9.10622124e-01]\n", + " [-1.08810439e-02 4.45821168e-01 -8.95055914e-01]\n", + " [-5.89384785e-03 4.77897892e-01 -8.78395621e-01]\n", + " [-9.42544713e-04 5.08993297e-01 -8.60769966e-01]\n", + " [ 3.94447919e-03 5.38953274e-01 -8.42326427e-01]\n", + " [ 8.73993559e-03 5.67639310e-01 -8.23230968e-01]]\n", + "DEBUG:root:radec2pix: curVec Shape: (96, 3)\n", + "DEBUG:root:make_az_asym: xyp: [[ -0.230877 31.363511 ]\n", + " [ -0.230877 26.97708243]\n", + " [ -0.230877 22.59065386]\n", + " [ -0.230877 18.20422528]\n", + " [ -0.230877 13.81779671]\n", + " [ -0.230877 9.43136815]\n", + " [ -0.230877 5.04493957]\n", + " [ -0.230877 0.658511 ]\n", + " [ -0.230877 31.363511 ]\n", + " [ -4.61730557 31.363511 ]\n", + " [ -9.00373414 31.363511 ]\n", + " [-13.39016272 31.363511 ]\n", + " [-17.77659129 31.363511 ]\n", + " [-22.16301986 31.363511 ]\n", + " [-26.54944843 31.363511 ]\n", + " [-30.935877 31.363511 ]\n", + " [ -0.230877 0.658511 ]\n", + " [ -4.61730558 0.658511 ]\n", + " [ -9.00373414 0.658511 ]\n", + " [-13.39016271 0.658511 ]\n", + " [-17.77659128 0.658511 ]\n", + " [-22.16301986 0.658511 ]\n", + " [-26.54944843 0.658511 ]\n", + " [-30.935877 0.658511 ]\n", + " [-30.935877 31.363511 ]\n", + " [-30.935877 26.97708243]\n", + " [-30.935877 22.59065386]\n", + " [-30.935877 18.20422528]\n", + " [-30.935877 13.81779671]\n", + " [-30.935877 9.43136814]\n", + " [-30.935877 5.04493957]\n", + " [-30.935877 0.658511 ]\n", + " [ -0.245877 29.451011 ]\n", + " [ -0.245877 24.075011 ]\n", + " [ -0.245877 18.699011 ]\n", + " [ -0.245877 13.323011 ]\n", + " [ -0.245877 7.947011 ]\n", + " [ -0.245877 2.571011 ]\n", + " [ -2.143377 31.348511 ]\n", + " [ -7.519377 31.348511 ]\n", + " [-12.895377 31.348511 ]\n", + " [-18.271377 31.348511 ]\n", + " [-23.647377 31.348511 ]\n", + " [-29.023377 31.348511 ]\n", + " [ -2.143377 0.673511 ]\n", + " [ -7.519377 0.673511 ]\n", + " [-12.895377 0.673511 ]\n", + " [-18.271377 0.673511 ]\n", + " [-23.64737701 0.673511 ]\n", + " [-29.023377 0.673511 ]\n", + " [-30.920877 29.451011 ]\n", + " [-30.920877 24.075011 ]\n", + " [-30.920877 18.699011 ]\n", + " [-30.920877 13.323011 ]\n", + " [-30.920877 7.947011 ]\n", + " [-30.920877 2.571011 ]\n", + " [ -0.245877 31.348511 ]\n", + " [ -0.245877 31.348511 ]\n", + " [-30.920877 0.673511 ]\n", + " [-30.920877 0.673511 ]\n", + " [ -2.143377 29.451011 ]\n", + " [ -7.519377 29.451011 ]\n", + " [-12.895377 29.451011 ]\n", + " [-18.271377 29.451011 ]\n", + " [-23.647377 29.451011 ]\n", + " [-29.023377 29.451011 ]\n", + " [ -2.143377 24.075011 ]\n", + " [ -7.519377 24.075011 ]\n", + " [-12.895377 24.075011 ]\n", + " [-18.271377 24.075011 ]\n", + " [-23.647377 24.075011 ]\n", + " [-29.023377 24.075011 ]\n", + " [ -2.143377 18.699011 ]\n", + " [ -7.519377 18.699011 ]\n", + " [-12.895377 18.699011 ]\n", + " [-18.271377 18.699011 ]\n", + " [-23.647377 18.699011 ]\n", + " [-29.023377 18.699011 ]\n", + " [ -2.143377 13.323011 ]\n", + " [ -7.519377 13.323011 ]\n", + " [-12.895377 13.323011 ]\n", + " [-18.271377 13.323011 ]\n", + " [-23.647377 13.323011 ]\n", + " [-29.023377 13.323011 ]\n", + " [ -2.143377 7.947011 ]\n", + " [ -7.519377 7.947011 ]\n", + " [-12.895377 7.947011 ]\n", + " [-18.271377 7.947011 ]\n", + " [-23.647377 7.947011 ]\n", + " [-29.023377 7.947011 ]\n", + " [ -2.143377 2.571011 ]\n", + " [ -7.519377 2.571011 ]\n", + " [-12.895377 2.571011 ]\n", + " [-18.271377 2.571011 ]\n", + " [-23.647377 2.571011 ]\n", + " [-29.023377 2.571011 ]]\n", + "DEBUG:root:make_az_asym: xyp: shape: (96, 2)\n", + "DEBUG:root:radec2pix: curVec: [[ 0.11458694 -0.2068357 -0.97164234]\n", + " [ 0.11899116 -0.23369502 -0.96500142]\n", + " [ 0.12338595 -0.26089859 -0.95744861]\n", + " [ 0.12774868 -0.28832794 -0.94897169]\n", + " [ 0.13205794 -0.31586715 -0.93956833]\n", + " [ 0.1362933 -0.34340126 -0.92924685]\n", + " [ 0.14043534 -0.37081576 -0.91802701]\n", + " [ 0.14446575 -0.39799731 -0.90594028]\n", + " [ 0.11458694 -0.2068357 -0.97164234]\n", + " [ 0.14301281 -0.2015867 -0.96897376]\n", + " [ 0.17124401 -0.1962801 -0.96547895]\n", + " [ 0.19917242 -0.19094174 -0.9611824 ]\n", + " [ 0.22669238 -0.1856013 -0.95611857]\n", + " [ 0.25370068 -0.1802929 -0.95033175]\n", + " [ 0.2800961 -0.17505568 -0.94387589]\n", + " [ 0.3057786 -0.16993438 -0.93681468]\n", + " [ 0.14446575 -0.39799731 -0.90594028]\n", + " [ 0.17384345 -0.39242073 -0.90320785]\n", + " [ 0.20297097 -0.3865121 -0.89967282]\n", + " [ 0.23173534 -0.38029978 -0.89536071]\n", + " [ 0.2600288 -0.37381603 -0.89030703]\n", + " [ 0.28774927 -0.36709662 -0.88455663]\n", + " [ 0.31479978 -0.36018083 -0.87816335]\n", + " [ 0.3410868 -0.35311166 -0.87118996]\n", + " [ 0.3057786 -0.16993438 -0.93681468]\n", + " [ 0.31168704 -0.19542928 -0.9298702 ]\n", + " [ 0.31734498 -0.22134881 -0.92211543]\n", + " [ 0.32272908 -0.24756805 -0.91354037]\n", + " [ 0.32781657 -0.27396737 -0.904145 ]\n", + " [ 0.33258552 -0.30043156 -0.89393945]\n", + " [ 0.33701523 -0.32684905 -0.88294418]\n", + " [ 0.3410868 -0.35311166 -0.87118996]\n", + " [ 0.11660464 -0.21847848 -0.9688501 ]\n", + " [ 0.12200001 -0.25164377 -0.96009969]\n", + " [ 0.1273584 -0.28520806 -0.94996642]\n", + " [ 0.13263988 -0.31895702 -0.93844184]\n", + " [ 0.13780688 -0.35267892 -0.92554138]\n", + " [ 0.14282405 -0.3861634 -0.91130627]\n", + " [ 0.12701308 -0.20464674 -0.97056035]\n", + " [ 0.1617357 -0.1981714 -0.96673143]\n", + " [ 0.19605816 -0.19163462 -0.96168465]\n", + " [ 0.2297849 -0.18508942 -0.95547936]\n", + " [ 0.26272588 -0.17859868 -0.94819704]\n", + " [ 0.29469527 -0.17223676 -0.93994106]\n", + " [ 0.1572843 -0.39551596 -0.90489158]\n", + " [ 0.1931358 -0.38845482 -0.90100023]\n", + " [ 0.22849879 -0.38092285 -0.8959275 ]\n", + " [ 0.26317264 -0.37297782 -0.88973463]\n", + " [ 0.29696938 -0.36468561 -0.88250416]\n", + " [ 0.32971202 -0.35612 -0.87433891]\n", + " [ 0.30829719 -0.18100758 -0.93391065]\n", + " [ 0.31537238 -0.21255724 -0.92485658]\n", + " [ 0.32204819 -0.24461987 -0.91457426]\n", + " [ 0.32828251 -0.27697313 -0.90305951]\n", + " [ 0.33403498 -0.30940481 -0.890331 ]\n", + " [ 0.33926822 -0.34171091 -0.87643068]\n", + " [ 0.1146994 -0.206909 -0.97161346]\n", + " [ 0.1146994 -0.206909 -0.97161346]\n", + " [ 0.34098502 -0.35304661 -0.87125616]\n", + " [ 0.34098502 -0.35304661 -0.87125616]\n", + " [ 0.12896628 -0.21620534 -0.96779282]\n", + " [ 0.16382078 -0.20968073 -0.96394852]\n", + " [ 0.19826871 -0.20306729 -0.95888122]\n", + " [ 0.23211421 -0.19641773 -0.95265055]\n", + " [ 0.26516747 -0.18979428 -0.94533822]\n", + " [ 0.29724339 -0.18327056 -0.93704764]\n", + " [ 0.13448228 -0.24934274 -0.95903218]\n", + " [ 0.16966754 -0.24268802 -0.95515206]\n", + " [ 0.20442824 -0.23586896 -0.95003944]\n", + " [ 0.23856744 -0.22893782 -0.94375476]\n", + " [ 0.27189593 -0.22195562 -0.93638043]\n", + " [ 0.30423063 -0.21499404 -0.92802009]\n", + " [ 0.1399384 -0.28288348 -0.94889103]\n", + " [ 0.17539007 -0.27611213 -0.94498699]\n", + " [ 0.21039982 -0.26910319 -0.9398486 ]\n", + " [ 0.24476943 -0.26190928 -0.93353707]\n", + " [ 0.27831005 -0.25459117 -0.92613544]\n", + " [ 0.31084064 -0.24721947 -0.91774758]\n", + " [ 0.14529404 -0.31661329 -0.93736101]\n", + " [ 0.180946 -0.30973869 -0.93344549]\n", + " [ 0.21613981 -0.30255485 -0.92830175]\n", + " [ 0.25067607 -0.29511549 -0.92199152]\n", + " [ 0.28436618 -0.28748215 -0.91459821]\n", + " [ 0.31703083 -0.27972545 -0.90622576]\n", + " [ 0.15051082 -0.35032062 -0.92445766]\n", + " [ 0.18629492 -0.34335664 -0.92054355]\n", + " [ 0.22160639 -0.33601332 -0.91541557]\n", + " [ 0.25624495 -0.32834599 -0.90913554]\n", + " [ 0.29002225 -0.32041777 -0.90178686]\n", + " [ 0.32276031 -0.31230022 -0.8934732 ]\n", + " [ 0.15555275 -0.38379527 -0.91022224]\n", + " [ 0.19139914 -0.37675671 -0.90632265]\n", + " [ 0.2267607 -0.36927073 -0.90123177]\n", + " [ 0.26143679 -0.36139447 -0.89501108]\n", + " [ 0.29523934 -0.35319306 -0.88774343]\n", + " [ 0.32799119 -0.34473966 -0.87953189]]\n", + "DEBUG:root:radec2pix: curVec Shape: (96, 3)\n", + "DEBUG:root:radec2pix: lat: [77.98725933 79.59290201 81.23038669 82.89455027 84.58030503 86.2825061\n", + " 87.99575217 89.70880341 77.98725933 77.86842442 77.53699463 77.01330297\n", + " 76.32579246 75.50615888 74.58567435 73.59317035 89.70880341 88.18955545\n", + " 86.48562338 84.78529769 83.09901991 81.43298752 79.79264001 78.18327445\n", + " 73.59317035 74.60559591 75.5496878 76.3965297 77.11433871 77.67029216\n", + " 78.03413945 78.18327445 78.68303826 80.67298244 82.70560399 84.77150761\n", + " 86.86118368 88.96388538 77.96782959 77.67716345 77.0861016 76.24391961\n", + " 75.20859077 74.03673952 89.13217661 87.06213831 84.97619114 82.90974635\n", + " 80.87458441 78.88067366 74.04491662 75.24365824 76.31136856 77.19067025\n", + " 77.8215059 78.15105181 77.99265855 77.99265855 78.18859038 78.18859038\n", + " 78.65635764 78.34456159 77.7133866 76.81969543 75.7283623 74.50063549\n", + " 80.63959245 80.25225497 79.48245907 78.41882236 77.15141692 75.75558792\n", + " 82.66188886 82.16191851 81.200562 79.92354945 78.45441908 76.88031771\n", + " 84.70956295 84.0235478 82.78807615 81.24955295 79.56251519 77.81300601\n", + " 86.75780924 85.71788826 84.09815339 82.27374035 80.38380312 78.4866344\n", + " 88.68197076 86.90004071 84.8808155 82.84304634 80.82390053 78.84030268]\n", + "DEBUG:root:optics_fp: sphi: [-0.69950626 -0.64444513 -0.57715037 -0.49564218 -0.39857594 -0.28602322\n", + " -0.16028704 -0.02625833 -0.69950626 -0.74976466 -0.80249804 -0.85580559\n", + " -0.90661236 -0.95063766 -0.98288738 -0.9988295 -0.02625833 -0.03044512\n", + " -0.03619555 -0.04458562 -0.05797023 -0.08267725 -0.1433448 -0.49145128\n", + " -0.9988295 -0.99842512 -0.99776702 -0.99658828 -0.99415152 -0.98775305\n", + " -0.96047273 -0.49145128 -0.67703879 -0.60160056 -0.50577425 -0.38678764\n", + " -0.24486582 -0.08534494 -0.72086938 -0.78432831 -0.84973726 -0.91193438\n", + " -0.96308661 -0.99410379 -0.02842926 -0.03462403 -0.04421613 -0.06104888\n", + " -0.09822663 -0.24609363 -0.99864895 -0.99799091 -0.99669933 -0.99359795\n", + " -0.98268894 -0.87478002 -0.69950278 -0.69950278 -0.49425605 -0.49425605\n", + " -0.69903398 -0.76512562 -0.83456026 -0.9019653 -0.95851534 -0.99333513\n", + " -0.6248328 -0.69731062 -0.77847269 -0.8632584 -0.93993324 -0.99011458\n", + " -0.52878304 -0.60375411 -0.69461576 -0.79961451 -0.90627261 -0.98386124\n", + " -0.40710127 -0.47641382 -0.56840284 -0.68980596 -0.837772 -0.96921207\n", + " -0.25921116 -0.31021694 -0.38416098 -0.49776006 -0.67878801 -0.92148149\n", + " -0.09066564 -0.11006805 -0.13988178 -0.19134252 -0.29970307 -0.6279425 ]\n", + "DEBUG:root:mm_to_pix: fitpx: [[0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]]\n", + "DEBUG:root:radec2pix: xyfp: [[-32.208296 -31.60697943]\n", + " [-32.20831882 -27.22055086]\n", + " [-32.20834163 -22.83412229]\n", + " [-32.20836444 -18.44769372]\n", + " [-32.20838725 -14.06126515]\n", + " [-32.20841007 -9.67483658]\n", + " [-32.20843288 -5.288408 ]\n", + " [-32.2084557 -0.90197943]\n", + " [-32.208296 -31.60697943]\n", + " [-27.82186743 -31.60695662]\n", + " [-23.43543886 -31.60693381]\n", + " [-19.04901029 -31.60691099]\n", + " [-14.66258171 -31.60688818]\n", + " [-10.27615314 -31.60686536]\n", + " [ -5.88972457 -31.60684255]\n", + " [ -1.503296 -31.60681974]\n", + " [-32.2084557 -0.90197943]\n", + " [-27.82202712 -0.90195662]\n", + " [-23.43559855 -0.9019338 ]\n", + " [-19.04916999 -0.90191099]\n", + " [-14.66274141 -0.90188818]\n", + " [-10.27631284 -0.90186536]\n", + " [ -5.88988428 -0.90184255]\n", + " [ -1.5034557 -0.90181973]\n", + " [ -1.503296 -31.60681974]\n", + " [ -1.50331881 -27.22039116]\n", + " [ -1.50334163 -22.83396259]\n", + " [ -1.50336444 -18.44753402]\n", + " [ -1.50338726 -14.06110544]\n", + " [ -1.50341007 -9.67467688]\n", + " [ -1.50343288 -5.2882483 ]\n", + " [ -1.5034557 -0.90181973]\n", + " [-32.19330594 -29.69447935]\n", + " [-32.19333391 -24.31847935]\n", + " [-32.19336187 -18.94247936]\n", + " [-32.19338983 -13.56647936]\n", + " [-32.19341779 -8.19047935]\n", + " [-32.19344575 -2.81447935]\n", + " [-30.29579608 -31.59196949]\n", + " [-24.91979608 -31.59194152]\n", + " [-19.54379608 -31.59191356]\n", + " [-14.16779608 -31.5918856 ]\n", + " [ -8.79179608 -31.59185764]\n", + " [ -3.41579608 -31.59182968]\n", + " [-30.29595562 -0.91696949]\n", + " [-24.91995562 -0.91694153]\n", + " [-19.54395562 -0.91691356]\n", + " [-14.16795562 -0.9168856 ]\n", + " [ -8.79195562 -0.91685764]\n", + " [ -3.41595563 -0.91682968]\n", + " [ -1.51830595 -29.69431981]\n", + " [ -1.51833391 -24.31831981]\n", + " [ -1.51836187 -18.94231981]\n", + " [ -1.51838983 -13.56631981]\n", + " [ -1.51841779 -8.19031981]\n", + " [ -1.51844575 -2.81431982]\n", + " [-32.19329608 -31.59197936]\n", + " [-32.19329608 -31.59197936]\n", + " [ -1.51845562 -0.91681981]\n", + " [ -1.51845562 -0.91681981]\n", + " [-30.29580595 -29.69446949]\n", + " [-24.91980594 -29.69444152]\n", + " [-19.54380595 -29.69441356]\n", + " [-14.16780595 -29.69438561]\n", + " [ -8.79180595 -29.69435764]\n", + " [ -3.41580595 -29.69432968]\n", + " [-30.29583391 -24.31846949]\n", + " [-24.91983391 -24.31844152]\n", + " [-19.54383391 -24.31841356]\n", + " [-14.16783391 -24.31838561]\n", + " [ -8.79183391 -24.31835764]\n", + " [ -3.41583391 -24.31832968]\n", + " [-30.29586187 -18.94246949]\n", + " [-24.91986187 -18.94244153]\n", + " [-19.54386187 -18.94241356]\n", + " [-14.16786187 -18.94238561]\n", + " [ -8.79186187 -18.94235764]\n", + " [ -3.41586187 -18.94232969]\n", + " [-30.29588983 -13.56646949]\n", + " [-24.91988983 -13.56644152]\n", + " [-19.54388984 -13.56641357]\n", + " [-14.16788983 -13.5663856 ]\n", + " [ -8.79188983 -13.56635764]\n", + " [ -3.41588983 -13.56632968]\n", + " [-30.29591779 -8.19046949]\n", + " [-24.91991779 -8.19044152]\n", + " [-19.54391779 -8.19041356]\n", + " [-14.16791779 -8.1903856 ]\n", + " [ -8.79191779 -8.19035764]\n", + " [ -3.41591779 -8.19032968]\n", + " [-30.29594575 -2.81446949]\n", + " [-24.91994576 -2.81444153]\n", + " [-19.54394575 -2.81441356]\n", + " [-14.16794576 -2.8143856 ]\n", + " [ -8.79194575 -2.81435764]\n", + " [ -3.41594575 -2.81432968]]\n", + "DEBUG:root:mm_to_pix: fitpx.shape: (96, 2)\n", + "DEBUG:root:radec2pix: xyfp Shape: (96, 2)\n", + "DEBUG:root:optics_fp: xyfp: [[-32.203794 -31.5506227 ]\n", + " [-32.20328688 -27.16419416]\n", + " [-32.20277976 -22.77776561]\n", + " [-32.20227264 -18.39133707]\n", + " [-32.20176553 -14.00490853]\n", + " [-32.20125841 -9.61847999]\n", + " [-32.20075129 -5.23205144]\n", + " [-32.20024417 -0.8456229 ]\n", + " [-32.203794 -31.5506227 ]\n", + " [-27.81736545 -31.55112981]\n", + " [-23.43093691 -31.55163693]\n", + " [-19.04450837 -31.55214405]\n", + " [-14.65807983 -31.55265117]\n", + " [-10.27165129 -31.55315829]\n", + " [ -5.88522274 -31.5536654 ]\n", + " [ -1.4987942 -31.55417252]\n", + " [-32.20024417 -0.8456229 ]\n", + " [-27.81381563 -0.84613002]\n", + " [-23.42738708 -0.84663714]\n", + " [-19.04095854 -0.84714426]\n", + " [-14.65453 -0.84765137]\n", + " [-10.26810146 -0.84815849]\n", + " [ -5.88167292 -0.84866561]\n", + " [ -1.49524438 -0.84917273]\n", + " [ -1.4987942 -31.55417252]\n", + " [ -1.49828708 -27.16774398]\n", + " [ -1.49777997 -22.78131544]\n", + " [ -1.49727285 -18.39488689]\n", + " [ -1.49676573 -14.00845835]\n", + " [ -1.49625861 -9.62202981]\n", + " [ -1.49575149 -5.23560127]\n", + " [ -1.49524438 -0.84917273]\n", + " [-32.18857289 -29.63812445]\n", + " [-32.18795136 -24.26212448]\n", + " [-32.18732984 -18.88612452]\n", + " [-32.18670832 -13.51012455]\n", + " [-32.1860868 -8.13412459]\n", + " [-32.18546528 -2.75812462]\n", + " [-30.29129227 -31.5358438 ]\n", + " [-24.91529231 -31.53646533]\n", + " [-19.53929235 -31.53708685]\n", + " [-14.16329238 -31.53770837]\n", + " [ -8.78729242 -31.53832989]\n", + " [ -3.41129245 -31.53895142]\n", + " [-30.28774592 -0.86084401]\n", + " [-24.91174595 -0.86146553]\n", + " [-19.53574599 -0.86208705]\n", + " [-14.15974603 -0.86270858]\n", + " [ -8.78374606 -0.8633301 ]\n", + " [ -3.4077461 -0.86395162]\n", + " [ -1.5135731 -29.6416708 ]\n", + " [ -1.51295157 -24.26567084]\n", + " [ -1.51233005 -18.88967087]\n", + " [ -1.51170853 -13.51367091]\n", + " [ -1.51108701 -8.13767095]\n", + " [ -1.51046548 -2.76167097]\n", + " [-32.18879227 -31.53562444]\n", + " [-32.18879227 -31.53562444]\n", + " [ -1.51024611 -0.86417099]\n", + " [ -1.51024611 -0.86417099]\n", + " [-30.29107291 -29.63834382]\n", + " [-24.91507294 -29.63896534]\n", + " [-19.53907298 -29.63958686]\n", + " [-14.16307301 -29.64020839]\n", + " [ -8.78707305 -29.64082991]\n", + " [ -3.41107308 -29.64145143]\n", + " [-30.29045138 -24.26234385]\n", + " [-24.91445142 -24.26296538]\n", + " [-19.53845145 -24.2635869 ]\n", + " [-14.16245149 -24.26420842]\n", + " [ -8.78645152 -24.26482994]\n", + " [ -3.41045156 -24.26545147]\n", + " [-30.28982986 -18.88634389]\n", + " [-24.91382989 -18.88696541]\n", + " [-19.53782993 -18.88758693]\n", + " [-14.16182997 -18.88820846]\n", + " [ -8.78583 -18.88882997]\n", + " [ -3.40983004 -18.8894515 ]\n", + " [-30.28920834 -13.51034392]\n", + " [-24.91320837 -13.51096545]\n", + " [-19.53720841 -13.51158697]\n", + " [-14.16120844 -13.51220849]\n", + " [ -8.78520848 -13.51283002]\n", + " [ -3.40920852 -13.51345154]\n", + " [-30.28858681 -8.13434396]\n", + " [-24.91258685 -8.13496548]\n", + " [-19.53658688 -8.135587 ]\n", + " [-14.16058692 -8.13620852]\n", + " [ -8.78458696 -8.13683005]\n", + " [ -3.40858699 -8.13745157]\n", + " [-30.28796529 -2.75834399]\n", + " [-24.91196532 -2.75896552]\n", + " [-19.53596536 -2.75958704]\n", + " [-14.1599654 -2.76020856]\n", + " [ -8.78396543 -2.76083009]\n", + " [ -3.40796547 -2.76145161]]\n", + "DEBUG:root:optics_fp: xyfp shape: (96, 2)\n", + "DEBUG:root:radec2pix: xyfp: [[ -0.230877 31.363511 ]\n", + " [ -0.230877 26.97708243]\n", + " [ -0.230877 22.59065386]\n", + " [ -0.230877 18.20422528]\n", + " [ -0.230877 13.81779671]\n", + " [ -0.230877 9.43136815]\n", + " [ -0.230877 5.04493957]\n", + " [ -0.230877 0.658511 ]\n", + " [ -0.230877 31.363511 ]\n", + " [ -4.61730557 31.363511 ]\n", + " [ -9.00373414 31.363511 ]\n", + " [-13.39016272 31.363511 ]\n", + " [-17.77659129 31.363511 ]\n", + " [-22.16301986 31.363511 ]\n", + " [-26.54944843 31.363511 ]\n", + " [-30.935877 31.363511 ]\n", + " [ -0.230877 0.658511 ]\n", + " [ -4.61730558 0.658511 ]\n", + " [ -9.00373414 0.658511 ]\n", + " [-13.39016271 0.658511 ]\n", + " [-17.77659128 0.658511 ]\n", + " [-22.16301986 0.658511 ]\n", + " [-26.54944843 0.658511 ]\n", + " [-30.935877 0.658511 ]\n", + " [-30.935877 31.363511 ]\n", + " [-30.935877 26.97708243]\n", + " [-30.935877 22.59065386]\n", + " [-30.935877 18.20422528]\n", + " [-30.935877 13.81779671]\n", + " [-30.935877 9.43136814]\n", + " [-30.935877 5.04493957]\n", + " [-30.935877 0.658511 ]\n", + " [ -0.245877 29.451011 ]\n", + " [ -0.245877 24.075011 ]\n", + " [ -0.245877 18.699011 ]\n", + " [ -0.245877 13.323011 ]\n", + " [ -0.245877 7.947011 ]\n", + " [ -0.245877 2.571011 ]\n", + " [ -2.143377 31.348511 ]\n", + " [ -7.519377 31.348511 ]\n", + " [-12.895377 31.348511 ]\n", + " [-18.271377 31.348511 ]\n", + " [-23.647377 31.348511 ]\n", + " [-29.023377 31.348511 ]\n", + " [ -2.143377 0.673511 ]\n", + " [ -7.519377 0.673511 ]\n", + " [-12.895377 0.673511 ]\n", + " [-18.271377 0.673511 ]\n", + " [-23.64737701 0.673511 ]\n", + " [-29.023377 0.673511 ]\n", + " [-30.920877 29.451011 ]\n", + " [-30.920877 24.075011 ]\n", + " [-30.920877 18.699011 ]\n", + " [-30.920877 13.323011 ]\n", + " [-30.920877 7.947011 ]\n", + " [-30.920877 2.571011 ]\n", + " [ -0.245877 31.348511 ]\n", + " [ -0.245877 31.348511 ]\n", + " [-30.920877 0.673511 ]\n", + " [-30.920877 0.673511 ]\n", + " [ -2.143377 29.451011 ]\n", + " [ -7.519377 29.451011 ]\n", + " [-12.895377 29.451011 ]\n", + " [-18.271377 29.451011 ]\n", + " [-23.647377 29.451011 ]\n", + " [-29.023377 29.451011 ]\n", + " [ -2.143377 24.075011 ]\n", + " [ -7.519377 24.075011 ]\n", + " [-12.895377 24.075011 ]\n", + " [-18.271377 24.075011 ]\n", + " [-23.647377 24.075011 ]\n", + " [-29.023377 24.075011 ]\n", + " [ -2.143377 18.699011 ]\n", + " [ -7.519377 18.699011 ]\n", + " [-12.895377 18.699011 ]\n", + " [-18.271377 18.699011 ]\n", + " [-23.647377 18.699011 ]\n", + " [-29.023377 18.699011 ]\n", + " [ -2.143377 13.323011 ]\n", + " [ -7.519377 13.323011 ]\n", + " [-12.895377 13.323011 ]\n", + " [-18.271377 13.323011 ]\n", + " [-23.647377 13.323011 ]\n", + " [-29.023377 13.323011 ]\n", + " [ -2.143377 7.947011 ]\n", + " [ -7.519377 7.947011 ]\n", + " [-12.895377 7.947011 ]\n", + " [-18.271377 7.947011 ]\n", + " [-23.647377 7.947011 ]\n", + " [-29.023377 7.947011 ]\n", + " [ -2.143377 2.571011 ]\n", + " [ -7.519377 2.571011 ]\n", + " [-12.895377 2.571011 ]\n", + " [-18.271377 2.571011 ]\n", + " [-23.647377 2.571011 ]\n", + " [-29.023377 2.571011 ]]\n", + "DEBUG:root:radec2pix: xyfp Shape: (96, 2)\n", + "DEBUG:root:radec2pix: camVec: [[ 0.00152888 0.00154215 0.00155354 0.00156302 0.00157054 0.00157606\n", + " 0.00157952 0.00158089 0.00152888 0.03055413 0.0594604 0.08813528\n", + " 0.11646734 0.14434605 0.17166149 0.1983039 0.00158089 0.03159291\n", + " 0.06147904 0.0911219 0.12040769 0.14922671 0.17747265 0.2050409\n", + " 0.1983039 0.20004855 0.20153434 0.2027606 0.20372608 0.20442907\n", + " 0.20486781 0.2050409 0.00163462 0.00165059 0.00166353 0.00167335\n", + " 0.00167995 0.00168324 0.01419184 0.04970047 0.08491857 0.11964057\n", + " 0.15366298 0.18678351 0.01467408 0.05138704 0.08779394 0.12368372\n", + " 0.15885436 0.19311093 0.19900616 0.20096941 0.20254341 0.2037261\n", + " 0.2045144 0.20490517 0.00162826 0.00162826 0.20494776 0.20494776\n", + " 0.01424722 0.04989441 0.08525013 0.12010852 0.15426631 0.18752167\n", + " 0.01438645 0.05038177 0.08608239 0.1212815 0.15577635 0.18936679\n", + " 0.01449922 0.05077617 0.08675481 0.12222707 0.15699061 0.19084708\n", + " 0.01458479 0.05107523 0.08726392 0.1229415 0.15790584 0.1919602\n", + " 0.01464229 0.05127607 0.08760541 0.12341989 0.15851749 0.19270261\n", + " 0.01467095 0.05137612 0.08777538 0.12365776 0.15882123 0.1930708 ]\n", + " [-0.20769103 -0.1801941 -0.15200928 -0.12324112 -0.09399571 -0.06438234\n", + " -0.03451442 -0.00450904 -0.20769103 -0.20754198 -0.20712371 -0.20643751\n", + " -0.2054851 -0.20426815 -0.20278791 -0.2010451 -0.00450904 -0.00450572\n", + " -0.00449643 -0.00448126 -0.00446035 -0.00443385 -0.00440189 -0.00436457\n", + " -0.2010451 -0.17444879 -0.14716869 -0.11931453 -0.09099614 -0.06232394\n", + " -0.03340929 -0.00436457 -0.1957935 -0.16161745 -0.12651199 -0.09067166\n", + " -0.05429781 -0.01760077 -0.20756647 -0.20720276 -0.20643606 -0.20526936\n", + " -0.20370571 -0.20174719 -0.00461102 -0.00460274 -0.00458538 -0.00455917\n", + " -0.0045244 -0.0044813 -0.18954613 -0.15647489 -0.12248558 -0.08778034\n", + " -0.05256249 -0.01703747 -0.20759824 -0.20759824 -0.00446412 -0.00446412\n", + " -0.19576354 -0.19542056 -0.19469787 -0.19359884 -0.19212697 -0.19028463\n", + " -0.16159264 -0.16130879 -0.16071144 -0.15980479 -0.15859338 -0.15708053\n", + " -0.12649245 -0.12626898 -0.12579928 -0.12508774 -0.12413931 -0.12295784\n", + " -0.09065756 -0.09049631 -0.09015775 -0.08964573 -0.08896468 -0.0881182\n", + " -0.05428931 -0.05419219 -0.05398843 -0.05368064 -0.05327188 -0.0527647\n", + " -0.01759801 -0.01756642 -0.01750018 -0.01740019 -0.0172675 -0.01710301]\n", + " [ 0.97819328 0.98362986 0.98837785 0.99237552 0.99557136 0.99792406\n", + " 0.99940295 0.99998858 0.97819328 0.97774883 0.97650613 0.97448229\n", + " 0.97170532 0.9682142 0.96405881 0.95929997 0.99998858 0.99949066\n", + " 0.99809825 0.99582966 0.99271451 0.98879307 0.98411589 0.97874367\n", + " 0.95929997 0.9641308 0.96836217 0.97193219 0.97478992 0.97689533\n", + " 0.9782193 0.97874367 0.98064379 0.9868521 0.99196DEBUG:root:radec2pix: camVec: [[ 0.00110855 0.00111823 0.00112655 0.00113349 0.001139 0.00114306\n", + " 0.00114562 0.00114666 0.00110855 0.03013432 0.05904256 0.08772073\n", + " 0.11605724 0.14394136 0.17126266 0.19791015 0.00114666 0.03116962\n", + " 0.06106803 0.09072406 0.1200235 0.1488564 0.17711651 0.20469956\n", + " 0.19791015 0.19966308 0.20115603 0.20238925 0.20336191 0.20407235\n", + " 0.20451873 0.20469956 0.00121266 0.00122459 0.00123428 0.00124164\n", + " 0.00124661 0.00124912 0.01377154 0.04928181 0.08450359 0.11923105\n", + " 0.15326028 0.18638779 0.01424443 0.05097175 0.08739457 0.12330108\n", + " 0.15848878 0.192763 0.19861623 0.2005887 0.20217123 0.20336272\n", + " 0.2041602 0.2045604 0.00120792 0.00120792 0.20460634 0.20460634\n", + " 0.01382559 0.04947523 0.08483539 0.11969997 0.15386543 0.18712908\n", + " 0.01396162 0.04996174 0.08566901 0.1208763 0.15538076 0.1889821\n", + " 0.01407199 0.05035615 0.08634371 0.12182616 0.15660103 0.19047015\n", + " 0.0141DEBUG:root:radec2pix: fitpx: [[4271.49999987 4155.49999987]\n", + " [4271.49999978 3863.07142838]\n", + " [4271.49999978 3570.64285699]\n", + " [4271.50000021 3278.21428583]\n", + " [4271.50000028 2985.78571441]\n", + " [4271.50000021 2693.35714292]\n", + " [4271.50000016 2400.92857146]\n", + " [4271.5 2108.5 ]\n", + " [4271.49999987 4155.49999987]\n", + " [3979.07142882 4155.50000028]\n", + " [3686.64285714 4155.5 ]\n", + " [3394.2142857 4155.49999997]\n", + " [3101.78571428 4155.49999999]\n", + " [2809.35714281 4155.49999986]\n", + " [2516.92857145 4155.50000014]\n", + " [2224.49999999 4155.4999997 ]\n", + " [4271.5 2108.5 ]\n", + " [3979.0714288 2108.50000001]\n", + " [3686.64285693 2108.49999999]\n", + " [3394.21428614 2108.50000002]\n", + " [3101.7857146 2108.50000002]\n", + " [2809.35714263 2108.49999998]\n", + " [2516.92857131 2108.49999998]\n", + " [2224.49999992 2108.49999995]\n", + " [2224.49999999 4155.4999997 ]\n", + " [2224.50000001 3863.07142868]\n", + " [2224.5 3570.64285711]\n", + " [2224.50000002 3278.21428594]\n", + " [2224.50000001 2985.78571436]\n", + " [2224.49999998 2693.35714271]\n", + " [2224.50000001 2400.92857146]\n", + " [2224.4995593 0.05065593 0.08685581 0.12254563 0.15752301 0.1915915\n", + " 0.01421257 0.05085809 0.08720077 0.12302951 0.15814189 0.1923426\n", + " 0.01424114 0.05096003 0.08737459 0.12327308 0.15845303 0.1927197 ]\n", + " [-0.20853555 -0.18105588 -0.15288447 -0.12412547 -0.09488471 -0.06527159\n", + " -0.0353997 -0.00538646 -0.20853555 -0.20838958 -0.2079729 -0.20728684\n", + " -0.20633313 -0.20511339 -0.20362847 -0.2018782 -0.00538646 -0.00538259\n", + " -0.00537156 -0.00535349 -0.00532854 -0.00529689 -0.00525872 -0.00521415\n", + " -0.2018782 -0.17529764 -0.14802765 -0.12017919 -0.09186258 -0.06318839\n", + " -0.03426807 -0.00521415 -0.196646 -0.16248857 -0.12739553 -0.09156092\n", + " -0.05518617 -0.01848208 -0.20841259 -0.20805164 -0.2072855 -0.20611722\n", + " -0.20454967 -0.20258404 -0.00548838 -0.00547863 -0.00545803 -0.00542687\n", + " -0.0053855 -0.0053342 -0.19038695 -0.15733098 -0.12334981 -0.08864677\n", + " -0.05342545 -0.01789151 -0.20844284 -0.20844284 -0.00531377 -0.00531377\n", + " -0.19661746 -0.19627694 -0.19555447 -0.1944535DEBUG:root:mm_to_pix: fitpx: [[0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]]\n", + "368 0.99587944\n", + " 0.99852337 0.99984368 0.97811796 0.97703474 0.97476817 0.97136534\n", + " 0.96689796 0.96146242 0.9998817 0.99866821 0.9961281 0.99231122\n", + " 0.98729166 0.9811667 0.96149301 0.9670196 0.97158296 0.97508476\n", + " 0.9774513 0.97863353 0.97821282 0.97821282 0.97876273 0.97876273\n", + " 0.98054763 0.97944952 0.97715155 0.97370089 0.9691693 0.96365314\n", + " 0.98675268 0.98561714 0.98324039 0.97966996 0.97497788 0.9692605\n", + " 0.9918616 0.99069568 0.9882551 0.98458804 0.979767 0.97388848\n", + " 0.99577532 0.99458621 0.99209707 0.98835673 0.98343837 0.97743873\n", + " 0.99841789 0.9972131 0.99469118 0.99090157 0.985918 0.97983753\n", + " 0.9997375 0.99852487 0.99598656 0.99217236 0.98715635 0.98103576]]\n", + "99992 2108.49999995]\n", + " [4270.5 4028. ]\n", + " [4270.50000018 3669.60000013]\n", + " [4270.49999988 3311.19999993]\n", + " [4270.50000028 2952.80000012]\n", + " [4270.5 2594.4 ]\n", + " [4270.50000006 2236.00000001]\n", + " [4143.99999986 4154.49999985]\n", + " [3785.60000014 4154.50000018]\n", + " [3427.20000004 4154.50000006]\n", + " [3068.8 4154.49999999]\n", + " [2710.39999994 4154.49999977]\n", + " [2351.99999997 4154.49999974]\n", + " [4144.00000019 2109.50000001]\n", + " [3785.59999998 2109.5 ]\n", + " [3427.19999968 2109.49999999]\n", + " [3068.80000035 2109.50000002]\n", + " [2710.39999998 2109.5 ]\n", + " [2351.99999973 2109.49999993]\n", + " [2225.50000001 4028.00000029]\n", + " [2225.50000001 3669.60000014]\n", + " [2225.50000002 3311.20000027]\n", + " [2225.50000003 2952.80000024]\n", + " [2225.49999999 2594.39999997]\n", + " [2225.49999991 2235.99999983]\n", + " [4270.50000028 4154.50000027]\n", + " [4270.50000028 4154.50000027]\n", + " [2225.50000021 2109.50000012]\n", + " [2225.50000021 2109.50000012]\n", + " [4143.99999997 4027.99999997]\n", + " [3785.60000006 4028.00000007]\n", + " [3427.20000002 4028.00000003]\n", + " [3068.8 4028.00000001]\n", + " [2710.40000007 4028.00000025]\n", + " [2352. 4028.00000001]\n", + " [4143.99999988 3669.5999999 ]\n", + " [3785.59999992 3669.59999992]\n", + " [3427.20000003 3669.60000003]\n", + " [3068.79999996 3669.59999994]\n", + " [2710.39999994 3669.59999984]\n", + " [2352.00000003 3669.60000024]\n", + " [4143.99999986 3311.19999992]\n", + " [3785.60000024 3311.20000018]\n", + " [3427.19999985 3311.19999DEBUG:root:mm_to_pix: fitpx.shape: (96, 2)\n", + "DEBUG:root:mm_to_pix: fitpx: [[0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]]\n", + "7 -0.19297773 -0.19112874\n", + " -0.1624649 -0.16218264 -0.16158454DEBUG:root:optics_fp: xyfp: [[32.23341696 31.55141621]\n", + " [32.23194958 27.16498788]\n", + " [32.2304822 22.77855956]\n", + " [32.22901483 18.39213124]\n", + " [32.22754745 14.00570291]\n", + " [32.22608007 9.61927458]\n", + " [32.22461269 5.23284626]\n", + " [32.2231453 0.84641793]\n", + " [32.23341696 31.55141621]\n", + " [27.84698864 31.5528836 ]\n", + " [23.46056031 31.55435097]\n", + " [19.07413198 31.55581835]\n", + " [14.68770366 31.55728573]\n", + " [10.30127533 31.55875311]\n", + " [ 5.91484701 31.56022049]\n", + " [ 1.52841868 31.56168787]\n", + " [32.2231453 0.84641793]\n", + " [27.83671698 0.84788531]\n", + " [23.45028865 0.84935269]\n", + " [19.06386033 0.85082007]\n", + " [14.677432 0.85228745]\n", + " [10.29100367 0.85375483]\n", + " [ 5.90457535 0.85522221]\n", + " [ 1.51814702 0.85668959]\n", + " [ 1.52841868 31.56168787]\n", + " [ 1.5269513 27.17525955]\n", + " [ 1.52548392 22.78883122]\n", + " [ 1.52401654 18.4024029 ]\n", + " [ 1.52254916 14.01597457]\n", + " [ 1.52108178 9.62954624]\n", + " [ 1.5196144 5.24311792]\n", + " [ 1.51814702 0.85668959]\n", + " [32.21777718 29.63892134]\n", + " [32.21597876 24.26292164]\n", + " [32.21418034 18.88692194]\n", + " [32.21238193 13.51092224]\n", + "DEBUG:root:mm_to_pix: fitpx.shape: (96, 2)\n", + "DEBUG:root:optics_fp: rtanth: [31.42709713 27.04074579 22.65442436 18.26815439 13.88198464 9.49605401\n", + " 5.11097808 0.742067 31.42709713 31.75564253 32.6750783 34.13769417\n", + " 36.07748738 38.42225317 41.10274314 44.05772304 0.742067 4.61617395\n", + " 8.97490789 13.35179361 17.73339574 22.11691136 26.50139096 30.88642402\n", + " 44.05772304 41.04415255 38.29678143 35.87681689 33.85454213 32.30472979\n", + " 31.29764563 30.88642402 29.51471971 24.13885305 18.76306281 13.38744101\n", + " 8.01232674 2.64082086 31.48077532 32.28565953 33.93362876 36.31007107\n", + " 39.28300031 42.72809051 2.2117621 7.49776555 12.85860945 18.22838275\n", + " 23.6009913 28.97485798 42.70371969 39.18128664 36.11843741 33.64093596\n", + " 31.88551984 30.97519863 31.41218354 31.41218354 30.87178238 30.87178238\n", + " 29.58771061 30.4426874 32.18516063 34.68161856 37.78289981 41.35315131\n", + " 24.22804504 25.26505023 27.33953387 30.23872042 33.75074911 37.7047566\n", + " 18.87767108 20.19136108 22.73364051 26.14858527 30. [32.21058351 8.13492254]\n", + " [32.20878509 2.75892284]\n", + " [30.32091205 31.53705599]\n", + " [24.94491236 31.53885442]\n", + " [19.56891265 31.54065283]\n", + " [14.19291295 31.54245125]\n", + " [ 8.81691325 31.54424967]\n", + " [ 3.44091356 31.54604808]\n", + " [30.31065043 0.86205771]\n", + " [24.93465073 0.86385613]\n", + " [19.55865103 0.86565455]\n", + " [14.18265134 0.86745297]\n", + " [ 8.80665163 0.86925139]\n", + " [ 3.43065193 0.8710498 ]\n", + " [ 1.5427789 29.64918296]\n", + " [ 1.54098048 24.27318326]\n", + " [ 1.53918206 18.89718357]\n", + " [ 1.53738364 13.52118387]\n", + " [ 1.53558522 8.14518416]\n", + " [ 1.5337868 2.76918446]\n", + " [32.21841195 31.53642123]\n", + " [32.21841195 31.53642123]\n", + " [ 1.53315204 0.87168457]\n", + " [ 1.53315204 0.87168457]\n", + " [30.32027729 29.6395561 ]\n", + " [24.94427759 29.64135452]\n", + " [19.56827789 29.64315294]\n", + " [14.19227819 29.64495136]\n", + " [ 8.81627849 29.64674978]\n", + " [ 3.44027879 29.6485482 ]\n", + " [30.31847887 24.2635564 ]\n", + " [24.94247917 24.26535482]\n", + " [19.56647947 24.26715324]\n", + " [14.19047977 24.26895166]\n", + " [ 8.81448007 24.27075007]\n", + " [ 3.43848037 24.2725485 ]\n", + " [30.31668045 18.8875567 ]\n", + " DEBUG:root:radec2pix: xyfp: [[-32.31281793 -31.43806373]\n", + " [-32.31091541 -27.05163558]\n", + " [-32.30901287 -22.66520742]\n", + " [-32.30711034 -18.27877926]\n", + " [-32.3052078 -13.8923511 ]\n", + " [-32.30330527 -9.50592294]\n", + " [-32.30140274 -5.11949478]\n", + " [-32.2995002 -0.73306663]\n", + " [-32.31281793 -31.43806373]\n", + " [-27.92638978 -31.43996627]\n", + " [-23.53996162 -31.4418688 ]\n", + " [-19.15353346 -31.44377134]\n", + " [-14.7671053 -31.44567387]\n", + " [-10.38067715 -31.44757641]\n", + " [ -5.99424899 -31.44947894]\n", + " [ -1.60782083 -31.45138147]\n", + " [-32.2995002 -0.73306663]\n", + " [-27.91307204 -0.73496916]\n", + " [-23.52664389 -0.73687169]\n", + " [-19.14021573 -0.73877423]\n", + " [-14.75378757 -0.74067676]\n", + " [-10.36735941 -0.74257929]\n", + " [ -5.98093125 -0.74448183]\n", + " [ -1.59450309 -0.74638436]\n", + " [ -1.60782083 -31.45138147]\n", + " [ -1.60591829 -27.06495331]\n", + " [ -1.60401576 -22.67852516]\n", + " [ -1.60211323 -18.292097 ]\n", + " [ -1.60021069 -13.90566884]\n", + " [ -1.59830816 -9.51924068]\n", + " [ -1.59640563 -5.13281252]\n", + " [ -1.59450309 -0.74638436]\n", + " [-32.29698843 -29.52557043]\n", + " [-32.29465669 DEBUG:root:make_az_asym: xyp: [[-32.203794 -31.5506227 ]\n", + " [-32.20328688 -27.16419416]\n", + " [-32.20277976 -22.77776561]\n", + " [-32.20227264 -18.39133707]\n", + " [-32.20176553 -14.00490853]\n", + " [-32.20125841 -9.61847999]\n", + " [-32.20075129 -5.23205144]\n", + " [-32.20024417 -0.8456229 ]\n", + " [-32.203794 -31.5506227 ]\n", + " [-27.81736545 -31.55112981]\n", + " [-23.43093691 -31.55163693]\n", + " [-19.04450837 -31.55214405]\n", + " [-14.65807983 -31.55265117]\n", + " [-10.27165129 -31.55315829]\n", + " [ -5.88522274 -31.5536654 ]\n", + " [ -1.4987942 -31.55417252]\n", + " [-32.20024417 -0.8456229 ]\n", + " [-27.81381563 -0.84613002]\n", + " [-23.42738708 -0.84663714]\n", + " [-19.04095854 -0.84714426]\n", + " [-14.65453 -0.84765137]\n", + " [-10.26810146 -0.84815849]\n", + " [ -5.88167292 -0.84866561]\n", + " [ -1.49524438 -0.84917273]\n", + " [ -1.4987942 -31.55417252]\n", + " [ -1.49828708 -27.16774398]\n", + " [ -1.49777997 -22.78131544]\n", + " [ -1.49727285 -18.39488689]\n", + " [ -1.49676573 -14.00845835]\n", + " [ -1.49625861 -9.62202981]\n", + " [ -1.49575149 -5.23560127]\n", + " [ -1.49524438 -0.84917273]\n", + " [-32.18857289 -29.63812445]\n", + " [-32.1879513 -0.16067502 -0.15945889 -0.15793949\n", + " -0.12737685 -0.12715419 -0.12668294 -0.12596768 -0.12501365 -0.12382499\n", + " -0.0915474 -0.09138626 -0.09104555 -0.09052922 -0.08984197 -0.08898771\n", + " -0.05517797 -0.05508029 -0.05487388 -0.05456144 -0.05414617 -0.05363087\n", + " -0.01847933 -0.01844651 -0.01837718 -0.0182723 -0.018133 -0.01796031]\n", + " [ 0.97801416 0.98347217 0.98824343 0.99226588 0.99548762 0.99786688\n", + " 0.99937258 0.99998484 0.97801416 0.97758156 0.97635099 0.97433939\n", + " 0.97157468 0.96809575 0.96395256 0.95920632 0.99998484 0.99949962\n", + " 0.99811915 0.99586168 0.99275675 0.98884464 0.98417584 0.97881096\n", + " 0.95920632 0.96405674 0.9683099 0.97190306 0.97478469 0.97691438\n", + " 0.97826264 0.97881096 0.9804738 0.98670967 0.99185123 0.9957987\n", + " 0.9984753 0.99982841 0.97794404 0.97687554 0.97462396 0.97123615\n", + " 0.9667837 0.96136325 0.99988348 0.99868507 0.99615882 0.99235447\n", + " 0.98734609 0.98123085 0.96140751 0.96695974 0.97155114 0.97508223\n", + " 0.97747856 0.97869042 0.97803381 0.97803381 0.97882992 0.97882992\n", + " 0.9803828 0.97929953 0.97701659 0.97358088 0.96906399 0.96356241\n", + " 0.98661554 0.98549511 0.98313339 0.97957769 0.97489983 0.969196\n", + " 0.99175456 0.99060389 0.98817822 0.98452554 0.97971818 0.9738524\n", + " 0.9957001 0.99452628 0.9920518 0.98832537 0.98342001 0.97743229\n", + " 0.99837538 0.99718585 0.99467828 0.99090201 0.9859307 0.97986124\n", + " 0.99972782 0.99853032 0.996006 0.99220455 0.9872 0.98108947]]\n", + "14102461 34.5111137\n", + " 13.54760187 15.32521169 18.5469529 22.60352987 27.12291311 31.90905859\n", + " 8.27715649 10.94695923 15.13153214 19.89706928 24.91237079 30.05265085\n", + " 3.35974322 7.91280426 13.10495402 18.40298673 23.73610696 29.08501983]\n", + "DEBUG:root:radec2pix: camVec Shape: (3, 96)\n", + "6 -24.26212448]\n", + " [-32.18732984 -18.88612452]\n", + " [-32.18670832 -13.51012455]\n", + " [-32.1860868 -8.13412459]\n", + " [-32.18546528 -2.75812462]\n", + " [-30.29129227 -31.5358438 ]\n", + " [-24.91529231 -31.53646533]\n", + " [-19.5392DEBUG:root:radec2pix: camVec Shape: (3, 96)\n", + "9235 -31.53708685]\n", + " [-14.16329238 -31.53770837]\n", + " [ -8.78729242 -31.53832989]\n", + " [ -3.41129245 -31.53895142]\n", + " [-30.28774592 -0.86084401]\n", + " [-24.91174595 -0.86146553]\n", + " [-19.53574599 -0.86208705]\n", + " [-14.15974603 -0.86270858]\n", + " [ -8.78374606 -0.8633301 ]\n", + " [ -3.4077461 -0.86395162]\n", + " [ -1.5135731 -29.6416708 ]\n", + " [ -1.51295157 -24.26567084]\n", + " [ -1.51233005 -18.88967087]\n", + " [ -1.51170853 -13.51367091]\n", + " [ -1.51108701 -8.13767095]\n", + " [ -1.51046548 -2.76167097]\n", + " [-32.18879227 -31.53562444]\n", + " [-32.18879227 -31.53562444]\n", + " [ -1.51024611 -0.86417099]\n", + " [ -1.51024611 -0.86417099]\n", + " [-30.29107291 -29.63834382]\n", + " [-24.91507294 -29.63896534]\n", + " [-19.53907298 -29.63958686]\n", + " [-14.16307301 -29.64020839]\n", + " [ -8.78707305 -29.64082991]\n", + " [ -3.41107308 -29.64145143]\n", + " [-30.29045138 -24.26234385]\n", + " [-24.91445142 -24.26296538]\n", + " [-19.53845145 -24.2635869 ]\n", + " [-14.16245149 -24.26420842]\n", + " [ -8.78645152 -24.26482994]\n", + " [ -3.41045156 -24.26545147]\n", + " [-30.28982986 -18.88634389]\n", + " [-24.91382989 -18.88696541]\n", + " [-19.53782993 -18.88758693]\n", + " [-14.16182997 -18.88820846]\n", + " [ -8.78583 -18.88882997]\n", + " [ -3.40983004 -18.8894515 ]\n", + " [-30.28920834 -13.51034392]\n", + " [-24.91320837 -13.51096545]\n", + " [-19.53720841 -13.51158697]\n", + " [-14.16120844 -13.51220849]\n", + " [ -8.78520848 -13.51283002]\n", + " [ -3.40920852 -13.51345154]\n", + " [-30.28858681 -8.13434396]\n", + " [-24.91258685 -8.13496548]\n", + " [-19.53658688 -8.135587 ]\n", + " [-14.16058692 -8.13620852]\n", + " [ -8.78458696 -8.13683005]\n", + " [ -3.40858699 -8.13745157]\n", + " [-30.28796529 -2.75834399]\n", + " [-24.91196532 -2.75896552]\n", + " [-19.53596536 -2.75958704]\n", + " [-14.1599654 -2.76020856]\n", + " [ -8.78396543 -2.76083009]\n", + " [ -3.40796547 -2.76145161]]\n", + "-24.14957093]\n", + " [-32.29232495 -18.77357144]\n", + " [-32.2899932 -13.39757194]\n", + " [-32.28766146 -8.02157244]\n", + " [-32.28532972 -2.64557295]\n", + " [-30.40031161 -31.42389325]\n", + " [-25.02431212 -31.42622499]\n", + " [-19.64831262 -31.42855673]\n", + " [-14.27231313 -31.43088848]\n", + " [ -8.89631363 -31.43322022]\n", + " [ -3.52031414 -31.43555196]\n", + " [-30.38700689 -0.74889614]\n", + " [-25.01100739 -0.75122788]\n", + " [-19.6350079 -0.75355962]\n", + " [-14.25900841 -0.75589136]\n", + " [ -8.88300892 -0.7582231 ]\n", + " [ -3.50700942 -0.76055484]\n", + " [ -1.62199131 -29.53887515]\n", + " [ -1.61965957 -24.16287565]\n", + " [ -1.61732783 -18.78687616]\n", + " [ -1.61499609 -13.41087666]\n", + " [ -1.61266434 -8.03487716]\n", + " [ -1.6103326 -2.65887768]\n", + " [-32.29781143 -31.42307024]\n", + " [-32.29781143 -31.42307024]\n", + " [ -1.60950959 -0.76137785]\n", + " [ -1.60950959 -0.76137785]\n", + " [-30.3994886 -29.52639343]\n", + " [-25.02348911 -29.52872517]\n", + " [-19.64748962 -29.53105692]\n", + " [-14.27149012 -29.53338866]\n", + " [ -8.89549063 -29.5357204 ]\n", + " [ -3.51949113 -29.53805214]\n", + " [-30.39715686 -24.15039394]\n", + " [-25.02115737 -24.15272568]\n", + " [-19.64515788 -24.15505742]\n", + " [-14.26915838 -24.15738916]\n", + " [ -8.89315889 -24.1597209 ]\n", + " [ -3.51715939 -24.16205264]\n", + " [-30.39482512 -18.77439444]\n", + " [-25.01882563 -18.77672618]\n", + " [-19.64282613 -18.77905793]\n", + " [-14.26682664 -18.78138967]\n", + " [ -8.89082714 -18.78372141]\n", + " [ -3.51482765 -18.78605315]\n", + " [-30.39249338 -13.39839495]\n", + " [-25.01649389 -13.400[24.94068075 18.88935513]\n", + " [19.56468105 18.89115354]\n", + " [14.18868135 18.89295196]\n", + " [ 8.81268165 18.89475038]\n", + " [ 3.43668195 18.89654879]\n", + " [30.31488203 13.51155701]\n", + " [24.93888233 13.51335542]\n", + " [19.56288263 13.51515384]\n", + " [14.18688293 13.51695226]\n", + " [ 8.81088324 13.51875068]\n", + " [ 3.43488354 13.5205491 ]\n", + " [30.31308361 8.13555731]\n", + " [24.93708392 8.13735572]\n", + " [19.56108422 8.13915414]\n", + " [14.18508451 8.14095256]\n", + " [ 8.80908482 8.14275098]\n", + " [ 3.43308512 8.1445494 ]\n", + " [30.31128519 2.75955761]\n", + " [24.93528549 2.76135602]\n", + " [19.5592858 2.76315444]\n", + " [14.18328609 2.76495286]\n", + " [ 8.8072864 2.76675128]\n", + " [ 3.4312867 2.7685497 ]]\n", + "DEBUG:root:make_az_asym: xyp: shape: (96, 2)\n", + "72669]\n", + " [-19.64049439 -13.40305843]\n", + " [-14.2644949 -13.40539017]\n", + " [ -8.8884954 -13.40772191]\n", + " [ -3.51249591 -13.41005365]\n", + " [-30.39016163 -8.02239545]\n", + " [-25.01416214 -8.02472719]\n", + " [-19.63816265 -8.02705893]\n", + " [-14.26216315 -8.02939068]\n", + " [ -8.88616366 -8.03172242]\n", + " [ -3.51016417 -8.03405416]\n", + " [-30.3878299 -2.64639596]\n", + " [-25.0DEBUG:root:radec2pix: xyfp: [[-32.208296 -31.60697943]\n", + " [-32.20831882 -27.22055086]\n", + " [-32.20834163 -22.83412229]\n", + " [-32.20836444 -18.44769372]\n", + " [-32.20838725 -14.06126515]\n", + " [-32.20841007 -9.67483658]\n", + " [-32.20843288 -5.288408 ]\n", + " [-32.2084557 -0.90197943]\n", + " [-32.208296 -31.60697943]\n", + " [-27.82186743 -31.60695662]\n", + " [-23.43543886 -31.60693381]\n", + " [-19.04901029 -31.60691099]\n", + " [-14.66258171 -31.60688818]\n", + " [-10.27615314 -31.60686536]\n", + " [ -5.88972457 -31.60684255]\n", + " [ -1.503296 -31.60681974]\n", + " [-32.2084557 -0.90197943]\n", + " [-27.82202712 -0.90195662]\n", + " [-23.43559855 -0.9019338 ]\n", + " [-19.04916999 -0.90191099]\n", + " [-14.66274141 -0.90188818]\n", + " [-10.27631284 -0.90186536]\n", + " [ -5.88988428 -0.90184255]\n", + " [ -1.5034557 -0.90181973]\n", + " [ -1.503296 -31.60681974]\n", + " [ -1.50331881 -27.22039116]\n", + " [ -1.50334163 -22.83396259]\n", + " [ -1.50336444 -18.44753402]\n", + " [ -1.50338726 -14.06110544]\n", + " [ -1.50341007 -9.67467688]\n", + " [ -1.50343288 -5.2882483 ]\n", + " [ -1.5034557 -0.90181973]\n", + " [-32.19330594 -29.69447935]\n", + " [-32.19333391 -24.31847935]\n", + " [-32.19336187 -18.94247936]\n", + " [-32.19338983 -13.56647936]\n", + " [-32.19341779 -8.19047935]\n", + " [-32.19344575 -2.81447935]\n", + " [-30.29579608 -31.59196949]\n", + " [-24.91979608 -31.59194152]\n", + " [-19.54379608 -31.59191356]\n", + " [-14.16779608 -31.5918856 ]\n", + " [ -8.79179608 -31.59185764]\n", + " [ -3.41579608 -31.59182968]\n", + " [-30.29595562 -0.91696949]\n", + " [-24.91995562 -0.91694153]\n", + " [-19.54395562 -0.91691356]\n", + " [-14.16795562 -0.9168856 ]\n", + " [ -8.79195562 -0.91685764]\n", + " [ -3.41595563 -0.91682968]\n", + " [ -1.51830595 -29.69431981]\n", + " [ -1.51833391 -24.31831981]\n", + " [ -1.51836187 -18.94231981]\n", + " [ -1.51838983 -13.56631981]\n", + " [ -1.51841779 -8.19031981]\n", + " [ -1.51844575 -2.81431982]\n", + " [-32.19329608 -31.59197936]\n", + " [-32.19329608 -31.59197936]\n", + " [ -1.51845562 -0.91681981]\n", + " [ -1.51845562 -0.91681981]\n", + " [-30.29580595 -29.69446949]\n", + " [-24.91980594 -29.69444152]\n", + " [-19.54380595 -29.69441356]\n", + " [-14.16780595 -29.69438561]\n", + " [ -8.79180595 -29.69435764]\n", + " [ -3.41580595 -29.69432968]\n", + " [-30.29583391 -24.31846949]\n", + " [-24.91983391 -24.31844152]\n", + " [-19.54383391 -24.31841356]\n", + " [-14.16783391 -24.31838561]\n", + " [ -8.79183391 -24.31835764]\n", + " [ -3.41583391 -24.31832968]\n", + " [-30.29586187 -18.94246949]\n", + " [-24.91986187 -18.94244153]\n", + " [-19.54386187 -18.94241356]\n", + " [-14.16786187 -18.94238561]\n", + " [ -8.79186187 -18.94235764]\n", + " [ -3.41586187 -18.94232969]\n", + " [-30.29588983 -13.56646949]\n", + " [-24.91988983 -13.56644152]\n", + " [-19.54388984 -13.56641357]\n", + " [-14.16788983 -13.5663856 ]\n", + " [ -8.79188983 -13.56635764]\n", + " [ -3.41588983 -13.56632968]\n", + " [-30.29591779 -8.19046949]\n", + " [-24.91991779 -8.19044152]\n", + " [-19.54391779 -8.19041356]\n", + " [-14.16791779 -8.1903856 ]\n", + " [ -8.79191779 -8.19035764]\n", + " [ -3.41591779 -8.19032968]\n", + " [-30.29594575 -2.81446949]\n", + " [-24.91994576 -2.81444153]\n", + " [-19.54394575 -2.81441356]\n", + " [-14.16794576 -2.8143856 ]\n", + " [ -8.79194575 -2.81435764]\n", + " [ -3.41594575 -2.81432968]]\n", + "1183041 -2.6487277 ]\n", + " [-19.63583091 -2.65105944]\n", + " [-14.25983141 -2.65339118]\n", + " [ -8.88383191 -2.65572292]\n", + " [ -3.50783243 -2.65805467]]\n", + "DEBUG:root:optics_fp: cphi: [0.00550458 0.006397DEBUG:root:optics_fp: xyfp shape: (96, 2)\n", + "49 0.00763617 0.00946965 0.01246169 0.01821736\n", + " 0.03384734 0.23312315 0.00550458 0.14357831 0.27378206 0.39054421\n", + " 0.49112919 0.57532118 0.64452059 0.70085313 0.23312315 0.98770575\n", + " 0.99676233 0.99853841 0.99917171 0.99946758 0.99962921 0.99972703\n", + " 0.70085313 0.75231162 0.80628167 0.86066702 0.91207829 0.95583505\n", + " 0.98659156 0.99972703 0.00636947 0.00778798 0.01001931 0.01404249\n", + " 0.02346297 0.07118734 0.06624656 0.23110858 0.37831182 0.50160995\n", + " 0.60050131 0.67790282 0.94291018 0.99516222 0.9983578 0.99918316\n", + " 0.9995128 0.99967679 0.72272376 0.78769728 0.85449414 0.91742373\n", + " 0.96793131 0.99637757 0.00598472 0.00598472 0.99971529 0.99971529\n", + " 0.07048511 0.24509968 0.39886372 0.52516272 0.62434311 0.70044222\n", + " 0.08607764 0.29532864 0.46955786 0.60232354 0.69893243 0.76821854\n", + " 0.11047406 0.36953888 0.56469148 0.69653837 0.7826374 0.83930914\n", + " 0.15393817 0.48687699 0.69216184 0.80578092 0.86972564 0.90775141\n", + " 0.25195766 0.68160416 0.84839347 0.91538572 0.94689876 0.96382489\n", + " 0.62072988 0.94296444 0.97959085 0.9897031 0.99382317 0.99589043]\n", + "985]\n", + " [3068.80000018 3311.20000023]\n", + " [2710.39999997 3311.19999993]\n", + " [2351.99999998 3311.19999989]\n", + " [4144.00000009 2952.80000004]\n", + " [3785.60000017 2952.80000009]\n", + " [3427.19999999 2952.79999999]\n", + " [3068.79999994 2952.79999994]\n", + " [2710.40000012 2952.80000019]\n", + " [2351.99999999 2952.79999997]\n", + " [4143.99999998 2594.4 ]\n", + " [3785.60000016 2594.40000005]\n", + " [3427.20000028 2594.40000012]\n", + " [3068.79999967 2594.39999981]\n", + " [2710.40000007 2594.40000006]\n", + " [2351.99999992 2594.39999981]\n", + " [4143.99999971 2235.99999997]\n", + " [3785.59999981 2235.99999998]\n", + " [3427.2 2236. ]\n", + " [3068.79999989 2235.99999998]\n", + " [2710.40000023 2236.00000007]\n", + " [2352.00000024 2236.00000019]]\n", + "DEBUG:root:radec2pix: xyfp: [[ -0.230877 31.363511 ]\n", + " [ -0.230877 26.97708243]\n", + " [ -0.230877 22.59065386]\n", + " [ -0.230877 18.20422528]\n", + " [ -0.230877 13.81779671]\n", + " [ -0.230877 9.43136815]\n", + " [ -0.230877 5.04493957]\n", + " [ -0.230877 0.658511 ]\n", + " [ -0.230877 31.363511 ]\n", + " [ -4.61730557 31.363511 ]\n", + " [ -9.00373414 31.363511 ]\n", + " [-13.39016272 31.363511 ]\n", + " [-17.77659129 31.363511 ]\n", + " [-22.16301986 31.363511 ]\n", + " [-26.54944843 31.363511 ]\n", + " [-30.935877 31.363511 ]\n", + " [ -0.230877 0.658511 ]\n", + " [ -4.61730558 0.658511 ]\n", + " [ -9.00373414 0.658511 ]\n", + " [-13.39016271 0.658511 ]\n", + " [-17.77659128 0.658511 ]\n", + " [-22.16301986 0.658511 ]\n", + " [-26.54944843 0.658511 ]\n", + " [-30.935877 0.658511 ]\n", + " [-30.935877 31.363511 ]\n", + " [-30.935877 26.97708243]\n", + " [-30.935877 22.59065386]\n", + " [-30.935877 18.20422528]\n", + " [-30.935877 13.81779671]\n", + " [-30.935877 9.43136814]\n", + " [-30.935877 5.04493957]\n", + " [-30.935877 0.658511 ]\n", + " [ -0.245877 29.451011 ]\n", + " [ -0.245877 24.075011 ]\n", + " [ -0.245877 18.699011 ]\n", + " [ -0.245877 13.323011 ]\n", + " [ -0.245877 7.947011 ]\n", + " [ -0.245877 2.571011 ]\n", + " [ -2.143377 31.348511 ]\n", + " [ -7.519377 31.348511 ]\n", + " [-12.895377 31.348511 ]\n", + " [-18.271377 31.348511 ]\n", + " [-23.647377 31.348511 ]\n", + " [-29.023377 31.348511 ]\n", + " [ -2.143377 0.673511 ]\n", + " [ -7.519377 0.673511 ]\n", + " [-12.895377 0.673511 ]\n", + " [-18.271377 0.673511 ]\n", + " [-23.64737701 0.673511 ]\n", + " [-29.023377 0.673511 ]\n", + " [-30.920877 29.451011 ]\n", + " [-30.920877 24.075011 ]\n", + " [-30.920877 18.699011 ]\n", + " [-30.920877 13.323011 ]\n", + " [-30.920877 7.947011 ]\n", + " [-30.920877 2.571011 ]\n", + " [ -0.245877 31.348511 ]\n", + " [ -0.245877 31.348511 ]\n", + " [-30.920877 0.673511 ]\n", + " [-30.920877 0.673511 ]\n", + " [ -2.143377 29.451011 ]\n", + " [ -7.519377 29.451011 ]\n", + " [-12.895377 29.451011 ]\n", + " [-18.271377 29.451011 ]\n", + " [-23.647377 29.451011 ]\n", + " [-29.023377 29.451011 ]\n", + " [ -2.143377 24.075011 ]\n", + " [ -7.519377 24.075011 ]\n", + " [-12.895377 24.075011 ]\n", + " [-18.271377 24.075011 ]\n", + " [-23.647377 24.075011 ]\n", + " [-29.023377 24.075011 ]\n", + " [ -2.143377 18.699011 ]\n", + " [ -7.519377 18.699011 ]\n", + " [-12.895377 18.699011 ]\n", + " [-18.271377 18.699011 ]\n", + " [-23.647377 18.699011 ]\n", + " [-29.023377 18.699011 ]\n", + " [ -2.143377 13.323011 ]\n", + " [ -7.519377 13.323011 ]\n", + " [-12.895377 13.323011 ]\n", + " [-18.271377 13.323011 ]\n", + " [-23.647377 13.323011 ]\n", + " [-29.023377 13.323011 ]\n", + " [ -2.143377 7.947011 ]\n", + " [ -7.519377 7.947011 ]\n", + " [-12.895377 7.947011 ]\n", + " [-18.271377 7.947011 ]\n", + " [-23.647377 7.947011 ]\n", + " [-29.023377 7.947011 ]\n", + " [ -2.143377 2.571011 ]\n", + " [ -7.519377 2.571011 ]\n", + " [-12.895377 2.571011 ]\n", + " [-18.271377 2.571011 ]\n", + " [-23.647377 2.571011 ]\n", + " [-29.023377 2.571011 ]]\n", + "DEBUG:root:optics_fp: sphi: [-0.99998485 -0.99997954 -0.99997084 -0.99995516 -0.99992235 -0.99983405\n", + " -0.99942701 -0.97244722 -0.99998485 -0.98963896 -0.96179176 -0.92058417\n", + " -0.87108674 -0.81792759 -0.76458695 -0.71330561 -0.97244722 -0.15632448\n", + " -0.08040428 -0.05404675 -0.04069277 -0.03262757 -0.02722955 -0.0233637\n", + " -0.71330561 -0.65880742 -0.59153179 -0.50916823 -0.41001608 -0.29390365\n", + " -0.16320875 -0.0233637 -0.99997971 -0.99996967 -0.99994981 -0.9999014\n", + " -0.99972471 -0.99746296 -0.99780328 -0.97292796 -0.92567822 -0.8650939\n", + " -0.79962377 -0.73515153 -0.33304712 -0.0982454 -0.05728621 -0.04041066\n", + " -0.03121144 -0.02542276 -0.69113701 -0.61606249 -0.51946104 -0.39791167\n", + " -0.251215 -0.08503968 -0.99998209 -0.99998209 -0.02386066 -0.02386066\n", + " -0.99751283 -0.96949788 -0.91701021 -0.85100183 -0.78115023 -0.71370911\n", + " -0.99628843 -0.95539573 -0.8829017 -0.79825206 -0.71518771 -0.64018769\n", + " -0.99387901 -0.92921527 -0.82530209 -0.71751954 -0.62247788 -0.54365446\n", + " -0.98808048 -0.87347054 -0.72174233 -0.59221374 -0.49353552 -0.41950849\n", + " -0.96773826 -0.7317211 -0.52936616 -0.40257793 -0.32153186 -0.26653625\n", + " -0.7840245 -0.33289349 -0.20100193 -0.14313552 -0.11097528 -0.09056624]\n", + "DEBUG:root:radec2pix: xyfp: [[-32.203794 -31.5506227 ]\n", + " [-32.20328688 -27.16419416]\n", + " [-32.20277976 -22.77776561]\n", + " [-32.20227264 -18.39133707]\n", + " [-32.20176553 -14.00490853]\n", + " [-32.20125841 -9.61847999]\n", + " [-32.20075129 -5.23205144]\n", + " [-32.20024417 -0.8456229 ]\n", + " [-32.203794 -31.5506227 ]\n", + " [-27.81736545 -31.55112981]\n", + " [-23.43093691 -31.55163693]\n", + " [-19.04450837 -31.55214405]\n", + " [-14.65807983 -31.55265117]\n", + " [-10.27165129 -31.55315829]\n", + " [ -5.88522274 -31.5536654 ]\n", + " [ -1.4987942 -31.55417252]\n", + " [-32.20024417 -0.8456229 ]\n", + " [-27.81381563 -0.84613002]\n", + " [-23.42738708 -0.84663714]\n", + " [-19.04095854 -0.84714426]\n", + " [-14.65453 -0.84765137]\n", + " [-10.26810146 -0.84815849]\n", + " [ -5.88167292 -0.84866561]\n", + " [ -1.49524438 -0.84917273]\n", + " [ -1.4987942 -31.55417252]\n", + " [ -1.49828708 -27.16774398]\n", + " [ -1.49777997 -22.78131544]\n", + " [ -1.49727285 -18.39488689]\n", + " [ -1.49676573 -14.00845835]\n", + " [ -1.49625861 -9.62202981]\n", + " [ -1.49575149 -5.23560127]\n", + " [ -1.49524438 -0.84917273]\n", + " [-32.18857289 -29.63812445]\n", + " [-32.18795136 -24.26212448]\n", + " [-32.18732984 -18.88612452]\n", + " [-32.18670832 -13.51012455]\n", + " [-32.1860868 -8.13412459]\n", + " [-32.18546528 -2.75812462]\n", + " [-30.29129227 -31.5358438 ]\n", + " [-24.91529231 -31.53646533]\n", + " [-19.53929235 -31.53708685]\n", + " [-14.16329238 -31.53770DEBUG:root:cartToSphere: vec: [[ 0.00152888 -0.20769103 0.97819328]\n", + " [ 0.00154215 -0.1801941 0.98362986]\n", + " [ 0.00155354 -0.15200928 0.98837785]\n", + " [ 0.00156302 -0.12324112 0.99237552]\n", + " [ 0.00157054 -0.09399571 0.99557136]\n", + " [ 0.00157606 -0.06438234 0.99792406]\n", + " [ 0.00157952 -0.03451442 0.99940295]\n", + " [ 0.00158089 -0.00450904 0.99998858]\n", + " [ 0.00152888 -0.20769103 0.97819328]\n", + " [ 0.03055413 -0.20754198 0.97774883]\n", + " [ 0.0594604 -0.20712371 0.97650613]\n", + " [ 0.08813528 -0.20643751 0.97448229]\n", + " [ 0.11646734 -0.2054851 0.97170532]\n", + " [ 0.14434605 -0.20426815 0.9682142 ]\n", + " [ 0.17166149 -0.20278791 0.96405881]\n", + " [ 0.1983039 -0.2010451 0.95929997]\n", + " [ 0.00158089 -0.00450904 0.99998858]\n", + " [ 0.03159291 -0.00450572 0.99949066]\n", + " [ 0.06147904 -0.00449643 0.99809825]\n", + " [ 0.0911219 -0.00448126 0.99582966]\n", + " [ 0.12040769 -0.00446035 0.99271451]\n", + " [ 0.14922671 -0.00443385 0.98879307]\n", + " [ 0.17747265 -0.00440189 0.98411589]\n", + " [ 0.2050409 -0.00436457 0.97874367]\n", + " [ 0.1983039 -0.2010451 0.95929837]\n", + " [ -8.78729242 -31.53832989]\n", + " [ -3.41129245 -31.53895142]\n", + " [-30.28774592 -0.86084401]\n", + " [-24.91174595 -0.86146553]\n", + " [-19.53574599 -0.86208705]\n", + " [-14.15974603 -0.86270858]\n", + " [ -8.78374606 -0.8633301 ]\n", + " [ -3.4077461 -0.86395162]\n", + " [ -1.5135731 -29.6416708 ]\n", + " [ -1.51295157 -24.26567084]\n", + " [ -1.51233005 -18.88967087]\n", + " [ -1.51170853 -13.51367091]\n", + " [ -1.51108701 -8.13767095]\n", + " [ -1.51046548 -2.76167097]\n", + " [-32.18879227 -31.53562444]\n", + " [-32.18879227 -31.53562444]\n", + " [ -1.51024611 -0.86417099]\n", + " [ -1.51024611 -0.86417099]\n", + " [-30.29107291 -29.63834382]\n", + " [-24.91507294 -29.63896534]\n", + " [-19.53907298 -29.63958686]\n", + " [-14.16307301 -29.64020839]\n", + " [ -8.78707305 -29.64082991]\n", + " [ -3.41107308 -29.64145143]\n", + " [-30.29045138 -24.26234385]\n", + " [-24.91445142 -24.26296538]\n", + " [-19.53845145 -24.2635869 ]\n", + " [-14.16245149 -24.26420842]\n", + " [ -8.78645152 -24.26482994]\n", + " [ -3.41045156 -24.26545147]\n", + " [-30.28982986 -18.88634389]\n", + " [-24.91382989 -18.88696541]\n", + " [-19.53782993 -18.88758693]\n", + " [-14.16182997 -18.88820846]\n", + " [ -8.785997]\n", + " [ 0.20004855 -0.17444879 0.9641308 ]\n", + " [ 0.20153434 -0.14716869 0.96836217]\n", + " [ 0.2027606 -0.11931453 0.97193219]\n", + " [ 0.20372608 -0.09099614 0.97478992]\n", + " [ 0.20442907 -0.06232394 0.97689533]\n", + " [ 0.20486781 -0.03340929 0.9782193 ]\n", + " [ 0.2050409 -0.00436457 0.97874367]\n", + " [ 0.00163462 -0.1957935 0.98064379]\n", + " [ 0.00165059 -0.16161745 0.9868521 ]\n", + " [ 0.00166353 -0.12651199 0.99196368]\n", + " [ 0.00167335 -0.09067166 0.99587944]\n", + " [ 0.00167995 -0.05429781 0.99852337]\n", + " [ 0.00168324 -0.01760077 0.99984368]\n", + " [ 0.01419184 -0.20756647 0.97811796]\n", + " [ 0.04970047 -0.20720276 0.97703474]\n", + " [ 0.08491857 -0.20643606 0.97476817]\n", + " [ 0.11964057 -0.20526936 0.97136534]\n", + " [ 0.15366298 -0.20370571 0.96689796]\n", + " [ 0.18678351 -0.20174719 0.96146242]\n", + " [ 0.01467408 -0.00461102 0.9998817 ]\n", + " [ 0.05138704 -0.00460274 0.99866821]\n", + " [ 0.08779394 -0.00458538 0.9961281 ]\n", + " [ 0.12368372 -0.00455917 0.99231122]\n", + " [ 0.15885436 -0.0045244 0.98729166]\n", + " [ 0.19311093 -0.0044813 0.9811667 ]\n", + " [ 0.19900616 -0.189DEBUG:root:radec2pix: ccdpx: [[-4.45000000e+01 -5.00000033e-01]\n", + " [-4.45000003e+01 2.91928571e+02]\n", + " [-4.45000002e+01 5.84357143e+02]\n", + " [-4.44999998e+01 8.76785714e+02]\n", + " [-4.44999998e+01 1.16921429e+03]\n", + " [-4.45000001e+01 1.46164286e+03]\n", + " [-4.44999997e+01 1.75407143e+03]\n", + " [-4.45000002e+01 2.04650000e+03]\n", + " [-4.45000000e+01 -5.00000033e-01]\n", + " [ 2.47928571e+02 -4.99999990e-01]\n", + " [ 5.40357143e+02 -5.00000111e-01]\n", + " [ 8.32785714e+02 -5.00000066e-01]\n", + " [ 1.12521429e+03 -4.99999995e-01]\n", + " [ 1.41764286e+03 -5.00000140e-01]\n", + " [ 1.71007143e+03 -5.00000040e-01]\n", + " [ 2.00250000e+03 -5.00000296e-01]\n", + " [-4.45000002e+01 2.04650000e+03]\n", + " [ 2.47928572e+02 2.04650000e+03]\n", + " [ 5.40357143e+02 2.04650000e+03]\n", + " [ 8.32785714e+02 2.04650000e+03]\n", + " [ 1.12521429e+03 2.04650000e+03]\n", + " [ 1.41764286e+03 2.04650000e+03]\n", + " [ 1.71007143e+03 2.04650000e+03]\n", + " [ 2.00250000e+03 2.04650000e+03]\n", + " [ 2.00250000e+03 -5.00000296e-01]\n", + " [ 2.00250000e+03 2.91928572e+02]\n", + " [ 2.00250000e+03 5.84357143e+02]\n", + " [ 2.00250000e+03 8.76785DEBUG:root:cartToSphere: vec: [[ 0.00110855 -0.20853555 0.97801416]\n", + " [ 0.00111823 -0.18105588 0.98347217]\n", + " [ 0.00112655 -0.15288447 0.98824343]\n", + " [ 0.00113349 -0.12412547 0.99226588]\n", + " [ 0.001139 -0.09488471 0.99548762]\n", + " [ 0.00114306 -0.06527159 0.99786688]\n", + " [ 0.00114562 -0.0353997 0.99937258]\n", + " [ 0.00114666 -0.00538646 0.99998484]\n", + " [ 0.00110855 -0.20853555 0.97801416]\n", + " [ 0.03013432 -0.20838958 0.97758156]\n", + " [ 0.05904256 -0.2079729 0.97635099]\n", + " [ 0.08772073 -0.20728684 0.97433939]\n", + " [ 0.11605724 -0.20633313 0.97157468]\n", + " [ 0.14394136 -0.20511339 0.96809575]\n", + " [ 0.17126266 -0.20362847 0.96395256]\n", + " [ 0.19791015 -0.2018782 0.95920632]\n", + " [ 0.00114666 -0.00538646 0.99998484]\n", + " [ 0.03116962 -0.00538259 0.99949962]\n", + " [ 0.06106803 -0.00537156 0.99811915]\n", + " [ 0.09072406 -0.00535349 0.99586168]\n", + " [ 0.1200235 -0.00532854 0.99275675]\n", + " [ 0.1488564 -0.00529689 0.98884464]\n", + " [ 0.17711651 -0.00525872 0.98417584]\n", + " [ 0.20469956 -0.00521415 0.97881096]\n", + " [ 0.19791015 -0.2018782 0.95920632]\n", + " [ 0.19966308 -0.17529764 0.96405674]\n", + " [ 0.20115603 -0.14802765 0.9683099 ]\n", + " [ 0.20238925 -0.12017919 0.97190306]\n", + " [ 0.20336191 -0.09186258 0.97478469]\n", + " [ 0.20407235 -0.06318839 0.97691438]\n", + " [ 0.20451873 -0.03426807 0.97826264]\n", + " [ 0.20469956 -0.00521415 0.97881096]\n", + " [ 0.00121266 -0.196646 0.9804738 ]\n", + " [ 0.00122459 -0.16248857 0.98670967]\n", + " [ 0.00123428 -0.12739553 0.99185123]\n", + " [ 0.00124164 -0.09156092 0.9957987 ]\n", + " [ 0.00124661 -0.05518617 0.9984753 ]\n", + " [ 0.00124912 -0.01848208 0.99982841]\n", + " [ 0.01377154 -0.20841259 0.97794404]\n", + " [ 0.04928181 -0.20805164 0.97687554]\n", + " [ 0.08450359 -0.2072855 0.97462396]\n", + " [ 0.11923105 -0.20611722 0.97123615]\n", + " [ 0.15326028 -0.20454967 0.9667837 ]\n", + " [ 0.18638779 -0.20258404 0.96136325]\n", + " [ 0.01424443 -0.00548838 0.99988348]\n", + " [ 0.05097175 -0.00547863 0.99868507]\n", + " [ 0.08739457 -0.00545803 0.99615882]\n", + " [ 0.12330108 -0.00542687 0.99235447]\n", + " [ 0.15848878 -0.0053855 0.98734609]\n", + " [ 0.192763 -0.0053342 0.98123085]\n", + " [ 0.19861623 -0.190DEBUG:root:optics_fp: xyfp: [[ -0.172993 31.426621 ]\n", + " [ -0.172993 27.04019243]\n", + " [ -0.172993 22.65376385]\n", + " [ -0.172993 18.26733528]\n", + " [ -0.172993 13.88090671]\n", + " [ -0.172993 9.49447814]\n", + " [ -0.172993 5.10804957]\n", + " [ -0.172993 0.721621 ]\n", + " [ -0.172993 31.426621 ]\n", + " [ -4.55942157 31.426621 ]\n", + " [ -8.94585014 31.426621 ]\n", + " [-13.33227871 31.426621 ]\n", + " [-17.71870729 31.426621 ]\n", + " [-22.10513586 31.426621 ]\n", + " [-26.49156443 31.426621 ]\n", + " [-30.877993 31.426621 ]\n", + " [ -0.172993 0.721621 ]\n", + " [ -4.55942157 0.721621 ]\n", + " [ -8.94585014 0.721621 ]\n", + " [-13.33227872 0.721621 ]\n", + " [-17.71870728 0.721621 ]\n", + " [-22.10513586 0.721621 ]\n", + " [-26.49156443 0.721621 ]\n", + " [-30.877993 0.721621 ]\n", + " [-30.877993 31.426621 ]\n", + " [-30.877993 27.04019243]\n", + " [-30.877993 22.65376385]\n", + " [-30.877993 18.26733529]\n", + " [-30.877993 13.88090671]\n", + " [-30.877993 9.49447814]\n", + " [-30.877993 5.10804957]\n", + " [-30.877993 0.721621 ]\n", + " [ -0.187993 29.514121 ]\n", + " [ -0.187993 714e+02]\n", + " [ 2.00250000e+03 1.16921429e+03]\n", + " [ 2.00250000e+03 1.46164286e+03]\n", + " [ 2.00250000e+03 1.75407143e+03]\n", + " [ 2.00250000e+03 2.04650000e+03]\n", + " [-4.34999999e+01 1.27000000e+02]\n", + " [-4.35000000e+01 4.85400000e+02]\n", + " [-4.35000001e+01 8.43800000e+02]\n", + " [-4.35000001e+01 1.20220000e+03]\n", + " [-4.34999998e+01 1.56060000e+03]\n", + " [-4.34999998e+01 1.91900000e+03]\n", + " [ 8.29999999e+01 4.99999893e-01]\n", + " [ 4.41400000e+02 5.00000055e-01]\n", + " [ 7.99800000e+02 4.99999998e-01]\n", + " [ 1.15820000e+03 5.00000122e-01]\n", + " [ 1.51660000e+03 4.99999912e-01]\n", + " [ 1.87500000e+03 5.00000160e-01]\n", + " [ 8.30000002e+01 2.04550000e+03]\n", + " [ 4.41400000e+02 2.04550000e+03]\n", + " [ 7.99800000e+02 2.04550000e+03]\n", + " [ 1.15820000e+03 2.04550000e+03]\n", + " [ 1.51660000e+03 2.04550000e+03]\n", + " [ 1.87500000e+03 2.04550000e+03]\n", + " [ 2.00150000e+03 1.27000000e+02]\n", + " [ 2.00150000e+03 4.85400000e+02]\n", + " [ 2.00150000e+03 8.43800000e+02]\n", + " [ 2.00150000e+03 1.20220000e+03]\n", + " [ 2.00150000e+03 1.56060000e+03]\n", + " [ 2.00150000e+03 1.91900000e+03]\n", + " [-4.35000001e+01 4.99999931e-01]\n", + " [-4.35000001e+01 4.99999931e-01]\n", + " [ 2.00150000e+03 2.04550000e+03]\n", + " [ 2.00150000e+03 2.04550000e+03]\n", + " [ 8.30000000e+01 1.27000000e+02]\n", + " [ 4.41400000e+02 1.27000000e+02]\n", + " [ 7.99800000e+02 1.27000000e+02]\n", + " [ 1.15820000e+03 1.27000000e+02]\n", + " [ 1.51660000e+03 1.27000000e+02]\n", + " [ 1.87500000e+03 1.27000000e+02]\n", + " [ 8.29999999e+01 4.85400000e+02]\n", + " [ 4.41400000e+02 4.85400000e+02]\n", + " [ 7.99800000e+02 4.85400000e+02]\n", + " [ 1.15820000e+03 4.85400000e+02]\n", + " [ 1.51660000e+03 4.85400000e+02]\n", + " [ 1.87500000e+03 4.85400000e+02]\n", + " [ 8.29999999e+01 8.43800000e+02]\n", + " [ 4.41400000e+02 8.43800000e+02]\n", + " [ 7.99800000e+02 8.43800000e+02]\n", + " [ 1.15820000e+03 8.43800000e+02]\n", + " [ 1.51660000e+03 8.43800000e+02]\n", + " [ 1.87500000e+03 8.43800000e+02]\n", + " [ 8.30000001e+01 1.20220000e+03]\n", + " [ 4.41400000e+02 1.20220000e+03]\n", + " [ 7.99800000e+02 1.20220000e+03]\n", + " [ 1.15820000e+03 1.20220000e+03]\n", + " [ 1.51660000e+03 1.20220000e+03]\n", + " [ 1.87500000e+03 1.20220000e+03]\n", + " [ 8.29999998e+01 1.56060000e+03]\n", + " [ 4.41400000e+02 1.56060000e+03]\n", + " [ 7.99800000e+02 1.56060000e+03]\n", + " [ 1.15820000e+03 1.56060000e+03]\n", + " [ 1.51660000e+03 1.56060000e+03]\n", + " [ 1.87500000e+03 1.56060000e+03]\n", + " [ 8.30000002e+01 1.91900000e+03]\n", + " [ 4.41400000e+02 1.91900000e+03]\n", + " [ 7.99800000e+02 1.91900000e+03]\n", + " [ 1.15820000e+03 1.91900000e+03]\n", + " [ 1.51660000e+03 1.91900000e+03]\n", + " [ 1.87500000e+03 1.91900000e+03]]\n", + "DEBUG:root:radec2pix: ccdpx: [[-4.45000000e+01 -5.00000261e-01]\n", + " [-4.45000000e+01 2.91928571e+02]\n", + " [-4.45000000e+01 5.84357143e+02]\n", + " [-4.45000000e+01 8.76785715e+02]\n", + " [-4.45000000e+01 1.16921429e+03]\n", + " [-4.45000000e+01 1.46164286e+03]\n", + " [-4.45000000e+01 1.75407143e+03]\n", + " [-4.44999999e+01 2.04650000e+03]\n", + " [-4.45000000e+01 -5.00000261e-01]\n", + " [ 2.47928571e+02 -5.00000125e-01]\n", + " [ 5.40357143e+02 -4.99999959e-01]\n", + " [ 8.32785714e+02 -5.00000265e-01]\n", + " [ 1.12521429e+03 -4.99999989e-01]\n", + " [ 1.41764286e+03 -4.99999804e-01]\n", + " [ 1.71007143e+03 -4.99999857e-01]\n", + " [ 2.00250000e+03 -5.00000247e-01]\n", + " [-4.44999999e+01 2.54613 0.96149301]\n", + " [ 0.20096941 -0.15647489 0.9670196 ]\n", + " [ 0.20254341 -0.12248558 0.97158296]\n", + " [ 0.2037261 -0.08778034 0.97508476]\n", + " [ 0.2045144 -0.05256249 0.9774513 ]\n", + " [ 0.20490517 -0.01703747 0.97863353]\n", + " [ 0.00162826 -0.20759824 0.97821282]\n", + " [ 0.00162826 -0.20759824 0.97821282]\n", + " [ 0.20494776 -0.00446412 0.97876273]\n", + " [ 0.20494776 -0.00446412 0.97876273]\n", + " [ 0.01424722 -0.19576354 0.98054763]\n", + " [ 0.04989441 -0.19542056 0.97944952]\n", + " [ 0.08525013 -0.19469787 0.97715155]\n", + " [ 0.12010852 -0.19359884 0.97370089]\n", + " [ 0.15426631 -0.19212697 0.9691693 ]\n", + " [ 0.18752167 -0.19028463 0.96365314]\n", + " [ 0.01438645 -0.16159264 0.98675268]\n", + " [ 0.05038177 -0.16130879 0.98561714]\n", + " [ 0.08608239 -0.16071144 0.98324039]\n", + " [ 0.1212815 -0.15980479 0.97966996]\n", + " [ 0.15577635 -0.15859338 0.97497788]\n", + " [ 0.18936679 -0.15708053 0.9692605 ]\n", + " [ 0.01449922 -0.12649245 0.9918616 ]\n", + " [ 0.05077617 -0.12626898 0.99069568]\n", + " [ 0.08675481 -0.12579928 0.9882551 ]\n", + " [ 0.12222707 -0.12508774 0.98458804]\n", + " [ 0.1 24.138121 ]\n", + " [ -0.187993 18.76212101]\n", + " [ -0.187993 13.386121 ]\n", + " [ -0.187993 8.010121 ]\n", + " [ -0.187993 2.634121 ]\n", + " [ -2.085493 31.411621 ]\n", + " [ -7.461493 31.411621 ]\n", + " [-12.837493 31.411621 ]\n", + " [-18.213493 31.411621 ]\n", + " [-23.589493 31.411621 ]\n", + " [-28.965493 31.411621 ]\n", + " [ -2.085493 0.736621 ]\n", + " [ -7.461493 0.736621 ]\n", + " [-12.837493 0.736621 ]\n", + " [-18.213493 0.736621 ]\n", + " [-23.58949299 0.736621 ]\n", + " [-28.965493 0.736621 ]\n", + " [-30.862993 29.514121 ]\n", + " [-30.862993 24.138121 ]\n", + " [-30.862993 18.762121 ]\n", + " [-30.862993 13.386121 ]\n", + " [-30.862993 8.010121 ]\n", + " [-30.862993 2.634121 ]\n", + " [ -0.187993 31.411621 ]\n", + " [ -0.187993 31.411621 ]\n", + " [-30.862993 0.736621 ]\n", + " [-30.862993 0.736621 ]\n", + " [ -2.085493 29.514121 ]\n", + " [ -7.461493 29.514121 ]\n", + " [-12.837493 29.514121 ]\n", + " [-18.213493 29.514121 ]\n", + " [-23.589493 29.514121 ]\n", + " [-28.965493 29.514121 ]\n", + " [ -2.085493 24.138121 ]\n", + " [ -7.461493 24.138121 ]\n", + "83 -18.88882997]\n", + " [ -3.40983004 -18.8894515 ]\n", + " [-30.28920834 -13.51034392]\n", + " [-24.91320837 -13.51096545]\n", + " [-19.53720841 -13.51158697]\n", + " [-14.16120844 -13.51220849]\n", + " [ -8.78520848 -13.51283002]\n", + " [ -3.40920852 -13.51345154]\n", + " [-30.28858681 -8.13434396]\n", + " [-24.91258685 -8.13496548]\n", + " [-19.53658688 -8.135587 ]\n", + " [-14.16058692 -8.13620852]\n", + " [ -8.78458696 -8.13683005]\n", + " [ -3.40858699 -8.13745157]\n", + " [-30.28796529 -2.75834399]\n", + " [-24.91196532 -2.75896552]\n", + " [-19.53596536 -2.75958704]\n", + " [-14.1599654 -2.76020856]\n", + " [ -8.78396543 -2.76083009]\n", + " [ -3.40796547 -2.76145161]]\n", + "5699061 -0.12413931 0.979767 ]\n", + " [ 0.19084708 -0.12295784 0.97388848]\n", + " [ 0.01458479 -0.09065756 0.99577532]\n", + " [ 0.05107523 -0.09049631 0.99458621]\n", + " [ 0.08726392 -0.09015775 0.99209707]\n", + " [ 0.1229415 -0.08964573 0.98835673]\n", + " [ 0.15790584 -0.08896468 0.98343837]\n", + " [ 0.1919602 -0.0881182 0.97743873]\n", + " [ 0.01464229 -0.05428931 0.99841789]\n", + " [ 0.05127607 -0.05419219 0.9972131 ]\n", + " [ 0.08760541 -0.05398843 0.99469118]\n", + " [ 0.DEBUG:root:fitpix2pix: ccdpx: shape: (96, 2)\n", + " [-12.837493 24.138121 ]\n", + " [-18.213493 24.138121 ]\n", + " [-23.589493 24.138121 ]\n", + " [-28.965493 24.138121 ]\n", + " [ -2.085493 18.762121 ]\n", + " [ -7.461493 18.762121 ]\n", + " [-12.837493 18.762121 ]\n", + " [-18.213493 18.762121 ]\n", + " [-23.589493 18.762121 ]\n", + " [-28.965493 18.762121 ]\n", + " [ -2.085493 13.386121 ]\n", + " [ -7.461493 13.386121 ]\n", + " [-12.837493 13.386121 ]\n", + " [-18.213493 13.386121 ]\n", + " [-23.589493 13.386121 ]\n", + " [-28.965493 13.386121 ]\n", + " [ -2.085493 8.010121 ]\n", + " [ -7.461493 8.010121 ]\n", + " [-12.837493 8.010121 ]\n", + " [-18.213493 8.010121 ]\n", + " [-23.589493 8.010121 ]\n", + " [-28.965493 8.010121 ]\n", + " [ -2.085493 2.634121 ]\n", + " [ -7.461493 2.634121 ]\n", + " [-12.837493 2.634121 ]\n", + " [-18.213493 2.634121 ]\n", + " [-23.589493 2.634121 ]\n", + " [-28.965493 2.634121 ]]\n", + "DEBUG:root:radec2pix: ccdpx: [[-4.44999997e+01 -4.99999751e-01]\n", + " [-4.45000003e+01 2.91928571e+02]\n", + " [-4.45000000e+01 5.84357143e+02]\n", + " [-4.449DEBUG:root:fitpix2pix: visCut: True\n", + "DEBUG:root:radec2pix: xyfp Shape: (96, 2)\n", + "38695 0.96140751]\n", + " [ 0.2005887 -0.15733098 0.96695974]\n", + " [ 0.20217123 -0.12334981 0.97155114]\n", + " [ 0.20336272 -0.08864677 0.97508223]\n", + " [ 0.2041602 -0.05342545 0.97747856]\n", + " [ 0.2045604 -0.01789151 0.97869042]\n", + " [ 0.00120792 -0.20844284 0.97803381]\n", + " [ 0.00120792 -0.20844284 0.97803381]\n", + " [ 0.20460634 -0.00531377 0.97882992]\n", + " [ 0.20460634 -0.00531377 0.97882992]\n", + " [ 0.01382559 -0.19661746 0.9803828 ]\n", + " [ 0.04947523 -0.19627694 0.97929953]\n", + " [ 0.08483539 -0.19555447 0.97701659]\n", + " [ 0.11969997 -0.19445357 0.97358088]\n", + " [ 0.15386543 -0.19297773 0.96906399]\n", + " [ 0.18712908 -0.19112874 0.96356241]\n", + " [ 0.01396162 -0.1624649 0.98661554]\n", + " [ 0.04996174 -0.16218264 0.98549511]\n", + " [ 0.08566901 -0.16158454 0.98313339]\n", + " [ 0.1208763 -0.16067502 0.97957769]\n", + " [ 0.15538076 -0.15945889 0.97489983]\n", + " [ 0.1889821 -0.15793949 0.969196 ]\n", + " [ 0.01407199 -0.12737685 0.99175456]\n", + " [ 0.05035615 -0.12715419 0.99060389]\n", + " [ 0.08634371 -0.12668294 0.98817822]\n", + " [ 0.12182616 -0.12596768 0.98452554]\n", + " [ 0.15660103 -0.12501365 0.97971818]\n", + " [ 0.19047015 -0.12382499 0.9738524 ]\n", + " [ 0.01415593 -0.0915474 0.9957001 ]\n", + " [ 0.05065593 -0.09138626 0.99452628]\n", + " [ 0.08685581 -0.09104555 0.9920518 ]\n", + " [ 0.12254563 -0.09052922 0.98832537]\n", + " [ 0.15752301 -0.08984197 0.98342001]\n", + " [ 0.1915915 -0.08898771 0.97743229]\n", + " [ 0.01421257 -0.05517797 0.99837538]\n", + " [ 0.05085809 -0.05508029 0.99718585]\n", + " [ 0.08720077 -0.05487388 0.99467828]\n", + " [ 0.12302951 -0.05456144 0.99090201]\n", + " [ 0.15814189 -0.05414617 0.9859307 ]\n", + " [ 0.1923426 -0.05363087 0.97986124]\n", + " [ 0.01424114 -0.01847933 0.99972782]\n", + " [ 0.05096003 -0.01844651 0.99853032]\n", + " [ 0.08737459 -0.01837718 0.996006 ]\n", + " [ 0.12327308 -0.0182723 0.99220455]\n", + " [ 0.15845303 -0.018133 0.9872 ]\n", + " [ 0.1927197 -0.01796031 0.98108947]]\n", + "DEBUG:root:make_az_asym: xyp: [[32.23341696 31.55141621]\n", + " [32.23194958 27.16498788]\n", + " [32.2304822 22.77855956]\n", + " [32.22901483 18.39213124]\n", + " [32.227512341989 -0.05368064 0.99090157]\n", + " [ 0.15851749 -0.05327188 0.985918 ]\n", + " [ 0.19270261 -0.0527647 0.97983753]\n", + " [ 0.01467095 -0.01759801 0.9997375 ]\n", + " [ 0.05137612 -0.01756642 0.99852487]\n", + " [ 0.08777538 -0.01750018 0.99598656]\n", + " [ 0.12365776 -0.01740019 0.99217236]\n", + " [ 0.15882123 -0.0172675 0.98715635]\n", + " [ 0.1930708 -0.01710301 0.98103576]]\n", + "DEBUG:root:optics_fp: xyfp shape: (96, 2)\n", + "99999e+01 8.76785714e+02]\n", + " [-4.44999999e+01 1.16921429e+03]\n", + " [-4.44999999e+01 1.46164286e+03]\n", + " [-4.45000001e+01 1.75407143e+03]\n", + " [-4.45000000e+01 2.04650000e+03]\n", + " [-4.44999997e+01 -4.99999751e-01]\n", + " [ 2.47928571e+02 -5.00000271e-01]\n", + " [ 5.40357143e+02 -4.99999959e-01]\n", + " [ 8.32785714e+02 -5.00000035e-01]\n", + " [ 1.12521429e+03 -5.00000130e-01]\n", + " [ 1.41764286e+03 -5.00000295e-01]\n", + " [ 1.71007143e+03 -5.00000131e-01]\n", + " [ 2.00250000e+03 -5.00000000e-01]\n", + " [-4.45000000e+01 2.04650000e+03]\n", + " [ 2.47928571e+02 2.04650000e+03]\n", + " [ 5.40357143e+02 2.04650000e+03]\n", + " [ 8.32785714e+02 2.04650000e+03]\n", + " [ 1.12521429e+03 2.04604650000e+03]\n", + " [ 2.47928572e+02 2.04650000e+03]\n", + " [ 5.40357143e+02 2.04650000e+03]\n", + " [ 8.32785714e+02 2.04650000e+03]\n", + " [ 1.12521429e+03 2.04650000e+03]\n", + " [ 1.41764286e+03 2.04650000e+03]\n", + " [ 1.71007143e+03 2.04650000e+03]\n", + " [ 2.00250000e+03 2.04650000e+03]\n", + " [ 2.00250000e+03 -5.00000247e-01]\n", + " [ 2.00250000e+03 2.91928571e+02]\n", + " [ 2.00250000e+03 5.84357143e+02]\n", + " [ 2.00250000e+03 8.76785714e+02]\n", + " [ 2.00250000e+03 1.16921429e+03]\n", + " [ 2.00250000e+03 1.46164286e+03]\n", + " [ 2.00250000e+03 1.75407143e+03]\n", + " [ 2.00250000e+03 2.04650000e+03]\n", + " [-4.35000000e+01 1.27000000e+02]\n", + " [-4.35000000e+01 4.85400000e+02]\n", + " [-4.35000000e+01 8.43800000e+02]\n", + " [-4.35000000e+01 1.20220000e+03]\n", + " [-4.35000000e+01 1.56060000e+03]\n", + " [-4.35000000e+01 1.91900000e+03]\n", + " [ 8.30000000e+01 4.99999891e-01]\n", + " [ 4.41400000e+02 5.00000001e-01]\n", + " [ 7.99800000e+02 5.00000129e-01]\n", + " [ 1.15820000e+03 5.00000084e-01]\n", + " [ 1.51660000e+03 5.00000000e-01]\n", + " [ 1.87500000e+03 5.00000003e-01]\n", + " [ 8.30000000e+01 2.04550000e+03]\n", + " [ 4.41400000e+02 2.04550000e+03]\n", + " [ 7.99800000e+02 2.04550000e+03]\n", + " [ 1.15820000e+03 2.04550000e+03]\n", + " [ 1.51660000e+03 2.04550000e+03]\n", + " [ 1.87500000e+03 2.04550000e+03]\n", + " [ 2.00150000e+03 1.27000000e+02]\n", + " [ 2.00150000e+03 4.85400000e+02]\n", + " [ 2.00150000e+03 8.43800000e+02]\n", + " [ 2.00150000e+03 1.20220000e+03]\n", + " [ 2.00150000e+03 1.56060000e+03]\n", + " [ 2.00150000e+03 1.91900000e+03]\n", + " [-4.35000000e+01 4.99999945e-01]\n", + " [-4.35000000e+01 4.99999945e-01]\n", + " [ 2.00150000e+03 2.04550000e+03]\n", + " [ 2.00150000e+03 2.04550000e+03]\n", + " [ 8.30000000e+01 1.27000000e+02]\n", + " [ 4.41400000e+02 1.27000000e+02]\n", + " [ 7.99800000e+02 1.27000000e+02]\n", + " [ 1.15820000e+03 1.27000000e+02]\n", + " [ 1.51660000e+03 1.27000000e+02]\n", + " [ 1.87500000e+03 1.27000000e+02]\n", + " [ 8.30000000e+01 4.85400000e+02]\n", + " [ 4.41400000e+02 4.85400000e+02]\n", + " [ 7.99800000e+02 4.85400000e+02]\n", + " [ 1.15820000e+03 4.85400000e+02]\n", + " [ 1.51660000e+03 4.85400000e+02]\n", + " [ 1.87500000e+03 4.85400000e+02]\n", + " [ 8.30000000e+01 8.43800000e+02]\n", + " [ 4.41400000e+02 8.43800000e+02]\n", + " [ 7.99800000e+02 8.43800000e+02]\n", + " [ 1.15820000e+03 8.43800000e+02]\n", + " [ 1.51660000e+03 8.43800000e+02]\n", + " [ 1.87500000e+03 8.43800000e+02]\n", + " [ 8.30000000e+01 1.20220000e+03]\n", + " [ 4.41400000e+02 1.20220000e+03]\n", + " [ 7.99800000e+02 1.20220000e+03]\n", + " [ 1.15820000e+03 1.20220000e+03]\n", + " [ 1.51660000e+03 1.20220000e+03]\n", + " [ 1.87500000e+03 1.20220000e+03]\n", + " [ 8.30000000e+01 1.56060000e+03]\n", + " [ 4.41400000e+02 1.56060000e+03]\n", + " [ 7.99800000e+02 1.56060000e+03]\n", + " [ 1.15820000e+03 1.56060000e+03]\n", + " [ 1.51660000e+03 1.56060000e+03]\n", + " [ 1.87500000e+03 1.56060000e+03]\n", + " [ 8.29999998e+01 1.91900000e+03]\n", + " [ 4.41400000e+02 1.91900000e+03]\n", + " [ 7.99800000e+02 1.91900000e+03]\n", + " [ 1.15820000e+03 1.91900000e+03]\n", + " [ 1.51660000e+03 1.91900000e+03]\n", + " [ 1.87500000e+03 1.91900000e+03]]\n", + "50000e+03]\n", + " [ 1.41764286e+03 2.04650000e+03]\n", + " [ 1.71007143e+03 2.04650000e+03]\n", + " [ 2.00250000e+03 2.04650000e+03]\n", + " [ 2.00250000e+03 -5.00000000e-01]\n", + " [ 2.00250000e+03 2.91928571e+02]\n", + " [ 2.00250000e+03 5.84357143e+02]\n", + " [ 2.00250000e+03 8.76785714e+02]\n", + " [ 2.00250000e+03 1.16921429e+03]\n", + " [ 2.00250000e+03 1.46164286e+03]\n", + " [ 2.00250000e+03 1.75407143e+03]\n", + " [ 2.00250000e+03 2.04650000e+03]\n", + " [-4.35000003e+01 1.27000000e+02]\n", + " [-4.35000001e+01 4.85400000e+02]\n", + " [-4.35000003e+01 8.43800000e+02]\n", + " [-4.34999997e+01 1.20220000e+03]\n", + " [-4.34999997e+01 1.56060000e+03]\n", + " [-4.35000002e+01 1.91900000e+03]\n", + " [ 8.29999999e+01 4.99999945e-01]\n", + " [ 4.41400000e+02 4.99999942e-01]\n", + " [ 7.99800000e+02 5.00000147e-01]\n", + " [ 1.15820000e+03 4.99999799e-01]\n", + " [ 1.51660000e+03 5.00000078e-01]\n", + " [ 1.87500000e+03 4.99999710e-01]\n", + " [ 8.30000000e+01 2.04550000e+03]\n", + " [ 4.41400000e+02 2.04550000e+03]\n", + " [ 7.99800000e+02 2.04550000e+03]\n", + " [ 1.15820000e+03 2.04550000e+03]\n", + " [ 1.51660000e+03 2.04550000e+03]\n", + " [ 1.87500000e+03 2.04550000e+03]\n", + " [ 2.00150000e+03 1.27000000e+02]\n", + " [ 2.00150000e+03 4.85400000e+02]\n", + " [ 2.00150000e+03 8.43800000e+02]\n", + " [ 2.00150000e+03 1.20220000e+03]\n", + " [ 2.00150000e+03 1.56060000e+03]\n", + " [ 2.00150000e+03 1.91900000e+03]\n", + " [-4.34999998e+01 5.00000241e-01]\n", + " [-4.34999998e+01 5.00000241e-01]\n", + " [ 2.00150000e+03 2.04550000e+03]\n", + " [ 2.00150000e+03 2.04550000e+03]\n", + " [ 8.30000001e+01 1.27000000e+02]\n", + " [ 4.41400000e+02 1.27000000e+02]\n", + " [ 7.99800000e+02 1.27000000e+02]\n", + " [ 1.15820000e+03 1.27000000e+02]\n", + " [ 1.51660000e+03 1.27000000e+02]\n", + " [ 1.87500000e+03 1.27000000e+02]\n", + " [ 8.30000000e+01 4.85400000e+02]\n", + " [ 4.41400000e+02 4.85400000e+02]\n", + " [ 7.99800000e+02 4.85400000e+02]\n", + " [ 1.15820000e+03 4.85400000e+02]\n", + " [ 1.51660000e+03 4.85400000e+02]\n", + " [ 1.87500000e+03 4.85400000e+02]\n", + " [ 8.30000001e+01 8.43800000e+02]\n", + " [ 4.41400000e+02 8.43800000e+02]\n", + " [ 7.99800000e+02 8.43800000e+02]\n", + " [ 1.15820000e+03 8.43800000e+02]\n", + " [ 1.51660000e+03 8.43800000e+02]\n", + " [ 1.87500000e+03 8.43800000e+02]\n", + " [ 8.30000001e+01 1.20220000e+03]\n", + " [ 4.41400000e+02 1.20220000e+03]\n", + " [ 7.99800000e+02 1.20220000e+03]\n", + " [ 1.15820000e+03 1.20220000e+03]\n", + " [ 1.51660000e+03 1.20220000e+03]\n", + " [ 1.87500000e+03 1.20220000e+03]\n", + " [ 8.30000002e+01 1.56060000e+03]\n", + " [ 4.41400000e+02 1.56060000e+03]\n", + " [ 7.99800000e+02 1.56060000e+03]\n", + " [ 1.15820000e+03 1.56060000e+03]\n", + " [ 1.51660000e+03 1.56060000e+03]\n", + " [ 1.87500000e+03 1.56060000e+03]\n", + " [ 8.29999999e+01 1.91900000e+03]\n", + " [ 4.41400000e+02 1.91900000e+03]\n", + " [ 7.99800000e+02 1.91900000e+03]\n", + " [ 1.15820000e+03 1.91900000e+03]\n", + " [ 1.51660000e+03 1.91900000e+03]\n", + " [ 1.87500000e+03 1.91900000e+03]]\n", + "4745 14.00570291]\n", + " [32.22608007 9.61927458]\n", + " [32.22461269 5.23284626]\n", + " [32.2231453 0.84641793]\n", + " [32.23341696 31.55141621]\n", + " [27.84698864 31.5528836 ]\n", + " [23.46056031 31.55435097]\n", + " [19.07413198 31.55581835]\n", + " [14.68770366 31.55728573]\n", + " [10.30127533 31.55875311]\n", + " [ 5.91484701 31.56022049]\n", + " [ 1.52841868 31.56168787]\n", + " [32.2231453 0.84641793]\n", + " [27.83671698 0.84788531]\n", + " [23.45028865 0.84935269]\n", + " [19.06386033 0.85082007]\n", + " [14.677432 0.85228745]\n", + " [10.29100367 0.85375483]\n", + " [ 5.90457535 0.85522221]\n", + " [ 1.51814702 0.85668959]\n", + " [ 1.52841868 31.56168787]\n", + " [ 1.5269513 27.17525955DEBUG:root:radec2pix: lng: [270.30457564 270.35386432 270.42218515 270.52319877 270.68775016\n", + " 271.00328211 271.85358468 282.01764037 270.30457564 278.22825834\n", + " 285.84900373 292.93736432 299.35666656 305.05982707 310.06566745\n", + " 314.43133752 282.01764037 350.20239022 354.97318448 356.62297809\n", + " 357.45797758 357.96205284 358.29934604 358.54086611 314.43133752\n", + " 318.71792809 323.65121653 329.29806584 335.69036822 342.79553001\n", + " 350.4881795 358.54086611 270.35332309 270.43180131 270.55509491\n", + " 270.77692983 271.2940439 273.86646927 273.78050957 283.32620486\n", + " 292.17913267 300.04776463 306.84264375 312.61566094 338.92831161\n", + " 353.86519186 356.42636123 357.47985638 358.05382146 358.4148969\n", + " 316.21189934 321.89127155 328.61157088 336.44738638 345.33544633\n", + " 355.00144674 270.33202411 270.33202411 358.51232366 358.51232366\n", + " 274.02225895 284.14773214 293.45215101 301.61524642 308.56613427\n", + " 314.39418307 274.91171606 287.12189287 297.93167364 306.95425335\n", + " 314.25788847 320.11321977 276.3042009 291.604768]\n", + " [ 1.52548392 22.78883122]\n", + " [ 1.52401654 18.4024029 ]\n", + " [ 1.52254916 14.01597457]\n", + " [ 1.52108178 9.62954624]\n", + " [ 1.5196144 5.24311792]\n", + " [ 1.51814702 0.85668959]\n", + " [32.21777718 29.63892134]\n", + " [32.21597876 24.26292164]\n", + " [32.21418034 18.88692194]\n", + " [32.21238193 13.51092224]\n", + " [32.21058351 8.13492254]\n", + " [32.20878509 2.75892284]\n", + " [30.32091205 31.53705599]\n", + " [24.94491236 31.53885442]\n", + " [19.56891265 31.54065283]\n", + " [14.19291295 31.54245125]\n", + " [ 8.81691325 31.54424967]\n", + " [ 3.44091356 31.54604808]\n", + " [30.31065043 0.86205771]\n", + " [24.93465073 0.86385613]\n", + " [19.55865103 0.86565455]\n", + " [14.18265134 0.86745297]\n", + " [ 8.80665163 0.86925139]\n", + " [ 3.43065193 0.8710498 ]\n", + " [ 1.5427789 29.64918296]\n", + " [ 1.54098048 24.27318326]\n", + " [ 1.53918206 18.89718357]\n", + " [ 1.53738364 13.52118387]\n", + " [ 1.53558522 8.14518416]\n", + " [ 1.5337868 2.76918446]\n", + " [32.21841195 31.53642123]\n", + " [32.21841195 31.53642123]\n", + " [ 1.53315204 0.87168457]\n", + " [ 1.53315204 0.87168457]\n", + " [30.32027729 29.6395561 ]\n", + " [24.94427759 29.64135452]\n", + " [19.56827789 29.64315294]9 304.27729951\n", + " 314.04247307 321.39984571 326.97203004 278.79000558 298.99985673\n", + " 313.65088315 323.54527533 330.30207858 335.08673923 284.44409964\n", + " 312.71767267 327.81852787 336.08354959 341.09932037 344.41993917\n", + " 307.6197367 340.1007605 348.12231225 351.56865678 353.47160216\n", + " 354.67575821]\n", + "\n", + " [14.19227819 29.64495136]\n", + " [ 8.81627849 29.64674978]\n", + " [ 3.44027879 29.6485482 ]\n", + " [30.31847887 24.2635564 ]\n", + " [24.94247917 24.26535482]\n", + " [19.56647947 24.26715324]\n", + " [14.19047977 24.26895166]\n", + " [ 8.81448007 24.27075007]\n", + " [ 3.43848037 24.2725485 ]\n", + " [30.31668045 18.8875567 ]\n", + " [24.94068075 18.88935513]\n", + " [19.56468105 18.89115354]\n", + " [14.18868135 18.89295196]\n", + " [ 8.81268165 18.89475038]\n", + " [ 3.43668195 18.89654879]\n", + " [30.31488203 13.51155701]\n", + " [24.93888233 13.51335542]\n", + " [19.56288263 13.51515384]\n", + " [14.18688293 13.51695226]\n", + " [ 8.81088324 13.51875068]\n", + " [ 3.43488354 13.5205491 ]\n", + " [30.31308361 8.13555731]\n", + " [24.93708392 8.13735572]\n", + " [19.56108422 8.13915414]\n", + " [14.18508451 8.14095256]\n", + " [ 8.80908482 8.14275098]\n", + " [DEBUG:root:radec2pix: fitpx: [[-5.00000034e-01 -5.00000033e-01]\n", + " [-5.00000269e-01 2.91928571e+02]\n", + " [-5.00000171e-01 5.84357143e+02]\n", + " [-4.99999761e-01 8.76785714e+02]\n", + " [-4.99999835e-01 1.16921429e+03]\n", + " [-5.00000099e-01 1.46164286e+03]\n", + " [-4.99999719e-01 1.75407143e+03]\n", + " [-5.00000225e-01 2.04650000e+03]\n", + " [-5.00000034e-01 -5.00000033e-01]\n", + " [ 2.91928571e+02 -4.99999990e-01]\n", + " [ 5.84357143e+02 -5.00000111e-01]\n", + " [ 8.76785714e+02 -5.00000066e-01]\n", + " [ 1.16921429e+03 -4.99999995e-01]\n", + " [ 1.46164286e+03 -5.00000140e-01]\n", + " [ 1.75407143e+03 -5.00000040e-01]\n", + " [ 2.04650000e+03 -5.00000296e-01]\n", + " [-5.00000225e-01 2.04650000e+03]\n", + " [ 2.91928572e+02 2.04650000e+03]\n", + " [ 5.84357143e+02 2.04650000e+03]\n", + " [ 8.76785714e+02 2.04650000e+03]\n", + " [ 1.16921429e+03 2.04650000e+03]\n", + " [ 1.46164286e+03 2.04650000e+03]\n", + " [ 1.75407143e+03 2.04650000e+03]\n", + " [ 2.04650000e+03 2.04650000e+03]\n", + " [ 2.04650000e+03 -5.00000296e-01]\n", + " [ 2.04650000e+03 2.91928572e+02]\n", + " [ 2.04650000e+03 5.84357143e+02]\n", + " [ 2.04650000e+03 8.76785714e+02]\n", + " [ 2.04650000e+03 1.16921429e+03]\n", + " [ 2.04650000e+03 1.46164286e+03]\n", + " [ 2.04650000e+03 1.75407143e+03]\n", + " [ 2.04650000e+03 2.04650000e+03]\n", + " [ 5.00000148e-01 1.27000000e+02]\n", + " [ 5.00000006e-01 4.85400000e+02]\n", + " [ 4.99999879e-01 8.43800000e+02]\n", + " [ 4.99999939e-01 1.20220000e+03]\n", + " [ 5.00000182e-01 1.56060000e+03]\n", + " [ 5.00000197e-01 1.91900000e+03]\n", + " [ 1.27000000e+02 4.99999893e-01]\n", + " [ 4.85400000e+02 5.00000055e-01]\n", + " [ 8.43800000e+02 4.99999998e-01]\n", + " [ 1.20220000e+03 5.00000122e-01]\n", + " [ 1.56060000e+03 4.99999912e-01]\n", + " [ 1.91900000e+03 5.00000160e-01]\n", + " [ 1.27000000e+02 2.04550000e+03]\n", + " [ 4.85400000e+02 2.04550000e+03]\n", + " [ 8.43800000e+02 2.04550000e+03]\n", + " [ 1.20220000e+03 2.04550000e+03]\n", + " [ 1.56060000e+03 2.04550000e+03]\n", + " [ 1.91900000e+03 2.04550000e+03]\n", + " [ 2.04550000e+03 1.27000000e+02]\n", + " [ 2.04550000e+03 4.85400000e+02]\n", + " [ 2.04550000e+03 8.43800000e+02]\n", + " [ 2.04550000e+03 1.20220000e+03]\n", + " [ 2.04550000e+03 1.56060000e+03]\n", + " [ 2.04550000e+03 1.91900000e+03]\n", + " [ 4.99999930e-01 4.99999931e-01]\n", + " [ 4.99999930e-01 4.99999931e-01]\n", + " [ 2.04550000e+03 2.04550000e+03]\n", + " [ 2.04550000e+03 2.04550000e+03]\n", + " [ 1.27000000e+02 1.27000000e+02]\n", + " [ 4.85400000e+02 1.27000000e+02]\n", + " [ 8.43800000e+02 1.27000000e+02]\n", + " [ 1.20220000e+03 1.27000000e+02]\n", + " [ 1.56060000e+03 1.27000000e+02]\n", + " [ 1.91900000e+03 1.27000000e+02]\n", + " [ 1.27000000e+02 4.85400000e+02]\n", + " [ 4.85400000e+02 4.85400000e+02]\n", + " [ 8.43800000e+02 4.85400000e+02]\n", + " [ 1.20220000e+03 4.85400000e+02]\n", + " [ 1.56060000e+03 4.85400000e+02]\n", + " [ 1.91900000e+03 4.85400000e+02]\n", + " [ 1.27000000e+02 8.43800000e+02]\n", + " [ 4.85400000e+02 8.43800000e+02]\n", + " [ 8.43800000e+02 8.43800000e+02]\n", + " [ 1.20220000e+03 8.43800000e+02]\n", + " [ 1.56060000e+03 8.43800000e+02]\n", + " [ 1.91900000e+03 8.43800000e+02]\n", + " [ 1.27000000e+02 1.20220000e+03]\n", + " [ 4.85400000e+02 1.20220000e+03]\n", + " [ 8.43800000e+02 1.20220000e+03]\n", + " [ 1.20220000e+03 1.20220000e+03]\n", + " [ 1.56060000e+03 1.20220000e+03]\n", + " [ 1.91900000e+03 1.20220000e+03]\n", + " [ 1.27000000e+02 1.56060000e+03]\n", + " [ 4.85400000e+02 1.56060000e+03]\n", + " [ 8.43800000e+02 1.56060000e+03]\n", + " [ 1.20220000e+03 1.56060000e+03]\n", + " [ 1.56060000e+03 1.56060000e+03]\n", + " [ 1.91900000e+03 1.56060000e+03]\n", + " [ 1.27000000e+02 1.91900000e+03]\n", + " [ 4.85400000e+02 1.91900000e+03]\n", + " [ 8.43800000e+02 1.91900000e+03]\n", + " [ 1.20220000e+03 1.91900000e+03]\n", + " [ 1.56060000e+03 1.91900000e+03]\n", + " [ 1.91900000e+03 1.91900000e+03]]\n", + "DEBUG:root:radec2pix: lng: [270.42176524 270.49034045 270.58554379 270.72662079 270.95724718\n", + " 271.40230304 272.6202602 289.32090211 270.42176524 278.37487059\n", + " 286.01754065 293.1193046 299.54422335 305.24693184 310.24816583\n", + " 314.60671783 289.32090211 351.88332455 355.81697528 357.18453549\n", + " 357.87852145 358.29811982 358.57917324 358.78056782 314.60671783\n", + " 318.91052218 323.86153916 329.52530495 335.93162927 343.04519816\n", + " 350.73789032 358.78056782 270.47833289 270.58513886 270.75335014\n", + " 271.05727717 271.77214072 275.46283159 273.91137001 283.48836134\n", + " 292.36007687 300.23563069 307.02864268 312.79442784 342.55577414\n", + " 354.88167257 357.01022263 357.88894543 358.36857558 358.67064356\n", + " 316.39469688 322.09565632 328.83707711 336.69003224 345.58630386\n", + " 355.24690052 270.44938101 270.44938101 358.75219462 358.75219462\n", + " 274.16251665 284.32266507 293.64661849 301.81542209 308.76235319\n", + " 314.58099285 275.08757932 287.34521298 298.17498348 307.196148\n", + " 314.48659385 320.3241534 276.53899869 291.90639058 304.59126569\n", + " 314.33729311 321.66504236 327.20736404 279.1393103 299.43995741\n", + " 314.06556227 323.90144592 330.60294465 335.34278839 285.09401101\n", + " 313.41621828 328.3557916 336.49369688 341.42440255 344.68693562\n", + " 309.81698293 341.12351394 348.72452469 351.99035546 353.79501012\n", + " 354.93771634]\n", + "DEBUG:root:mm_to_pix: fitpx: [[0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]DEBUG:root:fitpix2pix: ccdpx: shape: (96, 2)\n", + "\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]]\n", + " 3.43308512 8.1445494 ]\n", + " [30.31128519 2.75955761]\n", + " [24.93528549 2.76135602]\n", + " [19.5592858 2.76315444]\n", + " [14.18328609 2.76495286]\n", + " [ 8.8072864 2.76675128]\n", + " [ 3.4312867 2.7685497 ]]\n", + "DEBUG:root:make_az_asym: xyp: [[ -0.172993 31.426621 ]\n", + " [ -0.172993 27.04019243]\n", + " [ -0.172993 22.65376385]\n", + " [ -0.172993 18.26733528]\n", + " [ -0.172993 13.88090671]\n", + " [ -0.172993 9.49447814]\n", + " [ -0.172993 5.10804957]\n", + " [ -0.172993 0.721621 ]\n", + " [ -0.172993 31.426621 ]\n", + " [ -4.55942157 31.426621 ]\n", + " [ -8.94585014 31.426621 ]\n", + " [-13.33227871 31.426621 ]\n", + " [-17.71870729 31.426621 ]\n", + " [-22.10513586 31.426621 ]\n", + " [-26.49156443 31.426621 ]\n", + " [-30.877993 31.426621 ]\n", + " [ -0.172993 0.721621 ]\n", + " [ -4.55942157 0.721621 ]\n", + " [ -8.94585014 0.721621 ]\n", + " [-13.33227872 0.721621 ]\n", + " [-17.71870728 0.721621 ]\n", + " [-22.10513586 0.721621 ]\n", + " [-26.49156443 0.721621 ]\n", + " [-30.877993 0.721621 ]\n", + " [-30.877993 31.426621 ]\n", + " [-30.877993 27.04019243]\n", + " [-30.877993 22.65376385]\n", + " [-30.877993 18.26733529]\n", + " [-30.877993 13.88090671]\n", + " [-30.877993 9.49447814]\n", + " [-30.877993 5.10804957]\n", + " [-30.877993 0.721621 ]\n", + " [ -0.187993 29.514121 ]\n", + " [ -0.187993 24.138121 ]\n", + " [ -0.187993 18.76212101]\n", + " [ -0.187993 13.386121 ]\n", + " [ -0.187993 8.010121 ]\n", + " [ -0.187993 2.634121 ]\n", + " [ -2.085493 31.411621 ]\n", + " [ -7.461493 31.411621 ]DEBUG:root:fitpix2pix: visCut: True\n", + "\n", + " [-12.837493 31.411621 ]\n", + " [-18.213493 31.411621 ]\n", + " [-23.589493 31.411621 ]\n", + " [-28.965493 31.411621 ]\n", + " [ -2.085493 0.736621 ]\n", + " [ -7.461493 0.736621 ]\n", + " [-12.837493 0.736621 ]\n", + " [-18.213493 0.736621 ]\n", + " [-23.58949299 0.736621 ]\n", + " [-28.965493 0.736621 ]\n", + " [-30.862993 29.514121 ]\n", + " [-30.862993 24.138121 ]\n", + " [-30.862993 18.762121 ]\n", + " [-30.862993 13.386121 ]\n", + " [-30.862993 8.010121 ]\n", + " [-30.862993 2.634121 ]\n", + " [ -0.187993 31.411621 ]\n", + " [ -0.187993 31.411621 ]\n", + " [-30.862993 0.736621 ]\n", + " [-30.862993 0.736621 ]\n", + " [ -2.085493 29.514121 ]\n", + " [ -7.461493 29.514121 ]\n", + " [-12.837493 29.514121 ]\n", + " [-18.213493 29.514121 ]\n", + " [-23.589493 29.514121 ]\n", + " [-28.965493 29.514121 ]\n", + " [ -2.085493 24.138121 ]\n", + " [ -7.461493 24.138121 ]\n", + " [-12.837493 24.138121 ]\n", + " [-18.213493 24.138121 ]\n", + " [-23.589493 24.138121 ]\n", + " [-28.965493 24.138121 ]\n", + " [ -2.085493 18.762121 ]\n", + " [ -7.DEBUG:root:radec2pix: lat: [77.96328192 79.56853071 81.20563621 82.86944579 84.55492216 86.25697831\n", + " 87.97026012 89.68446141 77.96328192 77.84499787 77.51456239 76.99218852\n", + " 76.30618444 75.48813083 74.56921129 73.5781677 89.68446141 88.18737722\n", + " 86.48534608 84.7856574 83.09971795 81.43388184 79.79360686 78.18420142\n", + " 73.5781677 74.59165918 75.53717808 76.38588844 77.10603256 77.66476376\n", + " 78.03174302 78.18420142 78.65888684 80.64836049 82.6805387 84.74610355\n", + " 86.83565024 88.93857815 77.94403081 77.65435125 77.06482717 76.22448951\n", + " 75.19110028 74.0211233 89.125335 87.06142445 84.97647052 82.91045242\n", + " 80.87550158 78.88161748 74.03033777 75.2306137 76.3004884 77.18265224\n", + " 77.81700171 78.15051889 77.96868077 77.96868077 78.18950618 78.18950618\n", + " 78.63240168 78.32169564 77.69220555 76.80049546 75.71119975 74.48541744\n", + " 80.6152305 80.22940153 79.46186211 78.40069669 77.13562878 75.74187621\n", + " 82.63719517 82.13946169 81.18123393 79.90730671 78.44079679 76.86879929\n", + " 84.68476231 84.00240554461493 18.762121 ]\n", + " [-12.837493 18.762121 ]\n", + " [-18.213493 18.762121 ]\n", + " [-23.589493 18.762121 ]\n", + " [-28.965493 18.762121 ]\n", + " [ -2.085493 13.386121 ]\n", + " [ -7.461493 13.386121 ]\n", + " [-12.837493 13.386121 ]\n", + " [-18.213493 13.386121 ]\n", + " [-23.589493 13.386121 ]\n", + " [-28.965493 13.386121 ]\n", + " [ -2.085493 8.010121 ]\n", + " [ -7.461493 8.010121 ]\n", + " [-12.837493 8.010121 ]\n", + " [-18.213493 8.010121 ]\n", + " [-23.589493 8.010121 ]\n", + " [-28.965493 8.010121 ]\n", + " [ -2.085493 2.634121 ]\n", + " [ -7.461493 2.634121 ]\n", + " [-12.837493 2.634121 ]\n", + " [-18.213493 2.634121 ]\n", + " [-23.589493 2.634121 ]\n", + " [-28.965493 2.634121 ]]\n", + "DEBUG:root:mm_to_pix: fitpx.shape: (96, 2)\n", + "DEBUG:root:make_az_asym: xyp: shape: (96, 2)\n", + "DEBUG:root:radec2pix: fitpx: [[2135.5 4155.50000026]\n", + " [2135.5 3863.07142876]\n", + " [2135.5 3570.64285709]\n", + " [2135.5 3278.21428545]\n", + " [2135.5 2985.7857141 ]\n", + " [2135.49999999 2693.35714316]\n", + " [2135.50000001 2400.9285712 ]\n", + " [2135.49999993 2108.50000021]\n", + " [2135.5 4155.50000026]\n", + " [1843.07142855 4155.50000013]\n", + " [1550.64285715 4155.49999996]\n", + " [1258.2142856 4155.50000027]\n", + " [ 965.78571429 4155.49999999]\n", + " [ 673.357143 4155.4999998 ]\n", + " [ 380.92857155 4155.49999986]\n", + " [ 88.49999976 4155.50000025]\n", + " [2135.49999993 2108.50000021]\n", + " [1843.07142817 2108.50000006]\n", + " [1550.64285738 2108.49999998]\n", + " [1258.21428605 2108.49999998]\n", + " [ 965.78571448 2108.49999999]\n", + " [ 673.35714251 2108.50000001]\n", + " [ 380.92857138 2108.5 ]\n", + " [ 88.50000013 2108.5 ]\n", + " [ 88.49999976 4155.50000025]\n", + " [ 88.49999974 3863.0714288 ]\n", + " [ 88.49999989 3570.64285722]\n", + " [ 88.50000025 3278.21428557]\n", + " [ 88.50000013 2985.78571423]\n", + " [ 88.49999977 2693.35714293]\n", + " [ 88.49999999 2400.92857143]\n", + " [ 88.50000013 2108.5 ]\n", + " [2134.5 4028.00000018]\n", + " [2134.5 3669.59999979]\n", + " [2134.5 3311.20000021]\n", + " [2134.5 2952.80000004]\n", + " [2134.5 2594.39999994]\n", + " [2134.50000001 2235.99999988]\n", + " [2007.99999999 4154.50000011]\n", + " [1649.6 82.77130238 81.23639689 79.55203729 77.80444657\n", + " 86.73357497 85.70054621 84.08633958 82.26535796 80.37757677 78.48177609\n", + " 88.66315983 86.89328024 84.87745159 82.8411917 80.82286686 78.83968928]\n", + "DEBUG:root:radec2pix: lat: [78.01259544 79.61854981 81.2561548 82.92023352 84.60572556 86.30750292\n", + " 88.02000573 89.72623162 78.01259544 77.8905989 77.5557472 77.02861409\n", + " 76.33783962 75.51523956 74.59210732 73.59715789 89.72623162 88.17123291\n", + " 86.46586111 84.76551164 83.07960166 81.41406813 79.77423864 78.16538766\n", + " 73.59715789 74.60763881 75.5491728 76.39298182 77.10737428 77.65965515\n", + " 78.01977483 78.16538766 78.70852006 80.69871958 82.73128852 84.79686317\n", + " 86.88594315 88.98689611 77.99183548 77.69708601 77.10179122 76.25561048\n", + " 75.21673598 74.0417777 89.11867119 87.04263922 84.95641064 82.89040132\n", + " 80.8558565 78.86257349 74.04815363 75.2440736 76.30818941 77.18330532\n", + " 77.80960312 78.1346569 78.0179859 78.0179859 78.1707132 78.1707132\n", + " 78.68041726 78.36422733 77.72853599 76.83064382DEBUG:root:radec2pix: curVec: [[-0.31799781 -0.56127299 0.76410079]\n", + " [-0.34316533 -0.55949751 0.75445351]\n", + " [-0.36861768 -0.5571367 0.74412345]\n", + " [-0.39422893 -0.55418955 0.73311492]\n", + " [-0.41987862 -0.55065845 0.72144107]\n", + " [-0.44545149 -0.54654933 0.70912397]\n", + " [-0.47083718 -0.54187201 0.69619471]\n", + " [-0.49593024 -0.53664063 0.68269322]\n", + " [-0.31799781 -0.56127299 0.76410079]\n", + " [-0.31938768 -0.53909595 0.77933758]\n", + " [-0.3207129 -0.51601818 0.79427229]\n", + " [-0.32193934 -0.49211793 0.80881086]\n", + " [-0.3230389 -0.46747726 0.82286747]\n", + " [-0.32398951 -0.44218236 0.83636449]\n", + " [-0.32477485 -0.41632396 0.84923239]\n", + " [-0.32538399 -0.3899976 0.86140997]\n", + " [-0.49593024 -0.53664063 0.68269322]\n", + " [-0.49918997 -0.5134963 0.69794766]\n", + " [-0.50211762 -0.48946589 0.71295234]\n", + " [-0.50467884 -0.46462309 0.72761573]\n", + " [-0.50684453 -0.43904611 0.74185385]\n", + " [-0.50859081 -0.41281944 0.7555895 ]\n", + " [-0.50989918 -0.38603491 0.76875216]\n", + " [-0.51075672 -0.35879177 0.78127847]\n", + " [-0.32538399 -0.3899976 0.86140997]\n", + " [-0.35175206 -0.38667816 0.85249662]\n", + " [-0.3783549 -0.38297514 0.84272036]\n", + " [-0.40507113 -0.37888702 0.83208293]\n", + " [-0.43178331 -0.37441598 0.82059481]\n", + " [-0.45837651 -0.36956839 0.80827605]\n", + " [-0.48473776 -0.36435513 0.79515699]\n", + " [-0.51075672 -0.35879177 0.78127847]\n", + " [-0.32893294 -0.56049609 0.76003109]\n", + " [-0.35998735 -0.55792587 0.74774851]\n", + " [-0.39134381 -0.55447519 0.73444352]\n", + " [-0.42277827 -0.55014705 0.72013662]\n", + " [-0.45407851 -0.5449524 0.70486849]\n", + " [-0.48504341 -0.5389111 0.68870002]\n", + " [-0.31869524 -0.55171391 0.77074322]\n", + " [-0.32036104 -0.52391733 0.78922711]\n", + " [-0.32189496 -0.49484513 0.80716289]\n", + " [-0.32324274 -0.4646468 0.82438916]\n", + " [-0.32436373 -0.43348103 0.84076297]\n", + " [-0.32523015 -0.40151688 0.85615977]\n", + " [-0.49730435 -0.52668204 0.68941599]\n", + " [-0.50107992 -0.49771152 0.70795632]\n", + " [-0.50432212 -0.46748286 0.7260296 ]\n", + " [-0.50697522 -0.43613805 0.74347812]\n", + " [-0.50899531 -0.40383278 0.76015976]\n", + " [-0.5103506 -0.37073921 0.77594762]\n", + " [-0.3368419 -0.3886883 0.85758903]\n", + " [-0.36933203 -0.3843633 0.84608433]\n", + " [-0.40205366 -0.37946007 0.83328441]\n", + " [-0.43478906 -0.37398109 0.81920487]\n", + " [-0.46732655 -0.3679381 0.80388273]\n", + " [-0.49945923 -0.36135307 0.7873782 ]\n", + " [-0.31808806 -0.5611937 0.76412147]\n", + " [-0.31808806 -0.5611937 0.76412147]\n", + " [-0.51066629 -0.3589052 0.78128548]\n", + " [-0.51066629 -0.3589052 0.78128548]\n", + " [-0.32960011 -0.5509751 0.76667478]\n", + " [-0.33141608 -0.52306097 0.7852201 ]\n", + " [-0.33307079 -0.4938698 0.80321632]\n", + " [-0.33451022 -0.46355061 0.82050213]\n", + " [-0.33569406 -0.43226174 0.83693446]\n", + " [-0.33659484 -0.40017226 0.85238845]\n", + " [-0.36081855 -0.54829926 0.75443879]\n", + " [-0.36304487 -0.52008512 0.77311699]\n", + " [-0.36502969 -0.49059167 0.79124784]\n", + " [-0.36671977 -0.45996611 0.80867038]\n", + " [-0.36807565 -0.42836572 0.82524126]\n", + " [-0.36907039 -0.39595984 0.84083462]\n", + " [-0.39233041 -0.54475938 0.74115725]\n", + " [-0.39494581 -0.51629365 0.75990702]\n", + " [-0.39724445 -0.48654863 0.77811778]\n", + " [-0.39917357 -0.45566957 0.79562913]\n", + " [-0.40069385 -0.42381279 0.81229746]\n", + " [-0.40177825 -0.39114817 0.82799598]\n", + " [-0.42391201 -0.54035813 0.72685053]\n", + " [-0.42689668 -0.51168807 0.74561018]\n", + " [-0.42949444 -0.48174127 0.76384545]\n", + " [-0.43165233 -0.45066125 0.78139664]\n", + " [-0.43333037 -0.41860369 0.79812013]\n", + " [-0.43450064 -0.38573919 0.81388848]\n", + " [-0.45535131 -0.53510601 0.71155938]\n", + " [-0.45868591 -0.50627768 0.73026717]\n", + " [-0.46156835 -0.47617811 0.74847115]\n", + " [-0.46394476 -0.4449497 0.76601242]\n", + " [-0.46577374 -0.41274786 0.78274774]\n", + " [-0.46702592 -0.37974396 0.7985495 ]\n", + " [-0.48644697 -0.52902252 0.69534489]\n", + " [-0.49011131 -0.50008115 0.71393959]\n", + " [-0.49326273 -0.46987755 0.73205667]\n", + " [-0.49584601 -0.43855369 0.74953812]\n", + " [-0.49781791 -0.40626512 0.76624147]\n", + " [-0.49914728 -0.37318384 0.78203952]]\n", + " 4154.5 ]\n", + " [1291.20000005 4154.49999987]\n", + " [ 932.80000005 4154.49999992]\n", + " [ 574.4 4154.5 ]\n", + " [ 216. 4154.5 ]\n", + " [2008.00000002 2109.49999999]\n", + " [1649.60000012 2109.49999999]\n", + " [1291.19999984 2109.50000001]\n", + " [ 932.79999968 2109.50000001]\n", + " [ 574.39999959 2109.50000001]\n", + " [ 215.99999972 2109.50000001]\n", + " [ 89.4999999 4028.0000001 ]\n", + " [ 89.50000007 3669.59999994]\n", + " [ 89.49999997 3311.20000002]\n", + " [ 89.50000023 2952.7999999 ]\n", + " [ 89.49999997 2594.40000001]\n", + " [ 89.4999998 2236.00000002]\n", + " [2134.5 4154.50000005]\n", + " [2134.5 4154.50000005]\n", + " [ 89.49999997 2109.5 ]\n", + " [ 89.49999997 2109.5 ]\n", + " [2008. 4027.99999997]\n", + " [1649.59999996 4028.00000014]\n", + " [1291.20000001 4027.99999998]\n", + " [ 932.79999987 4028.00000021]\n", + " [ 574.40000006 4027.99999993]\n", + " [ 215.9999998 4028.0000002 ]\n", + " [2008. 3669.59999996]\n", + " [1649.60000001 3669.59999998]\n", + " [1291.20000007 3669.59999987]\n", + " [ 932.79999997 3669.60000004]\n", + " [ 574.39999998 3669.60000002]\n", + " [ 215.99999986 3669.60000012]\n", + " [2008. 3311.20000004]\n", + " [1649.59999995 3311.20000012]\n", + " [1291.19999997 3311.20000005]\n", + " [ 932.80000015 3311.19999984]\n", + " [ 574.40000003 3311.19999997]\n", + " [ 216.00000001 3311.2 ]\n", + " [2007.99999998 2952.800000 75.73566662 74.50486571\n", + " 80.66353948 80.27068815 79.49543516 78.42701765 77.15572991 75.75689035\n", + " 82.68520532 82.17800874 81.21001267 79.9277617 78.4547664 76.877901\n", + " 84.73149404 84.03535931 82.79194264 81.24820065 79.5578398 77.80619197\n", + " 86.77660248 85.72142555 84.09351686 82.26517071 80.37322779 78.47497463\n", + " 88.68716566 86.88752222 84.86498838 82.8264064 80.80719889 78.82380063]\n", + "DEBUG:root:radec2pix: fitpx: [[-4.99999744e-01 -4.99999751e-01]\n", + " [-5.00000258e-01 2.91928571e+02]\n", + " [-5.00000005e-01 5.84357143e+02]\n", + " [-4.99999941e-01 8.76785714e+02]\n", + " [-4.99999889e-01 1.16921429e+03]\n", + " [-4.99999948e-01 1.46164286e+03]\n", + " [-5.00000143e-01 1.75407143e+03]\n", + " [-4.99999962e-01 2.04650000e+03]\n", + " [-4.99999744e-01 -4.99999751e-01]\n", + " [ 2.91928571e+02 -5.00000271e-01]\n", + " [ 5.84357143e+02 -4.99999959e-01]\n", + " [ 8.76785714e+02 -5.00000035e-01]\n", + " [ 1.16921429e+03 -5.00000130e-01]\n", + " [ 1.46164286e+03 -5.00000295e-01]\n", + " [ 1.75407143e+03 -5.00000131e-01]\n", + " [ 2.04650000e+03 -5.00000000e-01]\n", + " [-4.99999962e-01 2.014]\n", + " [1649.60000006 2952.7999999 ]\n", + " [1291.20000015 2952.79999984]\n", + " [ 932.80000014 2952.7999999 ]\n", + " [ 574.39999986 2952.80000008]\n", + " [ 215.99999973 2952.80000012]\n", + " [2007.99999998 2594.40000007]\n", + " [1649.60000022 2594.39999977]\n", + " [1291.20000005 2594.39999997]\n", + " [ 932.79999996 2594.40000002]\n", + " [ 574.39999995 2594.40000002]\n", + " [ 216.00000004 2594.39999999]\n", + " [2008.00000021 2235.99999975]\n", + " [1649.59999975 2236.00000009]\n", + " [1291.20000026 2235.99999995]\n", + " [ 932.79999972 2236.00000004]\n", + " [ 574.39999974 2236.00000003]\n", + " [ 216.00000028 2235.99999998]]\n", + "DEBUG:root:make_az_asym: xyp: shape: (96, 2)\n", + "DEBUG:root:radec2pix: curVec Shape: (96, 3)\n", + "4650000e+03]\n", + " [ 2.91928571e+02 2.04650000e+03]\n", + " [ 5.84357143e+02 2.04650000e+03]\n", + " [ 8.76785714e+02 2.04650000e+03]\n", + " [ 1.16921429e+03 2.04650000e+03]\n", + " [ 1.46164286e+03 2.04650000e+03]\n", + " [ 1.75407143e+03 2.04650000e+03]\n", + " [ 2.04650000e+03 2.04650000e+03]\n", + " [ 2.04650000e+03 -5.00000000e-01]\n", + " [ 2.04650000e+03 2.91928571e+02]\n", + " [ 2.04650000e+03 5.84357143e+02]\n", + " [ 2.04650000e+03 8.76785714e+02]\n", + " [ 2.04650000e+03 1.16921429e+03]\n", + " [ 2.04650000e+03 1.46164286e+03]\n", + " [ 2.04650000e+03 1.75407143e+03]\n", + " [ 2.04650000e+03 2.04650000e+03]\n", + " [ 4.99999741e-01 1.27000000e+02]\n", + " [ 4.99999873e-01 4.85400000e+02]\n", + " [ 4.99999712e-01 8.43800000e+02]\n", + " [ 5.00000277e-01 1.20220000e+03]\n", + " [ 5.00000282e-01 1.56060000e+03]\n", + " [ 4.99999780e-01 1.91900000e+03]\n", + " [ 1.27000000e+02 4.99999945e-01]\n", + " [ 4.85400000e+02 4.99999942e-01]\n", + " [ 8.43800000e+02 5.00000147e-01]\n", + " [ 1.20220000e+03 4.99999799e-01]\n", + " [ 1.56060000e+03 5.00000078e-01]\n", + " [ 1.91900000e+03 4.99999710e-01]\n", + " [ 1.27000000e+02 2.04550000e+03]\n", + " [ 4.85400000e+02 2.04550000e+03]\n", + " [ 8.43800000e+02 2.04550000e+03]\n", + " [ 1.20220000e+03 2.04550000e+03]\n", + " [ 1.56060000e+03 2.04550000e+03]\n", + " [ 1.91900000e+03 2.04550000e+03]\n", + " [ 2.04550000e+03 1.27000000e+02]\n", + " [ 2.04550000e+03 4.85400000e+02]\n", + " [ 2.04550000e+03 8.43800000e+02]\n", + " [ 2.04550000e+03 1.20220000e+03]\n", + " [ 2.04550000e+03 1.56060000e+03]\n", + " [ 2.04550000e+03 1.91900000e+03]\n", + " [ 5.00000247e-01 5.00000241e-01]\n", + " [ 5.00000247e-01 5.00000241e-01]\n", + " [ 2.04550000e+03 2.04550000e+03]\n", + " [ 2.04550000e+03 2.04550000e+03]\n", + " [ 1.27000000e+02 1.27000000e+02]\n", + " [ 4.85400000e+02 1.27000000e+02]\n", + " [ 8.43800000e+02 1.27000000e+02]\n", + " [ 1.20220000e+03 1.27000000e+02]\n", + " [ 1.56060000e+03 1.27000000e+02]\n", + " [ 1.91900000e+03 1.27000000e+02]\n", + " [ 1.27000000e+02 4.85400000e+02]\n", + " [ 4.85400000e+02 4.85400000e+02]\n", + " [ 8.43800000e+02 4.85400000e+02]\n", + " [ 1.20220000e+03 4.85400000e+02]\n", + " [ 1.56060000e+03 4.85400000e+02]\n", + " [ 1.91900000e+03 4.85400000e+02]\n", + " [ 1.27000000e+02 8.43800000e+02]\n", + " [ 4.85400000e+02 8.43800000e+02]\n", + " [ 8.43800000e+02 8.43800000e+02]\n", + " [ 1.20220000e+03 8.43800000e+02]\n", + " [ 1.56060000e+03 8.43800000e+02]\n", + " [ 1.91900000e+03 8.43800000e+02]\n", + " [ 1.27000000e+02 1.20220000e+03]\n", + " [ 4.85400000e+02 1.20220000e+03]\n", + " [ 8.43800000e+02 1.20220000e+03]\n", + " [ 1.20220000e+03 1.20220000e+03]\n", + " [ 1.56060000e+03 1.20220000e+03]\n", + " [ 1.91900000e+03 1.20220000e+03]\n", + " [ 1.27000000e+02 1.56060000e+03]\n", + " [ 4.85400000e+02 1.56060000e+03]\n", + " [ 8.43800000e+02 1.56060000e+03]\n", + " [ 1.20220000e+03 1.56060000e+03]\n", + " [ 1.56060000e+03 1.56060000e+03]\n", + " [ 1.91900000e+03 1.56060000e+03]\n", + " [ 1.27000000e+02 1.91900000e+03]\n", + " [ 4.85400000e+02 1.91900000e+03]\n", + " [ 8.43800000e+02 1.91900000e+03]\n", + " [ 1.20220000e+03 1.91900000e+03]\n", + " [ 1.56060000e+03 1.91900000e+03]\n", + " [ 1.91900000e+03 1.91900000e+03]]\n", + "DEBUG:root:fitpix2pix: ccdpx: shape: (96, 2)\n", + "DEBUG:root:radec2pix: xyfp: [[-32.203794 -31.5506227 ]\n", + " [-32.20328688 -27.16419416]\n", + " [-32.20277976 -22.77776561]\n", + " [-32.20227264 -18.39133707]\n", + " [-32.20176553 -14.00490853]\n", + " [-32.20125841 -9.61847999]\n", + " [-32.20075129 -5.23205144]\n", + " [-32.20024417 -0.8456229 ]\n", + " [-32.203794 -31.5506227 ]\n", + " [-27.81736545 -31.55112981]\n", + " [-23.43093691 -31.55163693]\n", + " [-19.04450837 -31.55214405]\n", + " [-14.65807983 -31.55265117]\n", + " [-10.27165129 -31.55315829]\n", + " [ -5.88522274 -31.5536654 ]\n", + " [ -1.4987942 -31.55417252]\n", + " [-32.20024417 -0.8456229 ]\n", + " [-27.81381563 -0.84613002]\n", + " [-23.42738708 -0.84663714]\n", + " [-19.04095854 -0.84714426]\n", + " [-14.65453 -0.84765137]\n", + " [-10.26810146 -0.84815849]\n", + " [ -5.88167292 -0.84866561]\n", + " [ -1.49524438 -0.84917273]\n", + " [ -1.4987942 -31.55417252]\n", + " [ -1.49828708 -27.16774398]\n", + " [ -1.49777997 -22.78131544]\n", + " [ -1.49727285 -18.39488689]\n", + " [ -1.49676573 -14.00845835]\n", + " [ -1.49625861 -9.62202981]\n", + " [ -1.49575149 -5.23560127]\n", + " [ -1.49524438 -0.84917273]\n", + " [-32.18857289 -29.63812445]\n", + " [-32.18795136 -24.26212448]\n", + " [-32.18732984 -18.88612452]\n", + " [-32.18670832 -13.51012455]\n", + " [-32.1860868 -8.13412459]\n", + " [-32.18546528 -2.75812462]\n", + " [-30.29129227 -31.5358438 ]\n", + " [-24.91529231 -31.53646533]\n", + " [-19.53929235 -31.53708685]\n", + " [-14.16329238 -31.53770837]\n", + " [ -8.78729242 -31.53832989]\n", + " [ -3.41129245 -31.53895142]\n", + " [-30.28774592 -0.86084401]\n", + " [-24.91174595 -0.86146553]\n", + " [-19.53574599 -0.86208705]\n", + " [-14.15974603 -0.86270858]\n", + " [ -8.78374606 -0.8633301 ]\n", + " [ -3.4077461 -0.86395162]\n", + " [ -1.5135731 -29.6416708 ]\n", + " [ -1.51295157 -24.26567084]\n", + " [ -1.51233005 -18DEBUG:root:fitpix2pix: ccdpx: shape: (96, 2)\n", + "DEBUG:root:fitpix2pix: visCut: True\n", + ".88967087]\n", + " [ -1.51170853 -13.51367091]\n", + " [ -1.51108701 -8.13767095]\n", + " [ -1.51046548 -2.76167097]\n", + " [-32.18879227 -31.53562444]\n", + " [-32.18879227 -31.53562444]\n", + " [ -1.51024611 -0.86417099]\n", + " [ -1.51024611 -0.86417099]\n", + " [-30.29107291 -29.63834382]\n", + " [-24.91507294 -29.63896534]\n", + " [-19.53907298 -29.63958686]\n", + " [-14.16307301 -29.64020839]\n", + " [ -8.78707305 -29.64082991]\n", + " [ -3.41107308 -29.64145143]\n", + " [-30.29045138 -24.26234385]\n", + " [-24.91445142 -24.26296538]\n", + " [-19.53845145 -24.2635869 ]\n", + " [-14.16245149 -24.26420842]\n", + " [ -8.78645152 -24.26482994]\n", + " [ -3.41045156 -24.26545147]\n", + " [-30.28982986 -18.88634389]\n", + " [-24.91382989 -18.88696541]\n", + " [-19.53782993 -18.88758693]\n", + " [-14.16182997 -18.88820846]\n", + " [ -8.78583 -18.88882997]\n", + " [ -3.40983004 -18.8894515 ]\n", + " [-30.28920834 -13.51034392]\n", + " [-24.91320837 -13.51096545]\n", + " [-19.53720841 -13.51158697]\n", + " [-14.16120844 -13.51220849]\n", + " [ -8.78520848 -13.51283002]\n", + " [ -3.40920852 -13.51345154]\n", + " [-30.288DEBUG:root:fitpix2pix: visCut: True\n", + "58681 -8.13434396]\n", + " [-24.91258685 -8.13496548]\n", + " [-19.53658688 -8.135587 ]\n", + " [-14.16058692 -8.13620852]\n", + " [ -8.78458696 -8.13683005]\n", + " [ -3.40858699 -8.13745157]\n", + " [-30.28796529 -2.75834399]\n", + " [-24.91196532 -2.75896552]\n", + " [-19.53596536 -2.75958704]\n", + " [-14.1599654 -2.76020856]\n", + " [ -8.78396543 -2.76083009]\n", + " [ -3.40796547 -2.76145161]]\n", + "DEBUG:root:radec2pix: xyfp: [[32.23341696 31.55141621]\n", + " [32.23194958 27.16498788]\n", + " [32.2304822 22.77855956]\n", + " [32.22901483 18.39213124]\n", + " [32.22754745 14.00570291]\n", + " [32.22608007 9.61927458]\n", + " [32.22461269 5.23284626]\n", + " [32.2231453 0.84641793]\n", + " [32.23341696 31.55141621]\n", + " [27.84698864 31.5528836 ]\n", + " [23.46056031 31.55435097]\n", + " [19.07413198 31.55581835]\n", + " [14.68770366 31.55728573]\n", + " [10.30127533 31.55875311]\n", + " [ 5.91484701 31.56022049]\n", + " [ 1.52841868 31.56168787]\n", + " [32.2231453 0.84641793]\n", + " [27.83671698 0.84788531]\n", + " [23.45028865 0.84935269]\n", + " [19.06386033 0.85082007]\n", + " [14.677432 0.85228745]\n", + " [10.29100367 0.85375483]\n", + " [ 5.90457535 0.85522221]\n", + " [ 1.51814702 0.85668959]\n", + " [ 1.52841868 31.56168787]\n", + " [ 1.5269513 27.17525955]\n", + " [ 1.52548392 22.78883122]\n", + " [ 1.52401654 18.4024029 ]\n", + " [ 1.52254916 14.01597457]\n", + " [ 1.52108178 9.62954624]\n", + " [ 1.5196144 5.24311792]\n", + " [ 1.51814702 0.85668959]\n", + " [32.21777718 29.63892134]\n", + " [32.21597876 24.26292164]\n", + " [32.21418034 18.88692194]\n", + " [32.21238193 13.51092224]\n", + " [32.21058351 8.13492254]\n", + " [32.20878509 2.75892284]\n", + " [30.32091205 31.53705599]\n", + " [24.94491236 31.53885442]\n", + " [19.56891265 31.54065283]\n", + " [14.19291295 31.54245125]\n", + " [ 8.81691325 31.54424967]\n", + " [ 3.44091356 31.54604808]\n", + " [30.31065043 0.86205771]\n", + " [24.93465073 0.86385613]\n", + " [19.55865103 0.86565455]\n", + " [14.18265134 0.86745297]\n", + " [ 8.80665163 0.86925139]\n", + " [ 3.43065193 0.8710498 ]\n", + " [ 1.5427789 29.64918296]\n", + " [ 1.54098048 24.27318326]\n", + " [ 1.53918206 18.89718357]\n", + " [ 1.53738364 13.52118387]\n", + " [ 1.53558522 8.14518416]\n", + " [ 1.5337868 2.76918446]\n", + " [32.21841195 31.53642123]\n", + " [32.21841195 31.53642123]\n", + " [ 1.53315204 0.87168457]\n", + " [ 1.53315204 0.87168457]\n", + " [30.32027729 29.6395561 ]\n", + " [24.94427759 29.64135452]\n", + " [19.56827789 29.64315294]\n", + " [14.19227819 29.64495136]\n", + " [ 8.81627849 29.64674978]\n", + " [ 3.44027879 29.6485482 ]\n", + " [30.31847887 24.2635564 ]\n", + " [24.94247917 24.26535482]\n", + " [19.56647947 24.26715324]\n", + " [14.19047977 24.26895166]\n", + " [ 8.81448007 24.27075007]\n", + " [ 3.43848037 24.2725485 ]\n", + " [30.31668045 18.8875567 ]\n", + " [24.94068075 18.88935513]\n", + " [19.56468105 18.89115354]\n", + " [14.18868135 18.89295196]\n", + " [ 8.81268165 18.89475038]\n", + " [ 3.43668195 18.89654879]\n", + " [30.31488203 13.51155701]\n", + " [24.93888233 13.51335542]\n", + " [19.56288263 13.51515384]\n", + " [14.18688293 13.51695226]\n", + " [ 8.81088324 13.51875068]\n", + " [ 3.43488354 13.5205491 ]\n", + " [30.31308361 8.13555731]\n", + " [24.93708392 8.13735572]\n", + " [19.56108422 8.13915414]\n", + " [14.18508451 8.14095256]\n", + " [ 8.80908482 8.14275098]\n", + " [ 3.43308512 8.1445494 ]\n", + " [30.31128519 2.75955761]\n", + " [24.93528549 2.76135602]\n", + " [19.5592858 2.76315444]\n", + " [14.18328609 2.76495286]\n", + " [ 8.8072864 2.76675128]\n", + " [ 3.4312867 2.7685497 ]]\n", + "DEBUG:root:radec2pix: xyfp: [[ -0.172993 31.426621 ]\n", + " [ -0.172993 27.04019243]\n", + " [ -0.172993 22.65376385]\n", + " [ -0.172993 18.26733528]\n", + " [ -0.172993 13.88090671]\n", + " [ -0.172993 9.49447814]\n", + " [ -0.172993 5.10804957]\n", + " [ -0.172993 0.721621 ]\n", + " [ -0.172993 31.426621 ]\n", + " [ -4.55942157 31.426621 ]\n", + " [ -8.94585014 31.426621 ]\n", + " [-13.33227871 31.426621 ]\n", + " [-17.71870729 31.426621 ]\n", + " [-22.10513586 31.426621 ]\n", + " [-26.49156443 31.426621 ]\n", + " [-30.877993 31.426621 ]\n", + " [ -0.172993 0.721621 ]\n", + " [ -4.55942157 0.721621 ]\n", + " [ -8.94585014 0.721621 ]\n", + " [-13.33227872 0.721621 ]\n", + " [-17.71870728 0.721621 ]\n", + " [-22.10513586 0.721621 ]\n", + " [-26.49156443 0.721621 ]\n", + " [-30.877993 0.721621 ]\n", + " [-30.877993 31.426621 ]\n", + " [-30.877993 27.04019243]\n", + " [-30.877993 22.65376385]\n", + " [-30.877993 18.26733529]\n", + " [-30.877993 13.88090671]\n", + " [-30.877993 9.49447814]\n", + " [-30.877993 5.10804957]\n", + " [-30.877993 0.721621 ]\n", + " [ -0.187993 29.514121 ]\n", + " [ -0.187993 24.138121 ]\n", + " [ -0.187993 18.76212101]\n", + " [ -0.187993 13.386121 ]\n", + " [ -0.187993 8.010121 ]\n", + " [ -0.187993 2.634121 ]\n", + " [ -2.085493 31.411621 ]\n", + " [ -7.461493 31.411621 ]\n", + " [-12.837493 31.411621 ]\n", + " [-18.213493 31.411621 ]\n", + " [-23.589493 31.411621 ]\n", + " [-28.965493 31.411621 ]\n", + " [ -2.085493 0.736621 ]\n", + " [ -7.461493 0.736621 ]\n", + " [-12.837493 0.736621 ]\n", + " [-18.213493 0.736621 ]\n", + " [-23.58949299 0.736621 ]\n", + " [-28.965493 0.736621 ]\n", + " [-30.862993 29.514121 ]\n", + " [-30.862993 24.138121 ]\n", + " [-30.862993 18.762121 ]\n", + " [-30.862993 13.386121 ]\n", + " [-30.862993 8.010121 ]\n", + " [-30.862993 2.634121 ]\n", + " [ -0.187993 31.411621 ]\n", + " [ -0.187993 31.411621 ]\n", + " [-30.862993 0.736621 ]\n", + " [-30.862993 0.736621 ]\n", + " [ -2.085493 29.514121 ]\n", + " [ -7.461493 29.514121 ]\n", + " [-12.837493 29.514121 ]\n", + " [-18.213493 29.514121 ]\n", + " [-23.589493 29.514121 ]\n", + " [-28.965493 29.514121 ]\n", + " [ -2.085493 24.138121 ]\n", + " [ -7.461493 24.138121 ]\n", + " [-12.837493 24.138121 ]\n", + " [-18.213493 24.138121 ]\n", + " [-23.589493 24.138121 ]\n", + " [-28.965493 24.138121 ]\n", + " [ -2.085493 18.762121 ]\n", + " [ -7.461493 18.762121 ]\n", + " [-12.837493 18.762121 ]\n", + " [-18.213493 18.762121 ]\n", + " [-23.589493 18.762121 ]\n", + " [-28.965493 18.762121 ]\n", + " [ -2.085493 13.386121 ]\n", + " [ -7.461493 13.386121 ]\n", + " [-12.837493 13.386121 ]\n", + " [-18.213493 13.386121 ]\n", + " [-23.589493 13.386121 ]\n", + " [-28.965493 13.386121 ]\n", + " [ -2.085493 8.010121 ]\n", + " [ -7.461493 8.010121 ]\n", + " [-12.837493 8.010121 ]\n", + " [-18.213493 8.010121 ]\n", + " [-23.589493 8.010121 ]\n", + " [-28.965493 8.010121 ]\n", + " [ -2.085493 2.634121 ]\n", + " [ -7.461493 2.634121 ]\n", + " [-12.837493 2.634121 ]\n", + " [-18.213493 2.634121 ]\n", + " [-23.589493 2.634121 ]\n", + " [-28.965493 2.634121 ]]\n", + "DEBUG:root:radec2pix: xyfp Shape: (96, 2)\n", + "DEBUG:root:radec2pix: camVec: [[-0.20607518 -0.20787446 -0.20940354 -0.21066179 -0.21164814 -0.21236112\n", + " -0.21279916 -0.21296107 -0.20607518 -0.17964954 -0.15251864 -0.12479221\n", + " -0.09658011 -0.06799262 -0.03914089 -0.01013708 -0.21296107 -0.18561075\n", + " -0.15755214 -0.12888979 -0.09972928 -0.07017922 -0.04035219 -0.01036463\n", + " -0.01013708 -0.01020871 -0.01026764 -0.01031373 -0.01034674 -0.01036638\n", + " -0.0103724 -0.01036463 -0.20680345 -0.20882603 -0.21044235 -0.21165063\n", + " -0.2124482 -0.2128323 -0.19465346 -0.16177694 -0.12795009 -0.0933751\n", + " -0.05825505 -0.022795 -0.20112996 -0.16711987 -0.13214975 -0.09641349\n", + " -0.0601111 -0.02345151 -0.01026957 -0.0103498 -0.01041065 -0.01045169\n", + " -0.01047241 -0.01047238 -0.20599275 -0.20599275 -0.01046737 -0.01046737\n", + " -0.19541667 -0.16240545 -0.12844349 -0.09373247 -0.05847519 -0.02287686\n", + " -0.19732118 -0.16397526 -0.12967711 -0.09462661 -0.05902568 -0.02308015\n", + " -0.19884383 -0.16523235 -0.13066656 -0.09534433 -0.05946678 -0.02324061\n", + " -0.19998259 -0.16617376 -0.13140827 -0.09588212 -0.05979589 -0.0233572\n", + " -0.20073433 -0.16679525 -0.13189744 -0.09623556 -0.06000982 -0.02342863\n", + " -0.20109DEBUG:root:radec2pix: xyfp Shape: (96, 2)\n", + "591 -0.16709274 -0.13212968 -0.09640067 -0.06010576 -0.0234538 ]\n", + " [-0.20019593 -0.17367087 -0.14646307 -0.11868235 -0.09043873 -0.0618427\n", + " -0.03300558 -0.0040396 -0.20019593 -0.20202839 -0.20359907 -0.20490731\n", + " -0.20595196 -0.20673135 -0.20724368 -0.20748743 -0.0040396 -0.00409191\n", + " -0.0041395 -0.00418225 -0.00421998 -0.00425248 -0.00427955 -0.00430103\n", + " -0.20748743 -0.17998755 -0.15180051 -0.12303089 -0.0937848 -0.06417157\n", + " -0.03430461 -0.00430103 -0.18872819 -0.15574492 -0.12184525 -0.0872316\n", + " -0.05210744 -0.0166781 -0.20093724 -0.20300612 -0.20468137 -0.20596106\n", + " -0.20684219 -0.20732153 -0.00416252 -0.00422448 -0.00427905 -0.00432591\n", + " -0.00436469 -0.00439503 -0.19558822 -0.16140908 -0.12630166 -0.09046055\n", + " -0.05408714 -0.0173918 -0.20011322 -0.20011322 -0.00440367 -0.00440367\n", + " -0.18950334 -0.19145029 -0.19302803 -0.19423441 -0.195066 -0.19551916\n", + " -0.15638145 -0.15798254 -0.1592836 -0.16028164 -0.16097217 -0.16135064\n", + " -0.12DEBUG:root:optics_fp: rtanth: [31.49183295 27.10547639 22.71914763 18.33286663 13.94667845 9.56071086\n", + " 5.17552468 0.80400903 31.49183295 31.81893962 32.73584893 34.19514883\n", + " 36.13117923 38.47203574 41.14868729 44.10003298 0.80400903 4.62123428\n", + " 8.97478096 13.34987234 17.73056686 22.11353481 26.49764807 30.88241889\n", + " 44.10003298 41.08265104 38.3306279 35.90503258 33.87605653 32.31848632\n", + " 31.30277019 30.88241889 29.57945042 24.20357534 18.8277716 13.45212473\n", + " 8.07694792 2.70504492 31.5450314 32.34738816 33.9914811 36.36331677\n", + " 39.33145785 42.7719429 2.22895212 7.49884938 12.85690509 18.22553229\n", + " 23.59751677 28.97099101 42.74447401 39.21682332 36.14735337 33.66163739\n", + " 31.89644588 30.97520686 31.47691651 31.47691651 30.86780955 30.86780955\n", + " 29.6519244 30.50411668 32.24233865 34.73382242 37.83003027 41.39549146\n", + " 24.29209321 25.32528987 27.39411567 30.28708623 33.79319995 37.74196451\n", + " 18.94142858 20.24949953 22.78397459 26.19121067 30.17701587 34.5416822\n", + " 13.61074549 15.37910619 18.5898944 22.63745111 27.1500822 31.93121491\n", + " 8.33845435 10.99064764 15.16118736 19.91812291 24.9279841 30.06459569\n", + " 3.40734519 7.92934524 13.11265734 18.40684115 23.73782997 29.08539314]\n", + "234264 -0.1235961 -0.12461804 -0.12540495 -0.1259519 -0.1262541\n", + " -0.08758892 -0.08849133 -0.08922984 -0.08980108 -0.09020062 -0.09042422\n", + " -0.05232353 -0.0528708 -0.053321 -0.05367171 -0.05391982 -0.0540624\n", + " -0.016752 -0.01694088 -0.01709901 -0.01722548 -0.01731915 -0.01737894]\n", + " [ 0.95783851 0.96261448 0.96679818 0.97032784 0.97315256 0.9752324\n", + " 0.97653835 0.97705233 0.95783851 0.96276195 0.96710159 0.97079344\n", + " 0.97378441 0.97603235 0.97750603 0.97818516 0.97705233 0.98261483\n", + " 0.98750199 0.99165011 0.99500566 0.99752533 0.99917635 0.99993704\n", + " 0.97818516 0.98361591 0.98835782 0.99234925 0.99553873 0.99788504\n", + " 0.9993576 0.99993704 0.96000729 0.96547149 0.96998338 0.97344474\n", + " 0.97578203 0.97694639 0.96006992 0.96572084 0.97042996 0.974095DEBUG:root:optics_fp: rtanth: [31.36436077 26.97807037 22.59183361 18.20568928 13.8197254 9.43419362\n", + " 5.05021974 0.69781153 31.36436077 31.70156673 32.63030877 34.10229142\n", + " 36.05103355 38.40402676 41.09188526 44.05335752 0.69781153 4.66402697\n", + " 9.02778296 13.40634529 17.78878395 22.17280059 26.55761376 30.94288484\n", + " 44.05335752 41.04621131 38.30621526 35.89459992 33.88155828 32.34160155\n", + " 31.34453543 30.94288484 29.45203736 24.07626653 18.70062748 13.32527965\n", + " 7.95081375 2.58274138 31.42169962 32.23771351 33.8971959 36.28460223\n", + " 39.26738572 42.72102005 2.2467047 7.54947995 12.91295338 18.28378612\n", + " 23.65696634 29.03119064 42.70202201 39.18809499 36.13521339 33.66902518\n", + " 31.92578297 31.02758019 31.34947523 31.34947523 30.92821126 30.92821126\n", + " 29.52890302 30.39577404 32.15047118 34.65840831 37.76983569 41.34874196\n", + " 24.17023416 25.22195839 27.31111317 30.22332497 33.74617895 37.70891894\n", + " 18.82145258 20.1542562 22.71439544 26.14376082 30.14716324 34.52548949\n", + " 13.49432055 15.2984853 18.54166578 22.61295734 27.14223759 31.93523187\n", + " 8.23098104 10.94056736 15.14746618 19.92481371 24.9470123 30.09171641\n", + " 3.34726194 7.94676841 13.14917661 18.45137705 23.78673027 29.13702987]\n", + "03\n", + " 0.97663845 0.97800724 0.97955572 0.98592753 0.99122053 0.99533197\n", + " 0.99818215 0.99971531 0.98063234 0.98683331 0.99193725 0.99584519\n", + " 0.9984813 0.99979391 0.95787352 0.95787352 0.99993552 0.99993552\n", + " 0.9622374 0.96797276 0.97274994 0.9764667 0.97904541 0.98043302\n", + " 0.96778572 0.97373181 0.978679 0.98252511 0.98519233 0.98662722\n", + " 0.97236485 0.97847957 0.98356321 0.98751357 0.9902524 0.99172566\n", + " 0.9758766 0.9821179 0.98730436 0.99133364 0.9941269 0.9956294\n", + " 0.9782474 0.98457302 0.98982824 0.99391049 0.99674043 0.99826267\n", + " 0.97942831 0.98579563 0.99108495 0.99519355 0.99804176 0.99957386]]\n", + "DEBUG:root:radec2pix: ccdpx: [[-4.45000001e+01 -5.00000132e-01]\n", + " [-4.45000001e+01 2.91928571e+02]\n", + " [-4.44999999e+01 5.84357143e+02]\n", + " [-4.44999998e+01 8.76785714e+02]\n", + " [-4.45000000e+01 1.16921429e+03]\n", + " [-4.45000002e+01 1.46164286e+03]\n", + " [-4.44999998e+01 1.75407143e+03]\n", + " [-4.44999999e+01 2.04650000e+03]\n", + " [-4.45000001e+01 -5.00000132e-01]\n", + " [ 2.47928572e+02 -4.99999845e-01]\n", + " [ 5.40357143e+02 -5.00000146e-01]\n", + " [ 8.32785714e+02 -4.99999843e-01]\n", + " [ 1.12521429e+03 -4.99999832e-01]\n", + " [ 1.41764286e+03 -5.00000031e-01]\n", + " [ 1.71007143e+03 -5.00000120e-01]\n", + " [ 2.00250000e+03 -4.99999883e-01]\n", + " [-4.44999999e+01 2.04650000e+03]\n", + " [ 2.47928572e+02 2.04650000e+03]\n", + " [ 5.40357143e+02 2.04650000e+03]\n", + " [ 8.32785714e+02 2.04650000e+03]\n", + " [ 1.12521429e+03 2.04650000e+03]\n", + " [ 1.41764286e+03 2.04650000e+03]\n", + " [ 1.71007143e+03 2.04650000e+03]\n", + " [ 2.00250000e+03 2.04650000e+03]\n", + " [ 2.00250000e+03 -4.99999883e-01]\n", + " [ 2.00250000e+03 2.91928571e+02]\n", + " [ 2.00250000e+03 5.84357143e+02]\n", + " [ 2.00250000e+03 8.76785714e+02]\n", + " [ 2.00250000e+03 1.16921429e+03]\n", + " [ 2.00250000e+03 1.46164286e+03]\n", + " [ 2.00250000e+03 1.75407143e+03]\n", + " [ 2.00250000e+03 2.04650000e+03]\n", + " [-4.35000002e+01 1.27000000e+02]\n", + " [-4.34999998e+01 4.85400000e+02]\n", + " [-4.34999999e+01 8.43800000e+02]\n", + " [-4.35000001e+01 1.20220000e+03]\n", + " [-4.34999999e+01 1.56060000e+03]\n", + " [-4.35000000e+01 1.91900000e+03]\n", + " [ 8.30000001e+01 5.00000120e-01]\n", + " [ 4.41400000e+02 4.99999839e-01]\n", + " [ 7.99800000e+02 4.99999975e-01]\n", + " [ 1.15820000e+03 5.00000060e-01]\n", + " [ 1.51660000e+03 5.00000260e-01]\n", + " [ 1.87500000e+03 4.99999701e-01]\n", + " [ 8.29999997e+01 2.04550000e+03]\n", + " [ 4.41400000e+02 2.04550000e+03]\n", + " [ 7.99800000e+02 2.04550000e+03]\n", + " [ 1.15820000e+03 2.04550000e+03]\n", + " [ 1.51660000e+03 2.04550000e+03]\n", + " [ 1.87500000e+03 2.04550000e+03]\n", + " [ 2.00150000e+03 1.27000000e+02]\n", + " [ 2.00150000e+03 4.85400000e+02]\n", + " [ 2.00150000e+03 8.43800000e+02]\n", + " [ 2.00150000e+03 1.20220000e+03]\n", + " [ 2.00150000e+03 1.56060000e+03]\n", + " [ 2.00150000e+03 1.91900000e+03]\n", + " [-4.35000003e+01 4.99999746e-01]\n", + " [-4.35000003e+01 4.99999746e-01]\n", + " [ 2.00150000e+03 2.04550000e+03]\n", + " [ 2.00150000e+03 2.04550000e+03]\n", + " [ 8.29999998e+01 1.27000000e+02]\n", + " [ 4.41400000e+02 1.27000000e+02]\n", + " [ 7.99800000e+02 1.27000000e+02]\n", + " [ 1.15820000e+03 1.27000000e+02]\n", + " [ 1.51660000e+03 1.27000000e+02]\n", + " [ 1.87500000e+03 1.27000000e+02]\n", + " [ 8.30000000e+01 4.85400000e+02]\n", + " [ 4.41400000e+02 4.85400000e+02]\n", + " [ 7.99800000e+02 4.85400000e+02]\n", + " [ 1.15820000e+03 4.85400000e+02]\n", + " [ 1.51660000e+03 4.85400000e+02]\n", + " [ 1.87500000e+03 4.85400000e+02]\n", + " [ 8.29999999e+01 8.43800000e+02]\n", + " [ 4.41400000e+02 8.43800000e+02]\n", + " [ 7.99800000e+02 8.43800000e+02]\n", + " [ 1.15820000e+03 8.43800000e+02]\n", + " [ 1.51660000e+03 8.43800000e+02]\n", + " [ 1.87500000e+03 8.43800000e+02]\n", + " [ 8.29999998e+01 1.20220000e+03]\n", + " [ 4.41400000e+02 1.20220000e+03]\n", + " [ 7.99800000e+02 1.20220000e+03]\n", + " [ 1.15820000e+03 1.20220000e+03]\n", + " [ 1.51660000e+03 1.20220000e+03]\n", + " [ 1.87500000e+03 1.20220000e+03]\n", + " [ 8.30000000e+01 1.56060000e+03]\n", + " [ 4.41400000e+02 1.56060000e+03]\n", + " [ 7.99800000e+02 1.56060000e+03]\n", + " [ 1.15820000e+03 1.56060000e+03]\n", + " [ 1.51660000e+03 1.5DEBUG:root:optics_fp: cphi: [0.00531582 0.00617606 0.00736845 0.00913141 0.01200322 0.01750968\n", + " 0.03234551 0.20821284 0.00531582 0.14311708 0.27310311 0.3897246\n", + " 0.4902447 0.57443147 0.64366516 0.70005401 0.20821284 0.985415\n", + " 0.9961538 0.99826353 0.99901596 0.99936749 0.99955952 0.99967574\n", + " 0.70005401 0.75147061 0.80542393 0.85983504 0.91133409 0.95525529\n", + " 0.98625153 0.99967574 0.00616661 0.00753628 0.00968808 0.01355957\n", + " 0.02258341 0.06743141 0.06593447 0.23049481 0.37750356 0.50072179\n", + " 0.5996194 0.67707715 0.93313131 0.9942732 0.99805551 0.99903282\n", + " 0.99942317 0.99961734 0.72190396 0.78684101 0.853656 0.91669352\n", + " 0.96742456 0.9961969 0.00579488 0.00579488 0.99966293 0.99966293\n", + " 0.07014401 0.24442291 0.39798307 0.52421253 0.62341756 0.6995908\n", + " 0.08562066 0.29440551 0.4684183 0.60117718 0.69788907 0.76731313\n", + " 0.10980719 0.36820194 0.56319871 0.69519142 0.78151879 0.83840459\n", + " 0.15281345 0.48480743 0.69026239 0.80432664 0.86864949 0.90694654\n", + " 0.24943532 0.67838632 0.84636544 0.91DEBUG:root:mm_to_pix: fitpx: [[0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]]\n", + "41376 0.94608152 0.96325609\n", + " 0.61041805 0.94029264 0.97858921 0.98919227 0.99351563 0.99568553]\n", + "DEBUG:roo6060000e+03]\n", + " [ 1.87500000e+03 1.56060000e+03]\n", + " [ 8.30000000e+01 1.91900000e+03]\n", + " [ 4.41400000e+02 1.91900000e+03]\n", + " [ 7.99800000e+02 1.91900000e+03]\n", + " [ 1.15820000e+03 1.91900000e+03]\n", + " [ 1.51660000e+03 1.91900000e+03]\n", + " [ 1.87500000e+03 1.91900000e+03]]\n", + "DEBUG:root:mm_to_pix: fitpx.shape: (96, 2)\n", + "t:mm_to_pix: fitpx: [[0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]]\n", + "DEBUG:root:optics_fp: cphi: [0.00736113 0.00855795 0.01021949 0.01268159 0.01670634 0.02447236\n", + " 0.04571623 0.33085868 0.00736113 0.14564913 0.27593163 0.39264701\n", + " 0.49309519 0.57710146 0.64609955 0.70223653 0.33085868 0.98998261\n", + " 0.99733613 0.99879292 0.99931459 0.99955889 0.99969254 0.99977352\n", + " 0.70223653 0.7536841 0.80759419 0.86185323 0.91305945 0.9565351\n", + " 0.98696237 0.99977352 0.00834839 0.01021242 0.01314806 0.01845192\n", + " 0.03092476 0.09520001 0.06821327 0.23324784 0.38042607 0.50355732\n", + " 0.60221419 0.67936994 0.95400922 0.99601258 0.99863886 0.99932131\n", + " 0.99959465 0.99973085 0.72410803 0.78903751 0.85569931 0.91837755\n", + " 0.96852369 0.99656102 0.0078431 0.0078431 0.99976286 0.99976286\n", + " 0.07258573 0.24738232 0.40109449 0.52718454 0.6260916 0.70191681\n", + " 0.08867837 0.2981282 0.47216592 0.60454556 0.70074236 0.76966876\n", + " 0.11387947 0.37309127 0.56771826 0.69888097 0.78439808 0.84063622\n", + " 0.15883549 0.49151121 0.69548104 0.80800475 0.87123904 0.90881999\n", + " 0.26040359 0.68729315 0.85132238 0.9170162 0.94790417 0.96449723\n", + " 0.6403374 0.94621821 0.98069844 0.99024463 0.99414155 0.99609937]\n", + "DEBUG:root:radec2pix: camVec Shape: (3, 96)\n", + "DEBUG:root:mm_to_pix: fitpx.shape: (96, 2)\n", + "DEBUG:root:optics_fp: sphi: [-0.99998587 -0.99998093 -0.99997285 -0.99995831 -0.99992796 -0.99984669\n", + " -0.99947675 -0.97808354 -0.99998587 -0.98970577 -0.96198477 -0.92093145\n", + " -0.87158484 -0.81855268 -0.76530723 -0.7140899 -0.97808354 -0.17016839\n", + " -0.08762197 -0.05890603 -0.04435211 -0.03556139 -0.02967765 -0.02546394\n", + " -0.7140899 -0.65976656 -0.59269916 -0.51057194 -0.41166757 -0.29578258\n", + " -0.16525108 -0.02546394 -0.99998099 -0.9999716 -0.99995307 -0.99990806\n", + " -0.99974496 -0.99772391 -0.99782396 -0.97307356 -0.92600813 -0.86560828\n", + " -0.80028531 -0.73591205 -0.35953576 -0.10686813 -0.06233133 -0.04397062\n", + " -0.03396069 -0.02766174 -0.69199326 -0.61715575 -0.52083725 -0.39959102\n", + " -0.25315949 -0.08713059 -0.99998321 -0.99998321 -0.02596193 -0.02596193\n", + " -0.99753688 -0.96966873 -0.91739276 -0.85158747 -0.78188909 -0.71454371\n", + " -0.99632781 -0.95568059 -0.88350682 -0.79911576 -0.71620587 -0.64127261\n", + " -0.99395291 -0.92974584 -0.8263215 -0.71882466 -0.6238817 -0.54504838\n", + " -0.98825505 -0.87462092 -0.72355914 -0.59418739 -0.49542716 -0.42124573\n", + " -0.96839146 -0.73470538 -0.53260261 -0.40540407 -0.32392864 -0.26858462\n", + " -0.79207942 -0.34036707 -0.20582312 -0.14662418 -0.11369565 -0.09279187]\n", + "DEBUG:root:optics_fp: sphi: [-0.99997291 -0.99996338 -0.99994778 -0.99991959 -0.99986044 -0.99970051\n", + " -0.99895447 -0.94368031 -0.99997291 -0.98933631 -0.96117727 -0.91968926\n", + " -0.86997536 -0.81667246 -0.76325315 -0.71194371 -0.94368031 -0.14118936\n", + " -0.07294272 -0.04911935 -0.03701833 -0.02969904 -0.02479556 -0.0212815\n", + " -0.71194371 -0.65723685 -0.5897386 -0.50715777 -0.40782648 -0.29161723\n", + " -0.16095117 -0.0212815 -0.99996515 -0.99994785 -0.99991356 -0.99982975\n", + " -0.99952172 -0.99545817 -0.99767076 -0.97241732 -0.92481134 -0.86396182\n", + " -0.79833456 -0.73379594 -0.29977727 -0.0892129 -0.05215778 -0.03683652\n", + " -0.02846988 -0.02319957 -0.68968657 -0.61434502 -0.51747338 -0.39570528\n", + " -0.24892141 -0.08286212 -0.99996924 -0.99996924 -0.02177659 -0.02177659\n", + " -0.99736218 -0.96891795 -0.91603668 -0.84975082 -0.77974951 -0.71225894\n", + " -0.99606031 -0.95452584 -0.88150969 -0.79657056 -0.71341443 -0.63844342\n", + " -0.99349457 -0.92779465 -0.82322292 -0.71523799 -0.62025773 -0.54160017\n", + " -0.98730506 -0.87087125 -0.71854445 -0.58917597 -0.49085898 -0.41718848\n", + " -0.96549986 -0.72638015 -0.52464293 -0.39884995 -0.31855562 -0.26409298\n", + " -0.76809376 -0.32352912 -0.19552639 -0.13933979 -0.10808594 -0.08823861]\n", + "DEBUG:root:radec2pix: curVec: [[ 0.62156375 -0.35382815 -0.6989021 ]\n", + " [ 0.63133866 -0.37233756 -0.68027659]\n", + " [ 0.64079698 -0.39091506 -0.66073039]\n", + " [ 0.64987272 -0.40946882 -0.64031299]\n", + " [ 0.65850715 -0.42791243 -0.61907938]\n", + " [ 0.6666481 -0.44616329 -0.59709181]\n", + " [ 0.67424958 -0.46414142 -0.57442166]\n", + " [ 0.68127212 -0.48176944 -0.55115017]\n", + " [ 0.62156375 -0.35382815 -0.6989021 ]\n", + " [ 0.64156006 -0.33465052 -0.6902244 ]\n", + " [ 0.66098883 -0.31532009 -0.68093098]\n", + " [ 0.67978284 -0.29591861 -0.67106443]\n", + " [ 0.69788285 -0.27653236 -0.66067344]\n", + " [ 0.71523772 -0.25725186 -0.64981265]\n", + " [ 0.73180456 -0.23817096 -0.63854262]\n", + " [ 0.74754905 -0.2193843 -0.62692977]\n", + " [ 0.68127212 -0.48176944 -0.55115017]\n", + " [ 0.70189753 -0.46182402 -0.54227155]\n", + " [ 0.72182533 -0.44153145 -0.53293356]\n", + " [ 0.74098587 -0.42097792 -0.52318021]\n", + " [ 0.75932043 -0.40025193 -0.51306031]\n", + " [ 0.77678056 -0.37944418 -0.50262717]\n", + " [ 0.79332659 -0.35864882 -0.49193897]\n", + " [ 0.80892592 -0.33796524 -0.48105962]\n", + " [ 0.74754905 -0.2193843 -0.62692977]\n", + " [ 0.75792564 -0.23593788 -0.60817928]\n", + " [ 0.76786699 -0.25276095 -0.58863587]\n", + " [ 0.77730532 -0.2697671 -0.56835038]\n", + " [ 0.78617999 -0.28687069 -0.54738125]\n", + " [ 0.79443767 -0.30398945 -0.52579388]\n", + " [ 0.80203243 -0.32104543 -0.50366041]\n", + " [ 0.80892592 -0.33796524 -0.48105962]\n", + " [ 0.62592956 -0.36181832 -0.69086879]\n", + " [ 0.63770622 -0.38456053 -0.6674159 ]\n", + " [ 0.64894081 -0.40731324 -0.64262878]\n", + " [ 0.65952223 -0.42991519 -0.61660632]\n", + " [ 0.66935439 -0.45221415 -0.58946337]\n", + " [ 0.6783553 -0.47406393 -0.56133544]\n", + " [ 0.63038153 -0.34555325 -0.69513458]\n", + " [ 0.65451687 -0.32193548 -0.68407982]\n", + " [ 0.67773195 -0.29816878 -0.67214194]\n", + " [ 0.69991438 -0.2744101 -0.65940804]\n", + " [ 0.72097003 -0.25082602 -0.64597873]\n", + " [ 0.74082346 -0.22758984 -0.63196794]\n", + " [ 0.69032276 -0.47306166 -0.54741863]\n", + " [ 0.71514147 -0.44837253 -0.53622267]\n", + " [ 0.73884201 -0.42324743 -0.52437973]\n", + " [ 0.76131169 -0.39784837 -0.51197772]\n", + " [ 0.78246116 -0.37234249 -0.49911482]\n", + " [ 0.80222035 -0.34690521 -0.48590049]\n", + " [ 0.75206978 -0.22662736 -0.61889506]\n", + " [ 0.76450357 -0.24710898 -0.59537505]\n", + " [ 0.77621555 -0.2679095 -0.57071352]\n", + " [ 0.78709108 -0.28887072 -0.54501498]\n", + " [ 0.79703201 -0.30984128 -0.5183998 ]\n", + " [ 0.80595691 -0.33067956 -0.49100355]\n", + " [ 0.6216669 -0.35DEBUG:root:radec2pix: fitpx: [[-5.00000135e-01 -5.00000132e-01]\n", + " [-5.00000144e-01 2.91928571e+02]\n", + " [-4.99999914e-01 5.84357143e+02]\n", + " [-4.99999810e-01 8.76785714e+02]\n", + " [-5.00000028e-01 1.16921429e+03]\n", + " [-5.00000159e-01 1.46164286e+03]\n", + " [-4.99999755e-01 1.75407143e+03]\n", + " [-4.99999923e-01 2.04650000e+03]\n", + " [-5.00000135e-01 -5.00000132e-01]\n", + " [ 2.91928572e+02 -4.99999845e-01]\n", + " [ 5.84357143e+02 -5.00000146e-01]\n", + " [ 8.76785714e+02 -4.99999843e-01]\n", + " [ 1.16921429e+03 -4.99999832e-01]\n", + " [ 1.46164286e+03 -5.00000031e-01]\n", + " [ 1.75407143e+03 -5.00000120e-01]\n", + " [ 2.04650000e+03 -4.99999883e-01]\n", + " [-4.99999923e-01 2.04650000e+03]\n", + " [ 2.91928572e+02 2.04650000e+03]\n", + " [ 5.84357143e+02 2.04650000e+03]\n", + " [ 8.76785714e+02 2.04650000e+03]\n", + " [ 1.16921429e+03 2.04650000e+03]\n", + " [ 1.46164286e+03 2.04650000e+03]\n", + " [ 1.75407143e+03 2.04650000e+03]\n", + " [ 2.04650000e+03 2.04650000e+03]\n", + " [ 2.04650000e+03 -4.99999883e-01]\n", + " [ 2.04650000e+03 2.91928571e+02]\n", + " [ 2.04650000e+03 5.84357143e+02]\n", + " [ 2.04650000e+03 8.76785DEBUG:root:radec2pix: xyfp: [[ -0.172993 31.426621 ]\n", + " [ -0.172993 27.04019243]\n", + " [ -0.172993 22.65376385]\n", + " [ -0.172993 18.26733528]\n", + " [ -0.172993 13.88090671]\n", + " [ -0.172993 9.49447814]\n", + " [ -0.172993 5.10804957]\n", + " [ -0.172993 0.721621 ]\n", + " [ -0.172993 31.426621 ]\n", + " [ -4.55942157 31.426621 ]\n", + " [ -8.94585014 31.426621 ]\n", + " [-13.33227871 31.426621 ]\n", + " [-17.71870729 31.426621 ]\n", + " [-22.10513586 31.426621 ]\n", + " [-26.49156443 31.426621 ]\n", + " [-30.877993 31.426621 ]\n", + " [ -0.172993 0.721621 ]\n", + " [ -4.55942157 0.721621 ]\n", + " [ -8.94585014 0.721621 ]\n", + " [-13.33227872 0.721621 ]\n", + " [-17.71870728 0.721621 ]\n", + " [-22.10513586 0.721621 ]\n", + " [-26.49156443 0.721621 ]\n", + " [-30.877993 0.721621 ]\n", + " [-30.877993 31.426621 ]\n", + " [-30.877993 27.04019243]\n", + " [-30.877993 22.65376385]\n", + " [-30.877993 18.26733529]\n", + " [-30.877993 13.88090671]\n", + " [-30.877993 9.49447814]\n", + " [-30.877993 5.10804957]\n", + " [-30.877993 0.721621 ]\n", + " [ -0.187993 29.514121 ]\n", + " [ -0.187993 714e+02]\n", + " [ 2.04650000e+03 1.16921429e+03]\n", + " [ 2.04650000e+03 1.46164286e+03]\n", + " [ 2.04650000e+03 1.75407143e+03]\n", + " [ 2.04650000e+03 2.04650000e+03]\n", + " [ 4.99999783e-01 1.27000000e+02]\n", + " [ 5.00000221e-01 4.85400000e+02]\n", + " [ 5.00000070e-01 8.43800000e+02]\n", + " [ 4.99999908e-01 1.20220000e+03]\n", + " [ 5.00000086e-01 1.56060000e+03]\n", + " [ 5.00000004e-01 1.91900000e+03]\n", + " [ 1.27000000e+02 5.00000120e-01]\n", + " [ 4.85400000e+02 4.99999839e-01]\n", + " [ 8.43800000e+02 4.99999975e-01]\n", + " [ 1.20220000e+03 5.00000060e-01]\n", + " [ 1.56060000e+03 5.00000260e-01]\n", + " [ 1.91900000e+03 4.99999701e-01]\n", + " [ 1.27000000e+02 2.04550000e+03]\n", + " [ 4.85400000e+02 2.04550000e+03]\n", + " [ 8.43800000e+02 2.04550000e+03]\n", + " [ 1.20220000e+03 2.04550000e+03]\n", + " [ 1.56060000e+03 2.04550000e+03]\n", + " [ 1.91900000e+03 2.04550000e+03]\n", + " [ 2.04550000e+03 1.27000000e+02]\n", + " [ 2.04550000e+03 4.85400000e+02]\n", + " [ 2.04550000e+03 8.43800000e+02]\n", + " [ 2.04550000e+03 1.20220000e+03]\n", + " [ 2.04550000e+03 1.56060000e+03]\n", + " [ 2.04550000e+03 1.91900000e+03]\n", + " [ 4.99999741e-01 4.99999746e-01]\n", + " [ 4.99999741e-01 4.99999746e-01]\n", + " [ 2.04550000e+03 2.04550000e+03]\n", + " [ 2.04550000e+03 2.04550000e+03]\n", + " [ 1.27000000e+02 1.27000000e+02]\n", + " [ 4.85400000e+02 1.27000000e+02]\n", + " [ 8.43800000e+02 1.27000000e+02]\n", + " [ 1.20220000e+03 1.27000000e+02]\n", + " [ 1.56060000e+03 1.27000000e+02]\n", + " [ 1.91900000e+03 1.27000000e+02]\n", + " [ 1.27000000e+02 4.85400000e+02]\n", + " [ 4.85400000e+02 4.85400000e+02]\n", + " [ 8.43800000e+02 4.85400000e+02]\n", + " [ 1.20220000e+03 4.85400000e+02]\n", + " [ 1.56060000e+03 4.85400000e+02]\n", + " [ 1.91900000e+03 4.85400000e+02]\n", + " [ 1.27000000e+02 8.43800000e+02]\n", + " [ 4.85400000e+02 8.43800000e+02]\n", + " [ 8.43800000e+02 8.43800000e+02]\n", + " [ 1.20220000e+03 8.43800000e+02]\n", + " [ 1.56060000e+03 8.43800000e+02]\n", + " [ 1.91900000e+03 8.43800000e+02]\n", + " [ 1.27000000e+02 1.20220000e+03]\n", + " [ 4.85400000e+02 1.20220000e+03]\n", + " [ 8.43800000e+02 1.20220000e+03]\n", + " [ 1.20220000e+03 1.20220000e+03]\n", + " [ 1.56060000e+03 1.20220000e+03]\n", + " [ 1.91900000e+03 1.20220000e+03]\n", + " [ 1.27000000e+02 1.56060000e+03]\n", + " [ 4.85400000e+02 1.56060000e+03]\n", + " [ 8.43800000e+02 1.56060000e+03]\n", + " [ 1.20220000e+03 1.56060000e+03]\n", + " [ 1.56060000e+03 1.56060000e+03]\n", + " [ 1.91900000e+03 1.56060000e+03]\n", + " [ 1.27000000e+02 1.91900000e+03]\n", + " [ 4.85400000e+02 1.91900000e+03]\n", + " [ 8.43800000e+02 1.91900000e+03]\n", + " [ 1.20220000e+03 1.91900000e+03]\n", + " [ 1.56060000e+03 1.91900000e+03]\n", + " [ 1.91900000e+03 1.91900000e+03]]\n", + " 24.138121 ]\n", + " [ -0.187993 18.76212101]\n", + " [ -0.187993 13.386121 ]\n", + " [ -0.187993 8.010121 ]\n", + " [ -0.187993 2.634121 ]\n", + " [ -2.085493 31.411621 ]\n", + " [ -7.461493 31.411621 ]\n", + " [-12.837493 31.411621 ]\n", + " [-18.213493 31.411621 ]\n", + " [-23.589493 31.411621 ]\n", + " [-28.965493 31.411621 ]\n", + " [ -2.085493 0.736621 ]\n", + " [ -7.461493 0.736621 ]\n", + " [-12.837493 0.736621 ]\n", + " [-18.213493 0.736621 ]\n", + " [-23.58949299 0.736621 ]\n", + " [-28.965493 0.736621 ]\n", + " [-30.862993 29.514121 ]\n", + " [-30.862993 24.138121 ]\n", + " [-30.862993 18.762121 ]\n", + " [-30.862993 13.386121 ]\n", + " [-30.862993 8.010121 ]\n", + " [-30.862993 2.634121 ]\n", + " [ -0.187993 31.411621 ]\n", + " [ -0.187993 31.411621 ]\n", + " [-30.862993 0.736621 ]\n", + " [-30.862993 0.736621 ]\n", + " [ -2.085493 29.514121 ]\n", + " [ -7.461493 29.514121 ]\n", + " [-12.837493 29.514121 ]\n", + " [-18.213493 29.514121 ]\n", + " [-23.589493 29.514121 ]\n", + " [-28.965493 29.514121 ]\n", + " [ -2.085493 24.138121 ]\n", + " [ -7.461493 24.138121 ]\n", + " [-12.837493 24.138121 ]\n", + " [-18.213493 24.138121 ]\n", + " [-23.589493 24.138121 ]\n", + " [-28.965493 24.138121 ]\n", + " [ -2.085493 18.762121 ]\n", + " [ -7.461493 18.762121 ]\n", + " [-12.837493 18.762121 ]\n", + " [-18.213493 18.762121 ]\n", + " [-23.589493 18.762121 ]\n", + " [-28.965493 18.762121 ]\n", + " [ -2.085493 13.386121 ]\n", + " [ -7.461493 13.386121 ]\n", + " [-12.837493 13.386121 ]\n", + " [-18.213493 13.386121 ]\n", + " [-23.589493 13.386121 ]\n", + " [-28.965493 13.386121 ]\n", + " [ -2.085493 8.010121 ]\n", + " [ -7.461493 8.010121 ]\n", + " [-12.837493 8.010121 ]\n", + " [-18.213493 8.010121 ]\n", + " [-23.589493 8.010121 ]\n", + " [-28.965493 8.010121 ]\n", + " [ -2.085493 2.634121 ]\n", + " [ -7.461493 2.634121 ]\n", + " [-12.837493 2.634121 ]\n", + " [-18.213493 2.634121 ]\n", + " [-23.589493 2.634121 ]\n", + " [-28.965493 2.634121 ]]\n", + "DEBUG:root:optics_fp: xyfp: [[ -0.230877 31.363511 ]\n", + " [ -0.230877 26.97708243]\n", + " [ -0.230877 22.59065386]\n", + " [ -0.230877 18.20422528]\n", + " [ -0.230877 13.81779671]\n", + " [ -0.230877 9.43136815]\n", + " [ -0.230877 5.04493957]\n", + " [ -0.230877 0.658511 ]\n", + " [ -0.230877 31.363511 ]\n", + " [ -4.61730557 31.363511 ]\n", + " [ -9.00373414 31.363511 ]\n", + " [-13.39016272 31.363511 ]\n", + " [-17.77659129 31.363511 ]\n", + " [-22.16301986 31.363511 ]\n", + " [-26.54944843 31.363511 ]\n", + " [-30.935877 31.363511 ]\n", + " [ -0.230877 0.658511 ]\n", + " [ -4.61730558 0.658511 ]\n", + " [ -9.00373414 0.658511 ]\n", + " [-13.39016271 0.658511 ]\n", + " [-17.77659128 0.658511 ]\n", + " [-22.16301986 0.658511 ]\n", + " [-26.54944843 0.658511 ]\n", + " [-30.935877 0.658511 ]\n", + " [-30.935877 31.363511 ]\n", + " [-30.935877 26.97708243]\n", + " [-30.935877 22.59065386]\n", + " [-30.935877 18.20422528]\n", + " [-30.935877 13.81779671]\n", + " [-30.935877 9.43136814]\n", + " [-30.935877 5.04493957]\n", + " [-30.935877 0.658511 ]\n", + " [ -0.245877 29.451011 ]\n", + " [ -0.245877 24.075011 ]\n", + " [ -0.245877 18.699011 ]\n", + " [ -0.245877 13.323011 ]\n", + " [ -0.245877 7.947011 ]\n", + " [ -0.245877 2.571011 ]\n", + " [ -2.143377 31.348511 ]\n", + " [ -7.519377 31.348511 ]\n", + " [-12.895377 31.348511 ]\n", + " [-18.271377 31.348511 ]\n", + " [-23.647377 31.348511 ]\n", + " [-29.023377 31.348511 ]\n", + " [ -2.143377 0.673511 ]\n", + " [ -7.519377 0.673511 ]\n", + " [-12.895377 0.673511 ]\n", + " [-18.271377 0.673511 ]\n", + " [-23.64737701 0.673511 ]\n", + " [-29.023377 0.673511 ]\n", + " [-30.920877 29.451011 ]\n", + " [-30.920877 24.075011 ]\n", + " [-30.920877 18.699011 ]\n", + " [-30.920877 13.323011 ]\n", + " [-30.920877 7.947011 ]\n", + " [-30.920877 2.571011 ]\n", + " [ -0.245877 31.348511 ]\n", + " [ -0.245877 31.348511 ]\n", + " [-30.920877 0.673511 ]\n", + " [-30.920877 0.673511 ]\n", + " [ -2.143377 29.451011 ]\n", + " [ -7.519377 29.451011 ]\n", + " [-12.895377 29.451011 ]\n", + " [-18.271377 29.451011 ]\n", + " [-23.647377 29.451011 ]\n", + " [-29.023377 29.451011 ]\n", + " [ -2.143377 24.075011 ]\n", + " [ -7.519377 24.075011 ]\n", + " [-12.895377 24.075011 ]\n", + " [-18.271377 24.075011 ]\n", + " [-23.647377 24.075011 ]\n", + " [-29.023377 24.075011 ]\n", + " [ -2.143377 18.699011 ]\n", + " [ -7.519377 18.699011 ]\n", + " [-12.895377 18.699011 ]\n", + " [-18.271377 18.699011 ]\n", + " [-23.647377 18.699011 ]\n", + " [-29.023377 18.699011 ]\n", + " [ -2.143377 13.323011 ]\n", + " [ -7.519377 13.323011 ]\n", + " [-12.895377 13.323011 ]\n", + " [-18.271377 13.323011 ]\n", + " [-23.647377 13.323011 ]\n", + " [-29.023377 13.323011 ]\n", + " [ -2.143377 7.947011 ]\n", + " [ -7.519377 7.947011 ]\n", + " [-12.895377 7.947011 ]\n", + " [-18.271377 7.947011 ]\n", + " [-23.647377 7.947011 ]\n", + " [-29.023377 7.947011 ]\n", + " [ -2.143377 2.571011 ]\n", + " [ -7.519377 2.571011 ]\n", + " [-12.895377 2.571011 ]\n", + " [-18.271377 2.571011 ]\n", + " [-23.647377 2.571011 ]\n", + " [-29.023377 2.571011 ]]\n", + "DEBUG:root:radec2pix: curVec: [[ 0.16029853 0.50887426 -0.84578447]\n", + " [ 0.18172248 0.52196718 -0.83338299]\n", + " [ 0.20342769 0.534899 -0.82006112]\n", + " [ 0.22531955 0.54759526 -0.8058353 ]\n", + " [ 0.24730501 0.55998663 -0.79073081]\n", + " [ 0.26929169 0.57200863 -0.77478263]\n", + " [ 0.29118795 0.58360185 -0.75803592]\n", + " [ 0.31290354 0.59471251 -0.74054602]\n", + " [ 0.16029853 0.50887426 -0.84578447]\n", + " [ 0.14226751 0.52953218 -0.83627485]\n", + " [ 0.12425154 0.54972648 -0.82605227]\n", + " [ 0.10632494 0.56938589 -0.81516545]\n", + " [ 0.08856454 0.58844627 -0.80367115]\n", + " [ 0.07105021 0.6068507 -0.79163381]\n", + " [ 0.05386584 0.62454932 -0.77912555]\n", + " [ 0.03710064 0.6414989 -0.76622628]\n", + " [ 0.31290354 0.59471251 -0.74054602]\n", + " [ 0.29413 0.61600471 -0.73077065]\n", + " [ 0.2751552 0.63667634 -0.72036994]\n", + " [ 0.25605772 0.65665385 -0.70939422]\n", + " [ 0.2369179 0.67587252 -0.69790132]\n", + " [ 0.21781718 0.69427673 -0.6859559 ]\n", + " [ 0.19883804 0.71181968 -0.6736291 ]\n", + " [ 0.18006457 0.72846241 -0.66099868]\n", + " [ 0.03710064 0.6414989 -0.76622628]\n", + " [ 0.05659736 0.65516122 -0.75336612]\n", + " [ 0.07656273 0.66852875 -0.73973472]\n", + " [ 0.09689626 0.68152451 -0.72535196]\n", + " [ 0.11750288 0.69407765 -0.71024593]\n", + " [ 0.1382915 0.70612322 -0.69445335]\n", + " [ 0.15917397 0.71760231 -0.6780196 ]\n", + " [ 0.18006457 0.72846241 -0.66099868]\n", + " [ 0.16953685 0.51466925 -0.84045989]\n", + " [ 0.19599466 0.53061799 -0.8246397 ]\n", + " [ 0.22278079 0.54625004 -0.80745255]\n", + " [ 0.24972338 0.56143566 -0.78894121]\n", + " [ 0.27665238 0.57605617 -0.76917017]\n", + " [ 0.30339963 0.59000451 -0.7482268 ]\n", + " [ 0.15251215 0.51797859 -0.84168772]\n", + " [ 0.1304134 0.54299516 -0.82954723]\n", + " [ 0.10841069 0.56724363 -0.81638336]\n", + " [ 0.08664441 0.59060292 -0.80229728]\n", + " [ 0.06526173 0.61296824 -0.78740768]\n", + " [ 0.04441918 0.63425057 -0.77185047]\n", + " [ 0.30467405 0.60403011 -0.7364247 ]\n", + " [ 0.28152025 0.62971824 -0.72401746]\n", + " [ 0.25814214 0.6544003 -0.71071998]\n", + " [ 0.23468694 0.67795343 -0.69663562]\n", + " [ 0.21130456 0.70027524 -0.6818834 ]\n", + " [ 0.18814745 0.72128286 -0.66659701]\n", + " [ 0.04559407 0.64743015 -0.76075974]\n", + " [ 0.0698191 0.6639866 -0.74447773]\n", + " [ 0.09464739 0.68002314 -0.72705599]\n", + " [ 0.11990175 0.69540682 -0.70854282]\n", + " [ 0.14541439 0.71001807 -0.6890058 ]\n", + " [ 0.17102403 0.72375108 -0.66853209]\n", + " [ 0.1603096 0.50899057 -0.84571238]\n", + " [ 0.1603096 0.50899057 -0.84571238]\n", + " [ 0.18005697 0.72837104 -0.66110144]\n", + " [ 0.18005697 0.72837104 -0.66110144]\n", + " [ 0.16170701 0.52369139 -0.83641985]\n", + " [ 0.13950191 0.54879209 -0.82423689]\n", + " [ 0.11737151 0.57310575 -0.81103251]\n", + " [ 0.09545612 0.59651098 -0.79690826]\n", + " [ 0.07390221 0.61890299 -0.78198309]\n", + " [ 0.05286498 0.64019305 -0.76639295]\n", + " [ 0.18808284 0.53972579 -0.82056134]\n", + " [ 0.1656051 0.56503548 -0.80827585]\n", + " [ 0.14314332 0.58950722 -0.79497876]\n", + " [ 0.12083822 0.61301883 -0.78077272]\n", + " [ 0.09883516 0.63546562 -0.76577742]\n", + " [ 0.07728633 0.65675984 -0.75012888]\n", + " [ 0.21480171 0.55542687 -0.80334377]\n", + " [ 0.1920939 0.58090122 -0.79098274]\n", + " [ 0.16934498 0.60549087 -0.77762657]\n", + " [ 0.14669688 0.62907302 -0.76337878]\n", + " [ 0.12429503 0.65154324 -0.74835964]\n", + " [ 0.10228998 0.67281497 -0.73270511]\n", + " [ 0.24169214 0.57066442 -0.78481019]\n", + " [ 0.21879777 0.59625784 -0.77240153]\n", + " [ 0.19580632 0.62092428 -0.75902103]\n", + " [ 0.17286134 0.64454055 -0.74477274]\n", + " [ 0.15010922 0.66700272 -0.72977709]\n", + " [ 0.12770014 0.68822542 -0.71416976]\n", + " [ 0.26858456 0.58531928 -0.76502528]\n", + " [ 0.24554852 0.61098507 -0.75259761]\n", + " [ 0.22236044 0.63568654 -0.73922828]\n", + " [ 0.19916556 0.65930044 -0.72502139]\n", + " [ 0.17611172 0.68172341 -0.71009708]\n", + " [ 0.15334969 0.7028713 -0.69459039]\n", + " [ 0.29531118 0.599284 -0.74407661]\n", + " [ 0.27217977 0.62497472 -0.73165892]\n", + " [ 0.24884261 0.64966923 -0.71833644]\n", + " [ 0.22544647 0.67324453 -0.70421281]\n", + " [ 0.20214075 0.69559796 -0.68940743]\n", + " [ 0.1790774 0.71664636 -0.67405436]]\n", + "DEBUG:root:radec2pix: xyfp: [[32.23341696 31.55141621]\n", + " [32.23194958 27.16498788]\n", + " [32.2304822 22.77855956]\n", + " [32.22901483 18.39213124]\n", + " [32.22754745 14.00570291]\n", + " [32.22608007 9.61927458]\n", + " [32.22461269 5.23DEBUG:root:radec2pix: curVec Shape: (96, 3)\n", + "284626]\n", + " [32.2231453 0.84641793]\n", + " [32.23341696 31.55141621]\n", + " [27.84698864 31.5528836 ]\n", + " [23.46056031 31.55435097]\n", + " [19.07413198 31.55581835]\n", + " [14.68770366 31.55728573]\n", + " [10.30127533 31.55875311]\n", + " [ 5.91484701 31.56022049]\n", + " [ 1.52841868 31.56168787]\n", + " [32.2231453 0.84641793]\n", + " [27.83671698 0.84788531]\n", + " [23.45028865 0.84935269]\n", + " [19.06386033 0.85082007]\n", + " [14.677432 0.85228745]\n", + " [10.29100367 0.85375483]\n", + " [ 5.90457535 0.85522221]\n", + " [ 1.51814702 0.85668959]\n", + " [ 1.52841868 31.56168787]\n", + " [ 1.5269513 27.17525955]\n", + " [ 1.52548392 22.78883122]\n", + " [ 1.52401654 18.4024029 ]\n", + " [ 1.52254916 14.01597457]\n", + " [ 1.52108178 9.62954624]\n", + " [ 1.5196144 5.24311792]\n", + " [ 1.51814702 0.85668959]\n", + " [32.21777718 29.63892134]\n", + " [32.21597876 24.26292164]\n", + " [32.21418034 18.88692194]\n", + " [32.21238193 13.51092224]\n", + " [32.21058351 8.13492254]\n", + " [32.20878509 2.75892284]\n", + " [30.32091205 31.53705599]\n", + " [24.94491236 31.53885442]\n", + " [19.56891265 31.54065283]\n", + " [14.19291295 31.54245125]\n", + " [ 8.81691325 31.54424967]\n", + " [ 3.44091356 31.54604808]\n", + " [30.31065043 0.86205771]\n", + " [24.93465073 0.86385613]\n", + " [19.55865103 0.86565455]\n", + " [14.18265134 0.86745297]\n", + " [ 8.80665163 0.86925139]\n", + " [ 3.43065193 0.8710498 ]\n", + " [ 1.5427789 29.64918296]\n", + " [ 1.54098048 24.27318326]\n", + " [ 1.53918206 18.89718357]\n", + " [ 1.53738364 13.52118387]\n", + " [ 1.53558522 8.14518416]\n", + " [ 1.5337868 2.76918446]\n", + " [32.21841195 31.53642123]\n", + " [32.21841195 31.53642123]\n", + " [ 1.53315204 0.87168457]\n", + " [ 1.53315204 0.87168457]\n", + " [30.32027729 29.6395561 ]\n", + " [24.94427759 29.64135452]\n", + " [19.56827789 29.64315294]\n", + " [14.19227819 29.64495136]\n", + " [ 8.81627849 29.64674978]\n", + " [ 3.44027879 29.6485482 ]\n", + " [30.31847887 24.2635564 ]\n", + " [24.94247917 24.26535482]\n", + " [19.56647947 24.26715324]\n", + " [14.19047977 24.26895166]\n", + " [ 8.81448007 24.27075007]\n", + " [ 3.43848037 24.2725485 ]\n", + " [30.31668045 18.8875567 ]\n", + " [24.94068075 18.88935513]\n", + " [19.56468105 18.89115354]\n", + " [14.18868135 18.89295196]\n", + " [ 8.81268165 18.89475038]\n", + " [ 3.43668195 18.89654879]\n", + " [30.31488203 13.51155701]\n", + " [24.93888233 13.51335542]\n", + " [19.56288263 13.51515384]\n", + " [14.18688293 13.51695226]\n", + " [ 8.81088324 13.51875068]\n", + " [ 3.43488354 13.5205491 ]\n", + " [30.31308361 8.13555731]\n", + " [24.93708392 8.13735572]\n", + " [19.56108422 8.13915414]\n", + " [14.18508451 8.14095256]\n", + " [ 8.80908482 8.14275098]\n", + " [ 3.43308512 8.1445494 ]\n", + " [30.31128519 2.75955761]\n", + " [24.93528549 2.76135602]\n", + " [19.5592858 2.76315444]\n", + " [14.18328609 2.76495286]\n", + " [ 8.8072864 2.76675128]\n", + " [ 3.4312867 2.7685497 ]]\n", + "DEBUG:root:optics_fp: xyfp: [[ -0.167405 31.491388 ]\n", + " [ -0.167405 27.10495943]\n", + " [ -0.167405 22.71853086]\n", + " [ -0.167405 18.33210229]\n", + " [ -0.167405 13.94567372]\n", + " [ -0.167405 9.55924515]\n", + " [ -0.167405 5.17281657]\n", + " [ -0.167405 0.786388 ]\n", + " [ -0.167405 31.491388 ]\n", + " [ -4.55383357 31.491388 ]\n", + " [ -8.94026214 31.491388 ]\n", + " [-13.32669071 31.491388 ]\n", + " [-17.71311928 31.491388 ]\n", + " [-22.09954786 31.491388 ]\n", + " [-26.48597643 31.491388 ]\n", + " [-30.872405 31.491388 ]\n", + " [ -0.167405 0.786388 ]\n", + " [ -4.55383357 0.786388 ]\n", + " [ -8.94026214 0.786388 ]\n", + " [-13.32669071 0.786388 ]\n", + " [-17.71311929 0.786388 ]\n", + " [-22.09954786 0.786388 ]\n", + " [-26.48597643 0.786388 ]\n", + " [-30.872405 0.786388 ]\n", + " [-30.872405 31.491388 ]\n", + " [-30.872405 27.10495943]\n", + " [-30.872405 22.71853086]\n", + " [-30.872405 18.33210229]\n", + " [-30.872405 13.94567371]\n", + " [-30.872405 9.55924514]\n", + " [-30.872405 5.17281657]\n", + " [-30.872405 0.786388 ]\n", + " [ -0.182405 29.578888 ]\n", + " [ -0.182405 24.202888 ]\n", + " [ -0.182405 18.826888 ]\n", + " [ -0.182405 13.450888 ]\n", + " [ -0.182405 8.074888 ]\n", + " [ -0.182405 2.698888 ]\n", + " [ -2.079905 31.476388 ]\n", + " [ -7.455905 31.476388 ]\n", + " [-12.831905 31.476388 ]\n", + " [-18.207905 31.476388 ]\n", + " [-23.583905 31.476388 ]\n", + " [-28.959905 31.476388 ]\n", + " [ -2.079905 0.801388 ]\n", + " [ -7.455905 0.801388 ]\n", + " [-12.831905 0.801388 ]\n", + " [-18.207905 0.801388 ]\n", + " [-23.583905 0.801388 ]\n", + " [-28.959905 0.801388 ]\n", + " [-30.857405 29.578888 ]\n", + " [-30.857405 24.202888 ]\n", + " [-30.857405 18.826888 ]\n", + " [-30.857405 13.450888 ]\n", + " [-30.857405 8.074888 ]\n", + " [-30.857405 2.698888 ]\n", + " [ -0.182405 31.476388 ]\n", + " [ -0.182405 31.476388 ]\n", + " [-30.857405 0.801388 ]\n", + " [-30.857405 0.801388 ]\n", + " [ -2.079905 29.578888 ]\n", + " [ -7.455905 29.578888 ]\n", + " [-12.831905 29.578888 ]\n", + " [-18.207905 29.578888 ]\n", + " [-23.583905 29.578888 ]\n", + " [-28.959905 29.578888 ]\n", + " [ -2.079905 24.202888 ]\n", + " [ -7.455905 24.202888 ]\n", + " [-12.831905 24.202888 ]\n", + " [-18.207905 24.202888 ]\n", + " [-23.583905 24.202888 ]\n", + " [-28.959905 24.202888 ]\n", + " [ -2.079905 18.826888 ]\n", + " [ -7.455905 18.826888 ]\n", + " [-12.831905 18.826888 ]\n", + " [-18.207905 18.826888 ]\n", + " [-23.583905 18.826888 ]\n", + " [-28.959905 18.826888 ]\n", + " [ -2.079905 13.450888 ]\n", + " [ -7.455905 13.450888 ]\n", + " [-12.831905 13.450888 ]\n", + " [-18.207905 13.450888 ]\n", + " [-23.583905 13.450888 ]\n", + " [-28.959905 13.450888 ]\n", + " [ -2.079905 8.074888 ]\n", + " [ -7.455905 8.074888 ]\n", + " [-12.831905 8.074888 ]\n", + " [-18.20790499 8.074888 ]\n", + " [-23.583905 8.074888 ]\n", + " [-28.959905 8.074888 ]\n", + " [ -2.079905 2.698888 ]\n", + " [ -7.455905 2.698888 ]\n", + " [-12.831905 2.698888 ]\n", + " [-18.207905 2.698888 ]\n", + " [-23.583905 2.698888 ]\n", + " [-28.959905 2.698888 ]]\n", + "DEBUG:root:radec2pix: curVec: [[-0.25278845 0.25302419 -0.9338505 ]\n", + " [-0.22796986 0.24636634 -0.94198374]\n", + " [-0.20241034 0.23953071 -0.94955521]\n", + " [-0.17621494 0.23252182 -0.95649459]\n", + " [-0.14948874 0.2253489 -0.96274139]\n", + " [-0.12233714 0.21802604 -0.96824494]\n", + " [-0.09486627 0.210572 -0.97296445]\n", + " [-0.06718319 0.20300983 -0.9768692 ]\n", + " [-0.25278845 0.25302419 -0.9338505 ]\n", + " [-0.24699053 0.27866165 -0.92808586]\n", + " [-0.24073602 0.30461927 -0.92154939]\n", + " [-0.23405579 0.3307749 -0.91422418]\n", + " [-0.22698036 0.35701049 -0.90610343]\n", + " [-0.21953988 0.38321187 -0.89719056]\n", + " [-0.21176457 0.4092684 -0.88749937]\n", + " [-0.20368521 0.43507309 -0.87705402]\n", + " [-0.06718319 0.20300983 -0.9768692 ]\n", + " [-0.0594051 0.22927148 -0.97154805]\n", + " [-0.05141599 0.25588638 -0.96533857]\n", + " [-0.04324572 0.28273721 -0.95822204]\n", + " [-0.03492439 0.30970977 -0.95018953]\n", + " [-0.02648289 0.33669131 -0.94124259]\n", + " [-0.01795326 0.36356978 -0.93139395]\n", + " [-0.00936872 0.39023413 -0.92066799]\n", + " [-0.20368521 0.43507309 -0.87705402]\n", + " [-0.1774268 0.42996093 -0.88524196]\n", + " [-0.15049762 0.42440511 -0.8928778 ]\n", + " [-0.12299783 0.41840842 -0.89989218]\n", + " [-0.09502878 0.41197812 -0.90622489]\n", + " [-0.06669483 0.40512644 -0.91182475]\n", + " [-0.03810419 0.39787083 -0.91664981]\n", + " [-0.00936872 0.39023413 -0.92066799]\n", + " [-0.24204577 0.25023063 -0.93744252]\n", + " [-0.21111518 0.24195173 -0.94704263]\n", + " [-0.1791761 0.23340957 -0.95572794]\n", + " [-0.14642196 0.22461917 -0.96338302]\n", + " [-0.11304684 0.21560646 -0.96991457]\n", + " [-0.07924651 0.20640776 -0.97525167]\n", + " [-0.25023468 0.26413276 -0.93145933]\n", + " [-0.2428165 0.29578599 -0.92387813]\n", + " [-0.23474337 0.3277983 -0.91511957]\n", + " [-0.22607162 0.35995068 -0.9051669 ]\n", + " [-0.21685683 0.39203288 -0.89402647]\n", + " [-0.20715483 0.42384273 -0.88172797]\n", + " [-0.06391507 0.21443497 -0.97464481]\n", + " [-0.05423752 0.24687411 -0.96752854]\n", + " [-0.04427251 0.27972677 -0.95905833]\n", + " [-0.0340753 0.31278154 -0.94921367]\n", + " [-0.02370282 0.34583075 -0.93799748]\n", + " [-0.01321454 0.37866848 -0.92543804]\n", + " [-0.19235359 0.43281068 -0.88072414]\n", + " [-0.15970785 0.42624586 -0.89039759]\n", + " [-0.12615403 0.4190171 -0.89917175]\n", + " [-0.09187811 0.41113592 -0.90693201]\n", + " [-0.05707231 0.40262485 -0.91358414]\n", + " [-0.0219374 0.39351826 -0.91905502]\n", + " [-0.25268594 0.25308872 -0.93386076]\n", + " [-0.25268594 0.25308872 -0.93386076]\n", + " [-0.00949651 0.39017017 -0.92069379]\n", + " [-0.00949651 0.39017017 -0.92069379]\n", + " [-0.2395338 0.26131766 -0.9350597 ]\n", + " [-0.23195933 0.29309274 -0.92751901]\n", + " [-0.22375321 0.32522711 -0.9187828 ]\n", + " [-0.21497142 0.35750208 -0.90883417]\n", + " [-0.20566902 0.38970755 -0.89767939]\n", + " [-0.19590151 0.4216411 -0.88534817]\n", + " [-0.20843574 0.25314153 -0.94470837]\n", + " [-0.20043167 0.28520916 -0.93727418]\n", + " [-0.19186185 0.31763911 -0.9285981 ]\n", + " [-0.18278095 0.35021409 -0.91866273]\n", + " [-0.17324274 0.38272439 -0.90747396]\n", + " [-0.163302 0.4149667 -0.8950615 ]\n", + " [-0.17633574 0.24467384 -0.95343611]\n", + " [-0.16792037 0.276956 -0.94609626]\n", + " [-0.15900439 0.30960727 -0.93747584]\n", + " [-0.14964133 0.34241197 -0.92755674]\n", + " [-0.13988426 0.37516085 -0.91634422]\n", + " [-0.12978791 0.40764952 -0.90386778]\n", + " [-0.14342676 0.23592972 -0.96112743]\n", + " [-0.13461655 0.26834874 -0.95386966]\n", + " [-0.1253699 0.30114707 -0.94530039]\n", + " [-0.1157399 0.33411065 -0.93540063]\n", + " [-0.10577984 0.36703062 -0.92417485]\n", + " [-0.09554518 0.39970165 -0.91165219]\n", + " [-0.10990252 0.22693538 -0.96768888]\n", + " [-0.10071287 0.25941433 -0.96050045]\n", + " [-0.09115025 0.29228561 -0.95197729]\n", + " [-0.08126818 0.32533656 -0.94209957]\n", + " [-0.07112107 0.35835878 -0.93087098]\n", + " [-0.06076582 0.39114631 -0.91832025]\n", + " [-0.07595883 0.21772755 -0.97304931]\n", + " [-0.06640556 0.25019037 -0.96591671]\n", + " [-0.05654249 0.28306083 -0.95743382]\n", + " [-0.04642437 0.31612728 -0.94758025]\n", + " [-0.03610739 0.34918184 -0.936359DEBUG:root:radec2pix: curVec: [[-0.82454253 0.5515649 0.12611812]\n", + " [-0.8218313 0.56091581 0.0998337 ]\n", + " [-0.81840162 0.56999787 0.0729467 ]\n", + " [-0.81423143 0.57874978 0.04556184]\n", + " [-0.80930693 0.58711674 0.01778269]\n", + " [-0.80362301 0.59504979 -0.01028588]\n", + " [-0.79718396 0.60250538 -0.03853571]\n", + " [-0.79000402 0.60944571 -0.0668549 ]\n", + " [-0.82454253 0.5515649 0.12611812]\n", + " [-0.80794822 0.57345257 0.13554267]\n", + " [-0.79072028 0.59482293 0.14473119]\n", + " [-0.77293543 0.61560019 0.15364642]\n", + " [-0.75467871 0.63571585 0.16225104]\n", + " [-0.73604319 0.6551088 0.1705077 ]\n", + " [-0.7171294 0.67372552 0.17837977]\n", + " [-0.69804385 0.69152065 0.18583321]\n", + " [-0.79000402 0.60944571 -0.0668549 ]\n", + " [-0.77284831 0.63202882 -0.05696546]\n", + " [-0.75505401 0.65397162 -0.04705919]\n", + " [-0.73670147 0.67519544 -0.03717596]\n", + " [-0.71787724 0.69563207 -0.02735486]\n", + " [-0.69867368 0.71522312 -0.01763425]\n", + " [-0.6791899 0.73391842 -0.00805249]\n", + " [-0.65953331 0.75167412 0.00135121]\n", + " [-0.69804385 0.69152065 0.18583321]\n", + " [-0.69411424 0.70162884 0.16100432]\n", + " [-0.68967779 0.71132697 0.13549347]\n", + " [-0.68471652 0.72055149 0.10940216]\n", + " [-0.67921965 0.72924546 0.08283557]\n", + " [-0.67318464 0.73735854 0.05590021]\n", + " [-0.66661759 0.74484705 0.02870305]\n", + " [-0.65953331 0.75167412 0.00135121]\n", + " [-0.8233912 0.55574671 0.11477162]\n", + " [-0.81958782 0.56703524 0.08213916]\n", + " [-0.81468258 0.57785815 0.04870579]\n", + " [-0.80864665 0.58811189 0.0146626 ]\n", + " [-0.80147072 0.59770625 -0.01979712]\n", + " [-0.79316678 0.60656342 -0.05447266]\n", + " [-0.81738151 0.56119913 0.13016531]\n", + " [-0.79660753 0.58768742 0.14156249]\n", + " [-0.77495707 0.61332247 0.1525683 ]\n", + " [-0.75258325 0.63797512 0.16311405]\n", + " [-0.72965736 0.6615329 0.17313106]\n", + " [-0.70636707 0.6839006 0.18255283]\n", + " [-0.78263323 0.61934249 -0.0624509 ]\n", + " [-0.76116796 0.64660019 -0.05031421]\n", + " [-0.73882257 0.67281689 -0.03819214]\n", + " [-0.71575386 0.69786261 -0.02615695]\n", + " [-0.692132 0.72162968 -0.01427937]\n", + " [-0.66814281 0.74402841 -0.00263033]\n", + " [-0.69645719 0.69591449 0.17507257]\n", + " [-0.69130357 0.70803561 0.14416987]\n", + " [-0.68536987 0.71947701 0.11234311]\n", + " [-0.6786332 0.73013108 0.07978463]\n", + " [-0.6710889 0.7399052 0.04669041]\n", + " [-0.66275184 0.74872174 0.01325744]\n", + " [-0.82447886 0.5516729 0.12606197]\n", + " [-0.82447886 0.5516729 0.12606197]\n", + " [-0.65962578 0.75159287 0.00141308]\n", + " [-0.65962578 0.75159287 0.00141308]\n", + " [-0.8162658 0.56530933 0.11889286]\n", + " [-0.79540759 0.59189018 0.13035636]\n", + " [-0.7736662 0.61760186 0.1414516 ]\n", + " [-0.75119503 0.64231503 0.15210996]\n", + " [-0.72816569 0.66591714 0.1622624 ]\n", + " [-0.70476678 0.68831281 0.17184082]\n", + " [-0.81239205 0.57668921 0.08630591]\n", + " [-0.79132409 0.60350104 0.09794224]\n", + " [-0.76935864 0.62940145 0.10927531]\n", + " [-0.74664993 0.65426057 0.1202372 ]\n", + " [-0.72336989 0.6779661 0.13075919]\n", + " [-0.69970817 0.70042273 0.14077101]\n", + " [-0.80743 0.58758599 0.05291038]\n", + " [-0.78619521 0.6145822 0.06469777]\n", + " [-0.76405567 0.64062891 0.07624651]\n", + " [-0.74116659 0.66559577 0.08748924]\n", + " [-0.71769972 0.6893713 0.09835819]\n", + " [-0.6938443 0.71186116 0.10878311]\n", + " [-0.8013511 0.59789573 0.01889728]\n", + " [-0.77999338 0.62502863 0.03081456]\n", + " [-0.75773058 0.65117828 0.0425584 ]\n", + " [-0.73471889 0.67621413 0.05406105]\n", + " [-0.71112976 0.70002588 0.06525516]\n", + " [-0.68715133 0.72252077 0.07607102]\n", + " [-0.79414656 0.60752756 -0.01554033]\n", + " [-0.77271133 0.63474786 -0.0035145 ]\n", + " [-0.75037737 0.66095625 0.00840448]\n", + " [-0.72730157 0.68602224 0.02014741]\n", + " [-0.7036549 0.70983681 0.03164617]\n", + " [-0.67962433 0.73230886 0.04283112]\n", + " [-0.78582891 0.61640302 -0.05020206]\n", + " [-0.76436308 0.64366002 -0.03809011]\n", + " [-0.7420112 0.66988245 -0.026017 ]\n", + " [-0.71893024 0.69494013 -0.01405414]\n", + " [-0.69529059 0.71872515 -0.00227146]\n", + " [-0.67127828 0.74114757 0.00926058]]\n", + "DEBUG:root:fitpix2pix: ccdpx: shape: (96, 2)\n", + "06]\n", + " [-0.02565031 0.38201849 -0.92379864]]\n", + "DEBUG:root:optics_fp: xyfp shape: (96, 2)\n", + "DEBUG:root:radec2pix: camVec: [[-0.00156258 -0.00157957 -0.00159468 -0.00160787 -0.00161907 -0.00162822\n", + " -0.00163527 -0.00164017 -0.00156258 -0.0305812 -0.05948043 -0.08814769\n", + " -0.11647141 -0.14434091 -0.17164574 -0.19827444 -0.00164017 -0.03165868\n", + " -0.06155164 -0.09120162 -0.12049415 -0.14931846 -0.17756745 -0.20513658\n", + " -0.19827444 -0.2000398 -0.20154417 -0.20278831 -0.20377138 -0.20449167\n", + " -0.20494724 -0.20513658 -0.00166992 -0.00169047 -0.00170796 -0.0017223\n", + " -0.00173334 -0.001741 -0.0142227 -0.04972296 -0.08493191 -0.1196437\n", + " -0.15365451 -0.18676067 -0.01473616 -0.05145726 -0.08787283 -0.12377083\n", + " -0.15894736 -0.19320639 -0.19898619 -0.20097311 -0.20256914 -0.20377339\n", + " -0.20458276 -0.20499385 -0.00166195 -0.00166195 -0.20504339 -0.20504339\n", + " -0.01428012 -0.04992014 -0.08526785 -0.1201171 -0.15426444 -0.18750721\n", + " -0.01442512 -0.05041664 -0.08611259 -0.12130566 -0.1557929 -0.1893742\n", + " -0.01454351 -0.0508198 -0.08679712 -0.1222667 -0.15702557 -0.19087549\n", + " -0.01463451 -0.05112705 -0.08731762 -0.122996 -0.15795892 -0.19200933\n", + " -0.01469728 -0.05133568 -0.08DEBUG:root:radec2pix: curVec Shape: (96, 3)\n", + "766989 -0.12348855 -0.15858803 -0.19277198\n", + " -0.01473117 -0.05144352 -0.08785049 -0.12374011 -0.1589085 -0.19315962]\n", + " [ 0.20900824 0.18154377 0.15338464 0.12463517 0.09540199 0.06579532\n", + " 0.03592916 0.00592057 0.20900824 0.20886066 0.2084416 0.2077524\n", + " 0.20679486 0.20557063 0.20408052 0.20232383 0.00592057 0.00591961\n", + " 0.00591082 0.00589429 0.00587015 0.00583856 0.00579969 0.00575368\n", + " 0.20232383 0.17576331 0.1485108 0.12067777 0.09237455 0.06371165\n", + " 0.03480051 0.00575368 0.19712565 0.16298492 0.12790428 0.09207897\n", + " 0.05571194 0.01901436 0.20888472 0.20852129 0.20775151 0.20657854\n", + " 0.20500532 0.20303275 0.00602383 0.00601719 0.00599868 0.00596852\n", + " 0.005927 0.00587443 0.19084173 0.15780847 0.12384677 0.08916013\n", + " 0.05395206 0.01842821 0.20891558 0.20891558 0.00585328 0.00585328\n", + " 0.19709662 0.19675396 0.1960282 0.19492287 0.19344162 0.19158618\n", + " 0.16296111 0.16267787 0.16207774 0.1611649 0.15994417 0.15841917\n", + " 0.12788582 0.12766348 0.12719172 0.12647465 0.12551724 0.12432386\n", + " 0.09206603 0.09190638 0.09156653 0.09104984 0.09036055 0.08950266\n", + " 0.05570466 0.05560934 0.05540465 0.05509277 0.05467653 0.0541587\n", + " 0.01901283 0.01898296 0.01891568 0.01881174 0.01867213 0.01849786]\n", + " [ 0.97791263 0.9833816 0.98816527 0.99220134 0.99543751 0.99783181\n", + " 0.999353 0.99998113 0.97791263 0.97746714 0.97622445 0.97420169\n", + " 0.97142694 0.96793926 0.96378882 0.95903718 0.99998113 0.99948121\n", + " 0.9980864 0.995815 0.99269668 0.98877192 0.98409154 0.97871644\n", + " 0.95903718 0.96389384 0.9681552 0.97175809 0.97465079 0.9767927\n", + " 0.97815416 0.97871644 0.98037681 0.98662711 0.99178505 0.99575022\n", + " 0.99844538 0.99981769 0.97783684 0.97675304 0.9744875 0.97108738\n", + " 0.9666246 0.96119621 0.99987327 0.99865707 0.99611364 0.99229288\n", + " 0.98726927 0.98114055 0.96124083 0.9668021 0.97140502 0.97494968\n", + " 0.97736128 0.97858976 0.97793227 0.97793227 0.97873538 0.97873538\n", + " 0.98028006 0.97918122 0.976884 0.97343565 0.96890806 0.96339804\n", + " 0.98652704 0.98539031 0.98301344 0.97944414 0.97475455 0.96904116\n", + " 0.99168226 0.99051471 0.98807314 0.98440592 0.97958583 0.97370947\n", + " 0.99564536 0.99445424 0.99196331 0.98822159 0.98330257 0.97730327\n", + " 0.99833911 0.99713201 0.99460762 0.9908155 0.98582976 0.97974782\n", + " 0.99971071 0.99849547 0.99595406 0.99213633 0.98711673 0.98099296]]\n", + "DEBUG:root:cartToSphere: vec: [[-0.20607518 -0.20019593 0.95783851]\n", + " [-0.20787446 -0.17367087 0.96261448]\n", + " [-0.20940354 -0.14646307 0.96679818]\n", + " [-0.21066179 -0.11868235 0.97032784]\n", + " [-0.21164814 -0.09043873 0.97315256]\n", + " [-0.21236112 -0.0618427 0.9752324 ]\n", + " [-0.21279916 -0.03300558 0.97653835]\n", + " [-0.21296107 -0.0040396 0.97705233]\n", + " [-0.20607518 -0.20019593 0.95783851]\n", + " [-0.17964954 -0.20202839 0.96276195]\n", + " [-0.15251864 -0.20359907 0.96710159]\n", + " [-0.124792DEBUG:root:radec2pix: camVec Shape: (3, 96)\n", + "DEBUG:root:radec2pix: ccdpx: [[-4.44999999e+01 -4.99999873e-01]\n", + " [-4.44999998e+01 2.91928572e+02]\n", + " [-4.44999998e+01 5.84357143e+02]\n", + " [-4.45000002e+01 8.76785714e+02]\n", + " [-4.45000003e+01 1.16921429e+03]\n", + " [-4.45000002e+01 1.46164286e+03]\n", + " [-4.45000002e+01 1.75407143e+03]\n", + " [-4.45000000e+01 2.04650000e+03]\n", + " [-4.44999999e+01 -4.99999873e-01]\n", + " [ 2.47928571e+02 -5.00000280e-01]\n", + " [ 5.40357143e+02 -5.00000000e-01]\n", + " [ 8.32785714e+02 -4.99999974e-01]\n", + " [ 1.12521429e+03 -4.99999987e-01]\n", + " [ 1.41764286e+03 -4.99999863e-01]\n", + " [ 1.71007143e+03 -5.00000138e-01]\n", + " [ 2.00250000e+03 -4.99999700e-01]\n", + " [-4.45000000e+01 2.04650000e+03]\n", + " [ 2.47928571e+02 2.04650000e+03]\n", + " [ 5.40357143e+02 2.04650000e+03]\n", + " [ 8.32785714e+02 2.04650000e+03]\n", + " [ 1.12521429e+03 2.04650000e+03]\n", + " [ 1.41764286e+03 2.04650000e+03]\n", + " [ 1.71007143e+03 2.04650000e+03]\n", + " [ 2.00250000e+03 2.04650000e+03]\n", + " [ 2.00250000e+03 -4.99999700e-01]\n", + " [ 2.00250000e+03 2.91928571e+02]\n", + " [ 2.00250000e+03 5.84357143e+02]\n", + " [ 2.00250000e+03 8.76785714e+02]\n", + " [ 2.00250000e+03 1.16921429e+03]\n", + " [ 2.00250000e+03 1.46164286e+03]\n", + " [ 2.00250000e+03 1.75407143e+03]\n", + " [ 2.00250000e+03 2.04650000e+03]\n", + " [-4.35000000e+01 1.27000000e+02]\n", + " [-4.35000002e+01 4.85400000e+02]\n", + " [-4.34999999e+01 8.43800000e+02]\n", + " [-4.35000003e+01 1.20220000e+03]\n", + " [-4.35000000e+01 1.56060000e+03]\n", + " [-4.35000001e+01 1.91900000e+03]\n", + " [ 8.30000001e+01 5.00000148e-01]\n", + " [ 4.41400000e+02 4.99999823e-01]\n", + " [ 7.99800000e+02 4.99999939e-01]\n", + " [ 1.15820000e+03 5.00000006e-01]\n", + " [ 1.51660000e+03 5.00000232e-01]\n", + " [ 1.87500000e+03 5.00000256e-01]\n", + " [ 8.29999998e+01 2.04550000e+03]\n", + " [ 4.41400000e+02 2.04550000e+03]\n", + " [ 7.99800000e+02 2.04550000e+03]\n", + " [ 1.15820000e+03 2.04550000e+03]\n", + " [ 1.51660000e+03 2.04550000e+03]\n", + " [ 1.87500000e+03 2.04550000e+03]\n", + " [ 2.00150000e+03 1.27000000e+02]\n", + " [ 2.00150000e+03 4.85400000e+02]\n", + " [ 2.00150000e+03 8.43800000e+02]\n", + " [ 2.00150000e+03 1.20220000e+03]\n", + " [ 2.00150000e+03 1.56060000e+03]\n", + " [ 2.00150000e+03 1.91900000e+03]\n", + " [-4.35000003e+01 4.99999725e-01]\n", + " [-4.35000003e+01 4.99999725e-01]\n", + " [ 2.00150000e+03 2.04550000e+03]\n", + " [ 2.00150000e+03 2.04550000e+03]\n", + " [ 8.30000000e+01 1.27000000e+02]\n", + " [ 4.41400000e+02 1.27000000e+02]\n", + " [ 7.99800000e+02 1.27000000e+02]\n", + " [ 1.15820000e+03 1.27000000e+02]\n", + " [ 1.51660000e+03 1.27000000e+02]\n", + " [ 1.87500000e+03 1.27000000e+02]\n", + " [ 8.30000001e+01 4.85400000e+02]\n", + " [ 4.41400000e+02 4.85400000e+02]\n", + " [ 7.99800000e+02 4.85400000e+02]\n", + " [ 1.15820000e+03 4.85400000e+02]\n", + " [ 1.51660000e+03 4.85400000e+02]\n", + " [ 1.87500000e+03 4.85400000e+02]\n", + " [ 8.30000001e+01 8.43800000e+02]\n", + " [ 4.41400000e+02 8.43800000e+02]\n", + " [ 7.99800000e+02 8.43800000e+02]\n", + " [ 1.15820000e+03 8.43800000e+02]\n", + " [ 1.51660000e+03 8.43800000e+02]\n", + " [ 1.87500000e+03 8.43800000e+02]\n", + " [ 8.29999999e+01 1.20220000e+03]\n", + " [ 4.41400000e+02 1.20220000e+03]\n", + " [ 7.99800000e+02 1.20220000e+03]\n", + " [ 1.15820000e+03 1.20220000e+03]\n", + " [ 1.51660000e+03 1.20220000e+03]\n", + " [ 1.87500000e+03 1.20220000e+03]\n", + " [ 8.30000000e+01 1.56060000e+03]\n", + " [ 4.41400000e+02 1.56060000e+03]\n", + " [ 7.99800000e+02 1.56060000e+03]\n", + " [ 1.15820000e+03 1.56060000e+03]\n", + " [ 1.51660000e+03 1.56060000e+03]\n", + " [ 1.87500000e+03 1.56060000e+03]\n", + " [ 8.30000003e+01 1.91900000e+03]\n", + " [ 4.41400000e+02 1.91900000e+03]\n", + " [ 7.99800000e+02 1.91900000e+03]\n", + " [ 1.15820000e+03 1.91900000e+03]\n", + " [ 1.51660000e+03 1.91900000e+03]\n", + " [ 1.87500000e+03 1.91900000e+03]]\n", + "DEBUG:root:optics_fp: xyfp shape: (96, 2)\n", + "DEBUG:root:fitpix2pix: visCut: True\n", + "382599 -0.69881144]\n", + " [ 0.6216669 -0.35382599 -0.69881144]\n", + " [ 0.80885188 -0.33797811 -0.48117506]\n", + " [ 0.80885188 -0.33797811 -0.48117506]\n", + " [ 0.63467735 -0.35351147 -0.68717851]\n", + " [ 0.65889528 -0.32978258 -0.67609205]\n", + " [ 0.68217582 -0.30588357 -0.66413205]\n", + " [ 0.70440643 -0.28197154 -0.65138593]\n", + " [ 0.72549297 -0.25821358 -0.63795431]\n", + " [ 0.74535989 -0.23478487 -0.62395088]\n", + " [ 0.64653726 -0.37616756 -0.66369235]\n", + " [ 0.67096116 -0.35215568 -0.6525316 ]\n", + " [ 0.69440249 -0.32791664 -0.6405278 ]\n", + " [ 0.7167482 -0.30360752 -0.62776945]\n", + " [ 0.73790445 -0.27939537 -0.6143576 ]\n", + " [ 0.75779591 -0.25545781 -0.60040542]\n", + " [ 0.65783919 -0.39884978 -0.63887906]\n", + " [ 0.68242731 -0.37460173 -0.62766752]\n", + " [ 0.70599242 -0.35007373 -0.61564851]\n", + " [ 0.72842116 -0.32542302 -0.60291167]\n", + " [ 0.74962041 -0.30081572 -0.58955843]\n", + " [ 0.7695158 -0.27642918 -0.57570161]\n", + " [ 0.66847167 -0.42139711 -0.61283774]\n", + " [ 0.6931812 -0.39695988 -0.60160009]\n", + " [ 0.71683228 -0.3721933 -0.58959616]\n", + " [ 0.73931142 -0.34725551 -0.57691615]\n", + " [ 0.76052666 -0.32231198 -0.56366141]\n", + " [ 0.78040506 -0.29753886 -0.54994415]\n", + " [ 0.67833802 -0.44365789 -0.58568354]\n", + " [ 0.70312475 -0.41907962 -0.57444569]\n", + " [ 0.72682319 -0.39412517 -0.56248858]\n", + " [ 0.74932003 -0.36895421 -0.54990206]\n", + " [ 0.7705246 -0.34373241 -0.53678662]\n", + " [ 0.79036547 -0.318635 -0.52325344]\n", + " [ 0.68735565 -0.46548655 -0.55755222]\n", + " [ 0.71217414 -0.44081725 -0.54634069]\n", + " [ 0.73588099 -0.41572716 -0.53446244]\n", + " [ 0.75836332 -0.39037772 -0.52200604]\n", + " [ 0.77953154 -0.36493557 -0.50907034]\n", + " [ 0.79931533 -0.33957593 -0.49576526]]\n", + "DEBUG:root:make_az_asym: xyp: [[ -0.167405 31.491388 ]\n", + " [ -0.167405 27.10495943]\n", + " [ -0.167405 22.71853086]\n", + " [ -0.167405 18.33210229]\n", + " [ -0.167405 13.94567372]\n", + " [ -0.167405 9.55924515]\n", + " [ -0.167405 5.17281657]\n", + " [ -0.167405 0.786388 ]\n", + " [ -0.167405 31.491388 ]\n", + " [ -4.55383357 31.491388 ]\n", + " [ -8.94026214 31.491388 ]\n", + " [-13.32669071 31.491388 ]\n", + " [-17.71311928 31.491388 ]\n", + " [-22.09954786 31.491388 ]\n", + " [-26.48597643 31.491388 ]\n", + " [-30.872405 31.491388 ]\n", + " [ -0.167405 0.786388 ]\n", + " [ -4.55383357 0.786388 ]\n", + " [ -8.94026214 0.786388 ]\n", + " [-13.32669071 0.786388 ]\n", + " [-17.71311929 0.786388 ]\n", + " [-22.09954786 0.786388 ]\n", + " [-26.48597643 0.786388 ]\n", + " [-30.872405 0.786388 ]\n", + " [-30.872405 31.491388 ]\n", + " [-30.872405 27.10495943]\n", + " [-30.872405 22.71853086]\n", + " [-30.872405 18.33210229]\n", + " [-30.872405 13.94567371]\n", + " [-30.872405 9.55924514]\n", + " [-30.872405 5.17281657]\n", + " [-30.872405 21 -0.20490731 0.97079344]\n", + " [-0.09658011 -0.20595196 0.97378441]\n", + " [-0.06799262 -0.20673135 0.97603235]\n", + " [-0.03914089 -0.20724368 0.97750603]\n", + " [-0.01013708 -0.20748743 0.97818516]\n", + " [-0.21296107 -0.0040396 0.97705233]\n", + " [-0.18561075 -0.00409191 0.98261483]\n", + " [-0.15755214 -0.0041395 0.98750199]\n", + " [-0.12888979 -0.00418225 0.99165011]\n", + " [-0.09972928 -0.00421998 0.99500566]\n", + " [-0.07017922 -0.00425248 0.99752533]\n", + " [-0.04035219 -0.00427955 0.99917635]\n", + " [-0.01036463 -0.00430103 0.99993704]\n", + " [-0.01013708 -0.20748743 0.97818516]\n", + " [-0.01020871 -0.17998755 0.98361591]\n", + " [-0.01026764 -0.15180051 0.98835782]\n", + " [-0.01031373 -0.12303089 0.99234925]\n", + " [-0.01034674 -0.0937848 0.99553873]\n", + " [-0.01036638 -0.06417157 0.99788504]\n", + " [-0.0103724 -0.03430461 0.9993576 ]\n", + " [-0.01036463 -0.00430103 0.99993704]\n", + " [-0.20680345 -0.18872819 0.96000729]\n", + " [-0.20882603 -0.15574492 0.96547149]\n", + " [-0.21044235 -0.12184525 0.96998338]\n", + " [-0.21165063 -0.0872316 0.97344474]\n", + " [-0.2124482 -0.05210744 0.97578203]\n", + " [-0.2128323 -0.0166781 0.97694639]\n", + " [-0.19465346 -0.20093724 0.96006992]\n", + " [-0.16177694 -0.20300612 0.96572084]\n", + " [-0.12795009 -0.20468137 0.97042996]\n", + " [-0.0933751 -0.20596106 0.97409503]\n", + " [-0.05825505 -0.20684219 0.97663845]\n", + " [-0.022795 -0.20732153 0.97800724]\n", + " [-0.20112996 -0.00416252 0.97955572]\n", + " [-0.16711987 -0.00422448 0.98592753]\n", + " [-0.13214975 -0.00427905 0.99122053]\n", + " [-0.09641349 -0.00432591 0.99533197]\n", + " [-0.0601111 -0.00436469 0.99818215]\n", + " [-0.02345151 -0.00439503 0.99971531]\n", + " [-0.01026957 -0.19558822 0.98063234]\n", + " [-0.0103498 -0.16140908 0.98683331]\n", + " [-0.01041065 -0.12630166 0.99193725]\n", + " [-0.01045169 -0.09046055 0.99584519]\n", + " [-0.01047241 -0.05408714 0.9984813 ]\n", + " [-0.01047238 -0.0173918 0.99979391]\n", + " [-0.20599275 -0.20011322 0.95787352]\n", + " [-0.20599275 -0.20011322 0.95787352]\n", + " [-0.01046737 -0.00440367 0.99993552]\n", + " [-0.01046737 -0.00440367 0.99993552]\n", + " [-0.19541667 -0.18950334 0.9622374 ]\n", + " [-0.16240545 -0.19145029 0.96797276]\n", + " [-0.12844349 -0.19302DEBUG:root:radec2pix: curVec Shape: (96, 3)\n", + "803 0.97274994]\n", + " [-0.09373247 -0.19423441 0.9764667 ]\n", + " [-0.05847519 -0.195066 0.97904541]\n", + " [-0.02287686 -0.19551916 0.98043302]\n", + " [-0.19732118 -0.15638145 0.96778572]\n", + " [-0.16397526 -0.15798254 0.97373181]\n", + " [-0.12967711 -0.1592836 0.978679 ]\n", + " [-0.09462661 -0.16028164 0.98252511]\n", + " [-0.05902568 -0.16097217 0.98519233]\n", + " [-0.02308015 -0.16135064 0.98662722]\n", + " [-0.19884383 -0.12234264 0.97236485]\n", + " [-0.16523235 -0.1235961 0.97847957]\n", + " [-0.13066656 -0.12461804 0.98356321]\n", + " [-0.09534433 -0.12540495 0.98751357]\n", + " [-0.05946678 -0.1259519 0.9902524 ]\n", + " [-0.02324061 -0.1262541 0.99172566]\n", + " [-0.19998259 -0.08758892 0.9758766 ]\n", + " [-0.16617376 -0.08849133 0.9821179 ]\n", + " [-0.13140827 -0.08922984 0.98730436]\n", + " [-0.09588212 -0.08980108 0.99133364]\n", + " [-0.05979589 -0.09020062 0.9941269 ]\n", + " [-0.0233572 -0.09042422 0.9956294 ]\n", + " [-0.20073433 -0.05232353 0.9782474 ]\n", + " [-0.16679525 -0.0528708 0.98457302]\n", + " [-0.13189744 -0.053321 0.98982824]\n", + " [-0.09623556 -0.05367171 0.99391049]\n", + " [-0.06000982 -0.05391982 0.99674043]\n", + " [-0.02342863 -0.0540624 0.99826267]\n", + " [-0.20109591 -0.016752 0.97942831]\n", + " [-0.16709274 -0.01694088 0.98579563]\n", + " [-0.13212968 -0.01709901 0.99108495]\n", + " [-0.09640067 -0.01722548 0.99519355]\n", + " [-0.06010576 -0.01731915 0.99804176]\n", + " [-0.0234538 -0.01737894 0.99957386]]\n", + "DEBUG:root:radec2pix: camVec: [[0.20622014 0.20805053 0.20961035 0.210899 0.21191543 0.21265818\n", + " 0.21312568 0.21331667 0.20622014 0.17982824 0.1527297 0.12503427\n", + " 0.09685185 0.06829276 0.03946812 0.01049004 0.21331667 0.18597713\n", + " 0.1579279 0.12927353 0.10011961 0.07057467 0.04075124 0.01076573\n", + " 0.01049004 0.01056977 0.01063642 0.01068985 0.01072978 0.01075592\n", + " 0.01076796 0.01076573 0.20696213 0.20902258 0.21067623 0.21192136\n", + " 0.21275532 0.21317532 0.1948134 0.16197729 0.1281888 0.09365018\n", + " 0.05856456 0.02313694 0.20149034 0.16749252 0.1325326 0.09680441\n", + " 0.0605079 0.02385188 0.01062602 0.01071595 0.0107859 0.01083545\n", + " 0.01086DEBUG:root:radec2pix: ccdpx: [[-4.45000000e+01 -4.99999902e-01]\n", + " [-4.45000000e+01 2.91928572e+02]\n", + " [-4.45000000e+01 5.84357143e+02]\n", + " [-4.45000000e+01 8.76785715e+02]\n", + " [-4.45000000e+01 1.16921429e+03]\n", + " [-4.45000000e+01 1.46164286e+03]\n", + " [-4.45000000e+01 1.75407143e+03]\n", + " [-4.45000001e+01 2.04650000e+03]\n", + " [-4.45000000e+01 -4.99999902e-01]\n", + " [ 2.47928571e+02 -4.99999902e-01]\n", + " [ 5.40357143e+02 -4.99999727e-01]\n", + " [ 8.32785714e+02 -5.00000071e-01]\n", + " [ 1.12521429e+03 -5.00000281e-01]\n", + " [ 1.41764286e+03 -4.99999968e-01]\n", + " [ 1.71007143e+03 -5.00000211e-01]\n", + " [ 2.00250000e+03 -5.00000200e-01]\n", + " [-4.45000001e+01 2.04650000e+03]\n", + " [ 2.47928571e+02 2.04650000e+03]\n", + " [ 5.40357143e+02 2.04650000e+03]\n", + " [ 8.32785714e+02 2.04650000e+03]\n", + " [ 1.12521429e+03 2.04650000e+03]\n", + " [ 1.41764286e+03 2.04650000e+03]\n", + " [ 1.71007143e+03 2.04650000e+03]\n", + " [ 2.00250000e+03 2.04650000e+03]\n", + " [ 2.00250000e+03 -5.00000200e-01]\n", + " [ 2.00250000e+03 2.91928571e+02]\n", + " [ 2.00250000e+03 5.84357143e+02]\n", + " [ 2.00250000e+03 8.767850.786388 ]\n", + " [ -0.182405 29.578888 ]\n", + " [ -0.182405 24.202888 ]\n", + " [ -0.182405 18.826888 ]\n", + " [ -0.182405 13.450888 ]\n", + " [ -0.182405 8.074888 ]\n", + " [ -0.182405 2.698888 ]\n", + " [ -2.079905 31.476388 ]\n", + " [ -7.455905 31.476388 ]\n", + " [-12.831905 31.476388 ]\n", + " [-18.207905 31.476388 ]\n", + " [-23.583905 31.476388 ]\n", + " [-28.959905 31.476388 ]\n", + " [ -2.079905 0.801388 ]\n", + " [ -7.455905 0.801388 ]\n", + " [-12.831905 0.801388 ]\n", + " [-18.207905 0.801388 ]\n", + " [-23.583905 0.801388 ]\n", + " [-28.959905 0.801388 ]\n", + " [-30.857405 29.578888 ]\n", + " [-30.857405 24.202888 ]\n", + " [-30.857405 18.826888 ]\n", + " [-30.857405 13.450888 ]\n", + " [-30.857405 8.074888 ]\n", + " [-30.857405 2.698888 ]\n", + " [ -0.182405 31.476388 ]\n", + " [ -0.182405 31.476388 ]\n", + " [-30.857405 0.801388 ]\n", + " [-30.857405 0.801388 ]\n", + " [ -2.079905 29.578888 ]\n", + " [ -7.455905 29.578888 ]\n", + " [-12.831905 29.578888 ]\n", + " [-18.207905 29.578888 ]\n", + " [-23.583905 29.578888 ]\n", + " [-28.959905 29.578888 ]\n", + " [DEBUG:root:radec2pix: curVec Shape: (96, 3)\n", + "714e+02]\n", + " [ 2.00250000e+03 1.16921429e+03]\n", + " [ 2.00250000e+03 1.46164286e+03]\n", + " [ 2.00250000e+03 1.75407143e+03]\n", + " [ 2.00250000e+03 2.04650000e+03]\n", + " [-4.35000000e+01 1.27000000e+02]\n", + " [-4.35000000e+01 4.85400000e+02]\n", + " [-4.35000000e+01 8.43800000e+02]\n", + " [-4.35000000e+01 1.20220000e+03]\n", + " [-4.35000000e+01 1.56060000e+03]\n", + " [-4.35000000e+01 1.91900000e+03]\n", + " [ 8.30000000e+01 5.00000088e-01]\n", + " [ 4.41400000e+02 5.00000229e-01]\n", + " [ 7.99800000e+02 4.99999876e-01]\n", + " [ 1.15820000e+03 5.00000139e-01]\n", + " [ 1.51660000e+03 5.00000172e-01]\n", + " [ 1.87500000e+03 4.99999925e-01]\n", + " [ 8.30000002e+01 2.04550000e+03]\n", + " [ 4.41400000e+02 2.04550000e+03]\n", + " [ 7.99800000e+02 2.04550000e+03]\n", + " [ 1.15820000e+03 2.04550000e+03]\n", + " [ 1.51660000e+03 2.04550000e+03]\n", + " [ 1.87500000e+03 2.04550000e+03]\n", + " [ 2.00150000e+03 1.27000000e+02]\n", + " [ 2.00150000e+03 4.85400000e+02]\n", + " [ 2.00150000e+03 8.43800000e+02]\n", + " [ 2.00150000e+03 1.20220000e+03]\n", + " [ 2.00150000e+03 1.56060000e+03]\n", + " [ 2.00150000e+03 1.91900000e+03]\n", + " [-4.35000000e+01 5.00000166e-01]\n", + " [-4.35000000e+01 5.00000166e-01]\n", + " [ 2.00150000e+03 2.04550000e+03]\n", + " [ 2.00150000e+03 2.04550000e+03]\n", + " [ 8.30000000e+01 1.27000000e+02]\n", + " [ 4.41400000e+02 1.27000000e+02]\n", + " [ 7.99800000e+02 1.27000000e+02]\n", + " [ 1.15820000e+03 1.27000000e+02]\n", + " [ 1.51660000e+03 1.27000000e+02]\n", + " [ 1.87500000e+03 1.27000000e+02]\n", + " [ 8.30000000e+01 4.85400000e+02]\n", + " [ 4.41400000e+02 4.85400000e+02]\n", + " [ 7.99800000e+02 4.85400000e+02]\n", + " [ 1.15820000e+03 4.85400000e+02]\n", + " [ 1.51660000e+03 4.85400000e+02]\n", + " [ 1.87500000e+03 4.85400000e+02]\n", + " [ 8.30000000e+01 8.43800000e+02]\n", + " [ 4.41400000e+02 8.43800000e+02]\n", + " [ 7.99800000e+02 8.43800000e+02]\n", + " [ 1.15820000e+03 8.43800000e+02]\n", + " [ 1.51660000e+03 8.43800000e+02]\n", + " [ 1.87500000e+03 8.43800000e+02]\n", + " [ 8.30000000e+01 1.20220000e+03]\n", + " [ 4.41400000e+02 1.20220000e+03]\n", + " [ 7.99800000e+02 1.20220000e+03]\n", + " [ 1.15820000e+03 1.20220000e+03]\n", + " [ 1.51660000e+03 1.20220000e+03]\n", + " [ 1.87500000e+03 1.20220000e+03]\n", + " [ 8.30000000e+01 1.56060000e+03]\n", + " [ 4.41400000e+02 1.56060000e+03]\n", + " [ 7.99800000e+02 1.56060000e+03]\n", + " [ 1.15820000e+03 1.56060000e+03]\n", + " [ 1.51660000e+03 1.56060000e+03]\n", + " [ 1.87500000e+03 1.56060000e+03]\n", + " [ 8.30000001e+01 1.91900000e+03]\n", + " [ 4.41400000e+02 1.91900000e+03]\n", + " [ 7.99800000e+02 1.91900000e+03]\n", + " [ 1.15820000e+03 1.91900000e+03]\n", + " [ 1.51660000e+03 1.91900000e+03]\n", + " [ 1.87500000e+03 1.91900000e+03]]\n", + " -2.079905 24.202888 ]\n", + " [ -7.455905 24.202888 ]\n", + " [-12.831905 24.202888 ]\n", + " [-18.207905 24.202888 ]\n", + " [-23.583905 24.202888 ]\n", + " [-28.959905 24.202888 ]\n", + " [ -2.079905 18.826888 ]\n", + " [ -7.455905 18.826888 ]\n", + " [-12.831905 18.826888 ]\n", + " [-18.207905 18.826888 ]\n", + " [-23.583905 18.826888 ]\n", + " [-28.959905 18.826888 ]\n", + " [ -2.079905 13.450888 ]\n", + " [ -7.455905 13.450888 ]\n", + " [-12.831905 13.450888 ]\n", + " [-18.207905 13.450888 ]\n", + " [-23.583905 13.450888 ]\n", + " [-28.959905 13.450888 ]\n", + " [ -2.079905 8.074888 ]\n", + " [ -7.455905 8.074888 ]\n", + " [-12.831905 8.074888 ]\n", + " [-18.20790499 8.074888 ]\n", + " [-23.583905 8.074888 ]\n", + " [-28.959905 8.074888 ]\n", + " [ -2.079905 2.698888 ]\n", + " [ -7.455905 2.698888 ]\n", + " [-12.831905 2.698888 ]\n", + " [-18.207905 2.698888 ]\n", + " [-23.583905 2.698888 ]\n", + " [-28.959905 2.698888 ]]\n", + "DEBUG:root:radec2pix: fitpx: [[4271.49999987 4155.49999987]\n", + " [4271.49999978 3863.07142838]\n", + " [4271.49999978 3570.64285699]\n", + " [4271.50000021 3278.21428583]\n", + " [4271.50000028 2985.78571441]\n", + " [4271.50000021 2693.35714292]\n", + " [4271.50000016 2400.92857146]\n", + " [4271.5 2108.5 ]\n", + " [4271.49999987 4155.49999987]\n", + " [3979.07142882 4155.50000028]\n", + " [3686.64285714 4155.5 ]\n", + " [3394.2142857 4155.49999997]\n", + " [3101.78571428 4155.49999999]\n", + " [2809.35714281 4155.49999986]\n", + " [2516.92857145 4155.50000014]\n", + " [2224.49999999 4155.4999997 ]\n", + " [4271.5 2108.5 ]\n", + " [3979.0714288 2108.50000001]\n", + " [3686.64285693 2108.49999999]\n", + " [3394.21428614 2108.50000002]\n", + " [3101.7857146 2108.50000002]\n", + " [2809.35714263 2DEBUG:root:make_az_asym: xyp: shape: (96, 2)\n", + "108.49999998]\n", + " [2516.92857131 2108.49999998]\n", + " [2224.49999992 2108.49999995]\n", + " [2224.49999999 4155.4999997 ]\n", + " [2224.50000001 3863.07142868]\n", + " [2224.5 3570.64285711]\n", + " [2224.50000002 3278.21428594]\n", + " [2224.50000001 2985.78571436]\n", + " [2224.49999998 2693.35714271]\n", + " [2224.50000001 2400.92857146]\n", + " [2224.49999992 2108.49999995]\n", + " [4270.5 4028. ]\n", + " [4270.50000018 3669.60000013]\n", + " [4270.49999988 3311.19999993]\n", + " [4270.50000028 2952.80000012]\n", + " [4270.5 2594.4 ]\n", + " [4270.50000006 2236.00000001]\n", + " [4143.99999986 4154.49999985]\n", + " [3785.60000014 4154.50000018]\n", + " [3427.20000004 4154.50000006]\n", + " [3068.8 4154.49999999]\n", + " [2710.39999994 4154.49999977]\n", + " [2351.99999997 4154.49999974]\n", + " [4144.00000019 2109.50000001]\n", + " [3785.59999998 2109.5 ]\n", + " [3427.19999968 2109.49999999]\n", + " [3068.80000035 2109.50000002]\n", + " [2710.39999998 2109.5 ]\n", + " [2351.99999973 2109.49999993]\n", + " [2225.50000001 4028.00000029]\n", + " [2225.50000001 3669.60000014]\n", + " [2225.50000002 3311.20000027]\n", + " [2225.50000003 2952.80000024]\n", + " [2225.49999999 2594.39999997]\n", + " [2225.49999991 2235.99999983]\n", + " [4270.50000028 4154.50000027]\n", + " [4270.50000028 4154.50000027]\n", + " [2225.50000021 2109.50000012]\n", + " [2225.50000021 2109.50000012]\n", + " [4143.99999997 4027.99999997]\n", + " [3785.60000006 4028.00000007]\n", + " [3427.20000002 4028.00000003]\n", + " [3068.8 4028.00000001]\n", + " [2710.40000007 4028.00000025]\n", + " [2352. 4028.00000001]\n", + " [4143.99999988 3669.5999999 ]\n", + " [3785.59999992 3669.59999992]\n", + " [3427.20000003 3669.60000003]\n", + " [3068.79999996 3669.59999994]\n", + " [2710.39999994 3669.59999984]\n", + " [2352.00000003 3669.60000024]\n", + " [4143.99999986 3311.19999992]\n", + " [3785.60000024 3311.20000018]\n", + " [3427.19999985 3311.19999985]\n", + " [3068.80000018 3311.20000023]\n", + " [2710.39999997 3311.19999993]\n", + " [2351.99999998 3311.19999989]\n", + " [4144.00000009 2952.80000004]\n", + " [3785.60000017 2952.80000009]\n", + " [3427.19999999 2952.79999999]\n", + " [3068.79999994 2952.79999994]\n", + " [2710.40000012 2952.80000019]\n", + " [2351.99999999 2952.79999997]\n", + " [4143.99999998 2594.4 ]\n", + " [3785.60000016 2594.40000005]\n", + " [3427.20000028 2594.40000012]\n", + " [3068.79999967 2594.39999981]\n", + " [2710.40000007 2594.40000006]\n", + " [2351.99999992 2594.39999981]\n", + " [4143.99999971 2235.99999997]\n", + " [3785.59999981 2235.99999998]\n", + " [3427.2 2236. ]\n", + " [3068.79999989 2235.99999998]\n", + " [2710.40000023 2236.00000007]\n", + " [2352.00000024 2236.00000019]]\n", + "DEBUG:root:make_az_asym: xyp: [[ -0.230877 31.363511 ]\n", + " [ -0.230877 26.97708243]\n", + " [ -0.230877 22.59065386]\n", + " [ -0.230877 18.20422528]\n", + " [ -0.230877 13.81779671]\n", + " [ -0.230877 9.43136815]\n", + " [ -0.230877 5.04493957]\n", + " [ -0.230877 0.658511 ]\n", + " [ -0.230877 31.363511 ]\n", + " [ -4.61730557 31.363511 ]\n", + " [ -9.00373414 31.363511 ]\n", + " [-13.39016272 31.363511 ]\n", + " [-17.77659129 31.363511 ]\n", + " [-22.16301986 31.363511 ]\n", + " [-26.54944843 31.363511 ]\n", + " [-30.935877 31.363511 ]\n", + " [ -0.230877 0.658511 ]\n", + " [ -4.61730558 0.658511 ]\n", + " [ -9.00373414 0.658511 ]\n", + " [-13.39016271 0.658511 ]\n", + " [-17.77659128 0.658511 ]\n", + " [-22.16301986 0.658511 ]\n", + " [-26.54944843 0.658511 ]\n", + " [-30.935877 0.658511 ]\n", + " [-30.935877 31.363511 ]\n", + " [-30.935877 26.97708243]\n", + " [-30.935877 22.59065386]\n", + " [-30.935877 18.20422528]\n", + " [-30.935877 13.81779671]\n", + " [-30.935877 9.43136814]\n", + " [-30.935877 5.04493957]\n", + " [-30.935877 0.658511 ]\n", + " [ -0.245877 29.451011 ]\n", + " [ -0.245877 24.075011 ]\n", + " [ -0.245877 18.699011 ]\n", + " [ -0.245877 13.323011 ]\n", + " [ -0.245877 7.947011 ]\n", + " [ -0.245877 2.571011 ]\n", + " [ -2.143377 31.348511 ]\n", + " [ -7.519377 31.348511 ]\n", + " [-12.895377 31.348511 ]\n", + " [-18.271377 31.348511 ]\n", + " [-23.647377 31.348511 ]\n", + " [-29.023377 31.348511 ]\n", + " [ -2.143377 0.673511 ]\n", + " [ -7.519377 0.673511 ]\n", + " [-12.895377 0.673511 ]\n", + " [-18.271377 0.673511 ]\n", + " [-23.64737701 0.673511 ]\n", + " [-29.023377 0.673511 ]\n", + " [-30.920877 29.451011 ]\n", + " [-30.920877 24.075011 ]\n", + " [-30.920877 18.699011 ]\n", + " [-30.920877 13.323011 ]\n", + " [-30.920877 7.947011 ]\n", + " [-30.920877 2.571011 ]\n", + " [ -0.245877 31.348511 ]\n", + " [ -0.245877 31.348511 ]\n", + " [-30.920877 0.673511 ]\n", + " [-30.920877 0.673511 ]\n", + " [ -2.143377 29.451011 ]\n", + " [ -7.519377 29.451011 ]\n", + " [-12.895377 29.451011 ]\n", + " [-18.271377 29.451011 ]\n", + " [-23.647377 29.451011 ]\n", + " [-29.023377 29.451011 ]\n", + " [ -2.143377 24.075011 ]\n", + " [ -7.519377 24.075011 ]\n", + " [-12.895377 24.075011 ]\n", + " [-18.271377 24.075011 ]\n", + " [-23.647377 24.075011 ]\n", + " [-29.023377 24.075011 ]\n", + " [ -2.143377 18.699011 ]\n", + " [ -7.519377 18.699011 ]\n", + " [-12.895377 18.699011 ]\n", + " [-18.271377 18.699011 ]\n", + " [-23.647377 18.699011 ]\n", + " [-29.023377 18.699011 ]\n", + " [ -2.143377 13.323011 ]\n", + " [ -7.519377 13.323011 ]\n", + " [-12.895377 13.323011 ]\n", + " [-18.271377 13.323011 ]\n", + " [-23.647377 13.323011 ]\n", + " [-29.023377 13.323011 ]\n", + " [ -2.143377 7.947011 ]\n", + " [ -7.519377 7.947011 ]\n", + " [-12.895377 7.947011 ]\n", + " [-18.271377 7.947011 ]\n", + " [-23.647377 7.947011 ]\n", + " [-29.023377 7.947011 ]\n", + " [ -2DEBUG:root:radec2pix: camVec: [[-0.00114705 -0.00115629 -0.0011641 -0.00117048 -0.00117539 -0.00117881\n", + " -0.00118068 -0.00118097 -0.00114705 -0.03018244 -0.05910007 -0.08778716\n", + " -0.11613176 -0.14402308 -0.17135219 -0.19801388 -0.00118097 -0.03121228\n", + " -0.06111791 -0.09077999 -0.12008538 -0.14892541 -0.17719395 -0.20478471\n", + " -0.19801388 -0.19975823 -0.20124936 -0.20248221 -0.20345393 -0.20416257\n", + " -0.20460656 -0.20478471 -0.00125101 -0.00126235 -0.00127136 -0.00127799\n", + " -0.00128216 -0.00128379 -0.01381426 -0.04933618 -0.08456905 -0.11930642\n", + " -0.15334441 -0.18648385 -0.01428247 -0.05101935 -0.08744986 -0.12336368\n", + " -0.15856056 -0.19284509 -0.1987148 -0.20068229 -0.20226422 -0.20345456\n", + " -0.20424964 -0.20464672 -0.00124645 -0.00124645 -0.20469148 -0.20469148\n", + " -0.01386808 -0.04952932 -0.08490071 -0.11977552 -0.15394951 -0.18722234\n", + " -0.01400325 -0.05001432 -0.08573269 -0.12095098 -0.15546507 -0.18907339\n", + " -0.01411268 -0.05040698 -0.08640482 -0.12189811 -0.15668376 -0.19056116\n", + " -0.01419584 -0.05070556 -0.08691471 -0.12261435 -0.15760261 -0.19168088\n", + " -0.01425179 -0.05090701 -0.08725814 -0.12309542 -0.15821798 -0.19242913\n", + " -0.01427955 -0.05100809 -0.08743051 -0.12333654 -0.15852587 -0.19280295]\n", + " [ 0.20838541 0.18089194 0.15270652 0.12393558 0.09468513 0.06506336\n", + " 0.03518275 0.0051606 0.20838541 0.20823844 0.20782077 0.20713345\n", + " 0.20617803 0.20495645 0.20347155 0.2017284 0.0051606 0.00515607\n", + " 0.00514464 0.00512646 0.00510175 0.0050707 0.00503345 0.00499006\n", + " 0.2017284 0.17512925 0.14784829 0.11999042 0.09166442 0.06298098\n", + " 0.03405194 0.00499006 0.19649007 0.1623152 0.12720686 0.09136033\n", + " 0.05497503 0.01826009 0.20826196 0.20789982 0.20713224 0.20596186\n", + " 0.20439232 0.20242966 0.00526224 0.00525184 0.00523103 0.00520016\n", + " 0.00515961 0.0051096 0.19022738 0.157155 0.12316211 0.08844755\n", + " 0.05321501 0.01767079 0.20829266 0.20829266 0.0050897 0.0050897\n", + " 0.19646111 0.19611969 0.19539637 0.19429398 0.1928159 0.19096695\n", + " 0.16229116 0.16200846 0.16141067 0.16050163 0.15928501 0.15776388\n", + " 0.1271878 0.12696445 0.12649338 0.12577923 0.12482642 0.12363768\n", + " 0.0913464 0.09118412 0.09084281 0.0903271 0.0896414 0.08878838\n", + " 0.05496643 0.05486748 0.05466012 0.05434775 0.0539337 0.05341999\n", + " 0.01825699 0.0182233 0.01815347 0.01804874 0.01791034 0.01773905]\n", + " [ 0.97804612 0.9835023 0.9882709 0.99228958 0.99550658 0.99788044\n", + " 0.9993802 0.99998599 0.97804612 0.97761228 0.9763799 0.97436602\n", + " 0.9715987 0.96811684 0.96396979 0.95921643 0.99998599 0.99949948\n", + " 0.99811729 0.99585778 0.99275046 0.98883543 0.98416308 0.97879432\n", + " 0.95921643 0.96406763 0.96831791 0.97190702 0.97478415 0.97690892\n", + " 0.97825182 0.97879432 0.98050502 0.98673815 0.99187539 0.99581708\n", + " 0.99848691 0.99983245 0.97797552 0.97690512 0.97465087 0.97125985\n", + " 0.96680364 0.96137714 0.99988415 0.99868386 0.99615519 0.9923479\n", + " 0.98733577 0.98121591 0.96141873 0.96696894 0.9715556 0.97508116\n", + " 0.97747135 0.97867638 0.97806575 0.97806575 0.97881331 0.97881331\n", + " 0.98041354 0.9793283 0.97704254 0.97360345 0.96908285 0.96357637\n", + " 0.98664355 0.98552109 0.9831564 0.9795969 0.97491482 0.9692068\n", + " 0.99177825 0.99062564 0.98819716 0.98454072 0.97972882 0.97385839\n", + " 0.99571799 0.99454231 0.99206523 0.98833534 0.98342556 0.97743289\n", + " 0.99838649 0.99719508 0.99468502 0.99090557 0.98593013 0.97985577\n", + " 0.99973135 0.99853197 0.9960052 0.99220076 0.98719237 0.98107714]]\n", + "402 0.01087112 0.20613793 0.20613793 0.01086844 0.01086844\n", + " 0.19558949 0.1626169 0.12869151 0.09401511 0.05879055 0.02322296\n", + " 0.19753009 0.16421774 0.12995114 0.09493033 0.05935726 0.02343764\n", + " 0.19908829 0.16550536 0.13096617 0.09566871 0.05981412 0.02360896\n", + " 0.20026215 0.16647694 0.13173312 0.09622682 0.06015857 0.02373584\n", + " 0.20104857 0.16712825 0.13224724 0.09660024 0.06038739 0.02381698\n", + " 0.20144435 0.167DEBUG:root:radec2pix: xyfp: [[ -0.167405 31.491388 ]\n", + " [ -0.167405 27.10495943]\n", + " [ -0.167405 22.71853086]\n", + " [ -0.167405 18.33210229]\n", + " [ -0.167405 13.94567372]\n", + " [ -0.167405 9.55924515]\n", + " [ -0.167405 5.17281657]\n", + " [ -0.167405 0.786388 ]\n", + " [ -0.167405 31.491388 ]\n", + " [ -4.55383357 31.491388 ]\n", + " [ -8.94026214 31.491388 ]\n", + " [-13.32669071 31.491388 ]\n", + " [-17.71311928 31.491388 ]\n", + " [-22.09954786 31.491388 ]\n", + " [-26.48597643 31.491388 ]\n", + " [-30.872405 31.491388 ]\n", + " [ -0.167405 0.786388 ]\n", + " [ -4.55383357 0.786388 ]\n", + " [ -8.94026214 0.786388 ]\n", + " [-13.32669071 0.786388 ]\n", + " [-17.71311929 0.786388 ]\n", + " [-22.09954786 0.786388 ]\n", + " [-26.48597643 0.786388 ]\n", + " [-30.872405 0.786388 ]\n", + " [-30.872405 31.491388 ]\n", + " [-30.872405 27.10495943]\n", + " [-30.872405 22.71853086]\n", + " [-30.872405 18.33210229]\n", + " [-30.872405 13.94567371]\n", + " [-30.872405 9.55924514]\n", + " [-30.872405 5.17281657]\n", + " [-30.872405 0.786388 ]\n", + " [ -0.182405 29.578888 ]\n", + " [ -0.182405 24.202888 ]\n", + " [ -0.182405 18.826888 ]\n", + " [ -0.182405 13.450888 ]\n", + " [ -0.182405 8.074888 ]\n", + " [ -0.182405 2.698888 ]\n", + " [ -2.079905 31.476388 ]\n", + " [ -7.455905 31.476388 ]\n", + " [-12.831905 31.476388 ]\n", + " [-18.207905 31.476388 ]\n", + " [-23.583905 31.476388 ]\n", + " [-28.959905 31.476388 ]\n", + " [ -2.079905 0.801388 ]\n", + " [ -7.455905 0.801388 ]\n", + " [-12.831905 0.801388 ]\n", + " [-18.207905 0.801388 ]\n", + " [-23.583905 0.801388 ]\n", + " [-28.959905 0.801388 ]\n", + " [-30.857405 29.578888 ]\n", + " [-30.857405 24.202888 ]\n", + " [-30.857405 18.826888 ]\n", + " [-30.857405 13.450888 ]\n", + " [-30.857405 8.074888 ]\n", + " [-30.857405 2.698888 ]\n", + " [ -0.182405 31.476388 ]\n", + " [ -0.182405 31.476388 ]\n", + " [-30.857405 0.801388 ]\n", + " [-30.857405 0.801388 ]\n", + " [ -2.079905 29.578888 ]\n", + " [ -7.455905 29.578888 ]\n", + " [-12.831905 29.578888 ]\n", + " [-18.207905 29.578888 ]\n", + " [-23.583905 29.578888 ]\n", + " [-28.959905 29.578888 ]\n", + " [ -2.079905 24.202888 ]\n", + " [ -7.455905 24.202888 ]\n", + " [-12.831905 24.202888 ]\n", + " [-18.207905 24.202888 ]\n", + " [-23.583905 24.202888 ]\n", + " [-28.959905 24.202888 ]\n", + " [ -2.079905 18.826888 ]\n", + " [ -7.455905 18.826888 ]\n", + " [-12.831905 18.826888 ]\n", + " [-18.207905 18.826888 ]\n", + " [-23.583905 18.826888 ]\n", + " [-28.959905 18.826888 ]\n", + " [ -2.079905 13.450888 ]\n", + " [ -7.455905 13.450888 ]\n", + " [-12.831905 13.450888 ]\n", + " [-18.207905 13.450888 ]\n", + " [-23.583905 13.450888 ]\n", + " [-28.959905 13.450888 ]\n", + " [ -2.079905 8.074888 ]\n", + " [ -7.455905 8.074888 ]\n", + " [-12.831905 8.074888 ]\n", + " [-18.20790499 8.074888 ]\n", + " [-23.583905 8.074888 ]\n", + " [-28.959905 8.074888 ]\n", + " [ -2.079905 2.698888 ]\n", + " [ -7.455905 2.698888 ]\n", + " [-12.831905 2.698888 ]\n", + " [-18.207905 2.698888 ]\n", + " [-23.583905 2.698888 ]\n", + " [-28.959905 2.698888 ]]\n", + "DEBUG:root:radec2pix: lng: [224.17091663 219.87741809 214.97008665 209.39598188 203.1373574\n", + " 196.23634076 188.81644128 181.08669631 224.17091663 228.3555716\n", + " 233.16265584 238.65783928 244.87601329 251.7942959 259.30486084\n", + " 267.20296141 181.08669631 181.26291687 181.50503492 181.85849799\n", + " 182.42298774 183.46757199 186.05387592 202.53707914 267.20296141\n", + " 266.75372148 266.13046308 265.20807536 263.70434622 260.82362196\n", + " 253.17669924 202.53707914 222.38348083 216.71601144 210.07066421\n", + " 202.39896016 193.78096287 184.48069147 225.9100405 231.44842444\n", + " 237.98973756 245.61222365 254.27065244 263.72553361 181.18560606\n", + " 181.44802269 181.85460599 182.56904059 184.15297918 190.61463228\n", + " 266.99438373 266.33112836 265.28794249 263.40934603 259.04191913\n", + " 238.94596845 224.17054014 224.17054014 202.81670057 202.81670057\n", + " 224.11986404 229.69237658 236.35966367 244.23925438 253.312778\n", + " 263.32641007 218.39761245 223.93365474 230.85002743 239.44337044\n", + " 249.86289594 261.85943825 211.60273873 216.79700073 223.64273186\n", + " 232.75457852 244.72618682 259.56986466 203.65258863 208.03632189\n", + " 214.17758593 223.12426077 236.4587659 255.51668541 194.60966243\n", + " 197.58758667 202.01156736 209.14892478 221.94021993 246.56988658\n", + " 184.76194605 185.78921163 187.37371211 190.13104958 196.0740482\n", + " 216.53792504]\n", + "DEBUG:root:radec2pix: fitpx: [[2135.5 4155.4999999 ]\n", + " [2135.5 3863.07142835]\n", + " [2135.5 3570.64285687]\n", + " [2135.5 3278.21428534]\n", + " [2135.5 2985.78571398]\n", + " [2135.5 2693.35714282]\n", + " [2135.50000001 2400.92857102]\n", + " [2135.50000006 2108.49999973]\n", + " [2135.5 4155.4999999 ]\n", + " [1843.07142859 4155.4999999 ]\n", + " [1550.64285722 4155.49999973]\n", + " [1258.21428568 4155.50000007]\n", + " [ 965.78571413 4155.50000028]\n", + " [ 673.35714288 4155.49999997]\n", + " [ 380.92857125 4155.50000021]\n", + " [ 88.4999998 4155.5000002 ]\n", + " [2135.50000006 2108.49999973]\n", + " [1843.07142866 2108.49999999]\n", + " [1550.64285735 2108.49999998]\n", + " [1258.21428559 2108.50000001]\n", + " [ 965.78571467 2108.49999998]\n", + " [ 673.35714297 2108.5 ]\n", + " [ 380.92857138 2108.5 ]\n", + " [ 88.49999984 2108.5 ]\n", + " [ 88.4999998 4155.5000002 ]\n", + " [ 88.49999999 3863.07142858]\n", + " [ 88.50000023 3570.64285698]\n", + " [ 88.4999999 3278.21428577].143377 2.571011 ]\n", + " [ -7.519377 2.571011 ]\n", + " [-12.895377 2.571011 ]\n", + " [-18.271377 2.571011 ]\n", + " [-23.647377 2.571011 ]\n", + " [-29.023377 2.571011 ]]\n", + "45515 0.13250401 0.09678486 0.06049766 0.02385117]\n", + " [0.20255556 0.17610143 0.14895462 0.12122494 0.09302239 0.06445739\n", + " 0.03564119 0.00668594 0.20255556 0.20441077 0.20600074 0.2073248\n", + " 0.20838186 0.20917033 0.20968847 0.20993479 0.00668594 0.00675821\n", + " 0.00682246 0.00687853 0.00692617 0.0069651 0.00699507 0.00701584\n", + " 0.20993479 0.18250233 0.15437326 0.12565215 0.09644485 0.06686038\n", + " 0.03701177 0.00701584 0.19112005 0.15821703 0.12438266 0.08981934\n", + " 0.05473042 0.0193211 0.20330747 0.20540191 0.20709749 0.2083924\n", + " 0.20928375 0.20976841 0.00681796 0.00690216 0.00697398 0.00703299\n", + " 0.00707868 0.00711058 0.19806614 0.16396327 0.12891793 0.09312436\n", + " 0.05678335 0.02010461 0.2024732 0.2024732 0.00711848 0.00711848\n", + " 0.19190537 0.19387759 0.19547539 0.1966967 0.19753824 0.19799645\n", + " 0.15886347 0.1604891 0.1618095 0.16282181 0.16352163 0.16390447\n", + " 0.12488974 0.12616714 0.12720791 0.12800859 0.1285643 0.12887024\n", + " 0.09018615 0.09111203 0.09186896 0.09245358 0.0928614 0.09308815\n", + " 0.05495583 0.05552612 0.05599434 0.05635799 0.05661388 0.05675899\n", + " 0.01940412 0.01961547 0.01979108 0.01992994 0.02003078 0.02009239]\n", + " [0.95731108 0.96213474 0.96637261 0.96996192 0.9728508 0.97499833\n", + " 0.97637449 0.97696023 0.95731108 0.96222557 0.96655954 0.97024886\n", + " 0.97324032 0.97549161 0.97697135 0.97765911 0.97696023 0.98253083\n", + " 0.98742708 0.99158512 0.9949513 0.99748218 0.99914484 0.99991744\n", + " 0.97765911 0.9831486 0.98795534 0.99201677 0.99528049 0.99770436\n", + " 0.99925681 0.99991744 0.95949977 0.96502691 0.96961048 0.97315046\n", + " 0.9755715 0.9768229 0.95953833 0.96518051 0.96988569 0.97355136\n", + " 0.97609964 0.97747731 0.97946677 0.98584919 0.99115411 0.99527858\n", + " 0.99814262 0.99969022 0.98013106 0.98640824 0.99159661 0.99559552\n", + " 0.99832741 0.99973878 0.95734621 0.95734621 0.9999156 0.9999156\n", + " 0.96172609 0.96745399 0.9722283 0.9759465 0.97853069 0.9799276\n", + " 0.96733875 0.97328094 0.97822819 0.98207805 0.98475245 0.98619775\n", + " 0.97199095 0.97810522 0.98319175 0.98714806 0.9898957 0.99138039\n", + " 0.97558266 0.98182688 0.98701899 0.99105637 0.99386 0.99537491\n", + " 0.97803851 0.98437036 0.98963392 0.99372641 0.99656823 0.99810379\n", + " 0.97930774 0.98568454 0.99098486 0.99510577 0.99796733 0.99951359]]\n", + "DEBUG:root:radec2pix: xyfp Shape: (96, 2)\n", + "DEBUG:root:make_az_asym: xyp: shape: (96, 2)\n", + "DEBUG:root:radec2pix: camVec: [[ 0.00162968 0.00164392 0.00165615 0.00166636 0.0016745 0.00168051\n", + " 0.00168433 0.00168589 0.00162968 0.03065921 0.0595691 0.08824658\n", + " 0.11657974 0.14445783 0.17177197 0.1984171 0.00168589 0.03171597\n", + " 0.06161834 0.09127522 0.12057355 0.14940474 0.17766265 0.205241\n", + " 0.1984171 0.20017053 0.20167036 0.20291139 0.20389075 0.20460646\n", + " 0.20505694 0.205241 0.00173588 0.00175296 0.00176683 0.00177741\n", + " 0.00178459 0.00178824 0.01429458 0.04980805 0.08502967 0.11975303\n", + " 0.15377432 0.1868945 0.0147871 0.05152109 0.08794575 0.12385093\n", + " 0.15903647 0.19330699 0.19912208 0.20110045 0.20269257 0.20389226\n", + " 0.20469584 0.20510055 0.00172908 0.00172908 0.20514779 0.20514779\n", + " 0.01435076 0.05000388 0.08536435 0.12022547 0.15438306 0.18763689\n", + " 0.01449201 0.05049589 0.08620426 0.1214098 0.15590842 0.18949858\n", + " 0.01460664 0.05089468 0.08688344 0.12236492 0.15713605 0.19099623\n", + " 0.0146941 0.05119852 0.08739951 0.12308827 0.15806297 0.19212497\n", + " 0.01475342 0.05140434 0.08774826 0.12357559 0.15868553 0.19288138\n", + " 0.01478357 0.05150885 0.08792506 0.1238221 0.15899976 0.19326249]\n", + " [-0.20886687 -0.18138669 -0.15321267 -0.12445123 -0.0952084 -0.06559229\n", + " -0.03571531 -0.00569466 -0.20886687 -0.20871575 -0.20829328 -0.20760055\n", + " -0.20663909 -0.20541086 -0.20391875 -0.20216791 -0.00569466 -0.00569039\n", + " -0.0056785 -0.00565918 -0.00563263 -0.00559908 -0.00555867 -0.00551146\n", + " -0.20216791 -0.17558603 -0.14832064 -0.12047648 -0.09216227 -0.06348867\n", + " -0.03456748 -0.00551146 -0.19697755 -0.16281769 -0.12772153 -0.09188434\n", + " -0.05550542 -0.01879375 -0.20874173 -0.20837407 -0.20760004 -0.20642226\n", + " -0.2048444 -0.20287264 -0.00579649 -0.00578593 -0.0057639 -0.00573078\n", + " -0.00568698 -0.00563273 -0.19067465 -0.1576223 -0.12364673 -0.08894663\n", + " -0.05372559 -0.0181899 -0.20877415 -0.20877415 -0.0056111 -0.0056111\n", + " -0.19694699 -0.19660038 -0.19587092 -0.19476145 -0.19327535 -0.19141752\n", + " -0.16279237 -0.16250539 -0.1619024 -0.1609872 -0.15976346 -0.15823425\n", + " -0.12770151 -0.1274748 -0.12699943 -0.12628004 -0.12532102 -0.12412508\n", + " -0.09186978 -0.09170505 -0.09136033 -0.09084026 -0.09014925 -0.08928993\n", + " -0.05549654 -0.05539609 -0.05518622 -0.05487037 -0.05445187 -0.05393273\n", + " -0.01879073 -0.01875652 -0.01868512 -0.01857781 -0.01843585 -0.01826001]\n", + " [ 0.97794273 0.98341048 0.98819185 0.99222433 0.99545595 0.99784509\n", + " 0.99936059 0.99998236 0.97794273 0.97749565 0.9762507 0.9742251\n", + " 0.97144709 0.96795574 0.96380057 0.95904056 0.99998236 0.99948072\n", + " 0.99808363 0.99580962 0.99268842 0.98876027 0.98407575 0.97869595\n", + " 0.95904056 0.96389901 0.96815807 0.97175737 0.97464592 0.97678318\n", + " 0.97813943 0.97869595 0.98040646 0.98665461 0.99180849 0.9957681\n", + " 0.99845679 0.99982178 0.97786633 0.97678012 0.97451125 0.97110713\n", + " 0.96663966 0.961204 0.99987386 0.99865515 0.99610859 0.99228429\n", + " 0.98725633 0.98112215 0.96124585 0.96680599 0.97140476 0.97494433\n", + " 0.97735008 0.97857186 0.97796235 0.97796235 0.97871492 0.97871492\n", + " 0.9803091 0.97920779 0.97690711 0.97345458 0.96892234 0.96340632\n", + " 0.98655391 0.98541472 0.9830343 0.97946045 0.97476571 0.96904706\n", + " 0.99170508 0.99053516 0.98809029 0.9844187 0.97959323 0.97371115\n", + " 0.99566261 0.99446915 0.99197511 0.98822939 0.98330525 0.97730001\n", + " 0.99834987 0.99714035 0.99461285 0.99081699 0.9858265 0.97973876\n", + " 0.99971414 0.99849639 0.99595183 0.99213051 0.98710648 0.98097716]]\n", + "DEBUG:root:radec2pix: camVec Shape: (3, 96)\n", + "\n", + " [ 88.50000002 2985.78571428]\n", + " [ 88.50000017 2693.35714281]\n", + " [ 88.49999997 2400.92857143]\n", + " [ 88.49999984 2108.5 ]\n", + " [2134.5 4027.99999995]\n", + " [2134.5 3669.59999994]\n", + " [2134.5 3311.20000034]\n", + " [2134.5 2952.80000006]\n", + " [2134.5 2594.39999997]\n", + " [2134.49999998 2236.00000031]\n", + " [2008.00000001 4154.49999991]\n", + " [1649.60000005 4154.49999977]\n", + " [1291.19999995 4154.50000012]\n", + " [ 932.80000008 4154.49999986]\n", + " [ 574.40000013 4154.49999983]\n", + " [ 215.99999993 4154.50000007]\n", + " [2007.99999975 2109.50000009]\n", + " [1649.5999999 2109.50000001]\n", + " [1291.19999978 2109.50000001]\n", + " [ 932.80000001 2109.5 ]\n", + " [ 574.40000043 2109.49999999]\n", + " [ 216.00000004 2109.5 ]\n", + " [ 89.50000001 4027.99999999]\n", + " [ 89.4999998 3669.60000015]\n", + " [ 89.50000012 3311.19999993]\n", + " [ 89.50000006 2952.79999997]\n", + " [ 89.49999988 2594.40000003]\n", + " [ 89.50000008 2235.99999999]\n", + " [2134.5 4154.49999983]\n", + " [2134.5 4154.49999983]\n", + " [ 89.49999987 2109.5 ]\n", + " [ 89.49999987 2109.5 ]\n", + " [2008. 4027.99999995]\n", + " [1649.60000002 4027.99999993]\n", + " [1291.20000002 4027.99999996]\n", + " [ 932.80000002 4027.99999996]\n", + " [ 574.4000002 4027.99999975]\n", + " [ 215.99999985 4028.00000015]\n", + " [2008.00000001 3669.59999986]\n", + " [1649.60000005 3669.59999982]\n", + " [1291.19999995 3669.60000009]\n", + " [ 932.79999997 3669.60000004]\n", + " [ 574.40000017 3669.59999983]\n", + " [ 215.99999977 3669.60000019]\n", + " [2007.99999999 3311.20000007]\n", + " [1649.5999999 3311.20000024]\n", + " [1291.20000003 3311.19999996]\n", + " [ 932.80000003 3311.19999997]\n", + " [ 574.40000015 3311.19999988]\n", + " [ 216.00000001 3311.19999999]\n", + " [2008.00000002 2952.79999987]\n", + " [1649.59999985 2952.80000027]\n", + " [1291.1999999 2952.80000011]\n", + " [ 932.80000032 2952.79999977]\n", + " [ 574.39999984 2952.80000009]\n", + " [ 216.00000025 2952.79999989]\n", + " [2007.99999995 2594.40000018]\n", + " [1649.59999988 2594.40000012]\n", + " [1291.19999985 2594.4000001 ]\n", + " [ 932.79999977 2594.4000001 ]\n", + " [ 574.39999985 2594.40000005]\n", + " [ 216.00000009 2594.39999997]\n", + " [2007.99999988 2236.00000015]\n", + " [1649.60000009 2235.99999997]\n", + " [1291.19999998 2236. ]\n", + " [ 932.79999991 2236.00000001]\n", + " [ 574.39999979 2236.00000002]\n", + " [ 215.99999986 2236.00000001]]\n", + "DEBUG:root:fitpix2pix: ccdpx: shape: (96, 2)\n", + "DEBUG:root:cartToSphere: vec: [[-0.00156258 0.20900824 0.97791263]\n", + " [-0.00157957 0.18154377 0.9833816 ]\n", + " [-0.00159468 0.15338464 0.98816527]\n", + " [-0.00160787 0.12463517 0.99220134]\n", + " [-0.00161907 0.09540199 0.99543751]\n", + " [-0.00162822 0.06579532 0.99783181]\n", + " [-0.00163527 0.03592916 0.999353 ]\n", + " [-0.00164017 0.00592057 0.99998113]\n", + " [-0.00156258 0.20900824 0.97791263]\n", + " [-0.0305812 0.20886066 0.97746714]\n", + " [-0.05948043 0.2084416 0.97622445]\n", + " [-0.08814769 0.2077524 0.97420169]\n", + " [-0.11647141 0.20679486 0.97142694]\n", + " [-0.14434091 0.20557063 0.96793926]\n", + " [-0.17164574 0.20408052 0.96378882]\n", + " [-0.19827444 0.20232383 0.95903718]\n", + " [-0.00164017 0.00592057 0.99998113]\n", + " [-0.03165868 0.00591961 0.99948121]\n", + " [-0.06155164 0.00591082 0.9980864 ]\n", + " [-0.09120162 0.00589429 0.995815 ]\n", + " [-0.12049415 0.00587015 0.99269668]\n", + " [-0.14931846 0.00583856 0.98877192]\n", + " [-0.17756745 0.00579969 0.98409154]\n", + " [-0.20513658 0.00575368 0.97871644]\n", + " [-0.19827444 0.20232383 0.95903718]\n", + " [-0.2000398 0.17576331 0.96389384]\n", + " [-0.20154417 0.1485108 0.9681552 ]\n", + " [-0.20278831 0.12067777 0.97175809]\n", + " [-0.20377138 0.09237455 0.97465079]\n", + " [-0.20449167 0.06371165 0.9767927 ]\n", + " [-0.20494724 0.03480051 0.97815416]\n", + " [-0.20513658 0.00575368 0.97871644]\n", + " [-0.00166992 0.19712565 0.98037681]\n", + " [-0.00169047 0.16298492 0.98662711]\n", + " [-0.00170796 0.12790428 0.99178505]\n", + " [-0.0017223 0.09207897 0.99575022]\n", + " [-0.00173334 0.05571194 0.99844538]\n", + " [-0.001741 0.01901436 0.99981769]\n", + " [-0.0142227 0.20888472 0.97783684]\n", + " [-0.04972296 0.20852129 0.97675304]\n", + " [-0.08493191 0.20775151 0.9744875 ]\n", + " [-0.1196437 0.20657854 0.97108738]\n", + " [-0.15365451 0.20500532 0.9666246 ]\n", + " [-0.18676067 0.20303275 0.96119621]\n", + " [-0.01473616 0.00602383 0.99987327]\n", + " [-0.05145726 0.00601719 0.99865707]\n", + " [-0.08787283 0.00599868 0.99611364]\n", + " [-0.12377083 0.00596852 0.99229288]\n", + " [-0.15894736 0.005927 0.98726927]\n", + " [-0.19320639 0.00587443 0.98114055]\n", + " [-0.19898619 0.19084173 0.96124083]\n", + " [-0.20097311 0.15780847 0.9668021 ]\n", + " [-0.20256914 0.12384677 0.97140502]\n", + " [-0.20377339 0.08916013 0.97494968]\n", + " [-0.20458276 0.05395206 0.97736128]\n", + " [-0.20499385 0.01842821 0.97858976]\n", + " [-0.00166195 0.20891558 0.97793227]\n", + " [-0.00166195 0.20891558 0.97793227]\n", + " [-0.20504339 0.00585328 0.97873538]\n", + " [-0.20504339 0.00585328 0.97873538]\n", + " [-0.01428012 0.19709662 0.98028006]\n", + " [-0.04992014 0.19675396 0.97918122]\n", + " [-0.08526785 0.1960282 0.976884 ]\n", + " [-0.1201171 0.19492287 0.97343565]\n", + " [-0.15426444 0.19344162 0.96890806]\n", + " [-0.18750721 0.19158618 0.96339804]\n", + " [-0.01442512 0.16296111 0.98652704]\n", + " [-0.05041664 0.16267787 0.98539031]\n", + " [-0.08611259 0.16207774 0.98301344]\n", + " [-0.12130566 0.1611649 0.97944414]\n", + " [-0.1557929 0.15994417 0.97475455]\n", + " [-0.1893742 0.15841917 0.96904116]\n", + " [-0.01454351 0.12788582 0.99168226]\n", + " [-0.0508198 0.12766348 0.99051471]\n", + " [-0.08679712 0.12719172 0.98807314]\n", + " [-0.1222667 0.12647465 0.98440592]\n", + " [-0.15702557 0.12551724 0.97958583]\n", + " [-0.19087549 0.12432386 0.97370947]\n", + " [-0.01463451 0.09206603 0.99564536]\n", + " [-0.05112705 0.09190638 0.99445424]\n", + " [-0.08731762 0.09156653 0.99196331]\n", + " [-0.122996 0.09104984 0.98822159]\n", + " [-0.15795892 0.09036055 0.98330257]\n", + " [-0.19200933 0.08950266 0.97730327]\n", + " [-0.01469728 0.05570466 0.99833911]\n", + " [-0.05133568 0.05560934 0.99713201]\n", + " [-0.08766989 0.05540465 0.99460762]\n", + " [-0.12348855 0.05509277 0.9908155 ]\n", + " [-0.15858803 0.05467653 0.98582976]\n", + " [-0.19277198 0.0541587 0.97974782]\n", + " [-0.01473117 0.01901283 0.99971071]\n", + " [-0.05144352 0.01898296 0.99849547]\n", + " [-0.08785049 0.01891568 0.99595406]\n", + " [-0.12374011 0.01881174 0.99213633]\n", + " [-0.1589085 0.01867213 0.98711673]\n", + " [-0.19315962 0.01849786 0.98099296]]\n", + "DEBUG:root:radec2pix: curVec: [[-0.04390807 0.99257906 -0.11339705]\n", + " [-0.04309022 0.98904732 -0.14116883]\n", + " [-0.04222233 0.9846461 -0.16937928]\n", + " [-0.04130586 0.97934953 -0.19790991]\n", + " [-0.04034277 0.97314183 -0.22664387]\n", + " [-0.03933552 0.96601799 -0.25546421]\n", + " [-0.03828715 0.9579844 -0.28425338]\n", + " [-0.03720127 0.9490593 -0.31289377]\n", + " [-0.04390807 0.99257906 -0.11339705]\n", + " [-0.01490638 0.99351267 -0.11274028]\n", + " [ 0.01401628 0.99359928 -0.11208936]\n", + " [ 0.04274684 0.99285013 -0.11145102]\n", + " [ 0.07117273 0.99128705 -0.11083512]\n", + " [ 0.09918183 0.98894224 -0.11025517]\n", + " [ 0.12666185 0.98585818 -0.10972885]\n", + " [ 0.15349956 0.98208762 -0.10927848]\n", + " [-0.03720127 0.9490593 -0.31289377]\n", + " [-0.0072033 0.95003633 -0.31205621]\n", + " [ 0.02270252 0.95015709 -0.31094387]\n", + " [ 0.05239788 0.94943344 -0.3095652 ]\n", + " [ 0.08176768 0.94788811 -0.3079321 ]\n", + " [ 0.11070065 0.94555421 -0.30605979]\n", + " [ 0.13908875 0.94247472 -0.30396665]\n", + " [ 0.16682555 0.93870222 -0.3016743 ]\n", + " [ 0.15349956 0.98208762 -0.10927848]\n", + " [ 0.15605224 0.9783472 -0.13595754]\n", + " [ 0.15839304 0.97381081 -0.16310778]\n", + " [ 0.16052061 0.96845406 -0.19060396]\n", + " [ 0.16243204 0.96226296 -0.21832505]\n", + " [ 0.16412322 0.95523404 -0.24615339]\n", + " [ 0.16558937 0.94737449 -0.27397398]\n", + " [ 0.16682555 0.93870222 -0.3016743 ]\n", + " [-0.04345814 0.99114871 -0.12544172]\n", + " [-0.04242098 0.9862393 -0.15978893]\n", + " [-0.04131026 0.9799971 -0.19467701]\n", + " [-0.04012935 0.97238886 -0.22989028]\n", + " [-0.03888282 0.96340541 -0.2652134 ]\n", + " [-0.0375765 0.95306343 -0.30042985]\n", + " [-0.03125765 0.99307992 -0.11320435]\n", + " [ 0.00424903 0.99365368 -0.11240245]\n", + " [ 0.03952459 0.99296515 -0.11161551]\n", + " [ 0.07436155 0.99105012 -0.11086036]\n", + " [ 0.10855345 0.98796787 -0.1101619 ]\n", + " [ 0.14189321 0.98380085 -0.10955462]\n", + " [-0.02412217 0.94962287 -0.31246524]\n", + " [ 0.01259635 0.95024352 -0.31125324]\n", + " [ 0.04905863 0.94958852 -0.30963671]\n", + " [ 0.08505135 0.94769524 -0.30763614]\n", + " [ 0.12036959 0.94462457 -0.3052795 ]\n", + " [ 0.15481527 0.94045961 -0.30260198]\n", + " [ 0.15454763 0.98056677 -0.12084634]\n", + " [ 0.15753283 0.97545109 -0.15387844]\n", + " [ 0.16019877 0.96911435 -0.18749328]\n", + " [ 0.16254078 0.96152646 -0.22146638]\n", + " [ 0.16455134 0.95268106 -0.25558102]\n", + " [ 0.16622154 0.94259582 -0.28962651]\n", + " [-0.04380617 0.99257307 -0.11348888]\n", + " [-0.04380617 0.99257307 -0.11348888]\n", + " [ 0.1667281 0.93874724 -0.30158805]\n", + " [ 0.1667281 0.93874724 -0.30158805]\n", + " [-0.0308603 0.99165727 -0.12515387]\n", + " [ 0.00478564 0.99223011 -0.12432421]\n", + " [ 0.04019924 0.99153223 -0.12348219]\n", + " [ 0.07517278 0.98959964 -0.12264424]\n", + " [ 0.10950011 0.98649178 -0.12183466]\n", + " [ 0.14297497 0.98229121 -0.12108728]\n", + " [-0.02969901 0.98675236 -0.15949214]\n", + " [ 0.00629694 0.98732509 -0.158586 ]\n", + " [ 0.04205634 0.9866084 -0.15759163]\n", + " [ 0.07737042 0.98463893 -0.15652476]\n", + " [ 0.11203372 0.98147677 -0.15540845]\n", + " [ 0.14584233 0.97720482 -0.15427493]\n", + " [-0.02848755 0.98051417 -0.19437189]\n", + " [ 0.00779176 0.98109068 -0.19339172]\n", + " [ 0.04382956 0.98036692 -0.19224896]\n", + " [ 0.07941571 0.97838012 -0.19095937]\n", + " [ 0.11434511 0.97519106 -0.18954577]\n", + " [ 0.14841601 0.97088301 -0.18803956]\n", + " [-0.02723 0.97290942 -0.2295774 ]\n", + " [ 0.00926423 0.97349391 -0.22852522]\n", + " [ 0.04551185 0.97277543 -0.22723694]\n", + " [ 0.0813013 0.97079165 -0.22572919]\n", + " [ 0.11642762 0.96760383 -0.22402552]\n", + " [ 0.15069076 0.96329555 -0.22215754]\n", + " [-0.02593173 0.96392896 -0.26489337]\n", + " [ 0.01070689 0.96452582 -0.26377131]\n", + " [ 0.04709418 0.96382549 -0.26234055]\n", + " [ 0.08301749 0.96186577 -0.26061915]\n", + " [ 0.11827186 0.95870805 -0.25863224]\n", + " [ 0.15265846 0.95443595 -0.25641258]\n", + " [-0.02459926 0.95358945 -0.30010336]\n", + " [ 0.01211135 0.95420313 -0.29891421]\n", + " [ 0.04856681 0.95353402 -0.29734516]\n", + " [ 0.08455386 0.95161967 -0.29541605]\n", + " [ 0.11986756 0.94852119 -0.29315409]\n", + " [ 0.15430973 0.94432185 -0.29059377]]\n", + "DEBUG:root:radec2pix: camVec Shape: (3, 96)\n", + "DEBUG:root:radec2pix: lat: [73.30319327 74.28364829 75.19434757 76.00760673 76.6934474 77.22149469\n", + " 77.56431546 77.70181842 73.30319327 74.31487163 75.26252869 76.11836609\n", + " 76.85166299 77.43039612 77.8244634 78.01035447 77.70181842 79.30062777\n", + " 80.93200296 82.59063863 84.2712796 85.96832552 87.67438557 89.35703566\n", + " 78.01035447 79.61411514 81.24861046 82.90802789 84.58587071 86.27294722\n", + " 87.94616945 89.35703566 73.74128804 74.89975016 75.92621516 76.76637844\n", + " 77.36466213 77.67335289 73.7541097 74.95468773 76.03182731 76.93013306\n", + " 77.59097642 77.96138218 78.39443735 80.37649363 82.40216048 84.46173597\n", + " 86.54472647 88.63280521 78.70517127 80.69206097 82.71932817 84.7752745\n", + " 86.84188191 88.83673743 73.31017726 73.31017726 89.34933673 89.34933673\n", + " 74.20408349 75.46003419 76.59358943 77.54526674 78.24998117 78.64701061\n", + " 75.41740928 76.83842002 78.14733268 79.2729755 80.12769991 80.61933545\n", + " 76.49875662 78.09183026 79.59737911 80.93621381 81.99355302 82.62428133\n", + " 77.38945666 79.14833894 80.86043698 82.45133489 83.78724838 84.64121324\n", + " 78.02753384 79.92284226 81.82091734 83.6737055 85.37260957 86.62213831\n", + " 78.35820379 80.33138971 82.34363217 84.38015735 86.41373806 88.32724747]\n", + "DEBUG:root:mm_to_pix: fitpx: [[0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]]\n", + "DEBUG:root:fitpix2pix: ccdpx: shape: (96, 2)\n", + "DEBUG:roDEBUG:root:fitpix2pix: visCut: True\n", + "DEBUG:root:fitpix2pix: visCut: True\n", + "ot:radec2pix: lng: [ 90.42834373 90.49850377 90.5956611 90.73910961 90.97227481\n", + " 91.41759428 92.60593903 105.48424091 90.42834373 98.33000716\n", + " 105.9265086 112.99112584 119.3891666 125.0745167 130.06614193\n", + " 134.42085308 105.48424091 169.40901167 174.51469037 176.30215943\n", + " 177.21090794 177.76079422 178.12927502 178.39338736 134.42085308\n", + " 138.69611239 143.61480744 149.24344747 155.61405077 162.69499667\n", + " 170.36296391 178.39338736 90.48535945 90.59424595 90.76505154\n", + " 91.07156688 91.78204394 95.23155859 93.89518731 103.41200836\n", + " 112.23547382 120.07805375 126.85210045 132.60955299 157.76630729\n", + " 173.33036525 176.09473451 177.23920333 177.86448301 178.25846094\n", + " 136.19687489 141.86022321 148.55920823 156.36843482 165.22645267\n", + " 174.86312285 90.45578538 90.45578538 178.36484692 178.36484692\n", + " 94.14397512 104.23659596 113.5079539 121.64257424 128.57141019\n", + " 134.38353176 95.05856666 107.21909912 117.98189812 126.96805941\n", + " 134.24672537 140.08615622 96.48795214 111.70632897 124.31008611\n", + " 134.03082213 141.36316306 146.92239982 99.03197846 119.08696476\n", + " 133.63934958 143.48868891 150.22824427 155.00803043 104.7802641\n", + " 132.71160718 147.70838425 155.95659867 160.97729932 164.30745367\n", + " 127.76858297 159.74564279 167.84877649 171.35573132 173.29833797\n", + " 174.52977301]\n", + "DEBUG:root:radec2pix: curVec Shape: (96, 3)\n", + "DEBUG:root:cartToSphere: vec: [[-0.00114705 0.20838541 0.97804612]\n", + " [-0.00115629 0.18089194 0.9835023 ]\n", + " [-0.0011641 0.15270652 0.9882709 ]\n", + " [-0.00117048 0.12393558 0.99228958]\n", + " [-0.00117539 0.09468513 0.99550658]\n", + " [-0.00117881 0.06506336 0.99788044]\n", + " [-0.00118068 0.03518275 0.9993802 ]\n", + " [-0.00118097 0.0051606 0.99998599]\n", + " [-0.00114705 0.20838541 0.97804612]\n", + " [-0.03018244 0.20823844 0.97761228]\n", + " [-0.05910007 0.20782077 0.9763799 ]\n", + " [-0.08778716 0.20713345 0.97436602]\n", + " [-0.11613176 0.20617803 0.9715987 ]\n", + " [-0.14402308 0.20495645 0.96811684]\n", + " [-0.17135219 0.2034DEBUG:root:cartToSphere: vec: [[ 0.00162968 -0.20886687 0.97794273]\n", + " [ 0.00164392 -0.18138669 0.98341048]\n", + " [ 0.00165615 -0.15321267 0.98819185]\n", + " [ 0.00166636 -0.12445123 0.99222433]\n", + " [ 0.0016745 -0.0952084 0.99545595]\n", + " [ 0.00168051 -0.06559229 0.99784509]\n", + " [ 0.00168433 -0.03571531 0.99936059]\n", + " [ 0.00168589 -0.00569466 0.99998236]\n", + " [ 0.00162968 -0.20886687 0.97794273]\n", + " [ 0.03065921 -0.20871575 0.97749565]\n", + " [ 0.0595691 -0.20829328 0.9762507 ]\n", + " [ 0.08824658 -0.20760055 0.9742251 ]\n", + " [ 0.11657974 -0.20663909 0.97144709]\n", + " [ 0.14445783 -0.20541086 0.96795574]\n", + " [ 0.17177197 -0.20391875 0.96380057]\n", + " [ 0.1984171 -0.20216791 0.95904056]\n", + " [ 0.00168589 -0.00569466 0.99998236]\n", + " [ 0.03171597 -0.00569039 0.99948072]\n", + " [ 0.06161834 -0.0056785 0.99808363]\n", + " [ 0.09127522 -0.00565918 0.99580962]\n", + " [ 0.12057355 -0.00563263 0.99268842]\n", + " [ 0.14940474 -0.00559908 0.98876027]\n", + " [ 0.17766265 -0.00555867 0.98407575]\n", + " [ 0.205241 -0.00551146 0.97869595]\n", + " [ 0.1984171 -0.20216791 0.95904056]\n", + " [ 0.20017053 -0.17558603 0.96389901]\n", + " [ 0.20167036 -0.14832064 0.96815807]\n", + " [ 0.20291139 -0.12047648 0.97175737]\n", + " [ 0.20389075 -0.09216227 0.97464592]\n", + " [ 0.20460646 -0.06348867 0.97678318]\n", + " [ 0.20505694 -0.03456748 0.97813943]\n", + " [ 0.205241 -0.00551146 0.97869595]\n", + " [ 0.00173588 -0.19697755 0.98040646]\n", + " [ 0.00175296 -0.16281769 0.98665461]\n", + " [ 0.00176683 -0.12772153 0.99180849]\n", + " [ 0.00177741 -0.09188434 0.9957681 ]\n", + " [ 0.00178459 -0.05550542 0.99845679]\n", + " [ 0.00178824 -0.01879375 0.99982178]\n", + " [ 0.01429458 -0.20874173 0.97786633]\n", + " [ 0.04980805 -0.20837407 0.97678012]\n", + " [ 0.08502967 -0.20760004 0.97451125]\n", + " [ 0.11975303 -0.20642226 0.97110713]\n", + " [ 0.15377432 -0.2048444 0.96663966]\n", + " [ 0.1868945 -0.20287264 0.961204 ]\n", + " [ 0.0147871 -0.00579649 0.99987386]\n", + " [ 0.05152109 -0.00578593 0.99865515]\n", + " [ 0.08794575 -0.0057639 0.99610859]\n", + " [ 0.12385093 -0.00573078 0.99228429]\n", + " [ 0.15903647 -0.00568698 0.98725633]\n", + " [ 0.19330699 -0.00563273 0.98112215]\n", + " [ 0.19912208 -0.19067465 0.96124585]\n", + " [ 0.20110045 -0.1576223 0.96680599]\n", + " [ 0.20269257 -0.12364673 0.97140476]\n", + " [ 0.20389226 -0.08894663 0.97494433]\n", + " [ 0.20469584 -0.05372559 0.97735008]\n", + " [ 0.20510055 -0.0181899 0.97857186]\n", + " [ 0.00172908 -0.20877415 0.97796235]\n", + " [ 0.00172908 -0.20877415 0.97796235]\n", + " [ 0.20514779 -0.0056111 0.97871492]\n", + " [ 0.20514779 -0.0056111 0.97871492]\n", + " [ 0.01435076 -0.19694699 0.9803091 ]\n", + " [ 0.05000388 -0.19660038 0.97920779]\n", + " [ 0.08536435 -0.19587092 0.97690711]\n", + " [ 0.12022547 -0.19476145 0.97345458]\n", + " [ 0.15438306 -0.19327535 0.96892234]\n", + " [ 0.18763689 -0.19141752 0.96340632]\n", + " [ 0.01449201 -0.16279237 0.98655391]\n", + " [ 0.05049589 -0.16250539 0.98541472]\n", + " [ 0.08620426 -0.1619024 0.9830343 ]\n", + " [ 0.1214098 -0.1609872 0.97946045]\n", + " [ 0.15590842 -0.15976346 0.97476571]\n", + " [ 0.18949858 -0.15823425 0.96904706]\n", + " [ 0.01460664 -0.12770151 0.99170508]\n", + " [ 0.05089468 -0.1274748 0.99053516]\n", + " [ 0.08688344 -0.12699943 0.98809029]\n", + " [ 0.12236492 -0.12628004 0.9844187 ]\n", + " [ 0.1DEBUG:root:mm_to_pix: fitpx.shape: (96, 2)\n", + "5713605 -0.12532102 0.97959323]\n", + " [ 0.19099623 -0.12412508 0.97371115]\n", + " [ 0.0146941 -0.09186978 0.99566261]\n", + " [ 0.05119852 -0.09170505 0.99446915]\n", + " [ 0.08739951 -0.09136033 0.99197511]\n", + " [ 0.12308827 -0.09084026 0.98822939]\n", + " [ 0.15806297 -0.09014925 0.98330525]\n", + " [ 0.19212497 -0.08928993 0.97730001]\n", + " [ 0.01475342 -0.05549654 0.99834987]\n", + " [ 0.05140434 -0.05539609 0.99714035]\n", + " [ 0.08774826 -0.05518622 0.99461285]\n", + " [ 0.12357559 -0.05487037 0.99081699]\n", + " [ 0.15868553 -0.05445187 0.9858265 ]\n", + " [ 0.19288138 -0.05393273 0.97973876]\n", + " [ 0.01478357 -0.01879073 0.99971414]\n", + " [ 0.05150885 -0.01875652 0.99849639]\n", + " [ 0.08792506 -0.01868512 0.99595183]\n", + " [ 0.1238221 -0.01857781 0.99213051]\n", + " [ 0.15899976 -0.01843585 0.98710648]\n", + " [ 0.19326249 -0.01826001 0.98097716]]\n", + "DEBUG:root:radec2pix: lat: [77.93541901 79.53990642 81.17639652 82.83971343 84.5247522 86.22632371\n", + " 87.93883494 89.6479978 77.93541901 77.81390272 77.48107187 76.95718255\n", + " 76.27047DEBUG:root:radec2pix: camVec Shape: (3, 96)\n", + "DEBUG:root:radec2pix: xyfp: [[ -0.230877 31.363511 ]\n", + " [ -0.230877 26.97708243]\n", + " [ -0.230877 22.59065386]\n", + " [ -0.230877 18.20422528]\n", + " [ -0.230877 13.81779671]\n", + " [ -0.230877 9.43136815]\n", + " [ -0.230877 5.04493957]\n", + " [ -0.230877 0.658511 ]\n", + " [ -0.230877 31.363511 ]\n", + " [ -4.61730557 31.363511 ]\n", + " [ -9.00373414 31.363511 ]\n", + " [-13.39016272 31.363511 ]\n", + " [-17.77659129 31.363511 ]\n", + " [-22.16301986 31.363511 ]\n", + " [-26.54944843 31.363511 ]\n", + " [-30.935877 31.363511 ]\n", + " [ -0.230877 0.658511 ]\n", + " [ -4.61730558 0.658511 ]\n", + " [ -9.00373414 0.658511 ]\n", + " [-13.39016271 0.658511 ]\n", + " [-17.77659128 0.658511 ]\n", + " [-22.16301986 0.658511 ]\n", + " [-26.54944843 0.658511 ]\n", + " [-30.935877 0.658511 ]\n", + " [-30.935877 31.363511 ]\n", + " [-30.935877 26.97708243]\n", + " [-30.935877 22.59065386]\n", + " [-30.935877 18.20422528]\n", + " [-30.935877 13.81779671]\n", + " [-30.935877 9.43136814]\n", + " [-30.935877 5.04493957]\n", + " [-30.935877 0.658511 ]\n", + "7155 0.96396979]\n", + " [-0.19801388 0.2017284 0.95921643]\n", + " [-0.00118097 0.0051606 0.99998599]\n", + " [-0.03121228 0.00515607 0.99949948]\n", + " [-0.06111791 0.00514464 0.99811729]\n", + " [-0.09077999 0.00512646 0.99585778]\n", + " [-0.12008538 0.00510175 0.99275046]\n", + " [-0.14892541 0.0050707 0.98883543]\n", + " [-0.17719395 0.00503345 0.98416308]\n", + " [-0.20478471 0.00499006 0.97879432]\n", + " [-0.19801388 0.2017284 0.95921643]\n", + " [-0.19975823 0.17512925 0.96406763]\n", + " [-0.20124936 0.14784829 0.96831791]\n", + " [-0.20248221 0.11999042 0.97190702]\n", + " [-0.20345393 0.09166442 0.97478415]\n", + " [-0.20416257 0.06298098 0.97690892]\n", + " [-0.20460656 0.03405194 0.97825182]\n", + " [-0.20478471 0.00499006 0.97879432]\n", + " [-0.00125101 0.19649007 0.98050502]\n", + " [-0.00126235 0.1623152 0.98673815]\n", + " [-0.00127136 0.12720686 0.99187539]\n", + " [-0.00127799 0.09136033 0.99581708]\n", + " [-0.00128216 0.05497503 0.99848691]\n", + " [-0.00128379 0.01826009 0.99983245]\n", + " [-0.01381426 0.20826196 0.97797552]\n", + " [-0.04933618 0.20789982 0.97690512]\n", + " [-0.08 [ -0.245877 29.451011 ]\n", + " [ -0.245877 24.075011 ]\n", + " [ -0.245877 18.699011 ]\n", + " [ -0.245877 13.323011 ]\n", + " [ -0.245877 7.947011 ]\n", + " [ -0.245877 2.571011 ]\n", + " [ -2.143377 31.348511 ]\n", + " [ -7.519377 31.348511 ]\n", + " [-12.895377 31.348511 ]\n", + " [-18.271377 31.348511 ]\n", + " [-23.647377 31.348511 ]\n", + " [-29.023377 31.348511 ]\n", + " [ -2.143377 0.673511 ]\n", + " [ -7.519377 0.673511 ]\n", + " [-12.895377 0.673511 ]\n", + " [-18.271377 0.673511 ]\n", + " [-23.64737701 0.673511 ]\n", + " [-29.023377 0.673511 ]\n", + " [-30.920877 29.451011 ]\n", + " [-30.920877 24.075011 ]\n", + " [-30.920877 18.699011 ]\n", + " [-30.920877 13.323011 ]\n", + " [-30.920877 7.947011 ]\n", + " [-30.920877 2.571011 ]\n", + " [ -0.245877 31.348511 ]\n", + " [ -0.245877 31.348511 ]\n", + " [-30.920877 0.673511 ]\n", + " [-30.920877 0.673511 ]\n", + " [ -2.143377 29.451011 ]\n", + " [ -7.519377 29.451011 ]\n", + " [-12.895377 29.451011 ]\n", + " [-18.271377 29.451011 ]\n", + " [-23.647377 29.451011 ]\n", + " [-29.023377 29.451011 ]\n", + " [ -2.143377 24.075011 ]\n", + " [ -7.519377 24.075011 ]\n", + " [-12.895377 24.075011 ]\n", + " [-18.271377 24.075011 ]\n", + " [-23.647377 24.075011 ]\n", + " [-29.023377 24.075011 ]\n", + " [ -2.143377 18.699011 ]\n", + " [ -7.519377 18.699011 ]\n", + " [-12.895377 18.699011 ]\n", + " [-18.271377 18.699011 ]\n", + " [-23.647377 18.699011 ]\n", + " [-29.023377 18.699011 ]\n", + " [ -2.143377 13.323011 ]\n", + " [ -7.519377 13.323011 ]\n", + " [-12.895377 13.323011 ]\n", + " [-18.271377 13.323011 ]\n", + " [-23.647377 13.323011 ]\n", + " [-29.023377 13.323011 ]\n", + " [ -2.143377 7.947011 ]\n", + " [ -7.519377 7.947011 ]\n", + " [-12.895377 7.947011 ]\n", + " [-18.271377 7.947011 ]\n", + " [-23.647377 7.947011 ]\n", + " [-29.023377 7.947011 ]\n", + " [ -2.143377 2.571011 ]\n", + " [ -7.519377 2.571011 ]\n", + " [-12.895377 2.571011 ]\n", + " [-18.271377 2.571011 ]\n", + " [-23.647377 2.571011 ]\n", + " [-29.023377 2.571011 ]]\n", + "293 75.45239232 74.53398915 73.54392335 89.6479978 88.15433501\n", + " 86.45486555 84.75631331 83.07112985 81.40595581 79.76638457 78.15778269\n", + " 73.54392335 74.55657104 75.50172983 76.35064507 77.07169654 77.63217256\n", + " 78.00180643 78.15778269 78.63066146 80.61929653 82.650836 84.71585314\n", + " 86.80474047 88.90593385 77.91466044 77.62156704 77.02994397 76.1887385\n", + " 75.15547704 73.98639339 89.08782254 87.03029774 84.94699254 82.88191704\n", + " 80.84778676 78.85482091 73.9956629 75.19522506 76.26518392 77.14846305\n", + " 77.78520091 78.12246539 77.9408027 77.9408027 78.1630712 78.1630712\n", + " 78.60257643 78.28825427 77.65661779 76.76410296 75.67504453 74.45024854\n", + " 80.58418271 80.19408276 79.42435182 78.36269898 77.09829541 75.70590081\n", + " 82.60493805 82.10218621 81.14204779 79.86827274 78.40301429 76.83279998\n", + " 84.65101194 83.96303088 82.73111849 81.1974567 79.51499711 77.7695032\n", + " 86.69730834 85.65959593 84.04717305 82.22861822 80.34304005 78.44927716\n", + " 88.6217931 86.8566554 84.8442257 82.80989579 80.79300228 78.81115773]\n", + "DEBUG:root:radec2pix: xyfp Shape: (96, 2)\n", + "DEBUG:root:radec2pix: camVec: [[-0.00174024 -0.00176337 -0.00178449 -0.00180353 -0.00182039 -0.001835\n", + " -0.00184725 -0.00185707 -0.00174024 -0.0307605 -0.05966066 -0.08832819\n", + " -0.11665151 -0.14451993 -0.17182299 -0.19844965 -0.00185707 -0.03187835\n", + " -0.06177226 -0.09142104 -0.12071058 -0.14953103 -0.1777762 -0.20534186\n", + " -0.19844965 -0.20021951 -0.20172864 -0.20297731 -0.20396466 -0.20468905\n", + " -0.20514862 -0.20534186 -0.00185028 -0.00187827 -0.00190298 -0.00192425\n", + " -0.00194192 -0.00195581 -0.0144012 -0.04990298 -0.08511243 -0.11982373\n", + " -0.15383302 -0.18693675 -0.01495442 -0.05167778 -0.08809246 -0.12398684\n", + " -0.15915858 -0.19341315 -0.19916328 -0.201156 -0.20275765 -0.20396715\n", + " -0.20478152 -0.20519745 -0.00183964 -0.00183964 -0.20524866 -0.20524866\n", + " -0.01446124 -0.05010266 -0.08545073 -0.12029942 -0.1544452 -0.18768535\n", + " -0.01461361 -0.05060625 -0.08630213 -0.12149421 -0.15597972 -0.18955833\n", + " -0.01473929 -0.05101673 -0.08699359 -0.12246151 -0.1572181 -0.19106523\n", + " -0.01483744 -0.0513315 -0.08752139 -0.12319735 -0.15815714 -0.19220433\n", + " -0.01490708 -0.05154747 -0.08788092 -0.1236965 -0.15879197 -0.19297207\n", + " -0.01494734 -0.05166195 -0.08806808 -0.12395417 -0.15911791 -0.19336467]\n", + " [ 0.20894107 0.18147259 0.15331081 0.12455987 0.09532558 0.06571725\n", + " 0.03584843 0.00583647 0.20894107 0.20879621 0.2083801 0.20769404\n", + " 0.20673975 0.20551876 0.20403188 0.20227886 0.00583647 0.00584019\n", + " 0.00583613 0.00582438 0.00580507 0.00577839 0.00574449 0.00570348\n", + " 0.20227886 0.17571613 0.1484622 0.12062809 0.09232414 0.06366093\n", + " 0.03474987 0.00570348 0.1970566 0.16291184 0.12782912 0.09200243\n", + " 0.05563309 0.01893178 0.2088187 0.20845876 0.20769278 0.20652378\n", + " 0.20495452 0.20298606 0.00594178 0.00594091 0.00592823 0.00590399\n", + " 0.0058685 0.00582205 0.19079562 0.1577603 0.12379719 0.08910965\n", + " 0.05390131 0.01837776 0.20884841 0.20884841 0.00580307 0.00580307\n", + " 0.19702878 0.19668974 0.19596793 0.19486681 0.19338978 0.1915385\n", + " 0.16288937 0.16260994 0.16201386 0.16110551 0.1598896 0DEBUG:root:cartToSphere: vec: [[0.20622014 0.20255556 0.95731108]\n", + " [0.20805053 0.17610143 0.96213474]\n", + " [0.20961035 0.14895462 0.96637261]\n", + " [0.210899 0.12122494 0.96996192]\n", + " [0.21191543 0.09302239 0.9728508 ]\n", + " [0.21265818 0.06445739 0.97499833]\n", + " [0.21312568 0.03564119 0.97637449]\n", + " [0.21331667 0.00668594 0.97696023]\n", + " [0.20622014 0.20255556 0.95731108]\n", + " [0.17982824 0.20441077 0.96222557]\n", + " [0.1527297 0.20600074 0.96655954]\n", + " [0.12503427 0.2073248 0.97024886]\n", + " [0.09685185 0.20838186 0.97324032]\n", + " [0.06829276 0.20917033 0.97549161]\n", + " [0.03946812 0.20968847 0.97697135]\n", + " [0.01049004 0.20993479 0.97765911]\n", + " [0.21331667 0.00668594 0.97696023]\n", + " [0.18597713 0.00675821 0.98253083]\n", + " [0.1579279 0.00682246 0.98742708]\n", + " [0.12927353 0.00687853 0.99158512]\n", + " [0.10011961 0.00692617 0.9949513 ]\n", + " [0.07057467 0.0069651 0.99748218]\n", + " [0.04075124 0.00699507 0.99914484]\n", + " [0.01076573 0.00701584 0.99991744]\n", + " [0.01049004 0.20993479 0.97765911]\n", + " [0.01056977 0.18250233 0.9831486 ]\n", + " [0.01063642 0.15437326 0.98795534DEBUG:root:radec2pix: lng: [270.4470398 270.51926185 270.61931513 270.76712536 271.00759894\n", + " 271.46762895 272.70005845 286.49130114 270.4470398 278.35667351\n", + " 285.95982213 293.02931263 299.43042278 305.11729798 310.10927793\n", + " 314.46353671 286.49130114 349.82837514 354.73471783 356.4521324\n", + " 357.32535522 357.85379375 358.20792761 358.46177059 314.46353671\n", + " 318.74333689 323.66697635 329.30072855 335.67617912 342.7610671\n", + " 350.43132356 358.46177059 270.50490909 270.61684574 270.79254775\n", + " 271.10819213 271.84151891 275.43536905 273.91748404 283.44327486\n", + " 292.27322451 300.11957347 306.89513227 312.65252806 338.59499359\n", + " 353.59240246 356.2502422 357.3507235 357.95203643 358.33094358\n", + " 316.24148386 321.91069268 328.61592969 336.43108737 345.29354618\n", + " 354.93182927 270.47451616 270.47451616 358.43326445 358.43326445\n", + " 274.16755516 284.27018764 293.54850553 301.6868684 308.61690354\n", + " 314.4285595 275.08714159 287.26177752 298.03288482 307.02206797\n", + " 314.30032851 320.13759497 276.52519686 291.76449803 304.37699404\n", + " 314.09790313 321.42651996 326.9808709 279.08719841 299.17442797\n", + " 313.73069285 323.57233622 330.30226172 335.07338778 284.88740412\n", + " 312.85952275 327.83358678 336.05769185 341.06068787 344.37815396\n", + " 308.1938338 339.99132199 348.00244679 351.46719972 353.38615059\n", + " 354.60255033]\n", + "DEBUG:root:optics_fp: rtanth: [44.94272969 42.00239064 39.33235561 36.99120283 35.04490673 33.56223174\n", + " 32.60648436 32.22458311 44.94272969 41.90992612 39.13459306 36.67522804\n", + " 34.59927513 32.97921831 31.88462562 31.37054947 32.22458311 27.83912196\n", + " 23.45402264 19.06953475 14.68620592 10.30551524 5.93330899 1.63895634\n", + " 31.37054947 26.99005818 22.61186898 18.23763988 13.87111779 9.5229103\n", + " 5.23882082 1.63895634 43.61980801 40.19015843 37.22381993 34.83933779\n", + " 33.16246218 32.30357703 43.58131788 40.02977818 36.92204987 34.37870189\n", + " 32.5323727 31.50584319 30.31278547 24.93826049 19.56454604 14.19256282\n", + " 8.82547273 3.48595044 29.4611953 24.09404931 18.73198196 13.38109994\n", + " 8.0637011 2.9657153 44.92151855 44.92151855 1.65858428 1.65858428\n", + " 42.23832489 38.56329813 35.32679703 32.65945447 30.7099348 29.62031359\n", + " 38.68639649 34.63652908 30.99264061 27.91417471 25.60588368 24.28835443\n", + " 35.59496044 31.14567519 27.03530484 23.44280455 20.64037826 18.98125646\n", + " 33.09332103 28.25278341 23.64475409 19.43532283 15.94339684 13.72788346\n", + " 31.32311186 26.15701072 21.09606209 16.23887967 11.83897557 8.62694755\n", + " 30.41232527 25.05915804 19.71841847 14.40393713 9.16152467 4.26572571]\n", + "DEBUG:root:radec2pix: xyfp: [[ -0.167405 31.491388 ]\n", + " [ -0.167405 27.10495943]\n", + " [ -0.167405 22.71853086]\n", + " [ -0.167405 18.33210229]\n", + " [ -0.167405 13.94567372]\n", + " [ -0.167405 9.55924515]\n", + " [ -0.167405 5.17281657]\n", + " [ -0.167405 0.786388 ]\n", + " [ -0.167405 31.491388 ]\n", + " [ -4.55383357 31.491388 ]\n", + " [ -8.94026214 31.491388 ]\n", + " [-13.32669071 31.491388 ]\n", + " [-17.71311928 31.491388 ]\n", + " [-22.09954786 31.491388 ]\n", + " [-26.48597643 31.491388 ]\n", + " [-30.872405 31.491388 ]\n", + " [ -0.167405 456905 0.20713224 0.97465087]\n", + " [-0.11930642 0.20596186 0.97125985]\n", + " [-0.15334441 0.20439232 0.96680364]\n", + " [-0.18648385 0.20242966 0.96137714]\n", + " [-0.01428247 0.00526224 0.99988415]\n", + " [-0.05101935 0.00525184 0.99868386]\n", + " [-0.08744986 0.00523103 0.99615519]\n", + " [-0.12336368 0.00520016 0.9923479 ]\n", + " [-0.15856056 0.00515961 0.98733577]\n", + " [-0.19284509 0.0051096 0.98121591]\n", + " [-0.1987148 0.19022738 0.96141873]\n", + " [-0.20068229 0.157155 0.96696894]\n", + " [-0.20226422 0.12316211 0.9715556 ]\n", + " [-0.20345456 0.08844755 0.97508116]\n", + " [-0.20424964 0.05321501 0.97747135]\n", + " [-0.20464672 0.01767079 0.97867638]\n", + " [-0.00124645 0.20829266 0.97806575]\n", + " [-0.00124645 0.20829266 0.97806575]\n", + " [-0.20469148 0.0050897 0.97881331]\n", + " [-0.20469148 0.0050897 0.97881331]\n", + " [-0.01386808 0.19646111 0.98041354]\n", + " [-0.04952932 0.19611969 0.9793283 ]\n", + " [-0.08490071 0.19539637 0.97704254]\n", + " [-0.11977552 0.19429398 0.97360345]\n", + " [-0.15394951 0.1928159 0.96908285]\n", + " [-0.18722234 0.19096695 0.96357637]\n", + " [-0.01400325 0.16229116 0.98664355]\n", + " [-0.05001432 0.16200846 0.98552109]\n", + " [-0.08573269 0.16141067 0.9831564 ]\n", + " [-0.12095098 0.16050163 0.9795969 ]\n", + " [-0.15546507 0.15928501 0.97491482]\n", + " [-0.18907339 0.15776388 0.9692068 ]\n", + " [-0.01411268 0.1271878 0.99177825]\n", + " [-0.05040698 0.12696445 0.99062564]\n", + " [-0.08640482 0.12649338 0.98819716]\n", + " [-0.12189811 0.12577923 0.98454072]\n", + " [-0.15668376 0.12482642 0.97972882]\n", + " [-0.19056116 0.12363768 0.97385839]\n", + " [-0.01419584 0.0913464 0.99571799]\n", + " [-0.05070556 0.09118412 0.99454231]\n", + " [-0.08691471 0.09084281 0.99206523]\n", + " [-0.12261435 0.0903271 0.98833534]\n", + " [-0.15760261 0.0896414 0.98342556]\n", + " [-0.19168088 0.08878838 0.97743289]\n", + " [-0.01425179 0.05496643 0.99838649]\n", + " [-0.05090701 0.05486748 0.99719508]\n", + " [-0.08725814 0.05466012 0.99468502]\n", + " [-0.12309542 0.05434775 0.99090557]\n", + " [-0.15821798 0.0539337 0.98593013]\n", + " [-0.19242913 0.05341999 0.97985577]\n", + " [-0.01427955 0.01825699 0.99973135]\n", + " [-0.05100809 0.0DEBUG:root:optics_fp: cphi: [-0.7172644 -0.76741791 -0.81945139 -0.87124824 -0.91956549 -0.96011654\n", + " -0.98818444 -0.99982014 -0.7172644 -0.66450587 -0.59954537 -0.52014772\n", + " -0.4245785 -0.31242949 -0.18558325 -0.04879815 -0.99982014 -0.99975708\n", + " -0.99965502 -0.99947397 -0.99910595 -0.99816919 -0.99442317 -0.92363168\n", + " -0.04879815 -0.05662794 -0.06748483 -0.0835374 -0.10965891 -0.1594742\n", + " -0.28942109 -0.92363168 -0.73864972 -0.80160861 -0.86540808 -0.92455295\n", + " -0.97121348 -0.99694372 -0.69578694 -0.62321886 -0.53007115 -0.41291013\n", + " -0.27109351 -0.10929135 -0.99978591 -0.99968066 -0.99947617 -0.99899494\n", + " -0.99737425 -0.98288834 -0.05243384 -0.06399014 -0.08214824 -0.11477511\n", + " -0.19009076 -0.51584618 -0.71726898 -0.71726898 -0.92175016 -0.92175016\n", + " -0.71788499 -0.64689125 -0.55397779 -0.43461417 -0.2871469 -0.11621293\n", + " -0.78371934 -0.72014369 -0.63135242 -0.50838973 -0.34426777 -0.14160207\n", + " -0.85170189 -0.80076273 -0.72365733 -0.60523038 -0.42694461 -0.18103644\n", + " -0.91599489 -0.8826498 -0.8273004 -0.72987289 -0.55253697 -0.25009805\n", + " -0.96766665 -0.95325615 -0.92710821 -0.87335662 -0.74384256 -0.39763019\n", + " -0.99654822 -0.99489972 -0.99173015 -0.984408 -0.96090466 -0.80346296]\n", + "DEBUG:root:mm_to_pix: fitpx: [[0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]]\n", + ".15836938\n", + " 0.12781212 0.12759366 0.12712576 0.126413 0.12546054 0.12427244\n", + " 0.09199108 0.09183551 0.0914995 0.09098698 0.09030259 0.0894502\n", + " 0.05562756 0.05553685 0.05533649 0.05502916 0.05461804 0.05410588\n", + " 0.0189322 0.01890777 0.01884587 0.01874743 0.01861357 0.01844527]\n", + " [ 0.97792668 0.98339442 0.98817641 0.99221045 0.99544448 0.9978366\n", + " 0.99935553 0.99998124 0.97792668 0.97747528 0.97622658 0.97419778\n", + " 0.97141706 0.96792357 0.96376753 0.95901043 0.99998124 0.99947469\n", + " 0.99807321 0.9957953 0.99267077 0.98874015 0.98405418 0.97867369\n", + " 0.95901043 0.96386513 0.96812423 0.97172479 0.97461514 0.97675467\n", + " 0.97811374 0.97867369 0.98039037 0.98663884 0.99179438 0.99575692\n", + " 0.99844939 0.99981886 0.97784833 0.97675721 0.97448427 0.97107683\n", + " 0.96660698 0.96117184 0.99987052 0.99864614 0.99609466 0.9922663\n", + " 0.98723559 0.98110013 0.96121331 0.96677192 0.97137201 0.97491378\n", + " 0.97732245 0.97854804 0.9779463 0.9779463 0.97869265 0.97869265\n", + " 0.98029105 0.9791848 0.97688011 0.97342435 0.96888961 0.96337283\n", + " 0.98653611 0.98539181 0.98300735 0.97943054 0.97473363 0.9690133\n", + " 0.99168887 0.99051358 0.98806435 0.98438962 0.97956221 0.97367882\n", + " 0.99564928 0.99445026 0.99195154 0.9882023 0.98327604 0.97726975\n", + " 0.9983403 0.99712513 0.99459279 0.9907931 0.98580017 0.97971135\n", + " 0.99970903 0.99848562 0.99593617 0.99211083 0.9870841 0.98095356]]\n", + "DEBUG:root:optics_fp: rtanth: [31.57034978 27.18406789 22.79784246 18.41171382 14.02577275 9.64027533\n", + " 5.25633205 0.89702627 31.57034978 31.90657516 32.83068082 34.29517719\n", + " 36.2346004 38.57738799 41.25487818 44.20629586 0.89702627 4.70608217\n", + " 9.05379887 13.42672148 17.80628925 22.18856766 26.57221564 30.95665138\n", + " 44.20629586 41.18838618 38.43502607 36.00695508 33.97398873 32.41056182\n", + " 31.38691822 30.95665138 29.65803336 24.28227528 18.90665475 13.53133577\n", + " 8.15691443 2.78858575 31.62774376 32.44001712 34.0910252 36.46702674\n", + " 39.4372011 42.87825061 2.32483604 7.57927428 12.93401278 18.30122199\n", + " 23.67242106 29.04539658 42.85058957 39.32178756 36.24963004 33.75901556\n", + " 31.98608036 31.05398999 31.55546766 31.55546766 30.94207994 30.94207994\n", + " 29.73492188 30.59748544 32.34268701 34.83813202 37.93605456 41.50175634\n", + " 24.3761262 25.42117355 27.49689714 30.39285101 33.89947174 37.84740055\n", + " 19.02703944 20.34867971 22.88912523 26.29749216 30.28212156 34.64474606\n", + " 13.69903951 15.48238416 18.69618965 22.7418897 27.2514649 32.02957826\n", + " 8.4321936 11.09695565 15.26386952 20.01578758 25.02160156 30.1551337\n", + " 3.51323872 8.02392562 13.19949508 18.48980017 23.81851176 29.16458548]\n", + "DEBUG:root:mm_to_pix: fitpx.shape: (96, 2)\n", + "DEBUG:root:optics_fp: sphi: [-0.69680111 -0.64114722 -0.57314869 -0.49084265 -0.39293677 -0.27960013\n", + " -0.15326941 -0.01896529 -0.69680111 -0.74728304 -0.80034077 -0.85407631\n", + " -0.90DEBUG:root:radec2pix: lat: [77.94367134 79.54902489 81.18632945 82.85028944 84.53583766 86.23790238\n", + " 87.95095267 89.65971994 77.94367134 77.82164346 77.48801235 76.9631292\n", + " 76.27533882 75.45615131 74.53651433 73.54460591 89.65971994 88.15347287\n", + " 86.45230283 84.75294209 83.0672058 81.4014907 79.76129308 78.15206149\n", + " 73.54460591 74.55768324 75.50238779 76.35047091 77.07044991 77.62962616\n", + " 77.99774795 78.15206149 78.63928322 80.62896884 82.66134588 84.72698979\n", + " 86.81649257 88.91826945 77.92273249 77.62880737 77.03600995 76.19348076\n", + " 75.15884594 73.98801233 89.08995442 87.02817045 84.94370871 82.87794501\n", + " 80.84312687 78.84936896 73.99670581 75.19609757 76.26512012 77.14708483\n", + " 77.78216783 78.11748405 77.94905666 77.94905666 78.15735777 78.15735777\n", + " 78.61100015 78.29575797 77.66281562 76.76884154 75.67835331 74.45201735\n", + " 80.5936009 80.20229517 79.43086524 78.36733491 77.10116027 75.70726987\n", + " 82.61510476 82.11071991 81.1484309 79.87243611 78.40512567 76.83322353\n", + " 84.66162432 83.97115888 539113 -0.94994095 -0.98262854 -0.99880866 -0.01896529 -0.02204027\n", + " -0.02626479 -0.03243122 -0.04227651 -0.06048361 -0.10546358 -0.38328124\n", + " -0.99880866 -0.99839535 -0.9977203 -0.99650464 -0.99396928 -0.9872021\n", + " -0.95720188 -0.38328124 -0.67408945 -0.59784918 -0.50106771 -0.3810536\n", + " -0.23821077 -0.07812313 -0.71824824 -0.78204748 -0.84795317 -0.91077177\n", + " -0.96255302 -0.99400976 -0.02069125 -0.02527007 -0.03236333 -0.04482319\n", + " -0.07241971 -0.18420237 -0.9986244 -0.99795053 -0.99662012 -0.9933915\n", + " -0.98176652 -0.85668122 -0.6967964 -0.6967964 -0.38778427 -0.38778427\n", + " -0.69616172 -0.76258227 -0.83253145 -0.90061674 -0.95788656 -0.99322432\n", + " -0.62111512 -0.69382495 -0.77549605 -0.8611271 -0.93887151 -0.98992366\n", + " -0.52402662 -0.59898168 -0.69015945 -0.79605037 -0.90427778 -0.98347639\n", + " -0.40118994 -0.4700312 -0.56175978 -0.68358289 -0.83348839 -0.96822051\n", + " -0.25223255 -0.30216337 -0.37479377 -0.48708132 -0.66835488 -0.91754577\n", + " -0.08301599 -0.10086897 -0.12834059 -0.17590022 -0.27687945 -0.59535474]\n", + "DEBUG:root:radec2pix: curVec: [[ 0.4380559 -0.53746576 0.72058142]\n", + " [ 0.46010012 -0.54136016 0.70373081]\n", + " [ 0.4822116 -0.54489354 0.68597595]\n", + " [ 0.50428036 -0.54802788 0.66735804]\n", + " [ 0.52620301 -0.55073107 0.64792413]\n", + " [ 0.54788084 -0.55297661 0.62772881]\n", + " [ 0.56921846 -0.55474369 0.60683588]\n", + " [ 0.59012378 -0.5560175 0.58531912]\n", + " [ 0.4380559 -0.53746576 0.72058142]\n", + " [ 0.42563439 -0.56135779 0.70972727]\n", + " [ 0.41297448 -0.58471608 0.69825438]\n", + " [ 0.4001333 -0.60745639 0.6862143 ]\n", + " [ 0.38717387 -0.6295013 0.67366498]\n", + " [ 0.37416486 -0.65078033 0.66067059]\n", + " [ 0.3611797 -0.67123035 0.64730135]\n", + " [ 0.34829433 -0.69079658 0.63363329]\n", + " [ 0.59012378 -0.5560175 0.58531912]\n", + " [ 0.57714682 -0.58070659 0.5741789 ]\n", + " [ 0.56369644 -0.60479294 0.56255828]\n", + " [ 0.54983329 -0.6281889 0.55051072]\n", + " [ 0.53562262 -0.65081696 0.5380945 ]\n", + " [ 0.52113409 -0.67260917 0.52537241]\n", + " [ 0.5064425 -0.69350531 0.51241232]\n", + " [ 0.49162901 -0.71345093 0.49928818]\n", + " [ 0.34829433 -0.69079658 0.63363329]\n", + " [ 0.36862722 -0.69577117 0.61645474]\n", + " [ 0.3891783 -0.70022348 0.59852095]\n", + " [ 0.40984218 -0.70411248 0.57987498]\n", + " [ 0.4305154 -0.70740413 0.56056747]\n", + " [ 0.45109899 -0.71007085 0.54065616]\n", + " [ 0.47149944 -0.7120914 0.52020583]\n", + " [ 0.49162901 -0.71345093 0.49928818]\n", + " [ 0.44760945 -0.53928828 0.71331195]\n", + " [ 0.47468596 -0.5438244 0.69204643]\n", + " [ 0.50175351 -0.54777967 0.66946311]\n", + " [ 0.52861908 -0.55109252 0.64564611]\n", + " [ 0.5551008 -0.55371417 0.62069616]\n", + " [ 0.58102437 -0.55560878 0.59473487]\n", + " [ 0.43274775 -0.54795695 0.71587189]\n", + " [ 0.41735611 -0.57689189 0.70214644]\n", + " [ 0.40166233 -0.6049406 0.68754218]\n", + " [ 0.38577996 -0.63195768 0.67216316]\n", + " [ 0.36983533 -0.65781347 0.65612748]\n", + " [ 0.35396488 -0.6823951 0.63956688]\n", + " [ 0.58445702 -0.56684662 0.58059875]\n", + " [ 0.56822687 -0.59671176 0.56661566]\n", + " [ 0.55134547 -0.62558339 0.5519634 ]\n", + " [ 0.5339311 -0.65331457 0.53674729]\n", + " [ 0.51611208 -0.67977997 0.52108303]\n", + " [ 0.49802869 -0.70487121 0.50509802]\n", + " [ 0.3 0.786388 ]\n", + " [ -4.55383357 0.786388 ]\n", + " [ -8.94026214 0.786388 ]\n", + " [-13.32669071 0.786388 ]\n", + " [-17.71311929 0.786388 ]\n", + " [-22.09954786 0.786388 ]\n", + " [-26.48597643 0.786388 ]\n", + " [-30.872405 0.786388 ]\n", + " [-30.872405 31.491388 ]\n", + " [-30.872405 27.10495943]\n", + " [-30.872405 22.71853086]\n", + " [-30.872405 18.33210229]\n", + " [-30.872405 13.94567371]\n", + " [-30.872405 9.55924514]\n", + " [-30.872405 5.17281657]\n", + " [-30.872405 0.786388 ]\n", + " [ -0.182405 29.578888 ]\n", + " [ -0.182405 24.202888 ]\n", + " [ -0.182405 18.826888 ]\n", + " [ -0.182405 13.450888 ]\n", + " [ -0.182405 8.074888 ]\n", + " [ -0.182405 2.698888 ]\n", + " [ -2.079905 31.476388 ]\n", + " [ -7.455905 31.476388 ]\n", + " [-12.831905 31.476388 ]\n", + " [-18.207905 31.476388 ]\n", + " [-23.583905 31.476388 ]\n", + " [-28.959905 31.476388 ]\n", + " [ -2.079905 0.801388 ]\n", + " [ -7.455905 0.801388 ]\n", + " [-12.831905 0.801388 ]\n", + " [-18.207905 0.801388 ]\n", + " [-23.583905 0.801388 ]\n", + " [-28.959905 0.801388 ]\n", + " [-30.857405 29.578888 ]\n", + " [-30.857405 24.202888 ]\n", + " [-30.857405 18.826888 ]\n", + " [-30.857405 13.450888 ]\n", + " [-30.857405 8.074888 ]\n", + " [-30.857405 2.698888 ]\n", + " [ -0.182405 31.476388 ]\n", + " [ -0.182405 31.476388 ]\n", + " [-30.857405 0.801388 ]\n", + " [-30.857405 0.801388 ]\n", + " [ -2.079905 29.578888 ]\n", + " [ -7.455905 29.578888 ]\n", + " [-12.831905 29.578888 ]\n", + " [-18.207905 29.578888 ]\n", + " [-23.583905 29.578888 ]\n", + " [-28.959905 29.578888 ]\n", + " [ -2.079905 24.202888 ]\n", + " [ -7.455905 24.202888 ]\n", + " [-12.831905 24.202888 ]\n", + " [-18.207905 24.202888 ]\n", + " [-23.583905 24.202888 ]\n", + " [-28.959905 24.202888 ]\n", + " [ -2.079905 18.826888 ]\n", + " [ -7.455905 18.826888 ]\n", + " [-12.831905 18.826888 ]\n", + " [-18.207905 18.826888 ]\n", + " [-23.583905 18.826888 ]\n", + " [-28.959905 18.826888 ]\n", + " [ -2.079905 13.450888 ]\n", + " [ -7.455905 13.450888 ]\n", + " [-12.831905 13.450888 ]\n", + " [-18.207905 13.450888 ]\n", + " [-23.583905 13.450888 ]\n", + " [-28.959905 13.450888 ]\n", + " [ -2.079905 8.074888 ]\n", + " [ -7.455905 82.73646392 81.20037729 79.51583908 77.76861975\n", + " 86.70802953 85.66590929 84.05006409 82.22924953 80.34192865 78.44668306\n", + " 88.6299785 86.85760815 84.84280506 82.80723116 80.78933117 78.80649174]\n", + "DEBUG:root:radec2pix: xyfp: [[ -0.230877 31.363511 ]\n", + " [ -0.230877 26.97708243]\n", + " [ -0.230877 22.59065386]\n", + " [ -0.230877 18.20422528]\n", + " [ -0.230877 13.81779671]\n", + " [ -0.230877 9.43136815]\n", + " [ -0.230877 5.04493957]\n", + " [ -0.230877 0.658511 ]\n", + " [ -0.230877 31.363511 ]\n", + " [ -4.61730557 31.363511 ]\n", + " [ -9.00373414 31.363511 ]\n", + " [-13.39016272 31.363511 ]\n", + " [-17.77659129 31.363511 ]\n", + " [-22.16301986 31.363511 ]\n", + " [-26.54944843 31.363511 ]\n", + " [-30.935877 31.363511 ]\n", + " [ -0.230877 0.658511 ]\n", + " [ -4.61730558 0.658511 ]\n", + " [ -9.00373414 0.658511 ]\n", + " [-13.39016271 0.658511 ]\n", + " [-17.77659128 0.658511 ]\n", + " [-22.16301986 0.658511 ]\n", + " [-26.54944843 0.658511 ]\n", + " [-30.935877 0.658511 ]\n", + " [-30.935877 31.363511 ]\n", + " [-30.935877 26.97708243]\n", + " [-30.935877 22.59065386]\n", + " [-30.935877 18.20422528]\n", + " [-30.935877 13.81779671]\n", + " [-30.935877 9.43136814]\n", + " [-30.935877 5.04493957]\n", + " [-30.935877 0.658511 ]\n", + " [ -0.245877 29.451011 ]\n", + " [ -0.245877 24.075011 ]\n", + " [ -0.245877 18.699011 ]\n", + " [ -0.245877 13.323011 ]\n", + " [ -0.245877 7.947011 ]\n", + " [ -0.245877 2.571011 ]\n", + " [ -2.143377 31.348511 ]\n", + " [ -7.519377 31.348511 ]\n", + " [-12.895377 31.348511 ]\n", + " [-18.271377 31.348511 ]\n", + " [-23.647377 31.348511 ]\n", + " [-29.023377 31.348511 ]\n", + " [ -2.143377 0.673511 ]\n", + " [ -7.519377 0.673511 ]\n", + " [-12.895377 0.673511 ]\n", + " [-18.271377 0.673511 ]\n", + " [-23.64737701 0.673511 ]\n", + " [-29.023377 0.673511 ]\n", + " [-30.920877 29.451011 ]\n", + " [-30.920877 24.075011 ]\n", + " [-30.920877 18.699011 ]\n", + " [-30.920877 13.323011 ]\n", + " [-30.920877 7.947011 ]\n", + " [-30.920877 2.571011 ]\n", + " [ -0.245877 31.348511 ]\n", + " [ -0.245877 31.348511 ]\n", + " [-30.920877 0.673511 ]\n", + " [-30.920877 0.673511 ]\n", + " [ -2.143377 29.451011 ]\n", + " [ -7.519377 29.451011 ]\n", + " [-12.895377 29.451011 ]\n", + " [-18.271377 29.451011 ]\n", + " [-23.647377 29.451011 ]\n", + " [-29.023377 29.451011 ]\n", + " [ -2.143377 24.075011 ]\n", + " [ -7.519377 24.075011 ]\n", + " [-12.895377 24.075011 ]\n", + " [-18.271377 24.075011 ]\n", + " [-23.647377 24.075011 ]\n", + " [-29.023377 24.075011 ]\n", + " [ -2.143377 18.699011 ]\n", + " [ -7.519377 18.699011 ]\n", + " [-12.895377 18.699011 ]\n", + " [-18.271377 18.699011 ]\n", + " [-23.647377 18.699011 ]\n", + " [-29.023377 18.699011 ]\n", + " [ -2.143377 13.323011 ]\n", + " [ -7.519377 13.323011 ]\n", + " [-12.895377 13.323011 ]\n", + " [-18.271377 13.323011 ]\n", + " [-23.647377 13.323011 ]\n", + " [-29.023377 13.323011 ]\n", + " [ -2.143377 7.947011 ]\n", + " [ -7.519377 7.947011 ]\n", + " [-12.895377 7.947011 ]\n", + " [-18.271377 7.947011 ]\n", + " [-23.647377 7.947011 ]\n", + " [-29.023377 7.947011 ]\n", + " [ -2.143377 2.571011 ]\n", + " [ -7.519377 2.571011 ]\n", + " [-12.895377 2.571011 ]\n", + " [-18.271377 2.571011 ]\n", + " [-23.647377 2.571011 ]\n", + " [-29.023377 2.571011 ]]\n", + "DEBUG:root:optics_fp: xyfp: [[32.2358199 31.31614388]\n", + " [32.23338667 26.92971599]\n", + " [32.23095344 22.54328809]\n", + " [32.2285202 18.15686019]\n", + " [32.22608698 13.7704323 ]\n", + " [32.22365375 9.3840044 ]\n", + " [32.22122051 4.99757651]\n", + " [32.21878728 0.61114861]\n", + " [32.2358199 31.31614388]\n", + " [27.849392 31.31857712]\n", + " [23.46296411 31.32101035]\n", + " [19.07653621 31.32344358]\n", + " [14.69010831 31.3258768 ]\n", + " [10.30368042 31.32831004]\n", + " [ 5.91725252 31.33074327]\n", + " [ 1.53082462 31.3331765 ]\n", + " [32.21878728 0.61114861]\n", + " [27.83235938 0.61358184]\n", + " [23.44593149 0.61601507]\n", + " [19.0595036 0.6184483 ]\n", + " [14.6730757 0.62088153]\n", + " [10.2866478 0.62331476]\n", + " [ 5.90021991 0.625748 ]\n", + " [ 1.513792 0.62818122]\n", + " [ 1.53082462 31.3331765 ]\n", + " [ 1.52839139 26.94674861]\n", + " [ 1.52595816 22.5603207 ]\n", + " [ 1.52352493 18.17389281]\n", + " [ 1.5210917 13.78746492]\n", + " [ 1.51865847 9.40103702]\n", + " [ 1.51622524 5.01460912]\n", + " [ 1.513792 0.62818122]\n", + " [32.219759 29.4036525 ]\n", + " [32.21677684 24.02765333]\n", + " [32.21379467 18.65165415]\n", + " [32.21081251 13.27565498]\n", + " [32.20783035 7.89965581]\n", + " [32.20484818 2.52365664]\n", + " [30.32331188 31.30220479]\n", + " [24.9473127 31.30518695]\n", + " [19.57131353 31.30816912]\n", + " [14.19531435 31.31115127]\n", + " [ 8.81931518 31.31413344]\n", + " [ 3.44331601 31.3171156 ]\n", + " [30.3062959 0.62720951]\n", + " [24.93029672 0.63019167]\n", + " [19.55429755 0.63317383]\n", + " [14.17829838 0.636156 ]\n", + " [ 8.80229921 0.63913816]\n", + " [ 3.42630004 0.64212033]\n", + " [ 1.54476372 29.42066847]\n", + " [ 1.54178156 24.0446693 ]\n", + " [ 1.53879939 18.66867013]\n", + " [ 1.53581723 13.29267096]\n", + " [ 1.53283507 7.91667178]\n", + " [ 1.5298529 2.54067261]\n", + " [32.22081158 31.30115221]\n", + " [32.22081158 31.30115221]\n", + " [ 1.52880032 0.6431729 ]\n", + " [ 1.52880032 0.6431729 ]\n", + " [30.32225929 29.40470508]\n", + " [24.94626012 29.40768724]\n", + " [19.57026095 29.41066941]\n", + " [14.19426178 29.41365157]\n", + " [ 8.8182626 29.41663373]\n", + " [ 3.44226343 29.4196159 ]\n", + " [30.31927713 24.02870591]\n", + " [24.94327796 24.03168807]\n", + " [19.56727878 24.03467023]\n", + " [14.19127961 24.0376524 ]\n", + " [ 8.81528044 24.04063456]\n", + " [ 3.43928127 24.04361672]\n", + " [30.31629496 18.65270673]\n", + " [24.9402958 18.6556889 ]\n", + " [19.56429662 18.65867106]\n", + " [14.18829744 18.66165322]\n", + " [ 8.81229827 18.66463538]\n", + " [ 3.4362991 18.66761755]\n", + " [30.31331281 13.27670756]\n", + " [24.93731363 13.27968972]\n", + " [19.56131446 13.28267189]\n", + " [14.18531529 13.28565406]\n", + " [ 8.80931611 13.28863621]\n", + " [ 3.43331694 13.29161838]\n", + " [30.31033064 7.90070839]\n", + " [24.93433147 7.90369055]\n", + " [19.55833229 7.90667271]\n", + " [14.18233312 7.90965488]\n", + " [ 8.80633395 7.91263704]\n", + " [ 3.43033477 7.9156192 ]\n", + " [30.30734847 2.52470921]\n", + " [24.9313493 2.52769138]\n", + " [19.55535013 2.53067354]\n", + " [14.17935096 2.53365571]\n", + " [ 8.80335178 2.53663787]\n", + " [ 3.42735261 2.53962004]]\n", + "DEBUG:root:radec2pix: camVec Shape: (3, 96)\n", + "5717039 -0.6929613 0.62628584]\n", + " [ 0.38225185 -0.69871213 0.60471885]\n", + " [ 0.40755621 -0.70363697 0.58205923]\n", + " [ 0.43289196 -0.70767029 0.55839709]\n", + " [ 0.45807701 -0.71076133 0.53383873]\n", + " [ 0.48294161 -0.71287359 0.50850629]\n", + " [ 0.43808903 -0.53756215 0.72048937]\n", + " [ 0.43808903 -0.53756215 0.72048937]\n", + " [ 0.4916115 -0.71338089 0.49940549]\n", + " [ 0.4916115 -0.71338089 0.49940549]\n", + " [ 0.44224527 -0.54972333 0.70867721]\n", + " [ 0.42677127 -0.57876535 0.69490788]\n", + " [ 0.41096943 -0.60691047 0.68026746]\n", + " [ 0.39495336 -0.63401312 0.66486029]\n", + " [ 0.37884989 -0.65994347 0.64880457]\n", + " [ 0.36279726 -0.6845881 0.63223199]\n", + " [ 0.46926377 -0.55436067 0.68736873]\n", + " [ 0.45357831 -0.58367145 0.67349413]\n", + " [ 0.43749563 -0.61205768 0.65877384]\n", + " [ 0.42112907 -0.63937338 0.64331329]\n", + " [ 0.40460546 -0.66548899 0.62723107]\n", + " [ 0.3880655 -0.69029067 0.61065862]\n", + " [ 0.49628352 -0.55839805 0.6647513 ]\n", + " [ 0.48041857 -0.58792618 0.65080013]\n", + " [ 0.46409185 -0.61650581 0.63603407]\n", + " [ 0.44741668 -0.64399065 0.62055971]\n", + " [ 0.43051916 -0.67025213 0.60449593]\n", + " [ 0.41353999 -0.69517734 0.58797376]\n", + " [ 0.52311165 -0.56177349 0.64090931]\n", + " [ 0.50709894 -0.59146654 0.62691147]\n", + " [ 0.49056396 -0.62019132 0.61213538]\n", + " [ 0.47362083 -0.6478012 0.59668829]\n", + " [ 0.45639532 -0.6741689 0.5806889 ]\n", + " [ 0.4390274 -0.69918319 0.5642675 ]\n", + " [ 0.54]\n", + " [0.01068985 0.12565215 0.99201677]\n", + " [0.01072978 0.09644485 0.99528049]\n", + " [0.01075592 0.06686038 0.99770436]\n", + " [0.01076796 0.03701177 0.99925681]\n", + " [0.01076573 0.00701584 0.99991744]\n", + " [0.20696213 0.19112005 0.95949977]\n", + " [0.20902258 0.15821703 0.96502691]\n", + " [0.21067623 0.12438266 0.96961048]\n", + " [0.21192136 0.08981934 0.97315046]\n", + " [0.21275532 0.05473042 0.9755715 ]\n", + " [0.21317532 0.0193211 0.9768229 ]\n", + " [0.1948134 0.20330747 0.95953833]\n", + " [0.16197729 0.20540191 0.96518051]\n", + " [0.1281888 0.20709749 0.96988569]\n", + " [0.09365018 0.2083924 0.97355136]\n", + " [0.05856456 0.20928375 0.97609964]\n", + " [0.02313694 0.20976841 0.97747731]\n", + " [0.20149034 0.00681796 0.97946677]\n", + " [0.16749252 0.00690216 0.98584919]\n", + " [0.1325326 0.00697398 0.99115411]\n", + " [0.09680441 0.00703299 0.99527858]\n", + " [0.0605079 0.00707868 0.99814262]\n", + " [0.02385188 0.00711058 0.99969022]\n", + " [0.01062602 0.19806614 0.98013106]\n", + " [0.01071595 0.16396327 0.98640824]\n", + " [0.0107859 0.12891793 0.99159661]\n", + " [0.01083545 0.09312436 0.99559552]\n", + " [0.01086402 0.05678335 0.99832741]\n", + " [0.01087112 0.02010461 0.99973878]\n", + " [0.20613793 0.2024732 0.95734621]\n", + " [0.20613793 0.2024732 0.95734621]\n", + " [0.01086844 0.00711848 0.9999156 ]\n", + " [0.01086844 0.00711848 0.9999156 ]\n", + " [0.19558949 0.19190537 0.96172609]\n", + " [0.1626169 0.19387759 0.96745399]\n", + " [0.12869151 0.19547539 0.9722283 ]\n", + " [0.09401511 0.1966967 0.9759465 ]\n", + " [0.05879055 0.19753824 0.97853069]\n", + " [0.02322296 0.19799645 0.9799276 ]\n", + " [0.19753009 0.15886347 0.96733875]\n", + " [0.16421774 0.1604891 0.97328094]\n", + " [0.12995114 0.1618095 0.97822819]\n", + " [0.09493033 0.16282181 0.98207805]\n", + " [0.05935726 0.16352163 0.98475245]\n", + " [0.02343764 0.16390447 0.98619775]\n", + " [0.19908829 0.12488974 0.97199095]\n", + " [0.16550536 0.12616714 0.97810522]\n", + " [0.13096617 0.12720791 0.98319175]\n", + " [0.09566871 0.12800859 0.98714806]\n", + " [0.05981412 0.1285643 0.9898957 ]\n", + " [0.02360896 0.12887024 0.99138039]\n", + " [0.20026215 0.09018615 0.97558266]\n", + " [0.16647694 0.09111203 0.98182688]\n", + " [0.13173312 0.09186896 0.98701899]\n", + " [0.09622682 0.09245358 0.99105637]\n", + " [0.06015857 0.0928614 0.99386 ]\n", + " [0.02373584 0.09308815 0.99537491]\n", + " [0.20104857 0.05495583 0.97803851]\n", + " [0.16712825 0.05552612 0.98437036]\n", + " [0.13224724 0.05599434 0.98963392]\n", + " [0.09660024 0.05635799 0.99372641]\n", + " [0.06038739 0.05661388 0.99656823]\n", + " [0.02381698 0.05675899 0.99810379]\n", + " [0.20144435 0.01940412 0.97930774]\n", + " [0.16745515 0.01961547 0.98568454]\n", + " [0.13250401 0.01979108 0.99098486]\n", + " [0.09678486 0.01992994 0.99510577]\n", + " [0.06049766 0.02003078 0.99796733]\n", + " [0.02385117 0.02009239 0.99951359]]\n", + "DEBUG:root:optics_fp: xyfp shape: (96, 2)\n", + "DEBUG:root:optics_fp: cphi: [-0.00747594 -0.00870042 -0.01039606 -0.01289954 -0.01696858 -0.02473916\n", + " -0.04546654 -0.26697332 -0.00747594 -0.14487442 -0.27440415 -0.39058855\n", + " -0.49073902 -0.57464131 -0.6436715 -0.69992333 -0.26697332 -0.98296427\n", + " -0.99542074 -0.99791805 -0.99881542 -0.99923641 -0.99946703 -0.99960689\n", + " -0.69992333 -0.75121935 -0.80504713 -0.85934793 -0.91078494 -0.95473483\n", + " -0.98588803 -0.99960689 -0.00847102 -0.01037136 -0.01335227 -0.01870128\n", + " -0.03109752 -0.0911811 -0.06793149 -0.23195178 -0.37841395 -0.50117932\n", + " -0.59975148 -0.67699869 -0.92564824 -0.99323234 -0.99767802 -0.99883933\n", + " -0.99930549 -0.99953809 -0.72172248 -0.78650646 -0.85317965 -0.91614203\n", + " -0.96694122 -0.99598364 -0.00795487 -0.00795487 -0.9995928 -0.9995928\n", + " -0.07226297 -0.24592654 -0.39887637 -0.52461865 -0.62348955 -0.69945795\n", + " -0.08817399 -0.29602647 -0.46919258 -0.60136972 -0.69774952 -0.76701014\n", + " -0.11299429 -0.36984939 -0.56367146 -0.69504524 -0.7811192 -0.83793215\n", + " -0.1569857 -0.48613658 -0.69011673 -0.80373942 -0.86801033 -0.90636701\n", + " -0.25511271 -0.67830854 -0.84534002 -0.91323709 -0.94538951 -0.96272694\n", + " -0.6124737 -0.93816501 -0.97759544 -0.98864055 -0.99316726 -0.99544587]\n", + " 8.074888 ]\n", + " [-12.831905 8.074888 ]\n", + " [-18.20790499 8.074888 ]\n", + " [-23.583905 8.074888 ]\n", + " [-28.959905 8.074888 ]\n", + " [ -2.079905 2.698888 ]\n", + " [ -7.455905 2.698888 ]\n", + " [-12.831905 2.698888 ]\n", + " [-18.207905 2.698888 ]\n", + " [-23.583905 2.698888 ]\n", + " [-28.959905 2.698888 ]]\n", + "DEBUG:root:cartToSphere: vec: [[-0.00174024 0.20894107 0.97792668]\n", + " [-0.00176337 0.18147259 0.98339442]\n", + " [-0.00178449 0.15331081 0.98817641]\n", + " [-0.00180353 0.12455987 0.99221045]\n", + " [-0.00182039 0.09532558 0.99544448]\n", + " [-0.001835 0.06571725 0.9978366 ]\n", + " [-0.00184725 0.03584843 0.99935553]\n", + " [-0.00185707 0.00583647 0.99998124]\n", + " [-0.00174024 0.20894107 0.97792668]\n", + " [-0.0307605 0.20879621 0.97747528]\n", + " [-0.05966066 0.2083801 0.97622658]\n", + " [-0.08832819 0.20769404 0.97419778]\n", + " [-0.11665151 0.20673975 0.97141706]\n", + " [-0.14451993 0.20551876 0.96792357]\n", + " [-0.17182299 0.20403188 0.96376753]\n", + " [-0.19844965 0.20227886 0.95901043]\n", + " [-0.00185707 0.00583647 0.99998124]\n", + " [-0.03187835 0.00584019 0.99947469]\n", + " [-0.06177226 0.00583613 0.99807321]\n", + " [-0.09142104 0.00582438 0.9957953 ]\n", + " [-0.12071058 0.00580507 0.99267077]\n", + " [-0.14953103 0.00577839 0.98874015]\n", + " [-0.1777762 0.00574449 0.98405418]\n", + " [-0.20534186 0.00570348 0.97867369]\n", + " [-0DEBUG:root:optics_fp: sphi: [0.99997205 0.99996215 0.99994596 0.9999168 0.99985602 0.99969394\n", + " 0.99896586 0.96370392 0.99997205 0.98945005 0.96161446 0.92056536\n", + " 0.87130661 0.81840538 0.7653019 0.71421799 0.96370392 0.18379675\n", + " 0.09559053 0.0644947 0.04865962 0.03907157 0.03264451 0.02803701\n", + " 0.71421799 0.66005264 0.59321085 0.51139137 0.41288109 0.29745825\n", + " 0.16740606 0.02803701 0.99996412 0.99994622 0.99991085 0.99982512\n", + " 0.99951636 0.99583433 0.99768999 0.97272729 0.92563647 0.86534345\n", + " 0.80018633 0.73598422 0.37838518 0.11614437 0.06810698 0.04816635\n", + " 0.03726317 0.03039091 0.69218254 0.61758205 0.52161719 0.40085381\n", + " 0.25499936 0.08953536 0.99996836 0.99996836 0.02853493 0.02853493\n", + " 0.99738561 0.96928847 0.91700471 0.85133735 0.78183168 0.71467375\n", + " 0.99610509 0.95517974 0.88309587 0.79897088 0.71634182 0.64163497\n", + " 0.99359564 0.92909172 0.82599908 0.71896601 0.62438193 0.54577441\n", + " 0.98760088 0.87388285 0.72369807 0.59498147 0.49654613 0.42249123\n", + " 0.96691132 0.7347772 0.53422865 DEBUG:root:radec2pix: lng: [44.48637088 40.24577336 35.3986005 29.89032997 23.69955042 16.86222735\n", + " 9.49377237 1.79522173 44.48637088 48.66063412 53.44662754 58.90649312\n", + " 65.0719071 71.9184746 79.34035003 87.13941954 1.79522173 2.08115239\n", + " 2.4736322 3.04578526 3.95735654 5.6363423 9.74006464 33.09159725\n", + " 87.13941954 86.68537287 86.05851166 85.13727473 83.65177634 80.86105503\n", + " 73.77851938 33.09159725 42.72105973 37.1234454 30.55748427 22.96885005\n", + " 14.42630836 5.17884001 46.22224274 51.74114431 58.24340245 65.80116251\n", + " 74.36661193 83.70585675 1.93801443 2.35975361 3.01217367 4.15532416\n", + " 6.6725739 16.60005947 86.92909007 86.26070822 85.21749379 83.36321455\n", + " 79.16883097 61.59868241 44.48614146 44.48614146 33.22349754 33.22349754\n", + " 44.45527608 50.01139871 56.64103308 64.45360362 73.42615136 83.31035484\n", + " 38.80796323 44.3420957 51.23163704 59.75644459 70.04944098 81.86211477\n", + " 32.10039047 37.31880048 44.16600061 53.22697224 65.04995068 79.6185637\n", + " 24.24396698 28.69167771 34.89141577 43.85434751 57.06355174 75.69539259\n", + " 15.28811193 18.37837592 22.94811312 30.25991115 43.15274514 67.23630391\n", + " 5.50203766 6.68110194 8.4950185 11.63570463 18.3197087 40.11102427]\n", + "DEBUG:root:radec2pix: ccdpx: [[-4.45000000e+01 -5.00000261e-01]\n", + " [-4.45000000e+01 2.91928571e+02]\n", + " [-4.45000000e+01 5.84357143e+02]\n", + " [-4.45000000e+01 8.76785715e+02]\n", + " [-4.45000000e+01 1.16921429e+03]\n", + " [-4.45000000e+01 1.46164286e+03]\n", + " [-4.45000000e+01 1.75407143e+03]\n", + " [-4.44999999e+01 2.04650000e+03]\n", + " [-4.45000000e+01 -5.00000261e-01]\n", + " [ 2.47928571e+02 -5.00000125e-01]\n", + " [ 5.40357143e+02 -4.99999959e-01]\n", + " [ 8.32785714e+02 -5.00000265e-01]\n", + " [ 1.12521429e+03 -4.99999989e-01]\n", + " [ 1.41764286e+03 -4.99999804e-01]\n", + " [ 1.71007143e+03 -4.99999857e-01]\n", + " [ 2.00250000e+03 -5.00000247e-01]\n", + " [-4.44999999e+01 2.04650000e+03]\n", + " [ 2.47928572e+02 2.04650000e+03]\n", + " [ 5.40357143e+02 2.04650000e+03]\n", + " [ 8.32785714e+02 2.04650000e+03]\n", + " [ 1.12521429e+03 2.04650000e+03]\n", + " [ 1.41764286e+03 2.04650000e+03]\n", + " [ 1.71007143e+03 2.04650000e+03]\n", + " [ 2.00250000e+03 2.04650000e+03]\n", + " [ 2.00250000e+03 -5.00000247e-01]\n", + " [ 2.00250000e+03 2.91928571e+02]\n", + " [ 2.00250000e+03 5.84357143e+02]\n", + " [ 2.00250000e+03 8.76785714e+02]\n", + " [ 2.00250000e+03 1.16921429e+03]\n", + " [ 2.00250000e+03 1.46164286e+03]\n", + " [ 2.00250000e+03 1.75407143e+03]\n", + " [ 2.00250000e+03 2.04650000e+03]\n", + " [-4.35000000e+01 1.27000000e+02]\n", + " [-4.35000000e+01 4.85400000e+02]\n", + " [-4.35000000e+01 8.43800000e+02]\n", + " [-4.35000000e+01 1.20220000e+03]\n", + " [-4.35000000e+01 1.56060000e+03]\n", + " [-4.35000000e+01 1.91900000e+03]\n", + " [ 8.30000000e+01 4.99999891e-01]\n", + " [ 4.41400000e+02 5.00000001e-01]\n", + " [ 7.99800000e+02 5.00000129e-01]\n", + " [ 1.15820000e+03 5.00000084e-01]\n", + " [ 1.51660000e+03 5.00000000e-01]\n", + " [ 1.87500000e+03 5.00000003e-01]\n", + " [ 8.30000000e+01 2.04550000e+03]\n", + " [ 4.41400000e+02 2.04550000e+03]\n", + " [ 7.99800000e+02 2.04550000e+03]\n", + " [ 1.15820000e+03 2.04550000e+03]\n", + " [ 1.51660000e+03 2.04550000e+03]\n", + " [ 1.87500000e+03 2.04550000e+03]\n", + " [ 2.00150000e+03 1.27000000e+02]\n", + " [ 2.00150000e+03 4.85400000e+02]\n", + " [ 2.00150000e+03 8.43800000e+02]\n", + " [ 2.00150000e+03 1.20220000e+03]\n", + " [ 2.00150000e+03 1.56060000e+03]\n", + " [ 2.00150000e+03 1.91900000e+03]\n", + " [-4.35000000e+01 4.99999945e-01]\n", + " [-4.35000000e+01 4.99999945e-01]\n", + " [ 2.00150000e+03 2.04550000e+03]\n", + " [ 2.00150000e+03 2.04550000e+03]\n", + " [ 8.30000000e+01 1.27000000e+02]\n", + " [ 4.41400000e+02 1.27000000e+02]\n", + " [ 7.99800000e+02 1.27000000e+02]\n", + " [ 1.15820000e+03 1.27000000e+02]\n", + " [ 1.51660000e+03 1.27000000e+02]\n", + " [ 1.87500000e+03 1.27000000e+02]\n", + " [ 8.30000000e+01 4.85400000e+02]\n", + " [ 4.41400000e+02 4.85400000e+02]\n", + " [ 7.99800000e+02 4.85400000e+02]\n", + " [ 1.15820000e+03 4.85400000e+02]\n", + " [ 1.51660000e+03 4.85400000e+02]\n", + " [ 1.87500000e+03 4.85400000e+02]\n", + " [ 8.30000000e+01 8.43800000e+02]\n", + " [ 4.41400000e+02 8.43800000e+02]\n", + " [ 7.99800000e+02 8.43800000e+02]\n", + " [ 1.15820000e+03 8.43800000e+02]\n", + " [ 1.51660000e+03 8.43800000e+02]\n", + " [ 1.87500000e+03 8.43800000e+02]\n", + " [ 8.30000000e+01 1.20220000e+03]\n", + " [ 4.414000.19844965 0.20227886 0.95901043]\n", + " [-0.20021951 0.17571613 0.96386513]\n", + " [-0.20172864 0.1484622 0.96812423]\n", + " [-0.20297731 0.12062809 0.97172479]\n", + " [-0.20396466 0.09232414 0.97461514]\n", + " [-0.20468905 0.06366093 0.97675467]\n", + " [-0.20514862 0.03474987 0.97811374]\n", + " [-0.20534186 0.00570348 0.97867369]\n", + " [-0.00185028 0.1970566 0.98039037]\n", + " [-0.00187827 0.16291184 0.98663884]\n", + " [-0.00190298 0.12782912 0.99179438]\n", + " [-0.00192425 0.09200243 0.99575692]\n", + " [-0.00194192 0.05563309 0.99844939]\n", + " [-0.00195581 0.01893178 0.99981886]\n", + " [-0.0144012 0.2088187 0.97784833]\n", + " [-0.04990298 0.20845876 0.97675721]\n", + " [-0.08511243 0.20769278 0.97448427]\n", + " [-0.11982373 0.20652378 0.97107683]\n", + " [-0.15383302 0.20495452 0.96660698]\n", + " [-0.18693675 0.20298606 0.96117184]\n", + " [-0.01495442 0.00594178 0.99987052]\n", + " [-0.05167778 0.00594091 0.99864614]\n", + " [-0.08809246 0.00592823 0.99609466]\n", + " [-0.12398684 0.00590399 0.9922663 ]\n", + " [-0.15915858 0.0058685 0.98723559]\n", + " [-0.19341315 0.00582205 0.98110013]\n", + " [-0.19916328 0.19079562 0.96121331]\n", + " [-0.201156 0.1577603 0.96677192]\n", + " [-0.20275765 0.12379719 0.97137201]\n", + " [-0.20396715 0.08910965 0.97491378]\n", + " [-0.20478152 0.05390131 0.97732245]\n", + " [-0.20519745 0.01837776 0.97854804]\n", + " [-0.00183964 0.20884841 0.9779463 ]\n", + " [-0.00183964 0.20884841 0.9779463 ]\n", + " [-0.20524866 0.00580307 0.97869265]\n", + " [-0.20524866 0.00580307 0.97869265]\n", + " [-0.01446124 0.19702878 0.98029105]\n", + " [-0.05010266 0.19668974 0.9791848 ]\n", + " [-0.08545073 0.19596793 0.97688011]\n", + " [-0.12029942 0.19486681 0.97342435]\n", + " [-0.1544452 0.19338978 0.96888961]\n", + " [-0.18768535 0.1915385 0.96337283]\n", + " [-0.01461361 0.16288937 0.98653611]\n", + " [-0.05060625 0.16260994 0.98539181]\n", + " [-0.08630213 0.16201386 0.98300735]\n", + " [-0.12149421 0.16110551 0.97943054]\n", + " [-0.15597972 0.1598896 0.97473363]\n", + " [-0.18955833 0.15836938 0.9690133 ]\n", + " [-0.01473929 0.12781212 0.99168887]\n", + " [-0.05101673 0.12759366 0.99051358]\n", + " [-0.08699359 0.12712576 0.98806435]\n", + " [-0.12246151 00e+02 1.20220000e+03]\n", + " [ 7.99800000e+02 1.20220000e+03]\n", + " [ 1.15820000e+03 1.20220000e+03]\n", + " [ 1.51660000e+03 1.20220000e+03]\n", + " [ 1.87500000e+03 1.20220000e+03]\n", + " [ 8.30000000e+01 1.56060000e+03]\n", + " [ 4.41400000e+02 1.56060000e+03]\n", + " [ 7.99800000e+02 1.56060000e+03]\n", + " [ 1.15820000e+03 1.56060000e+03]\n", + " [ 1.51660000e+03 1.56060000e+03]\n", + " [ 1.87500000e+03 1.56060000e+03]\n", + " [ 8.29999998e+01 1.91900000e+03]\n", + " [ 4.41400000e+02 1.91900000e+03]\n", + " [ 7.99800000e+02 1.91900000e+03]\n", + " [ 1.15820000e+03 1.91900000e+03]\n", + " [ 1.51660000e+03 1.91900000e+03]\n", + " [ 1.87500000e+03 1.91900000e+03]]\n", + "0.126413 0.98438962]\n", + " [-0.1572181 0.12546054 0.97956221]\n", + " [-0.19106523 0.12427244 0.97367882]\n", + " [-0.01483744 0.09199108 0.99564928]\n", + " [-0.0513315 0.09183551 0.99445026]\n", + " [-0.08752139 0.0914995 0.99195154]\n", + " [-0.12319735 0.09098698 0.9882023 ]\n", + " [-0.15815714 0.09030259 0.98327604]\n", + " [-0.19220433 0.0894502 0.97726975]\n", + " [-0.01490708 0.05562756 0.9983403 ]\n", + " [-0.05154747 0.05553685 0.99712513]\n", + " [-0.08788092 0.05533649 0.99459279]\n", + " [-0.1236965 0.05502916 0.9907931 ]\n", + " [-0.15879197 0.05461804 0.98580017]\n", + " [-0.19297207 0.05410588 0.97971135]\n", + " [-0.01494734 0.0189322 0.99970903]\n", + " [-0.05166195 0.01890777 0.99848562]\n", + " [-0.08806808 0.01884587 0.99593617]\n", + " [-0.12395417 0.01874743 0.99211083]\n", + " [-0.15911791 0.01861357 0.9870841 ]\n", + " [-0.19336467 0.01844527 0.98095356]]\n", + "DEBUG:root:optics_fp: rtanth: [31.53710793 27.15083443 22.76462071 18.37850955 13.99259736 9.60715672\n", + " 5.22337543 0.86680593 31.53710793 31.87457578 32.80044965 34.26706764\n", + " 36.20878157 38.55387546 41.23358186 44.18706537 0.86680593 4.70645911\n", + " 9.05713384 13.4310871 17.81117737 22.19377139 26.57763063 30.96221766\n", + " 44.18706537 41.17129315 38.42050918 35.99551614 33.96616479 32.40686702\n", + " 31.3877559 30.96221766 29.62479828 24.2490533 18.8734536 13.49817273\n", + " 8.12384367 2.75604003 31.59497037 32.40914016 34.06266769 36.44147428\n", + " 39.41445822 42.8581467 2.31847961 7.58192329 12.93825823 18.30612956662 -0.56443753 0.61594383]\n", + " [ 0.53343851 -0.59424148 0.60193058]\n", + " [ 0.51673103 -0.62306236 0.58718168]\n", + " [ 0.49955987 -0.65075333 0.5718042 ]\n", + " [ 0.48205137 -0.67718824 0.55591597]\n", + " [ 0.46434514 -0.70225752 0.53964614]\n", + " [ 0.57547457 -0.56635358 0.58997682]\n", + " [ 0.55926484 -0.59621275 0.5759802 ]\n", + " [ 0.54242197 -0.62507999 0.56129619]\n", + " [ 0.52506357 -0.65280835 0.54603068]\n", + " [ 0.50731735 -0.6792724 0.53030001]\n", + " [ 0.48932332 -0.70436362 0.51423202]]\n", + "DEBUG:root:radec2pix: lat: [73.19833089 74.18249103 75.09922688 75.92116023 76.61853688 77.16100123\n", + " 77.52079342 77.67706772 73.19833089 74.20159367 75.14093371 75.98890558\n", + " 76.71531245 77.28881429 77.68005228 77.86611976 77.67706772 79.27473553\n", + " 80.90480881 82.56181915 84.24016258 85.93331116 87.63030205 89.26372814\n", + " 77.86611976 79.46663016 81.09832556 82.755367 84.43126132 86.11695715\n", + " 87.79091006 89.26372814 73.63774563 74.80227565 75.83862014 76.69292614\n", + " 77.3096353 77.64025349 73.64559076 74.835883 75.90321746 76.7930912\n", + " 77.44812351 77.8166633 78.36913095 80.34967761 82.37343442 84.43012843\n", + " 86.50734673 88.57380626 78.55945528 80.5426681 82.56690719 84.62047016\n", + " 86.68569475 88.69035885 73.20529527 73.20529527 89.25558432 89.25558432\n", + " 74.09681811 75.34210951 76.46528549 77.40781255 78.10603298 78.5008319\n", + " 75.3160395 76.72544415 78.02222799 79.13621749 79.98176995 80.46955109\n", + " 76.40729948 77.98832745 79.48016045 80.80422916 81.84813181 82.47175257\n", + " 77.31254652 79.06012758 80.75806605 82.3313541 83.64750757 84.48728684\n", + " 77.96997446 79.85669547 81.74302972 83.57869755 85.2518859 86.47101417\n", + " 78.32402093 80.29356392 82.30071175 84.32903186 86.34620527 88.21286949]\n", + "DEBUG:root:radec2pix: curVec Shape: (96, 3)\n", + "0.40742853 0.32594274 0.27047521\n", + " 0.79049097 0.3461884 0.21049264 0.15029925 0.11669955 0.09532849]\n", + "DEBUG:root:make_az_asym: xyp: [[32.2358199 31.31614388]\n", + " [32.23338667 26.92971599]\n", + " [32.23095344 22.54328809]\n", + " [32.2285202 18.15686019]\n", + " [32.22608698 13.7704323 ]\n", + " [32.22365375 9.3840044 ]\n", + " [32.22122051 4.99757651]\n", + " [32.21878728 0.61114861]\n", + " [32.2358199 31.31614388]\n", + " [27.849392 31.31857712]\n", + " [23.46296411 31.32101035]\n", + " [19.07653621 31.32344358]\n", + " [14.69010831 31.3258768 ]\n", + " [10.30368042 31.32831004]\n", + " [ 5.91725252 31.33074327]\n", + " [ 1.53082462 31.3331765 ]\n", + " [32.21878728 0.61114861]\n", + " [27.83235938 0.61358184]\n", + " [23.44593149 0.61601507]\n", + " [19.0595036 0.6184483 ]\n", + " [14.6730757 0.62088153]\n", + " [10.2866478 0.62331476]\n", + " [ 5.90021991 0.625748 ]\n", + " [ 1.513792 0.62818122]\n", + " [ 1.53082462 31.3331765 ]\n", + " [ 1.52839139 26.94674861]\n", + " [ 1.52595816 22.5603207 ]\n", + " [ 1.52352493 18.17389281]\n", + " [ 1.5210917 13.78746492]\n", + " [ 1.51865847 9.40103702]\n", + " [ 1.51622524 5.01460912]\n", + " [ 1.513792 0.62818122]\n", + " [32.219759 29.4036525 ]\n", + " [32.21677684 24.02765333]\n", + " [32.21379467 18.65165415]\n", + " [32.21081251 13.27565498]\n", + " [32.20783035 7.89965581]\n", + " [32.20484818 2.52365664]\n", + " [30.32331188 31.30220479]\n", + " [24.9473127 31.30518695]\n", + " [19.57131353 31.30816912]\n", + " [14.19531435 31.31115127]\n", + " [ 8.81931518 31.31413344]\n", + " [ 3.44331601 31.3171156 ]\n", + " [30.3062959 0.62720951]\n", + " [24.93029672 0.63019167]\n", + " [19.55429755 0.63317383]\n", + " [14.17829838 0.636156 ]\n", + " [ 8.80229921 0.63913816]\n", + " [ 3.42630004 0.64212033]\n", + " [ 1.54476372 29.42066847]\n", + " [ 1.54178156 24.0446693 ]\n", + " [ 1.53879939 18.66867013]\n", + " [ 1.53581723 13.29267096]\n", + " [ 1.53283507 7.91667178]\n", + " [ 1.5298529 2.54067261]\n", + " [32.22081158 31.30115221]\n", + " [32.22081158 31.30115221]\n", + " [ 1.52880032 0.6431729 ]\n", + " [ 1.52880032 0.6431729 ]\n", + " [30.32225929 29.40470508]\n", + " [24.94626012 29.40768724]\n", + " [19.57026095 29.41066941]\n", + " [14.19426178 29.41365157]\n", + " [ 8.8182626 29.41663373]\n", + " [ 3.44226343 29.4196159 ]\n", + " [30.31927713 24.02870591]\n", + " [24.94327796 24.03168807]\n", + " [19.56727878 24.03467023]\n", + " [14.19127961 24.0376524 ]\n", + " [ 8.81528044 24.04063456]\n", + " [ 3.43928127 24.04361672]\n", + " [30.31629496 18.65270673]\n", + " [24.9402958 18.6556889 ]\n", + " [19.56429662 18.65867106]\n", + " [14.18829744 18.66165322]\n", + " [ 8.81229827 18.66463538]\n", + " [ 3.4362991 18.66761755]\n", + " [30.31331281 13.27670756]\n", + " [24.93731363 13.27968972]\n", + " [19.56131446 13.28267189]\n", + " [14.18531529 13.28565406]\n", + " [ 8.80931611 13.28863621]\n", + " [ 3.43331694 13.29161838]\n", + " [30.31033064 7.90070839]\n", + " [24.93433147 7.90369055]\n", + " [19.55833229 7.90667271]\n", + " [14.18233312 7.90965488]\n", + " [ 8.80633395 7.91263704]\n", + " [ 3.43033477 7.9156192 ]\n", + " [30.30734847 2.52470921]\n", + " [24.9313493 2.52769138]\n", + " [19.55535013 2.53067354]\n", + " [14.17935096 2.53365571]\n", + " [ 8.80335178 2.53663787]\n", + " [ 3.42735261 2.53962004]]\n", + "DEBUG:root:radec2pix: curVec: [[-0.28935988 0.37688567 -0.8799023 ]\n", + " [-0.30891925 0.35834442 -0.8809984 ]\n", + " [-0.32855962 0.33904428 -0.88153137]\n", + " [-0.34819241 0.31906529 -0.881453 ]\n", + " [-0.36773204 0.29848656 -0.88072636]\n", + " [-0.38709537 0.27738763 -0.87932547]\n", + " [-0.40620174 0.25584944 -0.87723498]\n", + " [-0.42497318 0.23395493 -0.87445005]\n", + " [-0.28935988 0.37688567 -0.8799023 ]\n", + " [-0.27065037 0.36183744 -0.89208859]\n", + " [-0.25143928 0.34607621 -0.9038858 ]\n", + " [-0.23178778 0.32966848 -0.91520114]\n", + " [-0.2117603 0.31267968 -0.92595302]\n", + " [-0.19142504 0.29517545 -0.93607046]\n", + " [-0.17085409 0.27722271 -0.9454927 ]\n", + " [-0.15012314 0.25889029 -0.9541692 ]\n", + " [-0.42497318 0.23395493 -0.87445005]\n", + " [-0.40691065 0.21700375 -0.88731792]\n", + " [-0.3881533 0.19952804 -0.89973639]\n", + " [-0.36875781 0.18158834 -0.91161579]\n", + " [-0.34878523 0.16324741 -0.92287548]\n", + " [-0.32830194 0.14457123 -0.93344362]\n", + " [-0.30738007 0.12562921 -0.94325754]\n", + " [-0.28609719 0.10649395 -0.95226437]\n", + " [-0.15012314 0.25889029 -0.9541692 ]\n", + " [-0.16924075 0.23854578 -0.95627061]\n", + " [-0.18859958 0.21759826 -0.95764356]\n", + " [-0.2081153 0.19612114 -0.95824032]\n", + " [-0.2277049 0.17419047 -0.95802305]\n", + " [-0.247286 0.15188602 -0.95696409]\n", + " [-0.2667769 0.12929146 -0.95504649]\n", + " [-0.28609719 0.10649395 -0.95226437]\n", + " [-0.29780907 0.36884942 -0.88048842]\n", + " [-0.3218471 0.34560324 -0.88146063]\n", + " [-0.34591853 0.32129697 -0.88153765]\n", + " [-0.36986458 0.29607656 -0.88064684]\n", + " [-0.39353223 0.27008854 -0.87874033]\n", + " [-0.41677404 0.24348275 -0.87579424]\n", + " [-0.28133462 0.37035404 -0.88526195]\n", + " [-0.2580594 0.35142148 -0.89994905]\n", + " [-0.23409106 0.33148434 -0.91395815]\n", + " [-0.20954684 0.31066346 -0.92713448]\n", + " [-0.18455233 0.28907979 -0.93934728]\n", + " [-0.15924173 0.26685729 -0.95048896]\n", + " [-0.417123 0.22670817 -0.88012034]\n", + " [-0.39451067 0.20557326 -0.8956009 ]\n", + " [-0.37091075 0.18371031 -0.91031628]\n", + " [-0.3464337 0.16123389 -0.92411435]\n", + " [-0.3212018 0.13826546 -0.93686288]\n", + " [-0.29535014 0.11493416 -0.94845054]\n", + " [-0.15849467 0.25016231 -0.95514306]\n", + " [-0.18209887 0.22481403 -0.9572349 ]\n", + " [-0.20598125 0.19863262 -0.95818412]\n", + " [-0.22998851 0.1717569 -0.95791693]\n", + " [-0.25396901 0.14433374 -0.95638252]\n", + " [-0.27777282 0.11651865 -0.95355423]\n", + " [-0.28936346 0.37677348 -0.87994917]\n", + " [-0.28936346 0.37677348 -0.87994917]\n", + " [-0.2861048 0.10663783 -0.95224598]\n", + " [-0.2861048 0.10663783 -0.95224598]\n", + " [-0.28978672 0.36236414 -0.88584191]\n", + " [-0.26651609 0.34325811 -0.9006348 ]\n", + " [-0.24253167 0.32316551 -0.91473627]\n", + " [-0.21795051 0.30220576 -0.92799206]\n", + " [-0.19289829 0.28049896 -0.94027155]\n", + " [-0.16750963 0.2581688 -0.95146697]\n", + " [-0.31385175 0.33894242 -0.88691325]\n", + " [-0.29061972 0.31937482 -0.90196447]\n", + " [-0.26661687 0.29887006 -0.9162926 ]\n", + " [-0.24195953 0.27754416 -0.92974449]\n", + " [-0.2167735 0.25551553 -0.94218951]\n", + " [-0.19119432 0.23290778 -0.95351911]\n", + " [-0.33796325 0.31447549 -0.88706595]\n", + " [-0.31480865 0.29448689 -0.90231535]\n", + " [-0.29082864 0.27360882 -0.91681891]\n", + " [-0.26613849 0.25195514 -0.93042405]\n", + " [-0.24086372 0.2296437 -0.9429997 ]\n", + " [-0.21514051 0.20679886 -0.95443637]\n", + " [-0.36196259 0.28910791 -0.88622779]\n", + " [-0.33892475 0.26873543 -0.90161593]\n", + " [-0.31500956 0.24752063 -0.9162437 ]\n", + " [-0.29033093 0.22557645 -0.92995872]\n", + " [-0.26501375 0.2030212 -0.94262936]\n", + " [-0.23919438 0.17998052 -0.9541452 ]\n", + " [-0.38569654 0.26298539 -0.8843511 ]\n", + " [-0.36281428 0.24226461 -0.89981868]\n", + " [-0.33900565 0.22074917 -0.91451898]\n", + " [-0.31438305 0.1985522 -0.92829969]\n", + " [-0.28907041 0.17579312 -0.94102873]\n", + " [-0.26320383 0.15259912 -0.95259501]\n", + " [-0.4090172 0.23625763 -0.88141209]\n", + " [-0.38632806 0.21522428 -0.89689974]\n", + " [-0.36266671 0.19344522 -0.91162043]\n", + " [-0.33814408 0.17103455 -0.92542194]\n", + " [-0.31288291 0.14811318 -0.93817204]\n", + " [-0.28701861 0.12480978 -0.94975936]]\n", + "DEBUG:root:radec2pix: fitpx: [[2135.5 4155.50000026]\n", + " [2135.5 3863.07142876]\n", + " [2135.5 3570.64285709]\n", + " [2135.5 3278.21428545]\n", + " [2135.5 2985.7857141 ]\n", + " [2135.49999999 2693.35714316]\n", + " [2135.50000001 2400.9285712 ]\n", + " [2135.49999993 2108.50000021]\n", + " [2135.5 4155.50000026]\n", + " [1843.07142855 4155.50000013]\n", + " [1550.64285715 4155.49999996]\n", + " [1258.2142856 4155.50000027]\n", + " [ 965.78571429 4155.49999999]\n", + " [ 673.357143 4155.4999998 ]\n", + " [ 380.92857155 4155.49999986]\n", + " [ 88.49999976 4155.50000025]\n", + " [2135.49999993 2108.50000021]\n", + " [1843.07142817 2108.50000006]\n", + " [1550.64285738 2108.49999998]\n", + " [1258.21428605 2108.49999998]\n", + " [ 965.78571448 2108.49999999]\n", + " [ 673.35714251 2108.50000001]\n", + " [ 380.92857138 2108.5 ]\n", + " [ 88.50000013 2108.5 ]\n", + " [ 88.49999976 4155.50000025]\n", + " [ 88.49999974 3863.0714288 ]\n", + " [ 88.49999989 3570.64285722]\n", + " [ 88.50000025 3278.21428557]\n", + " [ 88.50000013 2985.78571423]\n", + " [ 88.49999977 2693.35714293]\n", + " [ 88.49999999 2400.92857143]\n", + " [ 88.50000013 2108.5 ]\n", + " [2134.5 4028.00000018]\n", + " [2134.5 3669.59999979]\n", + " [2134.5 3311.20000021]\n", + " [2134.5 2952.80000004]\n", + " [2134.5 2594.39999994]\n", + " [2134.50000001 2235.99999988]\n", + " [2007.99999999 4154.50000011]\n", + " [1649.6 4154.5 ]\n", + " [1291.20000005 4154.49999987]\n", + " [ 932.80000005 4154.49999992]\n", + " [ 574.4 4154.5 ]\n", + " [ 216. 4154.5 ]\n", + " [2008.00000002 2109.49999999]\n", + " [1649.60000012 2109.49999999]\n", + " [1291.19999984 2109.50000001]\n", + " [ 932.79999968 2109.50000001]\n", + " [ 574.39999959 2109.50000001]\n", + " [ 215.99999972 2109.50000001]\n", + " [ 89.4999999 4028.0000001 ]\n", + " [ 89.50000007 3669.59999994]\n", + " [ 89.49999997 3311.20000002]\n", + " [ 89.50000023 2952.7999999 ]\n", + " [ 89.49999997 2594.40000001]\n", + " [ 89.4999998 2236.00000002]\n", + " [2134.5 4154.50000005]\n", + " [213DEBUG:root:make_az_asym: xyp: shape: (96, 2)\n", + "4.5 4154.50000005]\n", + " [ 89.49999997 2109.5 ]\n", + " [ 89.49999997 2109.5 ]\n", + " [2008. 4027.99999997]\n", + " [1649.59999996 4028.00000014]\n", + " [1291.20000001 4027.99999998]\n", + " [ 932.79999987 4028.00000021]\n", + " [ 574.40000006 4027.99999993]\n", + " [ 215.9999998 4028.0000002 ]\n", + " [2008. 3669.59999996]\n", + " [1649.60000001 3669.59999998]\n", + " [1291.20000007 3669.59999987]\n", + " [ 932.79999997 3669.60000004]\n", + " [ 574.39999998 3669.60000002]\n", + " [ 215.99999986 3669.60000012]\n", + " [2008. 3311.20000004]\n", + " [1649.59999995 3311.20000012]\n", + " [1291.19999997 3311.20000005]\n", + " [ 932.80000015 3311.19999984]\n", + " [ 574.40000003 3311.19999997]\n", + " [ 216.00000001 3311.2 ]\n", + " [2007.99999998 2952.80000014]\n", + " [1649.60000006 2952.7999999 ]\n", + " [1291.20000015 2952.79999984]\n", + " [ 932.80000014 2952.7999999 ]\n", + " [ 574.39999986 2952.80000008]\n", + " [ 215.99999973 2952.80000012]\n", + " [2007.99999998 2594.40000007]\n", + " [1649.60000022 2594.39999977]\n", + " [1291.20000005 2594.39999997]\n", + " [ 932.79999996 2594.40000002]\n", + " [ 574.39999995 2594.40000002]\n", + " [ 216.00000004 2594.39999999]\n", + " [2008.00000021 2235.99999975]\n", + " [1649.59999975 2236.00000009]\n", + " [1291.20000026 2235.99999995]\n", + " [ 932.79999972 2236.00000004]\n", + " [ 574.39999974 2236.00000003]\n", + " [ 216.00000028 2235.99999998]]\n", + "583\n", + " 23.67768384 29.05088524 42.83223469 39.30633844 36.23781045 33.75162698\n", + " 31.98387863 31.05748561 31.52222904 31.52222904 30.94762955 30.94762955\n", + " 29.70218682 30.56681395 32.3147502 34.81319861 37.91407742 41.48250822\n", + " 24.34353743 25.39129827 27.47054774 30.37016151 33.88015908 37.83102431\n", + " 18.99469609 20.32015484 22.86529373 26.27807784 30.26641445 34.63202369\n", + " 13.66718319 15.4564585 18.67659162 22.72731378 27.24058114 32.02140662\n", + " 8.40167037 11.07692547 15.25159806 20.00817233 25.01690288 30.15239046\n", + " 3.49098634 8.0185534 13.1988698 18.49123795 23.82109044 29.16788596]\n", + "DEBUG:root:radec2pix: camVec: [[ 0.00162968 0.00164392 0.00165615 0.00166636 0.0016745 0.00168051\n", + " 0.00168433 0.00168589 0.00162968 0.03065921 0.0595691 0.08824658\n", + " 0.11657974 0.14445783 0.17177197 0.1984171 0.00168589 0.03171597\n", + " 0.06161834 0.09127522 0.12057355 0.14940474 0.17766265 0.205241\n", + " 0.1984171 0.20017053 0.20167036 0.20291139 0.20389075 0.20460646\n", + " 0.20505694 0.205241 0.00173588 0.00175296 0.00176683 0.00177741\n", + " 0.00178459 0.00178824 0.01429458 0.04980805 0.08502967 0.11975303\n", + " 0.15377432 0.1868945 0.0147871 0.05152109 0.08794575 0.12385093\n", + " 0.15903647 0.19330699 0.19912208 0.20110045 0.20269257 0.20389226\n", + " 0.20469584 0.20510055 0.00172908 0.00172908 0.20514779 0.20514779\n", + " 0.01435076 0.05000388 0.08536435 0.12022547 0.15438306 0.18763689\n", + " 0.01449201 0.05049589 0.08620426 0.1214098 0.15590842 0.18949858\n", + " 0.01460664 0.05089468 0.08688344 0.12236492 0.15713605 0.19099623\n", + " 0.0146941 0.05119852 0.08739951 0.12308827 0.15806297 0.19212497\n", + " 0.01475342 0.05140434 0.08774826 0.12357559 0.15868553 0.19288138\n", + " 0.01478357 0.05150DEBUG:root:radec2pix: lng: [ 90.47719648 90.55672682 90.66687597 90.82953968 91.0940213\n", + " 91.5994309 92.9498036 107.65020813 90.47719648 98.38070645\n", + " 105.9767833 113.03909385 119.43357191 125.11472623 130.10200281\n", + " 134.45251944 107.65020813 169.61839319 174.60281853 176.35464905\n", + " 177.24671913 177.78699525 178.149242 178.40898834 134.45251944\n", + " 138.72924775 143.64878868 149.27726033 155.64622183 162.72363484\n", + " 170.38599488 178.40898834 90.53796733 90.66055396 90.85289348\n", + " 91.19818153 91.99914413 95.89819456 93.94516067 103.46269209\n", + " 112.28380041 120.12202419 126.89084824 132.64302298 158.33080444\n", + " 173.44203131 176.15005523 177.27375664 177.8883436 178.27582468\n", + " 136.22925254 141.89402899 148.59312727 156.4003322 165.25344571\n", + " 174.88216618 90.50467598 90.50467598 178.38048842 178.38048842\n", + " 94.19778856 104.29099371 113.55934226 121.68876645 128.61161022\n", + " 134.41785939 95.12656191 107.28679494 118.04349613 127.02097674\n", + " 134.29081962 140.12241992 96.57828818 111.793380DEBUG:root:optics_fp: rtanth: [45.26169529 42.30243097 39.60873368 37.23827886 35.25632641 33.73142753\n", + " 32.72753223 32.29326616 45.26169529 42.24571523 39.48748363 37.04461879\n", + " 34.98324901 33.37413897 32.28498264 31.76930229 32.29326616 27.90939691\n", + " 23.52648174 19.14517593 14.76691204 10.39553425 6.04599739 1.87684519\n", + " 31.76930229 27.38910685 23.01128618 18.63751379 14.2715122 9.92354331\n", + " 5.63550123 1.87684519 43.93110404 40.47519439 37.47457234 35.04637691\n", + " 33.3160059 32.39547369 43.90748877 40.37685013 37.28961296 34.76410785\n", + " 32.92983309 31.90622779 30.38230115 25.01013154 19.64005824 14.27444739\n", + " 8.9213542 3.63648527 29.86008841 24.49335294 19.13182032 13.78156419\n", + " 8.46399587 3.33911555 45.24048285 45.24048285 1.89760875 1.89760875\n", + " 42.55711672 38.90412112 35.68971629 33.042152 31.10650288 30.02079255\n", + " 38.97957981 34.95468636 31.33776168 28.28574318 25.99834571 24.68901465\n", + " 35.85400749 31.43139051 27.35246822 23.7946523 21.02418109 19.38168349\n", + " 33.30787918 28.49275823 23.91782767 19.75070735 16.30708904 14.12638019\n", + " 31.48209857 26.3352423 21.30188242 16.48630206 12.15026205 9.01456223\n", + " 30.50627799 25.16059326 19.83130509 14.53645837 9.33484517 4.55771859]\n", + "182233 0.99853197]\n", + " [-0.08743051 0.01815347 0.9960052 ]\n", + " [-0.12333654 0.01804874 0.99220076]\n", + " [-0.15852587 0.01791034 0.98719237]\n", + " [-0.19280295 0.01773905 0.98107714]]\n", + "DEBUG:root:radec2pix: xyfp: [[32.2358199 31.31614388]\n", + " [32.23338667 26.92971599]\n", + " [32.23095344 22.54328809]\n", + " [32.2285202 18.15686019]\n", + " [32.22608698 13.7704323 ]\n", + " [32.22365375 9.3840044 ]\n", + " [32.22122051 4.99757651]\n", + " [32.21878728 0.61114861]\n", + " [32.2358199 31.31614388]\n", + " [27.849392 31.31857712]\n", + " [23.46296411 31.32101035]\n", + " [19.07653621 31.32344358]\n", + " [14.69010831 31.3258768 ]\n", + " [10.30368042 31.32831004]\n", + " [ 5.91725252 31.33074327]\n", + " [ 1.53082462 31.3331765 ]\n", + " [32.21878728 0.61114861]\n", + " [27.83235938 0.61358184]\n", + " [23.44593149 0.61601507]\n", + " [19.0595036 0.6184483 ]\n", + " [14.6730757 0.62088153]\n", + " [10.2866478 0.62331476]\n", + " 73 124.38427646\n", + " 134.09036566 141.4100222 146.95926252 99.16244844 119.20302386\n", + " 133.72701528 143.55240671 150.27503583 155.04314708 105.00164812\n", + " 132.86645918 147.80237126 156.01703787 161.01884636 164.3374646\n", + " 128.29176769 159.89787077 167.9213331 171.39949271 173.32787944\n", + " 174.55097942]\n", + "DEBUG:root:radec2pix: curVec Shape: (96, 3)\n", + "[ 5.90021991 0.625748 ]\n", + " [ 1.513792 0.62818122]\n", + " [ 1.53082462 31.3331765 ]\n", + " [ 1.52839139 26.94674861]\n", + " [ 1.52595816 22.5603207 ]\n", + " [ 1.52352493 18.17389281]\n", + " [ 1.5210917 13.78746492]\n", + " [ 1.51865847 9.40103702]\n", + " [ 1.51622524 5.01460912]\n", + " [ 1.513792 0.62818122]\n", + " [32.219759 29.4036525 ]\n", + " [32.21677684 24.02765333]\n", + " [32.21379467 18.65165415]\n", + " [32.21081251 13.27565498]\n", + " [32.20783035 7.89965581]\n", + " [32.20484818 2.52365664]\n", + " [30.32331188 31.30220479]\n", + " [24.9473127 31.30518695]\n", + " [19.57131353 31.30816912]\n", + " [14.19531435 31.31115127]\n", + " [ 8.81931518 31.31413344]\n", + " [ 3.44331601 31.3171156 ]\n", + " [30.3062959 0.62720951]\n", + " [24.93029672 0.63019167]\n", + " [19.55429755 0.63317383]\n", + " [14.17829838 0.636156 ]\n", + " [ 8.80229921 0.63913816]\n", + " [ 3.42630004 0.64212033]\n", + " [ 1.54476372 29.42066847]\n", + " [ 1.54178156 24.0446693 ]\n", + " [ 1.53879939 18.66867013]\n", + " [ 1.53581723 13.29267096]\n", + " [ 1.53283507 7.91667178]\n", + " [ 1.5298529 2.54067261]\n", + " [32.22081158 31.30115221]\n", + " [32.22081158 31.30115221]\n", + " [ 1.52880032 0.6431729 ]\n", + " [ 1.52880032 0.6431729 ]\n", + " [30.32225929 29.40470508]\n", + " [24.94626012 29.40768724]\n", + " [19.57026095 29.41066941]\n", + " [14.19426178 29.41365157]\n", + " [ 8.8182626 29.41663373]\n", + " [ 3.44226343 29.4196159 ]\n", + " [30.31927713 24.02870591]\n", + " [24.94327796 24.03168807]\n", + " [19.56727878 24.03467023]\n", + " [14.19127961 24.0376524 ]\n", + " [ 8.81528044 24.04063456]\n", + " [ 3.43928127 24.04361672]\n", + " [30.31629496 18.65270673]\n", + " [24.9402958 18.6556889 ]\n", + " [19.56429662 18.65867106]\n", + " [14.18829744 18.66165322]\n", + " [ 8.81229827 18.66463538]\n", + " [ 3.4362991 18.66761755]\n", + " [30.31331281 13.27670756]\n", + " [24.93731363 13.27968972]\n", + " [19.56131446 13.28267189]\n", + " [14.18531529 13.28565406]\n", + " [ 8.80931611 13.28863621]\n", + " [ 3.43331694 13.29161838]\n", + " [30.31033064 7.90070839]\n", + " [24.93433147 7.90369055]\n", + " [19.55833229 7.90667271]\n", + " [14.18233312 7.90965488]\n", + " [ 8.80633395 7.91263704]\n", + " [ 3.43033477 7.9156192 ]\n", + " [30.30734847 2.52470921]\n", + " [24.9313493 2.52769138]\n", + " [19.55535013 2.53067354]\n", + " [14.17935096 2.53365571]\n", + " [ 8.80335178 2.53663787]\n", + " [ 3.42735261 2.53962004]]\n", + "DEBUG:root:optics_fp: xyfp: [[ 0.236018 -31.56946754]\n", + " [ 0.23651287 -27.18303899]\n", + " [ 0.23700774 -22.79661046]\n", + " [ 0.23750261 -18.41018192]\n", + " [ 0.23799748 -14.02375336]\n", + " [ 0.23849235 -9.63732482]\n", + " [ 0.23898721 -5.25089628]\n", + " [ 0.23948208 -0.86446773]\n", + " [ 0.236018 -31.56946754]\n", + " [ 4.62244655 -31.56996241]\n", + " [ 9.00887509 -31.57045728]\n", + " [ 13.39530363 -31.57095214]\n", + " [ 17.78173218 -31.57144701]\n", + " [ 22.16816072 -31.57194188]\n", + " [ 26.55458927 -31.57243675]\n", + " [ 30.94101781 -31.57293162]\n", + " [ 0.23948208 -0.86446773]\n", + " [ 4.62591062 -0.8649626 ]\n", + " [ 9.01233917 -0.86545747]\n", + " [ 13.39876771 -0.86595234]\n", + " [ 17.78519626 -0.86644721]\n", + " [ 22.1716248 -0.86694208]\n", + " [ 26.55805334 -0.86743695]\n", + " [ 30.94448189 -0.86793181]\n", + " [ 30.94101781 -31.57293162]\n", + " [ 30.94151268 -27.18650307]\n", + " [ 30.94200754 -22.80007453]\n", + " [ 30.94250242 -18.41364599]\n", + " [ 30.94299728 -14.02721745]\n", + " [ 30.94349215 -9.6407889 ]\n", + " [ 30.94398702 -5.25436036]\n", + " [ 30.94448189 -0.86793181]\n", + " [ 0.25123377 -29.65696924]\n", + " [ 0.25184028 -24.28096928]\n", + " [ 0.25244679 -18.90496931]\n", + " [ 0.2530533 -13.52896935]\n", + " [ 0.25365981 -8.15296938]\n", + " [ 0.25426632 -2.77696942]\n", + " [ 2.14851968 -31.5546833 ]\n", + " [ 7.52451965 -31.55528981]\n", + " [ 12.90051962 -31.55589633]\n", + " [ 18.27651958 -31.55650284]\n", + " [ 23.65251954 -31.55710934]\n", + " [ 29.02851952 -31.55771586]\n", + " [ 2.15198038 -0.8796835 ]\n", + " [ 7.52798035 -0.88029001]\n", + " [ 12.90398031 -0.88089652]\n", + " [ 18.27998027 -0.88150303]\n", + " [ 23.65598025 -0.88210954]\n", + " [ 29.03198021 -0.88271605]\n", + " [ 30.92623357 -29.66042994]\n", + " [ 30.92684009 -24.28442998]\n", + " [ 30.9274466 -18.90843001]\n", + " [ 30.9280531 -13.53243004]\n", + " [ 30.92865961 -8.15643008]\n", + " [ 30.92926612 -2.78043011]\n", + " [ 0.2510197 -31.55446923]\n", + " [ 0.2510197 -31.55446923]\n", + " [ 30.9294802 -0.88293012]\n", + " [ 30.9294802 -0.88293012]\n", + " [ 2.14873376 -29.65718332]\n", + " [ 7.52473372 -29.65778983]\n", + " [ 12.90073369 -29.65839633]\n", + " [ 18.27673365 -29.65900285]\n", + " [ 23.65273362 -29.65960936]\n", + " [ 29.02873359 -29.66021587]\n", + " [ 2.14934027 -24.28118335]\n", + " [ 7.52534023 -24.28178986]\n", + " [ 12.9013402 -24.28239637]\n", + " [ 18.27734016 -24.28300288]\n", + " [ 23.65334013 -24.28360939]\n", + " [ 29.02934009 -24.2842159 ]\n", + " [ 2.14994678 -18.90518338]\n", + " [ 7.52594674 -18.90578989]\n", + " [ 12.90194671 -18.9063964 ]\n", + " [ 18.27794667 -18.90700292]\n", + " [ 23.65394664 -18.90760943]\n", + " [ 29.0299466 -18.90821593]\n", + " [ 2.15055329 -13.52918342]\n", + " [ 7.52655325 -13.52978993]\n", + " [ 12.90255322 -13.53039644]\n", + " [ 18.27855318 -13.53100295]\n", + " [ 23.65455315 -13.53160946]\n", + " [ 29.03055312 -13.53221597]\n", + " [ 2.1511598 -8.15318346]\n", + " [ 7.52715976 -8.15378996]\n", + " [ 12.90315973 -8.15439647]\n", + " [ 18.27915969 -8.15500298]\n", + " [ 23.65515966 -8.15560949]\n", + " [ 29.03115962 -8.156216 ]\n", + " [ 2.1517663 -2.77718348]\n", + " [ 7.52776627 -2.77779 ]\n", + " [ 12.90376624 -2.77839651]\n", + " [ 18.2797662 -2.77900302]\n", + " [ 23.65576617 -2.77960953]\n", + " [ 29.03176613 -2.78021604]]\n", + "DEBUG:root:optics_fp: xyfp shape: (96, 2)\n", + "DEBUG:root:fitpix2pix: ccdpx: shape: (96, 2)\n", + "885 0.08792506 0.1238221 0.15899976 0.19326249]\n", + " [-0.20886687 -0.18138669 -0.15321267 -0.12445123 -0.0952084 -0.06559229\n", + " -0.03571531 -0.00569466 -0.20886687 -0.20871575 -0.20829328 -0.20760055\n", + " -0.20663909 -0.20541086 -0.20391875 -0.20216791 -0.00569466 -0.00569039\n", + " -0.0056785 -0.00565918 -0.00563263 -0.00559908 -0.00555867 -0.00551146\n", + " -0.20216791 -0.17558603 -0.14832064 -0.12047648 -0.09216227 -0.06348867\n", + " -0.03456748 -0.00551146 -0.19697755 -0.16281769 -0.12772153 -0.09188434\n", + " -0.05550542 -0.01879375 -0.20874173 -0.20837407 -0.20760004 -0.20642226\n", + " -0.2048444 -0.20287264 -0.00579649 -0.00578593 -0.0057639 -0.00573078\n", + " -0.00568698 -0.00563273 -0.19067465 -0.1576223 -0.12364673 -0.08894663\n", + " -0.05372559 -0.0181899 -0.20877415 -0.20877415 -0.0056111 -0.0056111\n", + " -0.19694699 -0.19660038 -0.19587092 -0.19476145 -0.19327535 -0.19141752\n", + " -0.16279237 -0.16250539 -0.1619024 -0.1609872 -0.15976346 -0.15823425\n", + " -0.12770151 -0.1274748 -0.12699943 -0.12628004 -0.12532102 -0.12412508\n", + " -0.09186978 -0.09170505 -0.09136033 -0.09084026 -0.09014925 -0.08928993\n", + " -0.05549654 -0.05539609 -0.05518622 -0.05487037 -0.05445187 -0.05393273\n", + " -0.01879073 -0.01875652 -0.01868512 -0.01857781 -0.01843585 -0.01826001]\n", + " [ 0.97794273 0.98341048 0.98819185 0.99222433 0.99545595 0.99784509\n", + " 0.99936059 0.99998236 0.97794273 0.97749565 0.9762507 0.9742251\n", + " 0.97144709 0.96795574 0.96380057 0.95904056 0.99998236 0.99948072\n", + " 0.99808363 0.99580962 0.99268842 0.98876027 0.98407575 0.97869595\n", + " 0.95904056 0.96389901 0.96815807 0.97175737 0.97464592 0.97678318\n", + " 0.97813943 0.97869595 0.98040646 0.98665461 0.99180849 0.9957681\n", + " 0.99845679 0.99982178 0.97786633 0.97678012 0.97451125 0.97110713\n", + " 0.96663966 0.961204 0.99987386 0.99865515 0.99610859 0.99228429\n", + " 0.98725633 0.98112215 0.96124585 0.96680599 0.97140476 0.97494433\n", + " 0.97735008 0.97857186 0.97796235 0.97796235 0.97871492 0.97871492\n", + " 0.9803091 0.97920779 0.97690711 0.97345458 0.96892234 0.96340632\n", + " 0.98655391 0.98541472 0.9830343 0.97946045 0.97476571 0.96904706\n", + " 0.99170508 0.99053516 0.98809029 0.9844187 0.97959323 0.97371115\n", + " 0.99566261 0.99446915 0.99197511 0.98822939 0.98330525 0.97730001\n", + " 0.99834987 0.99714035 0.99461285 0.99081699 0.9858265 0.97973876\n", + " 0.99971414 0.99849639 0.99595183 0.99213051 0.98710648 0.98097716]]\n", + "DEBUG:root:radec2pix: xyfp Shape: (96, 2)\n", + "DEBUG:root:radec2pix: lng: [ 90.31538026 90.36623882 90.43676438 90.5410988 90.71121584\n", + " 91.03796151 91.92203204 102.88976492 90.31538026 98.24711833\n", + " 105.87469321 112.96816895 119.3908045 125.09574844 130.10218059\n", + " 134.46760759 102.88976492 170.61981741 175.18843619 176.76786642\n", + " 177.56728748 178.0499121 178.37286738 178.60412954 134.46760759\n", + " 138.7587586 143.69705248 149.3491301 155.74646239 162.85581906\n", + " 170.55107093 178.60412954 90.36478543 90.44558973 90.57261901\n", + " 90.80142559 91.33604138 94.02159324 93.79493665 103.34977578\n", + " 112.20947139 120.08219547 126.87889854 132.65213472 159.7741798\n", + " 174.12277646 176.57679256 177.5862344 178.13623505 178.48225333\n", + " 136.25009833 141.93538112 148.66205842 156.50402904 165.39685811\n", + " 175.06487905 90.34286209 90.34286209 178.57562014 178.57562014\n", + " 94.0377805 104.17347615 113.48518905 121.65239591 128.60482826\n", + " 134.43270854 94.93153704 107.15620301 117.97484261 127.00098521\n", + " 134.30466928 140.15819331 96.33160595 111.65389266 124.33611449\n", + " 134.10224284 141.45645803 147.02415603 98.83348775 119.07751066\n", + " 133.73407847 143.6218029 150.36959526 155.14598444 104.53566541\n", + " 132.85570308 147.93620706 156.17810512 161.17666862 164.48488524\n", + " 128.03043433 160.3400738 168.27016728 171.67458296 173.55402386\n", + " 174.74323713]\n", + "DEBUG:root:optics_fp: cphi: [0.71341716 0.76328013 0.81514194 0.86698087 0.91566575 0.95700502\n", + " 0.98630354 0.99950918 0.71341716 0.66051768 0.59557134 0.51643629\n", + " 0.4214805 0.31036993 0.18497457 0.04990581 0.99950918 0.99934039\n", + " 0.99906819 0.99858739 0.99761569 0.9951653 0.98558541 0.8377988\n", + " 0.04990581 0.05781889 0.0687377 0.08476872 0.11057085 0.15882919\n", + " 0.27935111 0.8377988 0.73466528 0.79733703 0.86111952 0.92071715\n", + " 0.96846887 0.9959178 0.69186293 0.61921532 0.52631184 0.40990453\n", + " 0.26948104 0.10963271 0.999428 0.999152 0.99861839 0.99737128\n", + " 0.99322638 0.95832228 0.05357183 0.06521663 0.08337359 0.1155749\n", + " 0.18791565 0.47564444 0.71341996 0.71341996 0.83653968 0.83653968\n", + " 0.71379735 0.6426352 0.54988271 0.43124184 0.28525093 0.11649124\n", + " 0.77925087 0.71517941 0.62617339 0.50367681 0.34120915 0.14155583\n", + " 0.8471183 0.79527459 0.71732418 0.59864658 0.42182798 0.18020046\n", + " 0.91180529 0.87721591 0.82023759 0.72110338 0.54370846 0.24707693\n", + " 0.96461215 0.94899507 0.92085832 0.86374835 0.72953296 0.3869314\n", + " 0.99539279 0.99320908 0.98902871 0.97944976 0.94931741 0.76479745]\n", + "DEBUG:root:make_az_asym: xyp: [[ 0.236018 -31.56946754]\n", + " [ 0.23651287 -27.18303899]\n", + " [ 0.23700774 -22.79661046]\n", + " [ 0.23750261 -18.41018192]\n", + " [ 0.23799748 -14.02375336]\n", + " [ 0.23849235 -9.63732482]\n", + " [ 0.23898721 -5.25089628]\n", + " [ 0.23948208 -0.86446773]\n", + " [ 0.236018 -31.56946754]\n", + " [ 4.62244655 -31.56996241]\n", + " [ 9.00887509 -31.57045728]\n", + " [ 13.39530363 -31.57095214]\n", + " [ 17.78173218 -31.57144701]\n", + " [ 22.16816072 -31.57194188]\n", + " [ 26.55458927 -31.57243675]\n", + " [ 30.94101781 -31.57293162]\n", + " [ 0.23948208 -0.86446773]\n", + " [ 4.62591062 -0.8649626 ]\n", + " [ 9.01233917 -0.86545747]\n", + " [ 13.39876771 -0.86595234]\n", + " [ 17.78519626 -0.86644721]\n", + " [ 22.1716248 -0.86694208]\n", + " [ 26.55805334 -0.86743695]\n", + " [ 30.94448189 -0.86793181]\n", + " [ 30.94101781 -31.57293162]\n", + " [ 30.94151268 -27.18650307]\n", + " [ 30.94200754 -22.80007453]\n", + " [ 30.94250242 -18.41364599]\n", + " [ 30.94299728 -14.02721745]\n", + " [ 30.94349215 -9.6407889 ]\n", + " [ 30.94398702 -5.25436036]\n", + " [ 30.94448189 -0.86793181]\n", + " [ 0.25123377 -29.65696924]\n", + " [ 0.25184028 -24.28096928]\n", + " [ 0.25244679 -18.90496931]\n", + " [ 0.2530533 -13.52896935]\n", + " [ 0.25365981 -8.15296938]\n", + " [ 0.25426632 -2.77696942]\n", + " [ 2.14851968 -31.5546833 ]\n", + " [ 7.52451965 -31.55528981]\n", + " [ 12.90051962 -31.55589633]\n", + " [ 18.27651958 -31.55650284]\n", + " [ 23.65251954 -31.55710934]\n", + " [ 29.02851952 -31.55771586]\n", + " [ 2.15198038 -0.8796835 ]\n", + " [ 7.52798035 -0.88029001]\n", + " [ 12.90398031 -0.88089652]\n", + " [ 18.27998027 -0.88150303]\n", + " [ 23.65598025 -0.88210954]\n", + " [ 29.03198021 -0.88271605]\n", + " [ 30.92623357 -29.66042994]\n", + " [ 30.92684009 -24.28442998]\n", + " [ 30.9274466 -18.90843001]\n", + " [ 30.9280531 -13.53243004]\n", + " [ 30.92865961 -8.15643008]\n", + " [ 30.92926612 -2.78043011]\n", + " [ 0.2510197 -31.55446923]\n", + " [ 0.2510197 -31.55446923]\n", + " [ 30.9294802 -0.88293012]\n", + " [ 30.9294802 -0.88293012]\n", + " [ 2.14873376 -29.65718332]\n", + " [ 7.52473372 -29.65778983]\n", + " [ 12.90073369 -29.65839633]\n", + " [ 18.27673365 -29.65900285]\n", + " [ 23.65273362 -29.65960936]\n", + " [ 29.02873359 -29.66021587]\n", + " [ 2.14934027 -24.28118335]\n", + " [ 7.52534023 -24.28178986]\n", + " [ 12.9013402 -24.28239637]\n", + " [ 18.27734016 -24.28300288]\n", + " [ 23.65334013 -24.28360939]\n", + " [ 29.02934009 -24.2842159 ]\n", + " [ 2.14994678 -18.90518338]\n", + " [ 7.52594674 -18.90578989]\n", + " [ 12.90194671 -18.9063964 ]\n", + " [ 18.27794667 -18.90700292]\n", + " [ 23.65394664 -18.90760943]\n", + " [ 29.0299466 -18.90821593]\n", + " [ 2.15055329 -13.52918342]\n", + " [ 7.52655325 -13.52978993]\n", + " [ 12.90255322 -13.53039644]\n", + " [ 18.27855318 -13.53100295]\n", + " [ 23.65455315 -13.53160946]\n", + " [ 29.03055312 -13.53221597]\n", + " [ 2.1511598 -8.15318346]\n", + " [ 7.52715976 -8.15378996]\n", + " [ 12.90315973 -8.15439647]\n", + " [ 18.27915969 -8.15500298]\n", + " [ 23.65515966 -8.15560949]\n", + " [ 29.03115962 -8.156216 ]\n", + " [ 2.1517663 -2.77718348]\n", + " [ 7.52776627 -2.77779 ]\n", + " [ 12.90376624 -2.77839651]\n", + " [ 18.2797662 -2.77900302]\n", + " [ 23.65576617 -2.77960953]\n", + " [ 29.03176613 -2.78021604]]\n", + "DEBUG:root:make_az_asym: xyp: shape: (96, 2)\n", + "DEBUG:root:radec2pix: lat: [77.97206498 79.57806769 81.21593647 82.8803899 84.56638266 86.26889583\n", + " 87.98262539 89.69667435 77.97206498 77.85336036 77.52222772 76.99897078\n", + " 76.31199967 75.49295235 74.57292056 73.58021644 89.69667435 88.18712874\n", + " 86.48361023 84.78319776 83.0967184 81.43034165 79.78948121 78.17954495\n", + " 73.58021644 74.59400834 75.53901524 76.38685312 77.10589211 77.66330027\n", + " 78.02875412 78.17954495 78.66798463 80.65841057 82.69141578 84.75761477\n", + " 86.84771627 88.95113309 77.95267103 77.66228009 77.07171569 76.23019363\n", + " 75.19557036 74.02401451 89.12786485 87.06007007 84.97409331 82.90740441\n", + " 80.87177406 78.87718093 74.03267423 75.23268127 76.30156716 77.18237665\n", + " 77.81504555 78.14660304 77.97746528 77.97746528 78.18485708 78.18485708\n", + " 78.64134167 78.32984157 77.69918411 76.80616019 75.71557851 74.48840848\n", + " 80.62507537 80.23817759 79.46907283 78.40617113 77.13948546 75.74438817\n", + " 82.64779184 82.14857946 81.18831589 79.91227353 78.44384133 76.87031089\n", + " 84.69583972 84.01119948 82.77741875 81.24014725 79.55379065 77.80461009\n", + " 86.74476583 85.70761057 84.09008812 82.26687253 80.3773841 78.48020641\n", + " 88.67187538 86.89501933 84.87693536 82.83944721 80.82012657 78.83603949]\n", + "DEBUG:root:optics_fp: sphi: [0.70073958 0.64606768 0.57926126 0.49834142 0.40194059 0.29007134\n", + " 0.1649404 0.0313274 0.70073958 0.75081049 0.80330242 0.85632562\n", + " 0.90683747 0.95061586 0.98274331 0.99875393 0.0313274 0.03631497\n", + " 0.04315962 0.05313395 0.069014 0.09821415 0.1691786 0.5459791\n", + " 0.99875393 0.99832709 0.99763477 0.99640065 0.99386824 0.98730608\n", + " 0.96018902 0.5459791 0.67842975 0.60353431 0.50840257 0.39023062\n", + " 0.2491346 0.09026478 0.72202887 0.78522123 0.85029163 0.91212843\n", + " 0.9630057 0.99397217 0.03381828 0.04117383 0.05254813 0.07246053\n", + " 0.11619532 0.28568936 0.998564 0.99787113 0.99651836 0.99329877\n", + " 0.98218517 0.87963764 0.70073672 0.70073672 0.54790634 0.54790634\n", + " 0.7003523 0.76617231 0.83524188 0.90223637 0.95845287 0.99319172\n", + " 0.62671212 0.69894092 0.77968384 0.86389216 0.9399874 0.98993027\n", + " 0.53140435 0.606249DEBUG:root:radec2pix: camVec Shape: (3, 96)\n", + "39 0.69673956 0.80101328 0.90667588 0.98362991\n", + " 0.41062285 0.48009609 0.57202299 0.69282748 0.83927416 0.96899587\n", + " 0.26367291 0.3152909 0.38989736 0.5039234 0.68394565 0.92210851\n", + " 0.09588115 0.11634315 0.14772342 0.20168832 0.31431902 0.6442708 ]\n", + "DEBUG:root:mm_to_pix: fitpx: [[0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]]\n", + "DEBUG:root:fitpix2pix: visCut: True\n", + "DEBUG:root:optics_fp: cphi: [0.00780224 0.0090627 0.01080888 0.01338846 0.01758501 0.02561216\n", + " 0.04710747 0.28386977 0.00780224 0.14533491 0.27496322 0.39120201\n", + " 0.49136628 0.57525223 0.64424749 0.70045521 0.28386977 0.98428319\n", + " 0.99578049 0.99808345 0.99891062 0.99929852 0.9995109 0.99963964\n", + " 0.70045521 0.75176312 0.80558693 0.85985876 0.91123211 0.95507721\n", + " 0.98608706 0.99963964 0.00881221 0.01076578 0.01383213 0.0193404\n", + " 0.03213503 0.09472286 0.06831973 0.23248256 0.37902375 0.50180626\n", + " 0.60035228 0.67755053 0.93102393 0.99375313 0.9978592 0.99893119\n", + " 0.99936126 0.99957574 0.72226117 0.78705016 0.85369562 0.91657981\n", + " 0.96723916 0.99609029 0.00828177 0.00828177 0.99962616 0.99962616\n", + " 0.07267344 0.24649478 0.39952529 0.52527664 0.62411014 0.70001939\n", + " 0.08867076 0DEBUG:root:radec2pix: lat: [77.93927193 79.54395482 81.18055575 82.84390632 84.52894038 86.23049276\n", + " 87.9428694 89.64907294 77.93927193 77.81611283 77.48163499 76.95619116\n", + " 76.26808809 75.44881244 74.52941663 73.53851291 89.64907294 88.14278148\n", + " 86.44266427 84.74397225 83.05883421 81.39378264 79.75434117 78.14585205\n", + " 73.53851291 74.55039439 75.49464441 76.34256389 77.06256929 77.62200189\n", + " 77.99067226 78.14585205 78.63460262 80.62342084 82.65501815 84.72002626\n", + " 86.80886799 88.90945013 77.91780497 77.62268078 77.02911929 76.18620636\n", + " 75.15153709 73.98133314 89.07797965 87.01823413 84.93466191 82.86963733\n", + " 80.83566227 78.84284498 73.98994449 75.188461 76.25722019 77.13921802\n", + " 77.77469141 78.11085607 77.94465092 77.94465092 78.15114253 78.15114253\n", + " 78.60576152 78.28926489 77.65557547 76.7612779 75.67077293 74.44486167\n", + " 80.58736145 80.19458487 79.42244991 78.35883667 77.09292697 75.69943663\n", + " 82.60788147 82.10171615 81.13877773 79.86296648 78.39628485 76.82509319\n", + " 84.6534244 83.96086026 82.72578935 81.19023674 79.50664486 77.76043854\n", + " 86.6984902 85.65438612 84.03898568 82.21913056 80.33294013 78.43884558\n", + " 88.61780046 86.84637931 84.83282934 82.79823023 80.78132572 78.79952798]\n", + ".29673788 0.46997825 0.60212258 0.69841939 0.76758588\n", + " 0.11364014 0.37079245 0.56463565 0.69588651 0.78180916 0.83848868\n", + " 0.15793745 0.48747001 0.6912696 0.80460719 0.86865107 0.90684836\n", + " 0.25692034 0.68020319 0.84650539 0.91395454 0.94586289 0.96305996\n", + " 0.61832382 0.93964081 0.97815648 0.98893108 0.99334495 0.99556615]\n", + "DEBUG:root:mm_to_pix: fitpx.shape: (96, 2)\n", + "DEBUG:root:radec2pix: camVec: [[0.20581047 0.20764708 0.20921111 0.21050368 0.21152432 0.2122716\n", + " 0.21274377 0.21293946 0.20581047 0.17940008 0.15228099 0.12456525\n", + " 0.09636347 0.06778617 0.03894463 0.00995116 0.21293946 0.18558556\n", + " 0.15752187 0.12885256 0.09968382 0.07012532 0.04029051 0.01029607\n", + " 0.00995116 0.01003858 0.01011374 0.01017639 0.01022623 0.01026295\n", + " 0.01028629 0.01029607 0.20655553 0.20862193 0.21028039 0.21153069\n", + " DEBUG:root:radec2pix: xyfp: [[ 0.236018 -31.56946754]\n", + " [ 0.23651287 -27.18303899]\n", + " [ 0.23700774 -22.79661046]\n", + " [ 0.23750261 -18.41018192]\n", + " [ 0.23799748 -14.02375336]\n", + " [ 0.23849235 -9.63732482]\n", + " [ 0.23898721 -5.25089628]\n", + " [ 0.23948208 -0.86446773]\n", + " [ 0.236018 -31.56946754]\n", + " [ 4.62244655 -31.56996241]\n", + " [ 9.00887509 -31.57045728]\n", + " [ 13.39530363 -31.57095214]\n", + " [ 17.78173218 -31.57144701]\n", + " [ 22.16816072 -31.57194188]\n", + " [ 26.55458927 -31.57243675]\n", + " [ 30.94101781 -31.57293162]\n", + " [ 0.23948208 -0.86446773]\n", + " [ 4.62591062 -0.8649626 ]\n", + " [ 9.01233917 -0.86545747]\n", + " [ 13.39876771 -0.86595234]\n", + " [ 17.78519626 -0.86644721]\n", + " [ 22.1716248 -0.86694208]\n", + " [ 26.55805334 -0.86743695]\n", + " [ 30.94448189 -0.86793181]\n", + " [ 30.94101781 -31.57293162]\n", + " [ 30.94151268 -27.18650307]\n", + " [ 30.94200754 -22.80007453]\n", + " [ 30.94250242 -18.41364599]\n", + " [ 30.94299728 -14.02721745]\n", + " [ 30.94349215 -9.6407889 ]\n", + " [ 30.94398702 -5.25436036]\n", + " [ 30.94448189 -0.86793181]\n", + " [ 0.25123377 -29.65696924]\n", + " [ 0.25184028 DEBUG:root:radec2pix: ccdpx: [[-4.45000000e+01 -4.99999838e-01]\n", + " [-4.45000000e+01 2.91928571e+02]\n", + " [-4.45000000e+01 5.84357142e+02]\n", + " [-4.45000000e+01 8.76785714e+02]\n", + " [-4.45000000e+01 1.16921429e+03]\n", + " [-4.45000000e+01 1.46164286e+03]\n", + " [-4.45000000e+01 1.75407143e+03]\n", + " [-4.45000001e+01 2.04650000e+03]\n", + " [-4.45000000e+01 -4.99999838e-01]\n", + " [ 2.47928571e+02 -5.00000127e-01]\n", + " [ 5.40357143e+02 -4.99999855e-01]\n", + " [ 8.32785714e+02 -4.99999742e-01]\n", + " [ 1.12521429e+03 -4.99999752e-01]\n", + " [ 1.41764286e+03 -5.00000255e-01]\n", + " [ 1.71007143e+03 -4.99999843e-01]\n", + " [ 2.00250000e+03 -5.00000108e-01]\n", + " [-4.45000001e+01 2.04650000e+03]\n", + " [ 2.47928572e+02 2.04650000e+03]\n", + " [ 5.40357143e+02 2.04650000e+03]\n", + " [ 8.32785714e+02 2.04650000e+03]\n", + " [ 1.12521429e+03 2.04650000e+03]\n", + " [ 1.41764286e+03 2.04650000e+03]\n", + " [ 1.71007143e+03 2.04650000e+03]\n", + " [ 2.00250000e+03 2.04650000e+03]\n", + " [ 2.00250000e+03 -5.00000108e-01]\n", + " [ 2.00250000e+03 2.91928571e+02]\n", + " [ 2.00250000e+03 5.84357143e+02]\n", + " [ 2.00250000e+03 8.76785 0.21237025 0.212796 0.1943962 0.16153559 0.12772204 0.0931597\n", + " 0.05805212 0.02260459 0.2011068 0.16709142 0.1321133 0.09636698\n", + " 0.06005439 0.02338579 0.01009044 0.01019035 0.01027142 0.0103331\n", + " 0.01037483 0.01039617 0.20572824 0.20572824 0.01039877 0.01039877\n", + " 0.19517474 0.1621771 0.12822694 0.09352723 0.05828102 0.02269376\n", + " 0.19712067 0.1637837 0.12949375 0.09445078 0.05885684 0.0229182\n", + " 0.19868404 0.16507817 0.13051704 0.09519827 0.05932353 0.02310025\n", + " 0.19986372 0.16605732 0.13129265 0.09576573 0.05967819 0.02323871\n", + " 0.20065641 0.16671646 0.13181555 0.09614872 0.05991775 0.0233323\n", + " 0.20105858 0.16705125 0.13208139 0.09634357 0.06003972 0.02338002]\n", + " [0.20196806 0.17549093 0.14832034 0.12056829 0.0923455 0.06376263\n", + " 0.0349311 0.00596325 0.20196806 0.20380697 0.20537849 0.20668384\n", + " 0.20772258 0.20849323 0.20899395 0.20922323 0.00596325 0.00601646\n", + " 0.00606233 0.00610071 0.00613144 0.00615431 0.00616917 0.00617591\n", + " 0.20922323 0.18176716 0.15361557 0.12487279 0.0956714e+02]\n", + " [ 2.00250000e+03 1.16921429e+03]\n", + " [ 2.00250000e+03 1.46164286e+03]\n", + " [ 2.00250000e+03 1.75407143e+03]\n", + " [ 2.00250000e+03 2.04650000e+03]\n", + " [-4.35000000e+01 1.27000000e+02]\n", + " [-4.35000000e+01 4.85400000e+02]\n", + " [-4.35000000e+01 8.43800000e+02]\n", + " [-4.35000000e+01 1.20220000e+03]\n", + " [-4.35000000e+01 1.56060000e+03]\n", + " [-4.35000000e+01 1.91900000e+03]\n", + " [ 8.30000000e+01 5.00000282e-01]\n", + " [ 4.41400000e+02 4.99999845e-01]\n", + " [ 7.99800000e+02 4.99999800e-01]\n", + " [ 1.15820000e+03 4.99999731e-01]\n", + " [ 1.51660000e+03 5.00000238e-01]\n", + " [ 1.87500000e+03 4.99999813e-01]\n", + " [ 8.30000000e+01 2.04550000e+03]\n", + " [ 4.41400000e+02 2.04550000e+03]\n", + " [ 7.99800000e+02 2.04550000e+03]\n", + " [ 1.15820000e+03 2.04550000e+03]\n", + " [ 1.51660000e+03 2.04550000e+03]\n", + " [ 1.87500000e+03 2.04550000e+03]\n", + " [ 2.00150000e+03 1.27000000e+02]\n", + " [ 2.00150000e+03 4.85400000e+02]\n", + " [ 2.00150000e+03 8.43800000e+02]\n", + " [ 2.00150000e+03 1.20220000e+03]\n", + " [ 2.00150000e+03 1.56060000e+03]\n", + " [ 2.00150000e+03 1.91900000e+03]\n", + " [-4.350000DEBUG:root:optics_fp: xyfp: [[-32.29046994 -31.71666141]\n", + " [-32.28860507 -27.33023323]\n", + " [-32.2867402 -22.94380505]\n", + " [-32.28487534 -18.55737688]\n", + " [-32.28301047 -14.1709487 ]\n", + " [-32.2811456 -9.78452053]\n", + " [-32.27928073 -5.39809235]\n", + " [-32.27741587 -1.01166418]\n", + " [-32.29046994 -31.71666141]\n", + " [-27.90404176 -31.71852627]\n", + " [-23.51761359 -31.72039114]\n", + " [-19.13118541 -31.722256 ]\n", + " [-14.74475724 -31.72412087]\n", + " [-10.35832906 -31.72598574]\n", + " [ -5.97190089 -31.72785061]\n", + " [ -1.58547272 -31.72971547]\n", + " [-32.27741587 -1.01166418]\n", + " [-27.8909877 -1.01352905]\n", + " [-23.50455952 -1.01539391]\n", + " [-19.11813134 -1.01725878]\n", + " [-14.73170317 -1.01912365]\n", + " [-10.345275 -1.02098851]\n", + " [ -5.95884682 -1.02285338]\n", + " [ -1.57241864 -1.02471825]\n", + " [ -1.58547272 -31.72971547]\n", + " [ -1.58360785 -27.3432873 ]\n", + " [ -1.58174298 -22.95685912]\n", + " [ -1.57987811 -18.57043094]\n", + " [ -1.57801325 -14.18400278]\n", + " [ -1.57614838 -9.7975746 ]\n", + " [ -1.57428351 -5.41114642]\n", + " [ -1.57241864 -1.02471825]\n", + " [-32.27465685 -29.80416795]\n", + " [-32.27237127 -24.42816844]\n", + " [-32.2700857 -19.05216893]\n", + " [-32.26780012 -13.67616941]\n", + " [-32.26551454 -8.3001699 ]\n", + " [-32.26322896 -2.92417038]\n", + " [-30.37796373 -31.70247449]\n", + " [-25.00196422 -31.70476008]\n", + " [-19.62596471 -31.70704565]\n", + " [-14.24996519 -31.70933123]\n", + " [ -8.87396568 -31.71161681]\n", + " [ -3.49796617 -31.71390239]\n", + " [-30.36492242 -1.02747727]\n", + " [-24.98892291 -1.02976285]\n", + " [-19.61292339 -1.03204842]\n", + " [-14.23692388 -1.034334 ]\n", + " [ -8.86092437 -1.03661958]\n", + " [ -3.48492485 -1.03890516]\n", + " [ -1.59965962 -29.81720927]\n", + " [ -1.59737405 -24.44120975]\n", + " [ -1.59508847 -19.06521024]\n", + " [ -1.59280289 -13.68921073]\n", + " [ -1.59051731 -8.31321121]\n", + " [ -1.58823174 -2.9372117 ]\n", + " [-32.27546357 -31.70166778]\n", + " [-32.27546357 -31.70166778]\n", + " [ -1.58742502 -1.03971187]\n", + " [ -1.58742502 -1.03971187]\n", + " [-30.37715702 -29.80497466]\n", + " [-25.00115751 -29.80726024]\n", + " [-19.625158 -29.80954582]\n", + " [-14.24915848 -29.8118314 ]\n", + " [ -8.87315897 -29.81411698]\n", + " [ -3.49715945 -29.81640256]\n", + " [-30.37487145 -24.42897515]\n", + " [-24.99887193 -24.43126073]\n", + " [-19.62287241 -24.43354631]\n", + " [-14.2468729 -24.43583188]\n", + " [ -8.87087339 -24.43811746]\n", + " [ -3.49487388 -24.44040305]\n", + " [-30.37258587 -19.05297564]\n", + " [-24.99658635 -19.05526122]\n", + " [-19.62058684 -19.05754679]\n", + " [-14.24458732 -19.05983237]\n", + " [ -8.86858781 -19.06211795]\n", + " [ -3.4925883 -19.06440353]\n", + " [-30.37030029 -13.67697612]\n", + " [-24.99430077 -13.6792617 ]\n", + " [-19.61830126 -13.68154728]\n", + " [-14.24230175 -13.68383286]\n", + " [ -8.86630223 -13.68611844]\n", + " [ -3.49030272 -13.68840401]\n", + " [-30.36801471 -8.30097661]\n", + " [-24.9920152 -8.30326219]\n", + " [-19.61601568 -8.30554776]\n", + " [-14.24001617 -8.30783335]\n", + " [ -8.86401666 -8.31011893]\n", + " [ -3.48801714 -8.3124045 ]\n", + " [-30.36572914 -2.9249771 ]\n", + " [-24.98972962 -2.92726267]\n", + " [-19.6137301 -2.92954825]\n", + " [-14.23773059 -2.93183383]\n", + " [ -8.86173108 -2.93411941]\n", + " [ -3.48573156 -2.93640499]]\n", + "DEBUG:root:cartToSphere: vec: [[ 0.00162968 -0.20886687 0.97794273]\n", + " [ 0.00164392 -0.18138669 0.98341048]\n", + " [ 0.00165615 -0.15321267 0.98819185]\n", + " [ 0.00166636 -0.12445123 0.99222433]\n", + " [ 0.0016745 -0.0952084 0.99545595]\n", + " [ 0.00168051 -0.06559229 0.99784509]\n", + " [ 0.00168433 -0.03571531 0.99936059]\n", + " [ 0.00168589 -0.00569466 0.99998236]\n", + " [ 0.00162968 -0.20886687 0.97794273]\n", + " [ 0.03065921 -0.20871575 0.97749565]\n", + " [ 0.0595691 -0.20829328 0.9762507 ]\n", + " [ 0.08824658 -0.20760055 0.9742251 ]\n", + " [ 0.11657974 -0.20663909 0.97144709]\n", + " [ 0.14445783 -0.20541086 0.96795574]\n", + " [ 0.17177197 -0.20391875 0.96380057]\n", + " [ 0.1984171 -0.20216791 0.95904056]\n", + " [ 0.00168589 -0.00569466 0.99998236]\n", + " [ 0.03171597 -0.00569039 0.99948072]\n", + " [ 0.06161834 -0.0056785 0.99808363]\n", + " [ 0.09127522 -0.00565918 0.99580962]\n", + " [ 0.12057355 -0.00563263 0.99268842]\n", + " [ 0.14940474 -0.00559908 0.98876027]\n", + " [ 0.17766265 -0.00555867 0.98407575]\n", + " [ 0.205241 -0.00551146 0.97869595]\n", + " [ 0.1984171 -0.20216791 0.95904056]\n", + " [ 0.20017053 -0.17558603 0.96389901]\n", + " [ 0.20167036 -0.14832064 0.96815807]\n", + " [ 0.20291139 -0.12047648 0.97175737]\n", + " [ 0.20389075 -0.09216227 0.97464592]\n", + " [ 0.20460646 -0.06348867 DEBUG:root:radec2pix: xyfp: [[32.2358199 31.31614388]\n", + " [32.23338667 26.92971599]\n", + " [32.23095344 22.54328809]\n", + " [32.2285202 18.15686019]\n", + " [32.22608698 13.7704323 ]\n", + " [32.22365375 9.3840044 ]\n", + " [32.22122051 4.99757651]\n", + " [32.21878728 0.61114861]\n", + " [32.2358199 31.31614388]\n", + " [27.849392 31.31857712]\n", + " [23.46296411 31.32101035]\n", + " [19.07653621 31.32344358]\n", + " [14.69010831 31.3258768 ]\n", + " [10.30368042 31.32831004]\n", + " [ 5.91725252 31.33074327]\n", + " [ 1.53082462 31.3331765 ]\n", + " [32.21878728 0.61114861]\n", + " [27.83235938 0.61358184]\n", + " [23.44593149 0.61601507]\n", + " [19.0595036 0.6184483 ]\n", + " [14.6730757 0.62088153]\n", + " [10.2866478 0.62331476]\n", + " [ 5.90021991 0.625748 ]\n", + " [ 1.513792 0.62818122]\n", + " [ 1.53082462 31.3331765 ]\n", + " [ 1.52839139 26.94674861]\n", + " [ 1.52595816 22.5603207 ]\n", + " [ 1.52352493 18.17389281]\n", + " [ 1.5210917 13.78746492]\n", + " [ 1.51865847 9.40103702]\n", + " [ 1.51622524 5.01460912]\n", + " [ 1.513792 0.62818122]\n", + " [32.219759 29.4036525 ]\n", + " [32.21677684 24.02765333]\n", + " [32.21379467 18.65165415]\n", + " [32.21081251 13.27565498]\n", + " [32.20783035 7.89965581]\n", + " [32.20484818 2.52365664]\n", + " [30.32331188 31.30220479]\n", + " [24.9473127 31.30518695]\n", + " [19.57131353 31.30816912]\n", + " [14.19531435 31.31115127]\n", + " [ 8.81931518 31.31413344]\n", + " [ 3.44331601 31.3171156 ]\n", + " [30.3062959 0.62720951]\n", + " [24.93029672 0.63019167]\n", + " [19.55429755 0.63317383]\n", + " [14.17829838 0.636156 ]\n", + " [ 8.80229921 0.63913816]\n", + " [ 3.42630004 0.64212033]\n", + " [ 1.54476372 29.42066847]\n", + " [ 1.54178156 24.0446693 ]\n", + " [ 1.53879939 18.66867013]\n", + " [ 1.53581723 13.29267096]\n", + " [ 1.53283507 7.91667178]\n", + " [ 1.5298529 2.54067261]\n", + " [32.22081158 31.30115221]\n", + " [32.22081158 31.30115221]\n", + " [ 1.52880032 0.6431729 ]\n", + " [ 1.52880032 0.6431729 ]\n", + " [30.32225929 29.40470508]\n", + " [24.94626012 29.40768724]\n", + " [19.57026095 29.41066941]\n", + " [14.19426178 29.41365157]\n", + " [ 8.8182626 29.41663373]\n", + " [ 3.44226343 29.4196159 ]\n", + " [30.31927713 24.02870591]\n", + " [24.94327796 24.03168807]\n", + " [19.56727878 24.03467023]\n", + " [14.19127961 24.0376524 ]\n", + " [ 8.81528044 24.04063456]\n", + " [ 3.43928127 24.04361672]\n", + " [30.31629496 18.65270673]\n", + " DEBUG:root:optics_fp: rtanth: [31.45867372 27.07232164 22.68599914 18.29972749 13.91355478 9.52761765\n", + " 5.14251895 0.77266756 31.45867372 31.78680319 32.70527593 34.16651578\n", + " 36.10468169 38.44771501 41.12647627 44.07980062 0.77266756 4.62057574\n", + " 8.9768556 13.35288972 17.73406053 22.11731568 26.50162097 30.8865292\n", + " 44.07980062 41.06447698 38.31494783 35.89234872 33.86691125 32.31340541\n", + " 31.3021752 30.8865292 29.54629558 24.17042769 18.79463536 13.41900945\n", + " 8.04388357 2.67227674 31.51224371 32.31623619 33.96261905 36.33706944\n", + " 39.30786805 42.7508727 2.22187045 7.50028847 12.8598094 18.22903784\n", + " 23.60134944 28.97502929 42.72508353 39.20023922 36.1342981 33.65291956\n", + " 31.89283999 30.97725364 31.44375973 31.44375973 30.87190328 30.87190328\n", + " 29.6191671 30.47314683 32.21386423 34.70815714 37.80716925 41.37524227\n", + " 24.25945282 25.29503252 27.36711605 30.26354513 33.77288911 37.72448364\n", + " 18.90898716 20.22047017 22.759345 26.17080258 30.16018539 34.5277484\n", + " 13.57870729 15.3524887DEBUG:root:optics_fp: sphi: [-0.99996956 -0.99995893 -0.99994158 -0.99991037 -0.99984537 -0.99967195\n", + " -0.99888983 -0.95886284 -0.99996956 -0.98938252 -0.96145475 -0.92030483\n", + " -0.87095303 -0.81797608 -0.76481709 -0.71369637 -0.95886284 -0.17659731\n", + " -0.09176722 -0.06188241 -0.04666441 -0.03744961 -0.03127246 -0.02684394\n", + " -0.71369637 -0.65943324 -0.59247759 -0.51053198 -0.41189324 -0.2963571\n", + " -0.16622968 -0.02684394 -0.99996117 -0.99994205 -0.99990433 -0.99981296\n", + " -0.99948354 -0.99550368 -0.99766348 -0.97260056 -0.92538694 -0.86498004\n", + " -0.79973567 -0.73547623 -0.36495814 -0.11160071 -0.06539891 -0.04622212\n", + " -0.0357361 -0.02912641 -0.69162042 -0.616889 -0.5207723 -0.39985178\n", + " -0.2538669 -0.08834096 -0.99996571 -0.99996571 -0.02734129 -0.02734129\n", + " -0.99735579 -0.96914412 -0.91672217 -0.85093152 -0.78133638 -0.71412384\n", + " -0.99606099 -0.95495897 -0.882678 -0.79840366 -0.71568873 -0.64094611\n", + " -0.99352198 -0.92871576 -0.82534028 -0.71815177 -0.62351779 -0.54491901\n", + " -0.98744912 -0.87313973 -0.72259694 -0.59380744 -0.49542438 -0.42145706\n", + " -0.96643258 -0.73302362 -0.53238015 -0.40581658 -0.32456648 -0.26928704\n", + " -0.78592344 -0.34216247 -0.20786992 -0.14837557 -0.11517726 -0.094064 ]\n", + "DEBUG:root:optics_fp: xyfp shape: (96, 2)\n", + "-24.28096928]\n", + " [ 0.25244679 -18.90496931]\n", + " [ 0.2530533 -13.52896935]\n", + " [ 0.25365981 -8.15296938]\n", + " [ 0.25426632 -2.77696942]\n", + " [ 2.14851968 -31.5546833 ]\n", + " [ 7.52451965 -31.55528981]\n", + " [ 12.90051962 -31.55589633]\n", + " [ 18.27651958 -31.55650284]\n", + " [ 23.65251954 -31.55710934]\n", + " [ 29.02851952 -31.55771586]\n", + " [ 2.15198038 -0.8796835 ]\n", + " [ 7.52798035 -0.88029001]\n", + " [ 12.90398031 -0.88089652]\n", + " [ 18.27998027 -0.88150303]\n", + " [ 23.65598025 -0.88210954]\n", + " [ 29.03198021 -0.88271605]\n", + " [ 30.92623357 -29.66042994]\n", + " [ 30.92684009 -24.28442998]\n", + " [ 30.9274466 -18.90843001]\n", + " [ 30.9280531 -13.53243004]\n", + " [ 30.92865961 -8.15643008]\n", + " [ 30.92926612 -2.78043011]\n", + " [ 0.2510197 -31.55446923]\n", + " [ 0.2510197 -31.55446923]\n", + " [ 30.9294802 -0.88293012]\n", + " [ 30.9294802 -0.8829[24.9402958 18.6556889 ]\n", + " [19.56429662 18.65867106]\n", + " [14.18829744 18.66165322]\n", + " [ 8.81229827 18.66463538]\n", + " [ 3.4362991 18.66761755]\n", + " [30.31331281 13.27670756]\n", + " [24.93731363 13.27968972]\n", + " [19.56131446 13.28267189]\n", + " [14.18531529 13.28565406]\n", + " [ 8.80931611 13.28863621]\n", + " [ 3.43331694 13.29161838]\n", + " [30.31033064 7.90070839]\n", + " [24.93433147 7.90369055]\n", + " [19.55833229 7.90667271]\n", + " [14.18233312 7.90965488]\n", + " [ 8.80633395 7.91263704]\n", + " [ 3.43033477 7.9156192 ]\n", + " [30.30734847 2.52470921]\n", + " [24.9313493 2.52769138]\n", + " [19.55535013 2.53067354]\n", + " [14.17935096 2.53365571]\n", + " [ 8.80335178 2.53663787]\n", + " [ 3.42735261 2.53962004]]\n", + "3012]\n", + " [ 2.14873376 -29.65718332]\n", + " [ 7.52473372 -29.65778983]\n", + " [ 12.90073369 -29.65839633]\n", + " [ 18.27673365 -29.65900285]\n", + " [ 23.65273362 -29.65960936]\n", + " [ 29.02873359 -29.66021587]\n", + " [ 2.14934027 -24.28118335]\n", + " [ 7.52534023 -24.28178986]\n", + " [ 12.9013402 -24.28239637]\n", + " [ 18.27734016 -24.28300288]\n", + " [ 23.65334013 -24.28360939]\n", + " [ 29.02934009 -24.2842159 ]\n", + " [ 2.14994678 -18.9051834544 0.0660437\n", + " 0.03618151 0.00617591 0.19052281 0.15759064 0.12372836 0.08914025\n", + " 0.05403012 0.01860347 0.20271324 0.2047859 0.20645854 0.207731\n", + " 0.20860063 0.20906415 0.00608691 0.00614821 0.00619816 0.00623643\n", + " 0.00626269 0.00627666 0.19734414 0.16321317 0.12814101 0.0923229\n", + " 0.05596168 0.01926848 0.20188558 0.20188558 0.00627861 0.00627861\n", + " 0.19130075 0.19325024 0.19482509 0.19602426 0.19684438 0.19728171\n", + " 0.15822879 0.1598311 0.16112922 0.16212009 0.16279899 0.16316141\n", + " 0.12422708 0.12548158 0.12650047 0.12727979 0.12781451 0.12810021\n", + " 0.08949878 0.09040196 0.09113695 0.09169995 0.09208666 0.09229337\n", + " 0.05424725 0.05479478 0.05524091 0.05558298 0.05581806 0.05594375\n", + " 0.01867818 0.01886665 0.0190203 0.01913813 0.01921909 0.01926233]\n", + " [0.95752334 0.96233343 0.96655667 0.97012962 0.9730004 0.97512825\n", + " 0.97648344 0.9770472 0.95752334 0.96243355 0.96676273 0.97044592\n", + " 0.97342972 0.97567188 0.97714116 0.97781727 0.9770472 0.98260969\n", + " 0.98749689 0.991645 0.99500027 DEBUG:root:optics_fp: rtanth: [31.5581844 27.17194416 22.78577643 18.39973306 14.01393083 9.62869923\n", + " 5.24546963 0.89418442 31.5581844 31.89890725 32.82747441 34.29617149\n", + " 36.23938733 38.58549624 41.26583765 44.21967554 0.89418442 4.73506565\n", + " 9.08425224 13.45763509 17.83742574 22.21983534 26.60356968 30.98806655\n", + " 44.21967554 41.20406839 38.45324836 36.02791805 33.99780815 32.43720936\n", + " 31.41616867 30.98806655 29.64590075 24.27020709 18.89468775 13.51955065\n", + " 8.14555257 2.77930847 31.61752824 32.43532389 34.09156981 36.4722193\n", + " 39.44633291 42.89063222 2.34966506 7.60940668 12.96487432 18.33236521\n", + " 23.70371309 29.07678054 42.86493558 39.33911823 36.27027014 33.78315439\n", + " 32.01364237 31.08452713 31.54331756 31.54331756 30.97348847 30.97348847\n", + " 29.72484887 30.59328006 32.34398987 34.84424384 37.94616883 41.5151163\n", + " 24.36657877 25.41873926 27.5008582 30.40205338 33.9127594 37.86381389\n", + " 19.01831838 20.34892081 22.89680053 26.31066557 30.29920003 34.66460262\n", + " 13.69180262 15.48701400.99751921 0.99916896 0.99992792\n", + " 0.97781727 0.98329036 0.98807893 0.99212057 0.99536294 0.99776395\n", + " 0.99929229 0.99992792 0.95970614 0.96521608 0.9697801 0.97329789\n", + " 0.97569443 0.97691953 0.95974864 0.96538541 0.97008348 0.97373975\n", + " 0.97627646 0.97764064 0.97955041 0.98592224 0.99121524 0.99532633\n", + " 0.99817546 0.99970681 0.98028234 0.9865382 0.99170277 0.9956755\n", + " 0.99837901 0.99976029 0.95755841 0.95755841 0.99992622 0.99992622\n", + " 0.96193079 0.96765331 0.9724202 0.97612865 0.97870098 0.98008414\n", + " 0.96752627 0.97346234 0.97840112 0.98224036 0.98490221 0.98633316\n", + " 0.97215857 0.97826559 0.98334273 0.98728777 0.99002231 0.99149217\n", + " 0.97572766 0.98196357 0.98714553 0.99117105 0.99396105 0.99546064\n", + " 0.9781586 0.98448116 0.98973385 0.99381384 0.99664146 0.99816126\n", + " 0.97940113 0.98576768 0.99105637 0.99516413 0.99801095 0.99954106]]\n", + "4 18.5693102 22.62172417 27.13794906 31.92173094\n", + " 8.30755918 10.96964715 15.14772357 19.90921024 24.92192864 30.06045831\n", + " 3.38416012 7.92276206 1338]\n", + " [ 7.52594674 -18.90578989]\n", + " [ 12.90194671 -18.9063964 ]\n", + " [ 18.27794667 -18.90700292]\n", + " [ 23.65394664 -18.90760943]\n", + " [ 29.0299466 -18.90821593]\n", + " [ 2.15055329 -13.52918342]\n", + " [ 7.52655325 -13.52978993]\n", + " [ 12.90255322 -13.53039644]\n", + " [ 18.27855318 -13.53100295]\n", + " [ 23.65455315 -13.53160946]\n", + " [ 29.03055312 -13.53221597]\n", + " [ 2.1511598 -8.15318346]\n", + " [ 7.52715976 -8.15378996]\n", + " [ 12.90315973 -8.15439647]\n", + " [ 18.27915969 -8.15500298]\n", + " [ 23.65515966 -8.15560949]\n", + " [ 29.03115962 -8.156216 ]\n", + " [ 2.1517663 -2.77718348]\n", + " [ 7.52776627 -2.77779 ]\n", + " [ 12.90376624 -2.77839651]\n", + " [ 18.2797662 -2.77900302]\n", + " [ 23.65576617 -2.77960953]\n", + " [ 29.03176613 -2.78021604]]\n", + "00e+01 5.00000147e-01]\n", + " [-4.35000000e+01 5.00000147e-01]\n", + " [ 2.00150000e+03 2.04550000e+03]\n", + " [ 2.00150000e+03 2.04550000e+03]\n", + " [ 8.30000000e+01 1.27000000e+02]\n", + " [ 4.41400000e+02 1.27000000e+02]\n", + " [ 7.99800000e+02 1.27000000e+02]\n", + " [ 1.15820000e+03 1.27000000e+02]\n", + " [ 1.51660000e+03 1.27000000e+02]\n", + " [ 1.87500000e+03 1.27000000e+02]\n", + " [ 8.30000000e+01 4.85400000e+02]\n", + " [ 4.41400000e+02 4.85400000e+02]\n", + " [ 7.99800000e+02 4.85400000e+02]\n", + " [ 1.15820000e+03 4.85400000e+02]\n", + " [ 1.51660000e+03 4.85400000e+02]\n", + " [ 1.87500000e+03 4.85400000e+02]\n", + " [ 8.30000000e+01 8.43800000e+02]\n", + " [ 4.41400000e+02 8.43800000e+02]\n", + " [ 7.99800000e+02 8.43800000e+02]\n", + " [ 1.15820000e+03 8.43800000e+02]\n", + " [ 1.51660000e+03 8.43800000e+02]\n", + " [ 1.87500000e+03 8.43800000e+02]\n", + " [ 8.30000000e+01 1.20220000e+03]\n", + " [ 4.41400000e+02 1.20220000e+03]\n", + " [ 7.99800000e+02 1.20220000e+03]\n", + " [ 1.15820000e+03 1.20220000e+03]\n", + " [ 1.51660000e+03 1.20220000e+03]\n", + " [ 1.87500000e+03 1.20220000e+03]\n", + " [ 8.30000000e+01 1.56060000e+03]\n", + " [ 4.41400000e+02 1.56060000e+03]\n", + " [ 7.99800000e+02 1.56060000e+03]\n", + " [ 1.15820000e+03 1.56060000e+03]\n", + " [ 1.51660000e+03 1.56060000e+03]\n", + " [ 1.87500000e+03 1.56060000e+03]\n", + " [ 8.30000000e+01 1.91900000e+03]\n", + " [ 4.41400000e+02 1.91900000e+03]\n", + " [ 7.99800000e+02 1.91900000e+03]\n", + " [ 1.15820000e+03 1.91900000e+03]\n", + " [ 1.51660000e+03 1.91900000e+03]\n", + " [ 1.87500000e+03 1.91900000e+03]]\n", + "DEBUG:root:radec2pix: camVec Shape: (3, 96)\n", + "DEBUG:root:radec2pix: xyfp Shape: (96, 2)\n", + " 0.97678318]\n", + " [ 0.20505694 -0.03456748 0.97813943]\n", + " [ 0.205241 -0.00551146 0.97869595]\n", + " [ 0.00173588 -0.19697755 0.98040646]\n", + " [ 0.00175296 -0.16281769 0.98665461]\n", + " [ 0.00176683 -0.12772153 0.99180849]\n", + " [ 0.00177741 -0.09188434 0.9957681 ]\n", + " [ 0.00178459 -0.05550542 0.99845679]\n", + " [ 0.00178824 -0.01879375 0.99982178]\n", + " [ 0.01429458 -0.20874173 0.97786633]\n", + " [ 0.04980805 -0.20837407 0.97678012]\n", + " [ 0.08502967 -0.20760004 0.97451125]\n", + " [ 0.11975303 -0.20642226 0.97110713]\n", + " [ 0.15377432 -0.2048444 0.96663966]\n", + " [ 0.1868945 -0.20287264 0.961204 ]\n", + " [ 0.0147871 -0.00579649 0.99987386]\n", + " [ 0.05152109 -0.00578593 0.99865515]\n", + " [ 0.08794575 -0.0057639 0.99610859]\n", + " [ 0.12385093 -0.00573078 0.99228429]\n", + " [ 0.15903647 -0.00568698 0.98725633]\n", + " [ 0.19330699 -0.00563273 0.98112215]\n", + " [ 0.19912208 -0.19067465 0.96124585]\n", + " [ 0.20110045 -0.157.11070286 18.40689143 23.73898749 29.08725072]\n", + "1 18.70915549 22.76005595 27.27289033 32.05313869\n", + " 8.42835902 11.10942753 15.28411843 20.03975859 25.04760117 30.18237029\n", + " 3.52303344 8.04946636 13.22795543 18.51935347 23.84862372 29.19503391]\n", + "6223 0.96680599]\n", + " [ 0.20269257 -0.12364673 0.97140476]\n", + " [ 0.20389226 -0.08894663 0.97494433]\n", + " [ 0.20469584 -0.05372559 0.97735008]\n", + " [ 0.20510055 -0.0181899 0.97857186]\n", + " [ 0.00172908 -0.20877415 0.97796235]\n", + " [ 0.00172908 -0.20877415 0.97796235]\n", + " [ 0.20514779 -0.0056111 0.97871492]\n", + " [ 0.20514779 -0.0056111 0.97871492]\n", + " [ 0.01435076 -0.19694699 0.9803091 ]\n", + " [ 0.05000388 -0.19660038 0.97920779]\n", + " [ 0.08536435 -0.19587092 0.97690711]\n", + " [ 0.12022547 -0.19476145 0.97345458]\n", + " [ 0.15438306 -0.19327535 0.96892234]\n", + " [ 0.18763689 -0.19141752 0.96340632]\n", + " [ 0.01449201 -0.16279237 0.98655391]\n", + " [ 0.05049589 -0.16250539 0.98541472]\n", + " [ 0.08620426 -0.1619024 0.9830343 ]\n", + " [ 0.1214098 -0.1609872 0.97946045]\n", + " [ 0.15590842 -0.15976346 0.97476571]\n", + " [ 0.18949858 -0.15823425 0.96904706]\n", + " [ 0.01460664 -0.12770151 0.99170508]\n", + " [ 0.05089468 -0.1274748 0.99053516]\n", + " [ 0.08688344 -0.12699943 0.98809029]\n", + " [ 0.12236492 -0.12628004 0.9844187 ]\n", + " [ 0.15713605 -0.12532102 0.97959323]\n", + " [ 0.19099623 -0.12412508 0.97371115]\n", + " [ 0.0146941 -0.09186978 0.99566261]\n", + " [ 0.05119852 -0.09170505 0.99446915]\n", + " [ 0.08739951 -0.09136033 0.99197511]\n", + " [ 0.12308827 -0.09084026 0.98822939]\n", + " [ 0.15806297 -0.09014925 0.98330525]\n", + " [ 0.19212497 -0.08928993 0.97730001]\n", + " [ 0.01475342 -0.05549654 0.99834987]\n", + " [ 0.05140434 -0.05539609 0.99714035]\n", + " [ 0.08774826 -0.05518622 0.99461285]\n", + " [ 0.12357559 -0.05487037 0.99081699]\n", + " [ 0.15868553 -0.05445187 0.9858265 ]\n", + " [ 0.19288138 -0.05393273 0.97973876]\n", + " [ 0.01478357 -0.01879073 0.99971414]\n", + " [ 0.05150885 -0.01875652 0.99849639]\n", + " [ 0.08792506 -0.01868512 0.99595183]\n", + " [ 0.1238221 -0.01857781 0.99213051]\n", + " [ 0.15899976 -0.01843585 0.98710648]\n", + " [ 0.19326249 -0.01826001 0.98097716]]\n", + "DEBUG:root:optics_fp: xyfp: [[ -0.24606 31.536148 ]\n", + " [ -0.24606 27.14971943]\n", + " [ -0.24606 22.76329086]\n", + " [ -0.24606 18.37686229]\n", + " [ -0.24606 13.99043371]\n", + " [ -0.24606 9.60400514]\n", + " [ -0.24606 5.21757658]\n", + " [ -0.24606 0.831148 ]\n", + " [ -0.24606 31.536148 ]\n", + " [ -4.63248857 31.536148 ]\n", + " [ -9.01891714 31.536148 ]\n", + " [-13.40534571 31.536148 ]\n", + " [-17.79177429 31.536148 ]\n", + " [-22.17820286 31.536148 ]\n", + " [-26.56463143 31.536148 ]\n", + " [-30.95106 31.536148 ]\n", + " [ -0.24606 0.831148 ]\n", + " [ -4.63248857 0.831148 ]\n", + " [ -9.01891714 0.831148 ]\n", + " [-13.40534571 0.831148 ]\n", + " [-17.79177429 0.831148 ]\n", + " [-22.17820285 0.831148 ]\n", + " [-26.56463143 0.831148 ]\n", + " [-30.95106 0.831148 ]\n", + " [-30.95106 31.536148 ]\n", + " [-30.95106 27.14971943]\n", + " [-30.95106 22.76329086]\n", + " [-30.95106 18.37686228]\n", + " [-30.95106 13.99043371]\n", + " [-30.95106 9.60400514]\n", + " [-30.95106 5.21757657]\n", + " [-30.95106 0.831148 ]\n", + " [ -0.26106 29.623648 ]\n", + " [ -0.26106 24.247648 ]\n", + " [ -0.26106 18.87164801]\n", + " [ -0.26106 13.495648 ]\n", + " [ -0.26106 8.119648 ]\n", + " [ -0.26106 2.743648 ]\n", + " [ -2.15856 31.521148 ]\n", + " [ -7.53456 31.521148 ]\n", + " [-12.91056 31.521148 ]\n", + " [-18.28656 31.521148 ]\n", + " [-23.66256 31.521148 ]\n", + " [-29.03856 31.521148 ]\n", + " [ -2.15856 0.846148 ]\n", + " [ -7.53456 0.846148 ]\n", + " [-12.91056 0.846148 ]\n", + " [-18.28655999 0.846148 ]\n", + " [-23.66256 0.846148 ]\n", + " [-29.03856 0.846148 ]\n", + " [-30.93606 29.623648 ]\n", + " [-30.93606 24.247648 ]\n", + " [-30.93606 18.871648 ]\n", + " [-30.93606 13.495648 ]\n", + " [-30.93606 8.119648 ]\n", + " [-30.93606 2.743648 ]\n", + " [ -0.26106 31.521148 ]\n", + " [ -0.26106 31.521148 ]\n", + " [-30.93606 0.846148 ]\n", + " [-30.93606 0.846148 ]\n", + " [ -2.15856 29.623648 ]\n", + " [ -7.53456 29.623648 ]\n", + " [-12.91056 29.623648 ]\n", + " [-18.28656 29.623648 ]\n", + " [-23.66256 29.623648 ]\n", + " [-29.03856 29.623648 ]\n", + " [ -2.15856 24.247648 ]\n", + " [ -7.53456 24.247648 ]\n", + " [-12.91056 24.2DEBUG:root:optics_fp: cphi: [-0.0055044 -0.00639203 -0.0076229 -0.00944382 -0.01241274 -0.01811485\n", + " -0.0335395 -0.22307599 -0.0055044 -0.14344285 -0.2735344 -0.39021968\n", + " -0.49076392 -0.57494454 -0.64415274 -0.70050591 -0.22307599 -0.98662859\n", + " -0.99647595 -0.9984093 -0.99909876 -0.99942085 -0.99959678 -0.99970325\n", + " -0.70050591 -0.75194059 -0.80589783 -0.86028974 -0.91173668 -0.955566\n", + " -0.98643233 -0.99970325 -0.00636666 -0.00777693 -0.00999392 -0.01398706\n", + " -0.02331621 -0.07013242 -0.06618572 -0.2308951 -0.37799383 -0.50124187\n", + " -0.60012567 -0.67754548 -0.93833732 -0.9947436 -0.99821572 -0.99911274\n", + " -0.99947098 -0.99964917 -0.72236515 -0.7873159 -0.85411461 -0.91708811\n", + " -0.96769535 -0.99629275 -0.00598404 -0.00598404 -0.999691 -0.999691\n", + " -0.07041425 -0.24485858 -0.398512 -0.52476457 -0.62394545 -0.7000711\n", + " -0.08596532 -0.29497775 -0.46908383 -0.60182876 -0.69847361 -0.76781625\n", + " -0.11028259 -0.36899894 -0.56404664 -0.69594091 -0.78213485 -0.83890011\n", + " -0.1535634 -0.48599238 -0.DEBUG:root:radec2pix: ccdpx: [[-4.44999999e+01 -4.99999855e-01]\n", + " [-4.45000000e+01 2.91928571e+02]\n", + " [-4.45000000e+01 5.84357143e+02]\n", + " [-4.44999998e+01 8.76785714e+02]\n", + " [-4.45000001e+01 1.16921429e+03]\n", + " [-4.45000000e+01 1.46164286e+03]\n", + " [-4.45000000e+01 1.75407143e+03]\n", + " [-4.44999999e+01 2.04650000e+03]\n", + " [-4.44999999e+01 -4.99999855e-01]\n", + " [ 2.47928571e+02 -5.00000005e-01]\n", + " [ 5.40357143e+02 -5.00000101e-01]\n", + " [ 8.32785714e+02 -5.00000211e-01]\n", + " [ 1.12521429e+03 -4.99999718e-01]\n", + " [ 1.41764286e+03 -5.00000108e-01]\n", + " [ 1.71007143e+03 -4.99999976e-01]\n", + " [ 2.00250000e+03 -5.00000222e-01]\n", + " [-4.44999999e+01 2.04650000e+03]\n", + " [ 2.47928572e+02 2.04650000e+03]\n", + " [ 5.40357143e+02 2.04650000e+03]\n", + " [ 8.32785714e+02 2.04650000e+03]\n", + " [ 1.12521429e+03 2.04650000e+03]\n", + " [ 1.41764286e+03 2.04650000e+03]\n", + " [ 1.71007143e+03 2.04650000e+03]\n", + " [ 2.00250000e+03 2.04650000e+03]\n", + " [ 2.00250000e+03 -5.00000222e-01]\n", + " [ 2.00250000e+03 2.91928571e+02]\n", + " [ 2.00250000e+03 5.84357143e+02]\n", + " [ 2.00250000e+03 8.76785714e+02]\n", + " [ 2.00250000e+03 1.16921429e+03]\n", + " [ 2.00250000e+03 1.46164286e+03]\n", + " [ 2.00250000e+03 1.75407143e+03]\n", + " [ 2.00250000e+03 2.04650000e+03]\n", + " [-4.35000000e+01 1.27000000e+02]\n", + " [-4.35000000e+01 4.85400000e+02]\n", + " [-4.34999998e+01 8.43800000e+02]\n", + " [-4.35000001e+01 1.20220000e+03]\n", + " [-4.35000000e+01 1.56060000e+03]\n", + " [-4.34999999e+01 1.91900000e+03]\n", + " [ 8.29999998e+01 4.99999766e-01]\n", + " [ 4.41400000e+02 4.99999737e-01]\n", + " [ 7.99800000e+02 4.99999723e-01]\n", + " [ 1.15820000e+03 5.00000251e-01]\n", + " [ 1.51660000e+03 4.99999874e-01]\n", + " [ 1.87500000e+03 5.00000148e-01]\n", + " [ 8.30000001e+01 2.04550000e+03]\n", + " [ 4.41400000e+02 2.04550000e+03]\n", + " [ 7.99800000e+02 2.04550000e+03]\n", + " [ 1.15820000e+03 2.04550000e+03]\n", + " [ 1.51660000e+03 2.04550000e+03]\n", + " [ 1.87500000e+03 2.04550000e+03]\n", + " [ 2.00150000e+03 1.27000000e+02]\n", + " [ 2.00150000e+03 4.85400000e+02]\n", + " [ 2.00150000e+03 8.43800000e+02]\n", + " [ 2.00150000e+03 1.20220000e+03]\n", + " [ 2.00150000e+03 1.56060000e+03]\n", + " [ 2.00150000e+03 1.91900000e+03]\n", + " [-4.35000047648 ]\n", + " [-18.28656 24.247648 ]\n", + " [-23.66256 24.247648 ]\n", + " [-29.03856 24.247648 ]\n", + " [ -2.15856 18.871648 ]\n", + " [ -7.53456 18.871648 ]\n", + " [-12.91056 18.871648 ]\n", + " [-18.28656 18.871648 ]\n", + " [-23.66256 18.871648 ]\n", + " [-29.03856 18.871648 ]\n", + " [ -2.15856 13.495648 ]\n", + " [ -7.53456 13.495648 ]\n", + " [-12.91056 13.495648 ]\n", + " [-18.28656 13.495648 ]\n", + " [-23.66256 13.495648 ]\n", + " [-29.03856 13.495648 ]\n", + " [ -2.15856 8.119648 ]\n", + " [ -7.53456 8.119648 ]\n", + " [-12.91056 8.119648 ]\n", + " [-18.28656 8.119648 ]\n", + " [-23.66256 8.119648 ]\n", + " [-29.03856 8.119648 ]\n", + " [ -2.15856 2.743648 ]\n", + " [ -7.53456 2.743648 ]\n", + " [-12.91056 2.743648 ]\n", + " [-18.28656 2.743648 ]\n", + " [-23.66256 2.743648 ]\n", + " [-29.03856 2.743648 ]]\n", + "DEBUG:root:optics_fp: cphi: [-0.00832855 -0.00971656 -0.01163892 -0.01447769 -0.01909311 -0.02791171\n", + " -0.05146104 -0.30320505 -0.00832855 -0.1457499 -0.27524782 -0.39135911\n", + " -0.49141415 -0.57521551 -0.64415037 -0.70031796 -0.30320505 -0.98362937\n", + " -0.99556659 -0.99797672 -0.99884564 -0.99925418 -0.99947834 -0.99961448\n", + " -0.70031796 -0.75160095 -0.80539882 -0.85964958 -0.91101663 -0.95488339\n", + " -0.98595524 -0.99961448 -0.00938916 -0.01152859 -0.01488525 -0.02091069\n", + " -0.03488457 -0.10276119 -0.06880165 -0.23281216 -0.37919455 -0.50184326\n", + " -0.60029249 -0.67742851 -0.92933123 -0.99345681 -0.99774332 -0.99886819\n", + " -0.99932092 -0.99954725 -0.72211351 -0.78687071 -0.8534883 -0.91636505\n", + " -0.96706125 -0.99601335 -0.00880814 -0.00880814 -0.99960055 -0.99960055\n", + " -0.0731997 -0.24684669 -0.39969867 -0.52530483 -0.62403795 -0.69988601\n", + " -0.08935604 -0.29715482 -0.47014172 -0.60210737 -0.6983006 -0.76741609\n", + " -0.11456071 -0.37126057 -0.56474055 -0.69579203 -0.78162959 -0.83828312\n", + " -0.15923419 -0.48790573 -0.69122322 -0.80440059 -0.86841556 -0.90662579\n", + " -0.25884683 -0.68029192 -0.84621522 -0.91366637 -0.94562561 -0.96286848\n", + " -0.61966627 -0.93908148 -0.97786122 -0.98875506 -0.9932273 -0.99548108]\n", + "02e+01 4.99999824e-01]\n", + " [-4.35000002e+01 4.99999824e-01]\n", + " [ 2.00150000e+03 2.04550000e+03]\n", + " [ 2.00150000e+03 2.04550000e+03]\n", + " [ 8.30000001e+01 1.27000000e+02]\n", + " [ 4.41400000e+02 1.27000000e+02]\n", + " [ 7.99800000e+02 1.27000000e+02]\n", + " [ 1.15820000e+03 1.27000000e+02]\n", + " [ 1.51660000e+03 1.27000000e+02]\n", + " [ 1.87500000e+03 1.27000000e+02]\n", + " [ 8.29999998e+01 4.85400000e+02]\n", + " [ 4.41400000e+02 4.85400000e+02]\n", + " [ 7.99800000e+02 4.85400000e+02]\n", + " [ 1.15820000e+03 4.85400000e+02]\n", + " [ 1.51660000e+03 4.85400000e+02]\n", + " [ 1.87500000e+03 4.85400000e+02]\n", + " [ 8.30000003e+01 8.43800000e+02]\n", + " [ 4.41400000e+02 8.43800000e+02]\n", + " [ 7.99800000e+02 8.43800000e+02]\n", + " [ 1.15820000e+03 8.43800000e+02]\n", + " [ 1.51660000e+03 8.43800000e+02]\n", + " [ 1.87500000e+03 8.43800000e+02]\n", + " [ 8.29999997e+01 1.20220000e+03]\n", + " [ 4.41400000e+02 1.20220000e+03]\n", + " [ 7.99800000e+02 1.20220000e+03]\n", + " [ 1.15820000e+03 1.20220000e+03]\n", + " [ 1.51660000e+03 1.20220000e+03]\n", + " [ 1.87500000e+03 1.20220000e+03]\n", + " [ 8.30000001e+01 1.56060000e+03]\n", + " [ 4.41400000e+02 1.56060000e+03]\n", + " [ 7.99800000e+02 1.56060000e+03]\n", + " [ 1.15820000e+03 1.56060000e+03]\n", + " [ 1.51660000e+03 1.56060000e+03]\n", + " [ 1.87500000e+03 1.56060000e+03]\n", + " [ 8.30000000e+01 1.91900000e+03]\n", + " [ 4.41400000e+02 1.91900000e+03]\n", + " [ 7.99800000e+02 1.91900000e+03]\n", + " [ 1.15820000e+03 1.91900000e+03]\n", + " [ 1.51660000e+03 1.91900000e+03]\n", + " [ 1.87500000e+03 1.91900000e+03]]\n", + "DEBUG:root:make_az_asym: xyp: [[-32.29046994 -31.71666141]\n", + " [-32.28860507 -27.33023323]\n", + " [-32.2867402 -22.94380505]\n", + " [-32.28487534 -18.55737688]\n", + " [-32.28301047 -14.1709487 ]\n", + " [-32.2811456 -9.78452053]\n", + " [-32.27928073 -5.39809235]\n", + " [-32.27741587 -1.01166418]\n", + " [-32.29046994 -31.71666141]\n", + " [-27.90404176 -31.71852627]\n", + " [-23.51761359 -31.72039114]\n", + " [-19.13118541 -31.722256 ]\n", + " [-14.74475724 -31.72412087]\n", + " [-10.35832906 -31.72598574]\n", + " [ -5.97190089 -31.72785061]\n", + " [ -1.58547272 -31.72971547]\n", + " [-32.27741587 -1.01166418]\n", + " [-27.8909877 -1.01352905]\n", + " [-23.50455952 -1.01539391]\n", + " [-19.11813134 -1.01725878]\n", + " [-14.73170317 -1.01912365]\n", + " [-10.345275 -1.02098851]\n", + " [ -5.95884682 -1.02285338]\n", + " [ -1.57241864 -1.02471825]\n", + " [ -1.58547272 -31.72971547]\n", + " [ -1.58360785 -27.3432873 ]\n", + " [ -1.58174298 -22.95685912]\n", + " [ -1.57987811 -18.57043094]\n", + " [ -1.57801325 -14.18400278]\n", + " [ -1.57614838 -9.7975746 ]\n", + " [ -1.57428351 -5.41114642]\n", + " [ -1.57241864 -1.02471825]\n", + " [-32.27465685 -29.80416795]\n", + " [-32.27237127 -24.42816844]\n", + " [-32.2700857 -19.05216893]\n", + " [-32.26780012 -13.67616941]\n", + " [-32.26551454 -8.3001699 ]\n", + " [-32.26322896 -2.92417038]\n", + " [-30.37796373 -31.70247449]\n", + " [-25.00196422 -31.70476008]\n", + " [-19.62596471 -31.70704565]\n", + " [-14.24996519 -31.70933123]\n", + " [ -8.87396568 -31.71161681]\n", + " [ -3.49796617 -31.71390239]\n", + " [-30.36492242 -1.02747727]\n", + " [-24.98892291 -1.02976285]\n", + " [-19.61292339 -1.03204842]\n", + " [-14.23692388 -1.034334 ]\n", + " [ -8.86092437 -1.03661958]\n", + " [ -3.48492485 -1.03890516]\n", + " [ -1.59965962 -29.81720927]\n", + " [ -1.59737405 -24.44120975]\n", + " [ -1.59508847 -19.06521024]\n", + " [ -1.59280289 -13.68921073]\n", + " [ -1.59051731 -8.31321DEBUG:root:cartToSphere: vec: [[0.20581047 0.20196806 0.95752334]\n", + " [0.20764708 0.17549093 0.96233343]\n", + " [0.20921111 0.14832034 0.96655667]\n", + " [0.21050368 0.12056829 0.97012962]\n", + " [0.21152432 0.0923455 0.9730004 ]\n", + " [0.2122716 0.06376263 0.97512825]\n", + " [0.21274377 0.0349311 0.97648344]\n", + " [0.21293946 0.00596325 0.9770472 ]\n", + " [0.20581047 0.20196806 0.95752334]\n", + " [0.17940008 0.20380697 0.96243355]\n", + " [0.15228099 0.20537849 0.96676273]\n", + " [0.12456525 0.20668384 0.97044592]\n", + " [0.09636347 0.20772258 0.97342972]\n", + " [0.06778617 0.20849323 0.97567188]\n", + " [0.03894463 0.20899395 0.97714116]\n", + " [0.00995116 0.20922323 0.97781727]\n", + " [0.21293946 0.00596325 0.9770472 ]\n", + " [0.18558556 0.00601646 0.98260969]\n", + " [0.15752187 0.00606233 0.98749689]\n", + " [0.12885256 0.00610071 0.991645 ]\n", + " [0.09968382 0.00613144 0.99500027]\n", + " [0.07012532 0.00615431 0.99751921]\n", + " [0.04029051 0.00616917 0.99916896]\n", + " [0.01029607 0.00617591 0.99992792]\n", + " [0.00995116 0.20922323 0.97781727]\n", + " [0.01003858 0.18176716 0.98329036]\n", + " [0.01011374 0.15361557 0.98807893]\n", + " [0.01017639 0.12487279 0.99212057]\n", + " [0.01022623 0.09564544 0.99536294]\n", + " [0.01026295 0.0660437 0.99776395]\n", + " [0.01028629 0.03618151 0.99929229]\n", + " [0.01029607 0.00617591 0.99992792]\n", + " [0.20655553 0.19052281 0.95970614]\n", + " [0.20862193 0.15759064 0.96521608]\n", + " [0.21028039 0.12372836 0.9697801 ]\n", + " [0.21153069 0.08914025 0.97329789]\n", + " [0.21237025 0.05403012 0.97569443]\n", + " [0.212796 0.01860347 0.97691953]\n", + " [0.1943962 0.20271324 0.95974864]\n", + " [0.16153559 0.2047859 0.96538541]\n", + " [0.12772204 0.20645854 0.97008348]\n", + " [0.0931597 0.207731 0.97373975]\n", + " [0.05805212 0.20860063 0.97627646]\n", + " [0.02260459 0.20906415 0.97764064]\n", + " [0.2011068 0.00608691 0.97955041]\n", + " [0.16709142 0.00614821 0.98592224]\n", + " [0.1321133 0.00619816 0.99121524]\n", + " [0.09636698 0.00623643 0.99532633]\n", + " [0.06005439 0.00626269 0.99817546]\n", + " [0.02338579 0.00627666 0.99970681]\n", + " [0.01009044 0.19734414 0.98028234]\n", + " [0.01019035 0.16321317 0.9865382 ]\n", + " [0.01027142 0.12814101 0.99170277]\n", + " [0.0103331 0.0923229 0.9956755 ]\n", + " [0.01037483 0.05596168 0.DEBUG:root:radec2pix: curVec: [[ 0.22816977 0.54295329 -0.80817095]\n", + " [ 0.20220386 0.54981199 -0.81044455]\n", + " [ 0.17551531 0.55627763 -0.8122497 ]\n", + " [ 0.14821286 0.5623111 -0.81353499]\n", + " [ 0.12040536 0.56787722 -0.81425918]\n", + " [ 0.09220207 0.57294471 -0.81439127]\n", + " [ 0.063713 0.57748642 -0.81391037]\n", + " [ 0.0350491 0.58147975 -0.81280555]\n", + " [ 0.22816977 0.54295329 -0.80817095]\n", + " [ 0.22643819 0.52068175 -0.8231745 ]\n", + " [ 0.22434852 0.49756983 -0.83790931]\n", + " [ 0.22191498 0.4736919 -0.85227327]\n", + " [ 0.21915134 0.44912686 -0.86617421]\n", + " [ 0.21607097 0.42395839 -0.87952977]\n", + " [ 0.21268718 0.39827527 -0.89226732]\n", + " [ 0.20901366 0.37217148 -0.90432388]\n", + " [ 0.0350491 0.58147975 -0.81280555]\n", + " [ 0.03142257 0.5588283 -0.82868785]\n", + " [ 0.02769244 0.53526453 -0.84423042]\n", + " [ 0.02387271 0.51085814 -0.8593335 ]\n", + " [ 0.01997743 0.48568382 -0.87390625]\n", + " [ 0.01602103 0.45982301 -0.88786605]\n", + " [ 0.01201845 0.43336499 -0.90113836]\n", + " [ 0.00798523 0.40640691 -0.9136573 ]\n", + " [ 0.20901366 0.37217148 -0.90432388]\n", + " [ 0.18184148 0.37782436 -0.90784494]\n", + " [ 0.1539776 0.38328023 -0.91070696]\n", + " [ 0.12552562 0.38850114 -0.91285825]\n", + " [ 0.09659045 0.39345291 -0.91425658]\n", + " [ 0.06728005 0.39810499 -0.91486928]\n", + " [ 0.03770641 0.40243058 -0.91467363]\n", + " [ 0.00798523 0.40640691 -0.9136573 ]\n", + " [ 0.2169386 0.54591453 -0.80926817]\n", + " [ 0.18461381 0.5540609 -0.81174766]\n", + " [ 0.15131162 0.56157769 -0.81347114]\n", + " [ 0.11723239 0.56839851 -0.81435846]\n", + " [ 0.08257728 0.5744658 -0.81435252]\n", + " [ 0.04754923 0.57973146 -0.81341902]\n", + " [ 0.22737186 0.5333746 -0.81474755]\n", + " [ 0.22500587 0.50550366 -0.83296963]\n", + " [ 0.22211634 0.47644377 -0.85068541]\n", + " [ 0.21872885 0.44633826 -0.86772107]\n", + " [ 0.21486802 0.41534123 -0.88392499]\n", + " [ 0.21055851 0.3836183 -0.89916745]\n", + " [ 0.03358015 0.57170738 -0.81977012]\n", + " [ 0.02906503 0.5433235 -0.83902014]\n", + " [ 0.02440803 0.51363811 -0.85765969]\n", + " [ 0.01963498 0.48278653 -0.87551792]\n", + " [ 0.01477245 0.45091885 -0.8924427 ]\n", + " [ 0.0098482 0.4182027 -0.90830035]\n", + " [ 0.1972713 0.374748 -0.90589623]\n", + " [ 0.16349098 0.38154957 -0.90977504]\n", + " [ 0.12877459 0.3880169 -0.91261163]\n", + " [ 0.09331459 0.39408554 -0.91432433]\n", + " [ 0.05730987 0.39969925 -0.91485304]\n", + " [ 0.02096818 0.40481034 -0.91416023]\n", + " [ 0.22807703 0.54290271 -0.8082311 ]\n", + " [ 0.22807703 0.54290271 -0.8082311 ]\n", + " [ 0.00810081 0.40648686 -0.91362072]\n", + " [ 0.00810081 0.40648686 -0.91362072]\n", + " [ 0.21617841 0.53636233 -0.8158323 ]\n", + " [ 0.21367284 0.50841652 -0.83418017]\n", + " [ 0.21066788 0.47927175 -0.852008 ]\n", + " [ 0.20718883 0.44907097 -0.86914213]\n", + " [ 0.20325986 0.41796807 -0.88543104]\n", + " [ 0.1989052 0.3861288 -0.90074484]\n", + " [ 0.18369978 0.54445093 -0.81842995]\n", + " [ 0.18080477 0.51632434 -0.83708949]\n", + " [ 0.17747878 0.48697245 -0.85519537]\n", + " [ 0.17374602 0.45653677 -0.87257464]\n", + " [ 0.16962947 0.42517041 -0.8890759 ]\n", + " [ 0.16515253 0.39303966 -0.90456866]\n", + " [ 0.15024657 0.55192549 -0.82024644]\n", + " [ 0.14696989 0.52366443 -0.83915161]\n", + " [ 0.14332992 0.4941547 -0.8574775 ]\n", + " [ 0.13935003 0.46353603 -0.87505195]\n", + " [ 0.13505261 0.43196068 -0.89172348]\n", + " [ 0.13046087 0.3995955 -0.90736068]\n", + " [ 0.11601871 0.55871944 -0.82120171]\n", + " [ 0.11236633 0.53036968 -0.84028675]\n", + " [ 0.10841741 0.50075104 -0.85877474]\n", + " [ 0.10419518 0.47000148 -0.87649414]\n", + " [ 0.09972233 0.43827245 -0.89329318]\n", + " [ 0.0950227 0.40573128 -0.9090395 ]\n", + " [ 0.08121704 0.56477487 -0.82123878]\n", + " [ 0.07719404 0.53638115 -0.84043819]\n", + " [ 0.07294049 0.50670194 -0.85903017]\n", + " [ 0.06848027 0.47587373 -0.87684357]\n", + " [ 0.06383732 0.44404724 -0.89372638]\n", + " [ 0.05903683 0.41139011 -0.9095454 ]\n", + " [ 0.04604463 0.57004324 -0.82032347]\n", + " [ 0.04165666 0.54164922 -0.83957183]\n", + " [ 0.03710369 0.51195711 -0.85820932]\n", + " [ 0.03241098 0.48110245 -0.87606505]\n", + " [ 0.02760434 0.44923541 -0.89298687]\n", + " [ 0.02271083 0.41652371 -0.90884114]]\n", + "DEBUG:root:radec2pix: curVec Shape: (96, 3)\n", + "99837901]\n", + " [0.01039617 0.01926848 0.99976029]\n", + " [0.20572824 0.20188558 0.95755841]\n", + " [0.20572824 0.20188558 0.95755841]\n", + " [0.01039877 0.00627861 0.99992622]\n", + " [0.01039877 0.00627861 0.99992622]\n", + " [0.19517474 0.19130075 0.96193079]\n", + " [0.1621771 0.19325024 0.96765331]\n", + " [0.12822694 0.19482509 0.9724202 ]\n", + " [0.09352723 0.19602426 0.97612865]\n", + " [0.05828102 0.19684438 0.97870098]\n", + " [0.02269376 0.19728171 0.98008414]\n", + " [0.19712067 0.15822879 0.96752627]\n", + " [0.1637837 0.1598311 0.97346234]\n", + " [0.12949375 0.16112922 0.97840112]\n", + " [0.09445078 0.16212009 0.98224036]\n", + " [0.05885684 0.16279899 0.98490221]\n", + " [0.0229182 0.16316141 0.98633316]\n", + " [0.19868404 0.12422708 0.97215857]\n", + " [0.16507817 0.12548158 0.97826559]\n", + " [0.13051704 0.12650047 0.98334273]\n", + " [0.09519827 0.12727979 0.98728777]\n", + " [0.05932353 0.12781451 0.99002231]\n", + " [0.02310025 0.12810021 0.99149217]\n", + " [0.19986372 0.08949878 0.97572766]\n", + " [0.16605732 0.09040196 0.98196357]\n", + " [0.13129265 0.09113695 0.98714553]\n", + " [0.09576573 0.09169995 0.99117105]\n", + " [0.05967819 0.09208666 0.99396105]\n", + " [0.02323871 0.09229337 0.99546064]\n", + " [0.20065641 0.05424725 0.9781586 ]\n", + " [0.16671646 0.05479478 0.98448116]\n", + " [0.13181555 0.05524091 0.98973385]\n", + " [0.09614872 0.05558298 0.99381384]\n", + " [0.05991775 0.05581806 0.99664146]\n", + " [0.0233323 0.05594375 0.99816126]\n", + " [0.20105858 0.01867818 0.97940113]\n", + " [0.16705125 0.01886665 0.98576768]\n", + " [0.13208139 0.0190203 0.99105637]\n", + " [0.09634357 0.01913813 0.99516413]\n", + " [0.06003972 0.01921909 0.99801095]\n", + " [0.02338002 0.01926233 0.99954106]]\n", + "DEBUG:root:radec2pix: fitpx: [[2135.5 4155.49999984]\n", + " [2135.5 3863.07142868]\n", + " [2135.5 3570.64285754]\n", + " [2135.5 3278.21428588]\n", + " [2135.5 2985.78571458]\n", + " [2135.5 2693.35714314]\n", + " [2135.5 2400.92857131]\n", + " [2135.50000005 2108.49999975]\n", + " [2135.5 4155.49999984]\n", + " [1843.07142855 4155.50000013]\n", + " [1550.64285718 4155.49999985]\n", + " [1258.21428582 4155.49999974]\n", + " [ 965.78571443 4155.49999975]\n", + " [ 673.35714268 4155.50000026]\n", + " [ 380.92857156 4155.49999984]\n", + " [ 88.49999989 4155.50000011]\n", + " [2135.50000005 2108.49999975]\n", + " [1843.07142845 2108.50000002]\n", + " [1550.64285702 2108.50000001]\n", + " [1258.21428598 2108.49999998]\n", + " [ 965.78571394 2108.50000002]\n", + " [ 673.35714284 2108.5 ]\n", + " [ 380.92857156 2108.5 ]\n", + " [ 88.49999977 2108.50000001]\n", + " [ 88.49999989 4155.50000011]\n", + " [ 88.49999981 3863.07142874]\n", + " [ 88.49999988 3570.64285723]\n", + " [ 88.49999983 3278.21428582]\n", + " [ 88.5000001 2985.78571424]\n", + " [ 88.50000005 2693.35714284]\n", + " [ 88.49999995 2400.92857144]\n", + " [ 88.49999977 2108.50000001]\n", + " [2134.5 4028.00000026]\n", + " [2134.5 3669.59999996]\n", + " [2134.5 3311.20000006]\n", + " [2134.5 2952.80000018]\n", + " [2134.50000001 2594.39999977]\n", + " [2134.49999998 2236.00000029]\n", + " [2008.00000002 4154.49999972]\n", + " [1649.59999996 4154.50000015]\n", + " [1291.19999992 4154.5000002 ]\n", + " [ 932.79999984 4154.50000027]\n", + " [ 574.40000018 4154.49999976]\n", + " [ 215.99999983 4154.50000019]\n", + " [2007.99999997 2109.50000001]\n", + " [1649.60000009 2109.49999999]\n", + " [1291.20000024 2109.49999998]\n", + " [ 932.80000011 2109.5 ]\n", + " [ 574.40000007 2109.5 ]\n", + " [ 216.00000022 2109.49999999]\n", + " [ 89.50000011 4027.99999989]\n", + " [ 89.49999997 3669.60000003]\n", + " [ 89.49999978 3311.20000014]\n", + " [ 89.49999974 2952.80000012]\n", + " [ 89.49999998 2594.4 ]\n", + " [ 89.50000005 2236. ]\n", + " [2134.5 4154.49999985]\n", + " [2134.5 4154.49999985]\n", + " [ 89.49999982 2109.5 ]\n", + " [ 89.49999982 2109.5 ]\n", + " [2007.99999998 4028.00000026]\n", + " [1649.60000006 4027.99999978]\n", + " [1291.19999989 4028.00000025]\n", + " [ 932.8000001 4027.99999984]\n", + " [ 574.40000016 4027.9999998 ]\n", + " [ 215.99999996 4028.00000004]\n", + " [2007.99999998 3669.60000024]\n", + " [1649.59999998 3669.60000005]\n", + " [1291.20000009 3669.59999982]\n", + " [ 932.79999983 3669.60000022]\n", + " [ 574.39999986 3669.60000015]\n", + " [ 216.00000022 3669.59999982]\n", + " [2007.99999999 3311.20000008]\n", + " [1649.59999996 3311.2000001 ]\n", + " [1291.19999979 3311.20000031]\n", + " [ 932.80000004 3311.19999996]\n", + " [ 574.39999992 3311.20000007]\n", + " [ 216.00000024 3311.19999984]\n", + " [2008.00000001 2952.79999992]\n", + " [1649.6000001 2952.79999982]\n", + " [1291.20000006 2952.79999994]\n", + " [ 932.79999988 2952.80000009]\n", + " [ 574.39999983 2952.8000001 ]\n", + " [ 215.99999999 2952.8 ]\n", + " [2008.00000001 2594.39999996]\n", + " [1649.60000003 2594.39999997]\n", + " [1291.19999974 2594.40000016]\n", + " [ 932.80000041 2594.39999982]\n", + " [ 574.40000002 2594.39999999]\n", + " [ 215.99999998 2594.40000001]\n", + " [2008.00000001 2235.99999999]\n", + " [1649.59999976 2236.00000009]\n", + " [1291.19999986 2236.00000003]\n", + " [ 932.79999992 2236.00000001]\n", + " [ 574.39999976 2236.00000003]\n", + " [ 216.00000019 2235.99999998]]\n", + "DEBUG:root:optics_fp: xyfp shape: (96, 2)\n", + "DEBUG:root:radec2pix: lng: [270.4470398 270.51926185 270.61931513 270.76712536 271.00759894\n", + " 271.46762895 272.70005845 286.49130114 270.4470398 278.35667351\n", + " 285.95982213 293.02931263 299.43042278 305.11729798 310.10927793\n", + " 314.46353671 286.49130114 349.82837514 354.73471783 356.4521324\n", + " 357.32535522 357.85379375 358.20792761 358.46177059 314.46353671\n", + " 318.74333689 323.66697635 329.30072855 335.67617912 342.7610671\n", + " 350.43132356 358.46177059 270.50490909 270.61684574 270.79254775\n", + " 271.10819213 271.84151891 275.43536905 273.91748404 283.44327486\n", + " 292.27322451 300.11957347 306.89513227 312.65252806 338.59499359\n", + " 353.59240246 356.2502422 357.3507235 357.95203643 358.33094358\n", + " 316.24148386 321.91069268 328.61592969 336.43108737 345.29354618\n", + " 354.93182927 270.47451616 270.47451616 358.43326445 358.43326445\n", + " 274.16755516 284.27018764 293.54850553 301.6868684 308.61690354\n", + " 314.4285595 275.08714159 287.26177752 298.03288482 307.02206797\n", + " 314.30032851 320.13759497 276.52519686 291.76449803 304.37699404\n", + " 314.09790313 321.42651996 326.9808709 279.08719841 299.17442797\n", + " 313.73069285 323.57233622 330.30226172 335.07338778 284.88740412\n", + " 312.85952275 327.83358678 336.05769185 341.06068787 344.37815396\n", + " 308.1938338 339.99132199 348.00244679 351.46719972 353.38615059\n", + " 354.60255033]\n", + "DEBUG:root:fitpix2pix: ccdpx: shape: (96, 2)\n", + "DEBUG:root:fitpix2pix: visCut: True\n", + "6913123 -0.80511955 -0.86923269 -0.90738164\n", + " -0.25098261 -0.68015432 -0.84745756 -0.91480539 -0.94651795 -0.96355992\n", + " -0.61607996 -0.94170609 -0.97911709 -0.98946165 -0.99367815 -0.99579412]\n", + "DEBUG:root:mm_to_pix: fitpx: [[0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]]\n", + "DEBUG:root:radec2pix: camVec: [[0.20622014 0.20805053 0.20961035 0.210899 0.21191543 0.21265818\n", + " 0.21312568 0.21331667 0.20622014 0.17982824 0.1527297 0.12503427\n", + " 0.09685185 0.06829276 0.03946812 0.01049004 0.21331667 0.18597713\n", + " 0.1579279 0.12927353 0.10011961 0.07057467 0.04075124 0.01076573\n", + " 0.01049004 0.01056977 0.01063642 0.01068985 0.01072978 0.01075592\n", + " 0.01076796 0.01076573 0.20696213 0.20902258 0.21067623 0.21192136\n", + " 0.21275532 0.21317532 0.1948134 0.16197729 0.1281888 0.09365018\n", + " 0.05856456 0.02313694 0.20149034 0.16749252 0.1325326 0.09680441\n", + " 0.0605079 0.02385188 0.01062602 0.01071595 0.0107859 0.01083545\n", + " 0.01086402 0.01087112 0.20613793 0.20613793 0.01086844 0.01086844\n", + " 0.19558949 0.1626169 0.12869151 0.09401511 0.05879055 0.02322296\n", + " 0.19753009 0.16421774 0.12995114 0.09493033 0.05935726 0.02343764\n", + " 0.19908829 0.16550536 0.13096617 0.09566871 0.05981412 0.02360896\n", + " 0.20026215 0.16647694 0.13173312 0.09622682 0.06015857 0.02373584\n", + " 0.20104857 0.16712825 0.13224724 0.09660024 0.06038739 0.02381698\n", + " 0.20144435 0.16745515 0.13250401 0.09678486 0.06049766 0.02385117]\n", + " [0.20255556 0.17610143 0.14895462 0.12122494 0.09302239 0.06445739\n", + " 0.03564119 0.00668594 0.20255556 0.20441077 0.20600074 0.2073248\n", + " 0.20838186 0.20917033 0.20968847 0.20993479 0.00668594 0.00675821\n", + " 0.00682246 0.00687853 0.00692617 0.0069651 0.00699507 0.00701584\n", + " 0.20993479 0.18250233 0.15437326 0.12565215 0.09644485 0.06686038\n", + " 0.03701177 0.00701584 0.19112005 0.15821703 0.12438266 0.08981934\n", + " 0.05473042 0.0193211 0.20330747 0.20540191 0.20709749 0.2083924\n", + " 0.20928375 0.20976841 0.00681796 0.00690216 0.00697398 0.00703299\n", + " 0.00707868 0.00711058 0.19806614 0.16396327 0.12891793 0.09312436\n", + " 0.05678335 0.02010461 0.2024732 0.2024732 0.00711848 0.00711848\n", + " 0.19190537 0.19387759 0.19547539 0.1966967 0.19753824 0.19799645\n", + " 0.15886347 0.1604891 0.1618095 0.16282181 0.16352163 0.16390447\n", + " 0.12488974 0.12616714 0.12720791 0.12800859 0.1285643 0.12887024\n", + " 0.09018615 0.09111203 0.09186896 0.09245358 0.0928614 0.09308815\n", + " 0.05495583 0.05552612 0.05599434 0.05635799 0.05661388 0.05675899\n", + " 0.01940412 0.01961547 0.01979108 0.01992994 0.02003078 0.02009239]\n", + " [0.95731108 0.96213474 0.96637261 0.96996192 0.9728508 0.97499833\n", + " 0.97637449 0.97696023 0.95731108 0.96222557 0.96655954 0.97024886\n", + " 0.97324032 0.97549161 0.97697135 0.97765911 0.97696023 0.98253083\n", + " 0.98742708 0.99158512 0.9949513 0.99748218 0.99914484 0.99991744\n", + " 0.97765911 0.9831486 0.98795534 0.99201677 0.99528049 0.99770436\n", + " 0.99925681 0.99991744 0.95949977 0.96502691 0.96961048 0.97315046\n", + " 0.9755715 0.9768229 0.95953833 0.96518051 0.96988569 0.97355136\n", + " 0.97609964 0.97747731 0.97946677 0.98584919 0.99115411 0.99527858\n", + " 0.99814262 0.99969022 0.98013106 0.98640824 0.99159661 0.99559552\n", + " 0.99832741 0.99973878 0.95734621 0.95734621 0.9999156 0.9999156\n", + " 0.96172609 0.96745399 0.9722283 0.9759465 0.97853069 0.9799276\n", + " 0.96733875 0.97328094 0.97822819 0.98207805 0.98475245 0.98619775\n", + " 0.97199095 0.97810522 0.98319175 0.98714806 0.9898957 0.99138039\n", + " 0.97558266 0.98182688 0.98701899 0.99105637 0.99386 0.99537491\n", + " 0.97803851 0.98437036 0.989DEBUG:root:optics_fp: sphi: [0.99996532 0.99995279 0.99993227 0.99989519 0.99981771 0.99961039\n", + " 0.998675 0.95292534 0.99996532 0.98932147 0.96137331 0.92023804\n", + " 0.87092602 0.8180019 0.76489888 0.71383104 0.95292534 0.18020339\n", + " 0.09405934 0.06358046 0.04803532 0.03861462 0.0322962 0.02776482\n", + " 0.71383104 0.65961808 0.59273329 0.51088414 0.41236963 0.296981\n", + " 0.16700975 0.02776482 0.99995592 0.99993354 0.99988921 0.99978135\n", + " 0.99939135 0.99470606 0.99763036 0.97252172 0.92531697 0.86495858\n", + " 0.79978055 0.73558862 0.36924717 0.1142084 0.06714366 0.04756397\n", + " 0.03684701 0.03008799 0.69177459 0.61711788 0.52111201 0.40034372\n", + " 0.25454379 0.08920432 0.99996121 0.99996121 0.02826205 0.02826205\n", + " 0.9973173 0.96905455 0.91664659 0.85091412 0.78139404 0.71425456\n", + " 0.99599975 0.95482931 0.88259094 0.79841512 0.71580463 0.64114939\n", + " 0.99341625 0.92852872 0.82526851 0.71824331 0.62374288 0.54523519\n", + " 0.98724084 0.87289633 0.72264131 0.59408727 0.49583709 0.42193564\n", + " 0.96591838 0.73294127 0.53284125 0.40646497 0.32525713 0.2699709\n", + " 0.78486541 0.34369459 0.20925449 0.1495441 0.11618746 0.09496005]\n", + "DEBUG:root:radec2pix: fitpx: [[4271.49999985 4155.49999985]\n", + " [4271.49999998 3863.07142855]\n", + " [4271.50000002 3570.64285716]\n", + " [4271.49999976 3278.21428558]\n", + " [4271.50000012 2985.78571434]\n", + " [4271.50000004 2693.35714287]\n", + " [4271.50000005 2400.92857144]\n", + " [4271.49999991 2108.5 ]\n", + " [4271.49999985 4155.49999985]\n", + " [3979.07142858 4155.50000001]\n", + " [3686.64285722 4155.5000001 ]\n", + " [3394.21428584 4155.50000021]\n", + " [3101.78571415 4155.49999972]\n", + " [2809.35714289 4155.50000011]\n", + " [2516.92857142 4155.49999998]\n", + " [2224.50000001 4155.50000022]\n", + " [4271.49999991 2108.5 ]\n", + " [3979.07142843 2108.5 ]\n", + " [3686.6428569 2108.49999999]\n", + " [3394.21428586 2108.5 ]\n", + " [3101.78571453 2108.50000001]\n", + " [2809.35714306 2108.50000001]\n", + " [2516.9285717 2108.50000003]\n", + " [2224.49999984 2108.49999993]\n", + " [2224.50000001 4155.50000022]\n", + " [2224.5 3863.07142862]\n", + " [2224.49999998 3570.64285684]\n", + " [2224.50000001 3278.21428585]\n", + " [222DEBUG:root:make_az_asym: xyp: [[ -0.24606 31.536148 ]\n", + " [ -0.24606 27.14971943]\n", + " [ -0.24606 22.76329086]\n", + " [ -0.24606 18.37686229]\n", + " [ -0.24606 13.99043371]\n", + " [ -0.24606 9.60400514]\n", + " [ -0.24606 5.21757658]\n", + " [ -0.24606 0.831148 ]\n", + " [ -0.24606 31.536148 ]\n", + " [ -4.63248857 31.536148 ]\n", + " [ -9.01891714 31.536148 ]\n", + " [-13.40534571 31.536148 ]\n", + " [-17.79177429 31.536148 ]\n", + " [-22.17820286 31.536148 ]\n", + " [-26.56463143 31.536148 ]\n", + " [-30.95106 31.536148 ]\n", + " [ -0.24606 0.831148 ]\n", + " [ -4.63248857 0.831148 ]\n", + " [ -9.01891714 0.831148 ]\n", + " [-13.40534571 0.831148 ]\n", + " [-17.79177429 0.831148 ]\n", + " [-22.17820285 0.831148 ]\n", + " [-26.56463143 0.831148 ]\n", + " [-30.95106 0.831148 ]\n", + " [-30.95106 31.536148 ]\n", + " [-30.95106 27.14971943]\n", + " [-30.95106 22.76329086]\n", + " [-30.95106 18.37686228]\n", + " [-30.95106 13.99043371]\n", + " [-30.95106 9.60400514]\n", + " [-30.95106 5.21757657]\n", + " [-30.95106 0.831148 ]\n", + " [ -0.26106 29.623648 ]\n", + " [ -0.26106 24.247648 ]\n", + " [ -0.26106 18.87164801]\n", + " [ -0.26106 13.495648 ]\n", + " [ -0.26106 8.119648 ]\n", + " [ -0.26106 2.743648 ]\n", + " [ -2.15856 31.521148 ]\n", + " [ -7.53456 31.521148 ]\n", + " [-12.91056 31.521148 ]\n", + " [-18.28656 31.521148 ]\n", + " [-23.66256 31.521148 ]\n", + " [-29.03856 31.521148 ]\n", + " [ -2.15856 0.846148 ]\n", + " [ -7.53456 0.846148 ]\n", + " [-12.91056 0.846148 ]\n", + " [-18.28655999 0.846148 ]\n", + " [-23.66256 0.846148 ]\n", + " [-29.03856 0.846148 ]\n", + " [-30.93606 29.623648 ]\n", + " [-30.93606 24.247648 ]\n", + " [-30.93606 18.871648 ]\n", + " [-30.93606 13.495648 ]\n", + " [-30.93606 8.119648 ]\n", + " [-30.93606 2.743648 ]\n", + " [ -0.26106 31.521148 ]\n", + " [ -0.26106 31.521148 ]\n", + " [-30.93606 0.846148 ]\n", + " [-30.93606 0.846148 ]\n", + " [ -2.15856 29.623648 ]\n", + " [ -7.53456 29.623648 ]\n", + " [-12.91056 29.623648 ]\n", + " [-18.28656 29.623648 ]\n", + " [-23.66256 29.623648 ]\n", + " [-29.03856 29.623648 ]\n", + " [ -2.15856 24.247648 ]\n", + " [ -7.53456 24.247648 DEBUG:root:optics_fp: sphi: [0.99998485 0.99997957 0.99997095 0.99995541 0.99992296 0.99983591\n", + " 0.99943739 0.97480106 0.99998485 0.9896586 0.96186222 0.92072178\n", + " 0.87129259 0.81819238 0.76489689 0.7136466 0.97480106 0.16298472\n", + " 0.08387896 0.05638146 0.04244609 0.03402888 0.028395 0.02436013\n", + " 0.7136466 0.65923088 0.59205464 0.50980542 0.41077515 0.29477725\n", + " 0.16416841 0.02436013 0.99997973 0.99996976 0.99995006 0.99990218\n", + " 0.99972814 0.99753769 0.99780732 0.97297865 0.92580811 0.86530722\n", + " 0.79990573 0.73548088 0.34572109 0.10239711 0.0597107 0.0421157\n", + " 0.0325231 0.02648658 0.69151182 0.61654981 0.52008483 0.39868458\n", + " 0.25212242 0.08602764 0.9999821 0.9999821 0.02485756 0.02485756\n", + " 0.99751784 0.96955881 0.91716312 0.8512474 0.7814679 0.71407315\n", + " 0.99629813 0.95550412 0.88315364 0.79862516 0.71563581 0.64067012\n", + " 0.99390027 0.92942982 0.82574293 0.71809906 0.6231092 0.5442854\n", + " 0.9881388 0.87396305 0.72255609 0.59311256 0.49440321 0.4203077\n", + " 0.9679916 0.73306896 0.53086315 0.40389491 0.32265115 0.26749257\n", + " 0.78768362 0.33643669 0.20329713 0.14479515 0.11226633 0.09161916]\n", + "63392 0.99372641 0.99656823 0.99810379\n", + " 0.97930774 0.98568454 0.99098486 0.99510577 0.99796733 0.99951359]]\n", + "DEBUG:root:mm_to_pix: fitpx.shape: (96, 2)\n", + "DEBUG:root:radec2pix: lng: [44.46013111 40.20250222 35.33475619 29.80239704 23.58471193 16.71933815\n", + " 9.32438225 1.60411637 44.46013111 48.6443107 53.44435482 58.92326156\n", + " 65.11319638 71.98940835 79.44437917 87.27692771 1.60411637 1.85680988\n", + " 2.20397654 2.71072869 3.51976244 5.01551732 8.70535713 30.95664732\n", + " 87.27692771 86.8388988 86.23319877 85.34102995 83.89722589 81.1670885\n", + " 74.12971046 30.95664732 42.68783954 37.06698546 30.47243013 22.85083712\n", + " 14.27406075 4.99632239 46.19982373 51.73354216 58.25770295 65.84552409\n", + " 74.44848175 83.82899465 1.73364549 2.10727457 2.68608796 3.70275867\n", + " 5.95349638 15.02389602 87.07294759 86.42732935 85.41713359 83.61383424\n", + " 79.49708007 61.65124289 44.45987707 44.45987707 31.12292419 31.12292419\n", + " 44.42569213 49.99636441 56.64851063 64.49322462 73.50720842 83.43797919\n", + " 38.75401666 44.3002287 51.21241262 59.77502346 70.12351892 82.00435394\n", + " 32.01565774 37.23971088 44.10467708 53.20553354 65.10220937 79.77773784\n", + " 24.12278796 28.56396741 34.76649258 43.75755718 57.05411516 75.86717668\n", + " 15.12820823 18.19416817 22.73745459 30.03194111 42.97126995 67.36058422\n", + " 5.30749937 6.44364165 8.19450854 11.23524 17.75019872 39.48443023]\n", + "DEBUG:root:optics_fp: xyfp: [[ 0.26283402 -31.55708986]\n", + " [ 0.26401791 -27.17066146]\n", + " [ 0.2652018 -22.78423305]\n", + " [ 0.26638569 -18.39780463]\n", + " [ 0.26756957 -14.01137623]\n", + " [ 0.26875346 -9.62494781]\n", + " [ 0.26993735 -5.2385194 ]\n", + " [ 0.27112123 -0.85209099]\n", + " [ 0.26283402 -31.55708986]\n", + " [ 4.64926244 -31.55827376]\n", + " [ 9.03569085 -31.55945764]\n", + " [ 13.42211926 -31.56064153]\n", + " [ 17.80854767 -31.56182542]\n", + " [ 22.19497608 -31.56300931]\n", + " [ 26.5814045 -31.56419319]\n", + " [ 30.96783291 -31.56537708]\n", + " [ 0.27112123 -0.85209099]\n", + " [ 4.65754965 -0.85327487]\n", + " [ 9.04397805 -0.85445876]\n", + " [ 13.43040647 -0.85564265]\n", + " [ 17.81683488 -0.85682653]\n", + " [ 22.20326329 -0.85801042]\n", + " [ 26.5896917 -0.85919431]\n", + " [ 30.97612012 -0.8603782 ]\n", + " [ 30.96783291 -31.56537708]\n", + " [ 30.9690168 -27.17894867]\n", + " [ 30.97020068 -22.79252025]\n", + " [ 30.97138456 -18.40609184]\n", + " [ 30.97256845 -14.01966343]\n", + " [ 30.97375234 -9.63323502]\n", + " [ 30.97493622 -5.24680661]\n", + " [ 30.97612012 -0.8603782 ]\n", + " [ 0.2783502 -29.64459399]\n", + " [ 0.27980117 -24.26859418]\n", + " [ 0.28125214 -18.89259438]\n", + " [ 0.28270311 -13.51659457]\n", + " [ 0.28415408 -8.14059477]\n", + " [ 0.28560505 -2.76459497]\n", + " [ 2.175338 -31.54260605]\n", + " [ 7.55133781 -31.54405702]\n", + " [ 12.92733761 -31.54550799]\n", + " [ 18.30333742 -31.54695896]\n", + " [ 23.67933722 -31.54840993]\n", + " [ 29.05533702 -31.5498609 ]\n", + " [ 2.18361712 -0.86760716]\n", + " [ 7.55961692 -0.86905814]\n", + " [ 12.93561673 -0.87050911]\n", + " [ 18.31161653 -0.87196007]\n", + " [ 23.68761633 -0.87341105]\n", + " [ 29.06361614 -0.87486202]\n", + " [ 30.95334909 -29.6528731 ]\n", + " [ 30.95480005 -24.27687329]\n", + " [ 30.95625103 -18.]\n", + " [-12.91056 24.247648 ]\n", + " [-18.28656 24.247648 ]\n", + " [-23.66256 24.247648 ]\n", + " [-29.03856 24.247648 ]\n", + " [ -2.15856 18.871648 ]\n", + " [ -7.53456 18.871648 ]\n", + " [-12.91056 18.871648 ]\n", + " [-18.28656 18.871648 ]\n", + " [-23.66256 18.871648 ]\n", + " [-29.03856 18.871648 ]\n", + " [ -2.15856 13.495648 ]\n", + " [ -7.53456 13.495648 ]\n", + " [-12.91056 13.495648 ]\n", + " [-18.28656 13.495648 ]\n", + " [-23.66256 13.495648 ]\n", + " [-29.03856 13.495648 ]\n", + " [ -2.15856 8.119648 ]\n", + " [ -7.53456 8.119648 ]\n", + " [-12.91056 8.119648 ]\n", + " [-18.28656 8.119648 ]\n", + " [-23.66256 8.119648 ]\n", + " [-29.03856 8.119648 ]\n", + " [ -2.15856 2.743648 ]\n", + " [ -7.53456 2.743648 ]\n", + " [-12.91056 2.743648 ]\n", + " [-18.28656 2.743648 ]\n", + " [-23.66256 2.743648 ]\n", + " [-29.03856 2.743648 ]]\n", + "4.50000002 2985.78571445]\n", + " [2224.5 2693.35714285]\n", + " [2224.49999995 2400.92857125]\n", + " [2224.49999984 2108.49999993]\n", + " [4270.49999995 4027.99999996]\n", + " [4270.50000001 3669.6 ]\n", + " [42121]\n", + " [ -1.58823174 -2.9372117 ]\n", + " [-32.27546357 -31.70166778]\n", + " [-32.27546357 -31.70166778]\n", + " [ -1.58742502 -1.03971187]\n", + " [ -1.58742502 -1.03971187]\n", + " [-30.37715702 -29.80497466]\n", + " [-25.00115751 -29.80726024]\n", + " [-19.625158 -29.80954582]\n", + " [-14.24915848 -29.8118314 ]\n", + " [ -8.87315897 -29.81411698]\n", + " [ -3.49715945 -29.81640256]\n", + " [-30.37487145 -24.42897515]\n", + " [-24.99887193 -24.43126073]\n", + " [-19.62287241 -24.43354631]\n", + " [-14.2468729 -24.43583188]\n", + " [ -8.87087339 -24.43811746]\n", + " [ -3.49487388 -24.44040305]\n", + " [-30.37258587 -19.05297564]\n", + " [-24.99658635 -19.05526122]\n", + " [-19.62058684 -19.05754679]\n", + " [-14.24458732 -19.05983237]\n", + " [ -8.86858781 -19.06211795]\n", + " [ -3.4925883 -19.06440353]\n", + " [-30.37030029 -13.67697612]\n", + " [-24.99430077 -13.6792617 ]\n", + " [-19.61830126 -13.68154728]\n", + " [-14.24230175 -13.68383286]\n", + " [ -8.86630223 -13.68611844]\n", + " [ -3.49030272 -13.68840401]\n", + " [-30.36801471 -8.30097661]\n", + " [-24.9920152 -8.30326219]\n", + " [-19.61601568 -8.30554776]\n", + " [-14.24001617 -8.30783335]\n", + " [ -8.86401666 -8.31011893]\n", + " [ -3.488DEBUG:root:radec2pix: camVec Shape: (3, 96)\n", + "01714 -8.3124045 ]\n", + " [-30.36572914 -2.9249771 ]\n", + " [-24.98972962 -2.92726267]\n", + " [-19.6137301 -2.92954825]\n", + " [-14.23773059 -2.93183383]\n", + " [ -8.86173108 -2.93411941]\n", + " [ -3.48573156 -2.93640499]]\n", + "DEBUG:root:radec2pix: lat: [73.24045629 74.22430856 75.14029247 75.96071497 76.65562135 77.19454225\n", + " 77.54971408 77.7004367 73.24045629 74.24542243 75.18640058 76.03561625\n", + " 76.76261911 77.33584079 77.72573436 77.90930638 77.7004367 79.29904106\n", + " 80.93014794 82.5883689 84.26818815 85.9633334 87.6639727 89.31207398\n", + " 77.90930638 79.51115144 81.14420271 82.80268356 84.48015158 86.16770212\n", + " 87.84429449 89.31207398 73.67977076 74.84367611 75.87839932 76.72967459\n", + " 77.34173684 77.66614591 73.68843996 74.88082796 75.94981974 76.8404193\n", + " 77.49482717 77.86108402 78.39292403 80.37467767 82.39987127 84.45839268\n", + " 86.53837212 88.6125356 78.60323781 80.5880931 82.61407297 84.6695731\n", + " 86.73723257 88.74545658 73.24742531 73.24742531 89.30399741 89.30399741\n", + " 74.13DEBUG:root:make_az_asym: xyp: shape: (96, 2)\n", + "90087349]\n", + " [ 30.95770199 -13.52487368]\n", + " [ 30.95915297 -8.14887388]\n", + " [ 30.96060394 -2.77287408]\n", + " [ 0.27783807 -31.54209392]\n", + " [ 0.27783807 -31.54209392]\n", + " [ 30.96111607 -0.87537415]\n", + " [ 30.96111607 -0.87537415]\n", + " [ 2.17585013 -29.64510611]\n", + " [ 7.55184994 -29.64655709]\n", + " [ 12.92784974 -29.64800806]\n", + " [ 18.30384955 -29.64945903]\n", + " [ 23.67984935 -29.65091 ]\n", + " [ 29.05584916 -29.65236097]\n", + " [ 2.1773011 -24.26910631]\n", + " [ 7.55330091 -24.27055728]\n", + " [ 12.92930071 -24.27200825]\n", + " [ 18.30530052 -24.27345922]\n", + " [ 23.68130032 -24.27491019]\n", + " [ 29.05730013 -24.27636116]\n", + " [ 2.17875207 -18.89310651]\n", + " [ 7.55475188 -18.89455748]\n", + " [ 12.93075168 -18.89600845]\n", + " [ 18.30675149 -18.89745942]\n", + " [ 23.68275129 -18.89891039]\n", + " [ 29.0587511 -18.90036136]\n", + " [ 2.18020304 -13.51710671]\n", + " [ 7.55620285 -13.51855767]\n", + " [ 12.93220265 -13.52000864]\n", + " [ 18.30820245 -13.52145961]\n", + " [ 23.68420226 -13.52291058]\n", + " [ 29.06020207 -13.52436156]\n", + " [ 2.18165401 -8.1411069 ]\n", + " [ 7.55765382 70.4999998 3311.19999989]\n", + " [4270.50000006 2952.80000003]\n", + " [4270.50000002 2594.40000001]\n", + " [4270.49999985 2235.99999999]\n", + " [4144.00000023 4154.50000023]\n", + " [3785.60000021 4154.50000026]\n", + " [3427.20000017 4154.50000028]\n", + " [3068.79999989 4154.49999975]\n", + " [2710.40000004 4154.50000013]\n", + " [2351.99999998 4154.49999985]\n", + " [4143.99999992 2109.5 ]\n", + " [3785.59999985 2109.5 ]\n", + " [3427.19999998 2109.5 ]\n", + " [3068.80000001 2109.5 ]\n", + " [2710.40000021 2109.50000002]\n", + " [2352.00000017 2109.50000003]\n", + " [2225.5 4027.99999993]\n", + " [2225.49999998 3669.59999975]\n", + " [2225.50000001 3311.20000015]\n", + " [2225.5 2952.8 ]\n", + " [2225.49999998 2594.39999987]\n", + " [2225.50000008 2236.00000013]\n", + " [4270.50000018 4154.50000018]\n", + " [4270.50000018 4154.50000018]\n", + " [2225.49999981 2109.49999992]\n", + " [2225.49999981 2109.49999992]\n", + " [4143.99999987 4027.99999987]\n", + " [3785.59999992 4027.9999999 ]\n", + " [3427.2000001 4028.00000015]\n", + " [3068.80000011 4028.00000023]\n", + " [2710.39999995 4027.99999982]\n", + " [2351.99999998 4027.99999985]\n", + " [4144.00000DEBUG:root:radec2pix: xyfp: [[ 0.236018 -31.56946754]\n", + " [ 0.23651287 -27.18303899]\n", + " [ 0.23700774 -22.79661046]\n", + " [ 0.23750261 -18.41018192]\n", + " [ 0.23799748 -14.02375336]\n", + " [ 0.23849235 -9.63732482]\n", + " [ 0.23898721 -5.25089628]\n", + " [ 0.23948208 -0.86446773]\n", + " [ 0.236018 -31.56946754]\n", + " [ 4.62244655 -31.56996241]\n", + " [ 9.00887509 -31.57045728]\n", + " [ 13.39530363 -31.57095214]\n", + " [ 17.78173218 -31.57144701]\n", + " [ 22.16816072 -31.57194188]\n", + " [ 26.55458927 -31.57243675]\n", + " [ 30.94101781 -31.57293162]\n", + " [ 0.23948208 -0.86446773]\n", + " [ 4.62591062 -0.8649626 ]\n", + " [ 9.01233917 -0.86545747]\n", + " [ 13.39876771 -0.86595234]\n", + " [ 17.78519626 -0.86644721]\n", + " [ 22.1716248 -0.86694208]\n", + " [ 26.55805334 -0.86743695]\n", + " [ 30.94448189 -0.86793181]\n", + " [ 30.94101781 -31.57293162]\n", + " [ 30.94151268 -27.18650307]\n", + " [ 30.94200754 -22.80007453]\n", + " [ 30.94250242 -18.41364599]\n", + " [ 30.94299728 -14.02721745]\n", + " [ 30.94349215 -9.6407889 ]\n", + " [ 30.94398702 -5.25436036]\n", + " [ 30.94448189 -0.86793181]\n", + " [ 0.25123377 -29.65696924]\n", + " [ 0.25184028 DEBUG:root:make_az_asym: xyp: shape: (96, 2)\n", + "-24.28096928]\n", + " [ 0.25244679 -18.90496931]\n", + " [ 0.2530533 -13.52896935]\n", + " [ 0.25365981 -8.15296938]\n", + " [ 0.25426632 -2.77696942]\n", + " [ 2.14851968 -31.5546833 ]\n", + " [ 7.52451965 -31.55528981]\n", + " [ 12.90051962 -31.55589633]\n", + " [ 18.27651958 -31.55650284]\n", + " [ 23.65251954 -31.55710934]\n", + " [ 29.02851952 -31.55771586]\n", + " [ 2.15198038 -0.8796835 ]\n", + " [ 7.52798035 -0.88029001]\n", + " [ 12.90398031 -0.88089652]\n", + " [ 18.27998027 -0.88150303]\n", + " [ 23.65598025 -0.88210954]\n", + " [ 29.03198021 -0.88271605]\n", + " [ 30.92623357 -29.66042994]\n", + " [ 30.92684009 -24.28442998]\n", + " [ 30.9274466 -18.90843001]\n", + " [ 30.9280531 -13.53243004]\n", + " [ 30.92865961 -8.15643008]\n", + " [ 30.92926612 -2.78043011]\n", + " [ 0.2510197 -31.55446923]\n", + " [ 0.2510197 -31.55446923]\n", + " [ 30.9294802 -0.88293012]\n", + " [ 30.9294802 -0.88293012]\n", + " [ 2.14873376 -29.65718332]\n", + " [ 7.52473372 -29.65778983]\n", + " [ 12.90073369 -29.65839633]\n", + " [ 18.27673365 -29.65900285]\n", + " [ 23.65273362 -29.65960936]\n", + " [ 29.02873359 -29.66021587]\n", + " [ 2.149340DEBUG:root:optics_fp: xyfp: [[ 0.173161 -31.45819714]\n", + " [ 0.17304708 -27.07176857]\n", + " [ 0.17293316 -22.68534 ]\n", + " [ 0.17281925 -18.29891143]\n", + " [ 0.17270533 -13.91248287]\n", + " [ 0.17259141 -9.52605429]\n", + " [ 0.17247749 -5.13962573]\n", + " [ 0.17236358 -0.75319715]\n", + " [ 0.173161 -31.45819714]\n", + " [ 4.55958957 -31.45808322]\n", + " [ 8.94601814 -31.45796931]\n", + " [ 13.33244671 -31.45785538]\n", + " [ 17.71887528 -31.45774147]\n", + " [ 22.10530385 -31.45762756]\n", + " [ 26.49173242 -31.45751363]\n", + " [ 30.87816099 -31.45739971]\n", + " [ 0.17236358 -0.75319715]\n", + " [ 4.55879215 -0.75308323]\n", + " [ 8.94522072 -0.75296932]\n", + " [ 13.33164929 -0.7528554 ]\n", + " [ 17.71807786 -0.75274148]\n", + " [ 22.10450643 -0.75262756]\n", + " [ 26.490935 -0.75251364]\n", + " [ 30.87736356 -0.75239973]\n", + " [ 30.87816099 -31.45739971]\n", + " [ 30.87804707 -27.07097114]\n", + " [ 30.87793315 -22.68454257]\n", + " [ 30.87781924 -18.29811401]\n", + " [ 30.87770532 -13.91168544]\n", + " [ 30.87759141 -9.52525687]\n", + " [ 30.87747749 -5.1388283 ]\n", + " [ 30.87736356 -0.75239973]\n", + " [ 0.18811133 -29.54569675]\n", + " [ 0.18797171 -24.16969676]\n", + " [ 0.1878321 -18.79369675]\n", + " [ 0.18769248 -13.41769676]\n", + " [ 0.18755286 -8.04169676]\n", + " [ 0.18741324 -2.66569676]\n", + " [ 2.08566061 -31.44314748]\n", + " [ 7.46166061 -31.44300785]\n", + " [ 12.83766061 -31.44286824]\n", + " [ 18.2136606 -31.44272862]\n", + " [ 23.5896606 -31.442589 ]\n", + " [ 28.9656606 -31.44244938]\n", + " [ 2.08486397 -0.76814748]\n", + " [ 7.46086396 -0.76800786]\n", + " [ 12.83686396 -0.76786825]\n", + " [ 18.21286396 -0.76772863]\n", + " [ 23.58886395 -0.76758901]\n", + " [ 28.96486395 -0.7674494 ]\n", + " [ 30.86311132 -29.54490011]\n", + " [ 30.86297171 -24.16890011]\n", + " [ 30.86283209 -18.79290011]\n", + " [ 30.86269247 -13.41690011]\n", + " [ 30.86255285 -8.04090011]\n", + " [ 30.86241323 -2.66490012]\n", + " [ 0.18816061 -31.44319675]\n", + " [ 0.18816061 -31.44319675]\n", + " [ 30.86236396 -0.76740012]\n", + " [ 30.86236396 -0.76740012]\n", + " [ 2.08561133 -29.54564748]\n", + " [ 7.46161133 -29.54550785]\n", + " [ 12.83761133 -29.54536824]\n", + " [ 18.21361133 -29.54522862]\n", + " [ 23.58961132 -29.545089 ]\n", + " [ 28.96561132 -29.54494938]\n", + " [ 2.08547171 -24.16964747]\n", + " [ 7.46147171 -24.16950786]\n", + " [ 12.83747171 -24.16936824]\n", + " [ 18.21347171 -24.16922862]\n", + " [ 23.58947171 -24.16908901]\n", + " [ 28.9654717 -24.16894939]\n", + " [ 2.0853321 -18.79364747]\n", + " [ 7.46133209 -18.79350785]\n", + " [ 12.83733209 -18.79336824]\n", + " [ 18.21333209 -18.79322862]\n", + " [ 23.58933209 -18.79308901]\n", + " [ 28.96533209 -18.79294939]\n", + " [ 2.08519248 -13.41764748]\n", + " [ 7.46119248 -13.41750786]\n", + " [ 12.83719247 -13.41736824]\n", + " [ 18.21319248 -13.41722863]\n", + " [ 23.58919247 -13.41708901]\n", + " [ 28.96519247 -13.41694939]\n", + " [ 2.08505286 -8.04164748]\n", + " [ 7.46105286 -8.04150786]\n", + " [ 12.83705286 -8.04136825]\n", + " [ 18.21305286 -8.04122863]\n", + " [ 23.58905286 -8.04108901]\n", + " [ 28.96505285 -8.04094939]\n", + " [ 2.08491324 -2.66564748]\n", + " [ 7.46091324 -2.66550786]\n", + " [ 12.83691324 -2.66536825]\n", + " [ 18.21291324 -2.66522863]\n", + " [ 23.58891323 -2.66508901]\n", + " [ 28.96491324 -2.66494939]]\n", + "27 -24.28118335]\n", + " [ 7.52534023 -24.28178986]\n", + " [ 12.9013402 -24.28239637]\n", + " [ 18.27734016 -24.28300288]\n", + " [ 23.65334013 -24.28360939]\n", + " [ 29.02934009 -24.2842159 ]\n", + " [ 2.14994678 -18.90518338]\n", + " [ 7.52594674 -18.90578989]\n", + " [ 12.90194671 -18.9063964 ]\n", + " [ 18.27794667 -18.90700292]\n", + " [ 23.65394664 -18.90760943]\n", + " [ 29.0299466 -18.90821593]\n", + " [ 2.15055329 -13.52918342]\n", + " [ 7.52655325 -13.52978993]\n", + " [ 12.90255322 -13.53039644]\n", + " [ 18.27855318 -13.53100295]\n", + " [ 23.65455315 -13.53160946]\n", + " [ 29.03055312 -13.53221597]\n", + " [ 2.1511598 -8.15318346]\n", + " [ 7.52715976 -8.15378996]\n", + " [ 12.90315973 -8.15439647]\n", + " [ 18.27915969 -8.15500298]\n", + " [ 23.65515966 -8.15560949]\n", + " [ 29.03115962 -8.156216 ]\n", + " [ 2.1517663 -2.77718348]\n", + " [ 7.52776627 -2.77779 ]\n", + " [ 12.90376624 -2.77839651]\n", + " [ 18.2797662 -2.77900302]\n", + " [ 23.65576617 -2.77960953]\n", + " [ 29.03176613 -2.78021604]]\n", + "-8.14255787]\n", + " [ 12.93365363 -8.14400884]\n", + " [ 18.30965343 -8.14545981]\n", + " [ 23.68565323 -8.14691078]\n", + " [ 29.06165303 -8.14836175]\n", + " [ 2.18310498 -2.76510709]\n", + " [ 7.55910479 -2.76655806]\n", + " [ 12.93510459 -2.76800904]\n", + " [ 18.31110439 -2.76946001]\n", + " [ 23.68710421 -2.77091098]\n", + " [ 29.063104 -2.77236195]]\n", + "DEBUG:root:radec2pix: xyDEBUG:root:optics_fp: xyfp shape: (96, 2)\n", + "DEBUG:root:cartToSphere: vec: [[0.20622014 0.20255556 0.95731108]\n", + " [0.20805053 0.17610143 0.96213474]\n", + " [0.20961035 0.14895462 0.96637261]\n", + " [0.210899 0.12122494 0.96996192]\n", + " [0.21191543 0.09302239 0.9728508 ]\n", + " [0.21265818 0.06445739 0.97499833]\n", + " [0.21312568 0.03564119 0.97637449]\n", + " [0.21331667 0.00668594 0.97696023]\n", + " [0.20622014 0.20255556 0.95731108]\n", + " [0.17982824 0.20441077 0.96222557]\n", + " [0.1527297 0.20600074 0.96655954]\n", + " [0.12503427 0.2073248 0.97024886]\n", + " [0.09685185 0.20838186 0.97324032]\n", + " [0.06829276 0.20917033 0.97549161]\n", + " [0.03946812 0.20968847 0.97697135]\n", + " [0.01049004 0.20993479 0.97765911]\n", + " [0.21331667 0.00668594 0.97696023]\n", + " [0.18597713 0.00675821 0.98253083]\n", + " [0.1579279 0.00682246 0.98742708]\n", + " [0.12927353 0.00687853 0.99158512]\n", + " [0.10011961 0.00692617 0.9949513 ]\n", + " [0.07057467 0.0069651 0.99748218]\n", + " [0.04075124 0.00699507 0.99914484]\n", + " [0.01076573 0.00701584 0.99991744]\n", + " [0.01049004 0.20993479 0.97765911]\n", + " [0.01056977 0.18250233 0.98DEBUG:root:optics_fp: xyfp shape: (96, 2)\n", + "31486 ]\n", + " [0.01063642 0.15437326 0.98795534]\n", + " [0.01068985 0.12565215 0.99201677]\n", + " [0.01072978 0.09644485 0.99528049]\n", + " [0.01075592 0.06686038 0.99770436]\n", + " [0.01076796 0.03701177 0.99925681]\n", + " [0.01076573 0.00701584 0.99991744]\n", + " [0.20696213 0.19112005 0.95949977]\n", + " [0.20902258 0.15821703 0.96502691]\n", + " [0.21067623 0.12438266 0.96961048]\n", + " [0.21192136 0.08981934 0.97315046]\n", + " [0.21275532 0.05473042 0.9755715 ]\n", + " [0.21317532 0.0193211 0.9768229 ]\n", + " [0.1948134 0.20330747 0.95953833]\n", + " [0.16197729 0.20540191 0.96518051]\n", + " [0.1281888 0.20709749 0.96988569]\n", + " [0.09365018 0.2083924 0.97355136]\n", + " [0.05856456 0.20928375 0.97609964]\n", + " [0.02313694 0.20976841 0.97747731]\n", + " [0.20149034 0.00681796 0.97946677]\n", + " [0.16749252 0.00690216 0.98584919]\n", + " [0.1325326 0.00697398 0.99115411]\n", + " [0.09680441 0.00703299 0.99527858]\n", + " [0.0605079 0.00707868 0.99814262]\n", + " [0.02385188 0.00711058 0.99969022]\n", + " [0.01062602 0.19806614 0.98013106]\n", + " [0.01071595 0.16396327 0.98640824]\n", + " [0.0107859 0.12891793 0.99159661]\n", + " [0.01083545 0.09312436 0.99559552]\n", + " [0.01086402 0.05678335 0.99832741]\n", + " [0.01087112 0.02010461 0.99973878]\n", + " [0.20613793 0.2024732 0.95734621]\n", + " [0.20613793 0.2024732 0.95734621]\n", + " [0.01086844 0.00711848 0.9999156 ]\n", + " [0.01086844 0.00711848 0.9999156 ]\n", + " [0.19558949 0.19190537 0.96172609]\n", + " [0.1626169 0.19387759 0.96745399]\n", + " [0.12869151 0.19547539 0.9722283 ]\n", + " [0.09401511 0.1966967 0.9759465 ]\n", + " [0.05879055 0.19753824 0.97853069]\n", + " [0.02322296 0.19799645 0.9799276 ]\n", + " [0.19753009 0.15886347 0.96733875]\n", + " [0.16421774 0.1604891 0.97328094]\n", + " [0.12995114 0.1618095 0.97822819]\n", + " [0.09493033 0.16282181 0.98207805]\n", + " [0.05935726 0.16352163 0.98475245]\n", + " [0.02343764 0.16390447 0.98619775]\n", + " [0.19908829 0.12488974 0.97199095]\n", + " [0.16550536 0.12616714 0.97810522]\n", + " [0.13096617 0.12720791 0.98319175]\n", + " [0.09566871 0.12800859 0.98714806]\n", + " [0.05981412 0.1285643 0.9898957 ]\n", + " [0.02360896 0.12887024 0.99138039]\n", + " [0.20026215 0.09018615 0.97558266]\n", + " [0.16647694 0.09111203 0.98182688]\n", + " [0.13DEBUG:root:radec2pix: xyfp: [[ -0.24606 31.536148 ]\n", + " [ -0.24606 27.14971943]\n", + " [ -0.24606 22.76329086]\n", + " [ -0.24606 18.37686229]\n", + " [ -0.24606 13.99043371]\n", + " [ -0.24606 9.60400514]\n", + " [ -0.24606 5.21757658]\n", + " [ -0.24606 0.831148 ]\n", + " [ -0.24606 31.536148 ]\n", + " [ -4.63248857 31.536148 ]\n", + " [ -9.01891714 31.536148 ]\n", + " [-13.40534571 31.536148 ]\n", + " [-17.79177429 31.536148 ]\n", + " [-22.17820286 31.536148 ]\n", + " [-26.56463143 31.536148 ]\n", + " [-30.95106 31.536148 ]\n", + " [ -0.24606 0.831148 ]\n", + " [ -4.63248857 0.831148 ]\n", + " [ -9.01891714 0.831148 ]\n", + " [-13.40534571 0.831148 ]\n", + " [-17.79177429 0.831148 ]\n", + " [-22.17820285 0.831148 ]\n", + " [-26.56463143 0.831148 ]\n", + " [-30.95106 0.831148 ]\n", + " [-30.95106 31.536148 ]\n", + " [-30.95106 27.14971943]\n", + " [-30.95106 22.76329086]\n", + " [-30.95106 18.37686228]\n", + " [-30.95106 13.99043371]\n", + " [-30.95106 9.60400514]\n", + " [-30.95106 5.21757657]\n", + " [-30.95106 0.831148 ]\n", + " [ -0.26106 29.623648 ]\n", + " [ -0.26106 018 3669.60000014]\n", + " [3785.5999999 3669.59999991]\n", + " [3427.19999994 3669.59999993]\n", + " [3068.79999994 3669.5999999 ]\n", + " [2710.39999997 3669.59999991]\n", + " [2351.99999997 3669.5999998 ]\n", + " [4143.99999973 3311.19999984]\n", + " [3785.60000019 3311.20000014]\n", + " [3427.1999998 3311.19999981]\n", + " [3068.79999976 3311.19999969]\n", + " [2710.39999985 3311.19999967]\n", + " [2352.00000003 3311.20000016]\n", + " [4144.00000026 2952.80000011]\n", + " [3785.6000001 2952.80000005]\n", + " [3427.20000009 2952.80000006]\n", + " [3068.8000003 2952.80000028]\n", + " [2710.39999986 2952.79999979]\n", + " [2352.00000001 2952.80000004]\n", + " [4143.99999994 2594.39999998]\n", + " [3785.6 2594.4 ]\n", + " [3427.19999999 2594.39999999]\n", + " [3068.79999999 2594.39999999]\n", + " [2710.40000015 2594.40000014]\n", + " [2351.99999993 2594.39999983]\n", + " [4143.99999995 2236. ]\n", + " [3785.59999975 2235.99999997]\n", + " [3427.19999971 2235.99999996]\n", + " [3068.80000003 2236.00000001]\n", + " [2710.39999999 2236. ]\n", + " [2352.00000022 2236.00000016]]\n", + " 24.247648 ]\n", + " [ -0.26106 18.87164801]\n", + " [ -0.26106 13.495648 ]\n", + " [ -0.26106 8.119648 ]\n", + " [ -0.26106 2.743648 ]\n", + " [ -2.15856 31.521148 ]\n", + " [ -7.53456 31.521148 ]\n", + " [-12.91056 31.521148 ]\n", + " [-18.28656 31.521148 ]\n", + " [-23.66256 31.521148 ]\n", + " [-29.03856 31.521148 ]\n", + " [ -2.15856 0.846148 ]\n", + " [ -7.53456 0.846148 ]\n", + " [-12.91056 0.846148 ]\n", + " [-18.28655999 0.846148 ]\n", + " [-23.66256 0.846148 ]\n", + " [-29.03856 0.846148 ]\n", + " [-30.93606 29.623648 ]\n", + " [-30.93606 24.247648 ]\n", + " [-30.93606 18.871648 ]\n", + " [-30.93606 13.495648 ]\n", + " [-30.93606 8.119648 ]\n", + " [-30.93606 2.743648 ]\n", + " [ -0.26106 31.521148 ]\n", + " [ -0.26106 31.521148 ]\n", + " [-30.93606 0.846148 ]\n", + " [-30.93606 0.846148 ]\n", + " [ -2.15856 29.623648 ]\n", + " [ -7.53456 29.623648 ]\n", + " [-12.91056 29.623648 ]\n", + " [-18.28656 29.623648 ]\n", + " [-23.66256 29.623648 ]\n", + " [-29.03856 29.623648 ]\n", + " [ -2.15856 24.247648 ]\n", + " [ -7.53456 24.247648 ]\n", + " [-12.91056 24.247648 ]\n", + " [-18.28656 24.247648 ]\n", + " [-23.66256 24.2476967578 75.38730878 76.51234476 77.4557749 78.15346667 78.54590996\n", + " 75.35848529 76.77078371 78.07006468 79.18567192 80.03121451 80.5165253\n", + " 76.44822453 78.03255968 79.52764934 80.85445453 81.89945108 82.52079347\n", + " 77.3504272 79.10147139 80.80332064 82.38074874 83.7000473 84.53866109\n", + " 78.00303059 79.89280789 81.78299446 83.6236493 85.30285158 86.52492363\n", + " 78.35049019 80.32186123 82.33135444 84.36297386 86.3856321 88.26407642]\n", + "173312 0.09186896 0.98701899]\n", + " [0.09622682 0.09245358 0.99105637]\n", + " [0.06015857 0.0928614 0.99386 ]\n", + " [0.02373584 0.09308815 0.99537491]\n", + " [0.20104857 0.05495583 0.97803851]\n", + " [0.16712825 0.05552612 0.98437036]\n", + " [0.13224724 0.05599434 0.98963392]\n", + " [0.09660024 0.05635799 0.99372641]\n", + " [0.06038739 0.05661388 0.99656823]\n", + " [0.02381698 0.05675899 0.99810379]\n", + " [0.20144435 0.01940412 0.97930774]\n", + " [0.16745515 0.01961547 0.98568454]\n", + " [0.13250401 0.01979108 0.99098486]\n", + " [0.09678486 0.01992994 0.99510577]\n", + " [0.06049766 0.02003078 0.99796733]\n", + " [0.02385117 0.02009239 0.99951359]]\n", + "DEBUG:root:fitpix2pix: ccdpx: shape: (96, 2)\n", + "fp: [[-32.29046994 -31.71666141]\n", + " [-32.28860507 -27.33023323]\n", + " [-32.2867402 -22.94380505]\n", + " [-32.28487534 -18.55737688]\n", + " [-32.28301047 -14.1709487 ]\n", + " [-32.2811456 -9.78452053]\n", + " [-32.27928073 -5.39809235]\n", + " [-32.27741587 -1.01166418]\n", + " [-32.29046994 -31.71666141]\n", + " [-27.90404176 -31.71852627]\n", + " [-23.51761359 -31.72039114]\n", + " [-19.13118541 -31.722256 ]\n", + " [-14.74475724 -31.72412087]\n", + " [-10.35832906 -31.72598574]\n", + " [ -5.97190089 -31.72785061]\n", + " [ -1.58547272 -31.72971547]\n", + " [-32.27741587 -1.01166418]\n", + " [-27.8909877 -1.01352905]\n", + " [-23.50455952 -1.01539391]\n", + " [-19.11813134 -1.01725878]\n", + " [-14.73170317 -1.01912365]\n", + " [-10.345275 -1.02098851]\n", + " [ -5.95884682 -1.02285338]\n", + " [ -1.57241864 -1.02471825]\n", + " [ -1.58547272 -31.72971547]\n", + " [ -1.58360785 -27.3432873 ]\n", + " [ -1.58174298 -22.95685912]\n", + " [ -1.57987811 -18.57043094]\n", + " [ -1.57801325 -14.18400278]\n", + " [ -1.57614838 -9.7975746 ]\n", + " [ -1.57428351 -5.41114642]\n", + " [ -1.57241864 -1.02471825]\n", + " [-32.27465685 -29.80416795]\n", + " [-32.27237127 -24.42816844]\n", + " [-32.2700857 -19.05216893]\n", + " [-32.26780012 -13.67616941]\n", + " [-32.26551454 -8.3001699 ]\n", + " [-32.26322896 -2.92417038]\n", + " [-30.37796373 -31.70247449]\n", + " [-25.00196422 -31.70476008]\n", + " [-19.62596471 -31.70704565]\n", + " [-14.24996519 -31.70933123]\n", + " [ -8.87396568 -31.71161681]\n", + " [ -3.49796617 -31.71390239]\n", + " [-30.36492242 -1.02747727]\n", + " [-24.98892291 -1.02976285]\n", + " [-19.61292339 -1.03204842]\n", + " [-14.23692388 -1.034334 ]\n", + " [ -8.86092437 -1.03661958]\n", + " [ -3.48492485 -1.03890516]\n", + " [ -1.59965962 -29.81720927]\n", + " [ -1.59737405 -24.44120975]\n", + " [ -1.59508847 -19.06521024]\n", + " [ -1.59280289 -13.68921073]\n", + " [ -1.59051731 -8.31321121]\n", + " [ -1.58823174 -2.9372117 ]\n", + " [-32.27546357 -31.70166778]\n", + " [-32.27546357 -31.70166778]\n", + " [ -1.58742502 -1.03971187]\n", + " [ -1.58742502 -1.03971187]\n", + " [-30.37715702 -29.80497466]\n", + " [-25.00115751 -29.80726024]\n", + " [-19.625158 -29.80954582]\n", + " [-14.24915848 -29.8118314 ]\n", + " [ -8.87315897 -29.81411698]\n", + " [ -3.49715945 -29.81640256]\n", + " [-30.37487145 -24.42897515]\n", + " [-24DEBUG:root:make_az_asym: xyp: [[ 0.173161 -31.45819714]\n", + " [ 0.17304708 -27.07176857]\n", + " [ 0.17293316 -22.68534 ]\n", + " [ 0.17281925 -18.29891143]\n", + " [ 0.17270533 -13.91248287]\n", + " [ 0.17259141 -9.52605429]\n", + " [ 0.17247749 -5.13962573]\n", + " [ 0.17236358 -0.75319715]\n", + " [ 0.173161 -31.45819714]\n", + " [ 4.55958957 -31.45808322]\n", + " [ 8.94601814 -31.45796931]\n", + " [ 13.33244671 -31.45785538]\n", + " [ 17.71887528 -31.45774147]\n", + " [ 22.10530385 -31.45762756]\n", + " [ 26.49173242 -31.45751363]\n", + " [ 30.87816099 -31.45739971]\n", + " [ 0.17236358 -0.75319715]\n", + " [ 4.55879215 -0.75308323]\n", + " [ 8.94522072 -0.75296932]\n", + " [ 13.33164929 -0.7528554 ]\n", + " [ 17.71807786 -0.75274148]\n", + " [ 22.10450643 -0.75262756]\n", + " [ 26.490935 -0.75251364]\n", + " [ 30.87736356 -0.75239973]\n", + " [ 30.87816099 -31.45739971]\n", + " [ 30.87804707 -27.07097114]\n", + " [ 30.87793315 -22.68454257]\n", + " [ 30.87781924 -18.29811401]\n", + " [ 30.87770532 -13.91168544]\n", + " [ 30.87759141 -9.52525687]\n", + " [ 30.87747749 -5.1388283 ]\n", + " [ 30.87736356 -0.75239973]\n", + " [ 0.18811133 -29.54569675]\n", + " [ 0.1879717DEBUG:root:radec2pix: lat: [77.94367134 79.54902489 81.18632945 82.85028944 84.53583766 86.23790238\n", + " 87.95095267 89.65971994 77.94367134 77.82164346 77.48801235 76.9631292\n", + " 76.27533882 75.45615131 74.53651433 73.54460591 89.65971994 88.15347287\n", + " 86.45230283 84.75294209 83.0672058 81.4014907 79.76129308 78.15206149\n", + " 73.54460591 74.55768324 75.50238779 76.35047091 77.07044991 77.62962616\n", + " 77.99774795 78.15206149 78.63928322 80.62896884 82.66134588 84.72698979\n", + " 86.81649257 88.91826945 77.92273249 77.62880737 77.03600995 76.19348076\n", + " 75.15884594 73.98801233 89.08995442 87.02817045 84.94370871 82.87794501\n", + " 80.84312687 78.84936896 73.99670581 75.19609757 76.26512012 77.14708483\n", + " 77.78216783 78.11748405 77.94905666 77.94905666 78.15735777 78.15735777\n", + " 78.61100015 78.29575797 77.66281562 76.76884154 75.67835331 74.45201735\n", + " 80.5936009 80.20229517 79.43086524 78.36733491 77.10116027 75.70726987\n", + " 82.61510476 82.11071991 81.1484309 79.87243611 78.40512567 76.83322353\n", + " 84.66162432 83.97115888 82.73646392 81.20037729 79.51583908 77.76861975\n", + " 86.70802953 85.66590929 84.05006409 82.22924953 80.34192865 78.44668306\n", + " 88.6299785 86.85760815 84.84280506 82.80723116 80.78933117 78.80649174]\n", + "48 ]\n", + " [-29.03856 24.247648 ]\n", + " [ -2.15856 18.871648 ]\n", + " [ -7.53456 18.871648 ]\n", + " [-12.91056 18.871648 ]\n", + " [-18.28656 18.871648 ]\n", + " [-23.66256 18.871648 ]\n", + " [-29.03856 18.871648 ]\n", + " [ -2.15856 13.495648 ]\n", + " [ -7.53456 13.495648 ]\n", + " [-12.91056 13.495648 ]\n", + " [-18.28656 13.495648 ]\n", + " [-23.66256 13.495648 ]\n", + " [-29.03856 13.495648 ]\n", + " [ -2.15856 8.119648 ]\n", + " [ -7.53456 8.119648 ]\n", + " [-12.91056 8.119648 ]\n", + " [-18.28656 8.119648 ]\n", + " [-23.66256 8.119648 ]\n", + " [-29.03856 8.119648 ]\n", + " [ -2.15856 2.743648 ]\n", + " [ -7.53456 2.743648 ]\n", + " [-12.91056 2.743648 ]\n", + " [-18.28656 2.743648 ]\n", + " [-23.66256 2.743648 ]\n", + " [-29.03856 2.743648 ]]\n", + "DEBUG:root:fitpix2pix: visCut: True\n", + "1 -24.16969676]\n", + " [ 0.1878321 -18.79369675]\n", + " [ 0.18769248 -13.41769676]\n", + " [ 0.18755286 -8.04169676]\n", + " [ 0.18741324 -2.66569676]\n", + " [ 2.08566061 -31.44314748]\n", + " [ 7.46166061 -31.44300785]\n", + " [ 12.83766061 -31.44286824]\n", + " [ 18.2136606 -31.44272862]\n", + " [ 23.5896606 -31.442589 ]\n", + " [ 28.9656606 -31.44244938]\n", + " [ 2.08486397 -0.76814748]\n", + " [ 7.46086396 -0.76800786]\n", + " [ 12.83686396 -0.76786825]\n", + " [ 18.21286396 -0.76772863]\n", + " [ 23.58886395 -0.76758901]\n", + " [ 28.96486395 -0.7674494 ]\n", + " [ 30.86311132 -29.54490011]\n", + " [ 30.86297171 -24.16890011]\n", + " [ 30.86283209 -18.79290011]\n", + " [ 30.86269247 -13.41690011]\n", + " [ 30.86255285 -8.04090011]\n", + " [ 30.86241323 -2.66490012]\n", + " [ 0.18816061 -31.44319675]\n", + " [ 0.18816061 -31.44319675]\n", + " [ 30.86236396 -0.76740012]\n", + " [ 30.86236396 -0.76740012]\n", + " [ 2.08561133 -29.54564748]\n", + " [ 7.46161133 -29.54550785]\n", + " [ 12.83761133 -29.54536824]\n", + " [ 18.21361133 -29.54522862]\n", + " [ 23.58961132 -29.545089 ]\n", + " [ 28.96561132 -29.54494938]\n", + " [ 2.08547171 -24.16964747]\n", + " [ 7.46147171 -24.16950786]\n", + " [ 12.83747171 -24.16936824]\n", + " [ 18.21347171 -24.16922862]\n", + " [ 23.58947171 -24.16908901]\n", + " [ 28.9654717 -24.16894939]\n", + " [ 2.0853321 -18.79364747]\n", + " [ 7.46133209 -18.79350785]\n", + " [ 12.83733209 -18.79336824]\n", + " [ 18.21333209 -18.79322862]\n", + " [ 23.58933209 -18.79308901]\n", + " [ 28.96533209 -18.79294939]\n", + " [ 2.08519248 -13.41764748]\n", + " [ 7.46119248 -13.41750786]\n", + " [ 12.83719247 -13.41736824]\n", + " [ 18.21319248 -13.41722863]\n", + " [ 23.58919247 -13.41708901]\n", + " [ 28.96519247 -13.41694939]\n", + " [ 2.08505286 -8.04164748]\n", + " [ 7.46105286 -8.04150786]\n", + " [ 12.83705286 -8.04136825]\n", + " [ 18.21305286 -8.04122863]\n", + " [ 23.58905286 -8.04108901]\n", + " [ 28.96505285 -8.04094939]\n", + " [ 2.08491324 -2.66564748]\n", + " [ 7.46091324 -2.66550786]\n", + " [ 12.83691324 -2.66536825]\n", + " [ 18.21291324 -2.66522863]\n", + " [ 23.58891323 -2.66508901]\n", + " [ 28.96491324 -2.66494939]]\n", + "DEBUG:root:radec2pix: xyfp Shape: (96, 2)\n", + "DEBUG:root:radec2pix: curVec: [[ 0.36629409 -0.53000151 -0.76480523]\n", + " [ 0.36530131 -0.50783757 -0.78016406]\n", + " [ 0.36386639 -0.48486496 -0.79530323]\n", + " [ 0.36199532 -0.4611581 -0.81011888]\n", + " [ 0.35969461 -0.43679553 -0.82451771]\n", + " [ 0.3569716 -0.41186048 -0.8384165 ]\n", + " [ 0.35383506 -0.38644131 -0.85174167]\n", + " [ 0.35029573 -0.36063155 -0.86442917]\n", + " [ 0.36629409 -0.53000151 -0.76480523]\n", + " [ 0.34133229 -0.5383683 -0.77048805]\n", + " [ 0.31555762 -0.54638866 -0.77581107]\n", + " [ 0.28907003 -0.55401704 -0.78070714]\n", + " [ 0.26197017 -0.56121159 -0.78511985]\n", + " [ 0.2343602 -0.56793418 -0.78900321]\n", + " [ 0.20634456 -0.57415068 -0.79232122]\n", + " [ 0.17803024 -0.57983143 -0.79504764]\n", + " [ 0.35029573 -0.36063155 -0.86442917]\n", + " [ 0.32427124 -0.36782762 -0.87152224]\n", + " [ 0.29745353 -0.37487232 -0.87806158]\n", + " [ 0.26993554 -0.38172121 -0.88398175]\n", + " [ 0.24181292 -0.38833361 -0.88922636]\n", + " [ 0.21318603 -0.39467235 -0.89374798]\n", + " [ 0.18416088 -0.40070375 -0.89750837]\n", + " [ 0.15484894 -0.40639796 -0.90047904]\n", + " [ 0.17803024 -0.57983143 -0.79504764]\n", + " [ 0.17529263 -0.55736964 -0.81154887]\n", + " [ 0.17235324 -0.53401161 -0.82772336]\n", + " [ 0.16921659 -0.50982578 -0.84347105]\n", + " [ 0.16588877 -0.4848862 -0.85870035]\n", + " [ 0.16237779 -0.45.99887193 -24.43126073]\n", + " [-19.62287241 -24.43354631]\n", + " [-14.2468729 -24.43583188]\n", + " [ -8.87087339 -24.43811746]\n", + " [ -3.49487388 -24.44040305]\n", + " [-30.37258587 -19.05297564]\n", + " [-24.99658635 -19.05526122]\n", + " [-19.62058684 -19.05754679]\n", + " [-14.24458732 -19.05983237]\n", + " [ -8.86858781 -19.06211795]\n", + " [ -3.4925883 -19.06440353]\n", + " [-30.37030029 -13.67697612]\n", + " [-24.99430077 -13.6792617 ]\n", + " [-19.61830126 -13.68154728]\n", + " [-14.24230175 -13.68383286]\n", + " [ -8.86630223 -13.68611844]\n", + " [ -3.49030272 -13.68840401]\n", + " [-30.36801471 -8.30097661]\n", + " [-24.9920152 -8.30326219]\n", + " [-19.61601568 -8.30554776]\n", + " [-14.24001617 -8.30783335]\n", + " [ -8.86401666 -8.31011893]\n", + " [ -3.48801714 -8.3124045 ]\n", + " [-30.36572914 -2.9249771 ]\n", + " [-24.98972962 -2.92726267]\n", + " [-19.6137301 -2.92954825]\n", + " [-14.23773059 -2.93183383]\n", + " [ -8.86173108 -2.93411941]\n", + " [ -3.48573156 -2.93640499]]\n", + "927415 -0.87332738]\n", + " [ 0.15869374 -0.43307898 -0.88727611]\n", + " [ 0.15484894 -0.40639796 -0.90047904]\n", + " [ 0.36583171 -0.52047096 -0.77154205]\n", + " [ 0.36431586 -0.49275322 DEBUG:root:radec2pix: lng: [44.48637088 40.24577336 35.3986005 29.89032997 23.69955042 16.86222735\n", + " 9.49377237 1.79522173 44.48637088 48.66063412 53.44662754 58.90649312\n", + " 65.0719071 71.9184746 79.34035003 87.13941954 1.79522173 2.08115239\n", + " 2.4736322 3.04578526 3.95735654 5.6363423 9.74006464 33.09159725\n", + " 87.13941954 86.68537287 86.05851166 85.13727473 83.65177634 80.86105503\n", + " 73.77851938 33.09159725 42.72105973 37.1234454 30.55748427 22.96885005\n", + " 14.42630836 5.17884001 46.22224274 51.74114431 58.24340245 65.80116251\n", + " 74.36661193 83.70585675 1.93801443 2.35975361 3.01217367 4.15532416\n", + " 6.6725739 16.60005947 86.92909007 86.26070822 85.21749379 83.36321455\n", + " 79.16883097 61.59868241 44.48614146 44.48614146 33.22349754 33.22349754\n", + " 44.45527608 50.01139871 56.64103308 64.45360362 73.42615136 83.31035484\n", + " 38.80796323 44.3420957 51.23163704 59.75644459 70.04944098 81.86211477\n", + " 32.10039047 37.31880048 44.16600061 53.22697224 65.04995068 79.6185637\n", + " 24.24396698 28.69167771 34.89141577 43.85434751 57.06355174 75.69539259\n", + " 15.28811193 18.37837592 22.94811312 30.25991115 43.15274514 67.23630391\n", + " 5.50203766 6.68110194 8.4950185 11.63570463 18.3197087 40.11102427]\n", + "DEBUG:root:optics_fp: rtanth: [45.12621722 42.17029986 39.48131725 37.11732942 35.14398081 33.63010767\n", + " 32.639706 32.22108294 45.12621722 42.10767167 39.34740219 36.90340926\n", + " 34.84231167 33.23542179 32.15091525 31.64254972 32.22108294 27.83664346\n", + " 23.45294788 19.07050919 14.69045227 10.31581149 5.95852807 1.75318507\n", + " 31.64254972 27.26187195 22.88339755 18.50869029 14.14124675 9.79079234\n", + " 5.49780688 1.75318507 43.79692971 40.34599343 37.35277865 34.93513576\n", + " 33.218972 32.31623807 43.77085556 40.23738319 37.14847194 34.62331124\n", + " 32.79239466 31.77595577 30.30982943 24.93681956 19.5654525 14.19759296\n", + " 8.839633 3.53685305 29.73311087 24.36567291 19.00307614 13.6510271\n", + " 8.32988182 3.19782325 45.10500496 45.10500496 1.7737717 1.7737717\n", + " 42.42166164 38.76540449 35.54881922 32.9011133DEBUG:root:make_az_asym: xyp: [[ 0.26283402 -31.55708986]\n", + " [ 0.26401791 -27.17066146]\n", + " [ 0.2652018 -22.78423305]\n", + " [ 0.26638569 -18.39780463]\n", + " [ 0.26756957 -14.01137623]\n", + " [ 0.26875346 -9.62494781]\n", + " [ 0.26993735 -5.2385194 ]\n", + " [ 0.27112123 -0.85209099]\n", + " [ 0.26283402 -31.55708986]\n", + " [ 4.64926244 -31.55827376]\n", + " [ 9.03569085 -31.55945764]\n", + " [ 13.42211926 -31.56064153]\n", + " [ 17.80854767 -31.56182542]\n", + " [ 22.19497608 -31.56300931]\n", + " [ 26.5814045 -31.56419319]\n", + " [ 30.96783291 -31.56537708]\n", + " [ 0.27112123 -0.85209099]\n", + " [ 4.65754965 -0.85327487]\n", + " [ 9.04397805 -0.85445876]\n", + " [ 13.43040647 -0.85564265]\n", + " [ 17.81683488 -0.85682653]\n", + " [ 22.20326329 -0.85801042]\n", + " [ 26.5896917 -0.85919431]\n", + " [ 30.97612012 -0.8603782 ]\n", + " [ 30.96783291 -31.56537708]\n", + " [ 30.9690168 -27.17894867]\n", + " [ 30.97020068 -22.79252025]\n", + " [ 30.97138456 -18.40609184]\n", + " [ 30.97256845 -14.01966343]\n", + " [ 30.97375234 -9.63323502]\n", + " [ 30.97493622 -5.24680661]\n", + " [ 30.97612012 -0.8603782 ]\n", + " [ 0.2783502 -29.64459399]\n", + " [ 0.27980118 30.96854417 29.89014797\n", + " 38.84875172 34.81931533 31.19850449 28.14447363 25.85882561 24.55705763\n", + " 35.73032881 31.30200643 27.21722925 23.65464611 20.88324085 19.24785615\n", + " 33.19472902 28.37338973 23.79099004 19.61570597 16.16611847 13.98976784\n", + " 31.38353749 26.23138645 21.19074319 16.36497207 12.01581361 8.87411937\n", + " 30.4263959 25.07837271 19.74554986 14.44477252 9.23140937 4.4259617 ]\n", + "-0.79023302]\n", + " [ 0.36214196 -0.46389425 -0.80848953]\n", + " [ 0.35932176 -0.4340369 -0.82613549]\n", + " [ 0.35586885 -0.40333444 -0.84301761]\n", + " [ 0.35180017 -0.3719517 -0.85900441]\n", + " [ 0.35551395 -0.53361448 -0.76737567]\n", + " [ 0.32436036 -0.54364138 -0.77410878]\n", + " [ 0.29208505 -0.55310236 -0.78023336]\n", + " [ 0.25887301 -0.56191886 -0.78564111]\n", + " [ 0.2249124 -0.57002072 -0.7902473 ]\n", + " [ 0.19039654 -0.57734691 -0.79398974]\n", + " [ 0.33906523 -0.36387382 -0.86754286]\n", + " [ 0.30662465 -0.37259825 -0.87587206]\n", + " [ 0.27308474 -0.38105055 -0.88330357]\n", + " [ 0.23862038 -0.38915431 -0.88972987]\n", + " [ 0.20341644 -0.39684107 -0.89506364]\n", + " [ 0.16767037 -0.40405039 -0.89923853]\n", + " [ 0.17695927 -0.57013388 -0.80226727]\n", + " [ 0.17346882 -0.5419934 -0.82228445]\n", + " [ 0.16967944 -0.51257428 -0.84171046]\n", + " [ 0.16560168 -0.48201038 -0.86037322]\n", + " [ 0.16125028 -0.45045144 -0.87811835]\n", + " [ 0.15664474 -0.41806531 -0.89480938]\n", + " [ 0.36620759 -0.52995633 -0.76487796]\n", + " [ 0.36620759 -0.52995633 -0.76487796]\n", + " [ 0.15496294 -0.40647105 -0.90042644]\n", + " [ 0.15496294 -0.40647105 -0.90042644]\n", + " [ 0.35508904 -0.52410723 -0.77409521]\n", + " [ 0.32379767 -0.53408281 -0.78096775]\n", + " [ 0.29138561 -0.54350817 -0.78720601]\n", + " [ 0.25803693 -0.55230446 -0.79270217]\n", + " [ 0.22393924 -0.56040105 -0.79737186]\n", + " [ 0.1892859 -0.56773644 -0.80115304]\n", + " [ 0.35344946 -0.49632017 -0.79293113]\n", + " [ 0.321811 -0.5061309 -0.80016822]\n", + " [ 0.28905456 -0.51543785 -0.80670397]\n", + " [ 0.25536144 -0.5241614 -0.81243176]\n", + " [ 0.22091791 -0.53222982 -0.81726782]\n", + " [ 0.18591776 -0.53958043 -0.82115013]\n", + " [ 0.35117394 -0.46738056 -0.81131515]\n", + " [ 0.31925106 -0.47699604 -0.81887333]\n", + " [ 0.28621271 -0.48615675 -0.82567179]\n", + " [ 0.25223765 -0.49478277 -0.83160458]\n", + " [ 0.21751119 -0.50280187 -0.83658781]\n", + " [ 0.18222795 -0.51015071 -0.84055888]\n", + " [ 0.34827357 -0.43743067 -0.82907173]\n", + " [ 0.31612708 -0.44681867 -0.83690904]\n", + " [ 0.28286808 -0.45580339 -0.84393656]\n", + " [ 0.24867328 -0.46430527 -0.85004836]\n", + " [ 0.2137275 -0.47225236 -0.85515979]\n", + " [ 0.17822637 -0.47958137 -0.85920723]\n", + " [ 0.34476125 -0.40662355 -0.84604785]\n", + " [ 0.31245039 -0.41575117 -0.85412278]\n", + " [ 0.27903123 -0.42452947 -0.86134563]\n", + " [ 0.24467918 -0.43287995 -0.86760996]\n", + " [ 0.20957888 -0.44073173 -0.87283001]\n", + " [ 0.17392697 -0.44802234 -0.87694093]\n", + " [ 0.34065344 -0.37512423 -0.86211197]\n", + " [ 0.30823647 -0.38395928 -0.87038242]\n", + " [ 0.27471741 -0.39250158 -0.87776583]\n", + " [ 0.24027114 -0.40067414 -0.88415497]\n", + " [ 0.20508244 -0.4084078 -0.88946291]\n", + " [ 0.1693486 -0.4156415 -0.89362363]]\n", + "DEBUG:root:radec2pix: ccdpx: [[-4.45000000e+01 -4.99999797e-01]\n", + " [-4.45000000e+01 2.91928572e+02]\n", + " [-4.45000000e+01 5.84357143e+02]\n", + " [-4.45000000e+01 8.76785714e+02]\n", + " [-4.45000000e+01 1.16921429e+03]\n", + " [-4.45000000e+01 1.46164286e+03]\n", + " [-4.45000000e+01 1.75407143e+03]\n", + " [-4.45000001e+01 2.04650000e+03]\n", + " [-4.45000000e+01 -4.99999797e-01]\n", + " [ 2.47928571e+02 -5.00000034e-01]\n", + " [ 5.40357143e+02 -4.99999972e-01]\n", + " [ 8.32785714e+02 -4.99999760e-01]\n", + " [ 1.12521429e+03 -5.00000049e-01]\n", + " [ 1.41764286e+03 -4.99999867e-01]\n", + " [ 1.71007143e+03 -5.00000044e-01]\n", + " [ 2.00250000e+03 -4.99999770e-01]\n", + " [-4.45000001e+01 2.04650000e+03]\n", + " [ 2.47928571e+02 2.04650000e+03]\n", + " [ 5.40357143e+02 2.04650000e+03]\n", + " [ 8.32785714e+02 2.04650000e+03]\n", + " [ 1.12521429e+03 2.04650000e+03]\n", + " [ 1.41764286e+03 2.04650000e+03]\n", + " [ 1.71007143e+03 2.04650000e+03]\n", + " [ 2.00250000e+03 2.04650000e+03]\n", + " [ 2.00250000e+03 -4.99999770e-01]\n", + " [ 2.00250000e+03 2.91928572e+02]\n", + " [ 2.00250000e+03 5.84357143e+02]\n", + " [ 2.00250000e+03 8.76785714e+02]\n", + " [ 2.00250000e+03 1.16921429e+03]\n", + " [ 2.00250000e+03 1.46164286e+03]\n", + " [ 2.00250000e+03 1.75407143e+03]\n", + " [ 2.00250000e+03 2.04650000e+03]\n", + " [-4.35000000e+01 1.27000000e+02]\n", + " [-4.35000000e+01 4.85400000e+02]\n", + " [-4.35000000e+01 8.43800000e+02]\n", + " [-4.35000000e+01 1.20220000e+03]\n", + " [-4.35000000e+01 1.56060000e+03]\n", + " [-4.35000000e+01 1.91900000e+03]\n", + " [ 8.30000000e+01 5.00000045e-01]\n", + " [ 4.41400000e+02 5.00000251e-01]\n", + " [ 7.99800000e+02 4.99999878e-01]\n", + " [ 1.15820000e+03 4.99999746e-01]\n", + " [ 1.51660000e+03 5.00000268e-01]\n", + " [ 1.87500000e+03 4.99999743e-01]\n", + " [ 8.29999998e+01 2.04550000e+03]\n", + " [ 4.41400000e+02 2.04550000e+03]\n", + " [ 7.99800000e+02 2.04550000e+03]\n", + " [ 1.15820000e+03 2.04550000e+03]\n", + " [ 1.51660000e+03 2.04550000e+03]\n", + " [ 1.87500000e+03 2.04550000e+03]\n", + " [ 2.00150000e+03 1.27000000e+02]\n", + " [ 2.00150000e+03 4.85400000e+02]\n", + " [ 2.00150000e+03 8.43800000e+02]\n", + " [ 2.00150000e+03 1.20220000e+03]\n", + " [ 2.00150000e+03 1.56060000e+03]\n", + " [ 2.00150000e+03 1.91900000e+03]\n", + " [-4.35000000e+01 5.00000140e-01]\n", + " [-4.35000000e+01 5.00000140e-01]\n", + " [ 2.00150000e+03 2.04550000e+03]\n", + " [ 2.00150000e+03 2.04550000e+03]\n", + " [ 8.30000000e+01 1.27000000e+02]\n", + " [ 4.41400000e+02 1.27000000e+02]\n", + " [ 7.99800000e+02 1.27000000e+02]\n", + " [ 1.15820000e+03 1.27000000e+02]\n", + " [ 1.51660000e+03 1.27000000e+02]\n", + " [ 1.87500000e+03 1.27000000e+02]\n", + " [ 8.30000000e+01 4.85400000e+02]\n", + " [ 4.41400000e+02 4.85400000e+02]\n", + " [ 7.99800000e+02 4.85400000e+02]\n", + " [ 1.15820000e+03 4.85400000e+02]\n", + " [ 1.51660000e+03 4.85400000e+02]\n", + " [ 1.87500000e+03 4.85400000e+02]\n", + " [ 8.30000000e+01 8.43800000e+02]\n", + " [ 4.41400000e+02 8.43800000e+02]\n", + " [ 7.99800000e+02 8.43800000e+02]\n", + " [ 1.15820000e+03 8.43800000e+02]\n", + " [ 1.51660000e+03 8.43800000e+02]\n", + " [ 1.87500000e+03 8.43800000e+02]\n", + " [ 8.30000000e+01 1.20220000e+03]\n", + " [ 4.41400000e+02 1.20220000e+03]\n", + " [ 7.99800000e+02 1.20220000e+03]\n", + " [ 1.15820000e+03 1.20220000e+03]\n", + " [ 1.51660000e+03 1.20220000e+03]\n", + " [ 1.87500000e+03 1.20220000e+03]\n", + " [ 8.30000001e+01 1.56060000e+03]\n", + " [ 4.41400000e+02 1.56060000e+03]\n", + " [ 7.99800000e+02 1.56060000e+03]\n", + " [ 1.15820000e+03 1.56060000e+03]\n", + " [ 1.51660000e+03 1.56060000e+03]\n", + " [ 1.87500000e+03 1.56060000e+03]\n", + " [ 8.29999998e+01 1.91900000e+03]\n", + " [ 4.41400000e+02 1.91900000e+03]\n", + " [ 7.99800000e+02 1.91900000e+03]\n", + " [ 1.15820000e+03 1.91900000e+03]\n", + " [ 1.51660000e+03 1.91900000e+03]\n", + " [ 1.87500000e+03 1.91900000e+03]]\n", + "DEBUG:root:make_az_asym: xyp: shape: (96, 2)\n", + "DEBUG:root:radec2pix: xyfp Shape: (96, 2)\n", + "7 -24.26859418]\n", + " [ 0.28125214 -18.89259438]\n", + " [ 0.28270311 -13.51659457]\n", + " [ 0.28415408 -8.14059477]\n", + " [ 0.28560505 -2.76459497]\n", + " [ 2.175338 -31.54260605]\n", + " [ 7.55133781 -31.54405702]\n", + " [ 12.92733761 -31.54550799]\n", + " [ 18.30333742 -31.54695896]\n", + " [ 23.67933722 -31.54840993]\n", + " [ 29.05533702 -31.5498609 ]\n", + " [ 2.18361712 -0.86760716]\n", + " [ 7.55961692 -0.86905814]\n", + " [ 12.93561673 -0.87050911]\n", + " [ 18.31161653 -0.87196007]\n", + " [ 23.68761633 -0.87341105]\n", + " [ 29.06361614 -0.87486202]\n", + " [ 30.95334909 -29.6528731 ]\n", + " [ 30.95480005 -24.27687329]\n", + " [ 30.95625103 -18.90087349]\n", + " [ 30.95770199 -13.52487368]\n", + " [ 30.95915297 -8.14887388]\n", + " [ 30.96060394 -2.77287408]\n", + " [ 0.27783807 -31.54209392]\n", + " [ 0.27783807 -31.54209392]\n", + " [ 30.96111607 -0.87537415]\n", + " [ 30.96111607 -0.87537415]\n", + " [ 2.17585013 -29.64510611]\n", + " [ 7.55184994 -29.64655709]\n", + " [ 12.92784974 -29.64800806]\n", + " [ 18.30384955 -29.64945903]\n", + " [ 23.67984935 -29.65091 ]\n", + " [ 29.05584916 -29.65236097]\n", + " [ 2.1773011 -24.26910631]\n", + " [ 7.55330091 -24.27055728]\n", + " [ 12.92930071 -24.27200825]\n", + " [ 18.30530052 -24.27345922]\n", + " [ 23.68130032 -24.27491019]\n", + " [ 29.05730013 -24.27636116]\n", + " [ 2.17875207 -18.89310651]\n", + " [ 7.55475188 -18.89455748]\n", + " [ 12.93075168 -18.89600845]\n", + " [ 18.30675149 -18.89745942]\n", + " [ 23.68275129 -18.89891039]\n", + " [ 29.0587511 -18.90036136]\n", + " [ 2.18020304 -13.51710671]\n", + " [ 7.55620285 -13.51855767]\n", + " [ 12.93220265 -13.52000864]\n", + " [ 18.30820245 -13.52145961]\n", + " [ 23.68420226 -13.52291058]\n", + " [ 29.06020207 -13.52436156]\n", + " [ 2.18165401 -8.1411069 ]\n", + " [ 7.55765382 -8.14255787]\n", + " [ 12.93365363 -8.14400884]\n", + " [ 18.30965343 -8.14545981]\n", + " [ 23.68565323 -8.14691078]\n", + " [ 29.06165303 -8.14836175]\n", + " [ 2.18310498 -2.76510709]\n", + " [ 7.55910479 -2.76655806]\n", + " [ 12.93510459 -2.76800904]\n", + " [ 18.31110439 -2.76946001]\n", + " [ 23.68710421 -2.77091098]\n", + " [ 29.063104 -2.77236195]]\n", + "DEBUG:root:make_az_asym: xyp: shape: (96, 2)\n", + "DEBUG:root:mm_to_pix: fitpx: [[0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.DEBUG:root:optics_fp: cphi: [0.713738 0.76376784 0.81578691 0.86774466 0.91646952 0.95772545\n", + " 0.98678686 0.99960811 0.713738 0.66073156 0.59560321 0.51618565\n", + " 0.42082689 0.3091928 0.18318995 0.04750869 0.99960811 0.99947492\n", + " 0.99926025 0.99888104 0.99811368 0.99617106 0.98847974 0.85755676\n", + " 0.04750869 0.05514364 0.06569574 0.08122479 0.10631221 0.15355346\n", + " 0.27346048 0.85755676 0.73505851 0.79793137 0.86187328 0.92151896\n", + " 0.96912745 0.99620029 0.69214539 0.6193195 0.5260996 0.40919818\n", + " 0.26810473 0.10749625 0.99954227 0.99932373 0.99890128 0.99791251\n", + " 0.99460641 0.9658178 0.05106448 0.06231447 0.07990085 0.11122898\n", + " 0.18228563 0.4748373 0.71374111 0.71374111 0.85606035 0.85606035\n", + " 0.71415887 0.64283622 0.5497737 0.43061783 0.28389471 0.11427866\n", + " 0.7798406 0.71568995 0.62643496 0.50339666 0.33999355 0.13909785\n", + " 0.84790325 0.79611069 0.71806949 0.59894626 0.42100084 0.17746713\n", + " 0.9126717 0.87828385 0.82148283 0.72227275 0.54384668 0.24417059\n", + " 0.96534426 0.95000384 0.92228562 DEBUG:root:radec2pix: lat: [73.19833089 74.18249103 75.09922688 75.92116023 76.61853688 77.16100123\n", + " 77.52079342 77.67706772 73.19833089 74.20159367 75.14093371 75.98890558\n", + " 76.71531245 77.28881429 77.68005228 77.86611976 77.67706772 79.27473553\n", + " 80.90480881 82.56181915 84.24016258 85.93331116 87.63030205 89.26372814\n", + " 77.86611976 79.46663016 81.09832556 82.755367 84.43126132 86.11695715\n", + " 87.79091006 89.26372814 73.63774563 74.80227565 75.83862014 76.69292614\n", + " 77.3096353 77.64025349 73.64559076 74.835883 75.90321746 76.7930912\n", + " 77.44812351 77.8166633 78.36913095 80.34967761 82.37343442 84.43012843\n", + " 86.50734673 88.57380626 78.55945528 80.5426681 82.56690719 84.62047016\n", + " 86.68569475 88.69035885 73.20529527 73.20529527 89.25558432 89.25558432\n", + " 74.09681811 75.34210951 76.46528549 77.40781255 78.10603298 78.5008319\n", + " 75.3160395 76.72544415 78.02222799 79.13621749 79.98176995 80.46955109\n", + " 76.40729948 77.98832745 79.48016045 80.80422916 81.84813181 82.47175257\n", + " 77.31254652 79.06012758 80.75806605 82.3313541 83.64750757 84.48728684\n", + " 77.96997446 79.85669547 81.74302972 83.57869755 85.2518859 86.47101417\n", + " 78.32402093 80.29356392 82.30071175 84.32903186 86.34620527 88.21286949]\n", + "DEBUG:root:radec2pix: curVec Shape: (96, 3)\n", + "DEBUG:root:optics_fp: rtanth: [31.53710793 27.15083443 22.76462071 18.37850955 13.99259736 9.60715672\n", + " 5.22337543 0.86680593 31.53710793 31.87457578 32.80044965 34.26706764\n", + " 36.20878157 38.55387546 41.23358186 44.18706537 0.86680593 4.70645911\n", + " 9.05713384 13.4310871 17.81117737 22.19377139 26.57763063 30.96221766\n", + " 44.18706537 41.17129315 38.42050918 35.99551614 33.96616479 32.40686702\n", + " 31.3877559 30.96221766 29.62479828 24.2490533 18.8734536 13.49817273\n", + " 8.12384367 2.75604003 31.59497037 32.40914016 34.06266769 36.44147428\n", + " 39.41445822 42.8581467 2.31847961 7.58192329 12.93825823 18.30612583\n", + " 23.67768384 29.05088524 42.83223469 39.30633844 36.23781045 33.75162698\n", + " 31.98387863 31.05748561 31.52222904 31.52222904 30.94762955 30.94762955\n", + " 29.70218682 30.56681395 32.3147502 34.81319861 37.91407742 41.48250822\n", + " 24.34353743 25.39129827 27.47054774 30.37016151 33.88015908 37.83102431\n", + " 18.99469609 20.32015484 22.86529373 26.27807784 30.26641445 34.63202369\n", + " 13.66718319 15.4564585 18.67659162 22.72731378 27.24058114 32.02140662\n", + " 8.40167037 11.07692547 15.25159806 20.00817233 25.01690288 30.15239046\n", + " 3.49098634 8.0185534 13.1988698 18.49123795 23.82109044 29.16788596]\n", + "]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]]\n", + "DEBUG:root:mm_to_pix: fitpx: [[0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]]\n", + "DEBUG:root:radec2pix: xyfp: [[ 0.26283402 -31.55708986]\n", + " [ 0.26401791 -27.17066146]\n", + " [ 0.2652018 -22.78423305]\n", + " [ 0.26638569 -18.39780463]\n", + " [ 0.26756957 -14.01137623]\n", + " [ 0.26875346 -9.62494781]\n", + " [ 0.26993735 -5.2385194 ]\n", + " [ 0.27112123 -0.85209099]\n", + " [ 0.26283402 -31.55708986]\n", + " [ 4.64926244 -31.55827376]\n", + " [ 9.03569085 -31.55945764]\n", + " [ 13.42211926 -31.56064153]\n", + " [ 17.80854767 -31.56182542]\n", + " [ 22.19497608 -31.56300931]\n", + " [ 26.5814045 -31.56419319]\n", + " [ 30.96783291 -31.56537708]\n", + " [ 0.27112123 -0.85209099]\n", + " [ 4.65754965 -0.85327487]\n", + " [ 9.04397805 -0.85445876]\n", + " [ 13.43040647 -0.85564265]\n", + " [ 17.81683488 -0.85682653]\n", + " [ 22.20326329 -0.85801042]\n", + " [ 26.5896917 -0.85919431]\n", + " [ 30.97612012 -0.8603782 ]\n", + " [ 30.96783291 -31.56537708]\n", + " [ 30.9690168 -27.17894867]\n", + " [ 30.97020068 -22.79252025]\n", + " [ 30.97138456 -18.40609184]\n", + " [ 30.97256845 -14.01966343]\n", + " [ 30.97375234 -9.63323502]\n", + " [ 30.97493622 -5.24680661]\n", + " [ 30.97612012 -0.8603782 ]\n", + " [ 0.2783502 -29.64459399]\n", + " [ 0.27980117 -24.26859418]\n", + " [ 0.28125214 -18.89259438]\n", + " [ 0.28270311 -13.51659457]\n", + " [ 0.28415408 -8.14059477]\n", + " [ 0.28560505 -2.76459497]\n", + " [ 2.175338 -31.54260605]\n", + " [ 7.55133781 -31.54405702]\n", + " [ 12.92733761 -31.54550799]\n", + " [ 18.30333742 -31.54695896]\n", + " [ 23.67933722 -31.54840993]\n", + " [ 29.05533702 -31.5498609 ]\n", + " [ 2.18361712 -0.86760716]\n", + " [ 7.55961692 -0.86905814]\n", + " [ 12.93561673 -0.87050911]\n", + " [ 18.31161653 -0.87196007]\n", + " [ 23.68761633 -0.87341105]\n", + " [ 29.06361614 -0.87486202]\n", + " [ 30.95334909 -29.6528731 ]\n", + " [ 30.95480005 -24.27687329]\n", + " [ 30.95625103 -18.90087349]\n", + " [ 30.95770199 -13.52487368]\n", + " [ 30.95915297 -8.14887388]\n", + " [ 30.96060394 -2.77287408]\n", + " [ 0.27783807 -31.54209392]\n", + " [ 0.27783807 -31.54209392]\n", + " [ 30.96111607 -0.87537415]\n", + " [ 30.96111607 -0.87537415]\n", + " [ 2.17585013 -29.64510611]\n", + " [ 7.55184994 -29.64655709]\n", + " [ 12.92784974 -29.64800806]\n", + " [ 18.30384955 -29.64945903]\n", + " [ 23.67984935 -29.65091 ]\n", + " [ 29.05584916 -29.65236097]\n", + " [ 2.1773011 -24.26910631]\n", + " [ 7.55330091 -24.27055728]\n", + " [ 12.92930071 -24.27200825]\n", + " [ 18.30530052 -24.27345922]\n", + " [ 23.68130032 -24.27491019]\n", + " [ 29.05730013 -24.27636116]\n", + " [ 2.17875207 -18.89310651]\n", + " [ 7.55475188 -18.89455748]\n", + " [ 12.93075168 -18.89600845]\n", + " [ 18.30675149 -18.89745942]\n", + " [ 23.68275129 -18.89891039]\n", + " [ 29.0587511 -18.90036136]\n", + " [ 2.18020304 -13.51710671]\n", + " [ 7.55620285 -13.51855767]\n", + " [ 12.93220265 -13.52000864]\n", + " [ 18.30820245 -13.52145961]\n", + " [ 23.68420226 -13.52291058]\n", + " [ 29.06020207 -13.52436156]\n", + " [ 2.18165401 -8.1411069 ]\n", + " [ 7.55765382 -8.14255787]\n", + " [ 12.93365363 -8.14400884]\n", + " [ 18.30965343 -8.14545981]\n", + " [ 23.68565323 -8.14691078]\n", + " [ 29.06165303 -8.14836175]\n", + " [ 2.18310498 -2.76510709]\n", + " [ 7.55910479 -2.76655806]\n", + " [ 12.93510459 -2.76800904]\n", + " [ 18.31110439 -2.76946001]\n", + " [ 23.68710421 -2.77091098]\n", + " [ 29.063104 -2.77236195]]\n", + "DEBUG:root:radec2pix: xyfp: [[ 0.173161 -31.45819714]\n", + " [ 0.17304708 -27.07176857]\n", + " [ 0.17293316 -22.68534 ]\n", + " [ 0.17281925 -18.29891143]\n", + " [ 0.17270533 -13.91248287]\n", + " [ 0.17259141 -9.52605429]\n", + " [ 0.17247749 -5.13962573]\n", + " [ 0.17236358 -0.75319715]\n", + " [ 0.173161 -31.45819714]\n", + " [ 4.55958957 -31.45808322]\n", + " [ 8.94601814 -31.45796931]\n", + " [ 13.33244671 -31.45785538]\n", + " [ 17.71887528 -31.45774147]\n", + " [ 22.10530385 -31.45762756]\n", + " [ 26.49173242 -31.45751363]\n", + " [ 30.87816099 -31.45739971]\n", + " [ 0.17236358 -0.75319715]\n", + " [ 4.55879215 -0.75308323]\n", + " [ 8.94522072 -0.75296932]\n", + " [ 13.33164929 -0.7528554 ]\n", + " [ 17.71807786 -0.75274148]\n", + " [ 22.10450643 -0.75262756]\n", + " [ 26.490935 -0.75251364]\n", + " [ 30.87736356 -0.75239973]\n", + " [ 30.87816099 -31.45739971]\n", + " [ 30.87804707 -27.07097114]\n", + " [ 30.87793315 -22.68454257]\n", + " [ 30.87781924 -18.29811401]\n", + " [ 30.87770532 -13.91168544]\n", + " [ 30.87759141 -9.52525687]\n", + " [ 30.87747749 -5.1388283 ]\n", + " [ 30.87736356 -0.75239973]\n", + " [ 0.18811133 -29.54569675]\n", + " [ 0.18797171 -24.16969676]\n", + " [ 0.1878321 -18.79369675]\n", + " [ 0.18769248 -13.41769676]\n", + " [ 0.18755286 -8.04169676]\n", + " [ 0.18741324 -2.66569676]\n", + " [ 2.08566061 -31.44314748]\n", + " [ 7.46166061 -31.44300785]\n", + " [ 12.83766061 -31.44286824]\n", + " [ 18.2136606 -31.44272862]\n", + " [ 23.5896606 -31.442589 ]\n", + " [ 28.9656606 -31.44244938]\n", + " [ 2.08486397 -0.76814748]\n", + " [ 7.46086396 -0.76800786]\n", + " [ 12.83686396 -0.76786825]\n", + " [ 18.21286396 -0.76772863]\n", + " [ 23.58886395 -0.76758901]\n", + " [ 28.96486395 -0.7674494 ]\n", + " [ 30.86311132 -29.54490011]\n", + " [ 30.86297171 -24.16890011]\n", + " [ 30.86283209 -18.79290011]\n", + " [ 30.86269247 -13.41690011]\n", + " [ 30.86255285 -8.04090011]\n", + " [ 30.86241323 -2.66490012]\n", + " [ 0.18816061 -31.44319675]\n", + " [ 0.18816061 -31.44319675]\n", + " [ 30.86236396 -0.76740012]\n", + " [ 30.86236396 -0.76740012]\n", + " [ 2.08561133 -29.54564748]\n", + " [ 7.46161133 -29.54550785]\n", + " [ 12.83761133 -29.54536824]\n", + " [ 18.21361133 -29.54522862]\n", + " [ 23.58961132 -29.545089 ]\n", + " [ 28.96561132 -29.54494938]\n", + " [ 2.08547171 -24.16964747]\n", + " [ 7.46147171 -24.16950786]\n", + " [ 12.83747171 -24.16936824]\n", + " [ 18.21347171 -24.16922862]\n", + " [ 23.58947171 -24.16908901]\n", + " [ 28.9654717 -24.16894939]\n", + " [ 2.0853321 -18.79364747]\n", + " [ 7.46133209 -18.79350785]\n", + " [ 12.83733209 -18.79336824]\n", + " [ 18.21333209 -18.79322862]\n", + " [ 23.58933209 -18.79308901]\n", + " [ 28.96533209 -18.79294939]\n", + " [ 2.08519248 -13.41764748]\n", + " [ 7.46119248 -13.41750786]\n", + " [ 12.83719247 -13.41736824]\n", + " [ 18.21319248 -13.41722863]\n", + " [ 23.58919247 -13.41708901]\n", + " [ 28.96519247 -13.41694939]\n", + " [ 2.08505286 -8.04164748]\n", + " [ 7.46105286 -8.04150786]\n", + " [ 12.83705286 -8.04136825]\n", + " [ 18.21305286 -8.04122863]\n", + " [ 23.58905286 -8.04108901]\n", + " [ 28.96505285 -8.04094939]\n", + " [ 2.08491324 -2.66564748]\n", + " [ 7.46091324 -2.66550786]\n", + " [ 12.83691324 -2.66536825]\n", + " [ 18.21291324 -2.66522863]\n", + " [ 23.58891323 -2.66508901]\n", + " [ 28.96491324 -2.66494939]]\n", + "DEBUG:root:radec2pix: fitpx: [[ 2.13550000e+03 -4.99999797e-01]\n", + " [ 2.13550000e+03 2.91928572e+02]\n", + " [ 2.13550000e+03 5.84357143e+02]\n", + " [ 2.13550000e+03 8.76785714e+02]\n", + " [ 2.13550000e+03 1.16921429e+03]\n", + " [ 2.13550000e+03 1.46164286e+03]\n", + " [ 2.13550000e+03 1.75407143e+03]\n", + " [ 2.13550000e+03 2.04650000e+03]\n", + " [ 2.13550000e+03 -4.99999797e-01]\n", + " [ 2.42792857e+03 -5.00000034e-01]\n", + " [ 2.72035714e+03 -4.99999972e-01]\n", + " [ 3.01278571e+03 -4.99999760e-01]\n", + " [ 3.30521429e+03 -5.00000049e-01]\n", + " [ 3.59764286e+03 -4.99999867e-01]\n", + " [ 3.89007143e+03 -5.00000044e-01]\n", + " [ 4.18250000e+03 -4.99999770e-01]\n", + " [ 2.13550000e+03 2.04650000e+03]\n", + " [ 2.42792857e+03 2.04650000e+03]\n", + " [ 2.72035714e+03 2.04650000e+03]\n", + " [ 3.01278571e+03 2.04650000e+03]\n", + " [ 3.30521429e+03 2.04650000e+03]\n", + " [ 3.59764286e+03 2.04650000e+03]\n", + " [ 3.89007143e+03 2.04650000e+03]\n", + " [ 4.18250000e+03 2.04650000e+03]\n", + " [ 4.18250000e+03 -4.99999770e-01]\n", + " [ 4.18250000e+03 2.91928572e+02]\n", + " [ 4.18250000e+03 5.84357143e+02]\n", + " [ 4.18250000e+03 8.76785714e+02]\n", + " [ 4.18250000e+03 1.16921429e+03]\n", + " [ 4.18250000e+03 1.46164286e+03]\n", + " [ 4.18250000e+03 1.75407143e+03]\n", + " [ 4.18250000e+03 2.04650000e+03]\n", + " [ 2.13650000e+03 1.27000000e+02]\n", + " [ 2.13650000e+03 4.85400000e+02]\n", + " [ 2.13650000e+03 8.43800000e+02]\n", + " [ 2.13650000e+03 1.20220000e+03]\n", + " [ 2.13650000e+03 1.56060000e+03]\n", + " [ 2.13650000e+03 1.91900000e+03]\n", + " [ 2.26300000e+03 5.00000045e-01]\n", + " [ 2.62140000e+03 5.00000251e-01]\n", + " [ 2.97980000e+03 4.99999878e-01]\n", + " [ 3.33820000e+03 4.99999746e-01]\n", + " [ 3.69660000e+03 5.00000268e-01]\n", + " [ 4.05500000e+03 4.99999743e-01]\n", + " [ 2.26300000e+03 2.04550000e+03]\n", + " [ 2.62140000e+03 2.04550000e+03]\n", + " [ 2.97980000e+03 2.04550000e+03]\n", + " [ 3.33820000e+03 2.04550000e+03]\n", + " [ 3.69660000e+03 2.04550000e+03]\n", + " [ 4.05500000e+03 2.04550000e+03]\n", + " [ 4.18150000e+03 1.27000000e+02]\n", + " [ 4.18150000e+03 4.85400000e+02]\n", + " [ 4.18150000e+03 8.43800000e+02]\n", + " [ 4.18150000e+03 1.20220000e+03]\n", + " [ 4.18150000e+03 1.56060000e+03]\n", + " [ 4.18150000e+03 1.91900000e+03]\n", + " [ 2.13650000e+03 5.00000140e-01]\n", + " [ 2.13650000e+03 5.00000140e-01]\n", + " [ 4.18150000e+03 2.04550000e+03]\n", + " [ 4.18150000e+03 2.04550000e+03]\n", + " [ 2.26300000e+03 1.27000000e+02]\n", + " [ 2.62140000e+03 1.27000000e+02]\n", + " [ 2.97980000e+03 1.27000000e+02]\n", + " [ 3.33820000e+03 1.27000000e+02]\n", + " [ 3.69660000e+03 1.27000000e+02]\n", + " [ 4.05500000e+03 1.27000000e+02]\n", + " [ 2.26300000e+03 4.85400000e+02]\n", + " [ 2.62140000e+03 4.85400000e+02]\n", + " [ 2.97980000e+03 4.85400000e+02]\n", + " [ 3.33820000e+03 4.85400000e+02]\n", + " [ 3.69660000e+03 4.85400000e+02]\n", + " [ 4.05500000e+03 4.85400000e+02]\n", + " [ 2.26300000e+03 8.43800000e+02]\n", + " [ 2.62140000e+03 8.43800000e+02]\n", + " [ 2.97980000e+03 8.43800000e+02]\n", + " [ 3.33820000e+03 8.43800000e+02]\n", + " [ 3.69660000e+03 8.43800000e+02]\n", + " [ 4.05500000e+03 8.43800000e+02]\n", + " [ 2.26300000e+03 1.20220000e+03]\n", + " [ 2.62140000e+03 1.20220000e+03]\n", + " [ 2.97980000e+03 1.20220000e+03]\n", + " [ 3.33820000e+03 1.20220000e+03]\n", + " [ 3.69660000e+03 1.20220000e+03]\n", + " [ 4.05500000e+03 1.20220000e+03]\n", + " [ 2.26300000e+03 1.56060000e+03]\n", + " [ 2.62140000e+03 1.56060000e+03]\n", + " [ 2.97980000e+03 1.56060000e+03]\n", + " [ 3.33820000e+03 1.56060000e+03]\n", + " [ 3.69660000e+03 1.56060000e+03]\n", + " [ 4.05500000e+03 1.56060000e+03]\n", + " [ 2.26300000e+03 1.91900000e+03]\n", + " [ 2.62140000e+03 1.91900000e+03]\n", + " [ 2.97980000e+03 1.91900000e+03]\n", + " [ 3.33820000e+03 1.91900000e+03]\n", + " [ 3.69660000e+03 1.91900000e+03]\n", + " [ 4.05500000e+03 1.91900000e+03]]\n", + "DEBUG:root:mm_to_pix: fitpx.shape: (96, 2)\n", + "DEBUG:root:mm_to_pix: fitpx.shape: (96, 2)\n", + "0.86574653 0.73169559 0.38493034\n", + " 0.9957126 0.99368273 0.9897899 0.98083551 0.95239474 0.77179741]\n", + "DEBUG:root:fitpix2pix: ccdpx: shape: (96, 2)\n", + "DEBUG:root:fitpix2pix: visCut: True\n", + "DEBUG:root:optics_fp: sphi: [0.70041278 0.64549104 0.5783526 0.49701026 0.40010451 0.28768378\n", + " 0.16202376 0.02799345 0.70041278 0.75062228 0.80327879 0.85647672\n", + " 0.90714096 0.95099938 0.98307754 0.99887082 0.02799345 0.03240177\n", + " 0.03845716 0.04729349 0.06139281 0.08742554 0.15135324 0.51438935\n", + " 0.99887082 0.99847843 0.9978397DEBUG:root:radec2pix: curVec: [[-0.32540211 -0.37933647 0.86615086]\n", + " [-0.35177202 -0.37594174 0.85727723]\n", + " [-0.37837722 -0.37217675 0.84753475]\n", + " [-0.40509631 -0.36804009 0.83692501]\n", + " [-0.43181184 -0.36353422 0.8254583 ]\n", + " [-0.45840885 -0.35866575 0.81315448]\n", + " [-0.48477434 -0.35344581 0.80004369]\n", + " [-0.51079793 -0.34789013 0.78616661]\n", + " [-0.32540211 -0.37933647 0.86615086]\n", + " [-0.32577008 -0.35252351 0.87726907]\n", + " [-0.32595611 -0.32548988 0.88758603]\n", + " [-0.32596606 -0.29834489 0.89707104]\n", + " [-0.3258111 -0.2712009 0.9057026 ]\n", + " [-0.32550806 -0.24417319 0.91346809]\n", + " [-0.32507976 -0.21738026 0.9203635 ]\n", + " [-0.3245551 -0.19094411 0.92639318]\n", + " [-0.51079793 -0.34789013 0.78616661]\n", + " [-0.51102939 -0.32018119 0.79770481]\n", + " [-0.5108036 -0.29227488 0.80848938]\n", + " [-0.510128 -0.26428532 0.81848806]\n", + " [-0.50901586 -0.23632723 0.82767886]\n", + " [-0.50748604 -0.20851534 0.8360498 ]\n", + " [-0.50556269 -0.18096482 0.8435983 ]\n", + " [-0.5032753 -0.15379282 0.85033037]\n", + " [-0.3245551 -0.19094411 0.92639318]\n", + " [-0.34986919 -0.18592266 0.91816355]\n", + " [-0.37545676 -0.18079857 0.90903471]\n", + " [-0.40119189 -0.17557196 0.89901032]\n", + " [-0.42695419 -0.17024728 0.88810246]\n", + " [-0.45262839 -0.16483336 0.87633185]\n", + " [-0.47810399 -0.15934303 0.86372818]\n", + " [-0.5032753 -0.15379282 0.85033037]\n", + " [-0.33686414 -0.37781009 0.86242802]\n", + " [-0.36935696 -0.37339997 0.8509688 ]\n", + " [-0.40208203 -0.36843209 0.83820513]\n", + " [-0.43482159 -0.36290931 0.8241523 ]\n", + " [-0.46736394 -0.3568439 0.80884694]\n", + " [-0.49950209 -0.35025824 0.79234893]\n", + " [-0.32567471 -0.36766857 0.8710659 ]\n", + " [-0.3260027 -0.33464359 0.8841583 ]\n", + " [-0.32606247 -0.30139544 0.89601566]\n", + " [-0.32587234 -0.26812971 0.90659455]\n", + " [-0.32546334 -0.23505867 0.91587174]\n", + " [-0.32488001 -0.20240191 0.9238433 ]\n", + " [-0.51086703 -0.33585999 0.79133618]\n", + " [-0.51084274 -0.30175289 0.80497509]\n", + " [-0.51013856 -0.26746257 0.81744873]\n", + " [-0.50877652 -0.23320004 0.82871237]\n", + " [-0.50679126 -0.19917654 0.83874389]\n", + " [-0.50422949 -0.16560485 0.84754213]\n", + " [-0.3355526 -0.188DEBUG:root:radec2pix: camVec: [[0.20582147 0.20765008 0.20920683 0.21049219 0.21150557 0.2122456\n", + " 0.21271065 0.21289938 0.20582147 0.17940403 0.15227891 0.12455745\n", + " 0.09635017 0.06776763 0.03892112 0.00992292 0.21289938 0.18554193\n", + " 0.15747589 0.1288054 0.09963586 0.07007602 0.04023879 0.01024104\n", + " 0.00992292 0.01000636 0.01007758 0.01013637 0.01018243 0.01021541\n", + " 0.01023502 0.01024104 0.20656285 0.20862007 0.2102697 0.2115111\n", + " 0.21234181 0.21275892 0.19440388 0.16153549 0.12771486 0.09314577\n", + " 0.05803185 0.02257838 0.20106508 0.16704611 0.13206625 0.09631893\n", + " 0.06000442 0.02333228 0.01006049 0.01015553 0.01023184 0.01028888\n", + " 0.01032605 0.01034279 0.20573918 0.20573918 0.01034376 0.01034376\n", + " 0.19517916 0.16217419 0.12821715 0.09351091 0.05825864 0.02266572\n", + " 0.19711638 0.16377271 0.12947641 0.09442771 0.05882858 0.02288505\n", + " 0.19867107 0.16505894 0.13049231 0.09516891 0.05928988 0.02306224\n", + " 0.19984199 0.16603002 0.13126104 0.09573072 0.0596397 0.02319607\n", + " 0.20062602 0.1666885722 0.9228962 ]\n", + " [-0.36677893 -0.18263502 0.91220484]\n", + " [-0.39829027 -0.1762581 0.90016551]\n", + " [-0.42986269 -0.16973284 0.88679695]\n", + " [-0.46128392 -0.16307544 0.87213734]\n", + " [-0.49235256 -0.15631109 0.85624518]\n", + " [-0.32549331 -0.37923429 0.86616133]\n", + " [-0.32549331 -0.37923429 0.86616133]\n", + " [-0.50319826 -0.15390402 0.85035585]\n", + " [-0.50319826 -0.15390402 0.85035585]\n", + " [-0.33704411 -0.36619928 0.86735192]\n", + " [-0.3373489 -0.33304596 0.88049765]\n", + " [-0.337357 -0.29966906 0.89240613]\n", + " [-0.33708645 -0.26627452 0.90303411]\n", + " [-0.33656791 -0.23307451 0.91235865]\n", + " [-0.33584567 -0.20028826 0.92037617]\n", + " [-0.36953281 -0.36167594 0.85594159]\n", + " [-0.36977329 -0.32820154 0.86922464]\n", + " [-0.36963896 -0.29450479 0.88126839]\n", + " [-0.36914736 -0.26079284 0.89202989]\n", + " [-0.3683284 -0.22727766 0.90148714]\n", + " [-0.36722556 -0.19417709 0.90963765]\n", + " [-0.40225361 -0.35661655 0.84321804]\n", + " [-0.40243123 -0.32288476 0.85661808]\n", + " [-0.40215913 -0.28893521 0.86878333]\n", + " [-0.40145495 -0.25497642 0.87967093]\n", + " [-0.4 0.99669581 0.9943328 0.98814034\n", + " 0.96188324 0.51438935 0.67800368 0.60274831 0.5071237 0.38833338\n", + " 0.24656029 0.0870918 0.7217581 0.78513907 0.85042296 0.91244553\n", + " 0.96338977 0.99420549 0.03025321 0.03677059 0.04686391 0.06458036\n", + " 0.10372123 0.25922188 0.99869536 0.99805657 0.99680282 0.9937948\n", + " 0.98324562 0.8800736 0.70040962 0.70040962 0.51687588 0.51687588\n", + " 0.69998365 0.76600365 0.83531364 0.90253437 0.95885546 0.99344873\n", + " 0.62597814 0.69841814 0.77947369 0.86405544 0.94042777 0.99027864\n", + " 0.530151 0.60515103 0.69597142 0.80078922 0.90706025 0.98412673\n", + " 0.40869348 0.47813961 0.57023325 0.69160833 0.8391846 0.9697323\n", + " 0.2609798 0.31223822 0.38650903 0.50048271 0.68163155 0.92294563\n", + " 0.09250092 0.11222584 0.14253407 0.19483765 0.3048676 0.63586851]\n", + "0034852 -0.22122026 0.88925961]\n", + " [-0.39888298 -0.18788305 0.89754795]\n", + " [-0.4349887 -0.35102461 0.82919633]\n", + " [-0.4351045 -0.31710081 0.8426928 ]\n", + " [-0.43469837 -0.28296679 0.85496615]\n", + " [-0.43378876 -0.24883239 0.8659733 ]\n", + " [-0.43240628 -0.2149094 0.8756933 ]\n", + " [-0.43059442 -0.18141272 0.88412548]\n", + " [-0.46752636 -0.34491309 0.81391281]\n", + " [-0.46758143 -0.31086463 0.82748461]\n", + " [-0.46704515 -0.27661602 0.83985261]\n", + " [-0.46593732 -0.24237804 0.85097315]\n", + " [-0.46429 -0.20836232 0.86082515]\n", + " [-0.4621478 -0.17478263 0.8694081 ]\n", + " [-0.49965964 -0.33830502 0.79742708]\n", + " [-0.49965565 -0.3042009 0.81105243]\n", + " [-0.49899417 -0.26990882 0.82350109]\n", + " [-0.49769665 -0.23563985 0.83472864]\n", + " [-0.49579704 -0.20160538 0.8447133 ]\n", + " [-0.49334146 -0.16801835 0.85345418]]\n", + "DEBUG:root:radec2pix: xyfp Shape: (96, 2)\n", + "DEBUG:root:radec2pix: xyfp: [[ -0.24606 31.536148 ]\n", + " [ -0.24606 27.14971943]\n", + " [ -0.24606 22.76329086]\n", + " [ -0.24606 18.37686229]\n", + " [ -0.24606 13.99043371]\n", + " [ -0.24606 9.60400514]\n", + " [ -0.24606 5.21757658]\n", + " [ -0.24606 0.831148 ]\n", + " [ -0.24606 31.536148 ]\n", + " [ -4.63248857 31.536148 ]\n", + " [ -9.01891714 31.536148 ]\n", + " [-13.40534571 31.536148 ]\n", + " [-17.79177429 31.536148 ]\n", + " [-22.1DEBUG:root:optics_fp: rtanth: [45.26169529 42.30243097 39.60873368 37.23827886 35.25632641 33.73142753\n", + " 32.72753223 32.29326616 45.26169529 42.24571523 39.48748363 37.04461879\n", + " 34.98324901 33.37413897 32.28498264 31.76930229 32.29326616 27.90939691\n", + " 23.52648174 19.14517593 14.76691204 10.39553425 6.04599739 1.87684519\n", + " 31.76930229 27.38910685 23.01128618 18.63751379 14.2715122 9.92354331\n", + " 5.63550123 1.87684519 43.93110404 40.47519439 37.47457234 35.04637691\n", + " 33.3160059 32.39547369 43.90748877 40.37685013 37.28961296 34.76410785\n", + " 32.92983309 31.90622779 30.38230115 25.01013154 19.64005824 14.27444739\n", + " 8.9213542 3.63648527 29.86008841 24.49335294 19.13182032 13.78156419\n", + " 8.46399587 3.33911555 45.24048285 45.24048285 1.89760875 1.89760875\n", + " 42.55711672 38.90412112 35.68971629 33.042152 31.10650288 30.02079255\n", + " 38.97957981 34.95468636 31.33776168 28.28574318 25.99834571 24.68901465\n", + " 35.85400749 31.43139051 27.35246822 23.7946523 21.02418109 19.38168349\n", + " 33.30787918 28.49275823 23.91782767 19.75070735 16.30708904 14.12638019\n", + " 31.48209857 26.3352423 21.30188242 16.48630206 12.15026205 9.01456223\n", + " 30.50627799 25.16059326 19.83130509 14.53645837 9.33484517 4.55771859]\n", + "DEBUG:root:radec2pix: curVec Shape: (96, 3)\n", + "DEBUG:root:optics_fp: xyfp: [[-32.208296 -31.60697943]\n", + " [-32.20831882 -27.22055086]\n", + " [-32.20834163 -22.83412229]\n", + " [-32.20836444 -18.44769372]\n", + " [-32.20838725 -14.06126515]\n", + " [-32.20841007 -9.67483658]\n", + " [-32.20843288 -5.288408 ]\n", + " [-32.2084557 -0.90197943]\n", + " [-32.208296 -31.60697943]\n", + " [-27.82186743 -31.60695662]\n", + " [-23.43543886 -31.60693381]\n", + " [-19.04901029 -31.60691099]\n", + " [-14.66258171 -31.60688818]\n", + " [-10.27615314 -31.60686536]\n", + " [ -5.88972457 -31.60684255]\n", + " [ -1.503296 -31.60681974]\n", + " [-32.2084557 -0.90197943]\n", + " [-27.82202712 -0.90195662]\n", + " [-23.43559855 -0.9019338 ]\n", + " [-19.04916999 -0.90191099]\n", + " [-14.66274141 -0.90188818]\n", + " [-10.27631284 -0.90186536]\n", + " [ -5.88988428 -0.90184255]\n", + " [ -1.5034557 -0.90181973]\n", + " [ -1.503296 -31.60681974]\n", + " [ -1.50331881 -27.22039116]\n", + " [ -1.50334163 -22.83396259]\n", + " [ -1.50336444 -18.44753402]\n", + " [ -1.50338726 -14.06110544]\n", + " [ -1.50341007 -9.67467688]\n", + " [ -1.50343288 -5.2882483 ]\n", + " [ -1.5034557 -0.90181973]\n", + " [-32.19330594 -29.69447935]\n", + " [-32.19333391 -24.31847935]\n", + " [-32.19336187 -18.94247936]\n", + " [-32.19338983 -13.56647936]\n", + " [-32.19341779 -8.19047935]\n", + " [-32.19344575 -2.81447935]\n", + " [-30.29579608 -31.59196949]\n", + " [-24.91979608 -31.59194152]\n", + " [-19.54379608 -31.59191356]\n", + " [-14.16779608 -31.5918856 ]\n", + " [ -8.79179608 -31.59185764]\n", + " [ -3.41579608 -31.59182968]\n", + " [-30.29595562 -0.91696949]\n", + " [-24.91995562 -0.91694153]\n", + " [-19.54395562 -0.91691356]\n", + " [-14.16795562 -0.9168856 ]\n", + " [ -8.79195562 -0.91685764]\n", + " [ -3.41595563 -0.91682968]\n", + " [ -1.51830595 -29.69431981]\n", + " [ -1.51833391 -24.31831981]\n", + " [ -1.51836187 -18.94231981]\n", + " [ -1.51838983 -13.56631981]\n", + " [ -1.51841779 -8.19031981]\n", + " [ -1.51844575 -2.81431982]\n", + " [-32.19329608 -31.59197936]\n", + " [-32.19329608 -31.59197936]\n", + " [ -1.51845562 -0.91681981]\n", + " [ -1.51845562 -0.91681981]\n", + " [-30.29580595 -29.69446949]\n", + " [-24.91980594 -29.69444152]\n", + " [-19.54380595 -29.69441356]\n", + " [-14.16780595 -29.69438561]\n", + " [ -8.79180595 -29.69435764]\n", + " [ -3.41580595 -29.69432968]\n", + " [-30.29583391 -24.31846949]\n", + " [-24.91983391 -24.31844152]\n", + " [-19.54383391 -24.31841356]\n", + " [-14.16783391 -24.31838561]\n", + " [ -8.79183391 -24.31835764]\n", + " [ -3.41583391 -24.31832968]\n", + " [-30.29586187 -18.94246949]\n", + " [-24.91986187 -18.94244153]\n", + " [-19.54386187 -18.94241356]\n", + " [-14.16786187 -18.94238561]\n", + " [ -8.79186187 -18.94235764]\n", + " [ -3.41586187 -18.94232969]\n", + " [-30.29588983 -13.56646949]\n", + " [-24.91988983 -13.56644152]\n", + " [-19.54388984 -13.56641357]\n", + " [-14.16788983 -13.5663856 ]\n", + " [ -8.79188983 -13.56635764]\n", + " [ -3.41588983 -13.56632968]\n", + " [-30.29591779 -8.19046949]\n", + " [-24.91991779 -8.19044152]\n", + " [-19.54391779 -8.19041356]\n", + " [-14.16791779 -8.1903856 ]\n", + " [ -8.79191779 -8.19035764]\n", + " [ -3.41591779 -8.19032968]\n", + " [-30.29594575 -2.81446949]\n", + " [-24.91994576 -2.81444153]\n", + " [-19.54394575 -2.81441356]\n", + " [-14.16794576 -2.8143856 ]\n", + " [ -8.79194575 -2.81435764]\n", + " [ -3.41594575 -2.81432968]]\n", + "7820286 31.536148 ]\n", + " [-26.56463143 31.536148 ]\n", + " [-30.95106 31.536148 ]\n", + " [ -0.24606 0.831148 ]\n", + " [ -4.63248857 0.831148 ]\n", + " [ -9.01891714 0.831148 ]\n", + " [-13.40534571 0.831148 ]\n", + " [-17.79177429 0.831148 ]\n", + " [-22.17820285 0.831148 ]\n", + " [-26.56463143 0.831148 ]\n", + " [-30.95106 0.831148 ]\n", + " [-30.95106 31.536148 ]\n", + " [-30.95106 27.14971943]\n", + " [-30.95106 22.76329086]\n", + " [-30.95106 18.37686228]\n", + " [-30.95106 13.99043371]\n", + " [-30.95106 9.60400514]\n", + " [-30.95106 5.21757657]\n", + " [-30.95106 0.831148 ]\n", + " [ -0.26106 29.623648 ]\n", + " [ -0.26106 24.247648 ]\n", + " [ -0.26106 18.87164801]\n", + " [ -0.26106 13.495648 ]\n", + " [ -0.26106 8.119648 ]\n", + " [ -0.26106 2.743648 ]\n", + " [ -2.15856 31.521148 ]\n", + " [ -7.53456 31.521148 ]\n", + " [-12.91056 31.521148 ]\n", + " [-18.28656 31.521148 ]\n", + " [-23.66256 31.521148 ]\n", + " [-29.03856 31.521148 ]\n", + " [ -2.15856 0.846148 ]\n", + " [ -7.53456 0.846148 ]\n", + " [-12.91056 0.846148 ]\n", + " [-18.28655999 0.846148 ]\n", + " [-23.66256 0.846148 ]\n", + " [-29.03856 0.846148 ]\n", + " [-30.93606 29.623648 ]\n", + " [-30.93606 24.247648 ]\n", + " [-30.93606 18.871648 ]\n", + " [-30.93606 13.495648 ]\n", + " [-30.93606 8.119648 ]\n", + " [-30.93606 2.743648 ]\n", + " [ -0.26106 31.521148 ]\n", + " [ -0.26106 31.521148 ]\n", + " [-30.93606 0.846148 ]\n", + " [-30.93606 0.846148 ]\n", + " [ -2.15856 29.623648 ]\n", + " [ -7.53456 29.623648 ]\n", + " [-12.91056 29.623648 ]\n", + " [-18.28656 29.623648 ]\n", + " [-23.66256 29.623648 ]\n", + " [-29.03856 29.623648 ]\n", + " [ -2.15856 24.247648 ]\n", + " [ -7.53456 24.247648 ]\n", + " [-12.91056 24.247648 ]\n", + " [-18.28656 24.247648 ]\n", + " [-23.66256 24.247648 ]\n", + " [-29.03856 24.247648 ]\n", + " [ -2.15856 18.871648 ]\n", + " [ -7.53456 18.871648 ]\n", + " [-12.91056 18.871648 ]\n", + " [-18.28656 18.871648 ]\n", + " [-23.66256 18.871648 ]\n", + " [-29.03856 18.871648 ]\n", + " [ -2.15856 13.495648 ]\n", + " [ -7.53456 13.495648 ]\n", + " [-12.91056 13.495648 ]\n", + " [-18.28656 13.495648 ]\n", + " [-23.66256 13.495648 ]\n", + " [-29.03856 13.495648 ]\n", + " [ -2.15856 8.119648 ]\n", + " [ -7.53456 8.119648 ]\n", + " [-12.91056 8.119648 ]\n", + " [-18.28656 8.119648 ]\n", + " [-23.66256 8.119648 ]\n", + " [-29.03856 8.119648 ]\n", + " [ -2.15856 2.743648 ]\n", + " [ -7.53456 2.743648 ]\n", + " [-12.91056 2.743648 ]\n", + " [-18.28656 2.743648 ]\n", + " [-23.66256 2.743648 ]\n", + " [-29.03856 2.743648 ]]\n", + "DEBUG:root:optics_fp: cphi: [0.00780224 0.0090627 0.01080888 0.01338846 0.01758501 0.02561216\n", + " 0.04710747 0.28386977 0.00780224 0.14533491 0.27496322 0.39120201\n", + " 0.49136628 0.57525223 0.64424749 0.70045521 0.28386977 0.98428319\n", + " 0.99578049 0.99808345 0.99891062 0.99929852 0.9995109 0.99963964\n", + " 0.70045521 0.75176312 0.80558693 0.85985876 0.91123211 0.95507721\n", + " 0.98608706 0.99963964 0.00881221 0.01076578 0.01383213 0.0193404\n", + " 0.03213503 0.09472286 0.06831973 0.23248256 0.37902375 0.50180626\n", + " 0.60035228 0.67755053 0.93102393 0.99375313 0.9978592 0.99893119\n", + " 0.99936126 0.99957574 0.72226117 0.78705016 0.85369562 0.91657981\n", + " 0.96723916 0.99609029 0.00828177 0.00828177 0.99962616 0.99962616\n", + " 0.07267344 0.24649478 0.39952529 0.52527664 0.62411014 0.70001939\n", + " 0.08867076 0.29673788 0.46997825 0.60212258 0.69841939 0.76758588\n", + " 0.11364014 0.37079245 0.56463565 0.69588651 0.78180916 0.83848868\n", + " 0.15793745 0.48747001 0.6912696 0.80460719 0.86865107 0.90684836\n", + " 0.25692034 0.68020319 0.84650539 0.91395454 0.94586289 0.96305996\n", + " 0.61832382 0.93964081 0.97815648 0.98893108 0.99334495 0.99556615]\n", + "DEBUG:root:radec2pix: xyfp: [[-32.29046994 -31.71666141]\n", + " [-32.28860507 -27.33023323]\n", + " [-32.2867402 -22.94380505]\n", + " [-32.28487534 -18.55737688]\n", + " [-32.28301047 -14.1709487 ]\n", + " [-32.2811456 -9.78452053]\n", + " [-32.27928073 -5.39809235]\n", + " [-32.27741587 -1.01166418]\n", + " [-32.29046994 -31.71666141]\n", + " [-27.90404176 -31.71852627]\n", + " [-23.51761359 -31.72039114]\n", + " [-19.13118541 -31.722256 ]\n", + " [-14.74475724 -31.72412087]\n", + " [-10.35832906 -31.72598574]\n", + " [ -5.97190089 -31.72785061]\n", + " [ -1.58547272 -31.72971547]\n", + " [-32.27741587 -1.01166418]\n", + " [-27.8909877 -1.01352905]\n", + " [-23.50455952 -1.01539391]\n", + " [-19.11813134 -1.01725878]\n", + " [-14.73170317 -1.01912365]\n", + " [-10.345275 -1.02098851]\n", + " [ -5.95884682 -1.02285338]\n", + " [ -1.57241864 -1.02471825]\n", + " [ -1.58547272 -31.72971547]\n", + " [ -1.58360785 -27.3432873 ]\n", + " [ -1.58174298 -22.95685912]\n", + " [ -1.57987811 -18.57043094]\n", + " [ -1.57801325 -14.18400278]\n", + " [ -1.57614838 -9.7975746 ]\n", + " [ -1.57428351 -5.41114642]\n", + " [ -1.57241864 -1.02471825]\n", + " [-32.27465685 -29.80416795]\n", + " [-32.27237127 -24.42816844]\n", + " [-32.2700857 -19.05216893]\n", + " [-32.26780012 -13.67616941]\n", + " [-32.26551454 -8.3001699 ]\n", + " [-32.26322896 -2.92417038]\n", + " [-30.37796373 -31.70247449]\n", + " [-25.00196422 -31.70476008]\n", + " [-19.62596471 -31.70704565]\n", + " [-14.24996519 -31.70933123]\n", + " [ -8.87396568 -31.71161681]\n", + " [ -3.49796617 -31.71390239]\n", + " [-30.36492242 -1.02747727]\n", + " [-24.98892291 -1.02976285]\n", + " [-19.61292339 -1.03204842]\n", + " [-14.23692388 -1.034334 ]\n", + " [ -8.86092437 -1.0366DEBUG:root:optics_fp: sphi: [-0.99996956 -0.99995893 -0.99994158 -0.99991037 -0.99984537 -0.99967195\n", + " -0.99888983 -0.95886284 -0.99996956 -0.98938252 -0.96145475 -0.92030483\n", + " -0.87095303 -0.81797608 -0.76481709 -0.71369637 -0.95886284 -0.17659731\n", + " -0.09176722 -0.06188241 -0.04666441 -0.03744961 -0.03127246 -0.02684394\n", + " -0.71369637 -0.65943324 -0.59247759 -0.51053198 -0.41189324 -0.2963571\n", + " -0.16622968 -0.02684394 -0.99996117 -0.99994205 -0.99990433 -0.99981296\n", + " -0.99948354 -0.99550368 -0.99766348 -0.97260056 -0.92538694 -0.86498004\n", + " -0.79973567 -0.73547623 -0.36495814 -0.11160071 -0.06539891 -0.04622212\n", + " -0.0357361 -0.02912641 -0.69162042 -0.616889 -0.5207723 -0.39985178\n", + " -0.2538669 -0.08834096 -0.99996571 -0.99996571 -0.02734129 -0.02734129\n", + " -0.99735579 -0.96914412 -0.91672217 -0.85093152 -0.78133638 -0.71412384\n", + " -0.99606099 -0.95495897 -0.882678 -0.79840366 -0.71568873 -0.64094611\n", + " -0.99352198 -0.92871576 -0.82534028 -0.71815177 -0.62351779 -0.54491901\n", + " -0.98744912 -0.87313973 -0.72259694 -0.59380744 -0.49542438 -0.42145706\n", + " -0.96643258 -0.73302362 -0.53238015 -0.40581658 -0.32456648 -0.26928704\n", + " -0.78592344 -0.34216247 -0.20786992 -0.14837557 -0.11517726 -0.094064 ]\n", + "1958]\n", + " [ -3.48492485 -1.03890516]\n", + " [ -1.59965962 -29.81720927]\n", + " [ -1.59737405 -24.44120975]\n", + " [ -1.59508847 -19.06521024]\n", + " [ -1.59280289 -13.68921073]\n", + " [ -1.59051731 -8.31321121]\n", + " [ -1.58823174 -2.9372117 ]\n", + " [-32.27546357 -31.70166778]\n", + " [-32.27546357 -31.70166778]\n", + " [ -1.58742502 -1.03971187]\n", + " [ -1.58742502 -1.03971187]\n", + " [-30.37715702 -29.80497466]\n", + " [-25.00115751 -29.80726024]\n", + " [-19.625158 -29.80954582]\n", + " [-14.24915848 -29.8118314 ]\n", + " [ -8.87315897 -29.81411698]\n", + " [ -3.49715945 -29.81640256]\n", + " [-30.37487145 -24.42897515]\n", + " [-24.99887193 -24.43126073]\n", + " [-19.62287241 -24.43354631]\n", + " [-14.2468729 -24.43583188]\n", + " [ -8.87087339 -24.43811746]\n", + " [ -3.49487388 -24.44040305]\n", + " [-30.37258587 -19.05297564]\n", + " [-24.99658635 -19.05526122]\n", + " [-19.62058684 -19.05754679]\n", + " [-14.24458732 -19.05983237]\n", + " [ -8.86858781 -19.06211795]\n", + " [ -3.4925883 -19.06440353]\n", + " [-30.37030029 -13.67697612]\n", + " [-24.99430077 -13.6792617 ]\n", + " [-19.61830126 -13.68154728]\n", + " [-14.24230175 -13.68383286]\n", + " [ -8.86630223 -13.68611844]\n", + " [ -3.49030272 -13.68840401]\n", + " [-30.36801471 -8.30097661]\n", + " [-24.9920152 -8.30326219]\n", + " [-19.61601568 -8.30554776]\n", + " [-14.24001617 -8.30783335]\n", + " [ -8.86401666 -8.31011893]\n", + " [ -3.48801714 -8.3124045 ]\n", + " [-30.36572914 -2.9249771 ]\n", + " [-24.98972962 -2.92726267]\n", + " [-19.6137301 -2.92954825]\n", + " [-14.23773059 -2.93183383]\n", + " [ -8.86173108 -2.93411941]\n", + " [ -3.48573156 -2.93640499]]\n", + "DEBUG:root:radec2pix: ccdpx: [[-4.45000000e+01 -5.00000251e-01]\n", + " [-4.45000000e+01 2.91928572e+02]\n", + " [-4.45000000e+01 5.84357143e+02]\n", + " [-4.45000000e+01 8.76785714e+02]\n", + " [-4.45000000e+01 1.16921429e+03]\n", + " [-4.45000000e+01 1.46164286e+03]\n", + " [-4.45000000e+01 1.75407143e+03]\n", + " [-4.45000000e+01 2.04650000e+03]\n", + " [-4.45000000e+01 -5.00000251e-01]\n", + " [ 2.47928571e+02 -5.00000137e-01]\n", + " [ 5.40357143e+02 -5.00000030e-01]\n", + " [ 8.32785714e+02 -4DEBUG:root:radec2pix: camVec: [[ 0.00152888 0.00154215 0.00155354 0.00156302 0.00157054 0.00157606\n", + " 0.00157952 0.00158089 0.00152888 0.03055413 0.0594604 0.08813528\n", + " 0.11646734 0.14434605 0.17166149 0.1983039 0.00158089 0.03159291\n", + " 0.06147904 0.0911219 0.12040769 0.14922671 0.17747265 0.2050409\n", + " 0.1983039 0.20004855 0.20153434 0.2027606 0.20372608 0.20442907\n", + " 0.20486781 0.2050409 0.00163462 0.00165059 0.00166353 0.00167335\n", + " 0.00167995 0.00168324 0.01419184 0.04970047 0.08491857 0.11964057\n", + " 0.15366298 0.18678351 0.01467408 0.05138704 0.08779394 0.12368372\n", + " 0.15885436 0.19311093 0.19900616 0.20096941 0.20254341 0.2037261\n", + " 0.2045144 0.20490517 0.00162826 0.00162826 0.20494776 0.20494776\n", + " 0.01424722 0.04989441 0.08525013 0.12010852 0.15426631 0.18752167\n", + " 0.01438645 0.05038177 0.08608239 0.1212815 0.15577635 0.18936679\n", + " 0.01449922 0.05077617 0.08675481 0.12222707 0.15699061 0.19084708\n", + " 0.01458139 0.13177743 0.09610838 0.05987462 0.02328514\n", + " 0.20101976 0.1670086 0.13203673 0.09629765 0.05999164 0.02332821]\n", + " [0.20164691 0.17515749 0.1479768 0.12021614 0.09198614 0.06339752\n", + " 0.03456171 0.00559103 0.20164691 0.2034844 0.20505578 0.20636157\n", + " 0.2074012 0.20817322 0.20867589 0.20890768 0.00559103 0.00564441\n", + " 0.00569099 0.00573063 0.00576317 0.00578837 0.00580605 0.00581605\n", + " 0.20890768 0.18144072 0.15328055 0.12453134 0.09529889 0.06569253\n", + " 0.0358258 0.00581605 0.19019593 0.15725033 0.12337711 0.08878017\n", + " 0.0536634 0.01823232 0.20239118 0.20446311 0.20613616 0.2074097\n", + " 0.20828117 0.20874739 0.00571471 0.00577657 0.00582791 0.00586841\n", + " 0.00589767 0.00591534 0.19702358 0.16288078 0.12780019 0.0919758\n", + " 0.05560896 0.01891032 0.20156436 0.20156436 0.00591876 0.00591876\n", + " 0.19097333 0.19292238 0.19449762 0.19569785 0.19651986 0.19695996\n", + " 0.15788822 0.15949023 0.1607887 0.16178086 0.16246211 0.16282774\n", + " 0.12387558 0.1251298 0.12614936 0.12693065 0.1274685 0.12775798\n", + " DEBUG:root:optics_fp: xyfp shape: (96, 2)\n", + "DEBUG:root:optics_fp: xyfp: [[ -0.24606 31.536148 ]\n", + " [ -0.24606 27.14971943]\n", + " [ -0.24606 22.76329086]\n", + " [ -0.24606 18.37686229]\n", + " [ -0.24606 13.99043371]\n", + " [ -0.24606 9.60400514]\n", + " [ -0.24606 5.21757658]\n", + " [ -0.24606 0.831148 ]\n", + " [ -0.24606 31.536148 ]\n", + " [ -4.63248857 31.536148 ]\n", + " [ -9.01891714 31.536148 ]\n", + " [-13.40534571 31.536148 ]\n", + " [-17.79177429 31.536148 ]\n", + " [-22.17820286 31.536148 ]\n", + " [-26.56463143 31.536148 ]\n", + " [-30.95106 31.536148 ]\n", + " [ -0.24606 0.831148 ]\n", + " [ -4.63248857 0.831148 ]\n", + " [ -9.01891714 0.831148 ]\n", + " [-13.40534571 0.831148 ]\n", + " [-17.79177429 0.831148 ]\n", + " [-22.17820285 0.831148 ]\n", + " [-26.56463143 0.831148 ]\n", + " [-30.95106 0.831148 ]\n", + " [-30.95106 31.536148 ]\n", + " [-30.95106 27.14971943]\n", + " [-30.95106 22.76329086]\n", + " [-30.95106 18.37686228]\n", + " [-30.95106 13.99043371]\n", + " [-30.95106 9.60400514]\n", + " [-30.95106 5.21757657]\n", + " [-30.95106 0.831148 ]\n", + " [DEBUG:root:mm_to_pix: fitpx: [[0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]]\n", + "479 0.05107523 0.08726392 0.1229415 0.15790584 0.1919602\n", + " 0.01464229 0.05127607 0.08760541 0.12DEBUG:root:radec2pix: ccdpx: [[-4.45000003e+01 -5.00000268e-01]\n", + " [-4.44999998e+01 2.91928572e+02]\n", + " [-4.44999999e+01 5.84357143e+02]\n", + " [-4.45000000e+01 8.76785714e+02]\n", + " [-4.44999998e+01 1.16921429e+03]\n", + " [-4.44999999e+01 1.46164286e+03]\n", + " [-4.44999997e+01 1.75407143e+03]\n", + " [-4.44999999e+01 2.04650000e+03]\n", + " [-4.45000003e+01 -5.00000268e-01]\n", + " [ 2.47928572e+02 -4.99999720e-01]\n", + " [ 5.40357143e+02 -5.00000140e-01]\n", + " [ 8.32785714e+02 -4.99999791e-01]\n", + " [ 1.12521429e+03 -4.99999975e-01]\n", + " [ 1.41764286e+03 -4.99999912e-01]\n", + " [ 1.71007143e+03 -4.99999978e-01]\n", + " [ 2.00250000e+03 -4.99999991e-01]\n", + " [-4.44999999e+01 2.04650000e+03]\n", + " [ 2.47928571e+02 2.04650000e+03]\n", + " [ 5.40357143e+02 2.04650000e+03]\n", + " [ 8.32785715e+02 2.04650000e+03]\n", + " [ 1.12521429e+03 2.04650000e+03]\n", + " [ 1.41764286e+03 2.04650000e+03]\n", + " [ 1.71007143e+03 2.04650000e+03]\n", + " [ 2.00250000e+03 2.04650000e+03]\n", + " [ 2.00250000e+03 -4.99999991e-01]\n", + " [ 2.00250000e+03 2.91928572e+02]\n", + " [ 2.00250000e+03 5.84357143e+02]\n", + " [ 2.00250000e+03 8.76785.99999965e-01]\n", + " [ 1.12521429e+03 -4.99999941e-01]\n", + " [ 1.41764286e+03 -5.00000178e-01]\n", + " [ 1.71007143e+03 -4.99999847e-01]\n", + " [ 2.00250000e+03 -5.00000219e-01]\n", + " [-4.45000000e+01 2.04650000e+03]\n", + " [ 2.47928571e+02 2.04650000e+03]\n", + " [ 5.40357143e+02 2.04650000e+03]\n", + " [ 8.32785714e+02 2.04650000e+03]\n", + " [ 1.12521429e+03 2.04650000e+03]\n", + " [ 1.41764286e+03 2.04650000e+03]\n", + " [ 1.71007143e+03 2.04650000e+03]\n", + " [ 2.00250000e+03 2.04650000e+03]\n", + " [ 2.00250000e+03 -5.00000219e-01]\n", + " [ 2.00250000e+03 2.91928572e+02]\n", + " [ 2.00250000e+03 5.84357143e+02]\n", + " [ 2.00250000e+03 8.76785714e+02]\n", + " [ 2.00250000e+03 1.16921429e+03]\n", + " [ 2.00250000e+03 1.46164286e+03]\n", + " [ 2.00250000e+03 1.75407143e+03]\n", + " [ 2.00250000e+03 2.04650000e+03]\n", + " [-4.35000000e+01 1.27000000e+02]\n", + " [-4.35000000e+01 4.85400000e+02]\n", + " [-4.35000000e+01 8.43800000e+02]\n", + " [-4.35000000e+01 1.20220000e+03]\n", + " [-4.35000000e+01 1.56060000e+03]\n", + " [-4.35000000e+01 1.91900000e+03]\n", + " [ 8.30000000e+01 4.99999716e-01]\n", + " [ 4.41400000e+02 4.99999791e-01]\n", + " [ 7.99800000e+02 5.00000291e-01]\n", + " [ 1.15820000e+03 5.00000004e-01]\n", + " [ 1.51660000e+03 5.00000077e-01]\n", + " [ 1.87500000e+03 4.99999846e-01]\n", + " [ 8.30000001e+01 2.04550000e+03]\n", + " [ 4.41400000e+02 2.04550000e+03]\n", + " [ 7.99800000e+02 2.04550000e+03]\n", + " [ 1.15820000e+03 2.04550000e+03]\n", + " [ 1.51660000e+03 2.04550000e+03]\n", + " [ 1.87500000e+03 2.04550000e+03]\n", + " [ 2.00150000e+03 1.27000000e+02]\n", + " [ 2.00150000e+03 4.85400000e+02]\n", + " [ 2.00150000e+03 8.43800000e+02]\n", + " [ 2.00150000e+03 1.20220000e+03]\n", + " [ 2.00150000e+03 1.56060000e+03]\n", + " [ 2.00150000e+03 1.91900000e+03]\n", + " [-4.35000000e+01 4.99999735e-01]\n", + " [-4.35000000e+01 4.99999735e-01]\n", + " [ 2.00150000e+03 2.04550000e+03]\n", + " [ 2.00150000e+03 2.04550000e+03]\n", + " [ 8.30000000e+01 1.27000000e+02]\n", + " [ 4.41400000e+02 1.27000000e+02]\n", + " [ 7.99800000e+02 1.27000000e+02]\n", + " [ 1.15820000e+03 1.27000000e+02]\n", + " [ 1.51660000e+03 1.27000000e+02]\n", + " [ 1.87500000e+03 1.27000000e+02]\n", + " [ 8.30000000e+01 4.85400000e+02]\n", + " [ 4.41400000e+02 4.85400000e+02]\n", + " [ 7.99800000e+02 4.85400000e+02]\n", + " [ 1.15820000e+03 4.85400000e+02]\n", + " [ 1.51660000e+03 4.85400000e+02]\n", + " [ 1.87500000e+03 4.85400000e+02]\n", + " [ 8.30000000e+01 8.43800000e+02]\n", + " [ 4.41400000e+02 8.43800000e+02]\n", + " [ 7.99800000e+02 8.43800000e+02]\n", + " [ 1.15820000e+03 8.43800000e+02]\n", + " [ 1.51660000e+03 8.43800000e+02]\n", + " [ 1.87500000e+03 8.43800000e+02]\n", + " [ 8.30000000e+01 1.20220000e+03]\n", + " [ 4.41400000e+02 1.20220000e+03]\n", + " [ 7.99800000e+02 1.20220000e+03]\n", + " [ 1.15820000e+03 1.20220000e+03]\n", + " [ 1.51660000e+03 1.20220000e+03]\n", + " [ 1.87500000e+03 1.20220000e+03]\n", + " [ 8.30000000e+01 1.56060000e+03]\n", + " [ 4.41400000e+02 1.56060000e+03]\n", + " [ 7.99800000e+02 1.56060000e+03]\n", + " [ 1.15820000e+03 1.56060000e+03]\n", + " [ 1.51660000e+03 1.56060000e+03]\n", + " [ 1.87500000e+03 1.56060000e+03]\n", + " [ 8.30000002e+01 1.91900000e+03]\n", + " [ 4.41400000e+02 1.91900000e+03]\n", + " [ 7.99800000e+02 1.91900000e+03]\n", + " [ 1.15820000e+03 1.91900000e+03]\n", + " [ 1.51660000e+03 1.91900000e+03]\n", + " [ 1.87500000e+03 1.91900000e+03]]\n", + "DEBUG:root:mm_to_pix: fitpx.shape: (96, 2)\n", + " -0.26106 29.623648 ]\n", + " [ -0.26106 24.247648 ]\n", + " [ -0.26106 18.87164801]\n", + " [ -0.26106 13.495648 ]\n", + " [ -0.26106 8.119648 ]\n", + " [ -0.26106 2.743648 ]\n", + " [ -2.15856 31.521148 ]\n", + " [ -7.53456 31.521148 ]\n", + " [-12.91056 31.521148 ]\n", + " [-18.28656 31.521148 ]\n", + " [-23.66256 31.521148 ]\n", + " [-29.03856 31.521148 ]\n", + " [ -2.15856 0.846148 ]\n", + " [ -7.53456 0.846148 ]\n", + " [-12.91056 0.846148 ]\n", + " [-18.28655999 0.846148 ]\n", + " [-23.66256 0.846148 ]\n", + " [-29.03856 0.846148 ]\n", + " [-30.93606 29.623648 ]\n", + " [-30.93606 24.247648 ]\n", + " [-30.93606 18.871648 ]\n", + " [-30.93606 13.495648 ]\n", + " [-30.93606 8.119648 ]\n", + " [-30.93606 2.743648 ]\n", + " [ -0.26106 31.521148 ]\n", + " [ -0.26106 31.521148 ]\n", + " [-30.93606 0.846148 ]\n", + " [-30.93606 0.846148 ]\n", + " [ -2.15856 29.623648 ]\n", + " [ -7.53456 29.623648 ]\n", + " [-12.91056 29.623648 ]\n", + " [-18.28656 29.623648 ]\n", + " [-23.66256 29.623648 ]\n", + " [-29.03856 29.623648 ]\n", + " [ -2.15856 24.247648 ]\n", + " [ -7.53456 24.247648 ]\n", + " [-12.91056 24.247648 ]\n", + " [-18.28656 24.247648 ]\n", + " [-23.66256 24.247648 ]\n", + " [-29.03856 24.247648 ]\n", + " [ -2.15856 18.871648 ]\n", + " [ -7.53456 18.871648 ]\n", + " [-12.91056 18.871648 ]\n", + " [-18.28656 18.871648 ]\n", + " [-23.66256 18.871648 ]\n", + " [-29.03856 18.871648 ]\n", + " [ -2.15856 13.495648 ]\n", + " [ -7.53456 13.495648 ]\n", + " [-12.91056 13.495648 ]\n", + " [-18.28656 13.495648 ]\n", + " [-23.66256 13.495648 ]\n", + " [-29.03856 13.495648 ]\n", + " [ -2.15856 8.119648 ]\n", + " [ -7.53456 8.119648 ]\n", + " [-12.91056 8.119648 ]\n", + " [-18.28656 8.119648 ]\n", + " [-23.66256 8.119648 ]\n", + " [-29.03856 8.119648 ]\n", + " [ -2.15856 2.743648 ]\n", + " [ -7.53456 2.743648 ]\n", + " [-12.91056 2.743648 ]\n", + " [-18.28656 2.743648 ]\n", + " [-23.66256 2.743648 ]\n", + " [-29.03856 2.743648 ]]\n", + "341989 0.15851749 0.19270261\n", + " 0.01467095 0.05137612 0.08777538 0.12365776 0.15882123 0.1930708 ]\n", + " [-0.20769103 -0.1801941 -0.15200928 -0.12324112 -0.09399571 -0.06438234\n", + " -0.03451442 -0.00450904 -0.20769103 -0.20754198 -0.20712371 -0.20643751\n", + " -0.2054851 -0.20426815 -0.20278791 -0.2010451 -0.00450904 -0.00450572\n", + " -0.00449643 -0.00448126 -0.00446035 -0.00443385 -0.00440189 -0.00436457\n", + " -0.2010451 -0.17444879 -0.14716869 -0.11931453 -0.09099614 -0.06232394\n", + " -0.03340929 -0.00436457 -0.1957935 -0.16161745 -0.12651199 -0.09067166\n", + " -0.05429781 -0.01760077 -0.20756647 -0.20720276 -0.20643606 -0.20526936\n", + " -0.20370571 -0.20174719 -0.00461102 -0.00460274 -0.00458538 -0.00455917\n", + " -0.0045244 -0.0044813 -0.18954613 -0.15647489 -0.12248558 -0.08778034\n", + " -0.05256249 -0.01703747 -0.20759824 -0.20759824 -0.00446412 -0.00446412\n", + " -0.19576354 -0.19542056 -0.19469787 -0.19359884 -0.19212697 -0.19028463\n", + " -0.16159264 -0.16130879 -0.16071144 -0.15980479 -0.15859338 -0.15708053\n", + " -0.12649245 -0.12626898 -0.12579928 -0.12508774 -0.12413931 -0.12295784\n", + " -0.09065756 -0.09049631 -0.09015775 -0.08964573 -0.08896468 -0.0881182\n", + " -0.05428931 -0.05419219 -0.05398843 -0.05368064 -0.05327188 -0.0527647\n", + " -0.01759801 -0.01756642 -0.01750018 -0.01740019 -0.0172675 -0.01710301]\n", + " [ 0.97819328 0.98362986 0.98837785 0.99237552 0.99557136 0.99792406\n", + " 0.99940295 0.99998858 0.97819328 0.97774883 0.97650613 0.97448229\n", + " 0.97170532 0.9682142 0.96405881 0.95929997 0.99998858 0.99949066\n", + " 0.99809825 0.99582966 0.99271451 0.98879307 0.98411589 0.97874367\n", + " 0.95929997 0.9641308 0.96836217 0.97193219 0.97478992 0.97689533\n", + " 0.9782193 0.97874367 0.98064379 0.9868521 0.99196368 0.99587944\n", + " 0.99852337 0.99984368 0.97811796 0.97703474 0.97476817 0.97136534\n", + " 0.96689796 0.96146242 0.9998817 0.99866821 0.9961281 0.99231122\n", + " 0.98729166 0.9811667 0.96149301 0.9670196 0.97158296 0.97508476\n", + " 0.9774513 0.97863353 0.97821282 0.97821282 0.97876273 0.97876273\n", + " 0.98054763 0.97944952 0.97715155 0.97370089 0.9691693 0.96365314\n", + " 0.98675268 0.98561714 0.98324039 0.97966996 0.97497788 0.9692605\n", + " 0.9918616 0.99069568 0.9882551 0.98458804 0.979767 0.97388848\n", + " 0.99577532 0.99458621 0.99209707 0.98835673 0.98343837 0.97743873\n", + " 0.99841789 0.9972131 0.99469118 0.99090157 0.985918 0.97983753\n", + " 0.9997375 0.99852487 0.99598656 0.99217236 0.98715635 0.98103576]]\n", + "DEBUG:root:radec2pix: xyfp Shape: (96, 2)\n", + "DEBUG:root:make_az_asym: xyp: [[-32.208296 -31.60697943]\n", + " [-32.20831882 -27.22055086]\n", + " [-32.20834163 -22.83412229]\n", + " [-32.20836444 -18.44769372]\n", + " [-32.20838725 -14.06126515]\n", + " [-32.20841007 -9.67483658]\n", + " [-32.20843288 -5.288408 ]\n", + " [-32.2084557 -0.90197943]\n", + " [-32.208296 -31.60697943]\n", + " [-27.82186743 -31.60695662]\n", + " [-23.43543886 -31.60693381]\n", + " [-19.04901029 -31.60691099]\n", + " [-14.66258171 -31.60688818]\n", + " [-10.27615314 -31.60686536]\n", + " [ -5.88972457 -31.60684255]\n", + " [ -1.503296 -31.60681974]\n", + " [-32.2084557 -0.90197943]\n", + " [-27.82202712 -0.90195662]\n", + " [-23.43559855 -0.9019338 ]\n", + " [-19.04916999 -0.90191099]\n", + " [-14.66274141 -0.90188818]\n", + " [-10.27631284 -0.90186536]\n", + " [ -5.88988428 -0.90184255]\n", + " [ -1.5034557 -0.90181973]\n", + " [ -1.503296 -31.60681974]\n", + " [ -1.50331881 -27.22039116]\n", + " [ -1.50334163 -22.83396259]\n", + " [ -1.50336444 -18.44753402]\n", + " [ -1.50338726 -14.06110544]\n", + " [ -1.50341007 -9.67467688]\n", + " [ -1.50343288 -5.2882483 ]\n", + " [ -1.5034557 -0.90181973]\n", + " [-32.19330594 -29.69447935]\n", + " [-32.19333391 -24.31847935]\n", + " [-32.19336187 -18.94247936]\n", + " [-32.19338983 -13.56647936]\n", + " [-32.19341779 -8.19047935]\n", + " [-32.19344575 -2.81447935]\n", + " [-30.29579608 -31.59196949]\n", + " [-24.91979608 -31.59194152]\n", + " [-19.54379608 -31.59191356]\n", + " [-14.16779608 -31.5918856 ]\n", + " [ -8.79179608 -31.59185764]\n", + " [ -3.41579608 -31.59182968]\n", + " [-30.29595562 -0.91696949]\n", + " [-24.91995562 -0.91694153]\n", + " [-19.54395562 -0.91691356]\n", + " [-14.16795562 -0.9168856 ]\n", + " [ -8.79195562 -0.91685764]\n", + " [ -3.41595563 -0.91682968]\n", + " [ -1.51830595 -29.69431981]\n", + " [ -1.51833391 -24.31831981]\n", + " [ -1.51836187 -18.94231981]\n", + " [ -1.51838983 -13.56631981]\n", + " [ -1.51841779 -8.19031981]\n", + " [ -1.51844575 -2.81431982]\n", + " [-32.19329608 -31.59197936]\n", + " [-32.19329608 -31.59197936]\n", + " [ -1.51845562 -0.91681981]\n", + " [ -1.51845562 -0.91681981]\n", + " [-30.29580595 -29.69446949]\n", + " [-24.91980594 -29.69444152]\n", + " [-19.54380595 -29.69441356]\n", + " [-14.16780595 -29.69438561]\n", + " [ -8.79180595 -29.69435764]\n", + " [ -3.41580595 -29.69432968]\n", + " [-30.29583391 -24.31846949]\n", + " [-24.91983391 -24.31844152]\n", + " [-19.54383391 -24.31841356]\n", + " [-14.16783391 -24.31838561]\n", + " [ -8.79183391 -24.31835764]\n", + " [ -3.41583391 -24.31832968]\n", + " [-30.29586187 -18.94246949]\n", + " [-24.91986187 -18.94244153]\n", + " [-19.54386187 -18.94241356]\n", + " [-14.16786187 -18.94238561]\n", + " [ -8.79186187 -18.94235764]\n", + " [ -3.41586187 -18.94232969]\n", + " [-30.29588983 -13.56646949]\n", + " [-24.91988983 -13.56644152]\n", + " [-19.54388984 -13.56641357]\n", + " [-14.16788983 -13.5663856 ]\n", + " [ -8.79188983 -13.56635764]\n", + " [ -3.41588983 -13.56632968]\n", + " [-30.29591779 -8.19046949]\n", + " [-24.91991779 -8.19044152]\n", + " [-19.54391779 -8.19041356]\n", + " [-14.16791779 -8.1903856 ]\n", + " [ -8.79191779 -8.19035764]\n", + " [ -3.41591779 -8.19032968]\n", + " [-30.29594575 -2.81446949]\n", + " [-24.91994576 -2.81444153]\n", + " [-19.54394575 -2.81441356]\n", + " [-14.16794576 -2.8143856 ]\n", + " [ -8.79194575 -2.81435764]\n", + " [ -3.41594575 -2.81432968]]\n", + "DEBUG:root:radec2pix: curVec: [[ 2.88445129e-02 6.43597186e-01 -7.64820669e-01]\n", + " [ 6.94845009e-03 6.31668266e-01 -7.75207663e-01]\n", + " [-1.53145449e-02 6.18920095e-01 -7.85304642e-01]\n", + " [-3.78580640e-02 6.05390241e-01 -7.95027938e-01]\n", + " [-6.05952783e-02 5.91120399e-01 -8.04303976e-01]\n", + " [-8.34387138e-02 5.76156602e-01 -8.13069216e-01]\n", + " [-1.06300198e-01 5.60549650e-01 -8.21269966e-01]\n", + " [-1.29091082e-01 5.44355464e-01 -8.28862245e-01]\n", + " [ 2.88445129e-02 6.43597186e-01 -7.64820669e-01]\n", + " [ 4.67064563e-02 6.27612653e-01 -7.77123455e-01]\n", + " [ 6.48016483e-02 6.10739622e-01 -7.89175431e-01]\n", + " [ 8.30613498e-02 5.93031091e-01 -8.00883848e-01]\n", + " [ 1.01416372e-01 5.74544198e-01 -8.12166045e-01]\n", + " [ 1.19796860e-01 5.55340477e-01 -8.22949371e-01]\n", + " [ 1.38132298e-01 5.35486333e-01 -8.33170964e-01]\n", + " [ 1.56351783e-01 5.15053409e-01 -8.42777614e-01]\n", + " [-1.29091082e-01 5.44355464e-01 -8.28862245e-01]\n", + " [-1.12048761e-01 5.26945933e-01 -8.42480302e-01]\n", + " [-9.45699500e-02 5.08755848e-01 -8.55700889e-01]\n", + " [-7.67197383e-02 4.89834883e-01 -8.68432996e-01]\n", + " [-5.85639181e-02 4.70237523e-01 -8.80594651e-01]\n", + " [-4.01701488e-02 4.50024437e-01 -8.92112305e-01]\n", + " [-2.16085711e-02 4.29263365e-01 -9.02920834e-01]\n", + " [-2.95170844e-03 4.08029263e-01 -9.12964078e-01]\n", + " [ 1.56351783e-01 5.15053409e-01 -8.42777614e-01]\n", + " [ 1.34766073e-01 5.01587890e-01 -8.54545314e-01]\n", + " [ 1.12649888e-01 4.87447192e-01 -8.65855206e-01]\n", + " [ 9.00852406e-02 4.72666303e-01 -8.76624900e-01]\n", + " [ 6.71553818e-02 4.57285044e-01 -8.86781001e-01]\n", + " [ 4.39461374e-02 4.41349144e-01 -8.96258707e-01]\n", + " [ 2.05464960e-02 4.24910904e-01 -9.05001970e-01]\n", + " [-2.95170844e-03 4.08029263e-01 -9.12964078e-01]\n", + " [ 1.94089135e-02 6.38445612e-01 -7.69422182e-01]\n", + " [-7.68485346e-03 6.23268988e-01 -7.81969764e-01]\n", + " [-3.52440699e-02 6.06898751e-01 -7.93997331e-01]\n", + " [-6.31090735e-02 5.89409952e-01 -8.05365229e-01]\n", + " [-9.11188202e-02 5.70887385e-01 -8.15956466e-01]\n", + " [-1.19110766e-01 5.51426687e-01 -8.25676229e-01]\n", + " [ 3.65251001e-02 6.36700583e-01 -7.70245601e-01]\n", + " [ 5.85821352e-02 6.16504861e-01 -7.85168701e-01]\n", + " [ 8.09214045e-02 5.95026818e-01 -7.99621668e-01]\n", + " [ 1.03415735e-01 5.72369928e-01 -8.13448125e-01]\n", + " [ 1.25936526e-01 5.48647526e-01 -8.26514297e-01]\n", + " [ 1.48353776e-01 5.23984030e-01 -8.38708467e-01]\n", + " [-1.21640390e-01 5.36920384e-01 -8.34817415e-01]\n", + " [-1.00450769e-01 5.15052838e-01 -8.51252147e-01]\n", + " [-7.86703293e-02 4.92061663e-01 -8.66998442e-01]\n", + " [-5.64198388e-02 4.68045095e-01 -8.81901690e-01]\n", + " [-3.38239329e-02 4.43114924e-01 -8.95826493e-01]\n", + " [-1.10127644e-02 4.17398874e-01 -9.08656645e-01]\n", + " [ 1.46948554e-01 5.09338542e-01 -8.47927103e-01]\n", + " [ 1.20125441e-01 4.92377647e-01 -8.62052279e-01]\n", + " [ 9.25870855e-02 4.74436765e-01 -8.75406984e-01]\n", + " [ 6.44861566e-02 4.55587141e-01 -8.87852405e-01]\n", + " [ 3.59807298e-02 4.35913035e-01 -8.99269266e-01]\n", + " [ 7.23586282e-03 4.15513505e-01 -9.09558228e-01]\n", + " [ 2.88309649e-02 6.43504735e-01 -7.64898968e-01]\n", + " [ 2.88309649e-02 6.43504735e-01 -7.64898968e-01]\n", + " [-2.93516936e-03 4.08161004e-01 -9.12905241e-01]\n", + " [-2.93516936e-03 4.08161004e-01 -9.12905241e-01]\n", + " [ 2.70942993e-02 6.31592898e-01 -7.74826632e-01]\n", + " [ 4.91395463e-02 6.11264478e-01 -7.89899388e-01]\n", + " [ 7.14864365e-02 5.89660842e-01 -8.04481063e-01]\n", + " [ 9.40079021e-02 5.66884985e-01 -8.18415499e-01]\n", + " [ 1.16575187e-01 5.43049776e-01 -8.31569099e-01]\n", + " [ 1.39057876e-01 5.18279478e-01 -8.43830131e-01]\n", + " [-3.46585686e-05 6.16285877e-01 -7.87522518e-01]\n", + " [ 2.19477330e-02 5.95603653e-01 -8.02978571e-01]\n", + " [ 4.42868792e-02 5.73668366e-01 -8.17889527e-01]\n", + " [ 6.68561748e-02 5.50581274e-01 -8.32100062e-01]\n", + " [ 8.95265825e-02 5.26453928e-01 -8.45476938e-01]\n", + " [ 1.12166593e-01 5.01410371e-01 -8.57908093e-01]\n", + " [-2.76446356e-02 5.99795778e-01 -7.99675433e-01]\n", + " [-5.76946447e-03 5.78791656e-01 -8.15455046e-01]\n", + " [ 1.65174142e-02 5.56559233e-01 -8.30643723e-01]\n", + " [ 3.90902397e-02 5.33197996e-01 -8.45086889e-01]\n", + " [ 6.18201261e-02 5.08818519e-01 -8.58651260e-01]\n", + " [ 8.45748320e-02 4.83545082e-01 -8.71223996e-01]\n", + " [-5.55761417e-02 5.82197216e-01 -8.11145914e-01]\n", + " [-3.38532797e-02 5.60901521e-01 -8.27190086e-01]\n", + " [-1.16642799e-02 5.38404924e-01 -8.42605532e-01]\n", + " [ 1.08663684e-02 5.14805618e-01 -8.57238064e-01]\n", + " [ 3.36105036e-02 4.90213803e-01 -8.70953937e-01]\n", + " [ 5.64357407e-02 4.64754477e-01 -8.83639227e-01]\n", + " [-8.36680347e-02 5.63574533e-01 -8.21817136e-01]\n", + " [-6.21423911e-02 5.42016327e-01 -8.38067196e-01]\n", + " [-4.00969799e-02 5.19287646e-01 -8.53658347e-01]\n", + " [-1.76547131e-02 4.95486152e-01 -8.68436402e-01]\n", + " [ 5.05752114e-03 4.70722343e-01 -8.82266908e-01]\n", + " [ 2.79078778e-02 4.45122292e-01 -8.95034801e-01]\n", + " [-1.11757358e-01 5.44023170e-01 -8.31594302e-01]\n", + " [-9.04726241e-02 5.22231178e-01 -8.47991333e-01]\n", + " [-6.86154410e-02 4.99302657e-01 -8.63706419e-01]\n", + " [-4.63070975e-02 4.75335560e-01 -8.78585089e-01]\n", + " [-2.36728415e-02 4.50441266e-01 -8.92492164e-01]\n", + " [-8.43352555e-04 4.24747074e-01 -9.05311666e-01]]\n", + "DEBUG:root:radec2pix: curVec Shape: (96, 3)\n", + "DEBUG:root:radec2pix: xyfp: [[ 0.173161 -31.45819714]\n", + " [ 0.17304708 -27.07176857]\n", + " [ 0.17293316 -22.68534 ]\n", + " [ 0.17281925 -18.29891143]\n", + " [ 0.17270533 -13.91248287]\n", + " [ 0.17259141 -9.52605429]\n", + " [ 0.17247749 -5.13962573]\n", + " [ 0.17236358 -0.75319715]\n", + " [ 0.173161 -31.45819714]\n", + " [ 4.55958957 -31.45808322]\n", + " [ 8.94601814 -31.45796931]\n", + " [ 13.33244671 -31.45785538]\n", + " [ 17.71887528 -31.45774147]\n", + " [ 22.10530385 -31.45762756]\n", + " [ 26.49173242 -31.45751363]\n", + " [ 30.87816099 -31.45739971]\n", + " [ 0.17236358 -0.75319715]\n", + " [ 4.55879215 -0.75308323]\n", + " [ 8.94522072 -0.75296932]\n", + " [ 13.33164929 -0.7528554 ]\n", + " [ 17.71807786 -0.75274148]\n", + " [ 22.10450643 -0.75262756]\n", + " [ 26.490935 -0.75251364]\n", + " [ 30.87736356 -0.75239973]\n", + " [ 30.87816099 -31.45739971]\n", + " [ 30.87804707 -27.07097114]\n", + " [ 30.87793315 -22.68454257]\n", + " [ 30.87781924 -18.29811401]\n", + " [ 30.87770532 -13.91168544]\n", + " [ 30.87759141 -9.52525687]\n", + " [ 30.87747749 -5.1388283 ]\n", + " [ 30.87736356 -0.75239973]\n", + " [ 0.18811133 -29.54569675]\n", + " [ 0.18797171 -24.16969676]\n", + " [ 0.1878321 -18.79369675]\n", + " [ 0.18769248 -13.41769676]\n", + " [ 0.18755286 -8.04169676]\n", + " [ 0.18741324 -2.66569676]\n", + " [ 2.08566061 -31.44314748]\n", + " [ 7.46166061 -31.44300785]\n", + " [ 12.83766061 -31.44286824]\n", + " [ 18.2136606 -31.44272862]\n", + " [ 23.5896606 -31.442589 ]\n", + " [ 28.9656606 -31.44244938]\n", + " [ 2.08486397 -0.76814748]\n", + " [ 7.46086396 -0.76800786]\n", + " [ 12.83686396 -0.76786825]\n", + " [ 18.21286396 -0.76772863]\n", + " [ 23.58886395 -0.76758901]\n", + " [ 28.96486395 -0.7674494 ]\n", + " [ 30.86311132 -29.54490011]\n", + " [ 30.86297171 -24.16890011]\n", + " [ 30.86283209 -18.79290011]\n", + " [ 30.86269247 -13.41690011]\n", + " [ 30.86255285 -8.04090011]\n", + " [ 30.86241323 -2.66490012]\n", + " [ 0.18816061 -31.44319675]\n", + " [ 0.18816061 -31.44319675]\n", + " [ 30.86236396 -0.76740012]\n", + " [ 30.86236396 -0.76740012]\n", + " [ 2.08561133 -29.54564748]\n", + " [ 7.46161133 -29.54550785]\n", + " [ 12.83761133 -29.54536824]\n", + " [ 18.21361133 -29.54522862]\n", + " [ 23.58961132 -29.545089 ]\n", + " [ 28.96561132 -29.54494938]\n", + " [ 2.08547171 -24.16964747]\n", + " [ 7.46147171 -24.16950786]\n", + " [ 12.83747171 -24.16936824]\n", + " [ 18.21347171 -24.16922862]\n", + " [ 23.58947171 -24.16908901]\n", + " [ 28.9654717 -24.16894939]\n", + " [ 2.0853321 -18.79364747]\n", + " [ 7.46133209 -18.79350785]\n", + " [ 12.83733209 -18.79336824]\n", + " [ 18.21333209 -18.79322862]\n", + " [ 23.58933209 -18.79308901]\n", + " [ 28.96533209 -18.79294939]\n", + " [ 2.08519248 -13.41764748]\n", + " [ 7.46119248 -13.41750786]\n", + " [ 12.83719247 -13.41736824]\n", + " [ 18.21319248 -13.41722863]\n", + " [ 23.58919247 -13.41708901]\n", + " [ 28.96519247 -13.41694939]\n", + " [ 2.08505286 -8.04164748]\n", + " [ 7.46105286 -8.04150786]\n", + " [ 12.83705286 -8.04136825]\n", + " [ 18.21305286 -8.04122863]\n", + " [ 23.58905286 -8.04108901]\n", + " [ 28.96505285 -8.04094939]\n", + " [ 2.08491324 -2.66564748]\n", + " [ 7.46091324 -2.66550786]\n", + " [ 12.83691324 -2.66536825]\n", + " [ 18.21291324 -2.66522863]\n", + " [ 23.58891323 -2.66508901]\n", + " [ 28.96491324 -2.66494939]]\n", + "DEBUG:root:radec2pix: fitpx: [[2135.5 4155.50000025]\n", + " [2135.5 3863.07142842]\n", + " [2135.5 3570.64285705]\n", + " [2135.5 3278.21428595]\n", + " [2135.50000001 2985.78571392]\n", + " [2135.5 2693.35714283]\n", + " [2135.49999998 2400.92857178]\n", + " [2135.49999997 2108.50000011]\n", + " [2135.5 4155.50000025]\n", + " [1843.07142855 4155.50000014]\n", + " [1550.64285713 4155.50000003]\n", + " [1258.21428573 4155.49999997]\n", + " [ 965.78571432 4155.49999994]\n", + " [ 673.35714273 4155.50000018]\n", + " [ 380.92857156 4155.49999985]\n", + " [ 88.49999978 4155.50000022]\n", + " [2135.49999997 2108.50000011]\n", + " [1843.07142854 2108.50000001]\n", + " [1550.64285742 2108.49999997]\n", + " [1258.21428585 2108.49999999]\n", + " [ 965.78571387 2108.50000002]\n", + " [ 673.35714329 2108.49999998]\n", + " [ 380.92857158 2108.5 ]\n", + " [ 88.4999998 2108.50000001]\n", + " [ 88.49999978 4155.50000022]\n", + " [ 88.50000021 3863.07142839]\n", + " [ 88.50000011 3570.64285706]\n", + " [ 88.50000015 3278.21428562]\n", + " [ 88.49999997 2985.7857143 ]\n", + " [ 88.49999979 2693.35714292]\n", + " [ 88.49999995 2400.92857144]\n", + " [ 88.4999998 2108.50000001]\n", + " [2134.5 4027.99999985]\n", + " [2134.5 3669.59999985]\n", + " [2134.49999999 3311.20000044]\n", + " [2134.5 2952.7999998 ]\n", + " [2134.5 2594.40000013]\n", + " [2134.50000001 2235.99999985]\n", + " [2007.99999998 4154.50000028]\n", + " [1649.59999995 4154.50000021]\n", + " [1291.20000012 4154.49999971]\n", + " [ 932.8 4154.5 ]\n", + " [ 574.40000006 4154.49999992]\n", + " [ 215.99999986 4154.50000015]\n", + " [2007.99999994 2109.50000002]\n", + " [1649.60000009 2109.49999999]\n", + " [1291.20000007 2109.5 ]\n", + " [ 932.80000034 2109.49999998]\n", + " [ 574.40000029 2109.49999999]\n", + " [ 216.00000015 2109.5 ]\n", + " [ 89.50000013 4027.99999988]\n", + " [ 89.50000024 3669.59999981]\n", + " [ 89.50000003 3311.19999998]\n", + " [ 89.49999973 2952.80000012]\n", + " [ 89.49999991 2594.40000002]\n", + " [ 89.50000029 2235.99999997]\n", + " [2134.5 4154.50000026]\n", + " [2134.5 4154.50000026]\n", + " [ 89.50000019 2109.49999999]\n", + " [ 89.50000019 2109.49999999]\n", + " [2008. 4027.99999998]\n", + " [1649.6 4027.99999999]\n", + " [1291.19999989 4028.00000025]\n", + " [ 932.79999995 4028.00000008]\n", + " [ 574.3999998 4028.00000025]\n", + " [ 215.99999992 4028.00000008]\n", + " [2008.00000001 3669.59999984]\n", + " [1649.60000007 3669.59999979]\n", + " [1291.19999996 3669.60000008]\n", + " [ 932.80000004 3669.59999994]\n", + " [ 574.39999995 3669.60000006]\n", + " [ 216.00000005 3669.59999995]\n", + " [2007.99999998 3311.2000002 ]\n", + " [1649.59999994 3311.20000015]\n", + " [1291.20000016 3311.19999976]\n", + " [ 932.80000015 3311.19999985]\n", + " [ 574.40000019 3311.19999985]\n", + " [ 216.00000023 3311.19999985]\n", + " [2007.99999995 2952.80000031]\n", + " [1649.60000003 2952.79999994]\n", + " [1291.19999981 2952.80000019]\n", + " [ 932.79999986 2952.8000001 ]\n", + " [ 574.39999987 2952.80000007]\n", + " [ 216.00000004 2952.79999998]\n", + " [2007.99999998 2594.40000008]\n", + " [1649.60000021 2594.39999977]\n", + " [1291.19999986 2594.40000009]\n", + " [ 932.80000028 2594.39999988]\n", + " [ 574.39999984 2594.40000006]\n", + " [ 216.00000019 2594.39999995]\n", + " [2007.99999983 2236.00000022]\n", + " [1649.60000014 2235.99999995]\n", + " [1291.19999989 2236.00000002]\n", + " [ 932.80000032 2235.99999995]\n", + " [ 574.40000023 2235.99999997]\n", + " [ 216.00000006 2235.99999999]]\n", + " 0.08913848 0.09004163 0.DEBUG:root:radec2pix: camVec Shape: (3, 96)\n", + "09077781 0.09134344 0.09173387 0.09194479\n", + " 0.0538804 0.0544282 0.05487585 0.05522072 0.05545959 0.05558951\n", + " 0.018307 0.01849597 0.01865108 0.01877134 0.01885557 0.01890269]\n", + " [0.95758866 0.96239353 0.96661025 0.97017582 0.97303851 0.97515771\n", + " 0.9765038 0.97705813 0.95758866 0.96250106 0.96683156 0.9705155\n", + " 0.97349956 0.97574149 0.97721007 0.97788502 0.97705813 0.98262014\n", + " 0.98750643 0.99165333 0.99500728 0.99752486 0.99917322 0.99993064\n", + " 0.97788502 0.98335097 0.98813132 0.9921639 0.99539662 0.99778762\n", + " 0.99930564 0.99993064 0.9597694 0.96527198 0.96982717 0.97333506\n", + " 0.97572086 0.97693461 0.95981506 0.96545384 0.97015298 0.97380957\n", + " 0.97634587 0.97770893 0.97956122 0.98593216 0.99122376 0.99533322\n", + " 0.99818069 0.99971026 0.98034713 0.98659349 0.99174716 0.99570809\n", + " 0.99839923 0.99976769 0.95762372 0.95762372 0.99992898 0.99992898\n", + " 0.96199495 0.96771922 0.97248704 0.97619571 0.97876753 0.9801495\n", + " 0.96758278 0.97352009 0.97845943 0.98229851 0.98495952 0.98638907\n", + " 0.97220607 0.9783139 0.98339112 0.98733555 0.99006893 0.99153721\n", + " 0.97576509 0.98200129 0.98718283 0.99120735 0.99399598 0.9954939\n", + " 0.97818511 0.98450743 0.98975924 0.99383794 0.99666407 0.99818215\n", + " 0.97941611 0.98578194 0.99106934 0.99517556 0.99802078 0.99954914]]\n", + "DEBUG:root:radec2pix: camVec Shape: (3, 96)\n", + "DEBUG:root:radec2pix: camVec: [[-0.20607518 -0.20787446 -0.20940354 -0.21066179 -0.21164814 -0.21236112\n", + " -0.21279916 -0.21296107 -0.20607518 -0.17964954 -0.15251864 -0.12479221\n", + " -0.09658011 -0.06799262 -0.03914089 -0.01013708 -0.21296107 -0.18561075\n", + " -0.15755214 -0.12888979 -0.09972928 -0.07017922 -0.04035219 -0.01036463\n", + " -0.01013708 -0.01020871 -0.01026764 -0.01031373 -0.01034674 -0.01036638\n", + " -0.0103724 -0.01036463 -0.20680345 -0.20882603 -0.21044235 -0.21165063\n", + " -0.2124482 -0.2128323 -0.19465346 -0.16177694 -0.12795009 -0.0933751\n", + " -0.05825505 -0.022795 -0.20112996 -0.16711987 -0.13214975 -0.09641349\n", + " -0.0601111 -0.02345151 -0.01026957 -0.0103498 -0.01041065 -0.01045169\n", + " -0.01047241 -0.01047238 -0.20599275 -0.20599275 -0.01046737 -0.01046737\n", + " -0.19541667 -0.16240545 -0.12844349 -0.09373247 -0.05847519 -0.02287686\n", + " -0.19732118 -0.16397526 -0.12967711 -0.09462661 -0.05902568 -0.02308015\n", + " -0.19884383 -0.16523235 -0.13066656 -0.09534433 -0.05946678 -0.02324061\n", + " -0.19998259 -0.16617376 -0.13140827 -0.09588212 -0.05979589 -0.0233572\n", + " -0.20073433 -0.16679525 -0.13189744 -0.09623556 -0.06000982 -0.02342863\n", + " -0.20109591 -0.16709274 -0.13212968 -0.09640067 -0.06010576 -0.0234538 ]\n", + " [-0.20019593 -0.17367087 -0.14646307 -0.11868235 -0.09043873 -0.0618427\n", + " -0.03300558 -0.0040396 -0.20019593 -0.20202839 -0.20359907 -0.20490731\n", + " -0.20595196 -0.20673135 -0.20724368 -0.20748743 -0.0040396 -0.00409191\n", + " -0.0041395 -0.00418225 -0.00421998 -0.00425248 -0.00427955 -0.00430103\n", + " -0.20748743 -0.17998755 -0.15180051 -0.12303089 -0.0937848 -0.06417157\n", + " -0.03430461 -0.00430103 -0.18872819 -0.15574492 -0.12184525 -0DEBUG:root:optics_fp: cphi: [0.71341716 0.76328013 0.81514194 0.86698087 0.91566575 0.95700502\n", + " 0.98630354 0.99950918 0.71341716 0.66051768 0.59557134 0.51643629\n", + " 0.4214805 0.31036993 0.18497457 0.04990581 0.99950918 0.99934039\n", + " 0.99906819 0.99858739 0.99761569 0.9951653 0.98558541 0.8377988\n", + " 0.04990581 0.05781889 0.0687377 0.08476872 0.11057085 0.15882919\n", + " 0.27935111 0.8377988 0.73466528 0.79733703 0.86111952 0.92071715\n", + " 0.96846887 0.9959178 0.69186293 0.61921532 0.52631184 0.40990453\n", + " 0.26948104 0.10963271 0.999428 0.999152 0.99861839 0.99737128\n", + " 0.99322638 0.95832228 0.05357183 0.06521663 0.08337359 0.1155749\n", + " 0.18791565 0.47564444 0.71341996 0.71341996 0.83653968 0.83653968\n", + " 0.71379735 0.6426352 0.54988271 0.43124184 0.28525093 0.11649124\n", + " 0.77925087 0.71517941 0.62617339 0.50367681 0.34120915 0.14155583\n", + " 0.8471183 0.79527459 0.71732418 0.59864658 0.42182798 0.18020046\n", + " 0.91180529 0.87721591 0.82023759 0.72110338 0.54370846 0.24707693\n", + " 0.96461215 0.94899507 0.92085832 0.86374835 0.72953296 0.3869314\n", + " 0.99539279 0.99320908 0.98902871 0.97944976 0.94931741 0.76479745]\n", + "DEBUG:root:mm_to_pix: fitpx: [[0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]]\n", + ".0872316DEBUG:root:fitpix2pix: ccdpx: shape: (96, 2)\n", + "DEBUG:root:radec2pix: ccdpx: [[-4.45000000e+01 -4.99999973e-01]\n", + " [-4.45000000e+01 2.91928572e+02]\n", + " [-4.45000000e+01 5.84357143e+02]\n", + " [-4.45000000e+01 8.76785714e+02]\n", + " [-4.45000000e+01 1.16921429e+03]\n", + " [-4.45000000e+01 1.46164286e+03]\n", + " [-4.45000000e+01 1.75407143e+03]\n", + " [-4.45000000e+01 2.04650000e+03]\n", + " [-4.45000000e+01 -4.99999973e-01]\n", + " [ 2.47928571e+02 -4.99999766e-01]\n", + " [ 5.40357143e+02 -5.00000023e-01]\n", + " [ 8.32785714e+02 -4.99999798e-01]\n", + " [ 1.12521429e+03 -5.00000229e-01]\n", + " [ 1.41764286e+03 -5.00000231e-01]\n", + " [ 1.71007143e+03 -4.99999870e-01]\n", + " [ 2.00250000e+03 -4.99999884e-01]\n", + " [-4.45000000e+01 2.04650000e+03]\n", + " [ 2.47928571e+02 2.04650000e+03]\n", + " [ 5.40357143e+02 2.04650000e+03]\n", + " [ 8.32785714e+02 2.04650000e+03]\n", + " [ 1.12521429e+03 2.04650000e+03]\n", + " [ 1.41764286e+03 2.04650000e+03]\n", + " [ 1.71007143e+03 2.04650000e+03]\n", + " [ 2.00250000e+03 2.04650000e+03]\n", + " [ 2.00250000e+03 -4.99999884e-01]\n", + " [ 2.00250000e+03 2.91928572e+02]\n", + " [ 2.00250000e+03 5.84357143e+02]\n", + " [ 2.00250000e+03 8.76785714e+02]\n", + " [ 2.00250000e+03 1.16921429e+03]\n", + " [ 2.00250000e+03 1.46164286e+03]\n", + " [ 2.00250000e+03 1.75407143e+03]\n", + " [ 2.00250000e+03 2.04650000e+03]\n", + " [-4.35000000e+01 1.27000000e+02]\n", + " [-4.35000000e+01 4.85400000e+02]\n", + " [-4.35000000e+01 8.43800000e+02]\n", + " [-4.35000000e+01 1.20220000e+03]\n", + " [-4.35000000e+01 1.56060000e+03]\n", + " [-4.35000000e+01 1.91900000e+03]\n", + " [ 8.30000000e+01 4.99999770e-01]\n", + " [ 4.41400000e+02 5.00000267e-01]\n", + " [ 7.99800000e+02 4.99999825e-01]\n", + " [ 1.15820000e+03 5.00000071e-01]\n", + " [ 1.51660000e+03 5.00000113e-01]\n", + " [ 1.87500000e+03 5.00000214e-01]\n", + " [ 8.30000000e+01 2.04550000e+03]\n", + " [ 4.41400000e+02 2.04550000e+03]\n", + " [ 7.99800000e+02 2.04550000e+03]\n", + " [ 1.15820000e+03 2.04550000e+03]\n", + " [ 1.51660000e+03 2.04550000e+03]\n", + " [ 1.87500000e+03 2.04550000e+03]\n", + " [ 2.00150000e+03 1.27000000e+02]\n", + " [ 2.00150000e+03 4.85400000e+02]\n", + " [ 2.00150000e+03 8.43800000e+02]\n", + " [ 2.00150000e+03 1.20220000e+03]\n", + " [ 2.00150000e+03 1.56060000e+03]\n", + " 715e+02]\n", + " [ 2.00250000e+03 1.16921429e+03]\n", + " [ 2.00250000e+03 1.46164286e+03]\n", + " [ 2.00250000e+03 1.75407143e+03]\n", + " [ 2.00250000e+03 2.04650000e+03]\n", + " [-4.34999998e+01 1.27000000e+02]\n", + " [-4.35000000e+01 4.85400000e+02]\n", + " [-4.35000001e+01 8.43800000e+02]\n", + " [-4.35000000e+01 1.20220000e+03]\n", + " [-4.35000001e+01 1.56060000e+03]\n", + " [-4.34999999e+01 1.91900000e+03]\n", + " [ 8.30000001e+01 5.00000092e-01]\n", + " [ 4.41400000e+02 4.99999764e-01]\n", + " [ 7.99800000e+02 4.99999911e-01]\n", + " [ 1.15820000e+03 5.00000156e-01]\n", + " [ 1.51660000e+03 4.99999840e-01]\n", + " [ 1.87500000e+03 4.99999915e-01]\n", + " [ 8.29999998e+01 2.04550000e+03]\n", + " [ 4.41400000e+02 2.04550000e+03]\n", + " [ 7.99800000e+02 2.04550000e+03]\n", + " [ 1.15820000e+03 2.04550000e+03]\n", + " [ 1.51660000e+03 2.04550000e+03]\n", + " [ 1.87500000e+03 2.04550000e+03]\n", + " [ 2.00150000e+03 1.27000000e+02]\n", + " [ 2.00150000e+03 4.85400000e+02]\n", + " [ 2.00150000e+03 8.43800000e+02]\n", + " [ 2.00150000e+03 1.20220000e+03]\n", + " [ 2.00150000e+03 1.56060000e+03]\n", + " [ 2.00150000e+03 1.91900000e+03]\n", + " [-4.350000DEBUG:root:cartToSphere: vec: [[0.20582147 0.20164691 0.95758866]\n", + " [0.20765008 0.17515749 0.96239353]\n", + " [0.20920683 0.1479768 0.96661025]\n", + " [0.21049219 0.12021614 0.97017582]\n", + " [0.21150557 0.09198614 0.97303851]\n", + " [0.2122456 0.06339752 0.97515771]\n", + " [0.21271065 0.03456171 0.9765038 ]\n", + " [0.21289938 0.00559103 0.97705813]\n", + " [0.20582147 0.20164691 0.95758866]\n", + " [0.17940403 0.2034844 0.96250106]\n", + " [0.15227891 0.20505578 0.96683156]\n", + " [0.12455745 0.20636157 0.9705155 ]\n", + " [0.09635017 0.2074012 0.97349956]\n", + " [0.06776763 0.20817322 0.97574149]\n", + " [0.03892112 0.20867589 0.97721007]\n", + " [0.00992292 0.20890768 0.97788502]\n", + " [0.21289938 0.00559103 0.97705813]\n", + " [0.18554193 0.00564441 0.98262014]\n", + " [0.15747589 0.00569099 0.98750643]\n", + " [0.1288054 0.00573063 0.99165333]\n", + " [0.09963586 0.00576317 0.99500728]\n", + " [0.07007602 0.00578837 0.99752486]\n", + " [0.04023879 0.00580605 0.99917322]\n", + " [0.01024104 0.00581605 0.99993064]\n", + " [0.00992292 0.20890768 0.97788502]\n", + " [0.01000636 0.18144072 0.98335097]\n", + " [0.01007758 0.15328055 0.98813132[ 2.00150000e+03 1.91900000e+03]\n", + " [-4.35000000e+01 5.00000284e-01]\n", + " [-4.35000000e+01 5.00000284e-01]\n", + " [ 2.00150000e+03 2.04550000e+03]\n", + " [ 2.00150000e+03 2.04550000e+03]\n", + " [ 8.30000000e+01 1.27000000e+02]\n", + " [ 4.41400000e+02 1.27000000e+02]\n", + " [ 7.99800000e+02 1.27000000e+02]\n", + " [ 1.15820000e+03 1.27000000e+02]\n", + " [ 1.51660000e+03 1.27000000e+02]\n", + " [ 1.87500000e+03 1.27000000e+02]\n", + " [ 8.30000000e+01 4.85400000e+02]\n", + " [ 4.41400000e+02 4.85400000e+02]\n", + " [ 7.99800000e+02 4.85400000e+02]\n", + " [ 1.15820000e+03 4.85400000e+02]\n", + " [ 1.51660000e+03 4.85400000e+02]\n", + " [ 1.87500000e+03 4.85400000e+02]\n", + " [ 8.30000000e+01 8.43800000e+02]\n", + " [ 4.41400000e+02 8.43800000e+02]\n", + " [ 7.99800000e+02 8.43800000e+02]\n", + " [ 1.15820000e+03 8.43800000e+02]\n", + " [ 1.51660000e+03 8.43800000e+02]\n", + " [ 1.87500000e+03 8.43800000e+02]\n", + " [ 8.30000000e+01 1.20220000e+03]\n", + " [ 4.41400000e+02 1.20220000e+03]\n", + " [ 7.99800000e+02 1.20220000e+03]\n", + " [ 1.15820000e+03 1.20220000e+03]\n", + " [ 1.51660000e+03 1.20220000e+03]\n", + " [ 1.87500000e+03 1.20220000e+03]\n", + " [ 8.30000000e+01 1.56060000e+03]\n", + " [ 4.41400000e+02 1.56060000e+03]\n", + " [ 7.99800000e+02 1.56060000e+03]\n", + " [ 1.15820000e+03 1.56060000e+03]\n", + " [ 1.51660000e+03 1.56060000e+03]\n", + " [ 1.87500000e+03 1.56060000e+03]\n", + " [ 8.30000000e+01 1.91900000e+03]\n", + " [ 4.41400000e+02 1.91900000e+03]\n", + " [ 7.99800000e+02 1.91900000e+03]\n", + " [ 1.15820000e+03 1.91900000e+03]\n", + " [ 1.51660000e+03 1.91900000e+03]\n", + " [ 1.87500000e+03 1.91900000e+03]]\n", + "DEBUG:root:make_az_asym: xyp: shape: (96, 2)\n", + "DEBUG:root:fitpix2pix: visCut: True\n", + "00e+01 4.99999958e-01]\n", + " [-4.35000000e+01 4.99999958e-01]\n", + " [ 2.00150000e+03 2.04550000e+03]\n", + " [ 2.00150000e+03 2.04550000e+03]\n", + " [ 8.30000002e+01 1.27000000e+02]\n", + " [ 4.41400000e+02 1.27000000e+02]\n", + " [ 7.99800000e+02 1.27000000e+02]\n", + " [ 1.15820000e+03 1.27000000e+02]\n", + " [ 1.51660000e+03 1.27000000e+02]\n", + " [ 1.87500000e+03 1.27000000e+02]\n", + " [ 8.29999999e+01 4.85400000e+02]\n", + " [ 4.41400000e+02 4.85400000e+02]\n", + " [ 7.99800000e+02 4.85400000e+02]\n", + " [ 1.15820000e+03 4.85400000e+02]\n", + " [ 1.51660000e+03 4.85400000e+02]\n", + " [ 1.87500000e+03 4.85400000e+02]\n", + " [ 8.30000001e+01 8.43800000e+02]\n", + " [ 4.41400000e+02 8.43800000e+02]\n", + " [ 7.99800000e+02 8.43800000e+02]\n", + " [ 1.15820000e+03 8.43800000e+02]\n", + " [ 1.51660000e+03 8.43800000e+02]\n", + " [ 1.87500000e+03 8.43800000e+02]\n", + " [ 8.29999999e+01 1.20220000e+03]\n", + " [ 4.41400000e+02 1.20220000e+03]\n", + " [ 7.99800000e+02 1.20220000e+03]\n", + " [ 1.15820000e+03 1.20220000e+03]\n", + " [ 1.51660000e+03 1.20220000e+03]\n", + " [ 1.87500000e+03 1.20220000e+03]\n", + " [ 8.29999999e+01 1.56060000e+03]\n", + " [ 4.41400000e+02 1.56060000e+03]\n", + " [ 7.99800000e+02 1.56060000e+03]\n", + " [ 1.15820000e+03 1.56060000e+03]\n", + " [ 1.51660000e+03 1.56060000e+03]\n", + " [ 1.87500000e+03 1.56060000e+03]\n", + " [ 8.29999998e+01 1.91900000e+03]\n", + " [ 4.41400000e+02 1.91900000e+03]\n", + " [ 7.99800000e+02 1.91900000e+03]\n", + " [ 1.15820000e+03 1.91900000e+03]\n", + " [ 1.51660000e+03 1.91900000e+03]\n", + " [ 1.87500000e+03 1.91900000e+03]]\n", + "]\n", + " [0.01013637 0.12453134 0.9921639 ]\n", + " [0.01018243 0.09529889 0.99539662]\n", + " [0.01021541 0.0656DEBUG:root:optics_fp: xyfp shape: (96, 2)\n", + "9253 0.99778762]\n", + " [0.01023502 0.0358258 0.99930564]\n", + " [0.01024104 0.00581605 0.99993064]\n", + " [0.20656285 0.19019593 0.9597694 ]\n", + " [0.20862007 0.15725033 0.96527198]\n", + " [0.2102697 0.12337711 0.96982717]\n", + " [0.2115111 0.08878017 0.97333506]\n", + " [0.21234181 0.0536634 0.97572086]\n", + " [0.21275892 0.01823232 0.97693461]\n", + " [0.19440388 0.20239118 0.95981506]\n", + " [0.16153549 0.20446311 0.96545384]\n", + " [0.12771486 0.20613616 0.97015298]\n", + " [0.09314577 0.2074097 0.97380957]\n", + " [0.05803185 0.20828117 0.97634587]\n", + " [0.02257838 0.20874739 0.97770893]\n", + " [0.20106508 0.00571471 0.97956122]\n", + " [0.16704611 0.00577657 0.98593216]\n", + " [0.13206625 0.00582791 0.99122376]\n", + " [0.09631893 0.00586841 0.99533322]\n", + " [0.06000442 0.00589767 0.99818069]\n", + " [0.02333228 0.00591534 0.99971026]\n", + " [0.01006049 0.19702358 0.98034713]\n", + " [0.01015553 0.16288078 0.98659349]\n", + " [0.01023184 0.12780019 0.99174716]\n", + " [0.01028888 0.0919758 0.99570809]\n", + " [0.01032605 0.05560896 0.99839923]\n", + " [0.01034279 0.01891032 0.99976769]\n", + " [0.2DEBUG:root:mm_to_pix: fitpx.shape: (96, 2)\n", + "0573918 0.20156436 0.95762372]\n", + " [0.20573918 0.20156436 0.95762372]\n", + " [0.01034376 0.00591876 0.99992898]\n", + " [0.01034376 0.00591876 0.99992898]\n", + " [0.19517916 0.19097333 0.96199495]\n", + " [0.16217419 0.19292238 0.96771922]\n", + " [0.12821715 0.19449762 0.97248704]\n", + " [0.09351091 0.19569785 0.97619571]\n", + " [0.05825864 0.19651986 0.97876753]\n", + " [0.02266572 0.19695996 0.9801495 ]\n", + " [0.19711638 0.15788822 0.96758278]\n", + " [0.16377271 0.15949023 0.97352009]\n", + " [0.12947641 0.1607887 0.97845943]\n", + " [0.09442771 0.16178086 0.98229851]\n", + " [0.05882858 0.16246211 0.98495952]\n", + " [0.02288505 0.16282774 0.98638907]\n", + " [0.19867107 0.12387558 0.97220607]\n", + " [0.16505894 0.1251298 0.9783139 ]\n", + " [0.13049231 0.12614936 0.98339112]\n", + " [0.09516891 0.12693065 0.98733555]\n", + " [0.05928988 0.1274685 0.99006893]\n", + " [0.02306224 0.12775798 0.99153721]\n", + " [0.19984199 0.08913848 0.97576509]\n", + " [0.16603002 0.09004163 0.98200129]\n", + " [0.13126104 0.09077781 0.98718283]\n", + " [0.09573072 0.09134344 0.99120735]\n", + " [0.0596397 0.09173387 0.99399598]\n", + " [0.02319607 0.09194479 0.9954939 ]\n", + " [0.20062602 0.0538804 0.97818511]\n", + " [0.16668139 0.0544282 0.98450743]\n", + " [0.13177743 0.05487585 0.98975924]\n", + " [0.09610838 0.05522072 0.99383794]\n", + " [0.05987462 0.05545959 0.99666407]\n", + " [0.02328514 0.05558951 0.99818215]\n", + " [0.20101976 0.018307 0.97941611]\n", + " [0.1670086 0.01849597 0.98578194]\n", + " [0.13203673 0.01865108 0.99106934]\n", + " [0.09629765 0.01877134 0.99517556]\n", + " [0.05999164 0.01885557 0.99802078]\n", + " [0.02332821 0.01890269 0.99954914]]\n", + "DEBUG:root:cartToSphere: vec: [[ 0.00152888 -0.20769103 0.97819328]\n", + " [ 0.00154215 -0.1801941 0.98362986]\n", + " [ 0.00155354 -0.15200928 0.98837785]\n", + " [ 0.00156302 -0.12324112 0.99237552]\n", + " [ 0.00157054 -0.09399571 0.99557136]\n", + " [ 0.00157606 -0.06438234 0.99792406]\n", + " [ 0.00157952 -0.03451442 0.99940295]\n", + " [ 0.00158089 -0.00450904 0.99998858]\n", + " [ 0.00152888 -0.20769103 0.97819328]\n", + " [ 0.03055413 -0.20754198 0.97774883]\n", + " [ 0.0594604 -0.20712371 0.97650613]\n", + " [ 0.08813528 -0.20643751 0.97448229]\n", + " [ 0.11646734 -0.2054851 0.97170532]\n", + " [ 0.14434605 -0.20426815 0.9682142 ]\n", + " [ 0.17166149 -0.20278791 0.96405881]\n", + " [ 0.1983039 -0.2010451 0.95929997]\n", + " [ 0.00158089 -0.00450904 0.99998858]\n", + " [ 0.03159291 -0.00450572 0.99949066]\n", + " [ 0.06147904 -0.00449643 0.99809825]\n", + " [ 0.0911219 -0.00448126 0.99582966]\n", + " [ 0.12040769 -0.00446035 0.99271451]\n", + " [ 0.14922671 -0.00443385 0.98879307]\n", + " [ 0.17747265 -0.00440189 0.98411589]\n", + " [ 0.2050409 -0.00436457 0.97874367]\n", + " [ 0.1983039 -0.2010451 0.95929997]\n", + " [ 0.20004855 -0.17444879 0.9641308 ]\n", + " [ 0.20153434 -0.14716869 0.96836217]\n", + " [ 0.2027606 -0.11931453 0.97193219]\n", + " [ 0.20372608 -0.09099614 0.97478992]\n", + " [ 0.20442907 -0.06232394 0.97689533]\n", + " [ 0.20486781 -0.03340929 0.9782193 ]\n", + " [ 0.2050409 -0.00436457 0.97874367]\n", + " [ 0.00163462 -0.1957935 0.98064379]\n", + " [ 0.00165059 -0.16161745 0.9868521 ]\n", + " [ 0.00166353 -0.12651199 0.99196368]\n", + " [ 0.00167335 -0.09067166 0.99587944]\n", + " [ 0.00167995 -0.05429781 0.99852337]\n", + " [ 0.00168324 -0.01760077 0.99984368]\n", + " [ 0.01419184 -0.20756647 0.97811796]\n", + " [ 0.04970047 -0.20720276 0.97703474]\n", + " [ 0.08491857 -0.20643606 0.97476817]\n", + " [ 0.11964057 -0.20526936 0.97136534]\n", + " [ 0.15366298 -0.20370571 0.96689796]\n", + " [ 0.18678351 -0.20174719 0.96146242]\n", + " [ 0.01467408 -0.00461102 0.9998817 ]\n", + " [ 0.05138704 -0.00460274 0.99866821]\n", + " [ 0.08779394 -0.00458538 0.9961281 ]\n", + " [ 0.12368372 -0.00455917 0.99231122]\n", + " [ 0.15885436 -0.0045244 0.98729166]\n", + " [ 0.19311093 -0.0044813 0.9811667 ]\n", + " [ 0.19900616 -0.18954613 0.96149301]\n", + " [ 0.20096941 -0.15647489 0.9670196 ]\n", + " [ 0.20254341 -0.12248558 0.97158296]\n", + " [ 0.2037261 -0.08778034 0.97508476]\n", + " [ 0.2045144 -0.05256249 0.9774513 ]\n", + " [ 0.20490517 -0.01703747 0.97863353]\n", + " [ 0.00162826 -0.20759824 0.97821282]\n", + " [ 0.00162826 -0.20759824 0.97821282]\n", + " [ 0.20494776 -0.00446412 0.97876273]\n", + " [ 0.20494776 -0.00446412 0.97876273]\n", + " [ 0.01424722 -0.19576354 0.98054763]\n", + " [ 0.04989441 -0.19542056 0.97944952]\n", + " [ 0.08525013 -0.19469787 0.97715155]\n", + " [ 0.12010852 -0.19359884 0.97370089]\n", + " [ 0.15426631 -0.19212697 0.9691693 ]\n", + " [ 0.18752167 -0.19028463 0.96365314]\n", + " [ 0.01438645 -0.16159264 0.98675268]\n", + " [ 0.05038177 -0.16130879 0.98561714]\n", + " [ 0.08608239 -0.16071144 0.98324039]\n", + " [ 0.1212815 -0.15980479 0.97966996]\n", + " [ 0.15577635 -0.15859338 0.97497788]\n", + " [ 0.18936679 -0.15708053 0.9692605 ]\n", + " [ 0.01449922 -0.12649245 0.9918616 ]\n", + " [ 0.05077617 -0.12626898 0.99069568]\n", + " [ 0.08675481 -0.12579928 0.9882551 ]\n", + " [ 0.12222707 -0.12508774 0.98458804]\n", + " [ 0.15699061 -0.12413931 0.979767 ]\n", + " [ 0.19084708 -0.12295784 0.97388848]\n", + " [ 0.01458479 -0.09065756 0.99577532]\n", + " [ 0.05107523 -0.09049631 0.99458621]\n", + " [ 0.08726392 -0.09015775 0.99209707]\n", + " [ 0.1229415 -0.08964573 0.98835673]\n", + " [ 0.15790584 -0.08896468 0.98343837]\n", + " [ 0.1919602 -0.0881182 0.97743873]\n", + " [ 0.01464229 -0.05428931 0.99841789]\n", + " [ 0.05127607 -0.05419219 0.9972131 ]\n", + " [ 0.08760541 -0.05398843 0.99469118]\n", + " [ 0.12341989 -0.05368064 0.99090157]\n", + " [ 0.15851749 -0.05327188 0.985918 ]\n", + " [ 0.19270261 -0.0527647 0.97983753]\n", + " [ 0.01467095 -0.01759801 0.9997375 ]\n", + " [ 0.05137612 -0.01756642 0.99852487]\n", + " [ 0.08777538 -0.01750018 0.99598656]\n", + " [ 0.12365776 -0.01740019 0.99217236]\n", + " [ 0.15882123 -0.0172675 0.98715635]\n", + " [ 0.1930708 -0.01710301 0.98103576]]\n", + "DEBUG:root:optics_fp: sphi: [0.70073958 0.64606768 0.57926126 0.49834142 0.40194059 0.29007134\n", + " 0.1649404 0.0313274 0.70073958 0.75081049 0.80330242 0.85632562\n", + " 0.90683747 0.95061586 0.98274331 0.99875393 0.0313274 0.03631497\n", + " 0.04315962 0.05313395 0.069014 0.09821415 0.1691786 0.5459791\n", + " 0.99875393 0.99832709 0.99763477 0.99640065 0.99386824 0.98730608\n", + " 0.96018902 0.5459791 0.67842975 0.60353431 0.50840257 0.39023062\n", + " 0.2491346 0.09026478 0.72202887 0.78522123 0.85029163 0.91212843\n", + " 0.9630057 0.99397217 0.03381828 0.04117383 0.05254813 0.07246053\n", + " 0.11619532 0.28568936 0.998564 0.99787113 0.99651836 0.99329877\n", + " 0.98218517 0.87963764 0.70073672 0.70073672 0.54790634 0.54790634\n", + " 0.7003523 0.76617231 0.83524188 0.90223637 0.95845287 0.99319172\n", + " 0.62671212 0.69894092 0.77968384 0.86389216 0.9399874 0.98993027\n", + " 0.53140435 0.60624939 0.69673956 0.80101328 0.90667588 0.98362991\n", + " 0.41062285 0.48009609 0.57202299 0.69282748 0.83927416 0.96899587\n", + " 0.26367291 0.3152909 0.38989736 0.5039234 0.68394565 0.92210851\n", + " 0.09588115 0.11634315 0.14772342 0.20168832 0.31431902 0.6442708 ]\n", + "DEBUG:root:radec2pix: fitpx: [[ 2.13550000e+03 -4.99999973e-01]\n", + " [ 2.13550000e+03 2.91928572e+02]\n", + " [ 2.13550000e+03 5.84357143e+02]\n", + " [ 2.13550000e+03 8.76785714e+02]\n", + " [ 2.13550000e+03 1.16921429e+03]\n", + " [ 2.13550000e+03 1.46164286e+03]\n", + " [ 2.13550000e+03 1.75407143e+03]\n", + " [ 2.13550000e+03 2.04650000e+03]\n", + " [ 2.13550000e+03 -4.99999973e-01]\n", + " [ 2.42792857e+03 -4.99999766e-01]\n", + " [ 2.72035714e+03 -5.00000023e-01]\n", + " [ 3.01278571e+03 -4.99999798e-01]\n", + " [ 3.30521429e+03 -5.00000229e-01]\n", + " [ 3.59764286e+03 -5.00000231e-01]\n", + " [ 3.89007143e+03 -4.99999870e-01]\n", + " [ 4.18250000e+03 -4.99999884e-01]\n", + " [ 2.13550000e+03 2.04650000e+03]\n", + " [ 2.42792857e+03 2.0\n", + " -0.05210744 -0.0166781 -0.20093724 -0.20300612 -0.20468137 -0.20596106\n", + " -0.20684219 -0.20732153 -0.00416252 -0.00422448 -0.00427905 -0.00432591\n", + " -0.00436469 -0.00439503 -0.19558822 -0.16140908 -0.12630166 -0.09046055\n", + " -0.05408714 -0.0173918 -0.20011322 -0.20011322 -0.00440367 -0.00440367\n", + " -0.18950334 -0.19145029 -0.19302803 -0.19423441 -0.195066 -0.19551916\n", + " -0.15638145 -0.15798254 -0.1592836 -0.16028164 -0.16097217 -0.16135064\n", + " -0.12234264 -0.1235961 -0.12461804 -0.12540495 -0.1259519 -0.1262541\n", + " -0.08758892 -0.08849133 -0.08922984 -0.08980108 -0.09020062 -0.09042422\n", + " -0.05232353 -0.0528708 -0.053321 -0.05367171 -0.05391982 -0.0540624\n", + " -0.016752 -0.01694088 -0.01709901 -0.01722548 -0.01731915 -0.01737894]\n", + " [ 0.95783851 0.96261448 0.96679818 0.97032784 0.97315256 0.9752324\n", + " 0.97653835 0.97705233 0.95783851 0.96276195 0.96710159 0.97079344\n", + " 0.97378441 0.97603235 0.97750603 0.97818516 0.97705233 0.98261483\n", + " 0.98750199 0.99165011 0.99500566 0.99752533 0.99917635 0.99993704\n", + " 0.97818516 0.98361591 0.98835782 0.99234925 0.99553873 0.99788504\n", + " 0.9993576 0.99993704 0.96000729 0.96547149 0.96998338 0.97344474\n", + " 0.97578203 0.97694639 0.96006992 0.96572084 0.97042996 0.97409503\n", + " 0.97663845 0.97800724 0.97955572 0.98592753 0.99122053 0.99533197\n", + " 0.99818215 0.99971531 0.98063234 0.98683331 0.99193725 0.99584519\n", + " 0.9984813 0.99979391 0.95787352 0.95787352 0.99993552 0.99993552\n", + " 0.9622374 0.96797276 0.97274994 0.9764667 0.97904541 0.98043302\n", + " 0.96778572 0.97373181 0.978679 0.98252511 0.98519233 0.98662722\n", + " 0.97236485 0.97847957 0.98356321 0.98751357 0.9902524 0.99172566\n", + " 0.9758766 0.9821179 0.98730436 0.99133364 0.9941269 0.9956294\n", + " 0.9782474 0.98457302 0.98982824 0.99391049 0.99674043 0.99826267\n", + " 0.97942831 0.98579563 0.99108495 0.99519355 0.99804176 0.99957386]]\n", + "DEBUG:root:radec2pix: xyfp: [[-32.208296 -31.60697943]\n", + " [-32.20831882 -27.22055086]\n", + " [-32.20834163 -22.83412229]\n", + " [-32.20836444 -18.44769372]\n", + " [-32.20838725 -14.06126515]\n", + " [-32.20841007 -9.67483658]\n", + " [-32.20843288 -5.288408 ]\n", + " [-32.2084557 -0.90197943]\n", + " [-32.208296 -31.60697943]\n", + " [-27.82186743 -31.60695662]\n", + " [-23.43543886 -31.60693381]\n", + " [-19.04901029 -31.60691099]\n", + " [-14.66258171 -31.60688818]\n", + " [-10.27615314 -31.60686536]\n", + " [ -5.88972457 -31.60684255]\n", + " [ -1.503296 -31.60681974]\n", + " [-32.2084557 -0.90197943]\n", + " [-27.82202712 -0.90195662]\n", + " [-23.43559855 -0.9019338 ]\n", + " [-19.04916999 -0.90191099]\n", + " [-14.66274141 -0.90188818]\n", + " [-10.27631284 -0.90186536]\n", + " [ -5.88988428 -0.90184255]\n", + " [ -1.5034557 -0.90181973]\n", + " [ -1.503296 -31.60681974]\n", + " [ -1.50331881 -27.22039116]\n", + " [ -1.50334163 -22.83396259]\n", + " [ -1.50336444 -18.44753402]\n", + " [ -1.50338726 -14.06110544]\n", + " [ -1.50341007 -9.67467688]\n", + " [ -1.50343288 -5.2882483 ]\n", + " [ -1.5034557 -0.90181973]\n", + " [-32.19330594 -29.69447935]\n", + " [-32.19333391 -24.31847935]\n", + " [-32.19336187 -18.94247936]\n", + " [-32.19338983 -13.56647936]\n", + " [-3DEBUG:root:radec2pix: camVec Shape: (3, 96)\n", + "4650000e+03]\n", + " [ 2.72035714e+03 2.04650000e+03]\n", + " [ 3.01278571e+03 2.04650000e+03]\n", + " [ 3.30521429e+03 2.04650000e+03]\n", + " [ 3.59764286e+03 2.04650000e+03]\n", + " [ 3.89007143e+03 2.04650000e+03]\n", + " [ 4.18250000e+03 2.04650000e+03]\n", + " [ 4.18250000e+03 -4.99999884e-01]\n", + " [ 4.18250000e+03 2.91928572e+02]\n", + " [ 4.18250000e+03 5.84357143e+02]\n", + " [ 4.18250000e+03 8.76785714e+02]\n", + " [ 4.18250000e+03 1.16921429e+03]\n", + " [ 4.18250000e+03 1.46164286e+03]\n", + " [ 4.18250000e+03 1.75407143e+03]\n", + " [ 4.18250000e+03 2.04650000e+03]\n", + " [ 2.13650000e+03 1.27000000e+02]\n", + " [ 2.13650000e+03 4.85400000e+02]\n", + " [ 2.13650000e+03 8.43800000e+02]\n", + " [ 2.13650000e+03 1.20220000e+03]\n", + " [ 2.13650000e+03 1.56060000e+03]\n", + " [ 2.13650000e+03 1.91900000e+03]\n", + " [ 2.26300000e+03 4.99999770e-01]\n", + " [ 2.62140000e+03 5.00000267e-01]\n", + " [ 2.97980000e+03 4.99999825e-01]\n", + " [ 3.33820000e+03 5.00000071e-01]\n", + " [ 3.69660000e+03 5.00000113e-01]\n", + " [ 4.05500000e+03 5.00000214e-01]\n", + " [ 2.26300000e+03 2.04550000e+03DEBUG:root:radec2pix: lng: [44.41301872 40.14838159 35.2726464 29.73151826 23.50476184 16.63082675\n", + " 9.22889701 1.50432057 44.41301872 48.59866885 53.40161123 58.88530587\n", + " 65.08233359 71.96812796 79.43489015 87.28054707 1.50432057 1.74246974\n", + " 2.06969874 2.54744544 3.31042966 4.7219858 8.21053157 29.59292215\n", + " 87.28054707 86.84336495 86.23844627 85.3466032 83.90123984 81.16110163\n", + " 74.05596575 29.59292215 42.63779834 37.00767795 30.40255608 22.76985585\n", + " 14.18292146 4.89797993 46.15318169 51.6896036 58.21907141 65.81559375\n", + " 74.43095985 83.82681521 1.62803312 1.98053876 2.52674891 3.48654093\n", + " 5.61341407 14.22621651 87.07688216 86.43225722 85.42259355 83.61713665\n", + " 79.48054112 61.32403216 44.41274552 44.41274552 29.77842334 29.77842334\n", + " 44.37598019 49.94895822 56.60624337 64.45998446 73.48745603 83.43540409\n", + " 38.69437311 44.24100899 51.15696074 59.72888922 70.09435151 81.99961851\n", + " 31.94440422 37.16546071 44.03052128 53.13850244 65.05527755 79.7674455\n", + " 24.03901245 28.4719233 DEBUG:root:make_az_asym: xyp: [[ -0.24606 31.536148 ]\n", + " [ -0.24606 27.14971943]\n", + " [ -0.24606 22.76329086]\n", + " [ -0.24606 18.37686229]\n", + " [ -0.24606 13.99043371]\n", + " [ -0.24606 9.60400514]\n", + " [ -0.24606 5.21757658]\n", + " [ -0.24606 0.831148 ]\n", + " [ -0.24606 31.536148 ]\n", + " [ -4.63248857 31.536148 ]\n", + " [ -9.01891714 31.536148 ]\n", + " [-13.40534571 31.536148 ]\n", + " [-17.79177429 31.536148 ]\n", + " [-22.17820286 31.536148 ]\n", + " [-26.56463143 31.536148 ]\n", + " [-30.95106 31.536148 ]\n", + " [ -0.24606 0.831148 ]\n", + " [ -4.63248857 0.831148 ]\n", + " [ -9.01891714 0.831148 ]\n", + " [-13.40534571 0.831148 ]\n", + " [-17.79177429 0.831148 ]\n", + " [-22.17820285 0.831148 ]\n", + " [-26.56463143 0.831148 ]\n", + " [-30.95106 0.831148 ]\n", + " [-30.95106 31.536148 ]\n", + " [-30.95106 27.14971943]\n", + " [-30.95106 22.76329086]\n", + " [-30.95106 18.37686228]\n", + " [-30.95106 13.99043371]\n", + " [-30.95106 9.60400514]\n", + " [-30.95106 5.21757657]\n", + " [-30.95106 0.831148 ]\n", + " [ -0.26106 29.623648 ]\n", + " [ -0.26106 ]\n", + " [ 2.62140000e+03 2.04550000e+03]\n", + " [ 2.97980000e+03 2.04550000e+03]\n", + " [ 3.33820000e+03 2.04550000e+03]\n", + " [ 3.69660000e+03 2.04550000e+03]\n", + " [ 4.05500000e+03 2.04550000e+03]\n", + " [ 4.18150000e+03 1.27000000e+02]\n", + " [ 4.18150000e+03 4.85400000e+02]\n", + " [ 4.18150000e+03 8.43800000e+02]\n", + " [ 4.18150000e+03 1.20220000e+03]\n", + " [ 4.18150000e+03 1.56060000e+03]\n", + " [ 4.18150000e+03 1.91900000e+03]\n", + " [ 2.13650000e+03 5.00000284e-01]\n", + " [ 2.13650000e+03 5.00000284e-01]\n", + " [ 4.18150000e+03 2.04550000e+03]\n", + " [ 4.18150000e+03 2.04550000e+03]\n", + " [ 2.26300000e+03 1.27000000e+02]\n", + " [ 2.62140000e+03 1.27000000e+02]\n", + " [ 2.97980000e+03 1.27000000e+02]\n", + " [ 3.33820000e+03 1.27000000e+02]\n", + " [ 3.69660000e+03 1.27000000e+02]\n", + " [ 4.05500000e+03 1.27000000e+02]\n", + " [ 2.26300000e+03 4.85400000e+02]\n", + " [ 2.62140000e+03 4.85400000e+02]\n", + " [ 2.97980000e+03 4.85400000e+02]\n", + " [ 3.33820000e+03 4.85400000e+02]\n", + " [ 3.69660000e+03 4.85400000e+02]\n", + " [ 4.05500000e+03 4.85400000e+02]\n", + " [ 2.26300000e+03 8.43800000e+02]\n", + " [ 2.62140000e+03 8.43800000e+02]\n", + " [ 2.97980000e+03 8.43800000e+02]\n", + " [ 3.33820000e+03 8.43800000e+02]\n", + " [ 3.69660000e+03 8.43800000e+02]\n", + " [ 4.05500000e+03 8.43800000e+02]\n", + " [ 2.26300000e+03 1.20220000e+03]\n", + " [ 2.62140000e+03 1.20220000e+03]\n", + " [ 2.97980000e+03 1.20220000e+03]\n", + " [ 3.33820000e+03 1.20220000e+03]\n", + " [ 3.69660000e+03 1.20220000e+03]\n", + " [ 4.05500000e+03 1.20220000e+03]\n", + " [ 2.26300000e+03 1.56060000e+03]\n", + " [ 2.62140000e+03 1.56060000e+03]\n", + " [ 2.97980000e+03 1.56060000e+03]\n", + " [ 3.33820000e+03 1.56060000e+03]\n", + " [ 3.69660000e+03 1.56060000e+03]\n", + " [ 4.05500000e+03 1.56060000e+03]\n", + " [ 2.26300000e+03 1.91900000e+03]\n", + " [ 2.62140000e+03 1.91900000e+03]\n", + " [ 2.97980000e+03 1.91900000e+03]\n", + " [ 3.33820000e+03 1.91900000e+03]\n", + " [ 3.69660000e+03 1.91900000e+03]\n", + " [ 4.05500000e+03 1.91900000e+03]]\n", + "2.19341779 -8.19047935]\n", + " [-32.19344575 -2.81447935]\n", + " [-30.29579608 -31.59196949]\n", + " [-24.91979608 -31.59194152]\n", + " [-19.54379608 -31.59191356]\n", + " [-14.16779608 -31.5918856 ]\n", + " [ -8.79179608 -31.59185764]\n", + " [ -3.4157960DEBUG:root:fitpix2pix: ccdpx: shape: (96, 2)\n", + "8 -31.59182968]\n", + " [-30.29595562 -0.91696949]\n", + " [-24.91995562 -0.91694153]\n", + " [-19.54395562 -0.91691356]\n", + " [-14.16795562 -0.9168856 ]\n", + " [ -8.79195562 -0.91685764]\n", + " [ -3.41595563 -0.91682968]\n", + " [ -1.51830595 -29.69431981]\n", + " [ -1.51833391 -24.31831981]\n", + " [ -1.51836187 -18.94231981]\n", + " [ -1.51838983 -13.56631981]\n", + " [ -1.51841779 -8.19031981]\n", + " [ -1.51844575 -2.81431982]\n", + " [-32.19329608 -31.59197936]\n", + " [-32.19329608 -31.59197936]\n", + " [ -1.51845562 -0.91681981]\n", + " [ -1.51845562 -0.91681981]\n", + " [-30.29580595 -29.69446949]\n", + " [-24.91980594 -29.69444152]\n", + " [-19.54380595 -29.69441356]\n", + " [-14.16780595 -29.69438561]\n", + " [ -8.79180595 -29.69435764]\n", + " [ -3.41580595 -29.69432968]\n", + " [-30.29583391 -24.31846949]\n", + " [-24.91983391 -24.31844152]\n", + " [-19.54383391 -24.31841356]\n", + " [-14.16783391 -24.31838561]\n", + " [ -8.79183391 -24.31835764]\n", + " [ -3.41583391 -24.31832968]\n", + " [-30.29586187 -18.94246949]\n", + " [-24.91986187 -18.94244153]\n", + " [-19.54386187 -18.94241356]\n", + " [-14.16786187 -18.94238561]\n", + " [ -8.79186187 -18.94235764]\n", + " [ -3.41586187 -18.94232969]\n", + " [-30.29588983 -13.56646949]\n", + " [-24.91988983 -13.56644152]\n", + " [-19.54388984 -13.56641357]\n", + " [-14.16788983 -13.5663856 ]\n", + " [ -8.79188983 -13.56635764]\n", + " [ -3.41588983 -13.56632968]\n", + " [-30.29591779 -8.19046949]\n", + " [-24.91991779 -8.19044152]\n", + " [-19.54391779 -8.19041356]\n", + " [-14.16791779 -8.1903856 ]\n", + " [ -8.79191779 -8.19035764]\n", + " [ -3.41591779 -8.19032968]\n", + " [-30.29594575 -2.81446949]\n", + " [-24.91994576 -2.81444153]\n", + " [-19.54394575 -2.81441356]\n", + " [-14.16794576 -2.8143856 ]\n", + " [ -8.79194575 -2.81435764]\n", + " [ -3.41594575 -2.81432968]]\n", + "34.66704703 43.65653948 56.97056188 75.84073328\n", + " 15.03271986 18.08395091 22.60822524 29.88026153 42.80777081 67.27233698\n", + " 5.20360826 6.3196744 8.04022063 11.03037054 17.44810995 39.01761856]\n", + " 24.247648 ]\n", + " [ -0.26106 18.87164801]\n", + " [ -0.26106 13.495648 ]\n", + " [ -0.26106 8.119648 ]\n", + " [ -0.26106 2.743648 ]\n", + " [ -2.15856 31.521148 ]\n", + " [ -7.53456 31.521148 ]\n", + " [-12.91056 31.521148 ]\n", + " [-18.28656 DEBUG:root:fitpix2pix: visCut: True\n", + "DEBUG:root:radec2pix: fitpx: [[-5.00000272e-01 -5.00000268e-01]\n", + " [-4.99999785e-01 2.91928572e+02]\n", + " [-4.99999908e-01 5.84357143e+02]\n", + " [-4.99999976e-01 8.76785714e+02]\n", + " [-4.99999814e-01 1.16921429e+03]\n", + " [-4.99999859e-01 1.46164286e+03]\n", + " [-4.99999732e-01 1.75407143e+03]\n", + " [-4.99999866e-01 2.04650000e+03]\n", + " [-5.00000272e-01 -5.00000268e-01]\n", + " [ 2.91928572e+02 -4.99999720e-01]\n", + " [ 5.84357143e+02 -5.00000140e-01]\n", + " [ 8.76785714e+02 -4.99999791e-01]\n", + " [ 1.16921429e+03 -4.99999975e-01]\n", + " [ 1.46164286e+03 -4.99999912e-01]\n", + " [ 1.75407143e+03 -4.99999978e-01]\n", + " [ 2.04650000e+03 -4.99999991e-01]\n", + " [-4.99999866e-01 2.04650000e+03]\n", + " [ 2.91928571e+02 2.04650000e+03]\n", + " [ 5.84357143e+02 2.04650000e+03]\n", + " [ 8.76785715e+02 2.04650000e+03]\n", + " [ 1.16921429e+03 2.04650000e+03]\n", + " [ 1.46164286e+03 2.04650000e+03]\n", + " [ 1.75407143e+03 2.04650000e+03]\n", + " [ 2.04650000e+03 2.04650000e+03]\n", + " [ 2.04650000e+03 -4.99999991e-01]\n", + " [ 2.04650000e+03 2.91928572e+02]\n", + " [ 2.04650000e+03 5.84357143e+02]\n", + " [ 2.04650000e+03 8.76785715e+02]\n", + " [ 2.04650000e+03 1.16921429e+03]\n", + " [ 2.04650000e+03 1.46164286e+03]\n", + " [ 2.04650000e+03 1.75407143e+03]\n", + " [ 2.04650000e+03 2.04650000e+03]\n", + " [ 5.00000192e-01 1.27000000e+02]\n", + " [ 4.99999990e-01 4.85400000e+02]\n", + " [ 4.99999881e-01 8.43800000e+02]\n", + " [ 5.00000044e-01 1.20220000e+03]\n", + " [ 4.99999938e-01 1.56060000e+03]\n", + " [ 5.00000069e-01 1.91900000e+03]\n", + " [ 1.27000000e+02 5.00000092e-01]\n", + " [ 4.85400000e+02 4.99999764e-01]\n", + " [ 8.43800000e+02 4.99999911e-01]\n", + " [ 1.20220000e+03 5.00000156e-01]\n", + " [ 1.56060000e+03 4.99999840e-01]\n", + " [ 1.91900000e+03 4.99999915e-01]\n", + " [ 1.27000000e+02 2.04550000e+03]\n", + " [ 4.85400000e+02 2.04550000e+03]\n", + " [ 8.43800000e+02 2.04550000e+03]\n", + " [ 1.20220000e+03 2.04550000e+03]\n", + " [ 1.56060000e+03 2.04550000e+03]\n", + " [ 1.91900000e+03 2.04550000e+03]\n", + " [ 2.04550000e+03 1.27000000e+02]\n", + " [ 2.04550000e+03 4.85400000e+02]\n", + " [ 2.04550000e+03 8.43800000e+02]\n", + " [ 2.04550000e+03 1.20220000e+03]\n", + " [ 2.04550000e+03 1.56060000e+03]\n", + " [ 2.04550000e+03 1.91900000e+03]\n", + " [ 4.99999957e-01 4.99999958e-01]\n", + " [ 4.99999957e-01 4.99999958e-01]\n", + " [ 2.04550000e+03 2.04550000e+03]\n", + " [ 2.04550000e+03 2.04550000e+03]\n", + " [ 1.27000000e+02 1.27000000e+02]\n", + " [ 4.85400000e+02 1.27000000e+02]\n", + " [ 8.43800000e+02 1.27000000e+02]\n", + " [ 1.20220000e+03 1.27000000e+02]\n", + " [ 1.56060000e+03 1.27000000e+02]\n", + " [ 1.91900000e+03 1.27000000e+02]\n", + " [ 1.27000000e+02 4.85400000e+02]\n", + " [ 4.85400000e+02 4.85400000e+02]\n", + " [ 8.43800000e+02 4.85400000e+02]\n", + " [ 1.20220000e+03 4.85400000e+02]\n", + " [ 1.56060000e+03 4.85400000e+02]\n", + " [ 1.91900000e+03 4.85400000e+02]\n", + " [ 1.27000000e+02 8.43800000e+02]\n", + " [ 4.85400000e+02 8.43800000e+02]\n", + " [ 8.43800000e+02 8.43800000e+02]\n", + " [ 1.20220000e+03 8.43800000e+02]\n", + " [ 1.56060000e+03 8.43800000e+02]\n", + " [ 1.91900000e+03 8.43800000e+02]\n", + " [ 1.27000000e+02 1.20220000e+03]\n", + " [ 4.85400000e+02 1.20220000e+03]\n", + " [ 8.43800000e+02 1.20220000e+03]\n", + " [ 1.20220000e+03 1.20220000e+03]\n", + " [ 1.56060000e+03 1.20220000e+03]\n", + " [ 1.91900000e+03 1.20220000eDEBUG:root:radec2pix: xyfp Shape: (96, 2)\n", + "31.521148 ]\n", + " [-23.66256 31.521148 ]\n", + " [-29.03856 31.521148 ]\n", + " [ -2.15856 0.846148 ]\n", + " [ -7.53456 0.846148 ]\n", + " [-12.91056 0.846148 ]\n", + " [-18.28655999 0.846148 ]\n", + " [-23.66256 0.846148 ]\n", + " [-29.03856 0.846148 ]\n", + " [-30.93606 29.623648 ]\n", + " [-30.93606 24.247648 ]\n", + " [-30.93606 18.871648 ]\n", + " [-30.93606 13.495648 ]\n", + " [-30.93606 8.119648 ]\n", + " [-30.93606 2.743648 ]\n", + " [ -0.26106 31.521148 ]\n", + " [ -0.26106 31.521148 ]\n", + " [-30.93606 0.846148 ]\n", + " [-30.93606 0.846148 ]\n", + " [ -2.15856 29.623648 ]\n", + " [ -7.53456 29.623648 ]\n", + " [-12.91056 29.623648 ]\n", + " [-18.28656 29.623648 ]\n", + " [-23.66256 29.623648 ]\n", + " [-29.03856 29.623648 ]\n", + " [ -2.15856 24.247648 ]\n", + " [ -7.53456 24.247648 ]\n", + " [-12.91056 24.247648 ]\n", + " [-18.28656 24.247648 ]\n", + " [-23.66256 24.247648 ]\n", + " [-29.03856 24.247648 ]\n", + " [ -2.15856 18.871648 ]\n", + " [ -7.53456 18.871648 ]\n", + " [-12.91056 1DEBUG:root:radec2pix: lat: [73.25344023 74.2369792 75.15226824 75.97162966 76.66508667 77.2021609\n", + " 77.55512574 77.70337791 73.25344023 74.25967575 75.20183236 76.05214643\n", + " 76.78010612 77.3540472 77.74432055 77.92785326 77.70337791 79.30226543\n", + " 80.93361724 82.59207196 84.27220803 85.96793867 87.66996871 89.32519361\n", + " 77.92785326 79.53024676 81.16372478 82.82252521 84.50025464 86.18804733\n", + " 87.86471391 89.32519361 73.6926739 74.85593178 75.88945702 76.73895525\n", + " 77.34864846 77.67018969 73.7019933 74.89586821 75.96623187 76.85800237\n", + " 77.51320661 77.87970489 78.39600189 80.37807975 82.40356131 84.46248138\n", + " 86.54333738 88.62073148 78.62203863 80.60748554 82.6338837 84.6897052\n", + " 86.75764582 88.76495286 73.26041353 73.26041353 89.31716551 89.31716551\n", + " 74.15313309 75.40228414 76.52877477 77.47347648 78.17205407 78.56478282\n", + " 75.37129959 76.78525096 78.08623827 79.20344298 80.05020166 80.53598707\n", + " 76.45984424 78.04591405 79.54291278 80.87169379 81.91843153 82.54064538\n", + " 77.36022478 79.11290918 8DEBUG:root:radec2pix: lng: [270.42176524 270.49034045 270.58554379 270.72662079 270.95724718\n", + " 271.40230304 272.6202602 289.32090211 270.42176524 278.37487059\n", + " 286.01754065 293.1193046 299.54422335 305.24693184 310.24816583\n", + " 314.60671783 289.32090211 351.88332455 355.81697528 357.18453549\n", + " 357.87852145 358.29811982 358.57917324 358.78056782 314.60671783\n", + " 318.91052218 323.86153916 329.52530495 335.93162927 343.04519816\n", + " 350.73789032 358.78056782 270.47833289 270.58513886 270.75335014\n", + " 271.05727717 271.77214072 275.46283159 273.91137001 283.48836134\n", + " 292.36007687 300.23563069 307.02864268 312.79442784 342.55577414\n", + " 354.88167257 357.01022263 357.88894543 358.36857558 358.67064356\n", + " 316.39469688 322.09565632 328.83707711 336.69003224 345.58630386\n", + " 355.24690052 270.44938101 270.44938101 358.75219462 358.75219462\n", + " 274.16251665 284.32266507 293.64661849 301.81542209 308.76235319\n", + " 314.58099285 275.08757932 287.34521298 298.17498348 307.196148\n", + " 314.48659385 320.3241534 276.53899869 291.90639058 304.59126569\n", + " 314.33729311 321.66504236 327.20736404 279.1393103 299.43995741\n", + " 314.06556227 323.90144592 330.60294465 335.34278839 285.09401101\n", + " 313.41621828 328.3557916 336.49369688 341.42440255 344.68693562\n", + " 309.81698293 341.12351394 348.72452469 351.99035546 353.79501012\n", + " 354.93771634]\n", + "+03]\n", + " [ 1.27000000e+02 1.56060000e+03]\n", + " [ 4.85400000e+02 1.56060000e+03]\n", + " [ 8.43800000e+02 1.56060000e+03]\n", + " [ 1.20220000e+03 1.56060000e+03]\n", + " [ 1.56060000e+03 1.56060000e+03]\n", + " [ 1.91900000e+03 1.56060000e+03]\n", + " [ 1.27000000e+02 1.91900000e+03]\n", + " [ 4.85400000e+02 1.91900000e+03]\n", + " [ 8.43800000e+02 1.91900000e+03]\n", + " [ 1.20220000e+03 1.91900000e+03]\n", + " [ 1.56060000e+03 1.91900000e+03]\n", + " [ 1.91900000e+03 1.91900000e+03]]\n", + "DEBUG:root:optics_fp: xyfp: [[-32.29046994 -31.71666141]\n", + " [-32.28860507 -27.33023323]\n", + " [-32.2867402 -22.94380505]\n", + " [-32.28487534 -18.55737688]\n", + " [-32.28301047 -14.1709487 ]\n", + " [-32.2811456 -9.78452053]\n", + " [-32.27928073 -5.39809235]\n", + " [-32.27741587 -1.01166418]\n", + " [-32.29046994 -31.7DEBUG:root:fitpix2pix: ccdpx: shape: (96, 2)\n", + "1666141]\n", + " [-27.90404176 -31.71852627]\n", + " [-23.51761359 -31.72039114]\n", + " [-19.13118541 -31.722256 ]\n", + " [-14.74475724 -31.72412087]\n", + " [-10.35832906 -31.72598574]\n", + " [ -5.97190089 -31.72785061]\n", + " [ -1.58547272 -31.72971547]\n", + " [-32.27741587 -1.01166418]\n", + " [-27.8909877 -1.01352905]\n", + " [-23.50455952 -1.01539391]\n", + " [-19.11813134 -1.01725878]\n", + " [-14.73170317 -1.01912365]\n", + " [-10.345275 -1.02098851]\n", + " [ -5.95884682 -1.02285338]\n", + " [ -1.57241864 -1.02471825]\n", + " [ -1.58547272 -31.72971547]\n", + " [ -1.58360785 -27.3432873 ]\n", + " [ -1.58174298 -22.95685912]\n", + " [ -1.57987811 -18.57043094]\n", + " [ -1.57801325 -14.18400278]\n", + " [ -1.57614838 -9.7975746 ]\n", + " [ -1.57428351 -5.41114642]\n", + " [ -1.57241864 -1.02471825]\n", + " [-32.27465685 -29.80416795]\n", + " [-32.27237127 -24.42816844]\n", + " [-32.2700857 -19.05216893]\n", + " [-32.26780012 -13.67616941]\n", + " [-32.26551454 -8.3001699 ]\n", + " [-32.26322896 -2.92417038]\n", + " [-30.37796373 -31.70247449]\n", + " [-25.00196422 -31.70476008]\n", + " [-19.62596471 -31.70704565]\n", + " [-14.24996519 -31DEBUG:root:fitpix2pix: visCut: True\n", + "8.871648 ]\n", + " [-18.28656 18.871648 ]\n", + " [-23.66256 18.871648 ]\n", + " [-29.03856 18.871648 ]\n", + " [ -2.15856 13.495648 ]\n", + " [ -7.53456 13.495648 ]\n", + " [-12.91056 13.495648 ]\n", + " [-18.28656 13.495648 ]\n", + " [-23.66256 13.495648 ]\n", + " [-29.03856 13.495648 ]\n", + " [ -2.15856 8.119648 ]\n", + " [ -7.53456 8.119648 ]\n", + " [-12.91056 8.119648 ]\n", + " [-18.28656 8.119648 ]\n", + " [-23.66256 8.119648 ]\n", + " [-29.03856 8.119648 ]\n", + " [ -2.15856 2.743648 ]\n", + " [ -7.53456 2.743648 ]\n", + " [-12.91056 2.743648 ]\n", + " [-18.28656 2.743648 ]\n", + " [-23.66256 2.743648 ]\n", + " [-29.03856 2.743648 ]]\n", + "0.81670049 82.39645142 83.71831262 84.55871556\n", + " 78.01034 79.90138935 81.79317677 83.63609258 85.31869407 86.54472849\n", + " 78.35474014 80.32671962 82.33692434 84.36964547 86.39457329 88.27941972]\n", + ".70933123]\n", + " [ -8.87396568 -31.71161681]\n", + " [ -3.49796617 -31.71390239]\n", + " [-30.36492242 -1.02747727]\n", + " [-24.98892291 -1.02976285]\n", + " [-19.61292339 -1.03204842]\n", + " [-14.23692388 -1.034334 ]\n", + " [ -8.86092437 -1.03661958]\n", + " [ -3.48492485 -1.03890516]\n", + " [ -1.59965962 -29.81720927]\n", + " [ -1.59737405 -24.44120975]\n", + " [ -1.59508847 -19.06521024]\n", + " [ -1.59280289 -13.68921073]\n", + " [ -1.59051731 -8.31321121]\n", + " [ -1.58823174 -2.9372117 ]\n", + " [-32.27546357 -31.70166778]\n", + " [-32.27546357 -31.70166778]\n", + " [ -1.58742502 -1.03971187]\n", + " [ -1.58742502 -1.03971187]\n", + " [-30.37715702 -29.80497466]\n", + " [-25.00115751 -29.80726024]\n", + " [-19.625158 -29.80954582]\n", + " [-14.24915848 -29.8118314 ]\n", + " [ -8.87315897 -29.81411698]\n", + " [ -3.49715945 -29.81640256]\n", + " [-30.37487145 -24.42897515]\n", + " [-24.99887193 -24.43126073]\n", + " [-19.62287241 -24.43354631]\n", + " [-14.2468729 -24.43583188]\n", + " [ -8.87087339 -24.43811746]\n", + " [ -3.49487388 -24.44040305]\n", + " [-30.37258587 -19.05297564]\n", + " [-24.99658635 -19.05526122]\n", + " [-19.62058684 -19.05754679]\n", + " [-14.24458732 -19.05983237]\n", + " [ -8.86858781 -19.06211795]\n", + " [ -3.4925883 -19.06440353]\n", + " [-30.37030029 -13.67697612]\n", + " [-24.99430077 -13.6792617 ]\n", + " [-19.61830126 -13.68154728]\n", + " [-14.24230175 -13.68383286]\n", + " [ -8.86630223 -13.68611844]\n", + " [ -3.49030272 -13.68840401]\n", + " [-30.36801471 -8.30097661]\n", + " [-24.9920152 -8.30326219]\n", + " [-19.61601568 -8.30554776]\n", + " [-14.24001617 -8.30783335]\n", + " [ -8.86401666 -8.31011893]\n", + " [ -3.48801714 -8.3124045 ]\n", + " [-30.36572914 -2.9249771 ]\n", + " [-24.98972962 -2.92726267]\n", + " [-19.6137301 -2.92954825]\n", + " [-14.23773059 -2.93183383]\n", + " [ -8.86173108 -2.93411941]\n", + " [ -3.48573156 -2.93640499]]\n", + "DEBUG:root:make_az_asym: xyp: shape: (96, 2)\n", + "DEBUG:root:radec2pix: xyfp: [[ 0.26283402 -31.55708986]\n", + " [ 0.26401791 -27.17066146]\n", + " [ 0.2652018 -22.78423305]\n", + " [ 0.26638569 -18.39780463]\n", + " [ 0.26756957 -14.01137623]\n", + " [ 0.26875346 -9.62494781]\n", + " [ 0.26993735 -5.2385194 ]\n", + " [ 0.27112123 -0.85209099]\n", + " [ 0.26283402 -31.55708986]\n", + " [ 4.64926244 -31.55827376]\n", + " [ 9.03569085 -31.55945764]\n", + " [ 13.42211926 -31.56064153]\n", + " [ 17.80854767 -31.56182542]\n", + " [ 22.19497608 -31.56300931]\n", + " [ 26.5814045 -31.56419319]\n", + " [ 30.96783291 -31.56537708]\n", + " [ 0.27112123 -0.85209099]\n", + " [ DEBUG:root:cartToSphere: vec: [[-0.20607518 -0.20019593 0.95783851]\n", + " [-0.20787446 -0.17367087 0.96261448]\n", + " [-0.20940354 -0.14646307 0.96679818]\n", + " [-0.21066179 -0.11868235 0.97032784]\n", + " [-0.21164814 -0.09043873 0.97315256]\n", + " [-0.21236112 -0.0618427 0.9752324 ]\n", + " [-0.21279916 -0.03300558 0.97653835]\n", + " [-0.21296107 -0.0040396 0.97705233]\n", + " [-0.20607518 -0.20019593 0.95783851]\n", + " [-0.17964954 -0.20202839 0.96276195]\n", + " [-0.15251864 -0.20359907 0.96710159]\n", + " [-0.12479221 -0.20490731 0.97079344]\n", + " [-0.09658011 -0.20595196 0.97378441]\n", + " [-0.06799262 -0.20673135 0.97603235]\n", + " [-0.03914089 -0.20724368 0.97750603]\n", + " [-0.01013708 -0.20748743 0.97818516]\n", + " [-0.21296107 -0.0040396 0.97705233]\n", + " [-0.18561075 -0.00409191 0.98261483]\n", + " [-0.15755214 -0.0041395 0.98750199]\n", + " [-0.12888979 -0.00418225 0.99165011]\n", + " [-0.09972928 -0.00421998 0.99500566]\n", + " [-0.07017922 -0.00425248 0.99752533]\n", + " [-0.04035219 -0.00427955 0.99917635]\n", + " [-0.01036463 -0.00430103 0.99993704]\n", + " [-0.01013708 -0.20748743 0.97818516]\n", + " [-0.01020871 -0.17998755 0.98361591]\n", + " [-0.01026764 -0.15180051 0.98835782]\n", + " [-0.01031373 -0.12303089 0.99234925]\n", + " [-0.01034674 -0.0937848 0.99553873]\n", + " [-0.01036638 -0.06417157 0.99788504]\n", + " [-0.0103724 -0.03430461 0.9993576 ]\n", + " [-0.01036463 -0.00430103 0.99993704]\n", + " [-0.20680345 -0.18872819 0.96000729]\n", + " [-0.20882603 -0.15574492 0.96547149]\n", + " [-0.21044235 -0.12184525 0.96998338]\n", + " [-0.21165063 -0.0872316 0.97344474]\n", + " [-0.2124482 -0.05210744 0.97578203]\n", + " [-0.2128323 -0.0166781 0.97694639]\n", + " [-0.19465346 -0.20093724 0.96006992]\n", + " [-0.16177694 -0.20300612 0.96572084]\n", + " [-0.12795009 -0.20468137 0.97042996]\n", + " [-0.0933751 -0.20596106 0.97409503]\n", + " [-0.05825505 -0.20684219 0.97663845]\n", + " [-0.022795 -0.20732153 0.97800724]\n", + " [-0.20112996 -0.00416252 0.97955572]\n", + " [-0.16711987 -0.00422448 0.98592753]\n", + " [-0.13214975 -0.00427905 0.99122053]\n", + " [-0.09641349 -0.00432591 0.99533197]\n", + " [-0.0601111 -0.00436469 0.99818215]\n", + " [-0.02345151 -0.00439503 0.99971531]\n", + " [-0.01026957 -0.195 4.65754965 -0.85327487]\n", + " [ 9.04397805 -0.85445876]\n", + " [ 13.43040647 -0.85564265]\n", + " [ 17.81683488 -0.85682653]\n", + " [ 22.20326329 -0.85801042]\n", + " [ 26.5896917 -0.85919431]\n", + " [ 30.97612012 -0.8603782 ]\n", + " [ 30.96783291 -31.56537708]\n", + " [ 30.9690168 -27.17894867]\n", + " [ 30.97020068 -22.79252025]\n", + " [ 30.97138456 -18.40609184]\n", + " [ 30.97256845 -14.01966343]\n", + " [ 30.97375234 -9.63323502]\n", + " [ 30.97493622 -5.24680661]\n", + " [ 30.97612012 -0.8603782 ]\n", + " [ 0.2783502 -29.64459399]\n", + " [ 0.27980117 -24.26859418]\n", + " [ 0.28125214 -18.89259438]\n", + " [ 0.28270311 -13.51659457]\n", + " [ 0.28415408 -8.14059477]\n", + " [ 0.28560505 -2.76459497]\n", + " [ 2.175338 -31.54260605]\n", + " [ 7.55133781 -31.54405702]\n", + " [ 12.92733761 -31.54550799]\n", + " [ 18.30333742 -31.54695896]\n", + " [ 23.67933722 -31.54840993]\n", + " [ 29.05533702 -31.5498609 ]\n", + " [ 2.18361712 -0.86760716]\n", + " [ 7.55961692 -0.86905814]\n", + " [ 12.93561673 -0.87050911]\n", + " [ 18.31161653 -0.87196007]\n", + " [ 23.68761633 -0.87341105]\n", + " [ 29.06361614 -0.87486202]\n", + " [ 30.95334909 -29.6528731 ]\n", + " [ 30.95480005 -24.27687329]\n", + " [ 30.95625103 -18.90087349]\n", + " [ 30.95770199 -13.52487368]\n", + " [ 30.95915297 -8.14887388]\n", + " [ 30.96060394 -2.77287408]\n", + " [ 0.27783807 -31.54209392]\n", + " [ 0.27783807 -31.54209392]\n", + " [ 30.96111607 -0.87537415]\n", + " [ 30.96111607 -0.87537415]\n", + " [ 2.17585013 -29.64510611]\n", + " [ 7.55184994 -29.64655709]\n", + " [ 12.92784974 -29.64800806]\n", + " [ 18.30384955 -29.64945903]\n", + " [ 23.67984935 -29.65091 ]\n", + " [ 29.05584916 -29.65236097]\n", + " [ 2.1773011 -24.26910631]\n", + " [ 7.55330091 -24.27055728]\n", + " [ 12.92930071 -24.27200825]\n", + " [ 18.30530052 -24.27345922]\n", + " [ 23.68130032 -24.27491019]\n", + " [ 29.05730013 -24.27636116]\n", + " [ 2.17875207 -18.89310651]\n", + " [ 7.55475188 -18.89455748]\n", + " [ 12.93075168 -18.89600845]\n", + " [ 18.30675149 -18.89745942]\n", + " [ 23.68275129 -18.89891039]\n", + " [ 29.0587511 -18.90036136]\n", + " [ 2.18020304 -13.51710671]\n", + " [ 7.55620285 -13.51855767]\n", + " [ 12.93220265 -13.52000864]\n", + " [ 18.30820245 -13.52145961]\n", + " [ 23.68420226 -13.52291058]\n", + " [ 29.06020207 -13.52436156]\n", + " [ 2.18165401 -8.1411069 ]\n", + " [ 7.55765382 -8.14255787]\n", + " [DEBUG:root:mm_to_pix: fitpx: [[0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]]\n", + "58822 0.98063234]\n", + " [-0.0103498 -0.16140908 0.98683331]\n", + " [-0.01041065 -0.12630166 0.99193725]\n", + " [-0.0104 12.93365363 -8.14400884]\n", + " [ 18.30965343 -8.14545981]\n", + " [ 23.68565323 -8.14691078]\n", + " [ 29.06165303 -8.14836175]\n", + " [ 2.18310498 -2.76510709]\n", + " [ 7.55910479 -2.76655806]\n", + " [ 12.93510459 -2.76800904]\n", + " [ 18.31110439 -2.76946001]\n", + " [ 23.68710421 -2.77091098]\n", + " [ 29.063104 -2.77236195]]\n", + "5169 -0.09046055 0.99584519]\n", + " [-0.01047241 -0.05408714 0.9984813 ]\n", + " [-0.01047238 -0.0173918 0.99979391]\n", + " [-0.20599275 -0.20011322 0.95787352]\n", + " [-0.20599275 -0.20011322 0.95787352]\n", + " [-0.01046737 -0.00440367 0.99993552]\n", + " [-0.01046737 -0.00440367 0.99993552]\n", + " [-0.19541667 -0.18950334 0.9622374 ]\n", + " [-0.16240545 -0.19145029 0.96797276]\n", + " [-0.12844349 -0.19302803 0.97274994]\n", + " [-0.09373247 -0.19423441 0.9764667 ]\n", + " [-0.05847519 -0.195066 0.97904541]\n", + " [-0.02287686 -0.19551916 0.98043302]\n", + " [-0.19732118 -0.15638145 0.96778572]\n", + " [-0.16397526 -0.15798254 0.97373181]\n", + " [-0.12967711 -0.1592836 0.978679 ]\n", + " [-0.09462661 -0.16028164 0.98252511]\n", + " [-0.05902568 -0.16097217 0.98519233]\n", + " [-0.02308015 -0.1DEBUG:root:radec2pix: lat: [78.01259544 79.61854981 81.2561548 82.92023352 84.60572556 86.30750292\n", + " 88.02000573 89.72623162 78.01259544 77.8905989 77.5557472 77.02861409\n", + " 76.33783962 75.51523956 74.59210732 73.59715789 89.72623162 88.17123291\n", + " 86.46586111 84.76551164 83.07960166 81.41406813 79.77423864 78.16538766\n", + " 73.59715789 74.60763881 75.5491728 76.39298182 77.10737428 77.65965515\n", + " 78.01977483 78.16538766 78.70852006 80.69871958 82.73128852 84.79686317\n", + " 86.88594315 88.98689611 77.99183548 77.69708601 77.10179122 76.25561048\n", + " 75.21673598 74.0417777 89.11867119 87.04263922 84.95641064 82.89040132\n", + " 80.8558565 78.86257349 74.04815363 75.2440736 76.30818941 77.18330532\n", + " 77.80960312 78.1346569 78.0179859 78.0179859 78.1707132 78.1707132\n", + " 78.68041726 78.36422733 77.72853599 76.83064382 75.73566662 74.50486571\n", + " 80.66353948 80.27068815 79.49543516 78.42701765 77.15572991 75.75689035\n", + " 82.68520532 82.17800874 81.21001267 79.9277617 78.4547664 76.877901\n", + " 84.73149404 84.03535931 82.79194264 81.24820065 79.5578398 77.80619197\n", + " 86.77660248 85.72142555 84.09351686 82.26517071 80.37322779 78.47497463\n", + " 88.68716566 86.88752222 84.86498838 82.8264064 80.80719889 78.82380063]\n", + "6135064 0.98662722]\n", + " [-0.19884383 -0.12234264 0.97236485]\n", + " [-0.16523235 -0.1235961 0.97847957]\n", + " [-0.13066656 -0.12461804 0.98356321]\n", + " [-0.09534433 -0.12540495 0.98751357]\n", + " [-0.05946678 -0.1259519 0.9902524 ]\n", + " [-0.02324061 -0.1262541 0.99172566]\n", + " [-0.19998259 -0.08758892 0.9758766 ]\n", + " [-0.16617376 -0.08849133 0.9821179 ]\n", + " [-0.13140827 -0.08922984 0.98730436]\n", + " [-0.09588212 -0.08980108 0.99133364]\n", + " [-0.05979589 -0.09020062 0.9941269 ]\n", + " [-0.0233572 -0.09042422 0.9956294 ]\n", + " [-0.20073433 -0.05232353 0.9782474 ]\n", + " [-0.16679525 -0.0528708 0.98457302]\n", + " [-0.13189744 -0.053321 0.98982824]\n", + " [-0.09623556 -0.05367171 0.99391049]\n", + " [-0.06000982 -0.05391982 0.99674043]\n", + " [-0.02342863 -0.0540624 0.99826267]\n", + " [-0.20109591 -0.016752 0.97942831]\n", + " [-0.16709274 -0.01694088 0.98579563]\n", + " [-0.1DEBUG:root:mm_to_pix: fitpx.shape: (96, 2)\n", + "3212968 -0.01709901 0.99108495]\n", + " [-0.09640067 -0.01722548 0.99519355]\n", + " [-0.06010576 -0.01731915 0.99804176]\n", + " [-0.0234538 -0.01737894 0.99957386]]\n", + "DEBUG:root:optics_fp: xyfp shape: (96, 2)\n", + "DEBUG:root:radec2pix: xyfp: [[ -0.24606 31.536148 ]\n", + " [ -0.24606 27.14971943]\n", + " [ -0.24606 22.76329086]\n", + " [ -0.24606 18.37686229]\n", + " [ -0.24606 13.99043371]\n", + " [ -0.24606 9.60400514]\n", + " [ -0.24606 5.21757658]\n", + " [ -0.24606 0.831148 ]\n", + " [ -0.24606 31.536148 ]\n", + " [ -4.63248857 31.536148 ]\n", + " [ -9.01891714 31.536148 ]\n", + " [-13.40534571 31.536148 ]\n", + " [-17.79177429 31.536148 ]\n", + " [-22.17820286 31.536148 ]\n", + " [-26.56463143 31.536148 ]\n", + " [-30.95106 31.536148 ]\n", + " [ -0.24606 0.831148 ]\n", + " [ -4.63248857 0.831148 ]\n", + " [ -9.01891714 0.831148 ]\n", + " [-13.40534571 0.831148 ]\n", + " [-17.79177429 0.831148 ]\n", + " [-22.17820285 0.831148 ]\n", + " [-26.56463143 0.831148 ]\n", + " [-30.95106 0.831148 ]\n", + " [-30.95106 31.536148 ]\n", + " [-30.95106 27.14971943]\n", + " [-30.95106 22.76329086]\n", + " [-30.95106 18.37686228]\n", + " [-30.95106 13.99043371]\n", + " [-30.95106 9.60400514]\n", + " [-30.95106 5.21757657]\n", + " [-30.95106 0.831148 ]\n", + " [ -0.26106 29.623648 ]\n", + " [ -0.26106 24.247648 ]\n", + " [ -0.26106 18.87164801]\n", + " [ -0.26106 13.495648 ]\n", + " [ -0.26106 8.119648 ]\n", + " [ -0.26106 2.743648 ]\n", + " [ -2.15856 31.521148 ]\n", + " [ -7.53456 31.521148 ]\n", + " [-12.91056 31.521148 ]\n", + " [-18.28656 31.521148 ]\n", + " [-23.66256 31.521148 ]\n", + " [-29.03856 31.521148 ]\n", + " [ -2.15856 0.846148 ]\n", + " [ -7.53456 0.846148 ]\n", + " [-12.91056 0.846148 ]\n", + " [-18.28655999 0.846148 ]\n", + " [-23.66256 0.846148 ]\n", + " [-29.03856 0.846148 ]\n", + " [-30.93606 29.623648 ]\n", + " [-30.93606 24.247648 ]\n", + " [-30.93606 18.871648 ]\n", + " [-30.93606 13.495648 ]\n", + " [-30.93606 8.119648 ]\n", + " [-30.93606 2.743648 ]\n", + " [ -0.26106 31.521148 ]\n", + " [ -0.26106 31.521148 ]\n", + " [-30.93606 0.846148 ]\n", + " [-30.93606 0.846148 ]\n", + " [ -2.15856 29.623648 ]\n", + " [ -7.53456 29.623648 ]\n", + " [-12.91056 29.623648 ]\n", + " [-18.28656 29.623648 ]\n", + " [-23.66256 29.623648 ]\n", + " [-29.03856 29.623648 ]\n", + " [ -2.15856 24.247648 ]\n", + " [ -7.53456 24.247648 ]\n", + " [-12.91056 24.247648 ]\n", + " [-18.28656 24.247648 ]\n", + " [-23.66256 24.247648 ]\n", + " [-29.03856 24.247648 ]\n", + " [ -2.15856 18.871648 ]\n", + " [ -7.53456 18.871648 ]\n", + " [-12.91056 18.871648 ]\n", + " [-18.28656 18.871648 ]\n", + " [-23.66256 18.871648 ]\n", + " [-29.03856 18.871648 ]\n", + " [ -2.15856 13.495648 ]\n", + " [ -7.53456 13.495648 ]\n", + " [-12.91056 13.495648 ]\n", + " [-18.28656 13.495648 ]\n", + " [-23.66256 13.495648 ]\n", + " [-29.03856 13.495648 ]\n", + " [ -2.15856 8.119648 ]\n", + " [ -7.53456 8.119648 ]\n", + " [-12.91056 8.119648 ]\n", + " [-18.28656 8.119648 ]\n", + " [-23.66256 8.119648 ]\n", + " [-29.03856 8.119648 ]\n", + " [ -2.15856 2.743648 ]\n", + " [ -7.53456 2.743648 ]\n", + " [-12.91056 2.743648 ]\n", + " [-18.28656 2.743648 ]\n", + " [-23.6625DEBUG:root:radec2pix: ccdpx: [[-4.45000000e+01 -4.99999783e-01]\n", + " [-4.45000000e+01 2.91928571e+02]\n", + " [-4.45000000e+01 5.84357143e+02]\n", + " [-4.45000000e+01 8.76785714e+02]\n", + " [-4.45000000e+01 1.16921429e+03]\n", + " [-4.45000000e+01 1.46164286e+03]\n", + " [-4.45000000e+01 1.75407143e+03]\n", + " [-4.44999999e+01 2.04650000e+03]\n", + " [-4.45000000e+01 -4.99999783e-01]\n", + " [ 2.47928571e+02 -5.00000080e-01]\n", + " [ 5.40357143e+02 -5.00000178e-01]\n", + " [ 8.32785714e+02 -4.99999867e-01]\n", + " [ 1.12521429e+03 -5.00000095e-01]\n", + " [ 1.41764286e+03 -5.00000221e-01]\n", + " [ 1.71007143e+03 -5.00000185e-01]\n", + " [ 2.00250000e+03 -5.00000018e-01]\n", + " [-4.44999999e+01 2.04650000e+03]\n", + " [ 2.47928572e+02 2.04650000e+03]\n", + " [ 5.40357143e+02 2.04650000e+03]\n", + " [ 8.32785714e+02 2.04650000e+03]\n", + " [ 1.12521429e+03 2.04650000e+03]\n", + " [ 1.41764286e+03 2.04650000e+03]\n", + " [ 1.71007143e+03 2.04650000e+03]\n", + " [ 2.00250000e+03 2.04650000e+03]\n", + " [ 2.00250000e+03 -5.00000018e-01]\n", + " [ 2.00250000e+03 2.91928571e+02]\n", + " [ 2.00250000e+03 5.84357143e+02]\n", + " [ 2.00250000e+03 8.76785DEBUG:root:radec2pix: xyfp: [[-32.208296 -31.60697943]\n", + " [-32.20831882 -27.22055086]\n", + " [-32.20834163 -22.83412229]\n", + " [-32.20836444 -18.44769372]\n", + " [-32.20838725 -14.06126515]\n", + " [-32.20841007 -9.67483658]\n", + " [-32.20843288 -5.288408 ]\n", + " [-32.2084557 -0.90197943]\n", + " [-32.208296 -31.60697943]\n", + " [-27.82186743 -31.60695662]\n", + " [-23.43543886 -31.60693381]\n", + " [-19.04901029 -31.60691099]\n", + " [-14.66258171 -31.60688818]\n", + " [-10.27615314 -31.60686536]\n", + " [ -5.88972457 -31.60684255]\n", + " [ -1.503296 -31.60681974]\n", + " [-32.2084557 -0.90197943]\n", + " [-27.82202712 -0.90195662]\n", + " [-23.43559855 -0.9019338 ]\n", + " [-19.04916999 -0.90191099]\n", + " [-14.66274141 -0.90188818]\n", + " [-10.27631284 -0.90186536]\n", + " [ -5.88988428 -0.90184255]\n", + " [ -1.5034557 -0.90181973]\n", + " [ -1.503296 -31.60681974]\n", + " [ -1.50331881 -27.22039116]\n", + " [ -1.50334163 -22.83396259]\n", + " [ -1.50336444 -18.44753402]\n", + " [ -1.50338726 -14.06110544]\n", + " [ -1.50341007 -9.67467688]\n", + " [ -1.50343288 -5.2882483 ]\n", + " [ -1.5034557 -0.90181973]\n", + " [-32.19330594 -29.69447935]\n", + " [-32.19333391 -24.31847935]\n", + " [-32.19336187 -18.94247936]\n", + " [-32.19338983 -13.56647936]\n", + " [-32.19341779 -8.19047935]\n", + " [-32.19344575 -2.81447935]\n", + " [-30.29579608 -31.59196949]\n", + " [-24.91979608 -31.59194152]\n", + " [-19.54379608 -31.59191356]\n", + " [-14.16779608 -31.5918856 ]\n", + " [ -8.79179608 -31.59185764]\n", + " [ -3.41579608 -31.59182968]\n", + " [-30.29595562 -0.91696949]\n", + " [-24.91995562 -0.91694153]\n", + " [-19.54395562 -0.91691356]\n", + " [-14.16795562 -0.9168856 ]\n", + " [ -8.79195562 -0.91685764]\n", + " [ -3.41595563 -0.91682968]\n", + " [ -1.51830595 -29.69431981]\n", + " [ -1.51833391 -24.31831981]\n", + " [ -1.51836187 -18.94231981]\n", + " [ -1.51838983 -13.56631981]\n", + " [ -1.51841779 -8.19031981]\n", + " [ -1.51844575 -2.81431982]\n", + " [-32.19329608 -31.59197936]\n", + " [-32.19329608 -31.59197936]\n", + " [ -1.51845562 -0.91681981]\n", + " [ -1.51845562 -0.91681981]\n", + " [-30.29580595 -29.69446949]\n", + " [-24.91980594 -29.69444152]\n", + " [-19.54380595 -29.69441356]\n", + " [-14.16780595 -29.69438561]\n", + " [ -8.79180595 -29.69435764]\n", + " [ -3.41580595 -29.69432968]\n", + " [-30.29583391 -24.31846949]\n", + " [-24.91983391 -24.31844152]\n", + " [-19.54383391 -24.31841356]\n", + " [-14.16783391 -24.31838561]\n", + " [ -8.79183391 -24.31835764]\n", + " [ -3.41583391 -24.31832968]\n", + " [-30.29586187 -18.94246949]\n", + " [-24.91986187 -18.94244153]\n", + " [-19.54386187 -18.94241356]\n", + " [-14.16786187 -18.94238561]\n", + " [ -8.79186187 -18.94235764]\n", + " [ -3.41586187 -18.94232969]\n", + " [-30.29588983 -13.56646949]\n", + " [-24.91988983 -13.56644152]\n", + " [-19.54388984 -13.56641357]\n", + " [-14.16788983 -13.5663856 ]\n", + " [ -8.79188983 -13.56635764]\n", + " [ -3.41588983 -13.56632968]\n", + " [-30.29591779 -8.19046949]\n", + " [-24.91991779 -8.19044152]\n", + " [-19.54391779 -8.19041356]\n", + " [-14.16791779 -8.1903856 ]\n", + " [ -8.79191779 -8.19035764]\n", + " [ -3.41591779 -8.19032968]\n", + " [-30.29594575 -2.81446949]\n", + " [-24.91994576 -2.81444153]\n", + " [-19.54394575 -2.81441356]\n", + " [-14.16794576 -2.8143856 ]\n", + " [ -8.79194575 -2.81435764]\n", + " [ -3.41594575 -2.81432968]]\n", + "DEBUG:root:optics_fp: rtanth: [45.08354623 42.13009767 39.44420909 37.08406184 35.11539785 33.60708557\n", + " 32.6230401 32.21134587 45.08354623 42.06280558 39.30031295 36.85418691\n", + " 34.7912215DEBUG:root:radec2pix: lng: [224.17091663 219.87741809 214.97008665 209.39598188 203.1373574\n", + " 196.23634076 188.81644128 181.08669631 224.17091663 228.3555716\n", + " 233.16265584 238.65783928 244.87601329 251.7942959 259.30486084\n", + " 267.20296141 181.08669631 181.26291687 181.50503492 181.85849799\n", + " 182.42298774 183.46757199 186.05387592 202.53707914 267.20296141\n", + " 266.75372148 266.13046308 265.20807536 263.70434622 260.82362196\n", + " 253.17669924 202.53707914 222.38348083 216.71601144 210.07066421\n", + " 202.39896016 193.78096287 184.48069147 225.9100405 231.44842444\n", + " 237.98973756 245.61222365 254.27065244 263.72553361 181.18560606\n", + " 181.44802269 181.85460599 182.56904059 184.15297918 190.61463228\n", + " 266.99438373 266.33112836 265.28794249 263.40934603 259.04191913\n", + " 238.94596845 224.17054014 224.17054014 202.81670057 202.81670057\n", + " 224.11986404 229.69237658 236.35966367 244.23925438 253.312778\n", + " 263.32641007 218.39761245 223.93365474 230.85002743 239.44337044\n", + " 249.86289594 261.85943825 211.60273873 216.79700073 714e+02]\n", + " [ 2.00250000e+03 1.16921429e+03]\n", + " [ 2.00250000e+03 1.46164286e+03]\n", + " [ 2.00250000e+03 1.75407143e+03]\n", + " [ 2.00250000e+03 2.04650000e+03]\n", + " [-4.35000000e+01 1.27000000e+02]\n", + " [-4.35000000e+01 4.85400000e+02]\n", + " [-4.35000000e+01 8.43800000e+02]\n", + " [-4.35000000e+01 1.20220000e+03]\n", + " [-4.35000000e+01 1.56060000e+03]\n", + " [-4.35000000e+01 1.91900000e+03]\n", + " [ 8.30000000e+01 4.99999873e-01]\n", + " [ 4.41400000e+02 5.00000123e-01]\n", + " [ 7.99800000e+02 5.00000108e-01]\n", + " [ 1.15820000e+03 4.99999719e-01]\n", + " [ 1.51660000e+03 4.99999964e-01]\n", + " [ 1.87500000e+03 5.00000185e-01]\n", + " [ 8.30000000e+01 2.04550000e+03]\n", + " [ 4.41400000e+02 2.04550000e+03]\n", + " [ 7.99800000e+02 2.04550000e+03]\n", + " [ 1.15820000e+03 2.04550000e+03]\n", + " [ 1.51660000e+03 2.04550000e+03]\n", + " [ 1.87500000e+03 2.04550000e+03]\n", + " [ 2.00150000e+03 1.27000000e+02]\n", + " [ 2.00150000e+03 4.85400000e+02]\n", + " [ 2.00150000e+03 8.43800000e+02]\n", + " [ 2.00150000e+03 1.20220000e+03]\n", + " [ 2.00150000e+03 1.56060000e+03]\n", + " [ 2.00150000e+03 1.91900000e+03]\n", + " [-4.3500006 2.743648 ]\n", + " [-29.03856 2.743648 ]]\n", + "DEBUG:root:make_az_asym: xyp: [[-32.29046994 -31.71666141]\n", + " [-32.28860507 -27.33023323]\n", + " [-32.2867402 -22.94380505]\n", + " [-32.28487534 -18.55737688]\n", + " [-32.28301047 -14.1709487 ]\n", + " [-32.2811456 -9.78452053]\n", + " [-32.27928073 -5.39809235]\n", + " [-32.27741587 -1.01166418]\n", + " [-32.29046994 -31.71666141]\n", + " [-27.90404176 -31.71852627]\n", + " [-23.51761359 -31.72039114]\n", + " [-19.13118541 -31.722256 ]\n", + " [-14.74475724 -31.72412087]\n", + " [-10.35832906 -31.72598574]\n", + " [ -5.97190089 -31.72785061]\n", + " [ -1.58547272 -31.72971547]\n", + " [-32.27741587 -1.01166418]\n", + " [-27.8909877 -1.01352905]\n", + " [-23.50455952 -1.01539391]\n", + " [-19.11813134 -1.01725878]\n", + " [-14.73170317 -1.01912365]\n", + " [-10.345275 -1.02098851]\n", + " [ -5.95884682 -1.02285338]\n", + " [ -1.57241864 -1.02471825]\n", + " [ -1.58547272 -31.72971547]\n", + " [ -1.58360785 -27.3432873 ]\n", + " [ -1.58174298 -22.95685912]\n", + " [ -1.57987811 -18.57043094]\n", + " [ -1.57801325 -14.18400278]\n", + " [ -1.57614838 -9.7975746 ]\n", + " [ -1.57428351 -5.41114642]\n", + " [ -1.57241864 -1.02471825]\n", + " [-32.27465685 -29.80416795]\n", + " [-32.27237127 -24.42816844]\n", + " [-32.2700857 -19.05216893]\n", + " [-32.26780012 -13.67616941]\n", + " [-32.26551454 -8.3001699 ]\n", + " [-32.26322896 -2.92417038]\n", + " [-30.37796373 -31.70247449]\n", + " [-25.00196422 -31.70476008]\n", + " [-19.62596471 -31.70704565]\n", + " [-14.24996519 -31.70933123]\n", + " [ -8.87396568 -31.71161681]\n", + " [ -3.49796617 -31.71390239]\n", + " [-30.36492242 -1.02747727]\n", + " [-24.98892291 -1.02976285]\n", + " [-19.61292339 -1.03204842]\n", + " [-14.23692388 -1.034334 ]\n", + " [ -8.86092437 -1.03661958]\n", + " [ -3.48492485 -1.03890516]\n", + " [ -1.59965962 -29.81720927]\n", + " [ -1.59737405 -24.44120975]\n", + " [ -1.59508847 -19.06521024]\n", + " [ -1.59280289 -13.68921073]\n", + " [ -1.59051731 -8.31321121]\n", + " [ -1.58823174 -2.9372117 ]\n", + " [-32.27546357 -31.70166778]\n", + " [-32.27546357 -31.70166778]\n", + " [ -1.58742502 -1.03971187]\n", + " [ -1.58742502 -1.03971187]\n", + " [-30.37715702 -29.80497466]\n", + " [-25.00115751 -29.80726024]\n", + " [-19.625158 -29.80954582]\n", + " [-14.24915848 -29.8118314 ]\n", + " [ -8.87315897 -29.81411698]\n", + " [ -3.49715945 -29.81640256]\n", + " [-30.37487145 -24.42897515]\n", + " [-24.99887193 -24.43126073]\n", + " [-19.62287241 -24.43354631]\n", + " [-14.2468729 -24.43583188]\n", + " [ -8.87087339 -24.43811746]\n", + " [ -3.49487388 -24.44040305]\n", + " [-30.37258587 -19.05297564]\n", + " [-24.99658635 -19.05526122]\n", + " [-19.62058684 -19.05754679]\n", + " [-14.24458732 -19.05983237]\n", + " [ -8.86858781 -19.06211795]\n", + " [ -3.4925883 -19.06440353]\n", + " [-30.37030029 -13.67697612]\n", + " [-24.99430077 -13.6792617 ]\n", + " [-19.61830126 -13.68154728]\n", + " [-14.24230175 -13.68383286]\n", + " [ -8.86630223 -13.68611844]\n", + " [ -3.49030272 -13.68840401]\n", + " [-30.36801471 -8.30097661]\n", + " [-24.9920152 -8.30326219]\n", + " [-19.61601568 -8.30554776]\n", + " [-14.24001617 -8.30783335]\n", + " [ -8.86401666 -8.31011893]\n", + " [ -3.48801714 -8.3124045 ]\n", + " [-30.36572914 -2.9249771 ]\n", + " [-24.98972962 -2.92726267]\n", + " [-19.6137301 -2.92954825]\n", + " [-14.23773059 -2.93183383]\n", + " [ -8.86173108 -2.93411941]\n", + " [ -3.48573156 -2.93640499]]\n", + "9 33.18295674 32.09781375 31.58974814 32.21134587 27.8266828\n", + " 23.4426803 19.05979422 14.67902457 10.30307141 5.94258442 1.71954938\n", + " 3223.64273186\n", + " 232.75457852 244.72618682 259.56986466 203.65258863 208.03632189\n", + " 214.17758593 223.12426077 236.4587659 255.51668541 194.60966243\n", + " 197.58758667 202.01156736 209.14892478 221.94021993 246.56988658\n", + " 184.76194605 185.78921163 187.37371211 190.13104958 196.0740482\n", + " 216.53792504]\n", + "1.58974814 27.2090275 22.83049885 18.45572241 14.0881941 9.73767156\n", + " 5.44507054 1.71954938 43.75525849 40.30775232 37.31902868 34.90712904\n", + " 33.19801449 32.30342747 43.72724359 40.19104921 37.09948507 34.57203928\n", + " 32.73962065 31.72289982 30.29997699 24.92663654 19.55475813 14.18600274\n", + " 8.82607125 3.51555769 29.68028893 24.31279095 18.95011366 13.59796176\n", + " 8.27677911 3.14775039 45.06233412 45.06233412 1.74001001 1.74001001\n", + " 42.37901039 38.71988024 35.50042932 32.85018402 30.91587699 29.8370753\n", + " 38.80944181 34.77673616 31.15241137 28.09496116 25.80666004 24.50394488\n", + " 35.69548681 31.26365913 27.1747629 23.607665 20.83215559 19.19474717\n", + " 33.16572831 28.34103278 23.75427319 19.57344126 16.11700e+01 4.99999853e-01]\n", + " [-4.35000000e+01 4.99999853e-01]\n", + " [ 2.00150000e+03 2.04550000e+03]\n", + " [ 2.00150000e+03 2.04550000e+03]\n", + " [ 8.30000000e+01 1.27000000e+02]\n", + " [ 4.41400000e+02 1.27000000e+02]\n", + " [ 7.99800000e+02 1.27000000e+02]\n", + " [ 1.15820000e+03 1.27000000e+02]\n", + " [ 1.51660000e+03 1.27000000e+02]\n", + " [ 1.87500000e+03 1.27000000e+02]\n", + " [ 8.30000000e+01 4.85400000e+02]\n", + " [ 4.41400000e+02 4.85400000e+02]\n", + " [ 7.99800000e+02 4.85400000e+02]\n", + " [ 1.15820000e+03 4.85400000e+02]\n", + " [ 1.51660000e+03 4.85400000e+02]\n", + " [ 1.87500000e+03 4.85400000e+02]\n", + " [ 8.30000000e+01 8.43800000e+02]\n", + " [ 4.41400000e+02 8.43800000e+02]\n", + " [ 7.99800000e+02 8.43800000e+02]\n", + " [ 1.15820000e+03 8.43800000e+02]\n", + " [ 1.51660000e+03 8.43800000e+02]\n", + " [ 1.87500000e+03 8.43800000e+02]\n", + " [ 8.30000000e+01 1.20220000e+03]\n", + " [ 4.41400000e+02 1.20220000e+03]\n", + " [ 7.99800000e+02 1.20220000e+03]\n", + " [ 1.15820000e+03 1.20220000e+03]\n", + " [ 1.51660000e+03 1.20220000e+03]\n", + " [ 1.87500000e+03 1.20220000e+03]\n", + " [ 8.30000001e+01 1.56060000e+03]\n", + " [ 4.41400000e+02 1.56060000e+03]\n", + " [ 7.99800000e+02 1.56060000e+03]\n", + " [ 1.15820000e+03 1.56060000e+03]\n", + " [ 1.51660000e+03 1.56060000e+03]\n", + " [ 1.87500000e+03 1.56060000e+03]\n", + " [ 8.29999999e+01 1.91900000e+03]\n", + " [ 4.41400000e+02 1.91900000e+03]\n", + " [ 7.99800000e+02 1.91900000e+03]\n", + " [ 1.15820000e+03 1.91900000e+03]\n", + " [ 1.51660000e+03 1.91900000e+03]\n", + " [ 1.87500000e+03 1.91900000e+03]]\n", + "DEBUG:root:radec2pix: xyfp Shape: (96, 2)\n", + "DEBUG:root:make_az_asym: xyp: shape: (96, 2)\n", + "58242 13.93686031\n", + " 31.36185649 26.20714877 21.16284486 16.33156793 11.97401233 8.82250437\n", + " 30.41330799 25.06427551 19.72990783 14.4264816 9.20761812 4.38632462]\n", + "DEBUG:root:optics_fp: rtanth: [31.36436077 26.97807037 22.59183361 18.20568928 13.8197254 9.43419362\n", + " 5.05021974 0.69781153 31.36436077 31.70156673 32.63030877 34.10229142\n", + " 36.05103355 38.40402676 41.09188526 44.05335752 0.69781153 4.66402697\n", + " 9.02778296 13.40634529 17.78878395 22.17280059 26.55761376 30.94288484\n", + " 44.05335752 41.04621131 38.30621526 35.89459992 33.88155828 32.34160155\n", + " 31.34453543 30.94288484 29.45203736 24.07626653 18.70062748 13.32527965\n", + " 7.95081375 2.58274138 31.42169962 32.23771351 33.8971959 36.28460223\n", + " 39.26738572 42.72102005 2.2467047 7.54947995 12.91295338 18.28378612\n", + " 23.65696634 29.03119064 42.70202201 39.18809499 36.13521339 33.66902518\n", + " 31.92578297 31.02758019 31.34947523 31.34947523 30.92821126 30.92821126\n", + " 29.52890302 30.39577404 32.15047118 34.65840831 37.76983569 41.34874196\n", + " 24.17023416 25.22195839 27.31111317 30.22332497 33.74617895 37.70891894\n", + " 18.82145258 20.1542562 22.71439544 26.14376082 30.14716324 34.52548949\n", + " 13.49432055 15.2984853 18.54166578 22.61295734 27.14223759 31.93523187\n", + " 8.23098104 10.94056736 15.14746618 19.92481371 24.9470123 30.09171641\n", + " 3.34726194 7.94676841 13.14917661 18.45137705 23.78673027 29.13702987]\n", + "DEBUG:root:radec2pix: curVec: [[ 0.84084632 -0.44599585 -0.30670044]\n", + " [ 0.83954821 -0.43183469 -0.32966287]\n", + " [ 0.83751242 -0.4171659 -0.35291013]\n", + " [ 0.834716DEBUG:root:radec2pix: ccdpx: [[-4.45000000e+01 -5.00000033e-01]\n", + " [-4.45000003e+01 2.91928571e+02]\n", + " [-4.45000002e+01 5.84357143e+02]\n", + " [-4.44999998e+01 8.76785714e+02]\n", + " [-4.44999998e+01 1.16921429e+03]\n", + " [-4.45000001e+01 1.46164286e+03]\n", + " [-4.44999997e+01 1.75407143e+03]\n", + " [-4.45000002e+01 2.04650000e+03]\n", + " [-4.45000000e+01 -5.00000033e-01]\n", + " [ 2.47928571e+02 -4.99999990e-01]\n", + " [ 5.40357143e+02 -5.00000111e-01]\n", + " [ 8.32785714e+02 -5.00000066e-01]\n", + " [ 1.12521429e+03 -4.99999995e-01]\n", + " [ 1.41764286e+03 -5.00000140e-01]\n", + " [ 1.71007143e+03 -5.00000040e-01]\n", + " [ 2.00250000e+03 -5.00000297e-01]\n", + " [-4.45000002e+01 2.04650000e+03]\n", + " [ 2.47928572e+02 2.04650000e+03]\n", + " [ 5.40357143e+02 2.04650000e+03]\n", + " [ 8.32785714e+02 2.04650000e+03]\n", + " [ 1.12521429e+03 2.04650000e+03]\n", + " [ 1.41764286e+03 2.04650000e+03]\n", + " [ 1.71007143e+03 2.04650000e+03]\n", + " [ 2.00250000e+03 2.04650000e+03]\n", + " [ 2.00250000e+03 -5.00000297e-01]\n", + " [ 2.00250000e+03 2.91928572e+02]\n", + " [ 2.00250000e+03 5.84357143e+02]\n", + " [ 2.00250000e+03 8.76785DEBUG:root:radec2pix: lat: [73.30319327 74.28364829 75.19434757 76.00760673 76.6934474 77.22149469\n", + " 77.56431546 77.70181842 73.30319327 74.31487163 75.26252869 76.11836609\n", + " 76.85166299 77.43039612 77.8244634 78.01035447 77.70181842 79.30062777\n", + " 80.93200296 82.59063863 84.2712796 85.96832552 87.67438557 89.35703566\n", + " 78.01035447 79.61411514 81.24861046 82.90802789 84.58587071 86.27294722\n", + " 87.94616945 89.35703566 73.74128804 74.89975016 75.92621516 76.76637844\n", + " 77.36466213 77.67335289 73.7541097 74.95468773 76.03182731 76.93013306\n", + " 77.59097642 77.96138218 78.39443735 80.37649363 82.40216048 84.46173597\n", + " 86.54472647 88.63280521 78.70517127 80.69206097 82.71932817 84.7752745\n", + " 86.84188191 88.83673743 73.31017726 73.31017726 89.34933673 89.34933673\n", + " 74.20408349 75.46003419 76.59358943 77.54526674 78.24998117 78.64701061\n", + " 75.41740928 76.83842002 78.14733268 79.2729755 80.12769991 80.61933545\n", + " 76.49875662 78.09183026 79.59737911 80.93621381 81.99355302 82.62428133\n", + " 77.38945666 79.14833894 80.86043698 82.45133489 83.78724838 84.64121324\n", + " 78.02753384 79.92284226 81.82091734 83.6737055 85.37260957 86.62213831\n", + " 78.35820379 80.33138971 82.34363217 84.38015735 86.41373806 88.32724747]\n", + "93 -0.40202435 -0.37632973]\n", + " [ 0.83114882 -0.38645019 -0.39980982]\n", + " [ 0.82680349 -0.370489 -0.42324212]\n", + " [ 0.82168437 -0.35419194 -0.44652309]\n", + " [ 0.81580288 -0.33761571 -0.46955435]\n", + " [ 0.84084632 -0.44599585 -0.30670044]\n", + " [ 0.8261648 -0.46679267 -0.31552548]\n", + " [ 0.81053928 -0.48761683 -0.32443165]\n", + " [ 0.79399854 -0.50836705 -0.33336056]\n", + " [ 0.7765814 -0.52894489 -0.3422552 ]\n", + " [ 0.75833555 -0.54925614 -0.35106251]\n", + " [ 0.739317 -0.56921121 -0.35973459]\n", + " [ 0.71958999 -0.5887255 -0.36822892]\n", + " [ 0.81580288 -0.33761571 -0.46955435]\n", + " [ 0.80052324 -0.35830497 -0.48039577]\n", + " [ 0.78428539 -0.37913055 -0.49107684]\n", + " [ 0.76711991 -0.39999109 -0.50153182]\n", + " [ 0.74906411 -0.42079087 -0.51170109]\n", + " [ 0.73016343 -0.44143805 -0.52153026]\n", + " [ 0.71047323 -0.46184325 -0.5309695 ]\n", + " [ 0.69005971 -0.48191922 -0.53997358]\n", + " [ 0.71958999 -0.5887255 -0.36822892]\n", + " [ 0.7173197 -0.57545691 -0.39281267]\n", + " [ 0.71441966 -0.56146359 -0.41756818]\n", + " [ 0.71087078 -0.54677669 -0.44237765]\n", + " [ 0.70666095 -0.53143242 -0.46712942]\n", + " [ 0.70178546 -0.51547331 -0.49171581]\n", + " [ 0.6962477 -0.4989495 -0.51603154]\n", + " [ 0.69005971 -0.48191922 -0.53997358]\n", + " [ 0.8403205 -0.43995707 -0.31670054]\n", + " [ 0.83823633 -0.42225594 -0.3450504 ]\n", + " [ 0.83502123 -0.40382623 -0.37371636]\n", + " [ 0.83064768 -0.38473963 -0.40249204]\n", + " [ 0.8251072 -0.36508009 -0.43117819]\n", + " [ 0.81840941 -0.3449441 -0.45958634]\n", + " [ 0.83455919 -0.45500608 -0.31061299]\n", + " [ 0.81592717 -0.48052637 -0.32149222]\n", + " [ 0.79590455 -0.50598695 -0.33243517]\n", + " [ 0.77455875 -0.53120532 -0.34333607]\n", + " [ 0.75197746 -0.55600803 -0.3540974 ]\n", + " [ 0.72826725 -0.58023223 -0.3646332 ]\n", + " [ 0.80928189 -0.34667011 -0.47421794]\n", + " [ 0.78990744 -0.37213225 -0.48740519]\n", + " [ 0.76912337 -0.39769767 -0.50028573]\n", + " [ 0.74699552 -0.42318783 -0.51274726]\n", + " [ 0.72360778 -0.44843352 -0.52468959]\n", + " [ 0.69906655 -0.47327099 -0.53602287]\n", + " [ 0.7187449 -0.58296512 -0.37888973]\n", + " [ 0.71554238 -0.56621142 -0.40915002]\n", + " [ 0.71137408 -0.5483997 -0.43955056]\n", + " [ 0.70621481 -0.5295945 -0.4698833 ]\n", + " [ 0.70005599 -0.50987427 -0.49994983]\n", + " [ 0.69290744 -0.48933471 -0.5295572 ]\n", + " [ 0.84079453 -0.44601928 -0.30680834]\n", + " [ 0.84079453 -0.44601928 -0.30680834]\n", + " [ 0.69015291 -0.48191025 -0.53986246]\n", + " [ 0.69015291 -0.48191025 -0.53986246]\n", + " [ 0.83406567 -0.44896265 -0.32057292]\n", + " [ 0.81537223 -0.47454177 -0.33162967]\n", + " [ 0.79528033 -0.50006835 -0.34272561]\n", + " [ 0.7738582 -0.52535934 -0.35375281]\n", + " [ 0.75119376 -0.55024108 -0.36461307]\n", + " [ 0.72739362 -0.57455043 -0.37522037]\n", + " [ 0.83192801 -0.43129919 -0.34910858]\n", + " [ 0.81307015 -0.45700129 -0.36064768]\n", + " [ 0.79279742 -0.48267301 -0.37215455]\n", + " [ 0.77117914 -0.50813068 -0.38351786]\n", + " [ 0.74830288 -0.53320052 -0.39463909]\n", + " [ 0.7242751 -0.55771849 -0.4054327 ]\n", + " [ 0.8286631 -0.41288346 -0.37794803]\n", + " [ 0.80965734 -0.43864264 -0.38993285]\n", + " [ 0.78922784 -0.46439669 -0.4018148 ]\n", + " [ 0.76744344 -0.48996256 -0.41348186]\n", + " [ 0.7443906 -0.51516683 -0.42483617]\n", + " [ 0.72017538 -0.53984464 -0.43579259]\n", + " [ 0.82424422 -0.39378661 -0.40688275]\n", + " [ 0.8051083 -0.41953583 -0.41927357]\n", + " [ 0.78454612 -0.44530851 -0.43149475]\n", + " [ 0.76262533 -0.47092289 -0.4434346 ]\n", + " [ 0.73943101 -0.49620644 -0.45499554]\n", + " [ 0.715069 -0.52099383 -0.466092 ]\n", + " [ 0.81866309 -0.3740924 -0.43571277]\n", + " [ 0.79941447 -0.39976444 -0.4484695 ]\n", + " [ 0.77874286 -0.42549175 -0.46099494]\n", + " [ 0.75671469 -0.45109412 -0.47317752]\n", + " [ 0.73341407 -0.47640031 -0.48491911]\n", + " [ 0.70894685 -0.50124517 -0.49613268]\n", + " [ 0.81192926 -0.35389751 -0.46424932]\n", + " [ 0.79258473 -0.37942594 -0.47733155]\n", + " [ 0.77182608 -0.40504457 -0.49012591]\n", + " [ 0.74971916 -0.43057451 -0.50252042]\n", + " [ 0.72634779 -0.45584603 -0.51441548]\n", + " [ 0.70181816 -0.48069492 -0.52572203]]\n", + "714e+02]\n", + " [ 2.00250000e+03 1.16921429e+03]\n", + " [ 2.00250000e+03 1.46164286e+03]\n", + " [ 2.00250000e+03 1.75407143e+03]\n", + " [ 2.00250000e+03 2.04650000e+03]\n", + " [-4.34999999e+01 1.27000000e+02]\n", + " [-4.35000000e+01 4.85400000e+02]\n", + " [-4.35000001e+01 8.43800000e+02]\n", + " [-4.35000001e+01 1.20220000e+03]\n", + " [-4.34999998e+01 1.56060000e+03]\n", + " [-4.34999998e+01 1.91900000e+03]\n", + " [ 8.29999999e+01 4.99999893e-01]\n", + " [ 4.41400000e+02 5.00000055e-01]\n", + " [ 7.99800000e+02 4.99999998e-01]\n", + " [ 1.15820000e+03 5.00000122e-01]\n", + " [ 1.51660000e+03 4.99999912e-01]\n", + " [ 1.87500000e+03 5.00000160e-01]\n", + " [ 8.30000002e+01 2.04550000e+03]\n", + " [ 4.41400000e+02 2.04550000e+03]\n", + " [ 7.99800000e+02 2.04550000e+03]\n", + " [ 1.15820000e+03 2.04550000e+03]\n", + " [ 1.51660000e+03 2.04550000e+03]\n", + " [ 1.87500000e+03 2.04550000e+03]\n", + " [ 2.00150000e+03 1.27000000e+02]\n", + " [ 2.00150000e+03 4.85400000e+02]\n", + " [ 2.00150000e+03 8.43800000e+02]\n", + " [ 2.00150000e+03 1.20220000e+03]\n", + " [ 2.00150000e+03 1.56060000e+03]\n", + " [ 2.00150000e+03 1.91900000e+03]\n", + " [-4.35000001e+01 4.99999931e-01]\n", + " [-4.35000001e+01 4.99999931e-01]\n", + " [ 2.00150000e+03 2.04550000e+03]\n", + " [ 2.00150000e+03 2.04550000e+03]\n", + " [ 8.30000000e+01 1.27000000e+02]\n", + " [ 4.41400000e+02 1.270DEBUG:root:mm_to_pix: fitpx: [[0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]]\n", + "DEBUG:root:optics_fp: cphi: [0.00736113 0.00855795 0.01021949 0.01268159 0.01670634 0.02447236\n", + " 0.04571623DEBUG:root:mm_to_pix: fitpx.shape: (96, 2)\n", + "DEBUG:root:radec2pix: xyfp: [[-32.29046994 -31.71666141]\n", + " [-32.28860507 -27.33023323]\n", + " [-32.2867402 -22.94380505]\n", + " [-32.28487534 -18.55737688]\n", + " [-32.28301047 -14.1709487 ]\n", + " [-32.2811456 -9.78452053]\n", + " [-32.27928073 -5.39809235]\n", + " [-32.27741587 -1.01166418]\n", + " [-32.29046994 -31.71666141]\n", + " [-27.90404176 -31.71852627]\n", + " [-23.51761359 -31.72039114]\n", + " [-19.13118541 -31.722256 ]\n", + " [-14.74475724 -31.72412087]\n", + " [-10.35832906 -31.72598574]\n", + " [ -5.97190089 -31.72785061]\n", + " [ -1.58547272 -31.72971547]\n", + " [-32.27741587 -1.01166418]\n", + " [-27.8909877 -1.01352905]\n", + " [-23.50455952 -1.01539391]\n", + " [-19.11813134 -1.01725878]\n", + " [-14.73170317 -1.01912365]\n", + " [-10.345275 -1.02098851]\n", + " [ -5.95884682 -1.02285338]\n", + " [ -1.57241864 -1.02471825]\n", + " [ -1.58547272 -31.72971547]\n", + " [ -1.58360785 -27.3432873 ]\n", + " [ -1.58174298 -22.95685912]\n", + " [ -1.57987811 -18.57043094]\n", + " [ -1.57801325 -14.18400278]\n", + " [ -1.57614838 -9.7975746 ]\n", + " [ -1.57428351 -5.41114642]\n", + " [ -1.57241864 -1.02471825]\n", + " 0.33085868 0.00736113 0.14564913 0.27593163 0.39264701\n", + " 0.49309519 0.57710146 0.64609955 0.70223653 0.33085868 0.98998261\n", + " 0.99733613 0.99879292 0.99931459 0.99955889 0.99969254 0.99977352\n", + " 0.70223653 0.7536841 0.80759419 0.86185323 0.91305945 0.9565351\n", + " 0.98696237 0.99977352 0.00834839 0.01021242 0.01314806 0.01845192\n", + " 0.03092476 0.09520001 0.06821327 0.23324784 0.38042607 0.50355732\n", + " 0.60221419 0.67936994 0.95400922 0.99601258 0.99863886 0.99932131\n", + " 0.99959465 0.99973085 0.72410803 0.78903751 0.85569931 0.91837755\n", + " 0.96852369 0.99656102 0.0078431 0.0078431 0.99976286 0.99976286\n", + " 0.07258573 0.24738232 0.40109449 0.52718454 0.6260916 0.70191681\n", + " 0.08867837 0.2981282 0.47216592 0.60454556 0.70074236 0.76966876\n", + " 0.11387947 0.37309127 0.56771826 0.69888097 0.78439808 0.84063622\n", + " 0.15883549 0.49151121 0.69548104 0.80800475 0.87123904 0.90881999\n", + " 0.26040359 0.68729315 0.85132238 0.9170162 0.94790417 0.96449723\n", + " 0.6403374 0.94621821 0.98069844 0.99024463 0.99414155 0.99609937]\n", + "DEBUG:[-32.27465685 -29.80416795]\n", + " [-32.27237127 -24.42816844]\n", + " [-32.2700857 -19.05216893]\n", + " [-32.26780012 -13.67616941]\n", + " [-32.26551454 -8.3001699 ]\n", + " [-32.26322896 -2.92417038]\n", + " [-30.37796373 -31.70247449]\n", + " [-25.00196422 -31.70476008]\n", + " [-19.62596471 -31.70704565]\n", + " [-14.24996519 -31.70933123]\n", + " [ -8.87396568 -31.71161681]\n", + " [ -3.49796617 -31.71390239]\n", + " [-30.36492242 -1.02747727]\n", + " [-24.98892291 -1.02976285]\n", + " [-19.61292339 -1.03204842]\n", + " [-14.23692388 -1.034334 ]\n", + " [ -8.86092437 -1.03661958]\n", + " [ -3.48492485 -1.03890516]\n", + " [ -1.59965962 -29.81720927]\n", + " [ -1.59737405 -24.44120975]\n", + " [ -1.59508847 -19.06521024]\n", + " [ -1.59280289 -13.68921073]\n", + " [ -1.59051731 -8.31321121]\n", + " [ -1.58823174 -2.9372117 ]\n", + " [-32.27546357 -31.70166778]\n", + " [-32.27546357 -31.70166778]\n", + " [ -1.58742502 -1.03971187]\n", + " [ -1.58742502 -1.03971187]\n", + " [-30.37715702 -29.80497466]\n", + " [-25.00115751 -29.80726024]\n", + " [-19.625158 -29.80954582]\n", + " [-14.24915848 -29.8118314 ]\n", + " [ -8.87315897 -29.81411698]\n", + " [ -3.49715945 -29.81640256]\n", + " [-30.37487145 00000e+02]\n", + " [ 7.99800000e+02 1.27000000e+02]\n", + " [ 1.15820000e+03 1.27000000e+02]\n", + " [ 1.51660000e+03 1.27000000e+02]\n", + " [ 1.87500000e+03 1.27000000e+02]\n", + " [ 8.29999999e+01 4.85400000e+02]\n", + " [ 4.41400000e+02 4.85400000e+02]\n", + " [ 7.99800000e+02 4.85400000e+02]\n", + " [ 1.15820000e+03 4.85400000e+02]\n", + " [ 1.51660000e+03 4.85400000e+02]\n", + " [ 1.87500000e+03 4.85400000e+02]\n", + " [ 8.29999999e+01 8.43800000e+02]\n", + " [ 4.41400000e+02 8.43800000e+02]\n", + " [ 7.99800000e+02 8.43800000e+02]\n", + " [ 1.15820000e+03 8.43800000e+02]\n", + " [ 1.51660000e+03 8.43800000e+02]\n", + " [ 1.87500000e+03 8.43800000e+02]\n", + " [ 8.30000001e+01 1.20220000e+03]\n", + " [ 4.41400000e+02 1.20220000e+03]\n", + " [ 7.99800000e+02 1.20220000e+03]\n", + " [ 1.15820000e+03 1.20220000e+03]\n", + " [ 1.51660000e+03 1.20220000e+03]\n", + " [ 1.87500000e+03 1.20220000e+03]\n", + " [ 8.29999998e+01 1.56060000e+03]\n", + " [ 4.41400000e+02 1.56060000e+03]\n", + " [ 7.99800000e+02 1.56060000e+03]\n", + " [ 1.15820000e+03 1.56060000e+03]\n", + " [ 1.51660000e+03 1.56060000e+03]\n", + " [ 1.87500000e+03 1.56060000e+03]\n", + " [ 8.30000002e+01 1.91900000e+03]\n", + " [ 4.41400000e+02 1.91900000e+03]\n", + " [ 7.99800000e+02 1.91900000e+03]\n", + " [ 1.15820000e+03 1.91900000e+03]\n", + " [ 1.51660000e+03 1.91900000e+03]\n", + " [ 1.87500000e+03 1.91900000e+03]]\n", + "DEBUG:root:radec2pix: curVec Shape: (96, 3)\n", + "DEBUG:root:radec2pix: fitpx: [[ 2.13550000e+03 -4.99999783e-01]\n", + " [ 2.13550000e+03 2.91928571e+02]\n", + " [ 2.13550000e+03 5.84357143e+02]\n", + " [ 2.13550000e+03 8.76785714e+02]\n", + " [ 2.13550000e+03 1.16921429e+03]\n", + " [ 2.13550000e+03 1.46164286e+03]\n", + " [ 2.13550000e+03 1.75407143e+03]\n", + " [ 2.13550000e+03 2.04650000e+03]\n", + " [ 2.13550000e+03 -4.99999783e-01]\n", + " [ 2.42792857e+03 -5.00000080e-01]\n", + " [ 2.72035714e+03 -5.00000178e-01]\n", + " [ 3.01278571e+03 -4.99999867e-01]\n", + " [ 3.30521429e+03 -5.00000095e-01]\n", + " [ 3.59764286e+03 -5.00000221e-01]\n", + " [ 3.89007143e+03 -5.00000185e-01]\n", + " [ 4.18250000e+03 -5.00000018e-01]\n", + " [ 2.13550000e+03 2.04650000e+03]\n", + " [ 2.42792857e+03 2.04650000e+03]\n", + " [ 2.72035714e+03 2.04650000e+03]\n", + " [ 3.01278571e+03 2.04650000e+03]\n", + " [ 3.30521429e+03 2.0465root:optics_fp: cphi: [0.71431368 0.76437722 0.81641337 0.86835883 0.91702693 0.95816873\n", + " 0.9870555 0.99965535 0.71431368 0.66132929 0.5962023 0.51675291\n", + " 0.42131547 0.30954599 0.18335276 0.04744559 0.99965535 0.9995376\n", + " 0.99934763 0.99901176 0.99833132 0.99660587 0.98975 0.86955594\n", + " 0.04744559 0.05506581 0.06560435 0.08112784 0.10624255 0.15365671\n", + " 0.27469828 0.86955594 0.73565039 0.79855486 0.86249109 0.9220669\n", + " 0.96951843 0.99634831 0.69273272 0.61992142 0.52667287 0.40967477\n", + " 0.26839934 0.10753407 0.99959633 0.99940262 0.99902775 0.99814911\n", + " 0.99520453 0.969333 0.0509959 0.06222863 0.07980586 0.1111717\n", + " 0.18256945 0.47985554 0.71431702 0.71431702 0.86795254 0.86795254\n", + " 0.71476593 0.64346978 0.55038977 0.43114136 0.28422526 0.11432331\n", + " 0.78049181 0.71641143 0.62718906 0.50409223 0.34047225 0.13917969\n", + " 0.84856189 0.79689424 0.71896966 0.59988271 0.42174368 0.17764392\n", + " 0.9132683 0.87905083 0.82247132 0.72349099 0.54506987 0.24461812\n", + " 0.96577787 0.95060272 0.92315504 0.8670684-24.42897515]\n", + " [-24.99887193 -24.43126073]\n", + " [-19.62287241 -24.43354631]\n", + " [-14.2468729 -24.43583188]\n", + " [ -8.87087339 -24.43811746]\n", + " [ -3.49487388 -24.44040305]\n", + " [-30.37258587 -19.05297564]\n", + " [-24.99658635 -19.05526122]\n", + " [-19.62058684 -19.05754679]\n", + " [-14.24458732 -19.05983237]\n", + " [ -8.86858781 -19.06211795]\n", + " [ -3.4925883 -19.06440353]\n", + " [-30.37030029 -13.67697612]\n", + " [-24.99430077 -13.6792617 ]\n", + " [-19.61830126 -13.68154728]\n", + " [-14.24230175 -13.68383286]\n", + " [ -8.86630223 -13.68611844]\n", + " [ -3.49030272 -13.68840401]\n", + " [-30.36801471 -8.30097661]\n", + " [-24.9920152 -8.30326219]\n", + " [-19.61601568 -8.30554776]\n", + " [-14.24001617 -8.30783335]\n", + " [ -8.86401666 -8.31011893]\n", + " [ -3.48801714 -8.3124045 ]\n", + " [-30.36572914 -2.9249771 ]\n", + " [-24.98972962 -2.92726267]\n", + " [-19.6137301 -2.92954825]\n", + " [-14.23773059 -2.93183383]\n", + " [ -8.86173108 -2.93411941]\n", + " [ -3.48573156 -2.93640499]]\n", + "3 0.73363771 0.38635141\n", + " 0.99587869 0.99392322 0.99017013 0.9815259 0.95398889 0.77695241]\n", + "DEBUG:root:radec2pix: xyfp Shape: (96, 2)\n", + "DEBUG:root0000e+03]\n", + " [ 3.59764286e+03 2.04650000e+03]\n", + " [ 3.89007143e+03 2.04650000e+03]\n", + " [ 4.18250000e+03 2.04650000e+03]\n", + " [ 4.18250000e+03 -5.00000018e-01]\n", + " [ 4.18250000e+03 2.91928571e+02]\n", + " [ 4.18250000e+03 5.84357143e+02]\n", + " [ 4.18250000e+03 8.76785714e+02]\n", + " [ 4.18250000e+03 1.16921429e+03]\n", + " [ 4.18250000e+03 1.46164286e+03]\n", + " [ 4.18250000e+03 1.75407143e+03]\n", + " [ 4.18250000e+03 2.04650000e+03]\n", + " [ 2.13650000e+03 1.27000000e+02]\n", + " [ 2.13650000e+03 4.85400000e+02]\n", + " [ 2.13650000e+03 8.43800000e+02]\n", + " [ 2.13650000e+03 1.20220000e+03]\n", + " [ 2.13650000e+03 1.56060000e+03]\n", + " [ 2.13650000e+03 1.91900000e+03]\n", + " [ 2.26300000e+03 4.99999873e-01]\n", + " [ 2.62140000e+03 5.00000123e-01]\n", + " [ 2.97980000e+03 5.00000108e-01]\n", + " [ 3.33820000e+03 4.99999719e-01]\n", + " [ 3.69660000e+03 4.99999964e-01]\n", + " [ 4.05500000e+03 5.00000185e-01]\n", + " [ 2.26300000e+03 2.04550000e+03]\n", + " [ 2.62140000e+03 2.04550000e+03]\n", + " [ 2.97980000e+03 2.04550000e+03]\n", + " [ 3.33820000e+03 2.04550000e+03]\n", + " [ 3.69660000e+03 2.04550000e+03]\n", + " [ 4.05500:optics_fp: sphi: [-0.99997291 -0.99996338 -0.99994778 -0.99991959 -0.99986044 -0.99970051\n", + " -0.99895447 -0.94368031 -0.99997291 -0.98933631 -0.96117727 -0.91968926\n", + " -0.86997536 -0.81667246 -0.76325315 -0.71194371 -0.94368031 -0.14118936\n", + " -0.07294272 -0.04911935 -0.03701833 -0.02969904 -0.02479556 -0.0212815\n", + " -0.71194371 -0.65723685 -0.5897386 -0.50715777 -0.40782648 -0.29161723\n", + " -0.16095117 -0.0212815 -0.99996515 -0.99994785 -0.99991356 -0.99982975\n", + " -0.99952172 -0.99545817 -0.99767076 -0.97241732 -0.92481134 -0.86396182\n", + " -0.79833456 -0.73379594 -0.29977727 -0.0892129 -0.05215778 -0.03683652\n", + " -0.02846988 -0.02319957 -0.68968657 -0.61434502 -0.51747338 -0.39570528\n", + " -0.24892141 -0.08286212 -0.99996924 -0.99996924 -0.02177659 -0.02177659\n", + " -0.99736218 -0.96891795 -0.91603668 -0.84975082 -0.77974951 -0.71225894\n", + " -0.99606031 -0.95452584 -0.88150969 -0.79657056 -0.71341443 -0.63844342\n", + " -0.99349457 -0.92779465 -0.82322292 -0.71523799 -0.62025773 -0.54160017\n", + " -0.98730506 -0.87087125 -0.718544000e+03 2.04550000e+03]\n", + " [ 4.18150000e+03 1.27000000e+02]\n", + " [ 4.18150000e+03 4.85400000e+02]\n", + " [ 4.18150000e+03 8.43800000e+02]\n", + " [ 4.18150000e+03 1.20220000e+03]\n", + " [ 4.18150000e+03 1.56060000e+03]\n", + " [ 4.18150000e+03 1.91900000e+03]\n", + " [ 2.13650000e+03 4.99999853e-01]\n", + " [ 2.13650000e+03 4.99999853e-01]\n", + " [ 4.18150000e+03 2.04550000e+03]\n", + " [ 4.18150000e+03 2.04550000e+03]\n", + " [ 2.26300000e+03 1.27000000e+02]\n", + " [ 2.62140000e+03 1.27000000e+02]\n", + " [ 2.97980000e+03 1.27000000e+02]\n", + " [ 3.33820000e+03 1.27000000e+02]\n", + " [ 3.69660000e+03 1.27000000e+02]\n", + " [ 4.05500000e+03 1.27000000e+02]\n", + " [ 2.26300000e+03 4.85400000e+02]\n", + " [ 2.62140000e+03 4.85400000e+02]\n", + " [ 2.97980000e+03 4.85400000e+02]\n", + " [ 3.33820000e+03 4.85400000e+02]\n", + " [ 3.69660000e+03 4.85400000e+02]\n", + " [ 4.05500000e+03 4.85400000e+02]\n", + " [ 2.26300000e+03 8.43800000e+02]\n", + " [ 2.62140000e+03 8.43800000e+02]\n", + " [ 2.97980000e+03 8.43800000e+02]\n", + " [ 3.33820000e+03 8.43800000e+02]\n", + " [ 3.69660000e+03 8.43800000e+02]\n", + " [ 4.05500000e+03 8.43800000e45 -0.58917597 -0.49085898 -0.41718848\n", + " -0.96549986 -0.72638015 -0.52464293 -0.39884995 -0.31855562 -0.26409298\n", + " -0.76809376 -0.32352912 -0.19552639 -0.13933979 -0.10808594 -0.08823861]\n", + "DEBUG:root:radec2pix: curVec: [[-0.36480498 0.76659065 -0.52844688]\n", + " [-0.38149519 0.77226117 -0.50800996]\n", + " [-0.39835682 0.77737435 -0.48682745]\n", + " [-0.41528887 0.78188505 -0.46496337]\n", + " [-0.43219827 0.78575462 -0.44248654]\n", + " [-0.44899917 0.78895102 -0.41947114]\n", + " [-0.46561229 0.79144905 -0.39599696]\n", + " [-0.48196447 0.79323081 -0.37214934]\n", + " [-0.36480498 0.76659065 -0.52844688]\n", + " [-0.38149443 0.74956035 -0.54094481]\n", + " [-0.3983678 0.73162529 -0.55319755]\n", + " [-0.41532283 0.71282843 -0.56513943]\n", + " [-0.43226529 0.69321942 -0.57670924]\n", + " [-0.4491083 0.67285518 -0.58785002]\n", + " [-0.46577157 0.65180025 -0.59850922]\n", + " [-0.48218087 0.63012702 -0.60863909]\n", + " [-0.48196447 0.79323081 -0.37214934]\n", + " [-0.5005709 0.77598647 -0.38376265]\n", + " [-0.51915971 0.75776502 -0.39530416]\n", + " [-0.5376336 0.73860454 -0.40671052]\n", + " [-0.55590088 0.71855065 -0.41792245]\n", + " [-0.57387434 0.69765796 -0.42888415]\n", + " [-0.59147092 0.6759911 -0.43954315]\n", + " [-0.60861222 0.65362488 -0.44985072]\n", + " [-0.48218087 0.63012702 -0.60863909]\n", + " [-0.50079558 0.63494353 -0.58826057]\n", + " [-0.51937796 0.63933748 -0.56700452]\n", + " [-0.53783186 0.64326402 -0.54492962]\n", + " [-0.55606651 0.6466847 -0.52210051]\n", + " [-0.57399547 0.64956744 -0.49858934]\n", + " [-0.59153653 0.65188691 -0.47447655]\n", + " [-0.60861222 0.65362488 -0.44985072]\n", + " [-0.37211133 0.76907163 -0.51967488]\n", + " [-0.39269697 0.77565242 -0.49411782]\n", + " [-0.41343866 0.78135053 -0.46750382]\n", + " [-0.43416179 0.78609215 -0.43995758]\n", + " [-0.45470827 0.78981829 -0.41161567]\n", + " [-0.47493467 0.79248558 -0.38262731]\n", + " [-0.37210941 0.75929928 -0.53385315]\n", + " [-0.39270269 0.73781305 -0.54901412]\n", + " [-0.41346953 0.7150097 -0.56374115]\n", + " [-0.43423316 0.69097784 -0.5779197 ]\n", + " [-0.45483356 0.66582228 -0.59144494]\n", + " [-0.47512543 0.63966512 -0.60422211]\n", + " [-0.49001697 0.78582966 -0.37729977]\n", + " [-0.51282122 0.76403336 -0.39149383]\n", + " [-0.53550173 0.74080652 -0.40551645]\n", + " [-0.55788748 0.71622988 -0.41925686]\n", + " [-0.57981785 0.69040413 -0.4326123 ]\n", + " [-0.60114184 0.66345248 -0.4454877 ]\n", + " [-0.49023867 0.63235122 -0.59983163]\n", + " [-0.51304299 0.63797689 -0.57425811]\n", + " [-0.53570268 0.64292244 -0.54742432]\n", + " [-0.55804843 0.64711443 -0.51944668]\n", + " [-0.57992115 0.65049388 -0.49045813]\n", + " [-0.60117138 0.65301704 -0.46061016]\n", + " [-0.36491828 0.76655428 -0.52842141]\n", + " [-0.36491828 0.76655428 -0.52842141]\n", + " [-0.60849695 0.65369753 -0.4499011 ]\n", + " [-0.60849695 0.65369753 -0.4499011 ]\n", + " [-0.37937805 0.76180416 -0.52509686]\n", + " [-0.40016854 0.74027488 -0.54023906]\n", + " [-0.42110821 0.71741667 -0.55496054]\n", + " [-0.4420212 0.69331763 -0.56914667]\n", + " [-0.46274816 0.66808223 -0.58269227]\n", + " [-0.48314397 0.64183266 -0.59550209]\n", + " [-0.40016076 0.76835508 -0.49950159]\n", + " [-0.42146453 0.74672166 -0.51456234]\n", + " [-0.44285309 0.72372908 -0.52924226]\n", + " [-0.46415317 0.69946371 -0.54342649]\n", + " [-0.48520682 0.67402911 -0.55700906]\n", + " [-0.50586892 0.64754771 -0.5698935 ]\n", + " [-0.42107493 0.77403131 -0.47283341]\n", + " [-0.44282702 0.75231978 -0.4877696 ]\n", + " [-0.46460645 0.72922365 -0.50236811]\n", + " [-0.48624197 0.70482747 -0.51651426]\n", + " [-0.50757609 0.6792339 -0.53010172]\n", + " [-0.52846289 0.65256563 -0.54303322]\n", + " [-0.44194685 0.77875872 -0.44521662]\n", + " [-0.46408479 0.75699422 -0.45998375]\n", + " [-0.486199 0.73382478 -0.47445941]\n", + " [-0.50811924 0.70933327 -0.48852958]\n", + " [-0.52968767 0.6836215 -0.50208826]\n", + " [-0.55075695 0.65681247 -0.51503801]\n", + " [-0.46261904 0.78247789 -0.41678769]\n", + " [-0.48508167 0.76068443 -0.43134091]\n", + " [-0.50747495 0.73747115 -0.44565174]\n", + " [-0.52962876 0.71291967 -0.45960736]\n", + " [-0.55138426 0.68713112 -0.47310276]\n", + " [-0.57259247 0.66022869 -0.4860411 ]\n", + " [-0.48294825 0.78514504 -0.38769609]\n", + " [-0.50567432 0.76334554 -0.40199138]\n", + " [-0.5282901 0.74011723 -0.41609621]\n", + " [-0.55062488 0.71554096 -0.42989926]\n", + " [-0.57251851 0.68971749 -0.44329712]\n", + " [-0.59382047 0.66277006 -0.45619415]]\n", + "+02]\n", + " [ 2.26300000e+03 1.20220000e+03]\n", + " [ 2.62140000e+03 1.20220000e+03]\n", + " [ 2.97980000e+03 1.20220000e+03]\n", + " [ 3.33820000e+03 1.20220000e+03]\n", + " [ 3.69660000e+03 1.20220000e+03]\n", + " [ 4.05500000e+03 1.20220000e+03]\n", + " [ 2.26300000e+03 1.56060000e+03]\n", + " [ 2.62140000e+03 1.56060000e+03]\n", + " [ 2.97980000e+03 1.56060000e+03]\n", + " [ 3.33820000e+03 1.56060000e+03]\n", + " [ 3.69660000e+03 1.56060000e+03]\n", + " [ 4.05500000e+03 1.56060000e+03]\n", + " [ 2.26300000e+03 1.91900000e+03]\n", + " [ 2.62140000e+03 1.91900000e+03]\n", + " [ 2.97980000e+03 1.91900000e+03]\n", + " [ 3.33820000e+03 1.91900000e+03]\n", + " [ 3.69660000e+03 1.91900000e+03]\n", + " [ 4.05500000e+03 1.91900000e+03]]\n", + "DEBUG:root:radec2pix: xyfp: [[ -0.24606 31.536148 ]\n", + " [ -0.24606 27.14971943]\n", + " [ -0.24606 22.76329086]\n", + " [ -0.24606 18.37686229]\n", + " [ -0.24606 13.99043371]\n", + " [ -0.24606 9.60400514]\n", + " [ -0.24606 5.21757658]\n", + " [ -0.24606 0.831148 ]\n", + " [ -0.24606 31.536148 ]\n", + " [ -4.63248857 31.536148 ]\n", + " [ -9.01891714 31.536148 ]\n", + " [-13.40534571 31.536148 ]\n", + " [-17.79177429 31.536148 DEBUG:root:optics_fp: sphi: [0.69982566 0.64476931 0.57746793 0.49593643 0.39882528 0.28620393\n", + " 0.16037903 0.02625233 0.69982566 0.75009571 0.80283424 0.85613459\n", + " 0.90691415 0.95088447 0.98304718 0.99887382 0.02625233 0.03040715\n", + " 0.0361152 0.04444666 0.05774576 0.08232094 0.14281086 0.49383445\n", + " 0.99887382 0.99848273 0.99784571 0.9967037 0.99434024 0.98812429\n", + " 0.96153048 0.49383445 0.67736143 0.60192204 0.50607224 0.38703053\n", + " 0.24501841 0.0853818 0.72119441 0.7846639 0.85006805 0.91223165\n", + " 0.96330774 0.9942014 0.02841071 0.03456004 0.04408579 0.06081407\n", + " 0.0978159 0.24575094 0.99869886 0.99806192 0.99681043 0.99380121\n", + " 0.98319296 0.87734751 0.69982226 0.69982226 0.49664714 0.49664714\n", + " 0.69936375 0.76547151 0.83490784 0.90228439 0.95875753 0.9934436\n", + " 0.62516601 0.69767805 0.77886705 0.86364983 0.94025457 0.99026714\n", + " 0.52909613 0.60411884 0.69504146 0.80008796 0.9067151 0.98409483\n", + " 0.40735858 0.47672806 0.56880658 0.69033382 0.83839063 0.9696195\n", + " 0.25937061 0.31041017 0.38442785 0.DEBUG:root:fitpix2pix: ccdpx: shape: (96, 2)\n", + "DEBUG:root:optics_fp: rtanth: [44.94272969 42.00239064 39.33235561 36.99120283 35.04490673 33.56223174\n", + " 32.60648436 32.22458311 44.94272969 41.90992612 39.13459306 36.67522804\n", + " 34.59927513 32.97921831 31.88462562 31.37054947 32.22458311 27.83912196\n", + " 23.45402264 19.06953475 14.68620592 10.30551524 5.93330899 1.63895634\n", + " 31.37054947 26.99005818 22.61186898 18.23763988 13.87111779 9.5229103\n", + " 5.23882082 1.63895634 43.61980801 40.19015843 37.22381993 34.83933779\n", + " 33.16246218 32.30357703 43.58131788 40.02977818 36.92204987 34.37870189\n", + " 32.5323727 31.50584319 30.31278547 24.93826049 19.56454604 14.19256282\n", + " 8.82547273 3.48595044 29.4611953 24.09404931 18.73198196 13.38109994\n", + " 8.0637011 2.9657153 44.92151855 44.92151855 1.65858428 1.65858428\n", + " 42.23832489 38.56329813 35.32679703 32.65945447 30.7099348 29.62031359\n", + " 38.68639649 34.63652908 30.99264061 27.91417471 25.60588368 24.28835443\n", + " 35.59496044 31.14567519 27.03530484 23.44280455 2DEBUG:root:radec2pix: curVec: [[-0.200373 0.44527031 -0.87268838]\n", + " [-0.17408298 0.44024735 -0.88083902]\n", + " [-0.14712628 0.43476814 -0.88844275]\n", + " [-0.11960311 0.42883525 -0.8954303 ]\n", + " [-0.09161491 0.42245567 -0.9017416 ]\n", + " [-0.06326614 0.41564125 -0.9073256 ]\n", + " [-0.03466515 0.40840914 -0.9121405 ]\n", + " [-0.00592387 0.40078193 -0.91615433]\n", + " [-0.200373 0.44527031 -0.87268838]\n", + " [-0.19192147 0.47055073 -0.86124803]\n", + " [-0.18324319 0.49533946 -0.84915296]\n", + " [-0.17437155 0.51954482 -0.83646144]\n", + " [-0.16534007 0.54308039 -0.82324137]\n", + " [-0.15618196 0.56586491 -0.80957032]\n", + " [-0.14692989 0.58782182 -0.79553574]\n", + " [-0.13761598 0.60887895 -0.78123509]\n", + " [-0.00592387 0.40078193 -0.91615433]\n", + " [ 0.00268032 0.42696511 -0.90426413]\n", + " [ 0.01125735 0.45268054 -0.8916017 ]\n", + " [ 0.01977345 0.4778323 -0.8782285 ]\n", + " [ 0.0281958 0.5023321 -0.86421494]\n", + " [ 0.03649276 0.52609953 -0.84963966]\n", + " [ 0.04463368 0.54906124 -0.83458947]\n", + " [ 0.05258845 0.57114939 -0.81915983]\n", + " [-0.13761598 0.60887895 -0.78123509]\n", + " [-0.11168373 0.6053895 -0.78805476]\n", + " [-0.08516191 0.60125432 -0.79450657]\n", + " [-0.05815584 0.59647671 -0.80052073]\n", + " [-0.0307711 0.59106386 -0.80603763]\n", + " [-0.00311389 0.58502704 -0.81100781]\n", + " [ 0.02470863 0.57838199 -0.81539178]\n", + " [ 0.05258845 0.57114939 -0.81915983]\n", + " [-0.18897026 0.44322391 -0.8762664 ]\n", + " [-0.15628792 0.43676169 -0.8858969 ]\n", + " [-0.12270379 0.4296161 -0.89463612]\n", + " [-0.088404 0.42179814 -0.90236969]\n", + " [-0.05358097 0.41332967 -0.90900366]\n", + " [-0.0184357 0.40424453 -0.91446514]\n", + " [-0.19662935 0.45633099 -0.86781273]\n", + " [-0.18611429 0.4869968 -0.85334377]\n", + " [-0.17529196 0.51683237 -0.83794811]\n", + " [-0.16422403 0.54567642 -0.82174674]\n", + " [-0.15297163 0.57337928 -0.80488252]\n", + " [-0.14159464 0.59980186 -0.78752059]\n", + " [-0.00226965 0.41227568 -0.91105632]\n", + " [ 0.00826184 0.44406359 -0.89595718]\n", + " [ 0.01871907 0.47505275 -0.87975819]\n", + " [ 0.02904123 0.50507743 -0.8625853 ]\n", + " [ 0.03917002 0.53398949 -0.84458329]\n", + " [ 0.04904927 0.56165627 -0.8259155 ]\n", + " [-0.12642031 0.607DEBUG:root:radec2pix: fitpx: [[-5.00000034e-01 -5.00000033e-01]\n", + " [-5.00000269e-01 2.91928571e+02]\n", + " [-5.00000171e-01 5.84357143e+02]\n", + " [-4.99999761e-01 8.76785714e+02]\n", + " [-4.99999835e-01 1.16921429e+03]\n", + " [-5.00000099e-01 1.46164286e+03]\n", + " [-4.99999719e-01 1.75407143e+03]\n", + " [-5.00000225e-01 2.04650000e+03]\n", + " [-5.00000034e-01 -5.00000033e-01]\n", + " [ 2.91928571e+02 -4.99999990e-01]\n", + " [ 5.84357143e+02 -5.00000111e-01]\n", + " [ 8.76785714e+02 -5.00000066e-01]\n", + " [ 1.16921429e+03 -4.99999995e-01]\n", + " [ 1.46164286e+03 -5.00000140e-01]\n", + " [ 1.75407143e+03 -5.00000040e-01]\n", + " [ 2.04650000e+03 -5.00000297e-01]\n", + " [-5.00000225e-01 2.04650000e+03]\n", + " [ 2.91928572e+02 2.04650000e+03]\n", + " [ 5.84357143e+02 2.04650000e+03]\n", + " [ 8.76785714e+02 2.04650000e+03]\n", + " [ 1.16921429e+03 2.04650000e+03]\n", + " [ 1.46164286e+03 2.04650000e+03]\n", + " [ 1.75407143e+03 2.04650000e+03]\n", + " [ 2.04650000e+03 2.04650000e+03]\n", + " [ 2.04650000e+03 -5.00000297e-01]\n", + " [ 2.04650000e+03 2.91928572e+02]\n", + " [ 2.04650000e+03 5.84357143e+02]\n", + " [ 2.04650000e+03 8.76785714e+02]\n", + " [ 2.04650000e+03 1.16921429e+03]\n", + " [ 2.04650000e+03 1.46164286e+03]\n", + " [ 2.04650000e+03 1.75407143e+03]\n", + " [ 2.04650000e+03 2.04650000e+03]\n", + " [ 5.00000148e-01 1.27000000e+02]\n", + " [ 5.00000006e-01 4.85400000e+02]\n", + " [ 4.99999879e-01 8.43800000e+02]\n", + " [ 4.99999939e-01 1.20220000e+03]\n", + " [ 5.00000182e-01 1.56060000e+03]\n", + " [ 5.00000197e-01 1.91900000e+03]\n", + " [ 1.27000000e+02 4.99999893e-01]\n", + " [ 4.85400000e+02 5.00000055e-01]\n", + " [ 8.43800000e+02 4.99999998e-01]\n", + " [ 1.20220000e+03 5.00000122e-01]\n", + " [ 1.56060000e+03 4.99999912e-01]\n", + " [ 1.91900000e+03 5.00000160e-01]\n", + " [ 1.27000000e+02 2.04550000e+03]\n", + " [ 4.85400000e+02 2.04550000e+03]\n", + " [ 8.43800000e+02 2.04550000e+03]\n", + " [ 1.20220000e+03 2.04550000e+03]\n", + " [ 1.56060000e+03 2.04550000e+03]\n", + " [ 1.91900000e+03 2.04550000e+03]\n", + " [ 2.04550000e+03 1.27000000e+02]\n", + " [ 2.04550000e+03 4.85400000e+02]\n", + " [ 2.04550000e+03 8.43800000e+02]\n", + " [ 2.04550000e+03 1.20220000e+03]\n", + " [ 2.04550000e+03 1.56060000e+03]\n", + " [ 2.04550000e+03 1.91900000e+03]\n", + " [ 4.99999936625 -0.7842985 ]\n", + " [-0.09422719 0.60265424 -0.79241978]\n", + " [-0.06125308 0.59697525 -0.79991787]\n", + " [-0.02769222 0.59034095 -0.80667881]\n", + " [ 0.00625982 0.58277208 -0.81261154]\n", + " [ 0.04040542 0.57429968 -0.81764741]\n", + " [-0.20025587 0.44534109 -0.87267915]\n", + " [-0.20025587 0.44534109 -0.87267915]\n", + " [ 0.05246628 0.57110113 -0.81920131]\n", + " [ 0.05246628 0.57110113 -0.81920131]\n", + " [-0.18533119 0.45425733 -0.87137973]\n", + " [-0.17479563 0.48504578 -0.85684134]\n", + " [-0.16397536 0.51500265 -0.84135863]\n", + " [-0.15293251 0.54396657 -0.82505273]\n", + " [-0.14172856 0.57178817 -0.8080664 ]\n", + " [-0.13042359 0.59832882 -0.79056455]\n", + " [-0.15261779 0.44790486 -0.88095916]\n", + " [-0.14203718 0.47900369 -0.86624529]\n", + " [-0.13123618 0.5092689 -0.85054233]\n", + " [-0.12027799 0.53853863 -0.83397203]\n", + " [-0.10922501 0.56666436 -0.81667705]\n", + " [-0.09813772 0.59350916 -0.79882155]\n", + " [-0.1190094 0.44084872 -0.88965677]\n", + " [-0.1084039 0.47220265 -0.87479898]\n", + " [-0.09764341 0.50272394 -0.85891467]\n", + " [-0.08679172 0.53224997 -0.84212658]\n", + " [-0.07591154 0.56063285 -0.82457762]\n", + " [-0.06506339 0.58773745 -0.8064313 ]\n", + " [-0.0846924 0.43309938 -0.89735842]\n", + " [-0.07408322 0.46465192 -0.88238896]\n", + " [-0.06338596 0.49537656 -0.86636267]\n", + " [-0.05266433 0.52510967 -0.8494035 ]\n", + " [-0.04198053 0.5537037 -0.83165488]\n", + " [-0.03139446 0.58102498 -0.81328 ]\n", + " [-0.04985942 0.42467802 -0.90397047]\n", + " [-0.03926844 0.45637108 -0.88892262]\n", + " [-0.02865778 0.48724536 -0.87279476]\n", + " [-0.01809033 0.51713621 -0.85571192]\n", + " [-0.00762699 0.54589602 -0.83781821]\n", + " [ 0.00267366 0.57339203 -0.81927677]\n", + " [-0.01471163 0.41561787 -0.90942034]\n", + " [-0.0041608 0.44739175 -0.89432841]\n", + " [ 0.00634032 0.47836077 -0.87814052]\n", + " [ 0.01673032 0.50835945 -0.86098244]\n", + " [ 0.02695016 0.53723982 -0.84299885]\n", + " [ 0.03694301 0.56486931 -0.824353 ]]\n", + "30e-01 4.99999931e-01]\n", + " [ 4.99999930e-01 4.99999931e-01]\n", + " [ 2.04550000e+03 2.04550000e+03]\n", + " [ 2.04550000e+03 2.04550000e+03]\n", + " [ 1.27000000e+02 1.27000000e+02]\n", + " [ 4.85400000e+02 1.27000000e+02]\n", + " [ 8.43800000e+02 1.2700049818906 0.67954081 0.92235166\n", + " 0.0906953 0.11007561 0.13986822 0.1913293 0.29984194 0.62955934]\n", + "DEBUG:root:radec2pix: camVec: [[0.20658103 0.20838989 0.20993522 0.21121099 0.21221385 0.21294172\n", + " 0.21339307 0.21356684 0.20658103 0.18015754 0.1530338 0.12531307\n", + " 0.09710338 0.06851504 0.03965966 0.01064976 0.21356684 0.18621882\n", + " 0.15815829 0.12949192 0.10032565 0.07076705 0.04092766 0.01092393\n", + " 0.01064976 0.01072986 0.01079662 0.01085001 0.01088978 0.0109156\n", + " 0.01092708 0.01092393 0.20731213 0.20935192 0.21098964 0.21221814\n", + " 0.21303349 0.21343308 0.19515895 0.16228971 0.12847052 0.09389848\n", + " 0.05877657 0.02331064 0.20173739 0.16772694 0.13275239 0.09700904\n", + " 0.06069518 0.02401827 0.01078606 0.01087623 0.01094616 0.01099551\n", + " 0.01102363 0.01102984 0.2064986 0.2064986 0.01102671 0.01102671\n", + " 0.19592714 0.16292559 0.1289709 0.09426176 0.0590016 0.02339654\n", + " 0.19785166 0.16451646 0.13022261 0.09517088 0.05956467 0.02361044\n", + " 0.19939573 0.16579218 0.13122742 0.09590173 0.06001727]\n", + " [-22.17820286 31.536148 ]\n", + " [-26.56463143 31.536148 ]\n", + " [-30.95106 31.536148 ]\n", + " [ -0.24606 0.831148 ]\n", + " [ -4.63248857 0.831148 ]\n", + " [ -9.01891714 0.831148 ]\n", + " [-13.40534571 0.831148 ]\n", + " [-17.79177429 0.831148 ]\n", + " [-22.17820285 0.831148 ]\n", + " [-26.56463143 0.831148 ]\n", + " [-30.95106 0.831148 ]\n", + " [-30.95106 31.536148 ]\n", + " [-30.95106 27.14971943]\n", + " [-30.95106 22.76329086]\n", + " [-30.95106 18.37686228]\n", + " [-30.95106 13.99043371]\n", + " [-30.95106 9.60400514]\n", + " [-30.95106 5.21757657]\n", + " [-30.95106 0.831148 ]\n", + " [ -0.26106 29.623648 ]\n", + " [ -0.26106 24.247648 ]\n", + " [ -0.26106 18.87164801]\n", + " [ -0.26106 13.495648 ]\n", + " [ -0.26106 8.119648 ]\n", + " [ -0.26106 2.743648 ]\n", + " [ -2.15856 31.521148 ]\n", + " [ -7.53456 31.521148 ]\n", + " [-12.91056 31.521148 ]\n", + " [-18.28656 31.521148 ]\n", + " [-23.66256 31.521148 ]\n", + " [-29.03856 31.521148 ]\n", + " [ -2.15856 0.846148 ]\n", + " [ -7.53456 0.846148 ]\n", + " [-12.91056 0.846148 ]\n", + " [-18.286559DEBUG:root:radec2pix: curVec Shape: (96, 3)\n", + "99 0.846148 ]\n", + " [-23.66256 0.846148 ]\n", + " [-29.03856 0.846148 ]\n", + " [-30.93606 29.623648 ]\n", + " [-30.93606 24.247648 ]\n", + " [-30.93606 18.871648 ]\n", + " [-30.93606 13.495648 ]\n", + " [-30.93606 8.119648 ]\n", + " [-30.93606 2.743648 ]\n", + " [ -0.26106 31.521148 ]\n", + " [ -0.26106 31.521148 ]\n", + " [-30.93606 0.846148 ]\n", + " [-30.93606 0.846148 ]\n", + " [ -2.15856 29.623648 ]\n", + " [ -7.53456 29.623648 ]\n", + " [-12.91056 29.623648 ]\n", + " [-18.28656 29.623648 ]\n", + " [-23.66256 29.623648 ]\n", + " [-29.03856 29.623648 ]\n", + " [ -2.15856 24.247648 ]\n", + " [ -7.53456 24.247648 ]\n", + " [-12.91056 24.247648 ]\n", + " [-18.28656 24.247648 ]\n", + " [-23.66256 24.247648 ]\n", + " [-29.03856 24.247648 ]\n", + " [ -2.15856 18.871648 ]\n", + " [ -7.53456 18.871648 ]\n", + " [-12.91056 18.871648 ]\n", + " [-18.28656 18.871648 ]\n", + " [-23.66256 18.871648 ]\n", + " [-29.03856 18.871648 ]\n", + " [ -2.15856 13.495648 ]\n", + " [ -7.53456 13.495648 ]\n", + " [-12.91056 0.02378066\n", + " 0.20055377 0.16674959 0.13198281 0.09645193 0.06035751 0.0239064\n", + " 0.20132229 0.16738526 0.13248471 0.09681723 0.06058199 0.02398618\n", + " 0.20169858 0.16769559 0.13272857 0.09699294 0.06068709 0.02401844]\n", + " [0.20098859 0.17447006 0.14727238 0.11949936 0.09125926 0.06266255\n", + " 0.03382097 0.00484709 0.20098859 0.20282418 0.20440426 0.20572264\n", + " 0.20677589 0.2075618 0.2080787 0.20832528 0.00484709 0.00490326\n", + " 0.00495363 0.00499813 0.0050366 0.00506881 0.00509451 0.00511348\n", + " 0.20832528 0.18083307 0.15264908 0.12387974 0.09463112 0.06501141\n", + " 0.0351331 0.00511348 0.18952259 0.15655094 0.12266162 0.08805229\n", + " 0.05292621 0.01748945 0.20172997 0.20380791 0.20549566 0.20678588\n", + " 0.20767444 0.20815839 0.00497187 0.00503783 0.00509482 0.00514259\n", + " 0.00518073 0.00520877 0.19643015 0.16225698 0.1271506 0.09130636\n", + " 0.0549237 0.01821176 0.20090587 0.20090587 0.00521618 0.00521618\n", + " 0.19029998 0.19225876 0.19384904 0.19506507 0.19590316 0.19636024\n", + " 0.15719218 0.15880644 0.16011755 0.16112232 0.16181718 0.1621981\n", + " 0.12316354 0.12442767 0.12545686 0.12624866 0.12679897 0.1271029\n", + " 0.08841323 0.08932369 0.09006766 0.09064294 0.0910454 0.09127018\n", + " 0.05314506 0.05369842 0.05415286 0.05450669 0.05475678 0.05489951\n", + " 0.0175654 0.01775879 0.01791986 0.01804791 0.01814173 0.01819993]\n", + " [0.9575635 0.96235848 0.9665599 0.97010815 0.97295274 0.97505345\n", + " 0.97638084 0.97691643 0.9575635 0.96249967 0.96685033 0.97055388\n", + " 0.97355774 0.97581955 0.97730771 0.97800162 0.97691643 0.98249606\n", + " 0.98740135 0.99156788 0.99494191 0.99747999 0.99914912 0.99992726\n", + " 0.97800162 0.98345527 0.98822148 0.99223792 0.99545284 0.99782482\n", + " 0.9993229 0.99992726 0.95974104 0.96522722 0.96976157 0.97324727\n", + " 0.97561035 0.97680113 0.95980102 0.96546589 0.97018908 0.97386995\n", + " 0.97643056 0.97781731 0.97942703 0.98582062 0.99113614 0.99527021\n", + " 0.9981429 0.99969795 0.98045849 0.98668859 0.99182302 0.99576214\n", + " 0.9984297 0.99977331 0.95759864 0.95759864 0.9999256 0.9999256\n", + " 0.96197634 0.967 13.495648 ]\n", + " [-18.28656 13.495648 ]\n", + " [-23.66256 13.495648 ]\n", + " [-29.03856 13.495648 ]\n", + " [ -2.15856 8.119648 ]\n", + " [ -7.53456 8.119648 ]\n", + " [-12.91056 8.119648 ]\n", + " [-18.28656 8.119648 ]\n", + " [-23.66256 8.119648 ]\n", + " [-29.03856 8.119648 ]\n", + " [ -2.15856 2.743648 ]\n", + " [ -7.53456 2.743648 ]\n", + " [-12.91056 2.743648 ]\n", + " [-18.28656 2.743648 ]\n", + " [-23.66256 2.743648 ]\n", + " [-29.03856 2.743648 ]]\n", + "72508 0.97251687 0.97625014 0.97884665 0.98025265\n", + " 0.96754604 0.97350647 0.97847046 0.98233503 0.98502145 0.98647571\n", + " 0.97214818 0.97827946 0.98338189 0.98735208 0.99011108 0.99160442\n", + " 0.97568503 0.98194493 0.98715164 0.99120174 0.99401595 0.99553917\n", + " 0.97808228 0.98442808 0.98970464 0.99380856 0.99666018 0.99820374\n", + " 0.97929012 0.98567886 0.99099042 0.99512142 0.99799196 0.99954584]]\n", + "DEBUG:root:mm_to_pix: fitpx: [[0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]]\n", + "DEBUG:root:radec2pix: curVec Shape: (96, 3)\n", + "DEBUG:root:fitpix2pix: visCut: True\n", + "0.64037826 18.98125646\n", + " 33.09332103 28.25278341 23.64475409 19.43532283 15.94339684 13.72788346\n", + " 31.32311186 26.15701072 21.09606209 16.23887967 11.83897557 8.62694755\n", + " 30.4123252DEBUG:root:radec2pix: camVec Shape: (3, 96)\n", + "DEBUG:root:optics_fp: xyfp: [[ -0.230877 31.363511 ]\n", + " [ -0.230877 26.97708243]\n", + " [ -0.230877 22.59065386]\n", + " [ -0.230877 18.20422528]\n", + " [ -0.230877 13.81779671]\n", + " [ -0.230877 9.43136815]\n", + " [ -0.230877 5.04493957]\n", + " [ -0.230877 0.658511 ]\n", + " [ -0.230877 31.363511 ]\n", + " [ -4.61730557 31.363511 ]\n", + " [ -9.00373414 31.363511 ]\n", + " [-13.39016272 31.363511 ]\n", + " [-17.77659129 31.363511 ]\n", + " [-22.16301986 31.363511 ]\n", + " [-26.54944843 31.363511 ]\n", + " [-30.935877 31.363511 ]\n", + " [ -0.230877 0.658511 ]\n", + " [ -4.61730558 0.658511 ]\n", + " [ -9.00373414 0.658511 ]\n", + " [-13.39016271 0.658511 ]\n", + " [-17.77659128 0.658511 ]\n", + " [-22.16301986 0.658511 ]\n", + " [-26.54944843 0.658511 ]\n", + " [-30.935877 0.658511 ]\n", + " [-30.935877 31.363511 ]\n", + " [-30.935877 26.97708243]\n", + " [-30.935877 22.59065386]\n", + " [-30.935877 18.20422528]\n", + " [-30.935877 13.81779671]\n", + " [-30.935877 9.43136814]\n", + " [-30.935877 5.04493957]\n", + " [-30.935877 0.658511 ]\n", + " [ -0.245877 29.451011 ]\n", + " [ -0.245877 24.075011 ]\n", + " [ -0.245877 18.699011 ]\n", + " [ -0.245877 13.323011 ]\n", + " [ -0.245877 7.947011 ]\n", + " [ -0.245877 2.571011 ]\n", + " [ -2.143377 31.348511 ]\n", + " [ -7.519377 31.348511 ]\n", + " [-12.895377 31.348511 ]\n", + " [-18.271377 31.348511 ]\n", + " [-23.647377 31.348511 ]\n", + " [-29.023377 31.348511 ]\n", + " [ -2.143377 0.673511 ]\n", + " [ -7.519377 0.673511 ]\n", + " [-12.895377 0.673511 ]\n", + " [-18.271377 0.673511 ]\n", + " [-23.64737701 0.673511 ]\n", + " [-29.023377 0.673511 ]\n", + " [-30.920877 29.451011 ]\n", + " [-30.920877 24.075011 ]\n", + " [-30.920877 18.699011 ]\n", + " [-30.920877 13.323011 ]\n", + " [-30.920877 7.947011 ]\n", + " [-30.920877 2.571011 ]\n", + " [ -0.245877 31.348511 ]\n", + " [ -0.245877 31.348511 ]\n", + " [-30.920877 0.673511 ]\n", + " [-30.920877 0.673511 ]\n", + " [ -2.143377 29.451011 ]\n", + " [ -7.519377 29.451011 ]\n", + " [-12.895377 29.451011 ]\n", + " [-18.271377 29.451011 ]\n", + " [-23.647377 29.451011 ]\n", + " [-29.023377 29.451011 ]\n", + " [ -2.143377 24.075011 ]\n", + " [ -7.519377 24.075011 ]\n", + " [-12.895377 24.075011 ]\n", + " [-18.271377 24.075011 ]\n", + " [-23.647377 24.075011 ]\n", + " [-29.023377 24.075011 ]\n", + " [ -2.143377 18.699011 ]\n", + " [ -7.519377 18.699011 ]\n", + " [-12.895377 18.699011 ]\n", + " [-18.271377 18.699011 ]\n", + " [-23.647377 18.699011 ]\n", + " [-29.023377 18.699011 ]\n", + " [ -2.143377 13.323011 ]\n", + " [ -7.519377 13.323011 ]\n", + " [-12.895377 13.323011 ]\n", + " [-18.271377 13.323011 ]\n", + " [-23.647377 13.323011 ]\n", + " [-29.023377 13.323011 ]\n", + " [ -2.143377 7.947011 ]\n", + " [ -7.519377 7.947011 ]\n", + " [-12.895377 7.947011 ]\n", + " [-18.271377 7.947011 ]\n", + " [-23.647377 7.947011 ]\n", + " [-29.023377 7.947011 ]\n", + " [ -2.143377 2.571011 ]\n", + " [ -7.519377 2.571011 ]\n", + " [-12.895377 2.571011 ]\n", + " [-18.271377 2.571011 ]\n", + " [-23.647377 2.571011 ]\n", + " [-29.023377 2.571011 ]]\n", + "DEBUG:root:mm_to_pix: fitpx.shape: (96, 2)\n", + "000e+02]\n", + " [ 1.20220000e+03 1.27000000e+02]\n", + " [ 1.56060000e+03 1.27000000e+02]\n", + " [ 1.91900000e+03 1.27000000e+02]\n", + " [ 1.27000000e+02 4.85400000e+02]\n", + " [ 4.85400000e+02 4.85400000e+02]\n", + " [ 8.43800000e+02 4.85400000e+02]\n", + " [ 1.20220000e+03 4.85400000e+02]\n", + " [ 1.56060000e+03 4.85400000e+02]\n", + " [ 1.91900000e+03 4.85400000e+02]\n", + " [ 1.27000000e+02 8.43800000e+02]\n", + " [ 4.85400000e+02 8.43800000e+02]\n", + " [ 8.43800000e+02 8.43800000e+02]\n", + " [ 1.20220000e+03 8.43800000e+02]\n", + " [ 1.56060000e+03 8.43800000e+02]\n", + " [ 1.91900000e+03 8.43800000e+02]\n", + " [ 1.27000000e+02 1.20220000e+03]\n", + " [ 4.85400000e+02 1.20220000e+03]\n", + " [ 8.43800000e+02 1.20220000e+03]\n", + " [ 1.20220000e+03 1.20220000e+03]\n", + " [ 1.56060000e+03 1.20220000e+03]\n", + " [ 1.91900000e+03 1.20220000e+03]\n", + " [ 1.27000000e+02 1.56060000e+03]\n", + " [ 4.85400000e+02 1.56060000e+03]\n", + " [ 8.43800000e+02 1.56060000e+03]\n", + " [ 1.20220000e+03 1.56060000e+03]\n", + " [ 1.56060000e+03 1.56060000e+03]\n", + " [ 1.91900000e+03 1.56060000e+03]\n", + " [ 1.27000000e+02 1.91900000e+03]\n", + " [ 4.85400000e+02 1.91900000e+03]\n", + " [ 8.43800000e+02 1.91900000e+03]\n", + " [ 1.20220000e+03 1.91900000e+03]\n", + " [ 1.57 25.05915804 19.71841847 14.40393713 9.16152467 4.26572571]\n", + "6060000e+03 1.91900000e+03]\n", + " [ 1.91900000e+03 1.91900000e+03]]\n", + "DEBUG:root:optics_fp: xyfp shape: (96, 2)\n", + "DEBUG:root:optics_fp: xyfp: [[-32.203794 -31.5506227 ]\n", + " [-32.20328688 -27.16419416]\n", + " [-32.20277976 -22.77776561]\n", + " [-32.20227264 -18.39133707]\n", + " [-32.20176553 -14.00490853]\n", + " [-32.20125841 -9.61847999]\n", + " [-32.20075129 -5.23205144]\n", + " [-32.20024417 -0.8456229 ]\n", + " [-32.203794 -31.5506227 ]\n", + " [-27.81736545 -31.55112981]\n", + " [-23.43093691 -31.55163693]\n", + " [-19.04450837 -31.55214405]\n", + " [-14.65807983 -31.55265117]\n", + " [-10.27165129 -31.55315829]\n", + " [ -5.88522274 -31.5536654 ]\n", + " [ -1.4987942 -31.55417252]\n", + " [-32.20024417 -0.8456229 ]\n", + " [-27.81381563 -0.84613002]\n", + " [-23.42738708 -0.84663714]\n", + " [-19.04095854 -0.84714426]\n", + " [-14.65453 -0.84765137]\n", + " [-10.26810146 -0.84815849]\n", + " [ -5.88167292 -0.84866561]\n", + " [ -1.49524438 -0.84917273]\n", + " [ -1.4987942 -31.55417252]\n", + " [ -1.49828708 -27.16774398]\n", + " [ -1.49777997 -22.78131544]\n", + " [ -1.49727285 -18.39488689]\n", + " [ -1.49676573 -14.00845835]\n", + " [ -1.49625861 -9.62202981]\n", + " [ -1.49575149 -5.23560127]\n", + " [ -1.49524438 -0.84917273]\n", + " [-32.18857289 -29.63812445]\n", + " [-32.18795136 -24.26212448]\n", + " [-32.18732984 -18.88612452]\n", + " [-32.18670832 -13.51012455]\n", + " [-32.1860868 -8.13412459]\n", + " [-32.18546528 -2.75812462]\n", + " [-30.29129227 -31.5358438 ]\n", + " [-24.91529231 -31.53646533]\n", + " [-19.53929235 -31.53708685]\n", + " [-14.16329238 -31.53770837]\n", + " [ -8.78729242 -31.53832989]\n", + " [ -3.41129245 -31.53895142]\n", + " [-30.28774592 -0.86084401]\n", + " [-24.91174595 -0.86146553]\n", + " [-19.53574599 -0.86208705]\n", + " [-14.15974603 -0.86270858]\n", + " [ -8.78374606 -0.8633301 ]\n", + " [ -3.4077461 -0.86395162]\n", + " [ -1.5135731 -29.6416708 ]\n", + " [ -1.51295157 -24.26567084]\n", + " [ -1.51233005 -18.88967087]\n", + " [ -1.51170853 -13.51367091]\n", + " [ -1.51108701 -8.13767095]\n", + " [ -1.51046548 -2.76167097]\n", + " [-32.18879227 -31.53562444]\n", + " [-32.18879227 -31.53562444]\n", + " [ -1.51024611 -0.86417099]\n", + " [ -1.51024611 -0.86417099]\n", + " [-30.29107291 -29.63834382]\n", + " [-24.91507294 -29.63896534]\n", + " [-19.53907298 -29.63958686]\n", + " [-14.16307301 -29.64020839]\n", + " [ -8.78707305 -29.64082991]\n", + " [ -3.41107308 -29.64145143]\n", + " [-30.29045138 -24.26234385]\n", + " [-24.91445142 -24.26296538]\n", + " [-19.53845145 -24.2635869 ]\n", + " [-14.16245149 -24.26420842]\n", + " [ -8.78645152 -24.26482994]\n", + " [ -3.41045156 -24.26545147]\n", + " [-30.28982986 -18.88634389]\n", + " [-24.91382989 -18.88696541]\n", + " [-19.53782993 -18.88758693]\n", + " [-14.16182997 -18.88820846]\n", + " [ -8.78583 -18.88882997]\n", + " [ -3.40983004 -18.8894515 ]\n", + " [-30.28920834 -13.51034392]\n", + " [-24.91320837 -13.51096545]\n", + " [-19.53720841 -13.51158697]\n", + " [-14.16120844 -13.51220849]\n", + " [ -8.78520848 -13.51283002]\n", + " [ -3.40920852 -13.51345154]\n", + " [-30.28858681 -8.13434396]\n", + " [-24.91258685 -8.13496548]\n", + " [-19.53658688 -8.135587 ]\n", + " [-14.16058692 -8.13620852]\n", + " [ -8.78458696 -8.13683005]\n", + " [ -3.40858699 -8.13745157]\n", + " [-30.28796529 -2.75834399]\n", + " [-24.91196532 -2.75896552]\n", + " [-19.53596536 -2.75958704]\n", + " [-14.1599654 -2.76020856]\n", + " [ -8.78396543 -2.76083009]\n", + " [ -3.40796547 -2.76145161]]\n", + "DEBUG:root:opticsDEBUG:root:fitpix2pix: ccdpx: shape: (96, 2)\n", + "DEBUG:root:optics_fp: xyfp shape: (96, 2)\n", + "_fp: cphi: [-0.7172644 -0.76741791 -0.81945139 -0.87124824 -0.91956549 -0.96011654\n", + " -0.98818444 -0.99982014 -0.7172644 -0.66450587 -0.59954537 -0.52014772\n", + " -0.4245785 -0.31242949 -0.18558325 -0.04879815 -0.99982014 -0.99975708\n", + " -0.99965502 -0.99947397 -0.99910595 -0.99816919 -0.99442317 -0.92363168\n", + " -0.04879815 -0.05662794 -0.06748483 -0.0835374 -0.10965891 -0.1594742\n", + " -0.28942109 -0.92363168 -0.73864972 -0.80160861 -0.86540808 -0.92455295\n", + " -0.97121348 -0.99694372 -0.69578694 -0.62321886 -0.53007115 -0.41291013\n", + " -0.27109351 -0.10929135 -0.99978591 -0.99968066 -0.99947617 -0.99899494\n", + " -0.99737425 -0.98288834 -0.05243384 -0.06399014 -0.08214824 -0.11477511\n", + " -0.19009076 -0.51584618 -0.71726898 -0.71726898 -0.92175016 -0.92175016\n", + " -0.71788499 -0.64689125 -0.55397779 -0.43461417 -0.2871469 -0.11621293\n", + " -0.78371934 -0.72014369 -0.63135242 -0.50838973 -0.34426777 -0.14160207\n", + " -0.85170189 -0.80076273 -0DEBUG:root:radec2pix: camVec: [[-0.00108623 -0.00110818 -0.00112898 -0.00114857 -0.00116686 -0.00118378\n", + " -0.00119922 -0.00121312 -0.00108623 -0.03008973 -0.05897582 -0.08763213\n", + " -0.11594722 -0.14381054 -0.17111212 -0.19774215 -0.00121312 -0.0312253\n", + " -0.06111305 -0.09075893 -0.12004913 -0.1488739 -0.17712688 -0.20470344\n", + " -0.19774215 -0.19951656 -0.20103291 -0.2022905 -0.20328809 -0.20402394\n", + " -0.20449622 -0.20470344 -0.00119558 -0.00122271 -0.00124786 -0.00127089\n", + " -0.00129164 -0.00130994 -0.01373956 -0.04922259 -0.08441749 -0.11911871\n", + " -0.1531227 -0.18622706 -0.01430615 -0.05102028 -0.08743049 -0.12332566\n", + " -0.15850368 -0.19276957 -0.19845732 -0.20045757 -0.20206974 -0.20329178\n", + " -0.20412054 -0.20455274 -0.00118556 -0.00118556 -0.20461015 -0.20461015\n", + " -0.01379915 -0.04942232 -0.08475642 -0.11959564 -0.15373662 -0.18697743\n", + " -0.01395111 -0.04992687 -0.08561039 -0.12079486 -0.15527748 -0.18885795\n", + " -0.0140777 -0.05033965 -0.08630574 -0.12176792 -0.15652378 -0.19037482\n", + " -0.0141.72365733 -0.60523038 -0.42694461 -0.18103644\n", + " -0.91599489 -0.8826498 -0.8273004 -0.72987289 -0.55253697 -0.25009805\n", + " -0.96766665 -0.95325615 -0.92710821 -0.87335662 -0.74384256 -0.39763019\n", + " -0.99654822 -0.99489972 -0.99173015 -0.984408 -0.96090466 -0.80346296]\n", + "DEBUG:root:fitpix2pix: visCut: True\n", + "DEBUG:root:radec2pix: camVec: [[-0.20650899 -0.20834684 -0.209912 -0.2112049 -0.21222492 -0.21297066\n", + " -0.21344048 -0.21363303 -0.20650899 -0.18010636 -0.15299311 -0.12528058\n", + " -0.09707928 -0.06849975 -0.03965325 -0.01065205 -0.21363303 -0.1862962\n", + " -0.15824793 -0.12959237 -0.10043485 -0.07088401 -0.04105265 -0.01105755\n", + " -0.01065205 -0.01075054 -0.01083605 -0.01090831 -0.01096697 -0.01101162\n", + " -0.0110419 -0.01105755 -0.20725456 -0.20932255 -0.21098167 -0.21223121\n", + " -0.21306867 -0.2134911 -0.19509826 -0.16224603 -0.12843717 -0.09387541\n", + " -0.05876435 -0.02330924 -0.20180806 -0.16781243 -0.13285166 -0.09711907\n", + " -0.06081473 -0.02414801 -0.01079628 -0.01090926 -0.01100231 -0.01107479\n", + " -0.01112598 -0.01115523 -0.20642679 -0.20642679 -0.01116024 -0.01116024\n", + " -0.19587779 -0.16288944 -0.12894461 -0.09424616 -0.05899718 -0.02340304\n", + " -0.19782623 -0.16450046 -0.13021766 -0.09517804 -0.05958347 -0.0236399\n", + " -0.19939086 -0.16579789 -0.13124607 -0.09593306 -0.06005988 -0.02383341\n", + " -0.20057035 -0.16677881 -0.13202594 -0.09650734 -0.06042346 -0.02398226\n", + " -0.20136156 -0.16743861 -0.13255205 -0.09689601 -0.0606707 -0.02408492\n", + " -0.20176105 -0.16777281 -0.13281959 -0.09709479 -0.06079851 -0.02414006]\n", + " [-0.20112017 -0.17462343 -0.14743759 -0.11967398 -0.09144325 -0.06285614\n", + " -0.0340241 -0.00505944 -0.20112017 -0.20295163 -0.20451753 -0.20581845\n", + " -0.20685386 -0.20762236 -0.2081222 -0.20835189 -0.00505944 -0.0050993\n", + " -0.00513287 -0.00516008 -0.00518078 -0.00519482 -0.00520206 -0.00520239\n", + " -0.20835189 -0.18087002 -0.15269708 -0.12393724 -0.09469638 -0.06508391\n", + " -0.03521344 -0.00520239 -0.18966571 -0.15671259 -0.12283514 -0.0882373\n", + " -0.053123 -0.01769778 -0.20186172 -0.20392662 -0.20559352 -0.20686189\n", + " -0.20772922 -0.20819238 -0.00517714 -0.00522278 -0.00525872 -0.00528472\n", + " -0.0053005 -0.00530579 -0.19646103 -0.1623014 -0.12720719 -0.09137251\n", + " -0.05499882 -0.01829695 -0.20103758 -0.20103758 -0.00530513 -0.00530513\n", + " -0.19044022 -0.19238166 -0.19395017 -0.19514465 -0.19596195 -0.19639843\n", + " -0.15734701 -0.15893973 -0.16022981 -0.16121459 -0.16188952 -0.16224993\n", + " -0.12332956 -0.12457282 -0.12558234 -0.12635458 -0.12688447 -0.12716713\n", + " -0.08859098 -0.08948154 -0.09020602 -0.09076095 -0.09114176 -0.09134421\n", + " -0.05333481 -0.05386844 -0.05430277 -0.0546353 -0.05486289 -0.05498267\n", + " -0.01776673 -0.01794001 -0.01808024 -0.01818657 -0.01825788 -0.01829321]\n", + " [ 0.95755142 0.96233999 0.96653976 0.97008795 0.97293305 0.97503467\n", + " 0.97636342 0.97690088 0.95755142 0.96248238 0.96683281 0.97053776\n", + " 0.97354358 0.97580774 0.97729871 0.97799592 0.97690088 0.98248039\n", + " 0.98738607 0.99155393 0.99493015 0.99747104 0.99914344 0.99992533\n", + " 0.97814 -0.05065827 -0.08683905 -0.12251113 -0.15747231 -0.19152571\n", + " -0.0142515 -0.05087978 -0.08720594 -0.12301955 -0.15811848 -0.19230704\n", + " -0.01429691 -0.0510015 -0.08740238 -0.12328852 -0.15845779 -0.19271515]\n", + " [ 0.20994474 0.18250974 0.15437814 0.12565449 0.09644464 0.0668576\n", + " 0.03700641 0.00700791 0.20994474 0.20980966 0.20940234 0.20872399\n", + " 0.20777622 0.20656061 0.20507835 0.20333011 0.00700791 0.00701559\n", + " 0.00701392 0.00700302 0.00698305 0.00695418 0.00691659 0.00687038\n", + " 0.20333011 0.17679323 0.14956333 0.12175011 0.09346339 0.06481351\n", + " 0.03591173 0.00687038 0.19807534 0.16396932 0.12892083 0.09312409\n", + " 0.05677987 0.02009792 0.20982687 0.20947825 0.20872203 0.20756102\n", + " 0.20599809 0.20403521 0.00711509 0.00711803 0.00710683 0.00708177\n", + " 0.0070432 0.00699139 0.19185821 0.1588536 0.12491703 0.09025061\n", + " 0.0550575 0.01954302 0.20985223 0.20985223 0.00696998 0.00696998\n", + " 0.19805172 0.19772367 0.19701128 0.1959177799592 0.98344825 0.98821363 0.9922301 0.99544579 0.99781904\n", + " 0.99931881 0.99992533 0.9597252 0.96520735 0.96974134 0.97322767\n", + " 0.97559197 0.97678469 0.95978566 0.96544816 0.97017277 0.97385603\n", + " 0.97641964 0.97781011 0.97941141 0.98580511 0.99112198 0.99525874\n", + " 0.998135 0.99969431 0.98045219 0.98668092 0.99181514 0.9957552\n", + " 0.99842443 0.99977036 0.95758648 0.95758648 0.99992365 0.99992365\n", + " 0.96195864 0.96770674 0.97250019 0.97623574 0.97883515 0.98024484\n", + " 0.96752607 0.97348742 0.97845274 0.98231919 0.98500842 0.98646648\n", + " 0.97212813 0.97826002 0.98336338 0.98733549 0.99009754 0.99159492\n", + " 0.9756655 0.9819256 0.98713324 0.99118554 0.99400311 0.99553056\n", + " 0.97806386 0.98440972 0.98968741 0.99379381 0.99664895 0.99819679\n", + " 0.97927362 0.98566244 0.99097531 0.99510896 0.99798306 0.9995412 ]]\n", + "DEBUG:root:radec2pix: ccdpx: [[-4.45000000e+01 -5.00000251e-01]\n", + " [-4.45000000e+01 2.91928572e+02]\n", + " [-4.45000000e+01 76 0.19444643 0.19259955\n", + " 0.16395068 0.1636812 0.16309354 0.16219177 0.16098028 0.15946229\n", + " 0.12890725 0.1286975 0.12823673 0.12752928 0.12657997 0.12539259\n", + " 0.09311572 0.09296747 0.092637 0.09212815 0.0914453 0.09059206\n", + " 0.05677687 0.05669199 0.05649545 0.05618991 0.05577844 0.0552636\n", + " 0.02010041 0.0200803 0.02002048 0.0199219 0.01978566 0.01961272]\n", + " [ 0.97771265 0.98320342 0.98801119 0.9920734 0.99533767 0.99776183\n", + " 0.99931431 0.99997471 0.97771265 0.97727914 0.97604944 0.97404051\n", + " 0.97128023 0.96780744 0.96367189 0.95893426 0.99997471 0.99948775\n", + " 0.99810621 0.99584827 0.99274339 0.98883174 0.98416372 0.97879993\n", + " 0.95893426 0.96381393 0.96809947 0.97172808 0.97464791 0.97681802\n", + " 0.97820838 0.97879993 0.98018607 0.98646468 0.9916541 0.9956537\n", + " 0.99838589 0.99979716 0.97764201 0.9765736 0.97432479 0.97094241\n", + " 0.96649792 0.96108746 0.99987235 0.99867225 0.99614527 0.99234098\n", + " 0.9873332DEBUG:root:radec2pix: camVec Shape: (3, 96)\n", + "DEBUG:root:cartToSphere: vec: [[0.20658103 0.20098859 0.9575635 ]\n", + " [0.20838989 0.17447006 0.96235848]\n", + " [0.20993522 0.14727238 0.9665599 ]\n", + " [0.21121099 0.11949936 0.97010815]\n", + " [0.21221385 0.09125926 0.97295274]\n", + " [0.21294172 0.06266255 0.97505345]\n", + " [0.21339307 0.03382097 0.97638084]\n", + " [0.21356684 0.00484709 0.97691643]\n", + " [0.20658103 0.20098859 0.9575635 ]\n", + " [0.18015754 0.20282418 0.96249967]\n", + " [0.1530338 0.20440426 0.96685033]\n", + " [0.12531307 0.20572264 0.97055388]\n", + " [0.09710338 0.20677589 0.97355774]\n", + " [0.06851504 0.2075618 0.97581955]\n", + " [0.03965966 0.2080787 0.97730771]\n", + " [0.01064976 0.20832528 0.97800162]\n", + " [0.21356684 0.00484709 0.97691643]\n", + " [0.18621882 0.00490326 0.98249606]\n", + " [0.15815829 0.00495363 0.98740135]\n", + " [0.12949192 0.00499813 0.99156788]\n", + " [0.10032565 0.0050366 0.99494191]\n", + " [0.07076705 0.00506881 0.99747999]\n", + " [0.04092766 0.00509451 0.99914912]\n", + " [0.01092393 0.00511348 0.99992726]\n", + " [0.01064976 0.20832528 0.97800162]\n", + " [0.01072986 0.18083307 0. 5.84357143e+02]\n", + " [-4.45000000e+01 8.76785714e+02]\n", + " [-4.45000000e+01 1.16921429e+03]\n", + " [-4.45000000e+01 1.46164286e+03]\n", + " [-4.45000000e+01 1.75407143e+03]\n", + " [-4.45000000e+01 2.04650000e+03]\n", + " [-4.45000000e+01 -5.00000251e-01]\n", + " [ 2.47928571e+02 -5.00000137e-01]\n", + " [ 5.40357143e+02 -5.00000030e-01]\n", + " [ 8.32785714e+02 -4.99999965e-01]\n", + " [ 1.12521429e+03 -4.99999941e-01]\n", + " [ 1.41764286e+03 -5.00000178e-01]\n", + " [ 1.71007143e+03 -4.99999847e-01]\n", + " [ 2.00250000e+03 -5.00000219e-01]\n", + " [-4.45000000e+01 2.04650000e+03]\n", + " [ 2.47928571e+02 2.04650000e+03]\n", + " [ 5.40357143e+02 2.04650000e+03]\n", + " [ 8.32785714e+02 2.04650000e+03]\n", + " [ 1.12521429e+03 2.04650000e+03]\n", + " [ 1.41764286e+03 2.04650000e+03]\n", + " [ 1.71007143e+03 2.04650000e+03]\n", + " [ 2.00250000e+03 2.04650000e+03]\n", + " [ 2.00250000e+03 -5.00000219e-01]\n", + " [ 2.00250000e+03 2.91928572e+02]\n", + " [ 2.00250000e+03 5.84357143e+02]\n", + " [ 2.00250000e+03 8.76785714e+02]\n", + " [ 2.00250000e+03 1.16921429e+03]\n", + " [ 2.00250000e+03 1.46164286e+03]\n", + " [ 2.00250000e+03 1.75407143e+03]\n", + " [ 2.00250000e+03 2.04650000e+03]\n", + " [-4.35000000e+01 1.27000000e+02]\n", + " [-4.35000000e+01 4.85400000e+02]\n", + " [-4.35000000e+01 8.43800000e+02]\n", + " [-4.35000000e+01 1.20220000e+03]\n", + " [-4.35000000e+01 1.56060000e+03]\n", + " [-4.35000000e+01 1.91900000e+03]\n", + " [ 8.30000000e+01 4.99999716e-01]\n", + " [ 4.41400000e+02 4.99999791e-01]\n", + " [ 7.99800000e+02 5.00000291e-01]\n", + " [ 1.15820000e+03 5.00000004e-01]\n", + " [ 1.51660000e+03 5.00000077e-01]\n", + " [ 1.87500000e+03 4.99999846e-01]\n", + " [ 8.30000001e+01 2.04550000e+03]\n", + " [ 4.41400000e+02 2.04550000e+03]\n", + " [ 7.99800000e+02 2.04550000e+03]\n", + " [ 1.15820000e+03 2.04550000e+03]\n", + " [ 1.51660000e+03 2.04550000e+03]\n", + " [ 1.87500000e+03 2.04550000e+03]\n", + " [ 2.00150000e+03 1.27000000e+02]\n", + " [ 2.00150000e+03 4.85400000e+02]\n", + " [ 2.00150000e+03 8.43800000e+02]\n", + " [ 2.00150000e+03 1.20220000e+03]\n", + " [ 2.00150000e+03 1.56060000e+03]\n", + " [ 2.00150000e+03 1.91900000e+03]\n", + " [-4.35000000e+01 4.99999735e-01]\n", + " [-4.35000000e+01 4.99999735e-01]\n", + " [ 2.00150000e+03 2.04550000e+03]\n", + " [ 2.00150000e+03 2.04DEBUG:root:make_az_asym: xyp: [[ -0.230877 31.363511 ]\n", + " [ -0.230877 26.97708243]\n", + " [ -0.230877 22.59065386]\n", + " [ -0.230877 18.20422528]\n", + " [ -0.230877 13.81779671]\n", + " [ -0.230877 9.43136815]\n", + " [ -0.230877 5.04493957]\n", + " [ -0.230877 0.658511 ]\n", + " [ -0.230877 31.363511 ]\n", + " [ -4.61730557 31.363511 ]\n", + " [ -9.00373414 31.363511 ]\n", + " [-13.39016272 31.363511 ]\n", + " [-17.77659129 31.363511 ]\n", + " [-22.16301986 31.363511 ]\n", + " [-26.54944843 31.363511 ]\n", + " [-30.935877 31.363511 ]\n", + " [ -0.230877 0.658511 ]\n", + " [ -4.61730558 0.658511 ]\n", + " [ -9.00373414 0.658511 ]\n", + " [-13.39016271 0.658511 ]\n", + " [-17.77659128 0.658511 ]\n", + " [-22.16301986 0.658511 ]\n", + " [-26.54944843 0.658511 ]\n", + " [-30.935877 0.658511 ]\n", + " [-30.935877 31.363511 ]\n", + " [-30.935877 26.97708243]\n", + " [-30.935877 22.59065386]\n", + " [-30.935877 18.20422528]\n", + " [-30.935877 13.81779671]\n", + " [-30.935877 9.43136814]\n", + " [-30.935877 5.04493957]\n", + " [-30.935877 0.658511 ]\n", + " [ -0.245877 29.451011 ]\n", + " [ -0.245877 98345527]\n", + " [0.01079662 0.15264908 0.98822148]\n", + " [0.01085001 0.12387974 0.99223792]\n", + " [0.01088978 0.09463112 0.99545284]\n", + " [0.0109156 0.06501141 0.99782482]\n", + " [0.01092708 0.0351331 0.9993229 ]\n", + " [0.01092393 0.00511348 0.99992726]\n", + " [0.20731213 0.18952259 0.95974104]\n", + " [0.20935192 0.15655094 0.96522722]\n", + " [0.21098964 0.12266162 0.96976157]\n", + " [0.21221814 0.08805229 0.97324727]\n", + " [0.21303349 0.05292621 0.97561035]\n", + " [0.21343308 0.01748945 0.97680113]\n", + " [0.19515895 0.20172997 0.95980102]\n", + " [0.16228971 0.20380791 0.96546589]\n", + " [0.12847052 0.20549566 0.97018908]\n", + " [0.09389848 0.20678588 0.97386995]\n", + " [0.05877657 0.20767444 0.97643056]\n", + " [0.02331064 0.20815839 0.97781731]\n", + " [0.20173739 0.00497187 0.97942703]\n", + " [0.16772694 0.00503783 0.98582062]\n", + " [0.13275239 0.00509482 0.99113614]\n", + " [0.09700904 0.00514259 0.99527021]\n", + " [0.06069518 0.00518073 0.9981429 ]\n", + " [0.02401827 0.00520877 0.99969795]\n", + " [0.01078606 0.19643015 0.98045849]\n", + " [0.01087623 0.16225698 0.98668859]\n", + " [0.01094616 0.1271506 0.99182302]\n", + " [0.01099551 0.091DEBUG:root:make_az_asym: xyp: [[-32.203794 -31.5506227 ]\n", + " [-32.20328688 -27.16419416]\n", + " [-32.20277976 -22.77776561]\n", + " [-32.20227264 -18.39133707]\n", + " [-32.20176553 -14.00490853]\n", + " [-32.20125841 -9.61847999]\n", + " [-32.20075129 -5.23205144]\n", + " [-32.20024417 -0.8456229 ]\n", + " [-32.203794 -31.5506227 ]\n", + " [-27.81736545 -31.55112981]\n", + " [-23.43093691 -31.55163693]\n", + " [-19.04450837 -31.55214405]\n", + " [-14.65807983 -31.55265117]\n", + " [-10.27165129 -31.55315829]\n", + " [ -5.88522274 -31.5536654 ]\n", + " [ -1.4987942 -31.55417252]\n", + " [-32.20024417 -0.8456229 ]\n", + " [-27.81381563 -0.84613002]\n", + " [-23.42738708 -0.84663714]\n", + " [-19.04095854 -0.84714426]\n", + " [-14.65453 -0.84765137]\n", + " [-10.26810146 -0.84815849]\n", + " [ -5.88167292 -0.84866561]\n", + " [ -1.49524438 -0.84917273]\n", + " [ -1.4987942 -31.55417252]\n", + " [ -1.49828708 -27.16774398]\n", + " [ -1.49777997 -22.78131544]\n", + " [ -1.49727285 -18.39488689]\n", + " [ -1.49676573 -14.00845835]\n", + " [ -1.49625861 -9.62202981]\n", + " [ -1.49575149 -5.23560127]\n", + " [ -1.49524438 -0.84917273]\n", + " [-32.18857289 -29.63812445]\n", + " [-32.1879513DEBUG:root:radec2pix: xyfp: [[-32.29046994 -31.71666141]\n", + " [-32.28860507 -27.33023323]\n", + " [-32.2867402 -22.94380505]\n", + " [-32.28487534 -18.55737688]\n", + " [-32.28301047 -14.1709487 ]\n", + " [-32.2811456 -9.78452053]\n", + " [-32.27928073 -5.39809235]\n", + " [-32.27741587 -1.01166418]\n", + " [-32.29046994 -31.71666141]\n", + " [-27.90404176 -31.71852627]\n", + " [-23.51761359 -31.72039114]\n", + " [-19.13118541 -31.722256 ]\n", + " [-14.74475724 -31.72412087]\n", + " [-10.35832906 -31.72598574]\n", + " [ -5.97190089 -31.72785061]\n", + " [ -1.58547272 -31.72971547]\n", + " [-32.27741587 -1.01166418]\n", + " [-27.8909877 -1.01352905]\n", + " [-23.50455952 -1.01539391]\n", + " [-19.11813134 -1.01725878]\n", + " [-14.73170317 -1.01912365]\n", + " [-10.345275 -1.02098851]\n", + " [ -5.95884682 -1.02285338]\n", + " [ -1.57241864 -1.02471825]\n", + " [ -1.58547272 -31.72971547]\n", + " [ -1.58360785 -27.3432873 ]\n", + " [ -1.58174298 -22.95685912]\n", + " [ -1.57987811 -18.57043094]\n", + " [ -1.57801325 -14.18400278]\n", + " [ -1.57614838 -9.7975746 ]\n", + " [ -1.57428351 -5.41114642]\n", + " [ -1.57241864 -1.02471825]\n", + " [-32.27465685 -29.80416795]\n", + " [-32.27237127 DEBUG:root:optics_fp: sphi: [-0.69680111 -0.64114722 -0.57314869 -0.49084265 -0.39293677 -0.27960013\n", + " -0.15326941 -0.01896529 -0.69680111 -0.74728304 -0.80034077 -0.85407631\n", + " -0.90539113 -0.94994095 -0.98262854 -0.99880866 -0.01896529 -0.02204027\n", + " -0.02626479 -0.03243122 -0.04227651 -0.06048361 -0.10546358 -0.38328124\n", + " -0.99880866 -0.99839535 -0.9977203 -0.99650464 -0.99396928 -0.9872021\n", + " -0.95720188 -0.38328124 -0.67408945 -0.59784918 -0.50106771 -0.3810536\n", + " -0.23821077 -0.07812313 -0.71824824 -0.78204748 -0.84795317 -0.91077177\n", + " -0.96255302 -0.99400976 -0.02069125 -0.02527007 -0.03236333 -0.04482319\n", + " -0.07241971 -0.18420237 -0.9986244 -0.99795053 -0.99662012 -0.9933915\n", + " -0.98176652 -0.85668122 -0.6967964 -0.6967964 -0.38778427 -0.38778427\n", + " -0.69616172 -0.76258227 -0.83253145 -0.90061674 -0.95788656 -0.99322432\n", + " -0.62111512 -0.69382495 -0.77549605 -0.8611271 -0.93887151 -0.98992366\n", + " -0.52402662 -0.59898168 -0.69015945 -0.79605037 -0.90427778 -0.98347639\n", + " -0.40118994 -0.4700312 --24.42816844]\n", + " [-32.2700857 -19.05216893]\n", + " [-32.26780012 -13.67616941]\n", + " [-32.26551454 -8.3001699 ]\n", + " [-32.26322896 -2.92417038]\n", + " [-30.37796373 -31.70247449]\n", + " [-25.00196422 -31.70476008]\n", + " [-19.62596471 -31.70704565]\n", + " [-14.24996519 -31.70933123]\n", + " [ -8.87396568 -31.71161681]\n", + " [ -3.49796617 -31.71390239]\n", + " [-30.36492242 -1.02747727]\n", + " [-24.98892291 -1.02976285]\n", + " [-19.61292339 -1.03204842]\n", + " [-14.23692388 -1.034334 ]\n", + " [ -8.86092437 -1.03661958]\n", + " [ -3.48492485 -1.03890516]\n", + " [ -1.59965962 -29.81720927]\n", + " [ -1.59737405 -24.44120975]\n", + " [ -1.59508847 -19.06521024]\n", + " [ -1.59280289 -13.68921073]\n", + " [ -1.59051731 -8.31321121]\n", + " [ -1.58823174 -2.9372117 ]\n", + " [-32.27546357 -31.70166778]\n", + " [-32.27546357 -31.70166778]\n", + " [ -1.58742502 -1.03971187]\n", + " [ -1.58742502 -1.03971187]\n", + " [-30.37715702 -29.80497466]\n", + " [-25.00115751 -29.80726024]\n", + " [-19.625158 -29.80954582]\n", + " [-14.24915848 -29.8118314 ]\n", + " [ -8.87315897 -29.81411698]\n", + " [ -3.49715945 -29.81640256]\n", + " [-30.37487145 -24.42897515]\n", + " [-24.99887193 -24.43126073]\n", + " [-19.62287241 -24.43354631]\n", + " [-14.2468729 -24.43583188]\n", + " [ -8.87087339 -24.43811746]\n", + " [ -3.49487388 -24.44040305]\n", + " [-30.37258587 -19.05297564]\n", + " [-24.99658635 -19.05526122]\n", + " [-19.62058684 -19.05754679]\n", + " [-14.24458732 -19.05983237]\n", + " [ -8.86858781 -19.06211795]\n", + " [ -3.4925883 -19.06440353]\n", + " [-30.37030029 -13.67697612]\n", + " [-24.99430077 -13.6792617 ]\n", + " [-19.61830126 -13.68154728]\n", + " [-14.24230175 -13.68383286]\n", + " [ -8.86630223 -13.68611844]\n", + " [ -3.49030272 -13.68840401]\n", + " [-30.36801471 -8.30097661]\n", + " [-24.9920152 -8.30326219]\n", + " [-19.61601568 -8.30554776]\n", + " [-14.24001617 -8.30783335]\n", + " [ -8.86401666 -8.31011893]\n", + " [ -3.48801714 -8.3124045 ]\n", + " [-30.36572914 -2.9249771 ]\n", + " [-24.98972962 -2.92726267]\n", + " [-19.6137301 -2.92954825]\n", + " [-14.23773059 -2.93183383]\n", + " [ -8.86173108 -2.93411941]\n", + " [ -3.48573156 -2.93640499]]\n", + " 24.075011 ]\n", + " [ -0.245877 18.699011 ]\n", + " [ -0.245877 13.323011 ]\n", + " [ -0.245877 7.947011 ]\n", + " [ -0.245877 2.571011 ]\n", + " [ -2.143377 31.348511 ]\n", + " [ -7.519377 31.348511 ]\n", + " [-12.895377 31.348511 ]\n", + " [-18.271377 31.348511 ]\n", + " [-23.647377 31.348511 ]\n", + " [-29.023377 31.348511 ]\n", + " [ -2.143377 0.673511 ]\n", + " [ -7.519377 0.673511 ]\n", + " [-12.895377 0.673511 ]\n", + " [-18.271377 0.673511 ]\n", + " [-23.64737701 0.673511 ]\n", + " [-29.023377 0.673511 ]\n", + " [-30.920877 29.451011 ]\n", + " [-30.920877 24.075011 ]\n", + " [-30.920877 18.699011 ]\n", + " [-30.920877 13.323011 ]\n", + " [-30.920877 7.947011 ]\n", + " [-30.920877 2.571011 ]\n", + " [ -0.245877 31.348511 ]\n", + " [ -0.245877 31.348511 ]\n", + " [-30.920877 0.673511 ]\n", + " [-30.920877 0.673511 ]\n", + " [ -2.143377 29.451011 ]\n", + " [ -7.519377 29.451011 ]\n", + " [-12.895377 29.451011 ]\n", + " [-18.271377 29.451011 ]\n", + " [-23.647377 29.451011 ]\n", + " [-29.023377 29.451011 ]\n", + " [ -2.143377 24.075011 ]\n", + " [ -7.519377 24.075011 ]\n", + " [-12.895377 24.075011 ]\n", + " [-18.271377 24.075011 ]\n", + " [-23.647377 24.075011 ]\n", + " [-29.023377 24.075011 ]\n", + " [ -2.143377 18.699011 ]\n", + " [ -7.519377 18.699011 ]\n", + " [-12.89537DEBUG:root:cartToSphere: vec: [[-0.20650899 -0.20112017 0.95755142]\n", + " [-0.20834684 -0.17462343 0.96233999]\n", + " [-0.209912 -0.14743759 0.96653976]\n", + " [-0.2112049 -0.11967398 0.97008795]\n", + " [-0.21222492 -0.09144325 0.97293305]\n", + " [-0.21297066 -0.06285614 0.97503467]\n", + " [-0.21344048 -0.0340241 0.97636342]\n", + " [-0.21363303 -0.00505944 0.97690088]\n", + " [-0.20650899 -0.20112017 0.95755142]\n", + " [-0.18010636 -0.20295163 0.96248238]\n", + " [-0.15299311 -0.20451753 0.96683281]\n", + " [-0.12528058 -0.20581845 0.97053776]\n", + " [-0.09707928 -0.20685386 0.97354358]\n", + " [-0.06849975 -0.20762236 0.97580774]\n", + " [-0.03965325 -0.2081222 0.97729871]\n", + " [-0.01065205 -0.20835189 0.97799592]\n", + " [-0.21363303 -0.00505944 0.97690088]\n", + " [-0.1862962 -0.0050993 0.98248039]\n", + " [-0.15824793 -0.00513287 0.98738607]\n", + " [-0.12959237 -0.00516008 0.99155393]\n", + " [-0.10043485 -0.00518078 0.99493015]\n", + " [-0.07088401 -0.00519482 0.99747104]\n", + " [-0.04105265 -0.00520206 0.99914344]\n", + " [-0.01105755 -0.00520239 0.99992533]\n", + " [-0.01065205 -0.20835189 0.977990.56175978 -0.68358289 -0.83348839 -0.96822051\n", + " -0.25223255 -0.30216337 -0.37479377 -0.48708132 -0.66835488 -0.91754577\n", + " -0.08301599 -0.10086897 -0.12834059 -0.17590022 -0.27687945 -0.59535474]\n", + "7 0.98121915 0.96114781 0.96673797 0.971372 0.97494989\n", + " 0.97739627 0.97866043 0.97773239 0.97773239 0.97881873 0.97881873\n", + " 0.98009443 0.97901113 0.97673072 0.97330012 0.96879081 0.96329894\n", + " 0.98636988 0.98524909 0.98288929 0.97933775 0.97466623 0.96897082\n", + " 0.99155673 0.99040541 0.9879811 0.98433168 0.97952939 0.97367044\n", + " 0.99555434 0.9943796 0.99190593 0.98818188 0.98328034 0.97729779\n", + " 0.99828517 0.99709441 0.99458704 0.99081223 0.98584345 0.97977749\n", + " 0.99969574 0.99849668 0.99597189 0.99217088 0.98716749 0.98105872]]\n", + "30636 0.99576214]\n", + " [0.01102363 0.0549237 0.9984297 ]\n", + " [0.01102984 0.01821176 0.99977331]\n", + " [0.2064986 0.20090587 0.95759864]\n", + " [0.2064986 0.20090587 0.95759864]\n", + " [0.01102671 0.00521618 0.9999256 ]\n", + " [0.01102671 0.00521618 0.DEBUG:root:radec2pix: camVec Shape: (3, 96)\n", + "9999256 ]\n", + " [0.19592714 0.19029998 0.96197634]\n", + " [0.16292559 0.19225876 0.96772508]\n", + " [0.1289709 0.19384904 0.97251687]\n", + " [0.09426176 0.19506507 0.97625014]\n", + " [0.0590016 0.19590316 0.97884665]\n", + " [0.02339654 0.19636024 0.98025265]\n", + " [0.19785166 0.15719218 0.96754604]\n", + " [0.16451646 0.15880644 0.97350647]\n", + " [0.13022261 0.16011755 0.97847046]\n", + " [0.09517088 0.16112232 0.98233503]\n", + " [0.05956467 0.16181718 0.98502145]\n", + " [0.02361044 0.1621981 0.98647571]\n", + " [0.19939573 0.12316354 0.97214818]\n", + " [0.16579218 0.12442767 0.97827946]\n", + " [0.13122742 0.12545686 0.98338189]\n", + " [0.09590173 0.12624866 0.98735208]\n", + " [0.06001727 0.12679897 0.99011108]\n", + " [0.02378066 0.1271029 0.99160442]\n", + " [0.20055377 0.08841323 0.97568503]\n", + " [0.16674959 0.08932369 0.98194493]\n", + " [0.13198281 0.09006766 0.98715164]\n", + " [0.09645193 0.09064294 0.99120174]\n", + " [0.06035751 0.0910454 0.99401595]\n", + " [0.0239064 0.09127018 0.99553917]\n", + " [0.20132229 0.05314506 0.97808228]\n", + " [0.16738526 0.05369842 0.98442808]\n", + " [0.132484592]\n", + " [-0.01075054 -0.18087002 0.98344825]\n", + " [-0.01083605 -0.15269708 0.98821363]\n", + " [-0.01090831 -0.12393724 0.9922301 ]\n", + " [-0.01096697 -0.09469638 0.99544579]\n", + " [-0.01101162 -0.06508391 0.99781904]\n", + " [-0.0110419 -0.03521344 0.99931881]\n", + " [-0.01105755 -0.00520239 0.99992533]\n", + " [-0.20725456 -0.18966571 0.9597252 ]\n", + " [-0.20932255 -0.15671259 0.96520735]\n", + " [-0.21098167 -0.12283514 0.96974134]\n", + " [-0.21223121 -0.0882373 0.97322767]\n", + " [-0.21306867 -0.053123 0.97559197]\n", + " [-0.2134911 -0.01769778 0.97678469]\n", + " [-0.19509826 -0.20186172 0.95978566]\n", + " [-0.16224603 -0.20392662 0.96544816]\n", + " [-0.12843717 -0.20559352 0.97017277]\n", + " [-0.09387541 -0.20686189 0.97385603]\n", + " [-0.05876435 -0.20772922 0.97641964]\n", + " [-0.02330924 -0.20819238 0.97781011]\n", + " [-0.20180806 -0.00517714 0.97941141]\n", + " [-0.16781243 -0.00522278 0.98580511]\n", + " [-0.13285166 -0.00525872 0.99112198]\n", + " [-0.09711907 -0.00528472 0.99525874]\n", + " [-0.06081473 -0.0053005 0.998135 ]\n", + " [-0.02414801 -0.00530579 0.99969431]\n", + " [-0.01079628 -0.19646103 0.98045219]\n", + " [-0.01090926 -0.1623014 0.98668092]\n", + " [-0.01100231 -0.12720719 0.99181514]\n", + " [-0.01107479 -0.09137251 0.9957552 ]\n", + " [-0.01112598 -0.05499882 0.99842443]\n", + " [-0.01115523 -0.01829695 0.99977036]\n", + " [-0.20642679 -0.20103758 0.95758648]\n", + " [-0.20642679 -0.20103758 0.95758648]\n", + " [-0.01116024 -0.00530513 0.99992365]\n", + " [-0.01116024 -0.00530513 0.99992365]\n", + " [-0.19587779 -0.19044022 0.96195864]\n", + " [-0.16288944 -0.19238166 0.96770674]\n", + " [-0.12894461 -0.19395017 0.97250019]\n", + " [-0.09424616 -0.19514465 0.97623574]\n", + " [-0.05899718 -0.19596195 0.97883515]\n", + " [-0.02340304 -0.19639843 0.98024484]\n", + " [-0.19782623 -0.15734701 0.96752607]\n", + " [-0.16450046 -0.15893973 0.97348742]\n", + " [-0.13021766 -0.16022981 0.97845274]\n", + " [-0.09517804 -0.16121459 0.98231919]\n", + " [-0.05958347 -0.16188952 0.98500842]\n", + " [-0.0236399 -0.16224993 0.98646648]\n", + " [-0.19939086 -0.12332956 0.97212813]\n", + " [-0.16579789 -0.12457282 0.97826002]\n", + " [-0.13124607 -0.12558234 0.98336338]\n", + " [-0.09593306 -0.12635458 0.98733549]\n", + " [-0.06 -24.26212448]\n", + " [-32.18732984 -18.88612452]\n", + " [-32.18670832 -13.51012455]\n", + " [-32.1860868 -8.13412459]\n", + " [-32.18546528 -2.75812462]\n", + " [-30.29129227 -31.5358438 ]\n", + " [-24.91529231 -31.53646533]\n", + " [-19.53929235 -31.53708685]\n", + " [-14.16329238 -31.53770837]\n", + " [ -8.78729242 -31.53832989]\n", + " [ -3.41129245 -31.53895142]\n", + " [-30.28774592 -0.86084401]\n", + " [-24.91174595 -0.86146553]\n", + " [-19.53574599 -0.86208705]\n", + " [-14.15974603 -0.86270858]\n", + " [ -8.78374606 -0.8633301 ]\n", + " [ -3.4077461 -0.86395162]\n", + " [ -1.5135731 -29.6416708 ]\n", + " [ -1.51295157 -24.26567084]\n", + " [ -1.51233005 -18.88967087]\n", + " [ -1.51170853 -13.51367091]\n", + " [ -1.51108701 -8.13767095]\n", + " [ -1.51046548 -2.76167097]\n", + " [-32.18879227 -31.53562444]\n", + " [-32.18879227 -31.53562444]\n", + " [ -1.51024611 -0.86417099]\n", + " [ -1.51024611 -0.86417099]\n", + " [-30.29107291 -29.63834382]\n", + " [-24.91507294 -29.63896534]\n", + " [-19.53907298 -29.63958686]\n", + " [-14.16307301 -29.64020839]\n", + " [ -8.78707305 -29.64082991]\n", + " [ -3.41107308 -29.64145143]\n", + " [-30.29045138 -24.26234385]\n", + " [-24.91445142 -24.26296538]\n", + " [-19.53845145 -24.2635869 ]\n", + " [-14.16245149 -24.26420842]\n", + " [ -8.78645152 -24.26482994]\n", + " [ -3.41045156 -24.26545147]\n", + " [-30.28982986 -18.88634389]\n", + " [-24.91382989 -18.88696541]\n", + " [-19.53782993 -18.88758693]\n", + " [-14.16182997 -18.88820846]\n", + " [ -8.78583 -18.88882997]\n", + " [ -3.40983004 -18.8894515 ]\n", + " [-30.28920834 -13.51034392]\n", + " [-24.91320837 -13.51096545]\n", + " [-19.53720841 -13.51158697]\n", + " [-14.16120844 -13.51220849]\n", + " [ -8.78520848 -13.51283002]\n", + " [ -3.40920852 -13.51345154]\n", + " [-30.28858681 -8.13434396]\n", + " [-24.91258685 -8.13496548]\n", + " [-19.53658688 -8.135587 ]\n", + " [-14.16058692 -8.13620852]\n", + " [ -8.78458696 -8.13683005]\n", + " [ -3.40858699 -8.13745157]\n", + " [-30.28796529 -2.75834399]\n", + " [-24.91196532 -2.75896552]\n", + " [-19.53596536 -2.75958704]\n", + " [-14.1599654 -2.76020856]\n", + " [ -8.78396543 -2.76083009]\n", + " [ -3.40796547 -2.76145161]]\n", + "71 0.05415286 0.98970464]\n", + " [0.09681723 0.05450669 0.99380856]\n", + " [0.06058199 0.05475678 0.99666018]\n", + " [0.02398618 0.05489951 0.99820374]\n", + " [0.20169858 0.0175654 0.97929012]\n", + " [0.16769559 0.01775879 0.98567886]\n", + " [0.13272857 0.01791986 0.99099042]\n", + " [0.09699294 0.01804791 0.99512142]\n", + " [0.06068709 0.01814173 0.99799196]\n", + " [0.02401844 0.01819993 0.99954584]]\n", + "550000e+03]\n", + " [ 8.30000000e+01 1.27000000e+02]\n", + " [ 4.41400000e+02 1.27000000e+02]\n", + " [ 7.99800000e+02 1.27000000e+02]\n", + " [ 1.15820000e+03 1.27000000e+02]\n", + " [ 1.51660000e+03 1.27000000e+02]\n", + " [ 1.87500000e+03 1.27000000e+02]\n", + " [ 8.30000000e+01 4.85400000e+02]\n", + " [ 4.41400000e+02 4.85400000e+02]\n", + " [ 7.99800000e+02 4.85400000e+02]\n", + " [ 1.15820000e+03 4.85400000e+02]\n", + " [ 1.51660000e+03 4.85400000e+02]\n", + " [ 1.87500000e+03 4.85400000e+02]\n", + " [ 8.30000000e+01 8.43800000e+02]\n", + " [ 4.41400000e+02 8.43800000e+02]\n", + " [ 7.99800000e+02 8.43800000e+02]\n", + " [ 1.15820000e+03 8.43800000e+02]\n", + " [ 1.51660000e+03 8.43800000e+02]\n", + " [ 1.87500000e+03 8.43800000e+02]\n", + " [ 8.30000000e+01 1.20220000e+03]\n", + " [ 4.41400000e+02 1.20220000e+03]\n", + " [ 7.99800000e+02 1.20220000e+03]\n", + " [ 1.15820000e+03 1.20220000e+03]\n", + " [ 1.51660000e+03 1.20220000e+03]\n", + " [ 1.87500000e+036005988 -0.12688447 0.99009754]\n", + " [-0.02383341 -0.12716713 0.99159492]\n", + " [-0.20057035 -0.08859098 0.9756655 ]\n", + " [-0.16677881 -0.08948154 0.9819256 ]\n", + " [-0.13202594 -0.09020602 0.98713324]\n", + " [-0.09650734 -0.09076095 0.99118554]\n", + " [-0.06042346 -0.09114176 0.99400311]\n", + " [-0.02398226 -0.09134421 0.99553056]\n", + " [-0.20136156 -0.05333481 0.97806386]\n", + " [-0.16743861 -0.05386844 0.98440972]\n", + " [-0.13255205 -0.05430277 0.98968741]\n", + " [-0.09689601 -0.0546353 0.99379381]\n", + " [-0.0606707 -0.05486289 0.99664895]\n", + " [-0.02408492 -0.05498267 0.99819679]\n", + " [-0.20176105 -0.01776673 0.97927362]\n", + " [-0.16777281 -0.01794001 0.98566244]\n", + " [-0.13281959 -0.01808024 0.99097531]\n", + " [-0.09709479 -0.01818657 0.99510896]\n", + " [-0.06079851 -0.01825788 0.99798306]\n", + " [-0.02414006 -0.01829321 0.9995412 ]]\n", + " 1.20220000e+03]\n", + " [ 8.30000000e+01 1.56060000e+03]\n", + " [ 4.41400000e+02 1.56060000e+03]\n", + " [ 7.99800000e+02 1.56060000e+03]\n", + " [ 1.15820000e+03 1.56060000e+03]\n", + " [ 1.51660000e+03 1.56060000e+03]\n", + " [ 1.87500000e+03 1.56060000e+07 18.699011 ]\n", + " [-18.271377 18.699011 ]\n", + " [-23.647377 18.699011 ]\n", + " [-29.023377 18.699011 ]\n", + " [ -2.143377 13.323011 ]\n", + " [ -7.519377 13.323011 ]\n", + " [-12.895377 13.323011 ]\n", + " [-18.271377 13.323011 ]\n", + " [-23.647377 13.323011 ]\n", + " [-29.023377 13.323011 ]\n", + " [ -2.143377 7.947011 ]\n", + " [ -7.519377 7.947011 ]\n", + " [-12.895377 7.947011 ]\n", + " [-18.271377 7.947011 ]\n", + " [-23.647377 7.947011 ]\n", + " [-29.023377 7.947011 ]\n", + " [ -2.143377 2.571011 ]\n", + " [ -7.519377 2.571011 ]\n", + " [-12.895377 2.571011 ]\n", + " [-18.271377 2.571011 ]\n", + " [-23.647377 2.571011 ]\n", + " [-29.023377 2.571011 ]]\n", + "3]\n", + " [ 8.30000002e+01 1.91900000e+03]\n", + " [ 4.41400000e+02 1.91900000e+03]\n", + " [ 7.99800000e+02 1.91900000e+03]\n", + " [ 1.15820000e+03 1.91900000e+03]\n", + " [ 1.51660000e+03 1.91900000e+03]\n", + " [ 1.87500000e+03 1.91900000e+03]]\n", + "DEBUG:root:make_az_asym: xyp: shape: (96, 2)\n", + "DEBUG:root:make_az_asym: xyp: shape: (96, 2)\n", + "DEBUG:root:radec2pix: ccdpx: [[-4.45000003e+01 -5.00000268e-01]\n", + " [-4.44999998e+01 2.91928572e+02]\n", + " [-4.44999999e+01 5.84357143e+02]\n", + " [-4.45000000e+01 8.76785714e+02]\n", + " [-4.44999998e+01 1.16921429e+03]\n", + " [-4.44999999e+01 1.46164286e+03]\n", + " [-4.44999997e+01 1.75407143e+03]\n", + " [-4.44999999e+01 2.04650000e+03]\n", + " [-4.45000003e+01 -5.00000268e-01]\n", + " [ 2.47928572e+02 -4.99999720e-01]\n", + " [ 5.40357143e+02 -5.00000140e-01]\n", + " [ 8.32785714e+02 -4.99999791e-01]\n", + " [ 1.12521429e+03 -4.99999975e-01]\n", + " [ 1.41764286e+03 -4.99999912e-01]\n", + " [ 1.71007143e+03 -4.99999978e-01]\n", + " [ 2.00250000e+03 -4.99999991e-01]\n", + " [-4.44999999e+01 2.04650000e+03]\n", + " [ 2.47928571e+02 2.04650000e+03]\n", + " [ 5.40357143e+02 2.04650000e+03]\n", + " [ 8.32785715e+02 2.04650000e+03]\n", + " [ 1.12521429e+03 2.04650000e+03]\n", + " [ 1.41764286e+03 2.04650000e+03]\n", + " [ 1.71007143e+03 2.04650000e+03]\n", + " [ 2.00250000e+03 2.04650000e+03]\n", + " [ 2.00250000e+03 -4.99999991e-01]\n", + " [ 2.00250000e+03 2.91928572e+02]\n", + " [ 2.00250000e+03 5.84357143e+02]\n", + " [ 2.00250000e+03 8.76785715e+02]\n", + " [ 2.00250000e+03 1.16921429e+03]\n", + " [ 2.00250000e+03 1.46164286e+03]\n", + " [ 2.00250000e+03 1.75407143e+03]\n", + " [ 2.00250000e+03 2.04650000e+03]\n", + " [-4.34999998e+01 1.27000000e+02]\n", + " [-4.35000000e+01 4.85400000e+02]\n", + " [-4.35000001e+01 8.43800000e+02]\n", + " [-4.35000000e+01 1.20220000e+03]\n", + " [-4.35000001e+01 1.56060000e+03]\n", + " [-4.34999999e+01 1.91900000e+03]\n", + " [ 8.30000001e+01 5.00000092e-01]\n", + " [ 4.41400000e+02 4.99999764e-01]\n", + " [ 7.99800000e+02 4.99999911e-01]\n", + " [ 1.15820000e+03 5.00000156e-01]\n", + " [ 1.51660000e+03 4.99999840e-01]\n", + " [ 1.87500000e+03 4.99999915e-01]\n", + " [ 8.29999998e+01 2.04550000e+03]\n", + " [ 4.41400000e+02 2.04550000e+03]\n", + " [ 7.99800000e+02 2.04550000e+03]\n", + " [ 1.15820000e+03 2.04550000e+03]\n", + " [ 1.51660000e+03 2.04550000e+03]\n", + " [ 1.87500000e+03 2.04550000e+03]\n", + " [ 2.00150000e+03 1.27000000e+02]\n", + " [ 2.00150000e+03 4.85400000e+02]\n", + " [ 2.00150000e+03 8.43800000e+02]\n", + " [ 2.00150000e+03 1.20220000e+03]\n", + " [ 2.00150000e+03 1.56060000e+03]\n", + " [ 2.00150000e+03 1.91900000e+03]\n", + " [-4.35000000e+01 4.99999958e-01]\n", + " [-4.35000000e+01 4.99999958e-01]\n", + " [ 2.00150000e+03 2.04550000e+03]\n", + " [ 2.00150000e+03 2.04550000e+03]\n", + " [ 8.30000002e+01 1.27000000e+02]\n", + " [ 4.41400000e+02 1.27000000e+02]\n", + " [ 7.99800000e+02 1.27000000e+02]\n", + " [ 1.15820000e+03 1.27000000e+02]\n", + " [ 1.51660000e+03 1.27000000e+02]\n", + " [ 1.87500000e+03 1.27000000e+02]\n", + " [ 8.29999999e+01 4.85400000e+02]\n", + " [ 4.41400000e+02 4.85400000e+02]\n", + " [ 7.99800000e+02 4.85400000e+02]\n", + " [ 1.15820000e+03 4.85400000e+02]\n", + " [ 1.51660000e+03 4.85400000e+02]\n", + " [ 1.87500000e+03 4.85400000e+02]\n", + " [ 8.30000001e+01 8.43800000e+02]\n", + " [ 4.41400000e+02 8.43800000e+02]\n", + " [ 7.99800000e+02 8.43800000e+02]\n", + " [ 1.15820000e+03 8.43800000e+02]\n", + " [ 1.51660000e+03 8.43800000e+02]\n", + " [ 1.87500000e+03 8.43800000e+02]\n", + " [ 8.29999999e+01 1.20220000e+03]\n", + " [ 4.41400000e+02 1.20220000e+03]\n", + " [ 7.99800000e+02 1.20220000e+03]\n", + " [ 1.15820000e+03 1.20220000e+03]\n", + " [ 1.51660000e+03 1.20220000e+03]\n", + " [ 1.87500000e+03 1.20220000e+03]\n", + " [ 8.29999999e+01 1.56060000e+03]\n", + " [ 4.41400000e+02 1.56060000e+03]\n", + " [ 7.99800000e+02 1.560600DEBUG:root:radec2pix: lng: [224.24259986 219.96765614 215.08336296 209.53697562 203.3101935\n", + " 196.44343401 189.05719479 181.35667342 224.24259986 228.41303103\n", + " 233.20099698 238.67135193 244.85870857 251.7410006 259.21279966\n", + " 267.07328529 181.35667342 181.56790868 181.85777415 182.28018564\n", + " 182.95289983 184.19149998 187.22184671 205.19617552 267.07328529\n", + " 266.59845953 265.94084811 264.97008557 263.3938965 260.39700292\n", + " 252.59010355 205.19617552 222.46269399 216.82093439 210.20829157\n", + " 202.57559903 193.99974981 184.73881406 225.97611965 231.49389572\n", + " 238.00639827 245.59111124 254.20436521 263.6117634 181.46953067\n", + " 181.78262482 182.26677669 183.11467024 184.98120654 192.39209935\n", + " 266.85454344 266.15458823 265.05671864 263.08918181 258.56369308\n", + " 238.630299 224.24223838 224.24223838 205.42453452 205.42453452\n", + " 224.19359423 229.74542917 236.38270094 244.22153031 253.24481767\n", + " 263.2046196 218.49803362 224.01504295 230.89947742 239.44320338\n", + " 249.79385261 261.71030558 211.7381028 216.91949700e+03]\n", + " [ 1.15820000e+03 1.56060000e+03]\n", + " [ 1.51660000e+03 1.56060000e+03]\n", + " [ 1.87500000e+03 1.56060000e+03]\n", + " [ 8.29999998e+01 1.91900000e+03]\n", + " [ 4.41400000e+02 1.91900000e+03]\n", + " [ 7.99800000e+02 1.91900000e+03]\n", + " [ 1.15820000e+03 1.91900000e+03]\n", + " [ 1.51660000e+03 1.91900000e+03]\n", + " [ 1.87500000e+03 1.91900000e+03]]\n", + "21 223.73668556\n", + " 232.79289096 244.66979293 259.38488067 203.8308227 208.21481457\n", + " 214.34263424 223.2424136 236.45716258 255.28910964 194.83531269\n", + " 197.83404909 202.27750364 209.41669409 222.12219565 246.34438586\n", + " 185.03238692 186.10346579 187.75181788 190.6089913 196.71508989\n", + " 217.15465227]\n", + "DEBUG:root:optics_fp: xyfp: [[32.2358199 31.31614388]\n", + " [32.23338667 26.92971599]\n", + " [32.23095344 22.54328809]\n", + " [32.2285202 18.15686019]\n", + " [32.22608698 13.7704323 ]\n", + " [32.22365375 9.3840044 ]\n", + " [32.22122051 4.99757651]\n", + " [32.21878728 0.61114861]\n", + " [32.2358199 31.31614388]\n", + " [27.849392 31.31857712]\n", + " [23.46296411 31.32101035]\n", + " [19.07653621 31.32344358]\n", + " [14.69010831 31.3258768 ]\n", + " [10.30368042 31.32831004]\n", + " [ 5.91725252 31.33074327]\n", + " [ 1.53082462 31.3331765 ]\n", + " [32.21878728 0.61114861]\n", + " [27.83235938 0.61358184]\n", + " [23.44593149 0.61601507]\n", + " [19.0595036 0.6184483 ]\n", + " [14.6730757 0.62088153]\n", + " [10.2866478 0.62331476]\n", + " [ 5.90021991 0.625748 ]\n", + " [ 1.513792 0.62818122]\n", + " [ 1.53082462 31.3331765 ]\n", + " [ 1.52839139 26.94674861]\n", + " [ 1.52595816 22.5603207 ]\n", + " [ 1.52352493 18.17389281]\n", + " [ 1.5210917 13.78746492]\n", + " [ 1.51865847 9.40103702]\n", + " [ 1.51622524 5.01460912]\n", + " [ 1.513792 0.62818122]\n", + " [32.219759 29.4036525 ]\n", + " [32.21677684 24.02765333]\n", + " [32.21379467 18.65165415]\n", + " [32.21081251 13.27565498]\n", + " [32.20783035 7.89965581]\n", + " [32.20484818 2.52365664]\n", + " [30.32331188 31.30220479]\n", + " [24.9473127 31.30518695]\n", + " [19.57131353 31.30816912]\n", + " [14.19531435 31.31115127]\n", + " [ 8.81931518 31.31413344]\n", + " [ 3.44331601 31.3171156 ]\n", + " [30.3062959 0.62720951]\n", + " [24.93029672 0.63019167]\n", + " [19.55429755 0.63317383]\n", + " [14.17829838 0.636156 ]\n", + " [ 8.80229921 0.63913816]\n", + " [ 3.42630004 0.64212033]\n", + " [ 1.54476372 29.42066847]\n", + " [ 1.54178156 24.0446693 ]\n", + " [ 1.53879939 18.66867013]\n", + " [ 1.53581723 13.29267096]\n", + " [ 1.53283507 7.91667178]\n", + " [ 1.5298529 2.54067261]\n", + " [32.22081158 31.30115221]\n", + " [32.22081158 31.30115221]\n", + " [ 1.52880032 0.6431729 ]\n", + " [ 1.52880032 0.6431729 ]\n", + " [30.32225929 29.40470508]\n", + " [24.94626012 29.40768724]\n", + " [19.57026095 29.41066941]\n", + " [14.19426178 29.41365157]\n", + " [ 8.8182626 29.41663373]\n", + " [ 3.44226343 29.4196159 ]\n", + " [30.31927713 24.02870591]\n", + " [24.94327796 24.03168807]\n", + " [19.56727878 24.03467023]\n", + " [14.19127961 24.0376524 ]\n", + " [ 8.81528044 24.04063456]\n", + " [ 3.43928127 24.04361672]\n", + " [30.31629496 18.65270673]\n", + " [24.9402958 18.6556889 ]\n", + " [19.56429662 18.65867106]\n", + " [14.18829744 18.66165322]\n", + " [ 8.81229827 18.66463538]\n", + " [ 3.4362991 18.66761755]\n", + " [30.31331281 13.27670756]\n", + " [24.93731363 13.27968972]\n", + " [19.56131446 13.28267189]\n", + " [14.18531529 13.28565406]\n", + " [ 8.80931611 13.28863621]\n", + " [ 3.43331694 13.29161838]\n", + " [30.31033064 7.90070839]\n", + " [24.93433147 7.90369055]\n", + " [19.55833229 7.90667271]\n", + " [14DEBUG:root:cartToSphere: vec: [[-0.00108623 0.20994474 0.97771265]\n", + " [-0.00110818 0.18250974 0.98320342]\n", + " [-0.00112898 0.15437814 0.98801119]\n", + " [-0.00114857 0.12565449 0.9920734 ]\n", + " [-0.00116686 0.09644464 0.99533767]\n", + " [-0.00118378 0.0668576 0.99776183]\n", + " [-0.00119922 0.03700641 0.99931431]\n", + " [-0.00121312 0.00700791 0.99997471]\n", + " [-0.00108623 0.20994474 0.97771265]\n", + " [-0.03008973 0.20980966 0.97727914]\n", + " [-0.05897582 0.20940234 0.97604944]\n", + " [-0.08763213 0.20872399 0.97404051]\n", + " [-0.11594722 0.20777622 0.97128023]\n", + " [-0.14381054 0.20656061 0.96780744]\n", + " [-0.17111212 0.20507835 0.96367189]\n", + " [-0.19774215 0.20333011 0.95893426]\n", + " [-0.00121312 0.00700791 0.99997471]\n", + " [-0.0312253 0.00701559 0.99948775]\n", + " [-0.06111305 0.00701392 0.99810621]\n", + " [-0.09075893 0.00700302 0.99584827]\n", + " [-0.12004913 0.00698305 0.99274339]\n", + " [-0.1488739 0.00695418 0.98883174]\n", + " [-0.17712688 0.00691659 0.98416372]\n", + " [-0.20470344 0.00687038 0.97879993]\n", + " [-0.19774215 0.20333011 0.95893DEBUG:root:radec2pix: curVec: [[-0.23508667 0.83108366 -0.50401806]\n", + " [-0.23584692 0.8166158 -0.52679679]\n", + " [-0.23629166 0.80126138 -0.54967851]\n", + " [-0.23642555 0.78504963 -0.57253824]\n", + " [-0.23625186 0.76801754 -0.5952597 ]\n", + " [-0.23577318 0.75021032 -0.61773415]\n", + " [-0.23499208 0.7316818 -0.63985973]\n", + " [-0.23391176 0.71249449 -0.6615413 ]\n", + " [-0.23508667 0.83108366 -0.50401806]\n", + " [-0.20889196 0.83714353 -0.50552434]\n", + " [-0.18196389 0.84262841 -0.50681999]\n", + " [-0.15441299 0.84748612 -0.50786209]\n", + " [-0.12634854 0.8516719 -0.50861677]\n", + " [-0.09787993 0.85514853 -0.50905845]\n", + " [-0.06911755 0.8578866 -0.50916926]\n", + " [-0.04017308 0.85986491 -0.50893856]\n", + " [-0.23391176 0.71249449 -0.6615413 ]\n", + " [-0.20672076 0.71786304 -0.66478506]\n", + " [-0.1788048 0.72276367 -0.66756387]\n", + " [-0.15026658 0.72714452 -0.6698364 ]\n", + " [-0.12121096 0.73096102 -0.67156824]\n", + " [-0.09174649 0.73417597 -0.67273191]\n", + " [-0.06198576 0.73675986 -0.67330726]\n", + " [-0.03204479 0.73869132 -0.67328172]\n", + " [-0.04017308 0.85986491 -0.50893DEBUG:root:radec2pix: fitpx: [[2135.5 4155.50000025]\n", + " [2135.5 3863.07142842]\n", + " [2135.5 3570.64285705]\n", + " [2135.5 3278.21428595]\n", + " [2135.50000001 2985.78571392]\n", + " [2135.5 2693.35714283]\n", + " [2135.49999998 2400.92857178]\n", + " [2135.49999997 2108.50000011]\n", + " [2135.5 4155.50000025]\n", + " [1843.07142855 4155.50000014]\n", + " [1550.64285713 4155.50000003]\n", + " [1258.21428573 4155.49999997]\n", + " [ 965.78571432 4155.49999994]\n", + " [ 673.35714273 4155.50000018]\n", + " [ 380.92857156 4155.49999985]\n", + " [ 88.49999978 4155.50000022]\n", + " [2135.49999997 2108.50000011]\n", + " [1843.07142854 2108.50000001]\n", + " [1550.64285742 2108.49999997]\n", + " [1258.21428585 2108.49999999]\n", + " [ 965.78571387 2108.50000002]\n", + " [ 673.35714329 2108.49999998]\n", + " [ 380.92857158 2108.5 ]\n", + " [ 88.4999998 2108.50000001]\n", + " [ 88.49999978 4155.50000022]\n", + " [ 88.50000021 3863.07142839]\n", + " [ 88.50000011 3570.64285706]\n", + " [ 88.50000015 3278.21428562]\n", + " [ 88.49999997 2985.7857143 ]\n", + " [ 88.49999979 2693.35714292]\n", + " [ 88.49999995 2400.92857144]\n", + " [ 88.499.18233312 7.90965488]\n", + " [ 8.80633395 7.91263704]\n", + " [ 3.43033477 7.9156192 ]\n", + " [30.30734847 2.52470921]\n", + " [24.9313493 2.52769138]\n", + " [19.55535013 2.53067354]\n", + " [14.17935096 2.53365571]\n", + " [ 8.80335178 2.53663787]\n", + " [ 3.42735261 2.53962004]]\n", + "856]\n", + " [-0.0391683 0.84529867 -0.53285646]\n", + " [-0.0381058 0.82976031 -0.55681755]\n", + " [-0.03698863 0.81327475 -0.58070305]\n", + " [-0.03582006 0.79587592 -0.60439925]\n", + " [-0.03460375 0.77760775 -0.62779676]\n", + " [-0.0333438 0.75852463 -0.65079073]\n", + " [-0.03204479 0.73869132 -0.67328172]\n", + " [-0.23536871 0.82490779 -0.51393454]\n", + " [-0.23608658 0.80657623 -0.54193903]\n", + " [-0.23633552 0.78694115 -0.56997294]\n", + " [-0.23612213 0.76606736 -0.59781865]\n", + " [-0.2354512 0.74403815 -0.62527591]\n", + " [-0.23432774 0.72095623 -0.65215997]\n", + " [-0.22376576 0.83374484 -0.50477561]\n", + " [-0.19115308 0.84079202 -0.50648719]\n", + " [-0.15754889 0.84692289 -0.50783852]\n", + " [-0.12315482 0.85205199 -0.50876349]\n", + " [-0.08817235 0.85611083 -0.50921497]\n", + " [-0.05280523 0.85904864 -0.50916308]\n", + " [-0.2221563 0.71495602 -0.66293624]\n", + " [-0.1883306 0.72122865 -0.66660394]\n", + " [-0.15351789 0.72674597 -0.66953159]\n", + " [-0.1179102 0.73142293 -0.67165294]\n", + " [-0.08170742 0.73519108 -0.67291751]\n", + " [-0.04511827 0.73799944 -0.6732913 ]\n", + " [-0.03984183 0.8536293 -0.51935504]\n", + " [-0.03857216 0.8351204 -0.54871314]\n", + " [-0.03721861 0.8151752 -0.57801745]\n", + " [-0.0357871 0.79385234 -0.60705663]\n", + " [-0.03428439 0.77123276 -0.63562931]\n", + " [-0.03271819 0.74742091 -0.66354466]\n", + " [-0.23500161 0.83105736 -0.50410109]\n", + " [-0.23500161 0.83105736 -0.50410109]\n", + " [-0.03215185 0.73875486 -0.67320689]\n", + " [-0.03215185 0.73875486 -0.67320689]\n", + " [-0.22408301 0.82758904 -0.51466803]\n", + " [-0.19133072 0.83462187 -0.51652579]\n", + " [-0.1575881 0.84074312 -0.51799324]\n", + " [-0.12305556 0.84586703 -0.51900511]\n", + " [-0.08793402 0.84992467 -0.51951483]\n", + " [-0.0524274 0.85286493 -0.51949281]\n", + " [-0.22467707 0.80923092 -0.54283104]\n", + " [-0.19157754 0.81620034 -0.54508262]\n", + " [-0.1574894 0.82227535 -0.5468641 ]\n", + " [-0.12260998 0.82736936 -0.54811198]\n", + "DEBUG:root:radec2pix: curVec: [[-1.42036787e-01 2.51360533e-01 -9.57414975e-01]\n", + " [-1.61083766e-01 2.30942353e-01 -9.59540333e-01]\n", + " [-1.80381341e-01 2.09930799e-01 -9.60932688e-01]\n", + " [-1.99845405e-01 1.88399464e-01 -9.61544308e-01]\n", + " [-2.19393228e-01 1.66424669e-01 -9.61337319e-01]\n", + " [-2.38942696e-01 1.44086447e-01 -9.60284064e-01]\n", + " [-2.58412337e-01 1.21468715e-01 -9.58367578e-01]\n", + " [-2.77721890e-01 9.86588053e-02 -9.55582017e-01]\n", + " [-1.42036787e-01 2.51360533e-01 -9.57414975e-01]\n", + " [-1.21211078e-01 2.32618070e-01 -9.64985341e-01]\n", + " [-1.00418682e-01 2.13669317e-01 -9.71731193e-01]\n", + " [-7.97442549e-02 1.94589045e-01 -9.77637948e-01]\n", + " [-5.92745462e-02 1.75452760e-01 -9.82701815e-01]\n", + " [-3.90988474e-02 1.56336329e-01 -9.86929700e-01]\n", + " [-1.93099690e-02 1.37315892e-01 -9.90339069e-01]\n", + " [-5.63390523e-06 1.18468187e-01 -9.92957848e-01]\n", + " [-2.77721890e-01 9.86588053e-02 -9.55582017e-01]\n", + " [-2.56070805e-01 7.93824065e-02 -9.63393054e-01]\n", + " [-2.34261718e-01 6.00952818e-02 -9.70314384e-01]\n", + " [-2.12383884e-01 4.08744416e-02 -9.76331074e-01]\n", + " [-1.90527634e-01 2.17961360e-02 -9.81439835e-01]\n", + " [-1.68783685e-01 2.93529581e-03 -9.85648747e-01]\n", + " [-1.47243041e-01 -1.56345123e-02 -9.88976769e-01]\n", + " [-1.25997735e-01 -3.38404276e-02 -9.91453174e-01]\n", + " [-5.63390523e-06 1.18468187e-01 -9.92957848e-01]\n", + " [-1.70502820e-02 9.75606171e-02 -9.95083521e-01]\n", + " [-3.45549288e-02 7.62362519e-02 -9.96490838e-01]\n", + " [-5.24300986e-02 5.45735406e-02 -9.97132295e-01]\n", + " [-7.05914034e-02 3.26521560e-02 -9.96970757e-01]\n", + " [-8.89581378e-02 1.05535428e-02 -9.95979454e-01]\n", + " [-1.07452236e-01 -1.16389680e-02 -9.94142118e-01]\n", + " [-1.25997735e-01 -3.38404276e-02 -9.91453174e-01]\n", + " [-1.50233579e-01 2.42471830e-01 -9.58455676e-01]\n", + " [-1.73756114e-01 2.17038431e-01 -9.60574376e-01]\n", + " [-1.97571400e-01 1.90786781e-01 -9.61543523e-01]\n", + " [-2.21526634e-01 1.63856177e-01 -9.61289292e-01]\n", + " [-2.45470659e-01 1.36393977e-01 -9.59760824e-01]\n", + " [-2.69253952e-01 1.08556131e-01 -9.56931490e-01]\n", + " [-1.33022249e-01 2.43149878e-0426]\n", + " [-0.19951656 0.17679323 0.96381393]\n", + " [-0.20103291 0.14956333 0.96809947]\n", + " [-0.2022905 0.12175011 0.97172808]\n", + " [-0.20328809 0.09346339 0.97464791]\n", + " [-0.20402394 0.06481351 0.97681802]\n", + " [-0.20449622 0.03591173 0.97820838]\n", + " [-0.20470344 0.00687038 0.97879993]\n", + " [-0.00119558 0.19807534 0.98018607]\n", + " [-0.00122271 0.16396932 0.98646468]\n", + " [-0.00124786 0.12892083 0.9916541 ]\n", + " [-0.00127089 0.09312409 0.9956537 ]\n", + " [-0.00129164 0.05677987 0.99838589]\n", + " [-0.00130994 0.02009792 0.99979716]\n", + " [-0.01373956 0.20982687 0.97764201]\n", + " [-0.04922259 0.20947825 0.9765736 ]\n", + " [-0.08441749 0.20872203 0.97432479]\n", + " [-0.11911871 0.20756102 0.97094241]\n", + " [-0.1531227 0.20599809 0.96649792]\n", + " [-0.18622706 0.20403521 0.96108746]\n", + " [-0.01430615 0.00711509 0.99987235]\n", + " [-0.05102028 0.00711803 0.99867225]\n", + " [-0.08743049 0.00710683 0.99614527]\n", + " [-0.12332566 0.00708177 0.99234098]\n", + " [-0.15850368 0.0070432 0.98733327]\n", + " [-0.19276957 0.00699139 0.98121915]\n", + " [-0.19845732 0.191DEBUG:root:radec2pix: lng: [44.21386846 39.93704685 35.05017674 29.50039724 23.26936887 16.39762201\n", + " 9.00597869 1.30015678 44.21386846 48.38707907 53.17846261 58.652901\n", + " 64.84492629 71.73221904 79.20889503 87.07353952 1.30015678 1.50828626\n", + " 1.79395925 2.21040578 2.87397756 4.09690845 7.09544794 25.08421915\n", + " 87.07353952 86.60429547 85.95429853 84.99452258 83.43549808 80.46877478\n", + " 72.72327889 25.08421915 42.4332296 36.78871515 30.1721461 22.534249\n", + " 13.95213213 4.68455031 45.9485209 51.4701262 57.98745342 65.57788622\n", + " 74.19728483 83.61034654 1.41178444 1.72041252 2.19784005 3.03449456\n", + " 4.87874528 12.23608945 86.85702241 86.16514834 85.07964235 83.13325955\n", + " 78.65106614 58.79906907 44.21351009 44.21351009 25.31647093 25.31647093\n", + " 44.16528338 49.72110165 56.36353517 64.20866184 73.23888739 83.20517984\n", + " 38.4669715 43.98823734 50.87875671 59.43072848 69.79141059 81.71788613\n", + " 31.70295803 36.8883708 43.71214181 52.77876171 64.67058062 79.40261268\n", + " 23.79006954 28.17687017 34.85821 0.96114781]\n", + " [-0.20045757 0.1588536 0.96673797]\n", + " [-0.20206974 0.12491703 0.971372 ]\n", + " [-0.20329178 0.09025061 0.97494989]\n", + " [-0.20412054 0.0550575 0.97739627]\n", + " [-0.20455274 0.01954302 0.97866043]\n", + " [-0.00118556 0.20985223 0.97773239]\n", + " [-0.00118556 0.20985223 0.97773239]\n", + " [-0.20461015 0.00696998 0.97881873]\n", + " [-0.20461015 0.00696998 0.97881873]\n", + " [-0.01379915 0.19805172 0.98009443]\n", + " [-0.04942232 0.19772367 0.97901113]\n", + " [-0.08475642 0.19701128 0.97673072]\n", + " [-0.11959564 0.19591776 0.97330012]\n", + " [-0.15373662 0.19444643 0.96879081]\n", + " [-0.18697743 0.19259955 0.96329894]\n", + " [-0.01395111 0.16395068 0.98636988]\n", + " [-0.04992687 0.1636812 0.98524909]\n", + " [-0.08561039 0.16309354 0.98288929]\n", + " [-0.12079486 0.16219177 0.97933775]\n", + " [-0.15527748 0.16098028 0.97466623]\n", + " [-0.18885795 0.15946229 0.96897082]\n", + " [-0.0140777 0.12890725 0.99155673]\n", + " [-0.05033965 0.1286975 0.99040541]\n", + " [-0.08630574 0.12823673 0.9879811 ]\n", + " [-0.12176792 0.12752928 0.98433168]\n", + " [-0.1DEBUG:root:radec2pix: xyfp: [[-32.203794 -31.5506227 ]\n", + " [-32.20328688 -27.16419416]\n", + " [-32.20277976 -22.77776561]\n", + " [-32.20227264 -18.39133707]\n", + " [-32.20176553 -14.00490853]\n", + " [-32.20125841 -9.61847999]\n", + " [-32.20075129 -5.23205144]\n", + " [-32.20024417 -0.8456229 ]\n", + " [-32.203794 -31.5506227 ]\n", + " [-27.81736545 -31.55112981]\n", + " [-23.43093691 -31.55163693]\n", + " [-19.04450837 -31.55214405]\n", + " [-14.65807983 -31.55265117]\n", + " [-10.27165129 -31.55315829]\n", + " [ -5.88522274 -31.5536654 ]\n", + " [ -1.4987942 -31.55417252]\n", + " [-32.20024417 -0.8456229 ]\n", + " [-27.81381563 -0.84613002]\n", + " [-23.42738708 -0.84663714]\n", + " [-19.04095854 -0.84714426]\n", + " [-14.65453 -0.84765137]\n", + " [-10.26810146 -0.84815849]\n", + " [ -5.88167292 -0.84866561]\n", + " [ -1.49524438 -0.84917273]\n", + " [ -1.4987942 -31.55417252]\n", + " [ -1.49828708 -27.16774398]\n", + " [ -1.49777997 -22.78131544]\n", + " [ -1.49727285 -18.39488689]\n", + " [ -1.49676573 -14.00845835]\n", + " [ -1.49625861 -9.62202981]\n", + " [ -1.49575149 -5.23560127]\n", + " [ -1.49524438 -0.84917273]\n", + " [-32.18857289 -29.63812445]\n", + " [-32.18795136 DEBUG:root:optics_fp: xyfp shape: (96, 2)\n", + "5652378 0.12657997 0.97952939]\n", + " [-0.19037482 0.12539259 0.97367044]\n", + " [-0.01417814 0.09311572 0.99555434]\n", + " [-0.05065827 0.09296747 0.9943796 ]\n", + " [-0.08683905 0.092637 0.99190593]\n", + " [-0.12251113 0.09212815 0.98818188]\n", + " [-0.15747231 0.0914453 0.98328034]\n", + " [-0.19152571 0.09059206 0.97729779]\n", + " [-0.0142515 0.05677687 0.99828517]\n", + " [-0.05087978 0.05669199 0.99709441]\n", + " [-0.08720594 0.05649545 0.99458704]\n", + " [-0.12301955 0.05618991 0.99081223]\n", + " [-0.15811848 0.05577844 0.98584345]\n", + " [-0.19230704 0.0552636 0.97977749]\n", + " [-0.01429691 0.02010041 0.99969574]\n", + " [-0.0510015 0.0200803 0.99849668]\n", + " [-0.08740238 0.02002048 0.99597189]\n", + " [-0.12328852 0.0199219 0.99217088]\n", + " [-0.15845779 0.01978566 0.98716749]\n", + " [-0.19271515 0.01961272 0.98105872]]\n", + " [-0.08713916 0.83141248 -0.54878052]\n", + " [-0.05128162 0.83435271 -0.54884038]\n", + " [-0.22482719 0.78955561 -0.57101197]\n", + " [-0.19144975 0.79642654 -0.57363033]\n", + " [-0.15708377 0.80242571 -DEBUG:root:radec2pix: lat: [73.24603516 74.22569152 75.13651604 75.95087507 76.6389128 77.17037377\n", + " 77.51785702 77.66114392 73.24603516 74.25573072 75.20211387 76.05743745\n", + " 76.79113897 77.37139648 77.76826885 77.95827247 77.66114392 79.25921808\n", + " 80.88995617 82.54802878 84.22809839 85.92431704 87.62836983 89.29981459\n", + " 77.95827247 79.56096311 81.19447792 82.85294756 84.52972557 86.21521853\n", + " 87.88507254 89.29981459 73.68365855 74.84176377 75.86929863 76.71215801\n", + " 77.3149747 77.63003049 73.695993 74.89461964 75.97090871 76.86971486\n", + " 77.53277126 77.90734766 78.35340648 80.33462383 82.35957542 84.41843101\n", + " 86.50018709 88.58327287 78.6525924 80.63823128 82.66432935 84.71895211\n", + " 86.78327785 88.77209382 73.25300675 73.25300675 89.29197852 89.29197852\n", + " 74.14551493 75.39944683 76.53201019 77.48405712 78.19096994 78.59236983\n", + " 75.35843946 76.77706596 78.08438262 79.20977154 80.06643025 80.56299799\n", + " 76.44078432 78.03102057 79.5341606 80.87167145 81.93009942 82.56616105\n", + " 77.33417557 79.08997119-24.26212448]\n", + " [-32.18732984 -18.88612452]\n", + " [-32.18670832 -13.51012455]\n", + " [-32.1860868 -8.13412459]\n", + " [-32.18546528 -2.75812462]\n", + " [-30.29129227 -31.5358438 ]\n", + " [-24.91529231 -31.53646533]\n", + " [-19.53929235 -31.53708685]\n", + " [-14.16329238 -31.53770837]\n", + " [ -8.78729242 -31.53832989]\n", + " [ -3.41129245 -31.53895142]\n", + " [-30.28774592 -0.86084401]\n", + " [-24.91174595 -0.86146553]\n", + " [-19.53574599 -0.86208705]\n", + " [-14.15974603 -0.86270858]\n", + " [ -8.78374606 -0.8633301 ]\n", + " [ -3.4077461 -0.86395162]\n", + " [ -1.5135731 -29.6416708 ]\n", + " [ -1.51295157 -24.26567084]\n", + " [ -1.51233005 -18.88967087]\n", + " [ -1.51170853 -13.51367091]\n", + " [ -1.51108701 -8.13767095]\n", + " [ -1.51046548 -2.76167097]\n", + " [-32.18879227 -31.53562444]\n", + " [-32.18879227 -31.53562444]\n", + " [ -1.51024611 -0.86417099]\n", + " [ -1.51024611 -0.86417099]\n", + " [-30.29107291 -29.63834382]\n", + " [-24.91507294 -29.63896534]\n", + " [-19.53907298 -29.63958686]\n", + " [-14.16307301 -29.64020839]\n", + " [ -8.78707305 -29.64082991]\n", + " [ -3.41107308 -29.64145143]\n", + " [-30.29045138 -24.26234385]\n", + " [-24.91445142 -24.26296538]\n", + "3103939 43.22163096 56.45806862 75.32225144\n", + " 14.78760738 17.78662299 22.23218915 29.3788791 42.10872179 66.39896872\n", + " 4.97718101 6.0450351 7.68908472 10.5407344 16.64345121 37.15297361]\n", + "9998 2108.50000001]\n", + " [2134.5 4027.99999985]\n", + " [2134.5 3669.59999985]\n", + " [2134.49999999 3311.20000044]\n", + " [2134.5 2952.7999998 ]\n", + " [2134.5 2594.40000013]\n", + " [2134.50000001 2235.99999985]\n", + " [2007.99999998 4154.50000028]\n", + " [1649.59999995 4154.50000021]\n", + " [1291.20000012 4154.49999971]\n", + " [ 932.8 4154.5 ]\n", + " [ 574.40000006 4154.49999992]\n", + " [ 215.99999986 4154.50000015]\n", + " [2007.99999994 2109.50000002]\n", + " [1649.60000009 2109.49999999]\n", + " [1291.20000007 2109.5 ]\n", + " [ 932.80000034 2109.49999998]\n", + " [ 574.40000029 2109.49999999]\n", + " [ 216.00000015 2109.5 ]\n", + " [ 89.50000013 4027.99999988]\n", + " [ 89.50000024 3669.59999981]\n", + " [ 89.50000003 3311.19999998]\n", + " [ 89.49999973 2952.80000012]\n", + " [ 89.49999991 2594.40000002]\n", + " [ 89.50000029 2235.99999997]\n", + " [2134.5 4154.50000026]\n", + " [2134.5 DEBUG:root:radec2pix: fitpx: [[-5.00000272e-01 -5.00000268e-01]\n", + " [-4.99999785e-01 2.91928572e+02]\n", + " [-4.99999908e-01 5.84357143e+02]\n", + " [-4.99999976e-01 8.76785714e+02]\n", + " [-4.99999814e-01 1.16921429e+03]\n", + " [-4.99999859e-01 1.46164286e+03]\n", + " [-4.99999732e-01 1.75407143e+03]\n", + " [-4.99999866e-01 2.04650000e+03]\n", + " [-5.00000272e-01 -5.00000268e-01]\n", + " [ 2.91928572e+02 -4.99999720e-01]\n", + " [ 5.84357143e+02 -5.00000140e-01]\n", + " [ 8.76785714e+02 -4.99999791e-01]\n", + " [ 1.16921429e+03 -4.99999975e-01]\n", + " [ 1.46164286e+03 -4.99999912e-01]\n", + " [ 1.75407143e+03 -4.99999978e-01]\n", + " [ 2.04650000e+03 -4.99999991e-01]\n", + " [-4.99999866e-01 2.04650000e+03]\n", + " [ 2.91928571e+02 2.04650000e+03]\n", + " [ 5.84357143e+02 2.04650000e+03]\n", + " [ 8.76785715e+02 2.04650000e+03]\n", + " [ 1.16921429e+03 2.04650000e+03]\n", + " [ 1.46164286e+03 2.04650000e+03]\n", + " [ 1.75407143e+03 2.04650000e+03]\n", + " [ 2.04650000e+03 2.04650000e+03]\n", + " [ 2.04650000e+03 -4.99999991e-01]\n", + " [ 2.04650000e+03 2.91928572e+02]\n", + " [ 2.04650000e+03 5.84357143e+02]\n", + " [ 2.04650000e+03 8.76785 80.79891427 82.38701631 83.72204901 84.58091077\n", + " 77.9769458 79.86951112 81.76439499 83.61332437 85.3080928 86.55866797\n", + " 78.31436404 80.28605679 82.29662619 84.33088528 86.36037199 88.26434016]\n", + " 4154.50000026]\n", + " [ 89.50000019 2109.49999999]\n", + " [ 89.50000019 2109.49999999]\n", + " [2008. 4027.99999998]\n", + " [1649.6 4027.99999999]\n", + " [1291.19999989 4028.00000025]\n", + " [ 932.79999995 4028.00000008]\n", + " [ 574.3999998 4028.00000025]\n", + " [ 215.99999992 4028.00000008]\n", + " [2008.00000001 3669.59999984]\n", + " [1649.60000007 3669.59999979]\n", + " [1291.19999996 3669.60000008]\n", + " [ 932.80000004 3669.59999994]\n", + " [ 574.39999995 3669.60000006]\n", + " [ 216.00000005 3669.59999995]\n", + " [2007.99999998 3311.2000002 ]\n", + " [1649.59999994 3311.20000015]\n", + " [1291.20000016 3311.19999976]\n", + " [ 932.80000015 3311.19999985]\n", + " [ 574.40000019 3311.19999985]\n", + " [ 216.00000023 3311.19999985]\n", + " [2007.99999995 2952.80000031]\n", + " [1649.60000003 2952.79999994]\n", + " [1291.19999981 2952.80000019]\n", + " [ 932.79999986 2952.8000001 ]\n", + " [ 574.39999987 2952.80000007]\n", + " [ 216.000 [-19.53845145 -24.2635869 ]\n", + " [-14.16245149 -24.26420842]\n", + " [ -8.78645152 -24.26482994]\n", + " [ -3.41045156 -24.26545147]\n", + " [-30.28982986 -18.88634389]\n", + " [-24.91382989 -18.88696541]\n", + " [-19.53782993 -18.88758693]\n", + " [-14.16182997 -18.88820846]\n", + " [ -8.78583 -18.88882997]\n", + " [ -3.40983004 -18.8894515 ]\n", + " [-30.28920834 -13.51034392]\n", + " [-24.91320837 -13.51096545]\n", + " [-19.53720841 -13.51158697]\n", + " [-14.16120844 -13.51220849]\n", + " [ -8.78520848 -13.51283002]\n", + " [ -3.40920852 -13.51345154]\n", + " [-30.28858681 -8.13434396]\n", + " [-24.91258685 -8.13496548]\n", + " [-19.53658688 -8.135587 ]\n", + " [-14.16058692 -8.13620852]\n", + " [ -8.78458696 -8.13683005]\n", + " [ -3.40858699 -8.13745157]\n", + " [-30.28796529 -2.75834399]\n", + " [-24.91196532 -2.75896552]\n", + " [-19.53596536 -2.75958704]\n", + " [-14.1599654 -2.76020856]\n", + " [ -8.78396543 -2.76083009]\n", + " [ -3.40796547 -2.76145161]]\n", + "DEBUG:root:radec2pix: xyfp: [[ -0.230877 31.363511 ]\n", + " [ -0.230877 26.97708243]\n", + " [ -0.230877 22.59065386]\n", + " [ -0.230877 18.20422528]\n", + " [ -0.230877 13.81779671]\n", + " [ -0.230877 DEBUG:root:radec2pix: lng: [ 90.2964384 90.3478894 90.41900227 90.52370941 90.69317626\n", + " 91.01436915 91.85606354 99.82098825 90.2964384 98.16139155\n", + " 105.72927905 112.77495178 119.16321868 124.84620437 129.84075369\n", + " 134.20177453 99.82098825 167.3372664 173.45282833 175.5877589\n", + " 176.67095531 177.32554882 177.76380439 178.07772632 134.20177453\n", + " 138.45558903 143.3516981 148.95804019 155.308999 162.37619731\n", + " 170.03980495 178.07772632 90.34583364 90.4272438 90.55456533\n", + " 90.78188435 91.3031483 93.7291305 93.74640471 103.2233069\n", + " 112.02083939 119.85139884 126.62419493 132.38733532 153.55676438\n", + " 172.05771641 175.35290167 176.71349424 177.45570466 177.92289984\n", + " 135.96861356 141.60475991 148.27615291 156.06135558 164.90482616\n", + " 174.54251233 90.32368928 90.32368928 178.04899302 178.04899302\n", + " 93.98561362 104.03389942 113.27790792 121.40147615 128.33121468\n", + " 134.15142333 94.8637718 106.96302166 117.69569442 126.6774761\n", + " 133.96694623 139.82391059 96.23245551 111.36280739 123.94129691\n", + " 133.676108 141.03771084 146.62863656 98.65756574 118.5861081\n", + " 133.14971036 143.05690148 149.85595749 154.68575435 104.09063117\n", + " 131.90726386 147.0632386 155.45116677 160.56901612 163.96684771\n", + " 125.42327674 158.50946167 167.09834094 170.82105172 172.88266004\n", + " 174.18898669]\n", + " 9.43136815]\n", + " [ -0.230877 5.04493957]\n", + " [ -0.230877 0.658511 ]\n", + " [ -0.230877 31.363511 ]\n", + " [ -4.61730557 31.363511 ]\n", + " [ -9.00373414 31.363511 ]\n", + " [-13.39016272 31.363511 ]\n", + " [-17.77659129 31.363511 ]\n", + " [-22.16301986 31.363511 ]\n", + " [-26.54944843 31.363511 ]\n", + " [-30.935877 31.363511 ]\n", + " [ -0.230877 0.658511 ]\n", + " [ -4.61730558 0.658511 ]\n", + " [ -9.00373414 0.658511 ]\n", + " [-13.39016271 0.658511 ]\n", + " [-17.77659128 0.658511 ]\n", + " [-22.16301986 0.658511 ]\n", + " [-26.54944843 0.658511 ]\n", + " [-30.935877 0.658511 ]\n", + " [-30.935877 31.363511 ]\n", + " [-30.935877 26.97708243]\n", + " [-30.935877 22.59065386]\n", + " [-30.935877 18.20422528]\n", + " [-30.935877 13.81779671]\n", + " [-30.935877 9.43136811 -9.60824239e-01]\n", + " [-1.07509196e-01 2.20030413e-01 -9.69550612e-01]\n", + " [-8.21299481e-02 1.96675415e-01 -9.77022749e-01]\n", + " [-5.70433372e-02 1.73223613e-01 -9.83229189e-01]\n", + " [-3.24138531e-02 1.49814663e-01 -9.88182629e-01]\n", + " [-8.41431516e-03 1.26588956e-01 -9.91919571e-01]\n", + " [-2.68241357e-01 9.03387051e-02 -9.59106612e-01]\n", + " [-2.41588538e-01 6.66965217e-02 -9.68083959e-01]\n", + " [-2.14787051e-01 4.31146422e-02 -9.75708794e-01]\n", + " [-1.88002790e-01 1.97337988e-02 -9.81970228e-01]\n", + " [-1.61402742e-01 -3.30806670e-03 -9.86883079e-01]\n", + " [-1.35154796e-01 -2.58758713e-02 -9.90486557e-01]\n", + " [-7.44029860e-03 1.09472699e-01 -9.93961956e-01]\n", + " [-2.86528151e-02 8.35580624e-02 -9.96090893e-01]\n", + " [-5.04665737e-02 5.70950981e-02 -9.97092410e-01]\n", + " [-7.27241858e-02 3.02299299e-02 -9.96893848e-01]\n", + " [-9.52769601e-02 3.11250806e-03 -9.95445937e-01]\n", + " [-1.17982060e-01 -2.41030593e-02 -9.92723162e-01]\n", + " [-1.42030215e-01 2.51228145e-01 -9.57450697e-01]\n", + " [-1.42030215e-01 2.51228145e-01 -9.57450697e-01]\n", + " [-1.26006352e-01 -3.37030318e-02 -9.91456759e-01]\n", + " [-1.26006352e-01 -3.37030318e-02 -9.91456759e-01]\n", + " [-1.41188641e-01 2.34363153e-01 -9.61841817e-01]\n", + " [-1.15557939e-01 2.11168560e-01 -9.70594767e-01]\n", + " [-9.00422434e-02 1.87755203e-01 -9.78079945e-01]\n", + " [-6.48003504e-02 1.64262310e-01 -9.84285938e-01]\n", + " [-3.99960790e-02 1.40829817e-01 -9.89225594e-01]\n", + " [-1.58008835e-02 1.17598089e-01 -9.92935558e-01]\n", + " [-1.64617733e-01 2.08853705e-01 -9.63992288e-01]\n", + " [-1.38686556e-01 1.85475633e-01 -9.72812844e-01]\n", + " [-1.12818693e-01 1.61927359e-01 -9.80332328e-01]\n", + " [-8.71735029e-02 1.38349396e-01 -9.86539520e-01]\n", + " [-6.19137427e-02 1.14882286e-01 -9.91447804e-01]\n", + " [-3.72077642e-02 9.16661422e-02 -9.95094418e-01]\n", + " [-1.88356540e-01 1.82541249e-01 -9.64987309e-01]\n", + " [-1.62173761e-01 1.59024240e-01 -9.73863934e-01]\n", + " [-1.36004119e-01 1.35387402e-01 -9.81413843e-01]\n", + " [-1.10008279e-01 1.11772177e-01 -9.87626022e-01]\n", + " [-8.43490747e-02 8.83193023e-02 -9.92514450e-01]\n", + " [-5.91930877e-02 6.51682758e-02 -9.961170715e+02]\n", + " [ 2.04650000e+03 1.16921429e+03]\n", + " [ 2.04650000e+03 1.46164286e+03]\n", + " [ 2.04650000e+03 1.75407143e+03]\n", + " [ 2.04650000e+03 2.04650000e+03]\n", + " [ 5.00000192e-01 1.27000000e+02]\n", + " [ 4.99999990e-01 4.85400000e+02]\n", + " [ 4.99999881e-01 8.43800000e+02]\n", + " [ 5.00000044e-01 1.20220000e+03]\n", + " [ 4.99999938e-01 1.56060000e+03]\n", + " [ 5.00000069e-01 1.91900000e+03]\n", + " [ 1.27000000e+02 5.00000092e-01]\n", + " [ 4.85400000e+02 4.99999764e-01]\n", + " [ 8.43800000e+02 4.99999911e-01]\n", + " [ 1.20220000e+03 5.00000156e-01]\n", + " [ 1.56060000e+03 4.99999840e-01]\n", + " [ 1.91900000e+03 4.99999915e-01]\n", + " [ 1.27000000e+02 2.04550000e+03]\n", + " [ 4.85400000e+02 2.04550000e+03]\n", + " [ 8.43800000e+02 2.04550000e+03]\n", + " [ 1.20220000e+03 2.04550000e+03]\n", + " [ 1.56060000e+03 2.04550000e+03]\n", + " [ 1.91900000e+03 2.04550000e+03]\n", + " [ 2.04550000e+03 1.27000000e+02]\n", + " [ 2.04550000e+03 4.85400000e+02]\n", + " [ 2.04550000e+03 8.43800000e+02]\n", + " [ 2.04550000e+03 1.20220000e+03]\n", + " [ 2.04550000e+03 1.56060000e+03]\n", + " [ 2.04550000e+03 1.91900000e+03]\n", + " [ 4.99999957e-01 4.99999958e-01]\n", + " [ 4.99999957e-01 4.99999958e-01]\n", + " [ 2.04550000e+03 2.04550000e+03]\n", + " [ 2.04550000e+03 2.04550000e+03]\n", + " [ 1.27000000e+02 1.27000000e+02]\n", + " [ 4.85400000e+02 1.27000000e+02]\n", + " [ 8.43800000e+02 1.27000000e+02]\n", + " [ 1.20220000e+03 1.27000000e+02]\n", + " [ 1.56060000e+03 1.27000000e+02]\n", + " [ 1.91900000e+03 1.27000000e+02]\n", + " [ 1.27000000e+02 4.85400000e+02]\n", + " [ 4.85400000e+02 4.85400000e+02]\n", + " [ 8.43800000e+02 4.85400000e+02]\n", + " [ 1.20220000e+03 4.85400000e+02]\n", + " [ 1.56060000e+03 4.85400000e+02]\n", + " [ 1.91900000e+03 4.85400000e+02]\n", + " [ 1.27000000e+02 8.43800000e+02]\n", + " [ 4.85400000e+02 8.43800000e+02]\n", + " [ 8.43800000e+02 8.43800000e+02]\n", + " [ 1.20220000e+03 8.43800000e+02]\n", + " [ 1.56060000e+03 8.43800000e+02]\n", + " [ 1.91900000e+03 8.43800000e+02]\n", + " [ 1.27000000e+02 1.20220000e+03]\n", + " [ 4.85400000e+02 1.20220000e+03]\n", + " [ 8.43800000e+02 1.20220000e+03]\n", + " [ 1.20220000e+03 1.20220000e+03]\n", + " [ 1.56060000e+03 1.20220000e+03]\n", + " [ 1.91900000e+03 1.20220000e+03]\n", + " [ 1.27000000e+02 1.56060000e+4]\n", + " [-30.935877 5.04493957]\n", + " [-30.935877 0.658511 ]\n", + " [ -0.245877 29.451011 ]\n", + " [ -0.245877 24.075011 ]\n", + " [ -0.245877 18.699011 ]\n", + " [ -0.245877 13.323011 ]\n", + " [ -0.245877 7.947011 ]\n", + " [ -0.245877 2.571011 ]\n", + " [ -2.143377 31.348511 ]\n", + " [ -7.519377 31.348511 ]\n", + " [-12.895377 31.348511 ]\n", + " [-18.271377 31.348511 ]\n", + " [-23.647377 31.348511 ]\n", + " [-29.023377 31.348511 ]\n", + " [ -2.143377 0.673511 ]\n", + " [ -7.519377 0.673511 ]\n", + " [-12.895377 0.673511 ]\n", + " [-18.271377 0.673511 ]\n", + " [-23.64737701 0.673511 ]\n", + " [-29.023377 0.673511 ]\n", + " [-30.920877 29.451011 ]\n", + " [-30.920877 24.075011 ]\n", + " [-30.920877 18.699011 ]\n", + " [-30.920877 13.323011 ]\n", + " [-30.920877 7.947011 ]\n", + " [-30.920877 2.571011 ]\n", + " [ -0.245877 31.348511 ]\n", + " [ -0.245877 31.348511 ]\n", + " [-30.920877 0.673511 ]\n", + " [-30.920877 0.673511 ]\n", + " [ -2.143377 29.451011 ]\n", + " [ -7.519377 29.451011 ]\n", + " [-12.895377 29.451011 ]\n", + " [-18.271377 29.451011 ]\n", + " [-23.647377 29.451011 ]\n", + " [-29.023377 29.451011 ]\n", + " [ -2.143377 24.075011 ]\n", + " [ -7.519377 24.075011 ]\n", + " [-12.895377 24.075011 ]\n", + " [-18.271377 24.075011 ]\n", + " [-23.647377 24.075011 ]\n", + " [-29.023377 24.075011 ]\n", + " [ -2.143377 18.699011 ]\n", + " [ -7.519377 18.699011 ]\n", + " [-12.895377 18.699011 ]\n", + " [-18.271377 18.699011 ]\n", + " [-23.647377 18.699011 ]\n", + " [-29.023377 18.699011 ]\n", + " [ -2.143377 13.323011 ]\n", + " [ -7.519377 13.323011 ]\n", + " [-12.895377 13.323011 ]\n", + " [-18.271377 13.323011 ]\n", + " [-23.647377 13.323011 ]\n", + " [-29.023377 13.323011 ]\n", + " [ -2.143377 7.947011 ]\n", + " [ -7.519377 7.947011 ]\n", + " [-12.895377 7.947011 ]\n", + " [-18.271377 7.947011 ]\n", + " [-23.647377 7.947011 ]\n", + " [-29.023377 7.947011 ]\n", + " [ -2.143377 2.571011 ]\n", + " [ -7.519377 2.571011 ]\n", + " [-12.895377 2.571011 ]\n", + " [-18.271377 2.571011 ]\n", + " [-23.647377 2.571011 ]\n", + " [-29.023377 2.571011 ]]\n", + "00004 2952.79999998]\n", + " [2007.99999998 2594.40000008]\n", + " [1649.60000021 2594.39999977]DEBUG:root:radec2pix: xyfp Shape: (96, 2)\n", + "\n", + " [1291.19999986 2594.40000009]\n", + " [ 932.80000028 2594.39999988]\n", + " [ 574.39999984 2594.40000006]\n", + " [ 216.00000019 2594.39999995]\n", + " [2007.99999983 2236.00000022]\n", + " [1649.60000014 2235.99999995]\n", + " [1291.19999989 2236.00000002]\n", + " [ 932.80000032 2235.99999995]\n", + " [ 574.40000023 2235.99999997]\n", + " [ 216.00000006 2235.99999999]]\n", + "DEBUG:root:radec2pix: xyfp Shape: (96, 2)\n", + "03]\n", + " [ 4.85400000e+02 1.56060000e+03]\n", + " [ 8.43800000e+02 1.56060000e+03]\n", + " [ 1.20220000e+03 1.56060000e+03]\n", + " [ 1.56060000e+03 1.56060000e+03]\n", + " [ 1.91900000e+03 1.56060000e+03]\n", + " [ 1.27000000e+02 1.91900000e+03]\n", + " [ 4.85400000e+02 1.91900000e+03]\n", + " [ 8.43800000e+02 1.91900000e+03]\n", + " [ 1.20220000e+03 1.91900000e+03]\n", + " [ 1.56060000e+03 1.91900000e+03]\n", + " [ 1.91900000e+03 1.91900000e+03]]\n", + "DEBUG:root:radec2pix: lat: [73.24843796 74.22959053 75.14101603 75.95564397 76.6437957 77.17522107\n", + " 77.52247637 77.66531399 73.24843796 74.25938156 75.20604331 76.06127099\n", + " 76.79469021 77.37449152 77.77070397 77.95983585 77.66531399 79.26403549\n", + " 80.8954867 82.55419485 84.2348008 85.93154111 87.63625009 89.30890983\n", + " 77.95983585 79.5631834 81.19741545 82.85654952 84.53396682 86.22024\n", + " 87.89143193 89.30890983 73.68688931 74.8461168 75.87404737 76.71704667\n", + " 77.31977046 77.63442603 73.69912883 74.89851762 75.9747656 76.87322604\n", + " 77.53566935 77.90931811 78.357841 80.33991917 82.36567874 84.42519517\n", + " 86.5076147 88.59172382 78.65442708 80.64093339 82.6678651 84.72327772\n", + " 86.78866387 88.77999774 73.25542451 73.25542451 89.30107513 89.30107513\n", + " 74.14922787 75.40361568 76.5361131 77.48786454 78.19419066 78.59463145\n", + " 75.36296624 76.78183851 78.08930019 79.21461778 80.0707569 80.56622359\n", + " 76.44568445 78.03639269 79.53999931 80.87766645 81.93562678 82.57036945\n", + " 77.33928008 79.09582585 80.80551049 82.39402202 83.72877916 84.58613925\n", + " 77.98201104 79.8754942 81.77128989 83.62092117 85.31596639 86.56531268\n", + " 78.31903282 80.2916347 82.30308639 84.33811541 86.36841377 88.27312586]\n", + "0.57570623]\n", + " [-0.1219DEBUG:root:fitpix2pix: ccdpx: shape: (96, 2)\n", + "DEBUG:root:fitpix2pix: visCut: True\n", + "DEBUG:root:mm_to_pix: fitpx: [[0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]]\n", + "2419 0.80746604 -0.57717DEBUG:root:optics_fp: rtanth: [45.10607628 42.16357777 39.4899731 37.14337318 35.189258 33.69598042\n", + " 32.72668371 32.32853333 45.10607628 42.0744994 39.2994961 36.83909335\n", + " 34.76015989 33.13457624 32.03143895 31.50567459 32.32853333 27.94350461\n", + " 23.55899708 19.17536829 14.79339939 10.41518568 6.04888681 1.78423138\n", + " 31.50567459 27.12594155 22.74878876 18.37606012 14.01189826 9.66791142\n", + " 5.39307341 1.78423138 43.78236587 40.34917919 37.37672691 34.98265169\n", + " 33.29196413 32.41491299 43.7452802 40.19469624 37.08612172 34.53910818\n", + " 32.68520027 31.64644357 30.41697218 25.04308812 19.67036046 14.30009268\n", + " 8.93672046 3.6111005 29.59667216 24.23063563 18.87027174 13.52232821\n", + " 8.21110934 3.12954069 45.08486499 45.08486499 1.80420296 1.80420296\n", + " 42.4016515 38.72807918 35.4912797 32.82073285 30.86377856 29.76151712\n", + " 38.84663114 34.79978185 31.15752935 28.07777067 25.76302637 24.43171303\n", + " 35.74946438 31.30476433 27.19843907 23.60772454 20.80136966 19.12778226\n", + " 33.23838757 28.40342DEBUG:root:make_az_asym: xyp: [[32.2358199 31.31614388]\n", + " [32.23338667 26.92971599]\n", + " [32.23095344 22.54328809]\n", + " [32.2285202 18.15686019]\n", + " [32.22608698 13.7704323 ]\n", + " [32.22365375 9.3840044 ]\n", + " [32.22122051 4.99757651]\n", + " [32.21878728 0.61114861]\n", + " [32.2358199 31.31614388]\n", + " [27.849392 31.31857712]\n", + " [23.46296411 31.32101035]\n", + " [19.07653621 31.32344358]\n", + " [14.69010831 31.3258768 ]\n", + " [10.30368042 31.32831004]\n", + " [ 5.91725252 31.33074327]\n", + " [ 1.53082462 31.3331765 ]\n", + " [32.21878728 0.61114861]\n", + " [27.83235938 0.61358184]\n", + " [23.44593149 0.61601507]\n", + " [19.0595036 0.6184483 ]\n", + " [14.6730757 0.62088153]\n", + " [10.2866478 0.62331476]\n", + " [ 5.90021991 0.625748 ]\n", + " [ 1.513792 0.62818122]\n", + " [ 1.53082462 31.3331765 ]\n", + " [ 1.52839139 26.94674861]\n", + " [ 1.52595816 22.5603207 ]\n", + " [ 1.52352493 18.17389281]\n", + " [ 1.5210917 13.78746492]\n", + " [ 1.51865847 9.40103702]\n", + " [ 1.51622524 5.01460912]\n", + " [ 1.513792 0.62818122]\n", + " [32.219759 29.4036525 ]\n", + " [32.21677684 24.02765333]\n", + " [32.21379467 18.65165415]\n", + " [32.21081251 13.2756549899e-01]\n", + " [-2.12252735e-01 1.55565543e-01 -9.64752890e-01]\n", + " [-1.85868356e-01 1.31955547e-01 -9.73673810e-01]\n", + " [-1.59447843e-01 1.08277923e-01 -9.81250364e-01]\n", + " [-1.33153544e-01 8.46745484e-02 -9.87471698e-01]\n", + " [-1.07149193e-01 6.12858633e-02 -9.92352303e-01]\n", + " [-8.16008478e-02 3.82503561e-02 -9.95930827e-01]\n", + " [-2.36155687e-01 1.28074386e-01 -9.63237999e-01]\n", + " [-2.09621250e-01 1.04418461e-01 -9.72191193e-01]\n", + " [-1.83002169e-01 8.07486410e-02 -9.79790724e-01]\n", + " [-1.56462497e-01 5.72066792e-02 -9.86025802e-01]\n", + " [-1.30167309e-01 3.39322311e-02 -9.90911235e-01]\n", + " [-1.04283076e-01 1.10624485e-02 -9.94486130e-01]\n", + " [-2.59916310e-01 1.00224055e-01 -9.60415874e-01]\n", + " [-2.33284849e-01 7.65698616e-02 -9.69389104e-01]\n", + " [-2.06521199e-01 5.29565201e-02 -9.77007984e-01]\n", + " [-1.79790849e-01 2.95251180e-02 -9.83261673e-01]\n", + " [-1.53260310e-01 6.41410151e-03 -9.88165035e-01]\n", + " [-1.27097044e-01 -1.62409010e-02 -9.91757316e-01]]\n", + "DEBUG:root:radec2pix: lat: [77.88072123 79.48382459 81.11902826 82.781143DEBUG:root:mm_to_pix: fitpx: [[0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]]\n", + "5 84.46512008 86.16588026\n", + " 87.87809063 89.592501 77.88072123 77.76297714 77.43489604 76.91632478\n", + " 76.23DEBUG:root:mm_to_pix: fitpx.shape: (96, 2)\n", + "DEBUG:root:radec2pix: curVec Shape: (96, 3)\n", + "510116 75.42235372 74.50888673 73.52311865 89.592501 88.1660092\n", + " 86.47326812 84.77720909 83.09335022 81.42892112 79.7896882 78.18111406\n", + " 73.52311865 74.53938675 75.48898077 76.34336174 77.07095847 77.63894653\n", + " 78.01676209 78.18111406 78.57535641 80.56236957 82.59241544 84.65614182\n", + " 86.74415968 88.84595283 77.86145981 77.57369823 76.98847403 76.15398719\n", + " 75.12717296 73.96382281 89.0844999 87.04713438 84.96761219 82.90419496\n", + " 80.87086863 78.87814184 73.97634463 75.18085203 76.25721571 77.14851635\n", + " 77.79468183 78.14215534 77.8861108 77.8861108 78.18637455 78.18637455\n", + " 78.54888043 78.24034026 77.6156038 76.73023014 75.64791869 74.42908235\n", + " 80.52930205 80.14668621 79.38566385 78.33252026 77.07564982 75.68958597\n", + " 82.54926459 82.05674096 81.10786838 79.84412063 78.38693881 76.82298725\n", + " 84.59535958 83.92250159 82.7051798 81.18260126 79.50799917 77.76802141\n", + " 86.64409097 85.63122317 84.03581665 82.22723271 80.34771821 78.45776966\n", + " 88.58657998 86.85792078 84.85560606 82.82572865 80.81119712 78.83059106]\n", + "]\n", + " [32.20783035 7.89965581]\n", + " [32.20484818 2.52365664]\n", + " [30.32331188 31.30220479]\n", + " [24.9473127 31.30518695]\n", + " [19.57131353 31.30816912]\n", + " [14.19531435 31.31115127]\n", + " [ 8.81931518 31.31413344]\n", + " [ 3.44331601 31.3171156 ]\n", + " [30.3062959 0.62720951]\n", + " [24.93029672 0.63019167]\n", + " [19.55429755 0.63317383]\n", + " [14.17829838 0.636156 ]\n", + " [ 8.80229921 0.63913816]\n", + " [ 3.42630004 0.64212033]\n", + " [ 1.54476372 29.42066847]\n", + " [ 1.54178156 24.0446693 ]\n", + " [ 1.53879939 18.66867013]\n", + " [ 1.53581723 13.29267096]\n", + " [ 1.53283507 7.91667178]\n", + " [ 1.5298529 2.54067261]\n", + " [32.22081158 31.30115221]\n", + " [32.22081158 31.30115221]\n", + " [ 1.52880032 0.6431729 ]\n", + " [ 1.52880032 0.6431729 ]\n", + " [30.32225929 29.40470508]\n", + " [24.94626012 29.40768724]\n", + " [19.57026095 29.41066941]\n", + " [14.19426178 29.41365157]\n", + " [ 8.8182626 29.41663373]\n", + " [ 3.44226343 29.4196159 ]\n", + " [30.31927713 24.02870591]\n", + " [24.94327796 24.03168807]\n", + " [19.56727878 24.03467023]\n", + " [14682]\n", + " [-0.08617048 0.81147711 -0.57799616]\n", + " [-0.05002846 0.81440639 -0.5781344 ]\n", + " [-0.22453899 0.76862746 -0.59899422]\n", + " [-0.19095086 0.77536337 -0.60195466]\n", + " [-0.15637365 0.78125567 -0.60430692]\n", + " [-0.12100074 0.78621732 -0.60598774]\n", + " [-0.08503156 0.79017786 -0.60695023]\n", + " [-0.04867318 0.79308474 -0.6071635 ]\n", + " [-0.22381656 0.74652952 -0.62657786]\n", + " [-0.1900835 0.7530933 -0.62985613]\n", + " [-0.15536134 0.7588472 -0.63246643]\n", + " [-0.11984251 0.76370472 -0.63434445]\n", + " [-0.08372666 0.76759595 -0.63544182]\n", + " [-0.04722183 0.77046874 -0.63572637]\n", + " [-0.22266442 0.72336463 -0.65357797]\n", + " [-0.18885146 0.72971954 -0.65714878]\n", + " [-0.15405064 0.73530391 -0.65999739]\n", + " [-0.11845403 0.74003226 -0.66205808]\n", + " [-0.08226147 0.74383568 -0.66328089]\n", + " [-0.04568159 0.74666283 -0.66363229]]\n", + "DEBUG:root:fitpix2pix: ccdpx: shape: (96, 2)\n", + "DEBUG:root:mm_to_pix: fitpx.shape: (96, 2)\n", + ".19127961 24.0376524 ]\n", + " [ 8.81528044 24.04063456]\n", + " [ 3.43928127 24.04361672]\n", + " [30.31629496 18.65270673]\n", + " [24.9402958 18.65568DEBUG:root:fitpix2pix: visCut: True\n", + "89 ]\n", + " [19.56429662 18.65867106]\n", + " [14.18829744 18.66165322]\n", + " [ 8.81229827 18.66463538]\n", + " [ 3.4362991 18.66761755]\n", + " [30.31331281 13.27670756]\n", + " [24.93731363 13.27968972]\n", + " [19.56131446 13.28267189]\n", + " [14.18531529 13.28565406]\n", + " [ 8.80931611 13.28863621]\n", + " [ 3.43331694 13.29161838]\n", + " [30.31033064 7.90070839]\n", + " [24.93433147 7.90369055]\n", + " [19.55833229 7.90667271]\n", + " [14.18233312 7.90965488]\n", + " [ 8.80633395 7.91263704]\n", + " [ 3.43033477 7.9156192 ]\n", + " [30.30734847 2.52470921]\n", + " [24.9313493 2.52769138]\n", + " [19.55535013 2.53067354]\n", + " [14.17935096 2.53365571]\n", + " [ 8.80335178 2.53663787]\n", + " [ 3.42735261 2.53962004]]\n", + "363 23.80170775 19.59823621 16.10786095 13.87941853\n", + " 31.45408342 26.29303007 21.23888529 16.39084557 12.00133913 8.78676362\n", + " 30.52427023 25.1733021 19.8358755 14.52692422 9.29536709 4.42480773]\n", + "DEBUG:root:radec2pix: curVec Shape: (96, 3)\n", + "DEBUG:root:make_az_asym: xyp: shape: (96, 2)\n", + "DEBUG:root:optics_fp: rtanth: [45.0829242 42.14007881 39.46623798 37.11957906 35.16566323 33.67292833\n", + " 32.70458448 32.30781794 45.0829242 42.05181002 39.27748601 36.81804721\n", + " 34.74043472 33.1165898 32.01563284 31.49245123 32.30781794 27.92274647\n", + " 23.53818074 19.15446803 14.77236778 10.39391962 6.02708817 1.76054813\n", + " 31.49245123 27.11255561 22.73517913 18.3621235 13.99743906 9.65248838\n", + " 5.37533955 1.76054813 43.75905359 40.32550839 37.35292806 34.95909888\n", + " 33.26918554 32.39354213 43.72230567 40.17242604 37.06494796 34.51955493\n", + " 32.6679006 31.63204924 30.39623387 25.02228675 19.64946278 14.27902981\n", + " 8.91530985 3.58853155 29.58337372 24.21709844 18.85636405 13.50776907\n", + " 8.19511667 3.10850472 45.06171287 45.06171287 1.78051042 1.78051042\n", + " 42.37849474 38.70556314 35.46980647 32.8008609 30.84620775 29.74698879\n", + " 38.82304306 34.77660814 31.13517347 28.05687673 25.74452154 24.41669917\n", + " 35.72566697 31.28109784 27.17523938 23.58565115 20.78160237 19.11203303\n", + " 33.21476541 28.37964838 23.77795187 19.57499171 16.08640287 13.86243725\n", + " 31.43120667 26.26984115 21.21535074 16.36705265 11.9779994 8.76739863\n", + " 30.50284606 25.15168819 19.81398425 14.50459502 9.27228848 4.40115246]\n", + "DEBUG:root:radec2pix: xyfp: [[-32.203794 -31.5506227 ]\n", + " [-32.20328688 -27.16419416]\n", + " [-32.20277976 -22.77776561]\n", + " [-32.20227264 -18.39133707]\n", + " [-32.20176553 -14.00490853]\n", + " [-32.20125841 -9.61847999]\n", + " [-32.20075129 -5.23205144]\n", + " [-32.20024417 -0.8456229 ]\n", + " [-32.203794 -31.5506227 ]\n", + " [-27.81736545 -31.55112981]\n", + " [-23.43093691 -31.55163693]\n", + " [-19.04450837 -31.55214405]\n", + " [-14.65807983 -31.55265117]\n", + " [-10.27165129 -31.55315829]\n", + " [ -5.88522274 -31.5536654 ]\n", + " [ -1.4987942 -31.55417252]\n", + " [-32.20024417 -0.8456229 ]\n", + " [-27.81381563 -0.84613002]\n", + " [-23.42738708 -0.84663714]\n", + " [-19.04095854 -0.84714426]\n", + " [-14.65453 -0.84765137]\n", + " [-10.26810146 -0.84815849]\n", + " [ -5.88167292 -0.84866561]\n", + " [ -1.49524438 -0.84917273]\n", + " [ -1.4987942 -31.55417252]\n", + " [ -1.49828708 -27.16774398]\n", + " [ -1.49777997 -22.78131544]\n", + " [ -1.49727285 -18.39488689]\n", + " [ -1.49676573 -14.00845835]\n", + " [ -1.49625861 -9.62202981]\n", + " [ -1.49575149 -5.23560127]\n", + " [ -1.49524438 -0.84917273]\n", + " [-32.18857289 -29.63812445]\n", + " [-32.18795136 -24.26212448]\n", + " [-32.18732984 -18.88612452]\n", + " [-32.18670832 -13.51012455]\n", + " [-32.1860868 -8.13412459]\n", + " [-32.18546528 -2.75812462]\n", + " [-30.29129227 -31.5358438 ]\n", + " [-24.91529231 -31.53646533]\n", + " [-19.53929235 -31.53708685]\n", + " [-14.16329238 -31.53770837]\n", + " [ -8.78729242 -31.53832989]\n", + " [ -3.41129245 -31.53895142]\n", + " [-30.28774592 -0.86084401]\n", + " [-24.91174595 -0.86146553]\n", + " [-19.53574599 -0.86208705]\n", + " [-14.15974603 -0.86270858]\n", + " [ -8.78374606 -0.8633301 ]\n", + " [ -3.4077461 -0.86395162]\n", + " [ -1.5135731 -29.6416708 ]\n", + " [ -1.51295157 -24.26567084]\n", + " [ -1.51233005 -18.88967087]\n", + " [ -1.51170853 -13.51367091]\n", + " [ -1.51108701 -8.13767095]\n", + " [ -1.51046548 -2.76167097]\n", + " [-32.18879227 -31.53562444]\n", + " [-32.18879227 -31.53562444]\n", + " [ -1.51024611 -0.86417099]\n", + " [ -1.51024611 -0.86417099]\n", + " [-30.29107291 -29.63834382]\n", + " [-24.91507294 -29.63896534]\n", + " [-19.53907298 -29.63958686]\n", + " [-14.16307301 -29.64020839]\n", + " [ -8.78707305 -29.64082991]\n", + " [ -3.41107308 -29.64145143]\n", + " [-30.29045138 -24.26234385]\n", + " [-24.91445142 -24.26296538]\n", + " [-19.53845145 -24.2635869 ]\n", + " [-14.16245149 -24.26420842]\n", + " [ -8.78645152 -24.26482994]\n", + " [ -3.41045156 -24.26545147]\n", + " [-30.28982986 -18.88634389]\n", + " [-24.91382989 -18.88696541]\n", + " [-19.53782993 -18.88758693]\n", + " [-14.16182997 -18.88820846]\n", + " [ -8.78583 -18.88882997]\n", + " [ -3.40983004 -18.8894515 ]\n", + " [-30.28920834 -13.51034392]\n", + " [-24.91320837 -13.51096545]\n", + " [-19.53720841 -13.51158697]\n", + " [-14.16120844 -13.51220849]\n", + " [ -8.78520848 -13.51283002]\n", + " [ -3.40920852 -13.51345154]\n", + " [-30.28858681 -8.13434396]\n", + " [-24.91258685 -8.13496548]\n", + " [-19.53658688 -8.135587 ]\n", + " [-14.16058692 -8.13620852]\n", + " [ -8.78458696 -8.13683005]\n", + " [ -3.40858699 -8.13745157]\n", + " [-30.28796529 -2.75834399]\n", + " [-24.91196532 -2.75896552]\n", + " [-19.53596536 -2.75958704]\n", + " [-14.1599654 -2.76020856]\n", + " [ -8.78396543 -2.76083009]\n", + " [ -3.40796547 -2.76145161]]\n", + "DEBUG:root:radec2pix: camVec: [[-0.00156258 -0.00157957 -0.0015DEBUG:root:optics_fp: cphi: [-0.71639206 -0.76640718 -0.81831665 -0.87003773 -0.918376 -0.95909967\n", + " -0.98753169 -0.99971968 -0.71639206 -0.66375612 -0.59900967 -0.51994628\n", + " -0.42485193 -0.31331297 -0.18716187 -0.0510586 -0.99971968 -0.9996256\n", + " -0.99947438 -0.99920821 -0.99867222 -0.99732533 -0.99206684 -0.90485547\n", + " -0.0510586 -0.05933321 -0.07078632 -0.08767585 -0.11504297 -0.16682032\n", + " -0.29920561 -0.90485547 -0.73771707 -0.80051245 -0.864202 -0.9233738\n", + " -0.97029678 -0.99658165 -0.69495812 -0.62259801 -0.52982456 -0.41324571\n", + " -0.27220694 -0.1112649 -0.9996711 -0.99951604 -0.9992175 -0.99852279\n", + " -0.99622323 -0.97670188 -0.054871 -0.06706472 -0.08616954 -0.12032428\n", + " -0.19827847 -0.52055819 -0.71639646 -0.71639646 -0.90315154 -0.90315154\n", + " -0.71698855 -0.64618487 -0.553643 -0.43489275 -0.28828288 -0.11832391\n", + " -0.78262952 -0.71915739 -0.63068289 -0.50839224 -0.34539889 -0.14417822\n", + " -0.85046147 -0.79948029 -0.72252464 -0.60469794 -0.42783445 -0.18421072\n", + " -0.91474245 -0.88118124 DEBUG:root:radec2pix: xyfp: [[ -0.230877 31.363511 ]\n", + " [ -0.230877 26.97708243]\n", + " [ -0.230877 22.59065386]\n", + " [ -0.230877 18.20422528]\n", + " [ -0.230877 13.81779671]\n", + " [ -0.230877 9.43136815]\n", + " [ -0.230877 5.04493957]\n", + " [ -0.230877 0.658511 ]\n", + " [ -0.230877 31.363511 ]\n", + " [ -4.61730557 31.363511 ]\n", + " [ -9.00373414 31.363511 ]\n", + " [-13.39016272 31.363511 ]\n", + " [-17.77659129 31.363511 ]\n", + " [-22.16301986 31.363511 ]\n", + " [-26.54944843 31.363511 ]\n", + " [-30.935877 31.363511 ]\n", + " [ -0.230877 0.658511 ]\n", + " [ -4.61730558 0.658511 ]\n", + " [ -9.00373414 0.658511 ]\n", + " [-13.39016271 0.658511 ]\n", + " [-17.77659128 0.658511 ]\n", + " [-22.16301986 0.658511 ]\n", + " [-26.54944843 0.658511 ]\n", + " [-30.935877 0.658511 ]\n", + " [-30.935877 31.363511 ]\n", + " [-30.935877 26.97708243]\n", + " [-30.935877 22.59065386]\n", + " [-30.935877 18.20422528]\n", + " [-30.935877 13.81779671]\n", + " [-30.935877 9.43136814]\n", + " [-30.935877 5.04493957]\n", + " [-30.935877 0.658511 ]\n", + " [ -0.245877 29.451011 ]\n", + " [ -0.245877 DEBUG:root:radec2pix: camVec: [[-0.20629584 -0.20812128 -0.20967356 -0.21095376 -0.21196139 -0.21269501\n", + " -0.2131529 -0.21333373 -0.20629584 -0.1798852 -0.15276427 -0.12504507\n", + " -0.09683814 -0.06825398 -0.03940385 -0.01040007 -0.21333373 -0.18599064\n", + " -0.15793623 -0.12927467 -0.10011211 -0.07055816 -0.04072622 -0.01073294\n", + " -0.01040007 -0.01048759 -0.01056224 -0.01062379 -0.01067191 -0.0107063\n", + " -0.0107267 -0.01073294 -0.20703611 -0.20908844 -0.21073192 -0.21196628\n", + " -0.21278893 -0.21319686 -0.19488162 -0.16201965 -0.12820231 -0.09363367\n", + " -0.05851721 -0.02305821 -0.20150602 -0.16750285 -0.13253465 -0.0967959\n", + " -0.06048842 -0.02382238 -0.0105395 -0.01063912 -0.01071899 -0.01077856\n", + " -0.01081726 -0.01083465 -0.20621357 -0.20621357 -0.01083565 -0.01083565\n", + " -0.19565571 -0.16265759 -0.12870452 -0.09399937 -0.05874512 -0.0231472\n", + " -0.19758845 -0.16425347 -0.12996305 -0.09491705 -0.05931746 -0.02337052\n", + " -0.19913769 -0.16553623 -0.13097704 -0.09565767 -0.05977969 -0.02355053\n", + " -0.200302-0.82567874 -0.72846169 -0.55256029 -0.25394179\n", + " -0.96666577 -0.95194756 -0.92535864 -0.87107074 -0.74171607 -0.40123831\n", + " -0.99614527 -0.99433151 -0.99086162 -0.98290647 -0.95774678 -0.79700819]\n", + "26 -0.16650264 -0.13174231 -0.09621721 -0.0601289 -0.023686\n", + " -0.20107886 -0.16714801 -0.13225382 -0.09659125 -0.06036201 -0.02377567\n", + " -0.201464 -0.16746808 -0.13250731 -0.0967762 -0.06047657 -0.02381854]\n", + " [-0.20078674 -0.17428103 -0.14708674 -0.11931584 -0.09107902 -0.06248699\n", + " -0.03365118 -0.00468399 -0.20078674 -0.20262142 -0.20419049 -0.20549514\n", + " -0.20653488 -0.20730818 -0.20781318 -0.2080483 -0.00468399 -0.00472909\n", + " -0.00476846 -0.004802 -0.00482954 -0.00485094 -0.00486604 -0.00487474\n", + " -0.2080483 -0.18056016 -0.15238099 -0.12361519 -0.09436952 -0.06475431\n", + " -0.03488367 -0.00487474 -0.1893284 -0.1563645 -0.12247778 -0.08787247\n", + " -0.05275245 -0.01732329 -0.20152974 -0.20359843 -0.20526972 -0.2065434\n", + " -0.20741673 -0.20788637 -0.0048039 -0.00485635 -0.0048999 -0.00493429\n", + " -0.00495921 -0.00497442 -0.19615466 -0.1619874 -0.12688576 -0.09104519\n", + " -0.05466885 -0.01796812 -0.20070413 -0.20070413 -0.00497744 -0.00497744\n", + " -0.19010422 -0.19204948 -0.19362274 -0.19482286 -0.19564642 -0.1960896\n", + " -0.15700026 -0.15859759 -0.1598933 -0.16088429 -0.1615658 -0.16193328\n", + " -0.12297381 -0.12422245 -0.12523802 -0.12601654 -0.12655298 -0.12684288\n", + " -0.088228 -0.0891244 -0.0898551 -0.09041635 -0.09080384 -0.09101389\n", + " -0.05296627 -0.0535061 -0.05394701 -0.05428637 -0.05452132 -0.05464944\n", + " -0.01739439 -0.0175743 -0.01772184 -0.01783608 -0.01791601 -0.0179608 ]\n", + " [ 0.95766733 0.96245086 0.96664496 0.9701867 0.97302465 0.97511856\n", + " 0.97643916 0.97696816 0.95766733 0.96259331 0.96693812 0.97063664\n", + " 0.97363531 0.97589175 0.97737455 0.97806326 0.97696816 0.98254014\n", + " 0.9874378 0.9915972 0.99496444 0.99749587 0.99915849 0.99993052\n", + " 0.97806326 0.98350803 0.98826539 0.99227336 0.99548004 0.9978438\n", + " 0.99933381 0.99993052 0.95983895 0.96531454 0.96984084 0.97331841\n", + " 0.97567313 0.97685567 0.95989943 0.96555544 0.97027239 0.9739469\n", + " 0.97650091 0.97788117 0.9794755 0.98585963 0.99116626 0.99529202\n", + " 0.99815658 0.99970383 0.98051633 0.98673547 0.99185942 0.99578843\n", + " 0.99844594 0.99977985 0.95770236 0.95770236 0.9999289 0.9999289\n", + " 0.96207028 0.96781171 0.97259724 0.9763238 0.97891342 0.98031274\n", + " 0.96763099 0.97358492 0.97854164 0.98239859 0.98507763 0.98652493\n", + " 0.97222509 0.97834888 0.98344316 0.98740541 0.99015692 0.99164321\n", + " 0.97575346 0.98200495 0.98720313 0.99124524 0.9940519 0.9955679\n", + " 0.97814205 0.98447887 0.98974676 0.9938426 0.99668644 0.9982225\n", + " 0.97934146 0.98572085 0.99102359 0.99514634 0.99800882 0.99955494]]\n", + "DEBUG:root:optics_fp: cphi: [0.71674184 0.76675024 0.81864942 0.87035228 0.91865771 0.95932569\n", + " 0.98767201 0.99974255 0.71674184 0.66409483 0.59932455 0.52022133\n", + " 0.42506968 0.31345852 0.18722881 0.05105417 0.99974255 0.99965353\n", + " 0DEBUG:root:radec2pix: camVec Shape: (3, 96)\n", + " 24.075011 ]\n", + " [ -0.245877 18.699011 ]\n", + " [ -0.245877 13.323011 ]\n", + " [ -0.245877 7.947011 ]\n", + " [ -0.245877 2.571011 ]\n", + " [ -2.143377 31.348511 ]\n", + " [ -7.519377 31.348511 ]\n", + " [-12.895377 31.348511 ]\n", + " [-18.271377 31.348511 ]\n", + " [-23.647377 31.348511 ]\n", + " [-29.023377 31.348511 ]\n", + " [ -2.143377 0.673511 ]\n", + " [ -7.519377 0.673511 ]\n", + " [-12.895377 0.673511 ]\n", + " [-18.271377 0.673511 ]\n", + " [-23.64737701 0.673511 ]\n", + " [-29.023377 0.673511 ]\n", + " [-30.920877 29.451011 ]\n", + " [-30.920877 24.075011 ]\n", + " [-30.920877 18.699011 ]\n", + " [-30.920877 13.323011 ]\n", + " [-30.920877 7.947011 ]\n", + " [-30.920877 2.571011 ]\n", + " [ -0.245877 31.348511 ]\n", + " [ -0.245877 31.348511 ]\n", + " [-30.920877 0.673511 ]\n", + " [-30.920877 0.673511 ]\n", + " [ -2.143377 29.451011 ]\n", + " [ -7.519377 29.451011 ]\n", + " [-12.895377 29.451011 ]\n", + " [-18.271377 29.451011 ]\n", + " [-23.647377 29.451011 ]\n", + " [-29.023377 29.451011 ]\n", + " [ -2.143377 24.075011 ]\n", + " [ -7.519377 24.075011 ]\n", + " [-12.895377 24.075011 ]\n", + " [-18.271377 24.075011 ]\n", + " [-23.647377 24.075011 ]\n", + " [-29.023377 24.075011 ]\n", + " [ -2.143377 18.699011 ]\n", + " [ -7.519377 18.699011 ]\n", + " [-12.895377 18.699011 ]\n", + " [-18.271377 18.699011 ]\n", + " [-23.647377 18.699011 ]\n", + " [-29.023377 18.699011 ]\n", + " [ -2.143377 13.323011 ]\n", + " [ -7.519377 13.323011 ]\n", + " [-12.895377 13.323011 ]\n", + " [-18.271377 13.323011 ]\n", + " [-23.647377 13.323011 ]\n", + " [-29.023377 13.323011 ]\n", + " [ -2.143377 7.947011 ]\n", + " [ -7.519377 7.947011 ]\n", + " [-12.895377 7.947011 ]\n", + " [-18.271377 7.947011 ]\n", + " [-23.647377 7.947011 ]\n", + " [-29.023377 7.947011 ]\n", + " [ -2.143377 2.571011 ]\n", + " [ -7.519377 2.571011 ]\n", + " [-12.895377 2.571011 ]\n", + " [-18.271377 2.571011 ]\n", + " [-23.647377 2.571011 ]\n", + " [-29.023377 2.571011 ]]\n", + "DEBUG:root:optics_fp: rtanth: [31.72889598 27.34254715 22.95622881 18.56996252 14.18379661 9.79786588\n", + " 5.41274207 1.03869565 31.72889598 32.DEBUG:root:radec2pix: xyfp: [[32.2358199 31.31614388]\n", + " [32.23338667 26.92971599]\n", + " [32.23095344 22.54328809]\n", + " [32.2285202 18.15686019]\n", + " [32.22608698 13.7704323 ]\n", + " [32.22365375 9.3840044 ]\n", + " [32.22122051 4.99757651]\n", + " [32.21878728 0.61114861]\n", + " [32.2358199 31.31614388]\n", + " [27.849392 31.31857712]\n", + " [23.46296411 31.32101035]\n", + " [19.07653621 31.32344358]\n", + " [14.69010831 31.3258768 ]\n", + " [10.30368042 31.32831004]\n", + " [ 5.91725252 31.33074327]\n", + " [ 1.53082462 31.3331765 ]\n", + " [32.21878728 0.61114861]\n", + " [27.83235938 0.61358184]\n", + " [23.44593149 0.61601507]\n", + " [19.0595036 0.6184483 ]\n", + " [14.6730757 0.62088153]\n", + " [10.2866478 0.62331476]\n", + " [ 5.90021991 0.625748 ]\n", + " [ 1.513792 0.62818122]\n", + " [ 1.53082462 31.3331765 ]\n", + " [ 1.52839139 26.94674861]\n", + " [ 1.52595816 22.5603207 ]\n", + " [ 1.52352493 18.17389281]\n", + " [ 1.5210917 13.78746492]\n", + " [ 1.51865847 9.40103702]\n", + " [ 1.51622524 5.01460912]\n", + " [ 1.513792 0.62818122]\n", + " [32.219759 29.4036525 ]\n", + " [32.21677684 24.02765333]\n", + " [32.21379467 18.65165415]\n", + " [32.21081251 13.27565498]\n", + ".99950987 0.99925593 0.99874223 0.99744464 0.99234175 0.9056856\n", + " 0.05105417 0.05923154 0.07055215 0.08725098 0.11432168 0.16558509\n", + " 0.29698694 0.9056856 0.73806414 0.80084934 0.86451924 0.92365062\n", + " 0.9704975 0.99665945 0.6953044 0.6229226 0.53010496 0.41345588\n", + " 0.27232584 0.11128947 0.99969644 0.99954923 0.99926436 0.99859785\n", + " 0.99637691 0.97728259 0.0548278 0.06688083 0.08577093 0.11956053\n", + " 0.19678357 0.51804091 0.7167462 0.7167462 0.90395966 0.90395966\n", + " 0.7173329 0.64650885 0.55392153 0.43509499 0.28838199 0.1183142\n", + " 0.78296688 0.7194824 0.6309635 0.50857972 0.34543889 0.14404729\n", + " 0.85078398 0.79980651 0.72282072 0.60489433 0.42782202 0.18390653\n", + " 0.9150296 0.88149415 0.82599605 0.72871014 0.55254711 0.25338228\n", + " 0.96687862 0.95220074 0.92565817 0.87139471 0.74187378 0.40036553\n", + " 0.99622933 0.99443943 0.99100871 0.9831251 0.95810564 0.79702588]\n", + " [32.20783035 7.89965581]\n", + " [32.20484818 2.52365664]\n", + " [30.32331188 31.30220479]\n", + " [24.9473127 31.30518695]\n", + " [19.57131353 31.3081691DEBUG:root:optics_fp: sphi: [-0.69769794 -0.64235507 -0.57476766 -0.49298514 -0.3957089 -0.2830686\n", + " -0.15742033 -0.02367621 -0.69769794 -0.74794907 -0.80074179 -0.85419896\n", + " -0.90526286 -0.94964993 -0.98232909 -0.99869566 -0.02367621 -0.02736175\n", + " -0.03241859 -0.03978624 -0.05151501 -0.07309024 -0.12571151 -0.42571889\n", + " -0.99869566 -0.99823823 -0.9974915 -0.99614906 -0.99336052 -0.98598731\n", + " -0.95418866 -0.42571889 -0.67511001 -0.59931613 -0.50314502 -0.38390211\n", + " -0.24191766 -0.08261364 -0.71905021 -0.78254183 -0.84810727 -0.91061956\n", + " -0.96223874 -0.99379078 -0.02564534 -0.03110765 -0.0395524 -0.05433448\n", + " -0.08682898 -0.21460065 -0.99849345 -0.99774863 -0.99628049 -0.99273464\n", + " -0.98014573 -0.8538262 -0.69769342 -0.69769342 -0.42932191 -0.42932191\n", + " -0.69708495 -0.76318092 -0.83275412 -0.90048226 -0.95754529 -0.99297505\n", + " -0.62248778 -0.69484721 -0.77604065 -0.86112562 -0.93845597 -0.98955174\n", + " -0.52603734 -0.60069232 -0.69134517 -0.7964549 -0.90385712 -0.98288677\n", + " -0.40403745 -0.4727786205497925 32.96668106 34.41749464\n", + " 36.342913 38.67211172 41.33689193 44.27670445 1.03869565 4.67736497\n", + " 9.00877953 13.37609754 17.75284128 22.13341982 26.51593264 30.89955671\n", + " 44.27670445 41.24704355 38.47976296 36.03536075 33.98358137 32.39910327\n", + " 31.35285463 30.89955671 29.81652098 24.44065782 19.06487182 13.68925392\n", + " 8.31413013 2.94220985 31.78219953 32.5803988 34.21489906 36.57374743\n", + " 39.52747698 42.9535403 2.33383998 7.53796979 12.88401801 18.24767393\n", + " 23.61694389 28.9887086 42.91616052 39.37153369 36.28003925 33.76636764\n", + " 31.96711857 31.00691067 31.71398377 31.71398377 30.88506563 30.88506563\n", + " 29.88906763 30.73646927 32.46394115 34.94119572 38.021962 41.57228381\n", + " 24.52910914 25.55486988 27.6084825 30.48291307 33.97043457 37.9021848\n", + " 19.17813281 20.47376266 22.98590632 26.36914053 30.33338108 34.67995379\n", + " 13.846556 15.59170589 18.76907627 22.78723124 27.27710291 32.04099765\n", + " 8.57065926 11.17275166 15.2972975 20.02465966 25.01538387 30.13892197\n", + " 3.60389222 8.0222]\n", + " [14.19531435 31.31115127]\n", + " [ 8.81931518 31.31413344]\n", + " [ 3.44331601 31.3171156 ]\n", + " [30.3062959 0.62720951]\n", + " [24.93029672 0.63019167]\n", + " [19.55429755 0.63317383]\n", + " [14.17829838 0.636156 ]\n", + " [ 8.80229921 0.63913816]\n", + " [ 3.42630004 0.64212033]\n", + " [ 1.54476372 29.42066847]\n", + " [ 1.54178156 24.0446693 ]\n", + " [ 1.53879939 18.66867013]\n", + " [ 1.53581723 13.29267096]\n", + " [ 1.53283507 7.91667178]\n", + " [ 1.5298529 2.54067261]\n", + " [32.22081158 31.30115221]\n", + " [32.22081158 31.30115221]\n", + " [ 1.52880032 0.6431729 ]\n", + " [ 1.52880032 0.6431729 ]\n", + " [30.32225929 29.40470508]\n", + " [24.94626012 29.40768724]\n", + " [19.57026095 29.41066941]\n", + " [14.19426178 29.41365157]\n", + " [ 8.8182626 29.41663373]\n", + " [ 3.44226343 29.4196159 ]\n", + " [30.31927713 24.02870591]\n", + " [24.94327796 24.03168807]\n", + " [19.56727878 24.03467023]\n", + " [14.19127961 24.0376524 ]\n", + " [ 8.81528044 24.04063456]\n", + " [ 3.43928127 24.04361672]\n", + " [30.31629496 18.65270673]\n", + " [24.9402958 18.6556889 ]\n", + " [19.56429662 18.65867106]\n", + " [14.18829744 18.66165322]\n", + " [ 8.81229827 18.66463538]\n", + " [ 3.4362991 18.66761755]\n", + " [30.31331281 13.27670756]\n", + " [24.93731363 13.27968972]\n", + " [19.56131446 13.28267189]\n", + " [14.18531529 13.28565406]\n", + " [ 8.80931611 13.28863621]\n", + " [ 3.43331694 13.29161838]\n", + " [30.31033064 7.90070839]\n", + " [24.93433147 7.90369055]\n", + " [19.55833229 7.90667271]\n", + " [14.18233312 7.90965488]\n", + " [ 8.80633395 7.91263704]\n", + " [ 3.43033477 7.9156192 ]\n", + " [30.30734847 2.52470921]\n", + " [24.9313493 2.52769138]\n", + " [19.55535013 2.53067354]\n", + " [14.17935096 2.53365571]\n", + " [ 8.80335178 2.53663787]\n", + " [ 3.42735261 2.53962004]]\n", + "9468 -0.00160787 -0.00161907 -0.00162822\n", + " -0.00163527 -0.00164017 -0.00156258 -0.0305812 -0.05948043 -0.08814769\n", + " -0.11647141 -0.14434091 -0.17164574 -0.19827444 -0.00164017 -0.03165868\n", + " -0.06155164 -0.09120162 -0.12049415 -0.14931846 -0.17756745 -0.20513658\n", + " -0.19827444 -0.2000398 -0.20154417 -0.20278831 -0.20377138 -0.20449167\n", + " -0.20494724 -0.20513658 -0.00166992 -0.00169047 -0.00170796 -0.0017223\n", + " -0.00173334 -0.001741 -0.0142227 -0.04972296 -0.08493191 -0.1196437\n", + " -0.15365451 -0.18676067 -0DEBUG:root:radec2pix: xyfp Shape: (96, 2)\n", + " -0.5641406 -0.68508654 -0.83347293 -0.9672195\n", + " -0.25604158 -0.30626107 -0.37909286 -0.49115758 -0.670714 -0.9159737\n", + " -0.08771884 -0.10632422 -0.13488237 -0.1841056 -0.28761277 -0.6039685 ]\n", + "60672 13.1734259 18.4531524 23.77606504 29.11848994]\n", + "DEBUG:root:radec2pix: ccdpx: [[-4.45000001e+01 -5.00000132e-01]\n", + " [-4.45000001e+01 2.91928571e+02]\n", + " [-4.44999999e+01 5.84357143e+02]\n", + " [-4.44999998e+01 8.76785714e+02]\n", + " [-4.45000000e+01 1.16921429e+03]\n", + " [-4.45000002e+01 1.46164286e+03]\n", + " [-4.44999998e+01 1.75407143e+03]\n", + " [-4.44999999e+01 2.04650000e+03]\n", + " [-4.45000001e+01 -5.00000132e-01]\n", + " [ 2.47928572e+02 -4.99999845e-01]\n", + " [ 5.40357143e+02 -5.00000146e-01]\n", + " [ 8.32785714e+02 -4.99999843e-01]\n", + " [ 1.12521429e+03 -4.99999832e-01]\n", + " [ 1.41764286e+03 -5.00000031e-01]\n", + " [ 1.71007143e+03 -5.00000120e-01]\n", + " [ 2.00250000e+03 -4.99999883e-01]\n", + " [-4.44999999e+01 2.04650000e+03]\n", + " [ 2.47928572e+02 2.04650000e+03]\n", + " [ 5.40357143e+02 2.04650000e+03]\n", + " [ 8.32785714e+02 2.04650000e+03]\n", + " [ 1.12521429e+03 2.04650000e+03]\n", + " [ 1.41764286e+03 2.04650000e+03]\n", + " [ 1.71007143e+03 2.04650000e+03]\n", + " [ 2.00250000e+03 2.04650000e+03]\n", + " [ 2.00250000e+03 -4.99999883e-01]\n", + " [ 2.00250000e+03 2.91928571e+02]\n", + " [ 2.00250000e+03 5.84357143e+02]\n", + " [ 2.00250000e+03 8.76785714e+02]\n", + " [ 2.00250000e+03 1.16921429e+03]\n", + " [ 2.00250000e+03 1.46164286e+03]\n", + " [ 2.00250000e+03 1.75407143e+03]\n", + " [ 2.00250000e+03 2.04650000e+03]\n", + " [-4.35000002e+01 1.27000000e+02]\n", + " [-4.34999998e+01 4.85400000e+02]\n", + " [-4.34999999e+01 8.43800000e+02]\n", + " [-4.35000001e+01 1.20220000e+03]\n", + " [-4.34999999e+01 1.56060000e+03]\n", + " [-4.35000000e+01 1.91900000e+03]\n", + " [ 8.30000001e+01 5.00000120e-01]\n", + " [ 4.41400000e+02 4.99999839e-01]\n", + " [ 7.99800000e+02 4.99999975e-01]\n", + " [ 1.15820000e+03 5.00000060e-01]\n", + " [ 1.51660000e+03 5.00000260e-01]\n", + " [ 1.87500000e+03 4.99999701e-01]\n", + " [ 8.29999997e+01 2.04550000e+03]\n", + " [ 4.41400000e+02 2.04550000e+03]\n", + " [ 7.99800000e+02 2.04550000e+03]\n", + " [ 1.15820000e+03 2.04550000e+03]\n", + " [ 1.51660000e+03 2.04550000e+03]\n", + " [ 1.87500000e+03 2.04550000e+03]\n", + " [ 2.00150000e+03 1.27000000e+02]\n", + " [ 2.00150000e+03 4.85400000e+02]\n", + " [ 2.00150000e+03 8.43800000e+02]\n", + " [ 2.00150000e+03 1.20220000e+03]\n", + " [ 2.00150000e+03 1.56060000e+03]\n", + " [ 2.00150000e+03 1.91900000e+03]\n", + " [-4.35000003e+01 4.99999746e-01]\n", + " [-4.35000003e+01 4.99999746e-01]\n", + " [ 2.00150000e+03 2.04550000e+03]\n", + " [ 2.00150000e+03 2.04550000e+03]\n", + " [ 8.29999998e+01 1.27000000e+02]\n", + " [ 4.41400000e+02 1.27000000e+02]\n", + " [ 7.99800000e+02 1.27000000e+02]\n", + " [ 1.15820000e+03 1.27000000e+02]\n", + " [ 1.51660000e+03 1.27000000e+02]\n", + " [ 1.87500000e+03 1.27000000e+02]\n", + " [ 8.30000000e+01 4.85400000e+02]\n", + " [ 4.41400000e+02 4.85400000e+02]\n", + " [ 7.99800000e+02 4.85400000e+02]\n", + " [ 1.15820000e+03 4.85400000e+02]\n", + " [ 1.51660000e+03 4.85400000e+02]\n", + " [ 1.87500000e+03 4.85400000e+02]\n", + " [ 8.29999999e+01 8.43800000e+02]\n", + " [ 4.41400000e+02 8.43800000e+02]\n", + " [ 7.99800000e+02 8.43800000e+02]\n", + " [ 1.15820000e+03 8.43800000e+02]\n", + " [ 1.51660000e+03 8.43800000e+02]\n", + " [ 1.87500000e+03 8.43800000e+02]\n", + " [ 8.29999998e+01 1.20220000e+03]\n", + " [ 4.41400000e+02 1.20220000e+03]\n", + " [ 7.99800000e+02 1.20220000e+03]\n", + " [ 1.15820000e+03 1.20220000e+03]\n", + " [ 1.51660000e+03 1.20220000e+03]\n", + " [ 1.87500000e+03 1.20220000e+03]\n", + " [ 8.30000000e+01 1.56060000e+03]\n", + " [ 4.41400000e+02 1.56060000e+03]\n", + " [ 7.99800000e+02 1.56060000e+03]\n", + " [ 1.15820000e+03 1.56060000e+03]\n", + " [ 1.51660000e+03 1.56060000e+03]\n", + " [ 1.87500000e+03 1.56060000e+03]\n", + " [ 8.30000000e+01 1.91900000e+03]\n", + " [ 4.41400000e+02 1.91900000e+03]\n", + " [ 7.99800000e+02 1.91900000e+03]\n", + " [ 1.15820000e+03 1.91900000e+03]\n", + " [ 1.51660000e+03 1.91900000e+03]\n", + " [ 1.87500000e+03 1.91900000e+03]]\n", + "DEBUG:root:optics_fp: sphi: [0.69733861 0.64194554 0.57429359 0.49242959 0.39505443 0.28230164\n", + " 0.15653753 0.02269007 0.69733861 0.74764835 0.80050614 0.85403148\n", + " 0.90516063 0.94960189 0.98231633 0.99869589 0.02269007 0.02632152\n", + " 0.03130538 0.03856929 0.05013934 0.07144362 0.12352264 0.42394999\n", + " 0.99869589 0.99824427 0.99750809 0.99618636 0.99344379 0.98619551\n", + " 0.95488154 0.42394999 0.67473055 0.59886588 0.50259973 0.38323562\n", + " 0.24111118 0.08166976 0.71871537 0.78228347 0.84793203 0.91052415\n", + " 0.96220509 0.99378803 0.02463779 0.03002235 0.03835014 0.05293717\n", + " 0.08504731 0.21194041 0.99849582 0.99776097 0.99631488 0.99282691\n", + " 0.98044695 0.85535584 0.69733413 0.69733413 0.42761774 0.42761774\n", + " 0.69673058 0.76290649 0.83256888 0.90038456 0.95751545 0.99297621\n", + " 0.62206339 0.69451068 0.77581252 0.86101491 0.93844125 0.9895708\n", + " 0.52551558 0.6002579 0.6910356 0.79630575 0.903863 0.98294374\n", + " 0.40338671 0.47219495 0.5636759 0.68482227 0.83348167 0.96736623\n", + " 0.25523664 0.305473 0.37836089 0.49058257 0.67053956 0.91635552\n", + " 0.08675898 0.10531014 0.13379739 0.18293452 0.28641505 0.60394515]\n", + ".01473616 -0.05145726 -0.08787283 -0.12377083\n", + " -0.15894736 -0.19320639 -0.19898619 -0.20097311 -0.20256914 -0.20377339\n", + " -0.20458276 -0.20499385 -0.00166195 -0.00166195 -0.20504339 -0.20504339\n", + " -0.01428012 -0.04992014 -0.08526785 -0.1201171 -0.15426444 -0.18750721\n", + " -0.01442512 -0.05041664 -0.08611259 -0.12130566 -0.1557929 -0.1893742\n", + " -0.01454351 -0.0508198 -0.08679712 -0.1222667 -0.15702557 -0.19087549\n", + " -0.01463451 -0.05112705 -0.08731762 -0.122996 -0.15795892 -0.19200933\n", + " -0.01469728 -0.05133568 -0.08766989 -0.12348855 -0.15858803 -0.19277198\n", + " -0.01473117 -0.05144352 -0.08785049 -0.12374011 -0.1589085 -0.19315962]\n", + " [ 0.20900824 0.18154377 0.15338464 0.12463517 0.09540199 0.06579532\n", + " 0.03592916 0.00592057 0.20900824 0.20886066 0.2084416 0.2077524\n", + " 0.20679486 0.20557063 0.20408052 0.20232383 0.00592057 0.00591961\n", + " 0.00591082 0.00589429 0.00587015 0.00583856 0.00579969 0.00575368\n", + " 0.20232383 0.17576331 0.1485108 0.12067777 0.09237455 0.06371165\n", + " 0.03480051 0.00575368 0.19712565 0.16298492 0.12790428 0.09207897\n", + " 0.05571194 0.01901436 0.20888472 0.20852129 0.20775151 0.20657854\n", + " 0.20500532 0.20303275 0.00602383 0.00601719 0.00599868 0DEBUG:root:cartToSphere: vec: [[-0.20629584 -0.20078674 0.95766733]\n", + " [-0.20812128 -0.17428103 0.96245086]\n", + " [-0.20967356 -0.14708674 0.96664496]\n", + " [-0.21095376 -0.11931584 0.9701867 ]\n", + " [-0.21196139 -0.09107902 0.97302465]\n", + " [-0.21269501 -0.06248699 0.97511856]\n", + " [-0.2131529 -0.03365118 0.97643916]\n", + " [-0.21333373 -0.00468399 0.97696816]\n", + " [-0.20629584 -0.20078674 0.95766733]\n", + " [-0.1798852 -0.20262142 0.96259331]\n", + " [-0.15276427 -0.20419049 0.96693812]\n", + " [-0.12504507 -0.20549514 0.97063664]\n", + " [-0.09683814 -0.20653488 0.97363531]\n", + " [-0.06825398 -0.20730818 0.97589175]\n", + " [-0.03940385 -0.20781318 0.97737455]\n", + " [-0.01040007 -0.2080483 0.97806326]\n", + " [-0.21333373 -0.00468399 0.97696816]\n", + " [-0.18599064 -0.00472909 0.98254014]\n", + " [-0.15793623 -0.00476846 0.9874378 ]\n", + " [-0.12927467 -0.004802 0.9915972 ]\n", + " [-0.10011211 -0.00482954 0.99496444]\n", + " [-0.07055816 -0.00485094 0.99749587]\n", + " [-0.04072622 -0.00486604 0.99915849]\n", + " [-0.01073294 -0.00487474 0.99993052]\n", + " [-0.01040007 -0.2080483 0.97806DEBUG:root:radec2pix: ccdpx: [[-4.45000000e+01 -5.00000261e-01]\n", + " [-4.45000000e+01 2.91928571e+02]\n", + " [-4.45000000e+01 5.84357143e+02]\n", + " [-4.45000000e+01 8.76785715e+02]\n", + " [-4.45000000e+01 1.16921429e+03]\n", + " [-4.45000000e+01 1.46164286e+03]\n", + " [-4.45000000e+01 1.75407143e+03]\n", + " [-4.44999999e+01 2.04650000e+03]\n", + " [-4.45000000e+01 -5.00000261e-01]\n", + " [ 2.47928571e+02 -5.00000125e-01]\n", + " [ 5.40357143e+02 -4.99999959e-01]\n", + " [ 8.32785714e+02 -5.00000265e-01]\n", + " [ 1.12521429e+03 -4.99999989e-01]\n", + " [ 1.41764286e+03 -4.99999804e-01]\n", + " [ 1.71007143e+03 -4.99999857e-01]\n", + " [ 2.00250000e+03 -5.00000247e-01]\n", + " [-4.44999999e+01 2.04650000e+03]\n", + " [ 2.47928572e+02 2.04650000e+03]\n", + " [ 5.40357143e+02 2.04650000e+03]\n", + " [ 8.32785714e+02 2.04650000e+03]\n", + " [ 1.12521429e+03 2.04650000e+03]\n", + " [ 1.41764286e+03 2.04650000e+03]\n", + " [ 1.71007143e+03 2.04650000e+03]\n", + " [ 2.00250000e+03 2.04650000e+03]\n", + " [ 2.00250000e+03 -5.00000247e-01]\n", + " [ 2.00250000e+03 2.91928571e+02]\n", + " [ 2.00250000e+03 5.84357143e+02]\n", + " [ 2.00250000e+03 8.76785DEBUG:root:optics_fp: cphi: [-0.0051738 -0.00607178 -0.0073129 -0.00914033 -0.01209791 -0.01770316\n", + " -0.03238875 -0.17057046 -0.0051738 -0.14196195 -0.27109236 -0.38711253\n", + " -0.48729918 -0.57137557 -0.64065601 -0.69718731 -0.17057046 -0.97567733\n", + " -0.99347832 -0.99703634 -0.99831251 -0.99891078 -0.99923847 -0.99943725\n", + " -0.69718731 -0.74844189 -0.80231456 -0.85678989 -0.9085738 -0.95306497\n", + " -0.98492815 -0.99943725 -0.0060359 -0.00745674 -0.00967884 -0.01364603\n", + " -0.02274227 -0.06503966 -0.06534051 -0.22874689 -0.3749438 -0.49775222\n", + " -0.59656384 -0.67413914 -0.89537598 -0.99040776 -0.99671262 -0.99835535\n", + " -0.9990142 -0.99934296 -0.71895916 -0.78374506 -0.85059233 -0.91398049\n", + " -0.96549457 -0.99546704 -0.00564941 -0.00564941 -0.9994203 -0.9994203\n", + " -0.06950599 -0.24249594 -0.39519134 -0.52103162 -0.62020649 -0.69655704\n", + " -0.08478692 -0.29175445 -0.46477551 -0.59730991 -0.69424327 -0.76406532\n", + " -0.10856248 -0.36427233 -0.55834321 -0.69058088 -0.77756 -0.83512289\n", + " -0.15052868 -0.47847897714e+02]\n", + " [ 2.00250000e+03 1.16921429e+03]\n", + " [ 2.00250000e+03 1.46164286e+03]\n", + " [ 2.00250000e+03 1.75407143e+03]\n", + " [ 2.00250000e+03 2.04650000e+03]\n", + " [-4.35000000e+01 1.27000000e+02]\n", + " [-4.35000000e+01 4.85400000e+02]\n", + " [-4.35000000e+01 8.43800000e+02]\n", + " [-4.35000000e+01 1.20220000e+03]\n", + " [-4.35000000e+01 1.56060000e+03]\n", + " [-4.35000000e+01 1.91900000e+03]\n", + " [ 8.30000000e+01 4.99999891e-01]\n", + " [ 4.41400000e+02 5.00000001e-01]\n", + " [ 7.99800000e+02 5.00000129e-01]\n", + " [ 1.15820000e+03 5.00000084e-01]\n", + " [ 1.51660000e+03 5.00000000e-01]\n", + " [ 1.87500000e+03 5.00000003e-01]\n", + " [ 8.30000000e+01 2.04550000e+03]\n", + " [ 4.41400000e+02 2.04550000e+03]\n", + " [ 7.99800000e+02 2.04550000e+03]\n", + " [ 1.15820000e+03 2.04550000e+03]\n", + " [ 1.51660000e+03 2.04550000e+03]\n", + " [ 1.87500000e+03 2.04550000e+03]\n", + " [ 2.00150000e+03 1.27000000e+02]\n", + " [ 2.00150000e+03 4.85400000e+02]\n", + " [ 2.00150000e+03 8.43800000e+02]\n", + " [ 2.00150000e+03 1.20220000e+03]\n", + " [ 2.00150000e+03 1.56060000e+03]\n", + " [ 2.00150000e+03 1.91900000e+03]\n", + " [-4.350000DEBUG:root:mm_to_pix: fitpx: [[0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]]\n", + " -0.68390701 -0.79923279 -0.86476566 -0.90397627\n", + " -0.24345642 -0.66792691 -0.83927119 -0.9096075 -0.9430429 -0.96110205\n", + " -0.57961227 -0.93047808 -0.97475473 -0.98719494 -0.99229449 -0.99486127]\n", + ".00596852\n", + " 0.005927 0.00587443 0.19084173 0.15780847 0.12384677 0.08916013\n", + " 0.05395206 0.01842821 0.20891558 0.20891558 0.00585328 0.00585328\n", + " 0.19709662 0.19675396 0.1960282 0.19492287 0.19344162 0.19158618\n", + " 0.16296111 0.16267787 0.16207774 0.1611649 0.15994417 0.15841917\n", + " 0.12788582 0.12766348 0.12719172 0.12647465 0.12551724 0.12432386\n", + " 0.09206603 0.09190638 0.09156653 0.09104984 0.09036055 0.08950266\n", + " 0.05570466 0.05560934 0.05540465 0.05509277 0.05467653 0.0541587\n", + " 0.01901283 0.01898296 0.01891568 0.01881174 0.01867213 0.01849786]\n", + " [ 0.97791263 0.9833816 0.98816527 0.99220134 0.99543751 0.99783181\n", + " 0.999353 0.99998113 0.97791263 0.97746714 0.97622445 0.97420169\n", + " 0.97142694 0.96793926 0.96378882 0.95903718 0.99998113 0.99948121\n", + " 0.9980864 0.995815 0.99269668 0.98877192 0.98409154 0.97871644\n", + " 0.95903718 0.96389384 0.9681552 0.97175809 0.97465079 0.9767927\n", + " 0.97815416 0.97871644 0.98037681 0.98662711 0.99178505 0.99575022\n", + " 0.99844538 0.99981769 0.97783684 0.97675304 0.9744875 0.97108738\n", + " 0.9666246 0.96119621 0.99987327 0.99865707 0.99611364 0.99229288\n", + " 0.98726927 0.98114055 0.96124083 0.9668021 0.97140502 0.97494968\n", + " 0.97736128 0.97858976 0.97793227 0.97793227 0.97873538 0.97873538\n", + " 0.98028006 0.97918122 0.976884 0.97343565 0.96890806 0.96339804\n", + " 0.98652704 0.98539031 0.98301344 0.97944414 0.97475455 0.96904116\n", + " 0.99168226 0.99051471 0.98807314 0.98440592 0.97958583 0.97370947\n", + " 0.99564536 0.99445424 0.99196331 0.98822159 0.98330257 0.97730327\n", + " 0.99833911 0.99713201 0.99460762 0.9908155 0.98582976 0.97974782\n", + " 0.99971071 0.99849547 0.99595406 0.99213633 0.98711673 0.98099296]]\n", + "00e+01 4.99999945e-01]\n", + " [-4.35000000e+01 4.99999945e-01]\n", + " [ 2.00150000e+03 2.04550000e+03]\n", + " [ 2.00150000e+03 2.04550000DEBUG:root:mm_to_pix: fitpx.shape: (96, 2)\n", + "DEBUG:root:optics_fp: xyfp: [[32.31363499 31.47041645]\n", + " [32.3144687 27.08398795]\n", + " [32.31530242 22.69755946]\n", + " [32.31613613 18.31113097]\n", + " [32.31696984 13.92470248]\n", + " [32.31780355 9.53827398]\n", + " [32.31863726 5.15184549]\n", + " [32.31947097 0.765417 ]\n", + " [32.31363499 31.47041645]\n", + " [27.9272065 31.46958273]\n", + " [23.540778 31.46874902]\n", + " [19.15434951 31.46791531]\n", + " [14.76792102 31.4670816 ]\n", + " [10.38149253 31.46624788]\n", + " [ 5.99506403 31.46541417]\n", + " [ 1.60863554 31.46458045]\n", + " [32.31947097 0.765417 ]\n", + " [27.93304248 0.76458329]\n", + " [23.54661399 0.76374957]\n", + " [19.1601855 0.76291586]\n", + " [14.77375701 0.76208215]\n", + " [10.38732851 0.76124844]\n", + " [ 6.00090002 0.76041472]\n", + " [ 1.61447153 0.75958101]\n", + " [ 1.60863554 31.46458045]\n", + " [ 1.60946926 27.07815197]\n", + " [ 1.61030297 22.69172348]\n", + " [ 1.61113668 18.30529498]\n", + " [ 1.61197039 13.91886648]\n", + " [ 1.6128041 9.53243799]\n", + " [ 1.61363782 5.1460095 ]\n", + " [ 1.61447153 0.75958101]\n", + " [32.29899849 29.55791363]\n", + " [32.30002028 24.18191372]\n", + " [32.301042DEBUG:root:radec2pix: camVec Shape: (3, 96)\n", + "e+03]\n", + " [ 8.30000000e+01 1.27000000e+02]\n", + " [ 4.41400000e+02 1.27000000e+02]\n", + " [ 7.99800000e+02 1.27000000e+02]\n", + " [ 1.15820000e+03 1.27000000e+02]\n", + " [ 1.51660000e+03 1.27000000e+02]\n", + " [ 1.87500000e+03 1.27000000e+02]\n", + " [ 8.30000000e+01 4.85400000e+02]\n", + " [ 4.41400000e+02 4.85400000e+02]\n", + " [ 7.99800000e+02 4.85400000e+02]\n", + " [ 1.15820000e+03 4.85400000e+02]\n", + " [ 1.51660000e+03 4.85400000e+02]\n", + " [ 1.87500000e+03 4.85400000e+02]\n", + " [ 8.30000000e+01 8.43800000e+02]\n", + " [ 4.41400000e+02 8.43800000e+02]\n", + " [ 7.99800000e+02 8.43800000e+02]\n", + " [ 1.15820000e+03 8.43800000e+02]\n", + " [ 1.51660000e+03 8.43800000e+02]\n", + " [ 1.87500000e+03 8.43800000e+02]\n", + " [ 8.30000000e+01 1.20220000e+03]\n", + " [ 4.41400000e+02 1.20220000e+03]\n", + " [ 7.99800000e+02 1.20220000e+03]\n", + " [ 1.15820000e+03 1.20220000e+03]\n", + " [ 1.51660000e+03 1.20220000e+03]\n", + " [ 1.87500000e+03 1.20220000e+03]\n", + " [ 8.30000000e+01 1.56060000e+03]\n", + " [ 4.41400000e+02 1.56060000e+03]\n", + " [ 7.99800000e+02 1.56060000e+03]\n", + " [ 1.DEBUG:root:radec2pix: fitpx: [[-5.00000135e-01 -5.00000132e-01]\n", + " [-5.00000144e-01 2.91928571e+02]\n", + " [-4.99999914e-01 5.84357143e+02]\n", + " [-4.99999810e-01 8.76785714e+02]\n", + " [-5.00000028e-01 1.16921429e+03]\n", + " [-5.00000159e-01 1.46164286e+03]\n", + " [-4.99999755e-01 1.75407143e+03]\n", + " [-4.99999923e-01 2.04650000e+03]\n", + " [-5.00000135e-01 -5.00000132e-01]\n", + " [ 2.91928572e+02 -4.99999845e-01]\n", + " [ 5.84357143e+02 -5.00000146e-01]\n", + " [ 8.76785714e+02 -4.99999843e-01]\n", + " [ 1.16921429e+03 -4.99999832e-01]\n", + " [ 1.46164286e+03 -5.00000031e-01]\n", + " [ 1.75407143e+03 -5.00000120e-01]\n", + " [ 2.04650000e+03 -4.99999883e-01]\n", + " [-4.99999923e-01 2.04650000e+03]\n", + " [ 2.91928572e+02 2.04650000e+03]\n", + " [ 5.84357143e+02 2.04650000e+03]\n", + " [ 8.76785714e+02 2.04650000e+03]\n", + " [ 1.16921429e+03 2.04650000e+03]\n", + " [ 1.46164286e+03 2.04650000e+03]\n", + " [ 1.75407143e+03 2.04650000e+03]\n", + " [ 2.04650000e+03 2.04650000e+03]\n", + " [ 2.04650000e+03 -4.99999883e-01]\n", + " [ 2.04650000e+03 2.91928571e+02]\n", + " [ 2.04650000e+03 5.84357143e+02]\n", + " [ 2.04650000e+03 8.76785326]\n", + " [-0.01048759 -0.18056016 0.98350803]\n", + " [-0.01056224 -0.15238099 0.98826539]\n", + " [-0.01062379 -0.12361519 0.99227336]\n", + " [-0.01067191 -0.09436952 0.99548004]\n", + " [-0.0107063 -0.06475431 0.9978438 ]\n", + " [-0.0107267 -0.03488367 0.99933381]\n", + " [-0.01073294 -0.00487474 0.99993052]\n", + " [-0.20703611 -0.1893284 0.95983895]\n", + " [-0.20908844 -0.1563645 0.96531454]\n", + " [-0.21073192 -0.12247778 0.96984084]\n", + " [-0.21196628 -0.08787247 0.97331841]\n", + " [-0.21278893 -0.05275245 0.97567313]\n", + " [-0.21319686 -0.01732329 0.97685567]\n", + " [-0.19488162 -0.20152974 0.95989943]\n", + " [-0.16201965 -0.20359843 0.96555544]\n", + " [-0.12820231 -0.20526972 0.97027239]\n", + " [-0.09363367 -0.2065434 0.9739469 ]\n", + " [-0.05851721 -0.20741673 0.97650091]\n", + " [-0.02305821 -0.20788637 0.97788117]\n", + " [-0.20150602 -0.0048039 0.9794755 ]\n", + " [-0.16750285 -0.00485635 0.98585963]\n", + " [-0.13253465 -0.0048999 0.99116626]\n", + " [-0.0967959 -0.00493429 0.99529202]\n", + " [-0.06048842 -0.00495921 0.99815658]\n", + " [-0.02382238 -0.00497442 0.99970383]\n", + " [-0.0105395 -0.19609 18.80591382]\n", + " [32.30206388 13.42991392]\n", + " [32.30308568 8.05391402]\n", + " [32.30410748 2.67791411]\n", + " [30.40113787 31.45505294]\n", + " [25.02513797 31.45403115]\n", + " [19.64913807 31.45300935]\n", + " [14.27313817 31.45198755]\n", + " [ 8.89713826 31.45096576]\n", + " [ 3.52113836 31.44994396]\n", + " [30.40696816 0.7800535 ]\n", + " [25.03096826 0.7790317 ]\n", + " [19.65496836 0.7780099 ]\n", + " [14.27896845 0.77698811]\n", + " [ 8.90296855 0.77596631]\n", + " [ 3.52696865 0.77494451]\n", + " [ 1.62399904 29.55208334]\n", + " [ 1.62502084 24.17608344]\n", + " [ 1.62604264 18.80008353]\n", + " [ 1.62706443 13.42408364]\n", + " [ 1.62808623 8.04808373]\n", + " [ 1.62910803 2.67208383]\n", + " [32.29863784 31.4554136 ]\n", + " [32.29863784 31.4554136 ]\n", + " [ 1.62946868 0.77458386]\n", + " [ 1.62946868 0.77458386]\n", + " [30.40149852 29.55755297]\n", + " [25.02549862 29.55653118]\n", + " [19.64949872 29.55550938]\n", + " [14.27349882 29.55448759]\n", + " [ 8.89749891 29.55346579]\n", + " [ 3.52149901 29.55244399]\n", + " [30.40252032 24.18155307]\n", + " [25.02652042 24.18053128]\n", + " [19.65052052 24.17950948]\n", + " [14.27452061 24.17848769]\n", + " [ 8.89852071 24.17746589]\n", + " [ 3.522520815466 0.98051633]\n", + " [-0.01063912 -0.1619874 0.98673547]\n", + " [-0.01071899 -0.12688576 0.99185942]\n", + " [-0.01077856 -0.09104519 0.99578843]\n", + " [-0.01081726 -0.05466885 0.99844594]\n", + " [-0.01083465 -0.01796812 0.99977985]\n", + " [-0.20621357 -0.20070413 0.95770236]\n", + " [-0.20621357 -0.20070413 0.95770236]\n", + " [-0.01083565 -0.00497744 0.9999289 ]\n", + " [-0.01083565 -0.00497744 0.9999289 ]\n", + " [-0.19565571 -0.19010422 0.96207028]\n", + " [-0.16265759 -0.19204948 0.96781171]\n", + " [-0.12870452 -0.19362274 0.97259724]\n", + " [-0.09399937 -0.19482286 0.9763238 ]\n", + " [-0.05874512 -0.19564642 0.97891342]\n", + " [-0.0231472 -0.1960896 0.98031274]\n", + " [-0.19758845 -0.15700026 0.96763099]\n", + " [-0.16425347 -0.15859759 0.97358492]\n", + " [-0.12996305 -0.1598933 0.97854164]\n", + " [-0.09491705 -0.16088429 0.98239859]\n", + " [-0.05931746 -0.1615658 0.98507763]\n", + " [-0.02337052 -0.16193328 0.98652493]\n", + " [-0.19913769 -0.12297381 0.97222509]\n", + " [-0.16553623 -0.12422245 0.97834888]\n", + " [-0.13097704 -0.12523802 0.98344316]\n", + " [-0.09565767 -0.12601654 0.98740541]\n", + " [-0.05977969 -0.12655298 0.99015692]\n", + " [-0.02355053 -0.12684288 0.99164321]\n", + " [-0.20030226 -0.088228 0.97575346]\n", + " [-0.16650264 -0.0891244 0.98200495]\n", + " [-0.13174231 -0.0898551 0.98720313]\n", + " [-0.09621721 -0.09041635 0.99124524]\n", + " [-0.0601289 -0.09080384 0.9940519 ]\n", + " [-0.023686 -0.09101389 0.9955679 ]\n", + " [-0.20107886 -0.05296627 0.97814205]\n", + " [-0.16714801 -0.0535061 0.98447887]\n", + " [-0.13225382 -0.05394701 0.98974676]\n", + " [-0.09659125 -0.05428637 0.9938426 ]\n", + " [-0.06036201 -0.05452132 0.99668644]\n", + " [-0.02377567 -0.05464944 0.9982225 ]\n", + " [-0.201464 -0.01739439 0.97934146]\n", + " [-0.16746808 -0.0175743 0.98572085]\n", + " [-0.13250731 -0.01772184 0.99102359]\n", + " [-0.0967762 -0.01783608 0.99514634]\n", + " [-0.06047657 -0.01791601 0.99800882]\n", + " [-0.02381854 -0.0179608 0.99955494]]\n", + "15820000e+03 1.56060000e+03]\n", + " [ 1.51660000e+03 1.56060000e+03]\n", + " [ 1.87500000e+03 1.56060000e+03]\n", + " [ 8.29999998e+01 1.91900000e+03]\n", + " [ 4.41400000e+02 1.91900000e+03]\n", + " [ 7.99800000e+02 1.91900000e+03]\n", + " [ 1.15820000e+03 1.91900000e+03]\n", + " [ 1.51660000e+03 1.91900000e+03]\n", + " [ 1.87500000e+03 1.91900000e+03]]\n", + "714e+02]\n", + " [ 2.04650000e+03 1.16921429e+03]\n", + " [ 2.04650000e+03 1.46164286e+03]\n", + " [ 2.04650000e+03 1.75407143e+03]\n", + " [ 2.04650000e+03 2.04650000e+03]\n", + " [ 4.99999783e-01 1.27000000e+02]\n", + " [ 5.00000221e-01 4.85400000e+02]\n", + " [ 5.00000070e-01 8.43800000e+02]\n", + " [ 4.99999908e-01 1.20220000e+03]\n", + " [ 5.00000086e-01 1.56060000e+03]\n", + " [ 5.00000004e-01 1.91900000e+03]\n", + " [ 1.27000000e+02 5.00000120e-01]\n", + " [ 4.85400000e+02 4.99999839e-01]\n", + " [ 8.43800000e+02 4.99999975e-01]\n", + " [ 1.20220000e+03 5.00000060e-01]\n", + " [ 1.56060000e+03 5.00000260e-01]\n", + " [ 1.91900000e+03 4.99999701e-01]\n", + " [ 1.27000000e+02 2.04550000e+03]\n", + " [ 4.85400000e+02 2.04550000e+03]\n", + " [ 8.43800000e+02 2.04550000e+03]\n", + " [ 1.20220000e+03 2.04550000e+03]\n", + " [ 1.56060000e+03 2.04550000e+03]\n", + " [ 1.91900000e+03 2.04550000e+03]\n", + " [ 2.04550000e+03 1.27000000e+02]\n", + " [ 2.04550000e+03 4.85400000e+02]\n", + " [ 2.04550000e+03 8.43800000e+02]\n", + " [ 2.04550000e+03 1.20220000e1 24.17644409]\n", + " [30.40354212 18.80555317]\n", + " [25.02754221 18.80453137]\n", + " [19.65154231 18.80350958]\n", + " [14.27554241 18.80248779]\n", + " [ 8.89954251 18.80146598]\n", + " [ 3.5235426 18.80044419]\n", + " [30.40456392 13.42955327]\n", + " [25.02856401 13.42853147]\n", + " [19.65256411 13.42750967]\n", + " [14.27656421 13.42648788]\n", + " [ 8.9005643 13.42546608]\n", + " [ 3.5245644 13.42444429]\n", + " [30.40558571 8.05355336]\n", + " [25.02958581 8.05253157]\n", + " [19.6535859 8.05150977]\n", + " [14.277586 8.05048797]\n", + " [ 8.9015861 8.04946618]\n", + " [ 3.5255862 8.04844438]\n", + " [30.40660751 2.67755346]\n", + " [25.0306076 2.67653166]\n", + " [19.6546077 2.67550987]\n", + " [14.2786078 2.67448807]\n", + " [ 8.90260789 2.67346627]\n", + " [ 3.52660799 2.67244448]]\n", + "DEBUG:root:optics_fp: sphi: [0.99998662 0.99998157 0.99997326 0.99995823 0.99992682 0.99984329\n", + " 0.99947535 0.98534548 0.99998662 0.98987212 0.96255334 0.92203248\n", + " 0.87323508 0.82068871 0.76782803 0.71688902 0.98534548 0.21921165\n", + " 0.11402118 0.07693204 0.0580701 0.04666103 0.03901907 0.03354371\n", + " 0.71688902 0.66320038 0.59690146 0.5156DEBUG:root:optics_fp: xyfp shape: (96, 2)\n", + "+03]\n", + " [ 2.04550000e+03 1.56060000e+03]\n", + " [ 2.04550000e+03 1.91900000e+03]\n", + " [ 4.99999741e-01 4.99999746e-01]\n", + " [ 4.99999741e-01 4.99999746e-01]\n", + " [ 2.04550000e+03 2.04550000e+03]\n", + " [ 2.04550000e+03 2.04550000e+03]\n", + " [ 1.27000000e+02 1.27000000e+02]\n", + " [ 4.85400000e+02 1.27000000e+02]\n", + " [ 8.43800000e+02 1.27000000e+02]\n", + " [ 1.20220000e+03 1.27000000e+02]\n", + " [ 1.56060000e+03 1.27000000e+02]\n", + " [ 1.91900000e+03 1.27000000e+02]\n", + " [ 1.27000000e+02 4.85400000e+02]\n", + " [ 4.85400000e+02 4.85400000e+02]\n", + " [ 8.43800000e+02 4.85400000e+02]\n", + " [ 1.20220000e+03 4.85400000e+02]\n", + " [ 1.56060000e+03 4.85400000e+02]\n", + " [ 1.91900000e+03 4.85400000e+02]\n", + " [ 1.27000000e+02 8.43800000e+02]\n", + " [ 4.85400000e+02 8.43800000e+02]\n", + " [ 8.43800000e+02 8.43800000e+02]\n", + " [ 1.20220000e+03 8.43800000e+02]\n", + " [ 1.56060000e+03 8.43800000e+02]\n", + " [ 1.91900000e+03 8.43800000e+02]\n", + " [ 1.27000000e+02 1.20220000e+03]\n", + " [ 4.85400000e+02 1.20220000e+03]\n", + " [ 8.43800000e+02 1.20220000e+03]\n", + " [ 1.20220000e+03 1.20220000e+03]\n", + " [ 1.56060000e+03 1.20220000e+03]\n", + " [ 1.91900000e+03 1.20220000e+03]\n", + " [ 1.27000000e+02 1.56060000e+03]\n", + " [ 4.85400000e+02 1.56060000e+03]\n", + " [ 8.43800000e+02 1.56060000e+03]\n", + " [ 1.20220000e+03 1.56060000e+03]\n", + " [ 1.56060000e+03 1.56060000e+03]\n", + " [ 1.91900000e+03 1.56060000e+03]\n", + " [ 1.27000000e+02 1.91900000e+03]\n", + " [ 4.85400000e+02 1.91900000e+03]\n", + " [ 8.43800000e+02 1.91900000e+03]\n", + " [ 1.20220000e+03 1.91900000e+03]\n", + " [ 1.56060000e+03 1.91900000e+03]\n", + " [ 1.91900000e+03 1.91900000e+03]]\n", + "DEBUG:root:optics_fp: xyfp: [[-32.31281793 -31.43806373]\n", + " [-32.31091541 -27.05163558]\n", + " [-32.30901287 -22.66520742]\n", + " [-32.30711034 -18.27877926]\n", + " [-32.3052078 -13.8923511 ]\n", + " [-32.30330527 -9.50592294]\n", + " [-32.30140274 -5.11949478]\n", + " [-32.2995002 -0.73306663]\n", + " [-32.31281793 -31.43806373]\n", + " [-27.92638978 -31.43996627]\n", + " [-23.53996162 -31.4418688 ]\n", + " [-19.15353346 -31.44377134]\n", + " [-14.7671053 -31.44567387]\n", + " [-10.38067715 -31.44757641]\n", + " [ -5.99424899 -31.44947894]\n", + " [ -1.60782083 -31.45138147]\n", + " [-32.2995002 -0.73306663]\n", + " [-27.91307204 -0.73496916]\n", + " [-23.52664389 -0.73687169]\n", + " [-19.14021573 -0.73877423]\n", + " [-14.75378757 -0.74067676]\n", + " [-10.36735941 -0.74257929]\n", + " [ -5.98093125 -0.74448183]\n", + " [ -1.59450309 -0.74638436]\n", + " [ -1.60782083 -31.45138147]\n", + " [ -1.60591829 -27.06495331]\n", + " [ -1.60401576 -22.67852516]\n", + " [ -1.60211323 -18.292097 ]\n", + " [ -1.60021069 -13.90566884]\n", + " [ -1.59830816 -9.51924068]\n", + " [ -1.59640563 -5.13281252]\n", + " [ -1.59450309 -0.74638436]\n", + " [-32.29698843 -29.52557043]\n", + " [-32.29465669 -24.14957093]\n", + " [-32.29232495 -18.77357144]\n", + " [-32.2899932 -13.39757194]\n", + " [-32.28766146 -8.02157244]\n", + " [-32.28532972 -2.64557295]\n", + " [-30.40031161 -31.42389325]\n", + " [-25.02431212 -31.42622499]\n", + " [-19.64831262 -31.42855673]\n", + " [-14.27231313 -31.43088848]\n", + " [ -8.89631363 -31.43322022]\n", + " [ -3.52031414 -31.43555196]\n", + " [-30.38700689 -0.74889614]\n", + " [-25.01100739 -0.75122788]\n", + " [-19.6350079 -0.75355962]\n", + " [-14.25900841 -0.75589136]\n", + " [ -8.88300892 -0.7582231 ]\n", + " [ -3.50700942 -0.76055484]\n", + " [ -1.62199131 -29.53887515]\n", + " [ -1.61965957 -24.16287565]\n", + " [ -1.61732783 -18.78687616]\n", + " [ -1.61499609 -13.41087666]\n", + " [ -1.61266434 -8.03487716]\n", + " [ -1.6103326 -2.65887768]\n", + " [-32.29781143 -31.42307024]\n", + " [-32.29781143 -31.42307024]\n", + " [ -1.60950959 -0.76137785]\n", + " [ -1.60950959 -0.76137785]\n", + " [-30.3994886 -29.52639343]\n", + " [-25.02348911 -29.52872517]\n", + " [-19.64748962 -29.53105692]\n", + " [-14.27149012 -29.53338866]\n", + " [ -8.89549063 -29.5357204 ]\n", + " [ -3.51949113 -29.53805214]\n", + " [-30.39715686 -24.15039394]\n", + " [-25.02115737 -24.15272568]\n", + " [-19.64515788 -24.15505742]\n", + " [-14.26915838 -24.15738916]\n", + " [ -8.89315889 -24.1597209 ]\n", + " [ -3.51715939 -24.16205264]\n", + " [-30.39482512 -18.77439444]\n", + " [-25.01882563 -18.77672618]\n", + " [-19.64282613 -18.77905793]\n", + " [-14.26682664 -18.78138967]\n", + " [ -8.89082714 -18.78372141]\n", + " [ -3.51482765 -18.78605315]\n", + " [-30.39249338 -13.39839495]\n", + " [-25.01649389 -13.40072669]\n", + " [-19.64049439 -13.40305843]\n", + " [-14.2644949 -13.40539017]\n", + " [ -8.8884954 -13.40772191]\n", + " [ -3.51249591 -13.41005365]\n", + " [-30.39016163 -86567 0.41772438 0.30276585\n", + " 0.17296396 0.03354371 0.99998178 0.9999722 0.99995316 0.99990689\n", + " 0.99974136 0.99788268 0.99786303 0.97348593 0.92704754 0.86731928\n", + " 0.80256563 0.73860437 0.44531096 0.13817549 0.08101827 0.0573289\n", + " 0.04439174 0.0362443 0.69505232 0.62108267 0.52582572 0.40575813\n", + " 0.26042318 0.09510716 0.99998404 0.99998404 0.03404492 0.03404492\n", + " 0.99758153 0.97015242 0.91859883 0.85353737 0.7844386 0.71750142\n", + " 0.99639911 0.95649325 0.88542855 0.80201052 0.71974043 0.64513889\n", + " 0.99408963 0.93129247 0.82961007 0.72325518 0.62880875 0.55006341\n", + " 0.98860564 0.87809901 0.72956919 0.60102159 0.50217562 0.42758264\n", + " 0.96991184 0.74422687 0.54371304 0.41546865 0.33267115 0.27619351\n", + " 0.81489239 0.36634758 0.22327834 0.15951848 0.12390179 0.10124753]\n", + "DEBUG:root:fitpix2pix: ccdpx: shape: (96, 2)\n", + ".02239545]\n", + " [-25.01416214 -8.02472719]\n", + " [-19.63816265 -8.02705893]\n", + " [-14.26216315 -8.02939068]\n", + " [ -8.88616366 -8.03172242]\n", + " [ -3.51016417 -8.03405416]\n", + " [-30.3878299 -2.64639596]\n", + " [-25.01183041 -2.6487277 ]\n", + " [-19.63583091 -2.65105944]\n", + " [-14.25983141 -2.65339118]\n", + " [ -8.88383191 -2.65572292]\n", + " [ -3.50783243 -2.65805467]]\n", + "DEBUG:root:radec2pix: curVec: [[ 2.07458611e-01 3.61666467e-01 -9.08932501e-01]\n", + " [ 1.80270157e-01 3.67227722e-01 -9.12494641e-01]\n", + " [ 1.52391945e-01 3.72604805e-01 -9.15391913e-01]\n", + " [ 1.23927592e-01 3.77759957e-01 -9.17572540e-01]\n", + " [ 9.49820186e-02 3.82659315e-01 -9.18994159e-01]\n", + " [ 6.56632546e-02 3.87272695e-01 -9.19623943e-01]\n", + " [ 3.60833339e-02 3.91573620e-01 -9.19439010e-01]\n", + " [ 6.35803865e-03 3.95539577e-01 -9.18426926e-01]\n", + " [ 2.07458611e-01 3.61666467e-01 -9.08932501e-01]\n", + " [ 2.03404225e-01 3.35141082e-01 -9.19949551e-01]\n", + " [ 1.99096308e-01 3.08439673e-01 -9.30175052e-01]\n", + " [ 1.94551236e-01 2.81670990e-01 -9.39580369e-01]\n", + " [ 1.89785662e-01 2.54947245e-01 -9.48147301e-01]\n", + " [ 1.84816084e-01 2.28384181e-01 -9.55868025e-01]\n", + " [ 1.79658517e-01 2.02101425e-01 -9.62744946e-01]\n", + " [ 1.74328445e-01 1.76222836e-01 -9.68790537e-01]\n", + " [ 6.35803865e-03 3.95539577e-01 -9.18426926e-01]\n", + " [ 2.30876583e-03 3.68058186e-01 -9.29799893e-01]\n", + " [-1.73255837e-03 3.40335462e-01 -9.40302489e-01]\n", + " [-5.74997064e-03 3.12485396e-01 -9.49905161e-01]\n", + " [-9.72793602e-03 2.84623168e-01 -9.58590121e-01]\n", + " [-1.36514518e-02 2.56864501e-01 -9.66351006e-01]\n", + " [-1.75059996e-02 2.29326110e-01 -9.73192209e-01]\n", + " [-2.12773583e-02 2.02127198e-01 -9.79128117e-01]\n", + " [ 1.74328445e-01 1.76222836e-01 -9.68790537e-01]\n", + " [ 1.47793223e-01 1.79836590e-01 -9.72530701e-01]\n", + " [ 1.20606482e-01 1.83534638e-01 -9.75586548e-01]\n", + " [ 9.28770367e-02 1.87279064e-01 -9.77906135e-01]\n", + " [ 6.47138798e-02 1.91036779e-01 -9.79447325e-01]\n", + " [ 3.62265888e-02 1.94779418e-01 -9.80177847e-01]\n", + " [ 7.52568026e-03 1.98482939e-01 -9.80075450e-01]\n", + " [-2.12773583e-02 2.02127198e-01 -9.79128117e-01]\n", + " [ 1.95682334e-01 3.64020602e-01 -9.10602782e-01]\n", + " [ 1.61883069e-01 3.70716708e-01 -9.14528837e-01]\n", + " [ 1.27150704e-01 3.77098385e-01 -9.17403677e-01]\n", + " [ 9.16777454e-02 3.83101698e-01 -9.19145407e-01]\n", + " [ 5.56631809e-02 3.88671088e-01 -9.19693642e-01]\n", + " [ 1.93148730e-02 3.93759447e-01 -9.19010573e-01]\n", + " [ 2.05631358e-01 3.50148670e-01 -9.13844436e-01]\n", + " [ 2.00489757e-01 3.17506207e-01 -9.26819112e-01]\n", + " [ 1.94983734e-01 2.84706970e-01 -9.38575136e-01]\n", + " [ 1.89143854e-01 2.51956112e-01 -9.49074665e-01]\n", + " [ 1.83000455e-01 2.19466753e-01 -9.58303281e-01]\n", + " [ 1.76582786e-01 1.87460874e-01 -9.66269600e-01]\n", + " [ 4.69434777e-03 3.83581518e-01 -9.23495091e-01]\n", + " [-2.65295372e-04 3.49723856e-01 -9.36852792e-01]\n", + " [-5.19730063e-03 3.15616804e-01 -9.48872500e-01]\n", + " [-1.00728755e-02 2.81471979e-01 -9.59516577e-01]\n", + " [-1.48643889e-02 2.47502471e-01 -9.68773233e-01]\n", + " [-1.95452438e-02 2.13924083e-01 -9.76654734e-01]\n", + " [ 1.62864236e-01 1.77873628e-01 -9.70482464e-01]\n", + " [ 1.29889827e-01 1.82365666e-01 -9.74613460e-01]\n", + " [ 9.60448784e-02 1.86945916e-01 -9.77663851e-01]\n", + " [ 6.15299580e-02 1.91551447e-01 -9.79551993e-01]\n", + " [ 2.65468352e-02 1.96129992e-01 -9.80218492e-01]\n", + " [-8.70061375e-03 2.0063DEBUG:root:fitpix2pix: visCut: True\n", + "8930e-01 -9.79626622e-01]\n", + " [ 2.07353515e-01 3.61595462e-01 -9.08984731e-01]\n", + " [ 2.07353515e-01 3.61595462e-01 -9.08984731e-01]\n", + " [-2.11660734e-02 2.02207149e-01 -9.79114021e-01]\n", + " [-2.11660734e-02 2.02207149e-01 -9.79114021e-01]\n", + " [ 1.93955206e-01 3.52528021e-01 -9.15480952e-01]\n", + " [ 1.88815042e-01 3.19749679e-01 -9.28498262e-01]\n", + " [ 1.83333648e-01 2.86805897e-01 -9.40282485e-01]\n", + " [ 1.77542008e-01 2.53902042e-01 -9.50795766e-01]\n", + " [ 1.71470871e-01 2.21251015e-01 -9.60023817e-01]\n", + " [ 1.65149729e-01 1.89074345e-01 -9.67975443e-01]\n", + " [ 1.60143995e-01 3.59108760e-01 -9.19453533e-01]\n", + " [ 1.55014216e-01 3.25987686e-01 -9.32578480e-01]\n", + " [ 1.49609208e-01 2.92679205e-01 -9.44434205e-01]\n", + " [ 1.43960934e-01 2.59389620e-01 -9.54982866e-01]\n", + " [ 1.38101141e-01 2.26331306e-01 -9.64210669e-01]\n", + " [ 1.32060039e-01 1.93724169e-01 -9.72127097e-01]\n", + " [ 1.25402940e-01 3.65396560e-01 -9.22366227e-01]\n", + " [ 1.20293666e-01 3.31995749e-01 -9.35579102e-01]\n", + " [ 1.14976217e-01 2DEBUG:root:optics_fp: xyfp shape: (96, 2)\n", + ".98388993e-01 -9.47493788e-01]\n", + " [ 1.09482973e-01 2.64783934e-01 -9.58072517e-01]\n", + " [ 1.03846069e-01 2.31392733e-01 -9.67302123e-01]\n", + " [ 9.80960380e-02 1.98433628e-01 -9.75192936e-01]\n", + " [ 8.99246841e-02 3.71328058e-01 -9.24136908e-01]\n", + " [ 8.48468613e-02 3.37711951e-01 -9.37417542e-01]\n", + " [ 7.96295117e-02 3.03874235e-01 -9.49378528e-01]\n", + " [ 7.43047056e-02 2.70024069e-01 -9.59982194e-01]\n", + " [ 6.89041025e-02 2.36373728e-01 -9.69216016e-01]\n", + " [ 6.34578352e-02 2.03140118e-01 -9.77091191e-01]\n", + " [ 5.39083277e-02 3.76848408e-01 -9.24704910e-01]\n", + " [ 4.88732685e-02 3.43083382e-01 -9.38032620e-01]\n", + " [ 4.37689883e-02 3.09083503e-01 -9.50027191e-01]\n", + " [ 3.86265193e-02 2.75059297e-01 -9.60651016e-01]\n", + " [ 3.34761992e-02 2.41223367e-01 -9.69892072e-01]\n", + " [ 2.83469970e-02 2.07791790e-01 -9.77762251e-01]\n", + " [ 1.75617878e-02 3.81911155e-01 -9.24032171e-01]\n", + " [ 1.25806005e-02 3.48065434e-01 -9.37385823e-01]\n", + " [ 7.60168631e-03 3.13973753e-01 -9.49401231e-01]\n", + " [ 2.65448223e-03 2.79847555e-01 -9.60040780e-01]\n", + " [-2.23261566e-03 2.45899816e-01 -9.69292678e-01]\n", + " [-7.03234659e-03 2.12346321e-01 -9.77169170e-01]]\n", + "DEBUG:root:radec2pix: lng: [224.22465666 219.9428498 215.04979529 209.49258103 203.25301711\n", + " 196.37209253 188.97143587 181.25779309 224.22465666 228.40166279\n", + " 233.19815281 238.6792283 244.87949815 251.77642798 259.26349599\n", + " 267.13824006 181.25779309 181.45651552 181.7293675 182.12731457\n", + " 182.76188514 183.93294711 186.8134933 204.42682228 267.13824006\n", + " 266.67578867 266.03490179 265.0879329 263.54803827 260.61180811\n", + " 252.90738353 204.42682228 222.44199402 216.7905754 210.16523251\n", + " 202.51687812 193.92347078 184.64535837 225.96080389 231.48791131\n", + " 238.01293878 245.61347707 254.24497485 263.67077373 181.36567301\n", + " 181.66068982 182.11730117 182.91819426 184.68697431 191.79462375\n", + " 266.92442169 266.24228499 265.17126169 263.2483557 258.80752919\n", + " 238.9103071 224.22429417 224.22429417 204.67204832 204.67204832\n", + " 224.17550953 229.73684595 236.38729877 244.24332674 253.28700279\n", + " 263.26773103 218.4700285 223.99636381 230.89540499 239.46063162\n", + " 249.83973486 261.78766678 211.69663969 216.8854629 223.71683254\n", + " 232.7982941 244.71540545 259.48183646 203.77225927 208.15895021\n", + " 214.29602039 223.21973304 236.48809111 255.41258234 194.75709541\n", + " 197.7504966 202.19079752 209.33692857 222.08957905 246.48817507\n", + " 184.93467768 185.99075879 187.61766642 190.44256036 196.50176943\n", + " 217.01878407]\n", + "DEBUG:root:radec2pix: xyfp: [[32.2358199 31.31614388]\n", + " [32.23338667 26.92971599]\n", + " [32.23095344 22.54328809]\n", + " [32.2285202 18.15686019]\n", + " [32.22608698 13.7704323 ]\n", + " [32.22365375 9.3840044 ]\n", + " [32.22122051 4.99757651]\n", + " [32.21878728 0.61114861]\n", + " [32.2358199 31.31614388]\n", + " [27.849392 31.31857712]\n", + " [23.46296411 31.32101035]\n", + " [19.07653621 31.32344358]\n", + " [14.69010831 31.3258768 ]\n", + " [10.30368042 31.32831004]\n", + " [ 5.91725252 31.33074327]\n", + " [ 1.53082462 31.3331765 ]\n", + " [32.21878728 0.61114861]\n", + " [27.83235938 0.61358184]\n", + " [23.44593149 0.61601507]\n", + " [19.0595036 0.6DEBUG:root:cartToSphere: vec: [[-0.00156258 0.20900824 0.97791263]\n", + " [-0.00157957 0.18154377 0.9833816 ]\n", + " [-0.00159468 0.15338464 0.98816527]\n", + " [-0.00160787 0.12463517 0.99220134]\n", + " [-0.00161907 0.09540199 0.99543751]\n", + " [-0.00162822 0.06579532 0.99783181]\n", + " [-0.00163527 0.03592916 0.999353 ]\n", + " [-0.00164017 0.00592057 0.99998113]\n", + " [-0.00156258 0.20900824 0.97791263]\n", + " [-0.0305812 0.20886066 0.97746714]\n", + " [-0.05948043 0.2084416 0.97622445]\n", + " [-0.08814769 0.2077524 0.97420169]\n", + " [-0.11647141 0.20679486 0.97142694]\n", + " [-0.14434091 0.20557063 0.96793926]\n", + " [-0.17164574 0.20408052 0.96378882]\n", + " [-0.19827444 0.20232383 0.95903718]\n", + " [-0.00164017 0.00592057 0.99998113]\n", + " [-0.03165868 0.00591961 0.99948121]\n", + " [-0.06155164 0.00591082 0.9980864 ]\n", + " [-0.09120162 0.00589429 0.995815 ]\n", + " [-0.12049415 0.00587015 0.99269668]\n", + " [-0.14931846 0.00583856 0.98877192]\n", + " [-0.17756745 0.00579969 0.98409154]\n", + " [-0.20513658 0.00575368 0.97871644]\n", + " [-0.19827444 0.20232383 0.95903DEBUG:root:radec2pix: curVec Shape: (96, 3)\n", + "184483 ]\n", + " [14.6730757 0.62088153]\n", + " [10.2866478 0.62331476]\n", + " [ 5.90021991 0.625748 ]\n", + " [ 1.513792 0.62818122]\n", + " [ 1.53082462 31.3331765 ]\n", + " [ 1.52839139 26.94674861]\n", + " [ 1.52595816 22.5603207 ]\n", + " [ 1.52352493 18.17389281]\n", + " [ 1.5210917 13.78746492]\n", + " [ 1.51865847 9.40103702]\n", + " [ 1.51622524 5.01460912]\n", + " [ 1.513792 0.62818122]\n", + " [32.219759 29.4036525 ]\n", + " [32.21677684 24.02765333]\n", + " [32.21379467 18.65165415]\n", + " [32.21081251 13.27565498]\n", + " [32.20783035 7.89965581]\n", + " [32.20484818 2.52365664]\n", + " [30.32331188 31.30220479]\n", + " [24.9473127 31.30518695]\n", + " [19.57131353 31.30816912]\n", + " [14.19531435 31.31115127]\n", + " [ 8.81931518 31.31413344]\n", + " [ 3.44331601 31.3171156 ]\n", + " [30.3062959 0.62720951]\n", + " [24.93029672 0.63019167]\n", + " [19.55429755 0.63317383]\n", + " [14.17829838 0.636156 ]\n", + " [ 8.80229921 0.63913816]\n", + " [ 3.42630004 0.64212033]\n", + " [ 1.54476372 29.42066847]\n", + " [ 1.54178156 24.0446693 ]\n", + " [ 1.53879939 18.66867013]\n", + " [ 1.53581723 13.29267096]\n", + " [ 1.53283507 7.91667178]\n", + " [DEBUG:root:radec2pix: fitpx: [[2135.5 4155.50000026]\n", + " [2135.5 3863.07142876]\n", + " [2135.5 3570.64285709]\n", + " [2135.5 3278.21428545]\n", + " [2135.5 2985.7857141 ]\n", + " [2135.49999999 2693.35714316]\n", + " [2135.50000001 2400.9285712 ]\n", + " [2135.49999993 2108.50000021]\n", + " [2135.5 4155.50000026]\n", + " [1843.07142855 4155.50000013]\n", + " [1550.64285715 4155.49999996]\n", + " [1258.2142856 4155.50000027]\n", + " [ 965.78571429 4155.49999999]\n", + " [ 673.357143 4155.4999998 ]\n", + " [ 380.92857155 4155.49999986]\n", + " [ 88.49999976 4155.50000025]\n", + " [2135.49999993 2108.50000021]\n", + " [1843.07142817 2108.50000006]\n", + " [1550.64285738 2108.49999998]\n", + " [1258.21428605 2108.49999998]\n", + " [ 965.78571448 2108.49999999]\n", + " [ 673.35714251 2108.50000001]\n", + " [ 380.92857138 2108.5 ]\n", + " [ 88.50000013 2108.5 ]\n", + " [ 88.49999976 4155.50000025]\n", + " [ 88.49999974 3863.0714288 ]\n", + " [ 88.49999989 3570.64285722]\n", + " [ 88.50000025 3278.21428557]\n", + " [ 88.50000013 2985.78571423]\n", + " [ 88.49999977 2693.35714293]\n", + " [ 88.49999999 2400.92857143]\n", + " [ 88.500718]\n", + " [-0.2000398 0.17576331 0.96389384]\n", + " [-0.20154417 0.1485108 0.9681552 ]\n", + " [-0.20278831 0.12067777 0.97175809]\n", + " [-0.20377138 0.09237455 0.97465079]\n", + " [-0.20449167 0.06371165 0.9767927 ]\n", + " [-0.20494724 0.03480051 0.97815416]\n", + " [-0.20513658 0.00575368 0.97871644]\n", + " [-0.00166992 0.19712565 0.98037681]\n", + " [-0.00169047 0.16298492 0.98662711]\n", + " [-0.00170796 0.12790428 0.99178505]\n", + " [-0.0017223 0.09207897 0.99575022]\n", + " [-0.00173334 0.05571194 0.99844538]\n", + " [-0.001741 0.01901436 0.99981769]\n", + " [-0.0142227 0.20888472 0.97783684]\n", + " [-0.04972296 0.20852129 0.97675304]\n", + " [-0.08493191 0.20775151 0.9744875 ]\n", + " [-0.1196437 0.20657854 0.97108738]\n", + " [-0.15365451 0.20500532 0.9666246 ]\n", + " [-0.18676067 0.20303275 0.96119621]\n", + " [-0.01473616 0.00602383 0.99987327]\n", + " [-0.05145726 0.00601719 0.99865707]\n", + " [-0.08787283 0.00599868 0.99611364]\n", + " [-0.12377083 0.00596852 0.99229288]\n", + " [-0.15894736 0.005927 0.98726927]\n", + " [-0.19320639 0.00587443 0.98114055]\n", + " [-0.19898619 0.190DEBUG:root:optics_fp: xyfp: [[ 0.16415906 -31.72847131]\n", + " [ 0.16601788 -27.34204313]\n", + " [ 0.1678767 -22.95561497]\n", + " [ 0.16973552 -18.56918678]\n", + " [ 0.17159434 -14.1827586 ]\n", + " [ 0.17345315 -9.79633043]\n", + " [ 0.17531197 -5.40990225]\n", + " [ 0.17717079 -1.02347407]\n", + " [ 0.16415906 -31.72847131]\n", + " [ 4.55058724 -31.73033014]\n", + " [ 8.93701541 -31.73218895]\n", + " [ 13.32344359 -31.73404778]\n", + " [ 17.70987177 -31.73590659]\n", + " [ 22.09629995 -31.73776541]\n", + " [ 26.48272812 -31.73962422]\n", + " [ 30.8691563 -31.74148305]\n", + " [ 0.17717079 -1.02347407]\n", + " [ 4.56359897 -1.02533289]\n", + " [ 8.95002714 -1.02719171]\n", + " [ 13.33645532 -1.02905053]\n", + " [ 17.7228835 -1.03090935]\n", + " [ 22.10931168 -1.03276817]\n", + " [ 26.49573986 -1.03462699]\n", + " [ 30.88216803 -1.0364858 ]\n", + " [ 30.8691563 -31.74148305]\n", + " [ 30.87101512 -27.35505487]\n", + " [ 30.87287394 -22.96862669]\n", + " [ 30.87473276 -18.58219851]\n", + " [ 30.87659158 -14.19577034]\n", + " [ 30.8784504 -9.80934216]\n", + " [ 30.88030922 -5.42291398]\n", + " [ 30.88216803 -1.0364858 ]\n", + " [ 0.17996951 -29.81597784]\n", + " [ 0.18224768 -24.43997833]\n", + " [ 0.18452584 -19.06397881]\n", + " [ 0.18680401 -13.6879793 ]\n", + " [ 0.18908217 -8.31197977]\n", + " [ 0.19136034 -2.93598025]\n", + " [ 2.07666524 -31.71428177]\n", + " [ 7.45266476 -31.71655993]\n", + " [ 12.82866428 -31.7188381 ]\n", + " [ 18.2046638 -31.72111627]\n", + " [ 23.58066331 -31.72339443]\n", + " [ 28.95666283 -31.7256726 ]\n", + " [ 2.08966426 -1.03928452]\n", + " [ 7.46566378 -1.04156269]\n", + " [ 12.8416633 -1.04384085]\n", + " [ 18.21766282 -1.04611902]\n", + " [ 23.59366233 -1.04839718]\n", + " [ 28.96966185 -1.05067535]\n", + " [ 30.85496675 -29.82897686]\n", + " [ 30.85724492 -24.45297735]\n", + " [ 30.85952308 -19.07697783]\n", + " [ 30.86180126 -13.70097831]\n", + " [ 30.86407941 -8.32497879]\n", + " [ 30.86635759 -2.94897928]\n", + " [ 0.17916541 -31.71347767]\n", + " [ 0.17916541 -31.71347767]\n", + " [ 30.86716168 -1.05147945]\n", + " [ 30.86716168 -1.05147945]\n", + " [ 2.07746934 -29.81678193]\n", + " [ 7.45346886 -29.8190601 ]\n", + " [ 12.82946837 -29.82133827]\n", + " [ 18.20546789 -29.82361643]\n", + " [ 23.58146741 -29.82589461]\n", + " [ 28.95746693 -29.82817277]\n", + " [ 2.07974751 -24.44078242]\n", + " [ 7.45574702 -24.44306058]\n", + " [ 12.83174654 -24.44533875]\n", + " [ 18.20774606 -24.44761692]\n", + " [ 23.58374558 -24.44989508]\n", + " [ 28.95974509 -24.45217325]\n", + " [ 2.08202567 -19.0647829 ]\n", + " [ 7.45802519 -19.06706107]\n", + " [ 12.83402471 -19.06933924]\n", + " [ 18.21002422 -19.0716174 ]\n", + " [ 23.58602374 -19.07389557]\n", + " [ 28.96202325 -19.07617373]\n", + " [ 2.08430384 -13.68878339]\n", + " [ 7.46030335 -13.69106155]\n", + " [ 12.83630287 -13.69333972]\n", + " [ 18.21230239 -13.69561789]\n", + " [ 23.58830191 -13.69789605]\n", + " [ 28.96430143 -13.70017422]\n", + " [ 2.086582 -8.31278387]\n", + " [ 7.46258152 -8.31506203]\n", + " [ 12.83858103 -8.3173402 ]\n", + " [ 18.21458055 -8.31961837]\n", + " [ 23.59058007 -8.32189653]\n", + " [ 28.96657959 -8.3241747 ]\n", + " [ 2.08886017 -2.93678435]\n", + " [ 7.46485969 -2.93906252]\n", + " [ 12.8408592 -2.94134068]\n", + " [ 18.21685872 -2.94361885]\n", + " [ 23.59285824 -2.94589701]\n", + " [ 28.96885776 -2.94817518]]\n", + "84173 0.96124083]\n", + " [-0.20097311 0.15780847 0.9668021 ]\n", + " [-0.20256914 0.12384677 0.97140502]\n", + " [-0.20377339 0.08916013 0.97494968]\n", + " [-0.20458276 0.05395206 0.97736128]\n", + " [-0.2049938DEBUG:root:make_az_asym: xyp: [[32.31363499 31.47041645]\n", + " [32.3144687 27.08398795]\n", + " [32.31530242 22.69755946]\n", + " [32.31613613 18.31113097]\n", + " [32.31696984 13.92470248]\n", + " [32.31780355 9.53827398]\n", + " [32.31863726 5.15184549]\n", + " [32.31947097 0.765417 ]\n", + " [32.31363499 31.47041645]\n", + " [27.9272065 31.46958273]\n", + " [23.540778 31.46874902]\n", + " [19.15434951 31.46791531]\n", + " [14.76792102 31.4670816 ]\n", + " [10.38149253 31.46624788]\n", + " [ 5.99506403 31.46541417]\n", + " [ 1.60863554 31.46458045]\n", + " [32.31947097 0.765417 ]\n", + " [27.93304248 0.76458329]\n", + " [23.54661399 0.76374957]\n", + " [19.1601855 0.76291586]\n", + " [14.77375701 0.76208215]\n", + " [10.38732851 0.76124844]\n", + " [ 6.00090002 0.76041472]\n", + " [ 1.61447153 0.75958101]\n", + " [ 1.60863554 31.46458045]\n", + " [ 1.60946926 27.07815197]\n", + " [ 1.61030297 22.69172348]\n", + " [ 1.61113668 18.30529498]\n", + " [ 1.61197039 13.91886648]\n", + " [ 1.6128041 9.53243799]\n", + " [ 1.61363782 5.1460095 ]\n", + " [ 1.61447153 0.75958101]\n", + " [32.29899849 29.55791363]\n", + " [32.30002028 24.18191372]\n", + " [32.30104209 18.80591382]\n", + " [32.30206388 13.42991392]\n", + " [32.30308568 8.05391402]\n", + " [32.30410748 2.67791411]\n", + " [30.40113787 31.45505294]\n", + " [25.02513797 31.45403115]\n", + " [19.64913807 31.45300935]\n", + " [14.27313817 31.45198755]\n", + " [ 8.89713826 31.45096576]\n", + " [ 3.52113836 31.44994396]\n", + " [30.40696816 0.7800535 ]\n", + " [25.03096826 0.7790317 ]\n", + " [19.65496836 0.7780099 ]\n", + " [14.27896845 0.77698811]\n", + " [ 8.90296855 0.77596631]\n", + " [ 3.52696865 0.77494451]\n", + " [ 1.62399904 29.55208334]\n", + " [ 1.62502084 24.17608344]\n", + " [ 1.62604264 18.80008353]\n", + " [ 1.62706443 13.42408364]\n", + " [ 1.62808623 8.04808373]\n", + " [ 1.62910803 2.67208383]\n", + " [32.29863784 31.4554136 ]\n", + " [32.29863784 31.4554136 ]\n", + " [ 1.62946868 0.77458386]\n", + " [ 1.62946868 0.77458386]\n", + " [30.40149852 29.55755297]\n", + " [25.02549862 29.55653118]\n", + " [19.64949872 29.55550938]\n", + " [14.27349882 29.55448759]\n", + " [ 8.89749891 29.55346579]\n", + " [ 3.52149901 29.55244399]\n", + " [30.40252032 24.18155307]\n", + " [25.02652042 24.18053128]\n", + " [19.65052052 24.17950948]\n", + " [14.27452061 24.17848769]\n", + " [ 8.89852071 24.17746589]\n", + " [ 3.52252081 24.17644409]\n", + " [30.40354212 18.80555317]\n", + " [25.02754221 18.80453137]\n", + " [19.65154231 18.80350958]\n", + " [14.27554241 18.80248779]\n", + " [ 8.89954251 18.80146598]\n", + " [ 3.5235426 18.80044419]\n", + " [30.40456392 13.42955327]\n", + " [25.02856401 13.42853147]\n", + " [19.65256411 13.42750967]\n", + " [14.27656421 13.42648788]\n", + " [ 8.9005643 13.42546608]\n", + " [ 3.5245644 13.42444429]\n", + " [30.40558571 8.05355336]\n", + " [25.02958581 8.05253157]\n", + " [19.6535859 8.05150977]\n", + " [14.277586 8.05048797]\n", + " [ 8.9015861 8.04946618]\n", + " [ 3.5255862 8.04844438]\n", + " [30.40660751 2.67755346]\n", + " [25.0306076 2.67653166]\n", + " [19.6546077 2.67550987]\n", + " [14.2786078 2.67448807]\n", + " [ 8.90260789 2.67346627]\n", + " [ 3.52660799 2.67244448]]\n", + "DEBUG:root:make_az_asym: xyp: [[-32.31281793 -31.43806373]\n", + " [-32.31091541 -27.05163558]\n", + " [-32.30901287 -22.66520742]\n", + " [-32.30711034 -18.27877926]\n", + " [-32.3052078 -13.8923511 ]\n", + " [-32.30330527 -9.50592294]\n", + " [-32.30140274 -5.11949478]\n", + " [-32.2995002 -0.73306663]\n", + " [-32.31281793 -31.43806373]\n", + " [-27.92638978 -31.43996627]\n", + " [-23.53996162 -31.4418688 ]\n", + " [-19.15353346 -31.44377134]DEBUG:root:radec2pix: curVec: [[ 0.61975497 -0.70922093 0.33602001]\n", + " [ 0.60370238 -0.71256575 0.35748214]\n", + " [ 0.58694348 -0.71534119 0.37918905]\n", + " [ 0.56951637 -0.71751235 0.40103259]\n", + " [ 0.5514665 -0.71905179 0.4229057 ]\n", + " [ 0.5328464 -0.71993887 0.44470522]\n", + " [ 0.51371563 -0.72015945 0.46633316]\n", + " [ 0.49414067 -0.71970587 0.48769709]\n", + " [ 0.61975497 -0.70922093 0.33602001]\n", + " [ 0.63510487 -0.69004751 0.34709686]\n", + " [ 0.65022748 -0.66995916 0.35827216]\n", + " [ 0.6650383 -0.64900738 0.36947731]\n", + " [ 0.6794581 -0.62725268 0.38064519]\n", + " [ 0.69341361 -0.60476322 0.39171292]\n", + " [ 0.70683774 -0.58161421 0.40262305]\n", + " [ 0.71966983 -0.55788772 0.41332388]\n", + " [ 0.49414067 -0.71970587 0.48769709]\n", + " [ 0.50904644 -0.70006581 0.50077897]\n", + " [ 0.52384808 -0.67945906 0.51373006]\n", + " [ 0.53846217 -0.65793856 0.52647444]\n", + " [ 0.55281191 -0.63556257 0.53894268]\n", + " [ 0.56682588 -0.61239641 0.55107082]\n", + " [ 0.58043717 -0.58851452 0.56279957]\n", + " [ 0.59358334 -0.56400145 0.5740742 ]\n", + " [ 0.71966983 -0.55788772 0.41332 1.5298529 2.54067261]\n", + " [32.22081158 31.30115221]\n", + " [32.22081158 31.30115221]\n", + " [ 1.52880032 0.6431729 ]\n", + " [ 1.52880032 0.6431729 ]\n", + " [30.32225929 29.40470508]\n", + " [24.94626012 29.40768724]\n", + " [19.57026095 29.41066941]\n", + " [14.19426178 29.41365157]\n", + " [ 8.8182626 29.41663373]\n", + " [ 3.44226343 29.4196159 ]\n", + " [30.31927713 24.02870591]\n", + " [24.94327796 24.03168807]\n", + " [19.56727878 24.03467023]\n", + " [14.19127961 24.0376524 ]\n", + " [ 8.81528044 24.04063456]\n", + " [ 3.43928127 24.04361672]\n", + " [30.31629496 18.65270673]\n", + " [24.9402958 18.6556889 ]\n", + " [19.56429662 18.65867106]\n", + " [14.18829744 18.66165322]\n", + " [ 8.81229827 18.66463538]\n", + " [ 3.4362991 18.66761755]\n", + " [30.31331281 13.27670756]\n", + " [24.93731363 13.27968972]\n", + " [19.56131446 13.28267189]\n", + " [14.18531529 13.28565406]\n", + " [ 8.80931611 13.28863621]\n", + " [ 3.43331694 13.29161838]\n", + " [30.31033064 7.90070839]\n", + " [24.93433147 7.90369055]\n", + " [19.55833229 7.90667271]\n", + " [14.18233312 7.90965488]\n", + " [ 8.80633395 7.91263704]\n", + " [ 3.43033477 7.9156192 ]\n", + " [30.30734847 2.52470921]\n", + " [24.9313493 2.52769138]\n", + " [1388]\n", + " [ 0.70407296 -0.56013059 0.43650313]\n", + " [ 0.68759965 -0.5619596 0.4597914 ]\n", + " [ 0.67028565 -0.56334343 0.48307487]\n", + " [ 0.65217284 -0.56425646 0.50624622]\n", + " [ 0.63331074 -0.56467874 0.52920263]\n", + " [ 0.61375805 -0.56459628 0.55184426]\n", + " [ 0.59358334 -0.56400145 0.5740742 ]\n", + " [ 0.61289777 -0.71068261 0.34537885]\n", + " [ 0.59274437 -0.71440353 0.37186249]\n", + " [ 0.57156693 -0.71723373 0.39860635]\n", + " [ 0.54944607 -0.71911968 0.42541263]\n", + " [ 0.52647853 -0.72002332 0.45209156]\n", + " [ 0.50277682 -0.71992131 0.47846503]\n", + " [ 0.62641635 -0.70098879 0.34090654]\n", + " [ 0.64508743 -0.6768681 0.35455857]\n", + " [ 0.6633327 -0.65142311 0.36829019]\n", + " [ 0.68100403 -0.62476163 0.38197699]\n", + " [ 0.69796656 -0.59700905 0.39550333]\n", + " [ 0.71409943 -0.56830668 0.40876585]\n", + " [ 0.50071469 -0.71126751 0.49333896]\n", + " [ 0.51892477 -0.68654013 0.50929337]\n", + " [ 0.53689466 -0.6604128 0.52497528]\n", + " [ 0.55448027 -0.63299053 0.54025422]\n", + " [ 0.57155 -0.60439382 0.55501235]\n", + " [ 0.58798248 -0.57476392 0.56914237]\n", + " [ 0.71293639 -0.5589966 0.42337277]\n", + " [ 0.69322682 -0.5614722 0.45186895]\n", + " [ 0.67223578 -0.56329425 0.48041507]\n", + " [ 0.65003779 -0.56441323 0.50881094]\n", + " [ 0.62672419 -0.56479247 0.53686708]\n", + " [ 0.60240718 -0.56440879 0.56440084]\n", + " [ 0.61975409 -0.70916933 0.33613051]\n", + " [ 0.61975409 -0.70916933 0.33613051]\n", + " [ 0.5936092 -0.56408916 0.57396127]\n", + " [ 0.5936092 -0.56408916 0.57396127]\n", + " [ 0.6195668 -0.7024812 0.35022443]\n", + " [ 0.63826212 -0.67829334 0.36405989]\n", + " [ 0.65653873 -0.65277074 0.37795138]\n", + " [ 0.67424839 -0.62602206 0.39177225]\n", + " [ 0.69125612 -0.59817289 0.40540619]\n", + " [ 0.70744081 -0.5693647 0.41874973]\n", + " [ 0.59941862 -0.70614841 0.37689752]\n", + " [ 0.61814506 -0.68178996 0.39122772]\n", + " [ 0.63647635 -0.65607229 0.40554532]\n", + " [ 0.65426424 -0.62910508 0.41972026]\n", + " [ 0.67137359 -0.60101367 0.43363587]\n", + " [ 0.68768235 -0.5719396 0.44718908]\n", + " [ 0.57822573 -0.70893406 0.40381618]\n", + " [ 0.5969276 -0.68443647 0.41859784]\n", + " [ 0.61526276 -0.65856166 0.43329929]\n", + " [ 0.63308348 -0.6314187 0.44778982]\n", + " [ 0.69.55535013 2.53067354]\n", + " [14.17935096 2.53365571]\n", + " [ 8.80335178 2.53663787]\n", + " [ 3.42735261 2.53962004]]\n", + "00013 2108.5 ]\n", + " [2134.5 4028.00000018]\n", + " [2134.5 3669.59999979]\n", + " [2134.5 3311.20000021]\n", + " [2134.5 2952.80000004]\n", + " [2134.5 2594.39999994]\n", + " [2134.50000001 2235.99999988]\n", + " [2007.99999999 4154.50000011]\n", + " [1649.6 4154.5 ]\n", + " [1291.20000005 4154.49999987]\n", + " [ 932.80000005 4154.49999992]\n", + " [ 574.4 4154.5 ]\n", + " [ 216. 4154.5 ]\n", + " [2008.00000002 2109.49999999]\n", + " [1649.60000012 2109.49999999]\n", + " [1291.19999984 2109.50000001]\n", + " [ 932.79999968 2109.50000001]\n", + " [ 574.39999959 2109.50000001]\n", + " [ 215.99999972 2109.50000001]\n", + " [ 89.4999999 4028.0000001 ]\n", + " [ 89.50000007 3669.59999994]\n", + " [ 89.49999997 3311.20000002]\n", + " [ 89.50000023 2952.7999999 ]\n", + " [ 89.49999997 2594.40000001]\n", + " [ 89.4999998 2236.00000002]\n", + " [2134.5 4154.50000005]\n", + " [2134.5 4154.50000005]\n", + " [ 89.49999997 2109.5 ]\n", + " [ 89.49999997 2109.5 ]\n", + " [2008. 4027.99999997]\n", + " [1649.59999996 4028.00000014]\n", + " [1291.20000001 4027.99999998]\n", + " [ 932.79999987 4028.00000021]\n", + " [ 574.40000006 4027.99999993]\n", + " [ 215.9999998 4028.0000002 ]\n", + " [2008. 3669.59999996]\n", + " [1649.60000001 3669.59999998]\n", + " [1291.20000007 3669.59999987]\n", + " [ 932.79999997 3669.60000004]\n", + " [ 574.39999998 3669.60000002]\n", + " [ 215.99999986 3669.60000012]\n", + " [2008. 3311.20000004]\n", + " [1649.59999995 3311.20000012]\n", + " [1291.19999997 3311.20000005]\n", + " [ 932.80000015 3311.19999984]\n", + " [ 574.40000003 3311.19999997]\n", + " [ 216.00000001 3311.2 ]\n", + " [2007.99999998 2952.80000014]\n", + " [1649.60000006 2952.7999999 ]\n", + " [1291.20000015 2952.79999984]\n", + " [ 932.80000014 2952.7999999 ]\n", + " [ 574.39999986 2952.80000008]\n", + " [ 215.99999973 2952.80000012]\n", + " [2007.99999998 2594.40000007]\n", + " [1649.60000022 2594.39999977]\n", + " [1291.20000005 2594.39999997]\n", + " [ 932.79999996 2594.40000002]\n", + " [ 574.39999995 2594.40000002]\n", + " [ 216.00000004 2594.39999999]\n", + " [2008.00000021 2235.99999975]\n", + " [1649.59999975 2236.00000009]\n", + " [1291.200000DEBUG:root:radec2pix: camVec: [[-0.00108623 -0.00110818 -0.00112898 -0.00114857 -0.00116686 -0.00118378\n", + " -0.00119922 -0.00121312 -0.00108623 -0.03008973 -0.05897582 -0.08763213\n", + " -0.11594722 -0.14381054 -0.17111212 -0.19774215 -0.00121312 -0.0312253\n", + " -0.06111305 -0.09075893 -0.12004913 -0.1488739 -0.17712688 -0.20470344\n", + " -0.19774215 -0.19951656 -0.20103291 -0.2022905 -0.20328809 -0.20402394\n", + " -0.20449622 -0.20470344 -0.00119558 -0.00122271 -0.00124786 -0.00127089\n", + " -0.00129164 -0.00130994 -0.01373956 -0.04922259 -0.08441749 -0.11911871\n", + " -0.1531227 -0.18622706 -0.01430615 -0.05102028 -0.08743049 -0.12332566\n", + " -0.15850368 -0.19276957 -0.19845732 -0.20045757 -0.20206974 -0.20329178\n", + " -0.20412054 -0.20455274 -0.00118556 -0.00118556 -0.20461015 -0.20461015\n", + " -0.01379915 -0.04942232 -0.08475642 -0.11959564 -0.15373662 -0.18697743\n", + " -0.01395111 -0.04992687 -0.08561039 -0.12079486 -0.15527748 -0.18885795\n", + " -0.0140777 -0.05033965 -0.08630574 -0.12176792 -0.15652378 -0.19037482\n", + " -0.0141\n", + " [-14.7671053 -31.44567387]\n", + " [-10.38067715 -31.44757641]\n", + " [ -5.99424899 -31.44947894]\n", + " [ -1.60782083 -31.45138147]\n", + " [-32.2995002 -0.73306663]\n", + " [-27.91307204 -0.73496916]\n", + " [-23.52664389 -0.73687169]\n", + " [-19.14021573 -0.73877423]\n", + " [-14.75378757 -0.74067676]\n", + " [-10.36735941 -0.74257929]\n", + " [ -5.98093125 -0.74448183]\n", + " [ -1.59450309 -0.74638436]\n", + " [ -1.60782083 -31.45138147]\n", + " [ -1.60591829 -27.06495331]\n", + " [ -1.60401576 -22.67852516]\n", + " [ -1.60211323 -18.292097 ]\n", + " [ -1.60021069 -13.90566884]\n", + " [ -1.59830816 -9.51924068]\n", + " [ -1.59640563 -5.13281252]\n", + " [ -1.59450309 -0.74638436]\n", + " [-32.29698843 -29.52557043]\n", + " [-32.29465669 -24.14957093]\n", + " [-32.29232495 -18.77357144]\n", + " [-32.2899932 -13.39757194]\n", + " [-32.28766146 -8.02157244]\n", + " [-32.28532972 -2.64557295]\n", + " [-30.40031161 -31.42389325]\n", + " [-25.02431212 -31.42622499]\n", + " [-19.64831262 -31.42855673]\n", + " [-14.27231313 -31.43088848]\n", + " [ -8.89631363 -31.43322022]\n", + " [ -3.52031414 -31.43555196]\n", + " [-30.38700689 -0.74889614]\n", + " [-25.01100739 -0.75122788]\n", + " [-19.6350079 -0.75355962]\n", + " [-14.25900841 -0.75589136]\n", + " [ -8.88300892 -0.7582231 ]\n", + " [ -3.50700942 -0.76055484]\n", + " [ -1.62199131 -29.53887515]\n", + " [ -1.61965957 -24.16287565]\n", + " [ -1.61732783 -18.78687616]\n", + " [ -1.61499609 -13.41087666]\n", + " [ -1.61266434 -8.03487716]\n", + " [ -1.6103326 -2.65887768]\n", + " [-32.29781143 -31.42307024]\n", + " [-32.29781143 -31.42307024]\n", + " [ -1.60950959 -0.76137785]\n", + " [ -1.60950959 -0.76137785]\n", + " [-30.3994886 -29.52639343]\n", + " [-25.02348911 -29.52872517]\n", + " [-19.64748962 -29.53105692]\n", + " [-14.27149012 -29.53338866]\n", + " [ -8.89549063 -29.5357204 ]\n", + " [ -3.51949113 -29.53805214]\n", + " [-30.39715686 -24.15039394]\n", + " [-25.02115737 -24.15272568]\n", + " [-19.64515788 -24.15505742]\n", + " [-14.26915838 -24.15738916]\n", + " [ -8.89315889 -24.1597209 ]\n", + " [ -3.51715939 -24.16205264]\n", + " [-30.39482512 -18.77439444]\n", + " [-25.01882563 -18.77672618]\n", + " [-19.64282613 -18.77905793]\n", + " [-14.26682664 -18.78138967]\n", + " [ -8.89082714 -18.78372141]\n", + " [ -3.51482765 -18.78605315]\n", + " [-30.39249338 -13.39839495]\n", + " [-25.01649389 -13.40072669]\n", + " [-19.64049439 -13.40305843DEBUG:root:optics_fp: xyfp shape: (96, 2)\n", + "5 0.01842821 0.97858976]\n", + " [-0.00166195 0.20891558 0.97793227]\n", + " [-0.00166195 0.20891558 0.97793227]\n", + " [-0.20504339 0.00585328 0.97873538]\n", + " [-0.20504339 0.00585328 0.97873538]\n", + " [-0.01428012 0.19709662 0.98028006]\n", + " [-0.04992014 0.19675396 0.97918122]\n", + " [-0.08526785 0.1960282 0.976884 ]\n", + " [-0.1201171 0.19492287 0.97343565]\n", + " [-0.15426444 0.19344162 0.96890806]\n", + " [-0.18750721 0.19158618 0.96339804]\n", + " [-0.01442512 0.16296111 0.98652704]\n", + " [-0.05041664 0.16267787 0.98539031]\n", + " [-0.08611259 0.16207774 0.98301344]\n", + " [-0.12130566 0.1611649 0.97944414]\n", + " [-0.1557929 0.15994417 0.97475455]\n", + " [-0.1893742 0.15841917 0.96904116]\n", + " [-0.01454351 0.12788582 0.99168226]\n", + " [-0.0508198 0.12766348 0.99051471]\n", + " [-0.08679712 0.12719172 0.98807314]\n", + " [-0.1222667 0.12647465 0.98440592]\n", + " [-0.15702557 0.12551724 0.97958583]\n", + " [-0.19087549 0.12432386 0.97370947]\n", + " [-0.01463451 0.09206603 0.99564536]\n", + " [-0.05112705 0.09190638 0.99445424]\n", + " [-0.08731762 0.09156653 0.99196331]\n", + " [-0.122996 0.09104984 0.98822159]\n", + " [-0.15795892 0.09036055 0.98330257]\n", + " [-0.19200933 0.08950266 0.97730327]\n", + " [-0.01469728 0.05570466 0.99833911]\n", + " [-0.05133568 0.05560934 0.99713201]\n", + " [-0.08766989 0.05540465 0.99460762]\n", + " [-0.12348855 0.05509277 0.9908155 ]\n", + " [-0.15858803 0.05467653 0.98582976]\n", + " [-0.19277198 0.0541587 0.97974782]\n", + " [-0.01473117 0.01901283 0.99971071]\n", + " [-0.05144352 0.01898296 0.99849547]\n", + " [-0.08785049 0.01891568 0.99595406]\n", + " [-0.12374011 0.01881174 0.99213633]\n", + " [-0.1589085 0.01867213 0.98711673]\n", + " [-0.19315962 0.01849786 0.98099296]]\n", + "DEBUG:root:radec2pix: curVec: [[ 0.16660118 -0.58196993 -0.79596171]\n", + " [ 0.16375909 -0.55952661 -0.81247334]\n", + " [ 0.16072916 -0.53618435 -0.82865704]\n", + " [ 0.15751616 -0.51201152 -0.84441273]\n", + " [ 0.15412658 -0.48708209 -0.85964878]\n", + " [ 0.15056882 -0.46147725 -0.87428129]\n", + " [ 0.14685338 -0.43528629 -0.88823416]\n", + " [ 0.14299286 -0.40860643 -0.90143986]\n", + " [ 0.16660118 -0.58196993 -0.79596171]\n", + " [ 0.13805351 -0.58686265 -0.79783047]\n", + " [ 0.10947317 -0.59116905 -0.79908371]\n", + " [ 0.08097318 -0.59487706 -0.79972785]\n", + " [ 0.05266724 -0.59797955 -0.79977911]\n", + " [ 0.0246698 -0.60047383 -0.79926377]\n", + " [-0.00290348 -0.60236108 -0.79821845]\n", + " [-0.02993488 -0.60364591 -0.79669035]\n", + " [ 0.14299286 -0.40860643 -0.90143986]\n", + " [ 0.11347494 -0.41378979 -0.90327263]\n", + " [ 0.08395201 -0.41858263 -0.90429013]\n", + " [ 0.05454225 -0.42297136 -0.90450007]\n", + " [ 0.02536188 -0.42694766 -0.90392061]\n", + " [-0.00347547 -0.43050833 -0.90257991]\n", + " [-0.03185834 -0.4336549 -0.90051567]\n", + " [-0.0596757 -0.43639331 -0.89777486]\n", + " [-0.02993488 -0.60364591 -0.79669035]\n", + " [-0.03445956 -0.58208163 -0.81239985]\n", + " [-0.03890507 -0.55961023 -0.82784225]\n", + " [-0.04326616 -0.53630602 -0.84291393]\n", + " [-0.04753496 -0.51224705 -0.85752165]\n", + " [-0.05170117 -0.48751588 -0.87158204]\n", + " [-0.05575261 -0.46220025 -0.88502123]\n", + " [-0.0596757 -0.43639331 -0.89777486]\n", + " [ 0.16528753 -0.57231708 -0.80320184]\n", + " [ 0.16167645 -0.54419777 -0.82323114]\n", + " [ 0.15778798 -0.51479561 -0.84266745]\n", + " [ 0.15363334 -0.48424433 -0.86133862]\n", + " [ 0.14922802 -0.45269352 -0.8790902 ]\n", + " [ 0.14459223 -0.42031089 -0.8957856 ]\n", + " [ 0.15415572 -0.58409921 -0.79690911]\n", + " [ 0.11913045 -0.58970351 -0.79878515]\n", + " [ 0.08416836 -0.59441466 -0.79974177]\n", + " [ 0.0494785 -0.59821752 -0.79980477]\n", + " [ 0.0152716 -0.60110708 -0.79902256]\n", + " [-0.01823859 -0.60308693 -0.79746693]\n", + " [ 0.1301446 -0.41100526 -0.90229544]\n", + " [ 0.09394915 -0.41709717 -0.90399309]\n", + " [ 0.05786373 -0.42258825 -0.90447275]\n", + " [ 0.02210319 -0.427461 -0.90376354]\n", + " [-0.01312326 -0.43170946 -0.90191725]\n", + " [-0.0476107 -0.43533831 -0.8990071 ]\n", + " [-0.03182542 -0.59435628 -0.80357187]\n", + " [-0.03731723 -0.56730694 -0.82266048]\n", + " [-0.04268539 -0.5389685 -0.84124367]\n", + " [-0.04791649 -0.50948306 -0.85914552]\n", + " [-0.05299166 -0.47900268 -0.87621249]\n", + " [-0.05788785 -0.44769113 -0.89231253]\n", + " [ 0.16649434 -0.5819125 -0.79602605]\n", + " [ 0.16649434 -0.5819125 -0.79602605]\n", + " [-0.05956849 -0.43647361 -0.89774294]\n", + " [-0.05956849 -0.43647361 -0.89774294]\n", + "7814 -0.05065827 -0.08683905 -0.12251113 -0.15747231 -0.19152571\n", + " -0.0142515 -0.05087978 -0.08720594 -0.12301955 -0.15811848 -0.19230704\n", + " -0.01429691 -0.0510015 -0.08740238 -0.12328852 -0.15845779 -0.19271515]\n", + " [ 0.20994474 0.18250974 0.15437814 0.12565449 0.09644464 0.0668576\n", + " 0.03700641 0.00700791 0.20994474 0.20980966 0.20940234 0.20872399\n", + " 0.20777622 0.20656061 0.20507835 0.20333011 0.00700791 0.00701559\n", + " 0.00701392 0.00700302 0.00698305 0.00695418 0.00691659 0.00687038\n", + " 0.20333011 0.17679323 0.14956333 0.12175011 0.09346339 0.06481351\n", + " 0.03591173 0.00687038 0.19807534 0.16396932 0.12892083 0.09312409\n", + " 0.05677987 0.02009792 0.20982687 0.20947825 0.20872203 0.20756102\n", + " 0.20599809 0.20403521 0.00711509 0.00711803 0.00710683 0.00708177\n", + " 0.0070432 0.00699139 0.19185821 0.1588536 0.12491703 0.09025061\n", + " 0.0550575 0.01954302 0.20985223 0.20985223 0.00696998 0.00696998\n", + " 0.19805172 0.19772367 0.19701128 0.19591776 0.19444643 0.19259955\n", + " 0.16395068 0.1636812 0.16309354 0.16219177 0.16098028 0.15946229\n", + " 0.12890725 0.1286975 0.12823673 0.12752928 0.12657997 0.12539259\n", + " 0.09311572 0.09296747 0.092637 0.09212815 0.0914453 0.09059206\n", + " 0.05677687 0.05669199 0.05649545 0.05618991 0.05577844 0.0552636\n", + " 0.02010041 0.0200803 0.02002048 0.0199219 0.01978566 0.01961272]\n", + " [ 0.97771265 0.98320342 0.98801119 0.9920734 0.99533767 0.99776183\n", + " 0.99931431 0.99997471 0.97771265 0.97727914 0.97604944 0.97404051\n", + " 0.97128023 0.96780744 0.96367189 0.95893426 0.99997471 0.99948775\n", + " 0.99810621 0.99584827 0.99274339 0.98883174 0.98416372 0.97879993\n", + " 0.95893426 0.96381393 0.96809947 0.97172808 0.97464791 0.97681802\n", + " 0.97820838 0.97879993 0.98018607 0.98646468 0.9916541 0.9956537\n", + " 0.99838589 0.99979716 0.97764201 0.9765736 0.97432479 0.97094241\n", + " 0.96649792 0.96108746 0.99987235 0.99867225 0.99614527 0.99234098\n", + " 0.98733327 0.98121915 0.96114781 0.96673797 0.971372 0.97494989\n", + " 0.97739627 0.97866043 0.97773239 0.97773239 0.97881873 0.97881873\n", + " 0.98009443 0.97901113 0.97673072 0.97330012 0.96879081 0.96329894\n", + " 0.98636988 0.98524909 0.98288929 0.97933775 0.97466623 0.96897082\n", + " 0.99155673 0.99040541 0.9879811 0.98433168 0.97952939 0.97367044\n", + " 0.99555434 0.9943796 0.99190593 0.98818188 0.98328034 0.97729779\n", + " 0.99828517 0.99709441 0.99458704 0.99081223 0.98584345 0.97977749\n", + " 0.99969574 0.99849668 0.99597189 0.99217088 0.98716749 0.98105872]]\n", + "DEBUG:root:radec2pix: lat: [73.26908943 74.24907619 75.16003276 75.97420276 76.66164507 77.19203919\n", + " 77.53795274 77.67919539 73.26908943 74.27917066 75.22575502 76.08096918\n", + " 76.81416078 77.39343277 77.78879656 77.97677996 77.67919539 79.27760057\n", + " 80.9086962 82.56716816 84.24766937 85.94438651 87.64930302 89.3245763\n", + " 77.97677996 79.57988268 81.21386953 82.87289707 84.55034798 86.23677698\n", + " 87.90848861 89.3245763 73.70687233 74.86526918 75.89266936 76.7347974\n", + " 77.33616788 77.64902834 73.71922865 74.91822462 75.99447399 76.89265343\n", + " 77.55435927 77.92679672 78.37161008 80.3532483 82.37868114 84.43807116\n", + " 86.5205023 88.60550058 78.67128345 80.65746446 82.68422414 84.73967937\n", + " 86.80532112 88.79773368 73.27606371 73.27606371 89.31677804 89.31677804\n", + " 74.16894713 75.42332545 76.55590489 77.50736059 78.21290493 78.61205636\n", + " 75.38223897 76.80151051 78.10907648 79.23409871 80.08944165 80.58344411\n", + " 76.46449862 78.05559614 79.5593541 80.89695848 81.95437214 82.58757556\n", + " 77.35718097 79.11401738 80.82399404 82.41287861 83.74766412 84.60361539\n", + " 77.99846994 79.89205969 81.78816951 83.63850339 85.33442441 86.58329889\n", + " 78.33357011 80.30591073 82.31728996 84.35260664 86.38369379 88.29053235]\n", + "5025462 -0.60313175 0.46195348]\n", + " [ 0.66665321 -0.57384221 0.47568752]\n", + " [ 0.55606862 -0.71078544 0.43078039]\n", + " [ 0.57468977 -0.68618148 0.44596709]\n", + " [ 0.59297715 -0.66018775 0.46101002]\n", + " [ 0.61078394 -0.63291184 0.47577893]\n", + " [ 0.62797545 -0.60447638 0.49015829]\n", + " [ 0.64442823 -0.57502264 0.50404486]\n", + " [ 0.53304397 -0.71166472 0.45759967]\n", + " [ 0.55152804 -0.68698693 0.47314456]\n", + " [ 0.56971539 -0.66091179 0.48848744]\n", + " [ 0.58746039 -0.63354532 0.50349838]\n", + " [ 0.60462938 -0.60500884 0.51806141]\n", + " [ 0.62109923 -0.57544354 0.53207187]\n", + " [ 0.50926449 -0.71154838 0.48409563]\n", + " [ 0.5275557 -0.68682846 0.49995165]\n", + " [ 0.54559126 -0.6607084 0.51555269]\n", + " [ 0.5632267 -0.63329333 0.53076855]\n", + " [ 0.58032986 -0.6047038 0.54548196]\n", + " [ 0.59677879 -0.57508105 0.55958633]]\n", + "DEBUG:root:radec2pix: ccdpx: [[-4.44999999e+01 -4.99999855e-01]\n", + " [-4.45000000e+01 2.91928571e+02]\n", + " [-4.45000000e+01 5.84357143e+02]\n", + " [-4.44999998e+01 8.76785714e+02]\n", + " [-4.45000001e+01 1.16921429e+03]\n", + " [-4.45000000e+01 1.46164286e+03]\n", + " [-4.45000000e+01 1.75407143e+03]\n", + " [-4.44999999e+01 2.04650000e+03]\n", + " [-4.44999999e+01 -4.99999855e-01]\n", + " [ 2.47928571e+02 -5.00000005e-01]\n", + " [ 5.40357143e+02 -5.00000101e-01]\n", + " [ 8.32785714e+02 -5.00000211e-01]\n", + "]\n", + " [-14.2644949 -13.40539017]\n", + " [ -8.8884954 -13.40772191]\n", + " [ -3.51249591 -13.41005365]\n", + " [-30.39016163 -8.02239545]\n", + " [-25.01416214 -8.02472719]\n", + " [-19.63816265 -8.02705893]\n", + " [-14.26216315 -8.02939068]\n", + " [ -8.88616366 -8.03172242]\n", + " [ -3.51016417 -8.03405416]\n", + " [-30.3878299 -2.64639596]\n", + " [-25.01183041 -2.6487277 ]\n", + " [-19.63583091 -2.65105944]\n", + " [-14.25983141 -2.65339118]\n", + " [ -8.88383191 -2.65572292]\n", + " [ -3.50783243 -2.65805467]]\n", + "DEBUG:root:radec2pix: camVec Shape: (3, 96)\n", + "DEBUG:root:radec2pix: lng: [ 90.42834373 90.49850377 90.5956611 90.73910961 90.97227481\n", + " 91.41759428 92.60593903 105.48424091 90.42834373 98.33000716\n", + " 105.9265086 112.99112584 119.3891666 125.0745167 130.06614193\n", + " 134.42085308 105.48424091 169.40901167 174.51469037 176.30215943\n", + " 177.21090794 177.76079422 178.12927502 178.39338736 134.42085308\n", + " 138.69611239 143.61480744 149.24344747 155.61405077 162.69499667\n", + " 170.36296391 178.39338736 90.48535945 90.59424595 90.76505154\n", + " 91.07156688 91.78204394 9 [ 1.12521429e+03 -4.99999718e-01]\n", + " [ 1.41764286e+03 -5.00000108e-01]\n", + " [ 1.71007143e+03 -4.99999976e-01]\n", + " [ 2.00250000e+03 -5.00000222e-01]\n", + " [-4.44999999e+01 2.04650000e+03]\n", + " [ 2.47928572e+02 2.04650000e+03]\n", + " [ 5.40357143e+02 2.04650000e+03]\n", + " [ 8.32785714e+02 2.04650000e+03]\n", + " [ 1.12521429e+03 2.04650000e+03]\n", + " [ 1.41764286e+03 2.04650000e+03]\n", + " [ 1.71007143e+03 2.04650000e+03]\n", + " [ 2.00250000e+03 2.04650000e+03]\n", + " [ 2.00250000e+03 -5.00000222e-01]\n", + " [ 2.00250000e+03 2.91928571e+02]\n", + " [ 2.00250000e+03 5.84357143e+02]\n", + " [ 2.00250000e+03 8.76785714e+02]\n", + " [ 2.00250000e+03 1.16921429e+03]\n", + " [ 2.00250000e+03 1.46164286e+03]\n", + " [ 2.00250000e+03 1.75407143e+03]\n", + " [ 2.00250000e+03 2.04650000e+03]\n", + " [-4.35000000e+01 1.27000000e+02]\n", + " [-4.35000000e+01 4.85400000e+02]\n", + " [-4.34999998e+01 8.43800000e+02]\n", + " [-4.35000001e+01 1.20220000e+03]\n", + " [-4.35000000e+01 1.56060000e+03]\n", + " [-4.34999999e+01 1.91900000e+03]\n", + " [ 8.29999998e+01 4.99999766e-01]\n", + " [ 4.41400000e+02 4.99999737e-01]\n", + " [ 7.99800000e+02 4DEBUG:root:radec2pix: curVec Shape: (96, 3)\n", + "DEBUG:root:make_az_asym: xyp: shape: (96, 2)\n", + "DEBUG:root:make_az_asym: xyp: [[ 0.16415906 -31.72847131]\n", + " [ 0.16601788 -27.34204313]\n", + " [ 0.1678767 -22.95561497]\n", + " [ 0.16973552 -18.56918678]\n", + " [ 0.17159434 -14.1827586 ]\n", + " [ 0.17345315 -9.79633043]\n", + " [ 0.17531197 -5.40990225]\n", + " [ 0.17717079 -1.02347407]\n", + " [ 0.16415906 -31.72847131]\n", + " [ 4.55058724 -31.73033014]\n", + " [ 8.93701541 -31.73218895]\n", + " [ 13.32344359 -31.73404778]\n", + " [ 17.70987177 -31.73590659]\n", + " [ 22.09629995 -31.73776541]\n", + " [ 26.48272812 -31.73962422]\n", + " [ 30.8691563 -31.74148305]\n", + " [ 0.17717079 -1.02347407]\n", + " [ 4.56359897 -1.02533289]\n", + " [ 8.95002714 -1.02719171]\n", + " [ 13.33645532 -1.02905053]\n", + " [ 17.7228835 -1.03090935]\n", + " [ 22.10931168 -1.03276817]\n", + " [ 26.49573986 -1.03462699]\n", + " [ 30.88216803 -1.0364858 ]\n", + " [ 30.8691563 -31.74148305]\n", + " [ 30.87101512 -27.35505487]\n", + " [ 30.87287394 -22.96862669]\n", + " [ 30.87473276 -18.58219851]\n", + " [ 30.87659158 -14.19577034]\n", + " [ 30.8784504 -9.80934216]\n", + " [ 30.88030922 -5.42291398]\n", + " [ 30.88216803 -1.0364858 ]\n", + " [ 0.17996951 -29.81597784]\n", + " [ 0.18224768 -24.43997833]\n", + " [ 0.18452584 -19.06397881]\n", + " [ 0.18680401 -13.6879793 ]\n", + " [ 0.18908217 -8.31197977]\n", + " [ 0.19136034 -2.93598025]\n", + " [ 2.07666524 -31.71428177]\n", + " [ 7.45266476 -31.71655993]\n", + " [ 12.82866428 -31.7188381 ]\n", + " [ 18.2046638 -31.72111627]\n", + " [ 23.58066331 -31.72339443]\n", + " [ 28.95666283 -31.7256726 ]\n", + " [ 2.08966426 -1.03928452]\n", + " [ 7.46566378 -1.04156269]\n", + " [ 12.8416633 -1.04384085]\n", + " [ 18.21766282 -1.04611902]\n", + " [ 23.59366233 -1.04839718]\n", + " [ 28.96966185 -1.05067535]\n", + " [ 30.85496675 -29.82897686]\n", + " [ 30.85724492 -24.45297735]\n", + " [ 30.85952308 -19.07697783]\n", + " [ 30.86180126 -13.70097831]\n", + " [ 30.86407941 -8.32497879]\n", + " [ 30.86635759 -2.94897928]\n", + " [ 0.17916541 -31.71347767]\n", + " [ 0.17916541 -31.71347767]\n", + " [ 30.86716168 -1.05147945]\n", + " [ 30.86716168 -1.05147945]\n", + " [ 2.07746934 -29.81678193]\n", + " [ 7.45346886 -29.8190601 ]\n", + " [ 12.82946837 -29.82133827]\n", + " [ 18.20546789 -29.82361643]\n", + " [ 23.58146741 -29.8258926 2235.99999995]\n", + " [ 932.79999972 2236.00000004]\n", + " [ 574.39999974 2236.00000003]\n", + " [ 216.00000028 2235.99999998]]\n", + "DEBUG:root:make_az_asym: xyp: shape: (96, 2)\n", + ".99999723e-01]\n", + " [ 1.15820000e+03 5.00000251e-01]\n", + " [ 1.51660000e+03 4.99999874e-01]\n", + " [ 1.87500000e+03 5.00000148e-01]\n", + " [ 8.30000001e+01 2.04550000e+03]\n", + " [ 4.41400000e+02 2.04550000e+03]\n", + " [ 7.99800000e+02 2.04550000e+03]\n", + " [ 1.15820000e+03 2.04550000e+03]\n", + " [ 1.51660000e+03 2.04550000e+03]\n", + " [ 1.87500000e+03 2.04550000e+03]\n", + " [ 2.00150000e+03 1.27000000e+02]\n", + " [ 2.00150000e+03 4.85400000e+02]\n", + " [ 2.00150000e+03 8.43800000e+02]\n", + " [ 2.00150000e+03 1.20220000e+03]\n", + " [ 2.00150000e+03 1.56060000e+03]\n", + " [ 2.00150000e+03 1.91900000e+03]\n", + " [-4.35000002e+01 4.99999824e-01]\n", + " [-4.35000002e+01 4.99999824e-01]\n", + " [ 2.00150000e+03 2.04550000e+03]\n", + " [ 2.00150000e+03 2.04550000e+03]\n", + " [ 8.30000001e+01 1.27000000e+02]\n", + " [ 4.41400000e+02 1.27000000e+02]\n", + " [ 7.99800000e+02 1.27000000e+02]\n", + " [ 1.15820000e+03 1.27000000e+02]\n", + " [ 1.51660000e+03 1.2DEBUG:root:fitpix2pix: ccdpx: shape: (96, 2)\n", + "5.23155859 93.89518731 103.41200836\n", + " 112.23547382 120.07805375 126.85210045 132.60955299 157.76630729\n", + " 173.33036525 176.09473451 177.23920333 177.86448301 178.25846094\n", + " 136.19687489 141.86022321 148.55920823 156.36843482 165.22645267\n", + " 174.86312285 90.45578538 90.45578538 178.36484692 178.36484692\n", + " 94.14397512 104.23659596 113.5079539 121.64257424 128.57141019\n", + " 134.38353176 95.05856666 107.21909912 117.98189812 126.96805941\n", + " 134.24672537 140.08615622 96.48795214 111.70632897 124.31008611\n", + " 134.03082213 141.36316306 146.92239982 99.03197846 119.08696476\n", + " 133.63934958 143.48868891 150.22824427 155.00803043 104.7802641\n", + " 132.71160718 147.70838425 155.95659867 160.97729932 164.30745367\n", + " 127.76858297 159.74564279 167.84877649 171.35573132 173.29833797\n", + " 174.52977301]\n", + " [ 0.1529005 -0.5745138 -0.80408664]\n", + " [ 0.11773885 -0.5801558 -0.80595087]\n", + " [ 0.08264201 -0.58491865 -0.80687079]\n", + " [ 0.04781936 -0.58878761 -0.80687202]\n", + " [ 0.01348134 -0.59175826 -0.80600274]\n", + " [-0.02015902 -0.59383483 -0.80433439]\n", + " [ 0.14916764 -0.54642022 -0.82412011]\n", + " [ 0.11366385 -0.55216337 -0.82595166]\n", + " [ 0.0782309 -0.55706929 -0.82677309]\n", + " [ 0.04307932 -0.56112403 -0.82660994]\n", + " [ 0.00841902 -0.56432459 -0.82551007]\n", + " [-0.02553917 -0.56667693 -0.82354418]\n", + " [ 0.14518046 -0.51703996 -0.84355931]\n", + " [ 0.10940087 -0.52287641 -0.84535892]\n", + " [ 0.07369982 -0.52792165 -0.84608928]\n", + " [ 0.03828928 -0.53216193 -0.84577634]\n", + " [ 0.00337889 -0.53559494 -0.84446826]\n", + " [-0.03082253 -0.53822777 -0.84223562]\n", + " [ 0.14095085 -0.48650669 -0.86223205]\n", + " [ 0.10496364 -0.49242886 -0.86400026]\n", + " [ 0.06906383 -0.49761071 -0.86464661]\n", + " [ 0.0334648 -0.50203798 -0.86419788]\n", + " [-0.00162392 -0.50570817 -0.86270308]\n", + " [-0.0359952 -0.50862863 -0.86023326]\n", + " [ 0.13649511 -0.45496984 -0.87998382]\n", + " [ 0.10037056 -0.46096995 -0.8817213 ]\n", + " [ 0.06434292 -0.46628575 -0.8822911 ]\n", + " [ 0.02862662 -0.47090187 -0.88172101]\n", + " [-0.00656889 -0.47481476 -0.88006124]\n", + " [-0.04103774 -0.47803112 -0.8773837 ]\n", + " [ 0.13183413 -0.42259698 -0.89667807]\n", + " [ 0.0956443 -0.42866656 -0.89838585]\n", + " [ 0.0595611 -0.43411275 -0.89888742]\n", + " [ 0.02379938 -0.43891864 -0.89821156]\n", + " [-0.01143157 -0.44307899 -0.89640969]\n", + " [-0.04592664 -0.44659908 -0.8935547 ]]\n", + "DEBUG:root:fitpix2pix: visCut: True\n", + "461]\n", + " [ 28.95746693 -29.82817277]\n", + " [ 2.07974751 -24.44078242]\n", + " [ 7.45574702 -24.44306058]\n", + " [ 12.83174654 -24.44533875]\n", + " [ 18.20774606 -24.44761692]\n", + " [ 23.58374558 -24.44989508]\n", + " [ 28.95974509 -24.45217325]\n", + " [ 2.08202567 -19.0647829 ]\n", + " [ 7.45802519 -19.06706107]\n", + " [ 12.83402471 -19.06933924]\n", + " [ 18.21002422 -19.0716174 ]\n", + " [ 23.58602374 -19.07389557]\n", + " [ 28.96202325 -19.07617373]\n", + " [ 2.08430384 -13.68878339]\n", + " [ 7.46030335 -13.69106155]\n", + " [ 12.83630287 -13.69333972]\n", + " [ 18.21230239 -13.69561789]\n", + " [ 23.58830191 -13.69789605]\n", + " [ 28.96430143 -13.70017422]\n", + " [ 2.086582 -8.31278387]\n", + " [ 7.46258152 -8.31506203]\n", + " [ 12.83858103 -8.3173402 ]\n", + " [ 18.21458055 -8.31961837]\n", + " [ 23.59058007 -8.32189653]\n", + " [ 28.96657959 -8.3241747 ]\n", + " [ 2.0DEBUG:root:radec2pix: curVec Shape: (96, 3)\n", + "8886017 -2.93678435]\n", + " [ 7.46485969 -2.93906252]\n", + " [ 12.8408592 -2.94134068]\n", + " [ 18.21685872 -2.94361885]\n", + " [ 23.59285824 -2.94589701]\n", + " [ 28.96885776 -2.94817518]]\n", + "DEBUG:root:radec2pix: lat: [77.93541901 79.53990642 81.17639652 82.83971343 84.5247522 86.22632371\n", + " 87.93883494 89.6479978 77.93541901 77.81390272 77.48107187 76.95718255\n", + " 76.27047293 75.45239232 74.53398915 73.54392335 89.6479978 88.15433501\n", + " 86.45486555 84.75631331 83.07112985 81.40595581 79.76638457 78.15778269\n", + " 73.54392335 74.55657104 75.50172983 76.35064507 77.07169654 77.63217256\n", + " 78.00180643 78.15778269 78.63066146 80.61929653 82.650836 84.71585314\n", + " 86.80474047 88.90593385 77.91466044 77.62156704 77.02994397 76.1887385\n", + " 75.15547704 73.98639339 89.08782254 87.03029774 84.94699254 82.88191704\n", + " 80.84778676 78.85482091 73.9956629 75.19522506 76.26518392 77.14846305\n", + " 77.78520091 78.12246539 77.9408027 77.9408027 78.1630712 78.1630712\n", + " 78.60257643 78.28825427 77.65661DEBUG:root:make_az_asym: xyp: shape: (96, 2)\n", + "7000000e+02]\n", + " [ 1.87500000e+03 1.27000000e+02]\n", + " [ 8.29999998e+01 4.85400000e+02]\n", + " [ 4.41400000e+02 4.85400000e+02]\n", + " [ 7.99800000e+02 4.85400000e+02]\n", + " [ 1.15820000e+03 4.85400000e+02]\n", + " [ 1.51660000e+03 4.85400000e+02]\n", + " [ 1.87500000e+03 4.85400000e+02]\n", + " [ 8.30000003e+01 8.43800000e+02]\n", + " [ 4.41400000e+02 8.43800000e+02]\n", + " [ 7.99800000e+02 8.43800000e+02]\n", + " [ 1.15820000e+03 8.43800000e+02]\n", + " [ 1.51660000e+03 8.43800000e+02]\n", + " [ 1.87500000e+03 8.43800000e+02]\n", + " [ 8.29999997e+01 1.20220000e+03]\n", + " [ 4.41400000e+02 1.20220000e+03]\n", + " [ 7.99800000e+02 1.20220000e+03]\n", + " [ 1.15820000e+03 1.20220000e+03]\n", + " [ 1.51660000e+03 1.20220000e+03]\n", + " [ 1.87500000e+03 1.20220000e+03]\n", + " [ 8.30000001e+01 1.56060000e+03]\n", + " [ 4.41400000e+02 1.56060000e+03]\n", + " [ 7.99800000e+02 1.56060000e+03]\n", + " [ 1.15820000e+03 1.56060000e+03]\n", + " [ 1.51660000e+03 1.56060000e+03]\n", + " [ 1.87500000e+03 1.56060000e+03]\n", + " [ 8.30000000e+01 1.91900000e+03]\n", + " [ 4.41400000e+02 1.91900000e+DEBUG:root:radec2pix: xyfp: [[-32.31281793 -31.43806373]\n", + " [-32.31091541 -27.05163558]\n", + " [-32.30901287 -22.66520742]\n", + " [-32.30711034 -18.27877926]\n", + " [-32.3052078 -13.8923511 ]\n", + " [-32.30330527 -9.50592294]\n", + " [-32.30140274 -5.11949478]\n", + " [-32.2995002 -0.73306663]\n", + " [-32.31281793 -31.43806373]\n", + " [-27.92638978 -31.43996627]\n", + " [-23.53996162 -31.4418688 ]\n", + " [-19.15353346 -31.44377134]\n", + " [-14.7671053 -31.44567387]\n", + " [-10.38067715 -31.44757641]\n", + " [ -5.99424899 -31.44947894]\n", + " [ -1.60782083 -31.45138147]\n", + " [-32.2995002 -0.73306663]\n", + " [-27.91307204 -0.73496916]\n", + " [-23.52664389 -0.73687169]\n", + " [-19.14021573 -0.73877423]\n", + " [-14.75378757 -0.74067676]\n", + " [-10.36735941 -0.74257929]\n", + " [ -5.98093125 -0.74448183]\n", + " [ -1.59450309 -0.74638436]\n", + " [ -1.60782083 -31.45138147]\n", + " [ -1.60591829 -27.06495331]\n", + " [ -1.60401576 -22.67852516]\n", + " [ -1.60211323 -18.292097 ]\n", + " [ -1.60021069 -13.90566884]\n", + " [ -1.59830816 -9.51924068]\n", + " [ -1.59640563 -5.13281252]\n", + " [ -1.59450309 -0.74638436]\n", + " [-32.29698843 -29.52557043]\n", + " [-32.29465669 -24.14957093]\n", + " [-32.29232495 -18.77357144]\n", + " [-32.2899932 -13.39757194]\n", + " [-32.28766146 -8.02157244]\n", + " [-32.28532972 -2.64557295]\n", + " [-30.40031161 -31.42389325]\n", + " [-25.02431212 -31.42622499]\n", + " [-19.64831262 -31.42855673]\n", + " [-14.27231313 -31.43088848]\n", + " [ -8.89631363 -31.43322022]\n", + " [ -3.52031414 -31.43555196]\n", + " [-30.38700689 -0.74889614]\n", + " [-25.01100739 -0.75122788]\n", + " [-19.6350079 -0.75355962]\n", + " [-14.25900841 -0.75589136]\n", + " [ -8.88300892 -0.7582231 ]\n", + " [ -3.50700942 -0.76055484]\n", + " [ -1.62199131 -29.53887515]\n", + " [ -1.61965957 -24.16287565]\n", + " [ -1.61732783 -18.78687616]\n", + " [ -1.61499609 -13.41087666]\n", + " [ -1.61266434 -8.03487716]\n", + " [ -1.6103326 -2.65887768]\n", + " [-32.29781143 -31.42307024]\n", + " [-32.29781143 -31.42307024]\n", + " [ -1.60950959 -0.76137785]\n", + " [ -1.60950959 -0.76137785]\n", + " [-30.3994886 -29.52639343]\n", + " [-25.02348911 -29.52872517]\n", + " [-19.64748962 -29.53105692]\n", + " [-14.27149012 -29.53338866]\n", + " [ -8.89549063 -29.5357204 ]\n", + " [ -3.51949113 -29.53805214]\n", + " [-30.39715686 -24.15039394]\n", + " [-25.02115737 -24.15272568]\n", + "779 76.76410296 75.67504453 74.45024854\n", + " 80.58418271 80.19408276 79.42435182 78.36269898 77.09829541 75.70590081\n", + " 82.60493805 82.10218621 81.14204779 79.86827274 78.40301429 76.83279998\n", + " 84.65101194 83.96303088 82.73111849 81.1974567 79.51499711 77.7695032\n", + " 86.69730834 85.65959593 84.04717305 82.22861822 80.34304005 78.44927716\n", + " 88.6217931 86.8566554 84.8442257 82.80989579 80.79300228 78.81115773]\n", + "03]\n", + " [ 7.99800000e+02 1.91900000e+03]\n", + " [ 1.15820000e+03 1.91900000e+03]\n", + " [ 1.51660000e+03 1.91900000e+03]\n", + " [ 1.87500000e+03 1.91900000e+03]]\n", + "DEBUG:root:radec2pix: xyfp: [[32.31363499 31.47041645]\n", + " [32.3144687 27.08398795]\n", + " [32.31530242 22.69755946]\n", + " [32.31613613 18.31113097]\n", + " [32.31696984 13.92470248]\n", + " [32.31780355 9.53827398]\n", + " [32.31863726 5.15184549]\n", + " [32.31947097 0.765417 ]\n", + " [32.31363499 31.47041645]\n", + " [27.9272065 31.46958273]\n", + " [23.540778 31.46874902]\n", + " [19.15434951 31.46791531]\n", + " [14.76792102 31.4670816 ]\n", + " [10.38149253 31.46624788]\n", + " [ 5.99506403 31.46541417]\n", + " [ 1.60863554 31.46458045]\n", + " [32.31947097 0.765417 ]\n", + " [27.93304248 0.76458329]\n", + " [23.54661399 0.76374957]\n", + " [19.1601855 0.76291586]\n", + " [14.77375701 0.76208215]\n", + " [10.38732851 0.76124844]\n", + " [ 6.00090002 0.76041472]\n", + " [ 1.61447153 0.75958101]\n", + " [ 1.60863554 31.46458045]\n", + " [ 1.60946926 27.07815197]\n", + " [ 1.61030297 22.69172348]\n", + " [ 1.61113668 18.30529498]\n", + " [ 1.61197039 13.91886648]\n", + " [ 1.6128041 9.53243799]\n", + " [ 1.61363782 5.1460095 ]\n", + " [ 1.61447153 0.75958101]\n", + " [32.29899849 29.55791363]\n", + " [32.30002028 24.18191372]\n", + " [32.30104209 18.80591382]\n", + " [32.30206388 13.42991392]\n", + " [32.30308568 8.05391402]\n", + " [32.30410748 2.67791411]\n", + " [30.40113787 31.45505294]\n", + " [25.02513797 31.45403115]\n", + " [19.64913807 31.45300935]\n", + " [14.27313817 31.45198755]\n", + " [ 8.89713826 31.45096576]\n", + " [ 3.52113836 31.44994396]\n", + " [30.40696816 0.7800535 ]\n", + " [25.03096826 0.7790317 ]\n", + " [19.65496836 0.7780099 ]\n", + " [14.27896845 0.77698811]\n", + " [ 8.90296855 0.77596631]\n", + " [ 3.52696865 0.77494451]\n", + " [ 1.62399904 29.55208334]\n", + " [ 1.62502084 24.17608344]\n", + " [ 1.62604264 18.80008353]\n", + " [ 1.62706443 13.42408364]\n", + " [ 1.62808623 8.04808373]\n", + " [ 1.62910803 2.67208383]\n", + " [32.29863784 31.4554136 ]\n", + " [32.29863784 31.4554136 ]\n", + " [ 1.62946868 0.77458386]\n", + " [ 1.62946868 0.77458386]\n", + " [30.40149852 29.55755297]\n", + " [25.02549862 29.55653118]\n", + " [19.64949872 29.55550938]\n", + " [14.27349882 29.55448759]\n", + " [ 8.89749891 29.55346579]\n", + " [ 3.52149901 29.55244399]\n", + " [30.40252032 24.18155307]\n", + " [25.02652042 24.18053128]\n", + " [19.65052052 24.17950948]\n", + " [14.27452061 24.17848769]\n", + " [ 8.89852071 24.17746589]\n", + " [ 3.52252081 24.17644409]\n", + " [30.40354212 18.80555317]\n", + " [25.02754221 18.80453137]\n", + " [19.65154231 18.80350958]\n", + " [14.27554241 18.80248779]\n", + " [ 8.89954251 18.80146598]\n", + " [ 3.5235426 18.80044419]\n", + " [30.40456392 13.42955327]\n", + " [25.02856401 13.42853147]\n", + " [19.65256411 13.42750967]\n", + " [14.27656421 13.42648788]\n", + " [ 8.9005643 13.42546608]\n", + " [ 3.5245644 13.42444429]\n", + " [30.40558571 8.05355336]\n", + " [25.02958581 8.05253157]\n", + " [19.6535859 8.05150977]\n", + " [14.277586 8.05048797]\n", + " [ 8.9015861 8.04946618]\n", + " [ 3.5255862 8.04DEBUG:root:radec2pix: camVec: [[0.20658103 0.20838989 0.20993522 0.21121099 0.21221385 0.21294172\n", + " 0.21339307 0.21356684 0.20658103 0.18015754 0.1530338 0.12531307\n", + " 0.09710338 0.06851504 0.03965966 0.01064976 0.21356684 0.18621882\n", + " 0.15815829 0.12949192 0.10032565 0.07076705 0.04092766 0.01092393\n", + " 0.01064976 0.01072986 0.01079662 0.01085001 0.01088978 0.0109156\n", + " 0.01092708 0.01092393 0.20731213 0.20935192 0.21098964 0.21221814\n", + " 0.21303349 0.21343308 0.19515895 0.16228971 0.12847052 0.09389848\n", + " 0.05877657 0.02331064 0.20173739 0.16772694 0.13275239 0.09700904\n", + " 0.06069518 0.02401827 0.01078606 0.01087623 0.01094616 0.01099551\n", + " 0.01102363 0.01102984 0.2064986 0.2064986 0.01102671 0.01102671\n", + " 0.19592714 0.16292559 0.1289709 0.09426176 0.0590016 0.02339654\n", + " 0.19785166 0.16451646 0.13022261 0.09517088 0.05956467 0.02361044\n", + " 0.19939573 0.16579218 0.13122742 0.09590173 0.06001727 0.02378066\n", + " 0.20055377 0.16674959 0.13198281 0.09645193 0.06035751 0.0239064\n", + " 0.20132229 0.16738526 0.13248471 0.09681723 0.06058199 0.02398618\n", + " 0.20169858 0.16769559 0.13272857 0.09699294 0.06068709 0.02401844]\n", + " [0.20098859 0.17447006 0.14727238 0.11949936 0.09125926 0.06266255\n", + " 0.03382097 0.00484709 0.20098859 0.20282418 0.20440426 0.20572264\n", + " 0.20677589 0.2075618 0.2080787 0.20832528 0.00484709 0.00490326\n", + " 0.00495363 0.00499813 0.0050366 0.00506881 0.00509451 0.00511348\n", + " 0.20832528 0.18083307 0.15264908 0.12387974 0.09463112 0.06501141\n", + " 0.0351331 0.00511348 0.18952259 0.15655094 0.12266162 0.08805229\n", + " 0.05292621 0.01748945 0.20172997 0.20380791 0.20549566 0.20678588\n", + " 0.20767444 0.20815839 0.00497187 0.00503783 0.00509482 0.00514259\n", + " 0.00518073 0.00520877 0.19643015 0.16225698 0.1271506 0.09130636\n", + " 0.0549237 0.01821176 0.20090587 0.20090587 0.00521618 0.00521618\n", + " 0.19029998 0.19225876 0.19384904 0.19506507 0.19590316 0.19636024\n", + " 0.15719218 0.15880644 0.16011755 0.16112232 0.16181718 0.1621981\n", + " 0.12316354 0.12442767 0.12545686 0.12624866 0.12679897 0.1271029\n", + " 0.08841323 0.08932369 0.09006766 0.09064294 0.0910454 0.09127018\n", + " 0.05314506 0.05369842 0.05415286 0.05450669 0.05475678 0.05489951\n", + " 0.0175654 0.01775879 0.01791986 0.01804791 0.01814173 0.01819993]\n", + " [0.9575635 0.96235848 0.9665599 0.97010815 0.97295274 0.97505345\n", + " 0.97638084 0.97691643 0.9575635 0.96249967 0.96685033 0.97055388\n", + " 0.97355774 0.97581955 0.97730771 0.97800162 0.97691643 0.98249606\n", + " 0.98740135 0.99156788 0.99494191 0.99747999 0.99914912 0.99992726\n", + " 0.97800162 0.98345527 0.98822148 0.99223792 0.99545284 0.99782482\n", + " 0.9993229 0.99992726 0.95974104 0.96522722 0.96976157 0.97324727\n", + " 0.97561035 0.97680113 0.95980102 0.96546589 0.97018908 0.97386995\n", + " 0.97643056 0.97781731 0.97942703 0.98582062 0.99113614 0.99527021\n", + " 0.9981429 0.99969795 0.98045849 0.98668859 0.99182302 0.99576214\n", + " 0.9984297 0.99977331 0.95759864 0.95759864 0.9999256 0.9999256\n", + " 0.96197634 0.96772508 0.97251687 0.97625014 0.97884665 0.98025265\n", + " 0.96754604 0.97350647 0.97847046 0.98233503 0.98502145 0.98647571\n", + " 0.97214818 0.97827946 0.98338189 0.98735208 0.99011108 0.99160442\n", + " 0.97568503 0.98194493 0.98715164 0.99120174 0.99401595 0.99553917\n", + " 0.97808228 0.98442808 0.98970464 0.99380856 0.99666018 0.99820374\n", + " 0.97929012 0.98567886 0.99099042 0.99512142 0.99799196 0.99954584]]\n", + "844438]\n", + " [30.40660751 2.67755346]\n", + " [25.0306076 2.67653166]\n", + " [19.6546077 2.67550987]\n", + " [14.2786078 2.67448807]\n", + " [ 8.90260789 2.67346627]\n", + " [ 3.52660799 2.67244448]]\n", + "DEBUG:root:cartToSphere: vec: [[-0.00108623 0.20994474 0.97771265]\n", + " [-0.00110818 0.18250974 0.98320342]\n", + " [-0.00112898 0.15437814 0.98801119]\n", + " [-0.00114857 0.12565449 0.9920734 ]\n", + " [-0.00116686 0.09644464 0.99533767]\n", + " [-0.00118378 0.0668576 0.99776183]\n", + " [-0.00119922 0.03700641 0.99931431]\n", + " [-0.00121312 0.00700791 0.99997471]\n", + " [-0.00108623 0.20994474 0.97771265]\n", + " [-0.03008973 0.20980966 0.97727914]\n", + " [-0.05897582 0.20940234 0.97604944]\n", + " [-0.08763213 0.20872399 0.97404051]\n", + " [-0.11594722 0.20777622 0.97128023]DEBUG:root:radec2pix: camVec Shape: (3, 96)\n", + " [-19.64515788 -24.15505742]\n", + " [-14.26915838 -24.15738916]\n", + " [ -8.89315889 -24.1597209 ]\n", + " [ -3.51715939 -24.16205264]\n", + " [-30.39482512 -18.77439444]\n", + " [-25.01882563 -18.77672618]\n", + " [-19.64282613 -18.77905793]\n", + " [-14.26682664 -18.78138967]\n", + " [ -8.89082714 -18.78372141]\n", + " [ -3.51482765 -18.78605315]\n", + " [-30.39249338 -13.39839495]\n", + " [-25.01649389 -13.40072669]\n", + " [-19.64049439 -13.40305843]\n", + " [-14.2644949 -13.40539017]\n", + " [ -8.8884954 -13.40772191]\n", + " [ -3.51249591 -13.41005365]\n", + " [-30.39016163 -8.02239545]\n", + " [-25.01416214 -8.02472719]\n", + " [-19.63816265 -8.02705893]\n", + " [-14.26216315 -8.02939068]\n", + " [ -8.88616366 -8.03172242]\n", + " [ -3.51016417 -8.03405416]\n", + " [-30.3878299 -2.64639596]\n", + " [-25.01183041 -2.6487277 ]\n", + " [-19.63583091 -2.65105944]\n", + " [-14.25983141 -2.65339118]\n", + " [ -8.88383191 -2.65572292]\n", + " [ -3.50783243 -2.65805467]]\n", + "DEBUG:root:optics_fp: rtanth: [45.0390902 42.09683712 39.42396804 37.07878541 35.12698266 33.63710755\n", + " 32.6724136 32.28002056 45.0390902 42.DEBUG:root:radec2pix: xyfp: [[ 0.16415906 -31.72847131]\n", + " [ 0.16601788 -27.34204313]\n", + " [ 0.1678767 -22.95561497]\n", + " [ 0.16973552 -18.56918678]\n", + " [ 0.17159434 -14.1827586 ]\n", + " [ 0.17345315 -9.79633043]\n", + " [ 0.17531197 -5.40990225]\n", + " [ 0.17717079 -1.02347407]\n", + " [ 0.16415906 -31.72847131]\n", + " [ 4.55058724 -31.73033014]\n", + " [ 8.93701541 -31.73218895]\n", + " [ 13.32344359 -31.73404778]\n", + " [ 17.70987177 -31.73590659]\n", + " [ 22.09629995 -31.73776541]\n", + " [ 26.48272812 -31.73962422]\n", + " [ 30.8691563 -31.74148305]\n", + " [ 0.17717079 -1.02347407]\n", + " [ 4.56359897 -1.02533289]\n", + " [ 8.95002714 -1.02719171]\n", + " [ 13.33645532 -1.02905053]\n", + " [ 17.7228835 -1.03090935]\n", + " [ 22.10931168 -1.03276817]\n", + " [ 26.49573986 -1.03462699]\n", + " [ 30.88216803 -1.0364858 ]\n", + " [ 30.8691563 -31.74148305]\n", + " [ 30.87101512 -27.35505487]\n", + " [ 30.87287394 -22.96862669]\n", + " [ 30.87473276 -18.58219851]\n", + " [ 30.87659158 -14.19577034]\n", + " [ 30.8784504 -9.80934216]\n", + " [ 30.88030922 -5.42291398]\n", + " [ 30.88216803 -1.0364858 ]\n", + " [ 0.17996951 -29.81597784]\n", + " [ 0.18224768 -24.43997833]\n", + " [ 0.18452584 -19.06397881]\n", + " [ 0.18680401 -13.6879793 ]\n", + " [ 0.18908217 -8.31197977]\n", + " [ 0.19136034 -2.93598025]\n", + " [ 2.07666524 -31.71428177]\n", + " [ 7.45266476 -31.71655993]\n", + " [ 12.82866428 -31.7188381 ]\n", + " [ 18.2046638 -31.72111627]\n", + " [ 23.58066331 -31.72339443]\n", + " [ 28.95666283 -31.7256726 ]\n", + " [ 2.08966426 -1.03928452]\n", + " [ 7.46566378 -1.04156269]\n", + " [ 12.8416633 -1.04384085]\n", + " [ 18.21766282 -1.04611902]\n", + " [ 23.59366233 -1.04839718]\n", + " [ 28.96966185 -1.05067535]\n", + " [ 30.85496675 -29.82897686]\n", + " [ 30.85724492 -24.45297735]\n", + " [ 30.85952308 -19.07697783]\n", + " [ 30.86180126 -13.70097831]\n", + " [ 30.86407941 -8.32497879]\n", + " [ 30.86635759 -2.94897928]\n", + " [ 0.17916541 -31.71347767]\n", + " [ 0.17916541 -31.71347767]\n", + " [ 30.86716168 -1.05147945]\n", + " [ 30.86716168 -1.05147945]\n", + " [ 2.07746934 -29.81678193]\n", + " [ 7.45346886 -29.8190601 ]\n", + " [ 12.82946837 -29.82133827]\n", + " [ 18.20546789 -29.82361643]\n", + " [ 23.58146741 -29.82589461]\n", + " [ 28.95746693 -29.82817277]\n", + " [ 2.07974751 -24.44078242]\n", + " [ 7.45574702 -24.44306058]\n", + " [ 12.83174654 -24.44533875]\n", + " [ 18.20774606 -24.44761692]\n", + " [ 23.58374558 -24.44989508]\n", + " [ 28.95974509 -24.45217325]\n", + " [ 2.08202567 -19.0647829 ]\n", + " [ 7.45802519 -19.06706107]\n", + " [ 12.83402471 -19.06933924]\n", + " [ 18.21002422 -19.0716174 ]\n", + " [ 23.58602374 -19.07389557]\n", + " [ 28.96202325 -19.07617373]\n", + " [ 2.08430384 -13.68878339]\n", + " [ 7.46030335 -13.69106155]\n", + " [ 12.83630287 -13.69333972]\n", + " [ 18.21230239 -13.69561789]\n", + " [ 23.58830191 -13.69789605]\n", + " [ 28.96430143 -13.70017422]\n", + " [ 2.086582 -8.31278387]\n", + " [ 7.46258152 -8.31506203]\n", + " [ 12.83858103 -8.3173402 ]\n", + " [ 18.21458055 -8.31961837]\n", + " [ 23.59058007 -8.32189653]\n", + " [ 28.96657959 -8.3241747 ]\n", + " [ 2.08886017 -2.93678435]\n", + " [ 7.46485969 -2.93906252]\n", + " [ 12.8408592 -2.94134068]\n", + " [ 18.21685872 -2.94361885]\n", + " [ 23.59285824 -2.94589701]\n", + " [ 28.96885776 -2.94817518]]\n", + "\n", + " [-0.14381054 0.20656061 0.96780744]\n", + " [-0.17111212 0.20507835 0.96367189]\n", + " [-0.19774215 0.20333011 0.95893426]\n", + " [-0.00121312 0.00700791 0.99997471]\n", + " [-0.0312253 0.00701559 0.99948775]\n", + " [-0.06111305 0.00701392 0.99810621]\n", + " [-0.09075893 0.00700302 0.99584827]\n", + " [-0.12004913 0.00698305 0.99274339]\n", + " [-0.1488739 0.00695418 0.98883174]\n", + " [-0.17712688 0.00691659 0.98416372]\n", + " [-0.20470344 0.00687038 0.97879993]\n", + " [-0.19774215 0.20333011 0.95893426]\n", + " [-0.19951656 0.17679323 0.96381393]\n", + " [-0.20103291 0.14956333 0.96809947]\n", + " [-0.2022905 0.12175011 0.97172808]\n", + " [-0.20328809 0.09346339 0.97464791]\n", + " [-0.20402394 0.06481351 0.97681802]\n", + " [-0.20449622 0.03591173 0.97820838]\n", + " [-0.20470344 0.00687038 0.97879993]\n", + " [-0.00119558 0.19807534 0.98018607]\n", + " [-0.00122271 0.16396932 0.98646468]\n", + " [-0.00124786 0.12892083 0.9916541 ]\n", + " [-0.00127089 0.09312409 0.9956537 ]\n", + " [-0.00129164 0.05677987 0.99838589]\n", + " [-0.00130994 0.02009792 0.99979716]\n", + " [-0.01373956 0.20982687 0.97764201]\n", + " [-0.04922259 0.20947825 0.9765736 ]\n", + " [-0.08441749 0.20872203 0.97432479]\n", + " [-0.11911871 0.20756102 0.97094241]\n", + " [-0.1531227 0.20599809 0.96649792]\n", + " [-0.18622706 0.20403521 0.96108746]\n", + " [-0.01430615 0.00711509 0.99987235]\n", + " [-0.05102028 0.00711803 0.99867225]\n", + " [-0.08743049 0.00710683 0.99614527]\n", + " [-0.12332566 0.00708177 0.99234098]\n", + " [-0.15850368 0.0070432 0.98733327]\n", + " [-0.19276957 0.00699139 0.98121915]\n", + " [-0.19845732 0.19185821 0.96114781]\n", + " [-0.20045757 0.1588536 0.96673797]\n", + " [-0.20206974 0.12491703 0.971372 ]\n", + " [-0.20329178 0.09025061 0.97494989]\n", + " [-0.20412054 0.0550575 0.97739627]\n", + " [-0.20455274 0.01954302 0.97866043]\n", + " [-0.00118556 0.20985223 0.97773239]\n", + " [-0.00118556 0.20985223 0.97773239]\n", + " [-0.20461015 0.00696998 0.97881873]\n", + " [-0.20461015 0.00696998 0.97881873]\n", + " [-0.01379915 0.19805172 0.98009443]\n", + " [-0.04942232 0.19772367 0.97901113]\n", + " [-0.08475642 0.19701128 0.97673072]\n", + " [-0.11959564 0.19591776 0.97330012]\n", + " [-0.15373662 0.19444643 0.96879081]\n", + " [-0.18697743 0.19259955 0.96329894]\n", + " [-0.01395111 0.16395068 0.98636988]\n", + " [-0.04992687 0.1636812 0.98524909]\n", + " [-0.08561039 0.16309354 0.98288929]\n", + " [00763364 39.23320577 36.77402747\n", + " 34.69719395 33.07480842 31.97611838 31.45604637 32.28002056 27.89482687\n", + " 23.51009392 19.1261386 14.74365456 10.36450837 5.99601772 1.72131774\n", + " 31.45604637 27.07594694 22.69829207 18.32483384 13.95951711 9.61343916\n", + " 5.33383708 1.72131774 43.71543665 40.28285706 37.31193504 34.92069834\n", + " 33.23450917 32.36375719 43.67830098 40.1281473 37.02087501 34.47644006\n", + " 32.62678968 31.59418683 30.3683705 24.99424245 19.62114004 14.2502235\n", + " 8.88545749 3.55479843 29.54687443 24.18030108 18.81910954 13.46972753\n", + " 8.15542687 3.06450112 45.0178789 45.0178789 1.74119478 1.74119478\n", + " 42.33466612 38.66132674 35.42562866 32.75751668 30.80482728 29.70896533\n", + " 38.78006096 34.73279944 31.09090442 28.01292685 25.70226752 24.37810068\n", + " 35.68424094 31.23842634 27.13146257 23.54136773 20.73833358 19.07259071\n", + " 33.17589074 28.33926527 23.73585762 19.53127415 16.04223037 13.82166388\n", + " 31.39613279 26.23340206 21.17707168 16.3263008 11.93442847 8.72443809\n", + " 30.47289508 25.12113778 19.7825313 14.471637 9.23638255 4.35844005]\n", + "DEBUG:root:radec2pix: xyfp Shape: (96, 2)\n", + "DEBUG:root:radec2pix: fitpx: [[4271.49999985 4155.49999985]\n", + " [4271.49999998 3863.07142855]\n", + " [4271.50000002 3570.64285716]\n", + " [4271.49999976 3278.21428558]\n", + " [4271.50000012 2985.78571434]\n", + " [4271.50000004 2693.35714287]\n", + " [4271.50000005 2400.92857144]\n", + " [4271.49999991 2108.5 ]\n", + " [4271.49999985 4155.49999985]\n", + " [3979.07142858 4155.50000001]\n", + " [3686.64285722 4155.5000001 ]\n", + " [3394.21428584 4155.50000021]\n", + " [3101.78571415 4155.49999972]\n", + " [2809.35714289 4155.50000011]\n", + " [2516.92857142 4155.49999998]\n", + " [2224.50000001 4155.50000022]\n", + " [4271.49999991 2108.5 ]\n", + " [3979.07142843 2108.5 ]\n", + " [3686.6428569 2108.49999999]\n", + " [3394.21428586 2108.5 ]\n", + " [3101.78571453 2108.50000001]\n", + " [2809.35714306 2108.50000001]\n", + " [2516.9285717 2108.50000003]\n", + " [2224.49999984 2108.49999993]\n", + " [2224.50000001 4155.50000022]\n", + " [2224.5 3863.07142862]\n", + " [2224.49999998 3570.64285684]\n", + " [2224.50000001 3278.21428585]\n", + " [2224.50000002 2985.78571445]\n", + " [2224.5 2693.35714285]\n", + " [2224.49999995 2400.92857125]\n", + " [2224.49999984 2108.49999993]\n", + " [4270.49999995 4027.99999996]\n", + " [4270.50000001 3669.6 ]\n", + " [4270.4999998 3311.19999989]\n", + " [4270.50000006 2952.80000003]\n", + " [4270.50000002 2594.40000001]\n", + " [4270.49999985 2235.99999999]\n", + " [4144.00000023 4154.50000023]\n", + " [3785.60000021 4154.50000026]\n", + " [3427.20000017 4154.50000028]\n", + " [3068.79999989 4154.49999975]\n", + " [2710.40000004 4154.50000013]\n", + " [2351.99999998 4154.49999985]\n", + " [4143.99999992 2109.5 ]\n", + " [3785.59999985 2109.5 ]\n", + " [3427.19999998 2109.5 ]\n", + " [3068.80000001 2109.5 ]\n", + " [2710.40000021 2109.50000002]\n", + " [2352.00000017 2109.50000003]\n", + " [2225.5 4027.99999993]\n", + " [2225.49999998 3669.59999975]\n", + " [2225.50000001 3311.20000015]\n", + " [2225.5 2952.8 ]\n", + " [2225.49999998 2594.39999987]\n", + " [2225.50000008 2236.00000013]\n", + " [4270.50000018 4154.50000018]\n", + " [4270.50000018 4154.50000018]\n", + " [2225.49999981 2109.49999992]\n", + " [2225.49999981 2109.49999992]\n", + " [4143.99999987 4027.99999987]\n", + " [3785.59999992 4027.9999999 ]\n", + " [3427.2000001 4028.00000015]\n", + " [3068.80000011 4028.00000023]\n", + " [2710.39999995 4027.99999982]\n", + " [2351.99999998 4027.99999985]\n", + " [4144.00000018 3669.60000014]\n", + " [3785.5999999 3669.59999991]\n", + " [3427.19999994 3669.59999993]\n", + " [3068.79999994 3669.5999999 ]\n", + " [2710.39999997 3669.59999991]\n", + " [2351.99999997 3669.5999998 ]\n", + " [4143.99999973 3311.19999984]\n", + " [3785.60000019 3311.20000014]\n", + " [3427.1999998 3311.19999981]\n", + " [3068.79999976 3311.19999969]\n", + " [2710.39999985 3311.19999967]\n", + " [2352.00000003 3311.20000016]\n", + " [4144.00000026 2952.80000011]\n", + " [3785.6000001 2952.80000005]\n", + " [3427.20000009 2952.80000006]\n", + " [3068.8000003 2952.80000028]\n", + " [2710.39999986 2952.79999979]\n", + " [2352.00000001 2952.80000004]\n", + " [4143.99999994 2594.39999998]\n", + " [3785.6 2594.4 ]\n", + " [3427.19999999 2594.39999999]\n", + " [3068.79999999 2594.39999999]\n", + " [2710.40000015 2594.40000014]\n", + " [2351.99999993 2594.39999983]\n", + " [4143.99999995 2236. ]\n", + " [3785.59999975 2235.99999997]\n", + " [3427.19999971 2235.99999996]\n", + " [3068.80000003 2236.00000001]\n", + " [2710.39999999 2236. ]\n", + " [2352.00000022 2236.00000016]]\n", + "DEBUG:root:radec2pix: xyfp Shape: (96, 2)\n", + "DEBUG:root:radec2pix: camVec: [[-0.00174024 -0.00176337 -0.00178449 -0.00180353 -0.00182039 -0.001835\n", + " -0.00184725 -0.00185707 -0.00174024 -0.0307605 -0.05966066 -0.08832819\n", + " -0.11665151 -0.14451993 -0.17182299 -0.19844965 -0.00185707 -0.03187835\n", + " -0.06177226 -0.09142104 -0.12071058 -0.14953103 -0.1777762 -0.20534186\n", + " -0.19844965 -0.20021951 -0.20172864 -0.20297731 -0.20396466 -0.20468905\n", + " -0.20514862 -0.20534186 -0.00185028 -0.00187827 -0.00190298 -0.00192425\n", + " -0.00194192 -0.00195581 -0.0144012 -0.04990298 -0.08511243 -0.11982373\n", + " -0.15383302 -0.18693675 -0.01495442 -0.05167778 -0.08809246 -0.12398684\n", + " -0.15915858 -0.19341315 -0.19916328 -0.201156 -0.20275765 -0.20396715\n", + " -0.20478152 -0.20519745 -0.00183964 -0.00183964 -0.20524866 -0.20524866\n", + " -0.01446124 -0.05010266 -0.08545073 -0.12029942 -0.1544452 -0.18768535\n", + " -0.01461361DEBUG:root:fitpix2pix: ccdpx: shape: (96, 2)\n", + " -0.05060625 -0.08630213 -0.12149421 -0.15597972 -0.18955833\n", + " -0.01473929 -0.05101673 -0.08699359 -0.12246151 -0.1572181 -0.19106523\n", + " -0.01483744 -0.0513315 -0.08752139 -0.12319735 -0.15815714 -0.19220433\n", + " -0.01490708 -0.05154747 -0.08788092 -0.1236965 -0.15879197 -0.19297207\n", + " -0.01494734 -0.05166195 -0.08806808 -0.12395417 -0.15911791 -0.19336467]\n", + " [ 0.20894107 0.18147259 0.15331081 0.12455987 0.09532558 0.06571725\n", + " 0.03584843 0.00583647 0.20894107 0.20879621 0.2083801 0.20769404\n", + " 0.20673975 0.20551876 0.20403188 0.20227886 0.00583647 0.00584019\n", + " 0.00583613 0.00582438 0.00580507 0.00577839 0.00574449 0.00570348\n", + " 0.20227886 0.17571613 0.1484622 0.12062809 0.09232414 0.06366093\n", + " 0.03474987 0.00570348 0.1970566 0.16291184 0.12782912 0.09200243\n", + " 0.05563309 0.01893178 0.2088187 0.20845876 0.20769278 0.20652378\n", + " 0.20495452 0.20298606 0.00594178 0.00594091 0.00592823 0.00590399\n", + " 0.0058685 0.00582205 0.19079562 0.1577603 0.12379719 0.08910965\n", + " 0.05390131 0.01837776 0.20884841 0.20884841 0.00580307 0.00580307\n", + " 0.19702878 0.19668974 0.19596793 0.19486681 0.19338978 0.1915385\n", + " 0.16288937 0.16260994 0.16201386 0.16110551 0.1598896 0.15836938\n", + " 0.12781212 0.12759366 0.12712576 0.126413 0.12546054 0.12427244\n", + " 0.09199108 0.09183551 0.0914995 0.09098698 0.09030259 0.0894502\n", + " 0.05562756 0.05553685 0.05533649 0.05502916 0.05461804 0.05410588\n", + " 0.0189322 0.01890777 0.01884587 0.01874743 0.01861357 0.01844527]\n", + " [ 0.97792668 0.98339442 0.98817641 0.99221045 0.99544448 0.9978366\n", + " 0.99935553 0.99998124 0.97792668 0.97747528 0.97622658 0.97419778\n", + " 0.97141706 0.96792357 0.96376753 0.95901043 0.99998124 0.99947469\n", + " 0.99807321 0.9957953 0.99267077 0.98874015 0.98405418 0.97867369\n", + " 0.95901043 0.96386513 0.96812423 0.97172479 0.97461514 0.97675467\n", + " 0.97811374 0.97867369 0.98039037 0.9866DEBUG:root:fitpix2pix: visCut: True\n", + "3884 0.99179438 0.99575692\n", + " 0.99844939 0.99981886 0.97784833 0.97675721 0.97448427 0.97107683\n", + " 0.96660698 0.96117184 0.99987052 0.99864614 0.99609466 0.9922663\n", + " 0.98723559 0.98110013 0.96121331 0.96677192 0.97137201 0.97491378\n", + " 0.97732245 0.97854804 0.9779463 0.9779463 0.97869265 0.97869265\n", + " 0.98029105 0.9791848 0.97688011 0.97342435 0.96888961 0.96337283\n", + " 0.98653611 0.98539181 0.98300735 0.97943054 0.97473363 0.9690133\n", + " 0.99168887 0.99051358 0.98806435 0.98438962 0.97956221 0.97367882\n", + " 0.99564928 0.99445026 0.99195154 0.9882023 0.98327604 0.97726975\n", + " 0.9983403 0.99712513 0.99459279 0.9907931 0.98580017 0.97971135\n", + " 0.99970903 0.99848562 0.99593617 0.99211083 0.9870841 0.98095356]]\n", + "-0.12079486 0.16219177 0.97933775]\n", + " [-0.15527748 0.16098028 0.97466623]\n", + " [-0.18885795 0.15946229 0.96897082]\n", + " [-0.0140777 0.12890725 0.99155673]\n", + " [-0.05033965 0.1286975 0.99040541]\n", + " [DEBUG:root:optics_fp: cphi: [-0.71661052 -0.76668522 -0.81865324 -0.87041945 -0.91877042 -0.95945138\n", + " -0.98776621 -0.99975905 -0.71661052 -0.66390451 -0.59904941 -0.51982885\n", + " -0.42452343 -0.31272572 -0.18629262 -0.04992637 -0.99975905 -0.9996769\n", + " -0.99954452 -0.99931081 -0.99883841 -0.997645 -0.9929376 -0.91049017\n", + " -0.04992637 -0.05798589 -0.06914879 -0.08562676 -0.11237014 -0.16312264\n", + " -0.29391715 -0.91049017 -0.73796092 -0.80082989 -0.86457988 -0.92376676\n", + " -0.97061799 -0.99671508 -0.69515031 -0.62267974 -0.52972774 -0.41289021\n", + " -0.27152486 -0.11024131 -0.99971595 -0.99957998 -0.99931728 -0.99870324\n", + " -0.99665599 -0.97888657 -0.05365319 -0.06553749 -0.08417765 -0.1175659\n", + " -0.19410544 -0.51637928 -0.71661494 -0.71661494 -0.90871193 -0.90871193\n", + " -0.71720854 -0.64629919 -0.55357618 -0.43455016 -0.28757779 -0.11723007\n", + " -0.78293369 -0.71938388 -0.63073804 -0.50813028 -0.34464727 -0.14284199\n", + " -0.85084193 -0.79983697 -0.72276415 -0.60462283 -0.42711476 -0.18254722\n", + " -0.91515494 -0.88164179 -0.82613743 -0.72873282 -0.5521103 -0.25185684\n", + " -0.9670144 -0.95239316 -0.92593126 -0.87175367 -0.74209777 -0.39893833\n", + " -0.99629342 -0.99453874 -0.99117471 -0.98343711 -0.95881096 -0.79843817]\n", + "DEBUG:root:radec2pix: xyfp Shape: (96, 2)\n", + "-0.08630574 0.12823673 0.9879811 ]\n", + " [-0.12176792 0.12752928 0.98433168]\n", + " [-0.15652378 0.12657997 0.97952939]\n", + " [-0.19037482 0.12539259 0.97367044]\n", + " [-0.01417814 0.09311572 0.99555434]\n", + " [-0.05065827 0.09296747 0.9943796 ]\n", + " [-0.08683905 0.092637 0.99190593]\n", + " [-0.12251113 0.09212815 0.98818188]\n", + " [-0.15747231 0.0914453 0.98328034]\n", + " [-0.19152571 0.09059206 0.97729779]\n", + " [-0.0142515 0.05677687 0.99828517]\n", + " [-0.05087978 0.05669199 0.99709441]\n", + " [-0.08720594 0.05649545 0.99458704]\n", + " [-0.12301955 0.05618991 0.99081223]\n", + " [-0.15811848 0.05577844 0.98584345]\n", + " [-0.19230704 0.0552636 0.97977749]\n", + " [-0.01429691 0.02010041 0.99969574]\n", + " [-0.0510015 0.0200803 0.99849668]\n", + " [-0.08740238 0.02002048 0.99597189]\n", + " [-0.12328852 0.0199219 0.99217088]\n", + " [-0.15845779 0.01978566 0.98716749]\n", + " [-0.19271515 0.01961272 0.98105872]]\n", + "DEBUG:root:cartToSphere: vec: [[0.20658103 0.20098859 0.9575635 ]\n", + " [0.20838989 0.17447006 0.96235848]\n", + " [0.20993522 0.14727238 0.9665599 ]\n", + " [0.21121099 0.11949936 0.97010815]\n", + " [0.21221385 0.09125926 0.97295274]\n", + " [0.21294172 0.06266255 0.97505345]\n", + " [0.21339307 0.03382097 0.97638084]\n", + " [0.21356684 0.00484709 0.97691643]\n", + " [0.20658103 0.20098859 0.9575635 ]\n", + " [0.18015754 0.20282418 0.96249967]\n", + " [0.1530338 0.20440426 0.96685033]\n", + " [0.12531307 0.20572264 0.97055388]\n", + " [0.09710338 0.20677589 0.97355774]\n", + " [0.06851504 0.2075618 0.97581955]\n", + " [0.03965966 0.2080787 0.97730771]\n", + " [0.01064976 0.20832528 0.97800162]\n", + " [0.21356684 0.00484709 0.97691643]\n", + " [0.18621882 0.00490326 0.98249606]\n", + " [0.15815829 0.00495363 0.98740135]\n", + " [0.12949192 0.00499813 0.99156788]\n", + " [0.10032565 0.0050366 0.99494191]\n", + " [0.07076705 0.00506881 0.99747999]\n", + " [0.04092766 0.00509451 0.99914912]\n", + " [0.01092393 0.00511348 0.99992726]\n", + " [0.01064976DEBUG:root:radec2pix: camVec Shape: (3, 96)\n", + "DEBUG:root:optics_fp: rtanth: [31.57034978 27.18406789 22.79784246 18.41171382 14.02577275 9.64027533\n", + " 5.25633205 0.89702627 31.57034978 31.90657516 32.83068082 34.29517719\n", + " 36.2346004 38.57738799 41.25487818 44.20629586 0.89702627 4.70608217\n", + " 9.05379887 13.42672148 17.80628925 22.18856766 26.57221564 30.95665138\n", + " 44.20629586 41.18838618 38.43502607 36.00695508 33.97398873 32.41056182\n", + " 31.38691822 30.95665138 29.65803336 24.28227528 18.90665475 13.53133577\n", + " 8.15691443 2.78858575 31.62774376 32.44001712 34.0910252 36.46702674\n", + " 39.4372011 42.87825061 2.32483604 7.57927428 12.93401278 18.30122199\n", + " 23.67242106 29.04539658 42.85058957 39.32178756 36.24963004 33.75901556\n", + " 31.98608036 31.05398999 31.55546766 31.55546766 30.94207994 30.94207994\n", + " 29.73492188 30.59748544 32.34268701 34.83813202 37.93605456 41.50175634\n", + " 24.3761262 25.42117355 27.49689714 30.39285101 33.89947174 37.84740055\n", + " 19.02703944 20.34867971 22.88912523 26.29749216 30.28212156 34.64474606\n", + " 13.69903951 15.48238416 18.69618965 22.7418897 27.2514649 32.02957826\n", + " 8.4321936 11.09695565 15.26386952 20.01578758 25.02160156 30.1551337\n", + " 3.51323872 8.02392562 13.19949508 18.48980017 23.81851176 29.16458548]\n", + " 0.20832528 0.97800162]\n", + " [0.01072986 0.18083307 0.98345527]\n", + " [0.01079662 0.15264908 0.98822148]\n", + " [0.01085001 0.12387974 0.99223792]\n", + " [0.01088978 0.09463112 0.99545284]\n", + " [0.0109156 0.06501141 0.99782482]\n", + " [0.01092708 0.0351331 0.9993229 ]\n", + " [0.01092393 0.00511348 0.99992726]\n", + " [0.20731213 0.18952259 0.95974104]\n", + " [0.20935192 0.15655094 0.96522722]\n", + " [0.21098964 0.12266162 0.96976157]\n", + " [0.21221814 0.08805229 0.97324727]\n", + " [0.21303349 0.05292621 0.97561035]\n", + " [0.21343308 0.01748945 0.97680113]\n", + " [0.19515895 0.20172997 0.95980102]\n", + " [0.16228971 0.20380791 0.96546589]\n", + " [0.12847052 0.20549566 0.97018908]\n", + " [0.09389848 0.20678588 0.97386995]\n", + " [0.05877657 0.20767444 0.97643056]\n", + " [0.02331064 0.20815839 0.97781731]\n", + " [0.20173739 0.00497187 0.97942703]\n", + " [0.16772694 0.00503783 0.98582062]\n", + " [0.13275239 0.00509482 0.99113614]\n", + " [0.09700904 0.00514259 0.99527021]\n", + " [0.06069518 0.00518073 0.9981429 ]\n", + " [0.02401827 0.00520877 0.99969795]\n", + " [0.01078606 0.19643015 0.98045849]\n", + " [0.01087623 0.16225698 0.98668859]\n", + " [0.01094616 0.1271506 0.99182302]\n", + " [0.01099551 0.09130636 0.99576214]\n", + " [0.01102363 0.0549237 0.9984297 ]\n", + " [0.01102984 0.01821176 0.99977331]\n", + " [0.2064986 0.20090587 0.95759864]\n", + " [0.2064986 0.20090587 0.95759864]\n", + " [0.01102671 0.00521618 0.9999256 ]\n", + " [0.01102671 0.00521618 0.9999256 ]\n", + " [0.19592714 0.19029998 0.96197634]\n", + " [0.16292559 0.19225876 0.96772508]\n", + " [0.1289709 0.19384904 0.97251687]\n", + " [0.09426176 0.19506507 0.97625014]\n", + " [0.0590016 0.19590316 0.97884665]\n", + " [0.02339654 0.19636024 0.98025265]\n", + " [0.19785166 0.15719218 0.96754604]\n", + " [0.16451646 0.15880644 0.97350647]\n", + " [0.13022261 0.16011755 0.97847046]\n", + " [0.09517088 0.16112232 0.98233503]\n", + " [0.05956467 0.16181718 0.98502145]\n", + " [0.02361044 0.1621981 0.98647571]\n", + " [0.19939573 0.12316354 0.97214818]\n", + " [0.16579218 0.12442767 0.97827946]\n", + " [0.13122742 0.12545686 0.98338189]\n", + " [0.09590173 0.12624866 0.98735208]\n", + " [0.06001727 0.12679897 0.99011108]\n", + " [0.02378066 0.1271029 0.99160442]\n", + " [0.20055377 0.08841323 0.97568503]\n", + " [0.16674959 0.08932369 0.98194493]\n", + " [0.13198281 0.09006766 0.98715164]\n", + " [0.09645193 0.09064294 0.99120174]\n", + " [0.06035751 0.0910454 0.99401595]\n", + " [0.0239064 0.09127018 0.99553917]\n", + " [0.20132229 0.05314506 0.97808228]\n", + " [0.16738526 0.05369842 0.98442808]\n", + " [0.13248471 0.05415286 0.98970464]\n", + " [0.09681723 0.05450669 0.99380856]\n", + " [0.06058199 0.05475678 0.99666018]\n", + " [0.02398618 0.05489951 0.99820374]\n", + " [0.20169858 0.0175654 0.97929012]\n", + " [0.16769559 0.01775879 0.98567886]\n", + " [0.13272857 0.01791986 0.99099042]\n", + " [0.09699294 0.01804791 0.99512142]\n", + " [0.06068709 0.01814173 0.99799196]\n", + " [0.02401844 0.01819993 0.99954584]]\n", + "DEBUG:root:mm_to_pix: fitpx: [[0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0.DEBUG:root:optics_fp: sphi: [-0.69747355 -0.64202319 -0.57428814 -0.49231086 -0.39479224 -0.28187416\n", + " -0.15594205 -0.02195087 -0.69747355 -0.74781736 -0.80071206 -0.85427043\n", + " -0.90541695 -0.94984347 -0.98249431 -0.9987529 -0.02195087 -0.02541825\n", + " -0.03017857 -0.03712011 -0.04818532 -0.06858898 -0.11863781 -0.41353071\n", + " -0.9987529 -0.9983174 -0.99760636 -0.99632728 -0.99366642 -0.9866058\n", + " -0.9558309 -0.41353071 -0.67484345 -0.59889188 -0.50249541 -0.38295557\n", + " -0.24062567 -0.080988 -0.71886442 -0.7824768 -0.84816774 -0.91078081\n", + " -0.96243143 -0.99390485 -0.02383323 -0.02898045 -0.03694547 -0.05091008\n", + " -0.08171193 -0.2044042 -0.99855963 -0.99785011 -0.99645076 -0.99306508\n", + " -0.98098067 -0.85635999 -0.69746902 -0.69746902 -0.41742381 -0.41742381\n", + " -0.6968586 -0.76308411 -0.83279855 -0.90064763 -0.95775728 -0.99310478\n", + " -0.62210517 -0.69461272 -0.77599583 -0.86128022 -0.93873226 -0.98974551\n", + " -0.52542175 -0.60021731 -0.69109478 -0.79651192 -0.90419742 -0.98319709\n", + " -0.40310226 -0.47191923 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]]\n", + " -0.56346867 -0.68479813 -0.83377108 -0.9677645\n", + " -0.2547217 -0.30487255 -0.37769207 -0.48994442 -0.67029166 -0.91697776\n", + " -0.08601994 -0.10436806 -0.13256201 -0.18124971 -0.28404496 -0.60207682]\n", + "DEBUG:root:radec2pix: lng: [ 90.2964384 90.3478894 90.41900227 90.52370941 90.69317626\n", + " 91.01436915 91.85606354 99.82098825 90.2964384 98.16139155\n", + " 105.72927905 112.77495178 119.16321868 124.84620437 129.84075369\n", + " 134.20177453 99.82098825 167.3372664 173.45282833 175.5877589\n", + " 176.67095531 177.32554882 177.76380439 178.07772632 134.20177453\n", + " 138.45558903 143.3516981 148.95804019 155.308999 162.37619731\n", + " 170.03980495 178.07772632 90.34583364 90.4272438 90.55456533\n", + " 90.78188435 91.3031483 93.7291305 93.74640471 103.2233069\n", + " 112.02083939 119.85139884 126.62419493 132.38733532 153.55676438\n", + " 172.05771641 175.35290167 176.71349424 177.45570466 177.92289984\n", + " 135.96861356 141.60475991 148.27615291 156.06135558 164.90482616\n", + " 174.54251233 90.32368928 90.32368928 178.04899302 178.04899302\n", + " 93.98561362 104.03389942 113.27790792 121.40147615 128.33121468\n", + " 134.15142333 94.8637718 106.96302166 117.69569442 126.6774761\n", + " 133.96694623 139.82391059 96.23245551 111.36280739 123.94129691\n", + " 133.676108 141.03771084 146.62863656 98.65756574 118.5861081\n", + " 133.14971036 143.05690148 149.85595749 154.68575435 104.09063117\n", + " 131.90726386 147.0632386 155.45116677 160.56901612 163.96684771\n", + " 125.42327674 158.50946167 167.09834094 170.82105172 172.88266004\n", + " 174.18898669]\n", + "DEBUG:root:mm_to_pix: fitpx.shape: (96, 2)\n", + "DEBUG:root:mm_to_pix: fitpx: [[0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]]\n", + "DEBUG:root:mm_to_pix: fitpx: [[0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]]\n", + "DEBUG:root:optics_fp: cphi: [-0.00747594 -0.00870042 -0.01039606 -0.01289954 -0.01696858 -0.02473916\n", + " -0.04546654 -0.26697332 -0.00747594 -0.14487442 -0.27440415 -0.39058855\n", + " -0.49073902 -0.57464131 -0.6436715 -0.69992333 -0.26697332 -0.98296427\n", + " -0.99542074 -0.99791805 -0.99881542 -0.99923641 -0.99946703 -0.99960689\n", + " -0.69992333 -0.75121935 -0.80504713 -0.85934793 -0.91078494 -0.95473483\n", + " -0.98588803 -0.99960689 -0.00847102 -0.01037136 -0.01335227 -0.01870128\n", + " -0.03109752 -0.0911811 -0.06793149 -0.23195178 -0.37841395 -0.50117932\n", + " -0.59975148 -0.67699869 -0.92564824 -0.99323234 -0.99767802 -0.99883933\n", + " -0.99930549 -0.99953809 -0.72172248 -0.78650646 -0.85317965 -0.91614203\n", + " -0.96694122 -0.99598364 -0.00795487 -0.00795487 -0.9995928 -0.9995928\n", + " -0.07226297 -0.24592654 -0.39887637 -0.52461865 -0.62348955 -0.69945795\n", + " -0.08817399 -0.29602647 -0.46919258 -0.60136972 -0.69774952 -0.76701014\n", + " -0.11299429 -0.36984939 -0.56367146 -0.69504524 -0.7811192 -DEBUG:root:mm_to_pix: fitpx.shape: (96, 2)\n", + "0.83793215\n", + " -0.1569857 -0.48613658 -0.69011673 -0.80373942 -0.86801033 -0.90636701\n", + " -0.25511271 -0.67830854 -0.84534002 -0.91323709 -0.94538951 -0.96272694\n", + " -0.6124737 -0.93816501 -0.97759544 -0.98864055 -0.99316726 -0.99544587]\n", + "DEBUG:root:mm_to_pix: fitpx.shape: (96, 2)\n", + "DEBUG:root:radec2pix: lat: [77.88072123 79.48382459 81.11902826 82.7811435 84.46512008 86.16588026\n", + " 87.87809063 89.592501 77.88072123 77.76297714 77.43489604 76.91632478\n", + " 76.23510116 75.42235372 74.50888673 73.52311865 89.592501 88.1660092\n", + " 86.47326812 84.77720909 83.09335022 81.42892112 79.7896882 78.18111406\n", + " 73.52311865 74.53938675 75.48898077 76.34336174 77.07095847 77.63894653\n", + " 78.01676209 78.18111406 78.57535641 80.56236957 82.59241544 84.65614182\n", + " 86.74415968 88.84595283 77.86145981 77.57369823 76.98847403 76.15398719\n", + " 75.12717296 73.96382281 89.0844999 87.04713438 84.96761219 82.90419496\n", + " 80.87086863 78.87814184 73.97634463 75.18085203 76.25721571 77.14851635\n", + " 77.79468183 78.14215534 77.8861108 77.8861108 78.18637455 78.18637455\n", + " 78.54888043 78.24034026 77.6156038 76.73023014 75.64791869 74.42908235\n", + " 80.52930205 80.14668621 79.38566385 78.33252026 77.07564982 75.68958597\n", + " 82.54926459 82.05674096 81.10786838 79.84412063 78.38693881 76.82298725\n", + " 84.59535958 83.92250159 82.7051798 81.18260126 79.50799917 77.76802141\n", + " 86.64409097 85.63122317 84.03581665 82.22723271 80.34771821 78.45776966\n", + " 88.58657998 86.85792078 84.85560606 82.82572865 80.81119712 78.83059106]\n", + "DEBUG:root:radec2pix: lng: [44.21386846 39.93704685 35.05017674 29.50039724 23.26936887 16.39762201\n", + " 9.00597869 1.30015678 44.21386846 48.38707907 53.17846261 58.652901\n", + " 64.84492629 71.73221904 79.20889503 87.07353952 1.30015678 1.50828626\n", + " 1.79395925 2.21040578 2.87397756 4.09690845 7.09544794 25.08421915\n", + " 87.07353952 86.60429547 85.95429853 84.99452258 83.43549808 80.46877478\n", + " 72.72327889 25.08421915 42.4332296 36.78871515 30.1721461 22.534249\n", + " 13.95213213 4.68455031 45.9485209 51.4701262 57.98745342 65.57788622\n", + " 74.19728483 83.61034654 1.41178444 1.72041252 2.19784005 3.03449456\n", + " 4.87874528 12.23608945 86.85702241 86.16514834 85.07964235 83.13325955\n", + " 78.65106614 58.79906907 44.21351009 44.21351009 25.31647093 25.31647093\n", + " 44.16528338 49.72110165 56.36353517 64.20866184 73.23888739 83.20517984\n", + " 38.4669715 43.98823734 50.87875671 59.43072848 69.79141059 81.71788613\n", + " 31.70295803 36.8883708 43.71214181 52.77876171 64.67058062 79.40261268\n", + " 23.79006954 28.17687017 34.3103939 43.22163096 56.45806862 75.32225144\n", + " 14.78760738 17.78662299 22.23218915 29.3788791 42.10872179 66.39896872\n", + " 4.97718101 6.0450351 7.68908472 10.5407344 16.64345121 37.15297361]\n", + "DEBUG:root:cartToSphere: vec: [[-0.00174024 0.20894107 0.97792668]\n", + " [-0.00176337 0.18147259 0.98339442]\n", + " [-0.00178449 0.15331081 0.98817641]\n", + " [-0.00180353 0.12455987 0.99221045]\n", + " [-0.00182039 0.09532558 0.99544448]\n", + " [-0.001835 0.06571725 0.9978366 ]\n", + " [-0.00184725 0.03584843 0.99935553]\n", + " [-0.00185707 0.00583647 0.99998124]\n", + " [-0.00174024 0.20894107 0.97792668]\n", + " [-0.0307605 0.20879621 0.97747528]\n", + " [-0.05966066 0.2083801 0.97622658]\n", + " [-0.08832819 0.20769404 0.97419778]\n", + " [-0.11665151 0.20673975 0.97141706]\n", + " [-0.14451993 0.20551876 0.96792357]\n", + " [-0.17182299 0.20403188 0.96376753]\n", + " [-0.19844965 0.20227886 0.95901043]\n", + " [-0.00185707 0.00583647 0.99998124]\n", + " [-0.03187835 0.00584019 0.99947469]\n", + " [-0.06177226 0.00583613 0.99807321]\n", + " [-0.09142104 0.00582438 0.9957953 ]\n", + " [-0.12071058 0.00580507 0.99267077]\n", + " [-0.14953103 0.00577839 0.98874015]\n", + " [-0.1777762 0.00574449 0.98405418]\n", + " [-0.20534186 0.00570348 0.97867369]\n", + " [-0.19844965 0.20227886 0.95901043]\n", + " [-0.20021951 0.17571613 0.96386513]\n", + " [-0.20172864 0.1484622 0.96812423]\n", + " [-0.20297731 0.12062809 0.97172479]\n", + " [-0.20396466 0.09232414 0.97461514]\n", + " [-0.20468905 0.06366093 0.97675467]\n", + " [-0.20514862 0.03474987 0.97811374]\n", + " [-0.20534186 0.00570348 0.97867369]\n", + " [-0.00185028 0.1970566 0.98039037]\n", + " [-0.00187827 0.16291184 0.98663884]\n", + " [-0.00190298 0.12782912 0.99179438]\n", + " [-0.00192425 0.09200243 0.99575692]\n", + " [-0.00194192 0.05563309 0.99844939]\n", + " [-0.00195581 0.01893178 0.99981886]\n", + " [-0.0144012 0.2088187 0.97784833]\n", + " [-0.04990298 0.20845876 0.97675721]\n", + " [-0.08511243 0.20769278 0.97448427]\n", + " [-0.11982373 0.20652378 0.97107683]\n", + " [-0.15383302 0.20495452 0.96660698]\n", + " [-0.18693675 0.20298606 0.96117184]\n", + " [-0.01495442 0.00594178 0.99987052]\n", + " [-0.05167778 0.00594091 0.99864614]\n", + " [-0.08809246 0.00592823 0.99609466]\n", + " [-0.12398684 0.00590399 0.9922663 ]\n", + " [-0.15915858 0.0058685 0.98723559]\n", + " [-0.19341315 0.00582205 0.98110013]\n", + " [-0.19916328 0.19079562 0.96121331]\n", + " [-0.201156 0.1577603 0.96677192]\n", + " [-0.20275765 0.12379719 0.97137201]\n", + " [-0.20396715 0.08910965 0.97491378]\n", + " [-0.20478152 0.05390131 0.97732245]\n", + " [-0.20519745 0.01837776 0.97854804]\n", + " [-0.00183964 0.20884841 0.9779463 ]\n", + " [-0.00183964 0.20884841 0.9779463 ]\n", + " [-0.20524866 0.00580307 0.97869265]\n", + " [-0.20524866 0.00580307 0.97869265]\n", + " [-0.01446124 0.19702878 0.98029105]\n", + " [-0.05010266 0.19668974 0.9791848 ]\n", + " [-0.08545073 0.19596793 0.97688011]\n", + " [-0.12029942 0.19486681 0.97342435]\n", + " [-0.1544452 0.19338978 0.96888961]\n", + " [-0.18768535 0.1915385 0.96337283]\n", + " [-0.01461361 0.16288937 0.98653611]\n", + " [-0.05060625 0.16260994 0.98539181]\n", + " [-0.08630213 0.16201386 0.98300735]\n", + " [-0.12149421 0.16110551 0.97943054]\n", + " [-0.15597972 0.1598896 0.97473363]\n", + " [-0.18955833 0.15836938 0.9690133 ]\n", + " [-0.01473929 0.12781212 0.99168887]\n", + " [-0.05101673 0.12759366 0.99051358]\n", + " [-0.08699359 0.12712576 0.98806435]\n", + " [-0.12246151 0.126413 0.98438962]\n", + " [-0.1572181 0.12546054 0.97956221]\n", + " [-0.19106523 0.12427244 0.97367882]\n", + " [-0.01483744 0.09199108 0.99564928]\n", + " [-0.0513315 0.09183551 0.99445026]\n", + " [-0.08752139 0.0914995 0.99195154]\n", + " [-0.12319735 0.09098698 0.9882023 ]\n", + " [-0.15815714 0.09030259 0.98327604]\n", + " [-0.19220433 0.0894502 0.97726975]\n", + " [-0.01490708 0.05562756 0.9983403 ]\n", + " [-0.05154747 0.05553685 0.99712513]\n", + " [-0.08788092 0.05533649 0.99459279]\n", + " [-0.1236965 0.05502916 0.9907931 ]\n", + " [-0.15879197 0.05461804 0.98580017]\n", + " [-0.19297207 0.05410588 0.97971135]\n", + " [-0.01494734 0.0189322 0.99970903]\n", + " [-0.05166195 0.01890777 0.99848562]\n", + " [-0.08806808 0.01884587 0.99593617]\n", + " [-0.12395417 0.01874743 0.99211083]\n", + " [-0.15911791 0.01861357 0.9870841 ]\n", + " [-0.19336467 0.01844527 0.98095356]]\n", + "DEBUG:root:radec2pix: xyfp: [[32.31363499 31.47041645]\n", + " [32.3144687 27.08398795]\n", + " [32.31530242 22.69755946]\n", + " [32.31613613 18.31113097]\n", + " [32.31696984 13.92470248]\n", + " [32.31780355 9.53827398]\n", + " [32.31863726 5.15184549]\n", + " [32.31947097 0.765417 ]\n", + " [32.31363499 31.47041645]\n", + " [27.9272065 31.46958273]\n", + " [23.540778 31.46874902]\n", + " [19.15434951 31.46791531]\n", + " [14.76792102 31.4670816 ]\n", + " [10.38149253 31.46624788]\n", + " [ 5.99506403 31.46541417]\n", + " [ 1.60863554 31.46458045]\n", + " [32.31947097 0.765417 ]\n", + " [27.93304248 0.76458329]\n", + " [23.54661399 0.76374957]\n", + " [19.1601855 0.76291586]\n", + " [14.77375701 0.76208215]\n", + " [10.38732851 0.76124844]\n", + " [ 6.00090002 0.76041472]\n", + " [ 1.61447153 0.75958101]\n", + " [ 1.60863554 31.46458045]\n", + " [ 1.60946926 27.07815197]\n", + " [ 1.61030297 22.69172348]\n", + " [ 1.61113668 18.30529498]\n", + " [ 1.61197039 13.91886648]\n", + " [ 1.6128041 9.53243799]\n", + " [ 1.61363782 5.1460095 ]\n", + " [ 1.61447153 0.75958101]\n", + " [32.29899849 29.55791363]\n", + " [32.30002028 24.18191372]\n", + " [32.30104209 18.80591382]\n", + " [32.30206388 13.42991392]\n", + " [32.30308568 8.05391402]\n", + " [32.30410748 2.67791411]\n", + " [30.40113787 31.45505294]\n", + " [25.02513797 31.45403115]\n", + " [19.64913807 31.45300935]\n", + " [14.27313817 31.45198755]\n", + " [ 8.89713826 31.45096576]\n", + " [ 3.52113836 31.44994396]\n", + " [30.40696816 0.7800535 ]\n", + " [25.03096826 0.7790317 ]\n", + " [19.65496836 0.7780099 ]\n", + " [14.27896845 0.77698811]\n", + " [ 8.90296855 0.77596631]\n", + " [ 3.52696865 0.77494451]\n", + " [ 1.62399904 29.55208334]\n", + " [ 1.62502084 24.17608344]\n", + " [ 1.62604264 18.80008353]\n", + " [ 1.62706443 13.42408364]\n", + " [ 1.62808623 8.04808373]\n", + " [ 1.62910803 2.67208383]\n", + " [32.29863784 31.4554136 ]\n", + " [32.29863784 31.4554136 ]\n", + " [ 1.62946868 0.77458386]\n", + " [ 1.62946868 0.77458386]\n", + " [30.40149852 29.55755297]\n", + " [25.02549862 29.55653118]\n", + " [19.64949872 29.55550938]\n", + " [14.27349882 29.55448759]\n", + " [ 8.89749891 29.55346579]\n", + " [ 3.52149901 29.55244399]\n", + " [30.40252032 24.18155307]\n", + " [25.02652042 24.18053128]\n", + " [19.65052052 24.17950948]\n", + " [14.27452061 24.17848769]\n", + " [ 8.89852071 24.17746589]\n", + " [ 3.52252081 24.17644409]\n", + " [30.40354212 18.80555317]\n", + " [25.02754221 18.80453137]\n", + " [19.65154231 18.80350958]\n", + " [14.27554241 18.80248779]\n", + " [ 8.89954251 18.80146598]\n", + " [ 3.5235426 18.80044419]\n", + " [30.40456392 13.42955327]\n", + " [25.02856401 13.42853147]\n", + " [19.65256411 13.42750967]\n", + " [14.27656421 13.42648788]\n", + " [ 8.9005643 13.42546608]\n", + " [ 3.5245644 13.42444429]\n", + " [30.40558571 8.05355336]\n", + " [25.02958581 8.05253157]\n", + " [19.6535859 8.05150977]\n", + " [14.277586 8.05048797]\n", + " [ 8.9015861 8.04946618]\n", + " [ 3.5255862 8.04844438]\n", + " [30.40660751 2.67755346]\n", + " [25.0306076 2.67653166]\n", + " [19.6546DEBUG:root:radec2pix: xyfp: [[ 0.16415906 -31.72847131]\n", + " [ 0.16601788 -27.34204313]\n", + " [ 0.1678767 -22.95561497]\n", + " [ 0.16973552 -18.56918678]\n", + " [ 0.17159434 -14.1827586 ]\n", + " [ 0.17345315 -9.79633043]\n", + " [ 0.17531197 -5.40990225]\n", + " [ 0.17717079 -1.02347407]\n", + " [ 0.16415906 -31.72847131]\n", + " [ 4.55058724 -31.73033014]\n", + " [ 8.93701541 -31.73218895]\n", + " [ 13.32344359 -31.73404778]\n", + " [ 17.70987177 -31.73590659]\n", + " [ 22.09629995 -31.73776541]\n", + " [ 26.48272812 -31.73962422]\n", + " [ 30.8691563 -31.74148305]\n", + " [ 0.17717079 -1.02347407]\n", + " [ 4.56359897 -1.02533289]\n", + " [ 8.95002714 -1.02719171]\n", + " [ 13.33645532 -1.02905053]\n", + " [ 17.7228835 -1.03090935]\n", + " [ 22.10931168 -1.03276817]\n", + " [ 26.49573986 -1.03462699]\n", + " [ 30.88216803 -1.0364858 ]\n", + " [ 30.8691563 -31.74148305]\n", + " [ 30.87101512 -27.35505487]\n", + " [ 30.87287394 -22.96862669]\n", + " [ 30.87473276 -18.58219851]\n", + " [ 30.87659158 -14.19577034]\n", + " [ 30.8784504 -9.80934216]\n", + " [ 30.88030922 -5.42291398]\n", + " [ 30.88216803 -1.0364858 ]\n", + " [ 0.17996951 -29.81597784]\n", + " [ 0.18224768 DEBUG:root:radec2pix: curVec: [[ 0.16376271 0.5067895 -0.84637236]\n", + " [ 0.14223208 0.49326698 -0.85817115]\n", + " [ 0.12016135 0.47907944 -0.86950799]\n", + " [ 0.09763239 0.46426194 -0.88030039]\n", + " [ 0.07472826 0.44885447 -0.89047479]\n", + " [ 0.05153454 0.43290296 -0.89996623]\n", + " [ 0.02814004 0.41645987 -0.9087185 ]\n", + " [ 0.00463645 0.39958427 -0.91668474]\n", + " [ 0.16376271 0.5067895 -0.84637236]\n", + " [ 0.18168768 0.48566986 -0.85505227]\n", + " [ 0.19932771 0.46416439 -0.86302948]\n", + " [ 0.21661394 0.44236142 -0.87028431]\n", + " [ 0.23347844 0.42035317 -0.87680729]\n", + " [ 0.24985384 0.39823552 -0.88259931]\n", + " [ 0.26567279 0.37610804 -0.88767151]\n", + " [ 0.28086763 0.35407423 -0.8920453 ]\n", + " [ 0.00463645 0.39958427 -0.91668474]\n", + " [ 0.02328894 0.37781733 -0.92558722]\n", + " [ 0.0418584 0.35578129 -0.93363138]\n", + " [ 0.06027192 0.33356788 -0.94079741]\n", + " [ 0.0784589 0.31127072 -0.94707694]\n", + " [ 0.09635126 0.28898477 -0.9524727 ]\n", + " [ 0.11388304 0.26680662 -0.95699785]\n", + " [ 0.13098928 0.24483568 -0.96067544]\n", + " [ 0.28086763 0.35407423 -0.8920453 ]\n", + " [ 0.26111863 0.33957984 -0.90360533]\n", + " [ 0.24067302 0.32464293 -0.91470403]\n", + " [ 0.21961631 0.30930189 -0.92525727]\n", + " [ 0.19803378 0.29359997 -0.93519072]\n", + " [ 0.17601083 0.27758539 -0.9444398 ]\n", + " [ 0.15363361 0.26131135 -0.95294968]\n", + " [ 0.13098928 0.24483568 -0.96067544]\n", + " [ 0.15450888 0.50090573 -0.85159876]\n", + " [ 0.12774798 0.48388038 -0.86575991]\n", + " [ 0.10025703 0.46589064 -0.87914415]\n", + " [ 0.07218833 0.44700802 -0.8916124 ]\n", + " [ 0.04369954 0.42731714 -0.90304508]\n", + " [ 0.01495537 0.40691737 -0.91334254]\n", + " [ 0.17153629 0.49758882 -0.8502827 ]\n", + " [ 0.19332303 0.47143347 -0.86045145]\n", + " [ 0.21461336 0.44478597 -0.86954387]\n", + " [ 0.23528185 0.41781449 -0.87753832]\n", + " [ 0.25520441 0.39069558 -0.88443636]\n", + " [ 0.27425692 0.36361414 -0.89026283]\n", + " [ 0.01285491 0.39019102 -0.92064419]\n", + " [ 0.03566867 0.363321 -0.93098098]\n", + " [ 0.0582849 0.33613756 -0.94000766]\n", + " [ 0.08057261 0.30881232 -0.94770407]\n", + " [ 0.10240645 0.28152013 -0.95407512]\n", + " [ 0.12366547 0.25443991 -0.9591492 ]\n", + " [ 0.27229677 0.34788653 -0.89712286]\n", + " [ 0.24761165 0.32982034 -0.91099232]\n", + " [ 0.22196528 0.31112691 -0.92408412]\n", + " [ 0.19551475 0.29188382 -0.93625734]\n", + " [ 0.16841737 0.27217987 -0.94739311]\n", + " [ 0.14083213 0.25211491 -0.95739458]\n", + " [ 0.1637518 0.50667296 -0.84644424]\n", + " [ 0.1637518 0.50667296 -0.84644424]\n", + " [ 0.13100937 0.24496696 -0.96063923]\n", + " [ 0.13100937 0.24496696 -0.96063923]\n", + " [ 0.16232526 0.49178688 -0.85545086]\n", + " [ 0.18421437 0.46553784 -0.86564403]\n", + " [ 0.20562471 0.43880404 -0.87473967]\n", + " [ 0.22643099 0.4117541 -0.88271602]\n", + " [ 0.24650957 0.38456466 -0.88957465]\n", + " [ 0.2657369 0.35742048 -0.89534044]\n", + " [ 0.13564501 0.47467459 -0.86964617]\n", + " [ 0.15779683 0.44819421 -0.87989892]\n", + " [ 0.17951974 0.42125264 -0.8889988 ]\n", + " [ 0.20068848 0.39401986 -0.8969239 ]\n", + " [ 0.22118059 0.36667281 -0.90367594]\n", + " [ 0.24087428 0.33939559 -0.90928006]\n", + " [ 0.10822024 0.45661506 -0.88305779]\n", + " [ 0.13059441 0.42995462 -0.89335554]\n", + " [ 0.15259011 0.40286064 -0.90245197]\n", + " [ 0.17408147 0.37550434 -0.91032529]\n", + " [ 0.19494658 0.3480628 -0.91697771]\n", + " [ 0.21506519 0.32071917 -0.92243492]\n", + " [ 0.08020288 0.4376803 -0.89554646]\n", + " [ 0.1027585 0.41089268 -0.90587411]\n", + " [ 0.12498749 0.3837032 -0.91495901]\n", + " [ 0.14676275 0.35628394 -0.92277974]\n", + " [ 0.16796212 0.3288118 -0.9293393 ]\n", + " [ 0.18846614 0.30146874 -0.93466417]\n", + " [ 0.05175013 0.41795549 -0.90699236]\n", + " [ 0.07444507 0.39109519 -0.91733444]\n", + " [ 0.09686707 0.36386845 -0.92639976]\n", + " [ 0.11888742 0.33644763 -0.93416742]\n", + " [ 0.14038291 0.30900902 -0.94064131]\n", + " [ 0.16123398 0.28173327 -0.94584881]\n", + " [ 0.02302622 0.39754049 -0.91729568]\n", + " [ 0.04581687 0.37066313 -0.9276366 ]\n", + " [ 0.06839007 0.34345801 -0.93667465]\n", + " [ 0.09061539 0.31609709 -0.94438948]\n", + " [ 0.11236807 0.28875563 -0.95078578]\n", + " [ 0.13352764 0.26161298 -0.95589174]]\n", + "DEBUG:root:optics_fp: xyfp: [[32.275486 31.41357429]\n", + " [32.27502267 27.02714574]\n", + " [32.27455935 22.64071719]\n", + " [32.27409601 18.25428864]\n", + " [32.27363269 13.8678601 ]\n", + " [32.27316936 9.48143155]\n", + " [32.27270604 5.095003 ]\n", + " [32.27224271 0.70857446]\n", + " [32.275486 31.41357429]\n", + " [27.88905745 31.41403761]\n", + " [23.5026289 31.41450094]\n", + " [19.11620036 31.41496427]\n", + " [14.72977181 31.41542759]\n", + " [10.34334326 31.41589092]\n", + " [ 5.95691471 31.41635424]\n", + " [ 1.57048617 31.41681757]\n", + " [32.27224271 0.70857446]\n", + " [27.88581416 0.70903778]\n", + " [23.49938562 0.70950111]\n", + " [19.11295707 0.70996444]\n", + " [14.72652852 0.71042776]\n", + " [10.34009998 0.71089109]\n", + " [ 5.95367142 0.71135442]\n", + " [ 1.56724288 0.71181774]\n", + " [ 1.57048617 31.41681757]\n", + " [ 1.57002284 27.03038902]\n", + " [ 1.56955951 22.64396047]\n", + " [ 1.56909619 18.25753194]\n", + " [ 1.56863286 13.87110338]\n", + " [ 1.56816953 9.48467484]\n", + " [ 1.56770621 5.09824629]\n", + " [ 1.56724288 0.71181774]\n", + " [32.26028399 29.50107588]\n", + " [32.25971613 24.12507591]\n", + " [32.25914828 18.74907594]\n", + " [32.25858043 13.37307597]\n", + " [32.25801258 7.997076 ]\n", + " [32.25744472 2.62107603]\n", + " [30.36298443 31.3987763 ]\n", + " [24.98698446 31.39934415]\n", + " [19.61098448 31.399912 ]\n", + " [14.23498451 31.40047985]\n", + " [ 8.85898454 31.40104771]\n", + " [ 3.48298457 31.40161556]\n", + " [30.3597077 2.67550987]\n", + " [14.2786078 2.67448807]\n", + " [ 8.90260789 2.67346627]\n", + " [ 3.52660799 2.67244448]]\n", + "DEBUG:root:optics_fp: sphi: [0.99997205 0.99996215 0.99994596 0.9999168 0.99985602 0.99969394\n", + " 0.99896586 0.96370392 0.99997205 0.98945005 0.96161446 0.92056536\n", + " 0.87130661 0.81840538 0.7653019 0.71421799 0.96370392 0.18379675\n", + " 0.09559053 0.0644947 0.04865962 0.03907157 0.03264451 0.02803701\n", + " 0.71421799 0.66005264 0.59321085 0.51139137 0.41288109 0.29745825\n", + " 0.16740606 0.02803701 0.99996412 0.99994622 0.99991085 0.99982512\n", + " 0.99951636 0.99583433 0.99768999 0.97272729 0.92563647 0.86534345\n", + " 0.80018633 0.73598422 0.37838518 0.11614437 0.06810698 0.04816635\n", + " 0.03726317 0.03039091 0.69218254 0.61758205 0.52161719 0.40085381\n", + " 0.25499936 0.08953536 0.99996836 0.99996836 0.02853493 0.02853493\n", + " 0.99738561 0.96928847 0.91700471 0.85133735 0.78183168 0.71467375\n", + " 0.99610509 0.95517974 0.88309587 0.79897088 0.71634182 0.64163497\n", + " 0.99359564 0.92909172 0.82599908 0.71896601 0.62438193 0.54577441\n", + " 0.98760088 0.87388285 0.72369807 0.59498147 0.49654613 0.42249123\n", + " 0.96691132 0.7347772 0.53422865 0.40742853 0.32594274 0.27047521\n", + " 0.79049097 0.3461884 0.21049264 0.15029925 0.11669955 0.09532849]\n", + "DEBUG:root:radec2pix: lat: [73.24843796 74.22959053 75.14101603 75.95564397 76.6437957 77.17522107\n", + " 77.52247637 77.66531399 73.24843796 74.25938156 75.20604331 76.06127099\n", + " 76.79469021 77.37449152 77.77070397 77.95983585 77.66531399 79.26403549\n", + " 80.8954867 82.55419485 84.2348008 85.93154111 87.63625009 89.30890983\n", + " 77.95983585 79.5631834 81.19741545 82.85654952 84.53396682 86.22024\n", + " 87.89143193 89.30890983 73.68688931 74.8461168 75.87404737 76.71704667\n", + " 77.31977046 77.63442603 73.69912883 74.89851762 75.9747656 76.87322604\n", + " 77.53566935 77.90931811 78.357841 80.33991917 82.36567874 84.42519517\n", + " 86.5076147 88.59172382 78.65442708 80.64093339 82.6678651 84.72327772\n", + " 86.78866387 88.77999774 73.25542451 73.25542451 89.30107513 89.30107513\n", + " 74.14922787 75.40361568 76.5361131 77.487864431 0.72377647]\n", + " [24.98374433 0.72434432]\n", + " [19.60774436 0.72491217]\n", + " [14.23174439 0.72548003]\n", + " [ 8.85574442 0.72604788]\n", + " [ 3.47974445 0.72661573]\n", + " [ 1.58528416 29.504316 ]\n", + " [ 1.5847163 24.12831603]\n", + " [ 1.58414845 18.75231606]\n", + " [ 1.5835806 13.37631609]\n", + " [ 1.58301275 8.00031612]\n", + " [ 1.5824449 2.62431615]\n", + " [32.26048441 31.39857587]\n", + " [32.26048441 31.39857587]\n", + " [ 1.58224447 0.72681616]\n", + " [ 1.58224447 0.72681616]\n", + " [30.36278399 29.50127631]\n", + " [24.98678403 29.50184416]\n", + " [19.61078405 29.50241201]\n", + " [14.23478409 29.50297987]\n", + " [ 8.85878411 29.50354772]\n", + " [ 3.48278414 29.50411557]\n", + " [30.36221615 24.12527634]\n", + " [24.98621618 24.12584419]\n", + " [19.6102162 24.12641204]\n", + " [14.23421623 24.1269799 ]\n", + " [ 8.85821626 24.12754775]\n", + " [ 3.48221629 24.1281156 ]\n", + " [30.36164829 18.74927637]\n", + " [24.98564832 18.74984422]\n", + " [19.60964835 18.75041208]\n", + " [14.23364838 18.75097993]\n", + " [ 8.85764841 18.75154778]\n", + " [ 3.48164844 18.75211563]\n", + " [30.36108043 13.3732764 ]\n", + " [24.98508046 13.37384425]\n", + " [19.60908049 13.3744121 ]\n", + " [14.23308053 13.37497996]\n", + " [ 8.85708056 13.37554781]\n", + " [ 3.48108059 13.37611567]\n", + " [30.36051258 7.99727643]\n", + " [24.98451261 7.99784428]\n", + " [19.60851265 7.99841214]\n", + " [14.23251268 7.99897999]\n", + " [ 8.85651271 7.99954784]\n", + " [ 3.48051273 8.00011569]\n", + " [30.35994473 2.62127646]\n", + " [24.98394476 2.62184431]\n", + " [19.60794479 2.62241216]\n", + " [14.23194482 2.62298002]\n", + " [ 8.85594485 2.62354787]\n", + " [ 3.47994488 2.62411572]]\n", + "DEBUG:root:radec2pix: lng: [ 90.47719648 90.55672682 90.66687597 90.82953968 91.0940213\n", + " 91.5994309 92.9498036 107.65020813 90.47719648 98.38070645\n", + " 105.9767833 113.03909385 119.43357191 125.11472623 130.10200281\n", + " 134.45251944 107.65020813 169.61839319 174.60281853 176.35464905\n", + " 177.24671913 177.78699525 178.149242 178.40898834 134.45251944\n", + " 138.72924775 143.64878868 149.27726033 155.64622183 162.72363484\n", + " 170.38599488 178.40898834 90.53796733 90.66055396 90.85289348\n", + " 91.19818153 91.99914413 95.89819456 93.94516067 103.46269209\n", + " 112.28380041 120.12202419 126.89084824 132.64302298 158.33080444\n", + " 173.44203131 176.15005523 177.27375664 177.8883436 178.27582468\n", + " 136.22925254 141.89402899 148.59312727 156.4003322 165.25344571\n", + " 174.88216618 90.50467598 90.50467598 178.38048842 178.38048842\n", + " 94.19778856 104.29099371 113.55934226 121.68876645 128.61161022\n", + " 134.41785939 95.12656191 107.28679494 118.04349613 127.02097674\n", + " 134.29081962 140.12241992 96.57828818 111.79338073 124.38427646\n", + " 134.09036566 141.4100222 146.95926252 99.16244844 119.20302386\n", + " 133.72701528 143.55240671 150.27503583 155.04314708 105.00164812\n", + " 132.86645918 147.80237126 156.01703787 161.01884636 164.3374646\n", + " 128.29176769 159.89787077 167.9213331 171.39949271 173.32787944\n", + " 174.55097942]\n", + "DEBUG:root:optics_fp: rtanth: [31.72889598 27.34254715 22.95622881 18.56996252 14.18379661 9.79786588\n", + " 5.41274207 1.03869565 31.72889598 32.05497925 32.96668106 34.41749464\n", + " 36.342913 38.67211172 41.33689193 44.27670445 1.03869565 4.67736497\n", + " 9.00877953 13.37609754 17.75284128 22.13341982 26.51593264 -24.43997833]\n", + " [ 0.18452584 -19.06397881]\n", + " [ 0.18680401 -13.6879793 ]\n", + " [ 0.18908217 -8.31197977]\n", + " [ 0.19136034 -2.93598025]\n", + " [ 2.07666524 -31.71428177]\n", + " [ 7.45266476 -31.71655993]\n", + " [ 12.82866428 -31.7188381 ]\n", + " [ 18.2046638 -31.72111627]\n", + " [ 23.58066331 -31.72339443]\n", + " [ 28.95666283 -31.7256726 ]\n", + " [ 2.08966426 -1.03928452]\n", + " [ 7.46566378 -1.04156269]\n", + " [ 12.8416633 -1.04384085]\n", + " [ 18.21766282 -1.04611902]\n", + " [ 23.59366233 -1.04839718]\n", + " [ 28.96966185 -1.05067535]\n", + " [ 30.85496675 -29.82897686]\n", + " [ 30.85724492 -24.45297735]\n", + " [ 30.85952308 -19.07697783]\n", + " [ 30.86180126 -13.70097831]\n", + " [ 30.86407941 -8.32497879]\n", + " [ 30.86635759 -2.94897928]\n", + " [ 0.17916541 -31.71347767]\n", + " [ 0.17916541 -31.71347767]\n", + " [ 30.86716168 -1.05147945]\n", + " [ 30.86716168 -1.05147945]\n", + " [ 2.07746934 -29.81678193]\n", + " [ 7.45346886 -29.8190601 ]\n", + " [ 12.82946837 -29.82133827]\n", + " [ 18.20546789 -29.82361643]\n", + " [ 23.58146741 -29.82589461]\n", + " [ 28.95746693 -29.82817277]\n", + " [ 2.07974751 -24.44078242]\n", + " [ 7.45574702 -24.44306058]\n", + " [ 12.83174654 -24.44533875]\n", + " [ 18.20774606 -24.44761692]\n", + " [ 23.58374558 -24.44989508]\n", + " [ 28.95974509 -24.45217325]\n", + " [ 2.08202567 -19.0647829 ]\n", + " [ 7.45802519 -19.06706107]\n", + " [ 12.83402471 -19.06933924]\n", + " [ 18.21002422 -19.0716174 ]\n", + " [ 23.58602374 -19.07389557]\n", + " [ 28.96202325 -19.07617373]\n", + " [ 2.08430384 -13.68878339]\n", + " [ 7.46030335 -13.69106155]\n", + " [ 12.83630287 -13.69333972]\n", + " [ 18.21230239 -13.69561789]\n", + " [ 23.58830191 -13.69789605]\n", + " [ 28.96430143 -13.70017422]\n", + " [ 2.086582 -8.31278387]\n", + " [ 7.46258152 -8.31506203]\n", + " [ 12.83858103 -8.3173402 ]\n", + " [ 18.21458055 -8.31961837]\n", + " [ 23.59058007 -8.32189653]\n", + " [ 28.96657959 -8.3241747 ]\n", + " [ 2.08886017 -2.93678435]\n", + " [ 7.46485969 -2.93906252]\n", + " [ 12.8408592 -2.94134068]\n", + " [ 18.21685872 -2.94361885]\n", + " [ 23.59285824 -2.94589701]\n", + " [ 28.96885776 -2.94817518]]\n", + "30.89955671\n", + " 44.27670445 41.24704355 38.47976296 36.03536075 33.98358137 32.39910327\n", + " 31.35285463 30.89955671 29.81652098 24.44065782 19.06487182 13.68925392\n", + " 8.31413013 2.94220985 31.78219953 32.5803988 34.21489906 36.57374743\n", + " 39.52747698 42.9535403 2.33383998 7.53796979 12.88401801 18.24767393\n", + " 23.61694389 28.9887086 42.91616052 39.37153369 36.28003925 33.76636764\n", + " 31.96711857 31.00691067 31.71398377 31.71398377 30.88506563 30.88506563\n", + " 29.88906763 30.73646927 32.46394115 34.94119572 38.021962 41.57228381\n", + " 24.52910914 25.55486988 27.6084825 30.48291307 33.97043457 37.9021848\n", + " 19.17813281 20.47376266 22.98590632 26.36914053 30.33338108 34.67995379\n", + " 13.846556 15.59170589 18.76907627 22.78723124 27.27710291 32.04099765\n", + " 8.57065926 11.17275166 15.2972975 20.02465966 25.01538387 30.13892197\n", + " 3.60389222 8.02260672 13.1734259 18.4531524 23.77606504 29.11848994]\n", + "DEBUG:root:radec2pix: curVec: [[-0.66964689 -0.10553087 0.73514372]\n", + " [-0.64948107 -0.11060947 0.75228976]\n", + " [-0.62841561 -0.11586511 0.7692003 ]\n", + " [-0.60651232 -0.12125539 0.78577346]\n", + " [-0.58383879 -0.12674209 0.80191565]\n", + " [-0.5604686 -0.13229109 0.81754145]\n", + " [-0.53648165 -0.13787202 0.832573454 78.19419066 78.59463145\n", + " 75.36296624 76.78183851 78.08930019 79.21461778 80.0707569 80.56622359\n", + " 76.44568445 78.03639269 79.53999931 80.87766645 81.93562678 82.57036945\n", + " 77.33928008 79.09582585 80.80551049 82.39402202 83.72877916 84.58613925\n", + " 77.98201104 79.8754942 81.77128989 83.62092117 85.31596639 86.56531268\n", + " 78.31903282 80.2916347 82.30308639 84.33811541 86.36841377 88.27312586]\n", + "57]\n", + " [-0.51196423 -0.14345788 0.84694301]\n", + " [-0.66964689 -0.10553087 0.73514372]\n", + " [-0.67334009 -0.1311009 0.72761643]\n", + " [-0.67649574 -0.15716785 0.71948021]\n", + " [-0.67908204 -0.18360881 0.71072877]\n", + " [-0.68107243 -0.21030461 0.70136461]\n", + " [-0.68244556 -0.23713961 0.69139921]\n", + " [-0.68318558 -0.26400124 0.680853 ]\n", + " [-0.68328253 -0.29077984 0.66975523]\n", + " [-0.51196423 -0.14345788 0.84694301]\n", + " [-0.51445137 -0.17046816 0.8404049 ]\n", + " [-0.51657311 -0.19789608 0.83306024]\n", + " [-0.51829814 -0.22562351 0.82490064]\n", + " [-0.51960036 -0.25353493 0.81592616]\n", + " [-0.52045891 -0.28151569 0.80614604]\n", + " [-0.52085845 -0.DEBUG:root:radec2pix: xyfp: [[-32.31281793 -31.43806373]\n", + " [-32.31091541 -27.05163558]\n", + " [-32.30901287 -22.66520742]\n", + " [-32.30711034 -18.27877926]\n", + " [-32.3052078 -13.8923511 ]\n", + " [-32.30330527 -9.50592294]\n", + " [-32.30140274 -5.11949478]\n", + " [-32.2995002 -0.73306663]\n", + " [-32.31281793 -31.43806373]\n", + " [-27.92638978 -31.43996627]\n", + " [-23.53996162 -31.4418688 ]\n", + " [-19.15353346 -31.44377134]\n", + " [-14.7671053 -31.44567387]\n", + " [-10.38067715 -31.44757641]\n", + " [ -5.99424899 -31.44947894]\n", + " [ -1.60782083 -31.45138147]\n", + " [-32.2995002 -0.73306663]\n", + " [-27.91307204 -0.73496916]\n", + " [-23.52664389 -0.73687169]\n", + " [-19.14021573 -0.73877423]\n", + " [-14.75378757 -0.74067676]\n", + " [-10.36735941 -0.74257929]\n", + " [ -5.98093125 -0.74448183]\n", + " [ -1.59450309 -0.74638436]\n", + " [ -1.60782083 -31.45138147]\n", + " [ -1.60591829 -27.06495331]\n", + " [ -1.60401576 -22.67852516]\n", + " [ -1.60211323 -18.292097 ]\n", + " [ -1.60021069 -13.90566884]\n", + " [ -1.59830816 -9.51924068]\n", + " [ -1.59640563 -5.13281252]\n", + " [ -1.59450309 -0.74638436]\n", + " [-32.29698843 -29.52557043]\n", + " [-32.29465669 3094511 0.79557935]\n", + " [-0.52078942 -0.33722682 0.78425535]\n", + " [-0.68328253 -0.29077984 0.66975523]\n", + " [-0.66259242 -0.29788439 0.68719442]\n", + " [-0.64095356 -0.3048967 0.70442639]\n", + " [-0.61842337 -0.31177504 0.7213521 ]\n", + " [-0.59506566 -0.31848108 0.73787984]\n", + " [-0.57095217 -0.3249795 0.75392436]\n", + " [-0.54616355 -0.33123786 0.76940682]\n", + " [-0.52078942 -0.33722682 0.78425535]\n", + " [-0.66098215 -0.10780749 0.74261709]\n", + " [-0.63565377 -0.11415781 0.76348692]\n", + " [-0.60903481 -0.12073129 0.78390086]\n", + " [-0.58124729 -0.12745579 0.80368316]\n", + " [-0.55242669 -0.13426846 0.82267657]\n", + " [-0.52272279 -0.14111483 0.84074223]\n", + " [-0.67125342 -0.11662793 0.73199507]\n", + " [-0.67542209 -0.14831793 0.72236195]\n", + " [-0.67875124 -0.18063173 0.7118068 ]\n", + " [-0.68118981 -0.21334839 0.70033057]\n", + " [-0.68269854 -0.24625495 0.68795436]\n", + " [-0.68325066 -0.2791454 0.67471948]\n", + " [-0.51317632 -0.1551562 0.84414254]\n", + " [-0.5159839 -0.18855577 0.83558802]\n", + " [-0.5182108 -0.22246493 0.82581288]\n", + " [-0.5198068 -0.25667003 0.81481371]\n", + " [-0.52073353 -0.29095988 0.80260759]\n", + " [-0.52096512 -0.32512345 0.78923386]\n", + " [-0.67438247 -0.29379428 0.67741656]\n", + " [-0.64837969 -0.30244413 0.69866396]\n", + " [-0.62100829 -0.31091374 0.71950076]\n", + " [-0.592383 -0.31913117 0.73975514]\n", + " [-0.56263601 -0.32703138 0.75927017]\n", + " [-0.53191955 -0.33455593 0.77790354]\n", + " [-0.66959303 -0.10563434 0.73517791]\n", + " [-0.66959303 -0.10563434 0.73517791]\n", + " [-0.52087812 -0.33711225 0.7842457 ]\n", + " [-0.52087812 -0.33711225 0.7842457 ]\n", + " [-0.6626174 -0.11886653 0.7394653 ]\n", + " [-0.66672321 -0.15073508 0.72990348]\n", + " [-0.6700019 -0.18321733 0.71939479]\n", + " [-0.67240219 -0.21609282 0.7079401 ]\n", + " [-0.67388446 -0.24914894 0.6955606 ]\n", + " [-0.67442154 -0.28217958 0.68229779]\n", + " [-0.63721204 -0.12538327 0.76042084]\n", + " [-0.64112553 -0.15770472 0.75105744]\n", + " [-0.64424991 -0.19061352 0.74068113]\n", + " [-0.64653323 -0.22389098 0.72929255]\n", + " [-0.64793479 -0.25732548 0.7169129 ]\n", + " [-0.64842648 -0.29071043 0.70358407]\n", + " [-0.61050739 -0.13209497 0.78091718]\n", + " [-0.61420655 -0.16479147 0DEBUG:root:radec2pix: curVec Shape: (96, 3)\n", + ".77174742]\n", + " [-0.61715849 -0.19805256 0.76150547]\n", + " [-0.6193107 -0.23166156 0.75019143]\n", + " [-0.62062187 -0.26540751 0.73782609]\n", + " [-0.6210633 -0.29908292 0.72445136]\n", + " [-0.58262509 -0.13892981 0.80077869]\n", + " [-0.58608652 -0.17192464 0.79179828]\n", + " [-0.58884616 -0.20546473 0.78169332]\n", + " [-0.5908515 -0.23933504 0.770463 ]\n", + " [-0.59206127 -0.27332492 0.75812726]\n", + " [-0.59244684 -0.30722566 0.74472756]\n", + " [-0.55370042 -0.14582537 0.81984804]\n", + " [-0.55689993 -0.17904292 0.81105246]\n", + " [-0.55944664 -0.2127892 0.8010869 ]\n", + " [-0.56128864 -0.24685021 0.78994939]\n", + " [-0.56238547 -0.28101522 0.77765868]\n", + " [-0.56270931 -0.31507432 0.76425546]\n", + " [-0.52388324 -0.15272749 0.83798608]\n", + " [-0.52679707 -0.18609279 0.82936983]\n", + " [-0.52911072 -0.21997238 0.81954499]\n", + " [-0.53077348 -0.25415263 0.80850847]\n", + " [-0.53174636 -0.28842248 0.79627777]\n", + " [-0.53200289 -0.32257114 0.78289257]]\n", + "DEBUG:root:radec2pix: ccdpx: [[-4.45000000e+01 -4.99999951e-01]\n", + " [-4.45000000e+01 2.9DEBUG:root:optics_fp: xyfp: [[ 0.236018 -31.56946754]\n", + " [ 0.23651287 -27.18303899]\n", + " [ 0.23700774 -22.79661046]\n", + " [ 0.23750261 -18.41018192]\n", + " [ 0.23799748 -14.02375336]\n", + " [ 0.23849235 -9.63732482]\n", + " [ 0.23898721 -5.25089628]\n", + " [ 0.23948208 -0.86446773]\n", + " [ 0.236018 -31.56946754]\n", + " [ 4.62244655 -31.56996241]\n", + " [ 9.00887509 -31.57045728]\n", + " [ 13.39530363 -31.57095214]\n", + " [ 17.78173218 -31.57144701]\n", + " [ 22.16816072 -31.57194188]\n", + " [ 26.55458927 -31.57243675]\n", + " [ 30.94101781 -31.57293162]\n", + " [ 0.23948208 -0.86446773]\n", + " [ 4.62591062 -0.8649626 ]\n", + " [ 9.01233917 -0.86545747]\n", + " [ 13.39876771 -0.86595234]\n", + " [ 17.78519626 -0.86644721]\n", + " [ 22.1716248 -0.86694208]\n", + " [ 26.55805334 -0.86743695]\n", + " [ 30.94448189 -0.86793181]\n", + " [ 30.94101781 -31.57293162]\n", + " [ 30.94151268 -27.18650307]\n", + " [ 30.94200754 -22.80007453]\n", + " [ 30.94250242 -18.41364599]\n", + " [ 30.94299728 -14.02721745]\n", + " [ 30.94349215 -9.6407889 ]\n", + " [ 30.94398702 -5.25436036]\n", + " [ 30.94448189 -0.86793181]\n", + " [ 0.25123377 -29.65696924]\n", + " [ 0.25184028 DEBUG:root:radec2pix: curVec Shape: (96, 3)\n", + "DEBUG:root:radec2pix: ccdpx: [[-4.45000002e+01 -5.00000174e-01]\n", + " [-4.44999997e+01 2.91928572e+02]\n", + " [-4.45000002e+01 5.84357143e+02]\n", + " [-4.45000000e+01 8.76785714e+02]\n", + " [-4.45000001e+01 1.16921429e+03]\n", + " [-4.44999999e+01 1.46164286e+03]\n", + " [-4.45000001e+01 1.75407143e+03]\n", + " [-4.44999997e+01 2.04650000e+03]\n", + " [-4.45000002e+01 -5.00000174e-01]\n", + " [ 2.47928571e+02 -5.00000003e-01]\n", + " [ 5.40357143e+02 -4.99999889e-01]\n", + " [ 8.32785714e+02 -5.00000160e-01]\n", + " [ 1.12521429e+03 -5.00000087e-01]\n", + " [ 1.41764286e+03 -5.00000059e-01]\n", + " [ 1.71007143e+03 -4.99999907e-01]\n", + " [ 2.00250000e+03 -4.99999721e-01]\n", + " [-4.44999997e+01 2.04650000e+03]\n", + " [ 2.47928571e+02 2.04650000e+03]\n", + " [ 5.40357143e+02 2.04650000e+03]\n", + " [ 8.32785714e+02 2.04650000e+03]\n", + " [ 1.12521429e+03 2.04650000e+03]\n", + " [ 1.41764286e+03 2.04650000e+03]\n", + " [ 1.71007143e+03 2.04650000e+03]\n", + " [ 2.00250000e+03 2.04650000e+03]\n", + " [ 2.00250000e+03 -4.99999721e-01]\n", + " [ 2.00250000e+03 2.91928571e+02]\n", + " [ 2.00250000e+03DEBUG:root:optics_fp: cphi: [-0.0051738 -0.00607178 -0.0073129 -0.00914033 -0.01209791 -0.01770316\n", + " -0.03238875 -0.17057046 -0.0051738 -0.14196195 -0.27109236 -0.38711253\n", + " -0.48729918 -0.57137557 -0.64065601 -0.69718731 -0.17057046 -0.97567733\n", + " -0.99347832 -0.99703634 -0.99831251 -0.99891078 -0.99923847 -0.99943725\n", + " -0.69718731 -0.74844189 -0.80231456 -0.85678989 -0.9085738 -0.95306497\n", + " -0.98492815 -0.99943725 -0.0060359 -0.00745674 -0.00967884 -0.01364603\n", + " -0.02274227 -0.06503966 -0.06534051 -0.22874689 -0.3749438 -0.49775222\n", + " -0.59656384 -0.67413914 -0.89537598 -0.99040776 -0.99671262 -0.99835535\n", + " -0.9990142 -0.99934296 -0.71895916 -0.78374506 -0.85059233 -0.91398049\n", + " -0.96549457 -0.99546704 -0.00564941 -0.00564941 -0.9994203 -0.9994203\n", + " -0.06950599 -0.24249594 -0.39519134 -0.52103162 -0.62020649 -0.69655704\n", + " -0.08478692 -0.29175445 -0.46477551 -0.59730991 -0.69424327 -0.76406532\n", + " -0.10856248 -0.36427233 -0.55834321 -0.69058088 -0.77756 -0.83512289\n", + " -0.15052868 -0.47847897 -0.68390701 -0.79923279 -0.86476566 -0.90397627\n", + " -0.24345642 -0.66792691 -0.83927119 -0.9096075 -0.9430429 -0.96110205\n", + " -0.57961227 -0.93047808 -0.97475473 -0.98719494 -0.99229449 -0.99486127]\n", + "DEBUG:root:optics_fp: rtanth: [45.0829242 42.14007881 39.46623798 37.11957906 35.16566323 33.67292833\n", + " 32.70458448 32.30781794 45.0829242 42.05181002 39.27748601 36.81804721\n", + " 34.74043472 33.1165898 32.01563284 31.49245123 32.30781794 27.92274647\n", + " 23.53818074 19.15446803 14.77236778 10.39391962 6.02708817 1.76054813\n", + " 31.49245123 27.11255561 22.73517913 18.3621235 13.99743906 9.65248838\n", + " 5.37533955 1.76054813 43.75905359 40.32550839 37.35292806 34.95909888\n", + " 33.26918554 32.39354213 43.72230567 40.17242604 37.06494796 34.51955493\n", + " 32.6679006 31.63204924 30.39623387 25.02228675 19.64946278 14.27902981\n", + " 8.91530985 3.58853155 29.58337372 24.21709844 18.85636405 13.50776907\n", + " 8.19511667 3.10850472 45.06171287 45.06171287 1.78051042 1.78051042\n", + " 42.37849474 38.70556314 35.46980647 32.8008DEBUG:root:radec2pix: lat: [77.93927193 79.54395482 81.18055575 82.84390632 84.52894038 86.23049276\n", + " 87.9428694 89.64907294 77.93927193 77.81611283 77.48163499 76.95619116\n", + " 76.26808809 75.44881244 74.52941663 73.53851291 89.64907294 88.14278148\n", + " 86.44266427 84.74397225 83.05883421 81.39378264 79.75434117 78.14585205\n", + " 73.53851291 74.55039439 75.49464441 76.34256389 77.06256929 77.62200189\n", + " 77.99067226 78.14585205 78.63460262 80.62342084 82.65501815 84.72002626\n", + " 86.80886799 88.90945013 77.91780497 77.62268078 77.02911929 76.18620636\n", + " 75.15153709 73.98133314 89.07797965 87.01823413 84.93466191 82.86963733\n", + " 80.83566227 78.84284498 73.98994449 75.188461 76.25722019 77.13921802\n", + " 77.77469141 78.11085607 77.94465092 77.94465092 78.15114253 78.15114253\n", + " 78.60576152 78.28926489 77.65557547 76.7612779 75.67077293 74.44486167\n", + " 80.58736145 80.19458487 79.42244991 78.35883667 77.09292697 75.69943663\n", + " 82.60788147 82.10171615 81.13877773 79.86296648 78.39628485 76.82509319\n", + " 84.6534244 83.96086026DEBUG:root:optics_fp: xyfp shape: (96, 2)\n", + "DEBUG:root:radec2pix: camVec: [[ 0.00152888 0.00154215 0.00155354 0.00156302 0.00157054 0.00157606\n", + " 0.00157952 0.00158089 0.00152888 0.03055413 0.0594604 0.08813528\n", + " 0.11646734 0.14434605 0.17166149 0.1983039 0.00158089 0.03159291\n", + " 0.06147904 0.0911219 0.12040769 0.14922671 0.17747265 0.2050409\n", + " 0.1983039 0.20004855 0.20153434 0.2027606 0.20372608 0.20442907\n", + " 0.20486781 0.2050409 0.00163462 0.00165059 0.00166353 0.00167335\n", + " 0.00167995 0.00168324 0.01419184 0.04970047 0.08491857 0.11964057\n", + " 0.15366298 0.18678351 0.01467408 0.05138704 0.08779394 0.12368372\n", + " 0.15885436 0.19311093 0.19900616 0.20096941 0.20254341 0.2037261\n", + " 0.2045144 0.20490517 0.00162826 0.00162826 0.20494776 0.20494776\n", + " 0.01424722 0.04989441 0.08525013 0.12010852 0.15426631 0.18752167\n", + " 0.01438645 0.05038177 0.08608239 0.1212815 0.15577635 0.18936679\n", + " 0.01449922 0.05077617 0.08675481 0.11928572e+02]\n", + " [-4.45000000e+01 5.84357142e+02]\n", + " [-4.45000000e+01 8.76785714e+02]\n", + " [-4.45000000e+01 1.16921429e+03]\n", + " [-4.45000000e+01 1.46164286e+03]\n", + " [-4.45000000e+01 1.75407143e+03]\n", + " [-4.45000000e+01 2.04650000e+03]\n", + " [-4.45000000e+01 -4.99999951e-01]\n", + " [ 2.47928571e+02 -5.00000176e-01]\n", + " [ 5.40357143e+02 -5.00000069e-01]\n", + " [ 8.32785714e+02 -5.00000257e-01]\n", + " [ 1.12521429e+03 -4.99999992e-01]\n", + " [ 1.41764286e+03 -5.00000241e-01]\n", + " [ 1.71007143e+03 -4.99999730e-01]\n", + " [ 2.00250000e+03 -5.00000010e-01]\n", + " [-4.45000000e+01 2.04650000e+03]\n", + " [ 2.47928571e+02 2.04650000e+03]\n", + " [ 5.40357143e+02 2.04650000e+03]\n", + " [ 8.32785714e+02 2.04650000e+03]\n", + " [ 1.12521429e+03 2.04650000e+03]\n", + " [ 1.41764286e+03 2.04650000e+03]\n", + " [ 1.71007143e+03 2.04650000e+03]\n", + " [ 2.00250000e+03 2.04650000e+03]\n", + " [ 2.00250000e+03 -5.00000010e-01]\n", + " [ 2.00250000e+03 2.91928572e+02]\n", + " [ 2.00250000e+03 5.84357143e+02]\n", + " [ 2.00250000e+03 8.76785714e+02]\n", + " [ 2.00250000e+03 1.16921429e+03]\n", + " [ 2.00250000e+03 1.46164286e+03]\n", + " [ 2.00250000e+03 1.75407143e+03]\n", + " [ 2.00250000e+03 2.04650000e+03]\n", + " [-4.35000000e+01 1.27000000e+02]\n", + " [-4.35000000e+01 4.85400000e+02]\n", + " [-4.35000000e+01 8.43800000e+02]\n", + " [-4.35000000e+01 1.20220000e+03]\n", + " [-4.35000000e+01 1.56060000e+03]\n", + " [-4.35000000e+01 1.91900000e+03]\n", + " [ 8.30000000e+01 4.99999720e-01]\n", + " [ 4.41400000e+02 4.99999983e-01]\n", + " [ 7.99800000e+02 4.99999771e-01]\n", + " [ 1.15820000e+03 4.99999773e-01]\n", + " [ 1.51660000e+03 5.00000075e-01]\n", + " [ 1.87500000e+03 4.99999913e-01]\n", + " [ 8.29999998e+01 2.04550000e+03]\n", + " [ 4.41400000e+02 2.04550000e+03]\n", + " [ 7.99800000e+02 2.04550000e+03]\n", + " [ 1.15820000e+03 2.04550000e+03]\n", + " [ 1.51660000e+03 2.04550000e+03]\n", + " [ 1.87500000e+03 2.04550000e+03]\n", + " [ 2.00150000e+03 1.27000000e+02]\n", + " [ 2.00150000e+03 4.85400000e+02]\n", + " [ 2.00150000e+03 8.43800000e+02]\n", + " [ 2.00150000e+03 1.20220000e+03]\n", + " [ 2.00150000e+03 1.56060000e+03]\n", + " [ 2.00150000e+03 1.91900000e+03]\n", + " [-4.35000000e+01 4.99999930e-01]\n", + " [-4.35000000e+01 4.99999930e-01]\n", + " [ 2.00150000e+03 2.045500DEBUG:root:radec2pix: camVec: [[0.20622014 0.20805053 0.20961035 0.210899 0.21191543 0.21265818\n", + " 0.21312568 0.21331667 0.20622014 0.17982824 0.1527297 0.12503427\n", + " 0.09685185 0.06829276 0.03946812 0.01049004 0.21331667 0.18597713\n", + " 0.1579279 0.12927353 0.10011961 0.07057467 0.04075124 0.01076573\n", + " 0.01049004 0.01056977 0.01063642 0.01068985 0.01072978 0.01075592\n", + " 0.01076796 0.01076573 0.20696213 0.20902258 0.21067623 0.21192136\n", + " 0.21275532 0.21317532 0.1948134 0.16197729 0.1281888 0.09365018\n", + " 0.05856456 0.02313694 0.20149034 0.16749252 0.1325326 0.09680441\n", + " 0.0605079 0.02385188 0.01062602 0.01071595 0.0107859 0.01083545\n", + " 0.01086402 0.01087112 0.20613793 0.20613793 0.01086844 0.01086844\n", + " 0.19558949 0.1626169 0.12869151 0.09401511 0.05879055 0.02322296\n", + " 0.19753009 0.16421774 0.12995114 0.09493033 0.05935726 0.02343764\n", + " 0.19908829 0.16550536 0.13096617 0.09566871 0.05981412 0.02360896\n", + " 0.20026215 0.16647694 0.13173312 0.09622682 0.06015857 0.02373584\n", + " 0.20104857 0.167 82.72578935 81.19023674 79.50664486 77.76043854\n", + " 86.6984902 85.65438612 84.03898568 82.21913056 80.33294013 78.43884558\n", + " 88.61780046 86.84637931 84.83282934 82.79823023 80.78132572 78.79952798]\n", + "-24.28096928]\n", + " [ 0.25244679 -18.90496931]\n", + " [ 0.2530533 -13.52896935]\n", + " [ 0.25365981 -8.15296938]\n", + " [ 0.25426632 -2.77696942]\n", + " [ 2.14851968 -31.5546833 ]\n", + " [ 7.52451965 -31.55528981]\n", + " [ 12.90051962 -31.55589633]\n", + " [ 18.27651958 -31.55650284]\n", + " [ 23.65251954 -31.55710934]\n", + " [ 29.02851952 -31.55771586]\n", + " [ 2.15198038 -0.8796835 ]\n", + " [ 7.52798035 -0.88029001]\n", + " [ 12.90398031 -0.88089652]\n", + " [ 18.27998027 -0.88150303]\n", + " [ 23.65598025 -0.88210954]\n", + " [ 29.03198021 -0.88271605]\n", + " [ 30.92623357 -29.66042994]\n", + " [ 30.92684009 -24.28442998]\n", + " [ 30.9274466 -18.90843001]\n", + " [ 30.9280531 -13.53243004]\n", + " [ 30.92865961 -8.15643008]\n", + " [ 30.92926612 -2.78043011]\n", + " [ 0.2510197 -31.55446923]\n", + " [ 0.2510197 -31.55446923]\n", + " [ 30.9294802 -0.88293012]\n", + " [ 30.9294802 -0.88293012]\n", + " [ 2.14873376 -29.65718332]\n", + " [ 7.52473372 -29.65778983]\n", + " [ 12.90073369 -29.65839633]\n", + " [ 18.27673365 -29.65900285]\n", + " [ 23.65273362 -29.65960936]\n", + " [ 29.02873359 -29.66021587]\n", + " [ 2.14934027 -24.28118335]\n", + " [ 7.52534023 -24.28178986]\n", + " [ 12.9013402 -24.28239637]\n", + " [ 18.27734016 -24.28300288]\n", + " [ 23.65334013 -24.28360939]\n", + " [ 29.02934009 -24.2842159 ]\n", + " [ 2.14994678 -18.90518338]\n", + " [ 7.52594674 -18.90578989]\n", + " [ 12.90194671 -18.9063964 ]\n", + " [ 18.27794667 -18.90700292]\n", + " [ 23.65394664 -18.90760943]\n", + " [ 29.0299466 -18.90821593]\n", + " [ 2.15055329 -13.52918342]\n", + " [ 7.52655325 -13.52978993]\n", + " [ 12.90255322 -13.53039644]\n", + " [ 18.27855318 -13.53100295]\n", + " [ 23.65455315 -13.53160946]\n", + " [ 29.03055312 -13.53221597]\n", + " [ 2.1511598 -8.15318346]\n", + " [ 7.52715976 -8.15378996]\n", + " [ 12.90315973 -8.15439647]\n", + " [ 18.27915969 -8.15500298]\n", + " [ 23.65515966 -8.15560949]\n", + " [ 29.03115962 -8.156216 ]\n", + " [ 2.1517663 -2.77718348]\n", + " [ 7.52776627 -2.77779 ]\n", + " [ 12.90376624 -2.77839651]\n", + " [ 18.2797662 -2.77900302]\n", + " [ 23.65576617 -2.77960953]\n", + " [ 29.03176613 -2.78021604]]\n", + " 5.84357143e+02]\n", + " [ 2.00250000e+03 8.76785714e+02]\n", + " [ 2.00250000e+03 1.16921429e+03]\n", + " [ 2.00250000e+03 1.46164286e+03]\n", + " [ 2.00250000e+03 1.75407143e+03]\n", + " [ 2.00250000e+03 2.04650000e+03]\n", + " [-4.35000001e+01 1.27000000e+02]\n", + " [-4.34999997e+01 4.85400000e+02]\n", + " [-4.35000003e+01 8.43800000e+02]\n", + " [-4.35000003e+01 1.20220000e+03]\n", + " [-4.35000002e+01 1.56060000e+03]\n", + " [-4.35000003e+01 1.91900000e+03]\n", + " [ 8.30000000e+01 4.99999980e-01]\n", + " [ 4.41400000e+02 4.99999948e-01]\n", + " [ 7.99800000e+02 4.99999731e-01]\n", + " [ 1.15820000e+03 4.99999908e-01]\n", + " [ 1.51660000e+03 4.99999771e-01]\n", + " [ 1.87500000e+03 5.00000017e-01]\n", + " [ 8.29999998e+01 2.04550000e+03]\n", + " [ 4.41400000e+02 2.04550000e+03]\n", + " [ 7.99800000e+02 2.04550000e+03]\n", + " [ 1.15820000e+03 2.04550000e+03]\n", + " [ 1.51660000e+03 2.04550000e+03]\n", + " [ 1.87500000e+03 2.04550000e+03]\n", + " [ 2.00150000e+03 1.27000000e+02]\n", + " [ 2.00150000e+03 4.85400000e+02]\n", + " [ 2.00150000e+03 8.43800000e+02]\n", + " [ 2.00150000e+03 1.20220000e+03]\n", + " [ 2.00150000e+03 1.56060000e+03]\n", + " [ 2.00150000e+03 1.91900000e+03]\n", + " [-4.35000001e+01 4.99999868e-01]\n", + " [-4.35000001e+01 4.99999868e-01]\n", + " [ 2.00150000e+03 2.04550000e+03]\n", + " [ 2.00150000e+03 2.04550000e+03]\n", + " [ 8.30000002e+01 1.27000000e+02]\n", + " [ 4.41400000e+02 1.27000000e+02]\n", + " [ 7.99800000e+02 1.27000000e+02]\n", + " [ 1.15820000e+03 1.27000000e+02]\n", + " [ 1.51660000e+03 1.27000000e+02]\n", + " [ 1.87500000e+03 1.27000000e+02]\n", + " [ 8.30000001e+01 4.85400000e+02]\n", + " [ 4.41400000e+02 4.85400000e+02]\n", + " [ 7.99800000e+02 4.85400000e+02]\n", + " [ 1.15820000e+03 4.85400000e+02]\n", + " [ 1.51660000e+03 4.85400000e+02]\n", + " [ 1.87500000e+03 4.85400000e+02]\n", + " [ 8.29999997e+01 8.43800000e+02]\n", + " [ 4.41400000e+02 8.43800000e+02]\n", + " [ 7.99800000e+02 8.43800000e+02]\n", + " [ 1.15820000e+03 8.43800000e+02]\n", + " [ 1.51660000e+03 8.43800000e+02]\n", + " [ 1.87500000e+03 8.43800000e+02]\n", + " [ 8.29999998e+01 1.20220000e+03]\n", + " [ 4.41400000e+02 1.20220000e+03]\n", + " [ 7.99800000e+02 1.20220000e+03]\n", + " [ 1.15820000e+03 1.20220000e+03]\n", + " [ 1.51660000e+03 1.20220000e+03]\n", + " [ 1.87500000e+03 1.20220000e+03]\n", + " [ 8.30000003e+01 1.56060000e+03]\n", + " [ 4.41400000e+02 1.56060000e+03]\n", + " [ 7.99800000e+02 1.56060000e+03]\n", + " [ 1.15820000e+03 1.56060000e+03]\n", + " [ 1.51660000e+03 1.56060000e+03]\n", + " [ 1.87500000e+03 1.56060000e+03]\n", + " [ 8.29999998e+01 1.91900000e+03]\n", + " [ 4.41400000e+02 1.91900000e+03]\n", + " [ 7.99800000e+02 1.91900000e+03]\n", + " [ 1.15820000e+03 1.91900000e+03]\n", + " [ 1.51660000e+03 1.91900000e+03]\n", + " [ 1.87500000e+03 1.91900000e+03]]\n", + "2222707 0.15699061 0.19084708\n", + " 0.01458479 0.05107523 0.08726392 0.1229415 0.15790584 0.1919602\n", + " 0.01464229 0.05127607 0.08760541 0.12341989 0.15851749 0.19270261\n", + " 0.01467095 0.05137612 0.08777538 0.12365776 0.15882123 0.1930708 ]\n", + " [-0.20769103 -0.1801941 -0.15200928 -0.12324112 -0.09399571 -0.06438234\n", + " -0.03451442 -0.00450904 -0.20769103 -0.20754198 -0.20712371 -0.20643751\n", + " -0.2054851 -0.20426815 -0.20278791 -0.2010451 -0.00450904 -0.00450572\n", + " -0.00449643 -0.00448126 -0.00446035 -0.00443385 -0.00440189 -0.00436457\n", + " -0.2010451 -0.17444879 -0.14716869 -0.11931453 -0.09099614 -0.06232394\n", + " -0.03340929 -0.00436457 -0.1957935 -0.16161745 -0.12651199 -0.09067166\n", + " -0.05429781 -0.01760077 -0.20756647 -0.20720276 -0.20643606 -0.20526936\n", + " -0.20370571 -0.20174719 -0.00461102 -0.00460274 -0.00458538 -0.00455917\n", + " -0.0045244 -0.0044813 -0.18954613 -0.15647489 -0.12248558 -0.08778034\n", + " -0.05256249 -0.01703747 -0.20759824 -0.20759824 -0.00446412 -0.00446412\n", + " -0.19576354 -0.19542056 -0.19469787 -0.19359884 -0.19212697 -0.19028463\n", + " -0.16159264 -0.16130879 -0.16071144 -0.15980479 -0.15859338 -0.15708053\n", + " -0.12649245 -0.12626898 -0.12579928 -0.12508774 -0.12413931 -0.12295784\n", + " -0.09065756 -0.09049631 -0.09015775 -0.08964573 -0.08896468 -0.0881182\n", + " -0.05428931 -0.05419219 -0.05398843 -0.05368064 -0.05327188 -0.0527647\n", + " -0.01759801 -0.01756642 -0.01750018 -0.01740019 -0.0172675 -0.01710301]\n", + " [ 0.97819328 0.98362986 0.98837785 0.99237552 0.99557136 0.99792406\n", + " 0.99940295 0.99998858 0.97819328 0.97774DEBUG:root:optics_fp: sphi: [0.99998662 0.99998157 0.99997326 0.99995823 0.99992682 0.99984329\n", + " 0.99947535 0.98534548 0.99998662 0.98987212 0.96255334 0.92203248\n", + " 0.87323508 0.82068871 0.76782803 0.71688902 0.98534548 0.21921165\n", + " 0.11402118 0.07693204 0.0580701 0.04666103 0.03901907 0.03354371\n", + " 0.71688902 0.66320038 0.59690146 0.51566567 0.41772438 0.30276585\n", + " 0.17296396 0.03354371 0.99998178 0.9999722 0.99995316 0.99990689\n", + " 0.99974136 0.99788268 0.99786303 0.97348593 0.92704754 0.86731928\n", + " 0.80256563 0.73860437 0.44531096 0.13817549 0.08101827 0.0573289\n", + " 0.04439174 0.0362443 0.69505232 0.62108267 0.52582572 0.40575813\n", + " 0.26042318 0.09510716 0.99998404 0.99998404 0.03404492 0.03404492\n", + " 0.99758153 0.97015242 0.91859883 0.85353737 0.7844386 0.71750142\n", + " 0.99639911 0.95649325 0.88542855 0.80201052 0.71974043 0.64513889\n", + " 0.99408963 0.93129247 0.82961007 0.72325518 0.62880875 0.55006341\n", + " 0.98860564 0.87809901 0.72956919 0.60102159 0.50217562 0.42758264\n", + " 0.96991184 0.74422687 0.54371304 0.41546865 0.33267115 0.27619351\n", + " 0.81489239 0.36634758 0.22327834 0.15951848 0.12390179 0.10124753]\n", + "DEBUG:root:optics_fp: xyfp shape: (96, 2)\n", + "883 0.97650613 0.97448229\n", + " 0.97170532 0.9682142 0.96405881 0.95929997 0.99998858 0.99949066\n", + " 0.99809825 0.99582966 0.99271451 0.98879307 0.98411589 0.97874367\n", + " 0.95929997 0.9641308 0.96836217 0.97193219 0.97478992 0.97689533\n", + " 0.9782193 0.97874367 0.98064379 0.9868521 0.99196368 0.99587944\n", + " 0.99852337 0.99984368 0.97811796 0.97703474 0.97476817 0.97136534\n", + " 0.96689796 0.96146242 0.9998817 0.99866821 0.9961281 0.99231122\n", + " 0.98729166 0.9811667 0.96149301 0.9670196 0.97158296 0.97508476\n", + " 0.9774513 0.97863353 0.97821282 0.97821282 0.97876273 0.97876273\n", + " 0.98054763 0.97944952 0.97715155 0.97370089 0.9691693 0.96365314\n", + " 0.98675268 0.98561714 0.98324039 0.97966996 0.97497788 0.9692605\n", + " 0.9918616 0.99069568 0.9882551 0.98458804 0.979767 0.97388848\n", + " 0.99577532 0.00e+03]\n", + " [ 2.00150000e+03 2.04550000e+03]\n", + " [ 8.30000000e+01 1.27000000e+02]\n", + " [ 4.41400000e+02 1.27000000e+02]\n", + " [ 7.99800000e+02 1.27000000e+02]\n", + " [ 1.15820000e+03 1.27000000e+02]\n", + " [ 1.51660000e+03 1.27000000e+02]\n", + " [ 1.87500000e+03 1.27000000e+02]\n", + " [ 8.30000000e+01 4.85400000e+02]\n", + " [ 4.41400000e+02 4.85400000e+02]\n", + " [ 7.99800000e+02 4.85400000e+02]\n", + " [ 1.15820000e+03 4.85400000e+02]\n", + " [ 1.51660000e+03 4.85400000e+02]\n", + " [ 1.87500000e+03 4.85400000e+02]\n", + " [ 8.30000000e+01 8.43800000e+02]\n", + " [ 4.41400000e+02 8.43800000e+02]\n", + " [ 7.99800000e+02 8.43800000e+02]\n", + " [ 1.15820000e+03 8.43800000e+02]\n", + " [ 1.51660000e+03 8.43800000e+02]\n", + " [ 1.87500000e+03 8.43800000e+02]\n", + " [ 8.30000000e+01 1.20220000e+03]\n", + " [ 4.41400000e+02 1.20220000e+03]\n", + " [ 7.99800000e+02 1.20220000e+03]\n", + " [ 1.15820000e+03 1.20220000e+03]\n", + " [ 1.51660000e+03 1.20220000e+03]\n", + " [ 1.87500000e+03 1.20220000e+03]\n", + " [ 8.30000000e+01 1.56060000e+03]\n", + " [ 4.41400000e+02 1.56060000e+03]\n", + " [ 7.99800000e+02 1.56060000e+03]\n", + " [ 1.158200099458621 0.99209707 0.98835673 0.98343837 0.97743873\n", + " 0.99841789 0.9972131 0.99469118 0.99090157 0.985918 0.97983753\n", + " 0.9997375 0.99852487 0.99598656 0.99217236 0.98715635 0.98103576]]\n", + "12825 0.13224724 0.09660024 0.06038739 0.02381698\n", + " 0.20144435 0.16745515 0.13250401 0.09678486 0.06049766 0.02385117]\n", + " [0.20255556 0.17610143 0.14895462 0.12122494 0.09302239 0.06445739\n", + " 0.03564119 0.00668594 0.20255556 0.20441077 0.20600074 0.2073248\n", + " 0.20838186 0.20917033 0.20968847 0.20993479 0.00668594 0.00675821\n", + " 0.00682246 0.00687853 0.00692617 0.0069651 0.00699507 0.00701584\n", + " 0.20993479 0.18250233 0.15437326 0.12565215 0.09644485 0.06686038\n", + " 0.03701177 0.00701584 0.19112005 0.15821703 0.12438266 0.08981934\n", + " 0.05473042 0.0193211 0.20330747 0.20540191 0.20709749 0.2083924\n", + " 0.20928375 0.20976841 0.00681796 0.00690216 0.00697398 0.00703299\n", + " 0.00707868 0.00711058 0.19806614 0.16396327 0.12891793 0.09312436\n", + " 0.05678335 0.02010461 0.2024732 0.2024732 0.00711848 0.00711848\n", + " 0.19190537 0.19387759 0.19547539 0.1966967 0.19753824 0.19799645\n", + " 0.15886347 0.1604891 0.1618095 0.16282181 0.16352163 0.16390447\n", + " 0.12488974 0.12616714 0.12720791 0.12800859 0.1285643 0.12887024\n", + " 0.09018615 0.09111203 0.09186896 0.09245358 0.0928614 0.09308815\n", + " 0.05495583 0.05552612 0.05599434 0.05635799 0.05661388 0.05675899\n", + " 0.01940412 0.01961547 0.01979108 0.01992994 0.02003078 0.02009239]\n", + " [0.95731108 0.96213474 0.96637261 0.96996192 0.9728508 0.97499833\n", + " 0.97637449 0.97696023 0.95731108 0.96222557 0.96655954 0.97024886\n", + " 0.97324032 0.97549161 0.97697135 0.97765911 0.97696023 0.98253083\n", + " 0.98742708 0.99158512 0.9949513 0.99748218 0.99914484 0.99991744\n", + " 0.97765911 0.9831486 0.98795534 0.99201677 0.99528049 0.99770436\n", + " 0.99925681 0.99991744 0.95949977 0.96502691 0.96961048 0.97315046\n", + " 0.9755715 0.9768229 0.95953833 0.96518051 0.96988569 0.97355136\n", + " 0.97609964 0.97747731 0.97946677 0.98584919 0.99115411 0.99527858\n", + " 0.99814262 0.99969022 0.98013106 0.98640824 0.99159661 0.99559552\n", + " 0.99832741 0.99973878 0.95734621 0.95734621 0.9999156 0.9999156\n", + " 0.96172609 0.96745399 0.9722283 0.9759465 0.97853069 0.9799276\n", + " 0.96733875 0.97328094 0.97822819 0.98207805 0.98475245 0.98619775\n", + " 0.97199095 0.97810522 0.98319175 0.98714806 0.9898957 0.99138039\n", + " 0.97558266 0.98182688 0.98701899 0.99105637 0.99386 0.99537491\n", + " 0.97803851 0.98437036 0.98963392 0.99372641 0.99656823 0.99810379\n", + " 0.97930774 0.98568454 0.99098486 0.99510577 0.99796733 0.99951359]]\n", + "DEBUG:root:make_az_asym: xyp: [[32.275486 31.41357429]\n", + " [32.27502267 27.02714574]\n", + " [32.27455935 22.64071719]\n", + " [32.27409601 18.25428864]\n", + " [32.27363269 13.8678601 ]\n", + " [32.27316936 9.48143155]\n", + " [32.27270604 5.095003 ]\n", + " [32.27224271 0.70857446]\n", + " [32.275486 31.41357429]\n", + " [27.88905745 31.41403761]\n", + " [23.5026289 31.41450094]\n", + " [19.11620036 31.41496427]\n", + " [14.72977181 31.41542759]\n", + " [10.34334326 31.41589092]\n", + " [ 5.95691471 31.41635424]\n", + " [ 1.57048617 31.41681757]\n", + " [32.27224271 0.70857446]\n", + " [27.88581DEBUG:root:radec2pix: camVec Shape: (3, 96)\n", + "416 0.70903778]\n", + " [23.49938562 0.70950111]\n", + " [19.11295707 0.70996444]\n", + " [14.72652852 0.71042776]\n", + " [10.34009998 0.71089109]\n", + " [ 5.95367142 0.71135442]\n", + " [ 1.56724288 0.71181774]\n", + " [ 1.57048617 31.41681757]\n", + " [ 1.57002284 27.03038902]\n", + " [ 1.56955951 22.64396047]\n", + " [ 1.56909619 18.25753194]\n", + " [ 1.56863286 13.87110338]\n", + " [ 1.56816953 9.48467484]\n", + " [ 1.56770621 5.09824629]\n", + " [ 1.56724288 0.71181774]\n", + " [32.26028399 29.50107588]\n", + " [32.25971613 24.12507591]\n", + " [32.25914828 18.74907594]\n", + " [32.25858043 13.37307597]\n", + " [32.25801258 7.997076 ]\n", + " [32.25744472 2.62107603]\n", + " [30.36298443 31.3987763 ]\n", + " [24.98698446 31.39934415]\n", + " [19.61098448 31.399912 ]\n", + " [14.23498451 31.40047985]\n", + " [ 8.85898454 31.40104771]\n", + " [ 3.48298457 31.40161556]\n", + " [30.35974431 0.72377647]\n", + " [24.98374433 0.72434432]\n", + " [19.60774436 0.72491217]\n", + " [14.23174439 0.72548003]\n", + " [ 8.85574442 0.72604788]\n", + " [ 3.47974445 0.72661573]\n", + " [ 1.58528416 29.504316 ]\n", + " [ 1.5847163 24.12831603]\n", + " [ 1.58414845 18.7523DEBUG:root:radec2pix: camVec Shape: (3, 96)\n", + "609 30.84620775 29.74698879\n", + " 38.82304306 34.77660814 31.13517347 28.05687673 25.74452154 24.41669917\n", + " 35.72566697 31.28109784 27.17523938 23.58565115 20.78160237 19.11203303\n", + " 33.21476541 28.37964838 23.77795187 19.57499171 16.08640287 13.86243725\n", + " 31.43120667 26.26984115 21.21535074 16.36705265 11.9779994 8.76739863\n", + " 30.50284606 25.15168819 19.81398425 14.50459502 9.27228848 4.40115246]\n", + "1606]\n", + " [ 1.5835806 13.37631609]\n", + " [ 1.58301275 8.00031612]\n", + " [ 1.5824449 2.62431615]\n", + " [32.26048441 31.39857587]\n", + " [32.26048441 31.39857587]\n", + " [ 1.58224447 0.72681616]\n", + " [ 1.58224447 0.72681616]\n", + " [30.36278399 29.50127631]\n", + " [24.98678403 29.50184416]\n", + " [19.61078405 29.50241201]\n", + " [14.23478409 29.50297987]\n", + " [ 8.85878411 29.50354772]\n", + " [ 3.48278414 29.50411557]\n", + " [30.36221615 24.12527634]\n", + " [24.98621618 24.12584419]\n", + " [19.6102162 24.12641204]\n", + " [14.23421623 24.1269799 ]\n", + " [ 8.85821626 24.12754775]\n", + " [ 3.48221629 24.1281156 ]\n", + " [30.36164829 18.74927637]\n", + " [24.98564832 18.74984422]\n", + " [19.60964835 18.75041208]\n", + " [14.23364838 18.75097993]\n", + " [ 8.85764841 18.75154778]\n", + " [ 3.48164844 18.75211563]\n", + " [30.36108043 13.3732764 ]\n", + " [24.98508046 13.37384425]\n", + " [19.60908049 13.3744121 ]\n", + " [14.23308053 13.37497996]\n", + " [ 8.85708056 13.37554781]\n", + " [ 3.48108059 13.37611567]\n", + " [30.36051258 7.99727643]\n", + " [24.98451261 7.99784428]\n", + " [19.60851265 7.99841214]\n", + " [14.23251268 7.99897999]\n", + " [ 8.85651271 7.99954784]\n", + " [ 3.48051273 8.00011569]\n", + " [30.35994473 2.62127646]\n", + " [24.98394476 2.62184431]\n", + " [19.60794479 2.62241216]\n", + " [14.23194482 2.62298002]\n", + " [ 8.85594485 2.62354787]\n", + " [ 3.47994488 2.62411572]]\n", + "DEBUG:root:radec2pix: fitpx: [[4271.50000018 4155.50000017]\n", + " [4271.49999973 3863.07142834]\n", + " [4271.50000015 3570.64285725]\n", + " [4271.50000001 3278.21428572]\n", + " [4271.5000001 2985.78571433]\n", + " [4271.49999989 2693.35714282]\n", + " [4271.50000013 2400.92857145]\n", + " [4271.49999973 2108.49999999]\n", + " [4271.50000018 4155.50000017]\n", + " [3979.07142857 4155.5 ]\n", + " [3686.64285706 4155.49999989]\n", + " [3394.21428581 4155.500e+03 1.56060000e+03]\n", + " [ 1.51660000e+03 1.56060000e+03]\n", + " [ 1.87500000e+03 1.56060000e+03]\n", + " [ 8.30000000e+01 1.91900000e+03]\n", + " [ 4.41400000e+02 1.91900000e+03]\n", + " [ 7.99800000e+02 1.91900000e+03]\n", + " [ 1.15820000e+03 1.91900000e+03]\n", + " [ 1.51660000e+03 1.91900000e+03]\n", + " [ 1.87500000e+03 1.91900000e+03]]\n", + "000016]\n", + " [3101.78571433 4155.50000009]\n", + " [2809.35714288 4155.50000006]\n", + " [2516.92857141 4155.49999991]\n", + " [2224.49999999 4155.49999972]\n", + " [4271.49999973 2108.49999999]\n", + " [3979.07142852 2108.5 ]\n", + " [3686.6428568 2108.49999999]\n", + " [3394.2142859 2108.50000001]\n", + " [3101.78571455 2108.50000001]\n", + " [2809.35714254 2108.49999998]\n", + " [2516.92857145 2108.5 ]\n", + " [2224.49999991 2108.49999996]\n", + " [2224.49999999 4155.49999972]\n", + " [2224.50000001 3863.07142866]\n", + " [2224.50000002 3570.64285748]\n", + " [2224.49999999 3278.21428555]\n", + " [2224.49999997 2985.78571404]\n", + " [2224.49999997 2693.35714267]\n", + " [2224.49999997 2400.92857132]\n", + " [2224.49999991 2108.49999996]\n", + " [4270.50000007 4028.00000007]\n", + " [4270.49999974 3669.5999998 ]\n", + " [4270DEBUG:root:make_az_asym: xyp: shape: (96, 2)\n", + "DEBUG:root:optics_fp: rtanth: [31.5581844 27.17194416 22.78577643 18.39973306 14.01393083 9.62869923\n", + " 5.24546963 0.89418442 31.5581844 31.89890725 32.82747441 34.29617149\n", + " 36.23938733 38.58549624 41.26583765 44.21967554 0.89418442 4.73506565\n", + " 9.08425224 13.45763509 17.83742574 22.21983534 26.60356968 30.98806655\n", + " 44.21967554 41.20406839 38.45324836 36.02791805 33.99780815 32.43720936\n", + " 31.41616867 30.98806655 29.64590075 24.27020709 18.89468775 13.51955065\n", + " 8.14555257 2.77930847 31.61752824 32.43532389 34.09156981 36.4722193\n", + " 39.44633291 42.89063222 2.34966506 7.60940668 12.96487432 18.33236521\n", + " 23.70371309 29.07678054 42.86493558 39.33911823 36.27027014 33.78315439\n", + " 32.01364237 31.08452713 31.54331756 31.54331756 30.97348847 30.97348847\n", + " 29.72484887 30.59328006 32.34398987 34.84424384 37.94616883 41.5151163\n", + " 24.36657877 25.41873926 27.5008582 30.40205338 33.9127594 37.86381389\n", + " 19.01831838 20.34892081 22.89680053 26.31066557 30.29920003 34.66460262\n", + " 13.69180262 15.48701401 18.70915549 22.76005595 27.27289033 32.05313869\n", + " 8.42835902 11.10942753 15.28411843 20.03975859 25.04760117 30.18237029\n", + " 3.52303344 8.04946636 13.22795543 18.51935347 23.84862372 29.19503391]\n", + ".50000026 3311.20000015]\n", + " [4270.50000028 2952.80000012]\n", + " [4270.50000021 2594.40000005]\n", + " [4270.50000028 2236.00000002]\n", + " [4144.00000002 4154.50000002]\n", + " [3785.60000004 4154.50000005]\n", + " [3427.20000017 4154.50000027]\n", + " [3068.80000004 4154.50000009]\n", + " [2710.40000006 4154.50000023]\n", + " [2352. 4154.49999998]\n", + " [4144.00000024 2109.50000001]\n", + " [3785.60000024 2109.50000001]\n", + " [3427.20000038 2109.50000002]\n", + " [3068.80000022 2109.50000001]\n", + " [2710.3999999 2109.49999999]\n", + " [2352.00000033 2109.50000007]\n", + " [2225.50000001 4028.00000014]\n", + " [2225.5 3669.59999993]\n", + " [2225.49999997 3311.19999965]\n", + " [2225.50000003 2952.80000023]\n", + " [2225.50000001 2594.40000005]\n", + " [2225.50000007 2236.00000012]\n", + " [4270.50000014 4154.50000013]\n", + " [4270.50000014 4154.50000013]\n", + " [2225.5 2109.5 ]\n", + " [2225.5 2109.5 ]\n", + " [4143.99999977 4027.99999977]\n", + " [3785.60000006 4028.00000007]\n", + " [3427.19999985 4027.99999978]\n", + " [3068.80000002 4028.00000004]\n", + " [2710.40000003 4028.0000001 ]\n", + " [2351.99999998 4027.99999983]\n", + " [4143.99999989 3669.59999991]\n", + " [3785.59999992 3669.59999992]\n", + " [3427.20000008 3669.60000009]\n", + " [3068.80000009 3669.60000016]\n", + " [2710.40000007 3669.6000002 ]\n", + " [2352. 3669.60000003]\n", + " [4144.00000025 3311.20000016]\n", + " [3785.59999995 3311.19999996]\n", + " [3427.19999995 3311.19999995]\n", + " [3068.80000029 3311.20000039]\n", + " [2710.39999993 3311.19999986]\n", + " [2352.00000003 3311.20000016]\n", + " [4144.0000002 2952.80000009]\n", + " [3785.6000002 2952.80000011]\n", + " [3427.19999983 2952.79999988]\n", + " [3068.80000029 2952.80000027]\n", + " [2710.40000007 2952.8000001 ]\n", + " [2352.00000006 2952.80000022]\n", + " [4143.99999974 2594.39999993]\n", + " [3785.60000003 2594.40000001]\n", + " [3427.19999994 2594.39999997]\n", + " [3068.7999999 2594.39999994]\n", + " [2710.40000001 2594.40000001]\n", + " [2351.9999999 2594.39999976]\n", + " [4144.00000015 2236.00000001]\n", + " [3785.59999982 2235.99999998]\n", + " [3427.19999971 2235.99999996]\n", + " [3068.80000012 2236.00000002]\n", + " [2710.39999989 2235.99999997]\n", + " [2351.99999988 2235.99999991]]\n", + "DEBUG:root:optics_fp: cphi: [0.71674184 0.76675024 0.81864942 0.87035228 0.91865771 0.95932569\n", + " 0.98767201 0.99974255 0.71674184 0.66409483 0.59932455 0.52022133\n", + " 0.42506968 0.31345852 0.18722881 0.05105417 0.99974255 0.99965353\n", + " 0.99950987 0.99925593 0.99874223 0.99744464 0.99234175 0.9056856\n", + " 0.05105417 0.05923154 0.07055215 0.08725098 0.11432168 0.16558509\n", + " 0.29698694 0.9056856 0.73806414 0.80084934 0.86451924 0.92365062\n", + " 0.9704975 0.99665945 0.6953044 0.6229226 0.53010496 0.41345588\n", + " 0.27232584 0.11128947 0.99969644 0.99954923 0.99926436 0.99859785\n", + " 0.99637691 0.97728259 0.0548278 0.06688083 0.08577093 0.11956053\n", + " 0.19678357 0.51804091 0.7167462 0.7167462 0.90395966 0.90395966\n", + " 0.7173329 0.64650885 0.55392153 0.43509499 0.28838199 0.1183142\n", + " 0.78296688 0.7194824 0.6309635 0.50857972 0.34543889 0.14404729\n", + " 0.85078398 0.79980651 0.72282072 0.60489433 0.42782202 0.18390653\n", + " 0.9150296 0.88149415 0.82599605 0.72871014 0.55254711 0.25338228\n", + " 0.96687862 0.95220074 0.92565817 0.87139471 0.74187378 0.40036553\n", + " 0.99622933 0.99443943 0.99100871 0.9831251 0.95810564 0.79702588]\n", + "DEBUG:root:optics_fp: xyfp: [[ 0.16415906 -31.72847131]\n", + " [ 0.16601788 -27.34204313]\n", + " [ 0.1678767 -22.95561497]\n", + " [ 0.16973552 -18.56918678]\n", + " [ 0.17159434 -14.1827586 ]\n", + " [ 0.17345315 -9.79633043]\n", + " [ 0.17531197 -5.40990225]\n", + " [ 0.17717079 -1.02347407]\n", + " [ 0.16415906 -31.72847131]\n", + " [ 4.55058724 -31.73033014]\n", + " [ 8.93701541 -31.73218895]\n", + " [ 13.32344359 -31.73404778]\n", + " [ 17.70987177 -31.73590659]\n", + " [ 22.09629995 -31.73776541]\n", + " [ 26.48272812 -31.73962422]\n", + " [ 30.8691563 -31.74148305]\n", + " [ 0.17717079 -1.02347407]\n", + " [ 4.56359897 -1.02533289]\n", + " [ 8.95002714 -1.02719171]\n", + " [ 13.33645532 -1.02905053]\n", + " [ 17.7228835 -1.03090935]\n", + " [ 22.10931168 -1.03276817]\n", + " [ 26.49573986 -1.03462699]\n", + " [ 30.88216803 -1.0364858 ]\n", + " [ 30.8691563 -31.74148305]\n", + " [ 30.87101512 -27.35505487]\n", + " [ 30.87287394 -22.96862669]\n", + " [ 30.87473276 -18.58219851]\n", + " [ 30.87659158 -14.19577034]\n", + " [ 30.8784504 -9.80934216]\n", + " [ 30.88030922 -5.42291398]\n", + " [ 30.88216803 -1.0364858 ]\n", + " [ 0.17996951 -29.81597784]\n", + " [ 0.18224768 -24.43997833]\n", + " [ 0.18452584 -19.06397881]\n", + " [ 0.18680401 -13.6879793 ]\n", + " [ 0.18908217 -8.31197977]\n", + " [ 0.19136034 -2.93598025]\n", + " [ 2.07666524 -31.71428177]\n", + " [ 7.45266476 -31.71655993]\n", + " [ 12.82866428 -31.7188381 ]\n", + " [ 18.2046638 -31.72111627]\n", + " [ 23.58066331 -31.72339443]\n", + " [ 28.95666283 -31.7256726 ]\n", + " [ 2.08966426 -1.03928452]\n", + " [ 7.46566378 -1.04156269]\n", + " [ 12.8416633 -1.04384085]\n", + " [ 18.21766282 -1.04611902]\n", + " [ 23.59366233 -1.04839718]\n", + " [ 28.96966185 -1.05067535]\n", + " [ 30.85496675 -29.82897686]\n", + " [ 30.85724492 -24.45297735]\n", + " [ 30.85952308 -19.07697783]\n", + " [ 30.86180126 -13.70097831]\n", + " [ 30.86407941 -8.32497879]\n", + " [ 30.86635759 -2.94897928]\n", + " [ 0.17916541 -31.71347767]\n", + " [ 0.17916541 -31.71347767]\n", + " [ 30.86716168 -1.05147945]\n", + " [ 30.86716168 -1.05147945]\n", + " [ 2.07746934 -29.81678193]\n", + " [ 7.45346886 -29.8190601 ]\n", + " [ 12.82946837 -29.82133827]\n", + " [ 18.20546789 -29.82361643]\n", + " [ 23.58146741 -29.82589461]\n", + " [ 28.95746693 -29.82817277]\n", + " [ 2.07974751 -24.44078242]\n", + " [ 7.45574702 -24.44306058]\n", + " [ 12.83174654 -24.44533875]\n", + " [ 18.20774606 -24.44761692]\n", + " [ 23.58374558 -24.44989508]\n", + " [ 28.95974509 -24.45217325]\n", + " [ 2.08202567 -19.0647829 ]\n", + " [ 7.45802519 -19.06706107]\n", + " [ 12.83402471 -19.06933924]\n", + " [ 18.21002422 -19.0716174 ]\n", + " [ 23.58602374 -19.07389557]\n", + " [ 28.96202325 -19.07617373]\n", + " [ 2.08430384 -13.68878339]\n", + " [ 7.46030335 -13.69106155]\n", + " [ 12.83630287 -13.69333972]\n", + " [ 18.21230239 -13.69561789]\n", + " [ 23.58830191 -13.69789605]\n", + " [ 28.96430143 -13.70017422]\n", + " [ 2.086582 -8.31278387]\n", + " [ 7.46258152 -8.31506203]\n", + " [ 12.83858103 -8.3173402 ]\n", + " [ 18.21458055 -8.31961837]\n", + " [ 23.59058007 -8.32189653]\n", + " [ 28.96657959 -8.3241747 ]\n", + " [ 2.08886017 -2.93678435]\n", + " [ 7.46485969 -2.93906252]\n", + " [ 12.8408592 -2.94134068]\n", + " [ 18.21685872 -2.94361885]\n", + " [ 23.59285824 -2.94589701]\n", + " [ 28.96885776 -2.94817518]]\n", + "-24.14957093]\n", + " [-32.29232495 -18.77357144]\n", + " [-32.2899932 -13.39757194]\n", + " [-32.28766146 -8.02157244]\n", + " [-32.28532972 -2.64557295]\n", + " [-30.40031161 -31.42389325]\n", + " [-25.02431212 -31.42622499]\n", + " [-19.64831262 -31.42855673]\n", + " [-14.27231313 -31.43088848]\n", + " [ -8.89631363 -31.43322022]\n", + " [ -3.52031414 -31.43555196]\n", + " [-30.38700689 -0.74889614]\n", + " [-25.01100739 -0.75122788]\n", + " [-19.6350079 -0.75355962]\n", + " [-14.25900841 -0.75589136]\n", + " [ -8.88300892 -0.7582231 ]\n", + " [ -3.50700942 -0.76055484]\n", + " [ -1.62199131 -29.53887515]\n", + " [ -1.61965957 -24.16287565]\n", + " [ -1.61732783 -18.78687616]\n", + " [ -1.61499609 -13.41087666]\n", + " [ -1.61266434 -8.03487716]\n", + " [ -1.6103326 -2.65887768]\n", + " [-32.29781143 -31.42307024]\n", + " [-32.29781143 -31.42307024]\n", + " [ -1.60950959 -0.76137785]\n", + " [ -1.60950959 -0.76137785]\n", + " [-30.3994886 -29.52639343]\n", + " [-25.02348911 -29.52872517]\n", + " [-19.64748962 -29.53105692]\n", + " [-14.27149012 -29.53338866]\n", + " [ -8.89549063 -29.5357204 ]\n", + " [ -3.51949113 -29.53805214]\n", + " [-30.39715686 -24.15039394]\n", + " [-25.02115737 -24.15272568]\n", + " [-19.64515788 -24.15505742]\n", + " [-14.26915838 -24.15738916]\n", + " [ -8.89315889 -24.1597209 ]\n", + " [ -3.51715939 -24.16205264]\n", + " [-30.39482512 -18.77439444]\n", + " [-25.01882563 -18.77672618]\n", + " [-19.64282613 -18.77905793]\n", + " [-14.26682664 -18.78138967]\n", + " [ -8.89082714 -18.78372141]\n", + " [ -3.51482765 -18.78605315]\n", + " [-30.39249338 -13.39839495]\n", + " [-25.01649389 -13.40072669]\n", + " [-19.64049439 -13.40305843]\n", + " [-14.2644949 -13.40539017]\n", + " [ -8.8884954 -13.40772191]\n", + " [ -3.51249591 -13.41005365]\n", + " [-30.39016163 -8.02239545]\n", + " [-25.01416214 -8.02472719]\n", + " [-19.63816265 -8.02705893]\n", + " [-14.26216315 -8.02939068]\n", + " [ -8.88616366 -8.03172242]\n", + " [ -3.51016417 -8.03405416]\n", + " [-30.3878299 -2.64639596]\n", + " [-25.01183041 -2.6487277 ]\n", + " [-19.63583091 -2.65105944]\n", + " [-14.25983141 -2.65339118]\n", + " [ -8.88383191 -2.65572292]\n", + " [ -3.50783243 -2.65805467]]\n", + "DEBUG:root:make_az_asym: xyp: [[ 0.236018 -31.56946754]\n", + " [ 0.23651287 -27.18303899]\n", + " [ 0.23700774 -22.79661046]\n", + " [ 0.23750261 -18.41018192]\n", + " [ 0.23799748 -14.02375336]\n", + " [ 0.23849235 -9.63732482]\n", + " [ 0.23898721 -5.25089628]\n", + " [ 0.23948208 -0.86446773]\n", + " [ 0.236018 -31.56946754]\n", + " [ 4.62244655 -31.56996241]\n", + " [ 9.00887509 -31.57045728]\n", + " [ 13.39530363 -31.57095214]\n", + " [ 17.78173218 -31.57144701]\n", + " [ 22.16816072 -31.57194188]\n", + " [ 26.55458927 -31.57243675]\n", + " [ 30.94101781 -31.57293162]\n", + " [ 0.23948208 -0.86446773]\n", + " [ 4.62591062 -0.8649626 ]\n", + " [ 9.01233917 -0.86545747]\n", + " [ 13.39876771 -0.86595234]\n", + " [ 17.78519626 -0.86644721]\n", + " [ 22.1716248 -0.86694208]\n", + " [ 26.55805334 -0.86743695]\n", + " [ 30.94448189 -0.86793181]\n", + " [ 30.94101781 -31.57293162]\n", + " [ 30.94151268 -27.18650307]\n", + " [ 30.94200754 -22.80007453]\n", + " [ 30.94250242 -18.41364599]\n", + " [ 30.94299728 -14.02721745]\n", + " [ 30.94349215 -9.6407889 ]\n", + " [ 30.94398702 -5.25436036]\n", + " [ 30.94448189 -0.86793181]\n", + " [ 0.25123377 -29.65696924]\n", + " [ 0.25184028 -24.28096928]\n", + " [ 0.25244679 -18.90496931]\n", + " [ 0.2530533 -13.52896935]\n", + " [ 0.25365981 -8.15296938]\n", + " [ 0.25426632 -2.77696942]\n", + " [ 2.14851968 -31.5546833 ]\n", + " [ 7.52451965 -31.55528981]\n", + " [ 12.90051962 -31.55589633]\n", + " [ 18.27651958 -31.55650284]\n", + " [ 23.65251954 -31.55710934]\n", + " [ 29.02851952 -31.55771586]\n", + " [ 2.15198038 -0.8796835 ]\n", + " [ 7.52798035 -0.88029001]\n", + " [ 12.90398031 -0.88089652]\n", + " [ 18.27998027 -0.88150303]\n", + " [ 23.65598025 -0.88210954]\n", + " [ 29.03198021 -0.88271605]\n", + " [ 30.92623357 -29.66042994]\n", + " [ 30.92684009 -24.28442998]\n", + " [ 30.9274466 -18.90843001]\n", + " [ 30.9280531 -13.53243004]\n", + " [ 30.92865961 -8.15643008]\n", + " [ 30.92926612 -2.78043011]\n", + " [ 0.2510197 -31.55446923]\n", + " [ 0.2510197 -31.55446923]\n", + " [ 30.9294802 -0.88293012]\n", + " [ 30.9294802 -0.88293012]\n", + " [ 2.14873376 -29.65718332]\n", + " [ 7.52473372 -29.65778983]\n", + " [ 12.90073369 -29.65839633]\n", + " [ 18.27673365 -29.65900285]\n", + " [ 23.65273362 -29.65960936]\n", + " [ 29.02873359 -29.66021587]\n", + " [ 2.14934027 -24.28118335]\n", + " [ 7.52534023 -24.28178986]\n", + " [ 12.9013402 -24.28239637]\n", + " [ 18.27734016 -24.28300288]\n", + " [ 23.65334013 -24.28360939]\n", + " [ 29.02934009 -24.2842159DEBUG:root:optics_fp: sphi: [0.69733861 0.64194554 0.57429359 0.49242959 0.39505443 0.28230164\n", + " 0.15653753 0.02269007 0.69733861 0.74764835 0.80050614 0.85403148\n", + " 0.90516063 0.94960189 0.98231633 0.99869589 0.02269007 0.02632152\n", + " 0.03130538 0.03856929 0.05013934 0.07144362 0.12352264 0.42394999\n", + " 0.99869589 0.99824427 0.99750809 0.99618636 0.99344379 0.98619551\n", + " 0.95488154 0.42394999 0.67473055 0.59886588 0.50259973 0.38323562\n", + " 0.24111118 0.08166976 0.71871537 0.78228347 0.84793203 0.91052415\n", + " 0.96220509 0.99378803 0.02463779 0.03002235 0.03835014 0.05293717\n", + " 0.08504731 0.21194041 0.99849582 0.99776097 0.99631488 0.99282691\n", + " 0.98044695 0.85535584 0.69733413 0.69733413 0.42761774 0.42761774\n", + " 0.69673058 0.76290649 0.83256888 0.90038456 0.95751545 0.99297621\n", + " 0.62206339 0.69451068 0.77581252 0.86101491 0.93844125 0.9895708\n", + " 0.52551558 0.6002579 0.6910356 0.79630575 0.903863 0.98294374\n", + " 0.40338671 0.47219495 0.5636759 0.68482227 0.83348167 0.96736623\n", + " 0.25523664 0.305473 0.37836089 0.49058257 0.67053956 0.91635552\n", + " 0.08675898 0.10531014 0.13379739 0.18293452 0.28641505 0.60394515]\n", + " ]\n", + " [ 2.14994678 -18.90518338]\n", + " [ 7.52594674 -18.90578989]\n", + " [ 12.90194671 -18.9063964 ]\n", + " [ 18.27794667 -18.90700292]\n", + " [ 23.65394664 -18.90760943]\n", + " [ 29.0299466 -18.90821593]\n", + " [ 2.15055329 -13.52918342]\n", + " [ 7.52655325 -13.52978993]\n", + " [ 12.90255322 -13.53039644]\n", + " [ 18.27855318 -13.53100295]\n", + " [ 23.65455315 -13.53160946]\n", + " [ 29.03055312 -13.53221597]\n", + " [ 2.1511598 -8.15318346]\n", + " [ 7.52715976 -8.15378996]\n", + " [ 12.90315973 -8.15439647]\n", + " [ 18.27915969 -8.15500298]\n", + " [ 23.65515966 -8.15560949]\n", + " [ 29.03115962 -8.156216 ]\n", + " [ 2.1517663 -2.77718348]\n", + " [ 7.52776627 -2.77779 ]\n", + " [ 12.90376624 -2.77839651]\n", + " [ 18.2797662 -2.77900302]\n", + " [ 23.65576617 -2.77960953]\n", + " [ 29.03176613 -2.78021604]]\n", + "DEBUG:root:optics_fp: xyfp shape: (96, 2)\n", + "DEBUG:root:radec2pix: ccdpx: [[-4.44999997e+01 -4.99999751e-01]\n", + " [-4.45000003e+01 2.91928571e+02]\n", + " [-4.45000000e+01 5.84357143e+02]\n", + " [-4.44999999e+01 8.767DEBUG:root:optics_fp: cphi: [-0.00832855 -0.00971656 -0.01163892 -0.01447769 -0.01909311 -0.02791171\n", + " -0.05146104 -0.30320505 -0.00832855 -0.1457499 -0.27524782 -0.39135911\n", + " -0.49141415 -0.57521551 -0.64415037 -0.70031796 -0.30320505 -0.98362937\n", + " -0.99556659 -0.99797672 -0.99884564 -0.99925418 -0.99947834 -0.99961448\n", + " -0.70031796 -0.75160095 -0.80539882 -0.85964958 -0.91101663 -0.95488339\n", + " -0.98595524 -0.99961448 -0.00938916 -0.01152859 -0.01488525 -0.02091069\n", + " -0.03488457 -0.10276119 -0.06880165 -0.23281216 -0.37919455 -0.50184326\n", + " -0.60029249 -0.67742851 -0.92933123 -0.99345681 -0.99774332 -0.99886819\n", + " -0.99932092 -0.99954725 -0.72211351 -0.78687071 -0.8534883 -0.91636505\n", + " -0.96706125 -0.99601335 -0.00880814 -0.00880814 -0.99960055 -0.99960055\n", + " -0.0731997 -0.24684669 -0.39969867 -0.52530483 -0.62403795 -0.69988601\n", + " -0.08935604 -0.29715482 -0.47014172 -0.60210737 -0.6983006 -0.76741609\n", + " -0.11456071 -0.37126057 -0.56474055 -0.69579203 -0.78162959 -0.83828312\n", + " -0.15923419 -0.4879057DEBUG:root:fitpix2pix: ccdpx: shape: (96, 2)\n", + "85714e+02]\n", + " [-4.44999999e+01 1.16921429e+03]\n", + " [-4.44999999e+01 1.46164286e+03]\n", + " [-4.45000001e+01 1.75407143e+03]\n", + " [-4.45000000e+01 2.04650000e+03]\n", + " [-4.44999997e+01 -4.99999751e-01]\n", + " [ 2.47928571e+02 -5.00000271e-01]\n", + " [ 5.40357143e+02 -4.99999959e-01]\n", + " [ 8.32785714e+02 -5.00000035e-01]\n", + " [ 1.12521429e+03 -5.00000130e-01]\n", + " [ 1.41764286e+03 -5.00000295e-01]\n", + " [ 1.71007143e+03 -5.00000131e-01]\n", + " [ 2.00250000e+03 -5.00000000e-01]\n", + " [-4.45000000e+01 2.04650000e+03]\n", + " [ 2.47928571e+02 2.04650000e+03]\n", + " [ 5.40357143e+02 2.04650000e+03]\n", + " [ 8.32785714e+02 2.04650000e+03]\n", + " [ 1.12521429e+03 2.04650000e+03]\n", + " [ 1.41764286e+03 2.04650000e+03]\n", + " [ 1.71007143e+03 2.04650000e+03]\n", + " [ 2.00250000e+03 2.04650000e+03]\n", + " [ 2.00250000e+03 -5.00000000e-01]\n", + " [ 2.00250000e+03 2.91928571e+02]\n", + " [ 2.00250000e+03 5.84357143e+02]\n", + " [ 2.00250000e+03 8.76785714e+02]\n", + " [ 2.00250000e+03 1.16921429e+03]\n", + " [ 2.00250000e+03 1.46164286e+03]\n", + " [ 2.00250000e+03 1.75407143e+03]\n", + " [ 2.00250000e+03 2.04650000e+03]\n", + " [-4.35000003e+01 1.27000000e+02]\n", + " [-4.35000001e+01 4.85400000e+02]\n", + " [-4.35000003e+01 8.43800000e+02]\n", + " [-4.34999997e+01 1.20220000e+03]\n", + " [-4.34999997e+01 1.56060000e+03]\n", + " [-4.35000002e+01 1.91900000e+03]\n", + " [ 8.29999999e+01 4.99999945e-01]\n", + " [ 4.41400000e+02 4.99999943e-01]\n", + " [ 7.99800000e+02 5.00000147e-01]\n", + " [ 1.15820000e+03 4.99999799e-01]\n", + " [ 1.51660000e+03 5.00000078e-01]\n", + " [ 1.87500000e+03 4.99999710e-01]\n", + " [ 8.30000000e+01 2.04550000e+03]\n", + " [ 4.41400000e+02 2.04550000e+03]\n", + " [ 7.99800000e+02 2.04550000e+03]\n", + " [ 1.15820000e+03 2.04550000e+03]\n", + " [ 1.51660000e+03 2.04550000e+03]\n", + " [ 1.87500000e+03 2.04550000e+03]\n", + " [ 2.00150000e+03 1.27000000e+02]\n", + " [ 2.00150000e+03 4.85400000e+02]\n", + " [ 2.00150000e+03 8.43800000e+02]\n", + " [ 2.00150000e+03 1.20220000e+03]\n", + " [ 2.00150000e+03 1.56060000e+03]\n", + " [ 2.00150000e+03 1.91900000e+03]\n", + " [-4.34999998e+01 5.00000241e-01]\n", + " [-4.34999998e+01 5.00000241e-01]\n", + " [ 2.00150000e+03 2.04550000e+03]\n", + " [ 2.00150000e+03 2.04550000e+03]\n", + " [ 8.30000001e+01 1.27000000e+02]\n", + " [ 4.41400000e+02 1.27000000e+02]\n", + " [ 7.99800000e+02 1.27000000e+02]\n", + " [ 1.15820000e+03 1.27000000e+02]\n", + " [ 1.51660000e+03 1.27000000e+02]\n", + " [ 1.87500000e+03 1.27000000e+02]\n", + " [ 8.30000000e+01 4.85400000e+02]\n", + " [ 4.41400000e+02 4.85400000e+02]\n", + " [ 7.99800000e+02 4.85400000e+02]\n", + " [ 1.15820000e+03 4.85400000e+02]\n", + " [ 1.51660000e+03 4.85400000e+02]\n", + " [ 1.87500000e+03 4.85400000e+02]\n", + " [ 8.30000001e+01 8.43800000e+02]\n", + " [ 4.41400000e+02 8.43800000e+02]\n", + " [ 7.99800000e+02 8.43800000e+02]\n", + " [ 1.15820000e+03 8.43800000e+02]\n", + " [ 1.51660000e+03 8.43800000e+02]\n", + " [ 1.87500000e+03 8.43800000e+02]\n", + " [ 8.30000001e+01 1.20220000e+03]\n", + " [ 4.41400000e+02 1.20220000e+03]\n", + " [ 7.99800000e+02 1.20220000e+03]\n", + " [ 1.15820000e+03 1.20220000e+03]\n", + " [ 1.51660000e+03 1.20220000e+03]\n", + " [ 1.87500000e+03 1.20220000e+03]\n", + " [ 8.30000002e+01 1.56060000e+03]\n", + " [ 4.41400000e+02 1.56060000e+03]\n", + " [ 7.99800000e+02 1.56060000e+03]\n", + " [ 1.15820000e+03 1.56060000e+03]\n", + " [ 1.51660000e+03 1.56060000e+03]\n", + " [ 1.87500000e+03 1.56060000e+03]\n", + " [ 8.29999999e+01 1.91900000e+03]\n", + " [ 4.41400000e+02 1.91900000e+03]\n", + " [ 7.99800000e+02 1.91900000e+03]\n", + " [ 1.15820000e+03 1.91900000e+03]\n", + " [ 1.51660000e+03 1.91900000e+03]\n", + " [ 1.87500000e+03 1.91900000e+03]]\n", + "DEBUG:root:fitpix2pix: visCut: True\n", + "DEBUG:root:radec2pix: fitpx: [[ 2.13550000e+03 -4.99999951e-01]\n", + " [ 2.13550000e+03 2.91928572e+02]\n", + " [ 2.13550000e+03 5.84357142e+02]\n", + " [ 2.13550000e+03 8.76785714e+02]\n", + " [ 2.13550000e+03 1.16921429e+03]\n", + " [ 2.13550000e+03 1.46164286e+03]\n", + " [ 2.13550000e+03 1.75407143e+03]\n", + " [ 2.13550000e+03 2.04650000e+03]\n", + " [ 2.13550000e+03 -4.99999951e-01]\n", + " [ 2.42792857e+03 -5.00000176e-01]\n", + " [ 2.72035714e+03 -5.00000069e-01]\n", + " [ 3.01278571e+03 -5.00000257e-01]\n", + " [ 3.30521429e+03 -4.99999992e-01]\n", + " [ 3.59764286e+03 -5.00000241e-01]\n", + " [ 3.89007143e+03 -4.99999730e-01]\n", + " [ 4.18250000e+03 -5.00000010e-01]\n", + " [ 2.13550000e+03 2.04650000e+03]\n", + " [ 2.42792857e+03 2.04650000e+03]\n", + " [ 2.72035714e+03 2.0465000DEBUG:root:make_az_asym: xyp: [[ 0.16415906 -31.72847131]\n", + " [ 0.16601788 -27.34204313]\n", + " [ 0.1678767 -22.95561497]\n", + " [ 0.16973552 -18.56918678]\n", + " [ 0.17159434 -14.1827586 ]\n", + " [ 0.17345315 -9.79633043]\n", + " [ 0.17531197 -5.40990225]\n", + " [ 0.17717079 -1.02347407]\n", + " [ 0.16415906 -31.72847131]\n", + " [ 4.55058724 -31.73033014]\n", + " [ 8.93701541 -31.73218895]\n", + " [ 13.32344359 -31.73404778]\n", + " [ 17.70987177 -31.73590659]\n", + " [ 22.09629995 -31.73776541]\n", + " [ 26.48272812 -31.73962422]\n", + " [ 30.8691563 -31.74148305]\n", + " [ 0.17717079 -1.02347407]\n", + " [ 4.56359897 -1.02533289]\n", + " [ 8.95002714 -1.02719171]\n", + " [ 13.33645532 -1.02905053]\n", + " [ 17.7228835 -1.03090935]\n", + " [ 22.10931168 -1.03276817]\n", + " [ 26.49573986 -1.03462699]\n", + " [ 30.88216803 -1.0364858 ]\n", + " [ 30.8691563 -31.74148305]\n", + " [ 30.87101512 -27.35505487]\n", + " [ 30.87287394 -22.96862669]\n", + " [ 30.87473276 -18.58219851]\n", + " [ 30.87659158 -14.19577034]\n", + " [ 30.8784504 -9.80934216]\n", + " [ 30.88030922 -5.42291398]\n", + " [ 30.88216803 -1.0364858 ]\n", + " [ 0.17996951 -29.81597784]\n", + " [ 0.1822476DEBUG:root:optics_fp: xyfp: [[-32.31281793 -31.43806373]\n", + " [-32.31091541 -27.05163558]\n", + " [-32.30901287 -22.66520742]\n", + " [-32.30711034 -18.27877926]\n", + " [-32.3052078 -13.8923511 ]\n", + " [-32.30330527 -9.50592294]\n", + " [-32.30140274 -5.11949478]\n", + " [-32.2995002 -0.73306663]\n", + " [-32.31281793 -31.43806373]\n", + " [-27.92638978 -31.43996627]\n", + " [-23.53996162 -31.4418688 ]\n", + " [-19.15353346 -31.44377134]\n", + " [-14.7671053 -31.44567387]\n", + " [-10.38067715 -31.44757641]\n", + " [ -5.99424899 -31.44947894]\n", + " [ -1.60782083 -31.45138147]\n", + " [-32.2995002 -0.73306663]\n", + " [-27.91307204 -0.73496916]\n", + " [-23.52664389 -0.73687169]\n", + " [-19.14021573 -0.73877423]\n", + " [-14.75378757 -0.74067676]\n", + " [-10.36735941 -0.74257929]\n", + " [ -5.98093125 -0.74448183]\n", + " [ -1.59450309 -0.74638436]\n", + " [ -1.60782083 -31.45138147]\n", + " [ -1.60591829 -27.06495331]\n", + " [ -1.60401576 -22.67852516]\n", + " [ -1.60211323 -18.292097 ]\n", + " [ -1.60021069 -13.90566884]\n", + " [ -1.59830816 -9.51924068]\n", + " [ -1.59640563 -5.13281252]\n", + " [ -1.59450309 -0.74638436]\n", + " [-32.29698843 -29.52557043]\n", + " [-32.29465669 -24.14957093]\n", + " [-32.29232495 -18.77357144]\n", + " [-32.2899932 -13.39757194]\n", + " [-32.28766146 -8.02157244]\n", + " [-32.28532972 -2.64557295]\n", + " [-30.40031161 -31.42389325]\n", + " [-25.02431212 -31.42622499]\n", + " [-19.64831262 -31.42855673]\n", + " [-14.27231313 -31.43088848]\n", + " [ -8.89631363 -31.43322022]\n", + " [ -3.52031414 -31.43555196]\n", + " [-30.38700689 -0.74889614]\n", + " [-25.01100739 -0.75122788]\n", + " [-19.6350079 -0.75355962]\n", + " [-14.25900841 -0.75589136]\n", + " [ -8.88300892 -0.7582231 ]\n", + " [ -3.50700942 -0.76055484]\n", + " [ -1.62199131 -29.53887515]\n", + " [ -1.61965957 -24.16287565]\n", + " [ -1.61732783 -18.78687616]\n", + " [ -1.61499609 -13.41087666]\n", + " [ -1.61266434 -8.03487716]\n", + " [ -1.6103326 -2.65887768]\n", + " [-32.29781143 -31.42307024]\n", + " [-32.29781143 -31.42307024]\n", + " [ -1.60950959 -0.76137785]\n", + " [ -1.60950959 -0.76137785]\n", + " [-30.3994886 -29.52639343]\n", + " [-25.02348911 -29.52872517]\n", + " [-19.64748962 -29.53105692]\n", + " [-14.27149012 -29.53338866]\n", + " [ -8.89549063 -29.5357204 ]\n", + " [ -3.51949113 -29.53805214]\n", + " [-30.39715686 -24.15039394]\n", + " [-25.02115737 -24.15272568]\n", + " [-19.64515788 -24.15505742]\n", + " [-14.26915838 -24.15738916]\n", + " [ -8.89315889 -24.1597209 ]\n", + " [ -3.51715939 -24.16205264]\n", + " [-30.39482512 -18.77439444]\n", + " [-25.01882563 -18.77672618]\n", + " [-19.64282613 -18.77905793]\n", + " [-14.26682664 -18.78138967]\n", + " [ -8.89082714 -18.78372141]\n", + " [ -3.51482765 -18.78605315]\n", + " [-30.39249338 -13.39839495]\n", + " [-25.01649389 -13.40072669]\n", + " [-19.64049439 -13.40305843]\n", + " [-14.2644949 -13.40539017]\n", + " [ -8.8884954 -13.40772191]\n", + " [ -3.51249591 -13.41005365]\n", + " [-30.39016163 -8.02239545]\n", + " [-25.01416214 -8.02472719]\n", + " [-19.63816265 -8.02705893]\n", + " [-14.26216315 -8.02939068]\n", + " [ -8.88616366 -8.03172242]\n", + " [ -3.51016417 -8.03405416]\n", + " [-30.3878299 -2.64639596]\n", + " [-25.01183041 -2.6487277 ]\n", + " [-19.63583091 -2.65105944]\n", + " [-14.25983141 -2.65339118]\n", + " [ -8.88383191 -2.65572292]\n", + " [ -3.50783243 -2.65805467]]\n", + "3 -0.69122322 -0.80440059 -0.86841556 -0.90662579\n", + " -0.25884683 -0.68029192 -0.84621522 -0.91366637 -0.94562561 -0.96286848\n", + " -0.61966627 -0.93908148 -0.97786122 -0.98875506 -0.9932273 -0.DEBUG:root:optics_fp: xyfp shape: (96, 2)\n", + "DEBUG:root:make_az_asym: xyp: shape: (96, 2)\n", + "0e+03]\n", + " [ 3.01278571e+03 2.04650000e+03]\n", + " [ 3.30521429e+03 2.04650000e+03]\n", + " [ 3.59764286e+03 2.04650000e+03]\n", + " [ 3.89007143e+03 2.04650000e+03]\n", + " [ 4.18250000e+03 2.04650000e+03]\n", + " [ 4.18250000e+03 -5.00000010e-01]\n", + " [ 4.18250000e+03 2.91928572e+02]\n", + " [ 4.18250000e+03 5.84357143e+02]\n", + " [ 4.18250000e+03 8.76785714e+02]\n", + " [ 4.18250000e+03 1.16921429e+03]\n", + " [ 4.18250000e+03 1.46164286e+03]\n", + " [ 4.18250000e+03 1.75407143e+03]\n", + " [ 4.18250000e+03 2.04650000e+03]\n", + " [ 2.13650000e+03 1.27000000e+02]\n", + " [ 2.13650000e+03 4.85400000e+02]\n", + " [ 2.13650000e+03 8.43800000e+02]\n", + " [ 2.13650000e+03 1.20220000e+03]\n", + " [ 2.13650000e+03 1.56060000e+03]\n", + " [ 2.13650000e+03 1.91900000e+03]\n", + " [ 2.26300000e+03 4.99999720e-01]\n", + " [ 2.62140000e+03 4.99999983e-01]\n", + " [ 2.97980000e+03 4.99999771e-01]\n", + " [ 3.33820000e+03 4.99999773e-01]\n", + " [ 3.69660000e+03 5.00000075e-01]\n", + " [ 4.05500000e+03 4.99999913e-01]\n", + " [ 2.26300000e+03 2.04550000eDEBUG:root:radec2pix: fitpx: [[-4.99999744e-01 -4.99999751e-01]\n", + " [-5.00000258e-01 2.91928571e+02]\n", + " [-5.00000005e-01 5.84357143e+02]\n", + " [-4.99999941e-01 8.76785714e+02]\n", + " [-4.99999889e-01 1.16921429e+03]\n", + " [-4.99999948e-01 1.46164286e+03]\n", + " [-5.00000143e-01 1.75407143e+03]\n", + " [-4.99999962e-01 2.04650000e+03]\n", + " [-4.99999744e-01 -4.99999751e-01]\n", + " [ 2.91928571e+02 -5.00000271e-01]\n", + " [ 5.84357143e+02 -4.99999959e-01]\n", + " [ 8.76785714e+02 -5.00000035e-01]\n", + " [ 1.16921429e+03 -5.00000130e-01]\n", + " [ 1.46164286e+03 -5.00000295e-01]\n", + " [ 1.75407143e+03 -5.00000131e-01]\n", + " [ 2.04650000e+03 -5.00000000e-01]\n", + " [-4.99999962e-01 2.04650000e+03]\n", + " [ 2.91928571e+02 2.04650000e+03]\n", + " [ 5.84357143e+02 2.04650000e+03]\n", + " [ 8.76785714e+02 2.04650000e+03]\n", + " [ 1.16921429e+03 2.04650000e+03]\n", + " [ 1.46164286e+03 2.04650000e+03]\n", + " [ 1.75407143e+03 2.04650000e+03]\n", + " [ 2.04650000e+03 2.04650000e+03]\n", + " [ 2.04650000e+03 -5.00000000e-01]\n", + " [ 2.04650000e+03 2.91928571e+02]\n", + " [ 2.04650000e+03 5.84357143e+02]\n", + " [ 2.04650000e+03 8.7678599548108]\n", + "714e+02]\n", + " [ 2.04650000e+03 1.16921429e+03]\n", + " [ 2.04650000e+03 1.46164286e+03]\n", + " [ 2.04650000e+03 1.75407143e+03]\n", + " [ 2.04650000e+03 2.04650000e+03]\n", + " [ 4.99999741e-01 1.27000000e+02]\n", + " [ 4.99999873e-01 4.85400000e+02]\n", + " [ 4.99999712e-01 8.43800000e+02]\n", + " [ 5.00000277e-01 1.20220000e+03]\n", + " [ 5.00000282e-01 1.56060000e+03]\n", + " [ 4.99999780e-01 1.91900000e+03]\n", + " [ 1.27000000e+02 4.99999945e-01]\n", + " [ 4.85400000e+02 4.99999943e-01]\n", + " [ 8.43800000e+02 5.00000147e-01]\n", + " [ 1.20220000e+03 4.99999799e-01]\n", + " [ 1.56060000e+03 5.00000078e-01]\n", + " [ 1.91900000e+03 4.99999710e-01]\n", + " [ 1.27000000e+02 2.04550000e+03]\n", + " [ 4.85400000e+02 2.04550000e+03]\n", + " [ 8.43800000e+02 2.04550000e+03]\n", + " [ 1.20220000e+03 2.04550000e+03]\n", + " [ 1.56060000e+03 2.04550000e+03]\n", + " [ 1.91900000e+03 2.04550000e+03]\n", + " [ 2.04550000e+03 1.27000000e+02]\n", + " [ 2.04550000e+03 4.85400000e+02]\n", + " [ 2.04550000e+03 8.43800000e+02]\n", + " [ 2.04550000e+03 1.20220000e+03]\n", + " [ 2.04550000e+03 1.56060000e+03]\n", + " [ 2.04550000e+03 1.91900000e+03]\n", + " [ 5.00000247e-01 5.00000241e-01]\n", + " [ 5.00000247e-01 5.00000241e-01]\n", + " [ 2.04550000e+03 2.04550000e+03]\n", + " [ 2.04550000e+03 2.04550000e+03]\n", + " [ 1.27000000e+02 1.27000000e+02]\n", + " [ 4.85400000e+02 1.27000000e+02]\n", + " [ 8.43800000e+02 1.27000000e+02]\n", + " [ 1.20220000e+03 1.27000000e+02]\n", + " [ 1.56060000e+03 1.27000000e+02]\n", + " [ 1.91900000e+03 1.27000000e+02]\n", + " [ 1.27000000e+02 4.85400000e+02]\n", + " [ 4.85400000e+02 4.85400000e+02]\n", + " [ 8.43800000e+02 4.85400000e+02]\n", + " [ 1.20220000e+03 4.85400000e+02]\n", + " [ 1.56060000e+03 4.85400000e+02]\n", + " [ 1.91900000e+03 4.85400000e+02]\n", + " [ 1.27000000e+02 8.43800000e+02]\n", + " [ 4.85400000e+02 8.43800000e+02]\n", + " [ 8.43800000e+02 8.43800000e+02]\n", + " [ 1.20220000e+03 8.43800000e+02]\n", + " [ 1.56060000e+03 8.43800000e+02]\n", + " [ 1.91900000e+03 8.43800000e+02]\n", + " [ 1.27000000e+02 1.20220000e+03]\n", + " [ 4.85400000e+02 1.20220000e+03]\n", + " [ 8.43800000e+02 1.20220000e+03]\n", + " [ 1.20220000e+03 1.20220000e+03]\n", + " [ 1.56060000e+03 1.20220000e+03]\n", + " [ 1.91900000e+03 1.20220000e+03]\n", + " [ 1.27000000e+02 1.56060000e+03]\n", + " [ 4.85400000e+02 1.56060000e+03]\n", + " [ 8.43800000e+02 1.56060000e+03]\n", + " [ 1.20220000e+03 1.56060000e+03]\n", + " [ 1.56060000e+03 1.56060000e+03]\n", + " [ 1.91900000e+03 1.56060000e+03]\n", + " [ 1.27000000e+02 1.91900000e+03]\n", + " [ 4.85400000e+02 1.91900000e+03]\n", + " [ 8.43800000e+02 1.91900000e+03]\n", + " [ 1.20220000e+03 1.91900000e+03]\n", + " [ 1.56060000e+03 1.91900000e+03]\n", + " [ 1.91900000e+03 1.91900000e+03]]\n", + "+03]\n", + " [ 2.62140000e+03 2.04550000e+03]\n", + " [ 2.97980000e+03 2.04550000e+03]\n", + " [ 3.33820000e+03 2.04550000e+03]\n", + " [ 3.69660000e+03 2.04550000e+03]\n", + " [ 4.05500000e+03 2.04550000e+03]\n", + " [ 4.18150000e+03 1.27000000e+02]\n", + " [ 4.18150000e+03 4.85400000e+02]\n", + " [ 4.18150000e+03 8.43800000e+02]\n", + " [ 4.18150000e+03 1.20220000e+03]\n", + " [ 4.18150000e+03 1.56060000e+03]\n", + " [ 4.18150000e+03 1.91900000e+03]\n", + " [ 2.13650000e+03 4.99999930e-01]\n", + " [ 2.13650000e+03 4.99999930e-01]\n", + " [ 4.18150000e+03 2.04550000e+03]\n", + " [ 4.18150000e+03 2.04550000e+03]\n", + " [ 2.26300000e+03 1.27000000e+02]\n", + " [ 2.62140000e+03 1.27000000e+02]\n", + " [ 2.97980000e+03 1.27000000e+02]\n", + " [ 3.33820000e+03 1.27000000e+02]\n", + " [ 3.69660000e+03 1.27000000e+02]\n", + " [ 4.05500000e+03 1.27000000e+02]\n", + " [ 2.26300000e+03 4.85400000e+02]\n", + " [ 2.62140000e+03 4.85400000e+02]\n", + " [ 2.97980000e+03 4.85400000e+02]\n", + " [ 3.33820000e+03 4.85400000e+02]\n", + " [ 3.69660000e+03 4.85400000e+02]\n", + " [ 4.05500000e+03 4.85400000e+02]\n", + " [ 2.26300000e+03 8.43800000e+02]\n", + " [ 2.62140000e+03 8.43800000e+02]\n", + " [ 2.97980000e+03 8.43800000e+02]\n", + " [ 3.33820000e+03 8.43800000e+02]\n", + " [ 3.69660000e+03 8.43800000e+02]\n", + " [ 4.05500000e+03 8.43800000e+02]\n", + " [ 2.26300000e+03 1.20220000e+03]\n", + " [ 2.62140000e+03 1.20220000e+03]\n", + " [ 2.97980000e+03 1.20220000e+03]\n", + " [ 3.33820000e+03 1.20220000e+03]\n", + " [ 3.69660000e+03 1.20220000e+03]\n", + " [ 4.05500000e+03 1.20220000e+03]\n", + " [ 2.26300000e+03 1.56060000e+03]\n", + " [ 2.62140000e+03 1.56060000e+03]\n", + " [ 2.97980000e+03 1.56060000e+03]\n", + " [ 3.33820000e+03 1.56060000e+03]\n", + " [ 3.69660000e+03 1.56060000e+03]\n", + " [ 4.05500000e+03 1.56060000e+03]\n", + " [ 2.26300000e+03 1DEBUG:root:radec2pix: xyfp: [[32.275486 31.41357429]\n", + " [32.27502267 27.02714574]\n", + " [32.27455935 22.64071719]\n", + " [32.27409601 18.25428864]\n", + " [32.27363269 13.8678601 ]\n", + " [32.27316936 9.48143155]\n", + " [32.27270604 5.095003 ]\n", + " [32.27224271 0.70857446]\n", + " [32.275486 31.41357429]\n", + " [27.88905745 31.41403761]\n", + " [23.5026289 31.41450094]\n", + " [19.11620036 31.41496427]\n", + " [14.72977181 31.41542759]\n", + " [10.34334326 31.41589092]\n", + " [ 5.95691471 31.41635424]\n", + " [ 1.57048617 31.41681757]\n", + " [32.27224271 0.70857446]\n", + " [27.88581416 0.70903778]\n", + " [23.49938562 0.70950111]\n", + " [19.11295707 0.70996444]\n", + " [14.72652852 0.71042776]\n", + " [10.34009998 0.71089109]\n", + " [ 5.95367142 0.71135442]\n", + " [ 1.56724288 0.71181774]\n", + " [ 1.57048617 31.41681757]\n", + " [ 1.57002284 27.03038902]\n", + " [ 1.56955951 22.64396047]\n", + " [ 1.56909619 18.25753194]\n", + " [ 1.56863286 13.87110338]\n", + " [ 1.56816953 9.48467484]\n", + " [ 1.56770621 5.09824629]\n", + " [ 1.56724288 0.71181774]\n", + " [32.26028399 29.50107588]\n", + " [32.25971613 24.12507591]\n", + " [32.25914828 18.74907594]\n", + " [32.25858043 13.37307597]\n", + " [32.25801258 7.997076 ]\n", + " [32.25744472 2.62107603]\n", + " [30.36298443 31.3987763 ]\n", + " [24.98698446 31.39934415]\n", + " [19.61098448 31.399912 ]\n", + " [14.23498451 31.40047985]\n", + " [ 8.85898454 31.40104771]\n", + " [ 3.48298457 31.40161556]\n", + " [30.35974431 0.72377647]\n", + " [24.98374433 0.72434432]\n", + " [19.60774436 0.72491217]\n", + " [14.23174439 0.72548003]\n", + " [ 8.85574442 0.72604788]\n", + " [ 3.47974445 0.72661573]\n", + " [ 1.58528416 29.504316 ]\n", + " [ 1.5847163 24.12831603]\n", + " [ 1.58414845 18.75231606]\n", + " [ 1.5835806 13.37631609]\n", + " [ 1.58301275 8.00031612]\n", + " [ 1.5824449 2.62431615]\n", + " [32.26048441 31.39857587]\n", + " [32.26048441 31.39857587]\n", + " [ 1.58224447 0.72681616]\n", + " [ 1.58224447 0.72681616]\n", + " [30.36278399 29.50127631]\n", + " [24.98678403 29.50184416]\n", + " [19.61078405 29.50241201]\n", + " [14.23478409 29.50297987]\n", + " [ 8.85878411 29.50354772]\n", + " [ 3.48278414 29.50411557]\n", + " [30.36221615 24.12527634]\n", + " [24.98621618 24.12584419]\n", + " [19.6102162 24.12641204]\n", + " [14.23421623 24.1269799 ]\n", + " [ 8.85821626 24.12754775]\n", + " [ 3.48221629 24.1281156 ]\n", + " [30.36164829 18.74927637]\n", + " [24.98564832 18.74984422]\n", + " [19.60964835 18.75041208]\n", + " [14.23364838 18.75097993]\n", + " [ 8.85764841 18.75154778]\n", + " [ 3.48164844 18.75211563]\n", + " [30.36108043 13.3732764 ]\n", + " [24.98508046 13.37384425]\n", + " [19.60908049 13.3744121 ]\n", + " [14.23308053 13.37497996]\n", + " [ 8.85708056 13.37554781]\n", + " [ 3.48108059 13.37611567]\n", + " [30.36051258 7.99727643]\n", + " [24.98451261 7.99784428]\n", + " [19.60851265 7.99841214]\n", + " [14.23251268 7.99897999]\n", + " [ 8.85651271 7.99954784]\n", + " [ 3.48051273 8.00011569]\n", + " [30.35994473 2.62127646]\n", + " [24.98394476 2.62184431]\n", + " [19.60794479 2.62241216]\n", + " [14.23194482 2.62298002]\n", + " [ 8.85594485 2.62354787]\n", + " [ 3.47994488 2.62411572]]\n", + "DEBUG:root:make_az_asym: xyp: [[-32.31281793 -31.43806373]\n", + " [-32.31091541 -27.05163558]\n", + " [-32.30901287 -22.66520742]\n", + " [-32.30711034 -18.27877926]\n", + " [-32.3052078 -13.8923511 ]\n", + " [-32.30330527 -9.50592294]\n", + " [-32.30140274 -5.11949478]\n", + " [-32.2995002 -0.73306663]\n", + " [-32.31281793 -31.43806373]\n", + " [-27.92638978 -31.43996627]\n", + " [-23.53996162 -31.4418688 ]\n", + " [-19.15353346 -31.44377134]\n", + " DEBUG:root:radec2pix: xyfp Shape: (96, 2)\n", + "[-14.7671053 -31.44567387]\n", + " [-10.38067715 -31.44757641]\n", + " [ -5.99424899 -31.44947894]\n", + " [ -1.60782083 -31.45138147]\n", + " [-32.2995002 -0.73306663]\n", + " [-27.91307204 -0.73496916]\n", + " [-23.52664389 -0.73687169]\n", + " [-19.14021573 -0.73877423]\n", + " [-14.75378757 -0.74067676]\n", + " [-10.36735941 -0.74257929]\n", + " [ -5.98093125 -0.74448183]\n", + " [ -1.59450309 -0.74638436]\n", + " [ -1.60782083 -31.45138147]\n", + " [ -1.60591829 -27.06495331]\n", + " [ -1.60401576 -22.67852516]\n", + " [ -1.60211323 -18.292097 ]\n", + " [ -1.60021069 -13.90566884]\n", + " [ -1.59830816 -9.51924068]\n", + " [ -1.59640563 -5.13281252]\n", + " [ -1.59450309 -0.74638436]\n", + " [-32.29698843 -29.52557043]\n", + " [-32.29465669 -24.14957093]\n", + " [-32.29232495 -18.77357144]\n", + " [-32.2899932 -13.39757194]\n", + " [-32.28766146 -8.02157244]\n", + " [-32.28532972 -2.64557295]\n", + " [-30.40031161 -31.42389325]\n", + " [-25.02431212 -31.42622499]\n", + " [-19.64831262 -31.42855673]\n", + " [-14.27231313 -31.43088848]\n", + " [ -8.89631363 -31.43322022]\n", + " [ -3.52031414 -31.43555196]\n", + " [-30.38700689 -0.74889614]\n", + " [-25.01100739 -0.75122788]\n", + " [-19.6350079 -0.75355962]\n", + " [-14.25900841 -0.75589136]\n", + " [ -8.88300892 -0.7582231 ]\n", + " [ -3.50700942 -0.76055484]\n", + " [ -1.62199131 -29.53887515]\n", + " [ -1.61965957 -24.16287565]\n", + " [ -1.61732783 -18.78687616]\n", + " [ -1.61499609 -13.41087666]\n", + " [ -1.61266434 -8.03487716]\n", + " [ -1.6103326 -2.65887768]\n", + " [-32.29781143 -31.42307024]\n", + " [-32.29781143 -31.42307024]\n", + " [ -1.60950959 -0.76137785]\n", + " [ -1.60950959 -0.76137785]\n", + " [-30.3994886 -29.52639343]\n", + " [-25.02348911 -29.52872517]\n", + " [-19.64748962 -29.53105692]\n", + " [-14.27149012 -29.53338866]\n", + " [ -8.89549063 -29.5357204 ]\n", + " [ -3.51949113 -29.53805214]\n", + " [-30.39715686 -24.15039394]\n", + " [-25.02115737 -24.15272568]\n", + " [-19.64515788 -24.15505742]\n", + " [-14.26915838 -24.15738916]\n", + " [ -8.89315889 -24.1597209 ]\n", + " [ -3.51715939 -24.16205264]\n", + " [-30.39482512 -18.77439444]\n", + " [-25.01882563 -18.77672618]\n", + " [-19.64282613 -18.77905793]\n", + " [-14.26682664 -18.78138967]\n", + " [ -8.89082714 -18.78372141]\n", + " [ -3.51482765 -18.78605315]\n", + " [-30.39249338 -13.39839495]\n", + " [-25.01649389 -13.40072669]\n", + " [-19.64049439 -13.40305843]\n", + " [-14.2644949 -13.40539017]\n", + " [ -8.8884954 -13.40772191]\n", + " [ -3.51249591 -13.41005365]\n", + " [-30.39016163 -8.02239545]\n", + " [-25.01416214 -8.02472719]\n", + " [-19.63816265 -8.02705893]\n", + " [-14.26216315 -8.02939068]\n", + " [ -8.88616366 -8.03172242]\n", + " [ -3.51016417 -8.03405416]\n", + " [-30.3878299 -2.64639596]\n", + " [-25.01183041 -2.6487277 ]\n", + " [-19.63583091 -2.65105944]\n", + " [-14.25983141 -2.65339118]\n", + " [ -8.88383191 -2.65572292]\n", + " [ -3.50783243 -2.65805467]]\n", + "DEBUG:root:cartToSphere: vec: [[0.20622014 0.20255556 0.95731108]\n", + " [0.20805053 0.17610143 0.96213474]\n", + " [0.20961035 0.14895462 0.96637261]\n", + " [0.210899 0.12122494 0.96996192]\n", + " [0.21191543 0.09302239 0.9728508 ]\n", + " [0.21265818 0.06445739 0.97499833]\n", + " [0.21312568 0.03564119 0.97637449]\n", + " [0.21331667 0.00668594 0.97696023]\n", + " [0.20622014 0.20255556 0.95731108]\n", + " [0.17982824 0.20441077 0.96222557]\n", + " [0.1527297 0.20600074 0.96655954]\n", + " [0.12503427 0.2073248 0.97024886]\n", + " [0.09685185 0.20838186 0.97324032]\n", + " [0.06829276 0.20917033 DEBUG:root:radec2pix: xyfp: [[ 0.236018 -31.56946754]\n", + " [ 0.23651287 -27.18303899]\n", + " [ 0.23700774 -22.79661046]\n", + " [ 0.23750261 -18.41018192]\n", + " [ 0.23799748 -14.02375336]\n", + " [ 0.23849235 -9.63732482]\n", + " [ 0.23898721 -5.25089628]\n", + " [ 0.23948208 -0.86446773]\n", + " [ 0.236018 -31.56946754]\n", + " [ 4.62244655 -31.56996241]\n", + " [ 9.00887509 -31.57045728]\n", + " [ 13.39530363 -31.57095214]\n", + " [ 17.78173218 -31.57144701]\n", + " [ 22.16816072 -31.57194188]\n", + " [ 26.55458927 -31.57243675]\n", + " [ 30.94101781 -31.57293162]\n", + " [ 0.23948208 -0.86446773]\n", + " [ 4.62591062 -0.8649626 ]\n", + " [ 9.01233917 -0.86545747]\n", + " [ 13.39876771 -0.86595234]\n", + " [ 17.78519626 -0.86644721]\n", + " [ 22.1716248 -0.86694208]\n", + " [ 26.55805334 -0.86743695]\n", + " [ 30.94448189 -0.86793181]\n", + " [ 30.94101781 -31.57293162]\n", + " [ 30.94151268 -27.18650307]\n", + " [ 30.94200754 -22.80007453]\n", + " [ 30.94250242 -18.41364599]\n", + " [ 30.94299728 -14.02721745]\n", + " [ 30.94349215 -9.6407889 ]\n", + " [ 30.94398702 -5.25436036]\n", + " [ 30.94448189 -0.86793181]\n", + " [ 0.25123377 -29.65696924]\n", + " [ 0.25184028 DEBUG:root:mm_to_pix: fitpx: [[0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]]\n", + "-24.28096928]\n", + " [ 0.25244679 -18.90496931]\n", + " [ 0.2530533 -13.52896935]\n", + " [ 0.25365981 -8.15296938]\n", + " [ 0.25426632 -2.77696942]\n", + " [ 2.14851968 -31.5546833 ]\n", + " [ 7.52451965 -31.55528981]\n", + " [ 12.90051962 -31.55589633]\n", + " [ 18.27651958 -31.55650284]\n", + " [ 23.65251954 -31.55710934]\n", + " [ 29.02851952 -31.55771586]\n", + " [ 2.15198038 -0.8796835 ]\n", + " [ 7.52798035 -0.88029001]\n", + " [ 12.90398031 -0.88089652]\n", + " [ 18.27998027 -0.88150303]\n", + " [ 23.65598025 -0.88210954]\n", + " [ 29.03198021 -0.88271605]\n", + " [ 30.92623357 -29.66042994]\n", + " [ 30.92684009 -24.28442998]\n", + " [ 30.9274466 -18.90843001]\n", + " [ 30.9280531 -13.53243004]\n", + " [ 30.92865961 -8.15643008]\n", + " [ 30.92926612 -2.78043011]\n", + " [ 0.2510197 -31.55446923]\n", + " [ 0.2510197 -31.55446923]\n", + " [ 30.9294802 -0.88293012]\n", + " [ 30.9294802 -0.88293012]\n", + " [ 2.14873376 -29.65718332]\n", + " [ 7.52473372 -29.65778983]\n", + " [ 12.90073369 -29.65839633]\n", + " [ 18.27673365 -29.65900285]\n", + " [ 23.65273362 -29.65960936]\n", + " [ 29.02873359 -29.66021587]\n", + " [ 2.14934027 -24.28118335]\n", + " [ 7.52534023 -24.28178986]\n", + " [ 12.9013402 -24.28239637]\n", + " [ 18.27734016 -24.28300288]\n", + " [ 23.65334013 -24.28360939]\n", + " [ 29.02934009 -24.DEBUG:root:make_az_asym: xyp: shape: (96, 2)\n", + "2842159 ]\n", + " [ 2.14994678 -18.90518338]\n", + " [ 7.52594674 -18.90578989]\n", + " [ 12.90194671 -18.9063964 ]\n", + " [ 18.27794667 -18.90700292]\n", + " [ 23.65394664 -18.90760943]\n", + " [ 29.0299466 -18.90821593]\n", + " [ 2.15055329 -13.52918342]\n", + " [ 7.52655325 -13.52978993]\n", + " [ 12.90255322 -13.53039644]\n", + " [ 18.27855318 -13.53100295]\n", + " [ 23.65455315 -13.53160946]\n", + " [ 29.03055312 -13.53221597]\n", + " [ 2.1511598 -8.15318346]\n", + " [ 7.52715976 -8.15378996]\n", + " [ 12.90315973 -8.15439647]\n", + " [ 18.27915969 -8.15500298]\n", + " [ 23.65515966 -8.15560949]\n", + " [ 29.03115962 -8.156216 ]\n", + " [ 2.1517663 -2.77718348]\n", + " [ 7.52776627 -2.77779 ]\n", + " [ 12.90376624 -2.77839651]\n", + " [ 18.2797662 -2.77900302]\n", + " [ 23.65576617 -2.77960953]\n", + " [ 29.03176613 -2.78021604]]\n", + ".91900000e+03]\n", + " [ 2.62140000e+03 1.91900000e+03]\n", + " [ 2.97980000e+03 1.91900000e+03]\n", + " [ 3.33820000e+03 1.91900000e+03]\n", + " [ 3.69660000e+03 1.91900000e+03]\n", + " [ 4.05500000e+03 1.91900000e+03]]\n", + "DEBUG:root:mm_to_pix: fitpx.shape: (96, 2)\n", + "DEBUG:root:caDEBUG:root:fitpix2pix: ccdpx: shape: (96, 2)\n", + "rtToSphere: vec: [[ 0.00152888 -0.20769103 0.97819328]\n", + " [ 0.00154215 -0.1801941 0.98362986]\n", + " [ 0.00155354 -0.15200928 0.98837785]\n", + " [ 0.00156302 -0.12324112 0.99237552]\n", + " [ 0.00157054 -0.09399571 0.99557136]\n", + " [ 0.00157606 -0.06438234 0.99792406]\n", + " [ 0.00157952 -0.03451442 0.99940295]\n", + " [ 0.00158089 -0.00450904 0.99998858]\n", + " [ 0.00152888 -0.20769103 0.97819328]\n", + " [ 0.03055413 -0.20754198 0.97774883]\n", + " [ 0.0594604 -0.20712371 0.97650613]\n", + " [ 0.08813528 -0.20643751 0.97448229]\n", + " [ 0.11646734 -0.2054851 0.97170532]\n", + " [ 0.14434605 -0.20426815 0.9682142 ]\n", + " [ 0.17166149 -0.20278791 0.96405881]\n", + " [ 0.1983039 -0.2010451 0.95929997]\n", + " [ 0.00158089 -0.00450904 0.99998858]\n", + " [ 0.03159291 -0.00450572 0.99949066]\n", + " [ 0.06147904 -0.00449643 0.99809825]\n", + " [ 0.0911219 -0.00448126 0.99582966]\n", + " [ 0.12040769 -0.00446035 0.99271451]\n", + " [ 0.14922671 -0.00443385 0.98879307]\n", + " [ 0.17747265 -0.00440189 0.98411589]\n", + " [ 0.2050409 -0.00436457 0.97874367]\n", + " [ 0.1983039 -0.2010451 0.95929997]\n", + " [ 0.20004855 -0.17444879 0.9641308 ]\n", + " [ 0.20153434 -0.14716869 0.96836217]\n", + " [ 0.2027606 -0.11931453 0.97193219]\n", + " [ 0.20372608 -0.09099614 0.97478992]\n", + " [ 0.20442907 -0.06232394 0.97689533]\n", + " [ 0.20486781 -0.03340929 0.9782193 ]\n", + " [ 0.2050409 -0.00436457 0.97874367]\n", + " [ 0.00163462 -0.1957935 0.98064379]\n", + " [ 0.00165059 -0.16161745 0.9868521 ]\n", + " [ 0.00166353 -0.12651199 0.99196368]\n", + " [ 0.00167335 -0.09067166 0.99587944]\n", + " [ 0.00167995 -0.05429781 0.99852337]\n", + " [ 0.00168324 -0.01760077 0.99984368]\n", + " [ 0.01419184 -0.20756647 0.97811796]\n", + " [ 0.04970047 -0.20720276 0.97703474]\n", + " [ 0.08491857 -0.20643606 0.97476817]\n", + " [ 0.11964057 -0.20526936 0.97136534]\n", + " [ 0.15366298 -0.20370571 0.96689796]\n", + " [ 0.18678351 -0.20174719 0.96146242]\n", + " [ 0.01467408 -0.00461102 0.9998817 ]\n", + " [ 0.05138704 -0.00460274 0.99866821]\n", + " [ 0.08779394 -0.00458538 0.9961281 ]\n", + " [ 0.12368372 -0.00455917 0.99231122]\n", + " [ 0.15885436 -0.0045244 0.98729166]\n", + " [ 0.19311093 -0.0044813 0.9811667 ]\n", + " [ 0.19900616 -0.18954613 0.96149301]\n", + " [ 0.20096941 -0.15647489 0.9670196 ]\n", + " [ 0.20254341 -0.12248558 0.97158296]\n", + " [ 0.2037261 -0.08778034 0.97508476]\n", + " [ 0.2045144 -0.05256249 0.9774513 ]\n", + " [ 0.20490517 -0.01703747 0.97863353]\n", + " [ 0.00162826 -0.20759824 0.97821282]\n", + " [ 0.00162826 -0.20759824 0.97821282]\n", + " [ 0.20494776 -0.00446412 0.97876273]\n", + " [ 0.20494776 -0.00446412 0.97876273]\n", + " [ 0.01424722 -0.19576354 0.98054763]\n", + " [ 0.04989441 -0.19542056 0.97944952]\n", + " [ 0.08525013 -0.19469787 0.97715155]\n", + " [ 0.12010852 -0.19359884 0.97370089]\n", + " [ 0.15426631 -0.19212697 0.9691693 ]\n", + " [ 0.18752167 -0.19028463 0.96365314]\n", + " [ 0.01438645 -0.16159264 0.98675268]\n", + " [ 0.05038177 -0.16130879 0.98561714]\n", + " [ 0.08608239 -0.16071144 0.98324039]\n", + " [ 0.1212815 -0.15980479 0.97966996]\n", + " [ 0.15577635 -0.15859338 0.97497788]\n", + " [ 0.18936679 -0.15708053 0.9692605 ]\n", + " [ 0.01449922 -0.12649245 0.9918616 ]\n", + " [ 0.05077617 -0.12626898 0.99069568]\n", + " [ 0.08675481 -0.12579928 0.9882551 ]\n", + " [ 0.12222707 -0.12508774 0.98458804]\n", + " [ 0.15699061 -0.12413931 0.979767 ]\n", + " [ 0.19084708 -0.12295784 0.97388848]\n", + " [ 0.01458479 -0.09065756 0.99577532]\n", + " [ 0.05107523 -0.09049631 0.99458621]\n", + " [ 0.08726392 -0.09015775 0.99209707]\n", + " [ 0.1229415 -0.08964573 0.98835673]\n", + " [ 0.15790584 -0.08896468 0.98343837]\n", + " [ 0.1919602 -0.0881182 0.97743873]\n", + " [ 0.01464229 -0.05428931 0.99841789]\n", + " [ 0.05127607 -0.05419219 0.9972131 ]\n", + " [ 0.08760541 -0.05398843 0.99469118]\n", + " [ 0.12341989 -0.05368064 0.99090157]\n", + " [ 0.15851749 -0.05327188 0.985918 ]\n", + " [ 0.19270261 -0.0527647 0.97983753]\n", + " [ 0.01467095 -0.01759801 0.9997375 ]\n", + " [ 0.05137612 -0.01756642 0.99852487]\n", + " [ 0.08777538 -0.01750018 0.99598656]\n", + " [ 0.12365776 -0.01740019 0.99217236]\n", + " [ 0.15882123 -0.0172675 0.98715635]\n", + " [ 0.1930708 -0.01710301 0.98103576]]\n", + "DEBUG:root:fitpix2pix: ccdpx: shape: (96, 2)\n", + "0.97549161]\n", + " [0.03946812 0.20968847 0.97697135]\n", + " [0.01049004 0.20993479 0.97765911]\n", + " [0.21331667 0.00668594 0.97696023]\n", + " [0.18597713 0.00675821 0.98DEBUG:root:fitpix2pix: visCut: True\n", + "DEBUG:root:radec2pix: xyfp: [[-32.31281793 -31.43806373]\n", + " [-32.31091541 -27.05163558]\n", + " [-32.30901287 -22.66520742]\n", + " [-32.30711034 -18.27877926]\n", + " [-32.3052078 -13.8923511 ]\n", + " [-32.30330527 -9.50592294]\n", + " [-32.30140274 -5.11949478]\n", + " [-32.2995002 -0.73306663]\n", + " [-32.31281793 -31.43806373]\n", + " [-27.92638978 -31.43996627]\n", + " [-23.53996162 -31.4418688 ]\n", + " [-19.15353346 -31.44377134]\n", + " [-14.7671053 -31.44567387]\n", + " [-10.38067715 -31.44757641]\n", + " [ -5.99424899 -31.44947894]\n", + " [ -1.60782083 -31.45138147]\n", + " [-32.2995002 -0.73306663]\n", + " [-27.91307204 -0.73496916]\n", + " [-23.52664389 -0.73687169]\n", + " [-19.14021573 -0.73877423]\n", + " [-14.75378757 -0.74067676]\n", + " [-10.36735941 -0.74257929]\n", + " [ -5.98093125 -0.74448183]\n", + " [ -1.59450309 -0.74638436]\n", + " [ -1.60782083 -31.45138147]\n", + " [ -1.60591829 -27.06495331]\n", + " [ -1.60401576 -22.67852516]\n", + " [ -1.60211323 -18.292097 ]\n", + " [ -1.60021069 -13.90566884]\n", + " [ -1.59830816 -9.51924068]\n", + " [ -1.59640563 -5.13281252]\n", + " [ -1.59450309 -0.74638436]\n", + " [-32.29DEBUG:root:optics_fp: sphi: [0.99996532 0.99995279 0.99993227 0.99989519 0.99981771 0.99961039\n", + " 0.998675 0.95292534 0.99996532 0.98932147 0.96137331 0.92023804\n", + " 0.87092602 0.8180019 0.76489888 0.71383104 0.95292534 0.18020339\n", + " 0.09405934 0.06358046 0.04803532 0.03861462 0.0322962 0.02776482\n", + " 0.71383104 0.65961808 0.59273329 0.51088414 0.41236963 0.296981\n", + " 0.16700975 0.02776482 0.99995592 0.99993354 0.99988921 0.99978135\n", + " 0.99939135 0.99470606 0.99763036 0.97252172 0.92531697 0.86495858\n", + " 0.79978055 0.73558862 0.36924717 0.1142084 0.06714366 0.04756397\n", + " 0.03684701 0.03008799 0.69177459 0.61711788 0.52111201 0.40034372\n", + " 0.25454379 0.08920432 0.99996121 0.99996121 0.02826205 0.02826205\n", + " 0.9973173 0.96905455 0.91664659 0.85091412 0.78139404 0.71425456\n", + " 0.99599975 0.95482931 0.88259094 0.79841512 0.71580463 0.64114939\n", + " 0.99341625 0.92852872 0.82526851 0.71824331 0.62374288 0.54523519\n", + " 0.98724084 0.87289633 0.72264131 0.59408727 0.49583709 0.42193564\n", + " 0.96591838 0.73294127 0.53284125 0.40646497 0.32525713 0.2699709\n", + " 0.78486541 0.34369459 0.20925449 0.1495441 0.11618746 0.09496005]\n", + "DEBUG:root:radec2pix: lng: [270.42176524 270.49034045 270.58554379 270.72662079 270.95724718\n", + " 271.40230304 272.6202602 289.32090211 270.42176524 278.37487059\n", + " 286.01754065 293.1193046 299.54422335 305.24693184 310.24816583\n", + " 314.60671783 289.32090211 351.88332455 355.81697528 357.18453549\n", + " 357.87852145 358.29811982 358.57917324 358.78056782 314.60671783\n", + " 318.91052218 323.86153916 329.52530495 335.93162927 343.04519816\n", + " 350.73789032 358.78056782 270.47833289 270.58513886 270.75335014\n", + " 271.05727717 271.77214072 275.46283159 273.91137001 283.48836134\n", + " 292.36007687 300.23563069 307.02864268 312.79442784 342.55577414\n", + " 354.88167257 357.01022263 357.88894543 358.36857558 358.67064356\n", + " 316.39469688 322.09565632 328.83707711 336.69003224 345.58630386\n", + " 355.24690052 270.44938101 270.44938101 358.75219462 358.75219462\n", + " 274.16251665 284.32266507 293.64661849 301.81542209 308.76235319\n", + " 314.58099285 275DEBUG:root:fitpix2pix: visCut: True\n", + ".08757932 287.34521298 298.17498348 307.196148\n", + " 314.48659385 320.3241534 276.53899869 291.90639058 304.59126569\n", + " 314.33729311 321.66504236 327.20736404 279.1393103 299.43995741\n", + " 314.06556227 323.90144592 330.60294465 335.34278839 285.09401101\n", + " 313.41621828 328.3557916 336.49369688 341.42440255 344.68693562\n", + " 309.81698293 341.12351394 348.72452469 351.99035546 353.79501012\n", + " 354.93771634]\n", + "DEBUG:root:radec2pix: xyfp: [[32.275486 31.41357429]\n", + " [32.27502267 27.02714574]\n", + " [32.27455935 22.64071719]\n", + " [32.27409601 18.25428864]\n", + " [32.27363269 13.8678601 ]\n", + " [32.27316936 9.48143155]\n", + " [32.27270604 5.095003 ]\n", + " [32.27224271 0.70857446]\n", + " [32.275486 31.41357429]\n", + " [27.88905745 31.41403761]\n", + " [23.5026289 31.41450094]\n", + " [19.11620036 31.41496427]\n", + " [14.72977181 31.41542759]\n", + " [10.34334326 31.41589092]\n", + " [ 5.95691471 31.41635424]\n", + " [ 1.57048617 31.41681757]\n", + " [32.27224271 0.70857446]\n", + " [27.88581416 0.70903778]\n", + " [23.49938562 0.70950111]\n", + " [19.11295707 0.70996444]\n", + " [14.72652852 0.71042776]\n", + " [10.34009998 0.71089109]\n", + " [ 5.95367142 0.71135442]\n", + " [ 1.56724288 0.71181774]\n", + " [ 1.57048617 31.41681757]\n", + " [ 1.57002284 27.03038902]\n", + " [ 1.56955951 22.64396047]\n", + " [ 1.56909619 18.25753194]\n", + " [ 1.56863286 13.87110338]\n", + " [ 1.56816953 9.48467484]\n", + " [ 1.56770621 5.09824629]\n", + " [ 1.56724288 0.71181774]\n", + " [32.26028399 29.50107588]\n", + " [32.25971613 24.12507591]\n", + " [32.25914828 18.74907594]\n", + " [32.25858043 13.37307597]\n", + " [32.25801258 7.997076 ]\n", + " [32.25744472 2.62107603]\n", + " [30.36298443 31.3987763 ]\n", + " [24.98698446 31.39934415]\n", + " [19.61098448 31.399912 ]\n", + " [14.23498451 31.40047985]\n", + " [ 8.85898454 31.40104771]\n", + " [ 3.48298457 31.40161556]\n", + " [30.35974431 0.72377647]\n", + " [24.98374433 0.72434432]\n", + " [19.60774436 0.72491217]\n", + " [14.23174439 0.72548003]\n", + " [ 8.85574442 0.72604788]\n", + " [ 3.47974445 0.72661573]\n", + " [ 1.58528416 29.504316 ]\n", + " [ 1.5847163 24.12831603]\n", + " [ 1.58414845 18.75231606]\n", + " [ 1.5835806 13.37631609]\n", + " [ 1.58301275 8.00031612]\n", + " [ 1.5824449 2.62431615]\n", + " [32.26048441 31.39857587]\n", + " [32.26048441 31.39857587]\n", + " [ 1.58224447 0.72681616]\n", + " [ 1.58224447 0.72681616]\n", + " [30.36278399 29.50127631]\n", + " [24.98678403 29.50184416]\n", + " [19.61078405 29.50241201]\n", + " [14.23478409 29.50297987]\n", + " [ 8.85878411 29.50354772]\n", + " [ 3.48278414 29.50411557]\n", + " [30.36221615 24.12527634]\n", + " [24.98621618 24.12584419]\n", + " [19.6102162 24.12641204]\n", + " [14.23421623 24.1269799 ]\n", + " [ 8.85821626 24.12754775]\n", + " [ 3.48221629 24.1281156 ]\n", + " [30.36164829 18.74927637]\n", + " [24.98564832 18.74984422]\n", + " [19.60964835 18.75041208]\n", + " [14.23364838 18.75097993]\n", + " [ 8.85764841 18.75154778]\n", + " [ 3.48164844 18.75211563]\n", + " [30.36108043 13.3732764 ]\n", + " [24.98508046 13.37384425]\n", + " [19.60908049 13.3744121 ]\n", + " [14.23308053 13.37497996]\n", + " [ 8.85708056 13.37554781]\n", + " [ 3.48108059 13.37611567]\n", + " [30.36051258 7.99727643]\n", + " [24.98451261 7.99784428]\n", + " [19.60851265 7.99841214]\n", + " [14.23251268 7.99897999]\n", + " [ 8.85651271 7.99954784]\n", + " [ 3.48051273 8.00011569]\n", + " [30.35994473 2.62127646]\n", + " [24.98394476 2.62184431]\n", + " [19.60794479 2.62241216]\n", + " [14.23194482 2.62298002]\n", + " [ 8.85594485 2.62354787]\n", + " [ 3.47994488 2.62411572]]\n", + "DEBUG:root:radec2pix: xyfp Shape: (96, 2)\n", + "698843 -29.52557043]\n", + " [-32.29465669 -24.14957093]\n", + " [-32.29232495 -18.77357144]\n", + " [-32.2899932 -13.39757194]\n", + " [-32.28766146 -8.02157244]\n", + " [-32.28532972 -2.64557295]\n", + " [-30.40031161 -31.42389325]\n", + " [-25.02431212 -31.42622499]\n", + " [-19.64831262 -31.42855673]\n", + " [-14.27231313 -31.43088848]\n", + " [ -8.89631363 -31.43322022]\n", + " [ -3.52031414 -31.43555196]\n", + " [-30.38700689 -0.74889614]\n", + " [-25.01100739 -0.75122788]\n", + " [-19.6350079 -0.75355962]\n", + " [-14.25900841 -0.75589136]\n", + " [ -8.88300892 -0.7582231 ]\n", + " [ -3.50700942 -0.76055484]\n", + " [ -1.62199131 -29.53887515]\n", + " [ -1.61965957 -24.16287565]\n", + " [ -1.61732783 -18.78687616]\n", + " [ -1.61499609 -13.41087666]\n", + " [ -1.61266434 -8.03487716]\n", + " [ -1.6103326 -2.65887768]\n", + " [-32.29781143 -31.42307024]\n", + " [-32.29781143 -31.42307024]\n", + " [ -1.60950959 -0.76137785]\n", + " [ -1.60950959 -0.76137785]\n", + " [-30.3994886 -29.52639343]\n", + " [-25.02348911 -29.52872517]\n", + " [-19.64748962 -29.53105692]\n", + " [-14.27149012 -29.53338866]\n", + " [ -8.89549063 -29.5357204 ]\n", + " [ -3.51949113 -29.53805214]\n", + " [-30.39715686 -24.15039394]\n", + " [-25.02115737 -24.15272568]\n", + " [-19.64515788 -24.15505742]\n", + " [-14.26915838 -24.15738916]\n", + " [ -8.89315889 -24.1597209 ]\n", + " [ -3.51715939 -24.16205264]\n", + " [-30.39482512 -18.77439444]\n", + " [-25.01882563 -18.77672618]\n", + " [-19.64282613 -18.77905793]\n", + " [-14.26682664 -18.78138967]\n", + " [ -8.89082714 -18.78372141]\n", + " [ -3.51482765 -18.78605315]\n", + " [-30.39249338 -13.39839495]\n", + " [-25.01649389 -13.40072669]\n", + " [-19.64049439 -13.40305843]\n", + " [-14.2644949 -13.40539017]\n", + " [ -8.8884954 -13.40772191]\n", + " [ -3.51249591 -13.41005365]\n", + " [-30.39016163 -8.02239545]\n", + " [-25.01416214 -8.02472719]\n", + " [-19.63816265 -8.02705893]\n", + " [-14.26216315 -8.02939068]\n", + " [ -8.88616366 -8.03172242]\n", + " [ -3.51016417 -8.03405416]\n", + " [-30.3878299 -2.64639596]\n", + " [-25.01183041 -2.6487277 ]\n", + " [-19.63583091 -2.65105944]\n", + " [-14.25983141 -2.65339118]\n", + " [ -8.88383191 -2.65572292]\n", + " [ -3.50783243 -2.65805467]]\n", + "DEBUG:root:radec2pix: xyfp Shape: (96, 2)\n", + "DEBUG:root:radec2pix: lat: [78.01259544 79.61854981 81.2561548 82.92023352 84.60572556 86.30750292\n", + " 88.02000573 89.72623162 78.01259544 77.8905989 77.5557472 77.02861409\n", + " 76.33783962 75.51523956 74.59210732 73.59715789 89.72623162 88.17123291\n", + " 86.46586111 84.76551164 83.07960166 81.41406813 79.77423864 78.16538766\n", + " 73.59715789 74.60763881 75.5491728 76.39298182 77.10737428 77.65965515\n", + " 78.01977483 78.16538766 78.70852006 80.69871958 82.73128852 84.79686317\n", + " 86.88594315 88.98689611 77.99183548 77.69708601 77.10179122 76.25561048\n", + " 75.21673598 74.0417777 89.11867119 87.04263922 84.95641064 82.89040132\n", + " 80.8558565 78.86257349 74.04815363 75.2440736 76.30818941 77.18330532\n", + " 77.80960312 78.1346569 78.0179859 78.0179859 78.1707132 78.1707132\n", + " 78.68041726 78.36422733 77.72853599 76.83064382 75.73566662 74.50486571\n", + " 80.66353948 80.27068815 79.49543516 78.42701765 77.15572991 75.75689035\n", + " 82.68520532 82.17800874 81.21001267 79.9277617 78.4547664 76.877901\n", + " 84.73149404 84.03535931 82.79194264 81.24820065 79.5578398 77.80619197\n", + " 86.77660248 85.72142555 84.09351686 82.26517071 80.37322779 78.47497463\n", + " 88.68716566 86.88752222 84.86498838 82.8264064 80.80719889 78.82380063]\n", + "8 -24.43997833]\n", + " [ 0.18452584 -19.06397881]\n", + " [ 0.18680401 -13.6879793 ]\n", + " [ 0.18908217 -8.31197977]\n", + " [ 0.19136034 -2.93598025]\n", + " [ 2.07666524 -31.71428177]\n", + " [ 7.45266476 -31.71655993]\n", + " [ 12.82866428 -31.7188381 ]\n", + " [ 18.2046638 -31.72111627]\n", + " [ 23.58066331 -31.72339443]\n", + " [ 28.95666283 -31.7256726 ]\n", + " [ 2.08966426 -1.03928452]\n", + " [ 7.46566378 -1.04156269]\n", + " [ 12.8416633 -1.04384085]\n", + " [ 18.21766282 -1.04611902]\n", + " [ 23.59366233 -1.04839718]\n", + " [ 28.96966185 -1.05067535]\n", + " [ 30.85496675 -29.82897686]\n", + " [ 30.85724492 -24.45297735]\n", + " [ 30.85952308 -19.07697783]\n", + " [ 30.86180126 -13.70097831]\n", + " [ 30.86407941 -8.32497879]\n", + " [ 30.86635759 -2.94897928]\n", + " [ 0.17916541 -31.71347767]\n", + " [ 0.17916541 -31.71347767]\n", + " [ 30.86716168 -1.05147945]\n", + " [ 30.86716168 -1.05147945]\n", + " [ 2.07746934 -29.81678193]\n", + " [ 7.45346886 -29.8190601 ]\n", + " [ 12.82946837 -29.82133827]\n", + " [ 18.20546789 -29.82361643]\n", + " [ 23.58146741 -29.82589461]\n", + " [ 28.95746693 -29.82817277]\n", + " [ 2.07974751 -24.44078242]\n", + " [ 7.45574702 -24.44306058]\n", + " [ 12.83174654 -24.44533875]\n", + " [ 18.20774606 -24.44761692]\n", + " [ 23.58374558 -24.44989508]\n", + " [ 28.95974509 -24.45217325]\n", + " [ 2.08202567 -19.0647829 ]\n", + " [ 7.45802519 -19.06706107]\n", + " [ 12.83402471 -19.06933924]\n", + " [ 18.21002422 -19.0716174 ]\n", + " [ 23.58602374 -19.07389557]\n", + " [ 28.96202325 -19.07617373]\n", + " [ 2.08430384 -13.68878339]\n", + " [ 7.46030335 -13.69106155]\n", + " [ 12.83630287 -13.69333972]\n", + " [ 18.21230239 -13.69561789]\n", + " [ 23.58830191 -13.69789605]\n", + " [ 28.96430143 -13.70017422]\n", + " [ 2.086582 -8.31278387]\n", + " [ 7.46258152 -8.31506203]\n", + " [ 12.83858103 -8.3173402 ]\n", + " [ 18.21458055 -8.31961837]\n", + " [ 23.59058007 -8.32189653]\n", + " [ 28.96657959 -8.3241747 ]\n", + " [ 2.08886017 -2.93678435]\n", + " [ 7.46485969 -2.93906252]\n", + " [ 12.8408592 -2.94134068]\n", + " [ 18.21685872 -2.94361885]\n", + " [ 23.59285824 -2.94589701]\n", + " [ 28.96885776 -2.94817518]]\n", + "253083]\n", + " [0.1579279 0.00682246 0.98742708]\n", + " [0.12927353 0.00687853 0.99158512]\n", + " [0.10011961 0.00692617 0.9949513 ]\n", + " [0.07057467 0.0069651 0.99748218]\n", + " [0.04075124 0.00699507 0.99914484]\n", + " [0.01076573 0.00701584 0.99991744]\n", + " [0.01049004 0.20993479 0.97765911]\n", + " [0.01056977 0.18250233 0.9831486 ]\n", + " [0.01063642 0.15437326 0.98795534]\n", + " [0.01068985 0.12565215 0.99201677]\n", + " [0.01072978 0.09644485 0.99528049]\n", + " [0.01075592 0.06686038 0.99770436]\n", + " [0.01076796 0.03701177 0.99925681]\n", + " [0.01076573 0.00701584 0.99991744]\n", + " [0.20696213 0.19112005 0.95949977]\n", + " [0.20902258 0.15821703 0.96502691]\n", + " [0.21067623 0.12438266 0.96961048]\n", + " [0.21192136 0.08981934 0.97315046]\n", + " [0.21275532 0.05473042 0.9755715 ]\n", + " [0.21317532 0.0193211 0.9768229 ]\n", + " [0.1948134 0.20330747 0.95953833]\n", + " [0.16197729 0.20540191 0.96518051]\n", + " [0.1281888 0.20709749 0.96988569]\n", + " [0.09365018 0.2083924 0.97355136]\n", + " [0.05856456 0.20928375 0.97609964]\n", + " [0.02313694 0.20976841 0.97747731]\n", + " [0.20149034 0.00681796 0.97946677]\n", + " [0.16749252 0.00690216 0.98584919]\n", + " [0.1325326 0.00697398 0.99115411]\n", + " [0.09680441 0.00703299 0.99527858]\n", + " [0.0605079 0.00707868 0.99814262]\n", + " [0.02385188 0.00711058 0.99969022]\n", + " [0.01062602 0.19806614 0.98013106]\n", + " [0.01071595 0.16396327 0.98640824]\n", + " [0.0107859 0.12891793 0.99159661]\n", + " [0.01083545 0.09312436 0.99559552]\n", + " [0.01086402 0.05678335 0.99832741]\n", + " [0.01087112 0.02010461 0.99973878]\n", + " [0.20613793 0.2024732 0.95734621]\n", + " [0.20613793 0.2024732 0.95734621]\n", + " [0.01086844 0.00711848 0.9999156 ]\n", + " [0.01086844 0.00711848 0.9999156 ]\n", + " [0.19558949 0.19190537 0.96172609]\n", + " [0.1626169 0.19387759 0.96745399]\n", + " [0.12869151 0.19547539 0.9722283 ]\n", + " [0.09401511 0.1966967 0.9759465 ]\n", + " [0.05879055 0.19753824 0.97853069]\n", + " [0.02322296 0.19799645 0.9799276 ]\n", + " [0.19753009 0.15886347 0.96733875]\n", + " [0.16421774 0.1604891 0.97328094]\n", + " [0.12995114 0.1618095 0.97822819]\n", + " [0.09493033 0.16282181 0.98207805]\n", + " [0.05935726 0.16352163 0.98475245]\n", + " [0.02343764 0.16390447 0.98619775]\n", + " [0.19908829 0.12488974 0.97199095]\n", + " [0.16550536 0.1261671DEBUG:root:radec2pix: curVec: [[-0.48862142 0.62116331 -0.61270323]\n", + " [-0.50729848 0.62590092 -0.59236499]\n", + " [-0.52593574 0.63022705 -0.571144 ]\n", + " [-0.54443687 0.63409703 -0.54909877]\n", + " [-0.56271083 0.63747267 -0.52629375]\n", + " [-0.58067093 0.64032219 -0.50280092]\n", + " [-0.59823467 0.64262049 -0.47870051]\n", + " [-0.61532439 0.64434955 -0.45408099]\n", + " [-0.48862142 0.62116331 -0.61270323]\n", + " [-0.50455564 0.59875879 -0.62202212]\n", + " [-0.52008242 0.57594085 -0.63071897]\n", + " [-0.53514897 0.55280619 -0.63876513]\n", + " [-0.5497096 0.52945783 -0.64613757]\n", + " [-0.56372595 0.50600523 -0.65281833]\n", + " [-0.57716705 0.48256479 -0.65879391]\n", + " [-0.59000918 0.45926068 -0.66405482]\n", + " [-0.61532439 0.64434955 -0.45408099]\n", + " [-0.63170081 0.6211444 -0.46382509]\n", + " [-0.64745906 0.59745668 -0.47311973]\n", + " [-0.66254489 0.573388 -0.48193409]\n", + " [-0.67691304 0.54904451 -0.49024368]\n", + " [-0.69052721 0.52453603 -0.49803024]\n", + " [-0.70335951 0.49997618 -0.50528133]\n", + " [-0.71538938 0.47548355 -0.51198967]\n", + " [-0.59000918 0.45926068 -0.66405482]\n", + " [-0.60877848 0.46223691 -0.64476802]\n", + " [-0.62741834 0.46505653 -0.62455475]\n", + " [-0.64582836 0.46767389 -0.60347896]\n", + " [-0.66391482 0.47005148 -0.58160873]\n", + " [-0.68159027 0.47215954 -0.55901705]\n", + " [-0.69877343 0.4739755 -0.53578253]\n", + " [-0.71538938 0.47548355 -0.51198967]\n", + " [-0.49681848 0.62320028 -0.6039808 ]\n", + " [-0.51969536 0.6287352 -0.57845378]\n", + " [-0.54241598 0.63360711 -0.55165834]\n", + " [-0.56481063 0.63774301 -0.52371061]\n", + " [-0.58671968 0.64108444 -0.49474312]\n", + " [-0.60799321 0.64358812 -0.46490708]\n", + " [-0.49567926 0.61146815 -0.61677287]\n", + " [-0.51494172 0.58371839 -0.62778012]\n", + " [-0.53353878 0.55544296 -0.63782402]\n", + " [-0.55138336 0.52682892 -0.64685985]\n", + " [-0.56840486 0.49807784 -0.65485448]\n", + " [-0.58454928 0.46940719 -0.66178474]\n", + " [-0.6224792 0.63429272 -0.45846744]\n", + " [-0.64214179 0.60551549 -0.47011159]\n", + " [-0.66082111 0.57611385 -0.48104916]\n", + " [-0.67843008 0.54628137 -0.49123242]\n", + " [-0.69490181 0.51622026 -0.50062772]\n", + " [-0.71018803 0.48614166 -0.50921435]\n", + " [-0.59815915 0.46065411 -0.65574646]\n", + " [-0.6210893 0.46420391 -0.63147669]\n", + " [-0.64372454 0.46747198 -0.60587843]\n", + " [-0.66588958 0.47038592 -0.57907526]\n", + " [-0.68742343 0.47289087 -0.55120165]\n", + " [-0.70817906 0.4749481 -0.52240475]\n", + " [-0.48874036 0.62110435 -0.61266814]\n", + " [-0.48874036 0.62110435 -0.61266814]\n", + " [-0.71529385 0.47556243 -0.51204988]\n", + " [-0.71529385 0.47556243 -0.51204988]\n", + " [-0.50378306 0.61352561 -0.60810276]\n", + " [-0.52310242 0.58565913 -0.61916657]\n", + " [-0.54173264 0.55725601 -0.62927854]\n", + " [-0.55958628 0.5285035 -0.63839427]\n", + " [-0.57659257 0.49960288 -0.64648122]\n", + " [-0.59269753 0.47077086 -0.65351697]\n", + " [-0.52672422 0.61896368 -0.58261956]\n", + " [-0.54618284 0.5908034 -0.59383133]\n", + " [-0.56488793 0.56207922 -0.60412629]\n", + " [-0.58275123 0.53297945 -0.6134606 ]\n", + " [-0.59970175 0.50370488 -0.62180319]\n", + " [-0.61568582 0.47447018 -0.62913355]\n", + " [-0.54949641 0.62375696 -0.55586055]\n", + " [-0.56906091 0.59535792 -0.56720245]\n", + " [-0.58781155 0.56637311 -0.57766693]\n", + " [-0.60565959 0.53699229 -0.58721014]\n", + " [-0.62253436 0.5074163 -0.5958017 ]\n", + " [-0.63838296 0.47785818 -0.60342254]\n", + " [-0.57192952 0.62783298 -0.52794163]\n", + " [-0.59156534 0.5992517 -0.53939582]\n", + " [-0.61033106 0.57006769 -0.55001712]\n", + " [-0.62813794 0.5404723 -0.55976103]\n", + " [-0.64491613 0.51066678 -0.56859708]\n", + " [-0.66061393 0.48086307 -0.57650667]\n", + " [-0.59386348 0.63113392 -0.49899512]\n", + " [-0.61353509 0.60242872 -0.51054318]\n", + " [-0.63228489 0.5731085 -0.52130842]\n", + " [-0.65002463 0.54336595 -0.53124517]\n", + " [-0.6666856 0.51340282 -0.54032199]\n", + " [-0.68221763 0.48343046 -0.54851991]\n", + " [-0.61514804 0.63361705 -0.46917194]\n", + " [-0.63481936 0.60484788 -0.48079458]\n", + " [-0.65352241 0.57545594 -0.49168985]\n", + " [-0.67116977 0.54563473 -0.50181061]\n", + " [-0.68769408 0.51558635 -0.51112383]\n", + " [-0.70304661 0.48552194 -0.51960938]]\n", + "DEBUG:root:optics_fp: xyfp: [[ 0.26283402 -31.55708986]\n", + " [ 0.26401791 -27.17066146]\n", + " [ 0.2652018 -22.78423305]\n", + " [ 0.26638569 -18.39780463]\n", + " [ 0.26756957 -14.01137623]\n", + " [ 0.26875346 -9.62494781]\n", + " [ 0.26993735 -5.2385194 ]\n", + " [ 0.27112123 -0.85209099]\n", + " [ 0.26283402 -31.55708986]\n", + " [ 4.64926244 -31.55827376]\n", + " [ 9.03569085 -31.55945764]\n", + " [ 13.42211926 -31.56064153]\n", + " [ 17.80854767 -31.56182542]\n", + " [ 22.19497608 -31.56300931]\n", + " [ 26.5814045 -31.56419319]\n", + " [ 30.96783291 -31.56537708]\n", + " [ 0.27112123 -0.85209099]\n", + " [ 4.65754965 -0.85327487]\n", + " [ 9.04397805 -0.85445876]\n", + " [ 13.43040647 -0.85564265]\n", + " [ 17.81683488 -0.85682653]\n", + " [ 22.20326329 -0.85801042]\n", + " [ 26.5896917 -0.85919431]\n", + " [ 30.97612012 -0.8603782 ]\n", + " [ 30.96783291 -31.56537708]\n", + " [ 30.9690168 -27.17894867]\n", + " [ 30.97020068 -22.79252025]\n", + " [ 30.97138456 -18.40609184]\n", + " [ 30.97256845 -14.01966343]\n", + " [ 30.97375234 -9.63323502]\n", + " [ 30.97493622 -5.24680661]\n", + " [ 30.97612012 -0.8603782 ]\n", + " [ 0.2783502 -29.64459399]\n", + " [ 0.27980117 -24.26859418]\n", + " [ 0.28125214 -18.89259438]\n", + " [ 0.28270311 -13.51659457]\n", + " [ 0.28415408 -8.14059477]\n", + " [ 0.28560505 -2.76459497]\n", + " [ 2.175338 -31.54260605]\n", + " [ 7.55133781 -31.54405702]\n", + " [ 12.92733761 -31.54550799]\n", + " [ 18.30333742 -31.54695896]\n", + " [ 23.67933722 -31.54840993]\n", + " [ 29.05533702 -31.5498609 ]\n", + " [ 2.18361712 -0.86760716]\n", + " [ 7.55961692 -0.86905814]\n", + " [ 12.93561673 -0.87050911]\n", + " [ 18.31161653 -0.87196007]\n", + " [ 23.68761633 -0.87341105]\n", + " [ 29.06361614 -0.87486202]\n", + " [ 30.95334909 -29.6528731 ]\n", + " [ 30.95480005 -24.27687329]\n", + " [ 30.95625103 -18.90087349]\n", + " [ 30.95770199 -13.52487368]\n", + " [ 30.95915297 -8.14887388]\n", + " [ 30.96060394 -2.77287408]\n", + " [ 0.27783807 -31.54209392]\n", + " [ 0.27783807 -31.54209392]\n", + " [ 30.96111607 -0.87537415]\n", + " [ 30.96111607 -0.87537415]\n", + " [ 2.17585013 -29.64510611]\n", + " [ 7.55184994 -29.64655709]\n", + " [ 12.92784974 -29.64800806]\n", + " [ 18.30384955 -29.64945903]\n", + " [ 23.67984935 -29.65091 ]\n", + " [ 29.05584916 -29.65236097]\n", + " [ 2.1773011 -24.26910631]\n", + " [ 7.55330091 -24.27055728]\n", + " [ 12.92930071 -24.27200825]\n", + " [ 18.30530052 -24.27345922]\n", + " [ 23.68130032 -24.27491019]\n", + " [ 29.05730013 -24.27636116]\n", + " [ 2.17875207 -18.89310651]\n", + " [ 7.55475188 -18.89455748]\n", + " [ 12.93075168 -18.89600845]\n", + " [ 18.30675149 -18.89745942]\n", + " [ 23.68275129 -18.89891039]\n", + " [ 29.0587511 -18.90036136]\n", + " [ 2.18020304 -13.51710671]\n", + " [ 7.55620285 -13.51855767]\n", + " [ 12.93220265 -13.52000864]\n", + " [ 18.30820245 -13.52145961]\n", + " [ 23.68420226 -13.52291058]\n", + " [ 29.06020207 -13.52436156]\n", + " [ 2.18165401 -8.1411069 ]\n", + " [ 7.55765382 -8.14255787]\n", + " [ 12.93365363 -8.14400884]\n", + " [ 18.30965343 -8.14545981]\n", + " [ 23.68565323 -8.14691078]\n", + " [ 29.06165303 -8.14836175]\n", + " [ 2.18310498 -2.76510709]\n", + " [ 7.55910479 -2.76655806]\n", + " [ 12.93510459 -2.76800904]\n", + " [ 18.31110439 -2.76946001]\n", + " [ 23.68710421 -2.77091098]\n", + " [ 29.063104 -2.77236195]]\n", + "DEBUG:root:make_az_asym: xyp: shape: (96, 2)\n", + "4 0.97810522]\n", + " [0.13096617 0.12720791 0.98319175]\n", + " [0.09566871 0.12800859 0.98714806]\n", + " [0.05981412 0.1285643 0.9898957 ]\n", + " [0.02360896 0.12887024 0.99138039]\n", + " [0.20026215 0.09018615 0.97558266]\n", + " [0.16647694 0.09111203 0.98182688]\n", + " [0.13173312 0.09186896 0.98701899]\n", + " [0.09622682 0.09245358 0.99105637]\n", + " [0.06015857 0.0928614 0.99386 ]\n", + " [0.02373584 0.09308815 0.99537491]\n", + " [0.20104857 0.05495583 0.97803851]\n", + " [0.16712825 0.05552612 0.98437036]\n", + " [0.13224724 0.05599434 0.98963392]\n", + " [0.09660024 0.05635799 0.99372641]\n", + " [0.06038739 0.05661388 0.99656823]\n", + " [0.02381698 0.05675899 0.99810379]\n", + " [0.20144435 0.01940412 0.97930774]\n", + " [0.16745515 0.01961547 0.98568454]\n", + " [0.13250401 0.01979108 0.99098486]\n", + " [0.09678486 0.01992994 0.99510577]\n", + " [0.06049766 0.02003078 0.99796733]\n", + " [0.02385117 0.02009239 0.99951359]]\n", + "DEBUG:root:mm_to_pix: fitpx: [[0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]]\n", + "DEBUG:root:optics_fp: xyfp shape: (96, 2)\n", + "DEBUG:root:radec2pix: curVec Shape: (96, 3)\n", + "DEBUG:root:radec2pix: ccdpx: [[-4.45000001e+01 -5.00000082e-01]\n", + " [-4.45000001e+01 2.91928571e+02]\n", + " [-4.45000003e+01 5.84357143e+02]\n", + " [-4.44999997e+01 8.76785714e+02]\n", + " [-4.45000002e+01 1.16921429e+03]\n", + " [-4.44999997e+01 1.46164286e+03]\n", + " [-4.45000001e+01 1.75407143e+03]\n", + " [-4.44999998e+01 2.04650000e+03]\n", + " [-4.45000001e+01 -5.00000082e-01]\n", + " [ 2.47928572e+02 -4.99999837e-01]\n", + " [ 5.40357143e+02 -5.00000111e-01]\n", + " [ 8.32785714e+02 -5.00000236e-01]\n", + " [ 1.12521429e+03 -4.99999746e-01]\n", + " [ 1.41764286e+03 -4.99999876e-01]\n", + " [ 1.71007143e+03 -4.99999788e-01]\n", + " [ 2.00250000e+03 -5.0000DEBUG:root:mm_to_pix: fitpx: [[0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]]\n", + "0040e-01]\n", + " [-4.44999998e+01 2.04650000e+03]\n", + " [ 2.47928572e+02 2.04650000e+03]\n", + " [ 5.40357143e+02 2.04650DEBUG:root:mm_to_pix: fitpx.shape: (96, 2)\n", + "000e+03]\n", + " [ 8.32785714e+02 2.04650000e+03]\n", + " [ 1.12521429e+03 2.04650000e+03]\n", + " [ 1.41764286e+03 2.04650000e+03]\n", + " [ 1.71007143e+03 2.04650000e+03]\n", + " [ 2.00250000e+03 2.04650000e+03]\n", + " [ 2.00250000e+03 -5.00000040e-01]\n", + " [ 2.00250000e+03 2.91928572e+02]\n", + " [ 2.00250000e+03 5.84357143e+02]\n", + " [ 2.00250000e+03 8.76785714e+02]\n", + " [ 2.00250000e+03 1.16921429e+03]\n", + " [ 2.00250000e+03 1.46164286e+03]\n", + " [ 2.00250000e+03 1.75407143e+03]\n", + " [ 2.00250000e+03 2.04650000e+03]\n", + " [-4.35000002e+01 1.27000000e+02]\n", + " [-4.35000000e+01 4.85400000e+02]\n", + " [-4.34999999e+01 8.43800000e+02]\n", + " [-4.35000002e+01 1.20220000e+03]\n", + " [-4.35000002e+01 1.56060000e+03]\n", + " [-4.34999998e+01 1.91900000e+03]\n", + " [ 8.29999997e+01 4.99999723e-01]\n", + " [ 4.41400000e+02 4.99999738e-01]\n", + " [ 7.99800000e+02 4.99999955e-01]\n", + " [ 1.15820000e+03 5.00000275e-01]\n", + " [ 1.51660000e+03 4.99999778e-01]\n", + " [ 1.87500000e+03 5.00000195e-01]\n", + " [ 8.29999999e+01 2.04550000e+03]\n", + " [ 4.41400000e+02 2.04550000e+03]\n", + " [ DEBUG:root:radec2pix: lng: [44.48637088 40.24577336 35.3986005 29.89032997 23.69955042 16.86222735\n", + " 9.49377237 1.79522173 44.48637088 48.66063412 53.44662754 58.90649312\n", + " 65.0719071 71.9184746 79.34035003 87.13941954 1.79522173 2.08115239\n", + " 2.4736322 3.04578526 3.95735654 5.6363423 9.74006464 33.09159725\n", + " 87.13941954 86.68537287 86.05851166 85.13727473 83.65177634 80.86105503\n", + " 73.77851938 33.09159725 42.72105973 37.1234454 30.55748427 22.96885005\n", + " 14.42630836 5.17884001 46.22224274 51.74114431 58.24340245 65.80116251\n", + " 74.36661193 83.70585675 1.93801443 2.35975361 3.01217367 4.15532416\n", + " 6.6725739 16.60005947 86.92909007 86.26070822 85.21749379 83.36321455\n", + " 79.16883097 61.59868241 44.48614146 44.48614146 33.22349754 33.22349754\n", + " 44.45527608 50.01139871 56.64103308 64.45360362 73.42615136 83.31035484\n", + " 38.80796323 44.3420957 51.23163704 59.75644459 70.04944098 81.86211477\n", + " 32.10039047 37.31880048 44.16600061 53.22697224 65.04995068 79.6185637\n", + " 24.24396698 28.69167771 34.89141577 43.85434751 57.06355174 75.69539259\n", + " 15.28811193 18.37837592 22.94811312 30.25991115 43.15274514 67.23630391\n", + " 5.50203766 6.68110194 8.4950185 11.63570463 18.3197087 40.11102427]\n", + "DEBUG:root:optics_fp: rtanth: [31.36436077 26.97807037 22.59183361 18.20568928 13.8197254 9.43419362\n", + " 5.05021974 0.69781153 31.36436077 31.70156673 32.63030877 34.10229142\n", + " 36.05103355 38.40402676 41.09188526 44.05335752 0.69781153 4.66402697\n", + " 9.02778296 13.40634529 17.78878395 22.17280059 26.55761376 30.94288484\n", + " 44.05335752 41.04621131 38.30621526 35.89459992 33.88155828 32.34160155\n", + " 31.34453543 30.94288484 29.45203736 24.07626653 18.70062748 13.32527965\n", + " 7.95081375 2.58274138 31.42169962 32.23771351 33.8971959 36.28460223\n", + " 39.26738572 42.72102005 2.2467047 7.54947995 12.91295338 18.28378612\n", + " 23.65696634 29.03119064 42.70202201 39.18809499 36.13521339 33.66902518\n", + " 31.92578297 31.02758019 31.34947523 31.34947523 30.92821126 30.92821126\n", + " 29.52890302 30.39577404 32.15047118 34.65840DEBUG:root:radec2pix: xyfp: [[ 0.16415906 -31.72847131]\n", + " [ 0.16601788 -27.34204313]\n", + " [ 0.1678767 -22.95561497]\n", + " [ 0.16973552 -18.56918678]\n", + " [ 0.17159434 -14.1827586 ]\n", + " [ 0.17345315 -9.79633043]\n", + " [ 0.17531197 -5.40990225]\n", + " [ 0.17717079 -1.02347407]\n", + " [ 0.16415906 -31.72847131]\n", + " [ 4.55058724 -31.73033014]\n", + " [ 8.93701541 -31.73218895]\n", + " [ 13.32344359 -31.73404778]\n", + " [ 17.70987177 -31.73590659]\n", + " [ 22.09629995 -31.73776541]\n", + " [ 26.48272812 -31.73962422]\n", + " [ 30.8691563 -31.74148305]\n", + " [ 0.17717079 -1.02347407]\n", + " [ 4.56359897 -1.02533289]\n", + " [ 8.95002714 -1.02719171]\n", + " [ 13.33645532 -1.02905053]\n", + " [ 17.7228835 -1.03090935]\n", + " [ 22.10931168 -1.03276817]\n", + " [ 26.49573986 -1.03462699]\n", + " [ 30.88216803 -1.0364858 ]\n", + " [ 30.8691563 -31.74148305]\n", + " [ 30.87101512 -27.35505487]\n", + " [ 30.87287394 -22.96862669]\n", + " [ 30.87473276 -18.58219851]\n", + " [ 30.87659158 -14.19577034]\n", + " [ 30.8784504 -9.80934216]\n", + " [ 30.88030922 -5.42291398]\n", + " [ 30.88216803 -1.0364858 ]\n", + " [ 0.17996951 -29.81597784]\n", + " [ 0.18224768 DEBUG:root:mm_to_pix: fitpx.shape: (96, 2)\n", + "DEBUG:root:make_az_asym: xyp: [[ 0.26283402 -31.55708986]\n", + " [ 0.26401791 -27.17066146]\n", + " [ 0.2652018 -22.78423305]\n", + " [ 0.26638569 -18.39780463]\n", + " [ 0.26756957 -14.01137623]\n", + " [ 0.26875346 -9.62494781]\n", + " [ 0.26993735 -5.2385194 ]\n", + " [ 0.27112123 -0.85209099]\n", + " [ 0.26283402 -31.55708986]\n", + " [ 4.64926244 -31.55827376]\n", + " [ 9.03569085 -31.55945764]\n", + " [ 13.42211926 -31.56064153]\n", + " [ 17.80854767 -31.56182542]\n", + " [ 22.19497608 -31.56300931]\n", + " [ 26.5814045 -31.56419319]\n", + " [ 30.96783291 -31.56537708]\n", + " [ 0.27112123 -0.85209099]\n", + " [ 4.65754965 -0.85327487]\n", + " [ 9.04397805 -0.85445876]\n", + " [ 13.43040647 -0.85564265]\n", + " [ 17.81683488 -0.85682653]\n", + " [ 22.20326329 -0.85801042]\n", + " [ 26.5896917 -0.85919431]\n", + " [ 30.97612012 -0.8603782 ]\n", + " [ 30.96783291 -31.56537708]\n", + " [ 30.9690168 -27.17894867]\n", + " [ 30.97020068 -22.79252025]\n", + " [ 30.97138456 -18.40609184]\n", + " [ 30.97256845 -14.01966343]\n", + " [ 30.97375234 -9.63323502]\n", + " [ 30.97493622 -5.24680661]\n", + " [ 30.97612012 -0.8603782 ]831 37.76983569 41.34874196\n", + " 24.17023416 25.22195839 27.31111317 30.22332497 33.74617895 37.70891894\n", + " 18.82145258 20.1542562 22.71439544 26.14376082 30.14716324 34.52548949\n", + " 13.49432055 15.2984853 18.54166578 22.61295734 27.14223759 31.93523187\n", + " 8.23098104 10.94056736 15.14746618 19.92481371 24.9470123 30.09171641\n", + " 3.34726194 7.94676841 13.14917661 18.45137705 23.78673027 29.13702987]\n", + "-24.43997833]\n", + " [ 0.18452584 -19.06397881]\n", + " [ 0.18680401 -13.6879793 ]\n", + " [ 0.18908217 -8.31197977]\n", + " [ 0.19136034 -2.93598025]\n", + " [ 2.07666524 -31.71428177]\n", + " [ 7.45266476 -31.71655993]\n", + " [ 12.82866428 -31.7188381 ]\n", + " [ 18.2046638 -31.72111627]\n", + " [ 23.58066331 -31.72339443]\n", + " [ 28.95666283 -31.7256726 ]\n", + " [ 2.08966426 -1.03928452]\n", + " [ 7.46566378 -1.04156269]\n", + " [ 12.8416633 -1.04384085]\n", + " [ 18.21766282 -1.04611902]\n", + " [ 23.59366233 -1.04839718]\n", + " [ 28.96966185 -1.05067535]\n", + " [ 30.85496675 -29.82897686]\n", + " [ 30.85724492 -24.45297735]\n", + " [ 30.85952308 -19.07697783]\n", + " [ 30.86180126 -13.70097831]\n", + " [ 30.86407941 -8.32497879]\n", + " [ 30.86635759 -2.94897928]\n", + " [ 0.17916541 -31.71347767]\n", + " [ 0.17916541 -31.71347767]\n", + " [ 30.86716168 -1.05147945]\n", + " [ 30.86716168 -1.05147945]\n", + " [ 2.07746934 -29.81678193]\n", + " [ 7.45346886 -29.8190601 ]\n", + " [ 12.82946837 -29.82133827]\n", + " [ 18.20546789 -29.82361643]\n", + " [ 23.58146741 -29.82589461]\n", + " [ 28.95746693 -29.82817277]\n", + " [ 2.07974751 -24.44078242]\n", + " [ 7.45574702 -24.44306058]\n", + " [ 12.83174654 -24.44533875]\n", + " [ 18.20774606 -24.44761692]\n", + " [ 23.58374558 -24.44989508]\n", + " [ 28.95974509 -24.45217325]\n", + " [ 2.08202567 -19.0647829 ]\n", + " [ 7.45802519 -19.06706107]\n", + " [ 12.83402471 -19.06933924]\n", + " [ 18.21002422 -19.0716174 ]\n", + " [ 23.58602374 -19.07389557]\n", + " [ 28.96202325 -19.07617373]\n", + " [ 2.08430384 -13.68878339]\n", + " [ 7.46030335 -13.69106155]\n", + " [ 12.83630287 -13.69333972]\n", + " [ 18.21230239 -13.69561789]\n", + " [ 23.58830191 -13.69789605]\n", + " [ 28.96430143 -13.70017422]\n", + " [ 2.086582 -8.31278387]\n", + " [ 7.46258152 -8.31506203]\n", + " [ 12.83858103 -8.3173402 ]\n", + " [ 18.21458055 -8.31961837]\n", + " [ 23.59058007 -8.32189653]\n", + " [ 28.96657959 -8.3241747 ]\n", + " [ 2.08886017 -2.93678435]\n", + " [ 7.46485969 -2.93906252]\n", + " [ 12.8408592 -2.94134068]\n", + " [ 18.21685872 -2.94361885]\n", + " [ 23.59285824 -2.94589701]\n", + " [ 28.96885776 -2.94817518]]\n", + "7.99800000e+02 2.04550000e+03]\n", + " [ 1.15820000e+03 2.04550000e+03]\n", + " [ 1.51660000e+03 2.04550000e+03]\n", + " [ 1.87500000e+03 2.04550000e+03]\n", + " [ 2.00150000e+03 1.27000000e+02]\n", + " [ 2.00150000e+03 4.85400000e+02]\n", + " [ 2.00150000e+03 8.43800000e+02]\n", + " [ 2.00150000e+03 1.20220000e+03]\n", + " [ 2.00150000e+03 1.56060000e+03]\n", + " [ 2.00150000e+03 1.91900000e+03]\n", + " [-4.34999997e+01 5.00000254e-01]\n", + " [-4.34999997e+01 5.00000254e-01]\n", + " [ 2.00150000e+03 2.04550000e+03]\n", + " [ 2.00150000e+03 2.04550000e+03]\n", + " [ 8.30000000e+01 1.27000000e+02]\n", + " [ 4.41400000e+02 1.27000000e+02]\n", + " [ 7.99800000e+02 1.27000000e+02]\n", + " [ 1.15820000e+03 1.27000000e+02]\n", + " [ 1.51660000e+03 1.27000000e+02]\n", + " [ 1.87500000e+03 1.27000000e+02]\n", + " [ 8.29999998e+01 4.85400000e+02]\n", + " [ 4.41400000e+02 4.85400000e+02]\n", + " [ 7.99800000e+02 4.85400\n", + " [ 0.2783502 -29.64459399]\n", + " [ 0.27980117 -24.26859418]\n", + " [ 0.28125214 -18.89259438]\n", + " [ 0.28270311 -13.51659457]\n", + " [ 0.28415408 -8.14059477]\n", + " [ 0.28560505 -2.76459497]\n", + " [ 2.175338 -31.54260605]\n", + " [ 7.55133781 -31.54405702]\n", + " [ 12.92733761 -31.54550799]\n", + " [ 18.30333742 -31.54695896]\n", + " [ 23.67933722 -31.54840993]\n", + " [ 29.05533702 -31.5498609 ]\n", + " [ 2.18361712 -0.86760716]\n", + " [ 7.55961692 -0.86905814]\n", + " [ 12.93561673 -0.87050911]\n", + " [ 18.31161653 -0.87196007]\n", + " [ 23.68761633 -0.87341105]\n", + " [ 29.06361614 -0.87486202]\n", + " [ 30.95334909 -29.6528731 ]\n", + " [ 30.95480005 -24.27687329]\n", + " [ 30.95625103 -18.90087349]\n", + " [ 30.95770199 -13.52487368]\n", + " [ 30.95915297 -8.14887388]\n", + " [ 30.96060394 -2.77287408]\n", + " [ 0.27783807 -31.54209392]\n", + " [ 0.27783807 -31.54209392]\n", + " [ 30.96111607 -0.87537415]\n", + " [ 30.96111607 -0.87537415]\n", + " [ 2.17585013 -29.64510611]\n", + " [ 7.55184994 -29.64655709]\n", + " [ 12.92784974 -29.64800806]\n", + " [ 18.30384955 -29.64945903]\n", + " [ 23.67984935 -29.65091 ]\n", + " [ 29.05584916 -29.65236097]\n", + " [ 2.1773011 -24.26910631]\n", + " [ 7.55330091 -24.27055728]\n", + " [ 12.92930071 -24.27200825]\n", + " [ 18.30530052 -24.27345922]\n", + " [ 23.68130032 -24.27491019]\n", + " [ 29.05730013 -24.27636116]\n", + " [ 2.17875207 -18.89310651]\n", + " [ 7.55475188 -18.89455748]\n", + " [ 12.93075168 -18.89600845]\n", + " [ 18.30675149 -18.89745942]\n", + " [ 23.68275129 -18.89891039]\n", + " [ 29.0587511 -18.90036136]\n", + " [ 2.18020304 -13.51710671]\n", + " [ 7.55620285 -13.51855767]\n", + " [ 12.93220265 -13.52000864]\n", + " [ 18.30820245 -13.52145961]\n", + " [ 23.68420226 -13.52291058]\n", + " [ 29.06020207 -13.52436156]\n", + " [ 2.18165401 -8.1411069 ]\n", + " [ 7.55765382 -8.14255787]\n", + " [ 12.93365363 -8.14400884]\n", + " [ 18.30965343 -8.14545981]\n", + " [ 23.68565323 -8.14691078]\n", + " [ 29.06165303 -8.14836175]\n", + " [ 2.18310498 -2.76510709]\n", + " [ 7.55910479 -2.76655806]\n", + " [ 12.93510459 -2.76800904]\n", + " [ 18.31110439 -2.76946001]\n", + " [ 23.68710421 -2.77091098]\n", + " [ 29.063104 -2.77236195]]\n", + "000e+02]\n", + " [ 1.15820000e+03 4.85400000e+02]\n", + " [ 1.51660000e+03 4.85400000e+02]\n", + " [ 1.87500000e+03 4.85400000e+02]\n", + " [ 8.29999999e+01 8.4380000DEBUG:root:make_az_asym: xyp: shape: (96, 2)\n", + "0e+02]\n", + " [ 4.41400000e+02 8.43800000e+02]\n", + " [ 7.99800000e+02 8.43800000e+02]\n", + " [ 1.15820000e+03 8.43800000e+02]\n", + " [ 1.51660000e+03 8.43800000e+02]\n", + " [ 1.87500000e+03 8.43800000e+02]\n", + " [ 8.30000002e+01 1.20220000e+03]\n", + " [ 4.41400000e+02 1.20220000e+03]\n", + " [ 7.99800000e+02 1.20220000e+03]\n", + " [ 1.15820000e+03 1.20220000e+03]\n", + " [ 1.51660000e+03 1.20220000e+03]\n", + " [ 1.87500000e+03 1.20220000e+03]\n", + " [ 8.30000002e+01 1.56060000e+03]\n", + " [ 4.41400000e+02 1.56060000e+03]\n", + " [ 7.99800000e+02 1.56060000e+03]\n", + " [ 1.15820000e+03 1.56060000e+03]\n", + " [ 1.51660000e+03 1.56060000e+03]\n", + " [ 1.87500000e+03 1.56060000e+03]\n", + " [ 8.29999999e+01 1.91900000e+03]\n", + " [ 4.41400000e+02 1.91900000e+03]\n", + " [ 7.99800000e+02 1.91900000e+03]\n", + " [ 1.15820000e+03 1.91900000e+03]\n", + " [ 1.51660000e+03 1.91900000e+03]\n", + " [ 1.87500000e+03 1.91900000e+03]]\n", + "DEBUG:root:radec2pix: camVec: [[ 0.00110855 0.00111823 0.00112655 0.00113349 0.001139 0.00114306\n", + " 0.00114562 0.00114666 0.00110855DEBUG:root:radec2pix: lat: [73.19833089 74.18249103 75.09922688 75.92116023 76.61853688 77.16100123\n", + " 77.52079342 77.67706772 73.19833089 74.20159367 75.14093371 75.98890558\n", + " 76.71531245 77.28881429 77.68005228 77.86611976 77.67706772 79.27473553\n", + " 80.90480881 82.56181915 84.24016258 85.93331116 87.63030205 89.26372814\n", + " 77.86611976 79.46663016 81.09832556 82.755367 84.43126132 86.11695715\n", + " 87.79091006 89.26372814 73.63774563 74.80227565 75.83862014 76.69292614\n", + " 77.3096353 77.64025349 73.64559076 74.835883 75.90321746 76.7930912\n", + " 77.44812351 77.8166633 78.36913095 80.34967761 82.37343442 84.43012843\n", + " 86.50734673 88.57380626 78.55945528 80.5426681 82.56690719 84.62047016\n", + " 86.68569475 88.69035885 73.20529527 73.20529527 89.25558432 89.25558432\n", + " 74.09681811 75.34210951 76.46528549 77.40781255 78.10603298 78.5008319\n", + " 75.3160395 76.72544415 78.02222799 79.13621749 79.98176995 80.46955109\n", + " 76.40729948 77.98832745 79.48016045 80.80422916 81.84813181 82.47175257\n", + " 77.31254652 79.06012758 80.75806605 82.3313541 83.64750757 84.48728684\n", + " 77.96997446 79.85669547 81.74302972 83.57869755 85.2518859 86.47101417\n", + " 78.32402093 80.29356392 82.30071175 84.32903186 86.34620527 88.21286949]\n", + "DEBUG:root:radec2pix: xyfp Shape: (96, 2)\n", + "DEBUG:root:radec2pix: xyfp: [[-32.31281793 -31.43806373]\n", + " [-32.31091541 -27.05163558]\n", + " [-32.30901287 -22.66520742]\n", + " [-32.30711034 -18.27877926]\n", + " [-32.3052078 -13.8923511 ]\n", + " [-32.30330527 -9.50592294]\n", + " [-32.30140274 -5.11949478]\n", + " [-32.2995002 -0.73306663]\n", + " [-32.31281793 -31.43806373]\n", + " [-27.92638978 -31.43996627]\n", + " [-23.53996162 -31.4418688 ]\n", + " [-19.15353346 -31.44377134]\n", + " [-14.7671053 -31.44567387]\n", + " [-10.38067715 -31.44757641]\n", + " [ -5.99424899 -31.44947894]\n", + " [ -1.60782083 -31.45138147]\n", + " [-32.2995002 -0.73306663]\n", + " [-27.91307204 -0.73496916]\n", + " [-23.52664389 -0.73687169]\n", + " [-19.14021573 -0.73877423]\n", + " [-14.75378757 -0.74067676]\n", + " [-10.36735941 -0.74257929]\n", + " [ -5.98093125 -0.74448183]\n", + " [ -1.59450309 -0.74638436]\n", + " [ -1.60782083 -31.45138147]\n", + " [ -1.60591829 -27.06495331]\n", + " [ -1.60401576 -22.67852516]\n", + " [ -1.60211323 -18.292097 ]\n", + " [ -1.60021069 -13.90566884]\n", + " [ -1.59830816 -9.51924068]\n", + " [ -1.59640563 -5.13281252]\n", + " [ -1.59450309 -0.74638436]\n", + " [-32.29698843 -29.52557043]\n", + " [-32.29465669 -24.14957093]\n", + " [-32.29232495 -18.77357144]\n", + " [-32.2899932 -13.39757194]\n", + " [-32.28766146 -8.02157244]\n", + " [-32.28532972 -2.64557295]\n", + " [-30.40031161 -31.42389325]\n", + " [-25.02431212 -31.42622499]\n", + " [-19.64831262 -31.42855673]\n", + " [-14.27231313 -31.43088848]\n", + " [ -8.89631363 -31.43322022]\n", + " [ -3.52031414 -31.43555196]\n", + " [-30.38700689 -0.74889614]\n", + " [-25.01100739 -0.75122788]\n", + " [-19.6350079 -0.75355962]\n", + " [-14.25900841 -0.75589136]\n", + " [ -8.88300892 -0.7582231 ]\n", + " [ -3.50700942 -0.76055484]\n", + " [ -1.62199131 -29.53887515]\n", + " [ -1.61965957 -24.16287565]\n", + " [ -1.61732783 -18.78687616]\n", + " [ -1.61499609 -13.41087666]\n", + " [ -1.61266434 -8.03487716]\n", + " [ -1.6103326 -2.65887768]\n", + " [-32.29781143 -31.42307024]\n", + " [-32.29781143 -31.42307024]\n", + " [ -1.60950959 -0.76137785]\n", + " [ -1.60950959 -0.761377DEBUG:root:radec2pix: xyfp: [[ 0.236018 -31.56946754]\n", + " [ 0.23651287 -27.18303899]\n", + " [ 0.23700774 -22.79661046]\n", + " [ 0.23750261 -18.41018192]\n", + " [ 0.23799748 -14.02375336]\n", + " [ 0.23849235 -9.63732482]\n", + " [ 0.23898721 -5.25089628]\n", + " [ 0.23948208 -0.86446773]\n", + " [ 0.236018 -31.56946754]\n", + " [ 4.62244655 -31.56996241]\n", + " [ 9.00887509 -31.57045728]\n", + " [ 13.39530363 -31.57095214]\n", + " [ 17.78173218 -31.57144701]\n", + " [ 22.16816072 -31.57194188]\n", + " [ 26.55458927 -31.57243675]\n", + " [ 30.94101781 -31.57293162]\n", + " [ 0.23948208 -0.86446773]\n", + " [ 4.62591062 -0.8649626 ]\n", + " [ 9.01233917 -0.86545747]\n", + " [ 13.39876771 -0.86595234]\n", + " [ 17.78519626 -0.86644721]\n", + " [ 22.1716248 -0.86694208]\n", + " [ 26.55805334 -0.86743695]\n", + " [ 30.94448189 -0.86793181]\n", + " [ 30.94101781 -31.57293162]\n", + " [ 30.94151268 -27.18650307]\n", + " [ 30.94200754 -22.80007453]\n", + " [ 30.94250242 -18.41364599]\n", + " [ 30.94299728 -14.02721745]\n", + " [ 30.94349215 -9.6407889 ]\n", + " [ 30.94398702 -5.25436036]\n", + " [ 30.94448189 -0.86793181]\n", + " [ 0.25123377 -29.65696924]\n", + " [ 0.25184028 -24.28096928]\n", + " [ 0.25244679 -18.90496931]\n", + " [ 0.2530533 -13.52896935]\n", + " [ 0.25365981 -8.15296938]\n", + " [ 0.25426632 -2.77696942]\n", + " [ 2.14851968 -31.5546833 ]\n", + " [ 7.52451965 -31.55528981]\n", + " [ 12.90051962 -31.55589633]\n", + " [ 18.27651958 -31.55650284]\n", + " [ 23.65251954 -31.55710934]\n", + " [ 29.02851952 -31.55771586]\n", + " [ 2.15198038 -0.8796835 ]\n", + " [ 7.52798035 -0.88029001]\n", + " [ 12.90398031 -0.88089652]\n", + " [ 18.27998027 -0.88150303]\n", + " [ 23.65598025 -0.88210954]\n", + " [ 29.03198021 -0.88271605]\n", + " [ 30.92623357 -29.66042994]\n", + " [ 30.92684009 -24.28442998]\n", + " [ 30.9274466 -18.90843001]\n", + " [ 30.9280531 -13.53243004]\n", + " [ 30.92865961 -8.15643008]\n", + " [ 30.92926612 -2.78043011]\n", + " [ 0.2510197 -31.55446923]\n", + " [ 0.2510197 -31.55446923]\n", + " [ 30.9294802 -0.88293012]\n", + " [ 30.9294802 -0.88293012]\n", + " [ 2.14873376 -29.65718332]\n", + " [ 7.52473372 -29.65778983]\n", + " [ 12.90073369 -29.65839633]\n", + " [ 18.27673365 -29.65900285]\n", + " [ 23.65273362 -29.65960936]\n", + " [ 29.02873359 -29.66021587]\n", + " [ 2.14934027 -24.28118335]\n", + " [ 7.52534023 -24.28178986]\n", + " [ 12.9013402 -24.28239637]\n", + " [ 18.27734016 -24.28300288]\n", + " [ 23.65334013 -24.28360939]\n", + " [ 29.02934009 -24.2842159 ]\n", + " [ 2.14994678 -18.90518338]\n", + " [ 7.52594674 -18.90578989]\n", + " [ 12.90194671 -18.9063964 ]\n", + " [ 18.27794667 -18.90700292]\n", + " [ 23.65394664 -18.90760943]\n", + " [ 29.0299466 -18.90821593]\n", + " [ 2.15055329 -13.52918342]\n", + " [ 7.52655325 -13.52978993]\n", + " [ 12.90255322 -13.53039644]\n", + " [ 18.27855318 -13.53100295]\n", + " [ 23.65455315 -13.53160946]\n", + " [ 29.03055312 -13.53221597]\n", + " [ 2.1511598 -8.15318346]\n", + " [ 7.52715976 -8.15378996]\n", + " [ 12.90315973 -8.15439647]\n", + " [ 18.27915969 -8.15500298]\n", + " [ 23.65515966 -8.15560949]\n", + " [ 29.03115962 -8.156216 ]\n", + " [ 2.1517663 -2.77718348]\n", + " [ 7.52776627 -2.77779 ]\n", + " [ 12.90376624 -2.77839651]\n", + " [ 18.2797662 -2.77900302]\n", + " [ 23.65576617 -2.77960953]\n", + " [ 29.03176613 -2.78021604]]\n", + "DEBUG:root:radec2pix: xyfp: [[ 0.26283402 -31.55708986]\n", + " [ 0.26401791 -27.17066146]\n", + " [ 0.2652018 -22.78423305]\n", + " [ 0.26638569 -18.39780463]\n", + " [ 0.26756957 -14.01137623]\n", + " [ 0.2687534685]\n", + " [-30.3994886 -29.52639343]\n", + " [-25.02348911 -29.52872517]\n", + " [-19.64748962 -29.53105692]\n", + " [-14.27149012 -29.53338866]\n", + " [ -8.89549063 -29.5357204 ]\n", + " [ -3.51949113 -29.53805214]\n", + " [-30.39715686 -24.15039394]\n", + " [-25.02115737 -24.15272568]\n", + " [-19.64515788 -24.15505742]\n", + " [-14.26915838 -24.15738916]\n", + " [ -8.89315889 -24.1597209 ]\n", + " [ -3.51715939 -24.16205264]\n", + " [-30.39482512 -18.77439444]\n", + " [-25.01882563 -18.77672618]\n", + " [-19.64282613 -18.77905793]\n", + " [-14.26682664 -18.78138967]\n", + " [ -8.89082714 -18.78372141]\n", + " [ -3.51482765 -18.78605315]\n", + " [-30.39249338 -13.39839495]\n", + " [-25.01649389 -13.40072669]\n", + " [-19.64049439 -13.40305843]\n", + " [-14.2644949 -13.40539017]\n", + " [ -8.8884954 -13.40772191]\n", + " [ -3.51249591 -13.41005365]\n", + " [-30.39016163 -8.02239545]\n", + " [-25.01416214 -8.02472719]\n", + " [-19.63816265 -8.02705893]\n", + " [-14.26216315 -8.02939068]\n", + " [ -8.88616366 -8.03172242]\n", + " [ -3.51016417 -8.03405416]\n", + " [-30.3878299 -2.64639596]\n", + " [-25.01183041 -2.6487277 ]\n", + " [-19.63583091 -2.65105944]\n", + " [-14.25983141 -2.65339118]\n", + " [ -8.8838DEBUG:root:radec2pix: curVec: [[ 0.87196978 0.15562269 -0.46416622]\n", + " [ 0.88484918 0.14671728 -0.44217188]\n", + " [ 0.89733273 0.13765545 -0.4193387 ]\n", + " [ 0.90933191 0.12845935 -0.39574444]\n", + " [ 0.92076585 0.11915276 -0.37147392]\n", + " [ 0.9315628 0.10976199 -0.34661658]\n", + " [ 0.94166081 0.10031639 -0.32126552]\n", + " [ 0.951008 0.09084829 -0.29551713]\n", + " [ 0.87196978 0.15562269 -0.46416622]\n", + " [ 0.87103687 0.18143448 -0.45648253]\n", + " [ 0.86950295 0.20762275 -0.4481712 ]\n", + " [ 0.86733197 0.2340748 -0.43925419]\n", + " [ 0.86449637 0.26067719 -0.42975973]\n", + " [ 0.8609782 0.28731776 -0.41972019]\n", + " [ 0.85676965 0.31388642 -0.40917121]\n", + " [ 0.85187318 0.34027558 -0.39815149]\n", + " [ 0.951008 0.09084829 -0.29551713]\n", + " [ 0.95104211 0.11710438 -0.28601654]\n", + " [ 0.95031354 0.14380389 -0.27608805]\n", + " [ 0.94878239 0.17083232 -0.26575983]\n", + " [ 0.94641861 0.19807881 -0.25506195]\n", + " [ 0.94320212 0.22543395 -0.24402725]\n", + " [ 0.93912334 0.2527877 -0.23269234]\n", + " [ 0.93418388 0.2800288 -0.22109807]\n", + " [ 0.85187318 0.34027558 -0.39815 -9.62494781]\n", + " [ 0.26993735 -5.2385194 ]\n", + " [ 0.27112123 -0.85209099]\n", + " [ 0.26283402 -31.55708986]\n", + " [ 4.64926244 -31.55827376]\n", + " [ 9.03569085 -31.55945764]\n", + " [ 13.42211926 -31.56064153]\n", + " [ 17.80854767 -31.56182542]\n", + " [ 22.19497608 -31.56300931]\n", + " [ 26.5814045 -31.56419319]\n", + " [ 30.96783291 -31.56537708]\n", + " [ 0.27112123 -0.85209099]\n", + " [ 4.65754965 -0.85327487]\n", + " [ 9.04397805 -0.85445876]\n", + " [ 13.43040647 -0.85564265]\n", + " [ 17.81683488 -0.85682653]\n", + " [ 22.20326329 -0.85801042]\n", + " [ 26.5896917 -0.85919431]\n", + " [ 30.97612012 -0.8603782 ]\n", + " [ 30.96783291 -31.56537708]\n", + " [ 30.9690168 -27.17894867]\n", + " [ 30.97020068 -22.79252025]\n", + " [ 30.97138456 -18.40609184]\n", + " [ 30.97256845 -14.01966343]\n", + " [ 30.97375234 -9.63323502]\n", + " [ 30.97493622 -5.24680661]\n", + " [ 30.97612012 -0.8603782 ]\n", + " [ 0.2783502 -29.64459399]\n", + " [ 0.27980117 -24.26859418]\n", + " [ 0.28125214 -18.89259438]\n", + " [ 0.28270311 -13.51659457]\n", + " [ 0.28415408 -8.14059477]\n", + " [ 0.28560505 -2.76459497]\n", + " [ 2.175338 -31.54260605]\n", + " [ 7.55133781 -31.54405702]DEBUG:root:optics_fp: cphi: [0.00736113 0.00855795 0.01021949 0.01268159 0.01670634 0.02447236\n", + " 0.04571623 0.33085868 0.00736113 0.14564913 0.27593163 0.39264701\n", + " 0.49309519 0.57710146 0.64609955 0.70223653 0.33085868 0.98998261\n", + " 0.99733613 0.99879292 0.99931459 0.99955889 0.99969254 0.99977352\n", + " 0.70223653 0.7536841 0.80759419 0.86185323 0.91305945 0.9565351\n", + " 0.98696237 0.99977352 0.00834839 0.01021242 0.01314806 0.01845192\n", + " 0.03092476 0.09520001 0.06821327 0.23324784 0.38042607 0.50355732\n", + " 0.60221419 0.67936994 0.95400922 0.99601258 0.99863886 0.99932131\n", + " 0.99959465 0.99973085 0.72410803 0.78903751 0.85569931 0.91837755\n", + " 0.96852369 0.99656102 0.0078431 0.0078431 0.99976286 0.99976286\n", + " 0.07258573 0.24738232 0.40109449 0.52718454 0.6260916 0.70191681\n", + " 0.08867837 0.2981282 0.47216592 0.60454556 0.70074236 0.76966876\n", + " 0.11387947 0.37309127 0.56771826 0.69888097 0.78439808 0.84063622\n", + " 0.15883549 0.49151121 0.69548104 0.80800475 0.87123904 0.90881999\n", + " 0.26040359 0.68729315 0.85132238 0 0.03013432 0.05904256 0.08772073\n", + " 0.11605724 0.14394136 0.17126266 0.19791015 0.00114666 0.03116962\n", + " 0.06106803 0.09072406 0.1200235 0.1488564 0.17711651 0.20469956\n", + " 0.19791015 0.19966308 0.20115603 0.20238925 0.20336191 0.20407235\n", + " 0.20451873 0.20469956 0.00121266 0.00122459 0.00123428 0.00124164\n", + " 0.00124661 0.00124912 0.01377154 0.04928181 0.08450359 0.11923105\n", + " 0.15326028 0.18638779 0.01424443 0.05097175 0.08739457 0.12330108\n", + " 0.15848878 0.192763 0.19861623 0.2005887 0.20217123 0.20336272\n", + " 0.2041602 0.2045604 0.00120792 0.00120792 0.20460634 0.20460634\n", + " 0.01382559 0.04947523 0.08483539 0.11969997 0.15386543 0.18712908\n", + " 0.01396162 0.04996174 0.08566901 0.1208763 0.15538076 0.1889821\n", + " 0.01407199 0.05035615 0.08634371 0.12182616 0.15660103 0.19047015\n", + " 0.01415593 0.05065593 0.08685581 0.12254563 0.15752301 0.1915915\n", + " 0.01421257 0.05085809 0.08720077 0.12302951 0.15814189 0.1923426\n", + " 0DEBUG:root:mm_to_pix: fitpx: [[0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]]\n", + "3191 -2.65572292]\n", + " [ -3.50783243 -2.65805467]]\n", + ".9170162 0.94790417 0.96449723\n", + " 0.6403374 0.94621821 0.\n", + " [ 12.92733761 -31.54550799]\n", + " [ 18.30333742 -31.54695896]\n", + " [ 23.67933722 -31.54840993]\n", + " [ 29.05533702 -31.5498609 ]\n", + " [ 2.18361712 -0.86760716]\n", + " [ 7.55961692 -0.86905814]\n", + " [ 12.93561673 -0.87050911]\n", + " [ 18.31161653 -0.87196007]\n", + " [ 23.68761633 -0.87341105]\n", + " [ 29.06361614 -0.87486202]\n", + " [ 30.95334909 -29.6528731 ]\n", + " [ 30.95480005 -24.27687329]\n", + " [ 30.95625103 -18.90087349]\n", + " [ 30.95770199 -13.52487368]\n", + " [ 30.95915297 -8.14887388]\n", + " [ 30.96060394 -2.77287408]\n", + " [ 0.27783807 -31.54209392]\n", + " [ 0.27783807 -31.54209392]\n", + " [ 30.96111607 -0.87537415]\n", + " [ 30.96111607 -0.87537415]\n", + " [ 2.17585013 -29.64510611]\n", + " [ 7.55184994 -29.64655709]\n", + " [ 12.92784974 -29.64800806]\n", + " [ 18.30384955 -29.64945903]\n", + " [ 23.67984935 -29.65091 ]\n", + " [ 29.05584916 -29.65236097]\n", + " [ 2.1773011 -24.26910631]\n", + " [ 7.55330091 -24.27055728]\n", + " [ 12.92930071 -24.27200825]\n", + " [ 18.30530052 -24.27345922]\n", + " [ 23.68130032 -24.27491019]\n", + " [ 29.05730013 -24.27636116]\n", + " [ 2.17875207 -18.89310651]\n", + " [ 7.55475188 -18.89455748]\n", + " [ 12.93075168 -18.89600845]\n", + " [ 18.30675149 -18.89745942]\n", + " [ 23.68275129 -18.89891039]\n", + " [ 29.0587511 -18.90036136]\n", + " [ 2.18020304 -13.51710671]\n", + " [ 7.55620285 -13.51855767]\n", + " [ 12.93220265 -13.52000864]\n", + " [ 18.30820245 -13.52145961]\n", + " [ 23.68420226 -13.52291058]\n", + " [ 29.06020207 -13.52436156]\n", + " [ 2.18165401 -8.1411069 ]\n", + " [ 7.55765382 -8.14255787]\n", + " [ 12.93365363 -8.14400884]\n", + " [ 18.30965343 -8.14545981]\n", + " [ 23.68565323 -8.14691078]\n", + " [ 29.06165303 -8.14836175]\n", + " [ 2.18310498 -2.76510709]\n", + " [ 7.55910479 -2.76655806]\n", + " [ 12.93510459 -2.76800904]\n", + " [ 18.31110439 -2.76946001]\n", + " [ 23.68710421 -2.77091098]\n", + " [ 29.063104 -2.77236195]]\n", + "DEBUG:root:optics_fp: rtanth: [45.26169529 42.30243097 39.60873368 37.23827886 35.25632641 33.73142753\n", + " 32.72753223 32.29326616 45.26169529 42.24571523 39.48748363 37.04461879\n", + " 34.98324901 33.37413897 32.28498264 31.76930229 32.29326616 27.90939691\n", + " 23.52648174 19.14517593 14.76691204 10.39553425 6.04599739 1.87684519\n", + " 31.76930229 27.38910685 23.01128618 18.63751379 14.DEBUG:root:radec2pix: ccdpx: [[-4.45000000e+01 -4.99999797e-01]\n", + " [-4.45000000e+01 2.91928572e+02]\n", + " [-4.45000000e+01 5.84357143e+02]\n", + " [-4.45000000e+01 8.76785714e+02]\n", + " [-4.45000000e+01 1.16921429e+03]\n", + " [-4.45000000e+01 1.46164286e+03]\n", + " [-4.45000000e+01 1.75407143e+03]\n", + " [-4.45000001e+01 2.04650000e+03]\n", + " [-4.45000000e+01 -4.99999797e-01]\n", + " [ 2.47928571e+02 -5.00000034e-01]\n", + " [ 5.40357143e+02 -4.99999972e-01]\n", + " [ 8.32785714e+02 -4.99999760e-01]\n", + " [ 1.12521429e+03 -5.00000049e-01]\n", + " [ 1.41764286e+03 -4.99999867e-01]\n", + " [ 1.71007143e+03 -5.00000044e-01]\n", + " [ 2.00250000e+03 -4.99999770e-01]\n", + " [-4.45000001e+01 2.04650000e+03]\n", + " [ 2.47928571e+02 2.04650000e+03]\n", + " [ 5.40357143e+02 2.04650000e+03]\n", + " [ 8.32785714e+02 2.04650000e+03]\n", + " [ 1.12521429e+03 2.04650000e+03]\n", + " [ 1.41764286e+03 2.04650000e+03]\n", + " [ 1.71007143e+03 2.04650000e+03]\n", + " [ 2.00250000e+03 2.04650000e+03]\n", + " [ 2.00250000e+03 -4.99999770e-01]\n", + " [ 2.00250000e+03 2.91928572e+02]\n", + " [ 2.00250000e+03 5.84357143e+02]\n", + " [ 2.00250000e+03 8.76785714e+02]\n", + " [ 2.00250000e+03 1.16921429e+03]\n", + " [ 2.00250000e+03 1.46164286e+03]\n", + " [ 2.00250000e+03 1.75407143e+03]\n", + " [ 2.00250000e+03 2.04650000e+03]\n", + " [-4.35000000e+01 1.27000000e+02]\n", + " [-4.35000000e+01 4.85400000e+02]\n", + " [-4.35000000e+01 8.43800000e+02]\n", + " [-4.35000000e+01 1.20220000e+03]\n", + " [-4.35000000e+01 1.56060000e+03]\n", + " [-4.35000000e+01 1.91900000e+03]\n", + " [ 8.30000000e+01 5.00000045e-01]\n", + " [ 4.41400000e+02 5.00000251e-01]\n", + " [ 7.99800000e+02 4.99999878e-01]\n", + " [ 1.15820000e+03 4.99999746e-01]\n", + " [ 1.51660000e+03 5.00000268e-01]\n", + " [ 1.87500000e+03 4.99999743e-01]\n", + " [ 8.29999998e+01 2.04550000e+03]\n", + " [ 4.41400000e+02 2.04550000e+03]\n", + " [ 7.99800000e+02 2.04550000e+03]\n", + " [ 1.15820000e+03 2.04550000e+03]\n", + " [ 1.51660000e+03 2.04550000e+03]\n", + " [ 1.87500000e+03 2.04550000e+03]\n", + " [ 2.00150000e+03 1.27000000e+02]\n", + " [ 2.00150000e+03 4.85400000e+02]\n", + " [ 2.00150000e+03 8.43800000e+02]\n", + " [ 2.00150000e+03 1.20220000e+03]\n", + " [ 2.00150000e+03 1.56060000e+03]\n", + " [ 2.00150000e+03 1.91900000e+03]\n", + " [-4.35000000e+01 5.00000140e-01]\n", + " [-4.35000000e+01 5.00000140e-01]\n", + " [ 2.00150000e+03 2.04550000e+03]\n", + " [ 2.00150000e+03 2.04550000e+03]\n", + " [ 8.30000000e+01 1.27000000e+02]\n", + " [ 4.41400000e+02 1.27000000e+02]\n", + " [ 7.99800000e+02 1.27000000e+02]\n", + " [ 1.15820000e+03 1.27000000e+02]\n", + " [ 1.51660000e+03 1.27000000e+02]\n", + " [ 1.87500000e+03 1.27000000e+02]\n", + " [ 8.30000000e+01 4.85400000e+02]\n", + " [ 4.41400000e+02 4.85400000e+02]\n", + " [ 7.99800000e+02 4.85400000e+02]\n", + " [ 1.15820000e+03 4.85400000e+02]\n", + " [ 1.51660000e+03 4.85400000e+02]\n", + " [ 1.87500000e+03 4.85400000e+02]\n", + " [ 8.30000000e+01 8.43800000e+02]\n", + " [ 4.41400000e+02 8.43800000e+02]\n", + " [ 7.99800000e+02 8.43800000e+02]\n", + " [ 1.15820000e+03 8.43800000e+02]\n", + " [ 1.51660000e+03 8.43800000e+02]\n", + " [ 1.87500000e+03 8.43800000e+02]\n", + " [ 8.30000000e+01 1.20220000e+03]\n", + " [ 4.41400000e+02 1.20220000e+03]\n", + " [ 7.99800000e+02 1.20220000e+03]\n", + " [ 1.15820000e+03 1.20220000e+03]\n", + " [ 1.51660000e+03 1.20220000e+03]\n", + " [ 1.87500000e+03 1.20220000e+03]\n", + " [ 8.30000001e+01 1.56060000e+03]\n", + " [ 4.41400000e+02 1.56060000e+03]\n", + " [ 7.99800000e+02 1.56060000e+03]\n", + " [ 1.15820000e+03 1.56060000e+03]\n", + " [ 1.51660000e+03 1.56060000e+03]\n", + " [ 1.87500000e+03 1.56060000e+03]\n", + " [ 8.29999998e+01 1.91900000e+03]\n", + " [ 4.41400000e+02 1.91900000e+03]\n", + " [ 7.99800000e+02 1.91900000e+03]\n", + " [ 1.15820000e+03 1.91900000e+03]\n", + " [ 1.51660000e+03 1.91900000e+03]\n", + " [ 1.87500000e+03 1.91900000e+03]]\n", + "DEBUG:root:radec2pix: xyfp Shape: (96, 2)\n", + "98069844 0.99024463 0.99414155 0.99609937]\n", + "149]\n", + " [ 0.86533485 0.33280522 -0.3747483 ]\n", + " [ 0.87836432 0.32492229 -0.35057328]\n", + " [ 0.89087083 0.31664361 -0.32570845]\n", + " [ 0.90277357 0.30798905 -0.30023763]\n", + " [ 0.91400072 0.29898225 -0.27424862]\n", + " [ 0.92448896 0.28965125 -0.24783527]\n", + " [ 0.93418388 0.2800288 -0.22109807]\n", + " [ 0.87762609 0.15184829 -0.45465871]\n", + " [ 0.89315715 0.14082654 -0.42712785]\n", + " [ 0.90800488 0.12959154 -0.39841332]\n", + " [ 0.92201708 0.11818631 -0.36866854]\n", + " [ 0.93506176 0.10665938 -0.33805809]\n", + " [ 0.94702904 0.095066 -0.30675472]\n", + " [ 0.87167923 0.16679348 -0.46082021]\n", + " [ 0.87013732 0.19869649 -0.45097755]\n", + " [ 0.86765584 0.23105331 -0.44021325]\n", + " [ 0.86418044 0.26365522 -0.42857681]\n", + " [ 0.85967812 0.29629582 -0.41612776]\n", + " [ 0.85413876 0.32877348 -0.40293296]\n", + " [ 0.95108292 0.1022665 -0.29151816]\n", + " [ 0.95061707 0.13475919 -0.2795839 ]\n", + " [ 0.94896496 0.16780361 -0.26703455]\n", + " [ 0.9460672 0.20119424 -0.25392466]\n", + " [ 0.94188688 0.2347294 -0.24031481]\n", + " [ 0.93641101 0.26820594 -0.22627414]\n", + " [ 0.85780737 0.33698 -0.38808634]\n", + " [ 0.8740275 0.32754401 -0.35887442]\n", + " [ 0.8895071 0.31750489 -0.32858447]\n", + " [ 0.90409332 0.30689795 -0.29737 ]\n", + " [ 0.91765387 0.29576676 -0.2653929 ]\n", + " [ 0.93007584 0.28416495 -0.23282872]\n", + " [ 0.87201218 0.15568003 -0.46406733]\n", + " [ 0.87201218 0.15568003 -0.46406733]\n", + " [ 0.93417048 0.27996932 -0.22122997]\n", + " [ 0.93417048 0.27996932 -0.22122997]\n", + " [ 0.87732947 0.16299697 -0.45135904]\n", + " [ 0.87587702 0.19500487 -0.44137574]\n", + " [ 0.8734635 0.22747214 -0.4304857 ]\n", + " [ 0.87003353 0.26018888 -0.41874026]\n", + " [ 0.86555374 0.29294832 -0.40619947]\n", + " [ 0.86001398 0.3255485 -0.39293018]\n", + " [ 0.8929581 0.15205915 -0.42367894]\n", + " [ 0.89174483 0.18431745 -0.41330163]\n", + " [ 0.88951258 0.21705005 -0.40206547]\n", + " [ 0.88620426 0.25004559 -0.39002464]\n", + " [ 0.88178603 0.28309719 -0.37723916]\n", + " [ 0.87624783 0.31600221 -0.36377513]\n", + " [ 0.90789378 0.14088306 -0.39481749]\n", + " [ 0.90689565 0.17331946 -0.38405813]\n", + " [ 0.90482693 0.20624538 -0.37249304]\n", + " [ 0.90162982 0.23945005 -0.36017681]\n", + " [ 0.8972702 0.27272743 -0.34716845]\n", + " [ 0.89173791 0.30587429 -0.33353325]\n", + " [ 0.92198329 0.12951056 -0.36492989]\n", + " [ 0.9211748 0.1620508 -0.35380296]\n", + " [ 0.91925177 0.19509716 -0.34192585]\n", + " [ 0.91615597 0.22844053 -0.32935264]\n", + " [ 0.91185269 0.26187622 -0.31614162]\n", + " [ 0.90633121 0.29520053 -0.30235804]\n", + " [ 0.93509425 0.11798983 -0.3341813 ]\n", + " [ 0.93444941 0.1505595 -0.32270131]\n", + " [ 0.93265419 0.18365356 -0.31052783]\n", + " [ 0.92964985 0.21706481 -0.29771466]\n", + " [ 0.92540078 0.25058999 -0.28432033]\n", + " [ 0.91989533 0.28402531 -0.27041119]\n", + " [ 0.94711654 0.10637628 -0.30274467]\n", + " [ 0.9466088 0.13890186 -0.29092621]\n", + " [ 0.94492279 0.17197175 -0.27847196]\n", + " [ 0.94199928 0.20538016 -0.26543615]\n", + " [ 0.93780166 0.23892506 -0.25187867]\n", + " [ 0.93231725 0.27240306 -0.23786786]]\n", + ".01424114 0.05096003 0.08737459 0.12327308 0.15845303 0.1927197 ]\n", + " [-0.20853555 -0.18105588 -0.15288447 -0.12412547 -0.09488471 -0.06527159\n", + " -0.0353997 -0.00538646 -0.20853555 -0.20838958 -0.2079729 -0.20728684\n", + " -0.20633313 -0.20511339 -0.20362847 -0.2018782 -0.00538646 -0.00538259\n", + " -0.00537156 -0.00535349 -0.00532854 -0.00529689 -0.00525872 -0.00521415\n", + " -0.2018782 -0.17529764 -0.14802765 -0.12017919 -0.09186258 -0.06318839\n", + " -0.03426807 -0.00521415 -0.196646 -0.16248857 -0.12739553 -0.09156092\n", + " -0.05518617 -0.01848208 -0.20841259 -0.20805164 -0.2072855 -0.20611722\n", + " -0.20454967 -0.20258404 -0.00548838 -0.00547863 -0.00545803 -0.00542687\n", + " -0.0053855 -0.0053342 -0.19038695 -0.15733098 -0.12334981 -0.08864677\n", + " -0.05342545DEBUG:root:radec2pix: curVec: [[ 0.71139727 -0.59652223 -0.37158465]\n", + " [ 0.70906605 -0.58331276 -0.39619636]\n", + " [ 0.70611527 -0.5693687 -0.42097566]\n", + " [ 0.70252584 -0.55472118 -0.44580473]\n", + " [ 0.69828582 -0.53940619 -0.47057187]\n", + " [ 0.69339075 -0.52346599 -0.49516929]\n", + " [ 0.6878443 -0.50695042 -0.51949157]\n", + " [ 0.68165873 -0.48991751 -0.54343556]\n", + " [ 0.71139727 -0.59652223 -0.37158465]\n", + " [ 0.69079757 -0.61527783 -0.37977876]\n", + " [ 0.6696765 -0.6334117 -0.38771512]\n", + " [ 0.64812465 -0.65085872 -0.39536991]\n", + " [ 0.62623962 -0.66755999 -0.40272522]\n", + " [ 0.6041257 -0.68346283 -0.40976908]\n", + " [ 0.58189321 -0.69852142 -0.41649504]\n", + " [ 0.55965682 -0.71269825 -0.42290122]\n", + " [ 0.68165873 -0.48991751 -0.54343556]\n", + " [ 0.66035912 -0.50938318 -0.55177406]\n", + " [ 0.63853546 -0.52832695 -0.55959191]\n", + " [ 0.61628258 -0.54668049 -0.56686526]\n", + " [ 0.59369965 -0.56438404 -0.57357771]\n", + " [ 0.57088987 -0.58138591 -0.57971991]\n", + " [ 0.54796174 -0.59764103 -0.58528893]\n", + " [ 0.52503095 -0.61310932 -0.59028761]\n", + " [ 0.55965682 -0.71269825 -0.422902715122 9.92354331\n", + " 5.63550123 1.87684519 43.93110404 40.47519439 37.47457234 35.04637691\n", + " 33.3160059 32.39547369 43.90748877 40.37685013 37.28961296 34.76410785\n", + " 32.92983309 31.90622779 30.38230115 25.01013154 19.64005824 14.27444739\n", + " 8.9213542 3.63648527 29.86008841 24.49335294 19.13182032 13.78156419\n", + " 8.46399587 3.33911555 45.24048285 45.24048285 1.89760875 1.89760875\n", + " 42.55711672 38.90412112 35.68971629 33.042152 31.10650288 30.02079255\n", + " 38.97957981 34.95468636 31.33776168 28.28574318 25.99834571 24.68901465\n", + " 35.85400749 31.43139051 27.35246822 23.7946523 21.02418109 19.38168349\n", + " 33.30787918 28.49275823 23.91782767 19.75070735 16.30708904 14.12638019\n", + " 31.48209857 26.3352423 21.30188242 16.48630206 12.15026205 9.01456223\n", + " 30.50627799 25.16059326 19.83130509 14.53645837 9.33484517 4.55771859]\n", + "DEBUG:root:mm_to_pix: fitpx.shape: (96, 2)\n", + "DEBUG:root:radec2pix: fitpx: [[4271.50000008 4155.50000008]\n", + " [4271.50000011 3863.07142867]\n", + " [4271.50000027 3570.64285733]\n", + " [4271.49999971 3278.21428555]\n", + " [4271.50000017 2985.78571436]\n", + " [4271.4999997 2693.35714277]\n", + " [4271.5000001 2400.92857145]\n", + " [4271.49999983 2108.5 ]\n", + " [4271.50000008 4155.50000008]\n", + " [3979.07142843 4155.49999984]\n", + " [3686.64285723 4155.50000011]\n", + " [3394.21428586 4155.50000024]\n", + " [3101.78571417 4155.49999975]\n", + " [2809.35714282 4155.49999988]\n", + " [2516.92857139 4155.49999979]\n", + " [2224.5 4155.50000004]\n", + " [4271.49999983 2108.5 ]\n", + " [3979.07142844 2108.5 ]\n", + " [3686.64285726 2108.5 ]\n", + " [3394.21428608 2108.50000001]\n", + " [3101.7857142 2108.5 ]\n", + " [2809.35714302 2108.50000001]\n", + " [2516.92857112 2108.49999996]\n", + " [2224.50000006 2108.50000003]\n", + " [2224.5 4155.50000004]\n", + " [2224.49999999 3863.07142838]\n", + " [2224.49999998 3570.64285685]\n", + " [2224.50000004 3278.21428613]\n", + " [2224.49999996 2985.78571394]\n", + " [2224.50000004 2693.35714312]\n", + " [2224.49999998 2400.92857136]\n", + " [2224.50000006 2108.50000003]\n", + " [4270.50000017 4028.00000015]\n", + " [4270.49999995 3669.59999996]\n", + " [4270.49999992 3311.19999995]\n", + " [4270.50000022 2952.80000009]\n", + " [4270.50000024 2594.40000006]\n", + " [4270.49999979 2235.99999998]\n", + " [4144.00000027 4154.50000028]\n", + " [3785.60000021 4154.50000026]\n", + " [3427.20000003 4154.50000005]\n", + " [3068.79999988 4154.49999973]\n", + " [2710.40000006 4154.50000022]\n", + " [2351.99999998 4154.4999998 ]\n", + " [4144.00000013 2109.5 ]\n", + " [3785.6 2109.5 ]\n", + " [3427.19999974 2109.49999999]\n", + " [3068.8 2109.5 ]\n", + " [2710.39999984 2109.49999999]\n", + " [2351.99999972 2109.49999994]\n", + " [2225.5 4027.99999997]\n", + " [2225.50000002 3669.60000025]\n", + " [2225.50000002 3311.20000025]\n", + " [2225.50000004 2952.80000031]\n", + " [2225.50000002 2594.40000011]\n", + " [2225.50000016 2236.00000026]\n", + " [4270.49999974 4154.49999975]\n", + " [4270.49999974 4154.49999975]\n", + " [2225.50000003 2109.50000001]\n", + " [2225.50000003 2109.50000001]\n", + " [4143.99999996 4027.99999996]\n", + " [3785.60000018 4028.00000021]\n", + " [3427.19999989 4027.99999984]\n", + " [3068.80000004 4028.00000009]\n", + " [2710.39999997 4027.9999999 ]\n", + " [2351.99999997 4027.99999976]\n", + " [4144.00000024 3669.60000019]\n", + " [3785.60000022 3669.60000021]\n", + " [3427.19999988 3669.59999985]\n", + " [3068.80000005 3669.60000008]\n", + " [2710.39999999 3669.59999998]\n", + " [2352. 3669.60000003]\n", + " [4144.00000009 3311.20000006]\n", + " [3785.60000001 3311.20000001]\n", + " [3427.20000009 3311.20000009]\n", + " [3068.80000003 3311.20000004]\n", + " [2710.40000012 3311.20000025]\n", + " [2351.99999998 3311.19999988]\n", + " [4143.99999976 2952.79999989]\n", + " [3785.59999985 2952.79999992]\n", + " [3427.19999969 2952.79999979]\n", + " [3068.79999997 2952.79999997]\n", + " [2710.40000016 2952.80000025]\n", + " [2352.00000009 2952.80000036]\n", + " [4143.99999979 2594.39999994]\n", + " [3785.60000002 2594.40000001]\n", + " [3427.20000024 2594.4000001 ]\n", + " [3068.80000002 2594.40000001]\n", + " [2710.40000021 2594.40000019]\n", + " [2351.99999998 2594.39999995]\n", + " [4144.00000008 2236.00000001]\n", + " [3785.60000005 2236.00000001]\n", + " [3427.20000007 2236.00000001]\n", + " [3068.79999979 2235.99999996]\n", + " [2710.39999971 2235.99999991]\n", + " [2351.99999979 2235.99999984]]\n", + "DEBUG:root:radec2pix: curVec Shape: (96, 3)\n", + "DEBUG:root:mm_to_pix: fitpx: [[0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]DEBUG:root:optics_fp: sphi: [-0.99997291 -0.99996338 -0.99994778 -0.99991959 -0.99986044 -0.99970051\n", + " -0.99895447 -0.94368031 -0.99997291 -0.98933631 -0.96117727 -0.91968926\n", + " -0.86997536 -0.81667246 -0.76325315 -0.71194371 -0.94368031 -0.14118936\n", + " -0.07294272 -0.04911935 -0.03701833 -0.02969904 -0.02479556 -0.0212815\n", + " -0.71194371 -0.65723685 -0.5897386 -0.50715777 -0.40782648 -0.29161723\n", + " -0.16095117 -0.0212815 -0.99996515 -0.99994785 -0.99991356 -0.99982975\n", + " -0.99952172 -0.99545817 -0.99767076 -0.97241732 -0.92481134 -0.86396182\n", + " -0.79833456 -0.73379594 -0.29977727 -0.0892129 -0.05215778 -0.03683652\n", + " -0.02846988 -0.02319957 -0.68968657 -0.61434502 -0.51747338 -0.39570528\n", + " -0.24892141 -0.08286212 -0.99996924 -0.99996924 -0.02177659 -0.02177659\n", + " -0.99736218 -0.96891795 -0.91603668 -0.84975082 -0.77974951 -0.71225894\n", + " -0.99606031 -0.95452584 -0.88150969 -0.79657056 -0.71341443 -0.63844342\n", + " -0.99349457 -0.92779465 -0.82322292 -0.71523799 -0.62025773 -0.54160017\n", + " -0.98730506 -0.87087125122]\n", + " [ 0.55589854 -0.70084931 -0.44697547]\n", + " [ 0.55175775 -0.68814855 -0.47118463]\n", + " [ 0.54722001 -0.6746239 -0.4954118 ]\n", + " [ 0.54227658 -0.66031159 -0.51954279]\n", + " [ 0.53692565 -0.64525459 -0.5434679 ]\n", + " [ 0.53117277 -0.62950207 -0.56708256]\n", + " [ 0.52503095 -0.61310932 -0.59028761]\n", + " [ 0.71038578 -0.59092036 -0.38231554]\n", + " [ 0.70711408 -0.57423375 -0.4126079 ]\n", + " [ 0.70289215 -0.55647406 -0.44303413]\n", + " [ 0.69769504 -0.53770552 -0.47338611]\n", + " [ 0.69151465 -0.51800605 -0.50346521]\n", + " [ 0.68436127 -0.49747084 -0.53307824]\n", + " [ 0.70247811 -0.60472814 -0.37527108]\n", + " [ 0.67686865 -0.62730616 -0.38514389]\n", + " [ 0.65056527 -0.64888497 -0.39460504]\n", + " [ 0.62374476 -0.66935351 -0.40361907]\n", + " [ 0.59659903 -0.68861492 -0.41216391]\n", + " [ 0.56933316 -0.70658813 -0.42022967]\n", + " [ 0.67246453 -0.49852311 -0.54705225]\n", + " [ 0.64599562 -0.52203817 -0.55692531]\n", + " [ 0.61883322 -0.54470039 -0.56599198]\n", + " [ 0.59115815 -0.56639616 -0.57421897]\n", + " [ 0.56316058 -0.58703016 -0.58158899]\n", + " [ 0.53504315 -0.60652153 -0.58809903]\n", + " [ 0.55814038 -0.707DEBUG:root:radec2pix: fitpx: [[ 2.13550000e+03 -4.99999797e-01]\n", + " [ 2.13550000e+03 2.91928572e+02]\n", + " [ 2.13550000e+03 5.84357143e+02]\n", + " [ 2.13550000e+03 8.76785714e+02]\n", + " [ 2.13550000e+03 1.16921429e+03]\n", + " [ 2.13550000e+03 1.46164286e+03]\n", + " [ 2.13550000e+03 1.75407143e+03]\n", + " [ 2.13550000e+03 2.04650000e+03]\n", + " [ 2.13550000e+03 -4.99999797e-01]\n", + " [ 2.42792857e+03 -5.00000034e-01]\n", + " [ 2.72035714e+03 -4.99999972e-01]\n", + " [ 3.01278571e+03 -4.99999760e-01]\n", + " [ 3.30521429e+03 -5.00000049e-01]\n", + " [ 3.59764286e+03 -4.99999867e-01]\n", + " [ 3.89007143e+03 -5.00000044e-01]\n", + " [ 4.18250000e+03 -4.99999770e-01]\n", + " [ 2.13550000e+03 2.04650000e+03]\n", + " [ 2.42792857e+03 2.04650000e+03]\n", + " [ 2.72035714e+03 2.04650000e+03]\n", + " [ 3.01278571e+03 2.04650000e+03]\n", + " [ 3.30521429e+03 2.04650000e+03]\n", + " [ 3.59764286e+03 2.04650000e+03]\n", + " [ 3.89007143e+03 2.04650000e+03]\n", + " [ 4.18250000e+03 2.04650000e+03]\n", + " [ 4.18250000e+03 -4.99999770e-01]\n", + " [ 4.18250000e+03 2.91928572e+02]\n", + " [ 4.18250000e+03 5.84357143e+02]\n", + " [ 4.18250000e+03 8.76785 -0.01789151 -0.20844284 -0.20844284 -0.00531377 -0.00531377\n", + " -0.19661746 -0.19627694 -0.19555447 -0.19445357 -0.19297773 -0.19112874\n", + " -0.1624649 -0.16218264 -0.16158454 -0.16067502 -0.15945889 -0.15793949\n", + " -0.12737685 -0.12715419 -0.12668294 -0.12596768 -0.12501365 -0.12382499\n", + " -0.0915474 -0.09138626 -0.09104555 -0.09052922 -0.08984197 -0.08898771\n", + " -0.05517797 -0.05508029 -0.05487388 -0.05456144 -0.05414617 -0.05363087\n", + " -0.01847933 -0.01844651 -0.01837718 -0.0182723 -0.018133 -0.01796031]\n", + " [ 0.97801416 0.98347217 0.98824343 0.99226588 0.99548762 0.99786688\n", + " 0.99937258 0.99998484 0.97801416 0.97758156 0.97635099 0.97433939\n", + " 0.97157468 0.96809575 0.96395256 0.95920632 0.99998484 0.99949962\n", + " 0.99811915 0.99586168 0.99275675 0.98884464 0.98417584 0.97881096\n", + " 0.95920632 0.96405674 0.9683099 0.97190306 0.97478469 0.97691438\n", + " 0.97826264 0.97881096 0.9804738 0.98670967 0.99185123 0.9957987\n", + " 0.9984753 0.99982841 0.97794404 0.97687554 DEBUG:root:radec2pix: ccdpx: [[-4.44999997e+01 -4.99999751e-01]\n", + " [-4.45000003e+01 2.91928571e+02]\n", + " [-4.45000000e+01 5.84357143e+02]\n", + " [-4.44999999e+01 8.76785714e+02]\n", + " [-4.44999999e+01 1.16921429e+03]\n", + " [-4.44999999e+01 1.46164286e+03]\n", + " [-4.45000001e+01 1.75407143e+03]\n", + " [-4.45000000e+01 2.04650000e+03]\n", + " [-4.44999997e+01 -4.99999751e-01]\n", + " [ 2.47928571e+02 -5.00000271e-01]\n", + " [ 5.40357143e+02 -4.99999959e-01]\n", + " [ 8.32785714e+02 -5.00000035e-01]\n", + " [ 1.12521429e+03 -5.00000130e-01]\n", + " [ 1.41764286e+03 -5.00000295e-01]\n", + " [ 1.71007143e+03 -5.00000131e-01]\n", + " [ 2.00250000e+03 -5.00000000e-01]\n", + " [-4.45000000e+01 2.04650000e+03]\n", + " [ 2.47928571e+02 2.04650000e+03]\n", + " [ 5.40357143e+02 2.04650000e+03]\n", + " [ 8.32785714e+02 2.04650000e+03]\n", + " [ 1.12521429e+03 2.04650000e+03]\n", + " [ 1.41764286e+03 2.04650000e+03]\n", + " [ 1.71007143e+03 2.04650000e+03]\n", + " [ 2.00250000e+03 2.04650000e+03]\n", + " [ 2.00250000e+03 -5.00000000e-01]\n", + " [ 2.00250000e+03 2.91928571e+02]\n", + " [ 2.00250000e+03 5.84357143e+02]\n", + " [ 2.00250000e+03 8.767850.97462396 0.97123615\n", + " 0.9667837 0.96136325 0.99988348 0.99868507 0.99615882 0.99235447\n", + " 0.98734609 0.98123085 0.96140751 0.96695974 0.97155114 0.97508223\n", + " 0.97747856 0.97869042 0.97803381 0.97803381 0.97882992 0.97882992\n", + " 0.9803828 0.97929953 0.97701659 0.97358088 0.96906399 0.96356241\n", + " 0.98661554 0.98549511 0.98313339 0.97957769 0.97489983 0.969196\n", + " 0.99175456 0.99060389 0.98817822 0.98452554 0.97971818 0.9738524\n", + " 0.9957001 0.99452628 0.9920518 0.98832537 0.98342001 0.97743229\n", + " 0.99837538 0.99718585 0.99467828 0.99090201 0.9859307 0.97986124\n", + " 0.99972782 0.99853032 0.996006 0.99220455 0.9872 0.98108947]]\n", + "5909 -0.43335255]\n", + " [ 0.55327992 -0.69249211 -0.46296438]\n", + " [ 0.54782981 -0.6761406 -0.49266255]\n", + " [ 0.54177153 -0.65859975 -0.52223556]\n", + " [ 0.53510175 -0.63994862 -0.55148153]\n", + " [ 0.52783384 -0.62028026 -0.58021016]\n", + " [ 0.71132087 -0.59654346 -0.37169682]\n", + " [ 0.71132087 -0.59654346 -0.37169682]\n", + " [ 0.52513087 -0.61311489 -0.59019293]\n", + " [ 0.52513087 -0.61311489 -0.59019293]\n", + " [ 0.70150816 -0.59913776 -0.38590186]\n", + " [ 0.67579587 -0.62181194 -0.39579016]\n", + " [ 0.64938404 -0.64349186 -0.40523893]\n", + " [ 0.62244977 -0.66406645 -0.41421256]\n", + " [ 0.59518532 -0.68343857 -0.42268918]\n", + " [ 0.5677968 -0.70152605 -0.43065995]\n", + " [ 0.69814895 -0.58253372 -0.41622411]\n", + " [ 0.67217997 -0.60545324 -0.42614606]\n", + " [ 0.64549969 -0.6273949 -0.43555228]\n", + " [ 0.61828606 -0.64824792 -0.44440633]\n", + " [ 0.59073159 -0.66791559 -0.45268636]\n", + " [ 0.56304357 -0.68631442 -0.46038512]\n", + " [ 0.69385627 -0.56484157 -0.4466738 ]\n", + " [ 0.66768205 -0.58796652 -0.45661368]\n", + " [ 0.64079104 -0.61013367 -0.46596539]\n", + " [ 0.61336219 -0.63123249 -0.47469187]\n", + " [ 0.58558766 -0.65116749 -0.48277116]\n", + " [ 0.55767415 -0.66985576 -0.4901967 ]\n", + " [ 0.68860553 -0.54612525 -0.47704259]\n", + " [ 0.66227861 -0.56941557 -0.48698352]\n", + " [ 0.63523547 -0.59177265 -0.49626709]\n", + " [ 0.60765612 -0.61308568 -0.50485642]\n", + " [ 0.57973214 -0.63326021 -0.51273009]\n", + " [ 0.5516689 -0.65221461 -0.51988223]\n", + " [ 0.6DEBUG:root:radec2pix: camVec: [[-0.20605921 -0.20787315 -0.20942436 -0.21070676 -0.21171698 -0.21245291\n", + " -0.21291301 -0.2130962 -0.20605921 -0.17962884 -0.15250018 -0.12477652\n", + " -0.0965659 -0.06797863 -0.03912632 -0.01012153 -0.2130962 -0.18573503\n", + " -0.15766321 -0.1289874 -0.09981355 -0.07024926 -0.04040619 -0.01040084\n", + " -0.01012153 -0.01020027 -0.01026637 -0.01031977 -0.01036027 -0.01038751\n", + " -0.01040113 -0.01040084 -0.20679239 -0.20883895 -0.21048459 -0.2117221\n", + " -0.21254753 -0.21295821 -0.1946339 -0.16175754 -0.12793421 -0.09336102\n", + " -0.05824097 -0.02277993 -0.20126076 -0.16723544 -0.13224882 -0.09649617\n", + " -0.06017591 -0.02349561 -0.01025713 -0.01034611 -0.01041588 -0.01046611\n", + " -0.01049618 -0.01050541 -0.20597676 -0.20597676 -0.01050361 -0.01050361\n", + " -0.19540403 -0.16239488 -0.12843557 -0.09372478 -0.05846599 -0.02286533\n", + " -0.19733483 -0.16399068 -0.1296908 -0.094636 -0.05902974 -0.02307851\n", + " -0.19888634 -0.16527244 -0.13070023 -0.09537003 -0.05948408 -0.02324907\n", + " -0.20005292 -0.16623701 -0.13146138 -0.09592455 -0.05982716 -0.0233762\n", + " -0.20083104 -0.16688094 -0.13197015 -0.09629527 -0.0600556 -0.02345845\n", + " -0.20121796 -0.16720058 -0.13222195 -0.09647752 -0.06016577 -0.02349426]\n", + " [-0.20169937 -0.17519485 -0.1480085 -0.12024402 -0.09200964 -0.06341581\n", + " -0.03457423 -0.00559748 -0.20169937 -0.20353396 -0.20511207 -0.20642749\n", + " -0.20747679 -0.20825778 -0.20876879 -0.20900854 -0.00559748 -0.00565735\n", + " -0.00571045 -0.00575671 -0.00579596 -0.00582797 -0.00585246 -0.00586919\n", + " -0.20900854 -0.18153487 -0.15336672 -0.12461057 -0.09537244 -0.06576046\n", + " -0.03588698 -0.00586919 -0.1902398 -0.15728353 -0.12340547 -0.08880315\n", + " -0.0536798 -0.01824146 -0.20244048 -0.20451655 -0.20620095 -0.20748634\n", + " -0.2083686 -0.2088448 -0.00572401 -0.00579384 -0.00585326 -0.00590199\n", + " -0.0059396 -0.00596558 -0.19712185 -0.16296958 -0.1278801 -0.09204872\n", + " -0.05567473 -0.01896706 -0.2016167 -0.2016167 -0.0059719 -0.0059719\n", + " -0.19101701 -0.19297429 -0.19456158 -0.19577312 -0.19660523 -0.1970549\n", + " -0.15792497 -0.15953875 -0.16084786 -0.1618491 -0.16253892 -0.16291334\n", + " -0.12390793 -0.1251726 -0.12620079 -0.12699006 -0.12753631 -0.1278347\n", + " -0.089165 -0.090077 -0.09082101 -0.09139481 -0.09179425 -0.09201449\n", + " -0.05389991 -0.05445583 -0.05491134 -0.05526476 -0.0555129 -0.05565213\n", + " -0.018319 -0.01851594 -0.01867909 -0.01880776 -0.01890068 -0.01895646]\n", + " [ 0.95752648 0.96233857 0.96655829 0.97012578 0.97299031 0.97511138\n", + " 0.97645925 0.97701519 0.95752648 0.96244865 0.96678474 0.97047334\n", + " 0.97346207 0.97570877 0.97718203 0.97786143 0.97701519 0.98258358\n", + " 0.98747643 0.99162952 0.99498928 0.99751244 0.9991662 0.99992869\n", + " 0.97786143 0.98333161 0.98811601 0.99215206 0.99538774 0.99778137\n", + " 0.99930173 0.99992869 0.95971127 0.96521924 0.96977695 0.97328709\n", + " 0.97567516 0.97689101 0.95975804 0.96540534 0.97011031 0.97377263\n", + " 0.97631476 0.97768345 0.97952098 0.98589996 0.99119927 0.99531586\n", + " 0.99817012 0.99970614 0.98032534 0.98657685 0.99173494 0.9956995\n", + " 0.99839379 0.99976492 0.95756163 0.95756163 0.999927 0.999927\n", + " 0.96194063 0.96767186 0.97244542 0.97616011 0.97873802 0.98012578\n", + " 0.96753226 0.97347545 0.97842131 0.98226722 0.98493482 0.98637043\n", + " 0.97215793 0.97827237 0.98335691 0.9873085 0.99004855 0.99152295\n", + " 0.97571944 0.98196303 0.98715219 0.99118387 0.99397914 0.99548324\n", + " 0.97814196 0.9844721 0.98973159 0.9938174 0.99665021 0.9981746\n", + " 0.97937518 0.98574902 0.99104412 0.99515745 0.99800944 0.99954423]]\n", + "DEBUG:root:radec2pix: camVec Shape: (3, 96)\n", + "DEBUG:root:radec2pix: xyfp: [[ 0.16415906 -31.72847131]\n", + " [ 0.16601788 -27.34204313]\n", + " [ 0.1678767 -22.95561497]\n", + " [ 0.16973552 -18.56918678]\n", + " [ 0.17159434 -14.1827586 ]\n", + " [ 0.17345315 -9.79633043]\n", + " [ 0.17531197 -5.40990225]\n", + " [ 0.17717079 -1.02347407]\n", + " [ 0.16415906 -31.72847131]\n", + " [ 4.55058724 -31.73033014]\n", + " [ 8.93701541 -31.73218895]\n", + " [ 13.32344359 -31.73404778]\n", + " [ 17.70987177 -31.73590659]\n", + " [ 22.09629995 -31.73776541]\n", + " [ 26.48272812 -31.73962422]\n", + " [ 30.8691563 -31.74148305]\n", + " [ 0.17717079 -1.02347407]\n", + " [ 4.56359897 -1.02533289]\n", + " [ 8.95002714 -1.02719171]\n", + " [ 13.33645532 -1.02905053]\n", + " [ 17.7228835 -1.03090935]\n", + " [ 22.10931168 -1.03276817]\n", + " [ 26.49573986 -1.03462699]\n", + " [ 30.88216803 -1.0364858 ]\n", + " [ 30.8691563 -31.74148305]\n", + " [ 30.87101512 -27.35505487]\n", + " [ 30.87287394 -22.96862669]\n", + " [ 30.87473276 -18.58219851]\n", + " [ 30.87659158 -14.19577034]\n", + " [ 30.8784504 -9.80934216]\n", + " [ 30.88030922 -5.42291398]\n", + " [ 30.88216803 -1.0364858 ]\n", + " [ 0.17996951 -29.81597784]\n", + " [ 0.18224768 -24.43997833]\n", + " [ 0.18452584 -19.06397881]\n", + " [ 0.18680401 -13.6879793 ]\n", + " [ 0.18908217 -8.31197977]\n", + " [ 0.19136034 -2.93598025]\n", + " [ 2.07666524 -31.71428177]\n", + " [ 7.45266476 -31.71655993]\n", + " [ 12.82866428 -31.7188381 ]\n", + " [ 18.2046638 -31.72111627]\n", + " [ 23.58066331 -31.72339443]\n", + " [ 28.95666283 -31.7256726 ]\n", + " [ 2.08966426 -1.03928452]\n", + " [ 7.46566378 -1.04156269]\n", + " [ 12.8416633 -714e+02]\n", + " [ 2.00250000e+03 1.16921429e+03]\n", + " [ 2.00250000e+03 1.46164286e+03]\n", + " [ 2.00250000e+03 1.75407143e+03]\n", + " [ 2.00250000e+03 2.04650000e+03]\n", + " [-4.35000003e+01 1.27000000e+02]\n", + " [-4.35000001e+01 4.85400000e+02]\n", + " [-4.35000003e+01 8.43800000e+02]\n", + " [-4.34999997e+01 1.20220000e+03]\n", + " [-4.34999997e+01 1.56060000e+03]\n", + " [-4.35000002e+01 1.91900000e+03]\n", + " [ 8.29999999e+01 4.99999945e-01]\n", + " [ 4.41400000e+02 4.99999943e-01]\n", + " [ 7.99800000e+02 5.00000147e-01]\n", + " [ 1.15820000e+03 4.99999799e-01]\n", + " [ 1.51660000e+03 5.00000078e-01]\n", + " [ 1.87500000e+03 4.99999710e-01]\n", + " [ 8.30000000e+01 2.04550000e+03]\n", + " [ 4.41400000e+02 2.04550000e+03]\n", + " [ 7.99800000e+02 2.04550000e+03]\n", + " [ 1.15820000e+03 2.04550000e+03]\n", + " [ 1.51660000e+03 2.04550000e+03]\n", + " [ 1.87500000e+03 2.04550000e+03]\n", + " [ 2.00150000e+03 1.27000000e+02]\n", + " [ 2.00150000e+03 4.85400000e+02]\n", + " [ 2.00150000e+03 8.43800000e+02]\n", + " [ 2.00150000e+03 1.20220000e+03]\n", + " [ 2.00150000e+03 1.56060000e+03]\n", + " [ 2.00150000e+03 1.91900000e+03]\n", + " [-4.349999DEBUG:root:fitpix2pix: ccdpx: shape: (96, 2)\n", + " -0.71854445 -0.58917597 -0.49085898 -0.41718848\n", + " -0.96549986 -0.72638015 -0.52464293 -0.39884995 -0.31855562 -0.26409298\n", + " -0.76809376 -0.32352912 -0.19552639 -0.13933979 -0.10808594 -0.08823861]\n", + "\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [714e+02]\n", + " [ 4.18250000e+03 1.16921429e+03]\n", + " [ 4.18250000e+03 1.46164286e+03]\n", + " [ 4.18250000e+03 1.75407143e+03]\n", + " [ 4.18250000e+03 2.04650000e+03]\n", + " [ 2.13650000e+03 1.27000000e+02]\n", + " [ 2.13650000e+03 4.85400000e+02]\n", + " [ 2.13650000e+03 8.43800000e+02]\n", + " [ 2.13650000e+03 1.20220000e+03]\n", + " [ 2.13650000e+03 1.56060000e+03]\n", + " [ 2.13650000e+03 1.91900000e+03]\n", + " [ 2.26300000e+03 5.00000045e-01]\n", + " [ 2.62140000e+03 5.00000251e-01]\n", + " [ 2.97980000e+03 4.99999878e-01]\n", + " [ 3.33820000e+03 4.99999746e-01]\n", + " [ 3.69660000e+03 5.00000268e-01]\n", + " [ 4.05500000e+03 4.99999743e-01]\n", + " [ 2.26300000e+03 2.04550000e+03]\n", + " [ 2.62140000e+03 2.04550000e+03]\n", + " [ 2.97980000e+03 2.04550000e+03]\n", + " [ 3.33820000e+03 2.04550000e+03]\n", + " [ 3.69660000e+03 2.04550000e+03]\n", + " [ 4.05500000e+03 2.04550000e+03]\n", + " [ 4.18150000e+03 1.27000000e+02]\n", + " [ 4.18150000e+03 4.85400000e+02]\n", + " [ 4.18150000e+03 8.43800000e+02]\n", + " [ 4.18150000e+03 1.20220000e+03]\n", + " [ 4.18150000e+03 1.56060000e+03]\n", + " [ 4.18150000e+03 1.91900000e+03]\n", + " [ 2.1365008238925 -0.5264622 -0.5071316 ]\n", + " [ 0.65596395 -0.5498769 -0.51705579]\n", + " [ 0.62882865 -0.57238841 -0.52625663]\n", + " [ 0.60116412 -0.59388501 -0.53469832]\n", + " [ 0.57316135 -0.61427252 -0.54236089]\n", + " [ 0.54502424 -0.63347023 -0.54923951]\n", + " [ 0.67521839 -0.50594697 -0.53674742]\n", + " [ 0.6487508 -0.52944357 -0.54663691]\n", + " [ 0.62158457 -0.55207311 -0.55574086]\n", + " [ 0.59390064 -0.57372252 -0.56402527]\n", + " [ 0.56588939 -0.59429691 -0.57147212]\n", + " [ 0.53775365 -0.61371564 -0.57807795]]\n", + "DEBUG:root:optics_fp: cphi: [0.71341716 0.76328013 0.81514194 0.86698087 0.91566575 0.95700502\n", + " 0.98630354 0.99950918 0.71341716 0.66051768 0.59557134 0.51643629\n", + " 0.4214805 0.31036993 0.18497457 0.04990581 0.99950918 0.99934039\n", + " 0.99906819 0.99858739 0.99761569 0.9951653 0.98558541 0.8377988\n", + " 0.04990581 0.05781889 0.0687377 0.08476872 0.11057085 0.15882919\n", + " 0.27935111 0.8377988 0.73466528 0.79733703 0.86111952 0.92071715\n", + " 0.96846887 0.9959178 0.69186293 0.61921532 0.52631184 0.40990453\n", + " 0.26948104 0.10963271 0.999428 0.999152 0.99861839 0.99737128\n", + " 0.99322638 0.95832228 0.05357183 0.06521663 0.08337359 0.1155749\n", + " 0.18791565 0.47564444 0.71341996 0.71341996 0.83653968 0.83653968\n", + " 0.71379735 0.6426352 0.54988271 0.43124184 0.28525093 0.11649124\n", + " 0.77925087 0.71517941 0.62617339 0.50367681 0.34120915 0.14155583\n", + " 0.8471183 0.79527459 0.71732418 0.59864658 0.42182798 0.18020046\n", + " 0.91180529 0.87721591 0.82023759 0.72110338 0.54370846 0.24707693\n", + " 0.96461215 0.94899507 0.92085832 0.86374835 0.72953296 0.3869314\n", + " 0.99539279 0.99320908 0.98902871 0.97944976 0.94931741 0.76479745]\n", + "1.04384085]\n", + " [ 18.21766282 -1.04611902]\n", + " [ 23.59366233 -1.04839718]\n", + " [ 28.96966185 -1.05067535]\n", + " [ 30.85496675 -29.82897686]\n", + " [ 30.85724492 -24.45297735]\n", + " [ 30.85952308 -19.07697783]\n", + " [ 30.86180126 -13.70097831]\n", + " [ 30.86407941 -8.32497879]\n", + " [ 30.86635759 -2.94897928]\n", + " [ 0.17916541 -31.71347767]\n", + " [ 0.17916541 -31.71347767]\n", + " [ 30.86716168 -1.05147945]\n", + " [ 30.86716168 -1.05147945]\n", + " [ 2.07746934 -29.81678193]\n", + " [ 7.45346886 -29.81DEBUG:root:cartToSphere: vec: [[ 0.00110855 -0.20853555 0.97801416]\n", + " [ 0.00111823 -0.18105588 0.98347217]\n", + " [ 0.00112655 -0.15288447 0.98824343]\n", + " [ 0.00113349 -0.12412547 0.99226588]\n", + " [ 0.001139 -0.09488471 0.99548762]\n", + " [ 0.00114306 -0.06527159 0.99786688]\n", + " [ 0.00114562 -0.0353997 0.99937258]\n", + " [ 0.00114666 -0.00538646 0.99998484]\n", + " [ 0.00110855 -0.20853555 0.97801416]\n", + " [ 0.03013432 -0.20838958 0.97758156]\n", + " [ 0.05904256 -0.2079729 0.97635099]\n", + " [ 0.08772073 -0.20728684 0.97433939]\n", + " [ 0.11605724 -0.20633313 0.97157468]\n", + " [ 0.14394136 -0.20511339 0.96809575]\n", + " [ 0.17126266 -0.20362847 0.96395256]\n", + " [ 0.19791015 -0.2018782 0.95920632]\n", + " [ 0.00114666 -0.00538646 0.99998484]\n", + " [ 0.03116962 -0.00538259 0.99949962]\n", + " [ 0.06106803 -0.00537156 0.99811915]\n", + " [ 0.09072406 -0.00535349 0.99586168]\n", + " [ 0.1200235 -0.00532854 0.99275675]\n", + " [ 0.1488564 -0.00529689 0.98884464]\n", + " [ 0.17711651 -0.00525872 0.98417584]\n", + " [ 0.20469956 -0.00521415 0.97881096]\n", + " [ 0.19791015 -0.2018782 0.95920632]\n", + " [ 0.19966308 -0.17529764 0.96405674]\n", + " [ 0.20115603 -0.14802765 0.9683099 ]\n", + " [ 0.20238925 -0.12017919 0.97190306]\n", + " [ 0.20336191 -0.09186258 0.97478469]\n", + " [ 0.20407235 -0.06318839 0.97691438]\n", + " [ 0.20451873 -0.03426807 0.97826264]\n", + " [ 0.20469956 -0.00521415 0.97881096]\n", + " [ 0.00121266 -0.196646 0.9804738 ]\n", + " [ 0.00122459 -0.16248857 0.98670967]\n", + " [ 0.00123428 -0.12739553 0.99185123]\n", + " [ 0.00124164 -0.09156092 0.9957987 ]\n", + " [ 0.00124661 -0.05518617 0.9984753 ]\n", + " [ 0.00124912 -0.01848208 0.99982841]\n", + " [ 0.01377154 -0.20841259 0.97794404]\n", + " [ 0.04928181 -0.20805164 0.97687554]\n", + " [ 0.08450359 -0.2072855 0.97462396]\n", + " [ 0.11923105 -0.20611722 0.97123615]\n", + " [ 0.15326028 -0.20454967 0.9667837 ]\n", + " [ 0.18638779 -0.20258404 0.96136325]\n", + " [ 0.01424443 -0.00548838 0.99988348]\n", + " [ 0.05097175 -0.00547863 0.99868507]\n", + " [ 0.08739457 -0.00545803 0.99615882]\n", + " [ 0.12330108 -0.00542687 0.99235447]\n", + " [ 0.15848878 -0.0053855 0.98734609]\n", + " [ 0.192763 -0.0053342 0.98123085]\n", + " [ 0.19861623 -0.19038695 0.96140751]\n", + " [ 0.2005887 -0.15733098 0.96695974]\n", + " [ 0.20217123 -0.12334981 0.97155114]\n", + " [ 0.20336272 -0.08864677 0.97508223]\n", + " [ 0.2041602 -0.05342545 0.97747856]\n", + " [ 0.2045604 -0.01789151 0.97869042]\n", + " [ 0.00120792 -0.20844284 0.97803381]\n", + " [ 0.00120792 -0.20844284 0.97803381]\n", + " [ 0.20460634 -0.00531377 0.97882992]\n", + " [ 0.20460634 -0.00531377 0.97882992]\n", + " [ 0.01382559 -0.19661746 0.9803828 ]\n", + " [ 0.04947523 -0.19627694 0.97929953]\n", + " [ 0.08483539 -0.19555447 0.97701659]\n", + " [ 0.11969997 -0.19445357 0.97358088]\n", + " [ 0.15386543 -0.19297773 0.96906399]\n", + " [ 0.18712908 -0.19112874 0.96356241]\n", + " [ 0.01396162 -0.1624649 0.98661554]\n", + " [ 0.04996174 -0.16218264 0.98549511]\n", + " [ 0.08566901 -0.16158454 0.98313339]\n", + " [ 0.1208763 -0.16067502 0.97957769]\n", + " [ 0.15538076 -0.15945889 0.97489983]\n", + " [ 0.1889821 -0.15793949 0.969196 ]\n", + " [ 0.01407199 -0.12737685 0.99175456]\n", + " [ 0.05035615 -0.12715419 0.99060389]\n", + " [ 0.08634371 -0.12668294 0.98817822]\n", + " [ 0.12182616 -0.12596768 0.98452554]\n", + " [ 0.15660103 -0.12501365 0.97971818]\n", + " [ 0.19047015 -0.12382499 0.9738524 ]\n", + " [ 0.01415593 -0.0915474 0.9957001 ]\n", + " [ 0.05065593 -0.09138626 0.99452628]\n", + " [ 0.08685581 -0.09104555 0.9920518 ]\n", + " [ 0.12254563 -0.09052922 0.98832537]\n", + " [ 0.15752301 -0.08984197 0.98342001]\n", + " [ 0.1915915 -0.08898771 0.97743229]\n", + " [ 0.01421257 -0.05517797 0.99837538]\n", + " [ 0.05085809 -0.05508029 0.99718585]\n", + " [ 0.08720077 -0.05487388 0.99467828]\n", + " [ 0.12302951 -0.05456144 0.99090201]\n", + " [ 0.15814189 -0.05414617 0.9859307 ]\n", + " [ 0.1923426 -0.05363087 0.97986124]\n", + " [ 0.01424114 -0.01847933 0.99972782]\n", + " [ 0.05096003 -0.01844651 0.99853032]\n", + " [ 0.08737459 -0.01837718 0.996006 ]\n", + " [ 0.12327308 -0.0182723 0.99220455]\n", + " [ 0.15845303 -0.018133 0.9872 ]\n", + " [ 0.1927197 -0.01796031 0.98108947]]\n", + "98e+01 5.00000241e-01]\n", + " [-4.34999998e+01 5.00000241e-01]\n", + " [ 2.00150000e+03 2.04550000e+03]\n", + " [ 2.00150000e+03 2.04550000e+03]\n", + " [ 8.30000001e+01 1.27000000e+02]\n", + " [ 4.41400000e+02 1.27000000e+02]\n", + " [ 7.99800000e+02 1.270000. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]]\n", + "000e+02]\n", + " [ 1.15820000e+03 1.27000000e+02]\n", + " [ 1.51660000e+03 1.27000000e+02]\n", + " [ 1.87500000e+03 1.27000000e+02]\n", + " [ 8.30000000e+01 4.85400000e+02]\n", + " [ 4.41400000e+02 4.85400000e+02]\n", + " [ 7.99800000e+02 4.85400000e+02]\n", + " [ 1.15820000e+03 4.85400000e+02]\n", + " [ 1.51660000e+03 4.85400000e+02]\n", + " [ 1.87500000e+03 4.85400000e+02]\n", + " [ 8.30000001e+01 8.43800000e+02]\n", + " [ 4.41400000e+02 8.43800000e+02]\n", + " [ 7.99800000e+02 8.43800000e+02]\n", + " [ 1.15820000e+03 8.43800000e+02]\n", + " [ 1.51660000e+03 8.43800000e+02]\n", + " [ 1.87500000e+03 8.43800000e+02]\n", + " [ 8.30000001e+01 1.20220000e+03]\n", + " [ 4.41400000e+02 1.20220000e+03]\n", + " [ 7.99800000e+02 1.20220000e+03]\n", + " [ 1.15820000e+03 1.20220000e+03]\n", + " [ 1.51660000e+03 1.20220000e+03]\n", + " [ 1.87500000e+03 1.20220000e+03]\n", + " [ 8.30000002e+01 1.56060000e+03]\n", + " [ 4.41400000e+02 1.56060000e+03]\n", + " [ 7.99800000e+02 1.56060000e+03]\n", + " [ 1.15820000e+03 1.56060000e+03]\n", + " [ 1.51660000e+03 1.56060000e+03]\n", + " [ 1.87500000e+03 1.5606000DEBUG:root:radec2pix: curVec Shape: (96, 3)\n", + "0e+03]\n", + " [ 8.29999999e+01 1.91900000e+03]\n", + " [ 4.41400000e+02 1.91900000e+03]\n", + " [ 7.99800000e+02 1.91900000e+03]\n", + " [ 1.15820000e+03 1.91900000e+03]\n", + " [ 1.51660000e+03 1.91900000e+03]\n", + " [ 1.87500000e+03 1.91900000e+03]]\n", + "90601 ]\n", + " [ 12.82946837 -29.82133827]\n", + " [ 18.20546789 -29.82361643]\n", + " [ 23.58146741 -29.82589461]\n", + " [ 28.95746693 -29.82817277]\n", + " [ 2.07974751 -24.44078242]\n", + " [ 7.45574702 -24.44306058]\n", + " [ 12.83174654 -24.44533875]\n", + " [ 18.20774606 -24.44761692]\n", + " [ 23.58374558 -24.44989508]\n", + " [ 28.95974509 -24.45217325]\n", + " [ 2.08202567 -19.0647829 ]\n", + " [ 7.45802519 -19.06706107]\n", + " [ 12.83402471 -19.06933924]\n", + " [ 18.21002422 -19.0716174 ]\n", + " [ 23.58602374 -19.07389557]\n", + " [ 28.96202325 -19.07617373]\n", + " [ 2.08430384 -13.68878339]\n", + " [ 7.46030335 -13.69106155]\n", + " [ 12.83630287 -13.69333972]\n", + " [ 18.21230239 -13.69561789]\n", + " [ 23.58830191 -13.69789605]\n", + " [ 28.96430143 -13.70017422]\n", + " [ 2.086582 -8.31278387]\n", + " [ 7.46258152 -8.31506203]\n", + " [ 12.83858103 -8.3173402 ]\n", + " [ 1800e+03 5.00000140e-01]\n", + " [ 2.13650000e+03 5.00000140e-01]\n", + " [ 4.18150000e+03 2.04550000e+03]\n", + " [ 4.18150000e+03 2.04550000e+03]\n", + " [ 2.26300000e+03 1.27000000e+02]\n", + " [ 2.62140000e+03 1.27000000e+02]\n", + " [ 2.97980000e+03 1.27000000e+02]\n", + " [ 3.33820000e+03 1.27000000e+02]\n", + " [ 3.69660000e+03 1.27000000e+02]\n", + " [ 4.05500000e+03 1.27000000e+02]\n", + " [ 2.26300000e+03 4.85400000e+02]\n", + " [ 2.62140000e+03 4.85400000e+02]\n", + " [ 2.97980000e+03 4.85400000e+02]\n", + " [ 3.33820000e+03 4.85400000e+02]\n", + " [ 3.69660000e+03 4.85400000e+02]\n", + " [ 4.05500000e+03 4.85400000e+02]\n", + " [ 2.26300000e+03 8.43800000e+02]\n", + " [ 2.62140000e+03 8.43800000e+02]\n", + " [ 2.97980000e+03 8.43800000e+02]\n", + " [ 3.33820000e+03 8.43800000e+02]\n", + " [ 3.69660000e+03 8.43800000e+02]\n", + " [ 4.05500000e+03 8.43800000e+02]\n", + " [ 2.26300000e+03 1.20220000e+03]\n", + " [ 2.62140000e+03 1.20220000e+03]\n", + " [ 2.97980000e+03 1.20220000e+03]\n", + " [ 3.33820000e+03 1.20220000e+03]\n", + " [ 3.69660000e+03 1.20220000e+03]\n", + " [ 4.05500000e+03 1.20220000e+03]\n", + " [ 2.26300000e+03 1.56060000e+03]\n", + " [ 2.62140000e+03 1.56060000e+03]\n", + " [ 2.97980000e+03 1.56060000e+03]\n", + " [ 3.33820000e+03 1.56060000e+03]\n", + " [ 3.69660000e+03 1.56060000e+03]\n", + " [ 4.05500000e+03 1.56060000e+03]\n", + " [ 2.26300000e+03 1.91900000e+03]\n", + " [ 2.62140000e+03 1.91900000e+03]\n", + " [ 2.97980000e+03 1.91900000e+03]\n", + " [ 3.33820000e+03 1.91900000e+03]\n", + " [ 3.69660000e+03 1.91900000e+03]\n", + " [ 4.05500000e+03 1.91900000e+03]]\n", + "DEBUG:root:radec2pix: camVec Shape: (3, 96)\n", + "DEBUG:root:radec2pix: lng: [270.30457564 270.35386432 270.42218515 270.52319877 270.68775016\n", + " 271.00328211 271.85358468 282.01764037 270.30457564 278.22825834\n", + " 285.84900373 292.93736432 299.35666656 305.05982707 310.06566745\n", + " 314.43133752 282.01764037 350.20239022 354.97318448 356.62297809\n", + " 357.45797758 357.96205284 358.29934604 358.54086611 314.43133752\n", + " 318.71792809 323.65121653 329.29806584 335.69036822 342.79553001\n", + " 350.4881795 358.54086611 270.35332309 270.43180131 270.55509491\n", + " 270.77692983 271.2940439 273.86646927 273.78050957 283.32620486\n", + " 292.17913267 300.04776463 306.84264375 312.61566094 338.92831161\n", + " 353.86519186 356.42636123 357.47985638 358.05382146 358.4148969\n", + " 316.21189934 321.89127155 328.61157088 336.44738638 345.33544633\n", + " 355.00144674 270.33202411 270.33202411 358.51232366 358.51232366\n", + " 274.02225895 284.14773214 293.45215101 301.61524642 308.56613427\n", + " 314.39418307 274.91171606 287.12189287 297.93167364 306.95425335\n", + " 314.25788847 320.11321977 276.3042009 291.6047689 304.27729951\n", + " 314.04247307 321.39984571 326.97203004 278.79000558 298.99985673\n", + " 313.65088315 323.54527533 330.30207858 335.08673923 284.44409964\n", + " 312.71767267 327.81852787 336.08354959 341.09932037 344.41993917\n", + " 307.6197367 340.1007605 348.12231225 351.56865678 353.47160216\n", + " 354.67575821]\n", + "DEBUG:root:mm_to_pix: fitpx.shape: (96, 2)\n", + "DEBUG:root:optics_fp: xyfp: [[ -0.230877 31.363511 ]\n", + " [ -0.230877 26.97708243]\n", + " [ -0.230877 22.59065386]\n", + " [ -0.230877 18.20422528]\n", + " [ -0.230877 13.81779671]\n", + " [ -0.230877 9.43136815]\n", + " [ -0.230877 5.0449395.21458055 -8.31961837]\n", + " [ 23.59058007 -8.32189653]\n", + " [ 28.96657959 -8.3241747 ]\n", + " [ 2.08886017 -2.93678435]\n", + " [ 7.46485969 -2.93906252]\n", + " [ 12.8408592 -2.94134068]\n", + " [ 18.21685872 -2.94361885]\n", + " [ 23.59285824 -2.94589701]\n", + " [ 28.96885776 -2.94817518]]\n", + "7]\n", + " [ -0.230877 0.658511 ]\n", + " [ -0.230877 31.363511 ]\n", + " [ -4.61730557 31.363511 ]\n", + " [ -9.00373414 31.363511 ]\n", + " [-13.39016272 31.363511 ]\n", + " [-17.77659129 31.363511 ]\n", + " [-22.16301986 31.363511 ]\n", + " [-26.54944843 31.363511 ]\n", + " [-30.935877 31.363511 ]\n", + " [ -0.230877 0.658511 ]\n", + " [ -4.61730558 0.658511 ]\n", + " [ -9.00373414 0.658511 ]\n", + " [-13.39016271 0.658511 ]\n", + " [-17.77659128 0.658511 ]\n", + " [-22.16301986 0.658511 ]\n", + " [-26.54944843 0.658511 ]\n", + " [-30.935877 0.658511 ]\n", + " [-30.935877 31.363511 ]\n", + " [-30.935877 26.97708243]\n", + " [-30.935877 22.59065386]\n", + " [-30.935877 18.20422528]\n", + " [-30.935877 13.81779671]\n", + " [-30.935877 9.43136814]\n", + " [-30.935877 5.04493957]\n", + " [-30.935877 0.658511 ]\n", + " [ -0.245877 DEBUG:root:radec2pix: fitpx: [[-4.99999744e-01 -4.99999751e-01]\n", + " [-5.00000258e-01 2.91928571e+02]\n", + " [-5.00000005e-01 5.84357143e+02]\n", + " [-4.99999941e-01 8.76785714e+02]\n", + " [-4.99999889e-01 1.16921429e+03]\n", + " [-4.99999948e-01 1.46164286e+03]\n", + " [-5.00000143e-01 1.75407143e+03]\n", + " [-4.99999962e-01 2.04650000e+03]\n", + " [-4.99999744e-01 -4.99999751e-01]\n", + " [ 2.91928571e+02 -5.00000271e-01]\n", + " [ 5.84357143e+02 -4.99999959e-01]\n", + " [ 8.76785714e+02 -5.00000035e-01]\n", + " [ 1.16921429e+03 -5.00000130e-01]\n", + " [ 1.46164286e+03 -5.00000295e-01]\n", + " [ 1.75407143e+03 -5.00000131e-01]\n", + " [ 2.04650000e+03 -5.00000000e-01]\n", + " [-4.99999962e-01 2.04650000e+03]\n", + " [ 2.91928571e+02 2.04650000e+03]\n", + " [ 5.84357143e+02 2.04650000e+03]\n", + " [ 8.76785714e+02 2.04650000e+03]\n", + " [ 1.16921429e+03 2.04650000e+03]\n", + " [ 1.46164286e+03 2.04650000e+03]\n", + " [ 1.75407143e+03 2.04650000e+03]\n", + " [ 2.04650000e+03 2.04650000e+03]\n", + " [ 2.04650000e+03 -5.00000000e-01]\n", + " [ 2.04650000e+03 2.91928571e+02]\n", + " [ 2.04650000e+03 5.84357143e+02]\n", + " [ 2.04650000e+03 8.76785714e+02]\n", + " [ 2.04650000e+03 1.16921429e+03]\n", + " [ 2.04650000e+03 1.46164286e+03]\n", + " [ 2.04650000e+03 1.75407143e+03]\n", + " [ 2.04650000e+03 2.04650000e+03]\n", + " [ 4.99999742e-01 1.27000000e+02]\n", + " [ 4.99999873e-01 4.85400000e+02]\n", + " [ 4.99999712e-01 8.43800000e+02]\n", + " [ 5.00000277e-01 1.20220000e+03]\n", + " [ 5.00000282e-01 1.56060000e+03]\n", + " [ 4.99999780e-01 1.91900000e+03]\n", + " [ 1.27000000e+02 4.99999945e-01]\n", + " [ 4.85400000e+02 4.99999943e-01]\n", + " [ 8.43800000e+02 5.00000147e-01]\n", + " [ 1.20220000e+03 4.99999799e-01]\n", + " [ 1.56060000e+03 5.00000078e-01]\n", + " [ 1.91900000e+03 4.99999710e-01]\n", + " [ 1.27000000e+02 2.04550000e+03]\n", + " [ 4.85400000e+02 2.04550000e+03]\n", + " [ 8.43800000e+02 2.04550000e+03]\n", + " [ 1.20220000e+03 2.04550000e+03]\n", + " [ 1.56060000e+03 2.04550000e+03]\n", + " [ 1.91900000e+03 2.04550000e+03]\n", + " [ 2.04550000e+03 1.27000000e+02]\n", + " [ 2.04550000e+03 4.85400000e+02]\n", + " [ 2.04550000e+03 8.43800000e+02]\n", + " [ 2.04550000e+03 1.20220000e+03]\n", + " [ 2.04550000e+03 1.56060000e+03]\n", + " [ 2.04550000e+03 1.91900000e+03]\n", + " [ 5.000002DEBUG:root:fitpix2pix: ccdpx: shape: (96, 2)\n", + "DEBUG:root:cartToSphere: vec: [[-0.20605921 -0.20169937 0.95752648]\n", + " [-0.20787315 -0.17519485 0.96233857]\n", + " [-0.20942436 -0.1480085 0.96655829]\n", + " [-0.21070676 -0.12024402 0.97012578]\n", + " [-0.21171698 -0.09200964 0.97299031]\n", + " [-0.21245291 -0.06341581 0.97511138]\n", + " [-0.21291301 -0.03457423 0.97645925]\n", + " [-0.2130962 -0.00559748 0.97701519]\n", + " [-0.20605921 -0.20169937 0.95752648]\n", + " [-0.17962884 -0.20353396 0.96244865]\n", + " [-0.15250018 -0.20511207 0.96678474]\n", + " [-0.12477652 -0.20642749 0.97047334]\n", + " [-0.0965659 -0.20747679 0.97346207]\n", + " [-0.06797863 -0.20825778 0.97570877]\n", + " [-0.03912632 -0.20876879 0.97718203]\n", + " [-0.01012153 -0.20900854 0.97786143]\n", + " [-0.2130962 -0.00559748 0.97701519]\n", + " [-0.18573503 -0.00565735 0.98258358]\n", + " [-0.15766321 -0.00571045 0.98747643]\n", + " [-0.1289874 -0.00575671 0.99162952]\n", + " [-0.09981355 -0.00579596 0.99498928]\n", + " [-0.07024926 -0.00582797 0.99751244]\n", + " [-0.04040619 -0.00585246 0.9991662 ]\n", + " [-0.01040084 -0.00586919 047e-01 5.00000241e-01]\n", + " [ 5.00000247e-01 5.00000241e-01]\n", + " [ 2.04550000e+03 2.04550000e+03]\n", + " [ 2.04550000e+03 2.04550000e+03]\n", + " [ 1.27000000e+02 1.27000000e+02]\n", + " [ 4.85400000e+02 1.27000000e+02]\n", + " [ 8.43800000e+02 1.27000000e+02]\n", + " [ 1.20220000e+03 1.27000000e+02]\n", + " [ 1.56060000e+03 1.27000000e+02]\n", + " [ 1.91900000e+03 1.27000000e+02]\n", + " [ 1.27000000e+02 4.85400000e+02]\n", + " [ 4.85400000e+02 4.85400000e+02]\n", + " [ 8.43800000e+02 4.85400000e+02]\n", + " [ 1.20220000e+03 4.85400000e+02]\n", + " [ 1.56060000e+03 4.85400000e+02]\n", + " [ 1.91900000e+03 4.85400000e+02]\n", + " [ 1.27000000e+02 8.43800000e+02]\n", + " [ 4.85400000e+02 8.43800000e+02]\n", + " [ 8.43800000e+02 8.43800000e+02]\n", + " [ 1.20220000e+03 8.43800000e+02]\n", + " [ 1.56060000e+03 8.43800000e+02]\n", + " [ 1.91900000e+03 8.43800000e+02]\n", + " [ 1.27000000e+02 1.20220000e+03]\n", + " [ 4.85400000e+02 1.20220000e+03]\n", + " [ 8.43800000e+02 1.20220000e+03]\n", + " [ 1.20220000e+03 1.20220000e+03]\n", + " [ 1.56060000e+03 1.20220000e+03]\n", + " [ 1.91900000e+03 1.20220000e+03]\n", + " [ 1.27000000e+02 1.56060000e+03]\n", + " [ 4.85400000e+02 1.56060000e+03]\n", + " [ 8.43800000e+02 1.56060000e+03]\n", + " [ 1.20220000e+03 1.56060000e+03]\n", + " [ 1.56060000e+03 1.56060000e+03]\n", + " [ 1.91900000e+03 1.56060000e+03]\n", + " [ 1.27000000e+02 1.91900000e+03]\n", + " [ 4.85400000e+02 1.91900000e+03]\n", + " [ 8.43800000e+02 1.91900000e+03]\n", + " [ 1.20220000e+03 1.91900000e+03]\n", + " [ 1.56060000e+03 1.91900000e+03]\n", + " [ 1.91900000e+03 1.91900000e+03]]\n", + ".99992869]\n", + " [-0.01012153 -0.20900854 0.97786143]\n", + " [-0.01020027 -0.18153487 0.98333161]\n", + " [-0.01026637 -0.15336672 0.98811601]\n", + " [-0.01031977 -0.12461057 0.99215206]\n", + " [-0.01036027 -0.09537244 0.99538774]\n", + " [-0.01038751 -0.06576046 0.99778137]\n", + " [-0.01040113 -0.03588698 0.99930173]\n", + " [-0.01040084 -0.00586919 0.99992869]\n", + " [-0.20679239 -0.1902398 0.95971127]\n", + " [-0.20883895 -0.15728353 0.96521924]\n", + " [-0.21048459 -0.12340547 0.96977695]\n", + " [-0.2117221 -0.08880315 0.97328709]\n", + " [-0.21254753 -0.0536798 0.97567516]\n", + " [-0.21295821 -0.01824146 0.97689101]\n", + " [-0.1946339 -0.20244048 0.95975804]\n", + " [-0.16175754 DEBUG:root:radec2pix: xyfp: [[ 0.26283402 -31.55708986]\n", + " [ 0.26401791 -27.17066146]\n", + " [ 0.2652018 -22.78423305]\n", + " [ 0.26638569 -18.39780463]\n", + " [ 0.26756957 -14.01137623]\n", + " [ 0.26875346 -9.62494781]\n", + " [ 0.26993735 -5.2385194 ]\n", + " [ 0.27112123 -0.85209099]\n", + " [ 0.26283402 -31.55708986]\n", + " [ 4.64926244 -31.55827376]\n", + " [ 9.03569085 -31.55945764]\n", + " [ 13.42211926 -31.56064153]\n", + " [ 17.80854767 -31.56182542]\n", + " [ 22.19497608 -31.56300931]\n", + " [ 26.5814045 -31.56419319]\n", + " [ 30.96783291 -31.56537708]\n", + " [ 0.27112123 -0.85209099]\n", + " [ 4.65754965 -0.85327487]\n", + " [ 9.04397805 -0.85445876]\n", + " [ 13.43040647 -0.85564265]\n", + " [ 17.81683488 -0.85682653]\n", + " [ 22.20326329 -0.85801042]\n", + " [ 26.5896917 -0.85919431]\n", + " [ 30.97612012 -0.8603782 ]\n", + " [ 30.96783291 -31.56537708]\n", + " [ 30.9690168 -27.17894867]\n", + " [ 30.97020068 -22.79252025]\n", + " [ 30.97138456 -18.40609184]\n", + " [ 30.97256845 -14.01966343]\n", + " [ 30.97375234 -9.63323502]\n", + " [ 30.97493622 -5.24680661]\n", + " [ 30.97612012 -0.8603782 ]\n", + " [ 0.2783502 -29.64459399]\n", + " [ 0.27980117 -24.26859418]\n", + " [ 0.28125214 -18.89259438]\n", + " [ 0.28270311 -13.51659457]\n", + " [ 0.28415408 -8.14059477]\n", + " [ 0.28560505 -2.76459497]\n", + " [ 2.175338 -31.54260605]\n", + " [ 7.55133781 -31.54405702]\n", + " [ 12.92733761 -31.54550799]\n", + " [ 18.30333742 -31.54695896]\n", + " [ 23.67933722 -31.54840993]\n", + " [ 29.05533702 -31.5498609 ]\n", + " [ 2.18361712 -0.86760716]\n", + " [ 7.55961692 -0.86905814]\n", + " [ 12.93561673 -0.87050911]\n", + " [ 18.31161653 -0.87196007]\n", + " [ 23.68761633 -0.87341105]\n", + " [ 29.06361614 -0.87486202]\n", + " [ 30.95334909 -29.6528731 ]\n", + " [ 30.95480005 -24.27687329]\n", + " [ 30.95625103 -18.90087349]\n", + " [ 30.95770199 -13.52487368]\n", + " [ 30.95915297 -8.14887388]\n", + " [ 30.96060394 -2.77287408]\n", + " [ 0.27783807 -31.54209392]\n", + " [ 0.27783807 -31.54209392]\n", + " [ 30.96111607 -0.87537415]\n", + " [ 30.96111607 -0.87537415]\n", + " [ 2.17585013 -29.64510611]\n", + " [ 7.55184994 -29.64655709]\n", + " [ 12.92784974 -29.64800806]\n", + " [ 18.30384955 -29.64945903]\n", + " [ 23.67984935 -29.65091 ]\n", + " [ 29.05584916 -29.65236097]\n", + " [ 2.1773011 -24.26910631]\n", + " [ 7.55330091 -24.27055728]\n", + "DEBUG:root:optics_fp: sphi: [0.70073958 0.64606768 0.57926126 0.49834142 0.40194059 0.29007134\n", + " 0.1649404 0.0313274 0.70073958 0.75081049 0.80330242 0.85632562\n", + " 0.90683747 0.95061586 0.98274331 0.99875393 0.0313274 0.03631497\n", + " 0.04315962 0.05313395 0.069014 0.09821415 0.1691786 0.5459791\n", + " 0.99875393 0.99832709 0.99763477 0.99640065 0.99386824 0.98730608\n", + " 0.96018902 0.5459791 0.67842975 0.60353431 0.50840257 0.39023062\n", + " 0.2491346 0.09026478 0.72202887 0.78522123 0.85029163 0.91212843\n", + " 0.9630057 0.99397217 0.03381828 0.04117383 0.05254813 0.07246053\n", + " 0.11619532 0.28568936 0.998564 0.99787113 0.99651836 0.99329877\n", + " 0.98218517 0.87963764 0.70073672 0.70073672 0.54790634 0.54790634\n", + " 0.7003523 0.76617231 0.83524188 0.90223637 0.95845287 0.99319172\n", + " 0.62671212 0.69894092 0.77968384 0.86389216 0.9399874 0.98993027\n", + " 0.53140435 0.60624939 0.69673956 0.80101328 0.90667588 0.98362991\n", + " 0.41062285 0.48009609 0.57202299 0.69282748 0.83927416 0.96899587\n", + " 0.26367291 0.3152909 0.38989736 0.5039234 0.68394565 0.92210851\n", + " 0.09588115 0.11634315 0.14772342 0.20168832 0.31431902 0.6442708 ]\n", + "DEBUG:root:fitpix2pix: visCut: True\n", + "DEBUG:root:radec2pix: ccdpx: [[-4.45000000e+01 -4.99999951e-01]\n", + " [-4.45000000e+01 2.91928572e+02]\n", + " [-4.45000000e+01 5.84357142e+02]\n", + " [-4.45000000e+01 8.76785714e+02]\n", + " [-4.45000000e+01 1.16921429e+03]\n", + " [-4.45000000e+01 1.46164286e+03]\n", + " [-4.45000000e+01 1.75407143e+03]\n", + " [-4.45000000e+01 2.04650000e+03]\n", + " [-4.45000000e+01 -4.99999951e-01]\n", + " [ 2.47928571e+02 -5.00000176e-01]\n", + " [ 5.40357143e+02 -5.00000069e-01]\n", + " [ 8.32785714e+02 -5.00000257e-01]\n", + " [ 1.12521429e+03 -4.99999992e-01]\n", + " [ 1.41764286e+03 -5.00000241e-01]\n", + " [ 1.71007143e+03 -4.99999730e-01]\n", + " [ 2.00250000e+03 -5.00000010e-01]\n", + " [-4.45000000e+01 2.04650000e+03]\n", + " [ 2.47928571e+02 2.04650000e+03]\n", + " [ 5.40357143e+02 2.04650000e+03]\n", + " [ 8.32785714e+02 2.04650000e+03]\n", + " [ 1.12521429e+03 2.04650000e+03]\n", + " [ 1.41764286e+03 2.04650000e+03]\n", + " [ 1.71007143e+03 2.04650000e+03]\n", + " [ 2.00250000e+03 2.04650000e+03]\n", + " [ 2.00250000e+03 -5.00000010e-01]\n", + " [ 2.00250000e+03 2.91928572e+02]\n", + " [ 2.00250000e+03 5.84357143e+02]\n", + " [ 2.00250000e+03 8.76785714e+02]\n", + " [ 2.00250000e+03 1.16921429e+03]\n", + " [ 2.00250000e+03 1.46164286e+03]\n", + " [ 2.00250000e+03 1.75407143e+03]\n", + " [ 2.00250000e+03 2.04650000e+03]\n", + " [-4.35000000e+01 1.27000000e+02]\n", + " [-4.35000000e+01 4.85400000e+02]\n", + " [-4.35000000e+01 8.43800000e+02]\n", + " [-4.35000000e+01 1.20220000e+03]\n", + " [-4.35000000e+01 1.56060000e+03]\n", + " [-4.35000000e+01 1.91900000e+03]\n", + " [ 8.30000000e+01 4.99999720e-01]\n", + " [ 4.41400000e+02 4.99999983e-01]\n", + " [ 7.99800000e+02 4.99999771e-01]\n", + " [ 1.15820000e+03 4.99999773e-01]\n", + " [ 1.51660000e+03 5.00000075e-01]\n", + " [ 1.87500000e+03 4.99999913e-01]\n", + " [ 8.29999998e+01 2.04550000e+03]\n", + " [ 4.41400000e+02 2.04550000e+03]\n", + " [ 7.99800000e+02 2.04550000e+03]\n", + " [ 1.15820000e+03 2.04550000e+03]\n", + " [ 1.51660000e+03 2.04550000e+03]\n", + " [ 1.87500000e+03 2.04550000e+03]\n", + " [ 2.00150000e+03 1.27000000e+02]\n", + " [ 2.00150000e+03 4.85400000e+02]\n", + " [ 2.00150000e+03 8.43800000e+02]\n", + " [ 2.00150000e+03 1.20220000e+03]\n", + " [ 2.00150000e+03 1.56060000e+03]\n", + " [ 2.00150000e+03 1.91900000e+03]\n", + " [-4.35000000e+01 4.99999930e-01]\n", + " [-4.35000000e+01 4.99999930e-01]\n", + " [ 2.00150000e+03 2.04550000e+03]\n", + " [ 2.00150000e+03 2.04550000e+03]\n", + " [ 8.30000000e+01 1.27000000e+02]\n", + " [ 4.41400000e+02 1.27000000e+02]\n", + " [ 7.99800000e+02 1.27000000e+02]\n", + " [ 1.15820000e+03 1.27000000e+02]\n", + " [ 1.51660000e+03 1.27000000e+02]\n", + " [ 1.87500000e+03 1.27000000e+02]\n", + " [ 8.30000000e+01 4.85400000e+02]\n", + " [ 4.41400000e+02 4.85400000e+02]\n", + " [ 7.99800000e+02 4.85400000e+02]\n", + " [ 1.15820000e+03 4.85400000e+02]\n", + " [ 1.51660000e+03 4.85400000e+02]\n", + " [ 1.87500000e+03 4.85400000e+02]\n", + " [ 8.30000000e+01 8.43800000e+02]\n", + " [ 4.41400000e+02 8.43800000e+02]\n", + " [ 7.99800000e+02 8.43800000e+02]\n", + " [ 1.15820000e+03 8.43800000e+02]\n", + " [ 1.51660000e+03 8.43800000e+02]\n", + " [ 1.87500000e+03 8.43800000e+02]\n", + " [ 8.30000000e+01 1.20220000e+03]\n", + " [ 4.41400000e+02 1.20220000e+03]\n", + " [ 7.99800000e+02 1.20220000e+03]\n", + " [ 1.15820000e+03 1.20220000e+03]\n", + " [ 1.51660000e+03 1.20220000e+03]\n", + " [ 1.87500000e+03 1.20220000e+03]\n", + " [ 8.30000000e+01 1.56060000e+03]\n", + " [ 4.41400000e+02 1.56060000e+03]\n", + " [ 7.99800000e+02 1.56060000e+03]\n", + " [ 1.15820000e+03 1.56060000e+03]\n", + " [ 1.51660000e+03 1.56060000e+03]\n", + " [ 1.87500000e+03 1.56060000e+03]\n", + " [ 8.30000000e+01 1.91900000e+03]\n", + " [ 4.41400000e+02 1.91900000e+03]\n", + " [ 7.99800000e+02 1.91900000e+03]\n", + " [ 1.15820000e+03 1.91900000e+03]\n", + " [ 1.51660000e+03 1.91900000e+03]\n", + " [ 1.87500000e+03 1.91900000e+03]]\n", + "DEBUG:root:fitpix2pix: visCut: True\n", + " [ 12.92930071 -24.27200825]\n", + " [ 18.30530052 -24.27345922]\n", + " [ 23.68130032 -24.27491019]\n", + " [ 29.05730013 -24.27636116]\n", + " [ 2.17875207 -18.89310651]\n", + " [ 7.55475188 -18.89455748]\n", + " [ 12.93075168 -18.89600845]\n", + " [ 18.30675149 -18.89745942]\n", + " [ 23.68275129 -18.89891039]\n", + " [ 29.0587511 -18.90036136]\n", + " [ 2.18020304 -13.51710671]\n", + " [ 7.55620285 -13.51855767]\n", + " [ 12.93220265 -13.52000864]\n", + " [ 18.30820245 -13.52145961]\n", + " [ 23.68420226 -13.52291058]\n", + " [ 29.06020207 -13.52436156]\n", + " [ 2.18165401 -8.1411069 ]\n", + " [ 7.55765382 -8.14255787]\n", + " [ 12.93365363 -8.14400884]\n", + " [ 18.30965343 -8.14545981]\n", + " [ 23.68565323 -8.14691078]\n", + " [ 29.06165303 -8.14836175]\n", + " [ 2.18310498 -2.76510709]\n", + " [ 7.55910479 -2.76655806]\n", + " [ 12.93510459 -2.76800904]\n", + " [ 18.31110439 -2.76946001]\n", + " [ 23.68710421 -2.77091098]\n", + " [ 29.063104 -2.77236195]]\n", + "DEBUG:root:radec2pix: lat: [77.96328192 79.56853071 81.20563621 82.86944579 84.55492216 86.25697831\n", + " 87.97026012 89.68446141 77.96328192 77.84499787 77.51456239 76.99218852\n", + " 76.30618444 75.48813083 74.56921129 73.5781677 89.68446141 88.18737722\n", + " 86.48534608 84.7856574 83.09971795 81.43388184 79.79360686 78.18420142\n", + " 73.5781677 74.59165918 75.53717808 76.38588844 77.10603256 77.66476376\n", + " 78.03174302 78.18420142 78.65888684 80.64836049 82.6805387 84.74610355\n", + " 86.83565024 88.93857815 77.94403081 77.65435125 77.06482717 76.22448951\n", + " 75.19110028 74.0211233 89.125335 87.06142445 84.97647052 82.91045242\n", + " 80.87550158 7-0.20451655 0.96540534]\n", + " [-0.12793421 -0.20620095 0.97011031]\n", + " [-0.09336102 -0.20748634 0.97377263]\n", + " [-0.05824097 -0.2083686 0.97631476]\n", + " [-0.02277993 -0.2088448 0.97768345]\n", + " [-0.20126076 -0.00572401 0.97952098]\n", + " [-0.16723544 -0.00579384 0.98589996]\n", + " [-0.13224882 -0.00585326 0.99119927]\n", + " [-0.09649617 -0.00590199 0.99531586]\n", + " [-0.06017591 -0.0059396 0.99817012]\n", + " [-0.02349561 -0.00596558 0.99970614]\n", + " [-0.01025713 -0.19712185 0.98032534]\n", + " [-0.01034611 -0.16296958 0.98657685]\n", + " [-0.01041588 -0.1278801 0.99173494]\n", + " [-0.01046611 -0.09204872 0.9956995 ]\n", + " [-0.01049618 -0.05567473 0.99839379]\n", + " [-0.01050541 -0.01896706 0.99976492]\n", + " [-0.20597676 -0.2016167 0.95756163]\n", + " [-0.20597676 -0.2016167 0.95756163]\n", + " [-0.01050361 -0.0059719 0.999927 ]\n", + " [-0.01050361 -0.0059719 0.999927 ]\n", + " [-0.19540403 -0.19101701 0.96194063]\n", + " [-0.16239488 -0.19297429 0.96767186]\n", + " [-0.12843557 -0.19456158 0.97244542]\n", + " [-0.09372478 -0.19577312 0.97616011]\n", + " [-0.05846599 -0.19660523 0.97873802]\n", + " [-0.02286533 -0.1970549 0.98012578]\n", + " [-0.19733483 -0.15792497 0.96753226]\n", + " [-0.16399068 -0.15953875 0.97347545]\n", + " [-0.1296908 -0.16084786 0.97842131]\n", + " [-0.094636 -0.1618491 0.98226722]\n", + " [-0.05902974 -0.16253892 0.98493482]\n", + " [-0.02307851 -0.16291334 0.98637043]\n", + " [-0.19888634 -0.12390793 0.97215793]\n", + " [-0.16527244 -0.1251726 0.97827237]\n", + " [-0.13070023 -0.12620079 0.98335691]\n", + " [-0.09537003 -0.12699006 0.9873085 ]\n", + " [-0.05948408 -0.12753631 0.99004855]\n", + " [-0.02324907 -0.1278347 0.99152295]\n", + " [-0.20005292 -0.089165 0.97571944]\n", + " [-0.16623701 -0.090077 0.98196303]\n", + " [-0.13146138 -0.09082101 0.98715219]\n", + " [-0.09592455 -0.09139481 0.99118387]\n", + " [-0.05982716 -0.09179425 0.99397914]\n", + " [-0.0233762 -0.09201449 0.99548324]\n", + " [-0.20083104 -0.05389991 0.97814196]\n", + " [-0.16688094 -0.05445583 0.9844721 ]\n", + " [-0.13197015 -0.05491134 0.98973159]\n", + " [-0.09629527 -0.05526476 0.9938174 ]\n", + " [-0.0600556 -0.0555129 0.99665021]\n", + " [-0.02345845 -0.05565213 0.9981746 ]\n", + " [-0.20121796 -0.018319 29.451011 ]\n", + " [ -0.245877 24.075011 ]\n", + " [ -0.245877 18.699011 ]\n", + " [ -0.245877 13.323011 ]\n", + " [ -0.245877 7.947011 ]\n", + " [ -0.245877 2.571011 ]\n", + " [ -2.143377 31.348511 ]\n", + " [ -7.519377 31.348511 ]\n", + " [-12.895377 31.348511 ]\n", + " [-18.271377 31.348511 ]\n", + " [-23.647377 31.348511 ]\n", + " [-29.023377 31.348511 ]\n", + " [ -2.143377 0.673511 ]\n", + " [ -7.519377 0.673511 ]\n", + " [-12.895377 0.673511 ]\n", + " [-18.271377 0.673511 ]\n", + " [-23.64737701 0.673511 ]\n", + " [-29.023377 0.673511 ]\n", + " [-30.920877 29.451011 ]\n", + " [-30.920877 24.075011 ]\n", + " [-30.920877 18.699011 ]\n", + " [-30.920877 13.323011 ]\n", + " [-30.920877 7.947011 ]\n", + " [-30.920877 2.571011 ]\n", + " [ -0.245877 31.348511 ]\n", + " [ -0.245877 31.348511 ]\n", + " [-30.920877 0.673511 ]\n", + " [-30.920877 0.673511 ]\n", + " [ -2.143377 29.451011 ]\n", + " [ -7.519377 29.451011 ]\n", + " [-12.895377 29.451011 ]\n", + " [-18.271377 29.451011 ]\n", + " [-23.647377 29.451011 ]\n", + " [-29.023377 29.451011 ]\n", + " [ -2.143377 24.075011 ]\n", + " [ -7.519377 24.075011 ]\n", + " [-12.895377 24.075011 ]\n", + " [-18.271377 24.075011 ]\n", + " [-23.647377 24.075011 ]\n", + " [-29.023377 24.075011 ]\n", + " [ -2.143377 18.699011 ]\n", + " [ -7.519377 18.699011 ]\n", + " [-12.895377 18.699011 ]\n", + " [-18.271377 18.699011 ]\n", + " [-23.647377 18.699011 ]\n", + " [-29.023377 18.699011 ]\n", + " [ -2.143377 13.323011 ]\n", + " [ -7.519377 13.323011 ]\n", + " [-12.895377 13.323011 ]\n", + " [-18.271377 13.323011 ]\n", + " [-23.647377 13.323011 ]\n", + " [-29.023377 13.323011 ]\n", + " [ -2.143377 7.947011 ]\n", + " [ -7.519377 7.947011 ]\n", + " [-12.895377 7.947011 ]\n", + " [-18.271377 7.947011 ]\n", + " [-23.647377 7.947011 ]\n", + " [-29.023377 7.947011 ]\n", + " [ -2.143377 2.571011 ]\n", + " [ -7.519377 2.571011 ]\n", + " [-12.895377 2.571011 ]\n", + " [-18.271377 2.571011 ]\n", + " [-23.647377 2.571011 ]\n", + " [-29.023377 2.571011 ]]\n", + "DEBUG:root:optics_fp: xyfp shape: (96, 2)\n", + "DEBUG:root:radec2pix: fitpx: [[ 2.13550000e+03 -4.99999951e-01]\n", + " [ 2.13550000e+03 2.91928572e+02]\n", + " [ 2.13550000e+03DEBUG:root:fitpix2pix: ccdpx: shape: (96, 2)\n", + " 5.84357142e+02]\n", + " [ 2.13550000e+03 8.76785714e+02]\n", + " [ 2.13550000e+03 1.16921429e+03]\n", + " [ 2.13550000e+03 1.46164286e+03]\n", + " [ 2.13550000e+03 1.75407143e+03]\n", + " [ 2.13550000e+03 2.04650000e+03]\n", + " [ 2.13550000e+03 -4.99999951e-01]\n", + " [ 2.42792857e+03 -5.00000176e-01]\n", + " [ 2.72035714e+03 -5.00000069e-01]\n", + " [ 3.01278571e+03 -5.00000257e-01]\n", + " [ 3.30521429e+03 -4.99999992e-01]\n", + " [ 3.59764286e+03 -5.00000241e-01]\n", + " [ 3.89007143e+03 -4.99999730e-01]\n", + " [ 4.18250000e+03 -5.00000010e-01]\n", + " [ 2.13550000e+03 2.04650000e+03]\n", + " [ 2.42792857e+03 2.04650000e+03]\n", + " [ 2.72035714e+03 2.04650000e+03]\n", + " [ 3.01278571e+03 2.04650000e+03]\n", + " [ 3.30521429e+03 2.04650000e+03]\n", + " [ 3.59764286e+03 2.04650000e+03]\n", + " [ 3.89007143e+03 2.04650000e+03]\n", + " [ 4.18250000e+03 2.04650000e+03]\n", + " [ 4.18250000e+03 -5.00000010e-01]\n", + " [ 4.18250000e+03 2.91928572e+02]\n", + " [ 4.18250000e+03 5.84357143e+02]\n", + " [ 4.18250000e+03 8.76785714e+02]\n", + " [ 4.18250000e+03 1.16921429e+03]\n", + " [ 4.18250000e+03 1.46164286e+03]\n", + " [ 4.18250000e+03 1.75407143e+03]\n", + " [ 4.18250000e+03 2.04650000e+03]\n", + " [ 2.13650000e+03 1.27000000e+02]\n", + " [ 2.13650000e+03 4.85400000e+02]\n", + " [ 2.13650000e+03 8.43800000e+02]\n", + " [ 2.13650000e+03 1.20220000e+03]\n", + " [ 2.13650000e+03 1.56060000e+03]\n", + " [ 2.13650000e+03 1.91900000e+03]\n", + " [ 2.26300000e+03 4.99999720e-01]\n", + " [ 2.62140000e+03 4.99999983e-01]\n", + " [ 2.97980000e+03 4.99999771e-01]\n", + " [ 3.33820000e+03 4.99999773e-01]\n", + " [ 3.69660000e+03 5.00000075e-01]\n", + " [ 4.05500000e+03 4.99999913e-01]\n", + " [ 2.26300000e+03 2.04550000e+03]\n", + " [ 2.62140000e+03 2.04550000e+03]\n", + " [ 2.97980000e+03 2.04550000e+03]\n", + " [ 3.33820000e+03 2.04550000e+03]\n", + " [ 3.69660000e+03 2.04550000e+03]\n", + " [ 4.05500000e+03 2.04550000e+03]\n", + " [ 4.18150000e+03 1.27000000e+02]\n", + " [ 4.18150000e+03 4.85400000e+02]\n", + " [ 4.18150000e+03 8.43800000e+02]\n", + " [ 4.18150000e+03 1.20220000e+03]\n", + " [ 4.18150000e+03 1.56060000e+03]\n", + " [ 4.18150000e+03 1.91900000e+03]\n", + " [ 2.13650000e+03 4.99999930e-01]\n", + " [ 2.13650000e+03 4.99999930e-01]\n", + " [ 4.18150000e+03 2.04550000e+03]\n", + " [ 4.18150000e+03 2.04550000e+03]\n", + " [ 2.26300000e+03 1.27000000e+02]\n", + " [ 2.62140000e+03 1.27000000e+02]\n", + " [ 2.97980000e+03 1.27000000e+02]\n", + " [ 3.33820000e+03 1.27000000e+02]\n", + " [ 3.69660000e+03 1.27000000e+02]\n", + " [ 4.05500000e+03 1.27000000e+02]\n", + " [ 2.26300000e+03 4.85400000e+02]\n", + " [ 2.62140000e+03 4.85400000e+02]\n", + " [ 2.97980000e+03 4.85400000e+02]\n", + " [ 3.33820000e+03 4.85400000e+02]\n", + " [ 3.69660000e+03 4.85400000e+02]\n", + " [ 4.05500000e+03 4.85400000e+02]\n", + " [ 2.26300000e+03 8.43800000e+02]\n", + " [ 2.62140000e+03 8.43800000e+02]\n", + " [ 2.97980000e+03 8.43800000e+02]\n", + " [ 3.33820000e+03 8.43800000e+02]\n", + " [ 3.69660000e+03 8.43800000e+02]\n", + " [ 4.05500000e+03 8.43800000e+02]\n", + " [ 2.26300000e+03 1.20220000e+03]\n", + " [ 2.62140000e+03 1.20220000e+03]\n", + " [ 2.97980000e+03 1.20220000e+03]\n", + " [ 3.33820000e+03 1.20220000e+03]\n", + " [ 3.69660000e+03 1.20220000e+03]\n", + " [ 4.05500000e+03 1.20220000e+03]\n", + " [ 2.26300000e+03 1.56060000e+03]\n", + " [ 2.62140000e+03 1.56060000e+03]\n", + " [ 2.97980000e+03 1.56060000e+08.88161748 74.03033777 75.2306137 76.3004884 77.18265224\n", + " 77.81700171 78.15051889 77.96868077 77.96868077 78.18950618 78.18950618\n", + " 78.63240168 78.32169564 77.69220555 76.80049546 75.71119975 74.48541744\n", + " 80.6152305 80.22940153 79.46186211 78.40069669 77.13562878 75.74187621\n", + " 82.63719517 82.13946169 81.18123393 79.90730671 78.44079679 76.86879929\n", + " 84.68476231 84.00240554 82.77130238 81.23639689 79.55203729 77.80444657\n", + " 86.73357497 85.70054621 84.08633958 82.26535796 80.37757677 78.48177609\n", + " 88.66315983 86.89328024 84.87745159 82.8411917 80.82286686 78.83968928]\n", + "DEBUG:root:fitpix2pix: visCut: True\n", + "DEBUG:root:radec2pix: camVec: [[-0.00114705 -0.00115629 -0.0011641 -0.00117048 -0.00117539 -0.00117881\n", + " -0.00118068 -0.00118097 -0.00114705 -0.03018244 -0.05910007 -0.08778716\n", + " -0.11613176 -0.14402308 -0.17135219 -0.19801388 -0.00118097 -0.03121228\n", + " -0.06111791 -0.09077999 -0.12008538 -0.14892541 -0.17719395 -0.20478471\n", + " -0.19801388 -0.19975823 -0.20124936 -0.20248221 -0.20345393 -0.20416257\n", + " -0.20460656 -0.20478471 -0.00125101 -0.00126235 -0.00127136 -0.00127799\n", + " -0.00128216 -0.00128379 -0.01381426 -0.04933618 -0.08456905 -0.11930642\n", + " -0.15334441 -0.18648385 -0.01428247 -0.05101935 -0.08744986 -0.12336368\n", + " -0.15856056 -0.19284509 -0.1987148 -0.20068229 -0.20226422 -0.20345456\n", + " -0.20424964 -0.20464672 -0.00124645 -0.00124645 -0.20469148 -0.20469148\n", + " -0.01386808 -0.04952932 -0.08490071 -0.11977552 -0.15394951 -0.18722234\n", + " -0.01400325 -0.05001432 -0.08573269 -0.12095098 -0.15546507 -0.18907339\n", + " -0.01411268 -0.05040698 -0.08640482 -0.12189811 -0.15668376 -0.19056116\n", + " -0.01419584 -0.05070556 -0.08691471 -0.12261435 -0.15760261 -0.19168088\n", + " -0.01425179 -0.05090701 -0.08725814 -0.12309542 -0.15821798 -0.19242913\n", + " -0.01427955 -0.05100809 -0.08743051 -0.12333654 -0.15852587 -0.19280295]\n", + " [ 0.20838541 0.18089194 0.15270652 0.12393558 0.09468513 0.06506336\n", + " 0.03518275 0.0051606 0.20838541 0.20823844 0.20782077 0.20713345\n", + " 0.20617803 0.20495645 0.2DEBUG:root:radec2pix: ccdpx: [[-4.45000000e+01 -4.99999783e-01]\n", + " [-4.45000000e+01 2.91928571e+02]\n", + " [-4.45000000e+01 5.84357143e+02]\n", + " [-4.45000000e+01 8.76785714e+02]\n", + " [-4.45000000e+01 1.16921429e+03]\n", + " [-4.45000000e+01 1.46164286e+03]\n", + " [-4.45000000e+01 1.75407143e+03]\n", + " [-4.44999999e+01 2.04650000e+03]\n", + " [-4.45000000e+01 -4.99999783e-01]\n", + " [ 2.47928571e+02 -5.00000080e-01]\n", + " [ 5.40357143e+02 -5.00000178e-01]\n", + " [ 8.32785714e+02 -4.99999867e-01]\n", + " [ 1.12521429e+03 -5.00000095e-01]\n", + " [ 1.41764286e+03 -5.00000221e-01]\n", + " [ 1.71007143e+03 -5.00000185e-01]\n", + " [ 2.00250000e+03 -5.00000018e-01]\n", + " [-4.44999999e+01 2.04650000e+03]\n", + " [ 2.47928572e+02 2.04650000e+03]\n", + " [ 5.40357143e+02 2.04650000e+03]\n", + " [ 8.32785714e+02 2.04650000e+03]\n", + " [ 1.12521429e+03 2.04650000e+03]\n", + " [ 1.41764286e+03 2.04650000e+03]\n", + " [ 1.71007143e+03 2.04650000e+03]\n", + " [ 2.00250000e+03 2.04650000e+03]\n", + " [ 2.00250000e+03 -5.00000018e-01]\n", + " [ 2.00250000e+03 2.91928571e+02]\n", + " [ 2.00250000e+03 5.84357143e+02]\n", + " [ 2.00250000e+03 8.76785714e+02]\n", + " [ 2.00250000e+03 1.16921429e+03]\n", + " [ 2.00250000e+03 1.46164286e+03]\n", + " [ 2.00250000e+03 1.75407143e+03]\n", + " [ 2.00250000e+03 2.04650000e+03]\n", + " [-4.35000000e+01 1.27000000e+02]\n", + " [-4.35000000e+01 4.85400000e+02]\n", + " [-4.35000000e+01 8.43800000e+02]\n", + " [-4.35000000e+01 1.20220000e+03]\n", + " [-4.35000000e+01 1.56060000e+03]\n", + " [-4.35000000e+01 1.91900000e+03]\n", + " [ 8.30000000e+01 4.99999873e-01]\n", + " [ 4.41400000e+02 5.00000123e-01]\n", + " [ 7.99800000e+02 5.00000108e-01]\n", + " [ 1.15820000e+03 4.99999719e-01]\n", + " [ 1.51660000e+03 4.99999964e-01]\n", + " [ 1.87500000e+03 5.00000185e-01]\n", + " [ 8.30000000e+01 2.04550000e+03]\n", + " [ 4.41400000e+02 2.04550000e+03]\n", + " [ 7.99800000e+02 2.04550000e+03]\n", + " [ 1.15820000e+03 2.04550000e+03]\n", + " [ 1.51660000e+03 2.04550000e+03]\n", + " [ 1.87500000e+03 2.04550000e+03]\n", + " [ 2.00150000e+03 1.27000000e+02]\n", + " [ 2.00150000e+03 4.85400000e+02]\n", + " [ 2.00150000e+03 8.43800000e+02]\n", + " [ 2.00150000e+03 1.20220000e+03]\n", + " [ 2.00150000e+03 1.56060000e+03]\n", + " [ 2.00150000e+03 1.91900000e+03]\n", + " [-4.35000000e+01 4.99999853e-01]\n", + " [-4.35000000e+01 4.99999853e-01]\n", + " [ 2.00150000e+03 2.04550000e+03]\n", + " [ 2.00150000e+03 2.04550000e+03]\n", + " [ 8.30000000e+01 1.27000000e+02]\n", + " [ 4.41400000e+02 1.27000000e+02]\n", + " [ 7.99800000e+02 1.27000000e+02]\n", + " [ 1.15820000e+03 1.27000000e+02]\n", + " [ 1.51660000e+03 1.27000000e+02]\n", + " [ 1.87500000e+03 1.27000000e+02]\n", + " [ 8.30000000e+01 4.85400000e+02]\n", + " [ 4.41400000e+02 4.85400000e+02]\n", + " [ 7.99800000e+02 4.85400000e+02]\n", + " [ 1.15820000e+03 4.85400000e+02]\n", + " [ 1.51660000e+03 4.85400000e+02]\n", + " [ 1.87500000e+03 4.85400000e+02]\n", + " [ 8.30000000e+01 8.43800000e+02]\n", + " [ 4.41400000e+02 8.43800000e+02]\n", + " [ 7.99800000e+02 8.43800000e+02]\n", + " [ 1.15820000e+03 8.43800000e+02]\n", + " [ 1.51660000e+03 8.43800000e+02]\n", + " [ 1.87500000e+03 8.43800000e+02]\n", + " [ 8.30000000e+01 1.20220000e+03]\n", + " [ 4.41400000e+02 1.20220000e+03]\n", + " [ 7.99800000e+02 1.20220000e+03]\n", + " [ 1.15820000e+03 1.20220000e+03]\n", + " [ 1.51660000e+03 1.20220000e+03]\n", + " [ 1.87500000e+03 1.20220000e+03]\n", + " [ 8.30000001e+01 1.56060000e+03]\n", + " [ 4.41400000e+02 1.56060000e+03]\n", + " [ 7.99800000e+02 1.56060000e+03]\n", + " [ 1.15820000e+03 1.56060000e+03]\n", + " [ 1.51660000e+03 1.56060000e+03]\n", + " [ 1.87500000e+03 1.56060000e+03]\n", + " [ 8.29999999e+01 1.91900000e+03]\n", + " [ 4.41400000e+02 1.91900000e+03]\n", + " [ 7.99800000e+02 1.91900000e+03]\n", + " [ 1.15820000e+03 1.91900000e+03]\n", + " [ 1.51660000e+03 1.91900000e+03]\n", + " [ 1.87500000e+03 1.91900000e+03]]\n", + "DEBUG:root:make_az_asym: xyp: [[ -0.230877 31.363511 ]\n", + " [ -0.230877 26.97708243]\n", + " [ -0.230877 22.59065386]\n", + " [ -0.230877 18.20422528]\n", + " [ -0.230877 13.81779671]\n", + " [ -0.230877 9.43136815]\n", + " [ -0.230877 5.04493957]\n", + " [ -0.230877 0.658511 ]\n", + " [ -0.230877 31.363511 ]\n", + " [ -4.61730557 31.363511 ]\n", + " [ -9.00373414 31.363511 ]\n", + " [-13.39016272 31.363511 ]\n", + " [-17.77659129 31.363511 ]\n", + " [-22.16301986 31.363511 ]\n", + " [-26.54944843 31.363511 ]\n", + " [-30.935877 31.363511 ]\n", + " [ -0.230877 0.658511 ]\n", + " [ -4.61730558 0.658511 ]\n", + " [ -9.00373414 0.658511 ]\n", + " [-13.39016271 0.658511 ]\n", + "3]\n", + " [ 3.33820000e+03 1.56060000e+03]\n", + " [ 3.69660000e+03 1.56060000e+03]\n", + " [ 4.05500000e+03 1.56060000e+03]\n", + " [ 2.26300000e+03 1.91900000e+03]\n", + " [ 2.62140000e+03 1.91900000e+03]\n", + " [ 2.97980000e+03 1.91900000e+03]\n", + " [ 3.33820000e+03 1.91900000e+03]\n", + " [ 3.69660000e+03 1.91900000e+03]\n", + " [ 4.05500000e+03 1.91900000e+03]]\n", + " [-17.77659128 0.658511 ]\n", + " [-22.16301986 0.658511 ]\n", + " [-26.54944843 0.658511 ]\n", + " [-30.935877 0.658511 ]\n", + " [-30.935877 31.363511 ]\n", + " [-30.935877 26.97708243]\n", + " [-30.935877 22.59065386]\n", + " [-30.935877 18.20422528]\n", + " [-30.935877 13.81779671]\n", + " [-30.935877 9.43136814]\n", + " [-30.935877 5.04493957]\n", + " [-30.935877 0.658511 ]\n", + " [ -0.245877 29.451011 ]\n", + " [ -0.245877 24.075011 ]\n", + " [ -0.245877 18.699011 ]\n", + " [ -0.245877 13.323011 ]\n", + " [ -0.245877 7.947011 ]\n", + " [ -0.245877 2.571011 ]\n", + " [ -2.143377 31.348511 ]\n", + " [ -7.519377 31.348511 ]\n", + " [-12.895377 31.348511 ]\n", + " [-18.271377 31.348511 ]\n", + " [-23.647377 31.348511 ]\n", + " [-29.023377 31.348511 ]\n", + " [ -2.143377 0.673511 ]\n", + " [ -7.519377 0.673511 ]\n", + " [-12.895377 0.673511 ]\n", + " [-18.271377 0.673511 ]\n", + " [-23.64737701 0.673511 ]\n", + " [-29.023377 0.673511 ]\n", + " [-30.920877 29.451011 ]\n", + " [-30.920877 24.075011 ]\n", + " [-30.920877 18.699011 ]\n", + " [-30.920877 13.323011 ]\n", + " [-30.920877 7.947011 ]\n", + " [-30.920877 2.571011 ]\n", + " [ -0.245877 31.348511 ]\n", + " [ -0.245877 31.348511 ]\n", + " [-30.920877 0.673511 ]\n", + " [-30.920877 0.673511 ]\n", + " [ -2.143377 29.451011 ]\n", + " [ -7.519377 29.451011 ]\n", + " [-12.895377 29.451011 ]\n", + " [-18.271377 29.451011 ]\n", + " [-23.647377 29.451011 ]\n", + " [-29.023377 29.451011 ]\n", + " [ -2.143377 24.075011 ]\n", + " [ -7.519377 24.075011 ]\n", + " [-12.895377 24.075011 ]\n", + " [-18.271377 24.075011 ]\n", + " [-23.647377 24.075011 ]\n", + " [-29.023377 24.075011 ]\n", + " [ -2.143377 18.699011 ]\n", + " [ -7.519377 18.699011 ]\n", + " [-12.895377 18.699011 ]\n", + " [-18.271377 18.699011 ]\n", + " [-23.647377 18.699011 ]\n", + " [-29.023377 18.699011 ] 0.97937518]\n", + " [-0.16720058 -0.01851594 0.98574902]\n", + " [-0.13222195 -0.01867909 0.99104412]\n", + " [-0.09647752 -0.01880776 0.99515745]\n", + " [-0.06016577 -0.01890068 0.99800944]\n", + " [-0.02349426 -0.01895646 0.99954423]]\n", + "\n", + " [ -2.143377 13.323011 ]\n", + " [ -7.519377 13.323011 ]\n", + " [-12.895377 13.323011 ]\n", + " [-18.271377 13.323011 ]\n", + " [-23.647377 13.323011 ]\n", + " [-29.023377 13.323011 ]\n", + " [ -2.143377 7.947011 ]\n", + " [ -7.519377 7.947011 ]\n", + " [-12.895377 7.947011 ]\n", + " [-18.271377 7.947011 ]\n", + " [-23.647377 7.947011 ]\n", + " [-29.023377 7.947011 ]\n", + " [ -2.143377 2.571011 ]\n", + " [ -7.519377 2.571011 ]\n", + " [-12.895377 2.571011 ]\n", + " [-18.271377 2.571011 ]\n", + " [-23.647377 2.571011 ]\n", + " [-29.023377 2.571011 ]]\n", + "DEBUG:root:optics_fp: xyfp: [[-32.29046994 -31.71666141]\n", + " [-32.28860507 -27.33023323]\n", + " [-32.2867402 -22.94380505]\n", + " [-32.28487534 -18.55737688]\n", + " [-32.28301047 -14.1709487 ]\n", + " [-32.2811456 -9.78452053]\n", + " [-32.27928073 -5.39809235]\n", + " [-32.27741587 -1.01166418]\n", + " [-32.29046994 -31.71666141]\n", + " [-27.90404176 -31.71852627]\n", + " [-23.51761359 -31.72039114]\n", + " [-19.13118541 -31.722256 ]\n", + " [-14.74475724 -31.72412087]\n", + " [-10.35832906 -31.72598574]\n", + " [ -5.97190089 -31.72785061]\n", + " [ -1.58547272 -31.72971547]\n", + " [-32.27741587 -1.01166418]\n", + " [-27.8909877 -1.01352905]\n", + " [-23.50455952 -1.01539391]\n", + " [-19.11813134 -1.01725878]\n", + " [-14.73170317 -1.01912365]\n", + " [-10.345275 -1.02098851]\n", + " [ -5.95884682 -1.02285338]\n", + " [ -1.57241864 -1.02471825]\n", + " [ -1.58547272 -31.72971547]\n", + " [ -1.58360785 -27.3432873 ]\n", + " [ -1.58174298 -22.95685912]\n", + " [ -1.57987811 -18.57043094]\n", + " [ -1.57801325 -14.18400278]\n", + " [ -1.57614838 -9.7975746 ]\n", + " [ -1.57428351 -5.41114642]\n", + " [ -1.57241864 -1.02471825]\n", + " [-32.27465685 -29.80416795]\n", + " [-32.27237127 -24.42816844]\n", + " [-32.2700857 -19.05216893]\n", + " [-32.26780012 -13.67616941]\n", + " [-32.26551454 -8.3001699 ]\n", + " [-32.26322896 -2.92417038]\n", + " [-30.37796373 -31.70247449]\n", + " [-25.00196422 -31.70476008]\n", + " [-19.62596471 -31.70704565]\n", + " [-14.24996519 -31.70933123]\n", + " [ -8.87396568 -31.7DEBUG:root:make_az_asym: xyp: shape: (96, 2)\n", + "DEBUG:root:radec2pix: fitpx: [[ 2.13550000e+03 -4.99999783e-01]\n", + " [ 2.13550000e+03 2.91928571e+02]\n", + " [ 2.13550000e+03 5.84357143e+02]\n", + " [ 2.13550000e+03 8.76785714e+02]\n", + " [ 2.13550000e+03 1.16921429e+03]\n", + " [ 2.13550000e+03 1.46164286e+03]\n", + " [ 2.13550000e+03 1.75407143e+03]\n", + " [ 2.13550000e+03 2.04650000e+03]\n", + " [ 2.13550000e+03 -4.99999783e-01]\n", + " [ 2.42792857e+03 -5.00000080e-01]\n", + " [ 2.72035714e+03 -5.00000178e-01]\n", + " [ 3.01278571e+03 -4.99999867e-01]\n", + " [ 3.30521429e+03 -5.00000095e-01]\n", + " [ 3.59764286e+03 -5.00000221e-01]\n", + " [ 3.89007143e+03 -5.00000185e-01]\n", + " [ 4.18250000e+03 -5.00000018e-01]\n", + " [ 2.13550000e+03 2.04650000e+03]\n", + " [ 2.42792857e+03 2.04650000e+03]\n", + " [ 2.72035714e+03 2.04650000e+03]\n", + " [ 3.01278571e+03 2.04650000e+03]\n", + " [ 3.30521429e+03 2.04650000e+03]\n", + " [ 3.59764286e+03 2.04650000e+03]\n", + " [ 3.89007143e+03 2.04650000e+03]\n", + " [ 4.18250000e+03 2.04650000e+03]\n", + " [ 4.18250000e+03 -5.00000018e-01]\n", + " [ 4.18250000e+03 2.91928571e+02]\n", + " [ 4.18250000e+0347155 0.2017284 0.0051606 0.00515607\n", + " 0.00514464 0.00512646 0.00510175 0.0050707 0.00503345 0.00499006\n", + " 0.2017284 0.17512925 0.14784829 0.11999042 0.09166442 0.06298098\n", + " 0.03405194 0.00499006 0.19649007 0.1623152 0.12720686 0.09136033\n", + " 0.05497503 0.01826009 0.20826196 0.20789982 0.20713224 0.20596186\n", + " 0.20439232 0.20242966 0.00526224 0.00525184 0.00523103 0.00520016\n", + " 0.00515961 0.0051096 0.19022738 0.157155 0.12316211 0.08844755\n", + " 0.05321501 0.01767079 0.20829266 0.20829266 0.0050897 0.0050897\n", + " 0.19646111 0.19611969 0.19539637 0.19429398 0.1928159 0.19096695\n", + " 0.16229116 0.16200846 0.16141067 0.16050163 0.15928501 0.15776388\n", + " 0.1271878 0.12696445 0.12649338 0.12577923 0.12482642 0.12363768\n", + " 0.0913464 0.09118412 0.09084281 0.0903271 0.0896414 0.08878838\n", + " 0.05496643 0.05486748 0.05466012 0.05434775 0.0539337 0.05341999\n", + " 0.01825699 0.0182233 0.01815347 0.01804874 0.01791034 0.01771161681]\n", + " [ -3.49796617 -31.71390239]\n", + " [-30.36492242 -1.02747727]\n", + " [-24.98892291 -1.02976285]\n", + " [-19.61292339 -1.03204842]\n", + " [-14.23692388 -1.034334 ]\n", + " [ -8.86092437 -1.03661958]\n", + " [ -3.48492485 -1.03890516]\n", + " [ -1.59965962 -29.81720927]\n", + " [ -1.59737405 -24.44120975]\n", + " [ -1.59508847 -19.06521024]\n", + " [ -1.59280289 -13.68921073]\n", + " [ -1.59051731 -8.31321121]\n", + " [ -1.58823174 -2.9372117 ]\n", + " [-32.27546357 -31.70166778]\n", + " [-32.27546357 -31.70166778]\n", + " [ -1.58742502 -1.03971187]\n", + " [ -1.58742502 -1.03971187]\n", + " [-30.37715702 -29.80497466]\n", + " [-25.00115751 -29.80726024]\n", + " [-19.625158 -29.80954582]\n", + " [-14.24915848 -29.8118314 ]\n", + " [ -8.87315897 -29.81411698]\n", + " [ -3.49715945 -29.81640256]\n", + " [-30.37487145 -24.42897515]\n", + " [-24.99887193 -24.43126073]\n", + " [-19.62287241 -24.43354631]\n", + " [-14.2468729 -24.43583188]\n", + " [ -8.87087339 -24.43811746]\n", + " [ -3.49487388 -24.44040305]\n", + " [-30.37258587 -19.05297564]\n", + " [-24.99658635 -19.05526122]\n", + " [-19.62058684 -19.05754679]\n", + " [-14.24458732 -19.05983237]\n", + " [ -8.86858781 -19.06211795]\n", + " [ -3.4925883 -19.06440353]\n", + " [-30.37030029 -13.67697612]\n", + " [-24.99430077 -13.6792617 ]\n", + " [-19.61830126 -13.68154728]\n", + " [-14.24230175 -13.68383286]\n", + " [ -8.86630223 -13.68611844]\n", + " [ -3.49030272 -13.68840401]\n", + " [-30.36801471 -8.30097661]\n", + " [-24.9920152 -8.30326219]\n", + " [-19.61601568 -8.30554776]\n", + " [-14.24001617 -8.30783335]\n", + " [ -8.86401666 -8.31011893]\n", + " [ -3.48801714 -8.3124045 ]\n", + " [-30.36572914 -2.9249771 ]\n", + " [-24.98972962 -2.92726267]\n", + " [-19.6137301 -2.92954825]\n", + " [-14.23773059 -2.93183383]\n", + " [ -8.86173108 -2.93411941]\n", + " [ -3.48573156 -2.93640499]]\n", + "3905]\n", + " [ 0.97804612 0.9835023 0.9882709 0.99228958 0.99550658 0.99788044\n", + " 0.9993802 0.99998599 0.97804612 0.97761228 0.9763799 0.97436602\n", + " 0.9715987 0.96811684 0.96396979 0.95921643 0.99998599 0.99949948\n", + " 0.99811729 0.99585778 0.99275046 0.98883543 0.98416308 0.97879432\n", + " 0.95921643 0.96406763 0.96831791 0.97190702 0.97478415 0.97690892\n", + " 0.97825182 0.97879432 0.98050502 0.98673815 0.99187539 0.99581708\n", + " 0.99848691 0.99983245 0.97797552 0.97690512 0.97465087 0.97125985\n", + " 0.96680364 0.96137714 0.99988415 0.99868386 0.99615519 0.9923479\n", + " 0.98733577 0.98121591 0.96141873 0.96696894 0.9715556 0.97508116\n", + " 0.97747135 0.97867638 0.97806575 0.97806575 0.97881331 0.97881331\n", + " 0.98041354 0.9793283 0.97704254 0.97360345 0.96908285 0.96357637\n", + " 0.98664355 0.98552109 0.9831564 0.9795969 0.97491482 0.9692068\n", + " 0.99177825 0.99062564 0.98819716 0.98454072 0.97972882 0.97385839\n", + " 0.99571799 0.99454231 0.99206523 0.98833534 0.98342556 0.97743289\n", + " 0.99838649 0.99719508 0.99468502 0.99090557 0.98593013 0.97985577\n", + " 0.99973135 0.99853197 0.9960052 0.99220076 0.98719237 0.98107714]]\n", + "DEBUG:root:optics_fp: xyfp shape: (96, 2)\n", + "03 5.84357143e+02]\n", + " [ 4.18250000e+03 8.76785714e+02]\n", + " [ 4.18250000e+03 1.16921429e+03]\n", + " [ 4.18250000e+03 1.46164286e+03]\n", + " [ 4.18250000e+03 1.75407143e+03]\n", + " [ 4.18250000e+03 2.04650000e+03]\n", + " [ 2.13650000e+03 1.27000000e+02]\n", + " [ 2.13650000e+03 4.85400000e+02]\n", + " [ 2.13650000e+03 8.43800000e+02]\n", + " [ 2.13650000e+03 1.20220000e+03]\n", + " [ 2.13650000e+03 1.56060000e+03]\n", + " [ 2.13650000e+03 1.91900000e+03]\n", + " [ 2.26300000e+03 4.99999873e-01]\n", + " [ 2.62140000e+03 5.00000123e-01]\n", + " [ 2.97980000e+03 5.00000108e-01]\n", + " [ 3.33820000e+03 4.99999719e-01]\n", + " [ 3.69660000e+03 4.99999964e-01]\n", + " [ 4.05500000e+03 5.00000185e-01]\n", + " [ 2.26300000e+03 2.04550000e+03]\n", + " [ 2.62140000e+03 2.04550000e+03]\n", + " [ 2.97980000e+03 2.04550000e+03]\n", + " [ 3.33820000e+03 2.04550000e+03]\n", + " [ 3.69660000e+03 2.04550000e+03]\n", + " [ 4.05500000e+03 2.04550000e+03]\n", + " [ 4.18150000e+03 1.27000000e+02]\n", + " [ 4.18150000e+03 4.85400000e+02]\n", + " [ 4.18150000e+03 8.43800000e+02]\n", + " [ 4.18150000e+03 1.20220000e+03]\n", + " [ 4.18150000e+03 1.56060000e+03]\n", + " [ 4.18150000e+03 1.91900000e+03]\n", + " [ 2.13650000e+03 4.99999853e-01]\n", + " [ 2.13650000e+03 4.99999853e-01]\n", + " [ 4.18150000e+03 2.04550000e+03]\n", + " [ 4.18150000e+03 2.04550000e+03]\n", + " [ 2.26300000e+03 1.27000000e+02]\n", + " [ 2.62140000e+03 1.27000000e+02]\n", + " [ 2.97980000e+03 1.27000000e+02]\n", + " [ 3.33820000e+03 1.27000000e+02]\n", + " [ 3.69660000e+03 1.27000000e+02]\n", + " [ 4.05500000e+03 1.27000000e+02]\n", + " [ 2.26300000e+03 4.85400000e+02]\n", + " [ 2.62140000e+03 4.85400000e+02]\n", + " [ 2.97980000e+03 4.85400000e+02]\n", + " [ 3.33820000e+03 4.85400000e+02]\n", + " [ 3.69660000e+03 4.85400000e+02]\n", + " [ 4.05500000e+03 4.85400000e+02]\n", + " [ 2.26300000e+03 8.43800000e+02]\n", + " [ 2.62140000e+03 8.43800000e+02]\n", + " [ 2.97980000e+03 8.43800000e+02]\n", + " [ 3.33820000e+03 8.43800000e+02]\n", + " [ 3.69660000e+03 8.43800000e+02]\n", + " [ 4.05500000e+03 8.43800000e+02]\n", + " [ 2.26300000e+03 1.20220000e+03]\n", + " [ 2.62140000e+03 1.20220000e+03]\n", + " [ 2.97980000e+03 1.20220000e+03]\n", + " [ 3.33820000e+03 1.20220000e+03]\n", + " [ 3.69660000e+03 1.20220000e+03]\n", + " [ 4.05500000e+03 1.20220000e+03]\n", + " [ 2.26300000e+03 1.56060000e+03]\n", + " [ 2.62140000e+03 1.56060000e+03]\n", + " [ 2.97980000e+03 1.56060000e+03]\n", + " [ 3.33820000e+03 1.56060000e+03]\n", + " [ 3.69660000e+03 1.56060000e+03]\n", + " [ 4.05500000e+03 1.56060000e+03]\n", + " [ 2.26300000e+03 1.91900000e+03]\n", + " [ 2.62140000e+03 1.91900000e+03]\n", + " [ 2.97980000e+03 1.91900000e+03]\n", + " [ 3.33820000e+03 1.91900000e+03]\n", + " [ 3.69660000e+03 1.91900000e+03]\n", + " [ 4.05500000e+03 1.91900000e+03]]\n", + "DEBUG:root:radec2pix: curVec: [[-2.86452835e-02 8.60467983e-01 -5.08698631e-01]\n", + " [-2.75431449e-02 8.45907945e-01 -5.32617239e-01]\n", + " [-2.63975444e-02 8.30374914e-01 -5.56579439e-01]\n", + " [-2.52117852e-02 8.13893765e-01 -5.80466455e-01]\n", + " [-2.39894936e-02 7.96498378e-01 -6.04164579e-01]\n", + " [-2.27346717e-02 7.78232646e-01 -6.27564406e-01]\n", + " [-2.14517081e-02 7.59150923e-01 -6.50561065e-01]\n", + " [-2.01453541e-02 7.39317941e-01 -6.73055085e-01]\n", + " [-2.86452835e-02 8.60467983e-01 -5.08698631e-01]\n", + " [ 3.64188239e-04 8.61363799e-01 -5.07988457e-01]\n", + " [ 2.92847876e-02 8.61484220e-01 -5.06939188e-01]\n", + " [ 5.80036144e-02 8.60837554e-01 -5.05563336e-01]\n", + " [ 8.64085346e-02 8.59440535e-01 -5.03880474e-01]\n", + " [ 1.14388118e-01 8.57317919e-01 -5.01917667e-01]\n", + " [ 1.41830991e-01 8.54502079e-01 -4.99710082e-01]\n", + " [ 1.68624633e-01 8.51032741e-01 -4.97301726e-01]\n", + " [-2.01453541e-02 7.39317941e-01 -6.73055085e-01]\n", + " [ 9.84915127e-03 7.40316306e-01 -6.72186553e-01]\n", + " [ 3.97392191e-02 7.40645928e-01 -6.70719318e-01]\n", + " [ 6.94071562e-02 7.40314888e-01 -6.68667715e-01]\n", + " [ 9.87379404e-02 7.39339786e-01 -6.66053677e-01]\n", + " [ 1.27620017e-01 7.37745382e-01 -6.62906391e-01]\n", + " [ 1.55945286e-01 7.35564219e-01 -6.59261971e-01]\n", + " [ 1.83608027e-01 7.32836351e-01 -6.55163319e-01]\n", + " [ 1.68624633e-01 8.51032741e-01 -4.97301726e-01]\n", + " [ 1.71438096e-01 8.36712749e-01 -5.20116098e-01]\n", + " [ 1.74034308e-01 8.21475964e-01 -5.43037107e-01]\n", + " [ 1.76410386e-01 8.05351463e-01 -5.65940276e-01]\n", + " [ 1.78561709e-01 7.88375934e-01 -5.88709693e-01]\n", + " [ 1.80482529e-01 7.70594331e-01 -6.11236807e-01]\n", + " [ 1.82166651e-01 7.52060310e-01 -6.33419767e-01]\n", + " [ 1.83608027e-01 7.32836351e-01 -6.55163319e-01]\n", + " [-2.80706746e-02 8.54245051e-01 -5.19112156e-01]\n", + " [-2.66892848e-02 8.35743257e-01 -5.48471413e-01]\n", + " [-2.52460502e-02 8.DEBUG:root:optics_fp: rtanth: [31.49183295 27.10547639 22.71914763 18.33286663 13.94667845 9.56071086\n", + " 5.17552468 0.80400903 31.49183295 31.81893962 32.73584893 34.19514883\n", + " 36.13117923 38.47203574 41.14868729 44.10003298 0.80400903 4.62123428\n", + " 8.97478096 13.34987234 17.73056686 22.11353481 26.49764807 30.88241889\n", + " 44.10003298 41.08265104 38.3306279 35.90503258 33.87605653 32.31848632\n", + " 31.30277019 30.88241889 29.57945042 24.20357534 18.8277716 13.45212473\n", + " 8.07694792 2.70504492 31.5450314 32.34738816 33.9914811 36.36331677\n", + " 39.33145785 42.7719429 2.22895212 7.49884938 12.85690509 18.22553229\n", + " 23.59751677 28.97099101 42.74447401 39.21682332 36.14735337 33.66163739\n", + " 31.89644588 30.97520686 31.47691651 31.47691651 30.86780955 30.86780955\n", + " 29.6519244 30.50411668 32.24233865 34.73382242 37.83003027 41.39549146\n", + " 24.29209321 25.32528987 27.39411567 30.28708623 33.79319995 37.74196451\n", + " 18.94142858 20.24949953 22.78397459 26.19121067 30.17701587 34.5416822\n", + " 13.61074549 15.37910619 18.5898944 22.63745111 27.1500822 31.93121491\n", + " 8.33845435 10.99064764 15.16118736 19.91812291 24.9279841 30.06459569\n", + " 3.40734519 7.92934524 13.11265734 18.40684115 23.73782997 29.08539314]\n", + "DEBUG:root:fitpix2pix: ccdpx: shape: (96, 2)\n", + "15803774e-01 -5.77777500e-01]\n", + " [-2.37475140e-02 7.94485169e-01 -6.06819060e-01]\n", + " [-2.22010506e-02 7.71868298e-01 -6.35394715e-01]\n", + " [-2.06148964e-02 7.48057559e-01 -6.63313587e-01]\n", + " [-1.59892783e-02 8.60905986e-01 -5.08512760e-01]\n", + " [ 1.95203078e-02 8.61481914e-01 -5.07412919e-01]\n", + " [ 5.47841213e-02 8.60900504e-01 -5.05815206e-01]\n", + " [ 8.95953906e-02 8.59189078e-01 -5.03752711e-01]\n", + " [ 1.23748905e-01 8.56393169e-01 -5.01275321e-01]\n", + " [ 1.57039231e-01 8.52575433e-01 -4.98451413e-01]\n", + " [-7.06692005e-03 7.39904625e-01 -6.72674665e-01]\n", + " [ 2.96389924e-02 7.40677811e-01 -6.71206309e-01]\n", + " [ 6.60708595e-02 7.40453470e-01 -6.68852226e-01]\n", + " [ 1.02015761e-01 7.39258635e-01 -6.65649649e-01]\n", + " [ 1.37268330e-01 7.37138850e-01 -6.61652266e-01]\n", + " [ 1.71630644e-01 7.34157150e-01 -6.56929373e-01]\n", + " [ 1.69787162e-01 8.44916305e-01 -5.07236392e-01]\n", + " [ 1.73088541e-01 8.26745584e-01 -5.35286929e-01]\n", + " [ 1.76061135e-01 8.07225801e-01 -5.63372864e-01]\n", + " [ 1.78697133e-01 7.86421296e-01 -5.91277328e-01]\n", + " [ 1.80986028e-01 7.64414881e-01 -6.18800410e-01]\n", + " [ 1.82916450e-01 7.41309004e-01 -6.45757333e-01]\n", + " [-2.85423641e-02 8.60424259e-01 -5.08778368e-01]\n", + " [-2.85423641e-02 8.60424259e-01 -5.08778368e-01]\n", + " [ 1.83510170e-01 7.32913398e-01 -6.55104548e-01]\n", + " [ 1.83510170e-01 7.32913398e-01 -6.55104548e-01]\n", + " [-1.54684610e-02 8.54729252e-01 -5.18843554e-01]\n", + " [ 2.01795341e-02 8.55314439e-01 -5.17716135e-01]\n", + " [ 5.55800806e-02 8.54745750e-01 -5.16062552e-01]\n", + " [ 9.05260942e-02 8.53050827e-01 -5.13915666e-01]\n", + " [ 1.24812664e-01 8.50275644e-01 -5.11324875e-01]\n", + " [ 1.58235345e-01 8.46483305e-01 -5.08357738e-01]\n", + " [-1.39635403e-02 8.36234084e-01 -5.48194834e-01]\n", + " [ 2.20320343e-02 8.36847327e-01 -5.46992816e-01]\n", + " [ 5.77748945e-02 8.36320694e-01 -5.4518782DEBUG:root:radec2pix: curVec: [[ 8.50283274e-03 1.17008908e-01 -9.93094465e-01]\n", + " [ 2.82602122e-02 1.35231717e-01 -9.90410896e-01]\n", + " [ 4.82989594e-02 1.53841625e-01 -9.86914366e-01]\n", + " [ 6.85421759e-02 1.72742135e-01 -9.82579322e-01]\n", + " [ 8.89125164e-02 1.91841242e-01 -9.77390149e-01]\n", + " [ 1.09331994e-01 2.11051224e-01 -9.71341287e-01]\n", + " [ 1.29721990e-01 2.30288206e-01 -9.64437425e-01]\n", + " [ 1.50003518e-01 2.49471853e-01 -9.56693650e-01]\n", + " [ 8.50283274e-03 1.17008908e-01 -9.93094465e-01]\n", + " [-1.17434813e-02 1.34639825e-01 -9.90825014e-01]\n", + " [-3.23138013e-02 1.52661809e-01 -9.87750065e-01]\n", + " [-5.31288847e-02 1.70979773e-01 -9.83841064e-01]\n", + " [-7.41090697e-02 1.89503216e-01 -9.79079352e-01]\n", + " [-9.51740286e-02 2.08146016e-01 -9.73456286e-01]\n", + " [-1.16242703e-01 2.26825948e-01 -9.66973435e-01]\n", + " [-1.37233526e-01 2.45464306e-01 -9.59642764e-01]\n", + " [ 1.50003518e-01 2.49471853e-01 -9.56693650e-01]\n", + " [ 1.30332655e-01 2.69120161e-01 -9.54247210e-01]\n", + " [ 1.10156655e-01 2.88955755e-01 -9.50983745e-01]\n", + " DEBUG:root:radec2pix: xyfp: [[ -0.230877 31.363511 ]\n", + " [ -0.230877 26.97708243]\n", + " [ -0.230877 22.59065386]\n", + " [ -0.230877 18.20422528]\n", + " [ -0.230877 13.81779671]\n", + " [ -0.230877 9.43136815]\n", + " [ -0.230877 5.04493957]\n", + " [ -0.230877 0.658511 ]\n", + " [ -0.230877 31.363511 ]\n", + " [ -4.61730557 31.363511 ]\n", + " [ -9.00373414 31.363511 ]\n", + " [-13.39016272 31.363511 ]\n", + " [-17.77659129 31.363511 ]\n", + " [-22.16301986 31.363511 ]\n", + " [-26.54944843 31.363511 ]\n", + " [-30.935877 31.363511 ]\n", + " [ -0.230877 0.658511 ]\n", + " [ -4.61730558 0.658511 ]\n", + " [ -9.00373414 0.658511 ]\n", + " [-13.39016271 0.658511 ]\n", + " [-17.77659128 0.658511 ]\n", + " [-22.16301986 0.658511 ]\n", + " [-26.54944843 0.658511 ]\n", + " [-30.935877 0.658511 ]\n", + " [-30.935877 31.363511 ]\n", + " [-30.935877 26.97708243]\n", + " [-30.935877 22.59065386]\n", + " [-30.935877 18.20422528]\n", + " [-30.935877 13.81779671]\n", + " [-30.935877 9.43136814]\n", + " [-30.935877 5.04493957]\n", + " [-30.935877 0.658511 ]\n", + " [ -0.245877 29.451011 ]\n", + " [ -0.245877 24.075011 ]\n", + " [ -0.245877 18.699011 ]\n", + " [ -0.245877 13.323011 ]\n", + " [ -0.245877 7.947011 ]\n", + " [ -0.245877 2.571011 ]\n", + " [ -2.143377 31.348511 ]\n", + " [ -7.519377 31.348511 ]\n", + " [-12.895377 31.348511 ]\n", + " [-18.271377 31.348511 ]\n", + " [-23.647377 31.348511 ]\n", + " [-29.023377 31.348511 ]\n", + " [ -2.143377 0.673511 ]\n", + " [ -7.519377 0.673511 ]\n", + " [-12.895377 0.673511 ]\n", + " [-18.271377 0.673511 ]\n", + " [-23.64737701 0.673511 ]\n", + " [-29.023377 0.673511 ]\n", + " [-30.920877 29.451011 ]\n", + " [-30.920877 24.075011 ]\n", + " [-30.920877 18.699011 ]\n", + " [-30.920877 13.323011 ]\n", + " [-30.920877 7.947011 ]\n", + " [-30.920877 2.571011 ]\n", + " [ -0.245877 31.348511 ]\n", + " [ -0.245877 31.348511 ]\n", + " [-30.920877 0.673511 ]\n", + " [-30.920877 0.673511 ]\n", + " [ -2.143377 29.451011 ]\n", + " [ -7.519377 29.451011 ]\n", + " [-12.895377 29.451011 ]\n", + " [-18.271377 29.451011 ]\n", + " [-23.647377 29.451011 ]\n", + " [-29.023377 29.451011 ]\n", + " [ -2.143377 24.075011 ]\n", + " [ -7.519377 24.075011 ]\n", + "0e-01]\n", + " [ 9.30567158e-02 8.34682538e-01 -5.42812591e-01]\n", + " [ 1.27673011e-01 8.31979850e-01 -5.39915856e-01]\n", + " [ 1.61421765e-01 8.28276849e-01 -5.36563580e-01]\n", + " [-1.24203288e-02 8.16300678e-01 -5.77493670e-01]\n", + " [ 2.38559160e-02 8.16945068e-01 -5.76221877e-01]\n", + " [ 5.98738404e-02 8.16470277e-01 -5.74274681e-01]\n", + " [ 9.54236221e-02 8.14904993e-01 -5.71685390e-01]\n", + " [ 1.30300707e-01 8.12296750e-01 -5.68503048e-01]\n", + " [ 1.64304865e-01 8.08710440e-01 -5.64793179e-01]\n", + " [-1.08460563e-02 7.94987600e-01 -6.06528712e-01]\n", + " [ 2.56421418e-02 7.95666523e-01 -6.05191923e-01]\n", + " [ 6.18665640e-02 7.95254085e-01 -6.03111489e-01]\n", + " [ 9.76159631e-02 7.93778896e-01 -6.00321737e-01]\n", + " [ 1.32685468e-01 7.91288488e-01 -5.96872763e-01]\n", + " [ 1.66876029e-01 7.87847843e-01 -5.92830639e-01]\n", + " [-9.24880019e-03 7.72375684e-01 -6.35098624e-01]\n", + " [ 2.73807575e-02 7.73092546e-01 -6.33701988e-01]\n", + " [ 6.37416195e-02 7.72753132e-01 -6.31497904e-01]\n", + " [ 9.96214601e-02 7.71385595e-01 -6.28521940e-01]\n", + " [ 1.34815076e-01 7.69036922e-01 -6.24825662e-01]\n", + " [ 1.69124127e-01 7.65771595e-01 -6.20476344e-01]\n", + " [-7.63734998e-03 7.48569289e-01 -6.63012587e-01]\n", + " [ 2.90614907e-02 7.49327273e-01 -6.61561840e-01]\n", + " [ 6.54875172e-02 7.49071193e-01 -6.59244820e-01]\n", + " [ 1.01427856e-01 7.47828421e-01 -6.56098349e-01]\n", + " [ 1.36677139e-01 7.45644941e-01 -6.52175575e-01]\n", + " [ 1.71037385e-01 7.42584233e-01 -6.47545264e-01]]\n", + "DEBUG:root:fitpix2pix: visCut: True\n", + " [-12.895377 24.075011 ]\n", + " [-18.271377 24.075011 ]\n", + " [-23.647377 24.075011 ]\n", + " [-29.023377 24.075011 ]\n", + " [ -2.143377 18.699011 ]\n", + " [ -7.519377 18.699011 ]\n", + " [-12.895377 18.699011 ]\n", + " [-18.271377 18.699011 ]\n", + " [-23.647377 18.699011 ]\n", + " [-29.023377 18.699011 ]\n", + " [ -2.143377 13.323011 ]\n", + " [ -7.519377 13.323011 ]\n", + " [-12.895377 13.323011 ]\n", + " [-18.271377 13.323011 ]\n", + " [-23.647377 13.323011 ]\n", + " [-29.023377 13.323011 ]\n", + " [ -2.143377 7.947011 ]\n", + " [ -7.519377 7.947011 ]\n", + " [-12.895377 7.947011 ]\n", + " [-18.271377 7.947011 ]DEBUG:root:optics_fp: cphi: [0.00531582 0.00617606 0.00736845 0.00913141 0.01200322 0.01750968\n", + " 0.03234551 0.20821284 0.00531582 0.14311708 0.27310311 0.3897246\n", + " 0.4902447 0.57443147 0.64366516 0.70005401 0.20821284 0.985415\n", + " 0.9961538 0.99826353 0.99901596 0.99936749 0.99955952 0.99967574\n", + " 0.70005401 0.75147061 0.80542393 0.85983504 0.91133409 0.95525529\n", + " 0.98625153 0.99967574 0.00616661 0.00753628 0.00968808 0.01355957\n", + " 0.02258341 0.06743141 0.06593447 0.23049481 0.37750356 0.50072179\n", + " 0.5996194 0.67707715 0.93313131 0.9942732 0.99805551 0.99903282\n", + " 0.99942317 0.99961734 0.72190396 0.78684101 0.853656 0.91669352\n", + " 0.96742456 0.9961969 0.00579488 0.00579488 0.99966293 0.99966293\n", + " 0.07014401 0.24442291 0.39798307 0.52421253 0.62341756 0.6995908\n", + " 0.08562066 0.29440551 0.4684183 0.60117718 0.69788907 0.76731313\n", + " 0.10980719 0.36820194 0.56319871 0.69519142 0.78151879 0.83840459\n", + " 0.15281345 0.48480743 0.69026239 0.80432664 0.86864949 0.90694654\n", + " 0.24943532 0.67838632 0.84636544 0.9141376 0.94608152 0.96325609\n", + " 0.61041805 0.94029264 0.97858921 0.98919227 0.99351563 0.99568553]\n", + "DEBUG:root:radec2pix: lng: [224.38740491 220.12408621 215.2503637 209.71210534 203.48918374\n", + " 196.62002098 189.22355762 181.5046646 224.38740491 228.56999572\n", + " 233.3693139 238.84884696 245.04132431 251.92249978 259.38507008\n", + " 267.22753799 181.5046646 181.74464663 182.07430544 182.55541483\n", + " 183.32331288 184.74247093 188.24144189 209.436015 267.22753799\n", + " 266.78398778 266.170335 265.26578644 263.80029466 261.02373287\n", + " 253.83681058 209.436015 222.61267508 216.98461546 210.38276245\n", + " 202.75476399 194.17390418 184.89586052 226.12630502 231.65859743\n", + " 238.18310357 245.77405246 254.38382437 263.77502084 181.62909594\n", + " 181.98420755 182.53422407 183.50001953 185.63706132 194.24647314\n", + " 267.02133208 266.36745836 265.3435183 263.51322198 259.32352397\n", + " 241.01895217 224.38712569 224.38712569 209.62070535 209.62070535\n", + " 224.34955164 229.91816922 236.57007702 244.41761198 253.43870278\n", + " 263.38126527 218.DEBUG:root:make_az_asym: xyp: [[-32.29046994 -31.71666141]\n", + " [-32.28860507 -27.33023323]\n", + " [-32.2867402 -22.94380505]\n", + " [-32.28487534 -18.55737688]\n", + " [-32.28301047 -14.1709487 ]\n", + " [-32.2811456 -9.78452053]\n", + " [-32.27928073 -5.39809235]\n", + " [-32.27741587 -1.01166418]\n", + " [-32.29046994 -31.71666141]\n", + " [-27.90404176 -31.71852627]\n", + " [-23.51761359 -31.72039114]\n", + " [-19.13118541 -31.722256 ]\n", + " [-14.74475724 -31.72412087]\n", + " [-10.35832906 -31.72598574]\n", + " [ -5.97190089 -31.72785061]\n", + " [ -1.58547272 -31.72971547]\n", + " [-32.27741587 -1.01166418]\n", + " [-27.8909877 -1.01352905]\n", + " [-23.50455952 -1.01539391]\n", + " [-19.11813134 -1.01725878]\n", + " [-14.73170317 -1.01912365]\n", + " [-10.345275 -1.02098851]\n", + " [ -5.95884682 -1.02285338]\n", + " [ -1.57241864 -1.02471825]\n", + " [ -1.58547272 -31.72971547]\n", + " [ -1.58360785 -27.3432873 ]\n", + " [ -1.58174298 -22.95685912]\n", + " [ -1.57987811 -18.57043094]\n", + " [ -1.57801325 -14.18400278]\n", + " [ -1.57614838 -9.7975746 ]\n", + " [ -1.57428351 -5.41114642]\n", + " [ -1.57241864 -1.02471825]\n", + " [-32.27465685 -29.80416795]\n", + " [-32.27237127 -24.42816844]\n", + " [-32.2700857 -19.05216893]\n", + " [-32.26780012 -13.67616941]\n", + " [-32.26551454 -8.3001699 ]\n", + " [-32.26322896 -2.92417038]\n", + " [-30.37796373 -31.70247449]\n", + " [-25.00196422 -31.70476008]\n", + " [-19.62596471 -31.70704565]\n", + " [-14.24996519 -31.70933123]\n", + " [ -8.87396568 -31.71161681]\n", + " [ -3.49796617 -31.71390239]\n", + " [-30.36492242 -1.02747727]\n", + " [-24.98892291 -1.02976285]\n", + " [-19.61292339 -1.03204842]\n", + " [-14.23692388 -1.034334 ]\n", + " [ -8.86092437 -1.03661958]\n", + " [ -3.48492485 -1.03890516]\n", + " [ -1.59965962 -29.81720927]\n", + " [ -1.59737405 -24.44120975]\n", + " [ -1.59508847 -19.06521024]\n", + " [ -1.59280289 -13.68921073]\n", + " [ -1.59051731 -8.31321121]\n", + " [ -1.58823174 -2.9372117 ]\n", + " [-32.27546357 -31.70166778]\n", + " [-32.27546357 -31.70166778]\n", + " [ -1.58742502 -1.03971187]\n", + " [ -1.58742502 -1.03971187]\n", + " [-30.37715702 -29.80497466]\n", + " [-25.00115751 -29.80726024]\n", + " [-19.625158 -29.80954582]\n", + " [-14.24915848 -29.8118314 ]\n", + " [ -8.87315897 -29.81411698]\n", + " [ -3.49715945 -29.81640256]\n", + " [-30.37487145 -24.42897515]\n", + " [-24.99887193 -24.43126073DEBUG:root:radec2pix: camVec Shape: (3, 96)\n", + "]\n", + " [-19.62287241 -24.43354631]\n", + " [-14.2468729 -24.43583188]\n", + " [ -8.87087339 -24.43811746]\n", + " [ -3.49487388 -24.44040305]\n", + " [-30.37258587 -19.05297564]\n", + " [-24.99658635 -19.05526122]\n", + " [-19.62058684 -19.05754679]\n", + " [-14.24458732 -19.05983237]\n", + " [ -8.86858781 -19.06211795]\n", + " [ -3.4925883 -19.06440353]\n", + " [-30.37030029 -13.67697612]\n", + " [-24.99430077 -13.6792617 ]\n", + " [-19.61830126 -13.68154728]\n", + " [-14.24230175 -13.68383286]\n", + " [ -8.86630223 -13.68611844]\n", + " [ -3.49030272 -13.68840401]\n", + " [-30.36801471 -8.30097661]\n", + " [-24.9920152 -8.30326219]\n", + " [-19.61601568 -8.30554776]\n", + " [-14.24001617 -8.30783335]\n", + " [ -8.86401666 -8.31011893]\n", + " [ -3.48801714 -8.3124045 ]\n", + " [-30.36572914 -2.9249771 ]\n", + " [-24.98972962 -2.92726267]\n", + " [-19.6137301 -2.92954825]\n", + " [-14.23773059 -2.93183383]\n", + " [ -8.86173108 -2.93411941]\n", + " [ -3.48573156 -2.93640499]]\n", + "DEBUG:root:radec2pix: curVec: [[ 0.72471915 -0.54810629 0.41756633]\n", + " [ 0.70916065 -0.55027625 0.44078023]\n", + " [ 0.69271928 -0.55204454 0.46409786]\n", + " [ 0.67543075 -0.55337988 0.48740538]\n", + " [ 0.6573368 -0.55425684 0.51059542]\n", + " [ 0.63848676 -0.55465581 0.53356499]\n", + " [ 0.61893913 -0.55456311 0.55621409]\n", + " [ 0.59876233 -0.55397137 0.57844567]\n", + " [ 0.72471915 -0.54810629 0.41756633]\n", + " [ 0.73662208 -0.52372078 0.42790707]\n", + " [ 0.74781516 -0.49898178 0.43793798]\n", + " [ 0.75826165 -0.47399255 0.44762746]\n", + " [ 0.76793199 -0.44886176 0.4569503 ]\n", + " [ 0.77680388 -0.42370318 0.46588769]\n", + " [ 0.78486262 -0.39863485 0.47442694]\n", + " [ 0.79210224 -0.37377706 0.48256062]\n", + " [ 0.59876233 -0.55397137 0.57844567]\n", + " [ 0.61115194 -0.52873301 0.58901164]\n", + " [ 0.62295105 -0.50310202 0.59901615]\n", + " [ 0.63412092 -0.47718656 0.60842719]\n", + " [ 0.64463146 -0.4510971 0.61722094]\n", + " [ 0.65446077 -0.42494621 0.62538134]\n", + " [ 0.66359409 -0.39885012 0.63289925]\n", + " [ 0.67202281 -0.37293098 0.6397717 ]\n", + " [ 0.79210224 -0.37377706 0.48256062]\n", + " [ 0.77752844 -0.37419641 0.50539743]\n", + " [ 0.76202391 -0.37447184 0.52829007]\n", + " [ 0.74562243 -0.37457737 0.5511252 ]\n", + " [ 0.72836701 -0.37449052 0.57379295]\n", + " [ 0.71030852 -0.37419395 0.59618848]\n", + " [ 0.69150524 -0.37367604 0.61821252]\n", + " [ 0.67202281 -0.37293098 0.6397717 ]\n", + " [ 0.71808824 -0.54901654 0.42770331]\n", + " [ 0.69842218 -0.55140937 0.45623916]\n", + " [ 0.67746481 -0.55316729 0.48481686]\n", + " [ 0.65529041 -0.55424109 0.51323611]\n", + " [ 0.63198998 -0.55459465 0.54130715]\n", + " [ 0.60767538 -0.55420543 0.56884705]\n", + " [ 0.72994201 -0.53753169 0.42218994]\n", + " [ 0.74405837 -0.5073934 0.43465973]\n", + " [ 0.75707123 -0.47682611 0.44663185]\n", + " [ 0.76892323 -0.44602764 0.45805721]\n", + " [ 0.77957331 -0.41520735 0.46890117]\n", + " [ 0.78899795 -0.38458366 0.47914261]\n", + " [ 0.60430398 -0.5430253 0.58304392]\n", + " [ 0.61909678 -0.51181569 0.59562058]\n", + " [ 0.63296303 -0.4801235 0.60732135]\n", + " [ 0.64584377 -0.44815118 0.61809897]\n", + " [ 0.65769855 -0.4161062 0.62792376]\n", + " [ 0.66850276 -0.38420489 0.63678149]\n", + " [ 0.78584055 -0.3740608 0.49247654]\n", + " [ 0.76734857 -0.37448244 0.52051807]\n", + " [ 0.74749102 -0.37466163 0.54853061]\n", + " [ 0.72634336 -0.37455539 0.57631032]\n", + " [ 0.70399919 -0.37413186 0.60366422]\n", + " [ 0.68056887 -0.37337207 0.63041201]\n", + " [ 0.72470936 -0.54803168 0.41768125]\n", + " [ 0.72470936 -0.54803168 0.41768125]\n", + " [ 0.67206289 -0.3730221 0.63967647]\n", + " [ 0.67206289 -0.3730221 0.63967647]\n", + " [ 0.72334214 -0.53847494 0.43222781]\n", + " [ 0.73752269 -0.50821323 0.44472418]\n", + " [ 0.75060559 -0.47751466 0.45669574]\n", + " [ 0.76253353 -0.44657736 0.46809322]\n", + " [ 0.77326532 -0.4156111 0.47888219]\n", + " [ 0.78277651 -0.38483565 0.4890424 ]\n", + " [ 0.70372988 -0.54076324 0.46080297]\n", + " [ 0.71807619 -0.51019185 0.47336124]\n", + " [ 0.73134454 -0.47916487 0.4853207 ]\n", + " [ 0.74347819 -0.44788118 0.49663128]\n", + " [ 0.75443642 -0.41655064 0.50725857]\n", + " [ 0.76419366 -0.38539457 0.51718379]\n", + " [ 0.68281681 -0.54243641 0.48941183]\n", + " [ 0.69730539 -0.51161465 0.50201159]\n", + " [ 0.71074051 -0.48032385 0.51394253]\n", + " [ 0.72306596 -0.44876375 0.52515398]\n", + " [ 0.73424211 -0.41714357 0.53561158]\n", + " [ 0.74424378 -0.38568394 0.54529725]\n", + " [ 0.66067708 -0.54344566 0.51785385]\n", + " [ 0.67528468 -0.51243388 0.53047348]\n", + " [ 0.6888689 -0.48094444 0.54235789]\n", + " [ 0.70137355 -0.44917816 0.55345652]\n", + " [ 0.71275979 -0.41734347 0.56373568]\n", + " [ 0.72300323 -0.38565941 0.57317811]\n", + " [ 0.63740138 -0.5437556 0.54593894]\n", + " [ 0.6521044 -0.51261608 0.55855582]\n", + " [ 0.66582059 -0.48099444 0.57037469]\n", + " [ 0.67849299 -0.44909251 0.58134601]\n", + " [ 0.69008271 -0.41711814 0.5914375 ]\n", + " [ 0.7005658 -0.38528875 0.60063312]\n", + " [ 0.61310117 -0.54334446 0.57348387]\n", + " [ 0.62787506 -0.51214156 0.58607502]\n", + " [ 0.64170549 -0.48045563 0.59780971]\n", + " [ 0.6545341 -0.44848909 0.60863999]\n", + " [ 0.66632099 -0.41644944 0.61853554]\n", + " [ 0.67704185 -0.38455313 0.62748165]]\n", + "DEBUG:root:fitpix2pix: ccdpx: shape: (96, 2)\n", + "DEBUG:root:make_az_asym: xyp: shape: (96, 2)\n", + "DEBUG:root:radec2pix: curVec Shape: (96, 3)\n", + "DEBUG:root:fitpix2pix: visCut: True\n", + "DEBUG:root:cartToSphere: vec: [[-0.00114705 0.20838541 0.97804612]\n", + " [-0.00115629 0.18089194 0.9835023 ]\n", + " [-0.0011641 0.15270652 0.9882709 ]\n", + " [-0.00117048 0.12393558 0.99228958]\n", + " [-0.0011DEBUG:root:optics_fp: sphi: [-0.99998587 -0.99998093 -0.99997285 -0.99995831 -0.99992796 -0.99984669\n", + " -0.99947675 -0.97808354 -0.99998587 -0.98970577 -0.96198477 -0.92093145\n", + " -0.87158484 -0.81855268 -0.76530723 -0.7140899 -0.97808354 -0.17016839\n", + " -0.08762197 -0.05890603 -0.04435211 -0.03556139 -0.02967765 -0.02546394\n", + " -0.7140899 -0.65976656 -0.59269916 -0.51057194 -0.41166757 -0.29578258\n", + " -0.16525108 -0.02546394 -0.99998099 -0.9999716 -0.99995307 -0.99990806\n", + " -0.99974496 -0.99772391 -0.99782396 -0.97307356 -0.92600813 -0.86560828\n", + " -0.80028531 -0.73591205 -0.35953576 -0.10686813 -0.06233133 -0.04397062\n", + " -0.03396069 -0.02766174 -0.69199326 -0.61715575 -0.52083725 -0.39959102\n", + " -0.25315949 -0.08713059 -0.99998321 -0.99998321 -0.02596193 -0.02596193\n", + " -0.99753688 -0.96966873 -0.91739276 -0.85158747 -0.78188909 -0.71454371\n", + " -0.99632781 -0.95568059 -0.88350682 -0.79911576 -0.71620587 -0.64127261\n", + " -0.99395291 -0.92974584 -0.8263215 -0.71882466 -0.6238817 -0.54504838\n", + " -0.98825505 -0.8746209\n", + " [-23.647377 7.947011 ]\n", + " [-29.023377 7.947011 ]\n", + " [ -2.143377 2.571011 ]\n", + " [ -7.519377 2.571011 ]\n", + " [-12.895377 2.571011 ]\n", + " [-18.271377 2.571011 ]\n", + " [-23.647377 2.571011 ]\n", + " [-29.023377 2.571011 ]]\n", + "66991645 224.21163124 231.12094806 239.6844282\n", + " 250.04034734 261.9370562 211.92326671 217.13924206 223.99660639\n", + " 233.09330633 244.99523074 259.69237756 204.0228705 208.45144372\n", + " 214.63892612 223.61475061 236.90559041 255.7456151 195.0232601\n", + " 198.0723045 202.59166286 209.85191686 222.74900651 247.14363581\n", + " 185.201902 186.31923819 188.04100537 191.03114261 197.43976942\n", + " 218.89848666]\n", + "7539 0.09468513 0.99550658]\n", + " [-0.00117881 0.06506336 0.99788044]\n", + " [-0.00118068 0.03518275 0.9993802 ]\n", + " [-0.00118097 0.0051606 0.99998599]\n", + " [-0.00114705 0.20838541 0.97804612]\n", + " [-0.03018244 0.20823844 0.97761228]\n", + " [-0.05910007 0.20782077 0.9763799 ]\n", + " [-0.08778716 0.20713345 0.97436602]\n", + " [-0.11613176 0.20617803 0.9715987 ]\n", + " [-0.14402308 0.20495645 0.96811684]\n", + " [-0.17135219 0.20347155 0.96396979]\n", + " [-0.19801388 0.2017284 0.95921643]\n", + " [-0.00118097 0.0051606 0.99998599]\n", + " [-0.03121228 0.00515607 0.99949948]\n", + " [-0.06111791 0.00514464 0.99811729]\n", + " [-0.09077999 0.00512646 0.99585778]\n", + " [-0.12008538 0.00510175 0.99275046]\n", + " [-0.14892541 0.0050707 0.98883543]\n", + " [-0.17719395 0.00503345 0.98416308]\n", + " [-0.20478471 0.00499006 0.97879432]\n", + " [-0.19801388 0.2017284 0.95921643]\n", + " [-0.19975823 0.17512925 0.96406763]\n", + " [-0.20124936 0.14784829 0.96831791]\n", + " [-0.20248221 0.11999042 0.97190702]\n", + " [-0.20345393 0.09166442 0.97478415]\n", + " [-0.20416257 0.06298098 0.97690892]\n", + " [-0.20460656 0.03405194 0.97825182]\n", + " [-0.20478471 0.00499006 0.97879432]\n", + " [-0.00125101 0.19649007 0.98050502]\n", + " [-0.00126235 0.1623152 0.98673815]\n", + " [-0.00127136 0.12720686 0.99187539]\n", + " [-0.00127799 0.09136033 0.99581708]\n", + " [-0.00128216 0.05497503 0.99848691]\n", + " [-0.00128379 0.01826009 0.99983245]\n", + " [-0.01381426 0.20826196 0.97797552]\n", + " [-0.04933618 0.20DEBUG:root:radec2pix: camVec: [[-0.00114705 -0.00115629 -0.0011641 -0.00117048 -0.00117539 -0.00117881\n", + " -0.00118068 -0.00118097 -0.00114705 -0.03018244 -0.05910007 -0.08778716\n", + " -0.11613176 -0.14402308 -0.17135219 -0.19801388 -0.00118097 -0.03121228\n", + " -0.06111791 -0.09077999 -0.12008538 -0.14892541 -0.17719395 -0.20478471\n", + " -0.19801388 -0.19975823 -0.20124936 -0.20248221 -0.20345393 -0.20416257\n", + " -0.20460656 -0.20478471 -0.00125101 -0.00126235 -0.00127136 -0.00127799\n", + " -0.00128216 -0.00128379 -0.01381426 -0.04933618 -0.08456905 -0.11930642\n", + " -0.15334441 -0.18648385 -0.01428247 -0.05101935 -0.08744986 -0.12336368\n", + " -0.15856056 -0.19284509 -0.1987148 -0.20068229 -0.20226422 -0.20345456\n", + " -0.20424964 -0.20464672 -0.00124645 -0.00124645 -0.20469148 -0.20469148\n", + " -0.01386808 -0.04952932 -0.08490071 -0.11977552 -0.15394951 -0.18722234\n", + " -0.01400325 -0.05001432 -0.08573269 -0.12095098 -0.15546507 -0.18907339\n", + " -0.01411268 -0.05040698 -0.08640482 -0.12189811 -0.15668376 -0.19056116\n", + " -0.014DEBUG:root:radec2pix: lat: [73.24108038 74.22539246 75.14065481 75.95980834 76.6531185 77.19018187\n", + " 77.5432879 77.69182998 73.24108038 74.24861044 75.19133398 76.04212851\n", + " 76.77071823 77.34548632 77.73675519 77.92139244 77.69182998 79.29098794\n", + " 80.92271511 82.58149911 84.2618841 85.95783408 87.66008742 89.3157252\n", + " 77.92139244 79.52414159 81.15801466 82.81709844 84.49494889 86.18266378\n", + " 87.85870936 89.3157252 73.68081786 74.84436919 75.87765867 76.72697854\n", + " 77.33670031 77.65849826 73.69035695 74.88520803 75.9561532 76.84869716\n", + " 77.50496612 77.87275428 78.38454537 80.36704866 82.39295371 84.45217978\n", + " 86.53330534 88.61095022 78.61571107 80.60164359 82.62842612 84.684393\n", + " 86.75213987 88.75761015 73.24806584 73.24806584 89.30770045 89.30770045\n", + " 74.1417384 75.39152116 76.51854281 77.46407515 78.16380788 78.55793051\n", + " 75.35984123 76.77406669 78.07566348 79.19387762 80.04201199 80.52949342\n", + " 76.4480688 78.03443361 79.53211824 80.86193095 81.91012885 82.53435821\n", + " 77.34827857 79.10130772 80[ 8.95506578e-02 3.08886627e-01 -9.46873662e-01]\n", + " [ 6.85906055e-02 3.28824164e-01 -9.41897021e-01]\n", + " [ 4.73545927e-02 3.48681919e-01 -9.36044049e-01]\n", + " [ 2.59235811e-02 3.68375075e-01 -9.29315755e-01]\n", + " [ 4.38129107e-03 3.87820731e-01 -9.21724408e-01]\n", + " [-1.37233526e-01 2.45464306e-01 -9.59642764e-01]\n", + " [-1.18037785e-01 2.65693189e-01 -9.56804165e-01]\n", + " [-9.83727286e-02 2.86109206e-01 -9.53133951e-01]\n", + " [-7.83112730e-02 3.06619058e-01 -9.48605344e-01]\n", + " [-5.79274459e-02 3.27132562e-01 -9.43201303e-01]\n", + " [-3.72975712e-02 3.47561482e-01 -9.36915101e-01]\n", + " [-1.65007780e-02 3.67819119e-01 -9.29750945e-01]\n", + " [ 4.38129107e-03 3.87820731e-01 -9.21724408e-01]\n", + " [ 1.70090294e-02 1.24960296e-01 -9.92015936e-01]\n", + " [ 4.14226895e-02 1.47568561e-01 -9.88184032e-01]\n", + " [ 6.61827441e-02 1.70661747e-01 -9.83104477e-01]\n", + " [ 9.11470016e-02 1.94068600e-01 -9.76744390e-01]\n", + " [ 1.16171891e-01 2.17627579e-01 -9.69093560e-01]\n", + " [ 1.41112500e-01 2.41185746e-01 -9.60164933e-01]\n", + " [-2.12745364e-04 1.24703859e-019584 -0.05070556 -0.08691471 -0.12261435 -0.15760261 -0.19168088\n", + " -0.01425179 -0.05090701 -0.08725814 -0.12309542 -0.15821798 -0.19242913\n", + " -0.01427955 -0.05100809 -0.08743051 -0.12333654 -0.15852587 -0.19280295]\n", + " [ 0.20838541 0.18089194 0.15270652 0.12393558 0.09468513 0.06506336\n", + " 0.03518275 0.0051606 0.20838541 0.20823844 0.20782077 0.20713345\n", + " 0.20617803 0.20495645 0.20347155 0.2017284 0.0051606 0.00515607\n", + " 0.00514464 0.00512646 0.00510175 0.0050707 0.00503345 0.00499006\n", + " 0.2017284 0.17512925 0.14784829 0.11999042 0.09166442 0.06298098\n", + " 0.03405194 0.00499006 0.19649007 0.1623152 0.12720686 0.09136033\n", + " 0.05497503 0.01826009 0.20826196 0.20789982 0.20713224 0.20596186\n", + " 0.20439232 0.20242966 0.00526224 0.00525184 0.00523103 0.00520016\n", + " 0.00515961 0.0051096 0.19022738 0.157155 0.12316211 0.08844755\n", + " 0.05321501 0.01767079 0.20829266 0.20829266 0.0050897 0.0050897\n", + " 0.19646111 0.19611969 0.19539637 0.19429789982 0.97690512]\n", + " [-0.08456905 0.20713224 0.97465087]\n", + " [-0.11930642 0.20596186 0.97125985]\n", + " [-0.15334441 0.20439232 0.96680364]\n", + " [-0.18648385 0.20242966 0.96137714]\n", + " [-0.01428247 0.00526224 0.99988415]\n", + " [-0.05101935 0.00525184 0.99868386]\n", + " [-0.08744986 0.00523103 0.99615519]\n", + " [-0.12336368 0.00520016 0.9923479 ]\n", + " [-0.15856056 0.00515961 0.98733577]\n", + " [-0.19284509 0.0051096 0.98121591]\n", + " [-0.1987148 0.19022738 0.96141873]\n", + " [-0.20068229 0.157155 0.96696894]\n", + " [-0.20226422 0.12316211 0.9715556 ]\n", + " [-0.20345456 0.08844755 0.97508116]\n", + " [-0.20424964 0.05321501 0.97747135]\n", + " [-0.20464672 0.01767079 0.97867638]\n", + " [-0.00124645 0.20829266 0.97806575]\n", + " [-0.00124645 0.20829266 0.97806575]\n", + " [-0.20469148 0.0050897 0.97881331]\n", + " [-0.20469148 0.0050897 0.97881331]\n", + " [-0.01386808 0.19646111 0.98041354]\n", + " [-0.04952932 0.19611969 0.9793283 ]\n", + " [-0.08490071 0.19539637 0.97704254]\n", + " [-0.11977552 0.19429398 0.97360345]\n", + " [-0.15394951 0.1928159 0.96908285]\n", + " [-0.398 0.1928159 0.19096695\n", + " 0.16229116 0.16200846 0.16141067 0.16050163 0.15928501 0.15776388\n", + " 0.1271878 0.12696445 0.12649338 0.12577923 0.12482642 0.12363768\n", + " 0.0913464 0.09118412 0.09084281 0.0903271 0.0896414 0.08878838\n", + " 0.05496643 0.05486748 0.05466012 0.05434775 0.0539337 0.05341999\n", + " 0.01825699 0.0182233 0.01815347 0.01804874 0.01791034 0.01773905]\n", + " [ 0.97804612 0.9835023 0.9882709 0.99228958 0.99550658 0.99788044\n", + " 0.9993802 0.99998599 0.97804612 0.97761228 0.9763799 0.97436602\n", + " 0.9715987 0.96811684 0.96396979 0.95921643 0.99998599 0.99949948\n", + " 0.99811729 0.99585778 0.99275046 0.98883543 0.98416308 0.97879432\n", + " 0.95921643 0.96406763 0.96831791 0.97190702 0.97478415 0.97690892\n", + " 0.97825182 0.97879432 0.98050502 0.98673815 0.99187539 0.99581708\n", + " 0.99848691 0.99983245 0.97797552 0.97690512 0.97465087 0.97125985\n", + " 0.96680364 0.96137714 0.99988415 0.99868386 0.99615519 0.9923479\n", + " 0.98733DEBUG:root:radec2pix: curVec Shape: (96, 3)\n", + ".80570953 82.38629346 83.70950064 84.55228195\n", + " 77.99844552 79.88985033 81.78208758 83.62548455 85.30897599 86.53756064\n", + " 78.34312947 80.31550148 82.32609465 84.35907996 86.38425999 88.27008044]\n", + "577 0.98121591 0.96141873 0.96696894 0.9715556 0.97508116\n", + " 0.97747135 0.97867638 0.97806575 0.97806575 0.97881331 0.97881331\n", + " 0.98041354 0.9793283 0.97704254 0.97360345 0.96908285 0.96357637\n", + " 0.98664355 0.98552109 0.9831564 0.9795969 0.97491482 0.9692068\n", + " 0.99177825 0.99062564 0.98819716 0.98454072 0.97972882 0.97385839\n", + " 0.99571799 0.99454231 0.99206523 0.98833534 0.98342556 0.97743289\n", + " 0.99838649 0.99719508 0.99468502 0.99090557 0.98593013 0.97985577\n", + " 0.99973135 0.99853197 0.9960052 0.99220076 0.98719237 0.98107714]]\n", + "1 -9.92193984e-01]\n", + " [-2.52546212e-02 1.46589193e-01 -9.88875024e-01]\n", + " [-5.07046000e-02 1.68966801e-01 -9.84316648e-01]\n", + " [-7.64162154e-02 1.91668155e-01 -9.78480393e-01]\n", + " [-1.02241578e-01 2.14534652e-01 -9.71350371e-01]\n", + " [-1.28031227e-01 2.37416389e-01 -9.62933779e-01]\n", + " [ 1.41424528e-01 2.57943788e-01 -9.55753161e-01]\n", + " [ 1.16966017e-01 2.82161887e-01 -9.52209861e-01]\n", + " [ 9.18235472e-02 3.06569551e-01 -9.47408859e-01]\n", + " [ 6.61365187e-02 3.31002317e-01 -9.41309421e-01]\n", + " [ 4.00487895e-02 3.55300979e-01 -9.33893628e-01]\n", + " [ 1.37105939e-02 3.79310150e-01 -9.25168001e-01]\n", + " [-1.28854660e-01 2.54191170e-01 -9.58531860e-01]\n", + " [-1.05002875e-01 2.79120875e-01 -9.54497739e-01]\n", + " [-8.05186956e-02 3.04238663e-01 -9.49186797e-01]\n", + " [-5.55378734e-02 3.29377295e-01 -9.42563601e-01]\n", + " [-3.02009826e-02 3.54374286e-01 -9.34615839e-01]\n", + " [-4.65478769e-03 3.79070796e-01 -9.25355966e-01]\n", + " [ 8.50123609e-03 1.17129969e-01 -9.93080208e-01]\n", + " [ 8.50123609e-03 1.17129969e-01 -9.93080208e-01]\n", + " [ 4.38359051e-03 3.87686879e-01 -9.21780705e-01]\n", + " [ 4.38359051e-03 3.87686879e-01 -9.21780705e-01]\n", + " [ 8.29496824e-03 1.32610099e-01 -9.91133571e-01]\n", + " [-1.67587138e-02 1.54695371e-01 -9.87820068e-01]\n", + " [-4.22378194e-02 1.77250580e-01 -9.83258968e-01]\n", + " [-6.79960543e-02 2.00107665e-01 -9.77411612e-01]\n", + " [-9.38854397e-02 2.23108487e-01 -9.70261886e-01]\n", + " [-1.19756123e-01 2.46103289e-01 -9.61816844e-01]\n", + " [ 3.27203708e-02 1.55418547e-01 -9.87306666e-01]\n", + " [ 7.66718162e-03 1.78029215e-01 -9.83995332e-01]\n", + " [-1.78606585e-02 2.01049019e-01 -9.79418342e-01]\n", + " [-4.37175639e-02 2.24311630e-01 -9.73536372e-01]\n", + " [-6.97554519e-02 2.47660095e-01 -9.66332580e-01]\n", + " [-9.58233950e-02 2.70944691e-01 -9.57813579e-01]\n", + " [ 5.75100424e-02 1.78689957e-01 -9.82223241e-01]\n", + " [ 3.25082106e-02 2.01766295e-01 -9.78894059e-01]\n", + " [ 6.98254624e-03 2.25195170e-01 -9.74288653e-01]\n", + " [-1.89224518e-02 2.48811893e-01 -9.68366967e-01]\n", + " [-4.50589648e-02 2.72460120e-01 -9.61111426e-01]\n", + " [-7.12752705e-02 2.95989489e-01 -9.52528245e-01]\n", + " [ 8.25219008e-02 2.02253527e-01 -9.75850217e-01]\n", + " [ 5.76227825e-02 2.25737503e-01 -9.72482491e-01]\n", + " [ 3.21510667e-02 2.49521543e-01 -9.67835373e-01]\n", + " [ 6.24981795e-03 2.73441963e-01 -9.61868199e-01]\n", + " [-1.99338839e-02 2.97342252e-01 -9.54562845e-01]\n", + " [-4.62480334e-02 3.21070792e-01 -9.45925296e-01]\n", + " [ 1.07612215e-01 2.25948134e-01 -9.68177180e-01]\n", + " [ 8.28668210e-02 2.49782788e-01 -9.64749527e-01]\n", + " [ 5.75008266e-02 2.73868607e-01 -9.60046687e-01]\n", + " [ 3.16556687e-02 2.98042082e-01 -9.54027691e-01]\n", + " [ 5.47723660e-03 3.22145831e-01 -9.46674212e-01]\n", + " [-2.08828132e-02 3.46026620e-01 -9.37992263e-01]\n", + " [ 1.32635639e-01 2.49620936e-01 -9.59216960e-01]\n", + " [ 1.08093746e-01 2.73749211e-01 -9.55707650e-01]\n", + " [ 8.28842385e-02 2.98082681e-01 -9.50934760e-01]\n", + " [ 5.71469949e-02 3.22457237e-01 -9.44857424e-01]\n", + " [ 3.10264193e-02 3.46714183e-01 -9.37457539e-01]\n", + " [ 4.67320602e-03 3.70698648e-01 -9.28741446e-01]]\n", + "2 -0.72355914 -0.59418739 -0.49542716 -0.42124573\n", + " -0.96839146 -0.73470538 -0.53260261 -0.40540407 -0.32392864 -0.26858462\n", + " -0.79207942 -0.34036707 -0.20582312 -0.14662418 -0.11369565 -0.09279187]\n", + "18722234 0.19096695 0.96357637]\n", + " [-0.01400325 0.16229DEBUG:root:radec2pix: xyfp Shape: (96, 2)\n", + "116 0.98664355]\n", + " [-0.05001432 0.16200846 0.98552109]\n", + " [-0.08573269 0.16141067 0.9831564 ]\n", + " [-0.12095098 0.16050163 0.9795969 ]\n", + " [-0.15546507 0.15928501 0.97491482]\n", + " [-0.18907339 0.15776388 0.9692068 ]\n", + " [-0.01411268 0.1271878 0.99177825]\n", + " [-0.05040698 0.12696445 0.99062564]\n", + " [-0.08640482 0.12649338 0.98819716]\n", + " [-0.12189811 0.12577923 0.98454072]\n", + " [-0.15668376 0.12482642 0.97972882]\n", + " [-0.19056116 0.12363768 0.97385839]\n", + " [-0.01419584 0.0913464 0.99571799]\n", + " [-0.05070556 0.09118412 0.99454231]\n", + " [-0.08691471 0.09084281 0.99206523]\n", + " [-0.12261435 0.0903271 0.98833534]\n", + " [-0.15760261 0.0896414 0.98342556]\n", + " [-0.19168088 0.08878838 0.97743289]\n", + " [-0.01425179 0.05496643 0.99838649]\n", + " [-0.05090701 0.05486748 0.99719508]\n", + " [-0.08725814 0.05466012 0.99468502]\n", + " [-0.12309542 0.05434775 0.99090557]\n", + " [-0.15821798 0.0539337 0.98593013]\n", + " [-0.19242913 0.05341999 0.97985577]\n", + " [-0.01427955 0.01825699 0.99973135]\n", + " [-0.05100809 0.0182233 0.99853197]\n", + " [-0.08743051 0.01815347 0.9960052 ]\n", + " [-0.12333654 0.01804874 0.99220076]\n", + " [-0.15852587 0.01791034 0.98719237]\n", + " [-0.19280295 0.01773905 0.98107714]]\n", + "DEBUG:root:radec2pix: xyfp: [[-32.29046994 -31.71666141]\n", + " [-32.28860507 -27.33023323]\n", + " [-32.2867402 -22.94380505]\n", + " [-32.28487534 -18.55737688]\n", + " [-32.28301047 -14.1709487 ]\n", + " [-32.2811456 -9.78452053]\n", + " [-32.27928073 -5.39809235]\n", + " [-32.27741587 -1.01166418]\n", + " [-32.29046994 -31.71666141]\n", + " [-27.90404176 -31.71852627]\n", + " [-23.51761359 -31.72039114]\n", + " [-19.13118541 -31.722256 ]\n", + " [-14.74475724 -31.72412087]\n", + " [-10.35832906 -31.72598574]\n", + " [ -5.97190089 -31.72785061]\n", + " [ -1.58547272 -31.72971547]\n", + " [-32.27741587 -1.01166418]\n", + " [-27.8909877 -1.01352905]\n", + " [-23.50455952 -1.01539391]\n", + " [-19.11813134 -1.01725878]\n", + " [-14.73170317 -1.01912365]\n", + " [-10.345275 -1.02098851]\n", + " [ -5.95884682 -1.02285338]\n", + " [ -1.57241864 -1.02471825]\n", + " [ -1.58547272 -31.72971547]\n", + " [ -1.58360785 -27.3432873 ]\n", + " [ -1.58174298 -22.95685912DEBUG:root:radec2pix: camVec: [[ 0.00114566 0.00115565 0.00116422 0.00117136 0.00117701 0.00118116\n", + " 0.00118376 0.00118481 0.00114566 0.03017404 0.05908469 0.08776498\n", + " 0.11610332 0.14398904 0.17131174 0.19796003 0.00118481 0.03120455\n", + " 0.06110052 0.09075528 0.1200543 0.14888674 0.17714546 0.20472589\n", + " 0.19796003 0.19971011 0.20119978 0.20242973 0.20339908 0.20410611\n", + " 0.20454887 0.20472589 0.00124992 0.00126219 0.00127213 0.00127966\n", + " 0.00128472 0.00128725 0.01380981 0.04932315 0.08454761 0.11927732\n", + " 0.15330846 0.18643745 0.01428113 0.05100494 0.08742589 0.12333185\n", + " 0.15851879 0.19279062 0.19866498 0.20063357 0.20221208 0.20339952\n", + " 0.20419277 0.20458843 0.00124504 0.00124504 0.2046327 0.2046327\n", + " 0.01386393 0.04951642 0.08487904 0.1197456 0.15391263 0.18717755\n", + " 0.01400003 0.0500023 0.08571147 0.12092013 0.15542529 0.1890269\n", + " 0.01411023 0.05039551 0.08638432 0.12186779 0.15664287 0.19051132\n", + " 0.01419DEBUG:root:radec2pix: lng: [ 90.31538026 90.36623882 90.43676438 90.5410988 90.71121584\n", + " 91.03796151 91.92203204 102.88976492 90.31538026 98.24711833\n", + " 105.87469321 112.96816895 119.3908045 125.09574844 130.10218059\n", + " 134.46760759 102.88976492 170.61981741 175.18843619 176.76786642\n", + " 177.56728748 178.0499121 178.37286738 178.60412954 134.46760759\n", + " 138.7587586 143.69705248 149.3491301 155.74646239 162.85581906\n", + " 170.55107093 178.60412954 90.36478543 90.44558973 90.57261901\n", + " 90.80142559 91.33604138 94.02159324 93.79493665 103.34977578\n", + " 112.20947139 120.08219547 126.87889854 132.65213472 159.7741798\n", + " 174.12277646 176.57679256 177.5862344 178.13623505 178.48225333\n", + " 136.25009833 141.93538112 148.66205842 156.50402904 165.39685811\n", + " 175.06487905 90.34286209 90.34286209 178.57562014 178.57562014\n", + " 94.0377805 104.17347615 113.48518905 121.65239591 128.60482826\n", + " 134.43270854 94.93153704 107.15620301 117.97484261 127.00098521\n", + " 134.30466928 140.15819331 96.33160595 111.653892DEBUG:root:radec2pix: camVec Shape: (3, 96)\n", + "66 124.33611449\n", + " 134.10224284 141.45645803 147.02415603 98.83348775 119.07751066\n", + " 133.73407847 143.6218029 150.36959526 155.14598444 104.53566541\n", + " 132.85570308 147.93620706 156.17810512 161.17666862 164.48488524\n", + " 128.03043433 160.3400738 168.27016728 171.67458296 173.55402386\n", + " 174.74323713]\n", + "DEBUG:root:radec2pix: curVec: [[ 3.12651176e-01 -1.64355412e-01 -9.35540774e-01]\n", + " [ 3.10226247e-01 -1.37949270e-01 -9.40600699e-01]\n", + " [ 3.07367469e-01 -1.10911049e-01 -9.45105274e-01]\n", + " [ 3.04090342e-01 -8.33506370e-02 -9.48989850e-01]\n", + " [ 3.00409524e-01 -5.53769949e-02 -9.52201400e-01]\n", + " [ 2.96339612e-01 -2.70992749e-02 -9.54698101e-01]\n", + " [ 2.91895950e-01 1.37255844e-03 -9.56449094e-01]\n", + " [ 2.87095248e-01 2.99276484e-02 -9.57434412e-01]\n", + " [ 3.12651176e-01 -1.64355412e-01 -9.35540774e-01]\n", + " [ 2.87428633e-01 -1.70771576e-01 -9.42455224e-01]\n", + " [ 2.61417048e-01 -1.77048272e-01 -9.48849322e-01]\n", + " [ 2.34721456e-01 -1.83166990e-01 -9.54649513e-01]\n", + " [ 2.07446104e-01 -1.89107870e-01 -9.59793898e-01]\n", + " [ 1.79695853e-01 -1.94850068e-01 -9.64231742e-01]\n", + " [ 1.51577142e-01 -2.00372296e-01 -9.67923196e-01]\n", + " [ 1.23198352e-01 -2.05653407e-01 -9.70839246e-01]\n", + " [ 2.87095248e-01 2.99276484e-02 -9.57434412e-01]\n", + " [ 2.60697987e-01 2.51097509e-02 -9.65093809e-01]\n", + " [ 2.33548383e-01 2.01754766e-02 -9.72135846e-01]\n", + " [ 2.05743638e-01 1.51432405e-02 -9.78488752e-01]\n", + " [ 1.77383698e-01 1.00318116e-02 -9.84090639e-01]\n", + " [ 1.48572709e-01 4.86053844e-03 -9.88889542e-01]\n", + " [ 1.19419384e-01 -3.50616595e-04 -9.92843839e-01]\n", + " [ 9.00365025e-02 -5.58119351e-03 -9.95922828e-01]\n", + " [ 1.23198352e-01 -2.05653407e-01 -9.70839246e-01]\n", + " [ 1.18949034e-01 -1.78584047e-01 -9.76708178e-01]\n", + " [ 1.14513266e-01 -1.50834633e-01 -9.81904082e-01]\n", + " [ 1.09904017e-01 -1.22507840e-01 -9.86363491e-01]\n", + " [ 1.05135400e-01 -9.37087047e-02 -9.90032942e-01]\n", + " [ 1.00222962e-01 -6.45458398e-02 -9.92869172e-01]\n", + " [ 9.51837980e-02 -3.51315605e-02 -9.94839594e-01]\n", + " [ 9.00365025e-02 -5.58119351e-03 -9.95922828e-01]DEBUG:root:radec2pix: curVec Shape: (96, 3)\n", + "]\n", + " [ -1.57987811 -18.57043094]\n", + " [ -1.57801325 -14.18400278]\n", + " [ -1.57614838 -9.7975746 ]\n", + " [ -1.57428351 -5.41114642]\n", + " [ -1.57241864 -1.02471825]\n", + " [-32.27465685 -29.80416795]\n", + " [-32.27237127 -24.42816844]\n", + " [-32.2700857 -19.05216893]\n", + " [-32.26780012 -13.67616941]\n", + " [-32.26551454 -8.3001699 ]\n", + " [-32.26322896 -2.92417038]\n", + " [-30.37796373 -31.70247449]\n", + " [-25.00196422 -31.70476008]\n", + " [-19.62596471 -31.70704565]\n", + " [-14.24996519 -31.70933123]\n", + " [ -8.87396568 -31.71161681]\n", + " [ -3.49796617 -31.71390239]\n", + " [-30.36492242 -1.02747727]\n", + " [-24.98892291 -1.02976285]\n", + " [-19.61292339 -1.03204842]\n", + " [-14.23692388 -1.034334 ]\n", + " [ -8.86092437 -1.03661958]\n", + " [ -3.48492485 -1.03890516]\n", + " [ -1.59965962 -29.81720927]\n", + " [ -1.59737405 -24.44120975]\n", + " [ -1.59508847 -19.06521024]\n", + " [ -1.59280289 -13.68921073]\n", + " [ -1.59051731 -8.31321121]\n", + " [ -1.58823174 -2.9372117 ]\n", + " [-32.27546357 -31.70166778]\n", + " [-32.27546357 -31.70166778]\n", + " [ -1.58742502 -1.03971187]\n", + " [ -1.58742502 -1.0397118DEBUG:root:optics_fp: rtanth: [45.10526614 42.15252235 39.46728719 37.10767964 35.13935868 33.63109692\n", + " 32.64672024 32.23425998 45.10526614 42.08371704 39.32015966 36.87264817\n", + " 34.80791464 33.1974573 32.10970154 31.5986741 32.23425998 27.84962696\n", + " 23.46566508 19.08283694 14.70215645 10.32635724 5.96618932 1.74318313\n", + " 31.5986741 27.21812469 22.83983208 18.46540167 14.09842896 9.748941\n", + " 5.45889306 1.74318313 43.77728663 40.33061683 37.34259278 34.93111177\n", + " 33.22196043 32.3267303 43.74864122 40.21129183 37.11812392 34.58850978\n", + " 32.75328451 31.73315358 30.32290674 24.94961031 19.57779834 14.20915457\n", + " 8.84944693 3.53950567 29.68929466 24.32204857 18.9597634 13.60830488\n", + " 8.2886698 3.16557807 45.08405409 45.08405409 1.76362955 1.76362955\n", + " 42.40073703 38.740507 35.51948783 32.86706408 30.92986484 29.84747775\n", + " 38.83207862 34.7984872 31.1727741 28.11319496 25.82178089 24.5148885\n", + " 35.71891532 31.28650338 27.19655174 23.62757526 20.84885967 19.20651814\n", + " 33.18967076 28.36474267 23.77742123 19.59529652 16.13655116 13.95004204\n", + " 31.3858301 26.23117825 21.1868319 16.35517444 11.99601471 8.83853824\n", + " 30.43664187 25.08771711 19.753498 14.45027919 9.23164159 4.4089223 ]\n", + "DEBUG:root:radec2pix: lat: [77.97206498 79.57806769 81.21593647 82.8803899 84.56638266 86.26889583\n", + " 87.98262539 89.69667435 77.97206498 77.85336036 77.52222772 76.99897078\n", + " 76.31199967 75.49295235 74.57292056 73.58021644 89.69667435 88.18712874\n", + " 86.48361023 84.78319776 83.0967184 81.43034165 79.78948121 78.17954495\n", + " 73.58021644 74.59400834 75.53901524 76.38685312 77.10589211 77.66330027\n", + " 78.02875412 78.17954495 78.66798463 80.65841057 82.69141578 84.75761477\n", + " 86.84771627 88.95113309 77.95267103 77.66228009 77.07171569 76.23019363\n", + " 75.19557036 74.02401451 89.12786485 87.06007007 84.97409331 82.90740441\n", + " 80.87177406 78.87718093 74.03267423 75.23268127 76.30156716 77.18237665\n", + " 77.81504555 78.14660304 77.97746528 77.97746528 78.18485708 78.18485708\n", + " 78.64134167 78.32984157 77.69918411 76.8061601\n", + " [ 3.11563071e-01 -1.52948891e-01 -9.37835321e-01]\n", + " [ 3.08296164e-01 -1.20145495e-01 -9.43672896e-01]\n", + " [ 3.04393291e-01 -8.65020009e-02 -9.48610630e-01]\n", + " [ 2.99881750e-01 -5.22193161e-02 -9.52546103e-01]\n", + " [ 2.94788504e-01 -1.74984547e-02 -9.55402293e-01]\n", + " [ 2.89142345e-01 1.74577550e-02 -9.57126915e-01]\n", + " [ 3.01749899e-01 -1.67079486e-01 -9.38632752e-01]\n", + " [ 2.70291911e-01 -1.74850798e-01 -9.46767913e-01]\n", + " [ 2.37753285e-01 -1.82394568e-01 -9.54046958e-01]\n", + " [ 2.04326182e-01 -1.89674787e-01 -9.60351127e-01]\n", + " [ 1.70203756e-01 -1.96653141e-01 -9.65586984e-01]\n", + " [ 1.35582768e-01 -2.03290470e-01 -9.69685670e-01]\n", + " [ 2.75701710e-01 2.77444536e-02 -9.60842762e-01]\n", + " [ 2.42831255e-01 2.17580664e-02 -9.69824504e-01]\n", + " [ 2.08927107e-01 1.56153362e-02 -9.77806538e-01]\n", + " [ 1.74172013e-01 9.35065558e-03 -9.84670846e-01]\n", + " [ 1.38757739e-01 2.99965370e-03 -9.90321812e-01]\n", + " [ 1.02886160e-01 -3.40069865e-03 -9.94687324e-01]\n", + " [ 1.21467106e-01 -1.93923545e-01 -9.73467719e-01]\n", + " [ 1.16133125e-01 -1.60276970e-01 -9.80216502e-01]\n", + " [ 1.10531688e-01 -1.25710818e-01 -9.85890225e-01]\n", + " [ 1.04688274e-01 -9.04173789e-02 -9.90386320e-01]\n", + " [ 9.86315139e-02 -5.45966164e-02 -9.93625198e-01]\n", + " [ 9.23935027e-02 -1.84566056e-02 -9.95551503e-01]\n", + " [ 3.12558852e-01 -1.64288472e-01 -9.35583381e-01]\n", + " [ 3.12558852e-01 -1.64288472e-01 -9.35583381e-01]\n", + " [ 9.01550056e-02 -5.66444799e-03 -9.95911637e-01]\n", + " [ 9.01550056e-02 -5.66444799e-03 -9.95911637e-01]\n", + " [ 3.00700629e-01 -1.55699394e-01 -9.40923392e-01]\n", + " [ 2.69094312e-01 -1.63373094e-01 -9.49156196e-01]\n", + " [ 2.36410834e-01 -1.70844126e-01 -9.56515657e-01]\n", + " [ 2.02841067e-01 -1.78075810e-01 -9.62883434e-01]\n", + " [ 1.68577547e-01 -1.85029221e-01 -9.68166204e-01]\n", + " [ 1.33817095e-01 -1.91664721e-01 -9.72295027e-01]\n", + " [ 2.97298735e-01 -1.22779120e-01 -9.46857302e-01]\n", + " [ 2.65318141e-01 -1.30169380e-01 -9.55333563e-01]\n", + " [ 2.32268853e-01 -1.37426267e-01 -9.62894180e-01]\n", + " [ 1.98338482e-01 -1.44511677e-01 -9.69421591e-01]\n", + " [ 1.63718345e-01 -1.51385552e-01 -9.74822403e-01]\n", + " [ 1.28605909e-01 -1.58007378e-01 -9.79027164e-01]\n", + " [ 2.93284468e-01 -8.90146131e-02 -9.51872166e-01]\n", + " [ 2.60995189e-01 -9.61083360e-02 -9.60543960e-01]\n", + " [ 2.27644320e-01 -1.03136497e-01 -9.68266971e-01]\n", + " [ 1.93417033e-01 -1.10060528e-01 -9.74923859e-01]\n", + " [ 1.58504163e-01 -1.16840189e-01 -9.80420726e-01]\n", + " [ 1.23104282e-01 -1.23434846e-01 -9.84687349e-01]\n", + " [ 2.88684063e-01 -5.46058522e-02 -9.55865949e-01]\n", + " [ 2.56149246e-01 -6.13875356e-02 -9.64686029e-01]\n", + " [ 2.22559717e-01 -6.81704595e-02 -9.72532756e-01]\n", + " [ 1.88099096e-01 -7.49165588e-02 -9.79288640e-01]\n", + " [ 1.52958261e-01 -8.15862944e-02 -9.84859100e-01]\n", + " [ 1.17337048e-01 -8.81395897e-02 -9.89173104e-01]\n", + " [ 2.83523710e-01 -1.97535472e-02 -9.58761755e-01]\n", + " [ 2.50804990e-01 -2.62071637e-02 -9.67682821e-01]\n", + " [ 2.17039310e-01 -3.27282018e-02 -9.75614064e-01]\n", + " [ 1.82409509e-01 -3.92798700e-02 -9.82437715e-01]\n", + " [ 1.47106804e-01 -4.58240177e-02 -9.88058575e-01]\n", + " [ 1.11332151e-01 -5.23216569e-02 -9.92404956e-01]\n", + " [ 2.77831774e-01 1.53391951e-02 -9.60507269e-01]\n", + " [ 2.44990148e-01 9.22856850e-03 -9.69481646e-01]\n", + " [ 2.11111002e-01 2.98474079e-03 -9.77457537e-01]\n", + " [ 1.76377015e-01 -3.35723612e-03 -9.84316960e-01]\n", + " [ 1.40979820e-01 -9.76103583e-03 -9.89964349e-01]\n", + " [ 1.05121134e-01 -1.61891216e-02 -9.94327642e-01]]\n", + "DEBUG:root:radec2pix: curVec Shape: (96, 3)\n", + "DEBUG:root:optics_fp: cphi: [-0.71462647 -0.76465055 -0.81663789 -0.86852682 -0.91713533 -0.95822269\n", + " -0.98707045 -0.99965519 -0.71462647 -0.66170459 -0.59665476 -0.51729759\n", + " -0.42196448 -0.31030314 -0.18420747 -0.04836971 -0.99965519 -0.99953644\n", + " -0.99934473 -0.99900557 -0.99831831 -0.99657638 -0.98967281 -0.87090507\n", + " -0.04836971 -0.05610053 -0.06679051 -0.08253363 -0.10799424 -0.15602533\n", + " -0.27837409 -0.87090507 -0.73594733 -0.79879708 -0.86266587 -0.92216881\n", + " -0.96955698 -0.99635146 -0.69307094 -0.62034596 -0.5272064 -0.41033606\n", + " -0.26919173 -0.10843276 -0.99959581 -0.99940041 -0.99902199 -0.99813478\n", + " -0.99516407 -0.96924606 -0.05196415 -0.06335735 -0.0811815 -0.11297393\n", + " -0.18526317 -0.48452029 -0.71462988 -0.71462988 -0.86931637 -0.86931637\n", + " -0.71508845 -0.64388103 -0.55091667 -0.43180852 -0.28504096 -0.11526196\n", + " -0.78075859 -0.71676907 -0.62767848 -0.50476226 -0.34135833 -0.1402609\n", + " -0.84875703 -0.7971706 -0.71938094 -0.60051365 -0.4226937 -0.17893311\n", + " -0.91338303 -0.87922117 -0.82275039 -0.7239943 -0.54602022 -0.24622747\n", + " -0.96582068 -0.95066579 -0.92326613 -0.86731478 -0.73433428 -0.38842227\n", + " -0.99588139 -0.99392405 -0.99016821 -0.98152333 -0.95403253 -0.77825973]\n", + "DEBUG:root:mm_to_pix: fitpx: [[0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0DEBUG:root:radec2pix: camVec: [[-0.20607518 -0.20787446 -0.20940354 -0.21066179 -0.21164814 -0.21236112\n", + " -0.21279916 -0.21296107 -0.20607518 -0.17964954 -0.15251864 -0.12479221\n", + " -0.09658011 -0.06799262 -0.03914089 -0.01013708 -0.21296107 -0.18561075\n", + " -0.15755214 -0.12888979 -0.09972928 -0.07017922 -0.04035219 -0.01036463\n", + " -0.01013708 -0.01020871 -0.01026764 -0.01031373 -0.01034674 -0.01036638\n", + " -0.0103724 -0.01036463 -0.20680345 -0.20882603 -0.21044235 -0.21165063\n", + " -0.2124482 -0.2128323 -0.19465346 -0.16177694 -0.12795009 -0.0933751\n", + " -0.05825505 -0.022795 -0.20112996 -0.16711987 -0.13214975 -0.09641349\n", + " -0.0601111 -0.02345151 -0.01026957 -0.0103498 -0.01041065 -0.01045169\n", + " -0.01047241 -0.01047238 -0.20599275 -0.20599275 -0.01046737 -0.01046737\n", + " -0.19541667 -0.16240545 -0.12844349 -0.09373247 -0.05847519 -0.02287686\n", + " -0.19732118 -0.16397526 -0.12967711 -0.09462661 -0.05902568 -0.02308015\n", + " -0.19884383 -0.16523235 -0.13066656 -0.09534433 -0.05946678 -0.02324061\n", + " -0.19998259 -0.16617376 -0.13140827 -0.09588212 -0.05979589 -0.0233572\n", + " -0.20073433 -0.16679525 -0.13189744 -0.09623556 -0.06000982 -0.02342863\n", + " -0.20109591 -0.16709274 -0.13212968 -0.09640067 -0.06010576 -0.0234538 ]\n", + " [-0.20019593 -0.17367087 -0.14646307 -0.11868235 -0.09043873 -0.0618427\n", + " -0.03300558 -0.0040396 -0.20019593 -0.20202839 -0.20359907 -0.20490731\n", + " -0.20595196 -0.20673135 -0.20724368 -0.20748743 -0.0040396 -0.00409191\n", + " -0.0041395 -0.00418225 -0.00421998 -0.00425248 -0.00427955 -0.00430103\n", + " -0.20748743 -0.17998755 -0.15180051 -0.12303089 -0.0937848 -0.06417157\n", + " -0.03430461 -0.00430103 -0.18872819 -0.15574492 -0.12184525 -0.0872316\n", + " -0.05210744 -0.0166781 -0.20093724 -0.20300612 -0.20468137 -0.20596106\n", + " -0.20684219 -0.20732153 -0.00416252 -0.00422448 -0.00427905 -0.00432591\n", + " -0.00436469 -0.00439503 -0.19558822 -0.16140908 -0.12630166 -0.09046055\n", + " -0.05408714 -0.0173918 -0.20011322 -0.20011322 -0.00440367 -0.00440367\n", + " -0.18950334 -0.19145029 -0.19302803 -0.194234417]\n", + " [-30.37715702 -29.80497466]\n", + " [-25.00115751 -29.80726024]\n", + " [-19.625158 -29.80954582]\n", + " [-14.24915848 -29.8118314 ]\n", + " [ -8.87315897 -29.81411698]\n", + " [ -3.49715945 -29.81640256]\n", + " [-30.37487145 -24.42897515]\n", + " [-24.99887193 -24.43126073]\n", + " [-19.62287241 -24.43354631]\n", + " [-14.2468729 -24.43583188]\n", + " [ -8.87087339 -24.43811746]\n", + " [ -3.49487388 -24.44040305]\n", + " [-30.37258587 -19.05297564]\n", + " [-24.99658635 -19.05526122]\n", + " [-19.62058684 -19.05754679]\n", + " [-14.24458732 -19.05983237]\n", + " [ -8.86858781 -19.06211795]\n", + " [ -3.4925883 -19.06440353]\n", + " [-30.37030029 -13.67697612]\n", + " [-24.99430077 -13.6792617 ]\n", + " [-19.61830126 -13.68154728]\n", + " [-14.24230175 -13.68383286]\n", + " [ -8.86630223 -13.68611844]\n", + " [ -3.49030272 -13.68840401]\n", + " [-30.36801471 -8.30097661]\n", + " [-24.9920152 -8.30326219]\n", + " [-19.61601568 -8.30554776]\n", + " [-14.24001617 -8.30783335]\n", + " [ -8.86401666 -8.31011893]\n", + " [ -3.48801714 -8.3124045 ]\n", + " [-30.36572914 -2.9249771 ]\n", + " [-24.98972962 -2.92726267]\n", + " [-19.6137301 -2.92954825]\n", + " [-14.23773059 -2.93183383]\n", + " [ -8.86173DEBUG:root:optics_fp: sphi: [-0.69950626 -0.64444513 -0.57715037 -0.49564218 -0.39857594 -0.28602322\n", + " -0.16028704 -0.02625833 -0.69950626 -0.74976466 -0.80249804 -0.85580559\n", + " -0.90661236 -0.95063766 -0.98288738 -0.9988295 -0.02625833 -0.03044512\n", + " -0.03619555 -0.04458562 -0.05797023 -0.08267725 -0.1433448 -0.49145128\n", + " -0.9988295 -0.99842512 -0.99776702 -0.99658828 -0.99415152 -0.98775305\n", + " -0.96047273 -0.49145128 -0.67703879 -0.60160056 -0.50577425 -0.38678764\n", + " -0.24486582 -0.08534494 -0.72086938 -0.78432831 -0.84973726 -0.91193438\n", + " -0.96308661 -0.99410379 -0.02842926 -0.03462403 -0.04421613 -0.06104888\n", + " -0.09822663 -0.24609363 -0.99864895 -0.99799091 -0.99669933 -0.99359795\n", + " -0.98268894 -0.87478002 -0.69950278 -0.69950278 -0.49425605 -0.49425605\n", + " -0.69903398 -0.76512562 -0.83456026 -0.9019653 -0.95851534 -0.99333513\n", + " -0.6248328 -0.69731062 -0.77847269 -0.8632584 -0.93993324 -0.99011458\n", + " -0.52878304 -0.60375411 -0.69461576 -0.79961451 -0.90627261 -0.98386124\n", + " -0.40710127 -0.47641382 -0.56840284 -0.68980596 -0.837772 -0.96921207\n", + " -0.25921116 -0.31021694 -0.38416098 -0.49776006 -0.67878801 -0.92148149\n", + " -0.09066564 -0.11006805 -0.13988178 -0.19134252 -0.29970307 -0.6279425 ]\n", + "DEBUG:root:cartToSphere: vec: [[-0.00114705 0.20838541 0.97804612]\n", + " [-0.00115629 0.18089194 0.9835023 ]\n", + " [-0.0011641 0.15270652 0.9882709 ]\n", + " [-0.00117048 0.12393558 0.99228958]\n", + " [-0.00117539 0.09468513 0.99550658]\n", + " [-0.00117881 0.06506336 0.99788044]\n", + " [-0.00118068 0.03518275 0.9993802 ]\n", + " [-0.00118097 0.0051606 0.99998599]\n", + " [-0.00114705 0.20838541 0.97804612]\n", + " [-0.03018244 0.20823844 0.97761228]\n", + " [-0.05910007 0.20782077 0.9763799 ]\n", + " [-0.08778716 0.20713345 0.97436602]\n", + " [-0.11613176 0.20617803 0.9715987 ]\n", + " [-0.14402308 0.20495645 0.96811684]\n", + " [-0.17135219 0.20347155 0.96396979]\n", + " [-0.19801388 0.2017284 0.95921643]\n", + " [-0.00118097 0.0051606 0.99998599]\n", + " [-0.03121228 0.00515607 0.99949948]\n", + " [-0.06111791 0.00514464 0.99811729]\n", + " [-0.09077999 0.00512646 0.99585778]\n", + " [-0.12008538 0.00510175 0.99275046]\n", + " [-0.14892541 0.0050707 0.98883543]\n", + " [-0.17719395 0.00503345 0.98416308]\n", + " [-0.20478471 0.00499006 0.97879432]\n", + " [-0.19801388 0.2017284 0.95921643]\n", + " [-0.19975823 0.17512925 0.96406763]\n", + " [-0.20124936 0.14784829 0.96831791]\n", + " [-0.20248221 0.11999042 0.97190702]\n", + " [-0.20345393 0.09166442 0.97478415]\n", + " [-0.20416257 0.06298098 0.97690892]\n", + " [-0.20460656 0.03405194 0.97825182]\n", + " [-0.20478471 0.00499006 0.97879432]\n", + " [-0.00125101 0.19649007 0.98050502]\n", + " [-0.00126235 0.1623152 0.98673815]\n", + " [-0.00127136 0.12720686 0.99187539]\n", + " [-0.00127799 0.09136033 0.99581708]\n", + " [-0.00128216 0.05497503 0.99848691]\n", + " [-0.00128379 0.01826009 0.99983245]\n", + " [-0.01381426 0.20826196 0.97797552]\n", + " [-0.04933618 0.20789982 0.97690512]\n", + " [-0.08456905 0.20713224 0.97465087]\n", + " [-0.11930642 0.20596186 0.97125985]\n", + " [-0.15334441 0.20439232 0.96680364]\n", + " [-0.18648385 0.20242966 0.96137714]\n", + " [-0.01428247 0.00526224 0.99988415]\n", + " [-0.05101935 0.0 -0.195066 -0.19551916\n", + " -0.15638145 -0.15798254 -0.1592836 -0.16028164 -0.16097217 -0.16135064\n", + " -0.12234264 -0.1235961 -0.12461804 -0.12540495 -0.1259519 -0.1262541\n", + " -0.08758892 -0.08849133 -0.08922984 -0.08980108 -0.09020062 -0.09042422\n", + " -0.05232353 -0.0528708 -0.053321 -0.05367171 -0.05391982 -0.0540624\n", + " -0.016752 -0.01694088 -0.01709901 -0.01722548 -0.01731915 -0.01737894]\n", + " [ 0.95783851 0.96261448 0.96679818 0.97032784 0.97315256 0.9752324\n", + " 0.97653835 0.97705233 0.95783851 0.96276195 0.96710159 0.97079344\n", + " 0.97378441 0.97603235 0.97750603 0.97818516 0.97705233 0.98261483\n", + " 0.98750199 0.99165011 0.99500566 0.99752533 0.99917635 0.99993704\n", + " 0.97818516 0.98361591 0.98835782 0.99234925 0.99553873 0.99788504\n", + " 0.9993576 0.99993704 0.96000729 0.96547149 0.96998338 0.97344474\n", + " 0.97578203 0.97694639 0.96006992 0.96572084 0.97042996 0.97409503\n", + " 0.97663845 0.97800724 0.97955572 0.98592753 0.99122053 0.99533197\n", + " 0.99818215 0.99971531 0.98063234 0.98683331 0.99193725 0.99584519\n", + " 0.9984813 0.99979391 0.95787352 0.95787352 0.99993552 0.99993552\n", + " 0.9622374 0.96797276 0.97274994 0.9764667 0.97904541 0.98043302\n", + " 0.96778572 0.97373181 0.978679 0.98252511 0.98519233 0.98662722\n", + " 0.97236485 0.97847957 0.98356321 0.98751357 0.9902524 0.99172566\n", + " 0.9758766 0.9821179 0.98730436 0.99133364 0.9941269 0.9956294\n", + " 0.9782474 0.98457302 0.98982824 0.99391049 0.99674043 0.99826267\n", + " 0.97942831 0.98579563 0.99108495 0.99519355 0.99804176 0.99957386]]\n", + "DEBUG:root:radec2pix: curVec: [[-8.69608579e-01 1.23718809e-01 -4.77990143e-01]\n", + " [-8.82291141e-01 1.12159615e-01 -4.57146107e-01]\n", + " [-8.94555761e-01 1.00145908e-01 -4.35592456e-01]\n", + " [-9.06316165e-01 8.77302089e-02 -4.13393783e-01]\n", + " [-9.17493832e-01 7.49681057e-02 -3.90621109e-01]\n", + " [-9.28019234e-01 6.19157043e-02 -3.67350987e-01]\n", + " [-9.37832354e-01 4.86285077e-02 -3.43665162e-01]\n", + " [-9.46882959e-01 3.51611155e-02 -3.19650368e-01]\n", + " [-8.69608579e-01 1.23718809e-01 -4.77990143e-01]\n", + " [-8.65064591e-01 1.00807179e-01 -4.91427682e-01]\n", + " [-8.59844559e-01 7.72597947e-02 -5.04676391e-01]\n", + " [-8.53927961e-01 5.31732392e-02 -5.17667503e-01]\n", + " [-8.47303098e-01 2.86481142e-02 -5.30336446e-01]\n", + " [-8.39967852e-01 3.78598744e-03 -5.42622957e-01]\n", + " [-8.31930071e-01 -2.13118911e-02 -5.54471063e-01]\n", + " [-8.23207663e-01 -4.65449847e-02 -5.65829222e-01]\n", + " [-9.46882959e-01 3.51611155e-02 -3.19650368e-01]\n", + " [-9.43144072e-01 1.05091571e-02 -3.32218026e-01]\n", + " [-9.38571402e-01 -1.46586304e-02 -3.44773619e-01]\n", + " [-9.33141166e-01 -4.02394241e-02 -3.57251107e-01]\n", + " [-9.26838969e-01 -6.61327343e-02 -3.69588943e-01]\n", + " [-9.19660279e-01 -9.22382580e-02 -3.81729059e-01]\n", + " [-9.11611255e-01 -1.18453839e-01 -3.93616067e-01]\n", + " [-9.02709488e-01 -1.44674789e-01 -4.05197219e-01]\n", + " [-8.23207663e-01 -4.65449847e-02 -5.65829222e-01]\n", + " [-8.36213027e-01 -6.01699072e-02 -5.45093896e-01]\n", + " [-8.48799865e-01 -7.40230226e-02 -5.23506811e-01]\n", + " [-8.60880555e-9 75.71557851 74.48840848\n", + " 80.62507537 80.23817759 79.46907283 78.40617113 77.13948546 75.74438817\n", + " 82.64779184 82.14857946 81.18831589 79.91227353 78.44384133 76.87031089\n", + " 84.69583972 84.01119948 82.77741875 81.24014725 79.55379065 77.80461009\n", + " 86.74476583 85.70761057 84.09008812 82.26687253 80.3773841 78.48020641\n", + " 88.67187538 86.89501933 84.87693536 82.83944721 80.82012657 78.83603949]\n", + "0525184 0.99868386]\n", + " [-0.08744986 0.00523103 0.99615519]\n", + " [-0.12336368 0.00520016 0.9923479 ]\n", + " [-0.15856056 0.00515961 0.98733577]\n", + " [-0.19284509 0.0051096 0.98121591]\n", + " [-0.1987148 0.19022738 0.96141873]\n", + " [-0.20068229 0.157155 0.96696894]\n", + " [-0.20226422 0.12316211 0.9715556 ]\n", + " [-0.20345456 0.08844755 0.97508116]\n", + " [-0.20424964 0.05321501 0.97747135]\n", + " [-0.20464672 0.01767079 0.97867638]\n", + " [-0.00124645 0.20829266 0.97806575]\n", + " [-0.00124645 0.20829266 0.97806575]\n", + " [-0.20469148 0.0050897 0.97881331]\n", + " [-0.20469148 0.0050897 0.97881331]\n", + " [-0.01386808 0.19646111 0.98041354]\n", + " [-0.04952932 0.19611969 0.9793283 ]\n", + " [-0.08490071 0.19539637 0.97704254]\n", + " [-0.11977552 0.19429398 0.97360345]\n", + " [-0.15394951 0.1928159 0.96908285]\n", + " [-0.18722234 0.19096695 0.96357637]\n", + " [-0.01400325 0.16229116 0.98664355]\n", + " [-0.05001432 0.16200846 0.98552109]\n", + " [-0.08573269 0.16141067 0.9831564 ]\n", + " [-0.12095098 0.16050163 0.9795969 ]\n", + " [-0.15546507 0.15928501 0.97491482]\n", + " [-0.18907339 0.15776388 0.9692068 ]\n", + " [-0.01411268 0.1271878 0.99177825]\n", + " [-0.05040698 0.12696445 0.99062564]\n", + " [-0.08640482 0.12649338 0.98819716]\n", + " [-0.12189811 0.12577923 0.98454072]\n", + " [-0.15668376 0.12482642 0.97972882]\n", + " [-0.19056116 0.12363768 0.97385839]\n", + " [-0.01419584 0.0913464 0.99571799]\n", + " [-0.05070556 0.09118412 0.99454231]\n", + " [-0.08691471 0.09084281 0.99206523]\n", + " [-0.12261435 0.0903271 0.98833534]\n", + " [-0.15760261 0.0896414 0.98342556]\n", + " [-0.19168088 0.08878838 0.97743289]\n", + " [-0.01425179 0.05496643 0.99838649]\n", + " [-0.05090701 0.05486748 0.99719508]\n", + " [-0.08725814 0.05466012 108 -2.93411941]\n", + " [ -3.48573156 -2.93640499]]\n", + "DEBUG:root:optics_fp: xyfp: [[ -0.167405 31.491388 ]\n", + " [ -0.167405 27.10495943]\n", + " [ -0.167405 22.71853086]\n", + " [ -0.167405 18.33210229]\n", + " [ -0.167405 13.94567372]\n", + " [ -0.167405 9.55924515]\n", + " [ -0.167405 5.17281657]\n", + " [ -0.167405 0.786388 ]\n", + " [ -0.167405 31.491388 ]\n", + " [ -4.55383357 31.491388 ]\n", + " [ -8.94026214 31.491388 ]\n", + " [-13.32669071 31.491388 ]\n", + " [-17.71311928 31.491388 ]\n", + " [-22.09954786 31.491388 ]\n", + " [-26.48597643 31.491388 ]\n", + " [-30.872405 31.491388 ]\n", + " [ -0.167405 0.786388 ]\n", + " [ -4.55383357 0.786388 ]\n", + " [ -8.94026214 0.786388 ]\n", + " [-13.32669071 0.786388 ]\n", + " [-17.71311929 0.786388 ]\n", + " [-22.09954786 0.786388 ]\n", + " [-26.48597643 0.786388 ]\n", + " [-30.872405 0.786388 ]\n", + " [-30.872405 31.491388 ]\n", + " [-30.872405 27.10495943]\n", + " [-30.872405 22.71853086]\n", + " [-30.872405 18.33210229]\n", + " [-30.872405 13.94567371]\n", + " [-30.872405 9.55924514]\n", + " [-30.872405 5.17281657]\n", + " [-30.872405 0.786388 ]\n", + " [ -0.182405 29.578888 ]\n", + " [ -0.182405 24.202888 ]\n", + " [ -0.182405 18.826888 ]\n", + " [ -0.182405 13.450888 ]\n", + " [ -0.182405 8.074888 ]\n", + " [ -0.182405 2.698888 ]\n", + " [ -2.079905 31.476388 ]\n", + " [ -7.455905 31.476388 ]\n", + " [-12.831905 31.476388 ]\n", + " [-18.207905 31.476388 ]\n", + " [-23.583905 31.476388 ]\n", + " [-28.959905 31.476388 ]\n", + " [ -2.079905 0.801388 ]\n", + " [ -7.455905 0.801388 ]\n", + " [-12.831905 0.801388 ]\n", + " [-18.207905 0.801388 ]\n", + " [-23.583905 0.801388 ]\n", + " [-28.959905 0.801388 ]\n", + " [-30.857405 29.578888 ]\n", + " [-30.857405 24.202888 ]\n", + " [-30.857405 18.826888 ]\n", + " [-30.857405 13.450888 ]\n", + " [-30.857405 8.074888 ]\n", + " [-30.857405 2.698888 ]\n", + " [ -0.182405 31.476388 ]\n", + " [ -0.182405 31.476388 ]\n", + " [-30.857405 0.801388 ]\n", + " [-30.857405 0.801388 ]\n", + " [ -2.079905 29.578888 ]\n", + " [ -7.455905 29.578888 ]\n", + " [-12.831905 29.578888 ]\n", + " [-18.207905 29.578888 ]\n", + " [-23.583905 29.578888 ]\n", + " [-28.959905 29.578888 ]\n", + " [ -2.079905 24.202888 ]\n", + " [ -7.455905 24.202888 ]\n", + " [-12.831905 24.202888 ]\n", + " [-18.207905 24.202888 ]\n", + " [-23.583905 24.202888 ]\n", + " [-28.959905 24.202888 ]\n", + " [ -2.079905 18.826888 ]\n", + " [ -7.455905 18.826888 ]\n", + " [-12.831905 18.826888 ]\n", + " [-18.207905 18.826888 ]\n", + " [-23.583905 18.826888 ]\n", + " [-28.959905 18.826888 ]\n", + " [ -2.079905 13.450888 ]\n", + " [ -7.455905 13.450888 ]\n", + " [-12.831905 13.450888 ]\n", + " [-18.207905 13.450888 ]\n", + " [-23.583905 13.450888 ]\n", + " [-28.959905 13.450888 ]\n", + " [ -2.079905 8.074888 ]\n", + " [ -7.455905 8.074888 ]\n", + " [-12.831905 8.074888 ]\n", + " [-18.20790499 8.074888 ]\n", + " [-23.583905 8.074888 ]\n", + " [-28.959905 8.074888 ]\n", + " [ -2.079905 2.698888 ]\n", + " [ -7.455905 2.698888 ]\n", + " [-12.831905 2.698888 ]\n", + " [-18.207905 2.698888 ]\n", + " [-23.583905 2.698888 ]\n", + " [-28.959905 2.698888 ]]\n", + "01 -8.80448362e-02 -5.01131497e-01]\n", + " [-8.72377089e-01 -1.02177850e-01 -4.78035460e-01]\n", + " [-8.83220103e-01 -1.16365319e-01 -4.54292155e-01]\n", + " DEBUG:root:optics_fp: xyfp shape: (96, 2)\n", + "[-8.93348426e-01 -1.30550181e-01 -4.29982837e-01]\n", + " [-9.02709488e-01 -1.44674789e-01 -4.05197219e-01]\n", + " [-8.75169649e-01 1.18660269e-01 -4.69039258e-01]\n", + " [-8.90444187e-01 1.04179934e-01 -4.43007553e-01]\n", + " [-9.05004437e-01 8.90687014e-02 -4.15973239e-01]\n", + " [-9.18702518e-01 7.34278416e-02 -3.88064473e-01]\n", + " [-9.31410483e-01 5.73605257e-02 -3.59422152e-01]\n", + " [-9.43021896e-01 4.09685575e-02 -3.30198851e-01]\n", + " [-8.67753070e-01 1.13774063e-01 -4.83797552e-01]\n", + " [-8.61732882e-01 8.52527629e-02 -5.00148385e-01]\n", + " [-8.54675780e-01 5.58718882e-02 -5.16146920e-01]\n", + " [-8.46556499e-01 2.58152260e-02 -5.31672519e-01]\n", + " [-8.37371185e-01 -4.73037472e-03 -5.46614236e-01]\n", + " [-8.27138463e-01 -3.55788059e-02 -5.60870851e-01]\n", + " [-9.45323674e-01 2.45294045e-02 -3.25209871e-01]\n", + " [-9.40183760e-01 -6.04360937e-03 -3.40614110e-01]\n", + " [-9.33766869e-01 -3.72890299e-02 -3.55933930e-01]\n", + " [-9.26042602e-01 -6.90209395e-02 -3.71054187e-01]\n", + " [-9.17002717e-01 -1.01054441e-01 -3.85867876e-01]\n", + " [-9.06663285e-01 -1.33200381e-01 -4.00274089e-01]\n", + " [-8.28954549e-01 -5.23667707e-02 -5.56859118e-01]\n", + " [-8.44624343e-01 -6.92257134e-02 -5.30864879e-01]\n", + " [-8.59577280e-01 -8.63682012e-02 -5.03654081e-01]\n", + " [-8.73665797e-01 -1.03687590e-01 -4.75349301e-01]\n", + " [-8.86762139e-01 -1.21079293e-01 -4.46085993e-01]\n", + " [-8.98757216e-01 -1.38437995e-01 -4.16017293e-01]\n", + " [-8.69638143e-01 1.23602942e-01 -4.77966331e-01]\n", + " [-8.69638143e-01 1.23602942e-01 -4.77966331e-01]\n", + " [-9.02710699e-01 -1.44537101e-01 -4.05243655e-01]\n", + " [-9.02710699e-01 -1.44537101e-01 -4.05243655e-01]\n", + " [-8.73313379e-01 1.08764891e-01 -4.74862022e-01]\n", + " [-8.67361218e-01 8.00594078e-02 -4.91197525e-01]\n", + " [-8.60350959e-01 5.05040939e-02 -5.07193814e-01]\n", + " [-8.52256552e-01 2.02849927e-02 -5.22730608e-01]\n", + " [-8.43073861e-01 -1.04103656e-02 -5.37697024e-01]\n", + " [-8.32821515e-01 -4.13956788e-02 -5.51991597e-01]\n", + " [-8.88666125e-01 9.41072959e-02 -4.48794313e-01]\n", + " [-8.82898626e-01 6.49166254e-02 -4.65054671e-01]\n", + " [-8.76016376e-01 3.378 0.0506935 0.08689379 0.12258434 0.15756175 0.19162897\n", + " 0.0142499 0.05089361 0.08723571 0.12306478 0.15817704 0.19237609\n", + " 0.01427798 0.05099373 0.08740674 0.12330495 0.15848438 0.1927489 ]\n", + " [-0.20812604 -0.1806373 -0.15245726 -0.12369032 -0.09444319 -0.06482624\n", + " -0.03495355 -0.00494229 -0.20812604 -0.20797994 -0.20756351 -0.20687811\n", + " -0.20592557 -0.20470759 -0.20322504 -0.20147731 -0.00494229 -0.00493875\n", + " -0.0049287 -0.00491221 -0.00488939 -0.0048604 -0.00482538 -0.00478446\n", + " -0.20147731 -0.17488831 -0.14761103 -0.11975687 -0.09143612 -0.06275929\n", + " -0.03383788 -0.00478446 -0.19623245 -0.16206424 -0.12696122 -0.09111882\n", + " -0.05474021 -0.01803675 -0.20800294 -0.20764209 -0.20687664 -0.20570979\n", + " -0.20414458 -0.20218204 -0.00504426 -0.00503536 -0.00501654 -0.004988\n", + " -0.00495001 -0.00490286 -0.1899823 -0.15691665 -0.12292805 -0.08821992\n", + " -0.05299579 -0.01746139 -0.2080333 -0.2080333 -0.00488406 -0.00488406\n", + " -0.19620382 -0.19586344 -0.1951417 -0.1940421949080223e-02 -4.81016360e-01]\n", + " [-8.67991968e-01 4.27077869e-03 -4.96559870e-01]\n", + " [-8.58820809e-01 -2.68074570e-02 -5.11574216e-01]\n", + " [-8.48521660e-01 -5.81404627e-02 -5.25956918e-01]\n", + " [-9.03298285e-01 7.88385870e-02 -4.21706871e-01]\n", + " [-8.97701255e-01 4.92232715e-02 -4.37846465e-01]\n", + " [-8.90939305e-01 1.88247325e-02 -4.53732063e-01]\n", + " [-8.82984284e-01 -1.21677356e-02 -4.69244819e-01]\n", + " [-8.73831150e-01 -4.35677684e-02 -4.84273652e-01]\n", + " [-8.63498593e-01 -7.51893111e-02 -4.98715096e-01]\n", + " [-9.17061206e-01 6.30622531e-02 -3.93728202e-01]\n", + " [-9.11619374e-01 3.30861679e-02 -4.09701625e-01]\n", + " [-9.04970013e-01 2.36145505e-03 -4.25468799e-01]\n", + " [-8.97084301e-01 -2.89240275e-02 -4.40911734e-01]\n", + " [-8.87956414e-01 -6.05852823e-02 -4.55919763e-01]\n", + " [-8.77604547e-01 -9.24358960e-02 -4.70389056e-01]\n", + " [-9.29826630e-01 4.68821529e-02 -3.64999317e-01]\n", + " [-9.24524282e-01 1.66093656e-02 -3.80761055e-01]\n", + " [-9.17979665e-01 -1.43787645e-02 -3.96366731e-01]\n", + " [-9.10163221e-01 -4.58958133e-02 -4.11699509e-01]\n", + " .]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]]\n", + "[-9.01068057e-01 -7.77574557e-02 -4.26649897e-01]\n", + " [-8.90711516e-01 -1.09776307e-01 -4.41114677e-01]\n", + " [-9.41487887e-01 3.04001721e-02 -3.35673037e-01]\n", + " [-9.36308619e-01 -1.05740637e-04 -3.51178244e-01]\n", + " [-9.29860098e-01 -3.12950756e-02 -3.66579891e-01]\n", + " [-9.22112098e-01 -6.29819838e-02 -3.81762424e-01]\n", + " [-9.13056677e-01 -9.49818697e-02 -3.96618140e-01]\n", + " [-9.02710213e-01 -1.27106042e-01 -4.11045405e-01]]\n", + "DEBUG:root:radec2pix: camVec Shape: (3, 96)\n", + "DEBUG:root:optics_fp: xyfp: [[32.23341696 31.55141621]\n", + " [32.23194958 27.16498788]\n", + " [32.2304822 22.77855956]\n", + " [32.22901483 18.39213124]\n", + " [32.22754745 14.00570291]\n", + " [32.22608007 9.61927458]\n", + " [32.22461269 5.23284626]\n", + " [32.2231453 0.84641793]\n", + " [32.23341696 31.55141621]\n", + " [27.84698864 31.5528836 ]\n", + " [23.46056031 31.55435097]\n", + " [19.07413198 31.55581835]\n", + " [14.68770366 31.55728573]\n", + " [10.30127533 31.55875311]\n", + " [ 5.91484701 31.56022049]\n", + " [ 1.52841868 31.56168787]\n", + " [32.2231453 0.84641793]\n", + " [27.83671698 0.84788531]\n", + " [23.45028865 0.84935269]\n", + " [19.06386033 0.85082007]\n", + " [14.677432 0.85228745]\n", + " [10.29100367 0.85375483]\n", + " [ 5.90457535 0.85522221]\n", + " [ 1.51814702 0.85668959]\n", + " [ 1.52841868 31.56168787]\n", + " [ 1.5269513 27.17525955]\n", + " [ 1.52548392 22.78883122]\n", + " [ 1.52401654 18.4024029 ]\n", + " [ 1.52254916 14.01597457]\n", + " [ 1.52108178 9.62954624]\n", + " [ 1.5196144 5.24311792]\n", + " [ 1.51814702 0.85668959]\n", + " [32.21777718 29.63892134]\n", + " [32.21597876 24.26292164]\n", + " [32.21418034 18.88692194]\n", + " [32.21238193 13.51092224]\n", + " [32.21058351 8.13492254]\n", + " [32.20878509 2.75892284]\n", + " [30.32091205 31.53705599]\n", + " [24.94491236 31.53885442]\n", + " [19.56891265 31.54065283]\n", + " [14.19291295DEBUG:root:radec2pix: xyfp Shape: (96, 2)\n", + "DEBUG:root:radec2pix: curVec Shape: (96, 3)\n", + " -0.19256861 -0.19072284\n", + " -0.16204052 -0.16175873 -0.16116182 -0.16025398 -0.15904007 -0.15752379\n", + " -0.12694255 -0.12672084 -0.12625153 -0.1255387 -0.12458735 -0.12340188\n", + " -0.09110536 -0.09094551 -0.09060732 -0.09009413 -0.08941017 -0.08855947\n", + " -0.05473209 -0.05463571 -0.05443186 -0.05412272 -0.05371108 -0.05319971\n", + " -0.01803407 -0.01800225 -0.01793496 -0.01783294 -0.01769716 -0.01752858]\n", + " [ 0.97810134 0.9835491 0.98830938 0.99232018 0.99552956 0.99789587\n", + " 0.99938824 0.99998708 0.97810134 0.97766757 0.97643555 0.97442227\n", + " 0.97165564 0.96817455 0.96402898 0.95928031 0.99998708 0.99950082\n", + " 0.99811945 0.99586111 0.99275529 0.98884231 0.98417285 0.97880765\n", + " 0.95928031 0.96412134 0.96836441 0.97194676 0.97481703 0.97693499\n", + " 0.97827131 0.97880765 0.98055661 0.9867794 0.99190687 0.99583921\n", + " 0.9984998 0.9998365 0.97803071 0.97696059 0.97470701 0.97131684\n", + " 0.96686168 0.96143824 0.9998853 0.99868571 0.9961584 0.99235295\n", + " 0.98734355 0.98122767 0.96147748 0.96701775 0.97159609 0.97511327\n", + " 0.97749515 0.97869233 0.97812095 0.97812095 0.97882665 0.97882665\n", + " 0.98046512 0.97938023 0.97709532 0.97365734 0.96913788 0.96363342\n", + " 0.98668479 0.98556272 0.98319907 0.97964125 0.97496115 0.96925491\n", + " 0.9918097 0.99065742 0.98822988 0.98457518 0.97976579 0.97389805\n", + " 0.9957401 0.99456477 0.9920886 0.98836032 0.98345316 0.97746384\n", + " 0.99839939 0.99720849 0.9946995 0.99092169 0.98594885 0.97987817\n", + " 0.99973542 0.99853671 0.99601124 0.99220858 0.98720287 0.98109154]]\n", + " 31.54245125]\n", + " [ 8.81691325 31.54424967]\n", + " [ 3.44091356 31.54604808]\n", + " [30.31065043 0.86205771]\n", + " [24.93465073 0.86385613]\n", + " [19.55865103 0.86565455]\n", + " [14.18265134 0.86745297]\n", + " [ 8.80665163 0.86925139]\n", + " [ 3.43065193 0.8710498 ]\n", + " [ 1.5427789 29.64918296]\n", + " [ 1.54098048 24.27318326]\n", + " [ 1.53918206 18.89718357]\n", + " [ 1.53738364 13.5211DEBUG:root:radec2pix: camVec Shape: (3, 96)\n", + "DEBUG:root:mm_to_pix: fitpx.shape: (96, 2)\n", + "0.99468502]\n", + " [-0.12309542 0.05434775 0.99090557]\n", + " [-0.15821798 0.0539337 0.98593013]\n", + " [-0.19242913 0.05341999 0.97985577]\n", + " [-0.01427955 0.01825699 0.99973135]\n", + " [-0.05100809 0.0182233 0.99853197]\n", + " [-0.08743051 0.01815347 0.9960052 ]\n", + " [-0.12333654 0.01804874 0.99220076]\n", + " [-0.15852587 0.01791034 0.98719237]\n", + " [-0.19280295 0.01773905 0.98107714]]\n", + "8387]\n", + " [ 1.53558522 8.14518416]\n", + " [ 1.5337868 2.76918446]\n", + " [32.21841195 31.53642123]\n", + " [32.21841195 31.53642123]\n", + " [ 1.53315204 0.87168457]\n", + " [ 1.53315204 0.87168457]\n", + " [30.32027729 29.6395561 ]\n", + " [24.94427759 29.64135452]\n", + " [19.56827789 29.64315294]\n", + " [14.19227819 29.64495136]\n", + " [ 8.81627849 29.64674978]\n", + " [ 3.44027879 29.6485482 ]\n", + " [30.31847887 24.2635564 ]\n", + " [24.94247917 24.26535482]\n", + " [19.56647947 24.26715324]\n", + " [14.19047977 24.26895166]\n", + " [ 8.81448007 24.27075007]\n", + " [ 3.43848037 24.2725485 ]\n", + " [30.31668045 18.8875567 ]\n", + " [24.94068075 18.88935513]\n", + " [19.56468105 18.89115354]\n", + " [14.18868135 18.89295196]\n", + " [ 8.81268165 18.89475038]\n", + " [ 3.43668195 18.89654879]\n", + " [30.31488203 13.51155701]\n", + " [24.93888233 13.51335542]\n", + " [19.56288263 13.51515384]\n", + " [14.18688293 13.51695226]\n", + " [ 8.81088324 13.51875068]\n", + " [ 3.43488354 13.5205491 ]\n", + " [30.31308361 8.13555731]\n", + " [24.93708392 8.13735572]\n", + " [19.56108422 8.13915414]\n", + " [14.18508451 8.14095256]\n", + " [ 8.80908482 8.14275098]\n", + " [ 3.43308512 8.1445494 ]\n", + " [30.31128519 2.75955761]\n", + " [24.93528549 2.76135602]\n", + " [19.5592858 2.76315444]\n", + " [14.18328609 2.76495286]\n", + " [ 8.8072864 2.76675128]\n", + " [ 3.4312867 2.7685497 ]]\n", + "DEBUG:root:radec2pix: camVec: [[-0.20629584 -0.20812128 -0.20967356 -0.21095376 -0.21196139 -0.21269501\n", + " -0.2131529 -0.21333373 -0.20629584 -0.1798852 -0.15276427 -0.12504507\n", + " -0.09683814 -0.06825398 -0.03940385 -0.01040007 -0.21333373 -0.18599064\n", + " -0.15793623 -0.12927467 -0.10011211 -0.07055816 -0.04072622 -0.01073294\n", + " -0.01040007 -0.01048759 -0.01056224 -0.01062379 -0.01067191 -0.0107063\n", + " -0.0107267 -0.01073294 -0.20703611 -0.20908844 -0.21073192 -0.21196628\n", + " -0.21278893 -0.21319686 -0.19488162 -0.16201965 -0.12820231 -0.09363367\n", + " -0.05851721 -0.02305821 -0.20150602 -0.16750285 -0.13253465 -0.0967959\n", + " -0.06048842 -0.02382238 -0.0105395 -0.01063912 -0.01071899 -0.01077856\n", + " -0.01081726 -0.01083465 -0.20621357 -0.20621357 -0.01083565 -0.01083565\n", + " -0.19565571 -0.16265759 -0.12870452 -0.09399937 -0.05874512 -0.0231472\n", + " -0.19758845 -0.16425347 -0.12996305 -0.09491705 -0.05931746 -0.02337052\n", + " -0.19913769 -0.16553623 -0.13097704 -0.09565767 -0.05977969 -0.02355053\n", + " -0.20030226 -0.16650264 -0.13174231 -0.09621721 -0.0601289 -0.023686\n", + " -0.20107886 -0.16714801 -0.13225382 -0.09659125 -0.06036201 -0.02377567\n", + " -0.201464 -0.16746808 -0.13250731 -0.0967762 -0.06047657 -0.02381854]\n", + " [-0.20078674 -0.17428103 -0.14708674 -0.11931584 -0.09107902 -0.06248699\n", + " -0.03365118 -0.00468399 -0.20078674 -0.20262142 -0.20419049 -0.20549514\n", + " -0.20653488 -0.20730818 -0.20781318 -0.2080483 -0.00468399 -0.00472909\n", + " -0.00476846 -0.004802 -0.00482954 -0.00485094 -0.00486604 -0.00487474\n", + " -0.2080483 -0.18056016 -0.15238099 -0.12361519 -0.09436952 -0.06475431\n", + " -0.03488367 -0.00487474 -0.1893284 -0.1563645 -0.12247778 -0.08787247\n", + " -0.05275245 -0.01732329 -0.20152974 -0.20359843 -0.20526972 -0.2065434\n", + " -0.20741673 -0.20788637 -0.0048039 -0.00485635 -0.0048999 -0.00493429\n", + " -0.00495921 -0.00497442 -0.19615466 -0.1619874 -0.12688576 -0.09104519\n", + " -0.05466885 -0.01796812 -0.20070413 -0.20070413 -0.00497744 -0.00497744\n", + " -0.19010422 -0.19204948 -0.19362274 -0.19482286 -0.19564642 -0.1960896\n", + " -0.15700026 -0.15859759 -0.1598933 -0.16088429 -0.1615658 -0.16193328\n", + " -0.12297381 -0.12422245 -0.12523802 -0.12601654 -0.12655298 -0.12684288\n", + " -0.088228 -0.0891244 -0.0898551 -0.09041635 -0.09080384 -0.09101389\n", + " -0.05296627 -0.0535061 -0.05394701 -0.05428637 -0.05452132 -0.05464944\n", + " -0.01739439 -0.0175743 -0.01772184 -0.01783608 -0.01791601 -0.0179608 ]\n", + " [ 0.95766733 0.96245086 0.96664496 0.9701867 0.97302465 0.97511856\n", + " 0.97643916 0.97696816 0.95766733 0.96259331 0.96693812 0.97063664\n", + " 0.97363531 0.97589175 0.97737455 0.97806326 0.97696816 0.98254014\n", + " 0.9874378 0.9915972 0.99496444 0.99749587 0.99915849 0.99993052\n", + " 0.97806326 0.98350803 0.98826539 0.99227336 0.99548004 0.9978438\n", + " 0.99933381 0.99993052 0.95983895 0.96531454 0.96984084 0.97331841\n", + " 0.97567313 0.97685567 0.95989943 0.96555544 0.97027239 0.9739469\n", + " 0.97650091 0.97788117 0.9794755 0.98585963 0.99116626 0.99529202\n", + " 0.99815658 0.99970383 0.98051633 0.98673547 0.99185942 0.99578843\n", + " 0.99844594 0.99977985 0.95770236 0.95770236 0.9999289 0.9999289\n", + " 0.96207028 0.96781171 0.97259724 0.9763238 0.97891342 0.98031274\n", + " 0.96763099 0.97358492 0.97854164 0.98239859 0.98507763 0.98652493\n", + " 0.97222509 0.97834888 0.98344316 0.98740541 0.99015692 0.99164321\n", + " 0.97575346 0.98200495 0.98720313 0.99124524 0.994DEBUG:root:radec2pix: lng: [ 90.31538026 90.36623882 90.43676438 90.5410988 90.71121584\n", + " 91.03796151 91.92203204 102.88976492 90.31538026 98.24711833\n", + " 105.87469321 112.96816895 119.3908045 125.09574844 130.10218059\n", + " 134.46760759 102.88976492 170.61981741 175.18843619 176.76786642\n", + " 177.56728748 178.0499121 178.37286738 178.60412954 134.46760759\n", + " 138.7587586 143.69705248 149.3491301 155.74646239 162.85581906\n", + " 170.55107093 178.60412954 90.36478543 90.44558973 90.57261901\n", + " 90.80142559 91.33604138 94.02159324 93.79493665 103.34977578\n", + " 112.20947139 120.08219547 126.87889854 132.65213472 159.7741798\n", + " 174.12277646 176.57679256 177.5862344 178.13623505 178.48225333\n", + " 136.25009833 141.93538112 148.66205842 156.50402904 165.39685811\n", + " 175.06487905 90.34286209 90.34286209 178.57562014 178.57562014\n", + " 94.0377805 104.17347615 113.48518905 121.65239591 128.60482826\n", + " 134.43270854 94.93153704 107.15620301 117.97484261 127.00098521\n", + " 134.30466928 140.15819331 96.33160595 111.653892DEBUG:root:mm_to_pix: fitpx: [[0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]]\n", + "DEBUG:root:make_az_asym: xyp: [[ -0.167405 31.491388 ]\n", + " [ -0.167405 27.10495943]\n", + " [ -0.167405 22.71853086]\n", + " [ -0.167405 18.33210229]\n", + " [ -0.167405 13.94567372]\n", + " [ -0.167405 9.55924515]\n", + " [ -0.167405 5.17281657]\n", + " [ -0.167405 0.786388 ]\n", + " [ -0.167405 31.491388 ]\n", + " [ -4.55383357 31.491388 ]\n", + " [ -8.94026214 31.491388 ]\n", + " [-13.32669071 31.491388 ]\n", + " [-17.71311928 31.491388 ]\n", + " [-22.09954786 31.491388 ]\n", + " [-26.48597643 31.491388 ]\n", + " [-30.872405 31.491388 ]\n", + " [ -0.167405 0.786388 ]\n", + " [ -4.55383357 0.786388 ]\n", + " [ -8.94026214 0.786388 ]\n", + " [-13.32669071 0.786388 ]\n", + " [-17.71311929 0.786388 ]\n", + " [-22.09954786 0.786388 ]\n", + " [-26.48597643 0.786388 ]\n", + " [-30.872405 0.786388 ]\n", + " [-30.872405 31.491388 ]\n", + " [-30.872405 27.10495943]\n", + " [-30.872405 22.71853086]\n", + " [-30.872405 18.33210229]\n", + " [-30.872405 13.94567371]\n", + " [-30.872405 9.55924514]\n", + " [-30.872405 5.17281657]\n", + " [-30.872405 0.786388 ]\n", + " [ -0.182405 29.578888 ]\n", + " [ -0.182405 24.202888 ]\n", + " [ -0.182405 18.826888 ]\n", + " [ -0.182405 13.450888 ]\n", + " [ -0.182405 8.074888 ]\n", + " [ -0.182405 2.698888 ]\n", + " [ -2.079905 31.476388 ]\n", + " [ -7.455905 31.476388 ]\n", + " [-12.831905 31.476388 ]\n", + " [-18.207905 31.476388 ]\n", + " [-23.583905 31.476388 ]\n", + " [-28.959905 31.476388 ]\n", + " [ -2.079905 0.801388 ]\n", + " [ -7.455905 0.801388 ]\n", + " [-12.831905 0.801388 ]\n", + " [-18.207905 0.801388 ]\n", + " [-23.583905 0.801388 ]\n", + " [-28.959905 0.801388 ]\n", + " [-30.857405 29.578888 ]\n", + " [-30.857405 24.202888 ]\n", + " [-30.857405 18.826888 ]\n", + " [-30.857405 13.450888 ]\n", + " [-30.857405 8.074888 ]\n", + " [-30.857405 2.698888 ]\n", + " [ -0.182405 31.476388 ]\n", + " [ -0.182405 31.476388 ]\n", + " [-30.857405 0.801388 ]\n", + " [-30.857405 0.801388 ]\n", + " [ -2.079905 29.578888 ]\n", + " [ -7.455905 29.578888 ]\n", + " [-12.831905 29.578888 ]\n", + " [-18.207905 29.578888 ]\n", + " [-23.583905 29.578888 ]\n", + " [-28.959905 29.578888 ]\n", + " [ -2.079905 24.202888 ]\n", + " [ -7.455905 24.202888 ]\n", + " [-12.831905 24.202888 ]\n", + " [-18.207905 24.202888 ]\n", + " [-23.583905 24.202888 ]\n", + " [-28.959905 266 124.33611449\n", + " 134.10224284 141.45645803 147.02415603 98.83348775 119.07751066\n", + " 133.73407847 143.6218029 150.36959526 155.14598444 104.53566541\n", + " 132.85570308 147.93620706 156.17810512 161.17666862 164.48488524\n", + " 128.03043433 160.3400738 168.27016728 171.67458296 173.55402386\n", + " 174.74323713]\n", + "0519 0.9955679\n", + " 0.97814205 0.98447887 0.98974676 0.9938426 0.99668644 0.9982225\n", + " 0.97934146 0.98572085 0.99102359 0.99514634 0.99800882 0.99955494]]\n", + "4.202888 ]\n", + " [ -2.079905 18.826888 ]\n", + " [ -7.455905 18.826888 ]\n", + " [-12.831905 18.826888 ]\n", + " [-18.207905 18.826888 ]\n", + " [-23.583905 18.826888 ]\n", + " [-28.959905 18.826888 ]\n", + " [ -2.079905 13.450888 ]\n", + " [ -7.455905 13.450888 ]\n", + " [-12.831905 13.450888 ]\n", + " [-18.207905 13.450888 ]\n", + " [-23.583905 13.450888 ]\n", + " [-28.959905 13.450888 ]\n", + " [ -2.079905 8.074888 ]\n", + " [ -7.455905 8.074888 ]\n", + " [-12.831905 8.074888 ]\n", + " [-18.20790499 8.074888 ]\n", + " [-23.583905 8.074888 ]\n", + " [-28.959905 8.074888 ]\n", + " [ -2DEBUG:root:cartToSphere: vec: [[-0.20607518 -0.20019593 0.95783851]\n", + " [-0.20787446 -0.17367087 0.96261448]\n", + " [-0.20940354 -0.14646307 0.96679818]\n", + " [-0.21066179 -0.11868235 0.97032784]\n", + " [-0.21164814 -0.09043873 0.97315256]\n", + " [-0.21236112 -0.0618427 0.9752324 ]\n", + " [-0.21279916 -0.03300558 0.97653835]\n", + " [-0.21296107 -0.0040396 0.97705233]\n", + " [-0.20607518 -0.20019593 0.95783851]\n", + " [-0.17964954 -0.20202839 0.96276195]\n", + " [-0.15251864 -0.20359907 0.96710159]\n", + " [-0.12479221 -0.20490731 0.97079344]\n", + " [-0.09658011 -0.20595196 0.97378441]\n", + " [-0.06799262 -0.20673135 0.97603235]\n", + " [-0.03914089 -0.20724368 0.97750603]\n", + " [-0.01013708 -0.20748743 0.97818516]\n", + " [-0.21296107 -0.0040396 0.97705233]\n", + " [-0.18561075 -0.00409191 0.98261483]\n", + " [-0.15755214 -0.0041395 0.98750199]\n", + " [-0.12888979 -0.00418225 0.99165011]\n", + " [-0.09972928 -0.00421998 0.99500566]\n", + " [-0.07017922 -0.00425248 0.99752533]\n", + " [-0.04035219 -0.00427955 0.99917635]\n", + " [-0.01036463 -0.00430103 0.99993704]\n", + " [-0.01013708 -0.20748743 0.97818DEBUG:root:radec2pix: camVec Shape: (3, 96)\n", + ".079905 2.698888 ]\n", + " [ -7.455905 2.698888 ]\n", + " [-12.831905 2.698888 ]\n", + " [-18.207905 2.698888 ]\n", + " [-23.583905 2.698888 ]\n", + " [-28.959905 2.698888 ]]\n", + "DEBUG:root:optics_fp: xyfp shape: (96, 2)\n", + "516]\n", + " [-0.01020871 -0.17998755 0.98361591]\n", + " [-0.01026764 -0.15180051 0.98835782]\n", + " [-0.01031373 -0.12303089 0.99234925]\n", + " [-0.01034674 -0.0937848 0.99553873]\n", + " [-0.01036638 -0.06417157 0.99788504]\n", + " [-0.0103724 -0.03430461 0.9993576 ]\n", + " [-0.01036463 -0.00430103 0.99993704]\n", + " [-0.20680345 -0.18872819 0.96000729]\n", + " [-0.20882603 -0.15574492 0.96547149]\n", + " [-0.21044235 -0.12184525 0.96998338]\n", + " [-0.21165063 -0.0872316 0.97344474]\n", + " [-0.2124482 -0.05210744 0.97578203]\n", + " [-0.2128323 -0.0166781 0.97694639]\n", + " [-0.19465346 -0.20093724 0.96006992]\n", + " [-0.16177694 -0.20300612 0.96572084]\n", + " [-0.12795009 -0.20468137 0.97042996]\n", + " [-0.0933751 -0.20596106 0.97409503]\n", + " [-0.05825505 -0.20684219 0.97663845]\n", + " [-0.022795 -0.20732153 0.97800724]\n", + " [-0.20112996 -0.00416252 0.97955572]\n", + " [-0.16711987 -0.00422448 0.98592753]\n", + " [-0.13214975 -0.00427905 0.99122053]\n", + " [-0.09641349 -0.00432591 0.99533197]\n", + " [-0.0601111 -0.00436469 0.99818215]\n", + " [-0.02345151 -0.00439503 0.99971531]\n", + " [-0.01026957 -0.19558822 0.98063234]\n", + " [-0.0103498 -0.16140908 0.98683331]\n", + " [-0.01041065 -0.12630166 0.99193725]\n", + " [-0.01045169 -0.09046055 0.99584519]\n", + " [-0.01047241 -0.05408714 0.9984813 ]\n", + " [-0.01047238 -0.0173918 0.99979391]\n", + " [-0.20599275 -0.20011322 0.95787352]\n", + " [-0.20599275 -0.20011322 0.95787352]\n", + " [-0.01046737 -0.00440367 0.99993552]\n", + " [-0.01046737 -0.00440367 0.99993552]\n", + " [-0.19541667 -0.18950334 0.9622374 ]\n", + " [-0.16240545 -0.19145029 0.96797276]\n", + " [-0.12844349 -0.19302803 0.97274994]\n", + " [-0.09373247 -0.19423441 0.9764667 ]\n", + " [-0.05847519 -0.195066 0.97904541]\n", + " [-0.02287686 -0.19551916 0.98043302]\n", + " [-0.19732118 -0.15638145 0.96778572]\n", + " [-0.16397526 -0.15798254 0.97373181]\n", + " [-0.12967711 -0.1592836 0.978679 ]\n", + " [-0.09462661 -0.160281DEBUG:root:make_az_asym: xyp: shape: (96, 2)\n", + "DEBUG:root:mm_to_pix: fitpx.shape: (96, 2)\n", + "64 0.98252511]\n", + " [-0.05902568 -0.16097217 0.98519233]\n", + " [-0.02308015 -0.16135064 0.98662722]\n", + " [-0.19884383 -0.12234264 0.97236485]\n", + " [-0.16523235 -0.1235961 0.97847957]\n", + " [-0.13066656 -0.12461804 0.98356321]\n", + " [-0.09534433 -0.12540495 0.98751357]\n", + " [-0.05946678 -0.1259519 0.9902524 ]\n", + " [-0.02324061 -0.1262541 0.99172566]\n", + " [-0.19998259 -0.08758892 0.9758766 ]\n", + " [-0.16617376 -0.08849133 0.9821179 ]\n", + " [-0.13140827 -0.08922984 0.98730436]\n", + " [-0.09588212 -0.08980108 0.99133364]\n", + " [-0.05979589 -0.09020062 0.9941269 ]\n", + " [-0.0233572 -0.09042422 0.9956294 ]\n", + " [-0.20073433 -0.05232353 0.9782474 ]\n", + " [-0.16679525 -0.0528708 0.98457302]\n", + " [-0.13189744 -0.053321 0.98982824]\n", + " [-0.09623556 -0.05367171 0.99391049]\n", + " [-0.06000982 -0.05391982 0.99674043]\n", + " [-0.02342863 -0.0540624 0.99826267]\n", + " [-0.20109591 -0.016752 0.97942831]\n", + " [-0.16709274 -0.01694088 0.98579563]\n", + " [-0.13212968 -0.01709901 0.99108495DEBUG:root:radec2pix: xyfp: [[ -0.230877 31.363511 ]\n", + " [ -0.230877 26.97708243]\n", + " [ -0.230877 22.59065386]\n", + " [ -0.230877 18.20422528]\n", + " [ -0.230877 13.81779671]\n", + " [ -0.230877 9.43136815]\n", + " [ -0.230877 5.04493957]\n", + " [ -0.230877 0.658511 ]\n", + " [ -0.230877 31.363511 ]\n", + " [ -4.61730557 31.363511 ]\n", + " [ -9.00373414 31.363511 ]\n", + " [-13.39016272 31.363511 ]\n", + " [-17.77659129 31.363511 ]\n", + " [-22.16301986 31.363511 ]\n", + " [-26.54944843 31.363511 ]\n", + " [-30.935877 31.363511 ]\n", + " [ -0.230877 0.658511 ]\n", + " [ -4.61730558 0.658511 ]\n", + " [ -9.00373414 0.658511 ]\n", + " [-13.39016271 0.658511 ]\n", + " [-17.77659128 0.658511 ]\n", + " [-22.16301986 0.658511 ]\n", + " [-26.54944843 0.658511 ]\n", + " [-30.935877 0.658511 ]\n", + " [-30.935877 31.363511 ]\n", + " [-30.935877 26.97708243]\n", + " [-30.935877 22.59065386]\n", + " [-30.935877 18.20422528]\n", + " [-30.935877 13.81779671]\n", + " [-30.935877 9.43136814]\n", + " [-30.935877 5.04493957]\n", + " [-30.935877 0.658511 ]\n", + " [ -0.245877 29.451011 ]\n", + " [ -0.245877 DEBUG:root:optics_fp: rtanth: [31.45867372 27.07232164 22.68599914 18.29972749 13.91355478 9.52761765\n", + " 5.14251895 0.77266756 31.45867372 31.78680319 32.70527593 34.16651578\n", + " 36.10468169 38.44771501 41.12647627 44.07980062 0.77266756 4.62057574\n", + " 8.9768556 13.35288972 17.73406053 22.11731568 26.50162097 30.8865292\n", + " 44.07980062 41.06447698 38.31494783 35.89234872 33.86691125 32.31340541\n", + " 31.3021752 30.8865292 29.54629558 24.17042769 18.79463536 13.41900945\n", + " 8.04388357 2.67227674 31.51224371 32.31623619 33.96261905 36.33706944\n", + " 39.30786805 42.7508727 2.22187045 7.50028847 12.8598094 18.22903784\n", + " 23.60134944 28.97502929 42.72508353 39.20023922 36.1342981 33.65291956\n", + " 31.89283999 30.97725364 31.44375973 31.44375973 30.87190328 30.87190328\n", + " 29.6191671 30.47314683 32.21386423 34.70815714 37.80716925 41.37524227\n", + " 24.25945282 25.29503252 27.36711605 30.26354513 33.77288911 37.72448364\n", + " 18.90898716 20.22047017 22.759345 26.17080258 30.16018539 34.5277484\n", + " 13.57870729 15.3524887 24.075011 ]\n", + " [ -0.245877 18.699011 ]\n", + " [ -0.245877 13.323011 ]\n", + " [ -0.245877 7.947011 ]\n", + " [ -0.245877 2.571011 ]\n", + " [ -2.143377 31.348511 ]\n", + " [ -7.519377 31.348511 ]\n", + " [-12.895377 31.348511 ]\n", + " [-18.271377 31.348511 ]\n", + " [-23.647377 31.348511 ]\n", + " [-29.023377 31.348511 ]\n", + " [ -2.143377 0.673511 ]\n", + " [ -7.519377 0.673511 ]\n", + " [-12.895377 0.673511 ]\n", + " [-18.271377 0.673511 ]\n", + " [-23.64737701 0.673511 ]\n", + " [-29.023377 0.673511 ]\n", + " [-30.920877 29.451011 ]\n", + " [-30.920877 24.075011 ]\n", + " [-30.920877 18.699011 ]\n", + " [-30.920877 13.323011 ]\n", + " [-30.920877 7.947011 ]\n", + " [-30.920877 2.571011 ]\n", + " [ -0.245877 31.348511 ]\n", + " [ -0.245877 31.348511 ]\n", + " [-30.920877 0.673511 ]\n", + " [-30.920877 0.673511 ]\n", + " [ -2.143377 29.451011 ]\n", + " [ -7.519377 29.451011 ]\n", + " [-12.895377 29.451011 ]\n", + " [-18.271377 29.451011 ]\n", + " [-23.647377 29.451011 ]\n", + " [-29.023377 29.451011 ]\n", + " [ -2.143377 24.075011 ]\n", + " [ -7.519377 24.075011 ]\n", + "DEBUG:root:radec2pix: lat: [77.97206498 79.57806769 81.21593647 82.8803899 84.56638266 86.26889583\n", + " 87.98262539 89.69667435 77.97206498 77.85336036 77.52222772 76.99897078\n", + " 76.31199967 75.49295235 74.57292056 73.58021644 89.69667435 88.18712874\n", + " 86.48361023 84.78319776 83.0967184 81.43034165 79.78948121 78.17954495\n", + " 73.58021644 74.59400834 75.53901524 76.38685312 77.10589211 77.66330027\n", + " 78.02875412 78.17954495 78.66798463 80.65841057 82.69141578 84.75761477\n", + " 86.84771627 88.95113309 77.95267103 77.66228009 77.07171569 76.23019363\n", + " 75.19557036 74.02401451 89.12786485 87.06007007 84.97409331 82.90740441\n", + " 80.87177406 78.87718093 74.03267423 75.23268127 76.30156716 77.18237665\n", + " 77.81504555 78.14660304 77.97746528 77.97746528 78.18485708 78.18485708\n", + " 78.64134167 78.32984157 77.69918411 76.80616019 75.71557851 74.48840848\n", + " 80.62507537 80.23817759 79.46907283 78.40617113 77.13948546 75.74438817\n", + " 82.64779184 82.14857946 81.18831589 79.91227353 78.44384133 76.87031089\n", + " 84.69583972 84.01119948 82.77741875 81.24014725 79.55379065 77.80461009\n", + " 86.74476583 85.70761057 84.09008812 82.26687253 80.3773841 78.48020641\n", + " 88.67187538 86.89501933 84.87693536 82.83944721 80.82012657 78.83603949]\n", + "4 18.5693102 22.62172417 27.13794906 31.92173094\n", + " 8.30755918 10.96964715 15.14772357 19.90921024 24.92192864 30.06045831\n", + " 3.38416012 7.92276206 13.11070286 18.40689143 23.73898749 29.08725072]\n", + " [-12.895377 24.075011 ]\n", + " [-18.271377 24.075011 ]\n", + " [-23.647377 24.075011 ]\n", + " [-29.023377 24.075011 ]\n", + " [ -2.143377 18.699011 ]\n", + " [ -7.519377 18.699011 ]\n", + " [-12.895377 18.699011 ]\n", + " [-18.271377 18.699011 ]\n", + " [-23.647377 18.699011 ]\n", + " [-29.023377 18.699011 ]\n", + " [ -2.143377 13.323011 ]\n", + " [ -7.519377 13.323011 ]\n", + " [-12.895377 13.323011 ]\n", + " [-18.271377 13.323011 ]\n", + " [-23.647377 13.323011 ]\n", + " [-29.023377 13.323011 ]\n", + " [ -2.143377 7.947011 ]\n", + " [ -7.519377 7.947011 ]\n", + " [-12.895377 7.947011 ]\n", + " [-18.271377 7.947011 ]\n", + " [-23.647377 7.947011 ]\n", + " [-29.023377 7.947011 ]\n", + " [ -2.143377 2.571011 ]\n", + " [ -7.519377 2.571011 ]\n", + " [-12.895377 2.571011 ]\n", + " [-18.271377 2.571011 ]\n", + " [-23.647377 2.571011 ]\n", + " [-29.023377 2.571011 ]]\n", + "DEBUG:root:radec2pix: camVec: [[-0.20605921 -0.20787315 -0.20942436 -0.21070676 -0.21171698 -0.21245291\n", + " -0.21291301 -0.2130962 -0.20605921 -0.17962884 -0.15250018 -0.12477652\n", + " -0.0965659 -0.06797863 -0.03912632 -0.01012153 -0.2130962 -0.18573503\n", + " -0.15766321 -0.1289874 -0.09981355 -0.07024926 -0.04040619 -0.01040084\n", + " -0.01012153 -0.01020027 -0.01026637 -0.01031977 -0.01036027 -0.01038751\n", + " -0.01040113 -0.01040084 -0.20679239 -0.20883895 -0.21048459 -0.2117221\n", + " -0.21254753 -0.21295821 -0.1946339 -0.16175754 -0.12793421 -0.09336102\n", + " -0.05824097 -0.02277993 -0.20126076 -0.16723544 -0.13224882 -0.09649617\n", + " -0.06017591 -0.02349561 -0.01025713 -0.01034611 -0.01041588 -0.01046611\n", + " -0.01049618 -0.01050541 -0.20597676 -0.20597676 -0.01050361 -0.01050361\n", + " -0.19540403 -0.16239488DEBUG:root:cartToSphere: vec: [[ 0.00114566 -0.20812604 0.97810134]\n", + " [ 0.00115565 -0.1806373 0.9835491 ]\n", + " [ 0.00116422 -0.15245726 0.98830938]\n", + " [ 0.00117136 -0.12369032 0.99232018]\n", + " [ 0.00117701 -0.09444319 0.99552956]\n", + " [ 0.00118116 -0.06482624 0.99789587]\n", + " [ 0.00118376 -0.03495355 0.99938824]\n", + " [ 0.00118481 -0.00494229 0.99998708]\n", + " [ 0.00114566 -0.20812604 0.97810134]\n", + " [ 0.03017404 -0.20797994 0.97766757]\n", + " [ 0.05908469 -0.20756351 0.97643555]\n", + " [ 0.08776498 -0.20687811 0.97442227]\n", + " [ 0.11610332 -0.20592557 0.97165564]\n", + " [ 0.14398904 -0.20470759 0.96817455]\n", + " [ 0.17131174 -0.20322504 0.96402898]\n", + " [ 0.19796003 -0.20147731 0.95928031]\n", + " [ 0.00118481 -0.00494229 0.99998708]\n", + " [ 0.03120455 -0.00493875 0.99950082]\n", + " [ 0.06110052 -0.0049287 0.99811945]\n", + " [ 0.09075528 -0.00491221 0.99586111]\n", + " [ 0.1200543 -0.00488939 0.99275529]\n", + " [ 0.14888674 -0.0048604 0.98884231]\n", + " [ 0.17714546 -0.00482538 0.98417285]\n", + " [ 0.20472589 -0.00478446 0.97880765]\n", + " [ 0.19796003 -0.20147731 0.95928]\n", + " [-0.09640067 -0.01722548 0.99519355]\n", + " [-0.06010576 -0.01731915 0.99804176]\n", + " [-0.0234538 -0.01737894 0.99957386]]\n", + " -0.12843557 -0.09372478 -0.05846599 -0.02286533\n", + " -0.19733483 -0.16399068 -0.1296908 -0.094636 -0.05902974 -0.02307851\n", + " -0.19888634 -0.16527244 -0.13070023 -0.09537003 -0.05948408 -0.02324907\n", + " -0.20005292 -0.16623701 -0.13146138 -0.09592455 -0.05982716 -0.0233762\n", + " -0.20083104 -0.16688094 -0.13197015 -0.09629527 -0.0600556 -0.02345845\n", + " -0.20121796 -0.16720058 -0.13222195 -0.09647752 -0.06016577 -0.02349426]\n", + " [-0.20169937 -0.17519485 -0.1480085 -0.12024402 -0.09200964 -0.06341581\n", + " -0.03457423 -0.00559748 -0.20169937 -0.20353396 -0.20511207 -0.20642749\n", + " -0.20747679 -0.20825778 -0.20876879 -0.20900854 -0.00559748 -0.00565735\n", + " -0.00571045 -0.00575671 -0.00579596 -0.00582797 -0.00585246 -0.00586919\n", + " -0.20900854 -0.18153487 -0.15336672 -0.12461057 -0.09537244 -0.06576046\n", + " -0.03588698 -0.00586919 -0.1902398 -0.15728353 -0.12340547 -0.08880315\n", + " -0.0536798 -0.01824146 -0.20244048 -0.20451655 -0.20620095 -0.20748634\n", + " -0.2083686 -0.2088448 -0.00572401 -0.00579384 -0.00585326 -0.00590199\n", + " -0.0059396 -0.00596558 -0.19712185 -0.16296958 -0.1278801 -0.09204872\n", + " -0.05567473 -0.01896706 -0.2016167 -0.2016167 -0.0059719 -0.0059719\n", + " -0.19101701 -0.19297429 -0.19456158 -0.19577312 -0.19660523 -0.1970549\n", + " -0.15792497 -0.15953875 -0.16084786 -0.1618491 -0.16253892 -0.16291334\n", + " -0.12390793 -0.1251726 -0.12620079 -0.12699006 -0.12753631 -0.1278347\n", + " -0.089165 -0.090077 -0.09082101 -0.09139481 -0.09179425 -0.09201449\n", + " -0.05389991 -0.05445583 -0.05491134 -0.05526476 -0.0555129 -0.05565213\n", + " -0.018319 -0.01851594 -0.01867909 -0.01880776 -0.01890068 -0.01895646]\n", + " [ 0.95752648 0.96233857 0.96655829 0.97012578 0.97299031 0.97511138\n", + " 0.97645925 0.97701519 0.95752648 0.96244865 0.96678474 0.97047334\n", + " 0.97346207 0.97570877 0.97718203 0.97786143 0.97701519 0.98258358\n", + " 0.98747643 0.99162952 0.99498928 0.99751244 0.9991662 0.99992869\n", + " 0.97786143 0.98333161 0.98811601 0.99215206 0.99538774 0.99778137\n", + " 0.99930173 0.99992869 0.95971127 0.96521924 0.96977695 0.97328709\n", + " 0.97567516 0.97689101 0.95975804 0.96540534 0.97011031 0.97377263\n", + " 0.97631476 0.97768345 0.97952098 0.98589996 0.99119927 0.99531586\n", + " 0.99817012 0.99970614 0.98032534 0.98657685 0.99173494 0.9956995\n", + " 0.99839379 0.99976492 0.95756163 0.95756163 0.999927 0.999927\n", + " 0.96194063 0.96767186 0.97244542 0.97616011 0.97873802 0.98012578\n", + " 0.96753226 0.97347545 0.97842131 0.98226722 0.98493482 0.98637043\n", + " 0.97215793 0.97827237 0.98335691 0.9873085 0.99004855 0.99152295\n", + " 0.97571944 0.98196303 0.98715219 0.99118387 0.99397914 0.99548324\n", + " 0.97814196 0.9844721 0.98973159 0.9938174 0.99665021 0.9981746\n", + " 0.97937518 0.98574902 0.99104412 0.99515745 0.99800944 0.99954423]]\n", + "DEBUG:root:make_az_asym: xyp: [[32.23341696 31.55141621]\n", + " [32.23194958 27.16498788]\n", + " [32.2304822 031]\n", + " [ 0.19971011 -0.17488831 0.96412134]\n", + " [ 0.20119978 -0.14761103 0.96836441]\n", + " [ 0.20242973 -0.11975687 0.97194676]\n", + " [ 0.20339908 -0.09143612 0.97481703]\n", + " [ 0.20410611 -0.06275929 0.97693499]\n", + " [ 0.20454887 -0.03383788 0.97827131]\n", + " [ 0.20472589 -0.00478446 0.97880765]\n", + " [ 0.00124992 -0.19623245 0.98055661]\n", + " [ 0.00126219 -0.16206424 0.9867794 ]\n", + " [ 0.00127213 -0.12696122 0.99190687]\n", + " [ 0.00127966 -0.09111882 0.99583921]\n", + " [ 0.00128472 -0.05474021 0.9984998 ]\n", + " [ 0.00128725 -0.01803675 0.9998365 ]\n", + " [ 0.01380981 -0.20800294 0.97803071]\n", + " [ 0.04932315 -0.20764209 0.97696059]\n", + " [ 0.08454761 -0.20687664 0.97470701]\n", + " [ 0.11927732 -0.20570979 0.97131684]\n", + " [ 0.15330846 -0.20414458 0.96686168]\n", + " [ 0.18643745 -0.20218204 0.96143824]\n", + " [ 0.01428113 -0.00504426 0.9998853 ]\n", + " [ 0.05100494 -0.00503536 0.99868571]\n", + " [ 0.08742589 -0.00501654 0.9961584 ]\n", + " [ 0.12333185 -0.004988 0.99235295]\n", + " [ 0.15851879 -0.00495001 0.98734355]\n", + " [ 0.19279062 -0.00490286 0.98122767]\n", + " [ 0.19866498 -0.189 22.77855956]\n", + " [32.22901483 18.39213124]\n", + " [32.22754745 14.00570291]\n", + " [32.22608007 9.61927458]\n", + " [32.22461269 5.23284626]\n", + " [32.2231453 0.84641793]\n", + " [32.23341696 31.55141621]\n", + " [27.84698864 31.5528836 ]\n", + " [23.46056031 31.55435097]\n", + " [19.07413198 31.55581835]\n", + " [14.68770366 31.55728573]\n", + " [10.30127533 31.55875311]\n", + " [ 5.91484701 31.56022049]\n", + " [ 1.52841868 31.56168787]\n", + " [32.2231453 0.84641793]\n", + " [27.83671698 0.84788531]\n", + " [23.45028865 0.84935269]\n", + " [19.06386033 0.85082007]\n", + " [14.677432 0.85228745]\n", + " [10.29100367 0.85375483]\n", + " [ 5.90457535 0.85522221]\n", + " [ 1.51814702 0.85668959]\n", + " [ 1.52841868 31.56168787]\n", + " [ 1.5269513 27.17525955]\n", + " [ 1.52548392 22.78883122]\n", + " [ 1.52401654 18.4024029 ]\n", + " [ 1.52254916 14.01597457]\n", + " [ 1.52108178 9.62954624]\n", + " [ 1.5196144 5.24311792]\n", + " [ 1.51814702 0.85668959]\n", + " [32.21777718 29.63892134]\n", + " [32.21597876 24.26292164]\n", + " [32.21418034 18.88692194]\n", + " [32.21238193 13.51092224]\n", + " [32.21058351 8.13492254]\n", + " [32.20878509 2.75892284]\n", + " [30.32091205 31.53705599]\n", + " [24.94491236 9823 0.96147748]\n", + " [ 0.20063357 -0.15691665 0.96701775]\n", + " [ 0.20221208 -0.12292805 0.97159609]\n", + " [ 0.20339952 -0.08821992 0.97511327]\n", + " [ 0.20419277 -0.05299579 0.97749515]\n", + " [ 0.20458843 -0.01746139 0.97869233]\n", + " [ 0.00124504 -0.2080333 0.97812095]\n", + " [ 0.00124504 -0.2080333 0.97812095]\n", + " [ 0.2046327 -0.00488406 0.97882665]\n", + " [ 0.2046327 -0.00488406 0.97882665]\n", + " [ 0.01386393 -0.19620382 0.98046512]\n", + " [ 0.04951642 -0.19586344 0.97938023]\n", + " [ 0.08487904 -0.1951417 0.97709532]\n", + " [ 0.1197456 -0.19404219 0.97365734]\n", + " [ 0.15391263 -0.19256861 0.96913788]\n", + " [ 0.18717755 -0.19072284 0.96363342]\n", + " [ 0.01400003 -0.16204052 0.98668479]\n", + " [ 0.0500023 -0.16175873 0.98556272]\n", + " [ 0.08571147 -0.16116182 0.98319907]\n", + " [ 0.12092013 -0.16025398 0.97964125]\n", + " [ 0.15542529 -0.15904007 0.97496115]\n", + " [ 0.1890269 -0.15752379 0.96925491]\n", + " [ 0.01411023 -0.12694255 0.9918097 ]\n", + " [ 0.05039551 -0.12672084 0.99065742]\n", + " [ 0.08638432 -0.12625153 0.98822988]\n", + " [ 0.12186779 -0.1255387 0.98457518]\n", + " [ 0.1DEBUG:root:radec2pix: camVec Shape: (3, 96)\n", + "DEBUG:root:cartToSphere: vec: [[-0.20629584 -0.20078674 0.95766733]\n", + " [-0.20812128 -0.17428103 0.96245086]\n", + " [-0.20967356 -0.14708674 0.96664496]\n", + " [-0.21095376 -0.11931584 0.9701867 ]\n", + " [-0.21196139 -0.09107902 0.97302465]\n", + " [-0.21269501 -0.06248699 0.97511856]\n", + " [-0.2131529 -0.03365118 0.97643916]\n", + " [-0.21333373 -0.00468399 0.97696816]\n", + " [-0.20629584 -0.20078674 0.95766733]\n", + " [-0.1798852 -0.20262142 0.96259331]\n", + " [-0.15276427 -0.20419049 0.96693812]\n", + " [-0.12504507 -0.20549514 0.97063664]\n", + " [-0.09683814 -0.20653488 0.97363531]\n", + " [-0.06825398 -0.20730818 0.97589175]\n", + " [-0.03940385 -0.20781318 0.97737455]\n", + " [-0.01040007 -0.2080483 0.97806326]\n", + " [-0.21333373 -0.00468399 0.97696816]\n", + " [-0.18599064 -0.00472909 0.98254014]\n", + " [-0.15793623 -0.00476846 0.9874378 ]\n", + " [-0.12927467 -0.004802 0.9915972 ]\n", + " [-0.10011211 -0.00482954 0.99496444]\n", + " [-0.07055816 -0.00485094 0.99749587]\n", + " [-0.04072622 -0.00486604 0.99915849]\n", + " [-0.01073294 -0.00487474 0.DEBUG:root:radec2pix: xyfp: [[ -0.167405 31.491388 ]\n", + " [ -0.167405 27.10495943]\n", + " [ -0.167405 22.71853086]\n", + " [ -0.167405 18.33210229]\n", + " [ -0.167405 13.94567372]\n", + " [ -0.167405 9.55924515]\n", + " [ -0.167405 5.17281657]\n", + " [ -0.167405 0.786388 ]\n", + " [ -0.167405 31.491388 ]\n", + " [ -4.55383357 31.491388 ]\n", + " [ -8.94026214 31.491388 ]\n", + " [-13.32669071 31.491388 ]\n", + " [-17.71311928 31.491388 ]\n", + " [-22.09954786 31.491388 ]\n", + " [-26.48597643 31.491388 ]\n", + " [-30.872405 31.491388 ]\n", + " [ -0.167405 0.786388 ]\n", + " [ -4.55383357 0.786388 ]\n", + " [ -8.94026214 0.786388 ]\n", + " [-13.32669071 0.786388 ]\n", + " [-17.71311929 0.786388 ]\n", + " [-22.09954786 0.786388 ]\n", + " [-26.48597643 0.786388 ]\n", + " [-30.872405 0.786388 ]\n", + " [-30.872405 31.491388 ]\n", + " [-30.872405 27.10495943]\n", + " [-30.872405 22.71853086]\n", + " [-30.872405 18.33210229]\n", + " [-30.872405 13.94567371]\n", + " [-30.872405 9.55924514]\n", + " [-30.872405 5.17281657]\n", + " [-30.872405 0.786388 ]\n", + " [ -0.182405 29.578888 ]\n", + " [ -0.182405 DEBUG:root:radec2pix: xyfp: [[-32.29046994 -31.71666141]\n", + " [-32.28860507 -27.33023323]\n", + " [-32.2867402 -22.94380505]\n", + " [-32.28487534 -18.55737688]\n", + " [-32.28301047 -14.1709487 ]\n", + " [-32.2811456 -9.78452053]\n", + " [-32.27928073 -5.39809235]\n", + " [-32.27741587 -1.01166418]\n", + " [-32.29046994 -31.71666141]\n", + " [-27.90404176 -31.71852627]\n", + " [-23.51761359 -31.72039114]\n", + " [-19.13118541 -31.722256 ]\n", + " [-14.74475724 -31.72412087]\n", + " [-10.35832906 -31.72598574]\n", + " [ -5.97190089 -31.72785061]\n", + " [ -1.58547272 -31.72971547]\n", + " [-32.27741587 -1.01166418]\n", + " [-27.8909877 -1.01352905]\n", + " [-23.50455952 -1.01539391]\n", + " [-19.11813134 -1.01725878]\n", + " [-14.73170317 -1.01912365]\n", + " [-10.345275 -1.02098851]\n", + " [ -5.95884682 -1.02285338]\n", + " [ -1.57241864 -1.02471825]\n", + " [ -1.58547272 -31.72971547]\n", + " [ -1.58360785 -27.3432873 ]\n", + " [ -1.58174298 -22.95685912]\n", + " [ -1.57987811 -18.57043094]\n", + " [ -1.57801325 -14.18400278]\n", + " [ -1.57614838 -9.7975746 ]\n", + " [ -1.57428351 -5.41114642]\n", + " [ -1.57241864 -1.02471825]\n", + " [-32.27465685 -29.80416795]\n", + " [-32.27237127 DEBUG:root:radec2pix: lng: [224.17091663 219.87741809 214.97008665 209.39598188 203.1373574\n", + " 196.23634076 188.81644128 181.08669631 224.17091663 228.3555716\n", + " 233.16265584 238.65783928 244.87601329 251.7942959 259.30486084\n", + " 267.20296141 181.08669631 181.26291687 181.50503492 181.85849799\n", + " 182.42298774 183.46757199 186.05387592 202.53707914 267.20296141\n", + " 266.75372148 266.13046308 265.20807536 263.70434622 260.82362196\n", + " 253.17669924 202.53707914 222.38348083 216.71601144 210.07066421\n", + " 202.39896016 193.78096287 184.48069147 225.9100405 231.44842444\n", + " 237.98973756 245.61222365 254.27065244 263.72553361 181.18560606\n", + " 181.44802269 181.85460599 182.56904059 184.15297918 190.61463228\n", + " 266.99438373 266.33112836 265.28794249 263.40934603 259.04191913\n", + " 238.94596845 224.17054014 224.17054014 202.81670057 202.81670057\n", + " 224.11986404 229.69237658 236.35966367 244.23925438 253.312778\n", + " 263.32641007 218.39761245 223.93365474 230.85002743 239.44337044\n", + " 249.86289594 261.85943825 211.60273873 216.79700073 223.64273186\n", + " 232.75457852 244.72618682 259.56986466 203.65258863 208.03632189\n", + " 214.17758593 223.12426077 236.4587659 255.51668541 194.60966243\n", + " 197.58758667 202.01156736 209.14892478 221.94021993 246.56988658\n", + " 184.76194605 185.78921163 187.37371211 190.13104958 196.0740482\n", + " 216.53792504]\n", + "-24.42816844]\n", + " [-32.2700857 -19.05216893]\n", + " [-32.26780012 -13.67616941]\n", + " [-32.26551454 -8.3001699 ]\n", + " [-32.26322896 -2.92417038]\n", + " [-30.37796373 -31.70247449]\n", + " [-25.00196422 -31.70476008]\n", + " [-19.62596471 -31.70704565]\n", + " [-14.24996519 -31.70933123]\n", + " [ -8.87396568 -31.71161681]\n", + " [ -3.49796617 -31.71390239]\n", + " [-30.36492242 -1.02747727]\n", + " [-24.98892291 -1.02976285]\n", + " [-19.61292339 -1.03204842]\n", + " [-14.23692388 -1.034334 ]\n", + " [ -8.86092437 -1.03661958]\n", + " [ -3.48492485 -1.03890516]\n", + " [ -1.59965962 -29.81720927]\n", + " [ -1.59737405 -24.44120975]\n", + " [ -1.59508847 -19.06521024]\n", + " [ -1.59280289 -13.68921073]\n", + " [ -1.59051731 -8.31321121]\n", + " [ -1.58823174 -2.9372117 ]\n", + " [-32.27546357 -31.70166778]\n", + " [-32.27546357 -31.70166778]31.53885442]\n", + " [19.56891265 31.54065283]\n", + " [14.19291295 31.54245125]\n", + " [ 8.81691325 31.54424967]\n", + " [ 3.44091356 31.54604808]\n", + " [30.31065043 0.86205771]\n", + " [24.93465073 0.86385613]\n", + " [19.55865103 0.86565455]\n", + " [14.18265134 0.86745297]\n", + " [ 8.80665163 0.86925139]\n", + " [ 3.43065193 0.8710498 ]\n", + " [ 1.5427789 29.64918296]\n", + " [ 1.54098048 24.27318326]\n", + " [ 1.53918206 18.89718357]\n", + " [ 1.53738364 13.52118387]\n", + " [ 1.53558522 8.14518416]\n", + " [ 1.5337868 2.76918446]\n", + " [32.21841195 31.53642123]\n", + " [32.21841195 31.53642123]\n", + " [ 1.53315204 0.87168457]\n", + " [ 1.53315204 0.87168457]\n", + " [30.32027729 29.6395561 ]\n", + " [24.94427759 29.64135452]\n", + " [19.56827789 29.64315294]\n", + " [14.19227819 29.64495136]\n", + " [ 8.81627849 29.64674978]\n", + " [ 3.44027879 29.6485482 ]\n", + " [30.31847887 24.2635564 ]\n", + " [24.94247917 24.26535482]\n", + " [19.56647947 24.26715324]\n", + " [14.19047977 24.26895166]\n", + " [ 8.81448007 24.27075007]\n", + " [ 3.43848037 24.2725485 ]\n", + " [30.31668045 18.8875567 ]\n", + " [24.94068075 18.88935513]\n", + " [19.56468105 18.89115354]\n", + " [14.18868135 18.89295196]\n", + " [ 8.81268165 1 24.202888 ]\n", + " [ -0.182405 18.826888 ]\n", + " [ -0.182405 13.450888 ]\n", + " [ -0.182405 8.074888 ]\n", + " [ -0.182405 2.698888 ]\n", + " [ -2.079905 31.476388 ]\n", + " [ -7.455905 31.476388 ]\n", + " [-12.831905 31.476388 ]\n", + " [-18.207905 31.476388 ]\n", + " [-23.583905 31.476388 ]\n", + " [-28.959905 31.476388 ]\n", + " [ -2.079905 0.801388 ]\n", + " [ -7.455905 0.801388 ]\n", + " [-12.831905 0.801388 ]\n", + " [-18.207905 0.801388 ]\n", + " [-23.583905 0.801388 ]\n", + " [-28.959905 0.801388 ]\n", + " [-30.857405 29.578888 ]\n", + " [-30.857405 24.202888 ]\n", + " [-30.857405 18.826888 ]\n", + " [-30.857405 13.450888 ]\n", + " [-30.857405 8.074888 ]\n", + " [-30.857405 2.698888 ]\n", + " [ -0.182405 31.476388 ]\n", + " [ -0.182405 31.476388 ]\n", + " [-30.857405 0.801388 ]\n", + " [-30.857405 0.801388 ]\n", + " [ -2.079905 29.578888 ]\n", + " [ -7.455905 29.578888 ]\n", + " [-12.831905 29.578888 ]\n", + " [-18.207905 29.578888 ]\n", + " [-23.583905 29.578888 ]\n", + " [-28.959905 29.578888 ]\n", + " [ -2.079905 24.202888 ]\n", + " [ -7.455905 24.202888 ]\n", + " [-12.831905 24.202888 ]\n", + " [-18.207905 24.202888 ]\n", + " [-23.583905 24.202888 ]\n", + " [-28.959905 24.202888 ]\n", + " [ -2.079905 18.826888 ]\n", + " [ -7.455905 18.826888 ]\n", + " [-12.831905 18.826888 ]\n", + " [-18.207905 18.826888 ]\n", + " [-23.583905 18.826888 ]\n", + " [-28.959905 18.826888 ]\n", + " [ -2.079905 13.450888 ]\n", + " [ -7.455905 13.450888 ]\n", + " [-12.831905 13.450888 ]\n", + " [-18.207905 13.450888 ]\n", + " [-23.583905 13.450888 ]\n", + " [-28.959905 13.450888 ]\n", + " [ -2.079905 8.074888 ]\n", + " [ -7.455905 8.074888 ]\n", + " [-12.831905 8.074888 ]\n", + " [-18.20790499 8.074888 ]\n", + " [-23.583905 8.074888 ]\n", + " [-28.959905 8.074888 ]\n", + " [ -2.079905 2.698888 ]\n", + " [ -7.455905 2.698888 ]\n", + " [-12.831905 2.698888 ]\n", + " [-18.207905 2.698888 ]\n", + " [-23.583905 2.698888 ]\n", + " [-28.959905 2.698888 ]]\n", + "\n", + " [ -1.58742502 -1.03971187]\n", + " [ -1.58742502 -1.03971187]\n", + " [-30.37715702 -29.80497466]\n", + " [-25.00115751 -29.80726024]\n", + " [-19.625158 -29.80954582]\n", + " [-14.24915848 -29.8118314 ]\n", + " [ -8.873158DEBUG:root:radec2pix: ccdpx: [[-4.45000000e+01 -5.00000261e-01]\n", + " [-4.45000000e+01 2.91928571e+02]\n", + " [-4.45000000e+01 5.84357143e+02]\n", + " [-4.45000000e+01 8.76785715e+02]\n", + " [-4.45000000e+01 1.16921429e+03]\n", + " [-4.45000000e+01 1.46164286e+03]\n", + " [-4.45000000e+01 1.75407143e+03]\n", + " [-4.44999999e+01 2.04650000e+03]\n", + " [-4.45000000e+01 -5.00000261e-01]\n", + " [ 2.47928571e+02 -5.00000125e-01]\n", + " [ 5.40357143e+02 -4.99999959e-01]\n", + " [ 8.32785714e+02 -5.00000265e-01]\n", + " [ 1.12521429e+03 -4.99999989e-01]\n", + " [ 1.41764286e+03 -4.99999804e-01]\n", + " [ 1.71007143e+03 -4.99999857e-01]\n", + " [ 2.00250000e+03 -5.00000247e-01]\n", + " [-4.44999999e+01 2.04650000e+03]\n", + " [ 2.47928572e+02 2.04650000e+03]\n", + " [ 5.40357143e+02 2.04650000e+03]\n", + " [ 8.32785714e+02 2.04650000e+03]\n", + " [ 1.12521429e+03 2.04650000e+03]\n", + " [ 1.41764286e+03 2.04650000e+03]\n", + " [ 1.71007143e+03 2.04650000e+03]\n", + " [ 2.00250000e+03 2.04650000e+03]\n", + " [ 2.00250000e+03 -5.00000247e-01]\n", + " [ 2.00250000e+03 2.91928571e+02]\n", + " [ 2.00250000e+03 5.84357143e+02]\n", + " [ 2.00250000e+03 8.7678597 -29.81411698]\n", + " [ -3.49715945 -29.81640256]\n", + " [-30.37487145 -24.42897515]\n", + " [-24.99887193 -24.43126073]\n", + " [-19.62287241 -24.43354631]\n", + " [-14.2468729 -24.43583188]\n", + " [ -8.87087339 -24.43811746]\n", + " [ -3.49487388 -24.44040305]\n", + " [-30.37258587 -19.05297564]\n", + " [-24.99658635 -19.05526122]\n", + " [-19.62058684 -19.05754679]\n", + " [-14.24458732 -19.05983237]\n", + " [ -8.86858781 -19.06211795]\n", + " [ -3.4925883 -19.06440353]\n", + " [-30.37030029 -13.67697612]\n", + " [-24.99430077 -13.6792617 ]\n", + " [-19.61830126 -13.68154728]\n", + " [-14.24230175 -13.68383286]\n", + " [ -8.86630223 -13.68611844]\n", + " [ -3.49030272 -13.68840401]\n", + " [-30.36801471 -8.30097661]\n", + " [-24.9920152 -8.30326219]\n", + " [-19.61601568 -8.30554776]\n", + " [-14.24001617 -8.30783335]\n", + " [ -8.86401666 -8.31011893]\n", + " [ -3.48801714 -8.3124045 ]\n", + " [-30.36572914 -2.9249771 ]\n", + " [-24.98972962 -2.92726267]\n", + " [-19.6137301 -2.92954825]\n", + " [-14.23773059 -2.93183383]\n", + " [ -8.86173108 -2.93411941]\n", + " [ -3.48573156 -2.93640499]]\n", + "99993052]\n", + " [-0.01040007 -0.2080483 0.97806326]\n", + " [-0.01048759 -0.18056016 0.98350803]\n", + " [-0.01056224 -0.15238099 0.98826539]\n", + " [-0.01062379 -0.12361519 0.99227336]\n", + " [-0.01067191 -0.09436952 0.99548004]\n", + " [-0.0107063 -0.06475431 0.9978438 ]\n", + " [-0.0107267 -0.03488367 0.99933381]\n", + " [-0.01073294 -0.00487474 0.99993052]\n", + " [-0.20703611 -0.1893284 0.95983895]\n", + " [-0.20908844 -0.1563645 0.96531454]\n", + " [-0.21073192 -0.12247778 0.96984084]\n", + " [-0.21196628 -0.08787247 0.97331841]\n", + " [-0.21278893 -0.05275245 0.97567313]\n", + " [-0.21319686 -0.01732329 0.97685567]\n", + " [-0.19488162 -0.20152974 0.95989943]\n", + " [-0.16201965 -0.20359843 0.96555544]\n", + " [-0.12820231 -0.20526972 0.97027239]\n", + " [-0.09363367 -0.2065434 0.9739469 ]\n", + " [-0.05851721 -0.20741673 0.97650091]\n", + " [-0.02305821 -0.20788637 0.97788117]\n", + " [-0.20150602 -0.0048039 0.9794755 ]\n", + " [-0.16750285 -0.00485635 0.98585963]\n", + " [-0.13253465 -0.0048999 0.99116626]\n", + " [-0.0967959 -0.00493429 0.99529202]\n", + " [-0.06048842 -0.00495921 0.99815658]\n", + " [-0.02382238 -0.00497442 0.99970383]\n", + " [-0.0105395 -0.19615466 0.98051633]\n", + " [-0.01063912 -0.161714e+02]\n", + " [ 2.00250000e+03 1.16921429e+03]\n", + " [ 2.00250000e+03 1.46164286e+03]\n", + " [ 2.00250000e+03 1.75407143e+03]\n", + " [ 2.00250000e+03 2.04650000e+03]\n", + " [-4.35000000e+01 1.27000000e+02]\n", + " [-4.35000000e+01 4.85400000e+02]\n", + " [-4.35000000e+01 8.43800000e+02]\n", + " [-4.35000000e+01 1.20220000e+03]\n", + " [-4.35000000e+01 1.56060000e+03]\n", + " [-4.35000000e+01 1.91900000e+03]\n", + " [ 8.30000000e+01 4.99999891e-01]\n", + " [ 4.41400000e+02 5.00000001e-01]\n", + " [ 7.99800000e+02 5.00000129e-01]\n", + " [ 1.15820000e+03 5.00000084e-01]\n", + " [ 1.51660000e+03 5.00000000e-01]\n", + " [ 1.87500000e+03 5.00000003e-01]\n", + " [ 8.30000000e+01 2.04550000e+03]\n", + " [ 4.41400000e+02 2.04550000e+03]\n", + " [ 7.99800000e+02 2.04550000e+03]\n", + " [ 1.15820000e+03 2.04550000e+03]\n", + " [ 1.51660000e+03 2.04550000e+03]\n", + " [ 1.87500000e+03 2.04550000e+03]\n", + " [ 2.00150000e+03 1.27000000e+02]\n", + " [ 2.00150000e+03 4.85400000e+02]\n", + " [ 2.00150000e+03 8.43800000e+02]\n", + " [ 2.00150000e+03 1.20220000e+03]\n", + " [ 2.00150000e+03 1.56060000e+03]\n", + " [ 2.00150000e+03 1.91900000e+03]\n", + " [-4.350000DEBUG:root:radec2pix: xyfp Shape: (96, 2)\n", + "00e+01 4.99999945e-01]\n", + " [-4.35000000e+01 4.99999945e-01]\n", + " [ 2.00150000e+03 2.04550000e+03]\n", + " [ 2.00150000e+03 2.04550000e+03]\n", + " [ 8.30000000e+01 1.27000000e+02]\n", + " [ 4.41400000e+02 1.27000000e+02]\n", + " [ 7.99800000e+02 1.27000000e+02]\n", + " [ 1.15820000e+03 1.27000000e+02]\n", + " [ 1.51660000e+03 1.27000000e+02]\n", + " [ 1.87500000e+03 1.27000000e+02]\n", + " [ 8.30000000e+01 4.85400000e+02]\n", + " [ 4.41400000e+02 4.85400000e+02]\n", + " [ 7.99800000e+02 4.85400000e+02]\n", + " [ 1.15820000e+03 4.85400000e+02]\n", + " [ 1.51660000e+03 4.85400000e+02]\n", + " [ 1.87500000e+03 4.85400000e+02]\n", + " [ 8.30000000e+01 8.43800000e+02]\n", + " [ 4.41400000e+02 8.43800000e+02]\n", + " [ 7.99800000e+02 8.43800000e+02]\n", + " [ 1.15820000e+03 8.43800000e+02]\n", + " [ 1.51660000e+03 8.43800000e+02]\n", + " [ 1.87500000e+03 8.43800000e+02]\n", + " [ 8.30000000e+01 1.20220000e+03]\n", + " [ 4.41400000e+02 1.20220000e+03]\n", + " [ 7.99800000e+02 1.20220000e+03]\n", + " [ 1.15820000e+03 1.20220000e+03]\n", + " [ 1.51660000e+03 1.20220000e+03]\n", + " [ 1.87500000e+03 1.2029874 0.98673547]\n", + " [-0.01071899 -0.12688576 0.99185942]\n", + " [-0.01077856 -0.09104519 0.99578843]\n", + " [-0.01081726 -0.05466885 0.99844594]\n", + " [-0.01083465 -0.01796812 0.99977985]\n", + " [-0.20621357 -0.20070413 0.95770236]\n", + " [-0.20621357 -0.20070413 0.95770236]\n", + " [-0.01083565 -0.00497744 0.9999289 ]\n", + " [-0.01083565 -0.00497744 0.9999289 ]\n", + " [-0.19565571 -0.19010422 0.96207028]\n", + " [-0.16265759 -0.19204948 0.96781171]\n", + " [-0.12870452 -0.19362274 0.97259724]\n", + " [-0.09399937 -0.19482286 0.9763238 ]\n", + " [-0.05874512 -0.19564642 0.97891342]\n", + " [-0.0231472 -0.1960896 0.98031274]\n", + " [-0.19758845 -0.15700026 0.96763099]\n", + " [-0.16425347 -0.15859759 0.97358492]\n", + " [-0.12996305 -0.1598933 0.97854164]\n", + " [-0.09491705 -0.16088429 0.98239859]\n", + " [-0.05931746 -0.1615658 0.98507763]\n", + " [-0.02337052 -0.16193328 0.98652493]\n", + " [-0.19913769 -0.12297381 0.97222509]\n", + " [-0.16553623 -0.12422245 0.97834888]\n", + " [-0.13097704 -0.12523802 0.98344316]\n", + " [-0.09565767 -0.12601654 0.98740541]\n", + " [-0.05977969 -0.12655298 0.99015692]\n", + " [-0.02355053 -0.12684288 0.99164321]\n", + " [-0.20030226 -0.088228 0.97575346]\n", + " [-0.16650264 -0.0891244 0.98200495]\n", + " [-0.13174231 -0.0898551 0.98720313]\n", + " [-0.09621721 -0.09041635 0.99124524]\n", + " [-0.0601289 -0.09080384 0.9940519 ]\n", + " [-0.023686 -0.09101389 0.9955679 ]\n", + " [-0.20107886 -0.05296627 0.97814205]\n", + " [-0.16714801 -0.0535061 0.98447887]\n", + " [-0.13225382 -0.05394701 0.98974676]\n", + " [-0.09659125 -0.05428637 0.9938426 ]\n", + " [-0.06036201 -0.05452132 0.99668644]\n", + " [-0.02377567 -0.05464944 0.9982225 ]\n", + " [-0.201464 -0.01739439 0.97934146]\n", + " [-0.16746808 -0.0175743 0.98572085]\n", + " [-0.13250731 -0.01772184 0.99102359]\n", + " [-0.0967762 -0.01783608 0.99514634]\n", + " [-0.06047657 -0.01791601 0.99800882]\n", + " [-0.02381854 -0.0179608 0.99955494]]\n", + "20000e+03]\n", + " [ 8.30000000e+01 1.56060000e+03]\n", + " [ 4.41400000e+02 1.56060000e+03]\n", + " [ 7.99800000e+02 1.56060000e+03]\n", + " [ 1.15820000e+03 1.56060000e+03]\n", + " [ 1.51660000e+03 1.56060000e+03]\n", + " [ 1.87500000e+03 1.56060000e+03]\n", + " [ 8.29999998e+01 1.91900000e+03]\n", + " [ 4.41400000e+02 1.91900000e+03]\n", + " [ 7.99800000e+02 1.91900000e+03]\n", + " [ 1.15820000e+03 1.91900000e+03]\n", + " [ 1.51660000e+03 1.91900000e+03]\n", + " [ 1.87500000e+03 1.91900000e+03]]\n", + "DEBUG:root:optics_fp: cphi: [-0.0055044 -0.00639203 -0.0076229 -0.00944382 -0.01241274 -0.01811485\n", + " -0.0335395 -0.22307599 -0.0055044 -0.14344285 -0.2735344 -0.39021968\n", + " -0.49076392 -0.57494454 -0.64415274 -0.70050591 -0.22307599 -0.98662859\n", + " -0.99647595 -0.9984093 -0.99909876 -0.99942085 -0.99959678 -0.99970325\n", + " -0.70050591 -0.75194059 -0.80589783 -0.86028974 -0.91173668 -0.955566\n", + " -0.98643233 -0.99970325 -0.00636666 -0.00777693 -0.00999392 -0.01398706\n", + " -0.02331621 -0.07013242 -0.06618572 -0.2308951 -0.37799383 -0.50124187\n", + " -0.60012567 -0.67754548 -0.93833732 -0.9947436 -0.99821572 -0.99911274\n", + " -0.99947098 -0.99964917 -0.72236515 -0.7873159 -0.85411461 -0.91708811\n", + " -0.96769535 -0.99629275 -0.00598404 -0.00598404 -0.999691 -0.999691\n", + " -0.07041425 -0.24485858 -0.398512 -0.52476457 -0.62394545 -0.7000711\n", + " -0.08596532 -0.29497775 -0.46908383 -0.60182876 -0.69847361 -0.76781625\n", + " -0.11028259 -0.36899894 -0.56404664 -0.69594091 -0.78213485 -0.83890011\n", + " -0.1535634 -0.48599238 -0.6913123 -0.80511955 -0.86923269 -0.90738164\n", + " -0.25098261 -0.68015432 -0.84745756 -0.91480539 -0.94651795 -0.96355992\n", + " -0.61607996 -0.94170609 -0.97911709 -0.98946165 -0.99367815 -0.99579412]\n", + "5664287 -0.12458735 0.97976579]\n", + " [ 0.19051132 -0.12340188 0.97389805]\n", + " [ 0.01419378 -0.09110536 0.9957401 ]\n", + " [ 0.0506935 -0.09094551 0.99456477]\n", + " [ 0.08689379 -0.09060732 0.9920886 ]\n", + " [ 0.12258434 -0.09009413 0.98836032]\n", + " [ 0.15756175 -0.08941017 0.98345316]\n", + " [ 0.19162897 -0.08855947 0.97746384]\n", + " [ 0.0142499 -0.05473209 0.99839939]\n", + " [ 0.05089361 -0.05463571 0.99720849]\n", + " [ 0.08723571 -0.05443186 0.9946995 ]\n", + " [ 0.12306478 -0.05412272 0.99092169]\n", + " [ 0.15817704 -0.05371108 0.98594885]\n", + " [ 0.19237609 -0.05319971 0.97987817]\n", + " [ 0.01427798 -0.01803407 0.99973542]\n", + " [ 0.05099373 -0.01800225 0.99853671]\n", + " [ 0.08740674 -0.017938.89475038]\n", + " [ 3.43668195 18.89654879]\n", + " [30.31488203 13.51155701]\n", + " [24.93888233 13.51335542]\n", + " [19.56288263 13.51515384]\n", + " [14.18688293 13.51695226]\n", + " [ 8.81088324 13.51875068]\n", + " [ 3.43488354 13.5205491 ]\n", + " [30.31308361 8.13555731]\n", + " [24.93708392 8.13735572]\n", + " [19.56108422 8.13915414]\n", + " [14.18508451 8.14095256]\n", + " [ 8.80908482 8.14275098]\n", + " [ 3.43308512 8.1445494 ]\n", + " [30.31128519 2.75955761]\n", + " [24.93528549 2.76135602]\n", + " [19.5592858 2.76315444]\n", + " [14.18328609 2.76495286]\n", + " [ 8.8072864 2.76675128]\n", + " [ 3.4312867 2.7685497 ]]\n", + "496 0.99601124]\n", + " [ 0.12330495 -0.01783294 0.99220858]\n", + " [ 0.15848438 -0.01769716 0.98720287]\n", + " [ 0.1927489 -0.01752858 0.98109154]]\n", + "DEBUG:root:radec2pix: lat: [73.30319327 74.28364829 75.19434757 76.00760673 76.6934474 77.22149469\n", + " 77.56431546 77.70181842 73.30319327 74.31487163 75.26252869 76.11836609\n", + " 76.85166299 77.43039612 77.8244634 78.01035447 77.70181842 79.30062777\n", + " 80.93200296 82.59063863 84.2712796 85.96832552 87.67438557 89.35703566\n", + " 78.01035447 79.6141DEBUG:root:optics_fp: rtanth: [31.45867372 27.07232164 22.68599914 18.29972749 13.91355478 9.52761765\n", + " 5.14251895 0.77266756 31.45867372 31.78680319 32.70527593 34.16651578\n", + " 36.10468169 38.44771501 41.12647627 44.07980062 0.77266756 4.62057574\n", + " 8.9768556 13.35288972 17.73406053 22.11731568 26.50162097 30.8865292\n", + " 44.07980062 41.06447698 38.31494783 35.89234872 33.86691125 32.31340541\n", + " 31.3021752 30.8865292 29.54629558 24.17042769 18.79463536 13.41900945\n", + " 8.04388357 2.67227674 31.51224371 32.31623619 33.96261905 36.33706944\n", + " 39.30786805 42.7508727 2.22187045 7.50028847 12.8598094 18.22903784\n", + " 23.60134944 28.97502929 42.72508353 39.20023922 36.1342981 33.65291956\n", + " 31.89283999 30.97725364 31.44375973 31.44375973 30.87190328 30.87190328\n", + " 29.6191671 30.47314683 32.21386423 34.70815714 37.80716925 41.37524227\n", + " 24.25945282 25.29503252 27.36711605 30.26354513 33.77288911 37.72448364\n", + " 18.90898716 20.22047017 22.759345 26.17080258 30.16018539 34.5277484\n", + " 13.57870729 15.35248871514 81.24861046 82.90802789 84.58587071 86.27294722\n", + " 87.94616945 89.35703566 73.74128804 74.89975016 75.92621516 76.76637844\n", + " 77.36466213 77.67335289 73.7541097 74.95468773 76.03182731 76.93013306\n", + " 77.59097642 77.96138218 78.39443735 80.37649363 82.40216048 84.46173597\n", + " 86.54472647 88.63280521 78.70517127 80.69206097 82.71932817 84.7752745\n", + " 86.84188191 88.83673743 73.31017726 73.31017726 89.34933673 89.34933673\n", + " 74.20408349 75.46003419 76.59358943 77.54526674 78.24998117 78.64701061\n", + " 75.41740928 76.83842002 78.14733268 79.2729755 80.12769991 80.61933545\n", + " 76.49875662 78.09183026 79.59737911 80.93621381 81.99355302 82.62428133\n", + " 77.38945666 79.14833894 80.86043698 82.45133489 83.78724838 84.64121324\n", + " 78.02753384 79.92284226 81.82091734 83.6737055 85.37260957 86.62213831\n", + " 78.35820379 80.33138971 82.34363217 84.38015735 86.41373806 88.32724747]\n", + "DEBUG:root:make_az_asym: xyp: shape: (96, 2)\n", + "4 18.5693102 22.62172417 27.13794906 31.92173094\n", + " 8.30755918 10.96964715 15.14772357 19.90921024DEBUG:root:cartToSphere: vec: [[-0.20605921 -0.20169937 0.95752648]\n", + " [-0.20787315 -0.17519485 0.96233857]\n", + " [-0.20942436 -0.1480085 0.96655829]\n", + " [-0.21070676 -0.12024402 0.97012578]\n", + " [-0.21171698 -0.09200964 0.97299031]\n", + " [-0.21245291 -0.06341581 0.97511138]\n", + " [-0.21291301 -0.03457423 0.97645925]\n", + " [-0.2130962 -0.00559748 0.97701519]\n", + " [-0.20605921 -0.20169937 0.95752648]\n", + " [-0.17962884 -0.20353396 0.96244865]\n", + " [-0.15250018 -0.20511207 0.96678474]\n", + " [-0.12477652 -0.20642749 0.97047334]\n", + " [-0.0965659 -0.20747679 0.97346207]\n", + " [-0.06797863 -0.20825778 0.97570877]\n", + " [-0.03912632 -0.20876879 0.97718203]\n", + " [-0.01012153 -0.20900854 0.97786143]\n", + " [-0.2130962 -0.00559748 0.97701519]\n", + " [-0.18573503 -0.00565735 0.98258358]\n", + " [-0.15766321 -0.00571045 0.98747643]\n", + " [-0.1289874 -0.00575671 0.99162952]\n", + " [-0.09981355 -0.00579596 0.99498928]\n", + " [-0.07024926 -0.00582797 0.99751244]\n", + " [-0.04040619 -0.00585246 0.9991662 ]\n", + " [-0.01040084 -0.00586919 0.99992869]\n", + " [-0.01012153 -0.20900854 0.97786143]\n", + " [-0.01020027 -0.18153487 0.98333161]\n", + " [-0.01026637 -0.15336672 0.98811601]\n", + " [-0.01031977 -0.12461057 0.99215206]\n", + " [-0.01036027 -0.09537244 0.99538774]\n", + " [-0.01038751 -0.06576046 0.99778137]\n", + " [-0.01040113 -0.03588698 0.99930173]\n", + " [-0.01040084 -0.00586919 0.99992869]\n", + " [-0.20679239 -0.1902398 0.95971127]\n", + " [-0.20883895 -0.15728353 0.96521924]\n", + " [-0.21048459 -0.12340547 0.96977695]\n", + " [-0.2117221 -0.08880315 0.97328709]\n", + " [-0.21254753 -0.0536798 0.97567516]\n", + " [-0.21295821 -0.01824146 0.97689101]\n", + " [-0.1946339 -0.20244048 0.95975804]\n", + " [-0.16175754 -0.20451655 0.96540534]\n", + " [-0.12793421 -0.20620095 0.97011031]\n", + " [-0.09336102 -0.20748634 0.97377263]\n", + " [-0.05824097 -0.2083686 0.97631476]\n", + " [-0.02277993 -0.2088448 0.97768345]\n", + " [-0.20126076 -0.00572401 0.97952098]\n", + " [-0.16723544 -0.00579384 0.98589996]\n", + " [-0.13224882 -0.00585326 0.99119927]\n", + " [-0.09649617 -0.00590199 0.99531586]\n", + " [-0.06017591 -0.0059396 0.99817012]\n", + " [-0.02349561 -0.00596558 0.99970614]\n", + " [-0.01025713 -0.197DEBUG:root:radec2pix: lng: [224.22465666 219.9428498 215.04979529 209.49258103 203.25301711\n", + " 196.37209253 188.97143587 181.25779309 224.22465666 228.40166279\n", + " 233.19815281 238.6792283 244.87949815 251.77642798 259.26349599\n", + " 267.13824006 181.25779309 181.45651552 181.7293675 182.12731457\n", + " 182.76188514 183.93294711 186.8134933 204.42682228 267.13824006\n", + " 266.67578867 266.03490179 265.0879329 263.54803827 260.61180811\n", + " 252.90738353 204.42682228 222.44199402 216.7905754 210.16523251\n", + " 202.51687812 193.92347078 184.64535837 225.96080389 231.48791131\n", + " 238.01293878 245.61347707 254.24497485 263.67077373 181.36567301\n", + " 181.66068982 182.11730117 182.91819426 184.68697431 191.79462375\n", + " 266.92442169 266.24228499 265.17126169 263.2483557 258.80752919\n", + " 238.9103071 224.22429417 224.22429417 204.67204832 204.67204832\n", + " 224.17550953 229.73684595 236.38729877 244.24332674 253.28700279\n", + " 263.26773103 218.4700285 223.99636381 230.89540499 239.46063162\n", + " 249.83973486 261.78766678 211.69663969 216.88546 24.92192864 30.06045831\n", + " 3.38416012 7.92276206 13.11070286 18.40689143 23.73898749 29.08725072]\n", + "29 223.71683254\n", + " 232.7982941 244.71540545 259.48183646 203.77225927 208.15895021\n", + " 214.29602039 223.21973304 236.48809111 255.41258234 194.75709541\n", + " 197.7504966 202.19079752 209.33692857 222.08957905 246.48817507\n", + " 184.93467768 185.99075879 187.61766642 190.44256036 196.50176943\n", + " 217.01878407]\n", + "12185 0.98032534]\n", + " [-0.01034611 -0.16296958 0.98657685]\n", + " [-0.01041588 -0.1278801 0.99173494]\n", + " [-0.01046611 -0.09204872 0.9956995 ]\n", + " [-0.01049618 -0.05567473 0.99839379]\n", + " [-0.01050541 -0.01896706 0.99976492]\n", + " [-0.20597676 -0.2016167 0.95756163]\n", + " [-0.20597676 -0.2016167 0.95756163]\n", + " [-0.01050361 -0.0059719 0.999927 ]\n", + " [-0.01050361 -0.0059719 0.999927 ]\n", + " [-0.19540403 -0.19101701 0.96194063]\n", + " [-0.16239488 -0.19297429 0.96767186]\n", + " [-0.12843557 -0.19456158 0.97244542]\n", + " [-0.09372478 -0.19577312 0.97616011]\n", + " [-0.05846599 -0.19660523 0.97873802]\n", + " [-0.02286533 -0.1970549 0.98012578]\n", + " DEBUG:root:optics_fp: sphi: [0.99998485 0.99997957 0.99997095 0.99995541 0.99992296 0.99983591\n", + " 0.99943739 0.97480106 0.99998485 0.9896586 0.96186222 0.92072178\n", + " 0.87129259 0.81819238 0.76489689 0.7136466 0.97480106 0.16298472\n", + " 0.08387896 0.05638146 0.04244609 0.03402888 0.028395 0.02436013\n", + " 0.7136466 0.65923088 0.59205464 0.50980542 0.41077515 0.29477725\n", + " 0.16416841 0.02436013 0.99997973 0.99996976 0.99995006 0.99990218\n", + " 0.99972814 0.99753769 0.99780732 0.97297865 0.92580811 0.86530722\n", + " 0.79990573 0.73548088 0.34572109 0.10239711 0.0597107 0.0421157\n", + " 0.0325231 0.02648658 0.69151182 0.61654981 0.52008483 0.39868458\n", + " 0.25212242 0.08602764 0.9999821 0.9999821 0.02485756 0.02485756\n", + " 0.99751784 0.96955881 0.91716312 0.8512474 0.7814679 0.71407315\n", + " 0.99629813 0.95550412 0.88315364 0.79862516 0.71563581 0.64067012\n", + " 0.99390027 0.92942982 0.82574293 0.71809906 0.6231092 0.5442854\n", + " 0.9881388 0.87396305 0.72255609 0.59311256 0.49440321 0.4203077\n", + " 0.9679916 0.73306896 0.53086315 0.4DEBUG:root:radec2pix: ccdpx: [[-4.45000003e+01 -5.00000268e-01]\n", + " [-4.44999998e+01 2.91928572e+02]\n", + " [-4.44999999e+01 5.84357143e+02]\n", + " [-4.45000000e+01 8.76785714e+02]\n", + " [-4.44999998e+01 1.16921429e+03]\n", + " [-4.44999999e+01 1.46164286e+03]\n", + " [-4.44999997e+01 1.75407143e+03]\n", + " [-4.44999999e+01 2.04650000e+03]\n", + " [-4.45000003e+01 -5.00000268e-01]\n", + " [ 2.47928572e+02 -4.99999720e-01]\n", + " [ 5.40357143e+02 -5.00000140e-01]\n", + " [ 8.32785714e+02 -4.99999791e-01]\n", + " [ 1.12521429e+03 -4.99999975e-01]\n", + " [ 1.41764286e+03 -4.99999912e-01]\n", + " [ 1.71007143e+03 -4.99999978e-01]\n", + " [ 2.00250000e+03 -4.99999991e-01]\n", + " [-4.44999999e+01 2.04650000e+03]\n", + " [ 2.47928571e+02 2.04650000e+03]\n", + " [ 5.40357143e+02 2.04650000e+03]\n", + " [ 8.32785715e+02 2.04650000e+03]\n", + " [ 1.12521429e+03 2.04650000e+03]\n", + " [ 1.41764286e+03 2.04650000e+03]\n", + " [ 1.71007143e+03 2.04650000e+03]\n", + " [ 2.00250000e+03 2.04650000e+03]\n", + " [ 2.00250000e+03 -4.99999991e-01]\n", + " [ 2.00250000e+03 2.91928572e+02]\n", + " [ 2.00250000e+03 5.84357143e+02]\n", + " [ 2.00250000e+03 8.76785715e+02]\n", + " [ 2.00250000e+03 1.16921429e+03]\n", + " [ 2.00250000e+03 1.46164286e+03]\n", + " [ 2.00250000e+03 1.75407143e+03]\n", + " [ 2.00250000e+03 2.04650000e+03]\n", + " [-4.34999998e+01 1.27000000e+02]\n", + " [-4.35000000e+01 4.85400000e+02]\n", + " [-4.35000001e+01 8.43800000e+02]\n", + " [-4.35000000e+01 1.20220000e+03]\n", + " [-4.35000001e+01 1.56060000e+03]\n", + " [-4.34999999e+01 1.91900000e+03]\n", + " [ 8.30000001e+01 5.00000092e-01]\n", + " [ 4.41400000e+02 4.99999764e-01]\n", + " [ 7.99800000e+02 4.99999911e-01]\n", + " [ 1.15820000e+03 5.00000156e-01]\n", + " [ 1.51660000e+03 4.99999840e-01]\n", + " [ 1.87500000e+03 4.99999915e-01]\n", + " [ 8.29999998e+01 2.04550000e+03]\n", + " [ 4.41400000e+02 2.04550000e+03]\n", + " [ 7.99800000e+02 2.04550000e+03]\n", + " [ 1.15820000e+03 2.04550000e+03]\n", + " [ 1.51660000e+03 2.04550000e+03]\n", + " [ 1.87500000e+03 2.04550000e+03]\n", + " [ 2.00150000e+03 1.27000000e+02]\n", + " [ 2.00150000e+03 4.85400000e+02]\n", + " [ 2.00150000e+03 8.43800000e+02]\n", + " [ 2.00150000e+03 1.20220000e+03]\n", + " [ 2.00150000e+03 1.56060000e+03]\n", + " [ 2.00150000e+03 1.91900000e+03]\n", + " [-4.350000DEBUG:root:mm_to_pix: fitpx: [[0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]]\n", + "00e+01 4.99999958e-01]\n", + " [-4.35000000e+01 4.99999958e-01]\n", + " [ 2.00150000e+03 2.04550000e+03]\n", + " [ 2.0015000DEBUG:root:radec2pix: fitpx: [[2135.5 4155.50000026]\n", + " [2135.5 3863.07142876]\n", + " [2135.5 3570.64285709]\n", + " [2135.5 3278.21428545]\n", + " [2135.5 2985.7857141 ]\n", + " [2135.49999999 2693.35714316]\n", + " [2135.50000001 2400.9285712 ]\n", + " [2135.49999993 2108.50000021]\n", + " [2135.5 4155.50000026]\n", + " [1843.07142855 4155.50000013]\n", + " [1550.64285715 4155.49999996]\n", + " [1258.2142856 4155.50000027]\n", + " [ 965.78571429 4155.49999999]\n", + " [ 673.357143 4155.4999998 ]\n", + " [ 380.92857155 4155.49999986]\n", + " [ 88.49999976 4155.50000025]\n", + " [2135.49999993 2108.50000021]\n", + " [1843.07142817 2108.50000006]\n", + " [1550.64285738 2108.49999998]\n", + " [1258.21428605 2108.49999998]\n", + " [ 965.78571448 2108.49999999]\n", + " [ 673.35714251 2108.50000001]\n", + " [ 380.92857138 2108.5 ]\n", + " [ 88.50000013 2108.5 ]\n", + " [ 88.49999976 4155.50000025]\n", + " [ 88.49999974 3863.0714288 ]\n", + " [ 88.49999989 3570.64285722]\n", + " [ 88.50000025 3278.21428557]\n", + " [ 88.50000013 2985.78571423]\n", + " [ 88.49999977 2693.35714293]\n", + " [ 88.49999999 2400.92857143]\n", + " [ 88.50000013 2108.5 ]\n", + " [2134.5 4028.00000018]\n", + " [2134.5 3669.59999979]\n", + " [2134.5 3311.20000021]\n", + " [2134.5 2952.80000004]\n", + " [2134.5 2594.39999994]\n", + " [2134.50000001 2235.99999988]\n", + " [2007.99999999 4154.50000011]\n", + " [1649.6 4154.5 ]\n", + " [1291.20000005 4154.49999987]\n", + " [ 932.80000005 4154.49999992]\n", + " [ 574.4 4154.5 ]\n", + " [ 216. 4154.5 ]\n", + " [2008.00000002 2109.49999999]\n", + " [1649.60000012 2109.49999999]\n", + " [1291.19999984 2109.50000001]\n", + " [ 932.79999968 2109.50000001]\n", + " [ 574.39999959 2109.50000001]\n", + " [ 215.99999972 2109.50000001]\n", + " [ 89.4999999 4028.0000001 ]\n", + " [ 89.50000007 3669.59999994]\n", + " [ 89.49999997 3311.20000002]\n", + " [ 89.50000023 2952.7999999 ]\n", + " [ 89.49999997 2594.40000001]\n", + " [ 89.4999998 2236.00000002]\n", + " [2134.5 4154.50000005]\n", + " [2134.5 4154.50000005]\n", + " [ 89.49999997 2109.5 ]\n", + " [ 89.49999997 2109.5 ]\n", + " [2008. 4027.99999997]\n", + " [1649.59999996 4028.00000014]\n", + " [1291.20000001 4027.99999998]\n", + " [ 932.79999987 4028.00000021]\n", + " [ 574.40000006 4027.99999993]\n", + " [ 215.9999998 4028.0000002 ]\n", + " [2008. 3669.59999996]\n", + " [1649.60000001 3669.59999998]\n", + " [1291.20000007 3669.59999987]\n", + " [ 932.79999997 3669.60000004]\n", + " [ 574.39999998 3669.60000002]\n", + " [ 215.99999986 3669.60000012]\n", + " [2008. 3311.20000004]\n", + " [1649.59999995 3311.20000012]\n", + " [1291.19999997 3311.20000005]\n", + " [ 932.80000015 3311.19999984]\n", + " [ 574.40000003 3311.19999997]\n", + " [ 216.00000001 3311.2 ]\n", + " [2007.99999998 2952.80000014]\n", + " [1649.60000006 2952.7999999 ]\n", + " [1291.20000015 2952.79999984]\n", + " [ 932.80000014 2952.7999999 ]\n", + " [ 574.39999986 2952.80000008]\n", + " [ 215.99999973 2952.80000012]\n", + " [2007.99999998 2594.40000007]\n", + " [1649.60000022 2594.39999977]\n", + " [1291.20000005 2594.39999997]\n", + " [ 932.79999996 2594.40000002]\n", + " [ 574.39999995 2594.40000002]\n", + " [ 216.00000004 2594.39999999]\n", + " [2008.00000021 2235.99999975]\n", + " [1649.59999975 2236.00000009]\n", + " [1291.20000026 2235.99999995]\n", + " [ 932.79999972 2236.00000004]\n", + " [ 574.39999974 2236.00000003]\n", + " [ 216.00000028 2235.99999998]]\n", + "DEBUG:root:radec2pix: lng: [270.31539085 270.36655189 270.43752447 270.542579 270.71402077\n", + " 271.04383538 271.93968007 283.48101478 270.31539085 278.25496108\n", + " 285.88944585 292.98836581 299.41482725 305.12212741 310.12974078\n", + " 314.49549071 283.48101478 351.00638008 355.38819591 356.90183998\n", + " 357.66783206 358.13024629 358.43966874 358.66123705 314.49549071\n", + " 318.7910165 323.73421549 329.3915583 335.79415496 342.90819266\n", + " 350.6068072 358.66123705 270.36494598 270.44622312 270.57407396\n", + " 270.80460183 271.34445266 274.08218667 273.79842993 283.36234739\n", + " 292.22915231 300.10657084 306.9058095 312.67997848 340.54617186\n", + " 354.36185807 356.71594406 357.68400903 358.21142556 358.54322592\n", + " 316.27981968 321.97083668 328.70389405 336.55230838 345.45057848\n", + " 355.12169333 270.34290102 270.34290102 358.63275532 358.63275532\n", + " 274.04185073 284.1877247 293.50716352 301.67919787 308.63398936\n", + " 314.46249394 274.93799638 287.17724528 298.00560006 307.03649051\n", + " 314.34141513 320.19418356 276.34264386 2910389491 0.32265115 0.26749257\n", + " 0.78768362 0.33643669 0.20329713 0.14479515 0.11226633 0.09161916]\n", + ".68718176 304.38086955\n", + " 314.14993264 321.50269119 327.06723776 278.85521862 299.13552131\n", + " 313.8014816 323.6857401 330.42677291 335.19643967 284.59338686\n", + " 312.96912569 328.03736148 336.26056332 341.24440919 344.5417427\n", + " 308.36945368 340.55550723 348.40444495 351.77067409 353.62846105\n", + " 354.80381648]\n", + "DEBUG:root:radec2pix: lat: [73.26908943 74.24907619 75.16003276 75.97420276 76.66164507 77.19203919\n", + " 77.53795274 77.67919539 73.26908943 74.27917066 75.22575502 76.08096918\n", + " 76.81416078 77.39343277 77.78879656 77.97677996 77.67919539 79.27760057\n", + " 80.9086962 82.56716816 84.24766937 85.94438651 87.64930302 89.3245763\n", + " 77.97677996 79.57988268 81.21386953 82.87289707 84.55034798 86.23677698\n", + " 87.90848861 89.3245763 73.70687233 74.86526918 75.89266936 76.7347974\n", + " 77.33616788 77.64902834 73.71922865 74.91822462 75.99447399 76.89265343\n", + " 77.55435927 77.92679672 78.37161008 80.3532483 82.37868114 84.4DEBUG:root:fitpix2pix: ccdpx: shape: (96, 2)\n", + "3807116\n", + " 86.5205023 88.60550058 78.67128345 80.65746446 82.68422414 84.73967937\n", + " 86.80532112 88.79773368 73.27606371 73.27606371 89.31677804 89.31677804\n", + " 74.16894713 75.42332545 76.55590489 77.50736059 78.21290493 78.61205636\n", + " 75.38223897 76.80151051 78.10907648 79.23409871 80.08944165 80.58344411\n", + " 76.46449862 78.05559614 79.5593541 80.89695848 81.95437214 82.58757556\n", + " 77.35718097 79.11401738 80.82399404 82.41287861 83.74766412 84.60361539\n", + " 77.99846994 79.89205969 81.78816951 83.63850339 85.33442441 86.58329889\n", + " 78.33357011 80.30591073 82.31728996 84.35260664 86.38369379 88.29053235]\n", + "0e+03 2.04550000e+03]\n", + " [ 8.30000002e+01 1.27000000e+02]\n", + " [ 4.41400000e+02 1.27000000e+02]\n", + " [ 7.99800000e+02 1.27000000e+02]\n", + " [ 1.15820000e+03 1.27000000e+02]\n", + " [ 1.51660000e+03 1.27000000e+02]\n", + " [ 1.87500000e+03 1.27000000e+02]\n", + " [ 8.29999999e+01 4.85400000e+02]\n", + " [ 4.41400000e+02 4.85400000e+02]\n", + " [ 7.99800000e+02 4.85400000e+02]\n", + " [ 1.15820000e+03 4.854DEBUG:root:fitpix2pix: visCut: True\n", + "DEBUG:root:mm_to_pix: fitpx.shape: (96, 2)\n", + "DEBUG:root:optics_fp: cphi: [-0.0055044 -0.00639203 -0.0076229 -0.00944382 -0.01241274 -0.01811485\n", + " -0.0335395 -0.22307599 -0.0055044 -0.14344285 -0.2735344 -0.39021968\n", + " -0.49076392 -0.57494454 -0.64415274 -0.70050591 -0.22307599 -0.98662859\n", + " -0.99647595 -0.9984093 -0.99909876 -0.99942085 -0.99959678 -0.99970325\n", + " -0.70050591 -0.75194059 -0.80589783 -0.86028974 -0.91173668 -0.955566\n", + " -0.98643233 -0.99970325 -0.00636666 -0.00777693 -0.00999392 -0.01398706\n", + " -0.02331621 -0.07013242 -0.06618572 -0.2308951 -0.37799383 -0.50124187\n", + " -0.60012567 -0.67754548 -0.93833732 -0.9947436 -0.99821572 -0.99911274\n", + " -0.99947098 -0.99964917 -0.72236515 -0.7873159 -0.85411461 -0.91708811\n", + " -0.96769535 -0.99629275 -0.00598404 -0.00598404 -0.999691 -0.999691\n", + " -0.07041425 -0.24485858 -0.398512 -0.52476457 -0.62394545 -0.7000711\n", + " -0.08596532 -0.29497775 -0.46908383 -0.60182876 -0.69847361 -0.76781625\n", + " -0.11028259 -0.368998[-0.19733483 -0.15792497 0.96753226]\n", + " [-0.16399068 -0.15953875 0.97347545]\n", + " [-0.1296908 -0.16084786 0.97842131]\n", + " [-0.094636 -0.1618491 0.98226722]\n", + " [-0.05902974 -0.16253892 0.98493482]\n", + " [-0.02307851 -0.16291334 0.98637043]\n", + " [-0.19888634 -0.12390793 0.97215793]\n", + " [-0.16527244 -0.1251726 0.97827237]\n", + " [-0.13070023 -0.12620079 0.98335691]\n", + " [-0.09537003 -0.12699006 0.9873085 ]\n", + " [-0.05948408 -0.12753631 0.99004855]\n", + " [-0.02324907 -0.1278347 0.99152295]\n", + " [-0.20005292 -0.089165 0.97571944]\n", + " [-0.16623701 -0.090077 0.98196303]\n", + " [-0.13146138 -0.09082101 0.98715219]\n", + " [-0.09592455 -0.09139481 0.99118387]\n", + " [-0.05982716 -0.09179425 0.99397914]\n", + " [-0.0233762 -0.09201449 0.99548324]\n", + " [-0.20083104 -0.05389991 0.97814196]\n", + " [-0.16688094 -0.05445583 0.9844721 ]\n", + " [-0.13197015 -0.05491134 0.98973159]\n", + " [-0.09629527 -0.05526476 0.9938174 ]\n", + " [-0.0600556 -0.0555129 0.99665021]\n", + " [-0.02345845 -0.05565213 0.9981746 ]\n", + " [-0.20121796 -0.018319 0.97937518]\n", + " [-0.16720058 -0.01851594 0.98574902]\n", + " [-0.13222195 -0.01867909 0.99104412]\n", + " [-0.09647752 -0.01880776 0.99515745]\n", + " [-0.06016577 -0.01890068 0.99800944]\n", + " [-0.02349426 -0.01895646 0.99954423]]\n", + "94 -0.56404664 -0.69594091 -0.78213485 -0.83890011\n", + " -0.1535634 -0.48599238 -0.6913123 -0.80511955 -0.86923269 -0.90738164\n", + " -0.25098261 -0.68015432 -0.84745756 -0.91480539 -0.94651795 -0.96355992\n", + " -0.61607996 -0.94170609 -0.97911709 -0.98946165 -0.99367815 -0.99579412]\n", + "00000e+02]\n", + " [ 1.51660000e+03 4.85400000e+02]\n", + " [ 1.87500000e+03 4.85400000e+02]\n", + " [ 8.30000001e+01 8.43800000e+02]\n", + " [ 4.41400000e+02 8.43800000e+02]\n", + " [ 7.99800000e+02 8.43800000e+02]\n", + " [ 1.15820000e+03 8.43800000e+02]\n", + " [ 1.51660000e+03 8.43800000e+02]\n", + " [ 1.87500000e+03 8.43800000e+02]\n", + " [ 8.29999999e+01 1.20220000e+03]\n", + " [ 4.41400000e+02 1.20220000e+03]\n", + " [ 7.99800000e+02 1.20220000e+03]\n", + " [ 1.15820000e+03 1.20220000e+03]\n", + " [ 1.51660000e+03 1.20220000e+03]\n", + " [ 1.87500000e+03 1.20220000e+03]\n", + " [ 8.29999999e+01 1.56060000e+03]\n", + " [ 4.41400000e+02 1.56060000e+03]\n", + " [ 7.99800000e+02 1.56060000e+03]\n", + " [ 1.15820000e+03 1.56060000e+03]\n", + " [ 1.51660000e+03 1.56060000e+03]\n", + " [ 1.87500000e+03 1.56060000e+03]\n", + " [ 8.29999998e+01 1.91900000e+03]\n", + " [ 4.41400000e+02 1.91900000e+03]\n", + " [ 7.99800000e+02 1.91900000e+03]\n", + " [ 1.15820000e+03 1.91900000e+03]\n", + " [ 1.51660000e+03 1.91900000e+03]\n", + " [ 1.87500000e+03 1.91900000e+03]]\n", + "DEBUG:root:radec2pix: xyfp: [[32.23341696 31.55141621]\n", + " [32.23194958 27.16498788]\n", + " [32.2304822 22.77855956]\n", + " [32.22901483 18.39213124]\n", + " [32.22754745 14.00570291]\n", + " [32.22608007 9.61927458]\n", + " [32.22461269 5.23284626]\n", + " [32.2231453 0.84641793]\n", + " [32.23341696 31.55141621]\n", + " [27.84698864 31.5528836 ]\n", + " [23.46056031 31.55435097]\n", + " [19.07413198 31.55581835]\n", + " [14.68770366 31.55728573]\n", + " [10.30127533 31.55875311]\n", + " [ 5.91484701 31.56022049]\n", + " [ 1.52841868 31.56168787]\n", + " [32.2231453 0.84641793]\n", + " [27.83671698 0.84788531]\n", + " [23.45028865 0.84935269]\n", + " [19.06386033 0.85082007]\n", + " [14.677432 0.85228745]\n", + " [10.29100367 0.85375483]\n", + " [ 5.90457535 0.85522221]\n", + " [ 1.51814702 0.85668959]\n", + " [ 1.52841868 31.56168787]\n", + " [ 1.5269513 27.17525955]\n", + " [ 1.52548392 22.78883122]\n", + " [ 1.52401654 18.4024029 ]\n", + " [ 1.52254916 14.01597457]\n", + " [ 1.52108178 9.62954624]\n", + " [ 1.5196144 5.24311792]\n", + " [ 1.51814702 0.85668959]\n", + " [32.21777718 29.63892134]\n", + " [32.21597876 24.26292164]\n", + " [32.21418034 18.88692194]\n", + " [32.21238193 13.51092224]\n", + " [32.21058351 8.13492254]\n", + " [32.20878509 2.75892284]\n", + " [30.32091205 31.53705599]\n", + " [24.94491236 31.53885442]\n", + " [19.56891265 31.54065283]\n", + " [14.19291295 31.54245125]\n", + " [ 8.81691325 31.54424967]\n", + " [ 3.44091356 31.54604808]\n", + " [30.31065043 0.86205771]\n", + " [24.93465073 0.86385613]\n", + " [19.55865103 0.86565455]\n", + " [14.18265134 0.86745297]\n", + " [ 8.80665163 0.86925139]\n", + " [ 3.43065193 0.8710498 ]\n", + " [ 1.5427789 29.64918296]\n", + " [ 1.54098048 24.27318326]\n", + " [ 1.53918206 18.89718357]\n", + " [ 1.53738364 13.52118387]\n", + " [ 1.53558522 8.14518416]\n", + " [ 1.5337868 2.76918446]\n", + " [32.21841195 31.53642123]\n", + " [32.21841195 31.53642123]\n", + " [ 1.53315204 0.87168457]\n", + " [ 1.53315204 0.87168457]\n", + " [30.32027729 29.6395561 ]\n", + " [24.94427759 29.64135452]\n", + " [19.56827789 29.64315294]\n", + " [14.19227819 29.64495136]\n", + " [ 8.81627849 29.64674978]\n", + " [ 3.44027879 29.6485482 ]\n", + " [30.31847887 24.2635564 ]\n", + " [24.94247917 24.26535482]\n", + " [19.56647947 24.26715324]\n", + " [14.19047977 24.26895166]\n", + " [ 8.81448007 24.27075007]\n", + " [ 3.43848037 24.2725485 ]\n", + " [30.31668045 18.8875567 ]\n", + " [24.94068075 18.88935513]\n", + " [19.56468105 18.89115354]\n", + " [14.18868135 18.89295196]\n", + " [ 8.81268165 18.89475038]\n", + " [ 3.43668195 18.89654879]\n", + " [30.31488203 13.51155701]\n", + " [24.93888233 13.51335542]\n", + " [19.56288263 13.51515384]\n", + " [14.18688293 13.51695226]\n", + " [ 8.81088324 13.51875068]\n", + " [ 3.43488354 13.5205491 ]\n", + " [30.31308361 8.13555731]\n", + " [24.93708392 8.13735572]\n", + " [19.56108422 8.13915414]\n", + " [14.18508451 8.14095256]\n", + " [ 8.80908482 8.14275098]\n", + " [ 3.43308512 8.1445494 ]\n", + " [30.31128519 2.75955761]\n", + " [24.93528549 2.76135602]\n", + " [19.5592858 2.76315444]\n", + " [14.18328609 2.76495286]\n", + " [ 8.8072864 2.76675128]\n", + " [ 3.4312867 2.7685497 ]]\n", + "DEBUG:root:optics_fp: rtanth: [44.94272969 42.00239064 39.33235561 36.99120283 35.04490673 33.56223174\n", + " 32.60648436 32.22458311 44.94272969 41.90992612 39.13459306 36.67522804\n", + " 34.59927513 32.97921831 31.88462562 31.37054947 32.22458311 27.83912196\n", + " 23.45402264 19.06953475 14.68620592 10.30551524 5.93330899 1.63895634\n", + " 31.37054947 26.99005818 22.61186898 18.23763988 13.87111779 9.5229103\n", + " 5.23882082 1.63895634 43.61980801 40.19015843 37.22381993 34.83933779\n", + " 33.16246218 32.30357703 43.58131788 40.02977818 36.92204987 34.37870189\n", + " 32.5323727 31.50584319 30.31278547 24.93826049 19.56454604 14.19256282\n", + " 8.82547273 3.48595044 29.4611953 24.09404931 18.73198196 13.38109994\n", + " 8.0637011 2.9657153 44.92151855 44.92151855 1.65858428 1.65858428\n", + " 42.23832489 38.56329813 35.32679703 32.65945447 30.7099348 29.62031359\n", + " 38.68639649 34.63652908 30.99264061 27.91417471 25.60588368 24.28835443\n", + " 35.59496044 31.14567519 27.03530484 23.44280455 20.64037826 18.98125646\n", + " 33.09332103 28.25278341 23.64475409 19.43532283 15.94339684 13.72788346\n", + " 31.32311186 26.15701072 21.09606209 16.23887967 11.83897557 8.62694755\n", + " 30.41232527 25.05915804 19.71841847 14.40393713 9.16152467 4.26572571]\n", + "DEBUG:root:radec2pix: lat: [77.98725933 79.59290201 81.23038669 82.89455027 84.58030503 86.2825061\n", + " 87.99575217 89.70880341 77.98725933 77.86842442 77.53699463 77.01330297\n", + " 76.32579246 75.50615888 74.58567435 73.59317035 89.70880341 88.18955545\n", + " 86.48562338 84.78529769 83.09901991 81.43298752 79.79264001 78.18327445\n", + " 73.59317035 74.60559591 75.5496878 76.3965297 77.11433871 77.67029216\n", + " 78.03413945 78.18327445 78.68303826 80.67298244 82.70560399 84.77150761\n", + " 86.86118368 88.96388538 77.96782959 77.67716345 77.0861016 76.24391961\n", + " 75.20859077 74.03673952 89.13217661 87.06213831 84.97619114 82.90974635\n", + " 80.87458441 78.88067366 74.04491662 75.24365824 76.31136856 77.19067025\n", + " 77.8215059 78.15105181 77.99265855 77.99265855 78.18859038 78.18859038\n", + " 78.65635764 78.34456159 77.7133866 76.81969543 75.7283623 7DEBUG:root:radec2pix: xyfp Shape: (96, 2)\n", + "DEBUG:root:radec2pix: lng: [224.38740491 220.12408621 215.2503637 209.71210534 203.48918374\n", + " 196.62002098 189.22355762 181.5046646 224.38740491 228.56999572\n", + " 233.3693139 238.84884696 245.04132431 251.92249978 259.38507008\n", + " 267.22753799 181.5046646 181.74464663 182.07430544 182.55541483\n", + " 183.32331288 184.74247093 188.24144189 209.436015 267.22753799\n", + " 266.78398778 266.170335 265.26578644 263.80029466 261.02373287\n", + " 253.83681058 209.436015 222.61267508 216.98461546 210.38276245\n", + " 202.75476399 194.17390418 184.89586052 226.12630502 231.65859743\n", + " 238.18310357 245.77405246 254.38382437 263.77502084 181.62909594\n", + " 181.98420755 182.53422407 183.50001953 185.63706132 194.24647314\n", + " 267.02133208 266.36745836 265.3435183 263.51322198 259.32352397\n", + " 241.01895217 224.38712569 224.38712569 209.62070535 209.62070535\n", + " 224.34955164 229.91816922 236.57007702 244.41761198 253.43870278\n", + " 263.38126527 218.66991645 224.21163124 231.12094806 239.6844282\n", + " 250.04034734 261.9370562 211.92326671 217.13924206 223.99660639\n", + " 233.09330633 244.99523074 259.69237756 204.0228705 208.45144372\n", + " 214.63892612 223.61475061 236.90559041 255.7456151 195.0232601\n", + " 198.0723045 202.59166286 209.85191686 222.74900651 247.14363581\n", + " 185.201902 186.31923819 188.04100537 191.03114261 197.43976942\n", + " 218.89848666]\n", + "4.50063549\n", + " 80.63959245 80.25225497 79.48245907 78.41882236 77.15141692 75.75558792\n", + " 82.66188886 82.16191851 81.200562 79.92354945 78.45441908 76.88031771\n", + " 84.70956295 84.0235478 82.78807615 81.24955295 79.56251519 77.81300601\n", + " 86.75780924 85.71788826 84.09815339 82.27374035 80.38380312 78.4866344\n", + " 88.68197076 86.90004071 84.8808155 82.84304634 80.82390053 78.84030268]\n", + "DEBUG:root:optics_fp: sphi: [0.99998485 0.99997957 0.99997095 0.99995541 0.99992296 0.99983591\n", + " 0.99943739 0.97480106 0.99998485 0.9896586 0.96186222 0.92072178\n", + " 0.87129259 0.81819238 0.76489689 0.7136466 0.97480106 0.16298472\n", + " 0.08387896 0.05638146 0.04244609 0.03402888 0.028395 0.02436013\n", + " 0.7136466 0.65923088 0.59205464 0.50980542 0.41077515 0.29477725\n", + " 0.16416841 0.02436013 0.99997973 0.99996976 0.99995006 0.99990218\n", + " 0.99972814 0.99753769 0.99780732 0.97297865 0.92580811 0.86530722\n", + " 0.79990573 0.73548088 0.34572109 0.10239711 0.0597107 0.0421157\n", + " 0.0325231 0.02648658 0.69151182 0.61654981 0.52008483 0.39868458\n", + " 0.25212242 0.08602764 0.9999821 0.9999821 0.02485756 0.02485756\n", + " 0.99751784 0.96955881 0.91716312 0.8512474 0.7814679 0.71407315\n", + " 0.99629813 0.95550412 0.88315364 0.79862516 0.71563581 0.64067012\n", + " 0.99390027 0.92942982 0.82574293 0.71809906 0.6231092 0.5442854\n", + " 0.9881388 0.87396305 0.72255609 0.59311256 0.49440321 0.4203077\n", + " 0.9679916 0.73306896 0.53086315 0.40389491 0.32265115 0.26749257\n", + " 0.78768362 0.33643669 0.20329713 0.14479515 0.11226633 0.09161916]\n", + "DEBUG:root:optics_fp: xyfp: [[ 0.173161 -31.45819714]\n", + " [ 0.17304708 -27.07176857]\n", + " [ 0.17293316 -22.68534 ]\n", + " [ 0.17281925 -18.29891143]\n", + " [ 0.17270533 -13.91248287]\n", + " [ 0.17259141 -DEBUG:root:radec2pix: xyfp: [[ -0.167405 31.491388 ]\n", + " [ -0.167405 27.10495943]\n", + " [ -0.167405 22.71853086]\n", + " [ -0.167405 18.33210229]\n", + " [ -0.167405 13.94567372]\n", + " [ -0.167405 9.55924515]\n", + " [ -0.167405 5.17281657]\n", + " [ -0.167405 0.786388 ]\n", + " [ -0.167405 31.491388 ]\n", + " [ -4.55383357 31.491388 ]\n", + " [ -8.94026214 31.491388 ]\n", + " [-13.32669071 31.491388 ]\n", + " [-17.71311928 31.491388 ]\n", + " [-22.09954786 31.491388 ]\n", + " [-26.48597643 31.491388 ]\n", + " [-30.872405 31.491388 ]\n", + " [ -0.167405 0.786388 ]\n", + " [ -4.55383357 0.786388 ]\n", + " [ -8.94026214 0.786388 ]\n", + " [-13.32669071 0.786388 ]\n", + " [-17.71311929 0.786388 ]\n", + " [-22.09954786 0.786388 ]\n", + " [-26.48597643 0.786388 ]\n", + " [-30.872405 0.786388 ]\n", + " [-30.872405 31.491388 ]\n", + " [-30.872405 27.10495943]\n", + " [-30.872405 22.71853086]\n", + " [-30.872405 18.33210229]\n", + " [-30.872405 13.94567371]\n", + " [-30.872405 9.55924514]\n", + " [-30.872405 5.17281657]\n", + " [-30.872405 0.786388 ]\n", + " [ -0.182405 29.578888 ]\n", + " [ -0.182405 DEBUG:root:radec2pix: fitpx: [[-5.00000272e-01 -5.00000268e-01]\n", + " [-4.99999785e-01 2.91928572e+02]\n", + " [-4.99999908e-01 5.84357143e+02]\n", + " [-4.99999976e-01 8.76785714e+02]\n", + " [-4.99999814e-01 1.16921429e+03]\n", + " [-4.99999859e-01 1.46164286e+03]\n", + " [-4.99999732e-01 1.75407143e+03]\n", + " [-4.99999866e-01 2.04650000e+03]\n", + " [-5.00000272e-01 -5.00000268e-01]\n", + " [ 2.91928572e+02 -4.99999720e-01]\n", + " [ 5.84357143e+02 -5.00000140e-01]\n", + " [ 8.76785714e+02 -4.99999791e-01]\n", + " [ 1.16921429e+03 -4.99999975e-01]\n", + " [ 1.46164286e+03 -4.99999912e-01]\n", + " [ 1.75407143e+03 -4.99999978e-01]\n", + " [ 2.04650000e+03 -4.99999991e-01]\n", + " [-4.99999866e-01 2.04650000e+03]\n", + " [ 2.91928571e+02 2.04650000e+03]\n", + " [ 5.84357143e+02 2.04650000e+03]\n", + " [ 8.76785715e+02 2.04650000e+03]\n", + " [ 1.16921429e+03 2.04650000e+03]\n", + " [ 1.46164286e+03 2.04650000e+03]\n", + " [ 1.75407143e+03 2.04650000e+03]\n", + " [ 2.04650000e+03 2.04650000e+03]\n", + " [ 2.04650000e+03 -4.99999991e-01]\n", + " [ 2.04650000e+03 2.91928572e+02]\n", + " [ 2.04650000e+03 5.84357143e+02]\n", + " [ 2.04650000e+03 8.76785715e+02]\n", + " [ 2.04650000e+03 1.16921429e+03]\n", + " [ 2.04650000e+03 1.46164286e+03]\n", + " [ 2.04650000e+03 1.75407143e+03]\n", + " [ 2.04650000e+03 2.04650000e+03]\n", + " [ 5.00000192e-01 1.27000000e+02]\n", + " [ 4.99999990e-01 4.85400000e+02]\n", + " [ 4.99999881e-01 8.43800000e+02]\n", + " [ 5.00000044e-01 1.20220000e+03]\n", + " [ 4.99999938e-01 1.56060000e+03]\n", + " [ 5.00000069e-01 1.91900000e+03]\n", + " [ 1.27000000e+02 5.00000092e-01]\n", + " [ 4.85400000e+02 4.99999764e-01]\n", + " [ 8.43800000e+02 4.99999911e-01]\n", + " [ 1.20220000e+03 5.00000156e-01]\n", + " [ 1.56060000e+03 4.99999840e-01]\n", + " [ 1.91900000e+03 4.99999915e-01]\n", + " [ 1.27000000e+02 2.04550000e+03]\n", + " [ 4.85400000e+02 2.04550000e+03]\n", + " [ 8.43800000e+02 2.04550000e+03]\n", + " [ 1.20220000e+03 2.04550000e+03]\n", + " [ 1.56060000e+03 2.04550000e+03]\n", + " [ 1.91900000e+03 2.04550000e+03]\n", + " [ 2.04550000e+03 1.27000000e+02]\n", + " [ 2.04550000e+03 4.85400000e+02]\n", + " [ 2.04550000e+03 8.43800000e+02]\n", + " [ 2.04550000e+03 1.20220000e+03]\n", + " [ 2.04550000e+03 1.56060000e+03]\n", + " [ 2.04550000e+03 1.91900000e+03]\n", + " [ 4.99999957e-01 4.99999958e-01]\n", + " [ 4.99999957e-01 4.99999958e-01]\n", + " [ 2.04550000e+03 2.04550000e+03]\n", + " [ 2.04550000e+03 2.04550000e+03]\n", + " [ 1.27000000e+02 1.27000000e+02]\n", + " [ 4.85400000e+02 1.27000000e+02]\n", + " [ 8.43800000e+02 1.27000000e+02]\n", + " [ 1.20220000e+03 1.27000000e+02]\n", + " [ 1.56060000e+03 1.27000000e+02]\n", + " [ 1.91900000e+03 1.27000000e+02]\n", + " [ 1.27000000e+02 4.85400000e+02]\n", + " [ 4.85400000e+02 4.85400000e+02]\n", + " [ 8.43800000e+02 4.85400000e+02]\n", + " [ 1.20220000e+03 4.85400000e+02]\n", + " [ 1.56060000e+03 4.85400000e+02]\n", + " [ 1.91900000e+03 4.85400000e+02]\n", + " [ 1.27000000e+02 8.43800000e+02]\n", + " [ 4.85400000e+02 8.43800000e+02]\n", + " [ 8.43800000e+02 8.43800000e+02]\n", + " [ 1.20220000e+03 8.43800000e+02]\n", + " [ 1.56060000e+03 8.43800000e+02]\n", + " [ 1.91900000e+03 8.43800000e+02]\n", + " [ 1.27000000e+02 1.20220000e+03]\n", + " [ 4.85400000e+02 1.20220000e+03]\n", + " [ 8.43800000e+02 1.20220000e+03]\n", + " [ 1.20220000e+03 1.20220000e+03]\n", + " [ 1.56060000e+03 1.20220000e+03]\n", + " [ 1.91900000e+03 1.20220000e+03]\n", + " [ 1.27000000e+02 1.56060000e+03]\n", + " [ 4.85400000e+02 1.56060000e+03]\n", + " [ 8.43800000e+02 1.56060000e+03]\n", + " [ 1.20220000e+03 1.56060000e+03]\n", + " [ 1.56060000e+03 1.56060000e+03]\n", + " [ 1.91900000e+03 1.56060000e+03]\n", + " [ 1.27000000e+02 1.91900000e+03]\n", + " [ 4.85400000e+02 1.91900000e+03]\n", + " [ 8.43800000e+02 1.91900000e+03]\n", + " [ 1.20220000e+03 1.91900000e+03]\n", + " [ 1.56060000e+03 1.91900000e+03]\n", + " [ 1.91900000e+03 1.91900000e+03]]\n", + " 24.202888 ]\n", + " [ -0.182405 18.826888 ]\n", + " [ -0.182405 13.450888 ]\n", + " [ -0.182405 8.074888 ]\n", + " [ -0.182405 2.698888 ]\n", + " [ -2.079905 31.476388 ]\n", + " [ -7.455905 31.476388 ]\n", + " [-12.831905 31.476388 ]\n", + " [-18.207905 31.476388 ]\n", + " [-23.583905 31.476388 ]\n", + " [-28.959905 31.476388 ]\n", + " [ -2.079905 0.801388 ]\n", + " [ -7.455905 0.801388 ]\n", + " [-12.831905 0.801388 ]\n", + " [-18.207905 0.801388 ]\n", + " [-23.583905 0.801388 ]\n", + " [-28.959905 0.801388 ]\n", + " [-30.857405 29.578888 ]\n", + " [-30.857405 24.202888 ]\n", + " [-30.857405 18.826888 ]\n", + " [-30.857405 13.450888 ]\n", + " [-30.857405 8.074888 ]\n", + " [-30.857405 2.698888 ]\n", + " [ -0.182405 31.476388 ]\n", + " [ -0.182405 31.476388 ]\n", + " [-30.857405 0.801388 ]\n", + " [-30.857405 0.801388 ]\n", + " [ -2.079905 29.578888 ]\n", + " [ -7.455905 29.578888 ]\n", + " [-12.831905 29.578888 ]\n", + " [-18.207905 29.578888 ]\n", + " [-23.583905 29.578888 ]\n", + " [-28.959905 29.578888 ]\n", + " [ -2.079905 24.202888 ]\n", + " [ -7.455905 24.202888 ]\n", + " [-12.831905 24.202888 ]\n", + " [-18.207905 24.202888 ]\n", + " [-23.583905 24.202888 ]\n", + " [-28.959905 24.202888 ]\n", + " [ -2.079905 18.826888 ]\n", + " [ -7.455905 18.826888 ]\n", + " [-12.831905 18.826888 ]\n", + " [-18.207905 18.826888 ]\n", + " [-23.583905 18.826888 ]\n", + " [-28.959905 18.826888 ]\n", + " [ -2.079905 13.450888 ]\n", + " [ -7.455905 13.450888 ]\n", + " [-12.831905 13.450888 ]\n", + " [-18.207905 13.450888 ]\n", + " [-23.583905 13.450888 ]\n", + " [-28.959905 13.450888 ]\n", + " [ -2.079905 8.074888 ]\n", + " [ -7.455905 8.074888 ]\n", + " [-12.831905 8.074888 ]\n", + " [-18.20790499 8.074888 ]\n", + " [-23.583905 8.074888 ]\n", + " DEBUG:root:mm_to_pix: fitpx: [[0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]]\n", + "DEBUG:root:optics_fp: rtanth: [45.0390902 42.09683712 39.42396804 37.07878541 35.12698266 33.63710755\n", + " 32DEBUG:root:mm_to_pix: fitpx.shape: (96, 2)\n", + ".6724136 32.28002056 45.0390902 42.00763364 39.23320577 36.77402747\n", + " 34.69719395 33.07480842 31.97611838 31.45604637 32.28002056 27.89482687\n", + " 23.51009392 19.1261386 14.74365456 10.36450837 5.99601772 1.72131774\n", + " 31.45604637 27.07594694 22.69829207 18.32483384 13.95951711 9.61343916\n", + " 5.33383708 1.72131774 43.71543665 40.28285706 37.31193504 34.92069834\n", + " 33.23450917 32.36375719 43.67830098 40.1281473 37.02087501 34.47644006\n", + " 32.62678968 31.59418683 30.3683705 24.99424245 19.62114004 14.2502235\n", + " 8.88545749 3.55479843 29.54687443 24.18030108 18.81910954 13.46972753\n", + " 8.15542687 3.06450112 45.0178789 45.0178789 1.74119478 1.74119478\n", + " 42.33466612 38.66132674 35.42562866 32.75751668 30.80482728 29.70896533\n", + " 38.78006096 34.73279944 31.09090442 28.01292685 25.70226752 24.37810068\n", + " 35.68424094 31.23842634 27.13146257 23.54136773 20.73833358 19.07259071\n", + " 33.17589074 28.33926527 23.73585762 19.53127415 16.04223037 13.82166388\n", + " 31.39613279 26.23340206 21.17707168 16.3263008 11.93442847 8.72443809\n", + " 30.47289508 25.12113778 19.7825313 14.471637 9.23638255 4.35844005]\n", + "DEBUG:root:fitpix2pix: ccdpx: shape: (96, 2)\n", + "DEBUG:root:optics_fp: xyfp: [[ 0.173161 -31.45819714]\n", + " [ 0.17304708 -27.07176857]\n", + " [ 0.17293316 -22.68534 ]\n", + " [ 0.17281925 -18.29891143]\n", + " [ 0.17270533 -13.91248287]\n", + " [ 0.17259141 -9.52605429]\n", + " [ 0.17247749 -5.13962573]\n", + " [ 0.17236358 -0.75319715]\n", + " [ 0.173161 -31.45819714]\n", + " [ 4.55958957 -31.45808322]\n", + " [ 8.94601814 -31.45796931]\n", + " [ 13.33244671 -31.45785538]\n", + " [ 17.71887528 -31.45774147]\n", + " [ 22.10530385 -31.45762756]\n", + " [ 26.49173242 -31.45751363]\n", + " [ 30.87816099 -31.45739971]\n", + " [ 0.17236358 -0.75319715]\n", + " [ 4.55879215 -0.75308323]\n", + " [ 8.94522072 -0.75296932]\n", + " [ 13.33164929 -0.7528554 ]\n", + " [ 17.71807786 -0.75274148]\n", + " [ 22.10450643 -0.75262756]\n", + " [ 26.490935 -0.75251364]\n", + " [ 30.87736356 -0.75239973]\n", + " [ 30.87816099 -31.45739971]\n", + " [ 30.87804707 -27.07097114]\n", + " [ 30.87793315 -22.68454257]\n", + " [ 30.8779.52605429]\n", + " [ 0.17247749 -5.13962573]\n", + " [ 0.17236358 -0.75319715]\n", + " [ 0.173161 -31.45819714]\n", + " [ 4.55958957 -31.45808322]\n", + " [ 8.94601814 -31.45796931]\n", + " [ 13.33244671 -31.45785538]\n", + " [ 17.71887528 -31.45774147]\n", + " [ 22.10530385 -31.45762756]\n", + " [ 26.49173242 -31.45751363]\n", + " [ 30.87816099 -31.45739971]\n", + " [ 0.17236358 -0.75319715]\n", + " [ 4.55879215 -0.75308323]\n", + " [ 8.94522072 -0.75296932]\n", + " [ 13.33164929 -0.7528554 ]\n", + " [ 17.71807786 -0.75274148]\n", + " [ 22.10450643 -0.75262756]\n", + " [ 26.490935 -0.75251364]\n", + " [ 30.87736356 -0.75239973]\n", + " [ 30.87816099 -31.45739971]\n", + " [ 30.87804707 -27.07097114]\n", + " [ 30.87793315 -22.68454257]\n", + " [ 30.87781924 -18.29811401]\n", + " [ 30.87770532 -13.91168544]\n", + " [ 30.87759141 -9.52525687]\n", + " [ 30.87747749 -5.1388283 ]\n", + " [ 30.87736356 -0.75239973]\n", + " [ 0.18811133 -29.54569675]\n", + " [ 0.18797171 -24.16969676]\n", + " [ 0.1878321 -18.79369675]\n", + " [ 0.18769248 -13.41769676]\n", + " [ 0.18755286 -8.04169676]\n", + " [ 0.18741324 -2.66569676]\n", + " [ 2.08566061 -31.44314748]\n", + " [ 7.46166061 -31.44300785]\n", + " [ 12.83766061 -31.44286824]\n", + " [ 18.2136606 -31.44272862]\n", + " [ 23.5896606 -31.442589 ]\n", + " [ 28.9656606 -31.44244938]\n", + " [ 2.08486397 -0.76814748]\n", + " [ 7.46086396 -0.76800786]\n", + " [ 12.83686396 -0.76786825]\n", + " [ 18.21286396 -0.76772863]\n", + " [ 23.58886395 -0.76758901]\n", + " [ 28.96486395 -0.7674494 ]\n", + " [ 30.86311132 -29.54490011]\n", + " [ 30.86297171 -24.16890011]\n", + " [ 30.86283209 -18.79290011]\n", + " [ 30.86269247 -13.41690011]\n", + " [ 30.86255285 -8.04090011]\n", + " [ 30.86241323 -2.66490012]\n", + " [ 0.18816061 -31.44319675]\n", + " [ 0.18816061 -31.44319675]\n", + " [ 30.86236396 -0.76740012]\n", + " [ 30.86236396 -0.76740012]\n", + " [ 2.08561133 -29.54564748]\n", + " [ 7.46161133 -29.54550785]\n", + " [ 12.83761133 -29.54536824]\n", + " [ 18.21361133 -29.54522862]\n", + " [ 23.58961132 -29.545089 ]\n", + " [ 28.96561132 -29.54494938]\n", + " [ 2.08547171 -24.16964747]\n", + " [ 7.46147171 -24.16950786]\n", + " [ 12.83747171 -24.16936824]\n", + " [ 18.21347171 -24.16922862]\n", + " [ 23.58947171 -24.16908901]\n", + " [ 28.9654717 -24.16894939]\n", + " [ 2.0853321 -18.79364747]\n", + " [ 7.46133209 -18.79350785]\n", + " [ 12.83733209 -18.79336824]\n", + " [ 18.21333209 -18.79322862]\n", + " [ 23.58933209 -18.79308901]\n", + " [ 28.96533209 -18.79294939]\n", + " [ 2.08519248 -13.41764748]\n", + " [ 7.46119248 -13.41750786]\n", + " [ 12.83719247 -13.41736824]\n", + " [ 18.21319248 -13.41722863]\n", + " [ 23.58919247 -13.41708901]\n", + " [ 28.96519247 -13.41694939]\n", + " [ 2.08505286 -8.04164748]\n", + " [ 7.46105286 -8.04150786]\n", + " [ 12.83705286 -8.04136825]\n", + " [ 18.21305286 -8.04122863]\n", + " [ 23.58905286 -8.04108901]\n", + " [ 28.96505285 -8.04094939]\n", + " [ 2.08491324 -2.66564748]\n", + " [ 7.46091324 -2.66550786]\n", + " [ 12.83691324 -2.66536825]\n", + " [ 18.21291324 -2.66522863]\n", + " [ 23.58891323 -2.66508901]\n", + " [ 28.96491324 -2.66494939]]\n", + "81924 -18.29811401]\n", + " [ 30.87770532 -13.91168544]\n", + " [ 30.87759141 -9.52525687]\n", + " [ 30.87747749 -5.1388283 ]\n", + " [ 30.87736356 -0.75239973]\n", + " [ 0.18811133 -29.54569675]\n", + " [ 0.18797171 -24.16969676]\n", + " [ 0.1878321 -18.79369675]\n", + " [ 0.18769248 -13.41769676]\n", + " [ 0.18755286 -8.04169676]\n", + " [ 0.18741324 -2.66569676]\n", + " [ 2.08566061 -31.44314748]\n", + " [ 7.46166061 -31.44300785]\n", + " [ 12.83766061 -31.44286824]\n", + " [ 18.2136606 -31.44272862]\n", + " [ 23.5896606 -31.442589 ]\n", + " [ 28.9656606 -31.44244938]\n", + " [ 2.08486397 -0.76814748]\n", + " [ 7.46086396 -0.76800786]\n", + " [ 12.83686396 -0.76786825]\n", + " [ 18.21286396 -0.76772863]\n", + " [ 23.58886395 -0.76758901]\n", + " [ 28.96486395 -0.7674494 ]\n", + " [ 30.86311132 -29.54490011]\n", + " [ 30.86297171 -24.16890011]\n", + " [ 30.86283209 -18.79290011]\n", + " [ 30.86269247 -13.41690011]\n", + " [ 30.86255285 -8.04090011]\n", + " [ 30.86241323 -2.66490012]\n", + " [ 0.18816061 -31.44319675]\n", + " [ 0.18816061 -31.44319675]\n", + " [ 30.86236396 -0.76740012]\n", + " [ 30.86236396 -0.76740012]\n", + " [ 2.08561133 -29.54564748]\n", + " [ 7.46161133 -29.54550785]\n", + " [ 12.83761133 -29.54536824]\n", + " [ 18.21361133 -29.54522862]\n", + " [ 23.58961132 -29.545089 ]\n", + " [ 28.96561132 -29.54494938]\n", + " [ 2.08547171 -24.16964747]\n", + " [ 7.46147171 -24.16950786]\n", + " [ 12.83747171 -24.16936824]\n", + " [ 18.21347171 -24.16922862]\n", + " [ 23.58947171 -24.16908901]\n", + " [ 28.9654717 -24.16894939]\n", + " [ 2.0853321 -18.79364747]\n", + " [ 7.46133209 -18.79350785]\n", + " [ 12.83733209 -18.7933[-28.959905 8.074888 ]\n", + " [ -2.079905 2.698888 ]\n", + " [ -7.455905 2.698888 ]\n", + " [-12.831905 2.698888 ]\n", + " [-18.207905 2.698888 ]\n", + " [-23.583905 2.698888 ]\n", + " [-28.959905 2.698888 ]]\n", + "DEBUG:root:optics_fp: cphi: [-0.7172644 -0.76741791 -0.81945139 -0.87124824 -0.91956549 -0.96011654\n", + " -0.98818444 -0.99982014 -0.7172644 -0.66450587 -0.59954537 -0.52014772\n", + " -0.4245785 -0.31242949 -0.18558325 -0.04879815 -0.99982014 -0.99975708\n", + " -0.99965502 -0.99947397 -0.99910595 -0.99816919 -0.99442317 -0.92363168\n", + " -0.04879815 -0.05662794 -0.06748483 -0.0835374 -0.10965891 -0.1594742\n", + " -0.28942109 -0.92363168 -0.73864972 -0.80160861 -0.86540808 -0.92455295\n", + " -0.97121348 -0.99694372 -0.69578694 -0.62321886 -0.53007115 -0.41291013\n", + " -0.27109351 -0.10929135 -0.99978591 -0.99968066 -0.99947617 -0.99899494\n", + " -0.99737425 -0.98288834 -0.05243384 -0.06399014 -0.08214824 -0.11477511\n", + " -0.19009076 -0.51584618 -0.71726898 -0.71726898 -0.92175016 -0.92175016\n", + " -0.71788499 -0.64689125 -0.55397779 -0.DEBUG:root:optics_fp: xyfp shape: (96, 2)\n", + "DEBUG:root:fitpix2pix: visCut: True\n", + "DEBUG:root:radec2pix: lat: [73.24108038 74.22539246 75.14065481 75.95980834 76.6531185 77.19018187\n", + " 77.5432879 77.69182998 73.24108038 74.24861044 75.19133398 76.04212851\n", + " 76.77071823 77.34548632 77.73675519 77.92139244 77.69182998 79.29098794\n", + " 80.92271511 82.58149911 84.2618841 85.95783408 87.66008742 89.3157252\n", + " 77.92139244 79.52414159 81.15801466 82.81709844 84.49494889 86.18266378\n", + " 87.85870936 89.3157252 73.68081786 74.84436919 75.87765867 76.72697854\n", + " 77.33670031 77.65849826 73.69035695 74.88520803 75.9561532 76.84869716\n", + " 77.50496612 77.87275428 78.38454537 80.36704866 82.39295371 84.45217978\n", + " 86.53330534 88.61095022 78.61571107 80.60164359 82.62842612 84.684393\n", + " 86.75213987 88.75761015 73.24806584 73.24806584 89.30770045 89.30770045\n", + " 74.1417384 75.39152116 76.51854281 77.46407515 78.16380788 78.55793051\n", + " 75.35984123 76.77406669 78.07566348 79.19387762 80.04201199 80.52949342\n", + " 76.4480688 78.0344336824]\n", + " [ 18.21333209 -18.79322862]\n", + " [ 23.58933209 -18.79308901]\n", + " [ 28.96533209 -18.79294939]\n", + " [ 2.08519248 -13.41764748]\n", + " [ 7.46119248 -13.41750786]\n", + " [ 12.83719247 -13.41736824]\n", + " [ 18.21319248 -13.41722863]\n", + " [ 23.58919247 -13.41708901]\n", + " [ 28.96519247 -13.41694939]\n", + " [ 2.08505286 -8.04164748]\n", + " [ 7.46105286 -8.04150786]\n", + " [ 12.83705286 -8.04136825]\n", + " [ 18.21305286 -8.04122863]\n", + " [ 23.58905286 -8.04108901]\n", + " [ 28.96505285 -8.04094939]\n", + " [ 2.08491324 -2.66564748]\n", + " [ 7.46091324 -2.66550786]\n", + " [ 12.83691324 -2.66536825]\n", + " [ 18.21291324 -2.66522863]\n", + " [ 23.58891323 -2.66508901]\n", + " [ 28.96491324 -2.66494939]]\n", + "61 79.53211824 80.86193095 81.91012885 82.53435821\n", + " 77.34827857 79.10130772 80.80570953 82.38629346 83.70950064 84.55228195\n", + " 77.99844552 79.88985033 81.78208758 83.62548455 85.30897599 86.53756064\n", + " 78.34312947 80.31550148 82.32609465 84.35907996 86.38425999 88.27008044]\n", + "DEBUG:root:optics_fp: rtanth: [31.42709713 27.04074579 22.65442436 18.26815439 13.88198464 9.49605401\n", + " 5.11097843461417 -0.2871469 -0.11621293\n", + " -0.78371934 -0.72014369 -0.63135242 -0.50838973 -0.34426777 -0.14160207\n", + " -0.85170189 -0.80076273 -0.72365733 -0.60523038 -0.42694461 -0.18103644\n", + " -0.91599489 -0.8826498 -0.8273004 -0.72987289 -0.55253697 -0.25009805\n", + " -0.96766665 -0.95325615 -0.92710821 -0.87335662 -0.74384256 -0.39763019\n", + " -0.99654822 -0.99489972 -0.99173015 -0.984408 -0.96090466 -0.80346296]\n", + "DEBUG:root:optics_fp: xyfp shape: (96, 2)\n", + "DEBUG:root:optics_fp: cphi: [-0.71661052 -0.76668522 -0.81865324 -0.87041945 -0.91877042 -0.95945138\n", + " -0.98776621 -0.99975905 -0.71661052 -0.66390451 -0.59904941 -0.51982885\n", + " -0.42452343 -0.31272572 -0.18629262 -0.04992637 -0.99975905 -0.9996769\n", + " -0.99954452 -0.99931081 -0.99883841 -0.997645 -0.9929376 -0.91049017\n", + " -0.04992637 -0.05798589 -0.06914879 -0.08562676 -0.11237014 -0.16312264\n", + " -0.29391715 -0.91049017 -0.73796092 -0.80082989 -0.86457988 -0.92376676\n", + " -0.97061799 -0.99671508 -0.69515031 -0.62267974 -0.52972774 -0.41289021\n", + " -0.27152486 -0.11024131 -0.99971595 -0.99957998 -0.99931728 -0.99870324\n", + " -0.99665599 -0.97888657 -0.05365319 -0.06553749 -0.08417765 -0.1175659\n", + " -0.19410544 -0.51637928 -0.71661494 -0.71661494 -0.90871193 -0.90871193\n", + " -0.71720854 -0.64629919 -0.55357618 -0.43455016 -0.28757779 -0.11723007\n", + " -0.78293369 -0.71938388 -0.63073804 -0.50813028 -0.34464727 -0.14284199\n", + " -0.85084193 -0.79983697 -0.72276415 -0.60462283 -0.42711476 -0.18254722\n", + " -0.91515494 -0.88164179 -0.82613743 -0.72873282 -0.5521103 -0.25185684\n", + " -0.9670144 -0.95239316 -0.92593126 -0.87175367 -0.74209777 -0.39893833\n", + " -0.99629342 -0.99453874 -0.99117471 -0.98343711 -0.95881096 -0.79843817]\n", + "DEBUG:root:radec2pix: xyfp: [[32.23341696 31.55141621]\n", + " [32.23194958 27.16498788]\n", + " [32.2304822 22.77855956]\n", + " [32.22901483 18.39213124]\n", + " [32.22754745 14.00570291]\n", + " [32.22608007 9.61927458]\n", + " [32.22461269 5.23284626]\n", + " [32.2231453 0.84641793]\n", + " [32.23341696 31.55141621]\n", + " [27.84698864 31.5528836 ]\n", + " [23.46056031 31.55435097]\n", + " [19.07413198 31.55581835]\n", + " [14.687703608 0.742067 31.42709713 31.75564253 32.6750783 34.13769417\n", + " 36.07748738 38.42225317 41.10274314 44.05772304 0.742067 4.61617395\n", + " 8.97490789 13.35179361 17.73339574 22.11691136 26.50139096 30.88642402\n", + " 44.05772304 41.04415255 38.29678143 35.87681689 33.85454213 32.30472979\n", + " 31.29764563 30.88642402 29.51471971 24.13885305 18.76306281 13.38744101\n", + " 8.01232674 2.64082086 31.48077532 32.28565953 33.93362876 36.31007107\n", + " 39.28300031 42.72809051 2.2117621 7.49776555 12.85860945 18.22838275\n", + " 23.6009913 28.97485798 42.70371969 39.18128664 36.11843741 33.64093596\n", + " 31.88551984 30.97519863 31.41218354 31.41218354 30.87178238 30.87178238\n", + " 29.58771061 30.4426874 32.18516063 34.68161856 37.78289981 41.35315131\n", + " 24.22804504 25.26505023 27.33953387 30.23872042 33.75074911 37.7047566\n", + " 18.87767108 20.19136108 22.73364051 26.14858527 30.14102461 34.5111137\n", + " 13.54760187 15.32521169 18.5469529 22.60352987 27.12291311 31.90905859\n", + " 8.27715649 10.94695923 15.13153214 19.89706928 24.91237079 30DEBUG:root:optics_fp: sphi: [-0.69747355 -0.64202319 -0.57428814 -0.49231086 -0.39479224 -0.28187416\n", + " -0.15594205 -0.02195087 -0.69747355 -0.74781736 -0.80071206 -0.85427043\n", + " -0.90541695 -0.94984347 -0.98249431 -0.9987529 -0.02195087 -0.02541825\n", + " -0.03017857 -0.03712011 -0.04818532 -0.06858898 -0.11863781 -0.41353071\n", + " -0.9987529 -0.9983174 -0.99760636 -0.99632728 -0.99366642 -0.9866058\n", + " -0.9558309 -0.41353071 -0.67484345 -0.59889188 -0.50249541 -0.38295557\n", + " -0.24062567 -0.080988 -0.71886442 -0.7824768 -0.84816774 -0.91078081\n", + " -0.96243143 -0.99390485 -0.02383323 -0.02898045 -0.03694547 -0.05091008\n", + " -0.08171193 -0.2044042 -0.99855963 -0.99785011 -0.99645076 -0.99306508\n", + " -0.98098067 -0.85635999 -0.69746902 -0.69746902 -0.41742381 -0.41742381\n", + " -0.6968586 -0.76308411 -0.83279855 -0.90064763 -0.95775728 -0.99310478\n", + " -0.62210517 -0.69461272 -0.77599583 -0.86128022 -0.93873226 -0.98974551\n", + " -0.52542175 -0.60021731 -0.69109478 -0.79651192 -0.90419742 -0.98319709\n", + " -0.40310226 -0.471919236 31.55728573]\n", + " [10.30127533 31.55875311]\n", + " [ 5.91484701 31.56022049]\n", + " [ 1.52841868 31.56168787]\n", + " [32.2231453 0.84641793]\n", + " [27.83671698 0.84788531]\n", + " [23.45028865 0.84935269]\n", + " [19.06386033 0.85082007]\n", + " [14.677432 0.85228745]\n", + " [10.29100367 0.85375483]\n", + " [ 5.90457535 0.85522221]\n", + " [ 1.51814702 0.85668959]\n", + " [ 1.52841868 31.56168787]\n", + " [ 1.5269513 27.17525955]\n", + " [ 1.52548392 22.78883122]\n", + " [ 1.52401654 18.4024029 ]\n", + " [ 1.52254916 14.01597457]\n", + " [ 1.52108178 9.62954624]\n", + " [ 1.5196144 5.24311792]\n", + " [ 1.51814702 0.85668959]\n", + " [32.21777718 29.63892134]\n", + " [32.21597876 24.26292164]\n", + " [32.21418034 18.88692194]\n", + " [32.21238193 13.51092224]\n", + " [32.21058351 8.13492254]\n", + " [32.20878509 2.75892284]\n", + " [30.32091205 31.53705599]\n", + " [24.94491236 31.53885442]\n", + " [19.56891265 31.54065283]\n", + " [14.19291295 31.54245125]\n", + " [ 8.81691325 31.54424967]\n", + " [ 3.44091356 31.54604808]\n", + " [30.31065043 0.86205771]\n", + " [24.93465073 0.86385613]\n", + " [19.55865103 0.86565455]\n", + " [14.18265134 0.86745297]\n", + " [ 8.80665163 0.86925139]\n", + " [ 3.43065193.05265085\n", + " 3.35974322 7.91280426 13.10495402 18.40298673 23.73610696 29.08501983]\n", + " 0.8710498 ]\n", + " [ 1.5427789 29.64918296]\n", + " [ 1.54098048 24.27318326]\n", + " [ 1.53918206 18.89718357]\n", + " [ 1.53738364 13.52118387]\n", + " [ 1.53558522 8.14518416]\n", + " [ 1.5337868 2.76918446]\n", + " [32.21841195 31.53642123]\n", + " [32.21841195 31.53642123]\n", + " [ 1.53315204 0.87168457]\n", + " [ 1.53315204 0.87168457]\n", + " [30.32027729 29.6395561 ]\n", + " [24.94427759 29.64135452]\n", + " [19.56827789 29.64315294]\n", + " [14.19227819 29.64495136]\n", + " [ 8.81627849 29.64674978]\n", + " [ 3.44027879 29.6485482 ]\n", + " [30.31847887 24.2635564 ]\n", + " [24.94247917 24.26535482]\n", + " [19.56647947 24.26715324]\n", + " [14.19047977 24.26895166]\n", + " [ 8.81448007 24.27075007]\n", + " [ 3.43848037 24.2725485 ]\n", + " [30.31668045 18.8875567 ]\n", + " [24.94068075 18.88935513]\n", + " [19.56468105 18.89115354]\n", + " [14.18868135 18.89295196]\n", + " [ 8.81268165 18.89475038]\n", + " [ 3.43668195 18.89654879]\n", + " [30.31488203 13.51155701]\n", + " [24.93888233 13.51335542]\n", + " [19.56288263 13.51515384]\n", + " [14.18688293 13.51695226]\n", + " [ 8.81088324 13.51875068]\n", + " [ 3.434883DEBUG:root:radec2pix: ccdpx: [[-4.45000000e+01 -4.99999838e-01]\n", + " [-4.45000000e+01 2.91928571e+02]\n", + " [-4.45000000e+01 5.84357142e+02]\n", + " [-4.45000000e+01 8.76785714e+02]\n", + " [-4.45000000e+01 1.16921429e+03]\n", + " [-4.45000000e+01 1.46164286e+03]\n", + " [-4.45000000e+01 1.75407143e+03]\n", + " [-4.45000001e+01 2.04650000e+03]\n", + " [-4.45000000e+01 -4.99999838e-01]\n", + " [ 2.47928571e+02 -5.00000127e-01]\n", + " [ 5.40357143e+02 -4.99999855e-01]\n", + " [ 8.32785714e+02 -4.99999742e-01]\n", + " [ 1.12521429e+03 -4.99999752e-01]\n", + " [ 1.41764286e+03 -5.00000255e-01]\n", + " [ 1.71007143e+03 -4.99999843e-01]\n", + " [ 2.00250000e+03 -5.00000108e-01]\n", + " [-4.45000001e+01 2.04650000e+03]\n", + " [ 2.47928572e+02 2.04650000e+03]\n", + " [ 5.40357143e+02 2.04650000e+03]\n", + " [ 8.32785714e+02 2.04650000e+03]\n", + " [ 1.12521429e+03 2.04650000e+03]\n", + " [ 1.41764286e+03 2.04650000e+03]\n", + " [ 1.71007143e+03 2.04650000e+03]\n", + " [ 2.00250000e+03 2.04650000e+03]\n", + " [ 2.00250000e+03 -5.00000108e-01]\n", + " [ 2.00250000e+03 2.91928571e+02]\n", + " [ 2.00250000e+03 5.84357143e+02]\n", + " [ 2.00250000e+03 8.76785714e+02]\n", + " [ 2.00250000e+03 1.16921429e+03]\n", + " [ 2.00250000e+03 1.46164286e+03]\n", + " [ 2.00250000e+03 1.75407143e+03]\n", + " [ 2.00250000e+03 2.04650000e+03]\n", + " [-4.35000000e+01 1.27000000e+02]\n", + " [-4.35000000e+01 4.85400000e+02]\n", + " [-4.35000000e+01 8.43800000e+02]\n", + " [-4.35000000e+01 1.20220000e+03]\n", + " [-4.35000000e+01 1.56060000e+03]\n", + " [-4.35000000e+01 1.91900000e+03]\n", + " [ 8.30000000e+01 5.00000282e-01]\n", + " [ 4.41400000e+02 4.99999845e-01]\n", + " [ 7.99800000e+02 4.99999800e-01]\n", + " [ 1.15820000e+03 4.99999731e-01]\n", + " [ 1.51660000e+03 5.00000238e-01]\n", + " [ 1.87500000e+03 4.99999813e-01]\n", + " [ 8.30000000e+01 2.04550000e+03]\n", + " [ 4.41400000e+02 2.04550000e+03]\n", + " [ 7.99800000e+02 2.04550000e+03]\n", + " [ 1.15820000e+03 2.04550000e+03]\n", + " [ 1.51660000e+03 2.04550000e+03]\n", + " [ 1.87500000e+03 2.04550000e+03]\n", + " [ 2.00150000e+03 1.27000000e+02]\n", + " [ 2.00150000e+03 4.85400000e+02]\n", + " [ 2.00150000e+03 8.43800000e+02]\n", + " [ 2.00150000e+03 1.20220000e+03]\n", + " [ 2.00150000e+03 1.56060000e+03]\n", + " [ 2.00150000e+03 1.91900000e+03]\n", + " [-4.35000054 13.5205491 ]\n", + " [30.31308361 8.13555731]\n", + " [24.93708392 8.13735572]\n", + " [19.56108422 8.13915414]\n", + " [14.18508451 8.14095256]\n", + " [ 8.80908482 8.14275098]\n", + " [ 3.43308512 8.1445494 ]\n", + " [30.31128519 2.75955761]\n", + " [24.93528549 2.76135602]\n", + " [19.5592858 2.76315444]\n", + " [14.18328609 2.76495286]\n", + " [ 8.8072864 2.76675128]\n", + " [ 3.4312867 2.7685497 ]]\n", + "DEBUG:root:make_az_asym: xyp: [[ 0.173161 -31.45819714]\n", + " [ 0.17304708 -27.07176857]\n", + " [ 0.17293316 -22.68534 ]\n", + " [ 0.17281925 -18.29891143]\n", + " [ 0.17270533 -13.91248287]\n", + " [ 0.17259141 -9.52605429]\n", + " [ 0.17247749 -5.13962573]\n", + " [ 0.17236358 -0.75319715]\n", + " [ 0.173161 -31.45819714]\n", + " [ 4.55958957 -31.45808322]\n", + " [ 8.94601814 -31.45796931]\n", + " [ 13.33244671 -31.45785538]\n", + " [ 17.71887528 -31.45774147]\n", + " [ 22.10530385 -31.45762756]\n", + " [ 26.49173242 -31.45751363]\n", + " [ 30.87816099 -31.45739971]\n", + " [ 0.17236358 -0.75319715]\n", + " [ 4.55879215 -0.75308323]\n", + " [ 8.94522072 -0.75296932]\n", + " [ 13.33164929 -0.7528554 ]\n", + " [ 17.71807786 -0.75274148]\n", + " [ 22.10450643 -0.75262756]\n", + " [ 26.490935 -0.75251364]\n", + " [ 30.87736356 -0.75239973]\n", + " [ 30.87816099 -31.45739971]\n", + " [ 30.87804707 -27.07097114]\n", + " [ 30.87793315 -22.68454257]\n", + " [ 30.87781924 -18.29811401]\n", + " [ 30.87770532 -13.91168544]\n", + " [ 30.87759141 -9.52525687]\n", + " [ 30.87747749 -5.1388283 ]\n", + " [ 30.87736356 -0.75239973]\n", + " [ 0.18811133 -29.54569675]\n", + " [ 0.18797171 -24.16969676]\n", + " [ 0.1878321 -18.79369675]\n", + " [ 0.18769248 -13.41769676]\n", + " [ 0.18755286 -8.04169676]\n", + " [ 0.18741324 -2.66569676]\n", + " [ 2.08566061 -31.44314748]\n", + " [ 7.46166061 -31.44300785]\n", + " [ 12.83766061 -31.44286824]\n", + " [ 18.2136606 -31.44272862]\n", + " [ 23.5896606 -31.442589 ]\n", + " [ 28.9656606 -31.44244938]\n", + " [ 2.08486397 -0.76814748]\n", + " [ 7.46086396 -0.76800786]\n", + " [ 12.83686396 -0.76786825]\n", + " [ 18.21286396 -0.76772863]\n", + " [ 23.58886395 -0.76758901]\n", + " [ 28.96486395 -0.7674494 ]\n", + " [ 30.86311132 -29.54490011]\n", + " [ 30.86297171 -24.16890011]\n", + " [ 30.86283209 -18.79290011]\n", + " [ 30.86269247 -13.41690011]\n", + " [ 30.86255285 -8.04090011]\n", + " [ 30.86241323 -2.66490012]\n", + " [ 0DEBUG:root:optics_fp: cphi: [0.00550458 0.00639749 0.00763617 0.00946965 0.01246169 0.01821736\n", + " 0.03384734 0.23312315 0.00550458 0.14357831 0.27378206 0.39054421\n", + " 0.49112919 0.57532118 0.64452059 0.70085313 0.23312315 0.98770575\n", + " 0.99676233 0.99853841 0.99917171 0.99946758 0.99962921 0.99972703\n", + " 0.70085313 0.75231162 0.80628167 0.86066702 0.91207829 0.95583505\n", + " 0.98659156 0.99972703 0.00636947 0.00778798 0.01001931 0.01404249\n", + " 0.02346297 0.07118734 0.06624656 0.23110858 0.37831182 0.50160995\n", + " 0.60050131 0.67790282 0.94291018 0.99516222 0.9983578 0.99918316\n", + " 0.9995128 0.99967679 0.72272376 0.78769728 0.85449414 0.91742373\n", + " 0.96793131 0.99637757 0.00598472 0.00598472 0.99971529 0.99971529\n", + " 0.07048511 0.24509968 0.39886372 0.52516272 0.62434311 0.70044222\n", + " 0.08607764 0.29532864 0.46955786 0.60232354 0.69893243 0.76821854\n", + " 0.11047406 0.36953888 0.56469148 0.69653837 0.7826374 0.83930914\n", + " 0.15393817 0.48687699 0.69216184 0.80578092 0.86972564 0.90775141\n", + " 0.25195766 0.68160416 0.84839347 .18816061 -31.44319675]\n", + " [ 0.18816061 -31.44319675]\n", + " [ 30.86236396 -0.76740012]\n", + " [ 30.86236396 -0.76740012]\n", + " [ 2.08561133 -29.54564748]\n", + " [ 7.46161133 -29.54550785]\n", + " [ 12.83761133 -29.54536824]\n", + " [ 18.21361133 -29.54522862]\n", + " [ 23.58961132 -29.545089 ]\n", + " [ 28.96561132 -29.54494938]\n", + " [ 2.08547171 -24.16964747]\n", + " [ 7.46147171 -24.16950786]\n", + " [ 12.83747171 -24.16936824]\n", + " [ 18.21347171 -24.16922862]\n", + " [ 23.58947171 -24.16908901]\n", + " [ 28.9654717 -24.16894939]\n", + " [ 2.0853321 -18.79364747]\n", + " [ 7.46133209 -18.79350785]\n", + " [ 12.83733209 -18.79336824]\n", + " [ 18.21333209 -18.79322862]\n", + " [ 23.58933209 -18.79308901]\n", + " [ 28.96533209 -18.79294939]\n", + " [ 2.08519248 -13.41764748]\n", + " [ 7.46119248 -13.41750786]\n", + " [ 12.83719247 -13.41736824]\n", + " [ 18.21319248 -13.41722863]\n", + " [ 23.58919247 -13.41708901]\n", + " [ 28.96519247 -13.41694939]\n", + " [ 2.08505286 -8.04164748]\n", + " [ 7.46105286 -8.04150786]\n", + " [ 12.83705286 -8.04136825]\n", + " [ 18.21305286 -8.04122863]\n", + " [ 23.58905286 -8.04108901]\n", + " [ 28.96505285 -8.04094939]\n", + " [ 2.08491324 -2.66564748]\n", + " [ 7.46091324 -2.66550786]\n", + " [ 12.83691324 -2.66536825]\n", + " [ 18.21291324 -2.66522863]\n", + " [ 23.58891323 -2.66508901]\n", + " [ 28.96491324 -2.66494939]]\n", + "0.91538572 0.94689876 0.96382489\n", + " 0.62072988 0.94296444 0.97959085 0.9897031 0.99382317 0.99589043]\n", + "DEBUG:root:optics_fp: sphi: [-0.69680111 -0.64114722 -0.57314869 -0.49084265 -0.39293677 -0.27960013\n", + " -0.15326941 -0.01896529 -0.69680111 -0.74728304 -0.80034077 -0.85407631\n", + " -0.90539113 -0.94994095 -0.98262854 -0.99880866 -0.01896529 -0.02204027\n", + " -0.02626479 -0.03243122 -0.04227651 -0.06048361 -0.10546358 -0.38328124\n", + " -0.99880866 -0.99839535 -0.9977203 -0.99650464 -0.99396928 -0.9872021\n", + " -0.95720188 -0.38328124 -0.67408945 -0.59784918 -0.50106771 -0.3810536\n", + " -0.23821077 -0.07812313 -0.71824824 -0.78204748 -0.84795317 -0.91077177\n", + " -0.96255302 -0.99400976 -0.02069125 -0.02527007 -0.03236333 -0.04482319\n", + " -0.07241971 -0.18420237 -0.9986244 -0.99795053 -0.99662012 -0.9933915\n", + " -0.98176652 -0.85668122 -0.6967964 -0.6967964 -0.38778427 00e+01 5.00000147e-01]\n", + " [-4.35000000e+01 5.00000147e-01]\n", + " [ 2.00150000e+03 2.04550000e+03]\n", + " [ 2.00150000e+03 2.04550000e+03]\n", + " [ 8.30000000e+01 1.27000000e+02]\n", + " [ 4.41400000e+02 1.27000000e+02]\n", + " [ 7.99800000e+02 1.27000000e+02]\n", + " [ 1.15820000e+03 1.27000000e+02]\n", + " [ 1.51660000e+03 1.27000000e+02]\n", + " [ 1.87500000e+03 1.27000000e+02]\n", + " [ 8.30000000e+01 4.85400000e+02]\n", + " [ 4.41400000e+02 4.85400000e+02]\n", + " [ 7.99800000e+02 4.85400000e+02]\n", + " [ 1.15820000e+03 4.85400000e+02]\n", + " [ 1.51660000e+03 4.85400000e+02]\n", + " [ 1.87500000e+03 4.85400000e+02]\n", + " [ 8.30000000e+01 8.43800000e+02]\n", + " [ 4.41400000e+02 8.43800000e+02]\n", + " [ 7.99800000e+02 8.43800000e+02]\n", + " [ 1.15820000e+03 8.43800000e+02]\n", + " [ 1.51660000e+03 8.43800000e+02]\n", + " [ 1.87500000e+03 8.43800000e+02]\n", + " [ 8.30000000e+01 1.20220000e+03]\n", + " [ 4.41400000e+02 1.20220000e+03]\n", + " [ 7.99800000e+02 1.20220000e+03]\n", + " [ 1.15820000e+03 1.20220000e+03]\n", + " [ 1.51660000e+03 1.20220000e+03]\n", + " [ 1.87500000e+03 1.20220000e+03]\n", + " [ 8.30000000e+01 1.56060000e+-0.38778427\n", + " -0.69616172 -0.76258227 -0.83253145 -0.90061674 -0.95788656 -0.99322432\n", + " -0.62111512 -0.69382495 -0.77549605 -0.8611271 -0.93887151 -0.98992366\n", + " -0.52402662 -0.59898168 -0.69015945 -0.79605037 -0.90427778 -0.98347639\n", + " -0.40118994 -0.4700312 -0.56175978 -0.68358289 -0.83348839 -0.96822051\n", + " -0.25223255 -0.30216337 -0.37479377 -0.48708132 -0.66835488 -0.91754577\n", + " -0.08301599 -0.10086897 -0.12834059 -0.17590022 -0.27687945 -0.59535474]\n", + "03]\n", + " [ 4.41400000e+02 1.56060000e+03]\n", + " [ 7.99800000e+02 1.56060000e+03]\n", + " [ 1.15820000e+03 1.56060000e+03]\n", + " [ 1.51660000e+03 1.56060000e+03]\n", + " [ 1.87500000e+03 1.56060000e+03]\n", + " [ 8.30000000e+01 1.91900000e+03]\n", + " [ 4.41400000e+02 1.91900000e+03]\n", + " [ 7.99800000e+02 1.91900000e+03]\n", + " [ 1.15820000e+03 1.91900000e+03]\n", + " [ 1.51660000e+03 1.91900000e+03]\n", + " [ 1.87500000e+03 1.91900000e+03]]\n", + "DEBUG:root:make_az_asym: xyp: [[ 0.173161 -31.45819714]\n", + " [ 0.17304708 -27.07176857]\n", + " [ 0.17293316 -22.68534 ]\n", + " [ 0.17281925 -18.29891143]\n", + " [ 0.17270533 -13.91248287]\n", + " [ 0.17259141 -9.52605429]\n", + " [ 0.17247749 -5.13962573]\n", + " [ 0.17236358 -0.75319715]\n", + " [ 0.173161 -31.45819714]\n", + " [ 4.55958957 -31.45808322]\n", + " [ 8.94601814 -31.45796931]\n", + " [ 13.33244671 -31.45785538]\n", + " [ 17.71887528 -31.45774147]\n", + " [ 22.10530385 -31.45762756]\n", + " [ 26.49173242 -31.45751363]\n", + " [ 30.87816099 -31.45739971]\n", + " [ 0.17236358 -0.75319715]\n", + " [ 4.55879215 -0.75308323]\n", + " [ 8.94522072 -0.75296932]\n", + " [ 13.33164929 -0.7528554 ]\n", + " [ 17.71807786 -0.75274148]\n", + " [ 22.10450643 -0.75262756]\n", + " [ 26.490935 -0.75251364]\n", + " [ 30.87736356 -0.75239973]\n", + " [ 30.87816099 -31.45739971]\n", + " [ 30.87804707 -27.07097114]\n", + " [ 30.87793315 -22.68454257]\n", + " [ 30.87781924 -18.29811401]\n", + " [ 30.87770532 -13.91168544]\n", + " [ 30.87759141 -9.52525687]\n", + " [ 30.87747749 -5.1388283 ]\n", + " [ 30.87736356 -0.75239973]\n", + " [ 0.18811133 -29.54569675]\n", + " [ 0.18797171 -24.16969676]\n", + " [ 0.1878321 -18.79369675]\n", + " [ 0.18769248 -13.41769676]\n", + " [ 0.18755286 -8.04169676]\n", + " [ 0.18741324 -2.66569676]\n", + " [ 2.08566061 -31.44314748]\n", + " [ 7.46166061 -31.44300785]\n", + " [ 12.83766061 -31.44286824]\n", + " [ 18.2136606 -31.44272862]\n", + " [ 23.5896606 -31.442589 ]\n", + " [ 28.9656606 -31.44244938]\n", + " [ 2.08486397 -0.76814748]\n", + " [ 7.46086396 -0.76800786]\n", + " [ 12.83686396 -0.76786825]\n", + " [ 18.21286396 -0.76772863]\n", + " [ 23.58886395 -0.76758901]\n", + " [ 28.96486395 -0.7674494 ]\n", + " [ 30.86311132 -29.54490011]\n", + " [ 30.86297171 -24.16890011]\n", + " [ 30.86283209 -18.79290011]\n", + " [ 30.86269247 -13.41690011]\n", + " [ 30.86255285 -8.04090011]\n", + " [ 30.86241323 -2.66490012]\n", + " [ 0.18816061 -31.44319675]\n", + " [ 0.18816061 -31.44319675]\n", + " [ 30.86236396 -0.76740012]\n", + " [ 30.86236396 -0.76740012]\n", + " [ 2.08561133 -29.54564748]\n", + " [ 7.46161133 -29.54550785]\n", + " [ 12.83761133 -29.54536824]\n", + " [ 18.21361133 -29.54522862]\n", + " [ 23.58961132 -29.545089 ]\n", + " [ 28.96561132 -29.54494938]\n", + " [ 2.08547171 -24.16964747]\n", + " [ 7.46147171 -24.16950786]\n", + " [ 12.83747171 -24.16936824]\n", + " [ 18.21347171 -24.16922862]\n", + " [ 23.58947171 -24.16908901]\n", + " [ 28.9654717 -24.16894939]\n", + " [ 2.0853321 -18.79364747]\n", + " [ 7.46133209 -18.79350785]\n", + " [ 12.83733209 -18.79336824]\n", + " [ 18.21333209 -18.79322862]\n", + " [ 23.58933209 -18.79308901]\n", + " [ 28.96533209 -18.79294939]\n", + " [ 2.08519248 -13.41764748]\n", + " [ 7.46119248 -13.41750786]\n", + " [ 12.83719247 -13.41736824]\n", + " [ 18.21319248 -13.41722863]\n", + " [ 23.58919247 -13.41708901]\n", + " [ 28.96519247 -13.41694939]\n", + " [ 2.08505286 -8.04164748]\n", + " [ 7.46105286 -8.04150786]\n", + " [ 12.83705286 -8.04136825]\n", + " [ 18.21305286 -8.04122863]\n", + " [ 23.58905286 -8.04108901]\n", + " [ 28.96505285 -8.04094939]\n", + " [ 2.08491324 -2.66564748]\n", + " [ 7.46091324 -2.66550786]\n", + " [ 12.83691324 -2.66536825]\n", + " [ 18.21291324 -2.66522863]\n", + " [ 23.58891323 -2.66508901]\n", + " [ 28.96491324 -2.66494939]]\n", + " -0.56346867 -0.68479813 -0.83377108 -0.9677645\n", + " -0.2547217 -0.30487255 -0.37769207 -0.48994442 -0.67029166 -0.91697776\n", + " -0.08601994 -0.10436806 -0.13256201 -0.18124971 -0.28404496 -0.60207682]\n", + "DEBUG:root:make_az_asym: xyp: shape: (96, 2)\n", + "DEBUG:root:make_az_asym: xyp: shape: (96, 2)\n", + "DEBUG:root:optics_fp: sphi: [-0.99998485 -0.99997954 -0.99997084 -0.99995516 -0.99992235 -0.99983405\n", + " -0.99942701 -0.97244722 -0.99998485 -0.98963896 -0.96179176 -0.92058417\n", + " -0.87108674 -0.81792759 -0.76458695 -0.71330561 -0.97244722 -0.15632448\n", + " -0.08040428 -0.05404675 -0.04069277 -0.03262757 -0.02722955 -0.0233637\n", + " -0.71330561 -0.65880742 -0.59153179 -0.50916823 -0.41001608 -0.29390365\n", + " -0.16320875 -0.0233637 -0.99997971 -0.99996967 -0.99994981 -0.9999014\n", + " -0.99972471 -0.99746296 -0.99780328 -0.97292796 -0.92567822 -0.8650939\n", + " -0.79962377 -0.73515153 -0.33304712 -0.0982454 -0.05728621 -0.04041066\n", + " -0.03121144 -0.02542276 -0.69113701 -0.61606249 -0.51946104 -0.39791167\n", + " -0.251215 -0.08503968 -0.99998209 -0.99998209 -0.02386066 -0.02386066\n", + " -0.99751283 -0.96949788 -0.91701021 -0.85100183 -0.78115023 -0.71370911\n", + " -0.99628843 -0.95539573 -0.8829017 -0.79825206 -0.71518771 -0.64018769\n", + " -0.99387901 -0.92921527 -0.82530209 -0.71751954 -0.62247788 -0.54365446\n", + " -0.98808048 -0.87347054 -0.72174233 -0.59221374 -0.49353552 -0.41950849\n", + " -0.96773826 -0.7317211 -0.52936616 -0.40257793 -0.32153186 -0.26653625\n", + " -0.7840245 -0.33289349 -0.20100193 -0.14313552 -0.11097528 -0.09056624]\n", + "DEBUG:root:radec2pix: ccdpx: [[-4.44999999e+01 -4.99999873e-01]\n", + " [-4.44999998e+01 2.91928572e+02]\n", + " [-4.44999998e+01 5.84357143e+02]\n", + " [-4.45000002e+01 8.76785714e+02]\n", + " [-4.45000003e+01 1.16921429e+03]\n", + " [-4.45000002e+01 1.46164286e+03]\n", + " [-4.45000002e+01 1.75407143e+03]\n", + " [-4.45000000e+01 2.04650000e+03]\n", + " [-4.44999999e+01 -4.99999873e-01]\n", + " [ 2.47928571e+02 -5.00000280e-01]\n", + " [ 5.40357143e+02 -5.00000000e-01]\n", + " [ 8.32785714e+02 -4.99999974e-01]\n", + " [ 1.12521429e+03 -4.99999987e-01]\n", + " [ 1.41764286e+03 -4.99999863e-01]\n", + " [ 1.71007143e+03 -5.00000138e-01]\n", + " [ 2.00250000e+03 -4.99999700e-01]\n", + " [-4.45000000e+01 2.04650000e+03]\n", + " [ 2.47928571e+02 2.04650000e+03]\n", + " [ 5.40357143e+02 2.04650000e+03]\n", + " [ 8.32785714e+02 2.04650000e+03]\n", + " [ 1.12521429e+03 2.04650000e+03]\n", + " [ 1.41764286e+03 2.04650000e+03]\n", + " [ 1.71007143e+03 2.04650000e+03]\n", + " [ 2.00250000e+03 2.04650000e+03]\n", + " [ 2.00250000e+03 -4.99999700e-01]\n", + " [ 2.00250000e+03 2.91928571e+02]\n", + " [ 2.00250000e+03 5.84357143e+02]\n", + " [ 2.00250000e+03 8.76785714e+02]\n", + " [ 2.00250000e+03 1.16921429e+03]\n", + " [ 2.00250000e+03 1.46164286e+03]\n", + " [ 2.00250000e+03 1.75407143e+03]\n", + " [ 2.00250000e+03 2.04650000e+03]\n", + " [-4.35000000e+01 1.27000000e+02]\n", + " [-4.35000002e+01 4.85400000e+02]\n", + " [-4.34999999e+01 8.43800000e+02]\n", + " [-4.35000003e+01 1.20220000e+03]\n", + " [-4.35000000e+01 1.56060000e+03]\n", + " [-4.35000001e+01 1.91900000e+03]\n", + " [ 8.30000001e+01 5.00000148e-01]\n", + " [ 4.41400000e+02 4.99999823e-01]\n", + " [ 7.99800000e+02 4.99999939e-01]\n", + " [ 1.15820000e+03 5.00000006e-01]\n", + " [ 1.51660000e+03 5.00000232e-01]\n", + " [ 1.87500000e+03 5.00000256e-01]\n", + " [ 8.29999998e+01 2.04550000e+03]\n", + " [ 4.41400000e+02 2.04550000e+03]\n", + " [ 7.99800000e+02 2.04550000e+03]\n", + " [ 1.15820000e+03 2.04550000e+03]\n", + " [ 1.51660000e+03 2.04550000e+03]\n", + " [ 1.87500000e+03 2.04550000e+03]\n", + " [ 2.00150000e+03 1.27000000e+02]\n", + " [ 2.00150000e+03 4.85400000e+02]\n", + " [ 2.00150000e+03 8.43800000e+02]\n", + " [ 2.00150000e+03 1.20220000e+03]\n", + " [ 2.00150000e+03 1.56060000e+03]\n", + " [ 2.00150000e+03 1.91900000e+03]\n", + " [-4.35000003e+01 4.99999725e-01]\n", + " [-4.35000003e+01 4.99999725e-01]\n", + " [ 2.00150000e+03 2.04550000e+03]\n", + " [ 2.00150000e+03 2.04550000e+03]\n", + " [ 8.30000000e+01 1.27000000e+02]\n", + " [ 4.41400000e+02 1.27000000e+02]\n", + " [ 7.99800000e+02 1.27000000e+02]\n", + " [ 1.15820000e+03 1.27000000e+02]\n", + " [ 1.51660000e+03 1.27000000e+02]\n", + " [ 1.87500000e+03 1.27000000e+02]\n", + " [ 8.30000001e+01 4.85400000e+02]\n", + " [ 4.41400000e+02 4.85400000e+02]\n", + " [ 7.99800000e+02 4.85400000e+02]\n", + " [ 1.15820000e+03 4.85400000e+02]\n", + " [ 1.51660000e+03 4.85400000e+02]\n", + " [ 1.87500000e+03 4.85400000e+02]\n", + " [ 8.30000001e+01 8.43800000e+02]\n", + " [ 4.41400000e+02 8.43800000e+02]\n", + " [ 7.99800000e+02 8.43800000e+02]\n", + " [ 1.15820000e+03 8.43800000e+02]\n", + " [ 1.51660000e+03 8.43800000e+02]\n", + " [ 1.87500000e+03 8.43800000e+02]\n", + " [ 8.29999999e+01 1.20220000e+03]\n", + " [ 4.41400000e+02 1.20220000e+03]\n", + " [ 7.99800000e+02 1.20220000e+03]DEBUG:root:optics_fp: rtanth: [45.10526614 42.15252235 39.46728719 37.10767964 35.13935868 33.63109692\n", + " 32.64672024 32.23425998 45.10526614 42.08371704 39.32015966 36.87264817\n", + " 34.80791464 33.1974573 32.10970154 31.5986741 32.23425998 27.84962696\n", + " 23.46566508 19.08283694 14.70215645 10.32635724 5.96618932 1.74318313\n", + " 31.5986741 27.21812469 22.83983208 18.46540167 14.09842896 9.748941\n", + " 5.45889306 1.74318313 43.77728663 40.33061683 37.34259278 34.93111177\n", + " 33.22196043 32.3267303 43.74864122 40.21129183 37.11812392 34.58850978\n", + " 32.75328451 31.73315358 30.32290674 24.94961031 19.57779834 14.20915457\n", + " 8.84944693 3.53950567 29.68929466 24.32204857 18.9597634 13.60830488\n", + " 8.2886698 3.16557807 45.08405409 45.08405409 1.76362955 1.76362955\n", + " 42.40073703 38.740507 35.51948783 32.86706408 30.92986484 29.84747775\n", + " 38.83207862 34.7984872 31.1727741 28.11319496 25.82178089 24.5148885\n", + " 35.71891532 31.28650338 27.19655174 23.62757526 20.84885967 19.20651814\n", + " 33.18967076 28.36474267DEBUG:root:radec2pix: fitpx: [[2135.5 4155.49999984]\n", + " [2135.5 3863.07142868]\n", + " [2135.5 3570.64285754]\n", + " [2135.5 3278.21428588]\n", + " [2135.5 2985.78571458]\n", + " [2135.5 2693.35714314]\n", + " [2135.5 2400.92857131]\n", + " [2135.50000005 2108.49999975]\n", + " [2135.5 4155.49999984]\n", + " [1843.07142855 4155.50000013]\n", + " [1550.64285718 4155.49999985]\n", + " [1258.21428582 4155.49999974]\n", + " [ 965.78571443 4155.49999975]\n", + " [ 673.35714268 4155.50000026]\n", + " [ 380.92857156 4155.49999984]\n", + " [ 88.49999989 4155.50000011]\n", + " [2135.50000005 2108.49999975]\n", + " [1843.07142845 2108.50000002]\n", + " [1550.64285702 2108.50000001]\n", + " [1258.21428598 2108.49999998]\n", + " [ 965.78571394 2108.50000002]\n", + " [ 673.35714284 2108.5 ]\n", + " [ 380.92857156 2108.5 ]\n", + " [ 88.49999977 2108.50000001]\n", + " [ 88.49999989 4155.50000011]\n", + " [ 88.49999981 3863.07142874]\n", + " [ 88.49999988 3570.64285723]\n", + " [ 88.49999983 3278.21428582]\n", + " [ 88.5000001 2985.78571424]\n", + " [ 88.50000005 2693.35714284]\n", + " [ 88.49999995 2400.92857144]\n", + " [ 88.49999977 2108.50000001]\n", + " [2134.5 4028.00000026]\n", + " [2134.5 3669.59999996]\n", + " [2134.5 3311.20000006]\n", + " [2134.5 2952.80000018]\n", + " [2134.50000001 2594.39999977]\n", + " [2134.49999998 2236.00000029]\n", + " [2008.00000002 4154.49999972]\n", + " [1649.59999996 4154.50000015]\n", + " [1291.19999992 4154.5000002 ]\n", + " [ 932.79999984 4154.50000027]\n", + " [ 574.40000018 4154.49999976]\n", + " [ 215.99999983 4154.50000019]\n", + " [2007.99999997 2109.50000001]\n", + " [1649.60000009 2109.49999999]\n", + " [1291.20000024 2109.49999998]\n", + " [ 932.80000011 2109.5 ]\n", + " [ 574.40000007 2109.5 ]\n", + " [ 216.00000022 2109.49999999]\n", + " [ 89.50000011 4027.99999989]\n", + " [ 89.49999997 3669.60000003]\n", + " [ 89.49999978 3311.20000014]\n", + " [ 89.49999974 2952.80000012]\n", + " [ 89.49999998 2594.4 ]\n", + " [ 89.50000005 2236. ]\n", + " [2134.5 4154.49999985]\n", + " [2134.5 4154.49999985]\n", + " [ 89.49999982 2109.5 ]\n", + " [ 89.49999982 2109.5 ]\n", + " [2007.99999998 4028.00000026]\n", + " [1649.60000006 4027.99999978]\n", + " [1291.19999989 4028.00000025]\n", + " [ 932.8000001 40\n", + " [ 1.15820000e+03 1.20220000e+03]\n", + " [ 1.51660000e+03 1.20220000e+03]\n", + " [ 1.87500000e+03 1.20220000e+03]\n", + " [ 8.30000000e+01 1.56060000e+03]\n", + " [ 4.41400000e+02 1.56060000e+03]\n", + " [ 7.99800000e+02 1.56060000e+03]\n", + " [ 1.15820000e+03 1.56060000e+03]\n", + " [ 1.51660000e+03 1.56060000e+03]\n", + " [ 1.87500000e+03 1.56060000e+03]\n", + " [ 8.30000003e+01 1.91900000e+03]\n", + " [ 4.41400000e+02 1.91900000e+03]\n", + " [ 7.99800000e+02 1.91900000e+03]\n", + " [ 1.15820000e+03 1.91900000e+03]\n", + " [ 1.51660000e+03 1.91900000e+03]\n", + " [ 1.87500000e+03 1.91900000e+03]]\n", + "27.99999984]\n", + " [ 574.40000016 4027.9999998 ]\n", + " [ 215.99999996 4028.00000004]\n", + " [2007.99999998 3669.60000024]\n", + " [1649.59999998 3669.60000005]\n", + " [1291.20000009 3669.59999982]\n", + " [ 932.79999983 3669.60000022]\n", + " [ 574.39999986 3669.60000015]\n", + " [ 216.00000022 3669.59999982]\n", + " [2007.99999999 3311.20000008]\n", + " [1649.59999996 3311.2000001 ]\n", + " [1291.19999979 3311.20000031]\n", + " [ 932.80000004 3311.19999996]\n", + " [ 574.39999992 3311.20000007]\n", + " [ 216.00000024 3311.19999984]\n", + " [2008.00000001 2952.79999DEBUG:root:radec2pix: xyfp: [[ 0.173161 -31.45819714]\n", + " [ 0.17304708 -27.07176857]\n", + " [ 0.17293316 -22.68534 ]\n", + " [ 0.17281925 -18.29891143]\n", + " [ 0.17270533 -13.91248287]\n", + " [ 0.17259141 -9.52605429]\n", + " [ 0.17247749 -5.13962573]\n", + " [ 0.17236358 -0.75319715]\n", + " [ 0.173161 -31.45819714]\n", + " [ 4.55958957 -31.45808322]\n", + " [ 8.94601814 -31.45796931]\n", + " [ 13.33244671 -31.45785538]\n", + " [ 17.71887528 -31.45774147]\n", + " [ 22.10530385 -31.45762756]\n", + " [ 26.49173242 -31.45751363]\n", + " [ 30.87816099 -31.45739971]\n", + " [ 0.17236358 -0.75319715]\n", + " [ 4.55879215 -0.75308323]\n", + " [ 8.94522072 -0.75296932]\n", + " [ 13.33164929 -0.7528554 ]\n", + " [ 17.71807786 -0.75274148]\n", + " [ 22.10450643 -0.75262756]\n", + " [ 26.490935 -0.75251364]\n", + " [ 30.87736356 -0.75239973]\n", + " [ 30.87816099 -31.45739971]\n", + " [ 30.87804707 -27.07097114]\n", + " [ 30.87793315 -22.68454257]\n", + " [ 30.87781924 -18.29811401]\n", + " [ 30.87770532 -13.91168544]\n", + " [ 30.87759141 -9.52525687]\n", + " [ 30.87747749 -5.1388283 ]\n", + " [ 30.87736356 -0.75239973]\n", + " [ 0.18811133 -29.54569675]\n", + " [ 0.18797171 23.77742123 19.59529652 16.13655116 13.95004204\n", + " 31.3858301 26.23117825 21.1868319 16.35517444 11.99601471 8.83853824\n", + " 30.43664187 25.08771711 19.753498 14.45027919 9.23164159 4.4089223 ]\n", + "DEBUG:root:optics_fp: xyfp: [[32.2358199 31.31614388]\n", + " [32.23338667 26.92971599]\n", + " [32.23095344 22.54328809]\n", + " [32.2285202 18.15686019]\n", + " [32.22608698 13.7704323 ]\n", + " [32.22365375 9.3840044 ]\n", + " [32.22122051 4.99757651]\n", + " [32.21878728 0.61114861]\n", + " [32.2358199 31.31614388]\n", + " [27.849392 31.31857712]\n", + " [23.46296411 31.32101035]\n", + " [19.07653621 31.32344358]\n", + " [14.69010831 31.3258768 ]\n", + " [10.30368042 31.32831004]\n", + " [ 5.91725252 31.33074327]\n", + " [ 1.53082462 31.3331765 ]\n", + " [32.21878728 0.61114861]\n", + " [27.83235938 0.61358184]\n", + " [23.44593149 0.61601507]\n", + " [19.0595036 0.6184483 ]\n", + " [14.6730757 0.62088153]\n", + " [10.2866478 0.62331476]\n", + " [ 5.90021991 0.625748 ]\n", + " [ 1.513792 0.62818122]\n", + " [ 1.53082462 31.3331765 ]\n", + " [ 1.52839139 26.94674861]\n", + " [ 1.52595816 22.5603207 ]\n", + " [ 1.52352493 18.17389281]\n", + " [ 1.5210917 13.787DEBUG:root:radec2pix: curVec: [[-3.03698102e-02 1.17477723e-01 -9.92611031e-01]\n", + " [-8.50880530e-03 1.33165979e-01 -9.91057224e-01]\n", + " [ 1.37265502e-02 1.49210364e-01 -9.88710195e-01]\n", + " [ 3.62498479e-02 1.65523722e-01 -9.85539368e-01]\n", + " [ 5.89742836e-02 1.82023433e-01 -9.81524072e-01]\n", + " [ 8.18124301e-02 1.98631281e-01 -9.76653644e-01]\n", + " [ 1.04676163e-01 2.15273025e-01 -9.70927611e-01]\n", + " [ 1.27476854e-01 2.31878052e-01 -9.64355858e-01]\n", + " [-3.03698102e-02 1.17477723e-01 -9.92611031e-01]\n", + " [-4.82274027e-02 1.37342048e-01 -9.89348917e-01]\n", + " [-6.63165300e-02 1.57634263e-01 -9.85268267e-01]\n", + " [-8.45684596e-02 1.78250341e-01 -9.80344323e-01]\n", + " [-1.02914027e-01 1.99090750e-01 -9.74562248e-01]\n", + " [-1.21283427e-01 2.20060276e-01 -9.67917251e-01]\n", + " [-1.39606213e-01 2.41067562e-01 -9.60414773e-01]\n", + " [-1.57811558e-01 2.62024765e-01 -9.52070656e-01]\n", + " [ 1.27476854e-01 2.31878052e-01 -9.64355858e-01]\n", + " [ 1.10426945e-01 2.53701148e-01 -9.60958697e-01]\n", + " [ 9.29421058e-02 2.75770302e-01 -9.56719659e-01]\n", + " 992]\n", + " [1649.6000001 2952.79999982]\n", + " [1291.20000006 2952.79999994]\n", + " [ 932.79999988 2952.80000009]\n", + " [ 574.39999983 2952.8000001 ]\n", + " [ 215.99999999 2952.8 ]\n", + " [2008.00000001 2594.39999996]\n", + " [1649.60000003 2594.39999997]\n", + " [1291.19999974 2594.40000016]\n", + " [ 932.80000041 2594.39999982]\n", + " [ 574.40000002 2594.39999999]\n", + " [ 215.99999998 2594.40000001]\n", + " [2008.00000001 2235.99999999]\n", + " [1649.59999976 2236.00000009]\n", + " [1291.19999986 2236.00000003]\n", + " [ 932.79999992 2236.00000001]\n", + " [ 574.39999976 2236.00000003]\n", + " [ 216.00000019 2235.99999998]]\n", + "46492]\n", + " [ 1.51865847 9.40103702]\n", + " [ 1.51622524 5.01460912]\n", + " [ 1.513792 0.62818122]\n", + " [32.219759 29.4036525 ]\n", + " [32.21677684 24.02765333]\n", + " [32.21379467 18.65165415]\n", + " [32.21081251 13.27565498]\n", + " [32.20783035 7.89965581]\n", + " [32.20484818 2.52365664]\n", + " [30.32331188 31.30220479]\n", + " [24.9473127 31.30518695]\n", + " [19.57131353 31.30816912]\n", + " [14.19531435 31.31115127]\n", + " [ 8.81931518 31.31413344]\n", + " [ 3.44331601 31.3171156 ]\n", + " [30.3062959 0.62720951]\n", + " [24.93029672 0.63019167]\n", + " DEBUG:root:fitpix2pix: ccdpx: shape: (96, 2)\n", + "-24.16969676]\n", + " [ 0.1878321 -18.79369675]\n", + " [ 0.18769248 -13.41769676]\n", + " [ 0.18755286 -8.04169676]\n", + " [ 0.18741324 -2.66569676]\n", + " [ 2.08566061 -31.44314748]\n", + " [ 7.46166061 -31.44300785]\n", + " [ 12.83766061 -31.44286824]\n", + " [ 18.2136606 -31.44272862]\n", + " [ 23.5896606 -31.442589 ]\n", + " [ 28.9656606 -31.44244938]\n", + " [ 2.08486397 -0.76814748]\n", + " [ 7.46086396 -0.76800786]\n", + " [ 12.83686396 -0.76786825]\n", + " [ 18.21286396 -0.76772863]\n", + " [ 23.58886395 -0.76758901]\n", + " [ 28.96486395 -0.7674494 ]\n", + " [ 30.86311132 -29.54490011]\n", + " [ 30.86297171 -24.16890011]\n", + " [ 30.86283209 -18.79290011]\n", + " [ 30.86269247 -13.41690011]\n", + " [ 30.86255285 -8.04090011]\n", + " [ 30.86241323 -2.66490012]\n", + " [ 0.18816061 -31.44319675]\n", + " [ 0.18816061 -31.44319675]\n", + " [ 30.86236396 -0.76740012]\n", + " [ 30.86236396 -0.76740012]\n", + " [ 2.08561133 -29.54564748]\n", + " [ 7.46161133 -29.54550785]\n", + " [ 12.83761133 -29.54536824]\n", + " [ 18.21361133 -29.54522862]\n", + " [ 23.58961132 -29.545089 ]\n", + " [ 28.96561132 -29.54494938]\n", + " [ 2.08547171 -24.16964747]\n", + " [ 7.46147171 -24.16950786]\n", + " [ 12.83747171 -24.16936824]\n", + " [ 18.21347171 -24.16922862]\n", + " [ 23.58947171 -24.16908901]\n", + " [ 28.9654717 -24.16894939]\n", + " [ 2.0853321 -18.79364747]\n", + " [ 7.46133209 -18.79350785]\n", + " [ 12.83733209 -18.79336824]\n", + " [ 18.21333209 -18.79322862]\n", + " [ 23.58933209 -18.79308901]\n", + " [ 28.96533209 -18.79294939]\n", + " [ 2.08519248 -13.41764748]\n", + " [ 7.46119248 -13.41750786]\n", + " [ 12.83719247 -13.41736824]\n", + " [ 18.21319248 -13.41722863]\n", + " [ 23.58919247 -13.41708901]\n", + " [ 28.96519247 -13.41694939]\n", + " [ 2.08505286 -8.04164748]\n", + " [ 7.46105286 -8.04150786]\n", + " [ 12.83705286 -8.04136825]\n", + " [ 18.21305286 -8.04122863]\n", + " [ 23.58905286 -8.04108901]\n", + " [ 28.96505285 -8.04094939]\n", + " [ 2.08491324 -2.66564748]\n", + " [ 7.46091324 -2.66550786]\n", + " [ 12.83691324 -2.66536825]\n", + " [ 18.21291324 -2.66522863]\n", + " [ 23.58891323 -2.66508901]\n", + " [ 28.96491324 -2.66494939]]\n", + "[ 7.50874417e-02 2.97985060e-01 -9.51612726e-01]\n", + " [ 5.69287643e-02 3.20248327e-01 -9.45621555e-01]\n", + " [ 3.85337509e-02 3.42464961e-01 -9.3874DEBUG:root:radec2pix: xyfp Shape: (96, 2)\n", + "DEBUG:root:radec2pix: xyfp: [[ 0.173161 -31.45819714]\n", + " [ 0.17304708 -27.07176857]\n", + " [ 0.17293316 -22.68534 ]\n", + " [ 0.17281925 -18.29891143]\n", + " [ 0.17270533 -13.91248287]\n", + " [ 0.17259141 -9.52605429]\n", + " [ 0.17247749 -5.13962573]\n", + " [ 0.17236358 -0.75319715]\n", + " [ 0.173161 -31.45819714]\n", + " [ 4.55958957 -31.45808322]\n", + " [ 8.94601814 -31.45796931]\n", + " [ 13.33244671 -31.45785538]\n", + " [ 17.71887528 -31.45774147]\n", + " [ 22.10530385 -31.45762756]\n", + " [ 26.49173242 -31.45751363]\n", + " [ 30.87816099 -31.45739971]\n", + " [ 0.17236358 -0.75319715]\n", + " [ 4.55879215 -0.75308323]\n", + " [ 8.94522072 -0.75296932]\n", + " [ 13.33164929 -0.7528554 ]\n", + " [ 17.71807786 -0.75274148]\n", + " [ 22.10450643 -0.75262756]\n", + " [ 26.490935 -0.75251364]\n", + " [ 30.87736356 -0.75239973]\n", + " [ 30.87816099 -31.45739971]\n", + " [ 30.87804707 -27.07097114]\n", + " [ 30.87793315 -22.68454257]\n", + " [ 30.87781924 -18.29811401]\n", + " [ 30.87770532 -13.91168544]\n", + " [ 30.87759141 -9.52525687]\n", + " [ 30.87747749 -5.1388283 ]\n", + " [ 30.87736356 -0.75239973]\n", + " [ 0.18811133 -29.54569675]\n", + " [ 0.18797171 -24.16969676]\n", + " [ 0.1878321 -18.79369675]\n", + " [ 0.18769248 -13.41769676]\n", + " [ 0.18755286 -8.04169676]\n", + " [ 0.18741324 -2.66569676]\n", + " [ 2.08566061 -31.44314748]\n", + " [ 7.46166061 -31.44300785]\n", + " [ 12.83766061 -31.44286824]\n", + " [ 18.2136606 -31.44272862]\n", + " [ 23.5896606 -31.442589 ]\n", + " [ 28.9656606 -31.44244938]\n", + " [ 2.08486397 -0.76814748]\n", + " [ 7.46086396 -0.76800786]\n", + " [ 12.83686396 -0.76786825]\n", + " [ 18.21286396 -0.76772863]\n", + " [ 23.58886395 -0.76758901]\n", + " [ 28.96486395 -0.7674494 ]\n", + " [ 30.86311132 -29.54490011]\n", + " [ 30.86297171 -24.16890011]\n", + " [ 30.86283209 -18.79290011]\n", + " [ 30.86269247 -13.41690011]\n", + " [ 30.86255285 -8.04090011]\n", + " [ 30.86241323 -2.66490012]\n", + " [ 0.18816061 -31.44319675]\n", + " [ 0.18816061 -31.44319675]\n", + " [ 30.86236396 -0.76740012]\n", + " [ 30.86236396 -0.76740012]\n", + " [ 2.08561133 -29.54564748]\n", + " [ 7.46161133 -29.54550785]\n", + " [ 12.83761133 -29.54536824]\n", + " [ 18.21361133 -29.54522862]\n", + " [ 23.58961132 -29.545089 ]\n", + " [ 28.96561132 -29.54494938]\n", + " [ 2.08547171 -DEBUG:root:fitpix2pix: visCut: True\n", + "DEBUG:root:optics_fp: xyfp: [[32.275486 31.41357429]\n", + " [32.27502267 27.02714574]\n", + " [32.27455935 22.64071719]\n", + " [32.27409601 18.25428864]\n", + " [32.27363269 13.8678601 ]\n", + " [32.27316936 9.48143155]\n", + " [32.27270604 5.095003 ]\n", + " [32.27224271 0.70857446]\n", + " [32.275486 31.41357429]\n", + " [27.88905745 31.41403761]\n", + " [23.5026289 31.41450094]\n", + " [19.11620036 31.41496427]\n", + " [14.72977181 31.41542759]\n", + " [10.34334326 31.41589092]\n", + " [ 5.95691471 31.41635424]\n", + " [ 1.57048617 31.41681757]\n", + " [32.27224271 0.70857446]\n", + " [27.88581416 0.70903778]\n", + " [23.49938562 0.70950111]\n", + " [19.11295707 0.70996444]\n", + " [14.72652852 0.71042776]\n", + " [10.34009998 0.71089109]\n", + " [ 5.95367142 0.71135442]\n", + " [ 1.56724288 0.71181774]\n", + " [ 1.57048617 31.41681757]\n", + " [ 1.57002284 27.03038902]\n", + " [ 1.56955951 22.64396047]\n", + " [ 1.56909619 18.25753194]\n", + " [ 1.56863286 13.87110338]\n", + " [ 1.56816953 9.48467484]\n", + " [ 1.56770621 5.09824629]\n", + " [ 1.56724288 0.71181774]\n", + " [32.26028399 29.50107588]\n", + " [32.25971613 24.12507591]\n", + " [32.25914828 18.7[19.55429755 0.63317383]\n", + " [14.17829838 0.636156 ]\n", + " [ 8.80229921 0.63913816]\n", + " [ 3.42630004 0.64212033]\n", + " [ 1.54476372 29.42066847]\n", + " [ 1.54178156 24.0446693 ]\n", + " [ 1.53879939 18.66867013]\n", + " [ 1.53581723 13.29267096]\n", + " [ 1.53283507 7.91667178]\n", + " [ 1.5298529 2.54067261]\n", + " [32.22081158 31.30115221]\n", + " [32.22081158 31.30115221]\n", + " [ 1.52880032 0.6431729 ]\n", + " [ 1.52880032 0.6431729 ]\n", + " [30.32225929 29.40470508]\n", + " [24.94626012 29.40768724]\n", + " [19.57026095 29.41066941]\n", + " [14.19426178 29.41365157]\n", + " [ 8.8182626 29.41663373]\n", + " [ 3.44226343 29.4196159 ]\n", + " [30.31927713 24.02870591]\n", + " [24.94327796 24.03168807]\n", + " [19.56727878 24.03467023]\n", + " [14.19127961 24.0376524 ]\n", + " [ 8.81528044 24.04063456]\n", + " [ 3.43928127 24.04361672]\n", + " [30.31629496 18.65270673]\n", + " [24.9402958 18.6556889 ]\n", + " [19.56429662 18.65867106]\n", + " [14.18829744 18.66165322]\n", + " [ 8.81229827 18.66463538]\n", + " [ 3.4362991 18.66761755]\n", + " [30.31331281 13.27670756]\n", + " [24.93731363 13.27968972]\n", + " [19.56131446 13.28267189]\n", + " [14.18531529 13.28565406]\n", + " [ 8.80931611 13.28863621]\n", + " [0060e-01]\n", + " [ 1.99725547e-02 3.64541147e-01 -9.30973066e-01]\n", + " [ 1.31770232e-03 3.86384668e-01 -9.22336789e-01]\n", + " [-1.57811558e-01 2.62024765e-01 -9.52070656e-01]\n", + " [-1.36272302e-01 2.79793957e-01 -9.50339519e-01]\n", + " [-1.14195569e-01 2.97697882e-01 -9.47805541e-01]\n", + " [-9.16633723e-02 3.15652124e-01 -9.44437167e-01]\n", + " [-6.87588159e-02 3.33575653e-01 -9.40212481e-01]\n", + " [-4.55674830e-02 3.51389756e-01 -9.35119695e-01]\n", + " [-2.21780998e-02 3.69017623e-01 -9.29157751e-01]\n", + " [ 1.31770232e-03 3.86384668e-01 -9.22336789e-01]\n", + " [-2.09503992e-02 1.24336010e-01 -9.92018970e-01]\n", + " [ 6.10538435e-03 1.43815911e-01 -9.89585624e-01]\n", + " [ 3.36377585e-02 1.63743480e-01 -9.85929295e-01]\n", + " [ 6.14870945e-02 1.83964721e-01 -9.81007808e-01]\n", + " [ 8.94924324e-02 2.04335587e-01 -9.74801555e-01]\n", + " [ 1.17491307e-01 2.24720923e-01 -9.67313961e-01]\n", + " [-3.80488461e-02 1.26132751e-01 -9.91283418e-01]\n", + " [-6.00994027e-02 1.50781253e-01 -9.86738605e-01]\n", + " [-8.24296244e-02 1.75968484e-01 -9.80938556e-01]\n", + " [-1.04912376e-01 2. 3.43331694 13.29161838]\n", + " [30.31033064 7.90070839]\n", + " [24.93433147 7.90369055]\n", + " [19.55833229 7.90667271]\n", + " [14.18233312 7.90965488]\n", + " [ 8.80633395 7.91263704]\n", + " [ 3.43033477 7.9156192 ]\n", + " [30.30734847 2.52470921]\n", + " [24.9313493 2.52769138]\n", + " [19.55535013 2.53067354]\n", + " [14.17935096 2.53365571]\n", + " [ 8.80335178 2.53663787]\n", + " [ 3.42735261 2.53962004]]\n", + "01509326e-01 -9.73851829e-01]\n", + " [-1.27419146e-01 2.27228440e-01 -9.65469625e-01]\n", + " [-1.49820063e-01 2.52959107e-01 -9.55806277e-01]\n", + " [ 1.20022618e-01 2.41299241e-01 -9.63000129e-01]\n", + " [ 9.88247517e-02 2.68223429e-01 -9.58274418e-01]\n", + " [ 7.70384253e-02 2.95417050e-01 -9.52257238e-01]\n", + " [ 5.47844406e-02 3.22700044e-01 -9.44914465e-01]\n", + " [ 3.21874661e-02 3.49897190e-01 -9.36234972e-01]\n", + " [ 9.37767367e-03 3.76836400e-01 -9.26232361e-01]\n", + " [-1.48429499e-01 2.69678261e-01 -9.51442231e-01]\n", + " [-1.21658594e-01 2.91556933e-01 -9.48785403e-01]\n", + " [-9.41619454e-02 3.13553799e-01 -9.44890228e-01]\n", + " [-6.60920134e-02 3.35518351e-01 -9.39712340e-01]\n", + " [-3.760DEBUG:root:optics_fp: cphi: [-0.71462647 -0.76465055 -0.81663789 -0.86852682 -0.91713533 -0.95822269\n", + " -0.98707045 -0.99965519 -0.71462647 -0.66170459 -0.59665476 -0.51729759\n", + " -0.42196448 -0.31030314 -0.18420747 -0.04836971 -0.99965519 -0.99953644\n", + " -0.99934473 -0.99900557 -0.99831831 -0.99657638 -0.98967281 -0.87090507\n", + " -0.04836971 -0.05610053 -0.06679051 -0.08253363 -0.10799424 -0.15602533\n", + " -0.27837409 -0.87090507 -0.73594733 -0.79879708 -0.86266587 -0.92216881\n", + " -0.96955698 -0.99635146 -0.69307094 -0.62034596 -0.5272064 -0.41033606\n", + " -0.26919173 -0.10843276 -0.99959581 -0.99940041 -0.99902199 -0.99813478\n", + " -0.99516407 -0.96924606 -0.05196415 -0.06335735 -0.0811815 -0.11297393\n", + " -0.18526317 -0.48452029 -0.71462988 -0.71462988 -0.86931637 -0.86931637\n", + " -0.71508845 -0.64388103 -0.55091667 -0.43180852 -0.28504096 -0.11526196\n", + " -0.78075859 -0.71676907 -0.62767848 -0.50476226 -0.34135833 -0.1402609\n", + " -0.84875703 -0.7971706 -0.71938094 -0.60051365 -0.4226937 -0.17893311\n", + " -0.91338303 -0.87922117 -0.82275039 -0.7239943 -0.54602022 -0.24622747\n", + " -0.96582068 -0.95066579 -0.92326613 -0.86731478 -0.73433428 -0.38842227\n", + " -0.99588139 -0.99392405 -0.99016821 -0.98152333 -0.95403253 -0.77825973]\n", + "4907594]\n", + " [32.25858043 13.37307597]\n", + " [32.25801258 7.997076 ]\n", + " [32.25744472 2.62107603]\n", + " [30.36298443 31.3987763 ]\n", + " [24.98698446 31.39934415]\n", + " [19.61098448 31.399912 ]\n", + " [14.23498451 31.40047985]\n", + " [ 8.85898454 31.40104771]\n", + " [ 3.48298457 31.40161556]\n", + " [30.35974431 0.72377647]\n", + " [24.98374433 0.72434432]\n", + " [19.60774436 0.72491217]\n", + " [14.23174439 0.72548003]\n", + " [ 8.85574442 0.72604788]\n", + " [ 3.47974445 0.72661573]\n", + " [ 1.58528416 29.504316 ]\n", + " [ 1.5847163 24.12831603]\n", + " [ 1.58414845 18.75231606]\n", + " [ 1.5835806 13.37631609]\n", + " [ 1.58301275 8.00031612]\n", + " [ 1.5824449 2.62431615]\n", + " [32.26048441 31.39857587]\n", + " [32.26048441 31.39857587]\n", + " [ 1.58224447 0.72681616]\n", + " [ 1.58224447 0.72681616]\n", + " [30.36278399 29.50127631]\n", + " [24.98678403 29.50184416]\n", + " [19.61078405 29.50241201]\n", + " [14.23478409 29.50297987]\n", + " [ 8.858784164355e-02 3.57305636e-01 -9.33230110e-01]\n", + " [-8.86980837e-03 3.78775136e-01 -9.25446229e-01]\n", + " [-3.03563828e-02 1.17597746e-01 -9.92597230e-01]\n", + " [-3.03563828e-02 1.17597746e-01 -9.92597230e-01]\n", + " [ 1.30114828e-03 3.86251607e-01 -9.22392543e-01]\n", + " [ 1.30114828e-03 3.86251607e-01 -9.22392543e-01]\n", + " [-2.86344207e-02 1.32947109e-01 -9.90709411e-01]\n", + " [-5.06740578e-02 1.57797501e-01 -9.86170415e-01]\n", + " [-7.30127624e-02 1.83166389e-01 -9.80366876e-01]\n", + " [-9.55235032e-02 2.08869107e-01 -9.73267156e-01]\n", + " [-1.18077614e-01 2.34730767e-01 -9.64862241e-01]\n", + " [-1.40544813e-01 2.60584758e-01 -9.55166341e-01]\n", + " [-1.54433192e-03 1.52626376e-01 -9.88282755e-01]\n", + " [-2.35236325e-02 1.78003855e-01 -9.83748579e-01]\n", + " [-4.58571150e-02 2.03844943e-01 -9.77928609e-01]\n", + " [-6.84181950e-02 2.29966747e-01 -9.70790526e-01]\n", + " [-9.10779113e-02 2.56195572e-01 -9.62324604e-01]\n", + " [-1.13704881e-01 2.82364775e-01 -9.52544662e-01]\n", + " [ 2.60378908e-02 1.72729316e-01 -9.84625112e-01]\n", + " [ 4.16319698e-03 1.98568294e-01 -9.801 29.50354772]\n", + " [ 3.48278414 29.50411557]\n", + " [30.36221615 24.12527634]\n", + " [24.98621618 24.12584419]\n", + " [19.6102162 24.12641204]\n", + " [14.23421623 24.1269799 ]\n", + " [ 8.85821626 24.12754775]\n", + " [ 3.48221629 24.1281156 ]\n", + " [30.36164829 18.74927637]\n", + " [24.98564832 18.74984422]\n", + " [19.60964835 18.75041208]\n", + " [14.23364838 18.75097993]\n", + " [ 8.85764841 18.75154778]\n", + " [ 3.48164844 18.75211563]\n", + " [30.36108043 13.3732764 ]\n", + " [24.98508046 13.37384425]\n", + " [19.60908049 13.3744121 ]\n", + " [14.23308053 13.37497996]\n", + " [ 8.85708056 13.37554781]\n", + " [ 3.48108059 13.37611567]\n", + " [30.36051258 7.99727643]\n", + " [24.98451261 7.99784428]\n", + " [19.60851265 7.99841214]\n", + " [14.23251268 7.99897999]\n", + " [ 8.85651271 7.99954784]\n", + " [ 3.48051273 8.00011569]\n", + " [30.35994473 2.62127646]\n", + " [24.98394476 2.62184431]\n", + " [19.60794479 2.62241216]\n", + " [14.23194482 2.62298002]\n", + " [ 8.85594485 2.62354787]\n", + " [ 3.47994488 2.62411572]]\n", + "DEBUG:root:optics_fp: xyfp shape: (96, 2)\n", + "078211e-01]\n", + " [-1.81206588e-02 2.24820162e-01 -9.74231767e-01]\n", + " [-4.06879102e-02 2.51303817e-01 -9.67052DEBUG:root:optics_fp: xyfp shape: (96, 2)\n", + "DEBUG:root:radec2pix: fitpx: [[4271.49999987 4155.49999987]\n", + " [4271.49999978 3863.07142838]\n", + " [4271.49999978 3570.64285699]\n", + " [4271.50000021 3278.21428583]\n", + " [4271.50000028 2985.78571441]\n", + " [4271.50000021 2693.35714292]\n", + " [4271.50000016 2400.92857146]\n", + " [4271.5 2108.5 ]\n", + " [4271.49999987 4155.49999987]\n", + " [3979.07142882 4155.50000028]\n", + " [3686.64285714 4155.5 ]\n", + " [3394.2142857 4155.49999997]\n", + " [3101.78571428 4155.49999999]\n", + " [2809.35714281 4155.49999986]\n", + " [2516.92857145 4155.50000014]\n", + " [2224.49999999 4155.4999997 ]\n", + " [4271.5 2108.5 ]\n", + " [3979.0714288 2108.50000001]\n", + " [3686.64285693 2108.49999999]\n", + " [3394.21428614 2108.50000002]\n", + " [3101.7857146 2108.50000002]\n", + " [2809.35714263 2108.49999998]\n", + " [2516.92857131 2108.49999998]\n", + " [2224.49999992 2108.49999995]\n", + " [2224.49999999 4155.4999997 ]\n", + " [2224.50000001 3863.07142868]\n", + " [2224.5 3570.64285711]\n", + " [2224.50000002 3278.21428594]\n", + " [2224.50000001 2985.78571436]\n", + " [2224.49999998 2693.35714271]DEBUG:root:optics_fp: xyfp: [[ -0.172993 31.426621 ]\n", + " [ -0.172993 27.04019243]\n", + " [ -0.172993 22.65376385]\n", + " [ -0.172993 18.26733528]\n", + " [ -0.172993 13.88090671]\n", + " [ -0.172993 9.49447814]\n", + " [ -0.172993 5.10804957]\n", + " [ -0.172993 0.721621 ]\n", + " [ -0.172993 31.426621 ]\n", + " [ -4.55942157 31.426621 ]\n", + " [ -8.94585014 31.426621 ]\n", + " [-13.33227871 31.426621 ]\n", + " [-17.71870729 31.426621 ]\n", + " [-22.10513586 31.426621 ]\n", + " [-26.49156443 31.426621 ]\n", + " [-30.877993 31.426621 ]\n", + " [ -0.172993 0.721621 ]\n", + " [ -4.55942157 0.721621 ]\n", + " [ -8.94585014 0.721621 ]\n", + " [-13.33227872 0.721621 ]\n", + " [-17.71870728 0.721621 ]\n", + " [-22.10513586 0.721621 ]\n", + " [-26.49156443 0.721621 ]\n", + " [-30.877993 0.721621 ]\n", + " [-30.877993 31.426621 ]\n", + " [-30.877993 27.04019243]\n", + " [-30.877993 22.65376385]\n", + " [-30.877993 18.26733529]\n", + " [-30.877993 13.88090671]\n", + " [-30.877993 9.49447814]\n", + " [-30.877993 5.10804957]\n", + " [-30.877993 0.721621 ]\n", + " [ -0.187993 29.514121 ]\n", + " [ -0.187993 24.138121 ]\n", + " [ -0.187993 18.76212101]\n", + " [ -0.187993 13.386121 ]\n", + " [ -0.187993 8.010121 ]\n", + " [ -0.187993 2.634121 ]\n", + " [ -2.085493 31.411621 ]\n", + " [ -7.461493 31.411621 ]\n", + " [-12.837493 31.411621 ]\n", + " [-18.213493 31.411621 ]\n", + " [-23.589493 31.411621 ]\n", + " [-28.965493 31.411621 ]\n", + " [ -2.085493 0.736621 ]\n", + " [ -7.461493 0.736621 ]\n", + " [-12.837493 0.736621 ]\n", + " [-18.213493 0.736621 ]\n", + " [-23.58949299 0.736621 ]\n", + " [-28.965493 0.736621 ]\n", + " [-30.862993 29.514121 ]\n", + " [-30.862993 24.138121 ]\n", + " [-30.862993 18.762121 ]\n", + " [-30.862993 13.386121 ]\n", + " [-30.862993 8.010121 ]\n", + " [-30.862993 2.634121 ]\n", + " [ -0.187993 31.411621 ]\n", + " [ -0.187993 31.411621 ]\n", + " [-30.862993 0.736621 ]\n", + " [-30.862993 0.736621 ]\n", + " [ -2.085493 29.514121 ]\n", + " [ -7.461493 29.514121 ]\n", + " [-12.837493 29.514121 ]\n", + " [-18.213493 29.514121 ]\n", + " [-23.589493 29.514121 ]\n", + " [-28.965493 29.514121 ]\n", + " [ -2.085493 24.138121 ]\n", + " [ -7.461493 24.138121 ]\n", + "DEBUG:root:mm_to_pix: fitpx: [[0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]]\n", + "\n", + " [2224.50000001 2400.92857146]\n", + " [2224.49999992 2108.49999995]\n", + " [4270.5 4028. ]\n", + " [4270.50000018 3669.60000013]\n", + " [4270.49999988 3311.19999993]\n", + " [4270.50000028 2952.80000012]\n", + " [4270.5 2594.4 ]\n", + " [4270.50000006 2236.00000001]\n", + " [4143.99999986 4154.49999985]\n", + " [3785.60000014 4154.50000018]\n", + " [3427.20000004 4154.50000006]\n", + " [3068.8 4154.49999999]\n", + " [2710.39999994 4154.49999977]\n", + " [2351.99999997 4154.49999974]\n", + " [4144.00000019 2109.50000001]\n", + " [3785.59999998 2109.5 ]\n", + " [3427.19999968 2109.49999999]\n", + " [3068.80000035 2109.50000002]\n", + " [2710.39999998 2109.5 ]\n", + " [2351.99999973 2109.49999993]\n", + " [2225.50000001 4028.00000029]\n", + " [2225.50000001 3669.60000014]\n", + " [2225.50000002 3311.20000027]\n", + " [2225.50000003 2952.80000024]\n", + " [2225.49999999 2594.39999997]\n", + " [2225.49999991 2235.99999983]\n", + " [4270.50000028 4154.50000027]\n", + " [4270.50000028 4154.50000027]\n", + " [2225.50000021 2109.50000012]\n", + " [2225.50000021 2109.50000012]\n", + " [4143.99999997 4027.99999997]\n", + " [3785.60000006 4028.00000007]\n", + " [3427.20000002 4028.00000003]\n", + " [3068.8 4028.00000001]\n", + " [2710.40000007 4028.00000025]\n", + " [2352. 4028.00000001]\n", + " [4143.99999988 3669.5999999 ]\n", + " [3785.59999992 3669.59999992]\n", + " [3427.20000003 3669.60000003]\n", + " [3068.79999996 3669.59999994]\n", + " [2710.39999994 3669.59999984]\n", + " [2352.00000003 3669.60000024]\n", + " [4143.99999986 3311.19999992]\n", + " [3785.60000024 3311.20000018]\n", + " [3427.19999985 3311.19999985]\n", + " [3068.80000018 3311.20000023]\n", + " [2710.39999997 3311.19999993]\n", + " [2351.99999998 3311.19999989]\n", + " [4144.00000009 2952.80000004]\n", + " [3785.60000017 2952.80000009]\n", + " [3427.19999999 2952.79999999]\n", + " [3068.79999994 2952.79999994]\n", + " [2710.40000012 2952.80000019]\n", + " [2351.99999999 2952.79999997]\n", + " [4143.99999998 2594.4 ]\n", + " [3785.60000016 2594.40000005]\n", + " [3427.20000028 2594.40000012]\n", + " [3068.79999967 2594.39999981]\n", + " [2710.40000007 2594.40000006]\n", + " [2351.99999992 2594.39999981]\n", + " [4143.99999971 2235.99999997]\n", + " [3785.59999981 2235.99999998]\n", + " [3427.2 2236. ]\n", + " [3068.79999989 2235.99999998]\n", + " [2710.40000023 2236.00000007]\n", + " [2352.00000024 2236.00000019]]\n", + "DEBUG:root:optics_fp: sphi: [-0.69950626 -0.64444513 -0.57715037 -0.49564218 -0.39857594 -0.28602322\n", + " -0.16028704 -0.02625833 -0.69950626 -0.74976466 -0.80249804 -0.85580559\n", + " -0.90661236 -0.95063766 -0.98288738 -0.9988295 -0.02625833 -0.03044512\n", + " -0.03619555 -0.04458562 -0.05797023 -0.08267725 -0.1433448 -0.49145128\n", + " -0.9988295 -0.99842512 -0.99776702 -0.99658828 -0.99415152 -0.98775305\n", + " -0.96047273 -0.49145128 -0.67703879 -0.60160056 -0.50577425 -0.38678764\n", + " -0.24486582 -0.08534494 -0.72086938 -0.78432831 -0.84973726 -0.91193438\n", + " -0.96308661 -0.99410379 -0.02842926 -0.03462403 -0.04421613 -0.06104888\n", + " -0.09822663 -0.24609363 -0.99864895 -0.99799091 -0.99669933 -0.99359795\n", + " -0.98268894 -0.87478002 -0.69950278 -0.69950278 -0.49425605 -0.49425605\n", + " -0.69903398 -0.76512562 -0.83456026 -0.9019653 -0.95851534 -0.99333513\n", + " -0.6248328 -0.69731062 -0.77847269 -0.8632584 -0.93993324 -0.99011458\n", + " -0.52878304 -0.60375411 -0.69461576 -0.79961451 -0.90627261 -0.98386124\n", + " -0.40710127 -0.47641382 -0.56840284 -0.68980596 -0.837772 -0.96921207\n", + " -0.2592DEBUG:root:mm_to_pix: fitpx.shape: (96, 2)\n", + "DEBUG:root:fitpix2pix: ccdpx: shape: (96, 2)\n", + "680e-01]\n", + " [-6.34097178e-02 2.77846263e-01 -9.58530470e-01]\n", + " [-8.61539411e-02 3.04280184e-01 -9.48678591e-01]\n", + " [ 5.39528028e-02 1.93102342e-01 -9.79694126e-01]\n", + " [ 3.22277530e-02 2.19338841e-01 -9.75116324e-01]\n", + " [ 1.00390653e-02 2.45941623e-01 -9.69232653e-01]\n", + " [-1.24887392e-02 2.72730819e-01 -9.62009320e-01]\n", + " [-3.52275105e-02 2.99533416e-01 -9.53435239e-01]\n", + " [-5.80449265e-02 3.26180864e-01 -9.43523625e-01]\n", + " [ 8.20393692e-02 2.13601856e-01 -9.73469973e-01]\n", + " [ 6.05088966e-02 2.40173071e-01 -9.68842386e-01]\n", + " [ 3.84610981e-02 2.67067511e-01 -9.62910011e-01]\n", + " [ 1.60189318e-02 2.94105740e-01 -9.55638639e-01]\n", + " [-6.69069599e-03 3.21114076e-01 -9.47016887e-01]\n", + " [-2.95359627e-02 3.47922422e-01 -9.37057957e-01]\n", + " [ 1.10134733e-01 2.34092873e-01 -9.65955934e-01]\n", + " [ 8.88426230e-02 2.60936138e-01 -9.61259237e-01]\n", + " [ 6.69804427e-02 2.88062439e-01 -9.55266272e-01]\n", + " [ 4.46695226e-02 3.15291997e-01 -924.16964747]\n", + " [ 7.46147171 -24.16950786]\n", + " [ 12.83747171 -24.16936824]\n", + " [ 18.21347171 -24.16922862]\n", + " [ 23.58947171 -24.16908901]\n", + " [ 28.9654717 -24.16894939]\n", + " [ 2.0853321 -18.79364747]\n", + " [ 7.46133209 -18.79350785]\n", + " [ 12.83733209 -18.79336824]\n", + " [ 18.21333209 -18.79322862]\n", + " [ 23.58933209 -18.79308901]\n", + " [ 28.96533209 -18.79294939]\n", + " [ 2.08519248 -13.41764748]\n", + " [ 7.46119248 -13.41750786]\n", + " [ 12.83719247 -13.41736824]\n", + " [ 18.21319248 -13.41722863]\n", + " [ 23.58919247 -13.41708901]\n", + " [ 28.96519247 -13.41694939]\n", + " [ 2.08505286 -8.04164748]\n", + " [ 7.46105286 -8.04150786]\n", + " [ 12.83705286 -8.04136825]\n", + " [ 18.21305286 -8.04122863]\n", + " [ 23.58905286 -8.04108901]\n", + " [ 28.96505285 -8.04094939]\n", + " [ 2.08491324 -2.66564748]\n", + " [ 7.46091324 -2.66550786]\n", + " [ 12.83691324 -2.66536825]\n", + " [ 18.21291324 -2.66522863]\n", + " [ 23.58891323 -2.66508901]\n", + " [ 28.96491324 -2.66494939]]\n", + "1116 -0.31021694 -0.38416098 -0.49776006 -0.67878801 -0.92148149\n", + " -0.09066564 -0.11006805 -0.13988178 -0.19134252 -0.29970307 -0.6279425 ]\n", + " [-12.DEBUG:root:radec2pix: xyfp Shape: (96, 2)\n", + "837493 24.138121 ]\n", + " [-18.213493 24.138121 ]\n", + " [-23.589493 24.138121 ]\n", + " [-28.965493 24.138121 ]\n", + " [ -2.085493 18.762121 ]\n", + " [ -7.461493 18.762121 ]\n", + " [-12.837493 18.762121 ]\n", + " [-18.213493 18.762121 ]\n", + " [-23.589493 18.762121 ]\n", + " [-28.965493 18.762121 ]\n", + " [ -2.085493 13.386121 ]\n", + " [ -7.461493 13.386121 ]\n", + " [-12.837493 13.386121 ]\n", + " [-18.213493 13.386121 ]\n", + " [-23.589493 13.386121 ]\n", + " [-28.965493 13.386121 ]\n", + " [ -2.085493 8.010121 ]\n", + " [ -7.461493 8.010121 ]\n", + " [-12.837493 8.010121 ]\n", + " [-18.213493 8.010121 ]\n", + " [-23.589493 8.010121 ]\n", + " [-28.965493 8.010121 ]\n", + " [ -2.085493 2.634121 ]\n", + " [ -7.461493 2.634121 ]\n", + " [-12.837493 2.634121 ]\n", + " [-18.213493 2.634121 ]\n", + " [-23.589493 2.634121 ]\n", + " [-28.965493 2.634121 ]]\n", + "DEBUG:root:fitpix2pix: visCut: True\n", + ".47942820e-01]\n", + " [ 2.20351433e-02 3.42450027e-01 -9.39277611e-01]\n", + " [-7.92005082e-04 3.69364911e-01 -9.29284098e-01]]\n", + "DEBUG:root:optics_fp: xyfp shape: (96, 2)\n", + "DEBUG:root:make_az_asym: xyp: [[32.275486 31.41357429]\n", + " [32.27502267 27.02714574]\n", + " [32.27455935 22.64071719]\n", + " [32.27409601 18.25428864]\n", + " [32.27363269 13.8678601 ]\n", + " [32.27316936 9.48143155]\n", + " [32.27270604 5.095003 ]\n", + " [32.27224271 0.70857446]\n", + " [32.275486 31.41357429]\n", + " [27.88905745 31.41403761]\n", + " [23.5026289 31.41450094]\n", + " [19.11620036 31.41496427]\n", + " [14.72977181 31.41542759]\n", + " [10.34334326 31.41589092]\n", + " [ 5.95691471 31.41635424]\n", + " [ 1.57048617 31.41681757]\n", + " [32.27224271 0.70857446]\n", + " [27.88581416 0.70903778]\n", + " [23.49938562 0.70950111]\n", + " [19.11295707 0.70996444]\n", + " [14.72652852 0.71042776]\n", + " [10.34009998 0.71089109]\n", + " [ 5.95367142 0.71135442]\n", + " [ 1.56724288 0.71181774]\n", + " [ 1.57048617 31.41681757]\n", + " [ 1.57002284 27.03038902]\n", + " [ 1.56955951 22.64396047]\n", + " [ 1.56909619 18.25753194]\n", + " [ 1.56863286 13.87110338]\n", + " [ 1.56816953 9.48467484]\n", + " [ 1.56770621 5.09824629]\n", + " [ 1.56724288 0.71181774]\n", + " [32.26028399 29.50107588]\n", + " [32.25971613 24.12507591]\n", + " [32.25914828 18.74907594]\n", + " [32.25858043 13.37307597]\n", + " [32.25801258 7.997076 ]\n", + " [32.25744472 2.62107603]\n", + " [30.36298443 31.3987763 ]\n", + " [24.98698446 31.39934415]\n", + " [19.61098448 31.399912 ]\n", + " [14.23498451 31.40047985]\n", + " [ 8.85898454 31.40104771]\n", + " [ 3.48298457 31.40161556]\n", + " [30.35974431 0.72377647]\n", + " [24.98374433 0.72434432]\n", + " [19.60774436 0.72491217]\n", + " [14.23174439 0.72548003]\n", + " [ 8.85574442 0.72604788]\n", + " [ 3.47974445 0.72661573]\n", + " [ 1.58528416 29.504316 ]\n", + " [ 1.5847163 24.12831603]\n", + " [ 1.58414845 18.75231606]\n", + " [ 1.5835806 13.37631609]\n", + " [ 1.58301275 8.00031612]\n", + " [ 1.5824449 2.62431615]\n", + " [32.26048441 31.39857587]\n", + " [32.26048441 31.39857587]\n", + " [ 1.58224447 0.72681616]\n", + " [ 1.58224447 0.72681616]\n", + " [30.36278399 29.50127631]\n", + " [24.98678403 29.50184416]\n", + " [19.61078405 29.50241201]\n", + " [14.23478409 29.50297987]\n", + " [ 8.85878411 29.50354772]\n", + " [ 3.48278414 29.50411557]\n", + " [30.36221615 24.12527634]\n", + " [24.98621618 24.12584419]\n", + " [19.6102162 24.12641204]\n", + " [14.23421623 24.1269799 ]\n", + " [ 8.85821626 24.12754775]\n", + " [ 3.482DEBUG:root:make_az_asym: xyp: [[32.2358199 31.31614388]\n", + " [32.23338667 26.92971599]\n", + " [32.23095344 22.54328809]\n", + " [32.2285202 18.15686019]\n", + " [32.22608698 13.7704323 ]\n", + " [32.22365375 9.3840044 ]\n", + " [32.22122051 4.99757651]\n", + " [32.21878728 0.61114861]\n", + " [32.2358199 31.31614388]\n", + " [27.849392 31.31857712]\n", + " [23.46296411 31.32101035]\n", + " [19.07653621 31.32344358]\n", + " [14.69010831 31.3258768 ]\n", + " [10.30368042 31.32831004]\n", + " [ 5.91725252 31.33074327]\n", + " [ 1.53082462 31.3331765 ]\n", + " [32.21878728 0.61114861]\n", + " [27.83235938 0.61358184]\n", + " [23.44593149 0.61601507]\n", + " [19.0595036 0.6184483 ]\n", + " [14.6730757 0.62088153]\n", + " [10.2866478 0.62331476]\n", + " [ 5.90021991 0.625748 ]\n", + " [ 1.513792 0.62818122]\n", + " [ 1.53082462 31.3331765 ]\n", + " [ 1.52839139 26.94674861]\n", + " [ 1.52595816 22.5603207 ]\n", + " [ 1.52352493 18.17389281]\n", + " [ 1.5210917 13.78746492]\n", + " [ 1.51865847 9.40103702]\n", + " [ 1.51622524 5.01460912]\n", + " [ 1.513792 0.62818122]\n", + " [32.219759 29.4036525 ]\n", + " [32.21677684 24.02765333]\n", + " [32.21379467 18.65165415]\n", + " [32.21081251 13.27565498DEBUG:root:radec2pix: curVec: [[-0.68313159 -0.30141733 0.66519082]\n", + " [-0.66243832 -0.3086161 0.68259181]\n", + " [-0.6407964 -0.31570949 0.69979103]\n", + " [-0.61826327 -0.32265558 0.71668955]\n", + " [-0.59490271 -0.32941573 0.73319578]\n", + " [-0.57078646 -0.33595423 0.74922464]\n", + " [-0.5459952 -0.34223832 0.76469744]\n", + " [-0.52061857 -0.3482384 0.77954238]\n", + " [-0.68313159 -0.30141733 0.66519082]\n", + " [-0.68232411 -0.32790171 0.65338678]\n", + " [-0.68087539 -0.35405315 0.64113576]\n", + " [-0.67879702 -0.37977425 0.62849513]\n", + " [-0.67610653 -0.40497217 0.61553026]\n", + " [-0.67282704 -0.42955872 0.60231477]\n", + " [-0.66898695 -0.4534501 0.58893078]\n", + " [-0.66461985 -0.47656661 0.57546914]\n", + " [-0.52061857 -0.3482384 0.77954238]\n", + " [-0.51988967 -0.37560216 0.76722731]\n", + " [-0.51869437 -0.40254182 0.75426536]\n", + " [-0.51704404 -0.42895595 0.74071739]\n", + " [-0.5149558 -0.45475035 0.72665166]\n", + " [-0.51245226 -0.47983829 0.71214317]\n", + " [-0.50956121 -0.50413974 0.69727361]\n", + " [-0.50631563 -0.5275798 0.68213198]\n", + " [-0.66461985 -0.47656661 0.5754621629 24.1281156 ]\n", + " [30.36164829 18.74927637]\n", + " [24.98564832 18.74984422]\n", + " [19.60964835 18.75041208]\n", + " [14.23364838 18.75097993]\n", + " [ 8.85764841 18.75154778]\n", + " [ 3.48164844 18.75211563]\n", + " [30.36108043 13.3732764 ]\n", + " [24.98508046 13.37384425]\n", + " [19.60908049 13.3744121 ]\n", + " [14.23308053 13.37497996]\n", + " [ 8.85708056 13.37554781]\n", + " [ 3.48108059 13.37611567]\n", + " [30.36051258 7.99727643]\n", + " [24.98451261 7.99784428]\n", + " [19.60851265 7.99841214]\n", + " [14.23251268 7.99897999]\n", + " [ 8.85651271 7.99954784]\n", + " [ 3.48051273 8.00011569]\n", + " [30.35994473 2.62127646]\n", + " [24.98394476 2.62184431]\n", + " [19.60794479 2.62241216]\n", + " [14.23194482 2.62298002]\n", + " [ 8.85594485 2.62354787]\n", + " [ 3.47994488 2.62411572]]\n", + "DEBUG:root:radec2pix: curVec Shape: (96, 3)\n", + "914]\n", + " [-0.64435368 -0.48498787 0.59126568]\n", + " [-0.62319182 -0.49309832 0.60703048]\n", + " [-0.60119601 -0.5008544 0.62266221]\n", + " [-0.57843372 -0.50821582 0.63806827]\n", + " [-0.55497849 -0.51514554 0.65316457]\n", + " [-0.5309103 -0.52161005 0.66787514]\n", + " [-0.50631563 -0.5275798 0.68213198]\n", + " [-0.67422DEBUG:root:mm_to_pix: fitpx: [[0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]]\n", + "768 -0.30465753 0.67275614]\n", + " [-0.64822104 -0.31341586 0.69395964]\n", + " [-0.62084595 -0.3219737 0.71476097]]\n", + " [32.20783035 7.89965581]\n", + " [32.20484818 2.52365664]\n", + " [30.32331188 31.30220479]\n", + " [24.9473127 31.30518695]\n", + " [19.57131353 31.30816912]\n", + " [14.19531435 31.31115127]\n", + " [ 8.81931518 31.31413344]\n", + " [ 3.44331601 31.3171156 ]\n", + " [30.3062959 0.62720951]\n", + " [24.93029672 0.63019167]\n", + " [19.55429755 0.63317383]\n", + " [14.17829838 0.636156 ]\n", + " [ 8.80229921 0.63913816]\n", + " [ 3.42630004 0.64212033]\n", + " [ 1.54476372 29.42066847]\n", + " [ 1.54178156 24.0446693 ]\n", + " [ 1.53879939 18.66867013]\n", + " [ 1.53581723 13.29267096]\n", + " [ 1.53283507 7.91667178]\n", + " [ 1.5298529 2.54067261]\n", + " [32.22081158 31.30115221]\n", + " [32.22081158 31.30115221]\n", + " [ 1.52880032 0.6431729 ]\n", + " [ 1.52880032 0.6431729 ]\n", + " [30.32225929 29.40470508]\n", + " [24.94626012 29.40768724]\n", + " [19.57026095 29.41066941]\n", + " [14.19426178 29.41365157]\n", + " [ 8.8182626 29.41663373]\n", + " [ 3.44226343 29.4196159 ]\n", + " [30.31927713 24.02870591]\n", + " [24.94327796 24.03168807]\n", + " [19.56727878 24.03467023]\n", + " [14.19127961 24.0376524 ]\n", + " [ 8.81528044 24.04063456]\n", + " [ 3.43928127 24.04361672]\n", + " [30.31629496 18.65270673]\n", + " [-0.59221712 -0.33025857 0.73498855]\n", + " [-0.56246673 -0.33820474 0.75448574]\n", + " [-0.53174706 -0.34575317 0.77311047]\n", + " [-0.68278976 -0.31302425 0.66016207]\n", + " [-0.6813678 -0.34527305 0.64538705]\n", + " [-0.67899358 -0.3769244 0.6299966 ]\n", + " [-0.67569695 -0.40780546 0.61410776]\n", + " [-0.67152044 -0.43775385 0.59785606]\n", + " [-0.66651846 -0.46661702 0.58139633]\n", + " [-0.52044624 -0.36019447 0.77420646]\n", + " [-0.51923799 -0.3934594 0.75867095]\n", + " [-0.51733965 -0.42598581 0.74222353]\n", + " [-0.5147804 -0.45759725 0.72498683]\n", + " [-0.51160181 -0.48813395 0.70709889]\n", + " [-0.50785721 -0.51745079 0.6887131 ]\n", + " [-0.65591318 -0.48019576 0.58240015]\n", + " [-0.63046453 -0.49031307 0.60175374]\n", + " [-0.60373117 -0.49992 0.62095787]\n", + " [-0.5758349 -0.50894102 0.63983842]\n", + " [-0.54691117 -0.517308 0.65824054]\n", + " [-0.51710992 -0.52496085 0.67602769]\n", + " [-0.68306084 -0.3015331 0.665211 ]\n", + " [-0.68306084 -0.3015331 0.665211 ]\n", + " [-0.50641219 -0.52748165 0.6821362 ]\n", + " [-0.50641219 -0.52748165 0.6821362 ]\n", + " [-0.67395665 -0.31619338 0.66768568]\n", + " [-0.67254239 -0.34856162 0.65283347]\n", + " [-0.67018724 -0.38032124 0.63734199]\n", + " [-0.66692142 -0.41129916 0.62132827]\n", + " [-0.66278786 -0.44133307 0.60492758]\n", + " [-0.65784122 -0.47027079 0.5882944 ]\n", + " [-0.64795063 -0.32506418 0.68883471]\n", + " [-0.64656159 -0.35773161 0.67378498]\n", + " [-0.64426686 -0.3897602 0.65803282]\n", + " [-0.6410976 -0.42097594 0.64169551]\n", + " [-0.63709779 -0.45121689 0.62490778]\n", + " [-0.63232286 -0.48033218 0.607823 ]\n", + " [-0.62057692 -0.33371322 0.70959128]\n", + " [-0.61921874 -0.36662111 0.69437534]\n", + " [-0.61699503 -0.39886212 0.67839969]\n", + " [-0.61393749 -0.43026124 0.66178246]\n", + " [-0.61009071 -0.46065699 0.64465841]\n", + " [-0.60551066 -0.48990008 0.62717999]\n", + " [-0.59195028 -0.34206741 0.72978404]\n", + " [-0.59062925 -0.37515551 0.71443364]\n", + " [-0.58848836 -0.40755128 0.69827172]\n", + " [-0.58555927 -0.43907885 0.68141771]\n", + " [-0.58188653 -0.46957726 0.66400698]\n", + " [-0.57752604 -0.49889881 0.64619165]\n", + " [-0.56220295 -0.35006035 0.74925669]\n", + " [-0.5609256 -0.38326663 0.73380458]\n", + " [-0.55887984 -0.41575834 0.71749448]\n", + " [-0.55609663 -0.44735904 0.7004473 ]\n", + " [-0.55261969 -0.47790832 0.68279947]\n", + " [-0.54850419 -0.50725986 0.66470339]\n", + " [-0.53148719 -0.35763236 0.76786748]\n", + " [-0.53025987 -0.39089333 0.75234758]\n", + " [-0.52832113 -0.42342127 0.73592881]\n", + " [-0.52570068 -0.45503967 0.71873339]\n", + " [-0.52244074 -0.4855886 0.70089898]\n", + " [-0.51859518 -0.51492273 0.68257866]]\n", + "DEBUG:root:make_az_asym: xyp: shape: (96, 2)\n", + "DEBUG:root:mm_to_pix: fitpx.shape: (96, 2)\n", + "\n", + " [24.9402958 18.6556889 ]\n", + " [19.56429662 18.65867106]\n", + " [14.18829744 18.66165322]\n", + " [ 8.81229827 18.66463538]\n", + " [ 3.4362991 18.66761755]\n", + " [30.31331281 13.27670756]\n", + " [24.93731363 13.27968972]\n", + " [19.56131446 13.28267189]\n", + " [14.18531529 13.28565406]\n", + " [ 8.80931611 13.28863621]\n", + " [ 3.43331694 13.29161838]\n", + " [30.31033064 7.90070839]\n", + " [24.93433147 7.90369055]\n", + " [19.55833229 7.90667271]\n", + " [14.18233312 7.90965488]\n", + " [ 8.80633395 7.91263704]\n", + " [ 3.43033477 7.9156192 ]\n", + " [30.30734847 2.52470921]\n", + " [24.9313493 2.52769138]\n", + " [19.55535013 2.53067354]\n", + " [14.17935096 2.53365571]\n", + " [ 8.80335178 2.53663787]\n", + " [ 3.42735261 2.53962004]]\n", + "DEBUG:root:radec2pix: curVec Shape: (96, 3)\n", + "DEBUG:root:radec2pix: xyfp: [[ 0.173161 -31.45819714]\n", + " [ 0.17304708 -27.07176857]\n", + " [ 0.17293316 -22.68534 ]\n", + " [ 0.17281925 -18.29891143]\n", + " [ 0.17270533 -13.91248287]\n", + " [ 0.17259141 -9.52605429]\n", + " [ 0.17247749 -5.13962573]\n", + " [ 0.17236358 -0.75319715]\n", + " [ 0.173161 -31.45819714]\n", + " [ 4.55958957 -31.45808322]\n", + " [ 8.94601814 -31.45796931]\n", + " [ 13.33244671 -31.45785538]\n", + " [ 17.71887528 -31.45774147]\n", + " [ 22.10530385 -31.45762756]\n", + " [ 26.49173242 -31.45751363]\n", + " [ 30.87816099 -31.45739971]\n", + " [ 0.17236358 -0.75319715]\n", + " [ 4.55879215 -0.75308323]\n", + " [ 8.94522072 -0.75296932]\n", + " [ 13.33164929 -0.7528554 ]\n", + " [ 17.71807786 -0.75274148]\n", + " [ 22.10450643 -0.75262756]\n", + " [ 26.490935 -0.75251364]\n", + " [ 30.87736356 -0.75239973]\n", + " [ 30.87816099 -31.45739971]\n", + " [ 30.87804707 -27.07097114]\n", + " [ 30.87793315 -22.68454257]\n", + " [ 30.87781924 -18.29811401]\n", + " [ 30.87770532 -13.9116DEBUG:root:optics_fp: xyfp: [[32.23341696 31.55141621]\n", + " [32.23194958 27.16498788]\n", + " [32.2304822 22.77855956]\n", + " [32.22901483 18.39213124]\n", + " [32.22754745 14.00570291]\n", + " [32.22608007 9.61927458]\n", + " [32.22461269 5.23284626]\n", + " [32.2231453 0.84641793]\n", + " [32.23341696 31.55141621]\n", + " [27.84698864 31.5528836 ]\n", + " [23.46056031 31.55435097]\n", + " [19.07413198 31.55581835]\n", + " [14.68770366 31.55728573]\n", + " [10.30127533 31.55875311]\n", + " [ 5.91484701 31.56022049]\n", + " [ 1.52841868 31.56168787]\n", + " [32.2231453 0.84641793]\n", + " [27.83671698 0.84788531]\n", + " [23.45028865 0.84935269]\n", + " [19.06386033 0.85082007]\n", + " [14.677432 0.85228745]\n", + " [10.29100367 0.85375483]\n", + " [ 5.90457535 0.85522221]\n", + " [ 1.51814702 0.85668959]\n", + " [ 1.52841868 31.56168787]\n", + " [ 1.5269513 27.17525955]\n", + " [ 1.52548392 22.78883122]\n", + " [ 1.52401654 18.4024029 ]\n", + " [ 1.52254916 14.01597457]\n", + " [ 1.52108178 9.62954624]\n", + " [ 1.5196144 5.24311792]\n", + " [ 1.51814702 0.85668959]\n", + " [32.21777718 29.63892134]\n", + " [32.21597876 24.26292164]\n", + " [32.21418034 18.88692194]\n", + " [32.21238193 13.51092224]\n", + "8544]\n", + " [ 30.87759141 -9.52525687]\n", + " [ 30.87747749 -5.1388283 ]\n", + " [ 30.87736356 -0.75239973]\n", + " [ 0.18811133 -29.54569675]\n", + " [ 0.18797171 -24.16969676]\n", + " [ 0.1878321 -18.79369675]\n", + " [ 0.18769248 -13.41769676]\n", + " [ 0.18755286 -8.04169676]\n", + " [ 0.18741324 -2.66569676]\n", + " [ 2.08566061 -31.44314748]\n", + " [ 7.46166061 -31.44300785]\n", + " [ 12.83766061 -31.44286824]\n", + " [ 18.2136606 -31.44272862]\n", + " [ 23.5896606 -31.442589 ]\n", + " [ 28.9656606 -31.44244938]\n", + " [ 2.08486397 -0.76814748]\n", + " [ 7.46086396 -0.76800786]\n", + " [ 12.83686396 -0.76786825]\n", + " [ 18.21286396 -0.76772863]\n", + " [ 23.58886395 -0.76758901]\n", + " [ 28.96486395 -0.7674494 ]\n", + " [ 30.86311132 -29.54490011]\n", + " [ 30.86297171 -24.16890011]\n", + " [ 30.86283209 -18.79290011]\n", + " [ 30.86269247 -13.41690011]\n", + " [ 30.86255285 -8.04090011]\n", + " [ 30.86241323 -2.66490012]\n", + " [ 0.18816061 -31.44319675]\n", + " [ 0.18816061 -31.44319675]\n", + " [ 30.86236396 -0.76740012]\n", + " [ 30.86236396 -0.76740012]\n", + " [ 2.08561133 -29.54564748]\n", + " [ 7.46161133 -29.54550785]\n", + " [ 12.83761133 -29.54536824]\n", + " [ 18.21 [32.21058351 8.13492254]\n", + " [32.20878509 2.75892284]\n", + " [30.32091205 31.53705599]\n", + " [24.94491236 31.53885442]\n", + " [19.56891265 31.54065283]\n", + " [14.19291295 31.54245125]\n", + " [ 8.81691325 31.54424967]\n", + " [ 3.44091356 31.54604808]\n", + " [30.31065043 0.86205771]\n", + " [24.93465073 0.86385613]\n", + " [19.55865103 0.86565455]\n", + " [14.18265134 0.86745297]\n", + " [ 8.80665163 0.86925139]\n", + " [ 3.43065193 0.8710498 ]\n", + " [ 1.5427789 29.64918296]\n", + " [ 1.54098048 24.27318326]\n", + " [ 1.53918206 18.89718357]\n", + " [ 1.53738364 13.52118387]\n", + " [ 1.53558522 8.14518416]\n", + " [ 1.5337868 2.76918446]\n", + " [32.21841195 31.53642123]\n", + " [32.21841195 31.53642123]\n", + " [ 1.53315204 0.87168457]\n", + " [ 1.53315204 0.87168457]\n", + " [30.32027729 29.6395561 ]\n", + " [24.94427759 29.64135452]\n", + " [19.56827789 29.64315294]\n", + " [14.19227819 29.64495136]\n", + " [ 8.81627849 29.64674978]\n", + " [ 3.44027879 29.6485482 ]\n", + " [30.31847887 24.2635564 ]\n", + " [24.94247917 24.26535482]\n", + " [19.56647947 24.26715324]\n", + " [14.19047977 24.26895166]\n", + " [ 8.81448007 24.27075007]\n", + " [ 3.43848037 24.2725485 ]\n", + " [30.31668045 18.8875567 ]\n", + " 361133 -29.54522862]\n", + " [ 23.58961132 -29.545089 ]\n", + " [ 28.96561132 -29.54494938]\n", + " [ 2.08547171 -24.16964747]\n", + " [ 7.46147171 -24.16950786]\n", + " [ 12.83747171 -24.16936824]\n", + " [ 18.21347171 -24.16922862]\n", + " [ 23.58947171 -24.16908901]\n", + " [ 28.9654717 -24.16894939]\n", + " [ 2.0853321 -18.79364747]\n", + " [ 7.46133209 -18.79350785]\n", + " [ 12.83733209 -18.79336824]\n", + " [ 18.21333209 -18.79322862]\n", + " [ 23.58933209 -18.79308901]\n", + " [ 28.96533209 -18.79294939]\n", + " [ 2.08519248 -13.41764748]\n", + " [ 7.46119248 -13.41750786]\n", + " [ 12.83719247 -13.41736824]\n", + " [ 18.21319248 -13.41722863]\n", + " [ 23.58919247 -13.41708901]\n", + " [ 28.96519247 -13.41694939]\n", + " [ 2.08505286 -8.04164748]\n", + " [ 7.46105286 -8.04150786]\n", + " [ 12.83705286 -8.04136825]\n", + " [ 18.21305286 -8.04122863]\n", + " [ 23.58905286 -8.04108901]\n", + " [ 28.96505285 -8.04094939]\n", + " [ 2.08491324 -2.66564748]\n", + " [ 7.46091324 -2.66550786]\n", + " [ 12.83691324 -2.66536825]\n", + " [ 18.21291324 -2.66522863]\n", + " [ 23.58891323 -2.66508901]\n", + " [ 28.96491324 -2.66494939]]\n", + "[24.94068075 18.88935513]\n", + " [19.56468105 18.89115354]\n", + " [14.18868135 18.89295196]\n", + " [ 8.81268165 18.89475038]\n", + " [ 3.43668195 18.89654879]\n", + " [30.31488203 13.51155701]\n", + " [24.93888233 13.51335542]\n", + " [19.56288263 13.51515384]\n", + " [14.18688293 13.51695226]\n", + " [ 8.81088324 13.51875068]\n", + " [ 3.43488354 13.5205491 ]\n", + " [30.31308361 8.13555731]\n", + " [24.93708392 8.13735572]\n", + " [19.56108422 8.13915414]\n", + " [14.18508451 8.14095256]\n", + " [ 8.80908482 8.14275098]\n", + " [ 3.43308512 8.1445494 ]\n", + " [30.31128519 2.75955761]\n", + " [24.93528549 2.76135602]\n", + " [19.5592858 2.76315444]\n", + " [14.18328609 2.76495286]\n", + " [ 8.8072864 2.76675128]\n", + " [ 3.4312867 2.7685497 ]]\n", + "DEBUG:root:make_az_asym: xyp: shape: (96, 2)\n", + "DEBUG:root:radec2pix: camVec: [[0.20622014 0.20805053 0.20961035 0.210899 0.21191543 0.21265818\n", + " 0.21312568 0.21331667 0.20622014 0.17982824 0.1527297 0.12503427\n", + " 0.09685185 0.06829276 0.03946812 0.01049004 0.21331667 0.18597713\n", + " 0.1579279 0.12927353 0.10011961 0.07057467 0.04075124 0.01076573\n", + " 0.01049004 0.01056977 0.01063642 0.01068985 0.01072978 0.01075592\n", + " 0.01076796 DEBUG:root:make_az_asym: xyp: [[ -0.172993 31.426621 ]\n", + " [ -0.172993 27.04019243]\n", + " [ -0.172993 22.65376385]\n", + " [ -0.172993 18.26733528]\n", + " [ -0.172993 13.88090671]\n", + " [ -0.172993 9.49447814]\n", + " [ -0.172993 5.10804957]\n", + " [ -0.172993 0.721621 ]\n", + " [ -0.172993 31.426621 ]\n", + " [ -4.55942157 31.426621 ]\n", + " [ -8.94585014 31.426621 ]\n", + " [-13.33227871 31.426621 ]\n", + " [-17.71870729 31.426621 ]\n", + " [-22.10513586 31.426621 ]\n", + " [-26.49156443 31.426621 ]\n", + " [-30.877993 31.426621 ]\n", + " [ -0.172993 0.721621 ]\n", + " [ -4.55942157 0.721621 ]\n", + " [ -8.94585014 0.721621 ]\n", + " [-13.33227872 0.721621 ]\n", + " [-17.71870728 0.721621 ]\n", + " [-22.10513586 0.721621 ]\n", + " [-26.49156443 0.721621 ]\n", + " [-30.877993 0.721621 ]\n", + " [-30.877993 31.426621 ]\n", + " [-30.877993 27.04019243]\n", + " [-30.877993 22.65376385]\n", + " [-30.877993 18.26733529]\n", + " [-30.877993 13.88090671]\n", + " [-30.877993 9.49447814]\n", + " [-30.877993 5.10804957]\n", + " [-30.877993 0.721621 ]\n", + " [ -0.187993 29.514121 ]\n", + " [ -0.187993 0.01076573 0.20696213 0.20902258 0.21067623 0.21192136\n", + " 0.21275532 0.21317532 0.1948134 0.16197729 0.1281888 0.09365018\n", + " 0.05856456 0.02313694 0.20149034 0.16749252 0.1325326 0.09680441\n", + " 0.0605079 0.02385188 0.01062602 0.01071595 0.0107859 0.01083545\n", + " 0.01086402 0.01087112 0.20613793 0.20613793 0.01086844 0.01086844\n", + " 0.19558949 0.1626169 0.12869151 0.09401511 0.05879055 0.02322296\n", + " 0.19753009 0.16421774 0.12995114 0.09493033 0.05935726 0.02343764\n", + " 0.19908829 0.16550536 0.13096617 0.09566871 0.05981412 0.02360896\n", + " 0.20026215 0.16647694 0.13173312 0.09622682 0.06015857 0.02373584\n", + " 0.20104857 0.16712825 0.13224724 0.09660024 0.06038739 0.02381698\n", + " 0.20144435 0.16745515 0.13250401 0.09678486 0.06049766 0.02385117]\n", + " [0.20255556 0.17610143 0.14895462 0.12122494 0.09302239 0.06445739\n", + " 0.03564119 0.00668594 0.20255556 0.20441077 0.20600074 0.2073248\n", + " 0.20838186 0.20917033 0.20968847 0.20993479 0.00668594 0.00675821\n", + " 0.00682246 0.00687853 0.00692617 0.0069651 0.00699507 0.00DEBUG:root:optics_fp: xyfp shape: (96, 2)\n", + "701584\n", + " 0.20993479 0.18250233 0.15437326 0.12565215 0.09644485 0.06686038\n", + " 0.03701177 0.00701584 0.19112005 0.15821703 0.12438266 0.08981934\n", + " 0.05473042 0.0193211 0.20330747 0.20540191 0.20709749 0.2083924\n", + " 0.20928375 0.20976841 0.00681796 0.00690216 0.00697398 0.00703299\n", + " 0.00707868 0.00711058 0.19806614 0.16396327 0.12891793 0.09312436\n", + " 0.05678335 0.02010461 0.2024732 0.2024732 0.00711848 0.00711848\n", + " 0.19190537 0.19387759 0.19547539 0.1966967 0.19753824 0.19799645\n", + " 0.15886347 0.1604891 0.1618095 0.16282181 0.16352163 0.16390447\n", + " 0.12488974 0.12616714 0.12720791 0.12800859 0.1285643 0.12887024\n", + " 0.09018615 0.09111203 0.09186896 0.09245358 0.0928614 0.09308815\n", + " 0.05495583 0.05552612 0.05599434 0.05635799 0.05661388 0.05675899\n", + " 0.01940412 0.01961547 0.01979108 0.01992994 0.02003078 0.02009239]\n", + " [0.95731108 0.96213474 0.96637261 0.96996192 0.9728508 0.97499833\n", + " 0.97637449 0.97696023 0.95731108 0.96222557 0.96655954 0.97024886DEBUG:root:radec2pix: xyfp: [[32.275486 31.41357429]\n", + " [32.27502267 27.02714574]\n", + " [32.27455935 22.64071719]\n", + " [32.27409601 18.25428864]\n", + " [32.27363269 13.8678601 ]\n", + " [32.27316936 9.48143155]\n", + " [32.27270604 5.095003 ]\n", + " [32.27224271 0.70857446]\n", + " [32.275486 31.41357429]\n", + " [27.88905745 31.41403761]\n", + " [23.5026289 31.41450094]\n", + " [19.11620036 31.41496427]\n", + " [14.72977181 31.41542759]\n", + " [10.34334326 31.41589092]\n", + " [ 5.95691471 31.41635424]\n", + " [ 1.57048617 31.41681757]\n", + " [32.27224271 0.70857446]\n", + " [27.88581416 0.70903778]\n", + " [23.49938562 0.70950111]\n", + " [19.11295707 0.70996444]\n", + " [14.72652852 0.71042776]\n", + " [10.34009998 0.71089109]\n", + " [ 5.95367142 0.71135442]\n", + " [ 1.56724288 0.71181774]\n", + " [ 1.57048617 31.41681757]\n", + " [ 1.57002284 27.03038902]\n", + " [ 1.56955951 22.64396047]\n", + " [ 1.56909619 18.25753194]\n", + " [ 1.56863286 13.87110338]\n", + " [ 1.56816953 9.48467484]\n", + " [ 1.56770621 5.09824629]\n", + " [ 1.56724288 0.71181774]\n", + " [32.26028399 29.50107588]\n", + " [32.25971613 24.12507591]\n", + " [32.25914828 18.74907594]\n", + " [32.25858043 13.37307597]\n", + "DEBUG:root:radec2pix: xyfp: [[ 0.173161 -31.45819714]\n", + " [ 0.17304708 -27.07176857]\n", + " [ 0.17293316 -22.68534 ]\n", + " [ 0.17281925 -18.29891143]\n", + " [ 0.17270533 -13.91248287]\n", + " [ 0.17259141 -9.52605429]\n", + " [ 0.17247749 -5.13962573]\n", + " [ 0.17236358 -0.75319715]\n", + " [ 0.173161 -31.45819714]\n", + " [ 4.55958957 -31.45808322]\n", + " [ 8.94601814 -31.45796931]\n", + " [ 13.33244671 -31.45785538]\n", + " [ 17.71887528 -31.45774147]\n", + " [ 22.10530385 -31.45762756]\n", + " [ 26.49173242 -31.45751363]\n", + " [ 30.87816099 -31.45739971]\n", + " [ 0.17236358 -0.75319715]\n", + " [ 4.55879215 -0.75308323]\n", + " [ 8.94522072 -0.75296932]\n", + " [ 13.33164929 -0.7528554 ]\n", + " [ 17.71807786 -0.75274148]\n", + " [ 22.10450643 -0.75262756]\n", + " [ 26.490935 -0.75251364]\n", + " [ 30.87736356 -0.75239973]\n", + " [ 30.87816099 -31.45739971]\n", + " [ 30.87804707 -27.07097114]\n", + " [ 30.87793315 -22.68454257]\n", + " [ 30.87781924 -18.29811401]\n", + " [ 30.87770532 -13.91168544]\n", + " [ 30.87759141 -9.52525687]\n", + " [ 30.87747749 -5.1388283 ]\n", + " [ 30.87736356 -0.75239973]\n", + " [ 0.18811133 -29.54569675]\n", + " [ 0.18797171 [32.25801258 7.997076 ]\n", + " [32.25744472 2.62107603]\n", + " [30.36298443 31.3987763 ]\n", + " [24.98698446 31.39934415]\n", + " [19.61098448 31.399912 ]\n", + " [14.23498451 31.40047985]\n", + " [ 8.85898454 31.40104771]\n", + " [ 3.48298457 31.40161556]\n", + " [30.35974431 0.72377647]\n", + " [24.98374433 0.72434432]\n", + " [19.60774436 0.72491217]\n", + " [14.23174439 0.72548003]\n", + " [ 8.85574442 0.72604788]\n", + " [ 3.47974445 0.72661573]\n", + " [ 1.58528416 29.504316 ]\n", + " [ 1.5847163 24.12831603]\n", + " [ 1.58414845 18.75231606]\n", + " [ 1.5835806 13.37631609]\n", + " [ 1.58301275 8.00031612]\n", + " [ 1.5824449 2.62431615]\n", + " [32.26048441 31.39857587]\n", + " [32.26048441 31.39857587]\n", + " [ 1.58224447 0.72681616]\n", + " [ 1.58224447 0.72681616]\n", + " [30.36278399 29.50127631]\n", + " [24.98678403 29.50184416]\n", + " [19.61078405 29.50241201]\n", + " [14.23478409 29.50297987]\n", + " [ 8.85878411 29.50354772]\n", + " [ 3.48278414 29.50411557]\n", + " [30.36221615 24.12527634]\n", + " [24.98621618 24.12584419]\n", + " [19.6102162 24.12641204]\n", + " [14.23421623 24.1269799 ]\n", + " [ 8.85821626 24.12754775]\n", + " [ 3.48221629 24.1281156 ]\n", + " [30.36164829 18.74927637]\n", + " DEBUG:root:radec2pix: camVec: [[-0.00108623 -0.00110818 -0.00112898 -0.00114857 -0.00116686 -0.00118378\n", + " -0.00119922 -0.00121312 -0.00108623 -0.03008973 -0.05897582 -0.08763213\n", + " -0.11594722 -0.14381054 -0.17111212 -0.19774215 -0.00121312 -0.0312253\n", + " -0.06111305 -0.09075893 -0.12004913 -0.1488739 -0.17712688 -0.20470344\n", + " -0.19774215 -0.19951656 -0.20103291 -0.2022905 -0.20328809 -0.20402394\n", + " -0.20449622 -0.20470344 -0.00119558 -0.00122271 -0.00124786 -0.00127089\n", + " -0.00129164 -0.00130994 -0.01373956 -0.04922259 -0.08441749 -0.11911871\n", + " -0.1531227 -0.18622706 -0.01430615 -0.05102028 -0.08743049 -0.12332566\n", + " -0.15850368 -0.19276957 -0.19845732 -0.20045757 -0.20206974 -0.20329178\n", + " -0.20412054 -0.20455274 -0.00118556 -0.00118556 -0.20461015 -0.20461015\n", + " -0.01379915 -0.04942232 -0.08475642 -0.11959564 -0.15373662 -0.18697743\n", + " -0.01395111 -0.04992687 -0.08561039 -0.12079486 -0.15527748 -0.18885795\n", + " -0.0140777 -0.05033965 -0.08630574 -0.12176792 -0.15652378 -0.19037482\n", + " -0.0141-24.16969676]\n", + " [ 0.1878321 -18.79369675]\n", + " [ 0.18769248 -13.41769676]\n", + " [ 0.18755286 -8.04169676]\n", + " [ 0.18741324 -2.66569676]\n", + " [ 2.08566061 -31.44314748]\n", + " [ 7.46166061 -31.44300785]\n", + " [ 12.83766061 -31.44286824]\n", + " [ 18.2136606 -31.44272862]\n", + " [ 23.5896606 -31.442589 ]\n", + " [ 28.9656606 -31.44244938]\n", + " [ 2.08486397 -0.76814748]\n", + " [ 7.46086396 -0.76800786]\n", + " [ 12.83686396 -0.76786825]\n", + " [ 18.21286396 -0.76772863]\n", + " [ 23.58886395 -0.76758901]\n", + " [ 28.96486395 -0.7674494 ]\n", + " [ 30.86311132 -29.54490011]\n", + " [ 30.86297171 -24.16890011]\n", + " [ 30.86283209 -18.79290011]\n", + " [ 30.86269247 -13.41690011]\n", + " [ 30.86255285 -8.04090011]\n", + " [ 30.86241323 -2.66490012]\n", + " [ 0.18816061 -31.44319675]\n", + " [ 0.18816061 -31.44319675]\n", + " [ 30.86236396 -0.76740012]\n", + " [ 30.86236396 -0.76740012]\n", + " [ 2.08561133 -29.54564748]\n", + " [ 7.46161133 -29.54550785]\n", + " [ 12.83761133 -29.54536824]\n", + " [ 18.21361133 -29.54522862]\n", + " [ 23.58961132 -29.545089 ]\n", + " [ 28.96561132 -29.54494938]\n", + " [ 2.08547171 -24.16964747]\n", + " [ 7.46147171 -24.16950786]\n", + "7814 -0.05065827 -0.08683905 -0.12251113 -0.15747231 -0.19152571\n", + " -0.0142515 -0.05087978 -0.08720594 -0.12301955 -0.15811848 -0.19230704\n", + " -0.01429691 -0.0510015 -0.08740238 -0.12328852 -0.15845779 -0.19271515]\n", + " [ 0.20994474 0.18250974 0.15437814 0.12565449 0.09644464 0.0668576\n", + " 0.03700641 0.00700791 0.20994474 0.20980966 0.20940234 0.20872399\n", + " 0.20777622 0.20656061 0.20507835 0.20333011 0.00700791 0.00701559\n", + " 0.00701392 0.00700302 0.00698305 0.00695418 0.00691659 0.00687038\n", + " 0.20333011 0.17679323 0.14956333 0.12175011 0.09346339 0.06481351\n", + " 0.03591173 0.00687038 0.19807534 0.16396932 0.12892083 0.09312409\n", + " 0.05677987 0.02009792 0.20982687 0.20947825 0.20872203 0.20756102\n", + " 0.20599809 0.20403521 0.00711509 0.00711803 0.00710683 0.00708177\n", + " 0.0070432 0.00699139 0.19185821 0.1588536 0.12491703 0.09025061\n", + " 0.0550575 0.01954302 0.20985223 0.20985223 0.00696998 0.00696998\n", + " 0.19805172 0.19772367 0.19701128 0.19591776 0.19444643 0.19259955\n", + " 0.16395068 0.1636812 0.16309354 0.16219177 0.16098028 0.15946229\n", + " 0.12890725 0.1286975 0.12823673 0.12752928 0.12657997 0.12539259\n", + " 0.09311572 0.09296747 0.092637 0.09212815 0.0914453 0.09059206\n", + " 0.05677687 0.05669199 0.05649545 0.05618991 0.05577844 0.0552636\n", + " 0.02010041 0.0200803 0.02002048 0.0199219 0.01978566 0.01961272]\n", + " [ 0.97771265 0.98320342 0.98801119 0.9920734 0.99533767 0.99776183\n", + " 0.99931431 0.99997471 0.97771265 0.97727914 0.97604944 0.97404051\n", + " 0.97128023 0.96780744 0.96367189 0.95893426 0.99997471 0.99948775\n", + " 0.99810621 0.99584827 0.99274339 0.98883174 0.98416372 0.97879993\n", + " 0.95893426 0.96381393 0.96809947 0.97172808 0.97464791 0.97681802\n", + " 0.97820838 0.97879993 0.98018607 0.98646468 0.9916541 0.9956537\n", + " 0.99838589 0.99979716 0.97764201 0.9765736 0.97432479 0.97094241\n", + " 0.96649792 0.96108746 0.99987235 0.99867225 0.99614527 0.99234098\n", + " 0.9873332\n", + " 0.97324032 0.97549161 0.97697135 0.97765911 0.97696023 0.98253083\n", + " 0.98742708 0.99158512 0.9949513 0.99748218 0.99914484 0.99991744\n", + " 0.97765911 0.9831486 0.98795534 0.99201677 0.99528049 0.99770436\n", + " 0.99925681 0.99991744 0.95949977 0.96502691 0.96961048 0.97315046\n", + " 0.9755715 0.9768229 0.95953833 0.96518051 0.96988569 0.97355136\n", + " 0.97609964 0.97747731 0.97946677 0.98584919 0.99115411 0.99527858\n", + " 0.99814262 0.99969022 0.98013106 0.98640824 0.99159661 0.99559552\n", + " 0.99832741 0.99973878 0.95734621 0.95734621 0.9999156 0.9999156\n", + " 0.96172609 0.96745399 0.9722283 0.9759465 0.97853069 0.9799276\n", + " 0.96733875 0.97328094 0.97822819 0.98207805 0.98475245 0.98619775\n", + " 0.97199095 0.97810522 0.98319175 0.98714806 0.9898957 0.99138039\n", + " 0.97558266 0.98182688 0.98701899 0.99105637 0.99386 0.99537491\n", + " 0.97803851 0.98437036 0.98963392 0.99372641 0.99656823 0.99810379\n", + " 0.97930774 0.98568454 0.99098486 0.99510577 0.99796733 0.99951359]]\n", + "[24.98564832 18.74984422]\n", + " [19.60964835 18.7504 [ 12.83747171 -24.16936824]\n", + " [ 18.21347171 -24.16922862]\n", + " [ 23.58947171 -24.16908901]\n", + " [ 28.9654717 -24.16894939]\n", + " [ 2.0853321 -18.79364747]\n", + " [ 7.46133209 -18.79350785]\n", + " [ 12.83733209 -18.79336824]\n", + " [ 18.21333209 -18.79322862]\n", + " [ 23.58933209 -18.79308901]\n", + " [ 28.96533209 -18.79294939]\n", + " [ 2.08519248 -13.41764748]\n", + " [ 7.46119248 -13.41750786]\n", + " [ 12.83719247 -13.41736824]\n", + " [ 18.21319248 -13.41722863]\n", + " [ 23.58919247 -13.41708901]\n", + " [ 28.96519247 -13.41694939]\n", + " [ 2.08505286 -8.04164748]\n", + " [ 7.46105286 -8.04150786]\n", + " [ 12.83705286 -8.04136825]\n", + " [ 18.21305286 -8.04122863]\n", + " [ 23.58905286 -8.04108901]\n", + " [ 28.96505285 -8.04094939]\n", + " [ 2.08491324 -2.66564748]\n", + " [ 7.46091324 -2.66550786]\n", + " [ 12.83691324 -2.66536825]\n", + " [ 18.21291324 -2.66522863]\n", + " [ 23.58891323 -2.66508901]\n", + " [ 28.96491324 -2.66494939]]\n", + "DEBUG:root:radec2pix: ccdpx: [[-4.45000000e+01 -4.99999973e-01]\n", + " [-4.45000000e+01 2.91928572e+02]\n", + " [-4.45000000e+01 5.84357143e+02]\n", + " [-4.45000000e+01 8.76785714e+02]\n", + " [-4.45000000e+01 1.16921429e+03]\n", + " [-4.45000000e+01 1.46164286e+03]\n", + " [-4.45000000e+01 1.75407143e+03]\n", + " [-4.45000000e+01 2.04650000e+03]\n", + " [-4.45000000e+01 -4.99999973e-01]\n", + " [ 2.47928571e+02 -4.99999766e-01]\n", + " [ 5.40357143e+02 -5.00000023e-01]\n", + " [ 8.32785714e+02 -4.99999798e-01]\n", + " [ 1.12521429e+03 -5.00000229e-01]\n", + " [ 1.41764286e+03 -5.00000231e-01]\n", + " [ 1.71007143e+03 -4.99999870e-01]\n", + " [ 2.00250000e+03 -4.99999884e-01]\n", + " [-4.45000000e+01 2.04650000e+03]\n", + " [ 2.47928571e+02 2.04650000e+03]\n", + " [ 5.40357143e+02 2.04650000e+03]\n", + " [ 8.32785714e+02 2.04650000e+03]\n", + " [ 1.12521429e+03 2.04650000e+03]\n", + " [ 1.41764286e+03 2.04650000e+03]\n", + " [ 1.71007143e+03 2.04650000e+03]\n", + " [ 2.00250000e+03 2.04650000e+03]\n", + " [ 2.00250000e+03 -4.99999884e-01]\n", + " [ 2.00250000e+03 2.91928572e+02]\n", + " [ 2.00250000e+03 5.84357143e+02]\n", + " [ 2.00250000e+03 8.76785714e+02]\n", + " [ 2.00250000e+03 1.16921429e+03]\n", + " [ 2.00250000e+03 1.46164286e+03]\n", + " [ 2.00250000e+03 1.75407143e+03]\n", + " [ 2.00250000e+03 2.04650000e+03]\n", + " [-4.35000000e+01 1.27000000e+02]\n", + " [-4.35000000e+01 4.85400000e+02]\n", + " [-4.35000000e+01 8.43800000e+02]\n", + " [-4.35000000e+01 1.20220000e+03]\n", + " [-4.35000000e+01 1.56060000e+03]\n", + " [-4.35000000e+01 1.91900000e+03]\n", + " [ 8.30000000e+01 4.99999770e-01]\n", + " [ 4.41400000e+02 5.00000267e-01]\n", + " [ 7.99800000e+02 4.99999825e-01]\n", + " [ 1.15820000e+03 5.00000071e-01]\n", + " [ 1.51660000e+03 5.00000113e-01]\n", + " [ 1.87500000e+03 5.00000214e-01]\n", + " [ 8.30000000e+01 2.04550000e+03]\n", + " [ 4.41400000e+02 2.04550000e+03]\n", + " [ 7.99800000e+02 2.04550000e+03]\n", + " [ 1.15820000e+03 2.04550000e+03]\n", + " [ 1.51660000e+03 2.04550000e+03]\n", + " [ 1.87500000e+03 2.04550000e+03]\n", + " [ 2.00150000e+03 1.27000000e+02]\n", + " [ 2.00150000e+03 4.85400000e+02]\n", + " [ 2.00150000e+03 8.43800000e+02]\n", + " [ 2.00150000e+03 1.20220000e+03]\n", + " [ 2.00150000e+03 1.56060000e+03]\n", + " [ 2.00150000e+03 1.91900000e+03]\n", + " [-4.35000000e+01 5.00000284e-01]\n", + " [-4.35000000e+01 5.00000284e-01]\n", + " [ 2.00150000e+03 2.04550000e+03]\n", + " [ 2.00150000e+03 2.04550000e+03]\n", + " [ 8.30000000e+01 1.27000000e+02]\n", + " [ 4.41400000e+02 1.27000000e+02]\n", + " [ 7.99800000e+02 1.27000000e+02]\n", + " [ 1.15820000e+03 1.27000000e+02]\n", + " [ 1.51660000e+03 1.27000000e+02]\n", + " [ 1.87500000e+03 1.27000000e+02]\n", + " [ 8.30000000e+01 4.85400000e+02]\n", + " [ 4.41400000e+02 4.85400000e+02]\n", + " [ 7.99800000e+02 4.85400000e+02]\n", + " [ 1.15820000e+03 4.85400000e+02]\n", + " [ 1.51660000e+03 4.85400000e+02]\n", + " [ 1.87500000e+03 4.85400000e+02]\n", + " [ 8.30000000e+01 8.43800000e+02]\n", + " [ 4.41400000e+02 8.43800000e+02]\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + " [ 7.99800000e+02 8.43800000e+0IOPub data rate exceeded.\n", + "The notebook server will temporarily stop sending output\n", + "to the client in order to avoid crashing it.\n", + "To change this limit, set the config variable\n", + "`--NotebookApp.iopub_data_rate_limit`.\n", + "\n", + "Current values:\n", + "NotebookApp.iopub_data_rate_limit=1000000.0 (bytes/sec)\n", + "NotebookApp.rate_limit_window=3.0 (secs)\n", + "\n", + ".6487277 ]\n", + " [-19.63583091 -2.65105944]\n", + " [-14.25983141 -2.65339118]\n", + " [ -8.88383191 -2.65572292]\n", + " [ -3.50783243 -2.65805467]]\n", + "DEBUG:root:optics_fp: cphi: [0.00550458 0.00639749 0.00763617 0.00946965 0.01246169 0.01821736\n", + " 0.03384734 0.23312315 0.00550458 0.14357831 0.27378206 0.39054421\n", + " 0.49112919 0.57532118 0.64452059 0.70085313 0.23312315 0.98770575\n", + " 0.99676233 0.99853841 0.99917171 0.99946758 0.99962921 0.99972703\n", + " 0.70085313 0.75231162 0.80628167 0.86066702 0.91207829 0.95583505\n", + " 0.98659156 0.99972703 0.00636947 0.00778798 0.01001931 0.01404249\n", + " 0.02346297 0.07118734 0.06624656 0.23110858 0.37831182 0.50160995\n", + " 0.60050131 0.67790282 0.94291018 0.99516222 0.9983578 0.99918316\n", + " 0.9995128 0.99967679 0.72272376 0.78769728 0.85449414 0.91742373\n", + " 0.96793131 0.99637757 0.00598472 0.00598472 0.99971529 0.99971529\n", + " 0.07048511 0.24509968 0.39886372 0.52516272 0.62434311 0.70044222\n", + " 0.08607764 0.29532864 0.46955786 0.60232354 0.69893243 0.76821854\n", + " 0.11047406 0.36953888 0.56469148 0.69653837 0.7826374 0.83930914\n", + " 0.15393817 0.48687699 0.69216184 0.80578092 0.86972564 0.90775141\n", + " 0.25195766 0.68160416 0.84839347 0.91538572 0.94689876 0.96382489\n", + " 0.62072988 0.94296444 0.97959085 0.9897031 0.99382317 0.99589043]\n", + "DEBUG:root:make_az_asym: xyp: shape: (96, 2)\n", + "DEBUG:root:radec2pix: curVec Shape: (96, 3)\n", + "526 0.13248471 0.09681723 0.06058199 0.02398618\n", + " 0.20169858 0.16769559 0.13272857 0.09699294 0.06068709 0.02401844]\n", + " [0.20098859 0.17447006 0.14727238 0.11949936 0.09125926 0.06266255\n", + " 0.03382097 0.00484709 0.20098859 0.20282418 0.20440426 0.20572264\n", + " 0.20677589 0.2075618 0.2080787 0.20832528 0.00484709 0.00490326\n", + " 0.00495363 0.00499813 0.0050366 0.00506881 0.00509451 0.00511348\n", + " 0.20832528 0.18083307 0.15264908 0.12387974 0.09463112 0.06501141\n", + " 0.0351331 0.00511348 0.18952259 0.15655094 0.12266162 0.08805229\n", + " 0.05292621 0.01748945 0.20172997 0.20380791 0.20549566 0.20678588\n", + " 0.20767444 0.20815839 0.00497187 0.00503783 0.00509482 0.00514259\n", + " 0.00518073 0.00520877 0.19643015 0.16225698 0.1271506 0.09130636\n", + " 0.0549237 0.01821176 0.20090587 0.20090587 0.00521618 0.00521618\n", + " 0.19029998 0.19225876 0.19384904 0.19506507 0.19590316 0.19636024\n", + " 0.15719218 0.15880644 0.16011755 0.16112232 0.16181718 0.1621981\n", + " 0.12316354 0.12442767 0.12545686 0.12624866 0.12679897 0.1271029\n", + " 0.08841323 0.08932369 0.09006766 0.09064294 0.0910454 0.09127018\n", + " 0.05314506 0.05369842 0.05415286 0.05450669 0.05475678 0.05489951\n", + " 0.0175654 0.01775879 0.01791986 0.01804791 0.01814173 0.01819993]\n", + " [0.9575635 DEBUG:root:radec2pix: fitpx: [[ 2.13550000e+03 -4.99999783e-01]\n", + " [ 2.13550000e+03 2.91928571e+02]\n", + " [ 2.13550000e+03 5.84357143e+02]\n", + " [ 2.13550000e+03 8.76785714e+02]\n", + " [ 2.13550000e+03 1.16921429e+03]\n", + " [ 2.13550000e+03 1.46164286e+03]\n", + " [ 2.13550000e+03 1.75407143e+03]\n", + " [ 2.13550000e+03 2.04650000e+03]\n", + " [ 2.13550000e+03 -4.99999783e-01]\n", + " [ 2.42792857e+03 -5.00000080e-01]\n", + " [ 2.72035714e+03 -5.00000178e-01]\n", + " [ 3.01278571e+03 -4.99999867e-01]\n", + " [ 3.30521429e+03 -5.00000095e-01]\n", + " [ 3.59764286e+03 -5.00000221e-01]\n", + " [ 3.89007143e+03 -5.00000185e-01]\n", + " [ 4.18250000e+03 -5.00000018e-01]\n", + " [ 2.13550000e+03 2.04650000e+03]\n", + " [ 2.42792857e+03 2.04650000e+03]\n", + " [ 2.72035714e+03 2.04650000e+03]\n", + " [ 3.01278571e+03 2.04650000e+03]\n", + " [ 3.30521429e+03 2.04650000e+03]\n", + " [ 3.59764286e+03 2.04650000e+03]\n", + " [ 3.89007143e+03 2.04650000e+03]\n", + " [ 4.18250000e+03 2.04650000e+03]\n", + " [ 4.18250000e+03 -5.00000018e-01]\n", + " [ 4.18250000e+03 2.91928571e+02]\n", + " [ 4.18250000e+03 5.84357143e+02]\n", + " [ 4.18250000e+03 8.76785DEBUG:root:radec2pix: xyfp: [[ 0.236018 -31.56946754]\n", + " [ 0.23651287 -27.18303899]\n", + " [ 0.23700774 -22.79661046]\n", + " [ 0.23750261 -18.41018192]\n", + " [ 0.23799748 -14.02375336]\n", + " [ 0.23849235 -9.63732482]\n", + " [ 0.23898721 -5.25089628]\n", + " [ 0.23948208 -0.86446773]\n", + " [ 0.236018 -31.56946754]\n", + " [ 4.62244655 -31.56996241]\n", + " [ 9.00887509 -31.57045728]\n", + " [ 13.39530363 -31.57095214]\n", + " [ 17.78173218 -31.57144701]\n", + " [ 22.16816072 -31.57194188]\n", + " [ 26.55458927 -31.57243675]\n", + " [ 30.94101781 -31.57293162]\n", + " [ 0.23948208 -0.86446773]\n", + " [ 4.62591062 -0.8649626 ]\n", + " [ 9.01233917 -0.86545747]\n", + " [ 13.39876771 -0.86595234]\n", + " [ 17.78519626 -0.86644721]\n", + " [ 22.1716248 -0.86694208]\n", + " [ 26.55805334 -0.86743695]\n", + " [ 30.94448189 -0.86793181]\n", + " [ 30.94101781 -31.57293162]\n", + " [ 30.94151268 -27.18650307]\n", + " [ 30.94200754 -22.80007453]\n", + " [ 30.94250242 -18.41364599]\n", + " [ 30.94299728 -14.02721745]\n", + " [ 30.94349215 -9.6407889 ]\n", + " [ 30.94398702 -5.25436036]\n", + " [ 30.94448189 -0.86793181]\n", + " [ 0.25123377 -29.65696924]\n", + " [ 0.25184028 DEBUG:root:make_az_asym: xyp: shape: (96, 2)\n", + "-24.28096928]\n", + " [ 0.25244679 -18.90496931]\n", + " [ 0.2530533 -13.52896935]\n", + " [ 0.25365981 -8.15296938]\n", + " [ 0.25426632 -2.77696942]\n", + " [ 2.14851968 -31.5546833 ]\n", + " [ 7.52451965 -31.55528981]\n", + " [ 12.90051962 -31.55589633]\n", + " [ 18.27651958 -31.55650284]\n", + " [ 23.65251954 -31.55710934]\n", + " [ 29.02851952 -31.55771586]\n", + " [ 2.15198038 -0.8796835 ]\n", + " [ 7.52798035 -0.88029001]\n", + " [ 12.90398031 -0.88089652]\n", + " [ 18.27998027 -0.88150303]\n", + " [ 23.65598025 -0.88210954]\n", + " [ 29.03198021 -0.88271605]\n", + " [ 30.92623357 -29.66042994]\n", + " [ 30.92684009 -24.28442998]\n", + " [ 30.9274466 -18.90843001]\n", + " [ 30.9280531 -13.53243004]\n", + " [ 30.92865961 -8.15643008]\n", + " [ 30.92926612 -2.78043011]\n", + " [ 0.2510197 -31.55446923]\n", + " [ 0.2510197 -31.55446923]\n", + " [ 30.9294802 -0.88293012]\n", + " [ 30.9294802 -0.88293012]\n", + " [ 2.14873376 -29.65718332]\n", + " [ 7.52473372 -29.65778983]\n", + " [ 12.90073369 -29.65839633]\n", + " [ 18.27673365 -29.65900285]\n", + " [ 23.65273362 -29.65960936]\n", + " [ 29.02873359 -29.66021587]\n", + " [ 2.14934027 -24.28118335]\n", + " [ 7.52534023 -24.28178986]\n", + " [ 12.9013402 -24.28239637]\n", + " [ 18.27734016 -24.28300288]\n", + " [ 23.65334013 -24.28360939]\n", + " [ 29.02934009 -24.2842159 ]\n", + " [ 2.14994678 -18.90518338]\n", + " [ 7.52594674 -18.90578989]\n", + " [ 12.90194671 -18.9063964 ]\n", + " [ 18.27794667 -18.90700292]\n", + " [ 23.65394664 -18.90760943]\n", + " [ 29.0299466 -18.90821593]\n", + " [ 2.15055329 -13.52918342]\n", + " [ 7.52655325 -13.52978993]\n", + " [ 12.90255322 -13.53039644]\n", + " [ 18.27855318 -13.53100295]\n", + " [ 23.65455315 -13.53160946]\n", + " [ 29.03055312 -13.53221597]\n", + " [ 2.1511598 -8.15318346]\n", + " [ 7.52715976 -8.15378996]\n", + " [ 12.90315973 -8.15439647]\n", + " [ 18.27915969 -8.15500298]\n", + " [ 23.65515966 -8.15560949]\n", + " [ 29.03115962 -8.156216 ]\n", + " [ 2.1517663 -2.77718348]\n", + " [ 7.52776627 -2.77779 ]\n", + " [ 12.90376624 -2.77839651]\n", + " [ 18.2797662 -2.77900302]\n", + " [ 23.65576617 -2.77960953]\n", + " [ 29.03176613 -2.78021604]]\n", + "714e+02]\n", + " [ 4.18250000e+03 1.16921429e+03]\n", + " [ 4.18250000e+03 1.46164286e+03]\n", + " [ 4.18250000e+03 1.75407143e+03]\n", + " [ 4.18250000e+03 2.04650000e+03]\n", + " [ 2.13650000e+03 1.27000000e+02]\n", + " [ 2.13650000e+03 4.85400000e+02]\n", + " [ 2.13650000e+03 8.43800000e+02]\n", + " [ 2.13650000e+03 1.20220000e+03]\n", + " [ 2.13650000e+03 1.56060000e+03]\n", + " [ 2.13650000e+03 1.91900000e+03]\n", + " [ 2.26300000e+03 4.99999873e-01]\n", + " [ 2.62140000e+03 5.00000123e-01]\n", + " [ 2.97980000e+03 5.00000108e-01]\n", + " [ 3.33820000e+03 4.99999719e-01]\n", + " [ 3.69660000e+03 4.99999964e-01]\n", + " [ 4.05500000e+03 5.00000185e-01]\n", + " [ 2.26300000e+03 2.04550000e+03]\n", + " [ 2.62140000e+03 2.04550000e+03]\n", + " [ 2.97980000e+03 2.04550000e+03]\n", + " [ 3.33820000e+03 2.04550000e+03]\n", + " [ 3.69660000e+03 2.04550000e+03]\n", + " [ 4.05500000e+03 2.04550000e+03]\n", + " [ 4.18150000e+03 1.27000000e+02]\n", + " [ 4.18150000e+03 4.85400000e+02]\n", + " [ 4.18150000e+03 8.43800000e+02]\n", + " [ 4.18150000e+03 1.20220000e+03]\n", + " [ 4.18150000e+03 1.56060000e+03]\n", + " [ 4.18150000e+03 1.91900000e+03]\n", + " [ 2.13650000e+03 4.99999853e-01]\n", + " [ 2.13650000e+03 4.99999853e-01]\n", + " [ 4.18150000e+03 2.04550000e+03]\n", + " [ 4.18150000e+03 2.04550000e+03]\n", + " [ 2.26300000e+03 1.27000000e+02]\n", + " [ 2.62140000e+03 1.27000000e+02]\n", + " [ 2.97980000e+03 1.27000000e+02]\n", + " [ 3.33820000e+03 1.27000000e+02]\n", + " [ 3.69660000e+03 1.27000000e+02]\n", + " [ 4.05500000e+03 1.27000000e+02]\n", + " [ 2.26300000e+03 4.85400000e+02]\n", + " [ 2.62140000e+03 4.85400000e+02]\n", + " [ 2.97980000e+03 4.85400000e+02]\n", + " [ 3.33820000e+03 4.85400000e+02]\n", + " [ 3.69660000e+03 4.85400000e+02]\n", + " [ 4.05500000e+03 4.85400000e+02]\n", + " [ 2.26300000e+03 8.43800000e+02]\n", + " [ 2.62140000e+03 8.43800000e+02]\n", + " [ 2.97980000e+03 8.43800000e+02]\n", + " [ 3.33820000e+03 8.43800000e+02]\n", + " [ 3.69660000e+03 8.43800000e+02]\n", + " [ 4.05500000e+03 8.43800000e+02]\n", + " [ 2.26300000e+03 1.20220000e+03]\n", + " [ 2.62140000e+03 1.20220000e+03]\n", + " [ 2.97980000e+03 1.20220000e+03]\n", + " [ 3.33820000e+03 1.20220000e+03]\n", + " [ 3.69660000e+03 1.20220000e+03]\n", + " [ 4.05500000e+03 1.20220000e+03]\n", + " [ 2.26300000e+03 1.56060000e+03]\n", + " [ 2.62140000e+03 1.56060000e+03]\n", + " [ 2.97980000e+03 1.56060000e+03]\n", + " [ 3.33820000e+03 1.56060000e+03]\n", + " [ 3.69660000e+03 1.56060000e+0DEBUG:root:optics_fp: sphi: [-0.99998485 -0.99997954 -0.99997084 -0.99995516 -0.99992235 -0.99983405\n", + " -0.99942701 -0.97244722 -0.99998485 -0.98963896 -0.96179176 -0.92058417\n", + " -0.87108674 -0.81792759 -0.76458695 -0.71330561 -0.97244722 -0.15632448\n", + " -0.08040428 -0.05404675 -0.04069277 -0.03262757 -0.02722955 -0.0233637\n", + " -0.71330561 -0.65880742 -0.59153179 -0.50916823 -0.41001608 -0.29390365\n", + " -0.16320875 -0.0233637 -0.99997971 -0.99996967 -0.99994981 -0.9999014\n", + " -0.99972471 -0.99746296 -0.99780328 -0.97292796 -0.92567822 -0.8650939\n", + " -0.79962377 -0.73515153 -0.33304712 -0.0982454 -0.05728621 -0.04041066\n", + " -0.03121144 -0.02542276 -0.69113701 -0.61606249 -0.51946104 -0.39791167\n", + " -0.251215 -0.08503968 -0.99998209 -0.99998209 -0.02386066 -0.02386066\n", + " -0.99751283 -0.96949788 -0.91701021 -0.85100183 -0.78115023 -0.71370911\n", + " -0.99628843 -0.95539573 -0.8829017 -0.79825206 -0.71518771 -0.64018769\n", + " -0.99387901 -0.92921527 -0.82530209 -0.71751954 -0.62247788 -0.54365446\n", + " -0.98808048 -0.87347054 -0.72174233 -0.59221374 -0.49353552 -0.41950849\n", + " -0.96773826 -0.7317211 -0.52936616 -0.40257793 -0.32153186 -0.26653625\n", + " -0.7840245 -0.33289349 -0.20100193 -0.14313552 -0.11097528 -0.09056624]\n", + "DEBUG:root:radec2pix: fitpx: [[ 2.13550000e+03 -4.99999797e-01]\n", + " [ 2.13550000e+03 2.91928572e+02]\n", + " [ 2.13550000e+03 5.84357143e+02]\n", + " [ 2.13550000e+03 8.76785714e+02]\n", + " [ 2.13550000e+03 1.16921429e+03]\n", + " [ 2.13550000e+03 1.46164286e+03]\n", + " [ 2.13550000e+03 1.75407143e+03]\n", + " [ 2.13550000e+03 2.04650000e+03]\n", + " [ 2.13550000e+03 -4.99999797e-01]\n", + " [ 2.42792857e+03 -5.00000034e-01]\n", + " [ 2.72035714e+03 -4.99999972e-01]\n", + " [ 3.01278571e+03 -4.99999760e-01]\n", + " [ 3.30521429e+03 -5.00000049e-01]\n", + " [ 3.59764286e+03 -4.99999867e-01]\n", + " [ 3.89007143e+03 -5.00000044e-01]\n", + " [ 4.18250000e+03 -4.99999770e-01]\n", + " [ 2.13550000e+03 2.04650000e+03]\n", + " [ 2.42792857e+03 2.04650000e+03]\n", + " [ 2.72035714e+03 2.04650000e+03]\n", + " [ 3.01278571e+03 2.04650000e+03]\n", + " [ 3.30521429e+03 2.04650000e+03]\n", + " [ 3.59764286e+03 2.04650000e+03]\n", + " [ 3.89DEBUG:root:radec2pix: xyfp: [[ 0.16415906 -31.72847131]\n", + " [ 0.16601788 -27.34204313]\n", + " [ 0.1678767 -22.95561497]\n", + " [ 0.16973552 -18.56918678]\n", + " [ 0.17159434 -14.1827586 ]\n", + " [ 0.17345315 -9.79633043]\n", + " [ 0.17531197 -5.40990225]\n", + " [ 0.17717079 -1.02347407]\n", + " [ 0.16415906 -31.72847131]\n", + " [ 4.55058724 -31.73033014]\n", + " [ 8.93701541 -31.73218895]\n", + " [ 13.32344359 -31.73404778]\n", + " [ 17.70987177 -31.73590659]\n", + " [ 22.09629995 -31.73776541]\n", + " [ 26.48272812 -31.73962422]\n", + " [ 30.8691563 -31.74148305]\n", + " [ 0.17717079 -1.02347407]\n", + " [ 4.56359897 -1.02533289]\n", + " [ 8.95002714 -1.02719171]\n", + " [ 13.33645532 -1.02905053]\n", + " [ 17.7228835 -1.03090935]\n", + " [ 22.10931168 -1.03276817]\n", + " [ 26.49573986 -1.03462699]\n", + " [ 30.88216803 -1.0364858 ]\n", + " [ 30.8691563 -31.74148305]\n", + " [ 30.87101512 -27.35505487]\n", + " [ 30.87287394 -22.96862669]\n", + " [ 30.87473276 -18.58219851]\n", + " [ 30.87659158 -14.19577034]\n", + " [ 30.8784504 -9.80934216]\n", + " [ 30.88030922 -5.42291398]\n", + " [ 30.88216803 -1.0364858 ]\n", + " [ 0.17996951 -29.81597784]\n", + " [ 0.18224768 3]\n", + " [ 4.05500000e+03 1.56060000e+03]\n", + " [ 2.26300000e+03 1.91900000e+03]\n", + " [ 2.62140000e+03 1.91900000e+03]\n", + " [ 2.97980000e+03 1.91900000e+03]\n", + " [ 3.33820000e+03 1.91900000e+03]\n", + " [ 3.69660000e+03 1.91900000e+03]\n", + " [ 4.05500000e+03 1.91900000e+03]]\n", + "DEBUG:root:radec2pix: camVec: [[ 0.00110855 0.00111823 0.00112655 0.00113349 0.001139 0.00114306\n", + " 0.00114562 0.00114666 0.00110855 0.03013432 0.05904256 0.08772073\n", + " 0.11605724 0.14394136 0.17126266 0.19791015 0.00114666 0.03116962\n", + " 0.06106803 0.09072406 0.1200235 0.1488564 0.17711651 0.20469956\n", + " 0.19791015 0.19966308 0.20115603 0.20238925 0.20336191 0.20407235\n", + " 0.20451873 0.20469956 0.00121266 0.00122459 0.00123428 0.00124164\n", + " 0.00124661 0.00124912 0.01377154 0.04928181 0.08450359 0.11923105\n", + " 0.15326028 0.18638779 0.01424443 0.05097175 0.08739457 0.12330108\n", + " 0.15848878 0.192763 0.19861623 0.2005887 0.20217123 0.20336272\n", + " 0.2041602 0.2045604 0.00120792 0.00120792 0.20460634 0.20460634\n", + " 0.01382559 0.04947523 0.08483539 0.11969997 0.15386543 0.18712908\n", + " 0.01396162 0.04996174 0.08566901 0.1208763 0.15538076 0.1889821\n", + " 0.01407199 0.05035615 0.08634371 0.12182616 0.15660103 0.19047015\n", + " 0.01415593 0.05065593 0.08685581 0.12254563 0.15752301 0.1915915\n", + " 0.01421257 0.05085809 0.08720077 0.12302951 0.15814189 0.1923426\n", + " 0.01424114 0.05096003 0.08737459 0.12327308 0.15845303 0.1927197 ]\n", + " [-0.20853555 -0.18105588 -0.15288447 -0.12412547 -0.09488471 -0.06527159\n", + " -0.0353997 -0.00538646 -0.20853555 -0.20838958 -0.2079729 -0.20728684\n", + " -0.20633313 -0.20511339 -0.20362847 -0.2018782 -0.00538646 -0.00538259\n", + " -0.00537156 -0.00535349 -0.00532854 -0.00529689 -0.00525872 -0.00521415\n", + " -0.2018782 -0.17529764 -0.14802765 -0.12017919 -0.09186258 -0.06318839\n", + " -0.03426807 -0.00521415 -0.196646 -0.16248857 -0.12739553 -0.09156092\n", + " -0.05518617 -0.01848208 -0.20841259 -0.20805164 -0.2072855 -0.20611722\n", + " -0.20454967 -0.20250.96235848 0.9665599 0.97010815 0.97295274 0.97505345\n", + " 0.97638084 0.97691643 0.9575635 0.96249967 0.96685033 0.97055388\n", + " 0.97355774 0.97581955 0.97730771 0.97800162 0.97691643 0.98249606\n", + " 0.98740135 0.99156788 0.99494191 0.99747999 0.99914912 0.99992726\n", + " 0.97800162 0.98345527 0.98822148 0.99223792 0.99545284 0.99782482\n", + " 0.9993229 0.99992726 0.95974104 0.96522722 0.96976157 0.97324727\n", + " 0.97561035 0.97680113 0.95980102 0.96546589 0.97018908 0.97386995\n", + " 0.97643056 0.97781731 0.97942703 0.98582062 0.99113614 0.99527021\n", + " 0.9981429 0.99969795 0.98045849 0.98668859 0.99182302 0.99576214\n", + " 0.9984297 0.99977331 0.95759864 0.95759864 0.9999256 0.9999256\n", + " 0.96197634 0.96772508 0.97251687 0.97625014 0.97884665 0.98025265\n", + " 0.96754604 0.97350647 0.97847046 0.98233503 0.98502145 0.98647571\n", + " 0.97214818 0.97827946 0.98338189 0.98735208 0.99011108 0.99160442\n", + " 0.97568503 0.98194493 0.98715164 0.99120174 0.99401595 0.99553917\n", + " 0.97808228 0.98442808 0.98970464 0.99380856 0.99666018 0.99820374\n", + " 0.97929012 0.98567886 0.99099042 0.99512142 0.99799196 0.99954584]]\n", + "DEBUG:root:radec2pix: xyfp Shape: (96, 2)\n", + "8404 -0.00548838 -0.00547863 -0.00545803 -0.00542687\n", + " -0.0053855 -0.0053342 -0.19038695 -0.15733098 -0.12334981 -0.08864677\n", + " -0.05342545 -0.01789151 -0.20844284 -0.20844284 -0.00531377 -0.00531377\n", + " -0.19661746 -0.19627694 -0.19555447 -0.19445357 -0.19297773 -0.19112874\n", + " -0.1624649 -0.16218264 -0.16158454 -0.16067502 -0.15945889 -0.15793949\n", + " -0.12737685 -0.12715419 -0.12668294 -0.12596768 -0.12501365 -0.12382499\n", + " -0.0915474 -0.09138626 -0.09104555 -0.09052922 -0.08984197 -0.08898771\n", + " -0.05517797 -0.05508029 -0.05487388 -0.05456144 -0.05414617 -0.05363087\n", + " -0.01847933 -0.01844651 -0.01837718 -0.0182723 -0.018133 -0.01796031]\n", + " [ 0.97801416 0.98347217 0.98824343 0.99226588 0.99548762 0.99786688\n", + " 0.99937258 0.99998484 0.97801416 0.97758156 0.97635099 0.97433939\n", + " 0.97157468 0.96809575 0.96395256 0.95920632 0.99998484 0.99949962\n", + " 0.99811915 DEBUG:root:mm_to_pix: fitpx.shape: (96, 2)\n", + " 0.99586168 0.99275675 0.98884464 0.98417584 0.97881096\n", + " 0.95920632 0.96405674 0.9683099 0.97190306 0.97478469 0.97691438\n", + " 0.97826264 0.97881096 0.9804738 0.98670967 0.99185123 0.9957987\n", + " 0.9984753 0.99982841 0.97794404 0.97687554 0.97462396 0.97123615\n", + " 0.9667837 0.96136325 0.99988348 0.99868507 0.99615882 0.99235447\n", + " 0.98734609 0.98123085 0.96140751 0.96695974 0.97155114 0.97508223\n", + " 0.97747856 0.97869042 0.97803381 0.97803381 0.97882992 0.97882992\n", + " 0.9803828 0.97929953 0.97701659 0.97358088 0.96906399 0.96356241\n", + " 0.98661554 0.98549511 0.98313339 0.97957769 0.97489983 0.969196\n", + " 0.99175456 0.99060389 0.98817822 0.98452554 0.97971818 0.9738524\n", + " 0.9957001 0.99452628 0.9920518 0.98832537 0.98342001 0.97743229\n", + " 0.99837538 0.99718585 0.99467828 0.99090201 0.9859307 0.97986124\n", + " 0.99972782 0.99853032 0.996006 0.99220455 0.9872 0.98108947]]\n", + "DEBUG:root:DEBUG:root:radec2pix: camVec Shape: (3, 96)\n", + "-24.43997833]\n", + " [ 0.18452584 -19.06397881]\n", + " [ 0.18680401 -13.6879793 ]\n", + " [ 0.18908217 -8.31197977]\n", + " [ 0.19136034 -2.93598025]\n", + " [ 2.07666524 -31.71428177]\n", + " [ 7.45266476 -31.71655993]\n", + " [ 12.82866428 -31.7188381 ]\n", + " [ 18.2046638 -31.72111627]\n", + " [ 23.58066331 -31.72339443]\n", + " [ 28.95666283 -31.7256726 ]\n", + " [ 2.08966426 -1.03928452]\n", + " [ 7.46566378 -1.04156269]\n", + " [ 12.8416633 -1.04384085]\n", + " [ 18.21766282 -1.04611902]\n", + " [ 23.59366233 -1.04839718]\n", + " [ 28.96966185 -1.05067535]\n", + " [ 30.85496675 -29.82897686]\n", + " [ 30.85724492 -24.45297735]\n", + " [ 30.85952308 -19.07697783]\n", + " [ 30.86180126 -13.70097831]\n", + " [ 30.86407941 -8.32497879]\n", + " [ 30.86635759 -2.94897928]\n", + " [ 0.17916541 -31.71347767]\n", + " [ 0.17916541 -31.71347767]\n", + " [ 30.86716168 -1.05147945]\n", + " [ 30.86716168 -1.05147945]\n", + " [ 2.07746934 -29.81678193]\n", + " [ 7.45346886 -29.8190601 ]\n", + " [ 12.82946837 -29.82133827]\n", + " [ 18.20546789 -29.82361643]\n", + " [ 23.58146741 -29.82589461]\n", + " [ 28.95746693 -29.82817277]\n", + " [ 2.07974751 -24.44078242]\n", + " [ 7.45574702 -24.44306058]\n", + " [ 12.83174654 -24.44533875]\n", + " [ 18.20774606 -24.44761692]\n", + " [ 23.58374558 -24.44989508]\n", + " [ 28.95974509 -24.45217325]\n", + " [ 2.08202567 -19.0647829 ]\n", + " [ 7.45802519 -19.06706107]\n", + " [ 12.83402471 -19.06933924]\n", + " [ 18.21002422 -19.0716174 ]\n", + " [ 23.58602374 -19.07389557]\n", + " [ 28.96202325 -19.07617373]\n", + " [ 2.08430384 -13.68878339]\n", + " [ 7.46030335 -13.69106155]\n", + " [ 12.83630287 -13.69333972]\n", + " [ 18.21230239 -13.69561789]\n", + " [ 23.58830191 -13.69789605]\n", + " [ 28.96430143 -13.70017422]\n", + " [ 2.086582 -8.31278387]\n", + " [ 7.46258152 -8.31506203]\n", + " [ 12.83858103 -8.3173402 ]\n", + " [ 18.21458055 -8.31961837]\n", + " [ 23.59058007 -8.32189653]\n", + " [ 28.96657959 -8.3241747 ]\n", + " [ 2.08886017 -2.93678435]\n", + " [ 7.46485969 -2.93906252]\n", + " [ 12.8408592 -2.94134068]\n", + " [ 18.21685872 -2.94361885]\n", + " [ 23.59285824 -2.94589701]\n", + " [ 28.96885776 -2.94817518]]\n", + "007143e+03 2.04650000e+03]\n", + " [ 4.18250000e+03 2.04650000e+03]\n", + " [ 4.18250000e+03 -4.99999770e-01]\n", + " [ 4.18250000e+03 2.91928572e+02]\n", + " [ 4.18250000e+03 5.84357143e+02]\n", + " [ 4.18250000e+03 8.76785714e+02]\n", + " [ 4.18250000e+03 1.16921429e+03]\n", + " [ 4.18250000e+03 1.46164286e+03]\n", + " [ 4.18250000e+03 1.75407143e+03]\n", + " [ 4.18250000e+03 2.04650000e+03]\n", + " [ 2.13650000e+03 1.27000000e+02]\n", + " [ 2.13650000e+03 4.85400000e+02]\n", + " [ 2.13650000e+03 8.43800000e+02]\n", + " [ 2.13650000e+03 1.20220000e+03]\n", + " [ 2.13650000e+03 1.56060000e+03]\n", + " [ 2.13650000e+03 1.91900000e+03]\n", + " [ 2.26300000e+03 5.00000045e-01]\n", + " [ 2.62140000e+03 5.00000251e-01]\n", + " [ 2.97980000e+03 4.99999878e-01]\n", + " [ 3.33820000e+03 4.99999746e-01]\n", + " [ 3.69660000e+03 5.00000268e-01]\n", + " [ 4.05500000e+03 4.99999743e-01]\n", + " [ 2.26300000e+03 2.04550000e+03]\n", + " [ 2.62140000e+03 2.04550000e+03]\n", + " [ 2.97980000e+03 2.04550000e+03]\n", + " [ 3.33820000e+03 2.04550000e+03]\n", + " [ 3.69660000e+03 2.04550000e+03]\n", + " [ 4.05500000e+03 2.04550000e+03]\n", + " [ 4.18150000e+03 1.27000000e+02]\n", + " [ 4.18150000e+03 4.85400000e+02]\n", + " [ 4.18150000e+03 8.43800000e+02]\n", + " [ 4.18150000e+03 1.20220000e+03]\n", + " [ 4.18150000e+03 1.56060000e+03]\n", + " [ 4.18150000e+03 1.91900000e+03]\n", + " [ 2.13650000e+03 5.00000140e-01]\n", + " [ 2.13650000e+03 5.00000140e-01]\n", + " [ 4.18150000e+03 2.04550000e+03]\n", + " [ 4.18150000e+03 2.04550000e+03]\n", + " [ 2.26300000e+03 1.27000000e+02]\n", + " [ 2.62140000e+03 1.27000000e+02]\n", + " [ 2.97980000e+03 1.27000000e+02]\n", + " [ 3.33820000e+03 1.27000000e+02]\n", + " [ 3.69660000e+03 1.27000000e+02]\n", + " [ 4.05500000e+03 1.27000000e+02]\n", + " [ 2.26300000e+03 4.85400000e+02]\n", + " [ 2.62140000e+03 4.85400000e+02]\n", + " [ 2.97980000e+03 4.85400000e+02]\n", + " [ 3.33820000e+03 4.85400000e+02]\n", + " [ 3.69660000e+03 4.85400000e+02]\n", + " [ 4.05500000e+03 4.85400000e+02]\n", + " [ 2.26300000e+03 8.43800000e+02]\n", + " [ 2.62140000e+03 8.43800000e+02]\n", + " [ 2.97980000e+03 8.43800000e+02]\n", + " [ 3.33820000e+03 8.43800000e+02]\n", + " [ 3.69660000e+03 8.43800000e+02]\n", + " [ 4.05500000e+03 8.43800000e+02]\n", + " [ 2.26300000e+03 1.20220000e+03]\n", + " [ 2.62140000e+03 1.20220000e+03]\n", + " [ 2.97980000e+03 1.20220000e+03]\n", + " [ 3.33820000e+03 1.20220000e+03]\n", + " [ 3.69660000e+03 1.20220000e+03]\n", + " [ 4.05500000e+03 1.20220000e+03]\n", + " [ 2.26300000e+03 1.56060000e+03]\n", + " [ 2.62140000e+03 1.56060000e+03]\n", + " [ 2.97980000e+03 1.56060000e+03]\n", + " [ 3.33820000e+03 1.56060000e+03]\n", + " [ 3.69660000e+03 1.56060000e+03]\n", + " [ 4.05500000e+03 1.56060000e+03]\n", + " [ 2.26300000e+03 1.91900000e+03]\n", + " [ 2.62140000e+03 1.91900000e+03]\n", + " [ 2.97980000e+03 1.91900000e+03]\n", + " [ 3.33820000e+03 1.91900000e+03]\n", + " [ 3.69660000e+03 1.91900000e+03]\n", + " [ 4.05500000e+03 1.91900000e+03]]\n", + "DEBUG:root:radec2pix: camVec Shape: (3, 96)\n", + "DEBUG:root:optics_fp: xyfp: [[ -0.172993 31.426621 ]\n", + " [ -0.172993 27.04019243]\n", + " [ -0.172993 22.65376385]\n", + " [ -0.172993 18.26733528]\n", + " [ -0.172993 13.88090671]\n", + " [ -0.172993 9.49447814]\n", + " [ -0.172993 5.10804957]\n", + " [ -0.172993 0.721621 ]\n", + " [ -0.172993 31.426621 ]\n", + " [ -4.55942157 31.426621 ]\n", + " [ -8.94585014 31.426621 ]\n", + " [-13.33227871 31.426621 ]\n", + " [-17.71870729 31.426621 ]\n", + " [-22.10513586 31.426621 ]\n", + " [-26.49156443 31.426621 ]\n", + " [-30.877993 31.426621 ]\n", + " [ -0.172993 0.7216DEBUG:root:radec2pix: xyfp: [[ -0.230877 31.363511 ]\n", + " [ -0.230877 26.97708243]\n", + " [ -0.230877 22.59065386]\n", + " [ -0.230877 18.20422528]\n", + " [ -0.230877 13.81779671]\n", + " [ -0.230877 9.43136815]\n", + " [ -0.230877 5.04493957]\n", + " [ -0.230877 0.658511 ]\n", + " [ -0.230877 31.363511 ]\n", + " [ -4.61730557 31.363511 ]\n", + " [ -9.00373414 31.363511 ]\n", + " [-13.39016272 31.363511 ]\n", + " [-17.77659129 31.363511 ]\n", + " [-22.16301986 31.363511 ]\n", + " [-26.54944843 31.363511 ]\n", + " [-30.935877 31.363511 ]\n", + " [ -0.230877 0.658511 ]\n", + " [ -4.61730558 0.658511 ]\n", + " [ -9.00373414 0.658511 ]\n", + " [-13.39016271 0.658511 ]\n", + " [-17.77659128 0.658511 ]\n", + " [-22.16301986 0.658511 ]\n", + " [-26.54944843 0.658511 ]\n", + " [-30.935877 0.658511 ]\n", + " [-30.935877 31.363511 ]\n", + " [-30.935877 26.97708243]\n", + " [-30.935877 22.59065386]\n", + " [-30.935877 18.20422528]\n", + " [-30.935877 13.81779671]\n", + " [-30.935877 9.43136814]\n", + " [-30.935877 5.04493957]\n", + " [-30.935877 0.658511 ]\n", + " [ -0.245877 29.451011 ]\n", + " [ -0.245877 24.075011 ]\n", + " [ -0.245877 18.699011 ]\n", + " [ -0.245877 13.323011 ]\n", + " [ -0.245877 7.947011 ]\n", + " [ -0.245877 2.571011 ]\n", + " [ -2.143377 31.348511 ]\n", + " [ -7.519377 31.348511 ]\n", + " [-12.895377 31.348511 ]\n", + " [-18.271377 31.348511 ]\n", + " [-23.647377 31.348511 ]\n", + " [-29.023377 31.348511 ]\n", + " [ -2.143377 0.673511 ]\n", + " [ -7.519377 0.673511 ]\n", + " [-12.895377 0.673511 ]\n", + " [-18.271377 0.673511 ]\n", + " [-23.64737701 0.673511 ]\n", + " [-29.023377 0.673511 ]\n", + " [-30.920877 29.451011 ]\n", + " [-30.920877 24.075011 ]\n", + " [-30.920877 18.699011 ]\n", + " [-30.920877 13.323011 ]\n", + " [-30.920877 7.947011 ]\n", + " [-30.920877 2.571011 ]\n", + " [ -0.245877 31.348511 ]\n", + " [ -0.245877 31.348511 ]\n", + " [-30.920877 0.673511 ]\n", + " [-30.920877 0.673511 ]\n", + " [ -2.143377 29.451011 ]\n", + " [ -7.519377 29.451011 ]\n", + " [-12.895377 29.451011 ]\n", + " [-18.271377 29.451011 ]\n", + " [-23.647377 29.451011 ]\n", + " [-29.023377 29.451011 ]\n", + " [ -2.143377 24.075011 ]\n", + " [ -7.519377 24.075011 ]\n", + "DEBUG:root:radec2pix: ccdpx: [[-4.45000000e+01 -4.99999951e-01]\n", + " [-4.45000000e+01 2.91928572e+02]\n", + " [-4.45000000e+01 5.84357142e+02]\n", + " [-4.45000000e+01 8.76785714e+02]\n", + " [-4.45000000e+01 1.16921429e+03]\n", + " [-4.45000000e+01 1.46164286e+03]\n", + " [-4.45000000e+01 1.75407143e+03]\n", + " [-4.45000000e+01 2.04650000e+03]\n", + " [-4.45000000e+01 -4.99999951e-01]\n", + " [ 2.47928571e+02 -5.00000176e-01]\n", + " [ 5.40357143e+02 -5.00000069e-01]\n", + " [ 8.32785714e+02 -5.00000257e-01]\n", + " [ 1.12521429e+03 -4.99999992e-01]\n", + " [ 1.41764286e+03 -5.00000241e-01]\n", + " [ 1.71007143e+03 -4.99999730e-01]\n", + " [ 2.00250000e+03 -5.00000010e-01]\n", + " [-4.45000000e+01 2.04650000e+03]\n", + " [ 2.47928571e+02 2.04650000e+03]\n", + " [ 5.40357143e+02 2.04650000e+03]\n", + " [ 8.32785714e+02 2.04650000e+03]\n", + " [ 1.12521429e+03 2.04650000e+03]\n", + " [ 1.41764286e+03 2.04650000e+03]\n", + " [ 1.71007143e+03 2.04650000e+03]\n", + " [ 2.00250000e+03 2.04650000e+03]\n", + " [ 2.00250000e+03 -5.00000010e-01]\n", + " [ 2.00250000e+03 2.91928572e+02]\n", + " [ 2.00250000e+03 5.84357143e+02]\n", + " [ 2.00250000e+03 8.76785714e+02]\n", + " [ 2.00250000e+03 1.16921429e+03]\n", + " [ 2.00250000e+03 1.46164286e+03]\n", + " [ 2.00250000e+03 1.75407143e+03]\n", + " [ 2.00250000e+03 2.04650000e+03]\n", + " [-4.35000000e+01 1.27000000e+02]\n", + " [-4.35000000e+01 4.85400000e+02]\n", + " [-4.35000000e+01 8.43800000e+02]\n", + " [-4.35000000e+01 1.20220000e+03]\n", + " [-4.35000000e+01 1.56060000e+03]\n", + " [-4.35000000e+01 1.91900000e+03]\n", + " [ 8.30000000e+01 4.99999720e-01]\n", + " [ 4.41400000e+02 4.99999983e-01]\n", + " [ 7.99800000e+02 4.99999771e-01]\n", + " [ 1.15820000e+03 4.99999773e-01]\n", + " [ 1.51660000e+03 5.00000075e-01]\n", + " [ 1.87500000e+03 4.99999913e-01]\n", + " [ 8.29999998e+01 2.04550000e+03]\n", + " [ 4.41400000e+02 2.04550000e+03]\n", + " [ 7.99800000e+02 2.04550000e+03]\n", + " [ 1.15820000e+03 2.04550000e+03]\n", + " [ 1.51660000e+03 2.04550000e+03]\n", + " [ 1.87500000e+03 2.04550000e+03]\n", + " [ 2.00150000e+03 1.27000000e+02]\n", + " [ 2.00150000e+03 4.85400000e+02]\n", + " [ 2.00150000e+03 8.43800000e+02]\n", + " [ 2.00150000e+03 1.20220000e+03]\n", + " [ 2.00150000e+03 1.56060000e+03]\n", + " [ 2.00150000e+03 1.91900000e+03]\n", + " [-4.35000000e+01 4.99999930e-01]\n", + " [-4.35000000e+01 4.99999930e-01]\n", + " [ 2.00150000e+03 2.04550000e+03]\n", + " [ 2.00150000e+03 2.04550000e+03]\n", + " [ 8.30000000e+01 1.27000000e+02]\n", + " [ 4.41400000e+02 1.27000000e+02]\n", + " [ 7.99800000e+02 1.27000000e+02]\n", + " [ 1.15820000e+03 1.27000000e+02]\n", + " [ 1.51660000e+03 1.27000000e+02]\n", + " [ 1.87500000e+03 1.27000000e+02]\n", + " [ 8.30000000e+01 4.85400000e+02]\n", + " [ 4.41400000e+02 4.85400000e+02]\n", + " [ 7.99800000e+02 4.85400000e+02]\n", + " [ 1.15820000e+03 4.85400000e+02]\n", + " [ 1.51660000e+03 4.85400000e+02]\n", + " [ 1.87500000e+03 4.85400000e+02]\n", + " [ 8.30000000e+01 8.43800000e+02]\n", + " [ 4.41400000e+02 8.43800000e+02]\n", + " [ 7.99800000e+02 8.43800000e+02]\n", + " [ 1.15820000e+03 8.43800000e+02]\n", + " [ 1.51660000e+03 8.43800000e+02]\n", + " [ 1.87500000e+03 8.43800000e+02]\n", + " [ 8.30000000e+01 1.20220000e+03]\n", + " [ 4.41400000e+02 1.20220000e+03]\n", + " [ 7.99800000e+02 1.20220000e+03]\n", + " [ 1.15820000e+03 1.20220000e+03]\n", + " [ 1.51660000e+03 1.20220000e+03]\n", + " [ 1.87500000e+03 1.20220000e+03]\n", + " [ 8.30000000e+01 1.56060000e+03]\n", + " [ 4.41400000e+02 1.56060000e+03]\n", + " [ 7.99800000e+02 1.56060000e+03]\n", + " [ 1.15820000e+03 1.56060000e+03]\n", + " [ 1.51660000e+03 1.56060000e+03]\n", + " [ 1.87500000e+03 1.56060000e+03]\n", + " [ 8.30000000e+01 1.91900000e+03]\n", + " [ 4.41400000e+02 1.91900000e+03]\n", + " [ 7.99800000e+02 1.91900000e+03]\n", + " [ 1.15820000e+03 1.91900000e+03]\n", + " [ 1.51660000e+03 1.91900000e+03]\n", + " [ 1.87500000e+03 1.91900000e+03]]\n", + "21 ]\n", + " [ -4.55942157 0.721621 ]\n", + " [ -8.94585014 0.721621 ]\n", + " [-13.33227872 0.721621 ]\n", + " [-17.71870728 0.721621 ]\n", + " [-22.10513586 0.721621 ]\n", + " [-26.49156443 0.721621 ]\n", + " [-30.877993 0.721621 ]\n", + " [-30.877993 31.426621 ]\n", + " [-30.877993 27.04019243]\n", + " [-30.877993 22.65376385]\n", + " [-30.877993 18.26733529]\n", + " [-30.877993 13.88090671]\n", + " [-30.877993 9.49447814]\n", + " [-30.877993 5.10804957]\n", + " [-30.877993 0.721621 ]\n", + " [ -0.187993 29.514121 ]\n", + " [ -0.187993 24.138121 ]\n", + " [ -0.187993 18.76212101]\n", + " [ -0.187993 13.386121 ]\n", + " [ -0.187993 8.010121 ]\n", + " [ -0.187993 2.634121 ]\n", + " [ -2.085493 31.411621 ]\n", + " [ -7.461493 31.411621 ]\n", + " [-12.837493 31.411621 ]\n", + " [-18.213493 31.411621 ]\n", + " [-23.589493 31.411621 ]\n", + " [-28.965493 31.411621 ]\n", + " [ -2.085493 0.736621 ]\n", + " [ -7.461493 0.736621 ]\n", + " [-12.837493 0.736621 ]\n", + " [-18.213493 0.736621 ]\n", + " [-23.58949299 0.736621 ]\n", + " [-28.965493 0.736621 ]\n", + " [-30.862993 29.514121 ]\n", + " [-30.862993 24.138121 ]\n", + " [-30.862993 18.762121 ]\n", + " [-30.862993 13.386121 ]\n", + " [-30.862993 8.010121 ]\n", + " [-30.862993 2.634121 ]\n", + " [ -0.187993 31.411621 ]\n", + " [ -0.187993 31.411621 ]\n", + " [-30.862993 0.736621 ]\n", + " [-30.862993 0.736621 ]\n", + " [ -2.085493 29.514121 ]\n", + " [ -7.461493 29.514121 ]\n", + " [-12.837493 29.514121 ]\n", + " [-18.213493 29.514121 ]\n", + " [-23.589493 29.514121 ]\n", + " [-28.965493 29.514121 ]\n", + " [ -2.085493 24.138121 ]\n", + " [ -7.461493 24.138121 ]\n", + " [-12.837493 24.138121 ]\n", + " [-18.213493 24.138121 ]\n", + " [-23.589493 24.138121 ]\n", + " [-28.965493 24.138121 ]\n", + " [ -2.085493 18.762121 ]\n", + " [ -7.461493 18.762121 ]\n", + " [-12.837493 18.762121 ]\n", + " [-18.213493 18.762121 ]\n", + " [-23.589493 18.762121 ]\n", + " [-28.965493 18.762121 ]\n", + " [ -2.085493 13.386121 ]\n", + " [ -7.461493 13.386121 ]\n", + " [-12.837493 13.386121 ]\n", + " [-18.213493 13.386121 ]\n", + " [-23.589493 13.386121 ]\n", + " [-28.965493 13.386121 ]\n", + " [ -2.085493 8.010121 ]\n", + " [ -7.461493 8.010121 ]\n", + " [-12.837493 8.010121 ]\n", + " [-18.213493 8.010121 ]\n", + " [-23.589493 8.010121 ]\n", + " [-28.965493 8.010121 ]\n", + " [ -2.085493 2.634121 ]\n", + " [ -7.461493 2.634121 ]\n", + " [-12.837493 2.634121 ]\n", + " [-18.213493 2.634121 ]\n", + " [-23.589493 2.634121 ]\n", + " [-28.965493 2.634121 ]]\n", + "radec2pix: xyfp: [[-32.31281793 -31.43806373]\n", + " [-32.31091541 -27.05163558]\n", + " [-32.30901287 -22.66520742]\n", + " [-32.30711034 -18.27877926]\n", + " [-32.3052078 -13.8923511 ]\n", + " [-32.30330527 -9.50592294]\n", + " [-32.30140274 -5.11949478]\n", + " [-32.2995002 -0.73306663]\n", + " [-32.31281793 -31.43806373]\n", + " [-27.92638978 -31.43996627]\n", + " [-23.53996162 -31.4418688 ]\n", + " [-19.15353346 -31.44377134]\n", + " [-14.7671053 -31.44567387]\n", + " [-10.38067715 -31.44757641]\n", + " [ -5.99424899 -31.44947894]\n", + " [ -1.60782083 -31.45138147]\n", + " [-32.2995002 -0.73306663]\n", + " [-27.91307204 -0.73496916]\n", + " [-23.52664389 -0.73687169]\n", + " [-19.14021573 -0.73877423]\n", + " [-14.75378757 -0.74067676]\n", + " [-10.36735941 -0.74257929]\n", + " [ -5.98093125 -0.74448183]\n", + " [ -1.59450309 -0.74638436]\n", + " [ -1.60782083 -31.45138147]\n", + " [ -1.60591829 -27.06495331]\n", + " [ -1.60401576 -22.67852516]\n", + " [ -1.60211323 -18.292097 ]\n", + " [ -1.60021069 -13.90566884]\n", + " [ -1.59830816 -9.51924068]\n", + " [ -1.59640563 -5.13281252]\n", + " [ -1.59450309 -0.74638436]\n", + " [-32.29698843 -29.52557043]\n", + " [-32.29465669 -24.14957093]\n", + " [-32.29232495 -18.77357144]\n", + " [-32.2899932 -13.39757194]\n", + " [-32.28766146 -8.02157244]\n", + " [-32.28532972 -2.64557295]\n", + " [-30.40031161 -31.42389325]\n", + " [-25.02431212 -31.42622499]\n", + " [-19.64831262 -31.42855673]\n", + " [-14.27231313 -31.43088848]\n", + " [ -8.89631363 -31.43322022]\n", + " [ -3.52031414 -31.43555196]\n", + " [-30.38700689 -0.74889614]\n", + " [-25.01100739 -0.75122788]\n", + " [-19.6350079 -0.75355962]\n", + " [-14.25900841 -0.75589136]\n", + " [ -8.88300892 -0.7582231 ]\n", + " [ -3.50700942 -0.76055484]\n", + " [ -1.62199131 -29.53887515]\n", + " [ -1.61965957 -24.16287565]\n", + " [ -1.61732783 -18.78687616]\n", + " [ -1.61499609 -13.41087666]\n", + " [ -1.61266434 -8.03487716]\n", + " [ -1.6103326 -2.65887768]\n", + " [-32.29781143 -31.42307024]\n", + " [-32.29781143 -31.42307024]\n", + " [ -1.60950959 -0.76137785]\n", + " [ -1.60950959 -0.76137785]\n", + " [-30.3994886 -29.52639343]\n", + " [-25.02348911 -29.52872517]\n", + " [-19.64748962 -29.53105692]\n", + " [-14.27149012 -29.53338866]\n", + " [ -8.89549063 -29.5357204 ]\n", + " [ -3.51949113 -29.53805214]\n", + " [-30.39715686 -24.15039394]\n", + " [-25.02115737 -24.15272568]\n", + " [-19.64515788 -24.15505742]\n", + " [-14.26915838 -24.15738916]\n", + " [ -8.89315889 -24.1597209 ]\n", + " [ -3.51715939 -24.16205264]\n", + " [-30.39482512 -18.77439444]\n", + " [-25.01882563 -18.77672618]\n", + " [-19.64282613 -18.77905793]\n", + " [-14.26682664 -18.78138967]\n", + " [ -8.89082714 -18.78372141]\n", + " [ -3.51482765 -18.78605315]\n", + " [-30.39249338 -13.39839495]\n", + " [-25.01649389 -13.40072669]\n", + " [-19.64049439 -13.40305843]\n", + " [-14.2644949 -13.40539017]\n", + " [ -8.8884954 -13.40772191]\n", + " [ -3.51249591 -13.41005365]\n", + " [-30.39016163 -8.02239545]\n", + " [-25.01416214 -8.02472719]\n", + " [-19.63816265 -8.02705893]\n", + " [-14.26216315 -8.02939068]\n", + " [ -8.88616366 -8.03172242]\n", + " [ -3.51016417 -8.03405416]\n", + " [-30.3878299 -2.64639596]\n", + " [-25.01183041 -2.6487277 ]\n", + " [-19.63583091 -2.65105944]\n", + " [-14.25983141 -2.65339118]\n", + " [ -8.88383191 -2.65572292]\n", + " [ -3.50783243 -2.65805467]]\n", + "DEBUG:root:cartToSphere: vec: [[ 0.00110855 -0.20853555 0.97801416]\n", + " [ 0.00111823 -0.18105588 0.98347217]\n", + " [ 0.00112655 -0.15288447 0.98824343]\n", + " [ 0.00113349 -0.12412547 0.99226588]\n", + " [ 0.001139 -0.09488471 0.99548762]\n", + " [ 0.00114306 -0.06527159 0.99786688]\n", + " [ 0.00114562 -0.0353997 0.99937258]\n", + " [ 0.00114666 -0.00538646 0.99998484]\n", + " [ 0.00110855 -0.20853555 0.97801416]\n", + " [ 0.03013432 -0.20838958 0.97758156]\n", + " [ 0.05904256 -0.2079729 0.97635099]\n", + " [ 0.08772073 -0.20728684 0.97433939]\n", + " [ 0.1160572DEBUG:root:radec2pix: xyfp Shape: (96, 2)\n", + "DEBUG:root:radec2pix: xyfp: [[ 0.26283402 -31.55708986]\n", + " [ 0.26401791 -27.17066146]\n", + " [ 0.2652018 -22.78423305]\n", + " [ 0.26638569 -18.39780463]\n", + " [ 0.26756957 -14.01137623]\n", + " [ 0.26875346 -9.62494781]\n", + " [ 0.26993735 -5.2385194 ]\n", + " [ 0.27112123 -0.85209099]\n", + " [ 0.26283402 -31.55708986]\n", + " [ 4.64926244 -31.55827376]\n", + " [ 9.03569085 -31.55945764]\n", + " [ 13.42211926 -31.56064153]\n", + " [ 17.80854767 -31.56182542]\n", + " [ 22.19497608 -31.56300931]\n", + " [ 26.5814045 -31.56419319]\n", + " [ 30.96783291 -31.56537708]\n", + " [ 0.27112123 -0.85209099]\n", + " [ 4.65754965 -0.85327487]\n", + " [ 9.04397805 -0.85445876]\n", + " [ 13.43040647 -0.85564265]\n", + " [ 17.81683488 -0.85682653]\n", + " [ 22.20326329 -0.85801042]\n", + " [ 26.5896917 -0.85919431]\n", + " [ 30.97612012 -0.8603782 ]\n", + " [ 30.96783291 -31.56537708]\n", + " [ 30.9690168 -27.17894867]\n", + " [ 30.97020068 -22.79252025]\n", + " [ 30.97138456 -18.40609184]\n", + " [ 30.97256845 -14.01966343]\n", + " [ 30.97375234 -9.63323502]\n", + " [ 30.97493622 -5.24680661]\n", + " [ 30.97612012 -0.8603782 ]\n", + " [DEBUG:root:optics_fp: xyfp shape: (96, 2)\n", + "DEBUG:root:fitpix2pix: ccdpx: shape: (96, 2)\n", + "DEBUG:root:fitpix2pix: ccdpx: shape: (96, 2)\n", + "DEBUG:root:mm_to_pix: fitpx: [[0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [DEBUG:root:fitpix2pix: visCut: True\n", + "0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]]\n", + "4 -0.20633313 0.97157468]\n", + " [ 0.14394136 -0.20511339 0.96809575]\n", + " [ 0.17126266 -0.20362847 0.96395256]\n", + " [ 0.19791015 -0.2018782 0.95920632]\n", + " [ 0.00114666 -0.00538646 0.99998484]\n", + " [ 0.03116962 -0.00538259 0.99949962]\n", + " [ 0.06106803 -0.00537156 0.99811915]\n", + " [ 0.09072406 -0.00535349 0.99586168]\n", + " [ 0.1200235 -0.00532854 0.99275675]\n", + " [ 0.1488564 -0.00529689 0.98884464]\n", + " [ 0.17711651 -0.00525872 0.98417584]\n", + " [ 0.20469956 -0.00521415 0.97881096]\n", + " [ 0.19791015 -0.2018782 0.95920632]\n", + " [ 0.19966308 -0.17529764 0.96405674]\n", + " [ 0.20115603 -0.14802765 0.9683099 ]\n", + " [ 0.20238925 -0.12017919 0.97190306]\n", + " [ 0.20336191 -0.09186258 0.97478469]\n", + " [ 0.20407235 -0.06318839 0.97691438]\n", + " [ 0.20451873 -0.03426807 0.97826264]\n", + " [ 0.20469956 -0.00521415 0.97881096]\n", + " [ 0.00121266 -0.196646 0.9804738 ]\n", + " [ 0.00122459 -0.16248857 0.98670967]\n", + " [ 0.00123428 -0.12739553 0.99185123]\n", + " [ 0.00124164 -0.09156092 0.9957987 ]\n", + " [ 0.00124661 -0.05518617 0.9984753 ]\n", + " [ 0.00124912 -0.01848208 0.99982841]\n", + " [ 0.01377154 -0.20841259 0.97794404]\n", + " [ 0.04928181 -0.20805164 0.97687554]\n", + " [ 0.08450359 -0.2072855 0.97462396]\n", + " [ 0.11923105 -0.20611722 0.97123615]\n", + " [ 0.15326028 -0.20454967 0.9667837 ]\n", + " [ 0.18638779 -0.20258404 0.96136325]\n", + " [ 0.01424443 -0.00548838 0.99988348]\n", + " [ 0.05097175 -0.00547863 0.99868507]\n", + " [ 0.08739457 -0.00545803 0.99615882]\n", + " [ 0.12330108 -0.00542687 0.99235447]\n", + " [ 0.15848878 -0.0053855 0.98734609]\n", + " [ 0.192763 -0.0053342 0.98123085]\n", + " [ 0.19861623 -0.19038695 0.96140751]\n", + " [ 0.2005887 -0.15733098 0.96695974]\n", + " [ 0.20217123 -0.12334981 0.97155114]\n", + " [ 0.20336272 -0.08864677 0.97508223]\n", + " [ 0.2041602 -0.05342545 0.97747856]\n", + " [ 0.2045604 -0.01789151 0.97869042]\n", + " [ 0.00120792 -0.20844284 0.97803381]\n", + " [ 0.00120792 -0.20844284 0.97803381]\n", + " [ 0.20460634 -0.00531377 0.97882992]\n", + " [ 0.20460634 -0.00531377 0.97882992]\n", + " [ 0.01382559 -0.19661746 0.9803828 ]\n", + " [ 0.04947523 -0.19627694 0.97929953]\n", + "DEBUG:root:cartToSphere: vec: [[0.20658103 0.20098859 0.9575635 ]\n", + " [0.20838989 0.17447006 0.96235848]\n", + " [0.20993522 0.14727238 0.9665599 ]\n", + " [0.21121099 0.11949936 0.97010815]\n", + " [0.21221385 0.09125926 0.97295274]\n", + " [0.21294172 0.06266255 0.97505345]\n", + " [0.21339307 0.03382097 0.97638084]\n", + " [0.21356684 0.00484709 0.97691643]\n", + " [0.20658103 0.20098859 0.9575635 ]\n", + " [0.18015754 0.20282418 0.96249967]\n", + " [0.1530338 0.20440426 0.96685033]\n", + " [0.12531307 0.20572264 0.97055388]\n", + " [0.09710338 0.20677589 0.97355774]\n", + " [0.06851504 0.2075618 0.97581955]\n", + " [0.03965966 0.2080787 0.97730771]\n", + " [0.01064976 0.20832528 0.97800162]\n", + " [0.21356684 0.00484709 0.97691643]\n", + " [0.18621882 0.00490326 0.98249606]\n", + " [0.15815829 0.00495363 0.98740135]\n", + " [0.12949192 0.00499813 0.99156788]\n", + " [0.10032565 0.0050366 0.99494191]\n", + " [0.07076705 0.00506881 0.99747999]\n", + " [0.04092766 0.00509451 0.99914912]\n", + " [0.01092393 0.00511348 0.99992726]\n", + " [0.01064976 0.20832528 0.97800162]\n", + " [0.01072986 0.18083307 0.98345527]\n", + " [0.01079662 0.15264908 0.98822148]\n", + " [0.01085001 0.12387974 0.99223792]\n", + " [0.01088978 0.09463112 0.99545284]\n", + " [0.0109156 0.06501141 0.99782482]\n", + " [0.01092708 0.0351331 0.9993229 ]\n", + " [0.01092393 0.00511348 0.99992726]\n", + " [0.20731213 0.18952259 0.95974104]\n", + " [0.20935192 0.15655094 0.96522722]\n", + " [0.21098964 0.12266162 0.96976157]\n", + " [0.21221814 0.08805229 0.97324727]\n", + " [0.21303349 0.05292621 0.97561035]\n", + " [0.21343308 0.01748945 0.97680113]\n", + " [0.19515895 0.20172997 0.95980102]\n", + " [0.16228971 0.20380791 0.96546589]\n", + " [0.12847052 0.20549566 0.97018908]\n", + " [0.09389848 0.20678588 0.97386995]\n", + " [0.05877657 0.20767444 0.97643056]\n", + " [0.02331064 0.20815839 0.97781731]\n", + " [0.20173739 0.00497187 0.97942703]\n", + " [0.16772694 0.00503783 0.98582062]\n", + " [0.13275239 0.00509482 0.99113614]\n", + " [0.09700904 0.00514259 0.99527021]\n", + " [0.06069518 0.00518073 0.9981429 ]\n", + " [0.02401827 0.00520877 0.99969795]\n", + " [0.01078606 0.19643015 0.98045849]\n", + " [0.01087623 0.16225698 0.98668859]\n", + " [0.01094616 0.1271506 0.99182302]\n", + " [0.01099551 0.09130636 0.99576214]\n", + " [0.01102363 0.0549237 0. 0.2783502 -29.64459399]\n", + " [ 0.27980117 -24.26859418]\n", + " [ 0.28125214 -18.89259438]\n", + " [ 0.28270311 -13.51659457]\n", + " [ 0.28415408 -8.14059477]\n", + " [ 0.28560505 -2.76459497]\n", + " [ 2.175338 -31.54260605]\n", + " [ 7.55133781 -31.54405702]\n", + " [ 12.92733761 -31.54550799]\n", + " [ 18.30333742 -31.54695896]\n", + " [ 23.67933722 -31.54840993]\n", + " [ 29.05533702 -31.5498609 ]\n", + " [ 2.18361712 -0.86760716]\n", + " [ 7.55961692 -0.86905814]\n", + " [ 12.93561673 -0.87050911]\n", + " [ 18.31161653 -0.87196007]\n", + " [ 23.68761633 -0.87341105]\n", + " [ 29.06361614 -0.87486202]\n", + " [ 30.95334909 -29.6528731 ]\n", + " [ 30.95480005 -24.27687329]\n", + " [ 30.95625103 -18.90087349]\n", + " [ 30.95770199 -13.52487368]\n", + " [ 30.95915297 -8.14887388]\n", + " [ 30.96060394 -2.77287408]\n", + " [ 0.27783807 -31.54209392]\n", + " [ 0.27783807 -31.54209392]\n", + " [ 30.96111607 -0.87537415]\n", + " [ 30.96111607 -0.87537415]\n", + " [ 2.17585013 -29.64510611]\n", + " [ 7.55184994 -29.64655709]\n", + " [ 12.92784974 -29.64800806]\n", + " [ 18.30384955 -29.64945903]\n", + " [ 23.67984935 -29.65091 ]\n", + " [ 29.05584916 -29.65236097]\n", + " [ 2.1773011 - [-12.895377 24.075011 ]\n", + " [-18.271377 24.075011 ]\n", + " [-23.647377 24.075011 ]\n", + " [-29.023377 24.075011 ]\n", + " [ -2.143377 18.699011 ]\n", + " [ -7.519377 18.699011 ]\n", + " [-12.895377 18.699011 ]\n", + " [-18.271377 18.699011 ]\n", + " [-23.647377 18.699011 ]\n", + " [-29.023377 18.699011 ]\n", + " [ -2.143377 13.323011 ]\n", + " [ -7.519377 13.323011 ]\n", + " [-12.895377 13.323011 ]\n", + " [-18.271377 13.323011 ]\n", + " [-23.647377 13.323011 ]\n", + " [-29.023377 13.323011 ]\n", + " [ -2.143377 7.947011 ]\n", + " [ -7.519377 7.947011 ]\n", + " [-12.895377 7.947011 ]\n", + " [-18.271377 7.947011 ]\n", + " [-23.647377 7.947011 ]\n", + " [-29.023377 7.947011 ]\n", + " [ -2.143377 2.571011 ]\n", + " [ -7.519377 2.571011 ]\n", + " [-12.895377 2.571011 ]\n", + " [-18.271377 2.571011 ]\n", + " [-23.647377 2.571011 ]\n", + " [-29.023377 2.571011 ]]\n", + "9984297 ]\n", + " [0.01102984 0.01821176 0.99977331]\n", + " [0.2064986 0.20090587 0.95759864]\n", + " [0.2064986 0.20090587 0.95759864]\n", + " [0.01102671 0.00521618 0.9999256 ]\n", + " [0.01102671 0.00521618 0.999925624.26910631]\n", + " [ 7.55330091 -24.27055728]\n", + " [ 12.92930071 -24.27200825]\n", + " [ 18.30530052 -24.27345922]\n", + " [ 23.68130032 -24.27491019]\n", + " [ 29.05730013 -24.27636116]\n", + " [ 2.17875207 -18.89310651]\n", + " [ 7.55475188 -18.89455748]\n", + " [ 12.93075168 -18.89600845]\n", + " [ 18.30675149 -18.89745942]\n", + " [ 23.68275129 -18.89891039]\n", + " [ 29.0587511 -18.90036136]\n", + " [ 2.18020304 -13.51710671]\n", + " [ 7.55620285 -13.51855767]\n", + " [ 12.93220265 -13.52000864]\n", + " [ 18.30820245 -13.52145961]\n", + " [ 23.68420226 -13.52291058]\n", + " [ 29.06020207 -13.52436156]\n", + " [ 2.18165401 -8.1411069 ]\n", + " [ 7.55765382 -8.14255787]\n", + " [ 12.93365363 -8.14400884]\n", + " [ 18.30965343 -8.14545981]\n", + " [ 23.68565323 -8.14691078]\n", + " [ 29.06165303 -8.14836175]\n", + " [ 2.18310498 -2.76510709]\n", + " [ 7.55910479 -2.76655806]\n", + " [ 12.93510459 -2.76800904]\n", + " [ 18.31110439 -2.76946001]\n", + " [ 23.68710421 -2.77091098]\n", + " [ 29.063104 -2.77236195]]\n", + " ]\n", + " [0.19592714 0.19029998 0.96197634]\n", + " [0.16292559 0.19225876 0.96772508]\n", + " [0.1289709 0.19384904 0.97251687]\n", + " [0.09426176 0.19506507 0.97625014]\n", + " [0.0590016 0.19590316 0.97884665]\n", + " [0.02339654 0.19636024 0.98025265]\n", + " [0.19785166 0.15719218 0.96754604]\n", + " [0.16451646 0.15880644 0.97350647]\n", + " [0.13022261 0.16011755 0.97847046]\n", + " [0.09517088 0.16112232 0.98233503]\n", + " [0.05956467 0.16181718 0.98502145]\n", + " [0.02361044 0.1621981 0.98647571]\n", + " [0.19939573 0.12316354 0.97214818]\n", + " [0.16579218 0.12442767 0.97827946]\n", + " [0.13122742 0.12545686 0.98338189]\n", + " [0.09590173 0.12624866 0.98735208]\n", + " [0.06001727 0.12679897 0.99011108]\n", + " [0.02378066 0.1271029 0.99160442]\n", + " [0.20055377 0.08841323 0.97568503]\n", + " [0.16674959 0.08932369 0.98194493]\n", + " [0.13198281 0.09006766 0.98715164]\n", + " [0.09645193 0.09064294 0.99120174]\n", + " [0.06035751 0.0910454 0.99401595]\n", + " [0.0239064 0.09127018 0.99553917]\n", + " [0.20132229 0.05314506 0.97808228]\n", + " [0.16738526 0.05369842 0.98442808]\n", + " [0.13248471 0.05415286 0.98970464]\n", + " [0.09681723 0.05450669 0.99380856]\n", + " [0.06058199 0.05475678 0.99666018]\n", + " [0.02398618 0.05489951 0.99820374]\n", + " [0.20169858 0.0175654 0.97929012]\n", + " [0.16769559 0.01775879 0.DEBUG:root:make_az_asym: xyp: [[ -0.172993 31.426621 ]\n", + " [ -0.172993 27.04019243]\n", + " [ -0.172993 22.65376385]\n", + " [ -0.172993 18.26733528]\n", + " [ -0.172993 13.88090671]\n", + " [ -0.172993 9.49447814]\n", + " [ -0.172993 5.10804957]\n", + " [ -0.172993 0.721621 ]\n", + " [ -0.172993 31.426621 ]\n", + " [ -4.55942157 31.426621 ]\n", + " [ -8.94585014 31.426621 ]\n", + " [-13.33227871 31.426621 ]\n", + " [-17.71870729 31.426621 ]\n", + " [-22.10513586 31.426621 ]\n", + " [-26.49156443 31.426621 ]\n", + " [-30.877993 31.426621 ]\n", + " [ -0.172993 0.721621 ]\n", + " [ -4.55942157 0.721621 ]\n", + " [ -8.94585014 0.721621 ]\n", + " [-13.33227872 0.721621 ]\n", + " [-17.71870728 0.721621 ]\n", + " [-22.10513586 0.721621 ]\n", + " [-26.49156443 0.721621 ]\n", + " [-30.877993 0.721621 ]\n", + " [-30.877993 31.426621 ]\n", + " [-30.877993 27.04019243]\n", + " [-30.877993 22.65376385]\n", + " [-30.877993 18.26733529]\n", + " [-30.877993 13.88090671]\n", + " [-30.877993 9.49447814]\n", + " [-30.877993 5.10804957]\n", + " [-30.877993 0.721621 ]\n", + " [ -0.187993 29.514121 ]\n", + " [ -0.187993 24.138121 ]\n", + " [ -0.187993 18.76212101]\n", + " [ -0.187993 13.386121 ]\n", + " [ -0.187993 8.010121 ]\n", + " [ -0.187993 2.634121 ]\n", + " [ -2.085493 31.411621 ]\n", + " [ -7.461493 31.411621 ]\n", + " [-12.837493 31.411621 ]\n", + " [-18.213493 31.411621 ]\n", + " [-23.589493 31.411621 ]\n", + " [-28.965493 31.411621 ]\n", + " [ -2.085493 0.736621 ]\n", + " [ -7.461493 0.736621 ]\n", + " [-12.837493 0.736621 ]\n", + " [-18.213493 0.736621 ]\n", + " [-23.58949299 0.736621 ]\n", + " [-28.965493 0.736621 ]\n", + " [-30.862993 29.514121 ]\n", + " [-30.862993 24.138121 ]\n", + " [-30.862993 18.762121 ]\n", + " [-30.862993 13.386121 ]\n", + " [-30.862993 8.010121 ]\n", + " [-30.862993 2.634121 ]\n", + " [ -0.187993 31.411621 ]\n", + " [ -0.187993 31.411621 ]\n", + " [-30.862993 0.736621 ]\n", + " [-30.862993 0.736621 ]\n", + " [ -2.085493 29.514121 ]\n", + " [ -7.461493 29.514121 ]\n", + " [-12.837493 29.514121 ]\n", + " [-18.213493 29.514121 ]\n", + " [-23.589493 29.514121 ]\n", + " [-28.965493 29.514121 ]\n", + " [ -2.085493 24.138121 ]\n", + " [ -7.461493 24.138121 ]\n", + " [-12.837493 24.138121 ]\n", + " [-18.213493 24.138121 ]\n", + " [-23.589493 24.138121 ]\n", + " [-28.965493 24.138121 ]\n", + " [ -2.085493 18.762121 ]\n", + " [ -7.461493 18.762121 ]\n", + " [-12.837493 18.762121 ]\n", + " [-18.213493 18.762121 ]\n", + " [-23.589493 18.762121 ]\n", + " [-28.965493 18.762121 ]\n", + " [ -2.085493 13.386121 ]\n", + " [ -7.461493 13.386121 ]\n", + " [-12.837493 13.386121 ]\n", + " [-18.213493 13.386121 ]\n", + " [-23.589493 13.386121 ]\n", + " [-28.965493 13.386121 ]\n", + " [ -2.085493 8.010121 ]\n", + " [ -7.461493 8.010121 ]\n", + " [-12.837493 8.010121 ]\n", + " [-18.213493 8.010121 ]\n", + " [-23.589493 8.010121 ]\n", + " [-28.965493 8.010121 ]\n", + " [ -2.085493 2.634121 ]\n", + " [ -7.461493 2.634121 ]\n", + " [-12.837493 2.634121 ]\n", + " [-18.213493 2.634121 ]\n", + " [-23.589493 2.634121 ]\n", + " [-28.965493 2.634121 ]]\n", + "DEBUG:root:radec2pix: xyfp Shape: (96, 2)\n", + "DEBUG:root:mm_to_pix: fitpx: [[0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0DEBUG:root:make_az_asym: xyp: shape: (96, 2)\n", + "DEBUG:root:radec2pix: ccdpx: [[-4.45000000e+01 -5.00000261e-01]\n", + " [-4.45000000e+01 2.91928571e+02]\n", + " [-4.45000000e+01 5.84357143e+02]\n", + " [-4.45000000e+01 8.76785715e+02]\n", + " [-4.45000000e+01 1.16921429e+03]\n", + " [-4.45000000e+01 1.46164286e+03]\n", + " [-4.45000000e+01 1.75407143e+03]\n", + " [-4.44999999e+01 2.04650000e+03]\n", + " [-4.45000000e+01 -5.00000261e-01]\n", + " [ 2.47928571e+02 -5.00000125e-01]\n", + " [ 5.40357143e+02 -4.99999959e-01]\n", + " [ 8.32785714e+02 -5.00000265e-01]\n", + " [ 1.12521429e+03 -4.99999989e-01]\n", + " [ 1.41764286e+03 -4.99999804e-01]\n", + " [ 1.71007143e+03 -4.99999857e-01]\n", + " [ 2.00250000e+03 -5.00000247e-01]\n", + " [-4.44999999e+01 2.04650000e+03]\n", + " [ 2.47928572e+02 2.04650000e+03]\n", + " [ 5.40357143e+02 2.04650000e+03]\n", + " [ 8.32785714e+02 2.04650000e+03]\n", + " [ 1.12521429e+03 2.04650000e+03]\n", + " [ 1.41764286e+03 2.04650000e+03]\n", + " [ 1.71007143e+03 2.04650000e+03]\n", + " [ 2.00250000e+03 2.04650000e+03]\n", + " [ 2.00250000e+03 -5.00000247e-01]\n", + " [ 2.00250000e+03 2.91928571e+02]\n", + " [ 2.00250000e+03 5.84357143e+02]\n", + " [ 2.00250000e+03 8.76785714e+02]\n", + " [ 2.00250000e+03 1.16921429e+03]\n", + " [ 2.00250000e+03 1.46164286e+03]\n", + " [ 2.00250000e+03 1.75407143e+03]\n", + " [ 2.00250000e+03 2.04650000e+03]\n", + " [-4.35000000e+01 1.27000000e+02]\n", + " [-4.35000000e+01 4.85400000e+02]\n", + " [-4.35000000e+01 8.43800000e+02]\n", + " [-4.35000000e+01 1.20220000e+03]\n", + " [-4.35000000e+01 1.56060000e+03]\n", + " [-4.35000000e+01 1.91900000e+03]\n", + " [ 8.30000000e+01 4.99999891e-01]\n", + " [ 4.41400000e+02 5.00000001e-01]\n", + " [ 7.99800000e+02 5.00000129e-01]\n", + " [ 1.15820000e+03 5.00000084e-01]\n", + " [ 1.51660000e+03 5.00000000e-01]\n", + " [ 1.87500000e+03 5.00000003e-01]\n", + " [ 8.30000000e+01 2.04550000e+03]\n", + " [ 4.41400000e+02 2.04550000e+03]\n", + " [ 7.99800000e+02 2.04550000e+03]\n", + " [ 1.15820000e+03 2.04550000e+03]\n", + " [ 1.51660000e+03 2.04550000e+03]\n", + " [ 1.87500000e+03 2.04550000e+03]\n", + " [ 2.00150000e+03 1.27000000e+02]\n", + " [ 2.00150000e+03 4.85400000e+02]\n", + " [ 2.00150000e+03 8.43800000e+02]\n", + " [ 2.00150000e+03 1.20220000e+03]\n", + " [ 2.00150000e+03 1.56060000e+03]\n", + " [ 2.00150000e+03 1.91900000e+03]\n", + " [-4.35000000e+01 4.99999945e-01]\n", + " [-4.35000000e+01 4.99999945e-01]\n", + " [ 2.00150000e+03 2.04550000e+03]\n", + " [ 2.00150000e+03 2.04550000e+03]\n", + " [ 8.30000000e+01 1.27000000e+02]\n", + " [ 4.41400000e+02 1.27000000e+02]\n", + " [ 7.99800000e+02 1.27000000e+02]\n", + " [ 1.15820000e+03 1.27000000e+02]\n", + " [ 1.51660000e+03 1.27000000e+02]\n", + " [ 1.87500000e+03 1.27000000e+02]\n", + " [ 8.30000000e+01 4.85400000e+02]\n", + " [ 4.41400000e+02 4.85400000e+02]\n", + " [ 7.99800000e+02 4.85400000e+02]\n", + " [ 1.15820000e+03 4.85400000e+02]\n", + " [ 1.51660000e+03 4.85400000e+02]\n", + " [ 1.87500000e+03 4.85400000e+02]\n", + " [ 8.30000000e+01 8.43800000e+02]\n", + " [ 4.41400000e+02 8.43800000e+02]\n", + " [ 7.99800000e+02 8.43800000e+02]\n", + " [ 1.15820000e+03 8.43800000e+02]\n", + " [ 1.51660000e+03 8.43800000e+02]\n", + " [ 1.87500000e+03 8.43800000e+02]\n", + " [ 8.30000000e+01 1.20220000e+03]\n", + " [ 4.41400000e+02 1.20220000e+03]\n", + " [ 7.99800000e+02 1.20220000e+03]\n", + " [ 1.15820000e+03 1.20220000e+03]\n", + " [ 1.51660000e+03 1.20220000e+03]\n", + " [ 1.87500000e+03 1DEBUG:root:mm_to_pix: fitpx.shape: (96, 2)\n", + "DEBUG:root:fitpix2pix: visCut: True\n", + "DEBUG:root:radec2pix: fitpx: [[ 2.13550000e+03 -4.99999951e-01]\n", + " [ 2.13550000e+03 2.91928572e+02]\n", + " [ 2.13550000e+03 5.84357142e+02]\n", + " [ 2.13550000e+03 8.76785714e+02]\n", + " [ 2.13550000e+03 1.16921429e+03]\n", + " [ 2.13550000e+03 1.46164286e+03]\n", + " [ 2.13550000e+03 1.75407143e+03]\n", + " [ 2.13550000e+03 2.04650000e+03]\n", + " [ 2.13550000e+03 -4.99999951e-01]\n", + " [ 2.42792857e+03 -5.00000176e-01]\n", + " [ 2.72035714e+03 -5.00000069e-01]\n", + " [ 3.01278571e+03 -5.00000257e-01]\n", + " [ 3.30521429e+03 -4.99999992e-01]\n", + " [ 3.59764286e+03 -5.00000241e-01]\n", + " [ 3.89007143e+03 -4.99999730e-01]\n", + " [ 4.18250000e+03 -5.00000010e-01]\n", + " [ 2.13550000e+03 2.04650000e+03]\n", + " [ 2.42792857e+03 2.04650000e+03]\n", + " [ 2.72035714e+03 2.04650000e+03]\n", + " [ 3.01278571e+03 2.04650000e+03]\n", + " [ 3.30521429e+03 2.04650000e+03]\n", + " [ 3.59764286e+03 2.04650000e+03]\n", + " [ 3.89007143e+03 2.04650000e+03]\n", + " [ 4.18250000e+03 2.04650000e+03]\n", + " [ 4.18250000e+03 -5.00000010e-01]\n", + " [ 4.18250000e+03 2.91928572e+02]\n", + " [ 4.18250000e+03 5.84357143e+02]\n", + " [ 4.18250000e+03 8.76785714e+02]\n", + " [ 4.18250000e+03 1.16921429e+03]\n", + " [ 4.18250000e+03 1.46164286e+03]\n", + " [ 4.18250000e+03 1.75407143e+03]\n", + " [ 4.18250000e+03 2.04650000e+03]\n", + " [ 2.13650000e+03 1.27000000e+02]\n", + " [ 2.13650000e+03 4.85400000e+02]\n", + " [ 2.13650000e+03 8.43800000e+02]\n", + " [ 2.13650000e+03 1.20220000e+03]\n", + " [ 2.13650000e+03 1.56060000e+03]\n", + " [ 2.13650000e+03 1.91900000e+03]\n", + " [ 2.26300000e+03 4.99999720e-01]\n", + " [ 2.62140000e+03 4.99999983e-01]\n", + " [ 2.97980000e+03 4.99999771e-01]\n", + " [ 3.33820000e+03 4.99999773e-01]\n", + " [ 3.69660000e+03 5.00000075e-01]\n", + " [ 4.05500000e+03 4.99999913e-01]\n", + " [ 2.26300000e+03 2.04550000e+03]\n", + " [ 2.62140000e+03 2.04550000e+03]\n", + " [ 2.97980000e+03 2.04550000e+03]\n", + " [ 3.33820000e+03 2.04550000e+03]\n", + " [ 3.69660000e+03 2.04550000e+03]\n", + " [ 4.05500000e+03 2.04550000e+03]\n", + " [ 4.18150000e+03 1.27000000e+02]\n", + " [ 4.18150000e+03 4.85400000e+02]\n", + " [ 4.18150000e+03 8.43800000e+02]\n", + " [ 4.18150000e+03 1.20220000e+03]\n", + " [ 4.18150000e+03 1.56060000e+03]\n", + " [ 4.18150000e+03 1.91900000e+03]\n", + " [ 2.13650000e+03 4.99999930e-01]\n", + " [ 2.13650000e+03 4.99999930e-01]\n", + " [ 4.18150000e+03 2.04550000e+03]\n", + " [ 4.18150000e+03 2.04550000e+03]\n", + " [ 2.26300000e+03 1.27000000e+02]\n", + " [ 2.62140000e+03 1.27000000e+02]\n", + " [ 2.97980000e+03 1.27000000e+02]\n", + " [ 3.33820000e+03 1.27000000e+02]\n", + " [ 3.69660000e+03 1.27000000e+02]\n", + " [ 4.05500000e+03 1.27000000e+02]\n", + " [ 2.26300000e+03 4.85400000e+02]\n", + " [ 2.62140000e+03 4.85400000e+02]\n", + " [ 2.97980000e+03 4.85400000e+02]\n", + " [ 3.33820000e+03 4.85400000e+02]\n", + " [ 3.69660000e+03 4.85400000e+02]\n", + " [ 4.05500000e+03 4.85400000e+02]\n", + " [ 2.26300000e+03 8.43800000e+02]\n", + " [ 2.62140000e+03 8.43800000e+02]\n", + " [ 2.97980000e+03 8.43800000e+02]\n", + " [ 3.33820000e+03 8.43800000e+02]\n", + " [ 3.69660000e+03 8.43800000e+02]\n", + " [ 4.05500000e+03 8.43800000e+02]\n", + " [ 2.26300000e+03 1.20220000e+03]\n", + " [ 2.62140000e+03 1.20220000e+03]\n", + " [ 2.97980000e+03 1.20220000e+03]\n", + " [ 3.33820000e+03 1.20220000e+03]\n", + " [ 3.69660000e+03 1.20220000e+03]\n", + " [ 4.05500000e+03 1.20220000e+03]\n", + " [ 2.26300000e+03 1.56060000e+03]\n", + " [ 2.62140000e+03 1.56060000e+03]\n", + " [ 2.97980000e+03 1.56060000e+03]\n", + " [ 3.33820000e+03 1.56060000e+03]\n", + " [ 3.69660000e+03 1.56060000e+03]\n", + " [ 4.05500000e+03 1.56060000e+03]\n", + " [ 2.26300000e+03 1.91900000e+03]\n", + " [ 2.62140000e+03 1.91900000e+03]\n", + " [ 2.97980000e+03 1.91900000e+03]\n", + " [ 3.33820000e+03 1.91900000e+03]\n", + " [ 3.69660000e+03 1.91900000e+03]\n", + " [ 4.05500000e+03 1.91900000e+03]]\n", + "DEBUG:root:mm_to_pix: fitpx: [[0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]]\n", + ".]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]]\n", + "98567886]\n", + " [0.13272857 0.01791986 0.99099042]\n", + " [0.09699294 0.01804791 0.99512142]\n", + " [0.06068709 0.01814173 0.99799196]\n", + " [0.02401844 0.01819993 0.99954584]]\n", + "DEBUG:root:fitpix2pix: ccdpx: shape: (96, 2)\n", + "DEBUG:root:radec2pix: xyfp: [[ -0.172993 31.426621 ]\n", + " [ -0.172993 27.04019243]\n", + " [ -0.172993 22.65376385]\n", + " [ -0.172993 18.26733528]\n", + " [ -0.172993 13.88090671]\n", + " [ -0.172993 9.49447814]\n", + " [ -0.172993 5.10804957]\n", + " [ -0.172993 0.721621 ]\n", + " [ -0.172993 31.426621 ]\n", + " [ -4.55942157 31.426621 ]\n", + " [ -8.94585014 31.426621 ]\n", + " [-13.33227871 31.426621 ]\n", + " [-17.71870729 31.426621 ]\n", + " [-22.10513586 31.426621 ]\n", + " [-26.49156443 31.426621 ]\n", + " [-30.877993 31.426621 ]\n", + " [ -0.172993 0.721621 ]\n", + " [ -4.55942157 0.721621 ]\n", + " [ -8.94585014 0.721621 ]\n", + " [-13.33227872 0.721621 ]\n", + " [-17.71870728 0.721621 ]\n", + " [-22.10513586 0.721621 ]\n", + " [-26.49156443 0.721621 ]\n", + " [-30.877993 0.721621 ]\n", + " [-30.877993 31.426621 ]\n", + " [-30.877993 27.04019243]\n", + " [-30.877993 22.65376385]\n", + " [-30.877993 18.26733529]\n", + " [-30.877993 13.88090671]\n", + " [-30.877993 9.49447814]\n", + " [-30.877993 5.10804957]\n", + " [-30.877993 0.721621 ]\n", + " [ -0.187993 29.514121 ]\n", + " [ -0.187993 24.138121 ]\n", + " [ -0.187993 18.76212101]\n", + " [ -0.187993 13.386121 ]\n", + " [ -0.187993 8.010121 ]\n", + " [ -0.187993 2.634121 ]\n", + " [ -2.085493 31.411621 ]\n", + " [ -7.461493 31.411621 ]\n", + " [-12.837493 31.411621 ]\n", + " [-18.213493 31.411621 ]\n", + " [-23.589493 31.411621 ]\n", + " [-28.965493 31.411621 ]\n", + " [ -2.085493 0.736621 ]\n", + " [ -7.461493 0.736621 ]\n", + " [-12.837493 0.736621 ]\n", + " [-18.213493 0.736621 ]\n", + " [-23.58949299 0.736621 ]\n", + " [-28.965493 0.736621 ]\n", + " [-30.862993 29.514121 ]\n", + " [-30.862993 24.138121 ]\n", + " [-30.862993 18.762121 ]\n", + " [-30.862993 13.386121 ]\n", + " [-30.862993 8.010121 ]\n", + " [-30.862993 2.634121 ]\n", + " [ -0.187993 31.411621 ]\n", + " [ -0.187993 31.411621 ]\n", + " [-30.862993 0.736621 ]\n", + " [-30.862993 0.736621 ]\n", + " [ -2.085493 29.514121 ]\n", + " [ -7.461493 29.514121 ]\n", + " [-12.837493 29.514121 ]\n", + " [-18.213493 29.514121 ]\n", + " [-23.589493 29.514121 ]\n", + " [-28.965493 29.514121 ]\n", + " [ -2.085493 24.138121 ]\n", + " [ -7.461493 24.138121 ]\n", + " [-12.837493 24.138121 ]\n", + " [-18.213493 24.138121 ]\n", + " [-23.589493 24.138121 ]\n", + " [-28.965493 24.138121 ]\n", + " [ -2.085493 18.762121 ]\n", + " [ -7.461493 18.762121 ]\n", + " [-12.837493 18.762121 ]\n", + " [-18.213493 18.762121 ]\n", + " [-23.589493 18.762121 ]\n", + " [-28.965493 18.762121 ]\n", + " [ -2.085493 13.386121 ]\n", + " [ -7.461493 13.386121 ]\n", + " [-12.837493 13.386121 ]\n", + " [-18.213493 13.386121 ]\n", + " [-23.589493 13.386121 ]\n", + " [-28.965493 13.386121 ]\n", + " [ -2.085493 8.010121 ]\n", + " [ -7.461493 8.010121 ]\n", + " [-12.837493 8.010121 ]\n", + " [-18.213493 8.010121 ]\n", + " [-23.589493 8.010121 ]\n", + " [-28.965493 8.010121 ]\n", + " [ -2.085493 2.634121 ]\n", + " [ -7.461493 2.634121 ]\n", + " [-12.837493 2.634121 ]\n", + " [-18.213493 2.634121 ]\n", + " [-23.589493 2.634121 ]\n", + " [-28.965493 2.634121 ]]\n", + ".20220000e+03]\n", + " [ 8.30000000e+01 1.56060000e+03]\n", + " [ 4.41400000e+02 1.56060000e+03]\n", + " [ 7.99800000e+02 1.56060000e+03]\n", + " [ 1.15820000e+03 1.56060000e+03]\n", + " [ 1.51660000e+03 1.56060000e+03]\n", + " [ 1.87500000e+03 1.56060000e+03]\n", + " [ 8.29999998e+01 1.91900000e+03]\n", + " [ 4.41400000e+02 1.91900000e+03]\n", + " [ 7.99800000e+02 1.91900000e+03]\n", + " [ 1.15820000e+03 1.91900000e+03]\n", + " [ 1.51660000e+03 1.91900000e+03]\n", + " [ 1.87500000e+03 1.91900000e+03]]\n", + " [ 0.08483539 -0.19555447 0.97701659]\n", + " [ 0.11969997 -0.19445357 0.97358088]\n", + " [ 0.15386543 -0.19297773 0.96906399]\n", + " [ 0.18712908 -0.19112874 0.96356241]\n", + " [ 0.01396162 -0.1624649 0.98661554]\n", + " [ 0.04996174 -0.16218264 0.98549511]\n", + " [ 0.08566901 -0.16158454 0.98313339]\n", + " [ 0.1208763 -0.16067502 0.97957769]\n", + " [ 0.15538076 -0.15945889 0.97489983]\n", + " [ 0.1889821 -0.15793949 0.969196 ]\n", + " [ 0.01407199 -0.12737685 0.99175456]\n", + " [ 0.05035615 -0.12715419 0.99060389]\n", + " [ 0.08634371 -0.12668294 0.98817822]\n", + " [ 0.12182616 -0.12596768 0.98452554]\n", + " [ 0.15660103 -0.12501365 0.97971818]\n", + " [ 0.19047015 -0.12382499 0.9738524 ]\n", + " [ 0.01415593 -0.0915474 0.9957001 ]\n", + " [ 0.05065593 -0.09138626 0.99452628]\n", + " [ 0.08685581 -0.09104555 0.9920518 ]\n", + " [ 0.12254563 -0.09052922 0.98832537]\n", + " [ 0.15752301 -0.08984197 0.98342001]\n", + " [ 0.1915915 -0.08898771 0.97743229]\n", + " [ 0.01421257 -0.05517797 0.99837538]\n", + " [ 0.05085809 -0.05508029 0.99718585]\n", + " [ 0.08720077 -0.05487388 0.99467828]\n", + " [ 0.12302951 -0.05456144 0.99090201]\n", + " [ 0.15814189 -0.05414617 0.9859307 ]\n", + " [ 0.1923426 -0.05363087 0.97986124]\n", + " [ 0.01424114 -0.01847933 0.99972782]\n", + " [ 0.05096003 -0.01844651 0.99853032]\n", + " [ 0.08737459 -0.01837718 0.996006 ]\n", + " [ 0.12327308 -0.0182723 0.99220455]\n", + " [ 0.15845303 -0.018133 0.9872 ]\n", + " [ 0.1927197 -0.01796031 0.98108947]]\n", + "DEBUG:root:mm_to_pix: fitpx.shape: (96, 2)\n", + "DEBUG:root:fitpix2pix: visCut: True\n", + "DEBUG:root:radec2pix: xyfp: [[ 0.236018 -31.56946754]\n", + " [ 0.23651287 -27.18303899]\n", + " [ 0.23700774 -22.79661046]\n", + " [ 0.23750261 -18.41018192]\n", + " [ 0.23799748 -14.02375336]\n", + " [ 0.23849235 -9.63732482]\n", + " [ 0.23898721 -5.25089628]\n", + " [ 0.23948208 -0.86446773]\n", + " [ 0.236018 -31.56946754]\n", + " [ 4.62244655 -31.56996241]\n", + " [ 9.00887509 -31.57045728]\n", + " [ 13.39530363 -31.57095214]\n", + " [ 17.78173218 -31.57144701]\n", + " [ 22.16816072 -31.57194188]\n", + " [ 26.55458927 -31.57243675]\n", + " [ 30.94101781 -31.57293162]\n", + " [ 0.23948208 -0.86446773]\n", + " [ 4.62591062 -0.8649626 ]\n", + " [ 9.01233917 -0.86545747]\n", + " [ 13.39876771 -0.86595234]\n", + " [ 17.78519626 -0.86644721]\n", + " [ 22.1716248 -0.86694208]\n", + " [ 26.55805334 -0.86743695]\n", + " [ 30.94448189 -0.86793181]\n", + " [ 30.94101781 -31.57293162]\n", + " [ 30.94151268 -27.18650307]\n", + " [ 30.94200754 -22.80007453]\n", + " [ 30.94250242 -18.41364599]\n", + " [ 30.94299728 -14.02721745]\n", + " [ 30.94349215 -9.6407889 ]\n", + " [ 30.94398702 -5.25436036]\n", + " [ 30.94448189 -0.86793181]\n", + " [ 0.25123377 -29.65696924]\n", + " [ 0.25184028 -24.28096928]\n", + " [ 0.25244679 -18.90496931]\n", + " [ 0.2530533 -13.52896935]\n", + " [ 0.25365981 -8.15296938]\n", + " [ 0.25426632 -2.77696942]\n", + " [ 2.14851968 -31.5546833 ]\n", + " [ 7.52451965 -31.55528981]\n", + " [ 12.90051962 -31.55589633]\n", + " [ 18.27651958 -31.55650284]\n", + " [ 23.65251954 -31.55710934]\n", + " [ 29.02851952 -31.55771586]\n", + " [ 2.15198038 -0.8796835 ]\n", + " [ 7.52798035 -0.88029001]\n", + " [ 12.90398031 -0.88089652]\n", + " [ 18.27998027 -0.88150303]\n", + " [ 23.65598025 -0.88210954]\n", + " [ 29.03198021 -0.88271605]\n", + " [ 30.92623357 -29.66042994]\n", + " [ 30.92684009 -24.28442998]\n", + " [ 30.9274466 -18.90843001]\n", + " [ 30.9280531 -13.53243004]\n", + " [ 30.92865961 -8.15643008]\n", + " [ 30.92926612 -2.78043011]\n", + " [ 0.2510197 -31.55446923]\n", + " [ 0.2510197 -31.55446923]\n", + " [ 30.9294802 -0.88293012]\n", + " [ 30.9294802 -0.88293012]\n", + " [ 2.14873376 -29.65718332]\n", + " [ 7.52473372 -29.65778983]\n", + " [ 12.90073369 -29.65839633]\n", + " [ 18.27673365 -29.65900285]\n", + " [ 23.65273362 -29.65960936]\n", + " [ 29.02873359 -29.66021587]\n", + " [ 2.14934027 -24.28118335]\n", + " [ 7.52534023 -24.28178986]\n", + " [ 12.9013402 -24.28239637]\n", + " [ 18.27734016 -24.28300288]\n", + " [ 23.65334013 -24.28360939]\n", + " [ 29.02934009 -24.2842159 ]\n", + " [ 2.14994678 -18.90518338]\n", + " [ 7.52594674 -18.90578989]\n", + " [ 12.90194671 -18.9063964 ]\n", + " [ 18.27794667 -18.90700292]\n", + " [ 23.65394664 -18.90760943]\n", + " [ 29.0299466 -18.90821593]\n", + " [ 2.15055329 -13.52918342]\n", + " [ 7.52655325 -13.52978993]\n", + " [ 12.90255322 -13.53039644]\n", + " [ 18.27855318 -13.53100295]\n", + " [ 23.65455315 -13.53160946]\n", + " [ 29.03055312 -13.53221597]\n", + " [ 2.1511598 -8.15318346]\n", + " [ 7.52715976 -8.15378996]\n", + " [ 12.90315973 -8.15439647]\n", + " [ 18.27915969 -8.15500298]\n", + " [ 23.65515966 -8.15560949]\n", + " [ 29.03115962 -8.156216 ]\n", + " [ 2.1517663 -2.77718348]\n", + " [ 7.52776627 -2.77779 ]\n", + " [ 12.90376624 -2.77839651]\n", + " [ 18.2797662 -2.77900302]\n", + " [ 23.65576617 -2.77960953]\n", + " [ 29.03176613 -2.78021604]]\n", + "DEBUG:root:radec2pix: xyfp Shape: (96, 2)\n", + "DEBUG:root:mm_to_pix: fitpx.shape: (96, 2)\n", + "DEBUG:root:radec2pix: xyfp: [[-32.31281793 -31.43806373]\n", + " [-32.31091541 -27.05163558]\n", + " [-32.30901287 -22.66520742]\n", + " [-32.30711034 -18.27877926]\n", + " [-32.3052078 -13.8923511 ]\n", + " [-32.30330527 -9.50592294]\n", + " [-32.30140274 -5.11949478]\n", + " [-32.2995002 -0.73306663]\n", + " [-32.31281793 -31.43806373]\n", + " [-27.92638978 -31.43996627]\n", + " [-23.53996162 -31.4418688 ]\n", + " [-19.15353346 -31.44377134]\n", + " [-14.7671053 -31.44567387]\n", + " [-10.38067715 -31.44757641]\n", + " [ -5.99424899 -31.44947894]\n", + " [ -1.60782083 -31.45138147]\n", + " [-32.2995002 -0.73306663]\n", + " [-27.91307204 -0.73496916]\n", + " [-23.52664389 -0.73687169]\n", + " [-19.14021573 -0.73877423]\n", + " [-14.75378757 -0.74067676]\n", + " [-10.36735941 -0.74257929]\n", + " [ -5.98093125 -0.74448183]\n", + " [ -1.59450309 -0.74638436]\n", + " [ -1.60782083 -31.45138147]\n", + " [ -1.60591829 -27.06495331]\n", + " [ -1.60401576 -22.67852516]\n", + " [ -1.60211323 -18.292097 ]\n", + " [ -1.60021069 -13.90566884]\n", + " [ -1.59830816 -9.51924068]\n", + " [ -1.59640563 -5.13281252]\n", + " [ -1.59450309 -0.74638436]\n", + " [-32.29698843 -29.52557043]\n", + " [-32.29465669 -24.14957093]\n", + " [-32.29232495 -18.77357144]\n", + " [-32.2899932 -13.39757194]\n", + " [-32.28766146 -8.02157244]\n", + " [-32.28532972 -2.64557295]\n", + " [-30.40031161 -31.42389325]\n", + " [-25.02431212 -31.42622499]\n", + " [-19.64831262 -31.42855673]\n", + " [-14.27231313 -31.43088848]\n", + " [ -8.89631363 -31.43322022]\n", + " [ -3.52031414 -31.43555196]\n", + " [-30.38700689 -0.74889614]\n", + " [-25.01100739 -0.75122788]\n", + " [-19.6350079 -0.75355962]\n", + " [-14.25900841 -0.75589136]\n", + " [ -8.88300892 -0.7582231 ]\n", + " [ -3.50700942 -0.76055484]\n", + " [ -1.62199131 -29.53887515]\n", + " [ -1.61965957 -24.16287565]\n", + " [ -1.61732783 -18.78687616]\n", + " [ -1.61499609 -13.41087666]\n", + " [ -1.61266434 -8.03487716]\n", + " [ -1.6103326 -2.65887768]\n", + " [-32.29781143 -31.42307024]\n", + " [-32.29781143 -31.42307024]\n", + " [ -1.60950959 -0.76137785]\n", + " [ -1.60950959 -0.76137785]\n", + " [-30.3994886 -29.52639343]\n", + " [-25.02348911 -29.52872517]\n", + " [-19.64748962 -29.53105692]\n", + " [-14.27149012 -29.53338866]\n", + " [ -8.89549063 -29.5357204 ]\n", + " [ -3.51949113 -29.53805214]\n", + " [-30.39715686 -24.15039394]\n", + " [-25.02115737 -24.15272568]\n", + " [-19.64515788 -24.15505742]\n", + " [-14.26915838 -24.15738916]\n", + " [ -8.89315889 -24.1597209 ]\n", + " [ -3.51715939 -24.16205264]\n", + " [-30.39482512 -18.77439444]\n", + " [-25.01882563 -18.77672618]\n", + " [-19.64282613 -18.77905793]\n", + " [-14.26682664 -18.78138967]\n", + " [ -8.89082714 -18.78372141]\n", + " [ -3.51482765 -18.78605315]\n", + " [-30.39249338 -13.39839495]\n", + " [-25.01649389 -13.40072669]\n", + " [-19.64049439 -13.40305843]\n", + " [-14.2644949 -13.40539017]\n", + " [ -8.8884954 -13.40772191]\n", + " [ -3.51249591 -13.41005365]\n", + " [-30.39016163 -8.02239545]\n", + " [-25.01416214 -8.02472719]\n", + " [-19.63816265 -8.02705893]\n", + " [-14.26216315 -8.02939068]\n", + " [ -8.88616366 -8.03172242]\n", + " [ -3.51016417 -8.03405416]\n", + " [-30.3878299 -2.64639596]\n", + " [-25.01183041 -2.6487277 ]\n", + " [-19.63583091 -2.65105944]\n", + " [-14.25983141 -2.65339118]\n", + " [ -8.88383191 -2.65572292]\n", + " [ -3.50783243 -2.65805467]]\n", + "DEBUG:root:radec2pix: lng: [44.21386846 39.93704685 35.05017674 29.50039724 23.26936887 16.39762201\n", + " 9.00597869 1.30015678 44.21386846 48.38707907 53.17846261 58.652901\n", + " 64.84492629 71.73221904 79.20889503 87.07353952 1.30015678 1.50828626\n", + " 1.79395925 2.21040578 2.87397756 4.09690845 7.09544794 25.08421915\n", + " 87.07353952 86.60429547 85.95429853 84.99452258 83.43549808 80.46877478\n", + " 72.72327889 25.08421915 42.4332296 36.78871515 30.1721461 22.534249\n", + " 13.95213213 4.68455031 45.9485209 51.4701262 57.98745342 65.57788622\n", + " 74.19728483 83.61034654 1.41178444 1.72041252 2.19784005 3.03449456\n", + " 4.87874528 12.23608945 86.85702241 86.16514834 85.07964235 83.13325955\n", + " 78.65106614 58.79906907 44.21351009 44.21351009 25.31647093 25.31647093\n", + " 44.16528338 49.72110165 56.36353517 64.20866184 73.23888739 83.20517984\n", + " 38.4669715 43.98823734 50.87875671 59.43072848 69.79141059 81.71788613\n", + " 31.70295803 36.8883708 43.71214181 52.77876171 64.67058062 79.40261268\n", + " 23.79006954 28.17687017 34.3103939 43.22163096 56.45806862 75.32225144\n", + " 14.78760738 17.78662299 22.23218915 29.3788791 42.10872179 66.39896872\n", + " 4.97718101 6.0450351 7.68908472 10.5407344 16.64345121 37.15297361]\n", + "DEBUG:root:radec2pix: curVec: [[-0.202519 0.19335045 -0.96000087]\n", + " [-0.17601411 0.1933703 -0.96520825]\n", + " [-0.14882371 0.193DEBUG:root:radec2pix: fitpx: [[2135.5 4155.50000026]\n", + " [2135.5 3863.07142876]\n", + " [2135.5 3570.64285709]\n", + " [2135.5 3278.21428545]\n", + " [2135.5 2985.7857141 ]\n", + " [2135.49999999 2693.35714316]\n", + " [2135.50000001 2400.9285712 ]\n", + " [2135.49999993 2108.50000021]\n", + " [2135.5 4155.50000026]\n", + " [1843.07142855 4155.50000013]\n", + " [1550.64285715 4155.49999996]\n", + " [1258.2142856 4155.50000027]\n", + " [ 965.78571429 4155.49999999]\n", + " [ 673.357143 4155.4999998 ]\n", + " [ 380.92857155 4155.49999986]\n", + " [ 88.49999976 4155.50000025]\n", + " [2135.49999993 2108.50000021]\n", + " [1843.07142817 2108.50000006]\n", + " [1550.64285738 2108.49999998]\n", + " [1258.21428605 2108.49999998]\n", + " [ 965.78571448 2108.49999999]\n", + " [ 673.35714251 2108.50000001]\n", + " [ 380.92857138 2108.5 ]\n", + " [ 88.50000013 2108.5 ]\n", + " [ 88.49999976 4155.50000025]\n", + " [ 88.49999974 3863.0714288 ]\n", + " [ 88.49999989 3570.64285722]\n", + " [ 88.50000025 3278.21428557]\n", + " [ 88.50000013 2985.78571423]\n", + " [ 88.49999977 2693.35714293]\n", + " [ 88.49999999 2400.92857143]\n", + " [ 88.500DEBUG:root:mm_to_pix: fitpx: [[0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]]\n", + "DEBUG:root:radec2pix: lat: [73.24843796 74.22959053 75.14101603 75.95564397 76.6437957 77.17522107\n", + " 77.52DEBUG:root:radec2pix: curVec: [[-1.92450852e-01 -2.14958215e-01 -9.57473569e-01]\n", + " [-1.77192639e-01 -1.93954231e-01 -9.64875394e-01]\n", + " [-1.61610349e-01 -1.72271956e-01 -9.71701841e-01]\n", + " [-1.45750806e-01 -1.50008093e-01 -9.77882547e-01]\n", + " [-1.29664247e-01 -1.27256625e-01 -9.83357989e-01]\n", + " [-1.13404454e-01 -1.04110210e-01 -9.88079194e-01]\n", + " [-9.70285975e-02 -8.06612062e-02 -9.92007672e-01]\n", + " [-8.05968584e-02 -5.70021704e-02 -9.95115520e-01]\n", + " [-1.92450852e-01 -2.14958215e-01 -9.57473569e-01]\n", + " [-2.15448529e-01 -2.01076263e-01 -9.55588964e-01]\n", + " [-2.38706952e-01 -1.86612936e-01 -9.52992447e-01]\n", + " [-2.62122564e-01 -1.71637528e-01 -9.49648525e-01]\n", + " [-2.85594901e-01 -1.56216354e-01 -9.45532656e-01]\n", + " [-3.09025774e-01 -1.40414039e-01 -9.40631154e-01]\n", + " [-3.32318945e-01 -1.24294615e-01 -9.34941157e-01]\n", + " [-3.55380270e-01 -1.07922184e-01 -9.28470606e-01]\n", + " [-8.05968584e-02 -5.70021704e-02 -9.95115520e-01]\n", + " [-1.03473719e-01 -4.10783195e-02 -9.93783559e-01]\n", + " [-1.26736080e-01 -2.47918701e-02 -9.91626608e-01]\n", + " DEBUG:root:radec2pix: curVec: [[-0.52607507 0.44518015 0.72461 ]\n", + " [-0.53285845 0.46467405 0.70720569]\n", + " [-0.53926166 0.48429715 0.68895075]\n", + " [-0.54524357 0.50394498 0.66988724]\n", + " [-0.55076841 0.52351538 0.650066 ]\n", + " [-0.5558052 0.54291127 0.62954581]\n", + " [-0.56032736 0.56204186 0.60839313]\n", + " [-0.5643128 0.58082305 0.5866819 ]\n", + " [-0.52607507 0.44518015 0.72461 ]\n", + " [-0.50346372 0.4570228 0.73324924]\n", + " [-0.48002208 0.4688872 0.74143348]\n", + " [-0.45582245 0.48069787 0.7491031 ]\n", + " [-0.43094454 0.49238194 0.75620555]\n", + " [-0.40547387 0.50387183 0.7626953 ]\n", + " [-0.37950115 0.51510647 0.7685338 ]\n", + " [-0.35312206 0.52603162 0.77368956]\n", + " [-0.5643128 0.58082305 0.5866819 ]\n", + " [-0.54131296 0.59457585 0.59452488]\n", + " [-0.51740658 0.60813509 0.60204828]\n", + " [-0.49266721 0.62141825 0.60919486]\n", + " [-0.46717179 0.63435032 0.61591411]\n", + " [-0.4410027 0.64686274 0.62216172]\n", + " [-0.41424998 0.65889256 0.62789931]\n", + " [-0.38701227 0.67038247 0.63309466]\n", + " [-0.35312206 0.52603162 0.77368DEBUG:root:radec2pix: ccdpx: [[-4.44999997e+01 -4.99999751e-01]\n", + " [-4.45000003e+01 2.91928571e+02]\n", + " [-4.45000000e+01 5.84357143e+02]\n", + " [-4.44999999e+01 8.76785714e+02]\n", + " [-4.44999999e+01 1.16921429e+03]\n", + " [-4.44999999e+01 1.46164286e+03]\n", + " [-4.45000001e+01 1.75407143e+03]\n", + " [-4.45000000e+01 2.04650000e+03]\n", + " [-4.44999997e+01 -4.99999751e-01]\n", + " [ 2.47928571e+02 -5.00000271e-01]\n", + " [ 5.40357143e+02 -4.99999959e-01]\n", + " [ 8.32785714e+02 -5.00000035e-01]\n", + " [ 1.12521429e+03 -5.00000130e-01]\n", + " [ 1.41764286e+03 -5.00000295e-01]\n", + " [ 1.71007143e+03 -5.00000131e-01]\n", + " [ 2.00250000e+03 -5.00000000e-01]\n", + " [-4.45000000e+01 2.04650000e+03]\n", + " [ 2.47928571e+02 2.04650000e+03]\n", + " [ 5.40357143e+02 2.04650000e+03]\n", + " [ 8.32785714e+02 2.04650000e+03]\n", + " [ 1.12521429e+03 2.04650000e+03]\n", + " [ 1.41764286e+03 2.04650000e+03]\n", + " [ 1.71007143e+03 2.04650000e+03]\n", + " [ 2.00250000e+03 2.04650000e+03]\n", + " [ 2.00250000e+03 -5.00000000e-01]\n", + " [ 2.00250000e+03 2.91928571e+02]\n", + " [ 2.00250000e+03 5.84357143e+02]\n", + " [ 2.00250000e+03 8.76785956]\n", + " [-0.35868329 0.54722466 0.75623506]\n", + " [-0.36406 0.56840009 0.73782224]\n", + " [-0.3692152 0.58944762 0.71849262]\n", + " [-0.37411585 0.61026447 0.69829407]\n", + " [-0.37873239 0.6307536 0.67728257]\n", + " [-0.38303868 0.65082234 0.65552395]\n", + " [-0.38701227 0.67038247 0.63309466]\n", + " [-0.5290005 0.45369796 0.71715872]\n", + " [-0.53706361 0.47769119 0.6952509 ]\n", + " [-0.54451428 0.50177453 0.67210604]\n", + " [-0.55128451 0.52575871 0.64781414]\n", + " [-0.55731721 0.54946513 0.62248342]\n", + " [-0.56256529 0.57272942 0.59623931]\n", + " [-0.51634637 0.45040298 0.7283705 ]\n", + " [-0.4880663 0.4649429 0.73866053]\n", + " [-0.4586099 0.47944026 0.74820719]\n", + " [-0.42812097 0.49375957 0.75691078]\n", + " [-0.39675689 0.50777656 0.76468747]\n", + " [-0.36468673 0.52138165 0.77146922]\n", + " [-0.55438811 0.5867737 0.59021221]\n", + " [-0.52558058 0.60350916 0.59961801]\n", + " [-0.49548417 0.61987114 0.60848599]\n", + " [-0.46423907 0.63571849 0.61672043]\n", + " [-0.43199723 0.65092488 0.6242397 ]\n", + " [-0.39892798 0.66537673 0.63097565]\n", + " [-0.35565807 0.535DEBUG:root:mm_to_pix: fitpx.shape: (96, 2)\n", + "[-1.50286101e-01 -8.20651042e-03 -9.88608487e-01]\n", + " [-1.74026881e-01 8.61366744e-03 -9.84703229e-01]\n", + " [-1.97861370e-01 2.56033198e-02 -9.79895580e-01]\n", + " [-2.21692231e-01 4.26956724e-02 -9.74181520e-01]\n", + " [-2.45422421e-01 5.98228619e-02 -9.67568633e-01]\n", + " [-3.55380270e-01 -1.07922184e-01 -9.28470606e-01]\n", + " [-3.41094603e-01 -8.50776250e-02 -9.36171069e-01]\n", + " [-3.26254655e-01 -6.17078454e-02 -9.43265626e-01]\n", + " [-3.10904242e-01 -3.79025345e-02 -9.49685185e-01]\n", + " [-2.95091093e-01 -1.37525797e-02 -9.55370145e-01]\n", + " [-2.78867563e-01 1.06489016e-02 -9.60270526e-01]\n", + " [-2.62290795e-01 3.52064518e-02 -9.64346434e-01]\n", + " [-2.45422421e-01 5.98228619e-02 -9.67568633e-01]\n", + " [-1.85919151e-01 -2.05843170e-01 -9.60761499e-01]\n", + " [-1.66995292e-01 -1.79630550e-01 -9.69456259e-01]\n", + " [-1.47630641e-01 -1.52495669e-01 -9.77215567e-01]\n", + " [-1.27916247e-01 -1.24612598e-01 -9.83925370e-01]\n", + " [-1.07951106e-01 -9.61520295e-02 -9.89495501e-01]\n", + " [-8.78417397e-02 -6.72840710e-02 -9.93859488e-01]\n", + " [-2.02387656e-01 -2.08910580e-01 -9.56763088e-01]\n", + " [-2.30762740e-01 -1.91495388e-01 -9.53980123e-01]\n", + " [-2.59426267e-01 -1.73276340e-01 -9.50091218e-01]\n", + " [-2.88192059e-01 -1.54376686e-01 -9.45046653e-01]\n", + " [-3.16879319e-01 -1.34915525e-01 -9.38821228e-01]\n", + " [-3.45311720e-01 -1.15010748e-01 -9.31414164e-01]\n", + " [-9.05739295e-02 -5.01894913e-02 -9.94624240e-01]\n", + " [-1.18884083e-01 -3.04221379e-02 -9.92441972e-01]\n", + " [-1.47675760e-01 -1.01732972e-02 -9.88983505e-01]\n", + " [-1.76770270e-01 1.04392786e-02 -9.84196776e-01]\n", + " [-2.05988930e-01 3.12952800e-02 -9.78053765e-01]\n", + " [-2.35152619e-01 5.22712984e-02 -9.70551883e-01]\n", + " [-3.49143832e-01 -9.80887827e-02 -9.31921228e-01]\n", + " [-3.31256453e-01 -6.97265564e-02 -9.40960876e-01]\n", + " [-3.12579830e-01 -4.06643923e-02 -9.49020683e-01]\n", + " [-2.93200158e-01 -1.10690230e-02 -9.55987000e-01]\n", + " [-2.73213840e-01 1.88881190e-02 -9.61767870e-01]\n", + " [-2.52727970e-01 4.90305281e-02 -9.66294251e-01]\n", + " [-1.92477357e-01 -2.14841254e-01 -9.57494492e-01]\n", + " [-1.92477357e-01 -2.14841254e-01 -9.57494492e-01]\n", + " [-2.45399660e-01 5.96801429e-02 -9.67583220e-01]\n", + " [-2.45399660e-01 5.96801429e-02 -9.67583220e-01]\n", + " [-1.95847829e-01 -1.99841732e-01 -9.60055681e-01]\n", + " [-2.24281205e-01 -1.82241953e-01 -9.57332655e-01]\n", + " [-2.53012864e-01 -1.63860512e-01 -9.53485303e-01]\n", + " [-2.81857126e-01 -1.44819238e-01 -9.48463994e-01]\n", + " [-3.10633207e-01 -1.25236353e-01 -9.42243528e-01]\n", + " [-3.39164382e-01 -1.05229460e-01 -9.34823129e-01]\n", + " [-1.76959767e-01 -1.73440343e-01 -9.68815611e-01]\n", + " [-2.05513524e-01 -1.55348901e-01 -9.66245782e-01]\n", + " [-2.34395481e-01 -1.36536061e-01 -9.62505409e-01]\n", + " [-2.63421332e-01 -1.17120280e-01 -9.57544799e-01]\n", + " [-2.92410276e-01 -9.72181381e-02 -9.51338459e-01]\n", + " [-3.21184407e-01 -7.69471340e-02 -9.43885435e-01]\n", + " [-1.57606861e-01 -1.46132615e-01 -9.76629580e-01]\n", + " [-1.86214660e-01 -1.27591947e-01 -9.74189096e-01]\n", + " [-2.15183197e-01 -1.08386988e-01 -9.70540289e-01]\n", + " [-2.44329499e-01 -8.86341389e-02 -9.65632997e-01]\n", + " [-2.73472805e-01 -6.84495803e-02 -9.59441129e-01]\n", + "247637 77.66531399 73.24843796 74.25938156 75.20604331 76.06127099\n", + " 76.79469021 77.37449152 77.77070397 77.95983585 77.66531399 79.26403549\n", + " 80.8954867 82.55419485 84.2348008 85.93154111 87.63625009 89.30890983\n", + " 77.95983585 79.5631834 81.19741545 82.85654952 84.53396682 86.22024\n", + " 87.89143193 89.30890983 73.68688931 74.8461168 75.87404737 76.71704667\n", + " 77.31977046 77.63442603 73.69912883 74.89851762 75.9747656 76.87322604\n", + " 77.53566935 77.90931811 78.357841 80.33991917 82.36567874 84.42519517\n", + " 86.5076147 88.59172382 78.65442708 80.64093339 82.6678651 84.72327772\n", + " 86.78866387 88.77999774 73.25542451 73.25542451 89.30107513 89.30107513\n", + " 74.14922787 75.40361568 76.5361131 77.48786454 78.19419066 78.59463145\n", + " 75.36296624 76.78183851 78.08930019 79.21461778 80.0707569 80.56622359\n", + " 76.44568445 78.03639269 79.53999931 80.87766645 81.93562678 82.57036945\n", + " 77.33928008 79.09582585 80.80551049 82.39402202 83.72877916 84.58613925\n", + " 77.98201104 79.8754942 81.77128989 83.62092117 85.31596639 86.56531268\n", + " 78.31903282 80.2916347 82.30308639 84.33811541 86.36841377 88.27312586]\n", + " [-3.02434167e-01 -4.79515948e-02 -9.51963350e-01]\n", + " [-1.37880320e-01 -1.18091174e-01 -9.83383695e-01]\n", + " [-1.66475948e-01 -9.91402329e-02 -9.81048915e-01]\n", + " [-1.95466883e-01 -7.95801463e-02 -9.77476188e-01]\n", + " [-2.24671466e-01 -5.95266103e-02 -9.72614680e-01]\n", + " [-2.53909190e-01 -3.90964212e-02 -9.66437579e-01]\n", + " [-2.83000427e-01 -1.84092341e-02 -9.58943094e-01]\n", + " [-1.17879473e-01 -8.94859442e-02 -9.88987713e-01]\n", + " [-1.46397323e-01 -7.01622633e-02 -9.86734554e-01]\n", + " [-1.75346488e-01 -5.02837238e-02 -9.83221825e-01]\n", + " [-2.04546619e-01 -2.99664158e-02 -9.78398025e-01]\n", + " [-2.33817766e-01 -9.32843082e-03 -9.72235688e-01]\n", + " [-2.62980133e-01 1.15089442e-02 -9.64732602e-01]\n", + " [-9.77113050e-02 -6.04869356e-02 -9.93374970e-01]\n", + " [-1.26086843e-01 -4.08284343e-02 -9.91178666e-01]\n", + " [-1.54930674e-01 -2.06692612e-02 -9.87709101e-01]\n", + " [-1.84063703e-01 -1.26652306e-04 -9.82914308e-01]\n", + " [-2.13306865e-01 2.06796761e-02 -9.76766365eDEBUG:root:radec2pix: lng: [270.30457564 270.35386432 270.42218515 270.52319877 270.68775016\n", + " 271.00328211 271.85358468 282.01764037 270.30457564 278.22825834\n", + " 285.84900373 292.93736432 299.35666656 305.05982707 310.06566745\n", + " 314.43133752 282.01764037 350.20239022 354.97318448 356.62297809\n", + " 357.45797758 357.96205284 358.29934604 358.54086611 314.43133752\n", + " 318.71792809 323.65121653 329.29806584 335.69036822 342.79553001\n", + " 350.4881795 358.54086611 270.35332309 270.43180131 270.55509491\n", + " 270.77692983 271.2940439 273.86646927 273.78050957 283.32620486\n", + " 292.17913267 300.04776463 306.84264375 312.61566094 338.92831161\n", + " 353.86519186 356.42636123 357.47985638 358.05382146 358.4148969\n", + " 316.21189934 321.89127155 328.61157088 336.44738638 345.33544633\n", + " 355.00144674 270.33202411 270.33202411 358.51232366 358.51232366\n", + " 274.02225895 284.14773214 293.45215101 301.61524642 308.56613427\n", + " 314.39418307 274.91171606 287.12189287 297.93167364 306.95425335\n", + " 314.25788847 320.11321977 276.3042009 291.6047689 304.27729951\n", + " 314.04247307 321.39984571 326.97203004 278.79000558 298.99985673\n", + " 313.65088315 323.54527533 330.30207858 335.08673923 284.44409964\n", + " 312.71767267 327.81852787 336.08354959 341.09932037 344.41993917\n", + " 307.6197367 340.1007605 348.12231225 351.56865678 353.47160216\n", + " 354.67575821]\n", + "DEBUG:root:radec2pix: ccdpx: [[-4.45000000e+01 -4.99999797e-01]\n", + " [-4.45000000e+01 2.91928572e+02]\n", + " [-4.45000000e+01 5.84357143e+02]\n", + " [-4.45000000e+01 8.76785714e+02]\n", + " [-4.45000000e+01 1.16921429e+03]\n", + " [-4.45000000e+01 1.46164286e+03]\n", + " [-4.45000000e+01 1.75407143e+03]\n", + " [-4.45000001e+01 2.04650000e+03]\n", + " [-4.45000000e+01 -4.99999797e-01]\n", + " [ 2.47928571e+02 -5.00000034e-01]\n", + " [ 5.40357143e+02 -4.99999972e-01]\n", + " [ 8.32785714e+02 -4.99999760e-01]\n", + " [ 1.12521429e+03 -5.00000049e-01]\n", + " [ 1.41764286e+03 -4.99999867e-01]\n", + " [ 1.71007143e+03 -5.00000044e-01]\n", + " [ 2.00250000e+03 -4.99999770e-01]\n", + " [-4.45000001e+01 2.04650000e+03]\n", + " [ 2.47928571e+02 2.04650000e+03]\n", + " [ 5.40357143e+02 2.04650000e+03]\n", + " [ 8.32785739681 -0.96976759]\n", + " [-0.1210576 0.19340693 -0.97362149]\n", + " [-0.09282574 0.19338238 -0.9767224 ]\n", + " [-0.06423859 0.19330957 -0.97903259]\n", + " [-0.03540746 0.19317935 -0.98052438]\n", + " [-0.00644453 0.19298662 -0.98118022]\n", + " [-0.202519 0.19335045 -0.96000087]\n", + " [-0.20410181 0.21957053 -0.95400798]\n", + " [-0.20541592 0.24620345 -0.94720017]\n", + " [-0.20646168 0.27312306 -0.93956233]\n", + " [-0.20723897 0.30020747 -0.93108941]\n", + " [-0.20774716 0.32733871 -0.92178657]\n", + " [-0.20798548 0.35440237 -0.91166935]\n", + " [-0.20795348 0.38128745 -0.9007637 ]\n", + " [-0.00644453 0.19298662 -0.98118022]\n", + " [-0.00623872 0.2202939 -0.97541359]\n", + " [-0.0060212 0.24798261 -0.96874577]\n", + " [-0.0057928 0.27593151 -0.96115984]\n", + " [-0.00555433 0.30402243 -0.95264868]\n", + " [-0.0053066 0.3321385 -0.9432157 ]\n", + " [-0.00505048 0.36016339 -0.93287557]\n", + " [-0.00478689 0.38798163 -0.92165468]\n", + " [-0.20795348 0.38128745 -0.9007637 ]\n", + " [-0.18045763 0.38314444 -0.90588928]\n", + " [-0.15227426 0.38473339 -0.91038056]\n", + " [-0.12350794 0.38603082 -0.91418051]\n", + " [-0.09426472 0.38701741 -0.91724135]\n", + " [-0.06465393 0.38767798 -0.91952469]\n", + " [-0.03478895 0.38800157 -0.92100191]\n", + " [-0.00478689 0.38798163 -0.92165468]\n", + " [-0.19105954 0.19344589 -0.96232788]\n", + " [-0.15809914 0.193479 -0.96828226]\n", + " [-0.12421813 0.1934985 -0.97320511]\n", + " [-0.08961889 0.19346872 -0.97700476]\n", + " [-0.05450482 0.19336463 -0.97961183]\n", + " [-0.01908119 0.19317108 -0.98097953]\n", + " [-0.20315244 0.20472398 -0.95750571]\n", + " [-0.20491057 0.23715439 -0.94961542]\n", + " [-0.20626566 0.27007906 -0.94048486]\n", + " [-0.20721769 0.30327184 -0.93010054]\n", + " [-0.20776556 0.33651548 -0.91847199]\n", + " [-0.20790797 0.36960077 -0.90563213]\n", + " [-0.00645583 0.2048386 -0.97877447]\n", + " [-0.00619661 0.23857847 -0.97110345]\n", + " [-0.00592045 0.27277034 -0.96206096]\n", + " [-0.00562883 0.30719551 -0.95162978]\n", + " [-0.00532325 0.34163874 -0.93981628]\n", + " [-0.00500533 0.37588618 -0.92665232]\n", + " [-0.19605701 0.38203651 -0.90311115]\n", + " [-0.16188259 0.38413446 -0.90897456]\n", + " [-0.12677932 0.38580619 -0.91382744]\n", + " [-0.09094174 0.38701441 -0.91DEBUG:root:radec2pix: xyfp: [[ -0.172993 31.426621 ]\n", + " [ -0.172993 27.04019243]\n", + " [ -0.172993 22.65376385]\n", + " [ -0.172993 18.26733528]\n", + " [ -0.172993 13.88090671]\n", + " [ -0.172993 9.49447814]\n", + " [ -0.172993 5.10804957]\n", + " [ -0.172993 0.721621 ]\n", + " [ -0.172993 31.426621 ]\n", + " [ -4.55942157 31.426621 ]\n", + " [ -8.94585014 31.426621 ]\n", + " [-13.33227871 31.426621 ]\n", + " [-17.71870729 31.426621 ]\n", + " [-22.10513586 31.426621 ]\n", + " [-26.49156443 31.426621 ]\n", + " [-30.877993 31.426621 ]\n", + " [ -0.172993 0.721621 ]\n", + " [ -4.55942157 0.721621 ]\n", + " [ -8.94585014 0.721621 ]\n", + " [-13.33227872 0.721621 ]\n", + " [-17.71870728 0.721621 ]\n", + " [-22.10513586 0.721621 ]\n", + " [-26.49156443 0.721621 ]\n", + " [-30.877993 0.721621 ]\n", + " [-30.877993 31.426621 ]\n", + " [-30.877993 27.04019243]\n", + " [-30.877993 22.65376385]\n", + " [-30.877993 18.26733529]\n", + " [-30.877993 13.88090671]\n", + " [-30.877993 9.49447814]\n", + " [-30.877993 5.10804957]\n", + " [-30.877993 0.721621 ]\n", + " [ -0.187993 29.514121 ]\n", + " [ -0.187993 714e+02]\n", + " [ 2.00250000e+03 1.16921429e+03]\n", + " [ 2.00250000e+03 1.46164286e+03]\n", + " [ 2.00250000e+03 1.75407143e+03]\n", + " [ 2.00250000e+03 2.04650000e+03]\n", + " [-4.35000003e+01 1.27000000e+02]\n", + " [-4.35000001e+01 4.85400000e+02]\n", + " [-4.35000003e+01 8.43800000e+02]\n", + " [-4.34999997e+01 1.20220000e+03]\n", + " [-4.34999997e+01 1.56060000e+03]\n", + " [-4.35000002e+01 1.91900000e+03]\n", + " [ 8.29999999e+01 4.99999945e-01]\n", + " [ 4.41400000e+02 4.99999943e-01]\n", + " [ 7.99800000e+02 5.00000147e-01]\n", + " [ 1.15820000e+03 4.99999799e-01]\n", + " [ 1.51660000e+03 5.00000078e-01]\n", + " [ 1.87500000e+03 4.99999710e-01]\n", + " [ 8.30000000e+01 2.04550000e+03]\n", + " [ 4.41400000e+02 2.04550000e+03]\n", + " [ 7.99800000e+02 2.04550000e+03]\n", + " [ 1.15820000e+03 2.04550000e+03]\n", + " [ 1.51660000e+03 2.04550000e+03]\n", + " [ 1.87500000e+03 2.04550000e+03]\n", + " [ 2.00150000e+03 1.27000000e+02]\n", + " [ 2.00150000e+03 4.85400000e+02]\n", + " [ 2.00150000e+03 8.43800000e+02]\n", + " [ 2.00150000e+03 1.20220000e+03]\n", + " [ 2.00150000e+03 1.56060000e+03]\n", + " [ 2.00150000e+03 1.91900000e+03]\n", + " [-4.349999757803]\n", + " [-0.0545712 0.38773118 -0.9201557 ]\n", + " [-0.01787803 0.38793817 -0.92151199]\n", + " [-0.20243552 0.19343929 -0.96000057]\n", + " [-0.20243552 0.19343929 -0.96000057]\n", + " [-0.00489049 0.38788764 -0.92169369]\n", + " [-0.00489049 0.38788764 -0.92169369]\n", + " [-0.19172717 0.20478713 -0.95984526]\n", + " [-0.19336211 0.23737365 -0.95197944]\n", + " [-0.19461844 0.27044853 -0.94285803]\n", + " [-0.19549589 0.30378603 -0.93246737]\n", + " [-0.19599294 0.33716919 -0.92081687]\n", + " [-0.19610785 0.37038861 -0.90793942]\n", + " [-0.15862705 0.20496083 -0.96583048]\n", + " [-0.15991305 0.23793525 -0.95802643]\n", + " [-0.16088958 0.27138381 -0.94892854]\n", + " [-0.16155552 0.30508243 -0.93852252]\n", + " [-0.16190827 0.33881489 -0.92681723]\n", + " [-0.16194522 0.37237105 -0.91384547]\n", + " [-0.12460605 0.20509182 -0.97077839]\n", + " [-0.12554197 0.23837396 -0.96302496]\n", + " [-0.12623691 0.27211993 -0.95394706]\n", + " [-0.12668918 0.30610752 -0.94352957]\n", + " [-0.12689575 0.34012103 -0.93178064]\n", + " [-0.12685377 0.37394928 -0.91873286]\n", + " [-0.0898661 0.20514466 -0.97459723]\n", + " [-0.09044916 0. 24.138121 ]\n", + " [ -0.187993 18.76212101]\n", + " [ -0.187993 13.386121 ]\n", + " [ -0.187993 8.010121 ]\n", + " [ -0.187993 2.634121 ]\n", + " [ -2.085493 31.411621 ]\n", + " [ -7.461493 31.411621 ]\n", + " [-12.837493 31.411621 ]\n", + " [-18.213493 31.411621 ]\n", + " [-23.589493 31.411621 ]\n", + " [-28.965493 31.411621 ]\n", + " [ -2.085493 0.736621 ]\n", + " [ -7.461493 0.736621 ]\n", + " [-12.837493 0.736621 ]\n", + " [-18.213493 0.736621 ]\n", + " [-23.58949299 0.736621 ]\n", + " [-28.965493 0.736621 ]\n", + " [-30.862993 29.514121 ]\n", + " [-30.862993 24.138121 ]\n", + " [-30.862993 18.762121 ]\n", + " [-30.862993 13.386121 ]\n", + " [-30.862993 8.010121 ]\n", + " [-30.862993 2.634121 ]\n", + " [ -0.187993 31.411621 ]\n", + " [ -0.187993 31.411621 ]\n", + " [-30.862993 0.736621 ]\n", + " [-30.862993 0.736621 ]\n", + " [ -2.085493 29.514121 ]\n", + " [ -7.461493 29.514121 ]\n", + " [-12.837493 29.514121 ]\n", + " [-18.213493 29.514121 ]\n", + " [-23.589493 29.514121 ]\n", + " [-28.965493 29.514121 ]\n", + " [ -2.085493 24.138121 ]\n", + " [ -7.461493 24.138121 ]\n", + "14e+02 2.04650000e+03]\n", + " [ 1.12521429e+03 2.04650000e+03]\n", + " [ 1.41764286e+03 2.04650000e+03]\n", + " [ 1.71007143e+03 2.04650000e+03]\n", + " [ 2.00250000e+03 2.04650000e+03]\n", + " [ 2.00250000e+03 -4.99999770e-01]\n", + " [ 2.00250000e+03 2.91928572e+02]\n", + " [ 2.00250000e+03 5.84357143e+02]\n", + " [ 2.00250000e+03 8.76785714e+02]\n", + " [ 2.00250000e+03 1.16921429e+03]\n", + " [ 2.00250000e+03 1.46164286e+03]\n", + " [ 2.00250000e+03 1.75407143e+03]\n", + " [ 2.00250000e+03 2.04650000e+03]\n", + " [-4.35000000e+01 1.27000000e+02]\n", + " [-4.35000000e+01 4.85400000e+02]\n", + " [-4.35000000e+01 8.43800000e+02]\n", + " [-4.35000000e+01 1.20220000e+03]\n", + " [-4.35000000e+01 1.56060000e+03]\n", + " [-4.35000000e+01 1.91900000e+03]\n", + " [ 8.30000000e+01 5.00000045e-01]\n", + " [ 4.41400000e+02 5.00000251e-01]\n", + " [ 7.99800000e+02 4.99999878e-01]\n", + " [ 1.15820000e+03 4.99999746e-01]\n", + " [ 1.51660000e+03 5.00000268e-01]\n", + " [ 1.87500000e+03 4.99999743e-01]\n", + " [ 8.29999998e+01 2.04550000e+03]\n", + " [ 4.41400000e+02 2.04550000e+03]\n", + " [ 7.99800000e+02 2.04550000e+03]\n", + " [ 1.15820000e+03 2.04550000e+DEBUG:root:optics_fp: rtanth: [45.0829242 42.14007881 39.46623798 37.11957906 35.16566323 33.67292833\n", + " 32.70458448 32.30781794 45.0829242 42.05181002 39.27748601 36.81804721\n", + " 34.74043472 33.1165898 32.01563284 31.49245123 32.30781794 27.92274647\n", + " 23.53818074 19.15446803 14.77236778 10.39391962 6.02708817 1.76054813\n", + " 31.49245123 27.11255561 22.73517913 18.3621235 13.99743906 9.65248838\n", + " 5.37533955 1.76054813 43.75905359 40.32550839 37.35292806 34.95909888\n", + " 33.26918554 32.39354213 43.72230567 40.17242604 37.06494796 34.51955493\n", + " 32.6679006 31.63204924 30.39623387 25.02228675 19.64946278 14.27902981\n", + " 8.91530985 3.58853155 29.58337372 24.21709844 18.85636405 13.50776907\n", + " 8.19511667 3.10850472 45.06171287 45.06171287 1.78051042 1.78051042\n", + " 42.37849474 38.70556314 35.46980647 32.8008609 30.84620775 29.74698879\n", + " 38.82304306 34.77660814 31.13517347 28.05687673 25.74452154 24.41669917\n", + " 35.72566697 31.28109784 27.17523938 23.58565115 20.78160237 19.11203303\n", + " 33.21476541 28.37964DEBUG:root:radec2pix: lat: [77.96328192 79.56853071 81.20563621 82.86944579 84.55492216 86.25697831\n", + " 87.97026012 89.68446141 77.96328192 77.84499787 77.51456239 76.99218852\n", + " 76.30618444 75.48813083 74.56921129 73.5781677 89.68446141 88.18737722\n", + " 86.48534608 84.7856574 83.09971795 81.43388184 79.79360686 78.18420142\n", + " 73.5781677 74.59165918 75.53717808 76.38588844 77.10603256 77.66476376\n", + " 78.03174302 78.18420142 78.65888684 80.64836049 82.6805387 84.74610355\n", + " 86.83565024 88.93857815 77.94403081 77.65435125 77.06482717 76.22448951\n", + " 75.19110028 74.0211233 89.125335 87.06142445 84.97647052 82.91045242\n", + " 80.87550158 78.88161748 74.03033777 75.2306137 76.3004884 77.18265224\n", + " 77.81700171 78.15051889 77.96868077 77.96868077 78.18950618 78.18950618\n", + " 78.63240168 78.32169564 77.69220555 76.80049546 75.71119975 74.48541744\n", + " 80.6152305 80.22940153 79.46186211 78.40069669 77.13562878 75.74187621\n", + " 82.63719517 82.13946169 81.18123393 79.90730671 78.44079679 76.86879929\n", + " 84.68476231 84.0024055423865518 -0.96688296]\n", + " [-0.09085881 0.27262283 -0.95782121]\n", + " [-0.09109352 0.30682704 -0.94739598]\n", + " [-0.09115072 0.3410524 -0.93561467]\n", + " [-0.09102814 0.37508661 -0.92250958]\n", + " [-0.05461038 0.20509472 -0.97721741]\n", + " [-0.05483711 0.23875522 -0.96953021]\n", + " [-0.05495724 0.27286914 -0.96048016]\n", + " [-0.05497015 0.30721706 -0.95005051]\n", + " [-0.05487461 0.34158371 -0.93824802]\n", + " [-0.05466967 0.37575582 -0.92510475]\n", + " [-0.01904436 0.20492719 -0.97859193]\n", + " [-0.01891212 0.23866 -0.97091902]\n", + " [-0.01873958 0.27284484 -0.96187552]\n", + " [-0.01852764 0.3072629 -0.95144429]\n", + " [-0.01827702 0.34169897 -0.93963172]\n", + " [-0.01798861 0.37593922 -0.9264697 ]]\n", + " [-12.837493 24.138121 ]\n", + " [-18.213493 24.138121 ]\n", + " [-23.589493 24.138121 ]\n", + " [-28.965493 24.138121 ]\n", + " [ -2.085493 18.762121 ]\n", + " [ -7.461493 18.762121 ]\n", + " [-12.837493 18.762121 ]\n", + " [-18.213493 18.762121 ]\n", + " [-23.589493 18.762121 ]\n", + " [-28.965493 18.762121 ]\n", + " [ -2.085493 13.386121 ]\n", + " [ -7.461493 13.386121 ]\n", + " [-12 82.77130238 81.23639689 79.55203729 77.80444657\n", + " 86.73357497 85.70054621 84.08633958 82.26535796 80.37757677 78.48177609\n", + " 88.66315983 86.89328024 84.87745159 82.8411917 80.82286686 78.83968928]\n", + "00013 2108.5 ]\n", + " [2134.5 4028.00000018]\n", + " [2134.5 3669.59999979]\n", + " [2134.5 3311.20000021]\n", + " [2134.5 2952.80000004]\n", + " [2134.5 2594.39999994]\n", + " [2134.50000001 2235.99999988]\n", + " [2007.99999999 4154.50000011]\n", + " [1649.6 4154.5 ]\n", + " [1291.20000005 4154.49999987]\n", + " [ 932.80000005 4154.49999992]\n", + " [ 574.4 4154.5 ]\n", + " [ 216. 4154.5 ]\n", + " [2008.00000002 2109.49999999]\n", + " [1649.60000012 2109.49999999]\n", + " [1291.19999984 2109.50000001]\n", + " [ 932.79999968 2109.50000001]\n", + " [ 574.39999959 2109.50000001]\n", + " [ 215.99999972 2109.50000001]\n", + " [ 89.4999999 4028.0000001 ]\n", + " [ 89.50000007 3669.59999994]\n", + " [ 89.49999997 3311.20000002]\n", + " [ 89.50000023 2952.7999999 ]\n", + " [ 89.49999997 2594.40000001]\n", + " [ 89.4999998 2236.00000002]\n", + " [2134.5 4154.50000005]\n", + " [2134.5DEBUG:root:radec2pix: curVec Shape: (96, 3)\n", + "98e+01 5.00000241e-01]\n", + " [-4.34999998e+01 5.00000241e-01]\n", + " [ 2.00150000e+03 2.04550000e+03]\n", + " [ 2.00150000e+03 2.04550000e+03]\n", + " [ 8.30000001e+01 1.27000000e+02]\n", + " [ 4.41400000e+02 1.27000000e+02]\n", + " [ 7.99800000e+02 1.27000000e+02]\n", + " [ 1.15820000e+03 1.27000000e+02]\n", + " [ 1.51660000e+03 1.27000000e+02]\n", + " [ 1.87500000e+03 1.27000000e+02]\n", + " [ 8.30000000e+01 4.85400000e+02]\n", + " [ 4.41400000e+02 4.85400000e+02]\n", + " [ 7.99800000e+02 4.85400000e+02]\n", + " [ 1.15820000e+03 4.85400000e+02]\n", + " [ 1.51660000e+03 4.85400000e+02]\n", + " [ 1.87500000e+03 4.85400000e+02]\n", + " [ 8.30000001e+01 8.43800000e+02]\n", + " [ 4.41400000e+02 8.43800000e+02]\n", + " [ 7.99800000e+02 8.43800000e+02]\n", + " [ 1.15820000e+03 8.43800000e+02]\n", + " [ 1.51660000e+03 8.43800000e+02]\n", + " [ 1.87500000e+03 8.43800000e+02]\n", + " [ 8.30000001e+01 1.20220000e+03]\n", + " [ 4.41400000e+02 1.20220000e+03]\n", + " [ 7.99800000e+02 1.20220000e+03]\n", + " [ 1.15820000e+03 1.20220000e+03]\n", + " [ 1.51660000e+03 1.20220000e+03]\n", + " [ 1.87500000e+03 1.2-01]\n", + " [-2.42480765e-01 4.16268323e-02 -9.69262754e-01]]\n", + ".837493 13.386121 ]\n", + " [-18.213493 13.386121 ]\n", + " [-23.589493 13.386121 ]\n", + " [-28.965493 13.386121 ]\n", + " [ -2.085493 8.010121 ]\n", + " [ -7.461493 8.010121 ]\n", + " [-12.837493 8.010121 ]\n", + " [-18.213493 8.010121 ]\n", + " [-23.589493 8.010121 ]\n", + " [-28.965493 8.010121 ]\n", + " [ -2.085493 2.634121 ]\n", + " [ -7.461493 2.634121 ]\n", + " [-12.837493 2.634121 ]\n", + " [-18.213493 2.634121 ]\n", + " [-23.589493 2.634121 ]\n", + " [-28.965493 2.634121 ]]\n", + "0220000e+03]\n", + " [ 8.30000002e+01 1.56060000e+03]\n", + " [ 4.41400000e+02 1.56060000e+03]\n", + " [ 7.99800000e+02 1.56060000e+03]\n", + " [ 1.15820000e+03 1.56060000e+03]\n", + " [ 1.51660000e+03 1.56060000e+03]\n", + " [ 1.87500000e+03 1.56060000e+03]\n", + " [ 8.29999999e+01 1.91900000e+03]\n", + " [ 4.41400000e+02 1.91900000e+03]\n", + " [ 7.99800000e+02 1.91900000e+03]\n", + " [ 1.15820000e+03 1.91900000e+03]\n", + " [ 1.51660000e+03 1.91900000e+03]\n", + " [ 1.87500000e+03 1.91900000e+03]]\n", + "DEBUG:root:radec2pix: xyfp: [[ 0.26283402 -31.55708986]\n", + " [ 0.26401791 -27.17066146]\n", + " [ 0.2652018 -22.78423305]\n", + " [ 0.26638569 -18.39780463]\n", + " [ 0.26756957 -14.01137623]\n", + " [ 0.26875346 -9.62494781]\n", + " [ 0.26993735 -5.2385194 ]\n", + " [ 0.27112123 -0.85209099]\n", + " [ 0.26283402 -31.55708986]\n", + " [ 4.64926244 -31.55827376]\n", + " [ 9.03569085 -31.55945764]\n", + " [ 13.42211926 -31.56064153]\n", + " [ 17.80854767 -31.56182542]\n", + " [ 22.19497608 -31.56300931]\n", + " [ 26.5814045 -31.56419319]\n", + " [ 30.96783291 -31.56537708]\n", + " [ 0.27112123 -0.85209099]\n", + " [ 4.65754965 -0.85327487]\n", + " [ 9.04397805 -0.85445876]\n", + " [ 13.43040647 -0.85564265]\n", + " [ 17.81683488 -0.85682653]\n", + " [ 22.20326329 -0.85801042]\n", + " [ 26.5896917 -0.85919431]\n", + " [ 30.97612012 -0.8603782 ]\n", + " [ 30.96783291 -31.56537708]\n", + " [ 30.9690168 -27.17894867]\n", + " [ 30.97020068 -22.79252025]\n", + " [ 30.97138456 -18.40609184]\n", + " [ 30.97256845 -14.01966343]\n", + " [ 30.97375234 -9.63323502]\n", + " [ 30.97493622 -5.24680661]\n", + " [ 30.97612012 -0.8603782 ]\n", + " [ 0.2783502 -29.64459399]\n", + " [ 0.27980117 -24.26859418]\n", + " [ 0.28125214 -18.89259438]\n", + " [ 0.28270311 -13.51659457]\n", + " [ 0.28415408 -8.14059477]\n", + " [ 0.28560505 -2.76459497]\n", + " [ 2.175338 -31.54260605]\n", + " [ 7.55133781 -31.54405702]\n", + " [ 12.92733761 -31.54550799]\n", + " [ 18.30333742 -31.54695896]\n", + " [ 23.67933722 -31.54840993]\n", + " [ 29.05533702 -31.5498609 ]\n", + " [ 2.18361712 -0.86760716]\n", + " [ 7.55961692 -0.86905814]\n", + " [ 12.93561673 -0.87050911]\n", + " [ 18.31161653 -0.87196007]\n", + " [ 23.68761633 -0.87341105]\n", + " [ 29.06361614 -0.87486202]\n", + " [ 30.95334909 -29.6528731 ]\n", + " [ 30.95480005 -24.27687329]\n", + " [ 30.95625103 -18.90087349]\n", + " [ 30.95770199 -13.52487368]\n", + " [ 30.95915297 -8.14887388]\n", + " [ 30.96060394 -2.77287408]\n", + " [ 0.27783807 -31.54209392]\n", + " [ 0.27783807 -31.54209392]\n", + " [ 30.96111607 -0.87537415]\n", + " [ 30.96111607 -0.87537415]\n", + " [ 2.17585013 -29.64510611]\n", + " [ 7.55184994 -29.64655709]\n", + " [ 12.92784974 -29.64800806]\n", + " [ 18.30384955 -29.64945903]\n", + " [ 23.67984935 -29.65091 ]\n", + " [ 29.05584916 -29.65236097]\n", + " [ 2.1773011 -24.26910631]\n", + " [ 7.55330091 -24.27055728]\n", + " [ 12.92930071 -24.27200825]\n", + " [ 18.30530052 -24.27345922]\n", + " [ 23.68130032 -24.27491019]\n", + " [ 29.05730013 -24.27636116]\n", + " [ 2.17875207 -18.89310651]\n", + " [ 7.55475188 -18.89455748]\n", + " [ 12.93075168 -18.89600845]\n", + " [ 18.30675149 -18.89745942]\n", + " [ 23.68275129 -18.89891039]\n", + " [ 29.0587511 -18.90036136]\n", + " [ 2.18020304 -13.51710671]\n", + " [ 7.55620285 -13.51855767]\n", + " [ 12.93220265 -13.52000864]\n", + " [ 18.30820245 -13.52145961]\n", + " [ 23.68420226 -13.52291058]\n", + " [ 29.06020207 -13.52436156]\n", + " [ 2.18165401 -8.1411069 ]\n", + " [ 7.55765382 -8.14255787]\n", + " [ 12.93365363 -8.14400884]\n", + " [ 18.30965343 -8.14545981]\n", + " [ 23.68565323 -8.14691078]\n", + " [ 29.06165303 -8.14836175]\n", + " [ 2.18310498 -2.76510709]\n", + " [ 7.55910479 -2.76655806]\n", + " [ 12.93510459 -2.76800904]\n", + " [ 18.31110439 -2.76946001]\n", + " [ 23.68710421 -2.77091098]\n", + " [ 29.063104 -2.77236195]]\n", + "03]\n", + " [ 1.51660000e+03 2.04550000e+03]\n", + " [ 1.87500000e+03 2.04550000e+03]\n", + " [ 2.00150000e+03 1.27000000e+02]\n", + " [ 2.00150000e+03 4.85400000e+02]\n", + " [ 2.00150000e+03 8.43800000e+02]\n", + " [ 2.00150000e+03 1.20220000e+03]\n", + " [ 2.00150000e+03 1.5DEBUG:root:radec2pix: ccdpx: [[-4.45000000e+01 -4.99999902e-01]\n", + " [-4.45000000e+01 2.91928572e+02]\n", + " [-4.45000000e+01 5.84357143e+02]\n", + " [-4.45000000e+01 8.76785715e+02]\n", + " [-4.45000000e+01 1.16921429e+03]\n", + " [-4.45000000e+01 1.46164286e+03]\n", + " [-4.45000000e+01 1.75407143e+03]\n", + " [-4.45000001e+01 2.04650000e+03]\n", + " [-4.45000000e+01 -4.99999902e-01]\n", + " [ 2.47928571e+02 -4.99999902e-01]\n", + " [ 5.40357143e+02 -4.99999727e-01]\n", + " [ 8.32785714e+02 -5.00000071e-01]\n", + " [ 1.12521429e+03 -5.00000281e-01]\n", + " [ 1.41764286e+03 -4.99999968e-01]\n", + " [ 1.71007143e+03 -5.00000211e-01]\n", + " [ 2.00250000e+03 -5.00000200e-01]\n", + " [-4.45000001e+01 2.04650000e+03]\n", + " [ 2.47928571e+02 2.04650000e+03]\n", + " [ 5.40357143e+02 2.04650000e+03]\n", + " [ 8.32785714e+02 2.04650000e+03]\n", + " [ 1.12521429e+03 2.04650000e+03]\n", + " [ 1.41764286e+03 2.04650000e+03]\n", + " [ 1.71007143e+03 2.04650000e+03]\n", + " [ 2.00250000e+03 2.04650000e+03]\n", + " [ 2.00250000e+03 -5.00000200e-01]\n", + " [ 2.00250000e+03 2.91928571e+02]\n", + " [ 2.00250000e+03 5.84357143e+02]\n", + " [ 2.00250000e+03 8.76785DEBUG:root:radec2pix: fitpx: [[-4.99999744e-01 -4.99999751e-01]\n", + " [-5.00000258e-01 2.91928571e+02]\n", + " [-5.00000005e-01 5.84357143e+02]\n", + " [-4.99999941e-01 8.76785714e+02]\n", + " [-4.99999889e-01 1.16921429e+03]\n", + " [-4.99999948e-01 1.46164286e+03]\n", + " [-5.00000143e-01 1.75407143e+03]\n", + " [-4.99999962e-01 2.04650000e+03]\n", + " [-4.99999744e-01 -4.99999751e-01]\n", + " [ 2.91928571e+02 -5.00000271e-01]\n", + " [ 5.84357143e+02 -4.99999959e-01]\n", + " [ 8.76785714e+02 -5.00000035e-01]\n", + " [ 1.16921429e+03 -5.00000130e-01]\n", + " [ 1.46164286e+03 -5.00000295e-01]\n", + " [ 1.75407143e+03 -5.00000131e-01]\n", + " [ 2.04650000e+03 -5.00000000e-01]\n", + " [-4.99999962e-01 2.04650000e+03]\n", + " [ 2.91928571e+02 2.04650000e+03]\n", + " [ 5.84357143e+02 2.04650000e+03]\n", + " [ 8.76785714e+02 2.04650000e+03]\n", + " [ 1.16921429e+03 2.04650000e+03]\n", + " [ 1.46164286e+03 2.04650000e+03]\n", + " [ 1.75407143e+03 2.04650000e+03]\n", + " [ 2.04650000e+03 2.04650000e+03]\n", + " [ 2.04650000e+03 -5.00000000e-01]\n", + " [ 2.04650000e+03 2.91928571e+02]\n", + " [ 2.04650000e+03 5.84357143e+02]\n", + " [ 2.04650000e+03 8.76785714e+02]\n", + " [ 2.04650000e+03 1.16921429e+03]\n", + " [ 2.04650000e+03 1.46164286e+03]\n", + " [ 2.04650000e+03 1.75407143e+03]\n", + " [ 2.04650000e+03 2.04650000e+03]\n", + " [ 4.99999741e-01 1.27000000e+02]\n", + " [ 4.99999873e-01 4.85400000e+02]\n", + " [ 4.99999712e-01 8.43800000e+02]\n", + " [ 5.00000277e-01 1.20220000e+03]\n", + " [ 5.00000282e-01 1.56060000e+03]\n", + " [ 4.99999780e-01 1.91900000e+03]\n", + " [ 1.27000000e+02 4.99999945e-01]\n", + " [ 4.85400000e+02 4.99999943e-01]\n", + " [ 8.43800000e+02 5.00000147e-01]\n", + " [ 1.20220000e+03 4.99999799e-01]\n", + " [ 1.56060000e+03 5.00000078e-01]\n", + " [ 1.91900000e+03 4.99999710e-01]\n", + " [ 1.27000000e+02 2.04550000e+03]\n", + " [ 4.85400000e+02 2.04550000e+03]\n", + " [ 8.43800000e+02 2.04550000e+03]\n", + " [ 1.20220000e+03 2.04550000e+03]\n", + " [ 1.56060000e+03 2.04550000e+03]\n", + " [ 1.91900000e+03 2.04550000e+03]\n", + " [ 2.04550000e+03 1.27000000e+02]\n", + " [ 2.04550000e+03 4.85400000e+02]\n", + " [ 2.04550000e+03 8.43800000e+02]\n", + " [ 2.04550000e+03 1.20220000e+03]\n", + " [ 2.04550000e+03 1.56060000e+03]\n", + " [ 2.04550000e+03 1.91900000e+03]\n", + " [ 5.000002 4154.50000005]\n", + " [ 89.49999997 2109.5 ]\n", + " [ 89.49999997 2109.5 ]\n", + " [2008. 4027.99999997]\n", + " [1649.59999996 4028.00000014]\n", + " [1291.20000001 4027.99999998]\n", + " [ 932.79999987 4028.00000021]\n", + " [ 574.40000006 4027.99999993]\n", + " [ 215.9999998 4028.0000002 ]\n", + " [2008. 3669.59999996]\n", + " [1649.60000001 3669.59999998]\n", + " [1291.20000007 3669.59999987]\n", + " [ 932.79999997 3669.60000004]\n", + " [ 574.39999998 3669.60000002]\n", + " [ 215.99999986 3669.60000012]\n", + " [2008. 3311.20000004]\n", + " [1649.59999995 3311.20000012]\n", + " [1291.19999997 3311.20000005]\n", + " [ 932.80000015 3311.19999984]\n", + " [ 574.40000003 3311.19999997]\n", + " [ 216.00000001 3311.2 ]\n", + " [2007.99999998 2952.80000014]\n", + " [1649.60000006 2952.7999999 ]\n", + " [1291.20000015 2952.79999984]\n", + " [ 932.80000014 2952.7999999 ]\n", + " [ 574.39999986 2952.80000008]\n", + " [ 215.99999973 2952.80000012]\n", + " [2007.99999998 2594.40000007]\n", + " [1649.60000022 2594.39999977]\n", + " [1291.20000005 2594.39999997]\n", + " [ 932.79999996 2594.40000002]\n", + " [ 574.39999995 2594.40000002]\n", + " [ 216.00000004 DEBUG:root:radec2pix: camVec: [[-0.20607518 -0.20787446 -0.20940354 -0.21066179 -0.21164814 -0.21236112\n", + " -0.21279916 -0.21296107 -0.20607518 -0.17964954 -0.15251864 -0.12479221\n", + " -0.09658011 -0.06799262 -0.03914089 -0.01013708 -0.21296107 -0.18561075\n", + " -0.15755214 -0.12888979 -0.09972928 -0.07017922 -0.04035219 -0.01036463\n", + " -0.01013708 -0.01020871 -0.01026764 -0.01031373 -0.01034674 -0.01036638\n", + " -0.0103724 -0.01036463 -0.20680345 -0.20882603 -0.21044235 -0.21165063\n", + " -0.2124482 -0.2128323 -0.19465346 -0.16177694 -0.12795009 -0.0933751\n", + " -0.05825505 -0.022795 -0.20112996 -0.16711987 -0.13214975 -0.09641349\n", + " -0.0601111 -0.02345151 -0.01026957 -0.0103498 -0.01041065 -0.01045169\n", + " -0.01047241 -0.01047238 -0.20599275 -0.20599275 -0.01046737 -0.01046737\n", + " -0.19541667 -0.16240545 -0.12844349 -0.09373247 -0.05847519 -0.02287686\n", + " -0.19732118 -0.16397526 -0.12967711 -0.09462661 -0.05902568 -0.02308015\n", + " -0.19884383 -0.16523235 -0.13066656 -0.09534433 -0.05946678 -0.02324061\n", + " -0.19992594.39999999]\n", + " [2008.00000021 2235.99999975]\n", + " [1649.59999975 2236.00000009]\n", + " [1291.20000026 2235.99999995]\n", + " [ 932.79999972 2236.00000004]\n", + " [ 574.39999974 2236.00000003]\n", + " [ 216.00000028 2235.99999998]]\n", + "714e+02]\n", + " [ 2.00250000e+03 1.16921429e+03]\n", + " [ 2.00250000e+03 1.46164286e+03]\n", + " [ 2.00250000e+03 1.75407143e+03]\n", + " [ 2.00250000e+03 2.04650000e+03]\n", + " [-4.35000000e+01 1.27000000e+02]\n", + " [-4.35000000e+01 4.85400000e+02]\n", + " [-4.35000000e+01 8.43800000e+02]\n", + " [-4.35000000e+01 1.20220000e+03]\n", + " [-4.35000000e+01 1.56060000e+03]\n", + " [-4.35000000e+01 1.91900000e+03]\n", + " [ 8.30000000e+01 5.00000088e-01]\n", + " [ 4.41400000e+02 5.00000229e-01]\n", + " [ 7.99800000e+02 4.99999876e-01]\n", + " [ 1.15820000e+03 5.00000139e-01]\n", + " [ 1.51660000e+03 5.00000172e-01]\n", + " [ 1.87500000e+03 4.99999925e-01]\n", + " [ 8.30000002e+01 2.04550000e+03]\n", + " [ 4.41400000e+02 2.04550000e+03]\n", + " [ 7.99800000e+02 2.04550000e+03]\n", + " [ 1.15820000e+03 2.04550000e+03]\n", + " [ 1.51660000e+03 2.04550000e+03]\n", + " [ 1.87500000e+03 2.04550000e+03]\n", + " [ 2.00150000e+03 1.27000000e+02]\n", + " [ 2.00150000e+03 4.85400000e+02]\n", + " [ 2.00150000e+03 8.43800000e+02]\n", + " [ 2.00150000e+03 1.20220000e+03]\n", + " [ 2.00150000e+03 1.56060000e+03]\n", + " [ 2.00150000e+03 1.91900000e+03]\n", + " [-4.35000000e+01 5.00000166e-01]\n", + " [-4.35000000e+01 5.00000166e-01]\n", + " [ 2.00150000e+03 2.04550000e+03]\n", + " [ 2.00150000e+03 2.04550000e+03]\n", + " [ 8.30000000e+01 1.27000000e+02]\n", + " [ 4.41400000e+02 1.27000000e+02]\n", + " [ 7.99800000e+02 1.27000000e+02]\n", + " [ 1.15820000e+03 1.27000000e+02]\n", + " [ 1.51660000e+03 1.27000000e+02]\n", + " [ 1.87500000e+03 1.27000000e+02]\n", + " [ 8.30000000e+01 4.85400000e+02]\n", + " [ 4.41400000e+02 4.85400000e+02]\n", + " [ 7.99800000e+02 4.85400000e+02]\n", + " [ 1.15820000e+03 4.85400000e+02]\n", + " [ 1.51660000e+03 4.85400000e+02]\n", + " [ 1.87500000e+03 4.85400000e+02]\n", + " [ 8.30000000e+01 8.43800000e+02]\n", + " [ 4.41400000e+02 8.43800000e+02]\n", + " [ 7.99800000e+02 8.43800000e+02]\n", + " [ 1.15820000e+03 8.43800000e+02]\n", + " [ 1.51660000e+03 8.43800000e+02]\n", + " [ 1.87500000e+03 8.43800000e+02]\n", + " [ 8.30000000e+01 1.20220000e+03]\n", + " [ 48259 -0.16617376 -0.13140827 -0.09588212 -0.05979589 -0.0233572\n", + " -0.20073433 -0.16679525 -0.13189744 -0.09623556 -0.06000982 -0.02342863\n", + " -0.20109591 -0.16709274 -0.13212968 -0.09640067 -0.06010576 -0.0234538 ]\n", + " [-0.20019593 -0.17367087 -0.14646307 -0.11868235 -0.09043873 -0.0618427\n", + " -0.03300558 -0.0040396 -0.20019593 -0.20202839 -0.20359907 -0.20490731\n", + " -0.20595196 -0.20673135 -0.20724368 -0.20748743 -0.0040396 -0.00409191\n", + " -0.0041395 -0.00418225 -0.00421998 -0.00425248 -0.00427955 -0.00430103\n", + " -0.20748743 -0.17998755 -0.15180051 -0.12303089 -0.0937848 -0.06417157\n", + " -0.03430461 -0.00430103 -0.18872819 -0.15574492 -0.12184525 -0.0872316\n", + " -0.05210744 -0.0166781 -0.20093724 -0.20300612 -0.20468137 -0.20596106\n", + " -0.20684219 -0.20732153 -0.00416252 -0.00422448 -0.00427905 -0.00432591\n", + " -0.00436469 -0.00439503 -0.19558822 -0.16140908 -0.12630166 -0.09046055\n", + " -0.05408714 -0.0173918 -0.20011322 -0.20011322 -0.00440367 -0.00440367\n", + " -0.18950334 -0.19145029 -0.19302803 -0.1942344122968 0.76618309]\n", + " [-0.36235559 0.561206 0.74414129]\n", + " [-0.36873859 0.58704546 0.72070068]\n", + " [-0.3747446 0.61255581 0.69594674]\n", + " [-0.38031921 0.63755821 0.66998271]\n", + " [-0.38541578 0.66188387 0.64293423]\n", + " [-0.52602303 0.44528686 0.72458221]\n", + " [-0.52602303 0.44528686 0.72458221]\n", + " [-0.38709312 0.67027823 0.6331556 ]\n", + " [-0.38709312 0.67027823 0.6331556 ]\n", + " [-0.51930037 0.45888275 0.72093949]\n", + " [-0.49094502 0.4736039 0.73121292]\n", + " [-0.46140191 0.48825945 0.74075029]\n", + " [-0.43081576 0.50271171 0.74945228]\n", + " [-0.39934418 0.51683571 0.75723515]\n", + " [-0.36715647 0.53052176 0.76403061]\n", + " [-0.52730584 0.48306162 0.6989993 ]\n", + " [-0.49876611 0.49826808 0.70919764]\n", + " [-0.4690104 0.51334243 0.71868546]\n", + " [-0.43818449 0.52814364 0.72736418]\n", + " [-0.40644582 0.54254635 0.73514981]\n", + " [-0.373964 0.55644113 0.74197317]\n", + " [-0.53471318 0.50731409 0.67580636]\n", + " [-0.50603424 0.52295793 0.68588946]\n", + " [-0.47611614 0.53840507 0.69529375]\n", + " [-0.44510397 0.55351386 0.70392107]\n", + " [-0.4DEBUG:root:radec2pix: curVec Shape: (96, 3)\n", + "838 23.77795187 19.57499171 16.08640287 13.86243725\n", + " 31.43120667 26.26984115 21.21535074 16.36705265 11.9779994 8.76739863\n", + " 30.50284606 25.15168819 19.81398425 14.50459502 9.27228848 4.40115246]\n", + ".41400000e+02 1.20220000e+03]\n", + " [ 7.99800000e+02 1.20220000e+03]\n", + " [ 1.15820000e+03 1.20220000e+03]\n", + " [ 1.51660000e+03 1.20220000e+03]\n", + " [ 1.87500000e+03 1.20220000e+03]\n", + " [ 8.30000000e+01 1.56060000e+03]\n", + " [ 4.41400000e+02 1.56060000e+03]\n", + " [ 7.99800000e+02 1.56060000e+03]\n", + " [ 1.15820000e+03 1.56060000e+03]\n", + " [ 1.51660000e+03 1.56060000e+03]\n", + " [ 1.87500000e+03 1.56060000e+03]\n", + " [ 8.30000001e+01 1.91900000e+03]\n", + " [ 4.41400000e+02 1.91900000e+03]\n", + " [ 7.99800000e+02 1.91900000e+03]\n", + " [ 1.15820000e+03 1.91900000e+03]\n", + " [ 1.51660000e+03 1.91900000e+03]\n", + " [ 1.87500000e+03 1.91900000e+03]]\n", + "1315401 0.56815959 0.71168704]\n", + " [-0.38043601 0.58223302 0.71852151]\n", + " [-0.54145527 0.5314487 0.65145105]\n", + " [-0.51268378 0.54747885 0.66137905]\n", + " [-0.48265403 DEBUG:root:fitpix2pix: ccdpx: shape: (96, 2)\n", + "DEBUG:root:radec2pix: ccdpx: [[-4.45000000e+01 -4.99999783e-01]\n", + " [-4.45000000e+01 2.91928571e+02]\n", + " [-4.45000000e+01 5.84357143e+02]\n", + " [-4.45000000e+01 8.76785714e+02]\n", + " [-4.45000000e+01 1.16921429e+03]\n", + " [-4.45000000e+01 1.46164286e+03]\n", + " [-4.45000000e+01 1.75407143e+03]\n", + " [-4.44999999e+01 2.04650000e+03]\n", + " [-4.45000000e+01 -4.99999783e-01]\n", + " [ 2.47928571e+02 -5.00000080e-01]\n", + " [ 5.40357143e+02 -5.00000178e-01]\n", + " [ 8.32785714e+02 -4.99999867e-01]\n", + " [ 1.12521429e+03 -5.00000095e-01]\n", + " [ 1.41764286e+03 -5.00000221e-01]\n", + " [ 1.71007143e+03 -5.00000185e-01]\n", + " [ 2.00250000e+03 -5.00000018e-01]\n", + " [-4.44999999e+01 2.04650000e+03]\n", + " [ 2.47928572e+02 2.04650000e+03]\n", + " [ 5.40357143e+02 2.04650000e+03]\n", + " [ 8.32785714e+02 2.04650000e+03]\n", + " [ 1.12521429e+03 2.04650000e+03]\n", + " [ 1.41764286e+03 2.04650000e+03]\n", + " [ 1.71007143e+03 2.04650000e+03]\n", + " [ 2.00250000e+03 2.04650000e+03]\n", + " [ 2.00250000e+03 -5.00000018e-01]\n", + " [ 2.00250000e+03 2.91928571e+02]\n", + " [ 2.00250000e+0 -0.195066 -0.19551916\n", + " -0.15638145 -0.15798254 -0.1592836 -0.16028164 -0.16097217 -0.16135064\n", + " -0.12234264 -0.1235961 -0.12461804 -0.12540495 -0.1259519 -0.1262541\n", + " -0.08758892 -0.08849133 -0.08922984 -0.08980108 -0.09020062 -0.09042422\n", + " -0.05232353 -0.0528708 -0.053321 -0.05367171 -0.05391982 -0.0540624\n", + " -0.016752 -0.01694088 -0.01709901 -0.01722548 -0.01731915 -0.01737894]\n", + " [ 0.95783851 0.96261448 0.96679818 0.97032784 0.97315256 0.9752324\n", + " 0.97653835 0.97705233 0.95783851 0.96276195 0.96710159 0.97079344\n", + " 0.97378441 0.97603235 0.97750603 0.97818516 0.97705233 0.98261483\n", + " 0.98750199 0.99165011 0.99500566 0.99752533 0.99917635 0.99993704\n", + " 0.97818516 0.98361591 0.98835782 0.99234925 0.99553873 0.99788504\n", + " 0.9993576 0.99993704 0.96000729 0.96547149 0.96998338 0.97344474\n", + " 0.97578203 0.97694639 0.96006992 0.96572084 0.97042996 0.97409503\n", + " 0.97663845 0.97800724 0.97955572 0.98592753 0.99122053 0.99533197\n", + " 0.99818215 0.99971531 0.98063234 0.98683331 0.99193725 0.99584519\n", + " 0.9984813 0.99979391 0.95787352 0.95787352 0.99993552 0.99993552\n", + " 0.9622374 0.96797276 0.97274994 0.9764667 0.97904541 0.98043302\n", + " 0.96778572 0.97373181 0.978679 0.98252511 0.98519233 0.98662722\n", + " 0.97236485 0.97847957 0.98356321 0.98751357 0.9902524 0.99172566\n", + " 0.9758766 0.9821179 0.98730436 0.99133364 0.9941269 0.9956294\n", + " 0.9782474 0.98457302 0.98982824 0.99391049 0.99674043 0.99826267\n", + " 0.97942831 0.98579563 0.99108495 0.99519355 0.99804176 0.99957386]]\n", + "DEBUG:root:optics_fp: cphi: [0.71674184 0.76675024 0.81864942 0.87035228 0.91865771 0.95932569\n", + " 0.98767201 0.99974255 0.71674184 0.66409483 0.59932455 0.52022133\n", + " 0.42506968 0.31345852 0.18722881 0.05105417 0.99974255 0.99965353\n", + " 0.99950987 0.99925593 0.99874223 0.99744464 0.99234175 0.9056856\n", + " 0.05105417 0.05923154 0.07055215 0.08725098 0.11432168 0.16558509\n", + " 0.29698694 0.9056856 0.73806414 0.80084934 0.86451924 0.92DEBUG:root:fitpix2pix: visCut: True\n", + "DEBUG:root:optics_fp: rtanth: [31.49183295 27.10547639 22.71914763 18.33286663 13.94667845 9.56071086\n", + " 5.17552468 0.80400903 31.49183295 31.81893962 32.73584893 34.19514883\n", + " 36.13117923 38.47203574 41.14868729 44.10003298 0.80400903 4.62123428\n", + " 8.97478096 13.34987234 17.73056686 22.11353481 26.49764807 30.88241889\n", + " 44.10003298 41.08265104 38.3306279 35.90503258 33.87605653 32.31848632\n", + " 31.30277019 30.88241889 29.57945042 24.20357534 18.8277716 13.45212473\n", + " 8.07694792 2.70504492 31.5450314 32.34738816 33.9914811 36.36331677\n", + " 39.33145785 42.7719429 2.22895212 7.49884938 12.85690509 18.22553229\n", + " 23.59751677 28.97099101 42.74447401 39.21682332 36.14735337 33.66163739\n", + " 31.89644588 30.97520686 31.47691651 31.47691651 30.86780955 30.86780955\n", + " 29.6519244 30.50411668 32.24233865 34.73382242 37.83003027 41.39549146\n", + " 24.29209321 25.32528987 27.39411567 30.28708623 33.79319995 37.74196451\n", + " 18.94142858 20.24949953 22.78397459 26.19121067 30.177015DEBUG:root:radec2pix: camVec Shape: (3, 96)\n", + "3 5.84357143e+02]\n", + " [ 2.00250000e+03 8.76785714e+02]\n", + " [ 2.00250000e+03 1.16921429e+03]\n", + " [ 2.00250000e+03 1.46164286e+03]\n", + " [ 2.00250000e+03 1.75407143e+03]\n", + " [ 2.00250000e+03 2.04650000e+03]\n", + " [-4.35000000e+01 1.27000000e+02]\n", + " [-4.35000000e+01 4.85400000e+02]\n", + " [-4.35000000e+01 8.43800000e+02]\n", + " [-4.35000000e+01 1.20220000e+03]\n", + " [-4.35000000e+01 1.56060000e+03]\n", + " [-4.35000000e+01 1.91900000e+03]\n", + " [ 8.30000000e+01 4.99999873e-01]\n", + " [ 4.41400000e+02 5.00000123e-01]\n", + " [ 7.99800000e+02 5.00000108e-01]\n", + " [ 1.15820000e+03 4.99999719e-01]\n", + " [ 1.51660000e+03 4.99999964e-01]\n", + " [ 1.87500000e+03 5.00000185e-01]\n", + " [ 8.30000000e+01 2.04550000e+03]\n", + " [ 4.41400000e+02 2.04550000e+03]\n", + " [ 7.99800000e+02 2.04550000e+03]\n", + " [ 1.15820000e+03 2.04550000e+03]\n", + " [ 1.51660000e+03 2.04550000e+03]\n", + " [ 1.87500000e+03 2.04550000e+03]\n", + " [ 2.00150000e+03 1.27000000e+02]\n", + " [ 2.00150000e+03 4.85400000e+02]\n", + " [ 2.00150000e+03 8.43800000e+02]\n", + " [ 2.00150000e+03 1.20220047e-01 5.00000241e-01]\n", + " [ 5.00000247e-01 5.00000241e-01]\n", + " [ 2.04550000e+03 2.04550000e+03]\n", + " [ 2.04550000e+03 2.04550000e+03]\n", + " [ 1.27000000e+02 1.27000000e+02]\n", + " [ 4.85400000e+02 1.27000000e+02]\n", + " [ 8.43800000e+02 1.27000000e+02]\n", + " [ 1.20220000e+03 1.27000000e+02]\n", + " [ 1.56060000e+03 1.27000000e+02]\n", + " [ 1.91900000e+03 1.27000000e+02]\n", + " [ 1.27000000e+02 4.85400000e+02]\n", + " [ 4.85400000e+02 4.85400000e+02]\n", + " [ 8.43800000e+02 4.85400000e+02]\n", + " [ 1.20220000e+03 4.85400000e+02]\n", + " [ 1.56060000e+03 4.85400000e+02]\n", + " [ 1.91900000e+03 4.85400000e+02]\n", + " [ 1.27000000e+02 8.43800000e+02]\n", + " [ 4.85400000e+02 8.43800000e+02]\n", + " [ 8.43800000e+02 8.43800000e+02]\n", + " [ 1.20220000e+03 8.43800000e+02]\n", + " [ 1.56060000e+03 8.43800000e+02]\n", + " [ 1.91900000e+03 8.43800000e+02]\n", + " [ 1.27000000e+02 1.20220000e+03]\n", + " [ 4.85400000e+02 1.20220000e+03]\n", + " [ 8.43800000e+02 1.20220000e+03]\n", + " [ 1.20220000e+03 1.20220000e+03]\n", + " [ 1.56060000e+03 1.20220000e+03]\n", + " [ 1.91900000e+03 1.20220000e+03]\n", + " [ 1.27000000e+02 1.56060000e+DEBUG:root:radec2pix: camVec: [[-0.20629584 -0.20812128 -0.20967356 -0.21095376 -0.21196139 -0.21269501\n", + " -0.2131529 -0.21333373 -0.20629584 -0.1798852 -0.15276427 -0.12504507\n", + " -0.09683814 -0.06825398 -0.03940385 -0.01040007 -0.21333373 -0.18599064\n", + " -0.15793623 -0.12927467 -0.10011211 -0.07055816 -0.04072622 -0.01073294\n", + " -0.01040007 -0.01048759 -0.01056224 -0.01062379 -0.01067191 -0.0107063\n", + " -0.0107267 -0.01073294 -0.20703611 -0.20908844 -0.21073192 -0.21196628\n", + " -0.21278893 -0.21319686 -0.19488162 -0.16201965 -0.12820231 -0.09363367\n", + " -0.05851721 -0.02305821 -0.20150602 -0.16750285 -0.13253465 -0.0967959\n", + " -0.06048842 -0.02382238 -0.0105395 -0.01063912 -0.01071899 -0.01077856\n", + " -0.01081726 -0.01083465 -0.20621357 -0.20621357 -0.01083565 -0.01083565\n", + " -0.19565571 -0.16265759 -0.12870452 -0.09399937 -0.05874512 -0.0231472\n", + " -0.19758845 -0.16425347 -0.12996305 -0.09491705 -0.05931746 -0.02337052\n", + " -0.19913769 -0.16553623 -0.13097704 -0.09565767 -0.05977969 -0.02355053\n", + " -0.20030226 -0.16650264 -0.13174231 -0.09621721 -0.0601289 -0.023686\n", + " -0.20107886 -0.16714801 -0.13225382 -0.09659125 -0.06036201 -0.02377567\n", + " -0.201464 -0.16746808 -0.13250731 -0.0967762 -0.06047657 -0.02381854]\n", + " [-0.20078674 -0.17428103 -0.14708674 -0.11931584 -0.09107902 -0.06248699\n", + " -0.03365118 -0.00468399 -0.20078674 -0.20262142 -0.20419049 -0.20549514\n", + " -0.20653488 -0.20730818 -0.20781318 -0.2080483 -0.00468399 -0.00472909\n", + " -0.00476846 -0.004802 -0.00482954 -0.00485094 -0.00486604 -0.00487474\n", + " -0.2080483 -0.18056016 -0.15238099 -0.12361519 -0.09436952 -0.06475431\n", + " -0.03488367 -0.00487474 -0.1893284 -0.1563645 -0.12247778 -0.08787247\n", + " -0.05275245 -0.01732329 -0.20152974 -0.20359843 -0.20526972 -0.2065434\n", + " -0.20741673 -0.20788637 -0.0048039 -0.00485635 -0.0048999 -0.00493429\n", + " -0.00495921 -0.00497442 -0.19615466 -0.1619874 -0.12688576 -0.09104519\n", + " -0.05466885 -0.01796812 -0.20070413 -0.20070413 -0.00497744 -0.00497744\n", + " -0.19010422 -0.19204948 -0.19362274 -0.19482286 -0.19564642 -0.1960896\n", + " -0.15700026 -0.15859759 -0.1598933 -0.16088429 -0.1615658 -0.16193328\n", + " -0.12297381 -0.12422245 -0.12523802 -0.12601654 -0.12655298 -0.12684288\n", + " -0.088228 -0.0891244 -0.0898551 -0.09041635 -0.09080384 -0.09101389\n", + " -0.05296627 -0.0535061 -0.05394701 -0.05428637 -0.05452132 -0.05464944\n", + " -0.01739439 -0.0175743 -0.01772184 -0.01783608 -0.01791601 -0.0179608 ]\n", + " [ 0.95766733 0.96245086 0.96664496 0.9701867 0.97302465 0.97511856\n", + " 0.97643916 0.97696816 0.95766733 0.96259331 0.96693812 0.97063664\n", + " 0.97363531 0.97589175 0.97737455 0.97806326 0.97696816 0.98254014\n", + " 0.9874378 0.9915972 0.99496444 0.99749587 0.99915849 0.99993052\n", + " 0.97806326 0.98350803 0.98826539 0.99227336 0.99548004 0.9978438\n", + " 0.99933381 0.99993052 0.95983895 0.96531454 0.96984084 0.97331841\n", + " 0.97567313 0.97685567 0.95989943 0.96555544 0.97027239 0.9739469\n", + " 0.97650091 0.97788117 0.9794755 0.98585963 0.99116626 0.99529202\n", + " 0.99815658 0.99970383 0.98051633 0.98673547 0.99185942 0.99578843\n", + " 0.99844594 0.99977985 0.95770236 0.95770236 0.9999289 0.9999289\n", + " 0.96207028 0.96781171 0.97259724 0.9763238 0.97891342 0.98031274\n", + " 0.96763099 0.97358492 0.97854164 0.98239859 0.98507763 0.98652493\n", + " 0.97222509 0.97834888 0.98344316 0.98740541 0.99015692 0.99164321\n", + " 0.97575346 0.98200495 0.98720313 0.99124524 0.9940519 0.9955679\n", + " 0.97814205 0.98447887 0.98974676 0.9938426 0.99668644 0.9982225\n", + " 0.97934146 0.98572085 0.99102359 0.99514634 0.99800882 0.99955494]]\n", + "365062\n", + " 0.9704975 0.99665945 0.6953044 0.6229226 0.53010496 0.41345588\n", + " 0.27232584 0.11128947 0.99969644 0.99954923 0.99926436 0.99859785\n", + " 0.99637691 0.97728259 0.0548278 0.06688083 0.08577093 0.11956053\n", + " 0.19678357 0.51804091 0.7167462 0.7167462 0.90395966 0.90395966\n", + " 0.7173329 0.64650885 0.55392153 0.43509499 0.28838199 0.1183142\n", + " 0.78296688 0.7194824 0.6309635 0.50857972 0.34543889 0.14404729\n", + " 0.85078398 0.79980651 0.72282072 0.60489433 0.42782202 0.18390653\n", + " 0.9150296 0.88149415 0.82599605 0.72871014 0.55254711 0.25338228\n", + " 0.96687862 0.95220074 0.92565817 0.87139471 0.74187378 0.40036553\n", + " 0.99622933 0.99443943 0.99100871 0.9831251 0.95810564 0.79702588]\n", + "00e+03]\n", + " [ 2.00150000e+03 1.56060000e+03]\n", + " [ 2.00150000e+03 1.91900000e+03]\n", + " [-4.35000000e+01 4.99999853e-01]\n", + " [-4.35000000e+01 4.99999853e-01]\n", + " [ 2.00150000e+03 2.04550000e+03]\n", + " [ 2.00150000e+03 2.04550000e+03]\n", + " [ 8.30000000e+01 1.27000000e+02]\n", + " [ 4.41400000e+02 1.27000000e+02]\n", + " [ 7.99800000e+02 1.27000000e+02]\n", + " [ 1.15820000e+03 1.27000000e+02]\n", + " [ 1.51660000e+03 1.27000000e+02]\n", + " [ 1.87500000e+03 1.27000000e+02]\n", + " [ 8.30000000e+01 4.85400000e+02]\n", + " [ 4.41400000e+02 4.85400000e+02]\n", + " [ 7.99800000e+02 4.85400000e+02]\n", + " [ 1.15820000e+03 4.85400000e+02]\n", + " [ 1.51660000e+03 4.85400000e+02]\n", + " [ 1.87500000e+03 4.85400000e+02]\n", + " [ 8.30000000e+01 8.43800000e+02]\n", + " [ 4.41400000e+02 8.43800000e+02]\n", + " [ 7.99800000e+02 8.43800000e+02]\n", + " [ 1.15820000e+03 8.43800000e+02]\n", + " [ 1.51660000e+03 8.43800000e+02]\n", + " [ 1.87500000e+03 8.43800000e+02]\n", + " [ 8.30000000e+01 1.20220000e+03]\n", + " [ 4.41400000e+02 1.20220000e+03]\n", + " [ 7.99800000e+02 1.20220000e+03]\n", + " [ 1.15820000e+03 1.20220000e+03]\n", + " [ 1.51660000e+03 1.20220000e+03]\n", + " [ 1.87500000e+03 1.20220000e+03]\n", + " [ 8.30000001e+01 1.56060000e+03]\n", + " [ 4.41400000e+02 1.56060000e+03]\n", + " [ 7.99800000e+02 1.56060000e+03]\n", + " [ 1.15820000e+03 1.56060000e+03]\n", + " [ 1.51660000e+03 1.56060000e+03]\n", + " [ 1.87500000e+03 1.56060000e+03]\n", + " [ 8.29999999e+01 1.91900000e+03]\n", + " [ 4.41400000e+02 1.91900000e+03]\n", + " [ 7.99800000e+02 1.91900000e+03]\n", + " [ 1.15820000e+03 1.91900000e+03]\n", + " [ 1.51660000e+03 1.91900000e+03]\n", + " [ 1.87500000e+03 1.91900000e+03]]\n", + "DEBUG:root:radec2pix: fitpx: [[2135.5 4155.4999999 ]\n", + " [2135.5 3863.07142835]\n", + " [2135.5 3570.64285687]\n", + " [2135.5 3278.21428534]\n", + " [2135.5 2985.78571398]\n", + " [2135.5 2693.35714282]\n", + " [2135.50000001 2400.92857102]\n", + " [2135.50000006 2108.49999973]\n", + " [2135.5 4155.4999999 ]\n", + " [1843.07142859 4155.4999999 ]\n", + " [1550.64285722 4155.49999973]\n", + " [1258.21428568 4155.50000007]\n", + " [ 965.78571413 4155.50000028]\n", + " [ 673.35714288 4155.49999997]\n", + " [ 380.92857125 4155.50000021]\n", + " [ 88.4999998 4155.5000002 ]\n", + " [2135.50000006 2108.49999973]\n", + " [1843.07142866 2108.49999999]\n", + " [1550.64285735 2108.49999998]\n", + " [1258.21428559 2108.50000001]\n", + " [ 965.78571467 2108.49999998]\n", + " [ 673.35714297 2108.5 ]\n", + " [ 380.92857138 2108.5 ]\n", + " [ 88.49999984 2108.5 ]\n", + " [ 88.4999998 4155.5000002 ]\n", + " [ 88.49999999 3863.07142858]\n", + " [ 88.50000023 3570.64285698]\n", + " [ 88.4999999 3278.21428577]\n", + " [ 88.50000002 2985.78571428]\n", + " [ 88.50000017 2693.35714281]\n", + " [ 88.49999997 2400.92857143]\n", + " [ 88.49999984 2108.5 ]\n", + " [2134.5 4027.99999995]\n", + " [2134.5 3669.59999994]\n", + " [2134.5 3311.20000034]\n", + " [2134.5 2952.80000006]\n", + " [2134.5 2594.39999997]\n", + " [2134.49999998 2236.00000031]\n", + " [2008.00000001 4154.49999991]\n", + " [1649.60000005 4154.49999977]\n", + " [1291.19999995 4154.50000012]\n", + " [ 932.80000008 4154.49999986]\n", + " [ 574.40000013 4154.49999983]\n", + " [ 215.99999993 4154.50000007]\n", + " [2007.99999975 2109.50000009]\n", + " [1649.5999999 2109.50000001]\n", + " [1291.19999978 2109.50000001]\n", + " [ 932.80000001 2109.5 ]\n", + " [ 574.40000043 2109.49999999]\n", + " [ 216.00000004 2109.5 ]\n", + " [ 89.50000001 4027.99999999]\n", + " [ 89.4999998 3669.60000015]\n", + " [ 89.50000012 3311.19999993]\n", + " [ 89.50000006 2952.79999997]\n", + " [ 89.49999988 2594.40000003]\n", + " [ 89.50000008 2235.99999999]\n", + " [2134.5 4154.49999983]\n", + " [2134.5 4154.49999983]\n", + " [ 89.49999987 2109.5 ]\n", + " [ 89.49999987 2109.5 ]\n", + " [2008. 4027.99999995]\n", + " [1649.60000002 4027.99999993]\n", + " [1291.20000002 4027.99999996]\n", + " [ 932.80000002 4027.99999996]\n", + " [ 574.4000002 4027.99999975]\n", + " [ 215.99999985 4028.00000015]\n", + " [2008.00000001 3669.59999986]\n", + " [1649.60000005 3669.59999982]\n", + " [1291.19999995 3669.60000009]\n", + " [ 932.79999997 3669.60000004]\n", + " [ 574.40000017 3669.59999983]\n", + " [ 215.99999977 3669.60000019]\n", + " [2007.99DEBUG:root:radec2pix: camVec Shape: (3, 96)\n", + "999999 3311.20000007]\n", + " [1649.5999999 3311.20000024]\n", + " [1291.20000003 3311.19999996]\n", + " [ 932.80000003 3311.19999997]\n", + " [ 574.40000015 3311.19999988]\n", + " [ 216.00000001 3311.19999999]\n", + " [2008.00000002 2952.79999987]\n", + " [1649.59999985 2952.80000027]\n", + " [1291.1999999 2952.80000011]\n", + " [ 932.80000032 2952.79999977]\n", + " [ 574.39999984 2952.80000009]\n", + " [ 216.00000025 2952.79999989]\n", + " [2007.99999995 2594.40000018]\n", + " [1649.59999988 2594.40000012]\n", + " [1291.19999985 2594.4000001 ]\n", + " [ 932.79999977 2594.4000001 ]\n", + " [ 574.39999985 2594.40000005]\n", + " [ 216.00000009 2594.39999997]\n", + " [2007.99999988 2236.00000015]\n", + " [1649.60000009 2235.99999997]\n", + " [1291.19999998 2236. ]\n", + " [ 932.79999991 2236.00000001]\n", + " [ 574.39999979 2236.00000002]\n", + " [ 215.99999986 2236.00000001]]\n", + "DEBUG:root:optics_fp: sphi: [0.69733861 0.64194554 0.57429359 0.49242959 0.39505443 0.28230164\n", + " 0.15653753 0.02269007 0.69733861 0.74764835 0.80050614 0.85403148\n", + " 0.90516063 0.94960189 0.98231633 0.99869589 0.02269007 0.6060000e+03]\n", + " [ 2.00150000e+03 1.91900000e+03]\n", + " [-4.35000000e+01 5.00000140e-01]\n", + " [-4.35000000e+01 5.00000140e-01]\n", + " [ 2.00150000e+03 2.04550000e+03]\n", + " [ 2.00150000e+03 2.04550000e+03]\n", + " [ 8.30000000e+01 1.27000000e+02]\n", + " [ 4.41400000e+02 1.27000000e+02]\n", + " [ 7.99800000e+02 1.27000000e+02]\n", + " [ 1.15820000e+03 1.27000000e+02]\n", + " [ 1.51660000e+03 1.27000000e+02]\n", + " [ 1.87500000e+03 1.27000000e+02]\n", + " [ 8.30000000e+01 4.85400000e+02]\n", + " [ 4.41400000e+02 4.85400000e+02]\n", + " [ 7.99800000e+02 4.85400000e+02]\n", + " [ 1.15820000e+03 4.85400000e+02]\n", + " [ 1.51660000e+03 4.85400000e+02]\n", + " [ 1.87500000e+03 4.85400000e+02]\n", + " [ 8.30000000e+01 8.43800000e+02]\n", + " [ 4.41400000e+02 8.43800000e+02]\n", + " [ 7.99800000e+02 8.43800000e+02]\n", + " [ 1.15820000e+03 8.43800000e+02]\n", + " [ 1.51660000e+03 8.43800000e+02]\n", + " [ 1.87500000e+03 8.43800000e+02]\n", + " [ 8.30000000e+01 1.20220000e+03]\n", + " [ 4.41400000e+02 1.20220000e+03]\n", + " [ 7.99800000e+02 1.20220000e+03]\n", + " [ 1.15820000e+03 1.20220000e+03]\n", + " [ 1.51660000e+03 1.20220000e+03]\n", + " [ 1.87DEBUG:root:cartToSphere: vec: [[-0.20607518 -0.20019593 0.95783851]\n", + " [-0.20787446 -0.17367087 0.96261448]\n", + " [-0.20940354 -0.14646307 0.96679818]\n", + " [-0.21066179 -0.11868235 0.97032784]\n", + " [-0.21164814 -0.09043873 0.97315256]\n", + " [-0.21236112 -0.0618427 0.9752324 ]\n", + " [-0.21279916 -0.03300558 0.97653835]\n", + " [-0.21296107 -0.0040396 0.97705233]\n", + " [-0.20607518 -0.20019593 0.95783851]\n", + " [-0.17964954 -0.20202839 0.96276195]\n", + " [-0.15251864 -0.20359907 0.96710159]\n", + " [-0.12479221 -0.20490731 0.97079344]\n", + " [-0.09658011 -0.20595196 0.97378441]\n", + " [-0.06799262 -0.20673135 0.97603235]\n", + " [-0.03914089 -0.20724368 0.97750603]\n", + " [-0.01013708 -0.20748743 0.97818516]\n", + " [-0.21296107 -0.0040396 0.97705233]\n", + " [-0.18561075 -0.00409191 0.98261483]\n", + " [-0.15755214 -0.0041395 0.98750199]\n", + " [-0.12888979 -0.00418225 0.99165011]\n", + " [-0.09972928 -0.00421998 0.99500566]\n", + " [-0.07017922 -0.00425248 0.99752533]\n", + " [-0.04035219 -0.00427955 0.99917635]\n", + " [-0.01036463 -0.00430103 0.99993704]\n", + " [-0.01013708 -0.20748743 0.978180.56325254 0.67066509]\n", + " [-0.45150942 0.57862862 0.67921143]\n", + " [-0.41940468 0.59348277 0.68693371]\n", + " [-0.38650955 0.6077052 0.69376131]\n", + " [-0.54747524 0.55528614 0.62604166]\n", + " [-0.51865772 0.57165109 0.63577449]\n", + " [-0.4885665 0.58770584 0.64490668]\n", + " [-0.45734317 0.60330963 0.6533412 ]\n", + " [-0.42514094 0.61833777 0.66099439]\n", + " [-0.39212946 0.63267911 0.6677961 ]\n", + " [-0.55272584 0.57866179 0.59970383]\n", + " [-0.52390781 0.59530983 0.60920178]\n", + " [-0.49380424 0.61159991 0.61814474]\n", + " [-0.46255549 0.6273911 0.62643661]\n", + " [-0.43031371 0.64255756 0.63399518]\n", + " [-0.39724836 0.65698637 0.64075163]]\n", + "02632152\n", + " 0.03130538 0.03856929 0.05013934 0.07144362 0.12352264 0.42394999\n", + " 0.99869589 0.99824427 0.99750809 0.99618636 0.99344379 0.98619551\n", + " 0.95488154 0.42394999 0.67473055 0.59886588 0.50259973 0.38323562\n", + " 0.24111118 0.08166976 0.71871537 0.78228347 0.84793203 0.91052415\n", + " 0.96220509 0.99378803 0.02463779 0.03002235 0.03835014 0.05293717\n", + " 0.08504731 0.21194041 0.99849582 0.99776097 0.99631488 0.99282691\n", + " 0.98044695 0.85535584 0.69733413 0.69733413 0.42761774 0.42761774\n", + " 0.69673058 0.76290649 0.83256888 0.90038456 0.95751545 0.99297621\n", + " 0.62206339 0.69451068 0.77581252 0.86101491 0.93844125 0.9895708\n", + " 0.52551558 0.6002579 0.6910356 0.79630575 0.903863 0.98294374\n", + " 0.40338671 0.47219495 0.5636759 0.68482227 0.83348167 0.96736623\n", + " 0.25523664 0.305473 0.37836089 0.49058257 0.67053956 0.91635552\n", + " 0.08675898 0.10531014 0.13379739 0.18293452 0.28641505 0.60394515]\n", + "03]\n", + " [ 4.85400000e+02 1.56060000e+03]\n", + " [ 8.43800000e+02 1.56060000e+03]\n", + " [ 1.20220000e+03 1.56060000e+03]\n", + " [ 1.56060000e+03 1.56060000e+03]\n", + " [ 1.91900000e+03 1.56060000e+03]\n", + " [ 1.27000000e+02 1.91900000e+03]\n", + " [ 4.85400000e+02 1.91900000e+03]\n", + " [ 8.43800000e+02 1.91900000e+03]\n", + " [ 1.20220000e+03 1.91900000e+03]\n", + " [ 1.56060000e+03 1.91900000e+03]\n", + " [ 1.91900000e+03 1.91900000e+03]]\n", + "DEBUG:root:fitpix2pix: ccdpx: shape: (96, 2)\n", + "516]\n", + " [-0.01020871 -0.17998755 0.98361591]\n", + " [-0.01026764 -0.15180051 0.98DEBUG:root:fitpix2pix: ccdpx: shape: (96, 2)\n", + "835782]\n", + " [-0.01031373 -0.12303089 0.99234925]\n", + " [-0.01034674 -0.0937848 0.99553873]\n", + " [-0.01036638 -0.06417157 0.99788504]\n", + " [-0.0103724 -0.03430461 0.9993576 ]\n", + " [-0.01036463 -0.00430103 0.99993704]\n", + " [-0.20680345 -0.18872819 0.96000729]\n", + " [-0.20882603 -0.15574492 0.96547149]\n", + " [-0.21044235 -0.12184525 0.96998338]\n", + " [-0.21165063 -0.0872316 0.97344474]\n", + " [-0.2124482 -0.05210744 0.97578203]\n", + " [-0.2128323 -0.0166781 0.97694639]\n", + " [-0.19465346 -0.20093724 0.96006992]\n", + " [-0.16177694 -0.20300612 0.96572084]\n", + " [-0.12795009 -0.20468137 0.97042996]\n", + " [-0.0933751 -0.20596106 0.97409503]\n", + " [-0.05825505 -0.20684219 0.97663845]\n", + " [-0.022795 -0.20732153 0.97800724]\n", + " [-0.20112996 -0.00416252 0.97955572]\n", + " [-0.16711987 -0.00422448 0.98592753]\n", + " [-0.13214975 -0.00427905 0.99122053]\n", + " [-0.09641349 -0.00432591 0.99533197]\n", + " [-0.0601111 -0.00436469 0.99818215]\n", + " [-0.02345151 -0.00439503 0.99971531]\n", + " [-0.01026957 -0.19558822 0.98063234]\n", + " [-0.010349DEBUG:root:radec2pix: curVec: [[-0.31628757 0.28553612 0.90467193]\n", + " [-0.30089923 0.26635486 0.9157045 ]\n", + " [-0.28508114 0.24646927 0.92627299]\n", + " [-0.26887683 0.22596351 0.93629362]\n", + " [-0.25233417 0.20492161 0.94569266]\n", + " [-0.2355055 0.18342765 0.95440634]\n", + " [-0.21844767 0.16156622 0.96238089]\n", + " [-0.20122174 0.13942277 0.96957264]\n", + " [-0.31628757 0.28553612 0.90467193]\n", + " [-0.33808919 0.27007865 0.90152827]\n", + " [-0.36003111 0.2539667 0.89770737]\n", + " [-0.38201122 0.23727006 0.89317991]\n", + " [-0.40393095 0.22005826 0.88792688]\n", + " [-0.42569506 0.20240071 0.88193972]\n", + " [-0.44721154 0.18436717 0.87522031]\n", + " [-0.46839177 0.16602823 0.86778095]\n", + " [-0.20122174 0.13942277 0.96957264]\n", + " [-0.22287315 0.12198709 0.96718494]\n", + " [-0.24478707 0.10409296 0.963973 ]\n", + " [-0.26686553 0.08580723 0.9599062 ]\n", + " [-0.28901342 0.06719734 0.95496375]\n", + " [-0.31113713 0.04833256 0.94913521]\n", + " [-0.33314399 0.0292847 0.94242108]\n", + " [-0.35494253 0.01012806 0.93483326]\n", + " [-0.46839177 0.16602823 0.86778095]\n", + " [-0.45391344 0.14497402 0.87917298]\n", + " [-0.43878352 0.12337728 0.89008262]\n", + " [-0.42304219 0.10131844 0.90042761]\n", + " [-0.4067341 0.07887887 0.91013488]\n", + " [-0.38990948 0.05614225 0.91914017]\n", + " [-0.37262475 0.0331954 0.92738819]\n", + " [-0.35494253 0.01012806 0.93483326]\n", + " [-0.30970799 0.27721279 0.90952407]\n", + " [-0.29055403 0.25321843 0.92274524]\n", + " [-0.27079717 0.22824987 0.93518495]\n", + " [-0.25052372 0.20246187 0.94670326]\n", + " [-0.22983007 0.17600926 0.95718278]\n", + " [-0.2088226 0.14904812 0.96652873]\n", + " [-0.32571752 0.2788167 0.90342091]\n", + " [-0.35254549 0.25942157 0.89911741]\n", + " [-0.37948242 0.23911288 0.89376626]\n", + " [-0.40634538 0.21801873 0.88732816]\n", + " [-0.43295902 0.19626697 0.87978734]\n", + " [-0.45915534 0.17398637 0.8711516 ]\n", + " [-0.21068246 0.13195784 0.96860726]\n", + " [-0.23740813 0.11027268 0.96513072]\n", + " [-0.26443025 0.0879652 0.9603847 ]\n", + " [-0.29157262 0.06515923 0.95432682]\n", + " [-0.31866283 0.04198238 0.94693795]\n", + " [-0.34553073 0.0185679 0.93822372]\n", + " [-0.46208966 0.156DEBUG:root:radec2pix: fitpx: [[ 2.13550000e+03 -4.99999783e-01]\n", + " [ 2.13550000e+03 2.91928571e+02]\n", + " [ 2.13550000e+03 5.84357143e+02]\n", + " [ 2.13550000e+03 8.76785714e+02]\n", + " [ 2.13550000e+03 1.16921429e+03]\n", + " [ 2.13550000e+03 1.46164286e+03]\n", + " [ 2.13550000e+03 1.75407143e+03]\n", + " [ 2.13550000e+03 2.04650000e+03]\n", + " [ 2.13550000e+03 -4.99999783e-01]\n", + " [ 2.42792857e+03 -5.00000080e-01]\n", + " [ 2.72035714e+03 -5.00000178e-01]\n", + " [ 3.01278571e+03 -4.99999867e-01]\n", + " [ 3.30521429e+03 -5.00000095e-01]\n", + " [ 3.59764286e+03 -5.00000221e-01]\n", + " [ 3.89007143e+03 -5.00000185e-01]\n", + " [ 4.18250000e+03 -5.00000018e-01]\n", + " [ 2.13550000e+03 2.04650000e+03]\n", + " [ 2.42792857e+03 2.04650000e+03]\n", + " [ 2.72035714e+03 2.04650000e+03]\n", + " [ 3.01278571e+03 2.04650000e+03]\n", + " [ 3.30521429e+03 2.04650000e+03]\n", + " [ 3.59764286e+03 2.04650000e+03]\n", + " [ 3.89007143e+03 2.04650000e+03]\n", + " [ 4.18250000e+03 2.04650000e+03]\n", + " [ 4.18250000e+03 -5.00000018e-01]\n", + " [ 4.18250000e+03 2.91928571e+02]\n", + " [ 4.18250000e+03 5.84357143e+02]\n", + " [ 4.18250000e+03 8.76785714e+02]\n", + " [ 4.18250000e+03 1.16921429e+03]\n", + " [ 4.18250000e+03 1.46164286e+03]\n", + " [ 4.18250000e+03 1.75407143e+03]\n", + " [ 4.18250000e+03 2.04650000e+03]\n", + " [ 2.13650000e+03 1.27000000e+02]\n", + " [ 2.13650000e+03 4.85400000e+02]\n", + " [ 2.13650000e+03 8.43800000e+02]\n", + " [ 2.13650000e+03 1.20220000e+03]\n", + " [ 2.13650000e+03 1.56060000e+03]\n", + " [ 2.13650000e+03 1.91900000e+03]\n", + " [ 2.26300000e+03 4.99999873e-01]\n", + " [ 2.62140000e+03 5.00000123e-01]\n", + " [ 2.97980000e+03 5.00000108e-01]\n", + " [ 3.33820000e+03 4.99999719e-01]\n", + " [ 3.69660000e+03 4.99999964e-01]\n", + " [ 4.05500000e+03 5.00000185e-01]\n", + " [ 2.26300000e+03 2.04550000e+03]\n", + " [ 2.62140000e+03 2.04550000e+03]\n", + " [ 2.97980000e+03 2.04550000e+03]\n", + " [ 3.33820000e+03 2.04550000e+03]\n", + " [ 3.69660000e+03 2.04550000e+03]\n", + " [ 4.05500000e+03 2.04550000e+03]\n", + " [ 4.18150000e+03 1.27000000e+02]\n", + " [ 4.18150000e+03 4.85400000e+02]\n", + " [ 4.18150000e+03 8.43800000e+02]\n", + " [ 4.18150000e+03 1.20220000e+03]\n", + " [ 4.18150000e+03 1.56060000e+03]\n", + " [ 4.18150000e+03 1.91900000e+03]\n", + " [ 2.136500DEBUG:root:radec2pix: curVec Shape: (96, 3)\n", + "8 -0.16140908 0.98683331]\n", + " [-0.01041065 -0.12630166 0.99193725]\n", + " [-0.01045169 -0.09046055 0.99584519]\n", + " [-0.01047241 -0.05408714 0.9984813 ]\n", + " [-0.01047238 -0.0173918 0.99979391]\n", + " [-0.20599275 -0.20011322 0.95787352]\n", + " [-0.20599275 -0.20011322 0.95787352]\n", + " [-0.01046737 -0.00440367 0.99993552]\n", + " [-0.01046737 -0.00440367 0.99993552]\n", + " [-0.19541667 -0.18950334 0.9622374 ]\n", + " [-0.16240545 -0.19145029 0.96797276]\n", + " [-0.12844349 -0.19302803 0.97274994]\n", + " [-0.09373247 -0.19423441 0.9764667 ]\n", + " [-0.05847519 -0.195066 0.97904541]\n", + " [-0.02287686 -0.19551916 0.98043302]\n", + " [-0.19732118 -0.15638145 0.96778572]\n", + " [-0.16397526 -0.15798254 0.97373181]\n", + " [-0.12967711 -0.1592836 0.978679 ]\n", + " [-0.09462661 -0.16028164 0.98252511]\n", + " [-0.05902568 -0.16097217 0.98519233]\n", + " [-0.02308015 -0.16135064 0.98662722]\n", + " [-0.19884383 -0.12234264 0.97236485]\n", + " [-0.16523235 -0.1235961 0.97847957]\n", + " [-0.13066656 -0.12461804 0.98356321]\n", + " [-0.09534433 -0.12540495 0.98DEBUG:root:cartToSphere: vec: [[-0.20629584 -0.20078674 0.95766733]\n", + " [-0.20812128 -0.17428103 0.96245086]\n", + " [-0.20967356 -0.14708674 0.96664496]\n", + " [-0.21095376 -0.11931584 0.9701867 ]\n", + " [-0.21196139 -0.09107902 0.97302465]\n", + " [-0.21269501 -0.06248699 0.97511856]\n", + " [-0.2131529 -0.03365118 0.97643916]\n", + " [-0.21333373 -0.00468399 0.97696816]\n", + " [-0.20629584 -0.20078674 0.95766733]\n", + " [-0.1798852 -0.20262142 0.96259331]\n", + " [-0.15276427 -0.20419049 0.96693812]\n", + " [-0.12504507 -0.20549514 0.97063664]\n", + " [-0.09683814 -0.20653488 0.97363531]\n", + " [-0.06825398 -0.20730818 0.97589175]\n", + " [-0.03940385 -0.20781318 0.97737455]\n", + " [-0.01040007 -0.2080483 0.97806326]\n", + " [-0.21333373 -0.00468399 0.97696816]\n", + " [-0.18599064 -0.00472909 0.98254014]\n", + " [-0.15793623 -0.00476846 0.9874378 ]\n", + " [-0.12927467 -0.004802 0.9915972 ]\n", + " [-0.10011211 -0.00482954 0.99496444]\n", + " [-0.07055816 -0.00485094 0.99749587]\n", + " [-0.04072622 -0.00486604 0.99915849]\n", + " [-0.01073294 -0.00487474 0.99993052]\n", + " [-0.01040007 -0.2080483 0.97806326]\n", + " [-0.01048759 -0.18056016 0.98350803]\n", + " [-0.01056224 -0.15238099 0.98826539]\n", + " [-0.01062379 -0.12361519 0.99227336]\n", + " [-0.01067191 -0.09436952 0.99548004]\n", + " [-0.0107063 -0.06475431 0.9978438 ]\n", + " [-0.0107267 -0.03488367 0.99933381]\n", + " [-0.01073294 -0.00487474 0.99993052]\n", + " [-0.20703611 -0.1893284 0.95983895]\n", + " [-0.20908844 -0.1563645 0.96531454]\n", + " [-0.21073192 -0.12247778 0.96984084]\n", + " [-0.21196628 -0.08787247 0.97331841]\n", + " [-0.21278893 -0.05275245 0.97567313]\n", + " [-0.21319686 -0.01732329 0.97685567]\n", + " [-0.19488162 -0.20152974 0.95989943]\n", + " [-0.16201965 -0.20359843 0.96555544]\n", + " [-0.12820231 -0.20526972 0.97027239]\n", + " [-0.09363367 -0.2065434 0.9739469 ]\n", + " [-0.05851721 -0.20741673 0.97650091]\n", + " [-0.02305821 -0.20788637 0.97788117]\n", + " [-0.20150602 -0.0048039 0.9794755 ]\n", + " [-0.16750285 -0.00485635 0.98585963]\n", + " [-0.13253465 -0.0048999 0.99116626]\n", + " [-0.0967959 -0.00493429 0.99529202]\n", + " [-0.06048842 -0.00495921 0.99815658]\n", + " [-0.02382238 -0.00497442 0.99970383]\n", + " [-0.0105395 -0.19600e+03 4.99999853e-01]\n", + " [ 2.13650000e+03 4.99999853e-01]\n", + " [ 4.18150000e+03 2.04550000e+03]\n", + " [ 4.18150000e+03 2.04550000e+03]\n", + " [ 2.26300000e+03 1.27000000e+02]\n", + " [ 2.62140000e+03 1.27000000e+02]\n", + " [ 2.97980000e+03 1.27000000e+02]\n", + " [ 3.33820000e+03 1.27000000e+02]\n", + " [ 3.69660000e+03 1.27000000e+02]\n", + " [ 4.05500000e+03 1.27000000e+02]\n", + " [ 2.26300000e+03 4.85400000e+02]\n", + " [ 2.62140000e+03 4.85400000e+02]\n", + " [ 2.97980000e+03 4.85400000e+02]\n", + " [ 3.33820000e+03 4.85400000e+02]\n", + " [ 3.69660000e+03 4.85400000e+02]\n", + " [ 4.05500000e+03 4.85400000e+02]\n", + " [ 2.26300000e+03 8.43800000e+02]\n", + " [ 2.62140000e+03 8.43800000e+02]\n", + " [ 2.97980000e+03 8.43800000e+02]\n", + " [ 3.33820000e+03 8.43800000e+02]\n", + " [ 3.69660000e+03 8.43800000e+02]\n", + " [ 4.05500000e+03 8.43800000e+02]\n", + " [ 2.26300000e+03 1.20220000e+03]\n", + " [ 2.62140000e+03 1.20220000e+03]\n", + " [ 2.97980000e+03 1.20220000e+03]\n", + " [ 3.33820000e+03 1.20220000e+03]\n", + " [ 3.69660000e+03 1.20220000e+03]\n", + " [ 4.05500000e+03 1.20220000e+03]\n", + " [ 2.26300000e+03 1.56060000e+03]\n", + " [ 2.62140000e+03 1.56060000e+03]\n", + " [ 2.97980000e+03 1.56060000e+03]\n", + " [ 3.33820000e+03 1.56060000e+03]\n", + " [ 3.69660000e+03 1.56060000e+03]\n", + " [ 4.05500000e+03 1.56060000e+03]\n", + " [ 2.26300000e+03 1.91900000e+03]\n", + " [ 2.62140000e+03 1.91900000e+03]\n", + " [ 2.97980000e+03 1.91900000e+03]\n", + " [ 3.33820000e+03 1.91900000e+03]\n", + " [ 3.69660000e+03 1.91900000e+03]\n", + " [ 4.05500000e+03 1.91900000e+03]]\n", + "98381 0.87282829]\n", + " [-0.44390126 0.13080541 0.88647708]\n", + " [-0.42477376 0.10389189 0.89931848]\n", + " [-0.40478746 0.07639255 0.91121418]\n", + " [-0.38403491 0.04846159 0.92204591]\n", + " [-0.36262258 0.02026005 0.93171583]\n", + " [-0.31630992 0.28542015 0.90470071]\n", + " [-0.31630992 0.28542015 0.90470071]\n", + " [-0.35492951 0.01027265 0.93483663]\n", + " [-0.35492951 0.01027265 0.93483663]\n", + " [-0.31913312 0.27054087 0.90827402]\n", + " [-0.3460167 0.25096432 0.90404057]\n", + " [-0.37301818 0.23049276 0.8987383 ]\n", + " [-0.39995483 0.20925384 0.89232783]\n", + " [-0.42665126 0.18737487 0.8847934 ]\n", + " [-0.45293908 0.16498439 0.87614288]\n", + " [-0.30001281 0.24636291 0.92157345]\n", + " [-0.32700986 0.22630217 0.91752486]\n", + " [-0.35415237 0.2053988 0.91235269]\n", + " [-0.38125841 0.18377869 0.90601734]\n", + " [-0.4081525 0.16156774 0.89850287]\n", + " [-0.43466516 0.13889414 0.88981718]\n", + " [-0.28026577 0.22122602 0.93408252]\n", + " [-0.30731056 0.20072417 0.93019892]\n", + " [-0.33453148 0.1794312 0.92514493]\n", + " [-0.36174769 0.15747126 0.91888052]\n", + " [-0.38878388 0.13496935 0.91138925]\n", + " [-0.41546954 0.11205398 0.90267877]\n", + " [-0.25997819 0.19528449 0.94566131]\n", + " [-0.28700466 0.17438274 0.94192302]\n", + " [-0.31424063 0.15274047 0.93697555]\n", + " [-0.34150663 0.1304807 0.93077817]\n", + " [-0.3686278 0.10772836 0.92331368]\n", + " [-0.39543305 0.08461293 0.91458917]\n", + " [-0.23924663 0.16869268 0.95619236]\n", + " [-0.26618898 0.14743094 0.95257942]\n", + " [-0.2933765 0.1254788 0.94772638]\n", + " [-0.32063117 0.10295905 0.94159178]\n", + " [-0.34777898 0.07999736 0.93415748]\n", + " [-0.3746488 0.05672469 0.92542995]\n", + " [-0.21817786 0.14160654 0.96558066]\n", + " [-0.2449713 0.12002467 0.96207232]\n", + " [-0.27204749 0.09780262 0.95730079]\n", + " [-0.2992298 0.07506384 0.95122392]\n", + " [-0.32634539 0.05193534 0.94382276]\n", + " [-0.35322373 0.02854981 0.93510315]]\n", + "87 34.5416822\n", + " 13.61074549 15.37910619 18.5898944 22.63745111 27.1500822 31.93121491\n", + " 8.33845435 10.99064764 15.16118736 19.91812291 24.9279841 30.06459569\n", + " 3.40734519 7.92934524 13.11265734 18.40684115 23.73782997 29.08539314]\n", + "500000e+03 1.20220000e+03]\n", + " [ 8.30000001e+01 1.56060000e+03]\n", + " [ 4.41400000e+02 1.56060000e+03]\n", + " [ 7.99800000e+02 1.56060000e+03]\n", + " [ 1.15820000e+03 1.56060000e+03]\n", + " [ 1.51660000e+03 1.56060000e+03]\n", + " [ 1.87500000e+03 1.56060000e+03]\n", + " [ 8.29999998e+01 1.91900000e+03]\n", + " [ 4.41400000e+02 1.91900000e+03]\n", + " [ 7.99800000e+02 1.91900000e+03]\n", + " [ 1.15820000e+03 1.91900000e+03]\n", + " [ 1.51660000e+03 1.91900000e+03]\n", + " [ 1.87500000e+03 1.91900000e+03]]\n", + "DEBUG:root:optics_fp: xyfp: [[-32.31281793 -31.43806373]\n", + " [-32.31091541 -27.05163558]\n", + " [-32.30901287 -22.66520742]\n", + " [-32.30711034 -18.27877926]\n", + " [-32.3052078 -13.8923511 ]\n", + " [-32.30330527 -9.50592294]\n", + " [-32.30140274 -5.11949478]\n", + " [-32.2995002 -0.73306663]\n", + " [-32.31281793 -31.43806373]\n", + " [-27.92638978 -31.43996627]\n", + " [-23.53996162 -31.4418688 ]\n", + " [-19.15353346 -31.44377134]\n", + " [-14.7671053 -31.44567387]\n", + " [-10.38067715 -31.44757641]\n", + " [ -5.99424899 -31.44947894]\n", + " [ -1.60782083 -31.45138147]\n", + " [-32.2995002 -0.73306663]\n", + " [-27.91307204 -0.73496916]\n", + " [-23.52664389 -0.73687169]\n", + " [-19.14021573 -0.73877423]\n", + " [-14.75378757 -0.74067676]\n", + " [-10.36735941 -0.74257929]\n", + " [ -5.98093125 -0.74448183]\n", + " [ -1.59450309 -0.74638436]\n", + " [ -1.60782083 -31.45138147]\n", + " [ -1.60591829 -27.06495331]\n", + " [ -1.60401576 -22.67852516]\n", + " [ -1.60211323 -18.292097 ]\n", + " [ -1.60021069 -13.90566884]\n", + " [ -1.59830816 -9.51924068]\n", + " [ -1.59640563 -5.13281252]\n", + " [ -1.59450309 -0.74638436]\n", + " [-32.29698843 -29.52557043]\n", + " [-32.29465669 -24.14957093]\n", + " [-32.29232495 -18.77357144]\n", + " [-32.2899932 -13.39757194]\n", + " [-32.28766146 -8.02157244]\n", + " [-32.28532972 -2.64557295]\n", + " [-30.40031161 -31.42389325]\n", + " [-25.02431212 -31.42622499]\n", + " [-19.64831262 -31.42855673]\n", + " [-14.27231313 -31.43088848]\n", + " [ -8.89631363 -31.43322022]\n", + " [ -3.52031414 -31.43555196]\n", + " [-30.38700689 -0.74889614]\n", + " [-25.01100739 -0.75122788]\n", + " [-19.6350079 -0.75355962]\n", + " [-14.25900841 -0.75589136]\n", + " [ -8.88300892 -0.7582231 ]\n", + " [ -3.50700942 -0.76055484]\n", + " [ -1.62199131 -29.53887515]\n", + " [ -1.61965957 -24.16287565]\n", + " [ -1.61732783 -18.78687616]\n", + " [ -1.61499609 -13.41087666]\n", + " [ -1.61266434 -8.03487716]\n", + " [ -1.6103326 -2.65887768]\n", + " [-32.29781143 -31.42307024]\n", + " [-32.29781143 -31.42307024]\n", + " [ -1.60950959 -0.76137785]\n", + " [ -1.60950959 -0.76137785]\n", + " [-30.3994886 -29.52639343]\n", + " [-25.02348911 -29.52872517]\n", + " [-19.64748962 -29.53105692]\n", + " [-14.27149012 -29.53338866]\n", + " [ -8.89549063 -29.5357204 ]\n", + " [ -3.51949113 -29.53805214]\n", + " [-30.39715686 -24.15039394]\n", + " [-25.02115737 -24.15272568]\n", + " [-19.64515788 -24.15505742]\n", + " [-14.26915838 -24.15738916]\n", + " [ -8.89315889 -24.1597209 ]\n", + " [ -3.51715939 -24.16205264]\n", + " [-30.39482512 -18.77439444]\n", + " [-25.015466 0.98051633]\n", + " [-0.01063912 -0.1619874 0.98673547]\n", + " [-0.01071899 -0.12688576 0.99185942]\n", + " [-0.01077856 -0.09104519 0.99578843]\n", + " [-0.01081726 -0.05466885 0.99844594]\n", + " [-0.01083465 -0.01796812 0.99977985]\n", + " [-0.20621357 -0.20070413 0.95770236]\n", + " [-0.20621357 -0.20070413 0.95770236]\n", + " [-0.01083565 -0.00497744 0.9999289 ]\n", + " [-0.01083565 -0.00497744 0.9999289 ]\n", + " [-0.19565571 -0.19010422 0.96207028]\n", + " [-0.16265759 -0.19204948 0.96781171]\n", + " [-0.12870452 -0.19362274 0.97259724]\n", + " [-0.09399937 -0.19482286 0.9763238 ]\n", + " [-0.05874512 -0.19564642 0.97891342]\n", + " [-0.0231472 -0.1960896 0.98031274]\n", + " [-0.19758845 -0.15700026 0.96763099]\n", + " [-0.16425347 -0.15859759 0.97358492]\n", + " [-0.12996305 -0.1598933 0.97854164]\n", + " [-0.09491705 -0.16088429 0.98239859]\n", + " [-0.05931746 -0.1615658 0.98507763]\n", + " [-0.02337052 -0.16193328 0.98652493]\n", + " [-0.19913769 -0.12297381 0.97222509]\n", + " [-0.16553623 -0.12422245 0.97834888]\n", + " [-0.13097704 -0.12523802 0.98344316]\n", + " [-0.09565767 -0.12601654 0.98740541]\n", + " [-0.05977969 -0.12655298 0.99015692]\n", + " [-0.02355053 -0.12684288 0.99164321]\n", + " [-0.20030226 -0.088228 0.97575346]\n", + " [-0.16650264 -0.0891244 0.98200495]\n", + " [-0.13174231 -0.0898551 0.98720313]\n", + " [-0.09621721 -0.09041635 0.99124524]\n", + " [-0.0601289 -0.09080384 0.9940519 ]\n", + " [-0.023686 -0.09101389 0.9955679 ]\n", + " [-0.20107886 -0.05296627 0.97814205]\n", + " [-0.16714801 -0.0535061 0.98447887]\n", + " [-0.13225382 -0.05394701 0.98974676]\n", + " [-0.09659125 -0.05428637 0.9938426 ]\n", + " [-0.06036201 -0.05452132 0.99668644]\n", + " [-0.02377567 -0.05464944 0.9982225 ]\n", + " [-0.201464 -0.01739439 0.97934146]\n", + " [-0.16746808 -0.0175743 0.98572085]\n", + " [-0.13250731 -0.01772184 0.99102359]\n", + " [-0.0967762 -0.01783608 0.99514634]\n", + " [-0.06047657 -0.01791601 0.99800882]\n", + " [-0.02381854 -0.0179608 0.99955494]]\n", + "DEBUG:root:fitpix2pix: visCut: True\n", + "DEBUG:root:optics_fp: cphi: [0.00531582 0.00617606 0.00736845 0.00913141 0.01200322 0.01750968\n", + " 0.03234551 0.20821284 0.00531582 0.14311708 0.27310311 0.3897246\n", + " 0.4902447 0.57443147 0.6431882563 -18.77672618]\n", + " [-19.64282613 -18.77905793]\n", + " [-14.26682664 -18.78138967]\n", + " [ -8.89082714 -18.78372141]\n", + " [ -3.51482765 -18.78605315]\n", + " [-30.39249338 -13.39839495]\n", + " [-25.01649389 -13.40072669]\n", + " [-19.64049439 -13.40305843]\n", + " [-14.2644949 -13.40539017]\n", + " [ -8.8884954 -13.40772191]\n", + " [ -3.51249591 -13.41005365]\n", + " [-30.39016163 -8.02239545]\n", + " [-25.01416214 -8.02472719]\n", + " [-19.63816265 -8.02705893]\n", + " [-14.26216315 -8.02939068]\n", + " [ -8.88616366 -8.03172242]\n", + " [ -3.51016417 -8.03405416]\n", + " [-30.3878299 -2.64639596]\n", + " [-25.01183041 -2.6487277 ]\n", + " [-19.63583091 -2.65105944]\n", + " [-14.25983141 -2.65339118]\n", + " [ -8.88383191 -2.65572292]\n", + " [ -3.50783243 -2.65805467]]\n", + "DEBUG:root:fitpix2pix: ccdpx: shape: (96, 2)\n", + "DEBUG:root:radec2pix: curVec Shape: (96, 3)\n", + "DEBUG:root:radec2pix: camVec: [[-0.20605921 -0.20787315 -0.20942436 -0.21070676 -0.21171698 -0.21245291\n", + " -0.21291301 -0.2130962 -0.20605921 -0.17962884 -0.15250018 -0.12477652\n", + " -0.0965659 -0.06797863 -0.03912632 -0.01012153 -0.2130962 -0.185735066516 0.70005401 0.20821284 0.985415\n", + " 0.9961538 0.99826353 0.99901596 0.99936749 0.99955952 0.99967574\n", + " 0.70005401 0.75147061 0.80542393 0.85983504 0.91133409 0.95525529\n", + " 0.98625153 0.99967574 0.00616661 0.00753628 0.00968808 0.01355957\n", + " 0.02258341 0.06743141 0.06593447 0.23049481 0.37750356 0.50072179\n", + " 0.5996194 0.67707715 0.93313131 0.9942732 0.99805551 0.99903282\n", + " 0.99942317 0.99961734 0.72190396 0.78684101 0.853656 0.91669352\n", + " 0.96742456 0.9961969 0.00579488 0.00579488 0.99966293 0.99966293\n", + " 0.07014401 0.24442291 0.39798307 0.52421253 0.62341756 0.6995908\n", + " 0.08562066 0.29440551 0.4684183 0.60117718 0.69788907 0.76731313\n", + " 0.10980719 0.36820194 0.56319871 0.69519142 0.78151879 0.83840459\n", + " 0.15281345 0.48480743 0.69026239 0.80432664 0.86864949 0.90694654\n", + " 0.24943532 0.67838632 0.84636544 0.9141376 0.94608152 0.96325609\n", + " 0.61041805 0.94029264 0.97858921 0.98919227 0.99351563 0.99568553]\n", + "3\n", + " -0.15766321 -0.1289874 -0.09981355 -0.07024926 -0.04040619 -0.01040084\n", + " -0.01012153 -0DEBUG:root:optics_fp: xyfp shape: (96, 2)\n", + "DEBUG:root:fitpix2pix: visCut: True\n", + ".01020027 -0.01026637 -0.01031977 -0.01036027 -0.01038751\n", + " -0.01040113 -0.01040084 -0.20679239 -0.20883895 -0.21048459 -0.2117221\n", + " -0.21254753 -0.21295821 -0.1946339 -0.16175754 -0.12793421 -0.09336102\n", + " -0.05824097 -0.02277993 -0.20126076 -0.16723544 -0.13224882 -0.09649617\n", + " -0.06017591 -0.02349561 -0.01025713 -0.01034611 -0.01041588 -0.01046611\n", + " -0.01049618 -0.01050541 -0.20597676 -0.20597676 -0.01050361 -0.01050361\n", + " -0.19540403 -0.16239488 -0.12843557 -0.09372478 -0.05846599 -0.02286533\n", + " -0.19733483 -0.16399068 -0.1296908 -0.094636 -0.05902974 -0.02307851\n", + " -0.19888634 -0.16527244 -0.13070023 -0.09537003 -0.05948408 -0.02324907\n", + " -0.20005292 -0.16623701 -0.13146138 -0.09592455 -0.05982716 -0.0233762\n", + " -0.20083104 -0.16688094 -0.13197015 -0.09629527 -0.0600556 -0.02345845\n", + " -0.20121796 -0.16720058 -0.13222195 -0.09647752 -0.06016577 -0.02349426]\n", + " [-0.20169937 -0.17519485 -0.1480085 -0.12024402 -0.09200964 -0.06341581\n", + " -0.03457423 -0.00559748 -0.20169937 -0.20353396 -0.20511207 -0.20642749\n", + " -0.20747679 -0.20825778 -0.20876879 -0.20900854 -0.00559748 -0.00565735\n", + " -0.00571045 -0.00575671 -0.00579596 -0.00582797 -0.00585246 -0.00586919\n", + " -0.20900854 -0.18153487 -0.15336672 -0.12461057 -0.09537244 -0.06576046\n", + " -0.03588698 -0.00586919 -0.1902398 -0.15728353 -0.12340547 -0.08880315\n", + " -0.0536798 -0.01824146 -0.20244048 -0.20451655 -0.20620095 -0.20748634\n", + " -0.2083686 -0.2088448 -0.00572401 -0.00579384 -0.00585326 -0.00590199\n", + " -0.0059396 -0.00596558 -0.19712185 -0.16296958 -0.1278801 -0.09204872\n", + " -0.05567473 -0.01896706 -0.2016167 -0.2016167 -0.0059719 -0.0059719\n", + " -0.19101701 -0.19297429 -0.19456158 -0.19577312 -0.19660523 -0.1970549\n", + " -0.15792497 -0.15953875 -0.16084786 -0.1618491 -0.16253892 -0.16291334\n", + " -0.12390793 -0.1251726 -0.12620079 -0.12699006 -0.12753631 -0.1278347\n", + " -0.089165 -0.090077 -0.09082101 -0.09139481 -0.09179425 -0.09201449\n", + " -0.05389991 -0.05445583 -0.05491134 -0.05526476 -0.0555129 -0.05565213\n", + " -0.018319 -0.01851594 -0.01867909 -0.01880776 -0.01890068 -0.01895646]\n", + " [ 0.95752648 0.96233857 0.96655829 0.97012578 0.97299031 0.97511138\n", + " 0.97645925 0.97701519 0.95752648 0.96244865 0.96678474 0.97047334\n", + " 0.97346207 0.97570877 0.97718203 0.97786143 0.97701519 0.98258358\n", + " 0.98747643 0.99162952 0.99498928 0.99751244 0.9991662 0.99992869\n", + " 0.97786143 0.98333161 0.98811601 0.99215206 0.99538774 0.99778137\n", + " 0.99930173 0.99992869 0.95971127 0.96521924 0.96977695 0.97328709\n", + " 0.97567516 0.97689101 0.95975804 0.96540534 0.97011031 0.97377263\n", + " 0.97631476 0.97768345 0.97952098 0.98589996 0.99119927 0.99531586\n", + " 0.99817012 0.99970614 0.98032534 0.98657685 0.99173494 0.9956995\n", + " 0.99839379 0.99976492 0.95756163 0.95756163 0.999927 0.999927\n", + " 0.96194063 0.96767186 0.97244542 0.97616011 0.97873802 0.98012578\n", + " 0.96753226 0.97347545 0.97842131 0.98226722 0.98493DEBUG:root:radec2pix: lng: [224.22465666 219.9428498 215.04979529 209.49258103 203.25301711\n", + " 196.37209253 188.97143587 181.25779309 224.22465666 228.40166279\n", + " 233.19815281 238.6792283 244.87949815 251.77642798 259.26349599\n", + " 267.13824006 181.25779309 181.45651552 181.7293675 182.12731457\n", + " 182.76188514 183.93294711 186.8134933 204.42682228 267.13824006\n", + " 266.67578867 266.03490179 265.0879329 263.54803827 260.61180811\n", + " 252.90738353 204.42682228 222.44199402 216.7905754 210.16523251\n", + " 202.51687812 193.92347078 184.64535837 225.96080389 231.48791131\n", + " 238.01293878 245.61347707 254.24497485 263.67077373 181.36567301\n", + " 181.66068982 182.11730117 182.91819426 184.68697431 191.79462375\n", + " 266.92442169 266.24228499 265.17126169 263.2483557 258.80752919\n", + " 238.9103071 224.22429417 224.22429417 204.67204832 204.67204832\n", + " 224.17550953 229.73684595 236.38729877 244.24332674 253.28700279\n", + " 263.26773103 218.4700285 223.99636381 230.89540499 239.46063162\n", + " 249.83973486 261.78766678 211.69663969 216.88546482 0.98637043\n", + " 0.97215793 0.97827237 0.98335691 0.9873085 0.99004855 0.99152295\n", + " 0.97571944 0.98196303 0.98715219 0.99118387 0.99397914 0.99548324\n", + " 0.97814196 0.9844721 0.98973159 0.9938174 0.99665021 0.9981746\n", + " 0.97937518 0.98574902 0.99104412 0.99515745 0.99800944 0.99954423]]\n", + "29 223.71683254\n", + " 232.7982941 244.71540545 259.48183646 203.77225927 208.15895021\n", + " 214.29602039 223.21973304 236.48809111 255.41258234 194.75709541\n", + " 197.7504966 202.19079752 209.33692857 222.08957905 246.48817507\n", + " 184.93467768 185.99075879 187.61766642 190.44256036 196.50176943\n", + " 217.01878407]\n", + "751357]\n", + " [-0.05946678 -0.1259519 0.9902524 ]\n", + " [-0.02324061 -0.1262541 0.99172566]\n", + " [-0.19998259 -0.08758892 0.9758766 ]\n", + " [-0.16617376 -0.08849133 0.9821179 ]\n", + " [-0.13140827 -0.08922984 0.98730436]\n", + " [-0.09588212 -0.08980108 0.99133364]\n", + " [-0.05979589 -0.09020062 0.9941269 ]\n", + " [-0.0233572 -0.09042422 0.9956294 ]\n", + " [-0.20073433 -0.05232353 0.9782474 ]\n", + " [-0.16679525 -0.0528708 0.984DEBUG:root:fitpix2pix: visCut: True\n", + "DEBUG:root:radec2pix: fitpx: [[ 2.13550000e+03 -4.99999797e-01]\n", + " [ 2.13550000e+03 2.91928572e+02]\n", + " [ 2.13550000e+03 5.84357143e+02]\n", + " [ 2.13550000e+03 8.76785714e+02]\n", + " [ 2.13550000e+03 1.16921429e+03]\n", + " [ 2.13550000e+03 1.46164286e+03]\n", + " [ 2.13550000e+03 1.75407143e+03]\n", + " [ 2.13550000e+03 2.04650000e+03]\n", + " [ 2.13550000e+03 -4.99999797e-01]\n", + " [ 2.42792857e+03 -5.00000034e-01]\n", + " [ 2.72035714e+03 -4.99999972e-01]\n", + " [ 3.01278571e+03 -4.99999760e-01]\n", + " [ 3.30521429e+03 -5.00000049e-01]\n", + " [ 3.59764286e+03 -4.99999867e-01]\n", + " [ 3.89007143e+03 -5.00000044e-01]\n", + " [ 4.18250000e+03 -4.99999770e-01]\n", + " [ 2.13550000e+03 2.04650000e+03]\n", + " [ 2.42792857e+03 2.04650000e+03]\n", + " [ 2.72035714e+03 2.04650000e+03]\n", + " [ 3.01278571e+03 2.04650000e+03]\n", + " [ 3.30521429e+03 2.04650000e+03]\n", + " [ 3.59764286e+03 2.04650000e+03]\n", + " [ 3.89007143e+03 2.04650000e+03]\n", + " [ 4.18250000e+03 2.04650000e+03]\n", + " [ 4.18250000e+03 -4.99999770e-01]\n", + " [ 4.18250000e+03 2.91928572e+02]\n", + " [ 4.18250000e+03 5.84357143e+02]\n", + " [ 4.18250000e+03 8.76785714e+02]\n", + " [ 4.18250000e+03 1.16921429e+03]\n", + " [ 4.18250000e+03 1.46164286e+03]\n", + " [ 4.18250000e+03 1.75407143e+03]\n", + " [ 4.18250000e+03 2.04650000e+03]\n", + " [ 2.13650000e+03 1.27000000e+02]\n", + " [ 2.13650000e+03 4.85400000e+02]\n", + " [ 2.13650000e+03 8.43800000e+02]\n", + " [ 2.13650000e+03 1.20220000e+03]\n", + " [ 2.13650000e+03 1.56060000e+03]\n", + " [ 2.13650000e+03 1.91900000e+03]\n", + " [ 2.26300000e+03 5.00000045e-01]\n", + " [ 2.62140000e+03 5.00000251e-01]\n", + " [ 2.97980000e+03 4.99999878e-01]\n", + " [ 3.33820000e+03 4.99999746e-01]\n", + " [ 3.69660000e+03 5.00000268e-01]\n", + " [ 4.05500000e+03 4.99999743e-01]\n", + " [ 2.26300000e+03 2.04550000e+03]\n", + " [ 2.62140000e+03 2.04550000e+03]\n", + " [ 2.97980000e+03 2.04550000e+03]\n", + " [ 3.33820000e+03 2.04550000e+03]\n", + " [ 3.69660000e+03 2.04550000e+03]\n", + " [ 4.05500000e+03 2.04550000e+03]\n", + " [ 4.18150000e+03 1.27000000e+02]\n", + " [ 4.18150000e+03 4.85400000e+02]\n", + " [ 4.18150000e+03 8.43800000e+02]\n", + " [ 4.18150000e+03 1.20220000e+03]\n", + " [ 4.18150000e+03 1.56060000e+03]\n", + " [ 4.18150000e+03 1.91900000e+03]\n", + " [ 2.13650000e+03 5.00000140e-01]\n", + " [ 2.13650000e+03 5.00000140e-01]\n", + " [ 4.18150000e+03 2.04550000e+03]\n", + " [ 4.18150000e+03 2.04550000e+03]\n", + " [ 2.26300000e+03 1.27000000e+02]\n", + " [ 2.62140000e+03 1.27000000e+02]\n", + " [ 2.97980000e+03 1.27000000e+02]\n", + " [ 3.33820000e+03 1.27000000e+02]\n", + " [ 3.69660000e+03 1.27000000e+02]\n", + " [ 4.05500000e+03 1.27000000e+02]\n", + " [ 2.26300000e+03 4.85400000e+02]\n", + " [ 2.62140000e+03 4.85400000e+02]\n", + " [ 2.97980000e+03 4.85400000e+02]\n", + " [ 3.33820000e+03 4.85400000e+02]\n", + " [ 3.69660000e+03 4.85400000e+02]\n", + " [ 4.05500000e+03 4.85400000e+02]\n", + " [ 2.26300000e+03 8.43800000e+02]\n", + " [ 2.62140000e+03 8.43800000e+02]\n", + " [ 2.97980000e+03 8.43800000e+02]\n", + " [ 3.33820000e+03 8.43800000e+02]\n", + " [ 3.69660000e+03 8.43800000e+02]\n", + " [ 4.05500000e+03 8.43800000e+02]\n", + " [ 2.26300000e+03 1.20220000e+03]\n", + " [ 2.62140000e+03 1.20220000e+03]\n", + " [ 2.97980000e+03 1.20220000e+03]\n", + " [ 3.33820000e+03 1.20220000e+03]\n", + " [ 3.69660000e+03 1.20220000e+03]\n", + " [ 4.05500000e+03 1.20220000e+03]\n", + " [ 2.26300000e+03 1.56060000e+03]\n", + " [ 2.62140000e+03 1.56060000e+03]\n", + " [ 2.97980000e+03 1.56060000e+03]\n", + " [ 3.33820000e+03 1.56060000e+03]\n", + " [ 3.69660000e+03 1.56060000e+03]\n", + " [ 4.05500000e+03 1.56060000e+03]\n", + " [ 2.26300000e+03 1.91900000e+03]\n", + " [ 2.62140000e+03 1.91900000e+03]\n", + " [ 2.97980000e+03 1.91900000e+03]\n", + " [ 3.33820000e+03 1.91900000e+03]\n", + " [ 3.69660000e+03 1.91900000e+03]\n", + " [ 4.05500000e+03 1.91900000e+03]]\n", + "57302]\n", + " [-0.13189744 -0.053321 0.98982824]\n", + " [-0.09623556 -0.05367171 0.99391049]\n", + " [-0.06000982 -0.05391982 0.99674043]\n", + " [-0.02342863 -0.0540624 0.99826267]\n", + " [-0.20109591 -0.016752 0.97942831]\n", + " [-0.16709274 -0.01694088 0.98579563]\n", + " [-0.13212968 -0.01709901 0.99108495]\n", + " [-0.09640067 -0.01722548 0.99519355]\n", + " [-0.06010576 -0.01731915 0.99804176]\n", + " [-0.0234538 -0.01737894 0.99957386]]\n", + "DEBUG:root:optics_fp: sphi: [-0.99998587 -0.99998093 -0.99997285 -0.99995831 -0.99992796 -0.99984669\n", + " -0.99947675 -0.97808354 -0.99998587 -0.98970577 -0.96198477 -0.92093145\n", + " -DEBUG:root:fitpix2pix: ccdpx: shape: (96, 2)\n", + "0.87158484 -0.81855268 -0.76530723 -0.7140899 -0.97808354 -0.17016839\n", + " -0.08762197 -0.05890603 -0.04435211 -0.03556139 -0.02967765 -0.02546394\n", + " -0.7140899 -0.65976656 -0.59269916 -0.51057194 -0.41166757 -0.29578258\n", + " -0.16525108 -0.02546394 -0.99998099 -0.9999716 -0.99995307 -0.99990806\n", + " -0.99974496 -0.99772391 -0.99782396 -0.97307356 -0.92600813 -0.86560828\n", + " -0.80028531 -0.73591205 -0.35953576 -0.10686813 -0.06233133 -0.04397062\n", + " -0.03396069 -0.02766174 -0.69199326 -0.61715575 -0.52083725 -0.39959102\n", + " -0.25315949 -0.08713059 -0.99998321 -0.99998321 -0.02596193 -0.02596193\n", + " -0.99753688 -0.96966873 -0.91739276 -0.85158747 -0.78188909 -0.71454371\n", + " -0.99632781 -0.95568059 -0.88350682 -0.79911576 -0.71620587 -0.64127261\n", + " -0.99395291 -0.92974584 -0.8263215 -0.71882466 -0.6238817 -0.54504838\n", + " -0.98825505 -0.87462092 -0.72355914 -0.59418739 -0.49542716 -0.42124573\n", + " -0.96839146 -0.73470538 -0.53260261 -0.40540407 -0.32392864 -0.26858462\n", + " -0.79207942 -0.34036707 -0.20582312 -0.14662418 -0.11369565 -0.09279187]\n", + "DEBUG:root:fitpix2pix: visCut: True\n", + "DEBUG:root:radec2pix: camVec Shape: (3, 96)\n", + "DEBUG:root:radec2pix: lat: [73.26908943 74.24907619 75.16003276 75.97420276 76.66164507 77.19203919\n", + " 77.53795274 77.67919539 73.26908943 74.27917066 75.22575502 76.08096918\n", + " 76.81416078 77.39343277 77.78879656 77.97677996 77.67919539 79.27760057\n", + " 80.9086962 82.56716816 84.24766937 85.94438651 87.64930302 89.3245763\n", + " 77.97677996 79.57988268 81.21386953 82.87289707 84.55034798 86.23677698\n", + " 87.90848861 89.3245763 73.70687233 74.86526918 75.89266936 76.7347974\n", + " 77.33616788 77.64902834 73.71922865 74.91822462 75.99447399 76.89265343\n", + " 77.55435927 77.92679672 78.37161008 80.3532483 82.37868114 84.43807116\n", + " 86.5205023 88.60550058 78.67128345 80.65746446 82.68422414 84.73967937\n", + " 86.80532112 88.79773368 73.27606371 73.27606371 89.31677804 89.31677804\n", + " 74.16894713 75.42332545 76.55590489 77.50736059 78.21290493 78.61205636\n", + " 75.38223897 76.80151051 78.10907648 79.23409871 80.08944165 80.58344411\n", + " 76.46449862 78.05559614 79.5593541 80.89695848 81.95437214 82.58757556\n", + " 77.35718097 79.11401738 80.82399404 82.41287861 83.74766412 84.60361539\n", + " 77.99846994 79.89205969 81.78816951 83.63850339 85.33442441 86.58329889\n", + " 78.33357011 80.30591073 82.31728996 84.35260664 86.38369379 88.29053235]\n", + "DEBUG:root:make_az_asym: xyp: [[-32.31281793 -31.43806373]\n", + " [-32.31091541 -27.05163558]\n", + " [-32.30901287 -22.66520742]\n", + " [-32.30711034 -18.27877926]\n", + " [-32.3052078 -13.8923511 ]\n", + " [-32.30330527 -9.50592294]\n", + " [-32.30140274 -5.11949478]\n", + " [-32.2995002 -0.73306663]\n", + " [-32.31281793 -31.43806373]\n", + " [-27.92638978 -31.43996627]\n", + " [-23.53996162 -31.4418688 ]\n", + " [-19.15353346 -31.44377134]\n", + " [-14.7671053 -31.44567387]\n", + " [-10.38067715 -31.44757641]\n", + " [ -5.99424899 -31.44947894]\n", + " [ -1.60782083 -31.45138147]\n", + " [-32.2995002 -0.73306663]\n", + " [-27.91307204 -0.73496916]\n", + " [-23.52664389 -0.73687169]\n", + " [-19.14021573 -0.73877423]\n", + " [-14.75378757 -0.74067676]\n", + " [-10.36735941 -0.74257929]\n", + " [ -5.98093125 -0.74448183]\n", + " [ -1.59450309 -0.74638436]\n", + " [ -1.60782083 -31.45138147]\n", + " [ -1.60591829 -27.06495331]\n", + " [ -1.60401576 -22.67852516]\n", + " [ -1.60211323 -18.292097 ]\n", + " [ -1.60021069 -13.90566884]\n", + " [ -1.59830816 -9.51924068]\n", + " [ -1.59640563 -5.13281252]\n", + " [ -1.59450309 -0.74638436]\n", + " [-32.29698843 -29.52557043]\n", + " [-32.29465669 -24.14957093]\n", + " [-32.29232495 -18.77357144]\n", + " [-32.2899932 -13.39757194]\n", + " [-32.28766146 -8.02157244]\n", + " [-32.28532972 -2.64557295]\n", + " [-30.40031161 -31.42389325]\n", + " [-25.02431212 -31.42622499]\n", + " [-19.64831262 -31.42855673]\n", + " [-14.27231313 -31.43088848]\n", + " [ -8.89631363 -31.43322022]\n", + " [ -3.52031414 -31.43555196]\n", + " [-30.38700689 -0.74889614]\n", + " [-25.01100739 -0.75122788]\n", + " [-19.6350079 -0.75355962]\n", + " [-14.25900841 -0.75589136]\n", + " [ -8.88300892 -0.7582231 ]\n", + " [ -3.50700942 -0.76055484]\n", + " [ -1.62199131 -29.53887515]\n", + " [ -1.61965957 -24.16287565]\n", + " [ -1.61732783 -18.78687616]\n", + " [ -1.61499609 -13.41087666]\n", + " [ -1.61266434 -8.03487716]\n", + " [ -1.6103326 -2.65887768]\n", + " [-32.29781143 -31.42307024]\n", + " [-32.29781143 -31.42307024]\n", + " [ -1.60950959 -0.76137785]\n", + " [ -1.60950959 -0.76137785]\n", + " [-30.3994886 -29.52639343]\n", + " [-25.02348911 -29.52872517]\n", + " [-19.64748962 -29.53105692]\n", + " [-14.27149012 -29.53338866]\n", + " [ -8.89549063 -29.5357204 ]\n", + " [ -3.51949113 -29.53805214]\n", + " [-30.39715686 -24.15039394]\n", + " [-25.02115737 -24.15272568]\n", + " [-19.64515788 -24.15505742]\n", + " [-14.26915838 -24.15738916]\n", + " [ -8.89315889 -24.1597209 ]\n", + " [ -3.51715939 -24.16205264]\n", + " [-30.39482512 -18.77439444]\n", + " [-25.01882563 -18.77672618]\n", + " [-19.64282613 -18.77905793]\n", + " [-14.26682664 -18.78138967]\n", + " [ -8.89082714 -18.78372141]\n", + " [ -3.51482765 -18.78605315]\n", + " [-30.39249338 -13.39839495]\n", + " [-25.01649389 -13.40072669]\n", + " [-19.64049439 -13.40305843]\n", + " [-14.2644949 -13.40539017]\n", + " [ -8.8884954 -13.40772191]\n", + " [ -3.51249591 -13.41005365]\n", + " [-30.39016163 -8.02239545]\n", + " [-25.01416214 -8.02472719]\n", + " [-19.63816265 -8.02705893]\n", + " [-14.26216315 -8.02939068]\n", + " [ -8.88616366 -8.03172242]\n", + " [ -3.51016417 -8.03405416]\n", + " [-30.3878299 -2.64639596]\n", + " [-25.01183041 -2.6487277 ]\n", + " [-19.63583091 -2.65105944]\n", + " [-14.25983141 -2.65339118]\n", + " [ -8.88383191 -2.65572292]\n", + " [ -3.50783243 -2.65805467]]\n", + "DEBUG:root:radec2pix: camVec: [[0.20622014 0.20805053 0.20961035 0.210899 0.21191543 0.21265818\n", + " 0.21312568 0.21331667 0.20622014 0.17982824 0.1527297 0.12503427\n", + " 0.09685185 0.06829276 0.03946812 0.01049004 0.21331667 0.18597713\n", + " 0.1579279 0.12927353 0.10011961 0.07057467 0.04075124 0.01076573\n", + " 0.01049004 0.01056977 0.01063642 0.01068985 0.01072978 0.01075592\n", + " 0.01076796 0.01076573 0.20696213 0.20902258 0.21067623 0.21192136\n", + " 0.21275532 0.21317532 0.1948134 0.16197729 0.1281888 0.09365018\n", + " 0.05856456 0.02313694 0.20149034 0.16749252 0.1325326 0.09680441\n", + " 0.0605079 0.02385188 0.01062602 0.01071595 0.0107859 0.01083545\n", + " 0.01086402 0.01087112 0.20613793 0.20613793 0.01086844 0.01086844\n", + " 0.19558949 0.1626169 0.12869151 0.09401511 0.05879055 0.02322296\n", + " 0.19753009 0.16421774 0.12995114 0.09493033 0.05935726 0.02343764DEBUG:root:make_az_asym: xyp: shape: (96, 2)\n", + "\n", + " 0.19908829 0.16550536 0.13096617 0.09566871 0.05981412 0.02360896\n", + " 0.20026215 0.16647694 0.13173312 0.09622682 0.06015857 0.02373584\n", + " 0.20104857 0.16712825 0.13224724 0.09660024 0.06038739 0.02381698\n", + " 0.20144435 0.16745515 0.13250401 0.09678486 0.06049766 0.02385117]\n", + " [0.20255556 0.17610143 0.14895462 0.12122494 0.09302239 0.06445739\n", + " 0.03564119 0.00668594 0.20255556 0.20441077 0.20600074 0.2073248\n", + " 0.20838186 0.20917033 0.20968847 0.20993479 0.00668594 0.00675821\n", + " 0.00682246 0.00687853 0.00692617 0.0069651 0.00699507 0.00701584\n", + " 0.20993479 0.18250233 0.15437326 0.12565215 0.09644485 0.06686038\n", + " 0.03701177 0.00701584 0.19112005 0.15821703 0.12438266 0.08981934\n", + " 0.05473042 0.0193211 0.20330747 0.20540191 0.20709749 0.2083924\n", + " 0.20928375 0.20976841 0.00681796 0.00690216 0.00697398 0.00703299\n", + " 0.00707868 0.00711058 0.19806614 0.16396327 0.12891793 0.09312436\n", + " 0.05678335 0.02010461 0.2024732 0.2024732 0.00711848 0.00711848\n", + " 0.19190537 0.19387759 0.19547539 0.1966967 0.19753824 0.19799645\n", + " 0.15886347 0.1604891 0.1618095 0.16282181 0.16352163 0.16390447\n", + " 0.12488974 0.12616714 0.12720791 0.12800859 0.1285643 0.12887024\n", + " 0.09018615 0.09111203 0.09186896 0.09245358 0.0928614 0.09308815\n", + " 0.05495583 0.05552612 0.05599434 0.05635799 0.05661388 0.05675899\n", + " 0.01940412 0.01961547 0.01979108 0.01992994 0.02003078 0.02009239]\n", + " [0.95731108 0.96213474 0.96637261 0.96996192 0.9728508 0.97499833\n", + " 0.97637449 0.97696023 0.95731108 0.96222557 0.96655954 0.97024886\n", + " 0.97324032 0.97549161 0.97697135 0.97765911 0.97696023 0.98253083\n", + " 0.98742708 0.99158512 0.9949513 0.99748218 0.99914484 0.99991744\n", + " 0.97765911 0.9831486 0.98795534 0.99201677 0.99528049 0.99770436\n", + " 0.99925681 0.99991744 0.95949977 0.96502691 0.96961048 0.97315046\n", + " 0.9755715 0.9768229 0.95953833 0.96518051 0.96988569 0.97355136\n", + " 0.97609964 0.97747731 0.97946677 0.98584919 0.99115411 0.99527858\n", + " 0.99814262 0.99969022 0.98013106 0.98640824 0.99159661 0.99559552\n", + " 0.99832741 0.99973878 0.95734621 0.95734621 0.9999156 0.9999156\n", + " 0.96172609 0.96745399 0.9722283 0.9759465 0.97853069 0.9799276\n", + " 0.96733875 0.97328094 0.97822819 0.98207805 0.98475245 0.98619775\n", + " 0.97199095 0.97810522 0.98319175 0.98714806 0.9898957 0.99138039\n", + " 0.97558266 0.98182688 0.98701899 0.99105637 0.99386 0.99537491\n", + " 0.97803851 0.98437036 0.98963392 0.99372641 0.99656823 0.99810379\n", + " 0.97930774 0.98568454 0.99098486 0.99510577 0.99796733 0.99951359]]\n", + "DEBUG:root:radec2pix: camVec Shape: (3, 96)\n", + "DEBUG:root:optics_fp: xyfp: [[ -0.167405 31.491388 ]\n", + " [ -0.167405 27.10495943]\n", + " [ -0.167405 22.71853086]\n", + " [ -0.167405 18.33210229]\n", + " [ -0.167405 13.94567372]\n", + " [ -0.167405 9.55924515]\n", + " [ -0.167405 5.17281657]\n", + " [ -0.167405 0.786388 ]\n", + " [ -0.167405 31.491388 ]\n", + " [ -4.55383357 31.491388 ]\n", + " [ -8.94026214 31.491388 ]\n", + " [-13.32669071 31.491388 ]\n", + " [-17.71311928 31.491388 ]\n", + " [-22.09954786 31.491388 ]\n", + " [-26.48597643 31.491388 ]\n", + " [-30.872405 31.491388 ]\n", + " [ -0.167405 0.786388 ]\n", + " [ -4.55383357 0.786388 ]\n", + " [ -8.94026214 0.786388 ]\n", + " [-13.32669071 0.786388 ]\n", + " [-17.71311929 0.786388 ]\n", + " [-22.09954786 0.786388 ]\n", + " [-26.48597643 0.786388 ]\n", + " [-30.872405 0.786388 ]\n", + " [-30.872405 31.491388 ]\n", + " [-30.872405 27.10495943]\n", + " [-30.872405 22.71853086]\n", + " [-30.872405 18.33210229]\n", + " [-30.872405 13.94567371]\n", + " [-30.872405 9.55924514]\n", + " [-30.872405 5.17281657]\n", + " [-30.872405 0.786388 ]\n", + " [ -0.182405 29.578888 ]\n", + " [ -0.182405 24.202888 ]\n", + " [ -0.182405 18.826888 ]\n", + " [ -0.182405 13.450888 ]\n", + " [ -0.182405 8.074888 ]\n", + " [ -0.182405 2.698888 ]\n", + " [ -2.079905 31.476388 ]\n", + " [ -7.455905 31.476388 ]\n", + " [-12.831905 31.476388 ]\n", + " [-18.207905 31.476388 ]\n", + " [-23.583905 31.476388 ]\n", + " [-28.959905 31.476388 ]\n", + " [ -2.079905 0.801388 ]\n", + " [ -7.455905 0.801388 ]\n", + " [-12.831905 0.801388 ]\n", + " [-18.207905 0.801388 ]\n", + " [-23.583905 0.801388 ]\n", + " [-28.959905 0.801388 ]\n", + " [-30.857405 29.578888 ]\n", + " [-30.857405 24.202888 ]\n", + " [-30.857405 18.826888 ]\n", + " [-30.857405 13.450888 ]\n", + " [-30.857405 8.074888 ]\n", + " [-30.857405 2.698888 ]\n", + " [ -0.182405 31.476388 ]\n", + " [ -0.182405 31.476388 ]\n", + " [-30.857405 0.801388 ]\n", + " [-30.857405 0.801388 ]\n", + " [ -2.079905 29.578888 ]\n", + " [ -7.455905 29.578888 ]\n", + " [-12.831905 29.578888 ]\n", + " [-18.207905 29.578888 ]\n", + " [-23.583905 29.578888 ]\n", + " [-28.959905 29.578888 ]\n", + " [ -2.079905 24.202888 ]\n", + " [ -7.455905 24.202888 ]\n", + " [-12.831905 24.202888 ]\n", + " [-18.207905 24.202888 ]\n", + " [-23.583905 24.202888 ]\n", + " [-28.959905 24.202888 ]\n", + " [ -2.079905 18.826888 ]\n", + " [ -7.455905 18.826888 ]\n", + " [-12.831905 18.826888 ]\n", + " [-18.207905 18.826888 ]\n", + " [-23.583905 18.826888 ]\n", + " [-28.959905 18.826888 ]\n", + " [ -2.079905 13.450888 ]\n", + " [ -7.455905 13.450888 ]\n", + " [-12.831905 13.450888 ]\n", + " [-18.207905 13.450888 ]\n", + " [-23.583905 13.450888 ]\n", + " [-28.959905 13.450888 DEBUG:root:cartToSphere: vec: [[-0.20605921 -0.20169937 0.95752648]\n", + " [-0.20787315 -0.17519485 0.96233857]\n", + " [-0.20942436 -0.1480085 0.96655829]\n", + " [-0.21070676 -0.12024402 0.97012578]\n", + " [-0.21171698 -0.09200964 0.97299031]\n", + " [-0.21245291 -0.06341581 0.97511138]\n", + " [-0.21291301 -0.03457423 0.97645925]\n", + " [-0.2130962 -0.00559748 0.97701519]\n", + " [-0.20605921 -0.20169937 0.95752648]\n", + " [-0.17962884 -0.20353396 0.96244865]\n", + " [-0.15250018 -0.20511207 0.96678474]\n", + " [-0.12477652 -0.20642749 0.97047334]\n", + " [-0.0965659 -0.20747679 0.97346207]\n", + " [-0.06797863 -0.20825778 0.97570877]\n", + " [-0.03912632 -0.20876879 0.97718203]\n", + " [-0.01012153 -0.20900854 0.97786143]\n", + " [-0.2130962 -0.00559748 0.97701519]\n", + " [-0.18573503 -0.00565735 0.98258358]\n", + " [-0.15766321 -0.00571045 0.98747643]\n", + " [-0.1289874 -0.00575671 0.99162952]\n", + " [-0.09981355 -0.00579596 0.99498928]\n", + " [-0.07024926 -0.00582797 0.99751244]\n", + " [-0.04040619 -0.00585246 0.9991662 ]\n", + " [-0.01040084 -0.00586919 0.99992869]\n", + " [-0.01012153 -0.20900854 0.97786143]\n", + " [-0.01020027 -0.18153487 0.98333161]\n", + " [-0.01026637 -0.15336672 0.98811601]\n", + " [-0.01031977 -0.12461057 0.99215206]\n", + " [-0.01036027 -0.09537244 0.99538774]\n", + " [-0.01038751 -0.06576046 0.99778137]\n", + " [-0.01040113 -0.03588698 0.99930173]\n", + " [-0.01040084 -0.00586919 0.99992869]\n", + " [-0.20679239 -0.1902398 0.95971127]\n", + " [-0.20883895 -0.15728353 0.96521924]\n", + " [-0.21048459 -0.12340547 0.96977695]\n", + " [-0.2117221 -0.08880315 0.97328709]\n", + " [-0.21254753 -0.0536798 0.97567516]\n", + " [-0.21295821 -0.01824146 0.97689101]\n", + " [-0.1946339 -0.20244048 0.95975804]\n", + " [-0.16175754 -0.20451655 0.96540534]\n", + " [-0.12793421 -0.20620095 0.97011031]\n", + " [-0.09336102 -0.20748634 0.97377263]\n", + " [-0.05824097 -0.2083686 0.97631476]\n", + " [-0.02277993 -0.2088448 0.97768345]\n", + " [-0.20126076 -0.00572401 0.97952098]\n", + " [-0.16723544 -0.00579384 0.98589996]\n", + " [-0.13224882 -0.00585326 0.99119927]\n", + " [-0.09649617 -0.00590199 0.99531586]\n", + " [-0.06017591 -0.0059396 0.99817012]\n", + " [-0.02349561 -0.00596558 0.99970614]\n", + " [-0.01025713 -0.19712185 0.98032534]\n", + " [-0.01034611 -0.16296958 0.98657685]\n", + " [-0.01041588 -0.1278801 0.99173494]\n", + " [-0.01046611 -0.09204872 0.9956995 ]\n", + " [-0.01049618 -0.05567473 0.99839379]\n", + " [-0.01050541 -0.01896706 0.99976492]\n", + " [-0.20597676 -0.2016167 0.95756163]\n", + " [-0.20597676 -0.2016167 0.95756163]\n", + " [-0.01050361 -0.0059719 0.999927 ]\n", + " [-0.01050361 -0.0059719 0.999927 ]\n", + " [-0.19540403 -0.19101701 0.96194063]\n", + " [-0.16239488 -0.19297429 0.96767186]\n", + " [-0.12843557 -0.19456158 0.97244542]\n", + " [-0.09372478 -0.19577312 0.97616011]\n", + " [-0.05846599 -0.19660523 0.97873802]\n", + " [-0.02286533 -0.1970549 0.98012578]\n", + " [-0.19733483 -0.15792497 0.96753226]\n", + " [-0.16399068 -0.15953875 0.97347545]\n", + " [-0.1296908 -0.16084786 0.97842131]\n", + " [-0.094636 -0.1618491 0.98226722]\n", + " [-0.05902974 -0.16253892 0.98493482]\n", + " [-0.02307851 -0.16291334 0.98637043]\n", + " [-0.19888634 -0.12390793 0.97215793]\n", + " [-0.16527244 -0.1251726 0.97827237]\n", + " [-0.13070023 -0.12620079 0.98335691]\n", + " [-0.09537003 -0.12699006 0.9873085 ]\n", + " [-0.0 ]\n", + " [ -2.079905 8.074888 ]\n", + " [ -7.455905 8.074888 ]\n", + " [-12.831905 8.074888 ]\n", + " [-18.20790499 8.074888 ]\n", + " [-23.583905 8.074888 ]\n", + " [-28.959905 8.074888 ]\n", + " [ -2.079905 2.698888 ]\n", + " [ -7.455905 2.698888 ]\n", + " [-12.831905 2.698888 ]\n", + " [-18.207905 2.698888 ]\n", + " [-23.583905 2.698888 ]\n", + " [-28.959905 2.698888 ]]\n", + "DEBUG:root:radec2pix: lng: [224.17091663 219.87741809 214.97008665 209.39598188 203.1373574\n", + " 196.23634076 188.81644128 181.08669631 224.17091663 228.3555716\n", + " 233.16265584 238.65783928 244.87601329 251.7942959 259.30486084\n", + " 267.20296141 181.08669631 181.26291687 181.50503492 181.85849799\n", + " 182.42298774 183.46757199 186.05387592 202.53707914 267.20296141\n", + " 266.75372148 266.13046308 265.20807536 263.70434622 260.82362196\n", + " 253.17669924 202.53707914 222.38348083 216.71601144 210.07066421\n", + " 202.39896016 193.78096287 184.48069147 225.9100405 231.44842444\n", + " 237.98973756 245.61222365 254.27065244 263.72553361 181.18560606\n", + " 181.44802269 181.85460599 182.56904059 184.15297918 190.61463228\n", + " 266.99438373 266.33112836 265.28794249 263.40934603 259.04191913\n", + " 238.94596845 224.17054014 224.17054014 202.81670057 202.81670057\n", + " 224.11986404 229.69237658 236.35966367 244.23925438 253.312778\n", + " 263.32641007 218.39761245 223.93365474 230.85002743 239.44337044\n", + " 249.86289594 261.85943825 211.60273873 216.79700073 223.64273186\n", + " 232.75457852 244.72618682 259.56986466 203.65258863 208.03632189\n", + " 214.17758593 223.12426077 236.4587659 255.51668541 194.60966243\n", + " 197.58758667 202.01156736 209.14892478 221.94021993 246.56988658\n", + " 184.76194605 185.78921163 187.37371211 190.13104958 196.0740482\n", + " 216.53792504]\n", + "DEBUG:root:radec2pix: xyfp: [[-32.31281793 -31.43806373]\n", + " [-32.31091541 -27.05163558]\n", + " [-32.30901287 -22.66520742]\n", + " [-32.30711034 -18.27877926]\n", + " [-32.3052078 -13.8923511 ]\n", + " [-32.30330527 -9.50592294]\n", + " [-32.30140274 -5.11949478]\n", + " [-32.2995002 -0.73306663]\n", + " [-32.31281793 -31.43806373]\n", + " [-27.92638978 -31.43996627]\n", + " [-23.53996162 -31.4418688 ]\n", + " [-19.1535DEBUG:root:optics_fp: xyfp shape: (96, 2)\n", + "3346 -31.44377134]\n", + " [-14.7671053 -31.44567387]\n", + " [-10.38067715 -31.44757641]\n", + " [ -5.99424899 -31.44947894]\n", + " [ -1.60782083 -31.45138147]\n", + " [-32.2995002 -0.73306663]\n", + " [-27.91307204 -0.73496916]\n", + " [-23.52664389 -0.73687169]\n", + " [-19.14021573 -0.73877423]\n", + " [-14.75378757 -0.74067676]\n", + " [-10.36735941 -0.74257929]\n", + " [ -5.98093125 -0.74448183]\n", + " [ -1.59450309 -0.74638436]\n", + " [ -1.60782083 -31.45138147]\n", + " [ -1.60591829 -27.06495331]\n", + " [ -1.60401576 -22.67852516]\n", + " [ -1.60211323 -18.292097 ]\n", + " [ -1.60021069 -13.90566884]\n", + " [ -1.59830816 -9.51924068]\n", + " [ -1.59640563 -5.13281252]\n", + " [ -1.59450309 -0.74638436]\n", + " [-32.29698843 -29.52557043]\n", + " [-32.29465669 -24.14957093]\n", + " [-32.29232495 -18.77357144]\n", + " [-32.2899932 -13.39757194]\n", + " [-32.28766146 -8.02157244]\n", + " [-32.28532972 -2.64557295]\n", + " [-30.40031161 -31.42389325]\n", + " [-25.02431212 -31.42622499]\n", + " [-19.64831262 -31.42855673]\n", + " [-14.27231313 -31.43088848]\n", + " [ -8.89631363 -31.43322022]\n", + " [ -3.52031414 -31.43555196]\n", + " [-30.38700689 -0.74889614]\n", + " [-25.01100739 -0.75122788]\n", + " [-19.6350079 -0.75355962]\n", + " [-14.25900841 -0.75589136]\n", + " [ -8.88300892 -0.7582231 ]\n", + " [ -3.50700942 -0.76055484]\n", + " [ -1.62199131 -29.53887515]\n", + " [ -1.61965957 -24.16287565]\n", + " [ -1.61732783 -18.78687616]\n", + " [ -1.61499609 -13.41087666]\n", + " [ -1.61266434 -8.03487716]\n", + " [ -1.6103326 -2.65887768]\n", + " [-32.29781143 -31.42307024]\n", + " [-32.29781143 -31.42307024]\n", + " [ -1.60950959 -0.76137785]\n", + " [ -1.60950959 -0.76137785]\n", + " [-30.3994886 -29.52639343]\n", + " [-25.02348911 -29.52872517]\n", + " [-19.64748962 -29.53105692]\n", + " [-14.27149012 -29.53338866]\n", + " [ -8.89549063 -29.5357204 ]\n", + " [ -3.51949113 -29.53805214]\n", + " [-30.39715686 -24.15039394]\n", + " [-25.02115737 -24.15272568]\n", + " [-19.64515788 -24.15505742]\n", + " [-14.26915838 -24.15738916]\n", + " [ -8.89315889 -24.1597209 ]\n", + " [ -3.51715939 -24.16205264]\n", + " [-30.39482512 -18.77439444]\n", + " [-25.01882563 -18.77672618]\n", + " [-19.64282613 -18.77905793]\n", + " [-14.26682664 -18.78138967]\n", + " [ -8.89082714 -18.78372141]\n", + " [ -3.51482765 -18.78605315]\n", + " [-30.39249338 -13.39839495]\n", + " [-25.01649389 -13.40072669]\n", + " [-19.64049439 -13.40305843]\n", + " [-14.2644949 -13.40539017]\n", + " [ -8.8884954 -13.40772191]\n", + " [ -3.51249591 -13.41005365]\n", + " [-30.39016163 -8.02239545]\n", + " [-25.01416214 -8.02472719]\n", + " [-19.63816265 -8.02705893]\n", + " [-14.26216315 -8.02939068]\n", + " [ -8.88616366 -8.03172242]\n", + " [ -3.51016417 -8.03405416]\n", + " [-30.3878299 -2.64639596]\n", + " [-25.01183041 -2.6487277 ]\n", + " [-19.63583091 -2.65105944]\n", + " [-14.25983141 -2.65339118]\n", + " [ -8.88383191 -2.65572292]\n", + " [ -3.50783243 -2.65805467]]\n", + "DEBUG:root:radec2pix: xyfp Shape: (96, 2)\n", + "DEBUG:root:optics_fp: rtanth: [45.0390902 42.09683712 39.42396804 37.07878541 35.12698266 33.63710755\n", + " 32.6724136 32.28002056 45.0390902 42.00763364 39.23320577 36.77402747\n", + " 34.69719395 33.07480842 31.97611838 31.45604637 32.28002056 27.89482687\n", + " 23.51009392 19.1261386 14.74365456 10.36450837 5.99601772 1.72131774\n", + " 31.45604637 27.07594694 22.69829207 18.32483384 13.95951711 9.61343916\n", + " 5.33383708 1.72131774 43.71543665 40.28285706 37.31193504 34.92069834\n", + " 33.23450917 32.36375719 43.67830098 40.1281473 37.02087501 34.47644006\n", + " 32.62678968 31.59418683 30.3683705 24.99424245 19.62114004 14.2502235\n", + " 8.88545749 3.55479843 29.54687443 24.18030108 18.81910954 13.46972753\n", + " 8.15542687 3.06450112 45.0178789 45.0178789 1.74119478 1.74119478\n", + " 42.33466612 38.66132674 35.42562866 32.75751668 30.80482728 29.70896533\n", + " 38.78006096 34.73279944 31.09090442 28.01292685 25.70226752 24.37810068\n", + " 35.68424094 31.23842634 27.13146257 23.54136773 20.73833358 19.07259071\n", + " 33.17589074 28.33926527 23.73585762 19.53127415 16.04223037 13.82166388\n", + " 31.39613279 26.23340206 21.17707168 16.3263008 11.93442847 8.72443809\n", + " 30.47289508 25.12113778 19.7825313 14.471637 9.23638255 4.35844005]\n", + "DEBUG:root:radec2pix: lat: [73.30319327 74.28364829 75.19434757 76.00760673 76.6934474 77.22149469\n", + " 77.56431546 77.70181842 73.30319327 74.31487163 75.26252869 76.11836609\n", + " 76.85166299 77.43039612 77.8244634 78.01035447 77.70181842 79.30062777\n", + " 80.93200296 82.DEBUG:root:cartToSphere: vec: [[0.20622014 0.20255556 0.95731108]\n", + " [0.20805053 0.17610143 0.96213474]\n", + " [0.20961035 0.14895462 0.96637261]\n", + " [0.210899 0.12122494 0.96996192]\n", + " [0.21191543 0.09302239 0.9728508 ]\n", + " [0.21265818 0.06445739 0.97499833]\n", + " [0.21312568 0.03564119 0.97637449]\n", + " [0.21331667 0.00668594 0.97696023]\n", + " [0.20622014 0.20255556 0.95731108]\n", + " [0.17982824 0.20441077 0.96222557]\n", + " [0.1527297 0.20600074 0.96655954]\n", + " [0.12503427 0.2073248 0.97024886]\n", + " [0.09685185 0.20838186 0.97324032]\n", + " [0.06829276 0.20917033 0.97549161]\n", + " [0.03946812 0.20968847 0.97697135]\n", + " [0.01049004 0.20993479 0.97765911]\n", + " [0.21331667 0.00668594 0.97696023]\n", + " [0.18597713 0.00675821 0.98253083]\n", + " [0.1579279 0.00682246 0.98742708]\n", + " [0.12927353 0.00687853 0.99158512]\n", + " [0.10011961 0.00692617 0.9949513 ]\n", + " [0.07057467 0.0069651 0.99748218]\n", + " [0.04075124 0.00699507 0.99914484]\n", + " [0.01076573 0.00701584 0.99991744]\n", + " [0.01049004 0.20993479 0.97765911]\n", + " [0.01056977 0.18250233 0.9831486 ]\n", + " [0.01063642 0.15437326 0.98795534DEBUG:root:radec2pix: curVec: [[-3.49475573e-02 -1.18843653e-01 9.92297765e-01]\n", + " [-1.27344874e-02 -1.34147074e-01 9.90879607e-01]\n", + " [ 9.85901759e-03 -1.49791565e-01 9.88668441e-01]\n", + " [ 3.27451221e-02 -1.65692085e-01 9.85633750e-01]\n", + " [ 5.58355749e-02 -1.81768150e-01 9.81754923e-01]\n", + " [ 7.90414799e-02 -1.97943646e-01 9.77021370e-01]\n", + " [ 1.02273233e-01 -2.14146399e-01 9.71432708e-01]\n", + " [ 1.25440736e-01 -2.30307834e-01 9.64998924e-01]\n", + " [-3.49475573e-02 -1.18843653e-01 9.92297765e-01]\n", + " [-5.23876821e-02 -1.39095992e-01 9.88892227e-01]\n", + " [-7.00457257e-02 -1.59777097e-01 9.84664855e-01]\n", + " [-8.78547914e-02 -1.80781716e-01 9.79591500e-01]\n", + " [-1.05747528e-01 -2.02009123e-01 9.73657935e-01]\n", + " [-1.23655920e-01 -2.23362877e-01 9.66859989e-01]\n", + " [-1.41511303e-01 -2.44750338e-01 9.59203744e-01]\n", + " [-1.59244646e-01 -2.66082324e-01 9.50705706e-01]\n", + " [ 1.25440736e-01 -2.30307834e-01 9.64998924e-01]\n", + " [ 1.08859145e-01 -2.52477819e-01 9.61459639e-01]\n", + " [ 9.18530791e-02 -2.74899757e-01 9.57075303e-01]\n", + " DEBUG:root:radec2pix: curVec: [[-0.27259847 -0.92833748 0.25274415]\n", + " [-0.26673483 -0.92235377 0.2794925 ]\n", + " [-0.26053964 -0.91550474 0.30654555]\n", + " [-0.25402628 -0.90777787 0.33378135]\n", + " [-0.24721045 -0.89916965 0.36108301]\n", + " [-0.24011072 -0.8896863 0.38833635]\n", + " [-0.23274915 -0.87934484 0.41542808]\n", + " [-0.22515153 -0.86817373 0.44224559]\n", + " [-0.27259847 -0.92833748 0.25274415]\n", + " [-0.24517828 -0.93702276 0.24874877]\n", + " [-0.2176194 -0.94487423 0.24465178]\n", + " [-0.19003193 -0.95187162 0.24047511]\n", + " [-0.16252775 -0.95800468 0.23624512]\n", + " [-0.13522022 -0.96327306 0.23199247]\n", + " [-0.10822356 -0.96768638 0.22775146]\n", + " [-0.08165118 -0.97126455 0.22355817]\n", + " [-0.22515153 -0.86817373 0.44224559]\n", + " [-0.19682031 -0.87718166 0.43796587]\n", + " [-0.16840395 -0.88537195 0.43330892]\n", + " [-0.14001739 -0.89272353 0.42829877]\n", + " [-0.11177362 -0.89922652 0.42296374]\n", + " [-0.08378383 -0.90488158 0.41733631]\n", + " [-0.05615914 -0.90969906 0.41145323]\n", + " [-0.02901312 -0.91369836 0.40535608]\n", + " [-0.08165118 -0.97126455 0.22355DEBUG:root:radec2pix: curVec: [[-0.60919403 -0.30850429 0.73055304]\n", + " [-0.58876982 -0.30620713 0.74805567]\n", + " [-0.56743524 -0.30378217 0.76533238]\n", + " [-0.545263 -0.30121077 0.78227893]\n", + " [-0.52232868 -0.29848109 0.79880022]\n", + " [-0.49871181 -0.29558753 0.81480952]\n", + " [-0.4744967 -0.29253014 0.83022828]\n", + " [-0.44977283 -0.28931407 0.84498626]\n", + " [-0.60919403 -0.30850429 0.73055304]\n", + " [-0.60398433 -0.33400201 0.7236336 ]\n", + " [-0.59808851 -0.35980335 0.71612267]\n", + " [-0.5915194 -0.38577976 0.70801044]\n", + " [-0.58429233 -0.41180936 0.69929645]\n", + " [-0.57642605 -0.43777561 0.68998951]\n", + " [-0.56794345 -0.4635666 0.68010752]\n", + " [-0.55887225 -0.48907487 0.66967722]\n", + " [-0.44977283 -0.28931407 0.84498626]\n", + " [-0.44296114 -0.31572867 0.83910717]\n", + " [-0.43565136 -0.34243237 0.83243497]\n", + " [-0.42785305 -0.36930382 0.82495846]\n", + " [-0.41958028 -0.39622484 0.81667513]\n", + " [-0.41085217 -0.42307922 0.80759177]\n", + " [-0.40169322 -0.4497526 0.79772499]\n", + " [-0.39213332 -0.47613327 0.78710137]\n", + " [-0.55887225 -0.48907487 0.66967DEBUG:root:make_az_asym: xyp: [[ -0.167405 31.491388 ]\n", + " [ -0.167405 27.10495943]\n", + " [ -0.167405 22.71853086]\n", + " [ -0.167405 18.33210229]\n", + " [ -0.167405 13.94567372]\n", + " [ -0.167405 9.55924515]\n", + " [ -0.167405 5.17281657]\n", + " [ -0.167405 0.786388 ]\n", + " [ -0.167405 31.491388 ]\n", + " [ -4.55383357 31.491388 ]\n", + " [ -8.94026214 31.491388 ]\n", + " [-13.32669071 31.491388 ]\n", + " [-17.71311928 31.491388 ]\n", + " [-22.09954786 31.491388 ]\n", + " [-26.48597643 31.491388 ]\n", + " [-30.872405 31.491388 ]\n", + " [ -0.167405 0.786388 ]\n", + " [ -4.55383357 0.786388 ]\n", + " [ -8.94026214 0.786388 ]\n", + " [-13.32669071 0.786388 ]\n", + " [-17.71311929 0.786388 ]\n", + " [-22.09954786 0.786388 ]\n", + " [-26.48597643 0.786388 ]\n", + " [-30.872405 0.786388 ]\n", + " [-30.872405 31.491388 ]\n", + " [-30.872405 27.10495943]\n", + " [-30.872405 22.71853086]\n", + " [-30.872405 18.33210229]\n", + " [-30.872405 13.94567371]\n", + " [-30.872405 9.55924514]\n", + " [-30.872405 5.17281657]\n", + " [-30.872405 0.786388 ]\n", + " [ -0.182405 29.578888 ]\n", + " [ -0.182405 ]\n", + " [0.01068985 0.12565215 0.99201677]\n", + " [0.01072978 0.09644485 0.99528049]\n", + " [0.01075592 0.06686038 0.99770436]\n", + " [0.01076796 0.03701177 0.99925681]\n", + " [0.01076573 0.00701584 0.99991744]\n", + " [0.20696213 0.19112005 0.95949977]\n", + " [0.20902258 0.15821703 0.96502691]\n", + " [0.21067623 0.12438266 0.96961048]\n", + " [0.21192136 0.08981934 0.97315046]\n", + " [0.21275532 0.05473042 0.9755715 ]\n", + " [0.21317532 0.0193211 0.9768229 ]\n", + " [0.1948134 0.20330747 0.95953833]\n", + " [0.16197729 0.20540191 0.96518051]\n", + " [0.1281888 0.20709749 0.96988569]\n", + " [0.09365018 0.2083924 0.97355136]\n", + " [0.05856456 0.20928375 0.97609964]\n", + " [0.02313694 0.20976841 0.97747731]\n", + " [0.20149034 0.00681796 0.97946677]\n", + " [0.16749252 0.00690216 0.98584919]\n", + " [0.1325326 0.00697398 0.99115411]\n", + " [0.09680441 0.00703299 0.99527858]\n", + " [0.0605079 0.00707868 0.99814262]\n", + " [0.02385188 0.00711058 0.99969022]\n", + " [0.01062602 0.19806614 0.98013106]\n", + " [0.01071595 0.16396327 0.98640824]\n", + " [0.0107859 0.12891793 0.99159661]\n", + " [0.01083545 0.09312436 0.99559552]\n", + " [0.01086402 0.05678335 0.DEBUG:root:optics_fp: cphi: [-0.71661052 -0.76668522 -0.81865324 -0.87041945 -0.91877042 -0.95945138\n", + " -0.98776621 -0.99975905 -0.71661052 -0.66390451 -0.59904941 -0.51982885\n", + " -0.42452343 -0.31272572 -0.18629262 -0.04992637 -0.99975905 -0.9996769\n", + " -0.99954452 -0.99931081 -0.99883841 -0.997645 -0.9929376 -0.91049017\n", + " -0.04992637 -0.05798589 -0.06914879 -0.08562676 -0.11237014 -0.16312264\n", + " -0.29391715 -0.91049017 -0.73796092 -0.80082989 -0.86457988 -0.92376676\n", + " -0.97061799 -0.99671508 -0.69515031 -0.62267974 -0.52972774 -0.41289021\n", + " -0.27152486 -0.11024131 -0.99971595 -0.99957998 -0.99931728 -0.99870324\n", + " -0.99665599 -0.97888657 -0.05365319 -0.06553749 -0.08417765 -0.1175659\n", + " -0.19410544 -0.51637928 -0.71661494 -0.71661494 -0.90871193 -0.90871193\n", + " -0.71720854 -0.64629919 -0.55357618 -0.43455016 -0.28757779 -0.11723007\n", + " -0.78293369 -0.71938388 -0.63073804 -0.50813028 -0.34464727 -0.14284199\n", + " -0.85084193 -0.79983697 -0.72276415 -0.60462283 -0.42711476 -0.18254722\n", + " -0.91515494 -0.88164179 -0.82613743 -0.72873282 -0.5521103 -0.25185684\n", + " -0.9670144 -0.95239316 -0.92593126 -0.87175367 -0.74209777 -0.39893833\n", + " -0.99629342 -0.99453874 -0.99117471 -0.98343711 -0.95881096 -0.79843817]\n", + "817]\n", + " [-0.07425134 -0.96565034 0.24901037]\n", + " [-0.06677866 -0.95917071 0.27483115]\n", + " [-0.05925136 -0.95181278 0.3009015 ]\n", + " [-0.0516887 -0.94357404 0.32710291]\n", + " [-0.04411195 -0.93446204 0.35331972]\n", + " [-0.03654476 -0.92449431 0.37944005]\n", + " [-0.02901312 -0.91369836 0.40535608]\n", + " [-0.26998966 -0.925865 0.26434747]\n", + " [-0.26257771 -0.91795178 0.29735077]\n", + " [-0.25468099 -0.90872534 0.33068996]\n", + " [-0.24632742 -0.89817546 0.36414782]\n", + " [-0.23755129 -0.88631374 0.39751394]\n", + " [-0.22839476 -0.87317624 0.43057995]\n", + " [-0.26064733 -0.93220622 0.2511066 ]\n", + " [-0.2269331 -0.94229354 0.24613868]\n", + " [-0.19311977 -0.95110717 0.24103924]\n", + " [-0.15941259 -0.95862405 0.23585496]\n", + " [-0.12602021 -0.96484355 0.23064222]\n", + " [-0.09315269 -0.96978765 0.22546505]\n", + " [-0.21284323 -0.8722395 0.44033624]\n", + " [-0.17804869 -0.88273293 0.43483472]\n", + " [-0.14324057 -0.89197598 0.42879015]\n", + " [-0.10862778 -0.89994583 0.42225291]\n", + " [-0.0744152 -0.90664359 0.41528277]\n", + " [-0.04080835 -0.91209208 0.40794941]\n", + " [-0.07852527 -0.96891099 0.23461729]\n", + " [-0.06940549 -0.96145028 0.26607562]\n", + " [-0.06019417 -0.95267565 0.29796941]\n", + " [-0.05092626 -0.9425782 0.33008007]\n", + " [-0.04164095 -0.93117183 0.36219478]\n", + " [-0.03238278 -0.91849293 0.39410925]\n", + " [-0.27248558 -0.92834956 0.25282149]\n", + " [-0.27248558 -0.92834956 0.25282149]\n", + " [-0.02913067 -0.91372434 0.40528908]\n", + " [-0.02913067 -0.91372434 0.40528908]\n", + " [-0.25810528 -0.92973673 0.26262383]\n", + " [-0.22426214 -0.93986303 0.25761208]\n", + " [-0.19032295 -0.94871012 0.25244067]\n", + " [-0.15649333 -0.95625502 0.24715618]\n", + " [-0.12298222 -0.96249712 0.24181537]\n", + " [-0.09000065 -0.96745815 0.23648384]\n", + " [-0.25057754 -0.9218616 0.29560461]\n", + " [-0.2164124 -0.93208842 0.29047695]\n", + " [-0.18216174 -0.94102502 0.28511227]\n", + " [-0.14803206 -0.94864887 0.27955648]\n", + " [-0.11423239 -0.95495981 0.27386625]\n", + " [-0.0722]\n", + " [-0.53728324 -0.48849273 0.68753295]\n", + " [-0.51482968 -0.48750932 0.70518441]\n", + " [-0.49157771 -0.48610675 0.72253137]\n", + " [-0.46759934 -0.48427232 0.73948034]\n", + " [-0.44297367 -0.48199875 0.75594413]\n", + " [-0.41778718 -0.47928438 0.77184219]\n", + " [-0.39213332 -0.47613327 0.78710137]\n", + " [-0.6003885 -0.3076039 0.73818256]\n", + " [-0.57473422 -0.30470636 0.75949629]\n", + " [-0.54778453 -0.30159734 0.78036604]\n", + " [-0.51967729 -0.29825225 0.80061296]\n", + " [-0.49055901 -0.29466073 0.82007739]\n", + " [-0.46058706 -0.29082499 0.83861814]\n", + " [-0.60693909 -0.31956828 0.72766823]\n", + " [-0.60009018 -0.35104034 0.71879236]\n", + " [-0.59222328 -0.38283988 0.70901707]\n", + " [-0.58336558 -0.41473982 0.69833765]\n", + " [-0.57355163 -0.44652558 0.68677029]\n", + " [-0.56282558 -0.47799294 0.67435163]\n", + " [-0.44695025 -0.30079872 0.84246994]\n", + " [-0.43826675 -0.33338252 0.8347325 ]\n", + " [-0.42884397 -0.36627953 0.82579183]\n", + " [-0.41870592 -0.39927096 0.81563966]\n", + " [-0.40788782 -0.43214285 0.80428856]\n", + " [-0.39643702 -0.46468572 0.79177325]\n", + " [-0.54960184 -0.488[ 7.44858652e-02 -2.97472006e-01 9.51820499e-01]\n", + " [ 5.68215167e-02 -3.20096221e-01 9.45679504e-01]\n", + " [ 3.89258638e-02 -3.42675943e-01 9.38646885e-01]\n", + " [ 2.08671505e-02 -3.65115976e-01 9.30728148e-01]\n", + " [ 2.71593777e-03 -3.87322687e-01 9.21940215e-01]\n", + " [-1.59244646e-01 -2.66082324e-01 9.50705706e-01]\n", + " [-1.37300017e-01 -2.83449559e-01 9.49107503e-01]\n", + " [-1.14815696e-01 -3.00933747e-01 9.46708105e-01]\n", + " [-9.18750635e-02 -3.18452461e-01 9.43476021e-01]\n", + " [-6.85627547e-02 -3.35926554e-01 9.39389429e-01]\n", + " [-4.49660227e-02 -3.53279169e-01 9.34436667e-01]\n", + " [-2.11753370e-02 -3.70435403e-01 9.28616830e-01]\n", + " [ 2.71593777e-03 -3.87322687e-01 9.21940215e-01]\n", + " [-2.53740675e-02 -1.25537451e-01 9.91764340e-01]\n", + " [ 2.11751582e-03 -1.44535285e-01 9.89497381e-01]\n", + " [ 3.00934091e-02 -1.63960262e-01 9.86007819e-01]\n", + " [ 5.83913289e-02 -1.83662310e-01 9.81253590e-01]\n", + " [ 8.68476125e-02 -2.03501256e-01 9.75215223e-01]\n", + " [ 1.15297074e-01 -2.23345733e-01 9.67896311e-01]\n", + " [-4.24451618e-02 -1.27666373e-059063863 84.2712796 85.96832552 87.67438557 89.35703566\n", + " 78.01035447 79.61411514 81.24861046 82.90802789 84.58587071 86.27294722\n", + " 87.94616945 89.35703566 73.74128804 74.89975016 75.92621516 76.76637844\n", + " 77.36466213 77.67335289 73.7541097 74.95468773 76.03182731 76.93013306\n", + " 77.59097642 77.96138218 78.39443735 80.37649363 82.40216048 84.46173597\n", + " 86.54472647 88.63280521 78.70517127 80.69206097 82.71932817 84.7752745\n", + " 86.84188191 88.83673743 73.31017726 73.31017726 89.34933673 89.34933673\n", + " 74.20408349 75.46003419 76.59358943 77.54526674 78.24998117 78.64701061\n", + " 75.41740928 76.83842002 78.14733268 79.2729755 80.12769991 80.61933545\n", + " 76.49875662 78.09183026 79.59737911 80.93621381 81.99355302 82.62428133\n", + " 77.38945666 79.14833894 80.86043698 82.45133489 83.78724838 84.64121324\n", + " 78.02753384 79.92284226 81.82091734 83.6737055 85.37260957 86.62213831\n", + " 78.35820379 80.33138971 82.34363217 84.38015735 86.41373806 88.32724747]\n", + " 24.202888 ]\n", + " [ -0.182405 18.826888 ]\n", + " [ -0.182405 13.4508097467 -0.95997942 0.26810935]\n", + " [-0.24258715 -0.91266644 0.32892466]\n", + " [-0.20816438 -0.92297922 0.32369268]\n", + " [-0.17366939 -0.93199773 0.31814962]\n", + " [-0.13930969 -0.93969993 0.31234092]\n", + " [-0.10529359 -0.94608652 0.30632263]\n", + " [-0.07183209 -0.9511795 0.30016279]\n", + " [-0.23416255 -0.90214092 0.36236676]\n", + " [-0.19954789 -0.91252515 0.35704131]\n", + " [-0.16487682 -0.9216185 0.35133315]\n", + " [-0.13035781 -0.9293992 0.34528823]\n", + " [-0.0961981 -0.93586875 0.33896255]\n", + " [-0.06260685 -0.94104976 0.33242402]\n", + " [-0.22533884 -0.89029638 0.39572055]\n", + " [-0.19060022 -0.90073737 0.39031237]\n", + " [-0.15582282 -0.90989893 0.38445181]\n", + " [-0.12121571 -0.91775916 0.37818629]\n", + " [-0.08698501 -0.92431986 0.37157289]\n", + " [-0.05333791 -0.92960406 0.36467981]\n", + " [-0.21615902 -0.87716864 0.42877787]\n", + " [-0.18136652 -0.88765116 0.42329847]\n", + " [-0.1465538 -0.89687422 0.41729919]\n", + " [-0.11192994 -0.90481531 0.41082959]\n", + " [-0.07770009 -0.91147582 0.40394867]\n", + " [-0.04407004 -0.91687873 0.39672562]]\n", + "DEBUG:root:radec2pix: curVec: [[0.2369013 0.95060013 0.20059203]\n", + " [0.26283365 0.94470603 0.19608413]\n", + " [0.28913273 0.93794171 0.19148789]\n", + " [0.31567008 0.93030037 0.18679835]\n", + " [0.34232344 0.9217835 0.18201606]\n", + " [0.36897545 0.91240134 0.17714655]\n", + " [0.39551288 0.90217337 0.1721998 ]\n", + " [0.42182643 0.89112853 0.16718971]\n", + " [0.2369013 0.95060013 0.20059203]\n", + " [0.23726047 0.9445913 0.22683637]\n", + " [0.23760339 0.93770955 0.25346681]\n", + " [0.23790117 0.92994775 0.28035729]\n", + " [0.23813145 0.92130702 0.30738704]\n", + " [0.23827768 0.91179718 0.3344393 ]\n", + " [0.23832841 0.90143727 0.36140063]\n", + " [0.23827672 0.89025583 0.38816075]\n", + " [0.42182643 0.89112853 0.16718971]\n", + " [0.4240724 0.88455585 0.19422552]\n", + " [0.426027 0.87713644 0.22165888]\n", + " [0.42766304 0.86886039 0.24937112]\n", + " [0.42895773 0.85972684 0.27724541]\n", + " [0.42989282 0.84974475 0.30516555]\n", + " [0.43045467 0.8389334 0.33301581]\n", + " [0.43063451 0.82732259 0.36068165]\n", + " [0.23827672 0.89025583 0.38816075]\n", + " [0.26537068 0.88380069 0.38532421]\n", + " [0.29279189 0.87650054 0.38212525]\n", + " [0.32041923 0.8683458 0.37DEBUG:root:optics_fp: sphi: [-0.69747355 -0.64202319 -0.57428814 -0.49231086 -0.39479224 -0.28187416\n", + " -0.15594205 -0.02195087 -0.69747355 -0.74781736 -0.80071206 -0.85427043\n", + " -0.90541695 -0.94984347 -0.98249431 -0.9987529 -0.02195087 -0.02541825\n", + " -0.03017857 -0.03712011 -0.04818532 -0.06858898 -0.11863781 -0.41353071\n", + " -0.9987529 -0.9983174 -0.99760636 -0.99632728 -0.99366642 -0.9866058\n", + " -0.9558309 -0.41353071 -0.67484345 -0.59889188 -0.50249541 -0.38295557\n", + " -0.24062567 -0.080988 -0.71886442 -0.7824768 -0.84816774 -0.91078081\n", + " -0.96243143 -0.99390485 -0.02383323 -0.02898045 -0.03694547 -0.05091008\n", + " -0.08171193 -0.2044042 -0.99855963 -0.99785011 -0.99645076 -0.99306508\n", + " -0.98098067 -0.85635999 -0.69746902 -0.69746902 -0.41742381 -0.41742381\n", + " -0.6968586 -0.76308411 -0.83279855 -0.90064763 -0.95775728 -0.99310478\n", + " -0.62210517 -0.69461272 -0.77599583 -0.86128022 -0.93873226 -0.98974551\n", + " -0.52542175 -0.60021731 -0.69109478 -0.79651192 -0.90419742 -0.98319709\n", + " -0.40310226 -0.4719192378206 0.67751747]\n", + " [-0.52255318 -0.48780041 0.69927743]\n", + " [-0.49427104 -0.48619785 0.72063014]\n", + " [-0.46488545 -0.48394886 0.74140071]\n", + " [-0.43454207 -0.48104007 0.76142868]\n", + " [-0.40340302 -0.47747079 0.7805688 ]\n", + " [-0.60910918 -0.30858315 0.73059048]\n", + " [-0.60910918 -0.30858315 0.73059048]\n", + " [-0.39225507 -0.47605519 0.78708793]\n", + " [-0.39225507 -0.47605519 0.78708793]\n", + " [-0.5981727 -0.31864194 0.73529363]\n", + " [-0.59120539 -0.35025934 0.72649472]\n", + " [-0.58323565 -0.3821986 0.71677082]\n", + " [-0.57428962 -0.41423373 0.70611745]\n", + " [-0.5644011 -0.44615052 0.69455102]\n", + " [-0.55361387 -0.47774454 0.68210837]\n", + " [-0.572391 -0.31587334 0.75669847]\n", + " [-0.56509447 -0.34784602 0.74811188]\n", + " [-0.55684018 -0.38012902 0.73853297]\n", + " [-0.54765178 -0.41249896 0.72795751]\n", + " [-0.53756154 -0.44474227 0.71640206]\n", + " [-0.52661267 -0.47665351 0.70390378]\n", + " [-0.54531586 -0.31286291 0.77765507]\n", + " [-0.53769621 -0.34510911 0.769274 ]\n", + " [-0.52916477 -0.37765977 0.75984061]\n", + " [-0.51974366 -0.41029348 0.74935025]\n", + " [-0.5855922]\n", + " [0.34813392 0.85933603 0.37462563]\n", + " [0.37581847 0.84948063 0.3703284 ]\n", + " [0.40335669 0.83879939 0.36567603]\n", + " [0.43063451 0.82732259 0.36068165]\n", + " [0.24815599 0.94811734 0.19872621]\n", + " [0.28020327 0.94030931 0.19314382]\n", + " [0.31267296 0.93118647 0.18742298]\n", + " [0.34533748 0.92074813 0.18156242]\n", + " [0.37798068 0.90901319 0.17557227]\n", + " [0.41039575 0.89602142 0.16947256]\n", + " [0.23714614 0.94806802 0.21196398]\n", + " [0.23758066 0.9401176 0.24440609]\n", + " [0.2379611 0.930848 0.27730223]\n", + " [0.23824361 0.92025784 0.31042792]\n", + " [0.23839765 0.90836527 0.34356818]\n", + " [0.23840404 0.89520927 0.37651544]\n", + " [0.42274973 0.88840522 0.17893808]\n", + " [0.42530921 0.87978241 0.21235582]\n", + " [0.42740368 0.8698769 0.24625246]\n", + " [0.42898942 0.85868332 0.28041224]\n", + " [0.4300328 0.84621822 0.31462124]\n", + " [0.43051074 0.83252144 0.34866682]\n", + " [0.25004197 0.88758404 0.3868767 ]\n", + " [0.28348384 0.87910641 0.3831564 ]\n", + " [0.31729654 0.86934898 0.37888685]\n", + " [0.35126057 0.85830711 0.3740654 ]\n", + " [0.38515959 0.84599819 0.36869928]\n", + " [0.41878054 0.83246297 0.3628061 ]\n", + " [0.23699042 0.95056237 0.2006657 ]\n", + " [0.23699042 0.95056237 0.2006657 ]\n", + " [0.43054184 0.82740417 0.36060513]\n", + " [0.43054184 0.82740417 0.36060513]\n", + " [0.24837122 0.94561147 0.21007305]\n", + " [0.24895333 0.93762625 0.24265049]\n", + " [0.24945111 0.92831828 0.27567974]\n", + " [0.24982167 0.91768559 0.30893735]\n", + " [0.25003512 0.9057459 0.3422087 ]\n", + " [0.25007269 0.89253799 0.375286 ]\n", + " [0.28058104 0.93776857 0.2046079 ]\n", + " [0.28156704 0.9296813 0.23751354]\n", + " [0.28238718 0.92026509 0.2708683 ]\n", + " [0.28300056 0.90951639 0.30445134]\n", + " [0.28337845 0.89745182 0.33804864]\n", + " [0.28350257 0.88410983 0.37145135]\n", + " [0.31320551 0.9286072 0.19897482]\n", + " [0.31457776 0.92041141 0.23212855]\n", + " [0.3157082 0.91088644 0.26573338]\n", + " [0.31655675 0.90002743 0.29957045]\n", + " [0.31709473 0.88785029 0.33342586]\n", + " [0.31730348 0.87439341 0.36708944]\n", + " [0.3460182 0.91812607 0.19317328]\n", + " [0.34776183 0.90981373 0.22649654]\n", + " [0.34919248 0.90017819 0.26027648]\n", + " [0.35026978 0.88921378 0.29429567]\n", + " [0.35096411 0.87693614 0.32834007]\n", + " [0.351255865948408 -0.12753631 0.99004855]\n", + " [-0.02324907 -0.1278347 0.99152295]\n", + " [-0.20005292 -0.089165 0.97571944]\n", + " [-0.16623701 -0.090077 0.98196303]\n", + " [-0.13146138 -0.09082101 0.98715219]\n", + " [-0.09592455 -0.09139481 0.99118387]\n", + " [-0.05982716 -0.09179425 0.99397914]\n", + " [-0.0233762 -0.09201449 0.99548324]\n", + " [-0.20083104 -0.05389991 0.97814196]\n", + " [-0.16688094 -0.05445583 0.9844721 ]\n", + " [-0.13197015 -0.05491134 0.98973159]\n", + " [-0.09629527 -0.05526476 0.9938174 ]\n", + " [-0.0600556 -0.0555129 0.99665021]\n", + " [-0.02345845 -0.05565213 0.9981746 ]\n", + " [-0.20121796 -0.018319 0.97937518]\n", + " [-0.16720058 -0.01851594 0.98574902]\n", + " [-0.13222195 -0.01867909 0.99104412]\n", + " [-0.09647752 -0.01880776 0.99515745]\n", + " [-0.06016577 -0.01890068 0.99800944]\n", + " [-0.02349426 -0.01895646 0.99954423]]\n", + "0946458 -0.4427967 0.73781903]\n", + " [-0.49837097 -0.47496266 0.72528398]\n", + " [-0.517084 -0.30958689 0.79798502]\n", + " [-0.50914443 -0.34202649 0.78980367]\n", + " [-0.50034105 -0.37476934 0.78051699]\n", + " [-0.49069558 -0.40759527 0.7701194DEBUG:root:radec2pix: curVec Shape: (96, 3)\n", + "4]\n", + " [-0.48024004 -0.44029055 0.75862621]\n", + " [-0.46901868 -0.4726471 0.74607386]\n", + " [-0.48784135 -0.30603549 0.81752865]\n", + " [-0.47958385 -0.33858944 0.80954093]\n", + " [-0.47051328 -0.37144898 0.80040172]\n", + " [-0.46065186 -0.40439476 0.79010426]\n", + " [-0.45003268 -0.4372128 0.77866267]\n", + " [-0.43870119 -0.46969407 0.76611275]\n", + " [-0.45774529 -0.30221135 0.83614446]\n", + " [-0.44917229 -0.33480116 0.82834319]\n", + " [-0.43984016 -0.36770175 0.819351 ]\n", + " [-0.42977235 -0.40069423 0.80915997]\n", + " [-0.41900348 -0.4335646 0.79778307]\n", + " [-0.40758039 -0.46610337 0.78525529]]\n", + "DEBUG:root:mm_to_pix: fitpx: [[0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]]\n", + "99832741]\n", + " [0.01087112 0.02010461 0.99973878]\n", + " [0.20613793 0.2024732 0.95734621]\n", + " [0.20613793 0.2024732 0.95734621]\n", + " [0.01086844 0.00711848 0.9999156 ]\n", + " [0.01086844 0.00711848 0.9999156 ]\n", + " [0.19558949 0.19190537 0.96172609]\n", + " [0.1626169 0.19387759 0.96745399]\n", + " [0.12869151 0.19547539 0.9722283 ]\n", + " [0.09401511 0.1966967 0.9759465 ]\n", + " [0.05879055 0.19753824 0.97853069]\n", + " [0.02322296 0.19799645 0.9799276 ]\n", + " [0.19753009 0.15886347 0.96733875]\n", + " [0.16421774 0.1604891 0.97328094]\n", + " [0.12995114 0.1618095 0.97822819DEBUG:root:mm_to_pix: fitpx.shape: (96, 2)\n", + "]\n", + " [0.09493033 0.16282181 0.98207805]\n", + " [0.05935726 0.16352163 0.98475245]\n", + " [0.02343764 0.16390447 0.98619775]\n", + " [0.19908829 0.12488974 0.97199095]\n", + " [0.16550536 0.12616714 0.97810522]\n", + " [0.13096617 0.12720791 0.98319175]\n", + " [0.09566871 0.12800859 0.98714806]\n", + " [0.05981412 0.1285643 0.9898957 ]\n", + " [0.02360896 0.12887024 0.99138039]\n", + " [0.20026215 0.09018615 0.97558266]\n", + " [0.16647694 0.09111203 0.98182688]\n", + " [0.13173312 0.09186896 0.98701899]\n", + " [0.09622682 0.09245358 0.99105637]\n", + " [0.06015857 0.0928614 0.99386 ]\n", + " [0.02373584 0.09308815 0.99537491]\n", + " [0.20104857 0.05495583 0.97803851]\n", + " [0.16712825 0.05552612 0.98437036]\n", + " [0.13224724 0.05599434 0.98963392]\n", + " [0.09660024 0.05635799 0.99372641]\n", + " [0.06038739 0.05661388 0.99656823]\n", + " [0.02381698 0.05675899 0.99810379]\n", + " [0.20144435 0.01940412 0.97930774]\n", + " [0.16745515 0.01961547 0.98568454]\n", + " [0.13250401 0.01979108 0.99098486]\n", + " [0.09678486 0.01992994 0.99510577]\n", + " [0.06049766 0.02003078 0.99796733]\n", + " [0.02385117 0.02009239 0.99951359]]\n", + " -0.56346867 -0.68479813 -0.83377108 -0.9677645\n", + " -0.2547217 -0.30487255 -0.37769207 -0.48994442 -0.67029166 -0.91697776\n", + " -0.08601994 -0.10436806 -0.13256201 -0.18124971 -0.28404496 -0.60207682]\n", + "888 ]\n", + " [ -0.182405 8.074888 ]\n", + " [ -0.182405 2.698888 ]\n", + " [ -2.079905 31.476388 ]\n", + " [ -7.455905 31.476388 ]\n", + " [-12.831905 31.476388 ]\n", + " [-18.207905 31.476388 ]\n", + " [-23.583905 31.476388 ]\n", + " [-28.959905 31.476388 ]\n", + " [ -2.079905 0.801388 ]\n", + " [ -7.455905 0.801388 ]\n", + " [-12.831905 0.801388 ]\n", + " [-18.207905 0.801388 ]\n", + " [-23.583905 0.801388 ]\n", + " [-28.959905 0.801388 ]\n", + " [-30.857405 29.578888 ]\n", + " [-30.857405 24.202888 ]\n", + " [-30.857405 18.826888 ]\n", + " [-30.857405 13.450888 ]\n", + " [-30.857405 8.074888 ]\n", + " [-30.857405 2.698888 ]\n", + " [ -0.182405 31.476388 ]\n", + " [ -0.182405 31.476388 ]\n", + " [-30.857405 0.801388 ]\n", + " [-30.857405 0.801388 ]\n", + " [ -2.079905 29.578888 ]\n", + " [ -7.455905 29.578888 ]\n", + " [-12.831905 29.578888 1 9.90908525e-01]\n", + " [-6.39746420e-02 -1.52791155e-01 9.86185636e-01]\n", + " [-8.57651635e-02 -1.78454762e-01 9.80203160e-01]\n", + " [-1.07692939e-01 -2.04469867e-01 9.72930781e-01]\n", + " [-1.29632754e-01 -2.30658870e-01 9.64360843e-01]\n", + " [-1.51458023e-01 -2.56852668e-01 9.54508865e-01]\n", + " [ 1.18188031e-01 -2.39881002e-01 9.63581182e-01]\n", + " [ 9.75713706e-02 -2.67234478e-01 9.58679071e-01]\n", + " [ 7.63801900e-02 -2.94865063e-01 9.52481318e-01]\n", + " [ 5.47319910e-02 -3.22590424e-01 9.44954934e-01]\n", + " [ 3.27480396e-02 -3.50232914e-01 9.36089991e-01]\n", + " [ 1.05549687e-02 -3.77617887e-01 9.25901358e-01]\n", + " [-1.49687825e-01 -2.73561614e-01 9.50135568e-01]\n", + " [-1.22418467e-01 -2.94935430e-01 9.47642765e-01]\n", + " [-9.44213773e-02 -3.16402726e-01 9.43914148e-01]\n", + " [-6.58517656e-02 -3.37816503e-01 9.38905509e-01]\n", + " [-3.68703361e-02 -3.59035232e-01 9.32595454e-01]\n", + " [-7.64489398e-03 -3.79921955e-01 9.24986953e-01]\n", + " [-3.49315356e-02 -1.18963711e-01 9.92283943e-01]\n", + " [-3.49315356e-02 -1.18963711e-01 9.92283943e-01]\n", + " [ 2.6963212DEBUG:root:radec2pix: lng: [224.38740491 220.12408621 215.2503637 209.71210534 203.48918374\n", + " 196.62002098 189.22355762 181.5046646 224.38740491 228.56999572\n", + " 233.3693139 238.84884696 245.04132431 251.92249978 259.38507008\n", + " 267.22753799 181.5046646 181.74464663 182.07430544 182.55541483\n", + " 183.32331288 184.74247093 188.24144189 209.436015 267.22753799\n", + " 266.78398778 266.170335 265.26578644 263.80029466 261.02373287\n", + " 253.83681058 209.436015 222.61267508 216.98461546 210.38276245\n", + " 202.75476399 194.17390418 184.89586052 226.12630502 231.65859743\n", + " 238.18310357 245.77405246 254.38382437 263.77502084 181.62909594\n", + " 181.98420755 182.53422407 183.50001953 185.63706132 194.24647314\n", + " 267.02133208 266.36745836 265.3435183 263.51322198 259.32352397\n", + " 241.01895217 224.38712569 224.38712569 209.62070535 209.62070535\n", + " 224.34955164 229.91816922 236.57007702 244.41761198 253.43870278\n", + " 263.38126527 218.66991645 224.21163124 231.12094806 239.6844282\n", + " 250.04034734 261.9370562 211.92326671 217.139242DEBUG:root:radec2pix: curVec Shape: (96, 3)\n", + "4e-03 -3.87190040e-01 9.21995988e-01]\n", + " [ 2.69632124e-03 -3.87190040e-01 9.21995988e-01]\n", + " [-3.28775034e-02 -1.34315322e-01 9.90393086e-01]\n", + " [-5.43913264e-02 -1.59639775e-01 9.85675771e-01]\n", + " [-7.61859124e-02 -1.85483291e-01 9.79689571e-01]\n", + " [-9.81375677e-02 -2.11659031e-01 9.72403966e-01]\n", + " [-1.20120913e-01 -2.37989841e-01 9.63811082e-01]\n", + " [-1.42008946e-01 -2.64306706e-01 9.53926320e-01]\n", + " [-5.34692196e-03 -1.53509809e-01 9.88132658e-01]\n", + " [-2.67877141e-02 -1.79354543e-01 9.83419730e-01]\n", + " [-4.85652612e-02 -2.05664860e-01 9.77416687e-01]\n", + " [-7.05562912e-02 -2.32255728e-01 9.70092308e-01]\n", + " [-9.26351139e-02 -2.58951152e-01 9.61438005e-01]\n", + " [-1.14673633e-01 -2.85582001e-01 9.51468801e-01]\n", + " [ 2.26831341e-02 -1.73107183e-01 9.84641751e-01]\n", + " [ 1.35859477e-03 -1.99405929e-01 9.79916032e-01]\n", + " [-2.03585147e-02 -2.26120961e-01 9.73886462e-01]\n", + " [-4.23457252e-02 -2.53069021e-01 9.66521034e-01]\n", + " [-6.44774796e-02 -2.80074750e-01 9.57810414e-01]06 223.99660639\n", + " 233.09330633 244.99523074 259.69237756 204.0228705 208.45144372\n", + " 214.63892612 223.61475061 236.90559041 255.7456151 195.0232601\n", + " 198.0723045 202.59166286 209.85191686 222.74900651 247.14363581\n", + " 185.201902 186.31923819 188.04100537 191.03114261 197.43976942\n", + " 218.89848666]\n", + " 0.86338388 0.36219829]\n", + " [0.37880342 0.90634369 0.18721402]\n", + " [0.38090424 0.89790571 0.22062931]\n", + " [0.382625 0.8881571 0.2545095 ]\n", + " [0.38392419 0.87709194 0.28863809]\n", + " [0.38477067 0.86472601 0.32280095]\n", + " [0.38514345 0.85109837 0.35678578]\n", + " [0.41135414 0.89329963 0.1811175 ]\n", + " [0.41379691 0.88472665 0.21454807]\n", + " [0.41579624 0.87486244 0.24845361]\n", + " [0.41730898 0.86370142 0.28261824]\n", + " [0.41830216 0.85125987 0.31682792]\n", + " [0.41875327 0.83757742 0.35087001]]\n", + "\n", + " [-8.66249606e-02 -3.06968271e-01 9.47769274e-01]\n", + " [ 5.10505637e-02 -1.92957802e-01 9.79878118e-01]\n", + " [ 2.98862601e-02 -2.19645896e-01 9.75121783e-01]\n", + " [ 8.27411041e-03 -2.46705039e-01 9.69055294e-01]\n", + " [-1.36646587e-02 -2.73953167e-01 9.6164595 ]\n", + " [-18.207905 29.578888 ]\n", + " [-23.583905 29.578888 ]\n", + " [-28.959905 29.578888 ]\n", + " [ -2.079905 24.202888 ]\n", + " [ -7.455905 24.202888 ]\n", + " [-12.831905 24.202888 ]\n", + " [-18.207905 24.202888 ]\n", + " [-23.583905 24.202888 ]\n", + " [-28.959905 24.202888 ]\n", + " [ -2.079905 18.826888 ]\n", + " [ -7.455905 18.826888 ]\n", + " [-12.831905 18.826888 ]\n", + " [-18.207905 18.826888 ]\n", + " [-23.583905 18.826888 ]\n", + " [-28.959905 18.826888 ]\n", + " [ -2.079905 13.450888 ]\n", + " [ -7.455905 13.450888 ]\n", + " [-12.831905 13.450888 ]\n", + " [-18.207905 13.450888 ]\n", + " [-23.583905 13.450888 ]\n", + " [-28.959905 13.450888 ]\n", + " [ -2.079905 8.074888 ]\n", + " [ -7.455905 8.074888 ]\n", + " [-12.831905 8.074888 ]\n", + " [-18.20790499 8.074888 ]\n", + " [-23.583905 8.074888 ]\n", + " [-28.959905 8.074888 ]\n", + " [ -2.079905 2.698888 ]\n", + " [ -7.455905 2.698888 ]\n", + " [-12.831905 2.698888 ]\n", + " [-18.207905 2.698888 ]\n", + " [-23.583905 2.698888 ]\n", + " [-28.959905 2.698888 ]]\n", + "3e-01]\n", + " [-3.58052107e-02 -3.01214851e-0DEBUG:root:radec2pix: curVec Shape: (96, 3)\n", + "1 9.52883834e-01]\n", + " [-5.80186081e-02 -3.28318934e-01 9.42783389e-01]\n", + " [ 7.95916162e-02 -2.12921930e-01 9.73822071e-01]\n", + " [ 5.86313791e-02 -2.39935813e-01 9.69016598e-01]\n", + " [ 3.71688259e-02 -2.67278978e-01 9.62902086e-01]\n", + " [ 1.53236163e-02 -2.94769750e-01 9.55445436e-01]\n", + " [-6.78069789e-03 -3.22232008e-01 9.46636443e-01]\n", + " [-2.90157499e-02 -3.49493040e-01 9.36489563e-01]\n", + " [ 1.08140696e-01 -2.32868352e-01 9.66477067e-01]\n", + " [ 8.74271437e-02 -2.60144544e-01 9.61603510e-01]\n", + " [ 6.61577443e-02 -2.87711038e-01 9.55429491e-01]\n", + " [ 4.44505273e-02 -3.15385787e-01 9.47921914e-01]\n", + " [ 2.24273809e-02 -3.42991572e-01 9.39070708e-01]\n", + " [ 2.15475015e-04 -3.70354195e-01 9.28890588e-01]]\n", + "DEBUG:root:make_az_asym: xyp: shape: (96, 2)\n", + "DEBUG:root:radec2pix: lng: [44.48637088 40.24577336 35.3986005 29.89032997 23.69955042 16.86222735\n", + " 9.49377237 1.79522173 44.48637088 48.66063412 53.44662754 58.90649312\n", + " 65.0719071 71.9184746 79.34035003 87.13941954 1.79522173 2.08115239\n", + " 2.4736322 3.04578526 3.95735654 5.6363423 9.74006464 33.09159725\n", + " 87.13941954 86.68537287 86.05851166 85.13727473 83.65177634 80.86105503\n", + " 73.77851938 33.09159725 42.72105973 37.1234454 30.55748427 22.96885005\n", + " 14.42630836 5.17884001 46.22224274 51.74114431 58.24340245 65.80116251\n", + " 74.36661193 83.70585675 1.93801443 2.35975361 3.01217367 4.15532416\n", + " 6.6725739 16.60005947 86.92909007 86.26070822 85.21749379 83.36321455\n", + " 79.16883097 61.59868241 44.48614146 44.48614146 33.22349754 33.22349754\n", + " 44.45527608 50.01139871 56.64103308 64.45360362 73.42615136 83.31035484\n", + " 38.80796323 44.3420957 51.23163704 59.75644459 70.04944098 81.86211477\n", + " 32.10039047 37.31880048 44.16600061 53.22697224 65.04995068 79.6185637\n", + " 24.24396698 28.69167771 34.89141577 43.85434751 57.06355174 75.69539259\n", + " 15.28811193 18.37837592 22.94811312 30.25991115 43.15274514 67.23630391\n", + " 5.50203766 6.68110194 8.4950185 11.63570463 18.3197087 40.11102427]\n", + "DEBUG:root:radec2pix: curVec Shape: (96, 3)\n", + "DEBUG:root:radec2pix: lat: [73.24108038 74.22539246 75.14065481 75.95980834 76.6531185 77.19018187\n", + " 77.5432879 77.69182998 73.24108038 74.24861044 75.19133398 76.04212851\n", + " 76.77071823 77.34548632 77.73675519 77.92139244 77.69182998 79.29098794\n", + " 80.92271511 82.58149911 84.2618841 85.95783408 87.66008742 89.3157252\n", + " 77.92139244 79.52414159 81.15801466 82.81709844 84.49494889 86.18266378\n", + " 87.85870936 89.3157252 73.68081786 74.84436919 75.87765867 76.72697854\n", + " 77.33670031 77.65849826 73.69035695 74.88520803 75.9561532 76.84869716\n", + " 77.50496612 77.87275428 78.38454537 80.36704866 82.39295371 84.45217978\n", + " 86.53330534 88.61095022 78.61571107 80.60164359 82.62842612 84.684393\n", + " 86.75213987 88.75761015 73.24806584 73.24806584 89.30770045 89.30770045\n", + " 74.1417384 75.39152116 76.51854281 77.46407515 78.16380788 78.55793051\n", + " 75.35984123 76.77406669 78.07566348 79.19387762 80.04201199 80.52949342\n", + " 76.4480688 78.03443361 79.53211824 80.86193095 81.91012885 82.53435821\n", + " 77.34827857 79.10130772 80.80570953 82.38629346 83.70950064 84.55228195\n", + " 77.99844552 79.88985033 81.78208758 83.62548455 85.30897599 86.53756064\n", + " 78.34312947 80.31550148 82.32609465 84.35907996 86.38425999 88.27008044]\n", + "DEBUG:root:radec2pix: xyfp: [[-32.31281793 -31.43806373]\n", + " [-32.31091541 -27.05163558]\n", + " [-32.30901287 -22.66520742]\n", + " [-32.30711034 -18.27877926]\n", + " [-32.3052078 -13.8923511 ]\n", + " [-32.30330527 -9.50592294]\n", + " [-32.30140274 -5.11949478]\n", + " [-32.2995002 -0.73306663]\n", + " [-32.31281793 -31.43806373]\n", + " [-27.92638978 -31.43996627]\n", + " [-23.53996162 -31.4418688 ]\n", + " [-19.15353346 -31.44377134]\n", + " [-14.7671053 -31.44567387]\n", + " [-10.38067715 -31.44757641]\n", + " [ -5.99424899 -31.44947894]\n", + " [ -1.60782083 -31.45138147]\n", + " [-32.2995002 -0.73306663]\n", + " [-27.91307204 -0.73496916]\n", + " [-23.52664389 -0.73687169]\n", + " [-19.14021573 -0.73877423]\n", + " [-14.75378757 -0.74067676]\n", + " [-10.36735941 -0.74257929]\n", + " [ -5.98093125 -0.74448183]\n", + " [ -1.59450309 -0.74638436]\n", + " [ -1.60782083 -31.45138147]\n", + " [ -1.60591829 -27.06495331]\n", + " [ -1.60401576 -22.67852516]\n", + " [ -1.60211323 -18.292097 ]\n", + " [ -1.60021069 -13.90566884]\n", + " [ -1.59830816 -9.51924068]\n", + " [ -1.59640563 -5.13281252]\n", + " [ -1.59450309 -0.74638436]\n", + " [-32.29698843 -29.52557043]\n", + " [-32.29465669 -24.14957093]\n", + " [-32.29232495 -18.77357144]\n", + " [-32.2899932 -13.39757194]\n", + " [-32.28766146 -8.02157244]\n", + " [-32.28532972 -2.64557295]\n", + " [-30.40031161 -31.42389325]\n", + " [-25.02431212 -31.42622499]\n", + " [-19.64831262 -31.42855673]\n", + " [-14.27231313 -31.43088848]\n", + " [ -8.89631363 -31.43322022]\n", + " [ -3.52031414 -31.43555196]\n", + " [-30.38700689 -0.74889614]\n", + " [-25.01100739 -0.75122788]\n", + " [-19.6350079 -0.75355962]\n", + " [-14.25900841 -0.75589136]\n", + " [ -8.88300892 -0.7582231 ]\n", + " [ -3.50700942 -0.76055484]\n", + " [ -1.62199131 -29.53887515]\n", + " [ -1.61965957 -24.16287565]\n", + " [ -1.61732783 -18.78687616]\n", + " [ -1.61499609 -13.41087666]\n", + " [ -1.61266434 -8.03487716]\n", + " [ -1.6103326 -2.65887768]\n", + " [-32.29781143 -31.42307024]\n", + " [-32.29781143 -31.42307024]\n", + " [ -1.60950959 -0.76137785]\n", + " [ -1.60950959 -0.76137785]\n", + " [-30.3994886 -29.52639343]\n", + " [-25.02348911 -29.52872517]\n", + " [-19.64748962 -29.53105692]\n", + " [-14.27149012 -29.53338866]\n", + " [ -8.89549063 -29.5357204 ]\n", + " [ -3.51949113 -29.53805214]\n", + " [-30.39715686 -24.15039394]\n", + " [-25.02115737 -24.15272568]\n", + " [-19.64515788 -24.15505742]\n", + " [-14.26915838 -24.15738916]\n", + " [ -8.89315889 -24.1597209 ]\n", + " [ -3.51715939 -24.16205264]\n", + " [-30.39482512 -18.77439444]\n", + " [-25.01882563 -18.77672618]\n", + " [-19.64282613 -18.77905793]\n", + " [-14.26682664 -18.78138967]\n", + " [ -8.89082714 -18.78372141]\n", + " [ -3.51482765 -18.78605315]\n", + " [-30.39249338 -13.39839495]\n", + " [-25.01649389 -13.40072669]\n", + " [-19.64049439 -13.40305843]\n", + " [-14.2644949 -13.40539017]\n", + " [ -8.8884954 -13.40772191]\n", + " [ -3.51249591 -13.41005365]\n", + " [-30.39016163 -8.02239545]\n", + " [-25.01416214 -8.02472719]\n", + " [-19.63816265 -8.02705893]\n", + " [-14.26216315 -8.02939068]\n", + " [ -8.88616366 -8.03172242]\n", + " [ -3.51016417 -8.03405416]\n", + " [-30.3878299 -2.64639596]\n", + " [-25.01183041 -2.6487277 ]\n", + " [-19.63583091 -2.65105944]\n", + " [-14.25983141 -2.65339118]\n", + " [ -8.88383191 -2.65572292]\n", + " [ -3.50783243 -2.65805467]]\n", + "DEBUG:root:optics_fp: xyfp: [[32.275486 31.41357429]\n", + " [32.27502267 27.02714574]\n", + " [32.27455935 22.64071719]\n", + " [32.27409601 18.25428864]\n", + " [32.27363269 13.8678601 ]\n", + " [32.27316936 9.48143155]\n", + " [32.27270604 5.095003 ]\n", + " [32.27224271 0.70857446]\n", + " [32.275486 31.41357429]\n", + " [27.88905745 31.41403761]\n", + " [23.5026289 31.41450094]\n", + " [19.11620036 31.41496427]\n", + " [14.72977181 31.41542759]\n", + " [10.34334326 31.41589092]\n", + " [ 5.95691471 31.41635424]\n", + " [ 1.57048617 31.41681757]\n", + " [32.27224271 0.70857446]\n", + " [27.88581416 0.70903778]\n", + " [23.49938562 0.70950111]\n", + " [19.11295707 0.70996444]\n", + " [14.72652852 0.71042776]\n", + " [10.34009998 0.71089109]\n", + " [ 5.95367142 0.71135442]\n", + " [ 1.56724288 0.71181774]\n", + " [ 1.57048617 31.41681757]\n", + " [ 1.57002284 27.03038902]\n", + " [ 1.56955951 22.64396047]\n", + " [ 1.56909619 18.25753194]\n", + " [ 1.56863286 13.87110338]\n", + " [ 1.56816953 9.48467484]\n", + " [ 1.56770621 5.09824629]\n", + " [ 1.56724288 0.71181774]\n", + " [32.26028399 29.50107588]\n", + " [32.25971613 24.12507591]\n", + " [32.25914828 18.74907594]\n", + " [32.25858043 13.37307597]\n", + " [32.25801258 7.997076 ]\n", + " [32.25744472 2.62107603]\n", + " [30.36298443 31.3987763 ]\n", + " [24.98698446 31.39934415]\n", + " [19.61098448 31.399912 ]\n", + " [14.23498451 31.40047985]\n", + " [ 8.85898454 31.40104771]\n", + " [ 3.48298457 31.40161556]\n", + " [30.35974431 0.72377647]\n", + " [24.98374433 0.72434432]\n", + " [19.60774436 0.72491217]\n", + " [14.23174439 0.72548003]\n", + " [ 8.85574442 0.72604788]\n", + " [ 3.47974445 0.72661573]\n", + " [ 1.58528416 29.504316 ]\n", + " [ 1.5847163 24.12831603]\n", + " [ 1.58414845 18.75231606]\n", + " [ 1.5835806 13.37631609]\n", + " [ 1.58301275 8.00031612]\n", + " [ 1.5824449 2.62431615]\n", + " [32.26048441 31.39857587]\n", + " [32.26048441 31.39857587]\n", + " [ 1.58224447 0.72681616]\n", + " [ 1.58224447 0.72681616]\n", + " [30.36278399 29.50127631]\n", + " [24.98678403 29.50184416]\n", + " [19.61078405 29.50241201]\n", + " [14.23478409 29.50297987]\n", + " [ 8.85878411 29.50354772]\n", + " [ 3.48278414 29.50411557]\n", + " [30.36221615 24.12527634]\n", + " [24.98621618 24.12584419]\n", + " [19.6102162 24.12641204]\n", + " [14.23421623 24.1269799 ]\n", + " [ 8.85821626 24.12754775]\n", + " [ 3.48221629 24.1281156 ]\n", + " [30.36164DEBUG:root:radec2pix: camVec: [[-0.20629584 -0.20812128 -0.20967356 -0.21095376 -0.21196139 -0.21269501\n", + " -0.2131529 -0.21333373 -0.20629584 -0.1798852 -0.15276427 -0.12504507\n", + " -0.09683814 -0.06825398 -0.03940385 -0.01040007 -0.21333373 -0.18599064\n", + " -0.15793623 -0.12927467 -0.10011211 -0.07055816 -0.04072622 -0.01073294\n", + " -0.01040007 -0.01048759 -0.01056224 -0.01062379 -0.01067191 -0.0107063\n", + " -0.0107267 -0.01073294 -0.20703611 -0.20908844 -0.21073192 -0.21196628\n", + " -0.21278893 -0.21319686 -0.19488162 -0.16201965 -0.12820231 -0.09363367\n", + " -0.05851721 -0.02305821 -0.20150602 -0.16750285 -0.13253465 -0.0967959\n", + " -0.06048842 -0.02382238 -0.0105395 -0.01063912 -0.01071899 -0.01077856\n", + " -0.01081726 -0.01083465 -0.20621357 -0.20621357 -0.01083565 -0.01083565\n", + " -0.19565571 -0.16265759 -0.12870452 -0.09399937 -0.05874512 -0.0231472\n", + " -0.19758845 -0.16425347 -0.12996305 -0.09491705 -0.05931746 -0.02337052\n", + " -0.19913769 -0.16553623 -0.13097704 -0.09565767 -0.05977969 -0.02355053\n", + " -0.200302829 18.74927637]\n", + " [24.98564832 18.74984422]\n", + " [19.60964835 18.75041208]\n", + " [14.23364838 18.75097993]\n", + " [ 8.85764841 18.75154778]\n", + " [ 3.48164844 18.75211563]\n", + " [30.36108043 13.3732764 ]\n", + " [24.98508046 13.37384425]\n", + " [19.60908049 13.3744121 ]\n", + " [14.23308053 13.37497996]\n", + " [ 8.85708056 13.37554781]\n", + " [ 3.48108059 13.37611567]\n", + " [30.36051258 7.99727643]\n", + " [24.98451261 7.99784428]\n", + " [19.60851265 7.99841214]\n", + " [14.23251268 7.99897999]\n", + " [ 8.85651271 7.99954784]\n", + " [ 3.48051273 8.00011569]\n", + " [30.35994473 2.62127646]\n", + " [24.98394476 2.62184431]\n", + " [19.60794479 2.62241216]\n", + " [14.23194482 2.62298002]\n", + " [ 8.85594485 2.62354787]\n", + " [ 3.47994488 2.62411572]]\n", + "26 -0.16650264 -0.13174231 -0.09621721 -0.0601289 -0.023686\n", + " -0.20107886 -0.16714801 -0.13225382 -0.09659125 -0.06036201 -0.02377567\n", + " -0.201464 -0.16746808 -0.13250731 -0.0967762 -0.06047657 -0.02381854]\n", + " [-0.20078674 -0.17428103 -0.14708674 -0.11931584 -0.09107902 -0.06248699\n", + " -0.03365118 -0.00468399 -0.20078674 -0.20262142 -0.20419049 -0.20549514\n", + " -0.20653488 -0.20730818 -0.20781318 -0.2080483 -0.00468399 -0.00472909\n", + " -0.00476846 -0.004802 -0.00482954 -0.00485094 -0.00486604 -0.00487474\n", + " -0.2080483 -0.18056016 -0.15238099 -0.12361519 -0.09436952 -0.06475431\n", + " -0.03488367 -0.00487474 -0.1893284 -0.1563645 -0.12247778 -0.08787247\n", + " -0.05275245 -0.01732329 -0.20152974 -0.20359843 -0.20526972 -0.2065434\n", + " -0.20741673 -0.20788637 -0.0048039 -0.00485635 -0.0048999 -0.00493429\n", + " -0.00495921 -0.00497442 -0.19615466 -0.1619874 -0.12688576 -0.09104519\n", + " -0.05466885 -0.01796812 -0.20070413 -0.20070413 -0.00497744 -0.00497744\n", + " -0.19010422 -0.19204948 -0.19362274 -0.19482286 -0.19564642 -0.1960896\n", + " -0.15700026 -0.15859759 -0.1598933 -0.16088429 -0.1615658 -0.16193328\n", + " -0.12297381 -0.12422245 -0.12523802 -0.12601654 -0.12655298 -0.12684288\n", + " -0.088228 -0.0891244 -0.0898551 -0.09041635 -0.09080384 -0.09101389\n", + " -0.05296627 -0.0535061 -0.05394701 -0.05428637 -0.05452132 -0.05464944\n", + " -0.01739439 -0.0175743 -0.01772184 -0.01DEBUG:root:radec2pix: lat: [73.19833089 74.18249103 75.09922688 75.92116023 76.61853688 77.16100123\n", + " 77.52079342 77.67706772 73.19833089 74.20159367 75.14093371 75.98890558\n", + " 76.71531245 77.28881429 77.68005228 77.86611976 77.67706772 79.27473553\n", + " 80.90480881 82.56181915 84.24016258 85.93331116 87.63030205 89.26372814\n", + " 77.86611976 79.46663016 81.09832556 82.755367 84.43126132 86.11695715\n", + " 87.79091006 89.26372814 73.63774563 74.80227565 75.83862014 76.69292614\n", + " 77.3096353 77.64025349 73.64559076 74.835883 75.90321746 76.7930912\n", + " 77.44812351 77.8166633 78.36913095 80.34967761 82.37343442 84.43012843\n", + " 86.50734673 88.57380626 78.55945528 80.5426681 82.56690719 84.62047016\n", + " 86.68569475 88.69035885 73.20529527 73.20529527 89.25558432 89.25558432\n", + " 74.09681811 75.34210951 76.46528549 77.40781255 78.10603298 78.5008319\n", + " 75.3160395 76.72544415 78.02222799 79.13621749 79.98176995 80.46955109\n", + " 76.40729948 77.98832745 79.48016045 80.80422916 81.84813181 82.47175257\n", + " 77.31254652 79.06012758 8783608 -0.01791601 -0.0179608 ]\n", + " [ 0.95766733 0.96245086 0.96664496 0.9701867 0.97302465 0.97511856\n", + " 0.97643916 0.97696816 0.95766733 0.96259331 0.96693812 0.97063664\n", + " 0.97363531 0.97589175 0.97737455 0.97806326 0.97696816 0.98254014\n", + " 0.9874378 0.9915972 0.99496444 0.99749587 0.99915849 0.99993052\n", + " 0.97806326 0.98350803 0.98826539 0.99227336 0.99548004 0.9978438\n", + " 0.99933381 0.99993052 0.95983895 0.96531454 0.96984084 0.97331841\n", + " 0.97567313 0.97685567 0.95989943 0.96555544 0.97027239 0.9739469\n", + " 0.97650091 0.97788117 0.9794755 0.98585963 0.99116626 0.99529202\n", + " 0.99815658 0.99970383 0.98051633 0.98673547 0.99185942 0.99578843\n", + " 0.99844594 0.99977985 0.95770236 0.95770236 0.9999289 0.9999289\n", + " 0.96207028 0.96781171 0.97259724 0.9763238 0.97891342 0.98031274\n", + " 0.96763099 0.97358492 0.97854164 0.98239859 0.98507763 0.98652493\n", + " 0.97222509 0.97834888 0.98344316 0.98740541 0.99015692 0.99164321\n", + " 0.97575346 0.98200495 0.98720313 0.99124524 0.9940519 0.9955679\n", + " 0.97814205 0.98447887 0.98974676 0.9938426 0.99668644 0.9982225\n", + " 0.97934146 0.98572085 0.99102359 0.99514634 0.99800882 0.99955494]]\n", + "0.75806605 82.3313541 83.64750757 84.48728684\n", + " 77.96997446 79.85669547 81.74302972 83.57869755 85.2518859 86.47101417\n", + " 78.32402093 80.29356392 82.30071175 84.32903186 86.34620527 88.21286949]\n", + "DEBUG:root:radec2pix: camVec: [[-0.00114705 -0.00115629 -0.0011641 -0.00117048 -0.00117539 -0.00117881\n", + " -0.00118068 -0.00118097 -0.00114705 -0.03018244 -0.05910007 -0.08778716\n", + " -0.11613176 -0.14402308 -0.17135219 -0.19801388 -0.00118097 -0.03121228\n", + " -0.06111791 -0.09077999 -0.12008538 -0.14892541 -0.17719395 -0.20478471\n", + " -0.19801388 -0.19975823 -0.20124936 -0.20248221 -0.20345393 -0.20416257\n", + " -0.20460656 -0.20478471 -0.00125101 -0.00126235 -0.00127136 -0.00127799\n", + " -0.00128216 -0.00128379 -0.01381426 -0.04933618 -0.08456905 -0.11930642\n", + " -0.15334441 -0.18648385 -0.01428247 -0.05101935 -0.08744986 -0.12336368\n", + " -0.15856056 -0.19284509 -0.1987148 -0.20068229 -0.20226422 -0.20345456\n", + " -0.20424964 -0.20464672 -0.00124645 -0.00124645 -0.20469148 -0.20469148\n", + " -0.01386808 -0.04952932 -0.08490071 -0.11977552 -0.15394951 -0.18722234\n", + " -0.01400325 -0.05001432 -0.08573269 -0.12095098 -0.15546507 -0.18907339\n", + " -0.01411268 -0.05040698 -0.08640482 -0.12189811 -0.15668376 -0.19056116\n", + " -0.01419584 -0.05070556 -0.08691471 -0.12261435 -0.15760261 -0.19168088\n", + " -0.01425179 -0.05090701 -0.08725814 -0.12309542 -0.15821798 -0.19242913\n", + " -0.01427955 -0.05100809 -0.08743051 -0.12333654 -0.15852587 -0.19280295]\n", + " [ 0.20838541 0.18089194 0.15270652 0.12393558 0.09468513 0.06506336\n", + " 0.03518275 0.0051606 0.20838541 0.20823844 0.20782077 0.20713345\n", + " 0.20617803 0.20495645 0.20347155 0.2017284 0.0051606 0.00515607\n", + " 0.00514464 0.00512646 0.00510175 0.0050707 0.00503345 0.00499006\n", + " 0.2017284 0.17512925 0.14784829 0.11999042 0.09166442 0.06298098\n", + " 0.034DEBUG:root:radec2pix: camVec Shape: (3, 96)\n", + "05194 0.00499006 0.19649007 0.1623152 0.12720686 0.09136033\n", + " 0.05497503 0.01826009 0.20826196 0.20789982 0.20713224 0.20596186\n", + " 0.20439232 0.20242966 0.00526224 0.00525184 0.00523103 0.00520016\n", + " 0.00515961 0.0051096 0.19022738 0.157155 0.12316211 0.08844755\n", + " 0.05321501 0.01767079 0.20829266 0.20829266 0.0050897 0.0050897\n", + " 0.19646111 0.19611969 0.19539637 0.19429398 0.1928159 0.19096695\n", + " 0.16229116 0.16200846 0.16141067 0.16050163 0.15928501 0.15776388\n", + " 0.1271878 0.12696445 0.12649338 0.12577923 0.12482642 0.12363768\n", + " 0.0913464 0.09118412 0.09084281 0.0903271 0.0896414 0.08878838\n", + " 0.05496643 0.05486748 0.05466012 0.05434775 0.0539337 0.05341999\n", + " 0.01825699 0.0182233 0.01815347 0.01804874 0.01791034 0.01773905]\n", + " [ 0.97804612 0.9835023 0.9882709 0.99228958 0.99550658 0.99788044\n", + " 0.9993802 0.99998599 0.97804612 0.97761228 0.9763799 0.97436602\n", + " 0.9715987 0.96811684 0.96396979 0.95921643 0.99998599 0.99949948\n", + " 0.99811729 0.99585778 0.99275046 0.98883543 0.98416308 0.97879432\n", + " 0.95921643 0.96406763 0.96831791 0.97190702 0.97478415 0.97690892\n", + " 0.97825182 0.97879432 0.98050502 0.98673815 0.99187539 0.99581708\n", + " 0.99848691 0.99983245 0.97797552 0.97690512 0.97465087 0.97125985\n", + " 0.96680364 0.96137714 0.99988415 0.99868386 0.99615519 0.9923479\n", + " 0.98733577 0.98121591 0.96141873 0.96696894 0.9715556 0.97508116\n", + " 0.97747135 0.97867638 0.97806575 0.97806575 0.97881331 0.97881331\n", + " 0.98041354 0.9793283 0.97704254 0.97360345 0.96908285 0.96357637\n", + " 0.98664355 0.98552109 0.9831564 0.9795969 0.97491482 0.9692068\n", + " 0.99177825 0.99062564 0.98819716 0.98454072 0.97972882 0.97385839\n", + " 0.99571799 0.99454231 0.99206523 0.98833534 0.98342556 0.97743289\n", + " 0.99838649 0.99719508 0.99468502 0.99090557 0.98593013 0.97985577\n", + " 0.99973135 0.99853197 0.9960052 0.99220076 0.98719237 0.98107714]]\n", + "DEBUG:root:radec2pix: xyfp: [[ -0.167405 31.491388 ]\n", + " [ -0.167405 27.10495943]\n", + " [ -0.167405 22.71853086]\n", + " [ -0.167405 18.33210229]\n", + " [ -0.167405 13.94567372]\n", + " [ -0.167405 9.55924515]\n", + " [ -0.167405 5.17281657]\n", + " [ -0.167405 0.786388 ]\n", + " [ -0.167405 31.491388 ]\n", + " [ -4.55383357 31.491388 ]\n", + " [ -8.94026214 31.491388 ]\n", + " [-13.32669071 31.491388 ]\n", + " [-17.71311928 31.491388 ]\n", + " [-22.09954786 31.491388 ]\n", + " [-26.48597643 31.491388 ]\n", + " [-30.872405 31.491388 ]\n", + " [ -0.167405 0.786388 ]\n", + " [ -4.55383357 0.786388 ]\n", + " [ -8.94026214 0.786388 ]\n", + " [-13.32669071 0.786388 ]\n", + " [-17.71311929 0.786388 ]\n", + " [-22.09954786 0.786388 ]\n", + " [-26.48597643 0.786388 ]\n", + " [-30.872405 0.786388 ]\n", + " [-30.872405 31.491388 ]\n", + " [-30.872405 27.10495943]\n", + " [-30.872405 22.71853086]\n", + " [-30.872405 18.33210229]\n", + " [-30.872405 13.94567371]\n", + " [-30.872405 9.55924514]\n", + " [-30.872405 5.17281657]\n", + " [-30.872405 0.786388 ]\n", + " [ -0.182405 29.578888 ]\n", + " [ -0.182405 24.202888 ]\n", + " [ -0.182405 18.826888 ]\n", + " [ -0.182405 13.450888 ]\n", + " [ -0.182405 8.074888 ]\n", + " [ -0.182405 2.698888 ]\n", + " [ -2.079905 31.476388 ]\n", + " [ -7.455905 31.476388 ]\n", + " [-12.831905 31.476388 ]\n", + " [-18.207905 31.476388 ]\n", + " [-23.583905 31.476388 ]\n", + " [-28.959905 31.476388 ]\n", + " [ -2.079905 0.801388 ]\n", + " [ -7.455905 0.801388 ]\n", + " [-12.831905 0.801388 ]\n", + " [-18.207905 0.801388 ]\n", + " [-23.583905 0.801388 ]\n", + " [-28.959905 0.801388 ]\n", + " [-30.857405 29.578888 ]\n", + " [-30.857405 24.202888 ]\n", + " [-30.857405 18.826888 ]\n", + " [-30.857405 13.450888 ]\n", + " [-30.857405 8.074888 ]\n", + " [-30.857405 2.698888 ]\n", + " [ -0.182405 31.476388 ]\n", + " [ -0.182405 31.476388 ]\n", + " [-30.857405 0.801388 ]\n", + " [-30.857405 0.801388 ]\n", + " [ -2.079905 29.578888 ]\n", + " [ -7.455905 29.578888 ]\n", + " [-12.831905 29.578888 ]\n", + " [-18.207905 29.578888 ]\n", + " [-23.583905 29.578888 ]\n", + " [-28.959905 29.578888 ]\n", + " [ -2.079905 24.20288DEBUG:root:radec2pix: camVec Shape: (3, 96)\n", + "8 ]\n", + " [ -7.455905 24.202888 ]\n", + " [-12.831905 24.202888 ]\n", + " [-18.207905 24.202888 ]\n", + " [-23.583905 24.202888 ]\n", + " [-28.959905 24.202888 ]\n", + " [ -2.079905 18.826888 ]\n", + " [ -7.455905 18.826888 ]\n", + " [-12.831905 18.826888 ]\n", + " [-18.207905 18.826888 ]\n", + " [-23.583905 18.826888 ]\n", + " [-28.959905 18.826888 ]\n", + " [ -2.079905 13.450888 ]\n", + " [ -7.455905 13.450888 ]\n", + " [-12.831905 13.450888 ]\n", + " [-18.207905 13.450888 ]\n", + " [-23.583905 13.450888 ]\n", + " [-28.959905 13.450888 ]\n", + " [ -2.079905 8.074888 ]\n", + " [ -7.455905 8.074888 ]\n", + " [-12.831905 8.074888 ]\n", + " [-18.20790499 8.074888 ]\n", + " [-23.583905 8.074888 ]\n", + " [-28.959905 8.074888 ]\n", + " [ -2.079905 2.698888 ]\n", + " [ -7.455905 2.698888 ]\n", + " [-12.831905 2.698888 ]\n", + " [-18.207905 2.698888 ]\n", + " [-23.583905 2.698888 ]\n", + " [-28.959905 2.698888 ]]\n", + "DEBUG:root:radec2pix: ccdpx: [[-4.44999997e+01 -4.99999751e-01]\n", + " [-4.45000003e+01 2.91928571e+02]\n", + " [-4.45000000e+01 5.84357143e+02]\n", + " [-4.44999999e+01 8.76785714e+02]\n", + " [-4.44999999e+01 1.16921429e+03]\n", + " [-4.44999999e+01 1.46164286e+03]\n", + " [-4.45000001e+01 1.75407143e+03]\n", + " [-4.45000000e+01 2.04650000e+03]\n", + " [-4.44999997e+01 -4.99999751e-01]\n", + " [ 2.47928571e+02 -5.00000271e-01]\n", + " [ 5.40357143e+02 -4.99999959e-01]\n", + " [ 8.32785714e+02 -5.00000035e-01]\n", + " [ 1.12521429e+03 -5.00000130e-01]\n", + " [ 1.41764286e+03 -5.00000295e-01]\n", + " [ 1.71007143e+03 -5.00000131e-01]\n", + " [ 2.00250000e+03 -5.00000000e-01]\n", + " [-4.45000000e+01 2.04650000e+03]\n", + " [ 2.47928571e+02 2.04650000e+03]\n", + " [ 5.40357143e+02 2.04650000e+03]\n", + " [ 8.32785714e+02 2.04650000e+03]\n", + " [ 1.12521429e+03 2.04650000e+03]\n", + " [ 1.41764286e+03 2.04650000e+03]\n", + " [ 1.71007143e+03 2.04650000e+03]\n", + " [ 2.00250000e+03 2.04650000e+03]\n", + " [ 2.00250000e+03 -5.00000000e-01]\n", + " [ 2.00250000e+03 2.91928571e+02]\n", + " [ 2.00250000e+03 5.84357143e+02]\n", + " [ 2.00250000e+03 8.76785714e+02]\n", + " [ 2.00250000e+03 1.16921429e+03]\n", + " [ 2.00250000e+03 1.46164286e+03]\n", + " [ 2.00250000e+03 1.75407143eDEBUG:root:radec2pix: camVec: [[-0.20607518 -0.20787446 -0.20940354 -0.21066179 -0.21164814 -0.21236112\n", + " -0.21279916 -0.21296107 -0.20607518 -0.17964954 -0.15251864 -0.12479221\n", + " -0.09658011 -0.06799262 -0.03914089 -0.01013708 -0.21296107 -0.18561075\n", + " -0.15755214 -0.12888979 -0.09972928 -0.07017922 -0.04035219 -0.01036463\n", + " -0.01013708 -0.01020871 -0.01026764 -0.01031373 -0.01034674 -0.01036638\n", + " -0.0103724 -0.01036463 -0.20680345 -0.20882603 -0.21044235 -0.21165063\n", + " -0.2124482 -0.2128323 -0.19465346 -0.16177694 -0.12795009 -0.0933751\n", + " -0.05825505 -0.022795 -0.20112996 -0.16711987 -0.13214975 -0.09641349\n", + " -0.0601111 -0.02345151 -0.01026957 -0.0103498 -0.01041065 -0.01045169\n", + " -0.01047241 -0.01047238 -0.20599275 -0.20599275 -0.01046737 -0.01046737\n", + " -0.19541667 -0.16240545 -0.12844349 -0.09373247 -0.05847519 -0.02287686\n", + " -0.19732118 -0.16397526 -0.12967711 -0.09462661 -0.05902568 -0.02308015\n", + " -0.19884383 -0.16523235 -0.13066656 -0.09534433 -0.05946678 -0.02324061\n", + " -0.19998259 -0.16617376 -0.13140827 -0.09588212 -0.05979589 -0.0233572\n", + " -0.20073433 -0.16679525 -0.13189744 -0.09623556 -0.06000982 -0.02342863\n", + " -0.20109591 -0.16709274 -0.13212968 -0.09640067 -0.06010576 -0.0234538 ]\n", + " [-0.20019593 -0.17367087 -0.14646307 -0.11868235 -0.09043873 -0.0618427\n", + " -0.03300558 -0.0040396 -0.20019593 -0.20202839 -0.20359907 -0.20490731\n", + " -0.20595196 -0.20673135 -0.20724368 -0.20748743 -0.0040396 -0.00409191\n", + " -0.0041395 -0.00418225 -0.00421998 -0.00425248 -0.00427955 -0.00430103\n", + " -0.20748743 -0.17998755 -0.15180051 -0.12303089 -0.0937848 -0.06417157\n", + " -0.03430461 -0.00430103 -0.18872819 -0.15574492 -0.12184525 -0.0872316\n", + " -0.05210744 -0.0166781 -0.20093724 -0.20300612 -0.20468137 -0.20596106\n", + " -0.20684219 -0.20732153 -0.00416252 -0.00422448 -0.00427905 -0.00432591\n", + " -0.00436469 -0.00439503 -0.19558822 -0.16140908 -0.12630166 -0.09046055\n", + " -0.05408714 -0.0173918 -0.20011322 -0.20011322 -0.00440367 -0.00440367\n", + " -0.18950334 -0.19145029 -0.19302803 -0.19423441 -0.195066 -0.19551916\n", + " -0.15638145 -0.15798254 -0.1592836 -0.16028164 -0.16097217 -0.16135064\n", + " -0.12234264 -0.1235961 -0.12461804 -0.12540495 -0.1259519 -0.1262541\n", + " -0.08758892 -0.08849133 -0.08922984 -0.08980108 -0.09020062 -0.09042422\n", + " -0.05232353 -0.0528708 -0.053321 -0.05367171 -0.05391982 -0.0540624\n", + " -0.016752 -0.01694088 -0.01709901 -0.01722548 -0.01731915 -0.01737894]\n", + " [ 0.95783851 0.96261448 0.96679818 0.97032784 0.97315256 0.9752324\n", + " 0.97653835 0.97705233 0.95783851 0.96276195 0.96710159 0.97079344\n", + " 0.97378441 0.97603235 0.97750603 0.97818516 0.97705233 0.98261483\n", + " 0.98750199 0.99165011 0.99500566 0.99752533 0.99917635 0.99993704\n", + " 0.97818516 0.98361591 0.98835782 0.99234925 0.99553873 0.99788504\n", + " 0.9993576 0.99993704 0.96000729 0.96547149 0.96998338 0.97344474\n", + " 0.97578203 0.97694639 0.96006992 0.96572084 0.97042996 0.97409503\n", + " 0.97663845 0.97800724 0.97955572 0.98592753 0.99122053 0.99533197\n", + " 0.99818215 DEBUG:root:optics_fp: rtanth: [45.10526614 42.15252235 39.46728719 37.10767964 35.13935868 33.63109692\n", + " 32.64672024 32.23425998 45.10526614 42.08371704 39.32015966 36.87264817\n", + " 34.80791464 33.1974573 32.10970154 31.5986741 32.23425998 27.84962696\n", + " 23.46566508 19.08283694 14.70215645 10.32635724 5.96618932 1.74318313\n", + " 31.5986741 27.21812469 22.83983208 18.46540167 14.09842896 9.748941\n", + " 5.45889306 1.74318313 43.77728663 40.33061683 37.34259278 34.93111177\n", + " 33.22196043 32.3267303 43.74864122 40.21129183 37.11812392 34.58850978\n", + " 32.75328451 31.73315358 30.32290674 24.94961031 19.57779834 14.20915457\n", + " 8.84944693 3.53950567 29.68929466 24.32204857 18.9597634 13.60830488\n", + " 8.2886698 3.16557807 45.08405409 45.08405409 1.76362955 1.76362955\n", + " 42.40073703 38.740507 35.51948783 32.86706408 30.92986484 29.84747775\n", + " 38.83207862 34.7984872 31.1727741 28.11319496 25.82178089 24.5148885\n", + " 35.71891532 31.28650338 27.19655174 23.62757526 20.84885967 19.20651814\n", + " 33.18967076 28.36474267 23.77742123 19.59529652 16.13655116 13.95004204\n", + " 31.3858301 26.23117825 21.1868319 16.35517444 11.99601471 8.83853824\n", + " 30.43664187 25.08771711 19.753498 14.45027919 9.23164159 4.4089223 ]\n", + "DEBUG:root:radec2pix: xyfp Shape: (96, 2)\n", + "DEBUG:root:radec2pix: camVec: [[0.20581047 0.20764708 0.20921111 0.21050368 0.21152432 0.2122716\n", + " 0.21274377 0.21293946 0.20581047 0.17940008 0.15228099 0.12456525\n", + " 0.09636347 0.06778617 0.03894463 0.00995116 0.21293946 0.18558556\n", + " 0.15752187 0.12885256 0.09968382 0.07012532 0.04029051 0.01029607\n", + " 0.00995116 0.01003858 0.01011374 0.01017639 0.01022623 0.01026295\n", + " 0.01028629 0.01029607 0.20655553 0.20862193 0.21028039 0.21153069\n", + " 0.21237025 0.212796 0.1943962 0.16153559 0.12772204 0.0931597\n", + " 0.05805212 0.02260459 0.2011068 0.16709142 0.1321133 0.09636698\n", + " 0.06005439 0.02338579 0.01009044 0.01019035 0.01027142 0.0103331\n", + " 0.01037483 0.01039617 0.20572824 0.20572824 0.01039877 0.01039877\n", + " 0.19517474 0.1621771 0.12822694 0.09352723 0.05828102 0.02269376\n", + " 0.19712067 0.1637837 0.12949375 0.09445078 0.05885684 0.0229182\n", + " 0.19868404 0.16507817 0.13051704 0.09519827 0.05932353 0.02310025\n", + " 0.19986372 0.16605732 0.13129265 0.09576573 0.05967819 0.02323871\n", + " 0.20065641 0.16671646 0.13181555 0.09614872 0.05991775 0.0233323\n", + " 0.20105858 0.16705125 0.13208139 0.09634357 0.06003972 0.02338002]\n", + " [0.20196806 0.17549093 0.14832034 0.12056829 0.0923455 0.06376263\n", + " 0.0349311 0.00596325 0.20196806 0.20380697 0.20537849 0.20668384\n", + " 0.20772258 0.20849323 0.20899395 0.20922323 0.00596325 0.00601646\n", + " 0.00606233 0.00610071 0.00613144 0.00615431 0.00616917 0.00617591\n", + " 0.20922323 0.18176716 0.15361557 0.12487279 0.09564544 0.0660437\n", + " 0.03618151 0.00617591 0.19052281 0.15759064 0.12372836 0.08914025\n", + " 0.05403012 0.01860347 0.20271324 0.2047859 0.20645854 0.207731\n", + " 0.20860063 0.20906415 0.00608691 0.00614821 0.00619816 0.00623643\n", + " 0.00626269 0.00627666 0.19734414 0.16321317 0.12814101 0.0923229\n", + " 0.05596168 0.01926848 0.20188558 0.20188558 0.00627861 0.00627861\n", + " 0.19130075 0.19325024 0.19482509 0.19602426 0.19684438 0.19728171\n", + " 0.15822879 0.1598311 0.16112922 0.16212009 0.16279899 0.16316141\n", + " 0.12422708 0.12548158 0.12650047 0.12727979 0.12781451 0.12810021\n", + " 0.08949878 0.09040196 0.09113695 0.09169995 0.09208666 0.09229337\n", + " 0.05424725 0.05479478 0.05524091 0.05558298 0.05581806 0.05594375\n", + " 0.01867818 0.01886665 0.0190203 0.01913813 0.01921909 0.01926233]\n", + " [0.95752334 0.96233343 0.96655667 0.97012962 0.9730004 0.97512825\n", + " 0.97648344 0.9770472 0.95752334 0.96243355 0.96676273 0.97044592\n", + " 0.97342972 0.97567188 0.97714116 0.97781727 0.9770472 0.98260969\n", + " 0.98749689 0.991645 0.99500027 0.99751921 0.99916896 0.99992792\n", + " 0.97781727 0.98329036 0.98807893 0.99212057 0.99536294 0.99776395\n", + " 0.99929229 0.99992792 0.95970614 0.96521608 0.9697801 0.97329789\n", + " 0.97569443 0.97691953 0.95974864 0.96538541 0.97008348 0.97373975\n", + " 0.97627646 0.97764064 0.97955041 0.98592224 0.99121524 0.99532633\n", + " 0.99817546 0.99970681 0.98028234 0.9865382 0.99170277 0.9956755\n", + " 0.99837901 0.99976029 0.95755841 0.95755841 0.99992622 0.99992622\n", + " 0.96193079 0.96765331 0.9724202 0.97612865 0.97870098 0.98008414\n", + " 0.96752627 0.97346234 0.97840112 0.98224036 0.98490221 0.98633316\n", + " 0.97215857 0.97826559 0.98334273 0.98728777 0.99002231 0.99149217\n", + " 0.97572766 0.98196357 0.98714553 0.99117105 0.99396105 0.99546064\n", + " 0.9781586 0.98448116 0.98973385 0.99381384 0.99664146 0.99816126\n", + " 0.97940113 0.98576768 0.99105637 0.99516413 0.99801095 0.99954106]]\n", + "DEBUG:root:optics_fp: rtanth: [45.26169529 42.30243097 39.60873368 37.23827886 35.25632641 33.73142753\n", + " 32.72753223 32.29326616 45.26169529 42.24571523 39.48748363 37.04461879\n", + " 34.98324901 33.37413897 32.28498264 31.76930229 32.29326616 27.90939691\n", + " 23.52648174 19.14517593 14.76691204 10.39553425 6.04599739 1.87684519\n", + " 31.76930229 27.38910685 23.01128618 18.63751379 14.2715122 9.92354331\n", + " 5.63550123 1.87684519 43.93110404 40.47519439 37.47457234 35.04637691\n", + " 33.31DEBUG:root:mm_to_pix: fitpx: [[0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]]\n", + "DEBUG:root:optics_fp: cphi: [-0.71462647 -0.76465055 -0.81663789 -0.86852682 -0.91713533 -0.95822269\n", + " -0.98707045 -0.99965519 -0.71462647 -0.66170459 -0.59665476 -0.51729759\n", + " -0.42196448 -0.31030314 -0.18420747 -0.04836971 -0.99965519 -0.99953644\n", + " -0.99934473 -0.99900557 -0.99831831 -0.99657638 -0.98967281 -0.87090507\n", + " -0.04836971 -0.05610053 -0.06679051 -0.08253363 -0.10799424 -0.15602533\n", + " -0.27837409 -0.87090507 -0.73594733 -0.79879708 -0.86266587 -0.92216881\n", + " -0.96955698 -0.99635146 -0.69307094 -0.62034596 -0.5272064 -0.41033606\n", + " -0.26919173 -0.10843276 -0.99959581 -0.99940041 -0.99902199 -0.99813478\n", + " -0.99516407 -0.96924606 -0.05196415 -0.06335735 -0.0811815 -0.11297393\n", + " -0.18526317 -0.48452029 -0.71462988 -0.71462988 -0.86931637 -0.86931637\n", + " -0.71508845 -0.64388103 -0.55091667 -0.43180852 -0.28504096 -0.11526196\n", + " -0.78075859 -0.71676907 -0.62767848 -0.50476226 -0.34135833 -0.1402609\n", + " -0.84875703 -0.7971706 -0.71938094 -0.60051365 -0.4226937 -0.17893311\n", + " -0.91338303 -0.87922117 -0.82275039 -0.7239943 -0.54602022 -0.24622747\n", + " -0.96582068 -0.95066579 -0.92326613 -0.86731478 -0.73433DEBUG:root:optics_fp: xyfp shape: (96, 2)\n", + "DEBUG:root:radec2pix: camVec Shape: (3, 96)\n", + "DEBUG:root:cartToSphere: vec: [[-0.00114705 0.20838541 0.97804612]\n", + " [-0.00115629 0.18089194 0.9835023 ]\n", + " [-0.0011641 0.15270652 0.9882709 ]\n", + " [-0.00117048 0.12393558 0.99228958]\n", + " [-0.00117539 0.09468513 0.99550658]\n", + " [-0.00117881 0.06506336 0.99788044]\n", + " [-0.00118068 0.03518275 0.9993802 ]\n", + " [-0.00118097 0.0051606 0.99998599]\n", + " [-0.00114705 0.20838541 0.97804612]\n", + " [-0.03018244 0.20823844 0.97761228]\n", + " [-0.05910007 0.20782077 0.9763799 ]\n", + " [-0.08778716 0.20713345 0.97436602]\n", + " [-0.11613176 0.20617803 0.9715987 ]\n", + " [-0.14402308 0.20495645 0.96811684]\n", + " [-0.17135219 0.20347155 0.96396979]\n", + " [-0.19801388 0.2017284 0.95921643]\n", + " [-0.00118097 0.0051606 0.99998599]\n", + " [-0.03121228 0.00515607 0.99949948]\n", + " [-0.06111791 0.00514464 0.99811729]\n", + " [-0.09077999 0.00512646 0.99585778]\n", + " [-0.12008538 0.00510175 0.99275046]\n", + " [-0.14892541 0.0050707 0.98883543]\n", + " [-0.17719395 0.00503345 60059 32.39547369 43.90748877 40.37685013 37.28961296 34.76410785\n", + " 32.92983309 31.90622779 30.38230115 25.01013154 19.64005824 14.27444739\n", + " 8.9213542 3.63648527 29.86008841 24.49335294 19.13182032 13.78156419\n", + " 8.46399587 3.33911555 45.24048285 45.24048285 1.89760875 1.89760875\n", + " 42.55711672 38.90412112 35.68971629 33.042152 31.10650288 30.02079255\n", + " 38.97957981 34.95468636 31.33776168 28.28574318 25.99834571 24.68901465\n", + " 35.85400749 31.43139051 27.35246822 23.7946523 21.02418109 19.38168349\n", + " 33.30787918 28.49275823 23.91782767 19.75070735 16.30708904 14.12638019\n", + " 31.48209857 26.3352423 21.30188242 16.48630206 12.15026205 9.01456223\n", + " 30.50627799 25.16059326 19.83130509 14.53645837 9.33484517 4.55771859]\n", + "+03]\n", + " [ 2.00250000e+03 2.04650000e+03]\n", + " [-4.35000003e+01 1.27000000e+02]\n", + " [-4.35000001e+01 4.85400000e+02]\n", + " [-4.35000003e+01 8.43800000e+02]\n", + " [-4.34999997e+01 1.20220000e+03]\n", + " [-4.34999997e+01 1.56060000e+03]\n", + " [-4.35000002e+01 1.91900000e+03]\n", + " [ 8.29999999e+01 4.99999945e-01]\n", + " [ 4.41400000e+02 4.99999942e-01]\n", + " [ 7.99800000e+02 5.00000147e-01]\n", + " [ 1.15820000e+03 4.99999799e-01]\n", + " [ 1.51660000e+03 5.00000078e-01]\n", + " [ 1.87500000e+03 4.99999710e-01]\n", + " [ 8.30000000e+01 2.04550000e+03]\n", + " [ 4.41400000e+02 2.04550000e+03]\n", + " [ 7.99800000e+02 2.04550000e+03]\n", + " [ 1.15820000e+03 2.04550000e+03]\n", + " [ 1.51660000e+03 2.04550000e+03]\n", + " [ 1.87500000e+03 2.04550000e+03]\n", + " [ 2.00150000e+03 1.27000000e+02]\n", + " [ 2.00150000e+03 4.85400000e+02]\n", + " [ 2.00150000e+03 8.43800000e+02]\n", + " [ 2.00150000e+03 1.20220000e+03]\n", + " [ 2.00150000e+03 1.56060000e+03]\n", + " [ 2.00150000e+03 1.91900000e+03]\n", + " [-4.34999998e+01 5.00000241e-01]\n", + " [-4.34999998e+01 5.00000241e-01]\n", + " [ 2.00150000e+03 2.04550000e+03]\n", + " [ 2.00150000e+03 2.04550000e+03]\n", + " [ 8.30000001e+01 1.27000000e+02]\n", + " [ 4.41400000e+02 1.27000000e+02]\n", + " [ 7.99800000e+02 1.27000000e+02]\n", + " [ 1.15820000e+03 1.27000000e+02]\n", + " [ 1.51660000e+03 1.27000000e+02]\n", + " [ 1.87500000e+03 1.27000000e+02]\n", + " [ 8.30000000e+01 4.85400000e+02]\n", + " [ 4.41400428 -0.38842227\n", + " -0.99588139 -0.99392405 -0.99016821 -0.98152333 -0.95403253 -0.77825973]\n", + "DEBUG:root:optics_fp: rtanth: [44.94272969 42.00239064 39.33235561 36.99120283 35.04490673 33.56223174\n", + " 32.60648436 32.22458311 44.94272969 41.90992612 39.13459306 36.67522804\n", + " 34.59927513 32.97921831 31.88462562 31.37054947 32.22458311 27.83912196\n", + " 23.45402264 19.06953475 14.68620592 10.30551524 5.93330899 1.63895634\n", + " 31.37054947 26.99005818 22.61186898 18.23763988 13.87111779 9.5229103\n", + " 5.23882082 1.63895634 43.61980801 40.19015843 37.22381993 34.83933779\n", + " 33.16246218 32.30357703 43.58131788 40.02977818 36.92204987 34.37870189\n", + " 32.5323727 31.50584319 30.31278547 24.93826049 19.56454604 14.19256282\n", + " 8.82547273 3.48595044 29.4611953 24.09404931 18.73198196 13.38109994\n", + " 8.0637011 2.9657153 44.92151855 44.92151855 1.65858428 1.65858428\n", + " 42.23832489 38.56329813 35.32679703 32.65945447 30.7099348 29.62031359\n", + " 38.68639649 34.63652908 30.99264061 27.91417471 25.60588368 24.28835443\n", + " 35.5000e+02 4.85400000e+02]\n", + " [ 7.99800000e+02 4.85400000e+02]\n", + " [ 1.15820000e+03 4.85400000e+02]\n", + " [ 1.51660000e+03 4.85400000e+02]\n", + " [ 1.87500000e+03 4.85400000e+02]\n", + " [ 8.30000001e+01 8.43800000e+02]\n", + " [ 4.41400000e+02 8.43800000e+02]\n", + " [ 7.99800000e+02 8.43800000e+02]\n", + " [ 1.15820000e+03 8.43800000e+02]\n", + " [ 1.51660000e+03 8.43800000e+02]\n", + " [ 1.87500000e+03 8.43800000e+02]\n", + " [ 8.30000001e+01 1.20220000e+03]\n", + " [ 4.41400000e+02 1.20220000e+03]\n", + " [ 7.99800000e+02 1.20220000e+03]\n", + " [ 1.15820000e+03 1.20220000e+03]\n", + " [ 1.51660000e+03 1.20220000e+03]\n", + " [ 1.87500000e+03 1.20220000e+03]\n", + " [ 8.30000002e+01 1.56060000e+03]\n", + " [ 4.41400000e+02 1.56060000e+03]\n", + " [ 7.99800000e+02 1.56060000e+03]\n", + " [ 1.15820000e+03 1.56060000e+03]\n", + " [ 1.51660000e+03 1.56060000e+03]\n", + " [ 1.87500000e+03 1.56060000e+03]\n", + " [ 8.29999999e+01 1.91900000e+03]\n", + " [ 4.41400000e+02 1.91900000e+03]\n", + " [ 7.99800000e+02 1.91900000e+03]\n", + " [ 1.15820000e+03 1.91900000e+03]\n", + " [ 1.51660000e+03 1.91900000e+03]\n", + " [ 1.87500000e+03 1.91900000eDEBUG:root:mm_to_pix: fitpx.shape: (96, 2)\n", + "DEBUG:root:cartToSphere: vec: [[-0.20629584 -0.20078674 0.95766733]\n", + " [-0.20812128 -0.17428103 0.96245086]\n", + " [-0.20967356 -0.14708674 0.96664496]\n", + " [-0.21095376 -0.11931584 0.9701867 ]\n", + " [-0.21196139 -0.09107902 0.97302465]\n", + " [-0.21269501 -0.06248699 0.97511856]\n", + " [-0.2131529 -0.03365118 0.97643916]\n", + " [-0.21333373 -0.00468399 0.97696816]\n", + " [-0.20629584 -0.20078674 0.95766733]\n", + " [-0.1798852 -0.20262142 0.96259331]\n", + " [-0.15276427 -0.20419049 0.96693812]\n", + " [-0.12504507 -0.20549514 0.97063664]\n", + " [-0.09683814 -0.20653488 0.97363531]\n", + " [-0.06825398 -0.20730818 0.97589175]\n", + " [-0.03940385 -0.20781318 0.97737455]\n", + " [-0.01040007 -0.2080483 0.97806326]\n", + " [-0.21333373 -0.00468399 0.97696816]\n", + " [-0.18599064 -0.00472909 0.98254014]\n", + " [-0.15793623 -0.00476846 0.9874378 ]\n", + " [-0.12927467 -0.004802 0.9915972 ]\n", + " [-0.10011211 -0.00482954 0.99496444]\n", + " [-0.07055816 -0.00485094 0.99749587]\n", + " [-0.04072622 -0.00486604 0.99915849]\n", + " [-0.01073294 -0.00487474 0.99993052]\n", + " [-0.01040007 -0.2080483 0.97806326]\n", + " [-0.01048759 -0.18056016 0.98350803]\n", + " [-0.01056224 -0.15238099 0.98826539]\n", + " [-0.01062379 -0.12361519 0.99227336]\n", + " [-0.01067191 -0.09436952 0.99548004]\n", + " [-0.0107063 -0.06475431 0.9978438 ]\n", + " [-0.0107267 -0.03488367 0.99933381]\n", + " [-0.01073294 -0.00487474 0.99993052]\n", + " [-0.20703611 -0.1893284 0.95983895]\n", + " [-0.20908844 -0.1563645 0.96531454]\n", + " [-0.21073192 -0.12247778 0.96984084]\n", + " [-0.21196628 -0.08787247 0.97331841]\n", + " [-0.21278893 -0.05275245 0.97567313]\n", + " [-0.21319686 -0.01732329 0.97685567]\n", + " [-0.19488162 -0.20152974 0.95989943]\n", + " [-0.16201965 -0.20359843 0.96555544]\n", + " [-0.12820231 -0.20526972 0.97027239]\n", + " [-0.09363367 -0.2065434 0.9739469 ]\n", + " [-0.05851721 -0.20741673 0.97650091]\n", + " [-0.02305821 -0.20788637 0.97788117]\n", + " [-0.20150602 -0.0048039 0.9794755 ]\n", + " [-0.16750285 -0.00485635 0.98585963]\n", + " [-0.13253465 -0.0048999 0.99116626]\n", + " [-0.0967959 -0.00493429 0.99529202]\n", + " [-0.06048842 -0.00495921 0.99815658]\n", + " [-0.02382238 -0.00497442 0.99970383]\n", + " [-0.0105395 -0.19615466 0.98051633]\n", + " [-0.01063912 -0.1619874 0.98673547]\n", + " [-0.01071899 -0.12688576 0.99185942]\n", + " [-0.01077856 -0.09104519 0.99578843]\n", + " [-0.01081726 -0.05466885 0.99844594]\n", + " [-0.01083465 -0.01796812 0.99977985]\n", + " [-0.20621357 -0.20070413 0.95770236]\n", + " [-0.20621357 -0.20070413 0.95770236]\n", + " [-0.01083565 -0.00497744 0.9999289 ]\n", + " [-0.01083565 -0.00497744 0.9999289 ]\n", + " [-0.19565571 -0.19010422 0.96207028]\n", + " [-0.16265759 -0.19204948 0.96781171]\n", + " [-0.12870452 -0.19362274 0.97259724]\n", + " [-0.09399937 -0.19482286 0.9763238 ]\n", + " [-0.05874512 -0.19564642 0.97891342]\n", + " [-0.0231472 -0.1960896 0.98031274]\n", + " [-0.19758845 -0.15700026 0.96763099]\n", + " [-0.16425347 -0.15859759 0.97358492]\n", + " [-0.12996305 -0.1598933 0.97854164]\n", + " [-0.09491705 -0.16088429 0.98239859]\n", + " [-0.05931746 -0.1615658 0.98507763]\n", + " [-0.02337052 -0.16193328 0.98652493]\n", + " [-0.19913769 -0.12297381 0.97222509]\n", + " [-0.16553623 -0.12422245 0.97834888]\n", + " [-0.13097704 -0.12523802 0.98344316]\n", + " [-0.09565767 -0.12601654 0.98740541]\n", + " [-0.05977969 -0.12655298 0.99015692]\n", + " [-0.02355053 -0.12684288 0.99164321]\n", + " [-0.20030226 -0.088228 0.97575346]\n", + " [-0.16650264 -0.0891244 0.98200495]\n", + " [-0.13174231 -0.0898551 0.98720313]\n", + " [-0.09621721 -0.09041635 0.99124524]\n", + " [-0.0601289 -0.09080384 0.9940519 ]\n", + " [-0.023686 -0.09101389 0.9955679 ]\n", + " [-0.20107886 -0.05296627 0.97814205]\n", + " [-0.16714801 -0.0535061 0.98447887]\n", + " [-0.13225382 -0.05394701 0.98974676]\n", + " [-0.09659125 -0.05428637 0.9938426 ]\n", + " [-0.06036201 -0.05452132 0.99668644]\n", + " [-0.02377567 -0.05464944 0.9982225 ]\n", + " [-0.201464 -0.01739439 0.97934146]\n", + " [-0.16746808 -0.0175743 0.98572085]\n", + " [-0.13250731 -0.01772184 0.99102359]\n", + " [-0.0967762 -0.01783608 0.99514634]\n", + " [-0.06047657 -0.01791601 0.99800882]\n", + " [-0.02381854 -0.0179608 0.99955494]]\n", + "0.99971531 0.98063234 0.98683331 0.99193725 0.99584519\n", + " 0.9984813 0.99979391 0.95787352 0.95787352 0.99993552 0.99993552\n", + " 0.9622374 0.96797276 0.97274994 0.9764667 0.98416308]\n", + " [-0.20478471 0.00499006 0.97879432]\n", + " [-0.19801388 0.2017284 0.95921643]\n", + " [-0.19975823 0.17512925 0.96406763]\n", + " [-0.20124936 0.14784829 0.96831791]\n", + " [-0.20248221 0.11999042 0.97190702]\n", + " [-0.20345393 0.09166442 0.97478415]\n", + " [-0.20416257 0.06298098 0.97690892]\n", + " [-0.20460656 0.03405194 0.97825182]\n", + " [-0.20478471 0.00499006 0.97879432]\n", + " [-0.00125101 0.19649007 0.98050502]\n", + " [-0.00126235 0.1623152 0.98673815]\n", + " [-0.00127136 0.12720686 0.99187539]\n", + " [-0.00127799 0.09136033 0.99581708]\n", + " [-0.00128216 0.05497503 0.99848691]\n", + " [-0.00128379 0.01826009 0.99983245]\n", + " [-0.01381426 0.20826196 0.97797552]\n", + " [-0.04933618 0.20789982 0.97690512]\n", + " [-0.08456905 0.20713224 0.97465087]\n", + " [-0.11930642 0.20596186 0.97125985]\n", + " [-0.15334441 0.20439232 0.96680364]\n", + " [-0.18648385 0.20242966 0.96137714]\n", + " [-0.01428247 0.00526224 0.99988415]\n", + " [-0.05101935 0.00525184 0.99868386]\n", + " [-0.08744986 0.00523103 0.99615519]\n", + " [-0.12336368 0.00520016 0.9923479 ]\n", + " [-0.15856056 0.00515961 0.98733577]\n", + " [-0.19284509 0.0051096 0.98121591]\n", + " [-0.1987148 0.19022738 0.96141873]\n", + " [-0.20068229 0.157155 0.96696894]\n", + " [-0.20226422 0.12316211 0.9715556 ]\n", + " [-0.20345456 0.08844755 0.97508116]\n", + " [-0.20424964 0.05321501 0.97747135]\n", + " [-0.20464672 0.01767079 0.97867638]\n", + " [-0.00124645 0.20829266 0.97806575]\n", + " [-0.00124645 0.20829266 0.97806575]\n", + " [-0.20469148 0.0050897 0.97881331]\n", + " [-0.20469148 0.0050897 0.97881331]\n", + " [-0.01386808 0.19646111 0.98041354]\n", + " [-0.04952932 0.19611969 0.9793283 ]\n", + " [-0.08490071 0.19539637 0.97704254]\n", + " [-0.11977552 0.19429398 0.97360345]\n", + " [-0.15394951 0.1928159 0.96908285]\n", + " [-0.18722234 0.19096695 0.96357637]\n", + " [-0.01400325 0.16229116 0.98664355]\n", + " [-0.05001432 0.16200846 0.98552109]\n", + " [-0.08573269 0.16141067 0.9831564 ]\n", + " [-0.12095098 0.16050163 0.9795969 ]\n", + " [-0.15546507 0.15928501 0.97491482]\n", + " [-0.18907339 0.15776388 0.9692068 ]\n", + " [-0.01411268 0.1271878 0.99177825]\n", + " [-0.05040698 0.12696445 0.99062564 0.97904541 0.98043302\n", + " 0.96778572 0.97373181 0.978679 0.98252511 0.98519233 0.98662722\n", + " 0.97236485 0.97847957 0.98356321 0.98751357 0.9902524 0.99172566\n", + " 0.9758766 0.9821179 0.98730436 0.99133364 0.9941269 0.9956294\n", + " 0.9782474 0.98457302 0.98982824 0.99391049 0.99674043 0.99826267\n", + " 0.97942831 0.98579563 0.99108495 0.99519355 0.99804176 0.99957386]]\n", + "DEBUG:root:optics_fp: sphi: [-0.69950626 -0.64444513 -0.57715037 -0.49564218 -0.39857594 -0.28602322\n", + " -0.16028704 -0.02625833 -0.69950626 -0.74976466 -0.80249804 -0.85580559\n", + " -0.90661236 -0.95063766 -0.98288738 -0.9988295 -0.02625833 -0.03044512\n", + " -0.03619555 -0.04458562 -0.05797023 -0.08267725 -0.1433448 -0.49145128\n", + " -0.9988295 -0.99842512 -0.99776702 -0.99658828 -0.99415152 -0.98775305\n", + " -0.96047273 -0.49145128 -0.67703879 -0.60160056 -0.50577425 -0.38678764\n", + " -0.24486582 -0.08534494 -0.72086938 -0.78432831 -0.84973726 -0.91193438\n", + " -0.96308661 -0.99410379 -0.02842926 -0.03462403 -0.04421613 -0.0+03]]\n", + "9496044 31.14567519 27.03530484 23.44280455 20.64037826 18.98125646\n", + " 33.09332103 28.25278341 23.64475409 19.43532283 15.94339684 13.72788346\n", + " 31.32311186 26.15701072 21.09606209 16.23887967 11.83897557 8.62694755\n", + " 30.41232527 25.05915804 19.71841847 14.40393713 9.16152467 4.26572571]\n", + "6104888\n", + " -0.09822663 -0.24609363 -0.99864895 -0.99799091 -0.99669933 -0.99359795\n", + " -0.98268894 -0.87478002 -0.69950278 -0.69950278 -0.49425605 -0.49425605\n", + " -0.69903398 -0.76512562 -0.83456026 -0.9019653 -0.95851534 -0.99333513\n", + " -0.6248328 -0.69731062 -0.77847269 -0.8632584 -0.93993324 -0.99011458\n", + " -0.52878304 -0.60375411 -0.69461576 -0.79961451 -0.90627261 -0.98386124\n", + " -0.40710127 -0.47641382 -0.56840284 -0.68980596 -0.837772 -0.96921207\n", + " -0.25921116 -0.31021694 -0.38416098 -0.49776006 -0.67878801 -0.92148149\n", + " -0.09066564 -0.11006805 -0.13988178 -0.19134252 -0.29970307 -0.6279425 ]\n", + "]\n", + " [-0.08640482 0.12649338 0.98819716]\n", + " [-0.12189811 0.12577923 0.98454072]\n", + " [-0.15668376 0.12482642 0.97972882]\n", + " [-0.19056116 0.12363768 0.97385839]\n", + " [-0.01419584 0.0913464 0.99571799]\n", + " [-0.05070556 0.09118412 0.99454231]\n", + " [-0.08691471 0.09084281 0.99206523]\n", + " [-0.12261435 0.0903271 0.98833534]\n", + " [-0.15760261 0.0896414 0.98342556]\n", + " [-0.19168088 0.08878838 0.97743289]\n", + " [-0.01425179 0.05496643 0.99838649]\n", + " [-0.05090701 0.05486748 0.99719508]\n", + " [-0.08725814 0.05466012 0.99468502]\n", + " [-0.12309542 0.05434775 0.99090557]\n", + " [-0.15821798 0.0539337 0.98593013]\n", + " [-0.19242913 0.05341999 0.97985577]\n", + " [-0.01427955 0.01825699 0.99973135]\n", + " [-0.05100809 0.0182233 0.99853197]\n", + " [-0.08743051 0.01815347 0.9960052 ]\n", + " [-0.12333654 0.01804874 0.99220076]\n", + " [-0.15852587 0.01791034 0.98719237]\n", + " [-0.19280295 0.01773905 0.98107714]]\n", + "DEBUG:root:optics_fp: cphi: [0.71341716 0.76328013 0.81514194 0.86698087 0.91566575 0.95700502\n", + " 0.98630354 0.99950918 0.71341716 0.66051768 0.59557134 0.51643629\n", + " 0.4214805 0.31036993 0.18497457 0.04990581 0.99950918 0.99934039\n", + " 0.99906819 0.99858739 0.99761569 0.9951653 0.98558541 0.8377988\n", + " 0.04990581 0.05781889 0.0687377 0.08476872 0.11057085 0.15882919\n", + " 0.27935111 0.8377988 0.73466528 0.79733703 0.86111952 0.92071715\n", + " 0.96846887 0.9959178 0.69186293 0.61921532 0.52631184 0.40990453\n", + " 0.26948104 0.10963271 0.999428 0.999152 0.99861839 0.99737128\n", + " 0.99322638 0.95832228 0.05357183 0.06521663 0.08337359 0.1155749\n", + " 0.18791565 0.47564444 0.71341996 0.71341996 0.83653968 0.83653968\n", + " 0.71379735 0.6426352 0.54988271 0.43124184 0.28525093 0.11649124\n", + " 0.77925087 0.71517941 0.62617339 0.50367681 0.34120915 0.14155583\n", + " 0.8471183 0.79527459 0.71732418 0.59864658 0.42182798 0.18020046\n", + " 0.91180529 0.87721591 0.82023759 0.72110338 0.54370846 0.24707693\n", + " 0.96461215 0.94899507 0.92085832 0.86374835 0.72953296 0.3869314\n", + " 0.99539279 0.99320908 0.98902871 0.97944976 0.94931741 0.76479745]\n", + "DEBUG:root:radec2pix: camVec Shape: (3, 96)\n", + "DEBUG:root:radec2pix: lng: [224.22465666 219.9428498 215.04979529 209.49258103 203.25301711\n", + " 196.37209253 188.97143587 181.25779309 224.22465666 228.40166279\n", + " 233.19815281 238.6792283 244.87949815 251.77642798 259.26349599\n", + " 267.13824006 181.25779309 181.45651552 181.7293675 182.12731457\n", + " 182.76188514 183.93294711 186.8134933 204.42682228 267.13824006\n", + " 266.67578867 266.03490179 265.0879329 263.54803827 260.61180811\n", + " 252.90738353 204.42682228 222.44199402 216.7905754 210.16523251\n", + " 202.51687812 193.92347078 184.64535837 225.96080389 231.48791131\n", + " 238.01293878 245.61347707 254.24497485 263.67077373 181.36567301\n", + " 181.66068982 182.11730117 182.91819426 184.68697431 191.79462375\n", + " 266.92442169 266.24228499 265.17126169 263.2483557 258.80752919\n", + " 238.9103071 224.22429417 224.22429417 204.67204832 204.67204832\n", + " 224.17550953 229.73684595 236.38729877 244.24332674 253.28700279\n", + " 263.26773103 218.4700285 223.99636381 230.89540499 239.46063162\n", + " 249.83973486 261.78766678 211.69663969 216.8854629 223.71683254\n", + " 232.7982941 244.71540545 259.48183646 203.77225927 208.15895021\n", + " 214.29602039 223.21973304 236.48809111 255.41258234 194.75709541\n", + " 197.7504966 202.19079752 209.33692857 222.08957905 246.48817507\n", + " 184.93467768 185.99075879 187.61766642 190.44256036 196.50176943\n", + " 217.01878407]\n", + "DEBUG:root:make_az_asym: xyp: [[32.275486 31.41357429]\n", + " [32.27502267 27.02714574]\n", + " [32.27455935 22.64071719]\n", + " [32.27409601 18.25428864]\n", + " [32.27363269 13.8678601 ]\n", + " [32.27316936 9.48143155]\n", + " [32.27270604 5.095003 ]\n", + " [32.27224271 0.70857446]\n", + " [32.275486 31.41357429]\n", + " [27.88905745 31.41403761]\n", + " [23.5026289 31.41450094]\n", + " [19.11620036 31.41496427]\n", + " [14.72977181 31.41542759]\n", + " [10.34334326 31.41589092]\n", + " [ 5.95691471 31.41635424]\n", + " [ 1.57048617 31.41681757]\n", + " [32.27224271 0.70857446]\n", + " [27.88581416 0.70903778]\n", + " [23.49938562 0.70950111]\n", + " [19.11295707 0.70996444]\n", + " [14.72652852 0.71042776]\n", + " [10.34009998 0.71089109]\n", + " [ 5.95367142 0.71135442]\n", + " [ 1.56724288 0.71181774]\n", + " [ 1.57048617 31.41681757]\n", + " [ 1.57002284 27.03038902]\n", + " [ 1.56955951 22.64396047]\n", + " [ 1.56909619 18.25753194]\n", + " [ 1.56863286 13.87110338]\n", + " [ 1.56816953 9.48467484]\n", + " [ 1.56770621 5.09824629]\n", + " [ 1.56724288 0.71181774]\n", + " [32.26028399 29.50107588]\n", + " [32.25971613 24.12507591]\n", + " [32.25914828 18.74907594]\n", + " [32.25858043 13.37307597]\n", + " [32.25801258 7.997076 ]\n", + " [32.25744472 2.62107603]\n", + " [30.36298443 31.3987763 ]\n", + " [24.98698446 31.39934415]\n", + " [19.61098448 31.399912 ]\n", + " [14.23498451 31.40047985]\n", + " [ 8.85898454 31.40104771]\n", + " [ 3.48298457 31.40161556]\n", + " [30.35974431 0.72377647]\n", + " [24.98374433 0.72434432]\n", + " [19.60774436 0.72491217]\n", + " [14.23174439 0.72548003]\n", + " [ 8.85574442 0.72604788]\n", + " [ 3.47974445 0.72661573]\n", + " [ 1.58528416 29.504316 ]\n", + " [ 1.5847163 24.12831603]\n", + " [ 1.58414845 18.75231606]\n", + " [ 1.5835806 13.37631609]\n", + " [ 1.58301275 8.00031612]\n", + " [ 1.5824449 2.62431615]\n", + " [32.26048441 31.39857587]\n", + " [32.26048441 31.39857587]\n", + " [ 1.58224447 0.72681616]\n", + " [ 1.58224447 0.72681616]\n", + " [30.36278399 29.50127631]\n", + " [24.98678403 29.50184416]\n", + " [19.61078405 29.50241201]\n", + " [14.23478409 29.50297987]\n", + " [ 8.85878411 29.50354772]\n", + " [ 3.48278414 29.50411557]\n", + " [30.36221615 24.12527634]\n", + " [24.98621618 24.12584419]\n", + " [19.6102162 24.12641204]\n", + " [14.23421623 24.1269799 ]\n", + " [ 8.85821626 24.12754775]\n", + " [ 3.48221629 24.1281156 ]\n", + " [30.36164829 18.74927637]\n", + " [24.98564832 18.74984422]\n", + " [19.60964835 18.75041208]\n", + " [14.23364838 18.75097993]\n", + " [ 8.85764841 18.75154778]\n", + " [ 3.48164844 18.75211563]\n", + " [30.36108043 13.3732764 ]\n", + " [24.98508046 13.37384425]\n", + " [19.60908049 13.3744121 ]\n", + " [14.23308053 13.37497996]\n", + " [ 8.85708056 13.37554781]\n", + " [ 3.48108059 13.37611567]\n", + " [30.36051258 7.99727643]\n", + " [24.98451261 7.99784428]\n", + " [19.60851265 7.99841214]\n", + " [14.23251268 7.99897999]\n", + " [ 8.85651271 7.99954784]\n", + " [ 3.48051273 8.00011569]\n", + " [30.35994473 2.62127646]\n", + " [24.98394476 2.62184431]\n", + " [19.60794479 2.62241216]\n", + " [14.23194482 2.62298002]\n", + " [ 8.85594485 2.62354787]\n", + " [ 3.47994488 2.62411572]]\n", + "DEBUG:root:radec2pix: lng: [ 90.31538026 90.36623882 90.43676438 90.5410988 90.71121584\n", + " 91.03796151 91.92203204 102.88976492 90.31538026 98.24711833\n", + " 105.87469321 112.96816895 119.3DEBUG:root:cartToSphere: vec: [[0.20581047 0.20196806 0.95752334]\n", + " [0.20764708 0.17549093 0.96233343]\n", + " [0.20921111 0.14832034 0.96655667]\n", + " [0.21050368 0.12056829 0.97012962]\n", + " [0.21152432 0.0923455 0.9730004 ]\n", + " [0.2122716 0.06376263 0.97512825]\n", + " [0.21274377 0.0349311 0.97648344]\n", + " [0.21293946 0.00596325 0.9770472 ]\n", + " [0.20581047 0.20196806 0.95752334]\n", + " [0.17940008 0.20380697 0.96243355]\n", + " [0.15228099 0.20537849 0.96676273]\n", + " [0.12456525 0.20668384 0.97044592]\n", + " [0.09636347 0.20772258 0.97342972]\n", + " [0.06778617 0.20849323 0.97567188]\n", + " [0.03894463 0.20899395 0.97714116]\n", + " [0.00995116 0.20922323 0.97781727]\n", + " [0.21293946 0.00596325 0.9770472 ]\n", + " [0.18558556 0.00601646 0.98260969]\n", + " [0.15752187 0.00606233 0.98749689]\n", + " [0.12885256 0.00610071 0.991645 ]\n", + " [0.09968382 0.00613144 0.99500027]\n", + " [0.07012532 0.00615431 0.99751921]\n", + " [0.04029051 0.00616917 0.99916896]\n", + " [0.01029607 0.00617591 0.99992792]\n", + " [0.00995116 0.20922323 0.97781727]\n", + " [0.01003858 0.18176716 0.98329036]\n", + " [0.01011374 0.15361557 0.98807893DEBUG:root:optics_fp: sphi: [0.70073958 0.64606768 0.57926126 0.49834142 0.40194059 0.29007134\n", + " 0.1649404 0.0313274 0.70073958 0.75081049 0.80330242 0.85632562\n", + " 0.90683747 0.95061586 0.98274331 0.99875393 0.0313274 0.03631497\n", + " 0.04315962 0.05313395 0.069014 0.09821415 0.1691786 0.5459791\n", + " 0.99875393 0.99832709 0.99763477 0.99640065 0.99386824 0.98730608\n", + " 0.96018902 0.5459791 0.67842975 0.60353431 0.50840257 0.39023062\n", + " 0.2491346 0.09026478 0.72202887 0.78522123 0.85029163 0.91212843\n", + " 0.9630057 0.99397217 0.03381828 0.04117383 0.05254813 0.07246053\n", + " 0.11619532 0.28568936 0.998564 0.99787113 0.99651836 0.99329877\n", + " 0.98218517 0.87963764 0.70073672 0.70073672 0.54790634 0.54790634\n", + " 0.7003523 0.76617231 0.83524188 0.90223637 0.95845287 0.99319172\n", + " 0.62671212 0.69894092 0.77968384 0.86389216 0.9399874 0.98993027\n", + " 0.53140435 0.60624939 0.69673956 0.80101328 0.90667588 0.98362991\n", + " 0.41062285 0.48009609 0.57202299 0.69282748 0.83927416 0.96899587\n", + " 0.26367291 0.3152909 0.38989736 0DEBUG:root:optics_fp: cphi: [-0.7172644 -0.76741791 -0.81945139 -0.87124824 -0.91956549 -0.96011654\n", + " -0.98818444 -0.99982014 -0.7172644 -0.66450587 -0.59954537 -0.52014772\n", + " -0.4245785 -0.31242949 -0.18558325 -0.04879815 -0.99982014 -0.99975708\n", + " -0.99965502 -0.99947397 -0.99910595 -0.99816919 -0.99442317 -0.92363168\n", + " -0.04879815 -0.05662794 -0.06748483 -0.0835374 -0.10965891 -0.1594742\n", + " -0.28942109 -0.92363168 -0.73864972 -0.80160861 -0.86540808 -0.92455295\n", + " -0.97121348 -0.99694372 -0.69578694 -0.62321886 -0.53007115 -0.41291013\n", + " -0.27109351 -0.10929135 -0.99978591 -0.99968066 -0.99947617 -0.99899494\n", + " -0.99737425 -0.98288834 -0.05243384 -0.06399014 -0.08214824 -0.11477511\n", + " -0.19009076 -0.51584618 -0.71726898 -0.71726898 -0.92175016 -0.92175016\n", + " -0.71788499 -0.64689125 -0.55397779 -0.43461417 -0.2871469 -0.11621293\n", + " -0.78371934 -0.72014369 -0.63135242 -0.50838973 -0.34426777 -0.14160207\n", + " -0.85170189 -0.80076273 -0.72365733 -0.60523038 -0.42694461 -0.18103644\n", + " -0.91599489 -0.8826498 .5039234 0.68394565 0.92210851\n", + " 0.09588115 0.11634315 0.14772342 0.20168832 0.31431902 0.6442708 ]\n", + "DEBUG:root:radec2pix: xyfp: [[ -0.167405 31.491388 ]\n", + " [ -0.167405 27.10495943]\n", + " [ -0.167405 22.71853086]\n", + " [ -0.167405 18.33210229]\n", + " [ -0.167405 13.94567372]\n", + " [ -0.167405 9.55924515]\n", + " [ -0.167405 5.17281657]\n", + " [ -0.167405 0.786388 ]\n", + " [ -0.167405 31.491388 ]\n", + " [ -4.55383357 31.491388 ]\n", + " [ -8.94026214 31.491388 ]\n", + " [-13.32669071 31.491388 ]\n", + " [-17.71311928 31.491388 ]\n", + " [-22.09954786 31.491388 ]\n", + " [-26.48597643 31.491388 ]\n", + " [-30.872405 31.491388 ]\n", + " [ -0.167405 0.786388 ]\n", + " [ -4.55383357 0.786388 ]\n", + " [ -8.94026214 0.786388 ]\n", + " [-13.32669071 0.786388 ]\n", + " [-17.71311929 0.786388 ]\n", + " [-22.09954786 0.786388 ]\n", + " [-26.48597643 0.786388 ]\n", + " [-30.872405 0.786388 ]\n", + " [-30.872405 31.491388 ]\n", + " [-30.872405 27.10495943]\n", + " [-30.872405 22.71853086]\n", + " [-30.872405 18.33210229]\n", + " [-30.872405 13.94567371]\n", + " [-30.872405 9.55924514]\n", + " [DEBUG:root:optics_fp: xyfp: [[32.23341696 31.55141621]\n", + " [32.23194958 27.16498788]\n", + " [32.2304822 22.77855956]\n", + " [32.22901483 18.39213124]\n", + " [32.22754745 14.00570291]\n", + " [32.22608007 9.61927458]\n", + " [32.22461269 5.23284626]\n", + " [32.2231453 0.84641793]\n", + " [32.23341696 31.55141621]\n", + " [27.84698864 31.5528836 ]\n", + " [23.46056031 31.55435097]\n", + " [19.07413198 31.55581835]\n", + " [14.68770366 31.55728573]\n", + " [10.30127533 31.55875311]\n", + " [ 5.91484701 31.56022049]\n", + " [ 1.52841868 31.56168787]\n", + " [32.2231453 0.84641793]\n", + " [27.83671698 0.84788531]\n", + " [23.45028865 0.84935269]\n", + " [19.06386033 0.85082007]\n", + " [14.677432 0.85228745]\n", + " [10.29100367 0.85375483]\n", + " [ 5.90457535 0.85522221]\n", + " [ 1.51814702 0.85668959]\n", + " [ 1.52841868 31.56168787]\n", + " [ 1.5269513 27.17525955]\n", + " [ 1.52548392 22.78883122]\n", + " [ 1.52401654 18.4024029 ]\n", + " [ 1.52254916 14.01597457]\n", + " [ 1.52108178 9.62954624]\n", + " [ 1.5196144 5.24311792]\n", + " [ 1.51814702 0.85668959]\n", + " [32.21777718 29.63892134]\n", + " [32.21597876 24.26292164]\n", + " [32.21418034 18.88692194]\n", + " [32.21238193 13.51092224]\n", + " [32.21058351 8.13492254]\n", + " [32.20878509 2.75892284]\n", + " [30.32091205 31.53705599]\n", + " [24.94491236 31.53885442]\n", + " [19.56891265 31.54065283]\n", + " [14.19291295 31.54245125]\n", + " [ 8.81691325 31.54424967]\n", + " [ 3.44091356 31.54604808]\n", + " [30.31065043 0.86205771]\n", + " [24.93465073 0.86385613]\n", + " [19.55865103 0.86565455]\n", + " [14.18265134 0.86745297]\n", + " [ 8.80665163 0.86925139]\n", + " [ 3.43065193 0.8710498 ]\n", + " [ 1.5427789 29.64918296]\n", + " [ 1.54098048 24.27318326]\n", + " [ 1.53918206 18.89718357]\n", + " [ 1.53738364 13.52118387]\n", + " [ 1.53558522 8.14518416]\n", + " [ 1.5337868 2.76918446]\n", + " [32.21841195 31.53642123]\n", + " [32.21841195 31.53642123]\n", + " [ 1.53315204 0.87168457]\n", + " [ 1.53315204 0.87168457]\n", + " [30.32027729 29.6395561 ]\n", + " [24.94427759 29.64135452]\n", + " [19.56827789 29.64315294]\n", + " [14.19227819 29.64495136]\n", + " [ 8.81627849 29.64674978]\n", + " [ 3.44027879 29.6485482 ]\n", + " [30.31847887 24.2635564 ]\n", + " [24.94247917 24.26535482]\n", + " [19.56647947 24.26715324]\n", + " [14.19047977 24.26895166]\n", + " [ 8.81448007 24.27075007]\n", + " [ 3.43848037 24.2725485 ]\n", + " [30.31668045 18.8875567 ]\n", + " -0.8273004 -0.72987289 -0.55253697 -0.25009805\n", + " -0.96766665 -0.95325615 -0.92710821 -0.87335662 -0.74384256 -0.39763019\n", + " -0.99654822 -0.99489972 -0.99173015 -0.984408 -0.96090466 -0.80346296]\n", + "DEBUG:root:radec2pix: lat: [73.26908943 74.24907619 75.16003276 75.97420276 76.66164507 77.19203919\n", + " 77.53795274 77.67919539 73.26908943 74.27917066 75.22575502 76.08096918\n", + " 76.81416078 77.39343277 77.78879656 77.97677996 77.67919539 79.27760057\n", + " 80.9086962 82.56716816 84.24766937 85.94438651 87.64930302 89.3245763\n", + " 77.97677996 79.57988268 81.21386953 82.87289707 84.55034798 86.23677698\n", + " 87.90848861 89.3245763 73.70687233 74.86526918 75.89266936 76.7347974\n", + " 77.33616788 77.64902834 73.71922865 74.91822462 75.99447399 76.89265343\n", + " 77.55435927 77.92679672 78.37161008 80.3532483 82.37868114 84.43807116\n", + " 86.5205023 88.60550058 78.67128345 80.65746446 82.68422414 84.73967937\n", + " 86.80532112 88.79773368 73.27606371 73.27606371 89.31677804 89.31677804\n", + " 74.16894713 75.42332545 76.55590489 77.50736059 -30.872405 5.17281657]\n", + " [-30.872405 0.786388 ]\n", + " [ -0.182405 29.578888 ]\n", + " [ -0.182405 24.202888 ]\n", + " [ -0.182405 18.826888 ]\n", + " [ -0.182405 13.450888 ]\n", + " [ -0.182405 8.074888 ]\n", + " [ -0.182405 2.698888 ]\n", + " [ -2.079905 31.476388 ]\n", + " [ -7.455905 31.476388 ]\n", + " [-12.831905 31.476388 ]\n", + " [-18.207905 31.476388 ]\n", + " [-23.583905 31.476388 ]\n", + " [-28.959905 31.476388 ]\n", + " [ -2.079905 0.801388 ]\n", + " [ -7.455905 0.801388 ]\n", + " [-12.831905 0.801388 ]\n", + " [-18.207905 0.801388 ]\n", + " [-23.583905 0.801388 ]\n", + " [-28.959905 0.801388 ]\n", + " [-30.857405 29.578888 ]\n", + " [-30.857405 24.202888 ]\n", + " [-30.857405 18.826888 ]\n", + " [-30.857405 13.450888 ]\n", + " [-30.857405 8.074888 ]\n", + " [-30.857405 2.698888 ]\n", + " [ -0.182405 31.476388 ]\n", + " [ -0.182405 31.476388 ]\n", + " [-30.857405 0.801388 ]\n", + " [-30.857405 0.801388 ]\n", + " [ -2.079905 29.578888 ]\n", + " [ -7.455905 29.578888 ]\n", + " [-12.831905 29.578888 ]\n", + " [-18.207905 29.578888 ]\n", + " [-23.583905 [24.94068075 18.88935513]\n", + " [19.56468105 18.89115354]\n", + " [14.18868135 18.89295196]\n", + " [ 8.81268165 18.89475038]\n", + " [ 3.43668195 18.89654879]\n", + " [30.31488203 13.51155701]\n", + " [24.93888233 13.51335542]\n", + " [19.56288263 13.51515384]\n", + " [14.18688293 13.51695226]\n", + " [ 8.81088324 13.51875068]\n", + " [ 3.43488354 13.5205491 ]\n", + " [30.31308361 8.13555731]\n", + " [24.93708392 8.13735572]\n", + " [19.56108422 8.13915414]\n", + " [14.18508451 8.14095256]\n", + " [ 8.80908482 8.14275098]\n", + " [ 3.43308512 8.1445494 ]\n", + " [30.31128519 2.75955761]\n", + " [24.93528549 2.76135602]\n", + " [19.5592858 2.76315444]\n", + " [14.18328609 2.76495286]\n", + " [ 8.8072864 2.76675128]\n", + " [ 3.4312867 2.7685497 ]]\n", + "29.578888 ]\n", + " [-28.959905 29.578888 ]\n", + " [ -2.079905 24.202888 ]\n", + " [ -7.455905 24.202888 ]\n", + " [-12.831905 24.202888 ]\n", + " [-18.207905 24.202888 ]\n", + " [-23.583905 24.202888 ]\n", + " [-28.959905 24.202888 ]\n", + " [ -2.079905 18.826888 ]\n", + " [ -7.455905 18.826888 ]\n", + " [-12.831905 18.826888 ]\n", + " [-18.207905 18.826888 ]\n", + " [-23.583905 18.826888 ]\n", + " [-28.959905 18.826888 ]\n", + " [ -2.079905 13.450888 ]\n", + " [ -7.455905 13.450888 ]\n", + " [-12.831905 13.450888 ]\n", + " [-18.207905 13.450888 ]\n", + " [-23.583905 13.450888 ]\n", + " [-28.959905 13.450888 ]\n", + " [ -2.079905 8.074888 ]\n", + " [ -7.455905 8.074888 ]\n", + " [-12.831905 8.074888 ]\n", + " [-18.20790499 8.074888 ]\n", + " [-23.583905 8.074888 ]\n", + " [-28.959905 8.074888 ]\n", + " [ -2.079905 2.698888 ]\n", + " [ -7.455905 2.698888 ]\n", + " [-12.831905 2.698888 ]\n", + " [-18.207905 2.698888 ]\n", + " [-23.583905 2.698888 ]\n", + " [-28.959905 2.698888 ]]\n", + "DEBUG:root:make_az_asym: xyp: shape: (96, 2)\n", + "DEBUG:root:radec2pix: fitpx: [[-4.99999744e-01 -4.99999751e-01]\n", + " [-5.00000258e-01 2.91928571e+02]\n", + " [-5.00000005e-01 5.84357143e+02]\n", + " [-4.99999941e-01 8.76785714e+02]\n", + " [-4.99999889e-01 1.16921429e+03]\n", + " [-4.99999948e-01 1.46164286e+03]\n", + " [-5.00000143e-01 1.75407143e+03]\n", + " [-4.99999962e-01 2.04650000e+03]\n", + " [-4.99999744e-01 -4.99999751e-01]\n", + " [ 2.91928571e+02 -5.00000271e-01]\n", + " [ 5.84357143e+02 -4.99999959e-01]\n", + " [ 8.7908045 125.09574844 130.10218059\n", + " 134.46760759 102.88976492 170.61981741 175.18843619 176.76786642\n", + " 177.56728748 178.0499121 178.37286738 178.60412954 134.46760759\n", + " 138.7587586 143.69705248 149.3491301 155.74646239 162.85581906\n", + " 170.55107093 178.60412954 90.36478543 90.44558973 90.57261901\n", + " 90.80142559 91.33604138 94.02159324 93.79493665 103.34977578\n", + " 112.20947139 120.08219547 126.87889854 132.65213472 159.7741798\n", + " 174.12277646 176.57679256 177.5862344 178.13623505 178.48225333\n", + " 136.25009833 141.93538112 148.66205842 156.50402904 165.39685811\n", + " 175.06487905 90.34286209 90.34286209 178.57562014 178.57562014\n", + " 94.0377805 104.17347615 113.48518905 121.65239591 128.60482826\n", + " 134.43270854 94.93153704 107.15620301 117.97484261 127.00098521\n", + " 134.30466928 140.15819331 96.33160595 111.65389266 124.33611449\n", + " 134.10224284 141.45645803 147.02415603 98.83348775 119.07751066\n", + " 133.73407847 143.6218029 150.36959526 155.14598444 104.53566541\n", + " 132.85570308 147.93620706 156.17810512 161DEBUG:root:optics_fp: xyfp shape: (96, 2)\n", + "78.21290493 78.61205636\n", + " 75.38223897 76.80151051 78.10907648 79.23409871 80.08944165 80.58344411\n", + " 76.46449862 78.05559614 79.5593541 80.89695848 81.95437214 82.58757556\n", + " 77.35718097 79.11401738 80.82399404 82.41287861 83.74766412 84.60361539\n", + " 77.99846994 79.89205969 81.78816951 83.63850339 85.33442441 86.58329889\n", + " 78.33357011 80.30591073 82.31728996 84.35260664 86.38369379 88.29053235]\n", + "]\n", + " [0.01017639 0.12487279 0.99212057]\n", + " [0.01022623 0.09564544 0.99536294]\n", + " [0.01026295 0.0660437 0.99776395]\n", + " [0.01028629 0.03618151 0.99929229]\n", + " [0.01029607 0.00617591 0.99992792]\n", + " [0.20655553 0.19052281 0.95970614]\n", + " [0.20862193 0.15759064 0.96521608]\n", + " [0.21028039 0.12372836 0.9697801 ]\n", + " [0.21153069 0.08914025 0.97329789]\n", + " [0.21237025 0.05403012 0.97569443]\n", + " [0.212796 0.01860347 0.97691953]\n", + " [0.1943962 0.20271324 0.95974864]\n", + " [0.16153559 0.2047859 0.96538541]\n", + " [0.12772204 0.20645854 0.97008348]\n", + " [0.0931597 0.207731 0.97373975]\n", + " [0.05805212 0.20860063 0.97627646]\n", + " [0.02260459 0.20906415 0.97764064]\n", + " [0.2011068 0.00608691 0.97955041]\n", + " [0.16709142 0.00614821 0.98592224]\n", + " [0.1321133 0.00619816 0.99121524]\n", + " [0.09636698 0.00623643 0.99532633]\n", + " [0.06005439 0.00626269 0.99817546]\n", + " [0.02338579 0.00627666 0.99970681]\n", + " [0.01009044 0.19734414 0.98028234]\n", + " [0.01019035 0.16321317 0.9865382 ]\n", + " [0.01027142 0.12814101 0.99170277]\n", + " [0.0103331 0.0923229 0.9956755 ]\n", + " [0.01037483 0.05596168 0.99837901]\n", + " [0.01039617 0.01926848 0.99976029]\n", + " [0.20572824 0.20188558 0.95755841]\n", + " [0.20572824 0.20188558 0.95755841]\n", + " [0.01039877 0.00627861 0.99992622]\n", + " [0.01039877 0.00627861 0.99992622]\n", + " [0.19517474 0.19130075 0.96193079]\n", + " [0.1621771 0.19325024 0.96765331]\n", + " [0.12822694 0.19482509 0.9724202 ]\n", + " [0.09352723 0.19602426 0.97612865]\n", + " [0.05828102 0.19684438 0.97870098]\n", + " [0.02269376 0.19728171 0.98008414]\n", + " [0.19712067 0.15822879 0.96752627]\n", + " [0.1637837 0.1598311 0.97346234]\n", + " [0.12949375 0.16112922 0.97840112]\n", + " [0.09445078 0.16212009 0.98224036]\n", + " [0.05885684 0.16279899 0.98490221]\n", + " [0.0229182 0.16316141 0.98633316]\n", + " [0.19868404 0.12422708 0.97215857]\n", + " [0.16507817 0.12548158 0.97826559]\n", + " [0.13051704 0.12650047 0.98334273]\n", + " [0.09519827 0.12727979 0.98728777]\n", + " [0.05932353 0.12781451 0.99002231]\n", + " [0.02310025 0.12810021 0.99149217]\n", + " [0.19986372 0.08949878 0.97572766]\n", + " [0.16605732 0.09040196 0.98196357]\n", + " [0.13129265 0.09113695 0.98714553]\n", + " [0.09576573 0.09169995 0.99117105]\n", + " [0.05967819 0.09208666 0.99396105]\n", + " [0.02323871 0.09229337 0.99546064]\n", + " [0.20065641 0.05424725 0.9781586 ]\n", + " [0.16671646 0.05479478 0.98448116]\n", + " [0.13181555 0.05524091 0.98973385]\n", + " [0.09614872 0.05558298 0.99381384]\n", + " [0.05991775 0.05581806 0.99664146]\n", + " [0.0233323 0.05594375 0.99816126]\n", + " [0.20105858 0.01867818 0.97940113]\n", + " [0.16705125 0.01886665 0.98576768]\n", + " [0.13208139 0.0190203 0.99105637]\n", + " [0.09634357 0.01913813 0.99516413]\n", + " [0.06003972 0.01921909 0.99801095]\n", + " [0.02338002 0.01926233 0.99954106]]\n", + ".17666862 164.48488524\n", + " 128.03043433 160.3400738 168.27016728 171.67458296 173.56785714e+02 -5.00000035e-01]\n", + " [ 1.16921429e+03 -5.00000130e-01]\n", + " [ 1.46164286e+03 -5.00000295e-01]\n", + " [ 1.75407143e+03 -5.00000131e-01]\n", + " [ 2.04650000e+03 -5.00000000e-01]\n", + " [-4.99999962e-01 2.04650000e+03]\n", + " [ 2.91928571e+02 2.04650000e+03]\n", + " [ 5.84357143e+02 2.04650000e+03]\n", + " [ 8.76785714e+02 2.04650000e+03]\n", + " [ 1.16921429e+03 2.04650000e+03]\n", + " [ 1.46164286e+03 2.04650000e+03]\n", + " [ 1.75407143e+03 2.04650000e+03]\n", + " [ 2.04650000e+03 2.04650000e+03]\n", + " [ 2.04650000e+03 -5.00000000e-01]\n", + " [ 2.04650000e+03 2.91928571e+02]\n", + " [ 2.04650000e+03 5.84357143e+02]\n", + " [ 2.04650000e+03 8.76785714e+02]\n", + " [ 2.04650000e+03 1.16921429e+03]\n", + " [ 2.04650000e+03 1.46164286e+03]\n", + " [ 2.04650000e+03 1.75407143e+03]\n", + " [ 2.04650000e+03 2.04650000e+03]\n", + " [ 4.99999741e-01 1.27000000e+02]\n", + " [ 4.99999873e-01 4.85400000e+02]\n", + " [ 4.99999712e-01 8.43800000e+02]\n", + " [ 5.00000277e-01 1.20220000e+03]\n", + " [ 5.00000282e-01 1.56060000e+03]\n", + " [ 4.99999780e-01 1.91900000e+03]\n", + " [ 1.27000000e+02 4.99999945e-01]\n", + " [ 4.85400000e+02 4.999995402386\n", + " 174.74323713]\n", + "DEBUG:root:optics_fp: sphi: [-0.69680111 -0.64114722 -0.57314869 -0.49084265 -0.39293677 -0.27960013\n", + " -0.15326941 -0.01896529 -0.69680111 -0.74728304 -0.80034077 -0.85407631\n", + " -0.90539113 -0.94994095 -0.98262854 -0.99880866 -0.01896529 -0.02204027\n", + " -0.02626479 -0.03243122 -0.04227651 -0.06048361 -0.10546358 -0.38328124\n", + " -0.99880866 -0.99839535 -0.9977203 -0.99650464 -0.99396928 -0.9872021\n", + " -0.95720188 -0.38328124 -0.67408945 -0.59784918 -0.50106771 -0.3810536\n", + " -0.23821077 -0.07812313 -0.71824824 -0.78204748 -0.84795317 -0.91077177\n", + " -0.96255302 -0.99400976 -0.02069125 -0.02527007 -0.03236333 -0.04482319\n", + " -0.07241971 -0.18420237 -0.9986244 -0.99795053 -0.99662012 -0.9933915\n", + " -0.98176652 -0.85668122 -0.6967964 -0.6967964 -0.38778427 -0.38778427\n", + " -0.69616172 -0.76258227 -0.83253145 -0.90061674 -0.95788656 -0.99322432\n", + " -0.62111512 -0.69382495 -0.77549605 -0.8611271 -0.93887151 -0.98992366\n", + " -0.52402662 -0.59898168 -0.69015945 -0.79605037 -0.90427778 -0.98347639\n", + " -0.40118994 -0.4700312 -0.56175978 -0.68358289 -0.83348839 -0.96822051\n", + " -0.25223255 -0.30216337 -0.37479377 -0.48708132 -0.66835488 -0.91754577\n", + " -0.08301599 -0.10086897 -0.12834059 -0.17590022 -0.27687945 -0.59535474]\n", + "942e-01]\n", + " [ 8.43800000e+02 5.00000147e-01]\n", + " [ 1.20220000e+03 4.99999799e-01]\n", + " [ 1.56060000e+03 5.00000078e-01]\n", + " [ 1.91900000e+03 4.99999710e-01]\n", + " [ 1.27000000e+02 2.04550000e+03]\n", + " [ 4.85400000e+02 2.04550000e+03]\n", + " [ 8.43800000e+02 2.04550000e+03]\n", + " [ 1.20220000e+03 2.04550000e+03]\n", + " [ 1.56060000e+03 2.04550000e+03]\n", + " [ 1.91900000e+03 2.04550000e+03]\n", + " [ 2.04550000e+03 1.27000000e+02]\n", + " [ 2.04550000e+03 4.85400000e+02]\n", + " [ 2.04550000e+03 8.43800000e+02]\n", + " [ 2.04550000e+03 1.20220000e+03]\n", + " [ 2.04550000e+03 1.56060000e+03]\n", + " [ 2.04550000e+03 1.91900000e+03]\n", + " [ 5.00000247e-01 5.00000241e-01]\n", + " [ 5.00000247e-01 5.00000241e-01]\n", + " [ 2.04550000e+03 2.04550000e+03]\n", + " [ 2.04550000e+03 2.04550000e+03]\n", + " [ 1.27000000e+02 1.27000000e+02]\n", + " [ 4.85400000e+02 1.27000000e+02]\n", + " [ 8DEBUG:root:optics_fp: xyfp: [[-32.29046994 -31.71666141]\n", + " [-32.28860507 -27.33023323]\n", + " [-32.2867402 -22.94380505]\n", + " [-32.28487534 -18.55737688]\n", + " [-32.28301047 -14.1709487 ]\n", + " [-32.2811456 -9.78452053]\n", + " [-32.27928073 -5.39809235]\n", + " [-32.27741587 -1.01166418]\n", + " [-32.29046994 -31.71666141]\n", + " [-27.90404176 -31.71852627]\n", + " [-23.51761359 -31.72039114]\n", + " [-19.13118541 -31.722256 ]\n", + " [-14.74475724 -31.72412087]\n", + " [-10.35832906 -31.72598574]\n", + " [ -5.97190089 -31.72785061]\n", + " [ -1.58547272 -31.72971547]\n", + " [-32.27741587 -1.01166418]\n", + " [-27.8909877 -1.01352905]\n", + " [-23.50455952 -1.01539391]\n", + " [-19.11813134 -1.01725878]\n", + " [-14.73170317 -1.01912365]\n", + " [-10.345275 -1.02098851]\n", + " [ -5.95884682 -1.02285338]\n", + " [ -1.57241864 -1.02471825]\n", + " [ -1.58547272 -31.72971547]\n", + " [ -1.58360785 -27.3432873 ]\n", + " [ -1.58174298 -22.95685912]\n", + " [ -1.57987811 -18.57043094]\n", + " [ -1.57801325 -14.18400278]\n", + " [ -1.57614838 -9.7975746 ]\n", + " [ -1.57428351 -5.41114642]\n", + " [ -1.57241864 -1.02471825]\n", + " [-32.27465685 -29.80416795]\n", + " [-32.27237127 DEBUG:root:cartToSphere: vec: [[-0.20607518 -0.20019593 0.95783851]\n", + " [-0.20787446 -0.17367087 0.96261448]\n", + " [-0.20940354 -0.14646307 0.96679818]\n", + " [-0.21066179 -0.11868235 0.97032784]\n", + " [-0.21164814 -0.09043873 0.97315256]\n", + " [-0.21236112 -0.0618427 0.9752324 ]\n", + " [-0.21279916 -0.03300558 0.97653835]\n", + " [-0.21296107 -0.0040396 0.97705233]\n", + " [-0.20607518 -0.20019593 0.95783851]\n", + " [-0.17964954 -0.20202839 0.96276195]\n", + " [-0.15251864 -0.20359907 0.96710159]\n", + " [-0.12479221 -0.20490731 0.97079344]\n", + " [-0.09658011 -0.20595196 0.97378441]\n", + " [-0.06799262 -0.20673135 0.97603235]\n", + " [-0.03914089 -0.20724368 0.97750603]\n", + " [-0.01013708 -0.20748743 0.97818516]\n", + " [-0.21296107 -0.0040396 0.97705233]\n", + " [-0.18561075 -0.00409191 0.98261483]\n", + " [-0.15755214 -0.0041395 0.98750199]\n", + " [-0.12888979 -0.00418225 0.99165011]\n", + " [-0.09972928 -0.00421998 0.99500566]\n", + " [-0.07017922 -0.00425248 0.99752533]\n", + " [-0.04035219 -0.00427955 0.99917635]\n", + " [-0.01036463 -0.00430103 0.99993704]\n", + " [-0.01013708 -0.20748743 0.97818DEBUG:root:radec2pix: lng: [44.46013111 40.20250222 35.33475619 29.80239704 23.58471193 16.71933815\n", + " 9.32438225 1.60411637 44.46013111 48.6443107 53.44435482 58.92326156\n", + " 65.11319638 71.98940835 79.44437917 87.27692771 1.60411637 1.85680988\n", + " 2.20397654 2.71072869 3.51976244 5.01551732 8.70535713 30.95664732\n", + " 87.27692771 86.8388988 86.23319877 85.34102995 83.89722589 81.1670885\n", + " 74.12971046 30.95664732 42.68783954 37.06698546 30.47243013 22.85083712\n", + " 14.27406075 4.99632239 46.19982373 51.73354216 58.25770295 65.84552409\n", + " 74.44848175 83.82899465 1.73364549 2.10727457 2.68608796 3.70275867\n", + " 5.95349638 15.02389602 87.07294759 86.42732935 85.41713359 83.61383424\n", + " 79.49708007 61.65124289 44.45987707 44.45987707 31.12292419 31.12292419\n", + " 44.42569213 49.99636441 56.64851063 64.49322462 73.50720842 83.43797919\n", + " 38.75401666 44.3002287 51.21241262 59.77502346 70.12351892 82.00435394\n", + " 32.01565774 37.23971088 44.10467708 53.20553354 65.10220937 79.77773784\n", + " 24.12278796 28.56396741 DEBUG:root:radec2pix: ccdpx: [[-4.45000000e+01 -4.99999838e-01]\n", + " [-4.45000000e+01 2.91928571e+02]\n", + " [-4.45000000e+01 5.84357142e+02]\n", + " [-4.45000000e+01 8.76785714e+02]\n", + " [-4.45000000e+01 1.16921429e+03]\n", + " [-4.45000000e+01 1.46164286e+03]\n", + " [-4.45000000e+01 1.75407143e+03]\n", + " [-4.45000001e+01 2.04650000e+03]\n", + " [-4.45000000e+01 -4.99999838e-01]\n", + " [ 2.47928571e+02 -5.00000127e-01]\n", + " [ 5.40357143e+02 -4.99999855e-01]\n", + " [ 8.32785714e+02 -4.99999742e-01]\n", + " [ 1.12521429e+03 -4.99999752e-01]\n", + " [ 1.41764286e+03 -5.00000255e-01]\n", + " [ 1.71007143e+03 -4.99999843e-01]\n", + " [ 2.00250000e+03 -5.00000108e-01]\n", + " [-4.45000001e+01 2.04650000e+03]\n", + " [ 2.47928572e+02 2.04650000e+03]\n", + " [ 5.40357143e+02 2.04650000e+03]\n", + " [ 8.32785714e+02 2.04650000e+03]\n", + " [ 1.12521429e+03 2.04650000e+03]\n", + " [ 1.41764286e+03 2.04650000e+03]\n", + " [ 1.71007143e+03 2.04650000e+03]\n", + " [ 2.00250000e+03 2.04650000e+03]\n", + " [ 2.00250000e+03 -5.00000108e-01]\n", + " [ 2.00250000e+03 2.91928571e+02]\n", + " [ 2.00250000e+03 5.84357143e+02]\n", + " [ 2.00250000e+03 8.76785-24.42816844]\n", + " [-32.2700857 -19.05216893]\n", + " [-32.26780012 -13.67616941]\n", + " [-32.26551454 -8.3001699 ]\n", + " [-32.26322896 -2.92417038]\n", + " [-30.37796373 -31.70247449]\n", + " [-25.00196422 -31.70476008]\n", + " [-19.62596471 -31.70704565]\n", + " [-14.24996519 -31.70933123]\n", + " [ -8.87396568 -31.71161681]\n", + " [ -3.49796617 -31.71390239]\n", + " [-30.36492242 -1.02747727]\n", + " [-24.98892291 -1.02976285]\n", + " [-19.61292339 -1.03204842]\n", + " [-14.23692388 -1.034334 ]\n", + " [ -8.86092437 -1.03661958]\n", + " [ -3.48492485 -1.03890516]\n", + " [ -1.59965962 -29.81720927]\n", + " [ -1.59737405 -24.44120975]\n", + " [ -1.59508847 -19.06521024]\n", + " [ -1.59280289 -13.68921073]\n", + " [ -1.59051731 -8.31321121]\n", + " [ -1.58823174 -2.9372117 ]\n", + " [-32.27546357 -31.70166778]\n", + " [-32.27546357 -31.70166778]\n", + " [ -1.58742502 -1.03971187]\n", + " [ -1.58742502 -1.03971187]\n", + " [-30.37715702 -29.80497466]\n", + " [-25.00115751 -29.80726024]\n", + " [-19.625158 -29.80954582]\n", + " [-14.24915848 -29.8118314 ]\n", + " [ -8.87315897 -29.81411698]\n", + " [ -3.49715945 -29.81640256]\n", + " [-30.37487145 -24.42897515]\n", + " [-24.99887193 -24.43126073]\n", + "34.76649258 43.75755718 57.05411516 75.86717668\n", + " 15.12820823 18.19416817 22.73745459 30.03194111 42.97126995 67.36058422\n", + " 5.30749937 6.44364165 8.19450854 11.23524 17.75019872 39.48443023]\n", + "516]\n", + " [-0.01020871 -0.17998755 0.98361591]\n", + " [-0.01026764 -0.15180051 0.98835782]\n", + " [-0.01031373 -0.12303089 0.99234925]\n", + " [-0.01034674 -0.0937848 0.99553873]\n", + " [-0.01036638 -0.06417157 0.99788504]\n", + " [-0.0103724 -0.03430461 0.9993576 ]\n", + " [-0.01036463 -0.00430103 0.99993704]\n", + " [-0.20680345 -0.18872819 0.96000729]\n", + " [-0.20882603 -0.15574492 0.96547149]\n", + " [-0.21044235 -0.12184525 0.96998338]\n", + " [-0.21165063 -0.0872316 0.97344474]\n", + " [-0.2124482 -0.05210744 0.97578203]\n", + " [-0.2128323 -0.0166781 0.97694639]\n", + " [-0.19465346 -0.20093724 0.96006992]\n", + " [-0.16177694 -0.20300612 0.96572084]\n", + " [-0.12795009 -0.20468137 0.97042996]\n", + " [-0.0933751 -0.20596106 0.97409503]\n", + " [-0.05825505 -0.20684219 0.97663845]\n", + " [-0.022795 -0.20732153 0.97800724]\n", + " [-0.20112996 -0.00416252 0.97955572]\n", + " [-0.16711987 -0.004.43800000e+02 1.27000000e+02]\n", + " [ 1.20220000e+03 1.27000000e+02]\n", + " [ 1.56060000e+03 1.27000000e+02]\n", + " [ 1.91900000e+03 1.27000000e+02]\n", + " [ 1.27000000e+02 4.85400000e+02]\n", + " [ 4.85400000e+02 4.85400000e+02]\n", + " [ 8.43800000e+02 4.85400000e+02]\n", + " [ 1.20220000e+03 4.85400000e+02]\n", + " [ 1.56060000e+03 4.85400000e+02]\n", + " [ 1.91900000e+03 4.85400000e+02]\n", + " [ 1.27000000e+02 8.43800000e+02]\n", + " [ 4.85400000e+02 8.43800000e+02]\n", + " [ 8.43800000e+02 8.43800000e+02]\n", + " [ 1.20220000e+03 8.43800000e+02]\n", + " [ 1.56060000e+03 8.43800000e+02]\n", + " [ 1.91900000e+03 8.43800000e+02]\n", + " [ 1.27000000e+02 1.20220000e+03]\n", + " [ 4.85400000e+02 1.20220000e+03]\n", + " [ 8.43800000e+02 1.20220000e+03]\n", + " [ 1.20220000e+03 1.20220000e+03]\n", + " [ 1.56060000e+03 1.20220000e+03]\n", + " [ 1.91900000e+03 1.20220000e+03]\n", + " [ 1.27000000e+02 1.56060000e+03]\n", + " [ 4.85400000e+02 1.56060000e+03]\n", + " [ 8.43800000e+02 1.56060000e+03]\n", + " [ 1.20220000e+03 1.56060000e+03]\n", + " [ 1.56060000e+03 1.56060000e+03]\n", + " [ 1.91900000e+03 1.56060000e+03]\n", + " [ 1.27000000e+02 1.91900000e+03]\n", + " [ 4.85400000e+02 1.91900000e+03]\n", + " [ 8.43800000e+02 1.91900000e+03]\n", + " [ 1.20220000e+03 1.91900000e+03]\n", + " [ 1.56060000e+03 1.91900000e+03]\n", + " [ 1.91900000e+03 1.91900000e+03]]\n", + "DEBUG:root:radec2pix: lat: [73.24045629 74.22430856 75.14029247 75.96071497 76.65562135 77.19454225\n", + " 77.54971408 77.7004367 73.24045629 74.24542243 75.18640058 76.03561625\n", + " 76.76261911 77.33584079 77.72573436 77.90930638 77.7004367 79.29904106\n", + " 80.93014794 82.5883689 84.26818815 85.9633334 87.6639727 89.31207398\n", + " 77.90930638 79.51115144 81.14420271 82.80268356 84.48015158 86.16770212\n", + " 87.84429449 89.31207398 73.67977076 74.84367611 75.87839932 76.72967459\n", + " 77.34173684 77.66614591 73.68843996 74.88082796 75.94981974 76.8404193\n", + " 77.49482717 77.86108402 78.39292403 80.37467767 82.39987127 84.45839268\n", + " 86.53837212 88.6125356 78.60323781 80.5880931 82.61407297 84.6695731\n", + " 86.73723257 88.74545658 73.24742531 73.24742531 89.30399741 89.30399741\n", + " 74.13967578 75.38730878 76.51234476 77.4557749 78.153466DEBUG:root:fitpix2pix: ccdpx: shape: (96, 2)\n", + "DEBUG:root:radec2pix: xyfp: [[32.275486 31.41357429]\n", + " [32.27502267 27.02714574]\n", + " [32.27455935 22.64071719]\n", + " [32.27409601 18.25428864]\n", + " [32.27363269 13.8678601 ]\n", + " [32.27316936 9.48143155]\n", + " [32.27270604 5.095003 ]\n", + " [32.27224271 0.70857446]\n", + " [32.275486 31.41357429]\n", + " [27.88905745 31.41403761]\n", + " [23.5026289 31.41450094]\n", + " [19.11620036 31.41496427]\n", + " [14.72977181 31.41542759]\n", + " [10.34334326 31.41589092]\n", + " [ 5.95691471 31.41635424]\n", + " [ 1.57048617 31.41681757]\n", + " [32.27224271 0.70857446]\n", + " [27.88581416 0.70903778]\n", + " [23.49938562 0.70950111]\n", + " [19.11295707 0.70996444]\n", + " [14.72652852 0.71042776]\n", + " [10.34009998 0.71089109]\n", + " [ 5.95367142 0.71135442]\n", + " [ 1.56724288 0.71181774]\n", + " [ 1.57048617 31.41681757]\n", + " [ 1.57002284 27.03038902]\n", + " [ 1.56955951 22.64396047]\n", + " [ 1.56909619 18.25753194]\n", + " [ 1.56863286 13.87110338]\n", + " [ 1.56816953 9.48467484]\n", + " [ 1.56770621 5.09824629]\n", + " [ 1.56724288 0.71181774]\n", + " [32.26028399 29.50107588]\n", + " [32.25971613 24.12507591]\n", + " [32.259122448 0.98592753]\n", + " [-0.13214975 -0.00427905 0.99122053]\n", + " [-0.09641349 -0.00432591 0.99533197]\n", + " [-0.0601111 -0.00436469 0.99818215]\n", + " [-0.02345151 -0.00439503 0.99971531]\n", + " [-0.01026957 -0.19558822 0.98063234]\n", + " [-0.0103498 -0.16140908 0.98683331]\n", + " [-0.01041065 -0.12630166 0.99193725]\n", + " [-0.01045169 -0.09046055 0.99584519]\n", + " [-0.01047241 -0.05408714 0.9984813 ]\n", + " [-0.01047238 -0.0173918 0.99979391]\n", + " [-0.20599275 -0.20011322 0.95787352]\n", + " [-0.20599275 -0.20011322 0.95787352]\n", + " [-0.01046737 -0.00440367 0.99993552]\n", + " [-0.01046737 -0.00440367 0.99993552]\n", + " [-0.19541667 -0.18950334 0.9622374 ]\n", + " [-0.16240545 -0.19145029 0.96797276]\n", + " [-0.12844349 -0.19302803 0.97274994]\n", + " [-0.09373247 -0.19423441 0.9764667 ]\n", + " [-0.05847519 -0.195066 0.97904541]\n", + " [-0.02287686 -0.19551916 0.98043302]\n", + " [-0.19732118 -0.15638145 0.96778572]\n", + " [-0.16397526 -0.15798254 0.97373181]\n", + " [-0.12967711 -0.1592836 0.978679 ]\n", + " [-0.09462661 -0.16028164 0.98252511]\n", + " [-0.05902568 -0.16097217 0.98519233]\n", + " [-0.02308015 -0.16135064 0.98662722]\n", + " [-0.19884383 -0.12234264 0.97236485]\n", + " [-0.16523235 -0.1235961 0.97847957]\n", + " [-0.13066656 -0.12461804 0.98356321]\n", + " [-0.09534433 -0.12540495 0.98751357]\n", + " [-0.05946678 -0.1259519 0.9902524 ]\n", + " [-0.02324061 -0.1262541 0.99172566]\n", + " [-0.19998259 -0.08758892 0.9758766 ]\n", + " [-0.16617376 -0.08849133 0.9821179 ]\n", + " [-0.13140827 -0.08922984 0.98730436]\n", + " [-0.09588212 -0.08980108 0.99133364]\n", + " [-0.05979589 -0.09020062 0.9941269 ]\n", + " [-0.0233572 -0.09042422 0.9956294 ]\n", + " [-0.20073433 -0.05232353 0.9782474 ]\n", + " [-0.16679525 -0.0528708 0.98457302]\n", + " [-0.13189744 -0.053321 0.98982824]\n", + " [-0.09623556 -0.05367171 0.99391049]\n", + " [-0.06000982 -0.05391982 0.99674043]\n", + " [-0.02342863 -0.0540624 0.99826267]\n", + " [-0.20109591 -0.016752 0.97942831]\n", + " [-0.16709274 -0.01694088 0.98579563]\n", + " [-0.13212968 -0.01709901 0.99108495]\n", + " [-0.09640067 -0.01722548 0.99519355]\n", + " [-0.06010576 -0.01731915 0.99804176]\n", + " [-0.0234538 -0.01737894 0.99957386]]\n", + "4828 18.74907594]\n", + " [32.25858043 13.37307597]\n", + " [32.25801258 7.997076 ]\n", + " [32.25744472 2.62107603]\n", + " [30.36298443 31.3987763 ]\n", + " [24.98698446 31.39934415]\n", + " [19.61098448 31.399912 ]\n", + " [14.23498451 31.40047985]\n", + " [ 8.85898454 31.40104771]\n", + " [ 3.48298457 31.40161556]\n", + " [30.35974431 0.72377647]\n", + " [24.98374433 0.72434432]\n", + " [19.60774436 0.72491217]\n", + " [14.23174439 0.72548003]\n", + " [ 8.85574442 0.72604788]\n", + " [ 3.47974445 0.72661573]\n", + " [ 1.58528416 29.504316 ]\n", + " [ 1.5847163 24.12831603]\n", + " [ 1.58414845 18.75231606]\n", + " [ 1.5835806 13.37631609]\n", + " [ 1.58301275 8.00031612]\n", + " [ 1.5824449 2.62431615]\n", + " [32.26048441 31.39857587]\n", + " [32.26048441 31.39857587]\n", + " [ 1.58224447 0.72681616]\n", + " [ 1.58224447 0.72681616]\n", + " [30.36278399 29.50127631]\n", + " [24.98678403 29.50184416]\n", + " [19.61078405 29.50241201]\n", + " [14.23478409 29.50297987]\n", + " [ 8.85878411 29.50354772]\n", + " [ 3.48278414 29.50411557]\n", + " [30.36221615 24.12527634]\n", + " [24.98621618 24.12584419]\n", + " [19.6102162 24.12641204]\n", + " [14.23421623 24.1269799 ]\n", + " [ 8.85821626 24.12754775]\n", + " [ 3.48221629 24.1281156 ]\n", + " [30.36164829DEBUG:root:optics_fp: rtanth: [45.0390902 42.09683712 39.42396804 37.07878541 35.12698266 33.63710755\n", + " 32.6724136 32.28002056 45.0390902 42.00763364 39.23320577 36.77402747\n", + " 34.69719395 33.07480842 31.97611838 31.45604637 32.28002056 27.89482687\n", + " 23.51009392 19.1261386 14.74365456 10.36450837 5.99601772 1.72131774\n", + " 31.45604637 27.07594694 22.69829207 18.32483384 13.95951711 9.61343916\n", + " 5.33383708 1.72131774 43.71543665 40.28285706 37.31193504 34.92069834\n", + " 33.23450917 32.36375719 43.67830098 40.1281473 37.02087501 34.47644006\n", + " 32.62678968 31.59418683 30.3683705 24.99424245 19.62114004 14.2502235\n", + " 8.88545749 3.55479843 29.54687443 24.18030108 18.81910954 13.46972753\n", + " 8.15542687 3.06450112 45.0178789 45.0178789 1.74119478 1.74119478\n", + " 42.33466612 38.66132674 35.42562866 32.75751668 30.80482728 29.70896533\n", + " 38.78006096 34.73279944 31.09090442 28.01292685 25.70226752 24.37810068\n", + " 35.68424094 31.23842634 27.13146257 23.54136773 20.73833358 19.07259071\n", + " 33.17589074 28.339265DEBUG:root:make_az_asym: xyp: [[32.23341696 31.55141621]\n", + " [32.23194958 27.16498788]\n", + " [32.2304822 22.77855956]\n", + " [32.22901483 18.39213124]\n", + " [32.22754745 14.00570291]\n", + " [32.22608007 9.61927458]\n", + " [32.22461269 5.23284626]\n", + " [32.2231453 0.84641793]\n", + " [32.23341696 31.55141621]\n", + " [27.84698864 31.5528836 ]\n", + " [23.46056031 31.55435097]\n", + " [19.07413198 31.55581835]\n", + " [14.68770366 31.55728573]\n", + " [10.30127533 31.55875311]\n", + " [ 5.91484701 31.56022049]\n", + " [ 1.52841868 31.56168787]\n", + " [32.2231453 0.84641793]\n", + " [27.83671698 0.84788531]\n", + " [23.45028865 0.84935269]\n", + " [19.06386033 0.85082007]\n", + " [14.677432 0.85228745]\n", + " [10.29100367 0.85375483]\n", + " [ 5.90457535 0.85522221]\n", + " [ 1.51814702 0.85668959]\n", + " [ 1.52841868 31.56168787]\n", + " [ 1.5269513 27.17525955]\n", + " [ 1.52548392 22.78883122]\n", + " [ 1.52401654 18.4024029 ]\n", + " [ 1.52254916 14.01597457]\n", + " [ 1.52108178 9.62954624]\n", + " [ 1.5196144 5.24311792]\n", + " [ 1.51814702 0.85668959]\n", + " [32.21777718 29.63892134]\n", + " [32.21597876 24.26292164]\n", + " [32.21418034 18.88692194]\n", + " [32.21238193 13.5109222427 23.73585762 19.53127415 16.04223037 13.82166388\n", + " 31.39613279 26.23340206 21.17707168 16.3263008 11.93442847 8.72443809\n", + " 30.47289508 25.12113778 19.7825313 14.471637 9.23638255 4.35844005]\n", + " [-19.62287241 -24.43354631]\n", + " [-14.2468729 -24.43583188]\n", + " [ -8.87087339 -24.43811746]\n", + " [ -3.49487388 -24.44040305]\n", + " [-30.37258587 -19.05297564]\n", + " [-24.99658635 -19.05526122]\n", + " [-19.62058684 -19.05754679]\n", + " [-14.24458732 -19.05983237]\n", + " [ -8.86858781 -19.06211795]\n", + " [ -3.4925883 -19.06440353]\n", + " [-30.37030029 -13.67697612]\n", + " [-24.99430077 -13.6792617 ]\n", + " [-19.61830126 -13.68154728]\n", + " [-14.24230175 -13.68383286]\n", + " [ -8.86630223 -13.68611844]\n", + " [ -3.49030272 -13.68840401]\n", + " [-30.36801471 -8.30097661]\n", + " [-24.9920152 -8.30326219]\n", + " [-19.61601568 -8.30554776]\n", + " [-14.24001617 -8.30783335]\n", + " [ -8.86401666 -8.31011893]\n", + " [ -3.48801714 -8.3124045 ]\n", + " [-30.36572914 -2.9249771 ]\n", + " [-24.98972962 -2.92726267]\n", + " [-19.6137301 -2.92954825]\n", + " [-14.23773059 -2.93183383]\n", + " [ -8.86173108 -2.93411941]\n", + " [ -3.48573156 -2.93640499]]\n", + "]\n", + " [32.21058351 8.13492254]\n", + " [32.20878509 2.75892284]\n", + " [30.32091205 31.53705599]\n", + " [24.94491236 31.53885442]\n", + " [19.56891265 31.54065283]\n", + " [14.19291295 31.54245125]\n", + " [ 8.81691325 31.54424967]\n", + " [ 3.44091356 31.54604808]\n", + " [30.31065043 0.86205771]\n", + " [24.93465073 0.86385613]\n", + " [19.55865103 0.86565455]\n", + " [14.18265134 0.86745297]\n", + " [ 8.80665163 0.86925139]\n", + " [ 3.43065193 0.8710498 ]\n", + " [ 1.5427789 29.64918296]\n", + " [ 1.54098048 24.27318326]\n", + " [ 1.53918206 18.89718357]\n", + " [ 1.53738364 13.52118387]\n", + " [ 1.53558522 8.14518416]\n", + " [ 1.5337868 2.76918446]\n", + " [32.21841195 31.53642123]\n", + " [32.21841195 31.53642123]\n", + " [ 1.53315204 0.87168457]\n", + " [ 1.53315204 0.87168457]\n", + " [30.32027729 29.6395561 ]\n", + " [24.94427759 29.64135452]\n", + " [19.56827789 29.64315294]\n", + " [14.19227819 29.64495136]\n", + " [ 8.81627849 29.64674978]\n", + " [ 3.44027879 29.6485482 ]\n", + " [30.31847887 24.2635564 ]\n", + " [24.94247917 24.26535482]\n", + " [19.56647947 24.26715324]\n", + " [14.19047977 24.26895166]\n", + " [ 8.81448007 24.27075007]\n", + " [ 3.43848037 24.2725485 ]\n", + " [30.31668045 18.8875567 ]\n", + " [24.94068075 18.88935513]\n", + " [19.56468105 18.89115354]\n", + " [14.18868135 18.89295196]\n", + " [ 8.81268165 18.89475038]\n", + " [ 3.43668195 18.89654879]\n", + " [30.31488203 13.51155701]\n", + " [24.93888233 13.51335542]\n", + " [19.56288263 13.51515384]\n", + " [14.18688293 13.51695226]\n", + " [ 8.81088324 13.51875068]\n", + " [ 3.43488354 13.5205491 ]\n", + " [30.31308361 8.13555731]\n", + " [24.93708392 8.13735572]\n", + " [19.56108422 8.13915414]\n", + " [14.18508451 8.14095256]\n", + " [ 8.80908482 8.14275098]\n", + " [ 3.43308512 8.1445494 ]\n", + " [30.31128519 2.75955761]\n", + " [24.93528549 2.76135602]\n", + " [19.5592858 2.76315444]\n", + " [14.18328609 2.76495286]\n", + " [ 8.8072864 2.76675128]\n", + " [ 3.4312867 2.7685497 ]]\n", + "67 78.54590996\n", + " 75.35848529 76.77078371 78.07006468 79.18567192 80.03121451 80.5165253\n", + " 76.44822453 78.03255968 79.52764934 80.85445453 81.89945108 82.52079347\n", + " 77.3504272 79.10147139 80.80332064 82.38074874 83.7000473 84.53866109\n", + " 78.00303059 79.89280789 81.78299446 83.6236493 85.30285158 86.52492363\n", + " 78.35049019 80.32186123 82.33135444 84.36297386 86.3856321 18.74927637]\n", + " [24.98564832 18.74984422]\n", + " [19.60964835 18.75041208]\n", + " [14.23364838 18.75097993]\n", + " [ 8.85764841 18.75154778]\n", + " [ 3.48164844 18.75211563]\n", + " [30.36108043 13.3732764 ]\n", + " [24.98508046 13.37384425]\n", + " [19.60908049 13.3744121 ]\n", + " [14.23308053 13.37497996]\n", + " [ 8.85708056 13.37554781]\n", + " [ 3.48108059 13.37611567]\n", + " [30.36051258 7.99727643]\n", + " [24.98451261 7.99784428]\n", + " [19.60851265 7.99841214]\n", + " [14.23251268 7.99897999]\n", + " [ 8.85651271 7.99954784]\n", + " [ 3.48051273 8.00011569]\n", + " [30.35994473 2.62127646]\n", + " [24.98394476 2.62184431]\n", + " [19.60794479 2.62241216]\n", + " [14.23194482 2.62298002]\n", + " [ 8.85594485 2.62354787]\n", + " [ 3.47994488 2.62411572]]\n", + " 88.26407642]\n", + "DEBUG:root:make_az_asym: xyp: shape: (96, 2)\n", + "DEBUG:root:optics_fp: xyfp shape: (96, 2)\n", + "DEBUG:root:optics_fp: xyfp: [[32.2358199 31.31614388]\n", + " [32.23338667 26.92971599]\n", + " [32.23095344 22.54328809]\n", + " [32.2285202 18.15686019]\n", + " [32.22608698 13.7704323 ]\n", + " [32.22365375 9.3840044 ]\n", + " [32.22122051 4.99757651]\n", + " [32.21878728 0.61114861]\n", + " [32.2358199 31.3DEBUG:root:radec2pix: lng: [224.17091663 219.87741809 214.97008665 209.39598188 203.1373574\n", + " 196.23634076 188.81644128 181.08669631 224.17091663 228.3555716\n", + " 233.16265584 238.65783928 244.87601329 251.7942959 259.30486084\n", + " 267.20296141 181.08669631 181.26291687 181.50503492 181.85849799\n", + " 182.42298774 183.46757199 186.05387592 202.53707914 267.20296141\n", + " 266.75372148 266.13046308 265.20807536 263.70434622 260.82362196\n", + " 253.17669924 202.53707914 222.38348083 216.71601144 210.07066421\n", + " 202.39896016 193.78096287 184.48069147 225.9100405 231.44842444\n", + " 237.98973756 245.61222365 254.27065244 263.72553361 181.18560606\n", + " 181.44802269 181.85460599 182.56904059 184.15297918 190.61463228\n", + " 266.99438373 266.33112836 265.28794249 263.40934603 259.04191913\n", + " 238.94596845 224.17054014 224.17054014 202.81670057 202.81670057\n", + " 224.11986404 229.69237658 236.35966367 244.23925438 253.312778\n", + " 263.32641007 218.39761245 223.93365474 230.85002743 239.44337044\n", + " 249.86289594 261.85943825 211.60273873 216.79700073 714e+02]\n", + " [ 2.00250000e+03 1.16921429e+03]\n", + " [ 2.00250000e+03 1.46164286e+03]\n", + " [ 2.00250000e+03 1.75407143e+03]\n", + " [ 2.00250000e+03 2.04650000e+03]\n", + " [-4.35000000e+01 1.27000000e+02]\n", + " [-4.35000000e+01 4.85400000e+02]\n", + " [-4.35000000e+01 8.43800000e+02]\n", + " [-4.35000000e+01 1.20220000e+03]\n", + " [-4.35000000e+01 1.56060000e+03]\n", + " [-4.35000000e+01 1.91900000e+03]\n", + " [ 8.30000000e+01 5.00000282e-01]\n", + " [ 4.41400000e+02 4.99999845e-01]\n", + " [ 7.99800000e+02 4.99999800e-01]\n", + " [ 1.15820000e+03 4.99999731e-01]\n", + " [ 1.51660000e+03 5.00000238e-01]\n", + " [ 1.87500000e+03 4.99999813e-01]\n", + " [ 8.30000000e+01 2.04550000e+03]\n", + " [ 4.41400000e+02 2.04550000e+03]\n", + " [ 7.99800000e+02 2.04550000e+03]\n", + " [ 1.15820000e+03 2.04550000e+03]\n", + " [ 1.51660000e+03 2.04550000e+03]\n", + " [ 1.87500000e+03 2.04550000e+03]\n", + " [ 2.00150000e+03 1.27000000e+02]\n", + " [ 2.00150000e+03 4.85400000e+02]\n", + " [ 2.00150000e+03 8.43800000e+02]\n", + " [ 2.00150000e+03 1.20220000e+03]\n", + " [ 2.00150000e+03 1.56060000e+03]\n", + " [ 2.00150000e+03 1.91900000e+03]\n", + " [-4.350000DEBUG:root:fitpix2pix: visCut: True\n", + "00e+01 5.00000147e-01]\n", + " [-4.35000000e+01 5.00000147e-01]\n", + " [ 2.00150000e+03 2.04550000e+03]\n", + " [ 2.00150000e+03 2.04550000e+03]\n", + " [ 8.30000000e+01 1.27000000e+02]\n", + " [ 4.41400000e+02 1.27000000e+02]\n", + " [ 7.99800000e+02 1.27000000e+02]\n", + " [ 1.15820000e+03 1.27000000e+02]\n", + " [ 1.51660000e+03 1.27000000e+02]\n", + " [ 1.87500000e+03 1.27000000e+02]\n", + " [ 8.30000000e+01 4.85400000e+02]\n", + " [ 4.41400000e+02 4.85400000e+02]\n", + " [ 7.99800000e+02 4.85400000e+02]\n", + " [ 1.15820000e+03 4.85400000e+02]\n", + " [ 1.51660000e+03 4.85400000e+02]\n", + " [ 1.87500000e+03 4.85400000e+02]\n", + " [ 8.30000000e+01 8.43800000e+02]\n", + " [ 4.41400000e+02 8.43800000e+02]\n", + " [ 7.99800000e+02 8.43800000e+02]\n", + " [ 1.15820000e+03 8.43800000e+02]\n", + " [ 1.51660000e+03 8.43800000e+02]\n", + " [ 1.87500000e+03 8.43800000e+02]\n", + " [ 8.30000000e+01 1.20220000e+03]\n", + " [ 4.41400000e+02 1.20220000e+03]\n", + " [ 7.99800000e+02 1.20220000e+03]\n", + " [ 1.15820000e+03 1.20220000e+03]\n", + " [ 1.51660000e+03 1.20220000e+03]\n", + " [ 1.87500000e+03 1.20220000e+03]\n", + " [ 8.30000000e+01 1.56060000e+03]\n", + " [ 4.41400000e+02 1.56060000e+03]\n", + " [ 7.99800000e+02 1.56060000e+03]\n", + " [ 1.15820000e+03 1.56060000e+03]\n", + " [ 1.51660000e+03 1.56060000e+03]\n", + " [ 1.87500000e+03 1.56060000e+03]\n", + " [ 8.30000000e+01 1.91900000e+03]\n", + " [ 4.41400000e+02 1.91900000e+03]\n", + " [ 7.99800000e+02 1.91900000e+03]\n", + " [ 1.15820000e+03 1.91900000e+03]\n", + " [ 1.51660000e+03 1.91900000e+03]\n", + " [ 1.87500000e+03 1.91900000e+03]]\n", + "DEBUG:root:optics_fp: cphi: [-0.71661052 -0.76668522 -0.81865324 -0.87041945 -0.91877042 -0.95945138\n", + " -0.98776621 -0.99975905 -0.71661052 -0.66390451 -0.59904941 -0.51982885\n", + " -0.42452343 -0.31272572 -0.18629262 -0.04992637 -0.99975905 -0.9996769\n", + " -0.99954452 -0.99931081 -0.99883841 -0.997645 -0.9929376 -0.91049017\n", + " -0.04992637 -0.05798589 -0.06914879 -0.08562676 -0.11237014 -0.16312264\n", + " -0.29391715 -0.91049017 -0.73796092 -0.80082989 -0.86457988 -0.92376676\n", + " -0.97061799 -0.99671508 -0.69515031 -0.62267974 -0.52972774 -0.41289021\n", + " -0.27152486 -0.11024131 -0.99971595 -0.99957998 -0.99931728 -0.99870324\n", + " -0.99665599 -0.97888657 -0.05365319 -0.06553749 -0.08417765 -0.1175659\n", + " -0.19410544 -0.51637928 -0.71661494 -0.71661494 -0.90871193 -0.90871193\n", + " -0.71720854 -0.64629919 -0.55357618 -0.43455016 -0.28757779 -0.11723007\n", + " -0.78293369 -0.71938388 -0.63073804 -0.50813028 -0.34464727 -0.14284199\n", + " -0.85084193 -0.79983697 -0.72276415 -0.60462283 -0.42711476 -0.18254722\n", + " -0.91515494 -0.88164179 -0.82613743 -0.72873282 -0.5521103 -0.25185684\n", + " -0.9670144 -0.95239316 -0.92593126 -0.87175367 -0.74209777 -0.39893833\n", + " -0.99629342 -0.99453874 -0.99117471 -0.98343711 -0.95881096 -0.79843817]\n", + "DEBUG:root:make_az_asym: xyp: [[-32.29046994 -31.71666141]\n", + " [-32.28860507 -27.33023323]\n", + " [-32.2867402 -22.94380505]\n", + " [-32.28487534 -18.55737688]\n", + " [-32.28301047 -14.1709487 ]\n", + " [-32.2811456 -9.78452053]\n", + " [-32.27928073 -5.39809235]\n", + " [-32.27741587 -1.01166418]\n", + " [-32.29046994 -31.71666141]\n", + " [-27.90404176 -31.71852627]\n", + " [-23.51761359 -31.72039114]\n", + " [-19.13118541 -31.722256 ]\n", + " 223.64273186\n", + " 232.75457852 244.72618682 259.56986466 203.65258863 208.03632189\n", + " 214.17758593 223.12426077 236.4587659 255.51668541 194.60966243\n", + " 197.58758667 202.01156736 209.14892478 221.94021993 246.56988658\n", + " 184.76194605 185.78921163 187.37371211 190.13104958 196.0740482\n", + " 216.53792504]\n", + "DEBUG:root:radec2pix: xyfp: [[32.23341696 31.55141621]\n", + " [32.23194958 27.16498788]\n", + " [32.2304822 22.77855956]\n", + " [32.22901483 18.39213124]\n", + " [32.22754745 14.00570291]\n", + " [32.22608007 9.61927458]\n", + " [32.22461269 5.23284626]\n", + " [32.2231453 0.84641793]\n", + " [32.23341696 31.55141621]\n", + " [27.84698864 31.5528836 ]\n", + " [23.46056031 31.55435097]\n", + " [19.07413198 31.55581835]\n", + " [14.68770366 31.55728573]\n", + " [10.30127533 31.55875311]\n", + " [ 5.91484701 31.56022049]\n", + " [ 1.52841868 31.56168787]\n", + " [32.2231453 0.84641793]\n", + " [27.83671698 0.84788531]\n", + " [23.45028865 0.84935269]\n", + " [19.06386033 0.85082007]\n", + " [14.677432 0.85228745]\n", + " [10.29100367 0.85375483]\n", + " [ 5.90457535 0.85522221]\n", + " [ 1.51814702 0.85668959]\n", + " [ 1.52841868 31.56168787]\n", + " [ 1.5269513 27.17525955]\n", + " [ 1.52548392 22.78883122]\n", + " [ 1.52401654 18.4024029 ]\n", + " [ 1.52254916 14.01597457]\n", + " [ 1.52108178 9.62954624]\n", + " [ 1.5196144 5.24311792]\n", + " [ 1.51814702 0.85668959]\n", + " [32.21777718 29.63892134]\n", + " [32.21597876 24.26292164]\n", + " [32.21418034 18.88692194]\n", + " [32.21238193 13.51092224]\n", + " [32.21058351 8.13492254]\n", + " [32.20878509 2.75892284]\n", + " [30.32091205 31.53705599]\n", + " [24.94491236 31.53885442]\n", + " [19.56891265 31.54065283]\n", + " [14.19291295 31.54245125]\n", + " [ 8.81691325 31.54424967]\n", + " [ 3.44091356 31.54604808]\n", + " [30.31065043 0.86205771]\n", + " [24.93465073 0.86385613]\n", + " [19.55865103 0.86565455]\n", + " [14.18265134 0.86745297]\n", + " [ 8.80665163 0.86925139]\n", + " [ 3.43065193 0.8710498 ]\n", + " [ 1.5427789 29.64918296]\n", + " [ 1.54098048 24.27318326]\n", + " [ 1.53918206 18.89718357]\n", + " [ 1.53738364 13.52118387]\n", + " [ 1.53558522 8.14518416]\n", + " [ 1.5337868 2.76918446]\n", + " [32.21841195 31.53642123]\n", + " [32.21841195 31.53642123]\n", + " [ 1.53315204 0.87168457]\n", + " [ 1.53315204 0.87168457]\n", + " [30.32027729 29.6395561 ]\n", + " [24.94427759 29.64135452]\n", + " [19.56[-14.74475724 -31.72412087]\n", + " [-10.35832906 -31.72598574]\n", + " [ -5.97190089 -31.72785061]\n", + " [ -1.58547272 -31.72971547]\n", + " [-32.27741587 -1.01166418]\n", + " [-27.8909877 -1.01352905]\n", + " [-23.50455952 -1.01539391]\n", + " [-19.11813134 -1.01725878]\n", + " [-14.73170317 -1.01912365]\n", + " [-10.345275 -1.02098851]\n", + " [ -5.95884682 -1.02285338]\n", + " [ -1.57241864 -1.02471825]\n", + " [ -1.58547272 -31.72971547]\n", + " [ -1.58360785 -27.3432873 ]\n", + " [ -1.58174298 -22.95685912]\n", + " [ -1.57987811 -18.57043094]\n", + " [ -1.57801325 -14.18400278]\n", + " [ -1.57614838 -9.7975746 ]\n", + " [ -1.57428351 -5.41114642]\n", + " [ -1.57241864 -1.02471825]\n", + " [-32.27465685 -29.80416795]\n", + " [-32.27237127 -24.42816844]\n", + " [-32.2700857 -19.05216893]\n", + " [-32.26780012 -13.67616941]\n", + " [-32.26551454 -8.3001699 ]\n", + " [-32.26322896 -2.92417038]\n", + " [-30.37796373 -31.70247449]\n", + " [-25.00196422 -31.70476008]\n", + " [-19.62596471 -31.70704565]\n", + " [-14.24996519 -31.70933123]\n", + " [ -8.87396568 -31.71161681]\n", + " [ -3.49796617 -31.71390239]\n", + " [-30.36492242 -1.02747727]\n", + " [-24.98892291 -1.02976285]\n", + " [-19.61292339 DEBUG:root:radec2pix: lat: [77.97206498 79.57806769 81.21593647 82.8803899 84.56638266 86.26889583\n", + " 87.98262539 89.69667435 77.97206498 77.85336036 77.52222772 76.99897078\n", + " 76.31199967 75.49295235 74.57292056 73.58021644 89.69667435 88.18712874\n", + " 86.48361023 84.78319776 83.0967184 81.43034165 79.78948121 78.17954495\n", + " 73.58021644 74.59400834 75.53901524 76.38685312 77.10589211 77.66330027\n", + " 78.02875412 78.17954495 78.66798463 80.65841057 82.69141578 84.75761477\n", + " 86.84771627 88.95113309 77.95267103 77.66228009 77.07171569 76.23019363\n", + " 75.19557036 74.02401451 89.12786485 87.06007007 84.97409331 82.90740441\n", + " 80.87177406 78.87718093 74.03267423 75.23268127 76.30156716 77.18237665\n", + " 77.81504555 78.14660304 77.97746528 77.97746528 78.18485708 78.18485708\n", + " 78.64134167 78.32984157 77.69918411 76.80616019 75.71557851 74.48840848\n", + " 80.62507537 80.23817759 79.46907283 78.40617113 77.13948546 75.74438817\n", + " 82.64779184 82.14857946 81.18831589 79.91227353 78.44384133 76.87031089\n", + " 84.69583972 84.01119948827789 29.64315294]\n", + " [14.19227819 29.64495136]\n", + " [ 8.81627849 29.64674978]\n", + " [ 3.44027879 29.6485482 ]\n", + " [30.31847887 24.2635564 ]\n", + " [24.94247917 24.26535482]\n", + " [19.56647947 24.26715324]\n", + " [14.19047977 24.26895166]\n", + " [ 8.81448007 24.27075007]\n", + " [ 3.43848037 24.2725485 ]\n", + " [30.31668045 18.8875567 ]\n", + " [24.94068075 18.88935513]\n", + " [19.56468105 18.89115354]\n", + " [14.18868135 18.89295196]\n", + " [ 8.81268165 18.89475038]\n", + " [ 3.43668195 18.89654879]\n", + " [30.31488203 13.51155701]\n", + " [24.93888233 13.51335542]\n", + " [19.56288263 13.51515384]\n", + " [14.18688293 13.51695226]\n", + " [ 8.81088324 13.51875068]\n", + " [ 3.43488354 13.5205491 ]\n", + " [30.31308361 8.13555731]\n", + " [24.93708392 8.13735572]\n", + " [19.56108422 8.13915414]\n", + " [14.18508451 8.14095256]\n", + " [ 8.80908482 8.14275098]\n", + " [ 3.43308512 8.1445494 ]\n", + " [30.31128519 2.75955761]\n", + " [24.93528549 2.76135602]\n", + " [19.5592858 2.76315444]\n", + " [14.18328609 2.76495286]\n", + " [ 8.8072864 2.76675128]\n", + " [ 3.4312867 2.7685497 ]]\n", + "DEBUG:root:radec2pix: xyfp Shape: (96, 2)\n", + " -1.03204842]\n", + " [-14.23692388 -1.034334 ]\n", + " [ -8.86092437 -1.03661958]\n", + " [ -3.48492485 -1.03890516]\n", + " [ -1.59965962 -29.81720927]\n", + " [ -1.59737405 -24.44120975]\n", + " [ -1.59508847 -19.06521024]\n", + " [ -1.59280289 -13.68921073]\n", + " [ -1.59051731 -8.31321121]\n", + " [ -1.58823174 -2.9372117 ]\n", + " [-32.27546357 -31.70166778]\n", + " [-32.27546357 -31.70166778]\n", + " [ -1.58742502 -1.03971187]\n", + " [ -1.58742502 -1.03971187]\n", + " [-30.37715702 -29.80497466]\n", + " [-25.00115751 -29.80726024]\n", + " [-19.625158 -29.80954582]\n", + " [-14.24915848 -29.8118314 ]\n", + " [ -8.87315897 -29.81411698]\n", + " [ -3.49715945 -29.81640256]\n", + " [-30.37487145 -24.42897515]\n", + " [-24.99887193 -24.43126073]\n", + " [-19.62287241 -24.43354631]\n", + " [-14.2468729 -24.43583188]\n", + " [ -8.87087339 -24.43811746]\n", + " [ -3.49487388 -24.44040305]\n", + " [-30.37258587 -19.05297564]\n", + " [-24.99658635 -19.05526122]\n", + " [-19.62058684 -19.05754679]\n", + " [-14.24458732 -19.05983237]\n", + " [ -8.86858781 -19.06211795]\n", + " [ -3.4925883 -19.06440353]\n", + " [-30.37030029 -13.67697612]\n", + " [-24.99430077 -13.6792617 ]\n", + " [-19.61830126 -13.68154728]\n", + " [-14.24230175 -13.68383286]\n", + " [ -8.86630223 -1DEBUG:root:radec2pix: lat: [73.30319327 74.28364829 75.19434757 76.00760673 76.6934474 77.22149469\n", + " 77.56431546 77.70181842 73.30319327 74.31487163 75.26252869 76.11836609\n", + " 76.85166299 77.43039612 77.8244634 78.01035447 77.70181842 79.30062777\n", + " 80.93200296 82.59063863 84.2712796 85.96832552 87.67438557 89.35703566\n", + " 78.01035447 79.61411514 81.24861046 82.90802789 84.58587071 86.27294722\n", + " 87.94616945 89.35703566 73.74128804 74.89975016 75.92621516 76.76637844\n", + " 77.36466213 77.67335289 73.7541097 74.95468773 76.03182731 76.93013306\n", + " 77.59097642 77.96138218 78.39443735 80.37649363 82.40216048 84.46173597\n", + " 86.54472647 88.63280521 78.70517127 80.69206097 82.71932817 84.7752745\n", + " 86.84188191 88.83673743 73.31017726 73.31017726 89.34933673 89.34933673\n", + " 74.20408349 75.46003419 76.59358943 77.54526674 78.24998117 78.64701061\n", + " 75.41740928 76.83842002 78.14733268 79.2729755 80.12769991 80.61933545\n", + " 76.49875662 78.09183026 79.59737911 80.93621381 81.99355302 82.62428133\n", + " 77.38945666 79.14833894 DEBUG:root:optics_fp: sphi: [-0.69747355 -0.64202319 -0.57428814 -0.49231086 -0.39479224 -0.28187416\n", + " -0.15594205 -0.02195087 -0.69747355 -0.74781736 -0.80071206 -0.85427043\n", + " -0.90541695 -0.94984347 -0.98249431 -0.9987529 -0.02195087 -0.02541825\n", + " -0.03017857 -0.03712011 -0.04818532 -0.06858898 -0.11863781 -0.41353071\n", + " -0.9987529 -0.9983174 -0.99760636 -0.99632728 -0.99366642 -0.9866058\n", + " -0.9558309 -0.41353071 -0.67484345 -0.59889188 -0.50249541 -0.38295557\n", + " -0.24062567 -0.080988 -0.71886442 -0.7824768 -0.84816774 -0.91078081\n", + " -0.96243143 -0.99390485 -0.02383323 -0.02898045 -0.03694547 -0.05091008\n", + " -0.08171193 -0.2044042 -0.99855963 -0.99785011 -0.99645076 -0.99306508\n", + " -0.98098067 -0.85635999 -0.69746902 -0.69746902 -0.41742381 -0.41742381\n", + " -0.6968586 -0.76308411 -0.83279855 -0.90064763 -0.95775728 -0.99310478\n", + " -0.62210517 -0.69461272 -0.77599583 -0.86128022 -0.93873226 -0.98974551\n", + " -0.52542175 -0.60021731 -0.69109478 -0.79651192 -0.90419742 -0.98319709\n", + " -0.40310226 -0.47191923DEBUG:root:optics_fp: rtanth: [45.12621722 42.17029986 39.48131725 37.11732942 35.14398081 33.63010767\n", + " 32.639706 32.22108294 45.12621722 42.10767167 39.34740219 36.90340926\n", + " 34.84231167 33.23542179 32.15091525 31.64254972 32.22108294 27.83664346\n", + " 23.45294788 19.07050919 14.69045227 10.31581149 5.95852807 1.75318507\n", + " 31.64254972 27.26187195 22.88339755 18.50869029 14.14124675 9.79079234\n", + " 5.49780688 1.75318507 43.79692971 40.34599343 37.35277865 34.93513576\n", + " 33.218972 32.31623807 43.77085556 40.23738319 37.14847194 34.62331124\n", + " 32.79239466 31.77595577 30.30982943 24.93681956 19.5654525 14.19759296\n", + " 8.839633 3.53685305 29.73311087 24.36567291 19.00307614 13.6510271\n", + " 8.32988182 3.19782325 45.10500496 45.10500496 1.7737717 1.7737717\n", + " 42.42166164 38.76540449 35.54881922 32.90111338 30.96854417 29.89014797\n", + " 38.84875172 34.81931533 31.19850449 28.14447363 25.85882561 24.55705763\n", + " 35.73032881 31.30200643 27.21722925 23.65464611 20.88324085 19.24785615\n", + " 33.19472902 28.37338973 23.79099004 19.61570597 16.16611847 13.98976784\n", + " 31.38353749 26.23138645 21.19074319 16.36497207 12.01581361 8.87411937\n", + " 30.4263959 25.07837271 19.74554986 14.44477252 9.23140937 4.4259617 ]\n", + "80.86043698 82.45133489 83.78724838 84.64121324\n", + " 78.02753384 79.92284226 81.82091734 83.6737055 85.37260957 86.62213831\n", + " 78.35820379 80.33138971 82.34363217 84.38015735 86.41373806 88.32724747]\n", + "3.68611844]\n", + " [ -3.49030272 -13.68840401]\n", + " [-30.36801471 -8.30097661]\n", + " [-24.9920152 -8.30326219]\n", + " [-19.61601568 -8.30554776]\n", + " [-14.24001617 -8.30783335]\n", + " [ -8.86401666 -8.31011893]\n", + " [ -3.48801714 -8.3124045 ]\n", + " [-30.36572914 -2.9249771 ]\n", + " [-24.98972962 -2.92726267]\n", + " [-19.6137301 -2.92954825]\n", + " [-14.23773059 -2.93183383]\n", + " [ -8.86173108 -2.93411941]\n", + " [ -3.48573156 -2.93640499]]\n", + " 82.77741875 81.24014725 79.55379065 77.80461009\n", + " 86.74476583 85.70761057 84.09008812 82.26687253 80.3773841 78.48020641\n", + " 88.67187538 86.89501933 84.87693536 82.83944721 80.82012657 78.83603949]\n", + "1614388]\n", + " [27.849392 DEBUG:root:radec2pix: xyfp Shape: (96, 2)\n", + "DEBUG:root:make_az_asym: xyp: shape: (96, 2)\n", + " -0.56346867 -0.68479813 -0.83377108 -0.9677645\n", + " -0.2547217 -0.30487255 -0.37769207 -0.48994442 -0.67029166 -0.91697776\n", + " -0.08601994 -0.10436806 -0.13256201 -0.18124971 -0.28404496 -0.60207682]\n", + " 31.31857712]\n", + " [23.46296411 31.32101035]\n", + " [19.07653621 31.32344358]\n", + " [14.69010831 31.3258768 ]\n", + " [10.30368042 31.32831004]\n", + " [ 5.91725252 31.33074327]\n", + " [ 1.53082462 31.3331765 ]\n", + " [32.21878728 0.61114861]\n", + " [27.83235938 0.61358184]\n", + " [23.44593149 0.61601507]\n", + " [19.0595036 0.6184483 ]\n", + " [14.6730757 0.62088153]\n", + " [10.2866478 0.62331476]\n", + " [ 5.90021991 0.625748 ]\n", + " [ 1.513792 0.62818122]\n", + " [ 1.53082462 31.3331765 ]\n", + " [ 1.52839139 26.94674861]\n", + " [ 1.52595816 22.5603207 ]\n", + " [ 1.52352493 18.17389281]\n", + " [ 1.5210917 13.78746492]\n", + " [ 1.51865847 9.40103702]\n", + " [ 1.51622524 5.01460912]\n", + " [ 1.513792 0.62818122]\n", + " [32.219759 29.4036525 ]\n", + " [32.21677684 24.02765333]\n", + " [32.21379467 18.65165415]\n", + " [32.21081251 13.27565498]\n", + " [32.20783035 7.89965581]\n", + " [32.20484818 2.52365664]\n", + " [30.32331188 31.30220479]\n", + " [24.9473127 31.30518695]\n", + " [19.57131353 31.30816912]\n", + " [14.19531435 31.31115127]\n", + " [ 8.81931518 31.31413344]\n", + " [ 3.44331601 31.3171156 ]\n", + " [30.3062959 0.62720951]\n", + " [24.93029672 0.63019167]\n", + " [19.55429755 0.63317383]\n", + " [14.17829838 0.636156 ]\n", + " [ 8.80229921 0.63913816]\n", + " [ 3.42630004 0.64212033]\n", + " [ 1.54476372 29.42066847]\n", + " [ 1.54178156 24.0446693 ]\n", + " [ 1.53879939 18.66867013]\n", + " [ 1.53581723 13.29267096]\n", + " [ 1.53283507 7.91667178]\n", + " [ 1.5298529 2.54067261]\n", + " [32.22081158 31.30115221]\n", + " [32.22081158 31.30115221]\n", + " [ 1.52880032 0.6431729 ]\n", + " [ 1.52880032 0.6431729 ]\n", + " [30.32225929 29.40470508]\n", + " [24.94626012 29.40768724]\n", + " [19.57026095 29.41066941]\n", + " [14.19426178 29.41365157]\n", + " [ 8.8182626 29.41663373]\n", + " [ 3.44226343 29.4196159 ]\n", + " [30.31927713 24.02870591]\n", + " [24.94327796 24.03168807]\n", + " [19.56727878 24.03467023]\n", + " [14.19127961 24.0376524 ]\n", + " [ 8.81528044 24.04063456]\n", + " [ 3.43928127 24.04361672]\n", + " [30.31629496 18.65270673]\n", + " [24.9402958 18.6556889 ]\n", + " [19.56429662 18.65867106]\n", + " [14.18829744 18.66165322]\n", + " [ 8.81229827 18.66463538]\n", + " [ 3.4362991 18.66761755]\n", + " [30.31331281 13.27670756]\n", + " [24.93731363 13.27968972]\n", + " [19.56131446 13.28267189]\n", + " [14.18531529 13.28565406]\n", + " [ 8.80931611 13.28863621]\n", + " [ 3.43331694 13.29161838]\n", + " [30.31033064 7.90070839]\n", + " [24.93433147 7.90369055]\n", + " [19.55833229 7.90667271]\n", + " [14.18233312 7.90965488]\n", + " [ 8.80633395 7.91263704]\n", + " [ 3.43033477 7.9156192 ]\n", + " [30.30734847 2.52470921]\n", + " [24.9313493 2.52769138]\n", + " [19.55535013 2.53067354]\n", + " [14.17935096 2.53365571]\n", + " [ 8.80335178 2.53663787]\n", + " [ 3.42735261 2.53962004]]\n", + "DEBUG:root:radec2pix: fitpx: [[2135.5 4155.49999984]\n", + " [2135.5 3863.07142868]\n", + " [2135.5 3570.64285754]\n", + " [2135.5 3278.21428588]\n", + " [2135.5 2985.78571458]\n", + " [2135.5 2693.35714314]\n", + " [2135.5 2400.92857131]\n", + " [2135.50000005 2108.49999975]\n", + " [2135.5 4155.49999984]\n", + " [1843.07142855 4155.50000013]\n", + " [1550.64285718 4155.49999985]\n", + " [1258.21428582 4155.49999974]\n", + " [ 965.78571443 4155.49999975]\n", + " [ 673.35714268 4155.50000026]\n", + " [ 380.92857156 4155.49999984]\n", + " [ 88.49999989 4155.50000011]\n", + " [2135.50000005 2108.49999975]\n", + " [1843.07142845 2108.50000002]\n", + " [1550.64285702 2108.50000001]\n", + " [1258.21428598 2108.49999998]\n", + " [ 965.78571394 2108.50000002]\n", + " [ 673.35714284 2108.5 ]\n", + " [ 380.92857156 2108.5 ]\n", + " [ 88.49999977 2108.50000001]\n", + " [ 88.49999989 4155.50000011]\n", + " [ 88.49999981 3863.07142874]\n", + " [ 88.49999988 3570.64285723]\n", + " [ 88.49999983 3278.21428582]\n", + " [ 88.5000001 2985.78571424]\n", + " [ 88.50000005 2693.35714284]\n", + " [ 88.49999995 2400.92857144]\n", + " [ 88.49999977 2108.50000001]\n", + " [2134.5 4028.00000026]\n", + " [2134.5 3669.59999996]\n", + " [2134.5 3311.20000006]\n", + " [2134.5 2952.80000018]\n", + " [2134.50000001 2594.39999977]\n", + " [2134.49999998 2236.00000029]\n", + " [2008.00000002 4154.49999972]\n", + " [1649.59999996 4154.50000015]\n", + " [1291.19999992 4154.5000002 ]\n", + " [ 932.79999984 4154.50000027]\n", + " [ 574.40000018 4154.49999976]\n", + " [ 215.99999983 41DEBUG:root:optics_fp: xyfp shape: (96, 2)\n", + "DEBUG:root:optics_fp: cphi: [0.713738 0.76376784 0.81578691 0.86774466 0.91646952 0.95772545\n", + " 0.98678686 0.99960811 0.713738 0.66073156 0.59560321 0.51618565\n", + " 0.42082689 0.3091928 0.18318995 0.04750869 0.99960811 0.99947492\n", + " 0.99926025 0.99888104 0.99811368 0.99617106 0.98847974 0.85755676\n", + " 0.04750869 0.05514364 0.06569574 0.08122479 0.10631221 0.15355346\n", + " 0.27346048 0.85755676 0.73505851 0.79793137 0.86187328 0.92151896\n", + " 0.96912745 0.99620029 0.69214539 0.6193195 0.5260996 0.40919818\n", + " 0.26810473 0.10749625 0.99954227 0.99932373 0.99890128 0.99791251\n", + " 0.99460641 0.9658178 0.05106448 0.06231447 0.07990085 0.11122898\n", + " 0.18228563 0.4748373 0.71374111 0.71374111 0.85606035 0.85606035\n", + " 0.71415887 0.64283622 0.5497737 0.43061783 0.28389471 0.11427866\n", + " 0.7798406 0.71568995 0.62643496 0.50339666 0.33999355 0.13909785\n", + " 0.84790325 0.79611069 0.71806949 0.59894626 0.42100084 0.17746713\n", + " 0.9126717 0.87828385 0.82148283 0.72227275 0.54384668 0.254.50000019]\n", + " [2007.99999997 2109.50000001]\n", + " [1649.60000009 2109.49999999]\n", + " [1291.20000024 2109.49999998]\n", + " [ 932.80000011 2109.5 ]\n", + " [ 574.40000007 2109.5 ]\n", + " [ 216.00000022 2109.49999999]\n", + " [ 89.50000011 4027.99999989]\n", + " [ 89.49999997 3669.60000003]\n", + " [ 89.49999978 3311.20000014]\n", + " [ 89.49999974 2952.80000012]\n", + " [ 89.49999998 2594.4 ]\n", + " [ 89.50000005 2236. ]\n", + " [2134.5 4154.49999985]\n", + " [2134.5 4154.49999985]\n", + " [ 89.49999982 2109.5 ]\n", + " [ 89.49999982 2109.5 ]\n", + " [2007.99999998 4028.00000026]\n", + " [1649.60000006 4027.99999978]\n", + " [1291.19999989 4028.00000025]\n", + " [ 932.8000001 4027.99999984]\n", + " [ 574.40000016 4027.9999998 ]\n", + " [ 215.99999996 4028.00000004]\n", + " [2007.99999998 3669.60000024]\n", + " [1649.59999998 3669.60000005]\n", + " [1291.20000009 3669.59999982]\n", + " [ 932.79999983 3669.60000022]\n", + " [ 574.39999986 3669.60000015]\n", + " [ 216.00000022 3669.59999982]\n", + " [2007.99999999 3311.20000008]\n", + " [1649.59999996 3311.2000001 ]\n", + " [1291.19999979 3311.20000031]\n", + " [ 932.80000004 3311.19999DEBUG:root:optics_fp: xyfp: [[32.275486 31.41357429]\n", + " [32.27502267 27.02714574]\n", + " [32.27455935 22.64071719]\n", + " [32.27409601 18.25428864]\n", + " [32.27363269 13.8678601 ]\n", + " [32.27316936 9.48143155]\n", + " [32.27270604 5.095003 ]\n", + " [32.27224271 0.70857446]\n", + " [32.275486 31.41357429]\n", + " [27.88905745 31.41403761]\n", + " [23.5026289 31.41450094]\n", + " [19.11620036 31.41496427]\n", + " [14.72977181 31.41542759]\n", + " [10.34334326 31.41589092]\n", + " [ 5.95691471 31.41635424]\n", + " [ 1.57048617 31.41681757]\n", + " [32.27224271 0.70857446]\n", + " [27.88581416 0.70903778]\n", + " [23.49938562 0.70950111]\n", + " [19.11295707 0.70996444]\n", + " [14.72652852 0.71042776]\n", + " [10.34009998 0.71089109]\n", + " [ 5.95367142 0.71135442]\n", + " [ 1.56724288 0.71181774]\n", + " [ 1.57048617 31.41681757]\n", + " [ 1.57002284 27.03038902]\n", + " [ 1.56955951 22.64396047]\n", + " [ 1.56909619 18.25753194]\n", + " [ 1.56863286 13.87110338]\n", + " [ 1.56816953 9.48467484]\n", + " [ 1.56770621 5.09824629]\n", + " [ 1.56724288 0.71181774]\n", + " [32.26028399 29.50107588]\n", + " [32.25971613 24.12507591]\n", + " [32.25914828 18.74907594]\n", + " [32.25858043 13.37307597]\n", + "DEBUG:root:optics_fp: rtanth: [44.94272969 42.00239064 39.33235561 36.99120283 35.04490673 33.56223174\n", + " 32.60648436 32.22458311 44.94272969 41.90992612 39.13459306 36.67522804\n", + " 34.59927513 32.97921831 31.88462562 31.37054947 32.22458311 27.83912196\n", + " 23.45402264 19.06953475 14.68620592 10.30551524 5.93330899 1.63895634\n", + " 31.37054947 26.99005818 22.61186898 18.23763988 13.87111779 9.5229103\n", + " 5.23882082 1.63895634 43.61980801 40.19015843 37.22381993 34.83933779\n", + " 33.16246218 32.30357703 43.58131788 40.02977818 36.92204987 34.37870189\n", + " 32.5323727 31.50584319 30.31278547 24.93826049 19.56454604 14.19256282\n", + " 8.82547273 3.48595044 29.4611953 24.09404931 18.73198196 13.38109994\n", + " 8.0637011 2.9657153 44.92151855 44.92151855 1.65858428 1.65858428\n", + " 42.23832489 38.56329813 35.32679703 32.65945447 30.7099348 29.62031359\n", + " 38.68639649 34.63652908 30.99264061 27.91417471 25.60588368 24.28835443\n", + " 35.59496044 31.14567519 27.03530484 23.44280455 20.64037826 18.98125646\n", + " 33.09332103 28.252783DEBUG:root:optics_fp: rtanth: [31.45867372 27.07232164 22.68599914 18.29972749 13.91355478 9.52761765\n", + " 5.14251895 0.77266756 31.45867372 31.78680319 32.70527593 34.16651578\n", + " 36.10468169 38.44771501 41.12647627 44.07980062 0.77266756 4.62057574\n", + " 8.9768556 13.35288972 17.73406053 22.11731568 26.50162097 30.8865292\n", + " 44.07980062 41.06447698 38.31494783 35.89234872 33.86691125 32.31340541\n", + " 31.3021752 30.8865292 29.54629558 24.17042769 18.79463536 13.41900945\n", + " 8.04388357 2.67227674 31.51224371 32.31623619 33.96261905 36.33706944\n", + " 39.30786805 42.7508727 2.22187045 7.50028847 12.8598094 18.22903784\n", + " 23.60134944 28.97502929 42.72508353 39.20023922 36.1342981 33.65291956\n", + " 31.89283999 30.97725364 31.44375973 31.44375973 30.87190328 30.87190328\n", + " 29.6191671 30.47314683 32.21386423 34.70815714 37.80716925 41.37524227\n", + " 24.25945282 25.29503252 27.36711605 30.26354513 33.77288911 37.72448364\n", + " 18.90898716 20.22047017 22.759345 26.17080258 30.16018539 34.5277484\n", + " 13.57870729 15.3524887DEBUG:root:radec2pix: xyfp: [[-32.29046994 -31.71666141]\n", + " [-32.28860507 -27.33023323]\n", + " [-32.2867402 -22.94380505]\n", + " [-32.28487534 -18.55737688]\n", + " [-32.28301047 -14.1709487 ]\n", + " [-32.2811456 -9.78452053]\n", + " [-32.27928073 -5.39809235]\n", + " [-32.27741587 -1.01166418]\n", + " [-32.29046994 -31.71666141]\n", + " [-27.90404176 -31.71852627]\n", + " [-23.51761359 -31.72039114]\n", + " [-19.13118541 -31.722256 ]\n", + " [-14.74475724 -31.72412087]\n", + " [-10.35832906 -31.72598574]\n", + " [ -5.97190089 -31.72785061]\n", + " [ -1.58547272 -31.72971547]\n", + " [-32.27741587 -1.01166418]\n", + " [-27.8909877 -1.01352905]\n", + " [-23.50455952 -1.01539391]\n", + " [-19.11813134 -1.01725878]\n", + " [-14.73170317 -1.01912365]\n", + " [-10.345275 -1.02098851]\n", + " [ -5.95884682 -1.02285338]\n", + " [ -1.57241864 -1.02471825]\n", + " [ -1.58547272 -31.72971547]\n", + " [ -1.58360785 -27.3432873 ]\n", + " [ -1.58174298 -22.95685912]\n", + " [ -1.57987811 -18.57043094]\n", + " [ -1.57801325 -14.18400278]\n", + " [ -1.57614838 -9.7975746 ]\n", + " [ -1.57428351 -5.41114642]\n", + " [ -1.57241864 -1.02471825]\n", + " [-32.27465685 -29.80416795]\n", + " [-32.27237127 DEBUG:root:mm_to_pix: fitpx: [[0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]]\n", + "996]\n", + " [ 574.39999992 3311.20000007]\n", + " [ 216.00000024 3311.19999984]\n", + " [2008.00000001 2952.79999992]\n", + " [1649.6000001 2952.79999982]\n", + " [1291.20000006 2952.79999994]\n", + " [ 932.79999988 2952.80000009]\n", + " [ 574.39999983 2952.8000001 ]\n", + " [ 215.99999999 2952.8 ]\n", + " [2008.00000001 2594.39999996]\n", + " [1649.60000003 2594.39999997]\n", + " [1291.19999974 2594.40000016]\n", + " [ 932.80000041 2594.39999982]\n", + " [ 574.40000002 2594.39999999]\n", + " [ 215.99999998 2594.40000001]\n", + " [2008.00000001 2235.99999999]\n", + " [1649.59999976 2236.00000009]\n", + " [1291.19999986 2236.00000003]\n", + " [ 932.79999992 2236.00000001]\n", + " [ 574.39999976 2236.00000003]\n", + " [ 216.00000019 2235.99999998]]\n", + "4417059\n", + " 0.96534426 0.95000384 0.92228562 0.86574653 0.73169559 0.38493034\n", + " 0.9957126 0.99368273 0.9897899 0.98083551 0.95239474 0.77179741]\n", + " [32.25801258 7.997076 ]\n", + " [32.25744472 2.62107603]\n", + " [30.36298443 31.3987763 ]\n", + " [24.98698446 31.39934415]\n", + " [19.61098448 31.399912 ]\n", + " [14.23498451 31.40047985]\n", + " [ 8.85898454 31.40104771]\n", + " [ 3.48298457 31.40161556]\n", + " [30.35974431 0.72377647]\n", + " [24.98374433 0.72434432]\n", + " [19.60774436 0.72491217]\n", + " [14.23174439 0.72548003]\n", + " [ 8.85574442DEBUG:root:mm_to_pix: fitpx.shape: (96, 2)\n", + "DEBUG:root:mm_to_pix: fitpx: [[0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]]\n", + "41 23.64475409 19.43532283 15.94339684 13.72788346\n", + " 31.32311186 26.15701072 21.09606209 16.23887967 11.83897557 8.62694755\n", + " 30.41232527 25.05915804 19.71841847 14.40393713 9.16152467 4.26572571]\n", + " 0.72604788]\n", + " [ 3.47974445 0.72661573]\n", + " [ 1.58528416 29.504316 ]\n", + " [ 1.5847163 24.12831603]\n", + " [ 1.58414845 18.75231606]\n", + " [ 1.5835806 13.37631609]\n", + " [ 1.58301275 8.00031612]\n", + " [ 1.5824449 2.62431615]\n", + " [32.26048441 31.39857587]\n", + " [32.26048441 31.39857587]\n", + " [ 1.58224447 0.72681616]\n", + " [ 1.58224447 0.72681616]\n", + " [30.36278399 29.50127631]\n", + " [24.98678403 29.50184416]\n", + " [19.61078405 29.50241201]\n", + " [14.23478409 29.50297987]\n", + " [ 8.85878411 29.50354772]\n", + " [ 3.48278414 29.50411557]\n", + " [30.36221615 24.12527634]\n", + " [24.98621618 24.12584419]\n", + " [19.6102162 24.12641204]\n", + " [14.23421623 24.1269799 ]\n", + " [ 8.85821626 24.12754775]\n", + " [ 3.48221629 24.1281156 ]\n", + " [30.36164829 18.74927637]\n", + " [24.98564832 18.74984422]\n", + " [19.60964835 18.75041208]\n", + " [14.23364838 18.75097993]\n", + " [ 8.85764841 18.75154778]\n", + " [ 3.48164844 18.75211563]\n", + " [30.36108043 13.3732764 ]\n", + " [24.98508046 13.37384425]\n", + " [19.60908049 -24.42816844]\n", + " [-32.2700857 -19.05216893]\n", + " [-32.26780012 -13.67616941]\n", + " [-32.26551454 -8.3001699 ]\n", + " [-32.26322896 -2.92417038]\n", + " [-30.37796373 -31.70247449]\n", + " [-25.00196422 -31.70476008]\n", + " [-19.62596471 -31.70704565]\n", + " [-14.24996519 -31.70933123]\n", + " [ -8.87396568 -31.71161681]\n", + " [ -3.49796617 -31.71390239]\n", + " [-30.36492242 -1.02747727]\n", + " [-24.98892291 -1.02976285]\n", + " [-19.61292339 -1.03204842]\n", + " [-14.23692388 -1.034334 ]\n", + " [ -8.86092437 -1.03661958]\n", + " [ -3.48492485 -1.03890516]\n", + " [ -1.59965962 -29.81720927]\n", + " [ -1.59737405 -24.44120975]\n", + " [ -1.59508847 -19.06521024]\n", + " [ -1.59280289 -13.68921073]\n", + " [ -1.59051731 -8.31321121]\n", + " [ -1.58823174 -2.9372117 ]\n", + " [-32.27546357 -31.70166778]\n", + " [-32.27546357 -31.70166778]\n", + " [ -1.58742502 -1.03971187]\n", + " [ -1.58742502 -1.03971187]\n", + " [-30.37715702 -29.80497466]\n", + " [-25.00115751 -29.80726024]\n", + " [-19.625158 -29.80954582]\n", + " [-14.24915848 -29.8118314 ]\n", + " [ -8.87315897 -29.81411698]\n", + " [ -3.49715945 -29.81640256]\n", + " [-30.37487145 -24.42897515]\n", + " [-24.99887193 -24.43126073]\n", + "DEBUG:root:mm_to_pix: fitpx.shape: (96, 2)\n", + "DEBUG:root:fitpix2pix: ccdpx: shape: (96, 2)\n", + "4 18.5693102 22.62172417 27.13794906 31.92173094\n", + " 8.30755918 10.96964715 15.14772357 19.90921024 24.92192864 30.06045831\n", + " 3.38416012 7.92276206 13.11070286 18.40689143 23.73898749 29.08725072]\n", + " [-19.62287241 -24.43354631]\n", + " [-14.2468729 -24.43583188]\n", + " [ -8.87087339 -24.43811746]\n", + " [ -3.49487388 -24.44040305]\n", + " [-30.37258587 -19.05297564]\n", + " [-24.99658635 -19.05526122]\n", + " [-19.62058684 -19.05754679]\n", + " [-14.24458732 -19.05983237]\n", + " [ -8.86858781 -19.06211795]\n", + " [ -3.4925883 -19.06440353]\n", + " [-30.37030029 -13.67697612]\n", + " [-24.99430077 -13.6792617 ]\n", + " [-19.61830126 -13.68154728]\n", + " [-14.24230175 -13.68383286]\n", + " [ -8.86630223 -13.68611844]\n", + " [ -3.49030272 -13.68840401]\n", + " [-30.36801471 -8.30097661]\n", + " [-24.9920152 -8.30326219]\n", + " [-19.61601568 -8.30554776]\n", + " [-14.24001617 -8.30783335]\n", + " [ -8.86401666 -8.31011893]\n", + " [ -3.48801714 -8.3124045 ]\n", + " [-30.36572914 -2.9249771 ]\n", + " [-24.98972962 -2.92726267]\n", + " [-19.6137301 -2.92954825]\n", + " [-14.23773059 -2.93183383]\n", + " [ -8.86173108 -2.93411941]\n", + " [ -3.48573156 -2.93640499]]\n", + "13.3744121 ]\n", + " [14.23308053 13.37497996]\n", + " [ 8.85708056 13.37554781]\n", + " [ 3.48108059 13.37611567]\n", + " [30.36051258 7.99727643]\n", + " [24.98451261 7.99784428]\n", + " [19.60851265 7.99841214]\n", + " [14.23251268 7.99897999]\n", + " [ 8.85651271 7.99954784]\n", + " [ 3.48051273 8.00011569]\n", + " [30.35994473 2.62127646]\n", + " [24.98394476 2.62184431]\n", + " [19.60794479 2.62241216]\n", + " [14.23194482 2.62298002]\n", + " [ 8.85594485 2.62354787]\n", + " [ 3.47994488 2.62411572]]\n", + "DEBUG:root:fitpix2pix: visCut: True\n", + "DEBUG:root:optics_fp: sphi: [0.70041278 0.64549104 0.5783526 0.49701026 0.40010451 0.28768378\n", + " 0.16202376 0.02799345 0.70041278 0.75062228 0.80327879 0.85647672\n", + " 0.90714096 0.95099938 0.98307754 0.99887082 0.02799345 0.03240177\n", + " 0.03845716 0.04729349 0.06139281 0.08742554 0.15135324 0.51438935\n", + " 0.99887082 0.99847843 0.9978397 0.99669581 0.9943328 0.98814034\n", + " 0.96188324 0.51438935 0.67800368 0.60274831 0.5071237 0.38833338\n", + " 0.24656029 0.0870918 0.7217581 0.78513907 0.85042296 0.91244553\n", + " 0.96338977 0.99420549 0.03025321 0.03677059 0.04686391 0.06458036\n", + " 0.10372123 0.25922188 0.99869536 0.99805657 0.99680282 0.9937948\n", + " 0.98324562 0.8800736 0.70040962 0.70040962 0.51687588 0.51687588\n", + " 0.69998365 0.76600365 0.83531364 0.90253437 0.95885546 0.99344873\n", + " 0.62597814 0.69841814 0.77947369 0.86405544 0.94042777 0.99027864\n", + " 0.530151 0.60515103 0.69597142 0.80078922 0.90706025 0.98412673\n", + " 0.40869348 0.47813961 0.57023325 0.69160833 0.8391846 0.9697323\n", + " 0.2609798 0.31223822 0.38650903 0.50048271 0.68163155 0.92294563\n", + " 0.09250092 0.11222584 0.14253407 0.19483765 0.3048676 0.63586851]\n", + "DEBUG:root:make_az_asym: xyp: [[32.2358199 31.31614388]\n", + " [32.23338667 26.92971599]\n", + " [32.23095344 22.54328809]\n", + " [32.2285202 18.15686019]\n", + " [32.22608698 13.7704323 ]\n", + " [32.22365375 9.3840044 ]\n", + " [32.22122051 4.99757651]\n", + " [32.21878728 0.61114861]\n", + " [32.2358199 31.31614388]\n", + " [27.849392 31.31857712]\n", + " [23.46296411 31.32101035]\n", + " [19.07653621 31.32344358]\n", + " [14.69010831 31.3258768 ]\n", + " [10.30368042 31.32831004]\n", + " [ 5.91725252 31.33074327]\n", + " [ 1.53082462 31.3331765 ]\n", + " [32.21878728 0.61114861]\n", + " [27.83235938 0.61358184]\n", + " [23.44593149 0.61601507]\n", + " [19.0595036 0.6184483 ]\n", + " [14.6730757 0.62088153]\n", + " [10.2866478 0.62331476]\n", + " [ 5.90021991 0.625748 ]\n", + " [ 1.513792 0.62818122]\n", + " [ 1.53082462 31.3331765 ]\n", + " [ 1.52839139 26.94674861]\n", + " [ 1.52595816 22.5603207 ]\n", + " [ 1.52352493 18.17389281]\n", + " [ 1.5210917 13.78746492]\n", + " [ 1.51865847 9.40103702]\n", + " [ 1.51622524 5.01460912]\n", + " [ 1.513792 0.62818122]\n", + " [32.219759 29.4036525 ]\n", + " [32.21677684 24.02765333]\n", + " [32.21379467 18.65165415]\n", + " [32.21081251 13.27565498]\n", + " [32.20783035 7.89965581]\n", + " [32.20484818 2.52365664]\n", + " [30.32331188 31.30220479]\n", + " [24.9473127 31.30518695]\n", + " [19.57131353 31.30816912]\n", + " [14.19531435 31.31115127]\n", + " [ 8.81931518 31.31413344]\n", + " [ 3.44331601 31.3171156 ]\n", + " [30.3062959 0.62720951]\n", + " [24.93029672 0.63019167]\n", + " [19.55429755 0.63317383]\n", + " [14.17829838 0.636156 ]\n", + " [ 8.80229921 0.63913DEBUG:root:radec2pix: xyfp Shape: (96, 2)\n", + "816]\n", + " [ 3.42630004 0.64212033]\n", + " [ 1.54476372 29.42066847]\n", + " [ 1.54178156 24.0446693 ]\n", + " [ 1.53879939 18.66867013]\n", + " [ 1.53581723 13.29267096]\n", + " [ 1.53283507 7.91667178]\n", + " [ 1.5298529 2.54067261]\n", + " [32.22081158 31.30115221]\n", + " [32.22081158 31.30115221]\n", + " [ 1.52880032 0.6431729 ]\n", + " [ 1.52880032 0.6431729 ]\n", + " [30.32225929 29.40470508]\n", + " [24.94626012 29.40768724]\n", + " [19.57026095 29.41066941]\n", + " [14.19426178 29.41365157]\n", + " [ 8.8182626 29.41663373]\n", + " [ 3.44226343 29.4196159 ]\n", + " [30.31927713 24.02870591]\n", + " [24.94327796 24.03168807]\n", + " [19.56727878 24.03467023]\n", + " [14.19127961 24.0376524 ]\n", + " [ 8.81528044 24.04063456]\n", + " [ 3.43928127 24.04361672]\n", + " [30.31629496 18.65270673]\n", + " [24.9402958 18.6556889 ]\n", + " [19.56429662 18.65867106]\n", + " [14.18829744 18.66165322]\n", + " [ 8.81229827 18.66463538]\n", + " [ 3.4362991 18.66761755]\n", + " [30.31331281 13.27670756]\n", + " [24.93731363 13.27968972]\n", + " [19.56131446 13.28267189]\n", + " [14.18531529 13.28565406]\n", + " [ 8.80931611 13.28863621]\n", + " [ 3.43331694 13.29161838]\n", + " [30.31033064 7.90070839]\n", + " [24.93433147 7.90369055]\n", + " [19.55833229 7.90667271]\n", + " [14.18233312 7.90965488]\n", + " [ 8.80633395 7.91263704]\n", + " [ 3.43033477 7.9156192 ]\n", + " [30.30734847 2.52470921]\n", + " [24.9313493 2.52769138]\n", + " [19.55535013 2.53067354]\n", + " [14.17935096 2.53365571]\n", + " [ 8.80335178 2.53663787]\n", + " [ 3.42735261 2.53962004]]\n", + "DEBUG:root:optics_fp: xyfp shape: (96, 2)\n", + "DEBUG:root:optics_fp: cphi: [-0.0055044 -0.00639203 -0.0076229 -0.00944382 -0.01241274 -0.01811485\n", + " -0.0335395 -0.22307599 -0.0055044 -0.14344285 -0.2735344 -0.39021968\n", + " -0.49076392 -0.57494454 -0.64415274 -0.70050591 -0.22307599 -0.98662859\n", + " -0.99647595 -0.9984093 -0.99909876 -0.99942085 -0.99959678 -0.99970325\n", + " -0.70050591 -0.75194059 -0.80589783 -0.86028974 -0.91173668 -0.955566\n", + " -0.98643233 -0.99970325 -0.00636666 -0.00777693 -0.00999392 -0.01398706\n", + " -0.02331621 -0.07013242 -0.06618572 -0.2308951 -0.37799383 -0.50124187\n", + " -0.60012567 -0.67754548 -0.93833732 -0.9947436 -0.99821572 -0.99911274\n", + " -0.99947098 -0.99964917 -0.72236515 -0.7873159 -0.85411461 -0.91708811\n", + " -0.96769535 -0.99629275 -0.00598404 -0.00598404 -0.999691 -0.999691\n", + " -0.07041425 -0.24485858 -0.398512 -0.52476457 -0.62394545 -0.7000711\n", + " -0.08596532 -0.29497775 -0.46908383 -0.60182876 -0.69847361 -0.76781625\n", + " -0.11028259 -0.36899894 -0.56404664 -0.69594091 -0.78213485 -0.83890011\n", + " -0.1535634 -0.48599238 -0.6913123 -0.80511955 -0.86923269 -0.90738164\n", + " -0.25098261 -0.68015432 -0.84745756 -0.91480539 -0.94651795 -0.96355992\n", + " -0.61607996 -0.94170609 -0.97911709 -0.98946165 -0.99367815 -0.99579412]\n", + "DEBUG:root:optics_fp: cphi: [-0.7172644 -0.76741791 -0.81945139 -0.87124824 -0.91956549 -0.96011654\n", + " -0.98818444 -0.99982014 -0.7172644 -0.66450587 -0.59954537 -0.52014772\n", + " -0.4245785 -0.31242949 -0.18558325 -0.04879815 -0.99982014 -0.99975708\n", + " -0.99965502 -0.99947397 -0.99910595 -0.99816919 -0.99442317 -0.92363168\n", + " -0.04879815 -0.05662794 -0.06748483 -0.0835374 -0.10965891 -0.1594742\n", + " -0.28942109 -0.92363168 -0.73864972 -0.80160861 -0.86540DEBUG:root:radec2pix: curVec: [[ 0.2352025 -0.93983941 0.24775323]\n", + " [ 0.2301615 -0.93360287 0.27461129]\n", + " [ 0.22483357 -0.92648729 0.30178 ]\n", + " [ 0.21923034 -0.91848069 0.32913718]\n", + " [ 0.21336536 -0.90958021 0.35656565]\n", + " [ 0.20725461 -0.89979288 0.3839509 ]\n", + " [ 0.20091706 -0.88913666 0.4111792 ]\n", + " [ 0.19437487 -0.87764113 0.43813748]\n", + " [ 0.2352025 -0.93983941 0.24775323]\n", + " [ 0.26284388 -0.93159149 0.25109836]\n", + " [ 0.29015923 -0.92256736 0.25431691]\n", + " [ 0.31704425 -0.9128127 0.25740223]\n", + " [ 0.34339766 -0.90238282 0.26035226]\n", + " [ 0.36912144 -0.89134235 0.26316947]\n", + " [ 0.39412158 -0.87976498 0.26586041]\n", + " [ 0.41830991 -0.86773259 0.2684343 ]\n", + " [ 0.19437487 -0.87764113 0.43813748]\n", + " [ 0.22298981 -0.86913628 0.44144951]\n", + " [ 0.25131099 -0.85987794 0.44435651]\n", + " [ 0.27922932 -0.84991395 0.44685263]\n", + " [ 0.30664233 -0.83930067 0.44893748]\n", + " [ 0.33345391 -0.82810254 0.45061589]\n", + " [ 0.35957229 -0.81639228 0.45189757]\n", + " [ 0.38490758 -0.80425187 0.45279696]\n", + " [ 0.41830991 -0.86773259 0.26843DEBUG:root:optics_fp: sphi: [0.99998485 0.99997957 0.99997095 0.99995541 0.99992296 0.99983591\n", + " 0.99943739 0.97480106 0.99998485 0.9896586 0.96186222 0.92072178\n", + " 0.87129259 0.81819238 0.76489689 0.7136466 0.97480106 0.16298472\n", + " 0.08387896 0.05638146 0.04244609 0.03402888 0.028395 0.02436013\n", + " 0.7136466 0.65923088 0.59205464 0.50980542 0.41077515 0.29477725\n", + " 0.16416841 0.02436013 0.99997973 0.99996976 0.99995006 0.99990218\n", + " 0.99972814 0.99753769 0.99780732 0.97297865 0.92580811 0.86530722\n", + " 0.79990573 0.73548088 0.34572109 0.10239711 0.0597107 0.0421157\n", + " 0.0325231 0.02648658 0.69151182 0.61654981 0.52008483 0.39868458\n", + " 0.25212242 0.08602764 0.9999821 0.9999821 0.02485756 0.02485756\n", + " 0.99751784 0.96955881 0.91716312 0.8512474 0.7814679 0.71407315\n", + " 0.99629813 0.95550412 0.88315364 0.79862516 0.71563581 0.64067012\n", + " 0.99390027 0.92942982 0.82574293 0.71809906 0.6231092 0.5442854\n", + " 0.9881388 0.87396305 0.72255609 0.59311256 0.49440321 0.4203077\n", + " 0.9679916 0.73306896 0.53086315 0.4DEBUG:root:optics_fp: xyfp: [[-32.208296 -31.60697943]\n", + " [-32.20831882 -27.22055086]\n", + " [-32.20834163 -22.83412229]\n", + " [-32.20836444 -18.44769372]\n", + " [-32.20838725 -14.06126515]\n", + " [-32.20841007 -9.67483658]\n", + " [-32.20843288 -5.288408 ]\n", + " [-32.2084557 -0.90197943]\n", + " [-32.208296 -31.60697943]\n", + " [-27.82186743 -31.60695662]\n", + " [-23.43543886 -31.60693381]\n", + " [-19.04901029 -31.60691099]\n", + " [-14.66258171 -31.60688818]\n", + " [-10.27615314 -31.60686536]\n", + " [ -5.88972457 -31.60684255]\n", + " [ -1.503296 -31.60681974]\n", + " [-32.2084557 -0.90197943]\n", + " [-27.82202712 -0.90195662]\n", + " [-23.43559855 -0.9019338 ]\n", + " [-19.04916999 -0.90191099]\n", + " [-14.66274141 -0.90188818]\n", + " [-10.27631284 -0.90186536]\n", + " [ -5.88988428 -0.90184255]\n", + " [ -1.5034557 -0.90181973]\n", + " [ -1.503296 -31.60681974]\n", + " [ -1.50331881 -27.22039116]\n", + " [ -1.50334163 -22.83396259]\n", + " [ -1.50336444 -18.44753402]\n", + " [ -1.50338726 -14.06110544]\n", + " [ -1.50341007 -9.67467688]\n", + " [ -1.50343288 -5.2882483 ]\n", + " [ -1.5034557 -0.90181973]\n", + " [-32.19330594 -29.69447935]\n", + " [-32.19333391 -24.31847935]\n", + " [-32.19336187 -18.94247936]\n", + " [-32.19338983 -13.56647936]\n", + " [-32.19341779 -8.19047935]\n", + " [-32.19344575 -2.81447935]\n", + " [-30.29579608 -31.59196949]\n", + " [-24.91979608 -31.59194152]\n", + " [-19.54379608 -31.59191356]\n", + " [-14.16779608 -31.5918856 ]\n", + " [ -8.79179608 -31.59185764]\n", + " [ -3.41579608 -31.59182968]\n", + " [-30.29595562 -0.91696949]\n", + " [-24.91995562 -0.91694153]\n", + " [-19.54395562 -0.91691356]\n", + " [-14.16795562 -0.9168856 ]\n", + " [ -8.79195562 -0.91685764]\n", + " [ -3.41595563 -0.91682968]\n", + " [ -1.51830595 -29.69431981]\n", + " [ -1.51833391 -24.31831981]\n", + " [ -1.51836187 -18.94231981]\n", + " [ -1.51838983 -13.56631981]\n", + " [ -1.51841779 -8.19031981]\n", + " [ -1.51844575 -2.81431982]\n", + " [-32.19329608 -31.59197936]\n", + " [-32.19329608 -31.59197936]\n", + " [ -1.51845562 -0.91681981]\n", + " [ -1.51845562 -0.91681981]\n", + " [-30.29580595 -29.69446949]\n", + " [-24.91980594 -29.69444152]\n", + " [-19.54380595 -29.69441356]\n", + " [-14.16780595 -29.69438561]\n", + " [ -8.79180595 -29.69435764]\n", + " [ -3.41580595 -29.69432968]\n", + " [-30.29583391 -24.31846949]\n", + " [-24.91983391 -24.31844152]\n", + "0389491 0.32265115 0.26749257\n", + " 0.78768362 0.33643669 0.20329713 0.14479515 0.11226633 0.09161916]\n", + " [-19.54383391 -24.31841356]\n", + " [-14.16783391 -24.31838561]\n", + " [ -8.79183391 -24.31835764]\n", + " [ -3.41583391 -24.31832968]\n", + " [-30.29586187 -18.94246949]\n", + " [-24.91986187 -18.94244153]\n", + " [-19.54386187 -18.94241356]\n", + " [-14.16786187 -18.94238561]\n", + " [ -8.79186187 -18.94235764]\n", + " [ -3.41586187 -18.94232969]\n", + " [-30.29588983 -13.56646949]\n", + " [-24.91988983 -13.56644152]\n", + " [-19.54388984 -13.56641357]\n", + " [-14.16788983 -13.5663856 ]\n", + " [ -8.79188983 -13.56635764]\n", + " [ -3.41588983 -13.56632968]\n", + " [-30.29591779 -8.19046949]\n", + " [-24.91991779 -8.19044152]\n", + " [-19.54391779 -8.19041356]\n", + " [-14.16791779 -8.1903856 ]\n", + " [ -8.79191779 -8.19035764]\n", + " [ -3.41591779 -8.19032968]\n", + " [-30.29594575 -2.81446949]\n", + " [-24.91994576 -2.81444153]\n", + " [-19.54394575 -2.81441356]\n", + " [-14.16794576 -2.8143856 ]\n", + " [ -8.79194575 -2.81435764]\n", + " [ -3.41594575 -2.81432968]]\n", + "DEBUG:root:make_az_asym: xyp: [[32.275486 31.41357429]\n", + " [32.27502267 27.02714574]\n", + " [32.27455935 22.64071719]\n", + " [32.27409601 18.25428864]\n", + " [32.27363269 13.8678601 ]\n", + " [32.27316936 9.48143155]\n", + " [32.27270604 5.095003 ]\n", + " [32.27224271 0.70857446]\n", + " [32.275486 31.41357429]\n", + " [27.88905745 31.41403761]\n", + " [23.5026289 31.41450094]\n", + " [19.11620036 31.41496427]\n", + " [14.72977181 31.41542759]\n", + " [10.34334326 31.41589092]\n", + " [ 5.95691471 31.41635424]\n", + " [ 1.57048617 31.41681757]\n", + " [32.27224271 0.70857446]\n", + " [27.88581416 0.70903778]\n", + " [23.49938562 0.70950111]\n", + " [19.11295707 0.70996444]\n", + " [14.72652852 0.71042776]\n", + " [10.34009998 0.71089109]\n", + " [ 5.95367142 0.71135442]\n", + " [ 1.56724288 0.71181774]\n", + " [ 1.57048617 31.41681757]\n", + " [ 1.57002284 27.03038902]\n", + " [ 1.56955951 22.64396047]\n", + " [ 1.56909619 18.25753194]\n", + " [ 1.56863286 13.87110338]\n", + " [ 1.56816953 9.48467484]\n", + " [ 1.56770621 5.09824629]\n", + " [ 1.56724288 0.71181774]\n", + " [32.26028399 29.50107588]\n", + " [32.25971613 24.12507591]\n", + " [32.25914828 18.74907594]\n", + " [32.25858043 13.37307597]\n", + " [32.25801258 7.997076 ]\n", + " [32.25744472 2.62107603]\n", + " [30.36298443 31.3987763 ]\n", + " [24.98698446 31.39934415]\n", + " [19.61098448 31.399912 ]\n", + " [14.23498451 31.40047985]\n", + " [ 8.85898454 31.40104771]\n", + " [ 3.48298457 31.40161556]\n", + " [30.35974431 0.72377647]\n", + " [24.98374433 0.72434432]\n", + " [19.60774436 0.72491217]\n", + " [14.23174439 0.72548003]\n", + " [ 8.85574442 0.72604788]\n", + " [ 3.47974445 0.72661573]\n", + " [ 1.58528416 29.504316 ]\n", + " [ 1.5847163 24.12831603]\n", + " [ 1.58414845 18.75231606]\n", + " [ 1.5835806 13.37631609]\n", + " [ 1.58301275 8.00031612]\n", + " [ 1.5824449 2.62431615]\n", + " [32.26048441 31.39857587]\n", + " [32.26048441 31.39857587]\n", + " [ 1.58224447 0.72681616]\n", + " [ 1.58224447 0.72681616]\n", + " [30.36278399 29.50127631]\n", + " [24.98678403 29.50184416]\n", + " [19.61078405 29.50241201]\n", + " [14.23478409 29.50297987]\n", + " [ 8.85878411 29.50354772]\n", + " [ 3.48278414 29.50411557]\n", + " [30.36221615 24.12527634]\n", + " [24.98621618 24.12584419]\n", + " [19.6102162 24.12641204]\n", + " [14.23421623 24.1269799 ]\n", + " [ 8.85821626 24.12754775]\n", + " [ 3.48221629 24.1281156 ]\n", + " [30.36164829 18.74927637]\n", + " [24.98564832 18.74984422]\n", + " [19.60964835 18.75041208]\n", + " [14.23364838 18.75097993]\n", + " [ 8.85DEBUG:root:radec2pix: xyfp: [[32.275486 31.41357429]\n", + " [32.27502267 27.02714574]\n", + " [32.27455935 22.64071719]\n", + " [32.27409601 18.25428864]\n", + " [32.27363269 13.8678601 ]\n", + " [32.27316936 9.48143155]\n", + " [32.27270604 5.095003 ]\n", + " [32.27224271 0.70857446]\n", + " [32.275486 31.41357429]\n", + " [27.88905745 31.41403761]\n", + " [23.5026289 31.41450094]\n", + " [19.11620036 31.41496427]\n", + " [14.72977181 31.41542759]\n", + " [10.34334326 31.41589092]\n", + " [ 5.95691471 31.41635424]\n", + " [ 1.57048617 31.41681757]\n", + " [32.27224271 0.70857446]\n", + " [27.88581416 0.70903778]\n", + " [23.49938562 0.70950111]\n", + " [19.11295707 0.70996444]\n", + " [14.72652852 0.71042776]\n", + " [10.34009998 0.71089109]\n", + " [ 5.95367142 0.71135442]\n", + " [ 1.56724288 0.71181774]\n", + " [ 1.57048617 31.41681757]\n", + " [ 1.57002284 27.03038902]\n", + " [ 1.56955951 22.64396047]\n", + " [ 1.56909619 18.25753194]\n", + " [ 1.56863286 13.87110338]\n", + " [ 1.56816953 9.48467484]\n", + " [ 1.56770621 5.09824629]\n", + " [ 1.56724288 0.71181774]\n", + " [32.26028399 29.50107588]\n", + " [32.25971613 24.12507591]\n", + " [32.25914828 18.74907594]\n", + " [32.25858043 13.37307597]\n", + "808 -0.92455295\n", + " -0.97121348 -0.99694372 -0.69578694 -0.62321886 -0.53007115 -0.41291013\n", + " -0.27109351 -0.10929135 -0.99978591 -0.99968066 -0.99947617 -0.99899494\n", + " -0.99737425 -0.98288834 -0.05243384 -0.06399014 -0.08214824 -0.11477511\n", + " -0.19009076 -0.51584618 -0.71726898 -0.71726898 -0.92175016 -0.92175016\n", + " -0.71788499 -0.64689125 -0.55397779 -0.43461417 -0.2871469 -0.11621293\n", + " -0.78371934 -0.72014369 -0.63135242 -0.50838973 -0.34426777 -0.14160207\n", + " -0.85170189 -0.80076273 -0.72365733 -0.60523038 -0.42694461 -0.18103644\n", + " -0.91599489 -0.8826498 -0.8273004 -0.72987289 -0.55253697 -0.25009805\n", + " -0.96766665 -0.95325615 -0.92710821 -0.87335662 -0.74384256 -0.39763019\n", + " -0.99654822 -0.99489972 -0.99173015 -0.984408 -0.96090466 -0.80346296]\n", + "DEBUG:root:radec2pix: xyfp: [[32.23341696 31.55141621]\n", + " [32.23194958 27.16498788]\n", + " [32.2304822 22.77855956]\n", + " [32.22901483 18.39213124]\n", + " [32.22754745 14.00570291]\n", + " [32.22608007 9.61927458]\n", + " [32.22461269 5.23284626]\n", + " [32.2231453 0.84641793]\n", + " [32.2334 [32.25801258 7.997076 ]\n", + " [32.25744472 2.62107603]\n", + " [30.36298443 31.3987763 ]\n", + " [24.98698446 31.39934415]\n", + " [19.61098448 31.399912 ]\n", + " [14.23498451 31.40047985]\n", + " [ 8.85898454 31.40104771]\n", + " [ 3.48298457 31.40161556]\n", + " [30.35974431 0.72377647]\n", + " [24.98374433 0.72434432]\n", + " [19.60774436 0.72491217]\n", + " [14.23174439 0.72548003]\n", + " [ 8.85574442 0.72604788]\n", + " [ 3.47974445 0.72661573]\n", + " [ 1.58528416 29.504316 ]\n", + " [ 1.5847163 24.12831603]\n", + " [ 1.58414845 18.75231606]\n", + " [ 1.5835806 13.37631609]\n", + " [ 1.58301275 8.00031612]\n", + " [ 1.5824449 2.62431615]\n", + " [32.26048441 31.39857587]\n", + " [32.26048441 31.39857587]\n", + " [ 1.58224447 0.72681616]\n", + " [ 1.58224447 0.72681616]\n", + " [30.36278399 29.50127631]\n", + " [24.98678403 29.50184416]\n", + " [19.61078405 29.50241201]\n", + " [14.23478409 29.50297987]\n", + " [ 8.85878411 29.50354772]\n", + " [ 3.48278414 29.50411557]\n", + " [30.36221615 24.12527634]\n", + " [24.98621618 24.12584419]\n", + " [19.6102162 24.12641204]\n", + " [14.23421623 24.1269799 ]\n", + " [ 8.85821626 24.12754775]\n", + " [ 3.48221629 24.1281156 ]\n", + " [30.36164829 18.74927637]\n", + " [24.98564832 18.74984422]\n", + " [19.60964835 18.75041208]\n", + " [14.23364838 18.75097993]\n", + " [ 8.85764841 18.75154778]\n", + " [ 3.48164844 18.75211563]\n", + " [30.36108043 13.3732764 ]\n", + " [24.98508046 13.37384425]\n", + " [19.60908049 13.3744121 ]\n", + " [14.23308053 13.37497996]\n", + " [ 8.85708056 13.37554781]\n", + " [ 3.48108059 13.37611567]\n", + " [30.36051258 7.99727643]\n", + " [24.98451261 7.99784428]\n", + " [19.60851265 7.99841214]\n", + " [14.23251268 7.99897999]\n", + " [ 8.85651271 7.99954784]\n", + " [ 3.48051273 8.00011569]\n", + " [30.35994473 2.62127646]\n", + " [24.98394476 2.62184431]\n", + " [19.60794479 2.62241216]\n", + " [14.23194482 2.62298002]\n", + " [ 8.85594485 2.62354787]\n", + " [ 3.47994488 2.62411572]]\n", + "1696 31.55141621]\n", + " [27.84698864 31.5528836 ]\n", + " [23.46056031 31.55435097]\n", + " [19.07413198 31.55581835]\n", + " [14.68770366 31.55728573]\n", + " [10.30127533 31.55875311]\n", + " [ 5.91484701 31.56022049]\n", + " [ 1.52841868 31.56168787]\n", + " [32.2231453 0.84641793]\n", + " [27.83671698 0.84788531]\n", + " [23.45028865 0.84935269]\n", + " [19.06386033 0.85082007]\n", + " [14.677432 0.85228745]\n", + " [10.29100367 0.85375483]\n", + " [ 5.90457535 0.85522221]\n", + " [ 1.51814702 0.85668959]\n", + " [ 1.52841868 31.56168787]\n", + " [ 1.5269513 27.17525955]\n", + " [ 1.52548392 22.78883122]\n", + " [ 1.52401654 18.4024029 ]\n", + " [ 1.52254916 14.01597457]\n", + " [ 1.52108178 9.62954624]\n", + " [ 1.5196144 5.24311792]\n", + " [ 1.51814702 0.85668959]\n", + " [32.21777718 29.63892134]\n", + " [32.21597876 24.26292164]\n", + " [32.21418034 18.88692194]\n", + " [32.21238193 13.51092224]\n", + " [32.21058351 8.13492254]\n", + " [32.20878509 2.75892284]\n", + " [30.32091205 31.53705599]\n", + " [24.94491236 31.53885442]\n", + " [19.56891265 31.54065283]\n", + " [14.19291295 31.54245125]\n", + " [ 8.81691325 31.54424967]\n", + " [ 3.44091356 31.54604808]\n", + " [30.31065043 0.86205771]\n", + " [24.93465073 0.86385613]\n", + " [19.55865103 0.86565455]\n", + " [14.18265134 0.86745297]\n", + " [ 8.80665163 0.86925139]\n", + " [ 3.43065193 0.8710498 ]\n", + " [ 1.5427789 29.64918296]\n", + " [ 1.54098048 24.27318326]\n", + " [ 1.53918206 18.89718357]\n", + " [ 1.53738364 13.52118387]\n", + " [ 1.53558522 8.14518416]\n", + " [ 1.5337868 2.76918446]\n", + " [32.21841195 31.53642123]\n", + " [32.21841195 31.53642123]\n", + " [ 1.53315204 0.87168457]\n", + " [ 1.533152DEBUG:root:mm_to_pix: fitpx: [[0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]]\n", + "43 ]\n", + " [ 0.41500978 -0.86085774 0.29443308]\n", + " [ 0.41120092 -0.85325152 0.32074234]\n", + " [ 0.40689016 -0.84490455 0.34724155]\n", + " [ 0.40208918 -0.83581666 0.37381118]\n", + " [ 0.39681289 -0.82599736 0.40033473]\n", + " [ 0.39107891 -0.815466 0.42669952]\n", + " [ 0.38490758 -0.80425187 0.45279696]\n", + " [ 0.23313589 -0.93720026 0.25942885]\n", + " [ 0.22676423 -0.92896731 0.29257089]\n", + " [ 0.21997278 -0.91940116 0.32605748]\n", + " [ 0.21278565 -0.90849276 0.35967091]\n", + " [ 0.20523235 -0.89625518 0.39320011]\n", + " [ 0.1973491 -0.88272629 0.42643595]\n", + " [ 0.24727118 -0.93632129 0.24931788]\n", + " [ 0.28094355 -0.92568506 0.25333357]\n", + " [ 0.31402224 -0.91392722 0.25715183]\n", + " [ 0.34631954 -0.9011456 0.26076692]\n", + " [ 0.37765507 -0.88745918 0.26418338]\n", + " [ 0.40785802 -0.87300707 0.26741445]\n", + " [ 0.20690265 -0.87406901 0.43953915]\n", + " [ 0.24178956 -0.86313314 0.44332718]\n", + " [ 0.27612609 -0.85111197 0.44650061]\n", + " [ 0.30972083 -0.83810579 0.44905644]\n", + " [ 0.34239657 -0.82423323 0.45100352]\n", + " [ 0.37398523 -0.80963198 0.45236169]\n", + " [ 0.41685214 -0.86486609 0.27971582]\n", + " [ 0.41246387 -0.85595048 0.31180497]\n", + " [ 0.40731774 -0.84592586 0.34424077]\n", + " [ 0.40143334 -0.83478806 0.37680256]\n", + " [ 0.3948381 -0.82255459 0.40927597]\n", + " [ 0.38756556 -0.80926523 0.44145523]\n", + " [ 0.23528072 -0.93979272 0.24785605]\n", + " [ 0.23528072 -0.93979272 0.24785605]\n", + " [ 0.38484421 -0.80433348 0.45270585]\n", + " [ 0.38484421 -0.80433348 0.45270585]\n", + " [ 0.24517359 -0.93371518 0.26089437]\n", + " [ 0.27898089 -0.92303678 0.26490141]\n", + " [ 0.31219577 -0.91123183 0.26868263]\n", + " [ 0.34463029 -0.89839837 0.27223213]\n", + " [ 0.37610376 -0.88465561 0.27555474]\n", + " [ 0.40644408 -0.87014311 0.27866497]\n", + " [ 0.2389208 -0.92544816 0.29404517]\n", + " [ 0.27306841 -0.9146666 0.29802459]\n", + " [ 0.30662768 -0.90274946 0.30169998]\n", + " [ 0.33941031 -0.88979561 0.3050646 ]\n", + " [ 0.37123588 -0.87592467 0.30812319]\n", + " [ 0.40193091 -0.86127673 0.31089215]\n", + " [ 0.23222597 -0.91585477 0.327538 ]\n", + " [ 0.26665171 -0.9049944 0.33148453]\n", + " [ 0.30049399 -0.892997 0.33505183]\n", + " [ 0.33356413 -0.87996234 0.33823253]\n", + " [ 0.36568288 -0.86601033 0.341031 ]\n", + " [ 0.39667768 -0.85128091 0.34346416]\n", + " [ 0.22511277 -0.90492614 0.36115DEBUG:root:make_az_asym: xyp: shape: (96, 2)\n", + "DEBUG:root:optics_fp: sphi: [-0.69680111 -0.64114722 -0.57314869 -0.49084265 -0.39293677 -0.27960013\n", + " -0.15326941 -0.01896529 -0.69680111 -0.74728304 -0.80034077 -0.85407631\n", + " -0.90539113 -0.94994095 -0.98262854 -0.99880866 -0.01896529 -0.02204027\n", + " -0.02626479 -0.03243122 -0.04227651 -0.06048361 -0.10546358 -0.38328124\n", + " -0.99880866 -0.99839535 -0.9977203 -0.99650464 -0.99396928 -0.9872021\n", + " -0.95720188 -0.38328124 -0.67408945 -0.59784918 -0.50106771 -0.3810536\n", + " -0.23821077 -0.07812313 -0.71824824 -0.78204748 -0.84795317 -0.91077177\n", + " -0.96255302 -0.99400976 -0.02069125 -0.02527007 -0.03236333 -0.04482319\n", + " -0.07241971 -0.18420237 -0.9986244 -0.99795053 -0.99662012 -0.9933915\n", + " -0.98176652 -0.85668122 -0.6967964 -0.6967964 -0.38778427 -0.38778427\n", + " -0.69616172 -0.76258227 -0.83253145 -0.90061674 -0.95788656 -0.99322432\n", + " -0.62111512 -0.69382495 -0.77549605 -0.8611271 -0.93887151 -0.98992366\n", + " -0.52402662 -0.59898168 -0.69015945 -0.79605037 -0.9498]\n", + " [ 0.25975356 -0.89401209 0.36506229]\n", + " [ 0.2938173 -0.88196726 0.3685175 ]\n", + " [ 0.32711461 -0.86889225 0.3715135 ]\n", + " [ 0.35946749 -0.85490702 0.37405495]\n", + " [ 0.39070529 -0.840151 0.3761591 ]\n", + " [ 0.21760989 -0.89267561 0.39468494]\n", + " [ 0.25240081 -0.88173402 0.39854605]\n", + " [ 0.28662365 -0.86967577 0.40188424]\n", + " [ 0.32008812 -0.85660179 0.40469368]\n", + " [ 0.35261702 -0.84263174 0.40698032]\n", + " [ 0.38404142 -0.82790434 0.40876226]\n", + " [ 0.20975271 -0.8791413 0.42791865]\n", + " [ 0.24462666 -0.86819914 0.43172682]\n", + " [ 0.27894495 -0.85616218 0.43494371]\n", + " [ 0.3125164 -0.843131 0.43756556]\n", + " [ 0.34516394 -0.82922455 0.43960039]\n", + " [ 0.37671947 -0.81458078 0.44106756]]\n", + "0427778 -0.98347639\n", + " -0.40118994 -0.4700312 -0.56175978 -0.68358289 -0.83348839 -0.96822051\n", + " -0.25223255 -0.30216337 -0.37479377 -0.48708132 -0.66835488 -0.91754577\n", + " -0.08301599 -0.10086897 -0.12834059 -0.17590022 -0.27687945 -0.59535474]\n", + "DEBUG:root:optics_fp: xyfp shape: (96, 2)\n", + "DEBUG:root:mm_to_pix: fitpx.shape: (96, 2)\n", + "04 0.87168457]\n", + " [30.32027729 29.6395561 ]\n", + " [24.94427759 29.64135452]\n", + " [19.56827789 29.64315294]\n", + " [14.19227819 29.64495136]\n", + " [ 8.81627849 29.64674978]\n", + " [ 3.44027879 29.6485482 ]\n", + " [30.31847887 24.2635564 ]\n", + " [24.94247917 24.26535482]\n", + " [19.56647947 24.26715324]\n", + " [14.19047977 24.26895166]\n", + " [ 8.81448007 24.27075007]\n", + " [ 3.43848037 24.2725485 ]\n", + " [30.31668045 18.8875567 ]\n", + " [24.94068075 18.88935513]\n", + " [19.56468105 18.89115354]\n", + " [14.18868135 18.89295196]\n", + " [ 8.81268165 18.89475038]\n", + " [ 3.43668195 18.89654879]\n", + " [30.31488203 13.51155701]\n", + " [24.93888233 13.51335542]\n", + " [19.56288263 13.51515384]\n", + " [14.18688293 13.51695226]\n", + " [ 8.81088324 13.51875068]\n", + " [ 3.43488354 13.5205491 ]\n", + " [30.31308361 8.13555731]\n", + " [24.93708392 8.13735572]\n", + " [19.56108422 8.13915414]\n", + " [14.18508451 8.14095256]\n", + " [ 8.80908482 8.14275098]\n", + " [ 3.43308512 8.1445494 ]\n", + " [30.31128519 2.75955761]\n", + " [24.93528549 2.76135602]\n", + " [19.5592858 2.76315444]\n", + " [14.18328609 2.76495286]\n", + " [ 8.8072864 2.76675128]\n", + " [ 3.4312867 2.7685497 ]]\n", + "DEBUG:root:radec2pix: curVec Shape: (96, 3)\n", + "DEBUG:root:optics_fp: xyfp: [[ 0.173161 -31.45819714]\n", + " [ 0.17304708 -27.07176857]\n", + " [ 0.17293316 -22.68534 ]\n", + " [ 0.17281925 -18.29891143]\n", + " [ 0.17270533 -13.91248287]\n", + " [ 0.17259141 -9.52605429]\n", + " [ 0.17247749 -5.13962573]\n", + " [ 0.17236358 -0.75319715]\n", + " [ 0.173161 -31.45819714]\n", + " [ 4.55958957 -31.45808322]\n", + " [ 8.94601814 -31.45796931]\n", + " [ 13.33244671 -31.45785538]\n", + " [ 17.71887528 -31.45774147]\n", + " [ 22.10530385 -31.45762756]\n", + " [ 26.49173242 -31.45751363]\n", + " [ 30.87816099 -31.45739971]\n", + " [ 0.17236358 -0.75319715]\n", + " [ 4.55879215 -0.75308323]\n", + " [ 8.94522072 -0.75296932]\n", + " [ 13.33164929 -0.7528554 ]\n", + " [ 17.71807786 -0.75274148]\n", + " [ 22.10450643 -0.75262756]\n", + " [ 26.490935 -0.75251364]\n", + " [ 30.87736356 -0.75239973]\n", + " [ 30.87816099 -31.45739971]\n", + " [ 30.87804707 -27.07097114]\n", + " [ 30.87793315 -22.68454257]\n", + " [ 30.87781924 -18.29811401]\n", + " [ 30.87770532 -13.91168544]\n", + " [ 30.87759141 -9.52525687]\n", + " [ 30.87747749 -5.1388283 ]\n", + " [ 30.87736356 -0.75239973]\n", + " [ 0.18811133 -29.54569675]\n", + " [ 0.18797171 -24.16969676]\n", + " [ 0.1878321 -18.79369675]\n", + " [ 0.18769248 -13.41769676]\n", + " [ 0.18755286 -8.04169676]\n", + " [ 0.18741324 -2.66569676]\n", + " [ 2.08566061 -31.44314748]\n", + " [ 7.46166061 -31.44300785]\n", + " [ 12.83766061 -31.44286824]\n", + " [ 18.2136606 -31.44272862]\n", + " [ 23.5896606 -31.442589 ]\n", + " [ 28.9656606 -31.44244938]\n", + " [ 2.08486397 -0.76814748]\n", + " [ 7.46086396 -0.76800786]\n", + " [ 12.83686396 -0.76786825]\n", + " [ 18.21286396 -0.76772863]\n", + " [ 23.58886395 -0.76758901]\n", + " [ 28.96486395 -0.7674494 ]\n", + " [ 30.86311132 -29.54490011]\n", + " [ 30.86297171 -24.16890011]\n", + " [ 30.86283209 -18.79290011]\n", + " [ 30.86269247 -13.41690011]\n", + " [ 30.86255285 -8.04090011]\n", + " [ 30.86241323 -2.66490012]\n", + " [ 0.18816061 -31.44319675]\n", + " [ 0.18816061 -31.44319675]\n", + " [ 30.86236396 -0.76740012]\n", + " [ 30.86236396 -0.76740012]\n", + " [ 2.08561133 -29.54564748]\n", + " [ 7.46161133 -29.54550785]\n", + " [ 12.83761133 -29.54536824]\n", + " [ 18.21361133 -29.54522862]\n", + " [ 23.58961132 -29.545089 ]\n", + " [ 28.96561132 -29.54494938]\n", + " [ 2.08547171 -24.16964747]\n", + " [ 7.46147171 -24.16950786]\n", + " [ 12.83747171 -24.16936824]\n", + " [ 18.21347171 -24.16922862]\n", + " [ 23.58947171 -24.16908901]\n", + " [ 28.9654717 -24.16894939]\n", + " [ 2.0853321 -18.79364747]\n", + " [ 7.46133209 -18.79350785]\n", + " [ 12.83733209 -18.79336824]\n", + " [ 18.21333209 -18.79322862]\n", + " [ 23.58933209 -18.79308901]\n", + " [ 28.96533209 -18.79294939]\n", + " [ 2.08519248 -13.41764748]\n", + " [ 7.46119248 -13.41750786]\n", + " [ 12.83719247 -13.41736824]\n", + " [ 18.21319248 -13.41722863]\n", + " [ 23.58919247 -13.41708901]\n", + " [ 28.96519247 -13.41694939]\n", + " [ 2.08505286 -8.04164748]\n", + " [ 7.46105286 -8.04150786]\n", + " [ 12.83705286 -8.04136825]\n", + " [ 18.21305286 -8.04122863]\n", + " [ 23.58905286 -8.04108901]\n", + " [ 28.96505285 -8.04094939]\n", + " [ 2.08491324 -2.66564748]\n", + " [ 7.46091324 -2.66550786]\n", + " [ 12.83691324 -2.66536825]\n", + " [ 18.21291324 -2.66522863]\n", + " [ 23.58891323 -2.66508901]\n", + " [ 28.96491324 -2.66494939]]\n", + "DEBUG:root:optics_fp: xyfp shape: (96, 2)\n", + "DEBUG:root:radec2pix: ccdpx: [[-4.45000001e+01 -5.00000082e-01]\n", + " [-4.45000001e+01 2.91928571e+02]\n", + " [-4.45000003e+01 5.84357143e+02]\n", + " [-4.44999997e+01 8.76785714e+02]\n", + " [-4.45000002e+01 1.16921429e+03]\n", + " [-4.44999997e+01 1.46164286e+03]\n", + " [-4.45000001e+01 1.75407143e+03]\n", + " [-4.44999998e+01 2.04650000e+03]\n", + " [-4.45000001e+01 -5.00000082e-01]\n", + " [ 2.47928572e+02 -4.99999837e-01]\n", + " [ 5.40357143e+02 -5.00000111e-01]\n", + " [ 8.32785714e+02 -5.00000236e-01]\n", + " [ 1.12521429e+03 -4.99999746e-01]\n", + " [ 1.41764286e+03 -4.99999876e-01]\n", + " [ 1.71007143e+03 -4.99999788e-01]\n", + " [ 2.00250000e+03 -5.00000040e-01]\n", + " [-4.44999998e+01 2.04650000e+03]\n", + " [ 2.47928572e+02 2.04650000e+03]\n", + " [ 5.40357143e+02 2.04650000e+03]\n", + " [ 8.32785714e+02 2.04650000e+03]\n", + " [ 1.12521429e+03 2.04650000e+03]\n", + " [ 1.41764286e+03 2.04650000e+03]\n", + " [ 1.71007143e+03 2.04650000e+03]\n", + " [ 2.00250000e+03 2.04650000e+03]\n", + " [ 2.00250000e+03 -5.00000040e-01]\n", + " [ 2.00250000e+03 2.91928572e+02]\n", + " [ 2.00250000e+03 5.84357143e+02]\n", + " [ 2.00250000e+03 8.76785714e+02]\n", + " [ 2.00250000e+03 1.16921429e+03]\n", + " [ 2.00250000e+03 1.46164286e+03]\n", + " [ 2.00250000e+03 1.75407143e+03]\n", + " [ 2.00250000e+03 2.04650000e+03]\n", + " [-4.35000002e+01 1.27000000e+02]\n", + " [-4.35000000e+01 4.85400000e+02]\n", + " [-4.34999999e+01 8.43800000e+02]\n", + " [-4.35000002e+01 1.20220000e+03]\n", + " [-4.35000002e+01 1.56060000e+03]\n", + " [-4.34999998e+01 1.91900000e+03]\n", + " [ 8.29999997e+01 4.99999723e-01]\n", + " [ 4.41400000e+02 4.99999738e-01]\n", + " [ 7.99800000e+02 4.99999955e-01]\n", + " [ 1.15820000e+03 5.00000275e-01]\n", + " [ 1.51660000e+03 4.99999778e-01]\n", + " [ 1.87500000e+03 5.00000195e-01]\n", + " [ 8.29999999e+01 2.04550000e+03]\n", + " [ 4.41400000e+02 2.04550000e+03]\n", + " [ 7.99800000e+02 2.04550000e+03]\n", + " [ 1.15820000e+03 2.04550000e+03]\n", + " [ 1.51660000e+03 2.04550000e+03]\n", + " [ 1.87500000e+03 2.04550000e+03]\n", + " [ 2.00150000e+03 1.27000000e+02]\n", + " [ 2.00150000e+03 4.85400000e+02]\n", + " [ 2.00150000e+03 8.43800000e+02]\n", + " [ 2.00150000e+03 1.20220000e+03]\n", + " [ 2.00150000e+03 1.56060000e+03]\n", + " [ 2.00150000e+03 1.91900000e+03]\n", + " [-4.34999997e+01 5.00000254e-01]\n", + " [-4.34999997e+01 5.00000254e-01]\n", + " [ 2.00150000e+03 2.04550000e+03]\n", + " [ 2.00150000e+03 2.04550000e+03]\n", + " [ 8.30000000e+01 1.27000000e+02]\n", + " [ 4.41400000e+02 1.27000000e+02]\n", + " [ 7.99800000e+02 1.27000000e+02]\n", + " [ 1.15820000e+03 1.27000000e+02]\n", + " [ 1.51660000e+03 1.27000000e+02]\n", + " [ 1.87500000e+03 1.27000000e+02]\n", + " [ 8.29999998e+01 4.85400000e+02]\n", + " [ 4.41400000e+02 4.85400000e+02]\n", + " [ 7.99800000e+02 4.85400000e+02]\n", + " [ 1.15820000e+03 4.85400000e+02]\n", + " [ 1.51660000e+03 4.85400000e+02]\n", + " [ 1.87500000e+03 4.85400000e+02]\n", + " [ 8.29999999e+01 8.43800000e+02]\n", + " [ 4.41400000e+02 8.43800000e+02]\n", + " [ 7.99800000e+02 8.43800000e+02]\n", + " [ 1.15820000e+03 8.43800000e+02]\n", + " [ 1.51660000e+03 8.43800000e+02]\n", + " [ 1.87500000e+03 8.43800000e+02]\n", + " [ 8.30000002e+01 1.20220000e+03]\n", + " [ 4.41400000e+02 1.20220000e+03]\n", + " [ 7.99800000e+02 1.20220000e+03]\n", + " [ 1.15820000e+03 1.20220000e+03]\n", + " [ 1.51660000e+03 1.20220000e+03]\n", + " [ 1.87500000e+03 1.20220000e+03]\n", + " [ 8.30000002e+01 1.56060000e+03]\n", + " [ 4.41400000e+02 1.56060000e+03]\n", + " [ 7.99800000e+02 1.56060000e+03]\n", + " [ 1.15820000e+03 1.56060000e+03]\n", + " [ 1.51660000e+03 1.56060000e+03]\n", + " [ 1.87500000e+03 1.56060000e+03]\n", + " [ 8.29999999e+01 1.91900000e+03]\n", + " [ 4.41400000e+02 1.91900000e+03]\n", + " [ 7.99800000e+02 1.91900000e+03]\n", + " [ 1.15820000e+03 1.91900000e+03]\n", + " [ 1.51660000e+03 1.91900000e+03]\n", + " [ 1.87500000e+03 1.91900000e+03]]\n", + "DEBUG:root:optics_fp: xyfp: [[32.2358199 31.31614388]\n", + " [32.23338667 26.92971599]\n", + " [32.23095344 22.54328809]\n", + " [32.2285202 18.15686019]\n", + " [32.22608698 13.7704323 ]\n", + " [32.22365375 9.3840044 ]\n", + " [32.22122051 4.99757651]\n", + " [32.21878728 0.61114861]\n", + " [32.2358199 31.31614388]\n", + " [27.849392 31.31857712]\n", + " [23.46296411 31.32101035]\n", + " [19.07653621 31.32344358]\n", + " [14.69010831 31.3258768 ]\n", + " [10.30368042 31.32831004]\n", + " [ 5.91725252 31.33074327]\n", + " [ 1.53082462 31.3331765 ]\n", + " [32.21878728 0.61114861]\n", + " [27.83235938 0.61358184]\n", + " [23.44593149 0.61601507]\n", + " [19.0595036 0.6184483 ]\n", + " [14.6730757 0.62088153]\n", + " [10.2866478 0.62331476]\n", + " [ 5.90021991 0.625748 ]\n", + " [ 1.513792 0.62818122]\n", + " [ 1.53082462 31.3331765 ]\n", + " [ 1.52839139 26.94674861764841 18.75154778]\n", + " [ 3.48164844 18.75211563]\n", + " [30.36108043 13.3732764 ]\n", + " [24.98508046 13.37384425]\n", + " [19.60908049 13.3744121 ]\n", + " [14.23308053 13.37497996]\n", + " [ 8.85708056 13.37554781]\n", + " [ 3.48108059 13.37611567]\n", + " [30.36051258 7.99727643]\n", + " [24.98451261 7.99784428]\n", + " [19.60851265 7.99841214]\n", + " [14.23251268 7.99897999]\n", + " [ 8.85651271 7.99954784]\n", + " [ 3.48051273 8.00011569]\n", + " [30.35994473 2.62127646]\n", + " [24.98394476 2.62184431]\n", + " [19.60794479 2.62241216]\n", + " [14.23194482 2.62298002]\n", + " [ 8.85594485 2.62354787]\n", + " [ 3.47994488 2.62411572]]\n", + "DEBUG:root:radec2pix: xyfp: [[-32.29046994 -31.71666141]\n", + " [-32.28860507 -27.33023323]\n", + " [-32.2867402 -22.94380505]\n", + " [-32.28487534 -18.55737688]\n", + " [-32.28301047 -14.1709487 ]\n", + " [-32.2811456 -9.78452053]\n", + " [-32.27928073 -5.39809235]\n", + " [-32.27741587 -1.01166418]\n", + " [-32.29046994 -31.71666141]\n", + " [-27.90404176 -31.71852627]\n", + " [-23.51761359 -31.72039114]\n", + " [-19.13118541 -31.722256 ]\n", + " [-14.74475724 -31.72412087]\n", + " [-10.35832906 -31.72598574]\n", + " [ -5.97190089 -31.72785061]\n", + " [ -1.58547272 -31.72971547]\n", + " [-32.27741587 -1.01166418]\n", + " [-27.8909877 -1.01352905]\n", + " [-23.50455952 -1.01539391]\n", + " [-19.11813134 -1.01725878]\n", + " [-14.73170317 -1.01912365]\n", + " [-10.345275 -1.02098851]\n", + " [ -5.95884682 -1.02285338]\n", + " [ -1.57241864 -1.02471825]\n", + " [ -1.58547272 -31.72971547]\n", + " [ -1.58360785 -27.3432873 ]\n", + " [ -1.58174298 -22.95685912]\n", + " [ -1.57987811 -18.57043094]\n", + " [ -1.57801325 -14.18400278]\n", + " [ -1.57614838 -9.7975746 ]\n", + " [ -1.57428351 -5.41114642]\n", + " [ -1.57241864 -1.02471825]\n", + " [-32.27465685 -29.80416795]\n", + " [-32.27237127 -24.42816844]\n", + " [-32.2700857 -19.05216893]\n", + " [-32.26780012 -13.67616941]\n", + " [-32.26551454 -8.3001699 ]\n", + " [-32.26322896 -2.92417038]\n", + " [-30.37796373 -31.70247449]\n", + " [-25.00196422 -31.70476008]\n", + " [-19.62596471 -31.70704565]\n", + " [-14.24996519 -31.70933123]\n", + " [ -8.87396568 -31.71161681]\n", + " [ -3.49796617 -31.71390239]\n", + " [-30.36492242 -1.02747727]\n", + " [-24.98892291 -1.02976285]\n", + " [-19.61292339 -1.03204842]\n", + " [-14.23692388 -1.034334 ]\n", + " [ -8.86092437 -1.03661958]\n", + " [ -3.48492485 -DEBUG:root:radec2pix: xyfp: [[32.2358199 31.31614388]\n", + " [32.23338667 26.92971599]\n", + " [32.23095344 22.54328809]\n", + " [32.2285202 18.15686019]\n", + " [32.22608698 13.7704323 ]\n", + " [32.22365375 9.3840044 ]\n", + " [32.22122051 4.99757651]\n", + " [32.21878728 0.61114861]\n", + " [32.2358199 31.31614388]\n", + " [27.849392 31.31857712]\n", + " [23.46296411 31.32101035]\n", + " [19.07653621 31.32344358]\n", + " [14.69010831 31.3258768 ]\n", + " [10.30368042 31.32831004]\n", + " [ 5.91725252 31.33074327]\n", + " [ 1.53082462 31.3331765 ]\n", + " [32.21878728 0.61114861]\n", + " [27.83235938 0.61358184]\n", + " [23.44593149 0.61601507]\n", + " [19.0595036 0.6184483 ]\n", + " [14.6730757 0.62088153]\n", + " [10.2866478 0.62331476]\n", + " [ 5.90021991 0.625748 ]\n", + " [ 1.513792 0.62818122]\n", + " [ 1.53082462 31.3331765 ]\n", + " [ 1.52839139 26.94674861]\n", + " [ 1.52595816 22.5603207 ]\n", + " [ 1.52352493 18.17389281]\n", + " [ 1.5210917 13.78746492]\n", + " [ 1.51865847 9.40103702]\n", + " [ 1.51622524 5.01460912]\n", + " [ 1.513792 0.62818122]\n", + " [32.219759 29.4036525 ]\n", + " [32.21677684 24.02765333]\n", + " [32.21379467 18.65165415]\n", + " [32.21081251 13.27565498]\n", + "DEBUG:root:radec2pix: camVec: [[-0.00114705 -0.00115629 -0.0011641 -0.00117048 -0.00117539 -0.00117881\n", + " -0.00118068 -0.00118097 -0.00114705 -0.03018244 -0.05910007 -0.08778716\n", + " -0.11613176 -0.14402308 -0.17135219 -0.19801388 -0.00118097 -0.03121228\n", + " -0.06111791 -0.09077999 -0.12008538 -0.14892541 -0.17719395 -0.20478471\n", + " -0.19801388 -0.19975823 -0.20124936 -0.20248221 -0.20345393 -0.20416257\n", + " -0.20460656 -0.20478471 -0.00125101 -0.00126235 -0.00127136 -0.00127799\n", + " -0.00128216 -0.00128379 -0.01381426 -0.04933618 -0.08456905 -0.11930642\n", + " -0.15334441 -0.18648385 -0.01428247 -0.05101935 -0.08744986 -0.12336368\n", + " -0.15856056 -0.19284509 -0.1987148 -0.20068229 -0.20226422 -0.20345456\n", + " -0.20424964 -0.20464672 -0.00124645 -0.00124645 -0.20469148 -0.20469148\n", + " -0.01386808 -0.04952932 -0.08490071 -0.11977552 -0.15394951 -0.18722234\n", + " -0.01400325 -0.05001432 -0.08573269 -0.12095098 -0.15546507 -0.18907339\n", + " -0.01411268 -0.05040698 -0.08640482 -0.12189811 -0.15668376 -0.19056116\n", + " -0.0141.03890516]\n", + " [ -1.59965962 -29.81720927]\n", + " [ -1.59737405 -24.44120975]\n", + " [ -1.59508847 -19.06521024]\n", + " [ -1.59280289 -13.68921073]\n", + " [ -1.59051731 -8.31321121]\n", + " [ -1.58823174 -2.9372117 ]\n", + " [-32.27546357 -31.70166778]\n", + " [-32.27546357 -31.70166778]\n", + " [ -1.58742502 -1.03971187]\n", + " [ -1.58742502 -1.03971187]\n", + " [-30.37715702 -29.80497466]\n", + " [-25.00115751 -29.80726024]\n", + " [-19.625158 -29.80954582]\n", + " [-14.24915848 -29.8118314 ]\n", + " [ -8.87315897 -29.81411698]\n", + " [ -3.49715945 -29.81640256]\n", + " [-30.37487145 -24.42897515]\n", + " [-24.99887193 -24.43126073]\n", + " [-19.62287241 -24.43354631]\n", + " [-14.2468729 -24.43583188]\n", + " [ -8.87087339 -24.43811746]\n", + " [ -3.49487388 -24.44040305]\n", + " [-30.37258587 -19.05297564]\n", + " [-24.99658635 -19.05526122]\n", + " [-19.62058684 -19.05754679]\n", + " [-14.24458732 -19.05983237]\n", + " [ -8.86858781 -19.06211795]\n", + " [ -3.4925883 -19.06440353]\n", + " [-30.37030029 -13.67697612]\n", + " [-24.99430077 -13.6792617 ]\n", + " [-19.61830126 -13.68154728]\n", + " [-14.24230175 -13.68383286]\n", + " [ -8.86630223 -13.68611844]\n", + " [ -3.49030272 -13.68840401]\n", + " [DEBUG:root:radec2pix: ccdpx: [[-4.44999999e+01 -4.99999873e-01]\n", + " [-4.44999998e+01 2.91928572e+02]\n", + " [-4.44999998e+01 5.84357143e+02]\n", + " [-4.45000002e+01 8.76785714e+02]\n", + " [-4.45000003e+01 1.16921429e+03]\n", + " [-4.45000002e+01 1.46164286e+03]\n", + " [-4.45000002e+01 1.75407143e+03]\n", + " [-4.45000000e+01 2.04650000e+03]\n", + " [-4.44999999e+01 -4.99999873e-01]\n", + " [ 2.47928571e+02 -5.00000280e-01]\n", + " [ 5.40357143e+02 -5.00000000e-01]\n", + " [ 8.32785714e+02 -4.99999974e-01]\n", + " [ 1.12521429e+03 -4.99999987e-01]\n", + " [ 1.41764286e+03 -4.99999863e-01]\n", + " [ 1.71007143e+03 -5.00000138e-01]\n", + " [ 2.00250000e+03 -4.99999700e-01]\n", + " [-4.45000000e+01 2.04650000e+03]\n", + " [ 2.47928571e+02 2.04650000e+03]\n", + " [ 5.40357143e+02 2.04650000e+03]\n", + " [ 8.32785714e+02 2.04650000e+03]\n", + " [ 1.12521429e+03 2.04650000e+03]\n", + " [ 1.41764286e+03 2.04650000e+03]\n", + " [ 1.71007143e+03 2.04650000e+03]\n", + " [ 2.00250000e+03 2.04650000e+03]\n", + " [ 2.00250000e+03 -4.99999700e-01]\n", + " [ 2.00250000e+03 2.91928571e+02]\n", + " [ 2.00250000e+03 5.84357143e+02]\n", + " [ 2.00250000e+03 8.76785714e+02]\n", + " [ 2.00250000e+03 1.16921429e+03]\n", + " [ 2.00250000e+03 1.46164286e+03]\n", + " [ 2.00250000e+03 1.75407143e+03]\n", + " [ 2.00250000e+03 2.04650000e+03]\n", + " [-4.35000000e+01 1.27000000e+02]\n", + " [-4.35000002e+01 4.85400000e+02]\n", + " [-4.34999999e+01 8.43800000e+02]\n", + " [-4.35000003e+01 1.20220000e+03]\n", + " [-4.35000000e+01 1.56060000e+03]\n", + " [-4.35000001e+01 1.91900000e+03]\n", + " [ 8.30000001e+01 5.00000148e-01]\n", + " [ 4.41400000e+02 4.99999823e-01]\n", + " [ 7.99800000e+02 4.99999939e-01]\n", + " [ 1.15820000e+03 5.00000006e-01]\n", + " [ 1.51660000e+03 5.00000232e-01]\n", + " [ 1.87500000e+03 5.00000256e-01]\n", + " [ 8.29999998e+01 2.04550000e+03]\n", + " [ 4.41400000e+02 2.04550000e+03]\n", + " [ 7.99800000e+02 2.04550000e+03]\n", + " [ 1.15820000e+03 2.04550000e+03]\n", + " [ 1.51660000e+03 2.04550000e+03]\n", + " [ 1.87500000e+03 2.04550000e+03]\n", + " [ 2.00150000e+03 1.27000000e+02]\n", + " [ 2.00150000e+03 4.85400000e+02]\n", + " [ 2.00150000e+03 8.43800000e+02]\n", + " [ 2.00150000e+03 1.20220000e+03]\n", + " [ 2.00150000e+03 1.56060000e+03]\n", + " [ 2.00150000e+03 1.91900000e+03]\n", + " [-4.350000DEBUG:root:make_az_asym: xyp: [[-32.208296 -31.60697943]\n", + " [-32.20831882 -27.22055086]\n", + " [-32.20834163 -22.83412229]\n", + " [-32.20836444 -18.44769372]\n", + " [-32.20838725 -14.06126515]\n", + " [-32.20841007 -9.67483658]\n", + " [-32.20843288 -5.288408 ]\n", + " [-32.2084557 -0.90197943]\n", + " [-32.208296 -31.60697943]\n", + " [-27.82186743 -31.60695662]\n", + " [-23.43543886 -31.60693381]\n", + " [-19.04901029 -31.60691099]\n", + " [-14.66258171 -31.60688818]\n", + " [-10.27615314 -31.60686536]\n", + " [ -5.88972457 -31.60684255]\n", + " [ -1.503296 -31.60681974]\n", + " [-32.2084557 -0.90197943]\n", + " [-27.82202712 -0.90195662]\n", + " [-23.43559855 -0.9019338 ]\n", + " [-19.04916999 -0.90191099]\n", + " [-14.66274141 -0.90188818]\n", + " [-10.27631284 -0.90186536]\n", + " [ -5.88988428 -0.90184255]\n", + " [ -1.5034557 -0.90181973]\n", + " [ -1.503296 -31.60681974]\n", + " [ -1.50331881 -27.22039116]\n", + " [ -1.50334163 -22.83396259]\n", + " [ -1.50336444 -18.44753402]\n", + " [ -1.50338726 -14.06110544]\n", + " [ -1.50341007 -9.67467688]\n", + " [ -1.50343288 -5.2882483 ]\n", + " [ -1.5034557 -0.90181973]\n", + " [-32.19330594 -29.69447935]\n", + " [-32.1933339DEBUG:root:make_az_asym: xyp: shape: (96, 2)\n", + "1 -24.31847935]\n", + " [-32.19336187 -18.94247936]\n", + " [-32.19338983 -13.56647936]\n", + " [-32.19341779 -8.19047935]\n", + " [-32.19344575 -2.81447935]\n", + " [-30.29579608 -31.59196949]\n", + " [-24.91979608 -31.59194152]\n", + " [-19.54379608 -31.59191356]\n", + " [-14.16779608 -31.5918856 ]\n", + " [ -8.79179608 -31.59185764]\n", + " [ -3.41579608 -31.59182968]\n", + " [-30.29595562 -0.91696949]\n", + " [-24.91995562 -0.91694153]\n", + " [-19.54395562 -0.91691356]\n", + " [-14.16795562 -0.9168856 ]\n", + " [ -8.79195562 -0.91685764]\n", + " [ -3.41595563 -0.91682968]\n", + " [ -1.51830595 -29.69431981]\n", + " [ -1.51833391 -24.31831981]\n", + " [ -1.51836187 -18.94231981]\n", + " [ -1.51838983 -13.56631981]\n", + " [ -1.51841779 -8.19031981]\n", + " [ -1.51844575 -2.81431982]\n", + " [-32.19329608 -31.59197936]\n", + " [-32.19329608 -31.59197936]\n", + " [ -1.51845562 -0.91681981]\n", + " [ -1.51845562 -0.91681981]\n", + " [-30.29580595 -29.69446949]\n", + " [-24.91980594 -29.69444152]\n", + " [-19.54380595 -29.69441356]\n", + " [-14.16780595 -29.69438561]\n", + " [ -8.79180595 -29.69435764]\n", + " [ -3.41580595 -29.69432968]\n", + " [-30.2958DEBUG:root:make_az_asym: xyp: [[ 0.173161 -31.45819714]\n", + " [ 0.17304708 -27.07176857]\n", + " [ 0.17293316 -22.68534 ]\n", + " [ 0.17281925 -18.29891143]\n", + " [ 0.17270533 -13.91248287]\n", + " [ 0.17259141 -9.52605429]\n", + " [ 0.17247749 -5.13962573]\n", + " [ 0.17236358 -0.75319715]\n", + " [ 0.173161 -31.45819714]\n", + " [ 4.55958957 -31.45808322]\n", + " [ 8.94601814 -31.45796931]\n", + " [ 13.33244671 -31.45785538]\n", + " [ 17.71887528 -31.45774147]\n", + " [ 22.10530385 -31.45762756]\n", + " [ 26.49173242 -31.45751363]\n", + " [ 30.87816099 -31.45739971]\n", + " [ 0.17236358 -0.75319715]\n", + " [ 4.55879215 -0.75308323]\n", + " [ 8.94522072 -0.75296932]\n", + " [ 13.33164929 -0.7528554 ]\n", + " [ 17.71807786 -0.75274148]\n", + " [ 22.10450643 -0.75262756]\n", + " [ 26.490935 -0.75251364]\n", + " [ 30.87736356 -0.75239973]\n", + " [ 30.87816099 -31.45739971]\n", + " [ 30.87804707 -27.07097114]\n", + " [ 30.87793315 -22.68454257]\n", + " [ 30.87781924 -18.29811401]\n", + " [ 30.87770532 -13.91168544]\n", + " [ 30.87759141 -9.52525687]\n", + " [ 30.87747749 -5.1388283 ]\n", + " [ 30.87736356 -0.75239973]\n", + " [ 0.18811133 -29.54569675]\n", + " [ 0.187971703e+01 4.99999725e-01]\n", + " [-4.35000003e+01 4.99999725e-01]\n", + " [ 2.00150000e+03 2.04550000e+03]\n", + " [ 2.00150000e+03 2.04550000e+03]\n", + " [ 8.30000000e+01 1.27000000e+02]\n", + " [ 4.41400000e+02 1.27000000e+02]\n", + " [ 7.99800000e+02 1.27000000e+02]\n", + " [ 1.15820000e+03 1.27000000e+02]\n", + " [ 1.51660000e+03 1.27000000e+02]\n", + " [ 1.87500000e+03 1.27000000e+02]\n", + " [ 8.30000001e+01 4.85400000e+02]\n", + " [ 4.41400000e+02 4.85400000e+02]\n", + " [ 7.99800000e+02 4.85400000e+02]\n", + " [ 1.15820000e+03 4.85400000e+02]\n", + " [ 1.51660000e+03 4.85400000e+02]\n", + " [ 1.87500000e+03 4.85400000e+02]\n", + " [ 8.30000001e+01 8.43800000e+02]\n", + " [ 4.41400000e+02 8.43800000e+02]\n", + " [ 7.99800000e+02 8.43800000e+02]\n", + " [ 1.15820000e+03 8.43800000e+02]\n", + " [ 1.51660000e+03 8.43800000e+02]\n", + " [ 1.87500000e+03 8.43800000e+02]\n", + " [ 8.29999999e+01 1.20220000e+03]\n", + " [ 4.41400000e+02 1.20220000e+03]\n", + " [ 7.99800000e+02 1.20220000e+03]\n", + " [ 1.15820000e+03 1.20220000e+03]\n", + " [ 1.51660000e+03 1.20220000e+03]\n", + " [ 1.87500000e+03 1.20220000e+03]\n", + " [ 8.30000000e+01 1.56060000e+03]\n", + " [ 4.41400000e+02 1.56060000e+03]\n", + " [ 7.99800000e+02 1.56060000e+03]\n", + " [ 1.15820000e+03 1.56060000e+03]\n", + " [ 1.51660000e+03 1.56060000e+03]\n", + " [ 1.87500000e+03 1.56060000e+03]\n", + " [ 8.30000003e+01 1.91900000e+03]\n", + " [ 4.41400000e+02 1.91900000e+03]\n", + " [ 7.99800000e+02 1.91900000e+03]\n", + " [ 1.15820000e+03 1.91900000e+03]\n", + " [ 1.51660000e+03 1.91900000e+03]\n", + " [ 1.87500000e+03 1.91900000e+03]]\n", + "-30.36801471 -8.30097661]\n", + " [-24.9920152 -8.30326219]\n", + " [-19.61601568 -8.30554776]\n", + " [-14.24001617 -8.30783335]\n", + " [ -8.86401666 -8.31011893]\n", + " [ -3.48801714 -8.3124045 ]\n", + " [-30.36572914 -2.9249771 ]\n", + " [-24.98972962 -2.92726267]\n", + " [-19.6137301 -2.92954825]\n", + " [-14.23773059 -2.93183383]\n", + " [ -8.86173108 -2.93411941]\n", + " [ -3.48573156 -2.93640499]]\n", + " [32.20783035 7.89965581]\n", + " [32.20484818 2.52365664]\n", + " [30.32331188 31.30220479]\n", + " [24.9473127 31.30518695]\n", + " [19.57131353 31.30816912]\n", + " [14.19531435 31.31115127]\n", + " [ 8.81931518 31.31413344]\n", + " [ 3.44331601 31.3171156 ]\n", + " [30.3062959 0.62720951]\n", + " [24.93029672 0.63019167]\n", + " [19.55429755 0.63317383]\n", + " [14.17829838 0.636156 ]\n", + " [ 8.80229921 0.63913816]\n", + " [ 3.42630004 0.64212033]\n", + " [ 1.54476372 29.42066847]\n", + " [ 1.54178156 24.0446693 ]\n", + " [ 1.53879939 18.66867013]\n", + " [ 1.53581723 13.29267096]\n", + " [ 1.53283507 7.91667178]\n", + " [ 1.5298529 2.54067261]\n", + " [32.22081158 31.30115221]\n", + " [32.22081158 31.30115221]\n", + " [ 1.52880032 0.6431729 ]\n", + " [ 1.52880032 0.6431729 ]\n", + " [30.32225929 29.40470508]\n", + " [24.94626012 29.40768724]\n", + " [19.57026095 29.41066941]\n", + " [14.19426178 29.41365157]\n", + " [ 8.8182626 29.41663373]\n", + " [ 3.44226343 29.4196159 ]\n", + " [30.31927713 24.02870591]\n", + " [24.94327796 24.03168807]\n", + " [19.56727878 24.03467023]\n", + " [14.19127961 24.0376524 ]\n", + " [ 8.81528044 24.04063456]\n", + " [ 3.43928127 24.04361672]\n", + " [30.31629496 18.65270673]\n", + " [24.9402958 18.6556889 ]\n", + " [19.56429662 18.65867106]\n", + " [14.18829744 18.66165322]\n", + " [ 8.81229827 18.66463538]\n", + " [ 3.4362991 18.66761755]\n", + " [30.31331281 13.27670756]\n", + " [24.93731363 13.27968972]\n", + " [19.56131446 13.28267189]\n", + " [14.18531529 13.28565406]\n", + " [ 8.80931611 13.288619584 -0.05070556 -0.08691471 -0.12261435 -0.15760261 -0.19168088\n", + " -0.01425179 -0.05090701 -0.08725814 -0.12309542 -0.15821798 -0.19242913\n", + " -0.01427955 -0.05100809 -0.08743051 -0.12333654 -0.15852587 -0.19280295]\n", + " [ 0.20838541 0.18089194 0.15270652 0.12393558 0.09468513 0.06506336\n", + " 0.03518275 0.0051606 0.20838541 0.20823844 0.20782077 0.20713345\n", + " 0.20617803 0.20495645 0.20347155 0.2017284 0.0051606 0.00515607\n", + " 0.00514464 0.00512646 0.00510175 0.0050707 0.00503345 0.00499006\n", + " 0.2017284 0.17512925 0.14784829 0.11999042 0.09166442 0.06298098\n", + " 0.03405194 0.00499006 0.19649007 0.1623152 0.12720686 0.09136033\n", + " 0.05497503 0.01826009 0.20826196 0.20789982 0.20713224 0.20596186\n", + " 0.20439232 0.20242966 0.00526224 0.00525184 0.00523103 0.00520016\n", + " 0.00515961 0.0051096 0.19022738 0.157155 0.12316211 0.08844755\n", + " 0.05321501 0.01767079 0.20829266 0.20829266 0.0050897 0.0050897\n", + " 0.19646111 0.19611969 0.19539637 0.194293391 -24.31846949]\n", + " [-24.91983391 -24.31844152]\n", + " [-19.54383391 -24.31841356]\n", + " [-14.16783391 -24.31838561]\n", + " [ -8.79183391 -24.31835764]\n", + " [ -3.41583391 -24.31832968]\n", + " [-30.29586187 -18.94246949]\n", + " [-24.91986187 -18.94244153]\n", + " [-19.54386187 -18.94241356]\n", + " [-14.16786187 -18.94238561]\n", + " [ -8.79186187 -18.94235764]\n", + " [ -3.41586187 -18.94232969]\n", + " [-30.29588983 -13.56646949]\n", + " [-24.91988983 -13.56644152]\n", + " [-19.54388984 -13.56641357]\n", + " [-14.16788983 -13.5663856 ]\n", + " [ -8.79188983 -13.56635764]\n", + " [ -3.41588983 -13.56632968]\n", + " [-30.29591779 -8.19046949]\n", + " [-24.91991779 -8.19044152]\n", + " [-19.54391779 -8.19041356]\n", + " [-14.16791779 -8.1903856 ]\n", + " [ -8.79191779 -8.19035764]\n", + " [ -3.41591779 -8.19032968]\n", + " [-30.29594575 -2.81446949]\n", + " [-24.91994576 -2.81444153]\n", + " [-19.54394575 -2.81441356]\n", + " [-14.16794576 -2.8143856 ]\n", + " [ -8.79194575 -2.81435764]\n", + " [ -3.41594575 -2.81432968]]\n", + "398 0.1928159 0.19096695\n", + " 0.16229116 0.16200846 0.16141067 0.16050163 0.15928501 0.15776388\n", + " 0.1271878 0.12696445 0.126493383621]\n", + " [ 3.43331694 13.29161838]\n", + " [30.31033064 7.90070839]\n", + " [24.93433147 7.90369055]\n", + " [19.55833229 7.90667271]\n", + " [14.18233312 7.90965488]\n", + " [ 8.80633395 7.91263704]\n", + " [ 3.43033477 7.9156192 ]\n", + " [30.30734847 2.52470921]\n", + " [24.9313493 2.52769138]\n", + " [19.55535013 2.53067354]\n", + " [14.17935096 2.53365571]\n", + " [ 8.80335178 2.53663787]\n", + " [ 3.42735261 2.53962004]]\n", + "1 -24.16969676]\n", + " [ 0.1878321 -18.79369675]\n", + " [ 0.18769248 -13.41769676]\n", + " [ 0.18755286 -8.04169676]\n", + " [ 0.18741324 -2.66569676]\n", + " [ 2.08566061 -31.44314748]\n", + " [ 7.46166061 -31.44300785]\n", + " [ 12.83766061 -31.44286824]\n", + " [ 18.2136606 -31.44272862]\n", + " [ 23.5896606 -31.442589 ]\n", + " [ 28.9656606 -31.44244938]\n", + " [ 2.08486397 -0.76814748]\n", + " [ 7.46086396 -0.76800786]\n", + " [ 12.83686396 -0.76786825]\n", + " [ 18.21286396 -0.76772863]\n", + " [ 23.58886395 -0.76758901]\n", + " [ 28.96486395 -0.7674494 ]\n", + " [ 30.86311132 -29.54490011]\n", + " [ 30.86297171 -24.16890011]\n", + " [ 30.86283209 -18.79290011]\n", + " [ 30.86269247 -13.41690011]\n", + " [ 30.86255285 -8.04090011]\n", + " [ 30.86241323 -DEBUG:root:make_az_asym: xyp: shape: (96, 2)\n", + "2.66490012]\n", + " [ 0.18816061 -31.44319675]\n", + " [ 0.18816061 -31.44319675]\n", + " [ 30.86236396 -0.76740012]\n", + " [ 30.86236396 -0.76740012]\n", + " [ 2.08561133 -29.54564748]\n", + " [ 7.46161133 -29.54550785]\n", + " [ 12.83761133 -29.54536824]\n", + " [ 18.21361133 -29.54522862]\n", + " [ 23.58961132 -29.545089 ]\n", + " [ 28.96561132 -29.54494938]\n", + " [ 2.08547171 -24.16964747]\n", + " [ 7.46147171 -24.16950786]\n", + " [ 12.83747171 -24.16936824]\n", + " [ 18.21347171 -24.16922862]\n", + " [ 23.58947171 -24.16908901]\n", + " [ 28.9654717 -24.16894939]\n", + " [ 2.0853321 -18.79364747]\n", + " [ 7.46133209 -18.79350785]\n", + " [ 12.83733209 -18.79336824]\n", + " [ 18.21333209 -18.79322862]\n", + " [ 23.58933209 -18.79308901]\n", + " [ 28.96533209 -18.79294939]\n", + " [ 2.08519248 -13.41764748]\n", + " [ 7.46119248 -13.41750786]\n", + " [ 12.83719247 -13.41736824]\n", + " [ 18.21319248 -13.41722863]\n", + " [ 23.58919247 -13.41708901]\n", + " [ 28.96519247 -13.41694939]\n", + " [ 2.08505286 -8.04164748]\n", + " [ 7.46105286 -8.04150786]\n", + " [ 12.83705286 -8.04136825]\n", + " [ 18.21305286 -8.04122863]\n", + " [ 23.58905286 -8.04108901]\n", + " [ 28.96505285 -8.04094939]\n", + " [ 2.08491324 -2.66564748]\n", + " [ 7.46091324 -2.66550786]\n", + " [ 12.83691324 -2.66536825]\n", + " [ 18.21291324 -2.66522863]\n", + " [ 23.58891323 -2.66508901]\n", + " [ 28.96491324 -2.66494939]]\n", + " 0.12577923 0.12482642 0.12363768\n", + " 0.0913464 0.09118412 0.09084281 0.0903271 0.0896414 0.08878838\n", + " 0.05496643 0.05486748 0.05466012 0.05434775 0.0539337 0.05341999\n", + " 0.01825699 0.0182233 0.01815347 0.01804874 0.01791034 0.01773905]\n", + " [ 0.97804612 0.9835023 0.9882709 0.99228958 0.99550658 0.99788044\n", + " 0.9993802 0.99998599 0.97804612 0.97761228 0.9763799 0.97436602\n", + " 0.9715987 0.96811684 0.96396979 0.95921643 0.99998599 0.99949948\n", + " 0.99811729 0.99585778 0.99275046 0.98883543 0.98416308 0.97879432\n", + " 0.95921643 0.96406763 0.96831791 0.97190702 0.97478415 0.97690892\n", + " 0.97825182 0.97879432 0.98050502 0.98673815 0.99187539 0.99581708\n", + " 0.99848691 0.99983245 0.97797552 0.97690512 0.97465087 0.97125985\n", + " 0.96680364 0.96137714 0.99988415 0.99868386 0.99615519 0.9923479\n", + " 0.98733577 0.98121591 0.96141873 0.96696894 0.9715556 0.97508116\n", + " 0.97747135 0.97867638 0.97806575 0.97806575 0.97881331 0.97881331\n", + " 0.98041354 0.9793283 0.97704254 0.97360345 0.96908285 0.96357637\n", + " 0.98664355 0.98552109 0.9831564 0.9795969 0.97491482 0.9692068\n", + " 0.99177825 0.99062564 0.98819716 0.98454072 0.97972882 0.97385839\n", + " 0.99571799 0.99454231 0.99206523 0.98833534 0.98342556 0.97743289\n", + " 0.99838649 0.99719508 0.99468502 0.99090557 0.98593013 0.97985577\n", + " 0.99973135 0.99853197 0.9960052 0.99220076 0.98719237 0.98107714]]\n", + "DEBUG:root:radec2pix: xyfp Shape: (96, 2)\n", + "DEBUG:root:radec2pix: curVec: [[-0.23200491 0.78318807 0.57687968]\n", + " [-0.25794965 0.77585632 0.57576813]\n", + " [-0.28426412 0.76787723 0.57407183]\n", + " [-0.31082068 0.75924309 0.57178705]\n", + " [-0.33749723 0.74995563 0.56891315]\n", + " [-0.3641764 0.74002605 0.56545292]\n", + " [-0.39074493 0.72947499 0.56141308]\n", + " [-0.41709354 0.71833235 0.55680483]\n", + " [-0.23200491 0.78318807 0.57687968]\n", + " [-0.23262789 0.7987339 0.55489496]\n", + " [-0.23324261 0.81398441 0.53200307]\n", + " [-0.23381993 0.82884125 0.50828184]\n", + " [-0.23433666 0.84321526 0.48381232]\n", + " [-0.23477514 0.85702605 0.45867961]\n", + " [-0.2351228 0.87020186 0.43297343]\n", + " [-0.23537158 0.88267962 0.40678854]\n", + " [-0.41709354 0.71833235 0.55680483]\n", + " [-0.41961125 0.73408604 0.5338952 ]\n", + " [-0.42184636 0.74957081 0.5100875 ]\n", + " [-0.42377078 0.76469178 0.4854532 ]\n", + " [-0.42536089 0.77936185 0.46006871]\n", + " [-0.42659744 0.79350091 0.4340172 ]\n", + " [-0.42746573 0.8070358 0.40738958]\n", + " [-0.42795582 0.81990093 0.38028447]\n", + " [-0.23537158 0.88267962 0.40678854]\n", + " [-0.2624937 0.87621442 0.40416005]\n", + " [-0.28994358 0.86891509 0.40114746]\n", + " [-0.31760041 0.86077204 0.3977455 ]\n", + " [-0.34534625 0.85178467 0.39395285]\n", + " [-0.37306443 0.84196218 0.38977252]\n", + " [-0.4006391 0.83132417 0.38521219]\n", + " [-0.42795582 0.81990093 0.38028447]\n", + " [-0.24326563 0.78012389 0.57639271]\n", + " [-0.27532994 0.77070475 0.57463693]\n", + " [-0.3078221 0.76030441 0.57199892]\n", + " [-0.34051504 0.74892211 0.56847619]\n", + " [-0.37319262 0.73657848 0.56407393]\n", + " [-0.405648 0.72331538 0.55880637]\n", + " [-0.23236387 0.78997198 0.56740753]\n", + " [-0.23312705 0.80883992 0.53984235]\n", + " [-0.23384802 0.82716549 0.51099154]\n", + " [-0.23448157 0.84478077 0.48100296]\n", + " [-0.23499519 0.86153775 0.4500333 ]\n", + " [-0.23536762 0.87730789 0.41824986]\n", + " [-0.41813406 0.72526686 0.54694779]\n", + " [-0.42103258 0.74440655 0.51825713]\n", + " [-0.4234784 0.76304704 0.48828808]\n", + " [-0.42542617 0.78102484 0.45717916]\n", + " [-0.42684048 0.79819243 0.42508357]\n", + " [-0.42769626 0.81441825 0.39217194]\n", + " [-0.247148 0.87992078 0.40577985]\n", + " [-0.28062472 0.87143733 0.40230181]\n", + " [-0.31447328 0.86169057 0.39824103]\n", + " [-0.34847549 0.85067566 0.3935934 ]\n", + " [-0.38241651 0.83840959 0.38836449]\n", + " [-0.41608357 0.82493289 0.3825705 ]\n", + " [-0.23209496 0.78321763 0.57680332]\n", + " [-0.23209496 0.78321763 0.57680332]\n", + " [-0.42786195 0.8198985 0.38039531]\n", + " [-0.42786195 0.8198985 0.38039531]\n", + " [-0.24359418 0.78690646 0.56695688]\n", + " [-0.24450592 0.8058515 0.5392775 ]\n", + " [-0.24534557 0.82425028 0.51031072]\n", + " [-0.24606854 0.84193515 0.48020358]\n", + " [-0.24664292 0.8587581 0.44911224]\n", + " [-0.24704788 0.87459029 0.41720398]\n", + " [-0.27582184 0.77755085 0.56509909]\n", + " [-0.27714058 0.79667114 0.53712958]\n", + " [-0.27830593 0.81523923 0.50786889]\n", + " [-0.27927488 0.83308825 0.47746153]\n", + " [-0.28001673 0.85007003 0.44606229]\n", + " [-0.28051142 0.86605476 0.41383873]\n", + " [-0.30846969 0.76718977 0.5623756 ]\n", + " [-0.3101773 0.78642141 0.53416421]\n", + " [-0.31165527 0.80510219 0.50465974]\n", + " [-0.31286149 0.823066 0.47400427]\n", + " [-0.31376553 0.84016442 0.4423516 ]\n", + " [-0.31434724 0.85626661 0.40986986]\n", + " [-0.3413115 0.75582251 0.55878332]\n", + " [-0.34339227 0.77510157 0.53037657]\n", + " [-0.34517199 0.79383793 0.50067718]\n", + " [-0.34660844 0.81186622 0.46982532]\n", + " [-0.34767049 0.82903791 0.43797417]\n", + " [-0.34833708 0.84522134 0.40529269]\n", + " [-0.37413154 0.74346985 0.55432678]\n", + " [-0.37657062 0.7627325 0.52576963]\n", + " [-0.3786416 0.78146693 0.49592335]\n", + " [-0.38030128 0.79950856 0.46492688]\n", + " [-0.38151698 0.81670903 0.4329332 ]\n", + " [-0.38226614 0.83293632 0.40011209]\n", + " [-0.40672279 0.73017386 0.54901977]\n", + " [-0.40950449 0.74935671 0.52035622]\n", + " [-0.41185493 0.76803177 0.49041077]\n", + " [-0.41372935 0.78603526 0.45932189]\n", + " [-0.4150931 0.80321939 0.4272427 ]\n", + " [-0.41592176 0.81945237 0.39434363]]\n", + "DEBUG:root:make_az_asym: xyp: shape: (96, 2)\n", + "]\n", + " [ 1.52595816 22.5603207 ]\n", + " [ 1.52352493 18.17389281]\n", + " [ 1.5210917 13.78746492]\n", + " [ 1.51865847 9.40103702]\n", + " [ 1.51622524 5.01460912]\n", + " [ 1.513792 0.62818122]\n", + " [32.219759 29.4036525 ]\n", + " [32.21677684 24.02765333]\n", + " [32.21379467 18.65165415]\n", + " [32.21081251 13.27565498]\n", + " [32.20783035 7.89965581]\n", + " [32.20484818 2.52365664]\n", + " [30.32331188 31.30220479]\n", + " [24.9473127 31.30518695]\n", + " [19.57131353 31.30816912]\n", + " [14.19531435 31.31115127]\n", + " [ 8.81931518 31.31413344]\n", + " [ 3.44331601 31.3171156 ]\n", + " [30.3062959 0.62720951]\n", + " [24.93029672 0.63019167]\n", + " [19.55429755 0.63317383]\n", + " [14.17829838 0.636156 ]\n", + " [ 8.80229921 0.63913816]\n", + " [ 3.42630004 0.64212033]\n", + " [ 1.54476372 29.42066847]\n", + " [ 1.54178156 24.0446693 ]\n", + " [ 1.53879939 18.66867013]\n", + " [ 1.53581723 13.29267096]\n", + " [ 1.53283507 7.91667178]\n", + " [ 1.5298529 2.54067261]\n", + " [32.22081158 31.30115221]\n", + " [32.22081158 31.30115221]\n", + " [ 1.52880032 0.6431729 ]\n", + " [ 1.52880032 0.6431729 ]\n", + " [30.32225929 29.40470508]\n", + " [24.94626012 29.40768724]\n", + " [19.57026095 29.41066941]\n", + " [14.19426178 29.41365157]\n", + " [ 8.8182626 29.41663373]\n", + " [ 3.44226343 29.4196159 ]\n", + " [30.31927713 24.02870591]\n", + " [24.94327796 24.03168807]\n", + " [19.56727878 24.03467023]\n", + " [14.19127961 24.0376524 ]\n", + " [ 8.81528044 24.04063456]\n", + " [ 3.43928127 24.04361672]\n", + " [30.31629496 18.65270673]\n", + " [24.9402958 18.6556889 ]\n", + " [19.56429662 18.65867106]\n", + " [14.18829744 18.66165322]\n", + " [ 8.81229827 18.66463538]\n", + " [ 3.4362991 18.66761755]\n", + " [30.31331281 13.27670756]\n", + " [24.93731363 13.27968972]\n", + " [19.56131446 DEBUG:root:radec2pix: curVec Shape: (96, 3)\n", + "DEBUG:root:radec2pix: fitpx: [[4271.50000008 4155.50000008]\n", + " [4271.50000011 3863.07142867]\n", + " [4271.50000027 3570.64285733]\n", + " [4271.49999971 3278.21428555]\n", + " [4271.50000017 2985.78571436]\n", + " [4271.4999997 2693.35714277]\n", + " [4271.5000001 2400.92857145]\n", + " [4271.49999983 2108.5 ]\n", + " [4271.50000008 4155.50000008]\n", + " [3979.07142843 4155.49999984]\n", + " [3686.64285723 4155.50000011]\n", + " [3394.21428586 4155.50000024]\n", + " [3101.78571417 4155.49999975]\n", + " [2809.35714282 4155.49999988]\n", + " [2516.92857139 4155.49999979]\n", + " [2224.5 4155.50000004]\n", + " [4271.49999983 2108.5 ]\n", + " [3979.07142844 2108.5 ]\n", + " [3686.64285726 2108.5 ]\n", + " [3394.21428608 2108.50000001]\n", + " [3101.7857142 2108.5 ]\n", + " [2809.35714302 2108.50000001]\n", + " [2516.92857112 2108.49999996]\n", + " [2224.50000006 2108.50000003]\n", + " [2224.5 4155.50000004]\n", + " [2224.49999999 3863.07142838]\n", + " [2224.49999998 3570.64285685]\n", + " [2224.50000004 3278.21428613]\n", + " [2224.49999996 2985.78571394]\n", + " [2224.50000004 2693.3571431DEBUG:root:radec2pix: fitpx: [[4271.49999987 4155.49999987]\n", + " [4271.49999978 3863.07142838]\n", + " [4271.49999978 3570.64285699]\n", + " [4271.50000021 3278.21428583]\n", + " [4271.50000028 2985.78571441]\n", + " [4271.50000021 2693.35714292]\n", + " [4271.50000016 2400.92857146]\n", + " [4271.5 2108.5 ]\n", + " [4271.49999987 4155.49999987]\n", + " [3979.07142882 4155.50000028]\n", + " [3686.64285714 4155.5 ]\n", + " [3394.2142857 4155.49999997]\n", + " [3101.78571428 4155.49999999]\n", + " [2809.35714281 4155.49999986]\n", + " [2516.92857145 4155.50000014]\n", + " [2224.49999999 4155.4999997 ]\n", + " [4271.5 2108.5 ]\n", + " [3979.0714288 2108.50000001]\n", + " [3686.64285693 2108.49999999]\n", + " [3394.21428614 2108.50000002]\n", + " [3101.7857146 2108.50000002]\n", + " [2809.35714263 2108.49999998]\n", + " [2516.92857131 2108.49999998]\n", + " [2224.49999992 2108.49999995]\n", + " [2224.49999999 4155.4999997 ]\n", + " [2224.50000001 3863.07142868]\n", + " [2224.5 3570.64285711]\n", + " [2224.50000002 3278.21428594]\n", + " [2224.50000001 2985.78571436]\n", + " [2224.49999998 2693.35714271]\n", + " [2224.50000001 2400.92857146]\n", + " [2224.49999992 2108.49999995]\n", + " [4270.5 4028. ]\n", + " [4270.50000018 3669.60000013]\n", + " [4270.49999988 3311.19999993]\n", + " [4270.50000028 2952.80000012]\n", + " [4270.5 2594.4 ]\n", + " [4270.50000006 2236.00000001]\n", + " [4143.99999986 4154.49999985]\n", + " [3785.60000014 4154.50000018]\n", + " [3427.20000004 4154.50000006]\n", + " [3068.8 4154.49999999]\n", + " [2710.39999994 4154.49999977]\n", + " [2351.99999997 4154.49999974]\n", + " [4144.00000019 2109.50000001]\n", + " [3785.59999998 2109.5 ]\n", + " [3427.19999968 2109.49999999]\n", + " [3068.80000035 2109.50000002]\n", + " [2710.39999998 2109.5 ]\n", + " [2351.99999973 2109.49999993]\n", + " [2225.50000001 4028.00000029]\n", + " [2225.50000001 3669.60000014]\n", + " [2225.50000002 3311.20000027]\n", + " [2225.50000003 2952.80000024]\n", + " [2225.49999999 2594.39999997]\n", + " [2225.49999991 2235.99999983]\n", + " [4270.50000028 4154.50000027]\n", + " [4270.50000028 4154.50000027]\n", + " [2225.50000021 2109.50000012]\n", + " [2225.50000021 2109.50000012]\n", + " [4143.99999997 4027.99999997]\n", + " [3785.60000006 4028.00000007]\n", + " [3427.20000002 4028.00000003]\n", + " [3068.8 40DEBUG:root:radec2pix: xyfp: [[32.275486 31.41357429]\n", + " [32.27502267 27.02714574]\n", + " [32.27455935 22.64071719]\n", + " [32.27409601 18.25428864]\n", + " [32.27363269 13.8678601 ]\n", + " [32.27316936 9.48143155]\n", + " [32.27270604 5.095003 ]\n", + " [32.27224271 0.70857446]\n", + " [32.275486 31.41357429]\n", + " [27.88905745 31.41403761]\n", + " [23.5026289 31.41450094]\n", + " [19.11620036 31.41496427]\n", + " [14.72977181 31.41542759]\n", + " [10.34334326 31.41589092]\n", + " [ 5.95691471 31.41635424]\n", + " [ 1.57048617 31.41681757]\n", + " [32.27224271 0.70857446]\n", + " [27.88581416 0.70903778]\n", + " [23.49938562 0.70950111]\n", + " [19.11295707 0.70996444]\n", + " [14.72652852 0.71042776]\n", + " [10.34009998 0.71089109]\n", + " [ 5.95367142 0.71135442]\n", + " [ 1.56724288 0.71181774]\n", + " [ 1.57048617 31.41681757]\n", + " [ 1.57002284 27.03038902]\n", + " [ 1.56955951 22.64396047]\n", + " [ 1.56909619 18.25753194]\n", + " [ 1.56863286 13.87110338]\n", + " [ 1.56816953 9.48467484]\n", + " [ 1.56770621 5.09824629]\n", + " [ 1.56724288 0.71181774]\n", + " [32.26028399 29.50107588]\n", + " [32.25971613 24.12507591]\n", + " [32.25914828 18.74907594]\n", + " [32.25858043 13.37307597]\n", + "DEBUG:root:radec2pix: ccdpx: [[-4.45000003e+01 -5.00000268e-01]\n", + " [-4.44999998e+01 2.91928572e+02]\n", + " [-4.44999999e+01 5.84357143e+02]\n", + " [-4.45000000e+01 8.76785714e+02]\n", + " [-4.44999998e+01 1.16921429e+03]\n", + " [-4.44999999e+01 1.46164286e+03]\n", + " [-4.44999997e+01 1.75407143e+03]\n", + " [-4.44999999e+01 2.04650000e+03]\n", + " [-4.45000003e+01 -5.00000268e-01]\n", + " [ 2.47928572e+02 -4.99999720e-01]\n", + " [ 5.40357143e+02 -5.00000140e-01]\n", + " [ 8.32785714e+02 -4.99999791e-01]\n", + " [ 1.12521429e+03 -4.99999975e-01]\n", + " [ 1.41764286e+03 -4.99999912e-01]\n", + " [ 1.71007143e+03 -4.99999978e-01]\n", + " [ 2.00250000e+03 -4.99999991e-01]\n", + " [-4.44999999e+01 2.04650000e+03]\n", + " [ 2.47928571e+02 2.04650000e+03]\n", + " [ 5.40357143e+02 2.04650000e+03]\n", + " [ 8.32785715e+02 2.04650000e+03]\n", + " [ 1.12521429e+03 2.04650000e+03]\n", + " [ 1.41764286e+03 2.04650000e+03]\n", + " [ 1.71007143e+03 2.04650000e+03]\n", + " [ 2.00250000e+03 2.04650000e+03]\n", + " [ 2.00250000e+03 -4.99999991e-01]\n", + " [ 2.00250000e+03 2.91928572e+02]\n", + " [ 2.00250000e+03 5.84357143e+02]\n", + " [ 2.00250000e+03 8.76785715e+02]\n", + " [ 2.00250000e+03 1.16921429e+03]\n", + " [ 2.00250000e+03 1.46164286e+03]\n", + " [ 2.00250000e+03 1.75407143e+03]\n", + " [ 2.00250000e+03 2.04650000e+03]\n", + " [-4.34999998e+01 1.27000000e+02]\n", + " [-4.35000000e+01 4.85400000e+02]\n", + " [-4.35000001e+01 8.43800000e+02]\n", + " [-4.35000000e+01 1.20220000e+03]\n", + " [-4.35000001e+01 1.56060000e+03]\n", + " [-4.34999999e+01 1.91900000e+03]\n", + " [ 8.30000001e+01 5.00000092e-01]\n", + " [ 4.41400000e+02 4.99999764e-01]\n", + " [ 7.99800000e+02 4.99999911e-01]\n", + " [ 1.15820000e+03 5.00000156e-01]\n", + " [ 1.51660000e+03 4.99999840e-01]\n", + " [ 1.87500000e+03 4.99999915e-01]\n", + " [ 8.29999998e+01 2.04550000e+03]\n", + " [ 4.41400000e+02 2.04550000e+03]\n", + " [ 7.99800000e+02 2.04550000e+03]\n", + " [ 1.15820000e+03 2.04550000e+03]\n", + " [ 1.51660000e+03 2.04550000e+03]\n", + " [ 1.87500000e+03 2.04550000e+03]\n", + " [ 2.00150000e+03 1.27000000e+02]\n", + " [ 2.00150000e+03 4.85400000e+02]\n", + " [ 2.00150000e+03 8.43800000e+02]\n", + " [ 2.00150000e+03 1.20220000e+03]\n", + " [ 2.00150000e+03 1.56060000e+03]\n", + " [ 2.00150000e+03 1.91900000e+03]\n", + " [-4.35000000e+01 4.99999958e-01]\n", + " [-4.35000000e+01 4.99999958e-01]\n", + " [ 2.00150000e+03 2.04550000e+03]\n", + " [ 2.00150000e+03 2.04550000e+03]\n", + " [ 8.30000002e+01 1.27000000e+02]\n", + " [ 4.41400000e+02 1.27000000e+02]\n", + " [ 7.99800000e+02 1.27000000e+02]\n", + " [ 1.15820000e+03 1.27000000e+02]\n", + " [ 1.51660000e+03 1.27000000e+02]\n", + " [ 1.87500000e+03 1.27000000e+02]\n", + " [ 8.29999999e+01 4.85400000e+02]\n", + " [ 4.41400000e+02 4.85400000e+02]\n", + " [ 7.99800000e+02 4.85400000e+02]\n", + " [ 1.15820000e+03 4.85400000e+02]\n", + " [ 1.51660000e+03 4.85400000e+02]\n", + " [ 1.87500000e+03 4.85400000e+02]\n", + " [ 8.30000001e+01 8.43800000e+02]\n", + " [ 4.41400000e+02 8.43800000e+02]\n", + " [ 7.99800000e+02 8.43800000e+02]\n", + " [ 1.15820000e+03 8.43800000e+02]\n", + " [ 1.51660000e+03 8.43800000e+02]\n", + " [ 1.87500000e+03 8.43800000e+02]\n", + " [ 8.29999999e+01 1.20220000e+03]\n", + " [ 4.41400000e+02 1.20220000e+03]\n", + " [ 7.99800000e+02 1.20220000e+03]\n", + " [ 1.15820000e+03 1.20220000e+03]\n", + " [ 1.51660000e+03 1.20220000e+03]\n", + " [ 1.87500000e+03 1.20220000e+03]\n", + " [ 8.29999999e+01 1.56060000e+03]\n", + " [ 4.41400000e+02 1.56060000e+03]\n", + " [ 7.99800000e+02 1.56060000e+03]\n", + " [ 1.15820000e+03 1.56060000e+03]\n", + " [ 1.51660000e+03 1.56060000e+03]\n", + " [ 1.87500000e+03 1.56060000e+03]\n", + " [ 8.29999998e+01 1.91900000e+03]\n", + " [ 4.41400000e+02 1.91900000e+03]\n", + " [ 7.99800000e+02 1.91900000e+03]\n", + " [ 1.15820000e+03 1.91900000e+03]\n", + " [ 1.51660000e+03 1.91900000e+03]\n", + " [ 1.87500000e+03 1.91900000e+03]]\n", + "13.28267189]\n", + " [14.18531529 13.28565406]\n", + " [ 8.80931611 13.28863621]\n", + " [ 3.43331694 13.29161838]\n", + " [30.31033064 7.90070839]\n", + " [24.93433147 7.90369055]\n", + " [19.55833229 7.90667271]\n", + " [14.18233312 7.90965488]\n", + " [ 8.80633395 7.91263704]\n", + " [ 3.43033477 7.9156192 ]\n", + " [30.30734847 2.52470921]\n", + " [24.9313493 2.52769138]\n", + " [19.55535013 2.53067354]\n", + " [14.17935096 2.53365571]\n", + " [ 8.80335178 2.53663787]\n", + " [ 3.42735261 2.53962004]]\n", + "28.00000001]\n", + " [2710.40000007 4028.00000025]\n", + " [2352. 4028.00000001]\n", + " [4143.99999988 3669.5999999 ]\n", + " [3785.59999992 3669.59999992]\n", + " [3427.20000003 3669.60000003]\n", + " [3068.79999996 3669.59DEBUG:root:optics_fp: xyfp shape: (96, 2)\n", + "DEBUG:root:radec2pix: xyfp: [[-32.208296 -31.60697943]\n", + " [-32.20831882 -27.22055086]\n", + " [-32.20834163 -22.83412229]\n", + " [-32.20836444 -18.44769372]\n", + " [-32.20838725 -14.06126515]\n", + " [-32.20841007 -9.67483658]\n", + " [-32.20843288 -5.288408 ]\n", + " [-32.2084557 -0.90197943]\n", + " [-32.208296 -31.60697943]\n", + " [-27.82186743 -31.60695662]\n", + " [-23.43543886 -31.60693381]\n", + " [-19.04901029 -31.60691099]\n", + " [-14.66258171 -31.60688818]\n", + " [-10.27615314 -31.60686536]\n", + " [ -5.88972457 -31.60684255]\n", + " [ -1.503296 -31.60681974]\n", + " [-32.2084557 -0.90197943]\n", + " [-27.82202712 -0.90195662]\n", + " [-23.43559855 -0.9019338 ]\n", + " [-19.04916999 -0.90191099]\n", + " [-14.66274141 -0.90188818]\n", + " [-10.27631284 -0.90186536]\n", + " [ -5.88988428 -0.90184255]\n", + " [ -1.5034557 -0.90181973]\n", + " [ -1.503296 -31.60681974]\n", + " [ -1.50331881 -27.22039116]\n", + " [ -1.50334163 -22.83396259]\n", + " [ -1.50336444 -18.44753402]\n", + " [ -1.50338726 -14.06110544]\n", + " [ -1.50341007 -9.67467688]\n", + " [ -1.50343288 -5.2882483 ]\n", + " [ -1.5034557 -0.90181973]\n", + " [-32.19330594 -29.69447935]\n", + " [-32.19333391 -24.31847935]\n", + " [-32.19336187 -18.94247936]\n", + " [-32.19338983 -13.56647936]\n", + " [-32.19341779 -8.19047935]\n", + " [-32.19344575 -2.81447935]\n", + " [-30.29579608 -31.59196949]\n", + " [-24.91979608 -31.59194152]\n", + " [-19.54379608 -31.59191356]\n", + " [-14.16779608 -31.5918856 ]\n", + " [ -8.79179608 -31.59185764]\n", + " [ -3.41579608 -31.59182968]\n", + " [-30.29595562 -0.91696949]\n", + " [-24.91995562 -0.91694153]\n", + " [-19.54395562 -0.91691356]\n", + " [-14.16795562 -0.9168856 ]\n", + " [ -8.79195562 -0.91685764]\n", + " [ -3.41595563 -0.91682968]\n", + " [ -1.51830595 -29.69431981]\n", + " [ -1.51833391 -24.31831981]\n", + " [ -1.51836187 -18.94231981]\n", + " [ -1.51838983 -13.56631981]\n", + " [ -1.51841779 -8.19031981]\n", + " [ -1.51844575 -2.81431982]\n", + " [-32.19329608 -31.59197936]\n", + " [-32.19329608 -31.59197936]\n", + " [ -1.51845562 -0.91681981]\n", + " [ -1.51845562 -0.91681981]\n", + " [-30.29580595 -29.69446949]\n", + " [-24.91980594 -29.69444152]\n", + " [-19.54380595 -29.69441356]\n", + " [-14.16780595 -29.69438561]\n", + " [ -8.79180595 -29.69435764]\n", + " [ -3.41580595 -29.69432968]\n", + " [-30.29583391 -24.31846949]\n", + " [-24.91983391 -24.31844152]\n", + " [-19.54383391 -24.31841356]\n", + " [-14.16783391 -24.31838561]\n", + " [ -8.79183391 -24.31835764]\n", + " [ -3.41583391 -24.31832968]\n", + " [-30.29586187 -18.94246949]\n", + " [-24.91986187 -18.94244153]\n", + " [-19.54386187 -18.94241356]\n", + " [-14.16786187 -18.94238561]\n", + " [ -8.79186187 -18.94235764]\n", + " [ -3.41586187 -18.94232969]\n", + " [-30.29588983 -13.56646949]\n", + " [-24.91988983 -13.56644152]\n", + " [-19.54388984 -13.56641357]\n", + " [-14.16788983 -13.5663856 ]\n", + " [ -8.79188983 -13.56635764]\n", + " [ -3.41588983 -13.56632968]\n", + " [-30.29591779 -8.19046949]\n", + " [-24.91991779 -8.19044152]\n", + " [-19.54391779 -8.19041356]\n", + " [-14.16791779 -8.1903856 ]\n", + " [ -8.79191779 -8.19035764]\n", + " [ -3.41591779 -8.19032968]\n", + " [-30.29594575 -2.81446949]\n", + " [-24.91994576 -2.81444153]\n", + " [-19.54394575 -2.81441356]\n", + " [-14.16794576 -2.8143856 ]\n", + " [ -8.79194575 -2.81435764]\n", + " [ -3.41594575 -2.81432968]]\n", + "2]\n", + " [2224.49999998 2400.92857136]\n", + " [2224.50000006 2108.50000003]\n", + " [4270.50000017 4028.00000015]\n", + " [4270.49999995 3669.59999996]\n", + " [4270.49999992 33DEBUG:root:radec2pix: xyfp Shape: (96, 2)\n", + "11.19999995]\n", + " [4270.50000022 2952.80000009]\n", + " [4270.50000024 2594.40000006]\n", + " [4270.49999979 2235.99999998]\n", + " [4144.00000027 4154.50000028]\n", + " [3785.60000021 4154.50000026]\n", + " [3427.20000003 4154.50000005]\n", + " [3068.79999988 4154.49999973]\n", + " [2710.40000006 4154.50000022]\n", + " [2351.99999998 4154.4999998 ]\n", + " [4144.00000013 2109.5 ]\n", + " [3785.6 2109.5 ]\n", + " [3427.19999974 2109.49999999]\n", + " [3068.8 2109.5 ]\n", + " [2710.39999984 2109.49999999]\n", + " [2351.99999972 2109.49999994]\n", + " [2225.5 4027.99999997]\n", + " [2225.50000002 3669.60000025]\n", + " [2225.50000002 3311.20000025]\n", + " [2225.50000004 2952.80000031]\n", + " [2225.50000002 2594.40000011]\n", + " [2225.50000016 2236.00000026]\n", + " [4270.49999974 4154.49999975]\n", + " [4270.49999974 4154.49999975]\n", + " [2225.50000003 2109.50000001]\n", + " [2225.50000003 2109.50000001]\n", + " [4143.99999996 4027.99999996]\n", + " [3785.60000018 4028.00000021]\n", + " [3427.19999989 4027.99999984]\n", + " [3068.80000004 4028.00000009]\n", + " [2710.39999997 4027.9999999 ]\n", + " [2351.99999997 4027.99999976]\n", + " [4144.00000024 3669.60000019]\n", + " [3785.60000022 3669.60000021]\n", + " [3427.19999988 3669.59999985]\n", + " [3068.80000005 3669.60000008]\n", + " [2710.39999999 3669.59999998]\n", + " [2352. 3669.60000003]\n", + " [4144.00000009 3311.20000006]\n", + " [3785.60000001 3311.20000001]\n", + " [3427.20000009 3311.20000009]\n", + " [3068.80000003 3311.20000004]\n", + " [2710.40000012 3311.20000025]\n", + " [2351.99999998 3311.19999988]\n", + " [4143.99999976 2952.79999989]\n", + " [3785.59999985 2952.79999992]\n", + " [3427.19999969 2952.79999979]\n", + " [3068.79999997 2952.79999997]\n", + " [2710.40000016 2952.80000025]\n", + " [2352.00000009 2952.80000036]\n", + " [4143.99999979 2594.39999994]\n", + " [3785.60000002 2594.40000001]\n", + " [3427.20000024 2594.4000001 ]\n", + " [3068.80000002 2594.40000001]\n", + " [2710.40000021 2594.40000019]\n", + " [2351.99999998 2594.39999995]\n", + " [4144.00000008 2236.00000001]\n", + " [3785.60000005 2236.00000001]\n", + " [3427.20000007 2236.00000001]\n", + " [3068.79999979 2235.99999996]\n", + " [2710.39999971 2235.99999991]\n", + " [2351.99999979 2235.99999984]]\n", + "DEBUG:root:radec2pix: xyfp: [[ 0.173161 -31.458197DEBUG:root:radec2pix: camVec Shape: (3, 96)\n", + "DEBUG:root:radec2pix: camVec: [[0.20582147 0.20765008 0.20920683 0.21049219 0.21150557 0.2122456\n", + " 0.21271065 0.21289938 0.20582147 0.17940403 0.15227891 0.12455745\n", + " 0.09635017 0.06776763 0.03892112 0.00992292 0.21289938 0.18554193\n", + " 0.15747589 0.1288054 0.09963586 0.07007602 0.04023879 0.01024104\n", + " 0.00992292 0.01000636 0.01007758 0.01013637 0.01018243 0.01021541\n", + " 0.01023502 0.01024104 0.20656285 0.20862007 0.2102697 0.2115111\n", + " 0.21234181 0.21275892 0.19440388 0.16153549 0.12771486 0.09314577\n", + " 0.05803185 0.02257838 0.20106508 0.16704611 0.13206625 0.09631893\n", + " 0.06000442 0.02333228 0.01006049 0.01015553 0.01023184 0.01028888\n", + " 0.01032605 0.01034279 0.20573918 0.20573918 0.01034376 0.01034376\n", + " 0.19517916 0.16217419 0.12821715 0.09351091 0.05825864 0.02266572\n", + " 0.19711638 0.16377271 0.12947641 0.09442771 0.05882858 0.02288505\n", + " 0.19867107 0.16505894 0.13049231 0.09516891 0.05928988 0.02306224\n", + " 0.19984199 0.16603002 0.13126104 0.0957307999994]\n", + " [2710.39999994 3669.59999984]\n", + " [2352.00000003 3669.60000024]\n", + " [4143.99999986 3311.19999992]\n", + " [3785.60000024 3311.20000018]\n", + " [3427.19999985 3311.19999985]\n", + " [3068.80000018 3311.20000023]\n", + " [2710.39999997 3311.19999993]\n", + " [2351.99999998 3311.19999989]\n", + " [4144.00000009 2952.80000004]\n", + " [3785.60000017 2952.80000009]\n", + " [3427.19999999 2952.79999999]\n", + " [3068.79999994 2952.79999994]\n", + " [2710.40000012 2952.80000019]\n", + " [2351.99999999 2952.79999997]\n", + " [4143.99999998 2594.4 ]\n", + " [3785.60000016 2594.40000005]\n", + " [3427.20000028 2594.40000012]\n", + " [3068.79999967 2594.39999981]\n", + " [2710.40000007 2594.40000006]\n", + " [2351.99999992 2594.39999981]\n", + " [4143.99999971 2235.99999997]\n", + " [3785.59999981 2235.99999998]\n", + " [3427.2 2236. ]\n", + " [3068.79999989 2235.99999998]\n", + " [2710.40000023 2236.00000007]\n", + " [2352.00000024 2236.00000019]]\n", + "DEBUG:root:mm_to_pix: fitpx: [[0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0 [32.25801258 7.997076 ]\n", + " [32.25744472 2.62107603]\n", + " [30.36298443 31.3987763 ]\n", + " [24.98698446 31.39934415]\n", + " [19.61098448 31.399912 ]\n", + " [14.23498451 31.40047985]\n", + " [ 8.85898454 31.40104771]\n", + " [ 3.48298457 31.40161556]\n", + " [30.35974431 0.72377647]\n", + " [24.98374433 0.72434432]\n", + " [19.60774436 0.72491217]\n", + " [14.23174439 0.72548003]\n", + " [ 8.85574442 0.72604788]\n", + " [ 3.47974445 0.72661573]\n", + " [ 1.58528416 29.504316 ]\n", + " [ 1.5847163 24.12831603]\n", + " [ 1.58414845 18.75231606]\n", + " [ 1.5835806 13.37631609]\n", + " [ 1.58301275 8.00031612]\n", + " [ 1.5824449 2.62431615]\n", + " [32.26048441 31.39857587]\n", + " [32.26048441 31.39857587]\n", + " [ 1.58224447 0.72681616]\n", + " [ 1.58224447 0.72681616]\n", + " [30.36278399 29.50127631]\n", + " [24.98678403 29.50184416]\n", + " [19.61078405 29.50241201]\n", + " [14.23478409 29.50297987]\n", + " [ 8.85878411 29.50354772]\n", + " [ 3.48278414 29.50411557]\n", + " [30.36221615 24.12527634]\n", + " [24.98621618 24.12584419]\n", + " [19.6102162 24.12641204]\n", + " [14.23421623 24.1269799 ]\n", + " [ 8.85821626 24.12754775]\n", + " [ 3.48221629 24.1281156 ]\n", + " [30.36164829 18.74927637]\n", + " DEBUG:root:fitpix2pix: ccdpx: shape: (96, 2)\n", + ". 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]]\n", + "[24.98564832 18.74984422]\n", + " [19.60964835 18.75041208]\n", + " [14.23364838 18.75097993]\n", + " [ 8.85764841 18.75154778]\n", + " [ 3.48164844 18.75211563]\n", + " [30.36108043 13.3732764 ]\n", + " [24.98508046 13.37384425]\n", + " [19.60908049 13.3744121 ]\n", + " [14.23308053 13.37497996]\n", + " [ 82 0.0596397 0.02319607\n", + " 0.20062602 0.16668139 0.13177743 0.09610838 0.05987462 0.02328514\n", + " 0.20101976 0.1670086 0.13203673 0.09629765 0.05999164 0.02332821]\n", + " [0.20164691 0.17515749 0.1479768 0.12021614 0.09198614 0.06339752\n", + " 0.03456171 0.00559103 0.20164691 0.2034844 0.20505578 0.20636157\n", + " 0.2074012 0.20817322 0.20867589 0.20890768 0.00559103 0.00564441\n", + " 0.00569099 0.00573063 0.00576317 0.00578837 0.00580605 0.00581605\n", + " 0.20890768 0.18144072 0.15328055 0.12453134 0.09529889 0.06569253\n", + " 0.0358258 0.00581605 0.19019593 0.15725033 0.12337711 0.08878017\n", + " 0.0536634 0.01823232 0.20239118 0.20446311 0.20613616 0.2074097\n", + " 0.20828117 0.20874739 0.00571471 0.00577657 0.00582791 0.00586841\n", + " 0.00589767 0.00591534 0.19702358 0.16288078 0.12780019 0.0919758\n", + " 0.05560896 0.01891032 0.20156436 0.20156436 0.00591876 0.00591876\n", + " 0.19097333 0.19292238 0.19449762 0.19569785 0.19651986 0.19695996\n", + " 0.15788822 0.15949023 0.1607887 0.16178086 0.16246211 0.16282774\n", + " 0.12387558 0.1251298 0DEBUG:root:make_az_asym: xyp: [[32.2358199 31.31614388]\n", + " [32.23338667 26.92971599]\n", + " [32.23095344 22.54328809]\n", + " [32.2285202 18.15686019]\n", + " [32.22608698 13.7704323 ]\n", + " [32.22365375 9.3840044 ]\n", + " [32.22122051 4.99757651]\n", + " [32.21878728 0.61114861]\n", + " [32.2358199 31.31614388]\n", + " [27.849392 31.31857712]\n", + " [23.46296411 31.32101035]\n", + " [19.07653621 31.32344358]\n", + " [14.69010831 31.3258768 ]\n", + " [10.30368042 31.32831004]\n", + " [ 5.91725252 31.33074327]\n", + " [ 1.53082462 31.3331765 ]\n", + " [32.21878728 0.61114861]\n", + " [27.83235938 0.61358184]\n", + " [23.44593149 0.61601507]\n", + " [19.0595036 0.6184483 ]\n", + " [14.6730757 0.62088153]\n", + " [10.2866478 0.62331476]\n", + " [ 5.90021991 0.625748 ]\n", + " [ 1.513792 0.62818122]\n", + " [ 1.53082462 31.3331765 ]\n", + " [ 1.52839139 26.94674861]\n", + " [ 1.52595816 22.5603207 ]\n", + " [ 1.52352493 18.17389281]\n", + " [ 1.5210917 13.78746492]\n", + " [ 1.51865847 9.40103702]\n", + " [ 1.51622524 5.01460912]\n", + " [ 1.513792 0.62818122]\n", + " [32.219759 29.4036525 ]\n", + " [32.21677684 24.02765333]\n", + " [32.21379467 18.65165415]\n", + " [32.21081251 13.27565498]\n", + " [32.20783035 7.89965581]\n", + " [32.20484818 2.52365664]\n", + " [30.32331188 31.30220479]\n", + " [24.9473127 31.30518695]\n", + " [19.57131353 31.30816912]\n", + " [14.19531435 31.31115127]\n", + " [ 8.81931518 31.31413344]\n", + " [ 3.44331601 31.3171156 ]\n", + " [30.3062959 0.62720951]\n", + " [24.93029672 0.63019167]\n", + " [19.55429755 0.63317383]\n", + " [14.17829838 0.636156 ]\n", + " [ 8.80229921 0.63913816]\n", + " [ 3.42630004 0.64212033]\n", + " [ 1.54476372 29.42066847]\n", + " [ 1.54178156 24.0446693 ]\n", + " [ 1.53879939 18.66867013]\n", + " [ 1.53581723 13.29267096]\n", + " [ 1.53283507 7.91667178]\n", + " [ 1.5298529 2.54067261]\n", + " [32.22081158 31.30115221]\n", + " [32.22081158 31.30115221]\n", + " [ 1.52880032 0.6431729 ]\n", + " [ 1.52880032 0.6431729 ]\n", + " [30.32225929 29.40470508]\n", + " [24.94626012 29.40768724]\n", + " [19.57026095 29.41066941]\n", + " [14.19426178 29.41365157]\n", + " [ 8.8182626 29.41663373]\n", + " [ 3.44226343 29.4196159 ]\n", + " [30.31927713 24.02870591]\n", + " [24.94327796 24.03168807]\n", + " [19.56727878 24.03467023]\n", + " [14.19127961 24.0376524 ]\n", + " [ 8.81528044 24.04063456]\n", + " [ 3.43928127 24.04361672]\n", + " [30.31629496 18.65270673]\n", + " [24.9402958 18.6556889 ]\n", + " [19.56429662 18.65867106]\n", + " [14.18829744 18.66165322]\n", + " [ 8.81229827 18.66463538]\n", + " [ 3.4362991 18.66761755]\n", + " [30.31331281 13.27670756]\n", + " [24.93731363 13.27968972]\n", + " [19.56131446 13.28267189]\n", + " [14.18531529 13.28565406]\n", + " [ 8.80931611 13.28863621]\n", + " [ 3.43331694 13.29161838]\n", + " [30.31033064 7.90070839]\n", + " [24.93433147 7.90369055]\n", + " [19.55833229 7.90667271]\n", + " [14.18233312 7.90965488]\n", + " [ 8.80633395 7.91263704]\n", + " [ 3.43033477 7.9156192 ]\n", + " [30.30734847 2.52470921]\n", + " [24.9313493 2.52769138]\n", + " [19.55535013 2.53067354]\n", + " [14.17935096 2.53365571]\n", + " [ 8.80335178 2.53663787]\n", + " [ 3.42735261 2.53962004]]\n", + "DEBUG:root:fitpix2pix: visCut: True\n", + "DEBUG:root:mm_to_pix: fitpx: [[0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]]\n", + ".85708056 13.37554781]\n", + " [ 3.48108059 13.37611567]\n", + " [30.36051258 7.99727643]\n", + " [24.98451261 7.99784428]\n", + " [19.60851265 7.99841214]\n", + " [14.23251268 7.99897999]\n", + " [ 8.85651271 7.99954784]\n", + " [ 3.48051273 8.00011569]\n", + " [30.35994473 2.62127646]\n", + " [24.98394476 2.62184431]\n", + " [19.60794479 2.62241216]\n", + " [14.23194482 2.62298002]\n", + " [ 8.85594485 2.62354787]\n", + " [ 3.47994488 2.62411572]]\n", + "DEBUG:root:radec2pix: fitpx: [[-5.00000272e-01 -5.00000268e-01]\n", + " [-4.99999785e-01 2.91928572e+02]\n", + " [-4.99999908e-01 5.84357143e+02]\n", + " [-4.99999976e-01 8.76785714e+02]\n", + " [-4.99999814e-01 1.16921429e+03]\n", + " [-4.99999859e-01 1.46164286e+03]\n", + " [-4.99999732e-01 1.75407143e+03]\n", + " [-4.99999866e-01 2.04650000e+03]\n", + " [-5.00000272e-01 -5.00000268e-01]\n", + " [ 2.91928572e+02 -4.99999720e-01]\n", + " [ 5.84357143e+02 -5.00000140e-01]\n", + " [ 8.76785714e+02 -4.99999791e-01]\n", + " [ 1.16921429e+03 -4.99999975e-01]\n", + " [ 1.46164286e+03 -4.99999912e-01]\n", + " [ 1.75407143e+03 -4.99999978e-01]\n", + " [ 2.04650000e+03 -4.99999991e-01]\n", + " [-4.99999866e-01 2.04650000e+03]\n", + " [ 2.91928571e+02 2.04650000e+03]\n", + " [ 5.84357143e+02 2.04650000e+03]\n", + " [ 8.76785715e+02 2.04650000e+03]\n", + " [ 1.16921429e+03 2.04650000e+03]\n", + " [ 1.46164286e+03 2.04650000e+03]\n", + " [ 1.75407143e+03 2.04650000e+03]\n", + " [ 2.04650000e+03 2.04650000e+03]\n", + " [ 2.04650000e+03 -4.99999991e-01]\n", + " [ 2.04650000e+03 2.91928572e+02]\n", + " [ 2.04650000e+03 5.84357143e+02]\n", + " [ 2.04650000e+03 8.76785715e+02]\n", + " [ 2.04650000e+03 1.16921429e+03]\n", + " [ 2.04650000e+03 1.46164286e+03]\n", + " [ 2.04650000e+03 1.75407143e+03]\n", + " [ 2.04650000e+03 2.04650000e+03]\n", + " [ 5.00000192e-01 1.27000000e+02]\n", + " [ 4.99999990e-01 4.85400000e+02]\n", + " [ 4.99999881e-01 8.43800000e+02]\n", + " [ 5.00000044e-01 1.20220000e+03]\n", + " [ 4.99999938e-01 1.56060000e+03]\n", + " [ 5.00000069e-01 1.91900000e+03]\n", + " [ 1.27000000e+02 5.00000092e-01]\n", + " [ 4.85400000e+02 4.99999764e-01]\n", + " [ 8.43800000e+02 4.99999911e-01]\n", + " [ 1.20220000e+03 5.00000156e-01]\n", + " [ 1.56060000e+03 4.99999840e-01]\n", + " [ 1.91900000e+03 4.99999915e-01]\n", + " [ 1.27000000e+02 2.04550000e+03]\n", + " [ 4.85400000e+02 2.04550000e+03]\n", + " [ 8.43800000e+02 2.04550000e+03]\n", + " [ 1.20220000e+03 2.04550000e+03]\n", + " [ 1.56060000e+03 2.04550000e+03]\n", + " [ 1.91900000e+03 2.04550000e+03]\n", + " [ 2.04550000e+03 1.27000000e+02]\n", + " [ 2.04550000e+03 4.85400000e+02]\n", + " [ 2.04550000e+03 8.43800000e+02]\n", + " [ 2.04550000e+03 1.20220000e+03]\n", + " [ 2.04550000e+03 1.56060000e+03]\n", + " [ 2.04550000e+03 1.91900000e+03]\n", + " [ 4.99999957e-01 4.99999958e-01]\n", + " [ 4.99999957e-01 4.99999958e-01]\n", + " [ 2.04550000e+03 2.04550000e+03]\n", + " [ 2.04550000e+03 2.04550000e+03]\n", + " [ 1.27000000e+02 1.27000000e+02]\n", + " [ 4.85400000e+02 1.27000000e+02]\n", + " [ 8.43800000e+02 1.27000000e+02]\n", + " [ 1.20220000e+03 1.27000000e+02]\n", + " [ 1.56060000e+03 1.27000000e+02]\n", + " [ 1.91900000e+03 1.27000000e+02]\n", + " [ 1.27000000e+02 4.85400000e+02]\n", + " [ 4.85400000e+02 4.85400000e+02]\n", + " [ 8.43800000e+02 4.85400000e+02]\n", + " [ 1.20220000e+03 4.85400000e+02]\n", + " [ 1.56060000e+03 4.85400000e+02]\n", + " [ 1.91900000e+03 4.85400000e+02]\n", + " [ 1.27000000e+02 8.43800000e+02]\n", + " [ 4.85400000e+02 8.43800000e+02]\n", + " [ 8.43800000e+02 8.43800000e+02]\n", + " [ 1.20220000e+03 8.43800000e+02]\n", + " [ 1.56060000e+03 8.43800000e+02]\n", + " [ 1.91900000e+03 8.43800000e+02]\n", + " [ 1.27000000e+02 1.20220000e+03]\n", + " [ 4.85400000e+02 1.20220000e+03]\n", + " [ 8.43800000e+02 1.20220000e+03]\n", + " [ 1.20220000e+03 1.20220000e+03]\n", + " [ 1.56060000e+03 1.20220000e+03]\n", + " [ 1.91900000e+03 1.20220000e+03]\n", + " [ 1.27000000e+02 1.56060000e+03]\n", + " [ 4.85400000e+02 1.56060000e+03]\n", + " [ 8.43800000e+02 1.56060000e+03]\n", + " [ 1.20220000e+03 1.56060000e+03]\n", + " [ 1.56060000e+03 1.56060000e+03]\n", + " [ 1.91900000e+03 1.56060000e+03]\n", + " [ 1.27000000e+02 1.91900000e+03]\n", + " [ 4.85400000e+02 1.91900000e+03]\n", + " [ 8.43800000e+02 1.91900000e+03]\n", + " [ 1.20220000e+03 1.91900000e+03]\n", + " [ 1.56060000e+03 1.91900000e+03]\n", + " [ 1.91900000e+03 1.91900000e+03]]\n", + "DEBUG:root:mm_to_pix: fitpx.shape: (96, 2)\n", + "DEBUG:root:mm_to_pix: fitpx.shape: (96, 2)\n", + ".12614936 0.12693065 0.1274685 0.12775798\n", + " 0.08913848 0.09004163 0.09077781 0.09134344 0.09173387 0.09194479\n", + " 0.0538804 0.0544282 0.05487585 0.05522072 0.05545959 0.05558951\n", + " 0.018307 0.01849597 0.01865108 0.01877134 0.01885557 0.01890269]\n", + " [0.95758866 0.96239353 0.96661025 0.97017582 0.97303851 0.97515771\n", + " 0.9765038 0.97705813 0.95758866 0.96250106 0.96683156 0.9705155\n", + " 0.97349956 0.97574149 0.97721007 0.97788502 0.97705813 0.98262014\n", + " 0.98750643 0.99165333 0.99500728 0.99752486 0.99917322 0.99993064\n", + " 0.97788502 0.98335097 0.98813132 0.9921639 0.99539662 0.99778762\n", + " 0.99930DEBUG:root:fitpix2pix: ccdpx: shape: (96, 2)\n", + "564 0.99993064 0.9597694 0.96527198 0.96982717 0.97333506\n", + " 0.97572086 0.97693461 0.95981506 0.96545384 0.97015298 0.97380957\n", + " 0.97634587 0.97770893 0.97956122 0.98593216 0.99122376 0.99533322\n", + " 0.99818069 0.99971026 0.98034713 0.98659349 0.99174716 0.99570809\n", + " 0.99839923 0.99976769 0.95762372 0.95762372 0.99992898 0.99992898\n", + " 0.96199495 0.96771922 0.97248704 0.97619571 0.97876753 0.9801495\n", + " 0.96758278 0.97352009 0.97845943 0.98229851 0.98495952 0.98638907\n", + " 0.97220607 0.9783139 0.98339112 0.98733555 0.99006893 0.99153721\n", + " 0.97576509 0.98200129 0.98718283 0.99120735 0.99399598 0.9954939\n", + " 0.97818511 0.98450743 0.98975924 0.99383794 0.99666407 0.99818215\n", + " 0.97941611 0.98578194 0.99106934 0.99517556 0.99802078 0.99954914]]\n", + "DEBUG:root:cartToSphere: vec: [[-0.00114705 0.20838541 0.97804612]\n", + " [-0.00115629 0.18089194 0.9835023 ]\n", + " [-0.0011641 0.15270652 0.9882709 ]\n", + " [-0.00117048 0.12393558 0.99228958]\n", + " [-0.00117539 0.09468513 0.99550658]\n", + " [-0.00117881 0.06506336 0.99788044]\n", + " [-0.00118068 0.03518275 0.9993802 ]\n", + " [-0.00118097 0.0051606 0.99998599]\n", + " [-0.00114705 0.20838541 0.97804612]\n", + " [-0.03018244 0.20823844 0.97761228]\n", + " [-0.05910007 0.20782077 0.9763799 ]\n", + " [-0.08778716 0.20713345 0.97436602]\n", + " [-0.11613176 0.20617803 0.9715987 ]\n", + " [-0.14402308 0.20495645 0.96811684]\n", + " [-0.17135219 0.20347155 0.96396979]\n", + " [-0.19801388 0.2017284 0.95921643]\n", + " [-0.00118097 0.0051606 0.99998599]\n", + " [-0.03121228 0.00515607 0.99949948]\n", + " [-0.06111791 0.00514464 0.99811729]\n", + " [-0.09077999 0.00512646 0.99585778]\n", + " [-0.12008538 0.00510175 0.99275046]\n", + " [-0.14892541 0.0050707 0.98883543]\n", + " [-0.17719395 0.00503345 0.98416308]\n", + " [-0.20478471 0.00499006 0.97879432]\n", + " [-0.19801388 0.2017284 0.95921643]\n", + " [-0.19975823 0.17512925 0.96406763]\n", + " [-0.20124936 0.14784829 0.96831791]\n", + " [-0.20248221 0.11999042 0.97190702]\n", + " [-0.20345393 0.09166442 0.97478415]\n", + " [-0.20416257 0.06298098 0.97690892]\n", + " [-0.20460656 0.03405194 0.97825182]\n", + " [-0.20478471 0.00499006 0.97879432]\n", + " [-0.00125101 0.19649007 0.98050502]\n", + " [-0.00126235 0.1623152 0.98673815]\n", + " [-0.00127136 0.12720686 0.99187539]\n", + " [-0.00127799 0.09136033 0.99581708]\n", + " [-0.00128216 0.05497503 0.99848691]\n", + " [-0.00128379 0.01826009 0.99983245]\n", + " [-0.01381426 0.20826196 0.97797552]\n", + " [-0.04933618 0.20789982 0.97690512]\n", + " [-0.08456905 0.20713224 0.97465087]\n", + " [-0.11930642 0.20596186 0.97125985]\n", + " [-0.15334441 0.20439232 0.96680364]\n", + " [-0.18648385 0.20242966 0.96137714]\n", + " [-0.01428247 0.00526224 0.99988415]\n", + " [-0.05101935 0.00525184 0.99868386]\n", + " [-0.08744986 0.00523103 0.99615519]\n", + " [-0.12336368 0.00520016 0.9923479 ]\n", + " [-0.15856056 0.00515961 0.98733577]\n", + " [-0.19284509 0.0051096 0.98121591]\n", + " [-0.1987148 0.19022738 0.96141873]\n", + " [-0.20068229 0.157155 0.96696894]\n", + " [-0.20226422 0.12316211 0.9715556 ]\n", + " [-0.20345456 0.08844755 0.97508116]\n", + " [-0.20424964 0.05321501 0.97747135]\n", + " [-0.20464672 0.01767079 0.97867638]\n", + " [DEBUG:root:radec2pix: curVec: [[-0.36449218 -0.10140822 -0.92566831]\n", + " [-0.35028342 -0.07850744 -0.9333478 ]\n", + " [-0.33550901 -0.05508935 -0.94042483]\n", + " [-0.32021254 -0.03124379 -0.94683037]\n", + " [-0.30444144 -0.00706183 -0.95250488]\n", + " [-0.28824779 0.01736321 -0.95739842]\n", + " [-0.2716885 0.0419357 -0.96147114]\n", + " [-0.25482506 0.06655832 -0.96469383]\n", + " [-0.36449218 -0.10140822 -0.92566831]\n", + " [-0.38707481 -0.08478805 -0.91814164]\n", + " [-0.40921138 -0.06806934 -0.90989703]\n", + " [-0.43081856 -0.05131615 -0.90097837]\n", + " [-0.45181685 -0.03459159 -0.89143982]\n", + " [-0.47213015 -0.01795732 -0.88134594]\n", + " [-0.49168487 -0.00147347 -0.87077196]\n", + " [-0.51040871 0.01480134 -0.85980455]\n", + " [-0.25482506 0.06655832 -0.96469383]\n", + " [-0.27825312 0.08362261 -0.95686073]\n", + " [-0.30135563 0.10055915 -0.94819441]\n", + " [-0.32404504 0.11730228 -0.93874117]\n", + " [-0.34623895 0.13378874 -0.92855757]\n", + " [-0.36786064 0.1499581 -0.91770971]\n", + " [-0.38883885 0.16575278 -0.90627279]\n", + " [-0.40910686 0.18111738 -0.89433108]\n", + " [-0.51040871 0.01480134 -0.85980DEBUG:root:make_az_asym: xyp: shape: (96, 2)\n", + "455]\n", + " [-0.49792291 0.03791372 -0.86639213]\n", + " [-0.48469245 0.06139969 -0.87252697]\n", + " [-0.47076525 0.08516405 -0.87813847]\n", + " [-0.45619027 0.10911236 -0.88316755]\n", + " [-0.44101871 0.1331503 -0.88756605]\n", + " [-0.42530488 0.15718342 -0.89129632]\n", + " [-0.40910686 0.18111738 -0.89433108]\n", + " [-0.35844752 -0.09143594 -0.92906127]\n", + " [-0.34064829 -0.06300895 -0.93807708]\n", + " [-0.32204223 -0.03389427 -0.94611838]\n", + " [-0.302715 -0.00425896 -0.95307161]\n", + " [-0.2827625 0.02572518 -0.95884492]\n", + " [-0.26229142 0.05588136 -0.96336934]\n", + " [-0.37434038 -0.09410046 -0.92250441]\n", + " [-0.40172929 -0.0736559 -0.91279153]\n", + " [-0.42836502 -0.05312724 -0.90204263]\n", + " [-0.45409962 -0.03263104 -0.89035316]\n", + " [-0.4787929 -0.01228087 -0.87784198]\n", + " [-0.50231 0.00781326 -0.86465231]\n", + " [-0.26513211 0.07392566 -0.961374 ]\n", + " [-0.29363774 0.09476225 -0.95120818]\n", + " [-0.32156674 0.11534163 -0.9398357 ]\n", + " [-0.34876525 0.13554631 -0.92735646]\n", + " [-0.375092 0.15526508 -0.91389209]\n", + " [-0.40041775DEBUG:root:fitpix2pix: visCut: True\n", + "DEBUG:root:radec2pix: xyfp: [[32.2358199 31.31614388]\n", + " [32.23338667 26.92971599]\n", + " [32.23095344 22.54328809]\n", + " [32.2285202 18.15686019]\n", + " [32.22608698 13.7704323 ]\n", + " [32.22365375 9.3840044 ]\n", + " [32.22122051 4.99757651]\n", + " [32.21878728 0.61114861]\n", + " [32.2358199 31.31614388]\n", + " [27.849392 31.31857712]\n", + " [23.46296411 31.32101035]\n", + " [19.07653621 31.32344358]\n", + " [14.69010831 31.3258768 ]\n", + " [10.30368042 31.32831004]\n", + " [ 5.91725252 31.33074327]\n", + " [ 1.53082462 31.3331765 ]\n", + " [32.21878728 0.61114861]\n", + " [27.83235938 0.61358184]\n", + " [23.44593149 0.61601507]\n", + " [19.0595036 0.6184483 ]\n", + " [14.6730757 0.62088153]\n", + " [10.2866478 0.62331476]\n", + " [ 5.90021991 0.625748 ]\n", + " [ 1.513792 0.62818122]\n", + " [ 1.53082462 31.3331765 ]\n", + " [ 1.52839139 26.94674861]\n", + " [ 1.52595816 22.5603207 ]\n", + " [ 1.52352493 18.17389281]\n", + " [ 1.5210917 13.78746492]\n", + " [ 1.51865847 9.40103702]\n", + " [ 1.51622524 5.01460912]\n", + " [ 1.513792 0.62818122]\n", + " [32.219759 29.4036525 ]\n", + " [32.21677684 24.02765333]\n", + " [32.21379467 18.65165415]\n", + " [32.21081251 13.27565498]\n", + " [32.20783035 7.89965581]\n", + " [32.20484818 2.52365664]\n", + " [30.32331188 31.30220479]\n", + " [24.9473127 31.30518695]\n", + " [19.57131353 31.30816912]\n", + " [14.19531435 31.31115127]\n", + " [ 8.81931518 31.31413344]\n", + " [ 3.44331601 31.3171156 ]\n", + " [30.3062959 0.62720951]\n", + " [24.93029672 0.63019167]\n", + " [19.55429755 0.63317383]\n", + " [14.17829838 0.636156 ]\n", + " [ 8.80229921 0.63913816]\n", + " [ 3.42630004 0.64212033]\n", + " [ 1.54476372 29.42066847]\n", + " [ 1.54178156 24.0446693 ]\n", + " [ 1.53879939 18.66867013]\n", + " [ 1.53581723 13.29267096]\n", + " [ 1.53283507 7.91667178]\n", + " [ 1.5298529 2.54067261]\n", + " [32.22081158 31.30115221]\n", + " [32.22081158 31.30115221]\n", + " [ 1.52880032 0.6431729 ]\n", + " [ 1.52880032 0.6431729 ]\n", + " [30.32225929 29.40470508]\n", + " [24.94626012 29.40768724]\n", + " [19.57026095 29.41066941]\n", + " [14.19426178 29.41365157]\n", + " [ 8.8182626 29.41663373]\n", + " [ 3.44226343 29.4196159 ]\n", + " [30.31927713 24.02870591]\n", + " [24.94327796 24.03168807]\n", + " [19.56727878 24.03467023]\n", + " [14.19127961 24.0376524 ]\n", + " [ 8.81528044 24.04063456]\n", + " [ 3.43928127 24.04DEBUG:root:radec2pix: xyfp: [[-32.208296 -31.60697943]\n", + " [-32.20831882 -27.22055086]\n", + " [-32.20834163 -22.83412229]\n", + " [-32.20836444 -18.44769372]\n", + " [-32.20838725 -14.06126515]\n", + " [-32.20841007 -9.67483658]\n", + " [-32.20843288 -5.288408 ]\n", + " [-32.2084557 -0.90197943]\n", + " [-32.208296 -31.60697943]\n", + " [-27.82186743 -31.60695662]\n", + " [-23.43543886 -31.60693381]\n", + " [-19.04901029 -31.60691099]\n", + " [-14.66258171 -31.60688818]\n", + " [-10.27615314 -31.60686536]\n", + " [ -5.88972457 -31.60684255]\n", + " [ -1.503296 -31.60681974]\n", + " [-32.2084557 -0.90197943]\n", + " [-27.82202712 -0.90195662]\n", + " [-23.43559855 -0.9019338 ]\n", + " [-19.04916999 -0.90191099]\n", + " [-14.66274141 -0.90188818]\n", + " [-10.27631284 -0.90186536]\n", + " [ -5.88988428 -0.90184255]\n", + " [ -1.5034557 -0.90181973]\n", + " [ -1.503296 -31.60681974]\n", + " [ -1.50331881 -27.22039116]\n", + " [ -1.50334163 -22.83396259]\n", + " [ -1.50336444 -18.44753402]\n", + " [ -1.50338726 -14.06110544]\n", + " [ -1.50341007 -9.67467688]\n", + " [ -1.50343288 -5.2882483 ]\n", + " [ -1.5034557 -0.90181973]\n", + " [-32.19330594 -29.69447935]\n", + " [-32.19333391 DEBUG:root:radec2pix: xyfp Shape: (96, 2)\n", + "-24.31847935]\n", + " [-32.19336187 -18.94247936]\n", + " [-32.19338983 -13.56647936]\n", + " [-32.19341779 -8.19047935]\n", + " [-32.19344575 -2.81447935]\n", + " [-30.29579608 -31.59196949]\n", + " [-24.91979608 -31.59194152]\n", + " [-19.54379608 -31.59191356]\n", + " [-14.16779608 -31.5918856 ]\n", + " [ -8.79179608 -31.59185764]\n", + " [ -3.41579608 -31.59182968]\n", + " [-30.29595562 -0.91696949]\n", + " [-24.91995562 -0.91694153]\n", + " [-19.54395562 -0.91691356]\n", + " [-14.16795562 -0.9168856 ]\n", + " [ -8.79195562 -0.91685764]\n", + " [ -3.41595563 -0.91682968]\n", + " [ -1.51830595 -29.69431981]\n", + " [ -1.51833391 -24.31831981]\n", + " [ -1.51836187 -18.94231981]\n", + " [ -1.51838983 -13.56631981]\n", + " [ -1.51841779 -8.19031981]\n", + " [ -1.51844575 -2.81431982]\n", + " [-32.19329608 -31.59197936]\n", + " [-32.19329608 -31.59197936]\n", + " [ -1.51845562 -0.91681981]\n", + " [ -1.51845562 -0.91681981]\n", + " [-30.29580595 -29.69446949]\n", + " [-24.91980594 -29.69444152]\n", + " [-19.54380595 -29.69441356]\n", + " [-14.16780595 -29.69438561]\n", + " [ -8.79180595 -29.69435764]\n", + " [ -3.41580595 -29.69432968]\n", + " [-30.29583391 -24.31846949]\n", + " [-24.91983391 -24.31844152]\n", + " [-19.54383391 -24.31841356]\n", + " [-14.16783391 -24.31838561]\n", + " [ -8.79183391 -24.31835764]\n", + " [ -3.41583391 -24.31832968]\n", + " [-30.29586187 -18.94246949]\n", + " [-24.91986187 -18.94244153]\n", + " [-19.54386187 -18.94241356]\n", + " [-14.16786187 -18.94238561]\n", + " [ -8.79186187 -18.94235764]\n", + " [ -3.41586187 -18.94232969]\n", + " [-30.29588983 -13.56646949]\n", + " [-24.91988983 -13.56644152]\n", + " [-19.54388984 -13.56641357]\n", + " [-14.16788983 -13.5663856 ]\n", + " [ -8.79188983 -13.56635764]\n", + " [ -3.41588983 -13.56632968]\n", + " [-30.29591779 -8.19046949]\n", + " [-24.91991779 -8.19044152]\n", + " [-19.54391779 -8.19041356]\n", + " [-14.16791779 -8.1903856 ]\n", + " [ -8.79191779 -8.19035764]\n", + " [ -3.41591779 -8.19032968]\n", + " [-30.29594575 -2.81446949]\n", + " [-24.91994576 -2.81444153]\n", + " [-19.54394575 -2.81441356]\n", + " [-14.16794576 -2.8143856 ]\n", + " [ -8.79194575 -2.81435764]\n", + " [ -3.41594575 -2.81432968]]\n", + " 0.17439284 -0.89958477]\n", + " [-0.50499649 0.02477121 -0.86276586]\n", + " [-0.48918582 0.05336149 -0.87054568]\n", + " [-0.47230431 0.08241829 -0.87757385]\n", + " [DEBUG:root:fitpix2pix: ccdpx: shape: (96, 2)\n", + "-0.4544416 0.11176749 -0.88373687]\n", + " [-0.43569202 0.14123543 -0.88894601]\n", + " [-0.41615713 0.17064824 -0.89313629]\n", + " [-0.36452249 -0.1012743 -0.92567104]\n", + " [-0.36452249 -0.1012743 -0.92567104]\n", + " [-0.40909498 0.18098406 -0.8943635 ]\n", + " [-0.40909498 0.18098406 -0.8943635 ]\n", + " [-0.3683047 -0.08423556 -0.92588121]\n", + " [-0.39581069 -0.06372955 -0.91611814]\n", + " [-0.42257172 -0.0431602 -0.90530124]\n", + " [-0.44843987 -0.02264457 -0.89352611]\n", + " [-0.47327555 -0.00229656 -0.88091145]\n", + " [-0.49694515 0.01777369 -0.86759992]\n", + " [-0.35060463 -0.05574231 -0.93486319]\n", + " [-0.37840893 -0.0350877 -0.92497326]\n", + " [-0.40549284 -0.01442874 -0.91398434]\n", + " [-0.43170796 0.00611634 -0.9019927 ]\n", + " [-0.45691581 0.026433 -0.88911711]\n", + " [-0.4809857 0.046411 -0.87549916]\n", + " [-0.33207945 -0.02657484 -0.94287699]\n", + " [-0.36013225 -0.00581039 -0.93288316]\n", + " [-0.38749187 0.01489885 -0.92175272]\n", + " [-0.41400882 0.03543393 -0.90958295]\n", + " [-0.43954483 0.05568021 -0.8964932 ]\n", + " [-0.46397106 0.0755DEBUG:root:fitpix2pix: visCut: True\n", + "361672]\n", + " [30.31629496 18.65270673]\n", + " [24.9402958 18.6556889 ]\n", + " [19.56429662 18.65867106]\n", + " [14.18829744 18.66165322]\n", + " [ 8.81229827 18.66463538]\n", + " [ 3.4362991 18.66761755]\n", + " [30.31331281 13.27670756]\n", + " [24.93731363 13.27968972]\n", + " [19.56131446 13.28267189]\n", + " [14.18531529 13.28565406]\n", + " [ 8.80931611 13.28863621]\n", + " [ 3.43331694 13.29161838]\n", + " [30.31033064 7.90070839]\n", + " [24.93433147 7.90369055]\n", + " [19.55833229 7.90667271]\n", + " [14.18233312 7.90965488]\n", + " [ 8.80633395 7.91263704]\n", + " [ 3.43033477 7.9156192 ]\n", + " [30.30734847 2.52470921]\n", + " [24.9313493 2.52769138]\n", + " [19.55535013 2.53067354]\n", + " [14.17935096 2.53365571]\n", + " [ 8.80335178 2.53663787]\n", + " [ 3.42735261 2.53962004]]\n", + "DEBUG:root:radec2pix: camVec Shape: (3, 96)\n", + "-0.00124645 0.20829266 0.97806575]\n", + " [-0.00124645 0.20829266 0.97806575]\n", + " [-0.20469148 0.0050897 0.97881331]\n", + " [-0.20469148 0.0050897 0.97881331]\n", + " [-0.01386808 0.19646111 0.98041354]\n", + " [-0.04952932 0.19611969 0.9793283 ]\n", + " [-0.08490071 0.19539637 0.97704254]\n", + " [-0.11977552 0.19429398 0.97360345]\n", + " [-0.15394951 0.1928159 0.96908285]\n", + " [-0.18722234 0.19096695 0.96357637]\n", + " [-0.01400325 0.16229116 0.98664355]\n", + " [-0.05001432 0.16200846 0.98552109]\n", + " [-0.08573269 0.16141067 0.9831564 ]\n", + " [-0.12095098 0.16050163 0.9795969 ]\n", + " [-0.15546507 0.15928501 0.97491482]\n", + " [-0.18907339 0.15776388 0.9692068 ]\n", + " [-0.01411268 0.1271878 0.99177825]\n", + " [-0.05040698 0.12696445 0.99062564]\n", + " [-0.08640482 0.12649338 0.98819716]\n", + " [-0.12189811 0.12577923 0.98454072]\n", + " [-0.15668376 0.12482642 0.97972882]\n", + " [-0.19056116 0.12363768 0.97385839]\n", + " [-0.01419584 0.0913464 0.99571799]\n", + " [-0.05070556 0.09118412 0.99454231]\n", + " [-0.08691471 0.09084281 0.99206523]\n", + " [-0.12261435 0.0903271 0.98833534]\n", + " [-0.15760261 0.0896414 0.98342556]\n", + " [-0.19168088 0.08878838 0.97743289]\n", + " [-0.01425179 0.05496643 0.99838649]\n", + " [-0.05090701 0.05486748 0.99719508]\n", + " [-0.08725814 0.05466012 0.99468502]\n", + " [-0.12309542 0.05434775 0.99090557]\n", + " [-0.15821798 0.0539337 0.98593013]\n", + " [-0.19242913 0.05341999 0.97985577]\n", + " [-0.01427955 0.01825699 0.99973135]\n", + " [-0.05100809 0.0182233 0.99853197]\n", + " [-0.08743051 0.01815347 0.9960052 ]\n", + " [-0.12333654 0.01804874 0.99220076]\n", + " [-0.15852587 0.01791034 0.98719237]\n", + " [-0.19280295 0.01773905 0.98107714]]\n", + "DEBUG:root:radec2pix: xyfp: [[32.2358199 31.31614388]\n", + " [32.23338667 26.92971599]\n", + " [32.23095344 22.54328809]\n", + " [32.2285202 18.15686019]\n", + " [32.22608698 13.7704323 ]\n", + " [32.22365375 9.3840044 ]\n", + " [32.22122051 4.99757651]\n", + " [32.21878728 0.61114861]\n", + " [32.2358199 31.31614388]\n", + " [27.849392 31.31857712]\n", + " [23.46296411 31.32101035]\n", + " [19.07653621 31.32344358]\n", + " [14.69010831 31.3258768 ]\n", + " [10.30368042 31.32831004]\n", + " [ 5.91725252 31.33074327]\n", + " [ 1.53082462 31.3331765 ]\n", + " [32.21878728 0.61114861]\n", + " [27.83235938 0.61358184]\n", + " [23.44593149 0.61601507]\n", + " [19.0595036 0.6184483 ]\n", + " [14.6730757 0.62088153]\n", + " [10.2866478 0.62331476]\n", + " [ 5.90021991 0.625748 ]\n", + " [ 1.513792 0.62818122]\n", + " [ 1.53082462 31.3331765 ]\n", + " [ 1.52839139 26.94674861]\n", + " [ 1.52595816 22.5603207 ]\n", + " [ 1.52352493 18.17389281]\n", + " [ 1.5210917 13.78746492]\n", + " [ 1.51865847 9.40103702]\n", + " [ 1.51622524 5.01460912]\n", + " [ 1.513792 0.62818122]\n", + " [32.219759 29.4036525 ]\n", + " [32.21677684 24.02765333]\n", + " [32.21379467 18.65165415]\n", + " [32.21081251 13.27565498]\n", + " [32.20783035 7.89965581]\n", + " [32.20484818 2.52365664]\n", + " [30.32331188 31.30220479]\n", + " [24.9473127 31.30518695]\n", + " [19.57131353 31.30816912]\n", + " [14.19531435 31.31115127]\n", + " [ 8.81931518 31.31413344]\n", + " [ 3.44331601 31.3171156 ]\n", + " [30.3062959 0.62720951]\n", + " [24.93029672 0.63019167]\n", + " [19.55429755 0.63317383]\n", + " [14.17829838 0.636156 ]\n", + " [ 8.80229921 0.63913816]\n", + " [ 3.42630004 0.64212033]\n", + " [ 1.54476372 29.42066847]\n", + " [ 1.54178156 24.0446693 ]\n", + " [ 1.53879939 18.66867013]\n", + " [ 1.53581723 13.29267096]\n", + " [ 1.53283507 7.91667178]\n", + " [ 1.5298529 2.54067261]\n", + " [32.22081158 31.30115221]\n", + " [32.22081158 31.30115221]\n", + " [ 1.52880032 0.6431729 ]\n", + " [ 1.52880032 0.6431729 ]\n", + " [30.32225929 29.40470508]\n", + " [24.94626012 29.40768724]\n", + " [14]\n", + " [ 0.17304708 -27.07176857]\n", + " [ 0.17293316 -22.68534 ]\n", + " [ 0.17281925 -18.29891143]\n", + " [ 0.17270533 -13.91248287]\n", + " [ 0.17259141 -9.52605429]\n", + " [ 0.17247749 -5.13962573]\n", + " [ 0.17236358 -0.75319715]\n", + " [ 0.173161 -31.45819714]\n", + " [ 4.55958957 -31.45808322]\n", + " [ 8.94601814 -31.45796931]\n", + " [ 13.33244671 -31.45785538]\n", + " [ 17.71887528 -31.45774147]\n", + " [ 22.10530385 -31.45762756]\n", + " [ 26.49173242 -31.45751363]\n", + " [ 30.87816099 -31.45739971]\n", + " [ 0.17236358 -0.75319715]\n", + " [ 4.55879215 -0.75308323]\n", + " [ 8.94522072 -0.75296932]\n", + " [ 13.33164929 -0.7528554 ]\n", + " [ 17.71807786 -0.75274148]\n", + " [ 22.10450643 -0.75262756]\n", + " [ 26.490935 -0.75251364]\n", + " [ 30.87736356 -0.75239973]\n", + " [ 30.87816099 -31.45739971]\n", + " [ 30.87804707 -27.07097114]\n", + " [ 30.87793315 -22.68454257]\n", + " [ 30.87781924 -18.29811401]\n", + " [ 30.87770532 -13.91168544]\n", + " [ 30.87759141 -9.52525687]\n", + " [ 30.87747749 -5.1388283 ]\n", + " [ 30.87736356 -0.75239973]\n", + " [ 0.18811133 -29.54569675]\n", + " [ 0.18797171 -24.16969676]\n", + " [ 0.1878321 -18.79369675]\n", + " [ 0.1876DEBUG:root:radec2pix: ccdpx: [[-4.44999999e+01 -4.99999855e-01]\n", + " [-4.45000000e+01 2.91928571e+02]\n", + " [-4.45000000e+01 5.84357143e+02]\n", + " [-4.44999998e+01 8.76785714e+02]\n", + " [-4.45000001e+01 1.16921429e+03]\n", + " [-4.45000000e+01 1.46164286e+03]\n", + " [-4.45000000e+01 1.75407143e+03]\n", + " [-4.44999999e+01 2.04650000e+03]\n", + " [-4.44999999e+01 -4.99999855e-01]\n", + " [ 2.47928571e+02 -5.00000005e-01]\n", + " [ 5.40357143e+02 -5.00000101e-01]\n", + " [ 8.32785714e+02 -5.00000211e-01]\n", + " [ 1.12521429e+03 -4.99999718e-01]\n", + " [ 1.41764286e+03 -5.00000108e-01]\n", + " [ 1.71007143e+03 -4.99999976e-01]\n", + " [ 2.00250000e+03 -5.00000222e-01]\n", + " [-4.44999999e+01 2.04650000e+03]\n", + " [ 2.47928572e+02 2.04650000e+03]\n", + " [ 5.40357143e+02 2.04650000e+03]\n", + " [ 8.32785714e+02 2.04650000e+03]\n", + " [ 1.12521429e+03 2.04650000e+03]\n", + " [ 1.41764286e+03 2.04650000e+03]\n", + " [ 1.71007143e+03 2.04650000e+03]\n", + " [ 2.00250000e+03 2.04650000e+03]\n", + " [ 2.00250000e+03 -5.00000222e-01]\n", + " [ 2.00250000e+03 2.91928571e+02]\n", + " [ 2.00250000e+03 5.84357143e+02]\n", + " [ 2.00250000e+03 8.7678519.57026095 29.41066941]\n", + " [14.19426178 29.41365157]\n", + " [ 8.8182626 29.41663373]\n", + " [ 3.44226343 29.4196159 ]\n", + " [30.31927713 24.02870591]\n", + " [24.94327796 24.03168807]\n", + " [19.56727878 24.03467023]\n", + " [14.19127961 24.0376524 ]\n", + " [ 8.81528044 24.04063456]\n", + " [ 3.43928127 24.04361672]\n", + " [30.31629496 18.65270673]\n", + " [24.9402958 18.6556889 ]\n", + " [19.56429662 18.65867106]\n", + " [14.18829744 18.66165322]\n", + " [ 8.81229827 18.66463538]\n", + " [ 3.4362991 18.66761755]\n", + " [30.31331281 13.27670756]\n", + " [24.93731363 13.27968972]\n", + " [19.56131446 13.28267189]\n", + " [14.18531529 13.28565406]\n", + " [ 8.80931611 13.28863621]\n", + " [ 3.43331694 13.29161838]\n", + " [30.31033064 7.90070839]\n", + " [24.93433147 7.90369055]\n", + " [19.55833229 7.90667271]\n", + " [14.18233312 7.90965488]\n", + " [ 8.80633395 7.91263704]\n", + " [ 3.43033477 7.9156192 ]\n", + " [30.30734847 2.52470921]\n", + " [24.9313493 2.52769138]\n", + " [19.55535013 2.53067354]\n", + " [14.17935096 2.53365571]\n", + " [ 8.80335178 2.53663787]\n", + " [ 3.42735261 2.53962004]]\n", + "2793 -0.88262471]\n", + " [-0.31281433 0.00309936 -0.94980924]\n", + " [-0.34106465 0.02393365 -0.93973511]\n", + " [-0.36865231 0.04465253 -0.92849428]\n", + " [-0.39542643 0.06513688 -0.91618509]\n", + " [-0.42124824 0.08527254 -0.90292775]\n", + " [-0.44598968 0.10495077 -0.88886362]\n", + " [-0.29290459 0.03310811 -0.95556829]\n", + " [-0.32129995 0.05397133 -0.94543822]\n", + " [-0.3490668 0.07465864 -0.93411908]\n", + " [-0.37605284 0.09505129 -0.9217101 ]\n", + " [-0.40211834 0.11503611 -0.90833228]\n", + " [-0.42713516 0.13450581 -0.89412736]\n", + " [-0.27245647 0.06327434 -0.96008532]\n", + " [-0.30094299 0.08412516 -0.94992435]\n", + " [-0.32883875 0.10473984 -0.93855988]\n", + " [-0.35599023 0.1250005 -0.9260917 ]\n", + " [-0.38225656 0.14479534 -0.91264135]\n", + " [-0.40750888 0.16401871 -0.89835092]]\n", + "DEBUG:root:radec2pix: lng: [ 90.31538026 90.36623882 90.43676438 90.5410988 90.71121584\n", + " 91.03796151 91.92203204 102.88976492 90.31538026 98.24711833\n", + " 105.87469321 112.96816895 119.3908045 125.09574844 130.10218059\n", + " 134.46760759 102.88976492 170.61981741 175.18843619 176.76786642\n", + " 177.56728748 178.0499121 178.37286738 178.60412954 134.46760759\n", + " 138.DEBUG:root:radec2pix: curVec Shape: (96, 3)\n", + "7587586 143.69705248 149.3491301 155.74646239 162.85581906\n", + " 170.55107093 178.60412954 90.36478543 90.44558973 90.57261901\n", + " 90.80142559 91.33604138 94.02159324 93.79493665 103.34977578\n", + " 112.20947139 120.08219547 126.87889854 132.65213472 159.7741798\n", + " 174.12277646 176.57679256 177.5862344 178.13623505 178.48225333\n", + " 136.25009833 141.93538112 148.66205842 156.50402904 165.39685811\n", + " 175.06487905 90.34286209 90.34286209 178.57562014 178.57562014\n", + " 94.0377805 104.17347615 113.48518905 121.65239591 128.60482826\n", + " 134.43270854 94.93153704 107.15620301 117.97484261 127.00098521\n", + " 134.30466928 140.15819331 96.33160595 111.65389266 124.33611449\n", + " 134.10224284 141.45645803 147.02415603 98.83348775 119.07751066\n", + " 133.73407847 143.6218029 150.36959526 155.14598444 104.53566541\n", + " 132.85570308 147.93620706 156.17810512 161.17666862 164.48488524\n", + " 128.03043433 160.3400738 168.27016728 171.67458296 173.55402386\n", + " 174.74323713]\n", + "9248 -13.41769676]\n", + " [ 0.18755286 -8.04169676]\n", + " [ 0.18741324 -2.66569676]\n", + " [ 2.08566061 -31.44314748]\n", + " [ 7.46166061 -31.44300785]\n", + " [ 12.83766061 -31.44286824]\n", + " [ 18.2136606 -31.44272862]\n", + " [ 23.5896606 -31.442589 ]\n", + " [ 28.9656606 -31.44244938]\n", + " [ 2.08486397 -0.76814748]\n", + " [ 7.46086396 -0.76800786]\n", + " [ 12.83686396 -0.76786825]\n", + " [ 18.21286396 -0.76772863]\n", + " [ 23.58886395 -0.76758901]\n", + " [ 28.96486395 -0.7674494 ]\n", + " [ 30.86311132 -29.54490011]\n", + " [ 30.86297171 -24.16890011]\n", + " [ 30.86283209 -18.79290011]\n", + " [ 30.86269247 -13.41690011]\n", + " [ 30.86255285 -8.04090011]\n", + " [ 30.86241323 -2.66490012]\n", + " [ 0.18816061 -31.44319675]\n", + " [ 0.18816061 -31.44319675]\n", + " [ 30.86236396 -0.76740012]\n", + " [ 30.86236396 -0.76740012]\n", + " [ 2.08561133 -29.54564748]\n", + " [ 7.46161133 -29.54550785]\n", + " [ 12.83761133 -29.54536824]\n", + " [ 18.21361133 -29.54522862]\n", + " [ 23.58961132 -29.545089 ]\n", + " [ 28.96561132 -29.54494938]\n", + " [ 2.08547171 -24.16964747]\n", + " [ 7.46147171 -24.16950786]\n", + " [ 12.83747171 -24.16936824]\n", + " [ 18.21347171 -24.16922862]\n", + " [ 23.58947171 -24.16908901]\n", + " [ 28.9654717 -24.16894939]\n", + " [ 2.0853321 -18.79364747]\n", + " [ 7.46133209 -18.79350785]\n", + " [ 12.83733209 -18.79336824]\n", + " [ 18.21333209 -18.79322862]\n", + " [ 23.58933209 -18.79308901]\n", + " [ 28.96533209 -18.79294939]\n", + " [ 2.08519248 -13.41764748]\n", + " [ 7.46119248 -13.41750786]\n", + " [ 12.83719247 -13.41736824]\n", + " [ 18.21319248 -13.41722863]\n", + " [ 23.58919247 -13.41708901]\n", + " [ 28.96519247 -13.41694939]\n", + " [ 2.08505286 -8.04164748]\n", + " [ 7.46105286 -8.04150786]\n", + " [ 12.83705286 -8.04136825]\n", + " [ 18.21305286 -8.04122863]\n", + " [ 23.58905286 -8.04108901]\n", + " [ 28.96505285 -8.04094939]\n", + " [ 2.08491324 -2.66564748]\n", + " [ 7.46091324 -2.66550786]\n", + " [ 12.83691324 -2.66536825]\n", + " [ 18.21291324 -2.66522863]\n", + " [ 23.58891323 -2.66508901]\n", + " [ 28.96491324 -2.66494939]]\n", + "714e+02]\n", + " [ 2.00250000e+03 1.16921429e+03]\n", + " [ 2.00250000e+03 1.46164286e+03]\n", + " [ 2.00250000e+03 1.75407143e+03]\n", + " [ 2.00250000e+03 2.04650000e+03]\n", + " [-4.35000000e+01 1.27000000e+02]\n", + " [-4.35000000e+01 4.85400000e+02]\n", + " [-4.34999998e+01 8.43800000e+02]\n", + " [-4.35000001e+01 1.20220000e+03]\n", + " [-4.35000000e+01 1.56060000e+03]\n", + " [-4.34999999e+01 1.91900000e+03]\n", + " [ 8.29999998e+01 4.99999766e-01]\n", + " [ 4.41400000e+02 4.99999737e-01]\n", + " [ 7.99800000e+02 4.99999723e-01]\n", + " [ 1.15820000e+03 5.00000251e-01]\n", + " [ 1.51660000e+03 4.99999874e-01]\n", + " [ 1.87500000e+03 5.00000148e-01]\n", + " [ 8.30000001e+01 2.04550000e+03]\n", + " [ 4.41400000e+02 2.04550000e+03]\n", + " [ 7.99800000e+02 2.04550000e+03]\n", + " [ 1.15820000e+03 2.04550000e+03]\n", + " [ 1.51660000e+03 2.04550000e+03]\n", + " [ 1.87500000e+03 2.04550000e+03]\n", + " [ 2.00150000e+03 1.27000000e+02]\n", + " [ 2.00150000e+03 4.85400000e+02]\n", + " [ 2.00150000e+03 8.43800000e+02]\n", + " [ 2.00150000e+03 1.20220000e+03]\n", + " [ 2.00150000e+03 1.56060000e+03]\n", + " [ 2.00150000e+03 1.91900000e+03]\n", + " [-4.35000002e+01 4.99999824e-01]\n", + " [-4.35000002e+01 4.99999824e-01]\n", + " [ 2.00150000e+03 2.04550000e+03]\n", + " [ 2.00150000e+03 2.04550000e+03]\n", + " [ 8.30000001e+01 1.27000000e+02]\n", + " [ 4.41400000e+02 1.27000000e+02]\n", + " [ 7.99800000e+02 1.27000000e+02]\n", + " [ 1.15820000e+03 1.27000000e+02]\n", + " [ 1.51660000e+03 1.27000000e+02]\n", + " [ 1.87500000e+03 1.27000000e+02]\n", + " [ 8.29999998e+01 4.85400000e+02]\n", + " [ 4.41400000e+02 4.85400000e+02]\n", + " [ 7.99800000e+02 4.85400000e+02]\n", + " [ 1.15820000e+03 4.85400000e+02]\n", + " [ 1.51660000e+03 4.85400000e+02]\n", + " [ 1.87500000e+03 4.85400000e+02]\n", + " [ 8.30000003e+01 8.43800000e+02]\n", + " [ 4.41400000e+02 8.43800000e+02]\n", + " [ 7.99800000e+02 8.43800000e+02]\n", + " [ 1.15820000e+03 8.43800000e+02]\n", + " [ 1.51660000e+03 8.43800000e+02]\n", + " [ 1.87500000e+03 8.43800000e+02]\n", + " [ 8.29999997e+01 1.20220000e+03]\n", + " [ 4.41400000e+02 1.20220000e+03]\n", + " [ 7.99800000e+02 1.20220000e+03]\n", + " [ 1.15820000e+03 1.20220000e+03]\n", + " [ 1.51660000e+03 1.20220000e+03]\n", + " [ 1.87500000e+03 1.20220000e+03]\n", + " [ 8.30000001e+01 1.56060000e+03]\n", + " [ 4.41400000e+02 1.56060000e+03]\n", + " [ 7.99800000e+02 1.56060000e+03]\n", + " [ 1.15820000e+03 1.56060000e+03]\n", + " [ 1.51660000e+03 1.56060000e+03]\n", + " [ 1.87500000e+03 1.56060000e+03]\n", + " [ 8.30000000e+01 1.91900000e+03]\n", + " [ 4.41400000e+02 1.91900000e+03]\n", + " [ 7.99800000e+02 1.91900000e+03]\n", + " [ 1.15820000e+03 1.91900000e+03]\n", + " [ 1.51660000e+03 1.91900000e+03]\n", + " [ 1.87500000e+03 1.91900000e+03]]\n", + "DEBUG:root:radec2pix: lat: [77.97206498 79.57806769 81.21593647 82.8803899 84.56638266 86.26889583\n", + " 87.98262539 89.69667435 77.97206498 77.85336036 77.52222772 76.99897078\n", + " 76.31199967 75.49295235 74.57292056 73.58021644 89.69667435 88.18712874\n", + " 86.48361023 84.78319776 83.0967184 81.43034165 79.78948121 78.17954495\n", + " 73.58021644 74.59400834 75.53901524 76.38685312 77.10589211 77.66330027\n", + " 78.02875412 78.17954495 78.66798463 80.65841057 82.69141578 84.75761477\n", + " 86.84771627 88.95113309 77.95267103 77.66228009 77.07171569 76.23019363\n", + " 75.19557036 74.02401451 89.12786485 87.06007007 84.97409331 82.90740441\n", + " 80.87177406 78.87718093 74.03267423 75.23268127 76.30156716 77.18237665\n", + " 77.81504555 78.14660304 77.97746528 77.97746528 78.18485708 78.18485708\n", + " 78.64134167 78.32984157 77.69918411 76.80616019 75.71557851 74.48840848\n", + " 80.62507537 80.23817759 79.46907283 78.40617113 77.13948546 75.74438817\n", + " 82.64779184 82.14857946 81.18831589 79.91227353 78.44384133 76.87031089\n", + " 84.69583972 84.01119948 82.77741875 81.24014725 79.55379065 77.80461009\n", + " 86.74476583 85.70761057 84.09008812 82.26687253 80.3773841 78.48020641\n", + " 88.67187538 86.89501933 84.87693536 82.83944721 80.82012657 78.83603949]\n", + "DEBUG:root:mm_to_pix: fitpx: [[0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + "DEBUG:root:radec2pix: xyfp Shape: (96, 2)\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]]\n", + "DEBUG:root:radec2pix: ccdpx: [[-4.45000000e+01 -5.00000033e-01]\n", + " [-4.45000003e+01 2.91928571e+02]\n", + " [-4.45000002e+01 5.84357143e+02]\n", + " [-4.44999998e+01 8.76785714e+02]\n", + " [-4.44999998e+01 1.16921429e+03]\n", + " [-4.45000001e+01 1.46164286e+03]\n", + " [-4.44999997e+01 1.75407143e+03]\n", + " [-4.45000002e+01 2.04650000e+03]\n", + " [-4.45000000e+01 -5.00000033e-01]\n", + " [ 2.47928571e+02 -4.99999990e-01]\n", + " [ 5.40357143e+02 -5.00000111e-01]\n", + " [ 8.32785714e+02 -5.00000066e-01]\n", + " [ 1.12521429e+03 -4.99999995e-01]\n", + " [ 1.41764286e+03 -5.00000140e-01]\n", + " [ 1.71007143e+03 -5.00000040e-01]\n", + " [ 2.00250000e+03 -5.00000296e-01]\n", + " [-4.45000002e+01 2.04650000e+03]\n", + " [ 2.47928572e+02 2.04650000e+03]\n", + " [ 5.40357143e+02 2.04650000e+03]\n", + " [ 8.32785714e+02 2.04650000e+03]\n", + " [ 1.12521429e+03 2.04650000e+03]\n", + " [ 1.41764286e+03 2.04650000e+03]\n", + " [ 1.71007143e+03 2.04650000e+03]\n", + " [ 2.00250000e+03 2.04650000e+03]\n", + " [ 2.00250000e+03 -5.00000296e-01]\n", + " [ 2.00250000e+03 2.91928572e+02]\n", + " [ 2.00250000e+03 5.84357143e+02]\n", + " [ 2.00250000e+03 8.76785714e+02]\n", + " [ 2.00250000e+03 1.16921429e+03]\n", + " [ 2.00250000e+03 1.46164286e+03]\n", + " [ 2.00250000e+03 1.75407143e+03]\n", + " [ 2.00250000e+03 2.04650000e+03]\n", + " [-4.34999999e+01 1.27000000e+02]\n", + " [-4.35000000e+01 4.85400000e+02]\n", + " [-4.35000001e+01 8.43800000e+02]\n", + " [-4.35000001e+01 1.20220000e+03]\n", + " [-4.34999998e+01 1.56060000e+03]\n", + " [-4.34999998e+01 1.91900000e+03]\n", + " [ 8.29999999e+01 4.99999893e-01]\n", + " [ 4.41400000e+02 5.00000055e-01]\n", + " [ 7.99800000e+02 4.99999998e-01]\n", + " [ 1.15820000e+03 5.00000122e-01]\n", + " [ 1.51660000e+03 4.99999912e-01]\n", + " [ 1.87500000e+03 5.00000160e-01]\n", + " [ 8.30000002e+01 2.04550000e+03]\n", + " [ 4.41400000e+02 2.04550000e+03]\n", + " [ 7.99800000e+02 2.04550000e+03]\n", + " [ 1.15820000e+03 2.04550000e+03]\n", + " [ 1.51660000e+03 2.04550000e+0DEBUG:root:mm_to_pix: fitpx.shape: (96, 2)\n", + "3]\n", + " [ 1.87500000e+03 2.04550000e+03]\n", + " [ 2.00150000e+03 1.27000000e+02]\n", + " [ 2.00150000e+03 4.85400000e+02]\n", + " [ 2.00150000e+03 8.43800000e+02]\n", + " [ 2.00150000e+03 1.20220000e+03]\n", + " [ 2.00150000e+03 1.56060000e+03]\n", + " [ 2.00150000e+03 1.91900000e+03]\n", + " [-4.35000001e+01 4.99999931e-01]\n", + " [-4.35000001e+01 4.99999931e-01]\n", + " [ 2.00150000e+03 2.04550000e+03]\n", + " [ 2.00150000e+03 2.04550000e+03]\n", + " [ 8.30000000e+01 1.27000000e+02]\n", + " [ 4.41400000e+02 1.27000000e+02]\n", + " [ 7.99800000e+02 1.27000000e+02]\n", + " [ 1.15820000e+03 1.27000000e+02]\n", + " [ 1.51660000e+03 1.27000000e+02]\n", + " [ 1.87500000e+03 1.27000000e+02]\n", + " [ 8.29999999e+01 4.85400000e+02]\n", + " [ 4.41400000e+02 4.85400000e+02]\n", + " [ 7.99800000e+02 4.85400000e+02]\n", + " [ 1.15820000e+03 4.85400000e+02]\n", + " [ 1.51660000e+03 4.85400000e+02]\n", + " [ 1.87500000e+03 4.85400000e+02]\n", + " [ 8.29999999e+01 8.43800000e+02]\n", + " [ 4.41400000e+02 8.43800000e+02]\n", + " [ 7.99800000e+02 8.43800000e+02]\n", + " [ 1.15820000e+03 8.43800000e+02]\n", + " [ 1.51660000e+03 8.43800000e+02]\n", + " [ 1.87500000e+03 8.43800000e+02]\n", + " [ 8.30000001e+01 1.20220000e+03]\n", + " [ 4.41400000e+02 1.20220000e+03]\n", + " [ 7.99800000e+02 1.20220000e+03]\n", + " [ 1.15820000e+03 1.20220000e+03]\n", + " [ 1.51660000e+03 1.20220000e+03]\n", + " [ 1.87500000e+03 1.20220000e+03]\n", + " [ 8.29999998e+01 1.56060000e+03]\n", + " [ 4.41400000e+02 1.56060000e+03]\n", + " [ 7.99800000e+02 1.56060000e+03]\n", + " [ 1.15820000e+03 1.56060000e+03]\n", + " [ 1.51660000e+03 1.56060000e+03]\n", + " [ 1.87500000e+03 1.56060000e+03]\n", + " [ 8.30000002e+01 1.91900000e+03]\n", + " [ 4.41400000e+02 1.91900000e+03]\n", + " [ 7.99800000e+02 1.91900000e+03]\n", + " [ 1.15820000e+03 1.91900000e+03]\n", + " [ 1.51660000e+03 1.91900000e+03]\n", + " [ 1.87500000e+03 1.91900000e+03]]\n", + "DEBUG:root:radec2pix: camVec: [[ 0.00114566 0.00115565 0.00116422 0.00117136 0.00117701 0.00118116\n", + " 0.00118376 0.00118481 0.00114566 0.03017404 0.05908469 0.08776498\n", + " 0.11610332 0.14398904 0.17131174 0.19796003 0.00118481 0.03120455\n", + " 0.06110052 0.09075528 0.1200543 0.14888674 0.17714546 0.20472589\n", + " 0.19796003 0.19971011 0.20119978 0.20242973 0.20339908 0.20410611\n", + " 0.20454887 0.20472589 0.00124992 0.00126219 0.00127213 0.00127966\n", + " 0.00128472 0.00128725 0.01380981 0.04932315 0.08454761 0.11927732\n", + " 0.15330846 0.18643745 0.01428113 0.05100494 0.08742589 0.12333185\n", + " 0.15851879 0.19279062 0.19866498 0.20063357 0.20221208 0.20339952\n", + " 0.20419277 0.20458843 0.00124504 0.00124504 0.2046327 0.2046327\n", + " 0.01386393 0.04951642 0.08487904 0.1197456 0.15391263 0.18717755\n", + " 0.01400003 0.0500023 0.08571147 0.12092013 0.15542529 0.1890269\n", + " 0.01411023 0.05039551 0.08638432 0.12186779 0.15664287 0.19051132\n", + " 0.01419378 0.0506935 0.08689379 0.12258434 0.15756175 0.19162897\n", + " 0.0142499 0.05089361 0.08723571 0.12306478 0.15817704 0.19237609\n", + " 0.01427798 0.05099373 0.08740674 0.12330495 0.15848438 0.1927489 ]\n", + " [-0.20812604 -0.1806373 -0.15245726 -0.12369032 -0.09444319 -0.06482624\n", + " -0.03495355 -0.00494229 -0.20812604 -0.20797994 -0.20756351 -0.20687811\n", + " -0.20592557 -0.20470759 -0.20322504 -0.20147731 -0.00494229 -0.00493875\n", + " -0.0049287 -0.00491221 -0.00488939 -0.0048604 -0.00482538 -0.00478446\n", + " -0.20147731 -0.17488831 -0.14761103 -0.11975687 -0.09143612 -0.06275929\n", + " -0.03383788 -0.00478446 -0.19623245 -0.16206424 -0.12696122 -0.09111882\n", + " -0.05474021 -0.01803675 -0.20800294 -0.20764209 -0.20687664 -0.20570979\n", + " -0.20414458 -0.20218204 -0.00504426 -0.00503536 -0.00501654 -0.004988\n", + " -0.00495001 -0.00490286 -0.1899823 -0.15691665 -0.12292805 -0.08821992\n", + " -0.05299579 -0.01746139 -0.2080333 -0.2080333 -0.00488406 -0.00488406\n", + " -0.19620382 -0.19586344 -0.1951417 -0.19404219 -0.19256861 -0.19072284\n", + " -0.16204052 -0.16175873 -0.16116182 -0.16025398 -0.15904007 -0.15752379\n", + " -0.12694255 -0.12672084 -0.12625153 -0.1255387 -0.12458735 -0.12340188\n", + " -0.09110536 -0.09094551 -0.09060732 -0.09009413 -0.08941017 -0.08855947\n", + " -0.05473209 -0.05463571 -0.05443186 -0.05412272 -0.05371108 -0.05319971\n", + " -0.01803407 -0.01800225 -0.01793496 -0.01783294 -0.01769716 -0.01752858]\n", + " [ 0.97810134 0.9835491 0.98830938 0.99232018 0.99552956 0.99789587\n", + " 0.99938824 0.99998708 0.97810134 0.97766757 0.97643555 0.97442227\n", + " 0.97165564 0.96817455 0.96402898 0.95928031 0.99998708 0.99950082\n", + " 0.99811945 0.99586111 0.99275529 0.98884231 0.98417285 0.97880765\n", + " 0.95928031 0.96412134 0.96836441 0.97194676 0.97481703 0.97693499\n", + " 0.97827131 0.97880765 0.98055661 0.9867794 0.99190687 0.99583921\n", + " 0.9984998 0.9998365 0.97803071 0.97696059 0.97470701 0.97131684\n", + " 0.96686168 0.96143824 0.9998853 0.99868571 0.9961584 0.99235295\n", + " 0.98734355 0.98122767 0.96147748 0.96701775 0.97159609 0.97511327\n", + " 0.97749515 0.97869233 0.97812095 0.97812095 0.97882665 0.97882665\n", + " 0.98046512 0.97938023 0.97709532 0.97365734 0.96913788 0.96363342\n", + " 0.98668479 0.98556272 0.98319907 0.97964125 0.97496115 0.96925491\n", + " 0.9918097 0.99065742 0.98822988 0.98457518 0.97976579 0.97389805\n", + " 0.9957401 0.99456477 0.9920886 0.98836032 0.98345316 0.97746384\n", + " 0.99839939 0.99720849 0.9946995 0.99092169 0.98594885 0.97987817\n", + " 0.99973542 0.99853671 0.99601124 0.99220858 0.98720287 0.98109154]]\n", + "DEBUG:root:radec2pix: xyfp Shape: (96, 2)\n", + "DEBUG:root:cartToSphere: vec: [[0.20582147 0.20164691 0.95758866]\n", + " [0.20765008 0.17515749 0.96239353]\n", + " [0.20920683 0.1479768 0.96661025]\n", + " [0.21049219 0.12021614 0.97017582]\n", + " [0.21150557 0.09198614 0.97303851]\n", + " [0.2122456 0.06339752 0.97515771]\n", + " [0.21271065 0.03456171 0.9765038 ]\n", + " [0.21289938 0.00559103 0.97705813]\n", + " [0.20582147 0.20164691 0.95758866]\n", + " [0.17940403 0.2034844 0.96250106]\n", + " [0.15227891 0.20505578 0.96683156]\n", + " [0.12455745 0.20636157 0.9705155 ]\n", + " [0.09635017 0.2074012 0.97349956]\n", + " [0.06776763 0.20817322 0.97574149]\n", + " [0.03892112 0.20867589 0.97721007]\n", + " [0.00992292 0.20890768 0.97788502]\n", + " [0.21289938 0.00559103 0.97705813]\n", + " [0.18554193 0.00564441 0.98262014]\n", + " [0.15DEBUG:root:radec2pix: xyfp: [[32.275486 31.41357429]\n", + " [32.27502267 27.02714574]\n", + " [32.27455935 22.64071719]\n", + " [32.27409601 18.25428864]\n", + " [32.27363269 13.8678601 ]\n", + " [32.27316936 9.48143155]\n", + " [32.27270604 5.095003 ]\n", + " [32.27224271 0.70857446]\n", + " [32.275486 31.41357429]\n", + " [27.88905745 31.41403761]\n", + " [23.5026289 31.41450094]\n", + " [19.11620036 31.41496427]\n", + " [14.72977181 31.41542759]\n", + " [10.34334326 31.41589092]\n", + " [ 5.95691471 31.41635424]\n", + " [ 1.57048617 31.41681757]\n", + " [32.27224271 0.70857446]\n", + " [27.88581416 0.70903778]\n", + " [23.49938562 0.70950111]\n", + " [19.11295707 0.70996444]\n", + " [14.72652852 0.71042776]\n", + " [10.34009998 0.71089109]\n", + " [ 5.95367142 0.71135442]\n", + " [ 1.56724288 0.71181774]\n", + " [ 1.57048617 31.41681757]\n", + " [ 1.57002284 27.03038902]\n", + " [ 1.56955951 22.64396047]\n", + " [ 1.56909619 18.25753194]\n", + " [ 1.56863286 13.87110338]\n", + " [ 1.56816953 9.48467484]\n", + " [ 1.56770621 5.09824629]\n", + " [ 1.56724288 0.71181774]\n", + " [32.26028399 29.50107588]\n", + " [32.25971613 24.12507591]\n", + " [32.25914828 18.74907594]\n", + " [32.25858043 13.37307597]\n", + "DEBUG:root:radec2pix: curVec: [[-0.34239102 0.53047864 0.77547457]\n", + " [-0.34786685 0.55170822 0.75802816]\n", + " [-0.35317128 0.57291401 0.73962124]\n", + " [-0.35826745 0.59398576 0.72029532]\n", + " [-0.36312253 0.61482067 0.70009826]\n", + " [-0.36770738 0.63532156 0.679086 ]\n", + " [-0.37199627 0.65539563 0.65732438]\n", + " [-0.37596709 0.67495453 0.63488986]\n", + " [-0.34239102 0.53047864 0.77547457]\n", + " [-0.31561183 0.54089829 0.77962697]\n", + " [-0.28867439 0.55090616 0.7830514 ]\n", + " [-0.26168851 0.56047198 0.78574187]\n", + " [-0.23476735 0.56957294 0.78769979]\n", + " [-0.20802703 0.57819374 0.78893393]\n", + " [-0.1815858 0.58632626 0.78946065]\n", + " [-0.15556169 0.59396874 0.78930456]\n", + " [-0.37596709 0.67495453 0.63488986]\n", + " [-0.34823118 0.68560982 0.63927632]\n", + " [-0.32027468 0.69561612 0.64307258]\n", + " [-0.29221262 0.70494278 0.64627198]\n", + " [-0.26415991 0.7135684 0.64887571]\n", + " [-0.23623138 0.7214804 0.65089229]\n", + " [-0.2085435 0.72867411 0.65233707]\n", + " [-0.18121685 0.73515201 0.65323195]\n", + " [-0.15556169 0.59396874 0.78930456]\n", + " [-0.15909988 0.61484925 0.77242969]\n", + " [-0.16272908 0.63566625 0.75461756]\n", + " [-0.16641818 0.65631015 0.73590895]\n", + " [-0.17013699 0.67667603 0.71635393]\n", + " [-0.17385823 0.69666513 0.69601078]\n", + " [-0.1775582 0.71618546 0.67494554]\n", + " [-0.18121685 0.73515201 0.65323195]\n", + " [-0.34470548 0.53976677 0.76800388]\n", + " [-0.35130539 0.56578447 0.74597082]\n", + " [-0.35761091 0.59165595 0.72253559]\n", + " [-0.36355998 0.61718891 0.69778363]\n", + " [-0.36909892 0.64220429 0.67181816]\n", + " [-0.37418185 0.66653306 0.64476479]\n", + " [-0.33076013 0.53514267 0.77731593]\n", + " [-0.29781842 0.54764051 0.78191692]\n", + " [-0.26474769 0.55948874 0.78541773]\n", + " [-0.23175489 0.57064227 0.78781791]\n", + " [-0.19905372 0.5810729 0.78913364]\n", + " [-0.16686197 0.59076838 0.78939838]\n", + " [-0.36389558 0.67961182 0.63695194]\n", + " [-0.32973971 0.69223896 0.64193219]\n", + " [-0.29536679 0.70385995 0.64601829]\n", + " [-0.26098848 0.71443154 0.6492092 ]\n", + " [-0.22681638 0.72393047 0.65152053]\n", + " [-0.19306653 0.73235112 0.65298327]\n", + " [-0.15717984 0.60304837 0.78206596]\n", + " [-0.16158255 0.62861157 0.76074869]\n", + " [-0.16609089 0.6539701 0.73806296]\n", + " [-0.17064877 0.67892872 0.71409719]\n", + " [-0.175206 0.7033057 0.6889586 ]\n", + " [-0.17972049 0.72693456 0.66277198]\n", + " [-0.3423188 0.53058744 0.77543201]\n", + " [-0.3423188 0.53058744 0.77543201]\n", + " [-0.18129712 0.73506724 0.65330506]\n", + " [-0.18129712 0.73506724 0.65330506]\n", + " [-0.33310078 0.54433799 0.76989611]\n", + " [-0.30002263 0.55686329 0.77452546]\n", + " [-0.26680696 0.56871236 0.77806188]\n", + " [-0.23366097 0.57983996 0.78050508]\n", + " [-0.20079885 0.59021809 0.78187111]\n", + " [-0.16843993 0.59983536 0.78219277]\n", + " [-0.33958487 0.57039554 0.74788438]\n", + " [-0.30616321 0.58298554 0.75259016]\n", + " [-0.2725825 0.59482729 0.756227 ]\n", + " [-0.23905051 0.60587487 0.75879542]\n", + " [-0.20578144 0.61610042 0.76031196]\n", + " [-0.17299646 0.62549395 0.76080848]\n", + " [-0.34579628 0.59629869 0.72446726]\n", + " [-0.31209484 0.60893346 0.72924403]\n", + " [-0.27821666 0.62075279 0.73298121]\n", + " [-0.24437021 0.63171029 0.73568017]\n", + " [-0.21076877 0.64177822 0.73735829]\n", + " [-0.17763279 0.65094735 0.73804752]\n", + " [-0.35167336 0.62185489 0.69973019]\n", + " [-0.31775682 0.63451341 0.70457316]\n", + " [-0.2836491 0.64629381 0.70841196]\n", + " [-0.24955966 0.65714987 0.71124822]\n", + " [-0.2157008 0.66705457 0.71309983]\n", + " [-0.1822912 0.6759995 0.71399901]\n", + " [-0.35716322 0.64688478 0.67377631]\n", + " [-0.32309822 0.65954505 0.67868098]\n", + " [-0.28882994 0.67126913 0.68262363]\n", + " [-0.25456901 0.68201174 0.68560528]\n", + " [-0.22052707 0.69174725 0.68764348]\n", + " [-0.18692114 0.70046839 0.6887703 ]\n", + " [-0.36222084 0.67121902 0.64673108]\n", + " [-0.32807627 0.6838587 0.6516926 ]\n", + " [-0.293718 0.69550941 0.65574111]\n", + " [-0.25935752 0.70612735 0.6588762 ]\n", + " [-0.22520636 0.71568862 0.66111413]\n", + " [-0.19148061 0.72418722 0.66248626]]\n", + "747589 0.00569099 0.98750643]\n", + " [0.1288054 0.00573063 0.99165333]\n", + " [0.09963586 0.00576317 0.99500728]\n", + " [0.07007602 0.00578837 0.99752486]\n", + " [0.04023879 0.00580605 0.99917322]\n", + " [0.01024104 0.00581605 0.99993064]\n", + " [0.00992292 0.20890768 0.97788502]\n", + " [0.01000636 0.18144072 0.98335097]\n", + " [0.01007758 0.15328055 0.98813132]\n", + " [0.01013637 0.12453134 0.9921639 ]\n", + " [0.01018243 0.09529889 0.99539662]\n", + " [0.01021541 0.06569253 0.99778762]\n", + " [0.01023502 0.0358258 0.99930564]\n", + " [0.01024104 0.00581605 0.99993064]\n", + " [0.20656285 0.19019593 0.9597694 ]\n", + " [0.20862007 0.15725033 0.96527198]\n", + " [0.2102697 0.12337711 0.96982717]\n", + " [0.2115111 0.08878017 0.97333506]\n", + " [0.21234181 0.0536634 0.97572086]\n", + " [0.21275892 0.01823232 0.97693461]\n", + " [0.19440388 0.20239118 0.95981506]\n", + " [0.16153549 0.20446311 0.96545384]\n", + " [0.12771486 0.20613616 0.97015298]\n", + " [0.09314577 0.2074097 0.97380957]\n", + " [0.05803185 0.20828117 0.97634587]\n", + " [0.02257838 0.20874739 0.97770893]\n", + " [0.20106508 0.00571471 0.97956122]\n", + " [0.16704611 0.00577657 0.98593216]\n", + " [0.13206625 0.00582791 0.99122376]\n", + " [0.09631893 0.00586841 0.99533322]\n", + " [0.06000442 0.00589767 0.99818069]\n", + " [0.02333228 0.00591534 0.99971026]\n", + " [0.01006049 0.19702358 0.98034713]\n", + " [0.01015553 0.16288078 0.98659349]\n", + " [0.01023184 0.12780019 0.99174716]\n", + " [0.01028888 0.0919758 0.99570809]\n", + " [0.01032605 0.05560896 0.99839923]\n", + " [0.01034279 0.01891032 0.99976769]\n", + " [0.20573918 0.20156436 0.95762372]\n", + " [0.20573918 0.20156436 0.95762372]\n", + " [0.01034376 0.00591876 0.99992898]\n", + " [0.01034376 0.00591876 0.99992898]\n", + " [0.19517916 0.19097333 0.96199495]\n", + " [0.16217419 0.19292238 0.96771922]\n", + " [0.12821715 0.19449762 0.97248704]\n", + " [0.09351091 0.19569785 0.97619571]\n", + " [0.05825864 0.19651986 0.97876753]\n", + " [0.02266572 0.19695996 0.9801495 ]\n", + " [0.19711638 0.15788822 0.96758278]\n", + " [0.16377271 0.15949023 0.97352009]\n", + " [0.12947641 0.1607887 0.97845943]\n", + " [0.09442771 0.16178086 0.98229851]\n", + " [0.05882858 0.16246211 0.98495952]\n", + " [0.02288505 0.16282774 0.98638907]\n", + " [0.19867107 0.12387558 0.97220607]\n", + " [0.16505894 0.1251298 0.9783139 ]\n", + " [0.13049231 0.12614936 0.98339112]\n", + " [0.09516891 0.12693065 0.98733555]\n", + " [0.05928988 0.1274685 0.99006893]\n", + " [0.02306224 0.12775798 0.99153721]\n", + " [0.19984199 0.08913848 0.97576509]\n", + " [0.16603002 0.09004163 0.98200129]\n", + " [0.13126104 0.09077781 0.98718283]\n", + " [0.09573072 0.09134344 0.99120735]\n", + " [0.0596397 0.09173387 0.99399598]\n", + " [0.02319607 0.09194479 0.9954939 ]\n", + " [0.20062602 0.0538804 0.97818511]\n", + " [0.16668139 0.0544282 0.98450743]\n", + " [0.13177743 0.05487585 0.98975924]\n", + " [0.09610838 0.05522072 0.99383794]\n", + " [0.05987462 0.05545959 0.99666407]\n", + " [0.02328514 0.05558951 0.99818215]\n", + " [0.20101976 0.018307 0.97941611]\n", + " [0.1670086 0.01849597 0.98578194]\n", + " [0.13203673 0.01865108 0.99106934]\n", + " [0.09629765 0.01877134 0.99517556]\n", + " [0.05999164 0.01885557 0.99802078]\n", + " [0.02332821 0.01890269 0.99954914]]\n", + "DEBUG:root:radec2pix: camVec Shape: (3, 96)\n", + " [32.25801258 7.997076 ]\n", + " [32.25744472 2.62107603]\n", + " [30.36298443 31.3987763 ]\n", + " [24.98698446 31.39934415]\n", + " [19.61098448 31.399912 ]\n", + " [14.23498451 31.40047985]\n", + " [ 8.85898454 31.40104771]\n", + " [ 3.48298457 31.40161556]\n", + " [30.35974431 0.72377647]\n", + " [24.98374433 0.72434432]\n", + " [19.60774436 0.72491217]\n", + " [14.23174439 0.72548003]\n", + " [ 8.85574442 0.72604788]\n", + " [ 3.47974445 0.72661573]\n", + " [ 1.58528416 29.504316 ]\n", + " [ 1.5847163 24.12831603]\n", + " [ 1.58414845 18.75231606]\n", + " [ 1.5835806 13.37631609]\n", + " [ 1.58301275 8.00031612]\n", + " [ 1.5824449 2.62431615]\n", + " [32.26048441 31.39857587]\n", + " [32.26048441 31.39857587]\n", + " [ 1.58224447 0.72681616]\n", + " [ 1.58224447 0.72681616]\n", + " [30.36278399 29.50127631]\n", + " [24.98678403 29.50184416]\n", + " [19.61078405 29.50241201]\n", + " [14.23478409 29.50297987]\n", + " [ 8.85878411 29.50354772]\n", + " [ 3.48278414 29.50411557]\n", + " [30.36221615 24.12527634]\n", + " [24.98621618 24.12584419]\n", + " [19.6102162 24.12641204]\n", + " [14.23421623 24.1269799 ]\n", + " [ 8.85821626 24.12754775]\n", + " [ 3.48221629 24.1281156 ]\n", + " [30.36164829 18.74927637]\n", + " [24.98564832 18.74984422]\n", + " [19.60964835 18.75041208]\n", + " [14.23364838 18.75097993]\n", + " [ 8.85764841 18.75154778]\n", + " [ 3.48164844 18.75211563]\n", + " [30.36108043 13.3732764 ]\n", + " [24.98508046 13.37384425]\n", + " [19.60908049 13.3744121 ]\n", + " [14.23308053 13.37497996]\n", + " [ 8.85708056 13.37554781]\n", + " [ 3.48108059 13.37611567]\n", + " [30.36051258 7.99727643]\n", + " [24.98451261 7.99784428]\n", + " [19.60851265 7.99841214]\n", + " [14.23251268 7.99897999]\n", + " [ 8.85651271 7.99954784]\n", + " [ 3.48051273 8.00011569]\n", + " [30.35994473 2.62127646]\n", + " [24.98394476 2.62184431]\n", + " [19.60794479 2.62241216]\n", + " [14.23194482 2.62298002]\n", + " [ 8.85594485 2.62354787]\n", + " [ 3.47994488 2.62411572]]\n", + "DEBUG:root:radec2pix: fitpx: [[-5.00000034e-01 -5.00000033e-01]\n", + " [-5.00000269e-01 2.91928571e+02]\n", + " [-5.00000171e-01 5.84357143e+02]\n", + " [-4.99999761e-01 8.76785714e+02]\n", + " [-4.99999835e-01 1.16921429e+03]\n", + " [-5.00000099e-01 1.46164286e+03]\n", + " [-4.99999719e-01 1.75407143e+03]\n", + " [-5.00000225e-01 2.04650000e+03]\n", + " [-5.00000034e-01 -5.00000033e-01]\n", + " [ 2.91928571e+02 -4.99999990e-01]\n", + " [ 5.84357143e+02 -5.00000111e-01]\n", + " [ 8.76785714e+02 -5.00000066e-01]\n", + " [ 1.16921429e+03 -4.99999995e-01]\n", + " [ 1.46164286e+03 -5.00000140e-01]\n", + " [ 1.75407143e+03 -5.00000040e-01]\n", + " [ 2.04650000e+03 -5.00000296e-01]\n", + " [-5.00000225e-01 2.04650000e+03]\n", + " [ 2.91928572e+02 2.04650000e+03]\n", + " [ 5.84357143e+02 2.04650000e+03]\n", + " [ 8.76785714e+02 2.04650000e+03]\n", + " [ 1.16921429e+03 2.04650000e+03]\n", + " [ 1.46164286e+03 2.04650000e+03]\n", + " [ 1.75407143e+03 2.04650000e+03]\n", + " [ 2.04650000e+03 2.04650000e+03]\n", + " [ 2.04650000e+03 -5.00000296e-01]\n", + " [ 2.04650000e+03 2.91928572e+02]\n", + " [ 2.04650000e+03 5.84357143e+02]\n", + " [ 2.04650000e+03 8.76785714e+02]\n", + " [ 2.04650000e+03 1.16921429e+03]\n", + " [ 2.04650000e+03 1.46164286e+03]\n", + " [ 2.04650000e+03 1.75407143e+03]\n", + " [ 2.04650000e+03 2.04650000e+03]\n", + " [ 5.00000148e-01 1.27000000e+02]\n", + " [ 5.00000006e-01 4.85400000e+02]\n", + " [ 4.99999879e-01 8.43800000e+02]\n", + " [ 4.99999939e-01 1.20220000e+03]\n", + " [ 5.00000182e-01 1.56060000e+03]\n", + " [ 5.00000197e-01 1.91900000e+03]\n", + " [ 1.27000000e+02 4.99999893e-01]\n", + " [ 4.85400000e+02 5.00000055e-01]\n", + " [ 8.43800000e+02 4.99999998e-01]\n", + " [ 1.20220000e+03 5.00000122e-01]\n", + " [ 1.56060000e+03 4.99999912e-01]\n", + " [ 1.91900000e+03 5.00000160e-01]\n", + " [ 1.27000000e+02 2.04550000e+03]\n", + " [ 4.85400000e+02 2.04550000e+03]\n", + " [ 8.43800000e+02 2.04550000e+03]\n", + " [ 1.20220000e+03 2.04550000e+03]\n", + " [ 1.56060000e+03 2.04550000e+03]\n", + " [ 1.91900000e+03 2.04550000e+03]\n", + " [ 2.04550000e+03 1.27000000e+02]\n", + " [ 2.04550000e+03 4.85400000e+02]\n", + " [ 2.04550000e+03 8.43800000e+02]\n", + " [ 2.04550000e+03 1.20220000e+03]\n", + " [ 2.04550000e+03 1.56060000e+03]\n", + " [ 2.04550000e+03 1.91900000e+03]\n", + " [ 4.99999930e-01 4.99999931e-01]\n", + " [ 4.99999930e-01 4.99999931e-01]\n", + " [ 2.04550000e+03 2.04550000e+03]\n", + " [ 2.04550000e+03 2.04550000e+03]\n", + " [ 1.27000000e+02 1.27000000e+02]\n", + " [ 4.85400000e+02 1.27000000e+02]\n", + " [ 8.43800000e+02 1.27000000e+02]\n", + " [ 1.20220000e+03 1.27000000e+02]\n", + " [ 1.56060000e+03 1.27000000e+02]\n", + " [ 1.91900000e+03 1.27000000e+02]\n", + " [ 1.27000000e+02 4.85400000e+02]\n", + " [ 4.85400000e+02 4.85400000e+02]\n", + " [ 8.43800000e+02 4.85400000e+02]\n", + " [ 1.20220000e+03 4.85400000e+02]\n", + " [ 1.56060000e+03 4.85400000e+02]\n", + " [ 1.91900000e+03 4.85400000e+02]\n", + " [ 1.27000000e+02 8.43800000e+02]\n", + " [ 4.85400000e+02 8.43800000e+02]\n", + " [ 8.43800000e+02 8.43800000e+02]\n", + " [ 1.20220000e+03 8.43800000e+02]\n", + " [ 1.56060000e+03 8.43800000e+02]\n", + " [ 1.91900000e+03 8.43800000e+02]\n", + " [ 1.27000000e+02 1.20220000e+03]\n", + " [ 4.85400000e+02 1.20220000e+03]\n", + " [ 8.43800000e+02 1.20220000e+03]\n", + " [ 1.20220000e+03 1.20220000e+03]\n", + " [ 1.56060000e+03 1.20220000e+03]\n", + " [ 1.91900000e+03 1.20220000e+03]\n", + " [ 1.27000000e+02 1.56060000e+03]\n", + " [ 4.85400000e+02 1.56060000e+03]\n", + " [ 8.43800000e+02 1.56060000e+03]\n", + " [ 1.20220000e+03 1.56060000e+03]\n", + " [ 1.56060000e+03 1.56060000e+03]\n", + " [ 1.91900000e+03 1.56060000e+03]\n", + " [ 1.27000000e+02 1.91900000e+03]\n", + " [ 4.85400000e+02 1.91900000e+03]\n", + " [ 8.43800000e+02 1.91900000e+03]\n", + " [ 1.20220000e+03 1.91900000e+03]\n", + " [ 1.56060000e+03 1.91900000e+03]\n", + " [ 1.91900000e+03 1.91900000e+03]]\n", + "DEBUG:root:mm_to_pix: fitpx: [[0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]]\n", + "DEBUG:root:radec2pix: curVec Shape: (96, 3)\n", + "DEBUG:root:mm_to_pix: fitpx: [[0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]]\n", + "DEBUG:root:radec2pix: curVec: [[-4.76720778e-01 1.58634597e-01 8.64622672e-01]\n", + " [-4.62314313e-01 1.37513416e-01 8.75988320e-01]\n", + " [-4.47245996e-01 1.15858812e-01 8.86875276e-01]\n", + " [-4.31555806e-01 9.37513442e-02 8.97201355e-01]\n", + " [-4.15288151e-01 7.12725744e-02 9.06893583e-01]\n", + " [-3.98492976e-01 4.85064620e-02 9.15887805e-01]\n", + " [-3.81226438e-01 2.55400531e-02 9.24128838e-01]\n", + " [-3.63550969e-01 2.46327861e-03 9.31571052e-01]\n", + " [-4.76720778e-01 1.58634597e-01 8.64622672e-01]\n", + " [-4.97289400e-01 1.39988544e-01 8.56216363e-01]\n", + " [-5.17325719e-01 1.21209944e-01 8.47161290e-01]\n", + " [-5.36755926e-01 1.02371522e-01 8.37504118e-01]\n", + " [-5.55511052e-01 8.35457117e-02 8.27301387e-01]\n", + " [-5.73526665e-01 6.48043231e-02 8.16619596e-01]\n", + " [-5.90742416e-01 4.62184710e-02 8.05535381e-01]\n", + " [-6.07101705e-01 2.78587394e-02 7.94135638e-01]\n", + " [-3.63550969e-01 2.46327861e-03 9.31571052e-01]\n", + " [-3.84909254e-01 -1.67177753e-02 9.22803003e-01]\n", + " [-4.05851998e-01 -3.58245327e-02 9.13236420e-01]\n", + " [-4.26301542e-01 -5.47818773e-02 9.02920784e-01]\n", + " [-4.46186891e-01 -7.35169737e-02 8.91915081e-01]\n", + " [-4.65443831e-01 -9.19596000e-02 8.80287153e-01]\n", + " [-4.84014250e-01 -1.10041744e-01 8.68113484e-01]\n", + " [-5.01844869e-01 -1.27696559e-01 8.55479582e-01]\n", + " [-6.07101705e-01 2.78587394e-02 7.94135638e-01]\n", + " [-5.94269799e-01 6.30903589e-03 8.04241010e-01]\n", + " [-5.80625746e-01 -1.56072733e-02 8.14020980e-01]\n", + " [-5.66212079e-01 -3.78052606e-02 8.23392156e-01]\n", + " [-5.51074919e-01 -6.01995816e-02 8.32281469e-01]\n", + " [-5.35264269e-01 -8.27041999e-02 8.40626063e-01]\n", + " [-5.18834522e-01 -1.05232309e-01 8.48373090e-01]\n", + " [-5.01844869e-01 -1.27696559e-01 8.55479582e-01]\n", + " [-4.70594737e-01 1.49432733e-01 8.69603618e-01]\n", + " [-4.52488921e-01 1.23177070e-01 8.83222048e-01]\n", + " [-4.33428140e-01 9.62003203e-02 8.96038808e-01]\n", + " [-4.13492250e-01 6.86521402e-02 9.07915769e-01]\n", + " [-3.92773268e-01 4.06871811e-02 9.18734844e-01]\n", + " [-3.71377207e-01 1.24669371e-02 9.28398377e-01]\n", + " [-4.85701496e-01 1.50454327e-01 8.61079295e-01]\n", + " [-5.10562814e-01 1.27502826e-01 8.50334430e-01]\n", + " [-5.34550756e-01 1.04424653e-01 8.38660230e-01]\n", + " [-5.57536342e-01 8.13533031e-02 8.26156685e-01]\n", + " [-5.79400907e-01 5.84209689e-02 8.12946234e-01]\n", + " [-6.00034908e-01 3.57583360e-02 7.99174231e-01]\n", + " [-3.72970171e-01 -5.82499143e-03 9.27825049e-01]\n", + " [-3.98877397e-01 -2.92929849e-02 9.16536275e-01]\n", + " [-4.24082479e-01 -5.25746866e-02 9.04096208e-01]\n", + " [-4.48451919e-01 -7.55350156e-02 8.90609532e-01]\n", + " [-4.71867421e-01 -9.80446440e-02 8.76201110e-01]\n", + " [-4.94224086e-01 -1.19978909e-01 8.61015455e-01]\n", + " [-6.01554544e-01 1.85757611e-02 7.98615722e-01]\n", + " [-5.85275294e-01 -8.09302889e-03 8.10794261e-01]\n", + " [-5.67818104e-01 -3.52282485e-02 8.22399885e-01]\n", + " [-5.49266393e-01 -6.26729700e-02 8.33293783e-01]\n", + " [-5.29712272e-01 -9.02687929e-02 8.43360216e-01]\n", + " [-5.09257860e-01 -1.17855659e-01 8.52505997e-01]\n", + " [-4.76743842e-01 1.58499914e-01 8.64634655e-01]\n", + " [-4.76743842e-01 1.58499914e-01 8.64634655e-01]\n", + " [-5.01844196e-01 -1.27560376e-01 8.55500294e-01]\n", + " [-5.01844196e-01 -1.27560376e-01 8.55500294e-01]\n", + " [-4.79588544e-01 1.41356796e-01 8.66032958e-01]\n", + " [-5.04557329e-01 1.18331544e-01 8.55230698e-01]\n", + " [-5.28659981e-01 9.51981519e-02 8.43478474e-01]\n", + " [-5.51767591e-01 7.20905745e-02 8.30876329e-01]\n", + " [-5.73761912e-01 4.91412223e-02 8.17546579e-01]\n", + " [-5.94533905e-01 2.64807249e-02 8.03634374e-01]\n", + " [-4.61574106e-01 1.15025156e-01 8.79612732e-01]\n", + " [-4.86817371e-01 9.18195920e-02 8.68664498e-01]\n", + " [-5.11216718e-01 6.85588847e-02 8.56712989e-01]\n", + " [-5.34643189e-01 4.53782689e-02 8.43858681e-01]\n", + " [-5.56979654e-01 2.24106427e-02 8.30223722e-01]\n", + " [-5.78118813e-01 -2.13685584e-04 8.15952567e-01]\n", + " [-4.42588189e-01 8.79874568e-02 8.92397839e-01]\n", + " [-4.68061483e-01 6.46449119e-02 8.81328249e-01]\n", + " [-4.92716212e-01 4.13012541e-02 8.69209377e-01]\n", + " [-5.16422889e-01 1.80927099e-02 8.56142543e-01]\n", + " [-5.39065106e-01 -4.84773475e-03 8.42250147e-01]\n", + " [-5.60537242e-01 -2.73904837e-02 8.27676121e-01]\n", + " [-4.22710233e-01 6.03937977e-02 9.04250324e-01]\n", + " [-4.48368375e-01 3.69591002e-02 8.93084445e-01]\n", + " [-4.73237250e-01 1.35784774e-02 8.80830364e-01]\n", + " [-4.97186392e-01 -9.61139439e-03 8.67590521e-01]\n", + " [-5.20099507e-01 -3.24780105e-02 8.53487950e-01]\n", + " [-5.41872109e-01 -5.48929461e-02 8.38666431e-01]\n", + " [-4.02031713e-01 3.23993323e-02 9.15052340e-01]\n", + " [-4.27828244e-01 8.91867152e-03 9.03816049e-01]\n", + " [-4.52869341e-01 -1.44518384e-02 8.91459760e-01]\n", + " [-4.77023272e-01 -3.75757529e-02 8.78087046e-01]\n", + " [-5.00173216e-01DEBUG:root:radec2pix: ccdpx: [[-4.45000001e+01 -5.00000082e-01]\n", + " [-4.45000001e+01 2.91928571e+02]\n", + " [-4.45000003e+01 5.84357143e+02]\n", + " [-4.44999997e+01 8.76785714e+02]\n", + " [-4.45000002e+01 1.16921429e+03]\n", + " [-4.44999997e+01 1.46164286e+03]\n", + " [-4.45000001e+01 1.75407143e+03]\n", + " [-4.44999998e+01 2.04650000e+03]\n", + " [-4.45000001e+01 -5.00000082e-01]\n", + " [ 2.47928572e+02 -4.99999837e-01]\n", + " [ 5.40357143e+02 -5.00000111e-01]\n", + " [ 8.32785714e+02 -5.00000236e-01]\n", + " [ 1.12521429e+03 -4.99999746e-01]\n", + " [ 1.41764286e+03 -4.99999876e-01]\n", + " [ 1.71007143e+03 -4.99999788e-01]\n", + " [ 2.00250000e+03 -5.00000040e-01]\n", + " [-4.44999998e+01 2.04650000e+03]\n", + " [ 2.47928572e+02 2.04650000e+03]\n", + " [ 5.40357143e+02 2.04650000e+03]\n", + " [ 8.32785714e+02 2.04650000e+03]\n", + " [ 1.12521429e+03 2.04650000e+03]\n", + " [ 1.41764286e+03 2.04650000e+03]\n", + " [ 1.71007143e+03 2.04650000e+03]\n", + " [ 2.00250000e+03 2.04650000e+03]\n", + " [ 2.00250000e+03 -5.00000040e-01]\n", + " [ 2.00250000e+03 2.91928572e+02]\n", + " [ 2.00250000e+03 5.84357143e+02]\n", + " [ 2.00250000e+03 8.76785714e+02]\n", + " [ 2.00250000e+03 1.16921429e+03]\n", + " [ 2.00250000e+03 1.46164286e+03]\n", + " [ 2.00250000e+03 1.75407143e+03]\n", + " [ 2.00250000e+03 2.04650000e+03]\n", + " [-4.35000002e+01 1.27000000e+02]\n", + " [-4.35000000e+01 4.85400000e+02]\n", + " [-4.34999999e+01 8.43800000e+02]\n", + " [-4.35000002e+01 1.20220000e+03]\n", + " [-4.35000002e+01 1.56060000e+03]\n", + " [-4.34999998e+01 1.91900000e+03]\n", + " [ 8.29999997e+01 4.99999723e-01]\n", + " [ 4.41400000e+02 4.99999738e-01]\n", + " [ 7.99800000e+02 4.99999955e-01]\n", + " [ 1.15820000e+03 5.00000275e-01]\n", + " [ 1.51660000e+03 4.99999778e-01]\n", + " [ 1.87500000e+03 5.00000195e-01]\n", + " [ 8.29999999e+01 2.04550000e+03]\n", + " [ 4.41400000e+02 2.04550000e+03]\n", + " [ 7.99800000e+02 2.04550000e+03]\n", + " [ 1.15820000e+03 2.04550000e+03]\n", + " [ 1.51660000e+03 2.04550000e+03]\n", + " [ 1.87500000e+03 2.04550000e+03]\n", + " [ 2.00150000e+03 1.27000000e+02]\n", + " [ 2.00150000e+03 4.85400000e+02]\n", + " [ 2.00150000e+03 8.43800000e+02]\n", + " [ 2.00150000e+03 1.20220000e+03]\n", + " [ 2.00150000e+03 1.56060000e+03]\n", + " [ 2.00150000e+03 1.91900000e+03]\n", + " [-4.34999997e+01 5.00000254e-01]\n", + " [-4.34999997e+01 5.00000254e-01]\n", + " [ 2.00150000e+03 2.04550000e+03]\n", + " [ 2.00150000e+03 2.04550000e+03]\n", + " [ 8.30000000e+01 1.27000000e+02]\n", + " [ 4.41400000e+02 1.27000000e+02]\n", + " [ 7.99800000e+02 1.27000000e+02]\n", + " [ 1.15820000e+03 1.27000000e+02]\n", + " [ 1.51660000e+03 1.27000000e+02]\n", + " [ 1.87500000e+03 1.27000000e+02]\n", + " [ 8.29999998e+01 4.85400000e+02]\n", + " [ 4.41400000e+02 4.85400000e+02]\n", + " [ 7.99800000e+02 4.85400000e+02]\n", + " [ 1.15820000e+03 4.85400000e+02]\n", + " [ 1.51660000e+03 4.85400000e+02]\n", + " [ 1.87500000e+03 4.85400000e+02]\n", + " [ 8.29999999e+01 8.43800000e+02]\n", + " [ 4.41400000e+02 8.43800000e+02]\n", + " [ 7.99800000e+02 8.43800000e+02]\n", + " [ 1.15820000e+03 8.43800000e+02]\n", + " [ 1.51660000e+03 8.43800000e+02]\n", + " [ 1.87500000e+03 8.43800000e+02]\n", + " [ 8.30000002e+01 1.20220000e+03]\n", + " [ 4.41400000e+02 1.20220000e+03]\n", + " [ 7.99800000e+02 1.20220000e+03]\n", + " [ 1.15820000e+03 1.20220000e+03]\n", + " [ 1.51660000e+03 1.20220000e+03]\n", + " [ 1.87500000e+03 1.20220000e+03]\n", + " [ 8.30000002e+01 1.56060000e+03]\n", + " [ 4.41400000e+02 1.56060000e+03]\n", + " [ 7.99800000e+02 1.56060000e+03]\n", + " [ 1.15820000e+03 1.56060000e+03]\n", + " [ 1.51660000e+03 1.56060000e+03]\n", + " [ 1.87500000e+03 1.56060000e+03]\n", + " [ 8.29999999e+01 1.91900000e+03]\n", + " [ 4.41400000e+02 1.91900000e+03]\n", + " [ 7.99800000e+02 1.91900000e+03]\n", + " [ 1.15820000e+03 1.91900000e+03]\n", + " [ 1.51660000e+03 1.91900000e+03]\n", + " [ 1.87500000e+03 1.91900000e+03]]\n", + "DEBUG:root:mm_to_pix: fitpx.shape: (96, 2)\n", + "DEBUG:root:optics_fp: rtanth: [31.45867372 27.07232164 22.68599914 18.29972749 13.91355478 9.52761765\n", + " 5.14251895 0.77266756 31.45867372 31.78680319 32.70527593 34.16651578\n", + " 36.10468169 38.44771501 41.12647627 44.07980062 0.77266756 4.62057574\n", + " 8.9768556 13.35288972 17.73406053 22.11731568 26.50162097 30.8865292\n", + " 44.07980062 41.06447698 38.31494783 35.89234872 33.86691125 32.31340541\n", + " 31.3021752 30.8865292 29.54629558 24.17042769 18.79463536 13.41900945\n", + " 8.04388357 2.67227674 31.51224371 32.31623619 33.96261905 36.33706944\n", + " 39.30786805 42.7508727 2.22187045 7.50028847 12.8598094 18.22903784\n", + " 23.60134944 28.97502929 42.72508353 39.20023922 36.1342981 33.65291956\n", + " 31.89283999 30.97725364 31.44375973 31.44375973 30.87190328 30.87190328\n", + " 29.6191671 30.47314683 32.21386423 34.70815714 37.80716925 41.37524227\n", + " 24.25945282 25.29503252 27.36711605 30.26354513 33.77288911 37.72448364\n", + " 18.90898716 20.22047017 22.759345 26.17080258 30.16018539 34.5277484\n", + " 13.57870729 15.35248874 18.5693102 22.62172417 27.13794906 31.92173094\n", + " 8.30755918 10.96964715 15.14772357 19.90921024 24.92192864 30.06045831\n", + " 3.38416012 7.92276206 13.11070286 18.40689143 23.73898749 29.08725072]\n", + "DEBUG:root:radec2pix: lng: [44.41301872 40.14838159 35.2726464 29.73151826 23.50476184 16.63082675\n", + " 9.22889701 1.50432057 44.41301872 48.59866885 53.40161123 58.88530587\n", + " 65.08233359 71.96812796 79.43489015 87.28054707 1.50432057 1.74246974\n", + " 2.06969874 2.54744544 3.31042966 4.7219858 8.21053157 29.59292215\n", + " 87.28054707 86.84336495 86.23844627 85.3466032 83.90123984 81.16110163\n", + " 74.05596575 29.59292215 42.63779834 37.00767795 30.40255608 22.76985585\n", + " 14.18292146 4.89797993 46.15318169 51.6896036 58.21907141 65.81559375\n", + " 74.43095985 83.82681521 1.62803312 1.98053876 2.52674891 3.48654093\n", + " 5.61341407 14.22621651 87.07688216 86.43225722 85.42259355 83.61713665\n", + " 79.48054112 61.32403216 44.41274552 44.41274552 29.77842334 29.77842334\n", + " 44.37598019 49.94895822 56.60624337 64.45998446 73.48745603 83.43540409\n", + " 38.69437311 44.24100899 51.15696074 59.72888922 70.09435151 81.99961851\n", + " 31.94440422 37.16546071 44.03052128 53.13850244 65.05527755 79.7674455\n", + " 24.03901245 28.4719233 34.66704703 43.65653948 56.97056188 75.84073328\n", + " 15.03271986 18.08395091 22.60822524 29.88026153 42.80777081 67.27233698\n", + " 5.20360826 6.3196744 8.04022063 11.03037054 17.44810995 39.01761856]\n", + "DEBUG:root:fitpix2pix: ccdpx: shape: (96, 2)\n", + "DEBUG:root:mm_to_pix: fitpx.shape: (96, 2)\n", + "DEBUG:root:radec2pix: fitpx: [[4271.49999985 4155.49999985]\n", + " [4271.49999998 3863.07142855]\n", + " [4271.50000002 3570.64285716]\n", + " [4271.49999976 3278.21428558]\n", + " [4271.50000012 2985.78571434]\n", + " [4271.50000004 2693.35714287]\n", + " [4271.50000005 2400.92857144]\n", + " [4271.49999991 2108.5 ]\n", + " [4271.49999985 4155.49999985]\n", + " [3979.07142858 4155.50000001]\n", + " [3686.64285722 4155.5000001 ]\n", + " [3394.21428584 4155.50000021]\n", + " [3101.78571415 4155.49999972]\n", + " [2809.35714289 4155.50000011]\n", + " [2516.92857142 4155.49999998]\n", + " [2224.50000001 4155.50000022]\n", + " [4271.49999991 2108.5 ]\n", + " [3979.07142843 2108.5 ]\n", + " [3686.6428569 2108.49999999]\n", + " [3394.21428586 2108.5 ]\n", + " [3101.78571453 2108.50000001]\n", + " [2809.35714306 2108.50000001]\n", + " [2516.9285717 2108.50000003]\n", + " [2224.49999984 2108.49999993]\n", + " [2224.50000001 4155.50000022]\n", + " [2224.5 3863.07142862]\n", + " [2224.49999998 3570.64285684]\n", + " [2224.50000001 3278.21428585]\n", + " [2224.50000002 2985.78571445]\n", + " [2224.5 2693.35714285]\n", + " [2224.49999995 2400.92857125]\n", + " [2224.49999984 2108.49999993]\n", + " [4270.49999995 4027.99999996]\n", + " [4270.50000001 3669.6 ]\n", + " [4270.4999998 3311.19999989]\n", + " [4270.50000006 2952.80000003]\n", + " [4270.50000002 2594.40000001]\n", + " [4270.49999985 2235.99999999]\n", + " [4144.00000023 4154.50000023]\n", + " [3785.60000021 4154.50000026]\n", + " [3427.20000017 4154.50000028]\n", + " [3068.79999989 4154.49999975]\n", + " [2710.40000004 4154.50000013]\n", + " [2351.99999998 4154.49999985]\n", + " [4143.99999992 2109.5 ]\n", + " [3785.59999985 2109.5 ]\n", + " [3427.19999998 2109.5 ]\n", + " [3068.80000001 2109.5 ]\n", + " [2710.40000021 2109.50000002]\n", + " [2352.00000017 2109.50000003]\n", + " [2225.5 4027.99999993]\n", + " [2225.49999998 3669.59999975]\n", + " [2225.50000001 3311.20000015]\n", + " [2225.5 2952.8 ]\n", + " [2225.49999998 2594.39999987]\n", + " [2225.50000008 2236.00000013]\n", + " [4270.50000018 4154.50000018]\n", + " [4270.50000018 4154.50000018]\n", + " [2225.49999981 2109.49999992]\n", + " [2225.49999981 2109.49999992]\n", + " [4143.99999987 4027.99999987]\n", + " [3785.59999992 4027.9999999 ]\n", + " [3427.2000001 4028.00000015]\n", + " [3068.80000011 4028.00000023]\n", + " [2710.39999995 4027.99999982]\n", + " [2351.99999998 4027.99999985]\n", + " [4144.00000018 3669.60000014]\n", + " [3785.5999999 3669.59999991]\n", + " [3427.19999994 3669.59999993]\n", + " [3068.79999994 3669.5999999 ]\n", + " [2710.39999997 3669.59999991]\n", + " [2351.99999997 3669.5999998 ]\n", + " [4143.99999973 3311.19999984]\n", + " [3785.60000019 3311.20000014]\n", + " [3427.1999998 3311.19999981]\n", + " [3068.79999976 3311.19999969]\n", + " [2710.39999985 3311.19999967]\n", + " [2352.00000003 3311.20000016]\n", + " [4144.00000026 2952.80000011]\n", + " [3785.6000001 2952.80000005]\n", + " [3427.20000009 2952.80000006]\n", + " [3068.8000003 2952.80000028]\n", + " [2710.39999986 2952.79999979]\n", + " [2352.00000001 2952.80000004]\n", + " [4143.99999994 2594.39999998]\n", + " [3785.6 2594.4 ]\n", + " [3427.19999999 2594.39999999]\n", + " [3068.79999999 2594.39999999]\n", + " [2710.40000015 2594.40000014]\n", + " [2351.99999993 2594.39999983]\n", + " [4143.99999995 2236. ]\n", + " [3785.59999975 2235.99999997]\n", + " [3427.19999971 2235.99999996]\n", + " [3068.80000003 2236.00000001]\n", + " [2710.39999999 2236. ]\n", + " [2352.00000022 2236.00000016]]\n", + "DEBUG:root:fitpix2pix: visCut: True\n", + " -6.03216348e-02 8.63821773e-01]\n", + " [-5.22215044e-01 -8.25625967e-02 8.48807908e-01]\n", + " [-3.80658126e-01 4.16597058e-03 9.24706459e-01]\n", + " [-4.06545116e-01 -1.93136464e-02 9.13426544e-01]\n", + " [-4.31715245e-01 -4.26267704e-02 9.01002167e-01]\n", + " [-4.56035453e-01 -6.56378637e-02 8.87537794e-01]\n", + " [-4.79387888e-01 -8.82170042e-02 8.73158069e-01]\n", + " [-5.01667975e-01 -1.10238971e-01 8.58007350e-01]]\n", + "DEBUG:root:cartToSphere: vec: [[ 0.00114566 -0.20812604 0.97810134]\n", + " [ 0.00115565 -0.1806373 0.9835491 ]\n", + " [ 0.00116422 -0.15245726 0.98830938]\n", + " [ 0.00117136 -0.12369032 0.99232018]\n", + " [ 0.00117701 -0.09444319 0.99552956]\n", + " [ 0.00118116 -0.06482624 0.99789587]\n", + " [ 0.00118376 -0.03495355 0.99938824]\n", + " [ 0.00118481 -0.00494229 0.99998708]\n", + " [ 0.00114566 -0.20812604 0.97810134]\n", + " [ 0.03017404 -0.20797994 0.97766757]\n", + " [ 0.05908469 -0.20756351 0.97643555]\n", + " [ 0.08776498 -0.20687811 0.97442227]\n", + " [ 0.11610332 -0.20592557 0.97165564]\n", + " [ 0.14398904 -0.20470759 0.96817455]\n", + " [ 0.17131174 -0.20322504 0.96402898]\n", + " [ 0.19796003 -0.20147731 0.95928031]DEBUG:root:fitpix2pix: ccdpx: shape: (96, 2)\n", + "DEBUG:root:optics_fp: cphi: [-0.0055044 -0.00639203 -0.0076229 -0.00944382 -0.01241274 -0.01811485\n", + " -0.0335395 -0.22307599 -0.0055044 -0.14344285 -0.2735344 -0.39021968\n", + " -0.49076392 -0.57494454 -0.64415274 -0.70050591 -0.22307599 -0.98662859\n", + " -0.99647595 -0.9984093 -0.99909876 -0.99942085 -0.99959678 -0.99970325\n", + " -0.70050591 -0.75194059 -0.80589783 -0.86028974 -0.91173668 -0.955566\n", + " -0.98643233 -0.99970325 -0.00636666 -0.00777693 -0.00999392 -0.01398706\n", + " -0.02331621 -0.07013242 -0.06618572 -0.2308951 -0.37799383 -0.50124187\n", + " -0.60012567 -0.67754548 -0.93833732 -0.9947436 -0.99821572 -0.99911274\n", + " -0.99947098 -0.99964917 -0.72236515 -0.7873159 -0.85411461 -0.91708811\n", + " -0.96769535 -0.99629275 -0.00598404 -0.00598404 -0.999691 -0.999691\n", + " -0.07041425 -0.24485858 -0.398512 -0.52476457 -0.62394545 -0.7000711\n", + " -0.08596532 -0.29497775 -0.46908383 -0.60182876 -0.69847361 -0.76781625\n", + " -0.11028259 -0.36899894 -0.56404664 -0.69594091 -0.78213485 -0.83890011\n", + " -0.1535634 -0.48599238 -0.6913123 -0.80511955 -0.86923269 -0.90738164\n", + " -0.25098261 -0.68015432 -0.84745756 -0.91480539 -0.94651795 -0.96355992\n", + " -0.61607996 -0.94170609 -0.97911709 -0.98946165 -0.99367815 -0.99579412]\n", + "\n", + " [ 0.00118481 -0.00494229 0.99998708]\n", + " [ 0.03120455 -0.00493875 0.99950082]\n", + " [ 0.06110052 -0.0049287 0.99811945]\n", + " [ 0.09075528 -0.00491221 0.99586111]\n", + " [ 0.1200543 -0.00488939 0.99275529]\n", + " [ 0.14888674 -0.0048604 0.98884231]\n", + " [ 0.17714546 -0.00482538 0.98417285]\n", + " [ 0.20472589 -0.00478446 0.97880765]\n", + " [ 0.19796003 -0.20147731 0.95928031]\n", + " [ 0.19971011 -0.17488831 0.96412134]\n", + " [ 0.20119978 -0.14761103 0.96836441]\n", + " [ 0.20242973 -0.11975687 0.97194676]\n", + " [ 0.20339908 -0.09143612 0.97481703]\n", + " [ 0.20410611 -0.06275929 0.97693499]\n", + " [ 0.20454887 -0.03383788 0.97827131]\n", + " [ 0.20472589 -0.00478446 0.97880765]\n", + " [ 0.00124992 -0.19623245 0.98055661]\n", + " [ 0.00126219 -0.16206424 0.9867794 ]\n", + " [ 0.00127213 -0.12696122 0.99190687]\n", + " [ 0.00127966 -0.09111882 0.99583921]\n", + " [ 0.00128472 -0.05474021 0.9984998 ]\n", + " [ 0.00128725 -0.01803675 0.9998365 ]\n", + " [ 0.01380981 -0.20800294 0.97803071]\n", + " [ 0.04932315 -0.20764209 0.97696059]\n", + " [ 0.08454761 -0.20687664 0.97470701]\n", + " [ 0.11927732 -0.20570979 0.97131684]\n", + " [ 0.15330846 -0.20414458 0.96686168]\n", + " [ 0.18643745 -0.20218204 0.96143824]\n", + " [ 0.01428113 -0.00504426 0.9998853 ]\n", + " [ 0.05100494 -0.00503536 0.99868571]\n", + " [ 0.08742589 -0.00501654 0.9961584 ]\n", + " [ 0.12333185 -0.004988 0.99235295]\n", + " [ 0.15851879 -0.00495001 0.98734355]\n", + " [ 0.19279062 -0.00490286 0.98122767]\n", + " [ 0.19866498 -0.1899823 0.96147748]\n", + " [ 0.20063357 -0.15691665 0.96701775]\n", + " [ 0.20221208 -0.12292805 0.97159609]\n", + " [ 0.20339952 -0.08821992 0.97511327]\n", + " [ 0.20419277 -0.05299579 0.97749515]\n", + " [ 0.20458843 -0.01746139 0.97869233]\n", + " [ 0.00124504 -0.2080333 0.97812095]\n", + " [ 0.00124504 -0.2080333 0.97812095]\n", + " [ 0.2046327 -0.00488406 0.97882665]\n", + " [ 0.2046327 -0.00488406 0.97882665]\n", + " [ 0.01386393 -0.19620382 0.98046512]\n", + " [ 0.04DEBUG:root:radec2pix: lat: [73.25344023 74.2369792 75.15226824 75.97162966 76.66508667 77.2021609\n", + " 77.55512574 77.70337791 73.25344023 74.25967575 75.20183236 76.05214643\n", + " 76.78010612 77.3540472 77.74432055 77.92785326 77.70337791 79.30226543\n", + " 80.93361724 82.59207196 84.27220803 85.96793867 87.66996871 89.32519361\n", + " 77.92785326 79.53024676 81.16372478 82.82252521 84.50025464 86.18804733\n", + " 87.86471391 89.32519361 73.6926739 74.85593178 75.88945702 76.73895525\n", + " 77.34864846 77.67018969 73.7019933 74.89586821 75.96623187 76.85800237\n", + " 77.51320661 77.87970489 78.39600189 80.37807975 82.40356131 84.46248138\n", + " 86.54333738 88.62073148 78.62203863 80.60748554 82.6338837 84.6897052\n", + " 86.75764582 88.76495286 73.26041353 73.26041353 89.31716551 89.31716551\n", + " 74.15313309 75.40228414 76.52877477 77.47347648 78.17205407 78.56478282\n", + " 75.37129959 76.78525096 78.08623827 79.20344298 80.05020166 80.53598707\n", + " 76.45984424 78.04591405 79.54291278 80.87169379 81.91843153 82.54064538\n", + " 77.36022478 79.11290918 80.81670049 82.39645142 83.71831262 84.55871556\n", + " 78.01034 79.90138935 81.79317677 83.63609258 85.31869407 86.54472849\n", + " 78.35474014 80.32671962 82.33692434 84.36964547 86.39457329 88.27941972]\n", + "DEBUG:root:fitpix2pix: visCut: True\n", + "951642 -0.19586344 0.97938023]\n", + " [ 0.08487904 -0.1951417 0.97709532]\n", + " [ 0.1197456 -0.19404219 0.97365734]\n", + " [ 0.15391263 -0.19256861 0.96913788]\n", + " [ 0.18717755 -0.19072284 0.96363342]\n", + " [ 0.01400003 -0.16204052 0.98668479]\n", + " [ 0.0500023 -0.16175873 0.98556272]\n", + " [ 0.08571147 -0.16116182 0.98319907]\n", + " [ 0.12092013 -0.16025398 0.97964125]\n", + " [ 0.15542529 -0.15904007 0.97496115]\n", + " [ 0.1890269 -0.15752379 0.96925491]\n", + " [ 0.01411023 -0.12694255 0.9918097 ]\n", + " [ 0.05039551 -0.12672084 0.99065742]\n", + " [ 0.08638432 -0.12625153 0.98822988]\n", + " [ 0.12186779 -0.1255387 0.98457518]\n", + " [ 0.15664287 -0.12458735 0.97976579]\n", + " [ 0.19051132 -0.12340188 0.97389805]\n", + " [ 0.01419378 -0.09110536 0.9957401 ]\n", + " [ 0.0506935 -0.09094551 0.99456477]\n", + " [ 0.08689379 -0.09060732 0.9920886 ]\n", + " [ 0.12258434 -0.09009413 0.98836032]\n", + " [ 0.15756175 -0.08941017 0.98345316]\n", + " [ 0.19162897 -0.08855947 0.97746384]\n", + " [ 0.0142499 -0.05473209 0.99839939]\n", + " [ 0.05089361 -0.05463571 0.99720849]\n", + " [ 0.08723571 -0.05443186 0.9946995 ]\n", + " [ 0.12306478 -0.05412272 0.99092169]\n", + " [ 0.15817704 -0.05371108 0.98594885]\n", + " [ 0.19237609 -0.05319971 0.97987817]\n", + " [ 0.01427798 -0.01803407 0.99973542]\n", + " [ 0.05099373 -0.01800225 0.99853671]\n", + " [ 0.08740674 -0.01793496 0.99601124]\n", + " [ 0.12330495 -0.01783294 0.99220858]\n", + " [ 0.15848438 -0.01769716 0.98720287]\n", + " [ 0.1927489 -0.01752858 0.98109154]]\n", + "DEBUG:root:radec2pix: curVec Shape: (96, 3)\n", + "DEBUG:root:radec2pix: xyfp: [[32.2358199 31.31614388]\n", + " [32.23338667 26.92971599]\n", + " [32.23095344 22.54328809]\n", + " [32.2285202 18.15686019]\n", + " [32.22608698 13.7704323 ]\n", + " [32.22365375 9.3840044 ]\n", + " [32.22122051 4.99757651]\n", + " [32.21878728 0.61114861]\n", + " [32.2358199 31.31614388]\n", + " [27.849392 31.31857712]\n", + " [23.46296411 31.32101035]\n", + " [19.07653621 31.32344358]\n", + " [14.69010831 31.3258768 ]\n", + " [10.30368042 31.32831004]\n", + " [ 5.91725252 31.33074327]\n", + " [ 1.53082462 31.3331765 ]\n", + " [32.21878728 0.61114861]\n", + " [27.83235938 0.61358184]\n", + " [23.44593149 0.61601507]\n", + " [19.0595036 0.6184483 ]\n", + " [14.6730757 0.62088153]\n", + " [10.2866478 0.62331476]\n", + " [ 5.90021991 0.625748 ]\n", + " [ 1.513792 0.62818122]\n", + " [ 1.53082462 31.3331765 ]\n", + " [ 1.52839139 26.94674861]\n", + " [ 1.52595816 22.5603207 ]\n", + " [ 1.52352493 18.17389281]\n", + " [ 1.5210917 13.78746492]\n", + " [ 1.51865847 9.40103702]\n", + " [ 1.51622524 5.01460912]\n", + " [ 1.513792 0.62818122]\n", + " [32.219759 29.4036525 ]\n", + " [32.21677684 24.02765333]\n", + " [32.21379467 18.65165415]\n", + " [32.21081251 13.27565498]\n", + " [32.20783035 7.89965581]\n", + " [32.20484818 2.52365664]\n", + " [30.32331188 31.30220479]\n", + " [24.9473127 31.30518695]\n", + " [19.57131353 31.30816912]\n", + " [14.19531435 31.31115127]\n", + " [ 8.81931518 31.31413344]\n", + " [ 3.44331601 31.3171156 ]\n", + " [30.3062959 0.62720951]\n", + " [24.93029672 0.63019167]\n", + " [19.55429755 0.63317383]\n", + " [14.17829838 0.636156 ]\n", + " [ 8.80229921 0.63913816]\n", + " [ 3.42630004 0.64212033]\n", + " [ 1.54476372 29.42066847]\n", + " [ 1.54178156 24.0446693 ]\n", + " [ 1.53879939 18.66867013]\n", + " [ 1.53581723 13.29267096]\n", + " [ 1.53283507 7.91667178]\n", + " [ 1.5298529 2.54067261]\n", + " [32.22081158 31.30115221]\n", + " [32.22081158 31.30115221]\n", + " [ 1.52880032 0.6431729 ]\n", + " [ 1.52880032 0.6431729 ]\n", + " [30.32225929 29.40470508]\n", + " [24.94626012 29.40768724]\n", + " [19.57026095 29.41066941]\n", + " [14.19426178 29.41365157]\n", + " [ 8.8182626 29.41663373]\n", + " [ 3.44226343 29.4196159 ]\n", + " [30.31927713 24.02870591]\n", + " [24.94327796 24.03168807]\n", + " [19.56727878 24.03467023]\n", + " [14.19127961 24.0376524 ]\n", + " [ 8.81528044 24.04063456]\n", + " [ 3.43928127 24.04361672]\n", + " [30.31629496 18.65270673]\n", + " [24.9402958 18.6556889 ]\n", + " [19.56429662 18.65867106]\n", + " [14.18829744 18.66165322]\n", + " [ 8.81229827 18.66463538]\n", + " [ 3.4362991 18.66761755]\n", + " [30.31331281 13.27670756]\n", + " [24.93731363 13.27968972]\n", + " [19.56131446 13.28267189]\n", + " [14.18531529 13.28565406]\n", + " [ 8.80931611 13.28863621]\n", + " [ 3.43331694 13.29161838]\n", + " [30.31033064 7.90070839]\n", + " [24.93433147 7.90369055]\n", + " [19.55833229 7.DEBUG:root:radec2pix: xyfp: [[ 0.173161 -31.45819714]\n", + " [ 0.17304708 -27.07176857]\n", + " [ 0.17293316 -22.68534 ]\n", + " [ 0.17281925 -18.29891143]\n", + " [ 0.17270533 -13.91248287]\n", + " [ 0.17259141 -9.52605429]\n", + " [ 0.17247749 -5.13962573]\n", + " [ 0.17236358 -0.75319715]\n", + " [ 0.173161 -31.45819714]\n", + " [ 4.55958957 -31.45808322]\n", + " [ 8.94601814 -31.45796931]\n", + " [ 13.33244671 -31.45785538]\n", + " [ 17.71887528 -31.45774147]\n", + " [ 22.10530385 -31.45762756]\n", + " [ 26.49173242 -31.45751363]\n", + " [ 30.87816099 -31.45739971]\n", + " [ 0.17236358 -0.75319715]\n", + " [ 4.55879215 -0.75308323]\n", + " [ 8.94522072 -0.75296932]\n", + " [ 13.33164929 -0.7528554 ]\n", + " [ 17.71807786 -0.75274148]\n", + " [ 22.10450643 -0.75262756]\n", + " [ 26.490935 -0.75251364]\n", + " [ 30.87736356 -0.75239973]\n", + " [ 30.87816099 -31.45739971]\n", + " [ 30.87804707 -27.07097114]\n", + " [ 30.87793315 -22.68454257]\n", + " [ 30.87781924 -18.29811401]\n", + " [ 30.87770532 -13.91168544]\n", + " [ 30.87759141 -9.52525687]\n", + " [ 30.87747749 -5.1388283 ]\n", + " [ 30.87736356 -0.75239973]\n", + " [ 0.18811133 -29.54569675]\n", + " [ 0.18797171 DEBUG:root:radec2pix: camVec: [[ 0.00162968 0.00164392 0.00165615 0.00166636 0.0016745 0.00168051\n", + " 0.00168433 0.00168589 0.00162968 0.03065921 0.0595691 0.08824658\n", + " 0.11657974 0.14445783 0.17177197 0.1984171 0.00168589 0.03171597\n", + " 0.06161834 0.09127522 0.12057355 0.14940474 0.17766265 0.205241\n", + " 0.1984171 0.20017053 0.20167036 0.20291139 0.20389075 0.20460646\n", + " 0.20505694 0.205241 0.00173588 0.00175296 0.00176683 0.00177741\n", + " 0.00178459 0.00178824 0.01429458 0.04980805 0.08502967 0.11975303\n", + " 0.15377432 0.1868945 0.0147871 0.05152109 0.08794575 0.12385093\n", + " 0.15903647 0.19330699 0.19912208 0.20110045 0.20269257 0.20389226\n", + " 0.20469584 0.20510055 0.00172908 0.00172908 0.20514779 0.20514779\n", + " 0.01435076 0.05000388 0.08536435 0.12022547 0.15438306 0.18763689\n", + " 0.01449201 0.05049589 0.08620426 0.1214098 0.15590842 0.18949858\n", + " 0.01460664 0.05089468 0.08688344 0.12236492 0.15713605 0.19099623\n", + " 0.0146941 0.05119852 0.08739951 0.12308827 0.15806297 0.19212497\n", + " 0.01475342 0.05140434 0.08774826 0.12357559 0.15868553 0.19288138\n", + " 0.01478357 0.05150885 0.08792506 0.1238221 0.15899976 0.19326249]\n", + " [-0.20886687 -0.18138669 -0.15321267 -0.12445123 -0.0952084 -0.06559229\n", + " -0.03571531 -0.00569466 -0.20886687 -0.20871575 -0.20829328 -0.20760055\n", + " -0.20663909 -0.20541086 -0.20391875 -0.20216791 -0.00569466 -0.00569039\n", + " -0.0056785 -0.00565918 -0.00563263 -0.00559908 -0.00555867 -0.00551146\n", + " -0.20216791 -0.17558603 -0.14832064 -0.12047648 -0.09216227 -0.06348867\n", + " -0.03456748 -0.00551146 -0.19697755 -0.16281769 -0.12772153 -0.09188434\n", + " -0.05550542 -0.01879375 -0.20874173 -0.20837407 -0.20760004 -0.20642226\n", + " -0.2048444 -0.20287264 -0.00579649 -0.00578593 -0.0057639 -0.00573078\n", + " -0.00568698 -0.00563273 -0.19067465 -0.1576223 -0.12364673 -0.08894663\n", + " -0.05372559 -0.0181899 -0.20877415 -0.20877415 -0.0056111 -0.0056111\n", + " -0.19694699 -0.19660038 -0.19587092 -0.19476145 -0.19327535 -0.19141752\n", + " -0.16279237 -0.16250539 -0.1619024 -0.1609872 -0.15976346 -0.15823425\n", + " -0.12770151 -0.1274748 -0.12699943 -0.12628004 -0.12532102 -0.12412508\n", + " -0.09186978 -0.09170505 -0.09136033 -0.09084026 -0.09014925 -0.08928993\n", + " -0.05549654 -0.05539609 -0.05518622 -0.05487037 -0.05445187 -0.05393273\n", + " -0.01879073 -0.01875652 -0.01868512 -0.01857781 -0.01843585 -0.01826001]\n", + " [ 0.97794273 0.98341048 0.98819185 0.99222433 0.99545595 0.99784509\n", + " 0.99936059 0.99998236 0.97794273 0.97749565 0.9762507 0.9742251\n", + " 0.97144709 0.96795574 0.96380057 0.95904056 0.99998236 0.99948072\n", + " 0.99808363 0.99580962 0.99268842 0.98876027 0.98407575 0.97869595\n", + " 0.95904056 0.96389901 0.96815807 0.97175737 0.97464592 0.97678318\n", + " 0.97813943 0.97869595 0.98040646 0.98665461 0.99180849 0.9957681\n", + " 0.99845679 0.99982178 0.97786633 0.97678012 0.97451125 0.97110713\n", + " 0.96663966 0.961204 0.99987386 0.99865515 0.99610859 0.99228429\n", + " 0.98725633 0.98112215 0.96124585 0.96680599 0.97140476 0.97494433\n", + " 0.97735008 0.97857186 0.97796235 0.97796235 0.97871492 0.97871492\n", + " 0.9803091 0.97920779 0.97690711 0.97345458 0.96892234 0.96340632\n", + " 0.98655391 0.98541472 0.9830343 0.97946045 0.97476571 0.96904706\n", + " 0.99170508 0.99053516 0.98809029 0.9844187 0.97959323 0.97371115\n", + " 0.99566261 0.99446915 0.99197511 0.98822939 0.98330525 0.97730001\n", + " 0.99834987 0.99714035 0.99461285 0.99081699 0.9858265 0.97973876\n", + " 0.99971414 0.99849639 0.99595183 0.99213051 0.98710648 0.98097716]]\n", + "-24.16969676]\n", + " [ 0.1878321 -18.79369675]\n", + " [ 0.18769248 -13.41769676]\n", + " [ 0.18755286 -8.04169676]\n", + " [ 0.18741324 -2.66569676]\n", + " [ 2.08566061 -31.44314748]\n", + " [ 7.46166061 -31.44300785]\n", + " [ 12.83766061 -31.44286824]\n", + " [ 18.2136606 -31.44272862]\n", + " [ 23.5896606 -31.442589 ]\n", + " [ 28.9656606 -31.44244938]\n", + " [ 2.08486397 -0.76814748]\n", + " [ 7.46086396 -0.76800786]\n", + " [ 12.83686396 -0.76786825]\n", + " [ 18.21286396 -0.76772863]\n", + " [ 23.58886395 -0.76758901]\n", + " [ 28.96486395 -0.7674494 ]\n", + " [ 30.86311132 -29.54490011]\n", + " [ 30.86297171 -24.16890011]\n", + " [ 30.86283209 -18.79290011]\n", + " [ 30.86269247 -13.41690011]\n", + " [ 30.86255285 -8.04090011]\n", + " [ 30.86241323 -2.66490012]\n", + " [ 0.18816061 -31.44319675]\n", + " [ 0.18816061 -31.44319675]\n", + " [ 30.86236396 -0.76740012]\n", + " [ 30.86236396 -0.76740012]\n", + " [ 2.08561133 -29.54564748]\n", + " [ 7.46161133 -29.54550785]\n", + " [ 12.83761133 -29.54536824]\n", + " [ 18.21361133 -29.54522862]\n", + " [ 23.58961132 -29.545089 ]\n", + " [ 28.96561132 -29.54494938]\n", + " [ 2.08547171 -24.16964747]\n", + " [ 7.46147171 -24.16950786]\n", + " [ 12.83747171 -24.16936824]\n", + " [ 18.21347171 -24.16922862]\n", + " [ 23.58947171 -24.16908901]\n", + " [ 28.9654717 -24.16894939]\n", + " [ 2.0853321 -18.79364747]\n", + " [ 7.46133209 -18.79350785]\n", + " [ 12.83733209 -18.79336824]\n", + " [ 18.21333209 -18.79322862]\n", + " [ 23.58933209 -18.79308901]\n", + " [ 28.96533209 -18.79294939]\n", + " [ 2.08519248 -13.41764748]\n", + " [ 7.46119248 -13.41750786]\n", + " [ 12.83719247 -13.41736824]\n", + " [ 18.21319248 -13.41722863]\n", + " [ 23.58919247 -13.41708901]\n", + " [ 28.96519247 -13.41694939]\n", + " [ 2.08505286 -8.04164748]\n", + " [ 7.46105286 -8.04150786]\n", + " [ 12.83705286 -8.04136825]\n", + " [ 18.21305286 -8.04122863]\n", + " [ 23.58905286 -8.04108901]\n", + " [ 28.96505285 -8.04094939]\n", + " [ 2.08491324 -2.66564748]\n", + " [ 7.46091324 -2.66550786]\n", + " [ 12.83691324 -2.66536825]\n", + " [ 18.21291324 -2.66522863]\n", + " [ 23.58891323 -2.66508901]\n", + " [ 28.96491324 -2.66494939]]\n", + "DEBUG:root:optics_fp: sphi: [0.99998485 0.99997957 0.99997095 0.99995541 0.99992296 0.99983591\n", + " 0.99943739 0.97480106 0.99998485 0.9896586 0.96186222 0.92072178\n", + " 0.87129259 0.81819238 0.76489689 0.7136466 0.97480106 0.16298472\n", + " 0.08387896 0.05638146 0.04244609 0.03402888 0.028395 0.02436013\n", + " 0.7136466 0.65923088 0.59205464 0.50980542 0.41077515 0.29477725\n", + " 0.16416841 0.02436013 0.99997973 0.99996976 0.99995006 0.99990218\n", + " 0.99972814 0.99753769 0.99780732 0.97297865 0.92580811 0.86530722\n", + " 0.79990573 0.73548088 0.34572109 0.10239711 0.0597107 0.0421157\n", + " 0.0325231 0.02648658 0.69151182 0.61654981 0.52008483 0.39868458\n", + " 0.25212242 0.08602764 0.9999821 0.9999821 0.02485756 0.02485756\n", + " 0.99751784 0.96955881 0.91716312 0.8512474 0.7814679 0.71407315\n", + " 0.99629813 0.95550412 0.88315364 0.79862516 0.71563581 0.64067012\n", + " 0.99390027 0.92942982 0.82574293 0.71809906 0.6231092 0.5442854\n", + " 0.9881388 0.87396305 0.72255609 0.59311256 0.49440321 0.4203077\n", + " 0.9679916 0.73306896 0.53086315 0.40389491 0.32265115 0.26749257\n", + " 0.78768362 0.33643669 0.20329713 0.14479515 0.11226633 0.09161916]\n", + "DEBUG:root:radec2pix: camVec Shape: (3, 96)\n", + "DEBUG:root:radec2pix: fitpx: [[4271.50000008 4155.50000008]\n", + " [4271.50000011 3863.07142867]\n", + " [4271.50000027 3570.64285733]\n", + " [4271.49999971 3278.21428555]\n", + " [4271.50000017 2985.78571436]\n", + " [4271.4999997 2693.35714277]\n", + " [4271.5000001 2400.92857145]\n", + " [4271.49999983 2108.5 ]\n", + " [4271.50000008 4155.50000008]\n", + " [3979.07142843 4155.49999984]\n", + " [3686.64285723 4155.50000011]\n", + " [3394.21428586 4155.50000024]\n", + " [3101.78571417 4155.49999975]\n", + " [2809.35714282 4155.49999988]\n", + " [2516.92857139 4155.49999979]\n", + " [2224.5 4155.50000004]\n", + " [4271.49999983 2108.5 ]\n", + " [3979.07142844 2108.5 ]\n", + " [3686.64285726 2108.5 ]\n", + " [3394.21428608 2108.50000001]\n", + " [3101.7857142 2108.5 ]\n", + " [2809.35714302 2108.50000001]\n", + " [2516.92857112 2108.49999996]\n", + " [2224.50000006 2108.50000003]\n", + " [2224.5 4155.50000004]\n", + " [2224.49999999 3863.07142838]\n", + " [2224.49999998 3570.64285685]\n", + " [2224.50000004 3278.21428613]\n", + " [2224.49999996 2985.78571394]\n", + " [2224.50000004 2693.35714312]\n", + " [2224.49999998 2400.92857136]\n", + " [2224.50000006 2108.50000003]\n", + " [4270.50000017 4028.00000015]\n", + " [4270.49999995 3669.59999996]\n", + " [4270.49999992 3311.19999995]\n", + " [4270.50000022 2952.80000009]\n", + " [4270.50000024 2594.40000006]\n", + " [4270.49999979 2235.99999998]\n", + " [4144.00000027 4154.50000028]\n", + " [3785.60000021 4154.50000026]\n", + " [3427.20000003 4154.50000005]\n", + " [3068.79999988 4154.49999973]\n", + " [2710.40000006 4154.50000022]\n", + " [2351.99999998 4154.4999998 ]\n", + " [4144.00000013 2109.5 ]\n", + " [3785.6 2109.5 ]\n", + " [3427.19DEBUG:root:optics_fp: rtanth: [45.08354623 42.13009767 39.44420909 37.08406184 35.11539785 33.60708557\n", + " 32.6230401 32.21134587 45.08354623 42.06280558 39.30031295 36.85418691\n", + " 34.79122159 33.18295674 32.09781375 31.58974814 32.21134587 27.8266828\n", + " 23.4426803 19.05979422 14.67902457 10.30307141 5.94258442 1.71954938\n", + " 31.58974814 27.2090275 22.83049885 18.45572241 14.0881941 9.73767156\n", + " 5.44507054 1.71954938 43.75525849 40.30775232 37.31902868 34.90712904\n", + " 33.19801449 32.30342747 43.72724359 40.19104921 37.09948507 34.57203928\n", + " 32.73962065 31.72289982 30.29997699 24.92663654 19.55475813 14.18600274\n", + " 8.82607125 3.51555769 29.68028893 24.31279095 18.95011366 13.59796176\n", + " 8.27677911 3.14775039 45.06233412 45.06233412 1.74001001 1.74001001\n", + " 42.37901039 38.71988024 35.50042932 32.85018402 30.91587699 29.8370753\n", + " 38.80944181 34.77673616 31.15241137 28.09496116 25.80666004 24.50394488\n", + " 35.69548681 31.26365913 27.1747629 23.607665 20.83215559 19.19474717\n", + " 33.16572831 28.34103278 23.75427319 19.57344126 16.11758242 13.93686031\n", + " 31.36185649 26.20714877 21.16284486 16.33156793 11.97401233 8.82250437\n", + " 30.41330799 25.06427551 19.72990783 14.4264816 9.20761812 4.38632462]\n", + "999974 2109.49999999]\n", + " [3068.8 2109.5 ]\n", + " [2710.39999984 2109.49999999]\n", + " [2351.99999972 2109.49999994]\n", + " [2225.5 4027.99999997]\n", + " [2225.50000002 3669.60000025]\n", + " [2225.50000002 3311.20000025]\n", + " [2225.50000004 2952.80000031]\n", + " [2225.50000002 2594.40000011]\n", + " [2225.50000016 2236.00000026]\n", + " [4270.49999974 4154.49999975]\n", + " [4270.49999974 4154.49999975]\n", + " [2225.50000003 2109.50000001]\n", + " [2225.50000003 2109.50000001]\n", + " [4143.99999996 4027.99999996]\n", + " [3785.60000018 4028.00000021]\n", + " [3427.19999989 4027.99999984]\n", + " [3068.80000004 4028.00000009]\n", + " [2710.39999997 4027.9999999 ]\n", + " [2351.99999997 4027.99999976]\n", + " [4144.00000024 3669.60000019]\n", + " [3785.60000022 3669.60000021]\n", + " [3427.19999988 3669.59999985]\n", + " [3068.80000005 3669.60000008]\n", + " [2710.39999999 3669.59999998]\n", + " [2352. 3669.60000003]\n", + " [4144DEBUG:root:radec2pix: camVec: [[-0.00108623 -0.00110818 -0.00112898 -0.00114857 -0.00116686 -0.00118378\n", + " -0.00119922 -0.00121312 -0.00108623 -0.03008973 -0.05897582 -0.08763213\n", + " -0.11594722 -0.14381054 -0.17111212 -0.19774215 -0.00121312 -0.0312253\n", + " -0.06111305 -0.09075893 -0.12004913 -0.1488739 -0.17712688 -0.20470344\n", + " -0.19774215 -0.19951656 -0.20103291 -0.2022905 -0.20328809 -0.20402394\n", + " -0.20449622 -0.20470344 -0.00119558 -0.00122271 -0.00124786 -0.00127089\n", + " -0.00129164 -0.00130994 -0.01373956 -0.04922259 -0.08441749 -0.11911871\n", + " -0.1531227 -0.18622706 -0.01430615 -0.05102028 -0.08743049 -0.12332566\n", + " -0.15850368 -0.19276957 -0.19845732 -0.20045757 -0.20206974 -0.20329178\n", + " -0.20412054 -0.20455274 -0.00118556 -0.00118556 -0.20461015 -0.20461015\n", + " -0.01379915 -0.04942232 -0.08475642 -0.11959564 -0.15373662 -0.18697743\n", + " -0.01395111 -0.04992687 -0.08561039 -0.12079486 -0.15527748 -0.18885795\n", + " -0.0140777 -0.05033965 -0.08630574 -0.12176792 -0.15652378 -0.19037482\n", + " -0.014190667271]\n", + " [14.18233312 7.90965488]\n", + " [ 8.80633395 7.91263704]\n", + " [ 3.43033477 7.9156192 ]\n", + " [30.30734847 2.52470921]\n", + " [24.9313493 2.52769138]\n", + " [19.55535013 2.53067354]\n", + " [14.17935096 2.53365571]\n", + " [ 8.80335178 2.53663787]\n", + " [ 3.42735261 2.53962004]]\n", + "7814 -0.05065827 -0.08683905 -0.12251113 -0.15747231 -0.19152571\n", + " -0.0142515 -0.05087978 -0.08720594 -0.12301955 -0.15811848 -0.19230704\n", + " -0.01429691 -0.0510015 -0.08740238 -0.12328852 -0.15845779 -0.19271515]\n", + " [ 0.20994474 0.18250974 0.15437814 0.12565449 0.09644464 0.0668576\n", + " 0.03700641 0.00700791 0.20994474 0.20980966 0.20940234 0.20872399\n", + " 0.20777622 0.20656061 0.20507835 0.20333011 0.00700791 0.00701559\n", + " 0.00701392 0.00700302 0.00698305 0.00695418 0.00691659 0.00687038\n", + " 0.20333011 0.17679323 0.14956333 0.12175011 0.09346339 0.06481351\n", + " 0.03591173 0.00687038 0.19807534 0.16396932 0.12892083 0.09312409\n", + " 0.05677987 0.02009792 0.20982687 0.20947825 0.20872203 0.20756102\n", + " 0.20599809 0.20403521 0.00711509 0.00711803 0.00710683 0.00708177\n", + " 0.0070432 0.00699139 0.19185821 0.1588536 0.12491703 0.09025061\n", + " 0.0550575 0.01954302 0.20985223 0.20985223 0.00696998 0.00696998\n", + " 0.19805172 0.19772367 0.19701128 0.19591776 0.19444643 0.19259955\n", + " 0.16395068 0.1636812 0.16309354 0.16219177 0.16098028 0.15946229\n", + " 0.12890725 0.1286975 0.12823673 0.12752928 0.12657997 0.12539259\n", + " 0.09311572 0.09296747 0.092637 0.09212815 0.0914453 0.09059206\n", + " 0.05677687 0.05669199 0.05649545 0.05618991 0.05577844 0.0552636\n", + " 0.02010041 0.0200803 0.02002048 0.0199219 0.01978566 0.01961272]\n", + " [ 0.97771265 0.98320342 0.98801119 0.9920734 0.99533767 0.99776183\n", + " 0.99931431 0.99997471 0.97771265 0.97727914 0.97604944 0.97404051\n", + " 0.97128023 0.96780744 0.96367189 0.95893426 0.99997471 0.99948775\n", + " 0.99810621 0.99584827 0.99274339 0.98883174 0.98416372 0.97879993\n", + " 0.95893426 0.96381393 0.96809947 0.97172808 0..00000009 3311.20000006]\n", + " [3785.60000001 3311.20000001]\n", + " [3427.20000009 3311.20000009]\n", + " [3068.80000003 3311.20000004]\n", + " [2710.40000012 3311.20000025]\n", + " [2351.99999998 3311.19999988]\n", + " [4143.99999976 2952.79999989]\n", + " [3785.59999985 2952.79999992]\n", + " [3427.19999969 2952.79999979]\n", + " [3068.79999997 2952.79999997]\n", + " [2710.40000016 2952.80000025]\n", + " [2352.00000009 2952.80000036]\n", + " [4143.99999979 2594.39999994]\n", + " [3785.60000002 2594.40000001]\n", + " [3427.20000024 2594.4000001 ]\n", + " [3068.80000002 2594.40000001]\n", + " [2710.40000021 2594.40000019]\n", + " [2351.99999998 2594.39999995]\n", + " [4144.00000008 2236.00000001]\n", + " [3785.60000005 2236.00000001]\n", + " [3427.20000007 2236.00000001]\n", + " [3068.79999979 2235.99999996]\n", + " [2710.39999971 2235.99999991]\n", + " [2351.99999979 2235.99999984]]\n", + "97464791 0.97681802\n", + " 0.97820838 0.97879993 0.98018607 0.98646468 0.9916541 0.9956537\n", + " 0.99838589 0.99979716 0.97764201 0.9765736 0.97432479 0.97094241\n", + " 0.96649792 0.96108746 0.99987235 0.99867225 0.99614527 0.99234098\n", + " 0.98733327 0.98121915 0.96114781 0.96673797 0.971372 0.97494989\n", + " 0.97739627 0.97866043 0.97773239 0.97773239 0.97881873 0.97881873\n", + " 0.98009443 0.97901113 0.97673072 0.97330012 0.96879081 0.96329894\n", + " 0.98636988 0.98524909 0.98288929 0.97933775 0.97466623 0.96897082\n", + " 0.99155673 0.99040541 0.9879811 0.98433168 0.97952939 0.97367044\n", + " 0.99555434 0.9943796 0.99190593 0.98818188 0.98328034 0.97729779\n", + " 0.99828517 0.99709441 0.99458704 0.99081223 0.98584345 0.97977749\n", + " 0.99969574 0.99849668 0.99597189 0.99217088 0.98716749 0.98105872]]\n", + "DEBUG:root:fitpix2pix: ccdpx: shape: (96, 2)\n", + "DEBUG:root:radec2pix: lng: [270.31539085 270.36655189 270.43752447 270.542579 270.71402077\n", + " 271.04383538 271.93968007 283.48101478 270.31539085 278.25496108\n", + " 285.88944585 292.98836581 299.41482725 305.12212741 310.12974078\n", + " 314.49549071 283.48101478 351.00638008 355.38819591 356.90183998\n", + " 357.66783206 358.13024629 358.43966874 358.66123705 314.49549071\n", + " 318.7910165 323.73421549 329.3915583 335.79415496 342.90819266\n", + " 350.6068072 358.66123705 270.36494598 270.44622312 270.57407396\n", + " 270.80460183 271.34445266 274.08218667 273.79842993 283.36234739\n", + " 292.22915231 300.10657084 306.9058095 312.67997848 340.54617186\n", + " 354.36185807 356.71594406 357.68400903 358.21142556 358.54322592\n", + " 316.27981968 321.97083668 328.70389405 336.55230838 345.45057848\n", + " 355.12169333 270.34290102 270.34290102 358.63275532 358.63275532\n", + " 274.04185073 284.1877247 293.50716352 301.67919787 308.63398936\n", + " 314.46249394 274.93799638 287.17724528 298.00560006 307.03649051\n", + " 314.34141513 320.19418356 276.34264386 291.68718176 304.38086955\n", + " 314.14993264 321.50269119 327.06723776 278.85521862 299.13552131\n", + " 313.8014816 323.6857401 330.42677291 335.19643967 284.59338686\n", + " 312.96912569 328.03736148 336.26056332 341.24440919 344.5417427\n", + " 308.36945368 340.55550723 348.40444495 351.77067409 353.62846105\n", + " 354.80381648]\n", + "DEBUG:root:fitpix2pix: visCut: True\n", + "DEBUG:root:optics_fp: cphi: [0.71431368 0.76437722 0.81641337 0.86835883 0.91702693 0.95816873\n", + " 0.9870555 0.99965535 0.71431368 0.66132929 0.5962023 0.51675291\n", + " 0.42131547 0.30954599 0.18335276 0.04744559 0.99965535 0.9995376\n", + " 0.99934763 0.99901176 0.99833132 0.99660587 0.98975 0.86955594\n", + " 0.04744559 0.05506581 0.06560435 0.08112784 0.10624255 0.15365671\n", + " 0.27469828 0.86955594 0.73565039 0.79855486 0.86249109 0.9220669\n", + " 0.96951843 0.99634831 0.69273272 0.61992142 0.52667287 0.40967477\n", + " 0.26839934 0.10753407 0.99959633 0.99940262 0.99902775 0.99814911\n", + " 0.99520453 0.969333 0.0509959 0.06222863 0.07980586 0.1111717\n", + " 0.18256945 0.47985554 0.71431702 0.71431702 0.86795254 0.86795254\n", + " 0.71476593 0.64346978 0.55038977 0.43114136 0.28422526 0.11432331\n", + " 0.78049181 0.71641143 0.62718906 0.50409223 0.34047225 0.13917969\n", + " 0.84856189 0.79689424 0.71896966 0.59988271 0.42174368 0.17764392\n", + " 0.9132683 0.87905083 0.82247132 0.72349099 0.54506987 0.24461812\n", + " 0.96577787 0.95060272 0.92315504 0.86706843 0.73363771 0.38635141\n", + " 0.99587869 0.99392322 0.99017013 0.9815259 0.95398889 0.77695241]\n", + "DEBUG:root:optics_fp: xyfp: [[ 0.173161 -31.45819714]\n", + " [ 0.17304708 -27.07176857]\n", + " [ 0.17293316 -22.68534 ]\n", + " [ 0.17281925 -18.29891143]\n", + " [ 0.17270533 -13.91248287]\n", + " [ 0.17259141 -9.52605429]\n", + " [ 0.17247749 -5.13962573]\n", + " [ 0.17236358 -0.75319715]\n", + " [ 0.173161 -31.45819714]\n", + " [ 4.55958957 -31.45808322]\n", + " [ 8.94601814 -31.45796931]\n", + " [ 13.33244671 -31.45785538]\n", + " [ 17.71887528 -31.45774147]\n", + " [ 22.10530385 -31.45762756]\n", + " [ 26.49173242 -31.45751363]\n", + " [ 30.87816099 -31.45739971]\n", + " [ 0.17236358 -0.75319715]\n", + " [ 4.55879215 -0.75308323]\n", + " [ 8.94522072 -0.75296932]\n", + " [ 13.33164929 -0.7528554 ]\n", + " [ 17.71807786 -0.75274148]\n", + " [ 22.10450643 -0.75262756]\n", + " [ 26.490935 -0.75251364]\n", + " [ 30.87736356 -0.75239973]\n", + " [ 30.87816099 -31.45739971]\n", + " [ 30.87804707 -27.07097114]\n", + " [ 30.87793315 -22.68454257]\n", + " [ 30.87781924 -18.29811401]\n", + " [ 30.87770532 -13.91168544]\n", + " [ 30.87759141 -9.52525687]\n", + " [ 30.87747749 -5.1388283 ]\n", + " [ 30.87736356 -0.75239973]\n", + " [ 0.18811133 -29.54569675]\n", + " [ 0.18797171 -24.16969676]\n", + " [ 0.1878321 -18.79369675]\n", + " [ 0.18769248 -13.41769676]\n", + " [ 0.18755286 -8.04169676]\n", + " [ 0.18741324 -2.66569676]\n", + " [ 2.08566061 -31.44314748]\n", + " [ 7.46166061 -31.44300785]\n", + " [ 12.83766061 -31.44286824]\n", + " [ 18.2136606 -31.44272862]\n", + " [ 23.5896606 -31.442589 ]\n", + " [ 28.9656606 -31.44244938]\n", + " [ 2.08486397 -0.76814748]\n", + " [ 7.46086396 -0.76800786]\n", + " [ 12.83686396 -0.76786825]\n", + " [ 18.21286396 -0.76772863]\n", + " [ 23.58886395 -0.76758901]\n", + " [ 28.96486395 -0.7674494 ]\n", + " [ 30.86311132 -29.54490011]\n", + " [ 30.86297171 -24.16890011]\n", + " [ 30.86283209 -18.79290011]\n", + " [ 30.86269247 -13.41690011]\n", + " [ 30.86255285 -8.04090011]\n", + " [ 30.86241323 -2.66490012]\n", + " [ 0.18816061 -31.44319675]\n", + " [ 0.18816061 -31.44319675]\n", + " [ 30.86236396 -0.76740012]\n", + " [ 30.86236396 -0.76740012]\n", + " [ 2.08561133 -29.54564748]\n", + " [ 7.46161133 -29.54550785]\n", + " [ 12.83761133 -29.54536824]\n", + " [ 18.21361133 -29.54522862]\n", + " [ 23.58961132 -29.545089 ]\n", + " [ 28.96561132 -29.54494938]\n", + " [ 2.085DEBUG:root:radec2pix: camVec Shape: (3, 96)\n", + "DEBUG:root:radec2pix: lat: [77.98725933 79.59290201 81.23038669 82.89455027 84.58030503 86.2825061\n", + " 87.99575217 89.70880341 77.98725933 77.86842442 77.53699463 77.01330297\n", + " 76.32579246 75.50615888 74.58567435 73.59317035 89.70880341 88.18955545\n", + " 86.48562338 84.78529769 83.09901991 81.43298752 79.79264001 78.18327445\n", + " 73.59317035 74.60559591 75.5496878 76.3965297 77.11433871 77.67029216\n", + " 78.03413945 78.18327445 78.68303826 80.67298244 82.70560399 84.77150761\n", + " 86.86118368 88.96388538 77.96782959 77.67716345 77.0861016 76.24391961\n", + " 75.20859077 74.03673952 89.13217661 87.06213831 84.97619114 82.90974635\n", + " 80.87458441 78.88067366 74.04491662 75.24365824 76.31136856 77.19067025\n", + " 77.8215059 78.15105181 77.99265855 77.99265855 78.18859038 78.18859038\n", + " 78.65635764 78.34456159 77.7133866 76.81969543 75.7283623 74.50063549\n", + " 80.63959245 80.25225497 79.48245907 78.41882236 77.15141692 75.75558792\n", + " 82.66188886 82.16191851 81.200562 79.92354945 78.45441908 76.88031771\n", + " 84.70956295 84.0235478 82.78807615 81.24955295 79.56251519 77.81300601\n", + " 86.75780924 85.71788826 84.09815339 82.27374035 80.38380312 78.4866344\n", + " 88.68197076 86.90004071 84.8808155 82.84304634 80.82390053 78.84030268]\n", + "DEBUG:root:cartToSphere: vec: [[ 0.00162968 -0.20886687 0.97794273]\n", + " [ 0.00164392 -0.18138669 0.98341048]\n", + " [ 0.00165615 -0.15321267 0.98819185]\n", + " [ 0.00166636 -0.12445123 0.99222433]\n", + " [ 0.0016745 -0.0952084 0.99545595]\n", + " [ 0.00168051 -0.06559229 0.99784509]\n", + " [ 0.00168433 -0.03571531 0.99936059]\n", + " [ 0.00168589 -0.00569466 0.99998236]\n", + " [ 0.00162968 -0.20886687 0.97794273]\n", + " [ 0.03065921 -0.20871575 0.97749565]\n", + " [ 0.0595691 -0.20829328 0.9762507 ]\n", + " [ 0.08824658 -0.20760055 0.9742251 ]\n", + " [ 0.11657974 -0.20663909 0.97144709]\n", + " [ 0.14445783 -0.20541086 0.96795574]\n", + " [ 0.17177197 -0.20391875 0.96380057]\n", + " [ 0.1984171 -0.20216791 0.95904056]\n", + " [ 0.00168589 -0.00569466 0.99998236]\n", + " [ 0.03171597 -0.00569039 0.99948072]\n", + " [ 0.06161834 -0.0056785 0.9DEBUG:root:radec2pix: ccdpx: [[-4.45000000e+01 -4.99999973e-01]\n", + " [-4.45000000e+01 2.91928572e+02]\n", + " [-4.45000000e+01 5.84357143e+02]\n", + " [-4.45000000e+01 8.76785714e+02]\n", + " [-4.45000000e+01 1.16921429e+03]\n", + " [-4.45000000e+01 1.46164286e+03]\n", + " [-4.45000000e+01 1.75407143e+03]\n", + " [-4.45000000e+01 2.04650000e+03]\n", + " [-4.45000000e+01 -4.99999973e-01]\n", + " [ 2.47928571e+02 -4.99999766e-01]\n", + " [ 5.40357143e+02 -5.00000023e-01]\n", + " [ 8.32785714e+02 -4.99999798e-01]\n", + " [ 1.12521429e+03 -5.00000229e-01]\n", + " [ 1.41764286e+03 -5.00000231e-01]\n", + " [ 1.71007143e+03 -4.99999870e-01]\n", + " [ 2.00250000e+03 -4.99999884e-01]\n", + " [-4.45000000e+01 2.04650000e+03]\n", + " [ 2.47928571e+02 2.04650000e+03]\n", + " [ 5.40357143e+02 2.04650000e+03]\n", + " [ 8.32785714e+02 2.04650000e+03]\n", + " [ 1.12521429e+03 2.04650000e+03]\n", + " [ 1.41764286e+03 2.04650000e+03]\n", + " [ 1.71007143e+03 2.04650000e+03]\n", + " [ 2.00250000e+03 2.04650000e+03]\n", + " [ 2.00250000e+03 -4.99999884e-01]\n", + " [ 2.00250000e+03 2.91928572e+02]\n", + " [ 2.00250000e+03 5.84357143e+02]\n", + " [ 2.00250000e+03 8.7678547171 -24.16964747]\n", + " [ 7.46147171 -24.16950786]\n", + " [ 12.83747171 -24.16936824]\n", + " [ 18.21347171 -24.16922862]\n", + " [ 23.58947171 -24.16908901]\n", + " [ 28.9654717 -24.16894939]\n", + " [ 2.0853321 -18.79364747]\n", + " [ 7.46133209 -18.79350785]\n", + " [ 12.83733209 -18.79336824]\n", + " [ 18.21333209 -18.79322862]\n", + " [ 23.58933209 -18.79308901]\n", + " [ 28.96533209 -18.79294939]\n", + " [ 2.08519248 -13.41764748]\n", + " [ 7.46119248 -13.41750786]\n", + " [ 12.83719247 -13.41736824]\n", + " [ 18.21319248 -13.41722863]\n", + " [ 23.58919247 -13.41708901]\n", + " [ 28.96519247 -13.41694939]\n", + " [ 2.08505286 -8.04164748]\n", + " [ 7.46105286 -8.04150786]\n", + " [ 12.83705286 -8.04136825]\n", + " [ 18.21305286 -8.04122863]\n", + " [ 23.58905286 -8.04108901]\n", + " [ 28.96505285 -8.04094939]\n", + " [ 2.08491324 -2.66564748]\n", + " [ 7.46091324 -2.66550786]\n", + " [ 12.83691324 -2.66536825]\n", + " [ 18.21291324 -2.66522863]\n", + " [ 23.58891323 -2.66508901]\n", + " [ 28.96491324 -2.66494939]]\n", + "714e+02]\n", + " [ 2.00250000e+03 1.16921429e+03]\n", + " [ 2.00250000e+03 1.46164286e+03]\n", + " [ 2.00250000e+03 1.75407143e+03]\n", + " [ 2.00250000e+03 2.04650000e+03]\n", + " [-4.35000000e+01 1.27000000e+02]\n", + " [-4.35000000e+01 4.85400000e+02]\n", + " [-4.35000000e+01 8.43800000e+02]\n", + " [-4.35000000e+01 1.20220000e+03]\n", + " [-4.35000000e+01 1.56060000e+03]\n", + " [-4.35000000e+01 1.91900000e+03]\n", + " [ 8.30000000e+01 4.99999770e-01]\n", + " [ 4.41400000e+02 5.00000267e-01]\n", + " [ 7.99800000e+02 4.99999825e-01]\n", + " [ 1.15820000e+03 5.00000071e-01]\n", + " [ 1.51660000e+03 5.00000113e-01]\n", + " [ 1.87500000e+03 5.00000214e-01]\n", + " [ 8.30000000e+01 2.04550000e+03]\n", + " [ 4.41400000e+02 2.04550000e+03]\n", + " [ 7.99800000e+02 2.04550000e+03]\n", + " [ 1.15820000e+03 2.04550000e+03]\n", + " [ 1.51660000e+03 2.04550000e+03]\n", + " [ 1.87500000e+03 2.04550000e+03]\n", + " [ 2.00150000e+03 1.27000000e+02]\n", + " [ 2.00150000e+03 4.85400000e+02]\n", + " [ 2.00150000e+03 8.43800000e+02]\n", + " [ 2.00150000e+03 1.20220000e+03]\n", + " [ 2.00150000e+03 1.56060000e+03]\n", + " [ 2.00150000e+03 1.91900000e+03]\n", + " [-4.35000000e+01 5.00000284e-01]\n", + " [-4.35000000e+01 5.00000284e-01]\n", + " [ 2.00150000e+03 2.04550000e+03]\n", + " [ 2.00150000e+03 2.04550000e+03]\n", + " [ 8.30000000e+01 1.27000000e+02]\n", + " [ 4.41400000e+02 1.27000000e+02]\n", + " [ 7.99800000e+02 1.27000000e+02]\n", + " [ 1.15820000e+03 1.27000000e+02]\n", + " [ 1.51660000e+03 1.27000000e+02]\n", + " [ 1.87500000e+03 1.27000000e+02]\n", + " [ 8.30000000e+01 4.85400000e+02]\n", + " [ 4.41400000e+02 4.85400000e+02]\n", + " [ 7.99800000e+02 4.85400000e+02]\n", + " [ 1.15820000e+03 4.85400000e+02]\n", + " [ 1.51660000e+03 4.85400000e+02]\n", + " [ 1.87500000e+03 4.85400000e+02]\n", + " [ 8.30000000e+01 8.43800000e+02]\n", + " [ 4.41400000e+02 8.43800000e+02]\n", + " [ 7.99800000e+02 8.43800000e+02]\n", + " [ 1.15820000e+03 8.43800000e+02]\n", + " [ 1.51660000e+03 8.43800000e+02]\n", + " [ 1.87500000e+03 8.43800000e+02]\n", + " [ 8.30000000e+01 1.20220000e+03]\n", + " [ 4.41400000e+02 1.20220000e+03]\n", + " [ 7.99800000e+02 1.20220000e+03]\n", + " [ 1.15820000e+03 1.20220000e+03]\n", + " [ 1.51660000e+03 1.20220000e+03]\n", + " [ 1.87500000e+03 1.20220000e+03]\n", + " [ 8.30000000e+01 1.56060000e+03]\n", + " [ 4.41400000e+02 1.56060000e+03]\n", + " [ 7.99800000e+02 1.56060000e+03]\n", + " [ 1.15820000e+03 1.56060000e+03]\n", + " [ 1.51660000e+03 1.56060000DEBUG:root:optics_fp: xyfp shape: (96, 2)\n", + "DEBUG:root:radec2pix: ccdpx: [[-4.44999999e+01 -4.99999855e-01]\n", + " [-4.45000000e+01 2.91928571e+02]\n", + " [-4.45000000e+01 5.84357143e+02]\n", + " [-4.44999998e+01 8.76785714e+02]\n", + " [-4.45000001e+01 1.16921429e+03]\n", + " [-4.45000000e+01 1.46164286e+03]\n", + " [-4.45000000e+01 1.75407143e+03]\n", + " [-4.44999999e+01 2.04650000e+03]\n", + " [-4.44999999e+01 -4.99999855e-01]\n", + " [ 2.47928571e+02 -5.00000005e-01]\n", + " [ 5.40357143e+02 -5.00000101e-01]\n", + " [ 8.32785714e+02 -5.00000211e-01]\n", + " [ 1.12521429e+03 -4.99999718e-01]\n", + " [ 1.41764286e+03 -5.00000108e-01]\n", + " [ 1.71007143e+03 -4.99999976e-01]\n", + " [ 2.00250000e+03 -5.00000222e-01]\n", + " [-4.44999999e+01 2.04650000e+03]\n", + " [ 2.47928572e+02 2.04650000e+03]\n", + " [ 5.40357143e+02 2.04650000e+03]\n", + " [ 8.32785714e+02 2.04650000e+03]\n", + " [ 1.12521429e+03 2.04650000e+03]\n", + " [ 1.41764286e+03 2.04650000e+03]\n", + " [ 1.71007143e+03 2.04650000e+03]\n", + " [ 2.00250000e+03 2.04650000e+03]\n", + " [ 2.00250000e+03 -5.00000222e-01]\n", + " [ 2.00250000e+03 2.91928571e+02]\n", + " [ 2.00250000e+03 5.84357143e+02]\n", + " [ 2.00250000e+03 8.76785714e+02]\n", + " [ 2.00250000e+03 1.16921429e+03]\n", + " [ 2.00250000e+03 1.46164286e+03]\n", + " [ 2.00250000e+03 1.75407143e+03]\n", + " [ 2.00250000e+03 2.04650000e+03]\n", + " [-4.35000000e+01 1.27000000e+02]\n", + " [-4.35000000e+01 4.85400000e+02]\n", + " [-4.34999998e+01 8.43800000e+02]\n", + " [-4.35000001e+01 1.20220000e+03]\n", + " [-4.35000000e+01 1.56060000e+03]\n", + " [-4.34999999e+01 1.91900000e+03]\n", + " [ 8.29999998e+01 4.99999766e-01]\n", + " [ 4.41400000e+02 4.99999737e-01]\n", + " [ 7.99800000e+02 4.99999723e-01]\n", + " [ 1.15820000e+03 5.00000251e-01]\n", + " [ 1.51660000e+03 4.99999874e-01]\n", + " [ 1.87500000e+03 5.00000148e-01]\n", + " [ 8.30000001e+01 2.04550000e+03]\n", + " [ 4.41400000e+02 2.04550000e+03]\n", + " [ 7.99800000e+02 2.04550000e+03]\n", + " [ 1.15820000e+03 2.04550000e+03]\n", + " [ 1.51660000e+03 2.04550000e+03]\n", + " [ 1.87500000e+03 2.04550000e+03]\n", + " [ 2.00150000e+03 1.27000000e+02]\n", + " [ 2.00150000e+03 4.85400000e+02]\n", + " [ 2.00150000e+03 8.43800000e+02]\n", + " [ 2.00150000e+03 1.20220000e+03]\n", + " [ 2.00150000e+03 1.56060000e+03]\n", + " [ 2DEBUG:root:optics_fp: sphi: [0.69982566 0.64476931 0.57746793 0.49593643 0.39882528 0.28620393\n", + " 0.16037903 0.02625233 0.69982566 0.75009571 0.80283424 0.85613459\n", + " 0.90691415 0.95088447 0.98304718 0.99887382 0.02625233 0.03040715\n", + " 0.0361152 0.04444666 0.05774576 0.08232094 0.14281086 0.49383445\n", + " 0.99887382 0.99848273 0.99784571 0.9967037 0.99434024 0.98812429\n", + " 0.96153048 0.49383445 0.67736143 0.60192204 0.50607224 0.38703053\n", + " 0.24501841 0.0853818 0.72119441 0.7846639 0.85006805 0.91223165\n", + " 0.96330774 0.9942014 0.02841071 0.03456004 0.04408579 0.06081407\n", + " 0.0978159 0.24575094 0.99869886 0.99806192 0.99681043 0.99380121\n", + " 0.98319296 0.87734751 0.69982226 0.69982226 0.49664714 0.49664714\n", + " 0.69936375 0.76547151 0.83490784 0.90228439 0.95875753 0.9934436\n", + " 0.62516601 0.69767805 0.77886705 0.86364983 0.94025457 0.99026714\n", + " 0.52909613 0.60411884 0.69504146 0.80008796 0.9067151 0.98409483\n", + " 0.40735858 0.47672806 0.56880658 0.69033382 0.83839063 0.9696195\n", + " 0.25937061 0.31041017 0.38442785 0..00150000e+03 1.91900000e+03]\n", + " [-4.35000002e+01 4.99999824e-01]\n", + " [-4.35000002e+01 4.99999824e-01]\n", + " [ 2.00150000e+03 2.04550000e+03]\n", + " [ 2.00150000e+03 2.04550000e+03]\n", + " [ 8.30000001e+01 1.27000000e+02]\n", + " [ 4.41400000e+02 1.27000000e+02]\n", + " [ 7.99800000e+02 1.27000000e+02]\n", + " [ 1.15820000e+03 1.27000000e+02]\n", + " [ 1.51660000e+03 1.27000000e+02]\n", + " [ 1.87500000e+03 1.27000000e+02]\n", + " [ 8.29999998e+01 4.85400000e+02]\n", + " [ 4.41400000e+02 4.85400000e+02]\n", + " [ 7.99800000e+02 4.85400000e+02]\n", + " [ 1.15820000e+03 4.85400000e+02]\n", + " [ 1.51660000e+03 4.85400000e+02]\n", + " [ 1.87500000e+03 4.85400000e+02]\n", + " [ 8.30000003e+01 8.43800000e+02]\n", + " [ 4.41400000e+02 8.43800000e+02]\n", + " [ 7.99800000e+02 8.43800000e+02]\n", + " [ 1.15820000e+03 8.43800000e+02]\n", + " [ 1.51660000e+03 8.43800000e+02]\n", + " [ 1.87500000e+03 8.43800000e+02]\n", + " [ 8.29999997e+01 1.20220000e+03]\n", + " [ 4.41400000e+02 1.20220000e+03]\n", + " [ 7.99800000e+02 1.20220000e+03]\n", + " [ 1.15820000e+03 1.20220000e+03]\n", + " [ 1.51660000e+03 1.20220000e+03]\n", + " [ 1.87500000e+03 1.202DEBUG:root:radec2pix: curVec: [[0.23845606 0.885551 0.39867045]\n", + " [0.26555528 0.87904653 0.39592625]\n", + " [0.2929807 0.87170252 0.3928066 ]\n", + " [0.32061126 0.86350958 0.38930659]\n", + " [0.34832821 0.85446749 0.38542543]\n", + " [0.37601403 0.84458591 0.38116675]\n", + " [0.40355256 0.83388481 0.37653879]\n", + " [0.43082972 0.82239467 0.37155452]\n", + " [0.23845606 0.885551 0.39867045]\n", + " [0.23825413 0.87328805 0.42497406]\n", + " [0.23794936 0.86031093 0.45082724]\n", + " [0.23754854 0.84668018 0.47613377]\n", + " [0.23706286 0.83246508 0.50080245]\n", + " [0.2365084 0.81774349 0.52474696]\n", + " [0.23590685 0.80260196 0.54788508]\n", + " [0.23528622 0.78713623 0.57013766]\n", + " [0.43082972 0.82239467 0.37155452]\n", + " [0.43046729 0.80973777 0.39877644]\n", + " [0.42972217 0.79639453 0.42555212]\n", + " [0.42860286 0.78242789 0.45178113]\n", + " [0.42712271 0.76790894 0.47736992]\n", + " [0.42529979 0.75291618 0.50223233]\n", + " [0.42315662 0.73753506 0.52628937]\n", + " [0.42072015 0.72185828 0.54946809]\n", + " [0.23528622 0.78713623 0.57013766]\n", + " [0.26129649 0.77977755 0.56892101]\n", + " [0.28767107 0.77175998 0.567126 20000e+03]\n", + " [ 8.30000001e+01 1.56060000e+03]\n", + " [ 4.41400000e+02 1.56060000e+03]\n", + " [ 7.99800000e+02 1.56060000e+03]\n", + " [ 1.15820000e+03 1.56060000e+03]\n", + " [ 1.51660000e+03 1.56060000e+03]\n", + " [ 1.87500000e+03 1.56060000e+03]\n", + " [ 8.30000000e+01 1.91900000e+03]\n", + " [ 4.41400000e+02 1.91900000e+03]\n", + " [ 7.99800000e+02 1.91900000e+03]\n", + " [ 1.15820000e+03 1.91900000e+03]\n", + " [ 1.51660000e+03 1.91900000e+03]\n", + " [ 1.87500000e+03 1.91900000e+03]]\n", + "]\n", + " [0.31428207 0.76307594 0.5647494 ]\n", + " [0.34100767 0.75372747 0.56179059]\n", + " [0.36773073 0.74372615 0.55825221]\n", + " [0.39433803 0.73309299 0.55414095]\n", + " [0.42072015 0.72185828 0.54946809]\n", + " [0.25022288 0.88277647 0.39761062]\n", + " [0.28367052 0.87424124 0.39399656]\n", + " [0.3174875 0.86443476 0.38981307]\n", + " [0.35145432 0.85335279 0.38505698]\n", + " [0.38535468 0.84101316 0.37973496]\n", + " [0.41897551 0.82745701 0.37386417]\n", + " [0.23847288 0.88027463 0.41017955]\n", + " [0.23815542 0.86475724 0.44212771]\n", + " [0.23768957 0.84822629 0.47330311]\n", + " [0.23709407 0.83080571 0.50353577]\n", + " [0.23639861 0.81263886 0.53266667]\n", + " [0.23564572 0.79388885 0.5605458 ]\n", + " [0.4306264 0.81700487 0.38348918]\n", + " [0.42992421 0.80102349 0.41656517]\n", + " [0.42865529 0.78407274 0.44887035]\n", + " [0.42684222 0.76628014 0.4802296 ]\n", + " [0.4245182 0.74779015 0.51048427]\n", + " [0.42172655 0.72876306 0.53949154]\n", + " [0.24657611 0.7840615 0.56960318]\n", + " [0.27871713 0.77460158 0.56772278]\n", + " [0.31127751 0.76414321 0.56497032]\n", + " [0.34403053 0.75268616 0.56134351]\n", + " [0.37676045 0.74025172 0.55684734]\n", + " [0.40926041 0.72688244 0.55149599]\n", + " [0.23854752 0.88548952 0.3987523 ]\n", + " [0.23854752 0.88548952 0.3987523 ]\n", + " [0.42063924 0.72195168 0.54940732]\n", + " [0.42063924 0.72195168 0.54940732]\n", + " [0.25014579 0.87754106 0.40908285]\n", + " [0.2498024 0.86196261 0.44115668]\n", + " [0.24928245 0.84536666 0.47245473]\n", + " [0.24860437 0.82787748 0.50280686]\n", + " [0.24779724 0.80963853 0.53205448]\n", + " [0.24690268 0.79081265 0.56004859]\n", + " [0.28358668 0.86895441 0.40558208]\n", + " [0.28317159 0.85322526 0.43797319]\n", + " [0.28250217 0.83647212 0.46958164]\n", + " [0.28159647 0.8188204 0.50023653]\n", + " [0.28048259 0.800DEBUG:root:radec2pix: curVec: [[-0.20804605 0.39199676 -0.89613357]\n", + " [-0.18055235 0.393934 -0.90123074]\n", + " [-0.15237054 0.39558991 -0.90569964]\n", + " [-0.12360515 0.39694083 -0.90948323]\n", + " [-0.09436222 0.39796714 -0.91253379]\n", + " [-0.06475106 0.39865333 -0.914813 ]\n", + " [-0.03488503 0.39898812 -0.91629226]\n", + " [-0.00488123 0.39896477 -0.91695326]\n", + " [-0.20804605 0.39199676 -0.89613357]\n", + " [-0.20762063 0.41845154 -0.88419002]\n", + " [-0.20692682 0.44447755 -0.87156239]\n", + " [-0.205967 0.46997846 -0.85831104]\n", + " [-0.20474394 0.49486317 -0.84450599]\n", + " [-0.20326039 0.51904577 -0.8302269 ]\n", + " [-0.20151867 0.54244524 -0.81556323]\n", + " [-0.19952057 0.56498504 -0.80061442]\n", + " [-0.00488123 0.39896477 -0.91695326]\n", + " [-0.00459212 0.42630497 -0.90456784]\n", + " [-0.00429788 0.45317408 -0.89141168]\n", + " [-0.00399975 0.47947165 -0.87754826]\n", + " [-0.00369895 0.50510504 -0.86304995]\n", + " [-0.00339669 0.52998961 -0.84799733]\n", + " [-0.00309412 0.5540479 -0.83247904]\n", + " [-0.00279238 0.57720805 -0.81659235]\n", + " [-0.19952057 0.56498504 -0.800619808363]\n", + " [ 0.09127522 -0.00565918 0.99580962]\n", + " [ 0.12057355 -0.00563263 0.99268842]\n", + " [ 0.14940474 -0.00559908 0.98876027]\n", + " [ 0.17766265 -0.00555867 0.98407575]\n", + " [ 0.205241 -0.00551146 0.97869595]\n", + " [ 0.1984171 -0.20216791 0.95904056]\n", + " [ 0.20017053 -0.17558603 0.96389901]\n", + " [ 0.20167036 -0.14832064 0.96815807]\n", + " [ 0.20291139 -0.12047648 0.97175737]\n", + " [ 0.20389075 -0.09216227 0.97464592]\n", + " [ 0.20460646 -0.06348867 0.97678318]\n", + " [ 0.20505694 -0.03456748 0.97813943]\n", + " [ 0.205241 -0.00551146 0.97869595]\n", + " [ 0.00173588 -0.19697755 0.98040646]\n", + " [ 0.00175296 -0.16281769 0.98665461]\n", + " [ 0.00176683 -0.12772153 0.99180849]\n", + " [ 0.00177741 -0.09188434 0.9957681 ]\n", + " [ 0.00178459 -0.05550542 0.99845679]\n", + " [ 0.00178824 -0.01879375 0.99982178]\n", + " [ 0.01429458 -0.20874173 0.97786633]\n", + " [ 0.04980805 -0.20837407 0.97678012]\n", + " [ 0.08502967 -0.20760004 0.97451125]\n", + " [ 0.11975303 -0.20642226 0.97110713]\n", + " [ 0.15377432 -0.2048444 0.96663966]\n", + " [ 0.1868945 -0.20287264 0.961204 ]\n", + " [ 0.0147871 -0DEBUG:root:optics_fp: rtanth: [31.42709713 27.04074579 22.65442436 18.26815439 13.88198464 9.49605401\n", + " 5.11097808 0.742067 31.42709713 31.75564253 32.6750783 34.13769417\n", + " 36.07748738 38.42225317 41.10274314 44.05772304 0.742067 4.61617395\n", + " 8.97490789 13.35179361 17.73339574 22.11691136 26.50139096 30.88642402\n", + " 44.05772304 41.04415255 38.29678143 35.87681689 33.85454213 32.30472979\n", + " 31.29764563 30.88642402 29.51471971 24.13885305 18.76306281 13.38744101\n", + " 8.01232674 2.64082086 31.48077532 32.28565953 33.93362876 36.31007107\n", + " 39.28300031 42.72809051 2.2117621 7.49776555 12.85860945 18.22838275\n", + " 23.6009913 28.97485798 42.70371969 39.18128664 36.11843741 33.64093596\n", + " 31.88551984 30.97519863 31.41218354 31.41218354 30.87178238 30.87178238\n", + " 29.58771061 30.4426874 32.18516063 34.68161856 37.78289981 41.35315131\n", + " 24.22804504 25.26505023 27.33953387 30.23872042 33.75074911 37.7047566\n", + " 18.87767108 20.19136108 22.73364051 26.14858527 30.14102461 34.5111137\n", + " 13.54760187 15.3252116e+03]\n", + " [ 1.87500000e+03 1.56060000e+03]\n", + " [ 8.30000000e+01 1.91900000e+03]\n", + " [ 4.41400000e+02 1.91900000e+03]\n", + " [ 7.99800000e+02 1.91900000e+03]\n", + " [ 1.15820000e+03 1.91900000e+03]\n", + " [ 1.51660000e+03 1.91900000e+03]\n", + " [ 1.87500000e+03 1.91900000e+03]]\n", + "9 18.5469529 22.60352987 27.12291311 31.90905859\n", + " 8.27715649 10.94695923 15.13153214 19.89706928 24.91237079 30.05265085\n", + " 3.35974322 7.91280426 13.10495402 18.40298673 23.73610696 29.08501983]\n", + "442]\n", + " [-0.17291073 0.56827789 -0.80446387]\n", + " [-0.14561937 0.57108908 -0.80786896]\n", + " [-0.11775619 0.57339433 -0.81077273]\n", + " [-0.08943101 0.5751732 -0.81312845]\n", + " [-0.06075423 0.57640916 -0.81489963]\n", + " [-0.03183723 0.57708995 -0.81605979]\n", + " [-0.00279238 0.57720805 -0.81659235]\n", + " [-0.19614901 0.39296575 -0.89838938]\n", + " [-0.16197676 0.39515493 -0.90422127]\n", + " [-0.12687475 0.39689741 -0.90905184]\n", + " [-0.09103747 0.39815541 -0.91278938]\n", + " [-0.05466623 0.39890036 -0.91536337]\n", + " [-0.01797134 0.39911338 -0.91672544]\n", + " [-0.20780097 0.40358492 -0.89103197]\n", + "41405 0.52978001]\n", + " [0.27920034 0.78141532 0.55806564]\n", + " [0.31739716 0.85910669 0.40149064]\n", + " [0.31691246 0.84326042 0.43414095]\n", + " [0.31609793 0.82639075 0.46600476]\n", + " [0.31497202 0.80862418 0.49691002]\n", + " [0.31356296 0.79010523 0.52669915]\n", + " [0.31190992 0.77099582 0.55522756]\n", + " [0.35135774 0.84799395 0.39680473]\n", + " [0.3508053 0.8320652 0.42965469]\n", + " [0.34984952 0.81512077 0.46171792]\n", + " [0.34850979 0.79728803 0.49282118]\n", + " [0.34681532 0.77871191 0.52280674]\n", + " [0.3448058 0.75955401 0.55153121]\n", + " [0.38525215 0.83563432 0.39153041]\n", + " [0.38463414 0.81965868 0.42451883]\n", + " [0.38354145 0.80268227 0.45672436]\n", + " [0.38199475 0.78483286 0.48797273]\n", + " [0.38002482 0.76625548 0.51810585]\n", + " [0.3776726 0.74711131 0.54698089]\n", + " [0.41886737 0.82206918 0.38568431]\n", + " [0.41818655 0.80608287 0.41874862]\n", + " [0.41696244 0.78911777 0.45103821]\n", + " [0.41521712 0.77130158 0.48237809]\n", + " [0.41298315 0.75277896 0.51260975]\n", + " [0.41030322 0.73371047 0.54159045]]\n", + " [-0.20709895 0.43573291 -0.87592628]\n", + " [-0.20599626 0.46714052 -0.85985189]\n", + " [-.00579649 0.99987386]\n", + " [ 0.05152109 -0.00578593 0.99865515]\n", + " [ 0.08794575 -0.0057639 0.99610859]\n", + " [ 0.12385093 -0.00573078 0.99228429]\n", + " [ 0.15903647 -0.00568698 0.98725633]\n", + " [ 0.19330699 -0.00563273 0.98112215]\n", + " [ 0.19912208 -0.19067465 0.96124585]\n", + " [ 0.20110045 -0.1576223 0.96680599]\n", + " [ 0.20269257 -0.12364673 0.97140476]\n", + " [ 0.20389226 -0.08894663 0.97494433]\n", + " [ 0.20469584 -0.05372559 0.97735008]\n", + " [ 0.20510055 -0.0181899 0.97857186]\n", + " [ 0.00172908 -0.20877415 0.97796235]\n", + " [ 0.00172908 -0.20877415 0.97796235]\n", + " [ 0.20514779 -0.0056111 0.97871492]\n", + " [ 0.20514779 -0.0056111 0.97871492]\n", + " [ 0.01435076 -0.19694699 0.9803091 ]\n", + " [ 0.05000388 -0.19660038 0.97920779]\n", + " [ 0.08536435 -0.19587092 0.97690711]\n", + " [ 0.12022547 -0.19476145 0.97345458]\n", + " [ 0.15438306 -0.19327535 0.96892234]\n", + " [ 0.18763689 -0.19141752 0.96340632]\n", + " [ 0.01449201 -0.16279237 0.98655391]\n", + " [ 0.05049589 -0.16250539 0.98541472]\n", + " [ 0.08620426 -0.1619024 0.9830343 ]\n", + " [ 0.1214098 -0.1609872 0.97946045]\n", + " [ 0.15590842 -0.15976346 0.97476571]\n", + " [ 0.18949858 -0.15823425 0.96904706]\n", + " [ 0.01460664 -0.12770151 0.99170508]\n", + " [ 0.05089468 -0.1274748 0.99053516]\n", + " [ 0.08688344 -0.12699943 0.98809029]\n", + " [ 0.12236492 -0.12628004 0.9844187 ]\n", + " [ 0.15713605 -0.12532102 0.97959323]\n", + " [ 0.19099623 -0.12412508 0.97371115]\n", + " [ 0.0146941 -0.09186978 0.99566261]\n", + " [ 0.05119852 -0.09170505 0.99446915]\n", + " [ 0.08739951 -0.09136033 0.99197511]\n", + " [ 0.12308827 -0.09084026 0.98822939]\n", + " [ 0.15806297 -0.09014925 0.98330525]\n", + " [ 0.19212497 -0.08928993 0.97730001]\n", + " [ 0.01475342 -0.05549654 0.99834987]\n", + " [ 0.05140434 -0.05539609 0.99714035]\n", + " [ 0.08774826 -0.05518622 0.99461285]\n", + " [ 0.12357559 -0.05487037 0.99081699]\n", + " [ 0.15868553 -0.05445187 0.9858265 ]\n", + " [ 0.19288138 -0.05393273 0.97973876]\n", + " [ 0.01478357 -0.01879073 0.99971414]\n", + " [ 0.05150885 -0.01875652 0.99849639]\n", + " [ 0.08792506 -0.01868512 0.99595183]\n", + " [ 0.1238221 -0.01857781 0.99213051]\n", + " [ 0.15899976 -0.01843585 0.98710648]\n", + " [ 0.19326249 -0.01826001 49818906 0.67954081 0.92235166\n", + " 0.0906953 0.11007561 0.13986822 0.1913293 0.29984194 0.62955934]\n", + "DEBUG:root:make_az_asym: xyp: [[ 0.173161 -31.45819714]\n", + " [ 0.17304708 -27.07176857]\n", + " [ 0.17293316 -22.68534 ]\n", + " [ 0.17281925 -18.29891143]\n", + " [ 0.17270533 -13.91248287]\n", + " [ 0.17259141 -9.52605429]\n", + " [ 0.17247749 -5.13962573]\n", + " [ 0.17236358 -0.75319715]\n", + " [ 0.173161 -31.45819714]\n", + " [ 4.55958957 -31.45808322]\n", + " [ 8.94601814 -31.45796931]\n", + " [ 13.33244671 -31.45785538]\n", + " [ 17.71887528 -31.45774147]\n", + " [ 22.10530385 -31.45762756]\n", + " [ 26.49173242 -31.45751363]\n", + " [ 30.87816099 -31.45739971]\n", + " [ 0.17236358 -0.75319715]\n", + " [ 4.55879215 -0.75308323]\n", + " [ 8.94522072 -0.75296932]\n", + " [ 13.33164929 -0.7528554 ]\n", + " [ 17.71807786 -0.75274148]\n", + " [ 22.10450643 -0.75262756]\n", + " [ 26.490935 -0.75251364]\n", + " [ 30.87736356 -0.75239973]\n", + " [ 30.87816099 -31.45739971]\n", + " [ 30.87804707 -27.07097114]\n", + " [ 30.87793315 -22.68454257]\n", + " [ 30.87781924 -18.29811401]\n", + " [ 30.87770532 -13.91168544]\n", + " [ 30.87759141 -9.52525687]\n", + " [ 30.87747749 -5.1388283 ]\n", + " [ 30.87736356 -0.75239973]\n", + " [ 0.18811133 -29.54569675]\n", + " [ 0.18797171 -24.16969676]\n", + " [ 0.1878321 -18.79369675]\n", + " [ 0.18769248 -13.41769676]\n", + " [ 0.18755286 -8.04169676]\n", + " [ 0.18741324 -2.66569676]\n", + " [ 2.08566061 -31.44314748]\n", + " [ 7.46166061 -31.44300785]\n", + " [ 12.83766061 -31.44286824]\n", + " [ 18.2136606 -31.44272862]\n", + " [ 23.5896606 -31.442589 ]\n", + " [ 28.9656606 -31.44244938]\n", + " [ 2.08486397 -0.76814748]\n", + " [ 7.46086396 -0.76800786]\n", + " [ 12.83686396 -0.76786825]\n", + " [ 18.21286396 -0.76772863]\n", + " [ 23.58886395 -0.76758901]\n", + " [ 28.96486395 -0.7674494 ]\n", + " [ 30.86311132 -29.54490011]\n", + " [ 30.86297171 -24.16890011]\n", + " [ 30.86283209 -18.79290011]\n", + " [ 30.86269247 -13.41690011]\n", + " [ 30.86255285 -8.04090011]\n", + " [ 30.86241323 -2.66490012]\n", + " [ 0.18816061 -31.44319675]\n", + " [ 0.18816061 -31.44319675]\n", + " [ 30.86236396 -0.76740012]\n", + " [ 30.86236396 -0.76740012]\n", + " [ 2.08561133 -29.54564748]\n", + " [ 7.46161133 -29.54550785]\n", + " [ 12.83761133 -29.54536824]\n", + " [ 18.21361133 -29.54522862]\n", + " [ 23.58961132 DEBUG:root:radec2pix: fitpx: [[ 2.13550000e+03 -4.99999973e-01]\n", + " [ 2.13550000e+03 2.91928572e+02]\n", + " [ 2.13550000e+03 5.84357143e+02]\n", + " [ 2.13550000e+03 8.76785714e+02]\n", + " [ 2.13550000e+03 1.16921429e+03]\n", + " [ 2.13550000e+03 1.46164286e+03]\n", + " [ 2.13550000e+03 1.75407143e+03]\n", + " [ 2.13550000e+03 2.04650000e+03]\n", + " [ 2.13550000e+03 -4.99999973e-01]\n", + " [ 2.42792857e+03 -4.99999766e-01]\n", + " [ 2.72035714e+03 -5.00000023e-01]\n", + " [ 3.01278571e+03 -4.99999798e-01]\n", + " [ 3.30521429e+03 -5.00000229e-01]\n", + " [ 3.59764286e+03 -5.00000231e-01]\n", + " [ 3.89007143e+03 -4.99999870e-01]\n", + " [ 4.18250000e+03 -4.99999884e-01]\n", + " [ 2.13550000e+03 2.04650000e+03]\n", + " [ 2.42792857e+03 2.04650000e+03]\n", + " [ 2.72035714e+03 2.04650000e+03]\n", + " [ 3.01278571e+03 2.04650000e+03]\n", + " [ 3.30521429e+03 2.04650000e+03]\n", + " [ 3.59764286e+03 2.04650000e+03]\n", + " [ 3.89007143e+03 2.04650000e+03]\n", + " [ 4.18250000e+03 2.04650000e+03]\n", + " [ 4.18250000e+03 -4.99999884e-01]\n", + " [ 4.18250000e+03 2.91928572e+02]\n", + " [ 4.18250000e+03 5.84357143e+02]\n", + " [ 4.18250000e+03 8.76785DEBUG:root:radec2pix: curVec: [[-0.55515679 -0.49911282 0.66534753]\n", + " [-0.53353634 -0.49861661 0.68316941]\n", + " [-0.51105579 -0.49770668 0.70079244]\n", + " [-0.48778132 -0.49636489 0.71811648]\n", + " [-0.46378505 -0.49457823 0.73504816]\n", + " [-0.43914618 -0.49233911 0.75150039]\n", + " [-0.41395126 -0.48964559 0.7673927 ]\n", + " [-0.38829382 -0.48650158 0.78265198]\n", + " [-0.55515679 -0.49911282 0.66534753]\n", + " [-0.54531715 -0.52405445 0.65421413]\n", + " [-0.53497619 -0.54847599 0.64263097]\n", + " [-0.52417865 -0.57228816 0.63065284]\n", + " [-0.51297353 -0.59540797 0.61834255]\n", + " [-0.50141363 -0.6177585 0.60577125]\n", + " [-0.48955525 -0.63926837 0.59301906]\n", + " [-0.47745809 -0.65987069 0.58017622]\n", + " [-0.38829382 -0.48650158 0.78265198]\n", + " [-0.37823095 -0.51229363 0.77103605]\n", + " [-0.36785906 -0.53754358 0.75876651]\n", + " [-0.35722381 -0.56215839 0.74590153]\n", + " [-0.34637431 -0.58605308 0.73250708]\n", + " [-0.33536264 -0.60915112 0.71865625]\n", + " [-0.32424365 -0.6313842 0.70442888]\n", + " [-0.31307518 -0.65269114 0.68991174]\n", + " [-0.47745809 -0.65987069 0.58017622]\n", + " [-0.45580822 -0.66069199 0.59642683]\n", + " [-0.43342044 -0.66091876 0.61264436]\n", + " [-0.41036646 -0.66053391 0.62872436]\n", + " [-0.38672197 -0.65952442 0.64457246]\n", + " [-0.36256741 -0.6578819 0.66010323]\n", + " [-0.33798829 -0.65560324 0.67523944]\n", + " [-0.31307518 -0.65269114 0.68991174]\n", + " [-0.54580712 -0.49903238 0.67309826]\n", + " [-0.51872225 -0.4981494 0.69481969]\n", + " [-0.49041073 -0.49662625 0.71614223]\n", + " [-0.46100278 -0.49443685 0.7368912 ]\n", + " [-0.43064422 -0.49156724 0.75690634]\n", + " [-0.39949735 -0.48801627 0.77604252]\n", + " [-0.55085846 -0.51004477 0.66061281]\n", + " [-0.53845619 -0.54027596 0.6466582 ]\n", + " [-0.52534497 -0.56963649 0.63208143]\n", + " [-0.51161329 -0.59797096 0.6169948 ]\n", + " [-0.49735832 -0.62513771 0.60152934]\n", + " [-0.48268509 -0.65100725 0.58583671]\n", + " [-0.38403554 -0.4978189 0.77762012]\n", + " [-0.37148898 -0.52907712 0.76293731]\n", + " [-0.35852306 -0.55942778 0.74732976]\n", + " [-0.34522678 -0.58871103 0.73091573]\n", + " [-0.33169599 -0.61678596 0.71382971]\n", + " [-0.31803289 -0.64352986 0.69622152]\n", + " [-0.46815545 -0.660DEBUG:root:optics_fp: cphi: [0.00550458 0.00639749 0.00763617 0.00946965 0.01246169 0.01821736\n", + " 0.03384734 0.23312315 0.00550458 0.14357831 0.27378206 0.39054421\n", + " 0.49112919 0.57532118 0.64452059 0.70085313 0.23312315 0.98770575\n", + " 0.99676233 0.99853841 0.99917171 0.99946758 0.99962921 0.99972703\n", + " 0.70085313 0.75231162 0.80628167 0.86066702 0.91207829 0.95583505\n", + " 0.98659156 0.99972703 0.00636947 0.00778798 0.01001931 0.01404249\n", + " 0.02346297 0.07118734 0.06624656 0.23110858 0.37831182 0.50160995\n", + " 0.60050131 0.67790282 0.94291018 0.99516222 0.9983578 0.99918316\n", + " 0.9995128 0.99967679 0.72272376 0.78769728 0.85449414 0.91742373\n", + " 0.96793131 0.99637757 0.00598472 0.00598472 0.99971529 0.99971529\n", + " 0.07048511 0.24509968 0.39886372 0.52516272 0.62434311 0.70044222\n", + " 0.08607764 0.29532864 0.46955786 0.60232354 0.69893243 0.76821854\n", + " 0.11047406 0.36953888 0.56469148 0.69653837 0.7826374 0.83930914\n", + " 0.15393817 0.48687699 0.69216184 0.80578092 0.86972564 0.90775141\n", + " 0.25195766 0.68160416 0.84839347 0.91538572 0.94689876 0.96382489\n", + " 0.62072988 0.94296444 0.97959085 0.9897031 0.99382317 0.99589043]\n", + "23154 0.58730298]\n", + " [-0.44111587 -0.66084001 0.60721271]\n", + " [-0.41303866 -0.66053816 0.62696763]\n", + " [-0.38406146 -0.6593003 0.64638991]\n", + " [-0.35433239 -0.65711107 0.66532218]\n", + " [-0.324011 -0.65396712 0.68362554]\n", + " [-0.55505164 -0.49919787 0.66537144]\n", + " [-0.55505164 -0.49919787 0.66537144]\n", + " [-0.31319905 -0.65263095 0.68991246]\n", + " [-0.31319905 -0.65263095 0.68991246]\n", + " [-0.54159875 -0.50992156 0.66831938]\n", + " [-0.52916269 -0.54026858 0.65429099]\n", + " [-0.5160317 -0.56973871 0.63961636]\n", + " [-0.50229472 -0.59817636 0.62440776]\n", + " [-0.48804938 -0.62544024 0.60879579]\n", + " [-0.47340101 -0.65140172 0.59293109]\n", + " [-0.5144762 -0.50914499 0.68998958]\n", + " [-0.50196135 -0.53978397 0.6757722 ]\n", + " [-0.48879379 -0.56953067 0.6608445 ]\n", + " [-0.47506355 -0.59822876 0.64531928]\n", + " [-0.46086924 -0.62573765 0.62932658]\n", + " [-0.4463168 -0.65193092 0.613015 ]\n", + " [-0.48613508 -0.50770812 0.7112701 ]\n", + " [-0.47356736 -0.53858DEBUG:root:radec2pix: fitpx: [[4271.49999985 4155.49999985]\n", + " [4271.49999998 3863.07142855]\n", + " [4271.50000002 3570.64285716]\n", + " [4271.49999976 3278.21428558]\n", + " [4271.50000012 2985.78571434]\n", + " [4271.50000004 2693.35714287]\n", + " [4271.50000005 2400.92857144]\n", + " [4271.49999991 2108.5 ]\n", + " [4271.49999985 4155.49999985]\n", + " [3979.07142858 4155.50000001]\n", + " [3686.64285722 4155.5000001 ]\n", + " [3394.21428584 4155.50000021]\n", + " [3101.78571415 4155.49999972]\n", + " [2809.35714289 4155.50000011]\n", + " [2516.92857142 4155.49999998]\n", + " [2224.50000001 4155.50000022]\n", + " [4271.49999991 2108.5 ]\n", + " [3979.07142843 2108.5 ]\n", + " [3686.6428569 2108.49999999]\n", + " [3394.21428586 2108.5 ]\n", + " [3101.78571453 2108.50000001]\n", + " [2809.35714306 2108.50000001]\n", + " [2516.9285717 2108.50000003]\n", + " [2224.49999984 2108.49999993]\n", + " [2224.50000001 4155.50000022]\n", + " [2224.5 3863.07142862]\n", + " [2224.49999998 3570.64285684]\n", + " [2224.50000001 3278.21428585]\n", + " [2224.50000002 2985.78571445]\n", + " [2224.5 2693.35714285]\n", + " [2224.49999995 2400.92857125]\n", + " [2224.49999984 2108.49999993]\n", + " [4270.49999995 4027.99999996]\n", + " [4270.50000001 3669.6 ]\n", + " [4270.4999998 3311.19999989]\n", + " [4270.50000006 2952.80000003]\n", + " [4270.50000002 2594.40000001]\n", + " [4270.49999985 2235.99999999]\n", + " [4144.00000023 4154.50000023]\n", + " [3785.60000021 4154.50000026]\n", + " [3427.20000017 4154.50000028]\n", + " [3068.79999989 4154.49999975]\n", + " [2710.40000004 4154.50000013]\n", + " [2351.99999998 4154.49999985]\n", + " [4143.99999992 2109.5 ]\n", + " [3785.59999985 2109.5 ]\n", + " [3427.19999998 2109.5 ]\n", + " [3068.80000001 2109.5 ]\n", + " [2710.40000021 2109.50000002]\n", + " [2352.00000017 2109.50000003]\n", + " [2225.5 4027.99999993]\n", + " [2225.49999998 3669.59999975]\n", + " [2225.50000001 3311.20000015]\n", + " [2225.5 2952.8 ]\n", + " [2225.49999998 2594.39999987]\n", + " [2225.50000008 2236.00000013]\n", + " [4270.50000018 4154.50000018]\n", + " [4270.50000018 4154.50000018]\n", + " [2225.49999981 2109.49999992]\n", + " [2225.49999981 2109.49999992]\n", + " [4143.99999987 4027.99999987]\n", + " [3785.59999992 4027.9999999 ]\n", + " [3427.2000001 4028.00000015]\n", + " [3068.80000011 4028.00000023]\n", + " [2710.39999995 4027.99999982]\n", + " [2351.99999998 4027.99999985]\n", + " [4144.00000018 3669.60000014]\n", + " [3785.5999999 3669.59999991]\n", + " [3427.19999994 3669.59999993]\n", + " [3068.79999994 3669.5999999 ]\n", + " [2710.39999997 3669.59999991]\n", + " [2351.99999997 3669.5999998 ]\n", + " [4143.99999973 3311.19999984]\n", + " [3785.60000019 3311.20000014]\n", + " [3427.1999998 3311.19999981]\n", + " [3068.79999976 3311.19999969]\n", + " [2710.39999985 3311.19999967]\n", + " [2352.00000003 3311.20000016]\n", + " [4144.00000026 2952.80000011]\n", + " [3785.6000001 2952.80000005]\n", + " [3427.20000009 2952.80000006]\n", + " [3068.8000003 2952.80000028]\n", + " [2710.39999986 2952.79999979]\n", + " [2352.00000001 2952.80000004]\n", + " [4143.99999994 2594.39999998]\n", + " [3785.6 2594.4 ]\n", + " [3427.19999999 2594.39999999]\n", + " [3068.79999999 2594.39999999]\n", + " [2710.40000015 2594.40000014]\n", + " [2351.99999993 2594.39999983]\n", + " [4143.99999995 2236. ]\n", + " [3785.59999975 2235.99999997]\n", + " [3427.19999971 2235.99999996]\n", + " [3068.80000003 2236.00000001]\n", + " [2710.39999999 2236. ]\n", + " [2352.00000022 2236.00000-29.545089 ]\n", + " [ 28.96561132 -29.54494938]\n", + " [ 2.08547171 -24.16964747]\n", + " [ 7.46147171 -24.16950786]\n", + " [ 12.83747171 -24.16936824]\n", + " [ 18.21347171 -24.16922862]\n", + " [ 23.58947171 -24.16908901]\n", + " [ 28.9654717 -24.16894939]\n", + " [ 2.0853321 -18.79364747]\n", + " [ 7.46133209 -18.79350785]\n", + " [ 12.83733209 -18.79336824]\n", + " [ 18.21333209 -18.79322862]\n", + " [ 23.58933209 -18.79308901]\n", + " [ 28.96533209 -18.79294939]\n", + " [ 2.08519248 -13.41764748]\n", + " [ 7.46119248 -13.41750786]\n", + " [ 12.83719247 -13.41736824]\n", + " [ 18.21319248 -13.41722863]\n", + " [ 23.58919247 -13.41708901]\n", + " [ 28.96519247 -13.41694939]\n", + " [ 2.08505286 -8.04164748]\n", + " [ 7.46105286 -8.04150786]\n", + " [ 12.83705286 -8.04136825]\n", + " [ 18.21305286 -8.04122863]\n", + " [ 23.58905286 -8.04108901]\n", + " [ 28.96505285 -8.04094939]\n", + " [ 2.08491324 -2.66564748]\n", + " [ 7.46091324 -2.66550786]\n", + " [ 12.83691324 -2.66536825]\n", + " [ 18.21291324 -2.66522863]\n", + " [ 23.58891323 -2.66508901]\n", + " [ 28.96491324 -2.66494939]]\n", + "DEBUG:root:optics_fp: sphi: [-0.99998485 -0.99997954 -0.99997084 -0.99995516 -0.999922DEBUG:root:cartToSphere: vec: [[-0.00108623 0.20994474 0.97771265]\n", + " [-0.00110818 0.18250974 0.98320342]\n", + " [-0.00112898 0.15437814 0.98801119]\n", + " [-0.00114857 0.12565449 0.9920734 ]\n", + " [-0.00116686 0.09644464 0.99533767]\n", + " [-0.00118378 0.0668576 0.99776183]\n", + " [-0.00119922 0.03700641 0.99931431]\n", + " [-0.00121312 0.00700791 0.99997471]\n", + " [-0.00108623 0.20994474 0.97771265]\n", + " [-0.03008973 0.20980966 0.97727914]\n", + " [-0.05897582 0.20940234 0.97604944]\n", + " [-0.08763213 0.20872399 0.97404051]\n", + " [-0.11594722 0.20777622 0.97128023]\n", + " [-0.14381054 0.20656061 0.96780744]\n", + " [-0.17111212 0.20507835 0.96367189]\n", + " [-0.19774215 0.20333011 0.95893426]\n", + " [-0.00121312 0.00700791 0.99997471]\n", + " [-0.0312253 0.00701559 0.99948775]\n", + " [-0.06111305 0.00701392 0.99810621]\n", + " [-0.09075893 0.00700302 0.99584827]\n", + " [-0.12004913 0.00698305 0.99274339]\n", + " [-0.1488739 0.00695418 0.98883174]\n", + " [-0.17712688 0.00691659 0.98416372]\n", + " [-0.20470344 0.00687038 0.97879993]\n", + " [-0.19774215 0.20333011 0.95893DEBUG:root:optics_fp: xyfp: [[-32.203794 -31.5506227 ]\n", + " [-32.20328688 -27.16419416]\n", + " [-32.20277976 -22.77776561]\n", + " [-32.20227264 -18.39133707]\n", + " [-32.20176553 -14.00490853]\n", + " [-32.20125841 -9.61847999]\n", + " [-32.20075129 -5.23205144]\n", + " [-32.20024417 -0.8456229 ]\n", + " [-32.203794 -31.5506227 ]\n", + " [-27.81736545 -31.55112981]\n", + " [-23.43093691 -31.55163693]\n", + " [-19.04450837 -31.55214405]\n", + " [-14.65807983 -31.55265117]\n", + " [-10.27165129 -31.55315829]\n", + " [ -5.88522274 -31.5536654 ]\n", + " [ -1.4987942 -31.55417252]\n", + " [-32.20024417 -0.8456229 ]\n", + " [-27.81381563 -0.84613002]\n", + " [-23.42738708 -0.84663714]\n", + " [-19.04095854 -0.84714426]\n", + " [-14.65453 -0.84765137]\n", + " [-10.26810146 -0.84815849]\n", + " [ -5.88167292 -0.84866561]\n", + " [ -1.49524438 -0.84917273]\n", + " [ -1.4987942 -31.55417252]\n", + " [ -1.49828708 -27.16774398]\n", + " [ -1.49777997 -22.78131544]\n", + " [ -1.49727285 -18.39488689]\n", + " [ -1.49676573 -14.00845835]\n", + " [ -1.49625861 -9.62202981]\n", + " [ -1.49575149 -5.23560127]\n", + " [ -1.49524438 -0.84917273]\n", + " [-32.18857289 -29.63812445]\n", + " [-32.18795136 0.98097716]]\n", + "-24.26212448]\n", + " [-32.18732984 -18.88612452]\n", + " [-32.18670832 -13.51012455]\n", + " [-32.1860868 -8.13412459]\n", + " [-32.18546528 -2.75812462]\n", + " [-30.29129227 -31.5358438 ]\n", + " [-24.91529231 -31.53646533]\n", + " [-19.53929235 -31.53708685]\n", + " [-14.16329238 -31.53770837]\n", + " [ -8.78729242 -31.53832989]\n", + " [ -3.41129245 -31.53895142]\n", + " [-30.28774592 -0.86084401]\n", + " [-24.91174595 -0.86146553]\n", + " [-19.53574599 -0.86208705]\n", + " [-14.15974603 -0.86270858]\n", + " [ -8.78374606 -0.8633301 ]\n", + " [ -3.4077461 -0.86395162]\n", + " [ -1.5135731 -29.6416708 ]\n", + " [ -1.51295157 -24.26567084]\n", + " [ -1.51233005 -18.88967087]\n", + " [ -1.51170853 -13.51367091]\n", + " [ -1.51108701 -8.13767095]\n", + " [ -1.51046548 -2.76167097]\n", + " [-32.18879227 -31.53562444]\n", + " [-32.18879227 -31.53562444]\n", + " [ -1.51024611 -0.86417099]\n", + " [ -1.51024611 -0.86417099]\n", + " [-30.29107291 -29.63834382]\n", + " [-24.91507294 -29.63896534]\n", + " [-19.53907298 -29.63958686]\n", + " [-14.16307301 -29.64020839]\n", + " [ -8.78707305 -29.64082991]\n", + " [ -3.41107308 -29.64145143]\n", + " [-30.29045138 -24.26234385]\n", + " [-24.91445142 -24.26296538]\n", + " [-19.53845145 -24.2635869 ]\n", + " [-14.16245149 -24.26420842]\n", + " [ -8.78645152 -24.26482994]\n", + " [ -3.41045156 -24.26545147]\n", + " [-30.28982986 -18.88634389]\n", + " [-24.91382989 -18.88696541]\n", + " [-19.53782993 -18.88758693]\n", + " [-14.16182997 -18.88820846]\n", + " [ -8.78583 -18.88882997]\n", + " [ -3.40983004 -18.8894515 ]\n", + " [-30.28920834 -13.51034392]\n", + " [-24.91320837 -13.51096545]\n", + " [-19.53720841 -13.51158697]\n", + " [-14.16120844 -13.51220849]\n", + " [ -8.78520848 -13.51283002]\n", + " [ -3.40920852 -13.51345154]\n", + " [-30.28858681 -8.13434396]\n", + " [-24.91258685 -8.13496548]\n", + " [-19.53658688 -8.135587 ]\n", + " [-14.16058692 -8.13620852]\n", + " [ -8.78458696 -8.13683005]\n", + " [ -3.40858699 -8.13745157]\n", + " [-30.28796529 -2.75834399]\n", + " [-24.91196532 -2.75896552]\n", + " [-19.53596536 -2.75958704]\n", + " [-14.1599654 -2.76020856]\n", + " [ -8.78396543 -2.76083009]\n", + " [ -3.40796547 -2.76145161]]\n", + "0.20449788 0.49763785 -0.84293368]\n", + " [-0.20260881 0.52706671 -0.82531833]\n", + " [-0.2003331 0.55527981 -0.80717469]\n", + " [-0.00485857 0.41093708 -0.91165076]\n", + " [-0.00450045 0.44414142 -0.89594539]\n", + " [-0.00413565 0.47653753 -0.8791444 ]\n", + " [-0.00376644 0.50795158 -0.86137739]\n", + " [-0.00339503 0.53822765 -0.84279266]\n", + " [-0.00302357 0.56722556 -0.82355693]\n", + " [-0.18801629 0.56640246 -0.80239525]\n", + " [-0.15493001 0.5701169 -0.80682304]\n", + " [-0.12092902 0.57308344 -0.81052548]\n", + " [-0.08621546 0.57526283 -0.8134123 ]\n", + " [-0.05099262 0.5766247 -0.81541628]\n", + " [-0.01546596 0.57714844 -0.81649279]\n", + " [-0.20795233 0.39209492 -0.89611238]\n", + " [-0.20795233 0.39209492 -0.89611238]\n", + " [-0.00289282 0.57713102 -0.81664645]\n", + " [-0.00289282 0.57713102 -0.81664645]\n", + " [-0.19599898 0.40450023 -0.89328829]\n", + " [-0.19531637 0.43676963 -0.87811378]\n", + " [-0.19425638 0.4682914 -0.8619557 ]\n", + " [-0.19282435 0.49889545 -0.84493911]\n", + " [-0.19102573 0.5284238 -0.82721065]\n", + " [-0.18886488 0.55672957 -0.80893896]\n", + " [-0.16183071 0.40680125 -0.89906817]\n", + " [-0.1612039 0.43937571 -0.88372071]\n", + " [-0.16026593 0.47118372 -0.86735272]\n", + " [-0.15902297 0.50205444 -0.85009002]\n", + " [-0.15748154 0.5318305 -0.83207925]\n", + " [-0.1556469 0.56036658 -0.81348837]\n", + " [-0.12673303 0.40863432 -0.90385659]\n", + " [-0.1261639 0.44145564 -0.88836906]\n", + " [-0.12535089 0.47349448 -0.87183148]\n", + " [-0.12430041 0.5045791 -0.85437073]\n", + " [-0.12301934 0.5345527 -0.83613375]\n", + " [-0.12151346 0.56327168 -0.81728789]\n", + " [-0.09090046 0.40996107 -0.90756213]\n", + " [-0.09039152 0.4429696 -0.89196822]\n", + " [-0.08970762 0.47518299 -0.87530204]\n", + " [-0.08885467 0.50642859 -0.85769163]\n", + " [-0.08783901 0.53655005 -0.83928443]\n", + " [-0.08666619 0.56540534 -0.82024739]\n", + " [-0.05453434 0.41075223 -0.91011462]\n", + " [-0.05408815 0.4438866 -0.89444908]\n", + " [-0.0535377 0.47621717 -0.87769637]\n", + " [-0.05288765 0.50757056 -0.85998548]\n", + " [-0.05214298 0.53779072 -0.84146435]\n", + " [-0.05130815 0.56673676 -0.82229977]\n", + " [-0.01784494 0.4109883 -0.91146595]\n", + " [-0.0174636 0.44418562 -0.89576456]\n", + " [-0.01705 0.47657502 -0.87896845]\n", + " [-0.01660707 0.50798272 -0.86120715]\n", + " [-0.01613782 0.53825278 -0.84262893]\n", + " [-0.01564504 0.56724496 -0.8234005 ]]\n", + "016]]\n", + "714e+02]\n", + " [ 4.18250000e+0DEBUG:root:make_az_asym: xyp: shape: (96, 2)\n", + "426]\n", + " [-0.19951656 0.17679323 0.96381393]\n", + " [-0.20103291 0.14956333 0.96809947]\n", + " [-0.2022905 0.12175011 0.97172808]\n", + " [-0.20328809 0.09346339 0.97464791]\n", + " [-0.20402394 0.06481351 0.97681802]\n", + " [-0.20449622 0.03591173 0.97820838]\n", + " [-0.20470344 0.00687038 0.97879993]\n", + " [-0.00119558 0.19807534 0.98018607]\n", + " [-0.00122271 0.16396932 0.98646468]\n", + " [-0.00124786 0.12892083 0.9916541 ]\n", + " [-0.00127089 0.09312409 0.9956537 ]\n", + " [-0.00129164 0.05677987 0.99838589]\n", + " [-0.00130994 0.02009792 0.99979716]\n", + " [-0.01373956 0.20982687 0.97764201]\n", + " [-0.04922259 0.20947825 0.9765736 ]\n", + " [-0.08441749 0.20872203 0.97432479]\n", + " [-0.11911871 0.20756102 0.97094241]\n", + " [-0.1531227 0.20599809 0.96649792]\n", + " [-0.18622706 0.20403521 0.96108746]\n", + " [-0.01430615 0.00711509 0.99987235]\n", + " [-0.05102028 0.00711803 0.99867225]\n", + " [-0.08743049 0.00710683 0.99614527]\n", + " [-0.12332566 0.00708177 0.99234098]\n", + " [-0.15850368 0.0070432 0.98733327]\n", + " [-0.1927695735 -0.99983405\n", + " -0.99942701 -0.97244722 -0.99998485 -0.98963896 -0.96179176 -0.92058417\n", + " -0.87108674 -0.81792759 -0.76458695 -0.71330561 -0.97244722 -0.15632448\n", + " -0.08040428 -0.05404675 -0.04069277 -0.03262757 -0.02722955 -0.0233637\n", + " -0.71330561 -0.65880742 -0.59153179 -0.50916823 -0.41001608 -0.29390365\n", + " -0.16320875 -0.0233637 -0.99997971 -0.99996967 -0.99994981 -0.9999014\n", + " -0.99972471 -0.99746296 -0.99780328 -0.97292796 -0.92567822 -0.8650939\n", + " -0.79962377 -0.73515153 -0.33304712 -0.0982454 -0.05728621 -0.04041066\n", + " -0.03121144 -0.02542276 -0.69113701 -0.61606249 -0.51946104 -0.39791167\n", + " -0.251215 -0.08503968 -0.99998209 -0.99998209 -0.02386066 -0.02386066\n", + " -0.99751283 -0.96949788 -0.91701021 -0.85100183 -0.78115023 -0.71370911\n", + " -0.99628843 -0.95539573 -0.8829017 -0.79825206 -0.71518771 -0.64018769\n", + " -0.99387901 -0.92921527 -0.82530209 -0.71751954 -0.62247788 -0.54365446\n", + " -0.98808048 -0.87347054 -0.72174233 -0.59221374 -0.49353552 -0.41950849\n", + " -0.96773826 -0.7317211 -0.52936616 -0DEBUG:root:optics_fp: xyfp shape: (96, 2)\n", + ".40257793 -0.32153186 -0.26653625\n", + " -0.7840245 -0.33289349 -0.20100193 -0.14313552 -0.11097528 -0.09056624]\n", + "DEBUG:root:radec2pix: curVec Shape: (96, 3)\n", + "DEBUG:root:fitpix2pix: ccdpx: shape: (96, 2)\n", + "47 0.69689345]\n", + " [-0.46039333 -0.56855749 0.68174802]\n", + " [-0.44670369 -0.59746919 0.66594773]\n", + " [-0.43259739 -0.62517946 0.64962307]\n", + " [-0.41818046 -0.65156364 0.63292174]\n", + " [-0.45670588 -0.50558428 0.73198653]\n", + " [-0.44411213 -0.53664269 0.71748104]\n", + " [-0.43096295 -0.56679027 0.70215363]\n", + " [-0.41734913 -0.59586869 0.68611967]\n", + " [-0.40336935 -0.62373759 0.6695107 ]\n", + " [-0.38912907 -0.65027348 0.6524745 ]\n", + " [-0.42633463 -0.50275891 0.75197889]\n", + " [-0.4137423 -0.53394189 0.73737601]\n", + " [-0.40064975 -0.56421189 0.72190354]\n", + " [-0.38714734 -0.59340975 0.70567826]\n", + " [-0.37333286 -0.62139489 0.68883304]\n", + " [-0.35931065 -0.64804447 0.67151636]\n", + " [-0.39518379 -0.4992304 0.77110231]\n", + " [-0.38262045 -0.53047943 0.75643451]\n", + " [-0.36961604 -0.56081855 0.74085527]\n", + " [-0.35626 -0.59008803 0.72448253]\n", + " [-0.34264874 -0.61814704 0.7074504 ]\n", + " [-0.32888506 -0.64487291 0.68990836]]\n", + " 0.00699139 0.98121915]\n", + " [-0.19845732 0.19185821 0.96114781]\n", + " [-0.20045757 0.1588536 0.96673797]\n", + " [-0.20206974 0.12491703 0.971372 ]\n", + " [-0.20329178 0.09025061 0.97494989]\n", + " [-0.20412054 0.0550575 0.97739627]\n", + " [-0.20455274 0.01954302 0.97866043]\n", + " [-0.00118556 0.20985223 0.97773239]\n", + " [-0.00118556 0.20985223 0.97773239]\n", + " [-0.20461015 0.00696998 0.97881873]\n", + " [-0.20461015 0.00696998 0.97881873]\n", + " [-0.01379915 0.19805172 0.98009443]\n", + " [-0.04942232 0.19772367 0.97901113]\n", + " [-0.08475642 0.19701128 0.97673072]\n", + " [-0.11959564 0.19591776 0.97330012]\n", + " [-0.15373662 0.19444643 0.96879081]\n", + " [-0.18697743 0.19259955 0.96329894]\n", + " [-0.01395111 0.16395068 0.98636988]\n", + " [-0.04992687 0.1636812 0.98524909]\n", + " [-0.08561039 0.16309354 0.98288929]\n", + " [-0.12079486 0.16219177 0.97933775]\n", + " [-0.15527748 0.16098028 0.97466623]\n", + " [-0.18885795 0.15946229 0.96897082]\n", + " DEBUG:root:fitpix2pix: visCut: True\n", + "3 1.16921429e+03]\n", + " [ 4.18250000e+03 1.46164286e+03]\n", + " [ 4.18250000e+03 1.75407143e+03]\n", + " [ 4.18250000e+03 2.04650000e+03]\n", + " [ 2.13650000e+03 1.27000000e+02]\n", + " [ 2.13650000e+03 4.85400000e+02]\n", + " [ 2.13650000e+03 8.43800000e+02]\n", + " [ 2.13650000e+03 1.20220000e+03]\n", + " [ 2.13650000e+03 1.56060000e+03]\n", + " [ 2.13650000e+03 1.91900000e+03]\n", + " [ 2.26300000e+03 4.99999770e-01]\n", + " [ 2.62140000e+03 5.00000267e-01]\n", + " [ 2.97980000e+03 4.99999825e-01]\n", + " [ 3.33820000e+03 5.00000071e-01]\n", + " [ 3.69660000e+03 5.00000113e-01]\n", + " [ 4.05500000e+03 5.00000214e-01]\n", + " [ 2.26300000e+03 2.04550000e+03]\n", + " [ 2.62140000e+03 2.04550000e+03]\n", + " [ 2.97980000e+03 2.04550000e+03]\n", + " [ 3.33820000e+03 2.04550000e+03]\n", + " [ 3.69660000e+03 2.04550000e+03]\n", + " [ 4.05500000e+03 2.04550000e+03]\n", + " [ 4.18150000e+03 1.27000000e+02]\n", + " [ 4.18150000e+03 4.85400000e+02]\n", + " [ 4.18150000e+03 8.43800000e+02]\n", + " [ 4.18150000e+03 1.20220000e+03]\n", + " [ 4.18150000e+03 1.56060000e+03]\n", + " [ 4.18150000e+03 1.91900000e+03]\n", + "DEBUG:root:radec2pix: curVec Shape: (96, 3)\n", + "[-0.0140777 0.12890725 0.99155673]\n", + " [-0.05033965 0.1286975 0.99040541]\n", + " [-0.08630574 0.12823673 0.9879811 ]\n", + " [-0.12176792 0.12752928 0.98433168]\n", + " [-0.15652378 0.12657997 0.97952939]\n", + " [-0.19037482 0.12539259 0.97367044]\n", + " [-0.01417814 0.09311572 0.99555434]\n", + " [-0.05065827 0.09296747 0.9943796 ]\n", + " [-0.08683905 0.092637 0.99190593]\n", + " [-0.12251113 0.09212815 0.98818188]\n", + " [-0.15747231 0.0914453 0.98328034]\n", + " [-0.19152571 0.09059206 0.97729779]\n", + " [-0.0142515 0.05677687 0.99828517]\n", + " [-0.05087978 0.05669199 0.99709441]\n", + " [-0.08720594 0.05649545 0.99458704]\n", + " [-0.12301955 0.05618991 0.99081223]\n", + " [-0.15811848 0.05577844 0.98584345]\n", + " [-0.19230704 0.0552636 0.97977749]\n", + " [-0.01429691 0.02010041 0.99969574]\n", + " [-0.0510015 0.0200803 0.99849668]\n", + " [-0.08740238 0.02002048 0.99597189]\n", + " [-0.12328852 0.0199219 0.99217088]\n", + " [-0.15845779 0.01978566 0.98716749]\n", + " [-0.19271515 0.01961272 0.98105872]]\n", + "DEBUG:root:radec2pix: lng: [270.4470398 270.51926185 270.61931513 270.76712536 271.00759894\n", + " 271.46762895 272.70005845 286.49130114 270.4470398 278.35667351\n", + " 285.95982213 293.02931263 299.43042278 305.11729798 310.10927793\n", + " 314.46353671 286.49130114 349.82837514 354.73471783 356.4521324\n", + " 357.32535522 357.85379375 358.20792761 358.46177059 314.46353671\n", + " 318.74333689 323.66697635 329.30072855 335.67617912 342.7610671\n", + " 350.43132356 358.46177059 270.50490909 270.61684574 270.79254775\n", + " 271.10819213 271.84151891 275.43536905 273.91748404 283.44327486\n", + " 292.27322451 300.11957347 306.89513227 312.65252806 338.59499359\n", + " 353.59240246 356.2502422 357.3507235 357.95203643 358.33094358\n", + " 316.24148386 321.91069268 328.61592969 336.43108737 345.29354618\n", + " 354.93182927 270.47451616 270.47451616 358.43326445 358.43326445\n", + " 274.16755516 284.27018764 293.54850553 301.6868684 308.61690354\n", + " 314.4285595 275.08714159 287.26177752 298.03288482 307.02206797\n", + " 314.30032851 320.13759497 276.52519686 291.76449803 304.37699404\n", + " 314.09790313 321.42651996 326.9808709 279.08719841 299.17442797\n", + " 313.73069285 323.57233622 330.30226172 335.07338778 284.88740412\n", + " 312.85952275 327.83358678 336.05769185 341.06068787 344.37815396\n", + " 308.1938338 339.99132199 348.00244679 351.46719972 353.38615059\n", + " 354.60255033]\n", + "DEBUG:root:radec2pix: curVec Shape: (96, 3)\n", + "DEBUG:root:radec2pix: xyfp: [[ 0.173161 -31.45819714]\n", + " [ 0.17304708 -27.07176857]\n", + " [ 0.17293316 -22.68534 ]\n", + " [ 0.17281925 -18.29891143]\n", + " [ 0.17270533 -13.91248287]\n", + " [ 0.17259141 -9.52605429]\n", + " [ 0.17247749 -5.13962573]\n", + " [ 0.17236358 -0.75319715]\n", + " [ 0.173161 -31.45819714]\n", + " [ 4.55958957 -31.45808322]\n", + " [ 8.94601814 -31.45796931]\n", + " [ 13.33244671 -31.45785538]\n", + " [ 17.71887528 -31.45774147]\n", + " [ 22.10530385 -31.45762756]\n", + " [ 26.49173242 -31.45751363]\n", + " [ 30.87816099 -31.45739971]\n", + " [ 0.17236358 -0.75319715]\n", + " [ 4.55879215 -0.75308323]\n", + " [ 8.94522072 -0.75296932]\n", + " [ 13.33164929 -0.7528554 ]\n", + " [ 17.71807786 -0.75274148]\n", + " [ 22.10450643 -0.75262756]\n", + " [ 26.490935 [ 2.13650000e+03 5.00000284e-01]\n", + " [ 2.13650000e+03 5.00000284e-01]\n", + " [ 4.18150000e+03 2.04550000e+03]\n", + " [ 4.18150000e+03 2.04550000e+03]\n", + " [ 2.26300000e+03 1.27000000e+02]\n", + " [ 2.62140000e+03 1.27000000e+02]\n", + " [ 2.97980000e+03 1.27000000e+02]\n", + " [ 3.33820000e+03 1.27000000e+02]\n", + " [ 3.69660000e+03 1.27000000e+02]\n", + " [ 4.05500000e+03 1.27000000e+02]\n", + " [ 2.26300000e+03 4.85400000e+02]\n", + " [ 2.62140000e+03 4.85400000e+02]\n", + " [ 2.97980000e+03 4.85400000e+02]\n", + " [ 3.33820000e+03 4.85400000e+02]\n", + " [ 3.69660000e+03 4.85400000e+02]\n", + " [ 4.05500000e+03 4.85400000e+02]\n", + " [ 2.26300000e+03 8.43800000e+02]\n", + " [ 2.62140000e+03 8.43800000e+02]\n", + " [ 2.97980000e+03 8.43800000e+02]\n", + " [ 3.33820000e+03 8.43800000e+02]\n", + " [ 3.69660000e+03 8.43800000e+02]\n", + " [ 4.05500000e+03 8.43800000e+02]\n", + " [ 2.26300000e+03 1.20220000e+03]\n", + " [ 2.62140000e+03 1.20220000e+03]\n", + " [ 2.97980000e+03 1.20220000e+03]\n", + " [ 3.33820000e+03 1.20220000e+03]\n", + " [ 3.69660000e+03 1.20220000e+03]\n", + " [ 4.05500000e+03 1.20220000e+03]\n", + " [ 2.26300000e+03 1DEBUG:root:optics_fp: xyfp: [[ -0.172993 31.426621 ]\n", + " [ -0.172993 27.04019243]\n", + " [ -0.172993 22.65376385]\n", + " [ -0.172993 18.26733528]\n", + " [ -0.172993 13.88090671]\n", + " [ -0.172993 9.49447814]\n", + " [ -0.172993 5.10804957]\n", + " [ -0.172993 0.721621 ]\n", + " [ -0.172993 31.426621 ]\n", + " [ -4.55942157 31.426621 ]\n", + " [ -8.94585014 31.426621 ]\n", + " [-13.33227871 31.426621 ]\n", + " [-17.71870729 31.426621 ]\n", + " [-22.10513586 31.426621 ]\n", + " [-26.49156443 31.426621 ]\n", + " [-30.877993 31.426621 ]\n", + " [ -0.172993 0.721621 ]\n", + " [ -4.55942157 0.721621 ]\n", + " [ -8.94585014 0.721621 ]\n", + " [-13.33227872 0.721621 ]\n", + " [-17.71870728 0.721621 ]\n", + " [-22.10513586 0.721621 ]\n", + " [-26.49156443 0.721621 ]\n", + " [-30.877993 0.721621 ]\n", + " [-30.877993 31.426621 ]\n", + " [-30.877993 27.04019243]\n", + " [-30.877993 22.65376385]\n", + " [-30.877993 18.26733529]\n", + " [-30.877993 13.88090671]\n", + " [-30.877993 9.49447814]\n", + " [-30.877993 5.10804957]\n", + " [-30.877993 0.721621 ]\n", + " [ -0.187993 29.514121 ]\n", + " [ -0.187993 24.138121 ]\n", + " [ -0.187993 18.76212101]\n", + " [ -0.187993 13.386121 ]\n", + " [ -0.187993 8.010121 ]\n", + " [ -0.187993 2.634121 ]\n", + " [ -2.085493 31.411621 ]\n", + " [ -7.461493 31.411621 ]\n", + " [-12.837493 31.411621 ]\n", + " [-18.213493 31.411621 ]\n", + " [-23.589493 31.411621 ]\n", + " [-28.965493 31.411621 ]\n", + " [ -2.085493 0.736621 ]\n", + " [ -7.461493 0.736621 ]\n", + " [-12.837493 0.736621 ]\n", + " [-18.213493 0.736621 ]\n", + " [-23.58949299 0.736621 ]\n", + " [-28.965493 0.736621 ]\n", + " [-30.862993 29.514121 ]\n", + " [-30.862993 24.138121 ]\n", + " [-30.862993 18.762121 ]\n", + " [-30.862993 13.386121 ]\n", + " [-30.862993 8.010121 ]\n", + " [-30.862993 2.634121 ]\n", + " [ -0.187993 31.411621 ]\n", + " [ -0.187993 31.411621 ]\n", + " [-30.862993 0.736621 ]\n", + " [-30.862993 0.736621 ]\n", + " [ -2.085493 29.514121 ]\n", + " [ -7.461493 29.514121 ]\n", + " [-12.837493 29.514121 ]\n", + " [-18.213493 29.514121 ]\n", + " [-23.589493 29.514121 ]\n", + " [-28.965493 29.514121 ]\n", + " [ -2.085493 24.138121 ]\n", + " [ -7.461493 24.138121 ]\n", + "DEBUG:root:radec2pix: lng: [ 90.2964384 90.3478894 90.41900227 90.52370941 90.69317626\n", + " 91.01436915 91.85606354 99.82098825 90.2964384 98.16139155\n", + " 105.72927905 112.77495178 119.16321868 124.84620437 129.84075369\n", + " 134.20177453 99.82098825 167.3372664 173.45282833 175.5877589\n", + " 176.67095531 177.32554882 177.76380439 178.07772632 134.20177453\n", + " 138.45558903 143.3516981 148.95804019 155.308999 162.37619731\n", + " 170.03980495 178.07772632 90.34583364 90.4272438 90.55456533\n", + " 90.78188435 91.3031483 93.7291305 93.74640471 103.2233069\n", + " 112.02083939 119.85139884 126.62419493 132.38733532 153.55676438\n", + " 172.05771641 175.35290167 176.71349424 177.45570466 177.92289984\n", + " 135.96861356 141.60475991 148.27615291 156.06135558 164.90482616\n", + " 174.54251233 90.32368928 90.32368928 178.04899302 178.04899302\n", + " 93.98561362 104.03389942 113.27790792 121.40147615 128.33121468\n", + " 134.15142333 94.8637718 106.96302166 117.69569442 126.6774761\n", + " 133.96694623 139.82391059 96.23245551 111.36280739 123.94129691\n", + " 133.676108 141.03771084 146.62863656 98.65756574 118.5861081\n", + " 133.14971036 143.05690148 149.85595749 154.68575435 104.09063117\n", + " 131.90726386 147.0632386 155.45116677 160.56901612 163.96684771\n", + " 125.42327674 158.50946167 167.09834094 170.82105172 172.88266004\n", + " 174.18898669]\n", + "-0.75251364]\n", + " [ 30.87736356 -0.75239973]\n", + " [ 30.87816099 -31.45739971]\n", + " [ 30.87804707 -27.07097114]\n", + " [ 30.87793315 -22.68454257]\n", + " [ 30.87781924 -18.29811401]\n", + " [ 30.87770532 -13.91168544]\n", + " [ 30.87759141 -9.52525687]\n", + " [ 30.87747749 -5.1388283 ]\n", + " [ 30.87736356 -0.75239973]\n", + " [ 0.18811133 -29.54569675]\n", + " [ 0.18797171 -24.16969676]\n", + " [ 0.1878321 -18.79369675]\n", + " [ 0.18769248 -13.41769676]\n", + " [ 0.18755286 -8.04169676]\n", + " [ 0.18741324 -2.66569676]\n", + " [ 2.08566061 -31.44314748]\n", + " [ 7.46166061 -31.44300785]\n", + " [ 12.83766061 -31.44286824]\n", + " [ 18.2136606 -31.44272862]\n", + " [ 23.5896606 -31.442589 ]\n", + " [ 28.9656606 -31.44244938]\n", + " [ 2.08486397 -0.76814748]\n", + " [ 7.46086396 -0.76800786]\n", + " [ 12.83686396 -0.76786825]\n", + " [ 18.21286396 -0.76772863]\n", + " [ 23.58886395 -0.76758901]\n", + " [ 28.96486395 -0.7674494 ]\n", + " [ 30.86311132 -29.54490011]\n", + " [ 30.86297171 -24.16890011]\n", + " [ 30.86283209 -18.79290011]\n", + " [ 30.86269247 -13.41690011]\n", + " [ 30.86255285 -8.04090011]\n", + " [ 30.86241323 -2.66490012]\n", + " [ 0.18816061 -31.44319675]\n", + " [ 0.18816061 -31.44319675]\n", + " [ 30.86236396 -0.76740012]\n", + " [ 30.86236396 -0.76740012]\n", + " [ 2.08561133 -29.54564748]\n", + " [ 7.46161133 -29.54550785]\n", + " [ 12.83761133 -29.54536824]\n", + " [ 18.21361133 -29.54522862]\n", + " [ 23.58961132 -29.545089 ]\n", + " [ 28.96561132 -29.54494938]\n", + " [ 2.08547171 -24.16964747]\n", + " [ 7.46147171 -24.16950786]\n", + " [ 12.83747171 -24.16936824]\n", + " [ 18.21347171 -24.16922862]\n", + " [ 23.58947171 -24.16908901]\n", + " [ 28.9654717 -24.16894939]\n", + " [ 2.0853321 -18.79364747]\n", + " [ 7.46133209 -18.79350785]\n", + " [ 12.83733209 -18.79336824]\n", + " [ 18.21333209 -18.79322862]\n", + " [ 23.58933209 -18.79308901]\n", + " [ 28.96533209 -18.79294939]\n", + " [ 2.08519248 -13.41764748]\n", + " [ 7.46119248 -13.41750786]\n", + " [ 12.83719247 -13.41736824]\n", + " [ 18.21319248 -13.41722863]\n", + " [ 23.58919247 -13.41708901]\n", + " [ 28.96519247 -13.41694939]\n", + " [ 2.08505286 -8.04164748]\n", + " [ 7.46105286 -8.04150786]\n", + " [ 12.83705286 -8.04136825]\n", + " [ 18.21305286 -8.04122863]\n", + " [ 23.58905286 -8.04108901]\n", + " [ 28.96505285 -8.04094939]\n", + " [ 2.08491324 -2.66564748]\n", + " [ 7.46091324 -2.66550786]\n", + " [ 12.83691324 -2.66536825]\n", + " [ 18.21291324 -2.66522863]\n", + " [ 23.58891323 -2.66508901]\n", + " [ 28.96491324 -2.66494939]]\n", + " [-12.837493 24.138121 ]\n", + " [-18.213493 24.138121 ]\n", + " [-23.589493 24.138121 ]\n", + " [-28.965493 24.138121 ]\n", + " [ -2.085493 18.762121 ]\n", + " [ -7.461493 18.762121 ]\n", + " [-12.837493 18.762121 ]\n", + " [-18.213493 18.762121 ]\n", + " [-23.589493 18.762121 ]\n", + " [-28.965493 18.762121 ]\n", + " [ -2.085493 13.386121 ]\n", + " [ -7.461493 13.386121 ]\n", + " [-12.837493 13.386121 ]\n", + " [-18.213493 13.386121 ]\n", + " [-23.589493 13.386121 ]\n", + " [-28.965493 13.386121 ]\n", + " [ -2.085493 8.010121 ]\n", + " [ -7.461493 8.010121 ]\n", + " [-12.837493 8.010121 ]\n", + " [-18.213493 8.010121 .56060000e+03]\n", + " [ 2.62140000e+03 1.56060000e+03]\n", + " [ 2.97980000e+03 1.56060000e+03]\n", + " [ 3.33820000e+03 1.56060000e+03]\n", + " [ 3.69660000e+03 1.56060000e+03]\n", + " [ 4.05500000e+03 1.56060000e+03]\n", + " [ 2.26300000e+03 1.91900000e+03]\n", + " [ 2.62140000e+03 1.91900000e+03]\n", + " [ 2.97980000e+03 1.91900000e+03]\n", + " [ 3.33820000e+03 1.91900000e+03]\n", + " [ 3.69660000e+03 1.91900000e+03]\n", + " [ 4.05500000e+03 1.91900000e+03]]\n", + " ]\n", + " [-23.589493 8.010121 ]\n", + " [-28.965493 8.010121 ]\n", + " [ -2.085493 2.634121 ]\n", + " [ -7.461493 2.634121 ]\n", + " [-12.837493 2.634121 ]\n", + " [-18.213493 2.634121 ]\n", + " [-23.589493 2.634121 ]\n", + " [-28.965493 2.634121 ]]\n", + "DEBUG:root:radec2pix: camVec: [[ 0.00152888 0.00154215 0.00155354 0.00156302 0.00157054 0.00157606\n", + " 0.00157952 0.00158089 0.00152888 0.03055413 0.0594604 0.08813528\n", + " 0.11646734 0.14434605 0.17166149 0.1983039 0.00158089 0.03159291\n", + " 0.06147904 0.0911219 0.12040769 0.14922671 0.17747265 0.2050409\n", + " 0.1983039 0.20004855 0.20153434 0.2027606 0.20372608 0.20442907\n", + " 0.20486781 0.2050409 0.00163462 0.00165059 0.00166353 0.00167335\n", + " 0.00167995 0.00168324 0.01419184 0.04970047 0.08491857 0.11964057\n", + " 0.15366298 0.18678351 0.01467408 0.05138704 0.08779394 0.12368372\n", + " 0.15885436 0.19311093 0.19900616 0.20096941 0.20254341 0.2037261\n", + " 0.2045144 0.20490517 0.00162826 0.00162826 0.20494776 0.20494776\n", + " 0.01424722 0.04989441 0.08525013 0.12010852 0.15426631 0.18752167\n", + " 0.01438645 0.05038177 0.08608239 0.1212815 0.15577635 0.18936679\n", + " 0.01449922 0.05077617 0.08675481 0.12222707 0.15699061 0.19084708\n", + " 0.01458479 0.05107523 0.08726392 0.1229415 0.15790584 0.1919602\n", + " 0.01464229 0.05127607 0.08760541 0.12341989 0.15851749 0.19270261\n", + " 0.01467095 0.05137612 0.08777538 0.12365776 0.15882123 0.1930708 ]\n", + " [-0.20769103 -0.1801941 -0.15200928 -0.12324112 -0.09399571 -0.06438234\n", + " -0.03451442 -0.00450904 -0.20769103 -0.20754198 -0.20712371 -0.20643751\n", + " -DEBUG:root:radec2pix: camVec: [[-0.00156258 -0.00157957 -0.00159468 -0.00160787 -0.00161907 -0.00162822\n", + " -0.00163527 -0.00164017 -0.00156258 -0.0305812 -0.05948043 -0.08814769\n", + " -0.11647141 -0.14434091 -0.17164574 -0.19827444 -0.00164017 -0.03165868\n", + " -0.06155164 -0.09120162 -0.12049415 -0.14931846 -0.17756745 -0.20513658\n", + " -0.19827444 -0.2000398 -0.20154417 -0.20278831 -0.20377138 -0.20449167\n", + " -0.20494724 -0.20513658 -0.00166992 -0.00169047 -0.00170796 -0.0017223\n", + " -0.00173334 -0.001741 -0.0142227 -0.04972296 -0.08493191 -0.1196437\n", + " -0.15365451 -0.18676067 -0.01473616 -0.05145726 -0.08787283 -0.12377083\n", + " -0.15894736 -0.19320639 -0.19898619 -0.20097311 -0.20256914 -0.20377339\n", + " -0.20458276 -0.20499385 -0.00166195 -0.00166195 -0.20504339 -0.20504339\n", + " -0.01428012 -0.04992014 -0.08526785 -0.1201171 -0.15426444 -0.18750721\n", + " -0.01442512 -0.05041664 -0.08611259 -0.12130566 -0.1557929 -0.1893742\n", + " -0.01454351 -0.0508198 -0.08679712 -0.1222667 -0.15702557 -0.19087549\n", + " -0.014634DEBUG:root:radec2pix: camVec: [[ 0.00114566 0.00115565 0.00116422 0.00117136 0.00117701 0.00118116\n", + " 0.00118376 0.00118481 0.00114566 0.03017404 0.05908469 0.08776498\n", + " 0.11610332 0.14398904 0.17131174 0.19796003 0.00118481 0.03120455\n", + " 0.06110052 0.09075528 0.1200543 0.14888674 0.17714546 0.20472589\n", + " 0.19796003 0.19971011 0.20119978 0.20242973 0.20339908 0.20410611\n", + " 0.20454887 0.20472589 0.00124992 0.00126219 0.00127213 0.00127966\n", + " 0.00128472 0.00128725 0.01380981 0.04932315 0.08454761 0.11927732\n", + " 0.15330846 0.18643745 0.01428113 0.05100494 0.08742589 0.12333185\n", + " 0.15851879 0.19279062 0.19866498 0.20063357 0.20221208 0.20339952\n", + " 0.20419277 0.20458843 0.00124504 0.00124504 0.2046327 0.2046327\n", + " 0.01386393 0.04951642 0.08487904 0.1197456 0.15391263 0.18717755\n", + " 0.01400003 0.0500023 0.08571147 0.12092013 0.15542529 0.1890269\n", + " 0.01411023 0.05039551 0.08638432 0.12186779 0.15664287 0.19051132\n", + " 0.014190.2054851 -0.20426815 -0.20278791 -0.2010451 -0.00450904 -0.00450572\n", + " -0.00449643 -0.00448126 -0.00446035 -0.00443385 -0.00440189 -0.00436457\n", + " -0.2010451 -0.17444879 -0.14716869 -0.11931453 -0.09099614 -0.06232394\n", + " -0.03340929 -0.00436457 -0.1957935 -0.16161745 -0.12651199 -0.09067166\n", + " -0.05429781 -0.01760077 -0.20756647 -0.20720276 -0.20643606 -0.20526936\n", + " -0.20370571 -0.20174719 -0.00461102 -0.00460274 -0.00458538 -0.00455917\n", + " -0.0045244 -0.0044813 -0.18954613 -0.15647489 -0.12248558 -0.08778034\n", + " -0.05256249 -0.01703747 -0.20759824 -0.20759824 -0.00446412 -0.00446412\n", + " -0.19576354 -0.19542056 -0.19469787 -0.19359884 -0.19212697 -0.19028463\n", + " -0.16159264 -0.16130879 -0.16071144 -0.15980479 -0.15859338 -0.15708053\n", + " -0.12649245 -0.12626898 -0.12579928 -0.12508774 -0.12413931 -0.12295784\n", + " -0.09065756 -0.09049631 -0.09015775 -0.08964573 -0.08896468 -0.0881182\n", + " -0.05428931 -0.05419219 -0.05398843 -0.05368064 -0.05327188 -0.0527647\n", + " -0.01759801 -0.01756642 -0.01750018 -0.01740019 -0.0172675 -0.01710301]\n", + " [ 0.97819328 0.98362986 0.98837785 0.99237552 0.99557136 0.99792406\n", + " 0.99940295 0.99998858 0.97819328 0.97774883 0.97650613 0.97448229\n", + " 0.97170532 0.9682142 0.96405881 0.95929997 0.99998858 0.99949066\n", + " 0.99809825 0.99582966 0.99271451 0.98879307 0.98411589 0.97874367\n", + " 0.95929997 0.9641308 0.96836217 0.97193219 0.97478992 0.97689533\n", + " 0.9782193 0.97874367 0.98064379 0.9868521 0.99196368 0.99587944\n", + " 0.99852337 0.99984368 0.97811796 0.97703474 0.97476817 0.97136534\n", + " 0.96689796 0.96146242 0.9998817 0.99866821 0.9961281 0.99231122\n", + " 0.98729166 0.9811667 0.96149301 0.9670196 0.97158296 0.97508476\n", + " 0.9774513 0.97863353 0.97821282 0.97821282 0.97876273 0.97876273\n", + " 0.98054763 0.97944952 0.97715155 0.97370089 0.9691693 0.96365314\n", + " 0.98675268 0.98561714 0.98324039 0.97966996 0.97497788 0.9692605\n", + " 0.9918616 0.99069568 0.9882551 0.98458804 0.979767 0.97388848\n", + " 0.99577532 0.99458621 0.99209707 0.98835673 0.98343837 0.97743873\n", + " 0.99841789 0.9972131 0.99469118 0.99090157 0.985918 0.97983753\n", + " 0.9997375 0.99852487 0.99598656 0.99217236 0.98715635 0.98103576]]\n", + "51 -0.05112705 -0.08731762 -0.122996 -0.15795892 -0.19200933\n", + " -0.01469728 -0.05133568 -0.08766989 -0.12348855 -0.15858803 -0.19277198\n", + " -0.01473117 -0.05144352 -0.08785049 -0.12374011 -0.1589085 -0.19315962]\n", + " [ 0.20900824 0.18154377 0.15338464 0.12463517 0.09540199 0.06579532\n", + " 0.03592916 0.00592057 0.20900824 0.20886066 0.2084416 0.2077524\n", + " 0.20679486 0.20557063 0.20408052 0.20232383 0.00592057 0.00591961\n", + " 0.00591082 0.00589429 0.00587015 0.00583856 0.00579969 0.00575368\n", + " 0.20232383 0.17576331 0.1485108 0.12067777 0.09237455 0.06371165\n", + " 0.03480051 0.00575368 0.19712565 0.16298492 0.12790428 0.09207897\n", + " 0.05571194 0.01901436 0.20888472 0.20852129 0.20775151 0.20657854\n", + " 0.20500532 0.20303275 0.00602383 0.00601719 0.0DEBUG:root:radec2pix: camVec Shape: (3, 96)\n", + "DEBUG:root:radec2pix: xyfp Shape: (96, 2)\n", + "DEBUG:root:make_az_asym: xyp: [[-32.203794 -31.5506227 ]\n", + " [-32.20328688 -27.16419416]\n", + " [-32.20277976 -22.77776561]\n", + " [-32.20227264 -18.39133707]\n", + " [-32.20176553 -14.00490853]\n", + " [-32.20125841 -9.61847999]\n", + " [-32.20075129 -5.23205144]\n", + " [-32.20024417 -0.8456229 ]\n", + " [-32.203794 -31.5506227 ]\n", + " [-27.81736545 -31.55112981]\n", + " [-23.43093691 -31.55163693]\n", + " [-19.04450837 -31.55214405]\n", + " [-14.65807983 -31.55265117]\n", + " [-10.27165129 -31.55315829]\n", + " [ -5.88522274 -31.5536654 ]\n", + " [ -1.4987942 -31.55417252]\n", + " [-32.20024417 -0.8456229 ]\n", + " [-27.81381563 -0.84613002]\n", + " [-23.42738708 -0.84663714]\n", + " [-19.04095854 -0.84714426]\n", + " [-14.65453 -0.84765137]\n", + " [-10.26810146 -0.84815849]\n", + " [ -5.88167292 -0.84866561]\n", + " [ -1.49524438 -0.84917273]\n", + " [ -1.4987942 -31.55417252]\n", + " [ -1.49828708 -27.16774398]\n", + " [ -1.49777997 -22.78131544]\n", + " [ -1.49727285 -18.39488689]\n", + " [ -1.49676573 -14.00845835]\n", + " [ -1.49625861 -9.62202981]\n", + " [ -1.49575149 -5.23560127]\n", + " [ -1.49524438 -0.84917273]\n", + " [-32.18857289 -29.63812445]\n", + " [-32.18795136 -24.26212448]\n", + " [-32.18732984 -18.88612452]\n", + " [-32.18670832 -13.51012455]\n", + " [-32.1860868 -8.13412459]\n", + " [-32.18546528 -2.75812462]\n", + " [-30.29129227 -31.5358438 ]\n", + " [-24.91529231 -31.53646533]\n", + " [-19.53929235 -31.53708685]\n", + " [-14.16329238 -31.53770837]\n", + " [ -8.78729242 -31.53832989]\n", + " [ -3.41129245 -31.53895142]\n", + " [-30.28774592 -0.86084401]\n", + " [-24.91174595 -0.86146553]\n", + " [-19.53574599 -0.86208705]\n", + " [-14.15974603 -0.86270858]\n", + " [ -8.78374606 -0.8633301 ]\n", + " [ -3.4077461 -0.86395162]\n", + " [ -1.5135731 -29.6416708 ]\n", + " [ -1.51295157 -24.26567084]\n", + " [ -1.51233005 -18.88967087]\n", + " [ -1.51170853 -13.51367091]\n", + " [ -1.51108701 -8.13767095]\n", + " [ -1.51046548 -2.76167097]\n", + " [-32.18879227 -31.53562444]\n", + " [-32.18879227 -31.53562444]\n", + " [ -1.51024611 -0.86417099]\n", + " [ -1.51024611 -0.86417099]\n", + " [-30.29107291 -29.63834382]\n", + " [-24.91507294 -29.63896534]\n", + " [-19.53907298 -29.63958686]\n", + " [-14.16307301 -29.64020839]\n", + " [ -8.78707305 -29.64082991]DEBUG:root:radec2pix: lat: [77.88072123 79.48382459 81.11902826 82.7811435 84.46512008 86.16588026\n", + " 87.87809063 89.592501 77.88072123 77.76297714 77.43489604 76.91632478\n", + " 76.23510116 75.42235372 74.50888673 73.52311865 89.592501 88.1660092\n", + " 86.47326812 84.77720909 83.09335022 81.42892112 79.7896882 78.18111406\n", + " 73.52311865 74.53938675 75.48898077 76.34336174 77.07095847 77.63894653\n", + " 78.01676209 78.18111406 78.57535641 80.56236957 82.59241544 84.65614182\n", + " 86.74415968 88.84595283 77.86145981 77.57369823 76.98847403 76.15398719\n", + " 75.12717296 73.96382281 89.0844999 87.04713438 84.96761219 82.90419496\n", + " 80.87086863 78.87814184 73.97634463 75.18085203 76.25721571 77.14851635\n", + " 77.79468183 78.14215534 77.8861108 77.8861108 78.18637455 78.18637455\n", + " 78.54888043 78.24034026 77.6156038 76.73023014 75.64791869 74.42908235\n", + " 80.52930205 80.14668621 79.38566385 78.33252026 77.07564982 75.68958597\n", + " 82.54926459 82.05674096 81.10786838 79.84412063 78.38693881 76.82298725\n", + " 84.59535958 83.92250159 82.7051798 81.18260126 79.50799917 77.76802141\n", + " 86.64409097 85.63122317 84.03581665 82.22723271 80.34771821 78.45776966\n", + " 88.58657998 86.85792078 84.85560606 82.82572865 80.81119712 78.83059106]\n", + "0599868 0.00596852\n", + " 0.005927 0.00587443 0.19084173 0.15780847 0.12384677 0.08916013\n", + " 0.05395206 0.01842821 0.20891558 0.20891558 0.00585328 0.00585328\n", + " 0.19709662 0.19675396 0.1960282 0.19492287 0.19344162 0.19158618\n", + " 0.16296111 0.16267787 0.16207774 0.1611649 0.15994417 0.15841917\n", + " 0.12788582 0.12766348 0.12719172 0.12647465 0.12551724 0.12432386\n", + " 0.09206603 0.09190638 0.09156653 0.09104984 0.09036055 0.08950266\n", + " 0.05570466 0.05560934 0.05540465 0.05509277 0.05467653 0.0541587\n", + " 0.01901283 0.01898296 0.01891568 0.01881174 0.01867213 0.01849786]\n", + " [ 0.97791263 0.9833816 0.98816527 0.99220134 0.99543751 0.99783181\n", + " 0.999353 0.99998113 0.97791263 0.97746714 0.97622445 0.97420169\n", + " 0.97142694 0.96793926 0.96378882 0.9590378 0.0506935 0.08689379 0.12258434 0.15756175 0.19162897\n", + " 0.0142499 0.05089361 0.08723571 0.12306478 0.15817704 0.19237609\n", + " 0.01427798 0.05099373 0.08740674 0.12330495 0.15848438 0.1927489 ]\n", + " [-0.20812604 -0.1806373 -0.15245726 -0.12369032 -0.09444319 -0.06482624\n", + " -0.03495355 -0.00494229 -0.20812604 -0.20797994 -0.20756351 -0.20687811\n", + " -0.20592557 -0.20470759 -0.20322504 -0.20147731 -0.00494229 -0.00493875\n", + " -0.0049287 -0.00491221 -0.00488939 -0.0048604 -0.00482538 -0.00478446\n", + " -0.20147731 -0.17488831 -0.14761103 -0.11975687 -0.09143612 -0.06275929\n", + " -0.03383788 -0.00478446 -0.19623245 -0.16206424 -0.12696122 -0.09111882\n", + " -0.05474021 -0.01803675 -0.20800294 -0.20764209 -0.20687664 -0.20570979\n", + " -0.20414458 -0.20218204 -0.00504426 -0.00503536 -0.00501654 -0.004988\n", + " -0.00495001 -0.00490286 -0.1899823 -0.15691665 -0.12292805 -0.08821992\n", + " -0.05299579 -0.01746139 -0.2080333 -0.2080333 -0.00488406 -0.00488406\n", + " -0.19620382 -0.19586344 -0.1951417 -0.19404219 -0.19256861 -0.19072284\n", + " -0.16204052 -0.16175873 -0.16116182 -0.16025398 -0.15904007 -0.15752379\n", + " -0.12694255 -0.12672084 -0.12625153 -0.1255387 -0.12458735 -0.12340188\n", + " -0.09110536 -0.09094551 -0.09060732 -0.09009413 -0.08941017 -0.08855947\n", + " -0.05473209 -0.05463571 -0.05443186 -0.05412272 -0.05371108 -0.05319971\n", + " -0.01803407 -0.01800225 -0.01793496 -0.01783294 -0.01769716 -0.01752858]\n", + " [ 0.97810134 0.9835491 0.98830938 0.99232018 0.99552956 0.99789587\n", + " 0.99938824 0.99998708 0.97810134 0.97766757 0.97643555 0.97442227\n", + " 0.97165564 0.96817455 0.96402898 0.95928031 0.99998708 0.99950082\n", + " 0.99811945 0.99586111 0.99275529 0.98884231 0.98417285 0.97880765\n", + " 0.95928031 0.96412134 0.96836441 0.97194676 0.97481703 0.97693499\n", + " 0.97827131 0.97880765 0.98055661 0.9867794 0.99190687 0.99583921\n", + " 0.9984998 0.9998365 0.97803071 0.97696059 0.97470701 0.97131684\n", + " 0.96686168 0.96143824 0.9998853 0.99868571 0.9961584 0.99235295\n", + " 0.9873435DEBUG:root:fitpix2pix: ccdpx: shape: (96, 2)\n", + "5 0.98122767 0.96147748 0.96701775 0.97159609 0.97511327\n", + " 0.97749515 0.97869233 0.97812095 0.97812095 0.97882665 0.97882665\n", + " 0.98046512 0.97938023 0.97709532 0.97365734 0.96913788 0.96363342\n", + " 0.98668479 0.98556272 0.98319907 0.97964125 0.97496115 0.96925491\n", + " 0.9918097 0.99065742 0.98822988 0.98457518 0.97976579 0.97389805\n", + " 0.9957401 0.99456477 0.9920886 0.98836032 0.98345316 0.97746384\n", + " 0.99839939 0.99720849 0.9946995 0.99092169 0.98594885 0.97987817\n", + " 0.99973542 0.99853671 0.99601124 0.99220858 0.98720287 0.98109154]]\n", + "3718 0.99998113 0.99948121\n", + " 0.9980864 0.995815 0.99269668 0.98877192 0.98409154 0.97871644\n", + " 0.95903718 0.96389384 0.9681552 0.97175809 0.97465079 0.9767927\n", + " 0.97815416 0.97871644 0.98037681 0.98662711 0.99178505 0.99575022\n", + " 0.99844538 0.99981769 0.97783684 0.97675304 0.9744875 0.97108738\n", + " 0.9666246 0.96119621 0.99987327 0.99865707DEBUG:root:radec2pix: curVec: [[-0.16646141 -0.27449863 0.94706974]\n", + " [-0.14457048 -0.29192858 0.94545073]\n", + " [-0.12213045 -0.30946535 0.94303518]\n", + " [-0.09922459 -0.32702635 0.9397916 ]\n", + " [-0.07593733 -0.34453222 0.93569817]\n", + " [-0.0523557 -0.36190583 0.93074328]\n", + " [-0.02856998 -0.37907205 0.92492602]\n", + " [-0.0046734 -0.39595812 0.91825668]\n", + " [-0.16646141 -0.27449863 0.94706974]\n", + " [-0.18389473 -0.29561787 0.93743949]\n", + " [-0.20104159 -0.31648242 0.92704971]\n", + " [-0.21783503 -0.33701619 0.91595196]\n", + " [-0.23420905 -0.35714793 0.90420765]\n", + " [-0.25009813 -0.37681143 0.89188793]\n", + " [-0.26543682 -0.39594545 0.87907366]\n", + " [-0.28015933 -0.41449354 0.86585556]\n", + " [-0.0046734 -0.39595812 0.91825668]\n", + " [-0.0228195 -0.41769642 0.90830005]\n", + " [-0.04088461 -0.43899064 0.89756095]\n", + " [-0.0587978 -0.45976221 0.88609341]\n", + " [-0.0764904 -0.47993966 0.87396061]\n", + " [-0.09389618 -0.49945873 0.86123428]\n", + " [-0.11095096 -0.51826173 0.8479945 ]\n", + " [-0.12759157 -0.53629627 0.83433009]\n", + " [-0.28015933 -0.41449354 0.86585DEBUG:root:fitpix2pix: visCut: True\n", + "DEBUG:root:radec2pix: camVec Shape: (3, 96)\n", + "DEBUG:root:cartToSphere: vec: [[ 0.00152888 -0.20769103 0.97819328]\n", + " [ 0.00154215 -0.1801941 0.98362986]\n", + " [ 0.00155354 -0.15200928 0.98837785]\n", + " [ 0.00156302 -0.12324112 0.99237552]\n", + " [ 0.00157054 -0.09399571 0.99557136]\n", + " [ 0.00157606 -0.06438234 0.99792406]\n", + " [ 0.00157952 -0.03451442 0.99940295]\n", + " [ 0.00158089 -0.00450904 0.99998858]\n", + " [ 0.00152888 -0.20769103 0.97819328]\n", + " [ 0.03055413 -0.20754198 0.97774883]\n", + " [ 0.0594604 -0.20712371 0.97650613]\n", + " [ 0.08813528 -0.20643751 0.97448229]\n", + " [ 0.11646734 -0.2054851 0.97170532]\n", + " [ 0.14434605 -0.20426815 0.9682142 ]\n", + " [ 0.17166149 -0.20278791 0.96405881]\n", + " [ 0.1983039 -0.2010451 0.95929997]\n", + " [ 0.00158089 -0.00450904 0.99998858]\n", + " [ 0.03159291 -0.00450572 0.99949066]\n", + " [ 0.06147904 -0.00449643 0.99809825]\n", + " [ 0.0911219 -0.00448126 0.99582966]\n", + " [ 0.12040769 -0.00446035 0.99271451]\n", + " [ 0.14922671 -0.00443385 0.98879307]\n", + " [ 0.17747265 -0.00440189 0.98411589]\n", + " [ 0.2050409 -0.00436457 0.97874367]\n", + " [ 0.1983039 -0.2010451 0.95929997]\n", + " [ 0.20004855 -0.17444879 0.9641308 ]\n", + " [ 0.20153434 -0.14716869 0.96836217]\n", + " [ 0.2027606 -0.11931453 0.97193219]\n", + " [ 0.20372608 -0.09099614 0.97478992]\n", + " [ 0.20442907 -0.06232394 0.97689533]\n", + " [ 0.20486781 -0.03340929 0.9782193 ]\n", + " [ 0.2050409 -0.00436457 0.97874367]\n", + " [ 0.00163462 -0.1957935 0.98064379]\n", + " [ 0.00165059 -0.16161745 0.9868521 ]\n", + " [ 0.00166353 -0.12651199 0.99196368]\n", + " [ 0.00167335 -0.09067166 0.99587944]\n", + " [ 0.00167995 -0.05429781 0.99852337]\n", + " [ 0.00168324 -0.01760077 0.99984368]\n", + " [ 0.01419184 -0.20756647 0.97811796]\n", + " [ 0.04970047 -0.20720276 0.97703474]\n", + " [ 0.08491857 -0.20643606 0.97476817]\n", + " [ 0.11964057 -0.20526936 0.97136534]\n", + " [ 0.15366298 -0.20370571 0.96689796]\n", + " [ 0.18678351 -0.20174719 0.96146242]\n", + " [ 0.01467408 -0.00461102 0.9998817 ]\n", + " [ 0.05138704 -0.00460274 0.99866821]\n", + " [ 0.08779394 -0.00458538 0.9961281 ]\n", + " [ 0.12368372 -0.00455917 0.99231122]\n", + " [ 0.15885436 -0.0045244 0.98729166]\n", + " [ 0.19311093 -0.0044813 0.9811667 ]\n", + " [ 0.19900616 -0.18954613 0.96149301]\n", + " [ 0.20096941 -0.15647489 0.9670196 ]\n", + " [ 0.20254341 -0.12248558 0.97158296]\n", + " [ 0.2037261 -0.08778034 0.97508476]\n", + " [ 0.2045144 -0.05256249 0.9774513 ]\n", + " [ 0.20490517 -0.01703747 0.97863353]\n", + " [ 0.00162826 -0.20759824 0.97821282]\n", + " [ 0.00162826 -0.20759824 0.97821282]\n", + " [ 0.20494776 -0.00446412 0.97876273]\n", + " [ 0.20494776 -0.00446412 0.97876273]\n", + " [ 0.01424722 -0.19576354 0.98054763]\n", + " [ 0.04989441 -0.19542056 0.97944952]\n", + " [ 0.08525013 -0.19469787 0.97715155]\n", + " [ 0.12010852 -0.19359884 0.97370089]\n", + " [ 0.15426631 -0.19212697 0.9691693 ]\n", + " [ 0.18752167 -0.19028463 0.96365314]\n", + " [ 0.01438645 -0.16159264 0.98675268]\n", + " [ 0.05038177 -0.16130879 0.98561714]\n", + " [ 0.08608239 -0.16071144 0.98324039]\n", + " [ 0.1212815 -0.15980479 0.97966996]\n", + " [ 0.15577635 -0.15859338 0.97497788]\n", + " [ 0.18936679 -0.15708053 0.9692605 ]\n", + " [ 0.01449922 -0.12649245 0.9918616 ]\n", + " [ 0.05077617 -0.12626898 0.99069568]\n", + " [ 0 0.99611364 0.99229288\n", + " 0.98726927 0.98114055 0.96124083 0.9668021 0.97140502 0.97494968\n", + " 0.97736128 0.97858976 0.97793227 0.97793227 0.97873538 0.97873538\n", + " 0.98028006 0.97918122 0.976884 0.97343565 0.96890806 0.96339804\n", + " 0.98652704 0.98539031 0.98301344 0.97944414 0.97475455 0.96904116\n", + " 0.99168226 0.99051471 0.98807314 0.98440592 0.97958583 0.97370947\n", + " 0.99564536 0.99445424 0.99196331 0.98822159 0.98330257 0.97730327\n", + " 0.99833911 0.99713201 0.99460762 0.9908155 0.98582976 0.97974782\n", + " 0.99971071 0.99849547 0.99595406 0.99213633 0.98711673 0.98099296]]\n", + ".08675481 -0.12579928 0.9882551 ]\n", + " [ 0.12222707 -0.12508774 0.98458804]\n", + " [ 0.15699061 -0.12413931 0.979767 ]\n", + " [ 0.19084708 -0.12295784 0.97388848]\n", + " [ 0.01458479 -0.09065756 0.99577532]\n", + " [ 0.05107523 -0.09049631 0.99458621]\n", + " [ 0.08726392 -0.09015775 0.99209707]\n", + " [ 0.1229415 -0.08964573 0.98835673]\n", + " [ 0.15790584 -0.08896468 0.98343837]\n", + " [ 0.1919602 -0.0881182 0.97743DEBUG:root:optics_fp: xyfp shape: (96, 2)\n", + "DEBUG:root:optics_fp: rtanth: [31.72889598 27.34254715 22.95622881 18.56996252 14.18379661 9.79786588\n", + " 5.41274207 1.03869565 31.72889598 32.05497925 32.96668106 34.41749464\n", + " 36.342913 38.67211172 41.33689193 44.27670445 1.03869565 4.67736497\n", + " 9.00877953 13.37609754 17.75284128 22.13341982 26.51593264 30.89955671\n", + " 44.27670445 41.24704355 38.47976296 36.03536075 33.98358137 32.39910327\n", + " 31.35285463 30.89955671 29.81652098 24.44065782 19.06487182 13.68925392\n", + " 8.31413013 2.94220985 31.78219953 32.5803988 34.21489906 36.57374743\n", + " 39.52747698 42.9535403 2.33383998 7.53796979 12.88401801 18.24767393\n", + " 23.61694389 28.9887086 42.91616052 39.37153369 36.28003925 33.76636764\n", + " 31.96711857 31.00691067 31.71398377 31.71398377 30.88506563 30.88506563\n", + " 29.88906763 30.73646927 32.46394115 34.94119572 38.021962 41.57228381\n", + " 24.52910914 25.55486988 27.6084825 30.48291307 33.97043457 37.9021848\n", + " 19.17813281 20.47376266 22.98590632 26.36914053 30.3\n", + " [ -3.41107308 -29.64145143]\n", + " [-30.29045138 -24.26234385]\n", + " [-24.91445142 -24.26296538]\n", + " [-19.53845145 -24.2635869 ]\n", + " [-14.16245149 -24.26420842]\n", + " [ -8.78645152 -24.26482994]\n", + " [ -3.41045156 -24.26545147]\n", + " [-30.28982986 -18.88634389]\n", + " [-24.91382989 -18.88696541]\n", + " [-19.53782993 -18.88758693]\n", + " [-14.16182997 -18.88820846]\n", + " [ -8.78583 -18.88882997]\n", + " [ -3.40983004 -18.8894515 ]\n", + " [-30.28920834 -13.51034392]\n", + " [-24.91320837 -13.51096545]\n", + " [-19.53720841 -13.51158697]\n", + " [-14.16120844 -13.51220849]\n", + " [ -8.78520848 -13.51283002]\n", + " [ -3.40920852 -13.51345154]\n", + " [-30.28858681 -8.13434396]\n", + " [-24.91258685 -8.13496548]\n", + " [-19.53658688 -8.135587 ]\n", + " [-14.16058692 -8.13620852]\n", + " [ -8.78458696 -8.13683005]\n", + " [ -3.40858699 -8.13745157]\n", + " [-30.28796529 -2.75834399]\n", + " [-24.91196532 -2.75896552]\n", + " [-19.53596536 -2.75958704]\n", + " [-14.1599654 -2.76020856]\n", + " [ -8.78396543 -2.76083009]\n", + " [ -3.40796547 -2.76145161]]\n", + "DEBUG:root:radec2pix: camVec Shape: (3, 96)\n", + "3338108 34.67995379\n", + " 13.846556 15.59170589 18.7690762DEBUG:root:mm_to_pix: fitpx: [[0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]]\n", + "DEBUG:root:make_az_asym: xyp: shape: (96, 2)\n", + "873]\n", + " [ 0.01464229 -0.05428931 0.99841789]\n", + " [ 0.05127607 -0.05419219 0.9972131 ]\n", + " [ 0.08760541 -0.05398843 0.99469118]\n", + " [ 0.12341989 -0.05368064 0.99090157]\n", + " [ 0.15851749 -0.05327188 0.985918 ]\n", + " [ 0.19270261 -0.0527647 0.97983753]\n", + " [ 0.01467095 -0.01759801 0.9997375 ]\n", + " [ 0.05137612 -0.01756642 0.99852487]\n", + " [ 0.08777538 -0.01750018 0.99598656]\n", + " [ 0.12365776 -0.01740019 0.99217236]\n", + " [ 0.15882123 -0.0172675 0.98715635]\n", + " [ 0.1930708 -0.01710301 0.98103576]]\n", + "7 22.78723124 27.27710291 32.04099765\n", + " 8.57065926 11.17275166 15.2972975 20.02465966 25.01538387 30.13892197\n", + " 3.60389222 8.02260672 13.1734259 18.4531524 23.77606504 29.11848994]\n", + "556]\n", + " [-0.26003259 -0.43244838 0.86334897]\n", + " [-0.23920466 -0.45035535 0.86020997]\n", + " [-0.21776249 -0.46812848 0.85640833]\n", + " [-0.1957928 -0.48568565 0.85192408]\n", + " [-0.17338251 -0.50294844 0.84674753]\n", + " [-0.15061921 -0.51984218 0.84087928]\n", + " [-0.12759157 -0.53629627 0.83433009]\n", + " [-0.15705 -0.28215241 0.94642766]\n", + " [-0.12984127 -0.30359774 0.94391189]\n", + " [-0.10189037 -0.32512091 0.9401674 ]\n", + " [-0.0DEBUG:root:radec2pix: lat: [77.94367134 79.54902489 81.18632945 82.85028944 84.53583766 86.23790238\n", + " 87.95095267 89.65971994 77.94367134 77.82164346 77.48801235 76.9631292\n", + " 76.27533882 75.45615131 74.53651433 73.54460591 89.65971994 88.15347287\n", + " 86.45230283 84.75294209 83.0672058 81.4014907 79.76129308 78.15206149\n", + " 73.54460591 74.55768324 75.50238779 76.35047091 77.07044991 77.62962616\n", + " 77.99774795 78.15206149 78.63928322 80.62896884 82.66134588 84.72698979\n", + " 86.81649257 88.91826945 77.92273249 77.62880737 77.03600995 76.19348076\n", + " 75.15884594 73.98801233 89.08995442 87.02817045 84.94370871 82.87794501\n", + " 80.84312687 78.84936896 73.99670581 75.19609757 76.26512012 77.14708483\n", + " 77.78216783 78.11748405 77.94905666 77.94905666 78.15735777 78.15735777\n", + " 78.61100015 78.29575797 77.66281562 76.76884154 75.67835331 74.45201735\n", + " 80.5936009 80.20229517 79.43086524 78.36733491 77.10116027 75.70726987\n", + " 82.61510476 82.11071991 81.1484309 79.87243611 78.40512567 76.83322353\n", + " 84.66162432 83.97115888 82.73646392 81.20037729 79.51583908 77.76861975\n", + " 86.70802953 85.66590929 84.05006409 82.22924953 80.34192865 78.44668306\n", + " 88.6299785 86.85760815 84.84280506 82.80723116 80.78933117 78.80649174]\n", + "7335214 -0.34657453 0.93515002]\n", + " [-0.04438688 -0.36781659 0.92883839]\n", + " [-0.01516206 -0.38870969 0.92123552]\n", + " [-0.17401972 -0.28379256 0.94296284]\n", + " [-0.19520261 -0.30951552 0.93064283]\n", + " [-0.21588871 -0.33477965 0.91723206]\n", + " [-0.23595609 -0.35945175 0.9028395 ]\n", + " [-0.25528414 -0.38340989 0.88759611]\n", + " [-0.27375218 -0.40654338 0.87165488]\n", + " [-0.0126723 -0.40542821 0.91403905]\n", + " [-0.03486654 -0.43178235 0.90130368]\n", + " [-0.05686829 -0.45739076 0.8874456 ]\n", + " [-0.07855013 -0.48211887 0.87257737]\n", + " [-0.09979012 -0.50584832 0.85683103]\n", + " [-0.12047058 -0.52847515 0.84035757]\n", + " [-0.27142603 -0.42225981 0.86488413]\n", + " [-0.24627469 -0.4442443 0.86139177]\n", + " [-0.22015665 -0.46607112 0.85691817]\n", + " [-0.19323166 -0.48758752 0.8514223 ]\n", + " [-0.16565976 -0.50864911 0.84488634]\n", + " [-0.13760268 -0.5291201 0.83DEBUG:root:make_az_asym: xyp: [[ -0.172993 31.426621 ]\n", + " [ -0.172993 27.04019243]\n", + " [ -0.172993 22.65376385]\n", + " [ -0.172993 18.26733528]\n", + " [ -0.172993 13.88090671]\n", + " [ -0.172993 9.49447814]\n", + " [ -0.172993 5.10804957]\n", + " [ -0.172993 0.721621 ]\n", + " [ -0.172993 31.426621 ]\n", + " [ -4.55942157 31.426621 ]\n", + " [ -8.94585014 31.426621 ]\n", + " [-13.33227871 31.426621 ]\n", + " [-17.71870729 31.426621 ]\n", + " [-22.10513586 31.426621 ]\n", + " [-26.49156443 31.426621 ]\n", + " [-30.877993 31.426621 ]\n", + " [ -0.172993 0.721621 ]\n", + " [ -4.55942157 0.721621 ]\n", + " [ -8.94585014 0.721621 ]\n", + " [-13.33227872 0.721621 ]\n", + " [-17.71870728 0.721621 ]\n", + " [-22.10513586 0.721621 ]\n", + " [-26.49156443 0.721621 ]\n", + " [-30.877993 0.721621 ]\n", + " [-30.877993 31.426621 ]\n", + " [-30.877993 27.04019243]\n", + " [-30.877993 22.65376385]\n", + " [-30.877993 18.26733529]\n", + " [-30.877993 13.88090671]\n", + " [-30.877993 9.49447814]\n", + " [-30.877993 5.10804957]\n", + " [-30.877993 0.721621 ]\n", + " [ -0.187993 29.514121 ]\n", + " [ -0.187993 24.138121 ]\n", + " [ -0.187993 18.76212101]\n", + " [ -0.187993 13.386121 ]\n", + " [ -0.187993 8.010121 ]\n", + " [ -0.187993 2.634121 ]\n", + " [ -2.085493 31.411621 ]\n", + " [ -7.461493 31.411621 ]\n", + " [-12.837493 31.411621 ]\n", + " [-18.213493 31.411621 ]\n", + " [-23.589493 31.411621 ]\n", + " [-28.965493 31.411621 ]\n", + " [ -2.085493 0.736621 ]\n", + " [ -7.461493 0.736621 ]\n", + " [-12.837493 0.736621 ]\n", + " [-18.213493 0.736621 ]\n", + " [-23.58949299 0.736621 ]\n", + " [-28.965493 0.736621 ]\n", + " [-30.862993 29.514121 ]\n", + " [-30.862993 24.138121 ]\n", + " [-30.862993 18.762121 ]\n", + " [-30.862993 13.386121 ]\n", + " [-30.862993 8.010121 ]\n", + " [-30.862993 2.634121 ]\n", + " [ -0.187993 31.411621 ]\n", + " [ -0.187993 31.411621 ]\n", + " [-30.862993 0.736621 ]\n", + " [-30.862993 0.736621 ]\n", + " [ -2.085493 29.514121 ]\n", + " [ -7.461493 29.514121 ]\n", + " [-12.837493 29.514121 ]\n", + " [-18.213493 29.514121 ]\n", + " [-23.589493 29.514121 ]\n", + " [-28.965493 29.514121 ]\n", + " [ -2.085493 24.138121 ]\n", + " [ -7.461493 24.138121 DEBUG:root:cartToSphere: vec: [[ 0.00114566 -0.20812604 0.97810134]\n", + " [ 0.00115565 -0.1806373 0.9835491 ]\n", + " [ 0.00116422 -0.15245726 0.98830938]\n", + " [ 0.00117136 -0.12369032 0.99232018]\n", + " [ 0.00117701 -0.09444319 0.99552956]\n", + " [ 0.00118116 -0.06482624 0.99789587]\n", + " [ 0.00118376 -0.03495355 0.99938824]\n", + " [ 0.00118481 -0.00494229 0.99998708]\n", + " [ 0.00114566 -0.20812604 0.97810134]\n", + " [ 0.03017404 -0.20797994 0.97766757]\n", + " [ 0.05908469 -0.20756351 0.97643555]\n", + " [ 0.08776498 -0.20687811 0.97442227]\n", + " [ 0.11610332 -0.20592557 0.97165564]\n", + " [ 0.14398904 -0.20470759 0.96817455]\n", + " [ 0.17131174 -0.20322504 0.96402898]\n", + " [ 0.19796003 -0.20147731 0.95928031]\n", + " [ 0.00118481 -0.00494229 0.99998708]\n", + " [ 0.03120455 -0.00493875 0.99950082]\n", + " [ 0.06110052 -0.0049287 0.99811945]\n", + " [ 0.09075528 -0.00491221 0.99586111]\n", + " [ 0.1200543 -0.00488939 0.99275529]\n", + " [ 0.14888674 -0.0048604 0.98884231]\n", + " [ 0.17714546 -0.00482538 0.98417285]\n", + " [ 0.20472589 -0.00478446 0.97880765]\n", + " [ 0.19796003 -0.20147731 0.95928DEBUG:root:optics_fp: cphi: [-0.0051738 -0.00607178 -0.0073129 -0.00914033 -0.01209791 -0.01770316\n", + " -0.03238875 -0.17057046 -0.0051738 -0.14196195 -0.27109236 -0.38711253\n", + " -0.48729918 -0.57137557 -0.64065601 -0.69718731 -0.17057046 -0.97567733\n", + " -0.99347832 -0.99703634 -0.99831251 -0.99891078 -0.99923847 -0.99943725\n", + " -0.69718731 -0.74844189 -0.80231456 -0.85678989 -0.9085738 -0.95306497\n", + " -0.98492815 -0.99943725 -0.0060359 -0.00745674 -0.00967884 -0.01364603\n", + " -0.02274227 -0.06503966 -0.06534051 -0.22874689 -0.3749438 -0.49775222\n", + " -0.59656384 -0.67413914 -0.89537598 -0.99040776 -0.99671262 -0.99835535\n", + " -0.9990142 -0.99934296 -0.71895916 -0.78374506 -0.85059233 -0.91398049\n", + " -0.96549457 -0.99546704 -0.00564941 -0.00564941 -0.9994203 -0.9994203\n", + " -0.06950599 -0.24249594 -0.39519134 -0.52103162 -0.62020649 -0.69655704\n", + " -0.08478692 -0.29175445 -0.46477551 -0.59730991 -0.69424327 -0.76406532\n", + " -0.10856248 -0.36427233 -0.55834321 -0.69058088 -0.77756 -0.83512289\n", + " -0.15052868 -0.47847897]\n", + " [-12.837493 24.138121 ]\n", + " [-18.213493 24.138121 ]\n", + " [-23.589493 24.138121 ]\n", + " [-28.965493 24.138121 ]\n", + " [ -2.085493 18.762121 ]\n", + " [ -7.461493 18.762121 ]\n", + " [-12.837493 18.762121 ]\n", + " [-18.213493 18.762121 ]\n", + " [-23.589493 18.762121 ]\n", + " [-28.965493 18.762121 ]\n", + " [ -2.085493 13.386121 ]\n", + " [ -7.461493 13.386121 ]\n", + " [-12.837493 13.386121 ]\n", + " [-18.213493 13.386121 ]\n", + " [-23.589493 13.386121 ]\n", + " [-28.965493 13.386121 ]\n", + " [ -2.085493 8.010121 ]\n", + " [ -7.461493 8.010121 ]\n", + " [-12.837493 8.010121 ]\n", + " [-18.213493 8.010121 ]\n", + " [-23.589493 8.010121 ]\n", + " [-28.965493 8.010121 ]\n", + " [ -2.085493 2.634121 ]\n", + " [ -7.461493 2.634121 ]\n", + " [-12.837493 2.634121 ]\n", + " [-18.213493 2.634121 ]\n", + " [-23.589493 2.634121 ]\n", + " [-28.965493 2.634121 ]]\n", + "DEBUG:root:mm_to_pix: fitpx.shape: (96, 2)\n", + " -0.68390701 -0.79923279 -0.86476566 -0.90397627\n", + " -0.24345642 -0.66792691 -0.83927119 -0.9096075 -0.9430429 -0.96110205\n", + " -0.57961227 -0.9304DEBUG:root:radec2pix: lng: [270.42176524 270.49034045 270.58554379 270.72662079 270.95724718\n", + " 271.40230304 272.6202602 289.32090211 270.42176524 278.37487059\n", + " 286.01754065 293.1193046 299.54422335 305.24693184 310.24816583\n", + " 314.60671783 289.32090211 351.88332455 355.81697528 357.18453549\n", + " 357.87852145 358.29811982 358.57917324 358.78056782 314.60671783\n", + " 318.91052218 323.86153916 329.52530495 335.93162927 343.04519816\n", + " 350.73789032 358.78056782 270.47833289 270.58513886 270.75335014\n", + " 271.05727717 271.77214072 275.46283159 273.91137001 283.48836134\n", + " 292.36007687 300.23563069 307.02864268 312.79442784 342.55577414\n", + " 354.88167257 357.01022263 357.88894543 358.36857558 358.67064356\n", + " 316.39469688 322.09565632 328.83707711 336.69003224 345.58630386\n", + " 355.24690052 270.44938101 270.44938101 358.75219462 358.75219462\n", + " 274.16251665 284.32266507 293.64661849 301.81542209 308.76235319\n", + " 314.58099285 275.08757932 287.34521298 298.17498348 307.196148\n", + " 314.48659385 320.3241534 276.53899869 291.90639058 304.59126569\n", + " 314.33729311 321.66504236 327.20736404 279.1393103 299.43995741\n", + " 314.06556227 323.90144592 330.60294465 335.34278839 285.09401101\n", + " 313.41621828 328.3557916 336.49369688 341.42440255 344.68693562\n", + " 309.81698293 341.12351394 348.72452469 351.99035546 353.79501012\n", + " 354.93771634]\n", + "DEBUG:root:radec2pix: xyfp: [[-32.203794 -31.5506227 ]\n", + " [-32.20328688 -27.16419416]\n", + " [-32.20277976 -22.77776561]\n", + " [-32.20227264 -18.39133707]\n", + " [-32.20176553 -14.00490853]\n", + " [-32.20125841 -9.61847999]\n", + " [-32.20075129 -5.23205144]\n", + " [-32.20024417 -0.8456229 ]\n", + " [-32.203794 -31.5506227 ]\n", + " [-27.81736545 -31.55112981]\n", + " [-23.43093691 -31.55163693]\n", + " [-19.04450837 -31.55214405]\n", + " [-14.65807983 -31.55265117]\n", + " [-10.27165129 -31.55315829]\n", + " [ -5.88522274 -31.5536654 ]\n", + " [ -1.4987942 -31.55417252]\n", + " [-32.20024417 -0.8456229 ]\n", + " [-27.81381563 -0.84613002]\n", + " [-23.42738708 -0.84663714]\n", + " [-19.04095854 -0.84714426]\n", + " [-14.65453 -0.84765137]\n", + " [-10.26810146 -0.84815849]\n", + " [ -5.88167292 -0.84866561]\n", + " [ -1.4952473156 ]\n", + " [-0.16644761 -0.27463052 0.94703393]\n", + " [-0.16644761 -0.27463052 0.94703393]\n", + " [-0.12761454 -0.53618052 0.83440097]\n", + " [-0.12761454 -0.53618052 0.83440097]\n", + " [-0.16465319 -0.29134876 0.94234029]\n", + " [-0.18593638 -0.31715557 0.92996775]\n", + " [-0.20674075 -0.34248337 0.91649517]\n", + " [-0.2269445 -0.36719859 0.90203181]\n", + " [-0.2464275 -0.39117923 0.88670869]\n", + " [-0.2650696 -0.41431475 0.8706787 ]\n", + " [-0.1375231 -0.31288001 0.93978375]\n", + " [-0.15906391 -0.33889357 0.92728088]\n", + " [-0.18017666 -0.36437258 0.91365693]\n", + " [-0.20073965 -0.38918247 0.89902203]\n", + " [-0.22063389 -0.41320113 0.8835075 ]\n", + " [-0.23974102 -0.43631874 0.86726594]\n", + " [-0.10963676 -0.33447216 0.93600649]\n", + " [-0.13139595 -0.36064596 0.9234011 ]\n", + " [-0.15277848 -0.38623197 0.90966125]\n", + " [-0.17366204 -0.41109481 0.89489807]\n", + " [-0.19392819 -0.43511266 0.87924333]\n", + " [-0.21346009 -0.45817677 0.86284926]\n", + " [-0.08114867 -0.35597732 0.93096457]\n", + " [-0.10308652 -0.38226341 0.91828528]\n", + " [-0.12470051 -0.40791085 0.90446588]\n", + " [-0.14586711 -0.031]\n", + " [ 0.19971011 -0.17488831 0.96412134]\n", + " [ 0.20119978 -0.14761103 0.96836441]\n", + " [ 0.20242973 -0.11975687 0.97194676]\n", + " [ 0.20339908 -0.09143612 0.97481703]\n", + " [ 0.20410611 -0.06275929 0.97693499]\n", + " [ 0.20454887 -0.03383788 0.97827131]\n", + " [ 0.20472589 -0.00478446 0.97880765]\n", + " [ 0.00124992 -0.19623245 0.98055661]\n", + " [ 0.00126219 -0.16206424 0.9867794 ]\n", + " [ 0.00127213 -0.12696122 0.99190687]\n", + " [ 0.00127966 -0.09111882 0.99583921]\n", + " [ 0.00128472 -0.05474021 0.9984998 ]\n", + " [ 0.00128725 -0.01803675 0.9998365 ]\n", + " [ 0.01380981 -0.20800294 0.97803071]\n", + " [ 0.04932315 -0.20764209 0.97696059]\n", + " [ 0.08454761 -0.20687664 0.97470701]\n", + " [ 0.11927732 -0.20570979 0.97131684]\n", + " [ 0.15330846 -0.20414458 0.96686168]\n", + " [ 0.18643745 -0.20218204 0.96143824]\n", + " [ 0.01428113 -0.00504426 0.9998853 ]\n", + " [ 0.05100494 -0.00503536 0.99868571]\n", + " [ 0.08742589 -0.00501654 0.9961584 ]\n", + " [ 0.12333185 -0.004988 0.99235295]\n", + " [ 0.15851879 -0.00495001 0.98734355]\n", + " [ 0.19279062 -0.00490286 0.98122767]\n", + " [ 0.19866498 -0.1894327839 0.88961839]\n", + " [-0.16646764 -0.45676146 0.87387499]\n", + " [-0.186386 -0.47973615 0.85738759]\n", + " [-0.05221866 -0.37725292 0.92463693]\n", + " [-0.07429426 -0.40360195 0.91191328]\n", + " [-0.09610065 -0.42926435 0.89805166]\n", + " [-0.1175127 -0.45410454 0.88316467]\n", + " [-0.13841067 -0.47800246 0.86738465]\n", + " [-0.15867831 -0.50085231 0.85086318]\n", + " [-0.02301374 -0.39816111 0.91702677]\n", + " [-0.04518471 -0.42452283 0.90428906]\n", + " [-0.06714292 -0.4501535 0.8904233 ]\n", + " [-0.08876152 -0.47491822 0.87554216]\n", + " [-0.10991918 -0.49869817 0.85977782]\n", + " [-0.13049873 -0.521389 0.84328145]]\n", + "7808 -0.97475473 -0.98719494 -0.99229449 -0.99486127]\n", + "438 -0.84917273]\n", + " [ -1.4987942 -31.55417252]\n", + " [ -1.49828708 -27.16774398]\n", + " [ -1.49777997 -22.78131544]\n", + " [ -1.49727285 -18.39488689]\n", + " [ -1.49676573 -14.00845835]\n", + " [ -1.49625861 -9.62202981]\n", + " [ -1.49575149 -5.23560127]\n", + " [ -1.49524438 -0.84917273]\n", + " [-32.18857289 -29.63812445]\n", + " [-32.18795136 -24.26212448]\n", + " [-32.18732984 -18.88612452]\n", + " [-32.18670832 -13.51012455]\n", + " [-32.1860868 -8.13412459]\n", + " [-32.18546528 -2.75812462]\n", + " [-30.29129227 -31.5358438 ]\n", + " [-24.91529231 -31.53646533]\n", + " [-19.53929235 -31.53708685]\n", + " [-14.16329238 -31.53770837]\n", + " [ -8.78729242 -31.53832989]\n", + " [ -3.41129245 -31.53895142]\n", + " [-30.28774592 -0.86084401]\n", + " [-24.91174595 -0.86146553]\n", + " [-19.53574599 -0.86208705]\n", + " [-14.15974603 -0.86270858]\n", + " [ -8.78374606 -0.8633301 ]\n", + " [ -3.4077461 -0.86395162]\n", + " [ -1.5135731 -29.6416708 ]\n", + " [ -1.51295157 -24.26567084]\n", + " [ -1.51233005 -18.88967087]\n", + " [ -1.51170853 -13.51367091]\n", + " [ -1.51108701 -8.13767095]\n", + " [ -1.51046548 -2.76167097]\n", + " [-32.18879227 -31.53562444]\n", + " [-32.18879227 -31.53562444]\n", + " [ -1.51024611 -0.86417099]\n", + " [ -1.51024611 -0.86417099]\n", + " [-30.29107291 -29.63834382]\n", + " [-24.91507294 -29.63896534]\n", + " [-19.53907298 -29.63958686]\n", + " [-14.16307301 -29.64020839]\n", + " [ -8.78707305 -29.64082991]\n", + " [ -3.41107308 -29.64145143]\n", + " [-30.29045138 -24.26234385]\n", + " [-24.91445142 -24.26296538]\n", + " [-19.53845145 -24.2635869 ]\n", + " [-14.16245149 -24.26420842]\n", + " [ -8.78645152 -24.26482994]\n", + " [ -3.41045156 -24.26545147]\n", + " [-30.28982986 -18.88634389]\n", + " [-24.91382989 -18.88696541]\n", + " [-19.53782993 -18.88758693]\n", + " [-14.16182997 -18.88820846]\n", + " [ -8.78583 -18.88882997]\n", + " [ -3.40983004 -18.8894515 ]\n", + " [-30.28920834 -13.51034392]\n", + " [-24.91320837 -13.51096545]\n", + " [-19.53720841 -13.51158697]\n", + " [-14.16120844 -13.51220849]\n", + " [ -8.78520848 -13.51283002]\n", + " [ -3.40920852 -13.51345154]\n", + " [-30.28858681 -8.13434396]\n", + " [-24.91258685 -8.13496548]\n", + " [-19.53658688 -8.135587 ]\n", + " [-14.16058692 -8.13620852]\n", + " [ -8.78458696 -8.13683005]\n", + " [ -3.40858699 -8.13745157]\n", + " [-30.28796529 -2.75834399]\n", + " [-24.91196532 -2.75896552]\n", + " [-19.53596536 -2.75958704]\n", + " [-14.1599654 -2.76020856]\n", + " [ -8.78396543 -2.76083009]\n", + " [ -3.40796547 -2.76145161]]\n", + "9823 0.96147748]\n", + " [ 0.20063357 -0.15691665 0.96701775]\n", + " [ 0.20221208 -0.12292805 0.97159609]\n", + " [ 0.20339952 -0.08821992 0.97511327]\n", + " [ 0.20419277 -0.05299579 0.97749515]\n", + " [ 0.20458843 -0.01746139 0.97869233]\n", + " [ 0.00124504 -0.2080333 0.97812095]\n", + " [ 0.00124504 -0.DEBUG:root:radec2pix: curVec Shape: (96, 3)\n", + "DEBUG:root:optics_fp: sphi: [0.99998662 0.99998157 0.99997326 0.99995823 0.99992682 0.99984329\n", + " 0.99947535 0.98534548 0.99998662 0.98987212 0.96255334 0.92203248\n", + " 0.87323508 0.82068871 0.76782803 0.71688902 0.98534548 0.21921165\n", + " 0.11402118 0.07693204 0.0580701 0.04666103 0.03901907 0.03354371\n", + " 0.71688902 0.66320038 0.59690146 0.51566567 0.41772438 0.30276585\n", + " 0.17296396 0.03354371 0.99998178 0.9999722 0.99995316 0.99990689\n", + " 0.99974136 0.99788268 0.99786303 0.97348593 0.92704754 0.86731928\n", + " 0.80256563 0.73860437 0.44531096 0.13817549 0.08101827 0.0573289\n", + " 0.04439174 0.0362443 0.69505232 0.62108267 0.52582572 0.40575813\n", + " 0.26042318 0.09510716 0.99998404 0.99998404 0.03404492 0.03404492\n", + " 0.99758153 0.97015242 0.91859883 0.85353737 0.7844386 0.71750142\n", + " 0.99639911 0.95649325 0.88542855 0.80201052 0.71974043 0.64513889\n", + " 0.99408963 0.93129247 0.82961007 0.72325518 0.62880875 0.55006341\n", + " 0.98860564 0.87809901 0.72956919 0.60102159 0.50217562 0.42758264\n", + " 0.96991184 0.74422687 0.54371304 0.41546865 0.33267115 0.27619351\n", + " 0.81489239 0.36634758 0.22327834 0.15951848 0.12390179 0.10124753]\n", + "DEBUG:root:radec2pix: xyfp: [[ 0.173161 -31.45819714]\n", + " [ 0.17304708 -27.07176857]\n", + " [ 0.17293316 -22.68534 ]\n", + " [ 0.17281925 -18.29891143]\n", + " [ 0.17270533 -13.91248287]\n", + " [ 0.17259141 -9.52605429]\n", + " [ 0.17247749 -5.13962573]\n", + " [ 0.17236358 -0.75319715]\n", + " [ 0.173161 -31.45819714]\n", + " [ 4.55958957 -31.45808322]\n", + " [ 8.94601814 -31.45796931]\n", + " [ 13.33244671 -31.45785538]\n", + " [ 17.71887528 -31.45774147]\n", + " [ 22.10530385 -31.45762756]\n", + " [ 26.49173242 -31.45751363]\n", + " [ 30.87816099 -31.45739971]\n", + " [ 0.17236358 -0.75319715]\n", + " [ 4.55879215 -0.75308323]\n", + " [ 8.94522072 -0.75296932]\n", + " [ 13.33164929 -0.7528554 ]\n", + " [ 17.71807786 -0.75274148]\n", + " [ 22.10450643 -0.75262756]\n", + " [ 26.490935 -0.75251364]\n", + " [ 30.87736356 -0.75239973]\n", + " [ 30.87816099 -31.45739971]\n", + " [ 30.87804707 -27.07097114]\n", + " [ 30.87793315 -22.68454257]\n", + " [ 30.87781924 -18.29811401]\n", + " [ 30.87770532 -13.91168544]\n", + " [ 30.87759141 -9.52525687]\n", + " [ 30.87747749 -5.1388283 ]\n", + " [ 30.87736356 -0.75239973]\n", + " [ 0.18811133 -29.54569675]\n", + " [ 0.18797171 -24.16969676]\n", + " [ 0.1878321 -18.79369675]\n", + " [ 0.18769248 -13.41769676]\n", + " [ 0.18755286 -8.04169676]\n", + " [ 0.18741324 -2.66569676]\n", + " [ 2.08566061 -31.44314748]\n", + " [ 7.46166061 -31.44300785]\n", + " [ 12.83766061 -31.44286824]\n", + " [ 18.2136606 -31.44272862]\n", + " [ 23.5896606 -31.442589 ]\n", + " [ 28.9656606 -31.44244938]\n", + " [ 2.08486397 -0.76814748]\n", + " [ 7.46086396 -0.76800786]\n", + " [ 12.83686396 -0.76786825]\n", + " [ 18.21286396 -0.76772863]\n", + " [ 23.58886395 -0.76758901]\n", + " [ 28.96486395 -0.7674494 ]\n", + " [ 30.86311132 -29.54490011]\n", + " [ 30.86297171 -24.16890011]\n", + " [ 30.86283209 -18.79290011]\n", + " [ 30.86269247 -13.41690011]\n", + " [ 30.86255285 -8.04090011]\n", + " [ 30.86241323 -2.66490012]\n", + " [ 0.18816061 -31.44319675]\n", + " [ 0.18816061 -31.44319675]\n", + " [ 30.86236396 -0.76740012]\n", + " [ 30.86236396 -0.76740012]\n", + " [ 2.08561133 -29.54564748]\n", + " [ 7.46161133 -29.54550785]\n", + " [ 12.83761133 -29.54536824]\n", + " DEBUG:root:radec2pix: xyfp Shape: (96, 2)\n", + "DEBUG:root:radec2pix: lat: [78.01259544 79.61854981 81.2561548 82.92023352 84.60572556 86.30750292\n", + " 88.02000573 89.72623162 78.01259544 77.8905989 77.5557472 77.02861409\n", + " 76.33783962 75.51523956 74.59210732 73.59715789 89.72623162 88.17123291\n", + " 86.46586111 84.76551164 83.07960166 81.41406813 79.77423864 78.16538766\n", + " 73.59715789 74.60763881 75.5491728 76.39298182 77.10737428 77.65965515\n", + " 78.01977483 78.16538766 78.70852006 80.69871958 82.73128852 84.79686317\n", + " 86.88594315 88.98689611 77.99183548 77.69708601 77.10179122 76.25561048\n", + " 75.21673598 74.0417777 89.11867119 87.04263922 84.95641064 82.89040132\n", + " 80.8558565 78.86257349 74.04815363 75.2440736 76.30818941 77.18330532\n", + " 77.80960312 78.1346569 78.0179859 78.0179859 78.1707132 78.1707132\n", + " 78.68041726 78.36422733 77.72853599 76.83064382 75.73566662 74.50486571\n", + " 80.66353948 80.27068815 79.49543516 78.42701765 77.15572991 75.75689035\n", + " 82.68520532 82.17800874 81.21001267 79.9277617 78.4547DEBUG:root:make_az_asym: xyp: shape: (96, 2)\n", + "664 76.877901\n", + " 84.73149404 84.03535931 82.79194264 81.24820065 79.5578398 77.80619197\n", + " 86.77660248 85.72142555 84.09351686 82.26517071 80.37322779 78.47497463\n", + " 88.68716566 86.88752222 84.86498838 82.8264064 80.80719889 78.82380063]\n", + "DEBUG:root:optics_fp: rtanth: [31.53710793 27.15083443 22.76462071 18.37850955 13.99259736 9.60715672\n", + " 5.22337543 0.86680593 31.53710793 31.87457578 32.80044965 34.26706764\n", + " 36.20878157 38.55387546 41.23358186 44.18706537 0.86680593 4.70645911\n", + " 9.05713384 13.4310871 17.81117737 22.19377139 26.57763063 30.96221766\n", + " 44.18706537 41.17129315 38.42050918 35.99551614 33.96616479 32.40686702\n", + " 31.3877559 30.96221766 29.62479828 24.2490533 18.8734536 13.49817273\n", + " 8.12384367 2.75604003 31.59497037 32.40914016 34.06266769 36.44147428\n", + " 39.41445822 42.8581467 2.31847961 7.58192329 12.93825823 18.30612583\n", + " 23.67768384 29.05088524 42.83223469 39.30633844 36.23781045 33.75162698\n", + " 31.98387863 31.05748561 31.52222904 31.52222904 30.94762955 30.94762955\n", + " 29.70218682 30.56681395 32.3147502 34.81319861 37.91407742 41.48250822\n", + " 24.34353743 25.39129827 27.47054774 30.37016151 33.88015908 37.83102431\n", + " 18.99469609 20.32015484 22.86529373 26.27807784 30.26641445 34.63202369\n", + " 13.66718319 15.4564585 18.67659162 22.72731378 27.24058114 32.02140662\n", + " 8.40167037 11.07692547 15.25159806 20.00817233 25.01690288 30.15239046\n", + " 3.49098634 8.0185534 13.1988698 18.49123795 23.82109044 29.16788596]\n", + "DEBUG:root:cartToSphere: vec: [[-0.00156258 0.20900824 0.97791263]\n", + " [-0.00157957 0.18154377 0.9833816 ]\n", + " [-0.00159468 0.15338464 0.98816527]\n", + " [-0.00160787 0.12463517 0.99220134]\n", + " [-0.00161907 0.09540199 0.99543751]\n", + " [-0.00162822 0.06579532 0.99783181]\n", + " [-0.00163527 0.03592916 0.999353 ]\n", + " [-0.00164017 0.00592057 0.99998113]\n", + " [-0.00156258 0.20900824 0.97791263]\n", + " [-0.0305812 0.20886066 0.97746714]\n", + " [-0.05948043 0.2084416 0.97622445]\n", + " [-0.08814769 0.2077524 0.97420169]\n", + " [-0.11647141 0.20679486 0.97142694]\n", + " [-0.14434091 0.20557063 0.96793926]\n", + " [-0.17164574 0.20408052 0.96378882]\n", + " [-0.19827444 0.20232383 0.95903718]\n", + " [-0.00164017 0.00592057 0.99998113]\n", + " [-0.03165868 0.00591961 0.99948121]\n", + " [-0.06155164 0.00591082 0.9980864 ]\n", + " [-0.09120162 0.00589429 0.995815 ]\n", + " [-0.12049415 0.00587015 0.99269668]\n", + " [-0.14931846 0.00583856 0.98877192]\n", + " [-0.17756745 0.00579969 0.98409154]\n", + " [-0.20513658 0.00575368 0.97871644]\n", + " [-0.19827444 0.20232383 0.95903718]\n", + " [-0.2000398 0.17576331 0.96389384]\n", + " [-0.20154417 0.1485108 0.9681552 ]\n", + " [-0.20278831 0.12067777 0.97175809]\n", + " [-0.20377138 0.09237455 0.97465079]\n", + " [-0.20449167 0.06371165 0.9767927 ]\n", + " [-0.20494724 0.03480051 0.97815416]\n", + " [-0.20513658 0.00575368 0.97871644]\n", + " [-0.00166992 0.19712565 0.98037681]\n", + " [-0.00169047 0.16298492 0.98662711]\n", + " [-0.00170796 0.12790428 0.99178505]\n", + " [-0.0017223 0.09207897 0.99575022]\n", + " [-0.00173334 0.05571194 0.99844538]\n", + " [-0.001741 0.01901436 0.99981769]\n", + " [-0.0142227 0.20888472 0.97783684]\n", + " [-0.04972296 0.20852129 0.97675304]\n", + " [-0.08493191 0.20775151 0.9744875 ]\n", + " [-0.1196437 0.20657854 0.97108738]\n", + " [-0.15365451 0.20500532 0.9666246 ]\n", + " [-0.18676067 0.20303275 0.96119621]\n", + " [-0.01473616 0.00602383 0.99987327]\n", + " [-0.05145726 0.00601719 0.99865707]\n", + " [-0.08787283 0.00599868 0.99611364]\n", + " [-0.12377083 0.00596852 0.99229288]\n", + " [-0.15894736 0.005927 0.98726927]\n", + " [-0.19320639 0.00587443 0.98114055]\n", + " [-0.19898619 0.19084173 0.96124083]\n", + " [-0.20097311 0.15780847 0.9668021 ]\n", + " [-0.20256914 0.12384677 0.97140502]\n", + " [-0.20377339 0.08916013 0.97494968]\n", + " [-0.20458276 0.05395206 0.97736128]\n", + " [-0.20499385 0.01842821 0.97858976]\n", + " [-0.00166195 0.20891558 0.97793227]\n", + " [-0.00166195 0.20891558 0.97793227]\n", + " [-0.20504339 0.00585328 0.97873538]\n", + " [-0.20504339 0.00585328 0.97873538]\n", + " [-0.01428012 0.19709662 0.98028006]\n", + " [-0.04992014 0.19675396 0.97918122]\n", + " [-0.08526785 0.1960282 0.976884 ]\n", + " [-0.1201171 0.19492287 0.9734DEBUG:root:radec2pix: camVec: [[ 0.00152888 0.00154215 0.00155354 0.00156302 0.00157054 0.00157606\n", + " 0.00157952 0.00158089 0.00152888 0.03055413 0.0594604 0.08813528\n", + " 0.11646734 0.14434605 0.17166149 0.1983039 0.00158089 0.03159291\n", + " 0.06147904 0.0911219 0.12040769 0.14922671 0.17747265 0.2050409\n", + " 0.1983039 0.20004855 0.20153434 0.2027606 0.20372608 0.20442907\n", + " 0.20486781 0.2050409 0.00163462 0.00165059 0.00166353 0.00167335\n", + " 0.00167995 0.00168324 0.01419184 0.04970047 0.08491857 0.11964057\n", + " 0.15366298 0.18678351 0.01467408 0.05138704 0.08779394 0.12368372\n", + " 0.15885436 0.19311093 0.19900616 0.20096941 0.20254341 0.2037261\n", + " 0.2045144 0.20490517 0.00162826 0.00162826 0.20494776 0.20494776\n", + " 0.01424722 0.04989441 0.08525013 0.12010852 0.15426631 0.18752167\n", + " 0.01438645 0.05038177 0.08608239 0.1212815 0.15577635 0.18936679\n", + " 0.01449922 0.05077617 0.08675481 0.12222707 0.15699061 0.19084708\n", + " 0.01458[ 18.21361133 -29.54522862]\n", + " [ 23.58961132 -29.545089 ]\n", + " [ 28.96561132 -29.54494938]\n", + " [ 2.08547171 -24.16964747]\n", + " [ 7.46147171 -24.16950786]\n", + " [ 12.83747171 -24.16936824]\n", + " [ 18.21347171 -24.16922862]\n", + " [ 23.58947171 -24.16908901]\n", + " [ 28.9654717 -24.16894939]\n", + " [ 2.0853321 -18.79364747]\n", + " [ 7.46133209 -18.79350785]\n", + " [ 12.83733209 -18.79336824]\n", + " [ 18.21333209 -18.79322862]\n", + " [ 23.58933209 -18.79308901]\n", + " [ 28.96533209 -18.79294939]\n", + " [ 2.08519248 -13.41764748]\n", + " [ 7.46119248 -13.41750786]\n", + " [ 12.83719247 -13.41736824]\n", + " [ 18.21319248 -13.41722863]\n", + " [ 23.58919247 -13.41708901]\n", + " [ 28.96519247 -13.41694939]\n", + " [ 2.08505286 -8.04164748]\n", + " [ 7.46105286 -8.04150786]\n", + " [ 12.83705286 -8.04136825]\n", + " [ 18.21305286 -8.04122863]\n", + " [ 23.58905286 -8.04108901]\n", + " [ 28.96505285 -8.04094939]\n", + " [ 2.08491324 -2.66564748]\n", + " [ 7.46091324 -2.66550786]\n", + " [ 12.83691324 -2.66536825]\n", + " [ 18.21291324 -2.66522863]\n", + " [ 23.58891323 -2.66508901]\n", + " [ 28.96491324 -2.66494939]]\n", + "DEBUG:root:mm_to_pix: fitpx: [[0. 0.]\n", + " [0. DEBUG:root:radec2pix: curVec: [[ 0.16332736 -0.52891267 0.83281184]\n", + " [ 0.15578811 -0.5512467 0.81966892]\n", + " [ 0.14782443 -0.57360873 0.80568044]\n", + " [ 0.13947996 -0.59588051 0.79086773]\n", + " [ 0.13079599 -0.61795112 0.77526049]\n", + " [ 0.121812 -0.63971633 0.75889713]\n", + " [ 0.11256634 -0.66107828 0.741825 ]\n", + " [ 0.10309682 -0.68194554 0.72410035]\n", + " [ 0.16332736 -0.52891267 0.83281184]\n", + " [ 0.1386669 -0.52234455 0.84138437]\n", + " [ 0.11331065 -0.51537118 0.8494429 ]\n", + " [ 0.08736986 -0.50798648 0.85692254]\n", + " [ 0.06095344 -0.50019204 0.86376652]\n", + " [ 0.03416894 -0.49199709 0.86992606]\n", + " [ 0.00712335 -0.48341829 0.87536051]\n", + " [-0.02007644 -0.47447938 0.88003764]\n", + " [ 0.10309682 -0.68194554 0.72410035]\n", + " [ 0.07690074 -0.67675646 0.7321796 ]\n", + " [ 0.05010349 -0.67091969 0.7398354 ]\n", + " [ 0.02280919 -0.66442793 0.74700419]\n", + " [-0.00487792 -0.65728075 0.75363003]\n", + " [-0.03285156 -0.64948513 0.75966429]\n", + " [-0.06100261 -0.6410561 0.76506585]\n", + " [-0.08921932 -0.63201689 0.76980164]\n", + " [-0.02007644 -0.47447938 0.88003764]\n", + " [-0.02964096 -0.49737632 0.86702838]\n", + " [-0.03937699 -0.52032314 0.85306113]\n", + " [-0.049244 -0.54320696 0.83815346]\n", + " [-0.05920198 -0.56592007 0.82233181]\n", + " [-0.06921087 -0.5883587 0.80563261]\n", + " [-0.07923019 -0.61042282 0.78810314]\n", + " [-0.08921932 -0.63201689 0.76980164]\n", + " [ 0.16001176 -0.53861762 0.82721659]\n", + " [ 0.1504792 -0.56602533 0.81053768]\n", + " [ 0.14035293 -0.59335676 0.79260886]\n", + " [ 0.12970994 -0.62040469 0.77348132]\n", + " [ 0.11862298 -0.6469772 0.75322579]\n", + " [ 0.1071624 -0.6728968 0.73193314]\n", + " [ 0.15264255 -0.52617459 0.83656473]\n", + " [ 0.12193511 -0.51785414 0.84673426]\n", + " [ 0.09029344 -0.50891791 0.85606638]\n", + " [ 0.05791899 -0.49936563 0.86445322]\n", + " [ 0.02500984 -0.48921425 0.87180498]\n", + " [-0.0082371 -0.47849743 0.87805032]\n", + " [ 0.09178875 -0.67969128 0.7277325 ]\n", + " [ 0.05926566 -0.67289651 0.73735871]\n", + " [ 0.02594309 -0.66512105 0.74628476]\n", + " [-0.00798722 -0.6563612 0.75440452]\n", + " [-0.04232955 -0.64662993 0.76162848]\n", + " [-0.07688185 -0.6359583 0.76788425]\n", + " [-0.02412934 -0.48448015 0.87446942]\n", + " [-0.0359712 -0.51259103 0.85787908]\n", + " [-0.04803047 -0.54066396 0.83986639]\n", + " [-0.06023335 -0.56849859 0.82047627]\n", + " [-0.07250601 -0.59590385 0.79977589]\n", + " [-0.08477389 -0.62269742 0.77785687]\n", + " [ 0.16321934 -0.52896708 0.83279846]\n", + " [ 0.16321934 -0.52896708 0.83279846]\n", + " [-0.08908878 -0.63197587 0.76985043]\n", + " [-0.08908878 -0.63197587 0.76985043]\n", + " [ 0.14936981 -0.53586652 0.83098479]\n", + " [ 0.1184851 -0.52764417 0.84116164]\n", + " [ 0.08667631 -0.51877778 0.85050387]\n", + " [ 0.05414386 -0.50926731 0.85890351]\n", + " [ 0.02108513 -0.49913009 0.8662705 ]\n", + " [-0.01230301 -0.48840008 0.87253309]\n", + " [ 0.13967005 -0.56338915 0.81430028]\n", + " [ 0.10833167 -0.55544077 0.8244694 ]\n", + " [ 0.07609619 -0.54677236 0.83381614]\n", + " [ 0.04316096 -0.53738439 0.84223224]\n", + " [ 0.00972177 -0.52729472 0.84962684]\n", + " [-0.02402425 -0.51653798 0.85592719]\n", + " [ 0.12940186 -0.59083252 0.79634923]\n", + " [ 0.09767978 -0.58315396 0.80646768]\n", + " [ 0.06508501 -0.57468556 0.81578211]\n", + " [ 0.0318122 -0.56542768 0.82418416]\n", + " [-0.03565]\n", + " [-0.15426444 0.19344162 0.96890806]\n", + " [-0.18750721 0.19158618 0.96339804]\n", + " [-0.01442512 0.16296111 0.98652704]\n", + " [-0.05041664 0.16267787 0.98539031]\n", + " [-0.08611259 0.16207774 0.98301344]\n", + " [-0.12130566 0.1611649 0.97944414]\n", + " [-0.1557929 0.15994417 0.97475455]\n", + " [-0.1893742 0.15841917 0.96904116]\n", + " [-0.01454351 0.12788582 0.99168226]\n", + " [-0.0508198 0.12766348 0.99051471]\n", + " [-0.08679712 0.12719172 0.98807314]\n", + " [-0.1222667 0.12647465 0.98440592]\n", + " [-0.15702557 0.12551724 0.97958583]\n", + " [-0.19087549 0.12432386 0.97370947]\n", + " [-0.01463451 0.09206603 0.99564536]\n", + " [-0.05112705 0.09190638 0.99445424]\n", + " [-0.08731762 0.09156653 0.99196331]\n", + " [-0.122996 0.09104984 0.98822159]\n", + " [-0.15795892 0.09036055 0.98330257]\n", + " [-0.19200933 0.08950266 0.97730327]\n", + " [-0.01469728 0.05570466 0.99833911]\n", + " [-0.05133568 0.05560934 0.99713201]\n", + " [-0.08766989 0.05540465 0.99460762]\n", + " [-0.12348855 0.05509277 0.9908155 ]\n", + " [-0.15858803 0.05467653 0.98582976]\n", + " [-0.19277198 0.050.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]]\n", + "41587 0.97974782]\n", + " [-0.01473117 0.01901283 0.99971071]\n", + " [-0.05144352 0.01898296 0.99849547]\n", + " [-0.08785049 0.01891568 0.99595406]\n", + " [-0.12374011 0.01881174 0.99213633]\n", + " [-0.1589085 0.01867213 0.98711673]\n", + " [-0.19315962 0.01849786 0.98099296]]\n", + "2080333 0.97812095]\n", + " [ 0.2046327 -0.00488406 0.97882665]\n", + " [ 0.2046327 -0.00488406 0.97882665]\n", + " [ 0.01386393 -0.19620382 0.98046512]\n", + " [ 0.04951642 -0.19586344 0.97938023]\n", + " [ 0.08487904 -0.1951417 0.97709532]\n", + " [ 0.1197456 -0.19404219 0.97365734]\n", + " [ 0.15391263 -0.19256861 0.96913788]\n", + " [ 0.18717755 -0.19072284 0.96363342]\n", + " [ 0.01400003 -0.16204052 0.98668479]\n", + " [ 0.0500023 -0.16175873 0.98556272]\n", + " [ 0.08571147 -0.16116182 0.98319907]\n", + " [ 0.12092013 -0.16025398 0.97964125]\n", + " [ 0.15542529 -0.15904007 0.97496115]\n", + " [ 0.1890269 -0.15752379 0.96925491]\n", + " [ 0.01411023 -0.12694255 0.9918097 ]\n", + " [ 0.05039551 -0.12672084 0.99065742]\n", + " [ 0.08638432 -0.12625153 0.98822988]\n", + " [ 0.12186779 -0.1255387 0.98457518]\n", + " [ 0.15664287 -0.12458735 0.97976579]\n", + " [ 0.19051132 -0.12340188 0.97389805]\n", + " [ 0.01419378 -0.09110536 0.9957401 ]\n", + " [ 0.0506935 -0.09094551 0.99456477]\n", + " [ 0.08689379 DEBUG:root:optics_fp: xyfp: [[ 0.16415906 -31.72847131]\n", + " [ 0.16601788 -27.34204313]\n", + " [ 0.1678767 -22.95561497]\n", + " [ 0.16973552 -18.56918678]\n", + " [ 0.17159434 -14.1827586 ]\n", + " [ 0.17345315 -9.79633043]\n", + " [ 0.17531197 -5.40990225]\n", + " [ 0.17717079 -1.02347407]\n", + " [ 0.16415906 -31.72847131]\n", + " [ 4.55058724 -31.73033014]\n", + " [ 8.93701541 -31.73218895]\n", + " [ 13.32344359 -31.73404778]\n", + " [ 17.70987177 -31.73590659]\n", + " [ 22.09629995 -31.73776541]\n", + " [ 26.48272812 -31.73962422]\n", + " [ 30.8691563 -31.74148305]\n", + " [ 0.17717079 -1.02347407]\n", + " [ 4.56359897 -1.02533289]\n", + " [ 8.95002714 -1.02719171]\n", + " [ 13.33645532 -1.02905053]\n", + " [ 17.7228835 -1.03090935]\n", + " [ 22.10931168 -1.03276817]\n", + " [ 26.49573986 -1.03462699]\n", + " [ 30.88216803 -1.0364858 ]\n", + " [ 30.8691563 -31.74148305]\n", + " [ 30.87101512 -27.35505487]\n", + " [ 30.87287394 -22.96862669]\n", + " [ 30.87473276 -18.58219851]\n", + " [ 30.87659158 -14.19577034]\n", + " [ 30.8784504 -9.80934216]\n", + " [ 30.88030922 -5.42291398]\n", + " [ 30.88216803 -1.0364858 ]\n", + " [ 0.17996951 -29.81597784]\n", + " [ 0.18224768 DEBUG:root:radec2pix: xyfp: [[ -0.172993 31.426621 ]\n", + " [ -0.172993 27.04019243]\n", + " [ -0.172993 22.65376385]\n", + " [ -0.172993 18.26733528]\n", + " [ -0.172993 13.88090671]\n", + " [ -0.172993 9.49447814]\n", + " [ -0.172993 5.10804957]\n", + " [ -0.172993 0.721621 ]\n", + " [ -0.172993 31.426621 ]\n", + " [ -4.55942157 31.426621 ]\n", + " [ -8.94585014 31.426621 ]\n", + " [-13.33227871 31.426621 ]\n", + " [-17.71870729 31.426621 ]\n", + " [-22.10513586 31.426621 ]\n", + " [-26.49156443 31.426621 ]\n", + " [-30.877993 31.426621 ]\n", + " [ -0.172993 0.721621 ]\n", + " [ -4.55942157 0.721621 ]\n", + " [ -8.94585014 0.721621 ]\n", + " [-13.33227872 0.721621 ]\n", + " [-17.71870728 0.721621 ]\n", + " [-22.10513586 0.721621 ]\n", + " [-26.49156443 0.721621 ]\n", + " [-30.877993 0.721621 ]\n", + " [-30.877993 31.426621 ]\n", + " [-30.877993 27.04019243]\n", + " [-30.877993 22.65376385]\n", + " [-30.877993 18.26733529]\n", + " [-30.877993 13.88090671]\n", + " [-30.877993 9.49447814]\n", + " [-30.877993 5.10804957]\n", + " [-30.877993 0.721621 ]\n", + " [ -0.187993 29.514121 ]\n", + " [ -0.187993 DEBUG:root:optics_fp: rtanth: [31.36436077 26.97807037 22.59183361 18.20568928 13.8197254 9.43419362\n", + " 5.05021974 0.69781153 31.36436077 31.70156673 32.63030877 34.10229142\n", + " 36.05103355 38.40402676 41.09188526 44.05335752 0.69781153 4.66402697\n", + " 9.02778296 13.40634529 17.78878395 22.17280059 26.55761376 30.94288484\n", + " 44.05335752 41.04621131 38.30621526 35.89459992 33.88155828 32.34160155\n", + " 31.34453543 30.94288484 29.45203736 24.07626653 18.70062748 13.32527965\n", + " 7.95081375 2.58274138 31.42169962 32.23771351 33.8971959 36.28460223\n", + " 39.26738572 42.72102005 2.2467047 7.54947995 12.91295338 18.28378612\n", + " 23.65696634 29.03119064 42.70202201 39.18809499 36.13521339 33.66902518\n", + " 31.92578297 31.02758019 31.34947523 31.34947523 30.92821126 30.92821126\n", + " 29.52890302 30.39577404 32.15047118 34.65840831 37.76983569 41.34874196\n", + " 24.17023416 25.22195839 27.31111317 30.22332497 33.74617895 37.70891894\n", + " 18.82145258 20.1542562 22.71439544 26.14376082 30.14716324 34.52548949\n", + " 13.49432055 15.2984853 18.54166578 22.61295734 27.14223759 31.93523187\n", + " 8.23098104 10.94056736 15.14746618 19.92481371 24.9470123 30.09171641\n", + " 3.34726194 7.94676841 13.14917661 18.45137705 23.78673027 29.13702987]\n", + "DEBUG:root:mm_to_pix: fitpx.shape: (96, 2)\n", + "DEBUG:root:optics_fp: cphi: [0.00780224 0.0090627 0.01080888 0.01338846 0.01758501 0.02561216\n", + " 0.04710747 0.28386977 0.00780224 0.14533491 0.27496322 0.39120201\n", + " 0.49136628 0.57525223 0.64424749 0.70045521 0.28386977 0.98428319\n", + " 0.99578049 0.99808345 0.99891062 0.99929852 0.9995109 0.99963964\n", + " 0.70045521 0.75176312 0.80558693 0.85985876 0.91123211 0.95507721\n", + " 0.98608706 0.99963964 0.00881221 0.01076578 0.01383213 0.0193404\n", + " 0.03213503 0.09472286 0.06831973 0.23248256 0.37902375 0.50180626\n", + " 0.60035228 0.67755053 0.93102393 0.99375313 0.9978592 0.99893119\n", + " 0.99936126 0.99957574 0.72226117 0.78705016 0.85369562 0.91657981\n", + " 0.96723916 0.99609029 0.00828177 0.00828177 0.99962616 0.99962616\n", + " 0.07267344 0.24649478 0.39952529 0.52527664 0.62411014 0.700-0.09060732 0.9920886 ]\n", + " [ 0.12258434 -0.09009413 0.98836032]\n", + " [ 0.15756175 -0.08941017 0.98345316]\n", + " [ 0.19162897 -0.08855947 0.97746384]\n", + " [ 0.0142499 -0.05473209 0.99839939]\n", + " [ 0.05089361 -0.05463571 0.99720849]\n", + " [ 0.08723571 -0.05443186 0.9946995 ]\n", + " [ 0.12306478 -0.05412272 0.99092169]\n", + " [ 0.15817704 -0.05371108 0.98594885]\n", + " [ 0.19237609 -0.05319971 0.97987817]\n", + " [ 0.01427798 -0.01803407 0.99973542]\n", + " [ 0.05099373 -0.01800225 0.99853671]\n", + " [ 0.08740674 -0.01793496 0.99601124]\n", + " [ 0.12330495 -0.01783294 0.99220858]\n", + " [ 0.15848438 -0.01769716 0.98720287]\n", + " [ 0.1927489 -0.01752858 0.98109154]]\n", + "01939\n", + " 0.08867076 0.29673788 0.46997825 0.60212258 0.69841939 0.76758588\n", + " 0.11364014 0.37079245 0.56463565 0.69588651 0.78180916 0.83848868\n", + " 0.15793745 0.48747001 0.6912696 0.80460719 0.86865107 0.90684836\n", + " 0.25692034 0.68020319 0.84650539 0.91395454 0.94586289 0.96305996\n", + " 0.61832382 0.93964081 0.97815648 0.98893108 0.99334495 0.99556615]\n", + "0194377 -0.55539798 0.83158241]\n", + " [-0.03598492 -0.54463113 0.83790335]\n", + " [ 0.11864136 -0.61798989 0.77718255]\n", + " [ 0.08660318 -0.6105785 0.78720632]\n", + " [ 0.05371481 -0.60231353 0.79645033]\n", + " [ 0.02016902 -0.59319456 0.80480645]\n", + " [-0.01383962 -0.58323833 0.81218318]\n", + " [-0.04811182 -0.57247892 0.81850665]\n", + " [ 0.10746056 -0.64466948 0.75687085]\n", + " [ 0.07517217 -0.63752275 0.76675543]\n", + " [ 0.04205517 -0.62946459 0.77589026]\n", + " [ 0.00830129 -0.6204933 0.78416781]\n", + " [-0.02589459 -0.61062413 0.79149709]\n", + " [-0.06033187 -0.59989007 0.79780447]\n", + " [ 0.09592941 -0.67069349 0.73550512]\n", + " [ 0.06345603 -0.6638078 0.74520638]\n", + " [ 0.0301755 -0.6559585 0.75419353]\n", + " [-0.00372057 -0.64714242 0.76236005]\n", + " [-0.03803672 -0.6373731 0.76961596]\n", + " [-0.0725712 -0.62668214 0.77588847]]\n", + "479 0.05107523 0.08726392 0.1229415 0.15790584 0.1919602\n", + " 0.01464229 0.05127607 0.08760541 0.12341989 0.15851749 0.19270261\n", + " 0.01467095 0.05137612 0.08777538 0.12365776 0.15882123 0.1930708 ]\n", + " [-0.20769103 -0.1801941 -0.15200928 -0.12324112 -0.09399571 -0.06438234\n", + " -0.03451442 -0.00450904 -0.20769103 -0.20754198 -0.20712371 -0.20643751\n", + " -0.2054851 -0.20426815 -0.20278791 -0.2010451 -0.00450904 -0.00450572\n", + " -0.00449643 -0.00448126 -0.00446035 -0.00443385 -0.00440189 -0.00436457\n", + " -0.2010451 -0.17444879 -0.14716869 -0.11931453 -0.09099614 -0.06232394\n", + " -0.03340929 -0.00436457 -0.1957935 -0.16161745 -0.12651199 -0.09067166\n", + " -0.05429781 -0.01760077 -0.20756647 -0.20720276 -0.20643606 -0.20526936\n", + " -0.20370571 -0.20174719 -0.00461102 -0.00460274 -0.00458538 -0.00455917\n", + " -0.0045244 -0.0044813 -0.18954613 -0.15647489 -0.12248558 -0.08778034\n", + " -0.05256249 -0.01703747 -0.20759824 -0.20759824 -0.00446412 -0.00446412\n", + " -0.19576354 -0.19542056 -0.19469787 -0.19359884 -0.19212697 -0.19028463\n", + " -0.16159264 -0.16130879 -0.16071144 -0.15980479 -0.15859338 -0.15708053\n", + " -0.12649245 -0.12626898 -0.12579928 -0.12508774 -0.12413931 -0.12295784\n", + " -0.09065756 -0.09049631 -0.09015775 -0.08964573 -0.08896468 -0.0881182\n", + " -0.05428931 -0.05419219DEBUG:root:radec2pix: ccdpx: [[-4.45000000e+01 -4.99999973e-01]\n", + " [-4.45000000e+01 2.91928572e+02]\n", + " [-4.45000000e+01 5.84357143e+02]\n", + " [-4.45000000e+01 8.76785714e+02]\n", + " [-4.45000000e+01 1.16921429e+03]\n", + " [-4.45000000e+01 1.46164286e+03]\n", + " [-4.45000000e+01 1.75407143e+03]\n", + " [-4.45000000e+01 2.04650000e+03]\n", + " [-4.45000000e+01 -4.99999973e-01]\n", + " [ 2.47928571e+02 -4.99999766e-01]\n", + " [ 5.40357143e+02 -5.00000023e-01]\n", + " [ 8.32785714e+02 -4.99999798e-01]\n", + " [ 1.12521429e+03 -5.00000229e-01]\n", + " [ 1.41764286e+03 -5.00000231e-01]\n", + " [ 1.71007143e+03 -4.99999870e-01]\n", + " [ 2.00250000e+03 -4.99999884e-01]\n", + " [-4.45000000e+01 2.04650000e+03]\n", + " [ 2.47928571e+02 2.04650000e+03]\n", + " [ 5.40357143e+02 2.04650000e+03]\n", + " [ 8.32785714e+02 2.04650000e+03]\n", + " [ 1.12521429e+03 2.04650000e+03]\n", + " [ 1.41764286e+03 2.04650000e+03]\n", + " [ 1.71007143e+03 2.04650000e+03]\n", + " [ 2.00250000e+03 2.04650000e+03]\n", + " [ 2.00250000e+03 -4.99999884e-01]\n", + " [ 2.00250000e+03 2.91928572e+02]\n", + " [ 2.00250000e+03 5.84357143e+02]\n", + " [ 2.00250000e+03 8.76785714e+02]\n", + " [ 2.00250000e+03 1.16921429e+03]\n", + " [ 2.00250000e+03 1.46164286e+03]\n", + " [ 2.00250000e+03 1.75407143e+03]\n", + " [ 2.00250000e+03 2.04650000e+03]\n", + " [-4.35000000e+01 1.27000000e+02]\n", + " [-4.35000000e+01 4.85400000e+02]\n", + " [-4.35000000e+01 8.43800000e+02]\n", + " [-4.35000000e+01 1.20220000e+03]\n", + " [-4.35000000e+01 1.56060000e+03]\n", + " [-4.35000000e+01 1.91900000e+03]\n", + " [ 8.30000000e+01 4.99999770e-01]\n", + " [ 4.41400000e+02 5.00000267e-01]\n", + " [ 7.99800000e+02 4.99999825e-01]\n", + " [ 1.15820000e+03 5.00000071e-01]\n", + " [ 1.51660000e+03 5.00000113e-01]\n", + " [ 1.87500000e+03 5.00000214e-01]\n", + " [ 8.30000000e+01 2.04550000e+03]\n", + " [ 4.41400000e+02 2.04550000e+03]\n", + " [ 7.99800000e+02 2.04550000e+03]\n", + " [ 1.15820000e+03 2.04550000e+03]\n", + " [ 1.51660000e+03 2.04550000e+03]\n", + " [ 1.87500000e+03 2.04550000e+03]\n", + " [ 2.00150000e+03 1.27000000e+02]\n", + " [ 2.00150000e+03 4.85400000e+02]\n", + " [ 2.00150000e+03 8.43800000e+02]\n", + " [ 2.00150000e+03 1.20220000e+03]\n", + " [ 2.00150000e+03 1.56060000e+03]\n", + " [ 2.00150000e+03 1.91900000e+03]\n", + " [-4.350000 24.138121 ]\n", + " [ -0.187993 18.76212101]\n", + " [ -0.187993 13.386121 ]\n", + " [ -0.187993 8.010121 ]\n", + " [ -0.187993 2.634121 ]\n", + " [ -2.085493 31.411621 ]\n", + " [ -7.461493 31.411621 ]\n", + " [-12.837493 31.411621 ]\n", + " [-18.213493 31.411621 ]\n", + " [-23.589493 31.411621 ]\n", + " [-28.965493 31.411621 ]\n", + " [ -2.085493 0.736621 ]\n", + " [ -7.461493 0.736621 ]\n", + " [-12.837493 0.736621 ]\n", + " [-18.213493 0.736621 ]\n", + " [-23.58949299 0.736621 ]\n", + " [-28.965493 0.736621 ]\n", + " [-30.862993 29.514121 ]\n", + " [-30.862993 24.138121 ]\n", + " [-30.862993 18.762121 ]\n", + " [-30.862993 13.386121 ]\n", + " [-30.862993 8.010121 ]\n", + " [-30.862993 2.634121 ]\n", + " [ -0.187993 31.411621 ]\n", + " [ -0.187993 31.411621 ]\n", + " [-30.862993 0.736621 ]\n", + " [-30.862993 0.736621 ]\n", + " [ -2.085493 29.514121 ]\n", + " [ -7.461493 29.514121 ]\n", + " [-12.837493 29.514121 ]\n", + " [-18.213493 29.514121 ]\n", + " [-23.589493 29.514121 ]\n", + " [-28.965493 29.514121 ]\n", + " [ -2.085493 24.138121 ]\n", + " [ -7.461493 24.138121 ]\n", + " [-12.837493 24.138121 ]\n", + " [-18.213493 24.138121 ]\n", + " [-23.589493 24.138121 ]\n", + " [-28.965493 24.138121 ]\n", + " [ -2.085493 18.762121 ]\n", + " [ -7.461493 18.762121 ]\n", + " [-12.837493 18.762121 ]\n", + " [-18.213493 18.762121 ]\n", + " [-23.589493 18.762121 ]\n", + " [-28.965493 18.762121 ]\n", + " [ -2.085493 13.386121 ]\n", + " [ -7.461493 13.386121 ]\n", + " [-12.837493 13.386121 ]\n", + " [-18.213493 13.386121 ]\n", + " [-23.589493 13.386121 ]\n", + " [-28.965493 13.386121 ]\n", + " [ -2.085493 8.010121 ]\n", + " [ -7.461493 8.010121 ]\n", + " [-12.837493 8.010121 ]\n", + " [-18.213493 8.010121 ]\n", + " [-23.589493 8.010121 ]\n", + " [-28.965493 8.010121 ]\n", + " [ -2.085493 2.634121 ]\n", + " [ -7.461493 2.634121 ]\n", + " [-12.837493 2.634121 ]\n", + " [-18.213493 2.634121 ]\n", + " [-23.589493 2.634121 ]\n", + " [-28.965493 2.634121 ]]\n", + "DEBUG:root:optics_fp: cphi: [0.00736113 0.00855795 0.01021949 0.01268159 0.01670634 0.02447236\n", + " 0.04571623 0.33085868 0.00736113 0.14564913 0.27593163 0.39264701\n", + " 0.49309519 0.57710146 0.DEBUG:root:radec2pix: lng: [ 90.42834373 90.49850377 90.5956611 90.73910961 90.97227481\n", + " 91.41759428 92.60593903 105.48424091 90.42834373 98.33000716\n", + " 105.9265086 112.99112584 119.3891666 125.0745167 130.06614193\n", + " 134.42085308 105.48424091 169.40901167 174.51469037 176.30215943\n", + " 177.21090794 177.76079422 178.12927502 178.39338736 134.42085308\n", + " 138.69611239 143.61480744 149.24344747 155.61405077 162.69499667\n", + " 170.36296391 178.39338736 90.48535945 90.59424595 90.76505154\n", + " 91.07156688 91.78204394 95.23155859 93.89518731 103.41200836\n", + " 112.23547382 120.07805375 126.85210045 132.60955299 157.76630729\n", + " 173.33036525 176.09473451 177.23920333 177.86448301 178.25846094\n", + " 136.19687489 141.86022321 148.55920823 156.36843482 165.22645267\n", + " 174.86312285 90.45578538 90.45578538 178.36484692 178.36484692\n", + " 94.14397512 104.23659596 113.5079539 121.64257424 128.57141019\n", + " 134.38353176 95.05856666 107.21909912 117.98189812 126.96805941\n", + " 134.24672537 140.08615622 96.48795214 111.70632DEBUG:root:radec2pix: curVec Shape: (96, 3)\n", + "DEBUG:root:radec2pix: lng: [270.31539085 270.36655189 270.43752447 270.542579 270.71402077\n", + " 271.04383538 271.93968007 283.48101478 270.31539085 278.25496108\n", + " 285.88944585 292.98836581 299.41482725 305.12212741 310.12974078\n", + " 314.49549071 283.48101478 351.00638008 355.38819591 356.90183998\n", + " 357.66783206 358.13024629 358.43966874 358.66123705 314.49549071\n", + " 318.7910165 323.73421549 329.3915583 335.79415496 342.90819266\n", + " 350.6068072 358.66123705 270.36494598 270.44622312 270.57407396\n", + " 270.80460183 271.34445266 274.08218667 273.79842993 283.36234739\n", + " 292.22915231 300.10657084 306.9058095 312.67997848 340.54617186\n", + " 354.36185807 356.71594406 357.68400903 358.21142556 358.54322592\n", + " 316.27981968 321.97083668 328.70389405 336.55230838 345.45057848\n", + " 355.12169333 270.34290102 270.34290102 358.63275532 358.63275532\n", + " 274.04185073 284.1877247 293.50716352 301.67919787 308.63398936\n", + " 314.46249394 274.93799638 287.17724528 298.00560006 307.03649051\n", + " 314.DEBUG:root:optics_fp: sphi: [-0.99996956 -0.99995893 -0.99994158 -0.99991037 -0.99984537 -0.99967195\n", + " -0.99888983 -0.95886284 -0.99996956 -0.98938252 -0.96145475 -0.92030483\n", + " -0.87095303 -0.81797608 -0.76481709 -0.71369637 -0.95886284 -0.17659731\n", + " -0.09176722 -0.06188241 -0.04666441 -0.03744961 -0.03127246 -0.02684394\n", + " -0.71369637 -0.65943324 -0.59247759 -0.51053198 -0.41189324 -0.2963571\n", + " -0.16622968 -0.02684394 -0.99996117 -0.99994205 -0.99990433 -0.99981296\n", + " -0.99948354 -0.99550368 -0.99766348 -0.97260056 -0.92538694 -0.86498004\n", + " -0.79973567 -0.73547623 -0.36495814 -0.11160071 -0.06539891 -0.04622212\n", + " -0.0357361 -0.02912641 -0.69162042 -0.616889 -0.5207723 -0.39985178\n", + " -0.2538669 -0.08834096 -0.99996571 -0.99996571 -0.02734129 -0.02734129\n", + " -0.99735579 -0.96914412 -0.91672217 -0.85093152 -0.78133638 -0.71412384\n", + " -0.99606099 -0.95495897 -0.882678 -0.79840366 -0.71568873 -0.64094611\n", + " -0.99352198 -0.92871576 -0.82534028 -0.71815177 -0.62351779 -0.54491901\n", + " -0.98744912 -0.87313973-24.43997833]\n", + " [ 0.18452584 -19.06397881]\n", + " [ 0.18680401 -13.6879793 ]\n", + " [ 0.18908217 -8.31197977]\n", + " [ 0.19136034 -2.93598025]\n", + " [ 2.07666524 -31.71428177]\n", + " [ 7.45266476 -31.71655993]\n", + " [ 12.82866428 -31.7188381 ]\n", + " [ 18.2046638 -31.72111627]\n", + " [ 23.58066331 -31.72339443]\n", + " [ 28.95666283 -31.7256726 ]\n", + " [ 2.08966426 -1.03928452]\n", + " [ 7.46566378 -1.04156269]\n", + " [ 12.8416633 -1.04384085]\n", + " [ 18.21766282 -1.04611902]\n", + " [ 23.59366233 -1.04839718]\n", + " [ 28.96966185 -1.05067535]\n", + " [ 30.85496675 -29.82897686]\n", + " [ 30.85724492 -24.45297735]\n", + " [ 30.85952308 -19.07697783]\n", + " [ 30.86180126 -13.70097831]\n", + " [ 30.86407941 -8.32497879]\n", + " [ 30.86635759 -2.94897928]\n", + " [ 0.17916541 -31.71347767]\n", + " [ 0.17916541 -31.71347767]\n", + " [ 30.86716168 -1.05147945]\n", + " [ 30.86716168 -1.05147945]\n", + " [ 2.07746934 -29.81678193]\n", + " [ 7.45346886 -29.8190601 ]\n", + " [ 12.82946837 -29.82133827]\n", + " [ 18.20546789 -29.82361643]\n", + " [ 23.58146741 -29.82589461]\n", + " [ 28.95746693 -29.82817277]\n", + " [ 2.07974751 -24.44078242]\n", + " [ 7.45574702 -24.44306058]\n", + "00e+01 5.00000284e-01]\n", + " [-4.35000000e+01 5.00000284e-01]\n", + " [ 2.00150000e+03 2.04550000e+03]\n", + " [ 2.00150000e+03 2.04550000e+03]\n", + " [ 8.30000000e+01 1.27000000e+02]\n", + " [ 4.41400000e+02 1.27000000e+02]\n", + " [ 7.99800000e+02 1.27000000e+02]\n", + " [ 1.15820000e+03 1.27000000e+02]\n", + " [ 1.51660000e+03 1.27000000e+02]\n", + " [ 1.87500000e+03 1.27000000e+02]\n", + " [ 8.30000000e+01 4.85400000e+02]\n", + " [ 4.41400000e+02 4.85400000e+02]\n", + " [ 7.99800000e+02 4.85400000e+02]\n", + " [ 1.15820000e+03 4.85400000e+02]\n", + " [ 1.51660000e+03 4.85400000e+02]\n", + " [ 1.87500000e+03 4.85400000e+02]\n", + " [ 8.30000000e+01 8.43800000e+02]\n", + " [ 4.41400000e+02 8.43800000e+02]\n", + " [ 7.99800000e+02 8.43800000e+02]\n", + " [ 1.15820000e+03 8.43800000e+02]\n", + " [ 1.51660000e+03 8.43800000e+02]\n", + " [ 1.87500000e+03 8.43800000e+02]\n", + " [ 8.30000000e+01 1.20220000e+03]\n", + " [ 4.41400000e+02 1.20220000e+03]\n", + " [ 7.99800000e+02 1.20220000e+03]\n", + " [ 1.15820000e+03 1.20220000e+03]\n", + " [ 1.51660000e+03 1.20220000e+03]\n", + " [ 1.87500000e+03 1.20220000e+03]\n", + " [ 8.30000000e+01 1.56060000e+DEBUG:root:radec2pix: xyfp: [[-32.203794 -31.5506227 ]\n", + " [-32.20328688 -27.16419416]\n", + " [-32.20277976 -22.77776561]\n", + " [-32.20227264 -18.39133707]\n", + " [-32.20176553 -14.00490853]\n", + " [-32.20125841 -9.61847999]\n", + " [-32.20075129 -5.23205144]\n", + " [-32.20024417 -0.8456229 ]\n", + " [-32.203794 -31.5506227 ]\n", + " [-27.81736545 -31.55112981]\n", + " [-23.43093691 -31.55163693]\n", + " [-19.04450837 -31.55214405]\n", + " [-14.65807983 -31.55265117]\n", + " [-10.27165129 -31.55315829]\n", + " [ -5.88522274 -31.5536654 ]\n", + " [ -1.4987942 -31.55417252]\n", + " [-32.20024417 -0.8456229 ]\n", + " [-27.81381563 -0.84613002]\n", + " [-23.42738708 -0.84663714]\n", + " [-19.04095854 -0.84714426]\n", + " [-14.65453 -0.84765137]\n", + " [-10.26810146 -0.84815849]\n", + " [ -5.88167292 -0.84866561]\n", + " [ -1.49524438 -0.84917273]\n", + " [ -1.4987942 -31.55417252]\n", + " [ -1.49828708 -27.16774398]\n", + " [ -1.49777997 -22.78131544]\n", + " [ -1.49727285 -18.39488689]\n", + " [ -1.49676573 -14.00845835]\n", + " [ -1.49625861 -9.62202981]\n", + " [ -1.49575149 -5.23560127]\n", + " [ -1.49524438 -0.84917273]\n", + " [-32.18857289 -29.63812445]\n", + " [-32.18795136 -24.26212448]\n", + " [-32.18732984 -18.88612452]\n", + " [-32.18670832 -13.51012455]\n", + " [-32.1860868 -8.13412459]\n", + " [-32.18546528 -2.75812462]\n", + " [-30.29129227 -31.5358438 ]\n", + " [-24.91529231 -31.53646533]\n", + " [-19.53929235 -31.53708685]\n", + " [-14.16329238 -31.53770837]\n", + " [ -8.78729242 -31.53832989]\n", + " [ -3.41129245 -31.53895142]\n", + " [-30.28774592 -0.86084401]\n", + " [-24.91174595 -0.86146553]\n", + " [-19.53574599 -0.86208705]\n", + " [-14.15974603 -0.86270858]\n", + " [ -8.78374606 -0.8633301 ]\n", + " [ -3.4077461 -0.86395162]\n", + " [ -1.5135731 -29.6416708 ]\n", + " [ -1.51295157 -24.26567084]\n", + " [ -1.51233005 -18.88967087]\n", + " [ -1.51170853 -13.51367091]\n", + " [ -1.51108701 -8.13767095]\n", + " [ -1.51046548 -2.76167097]\n", + " [-32.18879227 -31.53562444]\n", + " [-32.18879227 -31.53562444]\n", + " [ -1.51024611 -0.86417099]\n", + " [ -1.51024611 -0.86417099]\n", + " [-30.29107291 -29.63834382]\n", + " [-24.91507294 -29.63896534]\n", + " [-19.53907298 -29.63958686]\n", + " [-14.16307301 -29.64020839]\n", + " [ -8.78707305 -29.64082991]\n", + " [ -3.41107308 -29.64145143]\n", + " [-30.29045138 -24.26234385]\n", + " [-24.91445142 -24.26296538]\n", + "897 124.31008611\n", + " 134.03082213 141.36316306 146.92239982 99.03197846 119.08696476\n", + " 133.63934958 143.48868891 150.22824427 155.00803043 104.7802641\n", + " 132.71160718 147.70838425 155.95659867 160.97729932 164.30745367\n", + " 127.76858297 159.74564279 167.84877649 171.35573132 173.29833797\n", + " 174.52977301]\n", + " -0.05398843 -0.05368064 -0.05327188 -0.0527647\n", + " -0.01759801 -0.01756642 -0.01750018 -0.01740019 -0.0172675 -0.01710301]\n", + " [ 0.97819328 0.98362986 0.98837785 0.99237552 0.99557136 0.99792406\n", + " 0.99940295 0.99998858 0.97819328 0.97774883 0.97650613 0.97448229\n", + " 0.97170532 0.9682142 0.96405881 0.95929997 0.99998858 0.99949066\n", + " 0.99809825 0.99582966 0.99271451 0.98879307 0.98411589 0.97874367\n", + " 0.95929997 0.9641308 0.96836217 0.97193219 0.97478992 0.97689533\n", + " 0.9782193 0.97874367 0.98064379 0.9868521 0.99196368 0.99587944\n", + " 0.99852337 0.99984368 0.97811796 0.97703474 0.97476817 0.97136534\n", + " 0.96689796 0.96146242 0.9998817 0.99866821 0.9961281 0.99231122\n", + " 0.98729166 0.9811667 0.96149301 0.9670196 0.97158296 0.97508476\n", + " 0.9774513 0.97863353 0.97821282 0.97821282 0.97876273 0.97876273\n", + " 0.98054763 0.97944952 0.97715155 0.97370089 0.9691693 0.96365314\n", + " 0.98675268 0.98561714 0.98324039 0.97966996 0.97497788 0.9692605\n", + " 0.9918616 0.99069568 0.9882551 0.98458804 0.979767 0.97388848\n", + " 0.99577532 0.99458621 0.99209707 0.98835673 0.98343837 0.97743873\n", + " 0.99841789 0.9972131 0.99469118 0.99090157 0.985918 0.97983753\n", + " 0.9997375 0.99852487 0.99598656 0.99217236 0.98715635 0.98103576]]\n", + " [-19.53845145 -24.2635869 ]\n", + " [-14.16245149 -24.26420842]\n", + " [ -8.78645152 -24.26482994]\n", + " [ -3.41045156 -24.26545147]\n", + " [-30.28982986 -18.88634389]\n", + " [-24.91382989 -18.88696541]\n", + " [-19.53782993 -18.88758693]\n", + " [-14.16182997 -18.88820846]\n", + " [ -8.78583 -18.88882997]\n", + " [ -3.40983004 -18.8894515 ]\n", + " [-30.28920834 -13.51034392]\n", + " [-24.91320837 -13.51096545]\n", + " [-19.53720841 -13.51158697]\n", + " [-14.16120844 -13.5 [ 12.83174654 -24.44533875]\n", + " [ 18.20774606 -24.44761692]\n", + " [ 23.58374558 -24.44989508]\n", + " [ 28.95974509 -24.45217325]\n", + " [ 2.08202567 -19.0647829 ]\n", + " [ 7.45802519 -19.06706107]\n", + " [ 12.83402471 -19.06933924]\n", + " [ 18.21002422 -19.0716174 ]\n", + " [ 23.58602374 -19.07389557]\n", + " [ 28.96202325 -19.07617373]\n", + " [ 2.08430384 -13.68878339]\n", + " [ 7.46030335 -13.69106155]\n", + " [ 12.83630287 -13.69333972]\n", + " [ 18.21230239 -13.69561789]\n", + " [ 23.58830191 -13.69789605]\n", + " [ 28.96430143 -13.70017422]\n", + " [ 2.086582 -8.31278387]\n", + " [ 7.46258152 -8.31506203]\n", + " [ 12.83858103 -8.3173402 ]\n", + " [ 18.21458055 -8.31961837]\n", + " [ 23.59058007 -8.32189653]\n", + " [ 28.96657959 -8.3241747 ]\n", + " [ 2.08886017 -2.93678435]\n", + " [ 7.46485969 -2.93906252]\n", + " [ 12.8408592 -2.94134068]\n", + " [ 18.21685872 -2.94361885]\n", + " [ 23.59285824 -2.94589701]\n", + " [ 28.96885776 -2.94817518]]\n", + "64609955 0.70223653 0.33085868 0.98998261\n", + " 0.99733613 0.99879292 0.99931459 0.99955889 0.99969254 0.99977352\n", + " 0.70223653 0.7536841 0.80759419 0.86185323 0.91305945 0.9565351\n", + " 0.98696237 DEBUG:root:radec2pix: xyfp Shape: (96, 2)\n", + "DEBUG:root:radec2pix: camVec: [[-0.20650899 -0.20834684 -0.209912 -0.2112049 -0.21222492 -0.21297066\n", + " -0.21344048 -0.21363303 -0.20650899 -0.18010636 -0.15299311 -0.12528058\n", + " -0.09707928 -0.06849975 -0.03965325 -0.01065205 -0.21363303 -0.1862962\n", + " -0.15824793 -0.12959237 -0.10043485 -0.07088401 -0.04105265 -0.01105755\n", + " -0.01065205 -0.01075054 -0.01083605 -0.01090831 -0.01096697 -0.01101162\n", + " -0.0110419 -0.01105755 -0.20725456 -0.20932255 -0.21098167 -0.21223121\n", + " -0.21306867 -0.2134911 -0.19509826 -0.16224603 -0.12843717 -0.09387541\n", + " -0.05876435 -0.02330924 -0.20180806 -0.16781243 -0.13285166 -0.09711907\n", + " -0.06081473 -0.02414801 -0.01079628 -0.01090926 -0.01100231 -0.01107479\n", + " -0.01112598 -0.01115523 -0.20642679 -0.20642679 -0.01116024 -0.01116024\n", + " -0.19587779 -0.16288944 -0.12894461 -0.09424616 -0.05899718 -0.02340304\n", + " -0.19782623 -0.16450046 -0.13021766 -0.09517804 -0.05958347 -0.0236399\n", + " -0.19939086 -0.16579789 -0.13124607 -0.003]\n", + " [ 4.41400000e+02 1.56060000e+03]\n", + " [ 7.99800000e+02 1.56060000e+03]\n", + " [ 1.15820000e+03 1.56060000e+03]\n", + " [ 1.51660000e+03 1.56060000e+03]\n", + " [ 1.87500000e+03 1.56060000e+03]\n", + " [ 8.30000000e+01 1.91900000e+03]\n", + " [ 4.41400000e+02 1.91900000e+03]\n", + " [ 7.99800000e+02 1.91900000e+03]\n", + " [ 1.15820000e+03 1.91900000e+03]\n", + " [ 1.51660000e+03 1.91900000e+03]\n", + " [ 1.87500000e+03 1.91900000e+03]]\n", + "9593306 -0.06005988 -0.02383341\n", + " -0.20057035 -0.16677881 -0.13202594 -0.09650734 -0.06042346 -0.02398226\n", + " -0.20136156 -0.16743861 -0.13255205 -0.09689601 -0.0606707 -0.02408492\n", + " -0.20176105 -0.16777281 -0.13281959 -0.09709479 -0.06079851 -0.02414006]\n", + " [-0.20112017 -0.17462343 -0.14743759 -0.11967398 -0.09144325 -0.06285614\n", + " -0.0340241 -0.00505944 -0.20112017 -0.20295163 -0.20451753 -0.20581845\n", + " -0.20685386 -0.20762236 -0.2081222 -0.20835189 -0.00505944 -0.0050993\n", + " -0.00513287 -0.00516008 -0.00518078 -0.00519482 -0.00520206 -0.00520239\n", + " -0.20835189 -0.18087002 -0.15269708 -0.12393724 -0.0946963DEBUG:root:optics_fp: xyfp shape: (96, 2)\n", + "0.99977352 0.00834839 0.01021242 0.01314806 0.01845192\n", + " 0.03092476 0.09520001 0.06821327 0.23324784 0.38042607 0.50355732\n", + " 0.60221419 0.67936994 0.95400922 0.99601258 0.99863886 0.99932131\n", + " 0.99959465 0.99973085 0.72410803 0.78903751 0.85569931 0.91837755\n", + " 0.96852369 0.99656102 0.0078431 0.0078431 0.99976286 0.99976286\n", + " 0.07258573 0.24738232 0.40109449 0.52718454 0.6260916 0.70191681\n", + " 0.08867837 0.2981282 0.47216592 0.60454556 0.70074236 0.76966876\n", + " 0.11387947 0.37309127 0.56771826 0.69888097 0.78439808 0.84063622\n", + " 0.15883549 0.49151121 0.69548104 0.80800475 0.87123904 0.90881999\n", + " 0.26040359 0.68729315 0.85132238 0.9170162 0.94790417 0.96449723\n", + " 0.6403374 0.94621821 0.98069844 0.99024463 0.99414155 0.99609937]\n", + "34141513 320.19418356 276.34264386 291.68718176 304.38086955\n", + " 314.14993264 321.50269119 327.06723776 278.85521862 299.13552131\n", + " 313.8014816 323.6857401 330.42677291 335.19643967 284.59338686\n", + " 312.96912569 328.03736148 336.26056332 341.24440919 344.5417427\n", + " 308.36945368 340.55550723 348.40444495 351.77067409 353.62846105\n", + " 354.80381648]\n", + "8 -0.06508391\n", + " -0.03521344 -0.00520239 -0.18966571 -0.15671259 -0.12283514 -0.0882373\n", + " -0.053123 -0.01769778 -0.20186172 -0.20392662 -0.20559352 -0.20686189\n", + " -0.20772922 -0.20819238 -0.00517714 -0.00522278 -0.00525872 -0.00528472\n", + " -0.0053005 -0.00530579 -0.19646103 -0.1623014 -0.12720719 -0.09137251\n", + " -0.05499882 -0.01829695 -0.20103758 -0.20103758 -0.00530513 -0.00530513\n", + " -0.19044022 -0.19238166 -0.19395017 -0.19514465 -0.19596195 -0.19639843\n", + " -0.15734701 -0.15893973 -0.16022981 -0.16121459 -0.16188952 -0.16224993\n", + " -0.12332956 -0.12457282 -0.12558234 -0.12635458 -0.12688447 -0.12716713\n", + " -0.08859098 -0.08948154 -0.09020602 -0.09076095 -0.09114176 -0.09134421\n", + " -0.05333481 -0.05386844 -0.05430277 -0.0546353 -0.05486289 -0.05498267\n", + " -0.01776673 -0.01794001 -0.01808024 -0.01818657 -0.01825788 -0.01829321]\n", + " [ 0.95755142 0.96233999 0.96653976 0.97008795 0.97293305 0. -0.72259694 -0.59380744 -0.49542438 -0.42145706\n", + " -0.96643258 -0.73302362 -0.53238015 -0.40581658 -0.32456648 -0.26928704\n", + " -0.78592344 -0.34216247 -0.20786992 -0.14837557 -0.11517726 -0.094064 ]\n", + "1220849]\n", + " [ -8.78520848 -13.51283002]\n", + " [ -3.40920852 -13.51345154]\n", + " [-30.28858681 -8.13434396]\n", + " [-24.91258685 -8.13496548]\n", + " [-19.53658688 -8.135587 ]\n", + " [-14.16058692 -8.13620852]\n", + " [ -8.78458696 -8.13683005]\n", + " [ -3.40858699 -8.13745157]\n", + " [-30.28796529 -2.75834399]\n", + " [-24.91196532 -2.75896552]\n", + " [-19.53596536 -2.75958704]\n", + " [-14.1599654 -2.76020856]\n", + " [ -8.78396543 -2.76083009]\n", + " [ -3.40796547 -2.76145161]]\n", + "DEBUG:root:radec2pix: camVec Shape: (3, 96)\n", + "DEBUG:root:radec2pix: lat: [77.93541901 79.53990642 81.17639652 82.83971343 84.5247522 86.22632371\n", + " 87.93883494 89.6479978 77.93541901 77.81390272 77.48107187 76.95718255\n", + " 76.27047293 75.45239232 74.53398915 73.54392335 89.6479978 88.15433501\n", + " 86.45486555 84.75631331 83.07112985 81.40595581 79.76638457 78.15778269\n", + " 73.54392335 74.55657104 75.50172983 76.35064507 77.07169654 77.63217256\n", + " 78.00180643 78.15778269 78.63066146 80.61929653 82.650836 84.71585314\n", + " 86.80474047 88.90593385 77.91466044 77.62156704 77.02994397 76.1887385\n", + " 75.15547704 73.98639339 89.08782254 87.03029774 84.94699254 82.88191704\n", + " 80.84778676 78.85482091 73.9956629 75.19522506 76.26518392 77.14846305\n", + " 77.78520091 78.12246539 77.9408027 77.9408027 78.1630712 78.1630712\n", + " 78.60257643 78.28825427 77.65661779 76.76410296 75.67504453 74.45024854\n", + " 80.58418271 80.19408276 79.42435182 78.36269898 77.09829541 75.70590081\n", + " 82.60493805 82.10218621 81.14204779 79.86827274 78.40301429 76.83279998\n", + " 84.65101194 83.96303088 82.73111849 81.1974567 79.51499711 77.7695032\n", + " 86.69730834 85.65959593 84.04717305 82.22861822 80.34304005 78.44927716\n", + " 88.6217931 86.8566554 84.8442257 82.80989579 80.79300228 78.81115773]\n", + "DEBUG:root:optics_fp: sphi: [-0.99997291 -0.99996338 -0.99994778 -0.99991959 -0.99986044 -0.99970051\n", + " -0.99895447 -0.94368031 -0.99997291 -0.98933631 -97503467\n", + " 0.97636342 0.97690088 0.95755142 0.96248238 0.96683281 0.97053776\n", + " 0.97354358 0.97580774 0.97729871 0.97799592 0.97690088 0.98248039\n", + " 0.98738607 0.99155393 0.99493015 0.99747104 0.99914344 0.99992533\n", + " 0.97799592 0.98344825 0.98821363 0.9922301 0.99544579 0.99781904\n", + " 0.99931881 0.99992533 0.9597252 0.96520735 0.96974134 0.97322767\n", + " 0.97559197 0.97678469 0.95978566 0.96544816 0.97017277 0.97385603\n", + " 0.97641964 0.97781011 0.97941141 0.98580511 0.99112198 0.99525874\n", + " 0.998135 0.99969431 0.98045219 0.98668092 0.99181514 0.9957552\n", + " 0.99842443 0.99977036 0.95758648 0.95758648 0.99992365 0.99992365\n", + " 0.96195864 0.96770674 0.97250019 0.97623574 0.97883515 0.98024484\n", + " 0.96752607 0.97348742 0.97845274 0.98231919 0.98500842 0.98646648\n", + " 0.97212813 0.97826002 0.98336338 0.98733549 0.99009754 0.99159492\n", + " 0.9756655 0.9819256 0.98713324 0.99118554 0.99400311 0.99553056\n", + " 0.97806386 0.98440972 0.98968741 0.99379381 0.99664895 0.99819679\n", + " 0.97927362 0.98566244 0.99097531 0.99510896 0.99798306 0.9995412 ]]\n", + "0.96117727 -0.91968926\n", + " -0.86997536 -0.81667246 -0.76325315 -0.71194371 -0.94368031 -0.14118936\n", + " -0.07294272 -0.04911935 -0.03701833 -0.02969904 -0.02479556 -0.0212815\n", + " -0.71194371 -0.65723685 -0.5897386 -0.50715777 -0.40782648 -0.29161723\n", + " -0.16095117 -0.0212815 -0.99996515 -0.99994785 -0.99991356 -0.99982975\n", + " -0.99952172 -0.99545817 -0.99767076 -0.97241732 -0.92481134 -0.86396182\n", + " -0.79833456 -0.73379594 -0.29977727 -0.0892129 -0.05215778 -0.03683652\n", + " -0.02846988 -0.02319957 -0.68968657 -0.61434502 -0.51747338 -0.39570528\n", + " -0.24892141 -0.08286212 -0.99996924 -0.99996924 -0.02177659 -0.02177659\n", + " -0.99736218 -0.96891795 -0.91603668 -0.84975082 -0.77974951 -0.71225894\n", + " -0.99606031 -0.95452584 -0.88150969 -0.79657056 -0.71341443 -0.63844342\n", + " -0.99349457 -0.92779465 -0.82322292 -0.71523799 -0.62025773 -0.54160017\n", + " -0.98730506 -0.87087125 -0.71854445 -0.58917597 -0.49085898 -0.41718848\n", + " -0.96549986 -0.72638015 -0.52464293 -0.39884995 -0.31855562 -0.26409298\n", + " -0.76809376 -0.32352912 -0.19552639 -0.13933979 -0.10808594 -0.08823861]\n", + "DEBUG:root:radec2pix: lat: [77.98725933 79.59290201 81.23038669 82.89455027 84.58030503 86.2825061\n", + " 87.99575217 89.70880341 77.98725933 77.86842442 77.53699463 77.01330297\n", + " 76.32579246 75.50615888 74.58567435 73.59317035 89.70880341 88.18955545\n", + " 86.48562338 84.78529769 83.09901991 81.43298752 79.79264001 78.18327445\n", + " 73.59317035 74.60559591 75.5496878 76.3965297 77.11433871 77.67029216\n", + " 78.03413945 78.18327445 78.68303826 80.67298244 82.70560399 84.77150761\n", + " 86.86118368 88.96388538 77.96782959 77.67716345 77.0861016 76.24391961\n", + " 75.20859077 74.03673952 89.13217661 87.06213831 84.97619114 82.90974635\n", + " 80.87458441 78.88067366 74.04491662 75.24365824 76.31136856 77.19067025\n", + " 77.8215059 78.15105181 77.99265855 77.99265855 78.18859038 78.18859038\n", + " 78.65635764 78.34456159 77.7133866 76.81969543 75.7283623 74.50063549\n", + " 80.63959245 80.25225497 79.48245907 78.41882236 77.15141692 75.75558792\n", + " 82.66188886 82.16191851 81.200562 79.92354945 78.45441908 76.88031771\n", + " 84.70956295 84.0235478 82.78807615 81.24955295 79.56251519 77.81300601\n", + " 86.75780924 85.71788826 84.09815339 82.27374035 80.38380312 78.4866344\n", + " 88.68197076 86.90004071 84.8808155 82.84304634 80.82390053 78.84030268]\n", + "DEBUG:root:radec2pix: camVec Shape: (3, 96)\n", + "DEBUG:root:mm_to_pix: fitpx: [[0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]]\n", + "DEBUG:root:mm_to_pix: fitpx.shape: (96, 2)\n", + "DEBUG:root:make_az_asym: xyp: [[ 0.16415906 -31.72847131]\n", + " [ 0.16601788 -27.34204313]\n", + " [ 0.1678767 -22.95561497]\n", + " [ 0.16973552 -18.56918678]\n", + " [ 0.17159434 -14.1827586 ]\n", + " [ 0.17345315 -9.79633043]\n", + " [ 0.17531197 -5.40990225]\n", + " [ 0.17717079 -1.02347407]\n", + " [ 0.16415906 -31.72847131]\n", + " [ 4.55058724 -31.73033014]\n", + " [ 8.93701541 -31.73218895]\n", + " [ 13.32344359 -31.73404778]\n", + " [ 17.70987177 -31.73590659]\n", + " [ 22.09629995 -31.73776541]\n", + " [ 26.48272812 -31.73962422]\n", + " [ 30.8691563 -31.74148305]\n", + " [ 0.17717079 -1.02347407]\n", + " [ 4.56359897 -1.02533289]\n", + " [ 8.95002714 -1.02719171]\n", + " [ 13.33645532 -1.02905053]\n", + " [ 17.7228835 -1.03090935]\n", + " [ 22.10931168 -1.03276817]\n", + " [ 26.49573986 -1.03462699]\n", + " [ 30.88216803 -1.0364858 ]\n", + " [ 30.8691563 -31.74148305]\n", + " [ 30.87101512 -27.35505487]\n", + " [ 30.87287394 -22.96862669]\n", + " [ 30.87473276 -18.58219851]\n", + " [ 30.87659158 -14.19577034]\n", + " [ 30.8784504 -9.80934216]\n", + " [ 30.88030922 -5.42291398]\n", + " [ 30.88216803 -1.0364858 ]\n", + " [ 0.17996951 -29.81597784]\n", + " [ 0.18224768 -24.43997833]\n", + " [ 0.18452584 -19.06397881]\n", + " [ 0.18680401 -13.6879793 ]\n", + " [ 0.18908217 -8.31197977]\n", + " [ 0.19136034 -2.93598025]\n", + " [ 2.07666524 -31.71428177]\n", + " [ 7.45266476 -31.71655993]\n", + " [ 12.82866428 -31.7188381 ]\n", + " [ 18.2046638 -31.72111627]\n", + " [ 23.58066331 -31.72339443]\n", + " [ 28.95666283 -31.7256726 ]\n", + " [ 2.08966426 -1.03928452]\n", + " [ 7.46566378 -1.04156269]\n", + " [ 12.8416633 -1.04384085]\n", + " [ 18.21766282 -1.04611902]\n", + " [ 23.59366233 -1.04839718]\n", + " [ 28.96966185 -1.05067535]\n", + " [ 30.85496675 -29.82897686]\n", + " [ 30.85724492 -24.45297735]\n", + " [ 30.85952308 -19.07697783]\n", + " [ 30.86180126 -13.70097831]\n", + " [ 30.86407941 -8.32497879]\n", + " [ 30.86635759 -2.94897928]\n", + " [ 0.17916541 -31.71347767]\n", + " [ 0.17916541 -31.71347767]\n", + " [ 30.86716168 -1.05147945]\n", + " [ 30.86716168 -1.05147945]\n", + " [ 2.07746934 -29.81678193]\n", + " [ 7.45346886 -29.8190601 ]\n", + " [ 12.82946837 -29.82133827]\n", + " [ 18.20546789 -29.82361643]\n", + " [ 23.58146741 -29.82589461]\n", + " [ 28.95746693 -29.82817277]\n", + " [ 2.07974751 -24.44078242]\n", + " [ 7.45574702 -24.44306058]\n", + " [ 12.83174654 -24.44533875]\n", + " [ 18.20774606 -24.44761692]\n", + " [ 23.58374558 -24.44989508]\n", + " [ 28.95974509 -24.45217325]\n", + " [ 2.08202567 -19.0647829 ]\n", + " [ 7.45802519 -19.06706107]\n", + " [ 12.83402471 -19.06933924]\n", + " [ 18.21002422 -19.0716174 ]\n", + " [ 23.58602374 -19.07389557]\n", + " [ 28.96202325 -19.07617373]\n", + " [ 2.08430384 -13.68878339]\n", + " [ 7.46030335 -13.69106155]\n", + " [ 12.83630287 -13.69333972]\n", + " [ 18.21230239 -13.69561789]\n", + " [ 23.58830191 -13.69789605]\n", + " [ 28.96430143 -13.70017422]\n", + " [ 2.086582 -8.31278387]\n", + " [ 7.46258152 -8.31506203]\n", + " [ 12.83858103 -8.3173402 ]\n", + " [ 18.21458055 -8.31961837]\n", + " [ 23.59058007 -8.32189653]\n", + " [ 28.96657959 -8.3241747 ]\n", + " [ 2.08886017 -2.9DEBUG:root:optics_fp: xyfp: [[ -0.24606 31.536148 ]\n", + " [ -0.24606 27.14971943]\n", + " [ -0.24606 22.76329086]\n", + " [ -0.24606 18.37686229]\n", + " [ -0.24606 13.99043371]\n", + " [ -0.24606 9.60400514]\n", + " [ -0.24606 5.21757658]\n", + " [ -0.24606 0.831148 ]\n", + " [ -0.24606 31.536148 ]\n", + " [ -4.63248857 31.536148 ]\n", + " [ -9.01891714 31.536148 ]\n", + " [-13.40534571 31.536148 ]\n", + " [-17.79177429 31.536148 ]\n", + " [-22.17820286 31.536148 ]\n", + " [-26.56463143 31.536148 ]\n", + " [-30.95106 31.536148 ]\n", + " [ -0.24606 0.831148 ]\n", + " [ -4.63248857 0.831148 ]\n", + " [ -9.01891714 0.831148 ]\n", + " [-13.40534571 0.831148 ]\n", + " [-17.79177429 0.831148 ]\n", + " [-22.17820285 0.831148 ]\n", + " [-26.56463143 0.831148 ]\n", + " [-30.95106 0.831148 ]\n", + " [-30.95106 31.536148 ]\n", + " [-30.95106 27.14971943]\n", + " [-30.95106 22.76329086]\n", + " [-30.95106 18.37686228]\n", + " [-30.95106 13.99043371]\n", + " [-30.95106 9.60400514]\n", + " [-30.95106 5.21757657]\n", + " [-30.95106 0.831148 ]\n", + " [ -0.26106 29.623648 ]\n", + " [ -0.26106 24.247648 ]\n", + " [ -0.26106 18.87164801]\n", + " [ -0.26106 13.495648 ]\n", + " [ -0.26106 8.119648 ]\n", + " [ -0.26106 2.743648 ]\n", + " [ -2.15856 31.521148 ]\n", + " [ -7.53456 31.521148 ]\n", + " [-12.91056 31.521148 ]\n", + " [-18.28656 31.521148 ]\n", + " [-23.66256 31.521148 ]\n", + " [-29.03856 31.521148 ]\n", + " [ -2.15856 0.846148 ]\n", + " [ -7.53456 0.846148 ]\n", + " [-12.91056 0.846148 ]\n", + " [-18.28655999 0.846148 ]\n", + " [-23.66256 0.846148 ]\n", + " [-29.03856 0.846148 ]\n", + " [-30.93606 29.623648 ]\n", + " [-30.93606 24.247648 ]\n", + " [-30.93606 18.871648 ]\n", + " [-30.93606 13.495648 ]\n", + " [-30.93606 8.119648 ]\n", + " [-30.93606 2.743648 ]\n", + " [ -0.26106 31.521148 ]\n", + " [ -0.26106 31.521148 ]\n", + " [-30.93606 0.846148 ]\n", + " [-30.93606 0.846148 ]\n", + " [ -2.15856 29.623648 ]\n", + " [ -7.53456 29.623648 ]\n", + " [-12.91056 29.623648 ]\n", + " [-18.28656 29.623648 ]\n", + " [-23.66256 29.623648 ]\n", + " [-29.03856 29.623648 ]\n", + " [ -2.15856 24.247648 ]\n", + " [ -7.53456 24.247648 ]\n", + "3678435]\n", + " [ 7.46485969 -2.93906252]\n", + " [ 12.8408592 -2.94134068]\n", + " [ 18.21685872 -2.94361885]\n", + " [ 23.59285824 -2.94589701]\n", + " [ 28.96885776 -2.94817518]]\n", + " [-12.91056 24.247648 ]\n", + " [-18.28656 24.247648 ]\n", + " [-23.66256 24.247648 ]\n", + " [-29.03856 24.247648 ]\n", + " [ -2.15856 18.871648 ]\n", + " [ -7.53456 18.871648 ]\n", + " [-12.91056 18.871648 ]\n", + " [-18.28656 18.871648 ]\n", + " [-23.66256 18.871648 ]\n", + " [-29.03856 18.871648 ]\n", + " [ -2.15856 13.495648 ]\n", + " [ -7.53456 13.495648 ]\n", + " [-12.91056 13.495648 ]\n", + " [-18.28656 13.495648 ]\n", + " [-23.66256 13.495648 ]\n", + " [-29.03856 13.495648 ]\n", + " [ -2.15856 8.119648 ]\n", + " [ -7.53456 8.119648 ]\n", + " [-12.91056 8.119648 ]\n", + " [-18.28656 8.119648 ]\n", + " [-23.66256 8.119648 ]\n", + " [-29.03856 8.119648 ]\n", + " [ -2.15856 2.743648 ]\n", + " [ -7.53456 2.743648 ]\n", + " [-12.91056 2.743648 ]\n", + " [-18.28656 2.743648 ]\n", + " [-23.66256 2.743648 ]\n", + " [-29.03856 2.743648 ]]\n", + "DEBUG:root:radec2pix: fitpx: [[ DEBUG:root:optics_fp: xyfp shape: (96, 2)\n", + "DEBUG:root:make_az_asym: xyp: shape: (96, 2)\n", + "DEBUG:root:cartToSphere: vec: [[ 0.00152888 -0.20769103 0.97819328]\n", + " [ 0.00154215 -0.1801941 0.98362986]\n", + " [ 0.00155354 -0.15200928 0.98837785]\n", + " [ 0.00156302 -0.12324112 0.99237552]\n", + " [ 0.00157054 -0.09399571 0.99557136]\n", + " [ 0.00157606 -0.06438234 0.99792406]\n", + " [ 0.00157952 -0.03451442 0.99940295]\n", + " [ 0.00158089 -0.00450904 0.99998858]\n", + " [ 0.00152888 -0.20769103 0.97819328]\n", + " [ 0.03055413 -0.20754198 0.97774883]\n", + " [ 0.0594604 -0.20712371 0.97650613]\n", + " [ 0.08813528 -0.20643751 0.97448229]\n", + " [ 0.11646734 -0.2054851 0.97170532]\n", + " [ 0.14434605 -0.20426815 0.9682142 ]\n", + " [ 0.17166149 -0.20278791 0.96405881]\n", + " [ 0.1983039 -0.2010451 0.95929997]\n", + " [ 0.00158089 -0.00450904 0.99998858]\n", + " [ 0.03159291 -0.00450572 0.99949066]\n", + " [ 0.06147904 -0.00449643 0.99809825]\n", + " [ 0.0911219 -0.00448126 0.99582966]\n", + " [ 0.12040769 -0.00446035 0.99271451]\n", + " [ 0.14922671 -0.00443385 0.98879307]\n", + " [ 0.17747265 -0.00440189 0.98411589]\n", + " [ 0.2050409 -0.00436457 0.97874367]\n", + " [ 0.1983039 -0.2010451 0.95929997]\n", + " [ 0.20004855 -0.17444879 0.9641308 ]\n", + " [ 0.20153434 -0.14716869 0.96836217]\n", + " [ 0.2027606 -0.11931453 0.97193219]\n", + " [ 0.20372608 -0.09099614 0.97478992]\n", + " [ 0.20442907 -0.06232394 0.97689533]\n", + " [ 0.20486781 -0.03340929 0.9782193 ]\n", + " [ 0.2050409 -0.00436457 0.97874367]\n", + " [ 0.00163462 -0.1957935 0.98064379]\n", + " [ 0.00165059 -0.16161745 0.9868521 ]\n", + " [ 0.00166353 -0.12651199 0.99196368]\n", + " [ 0.00167335 -0.09067166 0.99587944]\n", + " [ 0.00167995 -0.05429781 0.99852337]\n", + " [ 0.00168324 -0.01760077 0.99984368]\n", + " [ 0.01419184 -0.20756647 0.97811796]\n", + " [ 0.04970047 -0.20720276 0.97703474]\n", + " [ 0.08491857 -0.20643606 0.97476817]\n", + " [ 0.11964057 -0.20526936 0.97136534]\n", + " [ 0.15366298 -0.20370571 0.96689796]\n", + " [ 0.18678351 -0.20174719 0.96146242]\n", + " [ 0.01467408 -0.00461102 0.9998817 ]\n", + " [ 0.05138704 -0.00460274 0.99866821]\n", + " [ 0.08779394 -0.00458538 0.9961281 ]\n", + " [ 0.12368372 -0.00455917 0.99231122]\n", + " [ 0.15885436 -0.0045244 0.98729166]\n", + " [ 0.19311093 -0.0044813 0.9811667 ]\n", + " [ 0.19900616 -0.18954613 0.96149301]\n", + " [ 0.20096941 -0.15647489 0.9670196 ]\n", + " [ 0.20254341 -0.12248558 0.97158296]\n", + " [ 0.2037261 -0.08778034 0.97508476]\n", + " [ 0.2045144 -0.05256249 0.9774513 ]\n", + " [ 0.20490517 -0.01703747 0.97863353]\n", + " [ 0.00162826 -0.20759824 0.97821282]\n", + " [ 0.00162826 -0.20759824 0.97821282]\n", + " [ 0.20494776 -0.00446412 0.97876273]\n", + " [ 0.20494776 -0.00446412 0.97876273]\n", + " [ 0.01424722 -0.19576354 0.98054763]\n", + " [ 0.04989441 -0.19542056 0.97944952]\n", + " [ 0.08525013 -0.19469787 0.97715155]\n", + " [ 0.12010852 -0.19359884 0.97370089]\n", + " [ 0.15426631 -0.19212697 0.9691693 ]\n", + " [ 0.18752167 -0.19028463 0.96365314]\n", + " [ 0.01438645 -0.16159264 0.98675268]\n", + " [ 0.05038177 -0.16130879 0.98561714]\n", + " [ 0.08608239 -0.16071144 0.98324039]\n", + " [ 0.1212815 -0.15980479 0.97966996]\n", + " [ 0.15577635 -0.15859338 0.97497788]\n", + " [ 0.18936679 -0.15708053 0.9692605 ]\n", + " [ 0.01449922 -0.12649245 0.9918616 ]\n", + " [ 0.05077617 -0.12626898 0.990695DEBUG:root:radec2pix: ccdpx: [[-4.45000001e+01 -5.00000132e-01]\n", + " [-4.45000001e+01 2.91928571e+02]\n", + " [-4.44999999e+01 5.84357143e+02]\n", + " [-4.44999998e+01 8.76785714e+02]\n", + " [-4.45000000e+01 1.16921429e+03]\n", + " [-4.45000002e+01 1.46164286e+03]\n", + " [-4.44999998e+01 1.75407143e+03]\n", + " [-4.44999999e+01 2.04650000e+03]\n", + " [-4.45000001e+01 -5.00000132e-01]\n", + " [ 2.47928572e+02 -4.99999845e-01]\n", + " [ 5.40357143e+02 -5.00000146e-01]\n", + " [ 8.32785714e+02 -4.99999843e-01]\n", + " [ 1.12521429e+03 -4.99999832e-01]\n", + " [ 1.41764286e+03 -5.00000031e-01]\n", + " [ 1.71007143e+03 -5.00000120e-01]\n", + " [ 2.00250000e+03 -4.99999883e-01]\n", + " [-4.44999999e+01 2.04650000e+03]\n", + " [ 2.47928572e+02 2.04650000e+03]\n", + " [ 5.40357143e+02 2.04650000e+03]\n", + " [ 8.32785714e+02 2.04650000e+03]\n", + " [ 1.12521429e+03 2.04650000e+03]\n", + " [ 1.41764286e+03 2.04650000e+03]\n", + " [ 1.71007143e+03 2.04650000e+03]\n", + " [ 2.00250000e+03 2.04650000e+03]\n", + " [ 2.00250000e+03 -4.99999883e-01]\n", + " [ 2.00250000e+03 2.91928571e+02]\n", + " [ 2.00250000e+03 5.84357143e+02]\n", + " [ 2.00250000e+03 8.76785DEBUG:root:optics_fp: xyfp: [[ -0.230877 31.363511 ]\n", + " [ -0.230877 26.97708243]\n", + " [ -0.230877 22.59065386]\n", + " [ -0.230877 18.20422528]\n", + " [ -0.230877 13.81779671]\n", + " [ -0.230877 9.43136815]\n", + " [ -0.230877 5.04493957]\n", + " [ -0.230877 0.658511 ]\n", + " [ -0.230877 31.363511 ]\n", + " [ -4.61730557 31.363511 ]\n", + " [ -9.00373414 31.363511 ]\n", + " [-13.39016272 31.363511 ]\n", + " [-17.77659129 31.363511 ]\n", + " [-22.16301986 31.363511 ]\n", + " [-26.54944843 31.363511 ]\n", + " [-30.935877 31.363511 ]\n", + " [ -0.230877 0.658511 ]\n", + " [ -4.61730558 0.658511 ]\n", + " [ -9.00373414 0.658511 ]\n", + " [-13.39016271 0.658511 ]\n", + " [-17.77659128 0.658511 ]\n", + " [-22.16301986 0.658511 ]\n", + " [-26.54944843 0.658511 ]\n", + " [-30.935877 0.658511 ]\n", + " [-30.935877 31.363511 ]\n", + " [-30.935877 26.97708243]\n", + " [-30.935877 22.59065386]\n", + " [-30.935877 18.20422528]\n", + " [-30.935877 13.81779671]\n", + " [-30.935877 9.43136814]\n", + " [-30.935877 5.04493957]\n", + " [-30.935877 0.658511 ]\n", + " [ -0.245877 29.451011 ]\n", + " [ -0.245877 714e+02]\n", + " [ 2.00250000e+03 1.16921429e+03]\n", + " [ 2.00250000e+03 1.46164286e+03]\n", + " [ 2.00250000e+03 1.75407143e+03]\n", + " [ 2.00250000e+03 2.04650000e+03]\n", + " [-4.35000002e+01 1.27000000e+02]\n", + " [-4.34999998e+01 4.85400000e+02]\n", + " [-4.34999999e+01 8.43800000e+02]\n", + " [-4.35000001e+01 1.20220000e+03]\n", + " [-4.34999999e+01 1.56060000e+03]\n", + " [-4.35000000e+01 1.91900000e+03]\n", + " [ 8.30000001e+01 5.00000120e-01]\n", + " [ 4.41400000e+02 4.99999839e-01]\n", + " [ 7.99800000e+02 4.99999975e-01]\n", + " [ 1.15820000e+03 5.00000060e-01]\n", + " [ 1.51660000e+03 5.00000260e-01]\n", + " [ 1.87500000e+03 4.99999701e-01]\n", + " [ 8.29999997e+01 2.04550000e+03]\n", + " [ 4.41400000e+02 2.04550000e+03]\n", + " [ 7.99800000e+02 2.04550000e+03]\n", + " [ 1.15820000e+03 2.04550000e+03]\n", + " [ 1.51660000e+03 2.04550000e+03]\n", + " [ 1.87500000e+03 2.04550000e+03]\n", + " [ 2.00150000e+03 1.27000000e+02]\n", + " [ 2.00150000e+03 4.85400000e+02]\n", + " [ 2.00150000e+03 8.43800000e+02]\n", + " [ 2.00150000e+03 1.20220000e+03]\n", + " [ 2.00150000e+03 1.56060000e+03]\n", + " [ 2.00150000e+03 1.91900000e+03]\n", + " [-4.35000068]\n", + " [ 0.08675481 -0.12579928 0.9882551 ]\n", + " [ 0.12222707 -0.12508774 0.98458804]\n", + " [ 0.15699061 -0.12413931 0.979767 ]\n", + " [ 0.19084708 -0.12295784 0.97388848]\n", + " [ 0.01458479 -0.09065756 0.99577532]\n", + " [ 0.05107523 -0.09049631 0.99458621]\n", + " [ 0.08726392 -0.09015775 0.99209707]\n", + " [ 0.1229415 -0.08964573 0.98835673]\n", + " [ 0.15790584 -0.08896468 0.98343837]\n", + " [ 0.1919602 -0.0881182 0.97743873]\n", + " [ 0.01464229 -0.05428931 0.99841789]\n", + " [ 0.05127607 -0.05419219 0.9972131 ]\n", + " [ 0.08760541 -0.05398843 0.99469118]\n", + " [ 0.12341989 -0.05368064 0.99090157]\n", + " [ 0.15851749 -0.05327188 0.985918 ]\n", + " [ 0.19270261 -0.0527647 0.97983753]\n", + " [ 0.01467095 -0.01759801 0.9997375 ]\n", + " [ 0.05137612 -0.01756642 0.99852487]\n", + " [ 0.08777538 -0.01750018 0.99598656]\n", + " [ 0.12365776 -0.01740019 0.99217236]\n", + " [ 0.15882123 -0.0172675 0.98715635]\n", + " [ 0.1930708 -0.01710301 0.98103576]]\n", + "03e+01 4.99999746e-01]\n", + " [-4.35000003e+01 4.99999746e-01]\n", + " [ 2.00150000e+03 2.04550000e+03]\n", + " [ 2.00150000e+03 2.04550000e+03]\n", + " [ 8.29999998e+01 1.27000000e+02]\n", + " [ 4.41400000e+02 1.27000000e+02]\n", + " [ 7.99800000e+02 1.27000000e+02]\n", + " [ 1.15820000e+03 1.27000000e+02]\n", + " [ 1.51660000e+03 1.27000000e+02]\n", + " [ 1.87500000e+03 1.27000000e+02]\n", + " [ 8.30000000e+01 4.85400000e+02]\n", + " [ 4.41400000e+02 4.85400000e+02]\n", + " [ 7.99800000e+02 4.85400000e+02]\n", + " [ 1.15820000e+03 4.85400000e+02]\n", + " [ 1.51660000e+03 4.85400000e+02]\n", + " [ 1.87500000e+03 4.85400000e+02]\n", + " [ 8.29999999e+01 8.43800000e+02]\n", + " [ 4.41400000e+02 8.43800000e+02]\n", + " [ 7.99800000e+02 8.43800000e+02]\n", + " [ 1.15820000e+03 8.43800000e+02]\n", + " [ 1.51660000e+03 8.43800000e+02]\n", + " [ 1.87500000e+03 8.43800000e+02]\n", + " [ 8.29999998e+01 1.20220000e+03]\n", + " [ 4.41400000e+02 1.20220000e+03]\n", + " [ 7.99800000e+02 1.20220000e+03]\n", + " [ 1.15820000e+03 1.20220000e+03]\n", + " [ 1.51660000e+03 1.20220000e+03]\n", + " [ 1.87500000e+03 1.20220000e+03]\n", + " [ 8.30000000e+01 1.56060000e+03]\n", + " [ 4.41400000e+02 1.56060000e+03]\n", + " [ 7.99800000e+02 1.56060000e+03]\n", + " [ 1.15820000e+03 1.56060000e+03]\n", + " [ 1.51660000e+03 1.5606000 24.075011 ]\n", + " [ -0.245877 18.699011 ]\n", + " [ -0.245877 13.323011 ]\n", + " [ -0.245877 7.947011 ]\n", + " [ -0.245877 2.571011 ]\n", + " [ -2.143377 31.348511 ]\n", + " [ -7.519377 31.348511 ]\n", + " [-12.895377 31.348511 ]\n", + " [-18.271377 31.348511 ]\n", + " [-23.647377 31.348511 ]\n", + " [-29.023377 31.348511 ]\n", + " [ -2.143377 0.673511 ]\n", + " [ -7.519377 0.673511 ]\n", + " [-12.895377 0.673511 ]\n", + " [-18.271377 0.673511 ]\n", + " [-23.64737701 0.673511 ]\n", + " [-29.023377 0.673511 ]\n", + " [-30.920877 29.451011 ]\n", + " [-30.920877 24.075011 ]\n", + " [-30.920877 18.699011 ]\n", + " [-30.920877 13.323011 ]\n", + " [-30.920877 7.947011 ]\n", + " [-30.920877 2.571011 ]\n", + " [ -0.245877 31.348511 ]\n", + " [ -0.245877 31.348511 ]\n", + " [-30.920877 0.673511 ]\n", + " [-30.920877 0.673511 ]\n", + " [ -2.143377 29.451011 ]\n", + " [ -7.519377 29.451011 ]\n", + " [-12.895377 29.451011 ]\n", + " [-18.271377 29.451011 ]\n", + " [-23.647377 29.451011 ]\n", + " [-29.023377 29.451011 ]\n", + " [ -2.143377 24.075011 ]\n", + " [ -7.519377 24.075011 ]\n", + "DEBUG:root:optics_fp: rtanth: [31.57034978 27.18406789 22.79784246 18.41171382 14.02577275 9.64027533\n", + " 5.25633205 0.89702627 31.57034978 31.90657516 32.83068082 34.29517719\n", + " 36.2346004 38.57738799 41.25487818 44.20629586 0.89702627 4.70608217\n", + " 9.05379887 13.42672148 17.80628925 22.18856766 26.57221564 30.95665138\n", + " 44.20629586 41.18838618 38.43502607 36.00695508 33.97398873 32.41056182\n", + " 31.38691822 30.95665138 29.65803336 24.28227528 18.90665475 13.53133577\n", + " 8.15691443 2.78858575 31.62774376 32.44001712 34.0910252 36.46702674\n", + " 39.4372011 42.87825061 2.32483604 7.57927428 12.93401278 18.30122199\n", + " 23.67242106 29.04539658 42.85058957 39.32178756 36.24963004 33.75901556\n", + " 31.98608036 31.05398999 31.55546766 31.55546766 30.94207994 30.94207994\n", + " 29.73492188 30.59748544 32.34268701 34.83813202 37.93605456 41.50175634\n", + " 24.3761262 25.42117355 27.49689714 30.39285101 33.89947174 37.84740055\n", + " 19.02703944 20.34867971 22.88912523 26.29749216 30.28212156 34.64474606\n", + " 13.69903951 15.48238DEBUG:root:radec2pix: xyfp: [[ -0.172993 31.426621 ]\n", + " [ -0.172993 27.04019243]\n", + " [ -0.172993 22.65376385]\n", + " [ -0.172993 18.26733528]\n", + " [ -0.172993 13.88090671]\n", + " [ -0.172993 9.49447814]\n", + " [ -0.172993 5.10804957]\n", + " [ -0.172993 0.721621 ]\n", + " [ -0.172993 31.426621 ]\n", + " [ -4.55942157 31.426621 ]\n", + " [ -8.94585014 31.426621 ]\n", + " [-13.33227871 31.426621 ]\n", + " [-17.71870729 31.426621 ]\n", + " [-22.10513586 31.426621 ]\n", + " [-26.49156443 31.426621 ]\n", + " [-30.877993 31.426621 ]\n", + " [ -0.172993 0.721621 ]\n", + " [ -4.55942157 0.721621 ]\n", + " [ -8.94585014 0.721621 ]\n", + " [-13.33227872 0.721621 ]\n", + " [-17.71870728 0.721621 ]\n", + " [-22.10513586 0.721621 ]\n", + " [-26.49156443 0.721621 ]\n", + " [-30.877993 0.721621 ]\n", + " [-30.877993 31.426621 ]\n", + " [-30.877993 27.04019243]\n", + " [-30.877993 22.65376385]\n", + " [-30.877993 18.26733529]\n", + " [-30.877993 13.88090671]\n", + " [-30.877993 9.49447814]\n", + " [-30.877993 5.10804957]\n", + " [-30.877993 0.721621 ]\n", + " [ -0.187993 29.514121 ]\n", + " [ -0.187993 0e+03]\n", + " [ 1.87500000e+03 1.56060000e+03]\n", + " [ 8.30000000e+01 1.91900000e+03]\n", + " [ 4.41400000e+02 1.91900000e+03]\n", + " [ 7.99800000e+02 1.91900000e+03]\n", + " [ 1.15820000e+03 1.91900000e+03]\n", + " [ 1.51660000e+03 1.91900000e+03]\n", + " [ 1.87500000e+03 1.91900000e+03]]\n", + "416 18.69618965 22.7418897 27.2514649 32.02957826\n", + " 8.4321936 11.09695565 15.26386952 20.01578758 25.02160156 30.1551337\n", + " 3.51323872 8.02392562 13.19949508 18.48980017 23.81851176 29.16458548]\n", + " [-12.895377 24.075011 ]\n", + " [-18.271377 24.075011 ]\n", + " [-23.647377 24.075011 ]\n", + " [-29.023377 24.075011 ]\n", + " [ -2.143377 18.699011 ]\n", + " [ -7.519377 18.699011 ]\n", + " [-12.895377 18.699011 ]\n", + " [-18.271377 18.699011 ]\n", + " [-23.647377 18.699011 ]\n", + " [-29.023377 18.699011 ]\n", + " [ -2.143377 13.323011 ]\n", + " [ -7.519377 13.323011 ]\n", + " [-12.895377 13.323011 ]\n", + " [-18.271377 13.323011 ]\n", + " [-23.647377 13.323011 ]\n", + " [-29.023377 13.323011 ]\n", + " [ -2.143377 7.947011 ]\n", + " [ -7.519377 7.947011 ]\n", + " [-12.895377 7.947011 ]\n", + " [-18.271377 7.947011 ]\n", + " [-23.647377 7.947011 ]\n", + " [-29.023377 7.947011 ]\n", + " [ -2.143377 2.571011 ]\n", + " [ -7.519377 2.571011 ]\n", + " [-12.895377 2.571011 ]\n", + " [-18.271377 2.571011 ]\n", + " [-23.647377 2.571011 ]\n", + " [-29.023377 2.571011 ]]\n", + " 24.138121 ]\n", + " [ -0.187993 18.76212101]\n", + " [ -0.187993 13.386121 ]\n", + " [ -0.187993 8.010121 ]\n", + " [ -0.187993 2.634121 ]\n", + " [ -2.085493 31.411621 ]\n", + " [ -7.461493 31.411621 ]\n", + " [-12.837493 31.411621 ]\n", + " [-18.213493 31.411621 ]\n", + " [-23.589493 31.411621 ]\n", + " [-28.965493 31.411621 ]\n", + " [ -2.085493 0.736621 ]\n", + " [ -7.461493 0.736621 ]\n", + " [-12.837493 0.736621 ]\n", + " [-18.213493 0.736621 ]\n", + " [-23.58949299 0.736621 ]\n", + " [-28.965493 0.736621 ]\n", + " [-30.862993 29.514121 ]\n", + " [-30.862993 24.138121 ]\n", + " [-30.862993 18.762121 ]\n", + " [-30.862993 13.386121 ]\n", + " [-30.862993 8.010121 ]\n", + " [-30.862993 2.634121 ]\n", + " [ -0.187993 31.411621 ]\n", + " [ -0.187993 31.411621 ]\n", + " [-30.862993 0.736621 ]\n", + " [-30.862993 0.736621 ]\n", + " [ -2.085493 29.514121 ]\n", + " [ -7.461493 29.514121 ]\n", + " [-12.837493 29.514121 ]\n", + " [-18.213493 29.514121 ]\n", + " [-23.589493 29.514121 ]\n", + " [-28.965493 29.514121 ]\n", + " [ -2.085493 24.138121 ]\n", + " [ -7.461493 24.138121 ]\n", + " [-12.837493 24.138121 ]\n", + " [-18.213493 24.138121 ]\n", + " [-23.589493 24.138121 ]\n", + " [-28.965493 24.138121 ]\n", + " [ -2.085493 18.762121 ]\n", + " [ -7.461493 18.762121 ]\n", + " [-12.837493 18.762121 ]\n", + " [-18.213493 18.762121 ]\n", + " [-23.589493 18.762121 ]\n", + " [-28.965493 18.762121 ]\n", + " [ -2.085493 13.386121 ]\n", + " [ -7.461493 13.386121 ]\n", + " [-12.837493 13.386121 ]\n", + " [-18.213493 13.386121 ]\n", + " [-23.589493 13.386121 ]\n", + " [-28.965493 13.386121 ]\n", + " [ -2.085493 8.010121 ]\n", + " [ -7.461493 8.010121 ]\n", + " [-12.837493 8.010121 ]\n", + " [-18.213493 8.010121 ]\n", + " [-23.589493 8.010121 ]\n", + " [-28.965493 8.010121 ]\n", + " [ -2.085493 2.634121 ]\n", + " [ -7.461493 2.634121 ]\n", + " [-12.837493 2.634121 ]\n", + " [-18.213493 2.634121 ]\n", + " [-23.589493 2.634121 ]\n", + " [-28.965493 2.634121 ]]\n", + "DEBUG:root:optics_fp: xyfp shape: (96, 2)\n", + "DEBUG:root:radec2pix: lng: [270.42176524 270.49034045 270.58554379 270.72662079 270.95724718\n", + " 271.40230304 272.6202602 289.32090211 270.42176524 278.37487059\n", + " 286.01754065 293.1193046 299.54422335 305.24693184 310.24816583\n", + " 314.60671783 289.32090211 351.88332455 355.81697528 357.18453549\n", + " 357.87852145 358.29811982 358.57917324 358.78056782 314.60671783\n", + " 318.91052218 323.86153916 329.52530495 335.93162927 343.04519816\n", + " 350.73789032 358.78056782 270.47833289 270.58513886 270.75335014\n", + " 271.05727717 271.77214072 275.46283159 273.91137001 283.48836134\n", + " 292.36007687 300.23563069 307.02864268 312.79442784 342.55577414\n", + " 354.88167257 357.01022263 357.88894543 358.36857558 358.67064356\n", + " 316.39469688 322.09565632 328.83707711 336.69003224 345.58630386\n", + " 355.24690052 270.44938101 270.44938101 358.75219462 358.75219462\n", + " 274.16251665 284.32266507 293.64661849 301.81542209 308.76235319\n", + " 314.58099285 275.08757932 287.34521298 298.17498348 307.196148\n", + " 314.48659385 320.3241534 276.53899869 291.90639058 304.59126569\n", + " 314.33729311 321.66504236 327.20736404 279.1393103 299.43995741\n", + " 314.06556227 323.90144592 330.60294465 335.34278839 285.09401101\n", + " 313.41621828 328.3557916 336.49369688 341.42440255 344.68693562\n", + " 309.81698293 341.12351394 348.72452469 351.99035546 353.79501012\n", + " 354.93771634]\n", + "2.13550000e+03 -4.99999973e-01]\n", + " [ 2.13550000e+03 2.91928572e+02]\n", + " [ 2.13550000e+03 5.84357143e+02]\n", + " [ 2.13550000e+03 8.76785714e+02]\n", + " [ 2.13550000e+03 1.16921429e+03]\n", + " [ 2.13550000e+03 1.46164286e+03]\n", + " [ 2.13550000e+03 1.75407143e+03]\n", + " [ 2.13550000e+03 2.04650000e+03]\n", + " [ 2.13550000e+03 -4.99999973e-01]\n", + " [ 2.42792857e+03 -4.99999766e-01]\n", + " [ 2.72035714e+03 -5.00000023e-01]\n", + " [ 3.01278571e+03 -4.99999798e-01]\n", + " [ 3.30521429e+03 -5.00000229e-01]\n", + " [ 3.59764286e+03 -5.00000231e-01]\n", + " [ 3.89007143e+03 -4.99999870e-01]\n", + " [ 4.18250000e+03 -4.99999884e-01]\n", + " [ 2.13550000e+03 2.04650000eDEBUG:root:make_az_asym: xyp: [[ -0.24606 31.536148 ]\n", + " [ -0.24606 27.14971943]\n", + " [ -0.24606 22.76329086]\n", + " [ -0.24606 18.37686229]\n", + " [ -0.24606 13.99043371]\n", + " [ -0.24606 9.60400514]\n", + " [ -0.24606 5.21757658]\n", + " [ -0.24606 0.831148 ]\n", + " [ -0.24606 31.536148 ]\n", + " [ -4.63248857 31.536148 ]\n", + " [ -9.01891714 31.536148 ]\n", + " [-13.40534571 31.536148 ]\n", + " [-17.79177429 31.536148 ]\n", + " [-22.17820286 31.536148 ]\n", + " [-26.56463143 31.536148 ]\n", + " [-30.95106 31.536148 ]\n", + " [ -0.24606 0.831148 ]\n", + " [ -4.63248857 0.831148 ]\n", + " [ -9.01891714 0.831148 ]\n", + " [-13.40534571 0.831148 ]\n", + " [-17.79177429 0.831148 ]\n", + " [-22.17820285 0.831148 ]\n", + " [-26.56463143 0.831148 ]\n", + " [-30.95106 0.831148 ]\n", + " [-30.95106 31.536148 ]\n", + " [-30.95106 27.14971943]\n", + " [-30.95106 22.76329086]\n", + " [-30.95106 18.37686228]\n", + " [-30.95106 13.99043371]\n", + " [-30.95106 9.60400514]\n", + " [-30.95106 5.21757657]\n", + " [-30.95106 0.831148 ]\n", + " [ -0.26106 29.623648 ]\n", + " [ -0.26106 +03]\n", + " [ 2.42792857e+03 2.04650000e+03]\n", + " [ 2.72035714e+03 2.04650000e+03]\n", + " [ 3.01278571e+03 2.04650000e+03]\n", + " [ 3.30521429e+03 2.04650000e+03]\n", + " [ 3.59764286e+03 2.04650000e+03]\n", + " [ 3.89007143e+03 2.04650000e+03]\n", + " [ 4.18250000e+03 2.04650000e+03]\n", + " [ 4.18250000e+03 -4.99999884e-01]\n", + " [ 4.18250000e+03 2.91928572e+02]\n", + " [ 4.18250000e+03 5.84357143e+02]\n", + " [ 4.18250000e+03 8.76785714e+02]\n", + " [ 4.18250000e+03 1.16921429e+03]\n", + " [ 4.18250000e+03 1.46164286e+03]\n", + " [ 4.18250000e+03 1.75407143e+03]\n", + " [ 4.18250000e+03 2.04650000e+03]\n", + " [ 2.13650000e+03 1.27000000e+02]\n", + " [ 2.13650000e+03 4.85400000e+02]\n", + " [ 2.13650000e+03 8.43800000e+02]\n", + " [ 2.13650000e+03 1.20220000e+03]\n", + " [ 2.13650000e+03 1.56060000e+03]\n", + " [ 2.13650000e+03 1.91900000e+03]\n", + " [ 2.26300000e+03 4.99999770e-01]\n", + " [ 2.62140000e+03 5.00000267e-01]\n", + " [ 2.97980000e+03 4.99999825e-01]\n", + " [ 3.33820000e+03 5.00000071e-01]\n", + " [ 3.69660000e+03 5.00000113e-01]\n", + " [ 4.05500000e+03 5.00000214e-01]\n", + " [ 2.26300000e+03 2.04550000e+03]\n", + " [ 2.62140000e+DEBUG:root:radec2pix: xyfp: [[ 0.16415906 -31.72847131]\n", + " [ 0.16601788 -27.34204313]\n", + " [ 0.1678767 -22.95561497]\n", + " [ 0.16973552 -18.56918678]\n", + " [ 0.17159434 -14.1827586 ]\n", + " [ 0.17345315 -9.79633043]\n", + " [ 0.17531197 -5.40990225]\n", + " [ 0.17717079 -1.02347407]\n", + " [ 0.16415906 -31.72847131]\n", + " [ 4.55058724 -31.73033014]\n", + " [ 8.93701541 -31.73218895]\n", + " [ 13.32344359 -31.73404778]\n", + " [ 17.70987177 -31.73590659]\n", + " [ 22.09629995 -31.73776541]\n", + " [ 26.48272812 -31.73962422]\n", + " [ 30.8691563 -31.74148305]\n", + " [ 0.17717079 -1.02347407]\n", + " [ 4.56359897 -1.02533289]\n", + " [ 8.95002714 -1.02719171]\n", + " [ 13.33645532 -1.02905053]\n", + " [ 17.7228835 -1.03090935]\n", + " [ 22.10931168 -1.03276817]\n", + " [ 26.49573986 -1.03462699]\n", + " [ 30.88216803 -1.0364858 ]\n", + " [ 30.8691563 -31.74148305]\n", + " [ 30.87101512 -27.35505487]\n", + " [ 30.87287394 -22.96862669]\n", + " [ 30.87473276 -18.58219851]\n", + " [ 30.87659158 -14.19577034]\n", + " [ 30.8784504 -9.80934216]\n", + " [ 30.88030922 -5.42291398]\n", + " [ 30.88216803 -1.0364858 ]\n", + " [ 0.17996951 -29.81597784]\n", + " [ 0.18224768 03 2.04550000e+03]\n", + " [ 2.97980000e+03 2.04550000e+03]\n", + " [ 3.33820000e+03 2.04550000e+03]\n", + " [ 3.69660000e+03 2.04550000e+03]\n", + " [ 4.05500000e+03 2.04550000e+03]\n", + " [ 4.18150000e+03 1.27000000e+02]\n", + " [ 4.18150000e+03 4.85400000e+02]\n", + " [ 4.18150000e+03 8.43800000e+02]\n", + " [ 4.18150000e+03 1.20220000e+03]\n", + " [ 4.18150000e+03 1.56060000e+03]\n", + " [ 4.18150000e+03 1.91900000e+03]\n", + " [ 2.13650000e+03 5.00000284e-01]\n", + " [ 2.13650000e+03 5.00000284e-01]\n", + " [ 4.18150000e+03 2.04550000e+03]\n", + " [ 4.18150000e+03 2.04550000e+03]\n", + " [ 2.26300000e+03 1.27000000e+02]\n", + " [ 2.62140000e+03 1.27000000e+02]\n", + " [ 2.97980000e+03 1.27000000e+02]\n", + " [ 3.33820000e+03 1.27000000e+02]\n", + " [ 3.69660000e+03 1.27000000e+02]\n", + " [ 4.05500000e+03 1.27000000e+02]\n", + " [ 2.26300000e+03 4.85400000e+02]\n", + " [ 2.62140000e+03 4.85400000e+02]\n", + " [ 2.97980000e+03 4.85400000e+02]\n", + " [ 3.33820000e+03 4.85400000e+02]\n", + " [ 3.69660000e+03 4.85400000e+02]\n", + " [ 4.05500000e+03 4.85400000e+02]\n", + " [ 2.26300000e+03 8.43800000e+02]\n", + " [ 2.62140000e+03 8.43800000e+02]\n", + " [ 2.97980000e+03 8.43800000e+02]\n", + " [ 3.33820000e+03 8.43800000e+02]\n", + " [ 3.69660000e+03 8.43800000e+02]\n", + " [ 4.05500000e+03 8.43800000e+02]\n", + " [ 2.26300000e+03 1.20220000e+03]\n", + " [ 2.62140000e+03 1.20220000e+03]\n", + " [ 2.97980000e+03 1.20220000e+03]\n", + " [ 3.33820000e+03 1.20220000e+03]\n", + " [ 3.69660000e+03 1.20220000e+03]\n", + " [ 4.05500000e+03 1.20220000e+03]\n", + " [ 2.26300000e+03 1.56060000e+03]\n", + " [ 2.62140000e+03 1.56060000e+03]\n", + " [ 2.97980000e+03 1.56060000e+03]\n", + " [ 3.33820000e+03 1.56060000e+03]\n", + " [ 3.69660000e+03 1.56060000e+03]\n", + " [ 4.05500000e+03 1.56060000e+03]\n", + " [ 2.26300000e+03 1.91900000e+03]\n", + " [ 2.62140000e+03 1.91900000e+03]\n", + " [ 2.97980000e+03 1.91900000e+03]\n", + " [ 3.33820000e+03 1.91900000e+03]\n", + " [ 3.69660000e+03 1.91900000e+03]\n", + " [ 4.05500000e+03 1.91900000e+03]]\n", + " 24.247648 ]\n", + " [ -0.26106 18.87164801]\n", + " [ -0.26106 13.495648 ]\n", + " [ -0.26106 8.119648 ]\n", + " [ -0.26106 2.743648 ]\n", + " [ -2.15856 31.521148 ]\n", + " [ -7.53456 31.521148 ]\n", + " [-12.91056 31.521148 ]\n", + " [-18.2865DEBUG:root:optics_fp: cphi: [-0.00747594 -0.00870042 -0.01039606 -0.01289954 -0.01696858 -0.02473916\n", + " -0.04546654 -0.26697332 -0.00747594 -0.14487442 -0.27440415 -0.39058855\n", + " -0.49073902 -0.57464131 -0.6436715 -0.69992333 -0.26697332 -0.98296427\n", + " -0.99542074 -0.99791805 -0.99881542 -0.99923641 -0.99946703 -0.99960689\n", + " -0.69992333 -0.75121935 -0.80504713 -0.85934793 -0.91078494 -0.95473483\n", + " -0.98588803 -0.99960689 -0.00847102 -0.01037136 -0.01335227 -0.01870128\n", + " -0.03109752 -0.0911811 -0.06793149 -0.23195178 -0.37841395 -0.50117932\n", + " -0.59975148 -0.67699869 -0.92564824 -0.99323234 -0.99767802 -0.99883933\n", + " -0.99930549 -0.99953809 -0.72172248 -0.78650646 -0.85317965 -0.91614203\n", + " -0.96694122 -0.99598364 -0.00795487 -0.00795487 -0.9995928 -0.9995928\n", + " -0.07226297 -0.24592654 -0.39887637 -0.52461865 -0.62348955 -0.69945795\n", + " -0.08817399 -0.29602647 -0.46919258 -0.60136972 -0.69774952 -0.76701014\n", + " -0.11299429 -0.36984939 -0.56367146 -0.69504524 -0.7811192 -0.83793215\n", + " -0.1569857 -0.48613658 -0.69011673 -0.80373942 -0.86801033 -0.90636701\n", + " -0.25511271 -0.67830854 -0.84534002 -0.91323709 -0.94538951 -0.96272694\n", + " -0.6124737 -0.93816501 -0.97759544 -0.98864055 -0.99316726 -0.99544587]\n", + "DEBUG:root:cartToSphere: vec: [[-0.20650899 -0.20112017 0.95755142]\n", + " [-0.20834684 -0.17462343 0.96233999]\n", + " [-0.209912 -0.14743759 0.96653976]\n", + " [-0.2112049 -0.11967398 0.97008795]\n", + " [-0.21222492 -0.09144325 0.97293305]\n", + " [-0.21297066 -0.06285614 0.97503467]\n", + " [-0.21344048 -0.0340241 0.97636342]\n", + " [-0.21363303 -0.00505944 0.97690088]\n", + " [-0.20650899 -0.20112017 0.95755142]\n", + " [-0.18010636 -0.20295163 0.96248238]\n", + " [-0.15299311 -0.20451753 0.96683281]\n", + " [-0.12528058 -0.20581845 0.97053776]\n", + " [-0.09707928 -0.20685386 0.97354358]\n", + " [-0.06849975 -0.20762236 0.97580774]\n", + " [-0.03965325 -0.2081222 0.97729871]\n", + " [-0.01065205 -0.20835189 0.97799592]\n", + " [-0.21363303 -0.00505944 0.97690088]\n", + " [-0.1862962 -0.0050993 0.98248039]\n", + " [-0.15824793 -0.00513287 0.98738607]\n", + " [-0.12959237 -0.00516008 0.9915DEBUG:root:optics_fp: rtanth: [31.42709713 27.04074579 22.65442436 18.26815439 13.88198464 9.49605401\n", + " 5.11097808 0.742067 31.42709713 31.75564253 32.6750783 34.13769417\n", + " 36.07748738 38.42225317 41.10274314 44.05772304 0.742067 4.61617395\n", + " 8.97490789 13.35179361 17.73339574 22.11691136 26.50139096 30.88642402\n", + " 44.05772304 41.04415255 38.29678143 35.87681689 33.85454213 32.30472979\n", + " 31.29764563 30.88642402 29.51471971 24.13885305 18.76306281 13.38744101\n", + " 8.01232674 2.64082086 31.48077532 32.28565953 33.93362876 36.31007107\n", + " 39.28300031 42.72809051 2.2117621 7.49776555 12.85860945 18.22838275\n", + " 23.6009913 28.97485798 42.70371969 39.18128664 36.11843741 33.64093596\n", + " 31.88551984 30.97519863 31.41218354 31.41218354 30.87178238 30.87178238\n", + " 29.58771061 30.4426874 32.18516063 34.68161856 37.78289981 41.35315131\n", + " 24.22804504 25.26505023 27.33953387 30.23872042 33.75074911 37.7047566\n", + " 18.87767108 20.19136108 22.73364051 26.14858527 30.14102461 34.5111137\n", + " 13.54760187 15.32521166 31.521148 ]\n", + " [-23.66256 31.521148 ]\n", + " [-29.03856 31.521148 ]\n", + " [ -2.15856 0.846148 ]\n", + " [ -7.53456 0.846148 ]\n", + " [-12.91056 0.846148 ]\n", + " [-18.28655999 0.846148 ]\n", + " [-23.66256 0.846148 ]\n", + " [-29.03856 0.846148 ]\n", + " [-30.93606 29.623648 ]\n", + " [-30.93606 24.247648 ]\n", + " [-30.93606 18.871648 ]\n", + " [-30.93606 13.495648 ]\n", + " [-30.93606 8.119648 ]\n", + " [-30.93606 2.743648 ]\n", + " [ -0.26106 31.521148 ]\n", + " [ -0.26106 31.521148 ]\n", + " [-30.93606 0.846148 ]\n", + " [-30.93606 0.846148 ]\n", + " [ -2.15856 29.623648 ]\n", + " [ -7.53456 29.623648 ]\n", + " [-12.91056 29.623648 ]\n", + " [-18.28656 29.623648 ]\n", + " [-23.66256 29.623648 ]\n", + " [-29.03856 29.623648 ]\n", + " [ -2.15856 24.247648 ]\n", + " [ -7.53456 24.247648 ]\n", + " [-12.91056 24.247648 ]\n", + " [-18.28656 24.247648 ]\n", + " [-23.66256 24.247648 ]\n", + " [-29.03856 24.247648 ]\n", + " [ -2.15856 18.871648 ]\n", + " [ -7.53456 18.871648 ]\n", + " [-12.91056 18.871648 ]\n", + " [-18.28656 18.87164-24.43997833]\n", + " [ 0.18452584 -19.06397881]\n", + " [ 0.18680401 -13.6879793 ]\n", + " [ 0.18908217 -8.31197977]\n", + " [ 0.19136034 -2.93598025]\n", + " [ 2.07666524 -31.71428177]\n", + " [ 7.45266476 -31.71655993]\n", + " [ 12.82866428 -31.7188381 ]\n", + " [ 18.2046638 -31.72111627]\n", + " [ 23.58066331 -31.72339443]\n", + " [ 28.95666283 -31.7256726 ]\n", + " [ 2.08966426 -1.03928452]\n", + " [ 7.46566378 -1.04156269]\n", + " [ 12.8416633 -1.04384085]\n", + " [ 18.21766282 -1.04611902]\n", + " [ 23.59366233 -1.04839718]\n", + " [ 28.96966185 -1.05067535]\n", + " [ 30.85496675 -29.82897686]\n", + " [ 30.85724492 -24.45297735]\n", + " [ 30.85952308 -19.07697783]\n", + " [ 30.86180126 -13.70097831]\n", + " [ 30.86407941 -8.32497879]\n", + " [ 30.86635759 -2.94897928]\n", + " [ 0.17916541 -31.71347767]\n", + " [ 0.17916541 -31.71347767]\n", + " [ 30.86716168 -1.05147945]\n", + " [ 30.86716168 -1.05147945]\n", + " [ 2.07746934 -29.81678193]\n", + " [ 7.45346886 -29.8190601 ]\n", + " [ 12.82946837 -29.82133827]\n", + " [ 18.20546789 -29.82361643]\n", + " [ 23.58146741 -29.82589461]\n", + " [ 28.95746693 -29.82817277]\n", + " [ 2.07974751 -24.44078242]\n", + " [ 7.45574702 -24.44306058]\n", + "DEBUG:root:radec2pix: lat: [78.01259544 79.61854981 81.2561548 82.92023352 84.60572556 86.30750292\n", + " 88.02000573 89.72623162 78.01259544 77.8905989 77.5557472 77.02861409\n", + " 76.33783962 75.51523956 74.59210732 73.59715789 89.72623162 88.17123291\n", + " 86.46586111 84.76551164 83.07960166 81.41406813 79.77423864 78.16538766\n", + " 73.59715789 74.60763881 75.5491728 76.39298182 77.10737428 77.65965515\n", + " 78.01977483 78.16538766 78.70852006 80.69871958 82.73128852 84.79686317\n", + " 86.88594315 88.98689611 77.99183548 77.69708601 77.10179122 76.25561048\n", + " 75.21673598 74.0417777 89.11867119 87.04263922 84.95641064 82.89040132\n", + " 80.8558565 78.86257349 74.04815363 75.2440736 76.30818941 77.18330532\n", + " 77.80960312 78.1346569 78.0179859 78.0179859 78.1707132 78.1707132\n", + " 78.68041726 78.36422733 77.72853599 76.83064382 75.73566662 74.50486571\n", + " 80.66353948 80.27068815 79.49543516 78.42701765 77.15572991 75.75689035\n", + " 82.68520532 82.17800874 81.21001267 79.9277617 78.4547664 76.877901\n", + " 84.73149404 84.03535931 82 [ 12.83174654 -24.44533875]\n", + " [ 18.20774606 -24.44761692]\n", + " [ 23.58374558 -24.44989508]\n", + " [ 28.95974509 -24.45217325]\n", + " [ 2.08202567 -19.0647829 ]\n", + " [ 7.45802519 -19.06706107]\n", + " [ 12.83402471 -19.06933924]\n", + " [ 18.21002422 -19.0716174 ]\n", + " [ 23.58602374 -19.07389557]\n", + " [ 28.96202325 -19.07617373]\n", + " [ 2.08430384 -13.68878339]\n", + " [ 7.46030335 -13.69106155]\n", + " [ 12.83630287 -13.69333972]\n", + " [ 18.21230239 -13.69561789]\n", + " [ 23.58830191 -13.69789605]\n", + " [ 28.96430143 -13.70017422]\n", + " [ 2.086582 -8.31278387]\n", + " [ 7.46258152 -8.31506203]\n", + " [ 12.83858103 -8.3173402 ]\n", + " [ 18.21458055 -8.31961837]\n", + " [ 23.59058007 -8.32189653]\n", + " [ 28.96657959 -8.3241747 ]\n", + " [ 2.08886017 -2.93678435]\n", + " [ 7.46485969 -2.93906252]\n", + " [ 12.8408592 -2.94134068]\n", + " [ 18.21685872 -2.94361885]\n", + " [ 23.59285824 -2.94589701]\n", + " [ 28.96885776 -2.94817518]]\n", + "DEBUG:root:radec2pix: fitpx: [[-5.00000135e-01 -5.00000132e-01]\n", + " [-5.00000144e-01 2.91928571e+02]\n", + " [-4.99999914e-01 5.84357143e+02]\n", + " [-4.99999810e-01 8.76785714e+02]\n", + " [-5.00000028e-01 5393]\n", + " [-0.10043485 -0.00518078 0.99493015]\n", + " [-0.07088401 -0.00519482 0.99747104]\n", + " [-0.04105265 -0.00520206 0.99914344]\n", + " [-0.01105755 -0.00520239 0.99992533]\n", + " [-0.01065205 -0.20835189 0.97799592]\n", + " [-0.01075054 -0.18087002 0.98344825]\n", + " [-0.01083605 -0.15269708 0.98821363]\n", + " [-0.01090831 -0.12393724 0.9922301 ]\n", + " [-0.01096697 -0.09469638 0.99544579]\n", + " [-0.01101162 -0.06508391 0.99781904]\n", + " [-0.0110419 -0.03521344 0.99931881]\n", + " [-0.01105755 -0.00520239 0.99992533]\n", + " [-0.20725456 -0.18966571 0.9597252 ]\n", + " [-0.20932255 -0.15671259 0.96520735]\n", + " [-0.21098167 -0.12283514 0.96974134]\n", + " [-0.21223121 -0.0882373 0.97322767]\n", + " [-0.21306867 -0.053123 0.97559197]\n", + " [-0.2134911 -0.01769778 0.97678469]\n", + " [-0.19509826 -0.20186172 0.95978566]\n", + " [-0.16224603 -0.20392662 0.96544816]\n", + " [-0.12843717 -0.20559352 0.97017277]\n", + " [-0.09387541 -0.20686189 0.97385603]\n", + " [-0.05876435 -0.20772922 0.97641964]\n", + " [-0.02330924 -0.20819238 0.97781011]\n", + " [-0.20180806 -0.00517714 0.97941141]\n", + " [-0.16781243 -0.00 1.16921429e+03]\n", + " [-5.00000159e-01 1.46164286e+03]\n", + " [-4.99999755e-01 1.75407143e+03]\n", + " [-4.99999923e-01 2.04650000e+03]\n", + " [-5.00000135e-01 -5.00000132e-01]\n", + " [ 2.91928572e+02 -4.99999845e-01]\n", + " [ 5.84357143e+02 -5.00000146e-01]\n", + " [ 8.76785714e+02 -4.99999843e-01]\n", + " [ 1.16921429e+03 -4.99999832e-01]\n", + " [ 1.46164286e+03 -5.00000031e-01]\n", + " [ 1.75407143e+03 -5.00000120e-01]\n", + " [ 2.04650000e+03 -4.99999883e-01]\n", + " [-4.99999923e-01 2.04650000e+03]\n", + " [ 2.91928572e+02 2.04650000e+03]\n", + " [ 5.84357143e+02 2.04650000e+03]\n", + " [ 8.76785714e+02 2.04650000e+03]\n", + " [ 1.16921429e+03 2.04650000e+03]\n", + " [ 1.46164286e+03 2.04650000e+03]\n", + " [ 1.75407143e+03 2.04650000e+03]\n", + " [ 2.04650000e+03 2.04650000e+03]\n", + " [ 2.04650000e+03 -4.99999883e-01]\n", + " [ 2.04650000e+03 2.91928571e+02]\n", + " [ 2.04650000e+03 5.84357143e+02]\n", + " [ 2.04650000e+03 8.76785714e+02]\n", + " [ 2.04650000e+03 1.16921429e+03]\n", + " [ 2.04650000e+03 1.46164286e+03]\n", + " [ 2.04650000e+03 1.75407143e+03]\n", + " [ 2.04650000e+03 2.04650000e+03]\n", + " [ 4.99999783e-01 1.27000000e+02]\n", + " [ 5.00000221e-01 4.85400000e+02]\n", + " [ 5.00000070e-01 8.43800000e+02]\n", + " [ 4.99999908e-01 1.20220000e+03]\n", + " [ 5.00000086e-01 1.56060000e+03]\n", + " [ 5.00000004e-01 1.91900000e+03]\n", + " [ 1.27000000e+02 5.00000120e-01]\n", + " [ 4.85400000e+02 4.99999839e-01]\n", + " [ 8.43800000e+02 4.99999975e-01]\n", + " [ 1.20220000e+03 5.00000060e-01]\n", + " [ 1.56060000e+03 5.00000260e-01]\n", + " [ 1.91900000e+03 4.99999701e-01]\n", + " [ 1.27000000e+02 2.04550000e+03]\n", + " [ 4.85400000e+02 2.04550000e+03]\n", + " [ 8.43800000e+02 2.04550000e+03]\n", + " [ 1.20220000e+03 2.04550000e+03]\n", + " [ 1.56060000e+03 2.04550000e+03]\n", + " [ 1.91900000e+03 2.04550000e+03]\n", + " [ 2.04550000e+03 1.27000000e+02]\n", + " [ 2.04550000e+03 4.85400000e+02]\n", + " [ 2.04550000e+03 8.43800000e+02]\n", + " [ 2.04550000e+03 1.20220000e+03]\n", + " [ 2.04550000e+03 1.56060000e+03]\n", + " [ 2.04550000e+03 1.91900000e+03]\n", + " [ 4.99999741e-01 4.99999746e-01]\n", + " [ 4.99999741e-01 4.99999746e-01]\n", + " [ 2.04550000e+03 2.04550000e+03]\n", + " [ 2.04550000e+03 2.04550000e+03]\n", + " [ 1.27000000e+02 1.27000000e+02]\n", + " [ 4.85400000e+02 1.27.79194264 81.24820065 79.5578398 77.80619197\n", + " 86.77660248 85.72142555 84.09351686 82.26517071 80.37322779 78.47497463\n", + " 88.68716566 86.88752222 84.86498838 82.8264064 80.80719889 78.82380063]\n", + "DEBUG:root:fitpix2pix: ccdpx: shape: (96, 2)\n", + "DEBUG:root:make_az_asym: xyp: [[ -0.230877 31.363511 ]\n", + " [ -0.230877 26.97708243]\n", + " [ -0.230877 22.59065386]\n", + " [ -0.230877 18.20422528]\n", + " [ -0.230877 13.81779671]\n", + " [ -0.230877 9.43136815]\n", + " [ -0.230877 5.04493957]\n", + " [ -0.230877 0.658511 ]\n", + " [ -0.230877 31.363511 ]\n", + " [ -4.61730557 31.363511 ]\n", + " [ -9.00373414 31.363511 ]\n", + " [-13.39016272 31.363511 ]\n", + " [-17.77659129 31.363511 ]\n", + " [-22.16301986 31.363511 ]\n", + " [-26.54944843 31.363511 ]\n", + " [-30.935877 31.363511 ]\n", + " [ -0.230877 0.658511 ]\n", + " [ -4.61730558 0.658511 ]\n", + " [ -9.00373414 0.658511 ]\n", + " [-13.39016271 0.658511 ]\n", + " [-17.77659128 0.658511 ]\n", + " [-22.16301986 0.658511 ]\n", + " [-26.54944843 0.658511 ]\n", + " [-30.935877 0.658511 ]\n", + " [-30.935877 31.363511 ]\n", + " [-30.9000000e+02]\n", + " [ 8.43800000e+02 1.27000000e+02]\n", + " [ 1.20220000e+03 1.27000000e+02]\n", + " [ 1.56060000e+03 1.27000000e+02]\n", + " [ 1.91900000e+03 1.27000000e+02]\n", + " [ 1.27000000e+02 4.85400000e+02]\n", + " [ 4.85400000e+02 4.85400000e+02]\n", + " [ 8.43800000e+02 4.85400000e+02]\n", + " [ 1.20220000e+03 4.85400000e+02]\n", + " [ 1.56060000e+03 4.85400000e+02]\n", + " [ 1.91900000e+03 4.85400000e+02]\n", + " [ 1.27000000e+02 8.43800000e+02]\n", + " [ 4.85400000e+02 8.43800000e+02]\n", + " [ 8.43800000e+02 8.43800000e+02]\n", + " [ 1.20220000e+03 8.43800000e+02]\n", + " [ 1.56060000e+03 8.43800000e+02]\n", + " [ 1.91900000e+03 8.43800000e+02]\n", + " [ 1.27000000e+02 1.20220000e+03]\n", + " [ 4.85400000e+02 1.20220000e+03]\n", + " [ 8.43800000e+02 1.20220000e+03]\n", + " [ 1.20220000e+03 1.20220000e+03]\n", + " [ 1.56060000e+03 1.20220000e+03]\n", + " [ 1.91900000e+03 1.20220000e+03]\n", + " [ 1.27000000e+02 1.56060000e+03]\n", + " [ 4.85400000e+02 1.56060000e+03]\n", + " [ 8.43800000e+02 1.56060000e+03]\n", + " [ 1.20220000e+03 1.56060000e+03]\n", + " [ 1.56060000e+03 1.56060000e+03]\n", + " [ 1.91900000e+03 1.56060000e+03]\n", + " [ 1.270DEBUG:root:radec2pix: ccdpx: [[-4.45000000e+01 -4.99999902e-01]\n", + " [-4.45000000e+01 2.91928572e+02]\n", + " [-4.45000000e+01 5.84357143e+02]\n", + " [-4.45000000e+01 8.76785715e+02]\n", + " [-4.45000000e+01 1.16921429e+03]\n", + " [-4.45000000e+01 1.46164286e+03]\n", + " [-4.45000000e+01 1.75407143e+03]\n", + " [-4.45000001e+01 2.04650000e+03]\n", + " [-4.45000000e+01 -4.99999902e-01]\n", + " [ 2.47928571e+02 -4.99999902e-01]\n", + " [ 5.40357143e+02 -4.99999727e-01]\n", + " [ 8.32785714e+02 -5.00000071e-01]\n", + " [ 1.12521429e+03 -5.00000281e-01]\n", + " [ 1.41764286e+03 -4.99999968e-01]\n", + " [ 1.71007143e+03 -5.00000211e-01]\n", + " [ 2.00250000e+03 -5.00000200e-01]\n", + " [-4.45000001e+01 2.04650000e+03]\n", + " [ 2.47928571e+02 2.04650000e+03]\n", + " [ 5.40357143e+02 2.04650000e+03]\n", + " [ 8.32785714e+02 2.04650000e+03]\n", + " [ 1.12521429e+03 2.04650000e+03]\n", + " [ 1.41764286e+03 2.04650000e+03]\n", + " [ 1.71007143e+03 2.04650000e+03]\n", + " [ 2.00250000e+03 2.04650000e+03]\n", + " [ 2.00250000e+03 -5.00000200e-01]\n", + " [ 2.00250000e+03 2.91928571e+02]\n", + " [ 2.00250000e+03 5.84357143e+02]\n", + " [ 2.00250000e+03 8.76785714e+02]\n", + " [ 2.00250000e+03 1.16921429e+03]\n", + " [ 2.00250000e+03 1.46164286e+03]\n", + " [ 2.00250000e+03 1.75407143e+03]\n", + " [ 2.00250000e+03 2.04650000e+03]\n", + " [-4.35000000e+01 1.27000000e+02]\n", + " [-4.35000000e+01 4.85400000e+02]\n", + " [-4.35000000e+01 8.43800000e+02]\n", + " [-4.35000000e+01 1.20220000e+03]\n", + " [-4.35000000e+01 1.56060000e+03]\n", + " [-4.35000000e+01 1.91900000e+03]\n", + " [ 8.30000000e+01 5.00000088e-01]\n", + " [ 4.41400000e+02 5.00000229e-01]\n", + " [ 7.99800000e+02 4.99999876e-01]\n", + " [ 1.15820000e+03 5.00000139e-01]\n", + " [ 1.51660000e+03 5.00000172e-01]\n", + " [ 1.87500000e+03 4.99999925e-01]\n", + " [ 8.30000002e+01 2.04550000e+03]\n", + " [ 4.41400000e+02 2.04550000e+03]\n", + " [ 7.99800000e+02 2.04550000e+03]\n", + " [ 1.15820000e+03 2.04550000e+03]\n", + " [ 1.51660000e+03 2.04550000e+03]\n", + " [ 1.87500000e+03 2.04550000e+03]\n", + " [ 2.00150000e+03 1.27000000e+02]\n", + " [ 2.00150000e+03 4.85400000e+02]\n", + " [ 2.00150000e+03 8.43800000e+02]\n", + " [ 2.00150000e+03 1.20220000e+03]\n", + " [ 2.00150000e+03 1.56060000e+03]\n", + " [ 2.00150000e+03 1.91900000e+03]\n", + " [-4.350000522278 0.98580511]\n", + " [-0.13285166 -0.00525872 0.99112198]\n", + " [-0.09711907 -0.00528472 0.99525874]\n", + " [-0.06081473 -0.0053005 0.998135 ]\n", + " [-0.02414801 -0.00530579 0.99969431]\n", + " [-0.01079628 -0.19646103 0.98045219]\n", + " [-0.01090926 -0.1623014 0.98668092]\n", + " [-0.01100231 -0.12720719 0.99181514]\n", + " [-0.01107479 -0.09137251 0.9957552 ]\n", + " [-0.01112598 -0.05499882 0.99842443]\n", + " [-0.01115523 -0.01829695 0.99977036]\n", + " [-0.20642679 -0.20103758 0.95758648]\n", + " [-0.20642679 -0.20103758 0.95758648]\n", + " [-0.01116024 -0.00530513 0.99992365]\n", + " [-0.01116024 -0.00530513 0.99992365]\n", + " [-0.19587779 -0.19044022 0.96195864]\n", + " [-0.16288944 -0.19238166 0.96770674]\n", + " [-0.12894461 -0.19395017 0.97250019]\n", + " [-0.09424616 -0.19514465 0.97623574]\n", + " [-0.05899718 -0.19596195 0.97883515]\n", + " [-0.02340304 -0.19639843 0.98024484]\n", + " [-0.19782623 -0.15734701 0.96752607]\n", + " [-0.16450046 -0.15893973 0.97348742]\n", + " [-0.13021766 -0.16022981 0.97845274]\n", + " [-0.09517804 -0.16121459 0.98231919]\n", + " [-0.05958347 -0.16188952 0.98500842]\n", + " [-0.00e+01 5.00000166e-01]\n", + " [-4.35000000e+01 5.00000166e-01]\n", + " [ 2.00150000e+03 2.04550000e+03]\n", + " [ 2.00150000e+03 2.04550000e+03]\n", + " [ 8.30000000e+01 1.27000000e+02]\n", + " [ 4.41400000e+02 1.27000000e+02]\n", + " [ 7.99800000e+02 1.27000000e+02]\n", + " [ 1.15820000e+03 1.27000000e+02]\n", + " [ 1.51660000e+03 1.27000000e+02]\n", + " [ 1.87500000e+03 1.27000000e+02]\n", + " [ 8.30000000e+01 4.85400000e+02]\n", + " [ 4.41400000e+02 4.85400000e+02]\n", + " [ 7.99800000e+02 4.85400000e+02]\n", + " [ 1.15820000e+03 4.85400000e+02]\n", + " [ 1.51660000e+03 4.85400000e+02]\n", + " [ 1.87500000e+03 4.85400000e+02]\n", + " [ 8.30000000e+01 8.43800000e+02]\n", + " [ 4.41400000e+02 8.43800000e+02]\n", + " [ 7.99800000e+02 8.43800000e+02]\n", + " [ 1.15820000e+03 8.43800000e+02]\n", + " [ 1.51660000e+03 8.43800000e+02]\n", + " [ 1.87500000e+03 8.43800000e+02]\n", + " [ 8.30000000e+01 1.20220000e+03]\n", + " [ 4.41400000e+02 1.20220000e+03]\n", + " [ 7.99800000e+02 1.20220000e+03]\n", + " [ 1.15820000e+03 1.20220000e+03]\n", + " [ 1.51660000e+03 1.20220000e+03]\n", + " [ 1.87500000e+03 1.20220000e+03]\n", + " [ 8.30000000e+01 1.56060000e+35877 26.97708243]\n", + " [-30.935877 22.59065386]\n", + " [-30.935877 18.20422528]\n", + " [-30.935877 13.81779671]\n", + " [-30.935877 9.43136814]\n", + " [-30.935877 5.04493957]\n", + " [-30.935877 0.658511 ]\n", + " [ -0.245877 29.451011 ]\n", + " [ -0.245877 24.075011 ]\n", + " [ -0.245877 18.699011 ]\n", + " [ -0.245877 13.323011 ]\n", + " [ -0.245877 7.947011 ]\n", + " [ -0.245877 2.571011 ]\n", + " [ -2.143377 31.348511 ]\n", + " [ -7.519377 31.348511 ]\n", + " [-12.895377 31.348511 ]\n", + " [-18.271377 31.348511 ]\n", + " [-23.647377 31.348511 ]\n", + " [-29.023377 31.348511 ]\n", + " [ -2.143377 0.673511 ]\n", + " [ -7.519377 0.673511 ]\n", + " [-12.895377 0.673511 ]\n", + " [-18.271377 0.673511 ]\n", + " [-23.64737701 0.673511 ]\n", + " [-29.023377 0.673511 ]\n", + " [-30.920877 29.451011 ]\n", + " [-30.920877 24.075011 ]\n", + " [-30.920877 18.699011 ]\n", + " [-30.920877 13.323011 ]\n", + " [-30.920877 7.947011 ]\n", + " [-30.920877 2.571011 ]\n", + " [ -0.245877 31.348511 ]\n", + " [ -0.245877 31.348511 ]\n", + " [-30.920877 0.673511 ]\n", + " [-30.920877 0.67DEBUG:root:optics_fp: sphi: [0.99997205 0.99996215 0.99994596 0.9999168 0.99985602 0.99969394\n", + " 0.99896586 0.96370392 0.99997205 0.98945005 0.96161446 0.92056536\n", + " 0.87130661 0.81840538 0.7653019 0.71421799 0.96370392 0.18379675\n", + " 0.09559053 0.0644947 0.04865962 0.03907157 0.03264451 0.02803701\n", + " 0.71421799 0.66005264 0.59321085 0.51139137 0.41288109 0.29745825\n", + " 0.16740606 0.02803701 0.99996412 0.99994622 0.99991085 0.99982512\n", + " 0.99951636 0.99583433 0.99768999 0.97272729 0.92563647 0.86534345\n", + " 0.80018633 0.73598422 0.37838518 0.11614437 0.06810698 0.04816635\n", + " 0.03726317 0.03039091 0.69218254 0.61758205 0.52161719 0.40085381\n", + " 0.25499936 0.08953536 0.99996836 0.99996836 0.02853493 0.02853493\n", + " 0.99738561 0.96928847 0.91700471 0.85133735 0.78183168 0.71467375\n", + " 0.99610509 0.95517974 0.88309587 0.79897088 0.71634182 0.64163497\n", + " 0.99359564 0.92909172 0.82599908 0.71896601 0.62438193 0.54577441\n", + " 0.98760088 0.87388285 0.72369807 0.59498147 0.49654613 0.42249123\n", + " 0.96691132 0.7347772 0.53422865 00000e+02 1.91900000e+03]\n", + " [ 4.85400000e+02 1.91900000e+03]\n", + " [ 8.43800000e+02 1.91900000e+03]\n", + " [ 1.20220000e+03 1.91900000e+03]\n", + " [ 1.56060000e+03 1.91900000e+03]\n", + " [ 1.91900000e+03 1.91900000e+03]]\n", + "9 18.5469529 22.60352987 27.12291311 31.90905859\n", + " 8.27715649 10.94695923 15.13153214 19.89706928 24.91237079 30.05265085\n", + " 3.35974322 7.91280426 13.10495402 18.40298673 23.73610696 29.08501983]\n", + "0.40742853 0.32594274 0.27047521\n", + " 0.79049097 0.3461884 0.21049264 0.15029925 0.11669955 0.09532849]\n", + "3511 ]\n", + " [ -2.143377 29.451011 ]\n", + " [ -7.519377 29.451011 ]\n", + " [-12.895377 29.451011 ]\n", + " [-18.271377 29.451011 ]\n", + " [-23.647377 29.451011 ]\n", + " [-29.023377 29.451011 ]\n", + " [ -2.143377 24.075011 ]\n", + " [ -7.519377 24.075011 ]\n", + " [-12.895377 24.075011 ]\n", + " [-18.271377 24.075011 ]\n", + " [-23.647377 24.075011 ]\n", + " [-29.023377 24.075011 ]\n", + " [ -2.143377 18.699011 ]\n", + " [ -7.519377 18.699011 ]\n", + " [-12.895377 18.699011 ]\n", + " [-18.271377 18.699011 ]\n", + " [-23.647377 18.699011 8 ]\n", + " [-23.66256 18.871648 ]\n", + " [-29.03856 18.871648 ]\n", + " [ -2.15856 13.495648 ]\n", + " [ -7.53456 13.495648 ]\n", + " [-12.91056 13.495648 ]\n", + " [-18.28656 13.495648 ]\n", + " [-23.66256 13.495648 ]\n", + " [-29.03856 13.495648 ]\n", + " [ -2.15856 8.119648 ]\n", + " [ -7.53456 8.119648 ]\n", + " [-12.91056 8.119648 ]\n", + " [-18.28656 8.119648 ]\n", + " [-23.66256 8.119648 ]\n", + " [-29.03856 8.119648 ]\n", + " [ -2.15856 2.743648 ]\n", + " [ -7.53456 2.743648 ]\n", + " [-12.91056 2.743648 ]\n", + " [-18.28656 2.743648 ]\n", + " [-23.66256 2.743648 ]\n", + " [-29.03856 2.743648 ]]\n", + "DEBUG:root:radec2pix: xyfp Shape: (96, 2)\n", + "DEBUG:root:fitpix2pix: ccdpx: shape: (96, 2)\n", + "DEBUG:root:fitpix2pix: visCut: True\n", + "]\n", + " [-29.023377 18.699011 ]\n", + " [ -2.143377 13.323011 ]\n", + " [ -7.519377 13.323011 ]\n", + " [-12.895377 13.323011 ]\n", + " [-18.271377 13.323011 ]\n", + " [-23.647377 13.323011 ]\n", + " [-29.023377 13.323011 ]\n", + " [ -2.143377 7.947011 ]\n", + " [ -7.519377 7.947011 ]\n", + " [-12.895377 7.947011 ]\n", + " [-18.271377 7.947011 ]\n", + " [-23.647377 7.947011 ]\n", + " [-29.023377 7.947011 ]\n", + " [ -2.143377 2.571011 ]\n", + " [ -7.519377 2.571011 ]\n", + " [-12.895377 2.571011 ]\n", + " [-18.271377 2.571011 ]\n", + " [-23.647377 2.571011 ]\n", + " [-29.023377 2.571011 ]]\n", + "DEBUG:root:fitpix2pix: visCut: True\n", + "0236399 -0.16224993 0.98646648]\n", + " [-0.19939086 -0.12332956 0.97212813]\n", + " [-0.16579789 -0.12457282 0.97826002]\n", + " [-0.13124607 -0.12558234 0.98336338]\n", + " [-0.09593306 -0.12635458 0.98733549]\n", + " [-0.06005988 -0.12688447 0.99009754]\n", + " [-0.02383341 -0.12716713 0.99159492]\n", + " [-0.20057035 -0.08859098 0.9756655 ]\n", + " [-0.16677881 -0.08948154 0.9819256 ]\n", + " [-0.13202594 -0.09020602 0.98713324]\n", + " [-0.09650734 -0.09076095 0.99118554]\n", + " [-0.06042346 -0.09114176 0.99400311]\n", + " [-0.02398226 -0.09134421 0.99553056]\n", + " [-0.20136156 -0.05333481 0.97806386]\n", + " [-0.16743861 -0.05386844 0.98440972]\n", + " [-0.13255205 -0.05430277 0.98968741]\n", + " [-0.09689601 -0.0546353 0.99379381]\n", + " [-0.0606707 -0.05486289 0.99664895]\n", + " [-0.02408492 -0.05498267 0.99819679]\n", + " [-0.20176105 -0.01776673 0.97927362]\n", + " [-0.16777281 -0.01794001 0.98566244]\n", + " [-0.13281959 -0.01808024 0.99097531]\n", + " [-0.09709479 -0.01818657 0.99510896]\n", + " [-0.06079851 -0.01825788 0.99798306]\n", + " [-0.02414006 -0.01829321 0.9995412 ]]\n", + "03]\n", + " [ 4.41400000e+02 1.56060000e+03]\n", + " [ 7.99800000e+02 1.56060000e+03]\n", + " [ 1.15820000e+03 1.56060000e+03]\n", + " [ 1.51660000e+03 1.56060000e+03]\n", + " [ 1.87500000e+03 1.56060000e+03]\n", + " [ 8.30000001e+01 1.91900000e+03]\n", + " [ 4.41400000e+02 1.91900000e+03]\n", + " [ 7.99800000e+02 1.91900000e+03]\n", + " [ 1.15820000e+03 1.91900000e+03]\n", + " [ 1.51660000e+03 1.91900000e+03]\n", + " [ 1.87500000e+03 1.91900000e+03]]\n", + "DEBUG:root:make_az_asym: xyp: shape: (96, 2)\n", + "DEBUG:root:make_az_asym: xyp: shape: (96, 2)\n", + "DEBUG:root:optics_fp: cphi: [0.00550458 0.00639749 0.00763617 0.00946965 0.01246169 0.01821736\n", + " 0.03384734 0.23312315 0.00550458 0.14357831 0.27378206 0.39054421\n", + " 0.49112919 0.57532118 0.64452059 0.70085313 0.23312315 0.98770575\n", + " 0.99676233 0.99853841 0.99917171 0.99946758 0.99962921 0.99972703\n", + " 0.70085313 0.75231162 0.80628167 0.86066702 0.91207829 0.95583505\n", + " 0.98659156 0.99972703 0.00636947 0.00778798 0.01001931 0.01404249\n", + " 0.02346297 0.07118734 0.06624656 0.23110858 0.37831182 0.50160995\n", + " 0.60050131 0.67790282 0.94291018 0.99516222 0.9983578 0.99918316\n", + " 0.9995128 0.99967679 0.72272376 0.78769728 0.85449414 0.91742373\n", + " 0.96793131 0.99637757 0.00598472 0.00598472 0.99971529 0.99971529\n", + " 0.07048511 0.24509968 0.39886372 0.52516272 0.62434311 0.70044222\n", + " 0.08607764 0.29532864 0.46955786 0.60232354 0.69893243 0.76821854\n", + " 0.11047406 0.36953888 0.56469148 0.69653837 0.7826374 0.83930914\n", + " 0.15393817 0.48687699 0.69216184 0.80578092 0.86972564 0.90775141\n", + " 0.25195766 0.68160416 0.84839347 0.91538572 0.94689876 0.96382489\n", + " 0.62072988 0.94296444 0.97959085 0.9897031 0.99382317 0.99589043]\n", + "DEBUG:root:radec2pix: lng: [224.24259986 219.96765614 215.08336296 209.53697562 203.3101935\n", + " 196.44343401 189.05719479 181.35667342 224.24259986 228.41303103\n", + " 233.20099698 238.67135193 244.85870857 251.7410006 259.21279966\n", + " 267.07328529 181.35667342 181.56790868 181.85777415 182.28018564\n", + " 182.95289983 184.19149998 187.22184671 205.19617552 267.07328529\n", + " 266.59845953 265.94084811 264.97008557 263.3938965 260.39700292\n", + " 252.59010355 205.19617552 222.46269399 216.82093439 210.20829157\n", + " 202.57559903 193.99974981 184.73881406 225.97611965 231.49389572\n", + " 238.00639827 245.59111124 254.20436521 263.6117634 181.46953067\n", + " 181.78262482 182.26677669 183.11467024 184.98120654 192.39209935\n", + " 266.85454344 266.15458823 265.05671864 263.08918181 258.56369308\n", + " 238.630299 224.24223838 224.24223838 205.42453452 205.42453452\n", + " 224.19359423 229.74542917 236.38270094 244.22153031 253.24481767\n", + " 263.2046196 218.49803362 224.01504295 230.89947742 239.44320338\n", + " 249.79385261 261.71030558 211.7381028 216.91949721 223.73668556\n", + " 232.79289096 244.66979293 259.38488067 203.8308227 208.21481457\n", + " 214.34263424 223.2424136 236.45716258 255.28910964 194.83531269\n", + " 197.83404909 202.27750364 209.41669409 222.12219565 246.34438586\n", + " 185.03238692 186.10346579 187.75181788 190.6089913 196.71508989\n", + " 217.15465227]\n", + "DEBUG:root:optics_fp: xyfp: [[ 0.236018 -31.56946754]\n", + " [ 0.23651287 -27.18303899]\n", + " [ 0.23700774 -22.79661046]\n", + " [ 0.23750261 -18.41018192]\n", + " [ 0.23799748 -14.02375336]\n", + " [ 0.23849235 -9.63732482]\n", + " [ 0.23898721 -5.25089628]\n", + " [ 0.23948208 -0.86446773]\n", + " [ 0.236018 -31.56946754]\n", + " [ 4.62244655 -31.56996241]\n", + " [ 9.00887509 -31.57045728]\n", + " [ 13.39530363 -31.57095214]\n", + " [ 17.78173218 -31.57144701]\n", + " [ 22.16816072 -31.57194188]\n", + " [ 26.55458927 -31.57243675]\n", + " [ 30.94101781 -31.57293162]\n", + " [ 0.23948208 -0.86446773]\n", + " [ 4.62591062 -0.8649626 ]\n", + " [ 9.01233917 -0.86545747]\n", + " [ 13.39876771 -0.86595234]\n", + " [ 17.78519626 -0.86644721]\n", + " [ 22.1716248 -0.86694208]\n", + " [ 26.55805334 -0.86743695]\n", + " [ 30.94448189 -0.86793181]\n", + " [ 30.94101781 -31.57293162]\n", + " [ 30.94151268 -27.18650307]\n", + " [ 30.94200754 -22.80007453]\n", + " [ 30.94250242 -18.41364599]\n", + " [ 30.94299728 -14.02721745]\n", + " [ 30.94349215 -9.6407889 ]\n", + " [ 30.94398702 -5.25436036]\n", + " [ 30.94448189 -0.86793181]\n", + " [ 0.25123377 -29.65696924]\n", + " [ 0.25184028 -24.28096928]\n", + " [ 0.25244679 -18.90496931]\n", + " [ 0.2530533 -13.52896935]\n", + " [ 0.25365981 -8.15296938]\n", + " [ 0.25426632 -2.77696942]\n", + " [ 2.14851968 -31.5546833 ]\n", + " [ 7.52451965 -31.55528981]\n", + " [ 12.90051962 -31.55589633]\n", + " [ 18.27651958 -31.55650284]\n", + " [ 23.65251954 -31.55710934]\n", + " [ 29.02851952 -31.55771586]\n", + " [ 2.15198038 -0.8796835 ]\n", + " [ 7.52798035 -0.88029001]\n", + " [ 12.90398031 -0.88089652]\n", + " [ 18.27998027 -0.88150303]\n", + " [ 23.65598025 -0.88210954]\n", + " [ 29.03198021 -0.88271605]\n", + " [ 30.92623357 -29.66042994]\n", + " [ 30.92684009 -24.28442998]\n", + " [ 30.9274466 -18.90843001]\n", + " [ 30.9280531 -13.53243004]\n", + " [ 30.92865961 -8.15643008]\n", + " [ 30.92926612 -2.78043011]\n", + " [ 0.2510197 -31.55446923]\n", + " [ 0.2510197 -31.55446923]\n", + " [ 30.9294802 -0.88293012]\n", + " [ 30.9294802 -0.88293012]\n", + " [ 2.14873376 -29.65718332]\n", + " [ 7.52473372 -29.65778983]\n", + " [ 12.90073369 -29.6583963DEBUG:root:radec2pix: fitpx: [[2135.5 4155.4999999 ]\n", + " [2135.5 3863.07142835]\n", + " [2135.5 3570.64285687]\n", + " [2135.5 3278.21428534]\n", + " [2135.5 2985.78571398]\n", + " [2135.5 2693.35714282]\n", + " [2135.50000001 2400.92857102]\n", + " [2135.50000006 2108.49999973]\n", + " [2135.5 4155.4999999 ]\n", + " [1843.07142859 4155.4999999 ]\n", + " [1550.64285722 4155.49999973]\n", + " [1258.21428568 4155.50000007]\n", + " [ 965.78571413 4155.50000028]\n", + " [ 673.35714288 4155.49999997]\n", + " [ 380.92857125 4155.50000021]\n", + " [ 88.4999998 4155.5000002 ]\n", + " [2135.50000006 2108.49999973]\n", + " [1843.07142866 2108.49999999]\n", + " [1550.64285735 2108.49999998]\n", + " [1258.21428559 2108.50000001]\n", + " [ 965.78571467 2108.49999998]\n", + " [ 673.35714297 2108.5 ]\n", + " [ 380.92857138 2108.5 ]\n", + " [ 88.49999984 2108.5 ]\n", + " [ 88.4999998 4155.5000002 ]\n", + " [ 88.49999999 3863.07142858]\n", + " [ 88.50000023 3570.64285698]\n", + " [ 88.4999999 3278.21428577]\n", + " [ 88.50000002 2985.78571428]\n", + " [ 88.50000017 2693.35714281]\n", + " [ 88.49999997 2400.92857143]\n", + " [ 88.499DEBUG:root:optics_fp: rtanth: [31.36436077 26.97807037 22.59183361 18.20568928 13.8197254 9.43419362\n", + " 5.05021974 0.69781153 31.36436077 31.70156673 32.63030877 34.10229142\n", + " 36.05103355 38.40402676 41.09188526 44.05335752 0.69781153 4.66402697\n", + " 9.02778296 13.40634529 17.78878395 22.17280059 26.55761376 30.94288484\n", + " 44.05335752 41.04621131 38.30621526 35.89459992 33.88155828 32.34160155\n", + " 31.34453543 30.94288484 29.45203736 24.07626653 18.70062748 13.32527965\n", + " 7.95081375 2.58274138 31.42169962 32.23771351 33.8971959 36.28460223\n", + " 39.26738572 42.72102005 2.2467047 7.54947995 12.91295338 18.28378612\n", + " 23.65696634 29.03119064 42.70202201 39.18809499 36.13521339 33.66902518\n", + " 31.92578297 31.02758019 31.34947523 31.34947523 30.92821126 30.92821126\n", + " 29.52890302 30.39577404 32.15047118 34.65840831 37.76983569 41.34874196\n", + " 24.17023416 25.22195839 27.31111317 30.22332497 33.74617895 37.70891894\n", + " 18.82145258 20.1542562 22.71439544 26.14376082 30.14716324 34.52548949\n", + " 13.49432055 15.298483]\n", + " [ 18.27673365 -29.65900285]\n", + " [ 23.65273362 -29.65960936]\n", + " [ 29.02873359 -29.66021587]\n", + " [ 2.14934027 -24.28118335]\n", + " [ 7.52534023 -24.28178986]\n", + " [ 12.9013402 -24.28239637]\n", + " [ 18.27734016 -24.28300288]\n", + " [ 23.65334013 -24.28360939]\n", + " [ 29.02934009 -24.2842159 ]\n", + " [ 2.14994678 -18.90518338]\n", + " [ 7.52594674 -18.90578989]\n", + " [ 12.90194671 -18.9063964 ]\n", + " [ 18.27794667 -18.90700292]\n", + " [ 23.65394664 -18.90760943]\n", + " [ 29.0299466 -18.90821593]\n", + " [ 2.15055329 -13.52918342]\n", + " [ 7.52655325 -13.52978993]\n", + " [ 12.90255322 -13.53039644]\n", + " [ 18.27855318 -13.53100295]\n", + " [ 23.65455315 -13.53160946]\n", + " [ 29.03055312 -13.53221597]\n", + " [ 2.1511598 -8.15318346]\n", + " [ 7.52715976 -8.15378996]\n", + " [ 12.90315973 -8.15439647]\n", + " [ 18.27915969 -8.15500298]\n", + " [ 23.65515966 -8.15560949]\n", + " [ 29.03115962 -8.156216 ]\n", + " [ 2.1517663 -2.77718348]\n", + " [ 7.52776627 -2.77779 ]\n", + " [ 12.90376624 -2.77839651]\n", + " [ 18.2797662 -2.77900302]\n", + " [ 23.65576617 -2.77960953]\n", + " [ 29.03176613 -2.78021604]]\n", + "DEBUG:root:optics_fp: sphi: [-0.99998485 -0.99997954 -0.99997084 -0.99995516 -0.99992235 -0.99983405\n", + " -0.99942701 -0.97244722 -0.99998485 -0.98963896 -0.96179176 -0.92058417\n", + " -0.87108674 -0.81792759 -0.76458695 -0.71330561 -0.97244722 -0.15632448\n", + " -0.08040428 -0.05404675 -0.04069277 -0.03262757 -0.02722955 -0.0233637\n", + " -0.71330561 -0.65880742 -0.59153179 -0.50916823 -0.41001608 -0.29390365\n", + " -0.16320875 -0.0233637 -0.99997971 -0.99996967 -0.99994981 -0.9999014\n", + " -0.99972471 -0.99746296 -0.99780328 -0.97292796 -0.92567822 -0.8650939\n", + " -0.79962377 -0.73515153 -0.33304712 -0.0982454 -0.05728621 -0.04041066\n", + " -0.03121144 -0.02542276 -0.69113701 -0.61606249 -0.51946104 -0.39791167\n", + " -0.251215 -0.08503968 -0.99998209 -0.99998209 -0.02386066 -0.02386066\n", + " -0.99751283 -0.96949788 -0.91701021 -0.85100183 -0.78115023 -0.71370911\n", + " -0.99628843 -0.95539573 -0.8829017 -0.79825206 -0.71518771 -0.64018769\n", + " -0.99387901 -0.92921527 -0.82530209 -0.71751954 -0.62247788 -0.54365446\n", + " -0.98808048 -0.87347054 -0.72174233 -0.59221374 -0.49353552 -0.4DEBUG:root:radec2pix: lat: [73.24603516 74.22569152 75.13651604 75.95087507 76.6389128 77.17037377\n", + " 77.51785702 77.66114392 73.24603516 74.25573072 75.20211387 76.05743745\n", + " 76.79113897 77.37139648 77.76826885 77.95827247 77.66114392 79.25921808\n", + " 80.88995617 82.54802878 84.22809839 85.92431704 87.62836983 89.29981459\n", + " 77.95827247 79.56096311 81.19447792 82.85294756 84.52972557 86.21521853\n", + " 87.88507254 89.29981459 73.68365855 74.84176377 75.86929863 76.71215801\n", + " 77.3149747 77.63003049 73.695993 74.89461964 75.97090871 76.86971486\n", + " 77.53277126 77.90734766 78.35340648 80.33462383 82.35957542 84.41843101\n", + " 86.50018709 88.58327287 78.6525924 80.63823128 82.66432935 84.71895211\n", + " 86.78327785 88.77209382 73.25300675 73.25300675 89.29197852 89.29197852\n", + " 74.14551493 75.39944683 76.53201019 77.48405712 78.19096994 78.59236983\n", + " 75.35843946 76.77706596 78.08438262 79.20977154 80.06643025 80.56299799\n", + " 76.44078432 78.03102057 79.5341606 80.87167145 81.93009942 82.56616105\n", + " 77.33417557 79.08997119 80.79891427 82.38701631 83.72204901 84.58091077\n", + " 77.9769458 79.86951112 81.76439499 83.61332437 85.3080928 86.55866797\n", + " 78.31436404 80.28605679 82.29662619 84.33088528 86.36037199 88.26434016]\n", + "53 18.54166578 22.61295734 27.14223759 31.93523187\n", + " 8.23098104 10.94056736 15.14746618 19.92481371 24.9470123 30.09171641\n", + " 3.34726194 7.94676841 13.14917661 18.45137705 23.78673027 29.13702987]\n", + "DEBUG:root:radec2pix: xyfp: [[ -0.24606 31.536148 ]\n", + " [ -0.24606 27.14971943]\n", + " [ -0.24606 22.76329086]\n", + " [ -0.24606 18.37686229]\n", + " [ -0.24606 13.99043371]\n", + " [ -0.24606 9.60400514]\n", + " [ -0.24606 5.21757658]\n", + " [ -0.24606 0.831148 ]\n", + " [ -0.24606 31.536148 ]\n", + " [ -4.63248857 31.536148 ]\n", + " [ -9.01891714 31.536148 ]\n", + " [-13.40534571 31.536148 ]\n", + " [-17.79177429 31.536148 ]\n", + " [-22.17820286 31.536148 ]\n", + " [-26.56463143 31.536148 ]\n", + " [-30.95106 31.536148 ]\n", + " [ -0.24606 0.831148 ]\n", + " [ -4.63248857 0.831148 ]\n", + " [ -9.01891714 0.831148 ]\n", + " [-13.40534571 0.831148 DEBUG:root:mm_to_pix: fitpx: [[0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]]\n", + "99984 2108.5 ]\n", + " [2134.5 4027.99999995]\n", + " [2134.5 3669.59999994]\n", + " [2134.5 3311.20000034]\n", + " [2134.5 2952.80000006]\n", + " [2134.5 2594.39999997]\n", + " [2134.49999998 2236.00000031]\n", + " [2008.00000001 4154.49999991]\n", + " [1649.60000005 4154.49999977]\n", + " [1291.19999995 4154.50000012]\n", + " [ 932.80000008 4154.49999986]\n", + " [ 574.40000013 4154.49999983]\n", + " [ 215.99999993 4154.50000007]\n", + " [2007.99999975 2109.50000009]\n", + " [1649.5999999 2109.50000001]\n", + " [1291.19999978 2109.50000001]\n", + " [ 932.80000001 2109.5 ]\n", + " [ 574.40000043 2109.49999999]\n", + " [ 216.00000004 2109.5 ]\n", + " [ 89.50000001 4027.99999999]\n", + " [ 89.4999998 3669.60000015]\n", + " [ 89.50000012 3311.19999993]\n", + " [ 89.50000006 2952.79999997]\n", + " [ 89.49999988 2594.40000003]\n", + " [ 89.50000008 2235.99999999]\n", + " [2134.5 4154.49999983]\n", + " [2134.5 4154.49999983]\n", + " [ 89.49999987 2109.5 ]\n", + " [ 89.49999987 2109.5 ]\n", + " [2008. 4027.99999995]\n", + " [1649.60000002 4027.99999993]\n", + " [1291.20000002 4027.99999996]\n", + " [ 932.80000002 4027.99999996]\n", + " [ 574.4000002 4027.99999975]\n", + " [ 215.99999985 4028.00000015]\n", + " [2008.00000001 3669.59999986]\n", + "DEBUG:root:optics_fp: xyfp shape: (96, 2)\n", + " ]\n", + " [-17.79177429 0.831148 ]\n", + " [-22.17820285 0.831148 ]\n", + " [-26.56463143 0.831148 ]\n", + " [-30.95106 0.831148 ]\n", + " [-30.95106 31.536148 ]\n", + " [-30.95106 27.14971943]\n", + " [-30.95106 22.76329086]\n", + " [-30.95106 18.37686228]\n", + " [-30.95106 13.99043371]\n", + " [-30.95106 9.60400514]\n", + " [-30.95106 5.21757657]\n", + " [-30.95106 0.831148 ]\n", + " [ -0.26106 29.623648 ]\n", + " [ -0.26106 24.247648 ]\n", + " [ -0.26106 18.87164801]\n", + " [ -0.26106 13.495648 ]\n", + " [ -0.26106 8.119648 ]\n", + " [ -0.26106 2.743648 ]\n", + " [ -2.15856 31.521148 ]\n", + " [ -7.53456 31.521148 ]\n", + " [-12.91056 31.521148 ]\n", + " [-18.28656 31.521148 ]\n", + " [-23.66256 31.521148 ]\n", + " [-29.03856 31.521148 ]\n", + " [ -2.15856 0.846148 ]\n", + " [ -7.53456 0.846148 ]\n", + " [-12.91056 0.846148 ]\n", + " [-18.28655999 0.846148 ]\n", + " [-23.66256 0.846148 ]\n", + " [-29.03856 0.846148 ]\n", + " [-30.93606 29.623648 ]\n", + " [-30.93606 24.247648 ]\n", + " [-30.93606 18.871648 ]\n", + " [-30.93606 13.495648 ]\n", + " [-30.93606 8.119648 ]\n", + " [-30.93606 2.743648 ]\n", + " [ -0.26106 31.521148 ]\n", + " [ -0.26106 31.521148 ]\n", + " [-30.93606 0.846148 ]\n", + " [-30.93606 0.846148 ]\n", + " [ -2.15856 29.623648 ]\n", + " [ -7.53456 29.623648 ]\n", + " [-12.91056 29.623648 ]\n", + " [-18.28656 29.623648 ]\n", + " [-23.66256 29.623648 ]\n", + " [-29.03856 29.623648 ]\n", + " [ -2.15856 24.247648 ]\n", + " [ -7.53456 24.247648 ]\n", + " [-12.91056 24.247648 ]\n", + " [-18.28656 24.247648 ]\n", + " [-23.66256 24.247648 ]\n", + " [-29.03856 24.247648 ]\n", + " [ -2.15856 18.871648 ]\n", + " [ -7.53456 18.871648 ]\n", + " [-12.91056 18.871648 ]\n", + " [-18.28656 18.871648 ]\n", + " [-23.66256 18.871648 ]\n", + " [-29.03856 18.871648 ]\n", + " [ -2.15856 13.495648 ]\n", + " [ -7.53456 13.495648 ]\n", + " [-12.91056 13.495648 ]\n", + " [-18.28656 13.495648 ]\n", + " [-23.66256 13.495648 ]\n", + " [-29.03856 13.495648 ]\n", + " [ -2.15856 8.119648 ]\n", + " [ -7.53456 8.119648 ]\n", + " [-12.91056 8.119648 ]\n", + " [-18.28656 1950849\n", + " -0.96773826 -0.7317211 -0.52936616 -0.40257793 -0.32153186 -0.26653625\n", + " -0.7840245 -0.33289349 -0.20100193 -0.14313552 -0.11097528 -0.09056624]\n", + "DEBUG:root:radec2pix: xyfp: [[ -0.230877 31.363511 ]\n", + " [ -0.230877 26.97708243]\n", + " [ -0.230877 22.59065386]\n", + " [ -0.230877 18.20422528]\n", + " [ -0.230877 13.81779671]\n", + " [ -0.230877 9.43136815]\n", + " [ -0.230877 5.04493957]\n", + " [ -0.230877 0.658511 ]\n", + " [ -0.230877 31.363511 ]\n", + " [ -4.61730557 31.363511 ]\n", + " [ -9.00373414 31.363511 ]\n", + " [-13.39016272 31.363511 ]\n", + " [-17.77659129 31.363511 ]\n", + " [-22.16301986 31.363511 ]\n", + " [-26.54944843 31.363511 ]\n", + " [-30.935877 31.363511 ]\n", + " [ -0.230877 0.658511 ]\n", + " [ -4.61730558 0.658511 ]\n", + " [ -9.00373414 0.658511 ]\n", + " [-13.39016271 0.658511 ]\n", + " [-17.77659128 0.658511 ]\n", + " [-22.16301986 0.658511 ]\n", + " [-26.54944843 0.658511 ]\n", + " [-30.935877 0.658511 ]\n", + " [-30.935877 31.363511 ]\n", + " [-30.935877 26.97708243]\n", + " [-30.935877 22.59065386]\n", + " [-30.935877 18.20422528]\n", + " [-30 [1649.60000005 3669.59999982]\n", + " [1291.19999995 3669.60000009]\n", + " [ 932.79999997 3669.60000004]\n", + " [ 574.40000017 3669.59999983]\n", + " [ 215.99999977 3669.60000019]\n", + " [2007.99999999 3311.20000007]\n", + " [1649.5999999 3311.20000024]\n", + " [1291.20000003 3311.19999996]\n", + " [ 932.80000003 3311.19999997]\n", + " [ 574.40000015 3311.19999988]\n", + " [ 216.00000001 3311.19999999]\n", + " [2008.00000002 2952.79999987]\n", + " [1649.59999985 2952.80000027]\n", + " [1291.1999999 2952.80000011]\n", + " [ 932.80000032 2952.79999977]\n", + " [ 574.39999984 2952.80000009]\n", + " [ 216.00000025 2952.79999989]\n", + " [2007.99999995 2594.40000018]\n", + " [1649.59999988 2594.40000012]\n", + " [1291.19999985 2594.4000001 ]\n", + " [ 932.79999977 2594.4000001 ]\n", + " [ 574.39999985 2594.40000005]\n", + " [ 216.00000009 2594.39999997]\n", + " [2007.99999988 2236.00000015]\n", + " [1649.60000009 2235.99999997]\n", + " [1291.19999998 2236. ]\n", + " [ 932.79999991 2236.00000001]\n", + " [ 574.39999979 2236.00000002]\n", + " [ 215.99999986 2236.00000001]]\n", + " 8.119648 ]\n", + " [-23.66256 8.119648 ]\n", + " [-29.03856 8.119648 ]\n", + " [ -2.15856 2.743648DEBUG:root:mm_to_pix: fitpx.shape: (96, 2)\n", + "DEBUG:root:fitpix2pix: ccdpx: shape: (96, 2)\n", + " ]\n", + " [ -7.53456 2.743648 ]\n", + " [-12.91056 2.743648 ]\n", + " [-18.28656 2.743648 ]\n", + " [-23.66256 2.743648 ]\n", + " [-29.03856 2.743648 ]]\n", + ".935877 13.81779671]\n", + " [-30.935877 9.43136814]\n", + " [-30.935877 5.04493957]\n", + " [-30.935877 0.658511 ]\n", + " [ -0.245877 29.451011 ]\n", + " [ -0.245877 24.075011 ]\n", + " [ -0.245877 18.699011 ]\n", + " [ -0.245877 13.323011 ]\n", + " [ -0.245877 7.947011 ]\n", + " [ -0.245877 2.571011 ]\n", + " [ -2.143377 31.348511 ]\n", + " [ -7.519377 31.348511 ]\n", + " [-12.895377 31.348511 ]\n", + " [-18.271377 31.348511 ]\n", + " [-23.647377 31.348511 ]\n", + " [-29.023377 31.348511 ]\n", + " [ -2.143377 0.673511 ]\n", + " [ -7.519377 0.673511 ]\n", + " [-12.895377 0.673511 ]\n", + " [-18.271377 0.673511 ]\n", + " [-23.64737701 0.673511 ]\n", + " [-29.023377 0.673511 ]\n", + " [-30.920877 29.451011 ]\n", + " [-30.920877 24.075011 ]\n", + " [-30.920877 18.699011 ]\n", + " [-30.920877 13.323011 ]\n", + " [-30.920877 7.947011 ]\n", + " [-30.920877 2.571011 ]\n", + " [ -0.245877 31.348511 ]\n", + " [ -0.245877 31.348511 ]\n", + " [-30.920877 0.673511 ]\n", + " [-30.920877 0.673511 ]\n", + " [ -2.143377 29.451011 ]\n", + " [ -7.519377 29.451011 ]\n", + " [-12.895377 29.451011 ]\n", + " [-18.271377 29.451011 ]\n", + " [-23.647377 29.451011 ]\n", + " [-29.023377 29.451011 ]\n", + " [ -2.143377 24.075011 ]\n", + " [ -7.519377 24.075011 ]\n", + " [-12.895377 24.075011 ]\n", + " [-18.271377 24.075011 ]\n", + " [-23.647377 24.075011 ]\n", + " [-29.023377 24.075011 ]\n", + " [ -2.143377 18.699011 ]\n", + " [ -7.519377 18.699011 ]\n", + " [-12.895377 18.699011 ]\n", + " [-18.271377 18.699011 ]\n", + " [-23.647377 18.699011 ]\n", + " [-29.023377 18.699011 ]\n", + " [ -2.143377 13.323011 ]\n", + " [ -7.519377 13.323011 ]\n", + " [-12.895377 13.323011 ]\n", + " [-18.271377 13.323011 ]\n", + " [-23.647377 13.323011 ]\n", + " [-29.023377 13.323011 ]\n", + " [ -2.143377 7.947011 ]\n", + " [ -7.519377 7.947011 ]\n", + " [-12.895377 7.947011 ]\n", + " [-18.271377 7.947011 ]\n", + " [-23.647377 7.947011 DEBUG:root:radec2pix: xyfp Shape: (96, 2)\n", + "DEBUG:root:optics_fp: cphi: [0.00736113 0.00855795 0.01021949 0.01268159 0.01670634 0.02447236\n", + " 0.04571623 0.33085868 0.00736113 0.14564913 0.27593163 0.39264701\n", + " 0.49309519 0.57710146 0.64609955 0.70223653 0.33085868 0.98998261\n", + " 0.99733613 0.99879292 0.99931459 0.99955889 0.99969254 0.99977352\n", + " 0.70223653 0.7536841 0.80759419 0.86185323 0.91305945 0.9565351\n", + " 0.98696237 0.99977352 0.00834839 0.01021242 0.01314806 0.01845192\n", + " 0.03092476 0.09520001 0.06821327 0.23324784 0.38042607 0.50355732\n", + " 0.60221419 0.67936994 0.95400922 0.99601258 0.99863886 0.99932131\n", + " 0.99959465 0.99973085 0.72410803 0.78903751 0.85569931 0.91837755\n", + " 0.96852369 0.99656102 0.0078431 0.0078431 0.99976286 0.99976286\n", + " 0.07258573 0.24738232 0.40109449 0.52718454 0.6260916 0.70191681\n", + " 0.08867837 0.2981282 0.47216592 0.60454556 0.70074236 0.76966876\n", + " 0.11387947 0.37309127 0.56771826 0.69888097 0.78439808 0.84063622\n", + " 0.15883549 0.49151121 0.69548104 0.80800475 0.87123904 0.90881999\n", + " 0.26040359 0.68729315 0.85132238 0.9170162 0.94790417 0.96449723\n", + " 0.6403374 0.94621821 0.98069844 0.99024463 0.99414155 0.99609937]\n", + "DEBUG:root:fitpix2pix: visCut: True\n", + "]\n", + " [-29.023377 7.947011 ]\n", + " [ -2.143377 2.571011 ]\n", + " [ -7.519377 2.571011 ]\n", + " [-12.895377 2.571011 ]\n", + " [-18.271377 2.571011 ]\n", + " [-23.647377 2.571011 ]\n", + " [-29.023377 2.571011 ]]\n", + "DEBUG:root:radec2pix: xyfp Shape: (96, 2)\n", + "DEBUG:root:make_az_asym: xyp: [[ 0.236018 -31.56946754]\n", + " [ 0.23651287 -27.18303899]\n", + " [ 0.23700774 -22.79661046]\n", + " [ 0.23750261 -18.41018192]\n", + " [ 0.23799748 -14.02375336]\n", + " [ 0.23849235 -9.63732482]\n", + " [ 0.23898721 -5.25089628]\n", + " [ 0.23948208 -0.86446773]\n", + " [ 0.236018 -31.56946754]\n", + " [ 4.62244655 -31.56996241]\n", + " [ 9.00887509 -31.57045728]\n", + " [ 13.39530363 -31.57095214]\n", + " [ 17.78173218 -31.57144701]\n", + " [ 22.16816072 -31.57194188]\n", + " [ 26.55458927 -31.57243675]\n", + " [ 30.94101781 -31.57293162]\n", + " [ 0.23948208 -0.86446773]\n", + " [ 4.62591062 -0.8649626 ]\n", + " [ 9.01233917 -0.86545747]\n", + " [ 13.39876771 -0.86595234]\n", + " [ 17.78519626 -0.86644721]\n", + " [ 22.1716248 -0.86694208]\n", + " [ 26.55805334 -0.86743695]\n", + " [ 30.94448189 -0.86793181]\n", + " [ 30.94101781 -31.57293162]\n", + " [ 30.94151268 -27.18650307]\n", + " [ 30.94200754 -22.80007453]\n", + " [ 30.94250242 -18.41364599]\n", + " [ 30.94299728 -14.02721745]\n", + " [ 30.94349215 -9.6407889 ]\n", + " [ 30.94398702 -5.25436036]\n", + " [ 30.94448189 -0.86793181]\n", + " [ 0.25123377 -29.65696924]\n", + " [ 0.25184028 -24.28096928]\n", + " [ 0.25244679 -18.90496931]\n", + " [ 0.2530533 -13.52896935]\n", + " [ 0.25365981 -8.15296938]\n", + " [ 0.25426632 -2.77696942]\n", + " [ 2.14851968 -31.5546833 ]\n", + " [ 7.52451965 -31.55528981]\n", + " [ 12.90051962 -31.55589633]\n", + " [ 18.27651958 -31.55650284]\n", + " [ 23.65251954 -31.55710934]\n", + " [ 29.02851952 -31.55771586]\n", + " [ 2.15198038 -0.8796835 ]\n", + " [ 7.52798035 -0.88029001]\n", + " [ 12.90398031 -0.88089652]\n", + " [ 18.27998027 -0.88150303]\n", + " [ 23.65598025 -0.88210954]\n", + " [ 29.03198021 -0.88271605]\n", + " [ 30.92623357 -29.66042994]\n", + " [ 30.92684009 -24.28442998]\n", + " [ 30.9274466 -18.90843001]\n", + " [ 30.9280531 -13.53243004]\n", + " [ 30.92865961 -8.15643008]\n", + " [ 30.92926612 -2.78043011]\n", + " [ 0.2510197 -31.55446923]\n", + " [ 0.2510197 -31.55446923]\n", + " [ 30.9294802 -0.88293012]\n", + " [ 30.9294802 -0.88293012]\n", + " [ 2.14873376 -29.65718332]\n", + " [ 7.52473372 -29.65778983]\n", + " [ 12.90073369 -29.65839633]\n", + " [ 18.27673365 -29.65900285]\n", + " [ 23.65273362 -29.65960936]\n", + " [ 29.02873359 -29.66021587]\n", + " [ 2.14934027 -24.28118335]\n", + " [ 7.52534023 -24.28178986]\n", + " [ 12.9013402 -24.28239637]\n", + " [ 18.27734016 -24.28300288]\n", + " [ 23.65334013 -24.28360939]\n", + " [ 29.02934009 -24.2842159 ]\n", + " [ 2.14994678 -18.90518338]\n", + " [ 7.52594674 -18.90578989]\n", + " [ 12.90194671 -18.9063964 ]\n", + " [ 18.27794667 -18.90700292]\n", + " [ 23.65394664 -18.90760943]\n", + " [ 29.0299466 -18.90821593]\n", + " [ 2.15055329 -13.52918342]\n", + " [ 7.52655325 -13.52978993]\n", + " [ 12.90255322 -13.53039644]\n", + " [ 18.27855318 -13.53100295]\n", + " [ 23.65455315 -13.53160946]\n", + " [ 29.03055312 -13.53221597]\n", + " [ 2.1511598 -8.15318346]\n", + " [ 7.52715976 -8.15378996]\n", + " [ 12.90315973 -8.15439647]\n", + " [ 18.27915969 -8.15500298]\n", + " [ 23.65515966 -8.15560949]\n", + " [ 29.03115962 -8.156216 ]\n", + " [ 2.1517663 -2.77718348]\n", + " [ 7.52776627 -2.77779 ]\n", + " [ 12.90376624 -2.77839651]\n", + " [ 18.2797662 -2.77900302]\n", + " [ 23.65576617 -2.77960953]\n", + " [ 29.03176613 -2.78021604]]\n", + "DEBUG:root:mm_to_pix: fitpx: [[0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]]\n", + "DEBUG:root:make_az_asym: xyp: shape: (96, 2)\n", + "DEBUG:root:mm_to_pix: fitpx.shape: (96, 2)\n", + "DEBUG:root:radec2pix: xyfp: [[ 0.16415906 -31.72847131]\n", + " [ 0.16601788 -27.34204313]\n", + " [ 0.1678767 -22.95561497]\n", + " [ 0.16973552 -18.56918678]\n", + " [ 0.17159434 -14.1827586 ]\n", + " [ 0.17345315 -9.79633043]\n", + " [ 0.17531197 -5.40990225]\n", + " [ 0.17717079 -1.02347407]\n", + " [ 0.16415906 -31.72847131]\n", + " [ 4.55058724 -31.73033014]\n", + " [ 8.93701541 -31.73218895]\n", + " [ 13.32344359 -31.73404778]\n", + " [ 17.70987177 -31.73590659]\n", + " [ 22.09629995 -31.73776541]\n", + " [ 26.48272812 -31.73962422]\n", + " [ 30.8691563 -31.74148305]\n", + " [ 0.17717079 -1.02347407]\n", + " [ 4.56359897 -1.02533289]\n", + " [ 8.95002714 -1.02719171]\n", + " [ 13.33645532 -1.02905053]\n", + " [ 17.7228835 -1.03090935]\n", + " [ 22.10931168 -1.03276817]\n", + " [ 26.49573986 -1.03462699]\n", + " [ 30.88216803 -1.0364858 ]\n", + " [ 30.8691563 -31.74148305]\n", + " [ 30.87101512 -27.3550DEBUG:root:mm_to_pix: fitpx: [[0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]]\n", + "5487]\n", + " [ 30.87287394 -22.96862669]\n", + " [ 30.87473276 -18.58219851]\n", + " [ 30.87659158 -14.19577034]\n", + " [ 30.8784504DEBUG:root:optics_fp: xyfp: [[ -0.172993 31.426621 ]\n", + " [ -0.172993 27.04019243]\n", + " [ -0.172993 22.65376385]\n", + " [ -0.172993 18.26733528]\n", + " [ -0.172993 13.88090671]\n", + " [ -0.172993 9.49447814]\n", + " [ -0.172993 5.10804957]\n", + " [ -0.172993 0.721621 ]\n", + " [ -0.172993 31.426621 ]\n", + " [ -4.55942157 31.426621 ]\n", + " [ -8.94585014 31.426621 ]\n", + " [-13.33227871 31.426621 ]\n", + " [-17.71870729 31.426621 ]\n", + " [-22.10513586 31.426621 ]\n", + " [-26.49156443 31.426621 ]\n", + " [-30.877993 31.426621 ]\n", + " [ -0.172993 0.721621 ]\n", + " [ -4.55942157 0.721621 ]\n", + " [ -8.94585014 0.721621 ]\n", + " [-13.33227872 0.721621 ]\n", + " [-17.71870728 0.721621 ]\n", + " [-22.10513586 0.721621 ]\n", + " [-26.49156443 0.721621 ]\n", + " [-30.877993 0.721621 ]\n", + " [-30.877993 31.426621 ]\n", + " [-30.877993 27.04019243]\n", + " [-30.877993 22.65376385]\n", + " [-30.877993 18.26733529]\n", + " [-30.877993 13.88090671]\n", + " [-30.877993 9.49447814]\n", + " [-30.877993 5.10804957]\n", + " [-30.877993 0.721621 ]\n", + " [ -0.187993 29.514121 ]\n", + " [ -0.187993 24.138121 ]\n", + " [ -0.187993 18.76212101]\n", + " [ -0.187993 13.386121 ]\n", + " [ -0.187993 8.010121 ]\n", + " [ -0.187993 2.634121 ]\n", + " [ -2.085493 31.411621 ]\n", + " [ -7.461493 31.411621 ]\n", + " [-12.837493 31.411621 ]\n", + " [-18.213493 31.411621 ]\n", + " [-23.589493 31.411621 ]\n", + " [-28.965493 31.411621 ]\n", + " [ -2.085493 0.736621 ]\n", + " [ -7.461493 0.736621 ]\n", + " [-12.837493 0.736621 ]\n", + " [-18.213493 0.736621 ]\n", + " [-23.58949299 0.736621 ]\n", + " [-28.965493 0.736621 ]\n", + " [-30.862993 29.514121 ]\n", + " [-30.862993 24.138121 ]\n", + " [-30.862993 18.762121 ]\n", + " [-30.862993 13.386121 ]\n", + " [-30.862993 8.010121 ]\n", + " [-30.862993 2.634121 ]\n", + " [ -0.187993 31.411621 ]\n", + " [ -0.187993 31.411621 ]\n", + " [-30.862993 0.736621 ]\n", + " [-30.862993 0.736621 ]\n", + " [ -2.085493 29.514121 ]\n", + " [ -7.461493 29.514121 ]\n", + " [-12.837493 29.514121 ]\n", + " [-18.213493 29.514121 ]\n", + " [-23.589493 29.514121 ]\n", + " [-28.965493 29.514121 ]\n", + " [ -2.085493 24.138121 ]\n", + " [ -7.461493 24.138121 ]\n", + " [-12.837493 24.138121 ]\n", + " [-18.213493 24.138121 ]\n", + " [-23.589493 24.138121 ]\n", + " [-28.965493 24.138121 ]\n", + " [ -2.085493 18.762121 ]\n", + " [ -7.461493 18.762121 ]\n", + " [-12.837493 18.762121 ]\n", + " [-18.213493 18.762121 ]\n", + " [-23.589493 18.762121 ]\n", + " [-28.965493 18.762121 ]\n", + " [ -2.085493 13.386121 ]\n", + " [ -7.461493 13.386121 ]\n", + " [-12.837493 13.386121 ]\n", + " [-18.213493 13.386121 ]\n", + " [-23.589493 13.386121 ]\n", + " [-28.965493 13.386121 ]\n", + " [ -2.085493 8.010121 ]\n", + " [ -7.461493 8.010121 ]\n", + " [-12.837493 8.010121 ]\n", + " [-18.213493 8.010121 ]\n", + " [-23.589493 8.010121 ]\n", + " [-28.965493 8.010121 ]\n", + " [ -2.085493 2.634121 ]\n", + " [ -7.461493 2.634121 ]\n", + " [-12.837493 2.634121 ]\n", + " [-18.213493 2.634121 ]\n", + " [-23.589493 2.634121 ]\n", + " [-28.965493 2.634121 ]]\n", + " -9.80934216]\n", + " [ 30.88030922 -5.42291398]\n", + " [ 30.88216803 -1.0364858 ]\n", + " [ 0.17996951 -29.81597784]\n", + " [ 0.18224768 -24.43997833]\n", + " [ 0.18452584 -19.06397881]\n", + " [ 0.18680401 -13.6879793 ]\n", + " [ 0.18908217 -8.31197977]\n", + " [ 0.19136034 -2.93598025]\n", + " [ 2.07666524 -31.71428177]\n", + " [ 7.45266476 -31.71655993]\n", + " [ 12.82866428 -31.7188381 ]\n", + " [ 18.2046638 -31.72111627]\n", + " [ 23.58066331 -31.72339443]\n", + " [ 28.95666283 -31.7256726 ]\n", + " [ 2.08966426 -1.03928452]\n", + " [ 7.46566378 -1.04156269]\n", + " [ 12.8416633 -1.04384085]\n", + " [ 18.21766282 -1.04611902]\n", + " [ 23.59366233 -1.04839718]\n", + " [ 28.96966185 -1.05067535]\n", + " [ 30.85496675 -29.82897686]\n", + " [ 30.85724492 -24.45297735]\n", + " [ 30.85952308 -19.07697783]\n", + " [ 30.86180126 -13.70097831]\n", + " [ 30.86407941 -8.32497879]\n", + " [ 30.86635759 -2.94897928]\n", + " [ 0.17916541 -31.71347767]\n", + " [ 0.17916541 -31.71347767]\n", + " [ 30.86716168 -1.05147945]\n", + " [ 30.86716168 -1.05147945]\n", + " [ 2.07746934 -29.81678193]\n", + " [ 7.45346886 -29.8190601 ]\n", + " [ 12.82946837 -29.82133827]\n", + " [ 18.20546789 -29.82361643]\n", + " [ 23.58146741 -29.82589461]\n", + " [ 28.95746693 -29.82817277]\n", + " [ 2.07974751 -24.44078242]\n", + " [ 7.45574702 -24.44306058]\n", + " [ 12.83174654 -24.44533875]\n", + " [ 18.20774606 -24.44761692]\n", + " [ 23.58374558 -24.44989508]\n", + " [ 28.95974509 -24.45217325]\n", + " [ 2.08202567 -19.0647829 ]\n", + " [ 7.45802519 -19.06706107]\n", + " [ 12.83402471 -19.06933924]\n", + " [ 18.21002422 -19.0716174 ]\n", + " [ 23.58602374 -19.07389557]\n", + " [ 28.96202325 -19.07617373]\n", + " [ 2.08430384 -13.68878339]\n", + " [ 7.46030335 -13.69106155]\n", + " [ 12.83630287 -13.69333972]\n", + " [ 18.21230239 -13.69561789]\n", + " [ 23.58830191 -13.69789605]\n", + " [ 28.96430143 -13.70017422]\n", + " [ 2.086582 -8.31278387]\n", + " [ 7.46258152 -8.31506203]\n", + " [ 12.83858103 -8.3173402 ]\n", + " [ 18.21458055 -8.31961837]\n", + " [ 23.59058007 -8.32189653]\n", + " [ 28.96657959 -8.3241747 ]\n", + " [ 2.08886017 -2.93678435]\n", + " [ 7.46485969 -2.93906252]\n", + " [ 12.8408592 -2.94134068]\n", + " [ 18.21685872 -2.94361885]\n", + " [ 23.59285824 -2.94589701]\n", + " [ 28.96885776 -2.94817518]]\n", + "DEBUG:root:optics_fp: xyfp shape: (96, 2)\n", + "DEBUG:root:mm_to_pix: fitpx.shape: (96, 2)\n", + "DEBUG:root:optics_fp: rtanth: [45.10607628 42.16357777 39.4899731 37.14337318 35.189258 33.69598042\n", + " 32.72668371 32.32853333 45.10607628 42.0744994 39.2994961 36.83909335\n", + " 34.76015989 33.13457624 32.03143895 31.50567459 32.32853333 27.94350461\n", + " 23.55899708 19.17536829 14.79339939 10.41518568 6.04888681 1.78423138\n", + " 31.50567459 27.12594155 22.74878876 18.37606012 14.01189826 9.66791142\n", + " 5.39307341 1.78423138 43.78236587 40.34917919 37.37672691 34.98265169\n", + " 33.29196413 32.41491299 43.7452802 40.19469624 37.08612172 34.53910818\n", + " 32.68520027 31.64644357 30.41697218 25.04308812 19.67036046 14.30009268\n", + " 8.93672046 3.6111005 29.59667216 24.23063563 18.87027174 13.52232821\n", + " 8.21110934 3.12954069 45.08486499 45.08486499 1.80420296 1.80420296\n", + " 42.4016515 38.72807918 35.4912797 32.82073285 30.86377856 29.76151712\n", + " 38.84663114 34.79978185 31.15752935 28.07777067 25.76302637 24.43171303\n", + " 35.74946438 31.30476433 27.19843907 23.60772454 20.80136966 19.12778226\n", + " 33.23838757 28.40342363 23.80170775 19.59823621 16.10786095 13.87941853\n", + " 31.45408342 26.29303007 21.23888529 16.39084557 12.00133913 8.78676362\n", + " 30.52427023 25.1733021 19.8358755 14.52692422 9.29536709 4.42480773]\n", + "DEBUG:root:radec2pix: xyfp: [[ -0.24606 31.536148 ]\n", + " [ -0.24606 27.14971943]\n", + " [ -0.24606 22.76329086]\n", + " [ -0.24606 18.37686229]\n", + " [ -0.24606 13.99043371]\n", + " [ -0.24606 9.60400514]\n", + " [ -0.24606 5.21757658]\n", + " [ -0.24606 0.831148 ]\n", + " [ -0.24606 31.536148 ]\n", + " [ -4.63248857 31.536148 ]\n", + " [ -9.01891714 31.536148 ]\n", + " [-13.40534571 31.536148 ]\n", + " [-17.79177429 31.536148 ]\n", + " [-22.17820286 31.536148 ]\n", + " [-26.56463143 31.536148 ]\n", + " [-30.95106 31.536148 ]\n", + " [ -0.24606 0.831148 ]\n", + " [ -4.63248857 0.831148 ]\n", + " [ -9.01891714 0.831148 ]\n", + " [-13.40534571 0.831148 ]\n", + " [-17.79177429 0.831148 ]\n", + " [-22.17820285 0.831148 ]\n", + " [-26.56463143 0.831148 ]\n", + " [-30.95106 0.831148 ]\n", + " [-30.95106 31.536148 ]\n", + " [-30.95106 27.14971943]\n", + " [-30.95106 22.76329086]\n", + " [-30.95106 18.37686228]\n", + " [-30.95106 13.99043371]\n", + " [-30.95106 9.60400514]\n", + " [-30.95106 5.21757657]\n", + " [-30.95106 0.831148 ]\n", + " [ -0.26106 29.623648 ]\n", + " [ -0.26106 24.247648 ]\n", + " [ -0.26106 18.87164801]\n", + " [ -0.26106 13.495648 ]\n", + " [ -0.26106 8.119648 ]\n", + " [ -0.26106 2.743648 ]\n", + " [ -2.15856 31.521148 ]\n", + " [ -7.53456 31.521148 ]\n", + " [-12.91056 31.521148 ]\n", + " [-18.28656 31.521148 ]\n", + " [-23.66256 31.521148 ]\n", + " [-29.03856 31.521148 ]\n", + " [ -2.15856 0.846148 ]\n", + " [ -7.53456 0.846148 ]\n", + " [-12.91056 0.846148 ]\n", + " [-18.28655999 0.846148 ]\n", + " [-23.66256 0.846148 ]\n", + " [-29.03856 0.846148 ]\n", + " [-30.93606 29.623648 ]\n", + " [-30.93606 24.247648 ]\n", + " [-30.93606 18.871648 ]\n", + " [-30.93606 13.495648 ]\n", + " [-30.93606 8.119648 ]\n", + " [-30.93606 2.743648 ]\n", + " [ -0.26106 31.521148 ]\n", + " [ -0.26106 31.521148 ]\n", + " [-30.93606 0.846148 ]\n", + " [-30.93606 0.846148 ]\n", + " [ -2.15856 29.623648 ]\n", + " [ -7.53456 29.623648 ]\n", + " [-12.91056 29.623648 ]\n", + " [-18.28656 29.623648 ]\n", + " [-23.66256 29.623648 ]\n", + " [-29.03856 29.623648 ]\n", + " [ -2.15856 24.247648 ]\n", + " DEBUG:root:radec2pix: curVec: [[-0.23542599 0.88748555 0.39616158]\n", + " [-0.26255086 0.8810647 0.39343619]\n", + " [-0.29000343 0.87380375 0.39033962]\n", + " [-0.31766289 0.86569297 0.38686687]\n", + " [-0.34541132 0.85673161 0.38301694]\n", + " [-0.37313204 0.84692867 0.37879323]\n", + " [-0.40070918 0.83630358 0.3742038 ]\n", + " [-0.42802828 0.8248865 0.36926149]\n", + " [-0.23542599 0.88748555 0.39616158]\n", + " [-0.23552631 0.89889686 0.36947502]\n", + " [-0.23552496 0.90949605 0.34255646]\n", + " [-0.23542755 0.91925187 0.31551523]\n", + " [-0.23524414 0.92814265 0.2884639 ]\n", + " [-0.23498966 0.93615599 0.2615183 ]\n", + " [-0.23468451 0.94328844 0.23479798]\n", + " [-0.23435493 0.94954512 0.20842702]\n", + " [-0.42802828 0.8248865 0.36926149]\n", + " [-0.4279765 0.83671998 0.3416662 ]\n", + " [-0.42754325 0.84776291 0.31385477]\n", + " [-0.4267358 0.85798251 0.28594156]\n", + " [-0.42556627 0.86735677 0.25804182]\n", + " [-0.42405145 0.87587425 0.23027085]\n", + " [-0.42221258 0.88353339 0.2027444 ]\n", + " [-0.42007532 0.89034169 0.17558016]\n", + " [-0.23435493 0.94954512 0.20842702]\n", + " [-0.26040784 0.94369331 0.20403599]\n", + " [-0.28682414 0.93697077 0.19954371]\n", + " [-0.3134765 0.92937002 0.19494574]\n", + " [-0.34024308 0.92089215 0.19024274]\n", + " [-0.36700663 0.91154707 0.18544021]\n", + " [-0.39365387 0.90135399 0.18054808]\n", + " [-0.42007532 0.89034169 0.17558016]\n", + " [-0.24720484 0.88482888 0.39492736]\n", + " [-0.28068495 0.87639658 0.39133744]\n", + " [-0.31453681 0.86669173 0.38718475]\n", + " [-0.34854224 0.85570918 0.38246582]\n", + " [-0.3824864 0.84346558 0.37718691]\n", + " [-0.41615649 0.83000115 0.37136487]\n", + " [-0.23557447 0.892538 0.38455246]\n", + " [-0.23562838 0.9059824 0.35167478]\n", + " [-0.2355345 0.91817482 0.3185569 ]\n", + " [-0.23530944 0.92907137 0.28540472]\n", + " [-0.23498078 0.93864922 0.25243154]\n", + " [-0.23458849 0.94690556 0.21985929]\n", + " [-0.42796003 0.83018094 0.35728116]\n", + " [-0.42763955 0.84415701 0.32330071]\n", + " [-0.42675295 0.85691182 0.28910907]\n", + " [-0.42532054 0.86840037 0.25491808]\n", + " [-0.4233732 0.87860152 0.22094006]\n", + " [-0.42095184 0.88751619 0.18738881]\n", + " [-0.24566261 0.947DEBUG:root:radec2pix: curVec: [[ 0.22317015 -0.41005728 0.88433484]\n", + " [ 0.23265362 -0.43179333 0.87145099]\n", + " [ 0.24201654 -0.45372495 0.85764891]\n", + " [ 0.25122327 -0.47573148 0.84295102]\n", + " [ 0.26023829 -0.49770019 0.82738779]\n", + " [ 0.26902626 -0.51952558 0.81099818]\n", + " [ 0.27755234 -0.54110873 0.79382998]\n", + " [ 0.28578265 -0.56235699 0.77594001]\n", + " [ 0.22317015 -0.41005728 0.88433484]\n", + " [ 0.19780455 -0.41887381 0.88623817]\n", + " [ 0.17178286 -0.42770084 0.88744726]\n", + " [ 0.14520601 -0.43646703 0.88792553]\n", + " [ 0.11817543 -0.44510928 0.88764424]\n", + " [ 0.09079371 -0.45357221 0.88658263]\n", + " [ 0.06316519 -0.46180747 0.88472822]\n", + " [ 0.03539603 -0.46977329 0.88207719]\n", + " [ 0.28578265 -0.56235699 0.77594001]\n", + " [ 0.26007241 -0.57313079 0.77709937]\n", + " [ 0.2336258 -0.58366825 0.77765697]\n", + " [ 0.20653712 -0.59390103 0.77757571]\n", + " [ 0.17890271 -0.60376701 0.77682637]\n", + " [ 0.1508229 -0.61320966 0.77538788]\n", + " [ 0.12240293 -0.62217804 0.7732477 ]\n", + " [ 0.09375275 -0.63062724 0.7704023 ]\n", + " [ 0.03539603 -0.46977329 0.88207DEBUG:root:radec2pix: xyfp: [[ 0.236018 -31.56946754]\n", + " [ 0.23651287 -27.18303899]\n", + " [ 0.23700774 -22.79661046]\n", + " [ 0.23750261 -18.41018192]\n", + " [ 0.23799748 -14.02375336]\n", + " [ 0.23849235 -9.63732482]\n", + " [ 0.23898721 -5.25089628]\n", + " [ 0.23948208 -0.86446773]\n", + " [ 0.236018 -31.56946754]\n", + " [ 4.62244655 -31.56996241]\n", + " [ 9.00887509 -31.57045728]\n", + " [ 13.39530363 -31.57095214]\n", + " [ 17.78173218 -31.57144701]\n", + " [ 22.16816072 -31.57194188]\n", + " [ 26.55458927 -31.57243675]\n", + " [ 30.94101781 -31.57293162]\n", + " [ 0.23948208 -0.86446773]\n", + " [ 4.62591062 -0.8649626 ]\n", + " [ 9.01233917 -0.86545747]\n", + " [ 13.39876771 -0.86595234]\n", + " [ 17.78519626 -0.86644721]\n", + " [ 22.1716248 -0.86694208]\n", + " [ 26.55805334 -0.86743695]\n", + " [ 30.94448189 -0.86793181]\n", + " [ 30.94101781 -31.57293162]\n", + " [ 30.94151268 -27.18650307]\n", + " [ 30.94200754 -22.80007453]\n", + " [ 30.94250242 -18.41364599]\n", + " [ 30.94299728 -14.02721745]\n", + " [ 30.94349215 -9.6407889 ]\n", + " [ 30.94398702 -5.25436036]\n", + " [ 30.94448189 -0.86793181]\n", + " [ 0.25123377 -29.65696924]\n", + " [ 0.25184028 07994 0.2066143 ]\n", + " [-0.27785514 0.93932349 0.20116635]\n", + " [-0.31046629 0.93025079 0.19556114]\n", + " [-0.34326952 0.91986023 0.18979776]\n", + " [-0.37604892 0.90817016 0.1838863 ]\n", + " [-0.4085975 0.89521989 0.17784666]\n", + " [-0.23551857 0.88750537 0.39606214]\n", + " [-0.23551857 0.88750537 0.39606214]\n", + " [-0.41999326 0.89035886 0.1756894 ]\n", + " [-0.41999326 0.89035886 0.1756894 ]\n", + " [-0.24725874 0.8898813 0.38337239]\n", + " [-0.24728805 0.90337856 0.35036523]\n", + " [-0.2471414 0.91561901 0.31711664]\n", + " [-0.24683501 0.9265589 0.28383285]\n", + " [-0.24639589 0.93617577 0.25072692]\n", + " [-0.24586339 0.94446728 0.21802008]\n", + " [-0.28073326 0.88149907 0.37966858]\n", + " [-0.28069436 0.89513206 0.34633694]\n", + " [-0.28040181 0.90749885 0.31276294]\n", + " [-0.2798712 0.91855601 0.27915403]\n", + " [-0.27912841 0.92828207 0.24572288]\n", + " [-0.27821129 0.93667603 0.21268871]\n", + " [-0.31457955 0.87183531 0.37542363]\n", + " [-0.31447391 0.88558327 0.34183101]\n", + " [-0.31403938 0.89806244 0.30799857]\n", + " [-0.31329164 0.90922946 0.27413527]\n", + " [-0.31225642 0.91906363 0.24045368]\n", + " [-0.31097085 0.92756521 0.20717119]\n", + " [-0.34857941 0.86088462 0.37063469]\n", + " [-0.34840803 0.87472646 0.33684635]\n", + " [-0.34783441 0.88730433 0.3028238 ]\n", + " [-0.3468751 0.89857462 0.26877746]\n", + " [-0.34555662 0.90851706 0.23491993]\n", + " [-0.34391639 0.91713278 0.20146708]\n", + " [-0.38251799 0.84866334 0.3653088 ]\n", + " [-0.382282 0.86257741 0.33139204]\n", + " [-0.38157237 0.87524017 0.29724935]\n", + " [-0.38040707 0.88660756 0.26309218]\n", + " [-0.3788142 0.89665925 0.22913314]\n", + " [-0.37683234 0.90539667 0.19558697]\n", + " [-0.41618254 0.83521143 0.35946344]\n", + " [-0.41588368 0.84917536 0.32548728]\n", + " [-0.41504226 0.86190877 0.29129572]\n", + " [-0.41367799 0.87336692 0.25710064]\n", + " [-0.41182098 0.88352895 0.22311448]\n", + " [-0.40951152 0.89239602 0.1895512 ]]\n", + "719]\n", + " [ 0.04354257 -0.49310623 0.86887876]\n", + " [ 0.05180943 -0.51650478 0.85471551]\n", + " [ 0.06016236 -0.53985414 0.83960586]\n", + " [ 0.06856738 -0.56304474 0.82357703]\n", + " [ 0.07699036 -0.58597099 0.80666628]\n", + " [ 0.08539694 -0.60853098DEBUG:root:optics_fp: cphi: [-0.71639206 -0.76640718 -0.81831665 -0.87003773 -0.918376 -0.95909967\n", + " -0.98753169 -0.99971968 -0.71639206 -0.66375612 -0.59900967 -0.51994628\n", + " -0.42485193 -0.31331297 -0.18716187 -0.0510586 -0.99971968 -0.9996256\n", + " -0.99947438 -0.99920821 -0.99867222 -0.99732533 -0.99206684 -0.90485547\n", + " -0.0510586 -0.05933321 -0.07078632 -0.08767585 -0.11504297 -0.16682032\n", + " -0.29920561 -0.90485547 -0.73771707 -0.80051245 -0.864202 -0.9233738\n", + " -0.97029678 -0.99658165 -0.69495812 -0.62259801 -0.52982456 -0.41324571\n", + " -0.27220694 -0.1112649 -0.9996711 -0.99951604 -0.9992175 -0.99852279\n", + " -0.99622323 -0.97670188 -0.054871 -0.06706472 -0.08616954 -0.12032428\n", + " -0.19827847 -0.52055819 -0.71639646 -0.71639646 -0.90315154 -0.90315154\n", + " -0.71698855 -0.64618487 -0.553643 -0.43489275 -0.28828288 -0.11832391\n", + " -0.78262952 -0.71915739 -0.63068289 -0.50839224 -0.34539889 -0.14417822\n", + " -0.85046147 -0.79948029 -0.72252464 -0.60469794 -0.42783445 -0.18421072\n", + " -0.91474245 -0.88118124 DEBUG:root:radec2pix: curVec Shape: (96, 3)\n", + "DEBUG:root:radec2pix: ccdpx: [[-4.45000000e+01 -4.99999951e-01]\n", + " [-4.45000000e+01 2.91928572e+02]\n", + " [-4.45000000e+01 5.84357142e+02]\n", + " [-4.45000000e+01 8.76785714e+02]\n", + " [-4.45000000e+01 1.16921429e+03]\n", + " [-4.45000000e+01 1.46164286e+03]\n", + " [-4.45000000e+01 1.75407143e+03]\n", + " [-4.45000000e+01 2.04650000e+03]\n", + " [-4.45000000e+01 -4.99999951e-01]\n", + " [ 2.47928571e+02 -5.00000176e-01]\n", + " [ 5.40357143e+02 -5.00000069e-01]\n", + " [ 8.32785714e+02 -5.00000257e-01]\n", + " [ 1.12521429e+03 -4.99999992e-01]\n", + " [ 1.41764286e+03 -5.00000241e-01]\n", + " [ 1.71007143e+03 -4.99999730e-01]\n", + " [ 2.00250000e+03 -5.00000010e-01]\n", + " [-4.45000000e+01 2.04650000e+03]\n", + " [ 2.47928571e+02 2.04650000e+03]\n", + " [ 5.40357143e+02 2.04650000e+03]\n", + " [ 8.32785714e+02 2.04650000e+03]\n", + " [ 1.12521429e+03 2.04650000e+03]\n", + " [ 1.41764286e+03 2.04650000e+03]\n", + " [ 1.71007143e+03 2.04650000e+03]\n", + " [ 2.00250000e+03 2.04650000e+03]\n", + " [ 2.00250000e+03 -5.00000010e-01]\n", + " [ 2.00250000e+03 2.91928572e+02]\n", + " [ 2.00250000e+03DEBUG:root:make_az_asym: xyp: [[ -0.172993 31.426621 ]\n", + " [ -0.172993 27.04019243]\n", + " [ -0.172993 22.65376385]\n", + " [ -0.172993 18.26733528]\n", + " [ -0.172993 13.88090671]\n", + " [ -0.172993 9.49447814]\n", + " [ -0.172993 5.10804957]\n", + " [ -0.172993 0.721621 ]\n", + " [ -0.172993 31.426621 ]\n", + " [ -4.55942157 31.426621 ]\n", + " [ -8.94585014 31.426621 ]\n", + " [-13.33227871 31.426621 ]\n", + " [-17.71870729 31.426621 ]\n", + " [-22.10513586 31.426621 ]\n", + " [-26.49156443 31.426621 ]\n", + " [-30.877993 31.426621 ]\n", + " [ -0.172993 0.721621 ]\n", + " [ -4.55942157 0.721621 ]\n", + " [ -8.94585014 0.721621 ]\n", + " [-13.33227872 0.721621 ]\n", + " [-17.71870728 0.721621 ]\n", + " [-22.10513586 0.721621 ]\n", + " [-26.49156443 0.721621 ]\n", + " [-30.877993 0.721621 ]\n", + " [-30.877993 31.426621 ]\n", + " [-30.877993 27.04019243]\n", + " [-30.877993 22.65376385]\n", + " [-30.877993 18.26733529]\n", + " [-30.877993 13.88090671]\n", + " [-30.877993 9.49447814]\n", + " [-30.877993 5.10804957]\n", + " [-30.877993 0.721621 ]\n", + " [ -0.187993 29.514121 ]\n", + " [ -0.187993 -24.28096928]\n", + " [ 0.25244679 -18.90496931]\n", + " [ 0.2530533 -13.52896935]\n", + " [ 0.25365981 -8.15296938]\n", + " [ 0.25426632 -2.77696942]\n", + " [ 2.14851968 -31.5546833 ]\n", + " [ 7.52451965 -31.55528981]\n", + " [ 12.90051962 -31.55589633]\n", + " [ 18.27651958 -31.55650284]\n", + " [ 23.65251954 -31.55710934]\n", + " [ 29.02851952 -31.55771586]\n", + " [ 2.15198038 -0.8796835 ]\n", + " [ 7.52798035 -0.88029001]\n", + " [ 12.90398031 -0.88089652]\n", + " [ 18.27998027 -0.88150303]\n", + " [ 23.65598025 -0.88210954]\n", + " [ 29.03198021 -0.88271605]\n", + " [ 30.92623357 -29.66042994]\n", + " [ 30.92684009 -24.28442998]\n", + " [ 30.9274466 -18.90843001]\n", + " [ 30.9280531 -13.53243004]\n", + " [ 30.92865961 -8.15643008]\n", + " [ 30.92926612 -2.78043011]\n", + " [ 0.2510197 -31.55446923]\n", + " [ 0.2510197 -31.55446923]\n", + " [ 30.9294802 -0.88293012]\n", + " [ 30.9294802 -0.88293012]\n", + " [ 2.14873376 -29.65718332]\n", + " [ 7.52473372 -29.65778983]\n", + " [ 12.90073369 -29.65839633]\n", + " [ 18.27673365 -29.65900285]\n", + " [ 23.65273362 -29.65960936]\n", + " [ 29.02873359 -29.66021587]\n", + " [ 2.14934027 -24.28118335]\n", + " [ 7.52534023 -24.28178986]\n", + "DEBUG:root:radec2pix: xyfp: [[ -0.230877 31.363511 ]\n", + " [ -0.230877 26.97708243]\n", + " [ -0.230877 22.59065386]\n", + " [ -0.230877 18.20422528]\n", + " [ -0.230877 13.81779671]\n", + " [ -0.230877 9.43136815]\n", + " [ -0.230877 5.04493957]\n", + " [ -0.230877 0.658511 ]\n", + " [ -0.230877 31.363511 ]\n", + " [ -4.61730557 31.363511 ]\n", + " [ -9.00373414 31.363511 ]\n", + " [-13.39016272 31.363511 ]\n", + " [-17.77659129 31.363511 ]\n", + " [-22.16301986 31.363511 ]\n", + " [-26.54944843 31.363511 ]\n", + " [-30.935877 31.363511 ]\n", + " [ -0.230877 0.658511 ]\n", + " [ -4.61730558 0.658511 ]\n", + " [ -9.00373414 0.658511 ]\n", + " [-13.39016271 0.658511 ]\n", + " [-17.77659128 0.658511 ]\n", + " [-22.16301986 0.658511 ]\n", + " [-26.54944843 0.658511 ]\n", + " [-30.935877 0.658511 ]\n", + " [-30.935877 31.363511 ]\n", + " [-30.935877 26.97708243]\n", + " [-30.935877 22.59065386]\n", + " [-30.935877 18.20422528]\n", + " [-30.935877 13.81779671]\n", + " [-30.935877 9.43136814]\n", + " [-30.935877 5.04493957]\n", + " [-30.935877 0.658511 ]\n", + " [ -0.245877 29.451011 ]\n", + " [ -0.245877 0.78892167]\n", + " [ 0.09375275 -0.63062724 0.7704023 ]\n", + " [ 0.22723176 -0.41953278 0.878839 ]\n", + " [ 0.23877759 -0.44632124 0.86242832]\n", + " [ 0.25010707 -0.47328254 0.84465975]\n", + " [ 0.26115478 -0.5002059 0.825586 ]\n", + " [ 0.27185569 -0.52689701 0.80527885]\n", + " [ 0.28214603 -0.55317637 0.78383003]\n", + " [ 0.21223013 -0.41396954 0.88520483]\n", + " [ 0.18068734 -0.42479309 0.88707549]\n", + " [ 0.14825927 -0.4355604 0.88786617]\n", + " [ 0.11513238 -0.4461519 0.88752071]\n", + " [ 0.08149565 -0.45646555 0.88600094]\n", + " [ 0.04754191 -0.46641511 0.88328745]\n", + " [ 0.27464174 -0.56700652 0.77657937]\n", + " [ 0.24262392 -0.58006019 0.77760132]\n", + " [ 0.20959366 -0.59269038 0.77768156]\n", + " [ 0.17572739 -0.60478019 0.77676303]\n", + " [ 0.14120991 -0.61622555 0.77480697]\n", + " [ 0.10623698 -0.62693517 0.77179401]\n", + " [ 0.03902638 -0.47990397 0.87645258]\n", + " [ 0.04909698 -0.50855947 0.85962594]\n", + " [ 0.05931403 -0.53719884 0.84136749]\n", + " [ 0.0696149 -0.56561828 0.82172363]\n", + " [ 0.07993672 -0.59362337 0.80076302]\n", + " [ 0.09021624 -0.6210283 0.77857876]\n", + " [ 0.223117 24.075011 ]\n", + " [ -0.245877 18.699011 ]\n", + " [ -0.245877 13.323011 ]\n", + " [ -0.245877 7.947011 ]\n", + " [ -0.245877 2.571011 ]\n", + " [ -2.143377 31.348511 ]\n", + " [ -7.519377 31.348511 ]\n", + " [-12.895377 31.348511 ]\n", + " [-18.271377 31.348511 ]\n", + " [-23.647377 31.348511 ]\n", + " [-29.023377 31.348511 ]\n", + " [ -2.143377 0.673511 ]\n", + " [ -7.519377 0.673511 ]\n", + " [-12.895377 0.673511 ]\n", + " [-18.271377 0.673511 ]\n", + " [-23.64737701 0.673511 ]\n", + " [-29.023377 0.673511 ]\n", + " [-30.920877 29.451011 ]\n", + " [-30.920877 24.075011 ]\n", + " [-30.920877 18.699011 ]\n", + " [-30.920877 13.323011 ]\n", + " [-30.920877 7.947011 ]\n", + " [-30.920877 2.571011 ]\n", + " [ -0.245877 31.348511 ]\n", + " [ -0.245877 31.348511 ]\n", + " [-30.920877 0.673511 ]\n", + " [-30.920877 0.673511 ]\n", + " [ -2.143377 29.451011 ]\n", + " [ -7.519377 29.451011 ]\n", + " [-12.895377 29.451011 ]\n", + " [-18.271377 29.451011 ]\n", + " [-23.647377 29.451011 ]\n", + " [-29.023377 29.451011 ]\n", + " [ -2.143377 24.075011 ]\n", + " [ -7.519377 24.075011 ]\n", + "DEBUG:root:optics_fp: sphi: [-0.99997291 -0.99996338 -0.99994778 -0.99991959 -0.99986044 -0.99970051\n", + " -0.99895447 -0.94368031 -0.99997291 -0.98933631 -0.96117727 -0.91968926\n", + " -0.86997536 -0.81667246 -0.76325315 -0.71194371 -0.94368031 -0.14118936\n", + " -0.07294272 -0.04911935 -0.03701833 -0.02969904 -0.02479556 -0.0212815\n", + " -0.71194371 -0.65723685 -0.5897386 -0.50715777 -0.40782648 -0.29161723\n", + " -0.16095117 -0.0212815 -0.99996515 -0.99994785 -0.99991356 -0.99982975\n", + " -0.99952172 -0.99545817 -0.99767076 -0.97241732 -0.92481134 -0.86396182\n", + " -0.79833456 -0.73379594 -0.29977727 -0.0892129 -0.05215778 -0.03683652\n", + " -0.02846988 -0.02319957 -0.68968657 -0.61434502 -0.51747338 -0.39570528\n", + " -0.24892141 -0.08286212 -0.99996924 -0.99996924 -0.02177659 -0.02177659\n", + " -0.99736218 -0.96891795 -0.91603668 -0.84975082 -0.77974951 -0.71225894\n", + " -0.99606031 -0.95452584 -0.88150969 -0.79657056 -0.71341443 -0.63844342\n", + " -0.99349457 -0.92779465 -0.82322292 -0.71523799 -0.62025773 -0.54160017\n", + " -0.98730506 -0.87087125 -0.71854445 -0.58917597 -0.49085898 -0.41718848\n", + " -0.96549986 -0.72638015 -0.52464293 -0.39884995 -0.31855562 -0.26409298\n", + " -0.76809376 -0.32352912 -0.19552639 -0.13933979 -0.10808594 -0.08823861]\n", + " [-12.895377 24.075011 ]\n", + " [-18.271377 24.075011 ]\n", + " [-23.647377 24.075011 ]\n", + " [-29.023377 24.075011 ]\n", + " [ -2.143377 18.699011 ]\n", + " [ -7.519377 18.699011 ]\n", + " [-12.895377 18.699011 ]\n", + " [-18.271377 18.699011 ]\n", + " [-23.647377 18.699011 ]\n", + " [-29.023377 18.699011 ]\n", + " [ -2.143377 13.323011 ]\n", + " [ -7.519377 13.323011 ]\n", + " [-12.895377 13.323011 ]\n", + " [-18.271377 13.323011 ]\n", + " [-23.647377 13.323011 ]\n", + " [-29.023377 13.323011 ]\n", + " [ -2.143377 7.947011 ]\n", + " [ -7.519377 7.947011 ]\n", + " [-12.895377 7.947011 ]\n", + " [-18.271377 7.947011 ]\n", + " [-23.647377 7.947011 ]\n", + " [-29.023377 7.947011 ]\n", + " [ -2.143377 2.571011 ]\n", + " [ -7.519377 2.571011 ]\n", + " [-12.895377 2.571011 ]\n", + " [-18.271377 2.571011 ]\n", + " [-23.647377 2.571011 ]\n", + " [-29.023377 2.57[ -7.53456 24.247648 ]\n", + " [-12.91056 24.247648 ]\n", + " [-18.28656 24.247648 ]\n", + " [-23.66256 24.247648 ]\n", + " [-29.03856 24.247648 ]\n", + " [ -2.15856 18.871648 ]\n", + " [ -7.53456 18.871648 ]\n", + " [-12.91056 18.871648 ]\n", + " [-18.28656 18.871648 ]\n", + " [-23.66256 18.871648 ]\n", + " [-29.03856 18.871648 ]\n", + " [ -2.15856 13.495648 ]\n", + " [ -7.53456 13.495648 ]\n", + " [-12.91056 13.495648 ]\n", + " [-18.28656 13.495648 ]\n", + " [-23.66256 13.495648 ]\n", + " [-29.03856 13.495648 ]\n", + " [ -2.15856 8.119648 ]\n", + " [ -7.53456 8.119648 ]\n", + " [-12.91056 8.119648 ]\n", + " [-18.28656 8.119648 ]\n", + " [-23.66256 8.119648 ]\n", + " [-29.03856 8.119648 ]\n", + " [ -2.15856 2.743648 ]\n", + " [ -7.53456 2.743648 ]\n", + " [-12.91056 2.743648 ]\n", + " [-18.28656 2.743648 ]\n", + " [-23.66256 2.743648 ]\n", + " [-29.03856 2.743648 ]]\n", + " [ 12.9013402 -24.28239637]\n", + " [ 18.27734016 -24.28300288]\n", + " [ 23.65334013 -24.28360939]\n", + " [ 29.02934009 -24.2842159 ]\n", + " [ 2.14994678 -18.90518338]\n", + " [ 7.52594674 -18.90578989]\n", + " [ 12.90194671 -18.9063964 ]\n", + " [ 18.27794667 -18.90700292]\n", + " [ 23.65394664 -18.90760943]\n", + " [ 29.0299466 -18.90821593]\n", + " [ 2.15055329 -13.52918342]\n", + " [ 7.52655325 -13.52978993]\n", + " [ 12.90255322 -13.53039644]\n", + " [ 18.27855318 -13.53100295]\n", + " [ 23.65455315 -13.53160946]\n", + " [ 29.03055312 -13.53221597]\n", + " [ 2.1511598 -8.15318346]\n", + " [ 7.52715976 -8.15378996]\n", + " [ 12.90315973 -8.15439647]\n", + " [ 18.27915969 -8.15500298]\n", + " [ 23.65515966 -8.15560949]\n", + " [ 29.03115962 -8.156216 ]\n", + " [ 2.1517663 -2.77718348]\n", + " [ 7.52776627 -2.77779 ]\n", + " [ 12.90376624 -2.77839651]\n", + " [ 18.2797662 -2.77900302]\n", + " [ 23.65576617 -2.77960953]\n", + " [ 29.03176613 -2.78021604]]\n", + " 24.138121 ]\n", + " [ -0.187993 18.76212101]\n", + " [ -0.187993 13.386121 ]\n", + " [ -0.187993 8.010121 ]\n", + " [ -0.187993 2.634121 ]\n", + " [ -2.085493 31.411621 ]\n", + " [ -7.461493 31.411621 ]\n", + " [-12.837493 31.411621 ]\n", + " [-18.213493 31.411621 ]\n", + " [-23.589493 31.411621 ]\n", + " [-28.965493 31.411621 ]\n", + " [ -2.085493 0.736621 ]\n", + " [ -7.46149-0.82567874 -0.72846169 -0.55256029 -0.25394179\n", + " -0.96666577 -0.95194756 -0.92535864 -0.87107074 -0.74171607 -0.40123831\n", + " -0.99614527 -0.99433151 -0.99086162 -0.98290647 -0.95774678 -0.79700819]\n", + "3 0.736621 ]\n", + " [-12.837493 0.736621 ]\n", + " [-18.213493 0.736621 ]\n", + " [-23.58949299 0.736621 ]\n", + " [-28.965493 0.736621 ]\n", + " [-30.862993 29.514121 ]\n", + " [-30.862993 24.138121 ]\n", + " [-30.862993 18.762121 ]\n", + " [-30.862993 13.386121 ]\n", + " [-30.862993 8.010121 ]\n", + " [-30.862993 2.634121 ]\n", + " [ -0.187993 31.411621 ]\n", + " [ -0.187993 31.411621 ]\n", + " [-30.862993 0.736621 ]\n", + " [-30.862993 0.736621 ]\n", + " [ -2.085493 29.514121 ]\n", + " [ -7.461493 29.514121 ]\n", + " [-12.837493 29.514121 ]\n", + " [-18.213493 29.514121 ]\n", + " [-23.589493 29.514121 ]\n", + " [-28.965493 29.514121 ]\n", + " [ -2.085493 24.138121 ]\n", + " [ -7.461493 24.138121 ]\n", + " [-12.837493 24.138121 ]\n", + " [-18.213493 24.138121 ]\n", + " [-23.589493 24.138121 ]\n", + " [-28.965493 24.138121 ]\n", + " [ -2.085493 18.762121 ]\n", + " [ -7.461493 18.762121 ]\n", + " [-12.837493 18.762121 ]\n", + " [-18.213493 18.762121 ]\n", + " [-23.589493 18.762121 ]\n", + " [-28.965493 18.762121 ]\n", + " [ -2.085493 13.386121 ]\n", + " [ -7.461493 13.386121 ]\n", + " [-12.837493 13.386121 ]\n", + " [-18.213493 13.386121 ]\n", + " [-23.589493 13.386121 ]\n", + " [-28.965493 13.386121 ]\n", + " [ -2.085493 8.010121 ]\n", + " [ -7.461493 8.010121 ]\n", + " [-12.837493 8.010121 ]\n", + " [-18.213493 8.010121 ]\n", + " [-23.589493 8.010121 ]\n", + " [-28.965493 8.010121 ]\n", + " [ -2.085493 2.634121 ]\n", + " [ -7.461493 2.634121 ]\n", + " [-12.837493 2.634121 ]\n", + " [-18.213493 2.634121 ]\n", + " [-23.589493 2.634121 ]\n", + " [-28.965493 2.634121 ]]\n", + "1011 ]]\n", + "DEBUG:root:radec2pix: xyfp Shape: (96, 2)\n", + "23 -0.41016118 0.88430001]\n", + " [ 0.22311723 -0.41016118 0.88430001]\n", + " [ 0.09382254 -0.63052461 0.7704778 ]\n", + " [ 0.09382254 -0.63052461 0.7704778 ]\n", + " [ 0.21631508 -0.42341167 0.87973311]\n", + " [ 0.18468331 -0.43441518 0.88157559]\n", + " [ 0.15215807 -0.4453336 0.88234115]\n", + " [ 0.11892515 -0.45604813 0.8819733 ]\n", + " [ 0.08517323 -0.46645735 0.88043345]\n", + " [ 0.05109538 -0.47647532 0.87770185]\n", + " [ 0.22779237 -0.45038755 0.86328541]\n", + " [ 0.19595193 -0.46186873 0.86503186]\n", + " [ 0.16319458 -0.47318773 0.8657141 ]\n", + " [ 0.12970403 -0.48422786 0.86527467]\n", + " [ 0.09566818 -0.49488895 0.86367386]\n", + " [ 0.06128091 -0.5050854 0.86089105]\n", + " [ 0.23907582 -0.47751858 0.84546955]\n", + " [ 0.20709052 -0.48943213 0.84709486]\n", + " [ 0.1741648 -0.50111342 0.84767444]\n", + " [ 0.14048017 -0.51244713 0.84715008]\n", + " [ 0.10622381 -0.52333343 0.8454813 ]\n", + " [ 0.07159051 -0.5336862 0.84264692]\n", + " [ 0.25009965 -0.50459486 0.82633782]\n", + " [ 0.21803253 -0.51689795 0.82781539]\n", + " [ 0.18500189 -0.52890523 0.82827143]\n", + " [ 0.15118723 -0.54050179 0.82764741]\n", + " [ 0.11677503 -0.55158719 0.82590264]\n", + " [ 0.08196085 -0.56207407 0.82301589]\n", + " [ 0.26079836 -0.53142259 0.80596169]\n", + " [ 0.22871128 -0.54407342 0.80726406]\n", + " [ 0.19563871 -0.55637072 0.80757484]\n", + " [ 0.16175849 -0.56819911 0.80683577]\n", + " [ 0.12725638 -0.5794568 0.8050066 ]\n", + " [ 0.09232835 -0.59005482 0.80206657]\n", + " [ 0.27110764 -0.55782224 0.78443291]\n", + " [ 0.23906121 -0.57077849 0.78553271]\n", + " [ 0.20600904 -0.58332867 0.78567674]\n", + " [ 0.17212778 -0.59535632 0.78480754]\n", + " [ 0.1376025 -0.60675798 0.78288588]\n", + " [ 0.10262909 -0.61744294 0.77989197]]\n", + " 5.84357143e+02]\n", + " [ 2.00250000e+03 8.76785714e+02]\n", + " [ 2.00250000e+03 1.16921429e+03]\n", + " [ 2.00250000e+03 1.46164286e+03]\n", + " [ 2.00250000e+03 1.75407143e+03]\n", + " [ 2.00250000e+03 2.04650000e+03]\n", + " [-4.35000000e+01 1.27000000e+02]\n", + " [-4.35000000e+01 4.85400000e+02]\n", + " [-4.35000000e+01 8.43800000e+02]\n", + " [-4.35000000e+01 1.20220000e+03]\n", + " [-4.35000000e+01 1.56060000e+03]\n", + " [-4.35000000e+01 1.91900000e+03]\n", + " [ 8.30000000e+01 4.99999720e-01]\n", + " [ 4.41400000e+02 4.99999983e-01]\n", + " [ 7.99800000e+02 4.99999771e-01]\n", + " [ 1.15820000e+03 4.99999773e-01]\n", + " [ 1.51660000e+03 5.00000075e-01]\n", + " [ 1.87500000e+03 4.99999913e-01]\n", + " [ 8.29999998e+01 2.04550000e+03]\n", + " [ 4.41400000e+02 2.04550000e+03]\n", + " [ 7.99800000e+02 2.04550000e+03]\n", + " [ 1.15820000e+03 2.04550000e+03]\n", + " [ 1.51660000e+03 2.04550000e+03]\n", + " [ 1.87500000e+03 2.04550000e+03]\n", + " [ 2.00150000e+03 1.27000000e+02]\n", + " [ 2.00150000e+03 4.85400000e+02]\n", + " [ 2.00150000e+03 8.43800000e+02]\n", + " [ 2.00150000e+03 1.20220000e+03]\n", + " [ 2.00150000e+03 1.56060000e+03]\n", + " [ 2.00150000e+03 1.91900000e+03]\n", + " [-4.35000000e+01 4.99999930e-01]\n", + " [-4.35000000e+01 4.99999930e-01]\n", + " [ 2.00150000e+03 2.04550000e+03]\n", + " [ 2.00150000e+03 2.04550000e+03]\n", + " [ 8.30000000e+01 1.27000000e+02]\n", + " [ 4.41400000e+02 1.27000000e+02]\n", + " [ 7.99800000e+02 1.27000000e+02]\n", + " [ 1.15820000e+03 1.27000000e+02]\n", + " [ 1.51660000e+03 1.27000000e+02]\n", + " [ 1.87500000e+03 1.27000000e+02]\n", + " [ 8.30000000e+01 4.85400000e+02]\n", + " [ 4.41400000e+02 4.85400000e+02]\n", + " [ 7.99800000e+02 4.85400000e+02]\n", + " [ 1.15820000e+03 4.85400000e+02]\n", + " [ 1.51660000e+03 4.85400000e+02]\n", + " [ 1.87500000e+03 4.85400000e+02]\n", + " [ 8.30000000e+01 8.43800000e+02]\n", + " [ 4.41400000e+02 8.43800000e+02]\n", + " [ 7.99800000e+02 8.43800000e+02]\n", + " [ 1.15820000e+03 8.43800000e+02]\n", + " [DEBUG:root:make_az_asym: xyp: shape: (96, 2)\n", + " 1.51660000e+03 8.43800000e+02]\n", + " [ 1.87500000e+03 8.43800000e+02]\n", + " [ 8.30000000e+01 1.20220000e+03]\n", + " [ 4.41400000e+02 1.20220000e+03]\n", + " [ 7.99800000e+02 1.20220000e+03]\n", + " [ 1.15820000e+03 1.20220000e+03]\n", + " [ 1.51660000e+03 1.20220000e+03]\n", + " [ 1.87500000e+03 1.20220000e+03]\n", + " [ 8.30000000e+01 1.56060000e+03]\n", + " [ 4.41400000e+02 1.56060000e+03]\n", + " [ 7.99800000e+02 1.56060000e+03]\n", + " [ 1.15820000e+03 1.56060000e+03]\n", + " [ 1.51660000e+03 1.56060000e+03]\n", + " [ 1.87500000e+03 1.56060000e+03]\n", + " [ 8.30000000e+01 1.91900000e+03]\n", + " [ 4.41400000e+02 1.91900000e+03]\n", + " [ 7.99800000e+02 1.91900000e+03]\n", + " [ 1.15820000e+03 1.91900000e+03]\n", + " [ 1.51660000e+03 1.91900000e+03]\n", + " [ 1.87500000e+03 1.91900000e+03]]\n", + "DEBUG:root:optics_fp: sphi: [-0.69769794 -0.64235507 -0.57476766 -0.49298514 -0.3957089 -0.2830686\n", + " -0.15742033 -0.02367621 -0.69769794 -0.74794907 -0.80074179 -0.85419896\n", + " -0.90526286 -0.94964993 -0.98232909 -0.99869566 -0.02367621 -0.02736175\n", + " -0.03241859 -0.03978624 -0.05151501 -0.07309024 -0.12571151 -0.42571889\n", + " -0.99869566 -0.99823823 -0.9974915 -0.99614906 -0.99336052 -0.98598731\n", + " -0.95418866 -0.42571889 -0.67511001 -0.59931613 -0.50314502 -0.38390211\n", + " -0.24191766 -0.08261364 -0.71905021 -0.78254183 -0.84810727 -0.91061956\n", + " -0.96223874 -0.99379078 -0.02564534 -0.03110765 -0.0395524 -0.05433448\n", + " -0.08682898 -0.21460065 -0.99849345 -0.99774863 -0.99628049 -0.99273464\n", + " -0.98014573 -0.8538262 -0.69769342 -0.69769342 -0.42932191 -0.42932191\n", + " -0.69708495 -0.76318092 -0.83275412 -0.90048226 -0.95754529 -0.99297505\n", + " -0.62248778 -0.69484721 -0.77604065 -0.86112562 -0.93845597 -0.98955174\n", + " -0.52603734 -0.60069232 -0.69134517 -0.7964549 -0.90385712 -0.98288677\n", + " -0.40403745 -0.47277862 -0.5641406 -0.68508654 -0.83347293 -0.9672195\n", + " -0.25604158 -0.30626107 -0.37909286 -0.49115758 -0.670714 -0.9159737\n", + " -0.08771884 -0.10632422 -0.13488237 -0.1841056 -0.28761277 -0.6039685 ]\n", + "DEBUG:root:radec2pix: curVec Shape: (96, 3)\n", + "DEBUG:root:radec2DEBUG:root:radec2pix: ccdpx: [[-4.45000000e+01 -5.00000251e-01]\n", + " [-4.45000000e+01 2.91928572e+02]\n", + " [-4.45000000e+01 5.84357143e+02]\n", + " [-4.45000000e+01 8.76785714e+02]\n", + " [-4.45000000e+01 1.16921429e+03]\n", + " [-4.45000000e+01 1.46164286e+03]\n", + " [-4.45000000e+01 1.75407143e+03]\n", + " [-4.45000000e+01 2.04650000e+03]\n", + " [-4.45000000e+01 -5.00000251e-01]\n", + " [ 2.47928571e+02 -5.00000137e-01]\n", + " [ 5.40357143e+02 -5.00000030e-01]\n", + " [ 8.32785714e+02 -4.99999965e-01]\n", + " [ 1.12521429e+03 -4.99999941e-01]\n", + " [ 1.41764286e+03 -5.00000178e-01]\n", + " [ 1.71007143e+03 -4.99999847e-01]\n", + " [ 2.00250000e+03 -5.00000219e-01]\n", + " [-4.45000000e+01 2.04650000e+03]\n", + " [ 2.47928571e+02 2.04650000e+03]\n", + " [ 5.40357143e+02 2.04650000e+03]\n", + " [ 8.32785714e+02 2.04650000e+03]\n", + " [ 1.12521429e+03 2.04650000e+03]\n", + " [ 1.41764286e+03 2.04650000e+03]\n", + " [ 1.71007143e+03 2.04650000e+03]\n", + " [ 2.00250000e+03 2.04650000e+03]\n", + " [ 2.00250000e+03 -5.00000219e-01]\n", + " [ 2.00250000e+03 2.91928572e+02]\n", + " [ 2.00250000e+03 5.84357143e+02]\n", + " [ 2.00250000e+03 8.76785714e+02]\n", + " [ 2.00250000e+03 1.16921429e+03]\n", + " [ 2.00250000e+03 1.46164286e+03]\n", + " [ 2.00250000e+03 1.75407143e+03]\n", + " [ 2.00250000e+03 2.04650000e+03]\n", + " [-4.35000000e+01 1.27000000e+02]\n", + " [-4.35000000e+01 4.85400000e+02]\n", + " [-4.35000000e+01 8.43800000e+02]\n", + " [-4.35000000e+01 1.20220000e+03]\n", + " [-4.35000000e+01 1.56060000e+03]\n", + " [-4.35000000e+01 1.91900000e+03]\n", + " [ 8.30000000e+01 4.99999716e-01]\n", + " [ 4.41400000e+02 4.99999791e-01]\n", + " [ 7.99800000e+02 5.00000291e-01]\n", + " [ 1.15820000e+03 5.00000004e-01]\n", + " [ 1.51660000e+03 5.00000077e-01]\n", + " [ 1.87500000e+03 4.99999846e-01]\n", + " [ 8.30000001e+01 2.04550000e+03]\n", + " [ 4.41400000e+02 2.04550000e+03]\n", + " [ 7.99800000e+02 2.04550000e+03]\n", + " [ 1.15820000e+03 2.04550000e+03]\n", + " [ 1.51660000e+03 2.04550000e+03]\n", + " [ 1.87500000e+03 2.04550000e+03]\n", + " [ 2.00150000e+03 1.27000000e+02]\n", + " [ 2.00150000e+03 4.85400000e+02]\n", + " [ 2.00150000e+03 8.43800000e+02]\n", + " [ 2.00150000e+03 1.20220000e+03]\n", + " [ 2.00150000e+03 1.56060000e+03]\n", + " [ 2.00150000e+03 1.91900000e+03]\n", + " [-4.35000000e+01 4.99999735e-01]\n", + " [-4.35000000e+01 4.99999735e-01]\n", + " [ 2.00150000e+03 2.04550000e+03]\n", + " [ 2.00150000e+03 2.04550000e+03]\n", + " [ 8.30000000e+01 1.27000000e+02]\n", + " [ 4.41400000e+02 1.27000000e+02]\n", + " [ 7.99800000e+02 1.27000000e+02]\n", + " [ 1.15820000e+03 1.27000000e+02]\n", + " [ 1.51660000e+03 1.27000000e+02]\n", + " [ 1.87500000e+03 1.27000000e+02]\n", + " [ 8.30000000e+01 4.85400000e+02]\n", + " [ 4.41400000e+02 4.85400000e+02]\n", + " [ 7.99800000e+02 4.85400000e+02]\n", + " [ 1.15820000e+03 4.85400000e+02]\n", + " [ 1.51660000e+03 4.85400000e+02]\n", + " [ 1.87500000e+03 4.85400000e+02]\n", + " [ 8.30000000e+01 8.43800000e+02]\n", + " [ 4.41400000e+02 8.43800000e+02]\n", + " [ 7.99800000e+02 8.43800000e+02]\n", + " [ 1.15820000e+03 8.43800000e+02]\n", + " [ 1.51660000e+03 8.43800000e+02]\n", + " [ 1.87500000e+03 8.43800000e+02]\n", + " [ 8.30000000e+01 1.20220000e+03]\n", + " [ 4.41400000e+02 1.20220000e+03]\n", + " [ 7.99800000e+02 1.20220000e+03]\n", + " [ 1.15820000e+03 1.20220000e+03]\n", + " [ 1.51660000e+03 1.20220000e+03]\n", + " [ 1.87500000e+03 1.20220000e+03]\n", + " [ 8.30000000e+01 1.56060000e+DEBUG:root:optics_fp: xyfp: [[ -0.230877 31.363511 ]\n", + " [ -0.230877 26.97708243]\n", + " [ -0.230877 22.59065386]\n", + " [ -0.230877 18.20422528]\n", + " [ -0.230877 13.81779671]\n", + " [ -0.230877 9.43136815]\n", + " [ -0.230877 5.04493957]\n", + " [ -0.230877 0.658511 ]\n", + " [ -0.230877 31.363511 ]\n", + " [ -4.61730557 31.363511 ]\n", + " [ -9.00373414 31.363511 ]\n", + " [-13.39016272 31.363511 ]\n", + " [-17.77659129 31.363511 ]\n", + " [-22.16301986 31.363511 ]\n", + " [-26.54944843 31.363511 ]\n", + " [-30.935877 31.363511 ]\n", + " [ -0.230877 0.658511 ]\n", + " [ -4.61730558 0.658511 ]\n", + " [ -9.00373414 0.658511 ]\n", + " [-13.39016271 0.658511 ]\n", + " [-17.77659128 0.658511 ]\n", + " [-22.16301986 0.658511 ]\n", + " [-26.54944843 0.658511 ]\n", + " [-30.935877 0.658511 ]\n", + " [-30.935877 31.363511 ]\n", + " [-30.935877 26.97708243]\n", + " [-30.935877 22.59065386]\n", + " [-30.935877 18.20422528]\n", + " [-30.935877 13.81779671]\n", + " [-30.935877 9.43136814]\n", + " [-30.935877 5.04493957]\n", + " [-30.935877 0.658511 ]\n", + " [ -0.245877 29.451011 ]\n", + " [ -0.245877 pix: camVec: [[-0.00174024 -0.00176337 -0.00178449 -0.00180353 -0.00182039 -0.001835\n", + " -0.00184725 -0.00185707 -0.00174024 -0.0307605 -0.05966066 -0.08832819\n", + " -0.11665151 -0.14451993 -0.17182299 -0.19844965 -0.00185707 -0.03187835\n", + " -0.06177226 -0.09142104 -0.12071058 -0.14953103 -0.1777762 -0.20534186\n", + " -0.19844965 -0.20021951 -0.20172864 -0.20297731 -0.20396466 -0.20468905\n", + " -0.20514862 -0.20534186 -0.00185028 -0.00187827 -0.00190298 -0.00192425\n", + " -0.00194192 -0.00195581 -0.0144012 -0.04990298 -0.08511243 -0.11982373\n", + " -0.15383302 -0.18693675 -0.01495442 -0.05167778 -0.08809246 -0.12398684\n", + " -0.15915858 -0.19341315 -0.19916328 -0.201156 -0.20275765 -0.20396715\n", + " -0.20478152 -0.20519745 -0.00183964 -0.00183964 -0.20524866 -0.20524866\n", + " -0.01446124 -0.05010266 -0.08545073 -0.12029942 -0.1544452 -0.18768535\n", + " -0.01461361 -0.05060625 -0.08630213 -0.12149421 -0.15597972 -0.18955833\n", + " -0.01473929 -0.05101673 -0.08699359 -0.12246151 -0.1572181 -0.19106523\n", + " -0.01483744 -0.0513315 -0.08752139 -0.12319735 -0.15815714 -0.19220433\n", + " -0.01490708 -0.05154747 -0.08788092 -0.1236965 -0.15879197 -0.19297207\n", + " -0.01494734 -0.05166195 -0.08806808 -0.12395417 -0.15911791 -0.19336467]\n", + " [ 0.20894107 0.18147259 0.15331081 0.12455987 0.09532558 0.06571725\n", + " 0.03584843 0.00583647 0.20894107 0.20879621 0.2083801 0.20769404\n", + " 0.20673975 0.20551876 0.20403188 0.20227886 0.00583647 0.00584019\n", + " 0.00583613 0.00582438 0.00580507 0.00577839 0.00574449 0.00570348\n", + " 0.20227886 0.17571613 0.1484622 0.12062809 0.09232414 0.06366093\n", + " 0.03474987 0.00570348 0.1970566 0.16291184 0.12782912 0.09200243\n", + " 0.05563309 0.01893178 0.2088187 0.20845876 0.20769278 0.20652378\n", + " 0.20495452 0.20298606 0.00594178 0.00594091 0.00592823 0.00590399\n", + " 0.0058685 0.00582205 0.19079562 0.1577603 0.12379719 0.08910965\n", + " 0.05390131 0.01837776 0.20884841 0.20884841 0.00580307 0.00580307\n", + " 0.19702878 0.19668974 0.19596793 0.19486681 0.19338978 0.1915385\n", + " 0.16288937 0.16260994 0.16201386 0.16110551 0.1598896 0.15836938\n", + " 0.12781212 0.12759366 0.12712576 0.126413 0.12546054 0.12427244\n", + " 0.09199108 0.09183551 0.0914995 0.09098698 0.09030259 0.0894502\n", + " 0.05562756 0.05553685 0.05533649 0.05502916 0.05461804 0.05410588\n", + " 0.0189322 0.01890777 0.01884587 0.01874743 0.01861357 0.01844527]\n", + " [ 0.97792668 0.98339442 0.98817641 0.99221045 0.99544448 0.9978366\n", + " 0.99935553 0.99998124 0.97792668 0.97747528 0.97622658 0.97419778\n", + " 0.97141706 0.96792357 0.96376753 0.95901043 0.99998124 0.99947469\n", + " 0.99807321 0.9957953 0.99267077 0.98874015 0.98405418 0.97867369\n", + " 0.95901043 0.96386513 0.96812423 0.97172479 0.97461514 0.97675467\n", + " 0.97811374 0.97867369 0.98039037 0.98663884 0.99179438 0.99575692\n", + " 0.99844939 0.99981886 0.97784833 0.97675721 0.97448427 0.97107683\n", + " 0.96660698 0.96117184 0.99987052 0.99864614 0.99609466 0.9922663\n", + " 0.98723559 0.98110013 0.96DEBUG:root:radec2pix: ccdpx: [[-4.45000000e+01 -5.00000261e-01]\n", + " [-4.45000000e+01 2.91928571e+02]\n", + " [-4.45000000e+01 5.84357143e+02]\n", + " [-4.45000000e+01 8.76785715e+02]\n", + " [-4.45000000e+01 1.16921429e+03]\n", + " [-4.45000000e+01 1.46164286e+03]\n", + " [-4.45000000e+01 1.75407143e+03]\n", + " [-4.44999999e+01 2.04650000e+03]\n", + " [-4.45000000e+01 -5.00000261e-01]\n", + " [ 2.47928571e+02 -5.00000125e-01]\n", + " [ 5.40357143e+02 -4.99999959e-01]\n", + " [ 8.32785714e+02 -5.00000265e-01]\n", + " [ 1.12521429e+03 -4.99999989e-01]\n", + " [ 1.41764286e+03 -4.99999804e-01]\n", + " [ 1.71007143e+03 -4.99999857e-01]\n", + " [ 2.00250000e+03 -5.00000247e-01]\n", + " [-4.44999999e+01 2.04650000e+03]\n", + " [ 2.47928572e+02 2.04650000e+03]\n", + " [ 5.40357143e+02 2.04650000e+03]\n", + " [ 8.32785714e+02 2.04650000e+03]\n", + " [ 1.12521429e+03 2.04650000e+03]\n", + " [ 1.41764286e+03 2.04650000e+03]\n", + " [ 1.71007143e+03 2.04650000e+03]\n", + " [ 2.00250000e+03 2.04650000e+03]\n", + " [ 2.00250000e+03 -5.00000247e-01]\n", + " [ 2.00250000e+03 2.91928571e+02]\n", + " [ 2.00250000e+03 5.84357143e+02]\n", + " [ 2.00250000e+03 8.76785 24.075011 ]\n", + " [ -0.245877 18.699011 ]\n", + " [ -0.245877 13.323011 ]\n", + " [ -0.245877 7.947011 ]\n", + " [ -0.245877 2.571011 ]\n", + " [ -2.143377 31.348511 ]\n", + " [ -7.519377 31.348511 ]\n", + " [-12.895377 31.348511 ]\n", + " [-18.271377 31.348511 ]\n", + " [-23.647377 31.348511 ]\n", + " [-29.023377 31.348511 ]\n", + " [ -2.143377 0.673511 ]\n", + " [ -7.519377 0.673511 ]\n", + " [-12.895377 0.673511 ]\n", + " [-18.271377 0.673511 ]\n", + " [-23.64737701 0.673511 ]\n", + " [-29.023377 0.673511 ]\n", + " [-30.920877 29.451011 ]\n", + " [-30.920877 24.075011 ]\n", + " [-30.920877 18.699011 ]\n", + " [-30.920877 13.323011 ]\n", + " [-30.920877 7.947011 ]\n", + " [-30.920877 2.571011 ]\n", + " [ -0.245877 31.348511 ]\n", + " [ -0.245877 31.348511 ]\n", + " [-30.920877 0.673511 ]\n", + " [-30.920877 0.673511 ]\n", + " [ -2.143377 29.451011 ]\n", + " [ -7.519377 29.451011 ]\n", + " [-12.895377 29.451011 ]\n", + " [-18.271377 29.451011 ]\n", + " [-23.647377 29.451011 ]\n", + " [-29.023377 29.451011 ]\n", + " [ -2.143377 24.075011 ]\n", + " [ -7.519377 24.075011 ]\n", + "714e+02]\n", + " [ 2.00250000e+03 1.16921429e+03]\n", + " [ 2.00250000e+03 1.46164286e+03]\n", + " [ 2.00250000e+03 1.75407143e+03]\n", + " [ 2.00250000e+03 2.04650000e+03]\n", + " [-4.35000000e+01 1.27000000e+02]\n", + " [-4.35000000e+01 4.85400000e+02]\n", + " [-4.35000000e+01 8.43800000e+02]\n", + " [-4.35000000e+01 1.20220000e+03]\n", + " [-4.35000000e+01 1.56060000e+03]\n", + " [-4.35000000e+01 1.91900000e+03]\n", + " [ 8.30000000e+01 4.99999891e-01]\n", + " [ 4.41400000e+02 5.00000001e-01]\n", + " [ 7.99800000e+02 5.00000129e-01]\n", + " [ 1.15820000e+03 5.00000084e-01]\n", + " [ 1.51660000e+03 5.00000000e-01]\n", + " [ 1.87500000e+03 5.00000003e-01]\n", + " [ 8.30000000e+01 2.04550000e+03]\n", + " [ 4.41400000e+02 2.04550000e+03]\n", + " [ 7.99800000e+02 2.04550000e+03]\n", + " [ 1.15820000e+03 2.04550000e+03]\n", + " [ 1.51660000e+03 2.04550000e+03]\n", + " [ 1.87500000e+03 2.04550000e+03]\n", + " [ 2.00150000e+03 1.27000000e+02]\n", + " [ 2.00150000e+03 4.85400000e+02]\n", + " [ 2.00150000e+03 8.43800000e+02]\n", + " [ 2.00150000e+03 1.20220000e+03]\n", + " [ 2.00150000e+03 1.56060000e+03]\n", + " [ 2.00150000e+03 1.91900000e+03]\n", + " [-4.35000003]\n", + " [ 4.41400000e+02 1.56060000e+03]\n", + " [ 7.99800000e+02 1.56060000e+03]\n", + " [ 1.15820000e+03 1.56060000e+03]\n", + " [ 1.51660000e+03 1.56060000e+03]\n", + " [ 1.87500000e+03 1.56060000e+03]\n", + " [ 8.30000002e+01 1.91900000e+03]\n", + " [ 4.41400000e+02 1.91900000e+03]\n", + " [ 7.99800000e+02 1.91900000e+03]\n", + " [ 1.15820000e+03 1.91900000e+03]\n", + " [ 1.51660000e+03 1.91900000e+03]\n", + " [ 1.87500000e+03 1.91900000e+03]]\n", + "DEBUG:root:radec2pix: xyfp: [[ -0.172993 31.426621 ]\n", + " [ -0.172993 27.04019243]\n", + " [ -0.172993 22.65376385]\n", + " [ -0.172993 18.26733528]\n", + " [ -0.172993 13.88090671]\n", + " [ -0.172993 9.49447814]\n", + " [ -0.172993 5.10804957]\n", + " [ -0.172993 0.721621 ]\n", + " [ -0.172993 31.426621 ]\n", + " [ -4.55942157 31.426621 ]\n", + " [ -8.94585014 31.426621 ]\n", + " [-13.33227871 31.426621 ]\n", + " [-17.71870729 31.426621 ]\n", + " [-22.10513586 31.426621 ]\n", + " [-26.49156443 31.426621 ]\n", + " [-30.877993 31.426621 ]\n", + " [ -0.172993 0.721621 ]\n", + " [ -4.55942157 0.721621 ]\n", + " [ -8.94585014 0.721621 ]\n", + " [-13.33227872 0.721621 ]\n", + " [-17.71870728 0.721621 ]\n", + " [-22.10513586 0.721621 ]\n", + " [-26.49156443 0.721621 ]\n", + " [-30.877993 0.721621 ]\n", + " [-30.877993 31.426621 ]\n", + " [-30.877993 27.04019243]\n", + " [-30.877993 22.65376385]\n", + " [-30.877993 18.26733529]\n", + " [-30.877993 13.88090671]\n", + " [-30.877993 9.49447814]\n", + " [-30.877993 5.10804957]\n", + " [-30.877993 0.721621 ]\n", + " [ -0.187993 29.514121 ]\n", + " [ -0.187993 24.138121 ]\n", + " [ -0.187993 18.76212101]\n", + " [ -0.187993 13.386121 ]\n", + " [ -0.187993 8.010121 ]\n", + " [ -0.187993 2.634121 ]\n", + " [ -2.085493 31.411621 ]\n", + " [ -7.461493 31.411621 ]\n", + " [-12.837493 31.411621 ]\n", + " [-18.213493 31.411621 ]\n", + " [-23.589493 31.411621 ]\n", + " [-28.965493 31.411621 ]\n", + " [ -2.085493 0.736621 ]\n", + " [ -7.461493 0.736621 ]\n", + " [-12.837493 0.736621 ]\n", + " [-18.213493 0.736621 ]\n", + " [-23.58949299 0.736621 ]\n", + " [-28.965493 0.736621 ]\n", + " [-30.862993 29.514121 ]\n", + " [-30.862993 24.138121 ]\n", + " [-30.862993 18.762121 ]\n", + " [-30.862993 13.386121 ]\n", + " [-30.862993 [-12.895377 24.075011 ]\n", + " [-18.271377 24.075011 ]\n", + " [-23.647377 24.075011 ]\n", + " [-29.023377 24.075011 ]\n", + " [ -2.143377 18.699011 ]\n", + " [ -7.519377 18.699011 ]\n", + " [-12.895377 18.699011 ]\n", + " [-18.271377 18.699011 ]\n", + " [-23.647377 18.699011 ]\n", + " [-29.023377 18.699011 ]\n", + " [ -2.143377 13.323011 ]\n", + " [ -7.519377 13.323011 ]\n", + " [-12.895377 13.323011 ]\n", + " [-18.271377 13.323011 ]\n", + " [-23.647377 13.323011 ]\n", + " [-29.023377 13.323011 ]\n", + " [ -2.143377 7.947011 ]\n", + " [ -7.519377 7.947011 ]\n", + " [-12.895377 7.947011 ]\n", + " [-18.271377 7.947011 ]\n", + " [-23.647377 7.947011 ]\n", + " [-29.023377 7.947011 ]\n", + " [ -2.143377 2.571011 ]\n", + " [ -7.519377 2.571011 ]\n", + " [-12.895377 2.571011 ]\n", + " [-18.271377 2.571011 ]\n", + " [-23.647377 2.571011 ]\n", + " [-29.023377 2.571011 ]]\n", + " 8.010121 ]\n", + " [-30.862993 2.634121 ]\n", + " [ -0.187993 31.411621 ]\n", + " [ -0.187993 31.411621 ]\n", + " [-30.862993 0.736621 ]\n", + " [-30.862993 0.736621 ]\n", + " [ -2.085493 29.514121 ]\n", + " [ -7.461493 29.514121 ]\n", + " [-12.837493 29.514121 ]\n", + " [-18.213493 29.514121 ]\n", + " [-23.589493 29.514121 ]\n", + " [-28.965493 29.514121 ]\n", + " [ -2.085493 24.138121 ]\n", + " [ -7.461493 24.138121 ]\n", + " [-12.837493 24.138121 ]\n", + " [-18.213493 24.138121 ]\n", + " [-23.589493 24.138121 ]\n", + " [-28.965493 24.138121 ]\n", + " [ -2.085493 18.762121 ]\n", + " [ -7.461493 18.762121 ]\n", + " [-12.837493 18.762121 ]\n", + " [-18.213493 18.762121 ]\n", + " [-23.589493 18.762121 ]\n", + " [-28.965493 18.762121 ]\n", + " [ -2.085493 13.386121 ]\n", + " [ -7.461493 13.386121 ]\n", + " [-12.837493 13.386121 ]\n", + " [-18.213493 13.386121 ]\n", + " [-23.589493 13.386121 ]\n", + " [-28.965493 13.386121 ]\n", + " [ -2.085493 8.010121 ]\n", + " [ -7.461493 8.010121 ]\n", + " [-12.837493 8.010121 ]\n", + " [-18.213493 8.010121 ]\n", + " [-23.589493 8.010121 ]\n", + " [-28.965493 8.010121 ]\n", + " [ -2.085493 2.634121 ]\n", + " [ -7.461493 2.634121 ]\n", + " [-12.837493 2.634121 ]\n", + " [-18.213493 2.634121 ]\n", + " [-23.589493 2.634121 ]\n", + " [-28.965493 2.634121 ]]\n", + "00e+01 4.99999945e-01]\n", + " [-4.35000000e+01 4.99999945e-01]\n", + " [ 2.00150000e+03 2.04550000e+03]\n", + " [ 2.00150000e+03 2.04550000e+03]\n", + " [ 8.30000000e+01 1.27000000e+02]\n", + " [ 4.41400000e+02 1.27000000e+02]\n", + " [ 7.99800000e+02 1.27000000e+02]\n", + " [ 1.15820000e+03 1.27000000e+02]\n", + " [ 1.51660000e+03 1.27000000e+02]\n", + " [ 1.87500000e+03 1.27000000e+02]\n", + " [ 8.30000000e+01 4.85400000e+02]\n", + " [ 4.41400000e+02 4.85400000e+02]\n", + " [ 7.99800000e+02 4.85400000e+02]\n", + " [ 1.15820000e+03 4.85400000e+02]\n", + " [ 1.51660000e+03 4.85400000e+02]\n", + " [ 1.87500000e+03 4.85400000e+02]\n", + " [ 8.30000000e+01 8.43800000e+02]\n", + " [ 4.41400000e+02 8.43800000e+02]\n", + " [ 7.99800000e+02 8.43800000e+02]\n", + " [ 1.15820000e+03 8.43800000e+02]\n", + " [ 1.51660000e+03 8.43800000e+02]\n", + " [ 1.87500000e+03 8.43800000e+02]\n", + " [ 8.30000000e+01 1.20220000e+03]\n", + " [ 4.41400000e+02 1.20220000e+03]\n", + " [ 7.99800000e+02 1.20220000e+03]\n", + " [ 1.15820000e+03 1.20220000e+03]\n", + " [ 1.51660000e+03 1.20220000e+03]\n", + " [ 1.87500000e+03 1.20220000e+03]\n", + " [ 8.30000000e+DEBUG:root:radec2pix: xyfp Shape: (96, 2)\n", + "01 1.56060000e+03]\n", + " [ 4.41400000e+02 1.56060000e+03]\n", + " [ 7.99800000e+02 1.56060000e+03]\n", + " [ 1.15820000e+03 1.56060000e+03]\n", + " [ 1.51660000e+03 1.56060000e+03]\n", + " [ 1.87500000e+03 1.56060000e+03]\n", + " [ 8.29999998e+01 1.91900000e+03]\n", + " [ 4.41400000e+02 1.91900000e+03]\n", + " [ 7.99800000e+02 1.91900000e+03]\n", + " [ 1.15820000e+03 1.91900000e+03]\n", + " [ 1.51660000e+03 1.91900000e+03]\n", + " [ 1.87500000e+03 1.91900000e+03]]\n", + "DEBUG:root:mm_to_pix: fitpx: [[0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " DEBUG:root:radec2pix: camVec: [[-0.20650899 -0.20834684 -0.209912 -0.2112049 -0.21222492 -0.21297066\n", + " -0.21344048 -0.21363303 -0.20650899 -0.18010636 -0.15299311 -0.12528058\n", + " -0.09707928 -0.06849975 -0.03965325 -0.01065205 -0.21363303 -0.1862962\n", + " -0.15824793 -0.12959237 -0.10043485 -0.07088401 -0.04105265 -0.01105755\n", + " -0.01065205 -0.01075054 -0.01083605 -0.01090831 -0.01096697 -0.01101162\n", + " -0.0110419 -0.01105755 -0.20725456 -0.20932255 -0.21098167 -0.21223121\n", + " -0.21306867 -0.2134911 -0.19509826 -0.16224603 -0.12843717 -0.09387541\n", + " -0.05876435 -0.02330924 -0.20180806 -0.16781243 -0.13285166 -0.09711907\n", + " -0.06081473 -0.02414801 -0.01079628 -0.01090926 -0.01100231 -0.01107479\n", + " -0.01112598 -0.01115523 -0.20642679 -0.20642679 -0.01116024 -0.01116024\n", + " -0.19587779 -0.16288944 -0.12894461 -0.09424616 -0.05899718 -0.02340304\n", + " -0.19782623 -0.16450046 -0.13021766 -0.09517804 -0.05958347 -0.0236399\n", + " -0.19939086 -0.16579789 -0.13124607 -0.09593306 -0.06005988 -0.02383341\n", + " -0.20057035 -0.16677881 -0.13202594 -0.09650734 -0.06042346 -0.02398226\n", + " -0.20136156 -0.16743861 -0.13255205 -0.09689601 -0.0606707 -0.02408492\n", + " -0.20176105 -0.16777281 -0.13281959 -0.09709479 -0.06079851 -0.02414006]\n", + " [-0.20112017 -0.17462343 -0.14743759 -0.11967398 -0.09144325 -0.06285614\n", + " -0.0340241 -0.00505944 -0.20112017 -0.20295163 -0.20451753 -0.20581845\n", + " -0.20685386 -0.20762236 -0.2081222 -0.20835189 -0.00505944 -0.0050993\n", + " -0.00513287 -0.00516008 -0.00518078 -0.00519482 -0.00520206 -0.00520239\n", + " -0.20835189 -0.18087002 -0.15269708 -0.12393724 -0.09469638 -0.06508391\n", + " -0.03521344 -0.00520239 -0.18966571 -0.15671259 -0.12283514 -0.0882373\n", + " -0.053123 -0.01769778 -0.20186172 -0.20392662 -0.20559352 -0.20686189\n", + " -0.20772922 -0.20819238 -0.00517714 -0.00522278 -0.00525872 -0.00528472\n", + " -0.0053005 -0.00530579 -0.19646103 -0.1623014 -0.12720719 -0.09137251\n", + " -0.05499882 -0.01829695 -0.20103758 -0.20103758 -0.00530513 -0.00530513\n", + " -0.19044022 -0.19238166 -0.19395017 -0.19514465 -0.19596195 -0.19639843\n", + " -0.15734701 -0.15893973 -0.16022981 -0.16121459 -0.16188952 -0.16224993\n", + " -0.12332956 -0.12457282 -0.12558234 -0.12635458 -0.12688447 -0.12716713\n", + " -0.08859098 -0.08948154 -0.09020602 -0.09076095 -0.09114176 -0.09134421\n", + " -0.05333481 -0.05386844 -0.05430277 -0.0546353 -0.05486289 -0.05498267\n", + " -0.01776673 -0.01794001 -0.01808024 -0.01818657 -0.01825788 -0.01829321]\n", + " [ 0.95755142 0.96233999 0.96653976 0.97008795 0.97293305 0.97503467\n", + " 0.97636342 0.97690088 0.95755142 0.96248238 0.96683281 0.97053776\n", + " 0.97354358 0.97580774 0.97729871 0.97799592 0.97690088 0.98248039\n", + " 0.98738607 0.99155393 0.99493015 0.99747104 0.99914344 0.99992533\n", + " 0.97799592 0.98344825 0.98821363 0.9922301 0.99544579 0.99781904\n", + " 0.99931881 0.99992533 0.9597252 0.96520735 0.96974134 0.97322767\n", + " 0.97559197 0.97678469 0.95978566 0.96544816 0.97017277 0.97385603\n", + " 0.97641964 0.97781011 0.97941141 0.98580511 0.99112198 0.99525874\n", + " 0.998135 0.99969431 0.98045219 0.98668092 0.99181514 0.9957552\n", + " 0.99842443 0.99977036 0.95758648 0.95758648 0.99992365 0.99992365\n", + " 0.96195864 0.96770674 0.97250019 0.97623574 0.97883515 0.98024484\n", + " 0.96752607 0.97348742 0.97845274 0.98231919 0.98500842 0.98646648\n", + " 0.97212813 0.97826002 0.98336338 0.98733549 0.99009754 0.99159492\n", + " 0.9756655 0.9819256 0.98713324 0.99118554 0.99400311 0.99553056\n", + " 0.97806386 0.98440972 0.98968741 0.99379381 0.99664895 0.99819679\n", + " 0.97927362 0.98566244 0.99097531 0.99510896 0.99798306 0.9995412 ]]\n", + "121331 0.96677192 0.97137201 0.97491378\n", + " 0.97732245 0.97854804 0.9779463 0.9779463 0.97869265 0.97869265\n", + " 0.98029105 0.9791848 0.97688011 0.97342435 0.96888961 0.96337283\n", + " 0.98653611 0.98539181 0.98300735 0.97943054 0.97473363 0.9690133\n", + " 0.99168887 0.99051358 0.98806435 0.98438962 0.97956221 0.97367882\n", + " 0.99564928 0.99445026 0.99195154 0.9882023 0.98327604 0.97726975\n", + " 0.99DEBUG:root:radec2pix: camVec Shape: (3, 96)\n", + "83403 0.99712513 0.99459279 0.9907931 0.98580017 0.97971135\n", + " 0.99970903 0.99848562 0.99593617 0.99211083 0.9870841 0.98095356]]\n", + "DEBUG:root:radec2pix: camVec Shape: (3, 96)\n", + "DEBUG:root:radec2pix: fitpx: [[2135.5 4155.50000025]\n", + " [2135.5 3863.07142842]\n", + " [2135.5 3570.64285705]\n", + " [2135.5 3278.21428595]\n", + " [2135.50000001 2985.78571392]\n", + " [2135.5 2693.35714283]\n", + " [2135.49999998 2400.92857178]\n", + " [2135.49999997 2108.50000011]\n", + " [2135.5 4155.50000025]\n", + " [1843.07142855 4155.50000014]\n", + " [1550.64285713 4155.50000003]\n", + " [1258.21428573 4155.49999997]\n", + " [ 965.78571432 4155.49999994]\n", + " [ 673.35714273 4155.50000018]\n", + " [ 380.92857156 4155.49999985]\n", + " [ 88.49999978 4155.50000022]\n", + " [2135.49999997 2108.50000011]\n", + " [1843.07142854 2108.50000001]\n", + " [1550.64285742 2108.49999997]\n", + " [1258.21428585 2108.49999999]\n", + " [ 965.78571387 2108.50000002]\n", + " [ 673.35714329 2108.49999998]\n", + " [ 380.92857158 2108.5 ]\n", + " [ 88.4999998 2108.50000001]\n", + " [ 88.49999978 4155.50000022]\n", + " [ 88.50000021 3863.07142839]\n", + " [ 88.50000011 3570.64285706]\n", + " [ 88.50000015 3278.21428562]\n", + " [ 88.49999997 2985.7857143 ]\n", + " [ 88.49999979 2693.35714292]\n", + " [ 88.49999995 2400.92857144]\n", + " [ 88.4999998 2108.50000001]\n", + " [2134.5 4027.99999985]\n", + " [2134.5 3669.59999985]\n", + " [2134.49999999 3311.20000044]\n", + " [2134.5 2952.7999998 ]\n", + " [2134.5 2594.40000013]\n", + " [2134.50000001 2235.99999985]\n", + " [2007.99999998 4154.50000028]\n", + " [1649.59999995 4154.50000021]\n", + " [1291.20000012 4154.49999971]\n", + " [ 932.8 4154.5 ]\n", + " [ 574.40000006 4154.49999992]\n", + " [ 215.99999986 4154.50000015]\n", + " [2007.99999994 2109.50000002]\n", + " [1649.60000009 2109.49999999]\n", + " [1291.20000007 2109.5 ]\n", + " [ 932.80000034 2109.49999998]\n", + " [ 574.40000029 2109.49999999]\n", + " [ 216.00000015 2109.5 ]\n", + " [ 89.50000013 4027.99999988]\n", + " [ 89.50000024 3669.59999981]\n", + " [ 89.50000003 3311.19999998]\n", + " [ 89.49999973 2952.80000012]\n", + " [ 89.49999991 2594.40000002]\n", + " [ 89.50000029 2235.99999997]\n", + " [2134.5 4154.50000026]\n", + " [2134.5 4154.50000026]\n", + " [ 89.50000019 2109.49999999]\n", + " [ 89.50000019 2109.49999999]\n", + " [2008. 4027.99999998]\n", + " [1649.6 4027.99999999]\n", + " [1291.19999989 4028.00000025]\n", + " [ 932.79999995 4028.00000008]\n", + " [ 574.3999998 4028.00000025]\n", + " [ 215.99999992 4028.00000008]\n", + " [2008.00000001 3669.59999984]\n", + " [1649.60000007 3669.59999979]\n", + " [1291.19999996 3669.60000008]\n", + " [ 932.80000004 3669.59999994]\n", + " [ 574.39999995 3669.60000006]\n", + " [ 216.00000005 3669.59999995]\n", + " [2007.99999998 3311.2000002 ]\n", + " [1649.59999994 3311.20000015]\n", + " [1291.20000016 3311.19999976]\n", + " [ 932.80000015 3311.19999985]\n", + " [ 574.40000019 3311.19999985]\n", + " [ 216.00000023 3311.19999985]\n", + " [2007.99999995 2952.80000031]\n", + " [1649.60000003 2952.79999994]\n", + " [1291.19999981 2952.80000019]\n", + " [ 932.79999986 2952.8000001 ]\n", + " [ 574.39999987 2952.80000007]\n", + " [ 216.00000004 2952.79999998]\n", + " [2007.99999998 2594.40000008]\n", + " [1649.60000021 2594.39999977]\n", + " [1291.19999986 2594.40000009]\n", + " [ 932.80000028 2594.39999988]\n", + " [ 574.39999DEBUG:root:mm_to_pix: fitpx: [[0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]]\n", + "984 2594.40000006]\n", + " [ 216.00000019 2594.39999995]\n", + " [2007.99999983 2236.00000022]\n", + " [1649.60000014 2235.9999DEBUG:root:radec2pix: curVec: [[-0.2873968 0.34958321 -0.89173688]\n", + " [-0.3050565 0.32927991 -0.89359682]\n", + " [-0.32274815 0.30821237 -0.89489595]\n", + " [-0.34039318 0.28646854 -0.89558264]\n", + " [-0.35791544 0.26413519 -0.89561662]\n", + " [-0.37524082 0.24129931 -0.8949687 ]\n", + " [-0.39229734 0.21804906 -0.89362039]\n", + " [-0.40901549 0.19447436 -0.89156382]\n", + " [-0.2873968 0.34958321 -0.89173688]\n", + " [-0.26686676 0.33639274 -0.90311797]\n", + " [-0.2457864 0.32253905 -0.9140884 ]\n", + " [-0.22422663 0.30808242 -0.92455808]\n", + " [-0.20226107 0.29308172 -0.93444827]\n", + " [-0.17996668 0.27759573 -0.94369095]\n", + " [-0.15742393 0.26168415 -0.9522285 ]\n", + " [-0.13471671 0.24540824 -0.96001365]\n", + " [-0.40901549 0.19447436 -0.89156382]\n", + " [-0.38892139 0.17932967 -0.90364873]\n", + " [-0.36810501 0.16372753 -0.91525515]\n", + " [-0.34663215 0.14772269 -0.92629594]\n", + " [-0.32457272 0.13137171 -0.93669313]\n", + " [-0.30200195 0.11473387 -0.94637781]\n", + " [-0.2790007 0.09787132 -0.95529043]\n", + " [-0.25565514 0.08084893 -0.96338149]\n", + " [-0.13471671 0.24540824 -0.960019995]\n", + " [1291.19999989 2236.00000002]\n", + " [ 932.80000032 2235.99999995]\n", + " [ 574.40000023 2235.99999997]\n", + " [ 216.00000006 2235.99999999]]\n", + "DEBUG:root:optics_fp: xyfp: [[32.31363499 31.47041645]\n", + " [32.3144687 27.08398795]\n", + " [32.31530242 22.69755946]\n", + " [32.31613613 18.31113097]\n", + " [32.31696984 13.92470248]\n", + " [32.31780355 9.53827398]\n", + " [32.31863726 5.15184549]\n", + " [32.31947097 0.765417 ]\n", + " [32.31363499 31.47041645]\n", + " [27.9272065 31.46958273]\n", + " [23.540778 31.46874902]\n", + " [19.15434951 31.46791531]\n", + " [14.76792102 31.4670816 ]\n", + " [10.38149253 31.46624788]\n", + " [ 5.99506403 31.46541417]\n", + " [ 1.60863554 31.46458045]\n", + " [32.31947097 0.765417 ]\n", + " [27.93304248 0.76458329]\n", + " [23.54661399 0.76374957]\n", + " [19.1601855 0.76291586]\n", + " [14.77375701 0.76208215]\n", + " [10.38732851 0.76124844]\n", + " [ 6.00090002 0.76041472]\n", + " [ 1.61447153 0.75958101]\n", + " [ 1.60863554 31.46458045]\n", + " [ 1.60946926 27.07815197]\n", + " [ 1.61030297 22.69172348]\n", + " [ 1.61113668 18.30529498]\n", + " [ 1.61197039 13.91886648]\n", + " [ 1.6128041 9.53243799]\n", + " [ 1.61363782 5.1460095 ]\n", + " [ 1365]\n", + " [-0.15172555 0.22335341 -0.96285649]\n", + " [-0.16894721 0.20067408 -0.96498018]\n", + " [-0.18630668 0.17745118 -0.96633374]\n", + " [-0.20373012 0.15376821 -0.96687609]\n", + " [-0.22114427 0.1297123 -0.9665764 ]\n", + " [-0.23847645 0.10537442 -0.96541453]\n", + " [-0.25565514 0.08084893 -0.96338149]\n", + " [-0.29501823 0.34078614 -0.89265282]\n", + " [-0.31669357 0.31537576 -0.8945632 ]\n", + " [-0.33833866 0.28890514 -0.89557846]\n", + " [-0.35981232 0.26153443 -0.8956198 ]\n", + " [-0.38097815 0.23342385 -0.89463342]\n", + " [-0.40170462 0.20473647 -0.8925897 ]\n", + " [-0.27857797 0.34384904 -0.89675089]\n", + " [-0.25303727 0.32722762 -0.91043628]\n", + " [-0.22674003 0.30967025 -0.92341394]\n", + " [-0.19982061 0.29128584 -0.93553422]\n", + " [-0.17242069 0.27218271 -0.9466719 ]\n", + " [-0.14468987 0.25247138 -0.95672517]\n", + " [-0.40029055 0.18801234 -0.89689399]\n", + " [-0.37516878 0.16913734 -0.91139506]\n", + " [-0.34902723 0.14962934 -0.92508975]\n", + " [-0.32199282 0.12959167 -0.93783081]\n", + " [-0.29420408 0.10913342 -0.94949137]\n", + " [-0.26581211 0.08837021 -0.95996595]\n", + " [-0.1421797 0.23593062 -0.96131248]\n", + " [-0.16317917 0.20847068 -0.96431973]\n", + " [-0.18442343 0.18015285 -0.96619509]\n", + " [-0.20577614 0.15112966 -0.96685883]\n", + " [-0.2271024 0.12156154 -0.96625426]\n", + " [-0.24826886 0.09161742 -0.96434891]\n", + " [-0.28738785 0.34947127 -0.89178363]\n", + " [-0.28738785 0.34947127 -0.89178363]\n", + " [-0.25567706 0.08099142 -0.96336371]\n", + " [-0.25567706 0.08099142 -0.96336371]\n", + " [-0.28620692 0.33509783 -0.89766087]\n", + " [-0.26065008 0.31830348 -0.91145182]\n", + " [-0.23431838 0.30059303 -0.92452081]\n", + " [-0.20734585 0.28207402 -0.93671871]\n", + " [-0.17987417 0.26285389 -0.94792042]\n", + " [-0.15205334 0.24304286 -0.95802398]\n", + " [-0.30788848 0.30951033 -0.89967107]\n", + " [-0.28231587 0.29225333 -0.91372082]\n", + " [-0.25591764 0.27413475 -0.92701472]\n", + " [-0.22882673 0.25525881 -0.93940474]\n", + " [-0.20118478 0.23573124 -0.95076573]\n", + " [-0.17314274 0.21566211 -0.96099503]\n", + " [-0.32955515 0.28287613 -0.90076328]\n", + " [-0.3040117 0.26519309 -0.9150134 ]\n", + " [-0.27759376 0.24670106 -0.92848279]\n", + " [-0.25043297 0.22750218 -0.94102395]\n", + " [-0.2DEBUG:root:mm_to_pix: fitpx.shape: (96, 2)\n", + ".61447153 0.75958101]\n", + " [32.29899849 29.55791363]\n", + " [32.30002028 24.18191372]\n", + " [32.30104209 18.80591382]\n", + " [32.30206388 13.42991392]\n", + " [32.30308568 8.05391402]\n", + " [32.30410748 2.67791411]\n", + " [30.40113787 31.45505294]\n", + " [25.02513797 31.45403115]\n", + " [19.64913807 31.45300935]\n", + " [14.27313817 31.45198755]\n", + " [ 8.89713826 31.45096576]\n", + " [ 3.52113836 31.44994396]\n", + " [30.40696816 0.7800535 ]\n", + " [25.03096826 0.7790317 ]\n", + " [19.65496836 0.7780099 ]\n", + " [14.27896845 0.77698811]\n", + " [ 8.90296855 0.77596631]\n", + " [ 3.52696865 0.77494451]\n", + " [ 1.62399904 29.55208334]\n", + " [ 1.62502084 24.17608344]\n", + " [ 1.62604264 18.80008353]\n", + " [ 1.62706443 13.42408364]\n", + " [ 1.62808623 8.04808373]\n", + " [ 1.62910803 2.67208383]\n", + " [32.29863784 31.4554136 ]\n", + " [32.29863784 31.4554136 ]\n", + " [ 1.62946868 0.77458386]\n", + " [ 1.62946868 0.77458386]\n", + " [30.40149852 29.55755297]\n", + " [25.02549862 29.55653118]\n", + " [19.64949872 29.55550938]\n", + " [14.27349882 29.55448759]\n", + " [ 8.89749891 29.55346579]\n", + " [ 3.52149901 29.55244399]\n", + " [30.40252032 24DEBUG:root:radec2pix: fitpx: [[ 2.13550000e+03 -4.99999951e-01]\n", + " [ 2.13550000e+03 2.91928572e+02]\n", + " [ 2.13550000e+03 5.84357142e+02]\n", + " [ 2.13550000e+03 8.76785714e+02]\n", + " [ 2.13550000e+03 1.16921429e+03]\n", + " [ 2.13550000e+03 1.46164286e+03]\n", + " [ 2.13550000e+03 1.75407143e+03]\n", + " [ 2.13550000e+03 2.04650000e+03]\n", + " [ 2.13550000e+03 -4.99999951e-01]\n", + " [ 2.42792857e+03 -5.00000176e-01]\n", + " [ 2.72035714e+03 -5.00000069e-01]\n", + " [ 3.01278571e+03 -5.00000257e-01]\n", + " [ 3.30521429e+03 -4.99999992e-01]\n", + " [ 3.59764286e+03 -5.00000241e-01]\n", + " [ 3.89007143e+03 -4.99999730e-01]\n", + " [ 4.18250000e+03 -5.00000010e-01]\n", + " [ 2.13550000e+03 2.04650000e+03]\n", + " [ 2.42792857e+03 2.04650000e+03]\n", + " [ 2.72035714e+03 2.04650000e+03]\n", + " [ 3.01278571e+03 2.04650000e+03]\n", + " [ 3.30521429e+03 2.04650000e+03]\n", + " [ 3.59764286e+03 2.04650000e+03]\n", + " [ 3.89007143e+03 2.04650000e+03]\n", + " [ 4.18250000e+03 2.04650000e+03]\n", + " [ 4.18250000e+03 -5.00000010e-01]\n", + " [ 4.18250000e+03 2.91928572e+02]\n", + " [ 4.18250000e+03 5.84357143e+02]\n", + " [ 4.18250000e+03 8.76785DEBUG:root:optics_fp: xyfp shape: (96, 2)\n", + "DEBUG:root:radec2pix: fitpx: [[2135.5 4155.50000026]\n", + " [2135.5 3863.07142876]\n", + " [2135.5 3570.64285709]\n", + " [2135.5 3278.21428545]\n", + " [2135.5 2985.7857141 ]\n", + " [2135.49999999 2693.35714316]\n", + " [2135.50000001 2400.9285712 ]\n", + " [2135.49999993 2108.50000021]\n", + " [2135.5 4155.50000026]\n", + " [1843.07142855 4155.50000013]\n", + " [1550.64285715 4155.49999996]\n", + " [1258.2142856 4155.50000027]\n", + " [ 965.78571429 4155.49999999]\n", + " [ 673.357143 4155.4999998 ]\n", + " [ 380.92857155 4155.49999986]\n", + " [ 88.49999976 4155.50000025]\n", + " [2135.49999993 2108.50000021]\n", + " [1843.07142817 2108.50000006]\n", + " [1550.64285738 2108.49999998]\n", + " [1258.21428605 2108.49999998]\n", + " [ 965.78571448 2108.49999999]\n", + " [ 673.35714251 2108.50000001]\n", + " [ 380.92857138 2108.5 ]\n", + " [ 88.50000013 2108.5 ]\n", + " [ 88.49999976 4155.50000025]\n", + " [ 88.49999974 3863.0714288 ]\n", + " [ 88.49999989 3570.64285722]\n", + " [ 88.50000025 3278.21428557]\n", + " [ 88.50000013 2985.78571423]\n", + " [ 88.49999977 2693.35714293]\n", + " [ 88.49999999 2400.92857143]\n", + " [ 88.50000013 2108.5 ]\n", + " [2134.5 4028.00000018]\n", + " [2134.5 3669.59999979]\n", + " [2134.5 3311.20000021]\n", + " [2134.5 2952.80000004]\n", + " [2134.5 2594.39999994]\n", + " [2134.50000001 2235.99999988]\n", + " [2007.99999999 4154.50000011]\n", + " [1649.6 4154.5 ]\n", + " [1291.20000005 4154.49999987]\n", + " [ 932.80000005 4154.49999992]\n", + " [ 574.4 4154.5 ]\n", + " [ 216. 4154.5 ]\n", + " [2008.00000002 2109.49999999]\n", + " [1649.60000012 2109.49999999]\n", + " [1291.19999984 2109.50000001]\n", + " [ 932.79999968 2109.50000001]\n", + " [ 574.39999959 2109.50000001]\n", + " [ 215.99999972 2109.50000001]\n", + " [ 89.4999999 4028.0000001 ]\n", + " [ 89.50000007 3669.59999994]\n", + " [ 89.49999997 3311.20000002]\n", + " [ 89.50000023 2952.7999999 ]\n", + " [ 89.49999997 2594.40000001]\n", + " [ 89.4999998 2236.00000002]\n", + " [2134.5 4154.50000005]\n", + " [2134.5 4154.50000005]\n", + " [ 89.49999997 2109.5 ]\n", + " [ 89.49999997 2109.5 ]\n", + " [2008. 4027.99999997]\n", + " [1649.59999996 4028.00000014]\n", + " [1291.DEBUG:root:cartToSphere: vec: [[-0.20650899 -0.20112017 0.95755142]\n", + " [-0.20834684 -0.17462343 0.96233999]\n", + " [-0.209912 -0.14743759 0.96653976]\n", + " [-0.2112049 -0.11967398 0.97008795]\n", + " [-0.21222492 -0.09144325 0.97293305]\n", + " [-0.21297066 -0.06285614 0.97503467]\n", + " [-0.21344048 -0.0340241 0.97636342]\n", + " [-0.21363303 -0.00505944 0.97690088]\n", + " [-0.20650899 -0.20112017 0.95755142]\n", + " [-0.18010636 -0.20295163 0.96248238]\n", + " [-0.15299311 -0.20451753 0.96683281]\n", + " [-0.12528058 -0.20581845 0.97053776]\n", + " [-0.09707928 -0.20685386 0.97354358]\n", + " [-0.06849975 -0.20762236 0.97580774]\n", + " [-0.03965325 -0.2081222 0.97729871]\n", + " [-0.01065205 -0.20835189 0.97799592]\n", + " [-0.21363303 -0.00505944 0.97690088]\n", + " [-0.1862962 -0.0050993 0.98248039]\n", + " [-0.15824793 -0.00513287 0.98738607]\n", + " [-0.12959237 -0.00516008 0.99155393]\n", + " [-0.10043485 -0.00518078 0.99493015]\n", + " [-0.07088401 -0.00519482 0.99747104]\n", + " [-0.04105265 -0.00520206 0.99914344]\n", + " [-0.01105755 -0.00520239 0.99992533]\n", + " [-0.01065205 -0.20835189 0.97799592]\n", + " [-0.01075054 -0.18087002 0.98344825]\n", + " [-0.01083605 -0.15269708 0.98821363]\n", + " [-0.01090831 -0.12393724 0.9922301 ]\n", + " [-0.01096697 -0.09469638 0.99544579]\n", + " [-0.01101162 -0.06508391 0.99781904]\n", + " [-0.0110419 -0.03521344 0.99931881]\n", + " [-0.01105755 -0.00520239 0.99992533]\n", + " [-0.20725456 -0.18966571 0.9597252 ]\n", + " [-0.20932255 -0.15671259 0.96520735]\n", + " [-0.21098167 -0.12283514 0.96974134]\n", + " [-0.21223121 -0.0882373 0.97322767]\n", + " [-0.21306867 -0.053123 0.97559197]\n", + " [-0.2134911 -0.01769778 0.97678469]\n", + " [-0.19509826 -0.20186172 0.95978566]\n", + " [-0.16224603 -0.20392662 0.96544816]\n", + " [-0.12843717 -0.20559352 0.97017277]\n", + " [-0.09387541 -0.20686189 0.97385603]\n", + " [-0.05876435 -0.20772922 0.97641964]\n", + " [-0.02330924 -0.20819238 0.97781011]\n", + " [-0.20180806 -0.00517714 0.97941141]\n", + " [-0.16781243 -0.00522278 0.98580511]\n", + " [-0.13285166 -0.00525872 0.99112198]\n", + " [-0.09711907 -0.00528472 0.99525874]\n", + " [-0.06081473 -0.0053005 0.998135 ]\n", + " [-0.02414801 -0.00530579 0.99969431]\n", + " [-0.01079628 -0.196DEBUG:root:cartToSphere: vec: [[-0.00174024 0.20894107 0.97792668]\n", + " [-0.00176337 0.18147259 0.98339442]\n", + " [-0.00178449 0.15331081 0.98817641]\n", + " [-0.00180353 0.12455987 0.99221045]\n", + " [-0.00182039 0.09532558 0.99544448]\n", + " [-0.001835 0.06571725 0.9978366 ]\n", + " [-0.00184725 0.03584843 0.99935553]\n", + " [-0.00185707 0.00583647 0.99998124]\n", + " [-0.00174024 0.20894107 0.97792668]\n", + " [-0.0307605 0.20879621 0.97747528]\n", + " [-0.05966066 0.2083801 0.97622658]\n", + " [-0.08832819 0.20769404 0.97419778]\n", + " [-0.11665151 0.20673975 0.97141706]\n", + " [-0.14451993 0.20551876 0.96792357]\n", + " [-0.17182299 0.20403188 0.96376753]\n", + " [-0.19844965 0.20227886 0.95901043]\n", + " [-0.00185707 0.00583647 0.99998124]\n", + " [-0.03187835 0.00584019 0.99947469]\n", + " [-0.06177226 0.00583613 0.99807321]\n", + " [-0.09142104 0.00582438 0.9957953 ]\n", + " [-0.12071058 0.00580507 0.99267077]\n", + " [-0.14953103 0.00577839 0.98874015]\n", + " [-0.1777762 0.00574449 0.98405418]\n", + " [-0.20534186 0.00570348 0.97867369]\n", + " [-0.19844965 0.20227886 0.95901714e+02]\n", + " [ 4.18250000e+03 1.16921429e+03]\n", + " [ 4.18250000e+03 1.46164286e+03]\n", + " [ 4.18250000e+03 1.75407143e+03]\n", + " [ 4.18250000e+03 2.04650000e+03]\n", + " [ 2.13650000e+03 1.27000000e+02]\n", + " [ 2.13650000e+03 4.85400000e+02]\n", + " [ 2.13650000e+03 8.43800000e+02]\n", + " [ 2.13650000e+03 1.20220000e+03]\n", + " [ 2.13650000e+03 1.56060000e+03]\n", + " [ 2.13650000e+03 1.91900000e+03]\n", + " [ 2.26300000e+03 4.99999720e-01]\n", + " [ 2.62140000e+03 4.99999983e-01]\n", + " [ 2.97980000e+03 4.99999771e-01]\n", + " [ 3.33820000e+03 4.99999773e-01]\n", + " [ 3.69660000e+03 5.00000075e-01]\n", + " [ 4.05500000e+03 4.99999913e-01]\n", + " [ 2.26300000e+03 2.04550000e+03]\n", + " [ 2.62140000e+03 2.04550000e+03]\n", + " [ 2.97980000e+03 2.04550000e+03]\n", + " [ 3.33820000e+03 2.04550000e+03]\n", + " [ 3.69660000e+03 2.04550000e+03]\n", + " [ 4.05500000e+03 2.04550000e+03]\n", + " [ 4.18150000e+03 1.27000000e+02]\n", + " [ 4.18150000e+03 4.85400000e+02]\n", + " [ 4.18150000e+03 8.43800000e+02]\n", + " [ 4.18150000e+03 1.20220000e+03]\n", + " [ 4.18150000e+03 1.56060000e+03]\n", + " [ 4.18150000e+03 1.91900000e+03]\n", + " [ 2.13650000e+03 4.99999930e-01]\n", + " [ 2.13650000e+03 4.99999930e-01]\n", + " [ 4.18150000e+03 2.04550000e+03]\n", + " [ 4.18150000e+03 2.04550000e+03]\n", + " [ 2.26300000e+03 1.27000000e+02]\n", + " [ 2.62140000e+03 1.27000000e+02]\n", + " [ 2.97980000e+03 1.27000000e+02]\n", + " [ 3.33820000e+03 1.27000000e+02]\n", + " [ 3.69660000e+03 1.27000000e+02]\n", + " [ 4.05500000e+03 1.27000000e+02]\n", + " [ 2.26300000e+03 4.85400000e+02]\n", + " [ 2.62140000e+03 4.85400000e+02]\n", + " [ 2.97980000e+03 4.85400000e+02]\n", + " [ 3.33820000e+03 4.85400000e+02]\n", + " [ 3.69660000e+03 4.85400000e+02]\n", + " [ 4.05500000e+03 4.85400000e+02]\n", + " [ 2.26300000e+03 8.43800000e+02]\n", + " [ 2.62140000e+03 8.43800000e+02]\n", + " [ 2.97980000e+03 8.43800000e+02]\n", + " [ 3.33820000e+03 8.43800000e+02]\n", + " [ 3.69660000e+03 8.43800000e+02]\n", + " [ 4.05500000e+03 8.43800000e+02]\n", + " [ 2.26300000e+03 1.20220000e+03]\n", + " [ 2.62140000e+03 1.20220000e+03]\n", + " [ 2.97980000e+03 1.20220000e+03]\n", + " [ 3.33820000e+03 1.20220000e+03]\n", + " [ 3.69660000e+03 1.20220000e+03]\n", + " [ 4.05500000e+03 1.20220000e+03]\n", + " [ 2.26300000e+03 1.56060000e+2267071 0.20770171 -0.95251129]\n", + " [-0.19445862 0.18741036 -0.96284121]\n", + " [-0.35106578 0.25535398 -0.90085913]\n", + " [-0.32559653 0.23727802 -0.9152519 ]\n", + " [-0.29920618 0.21844487 -0.9288474 ]\n", + " [-0.27202493 0.19895593 -0.94149826]\n", + " [-0.24419356 0.17891692 -0.9530783 ]\n", + " [-0.2158641 0.15843984 -0.96348301]\n", + " [-0.37228363 0.22710331 -0.89990498]\n", + " [-0.346933 0.20866607 -0.91438283]\n", + " [-0.32061729 0.1895237 -0.92805459]\n", + " [-0.29346521 0.16977793 -0.94077289]\n", + " [-0.26561671 0.1495357 -0.95241106]\n", + " [-0.23722374 0.12891054 -0.96286394]\n", + " [-0.39307672 0.19828707 -0.89787133]\n", + " [-0.36788785 0.17952045 -0.91237653]\n", + " [-0.3416929 0.16010178 -0.92607418]\n", + " [-0.31461922 0.14013388 -0.93881694]\n", + " [-0.28680574 0.11972525 -0.95047795]\n", + " [-0.25840385 0.098991 -0.96095173]]\n", + "03]\n", + " [ 2.62140000e+03 1.56060000e+03]\n", + " [ 2.97980000e+03 1.56060000e+03]\n", + " [ 3.33820000e+03 1.56060000e+03]\n", + " [ 3.69660000e+03 1.56060000e+03]\n", + " [ 4.05500000e+03 1.56060000e+03]\n", + " [ 2.26300000e+03 1.91900000e+03]\n", + " [ 2.62140020000001 4027.99999998]\n", + " [ 932.79999987 4028.00000021]\n", + " [ 574.40000006 4027.99999993]\n", + " [ 215.9999998 4028.0000002 ]\n", + " [2008. 3669.59999996]\n", + " [1649.60000001 3669.59999998]\n", + " [1291.20000007 3669.59999987]\n", + " [ 932.79999997 3669.60000004]\n", + " [ 574.39999998 3669.60000002]\n", + " [ 215.99999986 3669.60000012]\n", + " [2008. 3311.20000004]\n", + " [1649.59999995 3311.20000012]\n", + " [1291.19999997 3311.20000005]\n", + " [ 932.80000015 3311.19999984]\n", + " [ 574.40000003 3311.19999997]\n", + " [ 216.00000001 3311.2 ]\n", + " [2007.99999998 2952.80000014]\n", + " [1649.60000006 2952.7999999 ]\n", + " [1291.20000015 2952.79999984]\n", + " [ 932.80000014 2952.7999999 ]\n", + " [ 574.39999986 2952.80000008]\n", + " [ 215.99999973 2952.80000012]\n", + " [2007.99999998 2594.40000007]\n", + " [1649.60000022 2594.39999977]\n", + " [1291.20000005 2594.39999997]\n", + " [ 932.79999996 2594.40000002]\n", + " [ 574.39999995 2594.40000002]\n", + " [ 216.00000004 2594.39999999]\n", + " [2008.00000021 2235.99999975]\n", + " [1649.59999975 2236.00000009]\n", + " [1291.20000026 2235.99999995]\n", + " [ 932.79999972 2236.00000004]\n", + " [ 574.39999974 2236.00000003]\n", + " [ 216.00000028 2235.99999998]]\n", + "00e+03 1.91900000e+03]\n", + " [ 2.97980000e+03 1.91900000e+03]\n", + " [ 3.33820000e+03 1.91900000e+03]\n", + " [ 3.69660000e+03 1.91900000e+03]\n", + " [ 4.05500000e+03 1.91900000e+03]]\n", + "DEBUG:root:radec2pix: curVec Shape: (96, 3)\n", + "043]\n", + " [-0.20021951 0.17571613 0.96386513]\n", + " [-0.20172864 0.1484622 0.96812423]\n", + " [-0.20297731 0.12062809 0.97172479]\n", + " [-0.20396466 0.09232414 0.97461514]\n", + " [-0.20468905 0.06366093 0.97675467]\n", + " [-0.20514862 0.03474987 0.97811374]\n", + " [-0.20534186 0.00570348 0.97867369]\n", + " [-0.00185028 0.1970566 0.98039037]\n", + " [-0.00187827 0.16291184 0.98663884]\n", + " [-0.00190298 0.12782912 0.99179438]\n", + " [-0.00192425 0.09200243 0.99575692]\n", + " [-0.00194192 0.05563309 0.99844939]\n", + " [-0.00195581 0.01893178 0.99981886]\n", + " [-0.0144012 0.2088187 0.97784833]\n", + " [-0.04990298 0.20845876 0.97675721]\n", + " [-0.08511243 0.20769278 0.97448427]\n", + " [-0.11982373 0.20652378 0.97107683]\n", + " [-0.15383302 0.20495452 0.96660698]\n", + " [-0.18693675 0.20298606 0.96117184]\n", + " [-0.01495442 0.00594178 0.99987052]\n", + " [-0.05167778 0.00594091 0.99864614]\n", + " [-0.08809246 0.00592823 0.99609466]\n", + " [-0.12398684 0.00590399 0.9922663 ]\n", + " [-0.15915858 0.0058685 0.98723559]\n", + " [-0.19341315 0.00582205 0.98110013]\n", + " [-0.19916328 0.19079562 0.96121331]\n", + " [-0.201156 0.1577603 0.96677192]\n", + " [-0.20275765 0.12379719 0.97137201]\n", + " [-0.20396715 0.08910965 0.97491378]\n", + " [-0.20478152 0.05390131 0.97732245]\n", + " [-0.20519745 0.01837776 0.97854804]\n", + " [-0.00183964 0.20884841 0.9779463 ]\n", + " [-0.00183964 0.20884841 0.9779463 ]\n", + " [-0.20524866 0.00580307 0.97869265]\n", + " [-0.20524866 0.00580307 0.97869265]\n", + " [-0.01446124 0.19702878 0.98029105]\n", + " [-0.05010266 0.19668974 0.9791848 ]\n", + " [-0.08545073 0.19596793 0.97688011]\n", + " [-0.12029942 0.19486681 0.97342435]\n", + " [-0.1544452 0.19338978 0.96888961]\n", + " [-0.18768535 0.1915385 0.96337283]\n", + " [-0.01461361 0.16288937 0.98653611]\n", + " [-0.05060625 0.16260994 0.98539181]\n", + " [-0.08630213 0.16201386 0.98300735]\n", + " [-0.12149421 0.16110DEBUG:root:fitpix2pix: ccdpx: shape: (96, 2)\n", + "[0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]]\n", + ".18155307]\n", + " [25.02652042 24.18053128]\n", + " [19.65052052 24.17950948]\n", + " [14.27452061 24.17848769]\n", + " [ 8.89852071 24.17746589]\n", + " [ 3.52252081 24.17644409]\n", + " [30.40354212 18.80555317]\n", + " [25.02754221 18.80453137]\n", + " [19.65154231 18.80350958]\n", + " [14.27554241 18.80248779]\n", + " [ 8.89954251 18.80146598]\n", + " [ 3.5235426 18.80044419]\n", + " [30.40456392 13.42955327]\n", + " [25.02856401 13.42853147]\n", + " [19.65256411 13.42750967]\n", + " [14.27656421 13.42648788]\n", + " [ 8.9005643 13.42546608]\n", + " [ 3.5245644 13.42444429]\n", + " [30.40558571 8.05355336]\n", + " [25.02958581 8.05253157]\n", + " [19.6535859 8.05150977]\n", + " [14.277586 8.05048797]\n", + " [ 8.9015861 8.04946618]\n", + " [ 3.5255862 8.04844438]\n", + " [30.40660751 2.67755346]\n", + " [25.0306076 2.67653166]\n", + " [19.6546077 2.67550987]\n", + " [14.2786078 2.67448807]\n", + " [ 8.90260789 2.67346627]\n", + " [ 3.52660799 2.67244448]]\n", + "DEBUG:root:fitpix2pix: ccdpx: shape: (96, 2)\n", + "46103 0.98045219]\n", + " [-0.01090926 -0.1623014 0.98668092]\n", + " [-0.01100231 -0.12720719 0.99181514]\n", + " [-0.01107479 -0.09137251 0.9957552 ]\n", + " [-0.01112598 -0.05499882 0.99842443]\n", + " [-0.01115523 -0.01829695 0.99977036]\n", + " [-0.20642679 -0.20103758 0.95758648]\n", + " [-0.20642679 -0.20103758 0.95758648]\n", + " [-0.01116024 -0.00530513 0.99992365]\n", + " [-0.01116024 -0.00530513 0.99992365]\n", + " [-0.19587779 -0.19044022 0.96195864]\n", + " [-0.16288944 -0.19238166 0.96770674]\n", + " [-0.12894461 -0.19395017 0.97250019]\n", + " [-0.09424616 -0.19514465 0.97623574]\n", + " [-0.05899718 -0.19596195 0.97883515]\n", + " [-0.02340304 -0.19639843 0.98024484]\n", + " [-0.19782623 -0.15734701 0.96752607]\n", + " [-0.16450046 -0.15893973 0.97348742]\n", + " [-0.13021766 -0.16022981 0.97845274]\n", + " [-0.09517804 -0.16121459 0.98231919]\n", + " [-0.05958347DEBUG:root:make_az_asym: xyp: [[ -0.230877 31.363511 ]\n", + " [ -0.230877 26.97708243]\n", + " [ -0.230877 22.59065386]\n", + " [ -0.230877 18.20422528]\n", + " [ -0.230877 13.81779671]\n", + " [ -0.230877 9.43136815]\n", + " [ -0.230877 5.04493957]\n", + " [ -0.230877 0.658511 ]\n", + " [ -0.230877 31.363511 ]\n", + " [ -4.61730557 31.363511 ]\n", + " [ -9.00373414 31.363511 ]\n", + " [-13.39016272 31.363511 ]\n", + " [-17.77659129 31.363511 ]\n", + " [-22.16301986 31.363511 ]\n", + " [-26.54944843 31.363511 ]\n", + " [-30.935877 31.363511 ]\n", + " [ -0.230877 0.658511 ]\n", + " [ -4.61730558 0.658511 ]\n", + " [ -9.00373414 0.658511 ]\n", + " [-13.39016271 0.658511 ]\n", + " [-17.77659128 0.658511 ]\n", + " [-22.16301986 0.658511 ]\n", + " [-26.54944843 0.658511 ]\n", + " [-30.935877 0.658511 ]\n", + " [-30.935877 31.363511 ]\n", + " [-30.935877 26.97708243]\n", + " [-30.935877 22.59065386]\n", + " [-30.935877 18.20422528]\n", + " [-30.935877 13.81779671]\n", + " [-30.935877 9.43136814]\n", + " [-30.935877 5.04493957]\n", + " [-30.935877 0.658511 ]\n", + " [ -0.245877 29.451011 ]\n", + " [ -0.245877 DEBUG:root:fitpix2pix: visCut: True\n", + "DEBUG:root:mm_to_pix: fitpx.shape: (96, 2)\n", + "DEBUG:root:radec2pix: xyfp: [[ -0.172993 31.426621 ]\n", + " [ -0.172993 27.04019243]\n", + " [ -0.172993 22.65376385]\n", + " [ -0.172993 18.26733528]\n", + " [ -0.172993 13.88090671]\n", + " [ -0.172993 9.49447814]\n", + " [ -0.172993 5.10804957]\n", + " [ -0.172993 0.721621 ]\n", + " [ -0.172993 31.426621 ]\n", + " [ -4.55942157 31.426621 ]\n", + " [ -8.94585014 31.426621 ]\n", + " [-13.33227871 31.426621 ]\n", + " [-17.71870729 31.426621 ]\n", + " [-22.10513586 31.426621 ]\n", + " [-26.49156443 31.426621 ]\n", + " [-30.877993 31.426621 ]\n", + " [ -0.172993 0.721621 ]\n", + " [ -4.55942157 0.721621 ]\n", + " [ -8.94585014 0.721621 ]\n", + " [-13.33227872 0.721621 ]\n", + " [-17.71870728 0.721621 ]\n", + " [-22.10513586 0.721621 ]\n", + " [-26.49156443 0.721621 ]\n", + " [-30.877993 0.721621 ]\n", + " [-30.877993 31.426621 ]\n", + " [-30.877993 27.04019243]\n", + " [-30.877993 22.65376385]\n", + " [-30.877993 18.26733529]\n", + " [-30.877993 13.88090671]\n", + " [-30.877993 9.49447814]\n", + " [-30.877993 5.1080551 0.97943054]\n", + " [-0.15597972 0.1598896 0.97473363]\n", + " [-0.18955833 0.15836938 0.9690133 ]\n", + " [-0.01473929 0.12781212 0.99168887]\n", + " [-0.05101673 0.12759366 0.99051358]\n", + " [-0.08699359 0.12712576 0.98806435]\n", + " [-0.12246151 0.126413 0.98438962]\n", + " [-0.1572181 0.12546054 0.97956221]\n", + " [-0.19106523 0.12427244 0.97367882]\n", + " [-0.01483744 0.09199108 0.99564928]\n", + " [-0.0513315 0.09183551 0.99445026]\n", + " [-0.08752139 0.0914995 0.99195154]\n", + " [-0.12319735 0.09098698 0.9882023 ]\n", + " [-0.15815714 0.09030259 0.98327604]\n", + " [-0.19220433 0.0894502 0.97726975]\n", + " [-0.01490708 0.05562756 0.9983403 ]\n", + " [-0.05154747 0.05553685 0.99712513]\n", + " [-0.08788092 0.05533649 0.99459279]\n", + " [-0.1236965 0.05502916 0.9907931 ]\n", + " [-0.15879197 0.05461804 0.98580017]\n", + " [-0.19297207 0.05410588 0.97971135]\n", + " [-0.01494734 0.0189322 0.99970903]\n", + " [-0.05166195 0.01890777 0.99848562]\n", + " [-0.08806808 0.01884587 0.99593617]\n", + " [-0.12395417 0.01874743 0.99211083]\n", + " [-0.15911791 0.01861357 0.9870841 ]\n", + " [-0.19336467 0.01844527 0.98095356]]\n", + "DEBUG:root:fitpix2pix: ccdpx: shape: (96, 2)\n", + " 24.075011 ]\n", + " [ -0.245877 18.699011 ]\n", + " [ -0.245877 13.323011 ]\n", + " [ -0.245877 7.947011 ]\n", + " [ -0.245877 2.571011 ]\n", + " [ -2.143377 31.348511 ]\n", + " [ -7.519377 31.348511 ]\n", + " [-12.895377 31.348511 ]\n", + " [-18.271377 31.348511 ]\n", + " [-23.647377 31.348511 ]\n", + " [-29.023377 31.348511 ]\n", + " [ -2.143377 0.673511 ]\n", + " [ -7.519377 0.673511 ]\n", + " [-12.895377 0.673511 ]\n", + " [-18.271377 0.673511 ]\n", + " [-23.64737701 0.673511 ]\n", + " [-29.023377 0.673511 ]\n", + " [-30.920877 29.451011 ]\n", + " [-30.920877 24.075011 ]\n", + " [-30.920877 18.699011 ]\n", + " [-30.920877 13.323011 ]\n", + " [-30.920877 7.947011 ]\n", + " [-30.920877 2.571011 ]\n", + " [ -0.245877 31.348511 ]\n", + " [ -0.245877 31.348511 ]\n", + " [-30.920877 0.673511 ]\n", + " [-30.920877 0.673511 ]\n", + " [ -2.143377 29.451011 ]\n", + " [ -7.519377 29.451011 ]\n", + " [-12.895377 29.451011 ]\n", + " [-18.271377 29.451011 ]\n", + " [-23.647377 29.451011 ]\n", + " [-29.02 -0.16188952 0.98500842]\n", + " [-0.0236399 -0.16224993 0.98646648]\n", + " [-0.19939086 -0.12332956 0.97212813]\n", + " [-0.16579789 -0.12457282 0.97826002]\n", + " [-0.13124607 -0.12558234 0.98336338]\n", + " [-0.09593306 -0.12635458 0.98733549]\n", + " [-0.06005988 -0.12688447 0.99009754]\n", + " [-0.02383341 -0.12716713 0.99159492]\n", + " [-0.20057035 -0.08859098 0.9756655 ]\n", + " [-0.16677881 -0.08948154 0.9819256 ]\n", + " [-0.13202594 -0.09020602 0.98713324]\n", + " [-0.09650734 -0.09076095 0.99118554]\n", + " [-0.06042346 -0.09114176 0.99400311]\n", + " [-0.02398226 -0.09134421 0.99553056]\n", + " [-0.20136156 -0.05333481 0.97806386]\n", + " [-0.16743861 -0.05386844 0.98440972]\n", + " [-0.13255205 -0.05430277 0.98968741]\n", + " [-0.09689601 -0.0546353 0.99379381]\n", + " [-0.0606707 -0.05486289 0.99664895]\n", + " [-0.02408492 -0.05498267 0.99819679]\n", + " [-0.20176105 -0.01776673 0.97927362]\n", + " [-0.16777281 -0.01794001 0.98566244]\n", + " [-0.13281959 -0.01808024 0.99097531]\n", + " [-0.09709479 -0.01818657 0.99510896]\n", + " [-0.06079851 -0.01825788 0.99798306]\n", + " [-0.02414006 -0.01829321 0.9995412 ]DEBUG:root:fitpix2pix: visCut: True\n", + "DEBUG:root:optics_fp: xyfp shape: (96, 2)\n", + "4957]\n", + " [-30.877993 0.721621 ]\n", + " [ -0.187993 29.514121 ]\n", + " [ -0.187993 24.138121 ]\n", + " [ -0.187993 18.76212101]\n", + " [ -0.187993 13.386121 ]\n", + " [ -0.187993 8.010121 ]\n", + " [ -0.187993 2.634121 ]\n", + " [ -2.085493 31.411621 ]\n", + " [ -7.461493 31.411621 ]\n", + " [-12.837493 31.411621 ]\n", + " [-18.213493 31.411621 ]\n", + " [-23.589493 31.411621 ]\n", + " [-28.965493 31.411621 ]\n", + " [ -2.085493 0.736621 ]\n", + " [ -7.461493 0.736621 ]\n", + " [-12.837493 0.736621 ]\n", + " [-18.213493 0.736621 ]\n", + " [-23.58949299 0.736621 ]\n", + " [-28.965493 0.736621 ]\n", + " [-30.862993 29.514121 ]\n", + " [-30.862993 24.138121 ]\n", + " [-30.862993 18.762121 ]\n", + " [-30.862993 13.386121 ]\n", + " [-30.862993 8.010121 ]\n", + " [-30.862993 2.634121 ]\n", + " [ -0.187993 31.411621 ]\n", + " [ -0.187993 31.411621 ]\n", + " [-30.862993 0.736621 ]\n", + " [-30.862993 0.736621 ]\n", + " [ -2.085493 29.514121 ]\n", + " [ -7.461493 29.514121 ]\n", + " [-12.837493 29.514121 ]\n", + " [-18.213493 29.514121 ]\n", + " [-23.589493 29.514121 ]\n", + " [-28.965493 29.514121 ]\n", + " [ -2.085493 24.138121 ]\n", + " [ -7.461493 24.138121 ]\n", + " [-12.837493 24.138121 ]\n", + " [-18.213493 24.138121 ]\n", + " [-23.589493 24.138121 ]\n", + " [-28.965493 24.138121 ]\n", + " [ -2.085493 18.762121 ]\n", + " [ -7.461493 18.762121 ]\n", + " [-12.837493 18.762121 ]\n", + " [-18.213493 18.762121 ]\n", + " [-23.589493 18.762121 ]\n", + " [-28.965493 18.762121 ]\n", + " [ -2.085493 13.386121 ]\n", + " [ -7.461493 13.386121 ]\n", + " [-12.837493 13.386121 ]\n", + " [-18.213493 13.386121 ]\n", + " [-23.589493 13.386121 ]\n", + " [-28.965493 13.386121 ]\n", + " [ -2.085493 8.010121 ]\n", + " [ -7.461493 8.010121 ]\n", + " [-12.837493 8.010121 ]\n", + " [-18.213493 8.010121 ]\n", + " [-23.589493 8.010121 ]\n", + " [-28.965493 8.010121 ]\n", + " [ -2.085493 2.634121 ]\n", + " [ -7.461493 2.634121 ]\n", + " [-12.837493 2.634121 ]\n", + " [-18.213493 2.634121 ]\n", + " [-23.589493 2.634121 ]\n", + " [-28.965493 2.634121 ]]\n", + "3377 29.451011 ]\n", + " [ -2.143377 24.075011 ]\n", + " [ -7.519377 24.075011 ]\n", + " [-12.895377 24.075011 ]\n", + " [-18.271377 24.075011 ]\n", + " [-23.647377 24.075011 ]\n", + " [-29.023377 24.075011 ]\n", + " [ -2.143377 18.699011 ]\n", + " [ -7.519377 18.699011 ]\n", + " [-12.895377 18.699011 ]\n", + " [-18.271377 18.699011 ]\n", + " [-23.647377 18.699011 ]\n", + " [-29.023377 18.699011 ]\n", + " [ -2.143377 13.323011 ]\n", + " [ -7.519377 13.323011 ]\n", + " [-12.895377 13.323011 ]\n", + " [-18.271377 13.323011 ]\n", + " [-23.647377 13.323011 ]\n", + " [-29.023377 13.323011 ]\n", + " [ -2.143377 7.947011 ]\n", + " [ -7.519377 7.947011 ]\n", + " [-12.895377 7.947011 ]\n", + " [-18.271377 7.947011 ]\n", + " [-23.647377 7.947011 ]\n", + " [-29.023377 7.947011 ]\n", + " [ -2.143377 2.571011 ]\n", + " [ -7.519377 2.571011 ]\n", + " [-12.895377 2.571011 ]\n", + " [-18.271377 2.571011 ]\n", + " [-23.647377 2.571011 ]\n", + " [-29.023377 2.571011 ]]\n", + "]\n", + "DEBUG:root:fitpix2pix: visCut: True\n", + "DEBUG:root:radec2pix: lng: [ 90.47719648 90.55672682 90.66687597 90.82953968 91.0940213\n", + " 91.599DEBUG:root:make_az_asym: xyp: shape: (96, 2)\n", + "4309 92.9498036 107.65020813 90.47719648 98.38070645\n", + " 105.9767833 113.03909385 119.43357191 125.11472623 130.10200281\n", + " 134.45251944 107.65020813 169.61839319 174.60281853 176.35464905\n", + " 177.24671913 177.78699525 178.149242 178.40898834 134.45251944\n", + " 138.72924775 143.64878868 149.27726033 155.64622183 162.72363484\n", + " 170.38599488 178.40898834 90.53796733 90.66055396 90.85289348\n", + " 91.19818153 91.99914413 95.89819456 93.94516067 103.46269209\n", + " 112.28380041 120.12202419 126.89084824 132.64302298 158.33080444\n", + " 173.44203131 176.15005523 177.27375664 177.8883436 178.27582468\n", + " 136.22925254 141.89402899 148.59312727 156.4003322 165.25344571\n", + " 174.88216618 90.50467598 90.50467598 178.38048842 178.38048842\n", + " 94.19778856 104.29099371 113.55934226 121.68876645 128.61161022\n", + " 134.41785939 95.12656191 107.28679494 118.04349613 127.02097674\n", + " 134.29081962 140.12241992 96.57828818 111.79338073 124.38427646\n", + " 134.09036566 141.4100222 146.95926252 99.16244844 119.20302386\n", + " 133.72701528 143.55240671 150.27503583 155.04314708 105.00164812\n", + " 132.86645918 147.80237126 156.01703787 161.01884636 164.3374646\n", + " 128.29176769 159.89787077 167.9213331 171.39949271 173.32787944\n", + " 174.55097942]\n", + "DEBUG:root:radec2pix: xyfp: [[ 0.236018 -31.56946754]\n", + " [ 0.23651287 -27.18303899]\n", + " [ 0.23700774 -22.79661046]\n", + " [ 0.23750261 -18.41018192]\n", + " [ 0.23799748 -14.02375336]\n", + " [ 0.23849235 -9.63732482]\n", + " [ 0.23898721 -5.25089628]\n", + " [ 0.23948208 -0.86446773]\n", + " [ 0.236018 -31.56946754]\n", + " [ 4.62244655 -31.56996241]\n", + " [ 9.00887509 -31.57045728]\n", + " [ 13.39530363 -31.57095214]\n", + " [ 17.78173218 -31.57144701]\n", + " [ 22.16816072 -31.57194188]\n", + " [ 26.55458927 -31.57243675]\n", + " [ 30.94101781 -31.57293162]\n", + " [ 0.23948208 -0.86446773]\n", + " [ 4.62591062 -0.8649626 ]\n", + " [ 9.01233917 -0.86545747]\n", + " [ 13.39876771 -0.86595234]\n", + " [ 17.78519626 -0.86644721]\n", + " [ 22.1716248 -0.86694208]\n", + " [ 26.55805334 -0.86743695]\n", + " [ 30.94448189 -0.86793181]\n", + " [ 30.94101781 -31.57293162]\n", + " [ 30.94151268 -27.18650307]\n", + " [ 30.94200754 -22.80007453]\n", + " [ 30.94250242 -18.41364599]\n", + " [ 30.94299728 -14.02721745]\n", + " [ 30.94349215 -9.6407889 ]\n", + " [ 30.94398702 -5.25436036]\n", + " [ 30.94448189 -0.86793181]\n", + " [ 0.25123377 -29.65696924]\n", + " [ 0.25184028 -24.28096928]\n", + " [ 0.25244679 -18.90496931]\n", + " [ 0.2530533 -13.52896935]\n", + " [ 0.25365981 -8.15296938]\n", + " [ 0.25426632 -2.77696942]\n", + " [ 2.14851968 -31.5546833 ]\n", + " [ 7.52451965 -31.55528981]\n", + " [ 12.90051962 -31.55589633]\n", + " [ 18.27651958 -31.55650284]\n", + " [ 23.65251954 -31.55710934]\n", + " [ 29.02851952 -31.55771586]\n", + " [ 2.15198038 -0.8796835 ]\n", + " [ 7.52798035 -0.88029001]\n", + " [ 12.90398031 -0.88089652]\n", + " [ 18.27998027 -0.88150303]\n", + " [ 23.65598025 -0.88210954]\n", + " [ 29.03198021 -0.88271605]\n", + " [ 30.92623357 -29.66042994]\n", + " [ 30.92684009 -24.28442998]\n", + " [ 30.9274466 -18.90843001]\n", + " [ 30.9280531 -13.53243004]\n", + " [ 30.92865961 -8.15643008]\n", + " [ 30.92926612 -2.78043011]\n", + " [ 0.2510197 -31.55446923]\n", + " [ 0.2510197 -31.55446923]\n", + " [ 30.9294802 -0.88293012]\n", + " [ 30.9294802 -0.88293012]\n", + " [ 2.14873376 -29.65718332]\n", + " [ 7.52473372 -29.65778983]\n", + " [ 12.90073369 -29.65839633]\n", + " [ 18.27673365 -29.65900285]\n", + " [ 23.65273362 -29.65960936]\n", + " [ 29.02873359 -29.66021587]\n", + " [ 2.14934027 -24.28118335]\n", + " [ 7.52534023 -24.28178986]\n", + " [ 12.9013402 -24.28239637]\n", + " [ 18.27734016 -24.28300288]\n", + " [ 23.65334013 -24.28360939]\n", + " [ 29.02934009 -24.2842159 ]\n", + " [ 2.14994678 -18.90518338]\n", + " [ 7.52594674 -18.90578989]\n", + " [ 12.90194671 -18.9063964 ]\n", + " [ 18.27794667 -18.90700292]\n", + " [ 23.65394664 -18.90760943]\n", + " [ 29.0299466 -18.90821593]\n", + " [ 2.15055329 -13.52918342]\n", + " [ 7.52655325 -13.52978993]\n", + " [ 12.90255322 -13.53039644]\n", + " [ 18.27855318 -13.53100295]\n", + " [ 23.65455315 -13.53160946]\n", + " [ 29.03055312 -13.53221597]\n", + " [ 2.1511598 -8.15318346]\n", + " [ 7.52715976 -8.15378996]\n", + " [ 12.90315973 -8.15439647]\n", + " [ 18.27915969 -8.15500298]\n", + " [ 23.65515966 -8.15560949]\n", + " [ 29.03115962 -8.156216 ]\n", + " [ 2.1517663 -2.77718348]\n", + " [ 7.52776627 -2.77779 ]\n", + " [ 12.90376624 -2.77839651]\n", + " [ 18.2797662 -2.77900302]\n", + " [ 23.65576617 -2.77960953]\n", + " [ 29.03176613 -2.78021604]]\n", + "DEBUG:root:radec2pix: lng: [224.24259986 219.96765614 215.08336296 209.53697562 203.3101935\n", + " 196.44343401 189.05719479 181.35667342 224.24259986 228.41303103\n", + " 233.20099698 238.67135193 244.85870857 251.7410006 259.21279966\n", + " 267.07328529 181.35667342 181.56790868 181.85777415 182.28018564\n", + " 182.95289983 184.19149998 187.22184671 205.19617552 267.07328529\n", + " 266.59845953 265.94084811 264.97008557 263.3938965 260.39700292\n", + " 252.59010355 205.19617552 222.46269399 216.82093439 210.20829157\n", + " 202.57559903 193.99974981 184.73881406 225.97611965 231.49389572\n", + " 238.00639827 245.59111124 254.20436521 263.6117634 181.46953067\n", + " 181.78262482 182.26677669 183.11467024 184.98120654 192.39209935\n", + " 266.85454344 266.15458823 265.05671864 263.08918181 258.56369308\n", + " 238.630299 224.24223838 224.24223838 205.42453452 205.42453452\n", + " 224.19359423 229.74542917 236.38270094 244.22153031 253.24481767\n", + " 263.2046196 218.49803362 224.01504295 230.89947742 239.443203DEBUG:root:radec2pix: camVec: [[0.20581047 0.20764708 0.20921111 0.21050368 0.21152432 0.2122716\n", + " 0.21274377 0.21293946 0.20581047 0.17940008 0.15228099 0.12456525\n", + " 0.09636347 0.06778617 0.03894463 0.00995116 0.21293946 0.18558556\n", + " 0.15752187 0.12885256 0.09968382 0.07012532 0.04029051 0.01029607\n", + " 0.00995116 0.01003858 0.01011374 0.01017639 0.01022623 0.01026295\n", + " 0.01028629 0.01029607 0.20655553 0.20862193 0.21028039 0.21153069\n", + " 0.21237025 0.212796 0.1943962 0.16153559 0.12772204 0.0931597\n", + " 0.05805212 0.02260459 0.2011068 0.16709142 0.1321133 0.09636698\n", + " 0.06005439 0.02338579 0.01009044 0.01019035 0.01027142 0.0103331\n", + " 0.01037483 0.01039617 0.20572824 0.20572824 0.01039877 0.01039877\n", + " 0.19517474 0.1621771 0.12822694 0.09352723 0.05828102 0.02269376\n", + " 0.19712067 0.1637837 0.12949375 0.09445078 0.05885684 0.0229182\n", + " 0.19868404 0.16507817 0.13051704 0.09519827 0.05932353 0.02310025\n", + " 0.19986372 0.16605732 0.13129265 0.09576573 0.05967819 0.02323871\n", + " 0.20065641 0.1667164DEBUG:root:radec2pix: ccdpx: [[-4.45000000e+01 -4.99999902e-01]\n", + " [-4.45000000e+01 2.91928572e+02]\n", + " [-4.45000000e+01 5.84357143e+02]\n", + " [-4.45000000e+01 8.76785715e+02]\n", + " [-4.45000000e+01 1.16921429e+03]\n", + " [-4.45000000e+01 1.46164286e+03]\n", + " [-4.45000000e+01 1.75407143e+03]\n", + " [-4.45000001e+01 2.04650000e+03]\n", + " [-4.45000000e+01 -4.99999902e-01]\n", + " [ 2.47928571e+02 -4.99999902e-01]\n", + " [ 5.40357143e+02 -4.99999727e-01]\n", + " [ 8.32785714e+02 -5.00000071e-01]\n", + " [ 1.12521429e+03 -5.00000281e-01]\n", + " [ 1.41764286e+03 -4.99999968e-01]\n", + " [ 1.71007143e+03 -5.00000211e-01]\n", + " [ 2.00250000e+03 -5.00000200e-01]\n", + " [-4.45000001e+01 2.04650000e+03]\n", + " [ 2.47928571e+02 2.04650000e+03]\n", + " [ 5.40357143e+02 2.04650000e+03]\n", + " [ 8.32785714e+02 2.04650000e+03]\n", + " [ 1.12521429e+03 2.04650000e+03]\n", + " [ 1.41764286e+03 2.04650000e+03]\n", + " [ 1.71007143e+03 2.04650000e+03]\n", + " [ 2.00250000e+03 2.04650000e+03]\n", + " [ 2.00250000e+03 -5.00000200e-01]\n", + " [ 2.00250000e+03 2.91928571e+02]\n", + " [ 2.00250000e+03 5.84357143e+02]\n", + " [ 2.00250000e+03 8.76785DEBUG:root:make_az_asym: xyp: [[32.31363499 31.47041645]\n", + " [32.3144687 27.08398795]\n", + " [32.31530242 22.69755946]\n", + " [32.31613613 18.31113097]\n", + " [32.31696984 13.92470248]\n", + " [32.31780355 9.53827398]\n", + " [32.31863726 5.15184549]\n", + " [32.31947097 0.765417 ]\n", + " [32.31363499 31.47041645]\n", + " [27.9272065 31.46958273]\n", + " [23.540778 31.46874902]\n", + " [19.15434951 31.46791531]\n", + " [14.76792102 31.4670816 ]\n", + " [10.38149253 31.46624788]\n", + " [ 5.99506403 31.46541417]\n", + " [ 1.60863554 31.46458045]\n", + " [32.31947097 0.765417 ]\n", + " [27.93304248 0.76458329]\n", + " [23.54661399 0.76374957]\n", + " [19.1601855 0.76291586]\n", + " [14.77375701 0.76208215]\n", + " [10.38732851 0.76124844]\n", + " [ 6.00090002 0.76041472]\n", + " [ 1.61447153 0.75958101]\n", + " [ 1.60863554 31.46458045]\n", + " [ 1.60946926 27.07815197]\n", + " [ 1.61030297 22.69172348]\n", + " [ 1.61113668 18.30529498]\n", + " [ 1.61197039 13.91886648]\n", + " [ 1.6128041 9.53243799]\n", + " [ 1.61363782 5.1460095 ]\n", + " [ 1.61447153 0.75958101]\n", + " [32.29899849 29.55791363]\n", + " [32.30002028 24.18191372]\n", + " [32.30104209 18.80591382]\n", + " [32.30206388 13.42991392714e+02]\n", + " [ 2.00250000e+03 1.16921429e+03]\n", + " [ 2.00250000e+03 1.46164286e+03]\n", + " [ 2.00250000e+03 1.75407143e+03]\n", + " [ 2.00250000e+03 2.04650000e+03]\n", + " [-4.35000000e+01 1.27000000e+02]\n", + " [-4.35000000e+01 4.85400000e+02]\n", + " [-4.35000000e+01 8.43800000e+02]\n", + " [-4.35000000e+01 1.20220000e+03]\n", + " [-4.35000000e+01 1.56060000e+03]\n", + " [-4.35000000e+01 1.91900000e+03]\n", + " [ 8.30000000e+01 5.00000088e-01]\n", + " [ 4.41400000e+02 5.00000229e-01]\n", + " [ 7.99800000e+02 4.99999876e-01]\n", + " [ 1.15820000e+03 5.00000139e-01]\n", + " [ 1.51660000e+03 5.00000172e-01]\n", + " [ 1.87500000e+03 4.99999925e-01]\n", + " [ 8.30000002e+01 2.04550000e+03]\n", + " [ 4.41400000e+02 2.04550000e+03]\n", + " [ 7.99800000e+02 2.04550000e+03]\n", + " [ 1.15820000e+03 2.04550000e+03]\n", + " [ 1.51660000e+03 2.04550000e+03]\n", + " [ 1.87500000e+03 2.04550000e+03]\n", + " [ 2.00150000e+03 1.27000000e+02]\n", + " [ 2.00150000e+03 4.85400000e+02]\n", + " [ 2.00150000e+03 8.43800000e+02]\n", + " [ 2.00150000e+03 1.20220000e+03]\n", + " [ 2.00150000e+03 1.56060000e+03]\n", + " [ 2.00150000e+03 1.91900000e+03]\n", + " [-4.3500006 0.13181555 0.09614872 0.05991775 0.0233323\n", + " 0.20105858 0.16705125 0.13208139 0.09634357 0.06003972 0.02338002]\n", + " [0.20196806 0.17549093 0.14832034 0.12056829 0.0923455 0.06376263\n", + " 0.0349311 0.00596325 0.20196806 0.20380697 0.20537849 0.20668384\n", + " 0.20772258 0.20849323 0.20899395 0.20922323 0.00596325 0.00601646\n", + " 0.00606233 0.00610071 0.00613144 0.00615431 0.00616917 0.00617591\n", + " 0.20922323 0.18176716 0.15361557 0.12487279 0.09564544 0.0660437\n", + " 0.03618151 0.00617591 0.19052281 0.15759064 0.12372836 0.08914025\n", + " 0.05403012 0.01860347 0.20271324 0.2047859 0.20645854 0.207731\n", + " 0.20860063 0.20906415 0.00608691 0.00614821 0.00619816 0.00623643\n", + " 0.00626269 0.00627666 0.19734414 0.16321317 0.12814101 0.0923229\n", + " 0.05596168 0.01926848 0.20188558 0.20188558 0.00627861 0.00627861\n", + " 0.19130075 0.19325024 0.19482509 0.19602426 0.19684438 0.19728171\n", + " 0.15822879 0.1598311 0.16112922 0.16212009 0.16279899 0.16316141\n", + " 0.12422708 0.12548158 0.12650047 0.12727979 0.12781451 0.12810021\n", + " 0.0800e+01 5.00000166e-01]\n", + " [-4.35000000e+01 5.00000166e-01]\n", + " [ 2.00150000e+03 2.04550000e+03]\n", + " [ 2.00150000e+03 2.04550000e+03]\n", + " [ 8.30000000e+01 1.27000000e+02]\n", + " [ 4.41400000e+02 1.27000000e+02]\n", + " [ 7.99800000e+02 1.27000000e+02]\n", + " [ 1.15820000e+03 1.27000000e+02]\n", + " [ 1.51660000e+03 1.27000000e+02]\n", + " [ 1.87500000e+03 1.27000000e+02]\n", + " [ 8.30000000e+01 4.85400000e+02]\n", + " [ 4.41400000e+02 4.85400000e+02]\n", + " [ 7.99800000e+02 4.85400000e+02]\n", + " [ 1.15820000e+03 4.85400000e+02]\n", + " [ 1.51660000e+03 4.85400000e+02]\n", + " [ 1.87500000e+03 4.85400000e+02]\n", + " [ 8.30000000e+01 8.43800000e+02]\n", + " [ 4.41400000e+02 8.43800000e+02]\n", + " [ 7.99800000e+02 8.43800000e+02]\n", + " [ 1.15820000e+03 8.43800000e+02]\n", + " [ 1.51660000e+03 8.43800000e+02]\n", + " [ 1.87500000e+03 8.43800000e+02]\n", + " [ 8.30000000e+01 1.20220000e+03]\n", + " [ 4.41400000e+02 1.20220000e+03]\n", + " [ 7.99800000e+02 1.20220000e+03]\n", + " [ 1.15820000e+03 1.20220000e+03]\n", + " [ 1.51660000e+03 1.20220000e+03]\n", + " [ 1.87500000e+03 1.20220000e+03]\n", + " [ 8.30000000e+01 1.56060000e+DEBUG:root:radec2pix: xyfp: [[ -0.230877 31.363511 ]\n", + " [ -0.230877 26.97708243]\n", + " [ -0.230877 22.59065386]\n", + " [ -0.230877 18.20422528]\n", + " [ -0.230877 13.81779671]\n", + " [ -0.230877 9.43136815]\n", + " [ -0.230877 5.04493957]\n", + " [ -0.230877 0.658511 ]\n", + " [ -0.230877 31.363511 ]\n", + " [ -4.61730557 31.363511 ]\n", + " [ -9.00373414 31.363511 ]\n", + " [-13.39016272 31.363511 ]\n", + " [-17.77659129 31.363511 ]\n", + " [-22.16301986 31.363511 ]\n", + " [-26.54944843 31.363511 ]\n", + " [-30.935877 31.363511 ]\n", + " [ -0.230877 0.658511 ]\n", + " [ -4.61730558 0.658511 ]\n", + " [ -9.00373414 0.658511 ]\n", + " [-13.39016271 0.658511 ]\n", + " [-17.77659128 0.658511 ]\n", + " [-22.16301986 0.658511 ]\n", + " [-26.54944843 0.658511 ]\n", + " [-30.935877 0.658511 ]\n", + " [-30.935877 31.363511 ]\n", + " [-30.935877 26.97708243]\n", + " [-30.935877 22.59065386]\n", + " [-30.935877 18.20422528]\n", + " [-30.935877 13.81779671]\n", + " [-30.935877 9.43136814]\n", + " [-30.935877 5.04493957]\n", + " [-30.935877 0.658511 ]\n", + " [ -0.245877 29.451011 ]\n", + " [ -0.245877 24.075011 ]\n", + " [ -0.245877 18.699011 ]\n", + " [ -0.245877 13.323011 ]\n", + " [ -0.245877 7.947011 ]\n", + " [ -0.245877 2.571011 ]\n", + " [ -2.143377 31.348511 ]\n", + " [ -7.519377 31.348511 ]\n", + " [-12.895377 31.348511 ]\n", + " [-18.271377 31.348511 ]\n", + " [-23.647377 31.348511 ]\n", + " [-29.023377 31.348511 ]\n", + " [ -2.143377 0.673511 ]\n", + " [ -7.519377 0.673511 ]\n", + " [-12.895377 0.673511 ]\n", + " [-18.271377 0.673511 ]\n", + " [-23.64737701 0.673511 ]\n", + " [-29.023377 0.673511 ]\n", + " [-30.920877 29.451011 ]\n", + " [-30.920877 24.075011 ]\n", + " [-30.920877 18.699011 ]\n", + " [-30.920877 13.323011 ]\n", + " [-30.920877 7.947011 ]\n", + " [-30.920877 2.571011 ]\n", + " [ -0.245877 31.348511 ]\n", + " [ -0.245877 31.348511 ]\n", + " [-30.920877 0.673511 ]\n", + " [-30.920877 0.673511 ]\n", + " [ -2.143377 29.451011 ]\n", + " [ -7.519377 29.451011 ]\n", + " [-12.895377 29.451011 ]\n", + " [-18.271377 29.451011 ]\n", + " [-23.647377 29.451011 ]\n", + " [-29.023377 29.451011 ]\n", + " [ -2.143377 24.075011 ]\n", + " [ -7.519377 24.075011 ]\n", + "]\n", + " [32.30308568 8.05391402]\n", + " [32.30410748 2.67791411]\n", + " [30.40113787 31.45505294]\n", + " [25.02513797 31.45403115]\n", + " [19.64913807 31.45300935]\n", + " [14.27313817 31.45198755]\n", + " [ 8.89713826 31.45096576]\n", + " [ 3.52113836 31.44994396]\n", + " [30.40696816 0.7800535 ]\n", + " [25.03096826 0.7790317 ]\n", + " [19.65496836 0.7780099 ]\n", + " [14.27896845 0.77698811]\n", + " [ 8.90296855 0.77596631]\n", + " [ 3.52696865 0.77494451]\n", + " [ 1.62399904 29.55208334]\n", + " [ 1.62502084 24.17608344]\n", + " [ 1.62604264 18.80008353]\n", + " [ 1.62706443 13.42408364]\n", + " [ 1.62808623 8.04808373]\n", + " [ 1.62910803 2.67208383]\n", + " [32.29863784 31.4554136 ]\n", + " [32.29863784 31.4554136 ]\n", + " [ 1.62946868 0.77458386]\n", + " [ 1.62946868 0.77458386]\n", + " [30.40149852 29.55755297]\n", + " [25.02549862 29.55653118]\n", + " [19.64949872 29.55550938]\n", + " [14.27349882 29.55448759]\n", + " [ 8.89749891 29.55346579]\n", + " [ 3.52149901 29.55244399]\n", + " [30.40252032 24.18155307]\n", + " [25.02652042 24.18053128]\n", + " [19.65052052 24.17950948]\n", + " [14.27452061 24.17848769]\n", + " [ 8.89852071 24.17746589]\n", + " [ 3.52252081 24.17644409]\n", + " [30.40354212 18.80555317] [-12.895377 24.075011 ]\n", + " [-18.271377 24.075011 ]\n", + " [-23.647377 24.075011 ]\n", + " [-29.023377 24.075011 ]\n", + " [ -2.143377 18.699011 ]\n", + " [ -7.519377 18.699011 ]\n", + " [-12.895377 18.699011 ]\n", + " [-18.271377 18.699011 ]\n", + " [-23.647377 18.699011 ]\n", + " [-29.023377 18.699011 ]\n", + " [ -2.143377 13.323011 ]\n", + " [ -7.519377 13.323011 ]\n", + " [-12.895377 13.323011 ]\n", + " [-18.271377 13.323011 ]\n", + " [-23.647377 13.323011 ]\n", + " [-29.023377 13.323011 ]\n", + " [ -2.143377 7.947011 ]\n", + " [ -7.519377 7.947011 ]\n", + " [-12.895377 7.947011 ]\n", + " [-18.271377 7.947011 ]\n", + " [-23.647377 7.947011 ]\n", + " [-29.023377 7.947011 ]\n", + " [ -2.143377 2.571011 ]\n", + " [ -7.519377 2.571011 ]\n", + " [-12.895377 2.571011 ]\n", + " [-18.271377 2.571011 ]\n", + " [-23.647377 2.571011 ]\n", + " [-29.023377 2.571011 ]]\n", + "03]\n", + " [ 4.41400000e+02 1.56060000e+03]\n", + " [ 7.99800000e+02 1.56060000e+03]\n", + " [ 1.15820000e+03 1.56060000e+03]\n", + " [ 1.51660000e+03 1.56060000e+03]\n", + " [ 1.87500000e+03 1.56060000e+03]\n", + " [ 8.300DEBUG:root:radec2pix: lat: [77.93927193 79.54395482 81.18055575 82.84390632 84.52894038 86.23049276\n", + " 87.9428694 89.64907294 77.93927193 77.81611283 77.48163499 76.95619116\n", + " 76.26808809 75.44881244 74.52941663 73.53851291 89.64907294 88.14278148\n", + " 86.44266427 84.74397225 83.05883421 81.39378264 79.75434117 78.14585205\n", + " 73.53851291 74.55039439 75.49464441 76.34256389 77.06256929 77.62200189\n", + " 77.99067226 78.14585205 78.63460262 80.62342084 82.65501815 84.72002626\n", + " 86.80886799 88.90945013 77.91780497 77.62268078 77.02911929 76.18620636\n", + " 75.15153709 73.98133314 89.07797965 87.01823413 84.93466191 82.86963733\n", + " 80.83566227 78.84284498 73.98994449 75.188461 76.25722019 77.13921802\n", + " 77.77469141 78.11085607 77.94465092 77.94465092 78.15114253 78.15114253\n", + " 78.60576152 78.28926489 77.65557547 76.7612779 75.67077293 74.44486167\n", + " 80.58736145 80.19458487 79.42244991 78.35883667 77.09292697 75.69943663\n", + " 82.60788147 82.10171615 81.13877773 79.86296648 78.39628485 76.82509319\n", + " 84.6534244 83.96086026 82.72578935 81.19023674 79.50664486 77.76043854\n", + " 86.6984902 85.65438612 84.03898568 82.21913056 80.33294013 78.43884558\n", + " 88.61780046 86.84637931 84.83282934 82.79823023 80.78132572 78.79952798]\n", + "00001e+01 1.91900000e+03]\n", + " [ 4.41400000e+02 1.91900000e+03]\n", + " [ 7.99800000e+02 1.91900000e+03]\n", + " [ 1.15820000e+03 1.91900000e+03]\n", + " [ 1.51660000e+03 1.91900000e+03]\n", + " [ 1.87500000e+03 1.91900000e+03]]\n", + "DEBUG:root:radec2pix: xyfp Shape: (96, 2)\n", + "949878 0.09040196 0.09113695 0.09169995 0.09208666 0.09229337\n", + " 0.05424725 0.05479478 0.05524091 0.05558298 0.05581806 0.05594375\n", + " 0.01867818 0.01886665 0.0190203 0.01913813 0.01921909 0.01926233]\n", + " [0.95752334 0.96233343 0.96655667 0.97012962 0.9730004 0.97512825\n", + " 0.97648344 0.9770472 0.95752334 0.96243355 0.96676273 0.97044592\n", + " 0.97342972 0.97567188 0.97714116 0.97781727 0.9770472 0.98260969\n", + " 0.98749689 0.991645 0.99500027 0.99751921 0.99916896 0.99992792\n", + " 0.97781727 0.98329036 0.98807893 0.99212057 0.99536294 0.99776395\n", + " 0.99929229 0.9999238\n", + " 249.79385261 261.71030558 211.7381028 216.91949721 223.73668556\n", + " 232.79289096 244.66979293 259.38488067 203.8308227 208.21481457\n", + " 214.34263424 223.2424136 236.45716258 255.28910964 194.83531269\n", + " 197.83404909 202.27750364 209.41669409 222.12219565 246.34438586\n", + " 185.03238692 186.10346579 187.75181788 190.6089913 196.71508989\n", + " 217.15465227]\n", + "\n", + " [25.02754221 18.80453137]\n", + " [19.65154231 18.80350958]\n", + " [14.27554241 18.80248779]\n", + " [ 8.89954251 18.80146598]\n", + " [ 3.5235426 18.80044419]\n", + " [30.40456392 13.42955327]\n", + " [25.02856401 13.42853147]\n", + " [19.65256411 13.42750967]\n", + " [14.27656421 13.42648788]\n", + " [ 8.9005643 13.42546608]\n", + " [ 3.5245644 13.42444429]\n", + " [30.40558571 8.05355336]\n", + " [25.02958581 8.05253157]\n", + " [19.6535859 8.05150977]\n", + " [14.277586 8.05048797]\n", + " [ 8.9015861 8.04946618]\n", + " [ 3.5255862 8.04844438]\n", + " [30.40660751 2.67755346]\n", + " [25.0306076 2.67653166]\n", + " [19.6546077 2.67550987]\n", + " [14.2786078 2.67448807]\n", + " [ 8.90260789 2.67346627]\n", + " [ 3.52660799 2.67244448]]\n", + "792 0.95970614 0.96521608 0.9697801 0.97329789\n", + " 0.97569443 0.97691953 0.95974864 0.96538541 0.97008348 0.97373975\n", + " 0.97627646 0.97764064 0.97955041 0.98592224 0.99121524 0.99532633\n", + " 0.99817546 0.99970681 0.98028234 0.9865382 0.99170277 0.9956755\n", + " 0.99837901 0.99976029 0.95755841 0.95755841 0.99992622 0.99992622\n", + " 0.96193079 0.96765331 0.9724202 0.97612865 0.97870098 0.98008414\n", + " 0.96752627 0.97346234 0.97840112 0.98224036 0.98490221 0.98633316\n", + " 0.97215857 0.97826559 0.98334273 0.98728777 0.99002231 0.99149217\n", + " 0.97572766 0.98196357 0.98714553 0.99117105 0.99396105 0.99546064\n", + " 0.9781586 0.98448116 0.98973385 0.99381384 0.99664146 0.99816126\n", + " 0.97940113 0.98576768 0.99105637 0.99516413 0.99801095 0.99954106]]\n", + "DEBUG:root:radec2pix: ccdpx: [[-4.45000000e+01 -4.99999797e-01]\n", + " [-4.45000000e+01 2.91928572e+02]\n", + " [-4.45000000e+01 5.84357143e+02]\n", + " [-4.45000000e+01 8.76785714e+02]\n", + " [-4.45000000e+01 1.16921429e+03]\n", + " [-4.45000000e+01 1.46164286e+03]\n", + " [-4.45000000e+01 1.75407143e+03]\n", + " [-4.45000001e+01 2.04650000e+03]\n", + " [-4.45000000e+01 -4.99999797e-01]\n", + " [ 2.47928571e+02 -5.00000034e-01]\n", + " [ 5.40357143e+02 -4.99999972e-01]\n", + " [ 8.32785714e+02 -4.99999760e-01]\n", + " [ 1.12521429e+03 -5.00000049e-01]\n", + " [ 1.41764286e+03 -4.99999867e-01]\n", + " [ 1.71007143e+03 -5.00000044e-01]\n", + " [ 2.00250000e+03 -4.99999770e-01]\n", + " [-4.45000001e+01 2.04650000e+03]\n", + " [ 2.47928571e+02 2.04650000e+03]\n", + " [ 5.40357143e+02 2.04650000e+03]\n", + " [ 8.32785714e+02 2.04650000e+03]\n", + " [ 1.12521429e+03 2.04650000e+03]\n", + " [ 1.41764286e+03 2.04650000e+03]\n", + " [ 1.71007143e+03 2.04650000e+03]\n", + " [ 2.00250000e+03 2.04650000e+03]\n", + " [ 2.00250000e+03 -4.99999770e-01]\n", + " [ 2.00250000e+03 2.91928572e+02]\n", + " [ 2.00250000e+03 5.84357143e+02]\n", + " [ 2.00250000e+03 8.76785714e+02]\n", + " [ 2.00250000e+03 1.16921429e+03]\n", + " [ 2.00250000e+03 1.46164286e+03]\n", + " [ 2.00250000e+03 1.75407143e+03]\n", + " [ 2.00250000e+03 2.04650000e+03]\n", + " [-4.35000000e+01 1.27000000e+02]\n", + " [-4.35000000e+01 4.85400000e+02]\n", + " [-4.35000000e+01 8.43800000e+02]\n", + " [-4.35000000e+01 1.20220000e+03]\n", + " [-4.35000000e+01 1.56060000e+03]\n", + " [-4.35000000e+01 1.91900000e+03]\n", + " [ 8.30000000e+01 5.00000045e-01]\n", + " [ 4.41400000e+02 5.00000251e-01]\n", + " [ 7.99800000e+02 4.99999878e-01]\n", + " [ 1.15820000e+03 4.99999746e-01]\n", + " [ 1.51660000e+03 5.00000268e-01]\n", + " [ 1.87500000e+03 4.99999743e-01]\n", + " [ 8.29999998e+01 2.04550000e+03]\n", + " [ 4.41400000e+02 2.04550000e+03]\n", + " [ 7.99800000e+02 2.04550000e+03]\n", + " [ 1.15820000e+03 2.04550000e+03]\n", + " [ 1.51660000e+03 2.04550000e+03]\n", + " [ 1.87500000e+03 2.04550000e+03]\n", + " [ 2.00150000e+03 1.27000000e+02]\n", + " [ 2.00150000e+03 4.85400000e+02]\n", + " [ 2.00150000e+03 8.43800000e+02]\n", + " [ 2.00150000e+03 1.20220000e+03]\n", + " [ 2.00150000e+03 1.56060000e+03]\n", + " [ 2.00150000e+03 1.91900000e+03]\n", + " [-4.35000000e+01 5.00000140e-01]\n", + " [-4.35000000e+01 5.00000140e-01]\n", + " [ 2.00150000e+03 2.04550000e+03]\n", + " [ 2.00150000e+03 2.04550000e+03]\n", + " [ 8.30000000e+01 1.27000000e+02]\n", + " [ 4.41400000e+02 1.27000000e+02]\n", + " [ 7.99800000e+02 1.27000000e+02]\n", + " [ 1.15820000e+03 1.27000000e+02]\n", + " [ 1.51660000e+03 1.27000000e+02]\n", + " [ 1.87500000e+03 1.27000000e+02]\n", + " [ 8.30000000e+01 4.85400000e+02]\n", + " [ 4.41400000e+02 4.85400000e+02]\n", + " [ 7.99800000e+02 4.85400000e+02]\n", + " [ 1.15820000e+03 4.85400000e+02]\n", + " [ 1.51660000e+03 4.85400000e+02]\n", + " [ 1.87500000e+03 4.85400000e+02]\n", + " [ 8.30000000e+01 8.43800000e+02]\n", + " [ 4.41400000e+02 8.43800000e+02]\n", + " [ 7.99800000e+02 8.43800000e+02]\n", + " [ 1.15820000e+03 8.43800000e+02]\n", + " [ 1.51660000e+03 8.43800000e+02]\n", + " [ 1.87500000e+03 8.43800000e+02]\n", + " [ 8.30000000e+01 1.20220000e+03]\n", + " [ 4.41400000e+02 1.20220000e+03]\n", + " [ 7.99800000e+02 1.20220000e+03]\n", + " [ 1.15820000e+03 1.20220000e+03]\n", + " [ 1.51660000e+03 1.20220000e+03]\n", + " [ 1.87500000e+03 1.20220000e+03]\n", + " [ 8.30000001e+01 1.56060000e+03]\n", + " [ 4.41400000e+02 1.56060000e+03]\n", + " [ 7.99800000e+02 1.56060000e+03]\n", + " [ 1.15820000e+03 1.56060000e+03]\n", + " [ 1.51660000e+03 1.56060000e+03]\n", + " [ 1.87500000e+03 1.56060000e+03]\n", + " [ 8.29999998e+01 1.91900000e+03]\n", + " [ 4.41400000e+02 1.91900000e+03]\n", + " [ 7.99800000e+02 1.91900000e+03]\n", + " [ 1.15820000e+0DEBUG:root:make_az_asym: xyp: shape: (96, 2)\n", + "DEBUG:root:radec2pix: fitpx: [[2135.5 4155.4999999 ]\n", + " [2135.5 3863.07142835]\n", + " [2135.5 3570.64285687]\n", + " [2135.5 3278.21428534]\n", + " [2135.5 2985.78571398]\n", + " [2135.5 2693.35714282]\n", + " [2135.50000001 2400.92857102]\n", + " [2135.50000006 2108.49999973]\n", + " [2135.5 4155.4999999 ]\n", + " [1843.07142859 4155.4999999 ]\n", + " [1550.64285722 4155.49999973]\n", + " [1258.21428568 4155.50000007]\n", + " [ 965.78571413 4155.50000028]\n", + " [ 673.35714288 4155.49999997]\n", + " [ 380.92857125 4155.50000021]\n", + " [ 88.4999998 4155.5000002 ]\n", + " [2135.50000006 2108.49999973]\n", + " [1843.07142866 2108.49999999]\n", + " [1550.64285735 2108.49999998]\n", + " [1258.21428559 2108.50000001]\n", + " [ 965.78571467 2108.49999998]\n", + " [ 673.35714297 2108.5 ]\n", + " [ 380.92857138 2108.5 ]\n", + " [ 88.49999984 2108.5 ]\n", + " [ 88.4999998 4155.5000002 ]\n", + " [ 88.49999999 3863.07142858]\n", + " [ 88.50000023 3570.64285698]\n", + " [ 88.4999999 3278.21428577]\n", + " [ 88.50000002 2985.78571428]\n", + " [ 88.50000017 2693.35714DEBUG:root:optics_fp: rtanth: [31.5581844 27.17194416 22.78577643 18.39973306 14.01393083 9.62869923\n", + " 5.24546963 0.89418442 31.5581844 31.89890725 32.82747441 34.29617149\n", + " 36.23938733 38.58549624 41.26583765 44.21967554 0.89418442 4.73506565\n", + " 9.08425224 13.45763509 17.83742574 22.21983534 26.60356968 30.98806655\n", + " 44.21967554 41.20406839 38.45324836 36.02791805 33.99780815 32.43720936\n", + " 31.41616867 30.98806655 29.64590075 24.27020709 18.89468775 13.51955065\n", + " 8.14555257 2.77930847 31.61752824 32.43532389 34.09156981 36.4722193\n", + " 39.44633291 42.89063222 2.34966506 7.60940668 12.96487432 18.33236521\n", + " 23.70371309 29.07678054 42.86493558 39.33911823 36.27027014 33.78315439\n", + " 32.01364237 31.08452713 31.54331756 31.54331756 30.97348847 30.97348847\n", + " 29.72484887 30.59328006 32.34398987 34.84424384 37.94616883 41.5151163\n", + " 24.36657877 25.41873926 27.5008582 30.40205338 33.9127594 37.86381389\n", + " 19.01831838 20.34892081 22.89680053 26.31066557 30.29920003 34.66460262\n", + " 13.69180262 15.4870140DEBUG:root:radec2pix: camVec Shape: (3, 96)\n", + "1 18.70915549 22.76005595 27.27289033 32.05313869\n", + " 8.42835902 11.10942753 15.28411843 20.03975859 25.04760117 30.18237029\n", + " 3.52303344 8.04946636 13.22795543 18.51935347 23.84862372 29.19503391]\n", + "DEBUG:root:radec2pix: curVec: [[-0.19770059 0.85294941 0.48310639]\n", + " [-0.1945538 0.83995811 0.50657595]\n", + " [-0.1913397 0.82603501 0.53014648]\n", + " [-0.18805419 0.81120363 0.55370055]\n", + " [-0.18469474 0.79549754 0.57712348]\n", + " [-0.18126179 0.77895914 0.6003056 ]\n", + " [-0.17775952 0.76163913 0.62314315]\n", + " [-0.17419593 0.74359635 0.64553872]\n", + " [-0.19770059 0.85294941 0.48310639]\n", + " [-0.22403447 0.84779367 0.48068124]\n", + " [-0.25075743 0.84182176 0.47797158]\n", + " [-0.27775067 0.83502577 0.4749595 ]\n", + " [-0.30489478 0.82740741 0.47163136]\n", + " [-0.3320723 0.81897694 0.46797944]\n", + " [-0.35916867 0.80975272 0.46400259]\n", + " [-0.38607271 0.79976112 0.45970644]\n", + " [-0.17419593 0.74359635 0.64553872]\n", + " [-0.20139974 0.73740414 0.64472729]\n", + " [-0.22900137 0.73049022 0.64338356]\n", + " [-0.25687859 0.72284993 0.64148372]\n", + " [-0.28491386 0.7144855 0.63901061]\n", + " [-0.31299208 0.70540672 0.63595387]\n", + " [-0.34099838 0.69563187 0.63231037]\n", + " [-0.36881759 0.68518849 0.62808464]\n", + " [-0.38607271 0.79976112 0.45970644]\n", + " [-0.38463964 0.7859629 0.48406061]\n", + " [-0.38287267 0.77125273 0.5085054 ]\n", + " [-0.38076152 0.75565622 0.53292058]\n", + " [-0.37830004 0.73920579 0.55719286]\n", + " [-0.37548634 0.72194219 0.5812138 ]\n", + " [-0.37232307 0.70391603 0.6048783 ]\n", + " [-0.36881759 0.68518849 0.62808464]\n", + " [-0.19642623 0.84738431 0.49331183]\n", + " [-0.19252573 0.8308326 0.52215997]\n", + " [-0.1885198 0.81290342 0.55104293]\n", + " [-0.184403 0.79365451 0.57974827]\n", + " [-0.18017623 0.77316384 0.60807418]\n", + " [-0.17584878 0.75152814 0.63583226]\n", + " [-0.2091167 0.85075788 0.48216308]\n", + " [-0.24166907 0.84389117 0.47900287]\n", + " [-0.27468809 0.83578956 0.47539694]\n", + " [-0.30795398 0.82645229 0.47131833]\n", + " [-0.34125056 0.81589818 0.46675284]\n", + " [-0.37436835 0.80416437 0.46170121]\n", + " [-0.18601224DEBUG:root:radec2pix: xyfp: [[32.31363499 31.47041645]\n", + " [32.3144687 27.08398795]\n", + " [32.31530242 22.69755946]\n", + " [32.31613613 18.31113097]\n", + " [32.31696984 13.92470248]\n", + " [32.31780355 9.53827398]\n", + " [32.31863726 5.15184549]\n", + " [32.31947097 0.765417 ]\n", + " [32.31363499 31.47041645]\n", + " [27.9272065 31.46958273]\n", + " [23.540778 31.46874902]\n", + " [19.15434951 31.46791531]\n", + " [14.76792102 31.4670816 ]\n", + " [10.38149253 31.46624788]\n", + " [ 5.99506403 31.46541417]\n", + " [ 1.60863554 31.46458045]\n", + " [32.31947097 0.765417 ]\n", + " [27.93304248 0.76458329]\n", + " [23.54661399 0.76374957]\n", + " [19.1601855 0.76291586]\n", + " [14.77375701 0.76208215]\n", + " [10.38732851 0.76124844]\n", + " [ 6.00090002 0.76041472]\n", + " [ 1.61447153 0.75958101]\n", + " [ 1.60863554 31.46458045]\n", + " [ 1.60946926 27.07815197]\n", + " [ 1.61030297 22.69172348]\n", + " [ 1.61113668 18.30529498]\n", + " [ 1.61197039 13.91886648]\n", + " [ 1.6128041 9.53243799]\n", + " [ 1.61363782 5.1460095 ]\n", + " [ 1.61447153 0.75958101]\n", + " [32.29899849 29.55791363]\n", + " [32.30002028 24.18191372]\n", + " [32.30104209 18.80591382]\n", + " [32.30206388 13.42991392]\n", + "281]\n", + " [ 88.49999997 2400.92857143]\n", + " [ 88.49999984 2108.5 ]\n", + " [2134.5 4027.99999995]\n", + " [2134.5 3669.59999994]\n", + " [2134.5 3311.20000034]\n", + " [2134.5 2952.80000006]\n", + " [2134.5 2594.39999997]\n", + " [2134.49999998 2236.00000031]\n", + " [2008.00000001 4154.49999991]\n", + " [1649.60000005 4154.49999977]\n", + " [1291.19999995 4154.50000012]\n", + " [ 932.80000008 4154.49999986]\n", + " [ 574.40000013 4154.49999983]\n", + " [ 215.99999993 4154.50000007]\n", + " [2007.99999975 2109.50000009]\n", + " [1649.5999999 2109.50000001]\n", + " [1291.19999978 2109.50000001]\n", + " [ 932.80000001 2109.5 ]\n", + " [ 574.40000043 2109.49999999]\n", + " [ 216.00000004 2109.5 ]\n", + " [ 89.50000001 4027.99999999]\n", + " [ 89.4999998 3669.60000015]\n", + " [ 89.50000012 3311.19999993]\n", + " [ 89.50000006 2952.79999997]\n", + " [ 89.49999988 2594.40000003]\n", + " [ 89.50000008 2235.99999999]\n", + " [2134.5 4154.49999983]\n", + " [2134.5 4154.49999983]\n", + " [ 89.49999987 2109.5 ]\n", + " [ 89.49999987 2109.5 ]\n", + " [2008. 4027.99999995]\n", + " [1649.60000002 4027.99999993]\n", + " [1291.20000002 4027.99999996]\n", + " [ 932.80000002 4027.99999996]\n", + " [ 574.4000002 4027.99999975]\n", + " [ 215.99999985 4028.00000015]\n", + " [2008.00000001 3669.59999986]\n", + " [1649.60000005 3669.59999982]\n", + " [1291.19999995 3669.60000009]\n", + " [ 932.79999997 3669.60000004]\n", + " [ 574.40000017 3669.59999983]\n", + " [ 215.99999977 3669.60000019]\n", + " [2007.99999999 3311.20000007]\n", + " [1649.5999999 3311.20000024]\n", + " [1291.20000003 3311.19999996]\n", + " [ 932.80000003 3311.19999997]\n", + " [ 574.40000015 3311.19999988]\n", + " [ 216.00000001 3311.19999999]\n", + " [2008.00000002 2952.79999987]\n", + " [1649.59999985 2952.80000027]\n", + " [1291.1999999 2952.80000011]\n", + " [ 932.80000032 2952.79999977]\n", + " [ 574.39999984 2952.80000009]\n", + " [ 216.00000025 2952.79999989]\n", + " [2007.99999995 2594.40000018]\n", + " [1649.59999988 2594.40000012]\n", + " [1291.19999985 2594.4000001 ]\n", + " [ 932.79999977 2594.4000001 ]\n", + " [ 574.39999985 2594.40000005]\n", + " [ 216.00000009 2594.39999997]\n", + " [2007.99999988 2236.00000015]\n", + " [1649.60000009 2235.99999997]\n", + " [1291.19999998 2236. ]\n", + " [ 932.79999991 2236.00000001]\n", + " [ 574.3999DEBUG:root:radec2pix: curVec: [[ 0.96691741 -0.07231797 -0.24462387]\n", + " [ 0.96166241 -0.0957408 -0.25698074]\n", + " [ 0.95560274 -0.11964651 -0.26927332]\n", + " [ 0.9487208 -0.14392904 -0.28144853]\n", + " [ 0.9410092 -0.16848051 -0.29345529]\n", + " [ 0.93247088 -0.19319416 -0.30524429]\n", + " [ 0.92311929 -0.21796559 -0.31676772]\n", + " [ 0.91297839 -0.24269321 -0.32797938]\n", + " [ 0.96691741 -0.07231797 -0.24462387]\n", + " [ 0.97186006 -0.08308411 -0.22042018]\n", + " [ 0.97615526 -0.09414941 -0.19559345]\n", + " [ 0.97974484 -0.10545661 -0.17023208]\n", + " [ 0.98258008 -0.11694724 -0.14442898]\n", + " [ 0.98462227 -0.12856435 -0.11828014]\n", + " [ 0.98584291 -0.14025368 -0.091884 ]\n", + " [ 0.98622384 -0.15196403 -0.0653412 ]\n", + " [ 0.91297839 -0.24269321 -0.32797938]\n", + " [ 0.91785813 -0.25556206 -0.30368483]\n", + " [ 0.92209897 -0.26849244 -0.27864906]\n", + " [ 0.9256424 -0.28141957 -0.25296081]\n", + " [ 0.92843979 -0.29428261 -0.22670972]\n", + " [ 0.93045209 -0.3070237 -0.19998838]\n", + " [ 0.93164999 -0.31958688 -0.17289455]\n", + " [ 0.93201444 -0.33191799 -0.14553192]\n", + " [ 0.98622384 -0.15196403 -0.065343 1.91900000e+03]\n", + " [ 1.51660000e+03 1.91900000e+03]\n", + " [ 1.87500000e+03 1.91900000e+03]]\n", + "9979 2236.00000002]\n", + " [ 215.99999986 2236.00000001]]\n", + " [32.30308568 8.05391402]\n", + " [32.30410748 2.67791411]\n", + " [30.40113787 31.45505294]\n", + " [25.02513797 31.45403115]\n", + " [19.64913807 31.45300935]\n", + " [14.27313817 31.45198755]\n", + " [ 8.89713826 31.45096576]\n", + " [ 3.52113836 31.44994396]\n", + " [30.40696816 0.7800535 ]\n", + " [25.03096826 0.7790317 ]\n", + " [19.65496836 0.7780099 ]\n", + " [14.27896845 0.77698811]\n", + " [ 8.90296855 0.77596631]\n", + " [ 3.52696865 0.77494451]\n", + " [ 1.62399904 29.55208334]\n", + " [ 1.62502084 24.17608344]\n", + " [ 1.62604264 18.80008353]\n", + " [ 1.62706443 13.42408364]\n", + " [ 1.62808623 8.04808373]\n", + " [ 1.62910803 2.67208383]\n", + " [32.29863784 31.4554136 ]\n", + " [32.29863784 31.4554136 ]\n", + " [ 1.62946868 0.77458386]\n", + " [ 1.62946868 0.77458386]\n", + " [30.40149852 29.55755297]\n", + " [25.02549862 29.55653118]\n", + " [19.64949872 29.55550938]\n", + " [14.27349882 29.55448759]\n", + " [ 8.89749891 29.55346579]\n", + " [ 3.52149901 29.55244399]\n", + " [30.40252032 24.18155307]\n", + " [25.02652042 24.18053128]\n", + " [19.65052052 24.17950948]\n", + " [14.27452061 24.17848769]\n", + " [ 8.89852071 24.17746589]\n", + " [ 3.52252081 24.17644409]\n", + " [30.40354212 18.80555317]\n", + " [25.02754221 18.80453137]\n", + " [19.65154231 18.80350958]\n", + " [14.27554241 18.80248779]\n", + " [ 8.89954251 18.80146598]\n", + " [ 3.5235426 18.80044419]\n", + " [30.40456392 13.42955327]\n", + " [25.02856401 13.42853147]\n", + " [19.65256411 13.42750967]\n", + " [14.27656421 13.42648788]\n", + " [ 8.9005643 13.42546608]\n", + " [ 3.5245644 13.42444429]\n", + " [30.40558571 8.05355336]\n", + " [25.02958581 8.05253157]\n", + " [19.6535859 8.05150977]\n", + " [14.277586 8.05048797]\n", + " [ 8.9015861 8.04946618]\n", + " [ 3.5255862 8.04844438]\n", + " [30.40660751 2.67755346]\n", + " [25.0306076 2.67653166]\n", + " [19.6546077 2.67550987]\n", + " [14.2786078 2.67448807]\n", + " [ 8.90260789 2.67346627]\n", + " [ 3.52660799 2.67244448]]\n", + "DEBUG:root:radec2pix: lat: [73.24603516 74.22569152 75.13651604 75.95087507 76.6389128 77.17037377\n", + " 77.51785702 77.66114392 73.24603516 74.25573072 75.20211387 76.05743745\n", + " 76.79113897 77.37139648 77.76826885 77.95827247 77.66114392 79.DEBUG:root:optics_fp: cphi: [-0.00832855 -0.00971656 -0.01163892 -0.01447769 -0.01909311 -0.02791171\n", + " -0.05146104 -0.30320505 -0.00832855 -0.1457499 -0.27524782 -0.39135911\n", + " -0.49141415 -0.57521551 -0.64415037 -0.70031796 -0.30320505 -0.98362937\n", + " -0.99556659 -0.99797672 -0.99884564 -0.99925418 -0.99947834 -0.99961448\n", + " -0.70031796 -0.75160095 -0.80539882 -0.85964958 -0.91101663 -0.95488339\n", + " -0.98595524 -0.99961448 -0.00938916 -0.01152859 -0.01488525 -0.02091069\n", + " -0.03488457 -0.10276119 -0.06880165 -0.23281216 -0.37919455 -0.50184326\n", + " -0.60029249 -0.67742851 -0.92933123 -0.99345681 -0.99774332 -0.99886819\n", + " -0.99932092 -0.99954725 -0.72211351 -0.78687071 -0.8534883 -0.91636505\n", + " -0.96706125 -0.99601335 -0.00880814 -0.00880814 -0.99960055 -0.99960055\n", + " -0.0731997 -0.24684669 -0.39969867 -0.52530483 -0.62403795 -0.69988601\n", + " -0.08935604 -0.29715482 -0.47014172 -0.60210737 -0.6983006 -0.76741609\n", + " -0.11456071 -0.37126057 -0.56474055 -0.69579203 -0.78162959 -0.83828312\n", + " -0.15923419 -0.48790573 -0.69122322 -0.80440059 -0.86841556 -0.90662579\n", + " -0.25884683 -0.68029192 -0.84621522 -0.91366637 -0.94562561 -0.96286848\n", + " -0.61966627 -0.93908148 -0.97786122 -0.98875506 -0.9932273 -0.99548108]\n", + "25921808\n", + " 80.88995617 82.54802878 84.22809839 85.92431704 87.62836983 89.29981459\n", + " 77.95827247 79.56096311 81.19447792 82.85294756 84.52972557 86.21521853\n", + " 87.88507254 89.29981459 73.68365855 74.84176377 75.86929863 76.71215801\n", + " 77.3149747 77.63003049 73.695993 74.89461964 75.97090871 76.86971486\n", + " 77.53277126 77.90734766 78.35340648 80.33462383 82.35957542 84.41843101\n", + " 86.50018709 88.58327287 78.6525924 80.63823128 82.66432935 84.71895211\n", + " 86.78327785 88.77209382 73.25300675 73.25300675 89.29197852 89.29197852\n", + " 74.14551493 75.39944683 76.53201019 77.48405712 78.19096994 78.59236983\n", + " 75.35843946 76.77706596 78.08438262 79.20977154 80.06643025 80.56299799\n", + " 76.44078432 78.03102057 79.5341606 80.87167145 81.93009942 82.56616105\n", + " 77.33417557 79.08997119 80.79891427 82.38701631 83.72204901 84.DEBUG:root:cartToSphere: vec: [[0.20581047 0.20196806 0.95752334]\n", + " [0.20764708 0.17549093 0.96233343]\n", + " [0.20921111 0.14832034 0.96655667]\n", + " [0.21050368 0.12056829 0.97012962]\n", + " [0.21152432 0.0923455 0.9730004 ]\n", + " [0.2122716 0.06376263 0.97512825]\n", + " [0.21274377 0.0349311 0.97648344]\n", + " [0.21293946 0.00596325 0.9770472 ]\n", + " [0.20581047 0.20196806 0.95752334]\n", + " [0.17940008 0.20380697 0.96243355]\n", + " [0.15228099 0.20537849 0.96676273]\n", + " [0.12456525 0.20668384 0.97044592]\n", + " [0.09636347 0.20772258 0.97342972]\n", + " [0.06778617 0.20849323 0.97567188]\n", + " [0.03894463 0.20899395 0.97714116]\n", + " [0.00995116 0.20922323 0.97781727]\n", + " [0.21293946 0.00596325 0.9770472 ]\n", + " [0.18558556 0.00601646 0.98260969]\n", + " [0.15752187 0.00606233 0.98749689]\n", + " [0.12885256 0.00610071 0.991645 ]\n", + " [0.09968382 0.00613144 0.99500027]\n", + " [0.07012532 0.00615431 0.99751921]\n", + " [0.04029051 0.00616917 0.99916896]\n", + " [0.01029607 0.00617591 0.99992792]\n", + " [0.00995116 0.20922323 0.97781727]\n", + " [0.01003858 0.18176716 0.98329036]\n", + " [0.01011374 0.15361557 0.98807893DEBUG:root:mm_to_pix: fitpx: [[0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]]\n", + "58091077\n", + " 77.9769458 79.86951112 81.76439499 83.61332437 85.3080928 86.55866797\n", + " 78.31436404 80.28605679DEBUG:root:mm_to_pix: fitpx.shape: (96, 2)\n", + " 0.7410478 0.64517254]\n", + " [-0.21963662 0.73297485 0.64382267]\n", + " [-0.25373648 0.72381237 0.64164901]\n", + " [-0.28809358 0.71356159 0.63861721]\n", + " [-0.32249571 0.70224064 0.63470828]\n", + " [-0.35673124 0.68988702 0.62991961]\n", + " [-0.3853962 0.79389413 0.47032104]\n", + " [-0.38341589 0.7763672 0.50024616]\n", + " [-0.38092356 0.75749515 0.53018708]\n", + " [-0.37790617 0.73733481 0.55993241]\n", + " [-0.37436028 0.71596139 0.58928234]\n", + " [-0.37029274 0.69347244 0.61804471]\n", + " [-0.1977792 0.85289033 0.48317851]\n", + " [-0.1977792 0.85289033 0.48317851]\n", + " [-0.36873547 0.68529046 0.62802161]\n", + " [-0.36873547 0.68529046 0.62802161]\n", + " [-0.20781195 0.84522781 0.49234555]\n", + " [-0.24050258 0.83829357 0.48930808]\n", + " [-0.27365971 0.83012674 0.48579827]\n", + " [-0.30706196 0.82072751 0.48178761]\n", + " [-0.34049264 0.81011496 0.47726146]\n", + " [-0.373742 0.79832614 0.47222059]\n", + " [-0.20403184 0.82860374 0.5213318 ]\n", + " [-0.2370657 0.82147128 0.51863744]\n", + " [-0.27056432 0.81311908 0.51539DEBUG:root:radec2pix: curVec: [[ 0.20413789 0.56799607 -0.7973131 ]\n", + " [ 0.17770051 0.57181982 -0.80090238]\n", + " [ 0.15056813 0.57516841 -0.80405879]\n", + " [ 0.12285058 0.57801537 -0.80672546]\n", + " [ 0.09465786 0.58033822 -0.80885564]\n", + " [ 0.06610039 0.58211838 -0.81041281]\n", + " [ 0.03728942 0.58334153 -0.81137054]\n", + " [ 0.00833707 0.58399798 -0.8117123 ]\n", + " [ 0.20413789 0.56799607 -0.7973131 ]\n", + " [ 0.20573996 0.54571713 -0.81232006]\n", + " [ 0.2070703 0.52256133 -0.82707409]\n", + " [ 0.20812932 0.4986039 -0.84147272]\n", + " [ 0.20891699 0.47392451 -0.85542343]\n", + " [ 0.20943278 0.4486076 -0.86884356]\n", + " [ 0.20967602 0.42274268 -0.88166013]\n", + " [ 0.20964631 0.3964245 -0.89380985]\n", + " [ 0.00833707 0.58399798 -0.8117123 ]\n", + " [ 0.00814701 0.56112559 -0.82769058]\n", + " [ 0.00794245 0.53733405 -0.8433321 ]\n", + " [ 0.00772422 0.5126939 -0.85853672]\n", + " [ 0.00749312 0.4872807 -0.87321325]\n", + " [ 0.00724992 0.46117676 -0.88727867]\n", + " [ 0.00699543 0.43447228 -0.90065804]\n", + " [ 0.00673056 0.40726536 -0.91328507]\n", + " [ 0.20964631 0.3964245 -0.89380DEBUG:root:fitpix2pix: ccdpx: shape: (96, 2)\n", + "DEBUG:root:optics_fp: sphi: [0.99996532 0.99995279 0.99993227 0.99989519 0.99981771 0.99961039\n", + " 0.998675 0.95292534 0.99996532 0.98932147 0.96137331 0.92023804\n", + " 0.87092602 0.8180019 0.76489888 0.71383104 0.95292534 0.18020339\n", + " 0.09405934 0.06358046 0.04803532 0.03861462 0.0322962 0.02776482\n", + " 0.71383104 0.65961808 0.59273329 0.51088414 0.41236963 0.296981\n", + " 0.16700975 0.02776482 0.99995592 0.99993354 0.99988921 0.99978135\n", + " 0.99939135 0.99470606 0.99763036 0.97252172 0.92531697 0.86495858\n", + " 0.79978055 0.73558862 0.36924717 0.1142084 0.06714366 0.04756397\n", + " 0.03684701 0.03008799 0.69177459 0.61711788 0.52111201 0.40034372\n", + " 0.25454379 0.08920432 0.99996121 0.99996121 0.02826205 0.02826205\n", + " 0.9973173 0.96905455 0.91664659 0.85091412 0.78139404 0.71425456\n", + " 0.99599975 0.95482931 0.88259094 0.79841512 0.71580463 0.64114939\n", + " 0.99341625 0.92852872 0.82526851 0.71824331 0.62374288 0.54523519\n", + " 0.98724084 0.87289633 0.72264131 0.59408727 0.49583709 0.DEBUG:root:radec2pix: xyfp Shape: (96, 2)\n", + "12 ]\n", + " [ 0.98120392 -0.17713339 -0.07656775]\n", + " [ 0.97529075 -0.20266378 -0.08795077]\n", + " [ 0.9684653 -0.22844343 -0.09944127]\n", + " [ 0.9607182 -0.25436464 -0.11099173]\n", + " [ 0.95205047 -0.28032148 -0.12255515]\n", + " [ 0.94247442 -0.30620802 -0.13408434]\n", + " [ 0.93201444 -0.33191799 -0.14553192]\n", + " [ 0.96474165 -0.08250127 -0.24993417]\n", + " [ 0.95776295 -0.11154765 -0.265042 ]\n", + " [ 0.94955689 -0.14121431 -0.28000042]\n", + " [ 0.94010559 -0.17130316 -0.29471461]\n", + " [ 0.92941452 -0.20161777 -0.30909372]\n", + " [ 0.91751277 -0.2319671 -0.32305042]\n", + " [ 0.96913142 -0.07705148 -0.23419512]\n", + " [ 0.97476181 -0.09045611 -0.20410074]\n", + " [ 0.97936085 -0.10425337 -0.17315763]\n", + " [ 0.98283489 -0.1183359 -0.14153512]\n", + " [ 0.98511269 -0.13259896 -0.10940981]\n", + " [ 0.98614605 -0.14694397 -0.07696388]\n", + " [ 0.91521649 -0.24820745 -0.31744579]\n", + " [ 0.92077572 -0.26402846 -0.28716032]\n", + " [ 0.92531598 -0.2798772 -0.25584973]\n", + " [ 0.92874368 -0.29564009 -0.22367859]\n", + " [ 0.93098694 -0.31121046 -0.19081764]\n", + " [ 0.93199601 -0.529]\n", + " [-0.30430418 0.8035488 0.51157433]\n", + " [-0.33806848 0.79277923 0.50715954]\n", + " [-0.3716469 0.78084677 0.50215227]\n", + " [-0.2001201 0.81059743 0.55034875]\n", + " [-0.23342117 0.80325938 0.54798625]\n", + " [-0.26718557 0.79472216 0.54500327]\n", + " [-0.30119017 0.78498744 0.5413679 ]\n", + " [-0.33521916 0.77407308 0.53706516]\n", + " [-0.36906181 0.76201468 0.53209681]\n", + " [-0.19606973 0.79126754 0.57918248]\n", + " [-0.22955946 0.78371779 0.57713853]\n", + " [-0.26351309 0.77499551 0.57440649]\n", + " [-0.29770919 0.76510184 0.57095396]\n", + " [-0.33193327 0.7540538 0.56676553]\n", + " [-0.36597411 0.74188668 0.5618426 ]\n", + " [-0.19188116 0.77069231 0.60763063]\n", + " [-0.22548078 0.76292455 0.60589153]\n", + " [-0.25954751 0.75401609 0.60340271]\n", + " [-0.2938617 0.74396774 0.60013107]\n", + " [-0.32821013 0.73279639 0.59606003]\n", + " [-0.3623812 0.72053778 0.59118963]\n", + " [-0.18756374 0.74896856 0.63550448]\n", + " [-0.2211953 0.74097629 0.63405581]\n", + " [-0.25529972 0.73188022 0.6318017 ]\n", + " [-0.28965857 0.72168137 0.62870813]\n", + " [-0.32405947 0.71039738 0.62475677]\n", + " [-0.35829074 0.69806522 0.61994572]]\n", + "32648604 -0.15744935]\n", + " [ 0.98414349 -0.162846 -0.07030481]\n", + " [ 0.97739327 -0.19395032 -0.08417647]\n", + " [ 0.96928138 -0.22548542 -0.09823411]\n", + " [ 0.95978658 -0.2572514 -0.11238967]\n", + " [ 0.94891084 -0.28905305 -0.12655652]\n", + " [ 0.93668182 -0.32069516 -0.14064769]\n", + " [ 0.96691871 -0.07243338 -0.24458456]\n", + " [ 0.96691871 -0.07243338 -0.24458456]\n", + " [ 0.93205186 -0.33178878 -0.14558687]\n", + " [ 0.93205186 -0.33178878 -0.14558687]\n", + " [ 0.96696733 -0.08718848 -0.23952526]\n", + " [ 0.9726305 -0.10077611 -0.20936591]\n", + " [ 0.97725601 -0.11473403 -0.17834458]\n", + " [ 0.98074996 -0.12895256 -0.14663132]\n", + " [ 0.98304096 -0.14332631 -0.11440296]\n", + " [ 0.98408066 -0.15775661 -0.08184193]\n", + " [ 0.96001511 -0.11642535 -0.25459011]\n", + " [ 0.96574508 -0.13051197 -0.22428346]\n", + " [ 0.97042448 -0.1449021 -0.19307954]\n", + " [ 0.97395906 -0.15948258 -0.16114916]\n", + " [ 0.97627703 -0.17414773 -0.12866905]\n", + " [ 0.97732945 -0.18879946 -0.09582227]\n", + " [ 0.95182003 -0.14627114 -0.26952438]\n", + " [ 0.95757764 -0.1608242193564\n", + " 0.96591838 0.73294127 0.53284125 0.40646497 0.32525713 0.2699709\n", + " 0.78486541 0.34369459 0.20925449 0.1495441 0.11618746 0.09496005]\n", + "135 -0.23912665]\n", + " [ 0.96227945 -0.17560708 -0.20779899]\n", + " [ 0.9658311 -0.19051456 -0.17571139]\n", + " [ 0.96816035 -0.20543901 -0.14303965]\n", + " [ 0.96921755 -0.22028285 -0.10996728]\n", + " [ 0.94236394 -0.17652552 -0.28423396]\n", + " [ 0.94810953 -0.19150068 -0.25380269]\n", + " [ 0.9528017 -0.2066454 -0.22241086]\n", + " [ 0.95634614 -0.22184644 -0.19022677]\n", + " [ 0.95867025 -0.23699959 -0.15742472]\n", + " [ 0.95972379 -0.25200691 -0.12418839]\n", + " [ 0.93165219 -0.20699132 -0.29862819]\n", + " [ 0.93734569 -0.2223525 -0.26822083]\n", + " [ 0.94199555 -0.23782069 -0.23682422]\n", + " [ 0.94550762 -0.25328298 -0.20460469]\n", + " [ 0.94780932 -0.26863475 -0.17173486]\n", + " [ 0.94885022 -0.28377668 -0.1383982 ]\n", + " [ 0.91971388 -0.23747724 -0.31261949]\n", + " [ 0.92531516 -0.25318533 -0.28229247]\n", + " [ 0.92988977 -0.26894131 -0.25094935]\n", + " [ 0.93334395 -0.2846319 -0.21875502]\n", + " [ 0.93560554 -0.30015108 -0.18588063]\n", + " [ 0.93662453 -0.3153DEBUG:root:fitpix2pix: visCut: True\n", + " 82.29662619 84.33088528 86.36037199 88.26434016]\n", + "]\n", + " [0.01017639 0.12487279 0.99212057]\n", + " [0.01022623 0.09564544 0.99536294]\n", + " [0.01026295 0.0660437 0.99776395]\n", + " [0.01028629 0.03618151 0.99929229]\n", + " [0.01029607 0.00617591 0.99992792]\n", + " [0.20655553 0.19052281 0.95970614]\n", + " [0.20862193 0.15759064 0.96521608]\n", + " [0.21028039 0.12372836 0.9697801 ]\n", + " [0.21153069 0.08914025 0.97329789]\n", + " [0.21237025 0.05403012 0.97569443]\n", + " [0.212796 0.01860347 0.97691953]\n", + " [0.1943962 0.20271324 0.95974864]\n", + " [0.16153559 0.2047859 0.96538541]\n", + " [0.12772204 0.20645854 0.97008348]\n", + " [0.0931597 0.207731 0.97373975]\n", + " [0.05805212 0.20860063 0.97627646]\n", + " [0.02260459 0.20906415 0.97764064]\n", + " [0.2011068 0.00608691 0.97955041]\n", + " [0.16709142 0.00614821 0.98592224]\n", + " [0.1321133 0.00619816 0.99121524]\n", + " [0.09636698 0.00623643 0.99532633]\n", + " [0.06005439 0.00626269 0.99817546]\n", + " [0.02338579 0.00627666 0.99970681]\n", + " [0.01009044 0.19734414 0.98028234]\n", + " [0.01019035 0.16321317 0.9865382 ]\n", + " [0.010271429739 -0.15250894]]\n", + "DEBUG:root:radec2pix: fitpx: [[ 2.13550000e+03 -4.99999797e-01]\n", + " [ 2.13550000e+03 2.91928572e+02]\n", + " [ 2.13550000e+03 5.84357143e+02]\n", + " [ 2.13550000e+03 8.76785714e+02]\n", + " [ 2.13550000e+03 1.16921429e+03]\n", + " [ 2.13550000e+03 1.46164286e+03]\n", + " [ 2.13550000e+03 1.75407143e+03]\n", + " [ 2.13550000e+03 2.04650000e+03]\n", + " [ 2.13550000e+03 -4.99999797e-01]\n", + " [ 2.42792857e+03 -5.00000034e-01]\n", + " [ 2.72035714e+03 -4.99999972e-01]\n", + " [ 3.01278571e+03 -4.99999760e-01]\n", + " [ 3.30521429e+03 -5.00000049e-01]\n", + " [ 3.59764286e+03 -4.99999867e-01]\n", + " [ 3.89007143e+03 -5.00000044e-01]\n", + " [ 4.18250000e+03 -4.99999770e-01]\n", + " [ 2.13550000e+03 2.04650000e+03]\n", + " [ 2.42792857e+03 2.04650000e+03]\n", + " [ 2.72035714e+03 2.04650000e+03]\n", + " [ 3.01278571e+03 2.04650000e+03]\n", + " [ 3.30521429e+03 2.04650000e+03]\n", + " [ 3.59764286e+03 2.04650000e+03]\n", + " [ 3.89007143e+03 2.04650000e+03]\n", + " [ 4.18250000e+03 2.04650000e+03]\n", + " [ 4.18250000e+03 -4.99999770e-01]\n", + " [ 4.18250000e+03 2.91928572e+02]\n", + " [ 4.18250000e+03 5.84357143e+02]\n", + " [ 4.18250000e+03 8.76785714e+02]\n", + " [ 4.18250000e+03 1.16921429e+03]\n", + " [ 4.18250000e+03 1.46164286e+03]\n", + " [ 4.18250000e+03 1.75407143e+03]\n", + " [ 4.18250000e+03 2.04650000e+03]\n", + " [ 2.13650000e+03 1.27000000e+02]\n", + " [ 2.13650000e+03 4.85400000e+02]\n", + " [ 2.13650000e+03 8.43800000e+02]\n", + " [ 2.13650000e+03 1.20220000e+03]\n", + " [ 2.13650000e+03 1.56060000e+03]\n", + " [ 2.13650000e+03 1.91900000e+03]\n", + " [ 2.26300000e+03 5.00000045e-01]\n", + " [ 2.62140000e+03 5.00000251e-01]\n", + " [ 2.97980000e+03 4.99999878e-01]\n", + " [ 3.33820000e+03 4.99999746e-01]\n", + " [ 3.69660000e+03 5.00000268e-01]\n", + " [ 4.05500000e+03 4.99999743e-01]\n", + " [ 2.26300000e+03 2.04550000e+03]\n", + " [ 2.62140000e+03 2.04550000e+03]\n", + " [ 2.97980000e+03 2.04550000e+03]\n", + " [ 3.33820000e+03 2.04550000e+03]\n", + " [ 3.69660000e+03 2.04550000e+03]\n", + " [ 4.05500000e+03 2.04550000e+03]\n", + " [ 4.18150000e+03 1.27000000e+02]\n", + " [ 4.18150000e+03 4.85400000e+02]\n", + " [ 4.18150000e+03 8.43800000e+02]\n", + " [ 4.18150000e+03 1.20220000e+03]\n", + " [ 4.18150000e+03 1.56060000e+03]\n", + " [ 4.18150000e+03 1.91900000e+03]\n", + " [ 2.13650000e+03 5.00000140e-01]\n", + " [ 2.13650000e+03 5.00000140e-01]\n", + " [ 4.18150000e+03 2.04550000e+03]\n", + " [ 4.18150000e+03 2.04550000e+03]\n", + " [ 2.26300000e+03 1.27000000e+02]\n", + " [ 2.62140000e+03 1.27000000e+02]\n", + " [ 2.97980000e+03 1.27000000e+02]\n", + " [ 3.33820000e+03 1.27000000e+02]\n", + " [ 3.69660000e+03 1.27000000e+02]\n", + " [ 4.05500000e+03 1.27000000e+02]\n", + " [ 2.26300000e+03 4.85400000e+02]\n", + " [ 2.62140000e+03 4.85400000e+02]\n", + " [ 2.97980000e+03 4.85400000e+02]\n", + " [ 3.33820000e+03 4.85400000e+02]\n", + " [ 3.69660000e+03 4.85400000e+02]\n", + " [ 4.05500000e+03 4.85400000e+02]\n", + " [ 2.26300000e+03 8.43800000e+02]\n", + " [ 2.62140000e+03 8.43800000e+02]\n", + " [ 2.97980000e+03 8.43800000e+02]\n", + " [ 3.33820000e+03 8.43800000e+02]\n", + " [ 3.69660000e+03 8.43800000e+02]\n", + " [ 4.05500000e+03 8.43800000e+02]\n", + " [ 2.26300000e+03 1.20220000e+03]\n", + " [ 2.62140000e+03 1.20220000e+03]\n", + " [ 2.97980000e+03 1.20220000e+03]\n", + " [ 3.33820000e+03 1.20220000e+03]\n", + " [ 3.69660000e+03 1.20220000e+03]\n", + " [ 4.05500000e+03 1.20220000e+03]\n", + " [ 2.2630000DEBUG:root:radec2pix: curVec Shape: (96, 3)\n", + "0e+03 1.56060000e+03]\n", + " [ 2.62140000e+03 1.56060000e+03]\n", + " [ 2.97980000e+03 1.56060000e+03]\n", + " [ 3.33820000e+03 1.56060000e+03]\n", + " [ 3.69660000e+03 1.56060000e+03]\n", + " [ 4.05500000e+03 1.56060000e+03]\n", + " [ 2.26300000e+03 1.91900000e+03]\n", + " [ 2.62140000e+03 1.91900000e+03]\n", + " [ 2.97980000e+03 1.91900000e+03]\n", + " [ 3.33820000e+03 1.91900000e+03]\n", + " [ 3.69660000e+03 1.91900000e+03]\n", + " [ 4.05500000e+03 1.91900000e+03]]\n", + "985]\n", + " [ 0.18221373 0.39891494 -0.89870186]\n", + " [ 0.15408471 0.40112798 -0.90296968]\n", + " [ 0.12536382 0.4030377 -0.90655641]\n", + " [ 0.09615697 0.40462216 -0.90941451]\n", + " [ 0.06657315 0.40586336 -0.91150587]\n", + " [ 0.03672541 0.40674752 -0.91280211]\n", + " [ 0.00673056 0.40726536 -0.91328507]\n", + " [ 0.19270911 0.56964495 -0.79897924]\n", + " [ 0.15982505 0.57401474 -0.80309591]\n", + " [ 0.12600617 0.57764419 -0.80650458]\n", + " [ 0.09145489 0.58049025 -0.80911499]\n", + " [ 0.05637457 0.58251878 -0.8108599 ]\n", + " [ 0.02097036 0.5837053 -0.81169475]\n", + " [ 0.20478035 0.55840842 -0.803893DEBUG:root:fitpix2pix: ccdpx: shape: (96, 2)\n", + "68]\n", + " [ 0.20656004 0.53050365 -0.82213066]\n", + " [ 0.20793219 0.501356 -0.83988474]\n", + " [ 0.20889694 0.47111029 -0.85698143]\n", + " [ 0.20945338 0.439922 -0.87326853]\n", + " [ 0.20960035 0.4079581 -0.88861571]\n", + " [ 0.00835557 0.57414165 -0.81871335]\n", + " [ 0.00811377 0.54548241 -0.838083 ]\n", + " [ 0.00785084 0.51551219 -0.85684628]\n", + " [ 0.00756826 0.48436794 -0.87483165]\n", + " [ 0.00726744 0.45220133 -0.89188628]\n", + " [ 0.00694991 0.41918171 -0.90787576]\n", + " [ 0.19777853 0.39763364 -0.89597497]\n", + " [ 0.16367564 0.40050374 -0.90155812]\n", + " [ 0.12863054 0.40293082 -0.9061462 ]\n", + " [ 0.09283752 0.40487282 -0.90964784]\n", + " [ 0.05649737 0.40629664 -0.91199292]\n", + " [ 0.01981981 0.40717878 -0.91313341]\n", + " [ 0.20405473 0.56793531 -0.79737767]\n", + " [ 0.20405473 0.56793531 -0.79737767]\n", + " [ 0.00683417 0.407358 -0.91324299]\n", + " [ 0.00683417 0.407358 -0.91324299]\n", + " [ 0.19338531 0.56008794 -0.80554555]\n", + " [ 0.19504145 0.53209306 -0.82391493]\n", + " [ 0.19631448 0.5028481 -0.84178644]\n", + " [ 0.19720432 DEBUG:root:optics_fp: xyfp: [[ 0.26283402 -31.55708986]\n", + " [ 0.26401791 -27.17066146]\n", + " [ 0.2652018 -22.78423305]\n", + " [ 0.26638569 -18.39780463]\n", + " [ 0.26756957 -14.01137623]\n", + " [ 0.26875346 -9.62494781]\n", + " [ 0.26993735 -5.2385194 ]\n", + " [ 0.27112123 -0.85209099]\n", + " [ 0.26283402 -31.55708986]\n", + " [ 4.64926244 -31.55827376]\n", + " [ 9.03569085 -31.55945764]\n", + " [ 13.42211926 -31.56064153]\n", + " [ 17.80854767 -31.56182542]\n", + " [ 22.19497608 -31.56300931]\n", + " [ 26.5814045 -31.56419319]\n", + " [ 30.96783291 -31.56537708]\n", + " [ 0.27112123 -0.85209099]\n", + " [ 4.65754965 -0.85327487]\n", + " [ 9.04397805 -0.85445876]\n", + " [ 13.43040647 -0.85564265]\n", + " [ 17.81683488 -0.85682653]\n", + " [ 22.20326329 -0.85801042]\n", + " [ 26.5896917 -0.85919431]\n", + " [ 30.97612012 -0.8603782 ]\n", + " [ 30.96783291 -31.56537708]\n", + " [ 30.9690168 -27.17894867]\n", + " [ 30.97020068 -22.79252025]\n", + " [ 30.97138456 -18.40609184]\n", + " [ 30.97256845 -14.01966343]\n", + " [ 30.97375234 -9.63323502]\n", + " [ 30.97493622 -5.24680661]\n", + " [ 30.97612012 -0.8603782 ]\n", + " [ 0.2783502 -29.64459399]\n", + " [ 0.27980117 DEBUG:root:fitpix2pix: visCut: True\n", + "DEBUG:root:mm_to_pix: fitpx: [[0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]]\n", + "0.47249748 -0.85898579]\n", + " [ 0.19770962 0.44119641 -0.87536086]\n", + " [ 0.1978288 0.40911194 -0.89078122]\n", + " [ 0.1603612 0.56438293 -0.80978775]\n", + " [ 0.16166744 0.53616445 -0.82848737]\n", + " [ 0.16265979 0.50667753 -0.84665204]\n", + " [ 0.1633373 0.47606502 -0.86410822]\n", + " [ 0.16369753 0.44448123 -0.88070401]\n", + " [ 0.16373797 0.41209363 -0.89630838]\n", + " [ 0.12640203 0.56795328 -0.81329675]\n", + " [ 0.12735743 0.53955791 -0.83226039]\n", + " [ 0.1280675 0.50987862 -0.85066004]\n", + " [ 0.12853072 0.47905639 -0.868323 ]\n", + " [ 0.12874414 0.44724463 -0.88509728]\n", + " [ 0.12870496 0.41461135 -0.90085097]\n", + " [ 0.0917098 0.5707557 -0.81598238]\n", + " [ 0.09231172 0.54222939 -0.8351442 ]\n", + " [ 0.09273597 0.51240675 -0.85372089]\n", + " [ 0.09298112 0.48142697 -0.87154035]\n", + " [ 0.09304461 0.44944269 -0.88845032]\n", + " [ 0.09292415 0.41662246 -0.90431788]\n", + " [ 0.05648761 0.57275566 -0.81777754]\n", + " [ 0.05673263 0.54414326 -0.83707199]\n", + " [ 0.05686685 0.51422561 -0.8557676 ]\n", + " [ 0.05688968 0.48314052 -0.87369262]\n", + " [ 0.05679985 0.45104004 -0.89069448]\n", + " [ 0.05659636 0.41809322 -0.90663935]\n", + " [ 0.02094078 0.57392828 -0.818 0.12814101 0.99170277]\n", + " [0.0103331 0.0923229 0.9956755 ]\n", + " [0.01037483 0.05596168 0.99837901]\n", + " [0.01039617 0.01926848 0.99976029]\n", + " [0.20572824 0.20188558 0.95755841]\n", + " [0.20572824 0.20188558 0.95755841]\n", + " [0.01039877 0.00627861 0.99992622]\n", + " [0.01039877 0.00627861 0.99992622]\n", + " [0.19517474 0.19130075 0.96193079]\n", + " [0.1621771 0.19325024 0.96765331]\n", + " [0.12822694 0.19482509 0.9724202 ]\n", + " [0.09352723 0.19602426 0.97612865]\n", + " [0.05828102 0.19684438 0.97870098]\n", + " [0.02269376 0.19728171 0.98008414]\n", + " [0.19712067 0.15822879 0.96752627]\n", + " [0.1637837 0.1598311 0.97346234]\n", + " [0.12949375 0.16112922 0.97840112]\n", + " [0.09445078 0.16212009 0.98224036]\n", + " [0.05885684 0.16279899 0.98490221]\n", + " [0.0229182 0.16316141 0.98633316]\n", + " [0.19868404 0.12422708 0.97215857]\n", + " [0.16507817 0.12548158 0.97826559]\n", + " [0.13051704 0.12650047 0.98334273]\n", + " [0.09519827 0.12727979 0.98728777]\n", + " [0.05932353 0.12781451 0.99002231]\n", + " [0.02310025 0.12810021 0.99149217]\n", + " [0.19986372 0.08949878 0.97572766]\n", + " [0.16605732 0.09040196 0.98196357]\n", + " [0.DEBUG:root:radec2pix: xyfp: [[ -0.230877 31.363511 ]\n", + " [ -0.230877 26.97708243]\n", + " [ -0.230877 22.59065386]\n", + " [ -0.230877 18.20422528]\n", + " [ -0.230877 13.81779671]\n", + " [ -0.230877 9.43136815]\n", + " [ -0.230877 5.04493957]\n", + " [ -0.230877 0.658511 ]\n", + " [ -0.230877 31.363511 ]\n", + " [ -4.61730557 31.363511 ]\n", + " [ -9.00373414 31.363511 ]\n", + " [-13.39016272 31.363511 ]\n", + " [-17.77659129 31.363511 ]\n", + " [-22.16301986 31.363511 ]\n", + " [-26.54944843 31.363511 ]\n", + " [-30.935877 31.363511 ]\n", + " [ -0.230877 0.658511 ]\n", + " [ -4.61730558 0.658511 ]\n", + " [ -9.00373414 0.658511 ]\n", + " [-13.39016271 0.658511 ]\n", + " [-17.77659128 0.658511 ]\n", + " [-22.16301986 0.658511 ]\n", + " [-26.54944843 0.658511 ]\n", + " [-30.935877 0.658511 ]\n", + " [-30.935877 31.363511 ]\n", + " [-30.935877 26.97708243]\n", + " [-30.935877 22.59065386]\n", + " [-30.935877 18.20422528]\n", + " [-30.935877 13.81779671]\n", + " [-30.935877 9.43136814]\n", + " [-30.935877 5.04493957]\n", + " [-30.935877 0.658511 ]\n", + " [ -0.245877 29.451011 ]\n", + " [ -0.245877 63778]\n", + " [ 0.02082621 0.54527362 -0.83799937]\n", + " [ 0.02066716 0.51530874 -0.85675537]\n", + " [ 0.02046451 0.48417068 -0.87473422]\n", + " [ 0.02021892 0.45201116 -0.89178311]\n", + " [ 0.0199312 0.41899949 -0.90776769]]\n", + "DEBUG:root:radec2pix: curVec Shape: (96, 3)\n", + "DEBUG:root:radec2pix: camVec: [[0.20658103 0.20838989 0.20993522 0.21121099 0.21221385 0.21294172\n", + " 0.21339307 0.21356684 0.20658103 0.18015754 0.1530338 0.12531307\n", + " 0.09710338 0.06851504 0.03965966 0.01064976 0.21356684 0.18621882\n", + " 0.15815829 0.12949192 0.10032565 0.07076705 0.04092766 0.01092393\n", + " 0.01064976 0.01072986 0.01079662 0.01085001 0.01088978 0.0109156\n", + " 0.01092708 0.01092393 0.20731213 0.20935192 0.21098964 0.21221814\n", + " 0.21303349 0.21343308 0.19515895 0.16228971 0.12847052 0.09389848\n", + " 0.05877657 0.02331064 0.20173739 0.16772694 0.13275239 0.09700904\n", + " 0.06069518 0.02401827 0.01078606 0.01087623 0.01094616 0.01099551\n", + " 0.01102363 0.01102984 0.2064986 0.2064986 0.01102671 0.01102671\n", + " 0.19592714 0.16292559 0.1289709 0.09426176 0.0590016 0.02339654\n", + " 0.19785166 0.16451646 0.13022261 0.09517088 0.05956467 0.02361044\n", + " 0.19939573 0.16579218 0.13122742 0.09590173 0.06001727 0.02378066\n", + " 0.20055377 0.16674959 0.13198281 0.09645193 0.06035751 0.0239064\n", + " 0.20132229 0.16738526 0.13248471 0.09681723 0.06058199 0.02398618\n", + " 0.20169858 0.16769559 0.13272857 0.09699294 0.06068709 0.02401844]\n", + " [0.20098859 0.17447006 0.14727238 0.11949936 0.09125926 0.06266255\n", + " 0.03382097 0.00484709 0.20098859 0.20282418 0.20440426 0.20572264\n", + " 0.20677589 0.2075618 0.2080787 0.20832528 0.00484709 0.00490326\n", + " 0.00495363 0.00499813 0.0050366 0.00506881 0.00509451 0.00511348\n", + " 0.20832528 0.18083307 0.15264908 0.12387974 0.09463112 0.06501141\n", + " 0.0351331 0.00511348 0.18952259 0.15655094 0.12266162 0.08805229\n", + " 0.05292621 0.01748945 0.20172997 0.20380791 0.20549566 0.20678588\n", + " 0.20767444 0.20815839 0.00497187 0.00503783 0.00509482 0.00514259\n", + " 0.00518073 0.00520877 0.19643015 0.16225698 0.1271506 0.09130636\n", + " 0.0549237 0.01821176 24.075011 ]\n", + " [ -0.245877 18.699011 ]\n", + " [ -0.245877 13.323011 ]\n", + " [ -0.245877 7.947011 ]\n", + " [ -0.245877 2.571011 ]\n", + " [ -2.143377 31.348511 ]\n", + " [ -7.519377 31.348511 ]\n", + " [-12.895377 31.348511 ]\n", + " [-18.271377 31.348511 ]\n", + " [-23.647377 31.348511 ]\n", + " [-29.023377 31.348511 ]\n", + " [ -2.143377 0.673511 ]\n", + " [ -7.519377 0.673511 ]\n", + " [-12.895377 0.673511 ]\n", + " [-18.271377 0.673511 ]\n", + " [-23.64737701 0.673511 ]\n", + " [-29.023377 0.673511 ]\n", + " [-30.920877 29.451011 ]\n", + " [-30.920877 24.075011 ]\n", + " [-30.920877 18.699011 ]\n", + " [-30.920877 13.323011 ]\n", + " [-30.920877 7.947011 ]\n", + " [-30.920877 2.571011 ]\n", + " [ -0.245877 31.348511 ]\n", + " [ -0.245877 31.348511 ]\n", + " [-30.920877 0.673511 ]\n", + " [-30.920877 0.673511 ]\n", + " [ -2.143377 29.451011 ]\n", + " [ -7.519377 29.451011 ]\n", + " [-12.895377 29.451011 ]\n", + " [-18.271377 29.451011 ]\n", + " [-23.647377 29.451011 ]\n", + " [-29.023377 29.451011 ]\n", + " [ -2.143377 24.075011 ]\n", + " [ -7.519377 24.075011 ]\n", + "-24.26859418]\n", + " [ 0.28125214 -18.89259438]\n", + " [ 0.28270311 -13.51659457]\n", + " [ 0.28415408 -8.14059477]\n", + " [ 0.28560505 -2.76459497]\n", + " [ 2.175338 -31.54260605]\n", + " [ 7.55133781 -31.54405702]\n", + " [ 12.92733761 -31.54550799]\n", + " [ 18.30333742 -31.54695896]\n", + " [ 23.67933722 -31.54840993]\n", + " [ 29.05533702 -31.5498609 ]\n", + " [ 2.18361712 -0.86760716]\n", + " [ 7.55961692 -0.86905814]\n", + " [ 12.93561673 -0.87050911]\n", + " [ 18.31161653 -0.87196007]\n", + " [ 23.68761633 -0.87341105]\n", + " [ 29.06361614 -0.87486202]\n", + " [ 30.95334909 -29.6528731 ]\n", + " [ 30.95480005 -24.27687329]\n", + " [ 30.95625103 -18.90087349]\n", + " [ 30.95770199 -13.52487368]\n", + " [ 30.95915297 -8.14887388]\n", + " [ 30.96060394 -2.77287408]\n", + " [ 0.27783807 -31.54209392]\n", + " [ 0.27783807 -31.54209392]\n", + " [ 30.96111607 -0.87537415]\n", + " [ 30.96111607 -0.87537415]\n", + " [ 2.17585013 -29.64510611]\n", + " [ 7.55184994 -29.64655709]\n", + " [ 12.92784974 -29.64800806]\n", + " [ 18.30384955 -29.64945903]\n", + " [ 23.67984935 -29.65091 ]\n", + " [ 29.05584916 -29.65236097]\n", + " [ 2.1773011 -24.26910631]\n", + " [ 7.55330091 -24.27055728]\n", + "13129265 0.09113695 0.98714553]\n", + " [0.09576573 0.09169995 0.99117105]\n", + " [0.05967819 0.09208666 0.99396105]\n", + " [0.02323871 0.09229337 0.99546064]\n", + " [0.20065641 0.05424725 0.9781586 ]\n", + " [0.16671646 0.05479478 0.98448116]\n", + " [0.13181555 0.05524091 0.98973385]\n", + " [0.09614872 0.05558298 0.99381384]\n", + " [0.05991775 0.05581806 0.99664146]\n", + " [0.0233323 0.05594375 0.99816126]\n", + " [0.20105858 0.01867818 0.97940113]\n", + " [0.16705125 0.01886665 0.98576768]\n", + " [0.13208139 0.0190203 0.99105637]\n", + " [0.09634357 0.01913813 0.99516413]\n", + " [0.06003972 0.01921909 0.99801095]\n", + " [0.02338002 0.01926233 0.99954106]]\n", + " [ 12.92930071 -24.27200825]\n", + " [ 18.30530052 -24.27345922]\n", + " [ 23.68130032 -24.27491019]\n", + " [ 29.05730013 -24.27636116]\n", + " [ 2.17875207 -18.89310651]\n", + " [ 7.55475188 -18.89455748]\n", + " [ 12.93075168 -18.89600845]\n", + " [ 18.30675149 -18.89745942]\n", + " [ 23.68275129 -18.89891039]\n", + " [ 29.0587511 -18.90036136]\n", + " [ 2.18020304 -13.51710671]\n", + " [ 7.55620285 -13.51855767]\n", + " [ 12.93220265 -13.52000864]\n", + " [ 18.30820245 -13.52145961]\n", + " [ 23.68420226 -13.52DEBUG:root:mm_to_pix: fitpx.shape: (96, 2)\n", + "0.20090587 0.20090587 0.00521618 0.00521618\n", + " 0.19029998 0.19225876 0.19384904 0.19506507 0.19590316 0.19636024\n", + " 0.15719218 0.15880644 0.16011755 0.16112232 0.16181718 0.1621981\n", + " 0.12316354 0.12442767 0.12545686 0.12624866 0.12679897 0.1271029\n", + " 0.08841323 0.08932369 0.09006766 0.09064294 0.0910454 0.09127018\n", + " 0.05314506 0.05369842 0.05415286 0.05450669 0.05475678 0.05489951\n", + " 0.0175654 0.01775879 0.01791986 0.01804791 0.01814173 0.01819993]\n", + " [0.9575635 0.96235848 0.9665599 0.97010815 0.97295274 0.97505345\n", + " 0.97638084 0.97691643 0.9575635 0.96249967 0.96685033 0.97055388\n", + " 0.97355774 0.97581955 0.97730771 0.97800162 0.97691643 0.98249606\n", + " 0.98740135 0.99156788 0.99494191 0.99747999 0.99914912 0.99992726\n", + " 0.97800162 0.98345527 0.98822148 0.99223792 0.99545284 0.99782482\n", + " 0.9993229 0.99992726 0.95974104 0.96522722 0.96976157 0.97324727\n", + " 0.97561035 0.97680113 0.95980102 0.96546589 0.97018908 0.97386995\n", + " 0.97643056 0.97781731 0.97942703 0.98582062 0.99113614 0.99527021\n", + " 0.9981429 0.99969795 0.98045849 0.98668859 0.99182302 0.99576214\n", + " 0.9984297 0.99977331 0.95759864 0.95759864 0.9999256 0.9999256\n", + " 0.96197634 0.96772508 0.97251687 0.97625014 0.97884665 0.98025265\n", + " 0.96754604 0.97350647 0.97847046 0.98233503 0.98502145 0.98647571\n", + " 0.97214818 0.97827946 0.98338189 0.98735208 0.99011108 0.99160442\n", + " 0.97568503 0.98194493 0.98715164 0.99120174 0.99401595 0.99553917\n", + " 0.97808228 0.98442808 0.98970464 0.99380856 0.99666018 0.99820374\n", + " 0.97929012 0.98567886 0.99099042 0.99512142 0.99799196 0.99954584]]\n", + "291058]\n", + " [ 29.06020207 -13.52436156]\n", + " [ 2.18165401 -8.1411069 ]\n", + " [ 7.55765382 -8.14255787]\n", + " [ 12.93365363 -8.14400884]\n", + " [ 18.30965343 -8.14545981]\n", + " [ 23.68565323 -8.14691078]\n", + " [ 29.06165303 -8.14836175]\n", + " [ 2.18310498 -2.76510709]\n", + " [ 7.55910479 -2.76655806]\n", + " [ 12.93510459 -2.76800904]\n", + " [ 18.31110439 -2.76946001]\n", + " [ 23.68710421 -2.77091098]\n", + " [ 29.063104 -2.77236195]]\n", + " [-12.895377 24.075011 ]\n", + " [-18.271377 24.075011 ]\n", + " [-23.647377 24.075011 ]\n", + " [-29.023377 24.075011 ]\n", + " [ -2.143377 18.699011 ]\n", + " [ -7.519377 18.699011 ]\n", + " [-12.895377 18.699011 ]\n", + " [-18.271377 18.699011 ]\n", + " [-23.647377 18.699011 ]\n", + " [-29.023377 18.699011 ]\n", + " [ -2.143377 13.323011 ]\n", + " [ -7.519377 13.323011 ]\n", + " [-12.895377 13.323011 ]\n", + " [-18.271377 13.323011 ]\n", + " [-23.647377 13.323011 ]\n", + " [-29.023377 13.323011 ]\n", + " [ -2.143377 7.947011 ]\n", + " [ -7.519377 7.947011 ]\n", + " [-12.895377 7.947011 ]\n", + " [-18.271377 7.947011 ]\n", + " [-23.647377 7.947011 ]\n", + " [-29.023377 7.947011 ]\n", + " [ -2.143377 2.571011 ]\n", + " [ -7.519377 2.571011 ]\n", + " [-12.895377 2.571011 ]\n", + " [-18.271377 2.571011 ]\n", + " [-23.647377 2.571011 ]\n", + " [-29.023377 2.571011 ]]\n", + "DEBUG:root:optics_fp: xyfp shape: (96, 2)\n", + "DEBUG:root:radec2pix: curVec Shape: (96, 3)\n", + "DEBUG:root:radec2pix: camVec Shape: (3, 96)\n", + "DEBUG:root:optics_fp: rtanth: [45.10607628 42.16357777 39.4899731 37.14337318 35.189258 33.69598042\n", + " 32.72668371 32.32853333 45.10607628 42.0744994 39.2994961 36.83909335\n", + " 34.76015989 33.13457624 32.03143895 31.50567459 32.32853333 27.94350461\n", + " 23.55899708 19.17536829 14.79339939 10.41518568 6.04888681 1.78423138\n", + " 31.50567459 27.12594155 22.74878876 18.37606012 14.01189826 9.66791142\n", + " 5.39307341 1.78423138 43.78236587 40.34917919 37.37672691 34.98265169\n", + " 33.29196413 32.41491299 43.7452802 40.19469624 37.08612172 34.53910818\n", + " 32.68520027 31.64644357 30.41697218 25.04308812 19.67036046 14.30009268\n", + " 8.93672046 3.6111005 29.59667216 24.23063563 18.87027174 13.52232821\n", + " 8.21110934 3.12954069 45.08486499 45.08486499 1.80420296 1.80420296\n", + " 42.4016515 38.72807918 35.4912797 32.82073285 30.86377856 29.76151712\n", + " 38.84663114 34.79978185 31.15752935 28.07777067 25.76302637 24.43171303\n", + " 35.74946438 31.30476433 27.19843907 23.60772454 20.80136966 19.12778226\n", + " 33.23838757 28.40342363 23.80170775 19.59823621 16.10786095 13.87941853\n", + " 31.45408342 26.29303007 21.23888529 16.39084557 12.00133913 8.78676362\n", + " 30.52427023 25.1733021 19.8358755 14.52692422 9.29536709 4.42480773]\n", + "DEBUG:root:radec2pix: lng: [44.46013111 40.20250222 35.33475619 29.80239704 23.58471193 16.71933815\n", + " 9.32438225 1.60411637 44.46013111 48.6443107 53.44435482 58.92326156\n", + " 65.11319638 71.98940835 79.44437917 87.27692771 1.60411637 1.85680988\n", + " 2.20397654 2.71072869 3.51976244 5.01551732 8.70535713 30.95664732\n", + " 87.27692771 86.8388988 86.23319877 85.34102995 83.89722589 81.1670885\n", + " 74.12971046 30.95664732 42.68783954 37.06698546 30.47243013 22.85083712\n", + " 14.27406075 4.99632239 46.19982373 51.73354216 58.25770295 65.84552409\n", + " 74.44848175 83.82899465 1.73364549 2.10727457 2.68608796 3.70275867\n", + " 5.95349638 15.02389602 87.07294759 86.42732935 85.41713359 83.61383424\n", + " 79.49708007 61.65124289 44.45987707 44.45987707 31.12292419 31.12292419\n", + " 44.42569213 49.99636441 56.64851063 64.49322462 73.50720842 83.43797919\n", + " 38.75401666 44.3002287 51.21241262 59.77502346 70.12351892DEBUG:root:radec2pix: curVec: [[0.23030376 0.78400295 0.57645429]\n", + " [0.20393926 0.78850219 0.58023537]\n", + " [0.17687468 0.79259309 0.58353367]\n", + " [0.14921774 0.79621591 0.58632269]\n", + " [0.12107672 0.79932101 0.58857994]\n", + " [0.09256074 0.80186891 0.59028702]\n", + " [0.06378011 0.80383008 0.59142987]\n", + " [0.03484641 0.80518484 0.59199923]\n", + " [0.23030376 0.78400295 0.57645429]\n", + " [0.23247384 0.79918846 0.55430471]\n", + " [0.23436774 0.81413654 0.53127531]\n", + " [0.23598195 0.82874415 0.5074403 ]\n", + " [0.23731283 0.84291817 0.48287842]\n", + " [0.23835661 0.85657532 0.4576733 ]\n", + " [0.2391097 0.86964191 0.43191377]\n", + " [0.23956916 0.88205384 0.40569403]\n", + " [0.03484641 0.80518484 0.59199923]\n", + " [0.03526459 0.82138842 0.56927803]\n", + " [0.03566052 0.83726379 0.54563511]\n", + " [0.03603125 0.85271027 0.52114004]\n", + " [0.03637414 0.86763605 0.49586753]\n", + " [0.03668682 0.88195741 0.46989915]\n", + " [0.03696728 0.89559862 0.4433244 ]\n", + " [0.03721385 0.90849253 0.41624085]\n", + " [0.23956916 0.88205384 0.40569403]\n", + " [0.21226352 0.88788573 0.40817047]\n", + " [0.18424847 0.8931165 0.4103601 DEBUG:root:radec2pix: xyfp: [[32.31363499 31.47041645]\n", + " [32.3144687 27.08398795]\n", + " [32.31530242 22.69755946]\n", + " [32.31613613 18.31113097]\n", + " [32.31696984 13.92470248]\n", + " [32.31780355 9.53827398]\n", + " [32.31863726 5.15184549]\n", + " [32.31947097 0.765417 ]\n", + " [32.31363499 31.47041645]\n", + " [27.9272065 31.46958273]\n", + " [23.540778 31.46874902]\n", + " [19.15434951 31.46791531]\n", + " [14.76792102 31.4670816 ]\n", + " [10.38149253 31.46624788]\n", + " [ 5.99506403 31.46541417]\n", + " [ 1.60863554 31.46458045]\n", + " [32.31947097 0.765417 ]\n", + " [27.93304248 0.76458329]\n", + " [23.54661399 0.76374957]\n", + " [19.1601855 0.76291586]\n", + " [14.77375701 0.76208215]\n", + " [10.38732851 0.76124844]\n", + " [ 6.00090002 0.76041472]\n", + " [ 1.61447153 0.75958101]\n", + " [ 1.60863554 31.46458045]\n", + " [ 1.60946926 27.07815197]\n", + " [ 1.61030297 22.69172348]\n", + " [ 1.61113668 18.30529498]\n", + " [ 1.61197039 13.91886648]\n", + " [ 1.6128041 9.53243799]\n", + " [ 1.61363782 5.1460095 ]\n", + " [ 1.61447153 0.75958101]\n", + " [32.29899849 29.55791363]\n", + " [32.30002028 24.18191372]\n", + " [32.30104209 18.80591382]\n", + " [32.30206388 13.42991392]\n", + " [32.30308568 8.05391402]\n", + " [32.30410748 2.67791411]\n", + " [30.40113787 31.45505294]\n", + " [25.02513797 31.45403115]\n", + " [19.64913807 31.45300935]\n", + " [14.27313817 31.45198755]\n", + " [ 8.89713826 31.45096576]\n", + " [ 3.52113836 31.44994396]\n", + " [30.40696816 0.7800535 ]\n", + " [25.03096826 0.7790317 ]\n", + " [19.65496836 0.7780099 ]\n", + " [14.27896845 0.77698811]\n", + " [ 8.90296855 0.77596631]\n", + " [ 3.52696865 0.77494451]\n", + " [ 1.62399904 29.55208334]\n", + " [ 1.62502084 24.17608344]\n", + " [ 1.62604264 18.80008353]\n", + " [ 1.62706443 13.42408364]\n", + " [ 1.62808623 8.04808373]\n", + " [ 1.62910803 2.67208383]\n", + " [32.29863784 31.4554136 ]\n", + " [32.29863784 31.4554136 ]\n", + " [ 1.62946868 0.77458386]\n", + " [ 1.62946868 0.77458386]\n", + " [30.40149852 29.55755297]\n", + " [25.02549862 29.55653118]\n", + " [19.64949872 29.55550938]\n", + " [14.27349882 29.55448759]\n", + " [ 8.89749891 29.55346579]\n", + " [ 3.52149901 29.55244399]\n", + " [30.40252032 24.18155307]\n", + " [25.02652042 24.18053128]\n", + " [19.65052052 24.17950948]\n", + " [14.27452061 24.17848769]\n", + " [ 8.89852071 24.17746589]\n", + " [ 3.52252081 24.17644409]\n", + " [30.40354212 18.80555317]\n", + " [25.02754221 18.80453137]\n", + " [19.65154231 18.80350958]\n", + " [14.27554241 18.80248779]\n", + " [ 8.89954251 18.80146598]\n", + " [ 3.5235426 18.80044419]\n", + " [30.40456392 13.42955327]\n", + " [25.02856401 13.42853147]\n", + " [19.65256411 13.42750967]\n", + " [14.27656421 13.42648788]\n", + " [ 8.9005643 13.42546608]\n", + " [ 3.5245644 13.42444429]\n", + " [30.40558571 8.05355336]\n", + " [25.02958581 8.05253157]\n", + " [19.6535859 8.05150977]\n", + " [14.277586 8.05048797]\n", + " [ 8.9015861 8.04946618]\n", + " [ 3.5255862 8.04844438]\n", + " [30.40660751 2.67755346]\n", + " [25.0306076 2.67653166]\n", + " [19.6546077 2.67550987]\n", + " [14.2786078 2.67448807]\n", + " [ 8.90260789 2.67346627]\n", + " [ 3.52660799 2.67244448]]\n", + "DEBUG:root:radec2pix: curVec: [[-0.12619436 -0.61964402 0.77467172]\n", + " [-0.15027827 -0.62659968 0.76471516]\n", + " [-0.17482439 -0.63311381 0.75405791]\n", + " [-0.19971136 -0.6391438 0.7427049 ]\n", + " [-0.22482388 -0.64465141 0.73067009]\n", + " [-0.25005131 -0.64960295 0.71797657]\n", + " [-0.27528668 -0.65396977 0.70465651]\n", + " [-0.30042631 -0.65772868 0.69075105]\n", + " [-0.12619436 -0.61964402 0.77467172]\n", + " [-0.13518161 -0.59891575 0.78931987]\n", + " [-0.14440921 -0.57732186 0.8036451 ]\n", + " [-0.15381429 -0.55492788 0.81755502]\n", + " [-0.16334034 -0.53180385 0.83096606]\n", + " [-0.17293604 -0.50802529 0.84380296]\n", + " [-0.18255435 -0.48367374 0.85599861]\n", + " [-0.19215188 -0.45883691 0.86749429]\n", + " [-0.30042631 -0.65772868 0.69075105]\n", + " [-0.31151492 -0.63670306 0.70538477]\n", + " [-0.32258371 -0.6147354 0.71975005]\n", + " [-0.333574 -0.5918851 0.73375773]\n", + " [-0.34443037 -0.5682182 0.74732576]\n", + " [-0.35510018 -0.54380871 0.76037882]\n", + " [-0.36553365 -0.51873908 0.77284857]\n", + " [-0.37568417 -0.49310003 0.78467431]\n", + " [-0.19215188 -0.45883691 0.86749429]\n", + " [-0.21791034 -0.46470951 0.85823083]\n", + " [-0.24400965 -0.47031916 0.84809149]\n", + " [-0.27033588 -0.47562345 0.83707876]\n", + " [-0.29677705 -0.48058451 0.82520416]\n", + " [-0.32322204 -0.48516907 0.81248907]\n", + " [-0.34956061 -0.48934867 0.79896512]\n", + " [-0.37568417 -0.49310003 0.78467431]\n", + " [-0.13666097 -0.6226586 0.77046742]\n", + " [-0.16650637 -0.63089176 0.75779365]\n", + " [-0.19692459 -0.638418DEBUG:root:radec2pix: camVec: [[-0.20605921 -0.20787315 -0.20942436 -0.21070676 -0.21171698 -0.21245291\n", + " -0.21291301 -0.2130962 -0.20605921 -0.17962884 -0.15250018 -0.12477652\n", + " -0.0965659 -0.06797863 -0.03912632 -0.01012153 -0.2130962 -0.18573503\n", + " -0.15766321 -0.1289874 -0.09981355 -0.07024926 -0.04040619 -0.01040084\n", + " -0.01012153 -0.01020027 -0.01026637 -0.01031977 -0.01036027 -0.01038751\n", + " -0.01040113 -0.01040084 -0.20679239 -0.20883895 -0.21048459 -0.2117221\n", + " -0.21254753 -0.21295821 -0.1946339 -0.16175754 -0.12793421 -0.09336102\n", + " -0.05824097 -0.02277993 -0.20126076 -0.16723544 -0.13224882 -0.09649617\n", + " -0.06017591 -0.02349561 -0.01025713 -0.01034611 -0.01041588 -0.01046611\n", + " -0.01049618 -0.01050541 -0.20597676 -0.20597676 -0.01050361 -0.01050361\n", + " -0.19540403 -0.16239488 -0.12843557 -0.09372478 -0.05846599 -0.02286533\n", + " -0.19733483 -0.16399068 -0.1296908 -0.094636 -0.05902974 -0.02307851\n", + " -0.19888634 -0.16527244 -0.13070023 -0.09537003 -0.05948408 -0.02324907\n", + " -0.20005292 -0.16623701 -0.13146138 -0.09592455 -0.05982716 -0.0233762\n", + " -0.20083104 -0.16688094 -0.13197015 -0.09629527 -0.0600556 -0.02345845\n", + " -0.20121796 -0.16720058 -0.13222195 -0.09647752 -0.06016577 -0.02349426]\n", + " [-0.20169937 -0.17519485 -0.1480085 -0.12024402 -0.09200964 -0.06341581\n", + " -0.03457423 -0.00559748 -0.20169937 -0.20353396 -0.20511207 -0.20642749\n", + " -0.20747679 -0.20825778 -0.20876879 -0.20900854 -0.00559748 -0.00565735\n", + " -0.00571045 -0.00575671 -0.00579596 -0.00582797 -0.00585246 -0.00586919\n", + " -0.20900854 -0.18153487 -0.15336672 -0.12461057 -0.09537244 -0.06576046\n", + " -0.03588698 -0.00586919 -0.1902398 -0.15728353 -0.12340547 -0.08880315\n", + " -0.0536798 -0.01824146 -0.20244048 -0.20451655 -0.20620095 -0.20748634\n", + " -0.2083686 -0.2088448 -0.00572401 -0.00579384 -0.00585326 -0.00590199\n", + " -0.0059396 -0.00596558 -0.19712185 -0.16296958 -0.1278801 -0.09204872\n", + " -0.05567473 -0.01896706 -0.2016167 -0.2016167 -0.0059719 -0.0059719\n", + " -0.19101701 -0.19297429 -0.19456158 -0.195773199 0.74407116]\n", + " [-0.22770096 -0.64516808 0.72932189]\n", + " [-0.25863165 -0.65107709 0.71358832]\n", + " [-0.28952113 -0.6560955 0.69693343]\n", + " [-0.13016098 -0.6107412 0.78105909]\n", + " [-0.14134723 -0.58474591 0.79880735]\n", + " [-0.1528311 -0.55751497 0.81597776]\n", + " [-0.16450592 -0.52917544 0.83241285]\n", + " [-0.17627715 -0.49986638 0.84797404]\n", + " [-0.18805972 -0.46974048 0.86254126]\n", + " [-0.30517346 -0.64866901 0.69720705]\n", + " [-0.31875706 -0.62225916 0.71497376]\n", + " [-0.33225235 -0.59449274 0.73224774]\n", + " [-0.34555599 -0.56548847 0.74887505]\n", + " [-0.3585711 -0.53538265 0.76471706]\n", + " [-0.37120732 -0.50433056 0.77965109]\n", + " [-0.20330044 -0.46151279 0.86352468]\n", + " [-0.2351134 -0.46853985 0.85158211]\n", + " [-0.26732489 -0.47512913 0.83832554]\n", + " [-0.29972804 -0.48120906 0.82377238]\n", + " [-0.3321183 -0.48671839 0.80796203]\n", + " [-0.36429334 -0.49160686 0.79095705]\n", + " [-0.12630604 -0.61959917 0.77468939]\n", + " [-0.12630604 -0.61959917 0.77468939]\n", + " [-0.37556114 -0.49317649 0.78468514]\n", + " [-0.37556114 -0.49317649 0.78468514]\n", + " [-0.1405DEBUG:root:optics_fp: cphi: [-0.71639206 -0.76640718 -0.81831665 -0.87003773 -0.918376 -0.95909967\n", + " -0.98753169 -0.99971968 -0.71639206 -0.66375612 -0.59900967 -0.51994628\n", + " -0.42485193 -0.31331297 -0.18716187 -0.0510586 -0.99971968 -0.9996256\n", + " -0.99947438 -0.99920821 -0.99867222 -0.99732533 -0.99206684 -0.90485547\n", + " -0.0510586 -0.05933321 -0.07078632 -0.08767585 -0.11504297 -0.16682032\n", + " -0.29920561 -0.90485547 -0.73771707 -0.80051245 -0.864202 -0.9233738\n", + " -0.97029678 -0.99658165 -0.69495812 -0.62259801 -0.52982456 -0.41324571\n", + " -0.27220694 -0.1112649 -0.9996711 -0.99951604 -0.9992175 -0.99852279\n", + " -0.99622323 -0.97670188 -0.054871 -0.06706472 -0.08616954 -0.12032428\n", + " -0.19827847 -0.52055819 -0.71639646 -0.71639646 -0.90315154 -0.90315154\n", + " -0.71698855 -0.64618487 -0.553643 -0.43489275 -0.28828288 -0.11832391\n", + " -0.78262952 -0.71915739 -0.63068289 -0.50839224 -0.34539889 -0.14417822\n", + " -0.85046147 -0.79948029 -0.72252464 -0.60469794 -0.42783445 -0.18421072\n", + " -0.91474245 -0.88118124 DEBUG:root:radec2pix: ccdpx: [[-4.45000000e+01 -5.00000261e-01]\n", + " [-4.45000000e+01 2.91928571e+02]\n", + " [-4.45000000e+01 5.84357143e+02]\n", + " [-4.45000000e+01 8.76785715e+02]\n", + " [-4.45000000e+01 1.16921429e+03]\n", + " [-4.45000000e+01 1.46164286e+03]\n", + " [-4.45000000e+01 1.75407143e+03]\n", + " [-4.44999999e+01 2.04650000e+03]\n", + " [-4.45000000e+01 -5.00000261e-01]\n", + " [ 2.47928571e+02 -5.00000125e-01]\n", + " [ 5.40357143e+02 -4.99999959e-01]\n", + " [ 8.32785714e+02 -5.00000265e-01]\n", + " [ 1.12521429e+03 -4.99999989e-01]\n", + " [ 1.41764286e+03 -4.99999804e-01]\n", + " [ 1.71007143e+03 -4.99999857e-01]\n", + " [ 2.00250000e+03 -5.00000247e-01]\n", + " [-4.44999999e+01 2.04650000e+03]\n", + " [ 2.47928572e+02 2.04650000e+03]\n", + " [ 5.40357143e+02 2.04650000e+03]\n", + " [ 8.32785714e+02 2.04650000e+03]\n", + " [ 1.12521429e+03 2.04650000e+03]\n", + " [ 1.41764286e+03 2.04650000e+03]\n", + " [ 1.71007143e+03 2.04650000e+03]\n", + " [ 2.00250000e+03 2.04650000e+03]\n", + " [ 2.00250000e+03 -5.00000247e-01]\n", + " [ 2.00250000e+03 2.91928571e+02]\n", + " [ 2.00250000e+03 5.84357143e+02]\n", + " [ 2.00250000e+03 8.76785714e+02]\n", + " [ 2.00250000e+03 1.16921429e+03]\n", + " [ 2.00250000e+03 1.46164286e+03]\n", + " [ 2.00250000e+03 1.75407143e+03]\n", + " [ 2.00250000e+03 2.04650000e+03]\n", + " [-4.35000000e+01 1.27000000e+02]\n", + " [-4.35000000e+01 4.85400000e+02]\n", + " [-4.35000000e+01 8.43800000e+02]\n", + " [-4.35000000e+01 1.20220000e+03]\n", + " [-4.35000000e+01 1.56060000e+03]\n", + " [-4.35000000e+01 1.91900000e+03]\n", + " [ 8.30000000e+01 4.99999891e-01]\n", + " [ 4.41400000e+02 5.00000001e-01]\n", + " [ 7.99800000e+02 5.00000129e-01]\n", + " [ 1.15820000e+03 5.00000084e-01]\n", + " [ 1.51660000e+03 5.00000000e-01]\n", + " [ 1.87500000e+03 5.00000003e-01]\n", + " [ 8.30000000e+01 2.04550000e+03]\n", + " [ 4.41400000e+02 2.04550000e+03]\n", + " [ 7.99800000e+02 2.04550000e+03]\n", + " [ 1.15820000e+03 2.04550000e+03]\n", + " [ 1.51660000e+03 2.04550000e+03]\n", + " [ 1.87500000e+03 2.04550000e+03]\n", + " [ 2.00150000e+03 1.27000000e+02]\n", + " [ 2.00150000e+03 4.85400000e+02]\n", + " [ 2.00150000e+03 8.43800000e+02]\n", + " [ 2.00150000e+03 1.20220000e+03]\n", + " [ 2.00150000e+03 1.56060000e+03]\n", + " [ 2.00150000e+03 1.91900000e+03]\n", + " [-4.350000DEBUG:root:make_az_asym: xyp: [[ 0.26283402 -31.55708986]\n", + " [ 0.26401791 -27.17066146]\n", + " [ 0.2652018 -22.78423305]\n", + " [ 0.26638569 -18.39780463]\n", + " [ 0.26756957 -14.01137623]\n", + " [ 0.26875346 -9.62494781]\n", + " [ 0.26993735 -5.2385194 ]\n", + " [ 0.27112123 -0.85209099]\n", + " [ 0.26283402 -31.55708986]\n", + " [ 4.64926244 -31.55827376]\n", + " [ 9.03569085 -31.55945764]\n", + " [ 13.42211926 -31.56064153]\n", + " [ 17.80854767 -31.56182542]\n", + " [ 22.19497608 -31.56300931]\n", + " [ 26.5814045 -31.56419319]\n", + " [ 30.96783291 -31.56537708]\n", + " [ 0.27112123 -0.85209099]\n", + " [ 4.65754965 -0.85327487]\n", + " [ 9.04397805 -0.85445876]\n", + " [ 13.43040647 -0.85564265]\n", + " [ 17.81683488 -0.85682653]\n", + " [ 22.20326329 -0.85801042]\n", + " [ 26.5896917 -0.85919431]\n", + " [ 30.97612012 -0.8603782 ]\n", + " [ 30.96783291 -31.56537708]\n", + " [ 30.9690168 -27.17894867]\n", + " [ 30.97020068 -22.79252025]\n", + " [ 30.97138456 -18.40609184]\n", + " [ 30.97256845 -14.01966343]\n", + " [ 30.97375234 -9.63323502]\n", + " [ 30.97493622 -5.24680661]\n", + " [ 30.97612012 -0.8603782 ]\n", + " [ 0.2783502 -29.64459399]\n", + " [ 0.279801100e+01 4.99999945e-01]\n", + " [-4.35000000e+01 4.99999945e-01]\n", + " [ 2.00150000e+03 2.04550000e+03]\n", + " [ 2.00150000e+03 2.04550000e+03]\n", + " [ 8.30000000e+01 1.27000000e+02]\n", + " [ 4.41400000e+02 1.27000000e+02]\n", + " [ 7.99800000e+02 1.27000000e+02]\n", + " [ 1.15820000e+03 1.27000000e+02]\n", + " [ 1.51660000e+03 1.27000000e+02]\n", + " [ 1.87500000e+03 1.27000000e+02]\n", + " [ 8.30000000e+01 4.85400000e+02]\n", + " [ 4.41400000e+02 4.85400000e+02]\n", + " [ 7.99800000e+02 4.85400000e+02]\n", + " [ 1.15820000e+03 4.85400000e+02]\n", + " [ 1.51660000e+03 4.85400000e+02]\n", + " [ 1.87500000e+03 4.85400000e+02]\n", + " [ 8.30000000e+01 8.43800000e+02]\n", + " [ 4.41400000e+02 8.43800000e+02]\n", + " [ 7.99800000e+02 8.43800000e+02]\n", + " [ 1.15820000e+03 8.43800000e+02]\n", + " [ 1.51660000e+03 8.43800000e+02]\n", + " [ 1.87500000e+03 8.43800000e+02]\n", + " [ 8.30000000e+01 1.20220000e+03]\n", + " [ 4.41400000e+02 1.20220000e+03]\n", + " [ 7.99800000e+02 1.20220000e+03]\n", + " [ 1.15820000e+03 1.20220000e+03]\n", + " [ 1.51660000e+03 1.20220000e+03]\n", + " [ 1.87500000e+03 1.20220000e+03]\n", + " [ 8.30000000e+01 1.56060000e+03]\n", + " [ 4.41400000e+02 1.56060000e+03]\n", + " [ 7.99800000e+02 1.56060000e+03]\n", + " [ 1.15820000e+03 1.56060000e+03]\n", + " [ 1.51660000e+03 1.56060000e+03]\n", + " [ 1.87500000e+03 1.56060000e+03]\n", + " [ 8.29999998e+01 1.91900000e+03]\n", + " [ 4.41400000e+02 1.91900000e+03]\n", + " [ 7.99800000e+02 1.91900000e+03]\n", + " [ 1.15820000e+03 1.91900000e+03]\n", + " [ 1.51660000e+03 1.91900000e+03]\n", + " [ 1.87500000e+03 1.91900000e+03]]\n", + "DEBUG:root:cartToSphere: vec: [[0.20658103 0.20098859 0.9575635 ]\n", + " [0.20838989 0.17447006 0.96235848]\n", + " [0.20993522 0.14727238 0.9665599 ]\n", + " [0.21121099 0.11949936 0.97010815]\n", + " [0.21221385 0.09125926 0.97295274]\n", + " [0.21294172 0.06266255 0.97505345]\n", + " [0.21339307 0.03382097 0.97638084]\n", + " [0.21356684 0.00484709 0.97691643]\n", + " [0.20658103 0.20098859 0.9575635 ]\n", + " [0.18015754 0.20282418 0.96249967]\n", + " [0.1530338 0.20440426 0.96685033]\n", + " [0.12531307 0.20572264 0.97055388]\n", + " [0.09710338 0.20677589 0.97355774]\n", + " [0.06851504 0.2075618 0.97581955]\n", + " [0.03965966 0.2080787 0.97730771]\n", + " [0.01064976 0.20832528 0.97800162]\n", + " [0.-0.82567874 -0.72846169 -0.55256029 -0.25394179\n", + " -0.96666577 -0.95194756 -0.92535864 -0.87107074 -0.74171607 -0.40123831\n", + " -0.99614527 -0.99433151 -0.99086162 -0.98290647 -0.95774678 -0.79700819]\n", + "2 -0.19660523 -0.1970549\n", + " -0.15792497 -0.15953875 -0.16084786 -0.1618491 -0.16253892 -0.16291334\n", + " -0.12390793 -0.1251726 -0.12620079 -0.12699006 -0.12753631 -0.1278347\n", + " -0.089165 -0.090077 -0.09082101 -0.09139481 -0.09179425 -0.09201449\n", + " -0.05389991 -0.05445583 -0.05491134 -0.05526476 -0.0555129 -0.05565213\n", + " -0.018319 -0.01851594 -0.01867909 -0.01880776 -0.01890068 -0.01895646]\n", + " [ 0.95752648 0.96233857 0.96655829 0.97012578 0.97299031 0.97511138\n", + " 0.97645925 0.97701519 0.95752648 0.96244865 0.96678474 0.97047334\n", + " 0.97346207 0.97570877 0.97718203 0.97786143 0.97701519 0.98258358\n", + " 0.98747643 0.99162952 0.99498928 0.99751244 0.9991662 0.99992869\n", + " 0.97786143 0.98333161 0.98811601 0.99215206 0.99538774 0.99778137\n", + " 0.99930173 0.99992869 0.95971127 0DEBUG:root:radec2pix: camVec: [[0.20622014 0.20805053 0.20961035 0.210899 0.21191543 0.21265818\n", + " 0.21312568 0.21331667 0.20622014 0.17982824 0.1527297 0.12503427\n", + " 0.09685185 0.06829276 0.03946812 0.01049004 0.21331667 0.18597713\n", + " 0.1579279 0.12927353 0.10011961 0.07057467 0.04075124 0.01076573\n", + " 0.01049004 0.01056977 0.01063642 0.01068985 0.01072978 0.01075592\n", + " 0.01076796 0.01076573 0.20696213 0.20902258 0.21067623 0.21192136\n", + " 0.21275532 0.21317532 0.1948134 0.16197729 0.1281888 0.09365018\n", + " 0.05856456 0.02313694 0.20149034 0.16749252 0.1325326 0.09680441\n", + " 0.0605079 0.02385188 0.01062602 0.01071595 0.0107859 0.01083545\n", + " 0.01086402 0.01087112 0.20613793 0.20613793 0.01086844 0.01086844\n", + " 0.19558949 0.1626169 0.12869151 0.09401511 0.05879055 0.02322296\n", + " 0.19753009 0.16421774 0.12995114 0.09493033 0.05935726 0.02343764\n", + " 0.19908829 0.16550536 0.13096617 0.09566871 0.05981412 0.02360896\n", + " 0.20026215 0.16647694 0.13173312 0.09622682 0.06015857 0.02373584\n", + " 0.20104857 0.167 82.00435394\n", + " 32.01565774 37.23971088 44.10467708 53.20553354 65.10220937 79.77773784\n", + " 24.12278796 28.56396741 34.76649258 43.75755718 57.05411516 75.86717668\n", + " 15.12820823 18.19416817 22.73745459 30.03194111 42.97126995 67.36058422\n", + " 5.30749937 6.44364165 8.19450854 11.23524 17.75019872 39.48443023]\n", + "12825 0.13224724 0.09660024 0.06038739 0.02381698\n", + " 0.20144435 0.16745515 0.13250401 0.09678486 0.06049766 0.02385117]\n", + " [0.20255556 0.17610143 0.14895462 0.12122494 0.09302239 0.06445739\n", + " 0.03564119 0.00668594 0.20255556 0.20441077 0.20600074 0.2073248\n", + " 0.20838186 0.20917033 0.20968847 0.20993479 0.00668594 0.00675821\n", + " 0.00682246 0.00687853 0.00692617 0.0069651 0.00699507 0.00701584\n", + " 0.20993479 0.18250233 0.15437326 0.12565215 0.09644485 0.06686038\n", + " 0.03701177 0.00701584 0.19112005 0.15821703 0.12438266 0.08981934\n", + " 0.05473042 0.0193211 0.20330747 0.20540191 0.20709749 0.2083924\n", + " 0.20928375 0.20976841 0.00681796 0.00690216 0.00697398 0.00703299\n", + " 0.00707868 0.00711058 0.19806614 0.16396327 0.12891793 0.09312436\n", + " 0.05678335 0.02010461 0.2024732 0.2024732 0.00711848 0.00711848\n", + " 0.19190537 0.19387759 0.19547539 0.1966967 0.19753824 0.19799645\n", + " 0.15886347 0.1604891 0.1618095 0.16282181 0.16352163 0.16390447\n", + " 0.12488974 0.12616714 0.12720791 0.12800859 0.1285643 0.12887024\n", + " 0.09018615 0.09111203 0.09186896 0.09245358 0.0928614 0.09308815\n", + " 0.05495583 0.05552612 0.05599434 0.05635799 0.05661388 0.05675899\n", + " 0.01940412 0.01961547 0.01979108 0.01992994 0.02003078 0.02009239]\n", + " [0.95731108 0.96213474 0.96637261 0.96996192 0.9728508 0.97499833\n", + " 0.97637449 0.97696023 0.95731108 0.96222557 0.96655954 0.97024886\n", + " 0.97324032 0.97549161 0.97697135 0.97765911 0.97696023 0.98253083\n", + " 0.98742708 0.99158512 0.9949513 0.99748218 0.99914484 0.99991744\n", + " 0.97765911 0.9831486 0.98795534 0.99201677 0.99528049 0.99770436\n", + " 0.99925681 0.99991744 0.95949977 0.96502691 0.96961048 0.97315046\n", + " 0.9755715 0.9768229 0.95953833 0.96518051 0.96988569 0.97355136\n", + " 0.9760996421356684 0.00484709 0.97691643]\n", + " [0.18621882 0.00490326 0.98249606]\n", + " [0.15815829 0.00495363 0.98740135]\n", + " [0.12949192 0.00499813 0.99156788]\n", + " [0.10032565 0.0050366 0.99494191]\n", + " [0.07076705 0.00506881 0.99747999]\n", + " [0.04092766 0.00509451 0.99914912]\n", + " [0.01092393 0.00511348 0.99992726]\n", + " [0.01064976 0.20832528 0.97800162]\n", + " [0.01072986 0.18083307 0.98345527]\n", + " [0.01079662 0.15264908 0.98822148]\n", + " [0.01085001 0.12387974 0.99223792]\n", + " [0.01088978 0.09463112 0.99545284]\n", + " [0.0109156 0.06501141 0.99782482]\n", + " [0.01092708 0.0351331 0.9993229 ]\n", + " [0.01092393 0.00511348 0.99992726]\n", + " [0.20731213 0.18952259 0.95974104]\n", + " [0.20935192 0.15655094 0.96522722]\n", + " [0.21098964 0.12266162 0.96976157]\n", + " [0.21221814 0.08805229 0.97324727]\n", + " [0.21303349 0.05292621 0.97561035]\n", + " [0.21343308 0.01748945 0.97680113]\n", + " [0.19515895 0.20172997 0.95980102]\n", + " [0.16228971 0.20380791 0.96546589]\n", + " [0.12847052 0.20549566 0.97018908]\n", + " [0.09389848 0.20678588 0.97386995]\n", + " [0.05877657 0.20767444 0.97643056]\n", + " [0.02331064 0.20815839 0.977817 0.97747731 0.97946677 0.98584919 0.99115411 0.99527858\n", + " 0.99814262 0.99969022 0.98013106 0.98640824 0.99159661 0.99559552\n", + " 0.99832741 0.99973878 0.95734621 0.95734621 0.9999156 0.9999156\n", + " 0.96172609 0.96745399 0.9722283 0.9759465 0.97853069 0.9799276\n", + " 0.96733875 0.97328094 0.97822819 0.98207805 0.98475245 0.98619775\n", + " 0.97199095 0.97810522 0.98319175 0.98714806 0.9898957 0.99138039\n", + " 0.97558266 0.98182688 0.98701899 0.99105637 0.99386 0.99537491\n", + " 0.97803851 0.98437036 0.98963392 0.99372641 0.99656823 0.99810379\n", + " 0.97930774 0.98568454 0.99098486 0.99510577 0.99796733 0.99951359]]\n", + "7 -24.26859418]\n", + " [ 0.28125214 -18.89259438]\n", + " [ 0.28270311 -13.51659457]\n", + " [ 0.28415408 -8.14059477]\n", + " [ 0.28560505 -2.76459497]\n", + " [ 2.175338 -31.54260605]\n", + " [ 7.55133781 -31.54405702]\n", + " [ 12.92733761 -31.54550799]\n", + " [ 18.30333742 -31.54695896]\n", + " [ 23.67933722 -31.54840993]\n", + " [ 29.05533702 -31.5498609 ]\n", + " [ 2.18361712 -0.86760716]\n", + " [ 7.55961692 -0.86905814]\n", + " [ 12.93561673 -0.87050911]\n", + " [ 18.31161653 -0.87196007]\n", + " [ 23.68761633 -0.87341105]\n", + " [ 29.06361614 -0.87486202]\n", + " [ 30.95334909 -29.6528731 ]\n", + " [ 30.95480005 -24.27687329]\n", + " [ 30.95625103 -18.90087349]\n", + " [ 30.95770199 -13.52487368]\n", + " [ 30.95915297 -8.14887388]\n", + " [ 30.96060394 -2.77287408]\n", + " [ 0.27783807 -31.54209392]\n", + " [ 0.27783807 -31.54209392]\n", + " [ 30.96111607 -0.87537415]\n", + " [ 30.96111607 -0.87537415]\n", + " [ 2.17585013 -29.64510611]\n", + " [ 7.55184994 -29.64655709]\n", + " [ 12.92784974 -29.64800806]\n", + " [ 18.30384955 -29.64945903]\n", + " [ 23.67984935 -29.65091 ]\n", + " [ 29.05584916 -29.65236097]\n", + " [ 2.1773011 -24.26910631]\n", + " [ 7.55330091 -24.27055728]\n", + " [ 12.92930071 -24.27200825]\n", + " [ 18.30530052 -24.27345922]\n", + " [ 23.68130032 -24.27491019]\n", + " [ 29.05730013 -24.27636116]\n", + " [ 2.17875207 -18.89310651]\n", + " [ 7.55475188 -18.89455748]\n", + " [ 12.93075168 -18.89600845]\n", + " [ 18.30675149 -18.89745942]\n", + " [ 23.68275129 -18.89891039]\n", + " [ 29.0587511 -18.90036136]\n", + " [ 2.18020304 -13.51710671]\n", + " [ 7.55620285 -13.51855767]\n", + " [ 12.93220265 -13.52000864]\n", + " [ 18.30820245 -13.52145961]\n", + " [ 23.68420226 -13.52291058]\n", + " [ 29.06020207 -13.52436156]\n", + " [ 2.18165401 -8.1411069 ]\n", + " [ 7.55765382 -8.14255787]\n", + " [ 12.93365363 -8.14400884]\n", + " [ 18.30965343 -8.14545981]\n", + " [ 23.68565323 -8.14691078]\n", + " [ 29.06165303 -8.14836175]\n", + " [ 2.18310498 -2.76510709]\n", + " [ 7.55910479 -2.76655806]\n", + " [ 12.93510459 -2.76800904]\n", + " [ 18.31110439 -2.76946001]\n", + " [ 23.68710421 -2.77091098]\n", + " [ 29.063104 -2.77236195]]\n", + "DEBUG:root:radec2pix: ccdpx: [[-4.45000002e+01 -5.00000175e-01]\n", + " [-4.44999997e+01 2.91928572e+02]\n", + " [-4.45000002e+01 5.84357143e+02]\n", + " [-4.45000000e+01 8.76785714e+02]\n", + " [-4.45000001e+01 1.16921429e+03]\n", + " [-4.44999999e+01 1.46164286e+03]\n", + " [-4.45000001e+01 1.75407143e+03]\n", + " [-4.44999997e+01 2.04650000e+03]\n", + " [-4.45000002e+01 -5.00000175e-01]\n", + " [ 2.47928571e+02 -5.00000003e-01]\n", + " [ 5.40357143e+02 -4.99999889e-01]\n", + " [ 8.32785714e+02 -5.00000160e-01]\n", + " [ 1.12521429e+03 -5.00000087e-01]\n", + " [ 1.41764286e+03 -5.00000059e-01]\n", + " [ 1.71007143e+03 -4.99999907e-01]\n", + " [ 2.00250000e+03 -4.99999721e-01]\n", + " [-4.44999997e+01 2.04650000e+03]\n", + " [ 2.47928571e+02 2.04650000e+03]\n", + " [ 5.40357143e+02 2.04650000e+03]\n", + " [ 8.32785714e+02 2.04650000e+03]\n", + " [ 1.12521429e+03 2.04650000e+03]\n", + " [ 1.41764286e+03 2.04650000e+03]\n", + " [ 1.71007143e+03 2.04650000e+03]\n", + " [ 2.00250000e+03 2.04650000e+03]\n", + " [ 2.00250000e+03 -4.99999721e-01]\n", + " [ 2.00250000e+03 2.91928571e+02]\n", + " [ 2.00250000e+03 5.84357143e+02]\n", + " [ 2.00250000e+03 8.76785714e+02]\n", + " [ 2.00250000e+03 1.16921429e+03]\n", + " [ 2.00250000e+03 1.46164286e+03]\n", + " [ 2.00250000e+03 1.75407143e+03]\n", + " [ 2.00250000e+03 2.04650000e+03]\n", + " [-4.35000001e+01 1.27000000e+02]\n", + " [-4.34999997e+01 4.85400000e+02]\n", + " [-4.35000003e+01 8.43800000e+02]\n", + " [-4.35000003e+01 1.20220000e+03]\n", + " [-4.35000002e+01 1.56060000e+03]\n", + " [-4.35000003e+01 1.91900000e+03]\n", + " [ 8.30000000e+01 4.99999980e-01]\n", + " [ 4.41400000e+02 4.99999948e-01]\n", + " [ 7.99800000e+02 4.99999731e-01]\n", + " [ 1.15820000e+03 4.99999908e-01]\n", + " [ 1.51660000e+03 4.99999771e-01]\n", + " [ 1.87500000e+03 5.00000017e-01]\n", + " [ 8.29999998e+01 2.04550000e+03]\n", + " [ 4.41400000e+02 2.04550000e+03]\n", + " [ 7.99800000e+02 2.04550000e+03]\n", + " [ 1.15820000e+03 2.04550000e+03]\n", + " [ 1.51660000e+03 2.04550000e+03]\n", + " [ 1.87500000e+03 2.04550000e+03]\n", + " [ 2.00150000e+03 1.27000000e+02]\n", + " [ 2.00150000e+03 4.85400000e+02]\n", + " [ 2.00150000e+03 8.43800000e+02]\n", + " [ 2.00150000e+03 1.20220000e+03]\n", + " [ 2.00150000e+03 1.56060000e+03]\n", + " [ 2.00150000e+03 1.91900000e+03]\n", + " [-4.35000001e+01 4.99999868e-01]\n", + " [-4.35000001e+01 4.99999868e-01]\n", + " [ 2.00150000e+03 2.04550000e+03]\n", + " [ 2.00150000e+03 2.04550000e+03]\n", + " [ 8.30000002e+01 1.27000000e+02]\n", + " [ 4.41400000e+02 1.27000000e+02]\n", + " [ 7.99800000e+02 1.27000000e+02]\n", + " [ 1.15820000e+03 1.27000000e+02]\n", + " [ 1.51660000e+03 1.27000000e+02]\n", + " [ 1.87500000e+03 1.27000000e+02]\n", + " [ 8.30000001e+01 4.85400000e+02]\n", + " [ 4.41400000e+02 4.85400000e+02]\n", + " [ 7.99800000e+02 4.85400000e+02]\n", + " [ 1.15820000e+03 4.85400000e+02]\n", + " [ 1.51660000e+03 4.85400000e+02]\n", + " [ 1.87500000e+03 4.85400000e+02]\n", + " [ 8.29999997e+01 8.43800000e+02]\n", + " DEBUG:root:radec2pix: lat: [73.24045629 74.22430856 75.14029247 75.96071497 76.65562135 77.19454225\n", + " 77.54971408 77.7004367 73.24045629 74.24542243 75.18640058 76.03561625\n", + " 76.76261911 77.33584079 77.72573436 77.90930638 77.7004367 79.29904106\n", + " 80.93014794 82.5883689 84.26818815 85.9633334 87.6639727 89.31207398\n", + " 77.90930638 79.51115144 81.14420271 82.80268356 84.48015158 86.16770212\n", + " 87.84429449 89.31207398 73.67977076 74.84367611 75.87839932 76.72967459\n", + " 77.34173684 77.66614591 73.68843996 74.88082796 75.94981974 76.8404193\n", + " 77.49482717 77.86108402 78.39292403 80.37467767 82.39987127 84.45839268\n", + " 86.53837212 88.6125356 78.60323781 80.5880931 82.61407297 84.6695731\n", + " 86.73723257 88.74545658 73.24742531 73.24742531 89.30399741 89.30399741\n", + " 74.13967578 75.38730878 76.51234476 77.4557749 78.15346667 78.54590996\n", + " 75.35848529 76.77078371 78.07006468 79.18567192 80.03121451 80.5165253\n", + " 76.44822453 78.03255968 79.52764934 80.85445453 81.89945108 82.52079347\n", + " 77.3504272 79.10147139 8031]\n", + " [0.20173739 0.00497187 0.97942703]\n", + " [0.16772694 0.00503783 0.98582062]\n", + " [0.13275239 0.00509482 0.99113614]\n", + " [0.09700904 0.00514259 0.99527021]\n", + " [0.06069518 0.00518073 0.9981429 ]\n", + " [0.02401827 0.00520877 0.99969795]\n", + " [0.01078606 0.19643015 0.98045849]\n", + " [0.01087623 0.16225698 0.98668859]\n", + " [0.01094616 0.1271506 0.99182302]\n", + " [0.01099551 0.09130636 0.99576214]\n", + " [0.01102363 0.0549237 0.9984297 ]\n", + " [0.01102984 0.01821176 0.99977331]\n", + " [0.2064986 0.20090587 0.95759864]\n", + " [0.2064986 0.20090587 0.95759864]\n", + " [0.01102671 0.00521618 0.9999256 ]\n", + " [0.01102671 0.00521618 0.9999256 ]\n", + " [0.19592714 0.19029998 0.96197634]\n", + " [0.16292559 0.19225876 0.96772508]\n", + " [0.1289709 0.19384904 0.97251687]\n", + " [0.09426176 0.19506507 0.97625014]\n", + " [0.0590016 0.19590316 0.97884665]\n", + " [0.02339654 0.19636024 0.98025265]\n", + " [0.19785166 0.15719218 0.96754604]\n", + " [0.16451646 0.15880644 0.97350647]\n", + " [0.13022261 0.16011755 0.97847046]\n", + " [0.09517088 0.16112232 0.98233503]\n", + " [0.05956467 0.16181718 0.98502145]\n", + " [0.02361044 0.1621981 .96521924 0.96977695 0.97328709\n", + " 0.97567516 0.97689101 0.95975804 0.96540534 0.97011031 0.97377263\n", + " 0.97631476 0.97768345 0.97952098 0.98589996 0.99119927 0.99531586\n", + " 0.99817012 0.99970614 0.98032534 0.98657685 0.99173494 0.9956995\n", + " 0.99839379 0.99976492 0.95756163 0.95756163 0.999927 0.999927\n", + " 0.96194063 0.96767186 0.97244542 0.97616011 0.97873802 0.98012578\n", + " 0.96753226 0.97347545 0.97842131 0.98226722 0.98493482 0.98637043\n", + " 0.97215793 0.97827237 0.98335691 0.9873085 0.99004855 0.99152295\n", + " 0.97571944 0.98196303 0.98715219 0.99118387 0.99397914 0.99548324\n", + " 0.97814196 0.9844721 0.98973159 0.9938174 0.99665021 0.9981746\n", + " 0.97937518 0.98574902 0.99104412 0.99515745 0.99800944 0.99954423]]\n", + ".80332064 82.38074874 83.7000473 84.53866109\n", + " 78.00303059 79.89280789 81.78299446 83.6236493 85.30285158 86.52492363\n", + " 78.35049019 80.32186123 82.33135444 84.36297386 86.3856321 88.26407642]\n", + "0.98647571]\n", + " [0.19939573 0.12316354DEBUG:root:make_az_asym: xyp: shape: (96, 2)\n", + "DEBUG:root:optics_fp: sphi: [-0.69769794 -0.64235507 -0.57476766 -0.49298514 -0.3957089 -0.2830686\n", + " -0.15742033 -0.02367621 -0.69769794 -0.74794907 -0.80074179 -0.85419896\n", + " -0.90526286 -0.94964993 -0.98232909 -0.99869566 -0.02367621 -0.02736175\n", + " -0.03241859 -0.03978624 -0.05151501 -0.07309024 -0.12571151 -0.42571889\n", + " -0.99869566 -0.99823823 -0.9974915 -0.99614906 -0.99336052 -0.98598731\n", + " -0.95418866 -0.42571889 -0.67511001 -0.59931613 -0.50314502 -0.38390211\n", + " -0.24191766 -0.08261364 -0.71905021 -0.78254183 -0.84810727 -0.91061956\n", + " -0.96223874 -0.99379078 -0.02564534 -0.03110765 -0.0395524 -0.05433448\n", + " -0.08682898 -0.21460065 -0.99849345 -0.99774863 -0.99628049 -0.99273464\n", + " -0.98014573 -0.8538262 -0.69769342 -0.69769342 -0.42932191 -0.42932191\n", + " -0.69708495 -0.76318092 -0.83275412 -0.90048226 -0.95754529 -0.99297505\n", + " -0.62248778 -0.69484721 -0.77604065 -0.86112562 -0.93845597 -0.98955174\n", + " -0.52603734 -0.60069232 -0.69134517 -0.7964549 -0.90385712 -0.98288677\n", + " -0.40403745 -0.47277862 -0.5641406 -0.68508654 -0.83347293 -0.9672195\n", + " -0.25604158 -0.30626107 -0.37909286 -0.49115758 -0.670714 -0.9159737\n", + " -0.08771884 -0.10632422 -0.13488237 -0.1841056 -0.28761277 -0.6039685 ]\n", + "DEBUG:root:radec2pix: fitpx: [[2135.5 4155.50000026]\n", + " [2135.5 3863.07142876]\n", + " [2135.5 3570.64285709]\n", + " [2135.5 3278.21428545]\n", + " [2135.5 2985.7857141 ]\n", + " [2135.49999999 2693.35714316]\n", + " [2135.50000001 2400.9285712 ]\n", + " [2135.49999993 2108.50000021]\n", + " [2135.5 4155.50000026]\n", + " [1843.07142855 4155.50000013]\n", + " [1550.64285715 4155.49999996]\n", + " [1258.2142856 4155.50000027]\n", + " [ 965.78571429 4155.49999999]\n", + " [ 673.357143 4155.4999998 ]\n", + " [ 380.92857155 4155.49999986]\n", + " [ 88.49999976 4155.50000025]\n", + " [2135.49999993 2108.50000021]\n", + " [1843.07142817 2108.50000006]\n", + " [1550.64285738 2108.49999998]\n", + " [1258.21428605 2108.49999998]\n", + " [ 965.78571448 2108.49999999]\n", + " [ 673.35714251 2108.50000001]\n", + " [ 380.92857138 2108.5 ]\n", + " [ 88.50000013 21DEBUG:root:radec2pix: camVec Shape: (3, 96)\n", + "08.5 ]\n", + " [ 88.49999976 4155.50000025]\n", + " [ 88.49999974 3863.0714288 ]\n", + " [ 88.49999989 3570.64285722]\n", + " [ 88.50000025 3278.21428557]\n", + " [ 88.50000013 2985.78571423]\n", + " [ 88.49999977 2693.35714293]\n", + " [ 88.49999999 2400.92857143]\n", + " [ 88.50000013 2108.5 ]\n", + " [2134.5 4028.00000018]\n", + " [2134.5 3669.59999979]\n", + " [2134.5 3311.20000021]\n", + " [2134.5 2952.80000004]\n", + " [2134.5 2594.39999994]\n", + " [2134.50000001 2235.99999988]\n", + " [2007.99999999 4154.50000011]\n", + " [1649.6 4154.5 ]\n", + " [1291.20000005 4154.49999987]\n", + " [ 932.80000005 4154.49999992]\n", + " [ 574.4 4154.5 ]\n", + " [ 216. 4154.5 ]\n", + " [2008.00000002 2109.49999999]\n", + " [1649.60000012 2109.49999999]\n", + " [1291.19999984 2109.50000001]\n", + " [ 932.79999968 2109.50000001]\n", + " [ 574.39999959 2109.50000001]\n", + " [ 215.99999972 2109.50000001]\n", + " [ 89.4999999 4028.0000001 ]\n", + " [ 89.50000007 3669.59999994]\n", + " [ 89.49999997 3311.20000002]\n", + " [ 89.50000023 2952.7999999 ]\n", + " [ 89.499999 0.97214818]\n", + " [0.16579218 0.12442767 0.97827946]\n", + " [0.13122742 0.12545686 0.98338189]\n", + " [0.09590173 0.12624866 0.98735208]\n", + " [0.06001727 0.12679897 0.99011108]\n", + " [0.02378066 0.1271029 0.99160442]\n", + " [0.20055377 0.08841323 0.97568503]\n", + " [0.16674959 0.08932369 0.98194493]\n", + " [0.13198281 0.09006766 0.98715164]\n", + " [0.09645193 0.09064294 0.99120174]\n", + " [0.06035751 0.0910454 0.99401595]\n", + " [0.0239064 0.09127018 0.99553917]\n", + " [0.20132229 0.05314506 0.97808228]\n", + " [0.16738526 0.05369842 0.98442808]\n", + " [0.13248471 0.05415286 0.98970464]\n", + " [0.09681723 0.05450669 0.99380856]\n", + " [0.06058199 0.05475678 0.99666018]\n", + " [0.02398618 0.05489951 0.99820374]\n", + " [0.20169858 0.0175654 0.97929012]\n", + " [0.16769559 0.01775879 0.98567886]\n", + " [0.13272857 0.01791986 0.99099042]\n", + " [0.09699294 0.01804791 0.99512142]\n", + " [0.06068709 0.01814173 0.99799196]\n", + " [0.02401844 0.01819993 0.99954584]]\n", + "97 2594.40000001]\n", + " [ 89.4999998 2236.00000002]\n", + " [2134.5 4154.50000005]\n", + " [2134.5 4154.50000005]\n", + " [ 89.49999997 2109.5 ]\n", + " [ 89.49999997 [ 4.41400000e+02 8.43800000e+02]\n", + " [ 7.99800000e+02 8.43800000e+02]\n", + " [ 1.15820000e+03 8.43800000e+02]\n", + " [ 1.51660000e+03 8.43800000e+02]\n", + " [ 1.87500000e+03 8.43800000e+02]\n", + " [ 8.29999998e+01 1.20220000e+03]\n", + " [ 4.41400000e+02 1.20220000e+03]\n", + " [ 7.99800000e+02 1.20220000e+03]\n", + " [ 1.15820000e+03 1.20220000e+03]\n", + " [ 1.51660000e+03 1.20220000e+03]\n", + " [ 1.87500000e+03 1.20220000e+03]\n", + " [ 8.30000003e+01 1.56060000e+03]\n", + " [ 4.41400000e+02 1.56060000e+03]\n", + " [ 7.99800000e+02 1.56060000e+03]\n", + " [ 1.15820000e+03 1.56060000e+03]\n", + " [ 1.51660000e+03 1.56060000e+03]\n", + " [ 1.87500000e+03 1.56060000e+03]\n", + " [ 8.29999998e+01 1.91900000e+03]\n", + " [ 4.41400000e+02 1.91900000e+03]\n", + " [ 7.99800000e+02 1.91900000e+03]\n", + " [ 1.15820000e+03 1.91900000e+03]\n", + " [ 1.51660000e+03 1.91900000e+03]\n", + " [ 1.87500000e+03 1.91900000e+03]]\n", + "2109.5 ]\n", + " [2008. 4027.99999997]\n", + " [1649.59999996 4028.00000014]\n", + " [1291.20000001 4027.99999998]\n", + " [ 932.79999987 4028.00000021]\n", + " [ 574.40000006 4027.99999993]\n", + " [ 215.9999998 4028.0000002 ]\n", + " [2008. 3669.59999996]\n", + " [1649.60000001 3669.59999998]\n", + " [1291.20000007 3669.59999987]\n", + " [ 932.79999997 3669.60000004]\n", + " [ 574.39999998 3669.60000002]\n", + " [ 215.99999986 3669.60000012]\n", + " [2008. 3311.20000004]\n", + " [1649.59999995 3311.20000012]\n", + " [1291.19999997 3311.20000005]\n", + " [ 932.80000015 3311.19999984]\n", + " [ 574.40000003 3311.19999997]\n", + " [ 216.00000001 3311.2 ]\n", + " [2007.99999998 2952.80000014]\n", + " [1649.60000006 2952.7999999 ]\n", + " [1291.20000015 2952.79999984]\n", + " [ 932.80000014 2952.7999999 ]\n", + " [ 574.39999986 2952.80000008]\n", + " [ 215.99999973 2952.80000012]\n", + " [2007.99999998 2594.40000007]\n", + " [1649.60000022 2594.39999977]\n", + " [1291.20000005 2594.39999997]\n", + " [ 932.79999996 2594.40000002]\n", + " [ 574.39999995 2594.40000002]\n", + " [ 216.00000004 2594.39999999]\n", + " [2008.00000021 2235.99999975]\n", + " [1649.59999975 2236.00000009]\n", + " [1291.20000026 2235.99999995]\n", + " [ 932.79999972 2236.00000004]\n", + " [ 574.39999974 2236.00000003]\n", + " [ 216.00000028 2235.99999998]]\n", + "8805 -0.61378074 0.7768579 ]\n", + " [-0.1519586 -0.58772232 0.79466412]\n", + " [-0.16359819 -0.5604175 0.81189153]\n", + " [-0.17540147 -0.53199256 0.82838291]\n", + " [-0.18727469 -0.50258624 0.84399956]\n", + " [-0.19913312 -0.47235139 0.85862109]\n", + " [-0.17062655 -0.62196693 0.76422753]\n", + " [-0.18249025 -0.59575758 0.78215741]\n", + " [-0.19454638 -0.56827319 0.79951066]\n", + " [-0.20669251 -0.53963789 0.8161306 ]\n", + " [-0.21883632 -0.50998964 0.83187813]\n", + " [-0.23089329 -0.47948188 0.8466318 ]\n", + " [-0.20122256 -0.62946078 0.75052555]\n", + " [-0.21354044 -0.603141 0.76851897]\n", + " [-0.22597981 -0.57552054 0.7859448 ]\n", + " [-0.23843979 -0.54672163 0.80264682]\n", + " [-0.25082826 -0.51688167 0.8184855 ]\n", + " [-0.26305998 -0.48615477 0.83333846]\n", + " [-0.23216279 -0.63618957 0.73577393]\n", + " [-0.24489921 -0.60979864 0.75377052]\n", + " [-0.25769071 -0.58208503 0.77121496]\n", + " [-0.27043667 -0.55316942 0.78795152]\n", + " [-0.28304412 -0.52318881 0.80384047]\n", + " [-0.29542651 -0.4922979 0.81875879]\n", + " [-0.26324409 -0.64209081 0.72001524]\n", + " [-0.27636452 -0.61566681 0.73795462]\n", + " [-0.28947718 -0.58790244 0.75536328]\n", + " [-0.30248068 -0.55891723 0.77208611]\n", + " [-0.31528055 -0.52884785 0.78798358]\n", + " [-0.32778861 -0.49784946 0.80293246]\n", + " [-0.29427088 -0.64711352 0.70331269]\n", + " [-0.3077401 -0.62069354 0.72113491]\n", + " [-0.32114157 -0.59292031 0.73845352]\n", + " [-0.33437251 -0.5639127 0.75511423]\n", + " [-0.34733667 -0.53380707 0.77097811]\n", + " [-0.35994423 -0.50275875 0.78592226]]\n", + "DEBUG:root:radec2pix: camVec Shape: (3, 96)\n", + "DEBUG:root:optics_fp: xyfp: [[32.31363499 31.47041645]\n", + " [32.3144687 27.08398795]\n", + " [32.31530242 22.69755946]\n", + " [32.31613613 18.31113097]\n", + " [32.31696984 13.92470248]\n", + " [32.31780355 9.53827398]\n", + " [32.31863726 5.15184549]\n", + " [32.31947097 0.765417 ]\n", + " [32.31363499 31.47041645]\n", + " [27.9272065 31.46958273]\n", + " [23.540778 31.46874902]\n", + " [19.15434951 31.46791531]\n", + " [14.76792102 31.4670816 ]\n", + " [10.38149253 31.46624788]\n", + " [ 5.99506403 31.46541417]\n", + " [ 1.60863554 31.46458045]\n", + " [32.31947097 0.765417 ]\n", + " [27.93304248 0.76458329]\n", + " [23.54661399 0.76374957]\n", + " [19.1601855 0.76291586]\n", + " [14.77375701 0.76208215]\n", + " [10.38732851 0.76124844]\n", + " [ 6.00090002 0.76041472]\n", + " [ 1.61447153 0.75958101]\n", + " [ 1.60863554 31.46458045]\n", + " [ 1.60946926 27.07815197]\n", + " [ 1.61030297 22.69172348]\n", + " [ 1.61113668 18.30529498]\n", + " [ 1.61197039 13.91886648]\n", + " [ 1.6128041 9.53243799]\n", + " [ 1.61363782 5.1460095 ]\n", + " [ 1.61447153 0.75958101]\n", + " [32.29899849 29.55791363]\n", + " [32.30002028 24.18191372]\n", + " [32.30104209 18.80591382]\n", + " [32.30206388 13.42991392]\n", + " [32.30308568 8.05391402]\n", + " [32.30410748 2.67791411]\n", + " [30.40113787 31.45505294]\n", + " [25.02513797 31.45403115]\n", + " [19.64913807 31.45300935]\n", + " [14.27313817 31.45198755]\n", + " [ 8.89713826 31.45096576]\n", + " [ 3.52113836 31.44994396]\n", + " [30.40696816 0.7800535 ]\n", + " [25.03096826 0.7790317 ]\n", + " [19.65496836 0.7780099 ]\n", + " [14.27896845 0.77698811]\n", + " [ 8.90296855 0.77596631]\n", + " [ 3.52696865 0.77494451]\n", + " [ 1.62399904 29.55208334]\n", + " [ 1.62502084 24.17608344]\n", + " [ 1.62604264 18.80008353]\n", + " [ 1.62706443 13.42408364]\n", + " [ 1.62808623 8.04808373]\n", + " [ 1.62910803 2.67208383]\n", + " [32.29863784 31.4554136 ]\n", + " [32.29863784 31.4554136 ]\n", + " [ 1.62946868 0.77458386]\n", + " [ 1.62946868 0.77458386]\n", + " [30.40149852 29.55755297]\n", + " [25.02549862 29.55653118]\n", + " [19.64949872 29.55550938]\n", + " [14.27349882 29.55448759]\n", + " [ 8.89749891 29.55346579]\n", + " [ 3.52149901 29.55244399]\n", + " [30.40252032 24.18155307]\n", + " [25.02652042 24.18053128]\n", + " [19.65052052 24.17950948]\n", + " [14.27452061 24.17848769]\n", + " [ 8.89852071 24.17746589]\n", + " [ 3.52252081 24.17644409]\n", + " [30.40354212 18.80555317]\n", + " [25.02754221 18.80453137]\n", + " [19.65154231 18.80350958]\n", + " [14.27554241 18.80248779]\n", + " [ 8.89954251 18.80146598]\n", + " [ 3.5235426 18.80044419]\n", + " [30.40456392 13.42955327]\n", + " [25.02856401 13.42853147]\n", + " [19.65256411 13.42750967]\n", + " [14.27656421 13.42648788]\n", + " [ 8.9005643 13.42546608]\n", + " [ 3.5245644 13.42444429]\n", + " [30.40558571 8.05355336]\n", + " [25.02958581 8.05253157]\n", + " [19.6535859 8.05150977]\n", + " [14.277586 8.05048797]\n", + " [ 8.9015861 8.04946618]\n", + " [ 3.5255862 8.04844438]\n", + " [30.40660751 2.67755346]\n", + " [25.0306076 2.67653166]\n", + " [19.6546077 2.67550987]\n", + " [14.2786078 2.67448807]\n", + " [ 8.90260789 2.67346627]\n", + " [ 3.52660799 2.67244448]]\n", + "DEDEBUG:root:optics_fp: xyfp shape: (96, 2)\n", + "BUG:root:cartToSphere: vec: [[-0.20605921 -0.20169937 0.95752648]\n", + " [-0.20787315 -0.17519485 0.96233857]\n", + " [-0.20942436 -0.1480085 0.96655829]\n", + " [-0.21070676 -0.12024402 0.97012578]\n", + " [-0.21171698 -0.09200964 0.97299031]\n", + " [-0.21245291 -0.06341581 0.97511138]\n", + " [-0.21291301 -0.03457423 0.97645925]\n", + " [-0.2130962 -0.00559748 0.97701519]\n", + " [-0.20605921 -0.20169937 0.95752648]\n", + " [-0.17962884 -0.20353396 0.96244865]\n", + " [-0.15250018 -0.20511207 0.96678474]\n", + " [-0.12477652 -0.20642749 0.97047334]\n", + " [-0.0965659 -0.20747679 0.97346207]\n", + " [-0.06797863 -0.20825778 0.97570877]\n", + " [-0.03912632 -0.20876879 0.97718203]\n", + " [-0.01012153 -0.20900854 0.97786143]\n", + " [-0.2130962 -0.00559748 0.97701519]\n", + " [-0.18573503 -0.00565735 0.98258358]\n", + " [-0.15766321 -0.00571045 0.98747643]\n", + " [-0.1289874 -0.00575671 0.99162952]\n", + " [-0.09981355 -0.00579596 0.99498928]\n", + " [-0.07024926 -0.00582797 0.99751244]\n", + " [-0.04040619 -0.00585246 0.9991662 ]\n", + " [-0.01040084 -0.00586919 0.9999]\n", + " [0.1556265 0.89768652 0.41223696]\n", + " [0.12650197 0.9015454 0.4137791 ]\n", + " [0.09698278 0.90465205 0.4149687 ]\n", + " [0.06718127 0.90697491 0.41579224]\n", + " [0.03721385 0.90849253 0.41624085]\n", + " [0.21890919 0.78606323 0.57808595]\n", + " [0.18611137 0.79131203 0.58239834]\n", + " [0.15236895 0.79588684 0.58595891]\n", + " [0.11788103 0.79969207 0.5887246 ]\n", + " [0.08284854 0.80265501 0.59066154]\n", + " [0.04747512 0.8047254 0.59174585]\n", + " [0.23119443 0.79066251 0.56692322]\n", + " [0.23366783 0.80912885 0.53917515]\n", + " [0.23572308 0.82713499 0.51017873]\n", + " [0.23735355 0.84450538 0.48007704]\n", + " [0.23855233 0.86108663 0.44902405]\n", + " [0.23931306 0.8767471 0.41718555]\n", + " [0.03513075 0.81227956 0.58220937]\n", + " [0.0356297 0.83193112 0.55373381]\n", + " [0.03609208 0.85098864 0.52394246]\n", + " [0.03651288 0.86927946 0.49297061]\n", + " [0.03688779 0.88664946 0.46096857]\n", + " [0.0372132 0.90296275 0.42810448]\n", + " [0.22775652 0.88462482 0.40689788]\n", + " [0.19380076 0.89137574 0.40974449]\n", + " [0.15888119 0.89716354 0.4121339 ]\n", + " [0.12318901 0.90189167 0.41402402]\n", + " [0.08692302 0.90548447 0.41538207]\n", + " [0.05029177 0.90788806 0.41618507]\n", + " [0.2302228 0.78407117 0.57639385]\n", + " [0.2302228 0.78407117 0.57639385]\n", + " [0.0373157 0.90844598 0.41633333]\n", + " [0.0373157 0.90844598 0.41633333]\n", + " [0.21983342 0.79270626 0.56858601]\n", + " [0.22218863 0.8113085 0.54075015]\n", + " [0.22414958 0.82943495 0.5116587 ]\n", + " [0.2257094 0.84691027 0.48145432]\n", + " [0.22686074 0.8635812 0.4502907 ]\n", + " [0.22759684 0.87931596 0.41833374]\n", + " [0.18690061 0.79808445 0.57282578]\n", + " [0.18891934 0.81702659 0.54477245]\n", + " [0.19061161 0.83545411 0.5154451 ]\n", + " [0.19196974 0.85319248 0.48498476]\n", + " [0.19298531 0.87008865 0.45354427]\n", + " [0.19365065 0.88601028 0.42128993]\n", + " [0.15302198 0.80276333 0.57632917]\n", + " [0.15470061 0.82197888 0.5481044 ]\n", + " [0.15612021 0.84064901 0.51859013]\n", + " [0.15727257 0.85860003 0.48792553]\n", + " [0.15814885 0.87567885 0.45626253]\n", + " [0.1587411 0.89175217 0.42376801]\n", + " [0.11839618 0.80664745 0.57905287]\n", + " [0.11972946 0.82607038 0.55070191]\n", + " [0.12087051 0.84492493 0.52104911]\n", + " [0.1218113 0.86303804 0.49023193]\n", + " [0.12254343 0.88025629 0.45840154]\n", + " [0.12305951 0.89644536 0.42572535]\n", + " [0.08322396 0.80966425 0.58096262]\n", + " [0.08420595 0.82922881 0.55252958]\n", + " [0.08506201 0.84820943 0.52278601]\n", + " [0.08578503 0.86643337 0.49186801]\n", + " [0.08636796 0.88374683 0.4599262 ]\n", + " [0.08680467 0.90001456 0.42712848]\n", + " [0.04770912 0.81176358 0.58203413]\n", + " [0.04833472 0.83140406 0.55356215]\n", + " [0.04890044 0.85045195 0.52377498]\n", + " [0.04940067 0.86873461 0.49280802]\n", + " [0.04983031 0.88609797 0.46081159]\n", + " [0.05018507 0.90240621 0.42795384]]\n", + "DEBUG:root:radec2pix: xyfp: [[ 0.26283402 -31.55708986]\n", + " [ 0.26401791 -27.17066146]\n", + " [ 0.2652018 -22.78423305]\n", + " [ 0.26638569 -18.39780463]\n", + " [ 0.26756957 -14.01137623]\n", + " [ 0.26875346 -9.62494781]\n", + " [ 0.26993735 -5.2385194 ]\n", + " [ 0.27112123 -0.85209099]\n", + " [ 0.26283402 -31.55708986]\n", + " [ 4.64926244 -31.55827376]\n", + " [ 9.03569085 -31.55945764]\n", + " [ 13.42211926 -31.56064153]\n", + " [ 17.80854767 -31.56182542]\n", + " [ 22.19497608 -31.56300931]\n", + " [ 26.5814045 -31.56419319]\n", + " [ 30.96783291 -31.56537708]\n", + " [ 0.27112123 -0.85DEBUG:root:make_az_asym: xyp: [[32.31363499 31.47041645]\n", + " [32.3144687 27.08398795]\n", + " [32.31530242 22.69755946]\n", + " [32.31613613 18.31113097]\n", + " [32.31696984 13.92470248]\n", + " [32.31780355 9.53827398]\n", + " [32.31863726 5.15184549]\n", + " [32.31947097 0.765417 ]\n", + " [32.31363499 31.47041645]\n", + " [27.9272065 31.46958273]\n", + " [23.540778 31.46874902]\n", + " [19.15434951 31.46791531]\n", + " [14.76792102 31.4670816 ]\n", + " [10.38149253 31.46624788]\n", + " [ 5.99506403 31.46541417]\n", + " [ 1.60863554 31.46458045]\n", + " [32.31947097 0.765417 ]\n", + " [27.93304248 0.76458329]\n", + " [23.54661399 0.76374957]\n", + " [19.1601855 0.76291586]\n", + " [14.77375701 0.76208215]\n", + " [10.38732851 0.76124844]\n", + " [ 6.00090002 0.76041472]\n", + " [ 1.61447153 0.75958101]\n", + " [ 1.60863554 31.46458045]\n", + " [ 1.60946926 27.07815197]\n", + " [ 1.61030297 22.69172348]\n", + " [ 1.61113668 18.30529498]\n", + " [ 1.61197039 13.91886648]\n", + " [ 1.6128041 9.53243799]\n", + " [ 1.61363782 5.1460095 ]\n", + " [ 1.61447153 0.75958101]\n", + " [32.29899849 29.55791363]\n", + " [32.30002028 24.18191372]\n", + " [32.30104209 18.80591382]\n", + " [32.30206388 13.42991392]\n", + " [32.30308568 8.05391402]\n", + " [32.30410748 2.67791411]\n", + " [30.40113787 31.45505294]\n", + " [25.02513797 31.45403115]\n", + " [19.64913807 31.45300935]\n", + " [14.27313817 31.45198755]\n", + " [ 8.89713826 31.45096576]\n", + " [ 3.52113836 31.44994396]\n", + " [30.40696816 0.7800535 ]\n", + " [25.03096826 0.7790317 ]\n", + " [19.65496836 0.7780099 ]\n", + " [14.27896845 0.77698811]\n", + " [ 8.90296855 0.77596631]\n", + " [ 3.52696865 0.77494451]\n", + " [ 1.62399904 29.55208334]\n", + " [ 1.62502084 24.17608344]\n", + " [ 1.62604264 18.80008353]\n", + " [ 1.62706443 13.42408364]\n", + " [ 1.62808623 8.04808373]\n", + " [ 1.62910803 2.67208383]\n", + " [32.29863784 31.4554136 ]\n", + " [32.29863784 31.4554136 ]\n", + " [ 1.62946868 0.77458386]\n", + " [ 1.62946868 0.77458386]\n", + " [30.40149852 29.55755297]\n", + " [25.02549862 29.55653118]\n", + " [19.64949872 29.55550938]\n", + " [14.27349882 29.55448759]\n", + " [ 8.89749891 29.55346579]\n", + " [ 3.52149901 29.55244399]\n", + " [30.40252032 24.18155307]\n", + " [25.02652042 24.18053128]\n", + " [19.65052052 24.17950948]\n", + " [14.27452061 24.17848769]\n", + " [ 8.89852071 24.17746589]\n", + " [ 3.52252081 24.17644409]\n", + " [30.40354212 18.80555317]\n", + " [25.02754221 18.80453137]\n", + " [19.65154231 18.80350958]\n", + " [14.27554241 18.80248779]\n", + " [ 8.89954251 18.80146598]\n", + " [ 3.5235426 18.80044419]\n", + " [30.40456392 13.42955327]\n", + " [25.02856401 13.42853147]\n", + " [19.65256411 13.42750967]\n", + " [14.27656421 13.42648788]\n", + " [ 8.9005643 13.42546608]\n", + " [ 3.5245644 13.42444429]\n", + " [30.40558571 8.05355336]\n", + " [25.02958581 8.05253157]\n", + " [19.6535859 8.05150977]\n", + " [14.277586 8.05048797]\n", + " [ 8.9015861 8.04946618]\n", + " [ 3.5255862 8.04844438]\n", + " [30.40660751 2.67755346]\n", + " [25.0306076 2.67653166]\n", + " [19.6546077 2.67550987]\n", + " [14.2786078 2.67448807]\n", + " [ 8.90260789 2.67346627]\n", + " [ 3.52660799 2.67244448]]\n", + "DEBUG:root:radec2pix: lng: [44.21386846 39.93704685 35.05017674 29.50039724 23.26936887 16.39762201\n", + " 9.00597869 1.30015678 44.21386846 48.38707907 53.17846261 58.652901\n", + " 64.84492629 71.73221904 79.20889503 87.07353952 1.30015678 1.50828626\n", + " 1.79395925 2.21040578 2.87397756 4.09690845 7.09544794 25.08421915\n", + " 87.07353952 86.60429547 85.95429853 84.99452258 83.43549808 80.46877478\n", + " 72.72327889 25.08421915 42.4332296 36.78871515 30.1721461 22.534249\n", + " 13.95213213 4.68455031 45.9485209 51.4701262 57.98745342 65.57788622\n", + " 74.19728483 83.61034654 1.41178444 1.72041252 2.19784005 3.03449456\n", + " 4.87874528 12.23608945 86.85702241 86.16514834 85.07964235 83.13325955\n", + " 78.65106614 58.79906907 44.21351009 44.21351009 25.31647093 25.31647093\n", + " 44.16528338 49.72110165 56.36353517 64.20866184 73.23888739 83.20517984\n", + " 38.4669715 43.98823734 50.87875671 59.43072848 69.79141059 81.71788613\n", + " 31.70295803 36.8883708 43.71214181 52.77876171 64.67058062 79.40261268\n", + " 23.79006954 28.17687017 34.3103939 43.22163096 56.45806862 75.32225144\n", + " 14.78760738 17.78662299 22.23218915 29.3788791 42.10872179 66.39896872\n", + " 4.97718101 6.0450351 7.68908472 10.5407344 16.64345121 37.15297361]\n", + "DEBUG:root:make_az_asym: xyp: shape: (96, 2)\n", + "209099]\n", + " [ 4.65754965 -0.85327487]\n", + " [ 9.04397805 -0.85445876]\n", + " [ 13.43040647 -0.85564265]\n", + " [ 17.81683488 -0.85682653]\n", + " [ 22.20326329 -0.85801042]\n", + " [ 26.5896917 -0.85919431]\n", + " [ 30.97612012 -0.8603782 ]\n", + " [ 30.96783291 -31.56537708]\n", + " [ 30.9690168 -27.17894867]\n", + " [ 30.97020068 -22.79252025]\n", + " [ 30.97138456 -18.40609184]\n", + " [ 30.97256845 -14.01966343]\n", + " [ 30.97375234 -9.63323502]\n", + " [ 30.97493622 -5.24680661]\n", + " [ 30.97612012 -0.8603782 ]\n", + " [ 0.2783502 -29.64459399]\n", + " [ 0.27980117 -24.26859418]\n", + " [ 0.28125214 -18.89259438]\n", + " [ 0.28270311 -13.51659457]\n", + " [ 0.28415408 -8.14059477]\n", + " [ 0.28560505 -2.76459497]\n", + " [ 2.175338 -31.54260605]\n", + " [ 7.55133781 -31.54405702]\n", + " [ 12.92733761 -31.54550799]\n", + " [ 18.30333742 -31.54695896]\n", + " [ 23.67933722 -31.54840993]\n", + " [ 29.05533702 -31.5498609 ]\n", + " [ 2.18361712 -0.86760716]\n", + " [ 7.55961692 -0.86905814]\n", + " [ 12.93561673 -0.87050911]\n", + " [ 18.31161653 -0.87196007]\n", + " [ 23.68761633 -0.87341105]\n", + " [ 29.06361614 -0.87486202]\n", + " [ 30.95334909 -29.6528731 ]\n", + " [ 30.95480005 -24.27687329]\n", + " [ 30.95625103 -18.90087349]\n", + " [ 30.95770199 -13.52487368]\n", + " [ 30.95915297 -8.14887388]\n", + " [ 30.96060394 -2.77287408]\n", + " [ 0.27783807 -31.54209392]\n", + " [ 0.27783807 -31.54209392]\n", + " [ 30.96111607 -0.87537415]\n", + " [ 30.96111607 -0.87537415]\n", + " [ 2.17585013 -29.64510611]\n", + " [ 7.55184994 -29.64655709]\n", + " [ 12.92784974 -29.64800806]\n", + " [ 18.30384955 -29.64945903]\n", + " [ 23.67984935 -29.65091 ]\n", + " [ 29.05584916 -29.65236097]\n", + " [ 2.1773011 -24.26910631]\n", + " [ 7.55330091 -24.27055728]\n", + " [ 12.92930071 -24.27200825]\n", + " [ 18.30530052 -24.27345922]\n", + " [ 23.68130032 -24.27491019]\n", + " [ 29.05730013 -24.27636116]\n", + " [ 2.17875207 -18.89310651]\n", + " [ 7.55475188 -18.89455748]\n", + " [ 12.93075168 -18.89600845]\n", + " [ 18.30675149 -18.89745942]\n", + " [ 23.68275129 -18.89891039]\n", + " [ 29.0587511 -18.90036136]\n", + " [ 2.18020304 -13.51710671]\n", + " [ 7.55620285 -13.51855767]\n", + " [ 12.93220265 -13.52000864]\n", + " [ 18.30820245 -13.52145961]\n", + " [ 23.68420226 -13.52291058]\n", + " [ 29.06020207 -13.52436156]\n", + " [ 2.18165401 -8.1411069 ]\n", + " [ 7.55765382 -8.14255787]\n", + " [ 12.93365363 -8.14400884]\n", + " [ 18.30965343 -8.14545981]\n", + " [ 23.68565323 -8.14691078]\n", + " [ 29.06165303 -8.14836175]\n", + " [ 2.18310498 -2.76510709]\n", + " [ 7.55910479 -2.76655806]\n", + " [ 12.93510459 -2.76800904]\n", + " [ 18.31110439 -2.76946001]\n", + " [ 23.68710421 -2.77091098]\n", + " [ 29.063104 -2.77236195]]\n", + "2869]\n", + " [-0.01012153 -0.20900854 0.97786143]\n", + " [-0.01020027 -0.18153487 0.98333161]\n", + " [-0.01026637 -0.15336672 0.98811601]\n", + " [-0.01031977 -0.12461057 0.99215206]\n", + " [-0.01036027 -0.09537244 0.99538774]\n", + " [-0.01038751 -0.06576046 0.99778137]\n", + " [-0.01040113 -0.03588698 0.99930173]\n", + " [-0.01040084 -0.00586919 0.99992869]\n", + " [-0.20679239 -0.1902398 0.95971127]\n", + " [-0.20883895 -0.15728353 0.96521924]\n", + " [-0.21048459 -0.12340547 0.96977695]\n", + " [-0.2117221 -0.08880315 0.97328709]\n", + " [-0.21254753 -0.0536798 0.97567516]\n", + " [-0.21295821 -0.01824146 0.97689101]\n", + " [-0.1946339 -0.20244048 0.95975804]\n", + " [-0.16175754 -0.20451655 0.96540534]\n", + " [-0.12793421 -0.20620095 0.97011031]\n", + " [-0.09336102 -0.20748634 0.97377263]\n", + " [-0.05824097 -0.2083686 0.97631476]\n", + " [-0.02277993 -0.2088448 0.97768345]\n", + " [-0.20126076 -0.00572401 0.97952098]\n", + " [-0.16723544 -0.00579384 0.98589996]\n", + " [-0.13224882 -0.00585326 0.99119927]\n", + " [-0.09649617 -0.00590199 0.99531586]\n", + " [-0.06017591 -0.0059396 0.99817012]\n", + " [-0.02349561 -0.00596558 0.99970614]\n", + " [-0.01025713 -0.19712185 0.98032534]\n", + " [-0.01034611 -0.16296958 0.98657685]\n", + " [-0.01041588 -0.1278801 0.99173494]\n", + " [-0.01046611 -0.09204872 0.9956995 ]\n", + " [-0.01049618 -0.05567473 0.99839379]\n", + " [-0.01050541 -0.01896706 0.99976492]\n", + " [-0.20597676 -0.2016167 0.95756163]\n", + " [-0.20597676 -0.2016167 0.95756163]\n", + " [-0.01050361 -0.0059719 0.999927 ]\n", + " [-0.01050361 -0.0059719 0.999927 ]\n", + " [-0.19540403 -0.19101701 0.96194063]\n", + " [-0.16239488 -0.19297429 0.96767186]\n", + " [-0.12843557 -0.19456158 0.97244542]\n", + " [-0.09372478 -0.19577312 0.97616011]\n", + " [-0.05846599 -0.19660523 0.97873802]\n", + " [-0.02286533 -0.1970549 0.98012578]\n", + " [-0.19733483 -0.15792497 0.96753226]\n", + " [-0.16399068 -0.15953875 0.97347545]\n", + " [-0.1296908 -0.16084786 0.97842131]\n", + " [-0.094636 -0.1618491 0.98226722]\n", + " [-0.05902974 -0.16253892 0.98493482]\n", + "DEBUG:root:radec2pix: curVec Shape: (96, 3)\n", + " [-0.02307851 -0.16291334 0.98637043]\n", + " [-0.19888634 -0.12390793 0.97215793]\n", + " [-0.16527244 -0.1251726 0.97827237]\n", + " [-0.13070023 -0.12620079 0.98335691]\n", + " [-0.09537003 -0.12699006 0.9873085 ]\n", + " [-0.05948408 -0.12753631 0.99004855]\n", + " [-0.02324907 -0.1278347 0.99152295]\n", + " [-0.20005292 -0.089165 0.97571944]\n", + " [-0.16623701 -0.090077 0.98196303]\n", + " [-0.13146138 -0.09082101 0.98715219]\n", + " [-0.09592455 -0.09139481 0.99118387]\n", + " [-0.05982716 -0.09179425 0.99397914]\n", + " [-0.0233762 -0.09201449 0.99548324]\n", + " [-0.20083104 -0.05389991 0.97814196]\n", + " [-0.16688094 -0.05445583 0.9844721 ]\n", + " [-0.13197015 -0.05491134 0.98973159]\n", + " [-0.09629527 -0.05526476 0.9938174 ]\n", + " [-0.0600556 -0.0555129 0.99665021]\n", + " [-0.02345845 -0.05565213 0.9981746 ]\n", + " [-0.20121796 -0.018319 0.97937518]\n", + " [-0.16720058 -0.01851594 0.98574902]\n", + " [-0.13222195 -0.01867909 0.99104412]\n", + " [-0.09647752 -0.01880776 0.99515745]\n", + " [-0.06016577 -0.01890068 0.99800944]\n", + " [-0.02349426 -0.01895646 0.99954423]]\n", + "DEBUG:root:radec2pix: curVec Shape: (96, 3)\n", + "DEBUG:root:cartToSphere: vec: [[0.20622014 0.20255556 0.95731108]\n", + " [0.20805053 0.17610143 0.96213474]\n", + " [0.20961035 0.14895462 0.96637261]\n", + " [0.210899 0.12122494 0.96996192]\n", + " [0.21191543 0.09302239 0.9728508 ]\n", + " [0.21265818 0.06445739 0.97499833]\n", + " [0.21312568 0.03564119 0.97637449]\n", + " [0.21331667 0.00668594 0.97696023]\n", + " [0.20622014 0.20255556 0.95731108]\n", + " [0.17982824 0.20441077 0.96222557]\n", + " [0.1527297 0.20600074 0.96655954]\n", + " [0.12503427 0.2073248 0.97024886]\n", + " [0.09685185 0.20838186 0.97324032]\n", + " [0.06829276 0.20917033 0.97549161]\n", + " [0.03946812 0.20968847 0.97697135]\n", + " [0.01049004 0.20993479 0.97765911]\n", + " [0.21331667 0.00668594 0.97696023]\n", + " [0.18597713 0.00675821 0.98253083]\n", + " [0.1579279 0.00682246 0.98742708]\n", + " [0.12927353 0.00687853 0.99158512]\n", + " [0.10011961 0.00692617 0.9949513 ]\n", + " [0.07057467 0.0069651 0.99748218]\n", + " [0.04075124 0.00699507 0.99914484]\n", + " [0.01076573 0.00701584 0.99991744]\n", + " [0.01049004 0.20993479 0.97765911]\n", + " [0.01056977 0.18250233 0.9831486 ]\n", + " [0.01063642 0.15437326 0.98795534]\n", + " [0.01068985 0.12565215 0.99201677]\n", + " [0.01072978 0.09644485 0.99528049]\n", + " [0.01075592 0.06686038 0.99770436]\n", + " [0.01076796 0.03701177 0.99925681]\n", + " [0.01076573 0.00701584 0.99991744]\n", + " [0.20696213 0.19112005 0.95949977]\n", + " [0.20902258 0.15821703 0.96502691]\n", + " [0.21067623 0.12438266 0.96961048]\n", + " [0.21192136 0.08981934 0.97315046]\n", + " [0.21275532 0.05473042 0.9755715 ]\n", + " [0.21317532 0.0193211 0.9768229 ]\n", + " [0.1948134 0.20330747 0.95953833]\n", + " [0.16197729 0.20540191 0.96518051]\n", + " [0.1281888 0.20709749 0.96988569]\n", + " [0.09365018 0.2083924 0.97355136]\n", + " [0.05856456 0.20928375 0.97609964]\n", + " [0.02313694 0.20976841 0.97747731]\n", + " [0.20149034 0.00681796 0.97946677]\n", + " [0.16749252 0.00690216 0.98584919]\n", + " [0.1325326 0.00697398 0.99115411]\n", + " [0.09680441 0.00703299 0.99527858]\n", + " [0.0605079 0.00707868 0.99814262]\n", + " [0.02385188 0.00711058 0.99969022]\n", + " [0.01062602 0.19806614 0.98013106]\n", + " [0.01071595 0.16396327 0.98640824]\n", + " [0.0107859 0.12891793 0.99159661DEBUG:root:optics_fp: rtanth: [45.12621722 42.17029986 39.48131725 37.11732942 35.14398081 33.63010767\n", + " 32.639706 32.22108294 45.12621722 42.10767167 39.34740219 36.90340926\n", + " 34.84231167 33.23542179 32.15091525 31.64254972 32.22108294 27.83664346\n", + " 23.45294788 19.07050919 14.69045227 10.31581149 5.95852807 1.75318507\n", + " 31.64254972 27.26187195 22.88339755 18.50869029 14.14124675 9.79079234\n", + " 5.49780688 1.75318507 43.79692971 40.34599343 37.35277865 34.93513576\n", + " 33.218972 32.31623807 43.77085556 40.23738319 37.14847194 34.62331124\n", + " 32.79239466 31.77595577 30.30982943 24.93681956 19.5654525 14.19759296\n", + " 8.839633 3.53685305 29.73311087 24.36567291 19.00307614 13.6510271\n", + " 8.32988182 3.19782325 45.10500496 45.10500496 1.7737717 1.7737717\n", + " 42.42166164 38.76540449 35.54881922 32.90111338 30.96854417 29.89014797\n", + " 38.84875172 34.81931533 31.19850449 28.14447363 25.85882561 24.55705763\n", + " 35.73032881 31.30200643 27.21722925 23.65464611 20.88324085 19.24785615\n", + " 33.19472902 28.3733897DEBUG:root:radec2pix: xyfp: [[32.31363499 31.47041645]\n", + " [32.3144687 27.08398795]\n", + " [32.31530242 22.69755946]\n", + " [32.31613613 18.31113097]\n", + " [32.31696984 13.92470248]\n", + " [32.31780355 9.53827398]\n", + " [32.31863726 5.15184549]\n", + " [32.31947097 0.765417 ]\n", + " [32.31363499 31.47041645]\n", + " [27.9272065 31.46958273]\n", + " [23.540778 31.46874902]\n", + " [19.15434951 31.46791531]\n", + " [14.76792102 31.4670816 ]\n", + " [10.38149253 31.46624788]\n", + " [ 5.99506403 31.46541417]\n", + " [ 1.60863554 31.46458045]\n", + " [32.31947097 0.765417 ]\n", + " [27.93304248 0.76458329]\n", + " [23.54661399 0.76374957]\n", + " [19.1601855 0.76291586]\n", + " [14.77375701 0.76208215]\n", + " [10.38732851 0.76124844]\n", + " [ 6.00090002 0.76041472]\n", + " [ 1.61447153 0.75958101]\n", + " [ 1.60863554 31.46458045]\n", + " [ 1.60946926 27.07815197]\n", + " [ 1.61030297 22.69172348]\n", + " [ 1.61113668 18.30529498]\n", + " [ 1.61197039 13.91886648]\n", + " [ 1.6128041 9.53243799]\n", + " [ 1.61363782 5.1460095 ]\n", + " [ 1.61447153 0.75958101]\n", + " [32.29899849 29.55791363]\n", + " [32.30002028 24.18191372]\n", + " [32.30104209 18.80591382]\n", + " [32.30206388 13.42991392]\n", + "DEBUG:root:radec2pix: lng: [224.38740491 220.12408621 215.2503637 209.71210534 203.48918374\n", + " 196.62002098 189.22355762 181.5046646 224.38740491 228.56999572\n", + " 233.3693139 238.84884696 245.04132431 251.92249978 259.38507008\n", + " 267.22753799 181.5046646 181.74464663 182.07430544 182.55541483\n", + " 183.32331288 184.74247093 188.24144189 209.436015 267.22753799\n", + " 266.78398778 266.170335 265.26578644 263.80029466 261.02373287\n", + " 253.83681058 209.436015 222.61267508 216.98461546 210.38276245\n", + " 202.75476399 194.17390418 184.89586052 226.12630502 231.65859743\n", + " 238.18310357 245.77405246 254.38382437 263.77502084 181.62909594\n", + " 181.98420755 182.53422407 183.50001953 185.63706132 194.24647314\n", + " 267.02133208 266.36745836 265.3435183 263.51322198 259.32352397\n", + " 241.01895217 224.38712569 224.38712569 209.62070535 209.62070535\n", + " 224.34955164 229.91816922 236.57007702 244.41761198 253.43870278\n", + " 263.38126527 218.66991645 224.21163124 231.12094806 239.6844282\n", + " 250.04034734 261.9370562 211.92326671 217.1392423 23.79099004 19.61570597 16.16611847 13.98976784\n", + " 31.38353749 26.23138645 21.19074319 16.36497207 12.01581361 8.87411937\n", + " 30.4263959 25.07837271 19.74554986 14.44477252 9.23140937 4.4259617 ]\n", + "DEBUG:root:radec2pix: fitpx: [[4271.50000018 4155.50000017]\n", + " [4271.49999973 3863.07142834]\n", + " [4271.50000015 3570.64285725]\n", + " [4271.50000001 3278.21428572]\n", + " [4271.5000001 2985.78571433]\n", + " [4271.49999989 2693.35714282]\n", + " [4271.50000013 2400.92857145]\n", + " [4271.49999973 2108.49999999]\n", + " [4271.50000018 4155.50000017]\n", + " [3979.07142857 4155.5 ]\n", + " [3686.64285706 4155.49999989]\n", + " [3394.21428581 4155.50000016]\n", + " [3101.78571433 4155.50000009]\n", + " [2809.35714288 4155.50000006]\n", + " [2516.92857141 4155.49999991]\n", + " [2224.49999999 4155.49999972]\n", + " [4271.49999973 2108.49999999]\n", + " [3979.07142852 2108.5 ]\n", + " [3686.6428568 2108.49999999]\n", + " [3394.2142859 2108.50000001]\n", + " [3101.78571455 2108.50000001]\n", + " [2809.35714254 2108.49999998]\n", + " [2516.92857145 2108.5 ]\n", + " [2224.49999991 2108.49999996]\n", + " [2224.49999999 4155.49999972]\n", + " [2224.50000001 3863.07142866]\n", + " [2224.50000002 3570.64285748]\n", + " [2224.49999999 3278.21428555]\n", + " [2224.49999997 2985.78571404]\n", + " [2224.49999997 2693.35714267]\n", + " [2224.49999997 2400.92857132]\n", + " [2224.49999991 2108.49999996]\n", + " [4270.50000007 4028.00000007]\n", + " [4270.49999974 3669.5999998 ]\n", + " [4270.50000026 3311.20000015]\n", + " [4270.50000028 2952.80000012]\n", + " [4270.50000021 2594.40000005]\n", + " [4270.50000028 2236.00000002]\n", + " [4144.00000002 4154.50000002]\n", + " [3785.60000004 4154.50000005]\n", + " [3427.20000017 4154.50000027]\n", + " [3068.80000004 4154.50000009]\n", + " [2710.40000006 4154.50000023]\n", + " [2352. 4154.49999998]\n", + " [4144.00000024 2109.50000001]\n", + " [3785.60000024 2109.50000001]\n", + " [3427.20000038 2109.50000002]\n", + " [3068.80000022 2109.50000001]\n", + " [2710.3999999 2109.49999999]\n", + " [2352.00000033 2109.50000007]\n", + " [2225.50000001 4028.00000014]\n", + " [2225.5 3669.59999993]\n", + " [2225.49999997 3311.19999965]\n", + " [2225.50000003 2952.80000023]\n", + " [2225.50000001 2594.40000005]\n", + " [2225.50000007 2236.00000012]\n", + " [4270.50000014 4154.50000013]\n", + " [4270.50000014 4154.50000013]\n", + " [2225.5 2109.5 ]\n", + " [2225.5 2109.5 ]\n", + " [4143.99999977 4027.99999977]\n", + " [3785.60000006 4028.00000007]\n", + " [3427.19999985 4027.99999978]\n", + " [3068.80000002 4028.00000004]\n", + " [2710.40000003 4028.0000001 ]\n", + " [2351.99999998 4027.99999983]\n", + " [4143.99999989 3669.59999991]\n", + " [3785.59999992 3669.59999992]\n", + " [3427.20000008 3669.60000009]\n", + " [3068.80000009 3669.60000016]\n", + " [2710.40000007 3669.6000002 ]\n", + " [2352. 3669.60000003]\n", + " [4144.00000025 3311.20000016]\n", + " [3785.59999995 3311.19999996]\n", + " [3427.19999995 3311.19999995]\n", + " [3068.80000029 3311.20000039]\n", + " [2710.39999993 3311.19999986]\n", + " [2352.00000003 3311.20000016]\n", + " [4144.0000002 2952.80000009]\n", + " [3785.6000002 2952.80000011]\n", + " [3427.19999983 2952.79999988]\n", + " [3068.80000029 2952.80000027]\n", + " [2710.40000007 2952.8000001 ]\n", + " [2352.00000006 2952.80000022]\n", + " [4143.99999974 2594.39999993]\n", + " [3785.60000003 2594.40000001]\n", + " [3427.19999994 2594.39999997]\n", + " [3068.7999999 2594.39999994]\n", + " [2710.40000001 2594.40000001]\n", + " [2351.9999999 2594.39999976]\n", + " [4144.00000015 2236.00000001]\n", + " [3785.59999982 2235.99999998]\n", + " [3427.19999971 2235.99999996]\n", + " [3068.80000012 2236.00000002]\n", + " [2710.39999989 2235.99999997]\n", + " [2351.99999988 2235.99999991]]\n", + "06 223.99660639\n", + " 233.09330633 244.99523074 259.69237756 204.0228705 208.45144372\n", + " 214.63892612 223.61475061 236.90559041 255.7456151 195.0232601\n", + " 198.0723045 202.59166286 209.85191686 222.74900651 247.14363581\n", + " 185.201902 186.31923819 188.04100537 191.03114261 197.43976942\n", + " 218.89848666]\n", + "DEBUG:root:fitpix2pix: ccdpx: shape: (96, 2)\n", + "]\n", + " [0.01083545 0.09312436 0.99559552]\n", + " [0.01086402 0.05678335 0.99832741]\n", + " [0.01087112 0.02010461 0.99973878]\n", + " [0.20613793 0.2024732 0.95734621]\n", + " [0.20613793 0.2024732 0.95734621]\n", + " [0.01086844 0.00711848 0.9999156 ]\n", + " [0.01086844 0.00711848 0.9999156 ]\n", + " [0.19558949 0.19190537 0.96172609]\n", + " [0.1626169 0.19387759 0.96745399]\n", + " [0.12869151 0.19547539 0.9722283 ]\n", + " [0.09401511 0.1966967 0.9759465 ]\n", + " [0.05879055 0.19753824 0.97853069]\n", + " [0.02322296 0.19799645 DEBUG:root:fitpix2pix: visCut: True\n", + "DEBUG:root:radec2pix: lat: [73.24843796 74.22959053 75.14101603 75.95564397 76.6437957 77.17522107\n", + " 77.52247637 77.66531399 73.24843796 74.25938156 75.20604331 76.06127099\n", + " 76.79469021 77.37449152 77.77070397 77.95983585 77.66531399 79.26403549\n", + " 80.8954867 82.55419485 84.2348008 85.93154111 87.63625009 89.30890983\n", + " 77.95983585 79.5631834 81.19741545 82.85654952 84.53396682 86.22024\n", + " 87.89143193 89.30890983 73.68688931 74.8461168 75.87404737 76.71704667\n", + " 77.31977046 77.63442603 73.69912883 74.89851762 75.9747656 76.87322604\n", + " 77.53566935 77.90931811 78.357841 80.33991917 82.36567874 84.42519517\n", + " 86.5076147 88.59172382 78.65442708 80.64093339 82.6678651 84.72327772\n", + " 86.78866387 88.77999774 73.25542451 73.25542451 89.30107513 89.30107513\n", + " 74.14922787 75.40361568 76.5361131 77.48786454 78.19419066 78.59463145\n", + " 75.36296624 76.78183851 78.08930019 79.21461778 80.0707569 80.56622359\n", + " 76.44568445 78.03639269 79.53999931 80.87766645 81.93562678 82.57036945\n", + " 77.33928008 79.09582585 80.80551049 82.39402202 83.72877916 84.58613925\n", + " 77.98201104 79.8754942 81.77128989 83.62092117 85.31596639 86.56531268\n", + " 78.31903282 80.2916347 82.30308639 84.33811541 86.36841377 88.27312586]\n", + "0.9799276 ]\n", + " [0.19753009 0.15886347 0.96733875]\n", + " [0.16421774 0.1604891 0.97328094]\n", + " [0.12995114 0.1618095 0.97822819]\n", + " [0.09493033 0.16282181 0.98207805]\n", + " [0.05935726 0.16352163 0.98475245]\n", + " [0.02343764 0.16390447 0.98619775]\n", + " [0.19908829 0.12488974 0.97199095]\n", + " [0.16550536 0.12616714 0.97810522]\n", + " [0.13096617 0.12720791 0.98319175]\n", + " [0.09566871 0.12800859 0.98714806]\n", + " [0.05981412 0.1285643 0.9898957 ]\n", + " [0.02360896 0.12887024 0.99138039]\n", + " [0.20026215 0.09018615 0.97558266]\n", + " [0.16647694 0.09111203 0.98182688]\n", + " [0.13173312 0.09186896 0.98701899]\n", + " [0.09622682 0.09245358 0.99105637]\n", + " [0.06015857 0.0928614 0.99386 ]\n", + " [0.02373584 0.09308815 0.99537491]\n", + " [0.20104857 0.05495583 0.97803851]\n", + " [0.16712825 0.05552612 0.98437036]\n", + " [0.13224724 0.05599434 0.98963392]\n", + " [0.09660024 0.05635799 0.99372641]\n", + " [0.06038739 0.05661388 0.99656823]\n", + " [0.02381698 0.05675899 0.99810379]\n", + " [0.20144435 0.01940412 0.97930774]\n", + " [0.16745515 0.01961547 0.98568454]\n", + " [0.13250401 0.01979108 0.99098486]\n", + " [0.09678486 0.01992994 0.99510577]\n", + " [0.06049766 0.02003078 0.99796733]\n", + " [0.02385117 0.02009239 0.99951359]]\n", + "DEBUG:root:fitpix2pix: ccdpx: shape: (96, 2)\n", + "DEBUG:root:radec2pix: camVec: [[-0.20607518 -0.20787446 -0.20940354 -0.21066179 -0.21164814 -0.21236112\n", + " -0.21279916 -0.21296107 -0.20607518 -0.17964954 -0.15251864 -0.12479221\n", + " -0.09658011 -0.06799262 -0.03914089 -0.01013708 -0.21296107 -0.18561075\n", + " -0.15755214 -0.12888979 -0.09972928 -0.07017922 -0.04035219 -0.01036463\n", + " -0.01013708 -0.01020871 -0.01026764 -0.01031373 -0.01034674 -0.01036638\n", + " -0.0103724 -0.01036463 -0.20680345 -0.20882603 -0.21044235 -0.21165063\n", + " -0.2124482 -0.2128323 -0.19465346 -0.16177694 -0.12795009 -0.0933751\n", + " -0.05825505 -0.022795 -0.20112996 -0.16711987 -0.13214975 -0.09641349\n", + " -0.0601111 -0.02345151 -0.01026957 -0.0103498 -0.01041065 -0.01045169\n", + " -0.01047241 -0.01047238 -0.20599275 -0.20599275 -0.01046737 -0.01046737\n", + " -0.19541667 -0.16240545 -0.12844349 -0.09373247 -0.05847519 -0.02287686\n", + " -0.19732118 -0.16397526 -0.12967711 -0.09462661 -0.05902568 -0.02308015\n", + " -0.19884383 -0.16523235 -0.13066656 -0.09534433 -0.05946678 -0.02324061\n", + " -0.19998259 -0.16617376 -0.13140827 -0.09588212 -0.05979589 -0.0233572\n", + " -0.20073433 -0.16679525 -0.13189744 -0.09623556 -0.06000982 -0.02342863\n", + " -0.20109591 -0.16709274 -0.13212968 -0.09640067 -0.06010576 -0.0234538 ]\n", + " [-0.20019593 -0.17367087 -0.14646307 -0.11868235 -0.09043873 -0.0618427\n", + " -0.03300558 -0.0040396 -0.20019593 -0.20202839 -0.20359907 -0.20490731\n", + " -0.20595196 -0.20673135 -0.20724368 -0.20748743 -0.0040396 -0.00409191\n", + " -0.0041395 -0.00418225 -0.00421998 -0.00425248 -0.00427955 -0.00430103\n", + " -0.20748743 -0.17998755 -0.15180051 -0.12303089 -0.0937848 -0.06417157\n", + " -0.03430461 -0.00430103 -0.18872819 -0.15574492 -DEBUG:root:radec2pix: lat: [73.24108038 74.22539246 75.14065481 75.95980834 76.6531185 77.19018187\n", + " 77.5432879 77.69182998 73.24108038 74.24861044 75.19133398 76.04212851\n", + " 76.77071823 77.34548632 77.73675519 77.92139244 77.69182998 79.29098794\n", + " 80.92271511 82.58149911 84.2618841 85.95783408 87.66008742 89.3157252\n", + " 77.92139244 79.52414159 81.15801466 82.81709844 84.49494889 86.18266378\n", + " 87.85870936 89.3157252 73.68081786 74.84436919 75.87765867 76.72697854\n", + " 77.33670031 77.65849826 73.69035695 74.88520803 75.9561532 76.84869716\n", + " 77.50496612 77.87275428 78.38454537 80.36704866 82.39295371 84.45217978\n", + " 86.53330534 88.61095022 78.61571107 80.60164359 82.62842612 84.684393\n", + " 86.75213987 88.75761015 73.24806584 73.24806584 89.30770045 89.30770045\n", + " 74.1417384 75.39152116 76.51854281 77.46407515 78.16380788 78.55793051\n", + " 75.35984123 76.77406669 78.07566348 79.19387762 80.04201199 80.52949342\n", + " 76.4480688 78.03443361 79.53211824 80.86193095 81.91012885 82.53435821\n", + " 77.34827857 79.10130772 80.80570953 82.38629346 83.70950064 84.55228195\n", + " 77.99844552 79.88985033 81.78208758 83.62548455 85.30897599 86.53756064\n", + " 78.34312947 80.31550148 82.32609465 84.35907996 86.38425999 88.27008044]\n", + "DEBUG:root:fitpix2pix: visCut: True\n", + "DEBUG:root:radec2pix: xyfp Shape: (96, 2)\n", + " [32.30308568 8.05391402]\n", + " [32.30410748 2.67791411]\n", + " [30.40113787 31.45505294]\n", + " [25.02513797 31.45403115]\n", + " [19.64913807 31.45300935]\n", + " [14.27313817 31.45198755]\n", + " [ 8.89713826 31.45096576]\n", + " [ 3.52113836 31.44994396]\n", + " [30.40696816 0.7800535 ]\n", + " [25.03096826 0.7790317 ]\n", + " [19.65496836 0.7780099 ]\n", + " [14.27896845 0.77698811]\n", + " [ 8.90296855 0.77596631]\n", + " [ 3.52696865 0.77494451]\n", + " [ 1.62399904 29.55208334]\n", + " [ 1.62502084 24.17608344]\n", + " [ 1.62604264 18.80008353]\n", + " [ 1.62706443 13.42408364]\n", + " [ 1.62808623 8.04808373]\n", + " [ 1.62910803 2.67208383]\n", + " [32.29863784 31.4554136 ]\n", + " [32.29863784 31.4554136 ]\n", + " [ 1.62946868 0.77458386]\n", + " [ 1.62946868 0.77458386]\n", + " [30.40149852 29.55755297]\n", + " [25.02549862 29.55653118]\n", + " [19.64949872 29.55550938]\n", + " [14.27349882 29.55448759]\n", + " [ 8.89749891 29.55346579]\n", + " [ 3.52149901 29.55244399]\n", + " [30.40252032 24.18155307]\n", + " [25.02652042 24.18053128]\n", + " [19.65052052 24.17950948]\n", + " [14.27452061 24.17848769]\n", + " [ 8.89852071 24.17746589]\n", + " [ 3.52252081 24.17644409]\n", + " [30.40354212 18.80555317]\n", + " [25.02754221 18.80453137]\n", + " [19.65154231 18.80350958]\n", + " [14.27554241 18.80248779]\n", + " [ 8.89954251 18.80146598]\n", + " [ 3.5235426 18.80044419]\n", + " [30.40456392 13.42955327]\n", + " [25.02856401 13.42853147]\n", + " [19.65256411 13.42750967]\n", + " [14.27656421 13.42648788]\n", + " [ 8.9005643 13.42546608]\n", + " [ 3.5245644 13.42444429]\n", + " [30.40558571 8.05355336]\n", + " [25.02958581 8.05253157]\n", + " [19.6535859 8.05150977]\n", + " [14.277586 8.05048797]\n", + " [ 8.9015861 8.04946618]\n", + " [ 3.5255862 8.04844438]\n", + " [30.40660751 2.67755346]\n", + " [25.0306076 2.67653166]\n", + " [19.6546077 2.67550987]\n", + " [14.2786078 2.67448807]\n", + " [ 8.90260789 2.67346627]\n", + " [ 3.52660799 2.67244448]]\n", + "0.12184525 -0.0872316\n", + " -0.05210744 -0.0166781 -0.20093724 -0.20300612 -0.20468137 -0.20596106\n", + " -0.20684219 -0.20732153 -0.00416252 -0.00422448 -0.00427905 -0.00432591\n", + " -0.00436469 -0.00439503 -0.19558822 -0.16140908 -0.12630166 -0.09046055\n", + " -0.05408714 -0.0173918 -0.20011322 -0.20011322 -0.00440367 -0.00440367\n", + " -0.18950334 -0.19145029 -0.19302803 -0.19423441 -0.195066 -0.19551916\n", + " -0.15638145 -0.15798254 -0.1592836 -0.16028164 -0.16097217 -0.16135064\n", + " -0.12234264 -0.1235961 -0.12461804 -0.12540495 -0.1259519 -0.1262541\n", + " -0.08758892 -0.08849133 -0.08922984 -0.08980108 -0.09020062 -0.09042422\n", + " -0.05232353 -0.0528708 -0.053321 -0.05367171 -0.05391982 -0.0540624\n", + " -0.016752 -0.01694088 -0.01709901 -0.01722548 -0.01731915 -0.01737894]\n", + " [ 0.95783851 0.96261448 0.96679818 0.97032784 0.97315256 0.9752324\n", + " 0.97653835 0.97705233 0.95783851 0.96276195 0.96710159 0.97079344\n", + " 0.97378441 0.97603235 0.97750603 0.97818516 0.97705233 0.98261483\n", + " 0.98750199 0.99165011 0.99500566 0.99752533 0.99917635 0.99993704\n", + " 0.97818516 0.98361591 0.98835782 0.99234925 0.99553873 0.99788504\n", + " 0.9993576 0.99993704 0.96000729 0.96547149 0.96998338 0.97344474\n", + " 0.97578203 0.97694639 0.96006992 0.96572084 0.97042996 0.97409503\n", + " 0.97663845 0.97800724 0.97955572 0.98592753 0.99122053 0.99533197\n", + " 0.99818215 0.99971531 0.98063234 0.98683331 0.99193725 0.99584519\n", + " 0.9984813 0.99979391 0.95787352 0.95787352 0.99993552 0.99993552\n", + " 0.9622374 0.96797276 0.97274994 0.9764667 0.97904541 0.98043302\n", + " 0.96778572 0.97373181 0.978679 0.98252511 0.98519233 0.98662722\n", + " 0.97236485 0.97847957 0.98356321 0.98751357 0.9902524 0.99172566\n", + " 0.9758766 0.9821179 0.98730436 0.99133364 0.9941269 0.9956294\n", + " 0.9782474 0.98457302 0.98982824 0.99391049 0.99674043 0.99826267\n", + " 0.97942831 0.98579563 0.99108495 0.99519355 0.99804176 0.99957386]]\n", + "DEBUG:root:radec2pix: camVec: [[0.20581047 0.20764708 0.20921111 0.21050368 0.21152432 0.2122716\n", + " 0.21274377 0.21293946 0.20581047 0.17940008 0.15228099 0.1245652DEBUG:root:radec2pix: lng: [44.48637088 40.24577336 35.3986005 29.89032997 23.69955042 16.86222735\n", + " 9.49377237 1.79522173 44.48637088 48.66063412 53.44662754 58.90649312\n", + " 65.0719071 71.9184746 79.34035003 87.13941954 1.79522173 2.08115239\n", + " 2.4736322 3.04578526 3.95735654 5.6363423 9.74006464 33.09159725\n", + " 87.13941954 86.68537287 86.05851166 85.13727473 83.65177634 80.86105503\n", + " 73.77851938 33.09159725 42.72105973 37.1234454 30.55748427 22.96885005\n", + " 14.42630836 5.17884001 46.22224274 51.74114431 58.24340245 65.80116251\n", + " 74.36661193 83.70585675 1.93801443 2.35975361 3.01217367 4.15532416\n", + " 6.6725739 16.60005947 86.92909007 86.26070822 85.21749379 83.36321455\n", + " 79.16883097 61.59868241 44.48614146 44.48614146 33.22349754 33.22349754\n", + " 44.45527608 50.01139871 56.64103308 64.45360362 73.42615136 83.31035484\n", + " 38.80796323 44.3420957 51.23163704 59.75644459 70.04944098 81.86211477\n", + " 32.10039047 37.31880048 44.16600061 53.22697224 65.04995068 79.6185637\n", + " 24.24396698 28.69167771 5\n", + " 0.09636347 0.06778617 0.03894463 0.00995116 0.21293946 0.18558556\n", + " 0.15752187 0.12885256 0.09968382 0.07012532 0.04029051 0.01029607\n", + " 0.00995116 0.01003858 0.01011374 0.01017639 0.01022623 0.01026295\n", + " 0.01028629 0.01029607 0.20655553 0.20862193 0.21028039 0.21153069\n", + " 0.21237025 0.212796 0.1943962 0.16153559 0.12772204 0.0931597\n", + " 0.05805212 0.02260459 0.2011068 0.16709142 0.1321133 0.09636698\n", + " 0.06005439 0.02338579 0.01009044 0.01019035 0.01027142 0.0103331\n", + " 0.01037483 0.01039617 0.20572824 0.20572824 0.01039877 0.01039877\n", + " 0.19517474 0.1621771 0.12822694 0.09352723 0.05828102 0.02269376\n", + " 0.19712067 0.1637837 0.12949375 0.09445078 0.05885684 0.0229182\n", + " 0.19868404 0.16507817 0.13051704 0.09519827 0.05932353 0.02310025\n", + " 0.19986372 0.16605732 0.13129265 0.09576573 0.05967819 0.02323871\n", + " 0.20065641 0.16671646 0.13181555 0.09614872 0.05991775 0.0233323\n", + " 0.20105858 0.16705125 0.13208139 0.09634357 0.06003972 0.02338002]\n", + " [0.20196806 0.17549093 0.14832034 0.12056829 0.0923455 0.06376263\n", + " 0.0349311 0.00596325 0.20196806 0.20380697 0.20537849 0.20668384\n", + " 0.20772258 0.20849323 0.20899395 0.20922323 0.00596325 0.00601646\n", + " 0.00606233 0.00610071 0.00613144 0.00615431 0.00616917 0.00617591\n", + " 0.20922323 0.18176716 0.15361557 0.12487279 0.09564544 0.0660437\n", + " 0.03618151 0.00617591 0.19052281 0.15759064 0.12372836 0.08914025\n", + " 0.05403012 0.01860347 0.20271324 0.2047859 0.20645854 0.207731\n", + " 0.20860063 0.20906415 0.00608691 0.00614821 0.00619816 0.00623643\n", + " 0.00626269 0.00627666 0.19734414 0.16321317 0.12814101 0.0923229\n", + " 0.05596168 0.01926848 0.20188558 0.20188558 0.00627861 0.00627861\n", + " 0.19130075 0.19325024 0.19482509 0.19602426 0.19684438 0.19728171\n", + " 0.15822879 0.1598311 0.16112922 0.16212009 0.16279899 0.16316141\n", + " 0.12422708 0.12548158 0.12650047 0.12727979 0.12781451 0.12810021\n", + " 0.08949878 0.09040196 0.09113695 0.09169995 0.09208666 0.09229337\n", + " 0.05424725 0.05479478 0.05524091 0.05558298 0.05581806 0.05594375\n", + " 0.01867818 0.01886665 0.0190203DEBUG:root:optics_fp: rtanth: [45.0829242 42.14007881 39.46623798 37.11957906 35.16566323 33.67292833\n", + " 32.70458448 32.30781794 45.0829242 42.05181002 39.27748601 36.81804721\n", + " 34.74043472 33.1165898 32.01563284 31.49245123 32.30781794 27.92274647\n", + " 23.53818074 19.15446803 14.77236778 10.39391962 6.02708817 1.76054813\n", + " 31.49245123 27.11255561 22.73517913 18.3621235 13.99743906 9.65248838\n", + " 5.37533955 1.76054813 43.75905359 40.32550839 37.35292806 34.95909888\n", + " 33.26918554 32.39354213 43.72230567 40.17242604 37.06494796 34.51955493\n", + " 32.6679006 31.63204924 30.39623387 25.02228675 19.64946278 14.27902981\n", + " 8.91530985 3.58853155 29.58337372 24.21709844 18.85636405 13.50776907\n", + " 8.19511667 3.10850472 45.06171287 45.06171287 1.78051042 1.78051042\n", + " 42.37849474 38.70556314 35.46980647 32.8008609 30.84620775 29.74698879\n", + " 38.82304306 34.77660814 31.13517347 28.05687673 25.74452154 24.41669917\n", + " 35.72566697 31.28109784 27.17523938 23.58565115 20.78160237 19.11203303\n", + " 33.21476541 28.37964DEBUG:root:radec2pix: camVec Shape: (3, 96)\n", + "838 23.77795187 19.57499171 16.08640287 13.86243725\n", + " 31.43120667 26.26984115 21.21535074 16.36705265 11.9779994 8.76739863\n", + " 30.50284606 25.15168819 19.81398425 14.50459502 9.27228848 4.40115246]\n", + "DEBUG:root:mm_to_pix: fitpx: [[0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]]\n", + "34.89141577 43.85434751 57.06355174 75.69539259\n", + " 15.28811193 18.37837592 22.94811312 30.25991115 43.15274514 67.23630391\n", + " 5.50203766 6.68110194 8.4950185 11.63570463 18.3197087 40.11102427]\n", + " 0.01913813 0.01921909 0.01926233]\n", + " [0.95752334 0.96233343 0.96655667 0.97012962 0.9730004 0.97512825\n", + " 0.97648344 0.9770472 0.95752334 0.96243355 0.96676273 0.97044592\n", + " 0.97342972 0.97567188 0.97714116 0.97781727 0.9770472 0.98260969\n", + " 0.98749689 0.991645 0.99500027 0.99751921 0.99916896 0.99992792\n", + " 0.97781727 0.98329036 0.98807893 0.99212057 0.99536294 0.99776395\n", + " 0.99929229 0.99992792 0.95970614 0.96521608 0.9697801 0.97329789\n", + " 0.97569443 0.97691953 0.95974864 0.96538541 0.97008348 0.97373975\n", + " 0.97627646 0.97764064 0.97955041 0.98592224 0.99121524 0.99532633\n", + " 0.99817546 0.99970681 0.98028234 0.9865382 0.99170277 0.9956755\n", + " 0.99837901 0.99976029 0.95755841 0.95755841 0.99992622 0.99992622\n", + " 0.96193079 0.96765331 0.9724202 0.97612865 0.97870098 0.98008414\n", + " 0.96752627 0.97346234 0.97840112 0.98224036 0.98490221 0.98633316\n", + " 0.97215857 0.97826559 0.98334273 0.98728777 0.99002231 0.99149217\n", + " 0.97572766 0.98196357 0.98714553 0.99117105 0.99396105 0.99546064\n", + " 0.9781586 0.98448116 0.98973385 0.99381384 0.99664146 0.99816126\n", + " 0.97940113 0.98576768 0.99105637 0.99516413 0.99801095 0.99954106]]\n", + "DEBUG:root:radec2pix: xyfp Shape: (96, 2)\n", + "DEBUG:root:mm_to_pix: fitpx.shape: (96, 2)\n", + "DEBUG:root:radec2pix: camVec Shape: (3, 96)\n", + "DEBUG:root:optics_fp: rtanth: [45.10526614 42.15252235 39.46728719 37.10767964 35.13935868 33.63109692\n", + " 32.64672024 32.23425998 45.10526614 42.08371704 39.32015966 36.87264817\n", + " 34.80791464 33.1974573 32.10970154 31.5986741 32.23425998 27.84962696\n", + " 23.46566508 19.08283694 14.70215645 10.32635724 5.96618932 1.74318313\n", + " 31.5986741 27.21812469 22.83983208 18.46540167 14.09842896 9.748941\n", + " 5.45889306 1.74318313 43.77728663 40.33061683 37.34259278 34.93111177\n", + " 33.22196043 32.3267303 43.74864122 40.21129183 37.11812392 34.58850978\n", + " 32.75328451 31.73315358 30.32290674 24.94961031 19.57779834 14.20915457\n", + " 8.84944693 3.53950567 29.68929466 24.32204857 18.9597634 13.60830488\n", + " 8.2886698 3.16557807 45.08405409 45.08405409 1.76362955 1.76362955\n", + " 42.40073703 38.740507 35.51948783 32.86706408 30.92986484 29.84747775\n", + " 38.83207862 34.7984872 31.1727741 28.11319496 25.82178089 24.5148885\n", + " 35.71891532 31.28650338 27.19655174 23.62757526 20.84885967 19.20651814\n", + " 33.18967076 28.36474267 23.77742123 19.59529652 16.13655116 13.95004204\n", + " 31.3858301 26.23117825 21.1868319 16.35517444 11.99601471 8.83853824\n", + " 30.43664187 25.08771711 19.753498 14.45027919 9.23164159 4.4089223 ]\n", + "DEBUG:root:optics_fp: cphi: [0.713738 0.76376784 0.81578691 0.86774466 0.91646952 0.95772545\n", + " 0.98678686 0.99960811 0.713738 0.66073156 0.59560321 0.51618565\n", + " 0.42082689 0.3091928 0.18318995 0.04750869 0.99960811 DEBUG:root:optics_fp: cphi: [0.71674184 0.76675024 0.81864942 0.87035228 0.91865771 0.95932569\n", + " 0.98767201 0.99974255 0.71674184 0.66409483 0.59932455 0.52022133\n", + " 0.42506968 0.31345852 0.18722881 0.05105417 0.99974255 0.99965353\n", + " 0.99950987 0.99925593 0.99874223 0.99744464 0.99234175 0.9056856\n", + " 0.05105417 0.05923154 0.07055215 0.08725098 0.11432168 0.16558509\n", + " 0.29698694 0.9056856 0.73806414 0.80084934 0.86451924 0.92365062\n", + " 0.9704975 0.99665945 0.6953044 0.6229226 0.53010496 0.41345588\n", + " 0.27232584 0.11128947 0.99969644 0.99954923 0.99926436 0.99859785\n", + " 0.99637691 0.97728259 0.0548278 0.06688083 0.08577093 0.11956053\n", + " 0.19678357 0.51804091 0.7167462 0.7167462 0.90395966 0.90395966\n", + " 0.7173329 0.64650885 0.55392153 0.43509499 0.28838199 0.1183142\n", + " 0.78296688 0.7194824 0.6309635 0.50857972 0.34543889 0.14404729\n", + " 0.85078398 0.79980651 0.72282072 0.60489433 0.42782202 0.18390653\n", + " 0.9150296 0.88149415 0.82599605 0.72871014 0.55254711 0.25338228\n", + " 0.96687862 0.95220074 0.92565817 0.DEBUG:root:optics_fp: cphi: [-0.71462647 -0.76465055 -0.81663789 -0.86852682 -0.91713533 -0.95822269\n", + " -0.98707045 -0.99965519 -0.71462647 -0.66170459 -0.59665476 -0.51729759\n", + " -0.42196448 -0.31030314 -0.18420747 -0.04836971 -0.99965519 -0.99953644\n", + " -0.99934473 -0.99900557 -0.99831831 -0.99657638 -0.98967281 -0.87090507\n", + " -0.04836971 -0.05610053 -0.06679051 -0.08253363 -0.10799424 -0.15602533\n", + " -0.27837409 -0.87090507 -0.73594733 -0.79879708 -0.86266587 -0.92216881\n", + " -0.96955698 -0.99635146 -0.69307094 -0.62034596 -0.5272064 -0.41033606\n", + " -0.26919173 -0.10843276 -0.99959581 -0.99940041 -0.99902199 -0.99813478\n", + " -0.99516407 -0.96924606 -0.05196415 -0.06335735 -0.0811815 -0.11297393\n", + " -0.18526317 -0.48452029 -0.71462988 -0.71462988 -0.86931637 -0.86931637\n", + " -0.71508845 -0.64388103 -0.55091667 -0.43180852 -0.28504096 -0.11526196\n", + " -0.78075859 -0.71676907 -0.62767848 -0.50476226 -0.34135833 -0.1402609\n", + " -0.84875703 -0.7971706 -0.71938094 -0.60051365 -0.4226937 -0.17893311\n", + " -0.91338303 -0.879221170.99947492\n", + " 0.99926025 0.99888104 0.99811368 0.99617106 0.98847974 0.85755676\n", + " 0.04750869 0.05514364 0.06569574 0.08122479 0.10631221 0.15355346\n", + " 0.27346048 0.85755676 0.73505851 0.79793137 0.86187328 0.92151896\n", + " 0.96912745 0.99620029 0.69214539 0.6193195 0.5260996 0.40919818\n", + " 0.26810473 0.10749625 0.99954227 0.99932373 0.99890128 0.99791251\n", + " 0.99460641 0.9658178 0.05106448 0.06231447 0.07990085 0.11122898\n", + " 0.18228563 0.4748373 0.71374111 0.71374111 0.85606035 0.85606035\n", + " 0.71415887 0.64283622 0.5497737 0.43061783 0.28389471 0.11427866\n", + " 0.7798406 0.71568995 0.62643496 0.50339666 0.33999355 0.13909785\n", + " 0.84790325 0.79611069 0.71806949 0.59894626 0.42100084 0.17746713\n", + " 0.9126717 0.87828385 0.82148283 0.72227275 0.54384668 0.24417059\n", + " 0.96534426 0.95000384 0.92228562 0.86574653 0.73169559 0.38493034\n", + " 0.9957126 0.99368273 0.9897899 0.98083551 0.95239474 0.77179741]\n", + " -0.82275039 -0.7239943 -0.54602022 -0.24622747\n", + " -0.96582068 -0.95066579 -0.92326613 -0.86731478 -0.73433428 -0.388487139471 0.74187378 0.40036553\n", + " 0.99622933 0.99443943 0.99100871 0.9831251 0.95810564 0.79702588]\n", + "DEBUG:root:mm_to_pix: fitpx: [[0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]]\n", + "2227\n", + " -0.99588139 -0.99392405 -0.99016821 -0.98152333 -0.95403253 -0.77825973]\n", + "DEBUG:root:radec2pix: lat: [73.19833089 74.18249103 75.09922688 75.92116023 76.61853688 77.16100123\n", + " 77.52079342 77.67706772 73.19833089 74.20159367 75.14093371 75.98890558\n", + " 76.71531245 77.28881429 77.68005228 77.86611976 77.67706772 79.27473553\n", + " 80.90480881 82.56181915 84.24016258 85.93331116 87.63030205 89.26372814\n", + " 77.86611976 79.46663016 81.09832556 82.755367 84.43126132 86.11695715\n", + " 87.79091006 89.26372814 73.63774563 74.80227565 75.83862014 76.69292614\n", + " 77.3096353 77.64025349 73.64559076 74.835883 75.90321746 76.7930912\n", + " 77.44812351 77.8166633 78.36913095 80.34967761 82.37343442 84.43012843\n", + " 86.50734673 88.57380626 78.55945528 80.5426681 82.56690719 84.62047016\n", + " 86.68569475 88.69035885 73.20529527 73.20529527 89.25558432 89.25558432\n", + " 74.09681811 75.34210951 76.46528549 77.40781255 78.10603298 78.5008319\n", + " 75.3160395 76.72544415 78.02222799 79.13621749 79.98176995 80.46955109\n", + " 76.40729948 77.98832745 79.48016045 80.80422916 81.84813181 82.47175257\n", + " 77.31254652 79.06012758 80.75806605 82.3313541 83.64750757 84.48728684\n", + " 77.96997446 79.85669547 81.74302972 83.57869755 85.2518859 86.47101417\n", + " 78.32402093 80.29356392 82.30071175 84.32903186 86.34620527 88.21286949]\n", + "DEBUG:root:cartToSphere: vec: [[0.20581047 0.20196806 0.95752334]\n", + " [0.20764708 0.17549093 0.96233343]\n", + " [0.20921111 0.14832034 0.96655667]\n", + " [0.21050368 0.12056829 0.97012962]\n", + " [0.21152432 0.0923455 0.9730004 ]\n", + " [0.2122716 0.06376263 0.97512825]\n", + " [0.21274377 0.0349311 0.97648344]\n", + " [0.21293946 0.00596325 0.9770472 ]\n", + " [0.20581047 0.20196806 0.95752334]\n", + " [0.17940008 0.20380697 0.96243355]\n", + " [0.15228099 0.20537849 0.96676273]\n", + " [0.12456525 0.20668384 0.97044592]\n", + " [0.09636347 0.20772258 0.97342972]\n", + " [0.06778617 0.20849323 0.97567188]\n", + " [0.03894463 0.20899395 0.97714116]\n", + " [0.00995116 0.20922323 0.97781727]\n", + " [0.21293946 0.00596325 0.9770472 ]\n", + " [0.18558556 0.00601646 0.98260969]\n", + " [0.15752187 0.00606233 0.98749689]\n", + " [0.12885256 0.00610071 0.991645 ]\n", + " [0.09968382 0.00613144 0.99500027]\n", + " [0.07012532 0.00615431 0.99751921]\n", + " [0.04029051 0.00616917 0.99916896]\n", + " [0.01029607 0.00617591 0.99992792]\n", + " [0.00995116 0.20922323 0.97781727]\n", + " [0.01003858 0.18176716 0.98329036]\n", + " [0.01011374 0.15361557 0.98807893]\n", + " [0.01017639 0.12487279 0.99212057]\n", + " [0.01022623 0.09564544 0.99536294]\n", + " [0.01026295 0.0660437 0.99776395]\n", + " [0.01028629 0.03618151 0.99929229]\n", + " [0.01029607 0.00617591 0.99992792]\n", + " [0.20655553 0.19052281 0.95970614]\n", + " [0.20862193 0.15759064 0.96521608]\n", + " [0.21028039 0.12372836 0.9697801 ]\n", + " [0.21153069 0.08914025 0.97329789]\n", + " [0.21237025 0.05403012 0.97569443]\n", + " [0.212796 0.01860347 0.97691953]\n", + " [0.1943962 0.20271324 0.95974864]\n", + " [0.16153559 0.2047859 0.96538541]\n", + " [0.12772204 0.20645854 0.97008348]\n", + " [0.0931597 0.207731 0.97373975]\n", + " [0.05805212 0.20860063 0.97627646]\n", + " [0.02260459 0.20906415 0.97764064]\n", + " [0.2011068 0.00608691 0.97955041]\n", + " [0.16709142 0.00614821 0.98592224]\n", + " [0.1321133 0.00619816 0.99121524]\n", + " [0.09636698DEBUG:root:cartToSphere: vec: [[-0.20607518 -0.20019593 0.95783851]\n", + " [-0.20787446 -0.17367087 0.96261448]\n", + " [-0.20940354 -0.14646307 0.96679818]\n", + " [-0.21066179 -0.11868235 0.97032784]\n", + " [-0.21164814 -0.09043873 0.97315256]\n", + " [-0.21236112 -0.0618427 0.9752324 ]\n", + " [-0.21279916 -0.03300558 0.97653835]\n", + " [-0.21296107 -0.0040396 0.97705233]\n", + " [-0.20607518 -0.20019593 0.95783851]\n", + " [-0.17964954 -0.20202839 0.96276195]\n", + " [-0.15251864 -0.20359907 0.96710159]\n", + " [-0.12479221 -0.20490731 0.97079344]\n", + " [-0.09658011 -0.20595196 0.97378441]\n", + " [-0.06799262 -0.20673135 0.97603235]\n", + " [-0.03914089 -0.20724368 0.97750603]\n", + " [-0.01013708 -0.20748743 0.97818516]\n", + " [-0.21296107 -0.0040396 0.97705233]\n", + " [-0.18561075 -0.00409191 0.98261483]\n", + " [-0.15755214 -0.0041395 0.98750199]\n", + " [-0.12888979 -0.00418225 0.99165011]\n", + " [-0.09972928 -0.00421998 0.99500566]\n", + " [-0.07017922 -0.00425248 0.99752533]\n", + " [-0.04035219 -0.00427955 0.99917635]\n", + " [-0.01036463 -0.00430103 0.99993704]\n", + " [-0.01013708 -0.20748743 0.97818516]\n", + " [-0.01020871 -0.17998755 0.98361591]\n", + " [-0.01026764 -0.15180051 0.98835782]\n", + " [-0.01031373 -0.12303089 0.99234925]\n", + " [-0.01034674 -0.0937848 0.99553873]\n", + " [-0.01036638 -0.06417157 0.99788504]\n", + " [-0.0103724 -0.03430461 0.9993576 ]\n", + " [-0.01036463 -0.00430103 0.99993704]\n", + " [-0.20680345 -0.18872819 0.96000729]\n", + " [-0.20882603 -0.15574492 0.96547149]\n", + " [-0.21044235 -0.12184525 0.96998338]\n", + " [-0.21165063 -0.0872316 0.97344474]\n", + " [-0.2124482 -0.05210744 0.97578203]\n", + " [-0.2128323 -0.0166781 0.97694639]\n", + " [-0.19465346 -0.20093724 0.96006992]\n", + " [-0.16177694 -0.20300612 0.96572084]\n", + " [-0.12795009 -0.20468137 0.97042996]\n", + " [-0.0933751 -0.20596106 0.97409503]\n", + " [-0.05825505 -0.20684219 0.97663845]\n", + " [-0.022795 -0.20732153 0.97800724]\n", + " [-0.20112996 -0.00416252 0.97955572]\n", + " [-0.16711987 -0.00422448 0.98592753]\n", + " [-0.13214975 -0.00427905 0.99122053]\n", + " [-0.09641349 -0.00432591 0.99533197]\n", + " [-0.0601111 -0.00436469 0.99818215]\n", + " [-0.02345151 -0.00439503 0.99971531]\n", + " [-0.01026957 -0.195DEBUG:root:optics_fp: sphi: [0.69733861 0.64194554 0.57429359 0.49242959 0.39505443 0.28230164\n", + " 0.15653753 0.02269007 0.69733861 0.74764835 0.80050614 0.85403148\n", + " 0.90516063 0.94960189 0.98231633 0.99869589 0.02269007 0.02632152\n", + " 0.03130538 0.03856929 0.05013934 0.07144362 0.12352264 0.42394999\n", + " 0.99869589 0.99824427 0.99750809 0.99618636 0.99344379 0.98619551\n", + " 0.95488154 0.42394999 0.67473055 0.59886588 0.50259973 0.38323562\n", + " 0.24111118 0.08166976 0.71871537 0.78228347 0.84793203 0.91052415\n", + " 0.96220509 0.99378803 0.02463779 0.03002235 0.03835014 0.05293717\n", + " 0.08504731 0.21194041 0.99849582 0.99776097 0.99631488 0.99282691\n", + " 0.98044695 0.85535584 0.69733413 0.69733413 0.42761774 0.42761774\n", + " 0.69673058 0.76290649 0.83256888 0.90038456 0.95751545 0.99297621\n", + " 0.62206339 0.69451068 0.77581252 0.86101491 0.93844125 0.9895708\n", + " 0.52551558 0.6002579 0.6910356 0.79630575 0.903863 0.98294374\n", + " 0.40338671 0.47219495 0.5636759 0.68482227 0.83348167 0.96736623\n", + " 0.25523664 0.305473 0.37836089 0.49058257 0.67053956 0.91635552\n", + " 0.08675898 0.10531014 0.13379739 0.18293452 0.28641505 0.60394515]\n", + "DEBUG:root:radec2pix: xyfp: [[ 0.26283402 -31.55708986]\n", + " [ 0.26401791 -27.17066146]\n", + " [ 0.2652018 -22.78423305]\n", + " [ 0.26638569 -18.39780463]\n", + " [ 0.26756957 -14.01137623]\n", + " [ 0.26875346 -9.62494781]\n", + " [ 0.26993735 -5.2385194 ]\n", + " [ 0.27112123 -0.85209099]\n", + " [ 0.26283402 -31.55708986]\n", + " [ 4.64926244 -31.55827376]\n", + " [ 9.03569085 -31.55945764]\n", + " [ 13.42211926 -31.56064153]\n", + " [ 17.80854767 -31.56182542]\n", + " [ 22.19497608 -31.56300931]\n", + " [ 26.5814045 -31.56419319]\n", + " [ 30.96783291 -31.56537708]\n", + " [ 0.27112123 -0.85209099]\n", + " [ 4.65754965 -0.85327487]\n", + " [ 9.04397805 -0.85445876]\n", + " [ 13.43040647 -0.85564265]\n", + " [ 17.81683488 -0.85682653]\n", + " [ 22.20326329 -0.85801042]\n", + " [ 26.5896917 -0.85919431]\n", + " [ 30.97612012 -0.8603782 ]\n", + " [ 30.96783291 -31.56537708]\n", + " [ 30.9690168 -27.17894867]\n", + " [ 30.97020068 -22.79252025]\n", + " [ 30.97138456 -18.40609184]\n", + " [ 30.97256845 -14.01966343]\n", + " [ 30.97375234 -9.63323502]\n", + " [ 30.97493622 -5.24680661]\n", + " [ 30.97612012 -0.8603782 ]\n", + " [ 0.2783502 -29.64459399]\n", + " [ 0.27980117 -24.26859418]\n", + " [ 0.28125214 -18.89259438]\n", + " [ 0.28270311 -13.51659457]\n", + " [ 0.28415408 -8.14059477]\n", + " [ 0.28560505 -2.76459497]\n", + " [ 2.175338 -31.54260605]\n", + " [ 7.55133781 -31.54405702]\n", + " [ 12.92733761 -31.54550799]\n", + " [ 18.30333742 -31.54695896]\n", + " [ 23.67933722 -31.54840993]\n", + " [ 29.05533702 -31.5498609 ]\n", + " [ 2.18361712 -0.86760716]\n", + " [ 7.55961692 -0.86905814]\n", + " [ 12.93561673 -0.87050911]\n", + " [ 18.31161653 -0.87196007]\n", + " [ 23.68761633 -0.87341105]\n", + " [ 29.06361614 -0.87486202]\n", + " [ 30.95334909 -29.6528731 ]\n", + " [ 30.95480005 -24.27687329]\n", + " [ 30.95625103 -18.90087349]\n", + " [ 30.95770199 -13.52487368]\n", + " [ 30.95915297 -8.14887388]\n", + " [ 30.96060394 -2.77287408]\n", + " [ 0.27783807 -31.54209392]\n", + " [ 0.27783807 -31.54209392]\n", + " [ 30.96111607 -0.87537415]\n", + " [ 30.96111607 -0.87537415]\n", + " [ 2.17585013 -29.64510611]\n", + " [ 7.55184994 -29.64655709]\n", + " [ 12.92784974 -29.64800806]\n", + " [ 18.30384955 -29.64945903]\n", + " [ 23.67984935 -29.65091 ]\n", + " [ 29.05584916 -29.65236097]\n", + " [ 2.1773011 -24.26910631]\n", + " [ 7.55330091 -24.27055728]\n", + " [ 12.92930071 -24.27200825]\n", + " [ 18.30530052 -24.27345922]\n", + " [ 23.68130032 -24.27491019]\n", + " [ 29.05730013 -24.27636116]\n", + " [ 2.17875207 -18.89310651]\n", + " [ 7.55475188 -18.89455748]\n", + " [ 12.93075168 -18.89600845]\n", + " [ 18.30675149 -18.89745942]\n", + " [ 23.68275129 -18.89891039]\n", + " [ 29.0587511 -18.90036136]\n", + " [ 2.18020304 -13.51710671]\n", + " [ 7.55620285 -13.51855767]\n", + " [ 12.93220265 -13.52000864]\n", + " [ 18.30820245 -13.52145961]\n", + " [ 23.68420226 -13.52291058]\n", + " [ 29.06020207 -13.52436156]\n", + " [ 2.18165401 -8.1411069 ]\n", + " [ 7.55765382 -8.14255787]\n", + " [ 12.93365363 -8.14400884]\n", + " [ 18.30965343 -8.14545981]\n", + " [ 23.68565323 -8.14691078]\n", + " [ 29.06165303 -8.14836175]\n", + " [ 2.18310498 -2.76510709]\n", + " [ 7.55910479 -2.76655806]\n", + " [ 12.93510459 -2.76800904]\n", + " [ 18.31110439 -2.76946001]\n", + " [ 23.68710421 -2.77091098]\n", + " [ 29.063104 -2.77236195]]\n", + "DEBUG:root:optics_fp: sphi: [0.70041278 0.64549104 0.5783526 0.49701026 0.40010451 0.28768378\n", + " 0.16202376 0.02799345 0.70041278 0.75062228 0.80327879 0.85647672\n", + " 0.90714096 0.95099938 0.98307754 0.99887082 0.02799345 0.03240177\n", + " 0.03845716 0.04729349 0.06139281 0.08742554 0.15135324 0.51438935\n", + " 0.99887082 0.99847843 0.9978397 0.99669581 0.9943328 0.98814034\n", + " 0.96188324 0.51438935 0.67800368 0.60274831 0.5071237 0.38833338\n", + " 0.24656029 0.0870918 0.7217581 0.78513907 0.85042296 0.91244553\n", + " 0.96338977 0.99420549 0.03025321 0.03677059 0.04686391 0.06458036\n", + " 0.10372123 0.25922188 0.99869536 0.99805657 0.99680282 0.9937948\n", + " 0.98324562 0.8800736 0.70040962 0.70040962 0.51687588 0.51687588\n", + " 0.69998365 0.76600365 0.83531364 0.90253437 0.95885546 0.99344873\n", + " 0.62597814 0.69841814 0.77947369 0.86405544 0.94042777 0.99027864\n", + " 0.530151 0.60515103 0.69597142 0.80078922 0.90706025 0.98412673\n", + " 0.40869348 0.47813961 0.57023325 0.69160833 0.8391846 0.9697323\n", + " 0.2609798 0.31223822 0.38650903 0.50048271 0.68163155 0.92294563\n", + " 0.09250092 0.11222584 0.14253407 0.19483765 0.3048676 0.63586851]\n", + "DEBUG:root:radec2pix: curVec: [[-0.03104975 -0.47062328 0.88178775]\n", + " [-0.04071558 -0.49348788 0.86879915]\n", + " [-0.05053972 -0.5164075 0.8548503 ]\n", + " [-0.06048135 -0.53926935 0.83995867]\n", + " [-0.07050011 -0.56196581 0.82415057]\n", + " [-0.08055551 -0.58439323 0.8074623 ]\n", + " [-0.09060672 -0.60645166 0.78994101]\n", + " [-0.10061281 -0.6280456 0.77164486]\n", + " [-0.03104975 -0.47062328 0.88178775]\n", + " [-0.05828256 -0.4612277 0.88536555]\n", + " [-0.08541396 -0.45155626 0.88814492]\n", + " [-0.11233964 -0.4416545 0.89012421]\n", + " [-0.13895717 -0.4315743 0.89131057]\n", + " [-0.1651661 -0.42137433 0.89171959]\n", + " [-0.19086761 -0.41112064 0.89137499]\n", + " [-0.21596385 -0.40088734 0.89030835]\n", + " [-0.10061281 -0.6280456 0.77164486]\n", + " [-0.12872865 -0.61819941 0.77540855]\n", + " [-0.15663932 -0.60783187 0.77846294]\n", + " [-0.18423609 -0.59699187 0.78080585]\n", + " [-0.21141477 -0.58573428 0.78244434]\n", + " [-0.23807623 -0.57411938 0.78339431]\n", + " [-0.26412586 -0.56221276 0.78368 ]\n", + " [-0.28947195 -0.55008575 0.78333368]\n", + " [-0.21596385 -0.40088DEBUG:root:optics_fp: rtanth: [45.26169529 42.30243097 39.60873368 37.23827886 35.25632641 33.73142753\n", + " 32.72753223 32.29326616 45.26169529 42.24571523 39.48748363 37.04461879\n", + " 34.98324901 33.37413897 32.28498264 31.76930229 32.29326616 27.90939691\n", + " 23.52648174 19.14517593 14.76691204 10.39553425 6.04599739 1.87684519\n", + " 31.76930229 27.38910685 23.01128618 18.63751379 14.2715122 9.92354331\n", + " 5.63550123 1.87684519 43.93110404 40.47519439 37.47457234 35.04637691\n", + " 33.3160059 32.39547369 43.90748877 40.37685013 37.28961296 34.76410785\n", + " 32.92983309 31.90622779 30.38230115 25.01013154 19.64005824 14.27444739\n", + " 8.9213542 3.63648527 29.86008841 24.49335294 19.13182032 13.78156419\n", + " 8.46399587 3.33911555 45.24048285 45.24048285 1.89760875 1.89760875\n", + " 42.55711672 38.90412112 35.68971629 33.042152 31.10650288 30.02079255\n", + " 38.97957981 34.95468636 31.33776168 28.28574318 25.99834571 24.68901465\n", + " 35.85400749 31.43139051 27.35246822 23.7946523 21.02418109 19.38168349\n", + " 33.30787918 28.49275734 0.89030835]\n", + " [-0.22690554 -0.42217844 0.87765554]\n", + " [-0.23777124 -0.44366173 0.86407703]\n", + " [-0.24851807 -0.46521902 0.84959404]\n", + " [-0.25910347 -0.48674009 0.83423587]\n", + " [-0.26948516 -0.50812175 0.81804036]\n", + " [-0.2796215 -0.52926722 0.80105432]\n", + " [-0.28947195 -0.55008575 0.78333368]\n", + " [-0.03533551 -0.48054633 0.87625717]\n", + " [-0.04729454 -0.50862046 0.85969091]\n", + " [-0.05945054 -0.53666455 0.84169875]\n", + " [-0.07172905 -0.56447844 0.82232538]\n", + " [-0.08405549 -0.59187127 0.80163774]\n", + " [-0.09635462 -0.61866085 0.77972722]\n", + " [-0.04296219 -0.46664117 0.88340267]\n", + " [-0.07628472 -0.4549345 0.88725151]\n", + " [-0.109351 -0.44285786 0.88989846]\n", + " [-0.14197166 -0.43050411 0.89135305]\n", + " [-0.17396174 -0.41798132 0.89164395]\n", + " [-0.20513974 -0.4054144 0.89081808]\n", + " [-0.11285543 -0.62374666 0.77343633]\n", + " [-0.14719014 -0.61132289 0.77757275]\n", + " [-0.18110826 -0.59816407 0.78064047]\n", + " [-0.21441604 -0.58436876 0.78264865]\n", + " [-0.24693091 -0.57004792 0.78362651]\n", + " [-0.27848001 -0.55532461 0.78362201]\n", + " [-0.220DEBUG:root:optics_fp: xyfp: [[-32.31281793 -31.43806373]\n", + " [-32.31091541 -27.05163558]\n", + " [-32.30901287 -22.66520742]\n", + " [-32.30711034 -18.27877926]\n", + " [-32.3052078 -13.8923511 ]\n", + " [-32.30330527 -9.50592294]\n", + " [-32.30140274 -5.11949478]\n", + " [-32.2995002 -0.73306663]\n", + " [-32.31281793 -31.43806373]\n", + " [-27.92638978 -31.43996627]\n", + " [-23.53996162 -31.4418688 ]\n", + " [-19.15353346 -31.44377134]\n", + " [-14.7671053 -31.44567387]\n", + " [-10.38067715 -31.44757641]\n", + " [ -5.99424899 -31.44947894]\n", + " [ -1.60782083 -31.45138147]\n", + " [-32.2995002 -0.73306663]\n", + " [-27.91307204 -0.73496916]\n", + " [-23.52664389 -0.73687169]\n", + " [-19.14021573 -0.73877423]\n", + " [-14.75378757 -0.74067676]\n", + " [-10.36735941 -0.74257929]\n", + " [ -5.98093125 -0.74448183]\n", + " [ -1.59450309 -0.74638436]\n", + " [ -1.60782083 -31.45138147]\n", + " [ -1.60591829 -27.06495331]\n", + " [ -1.60401576 -22.67852516]\n", + " [ -1.60211323 -18.292097 ]\n", + " [ -1.60021069 -13.90566884]\n", + " [ -1.59830816 -9.51924068]\n", + " [ -1.59640563 -5.13281252]\n", + " [ -1.59450309 -0.74638436]\n", + " [-32.29698843 -29.52557043]\n", + " [-32.29465669 65616 -0.41017423 0.88491127]\n", + " [-0.23402015 -0.43641475 0.86877888]\n", + " [-0.2472275 -0.46282548 0.85127618]\n", + " [-0.26019974 -0.48920022 0.83245375]\n", + " [-0.27285909 -0.51534896 0.81238129]\n", + " [-0.28512932 -0.54109601 0.79114877]\n", + " [-0.03117567 -0.47066963 0.88175857]\n", + " [-0.03117567 -0.47066963 0.88175857]\n", + " [-0.28935343 -0.55005697 0.78339768]\n", + " [-0.28935343 -0.55005697 0.78339768]\n", + " [-0.0471676 -0.47650021 0.87790818]\n", + " [-0.08061261 -0.46472547 0.88177766]\n", + " [-0.11379104 -0.45255416 0.88444691]\n", + " [-0.14651317 -0.44007894 0.88592574]\n", + " [-0.17859413 -0.42740731 0.88624327]\n", + " [-0.20985297 -0.41466341 0.88544677]\n", + " [-0.05924111 -0.50452948 0.86135968]\n", + " [-0.09299183 -0.4925787 0.86528536]\n", + " [-0.1264467 -0.48015938 0.8680197 ]\n", + " [-0.15941475 -0.46736415 0.86957328]\n", + " [-0.19171137 -0.45429949 0.86997628]\n", + " [-0.2231573 -0.44108751 0.86927707]\n", + " [-0.07148965 -0.53253645 0.84338257]\n", + " [-0.10548401 -0.52043415 0.84736145]\n", + " [-0.13915332 -0.50779568 0.85016463]\n", + " [-0.1723053 -0.49471442 0.8518031 ]\n", + " [-0.20475562 -0.48129675 0.85230779]\n", + " [-0.23632677 -0.46766357 0.85172791]\n", + " [-0.08383809 -0.56032113 0.82402149]\n", + " [-0.1180122 -0.54809212 0.82805081]\n", + " [-0.15183248 -0.53526308 0.83092739]\n", + " [-0.18510561 -0.52192872 0.83266219]\n", + " [-0.21764761 -0.50819622 0.83328634]\n", + " [-0.24928264 -0.4941863 0.83284936]\n", + " [-0.0962111 -0.58769294 0.80334329]\n", + " [-0.13049911 -0.57536291 0.80742028]\n", + " [-0.16440549 -0.56237267 0.81037511]\n", + " [-0.19773635 -0.54881858 0.81221826]\n", + " [-0.23030819 -0.5348093 0.81298041]\n", + " [-0.26194669 -0.52046618 0.81271083]\n", + " [-0.10853281 -0.61446996 0.78143925]\n", + " [-0.14286734 -0.60206575 0.78556079]\n", + " [-0.17679405 -0.58894521 0.78859838]\n", + " [-0.21011903 -0.57520637 0.79056159]\n", + " [-0.24265946 -0.56095959 0.79148008]\n", + " [-0.27424217 -0.54632745 0.79140227]]\n", + "DEBUG:root:mm_to_pix: fitpx.shape: (96, 2)\n", + "DEBUG:root:radec2pix: curVec Shape: (96, 3)\n", + "DEBUG:root:radec2pix: ccdpx: [[-4.45000000e+01 -4.99999783e-01]\n", + " [-4.45000000e+01 2.91928571e+02]\n", + " [-4.45000000e+01 5.84357143e+02]\n", + " [-4.45000000e+01 8.76785714e+02]\n", + " [-4.45000000e+01 1.16921429e+03]\n", + " [-4.45000000e+01 1.46164286e+03]\n", + " [-4.45000000e+01 1.75407143e+03]\n", + " [-4.44999999e+01 2.04650000e+03]\n", + " [-4.45000000e+01 -4.99999783e-01]\n", + " [ 2.47928571e+02 -5.00000080e-01]\n", + " [ 5.40357143e+02 -5.00000178e-01]\n", + " [ 8.32785714e+02 -4.99999867e-01]\n", + " [ 1.12521429e+03 -5.00000095e-01]\n", + " [ 1.41764286e+03 -5.00000221e-01]\n", + " [ 1.71007143e+03 -5.00000185e-01]\n", + " [ 2.00250000e+03 -5.00000018e-01]\n", + " [-4.44999999e+01 2.04650000e+03]\n", + " [ 2.47928572e+02 2.04650000e+03]\n", + " [ 5.40357143e+02 2.04650000e+03]\n", + " [ 8.32785714e+02 2.04650000e+03]\n", + " [ 1.12521429e+03 2.04650000e+03]\n", + " [ 1.41764286e+03 2.04650000e+03]\n", + " [ 1.71007143e+03 2.04650000e+03]\n", + " [ 2.00250000e+03 2.04650000e+03]\n", + " [ 2.00250000e+03 -5.00000018e-01]\n", + " [ 2.00250000e+03 2.91928571e+02]\n", + " [ 2.00250000e+03 5.84357143e+02]\n", + " [ 2.00250000e+03 8.76785714e+02]\n", + " [ 2.00250000e+03 1.16921429e+03]\n", + " [ 2.00250000e+03 1.46164286e+03]\n", + " [ 2.00250000e+03 1.75407143e+03]\n", + " [ 2.00250000e+03 2.04650000e+03]\n", + " [-4.35000000e+01 1.27000000e+02]\n", + " [-4.35000000e+01 4.85400000e+02]\n", + " [-4.35000000e+01 8.43800000e+02]\n", + " [-4.35000000e+01 1.20220000e+03]\n", + " [-4.35000000e+01 1.56060000e+03]\n", + " [-4.35000000e+01 1.91900000e+03]\n", + " [ 8.30000000e+01 4.99999873e-01]\n", + " [ 4.41400000e+02 5.00000123e-01]\n", + " [ 7.99800000e+02 5.00000108e-01]\n", + " [ 1.15820000e+03 4.99999719e-01]\n", + " [ 1.51660000e+03 4.99999964e-01]\n", + " [ 1.87500000e+03 5.00000185e-01]\n", + " [ 8.30000000e+01 2.04550000e+03]\n", + " [ 4.41400000e+02 2.04550000e+03]\n", + " [ 7.99800000e+02 2.04550000e+03]\n", + " [ 1.15820000e+03 2.04550000e+03]\n", + " [ 1.51660000e+03 2.04550000e+03]\n", + " [ 1.87500000e+03 2.04550000e+03]\n", + " [ 2.00150000e+03 1.27000000e+02]\n", + " [ 2.00150000e+03 4.85400000e+02]\n", + " [ 2.00150000e+03 8.43800000e+02]\n", + " [ 2.00150000e+03 1.20220000e+03]\n", + " [ 2.00150000e+03 1.56060000e+03]\n", + " [ 2.00150000e+03 1.91900000e+03]\n", + " [-4.35000000e+01 4.99999853e-01]\n", + " [-4.35000000e+01 4.99999853e-01]\n", + " [ 2.00150000e+03 2.04550000e+03]\n", + " [ 2.00150000e+03 2.04550000e+0DEBUG:root:optics_fp: sphi: [-0.69950626 -0.64444513 -0.57715037 -0.49564218 -0.39857594 -0.28602322\n", + " -0.16028704 -0.02625833 -0.69950626 -0.74976466 -0.80249804 -0.85580559\n", + " -0.90661236 -0.95063766 -0.98288738 -0.9988295 -0.02625833 -0.03044512\n", + " -0.03619555 -0.04458562 -0.05797023 -0.08267725 -0.1433448 -0.49145128\n", + " -0.9988295 -0.99842512 -0.99776702 -0.99658828 -0.99415152 -0.98775305\n", + " -0.96047273 -0.49145128 -0.67703879 -0.60160056 -0.50577425 -0.38678764\n", + " -0.24486582 -0.08534494 -0.72086938 -0.78432831 -0.84973726 -0.91193438\n", + " -0.96308661 -0.99410379 -0.02842926 -0.03462403 -0.04421613 -0.06104888\n", + " -0.09822663 -0.24609363 -0.99864895 -0.99799091 -0.99669933 -0.99359795\n", + " -0.98268894 -0.87478002 -0.69950278 -0.69950278 -0.49425605 -0.49425605\n", + " -0.69903398 -0.76512562 -0.83456026 -0.9019653 -0.95851534 -0.99333513\n", + " -0.6248328 -0.69731062 -0.77847269 -0.8632584 -0.93993324 -0.99011458\n", + " -0.52878304 -0.60375411 -0.69461576 -0.79961451 -0.90627261 -0.98386124\n", + " -0.40710127 -0.4764138DEBUG:root:optics_fp: xyfp: [[-32.208296 -31.60697943]\n", + " [-32.20831882 -27.22055086]\n", + " [-32.20834163 -22.83412229]\n", + " [-32.20836444 -18.44769372]\n", + " [-32.20838725 -14.06126515]\n", + " [-32.20841007 -9.67483658]\n", + " [-32.20843288 -5.288408 ]\n", + " [-32.2084557 -0.90197943]\n", + " [-32.208296 -31.60697943]\n", + " [-27.82186743 -31.60695662]\n", + " [-23.43543886 -31.60693381]\n", + " [-19.04901029 -31.60691099]\n", + " [-14.66258171 -31.60688818]\n", + " [-10.27615314 -31.60686536]\n", + " [ -5.88972457 -31.60684255]\n", + " [ -1.503296 -31.60681974]\n", + " [-32.2084557 -0.90197943]\n", + " [-27.82202712 -0.90195662]\n", + " [-23.43559855 -0.9019338 ]\n", + " [-19.04916999 -0.90191099]\n", + " [-14.66274141 -0.90188818]\n", + " [-10.27631284 -0.90186536]\n", + " [ -5.88988428 -0.90184255]\n", + " [ -1.5034557 -0.90181973]\n", + " [ -1.503296 -31.60681974]\n", + " [ -1.50331881 -27.22039116]\n", + " [ -1.50334163 -22.83396259]\n", + " [ -1.50336444 -18.44753402]\n", + " [ -1.50338726 -14.06110544]\n", + " [ -1.50341007 -9.67467688]\n", + " [ -1.50343288 -5.2882483 ]\n", + " [ -1.5034557 -0.90181973]\n", + " [-32.19330594 -29.69447935]\n", + " [-32.19333391 -24.31847935]\n", + " [-32.19336187 -18.94247936]\n", + " [-32.19338983 -13.56647936]\n", + " [-32.19341779 -8.19047935]\n", + " [-32.19344575 -2.81447935]\n", + " [-30.29579608 -31.59196949]\n", + " [-24.91979608 -31.59194152]\n", + " [-19.54379608 -31.59191356]\n", + " [-14.16779608 -31.5918856 ]\n", + " [ -8.79179608 -31.59185764]\n", + " [ -3.41579608 -31.59182968]\n", + " [-30.29595562 -0.91696949]\n", + " [-24.91995562 -0.91694153]\n", + " [-19.54395562 -0.91691356]\n", + " [-14.16795562 -0.9168856 ]\n", + " [ -8.79195562 -0.91685764]\n", + " [ -3.41595563 -0.91682968]\n", + " [ -1.51830595 -29.69431981]\n", + " [ -1.51833391 -24.31831981]\n", + " [ -1.51836187 -18.94231981]\n", + " [ -1.51838983 -13.56631981]\n", + " [ -1.51841779 -8.19031981]\n", + " [ -1.51844575 -2.81431982]\n", + " [-32.19329608 -31.59197936]\n", + " [-32.19329608 -31.59197936]\n", + " [ -1.51845562 -0.91681981]\n", + " [ -1.51845562 -0.91681981]\n", + " [-30.29580595 -29.69446949]\n", + " [-24.91980594 -29.69444152]\n", + " [-19.54380595 -29.69441356]\n", + " [-14.16780595 -29.69438561]\n", + " [ -8.79180595 -29.69435764]\n", + " [ -3.41580595 -29.69432968]\n", + " [-30.29583391 -24.31846949]\n", + " [-24.91983391 -24.31844152]\n", + " [-19.54383391 -24.31841356]\n", + " [-14.16783391 -24.31838561]\n", + " [ -8.79183391 -24.31835764]\n", + " [ -3.41583391 -24.31832968]\n", + " [-30.29586187 -18.94246949]\n", + " [-24.91986187 -18.94244153]\n", + " [-19.54386187 -18.94241356]\n", + " [-14.16786187 -18.94238561]\n", + " [ -8.79186187 -18.94235764]\n", + " [ -3.41586187 -18.94232969]\n", + " [-30.29588983 -13.56646949]\n", + " [-24.91988983 -13.56644152]\n", + " [-19.54388984 -13.56641357]\n", + " [-14.16788983 -13.5663856 ]\n", + " [ -8.79188983 -13.56635764]\n", + " [ -3.41588983 -13.56632968]\n", + " [-30.29591779 -8.19046949]\n", + " [-24.91991779 -8.19044152]\n", + " [-19.54391779 -8.19041356]\n", + " [-14.16791779 -8.1903856 ]\n", + " [ -8.79191779 -8.19035764]\n", + " [ -3.41591779 -8.19032968]\n", + " [-30.29594575 -2.81446949]\n", + " [-24.91994576 -2.81444153]\n", + " [-19.54394575 -2.81441356]\n", + " [-14.16794576 -2.8143856 ]\n", + " [ -8.79194575 -2.81435764]\n", + " [ -3.41594575 -2.81432968]]\n", + "3]\n", + " [ 8.30000000e+01 1.27000000e+02]\n", + " [ 4.41400000e+02 1.27000000e+02]\n", + " [ 7.99800000e+02 1.27000000e+02]\n", + " [ 1.15820000e+03 1.27000000e+02]\n", + " [ 1.51660000e+03 1.27000000e+02]\n", + " [ 1.8750DEBUG:root:optics_fp: xyfp shape: (96, 2)\n", + "0000e+03 1.27000000e+02]\n", + " [ 8.30000000e+01 4.85400000e+02]\n", + " [ 4.41400000e+02 4.85400000e+02]\n", + " [ 7.99800000e+02 4.85400000e+02]\n", + " [ 1.15820000e+03 4.85400000e+02]\n", + " [ 1.51660000e+03 4.85400000e+02]\n", + " [ 1.87500000e+03 4.85400000e+02]\n", + " [ 8.30000000e+01 8.43800000e+02]\n", + " [ 4.41400000e+02 8.43800000e+02]\n", + " [ 7.99800000e+02 8.43800000e+02]\n", + " [ 1.15820000e+03 8.43800000e+02]\n", + " [ 1.51660000e+03 8.43800000e+02]\n", + " [ 1.87500000e+03 8.43800000e+02]\n", + " [ 8.30000000e+01 1.20220000e+03]\n", + " [ 4.41400000e+02 1.20220000e+03]\n", + " [ 7.99800000e+02 1.20220000e+03]\n", + " [ 1.15820000e+03 1.20220000e+03]\n", + " [ 1.51660000e+03 1.20220000e+03]\n", + " [ 1.87500000e+03 1.20220000e+03]\n", + " [ 8.30000001e+01 1.56060000e+03]\n", + " [ 4.41400000e+02 1.56060000e+03]\n", + " [ 7.99800000e+02 1.56060000e+03]\n", + " [ 1.15820000e+03 1.56060000e+03]\n", + " [ 1.51660000e+03 1.56060000e+03]\n", + " [ 1.87500000e+03 1.56060000e+03]\n", + " [ 8.29999999e+01 1.91900000e+03]\n", + " [ 4.41400000e+02 1.91900000e+03]\n", + " [ 7.99800000e+02 1.9823 23.91782767 19.75070735 16.30708904 14.12638019\n", + " 31.48209857 26.3352423 21.30188242 16.48630206 12.15026205 9.01456223\n", + " 30.50627799 25.16059326 19.83130509 14.53645837 9.33484517 4.55771859]\n", + "DEBUG:root:radec2pix: xyfp: [[32.31363499 31.47041645]\n", + " [32.3144687 27.08398795]\n", + " [32.31530242 22.69755946]\n", + " [32.31613613 18.31113097]\n", + " [32.31696984 13.92470248]\n", + " [32.31780355 9.53827398]\n", + " [32.31863726 5.15184549]\n", + " [32.31947097 0.765417 ]\n", + " [32.31363499 31.47041645]\n", + " [27.9272065 31.46958273]\n", + " [23.540778 31.46874902]\n", + " [19.15434951 31.46791531]\n", + " [14.76792102 31.4670816 ]\n", + " [10.38149253 31.46624788]\n", + " [ 5.99506403 31.46541417]\n", + " [ 1.60863554 31.46458045]\n", + " [32.31947097 0.765417 ]\n", + " [27.93304248 0.76458329]\n", + " [23.54661399 0.76374957]\n", + " [19.1601855 0.76291586]\n", + " [14.77375701 0.76208215]\n", + " [10.38732851 0.76124844]\n", + " [ 6.00090002 0.76041472]\n", + " [ 1.61447153 0.75958101]\n", + " [ 1.60863554 31.46458045]\n", + " [ 1.60946926 27.07815197]\n", + " [ 1.61030297 22.69172348]\n", + " [ 1.61113668 18.30529498]\n", + " [ 1.61197039 13.1900000e+03]\n", + " [ 1.15820000e+03 1.91900000e+03]\n", + " [ 1.51660000e+03 1.91900000e+03]\n", + " [ 1.87500000e+03 1.91900000e+03]]\n", + "91886648]\n", + " [ 1.6128041 9.53243799]\n", + " [ 1.61363782 5.1460095 ]\n", + " [ 1.61447153 0.75958101]\n", + " [32.29899849 29.55791363]\n", + " [32.30002028 24.18191372]\n", + " [32.30104209 18.80591382]\n", + " [32.30206388 13.42991392]\n", + " [32.30308568 8.05391402]\n", + " [32.30410748 2.67791411]\n", + " [30.40113787 31.45505294]\n", + " [25.02513797 31.45403115]\n", + " [19.64913807 31.45300935]\n", + " [14.27313817 31.45198755]\n", + " [ 8.89713826 31.45096576]\n", + " [ 3.52113836 31.44994396]\n", + " [30.40696816 0.7800535 ]\n", + " [25.03096826 0.7790317 ]\n", + " [19.65496836 0.7780099 ]\n", + " [14.27896845 0.77698811]\n", + " [ 8.90296855 0.77596631]\n", + " [ 3.52696865 0.77494451]\n", + " [ 1.62399904 29.55208334]\n", + " [ 1.62502084 24.17608344]\n", + " [ 1.62604264 18.80008353]\n", + " [ 1.62706443 13.42408364]\n", + " [ 1.62808623 8.04808373]\n", + " [ 1.62910803 2.67208383]\n", + " [32.29863784 31.4554136 ]\n", + " [32.29863784 31.4554136 ]\n", + " [ 1.62946868 0.77458386]\n", + " [ 1.62946868 0.77458386]\n", + " [30.40149852 29.55755297]\n", + " [25.02 0.00623643 0.99532633]\n", + " [0.06005439 0.00626269 0.99817546]\n", + " [0.02338579 0.00627666 0.99970681]\n", + " [0.01009044 0.19734414 0.98028234]\n", + " [0.01019035 0.16321317 0.9865382 ]\n", + " [0.01027142 0.12814101 0.99170277]\n", + " [0.0103331 0.0923229 0.9956755 ]\n", + " [0.01037483 0.05596168 0.99837901]\n", + " [0.01039617 0.01926848 0.99976029]\n", + " [0.20572824 0.20188558 0.95755841]\n", + " [0.20572824 0.20188558 0.95755841]\n", + " [0.01039877 0.00627861 0.99992622]\n", + " [0.01039877 0.00627861 0.99992622]\n", + " [0.19517474 0.19130075 0.96193079]\n", + " [0.1621771 0.19325024 0.96765331]\n", + " [0.12822694 0.19482509 0.9724202 ]\n", + " [0.09352723 0.19602426 0.97612865]\n", + " [0.05828102 0.19684438 0.97870098]\n", + " [0.02269376 0.19728171 0.98008414]\n", + " [0.19712067 0.15822879 0.96752627]\n", + " [0.1637837 0.1598311 0.97346234]\n", + " [0.12949375 0.16112922 0.97840112]\n", + " [0.09445078 0.16212009 0.98224036]\n", + " [0.05885684 0.16279899 0.98490221]\n", + " [0.0229182 0.16316141 0.98633316]\n", + " [0.19868404 0.12422708 0.97215857]\n", + " [0.16507817 0.12548158 0.97826559]\n", + " [0.13051704 0.12650047 0.98334273]\n", + " [0.DEBUG:root:optics_fp: cphi: [0.71341716 0.76328013 0.81514194 0.86698087 0.91566575 0.95700502\n", + " 0.98630354 0.99950918 0.71341716 0.66051768 0.59557134 0.51643629\n", + " 0.4214805 0.31036993 0.18497457 0.04990581 0.99950918 0.99934039\n", + " 0.99906819 0.99858739 0.99761569 0.9951653 0.98558541 0.8377988\n", + " 0.04990581 0.05781889 0.0687377 0.08476872 0.11057085 0.15882919\n", + " 0.27935111 0.8377988 0.73466528 0.79733703 0.86111952 0.92071715\n", + " 0.96846887 0.9959178 0.69186293 0.61921532 0.52631184 0.40990453\n", + " 0.26948104 0.10963271 0.999428 0.999152 0.99861839 0.99737128\n", + " 0.99322638 0.95832228 0.05357183 0.06521663 0.08337359 0.1155749\n", + " 0.18791565 0.47564444 0.71341996 0.71341996 0.83653968 0.83653968\n", + " 0.71379735 0.6426352 0.54988271 0.43124184 0.28525093 0.11649124\n", + " 0.77925087 0.71517941 0.62617339 0.50367681 0.34120915 0.14155583\n", + " 0.8471183 0.79527459 0.71732418 0.59864658 0.42182798 0.18020046\n", + " 0.91180529 0.87721591 0.82023759 0.72110338 0.54370846 0.24707693\n", + " 0.96461215 0.94899507 0.92085832 0.86374835 0.72953296 0.3869314\n", + " 0.99539279 0.99320908 0.98902871 0.97944976 0.94931741 0.76479745]\n", + "DEBUG:root:make_az_asym: xyp: [[-32.208296 -31.60697943]\n", + " [-32.20831882 -27.22055086]\n", + " [-32.20834163 -22.83412229]\n", + " [-32.20836444 -18.44769372]\n", + " [-32.20838725 -14.06126515]\n", + " [-32.20841007 -9.67483658]\n", + " [-32.20843288 -5.288408 ]\n", + " [-32.2084557 -0.90197943]\n", + " [-32.208296 -31.60697943]\n", + " [-27.82186743 -31.60695662]\n", + " [-23.43543886 -31.60693381]\n", + " [-19.04901029 -31.60691099]\n", + " [-14.66258171 -31.60688818]\n", + " [-10.27615314 -31.60686536]\n", + " [ -5.88972457 -31.60684255]\n", + " [ -1.503296 -31.60681974]\n", + " [-32.2084557 -0.90197943]\n", + " [-27.82202712 -0.90195662]\n", + " [-23.43559855 -0.9019338 ]\n", + " [-19.04916999 -0.90191099]\n", + " [-14.66274141 -0.90188818]\n", + " [-10.27631284 -0.90186536]\n", + " [ -5.88988428 -0.90184255]\n", + " [ -1.5034557 -0.90181973]\n", + " [ -1.503296 -31.60681974]\n", + " [ -1.50331881 -27.22039116]\n", + " [ -1.50334163 -22.83396259]\n", + " [ -1.50336444 -18.44753402]\n", + " [ -1.50338726 -14.06110544]\n", + " [ -1.50341007 -9.67467688]\n", + " [DEBUG:root:radec2pix: curVec: [[ 3.64974401e-02 -6.43479318e-01 7.64592901e-01]\n", + " [ 1.43208380e-02 -6.32052029e-01 7.74793616e-01]\n", + " [-8.24374852e-03 -6.19809828e-01 7.84708747e-01]\n", + " [-3.11084832e-02 -6.06788278e-01 7.94254524e-01]\n", + " [-5.41851382e-02 -5.93027054e-01 8.03357258e-01]\n", + " [-7.73848647e-02 -5.78570120e-01 8.11953323e-01]\n", + " [-1.00618108e-01 -5.63466139e-01 8.19988968e-01]\n", + " [-1.23794792e-01 -5.47768849e-01 8.27420170e-01]\n", + " [ 3.64974401e-02 -6.43479318e-01 7.64592901e-01]\n", + " [ 5.39340363e-02 -6.27172973e-01 7.77010413e-01]\n", + " [ 7.15867739e-02 -6.09972328e-01 7.89182547e-01]\n", + " [ 8.93887642e-02 -5.91931758e-01 8.01015882e-01]\n", + " [ 1.07272683e-01 -5.73109813e-01 8.12427051e-01]\n", + " [ 1.25170564e-01 -5.53569439e-01 8.23342703e-01]\n", + " [ 1.43013814e-01 -5.33378420e-01 8.33699292e-01]\n", + " [ 1.60733478e-01 -5.12609743e-01 8.43442944e-01]\n", + " [-1.23794792e-01 -5.47768849e-01 8.27420170e-01]\n", + " [-1.07205220e-01 -5.30041100e-01 8.41167922e-01]\n", + " [-9.01927945e-02 -5.11522302e-01 8.54523373e-01]\n", + " [-7.28208572e-02 -4.92263396e-01 8.67394877e-01]\n", + " [-5.51534413e-02 -4.72320104e-01 8.79699845e-01]\n", + " [-3.72563968e-02 -4.51754333e-01 8.91364114e-01]\n", + " [-1.91979814e-02 -4.30635094e-01 9.02321923e-01]\n", + " [-1.04876080e-03 -4.09038667e-01 9.12516449e-01]\n", + " [ 1.60733478e-01 -5.12609743e-01 8.43442944e-01]\n", + " [ 1.38836274e-01 -4.99624569e-01 8.55043730e-01]\n", + " [ 1.16392250e-01 -4.85971971e-01 8.66189406e-01]\n", + " [ 9.34847904e-02 -4.71685006e-01 8.76797496e-01]\n", + " [ 7.01983794e-02 -4.56801431e-01 8.86794587e-01]\n", + " [ 4.66200232e-02 -4.41364762e-01 8.96115908e-01]\n", + " [ 2.28399239e-02 -4.25424981e-01 9.04705434e-01]\n", + " [-1.04876080e-03 -4.09038667e-01 9.12516449e-01]\n", + " [ 2.69407723e-02 -6.38544703e-01 7.69113033e-01]\n", + " [-5.11187961e-04 -6.23986049e-01 7.81435314e-01]\n", + " [-2.84587955e-02 -6.08238307e-01 7.93244136e-01]\n", + " [-5.67397991e-02 -5.91372820e-01 8.04399641e-01]\n", + " [-8.51906199e-02 -5.73470569e-01 8.14784674e-01]\n", + " [-1.13646153e-01 -5.54623238e-01 8.24304323e-01]\n", + " [ 4.39938646e-02 -6.36444907e-01 7.70066504e-01]\n", + " [ 6.55178311e-02 -6.15850694e-01 7.85133961e-01]\n", + " [ 8.73001753e-02 -5.93966803e-01 7.99738780e-01]\n", + " [ 1.09217151e-01 -5.70899296e-01 8.13723299e-01]\n", + " [ 1.31143636e-01 -5.46764103e-01 8.26952455e-01]\n", + " [ 1.52953177e-01 -5.21688168e-01 8.39313280e-01]\n", + " [-1.16538366e-01 -5.40194709e-01 8.33431753e-01]\n", + " [-9.59130201e-02 -5.17929925e-01 8.50028991e-01]\n", + " [-7.47156034e-02 -4.94527017e-01 8.65944922e-01]\n", + " [-5.30636524e-02 -4.70086506e-01 8.81023794e-01]\n", + " [-3.10784689e-02 -4.44722468e-01 8.95129072e-01]\n", + " [-8.88670740e-03 -4.18564988e-01 9.08143368e-01]\n", + " [ 1.51198264e-01 -5.07104389e-01 8.48518841e-01]\n", + " [ 1.23982220e-01 -4.90737677e-01 8.62441269e-01]\n", + " [ 9.60277563e-02 -4.73400720e-01 8.75597184e-01]\n", + " [ 6.74898715e-02 -4.55161017e-01 8.87847715e-01]\n", + " [ 3.85288230e-02 -4.36098761e-01 8.99073635e-01]\n", + " [ 9.31194596e-03 -4.16308721e-01 9.09175636e-01]\n", + " [ 3.64815469e-02 -6.43387483e-01 7.64670938e-01]\n", + " [ 3.64815469e-02 -6.43387483e-01 7.64670938e-01]\n", + " [-1.029129658822 0.98063234]\n", + " [-0.0103498 -0.16140908 0.98683331]\n", + " [-0.01041065 -0.12630166 0.99193725]\n", + " [-0.01045169 -0.09046055 0.99584519]\n", + " [-0.01047241 -0.05408714 0.9984813 ]\n", + " [-0.01047238 -0.0173918 0.99979391]\n", + " [-0.20599275 -0.20011322 0.95787352]\n", + " [-0.20599275 -0.20011322 0.95787352]\n", + " [-0.01046737 -0.00440367 0.99993552]\n", + " [-0.01046737 -0.00440367 0.99993552]\n", + " [-0.19541667 -0.18950334 0.9622374 ]\n", + " [-0.16240545 -0.19145029 0.96797276]\n", + " [-0.12844349 -0.19302803 0.97274994]\n", + " [-0.09373247 -0.19423441 0.9764667 ]\n", + " [-0.05847519 -0.195066 0.97904541]\n", + " [-0.02287686 -0.19551916 0.98043302]\n", + " [-0.19732118 -0.15638145 0.96778572]\n", + " [-0.16397526 -0.15798254 0.97373181]\n", + " [-0.12967711 -0.1592836 0.978679 ]\n", + " [-0.09462661 -0.16028164 0.98252511]\n", + " [-0.05902568 -0.16097217 0.98519233]\n", + " [-0.02308015 -0.16135064 0.98662722]\n", + " [-0.19884383 -0.12234264 0.97236485]\n", + " [-0.16523235 -0.1235961 0.97847957]\n", + " [-0.13066656 -0.12461804 0.98356321]\n", + " [-0.09534433 -0.12540495 0.98751357]\n", + " [-0.05946678 -0.1259519 0.9902524 ]\n", + " [-0.02324061 -0.1262541 0.99172566]\n", + " [-0.19998259 -0.08758892 0.9758766 ]\n", + " [-0.16617376 -0.08849133 0.9821179 ]\n", + " [-0.13140827 -0.08922984 0.98730436]\n", + " [-0.09588212 -0.08980108 0.99133364]\n", + " [-0.05979589 -0.09020062 0.9941269 ]\n", + " [-0.0233572 -0.09042422 0.9956294 ]\n", + " [-0.20073433 -0.05232353 0.9782474 ]\n", + " [-0.16679525 -0.0528708 0.98457302]\n", + " [-0.13189744 -0.053321 0.98982824]\n", + " [-0.09623556 -0.05367171 0.99391049]\n", + " [-0.06000982 -0.05391982 0.99674043]\n", + " [-0.02342863 -0.0540624 0.99826267]\n", + " [-0.20109591 -0.016752 0.97942831]\n", + " [-0.16709274 -0.01694088 0.98579563]\n", + " [-0.13212968 -0.01709901 0.99108495]\n", + " [-0.09640067 -0.01722548 0.99519355]\n", + " [-0.06010576 -0.01731915 0.99804176]\n", + " [-0.0234538 -0.01737894 0.99957386]]\n", + "2 -0.56840284 -0.68980596 -0.837772 -0.96921207\n", + " -0.25921116 -0.31021694 -0.38416098 -0.49776006 -0.67878801 -0.92148149\n", + " -0.09066564 -0.11006805 -0.13988178 -0.19134252 -0.29970307 -0.6279425 ]\n", + "DEBUG:root:optics_fp: sphi: 5e-03 -4.09169967e-01 9.12457604e-01]\n", + " [-1.02912965e-03 -4.09169967e-01 9.12457604e-01]\n", + " [ 3.44431954e-02 -6.31553390e-01 7.74566964e-01]\n", + " [ 5.59523386e-02 -6.10825658e-01 7.89785636e-01]\n", + " [ 7.77395750e-02 -5.88814905e-01 8.04520706e-01]\n", + " [ 9.96812513e-02 -5.65626737e-01 8.18614710e-01]\n", + " [ 1.21652081e-01 -5.41376623e-01 8.31932764e-01]\n", + " [ 1.43525196e-01 -5.16191351e-01 8.44361894e-01]\n", + " [ 6.95308835e-03 -6.16864038e-01 7.87039016e-01]\n", + " [ 2.83916228e-02 -5.95780780e-01 8.02645113e-01]\n", + " [ 5.01642468e-02 -5.73435423e-01 8.17713497e-01]\n", + " [ 7.21477137e-02 -5.49931858e-01 8.32087531e-01]\n", + " [ 9.42164120e-02 -5.25384223e-01 8.45632714e-01]\n", + " [ 1.16242372e-01 -4.99919065e-01 8.58235772e-01]\n", + " [-2.10478035e-02 -6.00996462e-01 7.98974494e-01]\n", + " [ 2.76997743e-04 -5.79590566e-01 8.14907785e-01]\n", + " [ 2.19917331e-02 -5.56946124e-01 8.30257417e-01]\n", + " [ 4.39739317e-02 -5.33165215e-01 8.44867532e-01]\n", + " [ 6.60980842e-02 -5.08360949e-01 8.58603627e-01]\n", + " [ 8.82354726e-02 -4.82660081e-01 8.71351679e-01]\n", + " [-4.93974228e-02 -5.84021594e-01 8.10233715e-01]\n", + " [-2.82302826e-02 -5.62324402e-01 8.26434703e-01]\n", + " [-6.61788549e-03 -5.39414833e-01 8.42014157e-01]\n", + " [ 1.53185128e-02 -5.15393594e-01 8.56816658e-01]\n", + " [ 3.74540872e-02 -4.90373348e-01 8.70707282e-01]\n", + " [ 5.96599602e-02 -4.64481524e-01 8.83570938e-01]\n", + " [-7.79321263e-02 -5.66019950e-01 8.20699702e-01]\n", + " [-5.69665001e-02 -5.44061486e-01 8.37109262e-01]\n", + " [-3.55010884e-02 -5.20919809e-01 8.52867062e-01]\n", + " [-1.36555963e-02 -4.96694995e-01 8.67817726e-01]\n", + " [ 8.44640499e-03 -4.71499924e-01 8.81825651e-01]\n", + " [ 3.06765679e-02 -4.45463063e-01 8.94774613e-01]\n", + " [-1.06486422e-01 -5.47082986e-01 8.30277573e-01]\n", + " [-8.57650212e-02 -5.24892833e-01 8.46836392e-01]\n", + " [-6.44902431e-02 -5.01552117e-01 8.62720396e-01]\n", + " [-4.27801586e-02 -4.77161110e-01 8.77773965e-01]\n", + " [-2.07566909e-02 -4.51833496e-01 8.91860781e-01]\n", + " [ 1.45297644e-03 -4.25698941e-01 9.04863692e-01]]\n", + " -1.50343288 -5.2882483 ]\n", + " [ -1.5034557 -0.90181973]\n", + " [-32.19330594 -2DEBUG:root:radec2pix: lng: [224.17091663 219.87741809 214.97008665 209.39598188 203.1373574\n", + " 196.23634076 188.81644128 181.08669631 224.17091663 228.3555716\n", + " 233.16265584 238.65783928 244.87601329 251.7942959 259.30486084\n", + " 267.20296141 181.08669631 181.26291687 181.50503492 181.85849799\n", + " 182.42298774 183.46757199 186.05387592 202.53707914 267.20296141\n", + " 266.75372148 266.13046308 265.20807536 263.70434622 260.82362196\n", + " 253.17669924 202.53707914 222.38348083 216.71601144 210.07066421\n", + " 202.39896016 193.78096287 184.48069147 225.9100405 231.44842444\n", + " 237.98973756 245.61222365 254.27065244 263.72553361 181.18560606\n", + " 181.44802269 181.85460599 182.56904059 184.15297918 190.61463228\n", + " 266.99438373 266.33112836 265.28794249 263.40934603 259.04191913\n", + " 238.94596845 224.17054014 224.17054014 202.81670057 202.81670057\n", + " 224.11986404 229.69237658 236.35966367 244.23925438 253.312778\n", + " 263.32641007 218.39761245 223.93365474 230.85002743 239.44337044\n", + " 249.86289594 261.85943825 211.60273873 216.79700073 DEBUG:root:radec2pix: curVec Shape: (96, 3)\n", + "[0.70073958 0.64606768 0.57926126 0.49834142 0.40194059 0.29007134\n", + " 0.1649404 0.0313274 0.70073958 0.75081049 0.80330242 0.85632562\n", + " 0.90683747 0.95061586 0.98274331 0.99875393 0.0313274 0.03631497\n", + " 0.04315962 0.05313395 0.069014 0.09821415 0.1691786 0.5459791\n", + " 0.99875393 0.99832709 0.99763477 0.99640065 0.99386824 0.98730608\n", + " 0.96018902 0.5459791 0.67842975 0.60353431 0.50840257 0.39023062\n", + " 0.2491346 0.09026478 0.72202887 0.78522123 0.85029163 0.91212843\n", + " 0.9630057 0.99397217 0.03381828 0.04117383 0.05254813 0.07246053\n", + " 0.11619532 0.28568936 0.998564 0.99787113 0.99651836 0.99329877\n", + " 0.98218517 0.87963764 0.70073672 0.70073672 0.54790634 0.54790634\n", + " 0.7003523 0.76617231 0.83524188 0.90223637 0.95845287 0.99319172\n", + " 0.62671212 0.69894092 0.77968384 0.86389216 0.9399874 0.98993027\n", + " 0.53140435 0.60624939 0.69673956 0.80101328 0.90667588 0.98362991\n", + " 0.41062285 0.48009609 0.57202299 0.69282748 0.83927416 0.96899587\n", + " 0.26367291 0.3152909 0.38989736 0.5039234 0.68394565 0.92210851\n", + " 0.09588115 0.11634315 0.14772342 0.20168832 0.31431902 0.6442708 ]\n", + "DEBUG:root:radec2pix: camVec: [[ 0.00110855 0.00111823 0.00112655 0.00113349 0.001139 0.00114306\n", + " 0.00114562 0.00114666 0.00110855 0.03013432 0.05904256 0.08772073\n", + " 0.11605724 0.14394136 0.17126266 0.19791015 0.00114666 0.03116962\n", + " 0.06106803 0.09072406 0.1200235 0.1488564 0.17711651 0.20469956\n", + " 0.19791015 0.19966308 0.20115603 0.20238925 0.20336191 0.20407235\n", + " 0.20451873 0.20469956 0.00121266 0.00122459 0.00123428 0.00124164\n", + " 0.00124661 0.00124912 0.01377154 0.04928181 0.08450359 0.11923105\n", + " 0.15326028 0.18638779 0.01424443 0.05097175 0.08739457 0.12330108\n", + " 0.15848878 0.192763 0.19861623 0.2005887 0.20217123 0.20336272\n", + " 0.2041602 0.2045604 0.00120792 0.00120792 0.20460634 0.20460634\n", + " 0.01382559 0.04947523 0.08483539 0.11969997 0.15386543 0.18712908\n", + " 0.01396162 0.04996174 0.08566901 0.1208763 0.15538076 0.1889821\n", + " 0.01407199 0.05035615 0.08634371 0.12182616 0.15660103 0.19047015\n", + " 0.01415593 0.05065593 0.08685581 0.12254563 0.15752301 0.1915915\n", + " 0.01421257 0.05085809 0.08720077 0.12302951 0.15814189 0.1923426\n", + " 0.01424114 0.05096003 0.08737459 0.12327308 0.15845303 0.1927197 ]\n", + " [-0.20853555 -0.18105588 -0.15288447 -0.12412547 -0.09488471 -0.06527159\n", + " -0.0353997 -0.00538646 -0.20853555 -0.20838958 -0.2079729 -0.20728684\n", + " -0.20633313 -0.20511339 -0.20362847 -0.2018782 -0.00538646 -0.00538259\n", + " -0.00537156 -0.00535349 -0.00532854 -0.00529689 -0.00525872 -0.00521415\n", + " -0.2018782 -0.17529764 -0.14802765 -0.12017919 -0.09186258 -0.06318839\n", + " -0.03426807 -0.00521415 -0.196646 -0.16248857 -0.12739553 -0.09156092\n", + " -0.05518617 -0.01848208 -0.20841259 -0.20805164 -0.2072855 -0.20611722\n", + " -0.20454967 -0.20258404 -0.00548838 -0.00547863 -0.00545803 -0.00542687\n", + " -0.0053855 -0.0053342 -0.19038695 -0.15733098 -0.12334981 -0.08864677\n", + " -0.05342545 -0.01789151 -0.20844284 -0.20844284 -0.00531377 -0.00531377\n", + " -0.19661746 -0.19627694 -0.19555447 -0.19445357 -0.19297773 -0.19112874\n", + " -0.1624649 -0.16218264 -0.16158454 -0.16067502 -0.15945889 -0.15793949\n", + " -0.12737685 -0.12715419 -0.12668294 -0.12596768 -0.12501365 -0.12382499\n", + " -0.0915474 -0.09138626 -0.09104555 -0.09052922 -0.08984197 -0.08898771\n", + " -0.05517797 -0.05508029 -0.05487388 -0.05456144 -0.05414617 -0.05363087\n", + " -0.01847933 -0.01844651 -0.01837718 -0.0182723 -0.018133 -0.01796031]\n", + " [ 0.97801416 0.98347217 0.98824343 0.99226588 0.99548762 0.99786688\n", + " 0.99937258 0.99998484 0.97801416 0.97758156 0.97635099 0.97433939\n", + " 0.97157468 0.96809575 0.96395256 0.95920632 0.99998484 0.99949962\n", + " 0.99811915 0.99586168 0.99275675 0.98884464 0.98417584 0.97881096\n", + " 0.95920632 0.96405674 0.9683099 0.97190306 0.97478469 0.97691438\n", + " 0.97826264 0.97881096 0.9804738 0.98670967 0.99185123 0.9957987\n", + " 0.9984753 0.99982841 0.97794404 0.97687554 0.97462396 0.97123615\n", + " 0.9667837 0.96136325 0.99988348 0.99868507 0.99615882 0.99235447\n", + " 0.98734609 0.98123085 0.96140751 0.96695974 0.97155114 0.97508223\n", + " 0.97747856 0.97869042 0.97803381 0.97803381 0.97882992 0.97882992\n", + " 0.9803828 0.97929953 0.97701659 0.97358088 0.96906399 0.96356241\n", + " 0.98661554 0.98549511 0.98313339 0.97957769 0.97489983 0.969196\n", + " 0.99175456 0.99060389 0.98817822 0.98452554 0.97971818 0.9738524\n", + " 0.9957001 0.99452628 0.9920518 0.98832537 0.98342001 0.97743229\n", + " 0.99837538 0.99718585 0.99467828 0.99090201 0.9859307 0.97986124\n", + " 0.99972782 0.99853032 0.996006 0.99220455 0.9872 0.98108947]]\n", + "549862 29.55653118]\n", + " [19.64949872 29.55550938]\n", + " [14.27349882 29.55448759]\n", + " [ 8.89749891 29.55346579]\n", + " [ 3.52149901 29.55244399]\n", + " [30.40252032 24.18155307]\n", + " [25.02652042 24.18053128]\n", + " [19.65052052 24.17950948]\n", + " [14.27452061 24.17848769]\n", + " [ 8.89852071 24.17746589]\n", + " [ 3.52252081 24.17644409]\n", + " [30.40354212 18.80555317]\n", + " [25.02754221 18.80453137]\n", + " [19.65154231 18.80350958]\n", + " [14.27554241 18.80248779]\n", + " [ 8.89954251 18.80146598]\n", + " [ 3.5235426 18.80044419]\n", + " [30.40456392 13.42955327]\n", + " [25.02856401 13.42853147]\n", + " [19.65256411 13.42750967]\n", + " [14.27656421 13.42648788]\n", + " [ 8.9005643 13.42546608]\n", + " [ 3.5245644 13.42444429]\n", + " [30.40558571 8.05355336]\n", + " [25.02958581 8.05253157]\n", + " [19.6535859 8.05150977]\n", + " [14.277586 8.05048797]\n", + " [ 8.9015861 8.04946618]\n", + " [ 3.5255862 8.04844438]\n", + " [30.40660751 2.67755346]\n", + " [25.0306076 2.67653166]\n", + " [19.6546077 2.67550987]\n", + " [14.2786078 2.67448807]\n", + " [ 8.90260789 2.67346627]\n", + " [ 3.52660799 2.67244448]]\n", + "DEBUG:root:radec2pix: fitpx: [[ 2.13550000e+03 -4.99999783e-01]\n", + " [ 2.13550000e+03 2.91928571e+02]\n", + " [ 2.13550000e+03 5.84357143e+02]\n", + " [ 2.13550000e+03 8.76785714e+02]\n", + " [ 2.13550000e+03 1.16921429e+03]\n", + " [ 2.13550000e+03 1.46164286e+03]\n", + " [ 2.13550000e+03 1.75407143e+03]\n", + " [ 2.13550000e+03 2.04650000e+03]\n", + " [ 2.13550000e+03 -4.99999783e-01]\n", + " [ 2.42792857e+03 -5.00000080e-01]\n", + " [ 2.72035714e+03 -5.00000178e-01]\n", + " [ 3.01278571e+03 -4.99999867e-01]\n", + " [ 3.30521429e+03 -5.00000095e-01]\n", + " [ 3.59764286e+03 -5.00000221e-01]\n", + " [ 3.89007143e+03 -5.00000185e-01]\n", + " [ 4.18250000e+03 -5.00000018e-01]\n", + " [ 2.13550000e+03 2.04650000e+03]\n", + " [ 2.42792857e+03 2.04650000e+03]\n", + " [ 2.72035714e+03 2.04650000e+03]\n", + " [ 3.01278571e+03 2.04650000e+03]\n", + " [ 3.30521429e+03 2.04650000e+03]\n", + " [ 3.59764286e+03 2.04650000e+03]\n", + " [ 3.89007143e+03 2.04650000e+03]\n", + " [ 4.18250000e+03 2.04650000e+03]\n", + " [ 4.18250000e+03 -5.00000018e-01]\n", + " [ 4.18250000e+03 2.91928571e+02]\n", + " [ 4.18250000e+03 5.84357143e+02]\n", + " [ 4.18250000e+03 8.76785714e+02]\n", + " [ 4.18250000e+03 1.16921429e+03]\n", + " [ 4.18250000e+03 1.46164286e+03]\n", + " [ 4.18250000e+03 1.75407143e+03]\n", + " [ 4.18250000e+03 2.04650000e+03]\n", + " [ 2.13650000e+03 1.27000000e+02]\n", + " [ 2.13650000e+03 4.85400000e+02]\n", + " [ 2.13650000e+03 8.43800000e+02]\n", + " [ 2.13650000e+03 1.20220000e+03]\n", + " [ 2.13650000e+03 1.56060000e+03]\n", + " [ 2.13650000e+03 1.91900000e+03]\n", + " [ 2.269.69447935]\n", + " [-32.19333391 -24.31847935]\n", + " [-32.19336187 -18.94247936]\n", + " [-32.19338983 -13.56647936]\n", + " [-32.19341779 -8.19047935]\n", + " [-32.19344575 -2.81447935]\n", + " [-30.29579608 -31.59196949]\n", + " [-24.91979608 -31.59194152]\n", + " [-19.54379608 -31.59191356]\n", + " [-14.16779608 -31.5918856 ]\n", + " [ -8.79179608 -31.59185764]\n", + " [ -3.41579608 -31.59182968]\n", + " [-30.29595562 -0.91696949]\n", + " [-24.91995562 -0.91694153]\n", + " [-19.54395562 -0.91691356]\n", + " [-14.16795562 -0.9168856 ]\n", + " [ -8.79195562 -0.91685764]\n", + " [ -3.41595563 -0.91682968]\n", + " [ -1.51830595 -29.69431981]\n", + " [ -1.51833391 -24.31831981]\n", + " [ -1.51836187 -18.94231981]\n", + " [ -1.51838983 -13.56631981]\n", + " [ -1.51841779 -8.19031981]\n", + " [ -1.51844575 -2.81431982]\n", + " [-32.19329608 -31.59197936]\n", + " [-32.19329608 -31.59197936]\n", + " [ -1.51845562 -0.91681981]\n", + " [ -1.51845562 -0.91681981]\n", + " [-30.29580595 -29.69446949]\n", + " [-24.91980594 -29.69444152]\n", + " [-19.54380595 -29.69441356]\n", + " [-14.16780595 -29.69438561]\n", + " [ -8.79180595 -29.69435764]\n", + " [ -3.41580595 -29.69432968]\n", + " [-30.29583391 -24.31846949]\n", + " [-24.91983391 -24.31844152]\n", + " [-19.54383391 -24.31841356]\n", + " [-14.16783391 -24.31838561]\n", + " [ -8.79183391 -24.31835764]\n", + " [ -3.41583391 -24.31832968]\n", + " [-30.29586187 -18.94246949]\n", + " [-24.91986187 -18.94244153]\n", + " [-19.54386187 -18.94241356]\n", + " [-14.16786187 -18.94238561]\n", + " [ -8.79186187 -18.94235764]\n", + " [ -3.41586187 -18.94232969]\n", + " [-30.29588983 -13.56646949]\n", + " [-24.91988983 -13.56644152]\n", + " [-19.54388984 -13.56641357]\n", + " [-14.16788983 -13.5663856 ]\n", + " [ -8.79188983 -13.56635764]\n", + " [ -3.41588983 -13.56632968]\n", + " [-30.29591779 -8.19046949]\n", + " [-24.91991779 -8.19044152]\n", + " [-19.54391779 -8.19041356]\n", + " [-14.16791779 -8.1903856 ]\n", + " [ -8.79191779 -8.19035764]\n", + " [ -3.41591779 -8.19032968]\n", + " [-30.29594575 -2.81446949]\n", + " [-24.91994576 -2.81444153]\n", + " [-19.54394575 -2.81441356]\n", + " [-14.16794576 -2.8143856 ]\n", + " [ -8.79194575 -2.81435764]\n", + " [ -3.41594575 -2.81432968]]\n", + "223.64273186\n", + " 232.75457852 244.72618682 259.56986466 203.65258863 208.03632189\n", + " 214.17758593 223.12426077 236.4587659 255.51668541 194.60966243\n", + " 197.58758667 202.01156736 209.14892478 221.94021993 246.56988658\n", + " 184.76194605 185.78921163 187.37371211 190.13104958 196.0740482\n", + " 216.53792504]\n", + "DEBUG:root:radec2pix: camVec: [[0.20622014 0.20805053 0.20961035 0.210899 0.21191543 0.21265818\n", + " 0.21312568 0.21331667 0.20622014 0.17982824 0.1527297 0.12503427\n", + " 0.09685185 0.06829276 0.03946812 0.01049004 0.21331667 0.18597713\n", + " 0.1579279 0.12927353 0.10011961 0.07057467 0.04075124 0.01076573\n", + " 0.01049004 0.01056977 0.01063642 0.01068985 0.01072978 0.01075592\n", + " 0.01076796 0.01076573 0.20696213 0.20902258 0.21067623 0.21192136\n", + " 0.21275532 0.21317532 0.1948134 0.16197729 0.1281888 0.09365018\n", + " 0.05856456 0.02313694 0.20149034 0.16749252 0.1325326 0.09680441\n", + " 0.0605079 0.02385188 0.01062602 0.01071595 0.0107859 0.01083545\n", + " 0.01086402 0.01087112 0.20613793 0.20613793 0.01086844 0.01086844\n", + " 0.19558949 0.1626169 0.12869151 0.09401511 0.05879055 0.02322296\n", + " 0.19753009 0.16421774 0.12995114 0.09493033 0.05935726 0.02343764\n", + " 0.19908829 0.16550536 0.13096617 0.09566871 0.05981412 0.02360896\n", + " 0.20026215 0.16647694 0.13173312 0.09622682 0.06015857 0.02373584\n", + " 0.20104857 0.16712825 0.13224724 0.09660024 0.06038739 0.02381698\n", + " 0.20144435 0.16745515 0.13250401 0.09678486 0.06049766 0.02385117]\n", + " [0.20255556 0.17610143 0.14895462 0.12122494 0.09302239 0.06445739\n", + " 0.03564119 0.00668594 0.20255556 0.20441077 0.20600074 0.2073248\n", + " 0.20838186 0.20917033 0.20968847 0.20993479 0.00668594 0.00675821\n", + " 0.00682246 0.00687853 0.00692617 0.0069651 0.00699507 0.00701584\n", + " 0.20993479 0.18250233 0.15437326 0.12565215 0.09644485 0.06686038\n", + " 0.03701177 0.00701584 0.19112005 0.15821703 0.12438266 0.08981934\n", + " 0.05473042 0.0193211 0.20330747 0.20540191 0.20709749 0.2083924\n", + " 0.20928375 0.20976841 0.00681796 0.00690216 0.00697398 0.00703299\n", + " 0.00707868 0.00711058 0.19806614 0.16396327 0.12891793 0.09312436\n", + " 0.05678335 0.02010461 0.2024732 0.2024732 0.00711848 0.00711848\n", + " 0.19190537 0.19387759 0.19547539 0.1966967 0.19753824 0.19799645\n", + " 0.15886347 0.1604891 0.1618095 0.16282181 0.16352163 0.16390447\n", + " 0.12488974 0.12616714 0.12720791 0.12800859 0.1285643 0.12887024\n", + " 0.09018615 0.09111203 0.09186896 0.09245358 0.0928614 0.09308815\n", + " 0.05495583 0.05552612 0.05599434 0.05635799 0.05661388 0.05675899\n", + " 0.01940412 0.01961547 0.01979108 0.01992994 0.02003078 0.02009239]\n", + " [0.95731108 0.96213474 0.96637261 0.96996192 0.9728508 0.97499833\n", + " 0.97637449 0.97696023 0.95731108 0.96222557 0.96655954 0.97024886\n", + " 0.97324032 0.97549161 0.97697135 0.97765911 0.97696023 0.98253083\n", + " 0.98742708 0.99158512 0.9949513 0.99748218 0.99914484 0.99991744\n", + " 0.97765911 0.9831486 0.98795534 0.99201677 0.99528049 0.99770436\n", + " 0.99925681 0.99991744 0.95949977 0.96502691 0.96961048 0.97315046\n", + " 0.9755715 0.9768229 0.95953833 0.96518051 0.96988569 0.97355136\n", + " 0.97609964 0.97747731 0.97946677 0.98584919 0.99115411 0.99527858\n", + " 0.99814262 0.99969022 0.98013106 0.98640824 0.99159661 0.99559552\n", + " 0.99832741 0.99973878 0.95734621 0.95734621 0.9999156 0.9999156\n", + " 0.96172609 0.96745399 0.9722283 0.9759465 0.97853069 0.9799276\n", + " 0.96733875 0.97328094 0.97822819 0.98207805 0.98475245 0.98619775\n", + " 0.97199095 0.97810522 0.98319175 0.98714806 0.9898957 0.99138039\n", + " 0.97558266 0.98182688 0.98701899 0.99105637 0.99386 0.99537491\n", + " 0.97803851 0.98437036 0.98963392 0.99372641 0.99656823 0.99810379\n", + " 0.97930774 0.98568454 0.99098486 0.99510577 0.99796733 0.99951359]]\n", + "DEBUG:root:optics_fp: xyfp: [[32.23341696 31.55141621]\n", + " [32.23194958 27.16498788]\n", + " [32.2304822 22.77855956]\n", + " [32.22901483 18.39213124]\n", + " [32.22754745 14.00570291]\n", + " [32.22608007 9.61927458]\n", + " [32.22461269 5.23284626]\n", + " [32.2231453 0.84641793]\n", + " [32.23341696 31.55141621]\n", + " [27.84698864 31.5528836 ]\n", + " [23.46056031 31.55435097]\n", + " [19.07413198 31.55581835]\n", + " [14.68770366 31.55728573]\n", + " [10.30127533 31.55875311]\n", + " [ 5.91484701 31.56022049]\n", + " [ 1.52841868 31.56168787]\n", + " [32.2231453 0.84641793]\n", + " [27.83671698 0.84788531]\n", + " [23.45028865 0.84935269]\n", + " [19.06386033 0.85082007]\n", + " [14.677432 0.85228745]\n", + " [10.29100367 0.85375483]\n", + " [ 5.90457535 0.85522221]\n", + " [ 1.51814702 0.85668959]\n", + " [ 1.52841868 31.56168787]\n", + " [ 1.5269513 27.17525955]\n", + " [ 1.52548392 22.78883122]\n", + " [ 1.52401654 18.4024029 ]\n", + " [ 1.52254916 14.01597457]\n", + " [ 1.52108178 9.62954624]\n", + " [ 1.5196144 5.24311792]\n", + " [ 1.51814702 0.85668959]\n", + " [32.21777718 29.63892134]\n", + " [32.21597876 24.26292164]\n", + " [32.21418034 18.88692194]\n", + " [32.21238193 13.51092224]\n", + " [32.21058351 8.13492254]\n", + " [32.20878509 2.75892284]\n", + " [30.32091205 31.53705599]\n", + " [24.94491236 31.53885442]\n", + " [19.56891265 31.54065283]\n", + " [14.19291295 31.54245125]\n", + " [ 8.81691325 31.54424967]\n", + " [ 3.44091356 31.54604808]\n", + " [30.31065043 0.86205771]\n", + " [24.93465073 0.86385613]\n", + " [19.55865103 0.86565455]\n", + " [14.18265134 0.86745297]\n", + " [ 8.80665163 0.86925139]\n", + " [ 3.43065193 0.8710498 ]\n", + " [ 1.5427789 29.64918296]\n", + " [ 1.54098048 24.27318326]\n", + " [ 1.53918206 18.89718357]\n", + " [ 1.53738364 13.52118387]\n", + " [ 1.53558522 8.14518416]\n", + " [ 1.5337868 2.76918446]\n", + " [32.21841195 31.53642123]\n", + " [32.21841195 31.53642123]\n", + " [ 1.53315204 0.87168457]\n", + " [ 1.53315204 0.87168457]\n", + " [30.32027729 29.6395561 ]\n", + " [24.94427759 29.64135452]\n", + " [19.56827789 29.64315294]\n", + " [14.19227819 29.64495136]\n", + " [ 8.81627849 29.64674978]\n", + " [ 3.44027879 29.6485482 ]\n", + " [30.31847887 24.2635564 ]\n", + " [24.94247917 24.26535482]\n", + " [19.56647947 24.26715324]\n", + " [14.19047977 24.26895166]\n", + " [ 8.81448007 24.27075007]\n", + " [ 3.43848037 24.2725485 ]\n", + " [30.31668045 18.8875567 ]\n", + " [24.94068075 18.88935513]\n", + " [19.56468105 18.89115354]\n", + " [14.18868135 18.89295196]\n", + " [ 8.81268165 18.89475038]\n", + " [ 3.43668195 18.89654879]\n", + " [30.31488203 13.51155701]\n", + " [24.93888233 13.51335542]\n", + " [19.56288263 13.51515384]\n", + " [14.18688293 13.51695226]\n", + " [ 8.81088324 13.51875068]\n", + " [ 3.43488354 13.5205491 ]\n", + " [30.31308361 8.13555731]\n", + " [24.93708392 8.13735572]\n", + " [19.56108422 8.13915414]\n", + " [14.18508451 8.14095256]\n", + " [ 8.80908482 8.14275098]\n", + " [ 3.43308512 8.1445494 ]\n", + " [30.31128519 2.75955761]\n", + " [24.93528549 2.76135602]\n", + " [19.5592858 2.76315444]\n", + " [14.18328609 2.76495286]\n", + " [ 8.8072864 2.76675128]\n", + " [ 3.4312867 2.7685497 ]]\n", + "DEBUG:root:make_az_asym: xyp: shape: (96, 2)\n", + "DEBUG:root:optics_fp: xyfp: [[-32.29046994 -31.71666141]\n", + " [-32.28860507 -27.33023323]\n", + " [-32.2867402 -22.94380505]\n", + " [-32.28487534 -18.55737688]\n", + " [-32.28301047 -14.1709487 ]\n", + " [-32.2811456 -9.78452053]\n", + " [-32.27928073 -5.39809235]\n", + " [-32.27741587 -1.01166418]\n", + " [-32.29046994 -31.71666141]\n", + " [-27.90404176 -31.71852627]\n", + " [-23.51761359 -31.72039114]\n", + " [-19.13118541 -31.722256 ]\n", + " [-14.74475724 -31.72412087]\n", + " [-10.35832906 -31.72598574]\n", + " [ -5.97190089 -31.72785061]\n", + " [ -1.58547272 -31.72971547]\n", + " [-32.27741587 -1.01166418]\n", + " [-27.8909877 -1.01352905]\n", + " [-23.50455952 -1.01539391]\n", + " [-19.11813134 -1.01725878]\n", + " [-14.73170317 -1.01912365]\n", + " [-10.345275 -1.02098851]\n", + " [ -5.95884682 -1.02285338]\n", + " [ -1.57241864 -1.02471825]\n", + " [ -1.58547272 -31.72971547]\n", + " [ -1.58360785 -27.3432873 ]\n", + " [ -1.58174298 -22.95685912]\n", + " [ -1.57987811 -18.57043094]\n", + " [ -1.57801325 -14.18400278]\n", + " [ -1.57614838 -9.7975746 ]\n", + " [ -1.57428351 -5.41114642]\n", + " [ -1.57241864 -1.02471825]\n", + " [-32.27465685 -29.80416795]\n", + " [-32.27237127 -24.42816844]\n", + " [-32.2700857 -19.05216893]\n", + " [-32.26780012 -13.67616941]\n", + " [-32.26551454 -8.3001699 ]\n", + " [-32.26322896 -2.92417038]\n", + " [-30.37796373 -31.70247449]\n", + " [-25.00196422 -31.70476008]\n", + " [-19.62596471 -31.70704565]\n", + " [-14.24996519 -31.70933123]\n", + " [ -8.87396568 -31.71161681]\n", + " [ -3.49796617 -31.71390239]\n", + " [-30.36492242 -1.02747727]\n", + " [-24.98892291 -1.02976285]\n", + " [-19.61292339 -1.03204842]\n", + " [-14.23692388 -1.034334 ]\n", + " [ -8.86092437 -1.03661958]\n", + " [ -3.48492485 -1.03890516]\n", + " [ -1.59965962 -29.81720927]\n", + " [ -1.59737405 -24.44120975]\n", + " [ -1.59508847 -19.06521024]\n", + " [ -1.59280289 -13.68921073]\n", + " [ -1.59051731 -8.31321121]\n", + " [ -1.58823174 -2.9372117 ]\n", + " [-32.27546357 -31.70166778]\n", + " [-32.27546357 -31.70166778]\n", + " [ -1.58742502 -1.03971187]\n", + " [ -1.58742502 -1.03971187]\n", + " [-30.37715702 -29.80497466]\n", + " [-25.00115751 -29.80726024]\n", + " [-19.625158 -29.80954582]\n", + " [-14.24915848 -29.8118314 ]\n", + " [ -8.87315897 -29.81411698]\n", + " [ -3.49715945 -29.81640256]\n", + " [-30.37487145 -24.42897515]\n", + " [-24.99887193 -24.43126073]\n", + " [-19.62287241 -24.43354631]\n", + " [-14.2468729 -24.43583188]\n", + " [ -8.87087339 -24.43811746]\n", + " [ -3.49487388 -24.44040305]\n", + " [-30.37258587 -19.05297564]\n", + " [-24.99658635 -19.05526122]\n", + " [-19.62058684 -19.05754679]\n", + " [-14.24458732 -19.05983237]\n", + " [ -8.86858781 -19.06211795]\n", + " [ -3.4925883 -19.06440353]\n", + " [-30.37030029 -13.67697612]\n", + " [-24.99430077 -13.6792617 ]\n", + " [-19.61830126 -13.68154728]\n", + " [-14.24230175 -13.68383286]\n", + " [ -8.86630223 -13.68611844]\n", + " [ -3.49030272 -13.68840401]\n", + " [-30.36801471 -8.30097661]\n", + " [-24.9920152 -8.30326219]\n", + " [-19.61601568 -8.30554776]\n", + " [-14.24001617 -8.30783335]\n", + " [ -8.86401666 -8.31011893]\n", + " [ -3.48801714 -8.3124045 ]\n", + " [-30.36572914 -2.9249771 ]\n", + " [-24.98972962 -2.92726267]\n", + " [-19.6137301 -2.92954825]\n", + " [-14.23773059 -2.93183383]\n", + " [ -8.86173108 -2.93411941]\n", + " [ -3.48573156 -2.93640499]]\n", + "DEBUG:root:optics_fp: xyfp shape: (96, 2)\n", + "09519827 0.12727979 0.98728777]\n", + " [0.05932353 0.12781451 0.99002231]\n", + " [0.02310025 0.12810021 0.99149217]\n", + " [0.19986372 0.08949878 0.97572766]\n", + " [0.16605732 0.09040196 0.98196357]\n", + " [0.13129265 0.09113695 0.98714553]\n", + " [0.09576573 0.09169995 0.99117105]\n", + " [0.05967819 0.09208666 0.99396105]\n", + " [0.02323871 0.09229337 0.99546064]\n", + " [0.20065641 0.05424725 0.9781586 ]\n", + " [0.16671646 0.05479478 0.98448116]\n", + " [0.13181555 0.05524091 0.98973385]\n", + " [0.09614872 0.05558298 0.99381384]\n", + " [0.05991775 0.05581806 0.99664146]\n", + " [0.0233323 0.05594375 0.99816126]\n", + " [0.20105858 0.01867818 0.97940113]\n", + " [0.16705125 0.01886665 0.98576768]\n", + " [0.13208139 0.0190203 0.99105637]\n", + " [0.09634357 0.01913813 0.99516413]\n", + " [0.06003972 0.01921909 0.99801095]\n", + " [0.02338002 0.01926233 0.99954106]]\n", + "DEBUG:root:radec2pix: camVec Shape: (3, 96)\n", + "DEBUG:root:radec2pix: lng: [44.46013111 40.20250222 35.33475619 29.80239704 23.58471193 16.71933815\n", + " 9.32438225 1.60411637 44.46013111 48.6443107 53.44435482 58.92326156\n", + " 65.11319638 71.98940835 79.44437917 87.27692771 1.60411637 1.85680988\n", + " 2.20397654 2.71072869 3.51976244 5.01551732 8.70535713 30.95664732\n", + " 87.27692771 86.8388988 86.23319877 85.34102995 83.89722589 81.1670885\n", + " 74.12971046 30.95664732 42.68783954 37.06698546 30.47243013 22.85083712\n", + " 14.27406075 4.99632239 46.19982373 51.73354216 58.25770295 65.84552409\n", + " 74.44848175 83.82899465 1.73364549 2.10727457 2.68608796 3.70275867\n", + " 5.95349638 15.02389602 87.07294759 86.42732935 85.41713359 83.61383424\n", + " 79.49708007 61.65124289 44.45987707 44.45987707 31.12292419 31.12292419\n", + " 44.42569213 49.99636441 56.64851063 64.49322462 73.50720842 83.43797919\n", + " 38.75401666 44.3002287 51.21241262 59.77502346 70.12351892 82.00435394\n", + " 32.01565774 37.23971088 44.10467708 53.20553354 65.10220937 79.77773784\n", + " 24.12278796 28.56396741 34.76649258 43.75755718 57.05411516 75.86717668\n", + " 15.12820823 18.19416817 22.73745459 30.03194111 42.97126995 67.36058422\n", + " 5.30749937 6.44364165 8.19450854 11.23524 17.75019872 39.48443023]\n", + "DEBUG:root:optics_fp: xyfp shape: (96, 2)\n", + "-24.14957093]\n", + " [-32.29232495 -18.77357144]\n", + " [-32.2899932 -13.39757194]\n", + " [-32.28766146 -8.02157244]\n", + " [-32.28532972 -2.64557295]\n", + " [-30.40031161 -31.42389325]\n", + " [-25.02431212 -31.42622499]\n", + " [-19.64831262 -31.42855673]\n", + " [-14.27231313 -31.43088848]\n", + " [ -8.89631363 -31.43322022]\n", + " [ -3.52031414 -31.43555196]\n", + " [-30.38700689 -0.74889614]\n", + " [-25.01100739 -0.75122788]\n", + " [-19.6350079 -0.75355962]\n", + " [-14.25900841 -0.75589136]\n", + " [ -8.88300892 -0.7582231 ]\n", + " [ -3.50700942 -0.76055484]\n", + " [ -1.62199131 -29.53887515]\n", + " [ -1.61965957 -24.16287565]\n", + " [ -1.61732783 -18.78687616]\n", + " [ -1.61499609 -13.41087666]\n", + " [ -1.61266434 -8.03487716]\n", + " [ -1.6103326 -2.65887768]\n", + " [-32.29781143 -31.42307024]\n", + " [-32.29781143 -31.42307024]\n", + " [ -1.60950959 -0.76137785]\n", + " [ -1.60950959 -0.76137785]\n", + " [-30.3994886 -29.52639343]\n", + " [-25.02348911 -29.52872517]\n", + " [-19.64748962 -29.53105692]\n", + " [-14.27149012 -29.53338866]\n", + " [ -8.89549063 -29.5357204 ]\n", + " [ -3.51949113 -29.53805214]\n", + " [-30.39715686 -24.15039394]\n", + " [-25.02115737 -24.15272568]\n", + " [-19.64515788 -24.DEBUG:root:radec2pix: ccdpx: [[-4.45000002e+01 -5.00000175e-01]\n", + " [-4.44999997e+01 2.91928572e+02]\n", + " [-4.45000002e+01 5.84357143e+02]\n", + " [-4.45000000e+01 8.76785714e+02]\n", + " [-4.45000001e+01 1.16921429e+03]\n", + " [-4.44999999e+01 1.46164286e+03]\n", + " [-4.45000001e+01 1.75407143e+03]\n", + " [-4.44999997e+01 2.04650000e+03]\n", + " [-4.45000002e+01 -5.00000175e-01]\n", + " [ 2.47928571e+02 -5.00000003e-01]\n", + " [ 5.40357143e+02 -4.99999889e-01]\n", + " [ 8.32785714e+02 -5.00000160e-01]\n", + " [ 1.12521429e+03 -5.00000087e-01]\n", + " [ 1.41764286e+03 -5.00000059e-01]\n", + " [ 1.71007143e+03 -4.99999907e-01]\n", + " [ 2.00250000e+03 -4.99999721e-01]\n", + " [-4.44999997e+01 2.04650000e+03]\n", + " [ 2.47928571e+02 2.04650000e+03]\n", + " [ 5.40357143e+02 2.04650000e+03]\n", + " [ 8.32785714e+02 2.04650000e+03]\n", + " [ 1.12521429e+03 2.04650000e+03]\n", + " [ 1.41764286e+03 2.04650000e+03]\n", + " [ 1.71007143e+03 2.04650000e+03]\n", + " [ 2.00250000e+03 2.04650000e+03]\n", + " [ 2.00250000e+03 -4.99999721e-01]\n", + " [ 2.00250000e+03 2.91928571e+02]\n", + " [ 2.00250000e+03 5.84357143e+02]\n", + " [ 2.00250000e+03 8.76785714e+02]\n", + " [ 2.00250000e+03 1.16921429e+03]\n", + " [ 2.00250000e+03 1.46164286e+03]\n", + " [ 2.00250000e+03 1.75407143e+03]\n", + " [ 2.00250000e+03 2.04650000e+03]\n", + " [-4.35000001e+01 1.27000000e+02]\n", + " [-4.34999997e+01 4.85400000e+02]\n", + " [-4.35000003e+01 8.43800000e+02]\n", + " [-4.35000003e+01 1.20220000e+03]\n", + " [-4.35000002e+01 1.56060000e+03]\n", + " [-4.35000003e+01 1.91900000e+03]\n", + " [ 8.30000000e+01 4.99999980e-01]\n", + " [ 4.41400000e+02 4.99999948e-01]\n", + " [ 7.99800000e+02 4.99999731e-01]\n", + " [ 1.15820000e+03 4.99999908e-01]\n", + " [ 1.51660000e+03 4.99999771e-01]\n", + " [ 1.87500000e+03 5.00000017e-01]\n", + " [ 8.29999998e+01 2.04550000e+03]\n", + " [ 4.41400000e+02 2.04550000e+03]\n", + " [ 7.99800000e+02 2.04550000e+03]\n", + " [ 1.15820000e+03 2.04550000e+03]\n", + " [ 1.51660000e+03 2.04550000e+03]\n", + " [ 1.87500000e+03 2.04550000e+03]\n", + " [ 2.00150000e+03 1.27000000e+02]\n", + " [ 2.00150000e+03 4.85400000e+02]\n", + " [ 2.00150000e+03 8.43800000e+02]\n", + " [ 2.00150000e+03 1.20220000e+03]\n", + " [ 2.00150000e+03 1.56060000e+03]\n", + " [ 2.00150000e+03 1.91900000e+03]\n", + " [-4.35000001e+01 4.99999868e-01]\n", + " [-4.35000001e+01 4.99999868e-01]\n", + " [ 2.00150000e+03 2.04550000e+03]\n", + " [ 2.00150000e+03 2.04550000e+03]\n", + " [ 8.30000002e+01 1.27000000e+02]\n", + " [ 4.41400000e+02 1.27000000e+02]\n", + " [ 7.99800000e+02 1.27000000e+02]\n", + " [ 1.15820000e+03 1.27000000e+02]\n", + " [ 1.51660000e+03 1.27000000e+02]\n", + " [ 1.87500000e+03 1.27000000e+02]\n", + " [ 8.30000001e+01 4.85400000e+02]\n", + " [ 4.41400000e+02 4.85400000e+02]\n", + " [ 7.99800000e+02 4.85400000e+02]\n", + " [ 1.15820000e+03 4.85400000e+02]\n", + " [ 1.51660000e+03 4.85400000e+02]\n", + " [ 1.87500000e+03 4.85400000e+02]\n", + " [ 8.29999997e+01 8.43800000e+02]\n", + " [ 4.41400000e+02 8.43800000e+02]\n", + " [ 7.99800000e+02 8.43800000e+02]\n", + " [ 1.15820000e+03 8.43800000e+02]\n", + " [ 1.51660000e+03 8.43800000e+02]\n", + " [ 1.87500000e+03 8.43800000e+02]\n", + " [ 8.29999998e+01 1.20220000e+03]\n", + " [ 4.41400000e+02 1.20220000e+03]\n", + " [ 7.99800000e+02 1.20220000e+03]\n", + " [ 1.15820000e+03 1.20220000e+03]\n", + " [ 1.51660000e+03 1.20220000e+03]\n", + " [ 1.87500000e+03 1.20220000e+03]\n", + " [ 8.30000003e+01 1.56060000e+03]\n", + " [ 4.41400000e+02 1.56060000e+03]\n", + " [ 7.99800000e+02 1.56060000e+03]\n", + " [ 1.15820000e+03 1.56060000e+03]\n", + " [ 1.51660000e+03 1.56060000e+03]\n", + " [ 1.87500000e+03 1.56060000e+03]\n", + " [ 8.29999998e+01 1.91900000e+03]\n", + " [ 4.41400000e+02 1.91900000e+03]\n", + " [ 7.99800000e+02 1.91900000e+03]\n", + " [ 1.15820000e+03 1.91900000e+03]\n", + " [ 1.51660000e+03 1.91900000e+03]\n", + " [ 1.87500000e+03 1.91900000e+03]]\n", + "DEBUG:root:radec2pix: lat: [73.24045629 74.22430856 75.14029247 75.96071497 76.65562135 77.19454225\n", + " 77.54971408 77.7004367 73.24045629 74.24542243 75.18640058 76.03561625\n", + " 76.76261911 77.33584079 77.72573436 77.90930638 77.7004367 79.29904106\n", + " 80.93014794 82.5883689 84.26818815 85.9633334 87.6639727 89.31207398\n", + " 77.90930638 79.51115144 81.14420271 82.80268356 84.48015158 86.16770212\n", + " 87.84429449 89.31207398 73.67977076 74.84367611 75.87839932 76.72967459\n", + " 77.34173684 77.66614591 73.68843996 74.88082796 75.94981974 76.8404193\n", + " 77.49482717 77.86108402 78.39292403 80.37467767 82.39987127 84.45839268\n", + " 86.53837212 88.6125356 78.60323781 80.5880931 82.61407297 84.6695731\n", + " 86.73723257 88.74545658 73.24742531 73.24742531 89.30399741 89.30399741\n", + " 74.13967578 75.38730878 76.51234476 77.4557749 78.15346667 78.54590996\n", + " 75.35848529 76.77078371 78.07006468 79.18567192 80.03121451 80.5165253\n", + " 76.44822453 78.03255968 79.52764934 80.85445453 81.89945108 82.52079347\n", + " 77.3504272 79.10147139 80.80332064 82.38074874 83.7000473 84.53866109\n", + " 78.00303059 79.89280789 81.78299446 83.6236493 85.30285158 86.52492363\n", + " 78.35049019 80.32186123 82.33135444 84.36297386 86.3856321 88.26407642]\n", + "DEBUG:root:radec2pix: camVec Shape: (3, 96)\n", + "DEBUG:root:radec2pix: lat: [73.30319327 74.28364829 75.19434757 76.00760673 76.6934474 77.22149469\n", + " 77.56431546 77.70181842 73.30319327 74.31487163 75.26252869 76.11836609\n", + " 76.85166299 77.43039612 77.8244634 78.01035447 77.70181842 79.30062777\n", + " 80.93200296 82.59063863 84.2712796 85.96832552 87.67438557 89.35703566\n", + " 78.01035447 79.61411514 81.24861046 82.90802789 84.58587071 86.27294722\n", + " 87.94616945 89.35703566 73.74128804 74.89975016 75.92621516 76.76637844\n", + " 77.36466213 77.67335289 73.7541097 74.95468773 76.03182731 76.93013306\n", + " 77.59097642 77.96138218 78.39443735 80.37649363 82.40216048 84.46173597\n", + " 86.54472647 88.63280521 78.70517127 80.69206097 82.71932817 84.7752745\n", + " 86.84188191 88.83673743 73.31017726 73.31017726 89.34933673 89.34933673\n", + " 74.20408349 75.46003419 76.59358943 77.54526674 78.24998117 78.64701061\n", + " 75.41740928 76.83842002 78.14733268 79.2729755 80.12769991 80.61933545\n", + " 76.49875662 78.09183026 79.59737911 80.93621381 81.99355302 82.62428133\n", + " 77.38945666 79.14833894 80.86043698 82.45133489 83.78724838 84.64121324\n", + " 78.02753384 79.92284226 81.82091734 83.6737055 85.37260957 86.62213831\n", + " 78.35820379 80.33138971 82.34363217 84.38015735 86.41373806 88.32724747]\n", + "DEBUG:root:cartToSphere: vec: [[ 0.00110855 -0.20853555 0.97801416]\n", + " [ 0.00111823 -0.18105588 0.98347217]\n", + " [ 0.00112655 -0.15288447 0.98824343]\n", + " [ 0.00113349 -0.12412547 0.99226588]\n", + " [ 0.001139 -0.09488471 0.99548762]\n", + " [ 0.00114306 -0.06527159 0.99786688]\n", + " [ 0.00114562 -0.0353997 0.99937258]\n", + " [ 0.00114666 -0.00538646 0.99998484]\n", + " [ 0.00110855 -0.20853555 0.97801416]\n", + " [ 0.03013432 -0.20838958 0.97758156]\n", + " [ 0.05904256 -0.2079729 0.97635099]\n", + " [ 0.08772073 -0.20728684 0.97433939]\n", + " [ 0.11605724 -0.20633313 0.97157468]\n", + " [ 0.14394136 -0.20511339 0.96809575]\n", + " [ 0.17126266 -0.20362847 0.96395256]\n", + " [ 0.19791015 -0.2018782 0.95920632]\n", + " [ 0.00114666 -0.00538646 0.99998484]\n", + " [ 0.03116962 -0.00538259 0.99949962]\n", + " [ 0.06106803 -0.00537156 0.99811915]\n", + " [ 0.09072406 -0.00535349 0.99586168]\n", + " [ 0.1200235 -0.00532854 0.99275675]\n", + " [ 0.1488564 -0.00529689 0.98884464]\n", + " [ 0.17711651 -0.00525872 0.98417584]\n", + " [ 0.20469956 -0.00521415 0.97881096]\n", + " [ 0.19791015 -0.2018782 0.95920632]\n", + " [ 0.19966308 -0.17529764 0.96405674]\n", + " [ 0.20115603 -0.14802765 0.9683099 ]\n", + " [ 0.20238925 -0.12017919 0.97190306]\n", + " [ 0.20336191 -0.09186258 0.97478469]\n", + " [ 0.20407235 -0.06318839 0.97691438]\n", + " [ 0.20451873 -0.03426807 0.97826264]\n", + " [ 0.20469956 -0.00521415 0.97881096]\n", + " [ 0.00121266 -0.196646 0.9804738 ]\n", + " [ 0.00122459 -0.16248857 0.98670967]\n", + " [ 0.00123428 -0.12739553 0.99185123]\n", + " [ 0.00124164 -0.09156092 0.9957987 ]\n", + " [ 0.00124661 -0.05518617 0.9984753 ]\n", + " [ 0.00124912 -0.01848208 0.99982841]\n", + " [ 0.01377154 -0.20841259 0.97794404]\n", + " [ 0.04928181 -0.20805164 0.97687554]\n", + " [ 0.08450359 -0.2072855 0.97462396]\n", + " [ 0.11923105 -0.20611722 0.97123615]\n", + " [ 0.15326028 -0.20454967 0.9667837 ]\n", + " [ 0.18638779 -0.20258404 0.96136325]\n", + " [ 0.01424443 -0.00548838 0.99988348]\n", + " [ 0.05097175 -0.00547863 0.99868507]\n", + " [ 0.08739457 -0.00545803 0.99615882]\n", + " [ 0.12330108 -0.00542687 0.99235447]\n", + " [ 0.15848878 -0.0053855 0.98734609]\n", + " [ 0.192763 -0.0053342 0.98123085]\n", + " [ 0.19861623 -0.19038695 0.96140751]\n", + " [ 0.2005887 -0.15733098 0.96695974]\n", + " [ 0.20217123 -0.12334981 0.97155114]\n", + " [ 0.20336272 -0.08864677 0.97508223]\n", + " [ 0.2041602 -0.05342545 0.97747856]\n", + " [ 0.2045604 -0.01789151 0.97869042]\n", + " [ 0.00120792 -0.20844284 0.97803381]\n", + " [ 0.00120792 -0.20844284 0.97803381]\n", + " [ 0.20460634 -0.00531377 0.97882992]\n", + " [ 0.20460634 -0.00531377 0.97882992]\n", + " [ 0.01382559 -0.19661746 0.9803828 ]\n", + " [ 0.04947523 -0.19627694 0.97929953]\n", + " [ 0.08483539 -0.19555447 0.97701659]\n", + " [ 0.11969997 -0.19445357 0.97358088]\n", + " [ 0.15386543 -0.19297773 0.96906399]\n", + " [ 0.18712908 -0.19112874 0.96356241]\n", + " [ 0.01396162 -0.1624649 0.98661554]\n", + " [ 0.04996174 -0.16218264 0.98549511]\n", + " [ 0.08566901 -0.16158454 0.98313339]\n", + " [ 0.1208763 -0.16067502 0.97957769]\n", + " [ 0.15538076 -0.15945889 0.97489983]\n", + " [ 0.1889821 -0.15793949 0.969196 ]\n", + " [ 0.01407199 -0.12737685 0.99175456]\n", + " [ 0.05035615 -0.12715419 0.99060389]\n", + " [ 0.08634371 -0.12668294 0.98817822]\n", + " [ 0.12182616 -0.12596768 0.98452554]\n", + " [ 0.15660103 -0.12501365 0.97971818]\n", + " [ 0.19047015 -0.12382499 0.9738524 ]\n", + " [ 0.01415593 -0.0915474 0.9957001 ]\n", + " [ 0.05065593 -0.09138626 0.99452628]\n", + " [ 0.08685581 -0.09104555 0DEBUG:root:make_az_asym: xyp: [[32.23341696 31.55141621]\n", + " [32.23194958 27.16498788]\n", + " [32.2304822 22.77855956]\n", + " [32.22901483 18.39213124]\n", + " [32.22754745 14.00570291]\n", + " [32.22608007 9.61927458]\n", + " [32.22461269 5.23284626]\n", + " [32.2231453 0.84641793]\n", + " [32.23341696 31.55141621]\n", + " [27.84698864 31.5528836 ]\n", + " [23.46056031 31.55435097]\n", + " [19.07413198 31.55581835]\n", + " [14.68770366 31.55728573]\n", + " [10.30127533 31.55875311]\n", + " [ 5.91484701 31.56022049]\n", + " [ 1.52841868 31.56168787]\n", + " [32.2231453 0.84641793]\n", + " [27.83671698 0.84788531]\n", + " [23.45028865 0.84935269]\n", + " [19.06386033 0.85082007]\n", + " [14.677432 0.85228745]\n", + " [10.29100367 0.85375483]\n", + " [ 5.90457535 0.85522221]\n", + " [ 1.51814702 0.85668959]\n", + " [ 1.52841868 31.56168787]\n", + " [ 1.5269513 27.17525955]\n", + " [ 1.52548392 22.78883122]\n", + " [ 1.52401654 18.4024029 ]\n", + " [ 1.52254916 14.01597457]\n", + " [ 1.52108178 9.62954624]\n", + " [ 1.5196144 5.24311792]\n", + " [ 1.51814702 0.85668959]\n", + " [32.21777718 29.63892134]\n", + " [32.21597876 24.26292164]\n", + " [32.21418034 18.88692194]\n", + " [32.21238193 13.51092224DEBUG:root:radec2pix: xyfp: [[-32.208296 -31.60697943]\n", + " [-32.20831882 -27.22055086]\n", + " [-32.20834163 -22.83412229]\n", + " [-32.20836444 -18.44769372]\n", + " [-32.20838725 -14.06126515]\n", + " [-32.20841007 -9.67483658]\n", + " [-32.20843288 -5.288408 ]\n", + " [-32.2084557 -0.90197943]\n", + " [-32.208296 -31.60697943]\n", + " [-27.82186743 -31.60695662]\n", + " [-23.43543886 -31.60693381]\n", + " [-19.04901029 -31.60691099]\n", + " [-14.66258171 -31.60688818]\n", + " [-10.27615314 -31.60686536]\n", + " [ -5.88972457 -31.60684255]\n", + " [ -1.503296 -31.60681974]\n", + " [-32.2084557 -0.90197943]\n", + " [-27.82202712 -0.90195662]\n", + " [-23.43559855 -0.9019338 ]\n", + " [-19.04916999 -0.90191099]\n", + " [-14.66274141 -0.90188818]\n", + " [-10.27631284 -0.90186536]\n", + " [ -5.88988428 -0.90184255]\n", + " [ -1.5034557 -0.90181973]\n", + " [ -1.503296 -31.60681974]\n", + " [ -1.50331881 -27.22039116]\n", + " [ -1.50334163 -22.83396259]\n", + " [ -1.50336444 -18.44753402]\n", + " [ -1.50338726 -14.06110544]\n", + " [ -1.50341007 -9.67467688]\n", + " [ -1.50343288 -5.2882483 ]\n", + " [ -1.5034557 -0.90181973]\n", + " [-32.19330594 -29.69447935]\n", + " [-32.19333391 -24.31847935]\n", + " [-32.19336187 -18.94247936]\n", + " [-32.19338983 -13.56647936]\n", + " [-32.19341779 -8.19047935]\n", + " [-32.19344575 -2.81447935]\n", + " [-30.29579608 -31.59196949]\n", + " [-24.91979608 -31.59194152]\n", + " [-19.54379608 -31.59191356]\n", + " [-14.16779608 -31.5918856 ]\n", + " [ -8.79179608 -31.59185764]\n", + " [ -3.41579608 -31.59182968]\n", + " [-30.29595562 -0.91696949]\n", + " [-24.91995562 -0.91694153]\n", + " [-19.54395562 -0.91691356]\n", + " [-14.16795562 -0.9168856 ]\n", + " [ -8.79195562 -0.91685764]\n", + " [ -3.41595563 -0.91682968]\n", + " [ -1.51830595 -29.69431981]\n", + " [ -1.51833391 -24.31831981]\n", + " [ -1.51836187 -18.94231981]\n", + " [ -1.51838983 -13.56631981]\n", + " [ -1.51841779 -8.19031981]\n", + " [ -1.51844575 -2.81431982]\n", + " [-32.19329608 -31.59197936]\n", + " [-32.19329608 -31.59197936]\n", + " [ -1.51845562 -0.91681981]\n", + " [ -1.51845562 -0.91681981]\n", + " [-30.29580595 -29.69446949]\n", + " [-24.91980594 -29.69444152]\n", + " [-19.54380595 -29.69441356]\n", + " [-14.16780595 -29.69438561]\n", + " [ -8.79180595 -29.69435764]\n", + " [ -3.41580595 -29.69432968]\n", + " [-30.29583391 -24.31846949]\n", + " [-24.91983391 -24.31844152]\n", + " [-19.54383391 -24.31841356]\n", + " [-14.16783391 -24.31838561]\n", + " [ -8.79183391 -24.31835764]\n", + " [ -3.41583391 -24.31832968]\n", + " [-30.29586187 -18.94246949]\n", + " [-24.91986187 -18.94244153]\n", + " [-19.54386187 -18.94241356]\n", + " [-14.16786187 -18.94238561]\n", + " [ -8.79186187 -18.94235764]\n", + " [ -3.41586187 -18.94232969]\n", + " [-30.29588983 -13.56646949]\n", + " [-24.91988983 -13.56644152]\n", + " [-19.54388984 -13.56641357]\n", + " [-14.16788983 -13.5663856 ]\n", + " [ -8.79188983 -13.56635764]\n", + " [ -3.41588983 -13.56632968]\n", + " [-30.29591779 -8.19046949]\n", + " [-24.91991779 -8.19044152]\n", + " [-19.54391779 -8.19041356]\n", + " [-14.16791779 -8.1903856 ]\n", + " [ -8.79191779 -8.19035764]\n", + " [ -3.41591779 -8.19032968]\n", + " [-30.29594575 -2.81446949]\n", + " [-24.91994576 -2.81444153]\n", + " [-19.54394575 -2.81441356]\n", + " [-14.16794576 -2.8143856 ]\n", + " [ -8.79194575 -2.81435764]\n", + " [ -3.41594575 -2.81432968]]\n", + "DEBUG:root:make_az_asym: xyp: [[-32.29046994 -31.71666141]\n", + " [-32.28860507 -27.33023323]\n", + " [-32.2867402 -22.94380505]\n", + " [-32.28487534 -18.55737688]\n", + " [-32.28301047 -14.1709487 ]\n", + " [-32.2811456 -9.78452053]\n", + " [-32.27928073 -5.39809235]\n", + " [-32.27741587 -1.01166418]\n", + " [-32.29046994 -31.71666141]\n", + " [-27.90404176 -31.71852627]\n", + " [-23.51761359 -31.72039114]\n", + " [-19.13118541 -31.722256 ]\n", + " [-14.74475724 -31.72412087]\n", + " [-10.35832906 -31.72598574]\n", + " [ -5.97190089 -31.72785061]\n", + " [ -1.58547272 -31.72971547]\n", + " [-32.27741587 -1.01166418]\n", + " [-27.8909877 -1.01352905]\n", + " [-23.50455952 -1.01539391]\n", + " [-19.11813134 -1.01725878]\n", + " [-14.73170317 -1.01912365]\n", + " [-10.345275 -1.02098851]\n", + " [ -5.95884682 -1.02285338]\n", + " [ -1.57241864 -1.02471825]\n", + " [ -1.58547272 -31.72971547]\n", + " [ -1.58360785 -27.3432873 ]\n", + " [ -1.58174298 -22.95685912]\n", + " [ -1.57987811 -18.57043094]\n", + " [ -1.57801325 -14.18400278]\n", + " [ -1.57614838 -9.7975746 ]\n", + " [ -1.57428351 -5.41114642]\n", + " [ -1.57241864 -1.02471825]\n", + " [-32.27465685 -29.80416795]\n", + " [-32.27237127 -24.42816844]\n", + " [-32.2700857 -19.05216893]\n", + " [-32.26780012 -13.67616941]\n", + " [-32.26551454 -8.3001699 ]\n", + " [-32.26322896 -2.92417038]\n", + " [-30.37796373 -31.70247449]\n", + " [-25.00196422 -31.704760015505742]\n", + " [-14.26915838 -24.15738916]\n", + " [ -8.89315889 -24.1597209 ]\n", + " [ -3.51715939 -24.16205264]\n", + " [-30.39482512 -18.77439444]\n", + " [-25.01882563 -18.77672618]\n", + " [-19.64282613 -18.77905793]\n", + " [-14.26682664 -18.78138967]\n", + " [ -8.89082714 -18.78372141]\n", + " [ -3.51482765 -18.78605315]\n", + " [-30.39249338 -13.39839495]\n", + " [-25.01649389 -13.40072669]\n", + " [-19.64049439 -13.40305843]\n", + " [-14.2644949 -13.40539017]\n", + " [ -8.8884954 -13.40772191]\n", + " [ -3.51249591 -13.41005365]\n", + " [-30.39016163 -8.02239545]\n", + " [-25.01416214 -8.02472719]\n", + " [-19.63816265 -8.02705893]\n", + " [-14.26216315 -8.02939068]\n", + " [ -8.88616366 -8.03172242]\n", + " [ -3.51016417 -8.03405416]\n", + " [-30.3878299 -2.64639596]\n", + " [-25.01183041 -2.6487277 ]\n", + " [-19.63583091 -2.65105944]\n", + " [-14.25983141 -2.65339118]\n", + " [ -8.88383191 -2.65572292]\n", + " [ -3.50783243 -2.65805467]]\n", + "300000e+03 4.99999873e-01]\n", + " [ 2.62140000e+03 5.00000123e-01]\n", + " [ 2.97980000e+03 5.00000108e-01]\n", + " [ 3.33820000e+03 4.99999719e-01]\n", + " [ 3.69660000e+03 4.99999964e-01]\n", + " [ 4.05500000e+03 5.00000185e-01]\n", + " [ DEBUG:root:optics_fp: xyfp shape: (96, 2)\n", + "8]\n", + " [-19.62596471 -31.70704565]\n", + " [-14.24996519 -31.70933123]\n", + " [ -8.87396568 -31.71161681]\n", + " [ -3.49796617 -31.71390239]\n", + " [-30.36492242 -1.02747727]\n", + " [-24.98892291 -1.02976285]\n", + " [-19.61292339 -1.03204842]\n", + " [-14.23692388 -1.034334 ]\n", + " [ -8.86092437 -1.03661958]\n", + " [ -3.48492485 -1.03890516]\n", + " [ -1.59965962 -29.81720927]\n", + " [ -1.59737405 -24.44120975]\n", + " [ -1.59508847 -19.06521024]\n", + " [ -1.59280289 -13.68921073]\n", + " [ -1.59051731 -8.31321121]\n", + " [ -1.58823174 -2.9372117 ]\n", + " [-32.27546357 -31.70166778]\n", + " [-32.27546357 -31.70166778]\n", + " [ -1.58742502 -1.03971187]\n", + " [ -1.58742502 -1.03971187]\n", + " [-30.37715702 -29.80497466]\n", + " [-25.00115751 -29.80726024]\n", + " [-19.625158 -29.80954582]\n", + " [-14.24915848 -29.8118314 ]\n", + " [ -8.87315897 -29.81411698]\n", + " [ -3.49715945 -29.81640256]\n", + " [-30.37487145 -24.42897515]\n", + " [-24.99887193 -24.43126073]\n", + " [-19.62287241 -24.43354631]\n", + " [-14.2468729 -24.43583188]\n", + " [ -8.87087339 -24.43811746]\n", + " [ -3.49487388 -24.44040305]\n", + " [-30.37258587 -19.05297564]\n", + " [32.21058351 8.13492254]\n", + " [32.20878509 2.75892284]\n", + " [30.32091205 31.53705599]\n", + " [24.94491236 31.53885442]\n", + " [19.56891265 31.54065283]\n", + " [14.19291295 31.54245125]\n", + " [ 8.81691325 31.54424967]\n", + " [ 3.44091356 31.54604808]\n", + " [30.31065043 0.86205771]\n", + " [24.93465073 0.86385613]\n", + " [19.55865103 0.86565455]\n", + " [14.18265134 0.86745297]\n", + " [ 8.80665163 0.86925139]\n", + " [ 3.43065193 0.8710498 ]\n", + " [ 1.5427789 29.64918296]\n", + " [ 1.54098048 24.27318326]\n", + " [ 1.53918206 18.89718357]\n", + " [ 1.53738364 13.52118387]\n", + " [ 1.53558522 8.14518416]\n", + " [ 1.5337868 2.76918446]\n", + " [32.21841195 31.53642123]\n", + " [32.21841195 31.53642123]\n", + " [ 1.53315204 0.87168457]\n", + " [ 1.53315204 0.87168457]\n", + " [30.32027729 29.6395561 ]\n", + " [24.94427759 29.64135452]\n", + " [19.56827789 29.64315294]\n", + " [14.19227819 29.64495136]\n", + " [ 8.81627849 29.64674978]\n", + " [ 3.44027879 29.6485482 ]\n", + " [30.31847887 24.2635564 ]\n", + " [24.94247917 24.26535482]\n", + " [19.56647947 24.26715324]\n", + " [14.19047977 24.26895166]\n", + " [ 8.81448007 24.27075007]\n", + " [ 3.43848037 24.2725485 ]\n", + " [30.31668045 18.8875567 ]\n", + " [24.94068075 18.88935513]\n", + " [19.56468105 18.89115354]\n", + " [14.18868135 18.89295196]\n", + " [ 8.81268165 18.89475038]\n", + " [ 3.43668195 18.89654879]\n", + " [30.31488203 13.51155701]\n", + " [24.93888233 13.51335542]\n", + " [19.56288263 13.51515384]\n", + " [14.18688293 13.51695226]\n", + " [ 8.81088324 13.51875068]\n", + " [ 3.43488354 13.5205491 ]\n", + " [30.31308361 8.13555731]\n", + " [24.93708392 8.13735572]\n", + " [19.56108422 8.13915414]\n", + " [14.18508451 8.14095256]\n", + " [ 8.80908482 8.14275098]\n", + " [ 3.43308512 8.1445494 ]\n", + " [30.31128519 2.75955761]\n", + " [24.93528549 2.76135602]\n", + " [19.5592858 2.76315444]\n", + " [14.18328609 2.76495286]\n", + " [ 8.8072864 2.76675128]\n", + " [ 3.4312867 2.7685497 ]]\n", + "]\n", + " [-24.99658635 -19.05526122]\n", + " [-19.62058684 -19.05754679]\n", + " [-14.24458732 -19.05983237]\n", + " [ -8.86858781 -19.06211795]\n", + " [ -3.4925883 -19.06440353]\n", + " [-30.37030029 -13.67697612]\n", + " [-24.99430077 -13.6792617 ]\n", + " [-19.61830126 -13.68154728]\n", + " [-14.24230175 -13.68383286]\n", + " [ -8.86630223 -13.68611844]\n", + " [ -3.49030272 -13.68840401]\n", + " [-30.36801471 -8.30097661]\n", + " [-24.9920152 -8.30326219]\n", + " [-19.61601568 -8.30554776]\n", + " [-14.24001617 -8.30783335]\n", + " [ -8.86401666 -8.31011893]\n", + " [ -3.48801714 -8.3124045 ]\n", + " [-30.36572914 -2.9249771 ]\n", + " [-24.98972962 -2.92726267]\n", + " [-19.6137301 -2.92954825]\n", + " [-14.23773059 -2.93183383]\n", + " [ -8.86173108 -2.93411941]\n", + " [ -3.48573156 -2.93640499]]\n", + "DEBUG:root:optics_fp: rtanth: [44.94272969 42.00239064 39.33235561 36.99120283 35.04490673 33.56223174\n", + " 32.60648436 32.22458311 44.94272969 41.90992612 39.13459306 36.67522804\n", + " 34.59927513 32.97921831 31.88462562 31.37054947 32.22458311 27.83912196\n", + " 23.45402264 19.06953475 14.68620592 10.30551524 5.93330899 1.63895634\n", + " 31.37054947 26.99005818 22.61186898 18.23763988 13.87111779 9.5229103\n", + " 5.23882082 1.63895634 43.61980801 40.19015843 37.22381993 34.83933779\n", + " 33.16246218 32.30357703 43.58131788 40.02977818 36.92204987 34.37870189\n", + " 32.5323727 31.50584319 30.31278547 24.93826049 19.56454604 14.19256282\n", + " 8.82547273 3.48595044 29.4611953 24.09404931 18.73198196 13.38109994\n", + " 8.0637011 2.96571DEBUG:root:make_az_asym: xyp: shape: (96, 2)\n", + "DEBUG:root:cartToSphere: vec: [[0.20622014 0.20255556 0.95731108]\n", + " [0.20805053 0.17610143 0.96213474]\n", + " [0.20961035 0.14895462 0.96637261]\n", + " [0.210899 0.12122494 0.96996192]\n", + " [0.21191543 0.09302239 0.9728508 ]\n", + " [0.21265818 0.06445739 0.97499833]\n", + " [0.21312568 0.03564119 0.97637449]\n", + " [0.21331667 0.00668594 0.97696023]\n", + " [0.20622014 0.20255556 0.95731108]\n", + " [0.17982824 0.20441077 0.96222557]\n", + " [0.1527297 0.20600074 0.96655954]\n", + " [0.12503427 0.2073248 0.97024886]\n", + " [0.09685185 0.20838186 0.97324032]\n", + " [0.06829276 0.20917033 0.97549161]\n", + " [0.03946812 0.20968847 0.97697135]\n", + " [0.01049004 0.20993479 0.97765911]\n", + " [0.21331667 0.00668594 0.97696023]\n", + " [0.18597713 0.00675821 0.98253083]\n", + " [0.1579279 0.00682246 0.98742708]\n", + " [0.12927353 0.00687853 0.99158512]\n", + " [0.10011961 0.00692617 0.9949513 ]\n", + " [0.07057467 0.0069651 0.99748218]\n", + " [0.04075124 0.00699507 0.99914484]\n", + " [0.01076573 0.00701584 0.99991744]\n", + " [0.01049004 0.20993479 0.97765911]\n", + " [0.01056977 0.18250233 0.9831486 ]\n", + " [0.01063642 0.15437326 0.98795534]\n", + " [0.01068985 0.12565215 0.99201677]\n", + " [0.01072978 0.09644485 0.99528049]\n", + " [0.01075592 0.06686038 0.99770436]\n", + " [0.01076796 0.03701177 0.99925681]\n", + " [0.01076573 0.00701584 0.99991744]\n", + " [0.20696213 0.19112005 0.95949977]\n", + " [0.20902258 0.15821703 0.96502691]\n", + " [0.21067623 0.12438266 0.96961048]\n", + " [0.21192136 0.08981934 0.97315046]\n", + " [0.21275532 0.05473042 0.9755715 ]\n", + " [0.21317532 0.0193211 0.9768229 ]\n", + " [0.1948134 0.20330747 0.95953833]\n", + " [0.16197729 0.20540191 0.96518051]\n", + " [0.1281888 0.20709749 0.96988569]\n", + " [0.09365018 0.2083924 0.97355136]\n", + " [0.05856456 0.20928375 0.97609964]\n", + " [0.02313694 0.20976841 0.97747731]\n", + " [0.20149034 0.00681796 0.97946677]\n", + " [0.16749252 0.00690216 0.98584919]\n", + " [0.1325326 0.00697398 0.99115411]\n", + " [0.09680441 0.00703299 0.99527858]\n", + " [0.0605079 0.00707868 0.99814262]\n", + " [0.02385188 0.00711058 0.99969022]\n", + " [0.01062602 0.19806614 0.98013106]\n", + " [0.01071595 0.16396327 0.98640824]\n", + " [0.0107859 0.12891793 0.99159661]\n", + " [0.01083545 0.09312436 0.99559552]\n", + " [0.01086402 0.05678335 0.99832741]\n", + " [0.01087112 0.02010461 0.99973878]\n", + " [0.20613793 0.2024732 0.95734621]\n", + " [0.20613793 0.2024732 0.95734621]\n", + " [0.01086844 0.00711848 0.9999156 ]\n", + " [0.01086844 0.00711848 0.9999156 ]\n", + " [0.19558949 0.19190537 0.96172609]\n", + " [0.1626169 0.19387759 0.96745399]\n", + " [0.12869151 0.19547539 0.9722283 ]\n", + " [0.09401511 0.1966967 0.9759465 ]\n", + " [0.05879055 0.19753824 0.97853069]\n", + " [0.02322296 0.19799645 0.9799276 ]\n", + " [0.19753009 0.15886347 0.96733875]\n", + " [0.16421774 0.1604891 0.97328094]\n", + " [0.12995114 0.1618095 0.97822819]\n", + " [0.09493033 0.16282181 0.98207805]\n", + " [0.05935726 0.16352163 0.98475245]\n", + " [0.02343764 0.16390447 0.98619775]\n", + " [0.19908829 0.12488974 0.97199095]\n", + " [0.16550536 0.12616714 0.97810522]\n", + " [0.13096617 0.12720791 0.98319175]\n", + " [0.09566871 0.12800859 0.98714806]\n", + " [0.05981412 0.1285643 0.9898957 ]\n", + " [0.02360896 0.12887024 0.99138039]\n", + " [0.20026215 0.09018615 0.97558266]\n", + " [0.16647694 0.09111203 0.98182688]\n", + " [0.13173312 0.09186896 0.98701899]\n", + " [0.0962DEBUG:root:radec2pix: xyfp Shape: (96, 2)\n", + "DEBUG:root:make_az_asym: xyp: shape: (96, 2)\n", + "2682 0.09245358 0.99105637]\n", + " [0.06015857 0.0928614 0.99386 ]\n", + " [0.02373584 0.09308815 0.99537491]\n", + " [0.20104857 0.05495583 0.97803851]\n", + " [0.16712825 0.05552612 0.98437036]\n", + " [0.13224724 0.05599434 0.98963392]\n", + " [0.09660024 0.05635799 0.99372641]\n", + " [0.06038739 0.05661388 0.99656823]\n", + " [0.02381698 0.05675899 0.99810379]\n", + " [0.20144435 0.01940412 0.97930774]\n", + " [0.16745515 0.01961547 0.98568454]\n", + " [0.13250401 0.01979108 0.99098486]\n", + " [0.09678486 0.01992994 0.99510577]\n", + " [0.06049766 0.02003078 0.99796733]\n", + " [0.02385117 0.02009239 0.99951359]]\n", + "DEBUG:root:radec2pix: fitpx: [[4271.50000018 4155.50000017]\n", + " [4271.49999973 3863.07142834]\n", + " [4271.50000015 3570.64285725]\n", + " [4271.50000001 3278.21428572]\n", + " [4271.5000001 2985.78571433]\n", + " [4271.49999989 2693.35714282]\n", + " [4271.50000013 2400.92857145]\n", + " [4271.49999973 2108.49999999]\n", + " [4271.50000018 4155.50000017]\n", + " [3979.07142857 4155.5 ]\n", + " [3686.64285706 4155.49999989]\n", + " [3394.21428581 4155.50000016]\n", + " [3101.78571433 4155.50000009]\n", + " [2809.35714288 4155.50000006]\n", + " [2516.92857141 4155.49999991]\n", + " [2224.49999999 4155.49999972]\n", + " [4271.49999973 2108.49999999]\n", + " [3979.07142852 2108.5 ]\n", + " [3686.6428568 2108.49999999]\n", + " [3394.2142859 2108.50000001]\n", + " [3101.78571455 2108.50000001]\n", + " [2809.35714254 2108.49999998]\n", + " [2516.92857145 2108.5 ]\n", + " [2224.49999991 2108.49999996]\n", + " [2224.49999999 4155.49999972]\n", + " [2224.50000001 3863.07142866]\n", + " [2224.50000002 3570.64285748]\n", + " [2224.49999999 3278.21428555]\n", + " [2224.49999997 2985.78571404]\n", + " [2224.49999997 2693.35714267]\n", + " [2224.49999997 2400.92857132]\n", + " [2224.49999991 2108.49999996]\n", + " [4270.50000007 4028.00000007]\n", + " [4270.49999974 3669.5999998 ]\n", + " [4270.50000026 3311.20000015]\n", + " [4270.50000028 2952.80000012]\n", + " [4270.50000021 2594.40000005]\n", + " [4270.50000028 2236.00000002]\n", + " [4144.00000002 4154.50000002]\n", + " [3785.60000004 4154.50000005]\n", + " [3427.20000017 4154.50000027]\n", + " [3068.80000004 4154.50000009]\n", + " [2710.40000006 4154.50000023]\n", + " [2352. 4.9920518 ]\n", + " [ 0.12254563 -0.09052922 0.98832537]\n", + " [ 0.15752301 -0.08984197 0.98342001]\n", + " [ 0.1915915 -0.08898771 0.97743229]\n", + " [ 0.01421257 -0.05517797 0.99837538]\n", + " [ 0.05085809 -0.05508029 0.99718585]\n", + " [ 0.08720077 -0.05487388 0.99467828]\n", + " [ 0.12302951 -0.05456144 0.99090201]\n", + " [ 0.15814189 -0.05414617 0.9859307 ]\n", + " [ 0.1923426 -0.05363087 0.97986124]\n", + " [ 0.01424114 -0.01847933 0.99972782]\n", + " [ 0.05096003 -0.01844651 0.99853032]\n", + " [ 0.08737459 -0.01837718 0.996006 ]\n", + " [ 0.12327308 -0.0182723 0.99220455]\n", + " [ 0.15845303 -0.018133 0.9872 ]\n", + " [ 0.1927197 -0.01796031 0.98108947]]\n", + "DEBUG:root:optics_fp: rtanth: [45.12621722 42.17029986 39.48131725 37.11732942 35.14398081 33.63010767\n", + " 32.639706 32.22108294 45.12621722 42.10767167 39.34740219 36.90340926\n", + " 34.84231167 33.23542179 32.15091525 31.64254972 32.22108294 27.83664346\n", + " 23.45294788 19.07050919 14.69045227 10.31581149 5.95852807 1.75318507\n", + " 31.64254972 27.26187195 22.88339755 18.50869029 14.14124675 9.79079234\n", + " 5.49780688 1.75318507 43.79692971 40.34599343 37.35277865 34.93513576\n", + " 33.218972 32.31623807 43.77085556 40.23738319 37.14847194 34.62331124\n", + " 32.79239466 31.77595577 30.30982943 24.93681956 19.5654525 14.19759296\n", + " 8.839633 3.53685305 29.73311087 24.36567291 19.00307614 13.6510271\n", + " 8.32988182 3.19782325 45.10500496 45.10500496 1.7737717 1.7737717\n", + " 42.42166164 38.76540449 35.54881922 32.90111338 30.96854417 29.89014797\n", + " 38.84875172 34.81931533 31.19850449 28.14447363 25.85882561 24.55705763\n", + " 35.73032881 31.30200643 27.21722925 23.65464611 20.88324085 19.24785615\n", + " 33.19472902 28.37338973 23.79099004 19.61570597 16.16611847 13.98976784\n", + " 31.38353749 26.23138645 21.19074319 16.36497207 12.01581361 8.87411937\n", + " 30.4263959 25.07837271 19.74554986 14.44477252 9.23140937 4.4259617 ]\n", + "2.26300000e+03 2.04550000e+03]\n", + " [ 2.62140000e+03 2.04550000e+03]\n", + " [ 2.97980000e+03 2.04550000e+03]\n", + " [ 3.33820000e+03 2.04550000e+03]\n", + " [ 3.69660000e+03 2.04550000e+03]\n", + " [ 4.05500000e+03 2.04550000e+03]154.49999998]\n", + " [4144.00000024 2109.50000001]\n", + " [3785.60000024 2109.50000001]\n", + " [3427.20000038 2109.50000002]\n", + " [3068.80000022 2109.50000001]\n", + " [2710.3999999 2109.49999999]\n", + " [2352.00000033 2109.50000007]\n", + " [2225.50000001 4028.00000014]\n", + " [2225.5 3669.59999993]\n", + " [2225.49999997 3311.19999965]\n", + " [2225.50000003 2952.80000023]\n", + " [2225.50000001 2594.40000005]\n", + " [2225.50000007 2236.00000012]\n", + " [4270.50000014 4154.50000013]\n", + " [4270.50000014 4154.50000013]\n", + " [2225.5 2109.5 ]\n", + " [2225.5 2109.5 ]\n", + " [4143.99999977 4027.99999977]\n", + " [3785.60000006 4028.00000007]\n", + " [3427.19999985 4027.99999978]\n", + " [3068.80000002 4028.00000004]\n", + " [2710.40000003 4028.0000001 ]\n", + " [2351.99999998 4027.99999983]\n", + " [4143.99999989 3669.59999991]\n", + " [3785.59999992 3669.59999992]\n", + " [3427.20000008 3669.60000009]\n", + " [3068.80000009 3669.60000016]\n", + " [2710.40000007 3669.6000002 ]\n", + " [2352. 3669.60000003]\n", + " [4144.00000025 3311.20000016]\n", + " [3785.59999995 3311.19999996]\n", + " [3427.19999995 3311.19999995]\n", + " [3068.80000029 3311.20000039]\n", + " [2710.39999993 3311.19999986]\n", + " [2352.00000003 3311.20000016]\n", + " [4144.0000002 2952.80000009]\n", + " [3785.6000002 2952.80000011]\n", + " [3427.19999983 2952.79999988]\n", + " [3068.80000029 2952.80000027]\n", + " [2710.40000007 2952.8000001 ]\n", + " [2352.00000006 2952.80000022]\n", + " [4143.99999974 2594.39999993]\n", + " [3785.60000003 2594.40000001]\n", + " [3427.19999994 2594.39999997]\n", + " [3068.7999999 2594.39999994]\n", + " [2710.40000001 2594.40000001]\n", + " [2351.9999999 2594.39999976]\n", + " [4144.00000015 2236.00000001]\n", + " [3785.59999982 2235.99999998]\n", + " [3427.19999971 2235.99999996]\n", + " [3068.80000012 2236.00000002]\n", + " [2710.39999989 2235.99999997]\n", + " [2351.99999988 2235.99999991]]\n", + "DEBUG:root:radec2pix: xyfp: [[-32.29046994 -31.71666141]\n", + " [-32.28860507 -27.33023323]\n", + " [-32.2867402 -22.94380505]\n", + " [-32.28487534 -18.55737688]\n", + " [-32.28301047 -14.1709487 ]\n", + " [-32.2811456 -9.78452053]\n", + " [-32.27928073 -5.39809235]\n", + " [-32.27741587 -1.01166418]\n", + " [-32.29046994 -31.71666141]\n", + " [-27.90404176 -31.71852627]\n", + " [-23.51761359 -31.72039114]\n", + " [-19.13118541 -31.722256 DEBUG:root:radec2pix: lng: [270.30457564 270.35386432 270.42218515 270.52319877 270.68775016\n", + " 271.00328211 271.85358468 282.01764037 270.30457564 278.22825834\n", + " 285.84900373 292.93736432 299.35666656 305.05982707 310.06566745\n", + " 314.43133752 282.01764037 350.20239022 354.97318448 356.62297809\n", + " 357.45797758 357.96205284 358.29934604 358.54086611 314.43133752\n", + " 318.71792809 323.65121653 329.29806584 335.69036822 342.79553001\n", + " 350.4881795 358.54086611 270.35332309 270.43180131 270.55509491\n", + " 270.77692983 271.2940439 273.86646927 273.78050957 283.32620486\n", + " 292.17913267 300.04776463 306.84264375 312.61566094 338.92831161\n", + " 353.86519186 356.42636123 357.47985638 358.05382146 358.4148969\n", + " 316.21189934 321.89127155 328.61157088 336.44738638 345.33544633\n", + " 355.00144674 270.33202411 270.33202411 358.51232366 358.51232366\n", + " 274.02225895 284.14773214 293.45215101 301.61524642 308.56613427\n", + " 314.39418307 274.91171606 287.12189287 297.93167364 306.95425335\n", + " 314.25788847 320.11321977 276.3042009 291.604768DEBUG:root:radec2pix: lng: [44.48637088 40.24577336 35.3986005 29.89032997 23.69955042 16.86222735\n", + " 9.49377237 1.79522173 44.48637088 48.66063412 53.44662754 58.90649312\n", + " 65.0719071 71.9184746 79.34035003 87.13941954 1.79522173 2.08115239\n", + " 2.4736322 3.04578526 3.95735654 5.6363423 9.74006464 33.09159725\n", + " 87.13941954 86.68537287 86.05851166 85.13727473 83.65177634 80.86105503\n", + " 73.77851938 33.09159725 42.72105973 37.1234454 30.55748427 22.96885005\n", + " 14.42630836 5.17884001 46.22224274 51.74114431 58.24340245 65.80116251\n", + " 74.36661193 83.70585675 1.93801443 2.35975361 3.01217367 4.15532416\n", + " 6.6725739 16.60005947 86.92909007 86.26070822 85.21749379 83.36321455\n", + " 79.16883097 61.59868241 44.48614146 44.48614146 33.22349754 33.22349754\n", + " 44.45527608 50.01139871 56.64103308 64.45360362 73.42615136 83.31035484\n", + " 38.80796323 44.3420957 51.23163704 59.75644459 70.04944098 81.86211477\n", + " 32.10039047 37.31880048 44.16600061 53.22697224 65.04995068 79.6185637\n", + " 24.24396698 28.69167771 9 304.27729951\n", + " 314.04247307 321.39984571 326.97203004 278.79000558 298.99985673\n", + " 313.65088315 323.54527533 330.30207858 335.08673923 284.44409964\n", + " 312.71767267 327.81852787 336.08354959 341.09932037 344.41993917\n", + " 307.6197367 340.1007605 348.12231225 351.56865678 353.47160216\n", + " 354.67575821]\n", + "DEBUG:root:fitpix2pix: ccdpx: shape: (96, 2)\n", + "DEBUG:root:make_az_asym: xyp: [[-32.31281793 -31.43806373]\n", + " [-32.31091541 -27.05163558]\n", + " [-32.30901287 -22.66520742]\n", + " [-32.30711034 -18.27877926]\n", + " [-32.3052078 -13.8923511 ]\n", + " [-32.30330527 -9.50592294]\n", + " [-32.30140274 -5.11949478]\n", + " [-32.2995002 -0.73306663]\n", + " [-32.31281793 -31.43806373]\n", + " [-27.92638978 -31.43996627]\n", + " [-23.53996162 -31.4418688 ]\n", + " [-19.15353346 -31.44377134]\n", + " [-14.7671053 -31.44567387]\n", + " [-10.38067715 -31.44757641]\n", + " [ -5.99424899 -31.44947894]\n", + " [ -1.60782083 -31.45138147]\n", + " [-32.2995002 -0.73306663]\n", + " [-27.91307204 -0.73496916]\n", + " [-23.52664389 -0.73687169]\n", + " [-19.14021573 -0.73877423]\n", + " [-14.75378757 -0.74067676]\n", + " [-10.36735941 -0.74257929]\n", + " [ -5.98093125 -0.74448183]\n", + " [ -1.59450309 -0.74638436]\n", + " [ -1.60782083 -31.45138147]\n", + " [ -1.60591829 -27.06495331]\n", + " [ -1.60401576 -22.67852516]\n", + " [ -1.60211323 -18.292097 ]\n", + " [ -1.60021069 -13.90566884]\n", + " [ -1.59830816 -9.51924068]\n", + " [ -1.59640563 -5.13281252]\n", + " [ -1.59450309 -0.74638436]\n", + " [-32.29698843 -29.52557043]\n", + " [-32.29465669 -24.14957093]\n", + " [-32.29232495 -18.77357144]\n", + " [-32.2899932 -13.39757194]\n", + " [-32.28766146 -8.02157244]\n", + " [-32.28532972 -2.64557295]\n", + " [-30.40031161 -31.42389325]\n", + " [-25.02431212 -31.42622499]\n", + " [-19.64831262 -31.42855673]\n", + " [-14.27231313 -31.43088848]\n", + " [ -8.89631363 -31.43322022]\n", + " [ -3.52031414 -31.43555196]\n", + " [-30.38700689 -0.74889614]\n", + " [-25.01100739 -0.75122788]\n", + " [-19.6350079 -0.75355962]\n", + " [-14.25900841 -0.75589136]\n", + " [ -8.88300892 -0.7582231 ]\n", + " [ -3.50700942 -0.76055484]\n", + " [ -1.62199131 -29.53887515]\n", + " [ -1.61965957 -24.16287565]\n", + " [ -1.61732783 -18.78687616]\n", + " [ -1.61499609 -13.41087666]\n", + " [ -1.61266434 -8.03487716]\n", + " [ -1.6103326 -2.65887768]\n", + " [-32.DEBUG:root:radec2pix: lat: [77.96328192 79.56853071 81.20563621 82.86944579 84.55492216 86.25697831\n", + " 87.97026012 89.68446141 77.96328192 77.84499787 77.51456239 76.99218852\n", + " 76.30618444 75.48813083 74.56921129 73.5781677 89.68446141 88.18737722\n", + " 86.48534608 84.7856574 83.09971795 81.43388184 79.79360686 78.18420142\n", + " 73.5781677 74.59165918 75.53717808 76.38588844 77.10603256 77.66476376\n", + " 78.03174302 78.18420142 78.65888684 80.64836049 82.6805387 84.74610355\n", + " 86.83565024 88.93857815 77.94403081 77.65435125 77.06482717 76.22448951\n", + " 75.19110028 74.0211233 89.125335 87.06142445 84.97647052 82.91045242\n", + " 80.87550158 78.88161748 74.03033777 75.2306137 76.3004884 77.18265224\n", + " 77.81700171 78.15051889 77.96868077 77.96868077 78.18950618 78.18950618\n", + " 78.63240168 78.32169564 77.69220555 76.80049546 75.71119975 74.48541744\n", + " 80.6152305 80.22940153 79.46186211 78.40069669 77.13562878 75.74187621\n", + " 82.63719517 82.13946169 81.18123393 79.90730671 78.44079679 76.86879929\n", + " 84.68476231 84.0024055453 44.92151855 44.92151855 1.65858428 1.65858428\n", + " 42.23832489 38.56329813 35.32679703 32.65945447 30.7099348 29.62031359\n", + " 38.68639649 34.63652908 30.99264061 27.91417471 25.60588368 24.28835443\n", + " 35.59496044 31.14567519 27.03530484 23.44280455 20.64037826 18.98125646\n", + " 33.09332103 28.25278341 23.64475409 19.43532283 15.94339684 13.72788346\n", + " 31.32311186 26.15701072 21.09606209 16.23887967 11.83897557 8.62694755\n", + " 30.41232527 25.05915804 19.71841847 14.40393713 9.16152467 4.26572571]\n", + " ]\n", + " [-14.74475724 -31.72412087]\n", + " [-10.35832906 -31.72598574]\n", + " [ -5.97190089 -31.72785061]\n", + " [ -1.58547272 -31.72971547]\n", + " [-32.27741587 -1.01166418]\n", + " [-27.8909877 -1.01352905]\n", + " [-23.50455952 -1.01539391]\n", + " [-19.11813134 -1.01725878]\n", + " [-14.73170317 -1.01912365]\n", + " [-10.345275 -1.02098851]\n", + " [ -5.95884682 -1.02285338]\n", + " [ -1.57241864 -1.02471825]\n", + " [ -1.58547272 -31.72971547]\n", + " [ -1.58360785 -27.3432873 ]\n", + " [ -1.58174298 -22.95685912]\n", + " [ -1.57987811 -18.57043094]\n", + " [ -1.57801325 -14.18400278]\n", + " [ -1.57614838 -9.7975746 ]\n", + " [ -1.57428351 -5.41114642]\n", + " [ -1.57241864 -1.02471825]\n", + " [-32.27465685 -29.80416795]\n", + " [-32.27237127 -24.42816844]\n", + " [-32.2700857 -19.05216893]\n", + " [-32.26780012 -13.67616941]\n", + " [-32.26551454 -8.3001699 ]\n", + " [-32.26322896 -2.92417038]\n", + " [-30.37796373 -31.70247449]\n", + " [-25.00196422 -31.70476008]\n", + " [-19.62596471 -31.70704565]\n", + " [-14.24996519 -31.70933123]\n", + " [ -8.87396568 -31.71161681]\n", + " [ -3.49796617 -31.71390239]\n", + " [-30.36492242 -1.02747727]\n", + " [-24.98892291 -1.02976285]\n", + " [-19.61292339 -1.03204842]\n", + " [-14.23692388 -1.034334 ]\n", + " [ -8.86092437 -1.03661958]\n", + " [ -3.48492485 -1.03890516]\n", + " [ -1.59965962 -29.81720927]\n", + " [ -1.59737405 -24.44120975]\n", + " [ -1.59508847 -19.06521024]\n", + " [ -1.59280289 -13.68921073]\n", + " [ -1.59051731 -8.31321121]\n", + " [ -1.58823174 -2.9372117 ]\n", + " [-32.27546357 -31.70166778]\n", + " [-32.27546357 -31.70166778]\n", + " [ -1.58742502 -1.03971187]\n", + " [ -1.58742502 -1.03971187]\n", + " [-30.37715702 -29.80497466]\n", + " [-25.00115751 -29.80726024]\n", + " [-19.625158 -29.80954582]\n", + " [-14.24915848 -29.8118314 DEBUG:root:radec2pix: xyfp: [[32.23341696 31.55141621]\n", + " [32.23194958 27.16498788]\n", + " [32.2304822 22.77855956]\n", + " [32.22901483 18.39213124]\n", + " [32.22754745 14.00570291]\n", + " [32.22608007 9.61927458]\n", + " [32.22461269 5.23284626]\n", + " [32.2231453 0.84641793]\n", + " [32.23341696 31.55141621]\n", + " [27.84698864 31.5528836 ]\n", + " [23.46056031 31.55435097]\n", + " [19.07413198 31.55581835]\n", + " [14.68770366 31.55728573]\n", + " [10.30127533 31.55875311]\n", + " [ 5.91484701 31.56022049]\n", + " [ 1.52841868 31.56168787]\n", + " [32.2231453 0.84641793]\n", + " [27.83671698 0.84788531]\n", + " [23.45028865 0.84935269]\n", + " [19.06386033 0.85082007]\n", + " [14.677432 0.85228745]\n", + " [10.29100367 0.85375483]\n", + " [ 5.90457535 0.85522221]\n", + " [ 1.51814702 0.85668959]\n", + " [ 1.52841868 31.56168787]\n", + " [ 1.5269513 27.17525955]\n", + " [ 1.52548392 22.78883122]\n", + " [ 1.52401654 18.4024029 ]\n", + " [ 1.52254916 14.01597457]\n", + " [ 1.52108178 9.62954624]\n", + " [ 1.5196144 5.24311792]\n", + " [ 1.51814702 0.85668959]\n", + " [32.21777718 29.63892134]\n", + " [32.21597876 24.26292164]\n", + " [32.21418034 18.88692194]\n", + " [32.21238193 13.51092224]\n", + " 82.77130238 81.23639689 79.55203729 77.80444657\n", + " 86.73357497 85.70054621 84.08633958 82.26535796 80.37757677 78.48177609\n", + " 88.66315983 86.89328024 84.87745159 82.8411917 80.82286686 78.83968928]\n", + "DEBUG:root:optics_fp: cphi: [0.713738 0.76376784 0.81578691 0.86774466 0.91646952 0.95772545\n", + " 0.98678686 0.99960811 0.713738 0.66073156 0.59560321 0.51618565\n", + " 0.42082689 0.3091928 0.18318995 0.04750869 0.99960811 0.99947492\n", + " 0.99926025 0.99888104 0.99811368 0.99617106 0.98847974 0.85755676\n", + " 0.04750869 0.05514364 0.06569574 0.08122479 0.10631221 0.15355346\n", + " 0.27346048 0.85755676 0.73505851 0.79793137 0.86187328 0.92151896\n", + " 0.96912745 0.99620029 0.69214539 0.6193195 0.5260996 0.40919818\n", + " 0.26810473 0.10749625 0.99954227 0.99932373 0.99890128 0.99791251\n", + " 0.99460641 0.9658178 0.05106448 0.06231447 0.07990085 0.11122898\n", + " 0.18228563 0.4748373 0.71374111 0.71374111 0.85606035 0.85606035\n", + " 0.71415887 0.64283622 0.5497737 0.43061783 0.28389471 0.11427866\n", + " 0.7798406 0.71568995 0.62643496 0.503DEBUG:root:fitpix2pix: visCut: True\n", + "29781143 -31.42307024]\n", + " [-32.29781143 -31.42307024]\n", + " [ -1.60950959 -0.76137785]\n", + " [ -1.60950959 -0.76137785]\n", + " [-30.3994886 -29.52639343]\n", + " [-25.02348911 -29.52872517]\n", + " [-19.64748962 -29.53105692]\n", + " [-14.27149012 -29.53338866]\n", + " [ -8.89549063 -29.5357204 ]\n", + " [ -3.51949113 -29.53805214]\n", + " [-30.39715686 -24.15039394]\n", + " [-25.02115737 -24.15272568]\n", + " [-19.64515788 -24.15505742]\n", + " [-14.26915838 -24.15738916]\n", + " [ -8.89315889 -24.1597209 ]\n", + " [ -3.51715939 -24.16205264]\n", + " [-30.39482512 -18.77439444]\n", + " [-25.01882563 -18.77672618]\n", + " [-19.64282613 -18.77905793]\n", + " [-14.26682664 -18.78138967]\n", + " [ -8.89082714 -18.78372141]\n", + " [ -3.51482765 -18.78605315]\n", + " [-30.39249338 -13.39839495]\n", + " [-25.01649389 -13.40072669]\n", + " [-19.64049439 -13.40305843]\n", + " [-14.2644949 -13.40539017]\n", + " [ -8.8884954 -13.40772191]\n", + " [ -3.51249591 -13.41005365]\n", + " [-30.39016163 -8.02239545]\n", + " [-25.01416214 -8.02472719]\n", + " [-19.63816265 -8.02705893]\n", + " [-14.26216315 -8.02939068]\n", + " [ -8.88616366 -8.03172242]\n", + " [ -3.51016417 -8.03405416]\n", + " [-30.3878299 -2.64639596]\n", + " [-25.01183041 -2.6487277 ]\n", + " [-19.63583091 -2.65105944]\n", + " [-14.25983141 -2.65339118]\n", + " [ -8.88383191 -2.65572292]\n", + " [ -3.50783243 -2.65805467]]\n", + "\n", + " [ 4.18150000e+03 1.27000000e+02]\n", + " [ 4.18150000e+03 4.85400000e+02]\n", + " [ 4.18150000e+03 8.43800000e+02]\n", + " [ 4.18150000e+03 1.20220000e+03]\n", + " [ 4.18150000e+03 1.56060000e+03]\n", + " [ 4.18150000e+03 1.91900000e+03]\n", + " [ 2.13650000e+03 4.99999853e-01]\n", + " [ 2.13650000e+03 4.99999853e-01]\n", + " [ 4.18150000e+03 2.04550000e+03]\n", + " [ 4.18150000e+03 2.04550000e+03]\n", + " [ 2.26300000e+03 1.27000000e+02]\n", + " [ 2.62140000e+03 1.27000000e+02]\n", + " [ 2.97980000e+03 1.27000000e+02]\n", + " [ 3.33820000e+03 1.27000000e+02]\n", + " [ 3.69660000e+03 1.27000000e+02]\n", + " [ 4.05500000e+03 1.27000000e+02]\n", + " [ 2.26300000e+03 4.85400000e+02]\n", + " [ 2.62140000e+03 4.85400000e+02]\n", + " [ 2.97980000e+03 4.85400000e+02]\n", + " [ 3.33820000e+03 4.85400000e+02]\n", + " [ 3.69660000e+03 4.85400000e+02]\n", + " [ 4.05500000e+03 4.85400000e+02]\n", + " [ 2.26300000e+03 8.43800000e+02]\n", + " [ 34.89141577 43.85434751 57.06355174 75.69539259\n", + " 15.28811193 18.37837592 22.94811312 30.25991115 43.15274514 67.23630391\n", + " 5.50203766 6.68110194 8.4950185 11.63570463 18.3197087 40.11102427]\n", + "2.62140000e+03 8.43800000e+02]\n", + " [ 2.97980000e+03 8.43800000e+02]\n", + " [ 3.33820000e+03 8.43800000e+02]\n", + " [ 3.69660000e+03 8.43800000e+02]\n", + " [ 4.05500000e+03 8.43800000e+02]\n", + " [ 2.26300000e+03 1.20220000e+03]\n", + " [ 2.62140000e+03 1.20220000e+03]\n", + " [ 2.97980000e+03 1.20220000e+03]\n", + " [ 3.33820000e+03 1.20220000e+03]\n", + " [ 3.69660000e+03 1.20220000e+03]\n", + " [ 4.05500000e+03 1.20220000e+03]\n", + " [ 2.26300000e+03 1.56060000e+03]\n", + " [ 2.62140000e+03 1.56060000e+03]\n", + " [ 2.97980000e+03 1.56060000e+03]\n", + " [ 3.33820000e+03 1.56060000e+03]\n", + " [ 3.69660000e+03 1.56060000e+03]\n", + " [ 4.05500000e+03 1.56060000e+03]\n", + " [ 2.26300000e+03 1.91900000e+03]\n", + " [ 2.62140000e+03 1.91900000e+03]\n", + " [ 2.97980000e+03 1.91900000e+03]\n", + " [ 3.33820000e+03 1.91900000e+03]\n", + " [ 3.69660000e+03 1.91900000e+03]\n", + " [ 4.05500000e+03 1.91900000e+03]]\n", + "DEBUG:root:mm_to_pix: fitpx: [[0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]]\n", + "39666 0.33999355 0.13909785\n", + " 0.84790325 0.79611069 0.71806949 0.59894626 0.42100084 0.17746713\n", + " 0.9126717 0.87828385 0.82148283 0.72227275 0.54384668 0.24417059\n", + " 0.96534426 0.95000384 0.92228562 0.86574653 0.73169559 0.38493034\n", + " 0.9957126 0.99368273 0.9897899 0.98083551 0.95239474 0.77179741]\n", + "DEBUG:root:make_az_asym: xyp: shape: (96, 2)\n", + "DEBUG:root:mm_to_pix: fitpx.shape: (96, 2)\n", + " [32.21058351 8.13492254]\n", + " [32.20878509 2.75892284]\n", + " [30.32091205 31.53705599]\n", + " [24.94491236 31.53885442]\n", + " [19.56891265 31.54065283]\n", + " [14.19291295 31.54245125]\n", + " [ 8.81691325 31.54424967]\n", + " [ 3.44091356 31.54604808]\n", + " [30.31065043 0.86205771]\n", + " [24.93465073 0.86385613]\n", + " [19.55865103 0.86565455]\n", + " [14.18265134 0.86745297]\n", + " [ 8.80665163 0.86925139]\n", + " [ 3.43065193 0.8710498 ]\n", + " [ 1.5427789 29.64918296]\n", + " [ 1.54098048 24.27318326]\n", + " [ 1.53918206 18.89718357]\n", + " [ 1.53738364 13.52118387]\n", + " [ 1.53558522 8.14518416]\n", + " [ 1.5337868 2.76918446]\n", + " [32.21841195 31.53642123]\n", + " [32.21841195 31.53642123]\n", + " [ 1.53315204 0.87168457]\n", + " [ 1.53315204 0.87168457]\n", + " [30.32027729 29.6395561 ]\n", + " [24.94427759 29.64135452]\n", + " [19.56827789 29.64315294]\n", + " [14.19227819 29.64495136]\n", + " [ 8.81627849 29.64674978]\n", + " [ 3.44027879 29.6485482 ]\n", + " [30.31847887 24.2635564 ]\n", + " [24.94247917 24.26535482]\n", + " [19.56647947 24.26715324]\n", + " [14.19047977 24.26895166]\n", + " [ 8.81448007 24.27075007]\n", + " [ 3.43848037 24.2725485 ]\n", + " [30.31668045 18.8875567 ]\n", + " [24.94068075 18.88935513]\n", + " [19.56468105 18.89115354]\n", + " [14.18868135 18.89295196]\n", + " [ 8.81268165 18.89475038]\n", + " [ 3.43668195 18.89654879]\n", + " [30.31488203 13.51155701]\n", + " [24.93888233 13.51335542]\n", + " [19.56288263 13.51515384]\n", + " [14.18688293 13.51695226]\n", + " [ 8.81088324 13.51875068]\n", + " [ 3.43488354 13.5205491 ]\n", + " [30.31308361 8.13555731]\n", + " [24.93708392 8.13735572]\n", + " [19.56108422 8.13915414]\n", + " [14.18508451 8.14095256]\n", + " [ 8.80908482 8.14275098]\n", + " [ 3.43308512 8.1445494 ]\n", + " [30.31128519 2.75955761]\n", + " [24.93528549 2.76135602]\n", + " [19.5592858 2.76315444]\n", + " [14.18328609 2.76495286]\n", + " [ 8.8072864 2.76675128]\n", + " [ 3.4312867 2.7685497 ]]\n", + "]\n", + " [ -8.87315897 -29.81411698]\n", + " [ -3.49715945 -29.81640256]\n", + " [-30.37487145 -24.42897515]\n", + " [-24.99887193 -24.43126073]\n", + " [-19.62287241 -24.43354631]\n", + " [-14.2468729 -24.43583188]\n", + " [ -8.87087339 -24.43811746]\n", + " [ -3.49487388 -24.44040305]\n", + " [-30.37258587 -19.05297564]\n", + " [-24.99658635 -19.05526122]\n", + " [-19.62058684 -19.05754679]\n", + " [-14.24458732 -19.05983237]\n", + " [ -8.86858781 -19.06211795]\n", + " [ -3.4925883 -19.06440353]\n", + " [-30.37030029 -13.67697612]\n", + " [-24.99430077 -13.6792617 ]\n", + " [-19.61830126 -13.68154728]\n", + " [-14.24230175 -13.68383286]\n", + " [ -8.86630223 -13.68611844]\n", + " [ -3.49030272 -13.68840401]\n", + " [-30.36801471 -8.30097661]\n", + " [-24.9920152 -8.30326219]\n", + " [-19.61601568 -8.30554776]\n", + " [-14.24001617 -8.30783335]\n", + " [ -8.86401666 -8.31011893]\n", + " [ -3.48801714 -8.3124045 ]\n", + " [-30.36572914 -2.9249771 ]\n", + " [-24.98972962 -2.92726267]\n", + " [-19.6137301 -2.92954825]\n", + " [-14.23773059 -2.93183383]\n", + " [ -8.86173108 -2.93411941]\n", + " [ -3.48573156 -2.93640499]]\n", + "DEBUG:root:fitpix2pix: ccdpx: shape: (96, 2)\n", + "DEBUG:root:optics_fp: cphi: [-0.7172644 -0.76741791 -0.81945139 -0.87124824 -0.91956549 -0.96011654\n", + " -0.98818444 -0.99982014DEBUG:root:radec2pix: xyfp Shape: (96, 2)\n", + "DEBUG:root:fitpix2pix: visCut: True\n", + " -0.7172644 -0.66450587 -0.59954537 -0.52014772\n", + " -0.4245785 -0.31242949 -0.18558325 -0.04879815 -0.99982014 -0.99975708\n", + " -0.99965502 -0.99947397 -0.99910595 -0.99816919 -0.99442317 -0.92363168\n", + " -0.04879815 -0.05662794 -0.06748483 -0.0835374 -0.10965891 -0.1594742\n", + " -0.28942109 -0.92363168 -0.73864972 -0.80160861 -0.86540808 -0.92455295\n", + " -0.97121348 -0.99694372 -0.69578694 -0.62321886 -0.53007115 -0.41291013\n", + " -0.27109351 -0.10929135 -0.99978591 -0.99968066 -0.99947617 -0.99899494\n", + " -0.99737425 -0.98288834 -0.05243384 -0.06399014 -0.08214824 -0.11477511\n", + " -0.19009076 -0.51584618 -0.71726898 -0.71726898 -0.92175016 -0.92175016\n", + " -0.71788499 -0.64689125 -0.55397779 -0.43461417 -0.2871469 -0.11621293\n", + " -0.78371934 -0.72014369 -0.63135242 -0.50838973 -0.34426777 -0.14160207\n", + " -0.85170189 -0.80076273 -0.72365733 -0.60523038 -0.42694461 -0.18103644\n", + " -0.91599489 -0.8826498 -0.8273004 -0.72987289 -0.55253697 -0.25009805\n", + " -0.96766665 -0.95325615 -0.92710821 -0.87335662 -0.74384256 -0.39763019\n", + " -0.99654822 -0.99489972 -0.99173015 -0.984408 -0.96090466 -0.80346296]\n", + "DEBUG:root:radec2pix: xyfp Shape: (96, 2)\n", + "DEBUG:root:optics_fp: rtanth: [31.49183295 27.10547639 22.71914763 18.33286663 13.94667845 9.56071086\n", + " 5.17552468 0.80400903 31.49183295 31.81893962 32.73584893 34.19514883\n", + " 36.13117923 38.47203574 41.14868729 44.10003298 0.80400903 4.62123428\n", + " 8.97478096 13.34987234 17.73056686 22.11353481 26.49764807 30.88241889\n", + " 44.10003298 41.08265104 38.3306279 35.90503258 33.87605653 32.31848632\n", + " 31.30277019 30.88241889 29.57945042 24.20357534 18.8277716 13.45212473\n", + " 8.07694792 2.70504492 31.5450314 32.34738816 33.9914811 36.36331677\n", + " 39.33145785 42.7719429 2.22895212 7.49884938 12.85690509 18.22553229\n", + " 23.59751677 28.97099101 42.74447401 39.21682332 36.14735337 33.66163739\n", + " 31.89644588 30.97520686 31.47691651 31.47691651 30.86780955 30.86780955\n", + " 29.6519244 30.50411668 32.24233865 34.73382242 37.83003027 41.39549146\n", + " 24.29209321 25.32528987 27.39411567 30.28708623 33.79319995 37.74196451\n", + " 18.94142858 20.24949953 22.78397459 26.19121067 30.17701587 34.5416822\n", + " 13.61074549 15.37910619 18.5898944 22.63745111 27.1500822 31.93121491\n", + " 8.33845435 10.99064764 15.16118736 19.91812291 24.9279841 30.06459569\n", + " 3.40734519 7.92934524 13.11265734 18.40684115 23.73782997 29.08539314]\n", + "DEBUG:root:optics_fp: sphi: [0.70041278 0.64549104 0.5783526 0.49701026 0.40010451 0.28768378\n", + " 0.16202376 0.02799345 0.70041278 0.75062228 0.80327879 0.85647672\n", + " 0.90714096 0.95099938 0.98307754 0.99887082 0.02799345 0.03240177\n", + " 0.03845716 0.04729349 0.06139281 0.08742554 0.15135324 0.51438935\n", + " 0.99887082 0.99847843 0.9978397 0.99669581 0.9943328 0.98814034\n", + " 0.96188324 0.51438935 0.67800368 0.60274831 0.5071237 0.38833338\n", + " 0.24656029 0.0870918 0.7217581 0.78513907 0.85042296 0.91244553\n", + " 0.96338977 0.99420549 0.03025321 0.03677059 0.04686391 0.06458036\n", + " 0.10372123 0.25922188 0.99869536 0.99805657 0.99680282 0.9937948\n", + " 0.98324562 0.8800736 0.70040962 0.70040962 0.51687588 0.51687588\n", + " 0.69998365 0.76600365 0.83531364 0.90253437 0.95885546 0.99344873\n", + " 0.62597814 0.69841814 0.77947369 0.86405544 0.94042777 0.99027864\n", + " 0.530151 0.60515103 0.69597142 0.80078922 0.90706025 0.98412673\n", + " 0.40869348 0.47813961 0.57023325 0.69160833 0.8391846 0.9697323\n", + " 0.2609798 0.31223822 0.38650903 0.50048271 0.68163155 0.92294563\n", + " 0.09250092 0.11222584 0.14253407 0.19483765 0.3048676 0.63586851]\n", + "DEBUG:root:optics_fp: sphi: [-0.69680111 -0.64114722 -0.57314869 -0.49084265 -0.39293677 -0.27960013\n", + " -0.15326941 -0.01896529 -0.69680111 -0.74728304 -0.80034077 -0.85407631\n", + " -0.90539113 -0.94994095 -0.98262854 -0.99880866 -0.01896529 -0.02204027\n", + " -0.02626479 -0.03243122 -0.04227651 -0.06048361 -0.10546358 -0.38328124\n", + " -0.99880866 -0.99839535 -0.9977203 -0.99650464 -0.99396928 -0.9872021\n", + " -0.95720188 -0.38328124 -0.67408945 -0.59784918 -0.50106771 -0.3810536\n", + " -0.23821077 -0.07812313 -0.71824824 -0.78204748 -0.84795317 -0.91077177\n", + " -0.96255302 -0.99400976 -0.02069125 -0.02527007 -0.03236333 -0.04482319\n", + " -0.07241971 -0.18420237 -0.9986244 -0.99795053 -0.99662012 -0.9933915\n", + " -0.98176652 -0.85668122 -0.6967964 -0.6967964 -0.38778427 -0.38778427\n", + " -0.69616172 -0.76258227 -0.83253145 -0.90061674 -0.95788656 -0.99322432\n", + " -0.62111512 -0.69382495 -0.77549605 -0.8611271 -0.93887151 -0.98992366\n", + " -0.52402662 -0.59898168 -0.69015945 -0.79605037 -0.90427778 -0.98347639\n", + " -0.40118994 -0.4700312 -0.56175978 -0.68358289 -0.83348839 -0.96822051\n", + " -0.25223255 -0.30216337 -0.37479377 -0.48708132 -0.66835488 -0.91754577\n", + " -0.08301599 -0.10086897 -0.12834059 -0.17590022 -0.27687945 -0.59535474]\n", + "DEBUG:root:radec2pix: xyfp: [[-32.208296 -31.60697943]\n", + " [-32.20831882 -27.22055086]\n", + " [-32.20834163 -22.83412229]\n", + " [-32.20836444 -18.44769372]\n", + " [-32.20838725 -14.06126515]\n", + " [-32.20841007 -9.67483658]\n", + " [-32.20843288 -5.288408 ]\n", + " [-32.2084557 -0.90197943]\n", + " [-32.208296 -31.60697943]\n", + " [-27.82186743 -31.60695662]\n", + " [-23.43543886 -31.60693381]\n", + " [-19.04901029 -31.60691099]\n", + " [-14.66258171 -31.60688818]\n", + " [-10.27615314 -31.60686536]\n", + " [ -5.88972457 -31.60684255]\n", + " [ -1.503296 -31.60681974]\n", + " [-32.2084557 -0.90197943]\n", + " [-27.82202712 -0.90195662]\n", + " [-23.43559855 -0.9019338 ]\n", + " [-19.04916999 -0.90191099]\n", + " [-14.66274141 -0.90188818]\n", + " [-10.27631284 -0.90186536]\n", + " [ -5.88988428 -0.90184255]\n", + " [ -1.5034557 -0.90181973]\n", + " [ -1.503296 -31.60681974]\n", + " [ -1.50331881 -27.22039116]\n", + " [ -1.50334163 -22.83396259]\n", + " [ -1.50336444 -18.44753402]\n", + " [ -1.50338726 -14.06110544]\n", + " [ -1.50341007 -9.67467688]\n", + " [ -1.50343288 -5.2882483 ]\n", + " [ -1.5034557 -0.90181973]\n", + " [-32.19330594 -29.69447935]\n", + " [-32.19333391 -24.31847935]\n", + " [-32.19336187 -18.94247936]\n", + " [-32.19338983 -13.56647936]\n", + " [-32.19341779 -8.19047935]\n", + " [-32.19344575 -2.81447935]\n", + " [-30.29579608 -31.59196949]\n", + " [-24.91979608 -31.59194152]\n", + " [-19.54379608 -31.59191356]\n", + " [-14.16779608 -31.5918856 ]\n", + " [ -8.79179608 -31.59185764]\n", + " [ -3.41579608 -31.59182968]\n", + " [-30.29595562DEBUG:root:optics_fp: cphi: [0.00531582 0.00617606 0.00736845 0.00913141 0.01200322 0.01750968\n", + " 0.03234551 0.20821284 0.00531582 0.14311708 0.27310311 0.3897246\n", + " 0.4902447 0.57443147 0.64366516 0.70005401 0.20821284 0.985415\n", + " 0.9961538 0.99826353 0.99901596 0.99936749 0.99955952 0.99967574\n", + " 0.70005401 0.75147061 0.80542393 0.85983504 0.91133409 0.95525529\n", + " 0.98625153 0.99967574 0.00616661 0.00753628 0.00968808 0.01355957\n", + " 0.02258341 0.06743141 0.06593447 0.23049481 0.37750356 0.50072179\n", + " 0.5996194 0.67707715 0.93313131 0.9942732 0.99805551 0.99903282\n", + " 0.99942317 0.99961734 0.72190396 0.78684101 0.853656 0.91669352\n", + " 0.96742456 0.9961969 0.00579488 0.00579488 0.99966293 0.99966293\n", + " 0.07014401 0.24442291 0.39798307 0.52421253 0.62341756 0.6995908\n", + " 0.08562066 0.29440551 0.4684183 0.60117718 0.69788907 0.76731313\n", + " 0.10980719 0.36820194 0.56319871 0.69519142 0.78151879 0.83840459\n", + " 0.15281345 0.48480743 0.69026239 0.80432664 0.86864949 0.90694654\n", + " 0.24943532 0.67838632 0.84636544 0.9141376 0.94608152 0.96325609\n", + " 0.61041805 0.94029264 0.97858921 0.98919227 0.99351563 0.99568553]\n", + "DEBUG:root:mm_to_pix: fitpx: [[0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]]\n", + "DEBUG:rooDEBUG:root:mm_to_pix: fitpx.shape: (96, 2)\n", + "t:radec2pix: lat: [73.19833089 74.18249103 75.09922688 75.92116023 76.61853688 77.16100123\n", + " 77.52079342 77.67706772 73.19833089 74.20159367 75.14093371 75.98890558\n", + " 76.71531245 77.28881429 77.68005228 77.86611976 77.67706772 79.27473553\n", + " 80.90480881 82.56181915 84.24016258 85.93331116 87.63030205 89.26372814\n", + " 77.86611976 79.46663016 81.09832556 82.755367 84.43126132 86.11695715\n", + " 87.79091006 89.26372814 73.63774563 74.80227565 75.83862014 76.69292614\n", + " 77.3096353 77.64025349 73.64559076 74.835883 75.90321746 76.7930912\n", + " 77.44812351 77.8166633 78.36913095 80.34967761 82.37343442 84.43012843\n", + " 86.50734673 88.57380626 78.55945528 80.5426681 82.56690719 84.62047016\n", + " 86.68569475 88.69035885 73.20529527 73.20529527 89.25558432 89.25558432\n", + " 74.09681811 75.34210951 76.46528549 77.40781255 78.10603298 78.5008319\n", + " 75.3160395 76.72544415 78.02222799 79.13621749 79.98176995 80.46955109\n", + " 76.40729948 77.98832745 79.48016045 80.80422916 81.84813181 82.4DEBUG:root:mm_to_pix: fitpx: [[0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]]\n", + "7175257\n", + " 77.31254652 79.06012758 80.75806605 82.3313541 83.64750757 84.48728684\n", + " 77.96997446 79.85669547 81.74302972 83.57869755 85.2518859 86.47101417\n", + " 78.32402093 80.29356392 82.30071175 84.32903186 86.34620527 88.21286949]\n", + " -0.91696949]\n", + " [-24.91995562 -0.91694153]\n", + " [-19.54395562 -0.91691356]\n", + " [-14.16795562 -0.9168856 ]\n", + " [ -8.79195562 -0.91685764]\n", + " [ -3.41595563 -0.91682968]\n", + " [ -1.51830595 -29.69431981]\n", + " [ -1.51833391 -24.31831981]\n", + " [ -1.51836187 -18.94231981]\n", + " [ -1.51838983 -13.56631981]\n", + " [ -1.51841779 -8.19031981]\n", + " [ -1.51844575 -2.81431982]\n", + " [-32.19329608 -31.59197936]\n", + " [-32.19329608 -31.59197936]\n", + " [ -1.51845562 -0.91681981]\n", + " [ -1.51845562 -0.91681981]\n", + " [-30.29580595 -29.69446949]\n", + " [-24.91980594 -29.69444152]\n", + " [-19.54380595 -29.69441356]\n", + " [-14.16780595 -29.69438561]\n", + " [ -8.79180595 -29.69435764]\n", + " [ -3.41580595 -29.69432968]\n", + " [-30.29583391 -24.31846949]\n", + " [-24.91983391 -24.31844152]\n", + " [-19.54383391 -24.31841356]\n", + " [-14.16783391 -24.31838561]\n", + " [ -8.79183391 -24.31835764]\n", + " [ -3.41583391 -24.31832968]\n", + " [-30.29586187 -18.94246949]\n", + " [-24.91986187 -18.94244153]\n", + " [-19.54386187 -18.942DEBUG:root:radec2pix: xyfp: [[-32.31281793 -31.43806373]\n", + " [-32.31091541 -27.05163558]\n", + " [-32.30901287 -22.66520742]\n", + " [-32.30711034 -18.27877926]\n", + " [-32.3052078 -13.8923511 ]\n", + " [-32.30330527 -9.50592294]\n", + " [-32.30140274 -5.11949478]\n", + " [-32.2995002 -0.73306663]\n", + " [-32.31281793 -31.43806373]\n", + " [-27.92638978 -31.43996627]\n", + " [-23.53996162 -31.4418688 ]\n", + " [-19.15353346 -31.44377134]\n", + " [-14.7671053 -31.44567387]\n", + " [-10.38067715 -31.44757641]\n", + " [ -5.99424899 -31.44947894]\n", + " [ -1.60782083 -31.45138147]\n", + " [-32.2995002 -0.73306663]\n", + " [-27.91307204 -0.73496916]\n", + " [-23.52664389 -0.73687169]\n", + " [-19.14021573 -0.73877423]\n", + " [-14.75378757 -0.74067676]\n", + " [-10.36735941 -0.74257929]\n", + " [ -5.98093125 -0.74448183]\n", + " [ -1.59450309 -0.74638436]\n", + " [ -1.60782083 -31.45138147]\n", + " [ -1.60591829 -27.06495331]\n", + " [ -1.60401576 -22.67852516]\n", + " [ -1.60211323 -18.292097 ]\n", + " [ -1.60021069 -13.90566884]\n", + " [ -1.59830816 -9.51924068]\n", + " [ -1.59640563 -5.13281252]\n", + " [ -1.59450309 -0.74638436]\n", + " [-32.29698843 -29.52557043]\n", + " [-32.29465669 -24.14957093]\n", + " [-32.29232495 -18.77357144]\n", + " [-32.2899932 -13.39757194]\n", + " [-32.28766146 -8.02157244]\n", + " [-32.28532972 -2.64557295]\n", + " [-30.40031161 -31.42389325]\n", + " [-25.02431212 -31.42622499]\n", + " [-19.64831262 -31.42855673]\n", + " [-14.27231313 -31.43088848]\n", + " [ -8.89631363 -31.43322022]\n", + " [ -3.52031414 -31.43555196]\n", + " [-30.38700689 -0.74889614]\n", + " [-25.01100739 -0.75122788]\n", + " [-19.6350079 -0.75355962]\n", + " [-14.25900841 -0.75589136]\n", + " [ -8.88300892 -0.7582231 ]\n", + " [ -3.50700942 -0.76055484]\n", + " [ -1.62199131 -29.53887515]\n", + " [ -1.61965957 -24.16287565]\n", + " [ -1.61732783 -18.78687616]\n", + " [ -1.61499609 -13.41087666]\n", + " [ -1.61266434 -8.03487716]\n", + " [ -1.6103326 -2.65887768]\n", + " [-32.29781143 -31.42307024]\n", + " [-32.29781143 -31.42307024]\n", + " [ -1.60950959 -0.76137785]\n", + " [ -1.60950959 -0.76137785]\n", + " [-30.3994886 -29.52639343]\n", + " [-25.02348911 -29.52872517]\n", + " [-19.64748962 -29.53105692]\n", + " [-14.27149012 -29.53338866]\n", + " [ -8.89549063 -29.5357204 ]\n", + " [ -3.51949113 -29.53805214]\n", + " [-30.39715686 -24.15039394]\n", + " [-25.02115737 -24.15272568]\n", + " [-19.64515788 -24.15505742]\n", + " [-14.26915838 -24.15738916]\n", + " [ -8.89315889 -24.1597209 ]\n", + " [ -3.51715939 -24.16205264]\n", + " [-30.39482512 -18.77439444]\n", + " [-25.01882563 -18.77672618]\n", + " [-19.64282613 -18.77905793]\n", + " [-14.26682664 -18.78138967]\n", + " [ -8.89082714 -18.78372141]\n", + " [ -3.51482765 -18.78605315]\n", + " [-30.39249338 -13.39839495]\n", + " [-25.01649389 -13.40072669]\n", + " [-19.64049439 -13.40305843]\n", + " [-14.2644949 -13.40539017]\n", + " [ -8.8884954 -13.40772191]\n", + " [ -3.51249591 -13.41005365]\n", + " [-30.39016163 -8.02239545]\n", + " [-25.01416214 -8.02472719]\n", + " [-19.63816265 -8.02705893]\n", + " [-14.26216315 -8.02939068]\n", + " [ -8.88616366 -8.03172242]\n", + " [ -3.51016417 -8.03405416]\n", + " [-30.3878299 -2.64639596]\n", + " [-25.01183041 -2.6487277 ]\n", + " [-19.63583091 -2.65105944]\n", + " [-14.25983141 -2.65339118]\n", + " [ -8.88383191 -2.65572292]\n", + " [ -3.50783243 -2.65805467]]\n", + "DEBUG:root:optics_fp: sphi: [-0.99998587 -0.99998093 -0.99997285 -0.99995831 -0.99992796 -0.99984669\n", + " -0.99947675 -0.97808354 -0.99998587 -0.98970577 -0.96198477 -0.92093145\n", + " -0.87158484 DEBUG:root:optics_fp: xyfp: [[32.2358199 31.31614388]\n", + " [32.23338667 26.92971599]\n", + " [32.23095344 22.54328809]\n", + " [32.2285202 18.15686019]\n", + " [32.22608698 13.7704323 ]\n", + " [32.22365375 9.3840044 ]\n", + " [32.22122051 4.99757651]\n", + " [32.21878728 0.61114861]\n", + " [32.2358199 31.31614388]\n", + " [27.849392 31.31857712]\n", + " [23.46296411 31.32101035]\n", + " [19.07653621 31.32344358]\n", + " [14.69010831 31.3258768 ]\n", + " [10.30368042 31.32831004]\n", + " [ 5.91725252 31.33074327]\n", + " [ 1.53082462 31.3331765 ]\n", + " [32.21878728 0.61114861]\n", + " [27.83235938 0.61358184]\n", + " [23.44593149 0.61601507]\n", + " [19.0595036 0.6184483 ]\n", + " [14.6730757 0.62088153]\n", + " [10.2866478 0.62331476]\n", + " [ 5.90021991 0.625748 ]\n", + " [ 1.513792 0.62818122]\n", + " [ 1.53082462 31.3331765 ]\n", + " [ 1.52839139 26.94674861]\n", + " [ 1.52595816 22.5603207 ]\n", + " [ 1.52352493 18.17389281]\n", + " [ 1.5210917 13.78746492]\n", + " [ 1.51865847 9.40103702]\n", + " [ 1.51622524 5.01460912]\n", + " [ 1.513792 0.62818122]\n", + " [32.219759 29.4036525 ]\n", + " [32.21677684 24.02765333]\n", + " [32.21379467 18.65165415]\n", + " [32.21081251 13.27565498]\n", + " [32.20783035 7.89965581]\n", + " [32.20484818 2.52365664]\n", + " [30.32331188 31.30220479]\n", + " [24.9473127 31.30518695]\n", + " [19.57131353 31.30816912]\n", + " [14.19531435 31.31115127]\n", + " [ 8.81931518 31.31413344]\n", + " [ 3.44331601 31.3171156 ]\n", + " [30.3062959 0.62720951]\n", + " [24.93029672 0.63019167]\n", + " [19.55429755 0.63317383]\n", + " [14.17829838 0.636156 ]\n", + " [ 8.80229921 0.63913816]\n", + " [ 3.42630004 0.64212033]\n", + " [ 1.54476372 29.42066847]\n", + " [ 1.54178156 24.0446693 ]\n", + " [ 1.53879939 18.66867013]\n", + " [ 1.53581723 13.29267096]\n", + " [ 1.53283507 7.91667178]\n", + " [ 1.5298529 2.54067261]\n", + " [32.22081158 31.30115221]\n", + " [32.22081158 31.30115221]\n", + " [ 1.52880032 0.6431729 ]\n", + " [ 1.52880032 0.6431729 ]\n", + " [30.32225929 29.40470508]\n", + " [24.94626012 29.40768724]\n", + " [19.57026095 29.41066941]\n", + " [14.19426178 29.41365157]\n", + " [ 8.8182626 29.41663373]\n", + " [ 3.44226343 29.4196159 ]\n", + " [30.31927713 24.02870591]\n", + " [24.94327796 24.03168807]\n", + " [19.56727878 24.03467023]\n", + " [14.19127961 24.0376524 ]\n", + " [ 8.81528044 24.04063456]\n", + " [ 3.43928127 24.04361672]\n", + " [30.31629496 18.65270673]\n", + " DEBUG:root:mm_to_pix: fitpx.shape: (96, 2)\n", + "[24.9402958 18.6556889 ]\n", + " [19.56429662 18.65867106]\n", + " [14.18829744 18.66165322]\n", + " [ 8.81229827 18.66463538]\n", + " [ 3.4362991 18.66761755]\n", + " [30.31331281 13.27670756]\n", + " [24.93731363 13.27968972]\n", + " [19.56131446 13.28267189]\n", + " [14.18531529 13.28565406]\n", + " [ 8.80931611 13.28863621]\n", + " [ 3.43331694 13.29161838]\n", + " [30.31033064 7.90070839]\n", + " [24.93433147 7.90369055]\n", + " [19.55833229 7.90667271]\n", + " [14.18233312 7.90965488]\n", + " [ 8.80633395 7.91263704]\n", + " [ 3.43033477 7.9156192 ]\n", + " [30.30734847 2.52470921]\n", + " [24.9313493 2.52769138]\n", + " [19.55535013 2.53067354]\n", + " [14.17935096 2.53365571]\n", + " [ 8.80335178 2.53663787]\n", + " [ 3.42735261 2.53962004]]\n", + "41356]\n", + " [-14.16786187 -18.94238561]\n", + " [ -8.79186187 -18.94235764]\n", + " [ -3.41586187 -18.94232969]\n", + " [-30.29588983 -13.56646949]\n", + " [-24.91988983 -13.56644152]\n", + " [-19.54388984 -13.56641357]\n", + " [-14.16788983 -13.5663856 ]\n", + " [ -8.79188983 -13.56635764]\n", + " [ -3.41588983 -13.56632968]\n", + " [-30.29591779 -8.19046949]\n", + " [-24.91991779 -8.19044152]\n", + " [-19.5439DEBUG:root:radec2pix: xyfp: [[-32.29046994 -31.71666141]\n", + " [-32.28860507 -27.33023323]\n", + " [-32.2867402 -22.94380505]\n", + " [-32.28487534 -18.55737688]\n", + " [-32.28301047 -14.1709487 ]\n", + " [-32.2811456 -9.78452053]\n", + " [-32.27928073 -5.39809235]\n", + " [-32.27741587 -1.01166418]\n", + " [-32.29046994 -31.71666141]\n", + " [-27.90404176 -31.71852627]\n", + " [-23.51761359 -31.72039114]\n", + " [-19.13118541 -31.722256 ]\n", + " [-14.74475724 -31.72412087]\n", + " [-10.35832906 -31.72598574]\n", + " [ -5.97190089 -31.72785061]\n", + " [ -1.58547272 -31.72971547]\n", + " [-32.27741587 -1.01166418]\n", + " [-27.8909877 -1.01352905]\n", + " [-23.50455952 -1.01539391]\n", + " [-19.11813134 -1.01725878]\n", + " [-14.73170317 -1.01912365]\n", + " [-10.345275 -1.02098851]\n", + " [ -5.95884682 -1.02285338]\n", + " [ -1.57241864 -1.02471825]\n", + " [ -1.58547272 -31.72971547]\n", + " [ -1.58360785 -27.3432873 ]\n", + " [ -1.58174298 -22.95685912]\n", + " [ -1.57987811 -18.57043094]\n", + " [ -1.57801325 -14.18400278]\n", + " [ -1.57614838 -9.7975746 ]\n", + " [ -1.57428351 -5.41114642]\n", + " [ -1.57241864 -1.02471825]\n", + " [-32.27465685 -29.80416795]\n", + " [-32.27237127 -24.42816844]\n", + " [-32.2700857 -19.05216893]\n", + " [-32.26780012 -13.67616941]\n", + " [-32.26551454 -8.3001699 ]\n", + " [-32.26322896 -2.92417038]\n", + " [-30.37796373 -31.70247449]\n", + " [-25.00196422 -31.70476008]\n", + " [-19.62596471 -31.70704565]\n", + " [-14.24996519 -31.70933123]\n", + " [ -8.87396568 -31.71161681]\n", + " [ -3.49796617 -31.71390239]\n", + " [-30.36492242 -1.02747727]\n", + " [-24.98892291 -1.02976285]\n", + " [-19.61292339 -1.03204842]\n", + " [-14.23692388 -1.034334 ]\n", + " [ -8.86092437 -1.03661958]\n", + " [ -3.48492485 -1.03890516]\n", + " [ -1.59965962 -29.81720927]\n", + " [ -1.59737405 -24.44120975]\n", + " [ -1.59508847 -19.06521024]\n", + " [ -1.59280289 -13.68921073]\n", + " [ -1.59051731 -8.31321121]\n", + " [ -1.58823174 -2.9372117 ]\n", + " [-32.27546357 -31.70166778]\n", + " [-32.27546357 -31.70166778]\n", + " [ -1.58742502 -1.03971187]\n", + " [ -1.58742502 -1.03971187]\n", + " [-30.37715702 -29.80497466]\n", + " [-25.00115751 -29.80726024]\n", + " [-19.625158 -29.80954582]\n", + " [-14.24915848 -29.8118314 ]\n", + " [ -8.87315897 -29.81411698]\n", + " [ -3.49715945 -29.81640256]\n", + " [-30.37487145 -24.42897515]\n", + " [-24.99887193 -24.43126073]\n", + "DEBUG:root:radec2pix: xyfp: [[32.23341696 31.55141621]\n", + " [32.23194958 27.16498788]\n", + " [32.2304822 22.77855956]\n", + " [32.22901483 18.39213124]\n", + " [32.22754745 14.00570291]\n", + " [32.22608007 9.61927458]\n", + " [32.22461269 5.23284626]\n", + " [32.2231453 0.84641793]\n", + " [32.23341696 31.55141621]\n", + " [27.84698864 31.5528836 ]\n", + " [23.46056031 31.55435097]\n", + " [19.07413198 31.55581835]\n", + " [14.68770366 31.55728573]\n", + " [10.30127533 31.55875311]\n", + " [ 5.91484701 31.56022049]\n", + " [ 1.52841868 31.56168787]\n", + " [32.2231453 0.84641793]\n", + " [27.83671698 0.84788531]\n", + " [23.45028865 0.84935269]\n", + " [19.06386033 0.85082007]\n", + " [14.677432 0.85228745]\n", + " [10.29100367 0.85375483]\n", + " [ 5.90457535 0.85522221]\n", + " [ 1.51814702 0.85668959]\n", + " [ 1.52841868 31.56168787]\n", + " [ 1.5269513 27.17525955]\n", + " [ 1.52548392 22.78883122]\n", + " [ 1.52401654 18.4024029 ]\n", + " [ 1.52254916 14.01597457]\n", + " [ 1.52108178 9.62954624]\n", + " [ 1.5196144 5.24311792]\n", + " [ 1.51814702 0.85668959]\n", + " [32.21777718 29.63892134]\n", + " [32.21597876 24.26292164]\n", + " [32.21418034 18.88692194]\n", + " [32.21238193 13.51092224]\n", + " [-19.62287241 -24.43354631]\n", + " [-14.2468729 -24.43583188]\n", + " [ -8.87087339 -24.43811746]\n", + " [ -3.49487388 -24.44040305]\n", + " [-30.37258587 -19.05297564]\n", + " [-24.99658635 -19.05526122]\n", + " [-19.62058684 -19.05754679]\n", + " [-14.24458732 -19.05983237]\n", + " [ -8.86858781 -19.06211795]\n", + " [ -3.4925883 -19.06440353]\n", + " [-30.37030029 -13.67697612]\n", + " [-24.99430077 -13.6792617 ]\n", + " [-19.61830126 -13.68154728]\n", + " [-14.24230175 -13.68383286]\n", + " [ -8.86630223 -13.68611844]\n", + " [ -3.49030272 -13.68840401]\n", + " [-30.36801471 -8.30097661]\n", + " [-24.9920152 -8.30326219]\n", + " [-19.61601568 -8.30554776]\n", + " [-14.24001617 -8.30783335]\n", + " [ -8.86401666 -8.31011893]\n", + " [ -3.48801714 -8.3124045 ]\n", + " [-30.36572914 -2.9249771 ]\n", + " [-24.98972962 -2.92726267]\n", + " [-19.6137301 -2.92954825]\n", + " [-14.23773059 -2.93183383]\n", + " [ -8.86173108 -2.93411941]\n", + " [ -3.48573156 -2.93640499]]\n", + " [32.21058351 8.13492254]\n", + " [32.20878509 2.75892284]\n", + " [30.32091205 31.53705599]\n", + " [24.94491236 31.53885442]\n", + " [19.56891265 31.54065283]\n", + " [14.19291295 31.54245125]\n", + " [ 8.81691325 31.54424967-0.81855268 -0.76530723 -0.7140899 -0.97808354 -0.17016839\n", + " -0.08762197 -0.05890603 -0.04435211 -0.03556139 -0.02967765 -0.02546394\n", + " -0.7140899 -0.65976656 -0.59269916 -0.51057194 -0.41166757 -0.29578258\n", + " -0.16525108 -0.02546394 -0.99998099 -0.9999716 -0.99995307 -0.99990806\n", + " -0.99974496 -0.99772391 -0.99782396 -0.97307356 -0.92600813 -0.86560828\n", + " -0.80028531 -0.73591205 -0.35953576 -0.10686813 -0.06233133 -0.04397062\n", + " -0.03396069 -0.02766174 -0.69199326 -0.61715575 -0.52083725 -0.39959102\n", + " -0.25315949 -0.08713059 -0.99998321 -0.99998321 -0.02596193 -0.02596193\n", + " -0.99753688 -0.96966873 -0.91739276 -0.85158747 -0.78188909 -0.71454371\n", + " -0.99632781 -0.95568059 -0.88350682 -0.79911576 -0.71620587 -0.64127261\n", + " -0.99395291 -0.92974584 -0.8263215 -0.71882466 -0.6238817 -0.54504838\n", + " -0.98825505 -0.87462092 -0.72355914 -0.59418739 -0.49542716 -0.42124573\n", + " -0.96839146 -0.73470538 -0.53260261 -0.40540407 -0.32392864 -0.26858462\n", + " -0.79207942 -0.34036707 -0.20582312 -0.14662418 -0.11369565 -0.09279187]\n", + "DEBUG:root:optics_fp: xyfp shape: (96, 2)\n", + "]\n", + " [ 3.44091356 31.54604808]\n", + " [30.31065043 0.86205771]\n", + " [24.93465073 0.86385613]\n", + " [19.55865103 0.86565455]\n", + " [14.18265134 0.86745297]\n", + " [ 8.80665163 0.86925139]\n", + " [ 3.43065193 0.8710498 ]\n", + " [ 1.5427789 29.64918296]\n", + " [ 1.54098048 24.27318326]\n", + " [ 1.53918206 18.89718357]\n", + " [ 1.53738364 13.52118387]\n", + " [ 1.53558522 8.14518416]\n", + " [ 1.5337868 2.76918446]\n", + " [32.21841195 31.53642123]\n", + " [32.21841195 31.53642123]\n", + " [ 1.53315204 0.87168457]\n", + " [ 1.53315204 0.87168457]\n", + " [30.32027729 29.6395561 ]\n", + " [24.94427759 29.64135452]\n", + " [19.56827789 29.64315294]\n", + " [14.19227819 29.64495136]\n", + " [ 8.81627849 29.64674978]\n", + " [ 3.44027879 29.6485482 ]\n", + " [30.31847887 24.2635564 ]\n", + " [24.94247917 24.26535482]\n", + " [19.56647947 24.26715324]\n", + " [14.19047977 24.26895166]\n", + " [ 8.81448007 24.27075007]\n", + " [ 3.43848037 24.2725485 ]\n", + " [30.31668045 18.8875567 ]\n", + " [24.94068075 18.88935513]\n", + " [19.56468105 18.89115354]\n", + " [14.18868135 18.89295196]\n", + " [ 8.81268165 18.89475038]\n", + " [ 3.43668195 18.89654879]\n", + " DEBUG:root:optics_fp: xyfp: [[-32.208296 -31.60697943]\n", + " [-32.20831882 -27.22055086]\n", + " [-32.20834163 -22.83412229]\n", + " [-32.20836444 -18.44769372]\n", + " [-32.20838725 -14.06126515]\n", + " [-32.20841007 -9.67483658]\n", + " [-32.20843288 -5.288408 ]\n", + " [-32.2084557 -0.90197943]\n", + " [-32.208296 -31.60697943]\n", + " [-27.82186743 -31.60695662]\n", + " [-23.43543886 -31.60693381]\n", + " [-19.04901029 -31.60691099]\n", + " [-14.66258171 -31.60688818]\n", + " [-10.27615314 -31.60686536]\n", + " [ -5.88972457 -31.60684255]\n", + " [ -1.503296 -31.60681974]\n", + " [-32.2084557 -0.90197943]\n", + " [-27.82202712 -0.90195662]\n", + " [-23.43559855 -0.9019338 ]\n", + " [-19.04916999 -0.90191099]\n", + " [-14.66274141 -0.90188818]\n", + " [-10.27631284 -0.90186536]\n", + " [ -5.88988428 -0.90184255]\n", + " [ -1.5034557 -0.90181973]\n", + " [ -1.503296 -31.60681974]\n", + " [ -1.50331881 -27.22039116]\n", + " [ -1.50334163 -22.83396259]\n", + " [ -1.50336444 -18.44753402]\n", + " [ -1.50338726 -14.06110544]\n", + " [ -1.50341007 -9.67467688]\n", + " [ -1.50343288 -5.2882483 ]\n", + " [ -1.5034557 -0.90181973]\n", + " [-32.19330594 -29.69447935]\n", + " [-32.19333391 -24.31847935]\n", + " [-32.19336187 -18.94247936]\n", + " [-32.19338983 -13.56647936]\n", + " [-32.19341779 -8.19047935]\n", + " [-32.19344575 -2.81447935]\n", + " [-30.29579608 -31.59196949]\n", + " [-24.91979608 -31.59194152]\n", + " [-19.54379608 -31.59191356]\n", + " [-14.16779608 -31.5918856 ]\n", + " [ -8.79179608 -31.59185764]\n", + " [ -3.41579608 -31.59182968]\n", + " [-30.29595562 -0.91696949]\n", + " [-24.91995562 -0.91694153]\n", + " [-19.54395562 -0.91691356]\n", + " [-14.16795562 -0.9168856 ]\n", + " [ -8.79195562 -0.91685764]\n", + " [ -3.41595563 -0.91682968]\n", + " [ -1.51830595 -29.69431981]\n", + " [ -1.51833391 -24.31831981]\n", + " [ -1.51836187 -18.94231981]\n", + " [ -1.51838983 -13.56631981]\n", + " [ -1.51841779 -8.19031981]\n", + " [ -1.51844575 -2.81431982]\n", + " [-32.19329608 -31.59197936]\n", + " [-32.19329608 -31.59197936]\n", + " [ -1.51845562 -0.91681981]\n", + " [ -1.51845562 -0.91681981]\n", + " [-30.29580595 -29.69446949]\n", + " [-24.91980594 -29.69444152]\n", + " [-19.54380595 -29.69441356]\n", + " [-14.16780595 -29.69438561]\n", + " [ -8.79180595 -29.69435764]\n", + " [ -3.41580595 -29.69432968]\n", + " [-30.29583391 -24.31846949]\n", + " [-24.91983391 -24.31844152]\n", + "DEBUG:root:radec2pix: curVec: [[ 2.40876660e-02 -4.72769522e-01 8.80856835e-01]\n", + " [ 3.21305141e-02 -4.96133162e-01 8.67651725e-01]\n", + " [ 4.03076282e-02 -5.19559218e-01 8.53483166e-01]\n", + " [ 4.85850150e-02 -5.42932788e-01 8.38369539e-01]\n", + " [ 5.69290779e-02 -5.66144181e-01 8.22338036e-01]\n", + " [ 6.53061121e-02 -5.89087647e-01 8.05425885e-01]\n", + " [ 7.36821381e-02 -6.11661148e-01 7.87681143e-01]\n", + " [ 8.20230708e-02 -6.33767069e-01 7.69162868e-01]\n", + " [ 2.40876660e-02 -4.72769522e-01 8.80856835e-01]\n", + " [-3.69684333e-03 -4.80293538e-01 8.77100023e-01]\n", + " [-3.13615854e-02 -4.87473669e-01 8.72574280e-01]\n", + " [-5.87977347e-02 -4.94289913e-01 8.67306352e-01]\n", + " [-8.58965823e-02 -5.00729224e-01 8.61331540e-01]\n", + " [-1.12549278e-01 -5.06785888e-01 8.54693351e-01]\n", + " [-1.38646113e-01 -5.12461836e-01 8.47443285e-01]\n", + " [-1.64075595e-01 -5.17766795e-01 8.39640843e-01]\n", + " [ 8.20230708e-02 -6.33767069e-01 7.69162868e-01]\n", + " [ 5.32401811e-02 -6.41419075e-01 7.65341135e-01]\n", + " [ 2.45027590e-02 -6.48472640e-01 7.60843512e-01]\n", + " [-4.07487018e-03 -6.54908071e-01 7.55697568e-01]\n", + " [-3.23809216e-02 -6.60713814e-01 7.49939152e-01]\n", + " [-6.03067706e-02 -6.65886256e-01 7.43611853e-01]\n", + " [-8.77464618e-02 -6.70429296e-01 7.36766664e-01]\n", + " [-1.14595096e-01 -6.74353830e-01 7.29462046e-01]\n", + " [-1.64075595e-01 -5.17766795e-01 8.39640843e-01]\n", + " [-1.58001429e-01 -5.40554739e-01 8.26338988e-01]\n", + " [-1.51538461e-01 -5.63391927e-01 8.12173400e-01]\n", + " [-1.44722912e-01 -5.86158131e-01 7.97166183e-01]\n", + " [-1.37588792e-01 -6.08740479e-01 7.81347780e-01]\n", + " [-1.30168493e-01 -6.31032771e-01 7.64757351e-01]\n", + " [-1.22493519e-01 -6.52935088e-01 7.47443047e-01]\n", + " [-1.14595096e-01 -6.74353830e-01 7.29462046e-01]\n", + " [ 2.74801839e-02 -4.82967237e-01 8.75207111e-01]\n", + " [ 3.74311924e-02 -5.11658800e-01 8.58372983e-01]\n", + " [ 4.75501965e-02 -5.40329231e-01 8.40109101e-01]\n", + " [ 5.77752214e-02 -5.68774522e-01 8.20461801e-01]\n", + " [ 6.80442048e-02 -5.96799963e-01 7.99499713e-01]\n", + " [ 7.82945340e-02 -6.24219483e-01 7.77315897e-01]\n", + " [ 1.19926063e-02 -4.76170491e-0DEBUG:root:optics_fp: rtanth: [45.26169529 42.30243097 39.60873368 37.23827886 35.25632641 33.73142753\n", + " 32.72753223 32.29326616 45.26169529 42.24571523 39.48748363 37.04461879\n", + " 34.98324901 33.37413897 32.28498264 31.76930229 32.29326616 27.90939691\n", + " 23.52648174 19.14517593 14.76691204 10.39553425 6.04599739 1.87684519\n", + " 31.76930229 27.38910685 23.01128618 18.63751379 14.2715122 9.92354331\n", + " 5.63550123 1.87684519 43.93110404 40.47519439 37.47457234 35.04637691\n", + " 33.3160059 32.39547369 43.90748877 40.37685013 37.28961296 34.76410785\n", + " 32.92983309 31.90622779 30.38230115 25.01013154 19.64005824 14.27444739\n", + " 8.9213542 3.63648527 29.86008841 24.49335294 19.13182032 13.78156419\n", + " 8.46399587 3.33911555 45.24048285 45.24048285 1.89760875 1.89760875\n", + " 42.55711672 38.90412112 35.68971629 33.042152 31.10650288 30.02079255\n", + " 38.97957981 34.95468636 31.33776168 28.28574318 25.99834571 24.68901465\n", + " 35.85400749 31.43139051 27.35246822 23.7946523 21.02418109 19.38168349\n", + " 33.30787918 28.49275823 23.91782767 19.75070735 16.30708904 14.12638019\n", + " 31.48209857 26.3352423 21.30188242 16.48630206 12.15026205 9.01456223\n", + " 30.50627799 25.16059326 19.83130509 14.53645837 9.33484517 4.55771859]\n", + "1 8.79271199e-01]\n", + " [-2.19943550e-02 -4.85163656e-01 8.74146713e-01]\n", + " [-5.56933119e-02 -4.93619464e-01 8.67892896e-01]\n", + " [-8.89040785e-02 -5.01510989e-01 8.60571202e-01]\n", + " [-1.21426185e-01 -5.08827743e-01 8.52261702e-01]\n", + " [-1.53056965e-01 -5.15576523e-01 8.43062521e-01]\n", + " [ 6.94470113e-02 -6.37100674e-01 7.67645650e-01]\n", + " [ 3.41868856e-02 -6.46079554e-01 7.62504076e-01]\n", + " [-8.91072504e-04 -6.54139243e-01 7.56373623e-01]\n", + " [-3.55799514e-02 -6.61255081e-01 7.49316878e-01]\n", + " [-6.96797228e-02 -6.67420364e-01 7.41414050e-01]\n", + " [-1.02995878e-01 -6.72645192e-01 7.32762099e-01]\n", + " [-1.61391267e-01 -5.27671168e-01 8.33976017e-01]\n", + " [-1.53679287e-01 -5.55649763e-01 8.17089969e-01]\n", + " [-1.45419740e-01 -5.83581999e-01 7.98927500e-01]\n", + " [-1.36676135e-01 -6.11257066e-01 7.79541168e-01]\n", + " [-1.27508186e-01DEBUG:root:radec2pix: xyfp Shape: (96, 2)\n", + "DEBUG:root:radec2pix: curVec: [[-0.59854987 0.62067191 0.50646267]\n", + " [-0.61932222 0.60419401 0.50138767]\n", + " [-0.64009296 0.58699773 0.49569614]\n", + " [-0.66074169 0.56912397 0.4894061 ]\n", + " [-0.68115759 0.55062016 0.48253681]\n", + " [-0.70123839 0.53154069 0.47510969]\n", + " [-0.72088972 0.51194703 0.46714907]\n", + " [-0.74002494 0.49190764 0.45868286]\n", + " [-0.59854987 0.62067191 0.50646267]\n", + " [-0.60137422 0.63553946 0.48418864]\n", + " [-0.60393393 0.65016642 0.46102867]\n", + " [-0.6061775 0.66446997 0.43706807]\n", + " [-0.60806332 0.67837354 0.41239343]\n", + " [-0.609559 0.69180641 0.38709393]\n", + " [-0.61064072 0.70470379 0.36126234]\n", + " [-0.61129282 0.7170071 0.33499539]\n", + " [-0.74002494 0.49190764 0.45868286]\n", + " [-0.74450829 0.50627983 0.43518747]\n", + " [-0.7484879 0.52053896 0.41085892]\n", + " [-0.75191407 0.53460516 0.38577526]\n", + " [-0.75474479 0.54840367 0.36001905]\n", + " [-0.75694579 0.56186435 0.33367877]\n", + " [-0.75849092 0.5749218 0.30684923]\n", + " [-0.7593625 0.58751594 0.2796312 ]\n", + " [-0.61129282 0.7170071 0.33499539]\n", + " [-0.63322154 0.70093367 0.32821101]\n", + " [-0.655073 0.6839772 0.3210211 ]\n", + " [-0.67673245 0.66617438 0.31344042]\n", + " [-0.69809124 0.64756951 0.30548708]\n", + " [-0.71904628 0.62821547 0.29718307]\n", + " [-0.73950025 0.60817409 0.28855441]\n", + " [-0.7593625 0.58751594 0.2796312 ]\n", + " [-0.60760927 0.61362936 0.50425191]\n", + " [-0.63308385 0.5929461 0.49761407]\n", + " [-0.65843517 0.57122359 0.4900681 ]\n", + " [-0.68345531 0.54854641 0.48164891]\n", + " [-0.70795591 0.5250147 0.47239602]\n", + " [-0.73176644 0.50074455 0.46235568]\n", + " [-0.59988148 0.62712318 0.49684879]\n", + " [-0.60317331 0.64519403 0.46894203]\n", + " [-0.60601512 0.66282056 0.43978925]\n", + " [-0.60832626 0.67985923 0.40954924]\n", + " [-0.61004702 0.69617987 0.37838633]\n", + " [-0.61113695 0.71166576 0.34647292]\n", + " [-0.7419734 0.49825199 0.448576 ]\n", + " [-0.74713545 0.51580159 0.41921037]\n", + " [-0.75149075 0.53310127 0.38867041]\n", + " [-0.75495877 0.55001134 0.35710612]\n", + " [-0.7574765 0.56640265 0.32468044]\n", + " [-0.75899928 0.DEBUG:root:optics_fp: xyfp: [[ -0.167405 31.491388 ]\n", + " [ -0.167405 27.10495943]\n", + " [ -0.167405 22.71853086]\n", + " [ -0.167405 18.33210229]\n", + " [ -0.167405 13.94567372]\n", + " [ -0.167405 9.55924515]\n", + " [ -0.167405 5.17281657]\n", + " [ -0.167405 0.786388 ]\n", + " [ -0.167405 31.491388 ]\n", + " [ -4.55383357 31.491388 ]\n", + " [ -8.94026214 31.491388 ]\n", + " [-13.32669071 31.491388 ]\n", + " [-17.71311928 31.491388 ]\n", + " [-22.09954786 31.491388 ]\n", + " [-26.48597643 31.491388 ]\n", + " [-30.872405 31.491388 ]\n", + " [ -0.167405 0.786388 ]\n", + " [ -4.55383357 0.786388 ]\n", + " [ -8.94026214 0.786388 ]\n", + " [-13.32669071 0.786388 ]\n", + " [-17.71311929 0.786388 ]\n", + " [-22.09954786 0.786388 ]\n", + " [-26.48597643 0.786388 ]\n", + " [-30.872405 0.786388 ]\n", + " [-30.872405 31.491388 ]\n", + " [-30.872405 27.10495943]\n", + " [-30.872405 22.71853086]\n", + " [-30.872405 18.33210229]\n", + " [-30.872405 13.94567371]\n", + " [-30.872405 9.55924514]\n", + " [-30.872405 5.17281657]\n", + " [-30.872405 0.786388 ]\n", + " [ -0.182405 29.578888 ]\n", + " [ -0.182405 24.202888 ]\n", + " [ -0.182405 18.826888 ]\n", + " [ -0.182405 13.450888 ]\n", + " [ -0.182405 8.074888 ]\n", + " [ -0.182405 2.698888 ]\n", + " [ -2.079905 31.476388 ]\n", + " [ -7.455905 31.476388 ]\n", + " [-12.831905 31.476388 ]\n", + " [-18.207905 31.476388 ]\n", + " [-23.583905 31.476388 ]\n", + " [-28.959905 31.476388 ]\n", + " [ -2.079905 0.801388 ]\n", + " [ -7.455905 0.801388 ]\n", + " [-12.831905 0.801388 ]\n", + " [-18.207905 0.801388 ]\n", + " [-23.583905 0.801388 ]\n", + " [-28.959905 0.801388 ]\n", + " [-30.857405 29.578888 ]\n", + " [-30.857405 24.202888 ]\n", + " [-30.857405 18.826888 ]\n", + " [-30.857405 13.450888 ]\n", + " [-30.857405 8.074888 ]\n", + " [-30.857405 2.698888 ]\n", + " [ -0.182405 31.476388 ]\n", + " [ -0.182405 31.476388 ]\n", + " [-30.857405 0.801388 ]\n", + " [-30.857405 0.801388 ]\n", + " [ -2.079905 29.578888 ]\n", + " [ -7.455905 29.578888 ]\n", + " [-12.831905 29.578888 ]\n", + " [-18.207905 29.578888 ]\n", + " [-23.583905 29.578888 ]\n", + " [-28.959905 29.578888 ]\n", + " [ -2.079905 24.202888 ]\n", + " [ -7.455905 24.202888 ]\n", + " [-12.831905 24.202888 ]\n", + " [-18.207905 24.202888 ]\n", + " [-23.583905 24.202888 ]\n", + " [-28.959905 24.202888 ]\n", + " [ -2.079905 18.826888 ]\n", + " [ -7.455905 18.826888 ]\n", + " [-12.831905 18.826888 ]\n", + " [-18.207905 18.826888 ]\n", + " [-23.583905 18.826888 ]\n", + " [-28.959905 18.826888 ]\n", + " [ -2.079905 13.450888 ]\n", + " [ -7.455905 13.450888 ]\n", + " [-12.831905 13.450888 ]\n", + " [-18.207905 13.450888 ]\n", + " [-23.583905 13.450888 ]\n", + " [-28.959905 13.450888 ]\n", + " [ -2.079905 8.074888 ]\n", + " [ -7.455905 8.074888 ]\n", + " [-12.831905 8.074888 ]\n", + " [-18.20790499 8.074888 ]\n", + " [-23.583905 8.074888 ]\n", + " [-28.959905 8.074888 ]\n", + " [ -2.079905 2.698888 ]\n", + " [ -7.455905 2.698888 ]\n", + " [-12.831905 2.698888 ]\n", + " [-18.207905 2.698888 ]\n", + " [-23.583905 2.698888 ]\n", + " [-28.959905 2.698888 ]]\n", + "58215701 0.29157041]\n", + " [-0.62085416 0.71006852 0.33217888]\n", + " [-0.64769284 0.68977042 0.32359041]\n", + " [-0.67430071 0.66818172 0.31440698]\n", + " [-0.70047531 0.64538076 0.30466051]\n", + " [-0.72602686 0.62146494 0.29439146]\n", + " [-0.75077894 0.59655172 0.28364948]\n", + " [-0.5986308 0.62066798 0.50637182]\n", + " [-0.5986308 0.62066798 0.50637182]\n", + " [-0.75929387 0.58754533 0.2797558 ]\n", + " [-0.75929387 0.58754533 0.2797558 ]\n", + " [-0.60891874 0.62008947 0.4946787 ]\n", + " [-0.61235683 0.63817927 0.46663297]\n", + " [-0.61531566 0.65583244 0.43734477]\n", + " [-0.61771539 0.67290548 0.40697163]\n", + " [-0.61949682 0.68926798 0.37567719]\n", + " [-0.62061973 0.70480275 0.34363385]\n", + " [-0.63454996 0.59940664 0.48791191]\n", + " [-0.63837839 0.6175142 0.45950979]\n", + " [-0.64165051 0.6352103 0.42987497]\n", + " [-0.64428821 0.65235157 0.39916179]\n", + " [-0.64623301 0.66880695 0.36753252]\n", + " [-0.64744483 0.68445817 0.33515996]\n", + " [-0.66004426 0.57766435 0.48025564]\n", + " [-0.6642303 0.59573559 0.45154979]\n", + " [-0.6677911 0.61342527 0.42162127]\n", + " [-0.67064914 0.63059035 0.39062199]\n", + " [-0.67274572 0.64709946 0.35871366]\n", + " [-0.67404015 0.66283349 0.32606998]\n", + " [-0.68519468 0.55494694 0.47174372]\n", + " [-0.68970781 0.57292692 0.44278424]\n", + " [-0.69353402 0.59055971 0.41261338]\n", + " [-0.69659545 0.60770293 0.3813816 ]\n", + " [-0.69883244 0.62422531 0.34925061]\n", + " [-0.70020324 0.64000739 0.31639527]\n", + " [-0.7098132 0.53135459 0.46241487]\n", + " [-0.71462328 0.54918826 0.4332503 ]\n", + " [-0.71869135 0.56671336 0.40288796]\n", + " [-0.72193858 0.58378849 0.37147769]\n", + " [-0.72430393 0.60028299 0.3391816 ]\n", + " [-0.72574439 0.61607755 0.30617564]\n", + " [-0.73372912 0.50700367 0.452315 ]\n", + " [-0.73880505 0.52463677 0.42299333]\n", + " [-0.74309006 0.54200395 0.3924906 ]\n", + " [-0.74650408 0.55896506 0.36095669]\n", + " [-0.74898457 0.57539048 0.32855428]\n", + " [-0.75048728 0.59116164 0.29546023]]\n", + "DEBUG:root:optics_fp: xyfp shape: (96, 2)\n", + " -6.38479409e-01 7.59003101e-01]\n", + " [-1.17973756e-01 -6.65067686e-01 7.37405699e-01]\n", + " [ 2.40198048e-02 -4.72875463e-01 8.80801820e-01]\n", + " [ 2.40198048e-02 -4.72875463e-01 8.80801820e-01]\n", + " [-1.14531766e-01 -6.74269123e-01 7.29550289e-01]\n", + " [-1.14531766e-01 -6.74269123e-01 7.29550289e-01]\n", + " [ 1.54052018e-02 -4.86273312e-01 8.73DEBUG:root:radec2pix: curVec Shape: (96, 3)\n", + "DEBUG:root:mm_to_pix: fitpx: [[0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]]\n", + "670960e-01]\n", + " [-1.87220780e-02 -4.95279230e-01 8.68532076e-01]\n", + " [-5.25682274e-02 -5.03720127e-01 8.62265977e-01]\n", + " [-8.59329448e-02 -5.11568724e-01 8.54934483e-01]\n", + " [-1.18616251e-01 -5.18814170e-01 8.46618002e-01]\n", + " [-1.50416448e-01 -5.25462924e-01 8.37414836e-01]\n", + " [ 2.52357943e-02 -5.14992259e-01 8.56823277e-01]\n", + " [-9.24625994e-03 -5.24025245e-01 8.51652540e-01]\n", + " [-4.34657404e-02 -5.32417958e-01 8.45364920e-01]\n", + " [-7.72215589e-02 -5.40142453e-01 8.38023246e-01]\n", + " [-1.10314779e-01 -5.47187251e-01 8.29708841e-01]\n", + " [-1.42546412e-01 -5.53558147e-01 8.20520504e-01]\n", + " [ 3.52568126e-02 -5.43684151e-01 8.38549045e-01]\n", + " [ 4.83802294e-04 -5.52730030e-01 8.33360234e-01]\n", + " [-3.40444690e-02 -5.61064508e-01 8.27071697e-01]\n", + " [-6.81255799e-02 -5.68659572e-01 8.19747032e-01]\n", + " [-1.01561024e-01 -5.75503871e-01 8.11468208e-01]\n", + " [-1.34154079e-01 -5.81603229e-01 8.02334324e-01]\n", + " [ 4.54069321e-02 -5.72144771e-01 8.18894726e-01]\n", + " [ 1.04083344e-02 -5.81188601e-01 8.13702327e-01]\n", + " [-2.43633853e-02 -5.89453799e-01 8.07434607e-01]\n", + " [-5.87042147e-02 -5.96912888e-01 8.00155497e-01]\n", + " [-9.24155202e-02 -6.03555397e-01 7.91947129e-01]\n", + " [-1.25302126e-01 -6.09387931e-01 7.82908505e-01]\n", + " [ 5.56248661e-02 -6.00179215e-01 7.97929059e-01]\n", + " [ 2.04680950e-02 -6.09205693e-01 7.92748056e-01]\n", + " [-1.44802313e-02 -6.17390481e-01 7.86523564e-01]\n", + " [-4.90145886e-02 -6.24707119e-01 7.79319309e-01]\n", + " [-8.29358421e-02 -6.31146583e-01 7.71216984e-01]\n", + " [-1.16049577e-01 -6.36716829e-01 7.62315010e-01]\n", + " [ 6.58486841e-02 -6.27601278e-01 7.75745182e-01]\n", + " [ 3.06030854e-02 -6.36595197e-01 7.70590686e-01]\n", + " [-4.45333995e-03 -6.44689183e-01 7.64431831e-01]\n", + " [-3.91139418e-02 -6.51858087e-01 7.57331588e-01]\n", + " [-7.31789252e-02 -6.58094597e-01 7.49370633e-01]\n", + " [-1.06453917e-01 -6.63408265e-01 7.40646365e-01]]\n", + " [-19.54383391 -24.31841356]\n", + " [-14.16783391 -24.31838561]\n", + " [ -8.79183391 -24.31835764]\n", + " [ -3.41583391 -24.31832968]\n", + " [-30.29586187 -18.94246949]\n", + " [-24.91986187 -18.94244153]\n", + " [-19.54386187 -18.94241356]\n", + " [-14.16786187 -18.94238561]\n", + " [ -8.79186187 -18.94235764]\n", + " [ -3.41586187 -18.94232969]\n", + " [-30.29588983 -13.56646949]\n", + " [-24.91988983 -13.56644152]\n", + " [-19.54388984 -13.56641357]\n", + " [-14.16788983 -13.5663856 ]\n", + " [ -8.79188983 -13.56635764]\n", + " [ -3.41588983 -13.56632968]\n", + " [-30.29591779 -8.19046949]\n", + " [-24.91991779 -8.19044152]\n", + " [-19.54391779 -8.19041356]\n", + " [-14.16791779 -8.1903856 ]\n", + " [ -8.79191779 -8.19035764]\n", + " [ -3.41591779 -8.19032968]\n", + " [-30.29594575 -2.81446949]\n", + " [-24.91994576 -2.81444153]\n", + " [-19.54394575 -2.81441356]\n", + " [-14.16794576 -2.8143856 ]\n", + " [ -8.79194575 -2.81435764]\n", + " [ -3.41594575 -2.81432968]]\n", + "DEBUG:root:radec2pix: curVec Shape: (96, 3)\n", + "DEBUG:root:optics_fp: xyfp shape: (96, 2)\n", + "DEBUG:root:make_az_asym: xyp: [[ -0.167405 31.491388 ]\n", + " [ -0.167405 27.10495943]\n", + " [ -0.167405 22.71853086]\n", + " [ -0.167405 18.33210229]\n", + " [ -0.167405 13.94567372]\n", + " [ -0.167405 9.55924515]\n", + " [ -0.167405 5.17281657]\n", + " [ -0.167405 0.786388 ]\n", + " [ -0.167405 31.491388 ]\n", + " [ -4.55383357 31.491388 ]\n", + " [ -8.94026214 31.491388 ]\n", + " [-13.32669071 31.491388 ]\n", + " [-17.71311928 31.491388 ]\n", + " [-22.09954786 31.491388 ]\n", + " [-26.48597643 31.491388 ]\n", + " [-30.872405 31.491388 ]\n", + " [ -0.167405 0.786388 ]\n", + " [ -4.55383357 0.786388 ]\n", + " [ -8.94026214 0.786388 ]\n", + " [-13.32669071 0.786388 ]\n", + " [-17.71311929 0.786388 ]\n", + " [-22.09954786 0.786388 ]\n", + " [-26.48597643 0.786388 ]\n", + " [-30.872405 0.786388 ]\n", + " [-30.872405 31.491388 ]\n", + " [-30.872405 27.10495943]\n", + " [-30.872405 22.71853086]\n", + " [-30.872405 18.33210229]\n", + " [-30.872405 13.94567371]\n", + " [-30.872405 9.55924514]\n", + " [-30.872405 5.17281657]\n", + " [-30.872405 0.786388 ]\n", + " [ -0.182405 29.578888 ]\n", + " [ -0.182405 24.202888 ]\n", + " [ -0.182405 18.826888 ]\n", + " [ -0.182405 13.450888 ]\n", + " [ -0.182405 8.074888 ]\n", + " [ -0.182405 2.698888 ]\n", + " [ -2.079905 31.476388 ]\n", + " [ -7.455905 31.476388 ]\n", + " [-12.831905 31.476388 ]\n", + " [-18.207905 31.476388 ]\n", + " [-23.583905 31.476388 ]\n", + " [-28.959905 31.476388 ]\n", + " [ -2.079905 0.801388 ]\n", + " [ -7.455905 0.801388 ]\n", + " DEBUG:root:mm_to_pix: fitpx.shape: (96, 2)\n", + "[-12.831905 0.801388 ]\n", + " [-18.207905 0.801388 ]\n", + " [-23.583905 0.801388 ]\n", + " [-28.959905 0.801388 ]\n", + " [-30.857405 29.578888 ]\n", + " [-30.857405 24.202888 ]\n", + " [-30.857405 18.826888 ]\n", + " [-30.857405 13.450888 ]\n", + " [-30.857405 8.074888 ]\n", + " [-30.857405 2.698888 ]\n", + " [ -0.182405 31.476388 ]\n", + " [ -0.182405 31.476388 ]\n", + " [-30.857405 0.801388 ]\n", + " [-30.857405 0.801388 ]\n", + " [ -2.079905 29.578888 ]\n", + " [ -7.455905 29.578888 ]\n", + " [-12.831905 29.578888 ]\n", + " [-18.207905 29.578888 ]\n", + " [-23.583905 29.578888 ]\n", + " [-28.959905 29.578888 ]\n", + " [ -2.079905 24.202888 ]\n", + " [ -7.455905 24.202888 ]\n", + " [-12.831905 24.202888 ]\n", + " [-18.207905 24.202888 ]\n", + " [-23.583905 24.202888 ]\n", + " [-28.959905 24.202888 ]\n", + " [ -2.079905 18.826888 ]\n", + " [ -7.455905 18.826888 ]\n", + " [-12.831905 18.826888 ]\n", + " [-18.207905 18.826888 ]\n", + " [-23.583905 18.826888 ]\n", + " [-28.959905 18.826888 ]\n", + " [ -2.079905 13.450888 ]\n", + " [ -7.455905 13.450888 ]\n", + " [-12.831905 13.450888 ]\n", + " [-18.207905 13.450888 ]\n", + " [-23.583905 13.450888 ]\n", + " [-28.959905 13.450888 ]\n", + " [ -2.079905 8.074888 ]\n", + " [ -7.455905 8.074888 ]\n", + " [-12.831905 8.074888 ]\n", + " [-18.20790499 8.074888 ]\n", + " [-23.583905 8.074888 ]\n", + " [-28.959905 8.074888 ]\n", + " [ -2.079905 2.698888 ]\n", + " [ -7.455905 2.698888 ]\n", + " [-12.831905 2.698888 ]\n", + " [-18.207905 2.698888 ]\n", + " [-23.583905 2.698888 ]\n", + " [-28.959905 2.698888 ]]\n", + "[30.31488203 13.51155701]\n", + " [24.93888233 13.51335542]\n", + " [19.56288263 13.51515384]\n", + " [14.18688293 13.51695226]\n", + " [ 8.81088324 13.51875068]\n", + " [ 3.43488354 13.5205491 ]\n", + " [30.31308361 8.13555731]\n", + " [24.93708392 8.13735572]\n", + " [19.56108422 8.13915414]\n", + " [14.18508451 8.14095256]\n", + " [ 8.80908482 8.14275098]\n", + " [ 3.43308512 8.1445494 ]\n", + " [30.31128519 2.75955761]\n", + " [24.93528549 2.76135602]\n", + " [19.5592858 2.76315444]\n", + " [14.18328609 2.76495286]\n", + " [ 8.8072864 2.76675128]\n", + " [ 3.4312867 2.7685497 ]]\n", + "1779 -8.19041356]\n", + " [DEBUG:root:make_az_asym: xyp: [[32.2358199 31.31614388]\n", + " [32.23338667 26.92971599]\n", + " [32.23095344 22.54328809]\n", + " [32.2285202 18.15686019]\n", + " [32.22608698 13.7704323 ]\n", + " [32.22365375 9.3840044 ]\n", + " [32.22122051 4.99757651]\n", + " [32.21878728 0.61114861]\n", + " [32.2358199 31.31614388]\n", + " [27.849392 31.31857712]\n", + " [23.46296411 31.32101035]\n", + " [19.07653621 31.32344358]\n", + " [14.69010831 31.3258768 ]\n", + " [10.30368042 31.32831004]\n", + " [ 5.91725252 31.33074327]\n", + " [ 1.53082462 31.3331765 ]\n", + " [32.21878728 0.61114861]\n", + " [27.83235938 0.61358184]\n", + " [23.44593149 0.61601507]\n", + " [19.0595036 0.6184483 ]\n", + " [14.6730757 0.62088153]\n", + " [10.2866478 0.62331476]\n", + " [ 5.90021991 0.625748 ]\n", + " [ 1.513792 0.62818122]\n", + " [ 1.53082462 31.3331765 ]\n", + " [ 1.52839139 26.94674861]\n", + " [ 1.52595816 22.5603207 ]\n", + " [ 1.52352493 18.17389281]\n", + " [ 1.5210917 13.78746492]\n", + " [ 1.51865847 9.40103702]\n", + " [ 1.51622524 5.01460912]\n", + " [ 1.513792 0.62818122]\n", + " [32.219759 29.4036525 ]\n", + " [32.21677684 24.02765333]\n", + " [32.21379467 18.65165415]\n", + " [32.21081251 13.27565498]\n", + " [32.20783035 7.89965581]\n", + " [32.20484818 2.52365664]\n", + " [30.32331188 31.30220479]\n", + " [24.9473127 31.30518695]\n", + " [19.57131353 31.30816912]\n", + " [14.19531435 31.31115127]\n", + " [ 8.81931518 31.31413344]\n", + " [ 3.44331601 31.3171156 ]\n", + " [30.3062959 0.62720951]\n", + " [24.93029672 0.63019167]\n", + " [19.55429755 0.63317383]\n", + " [14.17829838 0.636156 ]\n", + " [ 8.80229921 0.63913816]\n", + " [ 3.42630004 0.64212033]\n", + " [ 1.54476372 29.42066847]\n", + " [ 1.54178156 24.0446693 ]\n", + " [ 1.53879939 18.66867013]\n", + " [ 1.53581723 13.29267096]\n", + " [ 1.53283507 7.91667178]\n", + " [ 1.5298529 2.54067261]\n", + " [32.22081158 31.30115221]\n", + " [32.22081158 31.30115221]\n", + " [ 1.52880032 0.6431729 ]\n", + " [ 1.52880032 0.6431729 ]\n", + " [30.32225929 29.40470508]\n", + " [24.94626012 29.40768724]\n", + " [19.57026095 29.41066941]\n", + " [14.19426178 29.41365157]\n", + " [ 8.8182626 29.41663373]\n", + " [ 3.44226343 29.4196159 ]\n", + " [30.31927713 24.02870591]\n", + " [24.94327796 24.03168807]\n", + " [19.56727878 24.03467023]\n", + " [14.19127961 24.0376524 ]\n", + " [ 8.81528044 24.04063456]\n", + " [ 3.43928127 24.04361672]\n", + " [30.31629496 18.65270673]DEBUG:root:radec2pix: camVec: [[-0.20629584 -0.20812128 -0.20967356 -0.21095376 -0.21196139 -0.21269501\n", + " -0.2131529 -0.21333373 -0.20629584 -0.1798852 -0.15276427 -0.12504507\n", + " -0.09683814 -0.06825398 -0.03940385 -0.01040007 -0.21333373 -0.18599064\n", + " -0.15793623 -0.12927467 -0.10011211 -0.07055816 -0.04072622 -0.01073294\n", + " -0.01040007 -0.01048759 -0.01056224 -0.01062379 -0.01067191 -0.0107063\n", + " -0.0107267 -0.01073294 -0.20703611 -0.20908844 -0.21073192 -0.21196628\n", + " -0.21278893 -0.21319686 -0.19488162 -0.16201965 -0.12820231 -0.09363367\n", + " -0.05851721 -0.02305821 -0.20150602 -0.16750285 -0.13253465 -0.0967959\n", + " -0.06048842 -0.02382238 -0.0105395 -0.01063912 -0.01071899 -0.01077856\n", + " -0.01081726 -0.01083465 -0.20621357 -0.20621357 -0.01083565 -0.01083565\n", + " -0.19565571 -0.16265759 -0.12870452 -0.09399937 -0.05874512 -0.0231472\n", + " -0.19758845 -0.16425347 -0.12996305 -0.09491705 -0.05931746 -0.02337052\n", + " -0.19913769 -0.16553623 -0.13097704 -0.09565767 -0.05977969 -0.02355053\n", + " -0.200302-14.16791779 -8.1903856 ]\n", + " [ -8.79191779 -8.19035764]\n", + " [ -3.41591779 -8.19032968]\n", + " [-30.29594575 -2.81446949]\n", + " [-24.91994576 -2.81444153]\n", + " [-19.54394575 -2.81441356]\n", + " [-14.16794576 -2.8143856 ]\n", + " [ -8.79194575 -2.81435764]\n", + " [ -3.41594575 -2.81432968]]\n", + "26 -0.16650264 -0.13174231 -0.09621721 -0.0601289 -0.023686\n", + " -0.20107886 -0.16714801 -0.13225382 -0.09659125 -0.06036201 -0.02377567\n", + " -0.201464 -0.16746808 -0.13250731 -0.0967762 -0.06047657 -0.02381854]\n", + " [-0.20078674 -0.17428103 -0.14708674 -0.11931584 -0.09107902 -0.06248699\n", + " -0.03365118 -0.00468399 -0.20078674 -0.20262142 -0.20419049 -0.20549514\n", + " -0.20653488 -0.20730818 -0.20781318 -0.2080483 -0.00468399 -0.00472909\n", + " -0.00476846 -0.004802 -0.00482954 -0.00485094 -0.00486604 -0.00487474\n", + " -0.2080483 -0.18056016 -0.15238099 -0.12361519 -0.09436952 -0.06475431\n", + " -0.03488367 -0.00487474 -0.1893284 -0.1563645 -0.12247778 -0.08787247\n", + " -0.05275245 -0.01732329 -0.20152974 -0.20359843 -0.20526972 -0.2065434\n", + " -0.20741673 -0.20788637 -0.0048039 -0.00485635 -0.0048999 -0.00493429\n", + " -0.00495921 -0.00497442 -0.19615466 -0.1619874 -0.12688576 -0.09104519\n", + " -0.05466885 -0.01796812 -0.20070413 -0.20070413 -0.00497744 -0.00497744\n", + " -0.19010422 -0.19204948 -0.19362274 -0.19482286 -0.19564642 -0.1960896\n", + " -0.15700026 -0.15859759 -0.1598933 -0.16088429 -0.1615658 -0.16193328\n", + " -0.12297381 -0.12422245 -0.12523802 -0.12601654 -0.12655298 -0.12684288\n", + " -0.088228 -0.0891244 -0.0898551 -0.09041635 -0.09080384 -0.09101389\n", + " -0.05296627 -0.0535061 -0.05394701 -0.05428637 -0.05452132 -0.05464944\n", + " -0.01739439 -0.0175743 -0.01772184 -0.01783608 -0.01791601 -0.0179608 ]\n", + " [ 0.95766733 0.96245086 0.96664496 0.9701867 0.97302465 0.97511856\n", + " 0.97643916 0.97696816 0.95766733 0.96259331 0.96693812 0.97063664\n", + " 0.97363531 0.97589175 0.97737455 0.97806326 0.97696816 0.98254014\n", + " 0.9874378 0.9915972 0.99496444 0.99749587 0.99915849 0.99993052\n", + " 0.97806326 0.98350803 0.98826539 0.99227336 DEBUG:root:optics_fp: cphi: [0.71341716 0.76328013 0.81514194 0.86698087 0.91566575 0.95700502\n", + " 0.98630354 0.99950918 0.71341716 0.66051768 0.59557134 0.51643629\n", + " 0.4214805 0.31036993 0.18497457 0.04990581 0.99950918 0.99934039\n", + " 0.99906819 0.99858739 0.99761569 0.9951653 0.98558541 0.8377988\n", + " 0.04990581 0.05781889 0.0687377 0.08476872 0.11057085 0.15882919\n", + " 0.27935111 0.8377988 0.73466528 0.79733703 0.86111952 0.92071715\n", + " 0.96846887 0.9959178 0.69186293 0.61921532 0.52631184 0.40990453\n", + " 0.26948104 0.10963271 0.999428 0.999152 0.99861839 0.99737128\n", + " 0.99322638 0.95832228 0.05357183 0.06521663 0.08337359 0.1155749\n", + " 0.18791565 0.47564444 0.71341996 0.71341996 0.83653968 0.83653968\n", + " 0.71379735 0.6426352 0.54988271 0.43124184 0.28525093 0.11649124\n", + " 0.77925087 0.71517941 0.62617339 0.50367681 0.34120915 0.14155583\n", + " 0.8471183 0.79527459 0.71732418 0.59864658 0.42182798 0.18020046\n", + " 0.91180529 0.87721591 0.82023759 0.72110338 0.54370846 0.24707693\n", + " 0.96461215 0.94899507 0.92085832 0.86374835 0.72953296 0.3869314\n", + " 0.99539279 0.99320908 0.98902871 0.97944976 0.94931741 0.76479745]\n", + "DEBUG:root:radec2pix: xyfp: [[-32.31281793 -31.43806373]\n", + " [-32.31091541 -27.05163558]\n", + " [-32.30901287 -22.66520742]\n", + " [-32.30711034 -18.27877926]\n", + " [-32.3052078 -13.8923511 ]\n", + " [-32.30330527 -9.50592294]\n", + " [-32.30140274 -5.11949478]\n", + " [-32.2995002 -0.73306663]\n", + " [-32.31281793 -31.43806373]\n", + " [-27.92638978 -31.43996627]\n", + " [-23.53996162 -31.4418688 ]\n", + " [-19.15353346 -31.44377134]\n", + " [-14.7671053 -31.44567387]\n", + " [-10.38067715 -31.44757641]\n", + " [ -5.99424899 -31.44947894]\n", + " [ -1.60782083 -31.45138147]\n", + " [-32.2995002 -0.73306663]\n", + " [-27.91307204 -0.73496916]\n", + " [-23.52664389 -0.73687169]\n", + " [-19.14021573 -0.73877423]\n", + " [-14.75378757 -0.74067676]\n", + " [-10.36735941 -0.74257929]\n", + " [ -5.98093125 -0.74448183]\n", + " [ -1.59450309 -0.74638436]\n", + " [ -1.60782083 -31.45138147]\n", + " [ -1.60591829 -27.06495331]\n", + " [ -1.60401576 -22.67852516]\n", + " [ -1.60211323 -18.292097 ]\n", + " [ -1.60021069 -13.90566884]\n", + " [ -1.59830816 -9.51924068]\n", + " [ -1.59640563 -5.13281252]\n", + " [ -1.59450309 -0.74638436]\n", + " [-32.29698843 -29.52557043]\n", + " [-32.29465669 -24.14957093]\n", + " [-32.29232495 -18.77357144]\n", + " [-32.2899932 -13.39757194]\n", + " [-32.28766146 -8.02157244]\n", + " [-32.28532972 -2.64557295]\n", + " [-30.40031161 -31.42389325]\n", + " [-25.02431212 -31.42622499]\n", + " [-19.64831262 -31.42855673]\n", + " [-14.27231313 -31.43088848]\n", + " [ -8.89631363 -31.43322022]\n", + " [ -3.52031414 -31.43555196]\n", + " [-30.38700689 -0.74889614]\n", + " [-25.01100739 -0.75122788]\n", + " [-19.6350079 -0.75355962]\n", + " [-14.25900841 -0.75589136]\n", + " [ -8.88300892 -0.7582231 ]\n", + " [ -3.50700942 -0.76055484]\n", + " [ -1.62199131 -29.53887515]\n", + " [ -1.61965957 -24.16287565]\n", + " [ -1.61732783 -18.78687616]\n", + " [ -1.61499609 -13.41087666]\n", + " [ -1.61266434 -8.03487716]\n", + " [ -1.6103326 -2.65887768]\n", + " [-32.29781143 -31.42307024]\n", + " [-32.29781143 -31.42307024]\n", + " [ -1.60950959 -0.76137785]\n", + " [ -1.60950959 -0.76137785]\n", + " [-30.3994886 -29.52639343]\n", + " [-25.02348911 -29.52872517]\n", + " [-19.64748962 -29.53105692]\n", + " [-14.27149012 -29.53338866]\n", + " [ -8.89549063 -290.99548004 0.9978438\n", + " 0.99933381 0.99993052 0.95983895 0.96531454 0.96984084 0.97331841\n", + " 0.97567313 0.97685567 0.95989943 0.96555544 0.97027239 0.9739469\n", + " 0.97650091 0.97788117 0.9794755 0.98585963 0.99116626 0.99529202\n", + " 0.99815658 0.99970383 0.98051633 0.98673547 0.99185942 0.99578843\n", + " 0.99844594 0.99977985 0.95770236 0.95770236 0.9999289 0.9999289\n", + " 0.96207028 0.96781171 0.97259724 0.9763238 0.97891342 0.98031274\n", + " 0.96763099 0.97358492 0.97854164 0.98239859 0.98507763 0.98652493\n", + " 0.97222509 0.97834888 0.98344316 0.98740541 0.99015692 0.99164321\n", + " 0.97575346 0.98200495 0.98720313 0.99124524 0.9940519 0.9955679\n", + " 0.97814205 0.98447887 0.98974676 0.9938426 0.99668644 0.9982225\n", + " 0.97934146 0.98572085 0.99102359 0.99514634 0.99800882 0.99955494]]\n", + ".5357204 ]\n", + " [ -3.51949113 -29.53805214]\n", + " [-30.39715686 -24.15039394]\n", + " [-25.02115737 -24.15272568]\n", + " [-19.64515788 -24.15505742]\n", + " [-14.26915838 -24.15738916]\n", + " [ -8.89315889 -24.1597209 ]\n", + " [ -3.51715939 -24.16205264]\n", + " [-30.39482512 -18.77439444]\n", + " [-25.01882563 -18.77672618]\n", + " [-19.64282613 -18.77905793]\n", + " [-14.26682664 -18.78138967]\n", + " [ -8.89082714 -18.78372141]\n", + " [ -3.51482765 -18.78605315]\n", + " [-30.39249338 -13.39839495]\n", + " [-25.01649389 -13.40072669]\n", + " [-19.64049439 -13.40305843]\n", + " [-14.2644949 -13.40539017]\n", + " [ -8.8884954 -13.40772191]\n", + " [ -3.51249591 -13.41005365]\n", + " [-30.39016163 -8.02239545]\n", + " [-25.01416214 -8.02472719]\n", + " [-19.63816265 -8.02705893]\n", + " [-14.26216315 -8.02939068]\n", + " [ -8.88616366 -8.03172242]\n", + " [ -3.51016417 -8.03405416]\n", + " [-30.3878299 -2.64639596]\n", + " [-25.01183041 -2.6487277 ]\n", + " [-19.63583091 -2.65105944]\n", + " [-14.25983141 -2.65339118]\n", + " [ -8.88383191 -2.65572292]\n", + " [ -3.50783243 -2.65805467]]\n", + "DEBUG:root:make_az_asym: xyp: [[-32.208296 -31.60697943]\n", + " [-32.20831882 -27.22055086]\n", + " [-32.20834163 -22.83412229]\n", + " [-32.20836444 -18.44769372]\n", + " [-32.20838725 -14.06126515]\n", + " [-32.20841007 -9.67483658]\n", + " [-32.20843288 -5.288408 ]\n", + " [-32.2084557 -0.90197943]\n", + " [-32.208296 -31.60697943]\n", + " [-27.82186743 -31.60695662]\n", + " [-23.43543886 -31.60693381]\n", + " [-19.04901029 -31.60691099]\n", + " [-14.66258171 -31.60688818]\n", + " [-10.27615314 -31.60686536]\n", + " [ -5.88972457 -31.60684255]\n", + " [ -1.503296 -31.60681974]\n", + " [-32.2084557 -0.90197943]\n", + " [-27.82202712 -0.90195662]\n", + " [-23.43559855 -0.9019338 ]\n", + " [-19.04916999 -0.90191099]\n", + " [-14.66274141 -0.90188818]\n", + " [-10.27631284 -0.90186536]\n", + " [ -5.88988428 -0.90184255]\n", + " [ -1.5034557 -0.90181973]\n", + " [ -1.503296 -31.60681974]\n", + " [ -1.50331881 -27.22039116]\n", + " [ -1.50334163 -22.83396259]\n", + " [ -1.50336444 -18.44753402]\n", + " [ -1.50338726 -14.06110544]\n", + " [ -1.50341007 -9.67467688]\n", + " [ -1.50343288 -5.2882483 ]\n", + " [ -1.5034557 -0.90181973]\n", + " [-32.19330594 -29.69447935]\n", + " [-32.19333391 -24.31847935]\n", + " [-32.19336187 -18.94247936]\n", + " [-32.19338983 -13.56647936]\n", + " [-32.19341779 -8.19047935]\n", + " [-32.19344575 -2.81447935]\n", + " [-30.29579608 -31.59196949]\n", + " [-24.91979608 -31.59194152]\n", + " [-19.54379608 -31.59191356]\n", + " [-14.16779608 -31.5918856 ]\n", + " [ -8.79179608 -31.59185764]\n", + " [ -3.41579608 -31.59182968]\n", + " [-30.29595562 -0.91696949]\n", + " [-24.91995562 -0.91694153]\n", + " [-19.54395562 -0.91691356]\n", + " [-14.16795562 -0.9168856 ]\n", + " [ -8.79195562 -0.91685764]\n", + " [ -3.41595563 -0.91682968]\n", + " [ -1.51830595 -29.69431981]\n", + " [ -1.51833391 -24.31831981]\n", + " [ -1.51836187 -18.94231981]\n", + " [ -1.51838983 -13.56631981]\n", + " [ -1.51841779 -8.19031981]\n", + " [ -1.51844575 -2.81431982]\n", + " [-32.19329608 -31.59197936]\n", + " [-32.19329608 -31.59197936]\n", + " [ -1.51845562 -0.91681981]\n", + " [ -1.51845562 -0.91681981]\n", + " [-30.29580595 -29.69446949]\n", + " [-24.91980594 -29.69444152]\n", + " [-19.54380595 -29.69441356]\n", + " [-14.16780595 -29.69438561]\n", + " [ -8.79180595 -29.69435764]\n", + " [ -3.41580595 -29.69432968]\n", + " [-30.29583391 -24.31846949]\n", + " [-24.91983391 -24.31844152]\n", + " [-19.54383391 -24.31841356]\n", + " [-14.16783391 -24.31838561]\n", + " [ -8.79183391 -24.31835764]\n", + " [ -3.41583391 -24.31832968]\n", + " [-30.29586187 -18.94246949]\n", + " [-24.91986187 -18.94244153]\n", + " [-19.54386187 -18.94241356]\n", + " [-14.16786187 -18.94238561]\n", + " [ -8.79186187 -18.94DEBUG:root:radec2pix: camVec Shape: (3, 96)\n", + "235764]\n", + " [ -3.41586187 -18.94232969]\n", + " [-30.29588983 -13.56646949]\n", + " [-24.91988983 -13.56644152]\n", + " [-19.54388984 -13.56641357]\n", + " [-14.16788983 -13.5663856 ]\n", + " [ -8.79188983 -13.56635764]\n", + " [ -3.41588983 -13.56632968]\n", + " [-30.29591779 -8.19046949]\n", + " [-24.91991779 -8.19044152]\n", + " [-19.54391779 -8.19041356]\n", + " [-14.16791779 -8.1903856 ]\n", + " [ -8.79191779 -8.19035764]\n", + " [ -3.41591779 -8.19032968]\n", + " [-30.29594575 -2.81446949]\n", + " [-24.91994576 -2.81444153]\n", + " [-19.54394575 -2.81441356]\n", + " [-14.16794576 -2.8143856 ]\n", + " [ -8.79194575 -2.81435764]\n", + " [ -3.41594575 -2.81432968]]\n", + "DEBUG:root:radec2pix: ccdpx: [[-4.44999999e+01 -4.99999873e-01]\n", + " [-4.44999998e+01 2.91928572e+02]\n", + " [-4.44999998e+01 5.84357143e+02]\n", + " [-4.45000002e+01 8.76785714e+02]\n", + " [-4.45000003e+01 1.16921429e+03]\n", + " [-4.45000002e+01 1.46164286e+03]\n", + " [-4.45000002e+01 1.75407143e+03]\n", + " [-4.45000000e+01 2.04650000e+03]\n", + " [-4.44999999e+01 -4.99999873e-01]\n", + " [ 2.47928571e+02 -5.00000280e-01]\n", + " [ 5.40357143e+02 -5.00000000e-01]\n", + " [ 8.32785714e+02 -4.99999974e-01]\n", + " [ 1.12521429e+03 -4.99999987e-01]\n", + " [ 1.41764286e+03 -4.99999863e-01]\n", + " [ 1.71007143e+03 -5.00000138e-01]\n", + " [ 2.00250000e+03 -4.99999700e-01]\n", + " [-4.45000000e+01 2.04650000e+03]\n", + " [ 2.47928571e+02 2.04650000e+03]\n", + " [ 5.40357143e+02 2.04650000e+03]\n", + " [ 8.32785714e+02 2.04650000e+03]\n", + " [ 1.12521429e+03 2.04650000e+03]\n", + " [ 1.41764286e+03 2.04650000e+03]\n", + " [ 1.71007143e+03 2.04650000e+03]\n", + " [ 2.00250000e+03 2.04650000e+03]\n", + " [ 2.00250000e+03 -4.99999700e-01]\n", + " [ 2.00250000e+03 2.91928571e+02]\n", + " [ 2.00250000e+03 5.84357143e+02]\n", + " [ 2.00250000e+03 8.76785714e+02]\n", + " [ 2.00250000e+03 1.16921429e+03]\n", + " [ 2.00250000e+03 1.46164286e+03]\n", + " [ 2.00250000e+03 1.75407143e+03]\n", + " [ 2.00250000e+03 2.04650000e+03]\n", + " [-4.35000000e+01 1.27000000e+02]\n", + " [-4.35000002e+01 4.85400000e+02]\n", + " [-4.34999999e+01 8.43800000e+02]\n", + " [-4.35000003e+01 1.20220000e+03]\n", + " [-4.35000000e+01 1.56060000e+03]\n", + " [-4.35000001e+01 1.91900000e+03]\n", + " [ 8.30000001e+01 5.00000148e-01]\n", + " [ 4.41400000e+02 4.99999823e-01]\n", + " [ 7.99800000e+02 4.99999939e-01]\n", + " [ 1.15820000e+03 5.00000006e-01]\n", + " [ 1.51660000e+03 5.00000232e-01]\n", + " [ 1.87500000e+03 5.00000256e-01]\n", + " [ 8.29999998e+01 2.04550000e+03]\n", + " [ 4.41400000e+02 2.04550000e+03]\n", + " [ 7.99800000e+02 2.04550000e+03]\n", + " [ 1.15820000e+03 2.04550000e+03]\n", + " [ 1.51660000e+03 2.04550000e+03]\n", + " [ 1.87500000e+03 2.04550000e+03]\n", + " [ 2.00150000e+03 1.27000000e+02]\n", + " [ 2.00150000e+03 4.85400000e+02]\n", + " [ 2.00150000e+03 8.43800000e+02]\n", + " [ 2.00150000e+03 1.20220000e+03]\n", + " [ 2.00150000e+03 1.56060000e+03]\n", + " [ 2.00150000e+03 1.91900000e+03]\n", + " [-4.35000003e+01 4.99999725e-01]\n", + " [-4.35000003e+01 4.99999725e-01]\n", + " [ 2.00150000e+03 2.04550000e+03]\n", + " [ 2.00150000e+03 2.04550000e+03]\n", + " [ 8.30000000e+01 1.27000000e+02]\n", + " [ 4.41400000e+02 1.27000000e+02]\n", + " [ 7.99800000e+02 1.27000000e+02]\n", + " [ 1.15820000e+03 1.27000000e+02]\n", + " [ 1.51660000e+03 1.27000000e+02]\n", + " [ 1.87500000e+03 1.27000000e+02]\n", + " [ 8.30000001e+01 4.85400000e+02]\n", + " [ 4.41400000e+02 4.85400000e+02]\n", + " [ 7.99800000e+02 4.85400000e+02]\n", + " [ 1.15820000e+03 4.85400000e+02]\n", + " [ 1.51660000e+03 4.85400000e+02]\n", + " [ 1.87500000e+03 4.85400000e+02]\n", + " [ 8.30000001e+01 8.43800000e+02]\n", + " [ 4.41400000e+02 8.43800000e+02]\n", + " [ 7.99800000e+02 8.43800000e+02]\n", + " [ 1.15820000e+03 8.43800000e+02]\n", + " [ 1.51660000e+03 8.43800000e+02]\n", + " [ 1.87500000e+03 8.43800000e+02]\n", + " [ 8.29999999e+01 1.20220000e+03]\n", + " [ 4.41400000e+02 1.20220000e+03]\n", + " [ 7.99800000e+02 1.20220000e+03]\n", + " [ 1.15820000e+03 1.20220000e+03]\n", + " [ 1.51660000e+03 1.20220000e+03]\n", + " [ 1.87500000e+03 1.20220000e+03]\n", + " [ 8.30000000e+01 1.56060000e+03]\n", + " [ 4.41400000e+02 1.56060000e+03]\n", + " [ 7.99800000e+02 1.56060000e+03]\n", + " [ 1.15820000e+03 1.56060000e+03]\n", + " [ 1.51660000e+03 1.56060000e+03]\n", + " [ 1.87500000e+03 1.56060000e+03]\n", + " [ 8.30000003e+01 1.91900000e+03]\n", + " [ 4.41400000e+02 1.91900000e+03]\n", + " [ 7.99800000e+02 1.91900000e+03]\n", + " [ 1.15820000e+03 1.91900000e+03]\n", + " [ 1.51660000e+03 1.91900000e+03]\n", + " [ 1.87500000e+03 1.91900000e+03]]\n", + "DEBUG:root:radec2pix: ccdpx: [[-4.45000003e+01 -5.00000268e-01]\n", + " [-4.44999998e+01 2.91928572e+02]\n", + " [-4.44999999e+01 5.84357143e+02]\n", + " [-4.45000000e+01 8.76785714e+02]\n", + " [-4.44999998e+01 1.16921429e+03]\n", + " [-4.44999999e+01 1.46164286e+03]\n", + " [-4.44999997e+01 1.75407143e+03]\n", + " [-4.44999999e+01 2.04650000e+03]\n", + " [-4.45000003e+01 -5.00000268e-01]\n", + " [ 2.47928572e+02 -4.99999720e-01]\n", + " [ 5.40357143e+02 -5.00000140e-01]\n", + " [ 8.32785714e+02 -4.99999791e-01]\n", + " [ 1.12521429e+03 -4.99999975e-01]\n", + " [ 1.41764286e+03 -4.99999912e-01]\n", + " [ 1.71007143e+03 -4.99999978e-01]\n", + " [ 2.00250000e+03 -4.99999991e-01]\n", + " [-4.44999999e+01 2.04650000e+03]\n", + " [ 2.47928571e+02 2.04650000e+03]\n", + " [ 5.40357143e+02 2.04650000e+03]\n", + " [ 8.32785715e+02 2.04650000e+03]\n", + " [ 1.12521429e+03 2.04650000e+03]\n", + " [ 1.41764286e+03 2.04650000e+03]\n", + " [ 1.71007143e+03 2.04650000e+03]\n", + " [ 2.00250000e+03 2.04650000e+03]\n", + " [ 2.00250000e+03 -4.99999991e-01]\n", + " [ 2.00250000e+03 2.91928572e+02]\n", + " [ 2.00250000e+03 5.84357143e+02]\n", + " [ 2.00250000e+03 8.76785715e+02]\n", + " [ 2.00250000e+03 1.16921429e+03]\n", + " [ 2.00250000e+03 1.46164286e+03]\n", + " [ 2.00250000e+03 1.75407143e+03]\n", + " [ 2.00250000e+03 2.04650000e+03]\n", + " [-4.34999998e+01 1.27000000e+02]\n", + " [-4.35000000e+01 4.85400000e+02]\n", + " [-4.35000001e+01 8.43800000e+02]\n", + " [-4.35000000e+01 1.20220000e+03]\n", + " [-4.35000001e+01 1.56060000e+03]\n", + " [-4.34999999e+01 1.91900000e+03]\n", + " [ 8.30000001e+01 5.00000092e-01]\n", + " [ 4.41400000e+02 4.99999764e-01]\n", + " [ 7.99800000e+02 4.99999911e-01]\n", + " [ 1.15820000e+03 5.00000156e-01]\n", + " [ 1.51660000e+03 4.99999840e-01]\n", + " [ 1.87500000e+03 4.99999915e-01]\n", + " [ 8.29999998e+01 2.04550000e+03]\n", + " [ 4.41400000e+02 2.04550000e+03]\n", + " [ 7.99800000e+02 2.04550000e+03]\n", + " [ 1.15820000e+03 2.04550000e+03]\n", + " [ 1.51660000e+03 2.04550000e+03]\n", + " [ 1.87500000e+03 2.04550000e+03]\n", + " [ 2.00150000e+03 1.27000000e+02]\n", + " [ 2.00150000e+03 4.85400000e+02]\n", + " [ 2.00150000e+03 8.43800000e+02]\n", + " [ 2.00150000e+03 1.20220000e+03]\n", + " [ 2.00150000e+03 1.56060000e+03]\n", + " [ 2.00150000e+03 1.91900000e+03]\n", + " [-4.35000000e+01 4.99999958e-01]\n", + " [-4.35000000e+01 4.99999958e-01]\n", + " [ 2.00150000e+03 2.04550000e+03]\n", + " [ 2.00150000e+03 2.04550000e+03]\n", + " [ 8.30000002e+01 1.27000000e+02]\n", + " [ 4.41400000e+02 1.27000000e+02]\n", + " [ 7.99800000e+02 1.27000000e+02]\n", + " [ 1.15820000e+03 1.27000000e+02]\n", + " [ 1.51660000e+03 1.27000000e+02]\n", + " [ 1.87500000e+03 1.27000000e+02]\n", + " [ 8.29999999e+01 4.85400000e+02]\n", + " [ 4.41400000e+02 4.85400000e+02]\n", + " [ 7.99800000e+02 4.85400000e+02]\n", + " [ 1.15820000e+03 4.85400000e+02]\n", + " [ 1.51660000e+03 4.85400000e+02]\n", + " [ 1.87500000e+03 4.85400000e+02]\n", + " [ 8.30000001e+01 8.43800000e+02]\n", + " [ 4.41400000e+02 8.43800000e+02]\n", + " [ 7.99800000e+02 8.43800000e+02]\n", + " [ 1.15820000e+03 8.43800000e+02]\n", + " [ 1.51660000e+03 8.43800000e+02]\n", + " [ 1.87500000e+03 8.43800000e+02]\n", + " [ 8.29999999e+01 1.20220000e+03]\n", + " [ 4.41400000e+02 1.20220000e+03]\n", + " [ 7.99800000e+02 1.20220000e+03]\n", + " [ 1.15820000e+03 1.20220000e+03]\n", + " [ 1.51660000e+03 1.20220000e+03]\n", + " [ 1.87500000e+03 1.20220000e+03]\n", + " [ 8.29999999e+01 1.56060000e+03]\n", + " [ 4.41400000e+02 1.56060000e+03]\n", + " [ 7.99800000e+02 1.56060000e+03]\n", + " [ 1.15820000e+03 1.56060000e+03]\n", + " [ 1.51660000e+03 1.56060000e+03]\n", + " [ 1.87500000e+03 1.56060000e+03]\n", + " [ 8.29999998e+01 1.91900000e+03]\n", + " [ 4.41400000e+02 1.91900000e+03]\n", + " [ 7.99800000e+02 1.91900000e+03]\n", + " [ 1.15820000e+03 1.91900000e+03]\n", + " [ 1.51660000e+03 1.91900000e+03]\n", + " [ 1.87500000e+03 1.91900000e+03]]\n", + "\n", + " [24.9402958 18.6556889 ]\n", + " [19.56429662 18.65867106]\n", + " [14.18829744 18.66165322]\n", + " [ 8.81229827 18.66463538]\n", + " [ 3.4362991 18.66761755]\n", + " [30.31331281 13.27670756]\n", + " [24.93731363 13.27968972]\n", + " [19.56131446 13.28267189]\n", + " [14.18531529 13.28565406]\n", + " [ 8.80931611 13.28863621]\n", + " [ 3.43331694 13.29161838]\n", + " [30.31033064 7.90070839]\n", + " [24.93433147 7.90369055]\n", + " [19.55833229 7.90667271]\n", + " [14.18233312 7.90965488]\n", + " [ 8.80633395 7.91263704]\n", + " [ 3.43033477 7.9156192 ]\n", + " [30.30734847 2.52470921]\n", + " [24.9313493 2.52769138]\n", + " [19.55535013 2.53067354]\n", + " [14.17935096 2.53365571]\n", + " [ 8.80335178 2.53663787]\n", + " [ 3.42735261 2.5396DEBUG:root:cartToSphere: vec: [[-0.20629584 -0.20078674 0.95766733]\n", + " [-0.20812128 -0.17428103 0.96245086]\n", + " [-0.20967356 -0.14708674 0.96664496]\n", + " [-0.21095376 -0.11931584 0.9701867 ]\n", + " [-0.21196139 -0.09107902 0.97302465]\n", + " [-0.21269501 -0.06248699 0.97511856]\n", + " [-0.2131529 -0.03365118 0.97643916]\n", + " [-0.21333373 -0.00468399 0.97696816]\n", + " [-0.20629584 -0.20078674 0.95766733]\n", + " [-0.1798852 -0.20262142 0.96259331]\n", + " [-0.15276427 -0.20419049 0.96693812]\n", + " [-0.12504507 -0.20549514 0.97063664]\n", + " [-0.09683814 -0.20653488 0.97363531]\n", + " [-0.06825398 -0.20730818 0.97589175]\n", + " [-0.03940385 -0.20781318 0.97737455]\n", + " [-0.01040007 -0.2080483 0.97806326]\n", + " [-0.21333373 -0.00468399 0.97696816]\n", + " [-0.18599064 -0.00472909 0.98254014]\n", + " [-0.15793623 -0.00476846 0.9874378 ]\n", + " [-0.12927467 -0.004802 0.9915972 ]\n", + " [-0.10011211 -0.00482954 0.99496444]\n", + " [-0.07055816 -0.00485094 0.99749587]\n", + " [-0.04072622 -0.00486604 0.99915849]\n", + " [-0.01073294 -0.00487474 0.99993052]\n", + " [-0.01040007 -0.2080483 0.97806DEBUG:root:radec2pix: ccdpx: [[-4.44999997e+01 -4.99999751e-01]\n", + " [-4.45000003e+01 2.91928571e+02]\n", + " [-4.45000000e+01 5.84357143e+02]\n", + " [-4.44999999e+01 8.76785714e+02]\n", + " [-4.44999999e+01 1.16921429e+03]\n", + " [-4.44999999e+01 1.46164286e+03]\n", + " [-4.45000001e+01 1.75407143e+03]\n", + " [-4.45000000e+01 2.04650000e+03]\n", + " [-4.44999997e+01 -4.99999751e-01]\n", + " [ 2.47928571e+02 -5.00000271e-01]\n", + " [ 5.40357143e+02 -4.99999959e-01]\n", + " [ 8.32785714e+02 -5.00000035e-01]\n", + " [ 1.12521429e+03 -5.00000130e-01]\n", + " [ 1.41764286e+03 -5.00000295e-01]\n", + " [ 1.71007143e+03 -5.00000131e-01]\n", + " [ 2.00250000e+03 -5.00000000e-01]\n", + " [-4.45000000e+01 2.04650000e+03]\n", + " [ 2.47928571e+02 2.04650000e+03]\n", + " [ 5.40357143e+02 2.04650000e+03]\n", + " [ 8.32785714e+02 2.04650000e+03]\n", + " [ 1.12521429e+03 2.04650000e+03]\n", + " [ 1.41764286e+03 2.04650000e+03]\n", + " [ 1.71007143e+03 2.04650000e+03]\n", + " [ 2.00250000e+03 2.04650000e+03]\n", + " [ 2.00250000e+03 -5.00000000e-01]\n", + " [ 2.00250000e+03 2.91928571e+02]\n", + " [ 2.00250000e+03 5.84357143e+02]\n", + " [ 2.00250000e+03 8.767852004]]\n", + "DEBUG:root:make_az_asym: xyp: shape: (96, 2)\n", + "714e+02]\n", + " [ 2.00250000e+03 1.16921429e+03]\n", + " [ 2.00250000e+03 1.46164286e+03]\n", + " [ 2.00250000e+03 1.75407143e+03]\n", + " [ 2.00250000e+03 2.04650000e+03]\n", + " [-4.35000003e+01 1.27000000e+02]\n", + " [-4.35000001e+01 4.85400000e+02]\n", + " [-4.35000003e+01 8.43800000e+02]\n", + " [-4.34999997e+01 1.20220000e+03]\n", + " [-4.34999997e+01 1.56060000e+03]\n", + " [-4.35000002e+01 1.91900000e+03]\n", + " [ 8.29999999e+01 4.99999945e-01]\n", + " [ 4.41400000e+02 4.99999943e-01]\n", + " [ 7.99800000e+02 5.00000147e-01]\n", + " [ 1.15820000e+03 4.99999799e-01]\n", + " [ 1.51660000e+03 5.00000078e-01]\n", + " [ 1.87500000e+03 4.99999710e-01]\n", + " [ 8.30000000e+01 2.04550000e+03]\n", + " [ 4.41400000e+02 2.04550000e+03]\n", + " [ 7.99800000e+02 2.04550000e+03]\n", + " [ 1.15820000e+03 2.04550000e+03]\n", + " [ 1.51660000e+03 2.04550000e+03]\n", + " [ 1.87500000e+03 2.04550000e+03]\n", + " [ 2.00150000e+03 1.27000000e+02]\n", + " [ 2.00150000e+03 4.85400000e+02]\n", + " [ 2.00150000e+03 8.43800000e+02]\n", + " [ 2.00150000e+03 1.20220000e+03]\n", + " [ 2.00150000e+03 1.56060000e+03]\n", + " [ 2.00150000e+03 1.91900000e+03]\n", + " [-4.34999998e+01 5.00000241e-01]\n", + " [-4.34999998e+01 5.00000241e-01]\n", + " [ 2.00150000e+03 2.04550000e+03]\n", + " [ 2.00150000e+03 2.04550000e+03]\n", + " [ 8.30000001e+01 1.27000000e+02]\n", + " [ 4.41400000e+02 1.27000000e+02]\n", + " [ 7.99800000e+02 1.27000000e+02]\n", + " [ 1.15820000e+03 1.27000000e+02]\n", + " [ 1.51660000e+03 1.27000000e+02]\n", + " [ 1.87500000e+03 1.27000000e+02]\n", + " [ 8.30000000e+01 4.85400000e+02]\n", + " [ 4.41400000e+02 4.85400000e+02]\n", + " [ 7.99800000e+02 4.85400000e+02]\n", + " [ 1.15820000e+03 4.85400000e+02]\n", + " [ 1.51660000e+03 4.85400000e+02]\n", + " [ 1.87500000e+03 4.85400000e+02]\n", + " [ 8.30000001e+01 8.43800000e+02]\n", + " [ 4.41400000e+02 8.43800000e+02]\n", + " [ 7.99800000e+02 8.43800000e+02]\n", + " [ 1.15820000e+03 8.43800000e+02]\n", + " [ 1.51660000e+03 8.43800000e+02]\n", + " [ 1.87500000e+03 8.43800000e+02]\n", + " [ 8.30000001e+01 1.20220000e+03]\n", + " [ 4.41400000e+02 1.20220000e+03]\n", + " [ 7.99800000e+02 1.20220000e+03]\n", + " [ 1.15820000e+03 1.20220000e+03]\n", + " [ 1.51660000e+03 1.20220000e+03]\n", + " [ 1.87500000DEBUG:root:radec2pix: camVec: [[ 0.00110855 0.00111823 0.00112655 0.00113349 0.001139 0.00114306\n", + " 0.00114562 0.00114666 0.00110855 0.03013432 0.05904256 0.08772073\n", + " 0.11605724 0.14394136 0.17126266 0.19791015 0.00114666 0.03116962\n", + " 0.06106803 0.09072406 0.1200235 0.1488564 0.17711651 0.20469956\n", + " 0.19791015 0.19966308 0.20115603 0.20238925 0.20336191 0.20407235\n", + " 0.20451873 0.20469956 0.00121266 0.00122459 0.00123428 0.00124164\n", + " 0.00124661 0.00124912 0.01377154 0.04928181 0.08450359 0.11923105\n", + " 0.15326028 0.18638779 0.01424443 0.05097175 0.08739457 0.12330108\n", + " 0.15848878 0.192763 0.19861623 0.2005887 0.20217123 0.20336272\n", + " 0.2041602 0.2045604 0.00120792 0.00120792 0.20460634 0.20460634\n", + " 0.01382559 0.04947523 0.08483539 0.11969997 0.15386543 0.18712908\n", + " 0.01396162 0.04996174 0.08566901 0.1208763 0.15538076 0.1889821\n", + " 0.01407199 0.05035615 0.08634371 0.12182616 0.15660103 0.19047015\n", + " 0.0141DEBUG:root:radec2pix: fitpx: [[4271.49999987 4155.49999987]\n", + " [4271.49999978 3863.07142838]\n", + " [4271.49999978 3570.64285699]\n", + " [4271.50000021 3278.21428583]\n", + " [4271.50000028 2985.78571441]\n", + " [4271.50000021 2693.35714292]\n", + " [4271.50000016 2400.92857146]\n", + " [4271.5 2108.5 ]\n", + " [4271.49999987 4155.49999987]\n", + " [3979.07142882 4155.50000028]\n", + " [3686.64285714 4155.5 ]\n", + " [3394.2142857 4155.49999997]\n", + " [3101.78571428 4155.49999999]\n", + " [2809.35714281 4155.49999986]\n", + " [2516.92857145 4155.50000014]\n", + " [2224.49999999 4155.4999997 ]\n", + " [4271.5 2108.5 ]\n", + " [3979.0714288 2108.50000001]\n", + " [3686.64285693 2108.49999999]\n", + " [3394.21428614 2108.50000002]\n", + " [3101.7857146 2108.50000002]\n", + " [2809.35714263 2108.49999998]\n", + " [2516.92857131 2108.49999998]\n", + " [2224.49999992 2108.49999995]\n", + " [2224.49999999 4155.4999997 ]\n", + " [2224.50000001 3863.07142868]\n", + " [2224.5 3570.64285711]\n", + " [2224.50000002 3278.21428594]\n", + " [2224.50000001 2985.78571436]\n", + " [2224.49999998 2693.35714271]\n", + " [2224.50000001 2400.92857146]\n", + " [2224.499DEBUG:root:optics_fp: sphi: [0.70073958 0.64606768 0.57926126 0.49834142 0.40194059 0.29007134\n", + " 0.1649404 0.0313274 0.70073958 0.75081049 0.80330242 0.85632562\n", + " 0.90683747 0.95061586 0.98274331 0.99875393 0.0313274 0.03631497\n", + " 0.04315962 0.05313395 0.069014 0.09821415 0.1691786 0.5459791\n", + " 0.99875393 0.99832709 0.99763477 0.99640065 0.99386824 0.98730608\n", + " 0.96018902 0.5459791 0.67842975 0.60353431 0.50840257 0.39023062\n", + " 0.2491346 0.09026478 0.72202887 0.78522123 0.85029163 0.91212843\n", + " 0.9630057 0.99397217 0.03381828 0.04117383 0.05254813 0.07246053\n", + " 0.11619532 0.28568936 0.998564 0.99787113 0.99651836 0.99329877\n", + " 0.98218517 0.87963764 0.70073672 0.70073672 0.54790634 0.54790634\n", + " 0.7003523 0.76617231 0.83524188 0.90223637 0.95845287 0.99319172\n", + " 0.62671212 0.69894092 0.77968384 0.86389216 0.9399874 0.98993027\n", + " 0.53140435 0.60624939 0.69673956 0.80101328 0.90667588 0.98362991\n", + " 0.41062285 0.48009609 0.57202299 0.69282748 0.83927416 0.96899587\n", + " 0.26367291 0.3152909 0.38989736 0e+03 1.20220000e+03]\n", + " [ 8.30000002e+01 1.56060000e+03]\n", + " [ 4.41400000e+02 1.56060000e+03]\n", + " [ 7.99800000e+02 1.56060000e+03]\n", + " [ 1.15820000e+03 1.56060000e+03]\n", + " [ 1.51660000e+03 1.56060000e+03]\n", + " [ 1.87500000e+03 1.56060000e+03]\n", + " [ 8.29999999e+01 1.91900000e+03]\n", + " [ 4.41400000e+02 1.91900000e+03]\n", + " [ 7.99800000e+02 1.91900000e+03]\n", + " [ 1.15820000e+03 1.91900000e+03]\n", + " [ 1.51660000e+03 1.91900000e+03]\n", + " [ 1.87500000e+03 1.91900000e+03]]\n", + "DEBUG:root:make_az_asym: xyp: shape: (96, 2)\n", + "99992 2108.49999995]\n", + " [4270.5 4028. ]\n", + " [4270.50000018 3669.60000013]\n", + " [4270.49999988 3311.19999993]\n", + " [4270.50000028 2952.80000012]\n", + " [4270.5 2594.4 ]\n", + " [4270.50000006 2236.00000001]\n", + " [4143.99999986 4154.49999985]\n", + " [3785.60000014 4154.50000018]\n", + " [3427.20000004 4154.50000006]\n", + " [3068.8 4154.49999999]\n", + " [2710.39999994 4154.49999977]\n", + " [2351.99999997 4154.49999974]\n", + " [4144.00000019 2109.50000001]\n", + " [3785.59999998 2109.5 ]\n", + " [3427.19999968 2109.49999999]\n", + " [3068.80000035 2109.50000002]\n", + " [2710.39999998 2109.5 ]\n", + " [2351.99999973 2109.49999993]\n", + " [2225.50000001 4028.00000029]\n", + " [2225.50000001 3669.60000014]\n", + " [2225.50000002 3311.20000027]\n", + " [2225.50000003 2952.80000024]\n", + " [2225.49999999 2594.39999997]\n", + " [2225.49999991 2235.99999983]\n", + " [4270.50000028 4154.50000027]\n", + " [4270.50000028 4154.50000027]\n", + " [2225.50000021 2109.50000012]\n", + " [2225.50000021 2109.50000012]\n", + " [4143.99999997 4027.99999997]\n", + " [3785.60000006 4028.00000007]\n", + " [3427.20000002 4028.00000003]\n", + " [3068.8 4028.00000001]\n", + " [2710.40000007 4028.00000025]\n", + " [2352. 4028.00000001]\n", + " [4143.99999988 3669.5999999 ]\n", + " [3785.59999992 3669.59999992]\n", + " [3427.20000003 3669.60000003]\n", + " [3068.79999996 3669.59999994]\n", + " [2710.39999994 3669.59999984]\n", + " [2352.00000003 3669.60000024]\n", + " [4143.99999986 3311.19999992]\n", + " [3785.60000024 3311.20000018]\n", + " [3427.19999985 3311.19999985]\n", + " [3068.80000018 3311.20000023]\n", + " [2710.39999997 3311.19999993]\n", + " [2351.99999998 3311.19999989]\n", + " [4144.00000009 2952.80000004]\n", + " [3785.60000017 2952.80000009]\n", + " [3427.19999999 2952.79999999]\n", + " [3068.79999994 2952.79999994]\n", + " [2710.40000012 2952.80000019]\n", + " [2351.99999999 2952.79999997]\n", + " [4143.99999998 2594.4 ]\n", + " [3785.60000016 2594.40000005]\n", + " [3427.20000028 2594.40000012]\n", + " [3068.79999967 2594.39999981]\n", + " [2710.40000007 2594.40000006]\n", + " [2351.99999992 2594.39999981]\n", + " [4143.99999971 2235.99999997]\n", + " [3785.59999981 2235.99999998]\n", + " [3427.2 2236. ]\n", + " [3068.79999989 2235.99999998]\n", + " [2710.40000023 2236.00000007]\n", + " [2352.00000024 2236.00000019]]\n", + "326]\n", + " [-0.01048759 -0.18056016 0.98350803]\n", + " [-0.01056224 -0.15238099 0.98826539]\n", + " [-0.01062379 -0.12361519 0.99227336]\n", + " [-0.01067191 -0.09436952 0.99548004]\n", + " [-0.0107063 -0.06475431 0.9978438 ]\n", + " [-0.0107267 -0.03488367 0.99933381]\n", + " [-0.01073294 -0.00487474 0.99993052]\n", + " [-0.20703611 -0.1893284 0.95983895]\n", + " [-0.20908844 -0.1563645 0.96531454]\n", + " [-0.21073192 -0.12247778 0.96984084]\n", + " [-0.21196628 -0.08787247 0.97331841]\n", + " [-0.21278893 -0.05275245 0.97567313]\n", + " [-0.21319686 -0.01732329 0.976.5039234 0.68394565 0.92210851\n", + " 0.09588115 0.11634315 0.14772342 0.20168832 0.31431902 0.6442708 ]\n", + "85567]\n", + " [-0.19488162 -0.20152974 0.95989943]\n", + " [-0.16201965 -0.20359843 0.96555544]\n", + " [-0.12820231 -0.20526972 0.97027239]\n", + " [-0.09363367 -0.2065434 0.9739469 ]\n", + " [-0.05851721 -0.20741673 0.97650091]\n", + " [-0.02305821 -0.20788637 0.97788117]\n", + " [-0.20150602 -0.0048039 0.9794755 ]\n", + " [-0.16750285 -0.00485635 0.98585963]\n", + " [-0.13253465 -0.0048999 0.99116626]\n", + " [-0.0967959 -0.00493429 0.99529202]\n", + " [-0.06048842 -0.00495921 0.99815658]\n", + " [-0.02382238 -0.00497442 0.99970383]\n", + " [-0.0105395 -0.19615466 0.98051633]\n", + " [-0.01063912 -0.1619874 0.98673547]\n", + " [-0.01071899 -0.12688576 0.99185942]\n", + " [-0.01077856 -0.09104519 0.99578843]\n", + " [-0.01081726 -0.05466885 0.99844594]\n", + " [-0.01083465 -0.01796812 0.99977985]\n", + " [-0.20621357 -0.20070413 0.95770236]\n", + " [-0.20621357 -0.20070413 0.95770236]\n", + " [-0.01083565 -0.00497744 0.9999289 ]\n", + " [-0.01083565 -0.00497744 0.9999289 ]\n", + " [-0.19565571 -0.19010422 0.962070DEBUG:root:radec2pix: fitpx: [[-5.00000272e-01 -5.00000268e-01]\n", + " [-4.99999785e-01 2.91928572e+02]\n", + " [-4.99999908e-01 5.84357143e+02]\n", + " [-4.99999976e-01 8.76785714e+02]\n", + " [-4.99999814e-01 1.16921429e+03]\n", + " [-4.99999859e-01 1.46164286e+03]\n", + " [-4.99999732e-01 1.75407143e+03]\n", + " [-4.99999866e-01 2.04650000e+03]\n", + " [-5.00000272e-01 -5.00000268e-01]\n", + " [ 2.91928572e+02 -4.99999720e-01]\n", + " [ 5.84357143e+02 -5.00000140e-01]\n", + " [ 8.76785714e+02 -4.99999791e-01]\n", + " [ 1.16921429e+03 -4.99999975e-01]\n", + " [ 1.46164286e+03 -4.99999912e-01]\n", + " [ 1.75407143e+03 -4.99999978e-01]\n", + " [ 2.04650000e+03 -4.99999991e-01]\n", + " [-4.99999866e-01 2.04650000e+03]\n", + " [ 2.91928571e+02 2.04650000e+03]\n", + " [ 5.84357143e+02 2.04650000e+03]\n", + " [ 8.76785715e+02 2.04650000e+03]\n", + " [ 1.16921429e+03 2.04650000e+03]\n", + " [ 1.46164286e+03 2.04650000e+03]\n", + " [ 1.75407143e+03 2.04650000e+03]\n", + " [ 2.04650000e+03 2.04650000e+03]\n", + " [ 2.04650000e+03 -4.99999991e-01]\n", + " [ 2.04650000e+03 2.91928572e+02]\n", + " [ 2.04650000e+03 5.84357143e+02]\n", + " [ 2.04650000e+03 8.76785DEBUG:root:radec2pix: ccdpx: [[-4.45000000e+01 -5.00000033e-01]\n", + " [-4.45000003e+01 2.91928571e+02]\n", + " [-4.45000002e+01 5.84357143e+02]\n", + " [-4.44999998e+01 8.76785714e+02]\n", + " [-4.44999998e+01 1.16921429e+03]\n", + " [-4.45000001e+01 1.46164286e+03]\n", + " [-4.44999997e+01 1.75407143e+03]\n", + " [-4.45000002e+01 2.04650000e+03]\n", + " [-4.45000000e+01 -5.00000033e-01]\n", + " [ 2.47928571e+02 -4.99999990e-01]\n", + " [ 5.40357143e+02 -5.00000111e-01]\n", + " [ 8.32785714e+02 -5.00000066e-01]\n", + " [ 1.12521429e+03 -4.99999995e-01]\n", + " [ 1.41764286e+03 -5.00000140e-01]\n", + " [ 1.71007143e+03 -5.00000040e-01]\n", + " [ 2.00250000e+03 -5.00000296e-01]\n", + " [-4.45000002e+01 2.04650000e+03]\n", + " [ 2.47928572e+02 2.04650000e+03]\n", + " [ 5.40357143e+02 2.04650000e+03]\n", + " [ 8.32785714e+02 2.04650000e+03]\n", + " [ 1.12521429e+03 2.04650000e+03]\n", + " [ 1.41764286e+03 2.04650000e+03]\n", + " [ 1.71007143e+03 2.04650000e+03]\n", + " [ 2.00250000e+03 2.04650000e+03]\n", + " [ 2.00250000e+03 -5.00000296e-01]\n", + " [ 2.00250000e+03 2.91928572e+02]\n", + " [ 2.00250000e+03 5.84357143e+02]\n", + " [ 2.00250000e+03 8.76785714e+02]\n", + " [ 2.00250000e+03 1.16921429e+03]\n", + " [ 2.00250000e+03 1.46164286e+03]\n", + " [ 2.00250000e+03 1.75407143e+03]\n", + " [ 2.00250000e+03 2.04650000e+03]\n", + " [-4.34999999e+01 1.27000000e+02]\n", + " [-4.35000000e+01 4.85400000e+02]\n", + " [-4.35000001e+01 8.43800000e+02]\n", + " [-4.35000001e+01 1.20220000e+03]\n", + " [-4.34999998e+01 1.56060000e+03]\n", + " [-4.34999998e+01 1.91900000e+03]\n", + " [ 8.29999999e+01 4.99999893e-01]\n", + " [ 4.41400000e+02 5.00000055e-01]\n", + " [ 7.99800000e+02 4.99999998e-01]\n", + " [ 1.15820000e+03 5.00000122e-01]\n", + " [ 1.51660000e+03 4.99999912e-01]\n", + " [ 1.87500000e+03 5.00000160e-01]\n", + " [ 8.30000002e+01 2.04550000e+03]\n", + " [ 4.41400000e+02 2.04550000e+03]\n", + " [ 7.99800000e+02 2.04550000e+03]\n", + " [ 1.15820000e+03 2.04550000e+03]\n", + " [ 1.51660000e+03 2.04550000e+03]\n", + " [ 1.87500000e+03 2.04550000e+03]\n", + " [ 2.00150000e+03 1.27000000e+02]\n", + " [ 2.00150000e+03 4.85400000e+02]\n", + " [ 2.00150000e+03 8.43800000e+02]\n", + " [ 2.00150000e+03 1.20220000e+03]\n", + " [ 2.00150000e+03 1.56060000e+03]\n", + " [ 2.00150000e+03 1.91900000e+03]\n", + " [-4.350000DEBUG:root:radec2pix: xyfp: [[32.2358199 31.31614388]\n", + " [32.23338667 26.92971599]\n", + " [32.23095344 22.54328809]\n", + " [32.2285202 18.15686019]\n", + " [32.22608698 13.7704323 ]\n", + " [32.22365375 9.3840044 ]\n", + " [32.22122051 4.99757651]\n", + " [32.21878728 0.61114861]\n", + " [32.2358199 31.31614388]\n", + " [27.849392 31.31857712]\n", + " [23.46296411 31.32101035]\n", + " [19.07653621 31.32344358]\n", + " [14.69010831 31.3258768 ]\n", + " [10.30368042 31.32831004]\n", + " [ 5.91725252 31.33074327]\n", + " [ 1.53082462 31.3331765 ]\n", + " [32.21878728 0.61114861]\n", + " [27.83235938 0.61358184]\n", + " [23.44593149 0.61601507]\n", + " [19.0595036 0.6184483 ]\n", + " [14.6730757 0.62088153]\n", + " [10.2866478 0.62331476]\n", + " [ 5.90021991 0.625748 ]\n", + " [ 1.513792 0.62818122]\n", + " [ 1.53082462 31.3331765 ]\n", + " [ 1.52839139 26.94674861]\n", + " [ 1.52595816 22.5603207 ]\n", + " [ 1.52352493 18.17389281]\n", + " [ 1.5210917 13.78746492]\n", + " [ 1.51865847 9.40103702]\n", + " [ 1.51622524 5.01460912]\n", + " [ 1.513792 0.62818122]\n", + " [32.219759 29.4036525 ]\n", + " [32.21677684 24.02765333]\n", + " [32.21379467 18.65165415]\n", + " [32.21081251 13.27565498]\n", + "DEBUG:root:fitpix2pix: ccdpx: shape: (96, 2)\n", + "5593 0.05065593 0.08685581 0.12254563 0.15752301 0.1915915\n", + " 0.01421257 0.05085809 0.08720077 0.12302951 0.15814189 0.1923426\n", + " 0.01424114 0.05096003 0.08737459 0.12327308 0.15845303 0.1927197 ]\n", + " [-0.20853555 -0.18105588 -0.15288447 -0.12412547 -0.09488471 -0.06527159\n", + " -0.0353997 -0.00538646 -0.20853555 -0.20838958 -0.2079729 -0.20728684\n", + " -0.20633313 -0.20511339 -0.20362847 -0.2018782 -0.00538646 -0.00538259\n", + " -0.00537156 -0.00535349 -0.00532854 -0.00529689 -0.00525872 -0.00521415\n", + " -0.2018782 -0.17529764 -0.14802765 -0.12017919 -0.09186258 -0.06318839\n", + " -0.03426807 -0.00521415 -0.196646 -0.16248857 -0.12739553 -0.09156092\n", + " -0.05518617 -0.01848208 -0.20841259 -0.20805164 -0.2072855 -0.20611722\n", + " -0.20454967 -0.20258404 -0.00548838 -0.00547863 -0.00545803 -0.00542687\n", + " -0.0053855 -0.0053342 -0.19038695 -0.15733098 -0.12334981 -0.08864677\n", + " -0.05342545 -0.01789151 -0.20844284 -0.20844284 -0.00531377 -0.00531377\n", + " -0.19661746 -0.19627694 -0.19555447 -0.19445357 -0.19297773 -0.19112874\n", + " -0.1624649 -0.16218264 -0.16158454 -0.16067502 -0.15945889 -0.15793949\n", + " -0.12737685 -0.12715419 -0.12668294 -0.12596768 -0.12501365 -0.12382499\n", + " -0.0915474 -0.09138626 -0.09104555 -0.09052922 -0.08984197 -0.08898771\n", + " -0.05517797 -0.05508029 -0.05487388 -0.05456144 -0.05414617 -0.05363087\n", + " -0.01847933 -0.01844651 -0.01837718 -0.0182723 -0.018133 -0.01796031]\n", + " [ 0.97801416 0.98347217 0.98824343 0.99226588 0.99548762 0.99786688\n", + " 0.99937258 0.99998484 0.97801416 0.97758156 0.97635099 0.97433939\n", + " 0.97157468 0.96809575 0.96395256 0.95920632 0.99998484 0.99949962\n", + " 0.99811915 0.99586168 0.99275675 0.98884464 0.98417584 0.97881096\n", + " 0.95920632 0.96405674 0.9683099 0.97190306 0.97478469 0.97691438\n", + " 0.97826264 0.97881096 0.9804738 0.98670967 0.99185123 0.9957987\n", + " 0.9984753 0.99982841 0.97794404 0.97687554 0.97462396 0.97123615\n", + " 0.9667837 0.96136325 0.99988348 0.DEBUG:root:make_az_asym: xyp: shape: (96, 2)\n", + "99868507 0.99615882 0.99235447\n", + " 0.98734609 0.98123085 0.96140751 0.96695974 0.97155114 0.97508223\n", + " 0.97747856 0.97869042 0.97803381 0.97803381 0.97882992 0.97882992\n", + " 0.9803828 0.97929953 0.97701659 0.97358088 0.96906399 0.96356241\n", + " 0.98661554 0.98549511 0.98313339 0.97957769 0.97489983 0.969196\n", + " 0.99175456 0.99060389 0.98817822 0.98452554 0.97971818 0.9738524\n", + " 0.9957001 0.99452628 0.9920518 0.98832537 0.98342001 0.97743229\n", + " 0.99837538 0.99718585 0.99467828 0.99090201 0.9859307 0.97986124\n", + " 0.99972782 0.99853032 0.996006 0.99220455 0.9872 0.98108947]]\n", + "28]\n", + " [-0.16265759 -0.19204948 0.96781171]\n", + " [-0.12870452 -0.19362274 0.97259724]\n", + " [-0.09399937 -0.19482286 0.9763238 ]\n", + " [-0.05874512 -0.19564642 0.97891342]\n", + " [-0.0231472 -0.1960896 0.98031274]\n", + " [-0.19758845 -0.15700026 0.96763099]\n", + " [-0.16425347 -0.15859759 0.97358492]\n", + " [-0.12996305 -0.1598933 0.97854164]\n", + " [-0.09491705 715e+02]\n", + " [ 2.04650000e+03 1.16921429e+03]\n", + " [ 2.04650000e+03 1.46164286e+03]\n", + " [ 2.04650000e+03 1.75407143e+03]\n", + " [ 2.04650000e+03 2.04650000e+03]\n", + " [ 5.00000192e-01 1.27000000e+02]\n", + " [ 4.99999990e-01 4.85400000e+02]\n", + " [ 4.99999881e-01 8.43800000e+02]\n", + " [ 5.00000044e-01 1.20220000e+03]\n", + " [ 4.99999938e-01 1.56060000e+03]\n", + " [ 5.00000069e-01 1.91900000e+03]\n", + " [ 1.27000000e+02 5.00000092e-01]\n", + " [ 4.85400000e+02 4.99999764e-01]\n", + " [ 8.43800000e+02 4.99999911e-01]\n", + " [ 1.20220000e+03 5.00000156e-01]\n", + " [ 1.56060000e+03 4.99999840e-01]\n", + " [ 1.91900000e+03 4.99999915e-01]\n", + " [ 1.27000000e+02 2.04550000e+03]\n", + " [ 4.85400000e+02 2.04550000e+03]\n", + " [ 8.43800000e+02 2.04550000e+03]\n", + " [ 1.20220000e+03 2.04550000e+03]\n", + " [ 1.56060000e+03 2.04550000e+03]\n", + " [ 1.91900000e+03 2.04550000e+03]\n", + " [ 2.04550000e+03 1.27000000e+02]\n", + " [ 2.04550000e+03 4.85400000e+02]\n", + " [ 2.04550000e+03 8.43800000e+02]\n", + " [ 2.04550000e+03 1.20220000e+03]\n", + " [ 2.04550000e+03 1.56060000e+03]\n", + " [ 2.04550000e+03 1.91900000e+03]\n", + " [ 4.999999DEBUG:root:fitpix2pix: visCut: True\n", + "57e-01 4.99999958e-01]\n", + " [ 4.99999957e-01 4.99999958e-01]\n", + " [ 2.04550000e+03 2.04550000e+03]\n", + " [ 2.04550000e+03 2.04550000e+03]\n", + " [ 1.27000000e+02 1.27000000e+02]\n", + " [ 4.85400000e+02 1.27000000e+02]\n", + " [ 8.43800000e+02 1.27000000e+02]\n", + " [ 1.20220000e+03 1.27000000e+02]\n", + " [ 1.56060000e+03 1.27000000e+02]\n", + " [ 1.91900000e+03 1.27000000e+02]\n", + " [ 1.27000000e+02 4.85400000e+02]\n", + " [ 4.85400000e+02 4.85400000e+02]\n", + " [ 8.43800000e+02 4.85400000e+02]\n", + " [ 1.20220000e+03 4.85400000e+02]\n", + " [ 1.56060000e+03 4.85400000e+02]\n", + " [ 1.91900000e+03 4.85400000e+02]\n", + " [ 1.27000000e+02 8.43800000e+02]\n", + " [ 4.85400000e+02 8.43800000e+02]\n", + " [ 8.43800000e+02 8.43800000e+02]\n", + " [ 1.20220000e+03 8.43800000e+02]\n", + " [ 1.56060000e+03 8.43800000e+02]\n", + " [ 1.91900000e+03 8.43800000e+02]\n", + " [ 1.27000000e+02 1.20220000e+03]\n", + " [ 4.85400000e+02 1.20220000e+03]\n", + " [ 8.43800000e+02 1.20220000e+03]\n", + " [ 1.20220000e+03 1.20220000e+03]\n", + " [ 1.56060000e+03 1.20220000e+03]\n", + " [ 1.91900000e+03 1.20220000e+03]\n", + " [ 1.27000000e+02 1.56060000e+03]\n", + " [ 4.85400000e+02 1.56060000e+03]\n", + " [ 8.43800000e+02 1.56060000e+03]\n", + " [ 1.20220000e+03 1.56060000e+03]\n", + " [ 1.56060000e+03 1.56060000e+03]\n", + " [ 1.91900000e+03 1.56060000e+03]\n", + " [ 1.27000000e+02 1.91900000e+03]\n", + " [ 4.85400000e+02 1.91900000e+03]\n", + " [ 8.43800000e+02 1.91900000e+03]\n", + " [ 1.20220000e+03 1.91900000e+03]\n", + " [ 1.56060000e+03 1.91900000e+03]\n", + " [ 1.91900000e+03 1.91900000e+03]]\n", + " [32.20783035 7.89965581]\n", + " [32.20484818 2.52365664]\n", + " [30.32331188 31.30220479]\n", + " [24.9473127 31.30518695]\n", + " [19.57131353 31.30816912]\n", + " [14.19531435 31.31115127]\n", + " [ 8.81931518 31.31413344]\n", + " [ 3.44331601 31.3171156 ]\n", + " [30.3062959 0.62720951]\n", + " [24.93029672 0.63019167]\n", + " [19.55429755 0.63317383]\n", + " [14.17829838 0.636156 ]\n", + " [ 8.80229921 0.63913816]\n", + " [ 3.42630004 0.64212033]\n", + " [ 1.54476372 29.42066847]\n", + " [ 1.54178156 24.0446693 ]\n", + " [ 1.53879939 18.66867013]\n", + " [ 1.53581723 13.29267096]\n", + " [ 1.53283507 7.91667178]\n", + " [ 1.5298529 2.54067261]\n", + " [32.22081158 31.30115221]\n", + " [32.22081158 31.30115221]\n", + " [ 1.52880032 0.6431729 ]\n", + " [ 1.52880032 0.6431729 ]\n", + " [30.32225929 29.40470508]\n", + " [24.94626012 29.40768724]\n", + " [19.57026095 29.41066941]\n", + " [14.19426178 29.41365157]\n", + " [ 8.8182626 29.41663373]\n", + " [ 3.44226343 29.4196159 ]\n", + " [30.31927713 24.02870591]\n", + " [24.94327796 24.03168807]\n", + " [19.56727878 24.03467023]\n", + " [14.19127961 24.0376524 ]\n", + " [ 8.81528044 24.04063456]\n", + " [ 3.43928127 24.04361672]\n", + " [30.31629496 18.65270673]\n", + " [24.9402958 18.6556889 ]\n", + " [19.56429662 18.65867106]\n", + " [14.18829744 18.66165322]\n", + " [ 8.81229827 18.66463538]\n", + " [ 3.4362991 18.66761755]\n", + " [30.31331281 13.27670756]\n", + " [24.93731363 13.27968972]\n", + " [19.56131446 13.28267189]\n", + " [14.18531529 13.28565406]\n", + " [ 8.80931611 13.28863621]\n", + " [ 3.43331694 13.29161838]\n", + " [30.31033064 7.90070839]\n", + " [24.93433147 7.90369055]\n", + " [19.55833229 7.90667271]\n", + " [14.18233312 7.90965488]\n", + " [ 8.80633395 7.91263704]\n", + " [ 3.43033477 7.9156192 ]\n", + " [30.30734847 2.52470921]\n", + " [24.9313493 2.52769138]\n", + " [19.55535013 2.53067354]\n", + " [14.17935096 2.53365571]\n", + " [ 8.80335178 2.53663787]\n", + " [ 3.42735261 2.53962004]]\n", + "DEBUG:root:radec2pix: xyfp: [[ -0.167405 31.491388 ]\n", + " [ -0.167405 27.10495943]\n", + " [ -0.167405 22.71853086]\n", + " [ -0.167405 18.33210229]\n", + " [ -0.167405 13.94567372]\n", + " [ -0.167405 9.55924515]\n", + " [ -0.167405 5.17281657]\n", + " [ -0.167405 0.786388 ]\n", + " [ -0.167405 31.491388 ]\n", + " [ -4.55383357 31.491388 ]\n", + " [ -8.94026214 31.491388 ]\n", + " [-13.32669071 31.491388 ]\n", + " [-17.71311928 31.491388 ]\n", + " [-22.09954786 31.491388 ]\n", + " [-26.48597643 31.491388 ]\n", + " [-30.872405 31.491388 ]\n", + " [ -0.167405 0.786388 ]\n", + " [ -4.55383357 0.786388 ]\n", + " [ -8.94026214 0.786388 ]\n", + " [-13.32669071 0.786388 ]\n", + " [-17.71311929 0.786388 ]\n", + " [-22.09954786 0.786388 ]\n", + " [-26.48597643 0.786388 ]\n", + " [-30.872405 0.786388 ]\n", + " [-30.872405 31.491388 ]\n", + " [-30.872405 27.10495943]\n", + " [-30.872405 22.71853086]\n", + " [-30.872405 18.33210229]\n", + " [-30.872405 13.94567371]\n", + " [-30.872405 9.55924514]\n", + " [-30.872405 5.17281657]\n", + " [-30.872405 0.786388 ]\n", + " [ -0.182405 29.578888 ]\n", + " [ -0.182405 24.202888 ]\n", + " [ -0.182405 18.826888 ]\n", + " [ -0.182405 13.450888 ]\n", + " [ -0.182405 8.074888 ]\n", + " [ -0.182405 2.698888 ]\n", + " [ -2.079905 31.476388 ]\n", + " [ -7.455905 31.476388 ]\n", + " [-12.831905 31.476388 ]\n", + " [-18.207905 31.476388 ]\n", + " [-23.583905 31.476388 ]\n", + " [-28.959905 31.476388 ]\n", + " [ -2.079905 0.801388 ]\n", + " [ -7.455905 0.801388 ]\n", + " [-12.831905 0.801388 ]\n", + " [-18.207905 0.801388 ]\n", + " [-23.583905 0.801388 ]\n", + " [-28.959905 0.801388 ]\n", + " [-30.857405 29.578888 ]\n", + " [-30.857405 24.202888 ]\n", + " [-30.857405 18.826888 ]\n", + " [-30.857405 13.450888 ]\n", + " [-30.857405 8.074888 ]\n", + " [-30.857405 2.698888 ]\n", + " [ -0.182405 31.476388 ]\n", + " [ -0.182405 31.476388 ]\n", + " [-30.857405 0.801388 ]\n", + " [-30.857405 0.801388 ]\n", + " [ -2.079905 29.578888 ]\n", + " [ -7.455905 29.578888 ]\n", + " [-12.831905 29.578888 ]\n", + " [-18.207905 29.578888 ]\n", + " [-23.583905 29.578888 ]\n", + " [-28.959905 29.578888 ]\n", + " [ -2.079905 24.202888 ]\n", + " [ -7.455905 24.202888 ]\n", + " [-12.831905 24.202888 ]\n", + " [-18.207905 24.202888 ]\n", + " [-23.583905 24.202888 ]\n", + " [-28.959905 24.202888 ]\n", + " [ -2.079905 18.826888 ]\n", + " [ -7.455905 18.826888 ]\n", + " [-12.831905 18.826888 ]\n", + " [-18.207905 18.826888 ]\n", + " [-23.583905 18.826888 ]\n", + " [-28.959905 18.826888 ]\n", + " [ -2.079905 13.450888 ]\n", + " [ -7.455905 13.450888 ]\n", + " [-12.831905 13.450888 ]\n", + " [-18.207905 13.450888 ]\n", + " [-23.583905 13.450888 ]\n", + " [-28.959905 13.450888 ]\n", + " [ -2.079905 8.074888 ]\n", + " [ -7.455905 8.074888 ]\n", + " [-12.831905 8.074888 ]\n", + " [-18.20790499 8.074888 ]\n", + " [-23.583905 8.074888 ]\n", + " [-28.959905 8.074888 ]\n", + " [ -2.079905 2.698888 ]\n", + " [ -7.455905 2.698888 ]\n", + " [-12.831905 2.698888 ]\n", + " [-18.207905 2.698888 ]\n", + " [-23.583905 2.698888 ]\n", + " [-28.959905 2.698888 ]]\n", + "DEBUG:root:radec2pix: fitpx: [[-4.99999744e-01 -4.99999751e-01]\n", + " [-5.00000258e-01 2.91928571e+02]\n", + " [-5.00000005e-01 5.84357143e+02]\n", + " [-4.99999941e-01 8.76785714e+02]\n", + " [-4.99999889e-01 1.16921429e+03]\n", + " [-4.99999948e-01 1.46164286e+03]\n", + " [-5.00000143e-01 1.75407143e+03]\n", + " [-4.99999962e-01 2.04650000e+03]\n", + " [-4.99999744e-01 -4.99999751e-01]\n", + " [ 2.91928571e+02 -5.00000271e-01]\n", + " [ 5.84357143e+02 -4.99999959e-01]\n", + " [ 8.76785714e+02 -5.00000035e-01]\n", + " [ 1.16921429e+03 -5.00000130e-01]\n", + " [ 1.46164286e+03 -5.00000295e-01]\n", + " [ 1.75407143e+03 -5.00000131e-01]\n", + " [ 2.04650000e+03 -5.00000000e-01]\n", + " [-4.99999962e-01 2.04650000e+03]\n", + " [ 2.91928571e+02 2.04650000e+03]\n", + " [ 5.84357143e+02 2.04650000e+03]\n", + " [ 8.76785714e+02 2.04650000e+03]\n", + " [ 1.16921429e+03 2.04650000e+03]\n", + " [ 1.46164286e+03 2.04650000e+03]\n", + " [ 1.75407143e+03 2.04650000e+03]\n", + " [ 2.04650000e+03 2.04650000e+03]\n", + " [ 2.04650000e+03 -5.00000000e-01]\n", + " [ 2.04650000e+03 2.91928571e+02]\n", + " [ 2.04650000e+03 5.84357143e+02]\n", + " [ 2.04650000e+03 8.76785714e+02]\n", + " [ 2.04650000e+03 1.16921429e+03]\n", + " [ 2.04650000e+03 1.46164286e+03]\n", + " [ 2.04650000e+03 1.75407143e+03]\n", + " [ 2.04650000e+03 2.04650000e+03]\n", + " [ 4.99999741e-01 1.27000000e+02]\n", + " [ 4.99999873e-01 4.85400000e+02]\n", + " [ 4.99999712e-01 8.43800000e+02]\n", + " [ 5.00000277e-01 1.20220000e+03]\n", + " [ 5.00000282e-01 1.56060000e+03]\n", + " [ 4.99999780e-01 1.91900000e+03]\n", + " [ 1.27000000e+02 4.99999945e-01]\n", + " [ 4.85400000e+02 4.99999943e-01]\n", + " [ 8.43800000e+02 5.00000147e-01]\n", + " [ 1.20220000e+03 4.99999799e-01]\n", + " [ 1.56060000e+03 5.00000078e-01]\n", + " [ 1.91900000e+03 4.99999710e-01]\n", + " [ 1.27000000e+02 2.04550000e+03]\n", + " [ 4.85400000e+02 2.04550000e+03]\n", + " [ 8.43800000e+02 2.04550000e+03]\n", + " [ 1.20220000e+03 2.04550000e+03]\n", + " [ 1.56060000e+03 2.04550000e+03]\n", + " [ 1.91900000e+03 2.04550000e+03]\n", + " [ 2.04550000e+03 1.27000000e+02]\n", + " [ 2.04550000e+03 4.85400000e+02]\n", + " [ 2.04550000e+03 8.43800000e+02]\n", + " [ 2.04550000e+03 1.20220000e+03]\n", + " [ 2.04550000e+03 1.56060000e+03]\n", + " [ 2.04550000e+03 1.91900000e+03]\n", + " [ 5.00000247e-01 5.00000241e-01]\n", + " [ 5.00000247e-01 5.00000241e-01]\n", + " [ 2.04550000e+03 2.04550000e+03]\n", + " [ 2.04550000e+03 2.04550000e+03]\n", + " [ 1.27000000e+02 1.27000000e+02]\n", + " [ 4.85400000e+02 1.27000000e+02]\n", + " [ 8.43800000e+02 1.27000000e+02]\n", + " [ 1.20220000e+03 1.27000000e+02]\n", + " [ 1.56060000e+03 1.27000000e+02]\n", + " [ 1.91900000e+03 1.27000000e+02]\n", + " [ 1.27000000e+02 4.85400000e+02]\n", + " [ 4.85400000e+02 4.85400000e+02]\n", + " [ 8.43800000e+02 4.85400000e+02]\n", + " [ 1.20220000e+03 4.85400000e+02]\n", + " [ 1.56060000e+03 4.85400000e+02]\n", + " [ 1.91900000e+03 4.85400000e+02]\n", + " [ 1.27000000e+02 8.43800000e+02]\n", + " [ 4.85400000e+02 8.43800000e+02]\n", + " [ 8.43800000e+02 8.43800000e+02]\n", + " [ 1.20220000e+03 8.43800000e+02]\n", + " [ 1.56060000e+03 8.43800000e+02]\n", + " [ 1.91900000e+03 8.43800000e+02]\n", + " [ 1.27000000e+02 1.20220000e+03]\n", + " [ 4.85400000e+02 1.20220000e+03]\n", + " [ 8.43800000e+02 1.20220000e+03]\n", + " [ 1.20220000e+03 1.20220000e+03]\n", + " [ 1.56060000e+03 1.20220000e+03]\n", + " [ 1.91900000e+03 1.20220000e+03]\n", + " [ 1.27000000e+02 1.56060000e+03]\n", + " [ 4.85400000e+02 1.56060000e+03]\n", + " [ 8.43800000e+02 1.56060000e+03]\n", + " [ 1.20220000e+03 1.56060000e+03]\n", + " [ 1.56060000e+03 1.56060000e+03]\n", + " [ 1.91900000e+03 1.56060000e+03]\n", + " [ 1.27000000e+02 1.91900000e+03]\n", + " [ 4.85400000e+02 1.91900000e+03]\n", + " [ 8.43800000e+02 1.91900000e+03]\n", + " [ 1.20220000e+03 1.91900000e+03]\n", + " [ 1.56060000e+03 1.91900000e+03]\n", + " [ 1.91900000e+03 1.91900000e+03]]\n", + "DEBUG:root:optics_fp: xyfp: [[-32.29046994 -31.71666141]\n", + " [-32.28860507 -27.33023323]\n", + " [-32.2867402 -22.94380505]\n", + " [-32.28487534 -18.55737688]\n", + " [-32.28301047 -14.1709487 ]\n", + " [-32.2811456 -9.78452053]\n", + " [-32.27928073 -5.39809235]\n", + " [-32.27741587 -1.01166418]\n", + " [-32.29046994 -31.71666141]\n", + " [-27.90404176 -31.71852627]\n", + " [-23.51761359 -31.72039114]\n", + " [-19.13118541 -31.722256 ]\n", + " [-14.74475724 -31.72412087]\n", + " [-10.35832906 -31.72598574]\n", + " [ -5.97190089 -31.72785061]\n", + " [ -1.58547272 -31.72971547]\n", + " [-32.27741587 -1.01166418]\n", + " [-27.8909877 -1.01352905]\n", + " [-23.50455952 -1.01539391]\n", + " [-19.11813134 -1.01725878]\n", + " [-14.73170317 -1.01912365]\n", + " [-10.345275 -1.02098851]\n", + " [ -5.95884682 -1.02285338]\n", + " [ -1.57241864 -1.02471825]\n", + " [ -1.58547272 -31.72971547]\n", + " [ -1.58360785 -27.3432873 ]\n", + " [ -1.58174298 -22.95685912]\n", + " [ -1.57987811 -18.57043094]\n", + " [ -1.57801325 -14.18400278]\n", + " [ -1.57614838 -9.7975746 ]\n", + " [ -1.57428351 -5.41114642]\n", + " [ -1.57241864 -1.02471825]\n", + " [-32.27465685 -29.80416795]\n", + " [-32.27237127 -24.42816844]\n", + " [-32.2700857 -19.05216893]\n", + " [-32.26780012 -13.67616941]\n", + " [-32.26551454 -8.3001699 ]\n", + " [-32.26322896 -2.92417038]\n", + " [-30.37796373 -31.70247449]\n", + " [-25.00196422 -31.70476008]\n", + " [-19.62596471 -31.70704565]\n", + " [-14.24996519 -31.70933123]\n", + " [ -8.87396568 -31.71161681]\n", + " [ -3.49796617 -31.71390239]\n", + " [-30.36492242 -1.02747727]\n", + " [-24.98892291 -1.02976285]\n", + " [-19.61292339 -1.03204842]\n", + " [-14.23692388 -1.034334 ]\n", + " [ -8.86092437 -1.03661958]\n", + " [ -3.48492485 -1.03890516]\n", + " [ -1.59965962 -29.81720927]\n", + " [ -1.59737405 -24.44120975]\n", + " [ -1.59508847 -19.06521024]\n", + " [ -1.59280289 -13.68921073]\n", + " [ -1.59051731 -8.31321121]\n", + " [ -1.58823174 -2.9372117 ]\n", + " [-32.27546357 -31.70166778]\n", + " [-32.27546357 -31.70166778]\n", + " [ -1.58742502 -1.03971187]\n", + " [ -1.58742502 -1.03971187]\n", + " [-30.37715702 -29.80497466]\n", + " [-25.00115751 -29.80726024]\n", + " [-19.625158 -29.80954582]\n", + " [-14.24915848 -29.8118314 ]\n", + " [ -8.87315897 -29.81411698]\n", + " [ -3.49715945 -29.81640256]\n", + " [-30.37487145 -24.42897515]\n", + " [-24.99887193 -24.43126073]\n", + " [-19.62287241 -24.43354631]\n", + " [-14.2468729 -24.43583188]\n", + " [ -8.87087339 -24.43811746]\n", + " [ -3.49487388 -24.44040305]\n", + " [-30.37258587 -19.05297564]\n", + " [-24.99658635 -19.05526122]\n", + " [-19.62058684 -19.05754679]\n", + " [-14.24458732 -19.05983237]\n", + " [ -8.86858781 -19.06211795]\n", + " [ -3.4925883 -19.06440353]\n", + " [-30.37030029 -13.67697612]\n", + " [-24.99430077 -13.6792617 ]\n", + " [-19.61830126 -13.68154728]\n", + " [-14.24230175 -13.68383286]\n", + " [ -8.86630223 -13.68611844]\n", + " [ -3.49030272 -13.68840401]\n", + " [-30.36801471 -8.30097661]\n", + " [-24.9920152 -8.30326219]\n", + " [-19.61601568 -8.30554776]\n", + " [-14.24001617 -8.30783335]\n", + " [ -8.86401666 -8.31011893]\n", + " [ -3.48801714 -8.3124045 ]\n", + " [-30.36572914 -2.9249771 ]\n", + " [-24.98972962 -2.92726267]\n", + " [-19.6137301 -2.92954825]\n", + " [-14.23773059 -2.93183383]\n", + " [ -8.86173108 -2.93411941]\n", + " [ -3.48573156 -2.93640499]]\n", + "-0.16088429 0.98239859]\n", + " [-0.05931746 -0.1615658 0.98507763]\n", + " [-0.02337052 -0.16193328 0.98652493]\n", + " [-0.19913769 -0.12297381 0.97222509]\n", + " [-0.16553623 -0.12422245 0.97834888]\n", + " [-0.13097704 -0.12523802 0.98344316]\n", + " [-0.09565767 -0.12601654 0.98740541]\n", + " [-0.05977969 -0.12655298 0.99015692]\n", + " [-0.02355053 -0.12684288 0.99164321]\n", + " [-0.20030226 -0.088228 0.97575346]\n", + " [-0.16650264 -0.0891244 0.98200495]\n", + " [-0.13174231 -0.0898551 0.98720313]\n", + " [-0.09621721 -0.09041635 0.99124524]\n", + " [-0.0601289 -0.09080384 0.9940519 ]\n", + " [-0.023686 -0.09101389 0.9955679 ]\n", + " [-0.20107886 -0.05296627 0.97814205]\n", + " [-0.16714801 -0.0535061 0.98447887]\n", + " [-0.13225382 -0.05394701 0.98974676]\n", + " [-0.09659125 -0.05428637 0.9938426 ]\n", + " [-0.06036201 -0.05452132 0.99668644]\n", + " [-0.02377567 -0.05464944 0.9982225 ]\n", + " [-0.201464 -0.01739439 0.97934146]\n", + " [-0.16746808 -0.0175743 0.98572085]\n", + " [-0.13250731 -0.01772184 0.99102359]\n", + " [-0.0967762 -0.01783608 0.99514634]\n", + " [-0.06047657 -0.01791601 0.99800882]\n", + " [-0.02381854 -0.0179608 0.99955494]]\n", + "DEBUG:root:radec2pix: camVec Shape: (3, 96)\n", + "DEBUG:root:optics_fp: xyfp shape: (96, 2)\n", + "DEBUG:root:radec2pix: lng: [224.22465666 219.9428498 215.04979529 209.49258103 203.25301711\n", + " 196.37209253 188.97143587 181.25779309 224.22465666 228.40166279\n", + " 233.19815281 238.6792283 244.87949815 251.77642798 259.26349599\n", + " 267.13824006 181.25779309 181.45651552 181.7293675 182.12731457\n", + " 182.76188514 183.93294711 186.8134933 204.42682228 267.13824006\n", + " 266.67578867 266.03490179 265.0879329 263.54803827 260.61180811\n", + " 252.90738353 204.42682228 222.44199402 216.7905754 210.16523251\n", + " 202.51687812 193.92347078 184.64535837 225.96080389 231.48791131\n", + " 238.01293878 245.61347707 254.24497485 263.67077373 181.36567301\n", + " 181.66068982 182.11730117 182.91819426 184.68697431 191.79462375\n", + " 266.92442169 266.24228499 265.17126169 263.2483557 258.80752919\n", + " 238.9103071 224.22429417 224.22429417 204.67204832 204.67204832\n", + " 224.17550953 229.73684595 236.38729877 244.24332674 253.28700279\n", + " 263.26773103 218.4700285 223.99636381 230.89540499 239.46063162\n", + " 249.83973486 261.78766678 211.69663969 216.8854629 223.71683254\n", + " 232.7982941 244.71540545 259.48183646 203.77225927 208.15895021\n", + " 214.29602039 223.21973304 236.48809111 255.41258234 194.75709541\n", + " 197.7504966 202.19079752 209.33692857 222.08957905 246.48817507\n", + " 184.93467768 185.99075879 187.61766642 190.44256036 196.50176943\n", + " 217.01878407]\n", + "01e+01 4.99999931e-01]\n", + " [-4.35000001e+01 4.99999931e-01]\n", + " [ 2.00150000e+03 2.04550000e+03]\n", + " [ 2.00150000e+03 2.04550000e+03]\n", + " [ 8.30000000e+01 1.27000000e+02]\n", + " [ 4.41400000e+02 1.27000000e+02]\n", + " [ 7.99800000e+02 1.27000000e+02]\n", + " [ 1.15820000e+03 1.27000000e+02]\n", + " [ 1.51660000e+03 1.27000000e+02]\n", + " [ 1.87500000e+03 1.27000000e+02]\n", + " [ 8.29999999e+01 4.85400000e+02]\n", + " [ 4.41400000e+02 4.85400000e+02]\n", + " [ 7.99800000e+02 4.85400000e+02]\n", + " [ 1.15820000e+03 4.85400000e+02]\n", + " [ 1.51660000e+03 4.85400000e+02]\n", + " DEBUG:root:make_az_asym: xyp: [[-32.29046994 -31.71666141]\n", + " [-32.28860507 -27.33023323]\n", + " [-32.2867402 -22.94380505]\n", + " [-32.28487534 -18.55737688]\n", + " [-32.28301047 -14.1709487 ]\n", + " [-32.2811456 -9.78452053]\n", + " [-32.27928073 -5.39809235]\n", + " [-32.27741587 -1.01166418]\n", + " [-32.29046994 -31.71666141]\n", + " [-27.90404176 -31.71852627]\n", + " [-23.51761359 -31.72039114]\n", + " [-19.13118541 -31.722256 ]\n", + " [-14.74475724 -31.72412087]\n", + " [-10.35832906 -31.72598574]\n", + " [ -5.97190089 -31.72785061]\n", + " [ -1.58547272 -31.72971547]\n", + " [-32.27741587 -1.01166418]\n", + " [-27.8909877 -1.01352905]\n", + " [-23.50455952 -1.01539391]\n", + " [-19.11813134 -1.01725878]\n", + " [-14.73170317 -1.01912365]\n", + " [-10.345275 -1.02098851]\n", + " [ -5.95884682 -1.02285338]\n", + " [ -1.57241864 -1.02471825]\n", + " [ -1.58547272 -31.72971547]\n", + " [ -1.58360785 -27.3432873 ]\n", + " [ -1.58174298 -22.95685912]\n", + " [ -1.57987811 -18.57043094]\n", + " [ -1.57801325 -14.18400278]\n", + " [ -1.57614838 -9.7975746 ]\n", + " [ -1.57428351 -5.41114642]\n", + " [ -1.57241864 -1.02471825]\n", + " [-32.27465685 -29.80416795]\n", + " [-32.2723712DEBUG:root:fitpix2pix: ccdpx: shape: (96, 2)\n", + "7 -24.42816844]\n", + " [-32.2700857 -19.05216893]\n", + " [-32.26780012 -13.67616941]\n", + " [-32.26551454 -8.3001699 ]\n", + " [-32.26322896 -2.92417038]\n", + " [-30.37796373 -31.70247449]\n", + " [-25.00196422 -31.70476008]\n", + " [-19.62596471 -31.70704565]\n", + " [-14.24996519 -31.70933123]\n", + " [ -8.87396568 -31.71161681]\n", + " [ -3.49796617 -31.71390239]\n", + " [-30.36492242 -1.02747727]\n", + " [-24.98892291 -1.02976285]\n", + " [-19.61292339 -1.03204842]\n", + " [-14.23692388 -1.034334 ]\n", + " [ -8.86092437 -1.03661958]\n", + " [ -3.48492485 -1.03890516]\n", + " [ -1.59965962 -29.81720927]\n", + " [ -1.59737405 -24.44120975]\n", + " [ -1.59508847 -19.06521024]\n", + " [ -1.59280289 -13.68921073]\n", + " [ -1.59051731 -8.31321121]\n", + " [ -1.58823174 -2.9372117 ]\n", + " [-32.27546357 -31.70166778]\n", + " [-32.27546357 -31.70166778]\n", + " [ -1.58742502 -1.03971187]\n", + " [ -1.58742502 -1.03971187]\n", + " [-30.37715702 -29.80497466]\n", + " [-25.00115751 -29.80726024]\n", + " [-19.625158 -29.80954582]\n", + " [-14.24915848 -29.8118314 ]\n", + " [ -8.87315897 -29.81411698]\n", + " [ -3.49715945 -29.81640256]\n", + " [-30.37487DEBUG:root:fitpix2pix: ccdpx: shape: (96, 2)\n", + "145 -24.42897515]\n", + " [-24.99887193 -24.43126073]\n", + " [-19.62287241 -24.43354631]\n", + " [-14.2468729 -24.43583188]\n", + " [ -8.87087339 -24.43811746]\n", + " [ -3.49487388 -24.44040305]\n", + " [-30.37258587 -19.05297564]\n", + " [-24.99658635 -19.05526122]\n", + " [-19.62058684 -19.05754679]\n", + " [-14.24458732 -19.05983237]\n", + " [ -8.86858781 -19.06211795]\n", + " [ -3.4925883 -19.06440353]\n", + " [-30.37030029 -13.67697612]\n", + " [-24.99430077 -13.6792617 ]\n", + " [-19.61830126 -13.68154728]\n", + " [-14.24230175 -13.68383286]\n", + " [ -8.86630223 -13.68611844]\n", + " [ -3.49030272 -13.68840401]\n", + " [-30.36801471 -8.30097661]\n", + " [-24.9920152 -8.30326219]\n", + " [-19.61601568 -8.30554776]\n", + " [-14.24001617 -8.30783335]\n", + " [ -8.86401666 -8.31011893]\n", + " [ -3.48801714 -8.3124045 ]\n", + " [-30.36572914 -2.9249771 ]\n", + " [-24.98972962 -2.92726267]\n", + " [-19.6137301 -2.92954825]\n", + " [-14.23773059 -2.93183383]\n", + " [ -8.86173108 -2.93411941]\n", + " [ -3.48573156 -2.93640499]]\n", + "DEBUG:root:radec2pix: lat: [73.26908943 74.24907619 75.16003276 75.97420276 76.66164507 77.1920DEBUG:root:radec2pix: xyfp: [[-32.208296 -31.60697943]\n", + " [-32.20831882 -27.22055086]\n", + " [-32.20834163 -22.83412229]\n", + " [-32.20836444 -18.44769372]\n", + " [-32.20838725 -14.06126515]\n", + " [-32.20841007 -9.67483658]\n", + " [-32.20843288 -5.288408 ]\n", + " [-32.2084557 -0.90197943]\n", + " [-32.208296 -31.60697943]\n", + " [-27.82186743 -31.60695662]\n", + " [-23.43543886 -31.60693381]\n", + " [-19.04901029 -31.60691099]\n", + " [-14.66258171 -31.60688818]\n", + " [-10.27615314 -31.60686536]\n", + " [ -5.88972457 -31.60684255]\n", + " [ -1.503296 -31.60681974]\n", + " [-32.2084557 -0.90197943]\n", + " [-27.82202712 -0.90195662]\n", + " [-23.43559855 -0.9019338 ]\n", + " [-19.04916999 -0.90191099]\n", + " [-14.66274141 -0.90188818]\n", + " [-10.27631284 -0.90186536]\n", + " [ -5.88988428 -0.90184255]\n", + " [ -1.5034557 -0.90181973]\n", + " [ -1.503296 -31.60681974]\n", + " [ -1.50331881 -27.22039116]\n", + " [ -1.50334163 -22.83396259]\n", + " [ -1.50336444 -18.44753402]\n", + " [ -1.50338726 -14.06110544]\n", + " [ -1.50341007 -9.67467688]\n", + " [ -1.50343288 -5.2882483 ]\n", + " [ -1.5034557 -0.90181973]\n", + " [-32.19330594 -29.69447935]\n", + " [-32.19333391 DEBUG:root:radec2pix: xyfp Shape: (96, 2)\n", + "-24.31847935]\n", + " [-32.19336187 -18.94247936]\n", + " [-32.19338983 -13.56647936]\n", + " [-32.19341779 -8.19047935]\n", + " [-32.19344575 -2.81447935]\n", + " [-30.29579608 -31.59196949]\n", + " [-24.91979608 -31.59194152]\n", + " [-19.54379608 -31.59191356]\n", + " [-14.16779608 -31.5918856 ]\n", + " [ -8.79179608 -31.59185764]\n", + " [ -3.41579608 -31.59182968]\n", + " [-30.29595562 -0.91696949]\n", + " [-24.91995562 -0.91694153]\n", + " [-19.54395562 -0.91691356]\n", + " [-14.16795562 -0.9168856 ]\n", + " [ -8.79195562 -0.91685764]\n", + " [ -3.41595563 -0.91682968]\n", + " [ -1.51830595 -29.69431981]\n", + " [ -1.51833391 -24.31831981]\n", + " [ -1.51836187 -18.94231981]\n", + " [ -1.51838983 -13.56631981]\n", + " [ -1.51841779 -8.19031981]\n", + " [ -1.51844575 -2.81431982]\n", + " [-32.19329608 -31.59197936]\n", + " [-32.19329608 -31.59197936]\n", + " [ -1.51845562 -0.91681981]\n", + " [ -1.51845562 -0.91681981]\n", + " [-30.29580595 -29.69446949]\n", + " [-24.91980594 -29.69444152]\n", + " [-19.54380595 -29.69441356]\n", + " [-14.16780595 -29.69438561]\n", + " [ -8.79180595 -29.69435764]\n", + " [ -3.41580595 -29.69432968]\n", + " [-30.29583391 -24.31846949]\n", + " [-24.91983391 -24.31844152]\n", + " [-19.54383391 -24.31841356]\n", + " [-14.16783391 -24.31838561]\n", + " [ -8.79183391 -24.31835764]\n", + " [ -3.41583391 -24.31832968]\n", + " [-30.29586187 -18.94246949]\n", + " [-24.91986187 -18.94244153]\n", + " [-19.54386187 -18.94241356]\n", + " [-14.16786187 -18.94238561]\n", + " [ -8.79186187 -18.94235764]\n", + " [ -3.41586187 -18.94232969]\n", + " [-30.29588983 -13.56646949]\n", + " [-24.91988983 -13.56644152]\n", + " [-19.54388984 -13.56641357]\n", + " [-14.16788983 -13.5663856 ]\n", + " [ -8.79188983 -13.56635764]\n", + " [ -3.41588983 -13.56632968]\n", + " [-30.29591779 -8.19046949]\n", + " [-24.91991779 -8.19044152]\n", + " [-19.54391779 -8.19041356]\n", + " [-14.16791779 -8.1903856 ]\n", + " [ -8.79191779 -8.19035764]\n", + " [ -3.41591779 -8.19032968]\n", + " [-30.29594575 -2.81446949]\n", + " [-24.91994576 -2.81444153]\n", + " [-19.54394575 -2.81441356]\n", + " [-14.16794576 -2.8143856 ]\n", + " [ -8.79194575 -2.81435764]\n", + " [ -3.41594575 -2.81432968]]\n", + "[ 1.87500000e+03 4.85400000e+02]\n", + " [ 8.29999999e+01 8.43800000e+02]\n", + " [ 4.41400000e+02 8.43800000e+02]\n", + " [ 7.99800000e+02 8.43800000e+02]\n", + " [ 1.15820000e+03 8.43800000e+02]\n", + " [ 1.51660000e+03 8.43800000e+02]\n", + " [ 1.87500000e+03 8.43800000e+02]\n", + " [ 8.30000001e+01 1.20220000e+03]\n", + " [ 4.41400000e+02 1.20220000e+03]\n", + " [ 7.99800000e+02 1.20220000e+03]\n", + " [ 1.15820000e+03 1.20220000e+03]\n", + " [ 1.51660000e+03 1.20220000e+03]\n", + " [ 1.87500000e+03 1.20220000e+03]\n", + " [ 8.29999998e+01 1.56060000e+03]\n", + " [ 4.41400000e+02 1.56060000e+03]\n", + " [ 7.99800000e+02 1.56060000e+03]\n", + " [ 1.15820000e+03 1.56060000e+03]\n", + " [ 1.51660000e+03 1.56060000e+03]\n", + " [ 1.87500000e+03 1.56060000e+03]\n", + " [ 8.30000002e+01 1.91900000e+03]\n", + " [ 4.41400000e+02 1.91900000e+03]\n", + " [ 7.99800000e+02 1.91900000e+03]\n", + " [ 1.15820000e+03 1.91900000e+03]\n", + " [ 1.51660000e+03 1.91900000e+03]\n", + " [ 1.87500000e+03 1.91900000e+03]]\n", + "DEBUG:root:radec2pix: xyfp Shape: (96, 2)\n", + "3919\n", + " 77.53795274 77.67919539 73.26908943 74.27917066 75.22575502 76.08096918\n", + " 76.81416078 77.39343277 77.78879656 77.97677996 77.67919539 79.27760057\n", + " 80.9086962 82.56716816 84.24766937 85.94438651 87.64930302 89.3245763\n", + " 77.9DEBUG:root:radec2pix: xyfp Shape: (96, 2)\n", + "DEBUG:root:fitpix2pix: visCut: True\n", + "DEBUG:root:make_az_asym: xyp: shape: (96, 2)\n", + "7677996 79.57988268 81.21386953 82.87289707 84.55034798 86.23677698\n", + " 87.90848861 89.3245763 73.70687233 74.86526918 75.89266936 76.7347974\n", + " 77.33616788 77.64902834 73.71922865 74.91822462 75.99447399 76.89265343\n", + " 77.55435927 77.92679672 78.37161008 80.3532483 82.37868114 84.43807116\n", + " 86.5205023 88.60550058 78.67128345 80.65746446 82.68422414 84.73967937\n", + " 86.80532112 88.79773368 73.27606371 73.27606371 89.31677804 89.31677804\n", + " 74.16894713 75.42332545 76.55590489 77.50736059 78.21290493 78.61205636\n", + " 75.38223897 76.80151051 78.10907648 79.23409871 80.08944165 80.58344411\n", + " 76.46449862 78.05559614 79.5593541 80.89695848 81.95437214 82.58757556\n", + " 77.35718097 79.11401738 80.82399404 82.41287861 83.74766412 84.60361539\n", + " 77.99846994 79.89205969 81.78816951 83.63850339 85.33442441 86.58329889\n", + " 78.33357011 80.30591073 82.31728996 84.35260664 86.38369379 88.29053235]\n", + "DEBUGDEBUG:root:fitpix2pix: visCut: True\n", + "DEBUG:root:radec2pix: curVec: [[ 0.98610997 -0.15684511 -0.05465104]\n", + " [ 0.98108433 -0.18205662 -0.06579462]\n", + " [ 0.97516526 -0.20762251 -0.07710775]\n", + " [ 0.9683338 -0.23343105 -0.08854154]\n", + " [ 0.96058063 -0.25937446 -0.1000487 ]\n", + " [ 0.95190682 -0.28534667 -0.11158262]\n", + " [ 0.94232475 -0.31124156 -0.12309651]\n", + " [ 0.93185888 -0.3369527 -0.13454328]\n", + " [ 0.98610997 -0.15684511 -0.05465104]\n", + " [ 0.98529942 -0.16851316 -0.02807782]\n", + " [ 0.98364858 -0.18009132 -0.00160649]\n", + " [ 0.98117519 -0.19153913 0.02465776]\n", + " [ 0.97790737 -0.20281985 0.05060919]\n", + " [ 0.97388346 -0.21390054 0.07614176]\n", + " [ 0.96915185 -0.22475176 0.1011501 ]\n", + " [ 0.96377049 -0.23534697 0.12553183]\n", + " [ 0.93185888 -0.3369527 -0.13454328]\n", + " [ 0.93103993 -0.34888039 -0.10699122]\n", + " [ 0.92938708 -0.36045766 -0.07943512]\n", + " [ 0.926919 -0.37164324 -0.05198529]\n", + " [ 0.92366473 -0.38240155 -0.02474922]\n", + " [ 0.91966305 -0.3927024 0.00216821]\n", + " [ 0.91496227 -0.40252017 0.02866293]\n", + " [ 0.90962046 -0.41183282 0.05462924DEBUG:root:mm_to_pix: fitpx: [[0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]]\n", + "]\n", + " [ 0.96377049 -0.23534697 0.12553183]\n", + " [ 0.95848846 -0.26028815 0.11640422]\n", + " [ 0.95240063 -0.28550327 0.10686867]\n", + " [ 0.94548946 -0.31088069 0.09696843]\n", + " [ 0.93774758 -0.3363095 0.08674905]\n", + " [ 0.92917801 -0.36168111 0.07625621]\n", + " [ 0.91979427 -0.38688975 0.06553488]\n", + " [ 0.90962046 -0.41183282 0.05462924]\n", + " [ 0.98402568 -0.16782665 -0.05939432]\n", + " [ 0.9772683 -0.19897898 -0.07317132]\n", + " [ 0.96914906 -0.230552 -0.08715435]\n", + " [ 0.95964681 -0.26234572 -0.10125576]\n", + " [ 0.94876361 -0.29416466 -0.11538962]\n", + " [ 0.93652727 -0.32581327 -0.12946966]\n", + " [ 0.98584489 -0.16202637 -0.04309658]\n", + " [ 0.98428464 -0.17627184 -0.01058268]\n", + " [ 0.98147866 -0.1903415 0.0216738 ]\n", + " [ 0.97747442 -0.20416615 0.05347839]\n", + " [ 0.9723425 -0.21768511 0.08463601]\n", + " [ 0.96617599 -0.23084545 0.11495367]\n", + " [ 0.93164235 -0.34210596 -0.12249916]\n", + " [ 0.930076 -0.35649451 -0.08871474]\n", + " [ 0.92727441 -0.37031528 -0.0550342 ]\n", + " [ 0.92328677 -0.38350036 -0.02165665]\n", + " [ 0.91818445 -0.39599409 0.01122461]\n", + " [ 0.91206042 -0.4077508 0.0434174 ]\n", + " [ 0.9615846 -0.24614512 0.12152218]\n", + " [ 0.95457202 -0.27691203 0.1100545 ]\n", + " [ 0.94633043 -0.30797958 0.09801678]\n", + " [ 0.93684205 -0.33914315 0.08549212]\n", + " [ 0.92611243 -0.37020288 0.0725645 ]\n", + " [ 0.91417086 -0.40096534 0.0593164 ]\n", + " [ 0.98609295 -0.1569706 -0.05459787]\n", + " [ 0.98609295 -0.1569706 -0.05459787]\n", + " [ 0.90967584 -0.41171712 0.05457903]\n", + " [ 0.90967584 -0.41171712 0.05457903]\n", + " [ 0.98377648 -0.17290028 -0.04784695]\n", + " [ 0.9822083 -0.18717897 -0.01519518]\n", + " [ 0.97938752 -0.20125584 0.01720964]\n", + " [ 0.97536178 -0.21506144 0.04917286]\n", + " [ 0.97020181 -0.22853528 0.08049891]\n", + " [ 0.96400092 -0.24162525 0.11099313]\n", + " [ 0.97701647 -0.20409703 -0.06150786]\n", + " [ 0.9754309 -0.21845342 -0.02850726]\n", + " [ 0.97257844 -0.23253581 0.00427487]\n", + " [ 0.96850735 -0.24627374 0.03664361]\n", + " [ 0.96328881 -0.25960666 0.06840354]\n", + " [ 0.95701648 -0.27248386 0.09935795]\n", + " [ 0.96889548 -0.23570521 -0.07539629]\n", + " [ 0.96730019 -0.25011438 -0.04210856]\n", + " [ 0.96443147 -0.26417932 -0.00901261]\n", + " [ 0.96033832 -0.27782873 0.0236963 ]\n", + " [ 0.95509243 -0.29100197 0.0558239 ]\n", + " [ 0.94878758 -0.30364911 0.08717418]\n", + " [ 0.95939241 -0.26752454 -0.08942498]\n", + " [ 0.95779551 -0.2819602 -0.05591251]\n", + " [ 0.95492666 -0.29598286 -0.02256606]\n", + " [ 0.95083547 -0.30952118 0.01041824]\n", + " [ 0.94559405 -0.32251512 0.04284723]\n", + " [ 0.93929617 -0.33491562 0.07452665]\n", + " [ 0.94850937 -0.29935918 -0.10350877]\n", + " [ 0.94691946 -0.31379376 -0.06983567]\n", + " [ 0.94406744 -0.32774804 -0.03630275]\n", + " [ 0.94000315 -0.34115162 -0.0031074 ]\n", + " [ 0.93479871 -0.35394593 0.02955768]\n", + " [ 0.9285477 -0.36608326 0.06149976]\n", + " [ 0.93627419 -0.33101323 -0.11756224]\n", + " [ 0.93470014 -0.34541869 -0.08379487]\n", + " [ 0.93188235 -0.35927866 -0.05014102]\n", + " [ 0.92787029 -0.37252451 -0.01679942]\n", + " [ 0.9227356 -0.38509977 0.01603694]\n", + " [ 0.91657144 -0.39695828 0.04817591]]\n", + "DEBUG:root:mm_to_pix: fitpx: [[0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. DEBUG:root:radec2pix: fitpx: [[-5.00000034e-01 -5.00000033e-01]\n", + " [-5.00000269e-01 2.91928571e+02]\n", + " [-5.00000171e-01 5.84357143e+02]\n", + " [-4.99999761e-01 8.76785714e+02]\n", + " [-4.99999835e-01 1.16921429e+03]\n", + " [-5.00000099e-01 1.46164286e+03]\n", + " [-4.99999719e-01 1.75407143e+03]\n", + " [-5.00000225e-01 2.04650000e+03]\n", + " [-5.00000034e-01 -5.00000033e-01]\n", + " [ 2.91928571e+02 -4.99999990e-01]\n", + " [ 5.84357143e+02 -5.00000111e-01]\n", + " [ 8.76785714e+02 -5.00000066e-01]\n", + " [ 1.16921429e+03 -4.99999995e-01]\n", + " [ 1.46164286e+03 -5.00000140e-01]\n", + " [ 1.75407143e+03 -5.00000040e-01]\n", + " [ 2.04650000e+03 -5.00000296e-01]\n", + " [-5.00000225e-01 2.04650000e+03]\n", + " [ 2.91928572e+02 2.04650000e+03]\n", + " [ 5.84357143e+02 2.04650000e+03]\n", + " [ 8.76785714e+02 2.04650000e+03]\n", + " [ 1.16921429e+03 2.04650000e+03]\n", + " [ 1.46164286e+03 2.04650000e+03]\n", + " [ 1.75407143e+03 2.04650000e+03]\n", + " [ 2.04650000e+03 2.04650000e+03]\n", + " [ 2.04650000e+03 -5.00000296e-01]\n", + " [ 2.04650000e+03 2.91928572e+02]\n", + " [ 2.04650000e+03 5.84357143e+02]\n", + " [ 2.04650000e+03 8.767850.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]]\n", + "DEBUG:root:radec2pix: xyfp: [[-32.29046994 -31.71666141]\n", + " [-32.28860507 -27.33023323]\n", + " [-32.2867402 -22.94380505]\n", + " [-32.28487534 -18.55737688]\n", + " [-32.28301047 -14.1709487 ]\n", + " [-32.2811456 -9.78452053]\n", + " [-32.27928073 -5.39809235]\n", + " [-32.27741587 -1.01166418]\n", + " [-32.29046994 -31.71666141]\n", + " [-27.90404176 -31.71852627]\n", + " [-23.51761359 -31.72039114]\n", + " [-19.13118541 -31.722256 ]\n", + " [-14.74475724 -31.724120DEBUG:root:mm_to_pix: fitpx: [[0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]]\n", + "DEBUG:root:radec2pix: curVec: [[-0.39691829 0.79551134 0.45784013]\n", + " [-0.39556797 0.78168132 0.48218285]\n", + " [-0.39387013 0.76694457 0.50661854]\n", + " [-0.39181445 0.75132667 0.531027 ]\n", + " [-0.38939452 0.73486012 0.55529497]\n", + " [-0.38660809 0.71758579 0.57931409]\n", + " [-0.38345742 0.69955441 0.6029793 ]\n", + " [-0.37994954 0.68082728 0.62618891]\n", + " [-0.39691829 0.79551134 0.45784013]\n", + " [-0.42337019 0.78449496 0.4531284 ]\n", + " [-0.44937833 0.77280772 0.44813764]\n", + " [-0.47484584 0.76050316 0.44289544]\n", + " [-0.49968083 0.74764224 0.43743588]\n", + " [-0.52379665 0.73429313 0.43179934]\n", + " [-0.54711237 0.720531 0.42603184]\n", + " [-0.56955439 0.70643748 0.42018315]\n", + " [-0.37994954 0.68082728 0.62618891]\n", + " [-0.40731282 0.66950142 0.62117961]\n", + " [-0.43422116 0.65760993 0.61563071]\n", + " [-0.46057342 0.64520847 0.6095721 ]\n", + " [-0.48627702 0.63235863 0.60303999]\n", + " [-0.51124746 0.61912747 0.59607652]\n", + " [-0.53540644 0.60558812 0.58872997]\n", + " [-0.55867953 0.5918208 0.58105535]\n", + " [-0.56955439 0.70643748 0.42018315]\n", + " [-0.5696782 0.69213224 0.44319263]\n", + " [-0.56925756 0.67707766 0.46638146]\n", + " [-0.56827811 0.661301DEBUG:root:radec2pix: curVec Shape: (96, 3)\n", + ":root:cartToSphere: vec: [[ 0.00110855 -0.20853555 0.97801416]\n", + " [ 0.00111823 -0.18105588 0.98347217]\n", + " [ 0.00112655 -0.15288447 0.98824343]\n", + " [ 0.00113349 -0.12412547 0.99226588]\n", + " [ 0.001139 -0.09488471 0.99548762]\n", + " [ 0.00114306 -0.06527159 0.99786688]\n", + " [ 0.00114562 -0.0353997 0.99937258]\n", + " [ 0.00114666 -0.00538646 0.99998484]\n", + " [ 0.00110855 -0.20853555 0.97801416]\n", + " [ 0.03013432 -0.20838958 0.97758156]\n", + " [ 0.05904256 -0.2079729 0.97635099]\n", + " [ 0.08772073 -0.20728684 0.97433939]\n", + " [ 0.11605724 -0.20633313 0.97157468]\n", + " [ 0.14394136 -0.20511339 0.96809575]\n", + " [ 0.17126266 -0.20362847 0.96395256]\n", + " [ 0.19791015 -0.2018782 0.95920632]\n", + " [ 0.00114666 -0.00538646 0.99998484]\n", + " [ 0.03116962 -0.00538259 0.99949962]\n", + " [ 0.06106803 -0.00537156 0.99811915]\n", + " [ 0.09072406 -0.00535349 0.99586168]\n", + " [ 0.1200235 -0.00532854 0.99275675]\n", + " [ 0.1488564 -0.00529689 0.98884464]\n", + " [ 0.17711651 -0.00525872 0.98417584]\n", + " [ 0.20469956 -0.00521415 0.97881096]\n", + " [ 0.19791015 -0.2018782 0.95920632]\n", + " [ 0.19966308 -0.17529764 0.96405674]\n", + " [ 0.20115603 -0.14802765 0.9683099 ]\n", + " [ 0.20238925 -0.12017919 0.97190306]\n", + " [ 0.20336191 -0.09186258 0.97478469]\n", + " [ 0.20407235 -0.06318839 0.97691438]\n", + " [ 0.20451873 -0.03426807 0.97826264]\n", + " [ 0.20469956 -0.00521415 0.97881096]\n", + " [ 0.00121266 -0.196646 0.9804738 ]\n", + " [ 0.00122459 -0.16248857 0.98670967]\n", + " [ 0.00123428 -0.12739553 0.99185123]\n", + " [ 0.00124164 -0.09156092 0.9957987 ]\n", + " [ 0.00124661 -0.05518617 0.9984753 ]\n", + " [ 0.00124912 -0.01848208 0.99982841]\n", + " [ 0.01377154 -0.20841259 0.97794404]\n", + " [ 0.04928181 -0.20805164 0.97687554]\n", + " [ 0.08450359 -0.2072855 0.97462396]\n", + " [ 0.11923105 -0.20611722 0.97123615]\n", + " [ 0.15326028 -0.20454967 0.9667837 ]\n", + " [ 0.18638779 -0.20258404 0.96136325]\n", + " [ 0.01424443 -0.00548838 0.99988348]\n", + " [ 0.05097175 -0.00547863 0.99868507]\n", + " [ 0.08739457 -0.00545803 0.99615882]\n", + " [ 0.12330108 -0.00542687 0.99235447]\n", + " [ 0.15848878 -0.0053855 0.98734609]\n", + " [ 0.192763 -0.005DEBUG:root:mm_to_pix: fitpx.shape: (96, 2)\n", + "DEBUG:root:radec2pix: curVec: [[ 0.20954608 0.38582365 -0.8984601 ]\n", + " [ 0.18210998 0.38822132 -0.90339369]\n", + " [ 0.1539776 0.39035454 -0.90769721]\n", + " [ 0.12525349 0.39219761 -0.91131367]\n", + " [ 0.09604353 0.39372887 -0.91419539]\n", + " [ 0.06645673 0.39493071 -0.91630412]\n", + " [ 0.03660615 0.39578968 -0.91761131]\n", + " [ 0.00660862 0.39629676 -0.91809869]\n", + " [ 0.20954608 0.38582365 -0.8984601 ]\n", + " [ 0.20913517 0.35903973 -0.90958944]\n", + " [ 0.20845346 0.33204941 -0.9199404 ]\n", + " [ 0.20750322 0.30496253 -0.92948387]\n", + " [ 0.20628711 0.27789241 -0.93820117]\n", + " [ 0.20480775 0.25095591 -0.94608399]\n", + " [ 0.20306736 0.2242737 -0.95313428]\n", + " [ 0.20106762 0.19797064 -0.95936408]\n", + " [ 0.00660862 0.39629676 -0.91809869]\n", + " [ 0.00633088 0.36856484 -0.92958049]\n", + " [ 0.00604534 0.34059159 -0.94019191]\n", + " [ 0.0057532 0.312492 -0.94990297]\n", + " [ 0.0054557 0.28438222 -0.95869546]\n", + " [ 0.00515405 0.2563789 -0.96656262]\n", + " [ 0.00484941 0.22859967 -0.97350843]\n", + " [ 0.00454286 0.20116463 -0.987]\n", + " [-10.35832906 -31.72598574]\n", + " [ -5.97190089 -31.72785061]\n", + " [ -1.58547272 -31.72971547]\n", + " [-32.27741587 -1.01166418]\n", + " [-27.8909877 -1.01352905]\n", + " [-23.50455952 -1.01539391]\n", + " [-19.11813134 -1.01725878]\n", + " [-14.73170317 -1.01912365]\n", + " [-10.345275 -1.02098851]\n", + " [ -5.95884682 -1.02285338]\n", + " [ -1.57241864 -1.02471825]\n", + " [ -1.58547272 -31.72971547]\n", + " [ -1.58360785 -27.3432873 ]\n", + " [ -1.58174298 -22.95685912]\n", + " [ -1.57987811 -18.57043094]\n", + " [ -1.57801325 -14.18400278]\n", + " [ -1.57614838 -9.7975746 ]\n", + " [ -1.57428351 -5.41114642]\n", + " [ -1.57241864 -1.02471825]\n", + " [-32.27465685 -29.80416795]\n", + " [-32.27237127 -24.42816844]\n", + " [-32.2700857 -19.05216893]\n", + " [-32.26780012 -13.67616941]\n", + " [-32.26551454 -8.3001699 ]\n", + " [-32.26322896 -2.92417038]\n", + " [-30.37796373 -31.70247449]\n", + " [-25.00196422 -31.70476008]\n", + " [-19.62596471 -31.70704565]\n", + " [-14.24996519 -31.70933123]\n", + " [ -8.87396568 -31.71161681]\n", + " [ -3.49796617 -31.71390239]\n", + " [-30.36492242 -1.02747727]\n", + " [-24.98892291 -1.02976285]\n", + " [-19.61292339 -1.03204842]\n", + " [-14.23697954691]\n", + " [ 0.20106762 0.19797064 -0.95936408]\n", + " [ 0.17451316 0.1985097 -0.96443717]\n", + " [ 0.14726841 0.19905534 -0.96885963]\n", + " [ 0.11944308 0.1995823 -0.97257404]\n", + " [ 0.09114702 0.20007016 -0.97553275]\n", + " [ 0.06249059 0.2005033 -0.97769799]\n", + " [ 0.03358509 0.20087051 -0.97904192]\n", + " [ 0.00454286 0.20116463 -0.97954691]\n", + " [ 0.19767521 0.38680826 -0.90072409]\n", + " [ 0.16356805 0.38957156 -0.90635506]\n", + " [ 0.1285189 0.39191182 -0.9109819 ]\n", + " [ 0.09272201 0.39378752 -0.914513 ]\n", + " [ 0.05637818 0.39516624 -0.91687793]\n", + " [ 0.01969718 0.39602506 -0.91802842]\n", + " [ 0.20930783 0.37418626 -0.90342397]\n", + " [ 0.20862198 0.34120639 -0.91654518]\n", + " [ 0.20753174 0.3080252 -0.92846704]\n", + " [ 0.20604187 0.27484991 -0.93915083]\n", + " [ 0.20415715 0.24189566 -0.94858123]\n", + " [ 0.20188143 0.20938635 -0.95676603]\n", + " [ 0.00659124 0.38424137 -0.92320914]\n", + " [ 0.00624526 0.35007652 -0.93670029]\n", + " [ 0.00588856 0.31566325 -0.94885301]\n", + " [ 0.00552339 0.28121498 -0.9596289 ]\n", + " [ 0.005152 0.24694652 -0.96901541]\n", + " [ 0.00477649 0.21307534 -0.9770241 ]\n", + " [ 0.18958858 0.19829267 -0.96163204]\n", + " [ 0.15656426 0.19896239 -0.96742007]\n", + " [ 0.1226121 0.19961616 -0.97217265]\n", + " [ 0.08793423 0.20021436 -0.97579802]\n", + " [ 0.05273389 0.2007282 -0.97822662]\n", + " [ 0.01721641 0.20113875 -0.97941146]\n", + " [ 0.20945262 0.38574115 -0.89851732]\n", + " [ 0.20945262 0.38574115 -0.89851732]\n", + " [ 0.00464333 0.20125684 -0.9795275 ]\n", + " [ 0.00464333 0.20125684 -0.9795275 ]\n", + " [ 0.1975317 0.37520737 -0.9056493 ]\n", + " [ 0.19686508 0.34209282 -0.91881263]\n", + " [ 0.19581737 0.30877098 -0.930761 ]\n", + " [ 0.19439369 0.27544931 -0.94145566]\n", + " [ 0.19259929 0.24234281 -0.95088142]\n", + " [ 0.1904383 0.20967495 -0.95904623]\n", + " [ 0.16342832 0.37785483 -0.91132701]\n", + " [ 0.16281694 0.34440134 -0.92459632]\n", + " [ 0.16189065 0.31072626 -0.93661124]\n", + " [ 0.16065547 0.27703809 -0.94733295]\n", + " [ 0.15911772 0.24355141 -0.95674671]\n", + " [ 0.15728244 0.21048816 -0.96486111]\n", + " [ 0.12838327 0.38010095 -0.91599181]\n", + " [ 0.1278289 0.34637222 -0.92934711]\n", + " [ 0.12702684 0.31241113 -0.94141567]\n", + " [DEBUG:root:optics_fp: rtanth: [45.0390902 42.09683712 39.42396804 37.07878541 35.12698266 33.63710755\n", + " 32.6724136 32.28002056 45.0390902 42.00763364 39.23320577 36.77402747\n", + " 34.69719395 33.07480842 31.97611838 31.45604637 32.28002056 27.89482687\n", + " 23.51009392 19.1261386 14.74365456 10.36450837 5.99601772 1.72131774\n", + " 31.45604637 27.07594694 22.69829207 18.32483384 13.95951711 9.61343916\n", + " 5.33383708 1.72131774 43.71543665 40.28285706 37.31193504 34.92069834\n", + " 33.23450917 32.36375719 43.67830098 40.1281473 37.02087501 34.47644006\n", + " 32.62678968 31.59418683 30.3683705 24.99424245 19.62114004 14.2502235\n", + " 8.88545749 3.55479843 29.54687443 24.18030108 18.81910954 13.46972753\n", + " 8.15542687 3.06450112 45.0178789 45.0178789 1.74119478 1.74119478\n", + " 42.33466612 38.66132674 35.42562866 32.75751668 30.80482728 29.70896533\n", + " 38.78006096 34.73279944 31.09090442 28.01292685 25.70226752 24.37810068\n", + " 35.68424094 31.23842634 27.13146257 23.54136773 20.73833358 19.07259071\n", + " 33.17589074 28.339265714e+02]\n", + " [ 2.04650000e+03 1.16921429e+03]\n", + " [ 2.04650000e+03 1.46164286e+03]\n", + " [ 2.04650000e+03 1.75407143e+03]\n", + " [ 2.04650000e+03 2.04650000e+03]\n", + " [ 5.00000148e-01 1.27000000e+02]\n", + " [ 5.00000006e-01 4.85400000e+02]\n", + " [ 4.99999879e-01 8.43800000e+02]\n", + " [ 4.99999939e-01 1.20220000e+03]\n", + " [ 5.00000182e-01 1.56060000e+03]\n", + " [ 5.00000197e-01 1.91900000e+03]\n", + " [ 1.27000000e+02 4.99999893e-01]\n", + " [ 4.85400000e+02 5.00000055e-01]\n", + " [ 8.43800000e+02 4.99999998e-01]\n", + " [ 1.20220000e+03 5.00000122e-01]\n", + " [ 1.56060000e+03 4.99999912e-01]\n", + " [ 1.91900000e+03 5.00000160e-01]\n", + " [ 1.27000000e+02 2.04550000e+03]\n", + " [ 4.85400000e+02 2.04550000e+03]\n", + " [ 8.43800000e+02 2.04550000e+03]\n", + " [ 1.20220000e+03 2.04550000e+03]\n", + " [ 1.56060000e+03 2.04550000e+03]\n", + " [ 1.91900000e+03 2.04550000e+03]\n", + " [ 2.04550000e+03 1.27000000e+02]\n", + " [ 2.04550000e+03 4.85400000e+02]\n", + " [ 2.04550000e+03 8.43800000e+02]\n", + " [ 2.04550000e+03 1.20220000e+03]\n", + " [ 2.04550000e+03 1.56060000e+03]\n", + " [ 2.04550000e+03 1.91900000e+03]\n", + " [ 4.9999993342 0.98123085]\n", + " [ 0.19861623 -0.19038695 0.96140751]\n", + " [ 0.2005887 -0.15733098 0.96695974]\n", + " [ 0.20217123 -0.12334981 0.97155114]\n", + " [ 0.20336272 -0.08864677 0.97508223]\n", + " [ 0.2041602 -0.05342545 0.97747856]\n", + " [ 0.2045604 -0.01789151 0.97869042]\n", + " [ 0.00120792 -0.20844284 0.97803381]\n", + " [ 0.00120792 -0.20844284 0.97803381]\n", + " [ 0.20460634 -0.00531377 0.97882992]\n", + " [ 0.20460634 -0.00531377 0.97882992]\n", + " [ 0.01382559 -0.19661746 0.9803828 ]\n", + " [ 0.04947523 -0.19627694 0.97929953]\n", + " [ 0.08483539 -0.19555447 0.97701659]\n", + " [ 0.11969997 -0.19445357 0.97358088]\n", + " [ 0.15386543 -0.19297773 0.96906399]\n", + " [ 0.18712908 -0.19112874 0.96356241]\n", + " [ 0.01396162 -0.1624649 0.98661554]\n", + " [ 0.04996174 -0.16218264 0.98549511]\n", + " [ 0.08566901 -0.16158454 0.98313339]\n", + " [ 0.1208763 -0.16067502 0.97957769]\n", + " [ 0.15538076 -0.15945889 0.97489983]\n", + " [ 0.1889821 -0.15793949 0.969196 ]\n", + " [ 0.01407199 -0.12737685 0.99175456]\n", + " [ 0.05035615 -0.12715419 0.99060389]\n", + " [ 0.08634371 -0.12668294 0.98817822]\n", + " [ 0.130e-01 4.99999931e-01]\n", + " [ 4.99999930e-01 4.99999931e-01]\n", + " [ 2.04550000e+03 2.04550000e+03]\n", + " [ 2.04550000e+03 2.04550000e+03]\n", + " [ 1.27000000e+02 1.27000000e+02]\n", + " [ 4.85400000e+02 1.27000000e+02]\n", + " [ 8.43800000e+02 1.27000000e+02]\n", + " [ 1.20220000e+03 1.27000000e+02]\n", + " [ 1.56060000e+03 1.27000000e+02]\n", + " [ 1.91900000e+03 1.27000000e+02]\n", + " [ 1.27000000e+02 4.85400000e+02]\n", + " [ 4.85400000e+02 4.85400000e+02]\n", + " [ 8.43800000e+02 4.85400000e+02]\n", + " [ 1.20220000e+03 4.85400000e+02]\n", + " [ 1.56060000e+03 4.85400000e+02]\n", + " [ 1.91900000e+03 4.85400000e+02]\n", + " [ 1.27000000e+02 8.43800000e+02]\n", + " [ 4.85400000e+02 8.43800000e+02]\n", + " [ 8.43800000e+02 8.43800000e+02]\n", + " [ 1.20220000e+03 8.43800000e+02]\n", + " [ 1.56060000e+03 8.43800000e+02]\n", + " [ 1.91900000e+03 8.43800000e+02]\n", + " [ 1.27000000e+02 1.20220000e+03]\n", + " [ 4.85400000e+02 1.20220000e+03]\n", + " [ 8.43800000e+02 1.20220000e+03]\n", + " [ 1.20220000e+03 1.20220000e+03]\n", + " [ 1.56060000e+03 1.20220000e+03]\n", + " [ 1.91900000e+03 1.20220000e+03]\n", + " [ 1.27000000e+02 1.56060000e+ 0.12598336 0.27842756 -0.95215875]\n", + " [ 0.12470522 0.24463594 -0.9615622 ]\n", + " [ 0.12319803 0.21125658 -0.96963545]\n", + " [ 0.09259086 0.38190479 -0.91955188]\n", + " [ 0.09209592 0.34796602 -0.93297266]\n", + " [ 0.09142212 0.31378719 -0.94508179]\n", + " [ 0.09057527 0.27957967 -0.95584064]\n", + " [ 0.08956166 0.2455579 -0.96523573]\n", + " [ 0.08838672 0.21194088 -0.97327738]\n", + " [ 0.0562519 0.38323464 -0.92193651]\n", + " [ 0.05581892 0.34915302 -0.93540174]\n", + " [ 0.05527769 0.31482626 -0.94753828]\n", + " [ 0.05463281 0.28046695 -0.95830765]\n", + " [ 0.05388927 0.24628974 -0.96769691]\n", + " [ 0.05305147 0.21251263 -0.97571713]\n", + " [ 0.01957612 0.38406826 -0.92309715]\n", + " [ 0.01920719 0.34991278 -0.93658536]\n", + " [ 0.01880196 0.31550935 -0.94873618]\n", + " [ 0.01836336 0.2810713 -0.95951118]\n", + " [ 0.01789439 0.24681343 -0.96889779]\n", + " [ 0.01739782 0.21295325 -0.97690748]]\n", + "2388 -1.034334 ]\n", + " [ -8.86092437 -1.03661958]\n", + " [ -3.48492485 -1.03890516]\n", + " [ -1.59965962 -29.81720927]\n", + " [ -1.59737405 -24.44120975]\n", + " [ -1.59508847 -19.06521024]\n", + " [ -1.59280289 -13DEBUG:root:radec2pix: curVec Shape: (96, 3)\n", + "DEBUG:root:mm_to_pix: fitpx.shape: (96, 2)\n", + ".68921073]\n", + " [ -1.59051731 -8.31321121]\n", + " [ -1.58823174 -2.9372117 ]\n", + " [-32.27546357 -31.70166778]\n", + " [-32.27546357 -31.70166778]\n", + " [ -1.58742502 -1.03971187]\n", + " [ -1.58742502 -1.03971187]\n", + " [-30.37715702 -29.80497466]\n", + " [-25.00115751 -29.80726024]\n", + " [-19.625158 -29.80954582]\n", + " [-14.24915848 -29.8118314 ]\n", + " [ -8.87315897 -29.81411698]\n", + " [ -3.49715945 -29.81640256]\n", + " [-30.37487145 -24.42897515]\n", + " [-24.99887193 -24.43126073]\n", + " [-19.62287241 -24.43354631]\n", + " [-14.2468729 -24.43583188]\n", + " [ -8.87087339 -24.43811746]\n", + " [ -3.49487388 -24.44040305]\n", + " [-30.37258587 -19.05297564]\n", + " [-24.99658635 -19.05526122]\n", + " [-19.62058684 -19.05754679]\n", + " [-14.24458732 -19.05983237]\n", + " [ -8.86858781 -19.06211795]\n", + " [ -3.4925883 -19.06440353]\n", + " [-30.37030029 -13.67697612]\n", + " [-24.99430077 -13.6792617 ]\n", + " [-19.61830126 -13.68154728]\n", + " [-14.24230175 -13.68383286]\n", + " [ -8.86630223 -13.68611844]\n", + " [ -3.49030272 -13.68840401]\n", + " [-30.36801471 -8.30097661]\n", + " [-24.9920152 -8.30326219]\n", + " [-19.61601568 -8.30554776]\n", + " [-14.24001617 -8.30783335]\n", + " [ -8.86401666 -8.31011893]\n", + " [ -3.48801714 -8.3124045 ]\n", + " [-30.36572914 -2.9249771 ]\n", + " [-24.98972962 -2.92726267]\n", + " [-19.6137301 -2.92954825]\n", + " [-14.23773059 -2.93183383]\n", + " [ -8.86173108 -2.93411941]\n", + " [ -3.48573156 -2.93640499]]\n", + "2182616 -0.12596768 0.98452554]\n", + " [ 0.15660103 -0.12501365 0.97971818]\n", + " [ 0.19047015 -0.12382499 0.9738524 ]\n", + " [ 0.01415593 -0.0915474 0.9957001 ]\n", + " [ 0.05065593 -0.09138626 0.99452628]\n", + " [ 0.08685581 -0.09104555 0.9920518 ]\n", + " [ 0.12254563 -0.09052922 0.98832537]\n", + " [ 0.15752301 -0.08984197 0.98342001]\n", + " [ 0.1915915 -0.08898771 0.97743229]\n", + " [ 0.01421257 -0.05517797 0.99837538]\n", + " [ 0.05085809 -0.05508029 0.99718585]\n", + " [ 0.08720077 -0.05487388 0.99467828]\n", + " [ 0.12302951 -0.05456144 0.99090201]\n", + " [ 0.15814189 -0.05414617 0.9859307 ]\n", + " [ 0.1923426 -0.05363087 0.97986124]\n", + " [ 0.01424114 -0.01847933 0.99972782]\n", + " [ 0.05096003 -0.01844651 0.99853032]\n", + " [ 0.08737459 -0.01837718 DEBUG:root:radec2pix: xyfp Shape: (96, 2)\n", + "61 0.48963269]\n", + " [-0.56673157 0.64484002 0.51283201]\n", + " [-0.56461464 0.6277368 0.53587014]\n", + " [-0.56192865 0.61004381 0.55864366]\n", + " [-0.55867953 0.5918208 0.58105535]\n", + " [-0.39646291 0.78955764 0.46841851]\n", + " [-0.39457665 0.77199452 0.49833094]\n", + " [-0.39215756 0.75309423 0.52826275]\n", + " [-0.38919219 0.73291368 0.55800267]\n", + " [-0.38567645 0.71152829 0.58735098]\n", + " [-0.38161646 0.68903586 0.61611562]\n", + " [-0.4084959 0.79074788 0.45590447]\n", + " [-0.44063036 0.77678833 0.44993864]\n", + " [-0.47200143 0.76187351 0.4435802 ]\n", + " [-0.50243789 0.7461126 0.43688917]\n", + " [-0.53178023 0.72963108 0.42993985]\n", + " [-0.55988238 0.71257006 0.42281867]\n", + " [-0.39194174 0.67602715 0.62399436]\n", + " [-0.42518534 0.66175901 0.61748881]\n", + " [-0.45764419 0.64669578 0.61020191]\n", + " [-0.48914421 0.63094839 0.6021977 ]\n", + " [-0.51952966 0.61464041 0.59355378]\n", + " [-0.54865806 0.59790935 0.58436182]\n", + " [-0.56959863 0.70034266 0.43020642]\n", + " [-0.5693857 0.68230326 0.45854356]\n", + " [-0.503]\n", + " [ 4.85400000e+02 1.56060000e+03]\n", + " [ 8.43800000e+02 1.56060000e+03]\n", + " [ 1.20220000e+03 1.56060000e+03]\n", + " [ 1.56060000e+03 1.56060000e+03]\n", + " [ 1.91900000e+03 1.56060000e+03]\n", + " [ 1.27000000e+02 1.91900000e+03]\n", + " [ 4.85400000e+02 1.91900000e+03]\n", + " [ 8.43800000e+02 1.91900000e+03]\n", + " [ 1.20220000e+03 1.91900000e+03]\n", + " [ 1.56060000e+03 1.91900000e+03]\n", + " [ 1.91900000e+03 1.91900000e+03]]\n", + " 0.996006 ]\n", + " [ 0.12327308 -0.0182723 0.99220455]\n", + " [ 0.15845303 -0.018133 0.9872 ]\n", + " [ 0.1927197 -0.01796031 0.98108947]]\n", + "DEBUG:root:mm_to_pix: fitpx.shape: (96, 2)\n", + "6834006 0.66316495 0.4870337 ]\n", + " [-0.56644404 0.64299055 0.51546513]\n", + " [-0.56369154 0.62186089 0.54363671]\n", + " [-0.56008689 0.59987473 0.57136065]\n", + " [-0.39700535 0.79542914 0.45790746]\n", + " [-0.39700535 0.79542914 0.45790746]\n", + " [-0.5586136 0.59193132 0.58100617]\n", + " [-0.5586136 0.59193132 0.58100617]\n", + " [-0.40799839 0.78485861 0.4664057 ]\n", + " [-0.44025761 0.77085121 0.46039293]\n", + " [-0.47174935 0.75589254 0.45395927]\n", + " [-0.50230215 0.74009207 0.44716471]\n", + " [-0.53175628 0.72357541 0.44008395]\n", + " [-0.5599647 0.70648381 0.43280499]\n", + " [-0.40622515 0.76725118 0.49629301]\n", + " [-0.43879851 0.75312792 0.49015732]\n", + " [-0.4705943 0.73806874 0.48352407]\n", + " [-0.50144071 0.72218416 0.47645278]\n", + " [-0.53117828 0.70560019 0.46901813]\n", + " [-0.55965902 0.68845811 0.46131031]\n", + " [-0.40389784 0.74831558 0.5262037 ]\n", + " [-0.43672699 0.73410604 0.51995948]\n", + " [-0.46877078 0.71898208 0.5131459 ]\n", + " [-0.49985705 0.70305535 0.50582221]\n", + " [-0.52982745 0.68645212 0.4980626 ]\n", + " [-0.55853499 0.66931332 0.4899575 ]\n", + " [-0.40100258 0.72810897 0.55592649]\n", + " [-0.43402821 0.71384385 0.54958755]\n", + " [-0.46626361 0.69869232 0.54261155]\n", + " [-0.49753608 0.68276673 0.53505835]\n", + " [-0.52768858 0.66619326 0.52700218]\n", + " [-0.55657592 0.64911207 0.51853329]\n", + " [-0.3975345 0.70670712 0.5852618 ]\n", + " [-0.43069553 0.69241845 0.57884198]\n", + " [-0.46306537 0.67727797 0.57172109]\n", + " [-0.49447067 0.66139803 0.56396047]\n", + " [-0.52475534 0.64490404 0.55563532]DEBUG:root:fitpix2pix: ccdpx: shape: (96, 2)\n", + "DEBUG:root:radec2pix: camVec: [[ 0.00162968 0.00164392 0.00165615 0.00166636 0.0016745 0.00168051\n", + " 0.00168433 0.00168589 0.00162968 0.03065921 0.0595691 0.08824658\n", + " 0.11657974 0.14445783 0.17177197 0.1984171 0.00168589 0.03171597\n", + " 0.06161834 0.09127522 0.12057355 0.14940474 0.17766265 0.205241\n", + " 0.1984171 0.20017053 0.20167036 0.20291139 0.20389075 0.20460646\n", + " 0.20505694 0.205241 0.00173588 0.00175296 0.00176683 0.00177741\n", + " 0.00178459 0.00178824 0.01429458 0.04980805 0.08502967 0.11975303\n", + " 0.15377432 0.1868945 0.0147871 0.05152109 0.08794575 0.12385093\n", + " 0.15903647 0.19330699 0.19912208 0.20110045 0.20269257 0.20389226\n", + " 0.20469584 0.20510055 0.00172908 0.00172908 0.20514779 0.20514779\n", + " 0.01435076 0.05000388 0.08536435 0.12022547 0.15438306 0.18763689\n", + " 0.01449201 0.05049589 0.08620426 0.1214098 0.15590842 0.18949858\n", + " 0.01460664 0.05089468 0.08688344 DEBUG:root:fitpix2pix: visCut: True\n", + "0.12236492 0.15713605 0.19099623\n", + " 0.0146941 0.05119852 0.08739951 0.12308827 0.15806297 0.19212497\n", + " 0.01475342 0.05140434 0.08774826 0.12357559 0.15868553 0.19288138\n", + " 0.01478357 0.05150885 0.08792506 0.1238221 0.15899976 0.19326249]\n", + " [-0.20886687 -0.18138669 -0.15321267 -0.12445123 -0.0952084 -0.06559229\n", + " -0.03571531 -0.00569466 -0.20886687 -0.20871575 -0.20829328 -0.20760055\n", + " -0.20663909 -0.20541086 -0.20391875 -0.20216791 -0.00569466 -0.00569039\n", + " -0.0056785 -0.00565918 -0.00563263 -0.00559908 -0.00555867 -0.00551146\n", + " -0.20216791 -0.17558603 -0.14832064 -0.12047648 -0.09216227 -0.06348867\n", + " -0.03456748 -0.00551146 -0.19697755 -0.16281769 -0.12772153 -0.09188434\n", + " -0.05550542 -0.01879375 -0.20874173 -0.20837407 -0.20760004 -0.20642226\n", + " -0.2048444 -0.20287264 -0.00579649 -0.00578593 -0.0057639 -0.00573078\n", + " -0.00568698 -0.00563273 -0.19067465 -0.1576223 -0.12364673 -0.08894663\n", + " -0.05372559 -0.0181899 -0.20877415 -0.20877415 -0.0056111 -0.0056111\n", + " -0.19694699 -0.19660038 -0.19587092 -0.19476145 -0.19327535 -0.19141752\n", + " -0.16279237 -0.16250539 -0.1619024 -0.1609872 -0.15976346 -0.15823425\n", + " -0.12770151 -0.1274748 -0.12699943 -0.12628004 -0.12532102 -0.12412508\n", + " -0.09186978 -0.09170505 -0.09136033 -0.09084026 -0.09014925 -0.08928993\n", + " -0.05549654 -0.05539609 -0.05518622 -0.05487037 -0.05445187 -0.05393273\n", + " -0.01879073 -0.01875652 -0.01868512 -0.01857781 -0.01843585 -0.01826001]\n", + " [ 0.97794273 0.98341048 0.98819185 0.99222433 0.99545595 0.99784509\n", + " 0.99936059 0.99998236 0.97794273 0.97749565 0.9762507 0.9742251\n", + " 0.97144709 0.96795574 0.96380057 0.95904056 0.99998236 0.99948072\n", + " 0.99808363 0.99580962 0.99268842 0.98876027 0.98407575 0.97869595\n", + " 0.95904056 0.96389901 0.96815807 0.97175737 0.97464592 0.97678318\n", + " 0.97813943 0.97869595 0.98040646 0.98665461 0.99180849 0.9957681\n", + " 0.99845679 0.99982178 0.97786633 0.97678012 0.97451125 0.97110713\n", + " 0.96663966 0.961204 0.99987386 0.99865515 0.99610859 0.99228429\n", + " 0.98725633 0.98112215 0.96124585 0.96680599 0.97140476 0.97494433\n", + " 0.97735008 0.97857186 0.97796235 0.97796235 0.97871492 0.97871492\n", + " 0.9803091 0.97920779 0.97690711 0.97345458 0.96892234 0.96340632\n", + " 0.98655391 0.98541472 0.9830343 0.97946045 0.97476571 0.96904706\n", + " 0.99170508 0.99053516 0.98809029 0.9844187 0.97959323 0.97371115\n", + " 0.99566261 0.99446915 0.99197511 0.98822939 0.98330525 0.97730001\n", + " 0.99834987 0.99714035 0.99461285 0.99081699 0.9858265 0.97973876\n", + " 0.99971414 0.99849639 0.99595183 0.99213051 0.98710648 0.98097716]]\n", + "DEBUG:root:radec2pix: xyfp: [[-32.208296 -31.60697943]\n", + " [-32.20831882 -27.22055086]\n", + " [-32.20834163 -22.83412229]\n", + " [-32.20836444 -18.44769372]\n", + " [-32.20838725 -14.06126515]\n", + " [-32.20841007 -9.67483658]\n", + " [-32.20843288 -5.288408 ]\n", + " [-32.2084557 -0.90197943]\n", + " [-32.208296 -31.60697943]\n", + " [-27.82186743 -31.60695662]\n", + " [-23.43543886 -31.60693381]\n", + " [-19.04901029 -31.60691099]\n", + " [-14.66258171 -31.60688818]\n", + " [-10.27615314 -31.60686536]\n", + " [ -5.88972457 -31.60684255]\n", + " [ -1.503296 -31.60681974]\n", + " [-32.2084557 -0.90197943]\n", + " [-27.82202712 -0.90195662]\n", + " [-23.43559855 -0.9019338 ]\n", + " [-19.04916999 -0.90191099]\n", + " [-14.66274141 -0.90188818]\n", + " [-10.27631284 -0.90186536]\n", + " [ -5.88988428 -0.90184255]\n", + " [ -1.5034557 -0.90181973]\n", + " [ -1.503296 -31.60681974]\n", + " [ -1.50331881 -27.22039116]\n", + " [ -1.50334163 -22.83396259]\n", + " [ -1.50336444 -18.44753402]\n", + " [ -1.50338726 -14.06110544]\n", + " [ -1.50341007 -9.67467688]\n", + " [ -1.50343288 -5.2882483 ]\n", + " [ -1.5034557 -0.90181973]\n", + " [-32.19330594 -29.69447935]\n", + " [-32.19333391 -24.31847935]\n", + " [-32.19336187 -18.94247936]\n", + " [-32.19338983 -13.56647936]\n", + " [-32.19341779 -8.19047935]\n", + " [-32.19344575 -2.81447935]\n", + " [-30.29579608 -31.59196949]\n", + " [-24.91979608 -31.59194152]\n", + " [-19.54379608 -31.59191356]\n", + " [-14.16779608 -31.5918856 ]\n", + " [ -8.79179608 -31.59185764]\n", + " [ -3.41579608 -31.59182968]\n", + " [-30.29595562 -0.91696949]\n", + " [-24\n", + " [-0.55377591 0.62793511 0.54683611]\n", + " [-0.3934989 0.68420818 0.61401774]\n", + " [-0.4267323 0.66992886 0.60753178]\n", + " [-0.45917834 0.65483863 0.60028462]\n", + " [-0.4906631 0.63904893 0.59233958]\n", + " [-0.52103086 0.62268389 0.5837736 ]\n", + " [-0.55013908 0.60588138 0.57467794]]\n", + "DEBUG:root:radec2pix: lng: [270.30457564 270.35386432 270.42218515 270.52319877 270.68775016\n", + " 271.00328211 271.85358468 282.01764037 270.30457564 278.22825834\n", + " 285.84900373 292.93736432 299.35666656 305.05982707 310.06566745\n", + " 314.43133752 282.01764037 350.20239022 354.97318448 356.62297809\n", + " 357.45797758 357.96205284 358.29934604 358.54086611 314.43133752\n", + " 318.71792809 323.65121653 329.29806584 335.69036822 342.79553001\n", + " 350.4881795 358.54086611 270.35332309 270.43180131 270.55509491\n", + " 270.77692983 271.2940439 273.86646927 273.78050957 283.32620486\n", + " 292.17913267 300.04776463 306.84264375 312.61566094 338.92831161\n", + " 353.86519186 356.42636123 357.47985638 358.05382146 358.4148969\n", + " 316.21189934 321.89127155 328.61157088 336.44738638 345.33544633\n", + " 355.00144674 270.33202411 270.33202411 358.51232366 358.51232366\n", + " 274.02225895 284.14773214 293.45215101 301.61524642 308.56613427\n", + " 314.39418307 274.91171606 287.12189287 297.93167364 306.95425335\n", + " 314.25788847 320.11321977 276.3042009 291.6047689 304.27729951\n", + " 314.04247307 321.39984571 326.97203004 278.79000558 298.99985673\n", + " 313.65088315 323.54527533 330.30207858 335.08673923 284.44409964\n", + " 312.71767267 327.81852787 336.08354959 341.09932037 344.41993917\n", + " 307.6197367 340.1007605 348.12231225 351.56865678 353.47160216\n", + " 354.67575821]\n", + "DEBUG:root:mm_to_pix: fitpx: [[0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. DEBUG:root:radec2pix: camVec Shape: (3, 96)\n", + ".91995562 -0.91694153]\n", + " [-19.54395562 -0.91691356]\n", + " [-14.16795562 -0.9168856 ]\n", + " [ -8.79195562 -0.91685764]\n", + " [ -3.41595563 -0.91682968]\n", + " [ -1.51830595 -29.69431981]\n", + " [ -1.51833391 -24.31831981]\n", + " [ -1.51836187 -18.94231981]\n", + " [ -1.51838983 -13.56631981]\n", + " [ -1.51841779 -8.19031981]\n", + " [ -1.51844575 -2.81431982]\n", + " [-32.19329608 -31.59197936]\n", + " [-32.19329608 -31.59197936]\n", + " [ -1.51845562 -0.91681981]\n", + " [ -1.51845562 -0.91681981]\n", + " [-30.29580595 -29.69446949]\n", + " [-24.91980594 -29.69444152]\n", + " [-19.54380595 -29.69441356]\n", + " [-14.16780595 -29.69438561]\n", + " [ -8.79180595 -29.69435764]\n", + " [ -3.41580595 -29.69432968]\n", + " [-30.29583391 -24.31846949]\n", + " [-24.91983391 -24.31844152]\n", + " [-19.54383391 -24.31841356]\n", + " [-14.16783391 -24.31838561]\n", + " [ -8.79183391 -24.31835764]\n", + " [ -3.41583391 -24.31832968]\n", + " [-30.29586187 -18.94246949]\n", + " [-24.91986187 -18.94244153]\n", + " [-19.54386187 -18.94241356]\n", + " [-14.16786187 -18.94238561]\n", + " [ -8.79186187 -18.94235764]\n", + " [ -3.41586187 -18.94232969]\n", + " [-30.29588983 -13.56646949]\n", + " [-24.91988983 -13.56644152]\n", + " [-19.54388984 -13.56641357]\n", + " [-14.16788983 -13.5663856 ]\n", + " [ -8.79188983 -13.56635764]\n", + " [ -3.41588983 -13.56632968]\n", + " [-30.29591779 -8.19046949]\n", + " [-24.91991779 -8.19044152]\n", + " [-19.54391779 -8.19041356]\n", + " [-14.16791779 -8.1903856 ]\n", + " [ -8.79191779 -8.19035764]\n", + " [ -3.41591779 -8.19032968]\n", + " [-30.29594575 -2.81446949]\n", + " [-24.91994576 -2.81444153]\n", + " [-19.54394575 -2.81441356]\n", + " [-14.16794576 -2.8143856 ]\n", + " [ -8.79194575 -2.81435764]\n", + " [ -3.41594575 -2.81432968]]\n", + "0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]]\n", + "27 23.73585762 19.53127415 16.04223037 13.82166388\n", + " 31.39613279 26.23340206 21.17707168 16.3263008 11.93442847 8.72443809\n", + " 30.47289508 25.12113778 19.7825313 14.471637 9.23638255 4.35844005]\n", + "DEBUG:root:radec2pix: xyfp: [[32.2358199 31.31614388]\n", + " [32.23338667 26.92971599]\n", + " [32.23095344 22.54328809]\n", + " [32.2285202 18.15686019]\n", + " [32.22608698 13.7704323 ]\n", + " [32.22365375 9.3840044 ]\n", + " [32.22122051 4.99757651]\n", + " [32.21878728 0.61114861]\n", + " [32.2358199 31.31614388]\n", + " [27.849392 31.31857712]\n", + " [23.46296411 31.32101035]\n", + " [19.07653621 31.32344358]\n", + " [14.69010831 31.3258768 ]\n", + " [10.30368042 31.32831004]\n", + " [ 5.91725252 31.33074327]\n", + " [ 1.53082462 31.3331765 ]\n", + " [32.21878728 0.61114861]\n", + " [27.83235938 0.61358184]\n", + " [23.44593149 0.61601507]\n", + " [19.0595036 0.6184483 ]\n", + " [14.6730757 0.62088153]\n", + " [10.2866478 0.62331476]\n", + " [ 5.90021991 0.625748 ]\n", + " [ 1.513792 0.62818122]\n", + " [ 1.53082462 31.3331765 ]\n", + " [ 1.52839139 26.94674861]\n", + " [ 1.52595816 22.5603207 ]\n", + " [ 1.52352493 18.17389281]\n", + " [ 1.5210917 13.78746492]\n", + " [ 1.51865847 9.40103702]\n", + " [ 1.51622524 5.01460912]\n", + " [ 1.513792 0.62818122]\n", + " [32.219759 29.4036525 ]\n", + " [32.21677684 24.02765333]\n", + " [32.21379467 18.65165415]\n", + " [32.21081251 13.27565498]\n", + " [32.20783035 7.89965581]\n", + " [32.20484818 2.52365664]\n", + " [30.32331188 31.30220479]\n", + " [24.9473127 31.30518695]\n", + " [19.57131353 31.30816912]\n", + " [14.19531435 31.31115127]\n", + " [ 8.81931518 31.31413344]\n", + " [ 3.44331601 31.3171156 ]\n", + " [30.3062959 0.62720951]\n", + " [24.93029672 0.63019167]\n", + " [19.55429755 0.63317383]\n", + " [14.17829838 0.636156 ]\n", + " [ 8.80229921 0.63913816]\n", + " [ 3.42630004 0.64212033]\n", + " [ 1.54476372 29.42066847]\n", + " [ 1.54178156 24.0446693 ]\n", + " [ 1.53879939 18.66867013]\n", + " [ 1.53581723 13.29267096]\n", + " [ 1.53283507 7.91667178]\n", + " [ 1.5298529 2.54067261]\n", + " [32.22081158 31.30115221]\n", + " [32.22081158 31.30115221]\n", + " [ 1.52880032 0.6431729 ]\n", + " [ 1.52880032 0.6431729 ]\n", + " [30.32225929 29.40470508]\n", + " [24.94626012 29.40768724]\n", + " [19.57026095 29.41066941]\n", + " [14.19426178 29.41365157]\n", + " [ 8.8182626 29.41663373]\n", + " [ 3.44226343 29.4196159 ]\n", + " [30.31927713 24.02870591]\n", + " [24.94327796 24.03168807]\n", + " [19.56727878 24.03467023]\n", + " [14.19127961 24.0376524 ]\n", + " [ 8.81528044 24.04063456]\n", + " [ 3.43928127 24.04361672]\n", + " [30.31629496 18.65270673]\n", + " [24.9402958 18.6556889 ]\n", + " [19.56429662 18.65867106]\n", + " [14.18829744 18.66165322]\n", + " [ 8.81229827 18.66463538]\n", + " [ 3.4362991 18.66761755]\n", + " [30.31331281 13.27670756]\n", + " [24.93731363 13.27968972]\n", + " [19.56131446 13.28267189]\n", + " [14.18531529 13.28565406]\n", + " [ 8.80931611 13.28863621]\n", + " [ 3.43331694 13.29161838]\n", + " [30.31033064 7.90070839]\n", + " [24.93433147 7.90369055]\n", + " [19.55833229 7.90667271]\n", + " [14.18233312 7.90965488]\n", + " [ 8.80633395 7.91263704]\n", + " [ 3.43033477 7.9156192 ]\n", + " [30.30734847 2.52470921]\n", + " [24.9313493 2.52769138]\n", + " [19.55535013 2.53067354]\n", + " [14.17935096 2.53365571]\n", + " [ 8.80335178 2.53663787]\n", + " [ 3.42735261 2.53962004]]\n", + "DEBUG:root:mm_to_pix: fitpx.shape: (96, 2)\n", + "DEBUG:root:radec2pix: camVec: [[-0.00108623 -0.00110818 -0.00112898 -0.00114857 -0.00116686 -0.00118378\n", + " -0.00119922 -0.00121312 -0.00108623 -0.03008973 -0.05897582 -0.08763213\n", + " -0.11594722 -0.14381054 -0.17111212 -0.19774215 -0.00121312 -0.0312253\n", + " -0.06111305 -0.09075893 -0.12004913 -0.1488739 -0.17712688 -0.20470344\n", + " -0.19774215 -0.19951656 -0.20103291 -0.2022905 -0.20328809 -0.20402394\n", + " -0.20449622 -0.20470344 -0.00119558 -0.00122271 -0.00124786 -0.00127089\n", + " -0.00129164 -0.00130994 -0.01373956 -0.04922259 -0.08441749 -0.11911871\n", + " -0.1531227 -0.18622706 -0.01430615 -0.05102028 -0.08743049 -0.12332566\n", + " -0.15850368 -0.19276957 -0.19845732 -0.20045757 -0.20206974 -0.20329178\n", + " -0.20412054 -0.20455274 -0.00118556 -0.00118556 -0.20461015 -0.20461015\n", + " -0.01379915 -0.04942232 -0.08475642 -0.11959564 -0.15373662 -0.18697743\n", + " -0.01395111 -0.04992687 -0.08561039 -0.12079486 -0.15527748 -0.18885795\n", + " -0.0140777 -0.05033965 -0.08630574 -0.12176792 -0.15652378 -0.19037482\n", + " -0.01417814 -0.05065827 -0.08683905 -0.12251113 -0.15747231 -0.19152571\n", + " -0.0142515 -0.05087978 -0.08720594 -0.12301955 -0.15811848 -0.19230704\n", + " -0.01429691 -0DEBUG:root:radec2pix: curVec Shape: (96, 3)\n", + "DEBUG:root:radec2pix: xyfp: [[ -0.167405 31.491388 ]\n", + " [ -0.167405 27.10495943]\n", + " [ -0.167405 22.71853086]\n", + " [ -0.167405 18.33210229]\n", + " [ -0.167405 13.94567372]\n", + " [ -0.167405 9.55924515]\n", + " [ -0.167405 5.17281657]\n", + " [ -0.167405 0.786388 ]\n", + " [ -0.167405 31.491388 ]\n", + " [ -4.55383357 31.491388 ]\n", + " [ -8.94026214 31.491388 ]\n", + " [-13.32669071 31.491388 ]\n", + " [-17.71311928 31.491388 ]\n", + " [-22.09954786 31.491388 ]\n", + " [-26.48597643 31.491388 ]\n", + " [-30.872405 31.491388 ]\n", + " [ -0.167405 0.786388 ]\n", + " [ -4.55383357 0.786388 ]\n", + " [ -8.94026214 0.786388 ]\n", + " [-13.32669071 0.786388 ]\n", + " [-17.71311929 0.786388 ]\n", + " [-22.09954786 0.786388 ]\n", + " [-26.48597643 0.786388 ]\n", + " [-30.872405 0.786388 ]\n", + " [-30.872405 31.491388 ]\n", + " [-30.872405 27.10495943]\n", + " [-30.872405 22.71853086]\n", + " [-30.872405 18.33210229]\n", + " [-30.872405 13.94567371]\n", + " [-30.872405 9.55924514]\n", + " [-30.872405 5.17281657]\n", + " [-30.872405 0.786388 ]\n", + " [ -0.182405 29.578888 ]\n", + " [ -0.182405 24.202888 ]\n", + " [ -0.182405 18.826888 ]\n", + " [ -0.182405 13.450888 ]\n", + " [ -0.182405 8.074888 ]\n", + " [ -0.182405 2.698888 ]\n", + " [ -2.079905 31.476388 ]\n", + " [ -7.455905 31.476388 ]\n", + " [-12.831905 31.476388 ]\n", + " [-18.207905 31.476388 ]\n", + " [-23.583905 31.476388 ]\n", + " [-28.959905 31.476388 ]\n", + " [ -2.079905 0.801388 ]\n", + " [ -7.455905 0.801388 ]\n", + " [-12.831905 0.801388 ]\n", + " [-18.207905 0.801388 ]\n", + " [-23.583905 0.801388 ]\n", + " [-28.959905 0.801388 ]\n", + " [-30.857405 29.578888 ]\n", + " [-30.857405 24.202888 ]\n", + " [-30.857405 18.826888 ]\n", + " [-30.857405 13.450888 ]\n", + " [-30.857405 8.074888 ]\n", + " [-30.857405 2.698888 ]\n", + " [ -0.182405 31.476388 ]\n", + " [ -0.182405 31.476388 ]\n", + " [-30.857405 0.801388 ]\n", + " [-30.857405 0.801388 ]\n", + " [ -2.079905 29.578888 ]\n", + " [ -7.455905 29.578888 ]\n", + " [-12.831905 29.578888 ]\n", + " [-18.207905 29.578888 ]\n", + " [-23.583905 29.578888 ]\n", + " [-28.959905 29.578888 ]\n", + " [ -2.079905 24.202888 ]\n", + " [ -7.455905 24.202888 ]\n", + " [-12.831905 24.202888 ]\n", + " [-18.207905 24.202888 ]\n", + " [-23.583905 24.202888 ]\n", + " [-28.959905 24.202888 ]\n", + " [ -2.079905 18.826888 ]\n", + " [ -7.455905 18.826888 ]\n", + " [-12.831905 18.826888 ]\n", + " [-18.207905 18.826888 ]\n", + " [-23.583905 18.826888 ]\n", + " [-28.959905 18.826888 ]\n", + " [ -2.079905 13.450888 ]\n", + " [ -7.455905 13.450888 ]\n", + " [-12.831905 13.450888 ]\n", + " [-18.207905 13.450888 ]\n", + " [-23.583905 13.450888 ]\n", + " [-28.959905 13.450888 ]\n", + " [ -2.079905 8.074888 ]\n", + " [ -7.455905 8.074888 ]\n", + " [-12.831905 8.074888 ]\n", + " [-18.20790499 8.074888 ]\n", + " [-23.583905 8.074888 ]\n", + " [-28.959905 8.074888 ]\n", + " [ -2.079905 2.698888 ]\n", + " [ -7.455905 2.698888 ]\n", + " [-12.831905 2.698888 ]\n", + " [-18.207905 2.698888 ]\n", + " [-23.583905 2.698888 ]\n", + " [-28.959905 2.698888 ]]\n", + "DEBUG:root:radec2pix: lat: [77.96328192 79.56853071 81.20563621 82.86944579 84.55492216 86.25697831\n", + " 87.97026012 89.68446141 77.96328192 77.844DEBUG:root:optics_fp: cphi: [-0.71661052 -0.76668522 -0.81865324 -0.87041945 -0.91877042 -0.95945138\n", + " -0.98776621 -0.99975905 -0.71661052 -0.66390451 -0.59904941 -0.51982885\n", + " -0.42452343 -0.31272572 -0.18629262 -0.04992637 -0.99975905 -0.9996769\n", + " -0.99954452 -0.99931081 -0.99883841 -0.997645 -0.9929376 -0.91049017\n", + " -0.04992637 -0.05798589 -0.06914879 -0.08562676 -0.11237014 -0.16312264\n", + " -0.29391715 -0.91049017 -0.73796092 -0.80082989 -0.86457988 -0.92376676\n", + " -0.97061799 -0.99671508 -0.69515031 -0.62267974 -0.52972774 -0.41289021\n", + " -0.27152486 -0.11024131 -0.99971595 -0.99957998 -0.99931728 -0.99870324\n", + " -0.99665599 -0.97888657 -0.05365319 -0.06553749 -0.08417765 -0.1175659\n", + " -0.19410544 -0.51637928 -0.71661494 -0.71661494 -0.90871193 -0.90871193\n", + " -0.71720854 -0.64629919 -0.55357618 -0.43455016 -0.28757779 -0.11723007\n", + " -0.78293369 -0.71938388 -0.63073804 -0.50813028 -0.34464727 -0.14284199\n", + " -0.85084193 -0.79983697 -0.72276415 -0.60462283 -0.42711476 -0.18254722\n", + " -0.91515494 -0.88164179 -0.82613743 -0.72873282 -0.5521103 -0.25185684\n", + " -0.9670144 -0.95239316 -0.92593126 -0.87175367 -0.74209777 -0.39893833\n", + " -0.99629342 -0.99453874 -0.99117471 -0.98343711 -0.95881096 -0.79843817]\n", + ".0510015 -0.08740238 -0.12328852 -0.15845779 -0.19271515]\n", + " [ 0.20994474 0.18250974 0.15437814 0.12565449 0.09644464 0.0668576\n", + " 0.03700641 0.00700791 0.20994474 0.20980966 0.20940234 0.20872399\n", + " 0.20777622 0.20656061 0.20507835 0.20333011 0.00700791 0.00701559\n", + " 0.00701392 0.00700302 0.00698305 0.00695418 0.00691659 0.00687038\n", + " 0.20333011 0.17679323 0.14956333 0.12175011 0.09346339 0.06481351\n", + " 0.03591173 0.00687038 0.19807534 0.16396932 0.12892083 0.09312409\n", + " 0.05677987 0.02009792 0.20982687 0.20947825 0.20872203 0.20756102\n", + " 0.20599809 0.20403521 0.00711509 0.00711803 0.00710683 0.00708177\n", + " 0.0070432 0.00699139 0.19185821 0.1588536 0.12491703 0.09025061\n", + " 0.0550575 0.01954302 0.20985223 0.20985223 0.00696998 0.00696998\n", + " 0.19805172 0.19772367 0.19701128 0.19591776 0.19444643 0.19259955\n", + " 0.16395068 0.1636812 0.16309354 0.16219177 0.16098028 0.15946229\n", + " 0.12890725 0.1286975 0.12823673 0.12752928 0.12657997 0.12539259\n", + " 0.09311572 0.09296747 0.092637 0.09212815 0.0914453 0.09059206\n", + " 0.05677687 0.05669199 0.05649545 0.05618991 0.05577844 0.0552636\n", + " 0.02010041 0.0200803 0.02002048 0.0199219 0.01978566 0.01961272]\n", + " [ 0.97771265 0.98320342 0.98801119 0.9920734 0.99533767 0.99776183\n", + " 0.99931431 0.99997471 0.97771265 0.97727914 0.97604944 0.97404051\n", + " 0.97128023 0.96780744 0.96367189 0.95893426 0.99997471 0.99948775\n", + " 0.99810621 0.99584827 0.99274339 0.98883174 0.98416372 0.97879993\n", + " 0.95893426 0.96381393 0.96809947 0.97172808 0.97464791 0.97681802\n", + " 0.97820838 0.97879993 0.98018607 0.98646468 0.9916541 0.9956537\n", + " 0.99838589 0.99979716 0.97764201 0.9765736 0.97432479 0.97094241\n", + " 0.96649792 0.96108746 0.99987235 0.99867225 0.99614527 0.99234098\n", + " 0.98733327 0.98121915 0.96114781 0.96673797 0.971372 0.97494989\n", + " 0.97739627 0.97866043 0.97773239 0.97773239 0.97881873 0.97881873\n", + " 0.98009443 0.97901113 0.97673072 0.97330012 0.96879081 0.96329894\n", + " 0.98636988 0.98524909 0.98288929 0.97933775 0.97466623 0.96897082\n", + " 0.99155673 0.99040541 0.9879811 0.98433168 0.97952939 0.97367044\n", + " 0.99555434 0.9943796 0.99190593 0.98818188 0.98328034 0.97729779\n", + " 0.99828517 0.99709441 0.99458704 0.99081223 0.98584345 0.97977749\n", + " 0.99969574 0.99849668 0.99597189 0.99217088 0.98716749 0.98105872]]\n", + "99787 77.51456239 76.99218852\n", + " 76.30618444 75.48813083 74.56921129 73.5781677 89.68446141 88.18737722\n", + " 86.48534608 84.7856574 83.09971795 81.43388184 79.79360686 78.18420142\n", + " 73.5781677 74.59165918 75.53717808 76.38588844 77.10603256 77.66476376\n", + " 78.03174302 78.18420142 78.65888684 80.64836049 82.6805387 84.74610355\n", + " 86.83565024 88.93857815 77.94403081 77.65435125 77.0648DEBUG:root:radec2pix: ccdpx: [[-4.45000000e+01 -5.00000033e-01]\n", + " [-4.45000003e+01 2.91928571e+02]\n", + " [-4.45000002e+01 5.84357143e+02]\n", + " [-4.44999998e+01 8.76785714e+02]\n", + " [-4.44999998e+01 1.16921429e+03]\n", + " [-4.45000001e+01 1.46164286e+03]\n", + " [-4.44999997e+01 1.75407143e+03]\n", + " [-4.45000002e+01 2.04650000e+03]\n", + " [-4.45000000e+01 -5.00000033e-01]\n", + " [ 2.47928571e+02 -4.99999990e-01]\n", + " [ 5.40357143e+02 -5.00000111e-01]\n", + " [ 8.32785714e+02 -5.00000066e-01]\n", + " [ 1.12521429e+03 -4.99999995e-01]\n", + " [ 1.41764286e+03 -5.00000140e-01]\n", + " [ 1.71007143e+03 -5.00000040e-01]\n", + " [ 2.00250000e+03 -5.00000297e-01]\n", + " [-4.45000002e+01 2.04650000e+03]\n", + " [ 2.47928572e+02 2.04650000e+03]\n", + " [ 5.40357143e+02 2.04650000e+03]\n", + " [ 8.32785714e+02 2.04650000e+03]\n", + " [ 1.12521429e+03 2.04650000e+03]\n", + " [ 1.41764286e+03 2.04650000e+03]\n", + " [ 1.71007143e+03 2.04650000e+03]\n", + " [ 2.00250000e+03 2.04650000e+03]\n", + " [ 2.00250000e+03 -5.00000297e-01]\n", + " [ 2.00250000e+03 2.91928572e+02]\n", + " [ 2.00250000e+03 5.84357143e+02]\n", + " [ 2.00250000e+03 8.767852717 76.22448951\n", + " 75.19110028 74.0211233 89.125335 87.06142445 84.97647052 82.91045242\n", + " 80.87550158 78.88161748 74.03033777 75.2306137 76.3004884 77.18265224\n", + " 77.81700171 78.15051889 77.96868077 77.96868077 78.18950618 78.18950618\n", + " 78.63240168 78.32169564 77.69220555 76.80049546 75.71119975 74.48541744\n", + " 80.6152305 80.22940153 79.46186211 78.40069669 77.13562878 75.74187621\n", + " 82.63719517 82.13946169 81.18123393 79.90730671 78.44079679 76.86879929\n", + " 84.68476231 84.00240554 82.77130238 81.23639689 79.55203729 77.80444657\n", + " 86.73357497 85.70054621 84.08633958 82.26535796 80.37757677 78.48177609\n", + " 88.66315983 86.89328024 84.87745159 82.8411917 80.82286686 78.83968928]\n", + "DEBUG:root:radec2pix: camVec Shape: (3, 96)\n", + "714e+02]\n", + " [ 2.00250000e+03 1.16921429e+03]\n", + " [ 2.00250000e+03 1.46164286e+03]\n", + " [ 2.00250000e+03 1.75407143e+03]\n", + " [ 2.00250000e+03 2.04650000e+03]\n", + " [-4.34999999e+01 1.27000000e+02]\n", + " [-4.35000000e+01 4.85400000e+02]\n", + " [-4.35000001e+01 8.43800000e+02]\n", + " [-4.35000001e+01 1.20220000e+03]\n", + " [-4.34999998e+01 1.56060000e+03]\n", + " [-4.34999998e+01 1.91900000e+03]\n", + " [ 8.29999999e+01 4.99999893e-01]\n", + " [ 4.41400000e+02 5.00000055e-01]\n", + " [ 7.99800000e+02 4.99999998e-01]\n", + " [ 1.15820000e+03 5.00000122e-01]\n", + " [ 1.51660000e+03 4.99999912e-01]\n", + " [ 1.87500000e+03 5.00000160e-01]\n", + " [ 8.30000002e+01 2.04550000e+03]\n", + " [ 4.41400000e+02 2.04550000e+03]\n", + " [ 7.99800000e+02 2.04550000e+03]\n", + " [ 1.15820000e+03 2.04550000e+03]\n", + " [ 1.51660000e+03 2.04550000e+03]\n", + " [ 1.87500000e+03 2.04550000e+03]\n", + " [ 2.00150000e+03 1.27000000e+02]\n", + " [ 2.00150000e+03 4.85400000e+02]\n", + " [ 2.00150000e+03 8.43800000e+02]\n", + " [ 2.00150000e+03 1.20220000e+03]\n", + " [ 2.00150000e+03 1.56060000e+03]\n", + " [ 2.00150000e+03 1.91900000e+03]\n", + " [-4.35000001e+01 4.99999931e-01]\n", + " [-4.35000001e+01 4.99999931e-01]\n", + " [ 2.00150000e+03 2.04550000e+03]\n", + " [ 2.00150000e+03 2.04550000e+03]\n", + " [ 8.30000000e+01 1.27000000e+02]\n", + " [ 4.41400000e+02 1.27000000e+02]\n", + " [ 7.99800000e+02 1.27000000e+02]\n", + " [ 1.15820000e+03 1.27000000e+02]\n", + " [ 1.5166000DEBUG:root:radec2pix: xyfp: [[-32.29046994 -31.71666141]\n", + " [-32.28860507 -27.33023323]\n", + " [-32.2867402 -22.94380505]\n", + " [-32.28487534 -18.55737688]\n", + " [-32.28301047 -14.1709487 ]\n", + " [-32.2811456 -9.78452053]\n", + " [-32.27928073 -5.39809235]\n", + " [-32.27741587 -1.01166418]\n", + " [-32.29046994 -31.71666141]\n", + " [-27.90404176 -31.71852627]\n", + " [-23.51761359 -31.72039114]\n", + " [-19.13118541 -31.722256 ]\n", + " [-14.74475724 -31.72412087]\n", + " [-10.35832906 -31.72598574]\n", + " [ -5.97190089 -31.72785061]\n", + " [ -1.58547272 -31.72971547]\n", + " [-32.27741587 -1.01166418]\n", + " [-27.8909877 -1.01352905]\n", + " [-23.50455952 -1.01539391]\n", + " [-19.11813134 -1.01725878]\n", + " [-14.73170317 -1.01912365]\n", + " [-10.345275 -1.02098851]\n", + " [ -5.95884682 -1.02285338]\n", + " [ -1.57241864 -1.02471825]\n", + " [ -1.58547272 -31.72971547]\n", + " [ -1.58360785 -27.3432873 ]\n", + " [ -1.58174298 -22.95685912]\n", + " [ -1.57987811 -18.57043094]\n", + " [ -1.57801325 -14.18400278]\n", + " [ -1.57614838 -9.7975746 ]\n", + " [ -1.57428351 -5.41114642]\n", + " [ -1.57241864 -1.02471825]\n", + " [-32.27465685 -29.80416795]\n", + " [-32.27237127 -24.42816844]\n", + " [-32.2700857 -19.05216893]\n", + " [-32.26780012 -13.67616941]\n", + " [-32.26551454 -8.3001699 ]\n", + " [-32.26322896 -2.92417038]\n", + " [-30.37796373 -31.70247449]\n", + " [-25.00196422 -31.70476008]\n", + " [-19.62596471 -31.70704565]\n", + " [-14.24996519 -31.70933123]\n", + " [ -8.87396568 -31.71161681]\n", + " [ -3.49796617 -31.71390239]\n", + " [-30.36492242 -1.02747727]\n", + " [-24.98892291 -1.02976285]\n", + " [-19.61292339 -1.03204842]\n", + " [-14.23692388 -1.034334 ]\n", + " [ -8.86092437 -1.03661958]\n", + " [ -3.48492485 -1.03890516]\n", + " [ -1.59965962 -29.81720927]\n", + " [ -1.59737405 -24.44120975]\n", + " [ -1.59508847 -19.06521024]\n", + " [ -1.59280289 -13.68921073]\n", + " [ -1.59051731 -8.31321121]\n", + " [ -1.58823174 -2.9372117 ]\n", + " [-32.27546357 -31.70166778]\n", + " [-32.27546357 -31.70166778]\n", + " [ -1.58742502 -1.03971187]\n", + " [ -1.58742502 -1.03971187]\n", + " [-30.37715702 -29.80497466]\n", + " [-25.00115751 -29.80726024]\n", + " [-19.625158 -29.80954582]\n", + " [-14.24915848 -29.8118314 ]\n", + " [ -8.87315897 -29.81411698]\n", + " [ -3.49715945 -29.81640256]\n", + " [-30.37487145 -24.42897515]\n", + " [-24.99887193 -24.43126073]\n", + " [-19.62287241 -24.43354631]\n", + " [-14.2468729 -24.43583188]\n", + " [ -8.87087339 -24.43811746]\n", + " [ -3.49487388 -24.44040305]\n", + " [-30.37258587 -19.05297564]\n", + " [-24.99658635 -19.05526122]\n", + " [-19.62058684 -19.05754679]\n", + " [-14.24458732 -19.05983237]\n", + " [ -8.86858781 -19.06211795]\n", + " [ -3.4925883 -19.06440353]\n", + " [-30.37030029 -13.67697612]\n", + " [-24.99430077 -13.6792617 ]\n", + " [-19.61830126 -13.68154728]\n", + " [-14.24230175 -13.68383286]\n", + " [ -8.86630223 -13.68611844]\n", + " [ -3.49030272 -13.68840401]\n", + " [-30.36801471 -8.30097661]\n", + " [-24.9920152 -8.30326219]\n", + " [-19.61601568 -8.30554776]\n", + " [-14.24001617 -8.30783335]\n", + " [ -8.86401666 -8.31011893]\n", + " [ -3.48801714 -8.3124045 ]\n", + " [-30.36572914 -2.9249771 ]\n", + " [-24.98972962 -2.92726267]\n", + " [-19.6137301 -2.92954825]\n", + " [-14.23773059 -2.93183383]\n", + " [ -8.86173108 -2.93411941]\n", + " [ -3.48573156 -2.93640499]]\n", + "0e+03 1.27000000e+02]\n", + " [ 1.87500000e+03 1.27000000e+02]\n", + " [ 8.29999999e+01 4.85400000e+02]\n", + " [ 4.41400000e+02 4.85400000e+02]\n", + " [ 7.99800000e+02 4.85400000e+02]\n", + " [ 1.15820000e+03 4.85400000e+02]\n", + " [ 1.51660000e+03 4.85400000e+02]\n", + " [ 1.87500000e+03 4.85400000e+02]\n", + " [ 8.29999999e+01 8.43800000e+02]\n", + " [ 4.41400000e+02 8.43800000e+02]\n", + " [ 7.99800000e+02 8.43800000e+02]\n", + " [ 1.15820000e+03 8.43800000e+02]\n", + " [ 1.51660000e+03 8.43800000e+02]\n", + " [ 1.87500000e+03 8.43800000e+02]\n", + " [ 8.30000001e+01 1.20220000e+03]\n", + " [ 4.41400000e+02 1.20220000e+03]\n", + " [ 7.99800000e+02 1.20220000e+03]\n", + " [ 1.15820000e+03 1.20220000e+03]\n", + " [ 1.51660000e+03 1.20220000e+03]\n", + " [ 1.87500000e+03 1.20220000e+03]\n", + " [ 8.29999998e+01 1.56060000e+03]\n", + " [ 4.41400000e+02 1.56060000e+03]\n", + " [ 7.99800000e+02 1.56060000e+03]\n", + " [ 1.15820000e+03 1.56060000e+03]\n", + " [ 1.51660000e+03 1.56060000e+03]\n", + " [ 1.87500000e+03 1.56060000e+03]\n", + " [ 8.30000002e+01 1.91900000e+03]\n", + " [ 4.41400000e+02 1.91900000e+03]\n", + " [ 7.99800000e+02 1.91900000e+03]\n", + " [ 1.15820000e+03 1.91900000e+03]\n", + " [ 1.51660000e+03 1.91900000e+03]\n", + " [ 1.87500000e+03 1.91900000e+03]]\n", + "DEBUG:root:optics_fp: sphi: [-0.69747355 -0.64202319 -0.57428814 -0.49231086 -DEBUG:root:radec2pix: ccdpx: [[-4.44999999e+01 -4.99999855e-01]\n", + " [-4.45000000e+01 2.91928571e+02]\n", + " [-4.45000000e+01 5.84357143e+02]\n", + " [-4.44999998e+01 8.76785714e+02]\n", + " [-4.45000001e+01 1.16921429e+03]\n", + " [-4.45000000e+01 1.46164286e+03]\n", + " [-4.45000000e+01 1.75407143e+03]\n", + " [-4.44999999e+01 2.04650000e+03]\n", + " [-4.44999999e+01 -4.99999855e-01]\n", + " [ 2.47928571e+02 -5.00000005e-01]\n", + " [ 5.40357143e+02 -5.00000101e-01]\n", + " [ 8.32785714e+02 -5.00000211e-01]\n", + " [ 1.12521429e+03 -4.99999718e-01]\n", + " [ 1.41764286e+03 -5.00000108e-01]\n", + " [ 1.71007143e+03 -4.99999976e-01]\n", + " [ 2.00250000e+03 -5.00000222e-01]\n", + " [-4.44999999e+01 2.04650000e+03]\n", + " [ 2.47928572e+02 2.04650000e+03]\n", + " [ 5.40357143e+02 2.04650000e+03]\n", + " [ 8.32785714e+02 2.04650000e+03]\n", + " [ 1.12521429e+03 2.04650000e+03]\n", + " [ 1.41764286e+03 2.04650000e+03]\n", + " [ 1.71007143e+03 2.04650000e+03]\n", + " [ 2.00250000e+03 2.04650000e+03]\n", + " [ 2.00250000e+03 -5.00000222e-01]\n", + " [ 2.00250000e+03 2.91928571e+02]\n", + " [ 2.00250000e+03 5.84357143e+02]\n", + " [ 2.00250000e+03 8.76785714e+02]\n", + " [ 2.00250000e+03 1.16921429e+03]\n", + " [ 2.00250000e+03 1.46164286e+03]\n", + " [ 2.00250000e+03 1.75407143e+03]\n", + " [ 2.00250000e+03 2.04650000e+03]\n", + " [-4.35000000e+01 1.27000000e+02]\n", + " [-4.35000000e+01 4.85400000e+02]\n", + " [-4.34999998e+01 8.43800000e+02]\n", + " [-4.35000001e+01 1.20220000e+03]\n", + " [-4.35000000e+01 1.56060000e+03]\n", + " [-4.34999999e+01 1.91900000e+03]\n", + " [ 8.29999998e+01 4.99999766e-01]\n", + " [ 4.41400000e+02 4.99999737e-01]\n", + " [ 7.99800000e+02 4.99999723e-01]\n", + " [ 1.15820000e+03 5.00000251e-01]\n", + " [ 1.51660000e+03 4.99999874e-01]\n", + " [ 1.87500000e+03 5.00000148e-01]\n", + " [ 8.30000001e+01 2.04550000e+03]\n", + " [ 4.41400000e+02 2.04550000e+03]\n", + " [ 7.99800000e+02 2.04550000e+03]\n", + " [ 1.15820000e+03 2.04550000e+03]\n", + " [ 1.51660000e+03 2.04550000e+03]\n", + " [ 1.87500000e+03 2.04550000e+03]\n", + " [ 2.00150000e+03 1.27000000e+02]\n", + " [ 2.00150000e+03 4.85400000e+02]\n", + " [ 2.00150000e+03 8.43800000e+02]\n", + " [ 2.00150000e+03 1.20220000e+03]\n", + " [ 2.00150000e+03 1.56060000e+03]\n", + " [ 2.00150000e+03 1.91900000e+03]\n", + " [-4.3500000.39479224 -0.28187416\n", + " -0.15594205 -0.02195087 -0.69747355 -0.74781736 -0.80071206 -0.85427043\n", + " -0.90541695 -0.94984347 -0.98249431 -0.9987529 -0.02195087 -0.02541825\n", + " -0.03017857 -0.03712011 -0.04818532 -0.06858898 -0.11863781 -0.41353071\n", + " -0.9987529 -0.9983174 -0.99760636 -0.99632728 -0.99366642 -0.9866058\n", + " -0.9558309 -0.41353071 -0.67484345 -0.59889188 -0.50249541 -0.38295557\n", + " -0.24062567 -0.080988 -0.71886442 -0.7824768 -0.84816774 -0.91078081\n", + " -0.96243143 -0.99390485 -0.02383323 -0.02898045 -0.03694547 -0.05091008\n", + " -0.08171193 -0.2044042 -0.99855963 -0.99785011 -0.99645076 -0.99306508\n", + " -0.98098067 -0.85635999 -0.69746902 -0.69746902 -0.41742381 -0.41742381\n", + " -0.6968586 -0.76308411 -0.83279855 -0.90064763 -0.95775728 -0.99310478\n", + " -0.62210517 -0.69461272 -0.77599583 -0.86128022 -0.93873226 -0.98974551\n", + " -0.52542175 -0.60021731 -0.69109478 -0.79651192 -0.90419742 -0.98319709\n", + " -0.40310226 -0.47191923 -0.56346867 -0.68479813 -0.83377108 -0.9677645\n", + " -0.2547217 -0.30487255 -0.37DEBUG:root:radec2pix: camVec: [[-0.00114705 -0.00115629 -0.0011641 -0.00117048 -0.00117539 -0.00117881\n", + " -0.00118068 -0.00118097 -0.00114705 -0.03018244 -0.05910007 -0.08778716\n", + " -0.11613176 -0.14402308 -0.17135219 -0.19801388 -0.00118097 -0.03121228\n", + " -0.06111791 -0.09077999 -0.12008538 -0.14892541 -0.17719395 -0.20478471\n", + " -0.19801388 -0.19975823 -0.20124936 -0.20248221 -0.20345393 -0.20416257\n", + " -0.20460656 -0.20478471 -0.00125101 -0.00126235 -0.00127136 -0.00127799\n", + " -0.00128216 -0.00128379 -0.01381426 -0.04933618 -0.08456905 -0.11930642\n", + " -0.15334441 -0.18648385 -0.01428247 -0.05101935 -0.08744986 -0.12336368\n", + " -0.15856056 -0.19284509 -0.1987148 -0.20068229 -0.20226422 -0.20345456\n", + " -0.20424964 -0.20464672 -0.00124645 -0.00124645 -0.20469148 -0.20469148\n", + " -0.01386808 -0.04952932 -0.08490071 -0.11977552 -0.15394951 -0.18722234\n", + " -0.01400325 -0.05001432 -0.08573269 -0.12095098 -0.15546507 -0.18907339\n", + " -0.01411268 -0.05040698 -0.08640482 -0.12189811 -0.15668376 -0.19056116\n", + " -0.01419584 -0.05070556 -0.08691471 -0.12261435 -0.15760261 -0.19168088\n", + " -0.01425179 -0.05090701 -0.08725814 -0.12309542 -0.15821798 -0.19242913\n", + " -0.01427955 -0.05100809 -0.08743051 -0.12333654 -0.15852587 -0.19280295]\n", + " [ 0.20838541 0.18089194 0.15270652 0.12393558 0.09468513 0.06506336\n", + " 0.03518275 0.0051606 0.20838541 0.20823844 0.20782077 0.20713345\n", + " 0.20617803 0.20495645 0.20347155 0.2017284 0.0051606 0.00515607\n", + " 0.00514464 0.00512646 0.00510175 0.0050707 0.00503345 0.00499006\n", + " 0.2017284 0.17512925 0.14784829 0.11999042 0.09166442 0.06298098\n", + " 0.03405194 0.00499006 0.19649007 0.1623152 0.12720686 0.09136033\n", + " 0.05497503 0.01826009 0.20826196 0.20789982 0.20713224 0.20596186\n", + " 0.20439232 0.20242966 0.00526224 0.00525184 0.00523103 0.00520016\n", + " 0.00515961 0.0051096 0.19022738 0.157155 0.12316211 0.08844755\n", + " 0.05321501 0.01767079 0.20829266 0.20829266 0.0050897 0.0050897\n", + " 0.19646111 0.19611969 0.19539637 0.1942902e+01 4.99999824e-01]\n", + " [-4.35000002e+01 4.99999824e-01]\n", + " [ 2.00150000e+03 2.04550000e+03]\n", + " [ 2.00150000e+03 2.04550000e+03]\n", + " [ 8.30000001e+01 1.27000000e+02]\n", + " [ 4.41400000e+02 1.27000000e+02]\n", + " [ 7.99800000e+02 1.27000000e+02]\n", + " [ 1.15820000e+03 1.27000000e+02]\n", + " [ 1.51660000e+03 1.27000000e+02]\n", + " [ 1.87500000e+03 1.27000000e+02]\n", + " [ 8.29999998e+01 4.85400000e+02]\n", + " [ 4.41400000e+02 4.85400000e+02]\n", + " [ 7.99800000e+02 4.85400000e+02]\n", + " [ 1.15820000e+03 4.85400000e+02]\n", + " [ 1.51660000e+03 4.85400000e+02]\n", + " [ 1.87500000e+03 4.85400000e+02]\n", + " [ 8.30000003e+01 8.43800000e+02]\n", + " [ 4.41400000e+02 8.43800000e+02]\n", + " [ 7.99800000e+02 8.43800000e+02]\n", + " [ 1.15820000e+03 8.43800000e+02]\n", + " [ 1.51660000e+03 8.43800000e+02]\n", + " [ 1.87500000e+03 8.43800000e+02]\n", + " [ 8.29999997e+01 1.20220000e+03]\n", + " [ 4.41400000e+02 1.20220000e+03]\n", + " [ 7.99800000e+02 1.20220000e+03]\n", + " [ 1.15820000e+03 1.20220000e+03]\n", + " [ 1.51660000e+03 1.20220000e+03]\n", + " [ 1.87500000e+03 1.20220000e+03]\n", + " [ 8.30000001e+01 1.56060000e+DEBUG:root:cartToSphere: vec: [[ 0.00162968 -0.20886687 0.97794273]\n", + " [ 0.00164392 -0.18138669 0.98341048]\n", + " [ 0.00165615 -0.15321267 0.98819185]\n", + " [ 0.00166636 -0.12445123 0.99222433]\n", + " [ 0.0016745 -0.0952084 0.99545595]\n", + " [ 0.00168051 -0.06559229 0.99784509]\n", + " [ 0.00168433 -0.03571531 0.99936059]\n", + " [ 0.00168589 -0.00569466 0.99998236]\n", + " [ 0.00162968 -0.20886687 0.97794273]\n", + " [ 0.03065921 -0.20871575 0.97749565]\n", + " [ 0.0595691 -0.20829328 0.9762507 ]\n", + " [ 0.08824658 -0.20760055 0.9742251 ]\n", + " [ 0.11657974 -0.20663909 0.97144709]\n", + " [ 0.14445783 -0.20541086 0.96795574]\n", + " [ 0.17177197 -0.20391875 0.96380057]\n", + " [ 0.1984171 -0.20216791 0.95904056]\n", + " [ 0.00168589 -0.00569466 0.99998236]\n", + " [ 0.03171597 -0.00569039 0.99948072]\n", + " [ 0.06161834 -0.0056785 0.99808363]\n", + " [ 0.09127522 -0.00565918 0.99580962]\n", + " [ 0.12057355 -0.00563263 0.99268842]\n", + " [ 0.14940474 -0.00559908 0.98876027]\n", + " [ 0.17766265 -0.00555867 0.98407575]\n", + " [ 0.205241 -0.00551146 0.97869595]\n", + " [ 0.1984171 -0.20216791 0.9590403]\n", + " [ 4.41400000e+02 1.56060000e+03]\n", + " [ 7.99800000e+02 1.56060000e+03]\n", + " [ 1.15820000e+03 1.56060000e+03]\n", + " [ 1.51660000e+03 1.56060000e+03]\n", + " [ 1.87500000e+03 1.56060000e+03]\n", + " [ 8.30000000e+01 1.91900000e+03]\n", + " [ 4.41400000e+02 1.91900000e+03]\n", + " [ 7.99800000e+02 1.91900000e+03]\n", + " [ 1.15820000e+03 1.91900000e+03]\n", + " [ 1.51660000e+03 1.91900000e+03]\n", + " [ 1.87500000e+03 1.91900000e+03]]\n", + "398 0.1928159 0.19096695\n", + " 0.16229116 0.16200846 0.16141067 0.16050163 0.15928501 0.15776388\n", + " 0.1271878 0.12696445 0.12649338 0.12577923 0.12482642 0.12363768\n", + " 0.0913464 0.09118412 0.09084281 0.0903271 0.0896414 0.08878838\n", + " 0.05496643 0.05486748 0.05466012 0.05434775 0.0539337 0.05341999\n", + " 0.01825699 0.0182233 0.01815347 0.01804874 0.01791034 0.01773905]\n", + " [ 0.97804612 0.9835023 0.9882709 0.99228958 0.99550658 0.99788044\n", + " 0.9993802 0.99998599 0.97804612 0.97761228 0.9763799 0.97436602\n", + " 0.9715987 0.96811684 0.96396979 0.95921643 0.99998599 0.99949948\n", + " 0.99811729 0.99585778 0.99275046 0.98883543 0.98416308 0.97879432\n", + " 0.95921643 0.96406763 0.96831791 0.97190702 0.97478415 0.97690892\n", + " 0.97825182 0.97879432 0.98050502 0.98673815 0.99187539 0.99581708\n", + " 0.99848691 0.99983245 0.97797552 0.97690512 0.97465087 0.97125985\n", + " 0.96680364 0.96137714 0.99988415 0.99868386 0.99615519 0.9923479\n", + " 0.98733577 0.98121591 0.96141873 0.96696894 0.9715556 0.97508116\n", + " 0.97747135 0.97867638 0.97806575 0.97806575 0.97881331 0.97881331\n", + " 0.98041354 0.9793283 0.97704254 0.97360345 0.96908285 0.96357637\n", + " 0.98664355 0.98552109 0.9831564 0.9795969 0.97491482 0.9692068\n", + " 0.99177825 0.99062564 0.98819716 0.98454072 0.97972882 0.97385839\n", + " 0.99571799 0.99454231 0.99206523 0.98833534 0.98342556 0.97743289\n", + " 0.99838649 0.99719508 0.99468502 0.99090557 0.98593013 0.97985577\n", + " 0.99973135 0.99853197 0.9960052 0.99220076 0.98719237 0.98107714]]\n", + "056]\n", + " [ 0.20017053 -0.17558769207 -0.48994442 -0.67029166 -0.91697776\n", + " -0.08601994 -0.10436806 -0.13256201 -0.18124971 -0.28404496 -0.60207682]\n", + "DEBUG:root:radec2pix: ccdpx: [[-4.45000000e+01 -4.99999838e-01]\n", + " [-4.45000000e+01 2.91928571e+02]\n", + " [-4.45000000e+01 5.84357142e+02]\n", + " [-4.45000000e+01 8.76785714e+02]\n", + " [-4.45000000e+01 1.16921429e+03]\n", + " [-4.45000000e+01 1.46164286e+03]\n", + " [-4.45000000e+01 1.75407143e+03]\n", + " [-4.45000001e+01 2.04650000e+03]\n", + " [-4.45000000e+01 -4.99999838e-01]\n", + " [ 2.47928571e+02 -5.00000127e-01]\n", + " [ 5.40357143e+02 -4.99999855e-01]\n", + " [ 8.32785714e+02 -4.99999742e-01]\n", + " [ 1.12521429e+03 -4.99999752e-01]\n", + " [ 1.41764286e+03 -5.00000255e-01]\n", + " [ 1.71007143e+03 -4.99999843e-01]\n", + " [ 2.00250000e+03 -5.00000108e-01]\n", + " [-4.45000001e+01 2.04650000e+03]\n", + " [ 2.47928572e+02 2.04650000e+03]\n", + " [ 5.40357143e+02 2.04650000e+03]\n", + " [ 8.32785714e+02 2.04650000e+03]\n", + " [ 1.12521429e+03 2.04650000e+03]\n", + " [ 1.41764286e+03 2.04650000e+03]\n", + " [ 1.71007143e+03 2.04650000e+03]\n", + " [ 2.00250000e+03 2.04650000e+03]\n", + " [ 2.00250000e+03 -5.00000108e-01]\n", + " [ 2.00250000e+03 2.91928571e+02]\n", + " [ 2.00250000e+03 5.84357143e+02]\n", + " [ 2.00250000e+03 8.76785714e+02]\n", + " [ 2.00250000e+03 1.16921429e+03]\n", + " [ 2.00250000e+03 1.46164286e+03]\n", + " [ 2.00250000e+03 1.75407143e+03]\n", + " [ 2.00250000e+03 2.04650000e+03]\n", + " [-4.35000000e+01 1.27000000e+02]\n", + " [-4.35000000e+01 4.85400000e+02]\n", + " [-4.35000000e+01 8.43800000e+02]\n", + " [-4.35000000e+01 1.20220000e+03]\n", + " [-4.35000000e+01 1.56060000e+03]\n", + " [-4.35000000e+01 1.91900000e+03]\n", + " [ 8.30000000e+01 5.00000282e-01]\n", + " [ 4.41400000e+02 4.99999845e-01]\n", + " [ 7.99800000e+02 4.99999800e-01]\n", + " [ 1.15820000e+03 4.99999731e-01]\n", + " [ 1.51660000e+03 5.00000238e-01]\n", + " [ 1.87500000e+03 4.99999813e-01]\n", + " [ 8.30000000e+01 2.04550000e+03]\n", + " [ 4.41400000e+02 2.04550000e+03]\n", + " [ 7.99800000e+02 2.04550000e+03]\n", + " [ 1.15820000e+03 2.04550000e+03]\n", + " [ 1.51660000e+03 2.04550000e+03]\n", + " [ 1.87500000e+03 2.04550000e+03]\n", + " [ 2.00150000e+03 1.27000000e+02]\n", + " [ 2.00150000e+03 4.85400000e+02]\n", + " [ 2.00150000e+03 8.43800000e+02]DEBUG:root:radec2pix: fitpx: [[4271.49999985 4155.49999985]\n", + " [4271.49999998 3863.07142855]\n", + " [4271.50000002 3570.64285716]\n", + " [4271.49999976 3278.21428558]\n", + " [4271.50000012 2985.78571434]\n", + " [4271.50000004 2693.35714287]\n", + " [4271.50000005 2400.92857144]\n", + " [4271.49999991 2108.5 ]\n", + " [4271.49999985 4155.49999985]\n", + " [3979.07142858 4155.50000001]\n", + " [3686.64285722 4155.5000001 ]\n", + " [3394.21428584 4155.50000021]\n", + " [3101.78571415 4155.49999972]\n", + " [2809.35714289 4155.50000011]\n", + " [2516.92857142 4155.49999998]\n", + " [2224.50000001 4155.50000022]\n", + " [4271.49999991 2108.5 ]\n", + " [3979.07142843 2108.5 ]\n", + " [3686.6428569 2108.49999999]\n", + " [3394.21428586 2108.5 ]\n", + " [3101.78571453 2108.50000001]\n", + " [2809.35714306 2108.50000001]\n", + " [2516.9285717 2108.50000003]\n", + " [2224.49999984 2108.49999993]\n", + " [2224.50000001 4155.50000022]\n", + " [2224.5 3863.07142862]\n", + " [2224.49999998 3570.64285684]\n", + " [2224.50000001 3278.21428585]\n", + " [2224.50000002 2985.78571445]\n", + " [2224.5 2693.35714285]\n", + " [2224.49999995 2400.92857125]\n", + " [2224.499603 0.96389901]\n", + " [ 0.20167036 -0.14832064 0.96815807]\n", + " [ 0.20291139 -0.12047648 0.97175737]\n", + " [ 0.20389075 -0.09216227 0.97464592]\n", + " [ 0.20460646 -0.06348867 0.97678318]\n", + " [ 0.20505694 -0.03456748 0.97813943]\n", + " [ 0.205241 -0.00551146 0.97869595]\n", + " [ 0.00173588 -0.19697755 0.98040646]\n", + " [ 0.00175296 -0.16281769 0.98665461]\n", + " [ 0.00176683 -0.12772153 0.99180849]\n", + " [ 0.00177741 -0.09188434 0.9957681 ]\n", + " [ 0.00178459 -0.05550542 0.99845679]\n", + " [ 0.00178824 -0.01879375 0.99982178]\n", + " [ 0.01429458 -0.20874173 0.97786633]\n", + " [ 0.04980805 -0.20837407 0.97678012]\n", + " [ 0.08502967 -0.20760004 0.97451125]\n", + " [ 0.11975303 -0.20642226 0.97110713]\n", + " [ 0.15377432 -0.2048444 0.96663966]\n", + " [ 0.1868945 -0.20287264 0.961204 ]\n", + " [ 0.0147871 -0.00579649 0.99987386]\n", + " [ 0.05152109 -0.00578593 0.99865515]\n", + " [ 0.08794575 -0.0057639 0.99610859]\n", + " [ 0.12385093 -0.00573078 0.99228429]\n", + " [ 0.15903647 -0.00568698 0.98725633]\n", + " [ 0.19330699 -0.00563273 0.98112215]\n", + " [ 0.19912208 -0.19067465 0.96124585]\n", + " [ 0.20110045 -0.1576223 0.96680599]\n", + " [ 0.20269257 -0.12364673 0.97140476]\n", + " [ 0.20389226 -0.08894663 0.97494433]\n", + " [ 0.20469584 -0.05372559 0.97735008]\n", + " [ 0.20510055 -0.0181899 0.97857186]\n", + " [ 0.00172908 -0.20877415 0.97796235]\n", + " [ 0.00172908 -0.20877415 0.97796235]\n", + " [ 0.20514779 -0.0056111 0.97871492]\n", + " [ 0.20514779 -0.0056111 0.97871492]\n", + " [ 0.01435076 -0.19694699 0.9803091 ]\n", + " [ 0.05000388 -0.19660038 0.97920779]\n", + " [ 0.08536435 -0.19587092 0.97690711]\n", + " [ 0.12022547 -0.19476145 0.97345458]\n", + " [ 0.15438306 -0.19327535 0.96892234]\n", + " [ 0.18763689 -0.19141752 0.96340632]\n", + " [ 0.01449201 -0.16279237 0.98655391]\n", + " [ 0.05049589 -0.16250539 0.98541472]\n", + " [ 0.08620426 -0.1619024 0.9830343 ]\n", + " [ 0.1214098 -0.1609872 0.97946045]\n", + " [ 0.15590842 -0.15976346 0.97476571]\n", + " [ 0.18949858 -0.15823425 0.96904706]\n", + " [ 0.01460664 -0.12770151 0.99170508]\n", + " [ 0.05089468 -0.1274748 0.99053516]\n", + " [ 0.08688344 -0.12699943 0.98809029]\n", + " [ 0.12236492 -0.12628004 0.9844187 ]\n", + " [ 0.15713605 -0.12532102 0.9795DEBUG:root:optics_fp: rtanth: [31.49183295 27.10547639 22.71914763 18.33286663 13.94667845 9.56071086\n", + " 5.17552468 0.80400903 31.49183295 31.81893962 32.73584893 34.19514883\n", + " 36.13117923 38.47203574 41.14868729 44.10003298 0.80400903 4.62123428\n", + " 8.97478096 13.34987234 17.73056686 22.11353481 26.49764807 30.88241889\n", + " 44.10003298 41.08265104 38.3306279 35.90503258 33.87605653 32.31848632\n", + " 31.30277019 30.88241889 29.57945042 24.20357534 18.8277716 13.45212473\n", + " 8.07694792 2.70504492 31.5450314 32.34738816 33.9914811 36.36331677\n", + " 39.33145785 42.7719429 2.22895212 7.49884938 12.85690509 18.22553229\n", + " 23.59751677 28.97099101 42.74447401 39.21682332 36.14735337 33.66163739\n", + " 31.89644588 30.97520686 31.47691651 31.47691651 30.86780955 30.86780955\n", + " 29.6519244 30.50411668 32.24233865 34.73382242 37.83003027 41.39549146\n", + " 24.29209321 25.32528987 27.39411567 30.28708623 33.79319995 37.74196451\n", + " 18.94142858 20.24949953 22.78397459 26.19121067 30.17701587 34.5416822\n", + " 13.61074549 15.379106DEBUG:root:radec2pix: ccdpx: [[-4.45000003e+01 -5.00000268e-01]\n", + " [-4.44999998e+01 2.91928572e+02]\n", + " [-4.44999999e+01 5.84357143e+02]\n", + " [-4.45000000e+01 8.76785714e+02]\n", + " [-4.44999998e+01 1.16921429e+03]\n", + " [-4.44999999e+01 1.46164286e+03]\n", + " [-4.44999997e+01 1.75407143e+03]\n", + " [-4.44999999e+01 2.04650000e+03]\n", + " [-4.45000003e+01 -5.00000268e-01]\n", + " [ 2.47928572e+02 -4.99999720e-01]\n", + " [ 5.40357143e+02 -5.00000140e-01]\n", + " [ 8.32785714e+02 -4.99999791e-01]\n", + " [ 1.12521429e+03 -4.99999975e-01]\n", + " [ 1.41764286e+03 -4.99999912e-01]\n", + " [ 1.71007143e+03 -4.99999978e-01]\n", + " [ 2.00250000e+03 -4.99999991e-01]\n", + " [-4.44999999e+01 2.04650000e+03]\n", + " [ 2.47928571e+02 2.04650000e+03]\n", + " [ 5.40357143e+02 2.04650000e+03]\n", + " [ 8.32785715e+02 2.04650000e+03]\n", + " [ 1.12521429e+03 2.04650000e+03]\n", + " [ 1.41764286e+03 2.04650000e+03]\n", + " [ 1.71007143e+03 2.04650000e+03]\n", + " [ 2.00250000e+03 2.04650000e+03]\n", + " [ 2.00250000e+03 -4.99999991e-01]\n", + " [ 2.00250000e+03 2.91928572e+02]\n", + " [ 2.00250000e+03 5.84357143e+02]\n", + " [ 2.00250000e+03 8.7678519 18.5898944 22.63745111 27.1500822 31.93121491\n", + " 8.33845435 10.99064764 15.16118736 19.91812291 24.9279841 30.06459569\n", + " 3.40734519 7.92934524 13.11265734 18.40684115 23.73782997 29.08539314]\n", + "\n", + " [ 2.00150000e+03 1.20220000e+03]\n", + " [ 2.00150000e+03 1.56060000e+03]\n", + " [ 2.00150000e+03 1.91900000e+03]\n", + " [-4.35000000e+01 5.00000147e-01]\n", + " [-4.35000000e+01 5.00000147e-01]\n", + " [ 2.00150000e+03 2.04550000e+03]\n", + " [ 2.00150000e+03 2.04550000e+03]\n", + " [ 8.30000000e+01 1.27000000e+02]\n", + " [ 4.41400000e+02 1.27000000e+02]\n", + " [ 7.99800000e+02 1.27000000e+02]\n", + " [ 1.15820000e+03 1.27000000e+02]\n", + " [ 1.51660000e+03 1.27000000e+02]\n", + " [ 1.87500000e+03 1.27000000e+02]\n", + " [ 8.30000000e+01 4.85400000e+02]\n", + " [ 4.41400000e+02 4.85400000e+02]\n", + " [ 7.99800000e+02 4.85400000e+02]\n", + " [ 1.15820000e+03 4.85400000e+02]\n", + " [ 1.51660000e+03 4.85400000e+02]\n", + " [ 1.87500000e+03 4.85400000e+02]\n", + " [ 8.30000000e+01 8.43800000e+02]\n", + " [ 4.41400000e+02 8.43800000e+02]\n", + " [ 7.99800000e+02 8.43800000e+02]\n", + " [ 1.15820000e+03 8.43800000e+02]\n", + " [ 1.51660000e+03 8.43800000e+02]\n", + " [ 1.87500000e+03 8.43800000e+02]\n", + " [ 8.30000000e+01 1.20220000e+03]\n", + " [ 4.41400000e+02 1.20220000e+03]\n", + " [ 7.99800000e+02 1.20220000e+03]\n", + " [ 1.15820000e+03 1.20220000e+03]\n", + " [ 1.51660000e+03 1.20220000e+03]\n", + " [ 1.87500000e+03 1.20220000e+03]\n", + " [ 8.30000000e+01 1.56060000e+03]\n", + " [ 4.41400000e+02 1.56060000e+03]\n", + " [ 7.99800000e+02 1.56060000e+03]\n", + " [ 1.15820000e+03 1.56060000e+03]\n", + " [ 1.51660000e+03 1.56060000e+03]\n", + " [ 1.87500000e+03 1.56060000e+03]\n", + " [ 8.30000000e+01 1.91900000e+03]\n", + " [ 4.41400000e+02 1.91900000e+03]\n", + " [ 7.99800000e+02 1.91900000e+03]\n", + " [ 1.15820000e+03 1.91900000e+03]\n", + " [ 1.51660000e+03 1.91900000e+03]\n", + " [ 1.87500000e+03 1.91900000e+03]]\n", + "715e+02]\n", + " [ 2.00250000e+03 1.16921429e+03]\n", + " [ 2.00250000e+03 1.46164286e+03]\n", + " [ 2.00250000e+03 1.75407143e+03]\n", + " [ 2.00250000e+03 2.04650000e+03]\n", + " [-4.34999998e+01 1.27000000e+02]\n", + " [-4.35000000e+01 4.85400000e+02]\n", + " [-4.35000001e+01 8.43800000e+02]\n", + " [-4.35000000e+01 1.20220000e+03]\n", + " [-4.399984 2108.49999993]\n", + " [4270.49999995 4027.99999996]\n", + " [4270.50000001 3669.6 ]\n", + " [4270.4999998 3311.19999989]\n", + " [4270.50000006 2952.80000003]\n", + " [4270.50000002 2594.40000001]\n", + " [4270.49999985 2235.99999999]\n", + " [4144.00000023 4154.50000023]\n", + " [3785.60000021 4154.50000026]\n", + " [3427.20000017 4154.50000028]\n", + " [3068.79999989 4154.49999975]\n", + " [2710.40000004 4154.50000013]\n", + " [2351.99999998 4154.49999985]\n", + " [4143.99999992 2109.5 ]\n", + " [3785.59999985 2109.5 ]\n", + " [3427.19999998 2109.5 ]\n", + " [3068.80000001 2109.5 ]\n", + " [2710.40000021 2109.50000002]\n", + " [2352.00000017 2109.50000003]\n", + " [2225.5 4027.99999993]\n", + " [2225.49999998 3669.59999975]\n", + " [2225.50000001 3311.20000015]\n", + " [2225.5 2952.8 ]\n", + " [2225.49999998 2594.39999987]\n", + " [2225.50000008 2236.00000013]\n", + " [4270.50000018 4154.50000018]\n", + " [4270.50000018 4154.50000018]\n", + " [2225.49999981 2109.49999992]\n", + " [2225.49999981 2109.49999992]\n", + " [4143.99999987 4027.99999987]\n", + " [3785.59999992 4027.9999999 ]\n", + " [3427.2000001 4028.00000015]\n", + " [3068.80000011 4028.00000023]\n", + " [2710.39999995 4027.99999982]\n", + " [2351.99999998 4027.99999985]\n", + " [4144.00000018 3669.60000014]\n", + " [3785.5999999 3669.59999991]\n", + " [3427.19999994 3669.59999993]\n", + " [3068.79999994 3669.5999999 ]\n", + " [2710.39999997 3669.59999991]\n", + " [2351.99999997 3669.5999998 ]\n", + " [4143.99999973 3311.19999984]\n", + " [3785.60000019 3311.20000014]\n", + " [3427.1999998 3311.19999981]\n", + " [3068.79999976 3311.19999969]\n", + " [2710.39999985 3311.19999967]\n", + " [2352.00000003 3311.20000016]\n", + " [4144.00000026 2952.80000011]\n", + " [3785.6000001 2952.80000005]\n", + " [3427.20000009 2952.80000006]\n", + " [3068.8000003 2952.80000028]\n", + " [2710.39999986 2952.79999979]\n", + " [2352.00000001 2952.80000004]\n", + " [4143.99999994 2594.39999998]\n", + " [3785.6 2594.4 ]\n", + " [3427.19999999 2594.39999999]\n", + " [3068.79999999 2594.39999999]\n", + " [2710.40000015 2594.40000014]\n", + " [2351.99999993 2594.39999983]\n", + " [4143.99999995 2236. ]\n", + " [3785.59999975 2235.99999997]\n", + " [3427.19999971 2235.99999996]\n", + " [3068.80000003 2236.00000001]\n", + " [2710.39999999 2236. ]\n", + " [2352.00000022 2236.00000016]]\n", + "DEBUG:root:radec2pix: fitpx: [[-5.00000034e-01 -5.00000033e-01]\n", + " [-5.00000269e-01 2.91928571e+02]\n", + " [-5.00000171e-01 5.84357143e+02]\n", + " [-4.99999761e-01 8.76785714e+02]\n", + " [-4.99999835e-01 1.16921429e+03]\n", + " [-5.00000099e-01 1.46164286e+03]\n", + " [-4.99999719e-01 1.75407143e+03]\n", + " [-5.00000225e-01 2.04650000e+03]\n", + " [-5.00000034e-01 -5.00000033e-01]\n", + " [ 2.91928571e+02 -4.99999990e-01]\n", + " [ 5.84357143e+02 -5.00000111e-01]\n", + " [ 8.76785714e+02 -5.00000066e-01]\n", + " [ 1.16921429e+03 -4.99999995e-01]\n", + " [ 1.46164286e+03 -5.00000140e-01]\n", + " [ 1.75407143e+03 -5.00000040e-01]\n", + " [ 2.04650000e+03 -5.00000297e-01]\n", + " [-5.00000225e-01 2.04650000e+03]\n", + " [ 2.91928572e+02 2.04650000e+03]\n", + " [ 5.84357143e+02 2.04650000e+03]\n", + " [ 8.76785714e+02 2.04650000e+03]\n", + " [ 1.16921429e+03 2.04650000e+03]\n", + " [ 1.46164286e+03 2.04650000e+03]\n", + " [ 1.75407143e+03 2.04650000e+03]\n", + " [ 2.04650000e+03 2.04650000e+03]\n", + " [ 2.04650000e+03 -5.00000297e-01]\n", + " [ 2.04650000e+03 2.91928572e+02]\n", + " [ 2.04650000e+03 5.84357143e+02]\n", + " [ 2.04650000e+03 8DEBUG:root:radec2pix: curVec: [[-1.25829374e-01 2.38682084e-01 -9.62911123e-01]\n", + " [-1.42760021e-01 2.16560628e-01 -9.65774855e-01]\n", + " [-1.59913903e-01 1.93823362e-01 -9.67915310e-01]\n", + " [-1.77216264e-01 1.70551402e-01 -9.69281494e-01]\n", + " [-1.94593568e-01 1.46828465e-01 -9.69832328e-01]\n", + " [-2.11972830e-01 1.22741929e-01 -9.69536971e-01]\n", + " [-2.29281628e-01 9.83829949e-02 -9.68375300e-01]\n", + " [-2.46448614e-01 7.38461731e-02 -9.66338359e-01]\n", + " [-1.25829374e-01 2.38682084e-01 -9.62911123e-01]\n", + " [-1.03034452e-01 2.22004770e-01 -9.69586398e-01]\n", + " [-8.02869362e-02 2.05117342e-01 -9.75438816e-01]\n", + " [-5.76786897e-02 1.88086214e-01 -9.80457416e-01]\n", + " [-3.53032872e-02 1.70978355e-01 -9.84642108e-01]\n", + " [-1.32564276e-02 1.53860874e-01 -9.88003592e-01]\n", + " [ 8.36309629e-03 1.36800840e-01 -9.90563269e-01]\n", + " [ 2.94519770e-02 1.19865472e-01 -9.92353188e-01]\n", + " [-2.46448614e-01 7.38461731e-02 -9.66338359e-01]\n", + " [-2.22772427e-01 5.67157217e-02 -9.73219283e-01]\n", + " [-1.98974482e-01 3.95877860e-02 -9.79204760e-01]\n", + " DEBUG:root:optics_fp: cphi: [0.00531582 0.00617606 0.00736845 0.00913141 0.01200322 0.01750968\n", + " 0.03234551 0.20821284 0.00531582 0.14311708 0.27310311 0.3897246\n", + " 0.4902447 0.57443147 0.64366516 0.70005401 0.20821284 0.985415\n", + " 0.9961538 0.99826353 0.99901596 0.99936749 0.99955952 0.99967574\n", + " 0.70005401 0.75147061 0.80542393 0.85983504 0.91133409 0.95525529\n", + " 0.98625153 0.99967574 0.00616661 0.00753628 0.00968808 0.01355957\n", + " 0.02258341 0.06743141 0.06593447 0.23049481 0.37750356 0.50072179\n", + " 0.5996194 0.67707715 0.93313131 0.9942732 0.99805551 0.99903282\n", + " 0.99942317 0.99961734 0.72190396 0.78684101 0.853656 0.91669352\n", + " 0.96742456 0.9961969 0.00579488 0.00579488 0.99966293 0.99966293\n", + " 0.07014401 0.24442291 0.39798307 0.52421253 0.62341756 0.6995908\n", + " 0.08562066 0.29440551 0.4684183 0.60117718 0.69788907 0.76731313\n", + " 0.10980719 0.36820194 0.56319871 0.69519142 0.78151879 0.83840459\n", + " 0.15281345 0.48480743 0.69026239 0.80432664 0.86864949 0.90694654\n", + " 0.24943532 0.67838632 0.84636544 0.915000001e+01 1.56060000e+03]\n", + " [-4.34999999e+01 1.91900000e+03]\n", + " [ 8.30000001e+01 5.00000092e-01]\n", + " [ 4.41400000e+02 4.99999764e-01]\n", + " [ 7.99800000e+02 4.99999911e-01]\n", + " [ 1.15820000e+03 5.00000156e-01]\n", + " [ 1.51660000e+03 4.99999840e-01]\n", + " [ 1.87500000e+03 4.99999915e-01]\n", + " [ 8.29999998e+01 2.04550000e+03]\n", + " [ 4.41400000e+02 2.04550000e+03]\n", + " [ 7.99800000e+02 2.04550000e+03]\n", + " [ 1.15820000e+03 2.04550000e+03]\n", + " [ 1.51660000e+03 2.04550000e+03]\n", + " [ 1.87500000e+03 2.04550000e+03]\n", + " [ 2.00150000e+03 1.27000000e+02]\n", + " [ 2.00150000e+03 4.85400000e+02]\n", + " [ 2.00150000e+03 8.43800000e+02]\n", + " [ 2.00150000e+03 1.20220000e+03]\n", + " [ 2.00150000e+03 1.56060000e+03]\n", + " [ 2.00150000e+03 1.91900000e+03]\n", + " [-4.35000000e+01 4.99999958e-01]\n", + " [-4.35000000e+01 4.99999958e-01]\n", + " [ 2.00150000e+03 2.04550000e+03]\n", + " [ 2.00150000e+03 2.04550000e+03]\n", + " [ 8.30000002e+01 1.27000000e+02]\n", + " [ 4.41400000e+02 1.27000000e+02]\n", + " [ 7.99800000e+02 1.27000000e+02]\n", + " [ 1.15820000e+03 1.27000000e+02]\n", + " [ 1.51660000e+03 1.270009323]\n", + " [ 0.19099623 -0.12412508 0.97371115]\n", + " [ 0.0146941 -0.09186978 0.99566261]\n", + " [ 0.05119852 -0.09170505 0.99446915]\n", + " [ 0.08739951 -0.09136033 0.99197511]\n", + " [ 0.12308827 -0.09084026 0.98822939]\n", + " [ 0.15806297 -0.09014925 0.98330525]\n", + " [ 0.19212497 -0.08928993 0.97730001]\n", + " [ 0.01475342 -0.05549654 0.99834987]\n", + " [ 0.05140434 -0.05539609 0.99714035]\n", + " [ 0.08774826 -0.05518622 0.99461285]\n", + " [ 0.12357559 -0.05487037 0.99081699]\n", + " [ 0.15868553 -0.05445187 0.9858265 ]\n", + " [ 0.19288138 -0.05393273 0.97973876]\n", + " [ 0.01478357 -0.01879073 0.99971414]\n", + " [ 0.05150885 -0.01875652 0.99849639]\n", + " [ 0.08792506 -0.01868512 0.99595183]\n", + " [ 0.1238221 -0.01857781 0.99213051]\n", + " [ 0.15899976 -0.01843585 0.98710648]\n", + " [ 0.19326249 -0.01826001 0.98097716]]\n", + "DEBUG:root:radec2pix: camVec Shape: (3, 96)\n", + "DEBUG:root:fitpix2pix: ccdpx: shape: (96, 2)\n", + "000e+02]\n", + " [ 1.87500000e+03 1.27000000e+02]\n", + " [ 8.29999999e+01 4.85400000e+02]\n", + " [ 4.41400000e+02 4.85400000e+02]\n", + " [ 7.99800000e+02 4.85400000e+02]\n", + " [ 1.15820000eDEBUG:root:optics_fp: xyfp: [[32.275486 31.41357429]\n", + " [32.27502267 27.02714574]\n", + " [32.27455935 22.64071719]\n", + " [32.27409601 18.25428864]\n", + " [32.27363269 13.8678601 ]\n", + " [32.27316936 9.48143155]\n", + " [32.27270604 5.095003 ]\n", + " [32.27224271 0.70857446]\n", + " [32.275486 31.41357429]\n", + " [27.88905745 31.41403761]\n", + " [23.5026289 31.41450094]\n", + " [19.11620036 31.41496427]\n", + " [14.72977181 31.41542759]\n", + " [10.34334326 31.41589092]\n", + " [ 5.95691471 31.41635424]\n", + " [ 1.57048617 31.41681757]\n", + " [32.27224271 0.70857446]\n", + " [27.88581416 0.70903778]\n", + " [23.49938562 0.70950111]\n", + " [19.11295707 0.70996444]\n", + " [14.72652852 0.71042776]\n", + " [10.34009998 0.71089109]\n", + " [ 5.95367142 0.71135442]\n", + " [ 1.56724288 0.71181774]\n", + " [ 1.57048617 31.41681757]\n", + " [ 1.57002284 27.03038902]\n", + " [ 1.56955951 22.64396047]\n", + " [ 1.56909619 18.25753194]\n", + " [ 1.56863286 13.87110338]\n", + " [ 1.56816953 9.48467484]\n", + " [ 1.56770621 5.09824629]\n", + " [ 1.56724288 0.71181774]\n", + " [32.26028399 29.50107588]\n", + " [32.25971613 24.12507591]\n", + " [32.25914828 18.74907594]\n", + " [32.25858043 13.37307597]\n", + ".76785714e+02]\n", + " [ 2.04650000e+03 1.16921429e+03]\n", + " [ 2.04650000e+03 1.46164286e+03]\n", + " [ 2.04650000e+03 1.75407143e+03]\n", + " [ 2.04650000e+03 2.04650000e+03]\n", + " [ 5.00000148e-01 1.27000000e+02]\n", + " [ 5.00000006e-01 4.85400000e+02]\n", + " [ 4.99999879e-01 8.43800000e+02]\n", + " [ 4.99999939e-01 1.20220000e+03]\n", + " [ 5.00000182e-01 1.56060000e+03]\n", + " [ 5.00000197e-01 1.91900000e+03]\n", + " [ 1.27000000e+02 4.99999893e-01]\n", + " [ 4.85400000e+02 5.00000055e-01]\n", + " [ 8.43800000e+02 4.99999998e-01]\n", + " [ 1.20220000e+03 5.00000122e-01]\n", + " [ 1.56060000e+03 4.99999912e-01]\n", + " [ 1.91900000e+03 5.00000160e-01]\n", + " [ 1.27000000e+02 2.04550000e+03]\n", + " [ 4.85400000e+02 2.04550000e+03]\n", + " [ 8.43800000e+02 2.04550000e+03]\n", + " [ 1.20220000e+03 2.04550000e+03]\n", + " [ 1.56060000e+03 2.04550000e+03]\n", + " [ 1.91900000e+03 2.04550000e+03]\n", + " [ 2.04550000e+03 1.27000000e+02]\n", + " [ 2.04550000e+03 4.85400000e+02]\n", + " [ 2.04550000e+03 8.43800000e+02]\n", + " [ 2.04550000e+03 1.20220000e+03]\n", + " [ 2.04550000e+03 1.56060000e+03]\n", + " [ 2.04550000e+03 1.91900000e+03]\n", + " [ 4.DEBUG:root:fitpix2pix: visCut: True\n", + "DEBUG:root:cartToSphere: vec: [[-0.00108623 0.20994474 0.97771265]\n", + " [-0.00110818 0.18250974 0.98320342]\n", + " [-0.00112898 0.15437814 0.98801119]\n", + " [-0.00114857 0.12565449 0.9920734 ]\n", + " [-0.00116686 0.09644464 0.99533767]\n", + " [-0.00118378 0.0668576 0.99776183]\n", + " [-0.00119922 0.03700641 0.99931431]\n", + " [-0.00121312 0.00700791 0.99997471]\n", + " [-0.00108623 0.20994474 0.97771265]\n", + " [-0.03008973 0.20980966 0.97727914]\n", + " [-0.05897582 0.20940234 0.97604944]\n", + " [-0.08763213 0.20872399 0.97404051]\n", + " [-0.11594722 0.20777622 0.97128023]\n", + " [-0.14381054 0.20656061 0.96780744]\n", + " [-0.17111212 0.20507835 0.96367189]\n", + " [-0.19774215 0.20333011 0.95893426]\n", + " [-0.00121312 0.00700791 0.99997471]\n", + " [-0.0312253 0.00701559 0.99948775]\n", + " [-0.06111305 0.00701392 0.99810621]\n", + " [-0.09075893 0.00700302 0.99584827]\n", + " [-0.12004913 0.00698305 0.99274339]\n", + " [-0.1488739 0.00695418 0.98883174]\n", + " [-0.17712688 0.00691659 0.98416372]\n", + " [-0.20470344 0.00687038 0.97879993]\n", + " [-0.19774215 0.20333011 0.95893426]\n", + " [-0.19951656 0.17679323 0.96381393]\n", + " [-0.20103291 0.14956333 0.96809947]\n", + " [-0.2022905 0.12175011 0.97172808]\n", + " [-0.20328809 0.09346339 0.97464791]\n", + " [-0.20402394 0.06481351 0.97681802]\n", + " [-0.20449622 0.03591173 0.97820838]\n", + " [-0.20470344 0.00687038 0.97879993]\n", + " [-0.00119558 0.19807534 0.98018607]\n", + " [-0.00122271 0.16396932 0.98646468]\n", + " [-0.00124786 0.12892083 0.9916541 ]\n", + " [-0.00127089 0.09312409 0.9956537 ]\n", + " [-0.00129164 0.05677987 0.99838589]\n", + " [-0.00130994 0.02009792 0.99979716]\n", + " [-0.01373956 0.20982687 0.97764201]\n", + " [-0.04922259 0.20947825 0.9765736 ]\n", + " [-0.08441749 0.20872203 0.97432479]\n", + " [-0.11911871 0.20756102 0.97094241]\n", + " [-0.1531227 0.20599809 0.96649792]\n", + " [-0.18622706 0.20403521 0.96108746]\n", + " [-0.01430615 0.00711509 0.99987235]\n", + " [-0.05102028 0.00711803 0.99867225]\n", + " [-0.08743049 0.00710683 0.99614527]\n", + " [-0.12332566 0.00708177 0.99234098]\n", + " [-0.15850368 0.0070432 0.98733327]\n", + " [-0.19276957 0.006991[-1.75151446e-01 2.25305745e-02 -9.84283671e-01]\n", + " [-1.51400504e-01 5.61145961e-03 -9.88456574e-01]\n", + " [-1.27818635e-01 -1.11035138e-02 -9.91735402e-01]\n", + " [-1.04502534e-01 -2.75496652e-02 -9.94142966e-01]\n", + " [-8.15494250e-02 -4.36630937e-02 -9.95712421e-01]\n", + " [ 2.94519770e-02 1.19865472e-01 -9.92353188e-01]\n", + " [ 1.45592541e-02 9.74459034e-02 -9.95134325e-01]\n", + " [-7.81069472e-04 7.45665684e-02 -9.97215732e-01]\n", + " [-1.64893458e-02 5.13139233e-02 -9.98546435e-01]\n", + " [-3.24906793e-02 2.77751817e-02 -9.99086030e-01]\n", + " [-4.87135798e-02 4.03899357e-03 -9.98804622e-01]\n", + " [-6.50889312e-02 -1.98043421e-02 -9.97682925e-01]\n", + " [-8.15494250e-02 -4.36630937e-02 -9.95712421e-01]\n", + " [-1.33100635e-01 2.29061082e-01 -9.64269279e-01]\n", + " [-1.54009734e-01 2.01524170e-01 -9.67299856e-01]\n", + " [-1.75179812e-01 1.73142789e-01 -9.69192245e-01]\n", + " [-1.96475056e-01 1.44069897e-01 -9.69866701e-01]\n", + " [-2.17761109e-01 1.14466371e-01 -9.69266501e-01]\n", + " [-2.38905057e-01 8.45015325e-02 -9.67359222e-01]\n", + " [-1.15947789e-01 2.31366035e-041376 0.94608152 0.96325609\n", + " 0.61041805 0.94029264 0.97858921 0.98919227 0.99351563 0.99568553]\n", + "99999930e-01 4.99999931e-01]\n", + " [ 4.99999930e-01 4.99999931e-01]\n", + " [ 2.04550000e+03 2.04550000e+03]\n", + " [ 2.04550000e+03 2.04550000e+03]\n", + " [ 1.27000000e+02 1.27000000e+02]\n", + " [ 4.85400000e+02 1.27000000e+02]\n", + " [ 8.43800000e+02 1.27000000e+02]\n", + " [ 1.20220000e+03 1.27000000e+02]\n", + " [ 1.56060000e+03 1.27000000e+02]\n", + " [ 1.91900000e+03 1.27000000e+02]\n", + " [ 1.27000000e+02 4.85400000e+02]\n", + " [ 4.85400000e+02 4.85400000e+02]\n", + " [ 8.43800000e+02 4.85400000e+02]\n", + " [ 1.20220000e+03 4.85400000e+02]\n", + " [ 1.56060000e+03 4.85400000e+02]\n", + " [ 1.91900000e+03 4.85400000e+02]\n", + " [ 1.27000000e+02 8.43800000e+02]\n", + " [ 4.85400000e+02 8.43800000e+02]\n", + " [ 8.43800000e+02 8.43800000e+02]\n", + " [ 1.20220000e+03 8.43800000e+02]\n", + " [ 1.56060000e+03 8.43800000e+02]\n", + " [ 1.91900000e+03 8.43800000e+02]\n", + " [ 1.27000000e+02 1.20220000e+03]\n", + " [ 4.85400000e+02 1.20220000e+03]\n", + " [ 8.43800000e+02 1.20220000e+03]\n", + " [ 1.20220000e+03 1.20220000e+03]\n", + " [ 1.56060000e+03 1.20220000e+03]\n", + " [ 1.91900000e+03 1.20220000e+03]\n", + " [ 1.27000000e+02 1.56060000e+03]\n", + " [ 4.85400000e+02 1.56060000e+03]\n", + " [ 8.43800000e+02 1.56060000e+03]\n", + " [ 1.20220000e+03 1.56060000e+03]\n", + " [ 1.56060000e+03 1.56060000e+03]\n", + " [ 1.91900000e+03 1.56060000e+03]\n", + " [ 1.27000000e+02 1.91900000e+03]\n", + " [ 4.85400000e+02 1.91900000e+03]\n", + " [ 8.43800000e+02 1.91900000e+03]\n", + " [ 1.20220000e+03 1.91900000e+03]\n", + " [ 1.56060000e+03 1.91900000e+03]\n", + " [ 1.91900000e+03 1.91900000e+03]]\n", + "DEBUG:root:radec2pix: fitpx: [[2135.5 4155.49999984]\n", + " [2135.5 3863.07142868]\n", + " [2135.5 3570.64285754]\n", + " [2135.5 3278.21428588]\n", + " [2135.5 2985.78571458]\n", + " [2135.5 2693.35714314]\n", + " [2135.5 2400.92857131]\n", + " [2135.50000005 2108.49999975]\n", + " [2135.5 4155.49999984]\n", + " [1843.07142855 4155.50000013]\n", + " [1550.64285718 4155.49999985]\n", + " [1258.21428582 4155.49999974]\n", + " [ 965.78571443 4155.49999975]\n", + " [ 673.35714268 4155.50000026]\n", + " [ 380.92857156 4155.49999984]\n", + " [ 88.49999989 4155.50000011]\n", + " [2135.50000005 2108.49999975]\n", + " [1843.07142845 2108.50000002]\n", + " [1550.64285702 2108.50000001]\n", + " [1258.21428598 2108.49999998]\n", + " [ 965.78571394 2108.50000002]\n", + " [ 673.35714284 2108.5 ]\n", + " [ 380.92857156 2108.5 ]\n", + " [ 88.49999977 2108.50000001]\n", + " [ 88.49999989 4155.50000011]\n", + " [ 88.49999981 3863.07142874]\n", + " [ 88.49999988 3570.64285723]\n", + " [ 88.49999983 3278.21428582]\n", + " [ 88.5000001 2985.78571424]\n", + " [ 88.50000005 2693.35714284]\n", + " [ 88.49999995 2400.92857144]\n", + " [ 88.49999977 2108.50000001]\n", + " [2134.5 4028.00000026]\n", + " [2134.5 3669.59999996]\n", + " [2134.5 3311.20000006]\n", + " [2134.5 2952.80000018]\n", + " [2134.50000001 2594.39999977]\n", + " [2134.49999998 2236.00000029]\n", + " [2008.00000002 4154.49999972]\n", + " [1649.59999996 4154.50000015]\n", + " [1291.19999992 4154.5000002 ]\n", + " [ 932.79999984 4154.50000027]\n", + " [ 574.40000018 4154.49999976]\n", + " [ 215.99999983 4154.50000019]\n", + " [2007.99999997 2109.50000001]\n", + " [1649.60000009 2109.49999999]\n", + " [1291.20000024 2109.49999998]\n", + " [ 932.80000011 2109.DEBUG:root:fitpix2pix: ccdpx: shape: (96, 2)\n", + "5 ]\n", + " [ 574.40000007 2109.5 ]\n", + " [ 216.00000022 2109.49999999]\n", + " [ 89.50000011 4027.99999989]\n", + " [ 89.49999997 3669.60000003]\n", + " [ 89.49999978 3311.20000014]\n", + " [ 89.49999974 2952.80000012]\n", + " [ 89.49999998 2594.4 ]\n", + " [ 89.50000005 2236. ]\n", + " [2134.5 4154.49999985]\n", + " [2134.5 4154.49999985]\n", + " [ 89.49999982 2109.5 ]\n", + " [ 89.49999982 2109.5 ]\n", + " [2007.99999998 4028.00000026]\n", + " [1649.60000006 4027.99999978]\n", + " [1291.19999989 4028.00000025]\n", + " [ 932.8000001 4027.99999984]\n", + " [ 574.40000016 4027.9999998 ]\n", + " [ 215.99999996 4028.00000004]\n", + " [2007.99999998 3669.60000024]\n", + " [1649.59999998 3669.60000005]\n", + " [1291.20000009 3669.59999982]\n", + " [ 932.79999983 3669.60000022]\n", + " [ 574.39999986 3669.60000015]\n", + " [ 216.00000022 3669.59999982]\n", + " [2007.99999999 3311.20000008]\n", + " [1649.59999996 3311.2000001 ]\n", + " [1291.19999979 3311.20000031]\n", + " [ 932.80000004 3311.19999996]\n", + " [ 574.39999992 3311.20000007]\n", + " [ 216.00000024 3311.19999984]\n", + " [2008.0000000139 0.98121915]\n", + " [-0.19845732 0.19185821 0.96114781]\n", + " [-0.20045757 0.1588536 0.96673797]\n", + " [-0.20206974 0.12491703 0.971372 ]\n", + " [-0.20329178 0.09025061 0.97494989]\n", + " [-0.20412054 0.0550575 0.97739627]\n", + " [-0.20455274 0.01954302 0.97866043]\n", + " [-0.00118556 0.20985223 0.97773239]\n", + " [-0.00118556 0.20985223 0.97773239]\n", + " [-0.20461015 0.00696998 0.97881873]\n", + " [-0.20461015 0.00696998 0.97881873]\n", + " [-0.01379915 0.19805172 0.98009443]\n", + " [-0.04942232 0.19772367 0.97901113]\n", + " [-0.08475642 0.19701128 0.97673072]\n", + " [-0.11959564 0.19591776 0.97330012]\n", + " [-0.15373662 0.19444643 0.96879081]\n", + " [-0.18697743 0.19259955 0.96329894]\n", + " [-0.01395111 0.16395068 0.98636988]\n", + " [-0.04992687 0.1636812 0.98524909]\n", + " [-0.08561039 0.16309354 0.98288929]\n", + " [-0.12079486 0.16219177 0.97933775]\n", + " [-0.15527748 0.16098028 0.97466623]\n", + " [-0.18885795 0.15946229 0.96897082]\n", + " [-0.0140777 0.12890725 0.99155673]\n", + " [-0.05033965 0.1286975 0.99040541]\n", + " [-0.08630574 0.12823673 0.9879811 ]\n", + " [-0.12176792 0.12752928 0.98433168]\n", + " [-0.15652378 0.12657997 0.97952939]\n", + " [-0.19037482 0.12539259 0.97367044]\n", + " [-0.01417814 0.09311572 0.99555434]\n", + " [-0.05065827 0.09296747 0.9943796 ]\n", + " [-0.08683905 0.092637 0.99190593]\n", + " [-0.12251113 0.09212815 0.98818188]\n", + " [-0.15747231 0.0914453 0.98328034]\n", + " [-0.19152571 0.09059206 0.97729779]\n", + " [-0.0142515 0.05677687 0.99828517]\n", + " [-0.05087978 0.05669199 0.99709441]\n", + " [-0.08720594 0.05649545 0.99458704]\n", + " [-0.12301955 0.05618991 0.99081223]\n", + " [-0.15811848 0.05577844 0.98584345]\n", + " [-0.19230704 0.0552636 0.97977749]\n", + " [-0.01429691 0.02010041 0.99969574]\n", + " [-0.0510015 0.0200803 0.99849668]\n", + " [-0.08740238 0.02002048 0.99597189]\n", + " [-0.12328852 0.0199219 0.99217088]\n", + " [-0.15845779 0.01978566 0.98716749]\n", + " [-0.19271515 0.01961272 0.98105872]]\n", + "DEBUG:root:radec2pix: lng: [270.4470398 270.51926185 270.61931513 270.76712536 271.00759894\n", + " 271.46762895 272.70005845 286.49130114 270.4470398 278.35667351\n", + " 285.95982213 293.02931263 2991 -9.65932641e-01]\n", + " [-8.80297587e-02 2.10776179e-01 -9.73562614e-01]\n", + " [-6.02739203e-02 1.89936771e-01 -9.79944426e-01]\n", + " [-3.28518324e-02 1.68970900e-01 -9.85073394e-01]\n", + " [-5.93977978e-03 1.48002089e-01 -9.88969211e-01]\n", + " [ 2.02785725e-02 1.27153852e-01 -9.91675692e-01]\n", + " [-2.36088453e-01 6.64653993e-02 -9.69455823e-01]\n", + " [-2.06977074e-01 4.54632808e-02 -9.77288893e-01]\n", + " [-1.77778874e-01 2.45326104e-02 -9.83764618e-01]\n", + " [-1.48672602e-01 3.79780413e-03 -9.88879181e-01]\n", + " [-1.19836778e-01 -1.66195536e-02 -9.92654490e-01]\n", + " [-9.14495495e-02 -3.66007619e-02 -9.95136857e-01]\n", + " [ 2.29473812e-02 1.10210064e-01 -9.93643376e-01]\n", + " [ 4.38189745e-03 8.24122300e-02 -9.96588693e-01]\n", + " [-1.47760032e-02 5.40095540e-02 -9.98431088e-01]\n", + " [-3.43865415e-02 2.51622278e-02 -9.99091802e-01]\n", + " [-5.43179932e-02 -3.96652283e-03 -9.98515810e-01]\n", + " [-7.44438774e-02 -3.32098397e-02 -9.96672070e-01]\n", + " [-1.25808872e-01 2.38550977e-01 -9.62946291e-01]\n", + " [-1.25808872e-01 2.38550977e-01 -9.62946291e-01]\n", + " [-8.1570825DEBUG:root:optics_fp: sphi: [-0.99998587 -0.99998093 -0.99997285 -0.99995831 -0.99992796 -0.99984669\n", + " -0.99947675 -0.97808354 -0.99998587 -0.98970577 -0.96198477 -0.92093145\n", + " -0.87158484 -0.81855268 -0.76530723 -0.7140899 -0.97808354 -0.17016839\n", + " -0.08762197 -0.05890603 -0.04435211 -0.03556139 -0.02967765 -0.02546394\n", + " -0.7140899 -0.65976656 -0.59269916 -0.51057194 -0.41166757 -0.29578258\n", + " -0.16525108 -0.02546394 -0.99998099 -0.9999716 -0.99995307 -0.99990806\n", + " -0.99974496 -0.99772391 -0.99782396 -0.97307356 -0.92600813 -0.86560828\n", + " -0.80028531 -0.73591205 -0.35953576 -0.10686813 -0.06233133 -0.04397062\n", + " -0.03396069 -0.02766174 -0.69199326 -0.61715575 -0.52083725 -0.39959102\n", + " -0.25315949 -0.08713059 -0.99998321 -0.99998321 -0.02596193 -0.02596193\n", + " -0.99753688 -0.96966873 -0.91739276 -0.85158747 -0.78188909 -0.71454371\n", + " -0.99632781 -0.95568059 -0.88350682 -0.79911576 -0.71620587 -0.64127261\n", + " -0.99395291 -0.92974584 -0.8263215 -0.71882466 -0.6238817 -0.54504838\n", + " -0.98825505 -0.8746209.43042278 305.11729798 310.10927793\n", + " 314.46353671 286.49130114 349.82837514 354.73471783 356.4521324\n", + " 357.32535522 357.85379375 358.20792761 358.46177059 314.46353671\n", + " 318.74333689 323.66697635 329.30072855 335.67617912 342.7610671\n", + " 350.43132356 358.46177059 270.50490909 270.61684574 270.79254775\n", + " 271.10819213 271.84151891 275.43536905 273.91748404 283.44327486\n", + " 292.27322451 300.11957347 306.89513227 312.65252806 338.59499359\n", + " 353.59240246 356.2502422 357.3507235 357.95203643 358.33094358\n", + " 316.24148386 321.91069268 328.61592969 336.43108737 345.29354618\n", + " 354.93182927 270.47451616 270.47451616 358.43326445 358.43326445\n", + " 274.16755516 284.27018764 293.54850553 301.6868684 308.61690354\n", + " 314.4285595 275.08714159 287.26177752 298.03288482 307.02206797\n", + " 314.30032851 320.13759497 276.52519686 291.76449803 304.37699404\n", + " 314.09790313 321.42651996 326.9808709 279.08719841 299.17442797\n", + " 313.73069285 323.57233622 330.30226172 335.07338778 284.88740412\n", + " 312.85952275 327.83358678 336.05769185 341.06068787 344.37815396\n", + " 308.1938338 339.99132199 348.00244679 351.46719972 353.38615059\n", + " 354.60255033]\n", + " 2952.79999992]\n", + " [1649.6000001 2952.79999982]\n", + " [1291.20000006 2952.79999994]\n", + " [ 932.79999988 2952.80000009]\n", + " [ 574.39999983 2952.8000001 ]\n", + " [ 215.99999999 2952.8 ]\n", + " [2008.00000001 2594.39999996]\n", + " [1649.60000003 2594.39999997]\n", + " [1291.19999974 2594.40000016]\n", + " [ 932.80000041 2594.39999982]\n", + " [ 574.40000002 2594.39999999]\n", + " [ 215.99999998 2594.40000001]\n", + " [2008.00000001 2235.99999999]\n", + " [1649.59999976 2236.00000009]\n", + " [1291.19999986 2236.00000003]\n", + " [ 932.79999992 2236.00000001]\n", + " [ 574.39999976 2236.00000003]\n", + " [ 216.00000019 2235.99999998]]\n", + "+03 4.85400000e+02]\n", + " [ 1.51660000e+03 4.85400000e+02]\n", + " [ 1.87500000e+03 4.85400000e+02]\n", + " [ 8.30000001e+01 8.43800000e+02]\n", + " [ 4.41400000e+02 8.43800000e+02]\n", + " [ 7.99800000e+02 8.43800000e+02]\n", + " [ 1.15820000e+03 8.43800000e+02]\n", + " [ 1.51660000e+03 8.43800000e+02]\n", + " [ 1.87500000e+03 8.43800000e+02]\n", + " [ 8.29999999e+01 1.20220000e+03]\n", + " [ 4.41400000e+DEBUG:root:fitpix2pix: ccdpx: shape: (96, 2)\n", + "02 1.20220000e+03]\n", + " [ 7.99800000e+02 1.20220000e+03]\n", + " [ 1.15820000e+03 1.20220000e+03]\n", + " [ 1.51660000e+03 1.20220000e+03]\n", + " [ 1.87500000e+03 1.20220000e+03]\n", + " [ 8.29999999e+01 1.56060000e+03]\n", + " [ 4.41400000e+02 1.56060000e+03]\n", + " [ 7.99800000e+02 1.56060000e+03]\n", + " [ 1.15820000e+03 1.56060000e+03]\n", + " [ 1.51660000e+03 1.56060000e+03]\n", + " [ 1.87500000e+03 1.56060000e+03]\n", + " [ 8.29999998e+01 1.91900000e+03]\n", + " [ 4.41400000e+02 1.91900000e+03]\n", + " [ 7.99800000e+02 1.91900000e+03]\n", + " [ 1.15820000e+03 1.91900000e+03]\n", + " [ 1.51660000e+03 1.91900000e+03]\n", + " [ 1.87500000e+03 1.91900000e+03]]\n", + " [32.25801258 7.997076 ]\n", + " [32.25744472 2.62107603]\n", + " [30.36298443 31.3987763 ]\n", + " [24.98698446 31.39934415]\n", + " [19.61098448 31.399912 ]\n", + " [14.23498451 31.40047985]\n", + " [ 8.85898454 31.40104771]\n", + " [ 3.48298457 31.40161556]\n", + " [30.35974431 0.72377647]\n", + " [24.98374433 0.72434432]\n", + " [19.60774436 0.72491217]\n", + " [14.23174439 0.72548003]\n", + " [ 8.85574442 0.72604788]\n", + " [ 3.47974445 0.72661573]\n", + " [ 1.58528416 29.504316 ]\n", + " [ 1.5847163 24.12831603]\n", + " [ 1.58414845 18.75231606]\n", + " [ 1.5835806 13.37631609]\n", + " [ 1.58301275 8.00031612]\n", + " [ 1.5824449 2.62431615]\n", + " [32.26048441 31.39857587]\n", + " [32.26048441 31.39857587]\n", + " [ 1.58224447 0.72681616]\n", + " [ 1.58224447 0.72681616]\n", + " [30.36278399 29.50127631]\n", + " [24.98678403 29.50184416]\n", + " [19.61078405 29.50241201]\n", + " [14.23478409 29.50297987]\n", + " [ 8.85878411 29.50354772]\n", + " [ 3.48278414 29.50411557]\n", + " [30.36221615 24.12527634]\n", + " [24.98621618 24.12584419]\n", + " [19.6102162 24.12641204]\n", + " [14.23421623 24.1269799 ]\n", + " [ 8.85821626 24.12754775]\n", + " [ 3.48221629 24.1281156 ]\n", + " [30.36164829 18.74927637]\n", + " [24.98564832 18.74984422]\n", + " [19.60964835 18.75041208]\n", + " [14.23364838 18.75097993]\n", + " [ 8.85764841 18.75154778]\n", + " [ 3.48164844 18.75211563]\n", + " [30.36108043 13.3732764 ]\n", + " [24.98508046 13.37384425]\n", + " [19.60908049 13.3744121 ]\n", + " [14.23308053 13.37497996]\n", + " [ 8.85708056 13.37554781]\n", + " [ 3.48108059 13.37611567]\n", + " [30.36051258 7.99727643]\n", + " [24.98451261 7.99784428]\n", + " [19.60851265 7.99841214]\n", + " [14.23251268 7.99897999]\n", + " [ 8.85651271 7.99954784]\n", + " [ 3.48051273 8.00011569]\n", + " [30.35994473 2.62127646]\n", + " [24.98394476 2.62184431]\n", + " [19.60794479 2.62241216]\n", + " [14.23194482 2.62298002]\n", + " [ 8.85594485 2.62354787]\n", + " [ 3.47994488 2.62411572]]\n", + "0e-02 -4.35271190e-02 -9.95716622e-01]\n", + " [-8.15708250e-02 -4.35271190e-02 -9.95716622e-01]\n", + " [-1.23199389e-01 2.21849382e-01 -9.67266645e-01]\n", + " [-9.51561518e-02 2.01195895e-01 -9.74918211e-01]\n", + " [-6.72585456e-02 1.80311300e-01 -9.81307354e-01]\n", + " [-3.96781383e-02 1.59319185e-01 -9.86429441e-01]\n", + " [-1.25905675e-02 1.38343416e-01 -9.90304285e-01]\n", + " [ 1.38218675e-02 1.17507608e-01 -9.92975789e-01]\n", + " [-1.44007059e-01 1.94245647e-01 -9.70324995e-01]\n", + " [-1.15644848e-01 1.73438008e-01 -9.78031455e-01]\n", + " [-8.73827994e-02 1.52452421e-01 -9.84440199e-01]\n", + " [-5.93931545e-02 1.31413705e-01 -9.89546811e-01]\n", + " [-3.18505292e-02 1.10446426e-01 -9.93371598e-01]\n", + " [-4.93408865e-03 8.96742457e-02 -9.95958927e-01]\n", + " [-1.65094263e-01 1.65811004e-01 -9.72239989e-01]\n", + "2 -0.72355914 -0.59418739 -0.49542716 -0.42124573\n", + " -0.96839146 -0.73470538 -0.53260261 -0.40540407 -0.32392864 -0.26858462\n", + " -0.79207942 -0.34036707 -0.20582312 -0.14662418 -0.11369565 -0.09279187]\n", + "DEBUG:root:fitpix2pix: visCut: True\n", + " [-1.36466371e-01 1.44888917e-01 -9.79991904e-01]\n", + " [-1.07894538e-01 1.23843720e-01 -9.86418523e-01]\n", + " [-7.95523823e-02 1.02801030e-01 -9.91515692e-01]\n", + " [-5.16145910e-02 8.18856059e-02 -9.95304316e-01]\n", + " [-2.42584809e-02 6.12206631e-02 -9.97829423e-01]\n", + " [-1.86325712e-01 1.36698826e-01 -9.72931735e-01]\n", + " [-1.57486696e-01 1.15703291e-01 -9.80719475e-01]\n", + " [-1.28660381e-01 9.46412343e-02 -9.87162369e-01]\n", + " [-1.00022096e-01 7.36385442e-02 -9.92256492e-01]\n", + " [-7.17473734e-02 5.28196007e-02 -9.96023295e-01]\n", + " [-4.40128852e-02 3.23066659e-02 -9.98508460e-01]\n", + " [-2.07567619e-01 1.07070378e-01 -9.72343364e-01]\n", + " [-1.78573684e-01 8.60433533e-02 -9.80157120e-01]\n", + " [-1.49549653e-01 6.50078608e-02 -9.86614859e-01]\n", + " [-1.20672534e-01 4.40895077e-02 -9.91712789e-01]\n", + " [-9.21191088e-02 2.34117648e-02 -9.95472731e-01]\n", + " [-6.40663155e-02 3.09552598e-03 -9.97940842e-01]\n", + " [-2.28687543e-01 7.70952648e-02 -9.70442336e-01]\n", + " [-1.99596443e-01 5.60791652e-02 -9.78272144e-01]\n", + " [-1.70433152e-01 3.51135888e-02 -9.84743406e-01]\n", + " [-1.41376047e-01 1.43233438e-02 -9.89852340e-01]\n", + " [-1.12603220e-01 -6.16943817e-03 -9.93620880e-01]\n", + " [-8.42924469e-02 -2.62454730e-02 -9.96095356e-01]]\n", + "DEBUG:root:cartToSphere: vec: [[-0.00114705 0.20838541 0.97804612]\n", + " [-0.00115629 0.18089194 0.9835023 ]\n", + " [-0.0011641 0.15270652 0.9882709 ]\n", + " [-0.00117048 0.12393558 0.99228958]\n", + " [-0.00117539 0.09468513 0.99550658]\n", + " [-0.00117881 0.06506336 0.99788044]\n", + " [-0.00118068 0.03518275 0.9993802 ]\n", + " [-0.00118097 0.0051606 0.99998599]\n", + " [-0.00114705 0.20838541 0.97804612]\n", + " [-0.03018244 0.20823844 0.97761228]\n", + " [-0.05910007 0.20782077 0.9763799 ]\n", + " [-0.08778716 0.20713345 0.97436602]\n", + " [-0.11613176 0.20617803 0.9715987 ]\n", + " [-0.14402308 0.20495645 0.96811684]\n", + " [-0.17135219 0.DEBUG:root:radec2pix: lng: [ 90.2964384 90.3478894 90.41900227 90.52370941 90.69317626\n", + " 91.01436915 91.85606354 99.82098825 90.2964384 98.16139155\n", + " 105.72927905 112.77495178 119.16321868 124.84620437 129.84075369\n", + " 134.20177453 99.82098825 167.3372664 173.45282833 175.5877589\n", + " 176.67095531 177.32554882 177.76380439 178.07772632 134.20177453\n", + " 138.45558903 143.3516981 148.95804019 155.308999 162.37619731\n", + " 170.03980495 178.07772632 90.34583364 90.4272438 90.55456533\n", + " 90.78188435 91.3031483 93.7291305 93.74640471 103.2233069\n", + " 112.02083939 119.85139884 126.62419493 132.38733532 153.55676438\n", + " 172.05771641 175.35290167 176.71349424 177.45570466 177.92289984\n", + " 135.96861356 141.60475991 148.27615291 156.06135558 164.90482616\n", + " 174.54251233 90.32368928 90.32368928 178.04899302 178.04899302\n", + " 93.98561362 104.03389942 113.27790792 121.40147615 128.33121468\n", + " 134.15142333 94.8637718 106.96302166 117.69569442 126.6774761\n", + " 133.96694623 139.82391059 96.23245551 111.36280739DEBUG:root:fitpix2pix: visCut: True\n", + " 123.94129691\n", + " 133.676108 141.03771084 146.62863656 98.65756574 118.5861081\n", + " 133.14971036 143.05690148 149.85595749 154.68575435 104.09063117\n", + " 131.90726386 147.0632386 155.45116677 160.56901612 163.96684771\n", + " 125.42327674 158.50946167 167.09834094 170.82105172 172.88266004\n", + " 174.18898669]\n", + "20347155 0.96396979]\n", + " [-0.19801388 0.2017284 0.95921643]\n", + " [-0.00118097 0.0051606 0.99998599]\n", + " [-0.03121228 0.00515607 0.99949948]\n", + " [-0.06111791 0.00514464 0.99811729]\n", + " [-0.09077999 0.00512646 0.99585778]\n", + " [-0.12008538 0.00510175 0.99275046]\n", + " [-0.14892541 0.0050707 0.98883543]\n", + " [-0.17719395 0.00503345 0.98416308]\n", + " [-0.20478471 0.00499006 0.97879432]\n", + " [-0.19801388 0.2017284 0.95921643]\n", + " [-0.19975823 0.17512925 0.96406763]\n", + " [-0.20124936 0.14784829 0.96831791]\n", + " [-0.20248221 0.11999042 0.97190702]\n", + " [-0.20345393 0.09166442 0.97478415]\n", + " [-0.20416257 0.06298098 0.97690892]\n", + " [-0.20460656 0.03405194 0.97825182]\n", + " [-0.20478471 0.00499006 0.97879432]\n", + " [-0.00125101 0.19649007 0.98050502]\n", + " [-0.00126235 0.1623152 0.98673815]\n", + " [-0.00127136 0.12720686 0.99187539]\n", + " [-0.00127799 0.09136033 0.99581708]\n", + " [-0.00128216 0.05497503 0.99848691]\n", + " [-0.00128379 0.01826009 0.99983245]\n", + " [-0.01381426 0.20826196 0.97797552]\n", + " [-0.04933618 0.20789982 0.97690512]\n", + " [-0.08456905 0.20713224 0.97465087]\n", + " [-0.11930642 0.20596186 0.97125985]\n", + " [-0.15334441 0.20439232 0.96680364]\n", + " [-0.18648385 0.20242966 0.96137714]\n", + " [-0.01428247 0.00526224 0.99988415]\n", + " [-0.05101935 0.00525184 0.99868386]\n", + " [-0.08744986 0.00523103 0.99615519]\n", + " [-0.12336368 0.00520016 0.9923479 ]\n", + " [-0.15856056 0.00515961 0.98733577]\n", + " [-0.19284509 0.0051096 0.98121591]\n", + " [-0.1987148 0.19022738 0.96141873]\n", + " [-0.20068229 0.157155 0.96696894]\n", + " [-0.20226422 0.12316211 0.9715556 ]\n", + " [-0.20345456 0.08844755 0.97508116]\n", + " [-0.20424964 0.05321501 0.97747135]\n", + " [-0.20464672 0.01767079 0.97867638]\n", + " [-0.00124645 0.20829266 0.97806575]\n", + " [-0.0012464DEBUG:root:radec2pix: lat: [77.94367134 79.54902489 81.18632945 82.85028944 84.53583766 86.23790238\n", + " 87.95095267 89.65971994 77.94367134 77.82164346 77.48801235 76.9631292\n", + " 76.27533882 75.45615131 74.53651433 73.54460591 89.65971994 88.15347287\n", + " 86.45230283 84.75294209 83.0672058 81.4014907 79.76129308 78.15206149\n", + " 73.54460591 74.55768324 75.50238779 76.35047091 77.07044991 77.62962616\n", + " 77.99774795 78.15206149 78.63928322 80.62896884 82.66134588 84.72698979\n", + " 86.81649257 88.91826945 77.92273249 77.62880737 77.03600995 76.19348076\n", + " 75.15884594 73.98801233 89.08995442 87.02817045 84.94370871 82.87794501\n", + " 80.84312687 78.84936896 73.99670581 75.19609757 76.26512012 77.14708483\n", + " 77.78216783 78.11748405 77.94905666 77.94905666 78.15735777 78.15735777\n", + " 78.61100015 78.29575797 77.66281562 76.76884154 75.67835331 74.45201735\n", + " 80.5936009 80.20229517 79.43086524 78.36733491 77.10116027 75.70726987\n", + " 82.61510476 82.11071991 81.1484309 79.87243611 78.40512567 76.83322353\n", + " 84.66162432 83.97115888 82.73646392 81.20037729 79.51583908 77.76861975\n", + " 86.70802953 85.66590929 84.05006409 82.22924953 80.34192865 78.44668306\n", + " 88.6299785 86.85760815 84.84280506 82.80723116 80.78933117 78.80649174]\n", + "DEBUG:root:optics_fp: xyfp shape: (96, 2)\n", + "5 0.20829266 0.97806575]\n", + " [-0.20469148 0.0050897 0.97881331]\n", + " [-0.20469148 0.0050897 0.97881331]\n", + " [-0.01386808 0.19646111 0.98041354]\n", + " [-0.04952932 0.19611969 0.9793283 ]\n", + " [-0.08490071 0.19539637 0.97704254]\n", + " [-0.11977552 0.19429398 0.97360345]\n", + " [-0.15394951 0.1928159 0.96908285]\n", + " [-0.18722234 0.19096695 0.96357637]\n", + " [-0.01400325 0.16229116 0.98664355]\n", + " [-0.05001432 0.16200846 0.98552109]\n", + " [-0.08573269 0.16141067 0.9831564 ]\n", + " [-0.12095098 0.16050163 0.9795969 ]\n", + " [-0.15546507 0.15928501 0.97491482]\n", + " [-0.18907339 0.15776388 0.9692068 ]\n", + " [-0.01411268 0.1271878 0.99177825]\n", + " [-0.05040698 0.12696445 0.99062564]\n", + " [-0.08640482 0.12649338 0.98819716]\n", + " [-0.12189811 0.12577923 0.98454072]\n", + " [-0.15668376 0.12482642 0.97972DEBUG:root:radec2pix: fitpx: [[-5.00000272e-01 -5.00000268e-01]\n", + " [-4.99999785e-01 2.91928572e+02]\n", + " [-4.99999908e-01 5.84357143e+02]\n", + " [-4.99999976e-01 8.76785714e+02]\n", + " [-4.99999814e-01 1.16921429e+03]\n", + " [-4.99999859e-01 1.46164286e+03]\n", + " [-4.99999732e-01 1.75407143e+03]\n", + " [-4.99999866e-01 2.04650000e+03]\n", + " [-5.00000272e-01 -5.00000268e-01]\n", + " [ 2.91928572e+02 -4.99999720e-01]\n", + " [ 5.84357143e+02 -5.00000140e-01]\n", + " [ 8.76785714e+02 -4.99999791e-01]\n", + " [ 1.16921429e+03 -4.99999975e-01]\n", + " [ 1.46164286e+03 -4.99999912e-01]\n", + " [ 1.75407143e+03 -4.99999978e-01]\n", + " [ 2.04650000e+03 -4.99999991e-01]\n", + " [-4.99999866e-01 2.04650000e+03]\n", + " [ 2.91928571e+02 2.04650000e+03]\n", + " [ 5.84357143e+02 2.04650000e+03]\n", + " [ 8.76785715e+02 2.04650000e+03]\n", + " [ 1.16921429e+03 2.04650000e+03]\n", + " [ 1.46164286e+03 2.04650000e+03]\n", + " [ 1.75407143e+03 2.04650000e+03]\n", + " [ 2.04650000e+03 2.04650000e+03]\n", + " [ 2.04650000e+03 -4.99999991e-01]\n", + " [ 2.04650000e+03 2.91928572e+02]\n", + " [ 2.04650000e+03 5.84357143e+02]\n", + " [ 2.04650000e+03 8.76785715e+02]\n", + " [ 2.04650000e+03 1.16921429e+03]\n", + " [ 2.04650000e+03 1.46164286e+03]\n", + " [ 2.04650000e+03 1.75407143e+03]\n", + " [ 2.04650000e+03 2.04650000e+03]\n", + " [ 5.00000192e-01 1.27000000e+02]\n", + " [ 4.99999990e-01 4.85400000e+02]\n", + " [ 4.99999881e-01 8.43800000e+02]\n", + " [ 5.00000044e-01 1.20220000e+03]\n", + " [ 4.99999938e-01 1.56060000e+03]\n", + " [ 5.00000069e-01 1.91900000e+03]\n", + " [ 1.27000000e+02 5.00000092e-01]\n", + " [ 4.85400000e+02 4.99999764e-01]\n", + " [ 8.43800000e+02 4.99999911e-01]\n", + " [ 1.20220000e+03 5.00000156e-01]\n", + " [ 1.56060000e+03 4.99999840e-01]\n", + " [ 1.91900000e+03 4.99999915e-01]\n", + " [ 1.27000000e+02 2.04550000e+03]\n", + " [ 4.85400000e+02 2.04550000e+03]\n", + " [ 8.43800000e+02 2.04550000e+03]\n", + " [ 1.20220000e+03 2.04550000e+03]\n", + " [ 1.56060000e+03 2.04550000e+03]\n", + " [ 1.91900000e+03 2.04550000e+03]\n", + " [ 2.04550000e+03 1.27000000e+02]\n", + " [ 2.04550000e+03 4.85400000e+02]\n", + " [ 2.04550000e+03 8.43800000e+02]\n", + " [ 2.04550000e+03 1.20220000e+03]\n", + " [ 2.04550000e+03 1.56060000e+03]\n", + " [ 2.04550000e+03 1.91900000e+03]\n", + " [ 4.99999957e-01 4.99999958e-01]\n", + " [ 4.99999957e-01 4.99999958e-01]\n", + " [ 2.04550000e+03 2.04550000e+03]\n", + " [ 2.04550000e+03 2.04550000e+03]\n", + " [ 1.27000000e+02 1.27000000e+02]\n", + " [ 4.85400000e+02 1.27000000e+02]\n", + " [ 8.43800000e+02 1.27000000e+02]\n", + " [ 1.20220000e+03 1.27000000e+02]\n", + " [ 1.56060000e+03 1.27000000e+02]\n", + " [ 1.91900000e+03 1.27000000e+02]\n", + " [ 1.27000000e+02 4.85400000e+02]\n", + " [ 4.85400000e+02 4.85400000e+02]\n", + " [ 8.43800000e+02 4.85400000e+02]\n", + " [ 1.20220000e+03 4.85400000e+02]\n", + " [ 1.56060000e+03 4.85400000e+02]\n", + " [ 1.91900000e+03 4.85400000e+02]\n", + " [ 1.27000000e+02 8.43800000e+02]\n", + " [ 4.85400000e+02 8.43800000e+02]\n", + " [ 8.43800000e+02 8.43800000e+02]\n", + " [ 1.20220000e+03 8.43800000e+02]\n", + " [ 1.56060000e+03 8.43800000e+02]\n", + " [ 1.91900000e+03 8.43800000e+02]\n", + " [ 1.27000000e+02 1.20220000e+03]\n", + " [ 4.85400000e+02 1.20220000e+03]\n", + " [ 8.43800000e+02 1.20220000e+03]\n", + " [ 1.20220000e+03 1.20220000e+03]\n", + " [ 1.56060000e+03 1.20220000e+03]\n", + " [ 1.91900000e+03 1.20220000e+03]\n", + " [ 1.27000000e+02 1.56060000e+03]\n", + " [ 4.85400000e+02 1.56060000e+03]\n", + " [ 8.43800000e+02 1.56060000e+03]\n", + " [ 1.20220000e+03 1.56060000e+03]\n", + " [ 1.56060000e+03 1.56060000e+03]\n", + " [ 1.91900000e+03 1.56060000e+03]\n", + " [ 1.27000000e+02 1.91900000e+03]\n", + " [ 4.85400000e+02 1.91900000e+03]\n", + " [ 8.43800000e+02 1.91900000e+03]\n", + " [ 1.20220000e+03 1.91900000e+03]\n", + " [ 1.56060000e+03 1.91900000e+03]\n", + " [ 1.91900000e+03 1.91900000e+03]]\n", + "882]\n", + " [-0.19056116 0.12363768 0.97385839]\n", + " [-0.01419584 0.0913464 0.99571799]\n", + " [-0.05070556 0.09118412 0.99454231]\n", + " [-0.08691471 0.09084281 0.99206523]\n", + " [-0.12261435 0.0903271 0.98833534]\n", + " [-0.15760261 0.0896414 0.98342556]\n", + " [-0.19168088 0.08878838 0.97743289]\n", + " [-0.01425179 0.05496643 0.99838649]\n", + " [-0.05090701 0.05486748 0.99719508]\n", + " [-0.08725814 0.05466012 0.99468502]\n", + " [-0.12309542 0.05434775 0.99090557]\n", + " [-0.15821798 0.0539337 0.98593013]\n", + " [-0.19242913 0.05341999 0.97985577]\n", + " [-0.01427955 0.01825699 0.99973135]\n", + " [-0.05100809 0.0182233 0.99853197]\n", + " [-0.08743051 0.018DEBUG:root:radec2pix: lat: [77.88072123 79.48382459 81.11902826 82.7811435 84.46512008 86.16588026\n", + " 87.87809063 89.592501 77.88072123 77.76297714 77.43489604 76.91632478\n", + " 76.23510116 75.42235372 74.50888673 73.52311865 89.592501 88.1660092\n", + " 86.47326812 84.77720909 83.09335022 81.42892112 79.7896882 78.18111406\n", + " 73.52311865 74.53938675 75.48898077 76.34336174 77.07095847 77.63894653\n", + " 78.01676209 78.18111406 78.57535641 80.56236957 82.59241544 84.65614182\n", + " 86.74415968 88.84595283 77.86145981 77.57369823 76.98847403 76.15398719\n", + " 75.12717296 73.96382281 89.0844999 87.04713438 84.96761219 82.90419496\n", + " 80.87086863 78.87814184 73.97634463 75.18085203 76.25721571 77.14851635\n", + " 77.79468183 78.14215534 77.8861108 77.8861108 78.18637455 78.18637455\n", + " 78.54888043 78.24034026 77.6156038 76.73023014 75.64791869 74.42908235\n", + " 80.52930205 80.14668621 79.38566385 78.33252026 77.07564982 75.68958597\n", + " 82.54926459 82.05674096 81.10786838 79.84412063 78.38693881 76.82298725\n", + " 84.59535958 83.92250159 DEBUG:root:fitpix2pix: ccdpx: shape: (96, 2)\n", + "DEBUG:root:optics_fp: xyfp: [[ -0.167405 31.491388 ]\n", + " [ -0.167405 27.10495943]\n", + " [ -0.167405 22.71853086]\n", + " [ -0.167405 18.33210229]\n", + " [ -0.167405 13.94567372]\n", + " [ -0.167405 9.55924515]\n", + " [ -0.167405 5.17281657]\n", + " [ -0.167405 0.786388 ]\n", + " [ -0.167405 31.491388 ]\n", + " [ -4.55383357 31.491388 ]\n", + " [ -8.94026214 31.491388 ]\n", + " [-13.32669071 31.491388 ]\n", + " [-17.71311928 31.491388 ]\n", + " [-22.09954786 31.491388 ]\n", + " [-26.48597643 31.491388 ]\n", + " [-30.872405 31.491388 ]\n", + " [ -0.167405 0.786388 ]\n", + " [ -4.55383357 0.786388 ]\n", + " [ -8.94026214 0.786388 ]\n", + " [-13.32669071 0.786388 ]\n", + " [-17.71311929 0.786388 ]\n", + " [-22.09954786 0.786388 ]\n", + " [-26.48597643 0.786388 ]\n", + " [-30.872405 0.786388 ]\n", + " [-30.872405 31.491388 ]\n", + " [-30.872405 27.10495943]\n", + " [-30.872405 22.71853086]\n", + " [-30.872405 18.33210229]\n", + " [-30.872405 13.94567371]\n", + " [-30.872405 9.55924514]\n", + " [-30.872405 5.17281657]\n", + " [-30.872405 0.786388 ]\n", + " [ -0.182405 29.578888 ]\n", + " [ -0.182405 24.202888 ]\n", + " [ -0.182405 18.826888 ]\n", + " [ -0.182405 13.450888 ]\n", + " [ -0.182405 8.074888 ]\n", + " [ -0.182405 2.698888 ]\n", + " [ -2.079905 31.476388 ]\n", + " [ -7.455905 31.476388 ]\n", + " [-12.831905 31.476388 ]\n", + " [-18.207905 31.476388 ]\n", + " [-23.583905 31.476388 ]\n", + " [-28.959905 31.476388 ]\n", + " [ -2.079905 0.801388 ]\n", + " [ -7.455905 0.801388 ]\n", + " [-12.831905 0.801388 ]\n", + " [-18.207905 0.801388 ]\n", + " [-23.583905 0.801388 ]\n", + " [-28.959905 0.801388 ]\n", + " [-30.857405 29.578888 ]\n", + " [-30.857405 24.202888 ]\n", + " [-30.857405 18.826888 ]\n", + " [-30.857405 13.450888 ]\n", + " [-30.857405 8.074888 ]\n", + " [-30.857405 2.698888 ]\n", + " [ -0.182405 31.476388 ]\n", + " [ -0.182405 31.476388 ]\n", + " [-30.857405 0.801388 ]\n", + " [-30.857405 0.801388 ]\n", + " [ -2.079905 29.578888 ]\n", + " [ -7.455905 29.578888 ]\n", + " [-12.831905 29.578888 ]\n", + " [-18.207905 29.578888 ]\n", + " [-23.583905 29.578888 ]\n", + " [-28.959905 29.578888 ]\n", + " [ -2.079905 24.202888 ]\n", + " [ -7.455905 24.202888 ]\n", + " [-12.831905 24.202888 ]\n", + " [-18.207905 24.202888 ]\n", + " [-23.583905 24.202888 ]\n", + " [-28.959905 24.202888 ]\n", + " [ -2.079905 18.826888 ]\n", + " [ -7.455905 18.826888 ]\n", + " [-12.831905 18.826888 ]\n", + " [-18.207905 18.826888 ]\n", + " [-23.583905 18.826888 ]\n", + " [-28.959905 18.826888 ]\n", + " [ -2.079905 13.450888 ]\n", + " [ -7.455905 13.450888 ]\n", + " [-12.831905 13.450888 ]\n", + " [-18.207905 13.450888 ]\n", + " [-23.583905 13.450888 ]\n", + " [-28.959905 13.450888 ]\n", + " [ -2.079905 8.074888 ]\n", + " [ -7.455905 8.074888 ]\n", + " [-12.831905 8.074888 ]\n", + " [-18.20790499 8.074888 ]\n", + " [-23.583905 8.074888 ]\n", + " [-28.959905 8.074888 ]\n", + " [ -2.079905 2.698888 ]\n", + " [ -7.455905 2.698888 ]\n", + " [-12.831905 2.698888 ]\n", + " [-18.207905 2.698888 ]\n", + " [-23.583905 2.698888 ]\n", + " [-28.959905 2.698888 ]]\n", + "15347 0.9960052 ]\n", + " [-0.12333654 0.01804874 0.99220076]\n", + " [-0.15852587 0.01791034 0.98719237]\n", + " [-0.19280295 0.01773905 0.98107714]]\n", + "82.7051798 81.18260126 79.50799917 77.76802141\n", + " 86.64409097 85.63122317 84.03581665 82.22723271 80.34771821 78.45776966\n", + " 88.58657998 86.85792078 84.85560606 82.82572865 80.81119712 78.83059106]\n", + "DEBUG:root:radec2pix: curVec Shape: (96, 3)\n", + "DEBUG:root:fitpix2pix: visCut: True\n", + "DEBUG:root:optics_fp: xyfp shape: (96, 2)\n", + "DEBUG:root:make_az_asym: xyp: [[32.275486 31.41357429]\n", + " [32.27502267 27.02714574]\n", + " [32.27455935 22.64071719]\n", + " [32.27409601 18.25428864]\n", + " [32.27363269 13.8678601 ]\n", + " [32.27316936 9.48143155]\n", + " [32.27270604 5.095003 ]\n", + " [32.27224271 0.70857446]\n", + " [32.275486 31.41357429]\n", + " [27.88905745 31.41403761]\n", + " [23.5026289 31.41450094]\n", + " [19.11620036 31.41496427]\n", + " [14.72977181 31.41542759]\n", + " [10.34334326 31.41589092]\n", + " [ 5.95691471 31.41635424]\n", + " [ 1.57048617 31.41681757]\n", + " [32.27224271 0.70857446]\n", + " [27.88581416 0.70903778]\n", + " [23.49938562 0.70950111]\n", + " [19.11295707 0.70996444]\n", + " [14.72652852 0.71042776]\n", + " [10.34009998 0.71089109]\n", + " [ 5.95367142 0.71135442]\n", + " [ 1.56724288 0.71181774]\n", + " [ 1.57048617 31.41681757]\n", + " [ 1.57002284 27.03038902]\n", + " [ 1.56955951 22.64396047]\n", + " [ 1.56909619 18.25753194]\n", + " [ 1.56863286 13.87110338]\n", + " [ 1.56816953 9.48467484]\n", + " [ 1.56770621 5.09824629]\n", + " [ 1.56724288 0.71181774]\n", + " [32.26028399 29.50107588]\n", + " [32.25971613 24.12507591]\n", + " [32.25914828 18.74907594]\n", + " [32.25858043 13.37307597]\n", + " [32.25801258 7.997076 ]\n", + " [32.25744472 2.62107603]\n", + " [30.36298443 31.3987763 ]\n", + " [24.98698446 31.39934415]\n", + " [19.61098448 31.399912 ]\n", + " [14.23498451 31.40047985]\n", + " [ 8.85898454 31.40104771]\n", + " [ 3.48298457 31.40161556]\n", + " [30.35974431 0.72377647]\n", + " [24.98374433 0.72434432]\n", + " [19.60774436 0.72491217]\n", + " [14.23174439 0.72548003]\n", + " [ 8.85574442 0.72604788]\n", + " [ 3.47974445 0.72661573]\n", + " [ 1.58528416 29.504316 ]\n", + " [ 1.5847163 24.12831603]\n", + " [ 1.58414845 18.75231606]\n", + " [ 1.5835806 13.37631609]\n", + " [ 1.58301275 8.00031612]\n", + " [ 1.5824449 2.62431615]\n", + " [32.26048441 31.39857587]\n", + " [32.26048441 31.39857587]\n", + " [ 1.58224447 0.72681616]\n", + " [ 1.58224447 0.72681616]\n", + " [30.36278399 29.50127631]\n", + " [24.98678403 29.50184416]\n", + " [19.61078405 29.50241201]\n", + " [14.23478409 29.50297987]\n", + " [ 8.85878411 29.50354772]\n", + " [ 3.48278414 29.50411557]\n", + " [30.36221615 24.12527634]\n", + " [24.98621618 24.12584419]\n", + " [19.6102162 24.12641204]\n", + " [14.23421623 24.1269799 ]\n", + " [ 8.85821626 24.12754775]\n", + " [ 3.48221629 24.1281156 ]\n", + " [30.36164829 18.74927637]\n", + " [24.98564832 18.74984422]\n", + " [19.60964835 18.75041208]\n", + " [14.23364838 18.75097993]\n", + " [ 8.85764841 18.75154778]\n", + " [ 3.48164844 18.75211563]\n", + " [30.36108043 13.3732764 ]\n", + " [24.98508046 13.37384425]\n", + " [19.60908049 13.3744121 ]\n", + " [14.23308053 13.37497996]\n", + " [ 8.85708056 13.37554781]\n", + " [ 3.48108059 13.37611567]\n", + " [30.36051258 7.99727643]\n", + " [24.98451261 7.99784428]\n", + " [19.60851265 7.99841214]\n", + " [14.23251268 7.99897999]\n", + " [ 8.85651271 7.99954784]\n", + " [ 3.48051273 8.00011569]\n", + " [30.35994473 2.62127646]\n", + " [24.98394476 2.62184431]\n", + " [19.60794479 2.62241216]\n", + " [14.23194482 2.62298002]\n", + " [ 8.85594485 2.62354787]\n", + " [ 3.47994488 2.62411572]]\n", + "DEBUG:root:radec2pix: lng: [ 90.31538026 90.36623882 90.4367643DEBUG:root:optics_fp: rtanth: [31.53710793 27.15083443 22.76462071 18.37850955 13.99259736 9.60715672\n", + " 5.22337543 0.86680593 31.53710793 31.87457578 32.80044965 34.26706764\n", + " 36.20878157 38.55387546 41.23358186 44.18706537 0.86680593 4.70645911\n", + " 9.05713384 13.4310871 17.81117737 22.19377139 26.57763063 30.96221766\n", + " 44.18706537 41.17129315 38.42050918 35.99551614 33.96616479 32.40686702\n", + " 31.3877559 30.96221766 29.62479828 24.2490533 18.8734536 13.49817273\n", + " 8.12384367 2.75604003 31.59497037 32.40914016 34.06266769 36.44147428\n", + " 39.41445822 42.8581467 2.31847961 7.58192329 12.93825823 18.30612583\n", + " 23.67768384 29.05088524 42.83223469 39.30633844 36.23781045 33.75162698\n", + " 31.98387863 31.05748561 31.52222904 31.52222904 30.94762955 30.94762955\n", + " 29.70218682 30.56681395 32.3147502 34.81319861 37.91407742 41.48250822\n", + " 24.34353743 25.39129827 27.47054774 30.37016151 33.88015908 37.83102431\n", + " 18.99469609 20.32015484 22.86529373 26.27807784 30.26641445 34.63202369\n", + " 13.66718319 15.45645DEBUG:root:radec2pix: curVec: [[-0.19616062 -0.44892492 0.87177258]\n", + " [-0.22195908 -0.45470595 0.86254082]\n", + " [-0.2480927 -0.46023582 0.85242771]\n", + " [-0.27444751 -0.46547241 0.84143568]\n", + " [-0.3009114 -0.47037821 0.8295762 ]\n", + " [-0.32737314 -0.47492031 0.81687057]\n", + " [-0.35372238 -0.47907055 0.80335042]\n", + " [-0.37985046 -0.48280589 0.78905773]\n", + " [-0.19616062 -0.44892492 0.87177258]\n", + " [-0.2056603 -0.42356554 0.8822109 ]\n", + " [-0.21504844 -0.39795418 0.89184452]\n", + " [-0.22429342 -0.3721966 0.90064541]\n", + " [-0.2333678 -0.34640295 0.90859478]\n", + " [-0.24224877 -0.32068794 0.91568268]\n", + " [-0.2509186 -0.29517157 0.92190759]\n", + " [-0.2593649 -0.26998043 0.92727581]\n", + " [-0.37985046 -0.48280589 0.78905773]\n", + " [-0.3895316 -0.45653638 0.79989978]\n", + " [-0.39883418 -0.4299427 0.80998801]\n", + " [-0.40772654 -0.4031355 0.81929289]\n", + " [-0.41618233 -0.37622841 0.82779494]\n", + " [-0.42418054 -0.34933708 0.83548458]\n", + " [-0.43170534 -0.322579 0.84236173]\n", + " [-0.43874565 -0.29607431 0.84843518]\n", + " [-0.2593649 -0.26998043 0.92727DEBUG:root:radec2pix: camVec: [[-0.00156258 -0.00157957 -0.00159468 -0.00160787 -0.00161907 -0.00162822\n", + " -0.00163527 -0.00164017 -0.00156258 -0.0305812 -0.05948043 -0.08814769\n", + " -0.11647141 -0.14434091 -0.17164574 -0.19827444 -0.00164017 -0.03165868\n", + " -0.06155164 -0.09120162 -0.12049415 -0.14931846 -0.17756745 -0.20513658\n", + " -0.19827444 -0.2000398 -0.20154417 -0.20278831 -0.20377138 -0.20449167\n", + " -0.20494724 -0.20513658 -0.00166992 -0.00169047 -0.00170796 -0.0017223\n", + " -0.00173334 -0.001741 -0.0142227 -0.04972296 -0.08493191 -0.1196437\n", + " -0.15365451 -0.18676067 -0.01473616 -0.05145726 -0.08787283 -0.12377083\n", + " -0.15894736 -0.19320639 -0.19898619 -0.20097311 -0.20256914 -0.20377339\n", + " -0.20458276 -0.20499385 -0.00166195 -0.00166195 -0.20504339 -0.20504339\n", + " -0.01428012 -0.04992014 -0.08526785 -0.1201171 -0.15426444 -0.18750721\n", + " -0.01442512 -0.05041664 -0.08611259 -0.12130566 -0.1557929 -0.1893742\n", + " -0.01454351 -0.0508198 -0.08679712 -0.1222667 -0.15702557 -0.19087549\n", + " -0.014634DEBUG:root:radec2pix: curVec: [[0.23985072 0.88680076 0.39503929]\n", + " [0.21254879 0.89267242 0.39744052]\n", + " [0.18453662 0.89793727 0.39956837]\n", + " [0.1559167 0.90253556 0.401397 ]\n", + " [0.12679332 0.90641671 0.4029047 ]\n", + " [0.09727437 0.90953943 0.40407391]\n", + " [0.06747217 0.91187196 0.40489138]\n", + " [0.03750312 0.9133927 0.40534837]\n", + " [0.23985072 0.88680076 0.39503929]\n", + " [0.23988068 0.89820859 0.36834574]\n", + " [0.23961445 0.90884813 0.34143811]\n", + " [0.23905314 0.91868922 0.314426 ]\n", + " [0.23819864 0.92771205 0.28742263]\n", + " [0.23705316 0.93590717 0.26054476]\n", + " [0.23561887 0.94327536 0.23391312]\n", + " [0.23389778 0.94982745 0.2076527 ]\n", + " [0.03750312 0.9133927 0.40534837]\n", + " [0.03768355 0.92514838 0.37773061]\n", + " [0.03782766 0.93603646 0.34986398]\n", + " [0.03793538 0.9460259 0.32186318]\n", + " [0.03800706 0.95509741 0.29384418]\n", + " [0.03804343 0.96324314 0.26592357]\n", + " [0.0380456 0.97046598 0.23821904]\n", + " [0.03801497 0.97677878 0.21085085]\n", + " [0.23389778 0.94982745 0.2076527 ]\n", + " [0.20748752 0.95582093 0.20821932]\n", + " [0.18037236 0.96118429 0.20878354DEBUG:root:make_az_asym: xyp: shape: (96, 2)\n", + "DEBUG:root:radec2pix: curVec: [[-0.35690498 -0.68247876 0.63784134]\n", + " [-0.35033153 -0.66621806 0.65834741]\n", + " [-0.34321445 -0.64918347 0.67879649]\n", + " [-0.33558467 -0.63141366 0.69907061]\n", + " [-0.32747305 -0.61295429 0.7190608 ]\n", + " [-0.31891086 -0.59385835 0.73866645]\n", + " [-0.3099305 -0.57418635 0.75779491]\n", + " [-0.30056603 -0.55400631 0.77636143]\n", + " [-0.35690498 -0.68247876 0.63784134]\n", + " [-0.33322998 -0.69527908 0.63682398]\n", + " [-0.308744 -0.7077484 0.63542847]\n", + " [-0.28354511 -0.71981082 0.63362019]\n", + " [-0.2577314 -0.7313971 0.63137375]\n", + " [-0.23140181 -0.74244436 0.62867286]\n", + " [-0.20465701 -0.75289626 0.62550997]\n", + " [-0.17759976 -0.76270322 0.62188594]\n", + " [-0.30056603 -0.55400631 0.77636143]\n", + " [-0.27548398 -0.56625545 0.77682903]\n", + " [-0.24966652 -0.57829779 0.77668417]\n", + " [-0.22320481 -0.59005989 0.77589235]\n", + " [-0.19619227 -0.60147424 0.7744271 ]\n", + " [-0.16872642 -0.61247869 0.77227019]\n", + " [-0.1409098 -0.62301645 0.76941207]\n", + " [-0.11284978 -0.63303652 51 -0.05112705 -0.08731762 -0.122996 -0.15795892 -0.19200933\n", + " -0.01469728 -0.05133568 -0.08766989 -0.12348855 -0.15858803 -0.19277198\n", + " -0.01473117 -0.05144352 -0.08785049 -0.12374011 -0.1589085 -0.19315962]\n", + " [ 0.20900824 0.18154377 0.15338464 0.12463517 0.09540199 0.06579532\n", + " 0.03592916 0.00592057 0.20900824 0.20886066 0.2084416 0.2077524\n", + " 0.20679486 0.20557063 0.20408052 0.20232383 0.00592057 0.00591961\n", + " 0.00591082 0.00589429 0.00587015 0.00583856 0.00579969 0.00575368\n", + " 0.20232383 0.17576331 0.1485108 0.12067777 0.09237455 0.06371165\n", + " 0.03480051 0.00575368 0.19712565 0.16298492 0.12790428 0.09207897\n", + " 0.05571194 0.01901436 0.20888472 0.20852129 0.20775151 0.20657854\n", + " 0.20500532 0.20303275 0.00602383 0.00601719 0.00599868 0.00596852\n", + " 0.005927 0.00587443 0.19084173 0.15780847 0.12384677 0.08916013\n", + " 0.05395206 0.01842821 0.20891558 0.20891558 0.00585328 0.00585328\n", + " 0.19709662 0.19675396 0.1960282 0.19492287DEBUG:root:make_az_asym: xyp: [[ -0.167405 31.491388 ]\n", + " [ -0.167405 27.10495943]\n", + " [ -0.167405 22.71853086]\n", + " [ -0.167405 18.33210229]\n", + " [ -0.167405 13.94567372]\n", + " [ -0.167405 9.55924515]\n", + " [ -0.167405 5.17281657]\n", + " [ -0.167405 0.786388 ]\n", + " [ -0.167405 31.491388 ]\n", + " [ -4.55383357 31.491388 ]\n", + " [ -8.94026214 31.491388 ]\n", + " [-13.32669071 31.491388 ]\n", + " [-17.71311928 31.491388 ]\n", + " [-22.09954786 31.491388 ]\n", + " [-26.48597643 31.491388 ]\n", + " [-30.872405 31.491388 ]\n", + " [ -0.167405 0.786388 ]\n", + " [ -4.55383357 0.786388 ]\n", + " [ -8.94026214 0.786388 ]\n", + " [-13.32669071 0.786388 ]\n", + " [-17.71311929 0.786388 ]\n", + " [-22.09954786 0.786388 ]\n", + " [-26.48597643 0.786388 ]\n", + " [-30.872405 0.786388 ]\n", + " [-30.872405 31.491388 ]\n", + " [-30.872405 27.10495943]\n", + " [-30.872405 22.71853086]\n", + " [-30.872405 18.33210229]\n", + " [-30.872405 13.94567371]\n", + " [-30.872405 9.55924514]\n", + " [-30.872405 5.17281657]\n", + " [-30.872405 0.786388 ]\n", + " [ -0.182405 29.578888 ]\n", + " [ -0.182405 24.202888 ]\n", + " [ -0.182405 18.826888 ]\n", + " [ -0.182405 13.450888 ]\n", + " [ -0.182405 8.074888 ]\n", + " [ -0.182405 2.698888 ]\n", + " [ -2.079905 31.476388 ]\n", + " [ -7.455905 31.476388 ]\n", + " [-12.831905 31.476388 ]\n", + " [-18.207905 31.476388 ]\n", + " [-23.583905 31.476388 ]\n", + " [-28.959905 31.476388 ]\n", + " [ -2.079905 0.801388 ]\n", + " [ -7.455905 0.801388 ]\n", + " [-12.831905 0.801388 ]\n", + " [-18.207905 0.801388 ]\n", + " [-23.583905 0.801388 ]\n", + " [-28.959905 0.801388 ]\n", + " [-30.857405 29.578888 ]\n", + " [-30.857405 24.202888 ]\n", + " [-30.857405 18.826888 ]\n", + " [-30.857405 13.450888 ]\n", + " [-30.857405 8.074888 ]\n", + " [-30.857405 2.698888 ]\n", + " [ -0.182405 31.476388 ]\n", + " [ -0.182405 31.476388 ]\n", + " [-30.857405 0.801388 ]\n", + " [-30.857405 0.801388 ]\n", + " [ -2.079905 29.578888 ]\n", + " [ -7.455905 29.578888 ]\n", + " [-12.831905 29.578888 ]\n", + " [-18.207905 29.578888 ]\n", + " [-23.583905 29.578888 ]\n", + " [-28.959905 29.578888 ]\n", + " [ -2.079905 24.202888 ]\n", + " [ -7.455905 24.202888 0.19344162 0.19158618\n", + " 0.16296111 0.16267787 0.16207774 0.1611649 0.15994417 0.15841917\n", + " 0.12788582 0.12766348 0.12719172 0.12647465 0.12551724 0.12432386\n", + " 0.09206603 0.09190638 0.09156653 0.09104984 0.09036055 0.08950266\n", + " 0.05570466 0.05560934 0.05540465 0.05509277 0.05467653 0.0541587\n", + " 0.01901283 0.01898296 0.01891568 0.01881174 0.01867213 0.01849786]\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + " [ 0.97791263 0.9833816 0.98816527 0.99220134 0.99543751 0.99783181\n", + " 0.999353 0.99998113 0.97791263 0.97746714 0.97622445 0.97420169\n", + " 0.97142694 0.96793926 0.96378882 0.95903718 0.99998113 0.99948121\n", + " 0.9980864 0.995815 0.99269668 0.98877192 0.98409154 0.97871644\n", + " 0.95903718 0.96389384 0.9681552 0.97175809 0.97465079 0.9767927\n", + " 0.97815416 0.97871644 0.98037681 0.98662711 0.99178505 0.99575022\n", + " 0.99844538 0.99981769 0.97783684 0.97675304 0.9744875 0.97108738\n", + " 0.9666246 0.96119621 0.99987327 0.99865707 0.99611364 0.99229288\n", + " 0.98726927 0.98114055 0.96124083 0.9668021 0.97140502 0.97494968\n", + " 0.97736128 0.97858976 0.97793227 0.97793227 0.97873538 0.97873538\n", + " 0.98028006 0.97918122 0.976884 0.97343565 0.96890806 0.96339804\n", + " 0.98652704 0.98539031 0.98301344 0.97944414 0.97475455 0.96904116\n", + " 0.99168226 0.99051471 0.98807314 0.98440592 0.97958583 0.97370947\n", + " 0.99564536 0.99445424 0.99196331 0.98822159 0.98330257 0.97730327\n", + " 0.99833911 0.99713201 0.99460762 0.9908155 0.98582976 0.97974782\n", + " 0.99971071 0.99849547 0.99595406 0.99213633 0.98711673 0.98099296]]\n", + "8 90.5410988 90.71121584\n", + " 91.03796151 91.92203204 102.88976492 90.31538026 98.24711833\n", + " 105.87469321 112.96816895 119.3908045 125.09574844 130.10218059\n", + " 134.46760759 102.88976492 170.61981741 175.18843619 176.76786642\n", + " 177.56728748 178.0499121 178.37286738 178.60412954 134.46760759\n", + " 138.7587586 143.69705248 149.3491301 155.74646239 162.85581906\n", + " 170.55107093 178.60412954 90.36478543 90.44558973 90.57261901\n", + " 90.80142559 91.33604138 94.02159324 93.79493665 103.34977578\n", + " 112.20947139 120.08219547 126.87889854 132.65213472 159.7741798\n", + " 174.12277646 176.57679256 177.5862344 178.13623505 178.48225333\n", + " 136.25009833 141.93538112 148.66205842 156.50402904 165.39685811\n", + " 175.06487905 90.34286209 90.34286209 178.57562014 178.57562014\n", + " 94.0377805 104.17347615 113.48518905 121.65239591 128.60482826\n", + " 134.43270854 94.93153704 107.15620301 117.97484261 127.00098521\n", + " 134.30466928 140.15819331 96.33160595 111.65389266 124.33611449\n", + " 134.10224284 141.45645803 147.02415603 98.83348775 119.07751066\n", + " 133.73407847 143.6218029 150.36959526 155.14598444 104.53566541\n", + " 132.85570308 147.93620706 156.17810512 161.17666862 164.48488524\n", + " 128.03043433 160.3400738 168.27016728 171.67458296 173.55402386\n", + " 174.74323713]\n", + "DEBUG:root:radec2pix: xyfp: [[32.275486 31.41357429]\n", + " [32.27502267 27.02714574]\n", + " [32.27455935 22.64071719]\n", + " [32.27409601 18.25428864]\n", + " [32.27363269 13.8678601 ]\n", + " [32.27316936 9.48143155]\n", + " [32.27270604 5.095003 ]\n", + " [32.27224271 0.70857446]\n", + " [32.275486 31.41357429]\n", + " [27.88905745 31.41403761]\n", + " [23.5026289 31.41450094]\n", + " [19.11620036 31.41496427]\n", + " [14.72977181 31.41542759]\n", + " [10.34334326 31.41589092]\n", + " [ 5.95691471 31.41635424]\n", + " [ 1.57048617 31.41681757]\n", + " [32.27224271 0.70857446]\n", + " [27.88581416 0.70903778]\n", + " [23.49938562 0.70950111]\n", + " [19.11295707 0.70996444]\n", + " [14.72652852 0.71042776]\n", + " [10.34009998 0.71089109]\n", + " [ 5.95367142 0.71135442]\n", + " [ 1.56724288 0.71181774]\n", + " [ 1.57048617 31.41681757]\n", + " [ 1.57002284 27.03038902]\n", + " [ 1.56955951 22.64396047]\n", + " [ 1.56909619 18.25753194]\n", + " [ 1.56863286 13.87110338]\n", + " [ 1.56816953 9.48467484]\n", + " [ 1.56770621 5.09824629]\n", + " [ 1.56724288 0.71181774]\n", + " [32.26028399 29.50107588]\n", + " [32.25971613 24.12507591]\n", + " [32.25914828 18.74907594]\n", + " [32.25858043 13.37307597]\n", + " [32.25801258 7.997076 ]\n", + " [32.25744472 2.62107603]\n", + " [30.36298443 31.3987763 ]\n", + " [24.98698446 31.39934415]\n", + " [19.61098448 31.399912 ]\n", + " [14.23498451 31.40047985]\n", + " [ 8.85898454 31.40104771]\n", + " [ 3.48298457 31.40161556]\n", + " [30.35974431 0.72377647]\n", + " [24.98374433 0.72434432]\n", + " [19.60774436 0.72491217]\n", + " [14.23174439 0.72548003]\n", + " [ 8.85574442 0.72604788]\n", + " [ 3.47974445 0.72661573]\n", + " [ 1.58528416 29.504316 ]\n", + " [ 1.5847163 24.12831603]\n", + " [ 1.58414845 18.75231606]\n", + " [ 1.5835806 13.37631609]\n", + " [ 1.58301275 8.00031612]\n", + " [ 1.5824449 2.62431615]\n", + " [32.26048441 31.39857587]\n", + " [32.26048441 31.39857587]\n", + " [ 1.58224447 0.72681616]\n", + " [ 1.58224447 0.72681616]\n", + " [30.36278399 29.50127631]\n", + " [24.98678403 29.50184416]\n", + " [19.61078405 29.50241201]\n", + " [14.23478409 29.50297987]\n", + " [ 8.85878411 29.50354772]\n", + " [ 3.48278414 29.50411557]\n", + " [30.36221615 24.12527634]\n", + " [24.98621618 24.12584419]\n", + " [19.6102162 24.12641204]\n", + " [14.23421623 24.1269799 ]\n", + " [ 8.85821626 24.12754775]\n", + " [ 3.48221629 24.1281156 ]\n", + " [30.36164829 18.74927637]\n", + " [24.98564832 18.74984422]\n", + " [19.60964835 18.75041208]\n", + " [14.23364838 18.75097993]\n", + " [ 8.85764841 18.75154778]\n", + " [ 3.48164844 18.75211563]\n", + " [30.36108043 13.3732764 ]\n", + " [24.98508046 13.37384425]\n", + " [581]\n", + " [-0.28472325 -0.27384517 0.91866288]\n", + " [-0.31036383 -0.27772674 0.90914364]\n", + " [-0.33616643 -0.28158109 0.89872366]\n", + " [-0.36201574 -0.28537124 0.8874164 ]\n", + " [-0.38780026 -0.28906633 0.87524375]\n", + " [-0.41341181 -0.2926409 0.86223661]\n", + " [-0.43874565 -0.29607431 0.84843518]\n", + " [-0.20739296 -0.45138694 0.86789285]\n", + " [-0.23925183 -0.45830798 0.85598619]\n", + " [-0.2715005 -0.46480955 0.84275711]\n", + " [-0.30393195 -0.47082073 0.82822293]\n", + " [-0.33634137 -0.47628091 0.81242291]\n", + " [-0.36852628 -0.4811404 0.79541958]\n", + " [-0.20040168 -0.43792549 0.87639057]\n", + " [-0.21197387 -0.40666147 0.88864702]\n", + " [-0.22334645 -0.3751235 0.8996659 ]\n", + " [-0.23446717 -0.34351256 0.90940875]\n", + " [-0.24529408 -0.3120399 0.91785724]\n", + " [-0.25579673 -0.2809291 0.92501182]\n", + " [-0.38402694 -0.47138704 0.79392541]\n", + " [-0.39564196 -0.43895946 0.80671062]\n", + " [-0.40665652 -0.40615455 0.81833303]\n", + " [-0.41701988 -0.37318033 0.82875259]\n", + " [-0.42669335 -0.34024968 0.83795164]\n", + " [-0.43564977 -0.3075799 0.84593373]\n", + " [-0.27035042 -0.27174622 0.92361499]\n", + " [-0.3016358 -0.27650145 0.91244879]\n", + " [-0.33322509 -0.28123717 0.89992594]\n", + " [-0.36490402 -0.28588238 0.8860679 ]\n", + " [-0.39646728 -0.29038021 0.87091505]\n", + " [-0.42771712 -0.29468581 0.85452813]\n", + " [-0.19628077 -0.44885889 0.87177954]\n", + " [-0.19628077 -0.44885889 0.87177954]\n", + " [-0.43863636 -0.29615289 0.84846426]\n", + " [-0.43863636 -0.29615289 0.84846426]\n", + " [-0.21152806 -0.44040982 0.87252225]\n", + " [-0.2231225 -0.40901494 0.88482943]\n", + " [-0.23449058 -0.37733626 0.89589704]\n", + " [-0.24557961 -0.345575 0.9056868 ]\n", + " [-0.25634718 -0.31394202 0.9141808 ]\n", + " [-0.26676234 -0.28265978 0.92138011]\n", + " [-0.24342206 -0.44722075 0.86066213]\n", + " [-0.25506629 -0.41549594 0.8731004 ]\n", + " [-0.26640992 -0.38346232 0.88429769]\n", + " [-0.27739948 -0.35132227 0.89421596]\n", + " [-0.28799184 -0.31928621 0.90283831]\n", + " [-0.29815513 -0.287574 0.91016741]\n", + " [-0.27569826 -0.45363292 0.84747132]\n", + " [-0.28737177 -0.42163928 0.86002197]\n", + " [-0.29867232 -0.38931563 0.87133701]\n", + " [-0.30954632 -0.35686595 0.88137834]\n", + " [-0.3199507 -0.32450095 0.89012959]\n", + " [-0.32985363 -0.29243885 0.89759462]\n", + " [-0.30814937 -0.45957598 0.83296692]\n", + " [-0.31983085 -0.42737625 0.84561089]\n", + " [-0.33106878 -0.39482866 0.85703197]\n", + " [-0.34180997 -0.36213888 0.86719166]\n", + " [-0.35201215 -0.3295183 0.8760737 ]\n", + " [-0.36164437 -0.29718435 0.88368253]\n", + " [-0.34057038 -0.46498998 0.81718794]\n", + " [-0.3522382 -0.43264867 0.82990565]\n", + " [-0.36339392 -0.39994485 0.84142081]\n", + " [-0.3739852 -0.36708555 0.85169435]\n", + " [-0.38397111 -0.33428296 0.86070964]\n", + " [-0.39332215 -0.30175423 0.86847111]\n", + " [-0.37275867 -0.46982572 0.8001967 ]\n", + " [-0.38439123 -0.43740885 0.81296795]\n", + " [-0.39544581 -0.40461797 0.82456468]\n", + " [-0.40587121 -0.37166093 0.83494713]\n", + " [-0.41562815 -0.3387505 0.84409794]\n", + " [-0.42468886 -0.30610392 0.85202099]]\n", + "DEBUG:root:optics_fp: rtanth: [31.72889598 27.34254715 22.95622881 18.56996252 14.18379661 9.79786588\n", + " 5.41274207 1.03869565 31.72889598 32.05497925 32.96668106 34.41749464\n", + " 36.342913 38.67211172 41.33689193 44.27670445 ]\n", + " [0.15265992 0.96585718 0.20931999]\n", + " [0.12445828 0.96978896 0.20980827]\n", + " [0.09587646 0.97293877 0.21023285]\n", + " [0.06702479 0.97527566 0.21058269]\n", + " [0.03801497 0.97677878 0.21085085]\n", + " [0.22804146 0.88947165 0.39602686]\n", + " [0.19408967 0.89626831 0.39878856]\n", + " [0.1591728 0.90209304 0.40111366]\n", + " [0.12348201 0.90684896 0.40296049]\n", + " [0.08721601 0.91046004 0.40429677]\n", + " [0.05058334 0.91287204 0.40509994]\n", + " [0.23980821 0.89188792 0.38344227]\n", + " [0.2396458 0.90535736 0.35056803]\n", + " [0.23903966 0.91764157 0.3174807 ]\n", + " [0.23799297 0.92869977 0.28438722]\n", + " [0.23650977 0.93851455 0.25150262]\n", + " [0.23459396 0.94709154 0.21905089]\n", + " [0.03768884 0.91861862 0.39334384]\n", + " [0.03788541 0.93244745 0.35931386]\n", + " [0.03802709 0.94494097 0.32502384]\n", + " [0.03811437 0.95605882 0.29068681]\n", + " [0.03814862 0.96578645 0.25651748]\n", + " [0.03813199 0.97413333 0.22273347]\n", + " [0.22248234 0.9524929 0.20798771]\n", + " [0.18962523 0.95942315 0.20868516]\n", + " [0.1558162 0.96534585 0.20935306]\n", + " [0.12125403 0.97016376 0.20995177]\n", + " [0.08613944 0.97380166 0.19.60908049 13.3744121 ]\n", + " [14.23308053 13.37497996]\n", + " [ 8.85708056 13.37554781]\n", + " [ 3.48108059 13.37611567]\n", + " [30.36051258 7.99727643]\n", + " [24.98451261 7.99784428]\n", + " [19.60851265 7.99841214]\n", + " [14.23251268 7.99897999]\n", + " [ 8.85651271 7.99954784]\n", + " [ 3.48051273 8.00011569]\n", + " [30.35994473 2.62127646]\n", + " [24.98394476 2.62184431]\n", + " [19.60794479 2.62241216]\n", + " [14.23194482 2.62298002]\n", + " [ 8.85594485 2.62354787]\n", + " [ 3.47994488 2.62411572]]\n", + "21045265]\n", + " [0.05067615 0.97620676 0.21083711]\n", + " [0.23975929 0.88686208 0.39495713]\n", + " [0.23975929 0.88686208 0.39495713]\n", + " [0.03811447 0.97675501 0.21094295]\n", + " [0.03811447 0.97675501 0.21094295]\n", + " [0.22809247 0.89451618 0.38446667]\n", + " [0.22795122 0.90802773 0.35145965]\n", + " [0.22738896 0.92033781 0.31823352]\n", + " [0.22640923 0.93140562 0.2849955 ]\n", + " [0.22501653 0.94121384 0.25196043]\n", + " [0.22321509 0.94976827 0.21935189]\n", + " [0.19414654 0.90135984 0.38711441]\n", + " [0.19406548 0.91497691 0.35377372]\n", + " [0.19362818 0.92735127 0.32019956]\n", + " [0.19283903 0.93844204 0.28660016]\n", + " [0.19170361 0.9482DEBUG:root:radec2pix: curVec: [[ 0.16774177 -0.50417602 0.84715361]\n", + " [ 0.14590403 -0.49111563 0.85878836]\n", + " [ 0.12351088 -0.47739812 0.86996327]\n", + " [ 0.10064555 -0.4630567 0.8805958 ]\n", + " [ 0.07739232 -0.44812936 0.89061243]\n", + " [ 0.05383795 -0.43265992 0.89994826]\n", + " [ 0.03007242 -0.41669863 0.90854714]\n", + " [ 0.00618874 -0.40030228 0.91636226]\n", + " [ 0.16774177 -0.50417602 0.84715361]\n", + " [ 0.18517318 -0.4827316 0.85596793]\n", + " [ 0.20231687 -0.46090557 0.86407982]\n", + " [ 0.21910584 -0.43878746 0.87146899]\n", + " [ 0.23547398 -0.4164707 0.87812537]\n", + " [ 0.25135571 -0.39405238 0.88404922]\n", + " [ 0.26668546 -0.3716333 0.88925112]\n", + " [ 0.28139735 -0.34931819 0.89375183]\n", + " [ 0.00618874 -0.40030228 0.91636226]\n", + " [ 0.02434382 -0.37817866 0.92541249]\n", + " [ 0.04241632 -0.35578537 0.93360464]\n", + " [ 0.06033533 -0.33321552 0.9409182 ]\n", + " [ 0.07803212 -0.31056409 0.94734415]\n", + " [ 0.09544047 -0.28792735 0.95288455]\n", + " [ 0.11249621 -0.26540315 0.95755197]\n", + " [ 0.12913611 -0.24309208 0.96136887]\n", + " [ 0.28139735 -0.34931819 0.89375183]\n", + " [ 0.26133472 -0.33523266 0.90516475]\n", + " [ 0.24056416 -0.32071506 0.9161172 ]\n", + " [ 0.21917264 -0.30580185 0.926525 ]\n", + " [ 0.19724687 -0.29053427 0.93631379]\n", + " [ 0.17487367 -0.27495855 0.94541895]\n", + " [ 0.15214057 -0.25912588 0.95378563]\n", + " [ 0.12913611 -0.24309208 0.96136887]\n", + " [ 0.15835433 -0.49849153 0.85230869]\n", + " [ 0.13120655 -0.48203809 0.86627024]\n", + " [ 0.10330709 -0.46463029 0.87945798]\n", + " [ 0.07481057 -0.44633605 0.89173287]\n", + " [ 0.04587678 -0.42723609 0.90297544]\n", + " [ 0.01667271 -0.40742568 0.91308616]\n", + " [ 0.1752996 -0.49483485 0.85112192]\n", + " [ 0.19647931 -0.46828411 0.86145567]\n", + " [ 0.21716029 -0.44124874 0.8707129 ]\n", + " [ 0.23722049 -0.41389916 0.87887082]\n", + " [ 0.25653909 -0.38641411 0.88592992]\n", + " [ 0.27499526 -0.3589808 0.89191389]\n", + " [ 0.01419171 -0.39075205 0.92038656]\n", + " [ 0.03639589 -0.36344435 0.93090469]\n", + " [ 0.05840519 -0.33582373 0.94011236]\n", + " [ 0.08009217 -0.30806435 0.94798819]\n", + " [ 0.10133486 -0.28034347 0.9545359 ]\n", + " [ 0.12201557 -0.25284229 0.95978278]\n", + " [ 0.27269286 -0.34330829 0.89876472]\n", + " [ 0.24761556 -0.32575052 0.91245445]\n", + " [ 0.22156145 -0.30757929 0.92536777]\n", + " [ 0.19469027 -0.28886851 0.93736369]\n", + " [ 0.16716194 -0.26970331 0.94832326]\n", + " [ 0.139138 -0.25017986 0.9581496 ]\n", + " [ 0.16772816 -0.50405993 0.84722538]\n", + " [ 0.16772816 -0.50405993 0.84722538]\n", + " [ 0.12915902 -0.243223 0.96133268]\n", + " [ 0.12915902 -0.243223 0.96133268]\n", + " [ 0.16595713 -0.48923069 0.85621934]\n", + " [ 0.18723796 -0.46258302 0.86657884]\n", + " [ 0.20803804 -0.4354577 0.8758406 ]\n", + " [ 0.22823545 -0.40802556 0.88398174]\n", + " [ 0.24770985 -0.38046547 0.89100272]\n", + " [ 0.26634093 -0.35296446 0.89692731]\n", + " [ 0.1388888 -0.47268753 0.8702163 ]\n", + " [ 0.16042951 -0.44579978 0.88063893]\n", + " [ 0.18154023 -0.41845676 0.88990847]\n", + " [ 0.20209915 -0.39083066 0.89800185]\n", + " [ 0.22198712 -0.36310064 0.90491969]\n", + " [ 0.24108557 -0.33545306 0.910686 ]\n", + " [ 0.11105472 -0.45520738 0.88343256]\n", + " [ 0.13281606 -0.42813149 0.89390342]\n", + " [ 0.15419874 -0.40062675 0.90317272]\n", + " [ 0.17508037 -0.37286664 0.9112175 ]\n", + " [ 0.19534239 -0.34503047 0.91803885]\n", + " [ 0.21486779 -0.31730364 0.92366132]\n", + " [ 0.08260916 -0.43685867 0.89572888]\n", + " [ 0.10455142 -0.40964815 0.90623253]\n", + " [ 0.1261677 -0.38203921 0.91549318]\n", + " [ 0.14733445 -0.35420625 0.92348822]\n", + " [ 0.16793287 -0.32632848 0.93021948]\n", + " [ 0.18784677 -0.29859009 0.93571232]\n", + " [ 0.05371147 -0.4177227 0.90698557]\n", + " [ 0.0757938 -0.3904327 0.91750619]\n", + " [ 0.09760466 -0.36277845 0.92674976]\n", + " [ 0.11901893 -0.33493473 0.93469418]\n", + " [ 0.13991679 -0.30708017 0.94134216]\n", + " [ 0.16018195 -0.27939766 0.94671996]\n", + " [ 0.02452816 -0.39789523 0.91710291]\n", + " [ 0.04670822 -0.37058212 0.92762451]\n", + " [ 0.06867316 -0.34294221 0.93684291]\n", + " [ 0.09029612 -0.31514993 0.94473654]\n", + " [ 0.11145573 -0.28738296 0.95130892]\n", + " [ 0.1320348 -0.25982291 0.95658709]]\n", + "3233 0.25319001]\n", + " [0.19022707 0.95672856 0.22019109]\n", + " [0.15923551 0.90722258 0.3893472 ]\n", + " [0.15921567 0.92092451 0.35573644]\n", + " [0.1589057 0.93334952 0.32188142]\n", + " [0.1583102 0.94445679 0.28799176]\n", + " [0.15743514 0.95423004 0.25428177]\n", + " [0.15628623 0.96267651 0.22097185]\n", + " [0.12355059 0.91200729 0.39112397]\n", + " [0.1235936 0.92577287 0.3573083 ]\n", + " [0.12341449 0.93823469 0.32324068]\n", + " [0.12301734 0.94935204 0.2891322 ]\n", + " [0.12240764 0.95910935 0.25519723]\n", + " [0.12159087 0.96751476 0.22165481]\n", + " [0.0872905 0.91563764 0.39241314]\n", + " [0.08739803 0.92944512 0.35845969]\n", + " [0.0873535 0.94192981 0.32424928]\n", + " [0.08715976 0.95305118 0.28999419]\n", + " [0.08682093 0.96279423 0.25590897]\n", + " [0.08634147 0.9711679 0.22221173]\n", + " [0.0506637 0.91805914 0.39319283]\n", + " [0.05083695 0.93188635 0.35917049]\n", + " [0.05092979 0.94438001 0.32488852]\n", + " [0.05094337 0.95549973 0.29055988]\n", + " [0.05087982 0.96523088 0.25639926]\n", + " [0.05074197 0.9735829 0.22262433]]\n", + "DEBUG:root:radec2pix: camVec Shape: (3, 96)\n", + " 1.03869565 4.67736497\n", + " 9.00877953 13.37609754 17.75284128 22.13341982 26.51593264 30.89955671\n", + " 44.27670445 41.24704355 38.47976296 36.03536075 33.98358137 32.39910327\n", + " 31.35285463 30.89955671 29.81652098 24.44065782 19.06487182 13.68925392\n", + " 8.31413013 2.94220985 31.78219953 32.5803988 34.21489906 36.57374743\n", + " 39.52747698 42.9535403 2.33383998 7.53796979 12.88401801 18.24767393\n", + " 23.61694389 28.9887086 42.91616052 39.37153369 36.28003925 33.76636764\n", + " 31.96711857 31.00691067 31.71398377 31.71398377 30.88506563 30.88506563\n", + " 29.88906763 30.73646927 32.46394115 34.94119572 38.021962 41.57228381\n", + " 24.52910914 25.55486988 27.6084825 30.48291307 33.97043457 37.9021848\n", + " 19.17813281 20.47376266 22.98590632 26.36914053 30.33338108 34.67995379\n", + " 13.846556 15.59170589 18.76907627 22.78723124 27.27710291 32.04099765\n", + " 8.57065926 11.17275166 15.2972975 20.02465966 25.01538387 30.13892197\n", + " 3.60389222 8.02260672 13.1734259 18.4531524 23.77606504 29.11848994]\n", + "DEBUG:root:radec2pix: lat: [77.97206498 79.57806769 81.21593647 82.8803899 84.56638266 86.26889583\n", + " 87.98262539 89.69667435 77.97206498 77.85336036 77.52222772 76.99897078\n", + " 76.31199967 75.49295235 74.57292056 73.58021644 89.69667435 88.18712874\n", + " 86.48361023 84.78319776 83.0967184 81.4303DEBUG:root:radec2pix: xyfp Shape: (96, 2)\n", + "0.76585227]\n", + " [-0.17759976 -0.76270322 0.62188594]\n", + " [-0.16913235 -0.74672442 0.64327046]\n", + " [-0.16035435 -0.72982623 0.66456012]\n", + " [-0.15129377 -0.71204301 0.685642 ]\n", + " [-0.14198013 -0.6934167 0.70640989]\n", + " [-0.13244506 -0.67399818 0.72676321]\n", + " [-0.12272273 -0.65384801 0.74660693]\n", + " [-0.11284978 -0.63303652 0.76585227]\n", + " [-0.35402783 -0.67553064 0.64677867]\n", + " [-0.34560065 -0.6550765 0.6718891 ]\n", + " [-0.33638783 -0.63349748 0.69679565]\n", + " [-0.32644618 -0.6108747 0.72129398]\n", + " [-0.31583336 -0.58730572 0.74519881]\n", + " [-0.30460968 -0.56290511 0.76834288]\n", + " [-0.34666661 -0.68804108 0.63751215]\n", + " [-0.3170914 -0.70351659 0.63601686]\n", + " [-0.28639558 -0.71841883 0.63391794]\n", + " [-0.25475967 -0.73261755 0.63116482]\n", + " [-0.22236594 -0.74599705 0.62772748]\n", + " [-0.18940056 -0.75845637 0.62359551]\n", + " [-0.28975918 -0.55943749 0.77657537]\n", + " [-0.25851292 -0.57432128 0.77674071]\n", + " [-0.22625244 -0.58882064 0.77595109]\n", + " [-0.19314865 -0.60280889 0.77415441]\n", + " [-0.15938DEBUG:root:radec2pix: curVec Shape: (96, 3)\n", + "4165 79.78948121 78.17954495\n", + " 73.58021644 74.59400834 75.53901524 76.38685312 77.10589211 77.66330027\n", + " 78.02875412 78.17954495 78.66798463 80.65841057 82.69141578 84.75761477\n", + " 86.84771627 88.95113309 77.95267103 77.66228009 77.07171569 76.23019363\n", + " 75.19557036 74.02401451 89.12786485 87.06007007 84.97409331 82.90740441\n", + " 80.87177406 78.87718093 74.03267423 75.23268127 76.30156716 77.18237665\n", + " 77.81504555 78.14660304 77.97746528 77.97746528 78.18485708 78.18485708\n", + " 78.64134167 78.32984157 77.69918411 76.80616019 75.71557851 74.48840848\n", + " 80.62507537 80.23817759 79.46907283 78.40617113 77.13948546 75.74438817\n", + " 82.64779184 82.14857946 81.18831589 79.91227353 78.44384133 76.87031089\n", + " 84.69583972 84.01119948 82.77741875 81.24014725 79.55379065 77.80461009\n", + " 86.74476583 85.70761057 84.09008812 82.26687253 80.3773841 78.48020641\n", + " 88.67187538 86.89501933 84.87693536 82.83944721 80.82012657 78.83603949]\n", + "119 -0.6161716 0.77131719]\n", + " [-0.12514089 -0.62880657 0.7674256 ]\n", + " [-0.1740412 -0.75581887 0.63122697]\n", + " [-0.16345211 -0.73561266 0.65738681]\n", + " [-0.15242404 -0.71405894 0.68329111]\n", + " [-0.14101064 -0.6912317 0.70874166]\n", + " [-0.12927023 -0.66722469 0.73355329]\n", + " [-0.11726672 -0.64215349 0.75755357]\n", + " [-0.35680399 -0.68246875 0.63790854]\n", + " [-0.35680399 -0.68246875 0.63790854]\n", + " [-0.11298 -0.63307539 0.76580093]\n", + " [-0.11298 -0.63307539 0.76580093]\n", + " [-0.34383213 -0.68110506 0.6464328 ]\n", + " [-0.31409677 -0.69659121 0.64506117]\n", + " [-0.28324753 -0.71151112 0.64305735]\n", + " [-0.25146395 -0.72573455 0.64037118]\n", + " [-0.21892765 -0.73914553 0.63697297]\n", + " [-0.18582473 -0.75164267 0.63285264]\n", + " [-0.33525481 -0.66064438 0.6716794 ]\n", + " [-0.30510834 -0.67612764 0.67064172]\n", + " [-0.27386654 -0.69106825 0.66889595]\n", + " [-0.24170599 -0.70533596 0.66639283]\n", + " [-0.20880672 -0.71881411 0.66310333]\n", + " [-0.17535504 -0.73140014 0.65901779]\n", + " [-0.32591364 -0.63904007 0.69671234]\n", + " [-0.29541738 -0.65447072 0.6959861 ]\n", + " [-0.26384357 -0.66938736 0.69448336]\n", + " [-0.23DEBUG:root:radec2pix: curVec Shape: (96, 3)\n", + "]\n", + " [-12.831905 24.202888 ]\n", + " [-18.207905 24.202888 ]\n", + " [-23.583905 24.202888 ]\n", + " [-28.959905 24.202888 ]\n", + " [ -2.079905 18.826888 ]\n", + " [ -7.455905 18.826888 ]\n", + " [-12.831905 18.826888 ]\n", + " [-18.207905 18.826888 ]\n", + " [-23.583905 18.826888 ]\n", + " [-28.959905 18.826888 ]\n", + " [ -2.079905 13.450888 ]\n", + " [ -7.455905 13.450888 ]\n", + " [-12.831905 13.450888 ]\n", + " [-18.207905 13.450888 ]\n", + " [-23.583905 13.450888 ]\n", + " [-28.959905 13.450888 ]\n", + " [ -2.079905 8.074888 ]\n", + " [ -7.455905 8.074888 ]\n", + " [-12.831905 8.074888 ]\n", + " [-18.20790499 8.074888 ]\n", + " [-23.583905 8.074888 ]\n", + " [-28.959905 8.074888 ]\n", + " [ -2.079905 2.698888 ]\n", + " [ -7.455905 2.698888 ]\n", + " [-12.831905 2.698888 ]\n", + " [-18.207905 2.698888 ]\n", + " [-23.583905 2.698888 ]\n", + " [-28.959905 2.698888 ]]\n", + "DEBUG:root:radec2pix: curVec Shape: (96, 3)\n", + "136614 -0.68365996 0.69215516]\n", + " [-0.19816414 -0.6971715 0.68897233]\n", + " [-0.16442463 -0.70981851 0.68492497]\n", + " [-0.31586462 -0.61637299 0.72132786]\n", + " [-0.2850776 -0.63170024 0.7208922 ]\n", + " [-0.25323066 -0.6465469 0.71961889]\n", + " [-0.2204958 -0.66078353 0.71745852]\n", + " [-0.18705169 -0.67429321 0.71438108]\n", + " [-0.15308655 -0.6869721 0.71037585]\n", + " [-0.30516467 -0.59274063 0.74534091]\n", + " [-0.27414421 -0.60791342 0.7451753 ]\n", + " [-0.24208218 -0.62264353 0.74411777]\n", + " [-0.20914953 -0.63680252 0.74211793]\n", + " [-0.1755251 -0.65027418 0.73914439]\n", + " [-0.14139836 -0.66295493 0.73518519]\n", + " [-0.29387366 -0.56825779 0.76858399]\n", + " [-0.26267632 -0.58322568 0.768667 ]\n", + " [-0.23045728 -0.59779318 0.76781037]\n", + " [-0.19738731 -0.61183312 0.76596246]\n", + " [-0.16364581 -0.62523054 0.76309031]\n", + " [-0.12942332 -0.63788279 0.75918058]]\n", + "85 18.67659162 22.72731378 27.24058114 32.02140662\n", + " 8.40167037 11.07692547 15.25159806 20.00817233 25.01690288 30.15239046\n", + " 3.49098634 8.0185534 13.1988698 18.49123795 23.82109044 29.16788596]\n", + "DEBUG:root:radec2pix: curVec Shape: (96, 3)\n", + "DEBUG:root:optics_fp: cphi: [-0.0051738 -0.00607178 -0.0073129 -0.00914033 -0.01209791 -0.01770316\n", + " -0.03238875 -0.17057046 -0.0051738 -0.14196195 -0.27109236 -0.38711253\n", + " -0.48729918 -0.57137557 -0.64065601 -0.69718731 -0.17057046 -0.97567733\n", + " -0.99347832 -0.99703634 -0.99831251 -0.99891078 -0.99923847 -0.99943725\n", + " -0.69718731 -0.74844189 -0.80231456 -0.85678989 -0.9085738 -0.95306497\n", + " -0.98492815 -0.99943725 -0.0060359 -0.00745674 -0.00967884 -0.01364603\n", + " -0.02274227 -0.06503966 -0.06534051 -0.22874689 -0.3749438 -0.49775222\n", + " -0.59656384 -0.67413914 -0.89537598 -0.99040776 -0.99671262 -0.99835535\n", + " -0.9990142 -0.99934296 -0.71895916 -0.78374506 -0.85059233 -0.91398049\n", + " -0.96549457 -0.99546704 -0.00564941 -0.00564941 -0.9994203 -0.9994203\n", + " -0.06950599 -0.24249594 -0.39519134 -0.52103162 -0.62020649 -0.69655704\n", + " -0.08478692 -0.29175445 -0.46477551 -0.59730991 -0.69424327 -0.76406532\n", + " -0.10856248 -0.36427233 -0.55834321 -0.69058088 -0.77756 -0.83512289\n", + " -0.15052868 -0.47847897 -0.68390701 -0.79923279 -0.86476566 -0.90397627\n", + " -0.24345642 -0.66792691 -0.83927119 -0.9096075 -0.9430429 -0.96110205\n", + " -0.57961227 -0.93047808 -0.97475473 -0.98719494 -0.99229449 -0.99486127]\n", + "DEBUG:root:optics_fp: cphi: [0.00780224 0.0090627 0.01080888 0.01338846 0.01758501 0.02561216\n", + " 0.04710747 0.28386977 0.00780224 0.14533491 0.27496322 0.39120201\n", + " 0.49136628 0.57525223 0.64424749 0.70045521 0.28386977 0.98428319\n", + " 0.99578049 0.99808345 0.99891062 0.99929852 0.9995109 0.99963964\n", + " 0.70045521 0.75176312 0.80558693 0.85985876 0.91123211 0.95507721\n", + " 0.98608706 0.99963964 0.00881221 0.01076578 0.01383213 0.0193404\n", + " 0.03213503 0.09472286 0.06831973 0.23248256 0.37902375 0.50180626\n", + " 0.60035228 0.67755053 0.93102393 0.99375313 0.9978592 0.99893119\n", + " 0.99936126 0.99957574 0.72226117 0.78705016 0.85369562 0.91657981\n", + " 0.96723916 0.99609029 0.00828177 0.00828177 0.99962616 0.99962616\n", + " 0.07267344 0.24649478 0.39952529 0.52527664 0.62411014 0.70001939\n", + " 0.08867076 0.29673788 0.46997825 0.60212258 0.69841939 0.76758588\n", + " 0.11364014 0.37079245 0.56463565 0.69588651 0.78180916 0.83848868\n", + " 0.15793745 0.48747001 0.6912696 0.80460719 0.86865107 0.90684836\n", + " 0.25692034 0.68020319 0.84650539 0.91395454 0.94586289 0.96305996\n", + " 0.61832382 0.93964081 0.97815648 0.98893108 0.99334495 0.99556615]\n", + "DEBUG:root:make_az_asym: xyp: shape: (96, 2)\n", + "DEBUG:root:mm_to_pix: fitpx: [[0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]]\n", + "DEBUG:root:mm_to_pix: fitpx.shape: (96, 2)\n", + "DEBUG:root:cartToSphere: vec: [[-0.00156258 0.20900824 0.97791263]\n", + " [-0.00157957 0.18154377 0.9833816 ]\n", + " [-0.00159468 0.15338464 0.98816527]\n", + " [-0.00160787 0.12463517 0.99220134]\n", + " [-0.00161907 0.09540199 0.99543751]\n", + " [-0.00162822 0.06579532 0.99783181]\n", + " [-0.00163527 0.03592916 0.999353 ]\n", + " [-0.00164017 0.00592057 0.99998113]\n", + " [-0.00156258 0.20900824 0.97791263]\n", + " [-0.0305812 0.20886066 0.97746714]\n", + " [-0.05948043 0.2084416 0.97622445]\n", + " [-0.08814769 0.2077524 0.97420169]\n", + " [-0.11647141 0.20679486 0.97142694]\n", + " [-0.14434091 0.20557063 0.96793926]\n", + " [-0.17164574 0.20408052 0.96378882]\n", + " [-0.19827444 0.20232383 0.95903718]\n", + " [-0.00164017 0.00592057 0.99998113]\n", + " [-0.03165868 0.00591961 0.99948121]\n", + " [-0.06155164 0.00591082 0.9980864 ]\n", + " [-0.09120162 0.00589429 0.995815 ]\n", + " [-0.12049415 0.00587015 0.99269668]\n", + " [-0.14931846 0.00583856 0.98877192]\n", + " [-0.17756745 0.00579969 0.98409154]\n", + " [-0.20513658 0.00575368 0.97871644]\n", + " [-0.19827444 0.20232383 0.95903718]\n", + " [-0.2000398 0.17576331 0.96389384]\n", + " [-0.20154417 0.1485108 0.9681552 ]\n", + " [-0.20278831 0.12067777 0.97175809]\n", + " [-0.20377138 0.09237455 0.97465079]\n", + " [-0.20449167 0.06371165 0.9767927 ]\n", + " [-0.20494724 0.03480051 0.97815416]\n", + " [-0.20513658 0.00575368 0.97871644]\n", + " [-0.00166992 0.19712565 0.98037681]\n", + " [-0.00169047 0.16298492 0.98662711]\n", + " [-0.00170796 0.12790428 0.99178505]\n", + " [-0.0017223 0.09207897 0.99575022]\n", + " [-0.00173334 0.05571194 0.99844538]\n", + " [-0.001741 0.01901436 0.99981769]\n", + " [-0.0142227 0.20888472 0.97783684]\n", + " [-0.04972296 0.20852129 0.97675304]\n", + " [-0.08493191 0.20775151 0.9744875 ]\n", + " [-0.1196437 0.20657854 0.97108738]\n", + " [-0.15365451 0.20500532 0.9666246 ]\n", + " [-0.18676067 0.20303275 0.96119621]\n", + " [-0.01473616 0.00602383 0.99987327]\n", + " [-0.05145726 0.00601719 0.99865707]\n", + " [-0.08787283 0.00599868 0.99611364]\n", + " [-0.12377083 0.00596852 0.99229288]\n", + " [-0.15894736 0.005927 0.98726927]\n", + " [-0.19320639 0.00587443 0.98114055]\n", + " [-0.19898619 0.19084173 0.96124083]\n", + " [-0.20097311 0.15780847 0.9668021 ]\n", + " [-0.20256914 0.12384677 0.97140502]\n", + " [-0.20377339 0.08916013 0.97494968]\n", + " [-0.20458276 0.05395206 0.97736128]\n", + " [-0.20499385 0.01842821 0.97858976]\n", + " [-0.00166195 0.20891558 0.97793227]\n", + " [-0.00166195 0.20891558 0.97793227]\n", + " [-0.20504339 0.00585328 0.97873538]\n", + " [-0.20504339 0.00585328 0.97873538]\n", + " [-0.01428012 0.19709662 0.98028006]\n", + " [-0.04992014 0.19675396 0.97918122]\n", + " [-0.08526785 0.1960282 0.976884 ]\n", + " [-0.1201171 0.19492287 0.97343565]\n", + " [-0.15426444 0.19344162 0.96890806]\n", + " [-0.18750721 0.19158618 0.96339804]\n", + " [-0.01442512 0.16296111 0.98652704]\n", + " [-0.05041664 0.16267787 0.98539031]\n", + " [-0.08611259 0.16207774 0.98301344]\n", + " [-0.12130566 0.1611649 0.97944414]\n", + " [-0.1557929 0.15994417 0.97475455]\n", + " [-0.1893742 0.15841917 0.96904116]\n", + " [-0.01454351 0.12788582 0.99168226]\n", + " [-0.0508198 0.12766348 0.99051471]\n", + " [-0.08679712 0.12719172 0.98807314]\n", + " [-0.1222667 0.12647465 0.98440592]\n", + " [-0.15702557 0.12551724 0.97958583]\n", + " [-0.19087549 0.12432386 0.97370947]\n", + " [-0.01463451 0.09206603 0.99564536]\n", + " [-0.05112705 0.09190638 0.99445424]\n", + " [-0.08731762 0.09156653 0.99196331]\n", + " [-0.122996 0.09104984 0.98822159]\n", + " [-0.15795892 0.09036055 0.98330257]\n", + " [-0.19200933 0.08950266 0.97730327]\n", + " [-0.01469728 0.05570466 0.99833911]\n", + " [-0.05133568 0.05560934 0.99713201]\n", + " [-0.08766989 0.05540465 0.99460762]\n", + " [-0.12348855 0.05509277 0.9908155 ]\n", + " [-0.15858803 0.05467653 0.98582976]\n", + " [-0.19277198 0.0541587 0.97974782]\n", + " [-0.01473117 0.01901283 0.99971071]\n", + " [-0.05144352 0.01898296 0.99849547]\n", + " [-0.08785049 0.01891568 0.99595406]\n", + " [-0.12374011 0.01881174 0.99213633]\n", + " [-0.1589085 0.01867213 0.98711673]\n", + " [-0.19315962 0.01849786 0.98099296]]\n", + "DEBUG:root:optics_fp: sphi: [0.99998662 0.99998157 0.99997326 0.99995823 0.99992682 0.99984329\n", + " 0.99947535 0.98534548 0.99998662 0.98987212 0.96255334 0.92203248\n", + " 0.87323508 0.82068871 0.76782803 0.71688902 0.98534548 0.21921165\n", + " 0.11402118 0.07693204 0.0580701 0.04666103 0.03901907 0.03354371\n", + " 0.71688902 0.66320038 0.59690146 0.51566567 0.41772438 0.30276585\n", + " 0.17296396 0.03354371 0.99998178 0.9999722 0.99995316 0.99990689\n", + " 0.99974136 0.99788268 0.99786303 0.97348593 0.92704754 0.86731928\n", + " 0.80256563 0.73860437 0.44531096 0.13817549 0.08101827 0.0573289\n", + " 0.04439174 0.0362443 0.69505232 0.62108267 0.52582572 0.40575813\n", + " 0.26042318 0.09510716 0.99998404 0.99998404 0.03404492 0.03404492\n", + " 0.99758153 0.97015242 0.91859883 0.85353737 0.7844386 0.71750142\n", + " 0.99639911 0.95649325 0.88542855 0.80201052 0.71974043 0.64513889\n", + " 0.99408963 0.93129247 0.82961007 0.72325518 0.62880875 0.55006341\n", + " 0.98860564 0.87809901 0.72956919 0.60102159 0.50217562 0.42758264\n", + " 0.96991184 0.74422687DEBUG:root:radec2pix: camVec: [[0.20582147 0.20765008 0.20920683 0.21049219 0.21150557 0.2122456\n", + " 0.21271065 0.21289938 0.20582147 0.17940403 0.15227891 0.12455745\n", + " 0.09635017 0.06776763 0.03892112 0.00992292 0.21289938 0.18554193\n", + " 0.15747589 0.1288054 0.09963586 0.07007602 0.04023879 0.01024104\n", + " 0.00992292 0.01000636 0.01007758 0.01013637 0.01018243 0.01021541\n", + " 0.01023502 0.01024104 0.20656285 0.20862007 0.2102697 0.2115111\n", + " 0.21234181 0.21275892 0.19440388 0.16153549 0.12771486 0.09314577\n", + " 0.05803185 0.02257838 0.20106508 0.16704611 0.13206625 0.09631893\n", + " 0.06000442 0.02333228 0.01006049 0.01015553 0.01023184 0.01028888\n", + " 0.01032605 0.01034279 0.20573918 0.20573918 0.01034376 0.01034376\n", + " 0.19517916 0.16217419 0.12821715 0.09351091 0.05825864 0.02266572\n", + " 0.19711638 0.16377271 0.12947641 0.09442771 0.05882858 0.02288505\n", + " 0.19867107 0.16505894 0.13049231 0.09516891 0.05928988 0.02306224\n", + " 0.19984199 0.16603002 0.13126104 0.09573072 0.0596397 0.02319607\n", + " 0.20062602 0.16668DEBUG:root:radec2pix: camVec: [[ 0.00152888 0.00154215 0.00155354 0.00156302 0.00157054 0.00157606\n", + " 0.00157952 0.00158089 0.00152888 0.03055413 0.0594604 0.08813528\n", + " 0.11646734 0.14434605 0.17166149 0.1983039 0.00158089 0.03159291\n", + " 0.06147904 0.0911219 0.12040769 0.14922671 0.17747265 0.2050409\n", + " 0.1983039 0.20004855 0.20153434 0.2027606 0.20372608 0.20442907\n", + " 0.20486781 0.2050409 0.00163462 0.00165059 0.00166353 0.00167335\n", + " 0.00167995 0.00168324 0.01419184 0.04970047 0.08491857 0.11964057\n", + " 0.15366298 0.18678351 0.01467408 0.05138704 0.08779394 0.12368372\n", + " 0.15885436 0.19311093 0.19900616 0.20096941 0.20254341 0.2037261\n", + " 0.2045144 0.20490517 0.00162826 0.00162826 0.20494776 0.20494776\n", + " 0.01424722 0.04989441 0.08525013 0.12010852 0.15426631 0.18752167\n", + " 0.01438645 0.05038177 0.08608239 0.1212815 0.15577635 0.18936679\n", + " 0.01449922 0.05077617 0.08675481 0.12222707 0.15699061 0.19084708\n", + " 0.01458139 0.13177743 0.09610838 0.05987462 0.02328514\n", + " 0.20101976 0.1670086 0.13203673 0.09629765 0.05999164 0.02332821]\n", + " [0.20164691 0.17515749 0.1479768 0.12021614 0.09198614 0.06339752\n", + " 0.03456171 0.00559103 0.20164691 0.2034844 0.20505578 0.20636157\n", + " 0.2074012 0.20817322 0.20867589 0.20890768 0.00559103 0.00564441\n", + " 0.00569099 0.00573063 0.00576317 0.00578837 0.00580605 0.00581605\n", + " 0.20890768 0.18144072 0.15328055 0.12453134 0.09529889 0.06569253\n", + " 0.0358258 0.00581605 0.19019593 0.15725033 0.12337711 0.08878017\n", + " 0.0536634 0.01823232 0.20239118 0.20446311 0.20613616 0.2074097\n", + " 0.20828117 0.20874739 0.00571471 0.00577657 0.00582791 0.00586841\n", + " 0.00589767 0.00591534 0.19702358 0.16288078 0.12780019 0.0919758\n", + " 0.05560896 0.01891032 0.20156436 0.20156436 0.00591876 0.00591876\n", + " 0.19097333 0.19292238 0.19449762 0.19569785 0.19651986 0.19695996\n", + " 0.15788822 0.15949023 0.1607887 0.16178086 0.16246211 0.16282774\n", + " 0.12387558 0.1251298 0.12614936 0.12693065 0.1274685 0.12775798\n", + " 0.08913848 0.09004163 0.09077781 0.09134344 0.09173387 0.09194479\n", + " 0.0538804 0.0544282 0.05487585 0.05522072 0.05545959 0.05558951\n", + " 0.018307 0.01849597 0.01865108 0.01877134 0.01885557 0.01890269]\n", + " [0.95758866 0.96239353 0.96661025 0.97017582 0.97303851 0.97515771\n", + " 0.9765038 0.97705813 0.95758866 0.96250106 0.96683156 0.9705155\n", + " 0.97349956 0.97574149 0.97721007 0.97788502 0.97705813 0.98262014\n", + " 0.98750643 0.99165333 0.99500728 0.99752486 0.99917322 0.99993064\n", + " 0.97788502 0.98335097 0.98813132 0.9921639 0.99539662 0.99778762\n", + " 0.99930564 0.99993064 0.9597694 0.96527198 0.96982717 0.97333506\n", + " 0.97572086 0.97693461 0.95981506 0.96545384 0.97015298 0.97380957\n", + " 0.97634587 0.97770893 0.97956122 0.98593216 0.99122376 0.99533322\n", + " 0.99818069 0.99971026 0.98034713 0.98659349 0.99174716 0.99570809\n", + " 0.99839923 0.99976769 0.95762372 0.95762372 0.99992898 0.99992898\n", + " 0.96199495 0.96771922 0.97248704 0.97619571 0.97876753 0.9801495\n", + " 0.96758278 0.97352009 0.97845943 0.98229851 0.98DEBUG:root:optics_fp: sphi: [-0.99996956 -0.99995893 -0.99994158 -0.99991037 -0.99984537 -0.99967195\n", + " -0.99888983 -0.95886284 -0.99996956 -0.98938252 -0.96145475 -0.92030483\n", + " -0.87095303 -0.81797608 -0.76481709 -0.71369637 -0.95886284 -0.17659731\n", + " -0.09176722 -0.06188241 -0.04666441 -0.03744961 -0.03127246 -0.02684394\n", + " -0.71369637 -0.65943324 -0.59247759 -0.51053198 -0.41189324 -0.2963571\n", + " -0.16622968 -0.02684394 -0.99996117 -0.99994205 -0.99990433 -0.99981296\n", + " -0.99948354 -0.99550368 -0.99766348 -0.97260056 -0.92538694 -0.86498004\n", + " -0.79973567 -0.73547623 -0.36495814 -0.11160071 -0.06539891 -0.04622212\n", + " -0.0357361 -0.02912641 -0.69162042 -0.616889 -0.5207723 -0.39985178\n", + " -0.2538669 -0.08834096 -0.99996571 -0.99996571 -0.02734129 -0.02734129\n", + " -0.99735579 -0.96914412 -0.91672217 -0.85093152 -0.78133638 -0.71412384\n", + " -0.99606099 -0.95495897 -0.882678 -0.79840366 -0.71568873 -0.64094611\n", + " -0.99352198 -0.92871576 -0.82534028 -0.71815177 -0.62351779 -0.54491901\n", + " -0.98744912 -0.87313973 -0.72259694 -0.59380744 -0.49542438 -0.42145706\n", + " -0.96643258 -0.73302362 -0.53238015 -0.40581658 -0.32456648 -0.26928704\n", + " -0.78592344 -0.34216247 -0.20786992 -0.14837557 -0.11517726 -0.094064 ]\n", + "DEBUG:root:radec2pix: camVec: [[-0.00156258 -0.00157957 -0.00159468 -0.00160787 -0.00161907 -0.00162822\n", + " -0.00163527 -0.00164017 -0.00156258 -0.0305812 -0.05948043 -0.08814769\n", + " -0.11647141 -0.14434091 -0.17164574 -0.19827444 -0.00164017 -0.03165868\n", + " -0.06155164 -0.09120162 -0.12049415 -0.14931846 -0.17756745 -0.20513658\n", + " -0.19827444 -0.2000398 -0.20154417 -0.20278831 -0.20377138 -0.20449167\n", + " -0.20494724 -0.20513658 -0.00166992 -0.00169047 -0.00170796 -0.0017223\n", + " -0.00173334 -0.001741 -0.0142227 -0.04972296 -0.08493191 -0.1196437\n", + " -0.15365451 -0.18676067 -0.01473616 -0.05145726 -0.08787283 -0.12377083\n", + " -0.15894736 -0.19320639 -0.19898619 -0.20097311 -0.20256914 -0.20377339\n", + " -0.20458276 -0.20499385 -0.00166195 -0.00166195 -0.20504339 -0.20504339\n", + " -0.01428012 -0.04992014 -0.0852678DEBUG:root:radec2pix: lng: [ 90.42834373 90.49850377 90.5956611 90.73910961 90.97227481\n", + " 91.41759428 92.60593903 105.48424091 90.42834373 98.33000716\n", + " 105.9265086 112.99112584 119.3891666 125.0745167 130.06614193\n", + " 134.42085308 105.48424091 169.40901167 174.51469037 176.30215943\n", + " 177.21090794 177.76079422 178.12927502 178.39338736 134.42085308\n", + " 138.69611239 143.61480744 149.24344747 155.61405077 162.69499667\n", + " 170.36296391 178.39338736 90.48535945 90.59424595 90.76505154\n", + " 91.07156688 91.78204394 95.23155859 93.89518731 103.41200836\n", + " 112.23547382 120.07805375 126.85210045 132.60955299 157.76630729\n", + " 173.33036525 176.09473451 177.23920333 177.86448301 178.25846094\n", + " 136.19687489 141.86022321 148.55920823 156.36843482 165.22645267\n", + " 174.86312285 90.45578538 90.45578538 178.36484692 178.36484692\n", + " 94.14397512 104.23659596 113.5079539 121.64257424 128.57141019\n", + " 134.38353176 95.05856666 107.21909912 117.98189812 126.96805941\n", + " 134.24672537 140.08615622 96.48795214 111.70632 0.54371304 0.41546865 0.33267115 0.27619351\n", + " 0.81489239 0.36634758 0.22327834 0.15951848 0.12390179 0.10124753]\n", + "495952 0.98638907\n", + " 0.97220607 0.9783139 0.98339112 0.98733555 0.99006893 0.99153721\n", + " 0.97576509 0.98200129 0.98718283 0.99120735 0.99399598 0.9954939\n", + " 0.97818511 0.98450743 0.98975924 0.99383794 0.99666407 0.99818215\n", + " 0.97941611 0.98578194 0.99106934 0.99517556 0.99802078 0.99954914]]\n", + "5 -0.1201171 -0.15426444 -0.18750721\n", + " -0.01442512 -0.05041664 -0.08611259 -0.12130566 -0.1557929 -0.1893742\n", + " -0.01454351 -0.0508198 -0.08679712 -0.1222667 -0.15702557 -0.19087549\n", + " -0.01463451 -0.05112705 -0.08731762 -0.122996 -0.15795892 -0.19200933\n", + " -0.01469728 -0.05133568 -0.08766989 -0.12348855 -0.15858803 -0.19277198\n", + " -0.01473117 -0.05144352 -0.08785049 -0.12374011 -0.1589085 -0.19315962]\n", + " [ 0.20900824 0.18154377 0.15338464 0.12463517 0.09540199 0.06579532\n", + " 0.03592916 0.00592057 0.20900824 0.20886066 0.2084416 0.2077524\n", + " 0.20679486 0.20557063 0.20408052 0.20232383 0.00592057 0.00591961\n", + " 0.00591082 0.00589429 0.00587015 0.00583856 0.00579969 0.00575368\n", + " 0.20232383 0.17576331 0.1485108 0.12067777 0.09237455 0.06371165\n", + " 0.03480051 0.00575368 0.19712565 0.16298492 0.12790428 0.09207897\n", + " 0.05571194 0.01901436 0.20888472 0.20852129 0.20775151 0.20657854\n", + " 0.20500532 0.20303275 0.00602383 0.00601719 0.00599868 0.00596852\n", + " 0.005927 0.00587443 0.19084173 0.15780847 0.12384677 0.08916013\n", + " 0.05395206 0.01842821 0.20891558 0.20891558 0.00585328 0.00585328\n", + " 0.19709662 0.19675396 0.1960282 0.19492287 0.19344162 0.19158618\n", + " 0.16296111 0.16267787 0.16207774 0.1611649 0.15994417 0.15841917\n", + " 0.12788582 0.12766348 0.12719172 0.12647465 0.12551724 0.12432386\n", + " 0.09206603 0.09190638 0.09156653 0.09104984 0.09036055 0.08950266\n", + " 0.05570466 0.05560934 0.05540465 0.05509277 0.05467653 0.0541587\n", + " 0.01901283 0.01898296 0.01891568 0.01881174 0.01867213 0.01849786]\n", + " [ 0.DEBUG:root:radec2pix: camVec Shape: (3, 96)\n", + "897 124.31008611\n", + " 134.03082213 141.36316306 146.92239982 99.03197846 119.08696476\n", + " 133.63934958 143.48868891 150.22824427 155.00803043 104.7802641\n", + " 132.71160718 147.70838425 155.95659867 160.97729932 164.30745367\n", + " 127.76858297 159.74564279 167.84877649 171.35573132 173.29833797\n", + " 174.52977301]\n", + "97791263 0.9833816 0.98816527 0.99220134 0.99543751 0.99783181\n", + " 0.999353 0.99998113 0.97791263 0.97746714 0.97622445 0.97420169\n", + " 0.97142694 0.96793926 0.96378882 0.95903718 0.99998113 0.99948121\n", + " 0.9980864 0.995815 0.99269668 0.98877192 0.98409154 0.97871644\n", + " 0.95903718 0.96389384 0.9681552 0.97175809 0.97465079 0.9767927\n", + " 0.97815416 0.97871644 0.98037681 0.98662711 0.99178505 0.99575022\n", + " 0.99844538 0.99981769 0.97783684 0.97675304 0.9744875 0.97108738\n", + " 0.9666246 0.96119621 0.99987327 0.99865707 0.99611364 0.99229288\n", + " 0.98726927 0.98114055 0.96124083 0.9668021 0.97140502 0.97494968\n", + " 0.97736128 0.97858976 0.97793227 0.97793227 0.97873538 0.97873538\n", + " 0.98028006 0.97918122 0.976884 0.97343565 0.96890806 0.96339804\n", + " 0.98652704 0.98539031 0.98301344 0.97944414 0.97475455 0.96904116\n", + " 0.99168226 0.99051471 0.98807314 0.98440592 0.97958583 0.97370947\n", + " 0.99564536 0.99445424 0.99196331 0.98822159 0.98330257 0.97730327\n", + " 0.99833911 0.99713201 0.99460762 0.9908155 0.98582976 0.97974782\n", + " 0.99971071 0.99849547 0.99595406 0.99213633 0.98711673 0.98099296]]\n", + "DEBUG:root:radec2pix: xyfp: [[ -0.167405 31.491388 ]\n", + " [ -0.167405 27.10495943]\n", + " [ -0.167405 22.71853086]\n", + " [ -0.167405 18.33210229]\n", + " [ -0.167405 13.94567372]\n", + " [ -0.167405 9.55924515]\n", + " [ -0.167405 5.17281657]\n", + " [ -0.167405 0.786388 ]\n", + " [ -0.167405 31.491388 ]\n", + " [ -4.55383357 31.491388 ]\n", + " [ -8.94026214 31.491388 ]\n", + " [-13.32669071 31.491388 ]\n", + " [-17.71311928 31.491388 ]\n", + " [-22.09954786 31.491388 ]\n", + " [-26.48597643 31.491388 ]\n", + " [-30.872405 31.491388 ]\n", + " [ -0.167405 0.786388 ]\n", + " [ -4.55383357 0.786388 ]\n", + " [ -8.94026214 0.786388 ]\n", + " [-13.32669071 0.786388 ]\n", + " [-17.71311929 0.786388 ]\n", + " [-22.09954786 0.786388 ]\n", + " [-26.48597643 0.786388 ]\n", + " [-30.872405 0.786388 ]\n", + " [-30.872405 31.491388 ]\n", + " [-30.872405 27.10495943]\n", + " [-30.872405 22.71853086]\n", + " [-30.872405 18.33210229]\n", + " [-30.872405 13.94567371]\n", + " [-30.872405 9.55924514]\n", + " [-30.872405 5.17281657]\n", + " [-30.872405 0.786388 ]\n", + " [ -0.182405 29.578888 ]\n", + " [ -0.182405 24.202888 ]\n", + " [ -0.182405 18.826888 ]\n", + " [ -0.182405 13.450888 ]\n", + " [ -0.182405 8.074888 ]\n", + " [ -0.182405 2.698888 ]\n", + " [ -2.079905 31.476388 ]\n", + " [ -7.455905 31.476388 ]\n", + " [-12.831905 31.476388 ]\n", + " [-18.207905 31.476388 ]\n", + " [-23.583905 31.476388 ]\n", + " [-28.959905 31.476388 ]\n", + " [ -2.079905 0.801388 ]\n", + " [ -7.455905 0.801388 ]\n", + " [-12.831905 0.801388 ]\n", + " [-18.207905 0.801388 ]\n", + " [-23.583905 0.801388 ]\n", + " [-28.959905 0.801388 ]\n", + " [-30.857405 29.578888 ]\n", + " [-30.857405 24.202888 ]\n", + " [-30.857405 18.826888 ]\n", + " [-30.857405 13.450888 ]\n", + " [-30.857405 8.074888 ]\n", + " [-30.857405 2.698888 ]\n", + " [ -0.182405 31.476388 ]\n", + " [ -0.182405 31.476388 ]\n", + " [-30.857405 0.801388 ]\n", + " [-30.857405 0.801388 ]\n", + " [ -2.079905 29.578888 ]\n", + " [ -7.455905 29.578888 ]\n", + " [-12.831905 29.578888 ]\n", + " [-18.207905 29.578888 ]\n", + " [-23.583905 29.578888 ]\n", + " [-28.959905 29.578888 ]\n", + " [ -2.079905 24.202888 ]\n", + " [ -7.455905 24.202888 ]\n", + " [-12.831905 24.202888 ]\n", + " [-18.207905 24.202888 ]\n", + " [-23.583905 24.202888 ]\n", + " [-28.959905 24.202888 ]\n", + " [ -2.079905 18.826888 ]\n", + " [ -7.455905 18.826888 ]\n", + " [-12.831905 18.826888 ]\n", + " [-18.207905 18.826888 ]\n", + " [-23.583905 18.826888 ]\n", + " [-28.959905 18.826888 ]\n", + " [ -2.079905 13.450888 ]\n", + " [ -7.455905 13.450888 ]\n", + " [-12.831905 13.450888 ]\n", + " [-18.207905 13.450888 ]\n", + " [-23.583905 13.450888 ]\n", + " [-28.959905 13.450888 ]\n", + " [ -2.079905 8.074888 ]\n", + " [ -7.455905 8.074888 ]\n", + " [-12.831905 8.074888 ]\n", + " [-18.20790499 8.074888 ]\n", + " [-23.583905 8.074888 ]\n", + " [-28.959905 8.074888 ]\n", + " [ -2.079905 2.698888 ]\n", + " [ -7.455905 2.698888 ]\n", + " [-12.831905 2.698888 ]\n", + " [-18.207905 2.698888 ]\n", + " [-23.583905 2.698888 ]\n", + " [-28.959905 2.698888 ]]\n", + "DEBUG:root:optics_fp: rtanth: [31.45867372 27.07232164 22.68599914 18.29972749 13.91355478 9.52761765\n", + " 5.14251895 0.77266756 31.45867372 31.78680319 32.70527593 34.16651578\n", + " 36.10468169 38.44771501 41.12647627 44.07980062 0.77266756 4.62057574\n", + " 8.9768556 13.35288972 17.73406053 22.11731568 26.50162097 30.8865292\n", + " 44.07980062 41.06447698 38.31494783 35.89234872 33.86691125 32.31340541\n", + " 31.3021752 30.8865292 29.54629558 24.17042769 18.79463536 13.41900945\n", + " 8.04388357 2.67227674 31.51224371 32.31623619 33.96261905 36.33706944\n", + " 39.30786805 42.7508727 2.22187045 7.50028847 12.8598094 18.22903784\n", + " 23.60134944 28.97502929 42.72508353 39.20023922 36.1342981 33.65291956\n", + " 31.89283999 30.97725364 31.44375973 31.44375973 30.87190328 30.87190328\n", + " 29.6191671 30.47314683 32.21386423 34.70815714 37.80716925 41.37524227\n", + " 24.25945282 25.29503252 27.36711605 30.26354513 33.77288911 37.72448364\n", + " 18.90898716 20.22047017 22.759345 26.17080258 30.16018539 34.5277484\n", + " 13.57870729 15.35248874 18.5693102 22.62172417 27.13794906 31.92173094\n", + " 8.30755918 10.96964715 15.14772357 19.90921024 24.92192864 30.06045831\n", + " 3.38416012 7.92276206 13.11070286 18.40689143 23.73898749 29.08725072]\n", + "DEBUG:root:radec2pix: camVec Shape: (3, 96)\n", + "DEBUG:root:radec2pix: camVec: [[-0.00108623 -0.00110818 -0.00112898 -0.00114857 -0.00116686 -0.00118378\n", + " -0.00119922 -0.00121312 -0.00108623 -0.03008973 -0.05897582 -0.08763213\n", + " -0.11594722 -0.14381054 -0.17111212 -0.19774215 -0.00121312 -0.0312253\n", + " -0.06111305 -0.09075893 -0.12004913 -0.1488739 -0.17712688 -0.20470344\n", + " -0.19774215 -0.19951656 -0.20103291 -0.2022905 -0.20328809 -0.20402394\n", + " -0.20449622 -0.20470344 -0.00119558 -0.00122271 -0.00124786 -0.00127089\n", + " -0.00129164 -0.00130994 -0.01373956 -0.04922259 -0.08441749 -0.11911871\n", + " -0.1531227 -0.18622706 -0.01430615 -0.05102028 -0.08743049 -0.12332566\n", + " -0.15850368 -0.19276957 -0.19845732 -0.20045757 -0.20206974 -0.20329178\n", + " -0.20412054 -0.20455274 -0.00118556 -0.00118556 -0.20461015 -0.20461015\n", + " -0.01379915 -0.04942232 -0.08475642 -0.11959564 -0.15373662 -0.18697743\n", + " -0.01395111 -0.04992687 -0.08561039 -0.12079486 -0.15527748 -0.18885795\n", + " -0.0140777 -0.05033965 -0.08630574 -0.12176792 -0.15652378 -0.19037482\n", + " -0.01417814 -0.05065827 -0.08683905 -0.12251113 -0.15747231 -0.19152571\n", + " -0.0142515 -0.05087978 -0.08720594 -0.12301955 -0.15811848 -0.19230704\n", + " -0.01429691 -0.0510015 -0.08740238 -0.12328852 -0.15845779 -0.19271515]\n", + " [ 0.20994474 0.18250974 0.15437814 0.12565449 0.09644464 0.0668576\n", + " 0.03700641 0.00700791 0.20994474 0.20980966 0.20940234 0.20872399\n", + " 0.20777622 0.20656061 0.20507835 0.20333011 0.00700791 0.0DEBUG:root:radec2pix: xyfp: [[32.275486 31.41357429]\n", + " [32.27502267 27.02714574]\n", + " [32.27455935 22.64071719]\n", + " [32.27409601 18.25428864]\n", + " [32.27363269 13.8678601 ]\n", + " [32.27316936 9.48143155]\n", + " [32.27270604 5.095003 ]\n", + " [32.27224271 0.70857446]\n", + " [32.275486 31.41357429]\n", + " [27.88905745 31.41403761]\n", + " [23.5026289 31.41450094]\n", + " [19.11620036 31.41496427]\n", + " [14.72977181 31.41542759]\n", + " [10.34334326 31.41589092]\n", + " [ 5.95691471 31.41635424]\n", + " [ 1.57048617 31.41681757]\n", + " [32.27224271 0.70857446]\n", + " [27.88581416 0.70903778]\n", + " [23.49938562 0.70950111]\n", + " [19.11295707 0.70996444]\n", + " [14.72652852 0.71042776]\n", + " [10.34009998 0.71089109]\n", + " [ 5.95367142 0.71135442]\n", + " [ 1.56724288 0.71181774]\n", + " [ 1.57048617 31.41681757]\n", + " [ 1.57002284 27.03038902]\n", + " [ 1.56955951 22.64396047]\n", + " [ 1.56909619 18.25753194]\n", + " [ 1.56863286 13.87110338]\n", + " [ 1.56816953 9.48467484]\n", + " [ 1.56770621 5.09824629]\n", + " [ 1.56724288 0.71181774]\n", + " [32.26028399 29.50107588]\n", + " [32.25971613 24.12507591]\n", + " [32.25914828 18.74907594]\n", + " [32.25858043 13.37307597]\n", + "0701559\n", + " 0.00701392 0.00700302 0.00698305 0.00695418 0.00691659 0.00687038\n", + " 0.20333011 0.17679323 0.14956333 0.12175011 0.09346339 0.06481351\n", + " 0.03591173 0.00687038 0.19807534 0.16396932 0.12892083 0.09312409\n", + " 0.05677987 0.02009792 0.20982687 0.20947825 0.20872203 0.20756102\n", + " 0.20599809 0.20403521 0.00711509 0.00711803 0.00710683 0.00708177\n", + " 0.0070432 0.00699139 0.19185821 0.1588536 0.12491703 0.09025061\n", + " 0.0550575 0.01954302 0.20985223 0.20985223 0.00696998 0.00696998\n", + " 0.19805172 0.19772367 0.19701128 0.19591776 0.19444643 0.19259955\n", + " 0.16395068 0.1636812 0.16309354 0.16219177 0.16098028 0.15946229\n", + " 0.12890725 0.1286975 0.12823673 0.12752928 0.12657997 0.12539259\n", + " 0.09311572 0.09296747 0.092637 0.09212815 0.0914453 0.09059206\n", + " 0.05677687 0.05669199 0.05649545 0.05618991 0.05577844 0.0552636\n", + " 0.02010041 0.0200803 0.02002048 0.0199219 0.01978566 0.01961272]\n", + " [ 0.97771265 0.98320342 0.98801119 0.9920734 0.99533767 0.99776183\n", + " 0.99931431 0.99997471 0.97771265 0.97727914 0.97604944 0.97404051\n", + " 0.97128023 0.96780744 0.96367189 0.95893426 0.99997471 0.99948775\n", + " 0.99810621 0.99584827 0.99274339 0.98883174 0.98416372 0.97879993\n", + " 0.95893426 0.96381393 0.96809947 0.97172808 0.97464791 0.97681802\n", + " 0.97820838 0.97879993 0.98018607 0.98646468 0.9916541 0.9956537\n", + " 0.99838589 0.99979716 0.97764201 0.9765736 0.97432479 0.97094241\n", + " 0.96649792 0.96108746 0.99987235 0.99867225 0.99614527 0.99234098\n", + " 0.98733327 0.98121915 0.96114781 0.96673797 0.971372 0.97494989\n", + " 0.97739627 0.97866043 0.97773239 0.97773239 0.97881873 0.97881873\n", + " 0.98009443 0.97901113 0.97673072 0.97330012 0.96879081 0.96329894\n", + " 0.98636988 0.98524909 0.98288929 0.97933775 0.97466623 0.96897082\n", + " 0.99155673 0.99040541 0.9879811 0.98433168 0.97952939 0.97367044\n", + " 0.99555434 0.9943796 0.99190593 0.98818188 0.98328034 0.97729779\n", + " 0.99828517 0.99709441 0.99458704 0.99081223 0.98584345 0.97977749\n", + " 0.99969574 0.99849668 0.99597189 0.99217088 0.98716749 0.98105872]]\n", + "DEBUG:root:optics_fp: xyfp: [[ -0.24606 31.536148 ]\n", + " [ -0.24606 27.14971943]\n", + " [ -0.24606 22.76329086]\n", + " [ -0.24606 18.37686229]\n", + " [ -0.24606 13.99043371]\n", + " [ -0.24606 9.60400514]\n", + " [ -0.24606 5.21757658]\n", + " [ -0.24606 0.831148 ]\n", + " [ -0.24606 31.536148 ]\n", + " [ -4.63248857 31.536148 ]\n", + " [ -9.01891714 31.536148 ]\n", + " [-13.40534571 31.536148 ]\n", + " [-17.79177429 31.536148 ]\n", + " [-22.17820286 31.536148 ]\n", + " [-26.56463143 31.536148 ]\n", + " [-30.95106 31.536148 ]\n", + " [ -0.24606 0.831148 ]\n", + " [ -4.63248857 0.831148 ]\n", + " [ -9.01891714 0.831148 ]\n", + " [-13.40534571 0.831148 ]\n", + " [-17.79177429 0.831148 ]\n", + " [-22.17820285 0.831148 ]\n", + " [-26.56463143 0.831148 ]\n", + " [-30.95106 0.831148 ]\n", + " [-30.95106 31.536148 ]\n", + " [-30.95106 27.14971943]\n", + " [-30.95106 22.76329086]\n", + " [-30.95106 18.37686228]\n", + " [-30DEBUG:root:optics_fp: xyfp: [[ 0.16415906 -31.72847131]\n", + " [ 0.16601788 -27.34204313]\n", + " [ 0.1678767 -22.95561497]\n", + " [ 0.16973552 -18.56918678]\n", + " [ 0.17159434 -14.1827586 ]\n", + " [ 0.17345315 -9.79633043]\n", + " [ 0.17531197 -5.40990225]\n", + " [ 0.17717079 -1.02347407]\n", + " [ 0.16415906 -31.72847131]\n", + " [ 4.55058724 -31.73033014]\n", + " [ 8.93701541 -31.73218895]\n", + " [ 13.32344359 -31.73404778]\n", + " [ 17.70987177 -31.73590659]\n", + " [ 22.09629995 -31.73776541]\n", + " [ 26.48272812 -31.73962422]\n", + " [ 30.8691563 -31.74148305]\n", + " [ 0.17717079 -1.02347407]\n", + " [ 4.56359897 -1.02533289]\n", + " [ 8.95002714 -1.02719171]\n", + " [ 13.33645532 -1.02905053]\n", + " [ 17.7228835 -1.03090935]\n", + " [ 22.10931168 -1.03276817]\n", + " [ 26.49573986 -1.03462699]\n", + " [ 30.88216803 -1.0364858 ]\n", + " [ 30.8691563 -31.74148305]\n", + " [ 30.87101512 -27.35505487]\n", + " [ 30.87287394 -22.96862669]\n", + " [ 30.87473276 -18.58219851]\n", + " [ 30.87659158 -14.19577034]\n", + " [ 30.8784504 -9.80934216]\n", + " [ 30.88030922 -5.42291398]\n", + " [ 30.88216803 -1.0364858 ]\n", + " [ 0.17996951 -29.81597784]\n", + " [ 0.18224768 -24.43997833]\n", + " [ 0.18452584 -19.06397881]\n", + " [ 0.18680401 -13.6879793 ]\n", + " [ 0.18908217 -8.31197977]\n", + " [ 0.19136034 -2.93598025]\n", + " [ 2.07666524 -31.71428177]\n", + " [ 7.45266476 -31.71655993]\n", + " [ 12.82866428 -31.7188381 ]\n", + " [ 18.2046638 -31.72111627]\n", + " [ 23.58066331 -31.72339443]\n", + " [ 28.95666283 -31.7256726 ]\n", + " [ 2.08966426 -1.03928452]\n", + " [ 7.46566378 -1.04156269]\n", + " [ 12.8416633 -1.04384085]\n", + " [ 18.21766282 -1.04611902]\n", + " [ 23.59366233 -1.04839718]\n", + " [ 28.96966185 -1.05067535]\n", + " [ 30.85496675 -29.82897686]\n", + " [ 30.85724492 -24.45297735]\n", + " [ 30.85952308 -19.07697783]\n", + " [ 30.86180126 -13.70097831]\n", + " [ 30.86407941 -8.32497879]\n", + " [ 30.86635759 -2.94897928]\n", + " [ 0.17916541 -31.71347767]\n", + " [ 0.17916541 -31.71347767]\n", + " [ 30.86716168 -1.05147945]\n", + " [ 30.86716168 -1.05147945]\n", + " [ 2.07746934 -29.81678193]\n", + " [ 7.45346886 -29.8190601 ]\n", + " [ 12.82946837 -29.82133827]\n", + " [ 18.20546789 -29.82361643]\n", + " [ 23.58146741 -29.82589461]\n", + " [ 28.95746693 -29.82817277]\n", + " [ 2.07974751 -24.44078242]\n", + " [ 7.45574702 -24.44306058]\n", + "DEBUG:root:radec2pix: xyfp Shape: (96, 2)\n", + "DEBUG:root:radec2pix: camVec Shape: (3, 96)\n", + "DEBUG:root:radec2pix: lat: [77.93541901 79.53990642 81.17639652 82.83971343 84.5247522 86.22632371\n", + " 87.93883494 89.6479978 77.93541901 77.81390272 77.48107187 76.95718255\n", + " 76.27047293 75.45239232 74.53398915 73.54392335 89.6479978 88.15433501\n", + " 86.45486555 84.75631331 83.07112985 81.40595581 79.76638457 78.15778269\n", + " 73.54392335 74.55657104 75.50172983 76.35064507 77.07169654 77.63217256\n", + " 78.00180643 78.15778269 78.63066146 80.61929653 82.650836 84.71585314\n", + " 86.80474047 88.90593385 77.91466044 77.62156704 77.02994397 76.1887385\n", + " 75.15547704 73.98639339 89.08782254 87.03029774 84.94699254 82.88191704\n", + " 80.84778676 78.85482091 73.9956629 75.19522506 76.26518392 77.14846305\n", + " 77.78520091 78.12246539 77.9408027 77.9408027 78.1630712 78.1630712\n", + " 78.60257643 78.28825427 77.65661779 76.76410296 75.67504453 74.45024854\n", + " 80.58418271 80.19408276 79.42435182 78.36269898 77.09829541 75.70590081\n", + " 82.60493805 [ 12.83174654 -24.44533875]\n", + " [ 18.20774606 -24.44761692]\n", + " [ 23.58374558 -24.44989508]\n", + " [ 28.95974509 -24.45217325]\n", + " [ 2.08202567 -19.0647829 ]\n", + " [ 7.45802519 -19.06706107]\n", + " [ 12.83402471 -19.06933924]\n", + " [ 18.21002422 -19.0716174 ]\n", + " [ 23.58602374 -19.07389557]\n", + " [ 28.96202325 -19.07617373]\n", + " [ 2.08430384 -13.68878339]\n", + " [ 7.46030335 -13.69106155]\n", + " [ 12.83630287 -13.69333972]\n", + " [ 18.21230239 -13.69561789]\n", + " [ 23.58830191 -13.69789605]\n", + " [ 28.96430143 -13.70017422]\n", + " [ 2.086582 -8.31278387]\n", + " [ 7.46258152 -8.31506203]\n", + " [ 12.83858103 -8.3173402 ]\n", + " [ 18.21458055 -8.31961837]\n", + " [ 23.59058007 -8.32189653]\n", + " [ 28.96657959 -8.3241747 ]\n", + " [ 2.08886017 -2.93678435]\n", + " [ 7.46485969 -2.93906252]\n", + " [ 12.8408592 -2.94134068]\n", + " [ 18.21685872 -2.94361885]\n", + " [ 23.59285824 -2.94589701]\n", + " [ 28.96885776 -2.94817518]]\n", + "82.10218621 81.14204779 79.86827274 78.40301429 76.83279998\n", + " 84.65101194 83.96303088 82.73111849 81.1974567 79.51499711 77.7695032\n", + " 86.69730834 85.65959593 84.04717305 82.22861822 80.343 [32.25801258 7.997076 ]\n", + " [32.25744472 2.62107603]\n", + " [30.36298443 31.3987763 ]\n", + " [24.98698446 31.39934415]\n", + " [19.61098448 31.399912 ]\n", + " [14.23498451 31.40047985]\n", + " [ 8.85898454 31.40104771]\n", + " [ 3.48298457 31.40161556]\n", + " [30.35974431 0.72377647]\n", + " [24.98374433 0.72434432]\n", + " [19.60774436 0.72491217]\n", + " [14.23174439 0.72548003]\n", + " [ 8.85574442 0.72604788]\n", + " [ 3.47974445 0.72661573]\n", + " [ 1.58528416 29.504316 ]\n", + " [ 1.5847163 24.12831603]\n", + " [ 1.58414845 18.75231606]\n", + " [ 1.5835806 13.37631609]\n", + " [ 1.58301275 8.00031612]\n", + " [ 1.5824449 2.62431615]\n", + " [32.26048441 31.39857587]\n", + " [32.26048441 31.39857587]\n", + " [ 1.58224447 0.72681616]\n", + " [ 1.58224447 0.72681616]\n", + " [30.36278399 29.50127631]\n", + " [24.98678403 29.50184416]\n", + " [19.61078405 29.50241201]\n", + " [14.23478409 29.50297987]\n", + " [ 8.85878411 29.50354772]\n", + " [ 3.48278414 29.50411557]\n", + " [30.36221615 24.12527634]\n", + " [24.98621618 24.12584419]\n", + " [19.6102162 24.12641204]\n", + " [14.23421623 24.1269799 ]\n", + " [ 8.85821626 24.12754775]\n", + " [ 3.48221629 24.1281156 ]\n", + " [30.36164829 18.74927637]\n", + " 479 0.05107523 0.08726392 0.1229415 0.15790584 0.1919602\n", + " 0.01464229 0.05127607 0.08760541 0.12341989 0.15851749 0.19270261\n", + " 0.01467095 0.05137612 0.08777538 0.12365776 0.15882123 0.1930708 ]\n", + " [-0.20769103 -0.1801941 -0.15200928 -0.12324112 -0.09399571 -0.06438234\n", + " -0.03451442 -0.00450904 -0.20769103 -0.20754198 -0.20712371 -0.20643751\n", + " -0.2054851 -0.20426815 -0.20278791 -0.2010451 -0.00450904 -0.00450572\n", + " -0.00449643 -0.00448126 -0.00446035 -0.00443385 -0.00440189 -0.00436457\n", + " -0.2010451 -0.17444879 -0.14716869 -0.11931453 -0.09099614 -0.06232394\n", + " -0.03340929 -0.00436457 -0.1957935 -0.16161745 -0.12651199 -0.09067166\n", + " -0.05429781 -0.01760077 -0.20756647 -0.20720276 -0.20643606 -0.20526936\n", + " -0.20370571 -0.20174719 -0.00461102 -0.00460274 -0.00458538 -0.00455917\n", + " -0.0045244 -0.0044813 -0.18954613 -0.15647489 -0.12248558 -0.08778034\n", + " -0.05256249 -0.01703747 -0.20759824 -0.20759824 -0.00446412 -0.00446412\n", + " -0.19576354 -0.19542056 -0.19469787 -0.1935988DEBUG:root:optics_fp: xyfp shape: (96, 2)\n", + "04005 78.44927716\n", + " 88.6217931 86.8566554 84.8442257 82.80989579 80.79300228 78.81115773]\n", + "4 -0.19212697 -0.19028463\n", + " -0.16159264 -0.16130879 -0.16071144 -0.15980479 -0.15859338 -0.15708053\n", + " -0.12649245 -0.12626898 -0.12579928 -0.12508774 -0.12413931 -0.12295784\n", + " -0.09065756 -0.09049631 -0.09015775 -0.08964573 -0.08896468 -0.0881182\n", + " -0.05428931 -0.05419219 -0.05398843 -0.05368064 -0.05327188 -0.0527647\n", + " -0.01759801 -0.01756642 -0.01750018 -0.01740019 -0.0172675 -0.01710301]\n", + " [ 0.97819328 0.98362986 0.98837785 0.99237552 0.99557136 0.99792406\n", + " 0.99940295 0.99998858 0.97819328 0.97774883 0.97650613 0.97448229\n", + " 0.97170532 0.9682142 0.96405881 0.95929997 0.99998858 0.99949066\n", + " 0.99809825 0.99582966 0.99271451 0.98879307 0.98411589 0.97874367\n", + " 0.95929997 0.9641308 0.96836217 0.97193219 0.97478992 0.97689533\n", + " 0.9782193 0.97874367 0.98064379 0.9868521 0.99196368 0.99587944\n", + " 0.99852337 0.99984368 DEBUG:root:cartToSphere: vec: [[0.20582147 0.20164691 0.95758866]\n", + " [0.20765008 0.17515749 0.96239353]\n", + " [0.20920683 0.1479768 0.96661025]\n", + " [0.21049219 0.12021614 0.97017582]\n", + " [0.21150557 0.09198614 0.97303851]\n", + " [0.2122456 0.06339752 0.97515771]\n", + " [0.21271065 0.03456171 0.9765038 ]\n", + " [0.21289938 0.00559103 0.97705813]\n", + " [0.20582147 0.20164691 0.95758866]\n", + " [0.17940403 0.2034844 0.96250106]\n", + " [0.15227891 0.20505578 0.96683156]\n", + " [0.12455745 0.20636157 0.9705155 ]\n", + " [0.09635017 0.2074012 0.97349956]\n", + " [0.06776763 0.20817322 0.97574149]\n", + " [0.03892112 0.20867589 0.97721007]\n", + " [0.00992292 0.20890768 0.97788502]\n", + " [0.21289938 0.00559103 0.97705813]\n", + " [0.18554193 0.00564441 0.98262014]\n", + " [0.15747589 0.00569099 0.98750643]\n", + " [0.1288054 0.00573063 0.99165333]\n", + " [0.09963586 0.00576317 0.99500728]\n", + " [0.07007602 0.00578837 0.99752486]\n", + " [0.04023879 0.00580605 0.99917322]\n", + " [0.01024104 0.00581605 0.99993064]\n", + " [0.00992292 0.20890768 0.97788502]\n", + " [0.01000636 0.18144072 0.98335097]\n", + " [0.01007758 0.15328055 0.98813132DEBUG:root:optics_fp: cphi: [-0.0055044 -0.00639203 -0.0076229 -0.00944382 -0.01241274 -0.01811485\n", + " -0.0335395 -0.22307599 -0.0055044 -0.14344285 -0.2735344 -0.39021968\n", + " -0.49076392 -0.57494454 -0.64415274 -0.70050591 -0.22307599 -0.98662859\n", + " -0.99647595 -0.9984093 -0.99909876 -0.99942085 -0.99959678 -0.99970325\n", + " -0.70050591 -0.75194059 -0.80589783 -0.86028974 -0.91173668 -0.955566\n", + " -0.98643233 -0.99970325 -0.00636666 -0.00777693 -0.00999392 -0.01398706\n", + " -0.02331621 -0.07013242 -0.06618572 -0.2308951 -0.37799383 -0.50124187\n", + " -0.60012567 -0.67754548 -0.93833732 -0.9947436 -0.99821572 -0.99911274\n", + " -0.99947098 -0.99964917 -0.72236515 -0.7873159 -0.85411461 -0.91708811\n", + " -0.96769535 -0.99629275 -0.00598404 -0.00598404 -0.999691 -0.999691\n", + " -0.07041425 -0.24485858 -0.398512 -0.52476457 -0.62394545 -0.7000711\n", + " -0.08596532 -0.29497775 -0.46908383 -0.60182876 -0.69847361 -0.76781625\n", + " -0.11028259 -0.36899894 -0.56404664 -0.69594091 -0.78213485 -0.83890011\n", + " -0.1535634 -0.48599238 -0.[24.98564832 18.74984422]\n", + " [19.60964835 18.75041208]\n", + " [14.23364838 18.75097993]\n", + " [ 8.85764841 18.75154778]\n", + " [ 3.48164844 18.75211563]\n", + " [30.36108043 13.3732764 ]\n", + " [24.98508046 13.37384425]\n", + " [19.60908049 13.3744121 ]\n", + " [14.23308053 13.37497996]\n", + " [ 8.85708056 13.37554781]\n", + " [ 3.48108059 13.37611567]\n", + " [30.36051258 7.99727643]\n", + " [24.98451261 7.99784428]\n", + " [19.60851265 7.99841214]\n", + " [14.23251268 7.99897999]\n", + " [ 8.85651271 7.99954784]\n", + " [ 3.48051273 8.00011569]\n", + " [30.35994473 2.62127646]\n", + " [24.98394476 2.62184431]\n", + " [19.60794479 2.62241216]\n", + " [14.23194482 2.62298002]\n", + " [ 8.85594485 2.62354787]\n", + " [ 3.47994488 2.62411572]]\n", + "]\n", + " [0.01013637 0.12453134 0.9921639 ]\n", + " [0.01018243 0.09529889 0.99539662]\n", + " [0.01021541 0.06569253 0.99778762]\n", + " [0.01023502 0.0358258 0.99930564]\n", + " [0.01024104 0.00581605 0.99993064]\n", + " [0.20656285 0.19019593 0.9597694 ]\n", + " [0.20862007 0.15725033 0.96527198]\n", + " [0.2102697 0.12337711 0.96982717]\n", + " [0.2115111 0.08878017 0.97333506]\n", + " [0.21234181 0.0536634 0.97572086]\n", + " [0.21275892 0.01823232 0.97693461]\n", + " [0.19440388 0.20239118 0.95981506]\n", + " [0.16153549 0.20446311 0.96545384]\n", + " [0.12771486 0.20613616 0.97015298]\n", + " [0.09314577 0.2074097 0.97380957]\n", + " [0.05803185 0.20828117 0.97634587]\n", + " [0.02257838 0.20874739 0.97770893]\n", + " [0.20106508 0.00571471 0.97956122]\n", + " [0.16704611 0.00577657 0.98593216]\n", + " [0.13206625 0.00582791 0.99122376]\n", + " [0.09631893 0.00586841 0.99533322]\n", + " [0.06000442 0.00589767 0.99818069]\n", + " [0.02333228 0.00591534 0.99971026]\n", + " [0.01006049 0.19702358 0.98034713]\n", + " [0.01015553 0.16288078 0.98659349]\n", + " [0.01023184 0.12780019 0.99174716]\n", + " [0.01028888 0.0919758 0.99570809]\n", + " [0.01032605 0.05560896 0.99839923]\n", + " [0.01034279 0.01891032 0.99976769]\n", + " [0.20573918 0.20156436 0.95762372]\n", + " [0.20573918 0.20156436 0.95762372]\n", + " [0.01034376 0.00591876 0.99992898]\n", + " [0.01034376 0.00591876 0.99992898]\n", + " [0.19517916 0.19097333 0.96199495]\n", + " [0.16217419 0.19292238 0.96771922]\n", + " [0.12821715 0.19449762 0.97248704]\n", + " [0.09351091 0.19569785 0.97619571]\n", + " [0.05825864 0.19651986 0.97876753]\n", + " [0.022666913123 -0.80511955 -0.86923269 -0.90738164\n", + " -0.25098261 -0.68015432 -0.84745756 -0.91480539 -0.94651795 -0.96355992\n", + " -0.61607996 -0.94170609 -0.97911709 -0.98946165 -0.99367815 -0.99579412]\n", + "572 0.19695996 0.9801495 ]\n", + " [0.19711638 0.15788822 0.96758278]\n", + " [0.16377271 0.15949023 0.97352009]\n", + " [0.12947641 0.1607887 0.97845943]\n", + " [0.09442771 0.16178086 0.98229851]\n", + " [0.05882858 0.16246211 0.98495952]\n", + " [0.02288505 0.16282774 0.98638907]\n", + " [0.19867107 0.12387558 0.97220607]\n", + " [0.16505894 0.1251298 0.9783139 ]\n", + " [0.13049231 0.12614936 0.98339112]\n", + " [0.09516891 0.12693065 0.98733555]\n", + " [0.05928988 0.1274685 0.99006893]\n", + " [0.02306224 0.12775798 0.99153721]\n", + " [0.19984199 0.08913848 0.97576509]\n", + " [0.16603002 0.09004163 0.98200129]\n", + " [0.13126104 0.09077781 0.98718283]\n", + " [0.09573072 0.09134344 0.99120735]\n", + " [0.0596397 0.09173387 0.99399598]\n", + " [0.02319607 0.09194479 0.9954939 ]\n", + " [0.20062602 0.0538804 0.97818511]\n", + " [0.16668139 0.0544282 0.98450743]\n", + " [0.13177743 0.05487585 0.98975924]\n", + " [0.09610838 0.05522072 0DEBUG:root:cartToSphere: vec: [[-0.00156258 0.20900824 0.97791263]\n", + " [-0.00157957 0.18154377 0.9833816 ]\n", + " [-0.00159468 0.15338464 0.98816527]\n", + " [-0.00160787 0.12463517 0.99220134]\n", + " [-0.00161907 0.09540199 0.99543751]\n", + " [-0.00162822 0.06579532 0.99783181]\n", + " [-0.00163527 0.03592916 0.999353 ]\n", + " [-0.00164017 0.00592057 0.99998113]\n", + " [-0.00156258 0.20900824 0.97791263]\n", + " [-0.0305812 0.20886066 0.97746714]\n", + " [-0.05948043 0.2084416 0.97622445]\n", + " [-0.08814769 0.2077524 0.97420169]\n", + " [-0.11647141 0.20679486 0.97142694]\n", + " [-0.14434091 0.20557063 0.96793926]\n", + " [-0.17164574 0.20408052 0.96378882]\n", + " [-0.19827444 0.20232383 0.95903718]\n", + " [-0.00164017 0.00592057 0.99998113]\n", + " [-0.03165868 0.00591961 0.99948121]\n", + " [-0.06155164 0.00591082 0.9980864 ]\n", + " [-0.09120162 0.00589429 0.995815 ]\n", + " [-0.12049415 0.00587015 0.99269668]\n", + " [-0.14931846 0.00583856 0.98877192]\n", + " [-0.17756745 0.00579969 0.98409154]\n", + " [-0.20513658 0.00575368 0.97871644]\n", + " [-0.19827444 0.20232383 0.95903.99383794]\n", + " [0.05987462 0.05545959 0.99666407]\n", + " [0.02328514 0.05558951 0.99818215]\n", + " [0.20101976 0.018307 0.97941611]\n", + " [0.1670086 0.01849597 0.98578194]\n", + " [0.13203673 0.01865108 0.99106934]\n", + " [0.09629765 0.01877134 0.99517556]\n", + " [0.05999164 0.01885557 0.99802078]\n", + " [0.02332821 0.01890269 0.99954914]]\n", + "718]\n", + " [-0.2000398 0.17576331 0.96389384]\n", + " [-0.20154417 0.1485108 0.9681552 ]\n", + " [-0.20278831 0.12067777 0.97175809]\n", + " [-0.20377138 0.09237455 0.97465079]\n", + " [-0.20449167 0.06371165 0.9767927 ]\n", + " [-0.20494724 0.03480051 0.97815416]\n", + " [-0.20513658 0.00575368 0.97871644]\n", + " [-0.00166992 0.19712565 0.98037681]\n", + " [-0.00169047 0.16298492 0.98662711]\n", + " [-0.00170796 0.12790428 0.99178505]\n", + " [-0.0017223 0.09207897 0.99575022]\n", + " [-0.00173334 0.05571194 0.99844538]\n", + " [-0.001741 0.01901436 0.99981769]\n", + " [-0.0142227 0.20888472 0.97783684]\n", + " [-0.04972296 0.20852129 0.97675304]\n", + " [-0.08493191 0.20775151 0.9744875 ]\n", + " [-0.1196437 0.20657854 0.97108738]\n", + " [-0.15365451 0.20500532 0.9666246 ]\n", + " [-0.18676067 0.20303275 0.96119621]\n", + " [-0.01473616 0.00602383 0.99987327]\n", + " [-0.05145726 0.00601719 0.99865707]\n", + " [-0.08787283 0.00599868 0.99611364]\n", + " [-0.12377083 0.00596852 0.99229288]\n", + " [-0.15894736 0.005927 0.98726927]\n", + " [-0.19320639 0.00587443 0.98114055]\n", + " [-0.19898619 0.19084173 0.96124083]\n", + " [-0.20097311 0.15780847 0.9668021 ]\n", + " [-0.20256914 0.12384677 0.97140502]\n", + " [-0.20377339 0.08916013 0.97494968]\n", + " [-0.20458276 0.05395206 0.97736128]\n", + " [-0.20499385 0.01842821 0.97858976]\n", + " [-0.00166195 0.20891558 0.97793227]\n", + " [-0.00166195 0.20891558 0.97793227]\n", + " [-0.20504339 0.00585328 0.97873538]\n", + " [-0.20504339 0.00585328 0.97873538]\n", + " [-0.01428012 0.19709662 0.98028006]\n", + " [-0.04992014 0.19675396 0.97918122]\n", + " [-0.08526785 0.1960282 0.976884 ]\n", + " [-0.1201171 0.19492287 0.97343565]\n", + " [-0.15426444 0.19344162 0.96890806]\n", + " [-0.18750721 0.19158618 0.96339804]\n", + " [-0.01442512 0.16296111 0.98652704]\n", + " [-0.05041664 0.16267787 0.98539031]\n", + " [-0.08611259 0.1DEBUG:root:mm_to_pix: fitpx: [[0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]]\n", + ".95106 13.99043371]\n", + " [-30.95106 9.60400514]\n", + " [-30.95106 5.21757657]\n", + " [-30.95106 0.831146207774 0.98301344]\n", + " [-0.12130566 0.1611649 0.97944414]\n", + " [-0.1557929 0.15994417 0.97475455]\n", + " [-0.1893742 0.15841917 0.96904116]\n", + " [-0.01454351 0.12788582 0.99168226]\n", + " [-0.0508198 0.12766348 0.99051471]\n", + " [-0.08679712 0.12719172 0.98807314]\n", + " [-0.1222667 0.12647465 0.98440592]\n", + " [-0.15702557 0.12551724 0.97958583]\n", + " [-0.19087549 0.12432386 0.97370947]\n", + " [-0.01463451 0.09206603 0.99564536]\n", + " [-0.05112705 0.09190638 0.99445424]\n", + " [-0.08731762 0.09156653 0.99196331]\n", + " [-0.122996 0.09104984 0.98822159]\n", + " [-0.15795892 0.09036055 0.98330257]\n", + " [-0.19200933 0.08950266 0.97730327]\n", + " [-0.01469728 0.05570466 0.99833911]\n", + " [-0.05133568 0.05560934 0.99713201]\n", + " [-0.08766989 0.05540465 0.99460762]\n", + " [-0.12348855 0.05509277 0.9908155 ]\n", + " [-0.15858803 0.05467653 0.98582976]\n", + " [-0.19277198 0.0541587 0.97974782]\n", + " [-0.01473117 0.01901283 0.99971071]\n", + " [-0.05144352 0.01898296 0.99849547]\n", + " [-0.08785049 0.01891568 0.99595406]\n", + " [-0.12374011 0.01881174 0.99213633]\n", + " [-0.1589085 0.01867213 0.98711673]\n", + " [-0.19315962 0.01849786 0.98099296]]\n", + "DEBUG:root:mm_to_pix: fitpx.shape: (96, 2)\n", + "0.97811796 0.97703474 0.97476817 0.97136534\n", + " 0.96689796 0.96146242 0.9998817 0.99866821 0.9961281 0.99231122\n", + " 0.98729166 0.9811667 0.96149301 0.9670196 0.97158296 0.97508476\n", + " 0.9774513 0.97863353 0.97821282 0.97821282 0.97876273 0.97876273\n", + " 0.98054763 0.97944952 0.97715155 0.97370089 0.9691693 0.96365314\n", + " 0.98675268 0.98561714 0.98324039 0.97966996 0.97497788 0.9692605\n", + " 0.9918616 0.99069568 0.9882551 0.98458804 0.979767 0.97388848\n", + " 0.99577532 0.99458621 0.99209707 0.98835673 0.98343837 0.97743873\n", + " 0.99841789 0.9972131 0.99469118 0.99090157 0.985918 0.97983753\n", + " 0.9997375 0.99852487 0.99598656 0.99217236 0.98715635 0.98103576]]\n", + "DEBUG:root:radec2pix: lng: [44.41301872 40.14838159 35.2726464 29.73151826 23.50476184 16.63082675\n", + " 9.22889701 1.50432057 44.41301872 48.59866885 53.40161123 58.8853DEBUG:root:optics_fp: rtanth: [31.57034978 27.18406789 22.79784246 18.41171382 14.02577275 9.64027533\n", + " 5.25633205 0.89702627 31.57034978 31.90657516 32.83068082 34.29517719\n", + " 36.2346004 38.57738799 41.25487818 44.20629586 0.89702627 4.70608217\n", + " 9.05379887 13.42672148 17.80628925 22.18856766 26.57221564 30.95665138\n", + " 44.20629586 41.18838618 38.43502607 36.00695508 33.97398873 32.41056182\n", + " 31.38691822 30.95665138 29.65803336 24.28227528 18.90665475 13.53133577\n", + " 8.15691443 2.78858575 31.62774376 32.44001712 34.0910252 36.46702674\n", + " 39.4372011 42.87825061 2.32483604 7.57927428 12.93401278 18.30122199\n", + " 23.67242106 29.04539658 42.85058957 39.32178756 36.24963004 33.75901556\n", + " 31.98608036 31.05398999 31.55546766 31.55546766 30.94207994 30.94207994\n", + " 29.73492188 30.59748544 32.34268701 34.83813202 37.93605456 41.50175634\n", + " 24.3761262 25.42117355 27.49689714 30.39285101 33.89947174 37.84740055\n", + " 19.02703944 20.34867971 22.88912523 26.29749216 30.28212156 34.64474606\n", + " 13.69903951 15.48238416 18.69618965 22.7418897 27.2514649 32.02957826\n", + " 8.4321936 11.09695565 15.26386952 20.01578758 25.02160156 30.1551337\n", + " 3.51323872 8.02392562 13.19949508 18.48980017 23.81851176 29.16458548]\n", + "DEBUG:root:cartToSphere: vec: [[-0.00108623 0.20994474 0.97771265]\n", + " [-0.00110818 0.18250974 0.98320342]\n", + " [-0.00112898 0.15437814 0.98801119]\n", + " [-0.00114857 0.12565449 0.9920734 ]\n", + " [-0.00116686 0.09644464 0.99533767]\n", + " [-0.00118378 0.0668576 0.99776183]\n", + " [-0.00119922 0.03700641 0.99931431]\n", + " [-0.00121312 0.00700791 0.99997471]\n", + " [-0.00108623 0.20994474 0.97771265]\n", + " [-0.03008973 0.20980966 0.97727914]\n", + " [-0.05897582 0.20940234 0.97604944]\n", + " [-0.08763213 0.20872399 0.97404051]\n", + " [-0.11594722 0.20777622 0.97128023]\n", + " [-0.14381054 0.20656061 0.96780744]\n", + " [-0.17111212 0.20507835 0.96367189]\n", + " [-0.19774215 0.20333011 0.95893426]\n", + " [-0.00121312 0.00700791 0.99997471]\n", + " [-0.0312253 0.00701559 0.99948775]\n", + " [-0.06111305 0.00701392 0.99810621]\n", + " [-0.09075893 0.00700302 0.99584827]\n", + " [-0.12004913 0.00698305 0.99274339]\n", + " [-0.1488739 0.00695418 0.98883174]\n", + " [-0.17712688 0.00691659 0.98416372]\n", + " [-0.20470344 0.00687038 0.97879993]\n", + " [-0.19774215 0.20333011 0.95893426]\n", + " [-0.19951656 0.17679323 0.96381393]\n", + " [-0.20103291 0.14956333 0.96809947]\n", + " [-0.2022905 0.12175011 0.97172808]\n", + " [-0.20328809 0.09346339 0.97464791]\n", + " [-0.20402394 0.06481351 0.97681802]\n", + " [-0.20449622 0.03591173 0.97820838]\n", + " [-0.20470344 0.00687038 0.97879993]\n", + " [-0.00119558 0.19807534 0.98018607]\n", + " [-0.00122271 0.16396932 0.98646468]\n", + " [-0.00124786 0.12892083 0.9916541 ]\n", + " [-0.00127089 0.09312409 0.9956537 ]\n", + " [-0.00129164 0.05677987 0.99838589]\n", + " [-0.00130994 0.02009792 0.99979716]\n", + " [-0.01373956 0.20982687 0.97764201]\n", + " [-0.04922259 0.20947825 0.9765736 ]\n", + " [-0.08441749 0.20872203 0.97432479]\n", + " [-0.11911871 0.20756102 0.97094241]\n", + " [-0.1531227 0.20599809 0.96649792]\n", + " [-0.18622706 0.20403521 0.96108746]\n", + " [-0.01430615 0.00711509 0.99987235]\n", + " [-0.05102028 0.00711803 0.99867225]\n", + " [-0.08743049 0.00710683 0.99614527]\n", + " [-0.12332566 0.00708177 0.99234098]\n", + " [-0.15850368 0.0070432 0.98733327]\n", + " [-0.19276957 0.00699139 0.98121915]\n", + " [-0.19845732 0.19185821 0.96114781]\n", + " [-0.20045757 0.1588536 0.96673797]\n", + " [-0.20206974 0.12491703 0.971372 ]\n", + " [-0.20329178 0.09025061 0.97494989]\n", + " [-0.20412054 0.0550575 0.97739627]\n", + " [-0.20455274 0.01954302 0.97866043]\n", + " [-0.00118556 0.20985223 0.97773239]\n", + " [-0.00118556 0.20985223 0.97773239]\n", + " [-0.20461015 0.00696998 0.97881873]\n", + " [-0.20461015 0.00696998 0.97881873]\n", + " [-0.01379915 0.19805172 0.98009443]\n", + " [-0.04942232 0.19772367 0.97901113]\n", + " [-0.08475642 0.19701128 0.97673072]\n", + " [-0.11959564 0.19591776 0.97330012]\n", + " [-0.15373662 0.19444643 0.96879081]\n", + " [-0.18697743 0.19259955 0.96329894]\n", + " [-0.01395111 0.16395068 0.98636988]\n", + " [-0.04992687 0.1636812 0.98524909]\n", + " [-0.08561039 0.16309354 0.98288929]\n", + " [-0.12079486 0.16219177 0.97933775]\n", + " [-0.15527748 0.16098028 0.97466623]\n", + " [-0.18885795 0.15946229 0.96897082]\n", + " [-0.0140777 0.12890725 0.99155673]\n", + " [-0.05033965 0.1286975 0.99040541]\n", + " [-0.08630574 0.12823673 0.9879811 ]\n", + " [-0.12176792 0.12752928 0.98433168]\n", + " [-0.15652378 0.12657997 0.97952939]\n", + " [-0.19037482 0.12539259 0.97367044]\n", + " [-0.01417814 0.09311572 0.99555434]\n", + " [-0.05065827 0.09296747 0.9943796 ]\n", + " [-0.08683905 0.092637 0.99190593]\n", + " [-0.12251113 0.09212815 0.98818188]\n", + " [-0.15747231 0.0914453 0.98328034]\n", + " [-0.19152571 0.09059206 0.97729779]\n", + " [-0.0142515 0.05677687 0.99828517]\n", + " [-0.05087978 0.05669199 0.99709441]\n", + " [-0.08720594 0.05649545 0.99458704]\n", + " [-0.12301955 0.05618991 0.99081223]\n", + " [-0.15811848 0.05577844 0.98584345]\n", + " [-0.19230704 0.0552636 0.97977749]\n", + " [-0.01429691 0.02010041 0.99969574]\n", + " [-0.0510015 0.0200803 0.99849668]\n", + " [-0.08740238 0.02002048 0.99597189]\n", + " [-0.12328852 0.0199219 0.99217088]\n", + " [-0.15845779 0.01978566 0.98716749]\n", + " [-0.19271515 0.01961272 0.98105872]]\n", + "DEBUG:root:radec2pix: ccdpxDEBUG:root:radec2pix: lng: [ 90.42834373 90.49850377 90.5956611 90.73910961 90.97227481\n", + " 91.41759428 92.60593903 105.48424091 90.42834373 98.33000716\n", + " 105.9265086 112.99112584 119.3891666 125.0745167 130.06614193\n", + " 134.42085308 105.48424091 169.40901167 174.51469037 176.30215943\n", + " 177.21090794 177.76079422 178.12927502 178.39338736 134.42085308\n", + " 138.69611239 143.61480744 149.24344747 155.61405077 162.69499667\n", + " 170.36296391 178.39338736 90.48535945 90.59424595 90.76505154\n", + " 91.07156688 91.78204394 95.23155859 93.89518731 103.41200836\n", + " 112.23547382 120.07805375 126.85210045 132.60955299 157.76630729\n", + " 173.33036525 176.09473451 177.23920333 177.86448301 178.25846094\n", + " 136.19687489 141.86022321 148.55920823 156.36843482 165.22645267\n", + " 174.86312285 90.45578538 90.45578538 178.36484692 178.36484692\n", + " 94.14397512 104.23659596 113.5079539 121.64257424 128.57141019\n", + " 134.38353176 95.05856666 107.21909912 117.98189812 126.96805941\n", + " 134.24672537 140.08615622 96.48795214 111.70632897 124.31008611\n", + " 134.03082213 141.36316306 146.92239982 99.03197846 119.08696476\n", + " 133.63934958 143.48868891 150.22824427 155.00803043 104.7802641\n", + " 132.71160718 147.70838425 155.95659867 160.97729932 164.30745367\n", + " 127.76858297 159.74564279 167.84877649 171.35573132 173.29833797\n", + " 174.52977301]\n", + ": [[-4.45000001e+01 -5.00000082e-01]\n", + " [-4.45000001e+01 2.91928571e+02]\n", + " [-4.45000003e+01 5.84357143e+02]\n", + " [-4.44999997e+01 8.76785714e+02]\n", + " [-4.45000002e+01 1.16921429e+03]\n", + " [-4.44999997e+01 1.46164286e+03]\n", + " [-4.45000001e+01 1.75407143e+03]\n", + " [-4.44999998e+01 2.04650000e+03]\n", + " [-4.45000001e+01 -5.00000082e-01]\n", + " [ 2.47928572e+02 -4.99999837e-01]\n", + " [ 5.40357143e+02 -5.00000111e-01]\n", + " [ 8.32785714e+02 -5.00000236e-01]\n", + " [ 1.12521429e+03 -4.99999746e-01]\n", + " [ 1.41764286e+03 -4.99999876e-01]\n", + " [ 1.71007143e+03 -4.99999788e-01]\n", + " [ 2.00250000e+03 -5.00000040e-01]\n", + " [-4.44999998e+01 2.04650000e+03]\n", + " [ 2.47928572e+02 2.04650000e+03]\n", + " [ 5.40357143e+02 2.04650000e+03]\n", + " [ 8.32785714e+02 2.04650000e+03]\n", + " [ DEBUG:root:radec2pix: xyfp: [[ -0.167405 31.491388 ]\n", + " [ -0.167405 27.10495943]\n", + " [ -0.167405 22.71853086]\n", + " [ -0.167405 18.33210229]\n", + " [ -0.167405 13.94567372]\n", + " [ -0.167405 9.55924515]\n", + " [ -0.167405 5.17281657]\n", + " [ -0.167405 0.786388 ]\n", + " [ -0.167405 31.491388 ]\n", + " [ -4.55383357 31.491388 ]\n", + " [ -8.94026214 31.491388 ]\n", + " [-13.32669071 31.491388 ]\n", + " [-17.71311928 31.491388 ]\n", + " [-22.09954786 31.491388 ]\n", + " [-26.48597643 31.491388 ]\n", + " [-30.872405 31.491388 ]\n", + " [ -0.167405 0.786388 ]\n", + " [ -4.55383357 0.786388 ]\n", + " [ -8.94026214 0.786388 ]\n", + " [-13.32669071 0.786388 ]\n", + " [-17.71311929 0.786388 ]\n", + " [-22.09954786 0.786388 ]\n", + " [-26.48597643 0.786388 ]\n", + " [-30.872405 0.786388 ]\n", + " [-30.872405 31.491388 ]\n", + " [-30.872405 27.10495943]\n", + " [-30.872405 22.71853086]\n", + " [-30.872405 18.33210229]\n", + " [-30.872405 13.94567371]\n", + " [-30.872405 9.55924514]\n", + " [-30.872405 5.17281657]\n", + " [-30.872405 0.786388 ]\n", + " [ -0.182405 29.578888 ]\n", + " [ -0.182405 24.202888 ]\n", + " [ -0.182405 18.826888 ]\n", + " [ -0.182405 13.450888 ]\n", + " [ -0.182405 8.074888 ]\n", + " [ -0.182405 2.698888 ]\n", + " [ -2.079905 31.476388 ]\n", + " [ -7.455905 31.476388 ]\n", + " [-12.831905 31.476388 ]\n", + " [-18.207905 31.476388 ]\n", + " [-23.583905 31.476388 ]\n", + " [-28.959905 31.476388 ]\n", + " [ -2.079905 0.801388 ]\n", + " [ -7.455905 0.801388 ]\n", + " [-12.831905 0.801388 ]\n", + " [-18.207905 0.801388 ]\n", + " [-23.583905 0.801388 ]\n", + " [-28.959905 0.801388 ]\n", + " [-30.857405 29.578888 ]\n", + " [-30.857405 24.202888 ]\n", + " [-30.857405 18.826888 ]\n", + " [-30.857405 13.450888 ]\n", + " [-30.857405 8.074888 ]\n", + " [-30.857405 2.698888 ]\n", + " [ -0.182405 31.476388 ]\n", + " [ -0.182405 31.476388 ]\n", + " [-30.857405 0.801388 ]\n", + " [-30.857405 0.801388 ]\n", + " [ -2.079905 29.578888 ]\n", + " [ -7.455905 29.578888 ]\n", + " [-12.831905 29.578888 ]\n", + " [-18.207905 29.578888 ]\n", + " [-23.583905 29.578888 ]\n", + " [-28.959905 29.578888 ]\n", + " [ -2.079905 24.202888 ]\n", + " [ -7.455905 24.202888 ]\n", + " [-12.831905 24.202888 ]\n", + " [-18.207905 24.202888 ]\n", + " [-23.583905 24.202888 ]\n", + " [-28.959905 24.202888 ]\n", + " [ -2.079905 18.826888 ]\n", + " [ -7.455905 18.826888 ]\n", + " [-12.831905 18.826888 ]\n", + " [-18.207905 18.826888 ]\n", + " [-23.583905 18.826888 ]\n", + " [-28.959905 18.826888 ]\n", + " [ -2.079905 13.450888 ]\n", + " [ -7.455905 13.450888 ]\n", + " [-12.831905 13.450888 ]\n", + " [-18.207905 13.450888 ]\n", + " [-23.583905 13.450888 ]\n", + " [-28.959905 13.450888 ]\n", + " [ -2.079905 8.074888 ]\n", + " [ -7.455905 8.074888 ]\n", + " [-12.831905 8.074888 ]\n", + " [-18.20790499 8.074888 ]\n", + " [-23.583905 8.074888 ]\n", + " [-28.959905 8.074888 ]\n", + " [ -2.079905 2.698888 ]\n", + " [ -7.455905 2.698888 ]\n", + " [-12.831905 2.698888 ]\n", + " [-18.207905 2.698888 ]\n", + " [-23.583905 2.698888 ]\n", + " [-28.959905 2.698888 ]]\n", + "DEBUG:root:optics_fp: cphi: [-0.00747594 -0.00870042 -0.01039606 -0.01289954 -0.01696858 -0.02473916\n", + " -0.04546654 -0.26697332 -0.00747594 -0.14487442 -0.27440415 -0.39058855\n", + " -0.49073902 -0.57464131 -0.6436715 -0.69992333 -0.26697332 -0.98296427\n", + " -0.99542074 -0.99791805 -0.99881542 -0.99923641 -0.99946703 -0.99960689\n", + " -0.69992333 -0.75121935 -0.80504713 -0.85934793 -0.91078494 -0.95473483\n", + " -0.98588803 -0.99960689 -0.00847102 -0.01037136 -0.01335227 -0.01870128\n", + " -0.03109752 -0.0911811 -0.06793149 -0.23195178 -0.37841395 -0.50117932\n", + " -0.59975148 -0.67699869 -0.92564824 -0.99323234 -0.99767802 -0.99883933\n", + " -0.99930549 -0.99953809 -0.72172248 -0.78650646 -0.85317965 -0.91614203\n", + " -0.96694122 -0.99598364 -0.00795487 -0.00795487 -0.9995928 -0.9995928\n", + " -0.07226297 -0.24592654 -0.39887637 -0.52461865 -0.62348955 -0.69945795\n", + " -0.08817399 -0.29602647 -0.46919258 -0.60136972 -0.69774952 -0.76701014\n", + " -0.11299429 -0.36984939 -0.56367146 -0.69504524 -0.7811192 -0.83793215\n", + " -0.1569857 -0.48613658 -0.69011673 -0.80373942 -0.86801033 -0.90636701\n", + " -0.25511271 -0.67830854 -0.84534002 -0.91323709 -0.94538951 -0.96272694\n", + " -0.6124737 -0.93816501 -0.97759544 -0.98864055 -0.99316726 -0.99544587]\n", + "DEBUG:root:radec2pix: lng: [ 90.2964384 90.3478894 90.41900227 90.52370941 90.69317626\n", + " 91.01436915 91.85606354 99.82098825 90.2964384 98.16139155\n", + " 105.72927905 112.77495178 119.16321868 124.84620437 129.84075369\n", + " 134.20177453 99.82098825 167.3372664 173.45282833 175.5877589\n", + " 176.67095531 177.32554882 177.76380439 178.07772632 134.20177453\n", + " 138.45558903 143.3516981 148.95804019 155.308999 162.37619731\n", + " 170.03980495 178.07772632 90.34583364 90.4272438 90.55456533\n", + " 90.78188435 91.3031483 93.7291305 93.74640471 103.2233069\n", + " 112.02083939 119.85139884 126.62419493 132.38733532 153.55676438\n", + " 172.05771641 175.35290167 176.71349424 177.45570466 177.92289984\n", + " 135.96861356 141.60475991 148.27615291 156.06135558 164.90482616\n", + " 174.54251233 90.32368928 90.32368928 178.04899302 178.04899302\n", + " 93.98561362 104.03389942 113.27790792 121.40147615 128.33121468\n", + " 134.15142333 94.8637718 106.96302166 117.69569442 126.6774761\n", + " 133.96694623 139.82391059 96.23245551 1111.12521429e+03 2.04650000e+03]\n", + " [ 1.41764286e+03 2.04650000e+03]\n", + " [ 1.71007143e+03 2.04650000e+03]\n", + " [ 2.00250000e+03 2.04650000e+03]\n", + " [ 2.00250000e+03 -5.00000040e-01]\n", + " [ 2.00250000e+03 2.91928572e+02]\n", + " [ 2.00250000e+03 5.84357143e+02]\n", + " [ 2.00250000e+03 8.76785714e+02]\n", + " [ 2.00250000e+03 1.16921429e+03]\n", + " [ 2.00250000e+03 1.46164286e+03]\n", + " [ 2.00250000e+03 1.75407143e+03]\n", + " [ 2.00250000e+03 2.04650000e+03]\n", + " [-4.35000002e+01 1.27000000e+02]\n", + " [-4.35000000e+01 4.85400000e+02]\n", + " [-4.34999999e+01 8.43800000e+02]\n", + " [-4.35000002e+01 1.20220000e+03]\n", + " [-4.35000002e+01 1.56060000e+03]\n", + " [-4.34999998e+01 1.91900000e+03]\n", + " [ 8.29999997e+01 4.99999723e-01]\n", + " [ 4.41400000e+02 4.99999738e-01]\n", + " [ 7.99800000e+02 4.99999955e-01]\n", + " [ 1.15820000e+03 5.00000275e-01]\n", + " [ 1.51660000e+03 4.99999778e-01]\n", + " [ 1.87500000e+03 5.00000195e-01]\n", + " [ 8.29999999e+01 2.04550000e+03]\n", + " [ 4.41400000e+02 2.04550000e+03]\n", + " [ 7.99800000e+02 2.04550000e+03]\n", + " [ 1.15820000e+03 2.04550000e+03]\n", + " [ 1.51660000e+03 2.04550000e+03]\n", + " [ 1.87500000e+03 2.04550000e+03]\n", + " [ 2.00150000e+03 1.27000000e+02]\n", + " [ 2.00150000e+03 4.85400000e+02]\n", + " [ 2.00150000e+03 8.43800000e+02]\n", + " [ 2.00150000e+03 1.20220000e+03]\n", + " [ 2.00150000e+03 1.56060000e+03]\n", + " [ 2.00150000e+03 1.91900000e+03]\n", + " [-4.34999997e+01 5.00000254e-01]\n", + " [-4.34999997e+01 5.00000254e-01]\n", + " [ 2.00150000e+03 2.04550000e+03]\n", + " [ 2.00150000e+03 2.04550000e+03]\n", + " [ 8.30000000e+01 1.27000000e+02]\n", + " [ 4.41400000e+02 1.27000000e+02]\n", + " [ 7.99800000e+02 1.27000000e+02]\n", + " [ 1.15820000e+03 1.27000000e+02]\n", + " [ 1.51660000e+03 1.27000000e+02]\n", + " [ 1.87500000e+03 1.27000000e+02]\n", + " [ 8.29999998e+01 4.85400000e+02]\n", + " [ 4.41400000e+02 4.85400000e+02]\n", + " [ 7.99800000e+02 4.85400000e+02]\n", + " [ 1.15820000e+03 4.85400000e+02]\n", + " [ 1.51660000e+03 4.85400000e+02]\n", + " [ 1.87500000e+03 4.85400000e+02]\n", + " [ 8.29999999e+01 8.43800000e+02]\n", + " [ 4.41400000e+02 8.43800000e+02]\n", + " [ 7.99800000e+02 8.43800000e+02]\n", + " [ 1.15820000e+03 8.43800000e+02]\n", + " [ 1.51660000e+03 8.43800000e+02]\n", + " [ 1.875DEBUG:root:make_az_asym: xyp: [[ 0.16415906 -31.72847131]\n", + " [ 0.16601788 -27.34204313]\n", + " [ 0.1678767 -22.95561497]\n", + " [ 0.16973552 -18.56918678]\n", + " [ 0.17159434 -14.1827586 ]\n", + " [ 0.17345315 -9.79633043]\n", + " [ 0.17531197 -5.40990225]\n", + " [ 0.17717079 -1.02347407]\n", + " [ 0.16415906 -31.72847131]\n", + " [ 4.55058724 -31.73033014]\n", + " [ 8.93701541 -31.73218895]\n", + " [ 13.32344359 -31.73404778]\n", + " [ 17.70987177 -31.73590659]\n", + " [ 22.09629995 -31.73776541]\n", + " [ 26.48272812 -31.73962422]\n", + " [ 30.8691563 -31.74148305]\n", + " [ 0.17717079 -1.02347407]\n", + " [ 4.56359897 -1.02533289]\n", + " [ 8.95002714 -1.02719171]\n", + " [ 13.33645532 -1.02905053]\n", + " [ 17.7228835 -1.03090935]\n", + " [ 22.10931168 -1.03276817]\n", + " [ 26.49573986 -1.03462699]\n", + " [ 30.88216803 -1.0364858 ]\n", + " [ 30.8691563 -31.74148305]\n", + " [ 30.87101512 -27.35505487]\n", + " [ 30.87287394 -22.96862669]\n", + " [ 30.87473276 -18.58219851]\n", + " [ 30.87659158 -14.19577034]\n", + " [ 30.8784504 -9.80934216]\n", + " [ 30.88030922 -5.42291398]\n", + " [ 30.88216803 -1.0364858 ]\n", + " [ 0.17996951 -29.81597784]\n", + " [ 0.18224768 -24.43997833]\n", + " [ 0.18452584 -19.06397881]\n", + " [ 0.18680401 -13.6879793 ]\n", + " [ 0.18908217 -8.31197977]\n", + " [ 0.19136034 -2.93598025]\n", + " [ 2.07666524 -31.71428177]\n", + " [ 7.45266476 -31.71655993]\n", + " [ 12.82866428 -31.7188381 ]\n", + " [ 18.2046638 -31.72111627]\n", + " [ 23.58066331 -31.72339443]\n", + " [ 28.95666283 -31.7256726 ]\n", + " [ 2.08966426 -1.03928452]\n", + " [ 7.46566378 -1.04156269]\n", + " [ 12.8416633 -1.04384085]\n", + " [ 18.21766282 -1.04611902]\n", + " [ 23.59366233 -1.04839718]\n", + " [ 28.96966185 -1.05067535]\n", + " [ 30.85496675 -29.82897686]\n", + " [ 30.85724492 -24.45297735]\n", + " [ 30.85952308 -19.07697783]\n", + " [ 30.86180126 -13.70097831]\n", + " [ 30.86407941 -8.32497879]\n", + " [ 30.86635759 -2.94897928]\n", + " [ 0.17916541 -31.71347767]\n", + " [ 0.17916541 -31.71347767]\n", + " [ 30.86716168 -1.05147945]\n", + " [ 30.86716168 -1.05147945]\n", + " [ 2.07746934 -29.81678193]\n", + " [ 7.45346886 -29.8190601 ]\n", + " [ 12.82946837 -29.82133827]\n", + " [ 18.20546789 -29.82361643]\n", + " [ 23.58146741 -29.82589461]\n", + " [ 28.95746693 -29.82817277]\n", + " [ 2.07974751 -24.44078242]\n", + " [ 7.45574702 -24.44306058DEBUG:root:radec2pix: ccdpx: [[-4.45000000e+01 -4.99999838e-01]\n", + " [-4.45000000e+01 2.91928571e+02]\n", + " [-4.45000000e+01 5.84357142e+02]\n", + " [-4.45000000e+01 8.76785714e+02]\n", + " [-4.45000000e+01 1.16921429e+03]\n", + " [-4.45000000e+01 1.46164286e+03]\n", + " [-4.45000000e+01 1.75407143e+03]\n", + " [-4.45000001e+01 2.04650000e+03]\n", + " [-4.45000000e+01 -4.99999838e-01]\n", + " [ 2.47928571e+02 -5.00000127e-01]\n", + " [ 5.40357143e+02 -4.99999855e-01]\n", + " [ 8.32785714e+02 -4.99999742e-01]\n", + " [ 1.12521429e+03 -4.99999752e-01]\n", + " [ 1.41764286e+03 -5.00000255e-01]\n", + " [ 1.71007143e+03 -4.99999843e-01]\n", + " [ 2.00250000e+03 -5.00000108e-01]\n", + " [-4.45000001e+01 2.04650000e+03]\n", + " [ 2.47928572e+02 2.04650000e+03]\n", + " [ 5.40357143e+02 2.04650000e+03]\n", + " [ 8.32785714e+02 2.04650000e+03]\n", + " [ 1.12521429e+03 2.04650000e+03]\n", + " [ 1.41764286e+03 2.04650000e+03]\n", + " [ 1.71007143e+03 2.04650000e+03]\n", + " [ 2.00250000e+03 2.04650000e+03]\n", + " [ 2.00250000e+03 -5.00000108e-01]\n", + " [ 2.00250000e+03 2.91928571e+02]\n", + " [ 2.00250000e+03 5.84357143e+02]\n", + " [ 2.00250000e+03 8.76785DEBUG:root:radec2pix: lat: [77.93541901 79.53990642 81.17639652 82.83971343 84.5247522 86.22632371\n", + " 87.93883494 89.6479978 77.93541901 77.81390272 77.48107187 76.95718255\n", + " 76.27047293 75.45239232 74.53398915 73.54392335 89.6479978 88.15433501\n", + " 86.45486555 84.75631331 83.07112985 81.40595581 79.76638457 78.15778269\n", + " 73.54392335 74.55657104 75.50172983 76.35064507 77.07169654 77.63217256\n", + " 78.00180643 78.15778269 78.63066146 80.61929653 82.650836 84.71585314\n", + " 86.80474047 88.90593385 77.91466044 77.62156704 77.02994397 76.1887385\n", + " 75.15547704 73.98639339 89.08782254 87.03029774 84.94699254 82.88191704\n", + " 80.84778676 78.85482091 73.9956629 75.19522506 76.26518392 77.14846305\n", + " 77.78520091 78.12246539 77.9408027 77.9408027 78.1630712 78.1630712\n", + " 78.60257643 78.28825427 77.65661779 76.76410296 75.67504453 74.45024854\n", + " 80.58418271 80.19408276 79.42435182 78.36269898 77.09829541 75.70590081\n", + " 82.60493805 82.10218621 81.14204779 79.86827274 78.40301429 76.83279998\n", + " 84.65101194 83.96303088 8.36280739 123.94129691\n", + " 133.676108 141.03771084 146.62863656 98.65756574 118.5861081\n", + " 133.14971036 143.05690148 149.85595749 154.68575435 104.09063117\n", + " 131.90726386 147.0632386 155.45116677 160.56901612 163.96684771\n", + " 125.42327674 158.50946167 167.09834094 170.82105172 172.88266004\n", + " 174.18898669]\n", + "8 ]\n", + " [ -0.26106 29.623648 ]\n", + " [ -0.26106 24.247648 ]\n", + " [ -0.26106 18.87164801]\n", + " [ -0.26106 13.495648 ]\n", + " [ -0.26106 8.119648 ]\n", + " [ -0.26106 2.743648 ]\n", + " [ -2.15856 31.521148 ]\n", + " [ -7.53456 31.521148 ]\n", + " [-12.91056 31.521148 ]\n", + " [-18.28656 31.521148 ]\n", + " [-23.66256 31.521148 ]\n", + " [-29.03856 31.521148 ]\n", + " [ -2.15856 0.846148 ]\n", + " [ -7.53456 0.846148 ]\n", + " [-12.91056 0.846148 ]\n", + " [-18.28655999 0.846148 ]\n", + " [-23.66256 0.846148 ]\n", + " [-29.03856 0.846148 ]\n", + " [-30.93606 29.623648 ]\n", + " [-30.93606 24.247648 ]\n", + " [-30.93606 18.871648 ]\n", + " [-30.93606 13.495648 ]\n", + " [-30.93606 8.119648 ]\n", + " [-30.93606 2.743648 ]\n", + " [ -0.26106 31.521148 ]\n", + " [ -0.26106 31.521148 ]\n", + " [-30.93606 0.846148 ]\n", + " [-30.93606 0.846148 ]\n", + " [ -2.15856 29.623648 ]\n", + " [ -7.53456 29.623648 ]\n", + " [-12.91056 29.623648 ]\n", + " [-18.28656 29.623648 ]\n", + " [-23.66256 29.623648 ]\n", + " [-29.03856 29.623648 ]\n", + " [ -2.15856 24.247648 ]\n", + " [ -7.53456 24.247648 ]\n", + " [-12.91056 24.247648 ]\n", + " [-18.28656 24.247648 ]\n", + " [-23.66256 24.247648 ]\n", + " [-29.03856 24.247648 ]\n", + " [ -2.15856 18.871648 ]\n", + " [ -7.53456 18.871648 ]\n", + " [-12.91056 18.871648 ]\n", + " [-18.28656 18.871648 ]\n", + " [-23.66256 18.871648 ]\n", + " [-29.03856 18.871648 ]\n", + " [ -2.15856 13.495648 ]\n", + " [ -7.53456 13.495648 ]\n", + " [-12.91056 13.495648 ]\n", + " [-18.28656 13.495648 ]\n", + " [-23.66256 13.495648 ]\n", + " [-29.03856 13.495648 ]\n", + " [ -2.15856 8.119648 ]\n", + " [ -7.53456 8.119648 ]\n", + " [-12.91056 8.119648 ]\n", + " [-18.28656 8.119648 ]\n", + " [-23.66256 8.119648 ]\n", + " [-29.03856 8.119648 ]\n", + " [ -2.15856 DEBUG:root:optics_fp: sphi: [0.99997205 0.99996215 0.99994596 0.9999168 0.99985602 0.99969394\n", + " 0.99896586 0.96370392 0.99997205 0.98945005 0.96161446 0.92056536\n", + " 0.87130661 0.81840538 0.7653019 0.71421799 0.96370392 0.18379675\n", + " 0.09559053 0.0644947 0.04865962 0.03907157 0.03264451 0.02803701\n", + " 0.71421799 0.66005264 0.59321085 0.51139137 0.41288109 0.29745825\n", + " 0.16740606 0.02803701 0.99996412 0.99994622 0.99991085 0.99982512\n", + " 0.99951636 0.99583433 0.99768999 0.97272729 0.92563647 0.86534345\n", + " 0.80018633 0.73598422 0.37838518 0.11614437 0.06810698 0.04816635\n", + " 0.03726317 0.03039091 0.69218254 0.61758205 0.52161719 0.40085381\n", + " 0.25499936 0.08953536 0.99996836 0.99996836 0.02853493 0.02853493\n", + " 0.99738561 0.96928847 0.91700471 0.85133735 0.78183168 0.71467375\n", + " 0.99610509 0.95517974 0.88309587 0.79897088 0.71634182 0.64163497\n", + " 0.99359564 0.92909172 0.82599908 0.71896601 0.62438193 0.54577441\n", + " 0.98760088 0.87388285 0.72369807 0.59498147 0.49654613 0.42249123\n", + " 0.96691132 0.7347772 0.53422865 0.40742853 0.32594274 0.27047521\n", + " 0.79049097 0.3461884 0.21049264 0.15029925 0.11669955 0.09532849]\n", + "]\n", + " [ 12.83174654 -24.44533875]\n", + " [ 18.20774606 -24.44761692]\n", + " [ 23.58374558 -24.44989508]\n", + " [ 28.95974509 -24.45217325]\n", + " [ 2.08202567 -19.0647829 ]\n", + " [ 7.45802519 -19.06706107]\n", + " [ 12.83402471 -19.06933924]\n", + " [ 18.21002422 -19.0716174 ]\n", + " [ 23.58602374 -19.07389557]\n", + " [ 28.96202325 -19.07617373]\n", + " [ 2.08430384 -13.68878339]\n", + " [ 7.46030335 -13.69106155]\n", + " [ 12.83630287 -13.69333972]\n", + " [ 18.21230239 -13.69561789]\n", + " [ 23.58830191 -13.69789605]\n", + " [ 28.96430143 -13.70017422]\n", + " [ 2.086582 -8.31278387]\n", + " [ 7.46258152 -8.31506203]\n", + " [ 12.83858103 -8.3173402 ]\n", + " [ 18.21458055 -8.31961837]\n", + " [ 23.59058007 -8.32189653]\n", + " [ 28.96657959 -8.3241747 ]\n", + " [ 2.08886017 -2.93678435]\n", + " [ 7.46485969 -2.93906252]\n", + " [ 12.8408592 -2.94134068]\n", + " [ 18.21685872 -2.94361885]\n", + " [ 23.59285824 -2.94589701]\n", + " [ 28.96885776 -2.94817518]]\n", + "0587\n", + " 65.08233359 71.96812796 79.43489015 87.28054707 1.50432057 1.74246974\n", + " 2.06714e+02]\n", + " [ 2.00250000e+03 1.16921429e+03]\n", + " [ 2.00250000e+03 1.46164286e+03]\n", + " [ 2.00250000e+03 1.75407143e+03]\n", + " [ 2.00250000e+03 2.04650000e+03]\n", + " [-4.35000000e+01 1.27000000e+02]\n", + " [-4.35000000e+01 4.85400000e+02]\n", + " [-4.35000000e+01 8.43800000e+02]\n", + " [-4.35000000e+01 1.20220000e+03]\n", + " [-4.35000000e+01 1.56060000e+03]\n", + " [-4.35000000e+01 1.91900000e+03]\n", + " [ 8.30000000e+01 5.00000282e-01]\n", + " [ 4.41400000e+02 4.99999845e-01]\n", + " [ 7.99800000e+02 4.99999800e-01]\n", + " [ 1.15820000e+03 4.99999731e-01]\n", + " [ 1.51660000e+03 5.00000238e-01]\n", + " [ 1.87500000e+03 4.99999813e-01]\n", + " [ 8.30000000e+01 2.04550000e+03]\n", + " [ 4.41400000e+02 2.04550000e+03]\n", + " [ 7.99800000e+02 2.04550000e+03]\n", + " [ 1.15820000e+03 2.04550000e+03]\n", + " [ 1.51660000e+03 2.04550000e+03]\n", + " [ 1.87500000e+03 2.04550000e+03]\n", + " [ 2.00150000e+03 1.27000000e+02]\n", + " [ 2.00150000e+03 4.85400000e+02]\n", + " [ 2.00150000e+03 8.43800000e+02]\n", + " [ 2.00150000e+03 1.20220000e+03]\n", + " [ 2.00150000e+03 1.56060000e+03]\n", + " [ 2.00150000e+03 1.91900000e+03]\n", + " [-4.35000000e+01 5.00000147e-01]\n", + " [-4.35000000e+01 5.00000147e-01]\n", + " [ 2.00150000e+03 2.04550000e+03]\n", + " [ 2.00150000e+03 2.04550000e+03]\n", + " [ 8.30000000e+01 1.27000000e+02]\n", + " [ 4.41400000e+02 1.27000000e+02]\n", + " [ 7.99800000e+02 1.27000000e+02]\n", + " [ 1.15820000e+03 1.27000000e+02]\n", + " [ 1.51660000e+03 1.27000000e+02]\n", + " [ 1.87500000e+03 1.27000000e+02]\n", + " [ 8.30000000e+01 4.85400000e+02]\n", + " [ 4.41400000e+02 4.85400000e+02]\n", + " [ 7.99800000e+02 4.85400000e+02]\n", + " [ 1.15820000e+03 4.85400000e+02]\n", + " [ 1.51660000e+03 4.85400000e+02]\n", + " [ 1.87500000e+03 4.85400000e+02]\n", + " [ 8.30000000e+01 8.43800000e+02]\n", + " [ 4.41400000e+02 8.43800000e+02]\n", + " [ 7.99800000e+02 8.43800000e+02]\n", + " [ 1.15820000e+03 8.43800000e+02]\n", + " [ 1.51660000e+03 8.43800000e+02]\n", + " [ 1.87500000e+03 8.43800000e+02]\n", + " [ 8.30000000e+01 1.20220000e+03]\n", + " [ 4.41400000e+02 1.20220000e+03]\n", + " [ 7.99800000e+02 1.20220000e+03]\n", + " [ 1.15820000e+03 1.20220000e+03]\n", + " [ 1.51660000e+03 1.20220000e+03]\n", + " [ 1.87500000e+03 1.20220000e+03]\n", + " [ 8.30000000e+01 1.56060000e+03]\n", + " [ 4.41400000e+02 1.56060000e+03]\n", + " [ 7.99800000e+02 1.56060000e+03]\n", + " [ 1.15820000e+03 1.56060000e+03]\n", + " [ 1.51660000e+03 1.56060000e+03]\n", + " [ 1.87500000e+03 1.56060000e+03]\n", + " [ 8.30000000e+01 1.91900000e+03]\n", + " [ 4.41400000e+02 1.91900000e+03]\n", + " [ 7.99800000e+02 1.91900000e+03]\n", + " [ 1.15820000e+03 1.91900000e+03]\n", + " [ 1.51660000e+03 1.91900000e+03]\n", + " [ 1.87500000e+03 1.91900000e+03]]\n", + "DEBUG:root:optics_fp: sphi: [0.99998485 0.99997957 0.99997095 0.99995541 0.99992296 0.99983591\n", + " 0.99943739 0.97480106 0.99998485 0.9896586 0.96186222 0.92072178\n", + " 0.87129259 0.81819238 0.76489689 0.7136466 0.97480106 0.16298472\n", + " 0.08387896 0.05638146 0.04244609 0.03402888 0.028395 0.02436013\n", + " 0.7136466 0.65923088 0.59205464 0.50980542 0.41077515 0.29477725\n", + " 0.16416841 0.02436013 0.99997973 0.99996976 0.99995006 0.99990218\n", + " 0.99972814 0.99753769 0.99780732 0.97297865 0.92580811 0.86530722\n", + " 0.79990573 0.73548088 0.34572109 0.10239711 0.0597107 0.0421157\n", + " 0.0325231 0.02648658 0.69151182 0.61654981 0.52008483 0.39868458\n", + " 0.25212242 0.08602764 0.9999821 0.9999821 0.02485756 0.02485756\n", + " 0.99751784 0.96955881 0.91716312 0.8512474 0.7814679 0.71407315\n", + " 0.99629813 0.95550412 0.88315364 0.79862516 0.71563581 0.64067012\n", + " 0.99390027 0.92942982 0.82574293 0.71809906 0.6231092 0.5442854\n", + " 0.9881388 0.87396305 0.72255609 0.59311256 0.49440321 0.4203077\n", + " 0.9679916 0.73306896 0.53086315 0.40389491 0.32265115 0.26749257\n", + " 0.78768362 0.33643669 0.20329713 0.14479515 0.11226633 0.09161916]\n", + "DEBUG:root:make_az_asym: xyp: shape: (96, 2)\n", + "2.73111849 81.1974567 79.51499711 77.7695032\n", + " 86.69730834 85.65959593 84.04717305 82.22861822 80.34304005 78.44927716\n", + " 88.6217931 86.8566554 84.8442257 82.80989579 80.79300228 78.81115773]\n", + "969874 2.54744544 3.31042966 4.7219858 8.21053157 29.59292215\n", + " 87.28054707 86.84336495 86.23844627 85.3466032 83.90123984 81.16110163\n", + " 74.05596575 29.59292215 42.63779834 37.00767795 30.40255608 22.76985585\n", + " 14.18292146 4.89797993 46.15318169 51.6896036 58.21907141DEBUG:root:radec2pix: camVec Shape: (3, 96)\n", + " 65.81559375\n", + " 74.43095985 83.82681521 1.62803312 1.98053876 2.52674891 3.48654093\n", + " 5.61341407 14.22621651 87.07688216 86.43225722 85.42259355 83.61713665\n", + " 79.48054112 61.32403216 44.41274552 44.41274552 29.77842334 29.77842334\n", + " 44.37598019 49.94895822 56.60624337 64.45998446 73.48745603 83.43540409\n", + " 38.69437311 44.24100899 51.15696074 59.72888922 70.09435151 81.99961851\n", + " 31.94440422 37.16546071 44.03052128 53.13850244 65.05527755 79.7674455\n", + " 24.03901245 28.4719233 34.66704703 43.65653948 56.97056188 75.84073328\n", + " 15.03271986 18.08395091 22.60822524 29.88026153 42.80777081 67.27233698\n", + " 5.20360826 6.3196744 8.04022063 11.03037054 17.44810995 39.01761856]\n", + " 2.743648 ]\n", + " [ -7.53456 2.743648 ]\n", + " [-12.91056 2.743648 ]\n", + " [-18.28656 2.743648 ]\n", + " [-23.66256 2.743648 ]\n", + " [-29.03856 2.743648 ]]\n", + "DEBUG:root:optics_fp: xyfp: [[ 0.236018 -31.56946754]\n", + " [ 0.23651287 -27.18303899]\n", + " [ 0.23700774 -22.79661046]\n", + " [ 0.23750261 -18.41018192]\n", + " [ 0.23799748 -14.02375336]\n", + " [ 0.23849235 -9.63732482]\n", + " [ 0.23898721 -5.25089628]\n", + " [ 0.23948208 -0.86446773]\n", + " [ 0.236018 -31.56946754]\n", + " [ 4.62244655 -31.56996241]\n", + " [ 9.00887509 -31.57045728]\n", + " [ 13.39530363 -31.57095214]\n", + " [ 17.78173218 -31.57144701]\n", + " [ 22.16816072 -31.57194188]\n", + " [ 26.55458927 -31.57243675]\n", + " [ 30.94101781 -31.57293162]\n", + " [ 0.23948208 -0.86446773]\n", + " [ 4.62591062 -0.8649626 ]\n", + " [ 9.01233917 -0.86545747]\n", + " [ 13.39876771 -0.86595234]\n", + " [ 17.78519626 -0.86644721]\n", + " [ 22.1716248 -0.86694208]\n", + " [ 26.55805334 -0.86743695]\n", + " [ 30.94448189 -0.86793181]\n", + " [ 30.94101781 -31.57293162]\n", + " [ 30.94151268 -27.18650307]\n", + " [ 30.94200754 -22.80007453]\n", + " [ 30.94250242 -18.41364599]\n", + " [ 30.94299728 -14.02721745]\n", + " [ 30.94349215 -9.6407889 ]\n", + " [ 30.94398702 -5.25436036]\n", + " [ 30.94448189 -0.86793181]\n", + " [ 0.25123377 -29.65696924]\n", + " [ 0.25184028 -24.28096928]\n", + " [ 0.25244679 -18.90496931]\n", + " [ 0.2530533 -13.52896935]\n", + " [ 0.25365981 -8.15296938]\n", + " [ 0.25426632 -2.77696942]\n", + " [ 2.14851968 -31.5546833 ]\n", + " [ 7.52451965 -31.55528981]\n", + " [ 12.90051962 -31.55589633]\n", + " [ 18.27651958 -31.55650284]\n", + " [ 23.65251954 -31.55710934]\n", + " [ 29.02851952 -31.55771586]\n", + " [ 2.15198038 -0.8796835 ]\n", + " [ 7.52798035 -0.88029001]\n", + " [ 12.90398031 -0.88089652]\n", + " [ 18.27998027 -0.88150303]\n", + " [ 23.65598025 -0.88210954]\n", + " [ 29.03198021 -0.88271605]\n", + " [ 30.92623357 -29.66042994]\n", + " [ 30.92684009 -24.28442998]\n", + " [ 30.9274466 -18.90843001]\n", + " [ 30.9280531 -13.53243004]\n", + " [ 30.92865961 -8.15643008]\n", + " [ 30.92926612 -2.78043011]\n", + " [ 0.2510197 -31.55446923]\n", + " [ 0.2510197 -31.55446923]\n", + " [ 30.9294802 -0.88293012]\n", + " [ 30.9294802 -0.88293012]\n", + " [ 2.14873376 -29.65718332]\n", + " [ 7.52473372 -29.65778983]\n", + " [ 12.90073369 -29.65839633]\n", + " [ 18.27673365 -29.65900285]\n", + " [ 23.65273362 -29.65960936]\n", + " [ 29.02873359 -29.66021587]\n", + " [ 2.14934027 -24.28118335]\n", + " [ 7.52534023 -24.28178986]\n", + " [ 12.9013402 -24.28239637]\n", + " [ 18.27734016 -24.28300288]\n", + " [ 23.65334013 -24.28360939]\n", + " [ 29.02934009 -24.2842159 ]\n", + " [ 2.100000e+03 8.43800000e+02]\n", + " [ 8.30000002e+01 1.20220000e+03]\n", + " [ 4.41400000e+02 1.20220000e+03]\n", + " [ 7.99800000e+02 1.20220000e+03]\n", + " [ 1.15820000e+03 1.20220000e+03]\n", + " [ 1.51660000e+03 1.20220000e+03]\n", + " [ 1.87500000e+03 1.20220000e+03]\n", + " [ 8.30000002e+01 1.56060000e+03]\n", + " [ 4.41400000e+02 1.56060000e+03]\n", + " [ 7.99800000e+02 1.56060000e+03]\n", + " [ 1.15820000e+03 1.56060000e+03]\n", + " [ 1.51660000e+03 1.56060000e+03]\n", + " [ 1.87500000e+03 1.56060000e+03]\n", + " [ 8.29999999e+01 1.91900000e+03]\n", + " [ 4.41400000e+02 1.91900000e+03]\n", + " [ 7.99800000e+02 1.91900000e+03]\n", + " [ 1.15820000e+03 1.91900000e+03]\n", + " [ 1.51660000e+03 1.91900000e+03]\n", + " [ 1.87500000e+03 1.91900000e+03]]\n", + "4994678 -18.90518338]\n", + " [ 7.52594674 -18.90578989]\n", + " [ 12.90194671 -18.9063964 ]\n", + " [ 18.27794667 -18.90700292]\n", + " [ 23.65394664 -18.90760943]\n", + " [ 29.0299466 -18.90821593]\n", + " [ 2.15055329 -13.52918342]\n", + " [ 7.52655325 -13.52978993]\n", + " [ 12.90255322 -13.53039644]\n", + " [ 18.27855318 -13.53100295]\n", + " [ 23.65455315 -13.53160946]\n", + " [ 29.03055312 -13.53221597]\n", + " DEBUG:root:radec2pix: lat: [73.25344023 74.2369792 75.15226824 75.97162966 76.66508667 77.2021609\n", + " 77.55512574 77.70337791 73.25344023 74.25967575 75.20183236 76.05214643\n", + " 76.78010612 77.3540472 77.74432055 77.92785326 77.70337791 79.30226543\n", + " 80.93361724 82.59207196 84.27220803 85.96793867 87.66996871 89.32519361\n", + " 77.92785326 79.53024676 81.16372478 82.82252521 84.50025464 86.18804733\n", + " 87.86471391 89.32519361 73.6926739 74.85593178 75.88945702 76.73895525\n", + " 77.34864846 77.67018969 73.7019933 74.89586821 75.96623187 76.85800237\n", + " 77.51320661 77.87970489 78.39600189 80.37807975 82.40356131 84.46248138\n", + " 86.54333738 88.62073148 78.62203863 80.60748554 82.6338837 84.6897052\n", + " 86.75764582 88.76495286 73.26041353 73.26041353 89.31716551 89.31716551\n", + " 74.15313309 75.40228414 76.52877477 77.47347648 78.17205407 78.56478282\n", + " 75.37129959 76.78525096 78.08623827 79.20344298 80.05020166 80.53598707\n", + " 76.45984424 78.04591405 79.54291278 80.87169379 81.91843153 82.54064538\n", + " 77.36022478 79.11290918 80.81670049 82.39645142 83.71831262 84.55871556\n", + " 78.01034 79.90138935 81.79317677 83.63609258 85.31869407 86.54472849\n", + " 78.35474014 80.32671962 82.33692434 84.36964547 86.39457329 88.27941972]\n", + "DEBUG:root:radec2pix: fitpx: [[2135.5 4155.49999984]\n", + " [2135.5 3863.07142868]\n", + " [2135.5 3570.64285754]\n", + " [2135.5 3278.21428588]\n", + " [2135.5 2985.78571458]\n", + " [2135.5 2693.35714314]\n", + " [2135.5 2400.92857131]\n", + " [2135.50000005 2108.49999975]\n", + " [2135.5 4155.49999984]\n", + " [1843.07142855 4155.50000013]\n", + " [1550.64285718 4155.49999985]\n", + " [1258.21428582 4155.49999974]\n", + " [ 965.78571443 4155.49999975]\n", + " [ 673.35714268 4155.50000026]\n", + " [ 380.92857156 4155.49999984]\n", + " [ 88.49999989 4155.50000011]\n", + " [2135.50000005 2108.49999975]\n", + " [1843.07142845 2108.50000002]\n", + " [1550.64285702 2108.50000001]\n", + " [1258.21428598 2108.49999998]\n", + " [ 965.78571394 2108.50000002]\n", + " [ 673.35714284 2108.5 ]\n", + " [ 380.92857156 2108.5 ]\n", + " [ 88.49999977 2108.50000001]\n", + " [ 88.49999989 4155.50000011]\n", + " [ 88.49999981 3863.07142874]\n", + " [ 88.49999988 3570.64285723]\n", + " [ 88.49999983 3278.21428582]\n", + " [ 88.5000001 2985.78571424]\n", + " [ 88.50000005 2693.35714284]\n", + " [ 88.49999995 2400.92857144]\n", + " [ 88.49999977 2108.50000001]\n", + " [2134.5 4028.00000026]\n", + " [2134.5 3669.59999996]\n", + " [2134.5 3311.20000006]\n", + " [2134.5 2952.80000018]\n", + " [2134.50000001 2594.39999977]\n", + " [2134.49999998 2236.00000029]\n", + " [2008.00000002 4154.49999972]\n", + " [1649.59999996 4154.50000015]\n", + " [1291.19999992 4154.5000002 ]\n", + " [ 932.79999984 4154.50000027]\n", + " [ 574.40000018 4154.49999976]\n", + " [ 215.99999983 4154.50000019]\n", + " [2007.99999997 2109.50000001]\n", + " [1649.60000009 2109.49999999]\n", + " [1291.20000024 2109.49999998]\n", + " [ 932.80000011 2109.5 ]\n", + " [ 574.40000007 2109.5 ]\n", + " [ 216.00000022 2109.49999999]\n", + " [ 89.50000011 4027.99999989]\n", + " [ 89.49999997 3669.60000003]\n", + " [ 89.49999978 3311.20000014]\n", + " [ 89.49999974 2952.80000012]\n", + " [ 89.49999998 2594.4 ]\n", + " [ 89.50000005 2236. ]\n", + " [2134.5 4154.49999985]\n", + " [2134.5 4154.49999985]\n", + " [ 89.49999982 2109.5 ]\n", + " [ 89.49999982 2109.5 ]\n", + " [2007.99999998 4028.00000026]\n", + " [1649.60000006 4027.99999978]\n", + " [1291.19999989 4028.00000025]\n", + " [ 932.8000001 4027.99999984]\n", + " [ 574.40000016 4027.9999998 ]\n", + " [ 215.99999996 4028.00000004]\n", + " [2007.99999998 3669.60000024]\n", + " [1649.59999998 3669.60000005]\n", + " [1291.20000009 3669.59999982]\n", + " [ 932.79999983 3669.60000022]\n", + " [ 574.39999986 3669.60000015]\n", + " [ 216.00000022 3669.59999982]\n", + " [2007.99999999 3311.20000008]\n", + " [1649.59999996 3311.2000001 ]\n", + " [1291.19999979 3311.20000031]\n", + " [ 932.80000004 3311.19999996]\n", + " [ 574.39999992 3311.20000007]\n", + " [ 216.00000024 3311.19999984]\n", + " [2008.00000001 2952.79999992]\n", + " [1649.6000001 2952.79999982]\n", + " [1291.20000006 2952.79999994]\n", + " [ 932.79999988 2952.80000009]\n", + " [ 574.39999983 2952.8000001 ]\n", + " [ 215.99999999 2952.8 ]\n", + " [2008.00000001 2594.39999996]\n", + " [1649.60000003 2594.39999997]\n", + " [1291.19999974 2594.40000016]\n", + " [ 932.80000041 2594.39999982]\n", + " [ 574.40000002 2594.39999999]\n", + " [ 215.99999998 2594.40000001]\n", + " [2008.00000001 2235.99999999]\n", + " [1649.59999976 2236.00000009]\n", + " [1291.19999986 2236.00000003]\n", + " [ 932.79999992 2236.00000001]\n", + " [ 574.39999976 2236.00000003]\n", + " [ 216.00000019 2235.99999998]]\n", + "DEBUG:root:fitpix2pix: ccdpx: shape: (96, 2)\n", + "DEBUG:root:fitpix2pix: visCut: True\n", + "DEBUG:root:optics_fp: xyfp: [[ 0.173161 -31.45819714]\n", + " [ 0.17304708 -27.07176857]\n", + " [ 0.17293316 -22.68534 ]\n", + " [ 0.17281925 -18.29891143]\n", + " [ 0.17270533 -13.91248287]\n", + " [ 0.17259141 -9.52605429]\n", + " [ 0.17247749 -5.13962573]\n", + " [ 0.17236358 -0.75319715]\n", + " [ 0.173161 -31.45819714]\n", + " [ 4.55958957 -31.45808322]\n", + " [ 8.94601814 -31.45796931]\n", + " [ 13.33244671 -31.45785538]\n", + " [ 17.71887528 -31.45774147]\n", + " [ 22.10530385 -31.45762756]\n", + " [ 26.49173242 -31.45751363]\n", + " [ 30.87816099 -31.45739971]\n", + " [ 0.17236358 -0.75319715]\n", + " [ 4.55879215 -0.75308323]\n", + " [ 8.94522072 -0.75296932]\n", + " [ 13.33164929 -0.7528554 ]\n", + " [ 17.71807786 -0.75274148]\n", + " [ 22.10450643 -0.75262756]\n", + " [ 26.490935 -0.75251364]\n", + " [ 30.87736356 -0.75239973]\n", + " [ 30.87816099 -31.45739971]\n", + " [ 30.87804707 -27.07097114]\n", + " [ 30.87793315 -22.68454257]\n", + " [ 30.87781924 -18.29811401]\n", + " [ 30.87770532 -13.91168544]\n", + " [ 30.87759141 -9.52525687]\n", + " [ 30.87747749 -5.1388283 ]\n", + " [ 30.87736356 -0.75239973]\n", + " [ 0.18811133 -29.54569675]\n", + " [ 0.18797171 -24.16969676]\n", + " [ 0.1878321 -18.79369675]\n", + " [ 0.18769248 -13.41769676]\n", + " [ 0.18755286 -8.04169676]\n", + " [ 0.18741324 -2.66569676]\n", + " [ 2.08566061 -31.44314748]\n", + " [ 7.46166061 -31.44300785]\n", + " [ 12.83766061 -31.44286824]\n", + " [ 18.2136606 -31.44272862]\n", + " [ 23.5896606 -31.442589 ]\n", + " [ 28.9656606 -31.44244938]\n", + " [ 2.08486397 -0.76814748]\n", + " [ 7.46086396 -0.76800786]\n", + " [ 12.83686396 -0.76786825]\n", + " [ 18.21286396 -0.76772863]\n", + " [ 23.58886395 -0.76758901]\n", + " [ 28.96486395 -0.7674494 ]\n", + " [ 30.86311132 -29.54490011]\n", + " [ 30.86297171 -24.16890011]\n", + " [ 30.86283209 -18.79290011]\n", + " [ 30.86269247 -13.41690011]\n", + " [ 30.86255285 -8.04090011]\n", + " [ 30.86241323 -2.66490012]\n", + " [ 0.18816061 -31.44319675]\n", + " [ 0.18816061 -31.44319675]\n", + " [ 30.86236396 -0.76740012]\n", + " [ 30.86236396 -0.76740012]\n", + " [ 2.08561133 -29.54564748]\n", + " [ 7.46161133 -29.54550785]\n", + " [ 12.83761133 -29.54536824]\n", + " [ 18.21361133 -29.54522862]\n", + " [ 23.58961132 -29.545089 ]\n", + " [ 28.96561132 -29.54494938]\n", + " [ 2.08547171 -24.16964747]\n", + " [ 7.46147171 -24.16950786]\n", + " [ 12.83747171 -24.16936824]\n", + " [ 18.21347171 -24.16922862]\n", + " [ 23.58947171 -24.16908901]\n", + " [ 28.9654717 -24.16894939]\n", + " [ 2.0853321 -18.79364747]\n", + " [ 7.46133209 -18.79350785]\n", + " [ 12.83733209 -18.79336824]\n", + " [ 18.21333209 -18.79322862]\n", + " [ 23.58933209 -18.79308901]\n", + " [ 28.96533209 -18.79294939]\n", + " [ 2.08519248 -13.41764748]\n", + " [ 7.46119248 -13.41750786]\n", + " [ 12.83719247 -13.41736824]\n", + " [ 18.21319248 -13.41722863]\n", + " [ 23.58919247 -13.41708901]\n", + " [ 28.96519247 -13.41694939]\n", + " [ 2.08505286 -8.04164748]\n", + " [ 7.46105286 -8.04150786]\n", + " [ 12.83705286 -8.04136825]\n", + " [ 18.21305286 -8.04122863]\n", + " [ 23.58905286 -8.04108901]\n", + " [ 28.96505285 -8.04094939]\n", + " [ 2.08491324 -2.66564748]\n", + " [ 7.46091324 -2.66550786]\n", + " [ 12.83691324 -2.66536825]\n", + " [ 18.21291324 -2.66522863]\n", + " [ 23.58891323 -2.66508901]\n", + " [ 28.96491324 -2.66494939]]\n", + "DEBUG:root:optics_fp: xyfp shape: (96, 2)\n", + "DEBUG:root:radec2pix: xyfp: [[ 0.16415906 -31.72847131]\n", + " [ 0.16601788 -27.34204313]\n", + " [ 0.1678767 -22.95561497]\n", + " [ 0.16973552 -18.56918678]\n", + " [ 0.17159434 -14.1827586 ]\n", + " [ 0.17345315 -9.79633043]\n", + " [ 0.17531197 -5.40990225]\n", + " [ 0.17717079 -1.02347407]\n", + " [ 0.16415906 -31.72847131]\n", + " [ 4.55058724 -31.73033014]\n", + " [ 8.93701541 -31.73218895]\n", + " [ 13.32344359 -31.73404778]\n", + " [ 17.70987177 -31.73590659]\n", + " [ 22.09629995 -31.73776541]\n", + " [ 26.48272812 -31.73962422]\n", + " [ 30.8691563 -31.74148305]\n", + " [ 0.17717079 -1.02347407]\n", + " [ 4.56359897 -1.02533289]\n", + " [ 8.95002714 -1.02719171]\n", + " [ 13.33645532 -1.02905053]\n", + " [ 17.7228835 -1.03090935]\n", + " [ 22.10931168 -1.03276817]\n", + " [ 26.49573986 -1.03462699]\n", + " [ 30.88216803 -1.0364858 ]\n", + " [ 30.8691563 -31.74148305]\n", + " [ 30.87101512 -27.35505487]\n", + " [ 30.87287394 -22.96862669]\n", + " [ 30.87473276 -18.58219851]\n", + " [ 30.87659158 -14.19577034]\n", + " [ 30.8784504 -9.80934216]\n", + " [ 30.88030922 -5.42291398]\n", + " [ 30.88216803 -1.0364858 ]\n", + " [ 0.17996951 -29.81597784]\n", + " [ 0.18224768 -24.43997833]\n", + " [ 0.18452584 -19.06397881]\n", + " [ 0.18680401 -13.6879793 ]\n", + " [ 0.18908217 -8.31197977]\n", + " [ 0.19136034 -2.93598025]\n", + " [ 2.07666524 -31.71428177]\n", + " [ 7.45266476 -31.71655993]\n", + " [ 12.82866428 -31.7188381 ]\n", + " [ 18.2046638 -31.72111627]\n", + " [ 23.58066331 -31.72339443]\n", + " [ 28.95666283 -31.7256726 ]\n", + " [ 2.08966426 -1.03928452]\n", + " [ 7.46566378 -1.04156269]\n", + " [ 12.8416633 -1.04384085]\n", + " [ 18.21766282 -1.04611902]\n", + " [ 23.59366233 -1.04839718]\n", + " [ 28.96966185 -1.05067535]\n", + " [ 30.85496675 -29.82897686]\n", + " [ 30.85724492 -24.45297735]\n", + " [ 30.85952308 -19.07697783]\n", + " [ 30.86180126 -13.70097831]\n", + " [ 30.86407941 -8.32497879]\n", + " [ 30.86635759 -2.94897928]\n", + " [ 0.17916541 -31.71347767]\n", + " [ 0.17916541 -31.71347767]\n", + " [ 30.86716168 -1.05147945]\n", + " [ 30.86716168 -1.05147945]\n", + " [ 2.07746934 -29.81678193]\n", + " [ 7.45346886 -29.8190601 ]\n", + " [ 12.82946837 -29.82133827]\n", + " [ 18.20546789 -29.82361643]\n", + " [ 23.58146741 -29.82589461]\n", + " [ 28.95746693 -29.82817277]\n", + " [ 2.07974751 -24.44078242]\n", + " [ 7.45574702 -24.44306058]\n", + " [ 12.83174654 -24.44533875]\n", + " [ 18.20774606 -24.44761692]\n", + " [ 23.58374558 -24.44989508]\n", + " [ 28.95974509 -24.45217325]\n", + " [ 2.08202567 -19.0647829 ]\n", + " [ 7.45802519 -19.06706107]\n", + " [ 12.83402471 -19.06933924]\n", + " [ 18.21002422 -19.0716174 ]\n", + " [ 23.58602374 -19.07389557]\n", + " [ 28.96202325 -19.07617373]\n", + " [ 2.08430384 -13.68878339]\n", + " [ 7.46030335 -13.69106155]\n", + " [ 12.83630287 -13.69333972]\n", + " [ 18.21230239 -13.69561789]\n", + " [ 23.58830191 -13.69789605]\n", + " [ 28.96430143 -13.70017422]\n", + " [ 2.086582 -8.31278387]\n", + " [ 7.46258152 -8.31506203]\n", + " [ 12.83858103 -8.3173402 ]\n", + " [ 18.21458055 -8.31961837]\n", + " [ 23.59058007 -8.32189653]\n", + " [ 28.96657959 -8.3241747 ]\n", + " [ 2.08886017 -2.93678435]\n", + " [ 7.46485969 -2.93906252]\n", + " [ 12.8408592 -2.94134068]\n", + " [ 18.21685872 -2.94361885]\n", + " [ 23.59285824 -2.94589701]\n", + " [ 28.96885776 -2.94817518]]\n", + "DEBUG:root:radec2pix: fitpx: [[4271.50000008 4155.50000008]\n", + " [4271.50000011 3863.07142867]\n", + " [4271.50000027 3570.64285733]\n", + " [4271.49999971 3278.21428555]\n", + " [4271.50000017 2985.78571436]\n", + " [4271.4999997 2693.35714277]\n", + " [4271.5000001 2400.92857145]\n", + " [4271.49999983 2108.5 ]\n", + " [4271.50000008 4155.50000008]\n", + " [3979.07142843 4155.49999984]\n", + " [3686.64285723 4155.50000011]\n", + " [3394.21428586 4155.50000024]\n", + " [3101.78571417 4155.49999975]\n", + " [2809.35714282 4155.49999988]\n", + " [2516.92857139 4155.49999979]\n", + " [2224.5 4155.50000004]\n", + " [4271.49999983 2108.5 ]\n", + " [3979.07142844 2108.5 ]\n", + " [3686.64285726 2108.5 ]\n", + " [3394.21428608 2108.50000001]\n", + " [3101.7857142 2108.5 ]\n", + " [2809.35714302 2108.50000001]\n", + " [2516.92857112 2108.49999996]\n", + " [2224.50000006 2108.50000003]\n", + " [2224.5 4155.50000004]\n", + " [2224.49999999 3863.07142838]\n", + " [2224.49999998 3570.64285685]\n", + " [2224.50000004 3278.21428613]\n", + " [2224.49999996 2985.78571394]\n", + " [2224.50000004 2693.35714312]\n", + " [2224.49999998 2400.92857136]\n", + " [2224.50000006 2108.50000003]\n", + " [4270.50000017 4028.00000015]\n", + " [4270.49999995 3669.59999996]\n", + " [4270.49999992 3311.19999995]\n", + " [4270.50000022 2952.80000009]\n", + " [4270.50000024 2594.40000006]\n", + " [4270.49999979 2235.99999998]\n", + " [4144.00000027 4154.50000028]\n", + " [3785.60000021 4154.50000026]\n", + " [3427.20000003 4154.50000005]\n", + " [3068.79999988 4154.49999973]\n", + " [2710.40000006 4154.50000022]\n", + " [2351.99999998 4154.4999998 ]\n", + " [4144.00000013 2109.5 ]\n", + " [3785.6 2109.5 ]\n", + " [3427.19999974 2109.49999999]\n", + " [3068.8 2109.5 ]\n", + " [2710.39999984 2109.49999999]\n", + " [2351.99999972 2109.49999994]\n", + " [2225.5 4027.99999997]\n", + " [2225.50000002 3669.60000025]\n", + " [2225.50000002 3311.20000025]\n", + " [2225.50000004 2952.80000031]\n", + " [2225.50000002 2594.40000011]\n", + " [2225.50000016 2236.00000026]\n", + " [4270.49999974 4154.49999975]\n", + " [4270.49999974 4154.49999975]\n", + " [2225.50000003 2109.50000001]\n", + " [2225.50000003 2109.50000001]\n", + " [4143.99999996 4027.99999996]\n", + " [3785.60000018 4028.00000021]\n", + " [3427.19999989 4027.99999984]\n", + " [3068.80000004 4028.00000009]\n", + " [2710.39999997 4027.9999999 ]\n", + " [2351.DEBUG:root:optics_fp: rtanth: [31.57034978 27.18406789 22.79784246 18.41171382 14.02577275 9.64027533\n", + " 5.25633205 0.89702627 31.57034978 31.90657516 32.83068082 34.29517719\n", + " 36.2346004 38.57738799 41.25487818 44.20629586 0.89702627 4.70608217\n", + " 9.05379887 13.42672148 17.80628925 22.18856766 26.57221564 30.95665138\n", + " 44.20629586 41.18838618 38.43502607 36.00695508 33.97398873 32.41056182\n", + " 31.38691822 30.95665138 29.65803336 24.28227528 18.90665475 13.53133577\n", + " 8.15691443 2.78858575 31.62774376 32.44001712 34.0910252 36.46702674\n", + " 39.4372011 42.87825061 2.32483604 7.57927428 12.93401278 18.30122199\n", + " 23.67242106 29.04539658 42.85058957 39.32178756 36.24963004 33.75901556\n", + " 31.98608036 31.05398999 31.55546766 31.55546766 30.94207994 30.94207994\n", + " 29.73492188 30.59748544 32.34268701 34.83813202 37.93605456 41.50175634\n", + " 24.3761262 25.42117355 27.49689714 30.39285101 33.89947174 37.84740055\n", + " 19.02703944 20.34867971 22.88912523 26.29749216 30.28212156 34.64474606\n", + " 13.69903951 15.48238416 18.69618965 22.7418897 27.2514649 32.02957826\n", + " 8.4321936 11.09695565 15.26386952 20.01578758 25.02160156 30.1551337\n", + " 3.51323872 8.02392562 13.19949508 18.48980017 23.81851176 29.16458548]\n", + "DEBUG:root:make_az_asym: xyp: [[ 0.173161 -31.45819714]\n", + " [ 0.17304708 -27.07176857]\n", + " [ 0.17293316 -22.68534 ]\n", + " [ 0.17281925 -18.29891143]\n", + " [ 0.17270533 -13.91248287]\n", + " [ 0.17259141 -9.52605429]\n", + " [ 0.17247749 -5.13962573]\n", + " [ 0.17236358 -0.75319715]\n", + " [ 0.173161 -31.45819714]\n", + " [ 4.55958957 -31.45808322]\n", + " [ 8.94601814 -31.45796931]\n", + " [ 13.33244671 -31.45785538]\n", + " [ 17.71887528 -31.45774147]\n", + " [ 22.10530385 -31.45762756]\n", + " [ 26.49173242 -31.45751363]\n", + " [ 30.87816099 -31.45739971]\n", + " [ 0.17236358 -0.75319715]\n", + " [ 4.55879215 -0.75308323]\n", + " [ 8.94522072 -0.75296932]\n", + " [ 13.33164929 -0.7528554 ]\n", + " [ 17.71807786 -0.75274148]\n", + " [ 22.10450643 -0.75262756]\n", + " [ 26.490935 -0.75251364]\n", + " [ 30.87736356 -0.75239973]\n", + " [ 30.87816099 -31.45739971]\n", + " [ 30.87804707 -27.07097114]\n", + " [ 30.87793315 -22[ 2.1511598 -8.15318346]\n", + " [ 7.52715976 -8.15378996]\n", + " [ 12.90315973 -8.15439647]\n", + " [ 18.27915969 -8.15500298]\n", + " [ 23.65515966 -8.15560949]\n", + " [ 29.03115962 -8.156216 ]\n", + " [ 2.1517663 -2.77718348]\n", + " [ 7.52776627 -2.77779 ]\n", + " [ 12.90376624 -2.77839651]\n", + " [ 18.2797662 -2.77900302]\n", + " [ 23.65576617 -2.77960953]\n", + " [ 29.03176613 -2.78021604]]\n", + "DEBUG:root:radec2pix: xyfp Shape: (96, 2)\n", + "DEBUG:root:cartToSphere: vec: [[ 0.00152888 -0.20769103 0.97819328]\n", + " [ 0.00154215 -0.1801941 0.98362986]\n", + " [ 0.00155354 -0.15200928 0.98837785]\n", + " [ 0.00156302 -0.12324112 0.99237552]\n", + " [ 0.00157054 -0.09399571 0.99557136]\n", + " [ 0.00157606 -0.06438234 0.99792406]\n", + " [ 0.00157952 -0.03451442 0.99940295]\n", + " [ 0.00158089 -0.00450904 0.99998858]\n", + " [ 0.00152888 -0.20769103 0.97819328]\n", + " [ 0.03055413 -0.20754198 0.97774883]\n", + " [ 0.0594604 -0.20712371 0.97650613]\n", + " [ 0.08813528 -0.20643751 0.97448229]\n", + " [ 0.11646734 -0.2054851 0.97170532]\n", + " [ 0.14434605 -0.20426815 0.9682142 ]\n", + " [ 0.17166149 -0.20278791 0.96405881]\n", + " [ 0.1983039 -0.2010451 0.95929997]\n", + " [ 0.00158089 -0.00450904 0.99998858]\n", + " [ 0.03159291 -0.00450572 0.99949066]\n", + " [ 0.06147904 -0.00449643 0.99809825]\n", + " [ 0.0911219 -0.00448126 0.99582966]\n", + " [ 0.12040769 -0.00446035 0.99271451]\n", + " [ 0.14922671 -0.00443385 0.98879307]\n", + " [ 0.17747265 -0.00440189 0.98411589]\n", + " [ 0.2050409 -0.00436457 0.97874367]\n", + " [ 0.1983039 -0.2010451 0.95929997]\n", + " [ 0.20004855 -0.17444879 0.9641308 ]\n", + " [ 0.20153434 -0.14716869 0.96836217]\n", + " [ 0.2027606 -0.11931453 0.97193219]\n", + " [ 0.20372608 -0.09099614 0.97478992]\n", + " [ 0.20442907 -0.06232394 0.97689533]\n", + " [ 0.20486781 -0.03340929 0.9782193 ]\n", + " [ 0.2050409 -0.00436457 0.97874367]\n", + " [ 0.00163462 -0.1957935 0.98064379]\n", + " [ 0.00165059 -0.16161745 0.9868521 ]\n", + " [ 0.00166353 -0.12651199 0.99196368]\n", + " [ 0.00167335 -0.09067166 0.99587944]\n", + " [ 0.00167995 -0.05429781 0.99852337]\n", + " [ 0.00168324 -0.01760077 0.99984368]\n", + " [ 0.01419184 -0.20756647 0.97811796]\n", + " [ 0.04970047 -0.20720276 0.97703474]\n", + " [ 0.08491857 -0.206DEBUG:root:optics_fp: xyfp shape: (96, 2)\n", + "DEBUG:root:optics_fp: cphi: [-0.00747594 -0.00870042 -0.01039606 -0.01289954 -0.01696858 -0.02473916\n", + " -0.04546654 -0.26697332 -0.00747594 -0.14487442 -0.27440415 -0.39058855\n", + " -0.49073902 -0.57464131 -0.6436715 -0.69992333 -0.26697332 -0.98296427\n", + " -0.99542074 -0.99791805 -0.99881542 -0.99923641 -0.99946703 -0.99960689\n", + " -0.69992333 -0.75121935 -0.80504713 -0.85934793 -0.91078494 -0.95473483\n", + " -0.98588803 -0.99960689 -0.00847102 -0.01037136 -0.01335227 -0.01870128\n", + " -0.03109752 -0.0911811 -0.06793149 -0.23195178 -0.37841395 -0.50117932\n", + " -0.59975148 -0.67699869 -0.92564824 -0.99323234 -0.99767802 -0.99883933\n", + " -0.99930549 -0.99953809 -0.72172248 -0.78650646 -0.85317965 -0.91614203\n", + " -0.96694122 -0.99598364 -0.00795487 -0.00795487 -0.9995928 -0.9995928\n", + " -0.07226297 -0.24592654 -0.39887637 -0.52461865 -0.62348955 -0.69945795\n", + " -0.08817399 -0.29602647 -0.46919258 -0.60136972 -0.69774952 -0.76701014\n", + " -0.11299429 -0.36984939 -0.56367146 -0.69504524 -0.7811192 -0.83793215\n", + " -0.1569857 -0.48613658 -0.69011673 -0.80373942 -0.86801033 -0.90636701\n", + " -0.25511271 -0.67830854 -0.84534002 -0.91323709 -0.94538951 -0.96272694\n", + " -0.6124737 -0.93816501 -0.97759544 -0.98864055 -0.99316726 -0.99544587]\n", + "99999997 4027.99999976]\n", + " [4144.00000024 3669.60000019]\n", + " [3785.60000022 3669.60000021]\n", + " [3427.19999988 3669.59999985]\n", + " [3068.80000005 3669.60000008]\n", + " [2710.39999999 3669.59999998]\n", + " [2352. 3669.60000003]\n", + " [4144.00000009 3311.20000006]\n", + " [3785.60000001 3311.20000001]\n", + " [3427.20000009 3311.20000009]\n", + " [3068.80000003 3311.20000004]\n", + " [2710.40000012 3311.20000025]\n", + " [2351.99999998 3311.19999988]\n", + " [4143.99999976 2952.79999989]\n", + " [3785.59999985 2952.79999992]\n", + " [3427.19999969 2952.79999979]\n", + " [3068.79999997 2952.79999997]\n", + " [2710.40000016 2952.80000025]\n", + " [2352.00000009 2952.80000036]\n", + " [4143.99999979 2594.39999994]\n", + " [3785.60000002 2594.40000001]\n", + " [3427.20000024 2594.4000001 ]\n", + " [3068.80000002 2594.40000001]\n", + " [2710.40000021 2594.40000019]\n", + " [2351.99999998 2594.399943606 0.97476817]\n", + " [ 0.11964057 -0.20526936 0.97136534]\n", + " [ 0.15366298 -0.20370571 0.96689796]\n", + " [ 0.18678351 -0.20174719 0.96146242]\n", + " [ 0.01467408 -0.00461102 0.9998817 ]\n", + " [ 0.05138704 -0.00460274 0.99866821]\n", + " [ 0.08779394 -0.00458538 0.9961281 ]\n", + " [ 0.12368372 -0.00455917 0.99231122]\n", + " [ 0.15885436 -0.0045244 0.98729166]\n", + " [ 0.19311093 -0.0044813 0.9811667 ]\n", + " [ 0.19900616 -0.18954613 0.96149301]\n", + " [ 0.20096941 -0.15647489 0.9670196 ]\n", + " [ 0.20254341 -0.12248558 0.97158296]\n", + " [ 0.2037261 -0.08778034 0.97508476]\n", + " [ 0.2045144 -0.05256249 0.9774513 ]\n", + " [ 0.20490517 -0.01703747 0.97863353]\n", + " [ 0.00162826 -0.20759824 0.97821282]\n", + " [ 0.00162826 -0.20759824 0.97821282]\n", + " [ 0.20494776 -0.00446412 0.97876273]\n", + " [ 0.20494776 -0.00446412 0.97876273]\n", + " [ 0.01424722 -0.19576354 0.98054763]\n", + " [ 0.04989441 -0.19542056 0.97944952]\n", + " [ 0.08525013 -0.19469787 0.97715155]\n", + " [ 0.12010852 -0.19359884 0.97370089]\n", + " [ 0.15426631 -0.19212697 0.9691693 ]\n", + " [ 0.18752167 -0.19028463 0.96365314]\n", + " [ 0.0DEBUG:root:optics_fp: xyfp shape: (96, 2)\n", + "DEBUG:root:radec2pix: lat: [77.88072123 79.48382459 81.11902826 82.7811435 84.46512008 86.16588026\n", + " 87.87809063 89.592501 77.88072123 77.76297714 77.43489604 76.91632478\n", + " 76.23510116 75.42235372 74.50888673 73.52311865 89.592501 88.1660092\n", + " 86.47326812 84.77720909 83.09335022 81.42892112 79.7896882 78.18111406\n", + " 73.52311865 74.53938675 75.48898077 76.34336174 77.07095847 77.63894653\n", + " 78.01676209 78.18111406 78.57535641 80.56236957 82.59241544 84.65614182\n", + " 86.74415968 88.84595283 77.86145981 77.57369823 76.98847403 76.15398719\n", + " 75.12717296 73.96382281 89.0844999 87.04713438 84.96761219 82.90419496\n", + " 80.87086863 78.87814184 73.97634463 75.18085203 76.25721571 77.14851635\n", + " 77.79468183 78.14215534 77.8861108 77.8861108 78.18637455 78.18637455\n", + " 78.54888043 78.24034026 77.6156038 76.73023014 75.64791869 74.42908235\n", + " 80.52930205 80.14668621 79.38566385 78.33252026 77.07564982 75.68958597\n", + " 82.54926459 82.05674096 81.10786838 79.84412063 78.38693881 76.82298725\n", + " 84.59535958 83.92250159 82.7051798 81.18260126 79.50799917 77.76802141\n", + " 86.64409097 85.63122317 84.03581665 82.22723271 80.34771821 78.45776966\n", + " 88.58657998 86.85792078 84.85560606 82.82572865 80.81119712 78.83059106]\n", + "1438645 -0.16159264 0.98675268]\n", + " [ 0.05038177 -0.16130879 0.98561714]\n", + " [ 0.08608239 -0.16071144 0.98324039]\n", + " [ 0.1212815 -0.15980479 0.97966996]\n", + " [ 0.15577635 -0.15859338 0.97497788]\n", + " [ 0.18936679 -0.15708053 0.9692605 ]\n", + " [ 0.01449922 -0.12649245 0.9918616 ]\n", + " [ 0.05077617 -0.12626898 0.99069568]\n", + " [ 0.08675481 -0.12579928 0.9882551 ]\n", + " [ 0.12222707 -0.12508774 0.98458804]\n", + " [ 0.15699061 -0.12413931 0.979767 ]\n", + " [ 0.19084708 -0.12295784 0.97388848]\n", + " [ 0.01458479 -0.09065756 0.99577532]\n", + " [ 0.05107523 -0.09049631 0.99458621]\n", + " [ 0.08726392 -0.09015775 0.99209707]\n", + " [ 0.1229415 -0.08964573 0.98835673]\n", + " [ 0.15790584 -0.08896468 0.98343837]\n", + " [ 0.1919602 -0.0881182 0.97743873]\n", + " [ 0.01464229 -0.05428931 0.99841789]\n", + " [ 0.05127607 -0.05419219 0.68454257]\n", + " [ 30.87781924 -18.29811401]\n", + " [ 30.87770532 -13.91168544]\n", + " [ 30.87759141 -9.52525687]\n", + " [ 30.87747749 -5.1388283 ]\n", + " [ 30.87736356 -0.75239973]\n", + " [ 0.18811133 -29.54569675]\n", + " [ 0.18797171 -24.16969676]\n", + " [ 0.1878321 -18.79369675]\n", + " [ 0.18769248 -13.41769676]\n", + " [ 0.18755286 -8.04169676]\n", + " [ 0.18741324 -2.66569676]\n", + " [ 2.08566061 -31.44314748]\n", + " [ 7.46166061 -31.44300785]\n", + " [ 12.83766061 -31.44286824]\n", + " [ 18.2136606 -31.44272862]\n", + " [ 23.5896606 -31.442589 ]\n", + " [ 28.9656606 -31.44244938]\n", + " [ 2.08486397 -0.76814748]\n", + " [ 7.46086396 -0.76800786]\n", + " [ 12.83686396 -0.76786825]\n", + " [ 18.21286396 -0.76772863]\n", + " [ 23.58886395 -0.76758901]\n", + " [ 28.96486395 -0.7674494 ]\n", + " [ 30.86311132 -29.54490011]\n", + " [ 30.86297171 -24.16890011]\n", + " [ 30.86283209 -18.79290011]\n", + " [ 30.86269247 -13.41690011]\n", + " [ 30.86255285 -8.04090011]\n", + " [ 30.86241323 -2.66490012]\n", + " [ 0.18816061 -31.44319675]\n", + " [ 0.18816061 -31.44319675]\n", + " [ 30.86236396 -0.76740012]\n", + " [ 30.86236396 -0.76740012]\n", + " [ 2.08561133 -29.54564748]\n", + " [ 9995]\n", + " [4144.00000008 2236.00000001]\n", + " [3785.60000005 2236.00000001]\n", + " [3427.20000007 2236.00000001]\n", + " [3068.79999979 2235.99999996]\n", + " [2710.39999971 2235.99999991]\n", + " [2351.99999979 2235.99999984]]\n", + "DEBUG:root:make_az_asym: xyp: [[ 0.236018 -31.56946754]\n", + " [ 0.23651287 -27.18303899]\n", + " [ 0.23700774 -22.79661046]\n", + " [ 0.23750261 -18.41018192]\n", + " [ 0.23799748 -14.02375336]\n", + " [ 0.23849235 -9.63732482]\n", + " [ 0.23898721 -5.25089628]\n", + " [ 0.23948208 -0.86446773]\n", + " [ 0.236018 -31.56946754]\n", + " [ 4.62244655 -31.56996241]\n", + " [ 9.00887509 -31.57045728]\n", + " [ 13.39530363 -31.57095214]\n", + " [ 17.78173218 -31.57144701]\n", + " [ 22.16816072 -31.57194188]\n", + " [ 26.55458927 -31.57243675]\n", + " [ 30.94101781 -31.57293162]\n", + " [ 0.23948208 -0.86446773]\n", + " [ 4.62591062 -0.8649626 ]\n", + " [ 9.01233917 -0.86545747]\n", + " [ 13.39876771 -0.86595234]\n", + " [ 17.78519626 -0.86644721]\n", + " [ 22.1716248 -0.86694208]\n", + " [ 26.55805334 -0.86743695]\n", + " [ 30.94448189 -0.86793181]\n", + " [ 30.94101781 -31.57293162]\n", + " [ 30.94151268 -27.18650307]\n", + " [ 30.94200754 -22.8000DEBUG:root:optics_fp: rtanth: [45.08354623 42.13009767 39.44420909 37.08406184 35.11539785 33.60708557\n", + " 32.6230401 32.21134587 45.08354623 42.06280558 39.30031295 36.85418691\n", + " 34.79122159 33.18295674 32.09781375 31.58974814 32.21134587 27.8266828\n", + " 23.4426803 19.05979422 14.67902457 10.30307141 5.94258442 1.71954938\n", + " 31.58974814 27.2090275 22.83049885 18.45572241 14.0881941 9.73767156\n", + " 5.44507054 1.71954938 43.75525849 40.30775232 37.31902868 34.90712904\n", + " 33.19801449 32.30342747 43.72724359 40.19104921 37.09948507 34.57203928\n", + " 32.73962065 31.72289982 30.29997699 24.92663654 19.55475813 14.18600274\n", + " 8.82607125 3.51555769 29.68028893 24.31279095 18.95011366 13.59796176\n", + " 8.27677911 3.14775039 45.06233412 45.06233412 1.74001001 1.74001001\n", + " 42.37901039 38.71988024 35.50042932 32.85018402 30.91587699 29.8370753\n", + " 38.80944181 34.77673616 31.15241137 28.09496116 25.80666004 24.50394488\n", + " 35.69548681 31.26365913 27.1747629 23.607665 20.83215559 19.19474717\n", + " 33.16572831 28.3410327DEBUG:root:mm_to_pix: fitpx: [[0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]]\n", + "DEBUG:root:fitpix2pix: ccdpx: shape: (96, 2)\n", + " 7.46161133 -29.54550785]\n", + " [ 12.83761133 -29.54536824]\n", + " [ 18..9972131 ]\n", + " [ 0.08760541 -0.05398843 0.99469118]\n", + " [ 0.12341989 -0.05368064 0.99090157]\n", + " [ 0.15851749 -0.05327188 0.985918 ]\n", + " [ 0.19270261 -0.0527647 0.97983753]\n", + " [ 0.01467095 -0.01759801 0.9997375 ]\n", + " [ 0.05137612 -0.01756642 0.99852487]\n", + " [ 0.08777538 -0.01750018 0.99598656]\n", + " [ 0.12365776 -0.01740019 0.99217236]\n", + " [ 0.15882123 -0.0172675 0.98715635]\n", + " [ 0.1930708 -0.01710301 0.98103576]]\n", + "8 23.75427319 19.57344126 16.11758242 13.93686031\n", + " 31.36185649 26.20714877 21.16284486 16.33156793 11.97401233 8.82250437\n", + " 30.41330799 25.06427551 19.72990783 14.4264816 9.20761812 4.38632462]\n", + "DEBUG:root:optics_fp: sphi: [0.99997205 0.99996215 0.99994596 0.9999168 0.99985602 0.99969394\n", + " 0.99896586 0.96370392 0.99997205 0.98945005 0.96161446 0.92056536\n", + " 0.87130661 0.81840538 0.7653019 0.71421799 0.96370392 0.18379675\n", + " 0.09559053 0.0644947 0.04865962 0.03907157 0.03264451 0.02803701\n", + " 0.71421799 0.66005264 0.59321085 0.51139137 0.41288109 0.29745825\n", + " 0.16740606 0.02803701 0.99996412 0.99DEBUG:root:make_az_asym: xyp: [[ -0.24606 31.536148 ]\n", + " [ -0.24606 27.14971943]\n", + " [ -0.24606 22.76329086]\n", + " [ -0.24606 18.37686229]\n", + " [ -0.24606 13.99043371]\n", + " [ -0.24606 9.60400514]\n", + " [ -0.24606 5.21757658]\n", + " [ -0.24606 0.831148 ]\n", + " [ -0.24606 31.536148 ]\n", + " [ -4.63248857 31.536148 ]\n", + " [ -9.01891714 31.536148 ]\n", + " [-13.40534571 31.536148 ]\n", + " [-17.79177429 31.536148 ]\n", + " [-22.17820286 31.536148 ]\n", + " [-26.56463143 31.536148 ]\n", + " [-30.95106 31.536148 ]\n", + " [ -0.24606 0.831148 ]\n", + " [ -4.63248857 0.831148 ]\n", + " [ -9.01891714 0.831148 ]\n", + " [-13.40534571 0.831148 ]\n", + " [-17.79177429 0.831148 ]\n", + " [-22.17820285 0.831148 ]\n", + " [-26.56463143 0.831148 ]\n", + " [-30.95106 0.831148 ]\n", + " [-30.95106 31.536148 ]\n", + " [-30.95106 27.14971943]\n", + " [-30.95106 22.76329086]\n", + " [-30.95106 18.37686228]\n", + " [-30.95106 13.99043371]\n", + " [-30.95106 9.60400514]\n", + " [-30.95106 5.21757657]\n", + " [-30.95106 0.831148 ]\n", + " [ -0.26106 29.623648 ]\n", + " [ -0.26106 7453]\n", + " [ 30.94250242 -18.41364599]\n", + " [ 30.94299728 -14.02721745]\n", + " [ 30.94349215 -9.6407889 ]\n", + " [ 30.94398702 -5.25436036]\n", + " [ 30.94448189 -0.86793181]\n", + " [ 0.25123377 -29.65696924]\n", + " [ 0.25184028 -24.28096928]\n", + " [ 0.25244679 -18.90496931]\n", + " [ 0.2530533 -13.52896935]\n", + " [ 0.25365981 -8.15296938]\n", + " [ 0.25426632 -2.77696942]\n", + " [ 2.14851968 -31.5546833 ]\n", + " [ 7.52451965 -31.55528981]\n", + " [ 12.90051962 -31.55589633]\n", + " [ 18.27651958 -31.55650284]\n", + " [ 23.65251954 -31.55710934]\n", + " [ 29.02851952 -31.55771586]\n", + " [ 2.15198038 -0.8796835 ]\n", + " [ 7.52798035 -0.88029001]\n", + " [ 12.90398031 -0.88089652]\n", + " [ 18.27998027 -0.88150303]\n", + " [ 23.65598025 -0.88210954]\n", + " [ 29.03198021 -0.88271605]\n", + " [ 30.92623357 -29.66042994]\n", + " [ 30.92684009 -24.28442998]\n", + " [ 30.9274466 -18.90843001]\n", + " [ 30.9280531 -13.53243004]\n", + " [ 30.92865961 -8.15643008]\n", + " [ 30.92926612 -2.78043011]\n", + " [ 0.2510197 -31.55446923]\n", + " [ 0.2510197 -31.55446923]\n", + " [ 30.9294802 -0.88293012]\n", + " [ 30.9294802 -0.88293012]\n", + " [ 2.14873376 -29.65718332]\n", + " [ 7.52DEBUG:root:optics_fp: rtanth: [31.72889598 27.34254715 22.95622881 18.56996252 14.18379661 9.79786588\n", + " 5.41274207 1.03869565 31.72889598 32.05497925 32.96668106 34.41749464\n", + " 36.342913 38.67211172 41.33689193 44.27670445 1.03869565 4.67736497\n", + " 9.00877953 13.37609754 17.75284128 22.13341982 26.51593264 30.89955671\n", + " 44.27670445 41.24704355 38.47976296 36.03536075 33.98358137 32.39910327\n", + " 31.35285463 30.89955671 29.81652098 24.44065782 19.06487182 13.68925392\n", + " 8.31413013 2.94220985 31.78219953 32.5803988 34.21489906 36.57374743\n", + " 39.52747698 42.9535403 2.33383998 7.53796979 12.88401801 18.24767393\n", + " 23.61694389 28.9887086 42.91616052 39.37153369 36.28003925 33.76636764\n", + " 31.96711857 31.00691067 31.71398377 31.71398377 30.88506563 30.88506563\n", + " 29.88906763 30.73646927 32.46394115 34.94119572 38.021962 41.57228381\n", + " 24.52910914 25.55486988 27.6084825 30.48291307 33.97043457 37.9021848\n", + " 19.17813281 20.47376266 22.98590632 26.36914053 30.33338108 34.67995379\n", + " 13.846556 15.59170589 18.76907627 22.78723124 27.27710291 32.04099765\n", + " 8.57065926 11.17275166 15.2972975 20.02465966 25.01538387 30.13892197\n", + " 3.60389222 8.02260672 13.1734259 18.4531524 23.77606504 29.11848994]\n", + "DEBUG:root:mm_to_pix: fitpx.shape: (96, 2)\n", + "21361133 -29.54522862]\n", + " [ 23.58961132 -29.545089 ]\n", + " [ 28.96561132 -29.54494938]\n", + " [ 2.08547171 -24.16964747]\n", + " [ 7.46147171 -24.16950786]\n", + " [ 12.83747171 -24.16936824]\n", + " [ 18.21347171 -24.16922862]\n", + " [ 23.58947171 -24.16908901]\n", + " [ 28.9654717 -24.16894939]\n", + " [ 2.0853321 -18.79364747]\n", + " [ 7.46133209 -18.79350785]\n", + " [ 12.83733209 -18.79336824]\n", + " [ 18.21333209 -18.79322862]\n", + " [ 23.58933209 -18.79308901]\n", + " [ 28.96533209 -18.79294939]\n", + " [ 2.08519248 -13.41764748]\n", + " [ 7.46119248 -13.41750786]\n", + " [ 12.83719247 -13.41736824]\n", + " [ 18.21319248 -13.41722863]\n", + " [ 23.58919247 -13.41708901]\n", + " [ 28.96519247 -13.41694939]\n", + " [ 2.08505286 -8.04164748]\n", + " [ 7.46105286 -8.04150786]\n", + " [ 12.83705286 -8.04136825]\n", + " [ 18.21305286 -8.04122863]\n", + " [ 23.58905286 -8.04108901]\n", + " [ 28.96505285 -8.04094939]\n", + " [ 2.08491324 -2.66564748]\n", + " [ 7.46091324 -2.66550786]\n", + " [ 12.83691324 -2.66536825]\n", + " [ 18.21291324 -2.66522863]\n", + " [ 23.58891323 -2.66508901]\n", + " [ 28.96491324 -2.66494939]]\n", + " 24.247648 ]\n", + " [ -0.26106 18.87164801]\n", + " [ -0.26106 13.495648 ]\n", + " [ -0.26106 8.119648 ]\n", + " [ -0.26106 2.743648 ]\n", + " [ -2.15856 31.521148 ]\n", + " [ -7.53456 31.521148 ]\n", + " [-12.91056 31.521148 ]\n", + " [-18.28656 31.521148 ]\n", + " [-23.66256 31.521148 ]\n", + " [-29.03856 31.521148 ]\n", + " [ -2.15856 0.846148 ]\n", + " [ -7.53456 0.846148 ]\n", + " [-12.91056 0.846148 ]\n", + " [-18.28655999 0.846148 ]\n", + " [-23.66256 0.846148 ]\n", + " [-29.03856 0.846148 ]\n", + " [-30.93606 29.623648 ]\n", + " [-30.93606 24.247648 ]\n", + " [-30.93606 18.871648 ]\n", + " [-30.93606 13.495648 ]\n", + " [-30.93606 8.119648 ]\n", + " [-30.93606 2.743648 ]\n", + " [ -0.26106 31.521148 ]\n", + " [ -0.26106 31.521148 ]\n", + " [-30.93606 0.846148 ]\n", + " [-30.93606 0.846148 ]\n", + " [ -2.15856 29.623648 ]\n", + " [ -7.53456 29.623648 ]\n", + " [-12.91056 29.623648 ]\n", + " [-18.28656 29.623648 ]\n", + " [-23.66256 29.623648 ]\n", + " [-29.03856 29.623648 ]\n", + " [ -2.15856 24.247648 ]\n", + " [ -7.53456 24.247648 ]\n", + " [-12.91056 24.247648 ]\n", + " [-18.28656 24.247648 ]\n", + " [-23.66256 24.247648 ]\n", + " [-29.03856 24.247648 ]\n", + " [ -2.15856 18.871648 ]\n", + " [ -7.53456 18.871648 ]\n", + " [-12.91056 18.871648 ]\n", + " [-18.28656 18.871648 ]\n", + " [-23.66256 18.871648 ]\n", + " [-29.03856 18.871648 ]\n", + " [ -2.15856 13.495648 ]\n", + " [ -7.53456 13.495648 ]\n", + " [-12.91056 13.495648 ]\n", + " [-18.28656 13.495648 ]\n", + " [-23.66256 13.495648 ]\n", + " [-29.03856 13.495648 ]\n", + " [ -2.15856 8.119648 ]\n", + " [ -7.53456 8.119648 ]\n", + " [-12.91056 8.119648 ]\n", + " [-18.28656 8.119648 ]\n", + " [-23.66256 8.119648 ]\n", + " [-29.03856 8.119648 ]\n", + " [ -2.15856 2.743648 ]\n", + " [ -7.53456 2.743648 ]\n", + " [-12.91056 2.743648 ]\n", + " [-18.28656 2.743648 ]\n", + " [-23.66256 2.743648 ]\n", + " [-29.03856 2.743648 ]]\n", + "DEBUG:root:fitpix2pix: visCut: True\n", + "473372 -29.65778983]\n", + " [ 12.90073369 -29.65839633]\n", + " [ 18.27673365 -29.65900285]\n", + " [ 23.65273362 -29.65960936]\n", + " [ 29.02873359 -29.66021587]\n", + " [ 2.14934027 -24.28118335]\n", + " [ 7.52534023 -24.28178986]\n", + " [ 12.9013402 -24.28239637]\n", + " [ 18.27734016 -24.28300288]\n", + " [ 23.65334013 -24.28360939]\n", + " [ 29.02934009 -24.2842159 ]\n", + " [ 2.14994678 -18.90518338]\n", + " [ 7.52594674 -18.90578989]\n", + " [ 12.90194671 -18.9063964 ]\n", + " [ 18.27794667 -18.90700292]\n", + " [ 23.65394664 -18.90760943]\n", + " [ 29.0299466 -18.90821593]\n", + " [ 2.15055329 -13.52918342]\n", + " [ 7.52655325 -13.52978993]\n", + " [ 12.90255322 -13.53039644]\n", + " [ 18.27855318 -13.53100295]\n", + " [ 23.65455315 -13.53160946]\n", + " [ 29.03055312 -13.53221597]\n", + " [ 2.1511598 -8.15318346]\n", + " [ 7.52715976 -8.15378996]\n", + " [ 12.90315973 -8.15439647]\n", + " [ 18.27915969 -8.15500298]\n", + " [ 23.65515966 -8.15560949]\n", + " [ 29.03115962 -8.156216 ]\n", + " [ 2.1517663 -2.77718348]\n", + " [ 7.52776627 -2.77779 ]\n", + " [ 12.90376624 -2.77839651]\n", + " [ 18.2797662 -2.77900302]\n", + " [ 23.65576617 -2.77960953]\n", + " [ 29.03176613 -2.78021604]]\n", + "DEBUG:root:radec2pix: lng: [270.42176524 270.49034045 270.58554379 270.72662079 270.95724718\n", + " 271.40230304 272.6202602 289.32090211 270.42176524 278.37487059\n", + " 286.01754065 293.1193046 299.54422335 305.24693184 310.24816583\n", + " 314.60671783 289.32090211 351.88332455 355.81697528 357.18453549\n", + " 357.87852145 358.29811982 358.57917324 358.78056782 314.60671783\n", + " 318.91052218 323.86153916 329.52530495 335.93162927 343.04519816\n", + " 350.73789032 358.78056782 270.47833289 270.58513886 270.75335014\n", + " 271.05727717 271.77214072 275.46283159 273.91137001 283.48836134\n", + " 292.36007687 300.23563069 307.02864268 312.79442784 342.55577414\n", + " 354.88167257 357.01022263 357.88894543 358.36857558 358.67064356\n", + " 316.39469688 322.09565632 328.83707711 336.69003224 345.58630386\n", + " 355.24690052 270.44938101 270.44938101 358.75219462 358.75219462\n", + " 274.16251665 284.32266507 293.64661849 301.81542209 308.76235319\n", + " 314.58099285 275.08757932 287.34521298 298.17498348 307.196148\n", + " 314.48659385 320.3241534 276.53899869 291.90639058 304.59126569\n", + " 314.33729311 321.66504236 327.20736404 279.1393103 299.43995741\n", + " 314.06556227 323.90144592 330.60294465 335.34278839 285.09401101\n", + " 313.41621828 328.3557916 336.49369688 341.42440255 344.68693562\n", + " 309.81698293 341.12351394 348.72452469 351.99035546 353.79501012\n", + " 354.93771634]\n", + "994622 0.99991085 0.99982512\n", + " 0.99951636 0.99583433 0.99768999 0.97272729 0.92563647 0.86534345\n", + " 0.80018633 0.73598422 0.37838518 0.11614437 0.06810698 0.04816635\n", + " 0.03726317 0.03039091 0.69218254 0.61758205 0.52161719 0.40085381\n", + " 0.25499936 0.08953536 0.99996836 0.99996836 0.02853493 0.02853493\n", + " 0.99738561 0.96928847 0.91700471 0.85133735 0.78183168 0.71467375\n", + " 0.99610509 0.95517974 0.88309587 0.79897088 0.71634182 0.64163497\n", + " 0.99359564 0.92909172 0.82599908 0.71896601 0.62438193 0.54577441\n", + " 0.98760088 0.87388285 0.72369807 0.59498147 0.49654613 0.42249123\n", + " 0.96691132 0.7347772 0.53422865 0.40742853 0.32594274 0.27047521\n", + " 0.79049097 0.3461884 0.21049264 0.15029925 0.11669955 0.09532849]\n", + "DEBUG:root:optics_fp: cphi: [-0.0051738 -0.00607178 -0.0073129 -0.00914033 -0.01209791 -0.01770316\n", + " -0.03238875 -0.17057046 -0.0051738 -0.14196195 -0.27109236 -0.38711253\n", + " -0.48729918 -0.57137557 -0.64065601 -0.69718731 -0.17057046 -0.97567733\n", + " -0.99347832 -0.99703634 -0.99831251 -0.99891078 -0.99923847 -0.99943725\n", + " -0.69718731 -0.74844189 -0.80231456 -0.85678989 -0.9085738 -0.95306497\n", + " -0.98492815 -0.99943725 -0.0060359 -0.00745674 -0.00967884 -0.01364603\n", + " -0.02274227 -0.06503966 -0.06534051 -0.22874689 -0.3749438 -0.49775222\n", + " -0.59656384 -0.67413914 -0.89537598 -0.99040776 -0.99671262 -0.99835535\n", + " -0.9990142 -0.99934296 -0.71895916 -0.78374506 -0.85059233 -0.91398049\n", + " -0.96549457 -0.99546704 -0.00564941 -0.00564941 -0.9994203 -0.9994203\n", + " -0.06950599 -0.24249594 -0.39519134 -0.52103162 -0.62020649 -0.69655704\n", + " -0.08478692 -0.29175445 -0.46477551 -0.59730991 -0.69424327 -0.76406532\n", + " -0.10856248 -0.36427233 -0.55834321 -0.69058088 -0.77756 -0.83512289\n", + " -0.15052868 -0.47847897 -0.68390701 -0.79923279 -0.86476566 -0.90397627\n", + " -0.24345642 -0.66792691 -0.83927119 -0.9096075 -0.9430429 -0.96110205\n", + " -0.57961227 -0.93047808 -0.97475473 -0.98719494 -0.99229449 -0.99486127]\n", + "DEBUG:root:make_az_asym: xyp: shape: (96, 2)\n", + "DEBUG:root:make_az_asym: xyp: shape: (96, 2)\n", + "DEBUG:root:optics_fp: cphi: [0.71431368 0.76437722 0.81641337 0.86835883 0.91702693 0.95816873\n", + " 0.9870555 0.99965535 0.71431368 0.66132929 0.5962023 0.51675291\n", + " 0.42131547 0.30954599 0.18335276 0.04744559 0.99965535 0.9995376\n", + " 0.99934763 0.99901176 0.99833132 0.99660587 0.98975 0.86955594\n", + " 0.04744559 0.05506581 0.06560435 0.08112784 0.10624255 0.15365671\n", + " 0.27469828 0.86955594 0.73565039 0.79855486 0.86249109 0.9220669\n", + " 0.96951843 0.99634831 0.69273272 0.61992142 0.52667287 0.40967477\n", + " 0.26839934 0.10753407 0.99959633 0.99940262 0.99902775 0.99814911\n", + " 0.99520453 0.969333 0.0509959 0.06222863 0.07980586 0.1111717\n", + " 0.18256945 0.47985554 0.71431702 0.71431702 0.86795254 0.86795254\n", + " 0.71476593 0.64346978 0.55038977 0.43114136 0.28422526 0.11432331\n", + " 0.78049181 0.71641143 0.62718906 0.50409223 0.34047225 0.13917969\n", + " 0.84856189 0.79689424 0.71896966 0.59988271 0.42174368 0.17764392\n", + " 0.9132683 0.87905083 0.82247132 0.72349099 0.54506987 0.24461812\n", + " 0.96577787 0.95060272 0.92315504 0.86706843 0.73363771 0.38635141\n", + " 0.99587869 0.99392322 0.99017013 0.9815259 0.95398889 0.77695241]\n", + "DEBUG:root:radec2pix: curVec: [[-0.06032654 -0.81079447 0.5822139 ]\n", + " [-0.06898743 -0.79517585 0.60244178]\n", + " [-0.07762877 -0.77861014 0.62268775]\n", + " [-0.08622557 -0.76113784 0.64283306]\n", + " [-0.0947511 -0.74280588 0.66276818]\n", + " [-0.1031769 -0.7236681 0.68239212]\n", + " [-0.11147313 -0.70378582 0.7016119 ]\n", + " [-0.11960906 -0.68322808 0.72034232]\n", + " [-0.06032654 -0.81079447 0.5822139 ]\n", + " [-0.03411225 -0.80825225 0.58784748]\n", + " [-0.00734319 -0.804959 0.59328499]\n", + " [ 0.01986872 -0.80090343 0.59846381]\n", + " [ 0.047413 -0.7960804 0.60333075]\n", + " [ 0.07517984 -0.79049129 0.60784169]\n", + " [ 0.10305955 -0.78414439 0.61196103]\n", + " [ 0.13094252 -0.77705547 0.61566132]\n", + " [-0.11960906 -0.68322808 0.72034232]\n", + " [-0.09293267 -0.67955986 0.72771005]\n", + " [-0.06563696 -0.67526821 0.73464593]\n", + " [-0.03782704 -0.67034004 0.74108929]\n", + " [-0.00960841 -0.66476904 0.74698715]\n", + " [ 0.0189111 -0.65855621 0.75229389]\n", + " [ 0.04762054 -0.65171038 0.75697151]\n", + " [ 0.07640616 -0.64424859 0.76099005]\n", + " [ 0.13094252 -0.77705547 0.61566132]\n", + " [ 0.12373831 -0.76068831 0.63721434]\n", + " [ 0.11629631 -0.74337938 0.65868222]\n", + " [ 0.10864024 -0.72516435 0.67995144]\n", + " [ 0.10079521 -0.70608652 0.70091522]\n", + " [ 0.09278819 -0.68619819 0.72147238]\n", + " [ 0.0846482 -0.66556152 0.74152717]\n", + " [ 0.07640616 -0.64424859 0.76099005]\n", + " [-0.06401474 -0.80409584 0.59104315]\n", + " [-0.07461876 -0.78431129 0.61586349]\n", + " [-0.08516896 -0.7631437 0.64059187]\n", + " [-0.09561684 -0.74067674 0.66502284]\n", + " [-0.10591008 -0.71700963 0.68897042]\n", + " [-0.11599332 -0.69225843 0.71226667]\n", + " [-0.04900179 -0.80972544 0.58475938]\n", + " [-0.01648537 -0.80610581 0.59154177]\n", + " [ 0.01675299 -0.80134624 0.59796618]\n", + " [ 0.05050936 -0.79543473 0.60393078]\n", + " [ 0.08458148 -0.78837385 0.60935429]\n", + " [ 0.11876746 -0.78018196 0.61417457]\n", + " [-0.10803338 -0.68177592 0.72354017]\n", + " [-0.0749087 -0.6768636 0.73228707]\n", + " [-0.04095834 -0.67100102 0.74032429]\n", + " [-0.00637625 -0.66417369 0.7475511 ]\n", + " [ 0.02863897 -0.65638352 0.7538836 ]\n", + " [ 0.06388185 -0.64765018 0.75925513]\n", + " [ 0.12773656 -0.77006273 0.62504941]\n", + " [ 0.1187433 -0.74936591 0.65142211]\n", + " [ 0.10941649 -0.72728914 0.67755334]\n", + " [ 0.09980176 -0.70390891 0.70324381]\n", + " [ 0.08994879 -0.67932159 0.72830721]\n", + " [ 0.0799118 -0.65364577 0.75256981]\n", + " [-0.06026759 -0.81073528 0.58230243]\n", + " [-0.06026759 -0.81073528 0.58230243]\n", + " [ 0.07633605 -0.64434907 0.76091201]\n", + " [ 0.07633605 -0.64434907 0.76091201]\n", + " [-0.05271336 -0.80305922 0.59356313]\n", + " [-0.0200929 -0.79936896 0.60050441]\n", + " [ 0.01325486 -0.79454624 0.60705896]\n", + " [ 0.04712668 -0.78857853 0.61312559]\n", + " [ 0.0813206 -0.78146782 0.61862348]\n", + " [ 0.11563447 -0.77323212 0.62349078]\n", + " [-0.06323383 -0.78319626 0.6185508 ]\n", + " [-0.03036694 -0.77930091 0.62591369]\n", + " [ 0.00324368 -0.77429732 0.63281366]\n", + " [ 0.03739693 -0.76817141 0.63915112]\n", + " [ 0.07189158 -0.76092377 0.6448462 ]\n", + " [ 0.10652457 -0.75257157 0.64983732]\n", + " [-0.07372588 -0.76194604 0.64343044]\n", + " [-0.04068361 -0.75783656 0.65117478]\n", + " [-0.00687956 -0.75264741 0.65838784]\n", + " [ 0.02748734 -0.74636325 0.66497093]\n", + " [ 0.06221646 -0.73898378 0.6708443 ]\n", + " [ 0.09710371 -0.73052586 0.67594588]\n", + " [-0.08414068 -0.73939158 0.66799733]\n", + " [-0.0509932 -0.73505695 0.67608504]\n", + " [-0.01706487 -0.7296756 0.6835805 ]\n", + " [ 0.01744733 -0.72323161 0.69038513]\n", + " [ 0.05234337 -0.7157245 0.69641842]\n", + " [ 0.08741819 -0.70717138 0.7016172 ]\n", + " [-0.09442536 -0.71563166 0.69206588]\n", + " [-0.06124174 -0.71105965 0.70045958]\n", + " [-0.02725794 -0.70547856 0.7082069 ]\n", + " [ 0.00733069 -0.69887259 0.71520861]\n", + " [ 0.04232469 -0.69124189 0.72138289]\n", + " [ 0.07751848 -0.68260435 0.72666511]\n", + " [-0.10452409 -0.69078229 0.71546806]\n", + " [-0.07137221 -0.68596075 0.72412972]\n", + " [-0.03740118 -0.68017269 0.73209717]\n", + " [-0.00280522 -0.67340319 0.73927009]\n", + " [ 0.03221685 -0.66565361 0.74556512]\n", + " [ 0.06745943 -0.65694312 0.75091608]]\n", + "DEBUG:root:radec2pix: xyfp: [[ 0.16415906 -31.72847131]\n", + " [ 0.16601788 -27.34204313]\n", + " [ 0.1678767 -22.95561497]\n", + " [ 0.16973552 -18.56918678]\n", + " [ 0.17159434 -14.1827586 ]\n", + " [ 0.17345315 -9.79633043]\n", + " [ 0.17531197 -5.40990225]\n", + " [ 0.17717079 -1.02347407]\n", + " [ 0.16415906 -31.72847131]\n", + " [ 4.55058724 -31.73033014]\n", + " [ 8.93701541 -31.73218895]\n", + " [ 13.32344359 -31.73404778]\n", + " [ 17.70987177 -31.73590659]\n", + " [ 22.09629995 -31.73776541]\n", + " [ 26.48272812 -31.73962422]\n", + " [ 30.8691563 -31.74148305]\n", + " [ 0.17717079 -1.02347407]\n", + " [ 4.56359897 -1.02533289]\n", + " [ 8.95002714 -1.02719171]\n", + " [ 13.33645532 -1.02905053]\n", + " [ 17.7228835 -1.03090935]\n", + " [ 22.10931168 -1.03276817]\n", + " [ 26.49573986 -1.03462699]\n", + " [ 30.88216803 -1.0364858 ]\n", + " [ 30.8691563 -31.74148305]\n", + " [ 30.87101512 -27.35505487]\n", + " [ 30.87287394 -22.96862669]\n", + " [ 30.87473276 -18.58219851]\n", + " [ 30.87659158 -14.19577034]\n", + " [ 30.8784504 -9.80934216]\n", + " [ 30.88030922 -5.42291398]\n", + " [ 30.88216803 -1.0364858 ]\n", + " [ 0.17996951 -29.81597784]\n", + " [ 0.18224768 -24.43997833]\n", + " [ 0.18452584 -19.06397881]\n", + " [ 0.18680401 -13.6879793 ]\n", + " [ 0.18908217 -8.31197977]\n", + " [ 0.19136034 -2.93598025]\n", + " [ 2.07666524 -31.71428177]\n", + " [ 7.45266476 -31.71655993]\n", + " [ 12.82866428 -31.7188381 ]\n", + " [ 18.2046638 -31.72111627]\n", + " [ 23.58066331 -31.72339443]\n", + " [ 28.95666283 -31.7256726 ]\n", + " [ 2.08966426 -1.03928452]\n", + " [ 7.46566378 -1.04156269]\n", + " [ 12.8416633 -1.04384085]\n", + " [ 18.21766282 -1.04611902]\n", + " [ 23.59366233 -1.04839718]\n", + " [ 28.96966185 -1.05067535]\n", + " [ 30.85496675 -29.82897686]\n", + " [ 30.85724492 -24.45297735]\n", + " [ 30.85952308 -19.07697783]\n", + " [ 30.86180126 -13.70097831]\n", + " [ 30.86407941 -8.32497879]\n", + " [ 30.86635759 -2.94897928]\n", + " [ 0.17916541 -31.71347767]\n", + " [ 0.17916541 -31.71347767]\n", + " [ 30.86716168 -1.05147945]\n", + " [ 30.86716168 -1.05147945]\n", + " [ 2.07746934 -29.81678193]\n", + " [ 7.45346886 -29.8190601 ]\n", + " [ 12.82946837 -29.82133827]\n", + " [ 18.20546789 -29.82361643]\n", + " [ 23.58146741 -29.82589461]\n", + " [ 28.95746693 -29.82817277]\n", + " [ 2.07974751 -24.44078242]\n", + " [ 7.45574702 -24.44306058]\n", + " [ 12.83174654 -24.44533875]\n", + " [ 18.20774606 -24.44761692]\n", + " [ 23.58374558 -24.44989508]\n", + " [ 28.95974509 -24.45217325]\n", + " [ 2.08202567 -19.0647829 ]\n", + " [ 7.45802519 -19.06706107]\n", + " [ 12.83402471 -19.06933924]\n", + " [ 18.21002422 -19.0716174 ]\n", + " [ 23.58602374 -19.07389557]\n", + " [ 28.96202325 -19.07617373]\n", + " [ 2.08430384 -13.68878339]\n", + " [ 7.46030335 -13.69106155]\n", + " [ 12.83630287 -13.69333972]\n", + " [ 18.21230239 -13.69561789]\n", + " [ 23.58830191 -13.69789605]\n", + " [ 28.96430143 -13.70017422]\n", + " [ 2.086582 -8.31278387]\n", + " [ 7.46258152 -8.31506203]\n", + " [ 12.83858103 -8.3173402 ]\n", + " [ 18.21458055 -8.31961837]\n", + " [ 23.59058007 -8.32189653]\n", + " [ 28.96657959 -8.3241747 ]\n", + " [ 2.08886017 -2.93678435]\n", + " [ 7.46485969 -2.93906252]\n", + " [ 12.8408592 -2.94134068]\n", + " [ 18.21685872 -2.94361885]\n", + " [ 23.59285824 -2.94589701]\n", + " [ 28.9688DEBUG:root:radec2pix: curVec Shape: (96, 3)\n", + "DEBUG:root:optics_fp: xyfp: [[ 0.236018 -31.56946754]\n", + " [ 0.23651287 -27.18303899]\n", + " [ 0.23700774 -22.79661046]\n", + " [ 0.23750261 -18.41018192]\n", + " [ 0.23799748 -14.02375336]\n", + " [ 0.23849235 -9.63732482]\n", + " [ 0.23898721 -5.25089628]\n", + " [ 0.23948208 -0.86446773]\n", + " [ 0.236018 -31.56946754]\n", + " [ 4.62244655 -31.56996241]\n", + " [ 9.00887509 -31.57045728]\n", + " [ 13.39530363 -31.57095214]\n", + " [ 17.78173218 -31.57144701]\n", + " [ 22.16816072 -31.57194188]\n", + " [ 26.55458927 -31.57243675]\n", + " [ 30.94101781 -31.57293162]\n", + " [ 0.23948208 -0.86446773]\n", + " [ 4.62591062 -0.8649626 ]\n", + " [ 9.01233917 -0.86545747]\n", + " [ 13.39876771 -0.86595234]\n", + " [ 17.78519626 -0.86644721]\n", + " [ 22.1716248 -0.86694208]\n", + " [ 26.55805334 -0.86743695]\n", + " [ 30.94448189 -0.86793181]\n", + " [ 30.94101781 -31.57293162]\n", + " [ 30.94151268 -27.18650307]\n", + " [ 30.94200754 -22.80007453]\n", + " [ 30.94250242 -18.41364599]\n", + " [ 30.94299728 -14.02721745]\n", + " [ 30.94349215 -9.6407889 ]\n", + " [ 30.94398702 -5.25436036]\n", + " [ 30.94448189 -0.86793181]\n", + " [ 0.25123377 -29.65696924]\n", + " [ 0.25184028 -24.28096928]\n", + " [ 0.25244679 -18.90496931]\n", + " [ 0.2530533 -13.52896935]\n", + " [ 0.25365981 -8.15296938]\n", + " [ 0.25426632 -2.77696942]\n", + " [ 2.14851968 -31.5546833 ]\n", + " [ 7.52451965 -31.55528981]\n", + " [ 12.90051962 -31.55589633]\n", + " [ 18.27651958 -31.55650284]\n", + " [ 23.65251954 -31.55710934]\n", + " [ 29.02851952 -31.55771586]\n", + " [ 2.15198038 -0.8796835 ]\n", + " [ 7.52798035 -0.88029001]\n", + " [ 12.90398031 -0.88089652]\n", + " [ 18.27998027 -0.88150303]\n", + " [ 23.65598025 -0.88210954]\n", + " [ 29.03198021 -0.88271605]\n", + " [ 30.92623357 -29.66042994]\n", + " [ 30.92684009 -24.28442998]\n", + " [ 30.9274466 -18.90843001]\n", + " [ 30.9280531 -13.53243004]\n", + " [ 30.92865961 -8.15643008]\n", + " [ 30.92926612 -2.78043011]\n", + " [ 0.2510197 -31.55446923]\n", + " [ 0.2510197 -31.55446923]\n", + " [ 30.9294802 -0.88293012]\n", + " [ 30.9294802 -0.88293012]\n", + " [ 2.14873376 -29.65718332]\n", + " [ 7.52473372 -29.65778983]\n", + " [ 12.90073369 -29.65839633]\n", + " [ 18.27673365 -29.65900285]\n", + " [ 23.65273362 -29.65960936]\n", + " [ 29.02873359 -29.66021587]\n", + " [ 2.14934027DEBUG:root:optics_fp: sphi: [0.69982566 0.64476931 0.57746793 0.49593643 0.39882528 0.28620393\n", + " 0.16037903 0.02625233 0.69982566 0.75009571 0.80283424 0.85613459\n", + " 0.90691415 0.95088447 0.98304718 0.99887382 0.02625233 0.03040715\n", + " 0.0361152 0.04444666 0.05774576 0.08232094 0.14281086 0.49383445\n", + " 0.99887382 0.99848273 0.99784571 0.9967037 0.99434024 0.98812429\n", + " 0.96153048 0.49383445 0.67736143 0.60192204 0.50607224 0.38703053\n", + " 0.24501841 0.0853818 0.72119441 0.7846639 0.85006805 0.91223165\n", + " 0.96330774 0.9942014 0.02841071 0.03456004 0.04408579 0.06081407\n", + " 0.0978159 0.24575094 0.99869886 0.99806192 0.99681043 0.99380121\n", + " 0.98319296 0.87734751 0.69982226 0.69982226 0.49664714 0.49664714\n", + " 0.69936375 0.76547151 0.83490784 0.90228439 0.95875753 0.9934436\n", + " 0.62516601 0.69767805 0.77886705 0.86364983 0.94025457 0.99026714\n", + " 0.52909613 0.60411884 0.69504146 0.80008796 0.9067151 0.98409483\n", + " 0.40735858 0.47672806 0.56880658 0.69033382 0.83839063 0.9696195\n", + " 0.25937061 0.31041017 0.38442785 0.49818906 0.67954081 0.92235166\n", + " 0.0906953 0.11007561 0.13986822 0.1913293 0.29984194 0.62955934]\n", + " -24.28118335]\n", + " [ 7.52534023 -24.28178986]\n", + " [ 12.9013402 -24.28239637]\n", + " [ 18.27734016 -24.28300288]\n", + " [ 23.65334013 -24.28360939]\n", + " [ 29.02934009 -24.2842159 ]\n", + " [ 2.14994678 -18.90518338]\n", + " [ 7.52594674 -18.90578989]\n", + " [ 12.90194671 -18.9063964 ]\n", + " [ 18.27794667 -18.90700292]\n", + " [ 23.65394664 -18.90760943]\n", + " [ 29.0299466 -18.90821593]\n", + " [ 2.15055329 -13.52918342]\n", + " [ 7.52655325 -13.52978993]\n", + " [ 12.90255322 -13.53039644]\n", + " [ 18.27855318 -13.53100295]\n", + " [ 23.65455315 -13.53160946]\n", + " [ 29.03055312 -13.53221597]\n", + " [ 2.1511598 -8.15318346]\n", + " [ 7.52715976 -8.15378996]\n", + " [ 12.90315973 -8.15439647]\n", + " [ 18.27915969 -8.15500298]\n", + " [ 23.65515966 -8.15560949]\n", + " [ 29.03115962 -8.156216 ]\n", + " [ 2.1517663 -2.77718348]\n", + " [ 7.52776627 -2.77779 ]\n", + " [ 12.90376624 -2.77839651]\n", + " [ 18.2797662 -2.77900302]\n", + " [ 23.65576617 -2.77960953]\n", + " [ 29.03176613 -2.78021604]]\n", + "DEBUG:root:radec2pix: xyfp: [[ 0.236018 -31.56946754]\n", + " [ 0.23651287 -27.18303899]\n", + " [ 0.23700774 -22.79661046]\n", + " [ 0.23750261 -18.41018192]\n", + " [ 0.23799748 -14.02375336]\n", + " [ 0.23849235 -9.63732482]\n", + " [ 0.23898721 -5.25089628]\n", + " [ 0.23948208 -0.86446773]\n", + " [ 0.236018 -31.56946754]\n", + " [ 4.62244655 -31.56996241]\n", + " [ 9.00887509 -31.57045728]\n", + " [ 13.39530363 -31.57095214]\n", + " [ 17.78173218 -31.57144701]\n", + " [ 22.16816072 -31.57194188]\n", + " [ 26.55458927 -31.57243675]\n", + " [ 30.94101781 -31.57293162]\n", + " [ 0.23948208 -0.86446773]\n", + " [ 4.62591062 -0.8649626 ]\n", + " [ 9.01233917 -0.86545747]\n", + " [ 13.39876771 -0.86595234]\n", + " [ 17.78519626 -0.86644721]\n", + " [ 22.1716248 -0.86694208]\n", + " [ 26.55805334 -0.86743695]\n", + " [ 30.94448189 -0.86793181]\n", + " [ 30.94101781 -31.57293162]\n", + " [ 30.94151268 -27.18650307]\n", + " [ 30.94200754 -22.80007453]\n", + " [ 30.94250242 -18.41364599]\n", + " [ 30.94299728 -14.02721745]\n", + " [ 30.94349215 -9.6407889 ]\n", + " [ 30.94398702 -5.25436036]\n", + " [ 30.94448189 -0.86793181]\n", + " [ 0.25123377 -29.65696924]\n", + " [ 0.25184028 -24.28096928]\n", + " [ 0.25244679 -18.90496931]\n", + " [ 0.2530533 -13.52896935]\n", + " [ 0.25365981 -8.15296938]\n", + " [ 0.25426632 -2.77696942]\n", + " [ 2.14851968 -31.5546833 ]\n", + " [ 7.52451965 -31.55528981]\n", + " [ 12.90051962 -31.55589633]\n", + " [ 18.27651958 -31.55650284]\n", + " [ 23.65251954 -31.55710934]\n", + " [ 29.02851952 -31.55771586]\n", + " [ 2.15198038 -0.8796835 ]\n", + " [ 7.52798035 -0.88029001]\n", + " [ 12.90398031 -0.88089652]\n", + " [ 18.27998027 -0.88150303]\n", + " [ 23.65598025 -0.88210954]\n", + " [ 29.03198021 -0.88271605]\n", + " [ 30.92623357 -29.66042994]\n", + " [ 30.92684009 -24.28442998]\n", + " [ 30.9274466 -18.90843001]\n", + " [ 30.9280531 -13.53243004]\n", + " [ 30.92865961 -8.15643008]\n", + " [ 30.92926612 -2.78043011]\n", + " [ 0.2510197 -31.55446923]\n", + " [ 0.2510197 -31.55446923]\n", + " [ 30.9294802 -0.88293012]\n", + " [ 30.9294802 -0.88293012]\n", + " [ 2.14873376 -29.65718332]\n", + " [ 7.52473372 -29.65778983]\n", + " [ 12.90073369 -29.65839633]\n", + " [ 18.27673365 -29.65900285]\n", + " [ 23.65273362 -29.65960936]\n", + " [ 29.02873359 -29.66021587]\n", + " [ 2.14934027 -24.28118335]\n", + " [ 7.52534023 -24.28178986]\n", + " [ 12.9013402 -24.28239637]\n", + " [ 18.27734016 -24.28300288]\n", + " [ 23.65334013 -24.28360939]\n", + " [ 29.02934009 -24.2842159 ]\n", + " [ 2.14994678 -18.90518338]\n", + " [ 7.52594674 -18.90578989]\n", + " [ 12.90194671 -18.9063964 ]\n", + " [ 18.27794667 -18.90700292]\n", + " [ 23.65394664 -18.90760943]\n", + " [ 29.0299466 -18.90821593]\n", + " [ 2.15055329 -13.52918342]\n", + " [ 7.52655325 -13.52978993]\n", + " [ 12.90255322 -13.53039644]\n", + " [ 18.27855318 -13.53100295]\n", + " [ 23.65455315 -13.53160946]\n", + " [ 29.03055312 -13.53221597]\n", + " [ 2.1511598 -8.15318346]\n", + " [ 7.52715976 -8.15378996]\n", + " [ 12.90315973 -8.15439647]\n", + " [ 18.27915969 -8.15500298]\n", + " [ 23.65515966 -8.15560949]\n", + " [ 29.03115962 -8.156216 ]\n", + " [ 2.1517663 -2.77718348]\n", + " [ 7.52776627 -2.77779 ]\n", + " [ 12.90376624 -2.77839651]\n", + " [ 18.2797662 -2.77900302]\n", + " [ 23.65576617 -2.77960953]\n", + " [ 29.03176613 -2.78021604]]\n", + "DEBUG:root:optics_fp: xyfp shape: (96, 2)\n", + "DEBUG:root:make_az_asym: xyp: shape: (96, 2)\n", + "5776 -2.94817518]]\n", + "DEBUG:root:radec2pix: xyfp: [[ -0.24606 31.536148 ]\n", + " [ -0.24606 27.14971943]\n", + " [ -0.24606 22.76329086]\n", + " [ -0.24606 18.37686229]\n", + " [ -0.24606 13.99043371]\n", + " [ -0.24606 9.60400514]\n", + " [ -0.24606 5.21757658]\n", + " [ -0.24606 0.831148 ]\n", + " [ -0.24606 31.536148 ]\n", + " [ -4.63248857 31.536148 ]\n", + " [ -9.01891714 31.536148 ]\n", + " [-13.40534571 31.536148 ]\n", + " [-17.79177429 31.536148 ]\n", + " [-22.17820286 31.536148 ]\n", + " [-26.56463143 31.536148 ]\n", + " [-30.95106 31.536148 ]\n", + " [ -0.24606 0.831148 ]\n", + " [ -4.63248857 0.831148 ]\n", + " [ -9.01891714 0.831148 ]\n", + " [-13.40534571 0.831148 ]\n", + " [-17.79177429 0.831148 ]\n", + " [-22.17820285 0.831148 ]\n", + " [-26.56463143 0.831148 ]\n", + " [-30.95106 0.831148 ]\n", + " [-30.95106 31.536148 ]\n", + " [-30.95106 27.14971943]\n", + " [-30.95106 22.76329086]\n", + " [-30.95106 18.37686228]\n", + " [-30.95106 13.99043371]\n", + " [-30.95106 9.60400514]\n", + " [-30.95106 5.21757657]\n", + " [-30.95106 0.831148 ]\n", + " [ -0.26106 29.623648 ]\n", + " [ -0.26106 24.247648 ]\n", + " [ -0.26106 18.87164801]\n", + " [ -0.26106 13.495648 ]\n", + " [ -0.26106 8.119648 ]\n", + " [ -0.26106 2.743648 ]\n", + " [ -2.15856 31.521148 ]\n", + " [ -7.53456 31.521148 ]\n", + " [-12.91056 31.521148 ]\n", + " [-18.28656 31.521148 ]\n", + " [-23.66256 31.521148 ]\n", + " [-29.03856 31.521148 ]\n", + " [ -2.15856 0.846148 ]\n", + " [ -7.53456 0.846148 ]\n", + " [-12.91056 0.846148 ]\n", + " [-18.28655999 0.846148 ]\n", + " [-23.66256 0.846148 ]\n", + " [-29.03856 0.846148 ]\n", + " [-30.93606 29.623648 ]\n", + " [-30.93606 24.247648 ]\n", + " [-30.93606 18.871648 ]\n", + " [-30.93606 13.495648 ]\n", + " [-30.93606 8.119648 ]\n", + " [-30.93606 2.743648 ]\n", + " [ -0.26106 31.521148 ]\n", + " [ -0.26106 31.521148 ]\n", + " [-30.93606 0.846148 ]\n", + " [-30.93606 0.846148 ]\n", + " [ -2.15856 29.623648 ]\n", + " [ -7.53456 29.623648 ]\n", + " [-12.91056 29.623648 ]\n", + " [-18.28656 29.623648 ]\n", + " [-23.66256 29.623648 ]\n", + " [-29.03856 29.623648 ]\n", + " [ -2.15856 24.247648 ]\n", + " [ -7.53456 24.247648 ]\n", + " [-12.91056 24.247648 ]\n", + " [-18.28656 24.247648 ]\n", + " [-23.66256 24.247648 ]\n", + " [-29.03856 24.247648 ]\n", + " [ -2.1DEBUG:root:radec2pix: camVec: [[0.20582147 0.20765008 0.20920683 0.21049219 0.21150557 0.2122456\n", + " 0.21271065 0.21289938 0.20582147 0.17940403 0.15227891 0.12455745\n", + " 0.09635017 0.06776763 0.03892112 0.00992292 0.21289938 0.18554193\n", + " 0.15747589 0.1288054 0.09963586 0.07007602 0.04023879 0.01024104\n", + " 0.00992292 0.01000636 0.01007758 0.01013637 0.01018243 0.01021541\n", + " 0.01023502 0.01024104 0.20656285 0.20862007 0.2102697 0.2115111\n", + " 0.21234181 0.21275892 0.19440388 0.16153549 0.12771486 0.09314577\n", + " 0.05803185 0.02257838 0.20106508 0.16704611 0.13206625 0.09631893\n", + " 0.06000442 0.02333228 0.01006049 0.01015553 0.01023184 0.01028888\n", + " 0.01032605 0.01034279 0.20573918 0.20573918 0.01034376 0.01034376\n", + " 0.19517916 0.16217419 0.12821715 0.09351091 0.05825864 0.02266572\n", + " 0.19711638 0.16377271 0.12947641 0.09442771 0.05882858 0.02288505\n", + " 0.19867107 0.16505894 0.13049231 0.09516891 0.05928988 0.02306224\n", + " 0.19984199 0.16603002 0.13126104 0.09573072 0.0596397 0.02319607\n", + " 0.20062602 0.16668DEBUG:root:optics_fp: sphi: [0.99998662 0.99998157 0.99997326 0.99995823 0.99992682 0.99984329\n", + " 0.99947535 0.98534548 0.99998662 0.98987212 0.96255334 0.92203248\n", + " 0.87323508 0.82068871 0.76782803 0.71688902 0.98534548 0.21921165\n", + " 0.11402118 0.07693204 0.0580701 0.04666103 0.03901907 0.03354371\n", + " 0.71688902 0.66320038 0.59690146 0.51566567 0.41772438 0.30276585\n", + " 0.17296396 0.03354371 0.99998178 0.9999722 0.99995316 0.99990689\n", + " 0.99974136 0.99788268 0.99786303 0.97348593 0.92704754 0.86731928\n", + " 0.80256563 0.73860437 0.44531096 0.13817549 0.08101827 0.0573289\n", + " 0.04439174 0.0362443 0.69505232 0.62108267 0.52582572 0.40575813\n", + " 0.26042318 0.09510716 0.99998404 0.99998404 0.03404492 0.03404492\n", + " 0.99758153 0.97015242 0.91859883 0.85353737 0.7844386 0.71750142\n", + " 0.99639911 0.95649325 0.88542855 0.80201052 0.71974043 0.64513889\n", + " 0.99408963 0.93129247 0.82961007 0.72325518 0.62880875 0.55006341\n", + " 0.98860564 0.87809901 0.72956919 0.60102159 0.50217562 0.42758264\n", + " 0.96991184 0.74422687 0.54371304 0DEBUG:root:radec2pix: xyfp Shape: (96, 2)\n", + "DEBUG:root:radec2pix: lat: [78.01259544 79.61854981 81.2561548 82.92023352 84.60572556 86.30750292\n", + " 88.02000573 89.72623162 78.01259544 77.8905989 77.5557472 77.02861409\n", + " 76.33783962 75.51523956 74.59210732 73.59715789 89.72623162 88.17123291\n", + " 86.46586111 84.76551164 83.07960166 81.41406813 79.77423864 78.16538766\n", + " 73.59715789 74.60763881 75.5491728 76.39298182 77.10737428 77.65965515\n", + " 78.01977483 78.16538766 78.70852006 80.69871958 82.73128852 84.79686317\n", + " 86.88594315 88.98689611 77.99183548 77.69708601 77.10179122 76.25561048\n", + " 75.21673598 74.0417777 89.11867119 87.04263922 84.95641064 82.89040132\n", + " 80.8558565 78.86257349 74.04815363 75.2440736 76.30818941 77.18330532\n", + " 77.80960312 78.1346569 78.0179859 78.0179859 78.1707132 78.1707132\n", + " 78.68041726 78.36422733 77.72853599 76.83064382 75.73566662 74.50486571\n", + " 80.66353948 80.27068815 79.49543516 78.42701765 77.15572991 75.75689035\n", + " 82.68520532 82.17800874 81.21001267 79.9277617 78.4547664 76.877901\n", + " 84.73149404 84.03535931 82.79194264 81.24820065 79.5578398 77.80619197\n", + " 86.77660248 85.72142555 84.09351686 82.26517071 80.37322779 78.47497463\n", + " 88.68716566 86.88752222 84.86498838 82.8264064 80.80719889 78.82380063]\n", + ".41546865 0.33267115 0.27619351\n", + " 0.81489239 0.36634758 0.22327834 0.15951848 0.12390179 0.10124753]\n", + "5856 18.871648 ]\n", + " [ -7.53456 18.871648 ]\n", + " [-12.91056 18.871648 ]\n", + " [-18.28656 18.871648 ]\n", + " [-23.66256 18.871648 ]\n", + " [-29.03856 18.871648 ]\n", + " [ -2.15856 13.495648 ]\n", + " [ -7.53456 13.495648 ]\n", + " [-12.91056 13.495648 ]\n", + " [-18.28656 13.495648 ]\n", + " [-23.66256 13.495648 ]\n", + " [-29.03856 13.495648 ]\n", + " [ -2.15856 8.119648 ]\n", + " [ -7.53456 8.119648 ]\n", + " [-12.91056 8.119648 ]\n", + " [-18.28656 8.119648 ]\n", + " [-23.66256 8.119648 ]\n", + " [-29.03856 8.119648 ]\n", + " [ -2.15856 2.743648 ]\n", + " [ -7.53456 2.743648 ]\n", + " [-12.91056 2.743648 ]\n", + " [-18.28656 2.743648 ]\n", + " [-23.66256 2.743648 ]\n", + " [-29.03856 2.743648 ]]\n", + "DEBUG:root:optics_fp: xyfp: [[-32.203794 -31.5506227 ]\n", + " [-32.20328688 -27.16419416]\n", + " [-32.20277976 -22.77776561]\n", + " [-32.20227264 -18.39133707]\n", + " [-32.20176553 -14.00490853]\n", + " [-32.20125841 -9.61847999]\n", + " [-32.20075129 -5.23205144]\n", + " [-32.20024417 -0.8456229 ]\n", + " [-32.203794 -31.5506227 ]\n", + " [-27.81736545 -31.55112981]\n", + " [-23.43093691 -31.55163693]\n", + " [-19.04450837 -31.55214405]\n", + " [-14.65807983 -31.55265117]\n", + " [-10.27165129 -31.55315829]\n", + " [ -5.88522274 -31.5536654 ]\n", + " [ -1.4987942 -31.55417252]\n", + " [-32.20024417 -0.8456229 ]\n", + " [-27.81381563 -0.84613002]\n", + " [-23.42738708 -0.84663714]\n", + " [-19.04095854 -0.84714426]\n", + " [-14.65453 -0.84765137]\n", + " [-10.26810146 -0.84815849]\n", + " [ -5.88167292 -0.84866561]\n", + " [ -1.49524438 -0.84917273]\n", + " [ -1.4987942 -31.55417252]\n", + " [ -1.49828708 -27.16774398]\n", + " [ -1.49777997 -22.78131544]\n", + " [ -1.49727285 -18.39488689]\n", + " [ -1.49676573 -14.00845835]\n", + " [ -1.49625861 -9.62202981]\n", + " [ -1.49575149 -5.23560127]\n", + " [ -1.49524438 -0.84917273]\n", + " [-32.18857289 -29.63812445]\n", + " [-32.18795136 -24.26212448]\n", + " [-32.18732984 -18.88612452]\n", + " [-32.18670832 -13.51012455]\n", + " [-32.1860868 -8.13412459]\n", + " [-32.18546528 -2.75812462]\n", + " [-30.29129227 -31.5358438 ]\n", + " [-24.91529231 -31.53646533]\n", + " [-19.53929235 -31.53708685]\n", + " [-14.16329238 -31.53770837]\n", + " [ -8.78729242 -31.53832989]\n", + " [ -3.41129245 -31.53895142]\n", + " [-30.28774592 -0.86084401]\n", + " [-24.91174595 -0.86146553]\n", + " [-19.53574599 -0.86208705]\n", + " [-14.15974603 -0.86270858]\n", + " [ -8.78374606 -0.8633301 ]\n", + " [ -3.4077461 -0.86395162]\n", + " [ -1.5135731 -29.6416708 ]\n", + " [ -1.51295157 -24.26567084]\n", + " [ -1.51233005 -18.88967087]\n", + " [ -1.51170853 -13.51367091]\n", + " [ -1.51108701 -8.13767095]\n", + " [ -1.51046548 -2.76167097]\n", + " [-32.18879227 -31.53562444]\n", + " [-32.18879227 -31.53562444]\n", + " [ -1.51024611 -0.86417099]\n", + " [ -1.51024611 -0.86417099]\n", + " [-30.29107291 -29.63834382]\n", + " [-24.91507294 -29.63896534]\n", + " [-19.53907298 -29.63958686]\n", + " [-14.16307301 -29.64020839]\n", + " [ -8.78707305 -29.64082991]\n", + " [ -3.41107308 -29.64145143]\n", + " [-30.29045138 -24.26234385]\n", + " [-2DEBUG:root:radec2pix: ccdpx: [[-4.45000000e+01 -4.99999951e-01]\n", + " [-4.45000000e+01 2.91928572e+02]\n", + " [-4.45000000e+01 5.84357142e+02]\n", + " [-4.45000000e+01 8.76785714e+02]\n", + " [-4.45000000e+01 1.16921429e+03]\n", + " [-4.45000000e+01 1.46164286e+03]\n", + " [-4.45000000e+01 1.75407143e+03]\n", + " [-4.45000000e+01 2.04650000e+03]\n", + " [-4.45000000e+01 -4.99999951e-01]\n", + " [ 2.47928571e+02 -5.00000176e-01]\n", + " [ 5.40357143e+02 -5.00000069e-01]\n", + " [ 8.32785714e+02 -5.00000257e-01]\n", + " [ 1.12521429e+03 -4.99999992e-01]\n", + " [ 1.41764286e+03 -5.00000241e-01]\n", + " [ 1.71007143e+03 -4.99999730e-01]\n", + " [ 2.00250000e+03 -5.00000010e-01]\n", + " [-4.45000000e+01 2.04650000e+03]\n", + " [ 2.47928571e+02 2.04650000e+03]\n", + " [ 5.40357143e+02 2.04650000e+03]\n", + " [ 8.32785714e+02 2.04650000e+03]\n", + " [ 1.12521429e+03 2.04650000e+03]\n", + " [ 1.41764286e+03 2.04650000e+03]\n", + " [ 1.71007143e+03 2.04650000e+03]\n", + " [ 2.00250000e+03 2.04650000e+03]\n", + " [ 2.00250000e+03 -5.00000010e-01]\n", + " [ 2.00250000e+03 2.91928572e+02]\n", + " [ 2.00250000e+03 5.84357143e+02]\n", + " [ 2.00250000e+03 8.76785DEBUG:root:radec2pix: xyfp Shape: (96, 2)\n", + "DEBUG:root:optics_fp: xyfp: [[ 0.16415906 -31.72847131]\n", + " [ 0.16601788 -27.34204313]\n", + " [ 0.1678767 -22.95561497]\n", + " [ 0.16973552 -18.56918678]\n", + " [ 0.17159434 -14.1827586 ]\n", + " [ 0.17345315 -9.79633043]\n", + " [ 0.17531197 -5.40990225]\n", + " [ 0.17717079 -1.02347407]\n", + " [ 0.16415906 -31.72847131]\n", + " [ 4.55058724 -31.73033014]\n", + " [ 8.93701541 -31.73218895]\n", + " [ 13.32344359 -31.73404778]\n", + " [ 17.70987177 -31.73590659]\n", + " [ 22.09629995 -31.73776541]\n", + " [ 26.48272812 -31.73962422]\n", + " [ 30.8691563 -31.74148305]\n", + " [ 0.17717079 -1.02347407]\n", + " [ 4.56359897 -1.02533289]\n", + " [ 8.95002714 -1.02719171]\n", + " [ 13.33645532 -1.02905053]\n", + " [ 17.7228835 -1.03090935]\n", + " [ 22.10931168 -1.03276817]\n", + " [ 26.49573986 -1.03462699]\n", + " [ 30.88216803 -1.0364858 ]\n", + " [ 30.8691563 -31.74148305]\n", + " [ 30.87101512 -27.35505487]\n", + " [ 30.87287394 -22.96862669]\n", + " [ 30.87473276 -18.58219851]\n", + " [ 30.87659158 -14.19577034]\n", + " [ 30.8784504 -9.80934216]\n", + " [ 30.88030922 -5.42291398]\n", + " [ 30.88216803 -1.0364858 ]\n", + " [ 0.17996951 -29.81597784]\n", + " [ 0.18224768 -24.43997833]\n", + " [ 0.18452584 -19.06397881]\n", + " [ 0.18680401 -13.6879793 ]\n", + " [ 0.18908217 -8.31197977]\n", + " [ 0.19136034 -2.93598025]\n", + " [ 2.07666524 -31.71428177]\n", + " [ 7.45266476 -31.71655993]\n", + " [ 12.82866428 -31.7188381 ]\n", + " [ 18.2046638 -31.72111627]\n", + " [ 23.58066331 -31.72339443]\n", + " [ 28.95666283 -31.7256726 ]\n", + " [ 2.08966426 -1.03928452]\n", + " [ 7.46566378 -1.04156269]\n", + " [ 12.8416633 -1.04384085]\n", + " [ 18.21766282 -1.04611902]\n", + " [ 23.59366233 -1.04839718]\n", + " [ 28.96966185 -1.05067535]\n", + " [ 30.85496675 -29.82897686]\n", + " [ 30.85724492 -24.45297735]\n", + " [ 30.85952308 -19.07697783]\n", + " [ 30.86180126 -13.70097831]\n", + " [ 30.86407941 -8.32497879]\n", + " [ 30.86635759 -2.94897928]\n", + " [ 0.17916541 -31.71347767]\n", + " [ 0.17916541 -31.71347767]\n", + " [ 30.86716168 -1.05147945]\n", + " [ 30.86716168 -1.05147945]\n", + " [ 2.07746934 -29.81678193]\n", + " [ 7.45346886 -29.8190601 ]\n", + " [ 12.82946837 -29.82133827]\n", + " [ 18.20546789 -29.82361643]\n", + " [ 23.58146741 -29.82589461]\n", + " [ 28.95746693 -29.82817277]\n", + " [ 2.07974751 -139 0.13177743 0.09610838 0.05987462 0.02328514\n", + " 0.20101976 0.1670086 0.13203673 0.09629765 0.05999164 0.02332821]\n", + " [0.20164691 0.17515749 0.1479768 0.12021614 0.09198614 0.06339752\n", + " 0.03456171 0.00559103 0.20164691 0.2034844 0.20505578 0.20636157\n", + " 0.2074012 0.20817322 0.20867589 0.20890768 0.00559103 0.00564441\n", + " 0.00569099 0.00573063 0.00576317 0.00578837 0.00580605 0.00581605\n", + " 0.20890768 0.18144072 0.15328055 0.12453134 0.09529889 0.06569253\n", + " 0.0358258 0.00581605 0.19019593 0.15725033 0.12337711 0.08878017\n", + " 0.0536634 0.01823232 0.20239118 0.20446311 0.20613616 0.2074097\n", + " 0.20828117 0.20874739 0.00571471 0.00577657 0.00582791 0.00586841\n", + " 0.00589767 0.00591534 0.19702358 0.16288078 0.12780019 0.0919758\n", + " 0.05560896 0.01891032 0.20156436 0.20156436 0.00591876 0.00591876\n", + " 0.19097333 0.19292238 0.19449762 0.19569785 0.19651986 0.19695996\n", + " 0.15788822 0.15949023 0.1607887 0.16178086 0.16246211 0.16282774\n", + " 0.12387558 0.1251298 0.12614936 0.12693065 0.1274685 0.12775798\n", + " DEBUG:root:radec2pix: xyfp: [[ 0.173161 -31.45819714]\n", + " [ 0.17304708 -27.07176857]\n", + " [ 0.17293316 -22.68534 ]\n", + " [ 0.17281925 -18.29891143]\n", + " [ 0.17270533 -13.91248287]\n", + " [ 0.17259141 -9.52605429]\n", + " [ 0.17247749 -5.13962573]\n", + " [ 0.17236358 -0.75319715]\n", + " [ 0.173161 -31.45819714]\n", + " [ 4.55958957 -31.45808322]\n", + " [ 8.94601814 -31.45796931]\n", + " [ 13.33244671 -31.45785538]\n", + " [ 17.71887528 -31.45774147]\n", + " [ 22.10530385 -31.45762756]\n", + " [ 26.49173242 -31.45751363]\n", + " [ 30.87816099 -31.45739971]\n", + " [ 0.17236358 -0.75319715]\n", + " [ 4.55879215 -0.75308323]\n", + " [ 8.94522072 -0.75296932]\n", + " [ 13.33164929 -0.7528554 ]\n", + " [ 17.71807786 -0.75274148]\n", + " [ 22.10450643 -0.75262756]\n", + " [ 26.490935 -0.75251364]\n", + " [ 30.87736356 -0.75239973]\n", + " [ 30.87816099 -31.45739971]\n", + " [ 30.87804707 -27.07097114]\n", + " [ 30.87793315 -22.68454257]\n", + " [ 30.87781924 -18.29811401]\n", + " [ 30.87770532 -13.91168544]\n", + " [ 30.87759141 -9.52525687]\n", + " [ 30.87747749 -5.1388283 ]\n", + " [ 30.87736356 -0.75239973]\n", + " [ 0.18811133 -29.54569675]\n", + " [ 0.18797171 DEBUG:root:make_az_asym: xyp: [[ 0.236018 -31.56946754]\n", + " [ 0.23651287 -27.18303899]\n", + " [ 0.23700774 -22.79661046]\n", + " [ 0.23750261 -18.41018192]\n", + " [ 0.23799748 -14.02375336]\n", + " [ 0.23849235 -9.63732482]\n", + " [ 0.23898721 -5.25089628]\n", + " [ 0.23948208 -0.86446773]\n", + " [ 0.236018 -31.56946754]\n", + " [ 4.62244655 -31.56996241]\n", + " [ 9.00887509 -31.57045728]\n", + " [ 13.39530363 -31.57095214]\n", + " [ 17.78173218 -31.57144701]\n", + " [ 22.16816072 -31.57194188]\n", + " [ 26.55458927 -31.57243675]\n", + " [ 30.94101781 -31.57293162]\n", + " [ 0.23948208 -0.86446773]\n", + " [ 4.62591062 -0.8649626 ]\n", + " [ 9.01233917 -0.86545747]\n", + " [ 13.39876771 -0.86595234]\n", + " [ 17.78519626 -0.86644721]\n", + " [ 22.1716248 -0.86694208]\n", + " [ 26.55805334 -0.86743695]\n", + " [ 30.94448189 -0.86793181]\n", + " [ 30.94101781 -31.57293162]\n", + " [ 30.94151268 -27.18650307]\n", + " [ 30.94200754 -22.80007453]\n", + " [ 30.94250242 -18.41364599]\n", + " [ 30.94299728 -14.02721745]\n", + " [ 30.94349215 -9.6407889 ]\n", + " [ 30.94398702 -5.25436036]\n", + " [ 30.94448189 -0.86793181]\n", + " [ 0.25123377 -29.65696924]\n", + " [ 0.2518402714e+02]\n", + " [ 2.00250000e+03 1.16921429e+03]\n", + " [ 2.00250000e+03 1.46164286e+03]\n", + " [ 2.00250000e+03 1.75407143e+03]\n", + " [ 2.00250000e+03 2.04650000e+03]\n", + " [-4.35000000e+01 1.27000000e+02]\n", + " [-4.35000000e+01 4.85400000e+02]\n", + " [-4.35000000e+01 8.43800000e+02]\n", + " [-4.35000000e+01 1.20220000e+03]\n", + " [-4.35000000e+01 1.56060000e+03]\n", + " [-4.35000000e+01 1.91900000e+03]\n", + " [ 8.30000000e+01 4.99999720e-01]\n", + " [ 4.41400000e+02 4.99999983e-01]\n", + " [ 7.99800000e+02 4.99999771e-01]\n", + " [ 1.15820000e+03 4.99999773e-01]\n", + " [ 1.51660000e+03 5.00000075e-01]\n", + " [ 1.87500000e+03 4.99999913e-01]\n", + " [ 8.29999998e+01 2.04550000e+03]\n", + " [ 4.41400000e+02 2.04550000e+03]\n", + " [ 7.99800000e+02 2.04550000e+03]\n", + " [ 1.15820000e+03 2.04550000e+03]\n", + " [ 1.51660000e+03 2.04550000e+03]\n", + " [ 1.87500000e+03 2.04550000e+03]\n", + " [ 2.00150000e+03 1.27000000e+02]\n", + " [ 2.00150000e+03 4.85400000e+02]\n", + " [ 2.00150000e+03 8.43800000e+02]\n", + " [ 2.00150000e+03 1.20220000e+03]\n", + " [ 2.00150000e+03 1.56060000e+03]\n", + " [ 2.00150000e+03 1.91900000e+03]\n", + " [-4.350000DEBUG:root:radec2pix: curVec: [[-0.61138261 0.72175473 0.32447097]\n", + " [-0.63331494 0.70572209 0.31759805]\n", + " [-0.65516999 0.6888004 0.31033255]\n", + " [-0.67683299 0.67102622 0.30268948]\n", + " [-0.6981953 0.65244368 0.29468725]\n", + " [-0.71915378 0.6331055 0.28634815]\n", + " [-0.7396111 0.61307339 0.27769847]\n", + " [-0.75947656 0.59241781 0.26876846]\n", + " [-0.61138261 0.72175473 0.32447097]\n", + " [-0.61142541 0.73314055 0.29776484]\n", + " [-0.6110331 0.74381976 0.27087029]\n", + " [-0.61021667 0.75375773 0.24389526]\n", + " [-0.60899516 0.76292704 0.21694985]\n", + " [-0.60739607 0.77130697 0.19014621]\n", + " [-0.60545588 0.77888289 0.163599 ]\n", + " [-0.60322074 0.78564543 0.13742634]\n", + " [-0.75947656 0.59241781 0.26876846]\n", + " [-0.75939665 0.6042736 0.24118486]\n", + " [-0.7586371 0.61554801 0.21347225]\n", + " [-0.75721056 0.62620423 0.18574293]\n", + " [-0.75513833 0.63621338 0.15810959]\n", + " [-0.75245001 0.64555446 0.13068444]\n", + " [-0.74918313 0.65421404 0.1035791 ]\n", + " [-0.74538292 0.66218565 0.07690553]\n", + " [-0.60322074 0.78564543 0.13742-24.16969676]\n", + " [ 0.1878321 -18.79369675]\n", + " [ 0.18769248 -13.41769676]\n", + " [ 0.18755286 -8.04169676]\n", + " [ 0.18741324 -2.66569676]\n", + " [ 2.08566061 -31.44314748]\n", + " [ 7.46166061 -31.44300785]\n", + " [ 12.83766061 -31.44286824]\n", + " [ 18.2136606 -31.44272862]\n", + " [ 23.5896606 -31.442589 ]\n", + " [ 28.9656606 -31.44244938]\n", + " [ 2.08486397 -0.76814748]\n", + " [ 7.46086396 -0.76800786]\n", + " [ 12.83686396 -0.76786825]\n", + " [ 18.21286396 -0.76772863]\n", + " [ 23.58886395 -0.76758901]\n", + " [ 28.96486395 -0.7674494 ]\n", + " [ 30.86311132 -29.54490011]\n", + " [ 30.86297171 -24.16890011]\n", + " [ 30.86283209 -18.79290011]\n", + " [ 30.86269247 -13.41690011]\n", + " [ 30.86255285 -8.04090011]\n", + " [ 30.86241323 -2.66490012]\n", + " [ 0.18816061 -31.44319675]\n", + " [ 0.18816061 -31.44319675]\n", + " [ 30.86236396 -0.76740012]\n", + " [ 30.86236396 -0.76740012]\n", + " [ 2.08561133 -29.54564748]\n", + " [ 7.46161133 -29.54550785]\n", + " [ 12.83761133 -29.54536824]\n", + " [ 18.21361133 -29.54522862]\n", + " [ 23.58961132 -29.545089 ]\n", + " [ 28.96561132 -29.54494938]\n", + " [ 2.08547171 -24.16964747]\n", + " [ 7.46147171 -24.16950786]\n", + "634]\n", + " [-0.62412518 0.77058953 0.12907185]\n", + " [-0.64501619 0.75459459 0.12058657]\n", + " [-0.66577387 0.73770191 0.11198676]\n", + " [-0.68628772 0.71995816 0.10329284]\n", + " [-0.70645555 0.70141629 0.09452907]\n", + " [-0.72618289 0.68213632 0.08572312]\n", + " [-0.74538292 0.66218565 0.07690553]\n", + " [-0.62094793 0.71491607 0.32143222]\n", + " [-0.64779109 0.69466471 0.31274212]\n", + " [-0.6744034 0.67311344 0.3034771 ]\n", + " [-0.70058236 0.65034031 0.2936696 ]\n", + " [-0.72613816 0.62644241 0.28336068]\n", + " [-0.75089431 0.60153699 0.27260039]\n", + " [-0.61153013 0.72675024 0.3128338 ]\n", + " [-0.61128884 0.74023473 0.27996158]\n", + " [-0.61040385 0.75262269 0.2469134 ]\n", + " [-0.60890684 0.76386064 0.21389106]\n", + " [-0.6068485 0.7739104 0.18110108]\n", + " [-0.60429997 0.78274723 0.1487559 ]\n", + " [-0.75945891 0.59772739 0.25679589]\n", + " [-0.75890291 0.61187176 0.22288858]\n", + " [-0.7573378 0.62510531 0.18889893]\n", + " [-0.75479922 0.63737156 0.15503428]\n", + " [-0.75134162 0.64863182 0.12150119]\n", + " [-0.74703726 0.65886429 0.08850522]\n", + " [-0.61233723 0.7798 -24.28096928]\n", + " [ 0.25244679 -18.90496931]\n", + " [ 0.2530533 -13.52896935]\n", + " [ 0.25365981 -8.15296938]\n", + " [ 0.25426632 -2.77696942]\n", + " [ 2.14851968 -31.5546833 ]\n", + " [ 7.52451965 -31.55528981]\n", + " [ 12.90051962 -31.55589633]\n", + " [ 18.27651958 -31.55650284]\n", + " [ 23.65251954 -31.55710934]\n", + " [ 29.02851952 -31.55771586]\n", + " [ 2.15198038 -0.8796835 ]\n", + " [ 7.52798035 -0.88029001]\n", + " [ 12.90398031 -0.88089652]\n", + " [ 18.27998027 -0.88150303]\n", + " [ 23.65598025 -0.88210954]\n", + " [ 29.03198021 -0.88271605]\n", + " [ 30.92623357 -29.66042994]\n", + " [ 30.92684009 -24.28442998]\n", + " [ 30.9274466 -18.90843001]\n", + " [ 30.9280531 -13.53243004]\n", + " [ 30.92865961 -8.15643008]\n", + " [ 30.92926612 -2.78043011]\n", + " [ 0.2510197 -31.55446923]\n", + " [ 0.2510197 -31.55446923]\n", + " [ 30.9294802 -0.88293012]\n", + " [ 30.9294802 -0.88293012]\n", + " [ 2.14873376 -29.65718332]\n", + " [ 7.52473372 -29.65778983]\n", + " [ 12.90073369 -29.65839633]\n", + " [ 18.27673365 -29.65900285]\n", + " [ 23.65273362 -29.65960936]\n", + " [ 29.02873359 -29.66021587]\n", + " [ 2.14934027 -24.28118335]\n", + " [ 7.52534023 -24.28178986DEBUG:root:optics_fp: rtanth: [31.36436077 26.97807037 22.59183361 18.20568928 13.8197254 9.43419362\n", + " 5.05021974 0.69781153 31.36436077 31.70156673 32.63030877 34.10229142\n", + " 36.05103355 38.40402676 41.09188526 44.05335752 0.69781153 4.66402697\n", + " 9.02778296 13.40634529 17.78878395 22.17280059 26.55761376 30.94288484\n", + " 44.05335752 41.04621131 38.30621526 35.89459992 33.88155828 32.34160155\n", + " 31.34453543 30.94288484 29.45203736 24.07626653 18.70062748 13.32527965\n", + " 7.95081375 2.58274138 31.42169962 32.23771351 33.8971959 36.28460223\n", + " 39.26738572 42.72102005 2.2467047 7.54947995 12.91295338 18.28378612\n", + " 23.65696634 29.03119064 42.70202201 39.18809499 36.13521339 33.66902518\n", + " 31.92578297 31.02758019 31.34947523 31.34947523 30.92821126 30.92821126\n", + " 29.52890302 30.39577404 32.15047118 34.65840831 37.76983569 41.34874196\n", + " 24.17023416 25.22195839 27.31111317 30.22332497 33.74617895 37.70891894\n", + " 18.82145258 20.1542562 22.71439544 26.14376082 30.14716324 34.52548949\n", + " 13.49432055 15.2984824.44078242]\n", + " [ 7.45574702 -24.44306058]\n", + " [ 12.83174654 -24.44533875]\n", + " [ 18.20774606 -24.44761692]\n", + " [ 23.58374558 -24.44989508]\n", + " [ 28.95974509 -24.45217325]\n", + " [ 2.08202567 -19.0647829 ]\n", + " [ 7.45802519 -19.06706107]\n", + " [ 12.83402471 -19.06933924]\n", + " [ 18.21002422 -19.0716174 ]\n", + " [ 23.58602374 -19.07389557]\n", + " [ 28.96202325 -19.07617373]\n", + " [ 2.08430384 -13.68878339]\n", + " [ 7.46030335 -13.69106155]\n", + " [ 12.83630287 -13.69333972]\n", + " [ 18.21230239 -13.69561789]\n", + " [ 23.58830191 -13.69789605]\n", + " [ 28.96430143 -13.70017422]\n", + " [ 2.086582 -8.31278387]\n", + " [ 7.46258152 -8.31506203]\n", + " [ 12.83858103 -8.3173402 ]\n", + " [ 18.21458055 -8.31961837]\n", + " [ 23.59058007 -8.32189653]\n", + " [ 28.96657959 -8.3241747 ]\n", + " [ 2.08886017 -2.93678435]\n", + " [ 7.46485969 -2.93906252]\n", + " [ 12.8408592 -2.94134068]\n", + " [ 18.21685872 -2.94361885]\n", + " [ 23.59285824 -2.94589701]\n", + " [ 28.96885776 -2.94817518]]\n", + "53 18.54166578 22.61295734 27.14223759 31.93523187\n", + " 8.23098104 10.94056736 15.14746618 19.92481371 24.9470123 30.09171641\n", + " 3.34726194 7.9467DEBUG:root:mm_to_pix: fitpx: [[0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]]\n", + "4.91445142 -24.26296538]\n", + " [-19.53845145 -24.2635869 ]\n", + " [-14.16245149 -24.26420842]\n", + " [ -8.78645152 -24.26482994]\n", + " [ -3.41045156 -24.26545147]\n", + " [-30.28982986 -18.88634389]\n", + " [-24.91382989 -18.88696541]\n", + " [-19.53782993 -18.88758693]\n", + " [-14.16182997 -18.88820846]\n", + " [ -8.78583 -18.88882997]\n", + " [ -3.40983004 -18.8894515 ]\n", + " [-30.28920834 -13.51034392]\n", + " [-24.91320837 -13.51096545]\n", + " [-19.53720841 -13.51158697]\n", + " [-14.16120844 -13.51220849]\n", + " [ -8.78520848 -13.51283002]\n", + " [ -3.40920852 -13.51345154]\n", + " [-30.28858681 -8.13434396]\n", + " [-24.91258685 -8.13496548]\n", + " [-19.53658688 -8.135587 ]\n", + " [-14.16058692 -8.13620852]\n", + " [ -8.78458696 -8.13683005]\n", + " [ -3.40858699 -8.13745157]\n", + " [-30.28796529 -2.75834399]\n", + " [-24.91196532 -2.75896552]\n", + " [-19.53596536 -2.75958704]\n", + " [-14.1599654 -2.76020856]\n", + " [ -8.78396543 -2.76083009]\n", + " [ -3.40796547 -2.76145161]]\n", + "DEBUG:root:optics_fp: xyfp shape: (96, 2)\n", + "6841 13.14917661 18.45137705 23.78673027 29.13702987]\n", + " 0.08913848 0.09004163 0.09077781 0.09134344 0.09173387 0.09194479\n", + " 0.0538804 0.0544282 0.05487585 0.05522072 0.05545959 0.05558951\n", + " 0.018307 0.01849597 0.01865108 0.01877134 0.01885557 0.01890269]\n", + " [0.95758866 0.96239353 0.96661025 0.97017582 0.97303851 0.97515771\n", + " 0.9765038 0.97705813 0.95758866 0.96250106 0.96683156 0.9705155\n", + " 0.97349956 0.97574149 0.97721007 0.97788502 0.97705813 0.98262014\n", + " 0.98750643 0.99165333 0.99500728 0.99752486 0.99917322 0.99993064\n", + " 0.97788502 0.98335097 0.98813132 0.9921639 0.99539662 0.99778762\n", + " 0.99930564 0.99993064 0.9597694 0.96527198 0.96982717 0.97333506\n", + " 0.97572086 0.97693461 0.95981506 0.96545384 0.97015298 0.97380957\n", + " 0.97634587 0.97770893 0.97956122 0.98593216 0.99122376 0.99533322\n", + " 0.99818069 0.99971026 0.98034713 0.98659349 0.99174716 0.99570809\n", + " 0.99839923 0.99976769 0.95762372 0.95762372 0.99992898 0.99992898\n", + " 0.96199495 0.96771922 0.97248704 0.97619571 0.97876753 0.9801495\n", + " 0.96758278 0.97352009 0.97845943 0.98229851 0.98495952 0.98638907\n", + " 0.97220607 0.9783139 0.98339112 0.98733555 0.99006893 0.99153721\n", + " 0.97576509 0.98200129 0.98718283 0.99120735 0.99399598 0.9954939\n", + " 0.97818511 0.9845]\n", + " [ 12.9013402 -24.28239637]\n", + " [ 18.27734016 -24.28300288]\n", + " [ 23.65334013 -24.28360939]\n", + " [ 29.02934009 -24.2842159 ]\n", + " [ 2.14994678 -18.90518338]\n", + " [ 7.52594674 -18.90578989]\n", + " [ 12.90194671 -18.9063964 ]\n", + " [ 18.27794667 -18.90700292]\n", + " [ 23.65394664 -18.90760943]\n", + " [ 29.0299466 -18.90821593]\n", + " [ 2.15055329 -13.52918342]\n", + " [ 7.52655325 -13.52978993]\n", + " [ 12.90255322 -13.53039644]\n", + " [ 18.27855318 -13.53100295]\n", + " [ 23.65455315 -13.53160946]\n", + " [ 29.03055312 -13.53221597]\n", + " [ 2.1511598 -8.15318346]\n", + " [ 7.52715976 -8.15378996]\n", + " [ 12.90315973 -8.15439647]\n", + " [ 18.27915969 -8.15500298]\n", + " [ 23.65515966 -8.15560949]\n", + " [ 29.03115962 -8.156216 ]\n", + " [ 2.1517663 -2.77718348]\n", + " [ 7.52776627 -2.77779 ]\n", + " [ 12.90376624 -2.77839651]\n", + " [ 18.2797662 -2.77900302]\n", + " [ 23.65576617 -2.77960953]\n", + " [ 29.03176613 -2.78021604]]\n", + "DEBUG:root:mm_to_pix: fitpx.shape: (96, 2)\n", + "0743 0.98975924 0.99383794 0.99666407 0.99818215\n", + " 0.97941611 0.98578194 0.99106934 0.99517556 0.99802078 0.99954914]]\n", + " [ 12.83747171 -24.1693DEBUG:root:radec2pix: camVec Shape: (3, 96)\n", + "6824]\n", + " [ 18.21347171 -24.16922862]\n", + " [ 23.58947171 -24.16908901]\n", + " [ 28.9654717 -24.16894939]\n", + " [ 2.0853321 -18.79364747]\n", + " [ 7.46133209 -18.79350785]\n", + " [ 12.83733209 -18.79336824]\n", + " [ 18.21333209 -18.79322862]\n", + " [ 23.58933209 -18.79308901]\n", + " [ 28.96533209 -18.79294939]\n", + " [ 2.08519248 -13.41764748]\n", + " [ 7.46119248 -13.41750786]\n", + " [ 12.83719247 -13.41736824]\n", + " [ 18.21319248 -13.41722863]\n", + " [ 23.58919247 -13.41708901]\n", + " [ 28.96519247 -13.41694939]\n", + " [ 2.08505286 -8.04164748]\n", + " [ 7.46105286 -8.04150786]\n", + " [ 12.83705286 -8.04136825]\n", + " [ 18.21305286 -8.04122863]\n", + " [ 23.58905286 -8.04108901]\n", + " [ 28.96505285 -8.04094939]\n", + " [ 2.08491324 -2.66564748]\n", + " [ 7.46091324 -2.66550786]\n", + " [ 12.83691324 -2.66536825]\n", + " [ 18.21291324 -2.66522863]\n", + " [ 23.58891323 -2.66508901]\n", + " [ 28.96491324 -2.66494939]]\n", + "17691 0.13388973]\n", + " [-0.63796561 0.76008714 0.12356143]\n", + " [-0.66345349 0.73962739 0.11305217]\n", + " [-0.68859362 0.71788127 0.10239782]\n", + " [-0.7131978 0.69494637 0.091643 ]\n", + " [-0.73709529 0.67093625 0.08083985]\n", + " [-0.6114585 0.72174155 0.32435727]\n", + " [-0.6114585 0.72174155 0.32435727]\n", + " [-0.7453321 0.66222885 0.07702602]\n", + " [-0.7453321 0.66222885 0.07702602]\n", + " [-0.62101798 0.71994516 0.30986391]\n", + " [-0.62075352 0.73349159 0.27686667]\n", + " [-0.61981769 0.7459476 0.24369698]\n", + " [-0.61824198 0.75725991 0.21055706]\n", + " [-0.61607665 0.76739094 0.17765332]\n", + " [-0.61339212 0.77631682 0.14519745]\n", + " [-0.64785676 0.6997455 0.30106123]\n", + " [-0.64752942 0.71345257 0.2677519 ]\n", + " [-0.64645614 0.72608981 0.23428198]\n", + " [-0.64466837 0.73760417 0.20085511]\n", + " [-0.64221584 0.74795923 0.16767769]\n", + " [-0.63916757 0.75713323 0.13495959]\n", + " [-0.67446482 0.67823683 0.29170536]\n", + " [-0.6740783 0.69208266 0.25814732]\n", + " [-0.67287647 0.70488476 0.22444317]\n", + " [-0.67089133 0.71658979 0.19079806]\n", + " [-0.668173 0.72716175 0.15741865]\n", + " [-0.66479018 0.73658023 0.12451338]\n", + " [-0.70063966 0.65549695 0.28182941]\n", + " [-0.70019763 0.66945927 0.24808782]\n", + " [-0.69887594 0DEBUG:root:optics_fp: xyfp shape: (96, 2)\n", + "00e+01 4.99999930e-01]\n", + " [-4.35000000e+01 4.99999930e-01]\n", + " [ 2.00150000e+03 2.04550000e+03]\n", + " [ 2.00150000e+03 2.04550000e+03]\n", + " [ 8.30000000e+01 1.27000000e+02]\n", + " [ 4.41400000e+02 1.27000000e+02]\n", + " [ 7.99800000e+02 1.27000000e+02]\n", + " [ 1.15820000e+03 1.27000000e+02]\n", + " [ 1.51660000e+03 1.27000000e+02]\n", + " [ 1.87500000e+03 1.27000000e+02]\n", + " [ 8.30000000e+01 4.85400000e+02]\n", + " [ 4.41400000e+02 4.85400000e+02]\n", + " [ 7.99800000e+02 4.85400000e+02]\n", + " [ 1.15820000e+03 4.85400000e+02]\n", + " [ 1.51660000e+03 4.85400000e+02]\n", + " [ 1.87500000e+03 4.85400000e+02]\n", + " [ 8.30000000e+01 8.43800000e+02]\n", + " [ 4.41400000e+02 8.43800000e+02]\n", + " [ 7.99800000e+02 8.43800000e+02]\n", + " [ 1.15820000e+03 8.43800000e+02]\n", + " [ 1.51660000e+03 8.43800000e+02]\n", + " [ 1.87500000e+03 8.43800000e+02]\n", + " [ 8.30000000e+01 1.20220000e+03]\n", + " [ 4.41400000e+02 1.20220000e+03]\n", + " [ 7.99800000e+02 1.20220000e+03]\n", + " [ 1.15820000e+03 1.20220000e+03]\n", + " [ 1.51660000e+03 1.20220000e+03]\n", + " [ 1.87500000e+03 1.20220000e+03]\n", + " [ 8.30000000e+01 1.56060000e+03]\n", + " [ 4.41400000e+02 1.56060000e+03]\n", + " [ 7.99800000e+02 1.56060000e+03]\n", + " [ 1.15820000e+03 1.56060000e+03]\n", + " [ 1.51660000e+03 1.56060000e+03]\n", + " [ 1.87500000e+03 1.56060000e+03]\n", + " [ 8.30000000e+01 1.91900000e+03]\n", + " [ 4.41400000e+02 1.91900000e+03]\n", + " [ 7.99800000e+02 1.91900000e+03]\n", + " [ 1.15820000e+03 1.91900000e+03]\n", + " [ 1.51660000e+03 1.91900000e+03]\n", + " [ 1.87500000e+03 1.91900000e+03]]\n", + "DEBUG:root:mm_to_pix: fitpx: [[0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]]\n", + "DEBUG:root:optics_fp: cphi: [0.00736113 0.00855795 0.01021949 0.01268159 0.01670634 0.02447236\n", + " 0.04571623 0.33085868 0.00736113 0.14564913 0.27593163 0.39264701\n", + " 0.49309519 0.57710146 0.64609955 0.70223653 0.33085868 0.98998261\n", + " 0.99733613 0.99879292 0.99931459 0.99955889 0.99969254 0.99977352\n", + " 0.70223653 0.7536841 0.80759419 0.86185323 0.91305945 0.9565351\n", + " 0.98696237 0.99977352 0.00834839 0.01021242 0.01314806 0.01845192\n", + " 0.03092476 0.09520001 0.06821327 0.23324784 0.38042607 0.50355732\n", + " 0.60221419 0.67936994 0.95400922 0.99601258 0.99863886 0.99932131\n", + " 0.99959465 0.99973085 0.72410803 0.78903751 0.85569931 0.91837755\n", + " 0.96852369 0.99656102 0.0078431 0.0078431 DEBUG:root:mm_to_pix: fitpx.shape: (96, 2)\n", + "DEBUG:root:make_az_asym: xyp: [[ 0.16415906 -31.72847131]\n", + " [ 0.16601788 -27.34204313]\n", + " [ 0.1678767 -22.95561497]\n", + " [ 0.16973552 -18.56918678]\n", + " [ 0.17159434 -14.1827586 ]\n", + " [ 0.17345315 -9.79633043]\n", + " [ 0.17531197 -5.40990225]\n", + " [ 0.17717079 -1.02347407]\n", + " [ 0.16415906 -31.72847131]\n", + " [ 4.55058724 -31.73033014]\n", + " [ 8.93701541 -31.73218895]\n", + " [ 13.32344359 -31.73404778]\n", + " [ 17.70987177 -31.73590659]\n", + " [ 22.09629995 -31.73776541]\n", + " [ 26.48272812 -31.73962422]\n", + " [ 30.8691563 -31.74148305]\n", + " [ 0.17717079 -1.02347407]\n", + " [ 4.56359897 -1.02533289]\n", + " [ 8.95002714 -1.02719171]\n", + " [ 13.33645532 -1.02905053]\n", + " [ 17.7228835 -1.03090935]\n", + " [ 22.10931168 -1.03276817]\n", + " [ 26.49573986 -1.03462699]\n", + " [ 30.88216803 -1.0364858 ]\n", + " [ 30.8691563 -31.74148305]\n", + " [ 30.87101512 -27.35505487]\n", + " [ 30.87287394 -22.96862669]\n", + " [ 30.87473276 -18.58219851]\n", + " [ 30.87659158 -14.19577034]\n", + " [ 30.8784504 -9.80934216]\n", + " [ 30.88030922 -5.42291398]\n", + " [ 30.88216803 -1.0364858 ] 0.99976286 0.99976286\n", + " 0.07258573 0.24738232 0.40109449 0.52718454 0.6260916 0.70191681\n", + " 0.08867837 0.2981282 0.47216592 0.60454556 0.70074236 0.76966876\n", + " 0.11387947 0.37309127 0.56771826 0.69888097 0.78439808 0.84063622\n", + " 0.15883549 0.49151121 0.69548104 0.80800475 0.87123904 0.90881999\n", + " 0.26040359 0.68729315 0.85132238 0.9170162 0.94790417 0.96449723\n", + " 0.6403374 0.94621821 0.98069844 0.99024463 0.99414155 0.99609937]\n", + "\n", + " [ 0.17996951 -29.81597784]\n", + " [ 0.18224768 -24.43997833]\n", + " [ 0.18452584 -19.06397881]\n", + " [ 0.18680401 -13.6879793 ]\n", + " [ 0.18908217 -8.31197977]\n", + " [ 0.19136034 -2.93598025]\n", + " [ 2.07666524 -31.71428177]\n", + " [ 7.45266476 -31.71655993]\n", + " [ 12.82866428 -31.7188381 ]\n", + " [ 18.2046638 -31.72111627]\n", + " [ 23.58066331 -31.72339443]\n", + " [ 28.95666283 -31.7256726 ]\n", + " [ 2.08966426 -1.03928452]\n", + " [ 7.46566378 -1.04156269]\n", + " [ 12.8416633 -1.04384085]\n", + " [ 18.21766282 -1.04611902]\n", + " [ 23.59366233 -1.04839718]\n", + " [ 28.96966185 -1.05067535]\n", + " [ 30.85496675 -29.82897686]\n", + " [ 30.85724492 -24.452DEBUG:root:radec2pix: fitpx: [[ 2.13550000e+03 -4.99999951e-01]\n", + " [ 2.13550000e+03 2.91928572e+02]\n", + " [ 2.13550000e+03 5.84357142e+02]\n", + " [ 2.13550000e+03 8.76785714e+02]\n", + " [ 2.13550000e+03 1.16921429e+03]\n", + " [ 2.13550000e+03 1.46164286e+03]\n", + " [ 2.13550000e+03 1.75407143e+03]\n", + " [ 2.13550000e+03 2.04650000e+03]\n", + " [ 2.13550000e+03 -4.99999951e-01]\n", + " [ 2.42792857e+03 -5.00000176e-01]\n", + " [ 2.72035714e+03 -5.00000069e-01]\n", + " [ 3.01278571e+03 -5.00000257e-01]\n", + " [ 3.30521429e+03 -4.99999992e-01]\n", + " [ 3.59764286e+03 -5.00000241e-01]\n", + " [ 3.89007143e+03 -4.99999730e-01]\n", + " [ 4.18250000e+03 -5.00000010e-01]\n", + " [ 2.13550000e+03 2.04650000e+03]\n", + " [ 2.42792857e+03 2.04650000e+03]\n", + " [ 2.72035714e+03 2.04650000e+03]\n", + " [ 3.01278571e+03 2.04650000e+03]\n", + " [ 3.30521429e+03 2.04650000e+03]\n", + " [ 3.59764286e+03 2.04650000e+03]\n", + " [ 3.89007143e+03 2.04650000e+03]\n", + " [ 4.18250000e+03 2.04650000e+03]\n", + " [ 4.18250000e+03 -5.00000010e-01]\n", + " [ 4.18250000e+03 2.91928572e+02]\n", + " [ 4.18250000e+03 5.84357143e+02]\n", + " [ 4.18250000e+03 8.76785DEBUG:root:radec2pix: xyfp: [[ 0.236018 -31.56946754]\n", + " [ 0.23651287 -27.18303899]\n", + " [ 0.23700774 -22.79661046]\n", + " [ 0.23750261 -18.41018192]\n", + " [ 0.23799748 -14.02375336]\n", + " [ 0.23849235 -9.63732482]\n", + " [ 0.23898721 -5.25089628]\n", + " [ 0.23948208 -0.86446773]\n", + " [ 0.236018 -31.56946754]\n", + " [ 4.62244655 -31.56996241]\n", + " [ 9.00887509 -31.57045728]\n", + " [ 13.39530363 -31.57095214]\n", + " [ 17.78173218 -31.57144701]\n", + " [ 22.16816072 -31.57194188]\n", + " [ 26.55458927 -31.57243675]\n", + " [ 30.94101781 -31.57293162]\n", + " [ 0.23948208 -0.86446773]\n", + " [ 4.62591062 -0.8649626 ]\n", + " [ 9.01233917 -0.86545747]\n", + " [ 13.39876771 -0.86595234]\n", + " [ 17.78519626 -0.86644721]\n", + " [ 22.1716248 -0.86694208]\n", + " [ 26.55805334 -0.86743695]\n", + " [ 30.94448189 -0.86793181]\n", + " [ 30.94101781 -31.57293162]\n", + " [ 30.94151268 -27.18650307]\n", + " [ 30.94200754 -22.80007453]\n", + " [ 30.94250242 -18.41364599]\n", + " [ 30.94299728 -14.02721745]\n", + " [ 30.94349215 -9.6407889 ]\n", + " [ 30.94398702 -5.25436036]\n", + " [ 30.94448189 -0.86793181]\n", + " [ 0.25123377 -29.65696924]\n", + " [ 0.25184028 DEBUG:root:cartToSphere: vec: [[0.20582147 0.20164691 0.95758866]\n", + " [0.20765008 0.17515749 0.96239353]\n", + " [0.20920683 0.1479768 0.96661025]\n", + " [0.21049219 0.12021614 0.97017582]\n", + " [0.21150557 0.09198614 0.97303851]\n", + " [0.2122456 0.06339752 0.97515771]\n", + " [0.21271065 0.03456171 0.9765038 ]\n", + " [0.21289938 0.00559103 0.97705813]\n", + " [0.20582147 0.20164691 0.95758866]\n", + " [0.17940403 0.2034844 0.96250106]\n", + " [0.15227891 0.20505578 0.96683156]\n", + " [0.12455745 0.20636157 0.9705155 ]\n", + " [0.09635017 0.2074012 0.97349956]\n", + " [0.06776763 0.20817322 0.97574149]\n", + " [0.03892112 0.20867589 0.97721007]\n", + " [0.00992292 0.20890768 0.97788502]\n", + " [0.21289938 0.00559103 0.97705813]\n", + " [0.18554193 0.00564441 0.98262014]\n", + " [0.15747589 0.00569099 0.98750643]\n", + " [0.1288054 0.00573063 0.99165333]\n", + " [0.09963586 0.00576317 0.99500728]\n", + " [0.07007602 0.00578837 0.99752486]\n", + " [0.04023879 0.00580605 0.99917322]\n", + " [0.01024104 0.00581605 0.99993064]\n", + " [0.00992292 0.20890768 0.97788502]\n", + " [0.01000636 0.18144072 0.98335097]\n", + " [0.01007758 0.15328055 0.98813132.68241009 0.21421694]\n", + " [-0.69670758 0.69429534 0.18042319]\n", + " [-0.69374369 0.70507881 0.14691349]\n", + " [-0.69005356 0.71474049 0.11389522]\n", + " [-0.7261915 0.63162267 0.27147506]\n", + " [-0.72569794 0.64567851 0.23761684]\n", + " [-0.72426569 0.65876144 0.20364816]\n", + " [-0.72192892 0.67081642 0.16977625]\n", + " [-0.71874013 0.68180641 0.13620809]\n", + " [-0.71476976 0.69171108 0.10315021]\n", + " [-0.75094388 0.60673101 0.26069288]\n", + " [-0.75040329 0.62085659 0.22678624]\n", + " [-0.74887085 0.63405409 0.19278967]\n", + " [-0.74638184 0.64626741 0.15891058]\n", + " [-0.74299023 0.65745834 0.12535573]\n", + " [-0.7387678 0.66760553 0.0923309 ]]\n", + "]\n", + " [0.01013637 0.12453134 0.9921639 ]\n", + " [0.01018243 0.09529889 0.99539662]\n", + " [0.01021541 0.06569253 0.99778762]\n", + " [0.01023502 0.0358258 0.99930564]\n", + " [0.01024104 0.00581605 0.99993064]\n", + " [0.20656285 0.19019593 0.9597694 ]\n", + " [0.20862007 0.15725033 0.96527198]\n", + " [0.2102697 0.12337711 0.96982717]\n", + " [0.2115111 0.08878017 0.97333506]\n", + " [0.21234181 0.0536634 0.97572086]\n", + " [0.21275892 0.01823232 0.976DEBUG:root:make_az_asym: xyp: [[-32.203794 -31.5506227 ]\n", + " [-32.20328688 -27.16419416]\n", + " [-32.20277976 -22.77776561]\n", + " [-32.20227264 -18.39133707]\n", + " [-32.20176553 -14.00490853]\n", + " [-32.20125841 -9.61847999]\n", + " [-32.20075129 -5.23205144]\n", + " [-32.20024417 -0.8456229 ]\n", + " [-32.203794 -31.5506227 ]\n", + " [-27.81736545 -31.55112981]\n", + " [-23.43093691 -31.55163693]\n", + " [-19.04450837 -31.55214405]\n", + " [-14.65807983 -31.55265117]\n", + " [-10.27165129 -31.55315829]\n", + " [ -5.88522274 -31.5536654 ]\n", + " [ -1.4987942 -31.55417252]\n", + " [-32.20024417 -0.8456229 ]\n", + " [-27.81381563 -0.84613002]\n", + " [-23.42738708 -0.84663714]\n", + " [-19.04095854 -0.84714426]\n", + " [-14.65453 -0.84765137]\n", + " [-10.26810146 -0.84815849]\n", + " [ -5.88167292 -0.84866561]\n", + " [ -1.49524438 -0.84917273]\n", + " [ -1.4987942 -31.55417252]\n", + " [ -1.49828708 -27.16774398]\n", + " [ -1.49777997 -22.78131544]\n", + " [ -1.49727285 -18.39488689]\n", + " [ -1.49676573 -14.00845835]\n", + " [ -1.49625861 -9.62202981]\n", + " [ -1.49575149 -5.23560127]\n", + " [ -1.49524438 -0.84917273]\n", + " [-32.18857289 -29.63812445]\n", + " [-32.1879513DEBUG:root:radec2pix: xyfp: [[ -0.24606 31.536148 ]\n", + " [ -0.24606 27.14971943]\n", + " [ -0.24606 22.76329086]\n", + " [ -0.24606 18.37686229]\n", + " [ -0.24606 13.99043371]\n", + " [ -0.24606 9.60400514]\n", + " [ -0.24606 5.21757658]\n", + " [ -0.24606 0.831148 ]\n", + " [ -0.24606 31.536148 ]\n", + " [ -4.63248857 31.536148 ]\n", + " [ -9.01891714 31.536148 ]\n", + " [-13.40534571 31.536148 ]\n", + " [-17.79177429 31.536148 ]\n", + " [-22.17820286 31.536148 ]\n", + " [-26.56463143 31.536148 ]\n", + " [-30.95106 31.536148 ]\n", + " [ -0.24606 0.831148 ]\n", + " [ -4.63248857 0.831148 ]\n", + " [ -9.01891714 0.831148 ]\n", + " [-13.40534571 0.831148 ]\n", + " [-17.79177429 0.831148 ]\n", + " [-22.17820285 0.831148 ]\n", + " [-26.56463143 0.831148 ]\n", + " [-30.95106 0.831148 ]\n", + " [-30.95106 31.536148 ]\n", + " [-30.95106 27.14971943]\n", + " [-30.95106 22.76329086]\n", + " [-30.95106 18.37686228]\n", + " [-30.95106 13.99043371]\n", + " [-30.95106 9.60400514]\n", + " [-30.95106 5.21757657]\n", + " [-30.95106 0.831148 ]\n", + " [ -0.26106 29.623648 ]\n", + " [ -0.26106 DEBUG:root:radec2pix: xyfp Shape: (96, 2)\n", + "DEBUG:root:optics_fp: sphi: [-0.99997291 -0.99996338 -0.99994778 -0.99991959 -0.99986044 -0.99970051\n", + " -0.99895447 -0.94368031 -0.99997291 -0.98933631 -0.96117727 -0.91968926\n", + " -0.86997536 -0.81667246 -0.76325315 -0.71194371 -0.94368031 -0.14118936\n", + " -0.07294272 -0.04911935 -0.03701833 -0.02969904 -0.02479556 -0.0212815\n", + " -0.71194371 -0.65723685 -0.5897386 -0.50715777 -0.40782648 -0.29161723\n", + " -0.16095117 -0.0212815 -0.99996515 -0.99994785 -0.99991356 -0.99982975\n", + " -0.99952172 -0.99545817 -0.99767076 -0.97241732 -0.92481134 -0.86396182\n", + " -0.79833456 -0.73379594 -0.29977727 -0.0892129 -0.05215778 -0.03683652\n", + " -0.02846988 -0.02319957 -0.68968657 -0.61434502 -0.51747338 -0.39570528\n", + " -0.24892141 -0.08286212 -0.99996924 -0.99996924 -0.02177659 -0.02177659\n", + " -0.99736218 -0.96891795 -0.91603668 -0.84975082 -0.77974951 -0.71225894\n", + " -0.99606031 -0.95452584 -0.88150969 -0.79657056 -0.71341443 -0.63844342\n", + " -0.99349457 -0.92779465 -0.82322292 -0.71523799 -0.620DEBUG:root:make_az_asym: xyp: shape: (96, 2)\n", + "25773 -0.54160017\n", + " -0.98730506 -0.87087125 -0.71854445 -0.58917597 -0.49085898 -0.41718848\n", + " -0.96549986 -0.72638015 -0.52464293 -0.39884995 -0.31855562 -0.26409298\n", + " -0.76809376 -0.32352912 -0.19552639 -0.13933979 -0.10808594 -0.08823861]\n", + "714e+02]\n", + " [ 4.18250000e+03 1.16921429e+03]\n", + " [ 4.18250000e+03 1.46164286e+03]\n", + " [ 4.18250000e+03 1.75407143e+03]\n", + " [ 4.18250000e+03 2.04650000e+03]\n", + " [ 2.13650000e+03 1.27000000e+02]\n", + " [ 2.13650000e+03 4.85400000e+02]\n", + " [ 2.13650000e+03 8.43800000e+02]\n", + " [ 2.13650000e+03 1.20220000e+03]\n", + " [ 2.13650000e+03 1.56060000e+03]\n", + " [ 2.13650000e+03 1.91900000e+03]\n", + " [ 2.26300000e+03 4.99999720e-01]\n", + " [ 2.62140000e+03 4.99999983e-01]\n", + " [ 2.97980000e+03 4.99999771e-01]\n", + " [ 3.33820000e+03 4.99999773e-01]\n", + " [ 3.69660000e+03 5.00000075e-01]\n", + " [ 4.05500000e+03 4.99999913e-01]\n", + " [ 2.26300000e+03 2.04550000e+03]\n", + " [ 2.62140000e+03 2.04550000e+03]\n", + " [ 2.97980000e+03 2.04550000e+03]\n", + " [ 3.33820000e+03 2.04550000e+03]\n", + " [ 3.69660000e+03 2.04550000e+03]\n", + " [ 4.05500000e+03 2.04550000e+03]\n", + " [ 4.18150000e+03 1.27000000e+02]\n", + " [ 4.18150000e+03 4.85400000e+02]\n", + " [ 4.18150000e+03 8.43800000e+02]\n", + " [ 4.18150000e+03 1.20220000e+03]\n", + " [ 4.18150000e+03 1.56060000e+03]\n", + " [ 4.18150000e+03 1.91900000e+03]\n", + " [ 2.13650000e+03 4.99999930e-01]\n", + " [ 2.13650000e+03 4.99999930e-01]\n", + " [ 4.18150000e+03 2.04550000e+03]\n", + " [ 4.18150000e+03 2.04550000e+03]\n", + " [ 2.26300000e+03 1.27000000e+02]\n", + " [ 2.62140000e+03 1.27000000e+02]\n", + " [ 2.97980000e+03 1.27000000e+02]\n", + " [ 3.33820000e+03 1.27000000e+02]\n", + " [ 3.69660000e+03 1.27000000e+02]\n", + " [ 4.05500000e+03 1.27000000e+02]\n", + " [ 2.26300000e+03 4.85400000e+02]\n", + " [ 2.62140000e+03 4.85400000e+02]\n", + " [ 2.97980000e+03 4.85400000e+02]\n", + " [ 3.33820000e+03 4.85400000e+02]\n", + " [ 3.69660000e+03 4.85400000e+02]\n", + " [ 4.05500000e+03 4.85400000e+02]\n", + " [ 2.26300000e+03 8.43800000e+02]\n", + " [ 2.62140000e+03 8.43800000e+02]\n", + " [ 2.97980000e+03 8.43800000e+02]\n", + " [ 3.33820000e+03 8.43800000e+02]\n", + " [ 3.69660000e+03 8.438000 24.247648 ]\n", + " [ -0.26106 18.87164801]\n", + " [ -0.26106 13.495648 ]\n", + " [ -0.26106 8.119648 ]\n", + " [ -0.26106 2.743648 ]\n", + " [ -2.15856 31.521148 ]\n", + " [ -7.53456 31.521148 ]\n", + " [-12.91056 31.521148 ]\n", + " [-18.28656 31.521148 ]\n", + " [-23.66256 31.521148 ]\n", + " [-29.03856 31.521148 ]\n", + " [ -2.15856 0.846148 ]\n", + " [ -7.53456 0.846148 ]\n", + " [-12.91056 0.846148 ]\n", + " [-18.28655999 0.846148 ]\n", + " [-23.66256 0.846148 ]\n", + " [-29.03856 0.846148 ]\n", + " [-30.93606 29.623648 ]\n", + " [-30.93606 24.247648 ]\n", + " [-30.93606 18.871648 ]\n", + " [-30.93606 13.495648 ]\n", + " [-30.93606 8.119648 ]\n", + " [-30.93606 2.743648 ]\n", + " [ -0.26106 31.521148 ]\n", + " [ -0.26106 31.521148 ]\n", + " [-30.93606 0.846148 ]\n", + " [-30.93606 0.846148 ]\n", + " [ -2.15856 29.623648 ]\n", + " [ -7.53456 29.623648 ]\n", + " [-12.91056 29.623648 ]\n", + " [-18.28656 29.623648 ]\n", + " [-23.66256 29.623648 ]\n", + " [-29.03856 29.623648 ]\n", + " [ -2.15856 24.247648 ]\n", + " [ -7.53456 24.247648 ]\n", + "97735]\n", + " [ 30.85952308 -19.07697783]\n", + " [ 30.86180126 -13.70097831]\n", + " [ 30.86407941 -8.32497879]\n", + " [ 30.86635759 -2.94897928]\n", + " [ 0.17916541 -31.71347767]\n", + " [ 0.17916541 -31.71347767]\n", + " [ 30.86716168 -1.05147945]\n", + " [ 30.86716168 -1.05147945]\n", + " [ 2.07746934 -29.81678193]\n", + " [ 7.45346886 -29.8190601 ]\n", + " [ 12.82946837 -29.82133827]\n", + " [ 18.20546789 -29.82361643]\n", + " [ 23.58146741 -29.82589461]\n", + " [ 28.95746693 -29.82817277]\n", + " [ 2.07974751 -24.44078242]\n", + " [ 7.45574702 -24.44306058]\n", + " [ 12.83174654 -24.44533875]\n", + " [ 18.20774606 -24.44761692]\n", + " [ 23.58374558 -24.44989508]\n", + " [ 28.95974509 -24.45217325]\n", + " [ 2.08202567 -19.0647829 ]\n", + " [ 7.45802519 -19.06706107]\n", + " [ 12.83402471 -19.06933924]\n", + " [ 18.21002422 -19.0716174 ]\n", + " [ 23.58602374 -19.07389557]\n", + " [ 28.96202325 -19.07617373]\n", + " [ 2.08430384 -13.68878339]\n", + " [ 7.46030335 -13.69106155]\n", + " [ 12.83630287 -13.69333972]\n", + " [ 18.21230239 -13.69561789]\n", + " [ 23.58830191 -13.69789605]\n", + " [ 28.96430143 -13.70017422]\n", + " [ 2.086582 -8.31278387]\n", + " [ 7.46258152 -8.31506203]\n", + " [ 12.86 -24.26212448]\n", + " [-32.18732984 -18.88612452]\n", + " [-32.18670832 -13.51012455]\n", + " [-32.1860868 -8.13412459]\n", + " [-32.18546528 -2.75812462]\n", + " [-30.29129227 -31.5358438 ]\n", + " [-24.91529231 -31.53646533]\n", + " [-19.53929235 -31.53708685]\n", + " [-14.16329238 -31.53770837]\n", + " [ -8.78729242 -31.53832989]\n", + " [ -3.41129245 -31.53895142]\n", + " [-30.28774592 -0.86084401]\n", + " [-24.91174595 -0.86146553]\n", + " [-19.53574599 -0.86208705]\n", + " [-14.15974603 -0.86270858]\n", + " [ -8.78374606 -0.8633301 ]\n", + " [ -3.4077461 -0.86395162]\n", + " [ -1.5135731 -29.6416708 ]\n", + " [ -1.51295157 -24.26567084]\n", + " [ -1.51233005 -18.88967087]\n", + " [ -1.51170853 -13.51367091]\n", + " [ -1.51108701 -8.13767095]\n", + " [ -1.51046548 -2.76167097]\n", + " [-32.18879227 -31.53562444]\n", + " [-32.18879227 -31.53562444]\n", + " [ -1.51024611 -0.86417099]\n", + " [ -1.51024611 -0.86417099]\n", + " [-30.29107291 -29.63834382]\n", + " [-24.91507294 -29.63896534]\n", + " [-19.53907298 -29.63958686]\n", + " [-14.16307301 -29.64020839]\n", + " [ -8.78707305 -29.64082991]\n", + " [ -3.41107308 -29.64145143]\n", + " [-30.29045138 -24.26234385]\n", + " [-24.91445142 -24.26296538DEBUG:root:optics_fp: xyfp: [[ -0.230877 31.363511 ]\n", + " [ -0.230877 26.97708243]\n", + " [ -0.230877 22.59065386]\n", + " [ -0.230877 18.20422528]\n", + " [ -0.230877 13.81779671]\n", + " [ -0.230877 9.43136815]\n", + " [ -0.230877 5.04493957]\n", + " [ -0.230877 0.658511 ]\n", + " [ -0.230877 31.363511 ]\n", + " [ -4.61730557 31.363511 ]\n", + " [ -9.00373414 31.363511 ]\n", + " [-13.39016272 31.363511 ]\n", + " [-17.77659129 31.363511 ]\n", + " [-22.16301986 31.363511 ]\n", + " [-26.54944843 31.363511 ]\n", + " [-30.935877 31.363511 ]\n", + " [ -0.230877 0.658511 ]\n", + " [ -4.61730558 0.658511 ]\n", + " [ -9.00373414 0.658511 ]\n", + " [-13.39016271 0.658511 ]\n", + " [-17.77659128 0.658511 ]\n", + " [-22.16301986 0.658511 ]\n", + " [-26.54944843 0.658511 ]\n", + " [-30.935877 0.658511 ]\n", + " [-30.935877 31.363511 ]\n", + " [-30.935877 26.97708243]\n", + " [-30.935877 22.59065386]\n", + " [-30.935877 18.20422528]\n", + " [-30.935877 13.81779671]\n", + " [-30.935877 9.43136814]\n", + " [-30.935877 5.04493957]\n", + " [-30.935877 0.658511 ]\n", + " [ -0.245877 29.451011 ]\n", + " [ -0.245877 3858103 -8.3173402 ]\n", + " [ 18.21458055 -8.31961837]\n", + " [ 23.59058007 -8.32189653]\n", + " [ 28.96657959 -8.3241747 ]\n", + " [ 2.08886017 -2.93678435]\n", + " [ 7.46485969 -2.93906252]\n", + " [ 12.8408592 -2.94134068]\n", + " [ 18.21685872 -2.94361885]\n", + " [ 23.59285824 -2.94589701]\n", + " [ 28.96885776 -2.94817518]]\n", + "]\n", + " [-19.53845145 -24.2635869 ]\n", + " [-14.16245149 -24.26420842]\n", + " [ -8.78645152 -24.26482994]\n", + " [ -3.41045156 -24.26545147]\n", + " [-30.28982986 -18.88634389]\n", + " [-24.91382989 -18.88696541]\n", + " [-19.53782993 -18.88758693]\n", + " [-14.16182997 -18.88820846]\n", + " [ -8.78583 -18.88882997]\n", + " [ -3.40983004 -18.8894515 ]\n", + " [-30.28920834 -13.51034392]\n", + " [-24.91320837 -13.51096545]\n", + " [-19.53720841 -13.51158697]\n", + " [-14.16120844 -13.51220849]\n", + " [ -8.78520848 -13.51283002]\n", + " [ -3.40920852 -13.51345154]\n", + " [-30.28858681 -8.13434396]\n", + " [-24.91258685 -8.13496548]\n", + " [-19.53658688 -8.135587 ]\n", + " [-14.16058692 -8.13620852]\n", + " [ -8.78458696 -8.13683005]\n", + " [ -3.40858699 -8.13745157]\n", + " [-30.28796529 -2.75834399]\n", + " [-24.91196532 -2.75896552]\n", + " [-19.53596536 -2.75958704]\n", + " [-14.1599654 -2.76020856]\n", + " [ -8.78396543 -2.76083009]\n", + " [ -3.40796547 -2.76145161]]\n", + " 24.075011 ]\n", + " [ -0.245877 18.699011 ]\n", + " [ -0.245877 13.323011 ]\n", + " [ -0.245877 7.947011 ]\n", + " [ -0.245877 2.571011 ]\n", + " [ -2.143377 31.348511 ]\n", + " [ -7.519377 31.348511 ]\n", + " [-12.895377 31.348511 ]\n", + " [-18.271377 31.348511 ]\n", + " [-23.647377 31.348511 ]\n", + " [-29.023377 31.348511 ]\n", + " [ -2.143377 0.673511 ]\n", + " [ -7.519377 0.673511 ]\n", + " [-12.895377 0.673511 ]\n", + " [-18.271377 0.673511 ]\n", + " [-23.64737701 0.673511 ]\n", + " [-29.023377 0.673511 ]\n", + " [-30.920877 29.451011 ]\n", + " [-30.920877 24.075011 ]\n", + " [-30.920877 18.699011 ]\n", + " [-30.920877 13.323011 ]\n", + " [-30.920877 7.947011 ]\n", + " [-30.920877 2.571011 ]\n", + " [ -0.245877 31.348511 ]\n", + " [ -0.245877 31.348511 ]\n", + " [-30.920877 0.673511 ]\n", + " [-30.920877 0.673511 ]\n", + " [ -2.143377 29.451011 ]\n", + " [ -7.519377 29.451011 ]\n", + " [-12.895377 29.451011 ]\n", + " [-18.271377 29.451011 ]\n", + " [-23.647377 29.451011 ]\n", + " [-29.023377 29.451011 ]\n", + " [ -2.143377 24.075011 ]\n", + " [ -7.519377 24.075011 ]\n", + " [-12.895377 24.075011 ]\n", + " [-18.271377 24.075011 ]\n", + " [-23.647377 24.075011 ]\n", + " [-29.023377 24.075011 ]\n", + " [ -2.143377 18.699011 ]\n", + " [ -7.519377 18.699011 ]\n", + " [-12.895377 18.699011 ]\n", + " [-18.271377 18.699011 ]\n", + " [-23.647377 18.699011 ]\n", + " [-29.023377 18.699011 ]\n", + " [ -2.143377 13.323011 ]\n", + " [ -7.519377 13.323011 ]\n", + " [-12.895377 13.323011 ]\n", + " [-18.271377 13.323011 ]\n", + " [-23.647377 13.323011 ]\n", + " [-29.023377 13.323011 ]\n", + " [ -2.143377 7.947011 ]\n", + " [ -7.519377 7.947011 ]\n", + " [-12.895377 7.947011 ]\n", + " [-18.271377 7.947011 ]\n", + " [-23.647377 7.947011 ]\n", + " [-29.023377 7.947011 ]\n", + " [ -2.143377 2.571011 ]\n", + " [ -7.519377 2.571011 ]\n", + " [-12.895377 2.571011 ]\n", + " [-18.271377 2.571011 ]\n", + " [-23.647377 2.571011 ]\n", + " [-29.023377 2.571011 ]]\n", + "00e+02]\n", + " [ 4.05500000e+03 8.43800000e+02]\n", + " [ 2.26300000e+03 1.20220000e+03]\n", + " [ 2.6214093461]\n", + " [0.19440388 0.20239118 0.95981506]\n", + " [0.16153549 0.20446311 0.96545384]\n", + " [0.12771486 0.20613616 0.97015298]\n", + " [0.09314577 0.2074097 0.97380957]\n", + " [0.05803185 0.20828117 0.97634587]\n", + " [0.02257838 0.20874739 0.97770893]\n", + " [0.20106508 0.00571471 0.97956122]\n", + " [0.16704611 0.00577657 0.98593216]\n", + " [0.13206625 0.00582791 0.99122376]\n", + " [0.09631893 0.00586841 0.99533322]\n", + " [0.06000442 0.00589767 0.99818069]\n", + " [0.02333228 0.00591534 0.99971026]\n", + " [0.01006049 0.19702358 0.98034713]\n", + " [0.01015553 0.16288078 0.98659349]\n", + " [0.01023184 0.12780019 0.99174716]\n", + " [0.01028888 0.0919758 0.99570809]\n", + " [0.01032605 0.05560896 0.99839923]\n", + " [0.01034279 0.01891032 0.99976769]\n", + " [0.20573918 0.20156436 0.95762372]\n", + " [0.20573918 0.20156436 0.95762372]\n", + " [0.01034376 0.00591876 0.99992898]\n", + " [0.01034376 0.00591876 0.99992898]\n", + " [0.19517916 0.19097333 0.96199495]\n", + " [0.16217419 0.19292238 0.96771922]\n", + " [0.12821715 0.19449762 0.97248704]\n", + " [0.09351091 0.19569785 0.97619571]\n", + " [0.05825864 0.19651986 0.97876753]\n", + " [0.02266572 0.196959DEBUG:root:make_az_asym: xyp: shape: (96, 2)\n", + " [-12.91056 24.247648 ]\n", + " [-18.28656 24.247648 ]\n", + " [-23.66256 24.247648 ]\n", + " [-29.03856 24.247648 ]\n", + " [ -2.15856 18.871648 ]\n", + " [ -7.53456 18.871648 ]\n", + " [-12.91056 18.871648 ]\n", + " [-18.28656 18.871648 ]\n", + " [-23.66256 18.871648 ]\n", + " [-29.03856 18.871648 ]\n", + " [ -2.15856 13.495648 ]\n", + " [ -7.53456 13.495648 ]\n", + " [-12.91056 13.495648 ]\n", + " [-18.28656 13.495648 ]\n", + " [-23.66256 13.495648 ]\n", + " [-29.03856 13.495648 ]\n", + " [ -2.15856 8.119648 ]\n", + " [ -7.53456 8.119648 ]\n", + " [-12.91056 8.119648 ]\n", + " [-18.28656 8.119648 ]\n", + " [-23.66256 8.119648 ]\n", + " [-29.03856 8.119648 ]\n", + " [ -2.15856 2.743648 ]\n", + " [ -7.53456 2.743648 ]\n", + " [-12.91056 2.743648 ]\n", + " [-18.28656 2.743648 ]\n", + " [-23.66256 2.743648 ]\n", + " [-29.03856 2.743648 ]]\n", + "000e+03 1.20220000e+03]\n", + " [ 2.97980000e+03 1.20220000e+03]\n", + " [ 3.33820000e+03 1.20220000e+03]\n", + " [ 3.69660000e+03 1.20220000e+03]\n", + " [ 4.05500000e+03 1.20220000e+03]\n", + " [ 2.26300000e+03 1.56060000e+03]\n", + " [ 2.62140000e+03 1.56060000e+03]\n", + " [ 2.97980000e+03 1.56060000e+03]\n", + " [ 3.33820000e+03 1.56060000e+03]\n", + " [ 3.69660000e+03 1.56060000e+03]\n", + " [ 4.05500000e+03 1.56060000e+03]\n", + " [ 2.26300000e+03 1.91900000e+03]\n", + " [ 2.62140000e+03 1.91900000e+03]\n", + " [ 2.97980000e+03 1.91900000e+03]\n", + " [ 3.33820000e+03 1.91900000e+03]\n", + " [ 3.69660000e+03 1.91900000e+03]\n", + " [ 4.05500000e+03 1.91900000e+03]]\n", + "DEBUG:root:radec2pix: xyfp: [[ 0.236018 -31.56946754]\n", + " [ 0.23651287 -27.18303899]\n", + " [ 0.23700774 -22.79661046]\n", + " [ 0.23750261 -18.41018192]\n", + " [ 0.23799748 -14.02375336]\n", + " [ 0.23849235 -9.63732482]\n", + " [ 0.23898721 -5.25089628]\n", + " [ 0.23948208 -0.86446773]\n", + " [ 0.236018 -31.56946754]\n", + " [ 4.62244655 -31.56996241]\n", + " [ 9.00887509 -31.57045728]\n", + " [ 13.39530363 -31.57095214]\n", + " [ 17.78173218 -31.57144701]\n", + " [ 22.16816072 -31.57194188]\n", + " [ 26.55458927 -31.57243675]\n", + " [ 30.94101781 -31.57293162]\n", + " [ 0.23948208 -0.86446773]\n", + " [ 4.62591062 -0.8649626 ]\n", + " [ 9.01233917 -0.86545747]\n", + " [ 13.39876771 -0.86595234]\n", + " [ 17.78519626 -0.86644721]\n", + " [ 22.1716248 -0.86694208]\n", + " [ 26.55805334 -0.86743695]\n", + " [ 30.94448189 -0.86793181]\n", + " [ 30.94101781 -31.57293162]\n", + " [ 30.94151268 -27.18650307]\n", + " [ 30.94200754 -22.80007453]\n", + " [ 30.94250242 -18.41364599]\n", + " [ 30.94299728 -14.02721745]\n", + " [ 30.94349215 -9.6407889 ]\n", + " [ 30.94398702 -5.25436036]\n", + " [ 30.94448189 -0.86793181]\n", + " [ 0.25123377 -29.65696924]\n", + " [ 0.25184028 -24.28096928]\n", + " [ 0.25244679 -18.90496931]\n", + " [ 0.2530533 -13.52896935]\n", + " [ 0.25365981 -8.15296938]\n", + " [ 0.25426632 -2.77696942]\n", + " [ 2.14851968 -31.5546833 ]\n", + " [ 7.52451965 -31.55528981]\n", + " [ 12.90051962 -31.55589633]\n", + " [ 18.27651958 -31.55650284]\n", + " [ 23.65251954 -31.55710934]\n", + " [ 29.02851952 -31.55771586]\n", + " [ 2.15198038 -0.8796835 ]\n", + " [ 7.52798035 -0.88029001]\n", + " [ 12.90398031 -0.88089652]\n", + " [ 18.27998027 -0.88150303]\n", + " [ 23.65598025 -0.88210954]\n", + " [ 29.03198021 -0.88271605]\n", + " [ 30.92623357 -29.66042994]\n", + " [ 30.92684009 -24.28442998]\n", + " [ 30.9274466 -18.DEBUG:root:fitpix2pix: ccdpx: shape: (96, 2)\n", + "DEBUG:root:mm_to_pix: fitpx: [[0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]]\n", + "90843001]\n", + " [ 30.9280531 -13.53243004]\n", + " [ 30.92865961 -8.156DEBUG:root:optics_fp: xyfp shape: (96, 2)\n", + "-24.28096928]\n", + " [ 0.25244679 -18.90496931]\n", + " [ 0.2530533 -13.52896935]\n", + " [ 0.25365981 -8.15296938]\n", + " [ 0.25426632 -2.77696942]\n", + " [ 2.14851968 -31.5546833 ]\n", + " [ 7.52451965 -31.55528981]\n", + " [ 12.90051962 -31.55589633]\n", + " [ 18.27651958 -31.55650284]\n", + " [ 23.65251954 -31.55710934]\n", + " [ 29.02851952 -31.55771586]\n", + " [ 2.15198038 -0.8796835 ]\n", + " [ 7.52798035 -0.88029001]\n", + " [ 12.90398031 -0.88089652]\n", + " [ 18.27998027 -0.88150303]\n", + " [ 23.65598025 -0.88210954]\n", + " [ 29.03198021 -0.88271605]\n", + " [ 30.92623357 -29.66042994]\n", + " [ 30.92684009 -24.28442998]\n", + " [ 30.9274466 -18.90843001]\n", + " [ 30.9280531 -13.53243004]\n", + " [ 30.92865961 -8.15643008]\n", + " [ 30.92926612 -2.78043011]\n", + " [ 0.2510197 -31.55446923]\n", + " [ 0.2510197 -31.55446923]\n", + " [ 30.9294802 -0.88293012]\n", + " [ 30.9294802 -0.88293012]\n", + " [ 2.14873376 -29.65718332]\n", + " [ 7.52473372 -29.65778983]\n", + " [ 12.90073369 -29.65839633]\n", + " [ 18.27673365 -29.65900285]\n", + " [ 23.65273362 -29.65960936]\n", + " [ 29.02873359 -29.66021587]\n", + " [ 2.14934027 -DEBUG:root:fitpix2pix: visCut: True\n", + "24.28118335]\n", + " [ 7.52534023 -24.28178986]\n", + " [ 12.9013402 -24.28239637]\n", + " [ 18.27734016 -24.28300288]\n", + " [ 23.65334013 -24.28360939]\n", + " [ 29.02934009 -24.2842159 ]\n", + " [ 2.14994678 -18.90518338]\n", + " [ 7.52594674 -18.90578989]\n", + " [ 12.90194671 -18.9063964 ]\n", + " [ 18.27794667 -18.90700292]\n", + " [ 23.65394664 -18.90760943]\n", + " [ 29.0299466 -18.90821593]\n", + " [ 2.15055329 -13.52918342]\n", + " [ 7.52655325 -13.52978993]\n", + " [ 12.90255322 -13.53039644]\n", + " [ 18.27855318 -13.53100295]\n", + " [ 23.65455315 -13.53160946]\n", + " [ 29.03055312 -13.53221597]\n", + " [ 2.1511598 -8.15318346]\n", + " [ 7.52715976 -8.15378996]\n", + " [ 12.90315973 -8.15439647]\n", + " [ 18.27915969 -8.15500298]\n", + " [ 23.65515966 -8.15560949]\n", + " [ 29.03115962 -8.156216 ]\n", + " [ 2.1517663 -2.77718348]\n", + " [ 7.52776627 -2.77779 ]\n", + " [ 12.90376624 -2.77839651]\n", + " [ 18.2797662 -2.77900302]\n", + " [ 23.65576617 -2.77960953]\n", + " [ 29.03176613 -2.78021604]]\n", + "DEBUG:root:mm_to_pix: fitpx.shape: (96, 2)\n", + "43008]\n", + " [ 30.92926612 -2.78043011]\n", + " [ 0.2510197 -31.55446923]\n", + " [ 0.2510197 -31.55446923]\n", + " [ 30.9294802 -0.88293012]\n", + " [ 30.9294802 -0.88293012]\n", + " [ 2.14873376 -29.65718332]\n", + " [ 7.52473372 -29.65778983]\n", + " [ 12.90073369 -29.65839633]\n", + " [ 18.27673365 -29.65900285]\n", + " [ 23.65273362 -29.65960936]\n", + " [ 29.02873359 -29.66021587]\n", + " [ 2.14934027 -24.28118335]\n", + " [ 7.52534023 -24.28178986]\n", + " [ 12.9013402 -24.28239637]\n", + " [ 18.27734016 -24.28300288]\n", + " [ 23.65334013 -24.28360939]\n", + " [ 29.02934009 -24.2842159 ]\n", + " [ 2.14994678 -18.90518338]\n", + " [ 7.52594674 -18.90578989]\n", + " [ 12.90194671 -18.9063964 ]\n", + " [ 18.27794667 -18.90700292]\n", + " [ 23.65394664 -18.90760943]\n", + " [ 29.0299466 -18.90821593]\n", + " [ 2.15055329 -13.52918342]\n", + " [ 7.52655325 -13.52978993]\n", + " [ 12.90255322 -13.53039644]\n", + " [ 18.27855318 -13.53100295]\n", + " [ 23.65455315 -13.53160946]\n", + " [ 29.03055312 -13.53221597]\n", + " [ 2.1511598 -8.15318346]\n", + " [ 7.52715976 -8.15378996]\n", + " [ 12.90315973 -8.15439647]\n", + " [ 18.27915969 -8.15500298]\n", + " [ 23.65515966 -8.15560949]\n", + " [ 29.03115962 -8.156216 ]\n", + " [ 2.1517663 -2.77718348]\n", + " [ 7.52776627 -2.77779 ]\n", + " [ 12.90376624 -2.77839651]\n", + " [ 18.2797662 -2.77900302]\n", + " [ 23.65576617 -2.77960953]\n", + " [ 29.03176613 -2.78021604]]\n", + "DEBUG:root:radec2pix: xyfp Shape: (96, 2)\n", + "DEBUG:root:radec2pix: xyfp: [[ 0.173161 -31.45819714]\n", + " [ 0.17304708 -27.07176857]\n", + " [ 0.17293316 -22.68534 ]\n", + " [ 0.17281925 -18.29891143]\n", + " [ 0.17270533 -13.91248287]\n", + " [ 0.17259141 -9.52605429]\n", + " [ 0.17247749 -5.13962573]\n", + " [ 0.17236358 -0.75319715]\n", + " [ 0.173161 -31.45819714]\n", + " [ 4.55958957 -31.45808322]\n", + " [ 8.94601814 -31.45796931]\n", + " [ 13.33244671 -31.45785538]\n", + " [ 17.71887528 -31.45774147]\n", + " [ 22.10530385 -31.45762756]\n", + " [ 26.49173242 -31.45751363]\n", + " [ 30.87816099 -31.45739971]\n", + " [ 0.17236358 -0.75319715]\n", + " [ 4.55879215 -0.75308323]\n", + " [ 8.94522072 -0.75296932]\n", + " [ 13.33164929 -0.7528554 ]\n", + " [ 17.71807786 -0.75274148]\n", + " [ 22.10450643 -0.75262756]\n", + " [ 26.490935 -0.75251364]\n", + " [ 30.87736356 -0.75239973]\n", + " [ 30.87816099 -31.45739971]\n", + " [ 30.87804707 -27.07097114]\n", + " [ 30.87793315 -22.68454257]\n", + " [ 30.87781924 -18.29811401]\n", + " [ 30.87770532 -13.91168544]\n", + " [ 30.87759141 -9.52525687]\n", + " [ 30.87747749 -5.1388283 ]\n", + " [ 30.87736356 -0.75239973]\n", + " [ 0.18811133 -29.54569675]\n", + " [ 0.18797171 -24.16969676]\n", + " [ 0.1878321 -18.79369675]\n", + " [ 0.18769248 -13.41769676]\n", + " [ 0.18755286 -8.04169676]\n", + " [ 0.18741324 -2.66569676]\n", + " [ 2.08566061 -31.44314748]\n", + " [ 7.46166061 -31.44300785]\n", + " [ 12.83766061 -31.44286824]\n", + " [ 18.2136606 -31.44272862]\n", + " [ 23.5896606 -31.442589 ]\n", + " [ 28.9656606 -31.44244938]\n", + " [ 2.08486397 -0.76814748]\n", + " [ 7.46086396 -0.76800786]\n", + " [ 12.83686396 -0.76786825]\n", + " [ 18.21286396 -0.76772863]\n", + " [ 23.58886395 -0.76758901]\n", + " [ 28.96486395 -0.7674494 ]\n", + " [ 30.86311132 -29.54490011]\n", + " [ 30.86297171 -24.16890011]\n", + " [ 30.86283209 -18.79290011]\n", + " [ 30.86269247 -13.41690011]\n", + " [ 30.86255285 -8.04090011]\n", + " [ 30.86241323 -2.66490012]\n", + " [ 0.18816061 -31.44319675]\n", + " [ 0.18816061 -31.44319675]\n", + " [ 30.86236396 -0.76740012]\n", + " [ 30.86236396 -0.76740012]\n", + " [ 2.08561133 -29.54564748]\n", + " [ 7.46161133 -29.54550785]\n", + " 96 0.9801495 ]\n", + " [0.19711638 0.15788822 0.96758278]\n", + " [0.16377271 0.15949023 0.97352009]\n", + " [0.12947641 0.1607887 0.97845943]\n", + " [0.09442771 0.16178086 0.98229851]\n", + " [0.05882858 0.16246211 0.98495952]\n", + " [0.02288505 0.16282774 0.98638907]\n", + " [0.19867107 0.12387558 0.97220607]\n", + " [0.16505894 0.1251298 0.9783139 ]\n", + " [0.13049231 0.12614936 0.98339112]\n", + " [0.09516891 0.12693065 0.98733555]\n", + " [0.05928988 0.1274685 0.99006893]\n", + " [0.02306224 0.12775798 0.99153721]\n", + " [0.19984199 0.08913848 0.97576509]\n", + " [0.16603002 0.09004163 0.98200129]\n", + " [0.13126104 0.09077781 0.98718283]\n", + " [0.09573072 0.09134344 0.99120735]\n", + " [0.0596397 0.09173387 0.99399598]\n", + " [0.02319607 0.09194479 0.9954939 ]\n", + " [0.20062602 0.0538804 0.97818511]\n", + " [0.16668139 0.0544282 0.98450743]\n", + " [0.13177743 0.05487585 0.98975924]\n", + " [0.09610838 0.05522072 0.99383794]\n", + " [0.05987462 0.05545959 0.99666407]\n", + " [0.02328514 0.05558951 0.99818215]\n", + " [0.20101976 0.018307 0.97941611]\n", + " [0.1670086 0.01849597 0.98578194]\n", + " [0.13203673 0.01865108 0.99106934]\n", + " [0.09629765 0.01877134 0.99517556]\n", + " [0.05999164 0.01885557 0.99802078]\n", + " [0.02332821 0.01890269 0.99954914]]\n", + "DEBUG:root:radec2pix: curVec Shape: (96, 3)\n", + "DEBUG:root:radec2pix: ccdpx: [[-4.45000000e+01 -5.00000251e-01]\n", + " [-4.45000000e+01 2.91928572e+02]\n", + " [-4.45000000e+01 5.84357143e+02]\n", + " [-4.45000000e+01 8.76785714e+02]\n", + " [-4.45000000e+01 1.16921429e+03]\n", + " [-4.45000000e+01 1.46164286e+03]\n", + " [-4.45000000e+01 1.75407143e+03]\n", + " [-4.45000000e+01 2.04650000e+03]\n", + " [-4.45000000e+01 -5.00000251e-01]\n", + " [ 2.47928571e+02 -5.00000137e-01]\n", + " [ 5.40357143e+02 -5.00000030e-01]\n", + " [ 8.32785714e+02 -4.99999965e-01]\n", + " [ 1.12521429e+03 -4.99999941e-01]\n", + " [ 1.41764286e+03 -5.00000178e-01]\n", + " [ 1.71007143e+03 -4.99999847e-01]\n", + " [ 2.00250000e+03 -5.00000219e-01]\n", + " [-4.45000000e+01 2.04650000e+03]\n", + " [ 2.47928571e+02 2.04650000e+03]\n", + " [ 5.40357143e+02 2.04650000e+03]\n", + " [ 8.32785714e+02 2.04650000e+03]\n", + " [ 1.12521429e+03 2.04650000e+03]\n", + " [ 1.41764286e+03 2.04650000e+03]\n", + " [ 1.71007143e+03 2.04650000e+03]\n", + " [ 2.00250000e+03 2.04650DEBUG:root:radec2pix: ccdpx: [[-4.45000000e+01 -4.99999797e-01]\n", + " [-4.45000000e+01 2.91928572e+02]\n", + " [-4.45000000e+01 5.84357143e+02]\n", + " [-4.45000000e+01 8.76785714e+02]\n", + " [-4.45000000e+01 1.16921429e+03]\n", + " [-4.45000000e+01 1.46164286e+03]\n", + " [-4.45000000e+01 1.75407143e+03]\n", + " [-4.45000001e+01 2.04650000e+03]\n", + " [-4.45000000e+01 -4.99999797e-01]\n", + " [ 2.47928571e+02 -5.00000034e-01]\n", + " [ 5.40357143e+02 -4.99999972e-01]\n", + " [ 8.32785714e+02 -4.99999760e-01]\n", + " [ 1.12521429e+03 -5.00000049e-01]\n", + " [ 1.41764286e+03 -4.99999867e-01]\n", + " [ 1.71007143e+03 -5.00000044e-01]\n", + " [ 2.00250000e+03 -4.99999770e-01]\n", + " [-4.45000001e+01 2.04650000e+03]\n", + " [ 2.47928571e+02 2.04650000e+03]\n", + " [ 5.40357143e+02 2.04650000e+03]\n", + " [ 8.32785714e+02 2.04650000e+03]\n", + " [ 1.12521429e+03 2.04650000e+03]\n", + " [ 1.41764286e+03 2.04650000e+03]\n", + " [ 1.71007143e+03 2.04650000e+03]\n", + " [ 2.00250000e+03 2.04650000e+03]\n", + " [ 2.00250000e+03 -4.99999770e-01]\n", + " [ 2.00250000e+03 2.91928572e+02]\n", + " [ 2.00250000e+03 5.84357143e+02]\n", + " [ 2.00250000e+03 8.76785714e+02]\n", + " [ 2.00250000e+03 1.16921429e+03]\n", + " [ 2.00250000e+03 1.46164286e+03]\n", + " [ 2.00250000e+03 1.75407143e+03]\n", + " [ 2.00250000e+03 2.04650000e+03]\n", + " [-4.35000000e+01 1.27000000e+02]\n", + " [-4.35000000e+01 4.85400000e+02]\n", + " [-4.35000000e+01 8.43800000e+02]\n", + " [-4.35000000e+01 1.20220000e+03]\n", + " [-4.35000000e+01 1.56060000e+03]\n", + " [-4.35000000e+01 1.91900000e+03]\n", + " [ 8.30000000e+01 5.00000045e-01]\n", + " [ 4.41400000e+02 5.00000251e-01]\n", + " [ 7.99800000e+02 4.99999878e-01]\n", + " [ 1.15820000e+03 4.99999746e-01]\n", + " [ 1.51660000e+03 5.00000268e-01]\n", + " [ 1.87500000e+03 4.99999743e-01]\n", + " [ 8.29999998e+01 2.04550000e+03]\n", + " [ 4.41400000e+02 2.04550000e+03]\n", + " [ 7.99800000e+02 2.04550000e+03]\n", + " [ 1.15820000e+03 2.04550000e+03]\n", + " [ 1.51660000e+03 2.04550000e+03]\n", + " [ 1.87500000e+03 2.04550000e+03]\n", + " [ 2.00150000e+03 1.27000000e+02]\n", + " [ 2.00150000e+03 4.85400000e+02]\n", + " [ 2.00150000e+03 8.43800000e+02]\n", + " [ 2.00150000e+03 1.20220000e+03]\n", + " [ 2.00150000e+03 1.56060000e+03]\n", + " [ 2.00150000e+03 1.91900000e+03]\n", + " [-4.350000000e+03]\n", + " [ 2.00250000e+03 -5.00000219e-01]\n", + " [ 2.00250000e+03 2.91928572e+02]\n", + " [ 2.00250000e+03 5.84357143e+02]\n", + " [ 2.00250000e+03 8.76785714e+02]\n", + " [ 2.00250000e+03 1.16921429e+03]\n", + " [ 2.00250000e+03 1.46164286e+03]\n", + " [ 2.00250000e+03 1.75407143e+03]\n", + " [ 2.00250000e+03 2.04650000e+03]\n", + " [-4.35000000e+01 1.27000000e+02]\n", + " [-4.35000000e+01 4.85400000e+02]\n", + " [-4.35000000e+01 8.43800000e+02]\n", + " [-4.35000000e+01 1.20220000e+03]\n", + " [-4.35000000e+01 1.56060000e+03]\n", + " [-4.35000000e+01 1.91900000e+03]\n", + " [ 8.30000000e+01 4.99999716e-01]\n", + " [ 4.41400000e+02 4.99999791e-01]\n", + " [ 7.99800000e+02 5.00000291e-01]\n", + " [ 1.15820000e+03 5.00000004e-01]\n", + " [ 1.51660000e+03 5.00000077e-01]\n", + " [ 1.87500000e+03 4.99999846e-01]\n", + " [ 8.30000001e+01 2.04550000e+03]\n", + " [ 4.41400000e+02 2.04550000e+03]\n", + " [ 7.99800000e+02 2.04550000e+03]\n", + " [ 1.15820000e+03 2.04550000e+03]\n", + " [ 1.51660000e+03 2.04550000e+03]\n", + " [ 1.87500000e+03 2.04550000e+03]\n", + " [ 2.00150000e+03 1.27000000e+02]\n", + " [ 2.00150000e+03 4.85400000e+02]\n", + " [ 2.00150000e+03 8.43800000e+02]\n", + " [ 2.00150000e+03 1.20220000e+03]\n", + " [ 2.00150000e+03 1.56060000e+03]\n", + " [ 2.00150000e+03 1.91900000e+03]\n", + " [-4.35000000e+01 4.99999735e-01]\n", + " [-4.35000000e+01 4.99999735e-01]\n", + " [ 2.00150000e+03 2.04550000e+03]\n", + " [ 2.00150000e+03 2.04550000e+03]\n", + " [ 8.30000000e+01 1.27000000e+02]\n", + " [ 4.41400000e+02 1.27000000e+02]\n", + " [ 7.99800000e+02 1.27000000e+02]\n", + " [ 1.15820000e+03 1.27000000e+02]\n", + " [ 1.51660000e+03 1.27000000e+02]\n", + " [ 1.87500000e+03 1.27000000e+02]\n", + " [ 8.30000000e+01 4.85400000e+02]\n", + " [ 4.41400000e+02 4.85400000e+02]\n", + " [ 7.99800000e+02 4.85400000e+02]\n", + " [ 1.15820000e+03 4.85400000e+02]\n", + " [ 1.51660000e+03 4.85400000e+02]\n", + " [ 1.87500000e+03 4.85400000e+02]\n", + " [ 8.30000000e+01 8.43800000e+02]\n", + " [ 4.41400000e+02 8.43800000e+02]\n", + " [ 7.99800000e+02 8.43800000e+02]\n", + " [ 1.15820000e+03 8.43800000e+02]\n", + " [ 1.51660000e+03 8.43800000e+02]\n", + " [ 1.87500000e+03 8.43800000e+02]\n", + " [ 8.30000000e+01 1.20220000e+03]\n", + " [ 4.41400000e+02 1.20220000e+03]\n", + " [ 7.99800000e+02 1.20220000e+[ 12.83761133 -29.54536824]\n", + " [ 18.21361133 -29.54522862]\n", + " [ 23.58961132 -29.545089 ]\n", + " [ 28.96561132 -29.54494938]\n", + " [ 2.08547171 -24.16964747]\n", + " [ 7.46147171 -24.16950786]\n", + " [ 12.83747171 -24.16936824]\n", + " [ 18.21347171 -24.16922862]\n", + " [ 23.58947171 -24.16908901]\n", + " [ 28.9654717 -24.16894939]\n", + " [ 2.0853321 -18.79364747]\n", + " [ 7.46133209 -18.79350785]\n", + " [ 12.83733209 -18.79336824]\n", + " [ 18.21333209 -18.79322862]\n", + " [ 23.58933209 -18.79308901]\n", + " [ 28.96533209 -18.79294939]\n", + " [ 2.08519248 -13.41764748]\n", + " [ 7.46119248 -13.41750786]\n", + " [ 12.83719247 -13.41736824]\n", + " [ 18.21319248 -13.41722863]\n", + " [ 23.58919247 -13.41708901]\n", + " [ 28.96519247 -13.41694939]\n", + " [ 2.08505286 -8.04164748]\n", + " [ 7.46105286 -8.04150786]\n", + " [ 12.83705286 -8.04136825]\n", + " [ 18.21305286 -8.04122863]\n", + " [ 23.58905286 -8.04108901]\n", + " [ 28.96505285 -8.04094939]\n", + " [ 2.08491324 -2.66564748]\n", + " [ 7.46091324 -2.66550786]\n", + " [ 12.83691324 -2.66536825]\n", + " [ 18.21291324 -2.66522863]\n", + " [ 23.58891323 -2.66508901]\n", + " [ 28.96491324 -2.66494939]]\n", + "DEBUG:root:mm_DEBUG:root:radec2pix: xyfp: [[-32.203794 -31.5506227 ]\n", + " [-32.20328688 -27.16419416]\n", + " [-32.20277976 -22.77776561]\n", + " [-32.20227264 -18.39133707]\n", + " [-32.20176553 -14.00490853]\n", + " [-32.20125841 -9.61847999]\n", + " [-32.20075129 -5.23205144]\n", + " [-32.20024417 -0.8456229 ]\n", + " [-32.203794 -31.5506227 ]\n", + " [-27.81736545 -31.55112981]\n", + " [-23.43093691 -31.55163693]\n", + " [-19.04450837 -31.55214405]\n", + " [-14.65807983 -31.55265117]\n", + " [-10.27165129 -31.55315829]\n", + " [ -5.88522274 -31.5536654 ]\n", + " [ -1.4987942 -31.55417252]\n", + " [-32.20024417 -0.8456229 ]\n", + " [-27.81381563 -0.84613002]\n", + " [-23.42738708 -0.84663714]\n", + " [-19.04095854 -0.84714426]\n", + " [-14.65453 -0.84765137]\n", + " [-10.26810146 -0.84815849]\n", + " [ -5.88167292 -0.84866561]\n", + " [ -1.49524438 -0.84917273]\n", + " [ -1.4987942 -31.55417252]\n", + " [ -1.49828708 -27.16774398]\n", + " [ -1.49777997 -22.78131544]\n", + " [ -1.49727285 -18.39488689]\n", + " [ -1.49676573 -14.00845835]\n", + " [ -1.49625861 -9.62202981]\n", + " [ -1.49575149 -5.23560127]\n", + " [ -1.49524438 -0.84917273]\n", + " [-32.18857289 -29.63812445]\n", + " [-32.18795136 -24.26212448]\n", + " [-32.18732984 -18.88612452]\n", + " [-32.18670832 -13.51012455]\n", + " [-32.1860868 -8.13412459]\n", + " [-32.18546528 -2.75812462]\n", + " [-30.29129227 -31.5358438 ]\n", + " [-24.91529231 -31.53646533]\n", + " [-19.53929235 -31.53708685]\n", + " [-14.16329238 -31.53770837]\n", + " [ -8.78729242 -31.53832989]\n", + " [ -3.41129245 -31.53895142]\n", + " [-30.28774592 -0.86084401]\n", + " [-24.91174595 -0.86146553]\n", + " [-19.53574599 -0.86208705]\n", + " [-14.15974603 -0.86270858]\n", + " [ -8.78374606 -0.8633301 ]\n", + " [ -3.4077461 -0.86395162]\n", + " [ -1.5135731 -29.6416708 ]\n", + " [ -1.51295157 -24.26567084]\n", + " [ -1.51233005 -18.88967087]\n", + " [ -1.51170853 -13.51367091]\n", + " [ -1.51108701 -8.13767095]\n", + " [ -1.51046548 -2.76167097]\n", + " [-32.18879227 -31.53562444]\n", + " [-32.18879227 -31.53562444]\n", + " [ -1.51024611 -0.86417099]\n", + " [ -1.51024611 -0.86417099]\n", + " [-30.29107291 -29.63834382]\n", + " [-24.91507294 -29.63896534]\n", + " [-19.53907298 -29.63958686]\n", + " [-14.16307301 -29.64020839]\n", + " [ -8.78707305 -29.64082991]\n", + " [ -3.41107308 -29.64145143]\n", + " [-30.29045138 -24.26234385]\n", + " [-24.91445142 -24.26296538]\n", + " [-19.53845145 -24.2635869 ]\n", + " [-14.16245149 -24.26420842]\n", + " [ -8.78645152 -24.26482994]\n", + " [ -3.41045156 -24.26545147]\n", + " [-30.28982986 -18.88634389]\n", + " [-24.91382989 -18.88696541]\n", + " [-19.53782993 -18.88758693]\n", + " [-14.16182997 -18.88820846]\n", + " [ -8.78583 -18.88882997]\n", + " [ -3.40983004 -18.8894515 ]\n", + " [-30.28920834 -13.51034392]\n", + " [-24.91320837 -13.51096545]\n", + " [-19.53720841 -13.51158697]\n", + " [-14.16120844 -13.51220849]\n", + " [ -8.78520848 -13.51283002]\n", + " [ -3.40920852 -13.51345154]\n", + " [-30.28858681 -8.13434396]\n", + " [-24.91258685 -8.13496548]\n", + " [-19.53658688 -8.135587 ]\n", + " [-14.16058692 -8.13620852]\n", + " [ -8.78458696 -8.13683005]\n", + " [ -3.40858699 -8.13745157]\n", + " [-30.28796529 -2.75834399]\n", + " [-24.91196532 -2.75896552]\n", + " [-19.53596536 -2.75958704]\n", + " [-14.1599654 -2.76020856]\n", + " [ -8.78396543 -2.76083009]\n", + " [ -3.40796547 -2.76145161]]\n", + "DEBUG:root:make_az_asym: xyp: shape: (96, 2)\n", + "to_pix: fitpx: [[0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]]\n", + "00e+01 5.00000140e-01]\n", + " [-4.35000000e+01 5.00000140e-01]\n", + " [ 2.00150000e+03 2.04550000e+03]\n", + " [ 2.00150000e+03 2.04550000e+03]\n", + " [ 8.30000000e+01 1.27000000e+02]\n", + " [ 4.41400000e+02 1.27000000e+02]\n", + " [ 7.99800000e+02 1.27000000e+02]\n", + " [ 1.15820000e+03 1.27000000e+02]\n", + " [ 1.51660000e+03 1.27000000e+02]\n", + " [ 1.87500000e+03 1.27000000e+02]\n", + " [ 8.30000000e+01 4.85400000e+02]\n", + " [ 4.41400000e+02 4.85400000e+02]\n", + " [ 7.99800000e+02 4.85400000e+02]\n", + " [ 1.15820000e+03 4.85400000e+02]\n", + " [ 1.51660000e+03 4.85400000e+02]\n", + " [ 1.87500000e+03 4.85400000e+02]\n", + " [ 8.30000000e+01 8.43800000e+02]\n", + " [ 4.41400000e+02 8.43800000e+02]\n", + " [ 7.99800000e+02 8.43800000e+02]\n", + " [ 1.15820000e+03 8.43800000e+02]\n", + " [ 1.51660000e+03 8.43800000e+02]\n", + " [ 1.87500000e+03 8.43800000e+02]\n", + " [ 8.30000000e+01 1.20220000e+03]\n", + " [ 4.41400000e+02 1.20220000e+03]\n", + " [ 7.99800000e+02 1.20220000e+03]\n", + " [ 1.15820000e+03 1.20220000e+03]\n", + " [ 1.51660000e+03 1.20220000e+03]\n", + " [ 1.87500000e+03 1.20220000e+03]\n", + " [ 8.30000001e+01 1.56060000e+03]\n", + " [ 4.41400000e+02 1.56060000e+03]\n", + " [ 7.99800000e+02 1.56060000e+03]\n", + " [ 1.15820000e+03 1.56060000e+03]\n", + " [ 1.51660000e+03 1.56060000e+03]\n", + " [ 1.87500000e+03 1.56060000e+03]\n", + " [ 8.29999998e+01 1.91900000e+03]\n", + " [ 4.41400000e+02 1.91900000e+03]\n", + " [ 7.9980000DEBUG:root:mm_to_pix: fitpx.shape: (96, 2)\n", + "DEBUG:root:radec2pix: xyfp Shape: (96, 2)\n", + "DEBUG:root:make_az_asym: xyp: [[ -0.230877 31.363511 ]\n", + " [ -0.230877 26.97708243]\n", + " [ -0.230877 22.59065386]\n", + " [ -0.230877 18.20422528]\n", + " [ -0.230877 13.81779671]\n", + " [ -0.230877 9.43136815]\n", + " [ -0.230877 5.04493957]\n", + " [ -0.230877 0.658511 ]\n", + " [ -0.230877 31.363511 ]\n", + " [ -4.61730557 31.363511 ]\n", + " [ -9.00373414 31.363511 ]\n", + " [-13.39016272 31.363511 ]\n", + " [-17.77659129 31.363511 ]\n", + " [-22.16301986 31.363511 ]\n", + " [-26.54944843 31.363511 ]\n", + " [-30.935877 31.363511 ]\n", + " [ -0.230877 0.658511 ]\n", + " [ -4.61730558 0.658511 ]\n", + " [ -9.00373414 0.658511 ]\n", + " [-13.39016271 0.658511 ]\n", + " [-17.77659128 0.658511 ]\n", + " [-22.16301986 0.658511 ]\n", + " [-26.54944843 0.658511 ]\n", + " [-30.935877 0.658511 ]\n", + " [-30.935877 31.363511 ]\n", + " [-30.935877 26.97708243]\n", + " [-30.935877 22.59065386]\n", + " [-30.935877 18.20422528]\n", + " [-30.935877 13.81779671]\n", + " [-30.935877 9.43136814]\n", + " [-30.935877 5.04493957]\n", + " [-30.935877 0.658511 ]\n", + " [ -0.245877 29.451011 ]\n", + " [ -0.245877 24.075011 ]\n", + " [ -0.245877 18.699011 ]\n", + " [ -0.245877 13.323011 ]\n", + " [ -0.245877 7.947011 ]\n", + " [ -0.245877 2.571011 ]\n", + " [ -2.143377 31.348511 ]\n", + " [ -7.519377 31.348511 ]\n", + " [-12.895377 31.348511 ]\n", + " [-18.271377 31.348511 ]\n", + " [-23.647377 31.348511 ]\n", + " [-29.023377 31.348511 ]\n", + " [ -2.143377 0.673511 ]\n", + " [ -7.519377 0.673511 ]\n", + " [-12.895377 0.673511 ]\n", + " [-18.271377 0.673511 ]\n", + " [-23.64737701 0.673511 ]\n", + " [-29.023377 0.673511 ]\n", + " [-30.920877 29.451011 ]\n", + " [-30.920877 24.075011 ]\n", + " [-30.920877 18.699011 ]\n", + " [-30.920877 13.323011 ]\n", + " [-30.920877 7.947011 ]\n", + " [-30.920877 2.571011 ]\n", + " [ -0.245877 31.348511 ]\n", + " [ -0.245877 31.348511 ]\n", + " [-30.920877 0.673511 ]\n", + " [-30.920877 0.673511 ]\n", + " [ -2.143377 29.451011 ]\n", + " [ -7.519377 29.451011 ]\n", + " [-12.895377 29.451011 ]\n", + " [-18.271377 29.451011 ]\n", + " [-23.647377 29.451011 ]\n", + " [-29.023377 29.451011 ]\n", + " [ -2.143377 24.075011 ]\n", + " [ -7.519377 24.075011 ]\n", + " [-12.895377 24.075011 ]\n", + " [-18.271377 24.075011 ]\n", + " [-23.647377 24.075011 ]\n", + " [-29.023377 24.075011 ]\n", + " [ -2.143377 18.699011 ]\n", + " [ -7.519377 18.699011 ]\n", + " [-12.895377 18.699011 ]\n", + " [-18.271377 18.699011 ]\n", + " [-23.647377 18.699011 ]\n", + " [-29.023377 18.699011 ]\n", + " [ -2.143377 13.323011 ]\n", + " [ -7.519377 13.323011 ]\n", + " [-12.895377 13.323011 ]\n", + " [-18.271377 13.323011 ]\n", + " [-23.647377 13.323011 ]\n", + " [-29.023377 13.323011 ]\n", + " [ -2.143377 7.947011 ]\n", + " [ -7.519377 7.947011 ]\n", + " [-12.895377 7.947011 ]\n", + " [-18.271377 7.947011 ]\n", + " [-23.647377 7.947011 ]\n", + " [-29.023377 7.947011 ]\n", + " [ -2.143377 2.571011 ]\n", + " [ -7.519377 2.571011 ]\n", + " [-12.895377 2.571011 ]\n", + " [-18.271377 2.571011 ]\n", + " [-23.647377 2.571011 ]\n", + " [-29.023377 2.571011 ]]\n", + "DEBUG:root:radec2pix: camVec: [[ 0.00114566 0.00115565 0.00116422 0.00117136 0.00117701 0.00118116\n", + " 0.00118376 0.00118481 0.00114566 0.03017404 0.05908469 0.08776498\n", + " 0.11610332 0.14398904 0.17131174 0.19796003 0.00118481 0.03120455\n", + " 0.06110052 0.09075528 0.1200543 0.14888674 0.17714546 0.20472589\n", + " 0.19796003 0.19971011 0.20119978 0.20242973 0.20339908 0.20410611\n", + " 0.20454887 0.20472589 0.00124992 0.00126219 0.00127213 0.00127966\n", + " 0.00128472 0.00128725 0.01380981 0.04932315 0.08454761 0.11927732\n", + " 0.15330846 0.18643745 0.01428113 0.05100494 0.08742589 0.12333185\n", + " 0.15851879 0.19279062 0.19866498 0.20063357 0.20221208 0.20339952\n", + " 0.20419277 0.20458843 0.00124504 0.00124504 0.2046327 0.2046327\n", + " 0.01386393 0.04951642 0.08487904 0.1197456 0.15391263 0.18717755\n", + " 0.01400003 0.0500023 0.08571147 0.12092013 0.15542529 0.1890269\n", + " 0.01411023 0.05039551 0.08638432 0.12186779 0.15664287 0.19051132\n", + " 0.01419378 0.0506935 0.08689379 0.12258434 0.15756175 0.19162897\n", + " 0.0142499 0.05089361 0.0872357DEBUG:root:radec2pix: xyfp: [[ 0.236018 -31.56946754]\n", + " [ 0.23651287 -27.18303899]\n", + " [ 0.23700774 -22.79661046]\n", + " [ 0.23750261 -18.41018192]\n", + " [ 0.23799748 -14.02375336]\n", + " [ 0.23849235 -9.63732482]\n", + " [ 0.23898721 -5.25089628]\n", + " [ 0.23948208 -0.86446773]\n", + " [ 0.236018 -31.56946754]\n", + " [ 4.62244655 -31.56996241]\n", + " [ 9.00887509 -31.57045728]\n", + " [ 13.39530363 -31.57095214]\n", + " [ 17.78173218 -31.57144701]\n", + " [ 22.16816072 -31.57194188]\n", + " [ 26.55458927 -31.57243675]\n", + " [ 30.94101781 -31.57293162]\n", + " [ 0.23948208 -0.86446773]\n", + " [ 4.62591062 -0.8649626 ]\n", + " [ 9.01233917 -0.86545747]\n", + " [ 13.39876771 -0.86595234]\n", + " [ 17.78519626 -0.86644721]\n", + " [ 22.1716248 -0.86694208]\n", + " [ 26.55805334 -0.86743695]\n", + " [ 30.94448189 -0.86793181]\n", + " [ 30.94101781 -31.57293162]\n", + " [ 30.94151268 -27.18650307]\n", + " [ 30.94200754 -22.80007453]\n", + " [ 30.94250242 -18.41364599]\n", + " [ 30.94299728 -14.02721745]\n", + " [ 30.94349215 -9.6407889 ]\n", + " [ 30.94398702 -5.25436036]\n", + " [ 30.94448189 -0.86793181]\n", + " [ 0.25123377 -29.65696924]\n", + " [ 0.25184028 -24.28096928]\n", + " [ 0.25244679 -18.90496931]\n", + " [ 0.2530533 -13.52896935]\n", + " [ 0.25365981 -8.15296938]\n", + " [ 0.25426632 -2.77696942]\n", + " [ 2.14851968 -31.5546833 ]\n", + " [ 7.52451965 -31.55528981]\n", + " [ 12.90051962 -31.55589633]\n", + " [ 18.27651958 -31.55650284]\n", + " [ 23.65251954 -31.55710934]\n", + " [ 29.02851952 -31.55771586]\n", + " [ 2.15198038 -0.8796835 ]\n", + " [ 7.52798035 -0.88029001]\n", + " [ 12.90398031 -0.88089652]\n", + " [ 18.27998027 -0.88150303]\n", + " [ 23.65598025 -0.88210954]\n", + " [ 29.03198021 -0.88271605]\n", + " [ 30.92623357 -29.66042994]\n", + " [ 30.92684009 -24.28442998]\n", + " [ 30.9274466 -18.90843001]\n", + " [ 30.9280531 -13.53243004]\n", + " [ 30.92865961 -8.15643008]\n", + " [ 30.92926612 -2.78043011]\n", + " [ 0.2510197 -31.55446923]\n", + " [ 0.2510197 -31.55446923]\n", + " [ 30.9294802 -0.88293012]\n", + " [ 30.9294802 -0.88293012]\n", + " [ 2.14873376 -29.65718332]\n", + " [ 7.52473372 -29.65778983]\n", + " [ 12.90073369 -29.65839633]\n", + " [ 18.27673365 -29.65900285]\n", + " [ 23.65273362 -29.65960936]\n", + " [ 29.02873359 -29.66021587]\n", + " [ 2.14934027 -24.28118335]\n", + " [ 7.52534023 -24.28178986]\n", + "03]\n", + " [ 1.15820000e+03 1.20220000e+03]\n", + " [ 1.51660000e+03 1.20220000e+03]\n", + " [ 1.87500000e+03 1.20220000e+03]\n", + " [ 8.30000000e+01 1.56060000e+03]\n", + " [ 4.41400000e+02 1.56060000e+03]\n", + " [ 7.99800000e+02 1.56060000e+03]\n", + " [ 1.15820000e+03 1.56060000e+03]\n", + " [ 1.51660000e+03 1.56060000e+03]\n", + " [ 1.87500000e+03 1.56060000e+03]\n", + " [ 8.30000002e+01 1.91900000e+03]\n", + " [ 4.41400000e+02 1.91900000e+03]\n", + " [ 7.99800000e+02 1.91900000e+03]\n", + " [ 1.15820000e+03 1.91900000e+03]\n", + " [ 1.51660000e+03 1.91900000e+03]\n", + " [ 1.87500000e+03 1.91900000e+03]]\n", + " [ 12.9013402 -24.28239637]\n", + " [ 18.27734016 -24.28300288]\n", + " [ 23.65334013 -24.28360939]\n", + " [ 29.02934009 -24.2842159 ]\n", + " [ 2.14994678 -18.90518338]\n", + " [ 7.52594674 -18.90578989]\n", + " [ 12.90194671 -18.9063964 ]\n", + " [ 18.27794667 -18.90700292]\n", + " [ 23.65394664 -18.90760943]\n", + " [ 29.0299466 -18.90821593]\n", + " [ 2.15055329 -13.52918342]\n", + " [ 7.52655325 -13.52978993]\n", + " [ 12.90255322 -13.53039644]\n", + " [ 18.27855318 -13.53100295]\n", + " [ 23.65455315 -13.53160946]\n", + " [ 29.03055312 -13.53221597]\n", + " [ 2.DEBUG:root:radec2pix: lng: [44.41301872 40.14838159 35.2726464 29.73151826 23.50476184 16.63082675\n", + " 9.22889701 1.50432057 44.41301872 48.59866885 53.40161123 58.88530587\n", + " 65.08233359 71.96812796 79.43489015 87.28054707 1.50432057 1.74246974\n", + " 2.06969874 2.54744544 3.31042966 4.7219858 8.21053157 29.59292215\n", + " 87.28054707 86.84336495 86.23844627 85.3466032 83.90123984 81.16110163\n", + " 74.05596575 29.59292215 42.63779834 37.00767795 30.40255608 22.76985585\n", + " 14.18292146 4.89797993 46.15318169 51.6896036 58.21907141 65.81559375\n", + " 74.43095985 83.82681521 1.62803312 1.98053876 2.52674891 3.48654093\n", + " 5.61341407 14.22621651 87.07688216 86.43225722 85.42259355 83.61713665\n", + " 79.48054112 61.32403216 44.41274552 44.41274552 29.77842334 29.77842334\n", + " 44.37598019 49.94895822 56.60624337 64.45998446 73.48745603 83.43540409\n", + " 38.69437311 44.24100899 51.15696074 59.72888922 70.09435151 81.99961851\n", + " 31.94440422 37.16546071 44.03052128 53.13850244 65.05527755 79.7674455\n", + " 24.03901245 28.4719233 34.66704703 43.65653948 56.97056188 75.84073328\n", + " 15.03271986 18.08395091 22.60822524 29.88026153 42.80777081 67.27233698\n", + " 5.20360826 6.3196744 8.04022063 11.03037054 17.44810995 39.01761856]\n", + "DEBUG:root:mm_to_pix: fitpx: [[0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]]\n", + "DEBUG:root:radec2pix: ccdpx: [[-4.45000000e+01 -4.99999973e-01]\n", + " [-4.45000000e+01 2.91928572e+02]\n", + " [-4.45000000e+01 5.84357143e+02]\n", + " [-4.45000000e+01 8.76785714e+02]\n", + " [-4.45000000e+01 1.16921429e+03]\n", + " [-4.45000000e+01 1.46164286e+03]\n", + " [-4.45000000e+01 1.75407143e+03]\n", + " [-4.45000000e+01 2.04650000e+03]\n", + " [-4.45000000e+01 -4.99999973e-01]\n", + " [ 2.47928571e+02 -4.99999766e-01]\n", + " [ 5.40357143e+02 -5.00000023e-01]\n", + " [ 8.32785714e+02 -4.99999798e-01]\n", + " [ 1.12521429e+03 -5.00000229e-01]\n", + " [ 1.41764286e+03 -5.00000231e-01]\n", + " [ 1.71007143e+03 -4.99999870e-01]\n", + " [ 2.00250000e+03 -4.99999884e-01]\n", + " [-4.45000000e+01 2.04650000e+03]\n", + " [ 2.47928571e+02 2.04650000e+03]\n", + " [ 5.40357143e+02 2.04650000e+03]\n", + " [ 8.32785714e+02 2.04650000e+03]\n", + " [ 1.12521429e+03 2.04650000e+03]\n", + " [ 1.41764286e+03 2.04650000e+03]\n", + " [ 1.71007143e+03 2.04650000e+03]\n", + " [ 2.00250000e+03 2.04650000e+03]\n", + " [ 2.00250000e+03 -4.99999884e-01]\n", + " [ 2.00DEBUG:root:mm_to_pix: fitpx.shape: (96, 2)\n", + "1 0.12306478 0.15817704 0.19237609\n", + " 0.01427798 0.05099373 0.08740674 0.12330495 0.15848438 0.1927489 ]\n", + " [-0.20812604 -0.1806373 -0.15245726 -0.12369032 -0.09444319 -0.06482624\n", + " -0.03495355 -0.00494229 -0.20812604 -0.20797994 -0.20756351 -0.20687811\n", + " -0.20592557 -0.20470759 -0.20322504 -0.20147731 -0.00494229 -0.00493875\n", + " -0.0049287 -0.00491221 -0.00488939 -0.0048604 -0.00482538 -0.00478446\n", + " -0.20147731 -0.17488831 -0.14761103 -0.11975687 -0.09143612 -0.06275929\n", + " -0.03383788 -0.00478446 -0.19623245 -0.16206424 -0.12696122 -0.09111882\n", + " -0.05474021 -0.01803675 -0.20800294 -0.20764209 -0.20687664 -0.20570979\n", + " -0.20414458 -0.20218204 -0.00504426 -0.00503536 -0.00501654 -0.004988\n", + " -0.00495001 -0.00490286 -0.1899823 -0.15691665 -0.12292805 -0.08821992\n", + " -0.05299579 -0.01746139 -0.2080333 -0.2080333 -0.00488406 -0.00488406\n", + " -0.19620382 -0.19586344 -0.1951417 -0.19404219 -0.19256861 -0.19072284\n", + " -0.16204052 -0.16175873 -0.161DEBUG:root:make_az_asym: xyp: shape: (96, 2)\n", + "16182 -0.16025398 -0.15904007 -0.15752379\n", + " -0.12694255 -0.12672084 -0.12625153 -0.1255387 -0.12458735 -0.12340188\n", + " -0.09110536 -0.09094551 -0.09060732 -0.09009413 -0.08941017 -0.08855947\n", + " -0.05473209 -0.05463571 -0.05443186 -0.05412272 -0.05371108 -0.05319971\n", + " -0.01803407 -0.01800225 -0.01793496 -0.01783294 -0.01769716 -0.01752858]\n", + " [ 0.97810134 0.9835491 0.98830938 0.99232018 0.99552956 0.99789587\n", + " 0.99938824 0.99998708 0.97810134 0.97766757 0.97643555 0.97442227\n", + " 0.97165564 0.96817455 0.96402898 0.95928031 0.99998708 0.99950082\n", + " 0.99811945 0.99586111 0.99275529 0.98884231 0.98417285 0.97880765\n", + " 0.95928031 0.96412134 0.96836441 0.97194676 0.97481703 0.97693499\n", + " 0.97827131 0.97880765 0.98055661 0.9867794 0.99190687 0.99583921\n", + " 0.9984998 0.9998365 0.97803071 0.97696059 0.97470701 0.97131684\n", + " 0.96686168 0.96143824 0.9998853 0.99868571 0.9961584 0.99235295\n", + " 0.98734355 0.981227DEBUG:root:radec2pix: xyfp: [[ 0.16415906 -31.72847131]\n", + " [ 0.16601788 -27.34204313]\n", + " [ 0.1678767 -22.95561497]\n", + " [ 0.16973552 -18.56918678]\n", + " [ 0.17159434 -14.1827586 ]\n", + " [ 0.17345315 -9.79633043]\n", + " [ 0.17531197 -5.40990225]\n", + " [ 0.17717079 -1.02347407]\n", + " [ 0.16415906 -31.72847131]\n", + " [ 4.55058724 -31.73033014]\n", + " [ 8.93701541 -31.73218895]\n", + " [ 13.32344359 -31.73404778]\n", + " [ 17.70987177 -31.73590659]\n", + " [ 22.09629995 -31.73776541]\n", + " [ 26.48272812 -31.73962422]\n", + " [ 30.8691563 -31.74148305]\n", + " [ 0.17717079 -1.02347407]\n", + " [ 4.56359897 -1.02533289]\n", + " [ 8.95002714 -1.02719171]\n", + " [ 13.33645532 -1.02905053]\n", + " [ 17.7228835 -1.03090935]\n", + " [ 22.10931168 -1.03276817]\n", + " [ 26.49573986 -1.03462699]\n", + " [ 30.88216803 -1.0364858 ]\n", + " [ 30.8691563 -31.74148305]\n", + " [ 30.87101512 -27.35505487]\n", + " [ 30.87287394 -22.96862669]\n", + " [ 30.87473276 -18.58219851]\n", + " [ 30.87659158 -14.19577034]\n", + " [ 30.8784504 -9.80934216]\n", + " [ 30.88030922 -5.42291398]\n", + " [ 30.88216803 -1.0364858 ]\n", + " [ 0.17996951 -29.81597784]\n", + " [ 0.18224768 DEBUG:root:radec2pix: lat: [73.25344023 74.2369792 75.15226824 75.97162966 76.66508667 77.2021609\n", + " 77.55512574 77.70337791 73.25344023 74.25967575 75.20183236 76.05214643\n", + " 76.78010612 77.3540472 77.74432055 77.92785326 77.70337791 79.30226543\n", + " 80.93361724 82.59207196 84.27220803 85.96793867 87.66996871 89.32519361\n", + " 77.92785326 79.53024676 81.16372478 82.82252521 84.50025464 86.18804733\n", + " 87.86471391 89.32519361 73.6926739 74.85593178 75.88945702 76.73895525\n", + " 77.34864846 77.67018969 73.7019933 74.89586821 75.96623187 76.85800237\n", + " 77.51320661 77.87970489 78.39600189 80.37807975 82.40356131 84.46248138\n", + " 86.54333738 88.62073148 78.62203863 80.60748554 82.6338837 84.6897052\n", + " 86.75764582 88.76495286 73.26041353 73.26041353 89.31716551 89.31716551\n", + " 74.15313309 75.40228414 76.52877477 77.47347648 78.17205407 78.56478282\n", + " 75.37129959 76.78525096 78.08623827 79.20344298 80.05020166 80.53598707\n", + " 76.45984424 78.04591405 79.54291278 80.87169379 81.91843153 82.54064538\n", + " 77.36022478 79.11290918 80.81670049 82.39645142 83.71831262 84.55871556\n", + " 78.01034 79.90138935 81.79317677 83.63609258 85.31869407 86.54472849\n", + " 78.35474014 80.32671962 82.33692434 84.36964547 86.39457329 88.27941972]\n", + "0e+02 1.91900000e+03]\n", + " [ 1.15820000e+03 1.91900000e+03]\n", + " [ 1.51660000e+03 1.91900000e+03]\n", + " [ 1.87500000e+03 1.91900000e+03]]\n", + "250000e+03 2.91928572e+02]\n", + " [ 2.00250000e+03 5.84357143e+02]\n", + " [ 2.00250000e+03 8.76785714e+02]\n", + " [ 2.00250000e+03 1.16921429e+03]\n", + " [ 2.00250000e+03 1.46164286e+03]\n", + " [ 2.00250000e+03 1.75407143e+03]\n", + " [ 2.00250000e+03 2.04650000e+03]\n", + " [-4.35000000e+01 1.27000000e+02]\n", + " [-4.35000000e+01 4.85400000e+02]\n", + " [-4.35000000e+01 8.43800000e+02]\n", + " [-4.35000000e+01 1.20220000e+03]\n", + " [-4.35000000e+01 1.56060000e+03]\n", + " [-4.35000000e+01 1.91900000e+03]\n", + " [ 8.30000000e+01 4.99999770e-01]\n", + " [ 4.41400000e+02 5.00000267e-01]\n", + " [ 7.99800000e+02 4.99999825e-01]\n", + " [ 1.15820000e+03 5.00000071e-01]\n", + " [ 1.51660000e+03 5.00000113e-01]\n", + " [ 1.87500000e+03 5.00000214e-01]\n", + " [ 8.30000000e+01 2.04550000e+03]\n", + " [ 4.41400000e+02 2.04550000e+03]\n", + " [ 7.99800000e+02 2.04550000e+03]\n", + " [ 1.15820000e+03 2.04550000e+03]\n", + " [ 1.51660000e+03 2.04550000e+03]\n", + " [ 1.87500000e+03 2.04550000e+03]\n", + " [ 2.00150000e+03 1.27000000e+02]\n", + " [ 2.00150000e+03 4.85400000e+02]\n", + " [ 2.00150000e+03 8.43800000e+02]\n", + " [ 2.00150000e+03 1.20220000e+03]\n", + " [ 2.00150000e+03 1.56060000e+03]\n", + " [ 2.00150000e+03 1.91900000e+03]\n", + " [-4.35000000e+01 5.00000284e-01]\n", + " [-4.35000000e+01 5.00000284e-01]\n", + " [ 2.00150000e+03 2.04550000e+03]\n", + " [ 2.00150000e+03 2.04550000e+03]\n", + " [ 8.30000000e+01 1.27000000e+02]\n", + " [ 4.41400000e+02 1.27000000e+02]\n", + " [ 7.99800000e+02 1.27000000e+02]\n", + " [ 1.15820000e+03 1.27000000e+02]\n", + " [ 1.51660000e+03 1.27000000e+02]\n", + " [ 1.87500000e+03 1.27000000e+02]\n", + " [ 8.30000000e+01 4.85400000e+02]\n", + " [ 4.41400000e+02 4.85400000e+02]\n", + " [ 7.99800000e+02 4.85400000e+02]\n", + " [ 1.15820000e+03 4.85400000e+02]\n", + " [ 1.51660000e+03 4.85400000e+02]\n", + " [ 1.87500000e+03 4.85400000e+02]\n", + " [ 8.30000000e+01 8.43800000e+02]\n", + " [ 4.41400000e+02 8.43800000e+02]\n", + " [ 7.99800000e+02 8.43800000e+02]\n", + " [ 1.15820000e+03 8.43800000e+02]\n", + " [ 1.51660000e+03 8.43800000e+02]\n", + " [ 1.87500000e+03 8.43800000e+02]\n", + " [ 8.30000000e+01 1.20220000e+03]\n", + " [ 4.41400000e+02 1.20220000e+03]\n", + " [ 7.99800000e+02 1.20220000e+03]\n", + " [ 1.15820000e+03 1.20220000e+03]\n", + " [ 1.51660000e+03 1.20220000e+03]\n", + " [ 1.87500000e+03 1.20220000e+03]\n", + " [ 8.30000000e+01 1.56060000e+03]\n", + " [ 4.41400000e+02 1.56060000e+03]\n", + " [ 7.99800000e+02 1.56060000e+03]\n", + " [ 1.15820000e+03 1.56060000e+03]\n", + " [ 1.51660000e+03 1.56060000e+03]\n", + " [ 1.87500000e+03 1.56060000e+03]\n", + " [ 8.30000000e+01 1.91900000e+03]\n", + " [ 4.41400000e+02 1.91900000e+03]\n", + " [ 7.99800000e+02 1.91900000e+03]\n", + " [ 1.15820000e+03 1.91900000e+03]\n", + " [ 1.51660000e+03 1.91900000e+03]\n", + " [ 1.87500000e+03 1.91900000e+03]]\n", + "67 0.96147748 0.96701775 0.97159609 0.97511327\n", + " 0.97749515 0.97869233 0.97812095 0.97812095 0.97882665 0.97882665\n", + " 0.98046512 0.97938023 0.97709532 0.97365734 0.96913788 0.96363342\n", + " 0.98668479 0.98556272 0.98319907 0.97964125 0.97496115 0.96925491\n", + " 0.9918097 0.99065742 0.98822988 0.98457518 0.97976579 0.97389805\n", + " 0.9957401 0.99456477 0.9920886 0.98836032 0.98345316 0.97746384\n", + " 0.99839939 0.99720849 0.9946995 0.99092169 0.98594885 0.97987817\n", + " 0.99973542 0.99853671 0.99601124 0.99220858 0.98720287 0.98109154]]\n", + "1511598 -8.15318346]\n", + " [ 7.52715976 -8.15378996]\n", + " [ 12.90315973 -8.15439647]\n", + " [ 18.27915969 -8.15500298]\n", + " [ 23.65515966 -8.15560949]\n", + " [ 29.03115962 -8.156216 ]\n", + " [ 2.1517663 -2.77718348]\n", + " [ 7.52776627 -2.77779 ]\n", + " [ 12.90376624 -2.77839651]\n", + " [ 18.2797662 -2.77900302]\n", + " [ 23.65576617 -2.77960953]\n", + " [ 29.03176613 -2.78021604]]\n", + "-24.43997833]\n", + " [ 0.18452584 -19.06397881]\n", + " [ 0.18680401 -13.6879793 ]\n", + " [ 0.18908217 -8.31197977]\n", + " [ 0.19136034 -2.93598025]\n", + " [ 2.07666524 -31.71428177]\n", + " [ 7.45266476 -31.71655993]\n", + " [ 12.82866428 -31.7188381 ]\n", + " [ 18.2046638 -31.72111627]\n", + " [ 23.58066331 -31.72339443]\n", + " [ 28.95666283 -31.7256726 ]\n", + " [ 2.08966426 -1.03928452]\n", + " [ 7.46566378 -1.04156269]\n", + " [ 12.8416633 -1.04384085]\n", + " [ 18.21766282 -1.04611902]\n", + " [ 23.59366233 -1.04839718]\n", + " [ 28.96966185 -1.05067535]\n", + " [ 30.85496675 -29.82897686]\n", + " [ 30.85724492 -24.45297735]\n", + " [ 30.85952308 -19.07697783]\n", + " [ 30.86180126 -13.70097831]\n", + " [ 30.86407941 -8.32497879]\n", + " [ 30.86635759 -2.94897928]\n", + " [ 0.17916541 -31.71347767]\n", + " [ 0.17916541 -31.71347767]\n", + " [ 30.86716168 -1.05147945]\n", + " [ 30.86716168 -1.05147945]\n", + " [ 2.07746934 -29.81678193]\n", + " [ 7.45346886 -29.8190601 ]\n", + " [ 12.82946837 -29.82133827]\n", + " [ 18.20546789 -29.82361643]\n", + " [ 23.58146741 -29.82589461]\n", + " [ 28.95746693 -29.82817277]\n", + " [ 2.07974751 -24.44078242]\n", + " [ 7.45574702 -24.44306058]\n", + " [ 12.83174654 -24.44533875]\n", + " [ 18.20774606 -24.44761692]\n", + " [ 23.58374558 -24.44989508]\n", + " [ 28.95974509 -24.45217325]\n", + " [ 2.08202567 -19.0647829 ]\n", + " [ 7.45802519 -19.06706107]\n", + " [ 12.83402471 -19.06933924]\n", + " [ 18.21002422 -19.0716174 ]\n", + " [ 23.58602374 -19.07389557]\n", + " [ 28.96202325 -19.07617373]\n", + " [ 2.08430384 -13.68878339]\n", + " [ 7.46030335 -13.69106155]\n", + " [ 12.83630287 -13.69333972]\n", + " [ 18.21230239 -13.69561789]\n", + " [ 23.58830191 -13.69789605]\n", + " [ 28.96430143 -13.70017422]\n", + " [ 2.086582 -8.31278387]\n", + " [ 7.46258152 -8.31506203]\n", + " [ 12.83858103 -8.3173402 ]\n", + " [ 18.21458055 -8.31961837]\n", + " [ 23.59058007 -8.32189653]\n", + " [ 28.96657959 -8.3241747 ]\n", + " [ 2.08886017 -2.93678435]\n", + " [ 7.46485969 -2.93906252]\n", + " [ 12.8408592 -2.94134068]\n", + " [ 18.21685872 -2.94361885]\n", + " [ 23.59285824 -2.94589701]\n", + " [ 28.96885776 -2.94817518]]\n", + "DEBUG:root:radec2pix: xyfp: [[-32.203794 -31.5506227 ]\n", + " [-32.20328688 -27.16419416]\n", + " [-32.20277976 -22.77776561]\n", + " [-32.20227264 -18.39133707]\n", + " [-32.20176553 -14.00490853]\n", + " [-32.20125841 -9.61847999]\n", + " [-32.20075129 -5.23205144]\n", + " [-32.20024417 -0.8456229 ]\n", + " [-32.203794 -31.5506227 ]\n", + " [-27.81736545 -31.55112981]\n", + " [-23.43093691 -31.55163693]\n", + " [-19.04450837 -31.55214405]\n", + " [-14.65807983 -31.55265117]\n", + " [-10.27165129 -31.55315829]\n", + " [ -5.88522274 -31.5536654 ]\n", + " [ -1.4987942 -31.55417252]\n", + " [-32.20024417 -0.8456229 ]\n", + " [-27.81381563 -0.84613002]\n", + " [-23.42738708 -0.84663714]\n", + " [-19.04095854 -0.84714426]\n", + " [-14.65453 -0.84765137]\n", + " [-10.26810146 -0.84815849]\n", + " [ -5.88167292 -0.84866561]\n", + " [ -1.49524438 -0.84917273]\n", + " [ -1.4987942 -31.55417252]\n", + " [ -1.49828708 -27.16774398]\n", + " [ -1.49777997 -22.78131544]\n", + " [ -1.49727285 -18.39488689]\n", + " [ -1.49676573 -14.00845835]\n", + " [ -1.49625861 -9.62202981]\n", + " [ -1.49575149 -5.23560127]\n", + " [ -1.49524438 -0.84917273]\n", + " [-32.18857289 -29.63812445]\n", + " [-32.18795136 -24.26212448]\n", + " [-32.18732984 -18.88612452]\n", + " [-32.18670832 -13.51012455]\n", + " [-32.1860868 -8.13412459]\n", + " [-32.18546528 -2.75812462]\n", + " [-30.29129227 -31.5358438 ]\n", + " [-24.91529231 -31.53646533]\n", + " [-19.53929235 -31.53708685]\n", + " [-14.16329238 -31.53770837]\n", + " [ -8.78729242 -31.53832989]\n", + " [ -3.41129245 -31.53895142]\n", + " [-30.28774592 -0.86084401]\n", + " [-24.91174595 -0.86146553]\n", + " [-19.53574599 -0.86208705]\n", + " [-14.15974603 -0.86270858]\n", + " [ -8.78374606 -0.8633301 ]\n", + " [ -3.4077461 -0.863DEBUG:root:radec2pix: xyfp Shape: (96, 2)\n", + "95162]\n", + " [ -1.5135731 -29.6416708 ]\n", + " [ -1.51295157 -24.26567084]\n", + " [ -1.51233005 -18.88967087]\n", + " [ -1.51170853 -13.51367091]\n", + " [ -1.51108701 -8.13767095]\n", + " [ -1.51046548 -2.76167097]\n", + " [-32.18879227 -31.53562444]\n", + " [-32.18879227 -31.53562444]\n", + " [ -1.51024611 -0.86417099]\n", + " [ -1.51024611 -0.86417099]\n", + " [-30.29107291 -29.63834382]\n", + " [-24.91507294 -29.63896534]\n", + " [-19.53907298 -29.63958686]\n", + " [-14.16307301 -29.64020839]\n", + " [ -8.78707305 -29.64082991]\n", + " [ -3.41107308 -29.64145143]\n", + " [-30.29045138 -24.26234385]\n", + " [-24.91445142 -24.26296538]\n", + " [-19.53845145 -24.2635869 ]\n", + " [-14.16245149 -24.26420842]\n", + " [ -8.78645152 -24.26482994]\n", + " [ -3.41045156 -24.26545147]\n", + " [-30.28982986 -18.88634389]\n", + " [-24.91382989 -18.88696541]\n", + " [-19.53782993 -18.88758693]\n", + " [-14.16182997 -18.88820846]\n", + " [ -8.78583 -18.88882997]\n", + " [ -3.40983004 -18.8894515 ]\n", + " [-30.28920834 -13.51034392]\n", + " [-24.91320837 -13.51096545]\n", + " [-19.53720841 -13.51158697]\n", + " [-14.16120844 -13.51220849]\n", + " [ -8.78520848 -13.5128DEBUG:root:radec2pix: fitpx: [[2135.5 4155.50000025]\n", + " [2135.5 3863.07142842]\n", + " [2135.5 3570.64285705]\n", + " [2135.5 3278.21428595]\n", + " [2135.50000001 2985.78571392]\n", + " [2135.5 2693.35714283]\n", + " [2135.49999998 2400.92857178]\n", + " [2135.49999997 2108.50000011]\n", + " [2135.5 4155.50000025]\n", + " [1843.07142855 4155.50000014]\n", + " [1550.64285713 4155.50000003]\n", + " [1258.21428573 4155.49999997]\n", + " [ 965.78571432 4155.49999994]\n", + " [ 673.35714273 4155.50000018]\n", + " [ 380.92857156 4155.49999985]\n", + " [ 88.49999978 4155.50000022]\n", + " [2135.49999997 2108.50000011]\n", + " [1843.07142854 2108.50000001]\n", + " [1550.64285742 2108.49999997]\n", + " [1258.21428585 2108.49999999]\n", + " [ 965.78571387 2108.50000002]\n", + " [ 673.35714329 2108.49999998]\n", + " [ 380.92857158 2108.5 ]\n", + " [ 88.4999998 2108.50000001]\n", + " [ 88.49999978 4155.50000022]\n", + " [ 88.50000021 3863.07142839]\n", + " [ 88.50000011 3570.64285706]\n", + " [ 88.50000015 3278.21428562]\n", + " [ 88.49999997 2985.7857143 ]\n", + " [ 88.49999979 2693.35714292]\n", + " [ 88.49999995 2400.92857144]\n", + " [ 88.4999998 2108.50000001]\n", + " [2134.5 4027.99999985]\n", + " [2134.5 3669.59999985]\n", + " [2134.49999999 3311.20000044]\n", + " [2134.5 2952.7999998 ]\n", + " [2134.5 2594.40000013]\n", + " [2134.50000001 2235.99999985]\n", + " [2007.99999998 4154.50000028]\n", + " [1649.59999995 4154.50000021]\n", + " [1291.20000012 4154.49999971]\n", + " [ 932.8 4154.5 ]\n", + " [ 574.40000006 4154.49999992]\n", + " [ 215.99999986 4154.50000015]\n", + " [2007.99999994 2109.50000002]\n", + " [1649.60000009 2109.49999999]\n", + " [1291.20000007 2109.5 ]\n", + " [ 932.80000034 2109.49999998]\n", + " [ 574.40000029 2109.49999999]\n", + " [ 216.00000015 2109.5 ]\n", + " [ 89.50000013 4027.99999988]\n", + " [ 89.50000024 3669.59999981]\n", + " [ 89.50000003 3311.19999998]\n", + " [ 89.49999973 2952.80000012]\n", + " [ 89.49999991 2594.40000002]\n", + " [ 89.50000029 2235.99999997]\n", + " [2134.5 4154.50000026]\n", + " [2134.5 4154.50000026]\n", + " [ 89.50000019 2109.49999999]\n", + " [ 89.50000019 2109.49999999]\n", + " [2008. 4027.99999998]\n", + " [1649.6 4027.99999999]\n", + " [1291.19999989 4028.00000025]\n", + " [ 932.79999995 4028.00000008]\n", + " [ 574.3999998 4028.00000025]\n", + " [ 215.99999992 4028.00000008]\n", + " [2008.00000001 3669.59999984]\n", + " [1649.60000007 3669.59999979]\n", + " [1291.19999996 3669.60000008]\n", + " [ 932.80000004 3669.59999994]\n", + " [ 574.39999995 3669.60000006]\n", + " [ 216.00000005 3669.59999995]\n", + " [2007.99999998 3311.2000002 ]\n", + " [1649.59999994 3311.20000015]\n", + " [1291.20000016 3311.19999976]\n", + " [ 932.80000015 3311.19999985]\n", + " [ 574.40000019 3311.19999985]\n", + " [ 216.00000023 3311.19999985]\n", + " [2007.99999995 2952.80000031]\n", + " [1649.60000003 2952.79999994]\n", + " [1291.19999981 2952.80000019]\n", + " [ 932.79999986 2952.8000001 ]\n", + " [ 574.39999987 2952.80000007]\n", + " [ 216.00000004 2952.79999998]\n", + " [2007.99999998 2594.40000008]\n", + " [1649.60000021 2594.39999977]\n", + " [1291.19999986 2594.40000009]\n", + " [ 932.80000028 2594.39999988]\n", + " [ 574.39999984 2594.40000006]\n", + " [ 216.00000019 2594.39999995]\n", + " [2007.99999983 2236.00000022]\n", + " [1649.60000014 2235.99999995]\n", + " [1291.19999989 2236.00000002]\n", + " [ 932.80000032 2235.99999995]\n", + " [ 574.40000023 2235.99999997]\n", + " [ 216.00000006 2235.99999999]]\n", + "DEBUG:root:radec2pix: xyfp: [[ -0.230877 31.363511 ]\n", + " [ -0.230877 26.97708243]\n", + " [ -0.230877 22.59065386]\n", + " [ -0.230877 18.20422528]\n", + " [ -0.230877 13.81779671]\n", + " [ -0.230877 9.43136815]\n", + " [ -0.230877 5.04493957]\n", + " [ -0.230877 0.658511 ]\n", + " [ -0.230877 31.363511 ]\n", + " [ -4.61730557 31.363511 ]\n", + " [ -9.00373414 31.363511 ]\n", + " [-13.39016272 31.363511 ]\n", + " [-17.77659129 31.363511 ]\n", + " [-22.16301986 31.363511 ]\n", + " [-26.54944843 31.363511 ]\n", + " [-30.935877 31.363511 ]\n", + " [ -0.230877 0.658511 ]\n", + " [ -4.61730558 0.658511 ]\n", + " [ -9.00373414 0.658511 ]\n", + " [-13.39016271 0.658511 ]\n", + " [-17.77659128 0.658511 ]\n", + " [-22.16301986 0.658511 ]\n", + " [-26.54944843 0.658511 ]\n", + " [-30.935877 0.658511 ]\n", + " [-30.935877 31.363511 ]\n", + " [-30.935877 26.97708243]\n", + " [-30.935877 22.59065386]\n", + " [-30.935877 18.20422528]\n", + " [-30.935877 13.81779671]\n", + " [-30.935877 9.43136814]\n", + " [-30.935877 5.04493957]\n", + " [-30.935877 0.658511 ]\n", + " [ -0.245877 29.451011 ]\n", + " [ -0.245DEBUG:root:radec2pix: fitpx: [[ 2.13550000e+03 -4.99999973e-01]\n", + " [ 2.13550000e+03 2.91928572e+02]\n", + " [ 2.13550000e+03 5.84357143e+02]\n", + " [ 2.13550000e+03 8.76785714e+02]\n", + " [ 2.13550000e+03 1.16921429e+03]\n", + " [ 2.13550000e+03 1.46164286e+03]\n", + " [ 2.13550000e+03 1.75407143e+03]\n", + " [ 2.13550000e+03 2.04650000e+03]\n", + " [ 2.13550000e+03 -4.99999973e-01]\n", + " [ 2.42792857e+03 -4.99999766e-01]\n", + " [ 2.72035714e+03 -5.00000023e-01]\n", + " [ 3.01278571e+03 -4.99999798e-01]\n", + " [ 3.30521429e+03 -5.00000229e-01]\n", + " [ 3.59764286e+03 -5.00000231e-01]\n", + " [ 3.89007143e+03 -4.99999870e-01]\n", + " [ 4.18250000e+03 -4.99999884e-01]\n", + " [ 2.13550000e+03 2.04650000e+03]\n", + " [ 2.42792857e+03 2.04650000e+03]\n", + " [ 2.72035714e+03 2.04650000e+03]\n", + " [ 3.01278571e+03 2.04650000e+03]\n", + " [ 3.30521429e+03 2.04650000e+03]\n", + " [ 3.59764286e+03 2.04650000e+03]\n", + " [ 3.89007143e+03 2.04650000e+03]\n", + " [ 4.18250000e+03 2.04650000e+03]\n", + " [ 4.18250000e+03 -4.99999884e-01]\n", + " [ 4.18250000e+03 2.91928572e+02]\n", + " [ 4.18250000e+03 5.84357143e+02]\n", + " [ 4.18250000e+03 8.76785714e+02]\n", + " [ 4.18250000e+03 1.16921429e+03]\n", + " [ 4.18250000e+03 1.46164286e+03]\n", + " [ 4.18250000e+03 1.75407143e+03]\n", + " [ 4.18250000e+03 2.04650000e+03]\n", + " [ 2.13650000e+03 1.27000000e+02]\n", + " [ 2.13650000e+03 4.85400000e+02]\n", + " [ 2.13650000e+03 8.43800000e+02]\n", + " [ 2.13650000e+03 1.20220000e+03]\n", + " [ 2.13650000e+03 1.56060000e+03]\n", + " [ 2.13650000e+03 1.91900000e+03]\n", + " [ 2.26300000e+03 4.99999770e-01]\n", + " [ 2.62140000e+03 5.00000267e-01]\n", + " [ 2.97980000e+03 4.99999825e-01]\n", + " [ 3.33820000e+03 5.00000071e-01]\n", + " [ 3.69660000e+03 5.00000113e-01]\n", + " [ 4.05500000e+03 5.00000214e-01]\n", + " [ 2.26300000e+03 2.04550000e+03]\n", + " [ 2.62140000e+03 2.04550000e+03]\n", + " [ 2.97980000e+03 2.04550000e+03]\n", + " [ 3.33820000e+03 2.04550000e+03]\n", + " [ 3.69660000e+03 2.04550000e+03]\n", + " [ 4.05500000e+03 2.04550000e+03]\n", + " [ 4.18150000e+03 1.27000000e+02]\n", + " [ 4.18150000e+03 4.85400000e+02]\n", + " [ 4.18150000e+03 8.43800000e+02]\n", + " [ 4.18150000e+03 1.20220000e+03]\n", + " [ 4.18150000e+03 1.56060000e+03]\n", + " [ 4.18150000e+03 1.91900000e+03]\n", + " [ 2.136500DEBUG:root:radec2pix: camVec Shape: (3, 96)\n", + "DEBUG:root:radec2pix: curVec: [[-0.85509772 0.03273236 -0.51743258]\n", + " [-0.86743129 0.01985323 -0.49716075]\n", + " [-0.87933422 0.00656435 -0.4761599 ]\n", + " [-0.89072338 -0.00707282 -0.45449074]\n", + " [-0.90152339 -0.02099458 -0.43222079]\n", + " [-0.91166757 -0.03513763 -0.40942348]\n", + " [-0.92109843 -0.04944027 -0.38617786]\n", + " [-0.92976785 -0.0638427 -0.36256842]\n", + " [-0.85509772 0.03273236 -0.51743258]\n", + " [-0.84756156 0.01045815 -0.53059403]\n", + " [-0.83929556 -0.01237765 -0.54353451]\n", + " [-0.83029262 -0.03567699 -0.55618461]\n", + " [-0.82055465 -0.05933876 -0.56847953]\n", + " [-0.81009297 -0.08326188 -0.58035923]\n", + " [-0.79892858 -0.10734662 -0.59176838]\n", + " [-0.78709219 -0.13149501 -0.60265657]\n", + " [-0.92976785 -0.0638427 -0.36256842]\n", + " [-0.92288811 -0.08793435 -0.37489343]\n", + " [-0.91512639 -0.11245132 -0.38716714]\n", + " [-0.90647288 -0.137289 -0.39932274]\n", + " [-0.89692666 -0.1623461 -0.41129833]\n", + " [-0.88649641 -0.18752253 -0.42303594]\n", + " [-0.87520154 -0.2127175 -0.43448077]\n", + " [-0.86307292 -0.23782886 -0.44558117]\n", + " [-0.78709219 -0.13149501 -0.60265657]\n", + " [-0.79952423 -0.14646209 -0.58250309]\n", + " [-0.81155534 -0.16161414 -0.56147912]\n", + " [-0.82310182 -0.17688263 -0.53964426]\n", + " [-0.83408916 -0.192202 -0.51706254]\n", + " [-0.84445106 -0.20750837 -0.49380429]\n", + " [-0.85412907 -0.22273834 -0.46994805]\n", + " [-0.86307292 -0.23782886 -0.44558117]\n", + " [-0.8604982 0.02709546 -0.50873243]\n", + " [-0.87533595 0.01102628 -0.48338949]\n", + " [-0.88944347 -0.00559758 -0.45701092]\n", + " [-0.90267867 -0.02265958 -0.42971823]\n", + " [-0.91491888 -0.04004331 -0.40164659]\n", + " [-0.9260621 -0.05763597 -0.37294381]\n", + " [-0.85194384 0.02305194 -0.52312551]\n", + " [-0.84221845 -0.00463854 -0.53911647]\n", + " [-0.83138864 -0.03307563 -0.55470617]\n", + " [-0.81945414 -0.06207419 -0.56977338]\n", + " [-0.80643583 -0.09144828 -0.58420755]\n", + " [-0.7923764 -0.12101502 -0.59790886]\n", + " [-0.92684729 -0.07423803 -0.36802556]\n", + " [-0.91782375 -0.1040637 -0.38310612]\n", + " [-0.90746479 -0.13442395 -0.39804253]\n", + " [-0.895765 -0.16513099 -0.41271882]\n", + " [-0.88274052 -0.19600033 -0.42702815]\n", + " [-0.86843181 -0.2268458 -0.44087093]\n", + " [-0.79259787 -0.13791051 -0.59394385]\n", + " [-0.80757641 -0.15638657 -0.56865066]\n", + " [-0.82186846 -0.17507215 -0.54210882]\n", + " [-0.83533305 -0.19384538 -0.51443431]\n", + " [-0.8478481 -0.21258849 -0.48575686]\n", + " [-0.85930933 -0.23118491 -0.45622474]\n", + " [-0.85511599 0.03261397 -0.51740987]\n", + " [-0.85511599 0.03261397 -0.51740987]\n", + " [-0.86308648 -0.23769195 -0.44562794]\n", + " [-0.86308648 -0.23769195 -0.44562794]\n", + " [-0.85734806 0.01746425 -0.51444077]\n", + " [-0.84767157 -0.01041659 -0.53041908]\n", + " [-0.83687005 -0.03903208 -0.54600825]\n", + " [-0.82494267 -0.06819477 -0.56108739]\n", + " [-0.81191009 -0.097718 -0.575546 ]\n", + " [-0.79781504 -0.12741871 -0.589284 ]\n", + " [-0.87224649 0.00121049 -0.48906501]\n", + " [-0.86270586 -0.02717244 -0.50497551]\n", + " [-0.85198541 -0.05625226 -0.52053487]\n", + " [-0.84008328 -0.08583812 -0.53562291]\n", + " [-0.82701971 -0.1157432 -0.550129 ]\n", + " [-0.81283758 -0.14578453 -0.56395207]\n", + " [-0.88641131 -0.01557767 -0.46263627]\n", + " [-0.87700087 -0.04440111 -0.47843288]\n", + " [-0.86636239 -0.07388154 -0.49392077]\n", + " [-0.85449324 -0.10382802 -0.5089804 ]\n", + " [-0.84141307 -0.13405497 -0.52350102]\n", + " [-0.82716473 -0.16437959 -0.53738055]\n", + " [-0.89969987 -0.03278138 -0.43527638]\n", + " [-0.89041323 -0.06198031 -0.4509132 ]\n", + " [-0.87985769 -0.09179722 -0.46628715]\n", + " [-0.86802976 -0.12204255 -0.48127949]\n", + " [-0.85494815 -0.15253198 -0.49577984]\n", + " [-0.84065527 -0.1830823 -0.50968577]\n", + " [-0.91198924 -0.05028352 -0.40712062]\n", + " [-0.90281961 -0.07979269 -0.42255162]\n", + " [-0.89234779 -0.10988296 -0.43776838]\n", + " [-0.88056934 -0.14036612 -0.45265328]\n", + " [-0.86750179 -0.17105841 -0.46709707]\n", + " [-0.85318678 -0.20177555 -0.48099787]\n", + " [-0.9231772 -0.06797119 -0.37831702]\n", + " [-0.91411702 -0.09772575 -0.39349682]\n", + " [-0.9037288 -0.12802671 -0.40851366]\n", + " [-0.89200733 -0.15868635 -0.42325118]\n", + " [-0.87896904 -0.18952052 -0.43760187]\n", + " [-0.86465467 -0.22034355 -0.45146541]]\n", + "DEBUG:root:radec2pix: fitpx: [[ 2.13550000e+03 -4.99999797e-01]\n", + " [ 2.13550000e+03 2.91928572e+02]\n", + " [ 2.13550000e+03 5.84357143e+02]\n", + " [ 2.13550000e+03 8.76785714e+02]\n", + " [ 2.1355000DEBUG:root:fitpix2pix: ccdpx: shape: (96, 2)\n", + "877 24.075011 ]\n", + " [ -0.245877 18.699011 ]\n", + " [ -0.245877 13.323011 ]\n", + " [ -0.245877 7.947011 ]\n", + " [ -0.245877 2.571011 ]\n", + " [ -2.143377 31.348511 ]\n", + " [ -7.519377 31.348511 ]\n", + " [-12.895377 31.348511 ]\n", + " [-18.271377 31.348511 ]\n", + " [-23.647377 31.348511 ]\n", + " [-29.023377 31.348511 ]\n", + " [ -2.143377 0.673511 ]\n", + " [ -7.519377 0.673511 ]\n", + " [-12.895377 0.673511 ]\n", + " [-18.271377 0.673511 ]\n", + " [-23.64737701 0.673511 ]\n", + " [-29.023377 0.673511 ]\n", + " [-30.920877 29.451011 ]\n", + " [-30.920877 24.075011 ]\n", + " [-30.920877 18.699011 ]\n", + " [-30.920877 13.323011 ]\n", + " [-30.920877 7.947011 ]\n", + " [-30.920877 2.571011 ]\n", + " [ -0.245877 31.348511 ]\n", + " [ -0.245877 31.348511 ]\n", + " [-30.920877 0.673511 ]\n", + " [-30.920877 0.673511 ]\n", + " [ -2.143377 29.451011 ]\n", + " [ -7.519377 29.451011 ]\n", + " [-12.895377 29.451011 ]\n", + " [-18.271377 29.451011 ]\n", + " [-23.647377 29.451011 ]\n", + " [-29.023377 29.451011 ]\n", + " [ -2.143377 24.075011 ]\n", + " [ -7.519377 24.075011 ]\n", + " [-12.895377 24.075011 ]\n", + " [-18.271377 24.075011 ]\n", + " [-23.647377 24.075011 ]\n", + " [-29.023377 24.075011 ]\n", + " [ -2.143377 18.699011 ]\n", + " [ -7.519377 18.699011 ]\n", + " [-12.895377 18.699011 ]\n", + " [-18.271377 18.699011 ]\n", + " [-23.647377 18.699011 ]\n", + " [-29.023377 18.699011 ]\n", + " [ -2.143377 13.323011 ]\n", + " [ -7.519377 13.323011 ]\n", + " [-12.895377 13.323011 ]\n", + " [-18.271377 13.323011 ]\n", + " [-23.647377 13.323011 ]\n", + " [-29.023377 13.323011 ]\n", + " [ -2.143377 7.947011 ]\n", + " [ -7.519377 7.947011 ]\n", + " [-12.895377 7.947011 ]\n", + " [-18.271377 7.947011 ]\n", + " [-23.647377 7.947011 ]\n", + " [-29.023377 7.947011 ]\n", + " [ -2.143377 2.571011 ]\n", + " [ -7.519377 2.571011 ]\n", + " [-12.895377 2.571011 ]\n", + " [-18.271377 2.571011 ]\n", + " [-23.647377 2.571011 ]\n", + " [-29.023377 2.571011 ]]\n", + "00e+03 5.00000284e-01]\n", + " [ 2.13650000e+03 5.00000284e-01]\n", + " [ 4.18150000e+03 2.04550000e+03]\n", + " [ 4.18150000e+03 2.04550000e+03]\n", + " [ 2.26DEBUG:root:fitpix2pix: visCut: True\n", + "0e+03 1.16921429e+03]\n", + " [ 2.13550000e+03 1.46164286e+03]\n", + " [ 2.13550000e+03 1.75407143e+03]\n", + " [ 2.13550000e+03 2.04650000e+03]\n", + " [ 2.13550000e+03 -4.99999797e-01]\n", + " [ 2.42792857e+03 -5.00000034e-01]\n", + " [ 2.72035714e+03 -4.99999972e-01]\n", + " [ 3.01278571e+03 -4.99999760e-01]\n", + " [ 3.30521429e+03 -5.00000049e-01]\n", + " [ 3.59764286e+03 -4.99999867e-01]\n", + " [ 3.89007143e+03 -5.00000044e-01]\n", + " [ 4.18250000e+03 -4.99999770e-01]\n", + " [ 2.13550000e+03 2.04650000e+03]\n", + " [ 2.42792857e+03 2.04650000e+03]\n", + " [ 2.72035714e+03 2.04650000e+03]\n", + " [ 3.01278571e+03 2.04650000e+03]\n", + " [ 3.30521429e+03 2.04650000e+03]\n", + " [ 3.59764286e+03 2.04650000e+03]\n", + " [ 3.89007143e+03 2.04650000e+03]\n", + " [ 4.18250000e+03 2.04650000e+03]\n", + " [ 4.18250000e+03 -4.99999770e-01]\n", + " [ 4.18250000e+03 2.91928572e+02]\n", + " [ 4.18250000e+03 5.84357143e+02]\n", + " [ 4.18250000e+03 8.76785714e+02]\n", + " [ 4.18250000e+03 1.16921429e+03]\n", + " [ 4.18250000e+03 1.46164286e+03]\n", + " [ 4.18250000e+03 1.75407143e+03]\n", + " [ 4.18250000e+03 2.04650000e+3002]\n", + " [ -3.40920852 -13.51345154]\n", + " [-30.28858681 -8.13434396]\n", + " [-24.91258685 -8.13496548]\n", + " [-19.53658688 -8.135587 ]\n", + " [-14.16058692 -8.13620852]\n", + " [ -8.78458696 -8.13683005]\n", + " [ -3.40858699 -8.13745157]\n", + " [-30.28796529 -2.75834399]\n", + " [-24.91196532 -2.75896552]\n", + " [-19.53596536 -2.75958704]\n", + " [-14.1599654 -2.76020856]\n", + " [ -8.78396543 -2.76083009]\n", + " [ -3.40796547 -2.76145161]]\n", + "DEBUG:root:radec2pix: curVec Shape: (96, 3)\n", + "03]\n", + " [ 2.13650000e+03 1.27000000e+02]\n", + " [ 2.13650000e+03 4.85400000e+02]\n", + " [ 2.13650000e+03 8.43800000e+02]\n", + " [ 2.13650000e+03 1.20220000e+03]\n", + " [ 2.13650000e+03 1.56060000e+03]\n", + " [ 2.13650000e+03 1.91900000e+03]\n", + " [ 2.26300000e+03 5.00000045e-01]\n", + " [ 2.62140000e+03 5.00000251e-01]\n", + " [ 2.97980000e+03 4.99999878e-01]\n", + " [ 3.33820000e+03 4.99999746e-01]\n", + " [ 3.69660000e+03 5.00000268e-01]\n", + " [ 4.05500000e+03 4.99999743e-01]\n", + " [ 2.26300000e+03 2.04550000e+03]\n", + " [ 2.62140000e+03 2.04550000e+03]\n", + " [ 2.97980000e+03 2.04550000e+03]\n", + " [ 3.33820000e+03 2.04550000e+03]\n", + " [ 3.69660000e+03 2.04550000e+03]\n", + " [ 4.05500000e+03 2.04550000e+03]\n", + " [ 4.18150000e+03 1.27000000e+02]\n", + " [ 4.18150000e+03 4.85400000e+02]\n", + " [ 4.18150000e+03 8.43800000e+02]\n", + " [ 4.18150000e+03 1.20220000e+03]\n", + " [ 4.18150000e+03 1.56060000e+03]\n", + " [ 4.18150000e+03 1.91900000e+03]\n", + " [ 2.13650000e+03 5.00000140e-01]\n", + " [ 2.13650000e+03 5.00000140e-01]\n", + " [ 4.18150000e+03 2.04550000e+03]\n", + " [ 4.18150000e+03 2.04550000e+03]\n", + " [ 2.26300000e+03 1.27000000e+02]\n", + " [ 2.62140000e+03 1.27000000e+02]\n", + " [ 2.97980000e+03 1.27000000e+02]\n", + " [ 3.33820000e+03 1.27000000e+02]\n", + " [ 3.69660000e+03 1.27000000e+02]\n", + " [ 4.05500000e+03 1.27000000e+02]\n", + " [ 2.26300000e+03 4.85400000e+02]\n", + " [ 2.62140000e+03 4.85400000e+02]\n", + " [ 2.97980000e+03 4.85400000e+02]\n", + " [ 3.33820000e+03 4.85400000e+02]\n", + " [ 3.69660000e+03 4.85400000e+02]\n", + " [ 4.05500000e+03 4.85400000e+02]\n", + " [ 2.26300000e+03 8.43800000e+02]\n", + " [ 2.62140000e+03 8.43800000e+02]\n", + " [ 2.97980000e+03 8.43800000e+02]\n", + " [ 3.33820000e+03 8.43800000e+02]\n", + " [ 3.69660000e+03 8.4380000DEBUG:root:mm_to_pix: fitpx: [[0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]]\n", + "0e+02]\n", + " [ 4.05500000e+03 8.43800000e+02]\n", + " [ 2.26300000e+03 1.20220000e+03]\n", + " [ 2.62140000e+03 1.20220000DEBUG:root:radec2pix: ccdpx: [[-4.45000000e+01 -4.99999797e-01]\n", + " [-4.45000000e+01 2.91928572e+02]\n", + " [-4.45000000e+01 5.84357143e+02]\n", + " [-4.45000000e+01 8.76785714e+02]\n", + " [-4.45000000e+01 1.16921429e+03]\n", + " [-4.45000000e+01 1.46164286e+03]\n", + " [-4.45000000e+01 1.75407143e+03]\n", + " [-4.45000001e+01 2.04650000e+03]\n", + " [-4.45000000e+01 -4.99999797e-01]\n", + " [ 2.47928571e+02 -5.00000034e-01]\n", + " [ 5.40357143e+02 -4.99999972e-01]\n", + " [ 8.32785714e+02 -4.99999760e-01]\n", + " [ 1.12521429e+03 -5.00000049e-01]\n", + " [ 1.41764286e+03 -4.99999867e-01]\n", + " [ 1.71007143e+03 -5.00000044e-01]\n", + " [ 2.00250000e+03 -4.99999770e-01]\n", + " [-4.45000001e+01 2.04650000e+03]\n", + " [ 2.47928571e+02 2.04650000e+03]\n", + " [ 5.40357143e+02 2.04650000e+03]\n", + " [ 8.32785714e+02 2.04650000e+03]\n", + " [ 1.12521429e+03 2.04650000e+03]\n", + " [ 1.41764286e+03 2.04650000e+03]\n", + " [ 1.71007143e+03 2.04650000e+03]\n", + " [ 2.00250000e+03 2.04650000e+03]\n", + " [ 2.00250000e+03 -4.99999770e-01]\n", + " [ 2.00250000e+03 2.91928572e+02]\n", + " [ 2.00250000e+03 5.84357143e+02]\n", + " [ 2.00250000e+03 8.76785DEBUG:root:optics_fp: rtanth: [45.08354623 42.13009767 39.44420909 37.08406184 35.11539785 33.60708557\n", + " 32.6230401 32.21134587 45.08354623 42.06280558 39.30031295 36.85418691\n", + " 34.79122159 33.18295674 32.09781375 31.58974814 32.21134587 27.8266828\n", + " 23.4426803 19.05979422 14.67902457 10.30307141 5.94258442 1.71954938\n", + " 31.58974814 27.2090275 22.83049885 18.45572241 14.0881941 9.73767156\n", + " 5.44507054 1.71954938 43.75525849 40.30775232 37.31902868 34.90712904\n", + " 33.19801449 32.30342747 43.72724359 40.19104921 37.09948507 34.57203928\n", + " 32.73962065 31.72289982 30.29997699 24.92663654 19.55475813 14.18600274\n", + " 8.82607125 3.51555769 29.68028893 24.31279095 18.95011366 13.59796176\n", + " 8.27677911 3.14775039 45.06233412 45.06233412 1.74001001 1.74001001\n", + " 42.37901039 38.71988024 35.50042932 32.85018402 30.91587699 29.8370753\n", + " 38.80944181 34.77673616 31.15241137 28.09496116 25.80666004 24.50394488\n", + " 35.69548681 31.26365913 27.1747629 23.607665 20.83215559 19.19474717\n", + " 33.16572831 28.3410327e+03]\n", + " [ 2.97980000e+03 1.20220000e+03]\n", + " [ 3.33820000e+03 1.20220000e+03]\n", + " [ 3.69660000e+03 1.20220000e+03]\n", + " [ 4.05500000e+03 1.20220000e+03]\n", + " [ 2.26300000e+03 1.56060000e+03]\n", + " [ 2.62140000e+03 1.56060000e+03]\n", + " [ 2.97980000e+03 1.56060000e+03]\n", + " [ 3.33820000e+03 1.56060000e+03]\n", + " [ 3.69660000e+03 1.56060000e+03]\n", + " [ 4.05500000e+03 1.56060000e+03]\n", + " [ 2.26300000e+03 1.91900000e+03]\n", + " [ 2.62140000e+03 1.91900000e+03]\n", + " [ 2.97980000e+03 1.91900000e+03]\n", + " [ 3.33820000e+03 1.91900000e+03]\n", + " [ 3.69660000e+03 1.91900000e+03]\n", + " [ 4.05500000e+03 1.91900000e+03]]\n", + "DEBUG:root:mm_to_pix: fitpx.shape: (96, 2)\n", + "8 23.75427319 19.57344126 16.11758242 13.93686031\n", + " 31.36185649 26.20714877 21.16284486 16.33156793 11.97401233 8.82250437\n", + " 30.41330799 25.06427551 19.72990783 14.4264816 9.20761812 4.38632462]\n", + "714e+02]\n", + " [ 2.00250000e+03 1.16921429e+03]\n", + " [ 2.00250000e+03 1.46164286e+03]\n", + " [ 2.00250000e+03 1.75407143e+03]\n", + " [ 2.00250000e+03 2.04650000e+03]\n", + " [-4.35000000e+01 1.27000000e+02]\n", + " [-4.35000000e+01 4.85400000e+02]\n", + " [-4.35000000e+01 8.43800000e+02]\n", + " [-4.35000000e+01 1.20220000e+03]\n", + " [-4.35000000e+01 1.56060000e+03]\n", + " [-4.35000000e+01 1.91900000e+03]\n", + " [ 8.30000000e+01 5.00000045e-01]\n", + " [ 4.41400000e+02 5.00000251e-01]\n", + " [ 7.99800000e+02 4.99999878e-01]\n", + " [ 1.15820000e+03 4.99999746e-01]\n", + " [ 1.51660000e+03 5.00000268e-01]\n", + " [ 1.87500000e+03 4.99999743e-01]\n", + " [ 8.29999998e+01 2.04550000e+03]\n", + " [ 4.41400000e+02 2.04550000e+03]\n", + " [ 7.99800000e+02 2.04550000e+03]\n", + " [ 1.15820000e+03 2.04550000e+03]\n", + " [ 1.51660000e+03 2.04550000e+03]\n", + " [ 1.87500000e+03 2.04550000e+03]\n", + " [ 2.00150000e+03 1.27000000e+02]\n", + " [ 2.00150000e+03 4.85400000e+02]\n", + " [ 2.00150000e+03 8.43800000e+02]\n", + " [ 2.00150000e+03 1.20220000e+03]\n", + " [ 2.00150000e+03 1.56060000e+03]\n", + " [ 2.00150000e+03 1.91900000e+03]\n", + " [-4.35000000e+01 5.00000140e-01]\n", + " [-4.35000000e+01 5.00000140e-01]\n", + " [ 2.00150000e+03 2.04550000e+03]\n", + " [ 2.00150000e+03 2.04550000e+03]\n", + " [ 8.30000000e+01 1.27000000e+02]\n", + " [ 4.41400000e+02 1.27000000DEBUG:root:fitpix2pix: ccdpx: shape: (96, 2)\n", + "e+02]\n", + " [ 7.99800000e+02 1.27000000e+02]\n", + " [ 1.15820000e+03 1.27000000e+02]\n", + " [ 1.51660000e+03 1.27000000e+02]\n", + " [ 1.87500000e+03 1.27000000e+02]\n", + " [ 8.30000000e+01 4.85400000e+02]\n", + " [ 4.41400000e+02 4.85400000e+02]\n", + " [ 7.99800000e+02 4.85400000e+02]\n", + " [ 1.15820000e+03 4.85400000e+02]\n", + " [ 1.51660000e+03 4.85400000e+02]\n", + " [ 1.87500000e+03 4.85400000e+02]\n", + " [ 8.30000000e+01 8.43800000e+02]\n", + " [ 4.41400000e+02 8.43800000e+02]\n", + " [ 7.99800000e+02 8.43800000e+02]\n", + " [ 1.15820000e+03 8.43800000e+02]\n", + " [ 1.51660000e+03 8.43800000e+02]\n", + " [ 1.87500000e+03 8.43800000e+02]\n", + " [ 8.30000000e+01 1.20220000e+03]\n", + " [ 4.41400000e+02 1.20220000e+03]\n", + " [ 7.99800000e+02 1.20220000e+03]\n", + " [ 1.15820000e+03 1.20220000e+03]\n", + " [ 1.51660000e+03 1.20220000e+03]\n", + " [ 1.87500000e+03 1.20220000e+03]\n", + " [ 8.30000001e+01 1.56060000e+03]\n", + " [ 4.41400000e+02 1.56060000e+03]\n", + " [ 7.99800000e+02 1.56060000e+03]\n", + " [ 1.15820000e+03 1.56060000e+03]\n", + " [ 1.51660000e+03 1.56060000e+03]\n", + " [ 1300000e+03 1.27000000e+02]\n", + " [ 2.62140000e+03 1.27000000e+02]\n", + " [ 2.97980000e+03 1.27000000e+02]\n", + " [ 3.33820000e+03 1.27000000e+02]\n", + " [ 3.69660000e+03 1.27000000e+02]\n", + " [ 4.05500000e+03 1.27000000e+02]\n", + " [ 2.26300000e+03 4.85400000e+02]\n", + " [ 2.62140000e+03 4.85400000e+02]\n", + " [ 2.97980000e+03 4.85400000e+02]\n", + " [ 3.33820000e+03 4.85400000e+02]\n", + " [ 3.69660000e+03 4.85400000e+02]\n", + " [ 4.05500000e+03 4.85400000e+02]\n", + " [ 2.26300000e+03 8.43800000e+02]\n", + " [ 2.62140000e+03 8.43800000e+02]\n", + " [ 2.97980000e+03 8.43800000e+02]\n", + " [ 3.33820000e+03 8.43800000e+02]\n", + " [ 3.69660000e+03 8.43800000e+02]\n", + " [ 4.05500000e+03 8.43800000e+02]\n", + " [ 2.26300000e+03 1.20220000e+03]\n", + " [ 2.62140000e+03 1.20220000e+03]\n", + " [ 2.97980000e+03 1.20220000e+03]\n", + " [ 3.33820000e+03 1.20220000e+03]\n", + " [ 3.69660000e+03 1.20220000e+03]\n", + " [ 4.05500000e+03 1.20220000e+03]\n", + " [ 2.26300000e+03 1.56060000e+03]\n", + " [ 2.62140000e+03 1.56060000e+03]\n", + " [ 2.97980000e+03 1.56060000e+03]\n", + " [ 3.33820000e+03 1.56060000e+03]\n", + " [ 3.69660000e+03 1.56060000e+03]\n", + " [ 4.05500000e+03 1.56060000e+03]\n", + " [ 2.26300000e+03 1.91900000e+03]\n", + " [ 2.62140000e+03 1.91900000e+03]\n", + " [ 2.97980000e+03 1.91900000e+03]\n", + " [ 3.33820000e+03 1.91900000e+03]\n", + " [ 3.69660000e+03 1.91900000e+03]\n", + " [ 4.05500000e+03 1.91900000e+03]]\n", + ".87500000e+03 1.56060000e+03]\n", + " [ 8.29999998e+01 1.91900000e+03]\n", + " [ 4.41400000e+02 1.91900000e+03]\n", + " [ 7.99800000e+02 1.91900000e+03]\n", + " [ 1.15820000e+03 1.91900000e+03]\n", + " [ 1.51660000e+03 1.91900000e+03]\n", + " [ 1.87500000e+03 1.91900000e+03]]\n", + "DEBUG:root:radec2pix: xyfp Shape: (96, 2)\n", + "DEBUG:root:cartToSphere: vec: [[ 0.00114566 -0.20812604 0.97810134]\n", + " [ 0.00115565 -0.1806373 0.9835491 ]\n", + " [ 0.00116422 -0.15245726 0.98830938]\n", + " [ 0.00117136 -0.12369032 0.99232018]\n", + " [ 0.00117701 -0.09444319 0.99552956]\n", + " [ 0.00118116 -0.06482624 0.99789587]\n", + " [ 0.00118376 -0.03495355 0.99938824]\n", + " [ 0.00118481 -0.00494229 0.99998708]\n", + " [ 0.00114566 -0.20812604 0.97810134]\n", + " [ 0.03017404 -0.20797994 0.97766757]\n", + " [ 0.05908469 -0.20756351 0.97643555]\n", + " [ DEBUG:root:optics_fp: cphi: [0.71431368 0.76437722 0.81641337 0.86835883 0.91702693 0.95816873\n", + " 0.9870555 0.99965535 0.71431368 0.66132929 0.5962023 0.51675291\n", + " 0.42131547 0.30954599 0.18335276 0.04744559 0.99965535 0.9995376\n", + " 0.99934763 0.99901176 0.99833132 0.99660587 0.98975 0.86955594\n", + " 0.04744559 0.05506581 0.06560435 0.08112784 0.10624255 0.15365671\n", + " 0.27469828 0.86955594 0.73565039 0.79855486 0.86249109 0.9220669\n", + " 0.96951843 0.99634831 0.69273272 0.61992142 0.52667287 0.40967477\n", + " 0.26839934 0.10753407 0.99959633 0.99940262 0.99902775 0.99814911\n", + " 0.99520453 0.969333 0.0509959 0.06222863 0.07980586 0.1111717\n", + " 0.18256945 0.47985554 0.71431702 0.71431702 0.86795254 0.86795254\n", + " 0.71476593 0.64346978 0.55038977 0.43114136 0.28422526 0.11432331\n", + " 0.78049181 0.71641143 0.62718906 0.50409223 0.34047225 0.13917969\n", + " 0.84856189 0.79689424 0.71896966 0.59988271 0.42174368 0.17764392\n", + " 0.9132683 0.87905083 0.82247132 0.72349099 0.54506987 0.24461812\n", + " 0.96577787 0.95060272 0.92315504 0.86706843 0.73363771 0.38635141\n", + " 0.99587869 0.99392322 0.99017013 0.9815259 0.95398889 0.77695241]\n", + "0.08776498 -0.20687811 0.97442227]\n", + " [ 0.11610332 -0.20592557 0.97165564]\n", + " [ 0.14398904 -0.20470759 0.96817455]\n", + " [ 0.17131174 -0.20322504 0.96402898]\n", + " [ 0.19796003 -0.20147731 0.95928031]\n", + " [ 0.00118481 -0.00494229 0.99998708]\n", + " [ 0.03120455 -0.00493875 0.99950082]\n", + " [ 0.06110052 -0.0049287 0.99811945]\n", + " [ 0.09075528 -0.00491221 0.99586111]\n", + " [ 0.1200543 -0.00488939 0.99275529]\n", + " [ 0.14888674 -0.0048604 0.98884231]\n", + " [ 0.17714546 -0.00482538 0.98417285]\n", + " [ 0.20472589 -0.00478446 0.97880765]\n", + " [ 0.19796003 -0.20147731 0.95928031]\n", + " [ 0.19971011 -0.17488831 0.96412134]\n", + " [ 0.20119978 -0.14761103 0.96836441]\n", + " [ 0.20242973 -0.11975687 0.97194676]\n", + " [ 0.20339908 -0.09143612 0.97481703]\n", + " [ 0.20410611 -0.06275929 0.97693499]\n", + " [ 0.20454887 -0.03383788 0.97827131]\n", + " [ 0.20472589 -0.00478446 0.97880765]\n", + " [ 0.00124992 -0.19623245 0.98055661]\n", + " [ 0.00126219 -0.16206424 0.9867794 ]\n", + " [ 0.00127213 -0.12696122 0.99190687]\n", + " [ 0.00127966 -0.09111882 0.99583921]\n", + " [ 0.00128472 -0.05474021 0.9984998 ]\n", + " [ 0.00128725 -0.01803675 0.9998365 ]\n", + " [ 0.01380981 -0.20800294 0.97803071]\n", + " [ 0.04932315 -0.20764209 0.97696059]\n", + " [ 0.08454761 -0.20687664 0.97470701]\n", + " [ 0.11927732 -0.20570979 0.97131684]\n", + " [ 0.15330846 -0.20414458 0.96686168]\n", + " [ 0.18643745 -0.20218204 0.96143824]\n", + " [ 0.01428113 -0.00504426 0.9998853 ]\n", + " [ 0.05100494 -0.00503536 0.99868571]\n", + " [ 0.08742589 -0.00501654 0.9961584 ]\n", + " [ 0.12333185 -0.004988 0.99235295]\n", + " [ 0.15851879 -0.00495001 0.98734355]\n", + " [ 0.19279062 -0.00490286 0.98122767]\n", + " [ 0.19866498 -0.1899823 0.96147748]\n", + " [ 0.20063357 -0.15691665 0.96701775]\n", + " [ 0.20221208 -0.12292805 0.97159609]\n", + " [ 0.20339952 -0.08821992 0.97511327]\n", + " [ 0.20419277 -0.05299579 0.97749515]\n", + " [ 0.20458843 -0.01746139 0.97869233]\n", + " [ 0.00124504 -0.2080333 0.97812095]\n", + " [ 0.00124504 -0.2080333 0.97812095]\n", + " [ 0.2046327 -0.00488406 0.97882665]\n", + " [ 0.2046327 -0.00488406 0.97882665]\n", + " [ 0.01386393 -0.19620382 0.98046512]\n", + " [ 0.04951642 -0.19586344 0.97938023]\n", + " [ 0.08487904 -0.1951417 0.97709532]\n", + " [ 0.1197456 -0.19404219 0.97365734]\n", + " [ 0.15391263 -0.19256861 0.96913788]\n", + " [ 0.18717755 -0.19072284 0.96363342]\n", + " [ 0.01400003 -0.16204052 0.98668479]\n", + " [ 0.0500023 -0.16175873 0.98556272]\n", + " [ 0.08571147 -0.16116182 0.98319907]\n", + " [ 0.12092013 -0.16025398 0.97964125]\n", + " [ 0.15542529 -0.15904007 0.97496115]\n", + " [ 0.1890269 -0.15752379 0.96925491]\n", + " [ 0.01411023 -0.12694255 0.9918097 ]\n", + " [ 0.05039551 -0.12672084 0.99065742]\n", + " [ 0.08638432 -0.12625153 0.98822988]\n", + " [ 0.12186779 -0.1255387 0.98457518]\n", + " [ 0.15664287 -0.12458735 0.97976579]\n", + " [ 0.19051132 -0.12340188 0.97389805]\n", + " [ 0.01419378 -0.09110536 0.9957401 ]\n", + " [ 0.0506935 -0.09094551 0.99456477]\n", + " [ 0.08689379 -0.09060732 0.9920886 ]\n", + " [ 0.12258434 -0.09009413 0.98836032]\n", + " [ 0.15756175 -0.08941017 0.98345316]\n", + " [ 0.19162897 -0.08855947 0.97746384]\n", + " [ 0.0142499 -0.05473209 0.99839939]\n", + " [ 0.05089361 -0.05463571 0.99720849]\n", + " [ 0.08723571 -0.05443186 0.9946995 ]\n", + " [ 0.12306478 -0.05412272 0.99092169]\n", + " [ 0.15817704 -0.05371108 0.98594885]\n", + " [ 0.19237609 -0.05319971 0.97987817]\n", + " [ 0.01427798 -0.01803407 0.99973542]\n", + " [ 0.05099373 -0.01800225 0.99853671]\n", + " [ 0.08740674 -0.01793496 0.99601124]\n", + " [ 0.12330495 -0.01783294 0.99220858]\n", + " [ 0.15848438 -0.01769716 0.98720287]\n", + " [ 0.1927489 -0.01752858 0.98109154]]\n", + "DEBUG:root:mm_to_pix: fitpx: [[0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [DEBUG:root:radec2pix: ccdpx: [[-4.45000001e+01 -5.00000132e-01]\n", + " [-4.45000001e+01 2.91928571e+02]\n", + " [-4.44999999e+01 5.84357143e+02]\n", + " [-4.44999998e+01 8.76785714e+02]\n", + " [-4.45000000e+01 1.16921429e+03]\n", + " [-4.45000002e+01 1.46164286e+03]\n", + " [-4.44999998e+01 1.75407143e+03]\n", + " [-4.44999999e+01 2.04650000e+03]\n", + " [-4.45000001e+01 -5.00000132e-01]\n", + " [ 2.47928572e+02 -4.99999845e-01]\n", + " [ 5.40357143e+02 -5.00000146e-01]\n", + " [ 8.32785714e+02 -4.99999843e-01]\n", + " [ 1.12521429e+03 -4.99999832e-01]\n", + " [ 1.41764286e+03 -5.00000031e-01]\n", + " [ 1.71007143e+03 -5.00000120e-01]\n", + " [ 2.00250000e+03 -4.99999883e-01]\n", + " [-4.44999999e+01 2.04650000e+03]\n", + " [ 2.47928572e+02 2.04650000e+03]\n", + " [ 5.40357143e+02 2.04650000e+03]\n", + " [ 8.32785714e+02 2.04650000e+03]\n", + " [ 1.12521429e+03 2.04650000e+03]\n", + " [ 1.41764286e+03 2.04650000e+03]\n", + " [ 1.71007143e+03 2.04650000e+03]\n", + " [ 2.00250000e+03 2.04650000e+03]\n", + " [ 2.00250000e+03 -4.99999883e-01]\n", + " [ 2.00250000e+03 2.91928571e+02]\n", + " [ 2.00250000e+03 5.84357143e+02]\n", + " [ 2.00250000e+03 8.76785714e+02]\n", + " [ 2.00250000e+03 1.16921429e+03]\n", + " [ 2.00250000e+03 1.46164286e+03]\n", + " [ 2.00250000e+03 1.75407143e+03]\n", + " [ 2.00250000e+03 2.04650000e+03]\n", + " [-4.35000002e+01 1.27000000e+02]\n", + " [-4.34999998e+01 4.85400000e+02]\n", + " [-4.34999999e+01 8.43800000e+02]\n", + " [-4.35000001e+01 1.20220000e+03]\n", + " [-4.34999999e+01 1.56060000e+03]\n", + " [-4.35000000e+01 1.91900000e+03]\n", + " [ 8.30000001e+01 5.00000120e-01]\n", + " [ 4.41400000e+02 4.99999839e-01]\n", + " [ 7.99800000e+02 4.99999975e-01]\n", + " [ 1.15820000e+03 5.00000060e-01]\n", + " [ 1.51660000e+03 5.00000260e-01]\n", + " [ 1.87500000e+03 4.99999701e-01]\n", + " [ 8.29999997e+01 2.04550000e+03]\n", + " [ 4.41400000e+02 2.04550000e+03]\n", + " [ 7.99800000e+02 2.04550000e+03]\n", + " [ 1.15820000e+03 2.04550000e+03]\n", + " [ 1.51660000e+03 2.04550000e+03]\n", + " [ 1.87500000e+03 2.04550000e+03]\n", + " [ 2.00150000e+03 1.27000000e+02]\n", + " [ 2.00150000e+03 4.85400000e+02]\n", + " [ 2.00150000e+03 8.43800000e+02]\n", + " [ 2.00150000e+03 1.20220000e+03]\n", + " [ 2.00150000e+03 1.56060000e+03]\n", + " [ 2.00150000e+03 1.91900000e+03]\n", + " [-4.35000003e+01 4.99999746e-01]\n", + " [-4.35000003e+01 4.99999746e-01]\n", + " [ 2.00150000e+03 2.04550000e+03]\n", + " [ 2.00150000e+03 2.04550000e+03]\n", + " [ 8.29999998e+01 1.27000000e+02]\n", + " [ 4.41400000e+02 1.27000000e+02]\n", + " [ 7.99800000e+02 1.27000000e+02]\n", + " [ 1.15820000e+03 1.27000000e+02]\n", + " [ 1.51660000e+03 1.27000000e+02]\n", + " [ 1.87500000e+03 1.27000000e+02]\n", + " [ 8.30000000e+01 4.85400000e+02]\n", + " [ 4.41400000e+02 4.85400000e+02]\n", + " [ 7.99800000e+02 4.85400000e+02]\n", + " [ 1.15820000e+03 4.85400000e+02]\n", + " [ 1.51660000e+03 4.85400000e+02]\n", + " [ 1.87500000e+03 4.85400000e+02]\n", + " [ 8.29999999e+01 8.43800000e+02]\n", + " [ 4.41400000e+02 8.43800000e+02]\n", + " [ 7.99800000e+02 8.43800000e+02]\n", + " [ 1.15820000e+03 8.43800000e+02]\n", + " [ 1.51660000e+03 8.43800000e+02]\n", + " [ 1.87500000e+03 8.43800000e+02]\n", + " [ 8.29999998e+01 1.20220000e+03]\n", + " [ 4.41400000e+02 1.20220000e+03]\n", + " [ 7.99800000e+02 1.20220000e+03]\n", + " [ 1.15820000e+03 1.20220000e+03]\n", + " [ 1.51660000e+03 1.20220000e+03]\n", + " [ 1.87500000e+03 1.20220000e+03]\n", + " [ 8.30000000e+01 1.56060000e+03]\n", + " [ 4.41400000e+02 1.56060000e+03]\n", + " [ 7.99800000e+02 1.56060000e+03]\n", + " [ 1.15820000e+03 1.56060000e+03]\n", + " [ 1.51660000e+03 1.56060000e+03]\n", + " [ 1.87500000e+03 1.56060000e+03]\n", + " [ 8.30000000e+01 1.91900000e+03]\n", + " [ 4.41400000e+02 1.91900000e+03]\n", + " [ 7.99800000e+02 1.91900000e+03]\n", + " [ 1.15820000e+03 1.91900000e+03]\n", + " [ 1.51660000e+03 1.91900000e+03]\n", + " [ 1.87500000e+03 1.91900000e+03]]\n", + "DEBUG:root:radec2pix: camVec: [[-0.20605921 -0.20787315 -0.20942436 -0.21070676 -0.21171698 -0.21245291\n", + " -0.21291301 -0.2130962 -0.20605921 -0.17962884 -0.15250018 -0.12477652\n", + " -0.0965659 -0.06797863 -0.03912632 -0.01012153 -0.2130962 -0.18573503\n", + " -0.15766321 -0.1289874 -0.09981355 -0.07024926 -0.04040619 -0.01040084\n", + " -0.01012153 -0.01020027 -0.01026637 -0.01031977 -0.01036027 -0.01038751\n", + " -0.01040113 -0.01040084 -0.20679239 -0.20883895 -0.21048459 -0.2117221\n", + " -0.21254753 -0.21295821 -0.1946339 -0.16175754 -0.12793421 -0.09336102\n", + " -0.05824097 -0.02277993 -0.20126076 -0.16723544 -0.13224882 -0.09649617\n", + " -0.06017591 -0.02349561 -0.01025713 -0.01034611 -0.01041588 -0.01046611\n", + " -0.01049618 -0.01050541 -0.20597676 -0.20597676 -0.01050361 -0.01050361\n", + " -0.19540403 -0.16239488 -0.12843557 -0.09372478 -0.05846599 -0.02286533\n", + " -0.19733483 -0.16399068 -0.1296908 -0.094636 -0.05902974 -0.02307851\n", + " -0.19888634 -0.16527244 -0.13070023 -0.09537003 -0.05948408 -0.02324907\n", + " -0.20005292 -0.16623701 -0.13146138 -0.09592455 -0.05982716 -0.0233762\n", + " -0.20083104 -0.16688094 -0.13197015 -0.09629527 -0.0600556 -0.02345845\n", + " -0.20121796 -0.16720058 -0.13222195 -0.09647752 -0.06016577 -0.02349426]\n", + " [-0.20169937 -0.17519485 -0.1480085 -0.12024402 -0.09200964 -0.06341581\n", + " -0.03457423 -0.00559748 -0.20169937 -0.20353396 -0.20511207 -0.20642749\n", + " -0.20747679 -0.20825778 -0.20876879 -0.20900854 -0.00559748 -0.00565735\n", + " -0.00571045 -0.00575671 -0.00579596 -0.00582797 -0.00585246 -0.00586919\n", + " -0.20900854 -0.18153487 -0.15336672 -0.12461057 -0.09537244 -0.06576046\n", + " -0.03588698 -0.00586919 -0.1902398 -0.15728353 -0.12340547 -0.08880315\n", + " -0.0536798 -0.01824146 -0.20244048 -0.20451655 -0.20620095 -0.20748634\n", + " -0.2083686 -0.2088448 -0.00572401 -0.00579384 -0.00585326 -0.00590199\n", + " -0.0059396 -0.00596558 -0.19712185 -0.16296958 -0.1278801 -0.09204872\n", + " -0.05567473 -0.01896706 -0.2016167 -0.2016167 -0.0059719 -0.0059719\n", + " -0.19101701 -0.19297429 -0.19456158 -0.19577312 -0.19660523 -0.1970549\n", + " -0.15792497 -0.15953875 -0.16084786 -0.1618491 -0.16253892 -0.16291334\n", + " -0.12390793 -0.1251726 -0.12620079 -0.12699006 -0.12753631 -0.1278347\n", + " -0.089165 -0.090077 -0.09082101 -0.09139481 -0.09179425 -0.09201449\n", + " -0.05389991 -0.05445583 -0.05491134 -0.05526476 -0.0555129 -0.05565213\n", + " -0.018319 -0.01851594 -0.01867909 -0.01880776 -0.01890068 -0.01895646]\n", + " [ 0.95752648 0.96233857 0.96655829 0.97012578 0.97299031 0.97511138\n", + " 0.97645925 0.97701519 0.95752648 0.96244865 0.96678474 0.97047334\n", + " 0.97346207 0.97570877 0.97718203 0.97786143 0.97701519 0.98258358\n", + " 0.98747643 0.99162952 0.99498928 0.99751244 0.9991662 0.99992869\n", + " 0.97786143 0.98333161 0.98811601 0.99215206 0.99538774 0.99778137\n", + " 0.99930173 0.99992869 0.95971127 0.96521924 0.96977695 0.97328709\n", + " 0.97567516 0.97689101 0.95975804 0.96540534 0.97011031 0.97377263\n", + " 0.97631476 0.97768345 0.97952098 0.98589996 0.99119927 0.99531586\n", + " 0.99817012 0.99970614 0.98032534 0.98657685 0.99173494 0.9956995\n", + " 0.99839379 0.99976492 0.95756163 0.95756163 0.999927 0.999927\n", + " 0.96194063 0.96767186 0.97244542 0.97616011 0.97873802 0.98012578\n", + " 0.96753226 0.97347545 0.97842131 0.98226722 0.98493482 0.98637043\n", + " 0.97215793 0.97827237 0.98335691 0.9873085 0.99004855 0.99152295\n", + " 0.97571944 0.98196303 0.98715219 0.99118387 0.99397914 0.99548324\n", + " 0.97814196 0.9844721 0.98973159 0.9938174 0.99665021 0.9981746\n", + " 0.97937518 0.98574902 0.99104412 0.99515745 0.99800944 0.99954423]]\n", + "DEBUG:root:radec2pix: xyfp: [[ 0.16415906 -31.72847131]\n", + " [ 0.16601788 -27.34204313]\n", + " [ 0.1678767 -22.95561497]\n", + " [ 0.16973552 -18.56918678]\n", + " [ 0.17159434 -14.1827586 ]\n", + " [ 0.17345315 -9.79633043]\n", + " [ 0.17531197 -5.40990225]\n", + " [ 0.17717079 -1.02347407]\n", + " [ 0.16415906 -31.72847131]\n", + " [ 4.55058724 -31.73033014]\n", + " [ 8.93701541 -31.73218895]\n", + " [ 13.32344359 -31.73404778]\n", + " [ 17.70987177 -31.73590659]\n", + " [ 22.09629995 -31.73776541]\n", + " [ 26.48272812 -31.73962422]\n", + " [ 30.8691563 -31.74148305]\n", + " [ 0.17717079 -1.02347407]\n", + " [ 4.56359897 -1.02533289]\n", + " [ 8.95002714 -1.02719171]\n", + " [ 13.33645532 -1.02905053]\n", + " [ 17.7228835 -1.03090935]\n", + " [ 22.10931168 -1.03276817]\n", + " [ 26.49573986 -1.03462699]\n", + " [ 30.88216803 -1.0364858 ]\n", + " [ 30.8691563 -31.74148305]\n", + " [ 30.87101512 -27.35505487]\n", + " [ 30.87287394 -22.96862669]\n", + " [ 30.87473276 -18.58219851]\n", + " [ 30.87659158 -14.19577034]\n", + " [ 30.8784504 -9.80934216]\n", + " [ 30.88030922 -5.42291398]\n", + " [ 30.88216803 -1.0364858 ]\n", + " [ 0.17996951 -29.81597784]\n", + " [ 0.18224768 -24.43997833]\n", + " [ 0.18452584 -19.06397881]\n", + " [ 0.18680401 -13.6879793 ]\n", + " [ 0.18908217 -8.31197977]\n", + " [ 0.19136034 -2.93598025]\n", + " [ 2.07666524 -31.71428177]\n", + " [ 7.45266476 -31.71655993]\n", + " [ 12.82866428 -31.7188381 ]\n", + " [ 18.2046638 -31.72111627]\n", + " [ 23.58066331 -31.72339443]\n", + " [ 28.95666283 -31.7256726 ]\n", + " [ 2.08966426 -1.03928452]\n", + " [ 7.46566378 -1.04156269]\n", + " [ 12.8416633 -1.04384085]\n", + " [ 18.21766282 -1.04611902]\n", + " [ 23.59366233 -1.04839718]\n", + " [ 28.96966185 -1.05067535]\n", + " [ 30.85496675 -29.82897686]\n", + " [ 30.85724492 -24.45297735]\n", + " [ 30.85952308 -19.07697783]\n", + " [ 30.86180126 -13.70097831]\n", + " [ 30.86407941 -8.32497879]\n", + " [ 30.86635759 -2.94897928]\n", + " [ 0.17916541 -31.71347767]\n", + " [ 0.17916541 -31.71347767]\n", + " [ 30.86716168 -1.05147945]\n", + " [ 30.86716168 -1.05147945]\n", + " [ 2.07746934 -29.81678193]\n", + " [ 7.45346886 -29.8190601 ]\n", + " [ 12.82946837 -29.82133827]\n", + " [ 18.20546789 -29.82361643]\n", + " [ 23.58146741 -29.82589461]\n", + " [ 28.95746693 -29.82817277]\n", + " [ 2.07974751 -24.44078242]\n", + " [ 7.45574702 -24.44306058]\n", + " [ 12.83174654 -24.44533875]\n", + " [ 18.20774606 -24.44761692]\n", + " [ 23.58374558 -24.44989508]\n", + " [ 28.95974509 -24.45217325]\n", + " [ 2.08202567 -19.0647829 ]\n", + " [ 7.45802519 -19.06706107]\n", + " [ 12.83402471 -19.06933924]\n", + " [ 18.21002422 -19.0716174 ]\n", + " [ 23.58602374 -19.07389557]\n", + " [ 28.96202325 -19.07617373]\n", + " [ 2.08430384 -13.68878339]\n", + " [ 7.46030335 -13.69106155]\n", + " [ 12.83630287 -13.69333972]\n", + " [ 18.21230239 -13.69561789]\n", + " [ 23.58830191 -13.69789605]\n", + " [ 28.96430143 -13.70017422]\n", + " [ 2.086582 -8.31278387]\n", + " [ 7.46258152 -8.31506203]\n", + " [ 12.83858103 -8.3173402 ]\n", + " [ 18.21458055 -8.31961837]\n", + " [ 23.59058007 -8.32189653]\n", + " [ 28.96657959 -8.3241747 ]\n", + " [ 2.08886017 -2.93678435]\n", + " [ 7.46485969 -2.93906252]\n", + " [ 12.8408592 -2.94134068]\n", + " [ 18.21685872 -2.94361885]\n", + " [ 23.59285824 -2.94589701]\n", + " [ 28.96885776 -2.94817518]]\n", + "DEBUG:root:radec2pix: fitpx: [[ 2.13550000e+03 -4.99999797e-01]\n", + " [ 2.13550000e+03 2.91928572e+02]\n", + " [ 2.13550000e+03 5.84357143e+02]\n", + " [ 2.13550000e+03 8.76785714e+02]\n", + " [ 2.13550000e+03 1.16921429e+03]\n", + " [ 2.13550000e+03 1.46164286e+03]\n", + " [ 2.13550000e+03 1.75407143e+03]\n", + " [ 2.13550000e+03 2.04650000e+03]\n", + " [ 2.13550000e+03 -4.99999797e-01]\n", + " [ 2.42792857e+03 -5.00000034e-01]\n", + " [ 2.72035714e+03 -4.99999972e-01]\n", + " [ 3.01278571e+03 -4.99999760e-01]\n", + " [ 3.30521429e+03 -5.00000049e-01]\n", + " [ 3.59764286e+03 -4.99999867e-01]\n", + " [ 3.89007143e+03 -5.00000044e-01]\n", + " [ 4.18250000e+03 -4.99999770e-01]\n", + " [ 2.13550000e+03 2.04650000e+03]\n", + " [ 2.42792857e+03 2.04650000e+03]\n", + " [ 2.72035714e+03 2.04650000e+03]\n", + " [ 3.01278571e+03 2.04650000e+03]\n", + " [ 3.30521429e+03 2.04650000e+03]\n", + " [ 3.59764286e+03 2.04650000e+03]\n", + " [ 3.89007143e+03 2.04650000e+03]\n", + " [ 4.18250000e+03 2.04650000e+03]\n", + " [ 4.18250000e+03 -4.99999770e-01]\n", + " [ 4.18250000e+03 2.91928572e+02]\n", + " [ 4.18250000e+03 5.84357143e+02]\n", + " [ 4.18250000e+03 8.76785714e+02]\n", + " [ 4.18250000e+03 1.16921429e+03]\n", + " [ 4.18250000e+03 1.46164286e+03]\n", + " [ 4.18250000e+03 1.75407143e+03]\n", + " [ 4.18250000e+03 2.04650000e+03]\n", + " [ 2.13650000e+03 1.27000000e+02]\n", + " [ 2.13650000e+03 4.85400000e+02]\n", + " [ 2.13650000e+03 8.43800000e+02]\n", + " [ 2.13650000e+03 1.20220000e+03]\n", + " [ 2.13650000e+03 1.56060000e+03]\n", + " [ 2.13650000e+03 1.91900000e+03]\n", + " [ 2.26300000e+03 5.00000045e-01]\n", + " [ 2.62140000e+03 5.00000251e-01]\n", + " [ 2.97980000e+03 4.99999878e-01]\n", + " [ 3.33820000e+03 4.99999746e-01]\n", + " [ 3.69660000e+03 5.00000268e-01]\n", + " [ 4.05500000e+03 4.99999743e-01]\n", + " [ 2.26300000e+03 2.04550000e+03]\n", + " [ 2.62140000e+03 2.04550000e+03]\n", + " [ 2.97980000e+03 2.04550000e+03]\n", + " [ 3.33820000e+03 2.04550000e+03]\n", + " [ 3.69660000e+03 2.04550000e+03]\n", + " [ 4.05500000e+03 2.04550000e+03]\n", + " [ 4.18150000e+03 1.27000000e+02]\n", + " [ 4.18150000e+03 4.85400000e+02]\n", + " [ 4.18150000e+03 8.43800000e+02]\n", + " [ 4.18150000e+03 1.20220000e+03]\n", + " [ 4.18150000e+03 1.56060000e+03]\n", + " [ 4.18150000e+03 1.91900000e+03]\n", + " [ 2.13650000e+03 5.00000140e-01]\n", + " [ 2.13650000e+03 5.00000140e-01]\n", + " [ 4.18150000e+03 2.04550000e+03]\n", + " [ 4.18150000e+03 2.04550000e+03]\n", + " [ 2.26300000e+03 1.27000000e+02]\n", + " [ 2.62140000e+03 1.27000000e+02]\n", + " [ 2.97980000e+03 1.27000000e+02]\n", + " [ 3.33820000e+03 1.27000000e+02]\n", + " [ 3.69660000e+03 1.27000000e+02]\n", + " [ 4.05500000e+03 1.27000000e+02]\n", + " [ 2.26300000e+03 4.85400000e+02]\n", + " [ 2.62140000e+03 4.85400000e+02]\n", + " [ 2.97980000e+03 4.85400000e+02]\n", + " [ 3.33820000e+03 4.85400000e+02]\n", + " [ 3.69660000e+03 4.85400000e+02]\n", + " [ 4.05500000e+03 4.85400000e+02]\n", + " [ 2.26300000e+03 8.43800000e+02]\n", + " [ 2.62140000e+03 8.43800000e+02]\n", + " [ 2.97980000e+03 8.43800000e+02]\n", + " [ 3.33820000e+03 8.43800000e+02]\n", + " [ 3.69660000e+03 8.43800000e+02]\n", + " [ 4.05500000e+03 8.43800000e+02]\n", + " [ 2.26300000e+03 1.20220000e+03]\n", + " [ 2.62140000e+03 1.20220000e+03]\n", + " [ 2.97980000e+03 1.20220000e+03]\n", + " [ 3.33820000e+03 1.20220000e+03]\n", + " [ 3.69660000e+03 1.20220000e+03]\n", + " [ 4.05500000e+03 1.20220000e+03]\n", + " [ 2.26300000e+03 1.56060000e+03]\n", + " [ 2.62140000e+03 1.56060000e+03]\n", + " [ 2.97980000e+03 1.56060000e+03]\n", + " [ 3.33820000e+03 1.56060000e+03]\n", + " [ 3.69660000e+03 1.56060000e+03]\n", + " [ 4.05500000e+03 1.56060000e+03]\n", + " [ 2.26300000e+03 1.91900000e+03]\n", + " [ 2.62140000e+03 1.91900000e+03]\n", + " [ 2.97980000e+03 1.91900000e+03]\n", + " [ 3.33820000e+03 1.91900000e+03]\n", + " [ 3.69660000e+03 1.91900000e+03]\n", + " [ 4.05500000e+03 1.91900000e+03]]\n", + "DEBUG:root:radec2pix: camVec Shape: (3, 96)\n", + "DEBUG:root:radec2pix: lng: [270.31539085 270.36655189 270.43752447 270.542579 270.71402077\n", + " 271.04383538 271.93968007 283.48101478 270.31539085 278.25496108\n", + " 285.88944585 292.98836581 299.41482725 305.12212741 310.12974078\n", + " 314.49549071 283.48101478 351.00638008 355.38819591 356.90183998\n", + " 357.66783206 358.13024629 358.43966874 358.66123705 314.49549071\n", + " 318.7910165 323.73421549 329.3915583 335.79415496 342.90819266\n", + " 350.6068072 358.66123705 270.36494598 270.44622312 270.57407396\n", + " 270.80460183 271.34445266 274.08218667 273.79842993 283.36234739\n", + " 292.22915231 300.10657084 306.9058095 312.67997848 340.54617186\n", + " 354.36185807 356.71594406 357.68400903 358.21142556 358.54322592\n", + " 316.27981968 321.97083668 328.70389405 336.55230838 345.45057848\n", + " 355.12169333 270.34290102 270.34290102 358.63275532 358.63275532\n", + " 274.04185073 284.1877247 293.50716352 301.67919787 308.63398936\n", + " 314.46249394 274.93799638 287.17724528 298.00560006 307.03649051\n", + " 314.34141513 320.19418356 276.34264386 291.68718176 304.38086955\n", + " 314.14993264 321.50269119 327.06723776 278.85521862 299.13552131\n", + " 313.8014816 323.6857401 330.42677291 335.19643967 284.59338686\n", + " 312.96912569 328.03736148 336.26056332 341.24440919 344.5417427\n", + " 308.36945368 340.55550723 348.40444495 351.77067409 353.62846105\n", + " 354.80381648]\n", + "DEBUG:root:fitpix2pix: visCut: True\n", + "DEBUG:root:optics_fp: sphi: [0.69982566 0.64476931 0.57746793 0.49593643 0.39882528 0.28620393\n", + " 0.16037903 0.02625233 0.69982566 0.75009571 0.80283424 0.85613459\n", + " 0.90691415 0.95088447 0.98304718 0.99887382 0.02625233 0.03040715\n", + " 0.0361152 0.04444666 0.05774576 0.08232094 0.14281086 0.49383445\n", + " 0.99887382 0.99848273 0.99784571 0.9967037 0.99434024 0.98812429\n", + " 0.96153048 0.49383445 0.67736143 0.60192204 0.50607224 0.38703053\n", + " 0.24501841 0.0853818 0.DEBUG:root:radec2pix: ccdpx: [[-4.45000000e+01 -4.99999951e-01]\n", + " [-4.45000000e+01 2.91928572e+02]\n", + " [-4.45000000e+01 5.84357142e+02]\n", + " [-4.45000000e+01 8.76785714e+02]\n", + " [-4.45000000e+01 1.16921429e+03]\n", + " [-4.45000000e+01 1.46164286e+03]\n", + " [-4.45000000e+01 1.75407143e+03]\n", + " [-4.45000000e+01 2.04650000e+03]\n", + " [-4.45000000e+01 -4.99999951e-01]\n", + " [ 2.47928571e+02 -5.00000176e-01]\n", + " [ 5.40357143e+02 -5.00000069e-01]\n", + " [ 8.32785714e+02 -5.00000257e-01]\n", + " [ 1.12521429e+03 -4.99999992e-01]\n", + " [ 1.41764286e+03 -5.00000241e-01]\n", + " [ 1.71007143e+03 -4.99999730e-01]\n", + " [ 2.00250000e+03 -5.00000010e-01]\n", + " [-4.45000000e+01 2.04650000e+03]\n", + " [ 2.47928571e+02 2.04650000e+03]\n", + " [ 5.40357143e+02 2.04650000e+03]\n", + " [ 8.32785714e+02 2.04650000e+03]\n", + " [ 1.12521429e+03 2.04650000e+03]\n", + " [ 1.41764286e+03 2.04650000e+03]\n", + " [ 1.71007143e+03 2.04650000e+03]\n", + " [ 2.00250000e+03 2.04650000e+03]\n", + " [ 2.00250000e+03 -5.00000010e-01]\n", + " [ 2.00250000e+03 2.91928572e+02]\n", + " [ 2.00250000e+03 5.84357143e+02]\n", + " [ 2.00250000e+03 8.76785714e+02]\n", + " [ 2.00250000e+03 1.16921429e+03]\n", + " [ 2.00250000e+03 1.46164286e+03]\n", + " [ 2.00250000e+03 1.75407143e+03]\n", + " [ 2.00250000e+03 2.04650000e+03]\n", + " [-4.35000000e+01 1.27000000e+02]\n", + " [-4.35000000e+01 4.85400000e+02]\n", + " [-4.35000000e+01 8.43800000e+02]\n", + " [-4.35000000e+01 1.20220000e+03]\n", + " [-4.35000000e+01 1.56060000e+03]\n", + " [-4.35000000e+01 1.91900000e+03]\n", + " [ 8.30000000e+01 4.99999720e-01]\n", + " [ 4.41400000e+02 4.99999983e-01]\n", + " [ 7.99800000e+02 4.99999771e-01]\n", + " [ 1.15820000e+03 4.99999773e-01]\n", + " [ 1.51660000e+03 5.00000075e-01]\n", + " [ 1.87500000e+03 4.99999913e-01]\n", + " [ 8.29999998e+01 2.04550000e+03]\n", + " [ 4.41400000e+02 2.04550000e+03]\n", + " [ 7.99800000e+02 2.04550000e+03]\n", + " [ 1.15820000e+03 2.04550000e+03]\n", + " [ 1.51660000e+03 2.04550000e+03]\n", + " [ 1.87500000e+03 2.04550000e+03]\n", + " [ 2.00150000e+03 1.27000000e+02]\n", + " [ 2.00150000e+03 4.85400000e+02]\n", + " [ 2.00150000e+03 8.43800000e+02]\n", + " [ 2.00150000e+03 1.20220000e+03]\n", + " [ 2.00150000e+03 1.56060000e+03]\n", + " [ 2.00150000e+03 1.91900000e+03]\n", + " [-4.35000000e+01 4.99999930e-01]\n", + " [-4.35000000e+01 4.99999930e-01]\n", + " [ 2.00150000e+03 2.04550000e+03]\n", + " [ 2.00150000e+03 2.04550000e+03]\n", + " [ 8.30000000e+01 1.27000000e+02]\n", + " [ 4.41400000e+02 1.27000000e+02]\n", + " [ 7.99800000e+02 1.27000000e+02]\n", + " [ 1.15820000e+03 1.27000000e+02]\n", + " [ 1.51660000e+03 1.27000000e+02]\n", + " [ 1.87500000e+03 1.27000000e+02]\n", + " [ 8.30000000e+01 4.85400000e+02]\n", + " [ 4.41400000e+02 4.85400000e+02]\n", + " [ 7.99800000e+02 4.85400000e+02]\n", + " [ 1.15820000e+03 4.85400000e+02]\n", + " [ 1.51660000e+03 4.85400000e+02]\n", + " [ 1.87500000e+03 4.85400000e+02]\n", + " [ 8.30000000e+01 8.43800000e+02]\n", + " [ 4.41400000e+02 8.43800000e+02]\n", + " [ 7.99800000e+02 8.43800000e+02]\n", + " [ 1.15820000e+03 8.43800000e+02]\n", + " [ 1.51660000e+03 8.43800000e+02]\n", + " [ 1.87500000e+03 8.43800000e+02]\n", + " [ 8.30000000e+01 1.20220000e+03]\n", + " [ 4.41400000e+02 1.20220000e+03]\n", + " [ 7.99800000e+02 1.20220000e+03]\n", + " [ 1.15820000e+03 1.20220000e+03]\n", + " [ 1.51660000e+03 1.20220000e+03]\n", + " [ 1.87500000e+03 1.20220000e+03]\n", + " [ 8.30000000e+01 1.56060000e+DEBUG:root:cartToSphere: vec: [[-0.20605921 -0.20169937 0.95752648]\n", + " [-0.20787315 -0.17519485 0.96233857]\n", + " [-0.20942436 -0.1480085 0.96655829]\n", + " [-0.21070676 -0.12024402 0.97012578]\n", + " [-0.21171698 -0.09200964 0.97299031]\n", + " [-0.21245291 -0.06341581 0.97511138]\n", + " [-0.21291301 -0.03457423 0.97645925]\n", + " [-0.2130962 -0.00559748 0.97701519]\n", + " [-0.20605921 -0.20169937 0.95752648]\n", + " [-0.17962884 -0.20353396 0.96244865]\n", + " [-0.15250018 -0.20511207 0.96678474]\n", + " [-0.12477652 -0.20642749 0.97047334]\n", + " [-0.0965659 -0.20747679 0.97346207]\n", + " [-0.06797863 -0.20825778 0.97570877]\n", + " [-0.03912632 -0.20876879 0.97718203]\n", + " [-0.01012153 -0.20900854 0.97786143]\n", + " [-0.2130962 -0.00559748 0.97701519]\n", + " [-0.18573503 -0.00565735 0.98258358]\n", + " [-0.15766321 -0.00571045 0.98747643]\n", + " [-0.1289874 -0.00575671 0.99162952]\n", + " [-0.09981355 -0.00579596 0.99498928]\n", + " [-0.07024926 -0.00582797 0.99751244]\n", + " [-0.04040619 -0.00585246 0.9991662 ]\n", + " [-0.01040084 -0.00586919 0.99992869]\n", + " [-0.01012153 -0.20900854 0.97786DEBUG:root:fitpix2pix: ccdpx: shape: (96, 2)\n", + "DEBUG:root:radec2pix: curVec: [[ 0.81398872 -0.58055733 -0.01937926]\n", + " [ 0.82818157 -0.56039768 -0.00834986]\n", + " [ 0.84207546 -0.53935258 0.00277745]\n", + " [ 0.85557683 -0.51748742 0.01396611]\n", + " [ 0.86859897 -0.49487559 0.02517906]\n", + " [ 0.88106384 -0.47159637 0.03637813]\n", + " [ 0.892903 -0.44773399 0.0475237 ]\n", + " [ 0.90405786 -0.42337736 0.05857477]\n", + " [ 0.81398872 -0.58055733 -0.01937926]\n", + " [ 0.8182119 -0.57315766 -0.04493989]\n", + " [ 0.82199285 -0.5650592 -0.07096376]\n", + " [ 0.82527538 -0.55627728 -0.0973455 ]\n", + " [ 0.82801058 -0.54683454 -0.12397766]\n", + " [ 0.8301586 -0.53675912 -0.15075262]\n", + " [ 0.83168937 -0.52608374 -0.17756322]\n", + " [ 0.83258288 -0.51484559 -0.20430312]\n", + " [ 0.90405786 -0.42337736 0.05857477]\n", + " [ 0.90954475 -0.41431344 0.03275251]\n", + " [ 0.91441509 -0.40472759 0.00637356]\n", + " [ 0.91860779 -0.39464073 -0.02045551]\n", + " [ 0.92207167 -0.38407707 -0.04763027]\n", + " [ 0.92476518 -0.37306493 -0.07504617]\n", + " [ 0.92665641 -0.36163775 -0.10259646]\n", + " [ 0.92772359 -0.34983472 -0DEBUG:root:radec2pix: lat: [77.98725933 79.59290201 81.23038669 82.89455027 84.58030503 86.2825061\n", + " 87.99575217 89.70880341 77.98725933 77.86842442 77.53699463 77.01330297\n", + " 76.32579246 75.50615888 74.58567435 73.59317035 89.70880341 88.18955545\n", + " 86.48562338 84.78529769 83.09901991 81.43298752 79.79264001 78.18327445\n", + " 73.59317035 74.60559591 75.5496878 76.3965297 77.11433871 77.67029216\n", + " 78.03413945 78.18327445 78.68303826 80.67298244 82.70560399 84.77150761\n", + " 86.86118368 88.96388538 77.96782959 77.67716345 77.0861016 76.24391961\n", + " 75.20859077 74.03673952 89.13217661 87.06213831 84.97619114 82.90974635\n", + " 80.87458441 78.88067366 74.04491662 75.24365824 76.31136856 77.19067025\n", + " 77.8215059 78.15105181 77.99265855 77.99265855 78.18859038 78.18859038\n", + " 78.65635764 78.34456159 77.7133866 76.81969543 75.7283623 74.50063549\n", + " 80.63959245 80.25225497 79.48245907 78.41882236 77.15141692 75.75558792\n", + " 82.66188886 82.16191851 81.200562 79.92354945 78.45441908 76.88031771\n", + " 84.70956295 84.0235478 72119441 0.7846639 0.85006805 0.91223165\n", + " 0.96330774 0.9942014 0.02841071 0.03456004 0.04408579 0.06081407\n", + " 0.0978159 0.24575094 0.99869886 0.99806192 0.99681043 0.99380121\n", + " 0.98319296 0.87734751 0.69982226 0.69982226 0.49664714 0.49664714\n", + " 0.69936375 0.76547151 0.83490784 0.90228439 0.95875753 0.9934436\n", + " 0.62516601 0.69767805 0.77886705 0.86364983 0.94025457 0.99026714\n", + " 0.52909613 0.60411884 0.69504146 0.80008796 0.9067151 0.98409483\n", + " 0.40735858 0.47672806 0.56880658 0.69033382 0.83839063 0.9696195\n", + " 0.25937061 0.31041017 0.38442785 0.49818906 0.67954081 0.92235166\n", + " 0.0906953 0.11007561 0.13986822 0.1913293 0.29984194 0.62955934]\n", + "0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]]\n", + "143]\n", + " [-0.01020027 -0.18153487 0.98333161]\n", + " [-0.01DEBUG:root:radec2pix: fitpx: [[-5.00000135e-01 -5.00000132e-01]\n", + " [-5.00000144e-01 2.91928571e+02]\n", + " [-4.99999914e-01 5.84357143e+02]\n", + " [-4.99999810e-01 8.76785714e+02]\n", + " [-5.00000028e-01 1.16921429e+03]\n", + " [-5.00000159e-01 1.46164286e+03]\n", + " [-4.99999755e-01 1.75407143e+03]\n", + " [-4.99999923e-01 2.04650000e+03]\n", + " [-5.00000135e-01 -5.00000132e-01]\n", + " [ 2.91928572e+02 -4.99999845e-01]\n", + " [ 5.84357143e+02 -5.00000146e-01]\n", + " [ 8.76785714e+02 -4.99999843e-01]\n", + " [ 1.16921429e+03 -4.99999832e-01]\n", + " [ 1.46164286e+03 -5.00000031e-01]\n", + " [ 1.75407143e+03 -5.00000120e-01]\n", + " [ 2.04650000e+03 -4.99999883e-01]\n", + " [-4.99999923e-01 2.04650000e+03]\n", + " [ 2.91928572e+02 2.04650000e+03]\n", + " [ 5.84357143e+02 2.04650000e+03]\n", + " [ 8.76785714e+02 2.04650000e+03]\n", + " [ 1.16921429e+03 2.04650000e+03]\n", + " [ 1.46164286e+03 2.04650000e+03]\n", + " [ 1.75407143e+03 2.04650000e+03]\n", + " [ 2.04650000e+03 2.04650000e+03]\n", + " [ 2.04650000e+03 -4.99999883e-01]\n", + " [ 2.04650000e+03 2.91928571e+02]\n", + " [ 2.04650000e+03 5.84357143e+02]\n", + " [ 2.04650000e+03 8.76785DEBUG:root:mm_to_pix: fitpx.shape: (96, 2)\n", + "82.78807615 81.24955295 79.56251519 77.81300601\n", + " 86.75780924 85.71788826 84.09815339 82.27374035 80.38380312 78.4866344\n", + " 88.68197076 86.90004071 84.8808155 82.84304634 80.82390053 78.84030268]\n", + "DEBUG:root:fitpix2pix: visCut: True\n", + "03]\n", + " [ 4.41400000e+02 1.56060000e+03]\n", + " [ 7.99800000e+02 1.56060000e+03]\n", + " [ 1.15820000e+03 1.56060000e+03]\n", + " [ 1.51660000e+03 1.56060000e+03]\n", + " [ 1.87500000e+03 1.56060000e+03]\n", + " [ 8.30000000e+01 1.91900000e+03]\n", + " [ 4.41400000e+02 1.91900000e+03]\n", + " [ 7.99800000e+02 1.91900000e+03]\n", + " [ 1.15820000e+03 1.91900000e+03]\n", + " [ 1.51660000e+03 1.91900000e+03]\n", + " [ 1.87500000e+03 1.91900000e+03]]\n", + ".13017144]\n", + " [ 0.83258288 -0.51484559 -0.20430312]\n", + " [ 0.84776657 -0.49338733 -0.19457846]\n", + " [ 0.86256573 -0.47110163 -0.18450914]\n", + " [ 0.87688324 -0.4480576 -0.17412688]\n", + " [ 0.89063198 -0.4243276 -0.16346487]\n", + " [ 0.90373362 -0.39998925 -0.15255865]\n", + " [ 0.91611802 -0.37512738 -0.14144687]\n", + " [ 0.92772359 -0.34983472 -0.13017144]\n", + " [ 0.82022296 -0.57185579 -0.01467151]\n", + " [ 0.83742975 -0.5465439 -0.00108393]\n", + " [ 0.85409384 -0.51996595 0.01261458]\n", + " [ 0.87005255 -0.49225391 0.02635604]\n", + " [ 0.88516237 -0.46355362 0.04007015]\n", + " [ 0.89930134 -0.4340221 0.05368339]\n", + " [ 0.81592991 -0.57734982 -0.03042299]\n", + " [ 0.82081681 -0.56780842 -0.0620754 ]\n", + " [ 0.82498279 -0.55723177 -0.09431937]\n", + " [ 0.82833465 -0.5456587 -0.12695782]\n", + " [ 0.83079909 -0.53314086 -0.15979263]\n", + " [ 0.83232495 -0.51974038 -0.19262689]\n", + " [ 0.90648456 -0.41957522 0.04735384]\n", + " [ 0.91280253 -0.40811384 0.01531771]\n", + " [ 0.91813268 -0.3958888 -0.01744835]\n", + " [ 0.92237669 -0.38294327 -0.05075123]\n", + " [ 0.92545809 -0.36932949 -0.08439822]\n", + " [ 0.92732229 -0.35511143 -0.11819152]\n", + " [ 0.83924167 -0.50563529 -0.20001594]\n", + " [ 0.85760497 -0.47877139 -0.18786078]\n", + " [ 0.87529306 -0.45073295 -0.17521948]\n", + " [ 0.89214144 -0.42165177 -0.16215251]\n", + " [ 0.90800584 -0.39167098 -0.1487254 ]\n", + " [ 0.92276062 -0.36095006 -0.13501068]\n", + " [ 0.81405278 -0.58046586 -0.01942826]\n", + " [ 0.81405278 -0.58046586 -0.01942826]\n", + "714e+02]\n", + " [ 2.04650000e+03 1.16921429e+03]\n", + " [ 2.04650000e+03 1.46164286e+03]\n", + " [ 2.04650000e+03 1.75407143e+03]\n", + " [ 2.04650000e+03 2.04650000e+03]\n", + " [ 4.99999783e-01 1.27000000e+02]\n", + " [ 5.00000221e-01 4.85400000e+02]\n", + " [ 5.00000070e-01 8.43800000e+02]\n", + " [ 4.99999908e-01 1.20220000e+03]\n", + " [ 5.00000086e-01 1.56060000e+03]\n", + " [ 5.00000004e-01 1.91900000e+03]\n", + " [ 1.27000000e+02 5.00000120e-01]\n", + " [ 4.85400000e+02 4.99999839e-01]\n", + " [ 8.43800000e+02 4.99999975e-01]\n", + " [ 1.20220000e+03 5.00000060e-01]\n", + " [ 1.56060000e+03 5.00000260e-01]\n", + " [ 1.91900000e+03 4.99999701e-01]\n", + " [ 1.27000000e+02 2.04550000e+03]\n", + " [ 4.85400000e+02 2.04550000e+03]\n", + " [ 8.43800000e+02 2.04550000e+03]\n", + " [ 1.20220000e+03 2.04550000e+03]\n", + " [ 1.56060000e+03 2.04550000e+03]\n", + " [ 1.91900000e+03 2.04550000e+03]\n", + " [ 2.04550000e+03 1.27000000e+02]\n", + " [ 2.04550000e+03 4.85400000e+02]\n", + " [ 2.04550000e+03 8.43800000e+02]\n", + " [ 2.04550000e+03 1.20220000e+03]\n", + " [ 2.04550000e+03 1.56060000e+03]\n", + " [ 2.04550000e+03 1.91900000e+03]\n", + " [ 4.99999741e-01 4.99999746e-01]\n", + " [ 4.99999741e-01 4.99999746e-01]\n", + " [ 2.04550000e+03 2.04550000e+03]\n", + " [ 2.04550000e+03 2.04550000e+03]\n", + " [ 1.27000000e+02 1.27000000e+02]\n", + " [ 4.85400000e+02 1.27000000e+02]\n", + " [ 8.43800000e+02 1.27000000e+02]\n", + " [ 1.20220000e+03 1.27000000e+02]\n", + " [ 1.56060000e+03 1.27000000e+02]\n", + " [ 1.91900000e+03 1.27000000e+02]\n", + " [ 1.27000000e+02 4.85400000e+02]\n", + " [ 4.85400000e+02 4.85400000e+02]\n", + " [ 8.43800000e+02 4.85400000e+02]\n", + " [ 1.20220000e+03 4.85400000e+02]\n", + " [ 1.56060000e+03 4.85400000e+02]\n", + " [ 1.91900000e+03 4.85400000e+02]\n", + " [ 1.27000000e+02 8.43800000e+02]\n", + " [ 4.85400000e+02 8.43800000e+02]\n", + " [ 8.43800000e+02 8.43800000e+02]\n", + " [ 1.20220000e+03 8.43800000e+02]\n", + " [ 1.56060000e+03 8.43800000e+02]\n", + " [ 1.91900000e+03 8.43800000e+02]\n", + " [ 1.27000000e+02 1.20220000e+03]\n", + " [ 4.85400000e+02 1.20220000e+03]\n", + " [ 8.43800000e+02 1.20220000e+03]\n", + " [ 1.20220000e+03 1.20220000e+03]\n", + " [ 1.56060000e+03 1.20220000e+03]\n", + " [ 1.91900000e+03 1.20220000e+03]\n", + " [ 1.27000000e+02 1.56060000e+03]\n", + " [ 4.85400000e+02 1.56060000e+03]\n", + " [ 8.43800000e+02 1.56060000e+03]\n", + " [ 1.20220000e+03 1.56060000e+03]\n", + " [ 1.56060000e+03 1.56060000e+03]\n", + " [ 1.91900000e+03 1.56060000e+03]\n", + " [ 1.27000000e+02 1.91900000e+03]\n", + " [ 4.85400000e+02 1.91900000e+03]\n", + " [ 8.43800000e+02 1.91900000e+03]\n", + " [ 1.20220000e+03 1.91900000e+03]\n", + " [ 1.56060000e+03 1.91900000e+03]\n", + " [ 1.91900000e+03 1.91900000e+03]]\n", + "026637 -0.15336672 0.98811601]\n", + " [-0.01031977 -0.12461057 0.99215206]\n", + " [-0.01036027 -0.09537244 0.99538774]\n", + " [-0.01038751 -0.06576046 0.99778137]\n", + " [-0.01040113 -0.03588698 0.99930173]\n", + " [-0.01040084 -0.00586919 0.99992869]\n", + " [-0.20679239 -0.1902398 0.95971127]\n", + " [-0.20883895 -0.15728353 0.96521924]\n", + " [-0.21048459 -0.12340547 0.96977695]\n", + " [-0.2117221 -0.08880315 0.97328709]\n", + " [-0.21254753 -0.0536798 0.97567516]\n", + " [-0.21295821 -0.01824146 0.97689101]\n", + " [-0.1946339 -0.20244048 0.95975804]\n", + " [-0.16175754 -0.20451655 0.96540534]\n", + " [-0.12793421 -0.20620095 0.97011031]\n", + " [-0.09336102 -0.20748634 0.97377263]\n", + " [-0.05824097 -0.2083686 0.97631476]\n", + " [-0.02277993 -0.2088448 0.97768345]\n", + " [-0.20126076 -0.00572401 0.97952098]\n", + " [-0.16723544 -0.00579384 0.98589996]\n", + " [-0.13224882 -0.00585326 0.99119927]\n", + " [-0.09649617 -0.00590199 0.99531586]\n", + " [-0.06017591 -0.0059396 0.99817012]\n", + " [-0.02349561 -0.00596558 0.99970614]\n", + " [-0.01025713 -0.19712185 0.98032534]\n", + " [-0.01034611 -0.16296958 0.98657685]\n", + " [-0.01041588 -0.1278801 0.99173494]\n", + " [-0.01046611 -0.09204872 0.9956995 ]\n", + " [-0.01049618 -0.05567473 0.99839379]\n", + " [-0.01050541 -0.01896706 0.99976492]\n", + " [-0.20597676 -0.2016167 0.95756163]\n", + " [-0.20597676 -0.2016167 0.95756163]\n", + " [-0.01050361 -0.0059719 0.999927 ]\n", + " [-0.01050361 -0.0059719 0.999927 ]\n", + " [-0.19540403 -0.19101701 0.96194063]\n", + " [-0.16239488 -0.19297429 0.96767186]\n", + " [-0.12843557 -0.19456158 0.97244542]\n", + " [-0.09372478 -0.19577312 0.97616011]\n", + " [-0.05846599 -0.19660523 0.97873802]\n", + " [-0.02286533 -0.1970549 0.98012578]\n", + " [-0.19733483 -0.15792497 0.96753226]\n", + " [-0.16399068 -0.15953875 0.97347545]\n", + " [-0.1296908 -0.16084786 0.97842131]\n", + " [-0.094636 -0.1618491 0.98226722]\n", + " [-0.05902974 -0.16253892 0.98493482]\n", + " [-0.02307851 -0.16291334 0.98637043]\n", + " [-0.19888634 -0.12390793 0.97215793]\n", + " [-0.16527244 -0.1251726 0.97827237]\n", + " [-0.13070023 -0.12620079 0.98335691]\n", + " [-0.09537003 -0.12699006 0.9873085 ]\n", + " [-0.05948408 -0.12753631 0.99004855]\n", + " [-0.02324907 -0.1278347 0.99152295]\n", + " [-0.20005292 -0.089165 0.97571944]\n", + " [-0.16623701 -0.090077 0.98196303]\n", + " [-0.13146138 -0.09082101 0.98715219]\n", + " [-0.09592455 -0.09139481 0.99118387]\n", + " [-0.05982716 -0.09179425 0.99397914]\n", + " [-0.0233762 -0.09201449 0.99548324]\n", + " [-0.20083104 -0.05389991 0.97814196]\n", + " [-0.16688094 -0.05445583 0.9844721 ]\n", + " [-0.13197015 -0.05491134 0.98973159]\n", + " [-0.09629527 -0.05526476 0.9938174 ]\n", + " [-0.0600556 -0.0555129 0.99665021]\n", + " [-0.02345845 -0.05565213 0.9981746 ]\n", + " [-0.20121796 -0.018319 0.97937518]\n", + " [-0.16720058 -0.01851594 0.98574902]\n", + " [-0.13222195 -0.01867909 0.99104412]\n", + " [-0.09647752 -0.01880776 0.99515745]\n", + " [-0.06016577 -0.01890068 0.99800944]\n", + " [-0.02349426 -0.01895646 0.99954423]]\n", + "DEBUG:root:fitpix2pix: ccdpx: shape: (96, 2)\n", + " [ 0.92768306 -0.34996279 -0.13011601]\n", + " [ 0.92768306 -0.34996279 -0.13011601]\n", + " [ 0.8221484 -0.56869306 -0.0256946 ]\n", + " [ 0.82715867 -0.55902576 -0.05743461]\n", + " [ 0.83142587 -0.54833516 -0.08977519]\n", + " [ 0.83485536 -0.53666172 -0.12251828]\n", + " [ 0.83737335 -0.52405758 -0.15546549]\n", + " [ 0.83892862 -0.5105848 -0.18841957]\n", + " [ 0.8394843 -0.54324759 -0.01217254]\n", + " [ 0.84482204 -0.5332255 -0.04411677]\n", + " [ 0.84935601 -0.52221991 -0.07668591]\n", + " [ 0.8529893 -0.51027384 -0.10968074]\n", + " [ 0.85564764 -0.49743934 -0.14290287]\n", + " [ 0.85727986 -0.48377771 -0.17615438]\n", + " [ 0.85626376 -0.5165367 0.00148363]\n", + " [ 0.8618923 -0.50616743 -0.03059732]\n", + " [ 0.86666188 -0.49486049 -0.06332684]\n", + " [ 0.87047492 -0.48265922 -0.0965064 ]\n", + " [ 0.87325717 -0.46961463 -0.12993852]\n", + " [ 0.87495736 -0.45578721 -0.16342473]\n", + " [ 0.87232272 -0.488694 0.01520688]\n", + " [ 0.8782033 -0.47798739 -0.01694161]\n", + " [ 0.88317712 -0.4663924 -0.04976248]\n", + " [ 0.88714651 -0.45395185 -0.08305894]\n", + " [ 0.89003694 -0.44071594 -0.11663491]\n", + " [ 0.89179654 -0.42674509 -0.15029159]\n", + " [ 0.88751713 -0.45986581 0.02892718]\n", + " [ 0.89361051 -0.44883169 -0.00321961]\n", + " [ 0.89875735 -0.43696074 -0.03606299]\n", + " [ 0.90285985 -0.42429543 -0.06940809]\n", + " [ 0.90584276 -0.41088616 -0.10306044]\n", + " [ 0.90765315 -0.39679426 -0.13682132]\n", + " [ 0.90172481 -0.43020935 0.04257083]\n", + " [ 0.90799131 -0.41885757 0.01049397]\n", + " [ 0.91327939 -0.40672261 -0.02230404]\n", + " [ 0.91749093 -0.39384732 -0.05562982]\n", + " [ 0.92054975 -0.38028333 -0.08929026]\n", + " [ 0.92240167 -0.36609382 -0.12308724]]\n", + "DEBUG:root:radec2pix: curVec Shape: (96, 3)\n", + "DEBUG:root:optics_fp: xyfp: [[-32.203794 -31.5506227 ]\n", + " [-32.20328688 -27.16419416]\n", + " [-32.20277976 -22.77776561]\n", + " [-32.20227264 -18.39133707]\n", + " [-32.20176553 -14.00490853]\n", + " [-32.20125841 -9.61847999]\n", + " [-32.20075129 -5.23205144]\n", + " [-32.20024417 -0.8456229 ]\n", + " [-32.203794 -31.5506227 ]\n", + " [-27.81736545 -31.551129DEBUG:root:radec2pix: lng: [224.38740491 220.12408621 215.2503637 209.71210534 203.48918374\n", + " 196.62002098 189.22355762 181.5046646 224.38740491 228.56999572\n", + " 233.3693139 238.84884696 245.04132431 251.92249978 259.38507008\n", + " 267.22753799 181.5046646 181.74464663 182.07430544 182.55541483\n", + " 183.32331288 184.74247093 188.24144189 209.436015 267.22753799\n", + " 266.78398778 266.170335 265.26578644 263.80029466 261.02373287\n", + " 253.83681058 209.436015 222.61267508 216.98461546 210.38276245\n", + " 202.75476399 194.17390418 184.89586052 226.12630502 231.65859743\n", + " 238.18310357 245.77405246 254.38382437 263.77502084 181.62909594\n", + " 181.98420755 182.53422407 183.50001953 185.63706132 194.24647314\n", + " 267.02133208 266.36745836 265.3435183 263.51322198 259.32352397\n", + " 241.01895217 224.38712569 224.38712569 209.62070535 209.62070535\n", + " 224.34955164 229.91816922 236.57007702 244.41761198 253.43870278\n", + " 263.38126527 218.66991645 224.21163124 231.12094806 239.6844282\n", + " 250.04034734 261.9370562 211.92326671 217.139242DEBUG:root:fitpix2pix: ccdpx: shape: (96, 2)\n", + "06 223.99660639\n", + " 233.09330633 244.99523074 259.69237756 204.0228705 208.45144372\n", + " 214.63892612 223.61475061 236.90559041 255.7456151 195.0232601\n", + " 198.0723045 202.59166286 209.85191686 222.74900651 247.14363581\n", + " 185.201902 186.31923819 188.04100537 191.03114261 197.43976942\n", + " 218.89848666]\n", + "DEBUG:root:radec2pix: fitpx: [[ 2.13550000e+03 -4.99999951e-01]\n", + " [ 2.13550000e+03 2.91928572e+02]\n", + " [ 2.13550000e+03 5.84357142e+02]\n", + " [ 2.13550000e+03 8.76785714e+02]\n", + " [ 2.13550000e+03 1.16921429e+03]\n", + " [ 2.13550000e+03 1.46164286e+03]\n", + " [ 2.13550000e+03 1.75407143e+03]\n", + " [ 2.13550000e+03 2.04650000e+03]\n", + " [ 2.13550000e+03 -4.99999951e-01]\n", + " [ 2.42792857e+03 -5.00000176e-01]\n", + " [ 2.72035714e+03 -5.00000069e-01]\n", + " [ 3.01278571e+03 -5.00000257e-01]\n", + " [ 3.30521429e+03 -4.99999992e-01]\n", + " [ 3.59764286e+03 -5.00000241e-01]\n", + " [ 3.89007143e+03 -4.99999730e-01]\n", + " [ 4.18250000e+03 -5.00000010e-01]\n", + " [ 2.13550000e+03 2.04650000e+03]\n", + " [ 2.42792857e+03 2.04650000e+03]\n", + " [ 2.72035714e+03 2.04650000e+03]\n", + " [ 3.01278571e+03 2.04650000e+03]\n", + " [ 3.30521429e+03 2.04650000e+03]\n", + " [ 3.59764286e+03 2.04650000e+03]\n", + " [ 3.89007143e+03 2.04650000e+03]\n", + " [ 4.18250000e+03 2.04650000e+03]\n", + " [ 4.18250000e+03 -5.00000010e-01]\n", + " [ 4.18250000e+03 2.91928572e+02]\n", + " [ 4.18250000e+03 5.84357143e+02]\n", + " [ 4.18250000e+03 8.76785714e+02]\n", + " [ 4.18250000e+03 1.16921429e+03]\n", + " [ 4.18250000e+03 1.46164286e+03]\n", + " [ 4.18250000e+03 1.75407143e+03]\n", + " [ 4.18250000e+03 2.04650000e+03]\n", + " [ 2.13650000e+03 1.27000000e+02]\n", + " [ 2.13650000e+03 4.85400000e+02]\n", + " [ 2.13650000e+03 8.43800000e+02]\n", + " [ 2.13650000e+03 1.20220000e+03]\n", + " [ 2.13650000e+03 1.56060000e+03]\n", + " [ 2.13650000e+03 1.91900000e+03]\n", + " [ 2.26300000e+03 4.99999720e-01]\n", + " [ 2.62140000e+03 4.99999983e-01]\n", + " [ 2.97980000e+03 4.99999771e-01]\n", + " [ 3.33820000e+03 4.99999773e-01]\n", + " [ 3.69660000e+03 5.00000075e-01]\n", + " [ 4.05500000e+03 4.99999913e-01]\n", + " [ 2.26300000e+03 2.04550000e+03]\n", + " [ 2.62140000e+03 2.04550000e+03]\n", + " [ 2.97980000e+03 2.04550000e+03]\n", + " [ 3.33820000e+03 2.04550000e+03]\n", + " [ 3.69660000e+03 2.04550000e+03]\n", + " [ 4.05500000e+03 2.04550000e+03]\n", + " [ 4.18150000e+03 1.27000000e+02]\n", + " [ 4.18150000e+03 4.85400000e+02]\n", + " [ 4.18150000e+03 8.43800000e+02]\n", + " [ 4.18150000e+03 1.20220000e+03]\n", + " [ 4.18150000e+03 1.56060000e+03]\n", + " [ 4.18150000e+03 1.91900000e+03]\n", + " [ 2.13650000e+03 4.99999930e-01]\n", + " [ 2.13650000e+03 4.99999930e-01]\n", + " [ 4.18150000e+03 2.04550000e+03]\n", + " [ 4.18150000e+03 2.04550000e+03]\n", + " [ 2.26300000e+03 1.27000000e+02]\n", + " [ 2.62140000e+03 1.27000000e+02]\n", + " [ 2.97980000e+03 1.27000000e+02]\n", + " [ 3.33820000e+03 1.27000000e+02]\n", + " [ 3.69660000e+03 1.27000000e+02]\n", + " [ 4.05500000e+03 1.27000000e+02]\n", + " [ 2.26300000e+03 4.85400000e+02]\n", + " [ 2.62140000e+03 4.85400000e+02]\n", + " [ 2.97980000e+03 4.85400000e+02]\n", + " [ 3.33820000e+03 4.85400000e+02]\n", + " [ 3.69660000e+03 4.85400000e+02]\n", + " [ 4.05500000e+03 4.85400000e+02]\n", + " [ 2.26300000e+03 8.43800000e+02]\n", + " [ 2.62140000e+03 8.43800000e+02]\n", + " [ 2.97980000e+03 8.43800000e+02]\n", + " [ 3.33820000e+03 8.43800000e+02]\n", + " [ 3.69660000e+03 8.43800000e+02]\n", + " [ 4.05500000e+03 8.43800000e+02]\n", + " [ 2.26300000e+03 1.20220000e+03]\n", + " [ 2.62140000e+03 1.20220000e+03]\n", + " [ 2.97980000e+03 1.20220000e+03]\n", + " [ 3.33820000e+03 1.20220000e+03]\n", + " [ 3.69660000e+03 1.20220000e+03]\n", + " [ 4.05500000e+03 1.20220000e+03]\n", + " [ 2.26300000e+03 1.56060000e+03]\n", + " [ 2.62140000e+03 1.56060000e+03]\n", + " [ 2.97980000e+03 1.56060000e+03]\n", + " [ 3.33820000e+03 1.56060000e+03]\n", + " [ 3.69660000e+03 1.56060000e+03]\n", + " [ 4.05500000e+03 1.56060000e+03]\n", + " [ 2.26300000e+03 1.91900000e+03]\n", + " [ 2.62140000e+03 1.91900000e+03]\n", + " [ 2.97980000e+03 1.91900000e+03]\n", + " [ 3.33820000e+03 1.91900000e+03]\n", + " [ 3.69660000e+03 1.91900000e+03]\n", + " [ 4.05500000e+03 1.91900000e+03]]\n", + "DEBUG:root:fitpix2pix: visCut: True\n", + "DEBUG:root:radec2pix: xyfp: [[ -0.230877 31.363511 ]\n", + " [ -0.230877 26.97708243]\n", + " [ -0.230877 22.59065386]\n", + " [ -0.230877 18.20422528]\n", + " [ -0.230877 13.81779671]\n", + " [ -0.230877 9.43136815]\n", + " [ -0.230877 5.04493957]\n", + " [ -81]\n", + " [-23.43093691 -31.55163693]\n", + " [-19.04450837 -31.55214405]\n", + " [-14.65807983 -31.55265117]\n", + " [-10.27165129 -31.55315829]\n", + " [ -5.88522274 -31.5536654 ]\n", + " [ -1.4987942 -31.55417252]\n", + " [-32.20024417 -0.8456229 ]\n", + " [-27.81381563 -0.84613002]\n", + " [-23.42738708 -0.84663714]\n", + " [-19.04095854 -0.84714426]\n", + " [-14.65453 -0.84765137]\n", + " [-10.26810146 -0.84815849]\n", + " [ -5.88167292 -0.84866561]\n", + " [ -1.49524438 -0.84917273]\n", + " [ -1.4987942 -31.55417252]\n", + " [ -1.49828708 -27.16774398]\n", + " [ -1.49777997 -22.78131544]\n", + " [ -1.49727285 -18.39488689]\n", + " [ -1.49676573 -14.00845835]\n", + " [ -1.49625861 -9.62202981]\n", + " [ -1.49575149 -5.23560127]\n", + " [ -1.49524438 -0.84917273]\n", + " [-32.18857289 -29.63812445]\n", + " [-32.18795136 -24.26212448]\n", + " [-32.18732984 -18.88612452]\n", + " [-32.18670832 -13.51012455]\n", + " [-32.1860868 -8.13412459]\n", + " [-32.18546528 -2.75812462]\n", + " [-30.29129227 -31.5358438 ]\n", + " [-24.91529231 -31.53646533]\n", + " [-19.53929235 -31.53708685]\n", + " [-14.16329238 -31.53770837]\n", + " [ -8.78729242 -31.53832989]\n", + " [ -3.41129245 -31.53895142]\n", + " [-30.28774592 -0.86084401]\n", + " [-24.91174595 -0.86146553]\n", + " [-19.53574599 -0.86208705]\n", + " [-14.15974603 -0.86270858]\n", + " [ -8.78374606 -0.8633301 ]\n", + " [ -3.4077461 -0.86395162]\n", + " [ -1.5135731 -29.6416708 ]\n", + " [ -1.51295157 -24.26567084]\n", + " [ -1.51233005 -18.88967087]\n", + " [ -1.51170853 -13.51367091]\n", + " [ -1.51108701 -8.13767095]\n", + " [ -1.51046548 -2.76167097]\n", + " [-32.18879227 -31.53562444]\n", + " [-32.18879227 -31.53562444]\n", + " [ -1.51024611 -0.86417099]\n", + " [ -1.51024611 -0.86417099]\n", + " [-30.29107291 -29.63834382]\n", + " [-24.91507294 -29.63896534]\n", + " [-19.53907298 -29.63958686]\n", + " [-14.16307301 -29.64020839]\n", + " [ -8.78707305 -29.64082991]\n", + " [ -3.41107308 -29.64145143]\n", + " [-30.29045138 -24.26234385]\n", + " [-24.91445142 -24.26296538]\n", + " [-19.53845145 -24.2635869 ]\n", + " [-14.16245149 -24.26420842]\n", + " [ -8.78645152 -24.26482994]\n", + " [ -3.41045156 -24.26545147]\n", + " [-30.28982986 -18.88634389]\n", + " [-24.91382989 -18.88696541]\n", + " [-19.53782993 -18.88758693]\n", + " [-14.16182997 -18.88820846]\n", + " [ -8.78583 -18.88882997]\n", + " [ -3.40983004 -18.8894515 ]\n", + " [-30.28920834 -13.51034392]\n", + " [-24.91320837 -13.51096545]\n", + " [-19.53720841 -13.51158697]\n", + " [-14.16120844 -13.51220849]\n", + " [ -8.78520848 -13.51283002]\n", + " [ -3.40920852 -13.51345154]\n", + " [-30.28858681 -8.13434396]\n", + " [-24.91258685 -8.13496548]\n", + " [-19.53658688 -8.135587 ]\n", + " [-14.16058692 -8.13620852]\n", + " [ -8.78458696 -8.13683005]\n", + " [ -3.40858699 -8.13745157]\n", + " [-30.28796529 -2.75834399]\n", + " [-24.91196532 -2.75896552]\n", + " [-19.53596536 -2.75958704]\n", + " [-14.1599654 -2.76020856]\n", + " [ -8.78396543 -2.76083009]\n", + " [ -3.40796547 -2.76145161]]\n", + "DEBUG:root:fitpix2pix: ccdpx: shape: (96, 2)\n", + "DEBUG:root:fitpix2pix: visCut: True\n", + "0.230877 0.658511 ]\n", + " [ -0.230877 31.363511 ]\n", + " [ -4.61730557 31.363511 ]\n", + " [ -9.00373414 31.363511 ]\n", + " [-13.39016272 31.363511 ]\n", + " [-17.77659129 31.363511 ]\n", + " [-22.16301986 31.363511 ]\n", + " [-26.54944843 31.363511 ]\n", + " [-30.935877 31.363511 ]\n", + " [ -0.230877 0.658511 ]\n", + " [ -4.61730558 0.658511 ]\n", + " [ -9.00373414 0.658511 ]\n", + " [-13.39016271 0.658511 ]\n", + " [-17.77659128 0.658511 ]\n", + " [-22.16301986 0DEBUG:root:optics_fp: xyfp shape: (96, 2)\n", + ".658511 ]\n", + " [-26.54944843 0.658511 ]\n", + " [-30.935877 0.658511 ]\n", + " [-30.935877 31.363511 ]\n", + " [-30.935877 26.97708243]\n", + " [-30.935877 22.59065386]\n", + " [-30.935877 18.20422528]\n", + " [-30.935877 13.81779671]\n", + " [-30.935877 9.43136814]\n", + " [-30.935877 5.04493957]\n", + " [-30.935877 0.658511 ]\n", + " [ -0.245877 29.451011 ]\n", + " [ -0.245877 24.075011 ]\n", + " [ -0.245877 18.699011 ]\n", + " [ -0.245877 13.323011 ]\n", + " [ -0.245877 7.947011 ]\n", + " [ -0.245877 2.571011 ]\n", + " [ -2.143377 31.348511 ]\n", + " [ -7.519377 31.348511 ]\n", + " [-12.895377 31.348511 ]\n", + " [-18.271377 31.348511 ]\n", + " [-23.647377 31.348511 ]\n", + " [-29.023377 31.348511 ]\n", + " [ -2.143377 0.673511 ]\n", + " [ -7.519377 0.673511 ]\n", + " [-12.895377 0.673511 ]\n", + " [-18.271377 0.673511 ]\n", + " [-23.64737701 0.673511 ]\n", + " [-29.023377 0.673511 ]\n", + " [-30.920877 29.451011 ]\n", + " [-30.920877 24.075011 ]\n", + " [-30.920877 18.699011 ]\n", + " [-30.920877 13.323011 ]\n", + " [-30.920877 7.947011 ]\n", + " [-30.920877 2.571011 ]\n", + " [ -0.245877 31.348511 ]\n", + " [ -0.245877 31.348511 ]\n", + " [-30.920877 0.673511 ]\n", + " [-30.920877 0.673511 ]\n", + " [ -2.143377 29.451011 ]\n", + " [ -7.519377 29.451011 ]\n", + " [-12.895377 29.451011 ]\n", + " [-18.271377 29.451011 ]\n", + " [-23.647377 29.451011 ]\n", + " [-29.023377 29.451011 ]\n", + " [ -2.143377 24.075011 ]\n", + " [ -7.519377 24.075011 ]\n", + " [-12.895377 24.075011 ]\n", + " [-18.271377 24.075011 ]\n", + " [-23.647377 24.075011 ]\n", + " [-29.023377 24.075011 ]\n", + " [ -2.143377 18.699011 ]\n", + " [ -7.519377 18.699011 ]\n", + " [-12.895377 18.699011 ]\n", + " [-18.271377 18.699011 ]\n", + " [-23.647377 18.699011 ]\n", + " [-29.023377 18.699011 ]\n", + " [ -2.143377 13.323011 ]\n", + " [ -7.519377 13.323011 ]\n", + " [-12.895377 13.323011 ]\n", + " [-18.271377 13.323011 ]\n", + " [-23.647377 13.323011 ]\n", + " [-29.023377 13.323011 ]\n", + " [ -2.143377 7.947011 ]\n", + " [ -7.519377 7.947011 ]\n", + " [-12.895377 7.947011 ]\n", + " [-18.271377 7.947011 ]\n", + " [-23.647377 7.947011 ]\n", + " [-29.023377 7.947011 ]\n", + " [ -2.143377 2.571011 ]\n", + " [ -7.519377 2.571011 ]\n", + " [-12.895377 2.571011 ]\n", + " [-18.271377 2.571011 ]\n", + " [-23.647377 2.571011 ]\n", + " [-29.023377 2.571011 ]]\n", + "DEBUG:root:optics_fp: rtanth: [31.42709713 27.04074579 22.65442436 18.26815439 13.88198464 9.49605401\n", + " 5.11097808 0.742067 31.42709713 31.75564253 32.6750783 34.13769417\n", + " 36.07748738 38.42225317 41.10274314 44.05772304 0.742067 4.61617395\n", + " 8.97490789 13.35179361 17.73339574 22.11691136 26.50139096 30.88642402\n", + " 44.05772304 41.04415255 38.29678143 35.87681689 33.85454213 32.30472979\n", + " 31.29764563 30.88642402 29.51471971 24.13885305 18.76306281 13.38744101\n", + " 8.01232674 2.64082086 31.48077532 32.28565953 33.93362876 36.31007107\n", + " 39.28300031 42.72809051 2.2117621 7.49776555 12.85860945 18.22838275\n", + " 23.6009913 28.97485798 42.70371969 39.18128664 36.11843741 33.64093596\n", + " 31.88551984 30.97519863 31.41218354 31.41218354 30.87178238 30.87178238\n", + " 29.58771061 30.4426874 32.18516063 34.68161856 37.78289981 41.35315131\n", + " 24.22804504 25.26505023 27.33953387 30.23872042 33.75074911 37.7047566\n", + " 18.87767108 20.19136108 22.73364051 26.14858527 30.14102461 34.5111137\n", + " 13.54760187 15.32521169 18.5469529 22.60352987 27.12291311 31.90905859\n", + " 8.27715649 10.94695923 15.13153214 19.89706928 24.91237079 30.05265085\n", + " 3.35974322 7.91280426 13.10495402 18.40298673 23.73610696 29.08501983]\n", + "DEBUG:root:radec2pix: lat: [73.24108038 74.22539246 75.14065481 75.95980834 76.6531185 77.19018187\n", + " 77.5432879 77.69182998 73.24108038 74.24861044 75.19133398 76.04212851\n", + " 76.77071823 77.34548632 77.73675519 77.92139244 77.69182998 79.29098794\n", + " 80.92271511 82.58149911 84.2618841 85.95783408 87.66008742 89.3157252\n", + " 77.92139244 79.52414159 81.15801466 82.81709844 84.49494889 86.18266378\n", + " 87.85870936 89.3157252 73.68081786 74.84436919 75.87765867 76.72697854\n", + " 77.33670031 77.65849826 73.69035695 74.88520803 75.9561532 76.84869716\n", + " 77.50496612 77.87275428 78.38454537 80.36704866 82.39295371 84.45217978\n", + " 86.53330534 88.61095022 78.61571107 80.60164359 82.62842612 84.684393\n", + " 86.75213987 88.75761015 73.24806584 73.24806584 89.30770045 89.30770045\n", + " 74.1417384 75.39152116 76.51854281 77.46407515 78.16380788 78.55793051\n", + " 75.35984123 76.77406669 78.07566348 79.19387762 80.04201199 80.52949342\n", + " 76.4480688 78.03443361 79.53211824 80.86193095 81.91012885 82.53435821\n", + " 77.34827857 79.10130772 80.80570953 82.38629346 83.70950064 84.55228195\n", + " 77.99844552 79.88985033 81.78208758 83.62548455 85.30897599 86.53756064\n", + " 78.34312947 80.31550148 82.32609465 84.35907996 86.38425999 88.27008044]\n", + "DEBUG:root:fitpix2pix: visCut: True\n", + "DEBUG:root:optics_fp: cphi: [0.00550458 0.00639749 0.00763617 0.00946965 0.01246169 0.01821736\n", + " 0.03384734 0.23312315 0.00550458 0.14357831 0.27378206 0.39054421\n", + " 0.49112919 0.57532118 0.64452059 0.70085313 0.23312315 0.98770575\n", + " 0.99676233 0.99853841 0.99917171 0.99946758 0.99962921 0.99972703\n", + " 0.70085313 0.75231162 0.80628167 0.86066702 0.91207829 0.95583505\n", + " 0.98659156 0.99972703 0.00636947 0.00778798 0.01001931 0.01404249\n", + " 0.02346297 0.07118734 0.06624656 0.23110858 0.37831182 0.50160995\n", + " 0.60050131 0.67790282 0.94291018 0.99516222 0.9983578 0.99918316\n", + " 0.9995128 0.99967679 0.72272376 0.78769728 0.85449414 0.91742373\n", + " 0.96793131 0.99637757 0.00598472 0.00598472 0.99971529 0.99971529\n", + " 0.07048511 0.24509968 0.39886372 0.52516272 0.62434311 0.70044222\n", + " 0.08607764 0.29532864 0.46955786 0.60232354 0.69893243 0.76821854\n", + " 0.11047406 0.36953888 0.56469148 0.69653837 0.7826374 0.83930914\n", + " 0.15393817 0.48687699 0.69216184 0.80578092 0.86972564 0.90775141\n", + " 0.25195766 0.68160416 0.84839347 0.91538572 0.94689876 0.96382489\n", + " 0.62072988 0.94296444 0.97959085 0.9897031 0.99382317 0.99589043]\n", + "DEBUG:root:radec2pix: camVec: [[0.20658103 0.20838989 0.20993522 0.21121099 0.21221385 0.21294172\n", + " 0.21339307 0.21356684 0.20658103 0.18015754 0.1530338 0.12531307\n", + " 0.09710338 0.06851504 0.03965966 0.01064976 0.21356684 0.18621882\n", + " 0.15815829 0.12949192 0.10032565 0.07DEBUG:root:make_az_asym: xyp: [[-32.203794 -31.5506227 ]\n", + " [-32.20328688 -27.16419416]\n", + " [-32.20277976 -22.77776561]\n", + " [-32.20227264 -18.39133707]\n", + " [-32.20176553 -14.00490853]\n", + " [-32.20125841 -9.61847999]\n", + " [-32.20075129 -5.23205144]\n", + " [-32.20024417 -0.8456229 ]\n", + " [-32.203794 -31.5506227 ]\n", + " [-27.81736545 -31.55112981]\n", + " [-23.43093691 -31.55163693]\n", + " [-19.04450837 -31.55214405]\n", + " [-14.65807983 -31.55265117]\n", + " [-10.27165129 -31.55315829]\n", + " [ -5.88522274 -31.5536654 ]\n", + " [ -1.4987942 -31.55417252]\n", + " [-32.20024417 -0.8456229 ]\n", + " [-27.81381563 -0.84613002]\n", + " [-23.42738708 -0.84663714]\n", + " [-19.04095854 -0.84714426]\n", + " [-14.65453 -0.84765137]\n", + " [-10.26810146 -0.84815849]\n", + " [ -5.88167292 -0.84866561]\n", + " [ -1.49524438 -0.84917273]\n", + " [ -1.4987942 -31.55417252]\n", + " [ -1.49828708 -27.16774398]\n", + " [ -1.49777997 -22.78131544]\n", + " [ -1.49727285 -18.39488689]\n", + " [ -1.49676573 -14.00845835]\n", + " [ -1.49625861 -9.62202981]\n", + " [ -1.49575149 -5.23560127]\n", + " [ -1.49524438 -0.84917273]\n", + " [-32.18857289 -29.63812445]\n", + " [-32.18795136 -24.26212448]\n", + " [-32.18732984 -18.88612452]\n", + " [-32.18670832 -13.51012455]\n", + " [-32.1860868 -8.13412459]\n", + " [-32.18546528 -2.75812462]\n", + " [-30.29129227 -31.5358438 ]\n", + " [-24.91529231 -31.53646533]\n", + " [-19.53929235 -31.53708685]\n", + " [-14.16329238 -31.53770837]\n", + " [ -8.78729242 -31.53832989]\n", + " [ -3.41129245 -31.53895142]\n", + " [-30.28774592 -0.86084401]\n", + " [-24.91174595 -0.86146553]\n", + " [-19.53574599 -0.86208705]\n", + " [-14.15974603 -0.86270858]\n", + " [ -8.78374606 -0.8633301 ]\n", + " [ -3.4077461 -0.86395162]\n", + " [ -1.5135731 -29.6416708 ]\n", + " [ -1.51295157 -24.26567084]\n", + " [ -1.51233005 -18.88967087]\n", + " [ -1.51170853 -13.51367091]\n", + " [ -1.51108701 -8.13767095]\n", + " [ -1.51046548 -2.76167097]\n", + " [-32.18879227 -31.53562444]\n", + " [-32.18879227 -31.53562444]\n", + " [ -1.51024611 -0.86417099]\n", + " [ -1.51024611 -0.86417099]\n", + " [-30.29107291 -29.63834382]\n", + " [-24.91507294 -29.63896534]\n", + " [-19.53907298 -29.63958686]\n", + " [-14.16307301 -29.64020839]\n", + " [ -8.78707305 -29.64082991]\n", + " [ -3.41107308 -29.64145143]\n", + " [-30.29045138 -24.26234385]\n", + " [-24.91445142 -24.26296538]\n", + " [-19.53845145 -24.2635869 ]\n", + " [-14.16245149 -24.26420842]\n", + " [ -8.78645152 -24.26482994]\n", + " [ -3.41045156 -24.26545147]\n", + " [-30.28982986 -18.88634389]\n", + " [-24.91382989 -18.88696541]\n", + " [-19.53782993 -18.88758693]\n", + " [-14.16182997 -18.88820846]\n", + " [ -8.78583 -18.88882997]\n", + " [ -3.40983004 -18.8894515 ]\n", + " [-30.28920834 -13.51034392]\n", + " [-24.91320837 -13.51096545]\n", + " [-19.53720841 -13.51158697]\n", + " [-14.16120844 -13.51220849]\n", + " [ -8.78520848 -13.51283002]\n", + " [ -3.40920852 -13.51345154]\n", + " [-30.28858681 -8.13434396]\n", + " [-24.91258685 -8.13496548]\n", + " [-19.53658688 -8.135587 ]\n", + " [-14.16058692 -8.13620852]\n", + " [ -8.78458696 -8.13683005]\n", + " [ -3.40858699 -8.13745157]\n", + " [-30.28796529 -2.75834399]\n", + " [-24.91196532 -2.75896552]\n", + " [-19.53596536 -2.75958704]\n", + " [-14.1599654 -2.76020856]\n", + " [ -8.78396543 -2.76083009]\n", + " [ -3.40796547 -2.76145161]]\n", + "DEBUG:root:radec2pix: ccdpx: [[-4.45000000e+01 -5.00000261e-01]\n", + " [-4.45000000e+01 2.91928571e+02]\n", + " [-4.45000000e+01 5.84357143e+02]\n", + " [-4.45000000e+01 8.76785715e+02]\n", + " [-4.45000000e+0076705 0.04092766 0.01092393\n", + " 0.01064976 0.01072986 0.01079662 0.01085001 0.01088978 0.0109156\n", + " 0.01092708 0.01092393 0.20731213 0.20935192 0.21098964 0.21221814\n", + " 0.21303349 0.21343308 0.19515895 0.16228971 0.12847052 0.09389848\n", + " 0.05877657 0.02331064 0.20173739 0.16772694 0.13275239 0.09700904\n", + " 0.06069518 0.02401827 0.01078606 0.01087623 0.01094616 0.01099551\n", + " 0.01102363 0.01102984 0.2064986 0.2064986 0.01102671 0.01102671\n", + " 0.19592714 0.16292559 0.1289709 0.09426176 0.0590016 0.02339654\n", + " 0.19785166 0.16451646 0.13022261 0.09517088 0.05956467 0.02361044\n", + " 0.19939573 0.16579218 0.13122742 0.09590173 0.06001727 0.02378066\n", + " 0.20055377 0.16674959 0.13198281 0.09645193 0.06035751 0.0239064\n", + " 0.20132229 0.16738526 0.13248471 0.09681723 0.06058199 0.02398618\n", + " 0.20169858 0.16769559 0.13272857 0.09699294 0.06068709 0.02401844]\n", + " [0.20098859 0.17447006 0.14727238 0.11949936 0.09125926 0.06266255\n", + " 0.03382097 0.00484709 0.20098859 0.20282418 0.20440426 0.20572264\n", + " 0.20677589 0.20756DEBUG:root:make_az_asym: xyp: shape: (96, 2)\n", + "DEBUG:root:optics_fp: sphi: [-0.99998485 -0.99997954 -0.99997084 -0.99995516 -0.99992235 -0.99983405\n", + " -0.99942701 -0.97244722 -0.99998485 -0.98963896 -0.96179176 -0.92058417\n", + " -0.87108674 -0.81792759 -0.76458695 -0.71330561 -0.97244722 -0.15632448\n", + " -0.08040428 -0.05404675 -0.04069277 -0.03262757 -0.02722955 -0.0233637\n", + " -0.71330561 -0.65880742 -0.59153179 -0.50916823 -0.41001608 -0.29390365\n", + " -0.16320875 -0.0233637 -0.99997971 -0.99996967 -0.99994981 -0.9999014\n", + " -0.99972471 -0.99746296 -0.99780328 -0.97292796 -0.92567822 -0.8650939\n", + " -0.79962377 -0.73515153 -0.33304712 -0.0982454 -0.05728621 -0.04041066\n", + " -0.03121144 -0.02542276 -0.69113701 -0.61606249 -0.51946104 -0.39791167\n", + " -0.251215 -0.08503968 -0.99998209 -0.99998209 -0.02386066 -0.02386066\n", + " -0.99751283 -0.96949788 -0.91701021 -0.85100183 -0.78115023 -0.71370911\n", + " -0.99628843 -0.95539573 -0.8829017 -0.79825206 -0.71518771 -0.64018769\n", + " -0.99387901 -0.92921527 -0.82530209 -0.71751954 -0.62247788 -0.54365446\n", + " -0.98808048 -0.87347054 -0.72174233 -0.59221374 -0.49353552 -0.41950849\n", + " -0.96773826 -0.7317211 -0.52936616 -0.40257793 -0.32153186 -0.26653625\n", + " -0.7840245 -0.33289349 -0.20100193 -0.14313552 -0.11097528 -0.09056624]\n", + "1 1.16921429e+03]\n", + " [-4.45000000e+01 1.46164286e+03]\n", + " [-4.45000000e+01 1.75407143e+03]\n", + " [-4.44999999e+01 2.04650000e+03]\n", + " [-4.45000000e+01 -5.00000261e-01]\n", + " [ 2.47928571e+02 -5.00000125e-01]\n", + " [ 5.40357143e+02 -4.99999959e-01]\n", + " [ 8.32785714e+02 -5.00000265e-01]\n", + " [ 1.12521429e+03 -4.99999989e-01]\n", + " [ 1.41764286e+03 -4.99999804e-01]\n", + " [ 1.71007143e+03 -4.99999857e-01]\n", + " [ 2.00250000e+03 -5.00000247e-01]\n", + " [-4.44999999e+01 2.04650000e+03]\n", + " [ 2.47928572e+02 2.04650000e+03]\n", + " [ 5.40357143e+02 2.04650000e+03]\n", + " [ 8.32785714e+02 2.04650000e+03]\n", + " [ 1.12521429e+03 2.04650000e+03]\n", + " [ 1.41764286e+03 2.04650000e+03]\n", + " [ 1.71007143e+03 2.04650000e+03]\n", + " [ 2.00250000e+03 2.04650000e+03]\n", + " [ 2.00250000e+03 -5.00000247e-01]\n", + " [ 2.00250000e+03 2.91928571e+02]\n", + " [ 2.00250000e+03 5.84357143e+02]\n", + " [ 2.00250000e+03 8.76785714e+02]\n", + " [ 2.00250000e+03 1.16921429e+03]\n", + " [ 2.00250000e+03 1.46164286e+03]\n", + " [ 2.00250000e+03 1.75407143e+03]\n", + " [ 2.00250000e+03 2.04650000e+03]\n", + " [-4.35000000e+01 1.27000000e+02]\n", + " [-4.35000000e+01 4.85400000e+02]\n", + " [-4.35000000e+01 8.43800000e+02]\n", + " [-4.35000000e+01 1.20220000e+03]\n", + " [-4.35000000e+01 1.56060000e+03]\n", + " [-4.35000000e+01 1.91900000e+03]\n", + " [ 8.30000000e+01 4.99999891e-01]\n", + " [ 4.41400000e+02 5.00000001e-01]\n", + " [ 7.99800000e+02 5.00000129e-01]\n", + " [ 1.15820000e+03 5.00000084e-01]\n", + " [ 1.51660000e+03 5.00000000e-01]\n", + " [ 1.87500000e+03 5.00000003e-01]\n", + " [ 8.30000000e+01 2.04550000e+03]\n", + " [ 4.41400000e+02 2.04550000e+03]\n", + " [ 7.99800000e+02 2.04550000e+03]\n", + " [ 1.15820000e+03 2.04550000e+03]\n", + " [ 1.51660000e+03 2.04550000e+03]\n", + " [ 1.87500000e+03 2.04550000e+03]\n", + " [ 2.00150000e+03 1.27000000e+02]\n", + " [ 2.00150000e+03 4.85400000e+02]\n", + " [ 2.00150000e+03 8.43800000e+02]\n", + " [ 2.00150000e+03 1.20220000e+03]\n", + " [ 2.00150000e+03 1.56060000e+03]\n", + " [ 2.00150000e+03 1.91900000e+03]\n", + " [-4.35000000e+01 4.99999945e-01]\n", + " [-4.35000000e+01 4.99999945e-01]\n", + " [ 2.00150000e+03 2.04550000e+03]\n", + " [ 2.00150000e+03 2.04550000e+03]\n", + " [ 8.30000000e+01 1.27000000e+02]\n", + " [ 4.41400000e+02 1.27000000e+02]\n", + " [ 7.99800000e+02 1.27000000e+02]\n", + " [ 1.15820000e+03 1.27000000e+02]\n", + " [ 1.51660000e+03 1.27000000e+02]\n", + " [ 1.87500000e+03 1.27000000e+02]\n", + " [ 8.30000000e+01 4.85400000e+02]\n", + " [ 4.41400000e+02 4.85400000e+02]\n", + " [ 7.99800000e+02 4.85400000e+02]\n", + " [ 1.15820000e+03 4.85400000e+02]\n", + " [ 1.51660000e+03 4.85400000e+02]\n", + " [ 1.87500000e+03 4.85400000e+02]\n", + " [ 8.30000000e+01 8.43800000e+02]\n", + " [ 4.41400000e+02 8.43800000e+02]\n", + " [ 7.99800000e+02 8.43800000e+02]\n", + " [ 1.15820000e+03 8.43800000e+02]\n", + " [ 1.51660000e+03 8.43800000e+02]\n", + " [ 1.87500000e+03 8.43800000e+02]\n", + " [ 8.30000000e+01 1.20220000e+03]\n", + " [ 4.41400000e+02 1.20220000e+03]\n", + " [ 7.99800000e+02 1.20220000e+03]\n", + " [ 1.15820000e+03 1.20220000e+03]\n", + " [ 1.51660000e+03 1.20220000e+03]\n", + " [ 1.87500000e+03 1.20220000e+03]\n", + " [ 8.30000000e+01 1.56060000e+03]\n", + " [ 4.41400000e+02 1.56060000e+03]\n", + " [ 7.99800000e+02 1.56060000e+03]\n", + " [ 1.15820000e+03 1.56060000e+03]\n", + " [ 1.51660000e+03 1.56060000e+03]\n", + " [ 1.87500000e+03 1.56060000e+03]\n", + " [ 8.29999998e+01 1.91900000e+03]\n", + " [ 4.41400000e+02 1.91900000e+03]\n", + " [ 7.99800000e+02 1.91900000e+03]\n", + " [ 1.15820000e+03 1.91900000e+03]\n", + " [ 1.51660000e+03 1.91900000e+03]\n", + " [ 1.87500000e+03 1.91900000e+03]]\n", + "18 0.2080787 0.20832528 0.00484709 0.00490326\n", + " 0.00495363 0.00499813 0.0050366 0.00506881 0.00509451 0.00511348\n", + " 0.20832528 0.18083307 0.15264908 0.12387974 0.09463112 0.06501141\n", + " 0.0351331 0.00511348 0.18952259 0.15655094 0.12266162 0.08805229\n", + " 0.05292621 0.01748945 0.20172997 0.20380791 0.20549566 0.20678588\n", + " 0.20767444 0.20815839 0.00497187 0.00503783 0.00509482 0.00514259\n", + " 0.00518073 0.00520877 0.19643015 0.16225698 0.1271506 0.09130636\n", + " 0.0549237 0.01821176 0.20090587 0.20090587 0.00521618 0.00521618\n", + " 0.19029998 0.19225876 0.19384904 0.19506507 0.19590316 0.19636024\n", + " 0.15719218 0.15880644 0.16011755 0.16112232 0.16181718 0.1621981\n", + " 0.12316354 0.12442767 0.12545686 0.12624866 0.12679897 0.1271029\n", + " 0.08841323 0.08932369 0.09006766 0.09064294 0.0910454 0.09127018\n", + " 0.05314506 0.05369842 0.05415286 0.05450669 0.05475678 0.05489951\n", + " 0.0175654 0.01775879 0.01791986 0.01804791 0.01814173 0.01819993]\n", + " [0.9575635 0.96235848 0.9665599 0.97010815 0.97295274 0.97505345\n", + " 0.97638084 0.97691643 0.9575635 0.96249967 0.96685033 0.97055388\n", + " 0.97355774 0.97581955 0.97730771 0.97800162 0.97691643 0.98249606\n", + " 0.98740135 0.99156788 0.99494191 0.99747999 0.99914912 0.99992726\n", + " 0.97800162 0.98345527 0.98822148 0.99223792 0.99545284 0.99782482\n", + " 0.9993229 0.99992726 0.95974104 0.96522722 0.96976157 0.97324727\n", + " 0.97561035 0.97680113 0.95980102 0.96546589 0.97018908 0.97386995\n", + " 0.97643056 0.97781731 0.97942703 0.98582062 0.99113614 0.99527021\n", + " 0.9981429 0.99969795 0.98045849 0.98668859 0.99182302 0.99576214\n", + " 0.9984297 0.99977331 0.95759864 0.95759864 0.9999256 0.9999256\n", + " 0.96197634 0.96772508 0.97251687 0.97625014 0.97884665 0.98025265\n", + " 0.96754604 0.97350647 0.97847046 0.98233503 0.98502145 0.98647571\n", + " 0.97214818 0.97827946 0.98338189 0.98735208 0.99011108 0.99160442\n", + " 0.97568503 0.98194493 0.98715164 0.99120174 0.99401595 0.99553917\n", + " 0.97808228 0.98442808 0.98970464 0.99380856 0.99666018 0.99820374\n", + " 0.97929012 0.98567886 0.99099042 0.99512142 0.99799196 0.99954584]]\n", + "DEBUG:root:radec2pix: curVec: [[ 0.03805866 0.11921647 -0.99213858]\n", + " [ 0.0558804 0.13921838 -0.98868378]\n", + " [ 0.07391219 0.15963064 -0.98440594]\n", + " [ 0.09208559 0.18034989 -0.97928247]\n", + " [ 0.11033172 0.20127719 -0.97330078]\n", + " [ 0.12858107 0.22231785 -0.96645832]\n", + " [ 0.14676355 0.24338094 -0.95876284]\n", + " [ 0.16480879 0.26437906 -0.95023248]\n", + " [ 0.03805866 0.11921647 -0.99213858]\n", + " [ 0.016162 0.13485222 -0.9907339 ]\n", + " [-0.00612683 0.15084511 -0.98853842]\n", + " [-0.02872123 0.16710794 -0.98552018]\n", + " [-0.05153415 0.18355808 -0.9816571 DEBUG:root:optics_fp: rtanth: [45.10526614 42.15252235 39.46728719 37.10767964 35.13935868 33.63109692\n", + " 32.64672024 32.23425998 45.10526614 42.08371704 39.32015966 36.87264817\n", + " 34.80791464 33.1974573 32.10970154 31.5986741 32.23425998 27.84962696\n", + " 23.46566508 19.08283694 14.70215645 10.32635724 5.96618932 1.74318313\n", + " 31.5986741 27.21812469 22.83983208 18.46540167 14.09842896 9.748941\n", + " 5.45889306 1.74318313 43.77728663 40.33061683 37.34259278 34.93111177\n", + " 33.22196043 32.3267303 43.74864122 40.21129183 37.11812392 34.58850978\n", + " 32.75328451 31.73315358 30.32290674 24.94961031 19.57779834 14.20915457\n", + " 8.84944693 3.53950567 29.68929466 24.32204857 18.9597634 13.60830488\n", + " 8.2886698 3.16557807 45.08405409 45.08405409 1.76362955 1.76362955\n", + " 42.40073703 38.740507 35.51948783 32.86706408 30.92986484 29.84747775\n", + " 38.83207862 34.7984872 31.1727741 28.11319496 25.82178089 24.5148885\n", + " 35.71891532 31.28650338 27.19655174 23.62757526 20.84885967 19.20651814\n", + " 33.18967076 28.36474267 23.77742123 19.59529652 16.13655116 13.95004204\n", + " 31.3858301 26.23117825 21.1868319 16.35517444 11.99601471 8.83853824\n", + " 30.43664187 25.08771711 19.753498 14.45027919 9.23164159 4.4089223 ]\n", + "DEBUG:root:radec2pix: xyfp: [[-32.203794 -31.5506227 ]\n", + " [-32.20328688 -27.16419416]\n", + " [-32.20277976 -22.77776561]\n", + " [-32.20227264 -18.39133707]\n", + " [-32.20176553 -14.00490853]\n", + " [-32.20125841 -9.61847999]\n", + " [-32.20075129 -5.23205144]\n", + " [-32.20024417 -0.8456229 ]\n", + " [-32.203794 -31.5506227 ]\n", + " [-27.81736545 -31.55112981]\n", + " [-23.43093691 -31.55163693]\n", + " [-19.04450837 -31.55214405]\n", + " [-14.65807983 -31.55265117]\n", + " [-10.27165129 -31.55315829]\n", + " [ -5.88522274 -31.5536654 ]\n", + " [ -1.4987942 -31.55417252]\n", + " [-32.20024417 -0.8456229 ]\n", + " [-27.81381563 -0.84613002]\n", + " [-23.42738708 -0.84663714]\n", + " [-19.04095854 -0.84714426]\n", + " [-14.65453 -0.84765137]\n", + " [-10.26810146 -0.84815849]\n", + " [ -5.88167292 -0.84866561]\n", + " [ -1.49524438 -0.84917273]\n", + " [ -1.4987942 -31.55417252]\n", + " [ -1.49828708 -27.16774398]\n", + " [ -1.49777997 -22.781]\n", + " [-0.07447793 0.20011736 -0.97693709]\n", + " [-0.09746411 0.21671159 -0.97135824]\n", + " [-0.12040362 0.23327013 -0.96492902]\n", + " [ 0.16480879 0.26437906 -0.95023248]\n", + " [ 0.14328678 0.28207717 -0.94863131]\n", + " [ 0.12121119 0.29991244 -0.94623484]\n", + " [ 0.09866422 0.31780032 -0.94301025]\n", + " [ 0.07572899 0.33565971 -0.93893433]\n", + " [ 0.05249092 0.35341192 -0.93399396]\n", + " [ 0.0290386 0.37098015 -0.92818667]\n", + " [ 0.00546364 0.3882898 -0.92152112]\n", + " [-0.12040362 0.23327013 -0.96492902]\n", + " [-0.10333632 0.2552158 -0.96134619]\n", + " [-0.08585391 0.27739048 -0.9569136 ]\n", + " [-0.06802121 0.29969433 -0.95160728]\n", + " [-0.04990402 0.32203056 -0.94541309]\n", + " [-0.03157021 0.34430412 -0.93832723]\n", + " [-0.01309014 0.36642121 -0.930357 ]\n", + " [ 0.00546364 0.3882898 -0.92152112]\n", + " [ 0.04572464 0.1279335 -0.99072816]\n", + " [ 0.0677168 0.15273873 -0.98594387]\n", + " [ 0.08995664 0.17805701 -0.97989974]\n", + " [ 0.11231757 0.20370435 -0.9725684 ]\n", + " [ 0.1346716 0.22950636 -0.96394522]\n", + " [ 0.15688958 0.25529712 -0.95404876]\n", + " [ 0.02862584 0.12605231544]\n", + " [ -1.49727285 -18.39488689]\n", + " [ -1.49676573 -14.00845835]\n", + " [ -1.49625861 -9.62202981]\n", + " [ -1.49575149 -5.23560127]\n", + " [ -1.49524438 -0.84917273]\n", + " [-32.18857289 -29.63812445]\n", + " [-32.18795136 -24.26212448]\n", + " [-32.18732984 -18.88612452]\n", + " [-32.18670832 -13.51012455]\n", + " [-32.1860868 -8.13412459]\n", + " [-32.18546528 -2.75812462]\n", + " [-30.29129227 -31.5358438 ]\n", + " [-24.91529231 -31.53646533]\n", + " [-19.53929235 -31.53708685]\n", + " [-14.16329238 -31.53770837]\n", + " [ -8.78729242 -31.53832989]\n", + " [ -3.41129245 -31.53895142]\n", + " [-30.28774592 -0.86084401]\n", + " [-24.91174595 -0.86146553]\n", + " [-19.53574599 -0.86208705]\n", + " [-14.15974603 -0.86270858]\n", + " [ -8.78374606 -0.8633301 ]\n", + " [ -3.4077461 -0.86395162]\n", + " [ -1.5135731 -29.6416708 ]\n", + " [ -1.51295157 -24.26567084]\n", + " [ -1.51233005 -18.88967087]\n", + " [ -1.51170853 -13.51367091]\n", + " [ -1.51108701 -8.13767095]\n", + " [ -1.51046548 -2.76167097]\n", + " [-32.18879227 -31.53562444]\n", + " [-32.18879227 -31.53562444]\n", + " [ -1.51024611 -0.86417099]\n", + " [ -1.51024611 -0.86417099]\n", + " [-30.29107291 -29.63834382]\n", + " [-24.91507294 -29.63896534]\n", + " [-19.53907298 -29.63958686]\n", + " [-14.16307301 -29.64020839]\n", + " [ -8.78707305 -29.64082991]\n", + " [ -3.41107308 -29.64145143]\n", + " [-30.29045138 -24.26234385]\n", + " [-24.91445142 -24.26296538]\n", + " [-19.53845145 -24.2635869 ]\n", + " [-14.16245149 -24.26420842]\n", + " [ -8.78645152 -24.26482994]\n", + " [ -3.41045156 -24.26545147]\n", + " [-30.28982986 -18.88634389]\n", + " [-24.91382989 -18.88696541]\n", + " [-19.53782993 -18.88758693]\n", + " [-14.16182997 -18.88820846]\n", + " [ -8.78583 -18.88882997]\n", + " [ -3.40983004 -18.8894515 ]\n", + " [-30.28920834 -13.51034392]\n", + " [-24.91320837 -13.51096545]\n", + " [-19.53720841 -13.51158697]\n", + " [-14.16120844 -13.51220849]\n", + " [ -8.78520848 -13.51283002]\n", + " [ -3.40920852 -13.51345154]\n", + " [-30.28858681 -8.13434396]\n", + " [-24.91258685 -8.13496548]\n", + " [-19.53658688 -8.135587 ]\n", + " [-14.16058692 -8.13620852]\n", + " [ -8.78458696 -8.13683005]\n", + " [ -3.40858699 -8.13745157]\n", + " [-30.28796529 -2.75834399]\n", + " [-24.91196532 -2.75896552]\n", + " [-19.53596536 -2.75958704]\n", + " [-14.1599654 -2.76020856]\n", + " [ -8.78396543 -2.76083009]\n", + " [ -3.40796547 -2.76DEBUG:root:radec2pix: camVec Shape: (3, 96)\n", + "DEBUG:root:optics_fp: xyfp: [[ -0.172993 31.426621 ]\n", + " [ -0.172993 27.04019243]\n", + " [ -0.172993 22.65376385]\n", + " [ -0.172993 18.26733528]\n", + " [ -0.172993 13.88090671]\n", + " [ -0.172993 9.49447814]\n", + " [ -0.172993 5.10804957]\n", + " [ -0.172993 0.721621 ]\n", + " [ -0.172993 31.426621 ]\n", + " [ -4.55942157 31.426621 ]\n", + " [ -8.94585014 31.426621 ]\n", + " [-13.33227871 31.426621 ]\n", + " [-17.71870729 31.426621 ]\n", + " [-22.10513586 31.426621 ]\n", + " [-26.49156443 31.426621 ]\n", + " [-30.877993 31.426621 ]\n", + " [ -0.172993 0.721621 ]\n", + " [ -4.55942157 0.721621 ]\n", + " [ -8.94585014 0.721621 ]\n", + " [-13.33227872 0.721621 ]\n", + " [-17.71870728 0.721621 ]\n", + " [-22.10513586 0.721621 ]\n", + " [-26.49156443 0.721621 ]\n", + " [-30.877993 0.721621 ]\n", + " [-30.877993 31.426621 ]\n", + " [-30.877993 27.04019243]\n", + " [-30.877993 22.65376385]\n", + " [-30.877993 18.26733529]\n", + " [-30.877993 13.88090671]\n", + " [-30.877993 9.49447814]\n", + " [-30.877993 5.10804957]\n", + " [-30.877993 0.721621 ]\n", + " [ -0.187993 29.514121 ]\n", + " [ -0.187993 24.138121 ]\n", + " [ -0.187993 18.76212101]\n", + " [ -0.187993 13.386121 ]\n", + " [ -0.187993 8.010121 ]\n", + " [ -0.187993 2.634121 ]\n", + " [ -2.085493 31.411621 ]\n", + " [ -7.461493 31.411621 ]\n", + " [-12.837493 31.411621 ]\n", + " [-18.213493 31.411621 ]\n", + " [-23.589493 31.411621 ]\n", + " [-28.965493 31.411621 ]\n", + " [ -2.085493 0.736621 ]\n", + " [ -7.461493 0.736621 ]\n", + " [-12.837493 0.736621 ]\n", + " [-18.213493 0.736621 ]\n", + " [-23.58949299 0.736621 ]\n", + " [-28.965493 0.736621 ]\n", + " [-30.862993 29.514121 ]\n", + " [-30.862993 24.138121 ]\n", + " [-30.862993 18.762121 ]\n", + " [-30.862993 13.386121 ]\n", + " [-30.862993 8.010121 ]\n", + " [-30.862993 2.634121 ]\n", + " [ -0.187993 31.411621 ]\n", + " [ -0.187993 31.411621 ]\n", + " [-30.862993 0.736621 ]\n", + " [-30.862993 0.736621 ]\n", + " [ -2.085493 29.514121 ]\n", + " [ -7.461493 29.514121 ]\n", + " [-12.837493 29.514121 ]\n", + " [-18.213493 29.514121 ]\n", + " [-23.589493 29.514121 ]\n", + " [-28.965493 29.514121 ]\n", + " [ -2.085493 24.138121 ]\n", + " [ -7.461493 24.138121 ]\n", + " [-12.837493 24.138121 ]\n", + " [-18.213493 24.138121 ]\n", + " [-23.589493 24.138121 ]\n", + " [-28.965493 24.138121 ]\n", + " [ -2.085493 18.762121 ]\n", + " [ -7.461493 18.762121 ]\n", + " [-12.837493 18.762121 ]\n", + " [-18.213493 18.762121 ]\n", + " [-23.589493 18.762121 ]\n", + " [-28.965493 18.762121 ]\n", + " [ -2.085493 13.386121 ]\n", + " [ -7.461493 13.386121 ]\n", + " [-12.837493 13.386121 ]\n", + " [-18.213493 13.386121 ]\n", + " [-23.589493 13.386121 ]\n", + " [-28.965493 13.386121 ]\n", + " [ -2.085493 8.010121 ]\n", + " [ -7.461493 8.010121 ]\n", + " [-12.837493 8.010121 ]\n", + " [-18.213493 8.010121 ]\n", + " [-23.589493 8.010121 ]\n", + " [-28.965493 8.010121 ]\n", + " [ -2.085493 2.634121 ]\n", + " [ -7.461493 2.634121 ]\n", + " [-12.837493 2.634121 ]\n", + " [-18.213493 2.634121 ]\n", + " [-23.589493 2.634121 ]\n", + " [-28.965493 2.634121 ]]\n", + "145161]]\n", + "DEBUG:root:radec2pix: xyfp Shape: (96, 2)\n", + "DEBUG:root:optics_fp: xyfp shape: (96, 2)\n", + "DEBUG:root:optics_fp: cphi: [-0.71462647 -0.76465055 -0.81663789 -0.86852682 -0.91713533 -0.95822269\n", + " -0.98707045 -0.99965519 -0.71462647 -0.66170459 -0.59665476 -0.51729759\n", + " -0.42196448 -0.31030314 -0.18420747 -0.04836971 -0.99965519 -0.99953644\n", + " -0.99934473 -0.99900557 -0.99831831 -0.99657638 -0.98967281 -0.87090507\n", + " -0.04836971 -0.05610053 -0.06679051 -0.08253363 -0.10799424 -0.15602533\n", + " -0.27837409 -0.87090507 -0.73594733 -0.79879708 -0.86266587 -0.92216881\n", + " -0.96955698 -0.99635146 -0.69307094 -0.62034596 -0.5272064 -0.41033606\n", + " -0.26919173 -0.10843276 -0.99959581 -0.99940041 -0.99902199 -0.99813478\n", + " -0.99516407 -0.96924606 -0.05196415 -0.06335735 -0.0811815 -0.11297393\n", + " -0.18526317 -0.48452029 -0.71462988 -0.71462988 -0.86931637 -0.86931637\n", + " -0.71508845 -0.64388103 -0.55091667 -0.43180852 -0.28504096 -0.11526196\n", + " -0.78075859 -0.71676907 -0.62767848 -0.50476226 -0.34135833 -0.1402609\n", + " -0.84875703 -0.7971706 -0.71938094 -0.60051365 -0.4226937 -0.17893311\n", + " -0.91338303 -0.87922117 -0.82275039 -0.7239943 -0.54602022 -0.24622747\n", + " DEBUG:root:radec2pix: curVec: [[-0.41855619 0.097335 0.90295992]\n", + " [-0.42862827 0.12117892 0.89531753]\n", + " [-0.43845795 0.14550188 0.88689561]\n", + " [-0.44799783 0.17018539 0.87768723]\n", + " [-0.45720306 0.19511597 0.86769529]\n", + " [-0.46603133 0.22018435 0.8569327 ]\n", + " [-0.47444315 0.24528472 0.84542244]\n", + " [-0.4824023 0.27031434 0.83319756]\n", + " [-0.41855619 0.097335 0.90295992]\n", + " [-0.39526723 0.10708716 0.91230267]\n", + " [-0.37122445 0.11711557 0.92112776]\n", + " [-0.34651088 0.12735606 0.92936034]\n", + " [-0.32121241 0.13774978 0.93693521]\n", + " [-0.29541847 0.14824264 0.94379661]\n", + " [-0.26922244 0.15878452 0.94989829]\n", + " [-0.24272183 0.16932869 0.9552036 ]\n", + " [-0.4824023 0.27031434 0.83319756]\n", + " [-0.45891743 0.28217861 0.8424785 ]\n", + " [-0.43458232 0.29406286 0.85127272]\n", + " [-0.4094738 0.30590647 0.85950709]\n", + " [-0.38367288 0.31765203 0.86711724]\n", + " [-0.35726655 0.32924465 0.87404724]\n", + " [-0.33034872 0.34063172 0.88024983]\n", + " [-0.30302022 0.35176314 0.88568699]\n", + " [-0.24272183 0.16932869 0.9552036 ]\n", + " [-0.25165046 0.19488798 0.947993 ]\n", + " [-0.26054694 0.22079872 0.93987404]\n", + " [-0.26936536 0.24694909 0.9308375 ]\n", + " [-0.27806226 0.2732295 0.92088383]\n", + " [-0.28659622 0.29953102 0.91002405]\n", + " [-0.29492786 0.32574489 0.89828048]\n", + " [-0.30302022 0.35176314 0.88568699]\n", + " [-0.42289589 0.10769771 0.89975567]\n", + " [-0.43508295 0.13725985 0.8898666 ]\n", + " [-0.44685865 0.1674231 0.87879853]\n", + " [-0.4581394 0.19797652 0.8665527 ]\n", + " [-0.46884732 0.22871885 0.8531529 ]\n", + " [-0.47891104 0.25945659 0.83864563]\n", + " [-0.40853464 0.10162984 0.90706715]\n", + " [-0.37947382 0.11377781 0.91817985]\n", + " [-0.34936285 0.12627616 0.92843951]\n", + " [-0.31835864 0.13901437 0.93772212]\n", + " [-0.28662584 0.15189274 0.94592506]\n", + " [-0.25433813 0.16482047 0.95296712]\n", + " [-0.47224566 0.27539499 0.83734201]\n", + " [-0.44288099 0.28995627 0.84839955]\n", + " [-0.41231527 0.30448706 0.85865229]\n", + " [-0.38069579 0.31888044 0.8679781 ]\n", + " [-0.34818279 0.33303531 0.87627406]\n", + " [-0.3149521 0.34685583 0.88345696]\n", + " [-0.24670702 0.180-0.96582068 -0.95066579 -0.92326613 -0.86731478 -0.73433428 -0.38842227\n", + " -0.99588139 -0.99392405 -0.99016821 -0.98152333 -0.95403253 -0.77825973]\n", + "23 -0.99161051]\n", + " [ 0.00151437 0.14546846 -0.98936173]\n", + " [-0.02610026 0.16533382 -0.98589224]\n", + " [-0.05405801 0.1854943 -0.98115727]\n", + " [-0.08219746 0.20580593 -0.97513461]\n", + " [-0.11035548 0.2261336 -0.96782502]\n", + " [ 0.15543683 0.27200114 -0.94966035]\n", + " [ 0.12867615 0.29379437 -0.94716805]\n", + " [ 0.10116576 0.31570928 -0.94344748]\n", + " [ 0.07305819 0.33759524 -0.93845189]\n", + " [ 0.04451082 0.35930729 -0.93215721]\n", + " [ 0.01568804 0.38070496 -0.92456348]\n", + " [-0.11293885 0.24274708 -0.96349295]\n", + " [-0.09173308 0.26980992 -0.95853411]\n", + " [-0.06996831 0.29711725 -0.952274 ]\n", + " [-0.04776522 0.32448968 -0.94468245]\n", + " [-0.02524879 0.35175216 -0.93575259]\n", + " [-0.0025495 0.37873272 -0.92550258]\n", + " [ 0.03804505 0.11933682 -0.99212464]\n", + " [ 0.03804505 0.11933682 -0.99212464]\n", + " [ 0.00548087 0.38815687 -0.92157702]\n", + " [ 0.00548087 0.38815687 -0.92157702]\n", + " [ 0.03629834 0.13472448 -0.99021803]\n", + " [ 0.00915647 0.15433865 -0.98797558]\n", + " [-0.01850401 0.17437807 -0.9845049 ]\n", + " [-0.04652329 0.19468915 -0.97976105]\n", + " [-0.07473992 0.21512842 -0.97372158]\n", + " [-0.10299039 0.23556095 -0.9663871 ]\n", + " [ 0.05828347 0.15973012 -0.98543865]\n", + " [ 0.03109257 0.17986739 -0.98319936]\n", + " [ 0.00333909 0.20036469 -0.97971569]\n", + " [-0.02481805 0.22107011 -0.97494209]\n", + " [-0.05321743 0.24184133 -0.96885534]\n", + " [-0.08169451 0.26254359 -0.9614556 ]\n", + " [ 0.08053579 0.18522862 -0.97938978]\n", + " [ 0.05335126 0.20583429 -0.97713146]\n", + " [ 0.02556015 0.22673899 -0.97362011]\n", + " [-0.00267989 0.24779231 -0.96880947]\n", + " [-0.0312078 0.26885254 -0.96267564]\n", + " [-0.0598582 0.28978434 -0.95521832]\n", + " [ 0.10292873 0.21103644 -0.97204387]\n", + " [ 0.0758063 0.23205756 -0.96974362]\n", + " [ 0.04803361 0.25332084 -0.96618907]\n", + " [ 0.01976675 0.27467677 -0.96133342]\n", + " [-0.00883394 0.29598339 -0.95515224]\n", + " [-0.03760269 0.31710412 -0.94764498]\n", + " [ 0.12533413 0.23697961 -0.96339609]\n", + " [ 0.09832904 0.25836424 -0.96103034]\n", + " [ 0.07063072 0.27993782 -0.95741637]\n", + " [ 0.04239364 0.30155087 -0.95250714]\n", + " [ 0.01377701 0.32306044 -0.94627805]\n", + " [-0.01505359 0.34432832 -0.93872861]\n", + " [ 0.14762236 0.26289225 -0.95346489]\n", + " [ 0.12078862 0.28458824 -0.9510098 ]\n", + " [ 0.09321971 0.30642302 -0.94731991]\n", + " [ 0.06506859 0.32824633 -0.94234836]\n", + " [ 0.03649314 0.34991378 -0.93607083]\n", + " [ 0.00765815 0.37128545 -0.92848719]]\n", + "38593 0.95215364]\n", + " [-0.25763515 0.21196166 0.94270695]\n", + " [-0.2684689 0.24395388 0.9318857 ]\n", + " [-0.27912728 0.27616004 0.91968668]\n", + " [-0.28953403 0.30837954 0.90613029]\n", + " [-0.29961762 0.34041244 0.89126239]\n", + " [-0.41851273 0.09744838 0.90296783]\n", + " [-0.41851273 0.09744838 0.90296783]\n", + " [-0.30308703 0.35163705 0.8857142 ]\n", + " [-0.30308703 0.35163705 0.8857142 ]\n", + " [-0.41289662 0.11195164 0.90387124]\n", + " [-0.38376842 0.12428584 0.91502723]\n", + " [-0.35357869 0.13694278 0.92532631]\n", + " [-0.32248372 0.14981281 0.93464452]\n", + " [-0.29064791 0.16279698 0.94287907]\n", + " [-0.25824514 0.17580486 0.94994847]\n", + " [-0.42503582 0.14170821 0.89401529]\n", + " [-0.39575214 0.15454114 0.90526089]\n", + " [-0.36537576 0.16762166 0.91564378]\n", + " [-0.33406104 0.18084257 0.9250401 ]\n", + " [-0.30197163 0.19410654 0.93334655]\n", + " [-0.26928207 0.20732364 0.94048077]\n", + " [-0.43678159 0.17205055 0.88296118]\n", + " [-0.40739459 0.18534206 0.89424715]\n", + " [-0.3768855 0.19881086 0.90467207]\n", + " [-0.34540665 0.21235148 0.91411219]\n", + " [-0.31312086 0.22586718 0.92246374]\n", + " [-0.28020343 0.23926765 0.9296435 ]\n", + " [-0.44805004 0.2027687 0.87071006]\n", + " [-0.41861116 0.21648151 0.88198665]\n", + " [-0.38802308 0.23030569 0.89241099]\n", + " [-0.35643612 0.24413643 0.90185957]\n", + " [-0.32401233 0.25787653 0.91022838]\n", + " [-0.29092757 0.27143448 0.91743364]\n", + " [-0.45876284 0.23366203 0.85728567]\n", + " [-0.42932242 0.24776017 0.86850283]\n", + " [-0.39870848 0.26190744 0.8788834 ]\n", + " [-0.36706972 0.27599862 0.88830433]\n", + " [-0.33456736 0.28993517 0.89666174]\n", + " [-0.30137752 0.30362384 0.90387176]\n", + " [-0.46884809 0.26453703 0.84273461]\n", + " [-0.43945517 0.27898413 0.853842DEBUG:root:mm_to_pix: fitpx: [[0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]]\n", + "DEBUG:root:optics_fp: sphi: [-0.69950626 -0.64444513 -0.57715037 -0.49564218 -0.39857594 -0.28602322\n", + " -0.1DEBUG:root:radec2pix: curVec Shape: (96, 3)\n", + "6028704 -0.02625833 -0.69950626 -0.74976466 -0.80249804 -0.85580559\n", + " -0.90661236 -0.95063766 -0.98288738 -0.9988295 -0.02625833 -0.03044512\n", + " -0.03619555 -0.04458562 -0.05797023 -0.08267725 -0.1433448 -0.49145128\n", + " -0.9988295 -0.99842512 -0.99776702 -0.99658828 -0.99415152 -0.98775305\n", + " -0.96047273 -0.49145128 -0.67703879 -0.60160056 -0.50577425 -0.38678764\n", + " -0.24486582 -0.08534494 -0.72086938 -0.78432831 -0.84973726 -0.91193438\n", + " -0.96308661 -0.99410379 -0.02842926 -0.03462403 -0.04421613 -0.06104888\n", + " -0.09822663 -0.24609363 -0.99864895 -0.99799091 -0.99669933 -0.99359795\n", + " -0.98268894 -0.87478002 -0.69950278 -0.69950278 -0.49425605 -0.49425605\n", + " -0.69903398 -0.76512562 -0.83456026 -0.9019653 -0.95851534 -0.99333513\n", + " -0.6248328 -0.69731062 -0.77847269 -0.8632584 -0.93993324 -0.99011458\n", + " -0.52878304 -0.60375411 -0.69461576 -0.79961451 -0.90627261 -0.98386124\n", + " -0.40710127 -0.47641382 -0.56840284 -0.68980596 -0.837772 -0.96921207\n", + " -0.25921116 -0.31021694 -0.38416098 -0.49776006 -0.67878801 -0.92148149\n", + " -0.09066564 -0.11006805 -0.13988178 -0.19134252 -0.29970307 -0.6279425 ]\n", + "5 ]\n", + " [-0.40886775 0.29342107 0.86413612]\n", + " [-0.37723338 0.30774144 0.87349309]\n", + " [-0.34471254 0.32184486 0.88181016]\n", + " [-0.31148119 0.33563615 0.88900385]]\n", + "DEBUG:root:cartToSphere: vec: [[0.20658103 0.20098859 0.9575635 ]\n", + " [0.20838989 0.17447006 0.96235848]\n", + " [0.20993522 0.14727238 0.9665599 ]\n", + " [0.21121099 0.11949936 0.97010815]\n", + " [0.21221385 0.09125926 0.97295274]\n", + " [0.21294172 0.06266255 0.97505345]\n", + " [0.21339307 0.03382097 0.97638084]\n", + " [0.21356684 0.00484709 0.97691643]\n", + " [0.20658103 0.20098859 0.9575635 ]\n", + " [0.18015754 0.20282418 0.96249967]\n", + " [0.1530338 0.20440426 0.96685033]\n", + " [0.12531307 0.20572264 0.97055388]\n", + " [0.09710338 0.20677589 0.97355774]\n", + " [0.06851504 0.2075618 0.97581955]\n", + " [0.03965966 0.2080787 0.97730771]\n", + " [0.01064976 0.20832528 0.97800162]\n", + " [0.21356684 0.00484709 0.97691643]\n", + " [0.18621882 0.00490326 0.98249606]\n", + " [0.15815829 0.00495363 0.98740135]\n", + " [0.12949192 0.00499813 0.99156788]\n", + " [0.10032565 0.0050366 0.99494191]\n", + " [0.07076705 0.00506881 0.99747999]\n", + " [0.04092766 0.00509451 0.99914912]\n", + " [0.01092393 0.00511348 0.99992726]\n", + " [0.01064976 0.20832528 0.97800162]\n", + " [0.01072986 0.18083307 0.98345527]\n", + " [0.01079662 0.15264908 0.98822148]\n", + " [0.01085001 0.12387974 0.99223792]\n", + " [0.01088978 0.09463112 0.99545284]\n", + " [0.0109156 0.06501141 0.99782482]\n", + " [0.01092708 0.0351331 0.9993229 ]\n", + " [0.01092393 0.00511348 0.99992726]\n", + " [0.20731213 0.18952259 0.95974104]\n", + " [0.20935192 0.15655094 0.96522722]\n", + " [0.21098964 0.12266162 0.96976157]\n", + " [0.21221814 0.08805229 0.97324727]\n", + " [0.21303349 0.05292621 0.97561035]\n", + " [0.21343308 0.01748945 0.97680113]\n", + " [0.19515895 0.20172997 0.95980102]\n", + " [0.16228971 0.20380791 0.96546589]\n", + " [0.12847052 0.20549566 0.97018908]\n", + " [0.09389848 0.20678588 0.97386995]\n", + " [0.05877657 0.20767444 0.97643056]\n", + " [0.02331064 0.20815839 0.97781731]\n", + " [0.20173739 0.00497187 0.97942703]\n", + " [0.16772694 0.00503783 0.98582062]\n", + " [0.13275239 0.005DEBUG:root:radec2pix: fitpx: [[2135.5 4155.50000026]\n", + " [2135.5 3863.07142876]\n", + " [2135.5 3570.64285709]\n", + " [2135.5 3278.21428545]\n", + " [2135.5 2985.7857141 ]\n", + " [2135.49999999 2693.35714316]\n", + " [2135.50000001 2400.9285712 ]\n", + " [2135.49999993 2108.50000021]\n", + " [2135.5 4155.50000026]\n", + " [1843.07142855 4155.50000013]\n", + " [1550.64285715 4155.49999996]\n", + " [1258.2142856 4155.50000027]\n", + " [ 965.78571429 4155.49999999]\n", + " [ 673.357143 4155.4999998 ]\n", + " [ 380.92857155 4155.49999986]\n", + " [ 88.49999976 4155.50000025]\n", + " [2135.49999993 2108.50000021]\n", + " [1843.07142817 2108.50000006]\n", + " [1550.64285738 2108.49999998]\n", + " [1258.21428605 2108.49999998]\n", + " [ 965.78571448 2108.49999999]\n", + " [ 673.35714251 2108.50000001]\n", + " [ 380.92857138 2108.5 ]\n", + " [ 88.50000013 2108.5 ]\n", + " [ 88.49999976 4155.50000025]\n", + " [ 88.49999974 3863.0714288 ]\n", + " [ 88.49999989 3570.64285722]\n", + " [ 88.50000025 3278.21428557]\n", + " [ 88.50000013 2985.78571423]\n", + " [ 88.49999977 2693.35714293]\n", + " [ 88.49999999 2400.92857143]\n", + " [ 88.500DEBUG:root:radec2pix: curVec: [[-0.25702784 -0.26218506 0.93015896]\n", + " [-0.2325528 -0.2545668 0.93867723]\n", + " [-0.20734393 -0.24674256 0.94663964]\n", + " [-0.18150477 -0.23872127 0.95397493]\n", + " [-0.15513891 -0.2305166 0.96062168]\n", + " [-0.12835027 -0.22214713 0.96652825]\n", + " [-0.10124352 -0.21363605 0.97165292]\n", + " [-0.0739243 -0.20501088 0.975964 ]\n", + " [-0.25702784 -0.26218506 0.93015896]\n", + " [-0.25011752 -0.28760706 0.92451252]\n", + " [-0.24272887 -0.31332998 0.91809968]\n", + " [-0.23489711 -0.33923302 0.91090302]\n", + " [-0.22665707 -0.36519948 0.90291523]\n", + " [-0.21804324 -0.39111646 0.89413928]\n", + " [-0.20909025 -0.41687462 0.8845885 ]\n", + " [-0.19983335 -0.44236819 0.87428658]\n", + " [-0.0739243 -0.20501088 0.975964 ]\n", + " [-0.06502959 -0.23095479 0.97078887]\n", + " [-0.05589842 -0.25724296 0.96472868]\n", + " [-0.04656485 -0.28375938 0.95776424]\n", + " [-0.03706322 -0.31039113 0.94988613]\n", + " [-0.02742883 -0.33702679 0.94109543]\n", + " [-0.01769833 -0.36355562 0.93140436]\n", + " [-0.00790962 -0.38986798 0.92083679]\n", + " [-0.19983335 -0.44236819 0.8742800013 2108.5 ]\n", + " [2134.5 4028.00000018]\n", + " [2134.5 3669.59999979]\n", + " [2134.5 3311.20000021]\n", + " [2134.5 2952.80000004]\n", + " [2134.5 2594.39999994]\n", + " [2134.50000001 2235.99999988]\n", + " [2007.99999999 4154.50000011]\n", + " [1649.6 4154.5 ]\n", + " [1291.20000005 4154.49999987]\n", + " [ 932.80000005 4154.49999992]\n", + " [ 574.4 4154.5 ]\n", + " [ 216. 4154.5 ]\n", + " [2008.00000002 2109.49999999]\n", + " [1649.60000012 2109.49999999]\n", + " [1291.19999984 2109.50000001]\n", + " [ 932.79999968 2109.50000001]\n", + " [ 574.39999959 2109.50000001]\n", + " [ 215.99999972 2109.50000001]\n", + " [ 89.4999999 4028.0000001 ]\n", + " [ 89.50000007 3669.59999994]\n", + " [ 89.49999997 3311.20000002]\n", + " [ 89.50000023 2952.7999999 ]\n", + " [ 89.49999997 2594.40000001]\n", + " [ 89.4999998 2236.00000002]\n", + " [2134.5 4154.50000005]\n", + " [2134.5 4154.50000005]\n", + " [ 89.49999997 2109.5 ]\n", + " [ 89.49999997 2109.5 ]\n", + " [2008. 4027.99999997]\n", + " [1649.59999996 4028.00000014]\n", + " [1291.20000001 4027.99999998]\n", + " [ 932.79999987 40DEBUG:root:radec2pix: curVec: [[-0.86932646 -0.26712102 0.41583394]\n", + " [-0.88221879 -0.25767105 0.39407567]\n", + " [-0.89472391 -0.24770018 0.37163657]\n", + " [-0.90675293 -0.23724648 0.34858748]\n", + " [-0.91822452 -0.22635235 0.32500514]\n", + " [-0.92906652 -0.21506221 0.30097117]\n", + " [-0.93921659 -0.20342148 0.27657168]\n", + " [-0.94862252 -0.19147631 0.25189709]\n", + " [-0.86932646 -0.26712102 0.41583394]\n", + " [-0.86955688 -0.24385357 0.42942552]\n", + " [-0.86921271 -0.21984723 0.44287296]\n", + " [-0.86825309 -0.19519353 0.4561097 ]\n", + " [-0.86664546 -0.16998941 0.46907275]\n", + " [-0.86436686 -0.14433437 0.48170273]\n", + " [-0.86140446 -0.11832926 0.49394387]\n", + " [-0.85775578 -0.09207588 0.50574406]\n", + " [-0.94862252 -0.19147631 0.25189709]\n", + " [-0.94986818 -0.16661866 0.2645537 ]\n", + " [-0.95037697 -0.14111565 0.27725439]\n", + " [-0.95010396 -0.11506444 0.28993557]\n", + " [-0.9490142 -0.08856146 0.30253746]\n", + " [-0.9470827 -0.06170456 0.31500304]\n", + " [-0.94429486 -0.03459521 0.32727723]\n", + " [-0.94064714 -0.00733927 0.33930678]\n", + " [-0.85775578 -0.09207588 0.50574DEBUG:root:mm_to_pix: fitpx.shape: (96, 2)\n", + "DEBUG:root:radec2pix: camVec: [[-0.20607518 -0.20787446 -0.20940354 -0.21066179 -0.21164814 -0.21236112\n", + " -0.21279916 -0.21296107 -0.20607518 -0.17964954 -0.15251864 -0.12479221\n", + " -0.09658011 -0.06799262 -0.03914089 -0.01013708 -0.21296107 -0.18561075\n", + " -0.15755214 -0.12888979 -0.09972928 -0.07017922 -0.04035219 -0.01036463\n", + " -0.01013708 -0.01020871 -0.01026764 -0.01031373 -0.01034674 -0.01036638\n", + " -0.0103724 -0.01036463 -0.20680345 -0.20882603 -0.21044235 -0.21165063\n", + " -0.2124482 -0.2128323 -0.19465346 -0.16177694 -0.12795009 -0.0933751\n", + " -0.05825505 -0.022795 -0.20112996 -0.16711987 -0.13214975 -0.09641349\n", + " -0.0601111 -0.02345151 -0.01026957 -0.0103498 -0.01041065 -0.01045169\n", + " -0.01047241 -0.01047238 -0.20599275 -0.20599275 -0.01046737 -0.01046737\n", + " -0.19541667 -0.16240545 -0.12844349 -0.09373247 -0.05847519 -0.02287686\n", + " -0.19732118 -0.16397526 -0.12967711 -0.09462661 -0.05902568 -0.02308015\n", + " -0.19884383 -0.16523235 -0.13066656 -028.00000021]\n", + " [ 574.40000006 4027.99999993]\n", + " [ 215.9999998 4028.0000002 ]\n", + " [2008. 3669.59999996]\n", + " [1649.60000001 3669.59999998]\n", + " [1291.20000007 3669.59999987]\n", + " [ 932.79999997 3669.60000004]\n", + " [ 574.39999998 3669.60000002]\n", + " [ 215.99999986 3669.60000012]\n", + " [2008. 3311.20000004]\n", + " [1649.59999995 3311.20000012]\n", + " [1291.19999997 3311.20000005]\n", + " [ 932.80000015 3311.19999984]\n", + " [ 574.40000003 3311.19999997]\n", + " [ 216.00000001 3311.2 ]\n", + " [2007.99999998 2952.80000014]\n", + " [1649.60000006 2952.7999999 ]\n", + " [1291.20000015 2952.79999984]\n", + " [ 932.80000014 2952.7999999 ]\n", + " [ 574.39999986 2952.80000008]\n", + " [ 215.99999973 2952.80000012]\n", + " [2007.99999998 2594.40000007]\n", + " [1649.60000022 2594.39999977]\n", + " [1291.20000005 2594.39999997]\n", + " [ 932.79999996 2594.40000002]\n", + " [ 574.39999995 2594.40000002]\n", + " [ 216.00000004 2594.39999999]\n", + " [2008.00000021 2235.99999975]\n", + " [1649.59999975 2236.00000009]\n", + " [1291.20000026 2235.99999995]\n", + " [ 932.79999972 2236.00000004]\n", + " [ 574.39999974 2236.00000003]\n", + " [ 216.00000028 2235.99999DEBUG:root:optics_fp: xyfp: [[32.23341696 31.55141621]\n", + " [32.23194958 27.16498788]\n", + " [32.2304822 22.77855956]\n", + " [32.22901483 18.39213124]\n", + " [32.22754745 14.00570291]\n", + " [32.22608007 9.61927458]\n", + " [32.22461269 5.23284626]\n", + " [32.2231453 0.84641793]\n", + " [32.23341696 31.55141621]\n", + " [27.84698864 31.5528836 ]\n", + " [23.46056031 31.55435097]\n", + " [19.07413198 31.55581835]\n", + " [14.68770366 31.55728573]\n", + " [10.30127533 31.55875311]\n", + " [ 5.91484701 31.56022049]\n", + " [ 1.52841868 31.56168787]\n", + " [32.2231453 0.84641793]\n", + " [27.83671698 0.84788531]\n", + " [23.45028865 0.84935269]\n", + " [19.06386033 0.85082007]\n", + " [14.677432 0.85228745]\n", + " [10.29100367 0.85375483]\n", + " [ 5.90457535 0.85522221]\n", + " [ 1.51814702 0.85668959]\n", + " [ 1.52841868 31.56168787]\n", + " [ 1.5269513 27.17525955]\n", + " [ 1.52548392 22.78883122]\n", + " [ 1.52401654 18.4024029 ]\n", + " [ 1.52254916 14.01597457]\n", + " [ 1.52108178 9.62954624]\n", + " [ 1.5196144 5.24311792]\n", + " [ 1.51814702 0.85668959]\n", + " [32.21777718 29.63892134]\n", + " [32.21597876 24.26292164]\n", + " [32.21418034 18.88692194]\n", + " [32.21238193 13.51092224]\n", + "406]\n", + " [-0.87131143 -0.08064151 0.48405924]\n", + " [-0.88443218 -0.06890858 0.46155316]\n", + " [-0.89702661 -0.0569218 0.43829576]\n", + " [-0.90901332 -0.04472554 0.41436024]\n", + " [-0.92032 -0.03236485 0.38982512]\n", + " [-0.93088287 -0.0198865 0.36477611]\n", + " [-0.94064714 -0.00733927 0.33930678]\n", + " [-0.87499127 -0.2629883 0.40648176]\n", + " [-0.89054408 -0.25105039 0.37934806]\n", + " [-0.90542616 -0.23836736 0.35126125]\n", + " [-0.91948453 -0.22501569 0.32236025]\n", + " [-0.93258641 -0.21107703 0.29279527]\n", + " [-0.94462123 -0.19663529 0.26272664]\n", + " [-0.86953962 -0.25704079 0.42169999]\n", + " [-0.86944191 -0.22801486 0.43826932]\n", + " [-0.86843956 -0.19796924 0.45455574]\n", + " [-0.86646908 -0.1670804 0.47044179]\n", + " [-0.86348824 -0.13553139 0.48581818]\n", + " [-0.85947774 -0.10350826 0.50058371]\n", + " [-0.94922197 -0.18076541 0.25749083]\n", + " [-0.95025898 -0.14985393 0.27304152]\n", + " [-0.95014351 -0.11806971 0.28859463]\n", + " [-0.94880706 -0.08559049 0.30403855]\n", + " [-0.94620368 -0.0525967 0.31926821]\n", + " [-0.94231108 -0.01927699 0.33418293]\n", + " [-0.86372694 -0.08722051 0.49635506]\n", + " [-0.8800605 -0.07300097 0.46921678]\n", + " [-0.8956488 -0.05837732 0.44091419]\n", + " [-0.91033789 -0.04343133 0.41158066]\n", + " [-0.92399457 -0.02824607 0.38136097]\n", + " [-0.93650512 -0.01290847 0.35041622]\n", + " [-0.86937282 -0.26701141 0.41580742]\n", + " [-0.86937282 -0.26701141 0.41580742]\n", + " [-0.9406291 -0.00747557 0.33935382]\n", + " [-0.9406291 -0.00747557 0.33935382]\n", + " [-0.87519669 -0.25295675 0.41236347]\n", + " [-0.87519497 -0.22376015 0.4289116 ]\n", + " [-0.87426709 -0.1935501 0.44519144]\n", + " [-0.87234846 -0.16250515 0.46108595]\n", + " [-0.86939645 -0.13080897 0.47648591]\n", + " [-0.86539174 -0.09864783 0.49128989]\n", + " [-0.8908529 -0.24085655 0.38518727]\n", + " [-0.89110693 -0.21121109 0.40164451]\n", + " [-0.89037672 -0.1805746 0.41787811]\n", + " [-0.88859585 -0.14912864 0.4337719 ]\n", + " [-0.88572124 -0.11705693 0.44921661]\n", + " [-0.88173361 -0.08454563 0.46410978]\n", + " [-0.90582774 -0.22802963 0.35704145]\n", + " [-0.90631042 -0.19799244 0.37336366]\n", + " [-0.90575698 -0.16699051 0.38951054]\n", + " [-0.90410033 -0.1352053 0.40536665]\n", + " [-0.9DEBUG:root:radec2pix: curVec: [[-0.16667415 -0.76646005 0.62028923]\n", + " [-0.15810644 -0.75051517 0.64166138]\n", + " [-0.14924145 -0.73364622 0.66294058]\n", + " [-0.14010745 -0.71588745 0.68401394]\n", + " [-0.1307343 -0.69728066 0.70477531]\n", + " [-0.12115404 -0.67787657 0.72512416]\n", + " [-0.11140123 -0.65773563 0.74496551]\n", + " [-0.10151276 -0.63692806 0.76421057]\n", + " [-0.16667415 -0.76646005 0.62028923]\n", + " [-0.1393573 -0.77529578 0.61603247]\n", + " [-0.11198247 -0.78339759 0.61134944]\n", + " [-0.08465739 -0.79074153 0.60626806]\n", + " [-0.05749014 -0.79731115 0.60082428]\n", + " [-0.03058906 -0.80309711 0.59506247]\n", + " [-0.00406312 -0.80809663 0.58903593]\n", + " [ 0.0219774 -0.81231311 0.58280735]\n", + " [-0.10151276 -0.63692806 0.76421057]\n", + " [-0.07330052 -0.64615206 0.75968055]\n", + " [-0.04511451 -0.65476428 0.75448553]\n", + " [-0.01706709 -0.66273905 0.74865591]\n", + " [ 0.01073162 -0.67005906 0.74223021]\n", + " [ 0.03817441 -0.67671513 0.73525461]\n", + " [ 0.06515646 -0.68270571 0.72778262]\n", + " [ 0.09157382 -0.6880362 0.71987528]\n", + " [ 0.0219774 -0.81231311 0.58280658]\n", + " [-0.17387227 -0.43621596 0.88288395]\n", + " [-0.14725738 -0.42959474 0.89093413]\n", + " [-0.12008743 -0.4225115 0.89836687]\n", + " [-0.09246256 -0.41497783 0.90512103]\n", + " [-0.064486 -0.40701039 0.91114439]\n", + " [-0.03626482 -0.39863125 0.91639401]\n", + " [-0.00790962 -0.38986798 0.92083679]\n", + " [-0.2464302 -0.25897578 0.93391847]\n", + " [-0.21592562 -0.24950021 0.94399458]\n", + " [-0.18442172 -0.2397234 0.95316385]\n", + " [-0.15210917 -0.22966855 0.96130908]\n", + " [-0.11917933 -0.2193698 0.96833526]\n", + " [-0.08582532 -0.20887168 0.97416972]\n", + " [-0.25399317 -0.27319888 0.92781994]\n", + " [-0.24519643 -0.30457487 0.92038734]\n", + " [-0.23571642 -0.33628239 0.91178502]\n", + " [-0.22561741 -0.36810491 0.90199532]\n", + " [-0.21496296 -0.39983454 0.89102372]\n", + " [-0.20381707 -0.43127147 0.87889904]\n", + " [-0.07017148 -0.21630234 0.97380145]\n", + " [-0.05910775 -0.24834588 0.96686638]\n", + " [-0.0477225 -0.28079076 0.95858182]\n", + " [-0.03607882 -0.31342791 0.94892637]\n", + " [-0.02424175 -0.34605209 0.93790207]\n", + " [-0.01227925 -0.37845984 0.92553626]\n", + " [-0.18863322 -0.439 [32.21058351 8.13492254]\n", + " [32.20878509 2.75892284]\n", + " [30.32091205 31.53705599]\n", + " [24.94491236 31.53885442]\n", + " [19.56891265 31.54065283]\n", + " [14.19291295 31.54245125]\n", + " [ 8.81691325 31.54424967]\n", + " [ 3.44091356 31.54604808]\n", + " [30.31065043 0.86205771]\n", + " [24.93465073 0.86385613]\n", + " [19.55865103 0.86565455]\n", + " [14.18265134 0.86745297]\n", + " [ 8.80665163 0.86925139]\n", + " [ 3.43065193 0.8710498 ]\n", + " [ 1.5427789 29.64918296]\n", + " [ 1.54098048 24.27318326]\n", + " [ 1.53918206 18.89718357]\n", + " [ 1.53738364 13.52118387]\n", + " [ 1.53558522 8.14518416]\n", + " [ 1.5337868 2.76918446]\n", + " [32.21841195 31.53642123]\n", + " [32.21841195 31.53642123]\n", + " [ 1.53315204 0.87168457]\n", + " [ 1.53315204 0.87168457]\n", + " [30.32027729 29.6395561 ]\n", + " [24.94427759 29.64135452]\n", + " [19.56827789 29.64315294]\n", + " [14.19227819 29.64495136]\n", + " [ 8.81627849 29.64674978]\n", + " [ 3.44027879 29.6485482 ]\n", + " [30.31847887 24.2635564 ]\n", + " [24.94247917 24.26535482]\n", + " [19.56647947 24.26715324]\n", + " [14.19047977 24.26895166]\n", + " [ 8.81448007 24.27075007]\n", + " [ 3.43848037 24.2725485 ]\n", + " [30.31668045 18.8875567 ]\n", + " .09534433 -0.05946678 -0.02324061\n", + " -0.19998259 -0.16617376 -0.13140827 -0.09588212 -0.05979589 -0.0233572\n", + " -0.20073433 -0.16679525 -0.13189744 -0.09623556 -0.06000982 -0.02342863\n", + " -0.20109591 -0.16709274 -0.13212968 -0.09640067 -0.06010576 -0.0234538 ]\n", + " [-0.20019593 -0.17367087 -0.14646307 -0.11868235 -0.09043873 -0.0618427\n", + " -0.03300558 -0.0040396 -0.20019593 -0.20202839 -0.20359907 -0.20490731\n", + " -0.20595196 -0.20673135 -0.20724368 -0.20748743 -0.0040396 -0.00409191\n", + " -0.0041395 -0.00418225 -0.00421998 -0.00425248 -0.00427955 -0.00430103\n", + " -0.20748743 -0.17998755 -0.15180051 -0.12303089 -0.0937848 -0.06417157\n", + " -0.03430461 -0.00430103 -0.18872819 -0.15574492 -0.12184525 -0.0872316\n", + " -0.05210744 -0.0166781 -0.20093724 -0.20300612 -0.20468137 -0.20596106\n", + " -0.20684219 -0.20732153 -0.00416252 -0.00422448 -0.00427905 -0.00432591\n", + " -0.00436469 -0.00439503 -0.19558822 -0.16140908 -0.12630166 -0.09046055\n", + " -0.05408714 -0.0173918 -0.20011322 -0.20011322 -0.00440367 -0.00440367\n", + " -0.18950334 -0.19145029 -0.19302803 -0.19423441 -0.195066 -0.19551916\n", + " -0.15638145 -0.15798254 -0.1592836 -0.16028164 -0.16097217 -0.16135064\n", + " -0.12234264 -0.1235961 -0.12461804 -0.12540495 -0.1259519 -0.1262541\n", + " -0.08758892 -0.08849133 -0.08922984 -0.08980108 -0.09020062 -0.09042422\n", + " -0.05232353 -0.0528708 -0.053321 -0.05367171 -0.05391982 -0.0540624\n", + " -0.016752 -0.01694088 -0.01709901 -0.01722548 -0.01731915 -0.01737894]\n", + " [ 0.95783851 0.96261448 0.96679818 0.97032784 0.97315256 0.9752324\n", + " 0.97653835 0.97705233 0.95783851 0.96276195 0.96710159 0.97079344\n", + " 0.97378441 0.97603235 0.97750603 0.97818516 0.97705233 0.98261483\n", + " 0.98750199 0.99165011 0.99500566 0.99752533 0.99917635 0.99993704\n", + " 0.97818516 0.98361591 0.98835782 0.99234925 0.99553873 0.99788504\n", + " 0.9993576 0.99993704 0.96000729 0.96547149 0.96998338 0.97344474\n", + " 0.97578203 0.97694639 0.96006992 0.96572084 0.97042996 0.97409503\n", + " 0.97663845 0.97800724 0.97955572 0.98592753 0.99122053 0.99533197\n", + " 0.99818215 0.99971531 0.98063234 0.98683331 0.99193725 0.99584519\n", + " 0.9984813 0.99979391 0.95787352 0.95787352 0.99993552 0.99993552\n", + " 0.9622374 0.96797276 0.97274994 0.9764667 0.97904541 0.98043302\n", + " 0.96778572 0.97373181 0.978679 0.98252511 0.98519233 0.98662722\n", + " 0.97236485 0.97847957 0.98356321 0.98751357 0.9902524 0.99172566\n", + " 0.9758766 0.9821179 0.98730436 0.99133364 0.9941269 0.9956294\n", + " 0.9782474 0.98457302 0.98982824 0.99391049 0.99674043 0.99826267\n", + " 0.97942831 0.98579563 0.99108495 0.99519355 0.99804176 0.99957386]]\n", + "DEBUG:root:radec2pix: curVec Shape: (96, 3)\n", + "998]]\n", + "09482 0.99113614]\n", + " [0.09700904 0.00514259 0.99527021]\n", + " [0.06069518 0.00518073 0.9981429 ]\n", + " [0.02401827 0.00520877 0.99969795]\n", + " [0.01078606 0.19643015 0.98045849]\n", + " [0.01087623 0.16225698 0.98668859]\n", + " [0.01094616 0.1271506 0.99182302]\n", + " [0.01099551 0.09130636 0.99576214]\n", + " [0.01102363 0.0549237 0.9984297 ]\n", + " [0.01102984 0.01821176735]\n", + " [ 0.03194572 -0.79717581 0.60290148]\n", + " [ 0.04195879 -0.7810907 0.62300625]\n", + " [ 0.05198646 -0.7640965 0.64300385]\n", + " [ 0.06199661 -0.74623825 0.66278571]\n", + " [ 0.07195519 -0.72756788 0.68225174]\n", + " [ 0.08182652 -0.70814479 0.70130975]\n", + " [ 0.09157382 -0.6880362 0.71987528]\n", + " [-0.16288336 -0.75965513 0.62959757]\n", + " [-0.15217841 -0.73948797 0.6557433 ]\n", + " [-0.14105507 -0.71796604 0.68163644]\n", + " [-0.1295676 -0.69516308 0.70707887]\n", + " [-0.11777506 -0.67117257 0.73188553]\n", + " [-0.10574203 -0.64610986 0.75588404]\n", + " [-0.15474877 -0.77034806 0.61856017]\n", + " [-0.12121571 -0.78068737 0.613053 ]\n", + " [-0.08770262 -0.7898997 0.60693222]\n", + " [-0.05440835 -0.79795166 0.60026068]\n", + " [-0.02153238 -0.804826 0.59312011]\n", + " [ 0.01072417 -0.81052018 0.58561252]\n", + " [-0.08925016 -0.64109518 0.76225414]\n", + " [-0.05467663 -0.65199222 0.75625168]\n", + " [-0.02025427 -0.66194378 0.74927978]\n", + " [ 0.0138132 -0.67091452 0.74140603]\n", + " [ 0.04732835 -0.67888749 0.73271536]\n", + " [ 0.08009868 -0.68586275 0.7233094 ]\n", + " [ 0.02622791 -0.805DEBUG:root:radec2pix: xyfp: [[-32.203794 -31.5506227 ]\n", + " [-32.20328688 -27.16419416]\n", + " [-32.20277976 -22.77776561]\n", + " [-32.20227264 -18.39133707]\n", + " [-32.20176553 -14.00490853]\n", + " [-32.20125841 -9.61847999]\n", + " [-32.20075129 -5.23205144]\n", + " [-32.20024417 -0.8456229 ]\n", + " [-32.203794 -31.5506227 ]\n", + " [-27.81736545 -31.55112981]\n", + " [-23.43093691 -31.55163693]\n", + " [-19.04450837 -31.55214405]\n", + " [-14.65807983 -31.55265117]\n", + " [-10.27165129 -31.55315829]\n", + " [ -5.88522274 -31.5536654 ]\n", + " [ -1.4987942 -31.55417252]\n", + " [-32.20024417 -0.8456229 ]\n", + " [-27.81381563 -0.84613002]\n", + " [-23.42738708 -0.84663714]\n", + " [-19.04095854 -0.84714426]\n", + " [-14.65453 -0.84765137]\n", + " [-10.26810146 -0.84815849]\n", + " [ -5.88167292 -0.84866561]\n", + " [ -1.49524438 -0.84917273]\n", + " [ -1.4987942 -31.55417252]\n", + " [ -1.49828708 -27.16774398]\n", + " [ -1.49777997 -22.78131544]\n", + " [ -1.49727285 -18.39488689]\n", + " [ -1.49676573 -14.00845835]\n", + " [ -1.49625861 -9.62202981]\n", + " [ -1.49575149 -5.23560127]\n", + " [ -1.49524438 -0.84917273]\n", + " [-32.18857289 -29.63812445]\n", + " [-32.18795136 -24.26212448]\n", + " [-32.18732984 -18.88612452]\n", + " [-32.18670832 -13.51012455]\n", + " [-32.1860868 -8.13412459]\n", + " [-32.18546528 -2.75812462]\n", + " [-30.29129227 -31.5358438 ]\n", + " [-24.91529231 -31.53646533]\n", + " [-19.53929235 -31.53708685]\n", + " [-14.16329238 -31.53770837]\n", + " [ -8.78729242 -31.53832989]\n", + " [ -3.41129245 -31.53895142]\n", + " [-30.28774592 -0.86084401]\n", + " [-24.91174595 -0.86146553]\n", + " [-19.53574599 -0.86208705]\n", + " [-14.15974603 -0.86270858]\n", + " [ -8.78374606 -0.8633301 ]\n", + " [ -3.4077461 -0.86395162]\n", + " [ -1.5135731 -29.6416708 ]\n", + " [ -1.51295157 -24.26567084]\n", + " [ -1.51233005 -18.88967087]\n", + " [ -1.51170853 -13.51367091]\n", + " [ -1.51108701 -8.13767095]\n", + " [ -1.51046548 -2.76167097]\n", + " [-32.18879227 -31.53562444]\n", + " [-32.18879227 -31.53562444]\n", + " [ -1.51024611 -0.86417099]\n", + " [ -1.51024611 -0.86417099]\n", + " [-30.29107291 -29.63834382]\n", + " [-24.91507294 -29.63896534]\n", + " [-19.53907298 -29.63958686]\n", + " [-14.16307301 -29.64020839]\n", + " [ -8.78707305 -29.64082991]\n", + " [ -3.41107308 -29.64145143]\n", + " [-30.29045138 -24.26234385]\n", + " [-24.91445142 -24.26296538]\n", + " 0.99977331]\n", + " [0.2064986 0.20090587 0.95759864]\n", + " [0.2064986 0.20090587 0.95759864]\n", + " [0.01102671 0.00521618 0.9999256 ]\n", + " [0.01102671 0.00521618 0.9999256 ]\n", + " [0.19592714 0.19029998 0.96197634]\n", + " [0.16292559 0.19225876 0.96772508]\n", + " [0.1289709 0.19384904 0.97251687]\n", + " [0.09426176 0.19506507 0.97625014]\n", + " [0.0590016 0.19590316 0.97884665]\n", + " [0.02339654 0.19636024 0.98025265]\n", + " [0.19785166 0.15719218 0.96754604]\n", + " [0.16451646 0.15880644 0.97350647]\n", + " [0.13022261 0.16011755 0.97847046]\n", + " [0.09517088 0.16112232 0.98233503]\n", + " [0.05956467 0.16181718 0.98502145]\n", + " [0.02361044 0.1621981 0.98647571]\n", + " [0.19939573 0.12316354 0.97214818]\n", + " [0.16579218 0.12442767 0.97827946]\n", + " [0.13122742 0.12545686 0.98338189]\n", + " [0.09590173 0.12624866 0.98735208]\n", + " [0.06001727 0.12679897 0.99011108]\n", + " [0.02378066 0.1271029 0.99160442]\n", + " [0.20055377 0.08841323 0.97568503]\n", + " [0.16674959 0.08932369 0.98194493]\n", + " [0.13198281 0.09006766 0.98715164]\n", + " [0.09645193 0.09064294 0.99120174]\n", + " [0.06035751 0.0910454 0.99401595]\n", + " [0.0239064 0.DEBUG:root:radec2pix: camVec: [[-0.20650899 -0.20834684 -0.209912 -0.2112049 -0.21222492 -0.21297066\n", + " -0.21344048 -0.21363303 -0.20650899 -0.18010636 -0.15299311 -0.12528058\n", + " -0.09707928 -0.06849975 -0.03965325 -0.01065205 -0.21363303 -0.1862962\n", + " -0.15824793 -0.12959237 -0.10043485 -0.07088401 -0.04105265 -0.01105755\n", + " -0.01065205 -0.01075054 -0.01083605 -0.01090831 -0.01096697 -0.01101162\n", + " -0.0110419 -0.01105755 -0.20725456 -0.20932255 -0.21098167 -0.21223121\n", + " -0.21306867 -0.2134911 -0.19509826 -0.16224603 -0.12843717 -0.09387541\n", + " -0.05876435 -0.02330924 -0.20180806 -0.16781243 -0.13285166 -0.09711907\n", + " -0.06081473 -0.02414801 -0.01079628 -0.01090926 -0.01100231 -0.01107479\n", + " -0.01112598 -0.01115523 -0.20642679 -0.20642679 -0.01116024 -0.01116024\n", + " -0.19587779 -0.16288944 -0.12894461 -0.09424616 -0.05899718 -0.02340304\n", + " -0.19782623 -0.16450046 -0.13021766 -0.09517804 -0.05958347 -0.0236399\n", + " -0.19939086 -0.16579789 -0.13124607 -0.09593306 -0.06005988 -0.02383341\n", + " -0.2005765679 0.87813406]\n", + " [-0.15636352 -0.43179971 0.8883127 ]\n", + " [-0.12320977 -0.42324481 0.89759856]\n", + " [-0.08935567 -0.41401148 0.9058753 ]\n", + " [-0.05499133 -0.40413042 0.91304686]\n", + " [-0.02031538 -0.39364457 0.91903821]\n", + " [-0.25692273 -0.26224565 0.93017091]\n", + " [-0.25692273 -0.26224565 0.93017091]\n", + " [-0.00804022 -0.38980908 0.9208606 ]\n", + " [-0.00804022 -0.38980908 0.9208606 ]\n", + " [-0.24343896 -0.26996893 0.93158695]\n", + " [-0.23448296 -0.30145872 0.92419715]\n", + " [-0.22486664 -0.33328122 0.91561925]\n", + " [-0.21465388 -0.36522025 0.90583546]\n", + " [-0.20390775 -0.39706805 0.89485116]\n", + " [-0.19269189 -0.42862451 0.88269523]\n", + " [-0.21276479 -0.26058761 0.94171399]\n", + " [-0.20337258 -0.29234766 0.93443696]\n", + " [-0.1933849 -0.32444628 0.92592488]\n", + " [-0.18286427 -0.35666862 0.91615946]\n", + " [-0.17187247 -0.38880729 0.9051457 ]\n", + " [-0.16047248 -0.42066122 0.89291249]\n", + " [-0.18109879 -0.25087702 0.95092794]\n", + " [-0.17129129 -0.28283012 0.94375125]\n", + " [-0.16095237 -0.31513134 0.93530026]\n", + " [-0.15014338 -0.34756742 0.92555597]\n", + " [-0.1035 -0.16677881 -0.13202594 -0.09650734 -0.06042346 -0.02398226\n", + " -0.20136156 -0.16743861 -0.13255205 -0.09689601 -0.0606707 -0.02408492\n", + " -0.20176105 -0.16777281 -0.13281959 -0.09709479 -0.06079851 -0.02414006]\n", + " [-0.20112017 -0.17462343 -0.14743759 -0.11967398 -0.09144325 -0.06285614\n", + " -0.0340241 -0.00505944 -0.20112017 -0.20295163 -0.20451753 -0.20581845\n", + " -0.20685386 -0.20762236 -0.2081222 -0.20835189 -0.00505944 -0.0050993\n", + " -0.00513287 -0.00516008 -0.00518078 -0.00519482 -0.00520206 -0.00520239\n", + " -0.20835189 -0.18087002 -0.15269708 -0.12393724 -0.09469638 -0.06508391\n", + " -0.03521344 -0.00520239 -0.18966571 -0.15671259 -0.12283514 -0.0882373\n", + " -0.053123 -0.01769778 -0.20186172 -0.20392662 -0.20559352 -0.20686189\n", + " -0.20772922 -0.20819238 -0.00517714 -0.00522278 -0.00525872 -0.00528472\n", + " -0.0053005 -0.00530579 -0.19646103 -0.1623014 -0.12720719 -0.09137251\n", + " -0.05499882 -0.01829695 -0.20103758 -0.20103758 -0.00530513 -0.00530513\n", + " -0.19044022 -0.19238166 -0.19395017 -0.1951446509127018 0.99553917]\n", + " [0.20132229 0.05314506 0.97808228]\n", + " [0.16738526 0.05369842 0.98442808]\n", + " [0.13248471 0.05415286 0.98970464]\n", + " [0.09681723 0.05450669 0.99380856]\n", + " [0.06058199 0.05475678 0.99666018]\n", + " [0.02398618 0.05489951 0.99820374]\n", + " [0.20169858 0.0175654 0.97929012]\n", + " [0.16769559 0.01775879 0.98567886]\n", + " [0.13272857 0.01791986 0.99099042]\n", + " [0.09699294 0.01804791 0.99512142]\n", + " [0.06068709 0.01814173 0.99799196]\n", + " [0.02401844 0.01819993 0.99954584]]\n", + "[24.94068075 18.88935513]\n", + " [19.56468105 18.89115354]\n", + " [14.18868135 18.89295196]\n", + " [ 8.81268165 18.89475038]\n", + " [ 3.43668195 18.89654879]\n", + " [30.31488203 13.51155701]\n", + " [24.93888233 13.51335542]\n", + " [19.56288263 13.51515384]\n", + " [14.18688293 13.51695226]\n", + " [ 8.81088324 13.51875068]\n", + " [ 3.43488354 13.5205491 ]\n", + " [30.31308361 8.13555731]\n", + " [24.93708392 8.13735572]\n", + " [19.56108422 8.13915414]\n", + " [14.18508451 8.14095256]\n", + " [ 8.80908482 8.14275098]\n", + " [ 3.43308512 8.1445494 ]\n", + " [30.31128519 2.75955761]\n", + " [24.93528549 2.76135602]\n", + " [19.5592858 2.76315444]\n", + " [14.18 -0.19596195 -0.19639843\n", + " -0.15734701 -0.15893973 -0.16022981 -0.16121459 -0.16188952 -0.16224993\n", + " -0.12332956 -0.12457282 -0.12558234 -0.12635458 -0.12688447 -0.12716713\n", + " -0.08859098 -0.08948154 -0.09020602 -0.09076095 -0.09114176 -0.09134421\n", + " -0.05333481 -0.05386844 -0.05430277 -0.0546353 -0.05486289 -0.05498267\n", + " -0.01776673 -0.01794001 -0.01808024 -0.01818657 -0.01825788 -0.01829321]\n", + " [ 0.95755142 0.96233999 0.96653976 0.97008795 0.97293305 0.97503467\n", + " 0.97636342 0.97690088 0.95755142 0.96248238 0.96683281 0.97053776\n", + " 0.97354358 0.97580774 0.97729871 0.97799592 0.97690088 0.98248039\n", + " 0.98738607 0.99155393 0.99493015 0.99747104 0.99914344 0.99992533\n", + " 0.97799592 0.98344825 0.98821363 0.9922301 0.99544579 0.99781904\n", + " 0.99931881 0.99992533 0.9597252 0.96520735 0.96974134 0.97322767\n", + " 0.97559197 0.97678469 0.95978566 0.96544816 0.97017277 0.97385603\n", + " 0.97641964 0.97781011 0.97941141 0.98580511 0.99112198 0.99525874\n", + " 0.998135 3892544 -0.37993137 0.91452276]\n", + " [-0.12736159 -0.41202101 0.9022293 ]\n", + " [-0.14863116 -0.24086048 0.95911157]\n", + " [-0.13842742 -0.27292972 0.9520227 ]\n", + " [-0.12775537 -0.30535998 0.94362802]\n", + " [-0.11667593 -0.33793956 0.93390769]\n", + " [-0.10525044 -0.37046189 0.92286528]\n", + " [-0.09354281 -0.40272387 0.91052909]\n", + " [-0.11555288 -0.23057242 0.9661697 ]\n", + " [-0.10497097 -0.2626816 0.9591556 ]\n", + " [-0.09398324 -0.29516744 0.95081193]\n", + " [-0.08265101 -0.32781963 0.941118 ]\n", + " [-0.0710368 -0.36043209 0.9300766 ]\n", + " [-0.05920602 -0.39280118 0.91771558]\n", + " [-0.08205714 -0.22005776 0.97202943]\n", + " [-0.07111561 -0.25213158 0.96507628]\n", + " [-0.05983055 -0.28459995 0.9567775 ]\n", + " [-0.04826447 -0.31725356 0.94711178]\n", + " [-0.0364817 -0.34988694 0.93608131]\n", + " [-0.02454953 -0.38229648 0.92371355]]\n", + "81864 0.59158128]\n", + " [ 0.03847826 -0.78662371 0.61623255]\n", + " [ 0.05076627 -0.76604292 0.64078158]\n", + " [ 0.06303362 -0.7441565 0.66502471]\n", + " [ 0.07521766 -0.72106014 0.6887776 ]\n", + " [ 0.08725223 -0.69686645 0.71187373]\n", + " [-0.1665522 -0.76643856 0.62034853]\n", + " [-0.1665522 -0.76643856 0.62034853]\n", + " [ 0.09145148 -0.68808894 0.71984043]\n", + " [ 0.09145148 -0.68808894 0.71984043]\n", + " [-0.15103407 -0.76358079 0.62780019]\n", + " [-0.11737541 -0.7739697 0.62224908]\n", + " [-0.0837437 -0.78323722 0.61605719]\n", + " [-0.05033814 -0.79135027 0.60928714]\n", + " [-0.01735811 -0.79829213 0.60202024]\n", + " [ 0.01499586 -0.80406085 0.59435787]\n", + " [-0.14021388 -0.74345479 0.65392281]\n", + " [-0.10624164 -0.75397339 0.64825677]\n", + " [-0.07231723 -0.76338986 0.64187704]\n", + " [-0.03864115 -0.77167172 0.63484614]\n", + " [-0.0054125 -0.77880354 0.62724457]\n", + " [ 0.02716992 -0.78478507 0.61917218]\n", + " [-0.12899735 -0.72196706 0.67979647]\n", + " [-0.09477501 -0.73259966 0.67402925]\n", + " [-0.06062291 -0.74215506 0.66748089]\n", + " [-0.02674296 -0.75060089 0.66021445]\n", + " [ 0.00666593 -0.75792251 0.65231054]\n", + " [ 0.03940674 -0.76412096 0.64386821]\n", + " [-0.11743942 -0.69919118 0.70522313]\n", + " [-0.08303231 -0.70992207 0.6993685 ]\n", + " [-0.04871905 -0.71960707 0.69267029]\n", + " [-0.01470272 -0.7282134 0.6851927DEBUG:root:fitpix2pix: ccdpx: shape: (96, 2)\n", + " [-19.53845145 -24.2635869 ]\n", + " [-14.16245149 -24.26420842]\n", + " [ -8.78645152 -24.26482994]\n", + " [ -3.41045156 -24.26545147]\n", + " [-30.28982986 -18.88634389]\n", + " [-24.91382989 -18.88696541]\n", + " [-19.53782993 -18.88758693]\n", + " [-14.16182997 -18.88820846]\n", + " [ -8.78583 -18.88882997]\n", + " [ -3.40983004 -18.8894515 ]\n", + " [-30.28920834 -13.51034392]\n", + " [-24.91320837 -13.51096545]\n", + " [-19.53720841 -13.51158697]\n", + " [-14.16120844 -13.51220849]\n", + " [ -8.78520848 -13.51283002]\n", + " [ -3.40920852 -13.51345154]\n", + " [-30.28858681 -8.13434396]\n", + " [-24.91258685 -8.13496548]\n", + " [-19.53658688 -8.135587 ]\n", + " [-14.16058692 -8.13620852]\n", + " [ -8.78458696 -8.13683005]\n", + " [ -3.40858699 -8.13745157]\n", + " [-30.28796529 -2.75834399]\n", + " [-24.91196532 -2.75896552]\n", + " [-19.53596536 -2.75958704]\n", + " [-14.1599654 -2.76020856]\n", + " [ -8.78396543 -2.76083009]\n", + " [ -3.40796547 -2.76145161]]\n", + "3]\n", + " [ 0.01881798 -0.73572653 0.67701725]\n", + " [ 0.0516477 -0.74214808 0.66824303]\n", + " [-0.10559991 -0.67522039 0.73001787]\n", + " [-0.07107537 -0.686030129713 -0.10281916 0.42082265]\n", + " [-0.897328 -0.0700181 0.43577509]\n", + " [-0.91996712 -0.21455451 0.32806533]\n", + " [-0.92064975 -0.18418584 0.34420867]\n", + " [-0.92025207 -0.15287987 0.36022753]\n", + " [-0.9187066 -0.12081652 0.37600737]\n", + " [-0.91596951 -0.08817669 0.3914393 ]\n", + " [-0.91202083 -0.05514666 0.40641955]\n", + " [-0.93313785 -0.20051348 0.29840927]\n", + " [-0.93399127 -0.1698737 0.31432983]\n", + " [-0.93372829 -0.13832406 0.33017864]\n", + " [-0.93228106 -0.10604296 0.34584233]\n", + " [-0.92960486 -0.07321047 0.36121327]\n", + " [-0.92567879 -0.04001367 0.37618836]\n", + " [-0.94522914 -0.1859905 0.26823386]\n", + " [-0.94622361 -0.15513938 0.28388845]\n", + " [-0.94607364 -0.12340578 0.29952575]\n", + " [-0.94471089 -0.09096743 0.31503373]\n", + " [-0.94208971 -0.05800451 0.33030661]\n", + " [-0.93818812 -0.02470525 0.34524295]]\n", + "DEBUG:root:make_az_asym: xyp: [[ -0.172993 31.426621 ]\n", + " [ -0.172993 27.04019243]\n", + " [ -0.172993 22.65376385]\n", + " [ -0.172993 18.26733528]\n", + " [ -0.172993 13.88090671]\n", + " [ -0.172993 9.49447814]\n", + " [ -0.172993 5.10804957]\n", + " [ -0.172993 0.721621 ]\n", + " [ -0.172993 31.426621 ]\n", + " [ -4.55942157 31.426621 ]\n", + " [ -8.94585014 31.426621 ]\n", + " [-13.33227871 31.426621 ]\n", + " [-17.71870729 31.426621 ]\n", + " [-22.10513586 31.426621 ]\n", + " [-26.49156443 31.426621 ]\n", + " [-30.877993 31.426621 ]\n", + " [ -0.172993 0.721621 ]\n", + " [ -4.55942157 0.721621 ]\n", + " [ -8.94585014 0.721621 ]\n", + " [-13.33227872 0.721621 ]\n", + " [-17.71870728 0.721621 ]\n", + " [-22.10513586 0.721621 ]\n", + " [-26.49156443 0.721621 ]\n", + " [-30.877993 0.721621 ]\n", + " [-30.877993 31.426621 ]\n", + " [-30.877993 27.04019243]\n", + " [-30.877993 22.65376385]\n", + " [-30.877993 18.26733529]\n", + " [-30.877993 13.88090671]\n", + " [-30.877993 9.49447814]\n", + " [-30.877993 5.10804957]\n", + " [-30.877993 0.721621 ]\n", + " [ -0.187993 29.514121 ]\n", + " [ -0.187993 24.138121 ]\n", + " [ -0.187993 18.76212101]\n", + " [ -0.187993 13.386121 ]\n", + " [ -0.187993 8.010121 ]\n", + " [ -0.187993 2.634121 ]\n", + " [ -2.085493 31.411621 ]\n", + " [ -7.461493 31.411621 ]\n", + " [-12.837493 31.411621 ]\n", + " [-18.213493 31.411621 ]\n", + " [-23.589493 31.411621 ]\n", + " [-28.965493 31.411621 ]\n", + " [ -2.085493 0.736621 ]\n", + " [ -7.461493 0.736621 ]\n", + " [-12.837493 0.736621 ]\n", + " [-18.213493 0.736621 ]\n", + " [-23.58949299 0.736621 ]\n", + " [-28.965493 0.736621 ]\n", + " [-30.862993 29.514121 ]\n", + " [-30.862993 24.138121 ]\n", + " [-30.862993 18.762121 ]\n", + " [-30.862993 13.386121 ]\n", + " [-30.862993 8.010121 ]\n", + " [-30.862993 2.634121 ]\n", + " [ -0.187993 31.411621 ]\n", + " [ -0.187993 31.411621 ]\n", + " [-30.862993 0.736621 ]\n", + " [-30.862993 0.736621 ]\n", + " [ -2.085493 29.514121 ]\n", + " [ -7.461493 29.514121 ]\n", + " [-12.837493 29.514121 ]\n", + " [-18.213493 29.514121 ]\n", + " [-23.589493 29.514121 ]\n", + " [-28.965493 29.514121 ]\n", + " [ -2.085493 24.138121 ]\n", + " [ -7.461493 24.138121 ]\n", + " [-12.837493 24.138121 ]\n", + " [-18.213493 24.138121 ]\n", + " [-23.589493 24.138121 ]\n", + " [-28.965493 24.138121 ]\n", + " [ -2.085493 18.762121 ]\n", + " [ -7.461493 18.762121 ]\n", + " [-12.837493 18.762121 ]\n", + " [-18.213493 18.7DEBUG:root:radec2pix: camVec Shape: (3, 96)\n", + "62121 ]\n", + " [-23.589493 18.762121 ]\n", + " [-28.965493 18.762121 ]\n", + " [ -2.085493 13.386121 ]\n", + " [ -7.461493 13.386121 ]\n", + " [-12.837493 13.386121 ]\n", + " [-18.213493 13.386121 ]\n", + " [-23.589493 13.386121 ]\n", + " [-28.965493 13.386121 ]\n", + " [ -2.085493 8.010121 ]\n", + " [ -7.461493 8.010121 ]\n", + " [-12.837493 8.010121 ]\n", + " [-18.213493 8.010121 ]\n", + " [-23.589493 8.010121 ]\n", + " [-28.965493 8.010121 ]\n", + " [ -2.085493 2.634121 ]\n", + " [ -7.461493 2.634121 ]\n", + " [-12.837493 2.634121 ]\n", + " [-18.213493 2.634121 ]\n", + " [-23.589493 2.634121 ]\n", + " [-28.965493 2.634121 ]]\n", + "DEBUG:root:radec2pix: lng: [44.21386846 39.93704685 35.05017674 29.50039724 23.26936887 16.39762201\n", + " 9.00597869 1.30015678 44.21386846 48.38707907 53.17846261 58.652901\n", + " 64.84492629 71.73221904 79.20889503 87.07353952 1.30015678 1.50828626\n", + " 1.79395925 2.21040578 2.87397756 4.09690845 7.09544794 25.08421915\n", + " 87.07353952 86.60429547 85.95429853 84.99452258 DEBUG:root:radec2pix: curVec Shape: (96, 3)\n", + "DEBUG:root:fitpix2pix: visCut: True\n", + "DEBUG:root:radec2pix: curVec Shape: (96, 3)\n", + "328609 2.76495286]\n", + " [ 8.8072864 2.76675128]\n", + " [ 3.4312867 2.7685497 ]]\n", + " 0.99969431 0.98045219 0.98668092 0.99181514 0.9957552\n", + " 0.99842443 0.99977036 0.95758648 0.95758648 0.99992365 0.99992365\n", + " 0.96195864 0.96770674 0.97250019 0.97623574 0.97883515 0.98024484\n", + " 0.96752607 0.97348742 0.97845274 0.98231919 0.98500842 0.98646648\n", + " 0.97212813 0.97826002 0.98336338 0.98733549 0.99009754 0.99159492\n", + " 0.9756655 0.9819256 0.98713324 0.99118554 0.99400311 0.99553056\n", + " 0.97806386 0.98440972 0.98968741 0.99379381 0.99664895 0.99819679\n", + " 0.97927362 0.98566244 0.99097531 0.99510896 0.99798306 0.9995412 ]]\n", + "83.43549808 80.46877478\n", + " 72.72327889 25.08421915 42.4332296 36.78871515 30.1721461 22.534249\n", + " 13.95213213 4.68455031 45.9485209 51.4701262 57.98745342 65.57788622\n", + " 74.19728483 83.61034654 1.41178444 1.72041252 2.19784005 3.03449456\n", + " 4.87874528 12.23608945 86.85702241 86.16514834 85.07964235 83.13325955\n", + " 78.65106614 58.79906907 44.21351009 44.21351009 25.31647093 25.31647093\n", + " 44.16528338 49.72110165 56.36353517 64.20866184 73.23888739 83.20517984\n", + " 38.4669715 43.98823734 50.87875671 59.43072848 69.79141059 81.71788613\n", + " 31.70295803 36.8883708 43.71214181 52.77876171 64.67058062 79.40261268\n", + " 23.79006954 28.17687017 34.3103939 43.22163096 56.45806862 75.32225144\n", + " 14.78760738 17.78662299 22.23218915 29.3788791 42.10872179 66.39896872\n", + " 4.97718101 6.0450351 7.68908472 10.5407344 16.64345121 37.15297361]\n", + "339 0.7240901 ]\n", + " [-0.03666898 -0.69583863 0.71726145]\n", + " [-0.00258454 -0.70460243 0.70959759]\n", + " [ 0.03097966 -0.71230962 0.70118134]\n", + " [ 0.06382971 -0.71896163 0.69211266]\n", + " [-0.09354404 -0.6501698 0.75400845]\n", + " [-0.058971 -0.66104802 0.74802269]\n", + " [-0.02454056 -0.67096336 0.7410843 ]\n", + " [ 0.00954341 -0.67988095 0.7332604 ]\n", + " [ 0.04308323 -0.68778439 0.72463541]\n", + " [ 0.07588611 -0.69467418 DEBUG:root:radec2pix: camVec Shape: (3, 96)\n", + " 0.71531048]]\n", + "DEBUG:root:make_az_asym: xyp: shape: (96, 2)\n", + "DEBUG:root:radec2pix: curVec Shape: (96, 3)\n", + "DEBUG:root:radec2pix: ccdpx: [[-4.45000001e+01 -5.00000132e-01]\n", + " [-4.45000001e+01 2.91928571e+02]\n", + " [-4.44999999e+01 5.84357143e+02]\n", + " [-4.44999998e+01 8.76785714e+02]\n", + " [-4.45000000e+01 1.16921429e+03]\n", + " [-4.45000002e+01 1.46164286e+03]\n", + " [-4.44999998e+01 1.75407143e+03]\n", + " [-4.44999999e+01 2.04650000e+03]\n", + " [-4.45000001e+01 -5.00000132e-01]\n", + " [ 2.47928572e+02 -4.99999845e-01]\n", + " [ 5.40357143e+02 -5.00000146e-01]\n", + " [ 8.32785714e+02 -4.99999843e-01]\n", + " [ 1.12521429e+03 -4.99999832e-01]\n", + " [ 1.41764286e+03 -5.00000031e-01]\n", + " [ 1.71007143e+03 -5.00000120e-01]\n", + " [ 2.00250000e+03 -4.99999883e-01]\n", + " [-4.44999999e+01 2.04650000e+03]\n", + " [ 2.47928572e+02 2.04650000e+03]\n", + " [ 5.40357143e+02 2.04650000e+03]\n", + " [ 8.32785714e+02 2.04650000e+03]\n", + " [ 1.12521429e+03 2.04650000e+03]\n", + " [ 1.41764286e+03 2.04650000e+03]\n", + " [ 1.71007143e+03 2.04650000e+03]\n", + " [ 2.00250000e+03 2.04650000e+03]\n", + " [ 2.00250000e+03 -4.99999883e-01]\n", + " [ 2.00250000e+03 2.91928571e+02]\n", + " [ 2.00250000e+03 5.84357143e+02]\n", + " [ 2.00250000e+03 8.76785714e+02]\n", + " [ 2.00250000e+03 1.16921429e+03]\n", + " [ 2.00250000e+03 1.46164286e+03]\n", + " [ 2.00250000e+03 1.75407143e+03]\n", + " [ 2.00250000e+03 2.04650000e+03]\n", + " [-4.35000002e+01 1.27000000e+02]\n", + " [-4.34999998e+01 4.85400000e+02]\n", + " [-4.34999999e+01 8.43800000e+02]\n", + " [-4.35000001e+01 1.20220000e+03]\n", + " [-4.34999999e+01 1.56060000e+03]\n", + " [-4.35000000e+01 1.91900000e+03]\n", + " [ 8.30000001e+01 5.00000120e-01]\n", + " [ 4.41400000e+02 4.99999839e-01]\n", + " [ 7.99800000e+02 4.99999975e-01]\n", + " [ 1.15820000e+03 5.00000060e-01]\n", + " [ 1.51660000e+03 5.00000260e-01]\n", + " [ 1.87500000e+03 4.99999701e-01]\n", + " [ 8.29999997e+01 2.04550000e+03]\n", + " [ 4.41400000e+02 2.04550000e+03]\n", + " [ 7.99800000e+02 2.04550000e+03]\n", + " [ 1.15820000e+03 2.04550000e+03]\n", + " [ 1.51660000e+03 2.04550000e+03]\n", + " [ 1.87500000e+03 2.04550000e+03]\n", + " [ 2.00150000e+03 1.27000000e+02]\n", + " [ 2.00150000e+03 4.85400000e+02]\n", + " [ 2.00150000e+03 8.43800000e+02]\n", + " [ 2.00150000e+03 1.20220000e+03]\n", + " [ 2.00150000e+03 1.56060000e+03]\n", + " [ 2.00150000e+03 1.91900000e+03]\n", + " [-4.35000003e+01 4.99999746e-01]\n", + " [-4.35000003e+01 4.99999746e-01]\n", + " [ 2.00150000e+03 2.04550000e+03]\n", + " [ 2.00150000e+03 2.04550000e+03]\n", + " [ 8.29999998e+01 1.27000000e+02]\n", + " [ 4.41400000e+02 1.27000000e+02]\n", + " [ 7.99800000e+02 1.27000000e+02]\n", + " [ 1.15820000e+03 1.27000000e+02]\n", + " [ 1.51660000e+03 1.27000000e+02]\n", + " [ 1.87500000e+03 1.27000000e+02]\n", + " [ 8.30000000e+01 4.85400000e+02]\n", + " [ 4.41400000e+02 4.85400000e+02]\n", + " [ 7.99800000e+02 4.85400000e+02]\n", + " [ 1.15820000e+03 4.85400000e+02]\n", + " [ 1.51660000e+03 4.85400000e+02]\n", + " [ 1.87500000e+03 4.85400000e+02]\n", + " [ 8.29999999e+01 8.43800000e+02]\n", + " [ 4.41400000e+02 8.43800000e+02]\n", + " [ 7.99800000e+02 8.43800000e+02]\n", + " [ 1.15820000e+03 8.43800000e+02]\n", + " [ 1.51660000e+03 8.43800000e+02]\n", + " [ 1.87500000e+03 8.43800000e+02]\n", + " [ 8.29999998e+01 1.20220000e+03]\n", + " [ 4.41400000e+02 1.20220000e+03]\n", + " [ 7.99800000e+02 1.20220000e+03]\n", + " [ 1.15820000e+03 1.20220000e+03]\n", + " [ 1.51660000e+03 1.20220000e+03]\n", + " [ 1.87500000e+03 1.20220000e+03]\n", + " [ 8.30000000e+01 1.56060000e+03]\n", + " [ 4.41400000e+02 1.56060000e+03]\n", + " [ 7.99800000e+02 1.56060000e+03]\n", + " [ 1.15820000e+03 1.56060000e+03]\n", + " [ 1.51660000e+03 1.56060000e+03]\n", + " [ 1.87500000e+03 1.56060000e+03]\n", + " [ 8.30000000e+01 1.91900000e+03]\n", + " [ 4.41400000e+02 1.91900000e+03]\n", + " [ 7.99800000e+02 1.91900000e+03]\n", + " [ 1.15820000e+03 1.91900000e+03]\n", + " [ 1.51660000e+03 1.91900000e+03]\n", + " [ 1.87500000e+03 1.91900000e+03]]\n", + "DEBUG:root:optics_fp: xyfp shape: (96, 2)\n", + "DEBUG:root:radec2pix: camVec: [[-0.20605921 -0.20787315 -0.20942436 -0.21070676 -0.21171698 -0.21245291\n", + " -0.21291301 -0.2130962 -0.20605921 -0.17962884 -0.15250018 -0.12477652\n", + " -0.0965659 -0.06797863 -0.03912632 -0.01012153 -0.2130962 -0.18573503\n", + " -0.15766321 -0.1289874 -0.09981355 -0.07024926 -0.04040619 -0.01040084\n", + " -0.01012153 -0.01020027 -0.01026637 -0.01031977 -0.01036027 -0.01038751\n", + " -0.01040113 -0.01040084 -0.20679239 -0.20883895 -0.21048459 -0.2117221\n", + " -0.21254753 -0.21295821 -0.1946339 -0.16175754 -0.12793421 -0.09336102\n", + " -0.05824097 -0.02277993 -0.20126076 -0.16723544 -0.13224882 -0.09649617\n", + " -0.06017591 -0.02349561 -0.01025713 -0.01034611 -0.01041588 -0.01046611\n", + " -0.01049618 -0.01050541 -0.20597676 -0.20597676 -0.01050361 -0.01050361\n", + " -0.19540403 -0.16239488 -0.12843557 -0.09372478 -0.05846599 -0.02286533\n", + " -0.19733483 -0.16399068 -0.1296908 -0.094636 -0.05902974 -0.02307851\n", + " -0.19888634 -0.16527244 -0.13070023 -0.09537003 -0.05948408 -0.02324907\n", + " -0.20005292 -0.16623701 -0.13146138 -0.09592455 -0.05982716 -0.0233762\n", + " -0.20083104 -0.16688094 -0.13197015 -0.09629527 -0.0600556 -0.02345845\n", + " -0.20121796 -0.16720058 -0.13222195 -0.09647752 -0.06016577 -0.02349426]\n", + " [-0.20169937 -0.17519485 -0.1480085 -0.12024402 -0.09200964 -0.06341581\n", + " -0.03457423 -0.00559748 -0.20169937 -0.20353396 -0.20511207 -0.20642749\n", + " -0.20747679 -0.20825778 -0.20876879 -0.20900854 -0.00559748 -0.00565735\n", + " -0.00571045 -0.00575671 -0.00579596 -0.00582797 -0.00585246 -0.00586919\n", + " -0.20900854 -0.18153487 -0.15336672 -0.12461057 -0.09537244 -0.06576046\n", + " -0.03588698 -0.00586919 -0.1902398 -0.15728353 -0.12340547 -0.08880315\n", + " -0.0536798 -0.01824146 -0.20244048 -0.20451655 -0.20620095 -0.20748634\n", + " -0.2083686 -0.2088448 -0.00572401 -0.00579384 -0.00585326 -0.00590199\n", + " -0.0059396 -0.00596558 -0.19712185 -0.16296958 -0.1278801 -0.09204872\n", + " -0.05567473 -0.01896706 -0.2016167 -0.2016167 -0.0059719 -0.0059719\n", + " -0.19101701 -0.19297429 -0.19456158 -0.19577312 -0.19660523 -0.1970549\n", + " -0.15792497 -0.15953875 -0.16084786 -0.1618491 -0.16253892 -0.16291334\n", + " -0.12390793 -0.1251726 -0.12620079 -0.12699006 -0.12753631 -0.1278347\n", + " -0.089165 -0.090077 -0.09082101 -0.09139481 -0.09179425 -0.09201449\n", + " -0.05389991 -0.05445583 -0.05491134 -0.05526476 -0.0555129 -0.05565213\n", + " -0.018319 -0.01851594 -0.01867909 -0.01880776 -0.01890068 -0.01895646]\n", + " [ 0.95752648 0.96233857 0.96655829 0.97012578 0.97299031 0.97511138\n", + " 0.97645925 0.97701519 0.95752648 0.96244865 0.96678474 0.97047334\n", + " 0.97346207 0.97570877 0.97718203 0.97786143 0.97701519 0.98258358\n", + " 0.98747643 0.99162952 0.99498928 0.99751244 0.9991662 0.99992869\n", + " 0.97786143 0.98333161 0.98811601 0.99215206 0.99538774 0.99778137\n", + " 0.99930173 0.99992869 0.95971127 0.96521924 0.96977695 0.97328709\n", + " 0.97567516 0.97689101 0.95975804 0.96540534 0.97011031 0.97377263\n", + " 0.97631476 0.97768345 0.97952098 0.98589996 0.99119927 0.99531586\n", + " 0.99817012 0.99970614 0.98032534 0.98657685 0.99173494 0.9956995\n", + " 0.99839379 0.99976492 0.95756163 0.95756163 0.999927 0.999927\n", + " 0.96194063 0.96767186 0.97244542 0.97616011 0.97873802 0.98012578\n", + " 0.96753226 0.97347545 0.97842131 0.98226722 0.98493482 0.98637043\n", + " 0.97215793 0.97827237 0.98335691 0.9873085 0.99004855 0.99152295\n", + " 0.97571944 0.98196303 0.98715219 0.99118387 0.99397914 0.9DEBUG:root:cartToSphere: vec: [[-0.20607518 -0.20019593 0.95783851]\n", + " [-0.20787446 -0.17367087 0.96261448]\n", + " [-0.20940354 -0.14646307 0.96679818]\n", + " [-0.21066179 -0.11868235 0.97032784]\n", + " [-0.21164814 -0.09043873 0.97315256]\n", + " [-0.21236112 -0.0618427 0.9752324 ]\n", + " [-0.21279916 -0.03300558 0.97653835]\n", + " [-0.21296107 -0.0040396 0.97705233]\n", + " [-0.20607518 -0.20019593 0.95783851]\n", + " [-0.17964954 -0.20202839 0.96276195]\n", + " [-0.15251864 -0.20359907 0.96710159]\n", + " [-0.12479221 -0.20490731 0.97079344]\n", + " [-0.09658011 -0.20595196 0.97378441]\n", + " [-0.06799262 -0.20673135 0.97603235]\n", + " [-0.03914089 -0.20724368 0.97750603]\n", + " [-0.01013708 -0.20748743 0.97818516]\n", + " [-0.21296107 -0.0040396 0.97705233]\n", + " [-0.18561075 -0.00409191 0.98261483]\n", + " [-0.15755214 -0.0041395 0.98750199]\n", + " [-0.12888979 -0.00418225 0.99165011]\n", + " [-0.09972928 -0.00421998 0.99500566]\n", + " [-0.07017922 -0.00425248 0.99752533]\n", + " [-0.04035219 -0.00427955 0.99917635]\n", + " [-0.01036463 -0.00430103 0.99993704]\n", + " [-0.01013708 -0.20748743 0.97818DEBUG:root:radec2pix: xyfp: [[ -0.172993 31.426621 ]\n", + " [ -0.172993 27.04019243]\n", + " [ -0.172993 22.65376385]\n", + " [ -0.172993 18.26733528]\n", + " [ -0.172993 13.88090671]\n", + " [ -0.172993 9.49447814]\n", + " [ -0.172993 5.10804957]\n", + " [ -0.172993 0.721621 ]\n", + " [ -0.172993 31.426621 ]\n", + " [ -4.55942157 31.426621 ]\n", + " [ -8.94585014 31.426621 ]\n", + " [-13.33227871 31.426621 ]\n", + " [-17.71870729 31.426621 ]\n", + " [-22.10513586 31.426621 ]\n", + " [-26.49156443 31.426621 ]\n", + " [-30.877993 31.426621 ]\n", + " [ -0.172993 0.721621 ]\n", + " [ -4.55942157 0.721621 ]\n", + " [ -8.94585014 0.721621 ]\n", + " [-13.33227872 0.721621 ]\n", + " [-17.71870728 0.721621 ]\n", + " [-22.10513586 0.721621 ]\n", + " [-26.49156443 0.721621 ]\n", + " [-30.877993 0.721621 ]\n", + " [-30.877993 31.426621 ]\n", + " [-30.877993 27.04019243]\n", + " [-30.877993 22.65376385]\n", + " [-30.877993 18.26733529]\n", + " [-30.877993 13.88090671]\n", + " [-30.877993 9.49447814]\n", + " [-30.877993 5.10804957]\n", + " [-30.877993 0.721621 ]\n", + " [ -0.187993 29.514121 ]\n", + " [ -0.187993 24.138121 ]\n", + " [ -0.187993 18.76212101]\n", + " [ -0.187993 13.386121 ]\n", + " [ -0.187993 8.010121 ]\n", + " [ -0.187993 2.634121 ]\n", + " [ -2.085493 31.411621 ]\n", + " [ -7.461493 31.411621 ]\n", + " [-12.837493 31.411621 ]\n", + " [-18.213493 31.411621 ]\n", + " [-23.589493 31.411621 ]\n", + " [-28.965493 31.411621 ]\n", + " [ -2.085493 0.736621 ]\n", + " [ -7.461493 0.736621 ]\n", + " [-12.837493 0.736621 ]\n", + " [-18.213493 0.736621 ]\n", + " [-23.58949299 0.736621 ]\n", + " [-28.965493 0.736621 ]\n", + " [-30.862993 29.514121 ]\n", + " [-30.862993 24.138121 ]\n", + " [-30.862993 18.762121 ]\n", + " [-30.862993 13.386121 ]\n", + " [-30.862993 8.010121 ]\n", + " [-30.862993 2.634121 ]\n", + " [ -0.187993 31.411621 ]\n", + " [ -0.187993 31.411621 ]\n", + " [-30.862993 0.736621 ]\n", + " [-30.862993 0.736621 ]\n", + " [ -2.085493 29.514121 ]\n", + " [ -7.461493 29.514121 ]\n", + " [-12.837493 29.514121 ]\n", + " [-18.213493 29.514121 ]\n", + " [-23.589493 29.514121 ]\n", + " [-28.965493 29.514121 ]\n", + " [ -2.085493 24.138121 ]\n", + " [ -7.461493 24.138121 ]\n", + " [-12.837493 24.138121 ]\n", + " [-18.213493 24.138121 ]\n", + " [-23.589493 24.138121 ]\n", + " [-28.965493 24.138121 ]\n", + " [ -2.085493 18.762121 ]\n", + " [ -7.461493 18.762121 ]\n", + " [-12.837493 18.762121 ]\n", + " [-18.213493 18.762121 ]\n", + " [-23.589493 18.762121 ]\n", + " [-28.965493 18.762121 ]\n", + " [ -2.085493 13.386121 ]\n", + " [ -7.461493 13.386121 ]\n", + " [-12.837493 13.386121 ]\n", + " [-18.213493 13.386121 ]\n", + " [-23.589493 13.386121 ]\n", + " [-28.965493 13.386121 ]\n", + " [ -2.085493 8.010121 ]\n", + " [ -7.461493 8.010121 ]\n", + " [-12.837493 8.010121 ]\n", + " [-18.213493 8.010121 ]\n", + " [-23.589493 8.010121 ]\n", + " [-28.965493 8.010121 ]\n", + " [ -2.085493 2.634121 ]\n", + " [ -7.461493 2.634121 ]\n", + " [-12.837493 2.634121 ]\n", + " [-18.213493 2.634121 ]\n", + " [-23.589493 2.634121 ]\n", + " [-28.965493 2.634121 ]]\n", + "DEBUG:root:radec2pix: camVec: [[-0.00174024 -0.00176337 -0.00178449 -0.00180353 -0.00182039 -0.001835\n", + " -0.00184725 -0.00185707 -0.00174024 -0.0307605 -0.05966066 -0.08832819\n", + " -0.116651DEBUG:root:radec2pix: xyfp Shape: (96, 2)\n", + "516]\n", + " [-0.01020871 -0.17998755 0.98361591]\n", + " [-0.01026764 -0.15180051 0.98835782]\n", + " [-0.01031373 -0.12303089 0.99234925]\n", + " [-0.01034674 -0.0937848 0.99553873]\n", + " [-0.01036638 -0.06417157 0.99788504]\n", + " [-0.0103724 -0.03430461 0.9993576 ]\n", + " [-0.01036463 -0.00430103 0.99993704]\n", + " [-0.20680345 -0.18872819 0.96000729]\n", + " [-0.20882603 -0.15574492 0.96547149]\n", + " [-0.21044235 -0.12184525 0.96998338]\n", + " [-0.21165063 -0.0872316 0.97344474]\n", + " [-0.2124482 -0.05210744 0.97578203]\n", + " [-0.2128323 -0.0166781 0.97694639]\n", + " [-0.19465346 -0.20093724 0.96006992]\n", + " [-0.16177694 -0.20300612 0.96572084]\n", + " [-0.12795009 -0.20468137 0.97042996]\n", + " [-0.0933751 -0.20596106 0.97409503]\n", + " [-0.05825505 -0.20684219 0.97663845]\n", + " [-0.022795 -0.20732153 0.97800724]\n", + " [-0.20112996 -0.00416252 0.97955572]\n", + " [-0.16711987 -0.00422448 0.98592753]\n", + " [-0.13214975 -0.00427905 0.99122053]\n", + " [-0.09641349 -0.00432591 0.99533197]\n", + " [-0.0601111 -0.00436469 0.99818215]\n", + " [-0.02345151 -0.00439503 0.99971531]\n", + " [-0.01026957 -0.19558822 0.98063234]\n", + " [-0.0103498 -0.16140908 0.98683331]\n", + " [-0.01041065 -0.12630166 0.99193725]\n", + " [-0.01045169 -0.09046055 0.99584519]\n", + " [-0.01047241 -0.05408714 0.9984813 ]\n", + " [-0.01047238 -0.0173918 0.99979391]\n", + " [-0.20599275 -0.20011322 0.95787352]\n", + " [-0.20599275 -0.20011322 0.95787352]\n", + " [-0.01046737 -0.00440367 0.99993552]\n", + " [-0.01046737 -0.00440367 0.99993552]\n", + " [-0.19541667 -0.18950334 0.9622374 ]\n", + " [-0.16240545 -0.19145029 0.96797276]\n", + " [-0.12844349 -0.19302803 0.97274994]\n", + " [-0.09373247 -0.19423441 0.9764667 ]\n", + " [-0.05847519 -0.195066 0.97904541]\n", + " [-0.02287686 -0.19551916 0.98043302]\n", + " [-0.19732118 -0.15638145 0.96778572]\n", + " [-0.16397526 -0.15798254 0.97373181]\n", + " [-0.12967711 -0.1592836 0.978679 ]\n", + " [-0.09462661 -0.16028164 0.98252511]\n", + " [-0.05902568 -0.16097217 0.98519233]\n", + " [-0.02308015 -0.16135064 0.98662722]\n", + " [-0.19884383 -0.12234264 0.97236485]\n", + " [-0.16523235 -0.1235961 0.97847957]\n", + " [-0.13066656 -0.12461804 0.98356321]\n", + " [-DEBUG:root:radec2pix: camVec: [[-0.20607518 -0.20787446 -0.20940354 -0.21066179 -0.21164814 -0.21236112\n", + " -0.21279916 -0.21296107 -0.20607518 -0.17964954 -0.15251864 -0.12479221\n", + " -0.09658011 -0.06799262 -0.03914089 -0.01013708 -0.21296107 -0.18561075\n", + " -0.15755214 -0.12888979 -0.09972928 -0.07017922 -0.04035219 -0.01036463\n", + " -0.01013708 -0.01020871 -0.01026764 -0.01031373 -0.01034674 -0.01036638\n", + " -0.0103724 -0.01036463 -0.20680345 -0.20882603 -0.21044235 -0.21165063\n", + " -0.2124482 -0.2128323 -0.19465346 -0.16177694 -0.12795009 -0.0933751\n", + " -0.05825505 -0.022795 -0.20112996 -0.16711987 -0.13214975 -0.09641349\n", + " -0.0601111 -0.02345151 -0.01026957 -0.0103498 -0.01041065 -0.01045169\n", + " -0.01047241 -0.01047238 -0.20599275 -0.20599275 -0.01046737 -0.01046737\n", + " -0.19541667 -0.16240545 -0.12844349 -0.09373247 -0.05847519 -0.02287686\n", + " -0.19732118 -0.16397526 -0.12967711 -0.09462661 -0.05902568 -0.02308015\n", + " -0.19884383 -0.16523235 -0.13066656 -0.09534433 -0.05946678 -0.02324061\n", + " -0.19998259 -0.16617376 -0.13140827 -0.09588212 -0.05979589 -0.0233572\n", + " -0.20073433 -0.16679525 -0.13189744 -0.09623556 -0.06000982 -0.02342863\n", + " -0.20109591 -0.16709274 -0.13212968 -0.09640067 -0.06010576 -0.0234538 ]\n", + " [-0.20019593 -0.17367087 -0.14646307 -0.11868235 -0.09043873 -0.0618427\n", + " -0.03300558 -0.0040396 -0.20019593 -0.20202839 -0.20359907 -0.20490731\n", + " -0.20595196 -0.20673135 -0.20724368 -0.20748743 -0.0040396 -0.00409191\n", + " -0.0041395 -0.00418225 -0.00421998 -0.00425248 -0.00427955 -0.00430103\n", + " -0.20748743 -0.17998755 -0.15180051 -0.12303089 -0.0937848 -0.06417157\n", + " -0.03430461 -0.00430103 -0.18872819 -0.15574492 -0.12184525 -0.0872316\n", + " -0.05210744 -0.0166781 -0.20093724 -0.20300612 -0.20468137 -0.20596106\n", + " -0.20684219 -0.20732153 -0.00416252 -0.00422448 -0.00427905 -0.00432591\n", + " -0.00436469 -0.00439503 -0.19558822 -0.16140908 -0.12630166 -0.09046055\n", + " -0.05408714 -0.0173918 -0.20011322 -0.20011322 -0.00440367 -0.00440367\n", + " -0.18950334 -0.19145029 -0.19302803 -0.194234410.09534433 -0.12540495 0.98751357]\n", + " [-0.05946678 -0.1259519 0.9902524 ]\n", + " [-0.02324061 -0.1262541 0.99172566]\n", + " [-0.19998259 -0.08758892 0.9758766 ]\n", + " [-0.16617376 -0.08849133 0.9821179 ]\n", + " [-0.13140827 -0.08922984 0.98730436]\n", + " [-0.09588212 -0.08980108 0.99133364]\n", + " [-0.05979589 -0.09020062 0.9941269 ]\n", + " [-0.0233572 -0.09042422 0.9956294 ]\n", + " [-0.20073433 -0.05232353 0.9782474 ]\n", + " [-0.16679525 -0.0528708 0.98457302]\n", + " [-0.13189744 -0.053321 0.98982824]\n", + " [-0.09623556 -0.05367171 0.99391049]\n", + " [-0.06000982 -0.05391982 0.99674043]\n", + " [-0.02342863 -0.0540624 0.99826267]\n", + " [-0.20109591 -0.016752 0.97942831]\n", + " [-0.16709274 -0.01694088 0.98579563]\n", + " [-0.13212968 -0.01709901 0.99108495]\n", + " [-0.09640067 -0.01722548 0.99519355]\n", + " [-0.06010576 -0.01731915 0.99804176]\n", + " [-0.0234538 -0.01737894 0.99957386]]\n", + "9548324\n", + " 0.97814196 0.9844721 0.98973159 0.9938174 0.99665021 0.9981746\n", + " 0.97937518 0.98574902 0.99104412 0.99515745 0.99800944 0.99954423]]\n", + "DEBUG:root:cartToSphere: vDEBUG:root:make_az_asym: xyp: [[32.23341696 31.55141621]\n", + " [32.23194958 27.16498788]\n", + " [32.2304822 22.77855956]\n", + " [32.22901483 18.39213124]\n", + " [32.22754745 14.00570291]\n", + " [32.22608007 9.61927458]\n", + " [32.22461269 5.23284626]\n", + " [32.2231453 0.84641793]\n", + " [32.23341696 31.55141621]\n", + " [27.84698864 31.5528836 ]\n", + " [23.46056031 31.55435097]\n", + " [19.07413198 31.55581835]\n", + " [14.68770366 31.55728573]\n", + " [10.30127533 31.55875311]\n", + " [ 5.91484701 31.56022049]\n", + " [ 1.52841868 31.56168787]\n", + " [32.2231453 0.84641793]\n", + " [27.83671698 0.84788531]\n", + " [23.45028865 0.84935269]\n", + " [19.06386033 0.85082007]\n", + " [14.677432 0.85228745]\n", + " [10.29100367 0.85375483]\n", + " [ 5.90457535 0.85522221]\n", + " [ 1.51814702 0.85668959]\n", + " [ 1.52841868 31.56168787]\n", + " [ 1.5269513 27.17525955]\n", + " [ 1.52548392 22.78883122]\n", + " [ 1.52401654 18.4024029 ]\n", + " [ 1.52254916 14.01597457]\n", + " [ 1.52108178 9.62954624]\n", + " [ 1.5196144 5.24311792]\n", + " [ 1.51814702 0.85668959]\n", + " [32.21777718 29.63892134]\n", + " [32.21597876 24.26292164]\n", + " [32.21418034 18.88692194]\n", + " [32.21238193 13.51092224DEBUG:root:radec2pix: lat: [73.24843796 74.22959053 75.14101603 75.95564397 76.6437957 77.17522107\n", + " 77.52247637 77.66531399 73.24843796 74.25938156 75.20604331 76.06127099\n", + " 76.79469021 77.37449152 77.77070397 77.95983585 77.66531399 79.26403549\n", + " 80.8954867 82.55419485 84.2348008 85.93154111 87.63625009 89.30890983\n", + " 77.95983585 79.5631834 81.19741545 82.85654952 84.53396682 86.22024\n", + " 87.89143193 89.30890983 73.68688931 74.8461168 75.87404737 76.71704667\n", + " 77.31977046 77.63442603 73.69912883 74.89851762 75.9747656 76.87322604\n", + " 77.53566935 77.90931811 78.357841 80.33991917 82.36567874 84.42519517\n", + " 86.5076147 88.59172382 78.65442708 80.64093339 82.6678651 84.72327772\n", + " 86.78866387 88.77999774 73.25542451 73.25542451 89.30107513 89.30107513\n", + " 74.14922787 75.40361568 76.5361131 77.48786454 78.19419066 78.59463145\n", + " 75.36296624 76.78183851 78.08930019 79.21461778 80.0707569 80.56622359\n", + " 76.44568445 78.03639269 79.53999931 80.87766645 81.93562678 82.57036945\n", + " 77.33928008 79.09582585 80.80551049 82.39402202 83.72877916 84.58613925\n", + " 77.98201104 79.8754942 81.77128989 83.62092117 85.31596639 86.56531268\n", + " 78.31903282 80.2916347 82.30308639 84.33811541 86.36841377 88.27312586]\n", + "DEBUG:root:radec2pix: camVec Shape: (3, 96)\n", + "51 -0.14451993 -0.17182299 -0.19844965 -0.00185707 -0.03187835\n", + " -0.06177226 -0.09142104 -0.12071058 -0.14953103 -0.1777762 -0.20534186\n", + " -0.19844965 -0.20021951 -0.20172864 -0.20297731 -0.20396466 -0.20468905\n", + " -0.20514862 -0.20534186 -0.00185028 -0.00187827 -0.00190298 -0.00192425\n", + " -0.00194192 -0.00195581 -0.0144012 -0.04990298 -0.08511243 -0.11982373\n", + " -0.15383302 -0.18693675 -0.01495442 -0.05167778 -0.08809246 -0.12398684\n", + " -0.15915858 -0.19341315 -0.19916328 -0.201156 -0.20275765 -0.20396715\n", + " -0.20478152 -0.20519745 -0.00183964 -0.00183964 -0.20524866 -0.20524866\n", + " -0.01446124 -0.05010266 -0.08545073 -0.12029942 -0.1544452 -0.18768535\n", + " -0.01461361 -0.05060625 -0.08630213 -0.12149421 -0.15597972 -0.18955833\n", + " -0.01473929 -0.05101673 -0.08699359 -0.12246151 -0.1572181 -0.19106523\n", + " -0.01483744 -0.0513315 -0.08752139 -0.12319735 -0.15815714 -0.19220433\n", + " -0.01490708 -0.05154747 -0.08788092 -0.1236965 -0.15879197 -0.19297207\n", + " -0.01494734 -0.05166195 -0.08806808 -0.12395417 -0.15911791 -0.19336467]\n", + " [ 0.20894107 0.18147259 0.15331081 0.12455987 0.09532558 0.06571725\n", + " 0.03584843 0.00583647 0.20894107 0.20879621 0.2083801 0.20769404\n", + " 0.20673975 0.20551876 0.20403188 0.20227886 0.00583647 0.00584019\n", + " 0.00583613 0.00582438 0.00580507 0.00577839 0.00574449 0.00570348\n", + " 0.20227886 0.17571613 0.1484622 0.12062809 0.09232414 0.06366093\n", + " 0.03474987 0.00570348 0.1970566 0.16291184 0.12782912 0.09200243\n", + " 0.05563309 0.01893178 0.2088187 0.20845876 0.20769278 0.20652378\n", + " 0.20495452 0.20298606 0.00594178 0.00594091 0.00592823 0.00590399\n", + " 0.0058685 0.00582205 0.19079562 0.1577603 0.12379719 0.08910965\n", + " 0.05390131 0.01837776 0.20884841 0.20884841 0.00580307 0.00580307\n", + " 0.19702878 0.19668974 0.19596793 0.19486681 0.19338978 0.1915385\n", + " 0.16288937 0.16260994 0.16201386 0.16110551 0.1598896 0.15836938\n", + " 0.12781212 0.12759366 0.12712576 0.126413 0.12546054 0.12427244\n", + " 0.09199108 0.09183551 0.0914995 0.09098698 0.09030259 0.0894502\n", + " 0.05562756 0.05553685 0.05533649 0.05502916 0.05461804 0.05410588\n", + " 0.0189322 0.01890777 0.01884587 0.01874743 0.01861357 0.01844527]\n", + " [ 0.97792668 0.98339442 0.98817641 0.99221045 0.99544448 0.9978366\n", + " 0.99935553 0.99998124 0.97792668 0.97747528 0.97622658 0.97419778\n", + " 0.97141706 0.96792357 0.96376753 0.95901043 0.99998124 0.99947469\n", + " 0.99807321 0.9957953 0.99267077 0.98874015 0.98405418 0.97867369\n", + " 0.95901043 0.96386513 0.96812423 0.97172479 0.97461514 0.97675467\n", + " 0.97811374 0.97867369 0.98039037 0.98663884 0.99179438 0.99575692\n", + " 0.99844939 0.99981886 0.97784833 0.97675721 0.97448427 0.97107683\n", + " 0.96660698 0.96117184 0.99987052 0.99864614 0.99609466 0.9922663\n", + " 0.98723559 0.98110013 0.96121331 0.96677192 0.97137201 0.97491378\n", + " 0.97732245 0.97854804 0.9779463 0.9779463 0.97869265 0.97869265\n", + " 0.98029105 0.9791848 0.97688011 0.97342435 0.96888961 0.96337283\n", + " 0.98653611 0.98539181 0.98300735 0.97943054 0.97473363 0.9690133\n", + " 0.99168887 0.99051358 0.98806435 0.98438962 0.97956221 0.97367882\n", + " 0.99564928 0.99445026 0.99195154 0.9882023 0.98327604 0.97726975\n", + " 0.9983403 0.99712513 0.99459279 0.9907931 0.98580017 0.97971135\n", + " 0.99970903 0.99848562 0.99593617 0.99211083 0.9870841 0.98095356]]\n", + " -0.195066 -0.19551916\n", + " -0.15638145 -0.15798254 -0.1592836 -0.16028164 -0.16097217 -0.16135064\n", + " -0.12234264 -0.1235961 -0.12461804 -0.12540495 -0.1259519 -0.1262541\n", + " -0.08758892 -0.08849133 -0.08922984 -0.08980108 -0.09020062 -0.09042422\n", + " -0.05232353 -0.0528708 -0.053321 -0.05367171 -0.05391982 -0.0540624\n", + " -0.016752 -0.01694088 -0.01709901 -0.01722548 -0DEBUG:root:radec2pix: lng: [224.17091663 219.87741809 214.97008665 209.39598188 203.1373574\n", + " 196.23634076 188.81644128 181.08669631 224.17091663 228.3555716\n", + " 233.16265584 238.65783928 244.87601329 251.7942959 259.30486084\n", + " 267.20296141 181.08669631 181.26291687 181.50503492 181.85849799\n", + " 182.42298774 183.46757199 186.05387592 202.53707914 267.20296141\n", + " 266.75372148 266.13046308 265.20807536 263.70434622 260.82362196\n", + " 253.17669924 202.53707914 222.38348083 216.71601144 210.07066421\n", + " 202.39896016 193.78096287 184.48069147 225.9100405 231.44842444\n", + " 237.98973756 245.61222365 254.27065244 263.72553361 181.18560606\n", + " 181.44802269 181.85460599 182.56904059 184.15297918 190.61463228\n", + " 266.99438373 266.33112836 265.28794249 263.40934603 259.04191913\n", + " 238.94596845 224.17054014 224.17054014 202.81670057 202.81670057\n", + " 224.11986404 229.69237658 236.35966367 244.23925438 253.312778\n", + " 263.32641007 218.39761245 223.93365474 230.85002743 239.44337044\n", + " 249.86289594 261.85943825 211.60273873 216.79700073 223.64273186\n", + " 232.75457852 244.72618682 259.56986466 203.65258863 208.03632189\n", + " 214.17758593 223.12426077 236.4587659 255.51668541 194.60966243\n", + " 197.58758667 202.01156736 209.14892478 221.94021993 246.56988658\n", + " 184.76194605 185.78921163 187.37371211 190.13104958 196.0740482\n", + " 216.53792504]\n", + "ec: [[-0.20650899 -0.20112017 0.95755142]\n", + " [-0.20834684 -0.17462343 0.96233999]\n", + " [-0.209912 -0.14743759 0.96653976]\n", + " [-0.2112049 -0.11967398 0.97008795]\n", + " [-0.21222492 -0.09144325 0.97293305]\n", + " [-0.21297066 -0.06285614 0.97503467]\n", + " [-0.21344048 -0.0340241 0.97636342]\n", + " [-0.21363303 -0.00505944 0.97690088]\n", + " [-0.20650899 -0.20112017 0.95755142]\n", + " [-0.18010636 -0.20295163 0.96248238]\n", + " [-0.15299311 -0.20451753 0.96683281]\n", + " [-0.12528058 -0.20581845 0.97053776]\n", + " [-0.09707928 -0.20685386 0.97354358]\n", + " [-0.06849975 -0.20762236 0.97580774]\n", + " [-0.03965325 -0.2081222 0.97729871]\n", + " [-0.01065205 -0.20835189 0.97799592]\n", + " [-0.21363303 -0.00505944 0.97690088]\n", + " [-0.1862962 -0.0050993 0.98248039]\n", + " [-DEBUG:root:radec2pix: camVec Shape: (3, 96)\n", + ".01731915 -0.01737894]\n", + " [ 0.95783851 0.96261448 0.96679818 0.97032784 0.97315256 0.9752324\n", + " 0.97653835 0.97705233 0.95783851 0.96276195 0.96710159 0.97079344\n", + " 0.97378441 0.97603235 0.97750603 0.97818516 0.97705233 0.98261483\n", + " 0.98750199 0.99165011 0.99500566 0.99752533 0.99917635 0.99993704\n", + " 0.97818516 0.98361591 0.98835782 0.99234925 0.99553873 0.99788504\n", + " 0.9993576 0.99993704 0.96000729 0.96547149 0.96998338 0.97344474\n", + " 0.97578203 0.97694639 0.96006992 0.96572084 0.97042996 0.97409503\n", + " 0.97663845 0.97800724 0.97955572 0.98592753 0.99122053 0.99533197\n", + " 0.99818215 0.99971531 0.98063234 0.98683331 0.99193725 0.99584519\n", + " 0.9984813 0.99979391 0.95787352 0.95787352 0.99993552 0.99993552\n", + " 0.9622374 0.96797276 0.97274994 0.9764667 0.97904541 0.98043302\n", + " 0.96778572 0.97373181 0.978679 0.98252511 0.98519233 0.98662722\n", + " 0.97236485 0.97847957 0.98356321 0.98751357 0.9902524 0.99172566\n", + " 0.9758766 0.9821179 0.98730436 0.99133364 0.9941269 0.9956294\n", + " 0.9782474 0.98457302 0.98982824 0.99391049 0.99674043 0.99826267\n", + " 0.97942831 0.98579563 0.99108495 0.99519355 0.99804176 0.99957386]]\n", + "DEBUG:root:mm_to_pix: fitpx: [[0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]]\n", + "]\n", + " [32.21058351 8.13492254]\n", + " [32.20878509 2.75892284]\n", + " [30.32091205 31.53705599]\n", + " [24.94491236 31.53885442]\n", + " [19.56891265 31.54065283]\n", + " [14.19291295 31.54245125]\n", + " [ 8.81691325 31.54424967]\n", + " [ 3.44091356 31.54604808]\n", + " [30.31065043 0.86205771]\n", + " [24.93465073 0.86385613]\n", + " [19.55865103 0.86565455]\n", + " [14.18265134 0.86745297]\n", + " [ 8.80665163 0.86925139]\n", + " [ 3.43065193 0.8710498 ]\n", + " [ 1.5427789 29.64918296]\n", + " [ 1.54098048 24.27318326]\n", + " [ 1.53918206 18.89718357]\n", + " [ 1.53738364 13.52118387]\n", + " [ 1.53558522 8.14518416]\n", + " [ 1.5337868 2.76918446]\n", + " [32.21841195 31.53642123]\n", + " [32.21841195 31.53642123]\n", + " [ 1.53315204 0.87168457]\n", + " [ 1.53315204 0.87168457]\n", + " [30.32027729 29.6395561 ]\n", + " [24.94427759 29.64135452]\n", + " [19.56827789 29.64315294]\n", + " [14.19227819 29.64495136]\n", + " [ 8.81627849 29.64674978]\n", + " [ 3.44027879 29.6485482 ]\n", + " [30.31847887 24.2635564 ]\n", + " [24.94247917 24DEBUG:root:mm_to_pix: fitpx.shape: (96, 2)\n", + "DEBUG:root:radec2pix: fitpx: [[-5.00000135e-01 -5.00000132e-01]\n", + " [-5.00000144e-01 2.91928571e+02]\n", + " [-4.99999914e-01 5.84357143e+02]\n", + " [-4.99999810e-01 8.76785714e+02]\n", + " [-5.00000028e-01 1.16921429e+03]\n", + " [-5.00000159e-01 1.46164286e+03]\n", + " [-4.99999755e-01 1.75407143e+03]\n", + " [-4.99999923e-01 2.04650000e+03]\n", + " [-5.00000135e-01 -5.00000132e-01]\n", + " [ 2.91928572e+02 -4.99999845e-01]\n", + " [ 5.84357143e+02 -5.00000146e-01]\n", + " [ 8.76785714e+02 -4.99999843e-01]\n", + " [ 1.16921429e+03 -4.99999832e-01]\n", + " [ 1.46164286e+03 -5.00000031e-01]\n", + " [ 1.75407143e+03 -5.00000120e-01]\n", + " [ 2.04650000e+03 -4.99999883e-01]\n", + " [-4.99999923e-01 2.04650000e+03]\n", + " [ 2.91928572e+02 2.04650000e+03]\n", + " [ 5.84357143e+02 2.04650000e+03]\n", + " [ 8.76785714e+02 2.04650000e+03]\n", + " [ 1.16921429e+03 2.04650000e+03]\n", + " [ 1.46164286e+03 2.04650000e+03]\n", + " [ 1.75407143e+03 2.04650000e+03]\n", + " [ 2.04650000e+03 2.04650000e+03]\n", + " [ 2.04650000e+03 -4.99999883e-01]\n", + " [ 2.04650000e+03 2.91928571e+02]\n", + " [ 2.04650000e+03 DEBUG:root:radec2pix: lat: [73.30319327 74.28364829 75.19434757 76.00760673 76.6934474 77.22149469\n", + " 77.56431546 77.70181842 73.30319327 74.31487163 75.26252869 76.11836609\n", + " 76.85166299 77.43039612 77.8244634 78.01035447 77.70181842 79.30062777\n", + " 80.93200296 82.59063863 84.2712796 85.96832552 87.67438557 89.35703566\n", + " 78.01035447 79.61411514 81.24861046 82.90802789 84.58587071 86.27294722\n", + " 87.94616945 89.35703566 73.74128804 74.89975016 75.92621516 76.76637844\n", + " 77.36466213 77.67335289 73.7541097 74.95468773 76.03182731 76.93013306\n", + " 77.59097642 77.96138218 78.39443735 80.37649363 82.40216048 84.46173597\n", + " 86.54472647 88.63280521 78.70517127 80.69206097 82.71932817 84.7752745\n", + " 86.84188191 88.83673743 73.31017726 73.31017726 89.34933673 89.34933673\n", + " 74.20408349 75.46003419 76.59358943 77.54526674 78.24998117 78.64701061\n", + " 75.41740928 76.83842002 78.14733268 79.2729755 80.12769991 80.61933545\n", + " 76.49875662 78.09183026 79.59737911 80.93621381 81.99355302 82.62428133\n", + " 77.38945666 79.14833894 80.86043698 82.45133489 83.78724838 84.64121324\n", + " 78.02753384 79.92284226 81.82091734 83.6737055 85.37260957 86.62213831\n", + " 78.35820379 80.33138971 82.34363217 84.38015735 86.41373806 88.32724747]\n", + " 5.84357143e+02]\n", + " [ 2.04650000e+03 8.76785714e+02]\n", + " [ 2.04650000e+03 1.16921429e+03]\n", + " [ 2.04650000e+03 1.46164286e+03]\n", + " [ 2.04650000e+03 1.75407143e+03]\n", + " [ 2.04650000e+03 2.04650000e+03]\n", + " [ 4.99999783e-01 1.27000000e+02]\n", + " [ 5.00000221e-01 4.85400000e+02]\n", + " [ 5.00000070e-01 8.43800000e+02]\n", + " [ 4.99999908e-01 1.20220000e+03]\n", + " [ 5.00000086e-01 1.56060000e+03]\n", + " [ 5.00000004e-01 1.91900000e+03]\n", + " [ 1.27000000e+02 5.00000120e-01]\n", + " [ 4.85400000e+02 4.99999839e-01]\n", + " [ 8.43800000e+02 4.99999975e-01]\n", + " [ 1.20220000e+03 5.00000060e-01]\n", + " [ 1.56060000e+03 5.00000260e-01]\n", + " [ 1.91900000e+03 4.99999701e-01]\n", + " [ 1.27000000e+02 2.04550000e+03]\n", + " [ 4.85400000e+02 2.04550000e+03]\n", + " [ 8.43800000e+02 2.04550000e+03]\n", + " [ 1.20220000e+03 2.04550000e+03]\n", + " [ 1.56060000e+03 2.04550000e+03]\n", + " [ 1.91900000e+03 DEBUG:root:radec2pix: camVec Shape: (3, 96)\n", + "0.15824793 -0.00513287 0.98738607]\n", + " [-0.12959237 -0.00516008 0.99155393]\n", + " [-0.10043485 -0.00518078 0.99493015]\n", + " [-0.07088401 -0.00519482 0.99747104]\n", + " [-0.04105265 -0.00520206 0.99914344]\n", + " [-0.01105755 -0.00520239 0.99992533]\n", + " [-0.01065205 -0.20835189 0.97799592]\n", + " [-0.01075054 -0.18087002 0.98344825]\n", + " [-0.01083605 -0.15269708 0.98821363]\n", + " [-0.01090831 -0.12393724 0.9922301 ]\n", + " [-0.01096697 -0.09469638 0.99544579]\n", + " [-0.01101162 -0.06508391 0.99781904]\n", + " [-0.0110419 -0.03521344 0.99931881]\n", + " [-0.01105755 -0.00520239 0.99992533]\n", + " [-0.20725456 -0.18966571 0.9597252 ]\n", + " [-0.20932255 -0.15671259 0.96520735]\n", + " [-0.21098167 -0.12283514 0.96974134]\n", + " [-0.21223121 -0.0882373 0.97322767]\n", + " [-0.21306867 -0.053123 0.97559197]\n", + " [-0.2134911 -0.01769778 0.97678469]\n", + " [-0.19509826 -0.20186172 0.95978566]\n", + " [-0.16224603 -0.20392662 0.96544816]\n", + " [-0.12843717 -0.20559352 0.97017277]\n", + " [-0.09387541 -0.20686189 0.97385603]\n", + " [-0.05876435 -0.20772922 0.97641964]\n", + " [-0.02330924 -0.20819238 0.97781011]\n", + " [-0.20180806 -0.00517714 0.97941141]\n", + " [-0.16781243 -0.00522278 0.98580511]\n", + " [-0.13285166 -0.00525872 0.99112198]\n", + " [-0.09711907 -0.00528472 0.99525874]\n", + " [-0.06081473 -0.0053005 0.998135 ]\n", + " [-0.02414801 -0.00530579 0.99969431]\n", + " [-0.01079628 -0.19646103 0.98045219]\n", + " [-0.01090926 -0.1623014 0.98668092]\n", + " [-0.01100231 -0.12720719 0.99181514]\n", + " [-0.01107479 -0.09137251 0.9957552 ]\n", + " [-0.01112598 -0.05499882 0.99842443]\n", + " [-0.01115523 -0.01829695 0.99977036]\n", + " [-0.20642679 -0.20103758 0.95758648]\n", + " [-0.20642679 -0.20103758 0.95758648]\n", + " [-0.01116024 -0.00530513 0.99992365]\n", + " [-0.01116024 -0.00530513 0.99992365]\n", + " [-0.19587779 -0.19044022 0.96195864]\n", + " [-0.16288944 -0.19238166 0.96770674]\n", + " [-0.12894461 -0.19395017 0.97250019]\n", + " [-0.09424616 -0.19514465 0.97623574]\n", + " [-0.05899718 -0.19596195 0.97883515]\n", + " [-0.02340304 -0.19639843 0.98024484]\n", + " [-0.19782623 -0.15734701 0.96752607]\n", + " [-0.16450046 -0.15893973 0.97348742]\n", + " [-0.13021766 -0.16022981 0.97845274]\n", + " [-0.09517804 -0.16121459 0.98231919]\n", + " [-0.05958347 -0.16188952 0.98500842]\n", + " [-0.0236399 -0.16224993 0.98646648]\n", + " [-0.19939086 -0.12332956 0.97212813]\n", + " [-0.16579789 -0.12457282 0.97826002]\n", + " [-0.13124607 -0.12558234 0.98336338]\n", + " [-0.09593306 -0.12635458 0.98733549]\n", + " [-0.06005988 -0.12688447 0.99009754]\n", + " [-0.02383341 -0.12716713 0.99159492]\n", + " [-0.20057035 -0.08859098 0.9756655 ]\n", + " [-0.16677881 -0.08948154 0.9819256 ]\n", + " [-0.13202594 -0.09020602 0.98713324]\n", + " [-0.09650734 -0.09076095 0.99118554]\n", + " [-0.06042346 -0.09114176 0.99400311]\n", + " [-0.02398226 -0.09134421 0.99553056]\n", + " [-0.20136156 -0.05333481 0.97806386]\n", + " [-0.16743861 -0.05386844 0.98440972]\n", + " [-0.13255205 -0.05430277 0.98968741]\n", + " [-0.09689601 -0.0546353 0.99379381]\n", + " [-0.0606707 -0.05486289 0.99664895]\n", + " [-0.02408492 -0.05498267 0.99819679]\n", + " [-0.20176105 -0.01776673 0.97927362]\n", + " [-0.16777281 -0.01794001 0.98566244]\n", + " [-0.13281959 -0.01808024 0.99097531]\n", + " [-0.09709479 -0.01818657 0.99510896]\n", + " [-0.06079851 -0.01825788 0.99798306]\n", + " [-0.02414006 -0.01829321 0.9995412 ]]\n", + ".26535482]\n", + " [19.56647947 24.26715324]\n", + " [14.19047977 24.26895166]\n", + " [ 8.81448007 24.27075007]\n", + " [ 3.43848037 24.2725485 ]\n", + " [30.31668045 18.8875567 ]\n", + " [24.94068075 18.88935513]\n", + " [19.56468105 18.89115354]\n", + " [14.18868135 18.89295196]\n", + " [ 8.81268165 18.89475038]\n", + " [ 3.43668195 18.89654879]\n", + " [30.31488203 13.51155701]\n", + " [24.93888233 13.51335542]\n", + " [19.56288263 13.51515384]\n", + " [14.18688293 13.51695226]\n", + " [ 8.81088324 13.51875068]\n", + " [ 3.43488354 13.5205491 ]\n", + " [30.31308361 8.13555731]\n", + " [24.93708392 8.13735572]\n", + " [19.56108422 8.13915414]\n", + " [14.18508451 8.14095256]\n", + " [ 8.80908482 8.14275098]\n", + " [ 3.43308512 8.1445494 ]\n", + " [30.31128519 2.75955761]\n", + " [24.93528549 2.76135602]\n", + " [19.5592858 2.76315444]\n", + " [14.18328609 2.76495286]\n", + " [ 8.8072864 2.76675128]\n", + " [ 3.4312867 2.7685497 ]]\n", + "DEBUG:root:cartToSphere: vec: [[-0.20605921 -0.20169937 0.95752648]\n", + " [-0.20787315 -0.17519485 0.96233857]\n", + " [-0.20942436 -0.1480085 0.96655829]\n", + " [-0.21070676 -0.12024402 0.97012578]\n", + " [-0.21171698 -0.09200964 0.97299031]\n", + " [-0.21245291 -0.06341581 0.97511138]\n", + " [-0.21291301 -0.03457423 0.97645925]\n", + " [-0.2130962 -0.00559748 0.97701519]\n", + " [-0.20605921 -0.20169937 0.95752648]\n", + " [-0.17962884 -0.20353396 0.96244865]\n", + " [-0.15250018 -0.20511207 0.96678474]\n", + " [-0.12477652 -0.20642749 0.97047334]\n", + " [-0.0965659 -0.20747679 0.97346207]\n", + " [-0.06797863 -0.20825778 0.97570877]\n", + " [-0.03912632 -0.20876879 0.97718203]\n", + " [-0.01012153 -0.20900854 0.97786143]\n", + " [-0.2130962 -0.00559748 0.97701519]\n", + " [-0.18573503 -0.00565735 0.98258358]\n", + " [-0.15766321 -0.00571045 0.98747643]\n", + " [-0.1289874 -0.00575671 0.99162952]\n", + " [-0.09981355 -0.00579596 0.99498928]\n", + " [-0.07024926 -0.00582797 0.99751244]\n", + " [-0.04040619 -0.00585246 0.9991662 ]\n", + " [-0.01040084 -0.00586919 0.99992869]\n", + " [-0.01012153 -0.20900854 0.97786143]\n", + " [-0.01020027 -0.18153487 0.98333161]\n", + " [-0.01026637 -0.15336672 0.98811601]\n", + " [-0.01031977 -0.12461057 0.99215206]\n", + " [-0.01036027 -0.09537244 0.99538774]\n", + " [-0.01038751 -0.06576046 0.99778137]\n", + " [-0.01040113 -0.03588698 0.99930173]\n", + " [-0.01040084 -0.00586919 0.99992869]\n", + " [-0.20679239 -0.1902398 0.95971127]\n", + " [-0.20883895 -0.15728353 0.96521924]\n", + " [-0.21048459 -0.12340547 0.96977695]\n", + " [-0.2117221 -0.08880315 0.97328709]\n", + " [-0.21254753 -0.0536798 0.97567516]\n", + " [-0.21295821 -0.01824146 0.97689101]\n", + " [-0.1946339 -0.20244048 0.95975804]\n", + " [-0.16175754 -0.20451655 0.96540534]\n", + " [-0.12793421 -0.20620095 0.97011031]\n", + " [-0.09336102 -0.20748634 0.97377263]\n", + " [-0.05824097 -0.2083686 0.97631476]\n", + " [-0.02277993 -0.2088448 0.97768345]\n", + " [-0.20126076 -0.00572401 0.97952098]\n", + " [-0.16723544 -0.00579384 0.98589996]\n", + " [-0.13224882 -0.00585326 0.99119927]\n", + " [-0.09649617 -0.00590199 0.99531586]\n", + " [-0.06017591 -0.0059396 0.99817012]\n", + " [-0.02349561 -0.00596558 0.99970614]\n", + " [-0.01025713 -0.19712185 0.98032534]\n", + " [-0.01034611 -0.16296958 0.98657685]\n", + " [-0.01041588 -0.1278801 0.99173494]\n", + " [-0.01046611 -0.09204872 0.9956995 ]\n", + " [-0.01049618 -0.05567473 0.99839379]\n", + " [-0.01050541 -0.01896706 0.99976492]\n", + " [-0.20597676 -0.2016167 0.95756163]\n", + " [-0.20597676 -0.2016167 0.95756163]\n", + " [-0.01050361 -0.0059719 0.999927 ]\n", + " [-0.01050361 -0.0059719 0.999927 ]\n", + " [-0.19540403 -0.19101701 0.96194063]\n", + " [-0.16239488 -0.19297429 0.96767186]\n", + " [-0.12843557 -0.19456158 0.97244542]\n", + " [-0.09372478 -0.19577312 0.97616011]\n", + " [-0.05846599 -0.19660523 0.97873802]\n", + " [-0.02286533 -0.1970549 0.98012578]\n", + " [-0.19733483 -0.15792497 0.96753226]\n", + " [-0.16399068 -0.15953875 0.97347545]\n", + " [-0.1296908 -0.16084786 0.97842131]\n", + " [-0.094636 -0.1618491 0.98226722]\n", + " [-0.05902974 -0.16253892 0.98493482]\n", + " [-0.02307851 -0.16291334 0.98637043]\n", + " [-0.19888634 -0.12390793 0.97215793]\n", + " [-0.16527244 -0.1251726 0.97827237]\n", + " [-0.13070023 -0.12620079 0.98335691]\n", + " [-0.09537003 -0.12699006 0.9873085 ]\n", + " [-0.05948408 -0.12753631 0.99004855]\n", + " [-0.02324907 -0.1278347 0.99152295]\n", + " [-0.20005292 -0.089165 0.97571944]\n", + " [-0.16623701 -0.090077 0.98196303]\n", + " [-0.13146138 -0.09082101 0.98715219]\n", + " [-0.09592455 -0.09139481 0.99118387]\n", + " [-0.05982716 -0.09179425 0.99397914]\n", + " [-0.0233762 -0.09201449 0.99548324]\n", + " [-0.20083104 -0.05389991 0.97814196]\n", + " [-0.16688094 -0.05445583 0.9844721 ]\n", + " [-0.13197015 -0.05491134 0.98973159]\n", + " [-0.09629527 -0.05526476 0.9938174 ]\n", + " [-0.0600556 -0.0555129 0.99665021]\n", + " [-0.02345845 -0.05565213 0.9981746 ]\n", + " [-0.20121796 -0.018319 0.97937518]\n", + " [-0.16720058 -0.01851594 0.98574902]\n", + " [-0.13222195 -0.01867909 0.99104412]\n", + " [-0.09647752 -0.01880776 0.99515745]\n", + " [-0.06016577 -0.01890068 0.99800944]\n", + " [-0.02349426 -0.01895646 0.99954423]]\n", + " 2.04550000e+03]\n", + " [ 2.04550000e+03 1.27000000e+02]\n", + " [ 2.04550000e+03 4.85400000e+02]\n", + " [ 2.04550000e+03 8.43800000e+02]\n", + " [ 2.04550000e+03 1.20220000e+03]\n", + " [ 2.04550000e+03 1.56060000e+03]\n", + " [ 2.04550000e+03 1.91900000e+03]\n", + " [ 4.99999741e-01 4.99999746e-01]\n", + " [ 4.99999741e-01 4.99999746e-01]\n", + " [ 2.04550000e+03 2.04550000e+03]\n", + " [ 2.04550000e+03 2.04550000e+03]\n", + " [ 1.27000000e+02 1.27000000e+02]\n", + " [ 4.85400000e+02 1.27000000e+02]\n", + " [ 8.43800000e+02 1.27000000e+02]\n", + " [ 1.20220000e+03 1.27000000e+02]\n", + " [ 1.56060000e+03 1.27000000e+02]\n", + " [ 1.91900000e+03 1.27000000e+02]\n", + " [ 1.27000000e+02 4.85400000e+02]\n", + " [ 4.85400000e+02 4.85400000e+02]\n", + " [ 8.43800000e+02 4.85400000e+02]\n", + " [ 1.20220000e+03 4.85400000e+02]\n", + " [ 1.56060000e+03 4.85400000e+02]\n", + " [ 1.91900000e+03 4.85400000e+02]\n", + " [ 1.27000000e+02 8.43800000e+02]\n", + " [ 4.85400000e+02 8.43800000e+02]\n", + " [ 8.43800000e+02 8.43800000e+02]\n", + " [ 1.20220000e+03 8.43800000e+02]\n", + " [ 1.56060000e+03 8.43800000e+02]\n", + " [ 1.91900000e+03 8.43800000e+02]\n", + " [ 1.27000000e+02 1.20220000e+03]\n", + " [ 4.85400000e+02 1.20220000e+03]\n", + " [ 8.43800000e+02 1.20220000e+03]\n", + " [ 1.20220000e+03 1.20220000e+03]\n", + " [ 1.56060000e+03 1.20220000e+03]\n", + " [ 1.91900000e+03 1.20220000e+03]\n", + " [ 1.27000000e+02 1.56060000e+03]\n", + " [ 4.85400000e+02 1.56060000e+03]\n", + " [ 8.43800000e+02 1.56060000e+03]\n", + " [ 1.20220000e+03 1.56060000e+03]\n", + " [ 1.56060000e+03 1.56060000e+03]\n", + " [ 1.91900000e+03 1.56060000e+03]\n", + " [ 1.27000000e+02 1.91900000e+03]\n", + " [ 4.85400000e+02 1.91900000e+03]\n", + " [ 8.43800000e+02 1.91900000e+03]\n", + " [ 1.20220000e+03 1.91900000e+03]\n", + " [ 1.56060000e+03 1.91900000e+03]\n", + " [ 1.91900000e+03 1.91900000e+03]]\n", + "DEBUG:root:radec2pix: xyfp: [[ -0.172993 31.426621 ]\n", + " [ -0.172993 27.04019243]\n", + " [ -0.172993 22.65376385]\n", + " [ -0.172993 18.26733528]\n", + " [ -0.172993 13.88090671]\n", + " [ -0.172993 9.49447814]\n", + " [ -0.172993 5.10804957]\n", + " [ -0.172993 0.721621 ]\n", + " [ -0.172993 31.426621 ]\n", + " [ -4.55942157 31.426621 ]\n", + " [ -8.94585014 31.426621 ]\n", + " [-13.33227871 31.426621 ]\n", + " [-17.71870729 31.426621 ]\n", + " [-22.10513586 31.426621 ]\n", + " [-26.49156443 31.426621 ]\n", + " [-30.877993 31.426621 ]\n", + " [ -0.172993 0.721621 ]\n", + " [ -4.55942157 0.721621 ]\n", + " [ -8.94585014 0.721621 ]\n", + " [-13.33227872 0.721621 ]\n", + " [-17.71870728 0.721621 ]\n", + " [-22.10513586 0.721621 ]\n", + " [-26.49156443 0.721621 ]\n", + " [-30.877993 0.721621 ]\n", + " [-30.877993 31.426621 ]\n", + " [-30.877993 27.04019243]\n", + " [-30.877993 22.65376385]\n", + " [-30.877993 18.26733529]\n", + " [-30.877993 13.88090671]\n", + " [-30.877993 9.49447814]\n", + " [-30.877993 5.10804957]\n", + " [-30.877993 0.721621 ]\n", + " [ -0.187993 29.514121 ]\n", + " [ -0.187993 24.138121 ]\n", + " [ -0.187993 18.76212101]\n", + " [ -0.187993 13.386121 ]\n", + " [ -0.187993 8.010121 ]\n", + " [ -0.187993 2.634121 ]\n", + " [ -2.085493 31.411621 ]\n", + " [ -7.461493 31.411621 ]\n", + " [-12.837493 31.411621 ]\n", + " [-18.213493 31.411621 ]\n", + " [-23.589493 31.411621 ]\n", + " [-28.965493 31.411621 ]\n", + " [ -2.085493 0.736621 ]\n", + " [ -7.461493 0.736621 ]\n", + " [-12.837493 0.736621 ]\n", + " [-18.213493 0.736621 ]\n", + " [-23.58949299 0.736621 ]\n", + " [-28.965493 0.736621 ]\n", + " [-30.862993 29.514121 ]\n", + " [-30.862993 24.138121 ]\n", + " [-30.862993 18.762121 ]\n", + " [-30.862993 13.386121 ]\n", + " [-30.862993 8.010121 ]\n", + " [-30.862993 2.634121 ]\n", + " [ -0.187993 31.411621 ]\n", + " [ -0.187993 31.411621 ]\n", + " [-30.862993 0.736621 ]\n", + " [-30.862993 0.736621 ]\n", + " [ -2.085493 29.514121 ]\n", + " [ -7.461493 29.514121 ]\n", + " [-12.837493 29.514121 ]\n", + " [-18.213493 29.514121 ]\n", + " [-23.589493 29.514121 ]\n", + " [-28.965493 29.514121 ]\n", + " [ -2.085493 24.138121 ]\n", + " [ -7.461493 24.138121 ]\n", + " [-12.837493 24.138121 ]\n", + " [-18.213493 24.138121 ]\n", + " [-23.589493 24.138121 ]\n", + " [-28.965493 24.138121 ]\n", + " [ -2.085493 18.762121 ]\n", + " [ -7.461493 18.762121 ]\n", + " [-12.837493 18.762121 ]\n", + " [-18.213493 18.762121 ]\n", + " [-23.589493 18.762121 ]\n", + " [-28.965493 18.762121 ]\n", + " [ -2.085493 13.386121 ]\n", + " [ -7.461493 13.386121 ]\n", + " [-12.837493 13.386121 ]\n", + " [-18.213493 13.386121 ]\n", + " [-23.589493 13.386121 ]\n", + " [-28.965493 13.386121 ]\n", + " [ -2.085493 8.010121 ]\n", + " [ -7.461493 8.010121 ]\n", + " [-12.837493 8.010121 ]\n", + " [-18.213493 8.010121 ]\n", + " [-23.589493 8.010121 ]\n", + " [-28.965493 8.010121 ]\n", + " [ -2.085493 2.634121 ]\n", + " [ -7.461493 2.634121 ]\n", + " [-12.837493 2.634121 ]\n", + " [-18.213493 2.634121 ]\n", + " [-23.589493 2.634121 ]\n", + " [-28.965493 2.634121 ]]\n", + "DEBUG:root:radec2pix: lng: [224.24259986 219.96765614 215.08336296 209.53697562 203.3101935\n", + " 196.44343401 189.05719479 181.35667342 224.24259986 228.41303103\n", + " 233.20099698 238.67135193 244.85870857 251.7410006 259.21279966\n", + " 267.07328529 181.35667342 181.56790868 181.85777415 182.28018564\n", + " 182.95289983 184.19149998 187.22184671 205.19617552 267.07328529\n", + " 266.59845953 265.94084811 264.97008557 263.3938965 260.39700292\n", + " 252.59010355 205.19617552 222.46269399 216.82093439 210.20829157\n", + " 202.57559903 193.99974981 184.73881406 225.97611965 231.49389572\n", + " 238.00639827 245.59111124 254.20436521 263.6117634 181.46953067\n", + " 181.78262482 182.26677669 183.11467024 184.98120654 192.39209935\n", + " 266.85454344 266.15458823 265.05671864 263.08918181 258.56369308\n", + " 238.630299 224.24223838 224.24223838 205.42453452 205.42453452\n", + " 224.19359423 229.74542917 236.38270094 244.22153031 253.24481767\n", + " 263.2046196 218.49803362 224.01504295 230.8994DEBUG:root:radec2pix: lng: [224.38740491 220.12408621 215.2503637 209.71210534 203.48918374\n", + " 196.62002098 189.22355762 181.5046646 224.38740491 228.56999572\n", + " 233.3693139 238.84884696 245.04132431 251.92249978 259.38507008\n", + " 267.22753799 181.5046646 181.74464663 182.07430544 182.55541483\n", + " 183.32331288 184.74247093 188.24144189 209.436015 267.22753799\n", + " 266.78398778 266.170335 265.26578644 263.80029466 261.02373287\n", + " 253.83681058 209.436015 222.61267508 216.98461546 210.38276245\n", + " 202.75476399 194.17390418 184.89586052 226.12630502 231.65859743\n", + " 238.18310357 245.77405246 254.38382437 263.77502084 181.62909594\n", + " 181.98420755 182.53422407 183.50001953 185.63706132 194.24647314\n", + " 267.02133208 266.36745836 265.3435183 263.51322198 259.32352397\n", + " 241.01895217 224.38712569 224.38712569 209.62070535 209.62070535\n", + " 224.34955164 229.91816922 236.57007702 244.41761198 253.43870278\n", + " 263.38126527 218.66991645 224.21163124 231.12094806 239.6844282\n", + " 250.04034734 261.9370562 211.92326671 217.139242DEBUG:root:fitpix2pix: ccdpx: shape: (96, 2)\n", + "DEBUG:root:optics_fp: rtanth: [45.0829242 42.14007881 39.46623798 37.11957906 35.16566323 33.67292833\n", + " 32.70458448 32.30781794 45.0829242 42.05181002 39.27748601 36.81804721\n", + " 34.74043472 33.1165898 32.01563284 31.49245123 32.30781794 27.92274647\n", + " 23.53818074 19.15446803 14.77236778 10.39391962 6.02708817 1.76054813\n", + " 31.49245123 27.11255561 22.73517913 18.3621235 13.99743906 9.65248838\n", + " 5.37533955 1.76054813 43.75905359 40.32550839 37.35292806 34.95909888\n", + " 33.26918554 32.39354213 43.72230567 40.17242604 37.06494796 34.51955493\n", + " 32.6679006 31.63204924 30.39623387 25.02228675 19.64946278 14.27902981\n", + " 8.91530985 3.58853155 29.58337372 24.21709844 18.85636405 13.50776907\n", + " 8.19511667 3.10850472 45.06171287 45.06171287 1.78051042 1.78051042\n", + " 42.37849474 38.70556314 35.46980647 32.8008609 30.84620775 29.74698879\n", + " 38.82304306 34.77660814 31.13517347 28.05687673 25.74452154 24.41669917\n", + " 35.72566697 31.28109784 27.17523938 23.58565115 DEBUG:root:cartToSphere: vec: [[-0.20607518 -0.20019593 0.95783851]\n", + " [-0.20787446 -0.17367087 0.96261448]\n", + " [-0.20940354 -0.14646307 0.96679818]\n", + " [-0.21066179 -0.11868235 0.97032784]\n", + " [-0.21164814 -0.09043873 0.97315256]\n", + " [-0.21236112 -0.0618427 0.9752324 ]\n", + " [-0.21279916 -0.03300558 0.97653835]\n", + " [-0.21296107 -0.0040396 0.97705233]\n", + " [-0.20607518 -0.20019593 0.95783851]\n", + " [-0.17964954 -0.20202839 0.96276195]\n", + " [-0.15251864 -0.20359907 0.96710159]\n", + " [-0.12479221 -0.20490731 0.97079344]\n", + " [-0.09658011 -0.20595196 0.97378441]\n", + " [-0.06799262 -0.20673135 0.97603235]\n", + " [-0.03914089 -0.20724368 0.97750603]\n", + " [-0.01013708 -0.20748743 0.97818516]\n", + " [-0.21296107 -0.0040396 0.97705233]\n", + " [-0.18561075 -0.00409191 0.98261483]\n", + " [-0.15755214 -0.0041395 0.98750199]\n", + " [-0.12888979 -0.00418225 0.99165011]\n", + " [-0.09972928 -0.00421998 0.99500566]\n", + " [-0.07017922 -0.00425248 0.99752533]\n", + " [-0.04035219 -0.00427955 0.99917635]\n", + " [-0.01036463 -0.00430103 0.99993704]\n", + " [-0.01013708 -0.20748743 0.9781806 223.99660639\n", + " 233.09330633 244.99523074 259.69237756 204.0228705 208.45144372\n", + " 214.63892612 223.61475061 236.90559041 255.7456151 195.0232601\n", + " 198.0723045 202.59166286 209.85191686 222.74900651 247.14363581\n", + " 185.201902 186.31923819 188.04100537 191.03114261 197.43976942\n", + " 218.89848666]\n", + "DEBUG:root:fitpix2pix: visCut: True\n", + "DEBUG:root:make_az_asym: xyp: shape: (96, 2)\n", + "7742 239.44320338\n", + " 249.79385261 261.71030558 211.7381028 216.91949721 223.73668556\n", + " 232.79289096 244.66979293 259.38488067 203.8308227 208.21481457\n", + " 214.34263424 223.2424136 236.45716258 255.28910964 194.83531269\n", + " 197.83404909 202.27750364 209.41669409 222.12219565 246.34438586\n", + " 185.03238692 186.10346579 187.75181788 190.6089913 196.71508989\n", + " 217.15465227]\n", + "516]\n", + " [-0.01020871 -0.17998755 0.98361591]\n", + " [-0.01026764 -0.15180051 0.98835782]\n", + " [-0.01031373 -0.12303089 0.99234925]\n", + " [-0.01034674 -0.0937848 0.99553873]\n", + " [-0.01036638 -0.06417157 0.99788504]\n", + " [-0.0103724 -0.03430461 0.9993576 ]\n", + " [-0.01036463 -0.00430103 0.99993704]\n", + " [-0.20680345 -0.18872819 0.96000729]\n", + " [-0.20882603 -0.15574492 0.96547149]\n", + " [-0.21044235 -0.12184525 0.96998338]\n", + " [-0.21165063 -0.0872316 0.97344474]\n", + " [-0.2124482 -0.05210744 0.97578203]\n", + " [-0.2128323 -0.0166781 0.97694639]\n", + " [-0.19465346 -0.20093724 0.96006992]\n", + " [-0.16177694 -0.20300612 0.96572084]\n", + " [-0.12795009 -0.20468137 0.97042996]\n", + " [-0.0933751 -0.20596106 0.97409503]\n", + " [-0.05825505 -0.20684219 0.97663845]\n", + " [-0.022795 -0.20732153 0.97800724]\n", + " [-0.20112996 -0.00416252 0.97955572]\n", + " [-0.16711987 -0.00422448 0.98592753]\n", + " [-0.13214975 -0.00427905 0.99122053]\n", + " [-0.09641349 -0.00432591 0.99533197]\n", + " [-0.0601111 -0.00436469 0.99818215]\n", + " [-0.02345151 -0.00439503 0.99971531]\n", + " [-0.01026957 -0.19558822 0.98063234]\n", + " [-0.0103498 -0.16140908 0.98683331]\n", + " [-0.01041065 -0.12630166 0.99193725]\n", + " [-0.01045169 -0.09046055 0.99584519]\n", + " [-0.01047241 -0.05408714 0.9984813 ]\n", + " [-0.01047238 -0.0173918 0.99979391]\n", + " [-0.20599275 -0.20011322 0.95787352]\n", + " [-0.20599275 -0.20011322 0.95787352]\n", + " [-0.01046737 -0.00440367 0.99993552]\n", + " [-0.01046737 -0.00440367 0.99993552]\n", + " [-0.19541667 -0.18950334 0.9622374 ]\n", + " [-0.16240545 -0.19145029 0.96797276]\n", + " [-0.12844349 -0.19302803 0.97274994]\n", + " [-0.09373247 -0.19423441 0.9764667 ]\n", + " [-0.05847519 -0.195066 0.97904541]\n", + " [-0.02287686 -0.19551916 0.98043302]\n", + " [-0.19732118 -0.15638145 0.96778572]\n", + " [-0.16397526 -0.15798254 0.97373181]\n", + " [-0.12967711 -0.1592836 0.978679 ]\n", + " [-0.09462661 -0.16028164 0.98252511]\n", + " [-0.05902568 -0.16097217 0.98519233]\n", + " [-0.02308015 -0.16135064 0.98662722]\n", + " [-0.19884383 -0.12234264 0.97236485]\n", + " [-0.16523235 -0.1235961 0.97847957]\n", + " [-0.13066656 -0.12461804 0.98356321]\n", + " [-0.09534433 -0.12540495 0.98751357]\n", + " [-0.05946678 -0.1259519 0.9902524 ]\n", + " [-0.02324061 -0.1262541 0.99172566]\n", + " [-0.19998259 -0.08758892 0.9758766 ]\n", + " [-0.16617376 -0.08849133 0.9821179 ]\n", + " [-0.13140827 -0.08922984 0.98730436]\n", + " [-0.09588212 -0.08980108 0.99133364]\n", + " [-0.05979589 -0.09020062 0.9941269 ]\n", + " [-0.0233572 -0.09042422 0.9956294 ]\n", + " [-0.20073433 -0.05232353 0.9782474 ]\n", + " [-0.16679525 -0.0528708 0.98457302]\n", + " [-0.13189744 -0.053321 0.98982824]\n", + " [-0.09623556 -0.05367171 0.99391049]\n", + " [-0.06000982 -0.05391982 0.99674043]\n", + " [-0.02342863 -0.0540624 0.99826267]\n", + " [-0.20109591 -0.016752 0.97942831]\n", + " [-0.16709274 -0.01694088 0.98579563]\n", + " [-0.13212968 -0.01709901 0.99108495]\n", + " [-0.09640067 -0.01722548 0.99519355]\n", + " [-0.06010576 -0.01731915 0.99804176]\n", + " [-0.0234538 -0.01737894 0.99957386]]\n", + "20.78160237 19.11203303\n", + " 33.21476541 28.37964838 23.77795187 19.57499171 16.08640287 13.86243725\n", + " 31.43120667 26.26984115 21.21535074 16.36705265 11.9779994 8.76739863\n", + " 30.50284606 25.15168819 19.81398425 14.50459502 9.27228848 4.40115246]\n", + "DEBUG:root:radec2pix: curVec: [[-0.16948707 0.964489 0.20257122]\n", + " [-0.1428766 0.96876834 0.20266767]\n", + " [-0.11559497 0.97238006 0.20276788]\n", + " [-0.08775401 0.97527024 0.20284769]\n", + " [-0.05946535 0.97739472 0.20288773]\n", + " [-0.03084074 0.97871916 0.2028735 ]\n", + " [-0.00199236 0.97921918 0.20279505]\n", + " [ 0.02696709 0.97888055 0.2026466 ]\n", + " [-0.16948707 0.964489 0.20257122]\n", + " [-0.17135515 0.95829909 0.22869251]\n", + " [-0.17298199 0.95128302 0.25522118]\n", + " [-0.17436833 0.94342688 0.28203088]\n", + " [-0.17551408 0.93472674 0.30899956]\n", + " [-0.17641833 0.92518883 0.33600923]\n", + " [-0.17707961 0.91482966 0.3629456 ]\n", + " [-0.17749639 0.90367612 0.38969795]\n", + " [ 0.02696709 0.97888055 0.2026466 ]\n", + " [ 0.02689626 0.97284551 0.22988739]\n", + " [ 0.02680647 0.96590585 0.25750205]\n", + " [ 0.02669648 0.95804581 0.28536911]\n", + " [ 0.02656546 0.94925936 0.31337029]\n", + " [ 0.02641297 0.93955099 0.34138876]\n", + " [ 0.02623895 0.92893642 0.36930834]\n", + " [ 0.02604368 0.91744306 0.3970138 ]\n", + " [-0.17749639 0.90367612 0.38969795]\n", + " [-0.14989786 0.90781892 0.3916573 ]\n", + " [-0.12162572 0.91131023 0.39334571]\n", + " [-0.09278654 0.91409631 0.39473865]\n", + " [-0.06348787 0.9161327 0.39581583]\n", + " [-0.03384003 0.91738438 0.39656116]\n", + " [-0.00395704 0.91782612 0.39696291]\n", + " [ 0.02604368 0.91744306 0.3970138 ]\n", + " [-0.15798089 0.96641334 0.20270002]\n", + " [-0.12490045 0.97121666 0.20282523]\n", + " [-0.09092302 0.9749625 0.20293135]\n", + " [-0.05625419 0.97756549 0.20298073]\n", + " [-0.02109973 0.97896244 0.20294663]\n", + " [ 0.01433362 0.97911268 0.20281249]\n", + " [-0.17024116 0.96190624 0.21390261]\n", + " [-0.17236731 0.95376673 0.24620832]\n", + " [-0.17413209 0.94437126 0.27899988]\n", + " [-0.17553571 0.93370846 0.31205083]\n", + " [-0.17657651 0.9217898 0.3451439 ]\n", + " [-0.17725174 0.90864998 0.37807015]\n", + " [ 0.02683895 0.97636168 0.21447036]\n", + " [ 0.02673857 0.96835928 0.24812367]\n", + " [ 0.02660861 0.9589814 0.28221739]\n", + " [ 0.02644738 0.94821288 0.31653256]\n", + " [ 0.0262541 0.93606206 0.35085401]\n", + " [ 0.02602878 0.92256273 0.38496819]\n", + " [-0.16555201 0.90559827 0.39049238]\n", + " [-0.1312608 0.91024521 0.39271397]\n", + " [-0.0960637 0.91385908 0.39450392]\n", + " [-0.06015816 0.91635422 0.39582312]\n", + " [-0.02374743 0.91766616 0.39664201]\n", + " [ 0.01295713 0.91775275 0.3969408 ]\n", + " [-0.16940414 0.96448492 0DEBUG:root:radec2pix: lat: [73.24108038 74.22539246 75.14065481 75.95980834 76.6531185 77.19018187\n", + " 77.5432879 77.69182998 73.24108038 74.24861044 75.19133398 76.04212851\n", + " 76.77071823 77.34548632 77.73675519 77.92139244 77.69182998 79.29098794\n", + " 80.92271511 82.58149911 84.2618841 85.95783408 87.66008742 89.3157252\n", + " 77.92139244 79.52414159 81.15801466 82.81709844 84.49494889 86.18266378\n", + " 87.85870936 89.3157252 73.68081786 74.84436919 75.87765867 76.72697854\n", + " 77.33670031 77.65849826 73.69035695 74.88520803 75.9561532 76.84869716\n", + " 77.50496612 77.87275428 78.38454537 80.36704866 82.39295371 84.45217978\n", + " 86.53330534 88.61095022 78.61571107 80.60164359 82.62842612 84.684393\n", + " 86.75213987 88.75761015 73.24806584 73.24806584 89.30770045 89.30770045\n", + " 74.1417384 75.39152116 76.51854281 77.46407515 78.16380788 78.55793051\n", + " 75.35984123 76.77406669 78.07566348 79.19387762 80.04201199 80.52949342\n", + " 76.4480688 78.03443361 79.53211824 80.86193095 81.91012885 82.53435821\n", + " 77.34827857 79.10130772 80.80570953 82.38629346 83.70950064 84.55228195\n", + " 77.99844552 79.88985033 81.78208758 83.62548455 85.30897599 86.53756064\n", + " 78.34312947 80.31550148 82.32609465 84.35907996 86.38425999 88.27008044]\n", + "DEBUG:root:radec2pix: lat: [73.24603516 74.22569152 75.13651604 75.95087507 76.6389128 77.17037377\n", + " 77.51785702 77.66114392 73.24603516 74.25573072 75.20211387 76.05743745\n", + " 76.79113897 77.37139648 77.76826885 77.95827247 77.66114392 79.25921808\n", + " 80.88995617 82.54802878 84.22809839 85.92431704 87.62836983 89.29981459\n", + " 77.95827247 79.56096311 81.19447792 82.85294756 84.52972557 86.21521853\n", + " 87.88507254 89.29981459 73.68365855 74.84176377 75.86929863 76.71215801\n", + " 77.3149747 77.63003049 73.695993 74.89461964 75.97090871 76.86971486\n", + " 77.53277126 77.90734766 78.35340648 80.33462383 82.35957542 84.41843101\n", + " 86.50018709 88.58327287 78.6525924 80.63823128 82.66432935 84.71895211\n", + " 86.78327785 88.77209382 73.25300675 73.25300675 89.29197852 89.29197852\n", + " 74.14551493 75.39944683 76.53201019 77.48405712 7DEBUG:root:optics_fp: rtanth: [44.94272969 42.00239064 39.33235561 36.99120283 35.04490673 33.56223174\n", + " 32.60648436 32.22458311 44.94272969 41.90992612 39.13459306 36.67522804\n", + " 34.59927513 32.97921831 31.88462562 31.37054947 32.22458311 27.83912196\n", + " 23.45402264 19.06953475 14.68620592 10.30551524 5.93330899 1.63895634\n", + " 31.37054947 26.99005818 22.61186898 18.23763988 13.87111779 9.5229103\n", + " 5.23882082 1.63895634 43.61980801 40.19015843 37.22381993 34.83933779\n", + " 33.16246218 32.30357703 43.58131788 40.02977818 36.92204987 34.37870189\n", + " 32.5323727 31.50584319 30.31278547 24.93826049 19.56454604 14.19256282\n", + " 8.82547273 3.48595044 29.4611953 24.09404931 18.73198196 13.38109994\n", + " 8.0637011 2.9657153 44.92151855 44.92151855 1.65858428 1.65858428\n", + " 42.23832489 38.56329813 35.32679703 32.65945447 30.7099348 29.62031359\n", + " 38.68639649 34.63652908 30.99264061 27.91417471 25.60588368 24.28835443\n", + " 35.59496044 31.14567519 27.03530484 23.44280455 20.64037826 18.98125646\n", + " 33.09332103 28.25278341 23.64475409 19.43532283 15.94339684 13.72788346\n", + " 31.32311186 26.15701072 21.09606209 16.23887967 11.83897557 8.62694755\n", + " 30.41232527 25.05915804 19.71841847 14.40393713 9.16152467 4.26572571]\n", + "DEBUG:root:cartToSphere: vec: [[-0.00174024 0.20894107 0.97792668]\n", + " [-0.00176337 0.18147259 0.98339442]\n", + " [-0.00178449 0.15331081 0.98817641]\n", + " [-0.00180353 0.12455987 0.99221045]\n", + " [-0.00182039 0.09532558 0.99544448]\n", + " [-0.001835 0.06571725 0.9978366 ]\n", + " [-0.00184725 0.03584843 0.99935553]\n", + " [-0.00185707 0.00583647 0.99998124]\n", + " [-0.00174024 0.20894107 0.97792668]\n", + " [-0.0307605 0.20879621 0.97747528]\n", + " [-0.05966066 0.2083801 0.97622658]\n", + " [-0.08832819 0.20769404 0.97419778]\n", + " [-0.11665151 0.20673975 0.97141706]\n", + " [-0.14451993 0.20551876 0.96792357]\n", + " [-0.17182299 0.20403188 0.96376753]\n", + " [-0.19844965 0.20227886 0.95901043]\n", + " [-0.00185707 0.00583647 0.99998124]\n", + " [-0.03187835 0.00584019 0.99947469]\n", + " [-0.06177226 0.00583613 0.99807321]\n", + " [-0.09142104 0.00582438 0.99.20266 ]\n", + " [-0.16940414 0.96448492 0.20266 ]\n", + " [ 0.02594173 0.91748654 0.39691998]\n", + " [ 0.02594173 0.91748654 0.39691998]\n", + " [-0.15876818 0.9638447 0.21400013]\n", + " [-0.16077026 0.9557239 0.24646449]\n", + " [-0.16243594 0.94633263 0.27940851]\n", + " [-0.1637652 0.93565932 0.31260614]\n", + " [-0.16475595 0.92371528 0.34584038]\n", + " [-0.16540505 0.9105352 0.37890212]\n", + " [-0.12554691 0.96867277 0.2142686 ]\n", + " [-0.12719779 0.96059799 0.24712796]\n", + " [-0.12858281 0.95121667 0.28045199]\n", + " [-0.12970113 0.94051656 0.31401626]\n", + " [-0.1305496 0.92850843 0.34760451]\n", + " [-0.13112412 0.91522684 0.38100696]\n", + " [-0.09142857 0.97243785 0.2144888 ]\n", + " [-0.09272755 0.96439864 0.24766279]\n", + " [-0.09383032 0.95502438 0.28129044]\n", + " [-0.09473546 0.94430196 0.31514918]\n", + " [-0.09543936 0.93224141 0.34902332]\n", + " [-0.09593764 0.91887708 0.38270207]\n", + " [-0.05661834 0.97505446 0.21462331]\n", + " [-0.05756306 0.96704004 0.24803236]\n", + " [-0.05838002 0.95766959 0.28188779]\n", + " [-0.05906795 0.94692912 0.31596871]\n", + " [-0.05962363 0.9348279 0.35005973]\n", + " [-0.06004321 0.92140004 0.38394892]\n", + " [-0.02132172 0.97645921 0.21464576]\n", + " [-0.02190906 0.96845814 0.24821126]\n", + " [-0.02243603 0.95908762 0.28221899]\n", + " [-0.02290224 0.94833295 0.31644922]\n", + " [-0.02330577 0.93620278 0.35068675]\n", + " [-0.02364407 0.92273101 0.38471866]\n", + " [ 0.01425437 0.9766112 0.21453994]\n", + " [ 0.01402678 0.96861135 0.24818402]\n", + " [ 0.01379299 0.95923625 0.28226862]\n", + " [ 0.01355191 0.94847078 0.31657467]\n", + " [ 0.01330349 0.9363233 0.35088701]\n", + " [ 0.01304849 0.9228276 0.38499216]]\n", + "8.19096994 78.59236983\n", + " 75.35843946 76.77706596 78.08438262 79.20977154 80.06643025 80.56299799\n", + " 76.44078432 78.03102057 79.5341606 80.87167145 81.93009942 82.56616105\n", + " 77.33417557 79.08997119 80.79891427 82.38701631 83.72204901 84.58091077\n", + " 77.9769458 79.86951112 81.76439499 83.61332437 85.3080928 86.55866797\n", + " 78.31436404 80.28605679 82.29662619 84.33088528 86.36037199 88.26434016]\n", + "DEBUG:root:radec2pix: ccdpx: [[-4.45000000e+01 -4.99999902e-01]\n", + " [-4.45000000e+01 2.91928572e+02]\n", + " [-4.45000000e+01 5.84357143e+02]\n", + " [-4.45000000e+01 8.76785715e+02]\n", + " [-4.45000000e+01 1.16921429e+03]\n", + " [-4.45000000e+01 1.46164286e+03]\n", + " [-4.45000000e+01 1.75407143e+03]\n", + " [-4.45000001e+01 2.04650000e+03]\n", + " [-4.45000000e+01 -4.99999902e-01]\n", + " [ 2.47928571e+02 -4.99999902e-01]\n", + " [ 5.40357143e+02 -4.99999727e-01]\n", + " [ 8.32785714e+02 -5.00000071e-01]\n", + " [ 1.12521429e+03 -5.00000281e-01]\n", + " [ 1.41764286e+03 -4.99999968e-01]\n", + " [ 1.71007143e+03 -5.00000211e-01]\n", + " [ 2.00250000e+03 -5.00000200e-01]\n", + " [-4.45000001e+01 2.04650000e+03]\n", + " [ 2.47928571e+02 2.04650000e+03]\n", + " [ 5.40357143e+02 2.04650000e+03]\n", + " [ 8.32785714e+02 2.04650000e+03]\n", + " [ 1.12521429e+03 2.04650000e+03]\n", + " [ 1.41764286e+03 2.04650000e+03]\n", + " [ 1.71007143e+03 2.04650000e+03]\n", + " [ 2.00250000e+03 2.04650000e+03]\n", + " [ 2.00250000e+03 -5.00000200e-01]\n", + " [ 2.00250000e+03 2.91928571e+02]\n", + " [ 2.00250000e+03 5.84357143e+02]\n", + " [ 2.00250000e+03 8.76785714e+02]\n", + " [ 2.00250000e+03 1.16921429e+03]\n", + " [ 2.00250000e+03 1.46164286e+03]\n", + " [ 2.00250000e+03 1.75407143e+03]\n", + " [ 2.00250000e+03 2.04650000e+03]\n", + " [-4.35000000e+01 1.27000000e+02]\n", + " [-4.35000000e+01 4.85400000e+02]\n", + " [-4.35000000e+01 8.43800000e+02]\n", + " [-4.35000000e+01 1.20220000e+03]\n", + " [-4.35000000e+01 1.56060000e+03]\n", + " [-4.35000000e+01 1.91900000e+03]\n", + " [ 8.30000000e+01 5.00000088e-01]\n", + " [ 4.41400000e+02 5.00000229e-01]\n", + " [ 7.99800000e+02 4.99999876e-01]\n", + " [ 1.15820000e+03 5.00000139e-01]\n", + " [ 1.51660000e+03 5.00000172e-01]\n", + " [ 1.87500000e+03 4.99999925e-01]\n", + " [ 8.30000002e+01 2.04550000e+03]\n", + " [ 4.41400000e+02 2.04550000e+03]\n", + " [ 7.99800000e+02 2.04550000e+03]\n", + " [ 1.15820000e+03 2.04550000e+03]\n", + " [ 1.51660000e+03 2.04550000e+03]\n", + " [ 1.87500000e+03 2.04550000e+03]\n", + " [ 2.00150000e+03 1.27000000e+02]\n", + " [ 2.00150000e+03 4.85400000e+02]\n", + " [ 2.00150000e+03 8.43800000e+02]\n", + " [ 2.00150000e+03 1.20220000e+03]\n", + " [ 2.00150000e+03 1.56060000e+03]\n", + " [ 2.00150000e+03 1.91900000e+03]\n", + " [-4.35000000e+01 5.00000166e-01]\n", + " [-4.35000000e+01 5.00000166e-01]\n", + " [ 2.00150000e+03 2.04550000e+03]\n", + " [ 2.00150000e+03 2.04550000e+03]\n", + " [ 8.30000000e+01 1.27000000e+02]\n", + " [ 4.41400000e+02 1.27000000e+02]\n", + " [ 7.99800000e+02 1.27000000e+02]\n", + " [ 1.15820000e+03 1.27000000e+02]\n", + " [ 1.51660000e+03 1.27000000e+02]\n", + " [ 1.87500000e+03 1.27000000e+02]\n", + " [ 8.30000000e+01 4.85400000e+02]\n", + " [ 4.41400000e+02 4.85400000e+02]\n", + " [ 7.99800000e+02 4.85400000e+02]\n", + " [ 1.15820000e+03 4.85400000e+02]\n", + " [ 1.51660000e+03 4.85400000e+02]\n", + " [ 1.87500000e+03 4.85400000e+02]\n", + " [ 8.30000000e+01 8.43800000e+02]\n", + " [ 4.41400000e+02 8.43800000e+02]\n", + " [ 7.99800000e+02 8.43800000e+02]\n", + " [ 1.15820000e+03 8.43800000e+02]\n", + " [ 1.51660000e+03 8.43800000e+02]\n", + " [ 1.87500000e+03 8.43800000e+02]\n", + " [ 8.30000000e+01 1.20220000e+03]\n", + " [ 4.41400000e+02 1.20220000e+03]\n", + " [ 7.99800000e+02 1.20220000e+03]\n", + " [ 1.15820000e+03 1.20220000e+03]\n", + " [ 1.51660000e+03 1.20220000e+03]\n", + " [ 1.87500000e+03 1.20220000e+03]\n", + " [ 8.30000000e+01 1.56060000e+03]\n", + " [ 4.41400000e+02 1.56060000e+03]\n", + " [ 7.99800000e+02 1.56060000e+03]\n", + " [ 1.15820000e+03 1.56060000e+03]\n", + " [ 1.51660000e+03 1.56060000e+03]\n", + " [ 1.87500000e+03 1.56060000e+03]\n", + " [ 8.30000001e+01 1.91900000e+03]\n", + " [ 4.41400000e+02 1.91900000e+03]\n", + " [ 7.99800000e+02 1.91900000e+03]\n", + " [ 1.15820000e+03 1.91900000e+03]\n", + " [ 1.51660000e+03 1.91900000e+03]\n", + " [ 1.87500000e+03 1.91900000e+03]]\n", + "DEBUG:root:radec2pix: lng: [224.17091663 219.87741809 214.97008665 209.39598188 203.1373574\n", + " 196.23634076 188.81644128 181.08669631 224.17091663 228.3555716\n", + " 233.16265584 238.65783928 244.87601329 251.7942959 259.30486084\n", + " 267.20296141 181.08669631 181.26291687 181.50503492 181.85849799\n", + " 182.42298774 183.46757199 186.05387592 202.53707914 267.20296141\n", + " 266.75372148 266.13046308 265.20807536 263.70434622 260.82362196\n", + " 253.17669924 202.53707914 222.38348083 216.71601144 210.07066421\n", + " 202.39896016 193.78096287 184.48069147 225.9100405 231.44842444\n", + " 237.98973756 245.61222365 254.27065244 263.72553361 181.18560606\n", + " 181.44802269 181.85460599 182.56904059 184.15297918 190.61463228\n", + " 266.99438373 266.33112836 265.28794249 263.40934603 259.04191913\n", + " 238.94596845 224.17054014 224.17054014 202.81670057 202.81670057\n", + " 224.11986404 229.69237658 236.35966367 244.23925438 253.312778\n", + " 263.32641007 218.39761245 223.93365474 230.85002743 239.44337044\n", + " 249.86289594 261.85943825 211.60273873 216.79700073 223.64273186\n", + " 232.75457852 244.72618682 259.56986466 203.65258863 208.03632189\n", + " 214.17758593 223.12426077 236.4587659 255.51668541 194.60966243\n", + " 197.58758667 202.01156736 209.14892478 221.94021993 246.56988658\n", + " 184.76194605 185.78921163 187.37371211 190.13104958 196.0740482\n", + " 216.53792504]\n", + "DEBUG:root:optics_fp: cphi: [-0.7172644 -0.76741791 -0.81945139 -0.87124824 -0.91956549 -0.96011654\n", + " -0.98818444 -0.99982014 -0.7172644 -0.66450587 -0.59954537 -0.52014772\n", + " -0.4245785 -0.31242949 -0.18558325 -0.04879815 -0.99982014 -0.99975708\n", + " -0.99965502 -0.99947397 -0.99910595 -0.99816919 -0.99442317 -0.92363168\n", + " -0.04879815 -0.05662794 -0.06748483 -0.0835374 -0.10965891 -0.1594742\n", + " -0.2DEBUG:root:radec2pix: curVec Shape: (96, 3)\n", + "DEBUG:root:optics_fp: rtanth: [45.10526614 42.15252235 39.46728719 37.10767964 35.13935868 33.63109692\n", + " 32.64672024 32.23425998 45.10526614 42.08371704 39.32015966 36.87264817\n", + " 34.80791464 33.1974573 32.10970154 31.5986741 32.23425998 27.84962696\n", + " 23.46566508 19.08283694 14.70215645 10.32635724 5.96618932 1.74318313\n", + " 31.5986741 27.21812469 22.83983208 18.46540167 14.09842896 9.748941\n", + " 5.45889306 1.74318313 43.77728663 40.33061683 37.34259278 34.93111177\n", + " 33.22196043 32.3267303 43.74864122 40.21129183 37.11812392 34.58850978\n", + " 32.75328451 31.73315358 30.32290674 24.94961031 19.57779834 14.20915457\n", + " 8.84944693 3.53950567 29.68929466 24.32204857 18.9597634 13.60830488\n", + " 8.2886698 3.16557807 45.08405409 45.08405409 1.76362955 1.76362955\n", + " 42.40073703 38.740507 35.51948783 32.86706408 30.92986484 29.84747775\n", + " 38.83207862 34.7984872 31.1727741 28.11319496 25.82178089 24.5148885\n", + " 35.71891532 31.28650338 27.19655174 23.62757526 20.84885967 19.20651814\n", + " 33.18967076 28.36474267 23.77742123 19.59529652 16.13655116 13.95004204\n", + " 31.3858301 26.23117825 21.1868319 16.35517444 11.99601471 8.83853824\n", + " 30.43664187 25.08771711 19.753498 14.45027919 9.23164159 4.4089223 ]\n", + "57953 ]\n", + " [-0.12071058 0.00580507 0.99267077]\n", + " [-0.14953103 0.00577839 0.98874015]\n", + " [-0.1777762 0.00574449 0.98405418]\n", + " [-0.20534186 0.00570348 0.97867369]\n", + " [-0.19844965 0.20227886 0.95901043]\n", + " [-0.20021951 0.17571613 0.96386513]\n", + " [-0.20172864 0.1484622 0.96812423]\n", + " [-0.20297731 0.12062809 0.97172479]\n", + " [-0.20396466 0.09232414 0.97461514]\n", + " [-0.20468905 0.06366093 0.97675467]\n", + " [-0.20514862 0.03474987 0.97811374]\n", + " [-0.20534186 0.00570348 0.97867369]\n", + " [-0.00185028 0.1970566 0.98039037]\n", + " [-0.00187827 0.16291184 0.98663884]\n", + " [-0.00190298 0.12782912 0.99179438]\n", + " [-0.00192425 0.09200243 0.99575692]\n", + " [-0.00194192 0.05563309 0.99844939]\n", + " [-0.00195581 0.01893178 0.99981886]\n", + " [-0.0144012 0.2088187 0.97784833]\n", + " [-0.04990298 0.20845876 0.97675721]\n", + " [-0.08511243 0.20769278 0.97448427]\n", + " [-0.11982373 0.20652378 0.97107683]\n", + " [-0.15383302 0.20495452 0.96660698]\n", + " [-0.18693675 0.20298606 0.96117184]\n", + " [-0.01495442 0.00594178 0.99987052]\n", + " [-0.05167778 0.00594091 0.99864614]\n", + " [-0.08809246 0.00592823 0.99609466]\n", + " [-0.12398684 0.00590399 0.9922663 ]\n", + " [-0.15915858 0.0058685 0.98723559]\n", + " [-0.19341315 0.00582205 0.98110013]\n", + " [-0.19916328 0.19079562 0.96121331]\n", + " [-0.201156 0.1577603 0.96677192]\n", + " [-0.20275765 0.12379719 0.97137201]\n", + " [-0.20396715 0.08910965 0.97491378]\n", + " [-0.20478152 0.05390131 0.97732245]\n", + " [-0.20519745 0.01837776 0.97854804]\n", + " [-0.00183964 0.20884841 0.9779463 ]\n", + " [-0.00183964 0.20884841 0.9779463 ]\n", + " [-0.20524866 0.00580307 0.97869265]\n", + " [-0.20524866 0.00580307 0.97869265]\n", + " [-0.01446124 0.19702878 0.98029105]\n", + " [-0.05010266 0.19668974 0.9791848 ]\n", + " [-0.08545073 0.19596793 0.97688011]\n", + " [-0.12029942 0.19486681 0.97342435]\n", + " [-0.1544452 0.19338978 0.96888961]\n", + " [-0.18768535 0.1915385 0.96337283]\n", + " [-0.01461361 0.16288937 0.98653611]\n", + " [-0.05060625 0.16260994 0.98539181]\n", + " [-0.08630213 0.16201386 0.98300735]\n", + " [-0.12149421 0.16110551 0.97943054]\n", + " [-0.15597972 0.1598896 0.97473363]\n", + " [-0.18955833 0.15836938 0.9690133 ]\n", + " [-0.01473929 0.12781212 0.99168887]\n", + " [-0.05101673 0.12759366 0.99051358]\n", + " [-0.08699359 0.12712576 0.98806435]\n", + " [-0.12246151 0.126413 0.98438962]\n", + " [-0.1572181 0.12546054 0.97956221]\n", + " [-0.19106523 0.12427244 0.97367882]\n", + " [-0.01483744 0.09199108 0.99564928]\n", + " [-0.0513315 0.09183551 0.99445026]\n", + " [-0.08752139 0.0914995 0.99195154]\n", + " [-0.12319735 0.09098698 0.9882023 ]\n", + " [-0.15815714 0.09030259 0.98327604]\n", + " [-0.19220433 0.0894502 0.97726975]\n", + " [-0.01490708 0.05562756 0.9983403 ]\n", + " [-0.05154747 0.05553685 0.99712513]\n", + " [-0.08788092 0.05533649 0.99459279]\n", + " [-0.1236965 0.05502916 0.9907931 ]\n", + " [-0.15879197 0.05461804 0.98580017]\n", + " [-0.19297207 0.05410588 0.97971135]\n", + " [-0.01494734 0.01893DEBUG:root:optics_fp: rtanth: [45.10607628 42.16357777 39.4899731 37.14337318 35.189258 33.69598042\n", + " 32.72668371 32.32853333 45.10607628 42.0744994 39.2994961 36.83909335\n", + " 34.76015989 33.13457624 32.03143895 31.50567459 32.32853333 27.94350461\n", + " 23.55899708 19.17536829 14.79339939 10.41518568 6.04888681 1.78423138\n", + " 31.50567459 27.12594155 22.74878876 18.37606012 14.01189826 9.66791142\n", + " 5.39307341 1.78423138 43.78236587 40.34917919 37.37672691 34.98265169\n", + " 33.29196413 32.41491299 43.7452802 40.19469624 37.08612172 34.53910818\n", + " 32.68520027 31.64644357 30.41697218 25.04308812 19.67036046 14.30009268\n", + " 8.93672046 3.6111005 29.59667216 24.23063563 18.87027174 13.52232821\n", + " 8.21110934 3.12954069 45.08486499 45.08486499 1.80420296 1.80420296\n", + " 42.4016515 38.72807918 35.4912797 32.82073285 30.86377856 29.76151712\n", + " 38.84663114 34.79978185 31.15752935 28.07777067 25.76302637 24.43171303\n", + " 35.74946438 31.30476433 27.19843907 23.60772454 20.80136966 19.12778226\n", + " 33.23838757 28.403428942109 -0.92363168 -0.73864972 -0.80160861 -0.86540808 -0.92455295\n", + " -0.97121348 -0.99694372 -0.69578694 -0.62321886 -0.53007115 -0.41291013\n", + " -0.27109351 -0.10929135 -0.99978591 -0.99968066 -0.99947617 -0.99899494\n", + " -0.99737425 -0.98288834 -0.05243384 -0.06399014 -0.08214824 -0.11477511\n", + " -0.19009076 -0.51584618 -0.71726898 -0.71726898 -0.92175016 -0.92175016\n", + " -0.71788499 -0.64689125 -0.55397779 -0.43461417 -0.2871469 -0.11621293\n", + " -0.78371934 -0.72014369 -0.63135242 -0.50838973 -0.34426777 -0.14160207\n", + " -0.85170189 -0.80076273 -0.72365733 -0.60523038 -0.42694461 -0.18103644\n", + " -0.91599489 -0.8826498 -0.8273004 -0.72987289 -0.55253697 -0.25009805\n", + " -0.96766665 -0.95325615 -0.92710821 -0.87335662 -0.74384256 -0.39763019\n", + " -0.99654822 -0.99489972 -0.99173015 -0.984408 -0.96090466 -0.80346296]\n", + "DEBUG:root:optics_fp: cphi: [0.71674184 0.76675024 0.81864942 0.87035228 0.91865771 0.95932569\n", + " 0.98767201 0.99974255 0.71674184 0.66409483 0.59932455 0.52022133\n", + " 0.42506968 0.31345852 0.18722881 0.05105417 0.99974255 0.99965353\n", + " 0.99950987 0.99925593 0.99874223 0.99744464 0.99234175 0.9056856\n", + " 0.05105417 0.05923154 0.07055215 0.08725098 0.11432168 0.16558509\n", + " 0.29698694 0.9056856 0.73806414 0.80084934 0.86451924 0.92365062\n", + " 0.9704975 0.99665945 0.6953044 0.6229226 0.53010496 0.41345588\n", + " 0.27232584 0.11128947 0.99969644 0.99954923 0.99926436 0.99859785\n", + " 0.99637691 0.97728259 0.0548278 0.06688083 0.08577093 0.11956053\n", + " 0.19678357 0.51804091 0.7167462 0.7167462 0.90395966 0.90395966\n", + " 0.7173329 0.64650885 0.55392153 0.43509499 0.28838199 0.1183142\n", + " 0.78296688 0.7194824 0.6309635 0.50857972 0.34543889 0.14404729\n", + " 0.85078398 0.79980651 0.72282072 0.60489433 0.42782202 0.18390653\n", + " 0.9150296 0.88149415 0.82599605 0.72871014 0.55254711 0.25338228\n", + " 0.96687862 0.95220074 0.92565817 0.87139471 0.74187378 0.40036553\n", + " 0.99622933 0.99443943 0.99100871 0.9831251 0.95810564 0.79702588]\n", + "DEBUG:root:radec2pix: xyfp: [[32.23341696 31.55141621]\n", + " [32.23194958 27.16498788]\n", + " [32.2304822 22.77855956]\n", + " [32.22901483 18.39213124]\n", + " [32.22754745 14.00570291]\n", + " [32.22608007 9.61927458]\n", + " [32.22461269 5.23284626]\n", + " [32.2231453 0.84641793]\n", + " [32.23341696 31.55141621]\n", + " [27.84698864 31.5528836 ]\n", + " [23.46056031 31.55435097]\n", + " [19.07413198 31.55581835]\n", + " [14.68770366 31.55728573]\n", + " [10.30127533 31.55875311]\n", + " [ 5.91484701 31.56022049]\n", + " [ 1.52841868 31.56168787]\n", + " [32.2231453 0.84641793]\n", + " [27.83671698 0.84788531]\n", + " [23.45028865 0.84935269]\n", + " [19.06386033 0.85082007]\n", + " [14.677432 0.85228745]\n", + " [10.29100367 0.85375483]\n", + " [ 5.90457535 0.85522221]\n", + " [ 1.51814702 0.85668959]\n", + " [ 1.52841868 31.56168787]\n", + " [ 1.5269513 27.17525955]\n", + " [ 1.52548392 22.78883122]\n", + " [ 1.52401654 18.4024029 ]\n", + " [ 1.52254916 14.01597457]\n", + " [ 1.52108178 9.62954624]\n", + " [ 1.5196144 5.24311792]\n", + " [ 1.51814702 0.85668959]\n", + " [32.21777718 29.63892134]\n", + " [32.21597876 24.26292164]\n", + " [32.21418034 18.88692194]\n", + " [32.21238193 13.51092224]\n", + " [32.21058351 8.13492254]\n", + " [32.20878509 2.75892284]\n", + " [30.32091205 31.53705599]\n", + " [24.94491236 31.5388DEBUG:root:radec2pix: lat: [73.30319327 74.28364829 75.19434757 76.00760673 76.6934474 77.22149469\n", + " 77.56431546 77.70181842 73.30319327 74.31487163 75.26252869 76.11836609\n", + " 76.85166299 77.43039612 77.8244634 78.01035447 77.70181842 79.30062777\n", + " 80.93200296 82.59063863 84.2712796 85.96832552 87.67438557 89.35703566\n", + " 78.01035447 79.61411514 81.24861046 82.90802789 84.58587071 86.27294722\n", + " 87.94616945 89.35703566 73.74128804 74.89975016 75.92621516 76.76637844\n", + " 77.36466213 77.67335289 73.7541097 74.95468773 76.03182731 76.93013306\n", + " 77.59097642 77.96138218 78.39443735 80.37649363 82.40216048 84.46173597\n", + " 86.54472647 88.63280521 78.70517127 80.69206097 82.71932817 84.7752745\n", + " 86.84188191 88.83673743 73.31017726 73.31017726 89.34933673 89.34933673\n", + " 74.20408349 75.46003419 76.59358943 77.54526674 78.24998117 78.64701061\n", + " 75.41740928 76.83842002 78.14733268 79.2729755 80.12769991 80.61933545\n", + " 76.49875662 78.09183026 79.59737911 80.93621381 81.99355302 82.62428133\n", + " 77.38945666 79.14833894 80.86043698 82.45133489 83.78724838 84.64121324\n", + " 78.02753384 79.92284226 81.82091734 83.6737055 85.37260957 86.62213831\n", + " 78.35820379 80.33138971 82.34363217 84.38015735 86.41373806 88.32724747]\n", + "363 23.80170775 19.59823621 16.10786095 13.87941853\n", + " 31.45408342 26.29303007 21.23888529 16.39084557 12.00133913 8.78676362\n", + " 30.52427023 25.1733021 19.8358755 14.52692422 9.29536709 4.42480773]\n", + "22 0.99970903]\n", + " [-0.05166195 0.01890777 0.99848562]\n", + " [-0.08806808 0.01884587 0.99593617]\n", + " [-0.12395417 0.01874743 0.99211083]\n", + " [-0.15911791 0.01861357 0.9870841 ]\n", + " [-0.19336467 0.01844527 0.98095356]]\n", + "DEBUG:root:radec2pix: camVec: [[0.20622014 0.20805053 0.20961035 0.210899 0.21191543 0.21265818\n", + " 0.21312568 0.21331667 0.20622014 0.17982824 0.1527297 0.12503427\n", + " 0.09685185 0.06829276 0.03946812 0.01049004 0.21331667 0.18597713\n", + " 0.1579279 0.12927353 0.10011961 0.07057467 0.04075124 0.01076573\n", + " 0.01049004 0.01056977 0.01063642 0.01068985 0.01072978 0.01075592\n", + " 0.01076796 0.01076573DEBUG:root:radec2pix: fitpx: [[2135.5 4155.4999999 ]\n", + " [2135.5 3863.07142835]\n", + " [2135.5 3570.64285687]\n", + " [2135.5 3278.21428534]\n", + " [2135.5 2985.78571398]\n", + " [2135.5 2693.35714282]\n", + " [2135.50000001 2400.92857102]\n", + " [2135.50000006 2108.49999973]\n", + " [2135.5 4155.4999999 ]\n", + " [1843.07142859 4155.4999999 ]\n", + " [1550.64285722 4155.49999973]\n", + " [1258.21428568 4155.50000007]\n", + " [ 965.78571413 4155.50000028]\n", + " [ 673.35714288 4155.49999997]\n", + " [ 380.92857125 4155.50000021]\n", + " [ 88.4999998 4155.5000002 ]\n", + " [2135.50000006 2108.49999973]\n", + " [1843.07142866 2108.49999999]\n", + " [1550.64285735 2108.49999998]\n", + " [1258.21428559 2108.50000001]\n", + " [ 965.78571467 2108.49999998]\n", + " [ 673.35714297 2108.5 ]\n", + " [ 380.92857138 2108.5 ]\n", + " [ 88.49999984 2108.5 ]\n", + " [ 88.4999998 4155.5000002 ]\n", + " [ 88.49999999 3863.07142858]\n", + " [ 88.50000023 3570.64285698]\n", + " [ 88.4999999 3278.21428577]\n", + " [ 88.50000002 2985.78571428]\n", + " [ 88.50000017 2693.35714281]\n", + " [ 88.49999997 2400.92857143]\n", + " [ 88.4995442]\n", + " [19.56891265 31.54065283]\n", + " [14.19291295 31.54245125]\n", + " [ 8.81691325 31.54424967]\n", + " [ 3.44091356 31.54604808]\n", + " [30.31065043 0.86205771]\n", + " [24.93465073 0.86385613]\n", + " [19.55865103 0.86565455]\n", + " [14.18265134 0.86745297]\n", + " [ 8.80665163 0.86925139]\n", + " [ 3.43065193 0.8710498 ]\n", + " [ 1.5427789 29.64918296]\n", + " [ 1.54098048 24.27318326]\n", + " [ 1.53918206 18.89718357]\n", + " [ 1.53738364 13.52118387]\n", + " [ 1.53558522 8.14518416]\n", + " [ 1.5337868 2.76918446]\n", + " [32.21841195 31.53642123]\n", + " [32.21841195 31.53642123]\n", + " [ 1.53315204 0.87168457]\n", + " [ 1.53315204 0.87168457]\n", + " [30.32027729 29.6395561 ]\n", + " [24.94427759 29.64135452]\n", + " [19.56827789 29.64315294]\n", + " [14.19227819 29.64495136]\n", + " [ 8.81627849 29.64674978]\n", + " [ 3.44027879 29.6485482 ]\n", + " [30.31847887 24.2635564 ]\n", + " [24.94247917 24.26535482]\n", + " [19.56647947 24.26715324]\n", + " [14.19047977 24.26895166]\n", + " [ 8.81448007 24.27075007]\n", + " [ 3.43848037 24.2725485 ]\n", + " [30.31668045 18.8875567 ]\n", + " [24.94068075 18.88935513]\n", + " [19.56468105 18.89115354]\n", + " [14.18868135 18.89295196]\n", + " [ 8.81268165 18.89475038]\n", + " [ 3.43668195 18.89654879]\n", + " [30.31488203 13.51155701]\n", + " [24.93888233 13.51335542]\n", + " [19.56288263 13.51515384]\n", + " [14.18688293 13.51695226]\n", + " [ 8.81088324 13.51875068]\n", + " [ 3.43488354 13.5205491 ]\n", + " [30.31308361 8.13555731]\n", + " [24.93708392 8.13735572]\n", + " [19.56108422 8.13915414]\n", + " [14.18508451 8.14095256]\n", + " [ 8.80908482 8.14275098]\n", + " [ 3.43308512 8.1445494 ]\n", + " [30.31128519 2.75955761]\n", + " [24.93528549 2.76135602]\n", + " [19.5592858 2.76315444]\n", + " [14.18328609 2.76495286]\n", + " [ 8.8072864 2.76675128]\n", + " [ 3.4312867 2.7685497 ]]\n", + " 0.20696213 0.20902258 0.21067623 0.21192136\n", + " 0.21275532 0.21317532 0.1948134 0.16197729 0.1281888 0.09365018\n", + " 0.05856456 0.02313694 0.20149034 0.16749252 0.1325326 0.09680441\n", + " 0.0605079 0.02385188 0.01062602 0.01071595 0.0107859 0.01083545\n", + " 0.01086402 0.01087112 0.20613793 0.20613793 0.01086844 0.01086844\n", + " 0.19558949 0.1626169 0.12869151 0.09401511 0.05879055 0.02322296\n", + " 0.19753009 0.16421774 0.12995114 0.09493033 0.05935726 0.02343764\n", + " 0.19908829 0.16550536 0.13DEBUG:root:radec2pix: lng: [ 90.47719648 90.55672682 90.66687597 90.82953968 91.0940213\n", + " 91.5994309 92.9498036 107.65020813 90.47719648 98.38070645\n", + " 105.9767833 113.03909385 119.43357191 125.11472623 130.10200281\n", + " 134.45251944 107.65020813 169.61839319 174.60281853 176.35464905\n", + " 177.24671913 177.78699525 178.149242 178.40898834 134.45251944\n", + " 138.72924775 143.64878868 149.27726033 155.64622183 162.72363484\n", + " 170.38599488 178.40898834 90.53796733 90.66055396 90.85289348\n", + " 91.19818153 91.99914413 95.89819456 93.94516067 103.46269209\n", + " 112.28380041 120.12202419 126.89084824 132.64302298 158.33080444\n", + " 173.44203131 176.15005523 177.27375664 177.8883436 178.27582468\n", + " 136.22925254 141.89402899 148.59312727 156.4003322 165.25344571\n", + " 174.88216618 90.50467598 90.50467598 178.38048842 178.38048842\n", + " 94.19778856 104.29099371 113.55934226 121.68876645 128.61161022\n", + " 134.41785939 95.12656191 107.28679494 118.04349613 127.02097674\n", + " 134.29081962 140.12241992 96.57828818 111.793380DEBUG:root:radec2pix: xyfp Shape: (96, 2)\n", + "73 124.38427646\n", + " 134.09036566 141.4100222 146.95926252 99.16244844 119.20302386\n", + " 133.72701528 143.55240671 150.27503583 155.04314708 105.00164812\n", + " 132.86645918 147.80237126 156.01703787 161.01884636 164.3374646\n", + " 128.29176769 159.89787077 167.9213331 171.39949271 173.32787944\n", + " 174.55097942]\n", + "096617 0.09566871 0.05981412 0.02360896\n", + " 0.20026215 0.16647694 0.13173312 0.09622682 0.06015857 0.02373584\n", + " 0.20104857 0.16712825 0.13224724 0.09660024 0.06038739 0.02381698\n", + " 0.20144435 0.16745515 0.13250401 0.09678486 0.06049766 0.02385117]\n", + " [0.20255556 0.17610143 0.14895462 0.12122494 0.09302239 0.06445739\n", + " 0.03564119 0.00668594 0.20255556 0.20441077 0.20600074 0.2073248\n", + " 0.20838186 0.20917033 0.20968847 0.20993479 0.00668594 0.00675821\n", + " 0.00682246 0.00687853 0.00692617 0.0069651 0.00699507 0.00701584\n", + " 0.20993479 0.18250233 0.15437326 0.12565215 0.09644485 0.06686038\n", + " 0.03701177 0.00701584 0.19112005 0.15821703 0.12438266 0.08981934\n", + " 0.05473042 0.0193211 0.20330747 0.20540191 0.20709749 0.2083924\n", + " 0.20928375 0.20976841 0.00681796 0.00690216 0.00697398 0.00703299\n", + " 0.00707868 0.00711058 0.19806614 0.16396327 0.12891793 0.09312436\n", + " 0.05678335 0.02010461 0.2024732 0.2024732 0.00711848 0.00711848\n", + " 0.19190537 0.19387759 0.19547539 0.1966967 0.19753824 0.19799645\n", + " 0.15886347 0.1604891 0.1618095 0.16282181 0.16352163 0.16390447\n", + " 0.12488974 0.12616714 0.12720791 0.12800859 0.1285643 0.12887024\n", + " 0.09018615 0.09111203 0.09186896 0.09245358 0.0928614 0.09308815\n", + " 0.05495583 0.05552612 0.05599434 0.05635799 0.05661388 0.05675899\n", + " 0.01940412 0.01961547 0.01979108 0.01992994 0.02003078 0.02009239]\n", + " [0.95731108 0.96213474 0.96637261 0.96996192 0.9728508 0.97499833\n", + " 0.97637449 0.97696023 0.95731108 0.96222557 0.96655954 0.97024886\n", + " 0.97324032 0.97549161 0.97697135 0.97765911 0.97696023 0.98253083\n", + " 0.98742708 0.99158512 0.9949513 0.99748218 0.99914484 0.99991744\n", + " 0.97765911 0.9831486 0.98795534 0.99201677 0.99528049 0.9DEBUG:root:optics_fp: cphi: [-0.71462647 -0.76465055 -0.81663789 -0.86852682 -0.91713533 -0.95822269\n", + " -0.98707045 -0.99965519 -0.71462647 -0.66170459 -0.59665476 -0.51729759\n", + " -0.42196448 -0.31030314 -0.18420747 -0.04836971 -0.99965519 -0.99953644\n", + " -0.99934473 -0.99900557 -0.99831831 -0.99657638 -0.98967281 -0.87090507\n", + " -0.04836971 -0.05610053 -0.06679051 -0.08253363 -0.10799424 -0.15602533\n", + " -0.27837409 -0.87090507 -0.73594733 -0.79879708 -0.86266587 -0.92216881\n", + " -0.96955698 -0.99635146 -0.69307094 -0.62034596 -0.5272064 -0.41033606\n", + " -0.26919173 -0.10843276 -0.99959581 -0.99940041 -0.99902199 -0.99813478\n", + " -0.99516407 -0.96924606 -0.05196415 -0.06335735 -0.0811815 -0.11297393\n", + " -0.18526317 -0.48452029 -0.71462988 -0.71462988 -0.86931637 -0.86931637\n", + " -0.71508845 -0.64388103 -0.55091667 -0.43180852 -0.28504096 -0.11526196\n", + " -0.78075859 -0.71676907 -0.62767848 -0.50476226 -0.34135833 -0.1402609\n", + " -0.84875703 -0.7971706 -0.71938094 -0.60051365 -0.4226937 -0.17893311\n", + " -0.91338303 -0.87922117 -0.82275039 -0.7239943 -0.54602022 -0.24622747\n", + " -0.96582068 -0.95066579 -0.92326613 -0.86731478 -0.73433428 -0.38842227\n", + " -0.99588139 -0.99392405 -0.99016821 -0.98152333 -0.95403253 -0.77825973]\n", + "99984 2108.5 ]\n", + " [2134.5 4027.99999995]\n", + " [2134.5 3669.59999994]\n", + " [2134.5 3311.20000034]\n", + " [2134.5 2952.80000006]\n", + " [2134.5 2594.39999997]\n", + " [2134.49999998 2236.00000031]\n", + " [2008.00000001 4154.49999991]\n", + " [1649.60000005 4154.49999977]\n", + " [1291.19999995 4154.50000012]\n", + " [ 932.80000008 4154.49999986]\n", + " [ 574.40000013 4154.49999983]\n", + " [ 215.99999993 4154.50000007]\n", + " [2007.99999975 2109.50000009]\n", + " [1649.5999999 2109.50000001]\n", + " [1291.19999978 2109.50000001]\n", + " [ 932.80000001 2109.5 ]\n", + " [ 574.40000043 2109.49999999]\n", + " [ 216.00000004 2109.5 ]\n", + " [ 89.50000001 4027.99999999]\n", + " [ 89.4999998 3669.60000015]\n", + " [ 89.50000012 3311.19999993]\n", + " [ 89.50000006 2952.79999997]\n", + " [ 89.49999988 2594.40000003]\n", + " [ 89.50000008 2235.99999999]\n", + " [2134.5 4154.49999983]\n", + " [2134.5DEBUG:root:radec2pix: lat: [77.93927193 79.54395482 81.18055575 82.84390632 84.52894038 86.23049276\n", + " 87.9428694 89.64907294 77.93927193 77.81611283 77.48163499 76.95619116\n", + " 76.26808809 75.44881244 74.52941663 73.53851291 89.64907294 88.14278148\n", + " 86.44266427 84.74397225 83.05883421 81.39378264 79.75434117 78.14585205\n", + " 73.53851291 74.55039439 75.49464441 76.34256389 77.06256929 77.62200189\n", + " 77.99067226 78.14585205 78.63460262 80.62342084 82.65501815 84.72002626\n", + " 86.80886799 88.90945013 77.91780497 77.62268078 77.02911929 76.18620636\n", + " 75.15153709 73.98133314 89.07797965 87.01823413 84.93466191 82.86963733\n", + " 80.83566227 78.84284498 73.98994449 75.188461 76.25722019 77.13921802\n", + " 77.77469141 78.11085607 77.94465092 77.94465092 78.15114253 78.15114253\n", + " 78.60576152 78.28926489 77.65557547 76.7612779 75.67077293 74.44486167\n", + " 80.58736145 80.19458487 79.42244991 78.35883667 77.09292697 75.69943663\n", + " 82.60788147 82.10171615 81.13877773 79.86296648 78.39628485 76.82509319\n", + " 84.6534244 83.96086026 82.72578935 81.19023674 79.50664486 77.76043854\n", + " 86.6984902 85.65438612 84.03898568 82.21913056 80.33294013 78.43884558\n", + " 88.61780046 86.84637931 84.83282934 82.79823023 80.78132572 78.79952798]\n", + "DEBUG:root:optics_fp: sphi: [-0.69680111 -0.64114722 -0.57314869 -0.49084265 -0.39293677 -0.27960013\n", + " -0.15326941 -0.01896529 -0.69680111 -0.74728304 -0.80034077 -0.85407631\n", + " -0.90539113 -0.94994095 -0.98262854 -0.99880866 -0.01896529 -0.02204027\n", + " -0.02626479 -0.03243122 -0.04227651 -0.06048361 -0.10546358 -0.38328124\n", + " -0.99880866 -0.99839535 -0.9977203 -0.99650464 -0.99396928 -0.9872021\n", + " -0.95720188 -0.38328124 -0.67408945 -0.59784918 -0.50106771 -0.3810536\n", + " -0.23821077 -0.07812313 -0.71824824 -0.78204748 -0.84795317 -0.91077177\n", + " -0.96255302 -0.99400976 -0.02069125 -0.02527007 -0.03236333 -0.04482319\n", + " -0.07241971 -0.18420237 -0.9986244 -0.99795053 -0.99662012 -0.9933915\n", + " -0.98176652 -0.85668122 -0.6967964 -0.6967964 -0.38778427 -0.38778427\n", + " -0.69616172 -0.76258227 -0.83253145 -0.90061674 -0.95788656 -0.99322432\n", + " -0.62111512 -0.69382495 -0.77549605 -0.8611271 -0.93887151 -0.98992366\n", + " -0.52402662 -0.59898168 -0.69015945 -0.79605037 -0.90427778 -0.98347639\n", + " -0.40118994 -0.4700312 -0.56175978 -0.68358289 -0.83348839 -0.96822051\n", + " -0.25223255 -0.30216337 -0.37479377 -0.48708132 -0.66835488 -0.91754577\n", + " -0.08301599 -0.10086897 -0.12834059 -0.17590022 -0.27687945 -0.59535474]\n", + " 4154.49999983]\n", + " [ 89.49999987 2109.5 ]\n", + " [ 89.49999987 2109.5 ]\n", + " [2008. 4027.99999995]\n", + " [1649.60000002 4027.99999993]\n", + " [1291.20000002 4027.99999996]\n", + " [ 932.80000002 4027.99999996]\n", + " [ 574.4000002 4027.99999975]\n", + " [ 215.99999985 4028.00000015]\n", + " [2008.00000001 3669.59999986]\n", + " [1649.60000005 3669.59999982]\n", + " [1291.19999995 3669.60000009]\n", + " [ 932.79999997 3669.60000004]\n", + " [ 574.40000017 3669.59999983]\n", + " [ 215.99999977 3669.60000019]\n", + " [2007.99999999 3311.20000007]\n", + " [1649.5999999 3311.20000024]\n", + " [1291.20000003 3311.19999996]\n", + " [ 932.80000003 3311.19999997]\n", + " [ 574.40000015 3311.199999889770436\n", + " 0.99925681 0.99991744 0.95949977 0.96502691 0.96961048 0.97315046\n", + " 0.9755715 0.9768229 0.95953833 0.96518051 0.96988569 0.97355136\n", + " 0.97609964 0.97747731 0.97946677 0.98584919 0.99115411 0.99527858\n", + " 0.99814262 0.99969022 0.98013106 0.98640824 0.99159661 0.99559552\n", + " 0.99832741 0.99973878 0.95734621 0.95734621 0.9999156 0.9999156\n", + " 0.96172609 0.96745399 0.9722283 0.9759465 0.97853069 0.9799276\n", + " 0.96733875 0.97328094 0.97822819 0.98207805 0.98475245 0.98619775\n", + " 0.97199095 0.97810522 0.98319175 0.98714806 0.9898957 0.99138039\n", + " 0.97558266 0.98182688 0.98701899 0.99105637 0.99386 0.99537491\n", + " 0.97803851 0.98437036 0.98963392 0.99372641 0.99656823 0.99810379\n", + " 0.97930774 0.98568454 0.99098486 0.99510577 0.99796733 0.99951359]]\n", + "]\n", + " [ 216.00000001 3311.19999999]\n", + " [2008.00000002 2952.79999987]\n", + " [1649.59999985 2952.80000027]\n", + " [1291.1999999 2952.80000011]\n", + " [ 932.80000032 2952.79999977]\n", + " [ 574.39999984 2952.80000009]\n", + " [ 216.00000025 2952.79999989]\n", + " [2007.99999995 2594.4000DEBUG:root:optics_fp: cphi: [-0.71639206 -0.76640718 -0.81831665 -0.87003773 -0.918376 -0.95909967\n", + " -0.98753169 -0.99971968 -0.71639206 -0.66375612 -0.59900967 -0.51994628\n", + " -0.42485193 -0.31331297 -0.18716187 -0.0510586 -0.99971968 -0.9996256\n", + " -0.99947438 -0.99920821 -0.99867222 -0.99732533 -0.99206684 -0.90485547\n", + " -0.0510586 -0.05933321 -0.07078632 -0.08767585 -0.11504297 -0.16682032\n", + " -0.29920561 -0.90485547 -0.73771707 -0.80051245 -0.864202 -0.9233738\n", + " -0.97029678 -0.99658165 -0.69495812 -0.62259801 -0.52982456 -0.41324571\n", + " -0.27220694 -0.1112649 -0.9996711 -0.99951604 -0.9992175 -0.99852279\n", + " -0.99622323 -0.97670188 -0.054871 -0.06706472 -0.08616954 -0.12032428\n", + " -0.19827847 -0.52055819 -0.71639646 -0.71639646 -0.90315154 -0.90315154\n", + " -0.71698855 -0.64618487 -0.553643 -0.43489275 -0.28828288 -0.11832391\n", + " -0.78262952 -0.71915739 -0.63068289 -0.50839224 -0.34539889 -0.14417822\n", + " -0.85046147 -0.79948029 -0.72252464 -0.60469794 -0.42783445 -0.18421072\n", + " -0.91474245 -0.88118124 DEBUG:root:optics_fp: rtanth: [44.94272969 42.00239064 39.33235561 36.99120283 35.04490673 33.56223174\n", + " 32.60648436 32.22458311 44.94272969 41.90992612 39.13459306 36.67522804\n", + " 34.59927513 32.97921831 31.88462562 31.37054947 32.22458311 27.83912196\n", + " 23.45402264 19.06953475 14.68620592 10.30551524 5.93330899 1.63895634\n", + " 31.37054947 26.99005818 22.61186898 18.23763988 13.87111779 9.5229103\n", + " 5.23882082 1.63895634 43.61980801 40.19015843 37.22381993 34.83933779\n", + " 33.16246218 32.30357703 43.58131788 40.02977818 36.92204987 34.37870189\n", + " 32.5323727 31.50584319 30.31278547 24.93826049 19.56454604 14.19256282\n", + " 8.82547273 3.48595044 29.4611953 24.09404931 18.73198196 13.38109994\n", + " 8.0637011 2.9657153 44.92151855 44.92151855 1.65858428 1.65858428\n", + " 42.23832489 38.56329813 35.32679703 32.65945447 30.7099348 29.62031359\n", + " 38.68639649 34.63652908 30.99264061 27.91417471 25.60588368 24.28835443\n", + " 35.59496044 31.14567519 27.03530484 23.44280455 20.64037826 18.98125646\n", + " 33.09332103 28.25278341 23.64475409 19.43532283 15.94339684 13.72788346\n", + " 31.32311186 26.15701072 21.09606209 16.23887967 11.83897557 8.62694755\n", + " 30.41232527 25.05915804 19.71841847 14.40393713 9.16152467 4.26572571]\n", + "DEBUG:root:optics_fp: sphi: [0.69733861 0.64194554 0.57429359 0.49242959 0.39505443 0.28230164\n", + " 0.15653753 0.02269007 0.69733861 0.74764835 0.80050614 0.85403148\n", + " 0.90516063 0.94960189 0.98231633 0.99869589 0.02269007 0.02632152\n", + " 0.03130538 0.03856929 0.05013934 0.07144362 0.12352264 0.42394999\n", + " 0.99869589 0.99824427 0.99750809 0.99618636 0.99344379 0.98619551\n", + " 0.95488154 0.42394999 0.67473055 0.59886588 0.50259973 0.38323562\n", + " 0.24111118 0.08166976 0.71871537 0.78228347 0.84793203 0.91052415\n", + " 0.96220509 0.99378803 0.02463779 0.03002235 0.03835014 0.05293717\n", + " 0.08504731 0.21194041 0.99849582 0.99776097 0.99631488 0.99282691\n", + " 0.98044695 0.85535584 0.69733413 0.69733413 0.42761774 0.42761774\n", + " 0.69673058 0.76290649 0.83256888 0.90038456 0.95751545 0.99297621\n", + " 0.62206339 0.69451068 0.77581252 0.8-0.82567874 -0.72846169 -0.55256029 -0.25394179\n", + " -0.96666577 -0.95194756 -0.92535864 -0.87107074 -0.74171607 -0.40123831\n", + " -0.99614527 -0.99433151 -0.99086162 -0.98290647 -0.95774678 -0.79700819]\n", + "0018]\n", + " [1649.59999988 2594.40000012]\n", + " [1291.19999985 2594.4000001 ]\n", + " [ 932.79999977 2594.4000001 ]\n", + " [ 574.39999985 2594.40000005]\n", + " [ 216.00000009 2594.39999997]\n", + " [2007.99999988 2236.00000015]\n", + " [1649.60000009 2235.99999997]\n", + " [1291.19999998 2236. ]\n", + " [ 932.79999991 2236.00000001]\n", + " [ 574.39999979 2236.00000002]\n", + " [ 215.99999986 2236.00000001]]\n", + "6101491 0.93844125 0.9895708\n", + " 0.52551558 0.6002579 0.6910356 0.79630575 0.903863 0.98294374\n", + " 0.40338671 0.47219495 0.5636759 0.68482227 0.83348167 0.96736623\n", + " 0.25523664 0.305473 0.37836089 0.49058257 0.67053956 0.91635552\n", + " 0.08675898 0.10531014 0.13379739 0.18293452 0.28641505 0.60394515]\n", + "DEBUG:root:radec2pix: camVec Shape: (3, 96)\n", + "DEBUG:root:fitpix2pix: ccdpx: shape: (96, 2)\n", + "DEBUG:root:optics_fp: sphi: [-0.69950626 -0.64444513 -0.57715037 -0.49DEBUG:root:radec2pix: curVec: [[ 0.14212116 -0.77401452 0.61701143]\n", + " [ 0.13501871 -0.75761915 0.63857902]\n", + " [ 0.12766481 -0.74028562 0.66005977]\n", + " [ 0.12008289 -0.72204965 0.68134015]\n", + " [ 0.1122977 -0.70295463 0.70231333]\n", + " [ 0.10433579 -0.68305298 0.72287805]\n", + " [ 0.0962258 -0.66240693 0.74293852]\n", + " [ 0.08799838 -0.64108866 0.76240515]\n", + " [ 0.14212116 -0.77401452 0.61701143]\n", + " [ 0.16982591 -0.76592933 0.62008985]\n", + " [ 0.1972733 -0.75717154 0.62271543]\n", + " [ 0.2243574 -0.74778289 0.6248876 ]\n", + " [ 0.25097427 -0.73781215 0.62661403]\n", + " [ 0.27702165 -0.72731474 0.62791104]\n", + " [ 0.30239828 -0.71635253 0.62880389]\n", + " [ 0.32700298 -0.70499396 0.62932707]\n", + " [ 0.08799838 -0.64108866 0.76240515]\n", + " [ 0.11669784 -0.63281047 0.76546229]\n", + " [ 0.1451975 -0.62399 0.7678243 ]\n", + " [ 0.1733862 -0.61467035 0.76949178]\n", + " [ 0.20115726 -0.60490085 0.77047435]\n", + " [ 0.22840898 -0.59473657 0.77079034]\n", + " [ 0.25504405 -0.58423814 0.77046631]\n", + " [ 0.28096785 -0.57347201 0.76953682]\n", + " [ 0.32700298 -0.70499396 0.62932707]\n", + " [ 0.3217711 -0.68840018 0.65005273]\n", + " [ 0.31604829 -0.67099579 0.67072955]\n", + " [ 0.30986015 -0.65282093 0.69123912]\n", + " [ 0.30323196 -0.63392273 0.71147196]\n", + " [ 0.29618927 -0.61435575 0.73132683]\n", + " [ 0.28875855 -0.59418221 0.75071033]\n", + " [ 0.28096785 -0.57347201 0.76953682]\n", + " [ 0.13915228 -0.76695688 0.62642939]\n", + " [ 0.13027644 -0.74622737 0.65281908]\n", + " [ 0.12104592 -0.72412349 0.67896469]\n", + " [ 0.11150567 -0.70072185 0.70466685]\n", + " [ 0.1017046 -0.67611904 0.72973914]\n", + " [ 0.0916963 -0.65043381 0.75400773]\n", + " [ 0.15420187 -0.77051988 0.61848274]\n", + " [ 0.18799827 -0.76015321 0.62195156]\n", + " [ 0.22130264 -0.748817 0.62473854]\n", + " [ 0.2539228 -0.73659814 0.62685436]\n", + " [ 0.28567042 -0.72359863 0.62832908]\n", + " [ 0.31635916 -0.70993509 0.62921304]\n", + " [ 0.10055704 -0.63762244 0.76375776]\n", + " [ 0.13561083 -0.62710682 0.76703764]\n", + " [ 0.17025356 -0.61581863 0.76927313]\n", + " [ 0.20428693 -0.60384615 0.77047822]\n", + " [ 0.23752365 -0.59129074 0.77068656]\n", + " [ 0.26978578 -0.5782664 0.76995039]\n", + " [ 0.32470072 -0.697DEBUG:root:fitpix2pix: visCut: True\n", + "9004 0.63836078]\n", + " [ 0.31795392 -0.6770131 0.66374586]\n", + " [ 0.31049536 -0.65494723 0.68893886]\n", + " [ 0.30237172 -0.63178664 0.71373454]\n", + " [ 0.29363007 -0.60763177 0.73794648]\n", + " [ 0.28431981 -0.5826004 0.76140595]\n", + " [ 0.14219238 -0.77393362 0.61709649]\n", + " [ 0.14219238 -0.77393362 0.61709649]\n", + " [ 0.28090774 -0.57358086 0.76947764]\n", + " [ 0.28090774 -0.57358086 0.76947764]\n", + " [ 0.15120948 -0.76353054 0.62781909]\n", + " [ 0.18514405 -0.75313234 0.63127914]\n", + " [ 0.21859065 -0.74177111 0.63402977]\n", + " [ 0.251357 -0.72953416 0.63608142]\n", + " [ 0.28325527 -0.71652383 0.63746377]\n", + " [ 0.31410008 -0.70285687 0.63822673]\n", + " [ 0.1424539 -0.74276976 0.65421707]\n", + " [ 0.17673797 -0.73229734 0.65765059]\n", + " [ 0.21054552 -0.72088403 0.66030053]\n", + " [ 0.24368362 -0.70861836 0.66217695]\n", + " [ 0.27596556 -0.69560355 0.66330891]\n", + " [ 0.30720861 -0.68195667 0.66374541]\n", + " [ 0.13332132 -0.7206413 0.68036868]\n", + " [ 0.16789225 -0.71011774 0.68377261]\n", + " [ 0.20199874 -0.69868141 0.68632412]\n", + " [ 0.23544666 -0.68642173 0.68803348]\n", + " [ 0.26804984 -0.6734425 0.68892996]\n", + " [ 0.2996279 -0.6598608 0.68906229]\n", + " [ 0.12385604 -0.69722201 0.70607446]\n", + " [ 0.15864972 -0.68667141 0.7094453 ]\n", + " [ 0.1929924 -0.67524249 0.71189993]\n", + " [ 0.2266885 -0.66302505 0.71344944]\n", + " [ 0.25955189 -0.65012291 0.71412395]\n", + " [ 0.29140382 -0.63665274 0.71397276]\n", + " [ 0.11410622 -0.67260871 0.73114792]\n", + " [ 0.14905655 -0.66205595 0.73448217]\n", + " [ 0.18357129 -0.6506657 0.73684172]\n", + " [ 0.21745347 -0.63852756 0.73823881]\n", + " [ 0.25051659 -0.62574468 0.73870497]\n", + " [ 0.28258276 -0.61243284 0.73829059]\n", + " [ 0.10412475 -0.64692032 0.75541521]\n", + " [ 0.13916374 -0.63639059 0.75870974]\n", + " [ 0.17378486 -0.62507034 0.76097693]\n", + " [ 0.20779006 -0.6130483 0.76223033]\n", + " [ 0.24099228 -0.60042638 0.76250304]\n", + " [ 0.2732137 -0.58731908 0.76184682]]\n", + "DEBUG:root:optics_fp: sphi: [-0.69769794 -0.64235507 -0.57476766 -0.49298514 -0.3957089 -0.2830686\n", + " -0.15742033 -0.02367621 -0.69769794 -0.74794907 -0.80074179 -0.85419896\n", + " -0.90526286 -0.94964993 -0.98232909 -0.99869566 -0.02367621 -0.02736175\n", + " -0.03241859 -0.03978624 -0.05151501 -0.07309024 -0.12571151 -0.42571889\n", + " -0.99869566 -0.99823823 -0.9974915 -0.99614906 -0.99336052 -0.98598731\n", + " -0.95418866 -0.42571889 -0.67511001 -0.59931613 -0.50314502 -0.38390211\n", + " -0.24191766 -0.08261364 -0.71905021 -0.78254183 -0.84810727 -0.91061956\n", + " -0.96223874 -0.99379078 -0.02564534 -0.03110765 -0.0395524 -0.05433448\n", + " -0.08682898 -0.21460065 -0.99849345 -0.99774863 -0.99628049 -0.99273464\n", + " -0.98014573 -0.8538262 -0.69769342 -0.69769342 -0.42932191 -0.42932191\n", + " -0.69708495 -0.76318092 -0.83275412 -0.90048226 -0.95754529 -0.99297505\n", + " -0.62248778 -0.69484721 -0.77604065 -0.86112562 -0.93845597 -0.98955174\n", + " -0.52603734 -0.60069232 -0.69134517 -0.7964549 -0.90385712 -0.98288677\n", + " -0.40403745 -0.47277862 -0.5641406 -0.68508654 -0.83347293 -0.9672195\n", + " -0.25604158 -0.30626107 -0.37909286 -0.49115758 -0.670714 -0.9159737\n", + " -0.08771884 -0.10632422 -0.13488237 -0.1841056 -0.28761277 -0.6039685 ]\n", + "DEBUG:root:optics_fp: cphi: [-0.7172644 -0.76741791 -0.81945139 -0.87124824 -0.91956549 -0.96011654\n", + " -0.98818444 -0.99982014 -0.7172644 -0.66450587 -0.59954537 -0.52014772\n", + " -0.4245785 -0.31242949 -0.18558325 -0.04879815 -0.99982014 -0.99975708\n", + " -0.99965502 -0.99947397 -0.99910595 -0.99816919 -0.99442317 -0.92363168\n", + " -0.04879815 -0.05662794 -0.06748483 -0.0835374 -0.10965891 -0.1594742\n", + " -0.28942109 -0.92363168 -0.73864972 -0.80160861 -0.86540808 -0.92455295\n", + " -0.97121348 -0.99694372 -0.69578694 -0.62321886 -0.53007115 -0.41291013\n", + " -0.27109351 -0.10929135 -0.99978591 -0.99968066 -0.99947617 -0.99899494\n", + " -0.99737425 -0.98288834 -0.05243384 -0.06399014 -0.08214824 -0.11477511\n", + " -0.19009076 -0.51584618 -0.71726898 -0.71726898 -0.92175016 -0.92175016\n", + " -0.71788499 -0.64689125 -0.55397779 -0.43461417 -0.2871469 -0.11621293\n", + " -0.78371934 -0.72014369 -0.63135242 -0.50838973 -0.34426777 -0.14160207\n", + " -0.85170189 -0.80076273 -0.72365733 -0.60523038 -0.42694461 -0.18103644\n", + " -0.91599489 -0.882DEBUG:root:optics_fp: xyfp: [[-32.31281793 -31.43806373]\n", + " [-32.31091541 -27.05163558]\n", + " [-32.30901287 -22.66520742]\n", + " [-32.30711034 -18.27877926]\n", + " [-32.3052078 -13.8923511 ]\n", + " [-32.30330527 -9.50592294]\n", + " [-32.30140274 -5.11949478]\n", + " [-32.2995002 -0.73306663]\n", + " [-32.31281793 -31.43806373]\n", + " [-27.92638978 -31.43996627]\n", + " [-23.53996162 -31.4418688 ]\n", + " [-19.15353346 -31.44377134]\n", + " [-14.7671053 -31.44567387]\n", + " [-10.38067715 -31.44757641]\n", + " [ -5.99424899 -31.44947894]\n", + " [ -1.60782083 -31.45138147]\n", + " [-32.2995002 -0.73306663]\n", + " [-27.91307204 -0.73496916]\n", + " [-23.52664389 -0.73687169]\n", + " [-19.14021573 -0.73877423]\n", + " [-14.75378757 -0.74067676]\n", + " [-10.36735941 -0.74257929]\n", + " [ -5.98093125 -0.74448183]\n", + " [ -1.59450309 -0.74638436]\n", + " [ -1.60782083 -31.45138147]\n", + " [ -1.60591829 -27.06495331]\n", + " [ -1.60401576 -22.67852516]\n", + " [ -1.60211323 -18.292097 ]\n", + " [ -1.60021069 -13.90566884]\n", + " [ -1.59830816 -9.51924068]\n", + " [ -1.59640563 -5.13281252]\n", + " [ -1.59450309 -0.74638436]\n", + " [-32.29698843 -29.52557043]\n", + " [-32.29465669 -24.14957093]\n", + " [-32.29232495 -18.77357144]\n", + " [-32.2899932 -13.39757194]\n", + " [-32.28766146 -8.02157244]\n", + " [-32.28532972 -2.64557295]\n", + " [-30.40031161 -31.42389325]\n", + " [-25.02431212 -31.42622499]\n", + " [-19.64831262 -31.42855673]\n", + " [-14.27231313 -31.43088848]\n", + " [ -8.89631363 -31.43322022]\n", + " [ -3.52031414 -31.43555196]\n", + " [-30.38700689 -0.74889614]\n", + " [-25.01100739 -0.75122788]\n", + " [-19.6350079 -0.75355962]\n", + " [-14.25900841 -0.75589136]\n", + " [ -8.88300892 -0.7582231 ]\n", + " [ -3.50700942 -0.76055484]\n", + " [ -1.62199131 -29.53887515]\n", + " [ -1.61965957 -24.16287565]\n", + " [ -1.61732783 -18.78687616]\n", + " [ -1.61499609 -13.41087666]\n", + " [ -1.61266434 -8.03487716]\n", + " [ -1.6103326 -2.65887768]\n", + " [-32.29781143 -31.42307024]\n", + " [-32.29781143 -31.42307024]\n", + " [ -1.60950959 -0.76137785]\n", + " [ -1.60950959 -0.76137785]\n", + " [-30.3994886 -29.52639343]\n", + " [-25.02348911 -29.52872517]\n", + " [-19.64748962 -29.53105692]\n", + " [-14.27149012 -29.53338866]\n", + " [ -8.89549063 -29.5357204 ]\n", + " [ -3.51949113 -29.53805214]\n", + " [-30.39715686 -24.15039394]\n", + " [-25.02115737 -24.15272568]\n", + " [-19.64515788 -24.15505742]\n", + " [-14.26915838 -24.15738916]\n", + " [ -8.89315889 -24.1597209 ]\n", + " [ -3.51715939 -24.16205264]\n", + " [-30.39482512 -18.77439444]\n", + " [-25.01882563 -18.77672618]\n", + " [-19.64282613 -18.77905793]\n", + " [-14.26682664 -18.78138967]\n", + " [ -8.89082714 -18.78372141]\n", + " [ -3.51482765 -18.78605315]\n", + " [-30.39249338 -13.39839495]\n", + " [-25.01649389 -13.40072669]\n", + " [-19.64049439 -13.40305843]\n", + " [-14.2644949 -13.40539017]\n", + " [ -8.8884954 -13.40772191]\n", + " [ -3.51249591 -13.41005365]\n", + " [-30.39016163 -8.02239545]\n", + " [-25.01416214 -8.02472719]\n", + " [-19.63816265 -8.02705893]\n", + " [-14.26216315 -8.02939068]\n", + " [ -8.88616366 -8.03172242]\n", + " [ -3.51016417 -8.03405416]\n", + " [-30.3878299 -2.64639596]\n", + " [-25.01183041 -2.6487277 ]\n", + " [-19.63583091 -2.65105944]\n", + " [-14.25983141 -2.65339118]\n", + " [ -8.88383191 -2.65572292]\n", + " [ -3.50783243 -2.65805467]]\n", + "DEBUG:root:cartToSphere: vec: [[0.20622014 0.20255556 0.95731108]\n", + " [0.20805053 0.17610143 0.96213474]\n", + " [0.20961035 0.14895462 0.96637261]\n", + " [0.210899 0.12122494 0.96996192]\n", + " [0.21191543 DEBUG:root:optics_fp: xyfp: [[32.2358199 31.31614388]\n", + " [32.23338667 26.92971599]\n", + " [32.23095344 22.54328809]\n", + " [32.2285202 18.15686019]\n", + " [32.22608698 13.7704323 ]\n", + " [32.22365375 9.3840044 ]\n", + " [32.22122051 4.99757651]\n", + " [32.21878728 0.61114861]\n", + " [32.2358199 31.31614388]\n", + " [27.849392 31.31857712]\n", + " [23.46296411 31.32101035]\n", + " [19.07653621 31.32344358]\n", + " [14.69010831 31.3258768 ]\n", + " [10.30368042 31.32831004]\n", + " [ 5.91725252 31.33074327]\n", + " [ 1.53082462 31.3331765 ]\n", + " [32.21878728 0.61114861]\n", + " [27.83235938 0.61358184]\n", + " [23.44593149 0.61601507]\n", + " [19.0595036 0.6184483 ]\n", + " [14.6730757 0.62088153]\n", + " [10.2866478 0.62331476]\n", + " [ 5.90021991 0.625748 ]\n", + " [ 1.513792 0.62818122]\n", + " [ 1.53082462 31.3331765 ]\n", + " [ 1.52839139 26.94674861]\n", + " [ 1.52595816 22.5603207 ]\n", + " [ 1.52352493 18.17389281]\n", + " [ 1.5210917 13.78746492]\n", + " [ 1.51865847 9.40103702]\n", + " [ 1.51622524 5.01460912]\n", + " [ 1.513792 0.62818122]\n", + " [32.219759 29.4036525 ]\n", + " [32.21677684 24.02765333]\n", + " [32.21379467 18.65165415]\n", + " [32.21081251 13.27565498]\n", + "6498 -0.8273004 -0.72987289 -0.55253697 -0.25009805\n", + " -0.96766665 -0.95325615 -0.92710821 -0.87335662 -0.74384256 -0.39763019\n", + " -0.99654822 -0.99489972 -0.99173015 -0.984408 -0.96090466 -0.80346296]\n", + " [32.20783035 7.89965581]\n", + " [32.20484818 2.52365664]\n", + " [30.32331188 31.30220479]\n", + " [24.9473127 31.30518695]\n", + " [19.57131353 31.30816912]\n", + " [14.19531435 31.31115127]\n", + " [ 8.81931518 31.31413344]\n", + " [ 3.44331601 31.3171156 ]\n", + " [30.3062959 0.62720951]\n", + " [24.93029672 0.63019167]\n", + " [19.55429755 0.63317383]\n", + " [14.17829838 0.636156 ]\n", + " [ 8.80229921 0.63913816]\n", + " [ 3.42630004 0.64212033]\n", + " [ 1.54476372 29.42066847]\n", + " [ 1.54178156 24.0446693 ]\n", + " [ 1.53879939 18.66867013]\n", + " [ 1.53581723 13.29267096]\n", + " [ 1.53283507 7.91667178]\n", + " [ 1.5298529 2.54067261]\n", + " [32.22081158 31.30115221]\n", + " [32.22081158 31.30115221]\n", + " [ 1.52880032 0.6431729 ]\n", + " [ 1.52880032 0.6431729 ]\n", + " [30.32225929 29.40470508]\n", + " [24.94626012 29.40768724]\n", + " [19.57026095 29.41066941]\n", + " [14.19426178 29.41365157]\n", + " [ 8.8182626 29.41663373]\n", + " [ 3.44226343 29.4196159 ]\n", + " [30.31927713 24.02870591]\n", + " [24.94327796 24.03168807]\n", + " [19.56727878 24.03467023]\n", + " [14.19127961 24.0376524 ]\n", + " [ 8.81528044 24.04063456]\n", + " [ 3.43928127 24.04361672]\n", + " [30.31629496 18.65270673]\n", + " [24.9402958 18.6556889 ]\n", + " [19.56429662 18.65867106]\n", + " [14.18829744 18.66165322]\n", + " [ 8.81229827 18.66463538]\n", + " [ 3.4362991 18.66761755]\n", + " [30.31331281 13.27670756]\n", + " [24.93731363 13.27968972]\n", + " [19.56131446 13.28267189]\n", + " [14.18531529 13.28565406]\n", + " [ 8.80931611 13.28863621]\n", + " [ 3.43331694 13.29161838]\n", + " [30.31033064 7.90070839]\n", + " [24.93433147 7.90369055]\n", + " [19.55833229 7.90667271]\n", + " [14.18233312 7.90965488]\n", + " [ 8.80633395 7.91263704]\n", + " [ 3.43033477 7.9156192 ]\n", + " [30.30734847 2.52470921]\n", + " [24.9313493 2.52769138]\n", + " [19.55535013 2.53067354]\n", + " [14.17935096 2.53365571]\n", + " [ 8.80335178 2.53663787]\n", + " [ 3.42735261 2.53962004]]\n", + "DEBUG:root:mm_to_pix: fitpx: [[0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]]\n", + "DEBUG:root:optics_fp: xyfp shape: (96, 2)\n", + "564218 -0.39857594 -0.28602322\n", + " -0.16028704 -0.02625833 -0.69950626 -0.74976466 -0.80249804 -0.85580559\n", + " -0.90661236 -0.95063766 -0.98288738 -0.9988295 -0.02625833 -0.03044512\n", + " -0.03619555 -0.04458562 -0.05797023 -0.08267725 -0.1433448 -0.49145128\n", + " -0.9988295 -0.99842512 -0.99776702 -0.99658828 -0.99415152 -0.98775305\n", + " -0.96047273 -0.49145128 -0.67703879 -0.60160056 -0.50577425 -0.38678764\n", + " -0.24486582 -0.08534494 -0.72086938 -0.78432831 -0.84973726 -0.91193438\n", + " -0.96308661 -0.99410379 -0.02842926 -0.03462403 -0.04421613 -0.06104888\n", + " -0.09822663 -0.24609363 -0.99864895 -0.99799091 -0.99669933 -0.99359795\n", + " -0.98268894 -0.87478002 -0.69950278 -0.69950278 -0.49425605 -0.49425605\n", + " -0.69903398 -0.76512562 -0.83456026 -0.9019653 -0.95851534 -0.99333513\n", + " -0.6248328 -0.69731062 -0.77847269 -0.8632584 -0.93993324 -0.99011458\n", + " -0.52878304 -0.60375411 -0.69461576 -0.79961451 -0.90627261 -0.98386124\n", + " -0.40710127 -0.47641382 -0.56840284 -0.68980596 -0.837772 -0.96921207\n", + " -0.25921116 -0.31021694 -0.38416098 -0.49776006 -0.67878801 -0.92148149\n", + " -0.09066564 -0.11006805 -0.13988178 -0.19134252 -0.29970307 -0.6279425 ]\n", + "DEBUG:root:radec2pix: curVec Shape: (96, 3)\n", + "0.09302239 0.9728508 ]\n", + " [0.21265818 0.06445739 0.97499833]\n", + " [0.21312568 0.03564119 0.97637449]\n", + " [0.21331667 0.00668594 0.97696023]\n", + " [0.20622014 0.20255556 0.95731108]\n", + " [0.17982824 0.20441077 0.96222557]\n", + " [0.1527297 0.20600074 0.96655954]\n", + " [0.12503427 0.2073248 0.97024886]\n", + " [0.09685185 0.20838186 0.97324032]\n", + " [0.06829276 0.20917033 0.97549161]\n", + " [0.03946812 0.20968847 0.97697135]\n", + " [0.01049004 0.20993479 0.97765911]\n", + " [0.21331667 0.00668594 0.97696023]\n", + " [0.18597713 0.00675821 0.98253083]\n", + " [0.1579279 0.00682246 0.98742708]\n", + " [0.12927353 0.00687853 0.99158512]\n", + " [0.10011961 0.00692617 0.9949513 ]\n", + " [0.07057467 0.0069651 0.99748218]\n", + " [0.04075124 0.00699507 0.99914484]\n", + " [0.01076573 0.00701584 0.99991744]\n", + " [0.01049004 0.20993479 0.97765911]\n", + " [0.01056977 0.18250233 0.9831486 ]\n", + " [0.01063642 0.15437326 0.98795534]\n", + " [0.01068985 0.12565215 0.99201677]\n", + " [0.01072978 0.09644485 0.99528049]\n", + " [0.01075592 0.06686038 0.99770436]\n", + " [0.01076796 0.03701177 0.99925681]\n", + " [0.01076573 0.00701584 0.99991744]\n", + " [0.20696213 0.19112005 0.95949977]\n", + " [0.20902258 0.15821703 0.96502691]\n", + " [0.21067623 0.12438266 0.96961048]\n", + " [0.21192136 0.08981934 0.97315046]\n", + " [0.21275532 0.05473042 0.9755715 ]\n", + " [0.21317532 0.0193211 0.9768229 ]\n", + " [0.1948134 0.20330747 0.95953833]\n", + " [0.16197729 0.20540191 0.96518051]\n", + " [0.1281888 0.20709749 0.96988569]\n", + " [0.09365018 0.2083924 0.97355136]\n", + " [0.05856456 0.20928375 0.97609964]\n", + " [0.02313694 0.20976841 0.97747731]\n", + " [0.20149034 0.00681796 0.97946677]\n", + " [0.16749252 0.00690216 0.98584919]\n", + " [0.1325326 0.00697398 0.99115411]\n", + " [0.09680441 0.00703299 0.99527858]\n", + " [0.0605079 0.00707868 0.99814262]\n", + " [0.02385188 0.00711058 0.99969022]\n", + " [0.01062602 0.19806614 0.98013106]\n", + " [0.01071595 0.16396327 0.98640824]\n", + " [0.0107859 0.12891793 0.99159661]\n", + " [0.01083545 0.09312436 0.99559552]\n", + " [0.01086402 0.05678335 0.99832741]\n", + " [0.01087112 0.02010461 0.99973878]\n", + " [0.20613793 0.2024732 0.95734621]\n", + " [0.20613793 0.2024732 0.95734621]\n", + " [0.01086844 0.00711848 0.9999156 ]\n", + " [0.01086844 0.00711848 0.9999156 ]\n", + " [0.19558949 0.19190537 0.96172609]\n", + " [0.1626169 0.19387759 0.96745399]\n", + " [0.12869151 0.19547539 0.9722283 ]\n", + " [0.09401511 0.1966967 0.9759465 ]\n", + " [0.05879055 0.19753824 0.97853069]\n", + " [0.02322296 0.19799645 0.9799276 ]\n", + " [0.19753009 0.15886347 0.96733875]\n", + " [0.16421774 0.1604891 0.97328094]\n", + " [0.12995114 0.1618095 0.97822819]\n", + " [0.09493033 0.16282181 0.98207805]\n", + " [0.05935726 0.16352163 0.98475245]\n", + " [0.02343764 0.16390447 0.98619775]\n", + " [0.19908829 0.12488974 0.97199095]\n", + " [0.16550536 0.12616714 0.97810522]\n", + " [0.13096617 0.12720791 0.98319175]\n", + " [0.09566871 0.12800859 0.98714806]\n", + " [0.05981412 0.1285643 0.9898957 ]\n", + " [0.02360896 0.12887024 0.99138039]\n", + " [0.20026215 0.09018615 0.97558266]\n", + " [0.16647694 0.09111203 0.98182688]\n", + " [0.13173312 0.09186896 0.98701899]\n", + " [0.09622682 0.09245358 0.99105637]\n", + " [0.06015857 0.0928614 0.99386 ]\n", + " [0.02373584 0.09308815 0.99537491]\n", + " [0.20104857 0.05495583 0.97803851]\n", + " [0.16712825 0.05552612 0.98437036]\n", + " [0.13224724 0.05599434 0.98963392]\n", + " [0.09660024 0.05635799 0.99372641]\n", + " [0.06038739 0.05661388 0.99656823]\n", + " [0.02381698 0.05675899 0.99810379]\n", + " [0.20144435 0.01940412 0.97930774]\n", + " [0.16745515 0.01961547 0.98568454]\n", + " [0.13250401 0.01979108 0.99098486]\n", + " [0.09678486 0.01992994 0.99510577]\n", + " [0.06049766 0.02003078 0.99796733]\n", + " [0.02385117 0.02009239 0.99951359]]\n", + "DEBUG:root:optics_fp: xyfp shape: (96, 2)\n", + "DEBUG:root:optics_fp: xyfp: [[32.23341696 31.55141621]\n", + " [32.23194958 27.16498788]\n", + " [32.2304822 22.77855956]\n", + " [32.22901483 18.39213124]\n", + " [32.22754745 14.00570291]\n", + " [32.22608007 9.61927458]\n", + " [32.22461269 5.23284626]\n", + " [32.2231453 0.84641793]\n", + " [32.23341696 31.55141621]\n", + " [27.84698864 31.5528836 ]\n", + " [23.46056031 31.55435097]\n", + " [19.07413198 31.55581835]\n", + " [14.68770366 31.55728573]\n", + " [10.30127533 31.55875311]\n", + " [ 5.91484701 31.56022049]\n", + " [ 1.52841868 31.56168787]\n", + " [32.2231453 0.84641793]\n", + " [27.83671698 0.84788531]\n", + " [23.45028865 0.84935269]\n", + " [19.06386033 0.85082007]\n", + " [14.677432 0.85228745]\n", + " [10.29100367 0.85375483]\n", + " [ 5.90457535 0.85522221]\n", + " [ 1.51814702 0.85668959]\n", + " [ 1.52841868 31.56168787]\n", + " [ 1.5269513 27.17525955]\n", + " [ 1.52548392 22.78883122]\n", + " [ 1.52401654 18.4024029 ]\n", + " [ 1.52254916 14.01597457]\n", + " [ 1.52108178 9.62954624]\n", + " [ 1.5196144 5.24311792]\n", + " [ 1.51814702 0.85668959]\n", + " [32.21777718 29.63892134]\n", + " [32.21597876 24.26292164]\n", + " [32.21418034 18.88692194]\n", + " [32.21238193 13.51092224]\n", + " [32.21058351 8.13492254]\n", + " [32.20878509 2.75892284]\n", + " [30.32091205 31.53705599]\n", + " [24.94491236 31.53885442]\n", + " [19.56891265 31.54065283]\n", + " [14.19291295 31.54245125]\n", + " [ 8.81691325 31.54424967]\n", + " [ 3.44091356 31.54604808]\n", + " [30.31065043 0.86205771]\n", + " [24.93465073 0.86385613]\n", + " [19.55865103 0.86565455]\n", + " [14.18265134 0.86745297]\n", + " [ 8.80665163 0.86925139]\n", + " [ 3.43065193 0.8710498 ]\n", + " [ 1.5427789 29.64918296]\n", + " [ 1.54098048 24.27318326]\n", + " [ 1.53918206 18.89718357]\n", + " [ 1.53738364 13.52118387]\n", + " [ 1.53558522 8.14518416]\n", + " [ 1.5337868 2.76918446]\n", + " [32.21841195 31.53642123]\n", + " [32.21841195 31.53642123]\n", + " [ 1.53315204 0.87168457]\n", + " [ 1.53315204 0.87168457]\n", + " [30.32027729 29.6395561 ]\n", + " [24.94427759 29.64135452]\n", + " [19.56827789 29.64315294]\n", + " [14.19227819 29.64495136]\n", + " [ 8.81627849 29.64674978]\n", + " [ 3.44027879 29.6485482 ]\n", + " [30.31847887 24.2635564 ]\n", + " [24.94247917 24.26535482]\n", + " [19.56647947 24.26715324]\n", + " [14.19047977 24.26895166]\n", + " [ 8.81448007 24.27075007]\n", + " [ 3.43848037 24.2725485 ]\n", + " [30.31668045 18.8875567 ]\n", + " [24.94068075 18.88935513]\n", + " [19.56468105 18.89115354]\n", + " [14.18868135 18.89295196]\n", + " [ 8.81268165 18.89475038]\n", + " [ 3.43668195 18.89654879]\n", + " [30.31488203 13.51155701]\n", + " [24.93888233 13.51335542]\n", + " [19.56288263 13.51515384]\n", + " [14.18688293 13.51695226]\n", + " [ 8.81088324 13.51875068]\n", + " [ 3.43488354 13.5205491 ]\n", + " [30.31308361 8.13555731]\n", + " [24.93708392 8.13735572]\n", + " [19.56108422 8.13915414]\n", + " [14.18508451 8.14095256]\n", + " [ 8.80908482 8.14275098]\n", + " [ 3.43308512 8.1445494 ]\n", + " [30.31128519 2.75955761]\n", + " [24.93528549 2.76135602]\n", + " [19.5592858 2.76315444]\n", + " [14.18328609 2.76495286]\n", + " [ 8.8072864 2.76675128]\n", + " [ 3.4312867 2.7685497 ]]\n", + "DEBUG:root:mm_to_pix: fitpx.shape: (96, 2)\n", + "DEBUG:root:optics_fp: sphi: [-0.69680111 -0.64114722 -0.57314869 -0.49084265 -0.39293677 -0.27960013\n", + " -0.15326941 -0.01896529 -0.69680111 -0.74728304 -0.80034077 -0.85407631\n", + " -0.90539113 -0.94994095 -0.98262854 -0.99880866 -0.01896529 -0.02204027\n", + " -0.02626479 -0.03243122 -0.04227651 -0.06048361 -0.10546358 -0.38328124\n", + " -0.99880866 -0.99839535 -0.9977203 -0.99650464 -0.99396928 -0.9872021\n", + " -0.95720188 -0.38328124 -0.67408945 -0.59784918 -0.50106771 -0.3810536\n", + " -0.23821077 -0.07812313 -0.71824824 -0.78204748 -0.84795317 -0.91077177\n", + " -0.96255302 -0.99400976 -0.02069125 -0.02527007 -0.03236333 -0.04482319\n", + " -0.07241971 -0.18420237 -0.9986244 -0.99795053 -0.99662012 -0.9933915\n", + " -0.98176652 -0.85668122 -0.6967964 -0.6967964 -0.38778427 -0.38778427\n", + " -0.69616172 -0.76258227 -0.83253145 -0.90061674 -0.95788656 -0.99322432\n", + " -0.62111512 -0.69382495 -0.77549605 -0.8611271 -0.93887151 -0.98992366\n", + " -0.52402662 -0.59898168 -0.69015945 -0.79605037 -0.90427778 -0.98347639\n", + " -0.40118994 -0.4700312 -0.56175978 -0.68358289 -0.83348839 -0.96822051\n", + " -0.25223255 -0.30DEBUG:root:make_az_asym: xyp: [[-32.31281793 -31.43806373]\n", + " [-32.31091541 -27.05163558]\n", + " [-32.30901287 -22.66520742]\n", + " [-32.30711034 -18.27877926]\n", + " [-32.3052078 -13.8923511 ]\n", + " [-32.30330527 -9.50592294]\n", + " [-32.30140274 -5.11949478]\n", + " [-32.2995002 -0.73306663]\n", + " [-32.31281793 -31.43806373]\n", + " [-27.92638978 -31.43996627]\n", + " [-23.53996162 -31.4418688 ]\n", + " [-19.15353346 -31.44377134]\n", + " [-14.7671053 -31.44567387]\n", + " [-10.38067715 -31.44757641]\n", + " [ -5.99424899 -31.44947894]\n", + " [ -1.60782083 -31.45138147]\n", + " [-32.2995002 -0.73306663]\n", + " [-27.91307204 -0.73496916]\n", + " [-23.52664389 -0.73687169]\n", + " [-19.14021573 -0.73877423]\n", + " [-14.75378757 -0.74067676]\n", + " [-10.36735941 -0.74257929]\n", + " [ -5.98093125 -0.74448183]\n", + " [ -1.59450309 -0.74638436]\n", + " [ -1.60782083 -31.45138147]\n", + " [ -1.60591829 -27.06495331]\n", + " [ -1.60401576 -22.67852516]\n", + " [ -1.60211323 -18.292097 ]\n", + " [ -1.60021069 -13.90566884]\n", + " [ -1.59830816 -9.51924068]\n", + " [ -1.59640563 -5.13281252]\n", + " [ -1.59450309 -0.74638436]\n", + " [-32.29698843 -29.52557043]\n", + " [-32.29465669 -24.14957093]\n", + " [-32.29232495 -18.77357144]\n", + " [-32.2899932 -13.39757194]\n", + " [-32.28766146 -8.02157244]\n", + " [-32.28532972 -2.64557295]\n", + " [-30.40031161 -31.42389325]\n", + " [-25.02431212 -31.42622499]\n", + " [-19.64831262 -31.42855673]\n", + " [-14.27231313 -31.43088848]\n", + " [ -8.89631363 -31.43322022]\n", + " [ -3.52031414 -31.43555196]\n", + " [-30.38700689 -0.74889614]\n", + " [-25.01100739 -0.75122788]\n", + " [-19.6350079 -0.75355962]\n", + " [-14.25900841 -0.75589136]\n", + " [ -8.88300892 -0.7582231 ]\n", + " [ -3.50700942 -0.76055484]\n", + " [ -1.62199131 -29.53887515]\n", + " [ -1.61965957 -24.16287565]\n", + " [ -1.61732783 -18.78687616]\n", + " [ -1.61499609 -13.41087666]\n", + " [ -1.61266434 -8.03487716]\n", + " [ -1.6103326 -2.65887768]\n", + " [-32.29781143 -31.42307024]\n", + " [-32.29781143 -31.42307024]\n", + " [ -1.60950959 -0.76137785]\n", + " [ -1.60950959 -0.76137785]\n", + " [-30.3994886 -29.52639343]\n", + " [-25.02348911 -29.52872517]\n", + " [-19.64748962 -29.53105692]\n", + " [-14.27149012 -29.53338866]\n", + " [ -8.89549063 -29.5357204 ]\n", + " [ -3.51949113 -29.53805214]\n", + " [-30.39715686 -24.15039394]\n", + " [-25.02115737 -24.15272568DEBUG:root:optics_fp: rtanth: [31.5581844 27.17194416 22.78577643 18.39973306 14.01393083 9.62869923\n", + " 5.24546963 0.89418442 31.5581844 31.89890725 32.82747441 34.29617149\n", + " 36.23938733 38.58549624 41.26583765 44.21967554 0.89418442 4.73506565\n", + " 9.08425224 13.45763509 17.83742574 22.21983534 26.60356968 30.98806655\n", + " 44.21967554 41.20406839 38.45324836 36.02791805 33.99780815 32.43720936\n", + " 31.41616867 30.98806655 29.64590075 24.27020709 18.89468775 13.51955065\n", + " 8.14555257 2.77930847 31.61752824 32.43532389 34.09156981 36.4722193\n", + " 39.44633291 42.89063222 2.34966506 7.60940668 12.96487432 18.33236521\n", + " 23.70371309 29.07678054 42.86493558 39.33911823 36.27027014 33.78315439\n", + " 32.01364237 31.08452713 31.54331756 31.54331756 30.97348847 30.97348847\n", + " 29.72484887 30.59328006 32.34398987 34.84424384 37.94616883 41.5151163\n", + " 24.36657877 25.41873926 27.5008582 30.40205338 33.9127594 37.86381389\n", + " 19.01831838 20.34892081 22.89680053 26.31066557 30.29920003 34.66460262\n", + " 13.69180262 15.4870140]\n", + " [-19.64515788 -24.15505742]\n", + " [-14.26915838 -24.15738916]\n", + " [ -8.89315889 -24.1597209 ]\n", + " [ -3.51715939 -24.16205264]\n", + " [-30.39482512 -18.77439444]\n", + " [-25.01882563 -18.77672618]\n", + " [-19.64282613 -18.77905793]\n", + " [-14.26682664 -18.78138967]\n", + " [ -8.89082714 -18.78372141]\n", + " [ -3.51482765 -18.78605315]\n", + " [-30.39249338 -13.39839495]\n", + " [-25.01649389 -13.40072669]\n", + " [-19.64049439 -13.40305843]\n", + " [-14.2644949 -13.40539017]\n", + " [ -8.8884954 -13.40772191]\n", + " [ -3.51249591 -13.41005365]\n", + " [-30.39016163 -8.02239545]\n", + " [-25.01416214 -8.02472719]\n", + " [-19.63816265 -8.02705893]\n", + " [-14.26216315 -8.02939068]\n", + " [ -8.88616366 -8.03172242]\n", + " [ -3.51016417 -8.03405416]\n", + " [-30.3878299 -2.64639596]\n", + " [-25.01183041 -2.6487277 ]\n", + " [-19.63583091 -2.65105944]\n", + " [-14.25983141 -2.65339118]\n", + " [ -8.88383191 -2.65572292]\n", + " [ -3.50783243 -2.65805467]]\n", + "1 18.70915549 22.76005595 27.27289033 32.05313869\n", + " 8.42835902 11.10942753 15.28411843 20.03975859 25.04760117 30.18237029\n", + " 3.52303344 8.04946636 13.22795543 18.51935347 23.84862372 29.19503391]\n", + "DEBUG:root:radec2pix: camVec: [[-0.00174024 -0.00176337 -0.00178449 -0.00180353 -0.00182039 -0.001835\n", + " -0.00184725 -0.00185707 -0.00174024 -0.0307605 -0.05966066 -0.08832819\n", + " -0.11665151 -0.14451993 -0.17182299 -0.19844965 -0.00185707 -0.03187835\n", + " -0.06177226 -0.09142104 -0.12071058 -0.14953103 -0.1777762 -0.20534186\n", + " -0.19844965 -0.20021951 -0.20172864 -0.20297731 -0.20396466 -0.20468905\n", + " -0.20514862 -0.20534186 -0.00185028 -0.00187827 -0.00190298 -0.00192425\n", + " -0.00194192 -0.00195581 -0.0144012 -0.04990298 -0.08511243 -0.11982373\n", + " -0.15383302 -0.18693675 -0.01495442 -0.05167778 -0.08809246 -0.12398684\n", + " -0.15915858 -0.19341315 -0.19916328 -0.201156 -0.20275765 -0.20396715\n", + " -0.20478152 -0.20519745 -0.00183964 -0.00183964 -0.20524866 -0.20524866\n", + " -0.01446124 -0.05010266 -0.08545073 -0.12029942 -0.1544452 -0.18768535\n", + " -0.01461361 -0.05060625 -0.08630213 -0.12149421 -0.15597972 -0.18955833\n", + " -0.01473929 -0.05101673 -0.08699359 -0.12246151 -0.1572181 -0.19106523\n", + " -0.01483744 -0.0513315 -0.08752139 -0.12319735 -0.15815714 -0.19220433\n", + " -0.01490708 -0.05154747 -0.08788092 -0.1236965 -0.15879197 -0.19297207\n", + " -0.01494734 -0.05166195 -0.08806808 -0.12395417 -0.15911791 -0.19336467]\n", + " [ 0.20894107 0.18147259 0.15331081 0.12455987 0.09532558 0.06571725\n", + " 0.03584843 0.00583647 0.20894107 0.20879621 0.2083801 0.20769404\n", + " 0.20673975 0.20551876 0.20403188 0.20227886 0.00583647 0.00584019\n", + " 0.00583613 0.00582438 0.00580507 0.00577839 0.00574449 0.00570348\n", + " 0.20227886 0.17571613 0.1484622 0.12062809 0.09232414 0.06366093\n", + " 0.03474987 0.00570348 0.1970566 0.16291184 0.12782912 0.09200243\n", + " 0.05563309 0.01893178 0.2088187 0.20845876 0.20769278 0.20652378\n", + " 0.20495452 0.20298606 0.00594178 0.00594091 0.00592823 0.00590399\n", + " 0.0058685 0.00582205 0.19079562 0.1577603 0.12379719 0.08910965\n", + " 0.05390131 0.01837776 0.20884841 0.20884841 0.00580307 0.00580307\n", + " 0.19702878 0.19668974 0.195967216337 -0.37479377 -0.48708132 -0.66835488 -0.91754577\n", + " -0.08301599 -0.10086897 -0.12834059 -0.17590022 -0.27687945 -0.59535474]\n", + "DEBUG:root:radec2pix: curVec: [[-0.86287034 0.50536848 0.00758105]\n", + " [-0.84943336 0.5274766 0.0152117 ]\n", + " [-0.83509772 0.54961454 0.02314417]\n", + " [-0.81988748 0.57166701 0.03132649]\n", + " [-0.80383465 0.59352577 0.03971161]\n", + " [-0.78697972 0.6150888 0.04825641]\n", + " [-0.76937205 0.63625991 0.05692075]\n", + " [-0.75106996 0.65694885 0.06566682]\n", + " [-0.86287034 0.50536848 0.00758105]\n", + " [-0.8675505 0.49628653 0.03249319]\n", + " [-0.8716078 0.48676313 0.05797848]\n", + " [-0.87499454 0.47680452 0.08391664]\n", + " [-0.87767078 0.46642434 0.11019233]\n", + " [-0.8796044 0.45564346 0.13669359]\n", + " [-0.88077146 0.44448982 0.16331084]\n", + " [-0.88115659 0.43299795 0.18993639]\n", + " [-0.75106996 0.65694885 0.06566682]\n", + " [-0.75508369 0.64911909 0.09215766]\n", + " [-0.75857082 0.64060992 0.11911858]\n", + " [-0.76148361 0.63142604 0.14643726]\n", + " [-0.76378196 0.62157892 0.1740022 ]\n", + " [-0.76543364 0.61108743 0.2017015 ]\n", + " [-0.76641459 0.59997828 0.22942265]\n", + " [-0.76670935 0.58828601 0.25705318]\n", + " [-0.88115659 0.43299795 0.18993639]\n", + " [-0.86757535 0.45547389 0.19964104]\n", + " [-0.85302213 0.47802891 0.20938387]\n", + " [-0.8375168 0.50055316 0.21911675]\n", + " [-0.82108837 0.52294107 0.22879362]\n", + " [-0.80377603 0.54509063 0.23837009]\n", + " [-0.78562955 0.56690354 0.2478035 ]\n", + " [-0.76670935 0.58828601 0.25705318]\n", + " [-0.85714045 0.51496632 0.010952 ]\n", + " [-0.84006487 0.5420979 0.02051543]\n", + " [-0.82166243 0.56915888 0.03047976]\n", + " [-0.80198872 0.59594715 0.04075642]\n", + " [-0.78111832 0.62227483 0.0512659 ]\n", + " [-0.75914583 0.6479673 0.06193529]\n", + " [-0.86493967 0.50153879 0.01839049]\n", + " [-0.87026311 0.49011135 0.04932532]\n", + " [-0.87460276 0.47802602 0.08100083]\n", + " [-0.87788187 0.46530482 0.11320272]\n", + " [-0.88004135 0.45198618 0.14572477]\n", + " [-0.88104068 0.43812428 0.17836603]\n", + " [-0.75294528 0.65354851 0.07712169]\n", + " [-0.75751744 0.64349448 0.10991897]\n", + " [-0.76125022 0.63242405 0.14331058]\n", + " [-0.764DEBUG:root:make_az_asym: xyp: [[32.2358199 31.31614388]\n", + " [32.23338667 26.92971599]\n", + " [32.23095344 22.54328809]\n", + " [32.2285202 18.15686019]\n", + " [32.22608698 13.7704323 ]\n", + " [32.22365375 9.3840044 ]\n", + " [32.22122051 4.99757651]\n", + " [32.21878728 0.61114861]\n", + " [32.2358199 31.31614388]\n", + " [27.849392 31.31857712]\n", + " [23.46296411 31.32101035]\n", + " [19.07653621 31.32344358]\n", + " [14.69010831 31.3258768 ]\n", + " [10.30368042 31.32831004]\n", + " [ 5.91725252 31.33074327]\n", + " [ 1.53082462 31.3331765 ]\n", + " [32.21878728 0.61114861]\n", + " [27.83235938 0.61358184]\n", + " [23.44593149 0.61601507]\n", + " [19.0595036 0.6184483 ]\n", + " [14.6730757 0.62088153]\n", + " [10.2866478 0.62331476]\n", + " [ 5.90021991 0.625748 ]\n", + " [ 1.513792 0.62818122]\n", + " [ 1.53082462 31.3331765 ]\n", + " [ 1.52839139 26.94674861]\n", + " [ 1.52595816 22.5603207 ]\n", + " [ 1.52352493 18.17389281]\n", + " [ 1.5210917 13.78746492]\n", + " [ 1.51865847 9.40103702]\n", + " [ 1.51622524 5.01460912]\n", + " [ 1.513792 0.62818122]\n", + " [32.219759 29.4036525 ]\n", + " [32.21677684 24.02765333]\n", + " [32.21379467 18.65165415]\n", + " [32.21081251 13.27565498]\n", + " [32.20783035 7.89965581]\n", + " [32.20484818 2.52365664]\n", + " [30.32331188 31.30220479]\n", + " [24.9473127 31.30518695]\n", + " [19.57131353 31.30816912]\n", + " [14.19531435 31.31115127]\n", + " [ 8.81931518 31.31413344]\n", + " [ 3.44331601 31.3171156 ]\n", + " [30.3062959 0.62720951]\n", + " [24.93029672 0.63019167]\n", + " [19.55429755 0.63317383]\n", + " [14.17829838 0.636156 ]\n", + " [ 8.80229921 0.63913816]\n", + " [ 3.42630004 0.64212033]\n", + " [ 1.54476372 29.42066847]\n", + " [ 1.54178156 24.0446693 ]\n", + " [ 1.53879939 18.66867013]\n", + " [ 1.53581723 13.29267096]\n", + " [ 1.53283507 7.91667178]\n", + " [ 1.5298529 2.54067261]\n", + " [32.22081158 31.30115221]\n", + " [32.22081158 31.30115221]\n", + " [ 1.52880032 0.6431729 ]\n", + " [ 1.52880032 0.6431729 ]\n", + " [30.32225929 29.40470508]\n", + " [24.94626012 29.40768724]\n", + " [19.57026095 29.41066941]\n", + " [14.19426178 29.41365157]\n", + " [ 8.8182626 29.41663373]\n", + " [ 3.44226343 29.4196159 ]\n", + " [30.31927713 24.02870591]\n", + " [24.94327796 24.03168807]\n", + " [19.56727878 24.03467023]\n", + " [14.19127961 24.0376524 ]\n", + " [ 8.81528044 24.04063456]\n", + " [ 3.43928127 24.04361672]\n", + " [30.31629496 18.65270673]DEBUG:root:optics_fp: xyfp: [[32.31363499 31.47041645]\n", + " [32.3144687 27.08398795]\n", + " [32.31530242 22.69755946]\n", + " [32.31613613 18.31113097]\n", + " [32.31696984 13.92470248]\n", + " [32.31780355 9.53827398]\n", + " [32.31863726 5.15184549]\n", + " [32.31947097 0.765417 ]\n", + " [32.31363499 31.47041645]\n", + " [27.9272065 31.46958273]\n", + " [23.540778 31.46874902]\n", + " [19.15434951 31.46791531]\n", + " [14.76792102 31.4670816 ]\n", + " [10.38149253 31.46624788]\n", + " [ 5.99506403 31.46541417]\n", + " [ 1.60863554 31.46458045]\n", + " [32.31947097 0.765417 ]\n", + " [27.93304248 0.76458329]\n", + " [23.54661399 0.76374957]\n", + " [19.1601855 0.76291586]\n", + " [14.77375701 0.76208215]\n", + " [10.38732851 0.76124844]\n", + " [ 6.00090002 0.76041472]\n", + " [ 1.61447153 0.75958101]\n", + " [ 1.60863554 31.46458045]\n", + " [ 1.60946926 27.07815197]\n", + " [ 1.61030297 22.69172348]\n", + " [ 1.61113668 18.30529498]\n", + " [ 1.61197039 13.91886648]\n", + " [ 1.6128041 9.53243799]\n", + " [ 1.61363782 5.1460095 ]\n", + " [ 1.61447153 0.75958101]\n", + " [32.29899849 29.55791363]\n", + " [32.30002028 24.18191372]\n", + " [32.30104209 18.80591382]\n", + " [32.30206388 13.42991392]\n", + " [32.30308568 8.05391402]\n", + " [32.30410748 2.67791411]\n", + " [30.40113787 31.45505294]\n", + " [25.02513797 31.45403115]\n", + " [19.64913807 31.45300935]\n", + " [14.27313817 31.45198755]\n", + " [ 8.89713826 31.45096576]\n", + " [ 3.52113836 31.44994396]\n", + " [30.40696816 0.7800535 ]\n", + " [25.03096826 0.7790317 ]\n", + " [19.65496836 0.7780099 ]\n", + " [14.27896845 0.77698811]\n", + " [ 8.90296855 0.77596631]\n", + " [ 3.52696865 0.77494451]\n", + " [ 1.62399904 29.55208334]\n", + " [ 1.62502084 24.17608344]\n", + " [ 1.62604264 18.80008353]\n", + " [ 1.62706443 13.42408364]\n", + " [ 1.62808623 8.04808373]\n", + " [ 1.62910803 2.67208383]\n", + " [32.29863784 31.4554136 ]\n", + " [32.29863784 31.4554136 ]\n", + " [ 1.62946868 0.77458386]\n", + " [ 1.62946868 0.77458386]\n", + " [30.40149852 29.55755297]\n", + " [25.02549862 29.55653118]\n", + " [19.64949872 29.55550938]\n", + " [14.27349882 29.55448759]\n", + " [ 8.89749891 29.55346579]\n", + " [ 3.52149901 29.55244399]\n", + " [30.40252032 24.18155307]\n", + " [25.02652042 24.18053128]\n", + " [19.65052052 24.17950948]\n", + " [14.27452061 24.17848769]\n", + " [ 8.89852071 24.17746589]\n", + " [ 3.52252081 24.17644409]\n", + " [30.40354212 18.80555317]\n", + " [25.02754221 18.80453137]\n", + " [19.65154231 18.80350958]\n", + " [14.27554241 18.80248779]\n", + " [ 8.89954251 18.80146598]\n", + " [ 3.5235426 18.80044419]\n", + " [30.40456392 13.42955327]\n", + " [25.02856401 13.42853147]\n", + " [19.65256411 13.42750967]\n", + " [14.27656421 13.42648788]\n", + " [ 8.9005643 13.42546608]\n", + " [ 3.5245644 13.42444429]\n", + " [30.40558571 8.05355336]\n", + " [25.02958581 8.05253157]\n", + " [19.6535859 8.05150977]\n", + " [14.277586 8.05048797]\n", + " [ 8.9015861 8.04946618]\n", + " [ 3.5255862 8.04844438]\n", + " [30.40660751 2.67755346]\n", + " [25.0306076 2.67653166]\n", + " [19.6546077 2.67550987]\n", + " [14.2786078 2.67448807]\n", + " [ 8.90260789 2.67346627]\n", + " [ 3.52660799 2.67244448]]\n", + "DEBUG:root:radec2pix: xyfp: [[32.23341696 31.55141621]\n", + " [32.23194958 27.16498788]\n", + " [32.2304822 22.77855956]\n", + " [32.22901483 18.39213124]\n", + " [32.22754745 14.00570291]\n", + " [32.22608007 9.61927458]\n", + " [32.22461269 5.23284626]\n", + " [32.2231453 0.84641793]\n", + " [32.23341696 31.55141621]\n", + " [27.84698864 31.5528836 ]\n", + " [23.46056031 31.55435097]\n", + " [19.07413198 31.55581835]\n", + " [14.68770366 31.55728573]\n", + " [10.30127533 31.55875311]\n", + " [ 5.91484701 31.56022049]\n", + " [ 1.52841868 31.56168787]\n", + " [32.2231453 0.84641793]\n", + " [27.83671698 0.84788531]\n", + " [23.45028865 0.84935269]\n", + " [19.06386033 0.85082007]\n", + " [14.677432 0.85228745]\n", + " [10.29100367 0.85375483]\n", + " [ 5.90457535 0.85522221]\n", + " [ 1.51814702 0.85668959]\n", + " [ 1.52841868 31.56168787]\n", + " [ 1.5269513 27.17525955]\n", + " [ 1.52548392 22.78883122]\n", + " [ 1.52401654 18.4024029 ]\n", + " [ 1.52254916 14.01597457]\n", + " [ 1.52108178 9.62954624]\n", + " [ 1.5196144 5.24311792]\n", + " [ 1.51814702 0.85668959]\n", + " [32.21777718 29.63892134]\n", + " [32.21597876 24.26292164]\n", + " [32.21418034 18.88692194]\n", + " [32.21238193 13.51092224]\n", + " [32.21058351 8.13492254]\n", + " [32.20878509 2.75892284]\n", + " [30.32091205 31.53705599]\n", + " [24.94491236 31.53885442]\n", + " [19.56891265 31.54065283]\n", + " [14.19291295 31.54245125]\n", + " [ 8.81691325 31.54424967]\n", + " [ 3.44091356 31.54604808]\n", + " [30.31065043 0.86205771]\n", + " [24.93465073 0.86385613]\n", + " [19.55865103 0.86565455]\n", + " [14.18265134 0.86745297]\n", + " [ 8.80665163 0.86925139]\n", + " [ 3.43065193 0.8710498 ]\n", + " DEBUG:root:optics_fp: xyfp shape: (96, 2)\n", + "DEBUG:root:make_az_asym: xyp: shape: (96, 2)\n", + "[ 1.5427789 29.64918296]\n", + " [ 1.54098048 24.27318326]\n", + " [ 1.53918206 18.89718357]\n", + " [ 1.53738364 13.52118387]\n", + " [ 1.53558522 8.14518416]\n", + " [ 1.5337868 2.76918446]\n", + " [32.21841195 31.53642123]\n", + " [32.21841195 31.53642123]\n", + " [ 1.53315204 0.87168457]\n", + " [ 1.53315204 0.87168457]\n", + " [30.32027729 29.6395561 ]\n", + " [24.94427759 29.64135452]\n", + " [19.56827789 29.64315294]\n", + " [14.19227819 29.64495136]\n", + " [ 8.81627849 29.64674978]\n", + " [ 3.44027879 29.6485482 ]\n", + " [30.31847887 24.2635564 ]\n", + " [24.94247917 24.26535482]\n", + " [19.56647947 24.26715324]\n", + " [14.19047977 24.26895166]\n", + " [ 8.81448007 24.27075007]\n", + " [ 3.43848037 24.2725485 ]\n", + " [30.31668045 18.8875567 ]\n", + " [24.94068075 18.88935513]\n", + " [19.56468105 18.89115354]\n", + " [14.18868135 18.89295196]\n", + " [ 8.81268165 18.89475038]\n", + " [ 3.43668195 18.89654879]\n", + " [30.31488203 13.51155701]\n", + " [24.93888233 13.51335542]\n", + " [19.56288263 13.51515384]\n", + " [14.18688293 13.51695226]\n", + " [ 8.81088324 13.51875068]\n", + " [ 3.43488354 13.5205491 ]\n", + " [30.31308361 8.13555731]\n", + " [24.93708392 8.13735572]\n", + " [19.56108422 8.13915414]\n", + " [14.18508451 8.14095256]\n", + " [ 8.80908482 8.14275098]\n", + " [ 3.43308512 8.1445494 ]\n", + " [30.31128519 2.75955761]\n", + " [24.93528549 2.76135602]\n", + " [19.5592858 2.76315444]\n", + " [14.18328609 2.76495286]\n", + " [ 8.8072864 2.76675128]\n", + " [ 3.4312867 2.7685497 ]]\n", + "DEBUG:root:optics_fp: cphi: [-0.00832855 -0.00971656 -0.01163892 -0.01447769 -0.01909311 -0.02791171\n", + " -0.05146104 -0.30320505 -0.00832855 -0.1457499 -0.27524782 -0.39135911\n", + " -0.49141415 -0.57521551 -0.64415037 -0.70031796 -0.30320505 -0.98362937\n", + " -0.99556659 -0.99797672 -0.99884564 -0.99925418 -0.99947834 -0.99961448\n", + " -0.70031796 -0.75160095 -0.80539882 -0.85964958 -0.91101663 -0.95488339\n", + " -0.98595524 -0.99961448 -0.00938916 -0.01152859 -0.01488525 -0.02091069\n", + " -0.03488457 -0.10276119 -0.06880165 -0.23281216 -0.37919455 -0.50184326\n", + " -0.60029249 -0.67742851 -0.92933123 -0.99345681 -0.99774332 -0.99886819\n", + " -0.99932092 -0.99954725 -0.72211351 -0.78687071 -0.8534883 -0.91636505\n", + " -0.96706125 -0.99601335 -0.00880814 -0.00880814 -0.99960055 -0.99960055\n", + " -0.0731997 -0.24684669 -0.39969867 -0.52530483 -0.62403795 -0.69988601\n", + " -0.08935604 -0.29715482 -0.47014172 -0.60210737 -0.6983006 -0.76741609\n", + " -0.11456071 -0.37126057 -0.56474055 -0.69579203 -0.78162959 -0.83828312\n", + " -0.15923419 -0.48790573 -0.69122322 -0.80440059 -0.86841556 -0.90662579\n", + " -0.25884683 -0.68029192 -0.84621522 -0.91366637 -0.94562561 -0.96286848\n", + " -0.61966627 -0.93908148 -0.97786122 -0.98875506 -0.9932273 -0.99548108]\n", + "DEBUG:root:optics_fp: xyfp shape: (96, 2)\n", + "DEBUG:root:radec2pix: lng: [44.48637088 40.24577336 35.3986005 29.89032997 23.69955042 16.86222735\n", + " 9.49377237 1.79522173 44.48637088 48.66063412 53.44662754 58.90649312\n", + " 65.0719071 71.9184746 79.34035003 87.13941954 1.79522173 2.08115239\n", + " 2.4736322 3.04578526 3.95735654 5.6363423 9.74006464 33.09159725\n", + " 87.13941954 86.68537287 86.05851166 85.13727473 83.65177634 80.86105503\n", + " 73.77851938 33.09159725 42.72105973 37.1234454 30.55748427 22.96885005\n", + " 14.42630836 5.17884001 46.22224274 51.74114431 58.24340245 65.80116251\n", + " 74.36661193 83.70585675 1.93801443 2.35975361 3.01217367 4.15532416\n", + " 6.6725739 16.60005947 86.92909007 86.26070822 85.21749379 83.36321455\n", + " 79.16883097 61.59868241 44.48614146 44.48614146 33.22349754 33.22349754\n", + " 44.45527608 50.01139871 56.64103308 64.45360362 73.42615136 83.31035484\n", + " 38.80796323 44.3420957 51.23163704 59.75644459 70.04944098 81.86211477\n", + " 32.10039047 37.31880048 44.16600061 53.22697224 65.04995068 79.6185637\n", + " 24.24396698 28.69167771 34.89141577 43.85434751 57.06355174 75.69539259\n", + " 15.28811193 18.37837592 22.94811312 30.25991115 43.15274514 67.23630391\n", + " 5.50203766 6.68110194 8.4950185 11.63570463 18.3197087 40.11102427]\n", + "06665 0.62035548 0.17709103]\n", + " [-0.7659074 0.60732358 0.2110543 ]\n", + " [-0.76673175 0.59338078 0.24499323]\n", + " [-0.87535559 0.44282053 0.19406846]\n", + " [-0.85805471 0.47043471 0.20599344]\n", + " [-0.83931267 0.49805792 0.21792786]\n", + " [-0.81917905 0.52549409 0.2297861 ]\n", + " [-0.797726 0.55255544 0.24148646]\n", + " [-0.77504963 0.57906283 0.25295121]\n", + " [-0.86284295 0.50541359 0.00769064]\n", + " [-0.86284295 0.50541359 0.00769064]\n", + " [-0.76677547 0.58825466 0.2569277 ]\n", + " [-0.76677547 0.58825466 0.2569277 ]\n", + " [-0.85923079 0.51112685 0.02172073]\n", + " [-0.86453866 0.49978067 0.05284119]\n", + " [-0.86886624 0.48774902 0.08468971]\n", + " [-0.87213643 0.47505426 0.11705342]\n", + " [-0.87428972 0.46173517 0.1497268 ]\n", + " [-0.87528524 0.44784624 0.18250887]\n", + " [-0.84212889 0.53835789 0.03145962]\n", + " [-0.84737183 0.52724314 0.06305284]\n", + " [-0.85164828 0.51536891 0.09534204]\n", + " [-0.8548802 0.50275806 0.12811783]\n", + " [-0.8570071 0.48944982 0.16117599]\n", + " [-0.85798725 0.47549931 0.19431491]\n", + " [-0.82368743 0.56551819 0.04157147]\n", + " [-0.82883324 0.55463873 0.07356181]\n", + " [-0.83303202 0.54293168 0.1062207 ]\n", + " [-0.83620516 0.53041961 0.13934116]\n", + " [-0.83829156 0.51714148 0.17271928]\n", + " [-0.83924902 0.50315243 0.20615216]\n", + " [-0.80396151 0.59240621 0.05196893 0.19486681 0.19338978 0.1915385\n", + " 0.16288937 0.16260994 0.16201386 0.16110551 0.1598896 0.15836938\n", + " 0.12781212 0.12759366 0.12712576 0.126413 0.12546054 0.12427244\n", + " 0.09199108 0.09183551 0.0914995 0.09098698 0.09030259 0.0894502\n", + " 0.05562756 0.05553685 0.05533649 0.05502916 0.05461804 0.05410588\n", + " 0.0189322 0.01890777 0.01884587 0.01874743 0.01861357 0.01844527]\n", + " [ 0.97792668 0.98339442 0.98817641 0.99221045 0.99544448 0.9978366\n", + " 0.99935553 0.99998124 0.97792668 0.97747528 0.97622658 0.97419778\n", + " 0.97141706 0.96792357 0.96376753 0.95901043 0.99998124 0.99947469\n", + " 0.99807321 0.9957953 0.99267077 0.98874015 0.98405418 0.97867369\n", + " 0.95901043 0.96386513 0.96812423 0.97172479 0.97461514 0.97675467\n", + " 0.97811374 0.97867369 0.98039037 0.98663884 0.99179438 0.99575692\n", + " 0.99844939 0.99981886 0.97784833 0.97675721 0.97448427 0.97107683\n", + " 0.96660698 0.96117184 0.99987052 0.99864614 0.99609466 0.9922663\n", + " DEBUG:root:make_az_asym: xyp: [[32.31363499 31.47041645]\n", + " [32.3144687 27.08398795]\n", + " [32.31530242 22.69755946]\n", + " [32.31613613 18.31113097]\n", + " [32.31696984 13.92470248]\n", + " [32.31780355 9.53827398]\n", + " [32.31863726 5.15184549]\n", + " [32.31947097 0.765417 ]\n", + " [32.31363499 31.47041645]\n", + " [27.9272065 31.46958273]\n", + " [23.540778 31.46874902]\n", + " [19.15434951 31.46791531]\n", + " [14.76792102 31.4670816 ]\n", + " [10.38149253 31.46624788]\n", + " [ 5.99506403 31.46541417]\n", + " [ 1.60863554 31.46458045]\n", + " [32.31947097 0.765417 ]\n", + " [27.93304248 0.76458329]\n", + " [23.54661399 0.76374957]\n", + " [19.1601855 0.76291586]\n", + " [14.77375701 0.76208215]\n", + " [10.38732851 0.76124844]\n", + " [ 6.00090002 0.76041472]\n", + " [ 1.61447153 0.75958101]\n", + " [ 1.60863554 31.46458045]\n", + " [ 1.60946926 27.07815197]\n", + " [ 1.61030297 22.69172348]\n", + " [ 1.61113668 18.30529498]\n", + " [ 1.61197039 13.91886648]\n", + " [ 1.6128041 9.53243799]\n", + " [ 1.61363782 5.1460095 ]\n", + " [ 1.61447153 0.75958101]\n", + " [32.29899849 29.55791363]\n", + " [32.30002028 24.18191372]\n", + " [32.30104209 18.80591382]\n", + " [32.30206388 13.4299139293]\n", + " [-0.80897649 0.5817674 0.08428365]\n", + " [-0.81306965 0.57023844 0.11724278]\n", + " [-0.81616228 0.55784094 0.15064071]\n", + " [-0.8181932 0.54461298 0.18427314]\n", + " [-0.81912019 0.53060925 0.21793563]\n", + " [-0.78302546 0.61883416 0.06257333]\n", + " [-0.78787523 0.60844128 0.09514114]\n", + " [-0.79183422 0.59710103 0.12833134]\n", + " [-0.79482416 0.58483365 0.16193874]\n", + " [-0.79678434 0.57167594 0.19575835]\n", + " [-0.79767293 0.55768177 0.22958429]\n", + " [-0.76097393 0.64462704 0.07331211]\n", + " [-0.76562439 0.63448414 0.10606209]\n", + " [-0.76942102 0.62334192 0.13941358]\n", + " [-0.77228644 0.61121914 0.17316127]\n", + " [-0.77416089 0.59815113 0.20709936]\n", + " [-0.77500331 0.5841907 0.24102094]]\n", + "DEBUG:root:optics_fp: xyfp: [[32.2358199 31.31614388]\n", + " [32.23338667 26.92971599]\n", + " [32.23095344 22.54328809]\n", + " [32.2285202 18.15686019]\n", + " [32.22608698 13.7704323 ]\n", + " [32.22365375 9.3840044 ]\n", + " [32.22122051 4.99757651]\n", + " [32.21878728 0.61114861]\n", + " [32.2358199 31.31614388]\n", + " [27.849392 31.31857712]\n", + " [23.46296411 31.32101035]\n", + " [19.07DEBUG:root:make_az_asym: xyp: [[32.23341696 31.55141621]\n", + " [32.23194958 27.16498788]\n", + " [32.2304822 22.77855956]\n", + " [32.22901483 18.39213124]\n", + " [32.22754745 14.00570291]\n", + " [32.22608007 9.61927458]\n", + " [32.22461269 5.23284626]\n", + " [32.2231453 0.84641793]\n", + " [32.23341696 31.55141621]\n", + " [27.84698864 31.5528836 ]\n", + " [23.46056031 31.55435097]\n", + " [19.07413198 31.55581835]\n", + " [14.68770366 31.55728573]\n", + " [10.30127533 31.55875311]\n", + " [ 5.91484701 31.56022049]\n", + " [ 1.52841868 31.56168787]\n", + " [32.2231453 0.84641793]\n", + " [27.83671698 0.84788531]\n", + " [23.45028865 0.84935269]\n", + " [19.06386033 0.85082007]\n", + " [14.677432 0.85228745]\n", + " [10.29100367 0.85375483]\n", + " [ 5.90457535 0.85522221]\n", + " [ 1.51814702 0.85668959]\n", + " [ 1.52841868 31.56168787]\n", + " [ 1.5269513 27.17525955]\n", + " [ 1.52548392 22.78883122]\n", + " [ 1.52401654 18.4024029 ]\n", + " [ 1.52254916 14.01597457]\n", + " [ 1.52108178 9.62954624]\n", + " [ 1.5196144 5.24311792]\n", + " [ 1.51814702 0.85668959]\n", + " [32.21777718 29.63892134]\n", + " [32.21597876 24.26292164]\n", + " [32.21418034 18.88692194]\n", + " [32.21238193 13.51092224 0.98723559 0.98110013 0.96121331 0.96677192 0.97137201 0.97491378\n", + " 0.97732245 0.97854804 0.9779463 0.9779463 0.97869265 0.97869265\n", + " 0.98029105 0.9791848 0.97688011 0.97342435 0.96888961 0.96337283\n", + " 0.98653611 0.98539181 0.98300735 0.97943054 0.97473363 0.9690133\n", + " 0.99168887 0.99051358 0.98806435 0.98438962 0.97956221 0.97367882\n", + " 0.99564928 0.99445026 0.99195154 0.9882023 0.98327604 0.97726975\n", + " 0.9983403 0.99712513 0.99459279 0.9907931 0.98580017 0.97971135\n", + " 0.99970903 0.99848562 0.99593617 0.99211083 0.9870841 0.98095356]]\n", + "DEBUG:root:optics_fp: sphi: [0.99996532 0.99995279 0.99993227 0.99989519 0.99981771 0.99961039\n", + " 0.998675 0.95292534 0.99996532 0.98932147 0.96137331 0.92023804\n", + " 0.87092602 0.8180019 0.76489888 0.71383104 0.95292534 0.18020339\n", + " 0.09405934 0.06358046 0.04803532 0.03861462 0.0322962 0.02776482\n", + " 0.71383104 0.65961808 0.59273329 0.51088414 0.41236963 0.296981\n", + " 0.16700975 0.02776482 0.99995592 0.99993354 0.9\n", + " [24.9402958 18.6556889 ]\n", + " [19.56429662 18.65867106]\n", + " [14.18829744 18.66165322]\n", + " [ 8.81229827 18.66463538]\n", + " [ 3.4362991 18.66761755]\n", + " [30.31331281 13.27670756]\n", + " [24.93731363 13.27968972]\n", + " [19.56131446 13.28267189]\n", + " [14.18531529 13.28565406]\n", + " [ 8.80931611 13.28863621]\n", + " [ 3.43331694 13.29161838]\n", + " [30.31033064 7.90070839]\n", + " [24.93433147 7.90369055]\n", + " [19.55833229 7.90667271]\n", + " [14.18233312 7.90965488]\n", + " [ 8.80633395 7.91263704]\n", + " [ 3.43033477 7.9156192 ]\n", + " [30.30734847 2.52470921]\n", + " [24.9313493 2.52769138]\n", + " [19.55535013 2.53067354]\n", + " [14.17935096 2.53365571]\n", + " [ 8.80335178 2.53663787]\n", + " [ 3.42735261 2.53962004]]\n", + "DEBUG:root:radec2pix: ccdpx: [[-4.44999999e+01 -4.99999873e-01]\n", + " [-4.44999998e+01 2.91928572e+02]\n", + " [-4.44999998e+01 5.84357143e+02]\n", + " [-4.45000002e+01 8.76785714e+02]\n", + " [-4.45000003e+01 1.16921429e+03]\n", + " [-4.45000002e+01 1.46164286e+03]\n", + " [-4.45000002e+01 1.75407143e+03]\n", + " [-4.45000000e+01 2.04650000e+03]\n", + " [-4.44999999e+01 -4.99999873e-01]\n", + " [ 2.47928571e+02 -5.00000280e-01DEBUG:root:radec2pix: xyfp: [[-32.31281793 -31.43806373]\n", + " [-32.31091541 -27.05163558]\n", + " [-32.30901287 -22.66520742]\n", + " [-32.30711034 -18.27877926]\n", + " [-32.3052078 -13.8923511 ]\n", + " [-32.30330527 -9.50592294]\n", + " [-32.30140274 -5.11949478]\n", + " [-32.2995002 -0.73306663]\n", + " [-32.31281793 -31.43806373]\n", + " [-27.92638978 -31.43996627]\n", + " [-23.53996162 -31.4418688 ]\n", + " [-19.15353346 -31.44377134]\n", + " [-14.7671053 -31.44567387]\n", + " [-10.38067715 -31.44757641]\n", + " [ -5.99424899 -31.44947894]\n", + " [ -1.60782083 -31.45138147]\n", + " [-32.2995002 -0.73306663]\n", + " [-27.91307204 -0.73496916]\n", + " [-23.52664389 -0.73687169]\n", + " [-19.14021573 -0.73877423]\n", + " [-14.75378757 -0.74067676]\n", + " [-10.36735941 -0.74257929]\n", + " [ -5.98093125 -0.74448183]\n", + " [ -1.59450309 -0.74638436]\n", + " [ -1.60782083 -31.45138147]\n", + " [ -1.60591829 -27.06495331]\n", + " [ -1.60401576 -22.67852516]\n", + " [ -1.60211323 -18.292097 ]\n", + " [ -1.60021069 -13.90566884]\n", + " [ -1.59830816 -9.51924068]\n", + " [ -1.59640563 -5.13281252]\n", + " [ -1.59450309 -0.74638436]\n", + " [-32.29698843 -29.52557043]\n", + " [-32.29465669 -24.14957093]\n", + " [-32.29232495 -18.77357144]\n", + " [-32.2899932 -13.39757194]\n", + " [-32.28766146 -8.02157244]\n", + " [-32.28532972 -2.64557295]\n", + " [-30.40031161 -31.42389325]\n", + " [-25.02431212 -31.42622499]\n", + " [-19.64831262 -31.42855673]\n", + " [-14.27231313 -31.43088848]\n", + " [ -8.89631363 -31.43322022]\n", + " [ -3.52031414 -31.43555196]\n", + " [-30.38700689 -0.74889614]\n", + " [-25.01100739 -0.75122788]\n", + " [-19.6350079 -0.75355962]\n", + " [-14.25900841 -0.75589136]\n", + " [ -8.88300892 -0.7582231 ]\n", + " [ -3.50700942 -0.76055484]\n", + " [ -1.62199131 -29.53887515]\n", + " [ -1.61965957 -24.16287565]\n", + " [ -1.61732783 -18.78687616]\n", + " [ -1.61499609 -13.41087666]\n", + " [ -1.61266434 -8.03487716]\n", + " [ -1.6103326 -2.65887768]\n", + " [-32.29781143 -31.42307024]\n", + " [-32.29781143 -31.42307024]\n", + " [ -1.60950959 -0.76137785]\n", + " [ -1.60950959 -0.76137785]\n", + " [-30.3994886 -29.52639343]\n", + " [-25.02348911 -29.52872517]\n", + " [-19.64748962 -29.53105692]\n", + " [-14.27149012 -29.53338866]\n", + " [ -8.89549063 -29.5357204 ]\n", + " [ -3.51949113 -29.53805214]\n", + " [-30.39715686 -24.15039394]\n", + " [-25.02115737 -24.15272568]\n", + "DEBUG:root:radec2pix: lat: [73.19833089 74.18249103 75.09922688 75.92116023 76.61853688 77.16100123\n", + " 77.52079342 77.67706772 73.19833089 74.20159367 75.14093371 75.98890558\n", + " 76.71531245 77.28881429 77.68005228 77.86611976 77.67706772 79.27473553\n", + " 80.90480881 82.56181915 84.24016258 85.93331116 87.63030205 89.26372814\n", + " 77.86611976 79.46663016 81.09832556 82.755367 84.43126132 86.11695715\n", + " 87.79091006 89.26372814 73.63774563 74.80227565 75.83862014 76.69292614\n", + " 77.3096353 77.64025349 73.64559076 74.835883 75.90321746 76.7930912\n", + " 77.44812351 77.8166633 78.36913095 80.34967761 82.37343442 84.43012843\n", + " 86.50734673 88.57380626 78.55945528 80.5426681 82.56690719 84.62047016\n", + " 86.68569475 88.69035885 73.20529527 73.20529527 89.25558432 89.25558432\n", + " 74.09681811 75.34210951 76.46528549 77.40781255 78.10603298 78.5008319\n", + " 75.3160395 76.72544415 78.02222799 79.13621749 79.98176995 80.46955109\n", + " 76.40729948 77.98832745 79.48016045 80.80422916 81.84813181 82.47175257\n", + " 77.31254652 79.06012758 8]\n", + " [ 5.40357143e+02 -5.00000000e-01]\n", + " [ 8.32785714e+02 -4.99999974e-01]\n", + " [ 1.12521429e+03 -4.99999987e-01]\n", + " [ 1.41764286e+03 -4.99999863e-01]\n", + " [ 1.71007143e+03 -5.00000138e-01]\n", + " [ 2.00250000e+03 -4.99999700e-01]\n", + " [-4.45000000e+01 2.04650000e+03]\n", + " [ 2.47928571e+02 2.04650000e+03]\n", + " [ 5.40357143e+02 2.04650000e+03]\n", + " [ 8.32785714e+02 2.04650000e+03]\n", + " [ 1.12521429e+03 2.04650000e+03]\n", + " [ 1.41764286e+03 2.04650000e+03]\n", + " [ 1.71007143e+03 2.04650000e+03]\n", + " [ 2.00250000e+03 2.04650000e+03]\n", + " [ 2.00250000e+03 -4.99999700e-01]\n", + " [ 2.00250000e+03 2.91928571e+02]\n", + " [ 2.00250000e+03 5.84357143e+02]\n", + " [ 2.00250000e+03 8.76785714e+02]\n", + " [ 2.00250000e+03 1.16921429e+03]\n", + " [ 2.00250000e+03 1.46164286e+03]\n", + " [ 2.00250000e+03 1.75407143e+03]\n", + " [ 2.00250000e+03 2.04650000e+03]\n", + " [-4.35000000e+01 1.27000000e+02]\n", + " [-4.35000002e+01 4.85400000e+02]\n", + " [-4.34999999e+01 8.43800000e+02]\n", + " [-4.35000003e+01 1.20220000e+03]\n", + " [-4.35000000e+01 1.56060000e+03]\n", + " [-4.35000001e+01 1.91900000e+03]\n", + " [ 8.30000001e+01 [-19.64515788 -24.15505742]\n", + " [-14.26915838 -24.15738916]\n", + " [ -8.89315889 -24.1597209 ]\n", + " [ -3.51715939 -24.16205264]\n", + " [-30.39482512 -18.77439444]\n", + " [-25.01882563 -18.77672618]\n", + " [-19.64282613 -18.77905793]\n", + " [-14.26682664 -18.78138967]\n", + " [ -8.89082714 -18.78372141]\n", + " [ -3.51482765 -18.78605315]\n", + " [-30.39249338 -13.39839495]\n", + " [-25.01649389 -13.40072669]\n", + " [-19.64049439 -13.40305843]\n", + " [-14.2644949 -13.40539017]\n", + " [ -8.8884954 -13.40772191]\n", + " [ -3.51249591 -13.41005365]\n", + " [-30.39016163 -8.02239545]\n", + " [-25.01416214 -8.02472719]\n", + " [-19.63816265 -8.02705893]\n", + " [-14.26216315 -8.02939068]\n", + " [ -8.88616366 -8.03172242]\n", + " [ -3.51016417 -8.03405416]\n", + " [-30.3878299 -2.64639596]\n", + " [-25.01183041 -2.6487277 ]\n", + " [-19.63583091 -2.65105944]\n", + " [-14.25983141 -2.65339118]\n", + " [ -8.88383191 -2.65572292]\n", + " [ -3.50783243 -2.65805467]]\n", + "]\n", + " [32.21058351 8.13492254]\n", + " [32.20878509 2.75892284]\n", + " [30.32091205 31.53705599]\n", + " [24.94491236 31.53885442]\n", + " [19.56891265 31.54065283]\n", + " [14.19291295 31.54245125]\n", + " [ 8.81691325 31.544249653621 31.32344358]\n", + " [14.69010831 31.3258768 ]\n", + " [10.30368042 31.32831004]\n", + " [ 5.91725252 31.33074327]\n", + " [ 1.53082462 31.3331765 ]\n", + " [32.21878728 0.61114861]\n", + " [27.83235938 0.61358184]\n", + " [23.44593149 0.61601507]\n", + " [19.0595036 0.6184483 ]\n", + " [14.6730757 0.62088153]\n", + " [10.2866478 0.62331476]\n", + " [ 5.90021991 0.625748 ]\n", + " [ 1.513792 0.62818122]\n", + " [ 1.53082462 31.3331765 ]\n", + " [ 1.52839139 26.94674861]\n", + " [ 1.52595816 22.5603207 ]\n", + " [ 1.52352493 18.17389281]\n", + " [ 1.5210917 13.78746492]\n", + " [ 1.51865847 9.40103702]\n", + " [ 1.51622524 5.01460912]\n", + " [ 1.513792 0.62818122]\n", + " [32.219759 29.4036525 ]\n", + " [32.21677684 24.02765333]\n", + " [32.21379467 18.65165415]\n", + " [32.21081251 13.27565498]\n", + " [32.20783035 7.89965581]\n", + " [32.20484818 2.52365664]\n", + " [30.32331188 31.30220479]\n", + " [24.9473127 31.30518695]\n", + " [19.57131353 31.30816912]\n", + " [14.19531435 31.31115127]\n", + " [ 8.81931518 31.31413344]\n", + " [ 3.44331601 31.3171156 ]\n", + " [30.3062959 0.62720951]\n", + " [24.93029672 0.63019167]\n", + " [19.55429755 0.63317383]\n", + " [14.17829838 0.636156 ]\n", + " [ 8.802]\n", + " [32.30308568 8.05391402]\n", + " [32.30410748 2.67791411]\n", + " [30.40113787 31.45505294]\n", + " [25.02513797 31.45403115]\n", + " [19.64913807 31.45300935]\n", + " [14.27313817 31.45198755]\n", + " [ 8.89713826 31.45096576]\n", + " [ 3.52113836 31.44994396]\n", + " [30.40696816 0.7800535 ]\n", + " [25.03096826 0.7790317 ]\n", + " [19.65496836 0.7780099 ]\n", + " [14.27896845 0.77698811]\n", + " [ 8.90296855 0.77596631]\n", + " [ 3.52696865 0.77494451]\n", + " [ 1.62399904 29.55208334]\n", + " [ 1.62502084 24.17608344]\n", + " [ 1.62604264 18.80008353]\n", + " [ 1.62706443 13.42408364]\n", + " [ 1.62808623 8.04808373]\n", + " [ 1.62910803 2.67208383]\n", + " [32.29863784 31.4554136 ]\n", + " [32.29863784 31.4554136 ]\n", + " [ 1.62946868 0.77458386]\n", + " [ 1.62946868 0.77458386]\n", + " [30.40149852 29.55755297]\n", + " [25.02549862 29.55653118]\n", + " [19.64949872 29.55550938]\n", + " [14.27349882 29.55448759]\n", + " [ 8.89749891 29.55346579]\n", + " [ 3.52149901 29.55244399]\n", + " [30.40252032 24.18155307]\n", + " [25.02652042 24.18053128]\n", + " [19.65052052 24.17950948]\n", + " [14.27452061 24.17848769]\n", + " [ 8.89852071 24.17746589]\n", + " [ 3.52252081 24.17644409]\n", + " [30.40354212 18.80555317]DEBUG:root:radec2pix: camVec Shape: (3, 96)\n", + "DEBUG:root:radec2pix: curVec Shape: (96, 3)\n", + "29921 0.63913816]\n", + " [ 3.42630004 0.64212033]\n", + " [ 1.54476372 29.42066847]\n", + " [ 1.54178156 24.0446693 ]\n", + " [ 1.53879939 18.66867013]\n", + " [ 1.53581723 13.29267096]\n", + " [ 1.53283507 7.91667178]\n", + " [ 1.5298529 2.54067261]\n", + " [32.22081158 31.30115221]\n", + " [32.22081158 31.30115221]\n", + " [ 1.52880032 0.6431729 ]\n", + " [ 1.52880032 0.6431729 ]\n", + " [30.32225929 29.40470508]\n", + " [24.94626012 29.40768724]\n", + " [19.57026095 29.41066941]\n", + " [14.19426178 29.41365157]\n", + " [ 8.8182626 29.41663373]\n", + " [ 3.44226343 29.4196159 ]\n", + " [30.31927713 24.02870591]\n", + " [24.94327796 24.03168807]\n", + " [19.56727878 24.03467023]\n", + " [14.19127961 24.0376524 ]\n", + " [ 8.81528044 24.04063456]\n", + " [ 3.43928127 24.04361672]\n", + " [30.31629496 18.65270673]\n", + " [24.9402958 18.6556889 ]\n", + " [19.56429662 18.65867106]\n", + " [14.18829744 18.66165322]\n", + " [ 8.81229827 18.66463538]\n", + " [ 3.4362991 18.66761755]\n", + " [30.31331281 13.27670756]\n", + " [24.93731363 13.27968972]\n", + " [19.56131446 13.28267189]\n", + " [14.18531529 13.28565406]\n", + " [ 8.80931611 13.28863621]\n", + " [ 3.43331694 13.29161838]\n", + " [30.31033064 7.90070839]\n", + " [24.93433147 7.90369055]\n", + " [19.55833229 7.90667271]\n", + " [14.18233312 7.90965488]\n", + " [ 8.80633395 7.91263704]\n", + " [ 3.43033477 7.9156192 ]\n", + " [30.30734847 2.52470921]\n", + " [24.9313493 2.52769138]\n", + " [19.55535013 2.53067354]\n", + " [14.17935096 2.53365571]\n", + " [ 8.80335178 2.53663787]\n", + " [ 3.42735261 2.53962004]]\n", + "DEBUG:root:radec2pix: xyfp Shape: (96, 2)\n", + "DEBUG:root:make_az_asym: xyp: shape: (96, 2)\n", + "DEBUG:root:optics_fp: xyfp shape: (96, 2)\n", + "67]\n", + " [ 3.44091356 31.54604808]\n", + " [30.31065043 0.86205771]\n", + " [24.93465073 0.86385613]\n", + " [19.55865103 0.86565455]\n", + " [14.18265134 0.86745297]\n", + " [ 8.80665163 0.86925139]\n", + " [ 3.43065193 0.8710498 ]\n", + " [ 1.5427789 29.64918296]\n", + " [ 1.54098048 24.27318326]\n", + " [ 1.53918206 18.89718357]\n", + " [ 1.53738364 13.52118387]\n", + " [ 1.53558522 8.14518416]\n", + " [ 1.5337868 2.76918446]\n", + " [32.21841195 31.53642123]\n", + " [32.21841195 31.53642123]\n", + " [ 1.53315204 0.87168457]\n", + " [ 1.53315204 0.87168457]\n", + " [30.32027729 29.6395561 ]\n", + " [24.94427759 29.64135452]\n", + " [19.56827789 29.64315294]\n", + " [14.19227819 29.64495136]\n", + " [ 8.81627849 29.64674978]\n", + " [ 3.44027879 29.6485482 ]\n", + " [30.31847887 24.2635564 ]\n", + " [24.94247917 24.26535482]\n", + " [19.56647947 24.26715324]\n", + " [14.19047977 24.26895166]\n", + " [ 8.81448007 24.27075007]\n", + " [ 3.43848037 24.2725485 ]\n", + " [30.31668045 18.8875567 ]\n", + " [24.94068075 18.88935513]\n", + " [19.56468105 18.89115354]\n", + " [14.18868135 18.89295196]\n", + " [ 8.81268165 18.89475038]\n", + " [ 3.43668195 18.89654879]\n", + " [30.31488203 13.51155701]\n", + " [24.93888233 13.51335542]\n", + " [19.56288263 13.51515384]\n", + " [14.18688293 13.51695226]\n", + " [ 8.81088324 13.51875068]\n", + " [ 3.43488354 13.5205491 ]\n", + " [30.31308361 8.13555731]\n", + " [24.93708392 8.13735572]\n", + " [19.56108422 8.13915414]\n", + " [14.18508451 8.14095256]\n", + " [ 8.80908482 8.14275098]\n", + " [ 3.43308512 8.1445494 ]\n", + " [30.31128519 2.75955761]\n", + " [24.93528549 2.76135602]\n", + " [19.5592858 2.76315444]\n", + " [14.18328609 2.76495286]\n", + " [ 8.8072864 2.76675128]\n", + " [ 3.4312867 2.7685497 ]]\n", + " 5.00000148e-01]\n", + " [ 4.41400000e+02 4.99999823e-01]\n", + " [ 7.99800000e+02 4.99999939e-01]\n", + " [ 1.15820000e+03 5.00000006e-01]\n", + " [ 1.51660000e+03 5.00000232e-01]\n", + " [ 1.87500000e+03 5.00000256e-01]\n", + " [ 8.29999998e+01 2.04550000e+03]\n", + " [ 4.41400000e+02 2.04550000e+03]\n", + " [ 7.99800000e+02 2.04550000e+03]\n", + " [ 1.15820000e+03 2.04550000e+03]\n", + " [ 1.51660000e+03 2.04550000e+03]\n", + " [ 1.87500000e+03 2.04550000e+03]\n", + " [ 2.00150000e+03 1.27000000e+02]\n", + " [ 2.00150000e+03 4.85400000e+02]\n", + " [ 2.00150000e+03 8.43800000e+02]\n", + " [ 2.00150000e+03 1.20220000e+03]\n", + " [ 2.00150000e+03 1.56060000e+03]\n", + " [ 2.00150000e+03 1.91900000e+03]\n", + " [-4.35000003e+01 4.99999725e-01]\n", + " [-4.35000003e+01 4.99999725e-01]\n", + " [ 2.00150000e+03 2.04550000e+03]\n", + " [ 2.00150000e+03 2.04550000e+03]\n", + " [ 8.30000000e+01 1.27000000e+02]\n", + " [ 4.41400000e+02 1.27000000e+02]\n", + " [ 7.99800000e+02 1.27000000e+02]\n", + " [ 1.15820000e+03 1.27000000e+02]\n", + " [ 1.51660000e+03 1.27000000e+02]\n", + " [ 1.87500000e+03 1.27000000e+02]\n", + " [ 8.30000001e+01 4.85400000e+02]\n", + " [ 4.41400000e+02 4.85400000e+02]\n", + " [ 7.99800000e+02 4.85400000e+02]\n", + " [ 1.15820000e+03 4.85400000e+02]\n", + " [ 1.51660000e+03 4.85400000e+02]\n", + " [ 1.87500000e+03 4.85400000e+02]\n", + " [ 8.30000001e+01 8.43800000e+02]\n", + " [ 4.41400000e+02 8.43800000e+02]\n", + " [ 7.99800000e+02 8.43800000e+02]\n", + " [ 1.15820000e+03 8.43800000e+02]\n", + " [ 1.51660000e+03 8.43800000e+02]\n", + " [ 1.87500000e+03 8.43800000e+02]\n", + " [ 8.29999999e+01 1.20220000e+03]\n", + " [ 4.41400000e+02 1.20220000e+03]\n", + " [ 7.99800000e+02 1.20220000e+03]\n", + " [ 1.15820000e+03 1.20220000e+03]\n", + " [ 1.51660000e+03 1.20220000e+03]\n", + " [ 1.87500000e+03 1.20220000e+03]\n", + " [ 8.30000000e+01 1.56060000e+03]\n", + " [ 4.41400000e+02 1.56060000e+03]\n", + " [ 7.99800000e+02 1.56060000e+03]\n", + " [ 1.15820000e+03 1.56060000e+03]\n", + " [ 1.51660000e+03 1.56060000e+03]\n", + " [ 1.87500000e+03 1.56060000e+03]\n", + " [ 8.30000003e+01 1.91900000e+03]\n", + " [ 4.41400000e+02 1.91900000e+03]\n", + " [ 7.99800000e+02 1.91900000e+03]\n", + " [ 1.15820000e+03 1.91900000e+03]\n", + " [ 1.51660000e+03 1.91900000e+03]\n", + " [ 1.87500000e+03 1.91900000e+03]]\n", + "9988921 0.99978135\n", + " 0.99939135 0.99470606 0.\n", + " [25.02754221 18.80453137]\n", + " [19.65154231 18.80350958]\n", + " [14.27554241 18.80248779]\n", + " [ 8.89954251 18.80146598]\n", + " [ 3.5235426 18.80044419]\n", + " [30.40456392 13.42955327]\n", + " [25.02856401 13.42853147]\n", + " [19.65256411 13.42750967]\n", + " [14.27656421 13.42648788]\n", + " [ 8.9005643 13.42546608]\n", + " [ 3.5245644 13.42444429]\n", + " [30.40558571 8.05355336]\n", + " [25.02958581 8.05253157]\n", + " [19.6535859 8.05150977]\n", + " [14.277586 8.05048797]\n", + " [ 8.9015861 8.04946618]\n", + " [ 3.5255862 8.04844438]\n", + " [30.40660751 2.67755346]\n", + " [25.0306076 2.67653166]\n", + " [19.6546077 2.67550987]\n", + " [14.2786078 2.67448807]\n", + " [ 8.90260789 2.67346627]\n", + " [ 3.52660799 2.67244448]]\n", + "99763036 0.97252172 0.92531697 0.86495858\n", + " 0.79978055 0.73558862 0.36924717 0.1142084 0.06714366 0.04756397\n", + " 0.03684701 0.03008799 0.69177459 0.61711788 0.52111201 0.40034372\n", + " 0.25454379 0.08920432 0.99996121 0.99996121 0.02826205 0.02826205\n", + " 0.9973173 0.96905455 0.91664659 0.85091412 0.78139404 0.71425456\n", + " 0.99599975 0.95482931 0.88259094 0.79841512 0.71580463 0.64114939\n", + " 0.99341625 0.92852872 0.82526851 0.71824331 0.62374288 0.54523519\n", + " 0.98724084 0.87289633 0.72264131 0.59408727 0.49583709 0.42193564\n", + " 0.96591838 0.73294127 0.53284125 0.40646497 0.32525713 0.2699709\n", + " 0.78486541 0.34369459 0.20925449 0.1495441 0.11618746 0.09496005]\n", + "DEBUG:root:make_az_asym: xyp: shape: (96, 2)\n", + "DEBUG:root:mm_to_pix: fitpx: [[0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]]\n", + "DEBUG:root:mm_to_pix: fitpx.shape: (96, 2)\n", + "DEBUG:root:radec2pix: camVec: [[0.20581047 0.20764708 0.20921111 0.21050368 0.21152432 0.2122716\n", + " 0.21274377 0.21293946 0.20581047 0.17940008 0.15228099 0.12456525\n", + " 0.09636347 0.06778617 0.03894463 0.00995116 0.21293946 0.18558556\n", + " 0.15752187 0.12885256 0.09968382 0.07012532 0.04029051 0.01029607\n", + " 0.00995116 0.01003858 0.01011374 0.01017639 0.01022623 0.01026295\n", + " 0.01028629 0.01029607 0.20655553 0.20862193 0.21028039 0.21153069\n", + " 0.21237025 0.212796 0.1943962 0.16153559 0.12772204 0.0931597\n", + " 0.05805212 0.02260459 0.2011068 0.16709142 0.1321133 0.09636698\n", + " 0.06005439 0.02338579 0.01009044 0.01019035 0.01027142 0.0103331\n", + " 0.01037483 0.01039617 0.20572824 0.20572824 0.01039877 0.01039877\n", + " 0.19517474 0.1621771 0.12822694 0.09352723 0.05828102 0.02269376\n", + " 0.19712067 0.1637837 0.12949375 0.09445078 0.05885684 0.0229182\n", + " 0.19868404 0.16507817 0.13051704 0.09519827 0.05932353 0.02310025\n", + " 0.19986372 0.16605732 0.13129265 0.09576573 0.05967819 0.02323871\n", + " 0.20065641 0.16671646 0.13181555 0.09614872 0.05991775 0.0233323\n", + " 0.20105858 0.16705125 0.13208139 0.09634357 0.06003972 0.02338002]\n", + " [0.20196806 0.17549093 0.14832034 0.12056829 0.0923455 0.06376263\n", + " 0.0349311 0.00596325 0.20196806 0.20380697 0.20537849 0.20668384\n", + " 0.20772258 0.20849323 0.20899395 0.20922323 0.00596325 0.00601646\n", + " 0.00606233 0.00610071 0.00613144 0.00615431 0.00616917 0.00617591\n", + " 0.20922323 0.18176716 0.15361557 0.12487279 0.09564544 0.0660437\n", + " 0.03618151 0.00617591 0.19052281 0.15759064 0.12372836 0.08914025\n", + " 0.05403012 0.01860347 0.20271324 0.2047859 0.20645854 0.207731\n", + " 0.20860063 0.20906415 0.00608691 0.00614821 0.00619816 0.00623643\n", + " 0.00626269 0.00627666 0.19734414 0.16321317 0.12814101 0.0923229\n", + " 0.05596168 0.01926848 0.20188558 0.20188558 0.00627861 0.00627861\n", + " 0.19130075 0.19325024 0.19482509 0.19602426 0.19684438 0.19728171\n", + " 0.15822879 0.1598311 0.16112922 0.16212009 0.16279899 0.16316141\n", + " 0.12422708 0.12548158 0.12650047 0.12727979 0.12781451 0.12810021\n", + " 0.08949878 0.09040196 0.09113695 0.09169995 0.09208666 0.09229337\n", + " 0.05424725 0.05479478 0.05524091 0.05558298 0.05581806 0.05594375\n", + " 0.01867818 0.01886665 0.0190203 0.01913813 0.01921909 0.01926233]\n", + " [0.95752334 0.96233343 0.96655667 0.97012962 0.9730004 0.97512825\n", + " 0.97648344 0.9770472 0.95752334 0.96243355 0.96676273 0.97044592\n", + " 0.97342972 0.97567188 0.97714116 0.97781727 0.9770472 0.98260969\n", + " 0.98749689 0.991645 0.99500027 0.99751921 0.99916896 0.99992792\n", + " 0.97781727 0.98329036 0.98807893 0.99212057 0.99536294 0.99776395\n", + " 0.99929229 0.99992792 0.95970614 0.96521608 0.9697801 0.97329789\n", + " 0.97569443 0.97691953 0.95974864 0.96538541 0.97008348 0.97373975\n", + " 0.97627646 0.97764064 0.97955041 0.98592224 0.99121524 0.99532633\n", + " 0.99817546 0.99970681 0.98028234 0.9865382 0.99170277 0.9956755\n", + " 0.99837901 0.99976029 0.95755841 0.95755841 0.99992622 0.99992622\n", + " 0.96193079 0.96765331 0.9724202 0.97612865 0.97870098 0.98008414\n", + " 0.96752627 0.97346234 0.97840112 0.98224036 0.98490221 0.98633316\n", + " 0.97215857 0.97826559 0.98334273 0.98728777 0.99002231 0.99149217\n", + " 0.97572766 0.98196357 0.98714553 0.99117105 0.99396105 0.99546064\n", + " 0.9781586 0.98448116 0.98973385 0.99381384 0.99664146 0.99816126\n", + " 0.97940113 0.98576768 0.99105637 0.99516413 0.99801095 0.99954106]]\n", + "DEBUG:root:radec2pix: camVec Shape: (3, 96)\n", + "DEBUG:root:make_az_asym: xyp: [[32.2358199 31.31614388]\n", + " [32.23338667 26.92971599]\n", + " [32.23095344 22.54328809]\n", + " [32.2285202 18.15686019]\n", + " [32.22608698 13.7704323 ]\n", + " [32.22365375 9.3840044 ]\n", + " [32.22122051 4.99757651]\n", + " [32.21878728 0.61114861]\n", + " [32.2358199 31.31614388]\n", + " [27.849392 31.31857712]\n", + " [23.46296411 31.32101035]\n", + " [19.07653621 31.32344358]\n", + " [14.69010831 31.3258768 ]\n", + " [10.30368042 31.32831004]\n", + " [ 5.91725252 31.33074327]\n", + " [ 1.53082462 31.3331765 ]\n", + " [32.21878728 0.61114861]\n", + " [27.83235938 0.61358184]\n", + " [23.44593149 0.61601507]\n", + " [19.0595036 0.6184483 ]\n", + " [14.6730757 0.62088153]\n", + " [10.2866478 0.62331476]\n", + " [ 5.90021991 0.625748 ]\n", + " [ 1.513792 0.62818122]\n", + " [ 1.53082462 31.3331765 ]\n", + " [ 1.52839139 26.94674861]\n", + " [ 1.52595816 22.5603207 ]\n", + " [ 1.52352493 18.17389281]\n", + " [ 1.5210917 13.78746492]\n", + " [ 1.51865847 9.40103702]\n", + " [ 1.51622524 5.01460912]\n", + " [ 1.513792 0.62818122]\n", + " [32.219759 29.4036525 ]\n", + " [32.21677684 24.02765333]\n", + " [32.21379467 18.65165415]\n", + " [32.21081251 13.27565498]\n", + " [32.20783035 7.89965581]\n", + " [32.20484818 2.52365664]\n", + " [30.32331188 31.30220479]\n", + " [24.9473127 31.30518695]\n", + " [19.57131353 31.30816912]\n", + " [14.19531435 31.31115127]\n", + " [ 8.81931518 31.31413344]\n", + " [ 3.44331601 31.3171156 ]\n", + " [30.3062959 0.62720951]\n", + " [24.93029672 0.63019167]\n", + " [19.55429755 0.63317383]\n", + " [14.17829838 0.636156 ]\n", + " [ 8.80229921 0.63913816]\n", + " [ 3.42630004 0.64212033]\n", + " [ 1.54476372 29.42066847]\n", + " [ 1.54178156 24.0446693 ]\n", + " [ 1.53879939 18.66867013]\n", + " [ 1.53581723 13.29267096]\n", + " [ 1.53283507 7.91667178]\n", + " [ 1.5298529 2.54067261]\n", + " [32.22081158 31.30115221]\n", + " [32.22081158 31.30115221]\n", + " [ 1.52880032 0.6431729 ]\n", + " [ 1.52880032 0.6431729 ]\n", + " [30.32225929 29.40470508]\n", + " [24.94626012 29.40768724]\n", + " [19.57026095 29.41066941]\n", + " [14.19426178 29.41365157]\n", + " [ 8.8182626 29.41663373]\n", + " [ 3.44226343 29.4196159 ]\n", + " [30.31927713 24.02870591]\n", + " [24.94327796 24.03168807]\n", + " [19.56727878 24.03467023]\n", + " [14.19127961 24.0376524 ]\n", + " [ 8.81528044 24.04063456]\n", + " [ 3.43928127 24.04361672]\n", + " [30.31629496 18.65270673]\n", + " [24.9402958 18.6556889 ]\n", + " [19.56429662 18.65867106]\n", + " [14.18829744 18.66165322]\n", + " [ 8.81229827 18.66463538]\n", + " [ 3.4362991 18.66761755]\n", + " [30.31331281 13.27670756]\n", + " [24.93731363 13.27968972]\n", + " [19.56131446 13.28267189]\n", + " [14.18531529 13.28565406]\n", + " [ 8.80931611 13.28863621]\n", + " [ 3.43331694 13.29161838]\n", + " [30.31033064 7.90070839]\n", + " [24.93433147 7.90369055]\n", + " [19.55833229 7.90667271]\n", + " [14.18233312 7.90965488]\n", + " [ 8.80633395 7.91263704]\n", + " [ 3.43033477 7.9156192 ]\n", + " [30.30734847 2.52470921]\n", + " [24.9313493 2.52769138]\n", + " [19.55535013 2.53067354]\n", + " [14.17935096 2.53365571]\n", + " [ 8.80335178 2.53663787]\n", + " [ 3.42735261 2.53962004]]\n", + "DEBUG:root:make_az_asym: xyp: shape: (96, 2)\n", + "DEBUG:root:radec2pix: xyfp: [[32.2358199 31.31614388]\n", + " [32.23338667 26.92971599]\n", + " [32.23095344 22.54328809]\n", + " [32.2285202 18.15686019]\n", + " [32.22608698 13.7704323 ]\n", + " [32.22365375 9.3840044 ]\n", + " [32.22122051 4.99757651]\n", + " [32.21878728 0.61114861]\n", + " [32.2358199 31.31614388]\n", + " [27.849392 31.31857712]\n", + " [23.46296411 31.32101035]\n", + " [19.07653621 31.32344358]\n", + " [14.69010831 31.3258768 ]\n", + " [10.30368042 31.32831004]\n", + " [ 5.91725252 31.33074327]\n", + " [ 1.53082462 31.3331765 ]\n", + " [32.21878728 0.61114861]\n", + " [27.83235938 0.61358184]\n", + " [23.44593149 0.61601507]\n", + " [19.0595036 0.6184483 ]\n", + " [14.6730757 0.62088153]\n", + " [10.2866478 0.62331476]\n", + " [ 5.90021991 0.625748 ]\n", + " [ 1.513792 0.62818122]\n", + " [ 1.53082462 31.3331765 ]\n", + " [ 1.52839139 26.94674861]\n", + " [ 1.52595816 22.5603207 ]\n", + " [ 1.52352493 18.17389281]\n", + " [ 1.5210917 13.78746492]\n", + " [ 1.51865847 9.40103702]\n", + " [ 1.51622524 5.01460912]\n", + " [ 1.513792 0.62818122]\n", + " [32.219759 29.4036525 ]\n", + " [32.21677684 24.02765333]\n", + " [32.21379467 18.65165415]\n", + " [32.21081251 13.27565498]\n", + " [32.20783035 7.89965581]\n", + " [32.20484818 2.52365664]\n", + " [30.32331188 31.30220479]\n", + " [24.9473127 31.30518695]\n", + " [19.57131353 31.30816912]\n", + " [14.19531435 31.31115127]\n", + " [ 8.81931518 31.31413344]\n", + " [ 3.44331601 31.3171156 ]\n", + " [30.3062959 0.62720951]\n", + " [24.93029672 0.63019167]\n", + " [19.55429755 0.63317383]\n", + " [14.17829838 0.636156 ]\n", + " [ 8.80229921 0.63913816]\n", + " [ 3.42630004 0.64212033]\n", + " [ 1.54476372 29.42066847]\n", + " [ 1.54178156 24.0446693 ]\n", + " [ 1.53879939 18.66867013]\n", + " [ 1.53581723 13.29267096]\n", + " [ 1.53283507 7.91667178]\n", + " [ 1.5298529 2.54067261]\n", + " [32.22081158 31.30115221]\n", + " [32.22081158 31.30115221]\n", + " [ 1.52880032 0.6431729 ]\n", + " [ 1.52880032 0.6431729 ]\n", + " [30.32225929 29.40470508]\n", + " [24.94626012 29.40768724]\n", + " [19.57026095 29.41066941]\n", + " [14.19426178 29.41365157]\n", + " [ 8.8182626 29.41663373]\n", + " [ 3.44226343 29.4196159 ]\n", + " [30.31927713 24.02870591]\n", + " [24.94327796 24.03168807]\n", + " [19.56727878 24.03467023]\n", + " [14.19127961 24.0376524 ]\n", + " [ 8.81528044 24.04063456]\n", + " [ 3.43928127 24.04361672]\n", + " [30.31629496 18.65270673]\n", + " [24.9402958 18.6556889 ]\n", + " [19.56429662 18.65867106]\n", + " [14.18829744 18.66165322]\n", + " [ 8.81229827 18.66463538]\n", + " [ 3.4362991 18.66761755]\n", + " [30.31331281 13.27670756]\n", + " [24.93731363 13.27968972]\n", + " [19.56131446 13.28267189]\n", + " [14.18531529 13.28565406]\n", + " [ 8.80931611 13.28863621]\n", + " [ 3.43331694 13.29161838]\n", + " [30.31033064 7.90070839]\n", + " [24.93433147 7.90369055]\n", + " [19.55833229 7.90667271]\n", + " [14.18233312 7.90965488]\n", + " [ 8.80633395 7.91263704]\n", + " [ 3.43033477 7.9156192 ]\n", + " [30.30734847 2.52470921]\n", + " [24.9313493 2.52769138]\n", + " [19.55535013 2.53067354]\n", + " [14.17935096 2.53365571]\n", + " [ 8.80335178 2.53663787]\n", + " [ 3.42735261 2.53962004]]\n", + "DEBUG:root:radec2pix: xyfp Shape: (96, 2)\n", + "DEBUG:root:cartToSphere: vec: [[-0.00174024 0.20894107 0.97792668]\n", + " [-0.00176337 0.18147259 0.98339442]\n", + " [-0.00178449 0.15331081 0.98817641]\n", + " [-0.00180353 0.12455987 0.99221045]\n", + " [-0.00182039 0.09532558 0.99544448]\n", + " [-0.001835 0.06571725 0.9978366 ]\n", + " [-0.00184725 0.03584843 0.99935553]\n", + " [-0.00185707 0.00583647 0.99998124]\n", + " [-0.00174024 0.20894107 0.97792668]\n", + " [-0.0307605 0.20879621 0.97747528]\n", + " [-0.05966066 0.2083801 0.97622658]\n", + " [-0.08832819 0.20769404 0.97419778]\n", + " [-0.11665151 0.20673975 0.97141706]\n", + " [-0.14451993 0.20551876 0.96792357]\n", + " [-0.17182299 0.20403188 0.96376753]\n", + " [-0.19844965 0.20227886 0.95901043]\n", + " [-0.00185707 0.00583647 0.99998124]\n", + " [-0.03187835 0.00584019 0.99947469]\n", + " [-0.06177226 0.00583613 0.99807321]\n", + " [-0.09142104 0.00582438 0.9957953 ]\n", + " [-0.12071058 0.00580507 0.99267077]\n", + " [-0.14953103 0.00577839 0.98874015]\n", + " [-0.1777762 0.00574449 0.98405418]\n", + " [-0.20534186 0.00570348 0.97867369]\n", + " [-0.19844965 0.20227886 0.95901043]\n", + " [-0.20021951 0.17571613 0.96386513]\n", + " [-0.20172864 0.1484622 0.96812423]\n", + " [-0.20297731 0.12062809 0.97172479]\n", + " [-0.20396466 0.09232414 0.97461514]\n", + " [-0.20468905 0.06366093 0.97675467]\n", + " [-0.20514862 0.03474987 0.97811374]\n", + " [-0.20534186 0.00570348 0.97867369]\n", + " [-0.00185028 0.1970566 0.98039037]\n", + " [-0.00187827 0.16291184 0.98663884]\n", + " [-0.00190298 0.12782912 0.99179438]\n", + " [-0.00192425 0.09200243 0.99575692]\n", + " [-0.00194192 0.05563309 0.99844939]\n", + " [-0.00195581 0.01893178 0.99981886]\n", + " [-0.0144012 0.2088187 0.97784833]\n", + " [-0.04990298 0.20845876 0.97675721]\n", + " [-0.08511243 0.20769278 0.97448427]\n", + " [-0.11982373 0.20652378 0.97107683]\n", + " [-0.15383302 0.20495452 0.96660698]\n", + " [-0.18693675 0.20298606 0.96117184]\n", + " [-0.01495442 0.00594178 0.99987052]\n", + " [-0.05167778 0.00594091 0.99864614]\n", + " [-0.08809246 0.00592823 0.99609466]\n", + " [-0.12398684 0.00590399 0.9922663 ]\n", + " [-0.15915858 0.0058685 0.98723559]\n", + " [-0.19341315 0.00582205 0.98110013]\n", + " [-0.19916328 0.19079562 0.96121331]\n", + " [-0.201156 0.1577603 0.96677192]\n", + " [-0.20275765 0.12379719 0.97137201]\n", + " [-0.20396715 0.08910965 0.97491378]\n", + " [-0.20478152 0.05390131 0.97732245]\n", + " [-0.20519745 0.01837776 0.97854804]\n", + " [-0.00183964 0.20884841 0.9779463 ]\n", + " [-0.00183964 0.20884841 0.9779463 ]\n", + " [-0.20524866 0.00580307 0.97869265]\n", + " [-0.20524866 0.00580307 0.97869265]\n", + " [-0.01446124 0.19702878 0.98029105]\n", + " [-0.05010266 0.19668974 0.9791848 ]\n", + " [-0.08545073 0.19596793 0.97688011]\n", + " [-0.12029942 0.19486681 0.97342435]\n", + " [-0.1544452 0.19338978 0.96888961]\n", + " [-0.18768535 0.1915385 0.96337283]\n", + " [-0.01461361 0.16288937 0.98653611]\n", + " [-0.05060625 0.16260994 0.98539181]\n", + " [-0.08630213 0.16201386 0.98300735]\n", + " [-0.12149421 0.16110551 0.97943054]\n", + " [-0.15597972 0.1598896 0.97473363]\n", + " [-0.18955833 0.15836938 0.9690133 ]\n", + " [-0.01473929 0.12781212 0.99168887]\n", + " [-0.05101673 0.12759366 0.99051358]\n", + " [-0.08699359 0.12712576 0.98806435]\n", + " [-0.12246151 0.126413 0.98438962]\n", + " [-0.1572181 0.12546054 0.97956221]\n", + " [-0.19106523 0.12427244 0.97367882]\n", + " [-0.014837440.75806605 82.3313541 83.64750757 84.48728684\n", + " 77.96997446 79.85669547 81.74302972 83.57869755 85.2518859 86.47101417\n", + " 78.32402093 80.29356392 82.30071175 84.32903186 86.34620527 88.21286949]\n", + "DEBUG:root:mm_to_pix: fitpx: [[0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]]\n", + "DEBUG:root:radec2pix: xyfp: [[32.31363499 31.47041645]\n", + " [32.3144687 27.08398795]\n", + " [32.31530242 22.69755946]\n", + " [32.31613613 18.31113097]\n", + " [32.31696984 13.92470248]\n", + " [32.31780355 9.53827398]\n", + " [32.31863726 5.15184549]\n", + " [32.31947097 0.765417 ]\n", + " [32.31363499 31.47041645]\n", + " [27.9272065 31.46958273]\n", + " [23.540778 31.46874902]\n", + " [19.15434951 31.46791531]\n", + " [14.76792102 31.4670816 ]\n", + " [10.38149253 31.46624788]\n", + " [ 5.99506403 31.46541417]\n", + " [ 1.60863554 31.46458045]\n", + " [32.31947097 0.765417 ]\n", + " [27.93304248 0.76458329]\n", + " [23.54661399 0.76374957]\n", + " [19.1601855 0.76291586]\n", + " [14.77375701 0.76208215]\n", + " [10.38732851 0.76124844]\n", + " [ 6.00090002 0.76041472]\n", + " [ 1.61447153 0.75958101]\n", + " [ 1.60863554 31.46458045]\n", + " [ 1.60946926 27.07815197]\n", + " [ 1.61030297 22.69172348]\n", + " [ 1.61113668 18.30529498]\n", + " [ 1.61197039 13.91886648]\n", + " [ 1.6128041 9.53243799]\n", + " [ 1.61363782 5.1460095 ]\n", + " [ 1.61447153 0.75958101]\n", + " [32.29899849 29.557DEBUG:root:make_az_asym: xyp: shape: (96, 2)\n", + "91363]\n", + " [32.30002028 24.18191372]\n", + " [32.30104209 18.80591382]\n", + " [32.30206388 13.42991392]\n", + " [32.30308568 8.05391402]\n", + " [32.30410748 2.67791411]\n", + " [30.40113787 31.45505294]\n", + " [25.02513797 31.45403115]\n", + " [19.64913807 31.45300935]\n", + " [14.27313817 31.45198755]\n", + " [ 8.89713826 31.45096576]\n", + " [ 3.52113836 31.44994396]\n", + " [30.40696816 0.7800535 ]\n", + " [25.03096826 0.7790317 ]\n", + " [19.65496836 0.7780099 ]\n", + " [14.27896845 0.77698811]\n", + " [ 8.90296855 0.77596631]\n", + " [ 3.52696865 0.77494451]\n", + " [ 1.62399904 29.55208334]\n", + " [ 1.62502084 24.17608344]\n", + " [ 1.62604264 18.80008353]\n", + " [ 1.62706443 13.42408364]\n", + " [ 1.62808623 8.04808373]\n", + " [ 1.62910803 2.67208383]\n", + " [32.29863784 31.4554136 ]\n", + " [32.29863784 31.4554136 ]\n", + " [ 1.62946868 0.77458386]\n", + " [ 1.62946868 0.77458386]\n", + " [30.40149852 29.55755297]\n", + " [25.02549862 29.55653118]\n", + " [19.64949872 29.55550938]\n", + " [14.27349882 29.55448759]\n", + " [ 8.89749891 29.55346579]\n", + " [ 3.52149901 29.55244399]\n", + " [30.40252032 24.18155307]\n", + " [25.02652042 24.18053128]\n", + " [DEBUG:root:mm_to_pix: fitpx.shape: (96, 2)\n", + " 0.09199108 0.99564928]\n", + " [-0.0513315 0.09183551 0.99445026]\n", + " [-0.08752139 0.0914995 0.99195154]\n", + " [-0.12319735 0.09098698 0.9882023 ]\n", + " [-0.15815714 0.09030259 0.98327604]\n", + " [-0.19220433 0.0894502 0.97726975]\n", + " [-0.01490708 0.05562756 0.9983403 ]\n", + " [-0.05154747 0.05553685 0.99712513]\n", + " [-0.08788092 0.05533649 0.99459279]\n", + " [-0.1236965 0.05502916 0.9907931 ]\n", + " [-0.15879197 0.05461804 0.98580017]\n", + " [-0.19297207 0.05410588 0.97971135]\n", + " [-0.01494734 0.0189322 0.99970903]\n", + " [-0.05166195 0.01890777 0.99848562]\n", + " [-0.08806808 0.01884587 0.99593617]\n", + " [-0.12395417 0.01874743 0.99211083]\n", + " [-0.15911791 0.01861357 0.9870841 ]\n", + " [-0.19336467 0.01844527 0.98095356]]\n", + "19.65052052 24.17950948]\n", + " [14.27452061 24.17848769]\n", + " [ 8.89852071 24.17746589]\n", + " [ 3.52252081 24.17644409]\n", + " [30.40354212 18.80555317]\n", + " [25.02754221 18.80453137]\n", + " [19.65154231 18.80350958]\n", + " [14.27554241 18.80248779]\n", + " [ 8.89954251 18.80146598]\n", + " [ 3.5235426 18.80044419]\n", + " [30.40456392 13.42955327]\n", + " [25.02856401 13.42853147]\n", + " [19.65256411 13.42750967]\n", + " [14.27656421 13.42648788]\n", + " [ 8.9005643 13.42546608]\n", + " [ 3.5245644 13.42444429]\n", + " [30.40558571 8.05355336]\n", + " [25.02958581 8.05253157]\n", + " [19.6535859 8.05150977]\n", + " [14.277586 8.05048797]\n", + " [ 8.9015861 8.04946618]\n", + " [ 3.5255862 8.04844438]\n", + " [30.40660751 2.67755346]\n", + " [25.0306076 2.67653166]\n", + " [19.6546077 2.67550987]\n", + " [14.2786078 2.67448807]\n", + " [ 8.90260789 2.67346627]\n", + " [ 3.52660799 2.67244448]]\n", + "DEBUG:root:radec2pix: xyfp: [[32.2358199 31.31614388]\n", + " [32.23338667 26.92971599]\n", + " [32.23095344 22.54328809]\n", + " [32.2285202 18.15686019]\n", + " [32.22608698 13.7704323 ]\n", + " [32.22365375 9.3840044 ]\n", + " [32.22122051 4.99757651]\n", + " [32.21878728 0.61114861]\n", + " [32.2358199 31.31614388]\n", + " [27.849392 31.31857712]\n", + " [23.46296411 31.32101035]\n", + " [19.07653621 31.32344358]\n", + " [14.69010831 31.3258768 ]\n", + " [10.30368042 31.32831004]\n", + " [ 5.91725252 31.33074327]\n", + " [ 1.53082462 31.3331765 ]\n", + " [32.21878728 0.61114861]\n", + " [27.83235938 0.61358184DEBUG:root:radec2pix: fitpx: [[4271.49999987 4155.49999987]\n", + " [4271.49999978 3863.07142838]\n", + " [4271.49999978 3570.64285699]\n", + " [4271.50000021 3278.21428583]\n", + " [4271.50000028 2985.78571441]\n", + " [4271.50000021 2693.35714292]\n", + " [4271.50000016 2400.92857146]\n", + " [4271.5 2108.5 ]\n", + " [4271.49999987 4155.49999987]\n", + " [3979.07142882 4155.50000028]\n", + " [3686.64285714 4155.5 ]\n", + " [3394.2142857 4155.49999997]\n", + " [3101.78571428 4155.49999999]\n", + " [2809.35714281 4155.49999986]\n", + " [2516.92857145 4155.50000014]\n", + " [2224.49999999 4155.4999997 ]\n", + " [4271.5 2108.5 ]\n", + " [3979.0714288 2108.50000001]\n", + " [3686.64285693 2108.49999999]\n", + " [3394.21428614 2108.50000002]\n", + " [3101.7857146 2108.50000002]\n", + " [2809.35714263 2108.49999998]\n", + " [2516.92857131 2108.49999998]\n", + " [2224.49999992 2108.49999995]\n", + " [2224.49999999 4155.4999997 ]\n", + " [2224.50000001 3863.07142868]\n", + " [2224.5 3570.64285711]\n", + " [2224.50000002 3278.21428594]\n", + " [2224.50000001 2985.78571436]\n", + " [2224.49999998 2693.35714271]\n", + " [2224.50000001 2400.92857146]\n", + " [2224.499]\n", + " [23.44593149 0.61601507]\n", + " [19.0595036 0.6184483 ]\n", + " [14.6730757 0.62088153]\n", + " [10.2866478 0.62331476]\n", + " [ 5.90021991 0.625748 ]\n", + " [ 1.513792 0.62818122]\n", + " [ 1.53082462 31.3331765 ]\n", + " [ 1.52839139 26.94674861]\n", + " [ 1.52595816 22.5603207 ]\n", + " [ 1.52352493 18.17389281]\n", + " [ 1.5210917 13.78746492]\n", + " [ 1.51865847 9.40103702]\n", + " [ 1.51622524 5.01460912]\n", + " [ 1.513792 0.62818122]\n", + " [32.219759 29.4036525 ]\n", + " [32.21677684 24.02765333]\n", + " [32.21379467 18.65165415]\n", + " [32.21081251 13.27565498]\n", + " [32.20783035 7.89965581]\n", + " [32.20484818 2.52365664]\n", + " [30.32331188 31.30220479]\n", + " [24.9473127 31.30518695]\n", + " [19.57131353 31.30816912]\n", + " [14.19531435 31.31115127]\n", + " [ 8.81931518 31.31413344]\n", + " [ 3.44331601 31.3171156 ]\n", + " [30.3062959 0.62720951]\n", + " [24.93029672 0.63019167]\n", + " [19.55429755 0.63317383]\n", + " [14.17829838 0.636156 ]\n", + " [ 8.80229921 0.63913816]\n", + " [ 3.42630004 0.64212033]\n", + " [ 1.54476372 29.42066847]\n", + " [ 1.54178156 24.0446693 ]\n", + " [ 1.53879939 18.66867013]\n", + " [ 1.53581723 13.29267096]\n", + " [ 1.53283507 7.91667178]DEBUG:root:optics_fp: xyfp: [[ 0.26283402 -31.55708986]\n", + " [ 0.26401791 -27.17066146]\n", + " [ 0.2652018 -22.78423305]\n", + " [ 0.26638569 -18.39780463]\n", + " [ 0.26756957 -14.01137623]\n", + " [ 0.26875346 -9.62494781]\n", + " [ 0.26993735 -5.2385194 ]\n", + " [ 0.27112123 -0.85209099]\n", + " [ 0.26283402 -31.55708986]\n", + " [ 4.64926244 -31.55827376]\n", + " [ 9.03569085 -31.55945764]\n", + " [ 13.42211926 -31.56064153]\n", + " [ 17.80854767 -31.56182542]\n", + " [ 22.19497608 -31.56300931]\n", + " [ 26.5814045 -31.56419319]\n", + " [ 30.96783291 -31.56537708]\n", + " [ 0.27112123 -0.85209099]\n", + " [ 4.65754965 -0.85327487]\n", + " [ 9.04397805 -0.85445876]\n", + " [ 13.43040647 -0.85564265]\n", + " [ 17.81683488 -0.85682653]\n", + " [ 22.20326329 -0.85801042]\n", + " [ 26.5896917 -0.85919431]\n", + " [ 30.97612012 -0.8603782 ]\n", + " [ 30.96783291 -31.56537708]\n", + " [ 30.9690168 -27.17894867]\n", + " [ 30.97020068 -22.79252025]\n", + " [ 30.97138456 -18.40609184]\n", + " [ 30.97256845 -14.01966343]\n", + " [ 30.97375234 -9.63323502]\n", + " [ 30.97493622 -5.24680661]\n", + " [ 30.97612012 -0.8603782 ]\n", + " [ 0.2783502 -29.64459399]\n", + " [ 0.27980117 -24.26859418]\n", + " [ 0.28125214 -18.89259438]\n", + " [ 0.28270311 -13.51659457]\n", + " [ 0.28415408 -8.14059477]\n", + " [ 0.28560505 -2.76459497]\n", + " [ 2.175338 -31.54260605]\n", + " [ 7.55133781 -31.54405702]\n", + " [ 12.92733761 -31.54550799]\n", + " [ 18.30333742 -31.54695896]\n", + " [ 23.67933722 -31.54840993]\n", + " [ 29.05533702 -31.5498609 ]\n", + " [ 2.18361712 -0.86760716]\n", + " [ 7.55961692 -0.86905814]\n", + " [ 12.93561673 -0.87050911]\n", + " [ 18.31161653 -0.87196007]\n", + " [ 23.68761633 -0.87341105]\n", + " [ 29.06361614 -0.87486202]\n", + " [ 30.95334909 -29.6528731 ]\n", + " [ 30.95480005 -24.27687329]\n", + " [ 30.95625103 -18.90087349]\n", + " [ 30.95770199 -13.52487368]\n", + " [ 30.95915297 -8.14887388]\n", + " [ 30.96060394 -2.77287408]\n", + " [ 0.27783807 -31.54209392]\n", + " [ 0.27783807 -31.54209392]\n", + " [ 30.96111607 -0.87537415]\n", + " [ 30.96111607 -0.87537415]\n", + " [ 2.17585013 -29.64510611]\n", + " [ 7.55184994 -29.64655709]\n", + " [ 12.92784974 -29.64800806]\n", + " [ 18.30384955 -29.64945903]\n", + " [ 23.67984935 -29.65091 ]\n", + " [ 29.05584916 -29.65236097]\n", + " [ 2.1773011 -24.26910631]\n", + " [ 7.55330091 -24.27055728]\n", + " [ 12.92930071 -24.27200825]\n", + " [ 18.30530052 -24.27345922]\n", + " [ 23.68130032 -24.27491019]\n", + " [ 29.05730013 -24.27636116]\n", + " [ 2.17875207 -18.89310651]\n", + " [ 7.55475188 -18.89455748]\n", + " [ 12.93075168 -18.89600845]\n", + " [ 18.30675149 -18.89745942]\n", + " [ 23.68275129 -18.89891039]\n", + " [ 29.0587511 -18.90036136]\n", + " [ 2.18020304 -13.51710671]\n", + " [ 7.55620285 -13.51855767]\n", + " [ 12.93220265 -13.52000864]\n", + " [ 18.30820245 -13.52145961]\n", + " [ 23.68420226 -13.52291058]\n", + " [ 29.06020207 -13.52436156]\n", + " [ 2.18165401 -8.1411069 ]\n", + " [ 7.55765382 -8.14255787]\n", + " [ 12.93365363 -8.14400884]\n", + " [ 18.30965343 -8.14545981]\n", + " [ 23.68565323 -8.14691078]\n", + " [ 29.06165303 -8.14836175]\n", + " [ 2.18310498 -2.76510709]\n", + " [ 7.55910479 -2.76655806]\n", + " [ 12.93510459 -2.76800904]\n", + " [ 18.31110439 -2.76946001]\n", + " [ 23.68710421 -2.77091098]\n", + " [ 29.063104 -2.77236195]]\n", + "DEBUG:root:radec2pix: xyfp: [[-32.31281793 -31.43806373]\n", + " [-32.31091541 -27.05163558]\n", + " [-32.30901287 -22.66520742]\n", + " [-32.30711034 -18.27877926]\n", + " [-32.3052078 -13.8923511 ]\n", + " [-32.30330527DEBUG:root:radec2pix: xyfp Shape: (96, 2)\n", + "DEBUG:root:optics_fp: rtanth: [45.26169529 42.30243097 39.60873368 37.23827886 35.25632641 33.73142753\n", + " 32.72753223 32.29326616 45.26169529 42.24571523 39.48748363 37.04461879\n", + " 34.98324901 33.37413897 32.28498264 31.76930229 32.29326616 27.90939691\n", + " 23.52648174 19.14517593 14.76691204 10.39553425 6.04599739 1.87684519\n", + " 31.76930229 27.38910685 23.01128618 18.63751379 14.2715122 9.92354331\n", + " 5.63550123 1.87684519 43.93110404 40.47519439 37.47457234 35.04637691\n", + " 33.3160059 32.39547369 43.90748877 40.37685013 37.28961296 34.76410785\n", + " 32.92983309 31.90622779 30.38230115 25.01013154 19.64005824 14.27444739\n", + " 8.9213542 3.63648527 29.86008841 24.49335294 19.13182032 13.78156419\n", + " 8.46399587 3.33911555 45.24048285 45.24048285 1.89760875 1.89760875\n", + " 42.55711672 38.90412112 35.68971629 33.042152 31.10650288 30.02079255\n", + " 38.97957981 34.95468636 31.33776168 28.28574318 25.99834571 24.68901465\n", + " 35.85400749 31.43139051 27.35246822 23.7946523 21.DEBUG:root:optics_fp: xyfp shape: (96, 2)\n", + "DEBUG:root:radec2pix: xyfp: [[32.2358199 31.31614388]\n", + " [32.23338667 26.92971599]\n", + " [32.23095344 22.54328809]\n", + " [32.2285202 18.15686019]\n", + " [32.22608698 13.7704323 ]\n", + " [32.22365375 9.3840044 ]\n", + " [32.22122051 4.99757651]\n", + " [32.21878728 0.61114861]\n", + " [32.2358199 31.31614388]\n", + " [27.849392 31.31857712]\n", + " [23.46296411 31.32101035]\n", + " [19.07653621 31.32344358]\n", + " [14.69010831 31.3258768 ]\n", + " [10.30368042 31.32831004]\n", + " [ 5.91725252 31.33074327]\n", + " [ 1.53082462 31.3331765 ]\n", + " [32.21878728 0.61114861]\n", + " [27.83235938 0.61358184]\n", + " [23.44593149 0.61601507]\n", + " [19.0595036 0.6184483 ]\n", + " [14.6730757 0.62088153]\n", + " [10.2866478 0.62331476]\n", + " [ 5.90021991 0.625748 ]\n", + " [ 1.513792 0.62818122]\n", + " [ 1.53082462 31.3331765 ]\n", + " [ 1.52839139 26.94674861]\n", + " [ 1.52595816 22.5603207 ]\n", + " [ 1.52352493 18.17389281]\n", + " [ 1.5210917 13.78746492]\n", + " [ 1.51865847 9.40103702]\n", + " [ 1.51622524 5.01460912]\n", + " [ 1.513792 0.62818122]\n", + " [32.219759 29.4036525 ]\n", + " [32.21677684 24.02765333]\n", + " [32.213794602418109 19.38168349\n", + " 33.30787918 28.49275823 23.91782767 19.75070735 16.30708904 14.12638019\n", + " 31.48209857 26.3352423 21.30188242 16.48630206 12.15026205 9.01456223\n", + " 30.50627799 25.16059326 19.83130509 14.53645837 9.33484517 4.55771859]\n", + "DEBUG:root:cartToSphere: vec: [[0.20581047 0.20196806 0.95752334]\n", + " [0.20764708 0.17549093 0.96233343]\n", + " [0.20921111 0.14832034 0.96655667]\n", + " [0.21050368 0.12056829 0.97012962]\n", + " [0.21152432 0.0923455 0.9730004 ]\n", + " [0.2122716 0.06376263 0.97512825]\n", + " [0.21274377 0.0349311 0.97648344]\n", + " [0.21293946 0.00596325 0.9770472 ]\n", + " [0.20581047 0.20196806 0.95752334]\n", + " [0.17940008 0.20380697 0.96243355]\n", + " [0.15228099 0.20537849 0.96676273]\n", + " [0.12456525 0.20668384 0.97044592]\n", + " [0.09636347 0.20772258 0.97342972]\n", + " [0.06778617 0.20849323 0.97567188]\n", + " [0.03894463 0.20899395 0.97714116]\n", + " [0.00995116 0.20922323 0.97781727]\n", + " [0.21293946 0.00596325 0.9770472 ]\n", + " [0.18558556 0.00601646 0.98260969]\n", + " [0.15752187 0.00606233 0.98749689]\n", + " [0.12885256 0.00610071 0.991645 ]\n", + " [0.09968DEBUG:root:radec2pix: lng: [ 90.47719648 90.55672682 90.66687597 90.82953968 91.0940213\n", + " 91.5994309 92.9498036 107.65020813 90.47719648 98.38070645\n", + " 105.9767833 113.03909385 119.43357191 125.11472623 130.10200281\n", + " 134.45251944 107.65020813 169.61839319 174.60281853 176.35464905\n", + " 177.24671913 177.78699525 178.149242 178.40898834 134.45251944\n", + " 138.72924775 143.64878868 149.27726033 155.64622183 162.72363484\n", + " 170.38599488 178.40898834 90.53796733 90.66055396 90.85289348\n", + " 91.19818153 91.99914413 95.89819456 93.94516067 103.46269209\n", + " 112.28380041 120.12202419 126.89084824 132.64302298 158.33080444\n", + " 173.44203131 176.15005523 177.27375664 177.8883436 178.27582468\n", + " 136.22925254 141.89402899 148.59312727 156.4003322 165.25344571\n", + " 174.88216618 90.50467598 90.50467598 178.38048842 178.38048842\n", + " 94.19778856 104.29099371 113.55934226 121.68876645 128.61161022\n", + " 134.41785939 95.12656191 107.28679494 118.04349613 127.02097674\n", + " 134.29081962 140.12241992 96.57828818 111.793380DEBUG:root:mm_to_pix: fitpx: [[0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]]\n", + "382 0.00613144 0.99500027]\n", + " [0.07012532 0.00615431 0.99751921]\n", + " [0.04029051 0.00616917 0.99916896]\n", + " [0.01073 124.38427646\n", + " 134.09036566 141.4100222 146.95926252 99.16244844 119.20302386\n", + " 133.72701528 143.55240671 150.27503583 155.04314708 105.00164812\n", + " 132.86645918 147.80237126 156.01703787 161.01884636 164.3374646\n", + " 128.29176769 159.89787077 167.9213331 171.39949271 173.32787944\n", + " 174.55097942]\n", + " -9.50592294]\n", + " [-32.30140274 -5.11949478]\n", + " [-32.2995002 -0.73306663]\n", + " [-32.31281793 -31.43806373]\n", + " [-27.92638978 -31.43996627]\n", + " [-23.53996162 -31.4418688 ]\n", + " [-19.15353346 -31.44377134]\n", + " [-14.7671053 -31.44567387]\n", + " [-10.38067715 -31.44757641]\n", + " [ -5.99424899 -31.44947894]\n", + " [ -1.60782083 -31.45138147]\n", + " [-32.2995002 -0.73306663]\n", + " [-27.91307204 -0.73496916]\n", + " [-23.52664389 -0.73687169]\n", + " [-19.14021573 -0.73877423]\n", + " [-14.75378757 -0.74067676]\n", + " [-10.36735941 -0.74257929]\n", + " [ -5.98093125 -0.74448183]\n", + " [ -1.59450309 -0.74638436]\n", + " [ -1.60782083 -31.45138147]\n", + " [ -1.60591829 -27.06495331]\n", + " [ -1.60401576 -22.67852516]\n", + " [ -1.60211323 -18.292097 ]\n", + " [ -1.60021069 -13.90566884]\n", + " [ -1.59830816 -9.51924\n", + " [ 1.5298529 2.54067261]\n", + " [32.22081158 31.30115221]\n", + " [32.22081158 31.30115221]\n", + " [ 1.52880032 0.6431729 ]\n", + " [ 1.52880032 0.6431729 ]\n", + " [30.32225929 29.40470508]\n", + " [24.94626012 29.40768724]\n", + " [19.57026095 29.41066941]\n", + " [14.19426178 29.41365157]\n", + " [ 8.8182626 29.41663373]\n", + " [ 3.44226343 29.4196159 ]\n", + " [30.31927713 24.02870591]\n", + " [24.94327796 24.03168807]\n", + " [19.56727878 24.03467023]\n", + " [14.19127961 24.0376524 ]\n", + " [ 8.81528044 24.04063456]\n", + " [ 3.43928127 24.04361672]\n", + " [30.31629496 18.65270673]\n", + " [24.9402958 18.6556889 ]\n", + " [19.56429662 18.65867106]\n", + " [14.18829744 18.66165322]\n", + " [ 8.81229827 18.66463538]\n", + " [ 3.4362991 18.66761755]\n", + " [30.31331281 13.27670756]\n", + " [24.93731363 13.27968972]\n", + " [19.56131446 13.28267189]\n", + " [14.18531529 13.28565406]\n", + " [ 8.80931611 13.28863621]\n", + " [ 3.43331694 13.29161838]\n", + " [30.31033064 7.90070839]\n", + " [24.93433147 7.90369055]\n", + " [19.55833229 7.90667271]\n", + " [14.18233312 7.90965488]\n", + " [ 8.80633395 7.91263704]\n", + " [ 3.43033477 7.9156192 ]\n", + " [30.30734847 2.52470921]\n", + " [24.9313493 2.52769138]\n", + " [19.55535013 2.53067354]\n", + " [14.17935096 2.53365571]\n", + " [ 8.80335178 2.53663787]\n", + " [ 3.42735261 2.53962004]]\n", + "068]\n", + " [ -1.59640563 -5.13281252]\n", + " [ -1.59450309 -0.74638436]\n", + " [-32.29698843 -29.52557043]\n", + " [-32.29465669 -24.14957093]\n", + " [-32.29232495 -18.77357144]\n", + " [-32.2899932 -13.39757194]\n", + " [-32.28766146 -8.02157244]\n", + " [-32.28532972 -2.64557295]\n", + " [-30.40031161 -31.42389325]\n", + " [-25.02431212 -31.42622499]\n", + " [-19.64831262 -31.42855673]\n", + " [-14.27231313 -31.43088848]\n", + " [ -8.89631363 -31.43322022]\n", + " [ -3.52031414 -31.43555196]\n", + " [-30.38700689 -0.74889614]\n", + " [-25.01100739 -0.75122788]\n", + " [-19.6350079 -0.75355962]\n", + " [-14.25900841 -0.75589136]\n", + " [ -8.88300892 -0.7582231 ]\n", + " [ -3.50700942 -0.76055484]\n", + " [ -1.62199131 -29.53887515]\n", + " [ -1.61965957 -24.16287565]\n", + " [ -1.61732783 -18.78687616]\n", + " [ -1.61499609 -13.41087666]\n", + " [ -1.61266434 -8.03487716]\n", + " [ -1.6103326 -2.65887768]\n", + " [-32.29781143 -31.42307024]\n", + " [-32.29781143 -31.42307024]\n", + " [ -1.60950959 -0.76137785]\n", + " [ -1.60950959 -0.76137785]\n", + " [-30.3994886 -29.52639343]\n", + " [-25.02348911 -29.52872517]\n", + " [-19.64748962 -29.53105692]\n", + " [-14.27149012 -29.53338866]\n", + " [ -8.89549063 -29.5357204 ]\n", + " [ -3.51949113 -29.53805214]\n", + " [-30.39715686 -24.15039394]\n", + " [-25.02115737 -24.15272568]\n", + " [-19.64515788 -24.15505742]\n", + " [-14.26915838 -24.15738916]\n", + " [ -8.89315889 -24.1597209 ]\n", + " [ -3.51715939 -24.16205264]\n", + " [-30.39482512 -18.77439444]\n", + " [-25.01882563 -18.77672618]\n", + " [-19.64282613 -18.77905793]\n", + " [-14.26682664 -18.78138967]\n", + " [ -8.89082714 -18.78372141]\n", + " [ -3.51482765 -18.78605315]\n", + " [-30.39249338 -13.39839495]\n", + " [-25.01649389 -13.40072669]\n", + " [-19.64049439 -13.40305843]\n", + " [-14.2644949 -13.40539017]\n", + " [ -8.8884954 -13.40772191]\n", + " [ -3.51249591 -13.41005365]\n", + " [-30.39016163 -8.02239545]\n", + " [-25.01416214 -8.02472719]\n", + " [-19.63816265 -8.02705893]\n", + " [-14.26216315 -8.02939068]\n", + " [ -8.88616366 -8.03172242]\n", + " [ -3.51016417 -8.03405416]\n", + " [-30.3878299 -2.64639596]\n", + " [-25.01183041 -2.6487277 ]\n", + " [-19.63583091 -2.65105944]\n", + " [-14.25983141 -2.65339118]\n", + " [ -8.88383191 -2.65572292]\n", + " DEBUG:root:radec2pix: xyfp: [[32.23341696 31.55141621]\n", + " [32.23194958 27.16498788]\n", + " [32.2304822 22.77855956]\n", + " [32.22901483 18.39213124]\n", + " [32.22754745 14.00570291]\n", + " [32.22608007 9.61927458]\n", + " [32.22461269 5.23284626]\n", + " [32.2231453 0.84641793]\n", + " [32.23341696 31.55141621]\n", + " [27.84698864 31.5528836 ]\n", + " [23.46056031 31.55435097]\n", + " [19.07413198 31.55581835]\n", + " [14.68770366 31.55728573]\n", + " [10.30127533 31.55875311]\n", + " [ 5.91484701 31.56022049]\n", + " [ 1.52841868 31.56168787]\n", + " [32.2231453 0.84641793]\n", + " [27.83671698 0.84788531]\n", + " [23.45028865 0.84935269]\n", + " [19.06386033 0.85082007]\n", + " [14.677432 0.85228745]\n", + " [10.29100367 0.85375483]\n", + " [ 5.90457535 0.85522221]\n", + " [ 1.51814702 0.85668959]\n", + " [ 1.52841868 31.56168787]\n", + " [ 1.5269513 27.17525955]\n", + " [ 1.52548392 22.78883122]\n", + " [ 1.52401654 18.4024029 ]\n", + " [ 1.52254916 14.01597457]\n", + " [ 1.52108178 9.62954624]\n", + " [ 1.5196144 5.24311792]\n", + " [ 1.51814702 0.85668959]\n", + " [32.21777718 29.63892134]\n", + " [32.21597876 24.26292164]\n", + " [32.21418034 18.88692194]\n", + " [32.21238193 13.51092224]\n", + "DEBUG:root:mm_to_pix: fitpx.shape: (96, 2)\n", + "DEBUG:root:radec2pix: lat: [77.93927193 79.54395482 81.18055575 82.84390632 84.52894038 86.23049276\n", + " 87.9428694 89.64907294 77.93927193 77.81611283 77.48163499 76.95619116\n", + " 76.26808809 75.44881244 74.52941663 73.53851291 89.64907294 88.14278148\n", + " 86.44266427 84.74397225 83.05883421 81.39378264 79.75434117 78.14585205\n", + " 73.53851291 74.55039439 75.49464441 76.34256389 77.06256929 77.62200189\n", + " 77.99067226 78.14585205 78.63460262 80.62342084 82.65501815 84.72002626\n", + " 86.80886799 88.90945013 77.91780497 77.62268078 77.02911929 76.18620636\n", + " 75.15153709 73.98133314 89.07797965 87.01823413 84.93466191 82.86963733\n", + " 80.83566227 78.84284498 73.98994449 75.188461 76.25722019 77.13921802\n", + " 77.77469141 78.11085607 77.94465092 77.94465092 78.15114253 78.15114253\n", + " 78.60576152 78.28926489 77.65557547 76.7612779 75.67077293 74.44486167\n", + " 80.58736145 80.19458487 79.42244991 78.35883667 77.09292697 75.69943663\n", + " 82.60788147 82.10171615 81.13877773 79.86296648 78.39DEBUG:root:make_az_asym: xyp: [[ 0.26283402 -31.55708986]\n", + " [ 0.26401791 -27.17066146]\n", + " [ 0.2652018 -22.78423305]\n", + " [ 0.26638569 -18.39780463]\n", + " [ 0.26756957 -14.01137623]\n", + " [ 0.26875346 -9.62494781]\n", + " [ 0.26993735 -5.2385194 ]\n", + " [ 0.27112123 -0.85209099]\n", + " [ 0.26283402 -31.55708986]\n", + " [ 4.64926244 -31.55827376]\n", + " [ 9.03569085 -31.55945764]\n", + " [ 13.42211926 -31.56064153]\n", + " [ 17.80854767 -31.56182542]\n", + " [ 22.19497608 -31.56300931]\n", + " [ 26.5814045 -31.56419319]\n", + " [ 30.96783291 -31.56537708]\n", + " [ 0.27112123 -0.85209099]\n", + " [ 4.65754965 -0.85327487]\n", + " [ 9.04397805 -0.85445876]\n", + " [ 13.43040647 -0.85564265]\n", + " [ 17.81683488 -0.85682653]\n", + " [ 22.20326329 -0.85801042]\n", + " [ 26.5896917 -0.85919431]\n", + " [ 30.97612012 -0.8603782 ]\n", + " [ 30.96783291 -31.56537708]\n", + " [ 30.9690168 -27.17894867]\n", + " [ 30.97020068 -22.79252025]\n", + " [ 30.97138456 -18.40609184]\n", + " [ 30.97256845 -14.01966343]\n", + " [ 30.97375234 -9.63323502]\n", + " [ 30.97493622 -5.24680661]\n", + " [ 30.97612012 -0.8603782 ]\n", + " [ 0.2783502 -29.64459399]\n", + " [ 0.27980117 18.65165415]\n", + " [32.21081251 13.27565498]\n", + " [32.20783035 7.89965581]\n", + " [32.20484818 2.52365664]\n", + " [30.32331188 31.30220479]\n", + " [24.9473127 31.30518695]\n", + " [19.57131353 31.30816912]\n", + " [14.19531435 31.31115127]\n", + " [ 8.81931518 31.31413344]\n", + " [ 3.44331601 31.3171156 ]\n", + " [30.3062959 0.62720951]\n", + " [24.93029672 0.63019167]\n", + " [19.55429755 0.63317383]\n", + " [14.17829838 0.636156 ]\n", + " [ 8.80229921 0.63913816]\n", + " [ 3.42630004 0.64212033]\n", + " [ 1.54476372 29.42066847]\n", + " [ 1.54178156 24.0446693 ]\n", + " [ 1.53879939 18.66867013]\n", + " [ 1.53581723 13.29267096]\n", + " [ 1.53283507 7.91667178]\n", + " [ 1.5298529 2.54067261]\n", + " [32.22081158 31.30115221]\n", + " [32.22081158 31.30115221]\n", + " [ 1.52880032 0.6431729 ]\n", + " [ 1.52880032 0.6431729 ]\n", + " [30.32225929 29.40470508]\n", + " [24.94626012 29.40768724]\n", + " [19.57026095 29.41066941]\n", + " [14.19426178 29.41365157]\n", + " [ 8.8182626 29.41663373]\n", + " [ 3.44226343 29.4196159 ]\n", + " [30.31927713 24.02870591]\n", + " [24.94327796 24.03168807]\n", + " [19.56727878 24.03467023]\n", + " [14.19127961 24.0376524 ]\n", + " [ 8.81528044 24.04063456]\n", + " [ 3.43928127 24.04361672]\n", + " [30.31629496 18.65270673]\n", + " [24.9402958 18.6556889 ]\n", + " [19.56429662 18.65867106]\n", + " [14.18829744 18.66165322]\n", + " [ 8.81229827 18.66463538]\n", + " [ 3.4362991 18.66761755]\n", + " [30.31331281 13.27670756]\n", + " [24.93731363 13.27968972]\n", + " [19.56131446 13.28267189]\n", + " [14.18531529 13.28565406]\n", + " [ 8.80931611 13.28863621]\n", + " [ 3.43331694 13.29161838]\n", + " [30.31033064 7.90070839]\n", + " [24.93433147 7.90369055]\n", + " [19.55833229 7.90667271]\n", + " [14.18233312 7.90965488]\n", + " [ 8.80633395 7.91263704]\n", + " [ 3.43033477 7.9156192 ]\n", + " [30.30734847 2.52470921]\n", + " [24.9313493 2.52769138]\n", + " [19.55535013 2.53067354]\n", + " [14.17935096 2.53365571]\n", + " [ 8.80335178 2.53663787]\n", + " [ 3.42735261 2.53962004]]\n", + "29607 0.00617591 0.99992792]\n", + " [0.00995116 0.20922323 0.97781727]\n", + " [0.01003858 0.18176716 0.98329036]\n", + " [0.01011374 0.15361557 0.98807893]\n", + " [0.01017639 0.12487279 0.99212057]\n", + " [0.01022623 0.09564544 0.99536294]\n", + " [0.01026295 0.0660437 0.99776395]\n", + " [0.01028629 0.03618151 0.99929229]\n", + " [0.01029607 0.00617591 0.99992792]\n", + " [0.20655553 0.19052DEBUG:root:radec2pix: xyfp: [[32.31363499 31.47041645]\n", + " [32.3144687 27.08398795]\n", + " [32.31530242 22.69755946]\n", + " [32.31613613 18.31113097]\n", + " [32.31696984 13.92470248]\n", + " [32.31780355 9.53827398]\n", + " [32.31863726 5.15184549]\n", + " [32.31947097 0.765417 ]\n", + " [32.31363499 31.47041645]\n", + " [27.9272065 31.46958273]\n", + " [23.540778 31.46874902]\n", + " [19.15434951 31.46791531]\n", + " [14.76792102 31.4670816 ]\n", + " [10.38149253 31.46624788]\n", + " [ 5.99506403 31.46541417]\n", + " [ 1.60863554 31.46458045]\n", + " [32.31947097 0.765417 ]\n", + " [27.93304248 0.76458329]\n", + " [23.54661399 0.76374957]\n", + " [19.1601855 0.76291586]\n", + " [14.77375701 0.76208215]\n", + " [10.38732851 0.76124844]\n", + " [ 6.00090002 0.76041472]\n", + " [ 1.61447153 0.75958101]\n", + " [ 1.60863554 31.46458045]\n", + " [ 1.60946926 27.07815197]\n", + " [ 1.61030297 22.69172348]\n", + " [ 1.61113668 18.30529498]\n", + " [ 1.61197039 13.91886648]\n", + " [ 1.6128041 9.53243799]\n", + " [ 1.61363782 5.1460095 ]\n", + " [ 1.61447153 0.75958101]\n", + " [32.29899849 29.55791363]\n", + " [32.30002028 24.18191372]\n", + " [32.30104209 18.80591382]\n", + " [32.30206388 13.42991392]\n", + " [32.30308568 8.05391402]\n", + " [32.30410748 2.67791411]\n", + " [30.40113787 31.45505294]\n", + " [25.02513797 31.45403115]\n", + " [19.64913807 31.45300935]\n", + " [14.27313817 31.45198755]\n", + " [ 8.89713826 31.45096576]\n", + " [ 3.52113836 31.44994396]\n", + " [30.40696816 0.7800535 ]\n", + " [25.03096826 0.7790317 ]\n", + " [19.65496836 0.7780099 ]\n", + " [14.27896845 0.77698811]\n", + " [ 8.90296855 0.77596631]\n", + " [ 3.52696865 0.77494451]\n", + " [ 1.62399904 29.55208334]\n", + " [ 1.62502084 24.17608344]\n", + " [ 1.62604264 18.80008353]\n", + " [ 1.62706443 13.42408364]\n", + " [ 1.62808623 8.04808373]\n", + " [ 1.62910803 2.67208383]\n", + " [32.29863784 31.4554136 ]\n", + " [32.29863784 31.4554136 ]\n", + " [ 1.62946868 0.77458386]\n", + " [ 1.62946868 0.77458386]\n", + " [30.40149852 29.55755297]\n", + " [25.02549862 29.55653118]\n", + " [19.64949872 29.55550938]\n", + " [14.27349882 29.55448759]\n", + " [ 8.89749891 29.55346579]\n", + " [ 3.52149901 29.55244399]\n", + " [30.40252032 24.18155307]\n", + " [25.02652042 24.18053128]\n", + " [19.65052052 24.17950948]\n", + " [14.27452061 24.17848769]\n", + " [ 8.89852071 24.17746589]\n", + " [ 3.52252081 24.17644409]\n", + " [30.40354212 18.80555317]\n", + " [25.02754221 18.80453137]\n", + " [19.65154231 18.80350958]\n", + " [14.27554241 18.80248779]\n", + " [ 8.89954251 18.80146598]\n", + " [ 3.5235426 18.80044419]\n", + " [30.40456392 13.42955327]\n", + " [25.02856401 13.42853147]\n", + " [19.65256411 13.42750967]\n", + " [14.27656421 13.42648788]\n", + " [ 8.9005643 13.42546608]\n", + " [ 3.5245644 13.42444429]\n", + " [30.40558571 8.05355336]\n", + " [25.02958581 8.05253157]\n", + " [19.6535859 8.05150977]\n", + " [14.277586 8.05048797]\n", + " [ 8.9015861 8.04946618]\n", + " [ 3.5255862 8.04844438]\n", + " [30.40660751 2.67755346]\n", + " [25.0306076 2.67653166]\n", + " [19.6546077 2.67550987]\n", + " [14.2786078 2.67448807]\n", + " [ 8.90260789 2.67346627]\n", + " [ 3.52660799 2.67244448]]\n", + "DEBUG:root:optics_fp: cphi: [0.71341716 0.76328013 0.81514194 0.86698087 0.91566575 0.95700502\n", + " 0.98630354 0.99950918 0.71341716 0.66051768 0.59557134 0.51643629\n", + " 0.4214805 0.31036993 0.18497457 0.04990581 0.99950918 0.99934039\n", + " 0.99906819 0.99858739 0.99761569 0.9951653 0.98558541 0.8377988\n", + " 0.04990581 0.05781889 0.0687377 0.08476872 0.11057085 0.15882919\n", + " 0.27935111 0.8377988 0.73466528 0.79733703 0.86111952 0.92071715\n", + " 0.96846887 0.9959178 0.69186293 0.61921532 0.52631184 0.40990453\n", + " 0.26948104 0.10963271 0.999428 0.999152 0.99861839 0.99737128\n", + " 0.99322638 0.95832228 0.05357183 0.06521663 0.08337359 0.1155749\n", + " 0.18791565 0.47564444 0.71341996 0.71341996 0.83653968 0.83653968\n", + " 0.71379735 0.6426352 0.54988271 0.43124184 0.28525093 0.11649124\n", + " 0.77925087 0.71517941 0.62617339 0.50367681 0.34120915 0.14155583\n", + " 0.8471183 0.79527459 0.71732418 0.59864658 0.42182798 0.18020046\n", + " 0.91180529 0.87721591 0.82023759 0.72110338 0.54370846 0.24707693\n", + " 0.96461215 0.94899507 0.92085832 0.86374835 0.72953296 0.3869314\n", + " 0.99539279 0.99320908 0.98902871 0.97944976 0.94931741 0.76479745]\n", + "DEBUG:root:radec2pix: ccdpx: [[-4.44999999e+01 -4.99999855e-01]\n", + " [-4.45000000e+01 2.91928571e+02]\n", + " [-4.45000000e+01 5.84357143e+02]\n", + " [-4.44999998e+01 8.76785714e+02]\n", + " [-4.45000001e+01 1.16921429e+03]\n", + " [-4.45000000e+01 1.46164286e+03]\n", + " [-4.45000000e+01 1.75407143e+03]\n", + " [-4.4499992 2108.49999995]\n", + " [4270.5 4028. ]\n", + " [4270.50000018 3669.60000013]\n", + " [4270.49999988 3311.19999993]\n", + " [4270.50000028 2952.80000012]\n", + " [4270.5 2594.4 ]\n", + " [4270.50000006 2236.00000001]\n", + " [4143.99999986 4154.49999985]\n", + " [3785.60000014 4154.50000018]\n", + " [3427.20000004 4154.50000006]\n", + " [3068.8 4154.49999999]\n", + " [2710.39999994 4154.49999977]\n", + " [2351.99999997 4154.49999974]\n", + " [4144.00000019 2109.50000001]\n", + " [3785.59999998 2109.5 ]\n", + " [3427.19999968 2109.49999999]\n", + " [3068.80000035 2109.50000002]\n", + " [2710.39999998 2109.5 ]\n", + " [2351.99999973 2109.49999993]\n", + " [2225.50000001 4028.00000029]\n", + " [2225.50000001 3669.60000014]\n", + " [2225.50000002 3311.20000027]\n", + " [2225.50000003 2952.80000024]\n", + " [2225.49999999 2594.39999997]\n", + " [2225.49999991 2235.99999983]\n", + " [4270.50000028 4154.50000027]\n", + " [4270.50000028 4154.50000027]\n", + " [2225.50000021 2109.50000012]\n", + " [2225.50000021 2109.50000012]\n", + " [4143.99999997 4027.99999997]\n", + " [3785.60000006 4028.00000007]\n", + " [3427.20000002 4028.00000003]\n", + " [3068.8 4028.00000001]\n", + " [2710.40000007 4028.00000025]\n", + " [2352. 4028.00000001]\n", + " [4143.99999988 3669.5999999 ]\n", + " [3785.59999992 3669.59999992]\n", + " [3427.20000003 3669.60000003]\n", + " [3068.79999996 3669.59999994]\n", + " [2710.39999994 3669.59999984]\n", + " [2352.00000003 3669.60000024]\n", + " [4143.99999986 3311.19999992]\n", + " [3785.60000024 3311.20000018]\n", + " [3427.19999985 3311.19999985]\n", + " [3068.80000018 3311.20000023]\n", + " [2710.39999997 3311.19999993]\n", + " [2351.99999998 3311.19999989]\n", + " [4144.00000009 2952.80000004]\n", + " [3785.60000017 2952.80000009]\n", + " [3427.19999999 2952.79999999]\n", + " [3068.79999994 2952.79999994]\n", + " [2710.40000012 2952.80000019]\n", + " [2351.99999999 2952.79999997]\n", + " [4143.99999998 2594.4 ]\n", + " [3785.60000016 2594.40000005]\n", + " [3427.20000028 2594.40000012]\n", + " [3068.79999967 2594.39999981]\n", + " [2710.40000007 2594.40000006]\n", + " [2351.99999992 2594.39999981]\n", + " [4143.99999971 2235.99999997]\n", + " [3785.59999981 2235.99999998]\n", + " [3427.2 2236. ]\n", + " [3068.79999989 2235.99999998]\n", + " [2710.40000023 2236.00000007]\n", + " [2352.00000024 2236.00000019]]\n", + "628485 76.82509319\n", + " 84.6534244 83.96086026 82.72578935 81.19023674 79.50664486 77.76043854\n", + " 86.6984902 85.65438612 84.03898568 82.21913056 80.33294013 78.43884558\n", + " 88.61780046 86.84637931 84.83282934 82.79823023 80.78132572 78.79952798]\n", + "281 0.95970614]\n", + " [0.20862193 0.15759064 0.96521608]\n", + " [0.21028039 0.12372836 0.9697801 ]\n", + " [0.21153069 0.08914025 0.97329789]\n", + " [0.21237025 0.05403012 0.97569443]\n", + " [0.212796 0.01860347 0.97691953]\n", + " [0.1943962 0.20271324 0.95974864]\n", + " [0.16153559 0.2047859 0.96538541]\n", + " [0.12772204 0.20645854 0.97008348]\n", + " [0.0931597 0.207731 0.97373975]\n", + " [0.05805212 0.20860063 0.97627646]\n", + " [0.02260459 0.20906415 0.97764064]\n", + " [0.2011068 0.00608691 0.97955041]\n", + " [0.16709142 0.00614821 0.98592224]\n", + " [0.1321133 0.00619816 0.99121524]\n", + " [0.09636698 0.00623643 0.99532633]\n", + " [0.06005439 0.00626269 0.99817546]\n", + " [0.02338579 0.00627666 0.99970681]\n", + " [0.01009044 0.19734414 0.98028234]\n", + " [0.01019035 0.16321317 0.9865382 ]\n", + " [0.01027142 0.12814101 0.99170277]\n", + " [0.0103331 0.0923229 0.9956755 ]\n", + " [0.01037483 0.05596168 0.99837901]\n", + " [0.01039617 0.01926848 0.99976029]\n", + " [0.20572824 0.20188558 0.95755841]\n", + " [0.20572824 0.20188558 0.95755841]\n", + " [0.01039877 0.00627861 0.99992622]\n", + " [0.01039877 0.00627861 0.99992622]\n", + " [0.19517474 0.19130075 0.96193079]\n", + " [0.1621771 0.19325024 0.96765331]\n", + " [0.12822694 0.19482509 0.9724202 ]\n", + " [0.09352723 0.19602426 0.97612865]\n", + " [0.05828102 0.19684438 0.97870098]\n", + " [0.02269376 0.19728171 0.98008414]\n", + " [0.19712067 0.15822879 0.96752627]\n", + " [0.1637837 0.1598311 0.97346234]\n", + " [0.12949375 0.16112922 0.97840112]\n", + " [0.09445078 0.16212009 0.98224036]\n", + " [0.05885684 0.16279899 0.98490221]\n", + " [0.0229182 0.16316141 0.98633316]\n", + " [0.19868404 0.12422708 0.97215857]\n", + " [0.16507817 0.12548158 0.97826559]\n", + " [0.13051704 0.12650047 0.98334273]\n", + " [0.09519827 0.12727979 0.98728777]\n", + " [0.05932353 0.12781451 0.99002231]\n", + " [0.02310025 0.12810021 0.99149217]\n", + " [0.19986372 0.08949878 0.97572766]\n", + " [0.16605732 0.09040196 0.98196357]\n", + " [0.13129265 0.09113695 0.98714553]\n", + " [0.0957657DEBUG:root:fitpix2pix: ccdpx: shape: (96, 2)\n", + "3 0.09169995 0.99117105]\n", + " [0.05967819 0.09208666 0.99396105]\n", + " [0.02323871 0.09229337 0.99546064]\n", + " [0.20065641 0.05424725 0.9781586 ]\n", + " [0.16671646 0.05479478 0.98448116]\n", + " [0.13181555 0.05524091 0.98973385]\n", + " [0.09614872 0.05558298 0.99381384]\n", + " [0.05991775 0.05581806 0.99664146]\n", + " [0.0233323 0.05594375 0.99816126]\n", + " [0.20105858 0.01867818 0.97940113]\n", + " [0.16705125 0.01886665 0.98576768]\n", + " [0.13208139 0.0190203 0.99105637]\n", + " [0.09634357 0.01913813 0.99516413]\n", + " [0.06003972 0.01921909 0.99801095]\n", + " [0.02338002 0.01926233 0.99954106]]\n", + "7 -24.26859418]\n", + " [ 0.28125214 -18.89259438]\n", + " [ 0.28270311 -13.51659457]\n", + " [ 0.28415408 -8.14059477]\n", + " [ 0.28560505 -2.76459497]\n", + " [ 2.175338 -31.54260605]\n", + " [ 7.55133781 -31.54405702]\n", + " [ 12.92733761 -31.54550799]\n", + " [ 18.30333742 -31.54695896]\n", + " [ 23.67933722 -31.54840993]\n", + " [ 29.05533702 -31.5498609 ]\n", + " [ 2.18361712 -0.86760716]\n", + " [ 7.55961692 -0.86905814]\n", + " [ 12.93561673 -0.87050911]\n", + " [ 18.31161653 -0.87196007]\n", + " [ 23.68761633 -0.87341105]\n", + " [ 29.06361614 -0.87486202]\n", + " [ 30.95334909 -29.6528731 ]\n", + " [ 30.95480005 -24.27687329]\n", + " [ 30.95625103 -18.90087349]\n", + " [ 30.95770199 -13.52487368]\n", + " [ 30.95915297 -8.14887388]\n", + " [ 30.96060394 -2.77287408]\n", + " [ 0.27783807 -31.54209392]\n", + " [ 0.27783807 -31.54209392]\n", + " [ 30.96111607 -0.87537415]\n", + " [ 30.96111607 -0.87537415]\n", + " [ 2.17585013 -29.64510611]\n", + " [ 7.55184994 -29.64655709]\n", + " [ 12.92784974 -29.64800806]\n", + " [ 18.30384955 -29.64945903]\n", + " [ 23.67984935 -29.65091 ]\n", + " [ 29.05584916 -29.65236097]\n", + " [ 2.1773011 -24.26910631]\n", + " [ 7.55330091 -24.27055728]\n", + " [ 12.92930071 -24.27200825]\n", + " [ 18.30530052 -24.27345922]\n", + " [ 23.68130032 -24.27491019]\n", + " [ 29.05730013 -24.27636116]\n", + " [ 2.17875207 -18.89310651]\n", + " [ 7.55475188 -18.89455748]\n", + " [ 12.93075168 -18.89600845]\n", + " [ 18.30675149 -18.89745942]\n", + " [ 23.68275129 -18.89891039]\n", + " [ 29.0587511 -18.90036136]\n", + " [ 2.18020304 -13.51710671]\n", + " [ 7.55620285 -13.51855767]\n", + " [ 12.93220265 -13.52000864]\n", + " [ 18.30820245 -13.52145961]\n", + " [ 23.68420226 -1DEBUG:root:radec2pix: ccdpx: [[-4.45000002e+01 -5.00000174e-01]\n", + " [-4.44999997e+01 2.91928572e+02]\n", + " [-4.45000002e+01 5.84357143e+02]\n", + " [-4.45000000e+01 8.76785714e+02]\n", + " [-4.45000001e+01 1.16921429e+03]\n", + " [-4.44999999e+01 1.46164286e+03]\n", + " [-4.45000001e+01 1.75407143e+03]\n", + " [-4.44999997e+01 2.04650000e+03]\n", + " [-4.45000002e+01 -5.00000174e-01]\n", + " [ 2.47928571e+02 -5.00000003e-01]\n", + " [ 5.40357143e+02 -4.99999889e-01]\n", + " [ 8.32785714e+02 -5.00000160e-01]\n", + " [ 1.12521429e+03 -5.00000087e-01]\n", + " [ 1.41764286e+03 -5.00000059e-01]\n", + " [ 1.71007143e+03 -4.99999907e-01]\n", + " [ 2.00250000e+03 -4.99999721e-01]\n", + " [-4.44999997e+01 2.04650000e+03]\n", + " [ 2.47928571e+02 2.04650000e+03]\n", + " [ 5.40357143e+02 2.04650000e+03]\n", + " [ 8.32785714e+02 2.04650000e+03]\n", + " [ 1.12521429e+03 2.04650000e+03]\n", + " [ 1.41764286e+03 2.04650000e+03]\n", + " [ 1.71007143e+03 2.04650000e+03]\n", + " [ 2.00250000e+03 2.04650000e+03]\n", + " [ 2.00250000e+03 -4.99999721e-01]\n", + " [ 2.00250000e+03 2.91928571e+02]\n", + " [ 2.00250000e+03 5.84357143e+02]\n", + " [ 2.00250000e+03 8.76785DEBUG:root:fitpix2pix: visCut: True\n", + " [32.21058351 8.13492254]\n", + " [32.20878509 2.75892284]\n", + " [30.32091205 31.53705599]\n", + " [24.94491236 31.53885442]\n", + " [19.56891265 31.54065283]\n", + " [14.19291295 31.54245125]\n", + " [ 8.81691325 31.54424967]\n", + " [ 3.44091356 31.54604808]\n", + " [30.31065043 0.86205771]\n", + " [24.93465073 0.86385613]\n", + " [19.55865103 0.86565455]\n", + " [14.18265134 0.86745297]\n", + " [ 8.80665163 0.86925139]\n", + " [ 3.43065193 0.8710498 ]\n", + " [ 1.5427789 29.64918296]\n", + " [ 1.54098048 24.27318326]\n", + " [ 1.53918206 18.89718357]\n", + " [ 1.53738364 13.52118387]\n", + " [ 1.53558522 8.14518416]\n", + " [ 1.5337868 2.76918446]\n", + " [32.21841195 31.53642123]\n", + " [32.21841195 31.53642123]\n", + " [ 1.53315204 0.87168457]\n", + " [ 1.53315204 0.87168457]\n", + " [30.32027729 29.6395561 ]\n", + " [24.94427759 29.64135452]\n", + " [19.56827789 29.64315294]\n", + " [14.19227819 29.64495136]\n", + " [ 8.81627849 29.64674978]\n", + " [ 3.44027879 29.6485482 ]\n", + " [30.31847887 24.2635564 ]\n", + " [24.94247917 24.26535482]\n", + " [19.56647947 24.26715324]\n", + " [14.19047977 24.26895166]\n", + " [ 8.81448007 24.27075007]\n", + " [ 3.43848037 24.27714e+02]\n", + " [ 2.00250000e+03 1.16921429e+03]\n", + " [ 2.00250000e+03 1.46164286e+03]\n", + " [ 2.00250000e+03 1.75407143e+03]\n", + " [ 2.00250000e+03 2.04650000e+03]\n", + " [-4.35000001e+01 1.27000000e+02]\n", + " [-4.34999997e+01 4.85400000e+02]\n", + " [-4.35000003e+01 8.43800000e+02]\n", + " [-4.35000003e+01 1.20220000e+03]\n", + " [-4.35000002e+01 1.56060000e+03]\n", + " [-4.35000003e+01 1.91900000e+03]\n", + " [ 8.30000000e+01 4.99999980e-01]\n", + " [ 4.41400000e+02 4.99999948e-01]\n", + " [ 7.99800000e+02 4.99999731e-01]\n", + " [ 1.15820000e+03 4.99999908e-01]\n", + " [ 1.51660000e+03 4.99999771e-01]\n", + " [ 1.87500000e+03 5.00000017e-01]\n", + " [ 8.29999998e+01 2.04550000e+03]\n", + " [ 4.41400000e+02 2.04550000e+03]\n", + " [ 7.99800000e+02 2.04550000e+03]\n", + " [ 1.15820000e+03 2.04550000e+03]\n", + " [ 1.51660000e+03 2.04550000e+03]\n", + " [ 1.87500000e+03 2.04550000e+03]\n", + " [ 2.00150000e+03 1.27000000e+02]\n", + " [ 2.00150000e+03 4.85400000e+02]\n", + " [ 2.00150000e+03 8.43800000e+02]\n", + " [ 2.00150000e+03 1.20220000e+03]\n", + " [ 2.00150000e+03 1.56060000e+03]\n", + " [ 2.00150000e+03 1.91900000e+03]\n", + " [-4.35000025485 ]\n", + " [30.31668045 18.8875567 ]\n", + " [24.94068075 18.88935513]\n", + " [19.56468105 18.89115354]\n", + " [14.18868135 18.89295196]\n", + " [ 8.81268165 18.89475038]\n", + " [ 3.43668195 18.89654879]\n", + " [30.31488203 13.51155701]\n", + " [24.93888233 13.51335542]\n", + " [19.56288263 13.51515384]\n", + " [14.18688293 13.51695226]\n", + " [ 8.81088324 13.51875068]\n", + " [ 3.43488354 13.5205491 ]\n", + " [30.31308361 8.13555731]\n", + " [24.93708392 8.13735572]\n", + " [19.56108422 8.13915414]\n", + " [14.18508451 8.14095256]\n", + " [ 8.80908482 8.14275098]\n", + " [ 3.43308512 8.1445494 ]\n", + " [30.31128519 2.75955761]\n", + " [24.93528549 2.76135602]\n", + " [19.5592858 2.76315444]\n", + " [14.18328609 2.76495286]\n", + " [ 8.8072864 2.76675128]\n", + " [ 3.4312867 2.7685497 ]]\n", + "01e+01 4.99999868e-01]\n", + " [-4.35000001e+01 4.99999868e-01]\n", + " [ 2.00150000e+03 2.04550000e+03]\n", + " [ 2.00150000e+03 2.04550000e+03]\n", + " [ 8.30000002e+01 1.27000000e+02]\n", + " [ 4.41400000e+02 1.27000000e+02]\n", + " [ 7.99800000e+02 1.27000000e+02]\n", + " [ 1.15820000e+03 1.27000000e+02]\n", + " [ 1.51660000e+03 1.27000000e+02]\n", + " [ 1.87500000e+03 1.27000000e+02]\n", + " [ 8DEBUG:root:radec2pix: xyfp Shape: (96, 2)\n", + "DEBUG:root:radec2pix: lng: [44.46013111 40.20250222 35.33475619 29.80239704 23.58471193 16.71933815\n", + " 9.32438225 1.60411637 44.46013111 48.6443107 53.44435482 58.92326156\n", + " 65.11319638 71.98940835 79.44437917 87.27692771 1.60411637 1.85680988\n", + " 2.20397654 2.71072869 3.51976244 5.01551732 8.70535713 30.95664732\n", + " 87.27692771 86.8388988 86.23319877 85.34102995 83.89722589 81.1670885\n", + " 74.12971046 30.95664732 42.68783954 37.06698546 30.47243013 22.85083712\n", + " 14.27406075 4.99632239 46.19982373 51.73354216 58.25770295 65.84552409\n", + " 74.44848175 83.82899465 1.73364549 2.10727457 2.68608796 3.70275867\n", + " 5.95349638 15.02389602 87.07294759 86.42732935 85.41713359 83.61383424\n", + " 79.49708007 61.65124289 44.45987707 44.45987707 31.12292419 31.12292419\n", + " 44.42569213 49.99636441 56.64851063 64.49322462 73.50720842 83.43797919\n", + " 38.75401666 44.3002287 51.21241262 59.77502346 70.12351892 82.00435394\n", + " 32.01565774 37.23971088 44.10467708 53.20553354 65.10220937 79.77773784\n", + " 24.12278796 28.56396741 34.76649258 43.75755718 57.05411516 75.86717668\n", + " 15.12820823 18.19416817 22.73745459 30.03194111 42.97126995 67.36058422\n", + " 5.30749937 6.44364165 8.19450854 11.23524 17.75019872 39.48443023]\n", + "DEBUG:root:optics_fp: sphi: [0.70073958 0.64606768 0.57926126 0.49834142 0.40194059 0.29007134\n", + " 0.1649404 0.0313274 0.70073958 0.75081049 0.80330242 0.85632562\n", + " 0.90683747 0.95061586 0.98274331 0.99875393 0.0313274 0.03631497\n", + " 0.04315962 0.05313395 0.069014 0.09821415 0.1691786 0.5459791\n", + " 0.99875393 0.99832709 0.99763477 0.99640065 0.99386824 0.98730608\n", + " 0.96018902 0.5459791 0.67842975 0.60353431 0.50840257 0.39023062\n", + " 0.2491346 0.09026478 0.72202887 0.78522123 0.85029163 0.91212843\n", + " 0.9630057 0.99397217 0.03381828 0.04117383 0.05254813 0.07246053\n", + " 0.11619532 0.28568936 0.998564 0.99787113 0.99651836 0.99329877\n", + " 0.98218517 0.87963764 0.70073672 0.70073672 0.54790634 0.54790634\n", + " 0.7003523 0.76617231 0.83524188 0.90223637 0.95845287 0.99319172\n", + " 0.62671212 0.69894092 0.77968384 0.86389216 0.9399874 0.98993027\n", + " 0.53140435 0.60624939 0.69673956 0.80101328 0.90667588 0.98362991\n", + " 0.41062285 0.48009609 0.57202299 0.69282748 0.83927416 0.96899587\n", + " 0.26367291 0.3152909 0.38989736 0.5039234 0.68394565 0.92210851\n", + " 0.09588115 0.11634315 0.14772342 0.20168832 0.31431902 0.6442708 ]\n", + "3.52291058]\n", + " [ 29.06020207 -13.52436156]\n", + " [ 2.18165401 -8.1411069 ]\n", + " [ 7.55765382 -8.14255787]\n", + " [ 12.93365363 -8.14400884]\n", + " [ 18.30965343 -8.14545981]\n", + " [ 23.68565323 -8.14691078]\n", + " [ 29.06165303 -8.14836175]\n", + " [ 2.18310498 -2.76510709]\n", + " [ 7.55910479 -2.76655806]\n", + " [ 12.93510459 -2.76800904]\n", + " [ 18.31110439 -2.76946001]\n", + " [ 23.68710421 -2.77091098]\n", + " [ 29.063104 -2.77236195]]\n", + ".30000001e+01 4.85400000e+02]\n", + " [ 4.41400000e+02 4.85400000e+02]\n", + " [ 7.99800000e+02 4.85400000e+02]\n", + " [ 1.15820000e+03 4.85400000e+02]\n", + " [ 1.51660000e+03 4.85400000e+02]\n", + " [ 1.87500000e+03 4.85400000e+02]\n", + " [ 8.29999997e+01 8.43800000e+02]\n", + " [ 4.41400000e+02 8.43800000e+02]\n", + " [ 7.99800000e+02 8.43800000e+02]\n", + " [ 1.15820000e+03 8.43800000e+02]\n", + " [ 1.51660000e+03 8.43800000e+02]\n", + " [ 1.87500000e+03 8.43800000e+02]\n", + " [ 8.29999998e+01 1.20220000e+03]\n", + " [ 4.41400000e+02 1.20220000e+03]\n", + " [ 7.99800000e+02 1.20220000e+03]\n", + " [ 1.15820000e+03 1.20220000e+03]\n", + " [ 1.51660000e+03 1.20220000e+03]\n", + " [ 1.87500000e+03 1.20220000e+03]\n", + " [ 8.30000003e+01 1.56060000e+03]\n", + " [ 4.41400000e+02 1.56060000e+03]\n", + " [ 7.99800000e+02 1.56060000e+03]\n", + " [ 1.15820000e+03 1.56060000e+03]\n", + " [ 1.51660000e+03 1.56060000e+03]\n", + " [ 1.87500000e+03 1.56060000e+03]\n", + " [ 8.29999998e+01 1.91900000e+03]\n", + " [ 4.41400000e+02 1.91900000e+03]\n", + " [ 7.99800000e+02 1.91900000e+03]\n", + " [ 1.15820000e+03 1.91900000e+03]\n", + " [ 1.51660000e+03 1.91900000e+03]\n", + " [ 1.87500000e+03 1.91900000e+03]]\n", + "999999e+01 2.04650000e+03]\n", + " [-4.44999999e+01 -4.99999855e-01]\n", + " [ 2.47928571e+02 -5.00000005e-01]\n", + " [ 5.40357143e+02 -5.00000101e-01]\n", + " [ 8.32785714e+02 -5.00000211e-01]\n", + " [ 1.12521429e+03 -4.99999718e-01]\n", + " [ 1.41764286e+03 -5.00DEBUG:root:make_az_asym: xyp: shape: (96, 2)\n", + "[ -3.50783243 -2.65805467]]\n", + "000108e-01]\n", + " [ 1.71007143e+03 -4.99999976e-01]\n", + " [ 2.00250000e+03 -5.00000222e-01]\n", + " [-4.44999999e+01 2.04650000e+03]\n", + " [ 2.47928572e+02 2.04650000e+03]\n", + " [ 5.40357143e+02 2.04650000e+03]\n", + " [ 8.32785714e+02 2.04650000e+03]\n", + " [ 1.12521429e+03 2.04650000e+03]\n", + " [ 1.41764286e+03 2.04650000e+03]\n", + " [ 1.71007143e+03 2.04650000e+03]\n", + " [ 2.00250000e+03 2.04650000e+03]\n", + " [ 2.00250000e+03 -5.00000222e-01]\n", + " [ 2.00250000e+03 2.91928571e+02]\n", + " [ 2.00250000e+03 5.84357143e+02]\n", + " [ 2.00250000e+03 8.76785714e+02]\n", + " [ 2.00250000e+03 1.16921429e+03]\n", + " [ 2.00250000e+03 1.46164286e+03]\n", + " [ 2.00250000e+03 1.75407143e+03]\n", + " [ 2.00250000e+03 2.04650000e+03]\n", + " [-4.35000000e+01 1.27000000e+02]\n", + " [-4.35000000e+01 4.85400000e+02]\n", + " [-4.34999998e+01 8.43800000e+02]\n", + " [-4.35000001e+01 1.20220000e+03]\n", + " [-4.35000000e+01 1.56060000e+03]\n", + " [-4.34999999e+01 1.91900000e+03]\n", + " [ 8.29999998e+01 4.99999766e-01]\n", + " [ 4.41400000e+02 4.99999737e-01]\n", + " [ DEBUG:root:radec2pix: xyfp Shape: (96, 2)\n", + "7.99800000e+02 4.99999723e-01]\n", + " [ 1.15820000e+03 5.00000251e-01]\n", + " [ 1.51660000e+03 4.99999874e-01]\n", + " [ 1.87500000e+03 5.00000148e-01]\n", + " [ 8.30000001e+01 2.04550000e+03]\n", + " [ 4.41400000e+02 2.04550000e+03]\n", + " [ 7.99800000e+02 2.04550000e+03]\n", + " [ 1.15820000e+03 2.04550000e+03]\n", + " [ 1.51660000e+03 2.04550000e+03]\n", + " [ 1.87500000e+03 2.04550000e+03]\n", + " [ 2.00150000e+03 1.27000000e+02]\n", + " [ 2.00150000e+03 4.85400000e+02]\n", + " [ 2.00150000e+03 8.43800000e+02]\n", + " [ 2.00150000e+03 1.20220000e+03]\n", + " [ 2.00150000e+03 1.56060000e+03]\n", + " [ 2.00150000e+03 1.91900000e+03]\n", + " [-4.35000002e+01 4.99999824e-01]\n", + " [-4.35000002e+01 4.99999824e-01]\n", + " [ 2.00150000e+03 2.04550000e+03]\n", + " [ 2.00150000e+03 2.04550000e+03]\n", + " [ 8.30000001e+01 1.27000000e+02]\n", + " [ 4.41400000e+02 1.27000000e+02]\n", + " [ 7.99800000e+02 1.27000000e+02]\n", + " [ 1.15820000e+03 1.27000000e+02]\n", + " [ 1.51660000e+03 1.27000000e+02]\n", + " [ 1.87500000e+03 1.27000000e+02]\n", + " [ 8.29999998e+01 4.85400000e+02]\n", + " [ 4.41400000e+02 4.85400000e+02]\n", + " [ 7.99800000e+02 4.85400000e+02]\n", + " [ 1.15820000e+03 4.85400000e+02]\n", + " [ 1.51660000e+03 4.85400000e+02]\n", + " [ 1.87500000e+03 4.85400000e+02]\n", + " [ 8.30000003e+01 8.43800000e+02]\n", + " [ 4.41400000e+02 8.43800000e+02]\n", + " [ 7.99800000e+02 8.43800000e+02]\n", + " [ 1.15820000e+03 8.43800000e+02]\n", + " [ 1.51660000e+03 8.43800000e+02]\n", + " [ 1.87500000e+03 8.43800000e+02]\n", + " [ 8.29999997e+01 1.20220000e+03]\n", + " [ 4.41400000e+02 1.20220000e+03]\n", + " [ 7.99800000e+02 1.20220000e+03]\n", + " [ 1.15820000e+03 1.20220000e+03]\n", + " [ 1.51660000e+03 1.20220000e+03]\n", + " [ 1.87500000e+03 1.20220000e+03]\n", + " [ 8.30000001e+01 1.56060000e+03]\n", + " [ 4.41400000e+02 1.56060000e+03]\n", + " [ 7.99800000e+02 1.56060000e+03]\n", + " [ 1.15820000e+03 1.56060000e+03]\n", + " [ 1.51660000e+03 1.56060000e+03]\n", + " [ 1.87500000e+03 1.56060000e+03]\n", + " [ 8.30000000e+01 1.91900000e+03]\n", + " [ 4.41400000e+02 1.91900000e+03]\n", + " [ 7.99800000e+02 1.91900000e+03]\n", + " [ 1.15820000e+03 1.91900000e+03]\n", + " [ 1.51660000e+03 1.91900000e+03]\n", + " [ 1.87500000e+03 1.91900000e+03]]\n", + "DEBUG:root:optics_fp: xyfp: [[-32.29046994 -31.71666141]\n", + " [-32.28860507 -27.33023323]\n", + " [-32.2867402 -22.94380505]\n", + " [-32.28487534 -18.55737688]\n", + " [-32.28301047 -14.1709487 ]\n", + " [-32.2811456 -9.78452053]\n", + " [-32.27928073 -5.39809235]\n", + " [-32.27741587 -1.01166418]\n", + " [-32.29046994 -31.71666141]\n", + " [-27.90404176 -31.71852627]\n", + " [-23.51761359 -31.72039114]\n", + " [-19.13118541 -31.722256 ]\n", + " [-14.74475724 -31.72412087]\n", + " [-10.35832906 -31.72598574]\n", + " [ -5.97190089 -31.72785061]\n", + " [ -1.58547272 -31.72971547]\n", + " [-32.27741587 -1.01166418]\n", + " [-27.8909877 -1.01352905]\n", + " [-23.50455952 -1.01539391]\n", + " [-19.11813134 -1.01725878]\n", + " [-14.73170317 -1.01912365]\n", + " [-10.345275 -1.02098851]\n", + " [ -5.95884682 -1.02285338]\n", + " [ -1.57241864 -1.02471825]\n", + " [ -1.58547272 -31.72971547]\n", + " [ -1.58360785 -27.3432873 ]\n", + " [ -1.58174298 -22.95685912]\n", + " [ -1.57987811 -18.57043094]\n", + " [ -1.57801325 -14.18400278]\n", + " [ -1.57614838 -9.7975746 ]\n", + " [ -1.57428351 -5.41114642]\n", + " [ -1.57241864 -1.02471825]\n", + " [-32.27465685 -29.80416795]\n", + " [-32.27237127 -24.42816844]\n", + " [-32.2700857 -19.05216893]\n", + " [-32.26780012 -13.67616941]\n", + " [-32.26551454 -8.3001699 ]\n", + " [-32.26322896 -2.92417038]\n", + " [-30.37796373 -31.70247449]\n", + " [-25.00196422 -31.70476008]\n", + " [-19.62596471 -31.70704565]\n", + " [-14.24996519 -31.70933123]\n", + " [ -8.87396568 -31.71161681]\n", + " [ -3.49796617 -31.71390239]\n", + " [-30.36492242 -1.02747727]\n", + " [-24.98892291 -1.02976285]\n", + " [-19.61292339 -1.03204842]\n", + " [-14.23692388 -1.034334 ]\n", + " [ -8.86092437 -1.03661958]\n", + " [ -3.48492485 -1.03890516]\n", + " [ -1.59965962 -29.81720927]\n", + " [ -1.59737405 -24.44120975]\n", + " [ -1.59508847 -19.06521024]\n", + " [ -1.59280289 -13.68921073]\n", + " [ -1.59051731 -8.31321121]\n", + " [ -1.58823174 -2.9372117 ]\n", + " [-32.27546357 -31.70166778]\n", + " [-32.27546357 -31.70166778]\n", + " [ -1.58742502 -1.03971187]\n", + " [ -1.58742502 -1.03971187]\n", + " [-30.37715702 -29.80497466]\n", + " [-25.00115751 -29.80726024]\n", + " [-19.625158 -29.80954582]\n", + " [-14.24915848 -29.8118314 ]\n", + " [ -8.87315897 -29.81411698]\n", + " [ -3.49715945 -29.81640256]\n", + " [-30.37487145 -24.42897515]\n", + " [-24.99887193 -24.43126073]\n", + "DEBUG:root:mm_to_pix: fitpx: [[0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]]\n", + " [-19.62287241 -24.43354631]\n", + " [-14.2468729 -24.43583188]\n", + " [ -8.87087339 -24.43811746]\n", + " [ -3.49487388 -24.44040305]\n", + " [-30.37258587 -19.05297564]\n", + " [-24.99658635 -19.05526122]\n", + " [-19.62058684 -19.05754679]\n", + " [-14.24458732 -19.05983237]\n", + " [ -8.86858781 -19.06211795]\n", + " [ -3.4925883 -19.06440353]\n", + " [-30.37030029 -13.67697612]\n", + " [-24.99430077 -13.6792617 ]\n", + " [-19.61830126 -13.68154728]\n", + " [-14.24230175 -13.68383286]\n", + " [ -8.86630223 -13.68611844]\n", + " [ -3.49030272 -13.68840401]\n", + " [-30.36801471 -8.30097661]\n", + " [-24.9920152 -8.30326219]\n", + " [-19.61601568 -8.30554776]\n", + " [-14.24001617 -8.30783335]\n", + " [ -8.86401666 -8.31011893]\n", + " [ -3.48801714 -8.3124045 ]\n", + " [-30.36572914 -2.9249771 ]\n", + " [-24.98972962 -2.92726267]\n", + " [-19.6137301 -2.92954825]\n", + " [-14.23773059 -2.93183383]\n", + " [ -8.86173108 -2.93411941]\n", + " [ -3.48573156 -2.93640499]]\n", + "DEBUG:root:optics_fp: rtanth: [31.5581844 27.17194416 22.78577643 18.39973306 14.01393083 9.62869923\n", + " 5.24546963 0.89418442 31.5581844 31.89890725 32.82747441 34.29617149\n", + " 36.23938733 38.58549624 41.26583765 44.21967554 0.89418442 4.73506565\n", + " 9.08425224 13.45763509 17.83742574 22.2198DEBUG:root:radec2pix: fitpx: [[4271.49999985 4155.49999985]\n", + " [4271.49999998 3863.07142855]\n", + " [4271.50000002 3570.64285716]\n", + " [4271.49999976 3278.21428558]\n", + " [4271.50000012 2985.78571434]\n", + " [4271.50000004 2693.35714287]\n", + " [4271.50000005 2400.92857144]\n", + " [4271.49999991 2108.5 ]\n", + " [4271.49999985 4155.49999985]\n", + " [3979.07142858 4155.50000001]\n", + " [3686.64285722 4155.5000001 ]\n", + " [3394.21428584 4155.50000021]\n", + " [3101.78571415 4155.49999972]\n", + " [2809.35714289 4155.50000011]\n", + " [2516.92857142 4155.49999998]\n", + " [2224.50000001 4155.50000022]\n", + " [4271.49999991 2108.5 ]\n", + " [3979.07142843 2108.5 ]\n", + " [3686.6428569 2108.49999999]\n", + " [3394.21428586 2108.5 ]\n", + " [3101.78571453 2108.50000001]\n", + " [2809.35714306 2108.50000001]\n", + " [2516.9285717 2108.50000003]\n", + " [2224.49999984 2108.49999993]\n", + " [2224.50000001 4155.50000022]\n", + " [2224.5 3863.07142862]\n", + " [2224.49999998 3570.64285684]\n", + " [2224.50000001 3278.21428585]\n", + " [2224.50000002 2985.78571445]\n", + " [2224.5 2693.35714285]\n", + " [2224.49999995 2400.92857125]\n", + " [2224.4993534 26.60356968 30.98806655\n", + " 44.21967554 41.20406839 38.45324836 36.02791805 33.99780815 32.43720936\n", + " 31.41616867 30.98806655 29.64590075 24.27020709 18.89468775 13.51955065\n", + " 8.14555257 2.77930847 31.61752824 32.43532389 34.09156981 36.4722193\n", + " 39.44633291 42.89063222 2.34966506 7.60940668 12.96487432 18.33236521\n", + " 23.70371309 29.07678054 42.86493558 39.33911823 36.27027014 33.78315439\n", + " 32.01364237 31.08452713 31.54331756 31.54331756 30.97348847 30.97348847\n", + " 29.72484887 30.59328006 32.34398987 34.84424384 37.94616883 41.5151163\n", + " 24.36657877 25.41873926 27.5008582 30.40205338 33.9127594 37.86381389\n", + " 19.01831838 20.34892081 22.89680053 26.31066557 30.29920003 34.66460262\n", + " 13.69180262 15.48701401 18.70915549 22.76005595 27.27289033 32.05313869\n", + " 8.42835902 11.10942753 15.28411843 20.03975859 25.04760117 30.18237029\n", + " 3.52303344 8.04946636 13.22795543 18.51935347 23.84862372 29.19503391]\n", + "DEBUG:root:radec2pix: fitpx: [[4271.50000018 4155.50000017]\n", + " [4271.49999973 3863.07142834]\n", + " [427DEBUG:root:mm_to_pix: fitpx.shape: (96, 2)\n", + "DEBUG:root:radec2pix: xyfp: [[ 0.26283402 -31.55708986]\n", + " [ 0.26401791 -27.17066146]\n", + " [ 0.2652018 -22.78423305]\n", + " [ 0.26638569 -18.39780463]\n", + " [ 0.26756957 -14.01137623]\n", + " [ 0.26875346 -9.62494781]\n", + " [ 0.26993735 -5.2385194 ]\n", + " [ 0.27112123 -0.85209099]\n", + " [ 0.26283402 -31.55708986]\n", + " [ 4.64926244 -31.55827376]\n", + " [ 9.03569085 -31.55945764]\n", + " [ 13.42211926 -31.56064153]\n", + " [ 17.80854767 -31.56182542]\n", + " [ 22.19497608 -31.56300931]\n", + " [ 26.5814045 -31.56419319]\n", + " [ 30.96783291 -31.56537708]\n", + " [ 0.27112123 -0.85209099]\n", + " [ 4.65754965 -0.85327487]\n", + " [ 9.04397805 -0.85445876]\n", + " [ 13.43040647 -0.85564265]\n", + " [ 17.81683488 -0.85682653]\n", + " [ 22.20326329 -0.85801042]\n", + " [ 26.5896917 -0.85919431]\n", + " [ 30.97612012 -0.8603782 ]\n", + " [ 30.96783291 -31.56537708]\n", + " [ 30.9690168 -27.17894867]\n", + " [ 30.97020068 -22.79252025]\n", + " [ 30.97138456 -18.40609184]\n", + " [ 30.97256845 -14.01966343]\n", + " [ 30.97375234 -9.63323502]\n", + " [ 30.97493622 -5.24680661]\n", + " [ 30.97612012 -0.8603782 ]\n", + " DEBUG:root:radec2pix: ccdpx: [[-4.44999997e+01 -4.99999751e-01]\n", + " [-4.45000003e+01 2.91928571e+02]\n", + " [-4.45000000e+01 5.84357143e+02]\n", + " [-4.44999999e+01 8.76785714e+02]\n", + " [-4.44999999e+01 1.16921429e+03]\n", + " [-4.44999999e+01 1.46164286e+03]\n", + " [-4.45000001e+01 1.75407143e+03]\n", + " [-4.45000000e+01 2.04650000e+03]\n", + " [-4.44999997e+01 -4.99999751e-01]\n", + " [ 2.47928571e+02 -5.00000271e-01]\n", + " [ 5.40357143e+02 -4.99999959e-01]\n", + " [ 8.32785714e+02 -5.00000035e-01]\n", + " [ 1.12521429e+03 -5.00000130e-01]\n", + " [ 1.41764286e+03 -5.00000295e-01]\n", + " [ 1.71007143e+03 -5.00000131e-01]\n", + " [ 2.00250000e+03 -5.00000000e-01]\n", + " [-4.45000000e+01 2.04650000e+03]\n", + " [ 2.47928571e+02 2.04650000e+03]\n", + " [ 5.40357143e+02 2.04650000e+03]\n", + " [ 8.32785714e+02 2.04650000e+03]\n", + " [ 1.12521429e+03 2.04650000e+03]\n", + " [ 1.41764286e+03 2.04650000e+03]\n", + " [ 1.71007143e+03 2.04650000e+03]\n", + " [ 2.00250000e+03 2.04650000e+03]\n", + " [ 2.00250000e+03 -5.00000000e-01]\n", + " [ 2.00250000e+03 2.91928571e+02]\n", + " [ 2.00250000e+03 5.84357143e+02]\n", + " [ 2.00250000e+03 8.767851.50000015 3570.64285725]\n", + " [4271.50000001 3278.21428572]\n", + " [4271.5000001 2985.78571433]\n", + " [4271.49999989 2693.35714282]\n", + " [4271.50000013 2400.92857145]\n", + " [4271.49999973 2108.49999999]\n", + " [4271.50000018 4155.50000017]\n", + " [3979.07142857 4155.5 ]\n", + " [3686.64285706 4155.49999989]\n", + " [3394.21428581 4155.50000016]\n", + " [3101.78571433 4155.50000009]\n", + " [2809.35714288 4155.50000006]\n", + " [2516.92857141 4155.49999991]\n", + " [2224.49999999 4155.49999972]\n", + " [4271.49999973 2108.49999999]\n", + " [3979.07142852 2108.5 ]\n", + " [3686.6428568 2108.49999999]\n", + " [3394.2142859 2108.50000001]\n", + " [3101.78571455 2108.50000001]\n", + " [2809.35714254 2108.49999998]\n", + " [2516.92857145 2108.5 ]\n", + " [2224.49999991 2108.49999996]\n", + " [2224.49999999 4155.49999972]\n", + " [2224.50000001 3863.07142866]\n", + " [2224.50000002 3570.64285748]\n", + " [2224.49999999 3278.21428555]\n", + " [2224.49999997 2985.78571404]\n", + " [2224.49999997 2693.35714267]\n", + " [2224.49999997 2400.92857132]\n", + " [2224.49999991 2108.49999996]\n", + " [4270.50000007 4028.00000007]\n", + " [4270.49999974 3669.5999998 ]\n", + " [4270.50000026 3311.20000015]\n", + " [4270.50000028 2952.80000012]\n", + " [4270.50000021 2594.40000005]\n", + " [4270.50000028 2236.00000002]\n", + " [4144.00000002 4154.50000002]\n", + " [3785.60000004 4154.50000005]\n", + " [3427.20000017 4154.50000027]\n", + " [3068.80000004 4154.50000009]\n", + " [2710.40000006 4154.50000023]\n", + " [2352. 4154.49999998]\n", + " [4144.00000024 2109.50000001]\n", + " [3785.60000024 2109.50000001]\n", + " [3427.20000038 2109.50000002]\n", + " [3068.80000022 2109.50000001]\n", + " [2710.3999999 2109.49999999]\n", + " [2352.00000033 2109.50000007]\n", + " [2225.50000001 4028.00000014]\n", + " [2225.5 3669.59999993]\n", + " [2225.49999997 3311.19999965]\n", + " [2225.50000003 2952.80000023]\n", + " [2225.50000001 2594.40000005]\n", + " [2225.50000007 2236.00000012]\n", + " [4270.50000014 4154.50000013]\n", + " [4270.50000014 4154.50000013]\n", + " [2225.5 2109.5 ]\n", + " [2225.5 2109.5 ]\n", + " [4143.99999977 4027.99999977]\n", + " [3785.60000006 4028.00000007]\n", + " [3427.19999985 4027.99999978]\n", + " [3068.80000002 4028.00000004]\n", + " [2710.40000003 4028.0000001 ]\n", + " [2351.99999998 4027.99999983]\n", + " [4143.99999989 3669.DEBUG:root:mm_to_pix: fitpx: [[0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]]\n", + "59999991]\n", + " [3785.59999992 3669.59999992]\n", + " [3427.20000008 3669.60000009]\n", + " [3068.80000009 3669.60000016]\n", + " [2710.40000007 3669.6000002 ]\n", + " [2352. 3669.60000003]\n", + " [4144.00000025 3311.20000016]\n", + " [3785.59999995 3311.19999996]\n", + " [3427.19999995 3311.19999995]\n", + " [3068.80000029 3311.20000039]\n", + " [2710.39999993 3311.19999986]\n", + " [2352.00000003 3311.20000016]\n", + " [4144.0000002 2952.80000009]\n", + " [3785.6000002 2952.80000011]\n", + " [3427.19999983 2952.79999988]\n", + " [3068.80000029 2952.80000027]\n", + " [2710.40000007 2952.8000001 ]\n", + " [2352.00000006 2952.80000022]\n", + " [4143.99999974 2594.39999993]\n", + " [3785.60000003 2594.40000001]\n", + " [3427.19999994 2594.39999997]\n", + " [3068.7999999 2594.39999994]\n", + " [2710.40000001 2594.40000001]\n", + " [2351.9999999 2594.39999976]\n", + " [4144.00000015 2236.00000001]\n", + " [3785.59999982 2235.99999998]\n", + " [3427.19999971 2235.99999996]\n", + " [3068.80000012 2236.00000002]\n", + " [2710.39999989 2235.99999997]\n", + " [2351.99999988 2235.99999991]]\n", + "99984 2108.49999993]\n", + " [4270.49999995 4027.99999996]\n", + " [4270.50000001 3669.6 ]\n", + " [4270.4999998 3311.19999989]\n", + " [4270.50000006 2952.80000003]\n", + " [4270.50000002 2594.40000001]\n", + " [4270.49999985 2235.99999999]\n", + " [4144.00000023 4154.50000023]\n", + " [3785.60000021 4154.50000026]\n", + " [3427.20000017 4154.50000028]\n", + " [3068.79999989 4154.49999975]\n", + " [2710.40000004 4154.50000013]\n", + " [2351.99999998 4154.49999985]\n", + " [4143.99999992 2109.5 ]\n", + " [3785.59999985 2109.5 ]\n", + " [3427.19999998 2109.5 ]\n", + " [3068.80000001 2109.5 ]\n", + " [2710.40000021 2109.50000002]\n", + " [2352.00000017 2109.50000003]\n", + " [2225.5 4027.99999993]\n", + " [2225.49999998 3669.59999975]\n", + " [2225.50000001 3311.20000015]\n", + " [2225.5 2952.8 ]\n", + " [2225.49999998 2594.39999987]\n", + " [2225.50000008 2236.00000013]\n", + " [4270.50000018 4154.50000018]\n", + " [4270.50000018 4154.50000018]\n", + " [2225.49999981 2109.49999992]\n", + " [2225.49999981 2109.49999992]\n", + " [4143.99999987 4027.99999987]\n", + " [3785.59999992 4027.9999999 ]\n", + " [3427.2000001 4028.00000015]\n", + " [3068.80000011 4028.00000023]\n", + " [2710.39999995 4027.99999982]\n", + " [2351.99999998 4027.99999985]\n", + " [4144.00000018 3669.60000014]\n", + " [3785.5999999 3669.59999991]\n", + " [3427.19999994 3669.59999993]\n", + " [3068.79999994 3669.5999999 ]\n", + " [2710.39999997 3669.59999991]\n", + " [2351.99999997 3669.5999998 ]\n", + " [4143.99999973 3311.19999984]\n", + " [3785.60000019 3311.20000014]\n", + " [3427.1999998 3311.19999981]\n", + " [3068.79999976 3311.19999969]\n", + " [2710.39999985 3311.19999967]\n", + " [2352.00000003 3311.20000016]\n", + " [4144.00000026 2952.80000011]\n", + " [3785.6000001 2952.80000005]\n", + " [3427.20000009 2952.80000006]\n", + " [3068.8000003 2952.80000028]\n", + " [2710.39999986 2952.79999979]\n", + " [2352.00000001 2952.80000004]\n", + " [4143.99999994 2594.39999998]\n", + " [3785.6 2594.4 ]\n", + " [3427.19999999 2594.39999999]\n", + " [3068.79999999 2594.39999999]\n", + " [2710.40000015 2594.40000014]\n", + " [2351.99999993 2594.39999983]\n", + " [4143.99999995 2236. ]\n", + " [3785.59999975 2235.99999997]\n", + " [3427.19999971 2235.99999996]\n", + " [3068.80000003 2236.00000001]\n", + " [2710.39999999 2236. ]\n", + " [2352.00000022 2236.00000016]]\n", + "DEBUG:root:optics_fp: cphi: [-0.00832855 -0.00971656 -0.01163892 -0.01447769 -0.01909311 -0.02791171\n", + " -0.05146104 -0.30320505 -0.00832855 -0.1457499 -0.27524782 -0.39135911\n", + " -0.49141415 -0.57521551 -0.64415037 -0.70031796 -0.30320505 -0.98362937\n", + " -0.99556659 -0.99797672 -0.99884564 -0.99925418 -0.99947834 -0.99961448\n", + " -0.70031796 -0.75160095 -0.80539882 -0.85964958 -0.91101663 -0.95488339\n", + " -0.98595524 -0.99961448 -0.00938916 -0.01152859 -0.01488525 -0.02091069\n", + " -0.03488457 -0.10276119 -0.06880165 -0.23281216 -0.37919455 -0.50184326\n", + " -0.60029249 -0.67742851 -0.92933123 -0.99345681 -0.99774332 -0.99886819\n", + " -0.99932092 -0.99954725 -0.72211351 -0.78687071 -0.8534883 -0.91636505\n", + " -0.96706125 -0.99601335 -0.00880814 -0.00880814 -0.99960055 -0.99960055\n", + " -0.0731997 -0.24684669 -0.39969867 -0.52530483 -0.62403795 -0.69988601\n", + " -0.08935604 -0.29715482 -0.47014172 -0.60210737 -0.6983006 -0.76741609\n", + " -0.11456071 -0.37126057 -0.56474055 -0.69579203 -0.78162959 -0.83828312\n", + " -0.15923419 -0.48790573 -0.69122322 -0.80440059 -0.86841556 -0.90662579\n", + " -0.25884683 -0.68029192 -0.84621522 -0.91366637 -0.94562561 -0.96286848\n", + " -0.61966627 -0.93908148 -0.97786122 -0.98875506 -0.9932273 -0.99548108]\n", + "DEBUG:root:radec2pix: lat: [73.24045629 74.22430856 75.14029247 75.96071497 76.65562135 77.19454225\n", + " 77.54971408 77.7004367 73.24045629 74.24542243 75.18640058 76.03561625\n", + " 76.76261911 77.33584079 77.72573436 77.90930638 77.7004367 79.29904106\n", + " 80.93014794 82.5883689 84.26818815 85.9633334 87.6639727 89.31207398\n", + " 77.90930638 79.51115144 81.14420271 82.80268356 84.48015158 86.16770212\n", + " 87.84429449 89.31207398 73.67977076 74.84367611 75.87839932 76.72967459\n", + " 77.34173684 77.66614591 73.68843996 74.88082796 75.94981974 76.8404193\n", + " 77.49482717 77.86108402 78.39292403 80.37467767 82.39987127 84.45839268\n", + " 86.53837212 88.6125356 78.60323781 80.5880931 82.61407297 84.6695731\n", + " 86.73723257 88.74545658 73.24742531 73.24742531 89.30399741 89.30399741\n", + " 74.13967578 75.38730878 76.51234476 77.4557749 78.15346667 78.54590996\n", + " 75.35848529 76.77078371 78.07006468 79.18567192 80.03121451 80.5165253\n", + " 76.44822453 78.03255968 79.52764934 80.85445453 81.89945108 82.52079347\n", + " 77.3504272 79.10147139 80.80332064 82.38074874 83.7000473 84.53866109\n", + " 78.00303059 79.89280789 81.78299446 83.6236493 85.30285158 86.52492363\n", + " 78.35049019 80.32186123 82.33135444 84.36297386 86.3856321 88.26407642]\n", + "714e+02]\n", + " [ 2.00250000e+03 1.16921429e+03]\n", + " [ 2.00250000e+03 1.46164286e+03]\n", + " [ 2.00250000e+03 1.75407143e+03]\n", + " [ 2.00250000e+03 2.04650000e+03]\n", + " [-4.35000003e+01 1.27000000e+02]\n", + " [-4.35000001e+01 4.85400000e+02]\n", + " [-4.35000003e+01 8.43800000e+02]\n", + " [-4.34999997e+01 1.20220000e+03]\n", + " [-4.34999997e+01 1.56060000e+03]\n", + " [-4.35000002e+01 1.91900000e+03]\n", + " [ 8.29999999e+01 4.99999945e-01]\n", + " [ 4.41400000e+02 4.99999942e-01]\n", + " [ 7.99800000e+02 5.00000147e-01]\n", + " [ 1.15820000e+03 4.99999799e-01]\n", + " [ 1.51660000e+03 5.00000078e-01]\n", + " [ 1.87500000e+03 4.99999710e-01]\n", + " [ 8.30000000e+01 2.04550000e+03]\n", + " [ 4.41400000e+02 2.04550000e+03]\n", + " [ 7.99800000e+02 2.04550000e+03]\n", + " [ 1.15820000e+03 2.04550000e+03]\n", + " [ 1.51660000e+03 2.04550000e+03]\n", + " [ 1.87500000e+03 2.04550000e+03]\n", + " [ 2.00150000e+03 1.27000000e+02]\n", + " [ 2.00150000e+03 4.85400000e+02]\n", + " [ 2.00150000e+03 8.43800000e+02]\n", + " [ 2.00150000e+03 1.20220000e+03]\n", + " [ 2.00150000e+03 1.56060000e+03]\n", + " [ 2.00150000e+03 1.91900000e+03]\n", + " [-4.34999998e+01 5.00000241e-01]\n", + " [-4.34999998e+01 5.00000241e-01]\n", + " [ 2.00150000e+03 2.04550000e+03]\n", + " [ 2.00150000e+03 2.04550000e+03]\n", + " [ 8.30000001e+01 1.27000000e+02]\n", + " [ 4.41400000e+02 1.27000000e+02]\n", + " [ 7.99800000e+02 1.27000000e+02]\n", + " [ 1.15820000e+03 1.27000000e+02]\n", + " [ 1.51660000e+03 1.27000000e+02]\n", + " [ 1.87500000e+03 1.27000000e+02]\n", + " [ 8.30000000e+01 4.85400000e+02]\n", + " [ 4.41400000e+02 4.85400000e+02]\n", + " [ 7.99800000e+02 4.85400000e+02]\n", + " [ 1.15820000e+03 4.85400000e+02]\n", + " [ 1.51660000e+03 4.85400000e+02]\n", + " [ 1.87500000e+03 4.85400000e+02]\n", + " [ 8.30000001e+01 8.43800000e+02]\n", + " [ 4.41400000e+02 8.43800000e+02]\n", + " [ 7.99800000e+02 8.43800000e+02]\n", + " [ 1.15820000e+03 8.43800000e+02]\n", + " [ 1.51660000e+03 8.43800000e+02]\n", + " [ 1.87500000e+03 8.43800000e+02]\n", + " [ 8.30000001e+01 1.20220000e+03]\n", + " [ 4.41400000e+02 1.20220000e+03]\n", + " [ 7.99800000e+02 1.20220000e+03]\n", + " [ 1.15820000e+03 1.20220000e+03]\n", + " [ 1.51660000e+03 1.20220000e+03]\n", + " [ 1.87500000e+03 1.20220000e+03]\n", + " [ 8.30000002e+01 1.56060000e+03]\n", + " [ 4.41400000e+02 1.56060000e+03]\n", + " [ 7.99800000e+02 1.56060000e+03]\n", + " [ 1.15820000e+03 1.56060000e+03]\n", + " [ 1.51660000e+03 1.56060000e+03]\n", + " [ 1.87500000e+03 1.56060000e+03]\n", + " [ 8.29999999e+01 1.91900000e+03]\n", + " [ 4.41400000e+02 1.91900000e+03]\n", + " [ 7.99800000e+02 1.91900000e+03]\n", + " [ 1.15820000e+03 1.91900000e+03]\n", + " [ 1.51660000e+03 1.91900000e+03]\n", + " [ 1.87500000e+03 1.91900000e+03]]\n", + "DEBUG:root:fitpix2pix: ccdpx: shape: (96, 2)\n", + "DEBUG:root:mm_to_pix: fitpx.shape: (96, 2)\n", + "[ 0.2783502 -29.64459399]\n", + " [ 0.27980117 -24.26859418]\n", + " [ 0.28125214 -18.89259438]\n", + " [ 0.28270311 -13.51659457]\n", + " [ 0.28415408 -8.14059477]\n", + " [ 0.28560505 -2.76459497]\n", + " [ 2.175338 -31.54260605]\n", + " [ 7.55133781 -31.54405702]\n", + " [ 12.92733761 -31.54550799]\n", + " [ 18.30333742 -31.54695896]\n", + " [ 23.67933722 -31.54840993]\n", + " [ 2DEBUG:root:optics_fp: sphi: [0.99996532 0.99995279 0.99993227 0.99989519 0.99981771 0.99961039\n", + " 0.998675 0.95292534 0.99996532 0.98932147 0.96137331 0.92023804\n", + " 0.87092602 0.8180019 0.76489888 0.71383104 0.95292534 0.18020339\n", + " 0.09405934 0.06358046 0.04803532 0.03861462 0.0322962 0.02776482\n", + " 0.71383104 0.65961808 0.59273329 0.51088414 0.41236963 0.296981\n", + " 0.16700975 0.02776482 0.99995592 0.99993354 0.99988921 0.99978135\n", + " 0.99939135 0.99470606 0.99763036 0.97252172 0.92531697 0.86495858\n", + " 0.79978055 0.73558862 0.36924717 0.1142084 0.06714366 0.04756397\n", + " 0.03684701 0.03008799 0.69177459 0.61711788 0.52111201 0.40034372\n", + " 0.25454379 0.08920432 0.99996121 0.99996121 0.02826205 0.02826205\n", + " 0.9973173 0.96905455 0.91664659 0.85091412 0.78139404 0.71425456\n", + " 0.99599975 0.95482931 0.88259094 0.79841512 0.71580463 0.64114939\n", + " 0.99341625 0.92852872 0.82526851 0.71824331 0.62374288 0.54523519\n", + " 0.98724084 0.87289633 0.72264131 0.59408727 0.49583709 0.42193564\n", + " 0.96591838 0.73294127 0.53284125 0.DEBUG:root:optics_fp: xyfp shape: (96, 2)\n", + "40646497 0.32525713 0.2699709\n", + " 0.78486541 0.34369459 0.20925449 0.1495441 0.11618746 0.09496005]\n", + "9.05533702 -31.5498609 ]\n", + " [ 2.18361712 -0.86760716]\n", + " [ 7.55961692 -0.86905814]\n", + " [ 12.93561673 -0.87050911]\n", + " [ 18.31161653 -0.87196007]\n", + " [ 23.68761633 -0.87341105]\n", + " [ 29.06361614 -0.87486202]\n", + " [ 30.95334909 -29.6528731 ]\n", + " [ 30.95480005 -24.27687329]\n", + " [ 30.95625103 -18.90087349]\n", + " [ 30.95770199 -13.52487368]\n", + " [ 30.95915297 -8.14887388]\n", + " [ 30.96060394 -2.77287408]\n", + " [ 0.27783807 -31.54209392]\n", + " [ 0.27783807 -31.54209392]\n", + " [ 30.96111607 -0.87537415]\n", + " [ 30.96111607 -0.87537415]\n", + " [ 2.17585013 -29.64510611]\n", + " [ 7.55184994 -29.64655709]\n", + " [ 12.92784974 -29.64800806]\n", + " [ 18.30384955 -29.64945903]\n", + " [ 23.67984935 -29.65091 ]\n", + " [ 29.05584916 -29.65236097]\n", + " [ 2.1773011 -24.26910631]\n", + " [ 7.55330091 -24.27055728]\n", + " [ 12.92930071 -24.27200825]\n", + " [ 18.30530052 -24.27345922]\n", + " [ 23.68130032 -24.27491019]\n", + " [ 29.05730013 -24.27636116]\n", + " [ 2.17875207 -18.89310651]\n", + " [ 7.55475188 -18.89455748]\n", + " [ 12.93075168 -18.89600845]\n", + " [ 18.30675149 -18.89745942]\n", + " [ 23.68275129 -18.89891039]\n", + " [ 29.0587511 -18.90036136]\n", + " [ 2.18020304 -13.51710671]\n", + " [ 7.55620285 -13.51855767]\n", + " [ 12.93220265 -13.52000864]\n", + " [ 18.30820245 -13.52145961]\n", + " [ 23.68420226 -13.52291058]\n", + " [ 29.06020207 -13.52436156]\n", + " [ 2.18165401 -8.1411069 ]\n", + " [ 7.55765382 -8.14255787]\n", + " [ 12.93365363 -8.14400884]\n", + " [ 18.30965343 -8.14545981]\n", + " [ 23.68565323 -8.14691078]\n", + " [ 29.06165303 -8.14836175]\n", + " [ 2.18310498 -2.76510709]\n", + " [ 7.55910479 -2.76655806]\n", + " [ 12.93510459 -2.76800904]\n", + " [ 18.31110439 -2.76946001]\n", + " [ 23.68710421 -2.77091098]\n", + " [ 29.063104 -2.77236195]]\n", + "DEBUG:root:radec2pix: xyfp: [[32.2358199 31.31614388]\n", + " [32.23338667 26.92971599]\n", + " [32.23095344 22.54328809]\n", + " [32.2285202 18.15686019]\n", + " [32.22608698 13.7704323 ]\n", + " [32.22365375 9.3840044 ]\n", + " [32.22122051 4.99757651]\n", + " [32.21878728 0.61114861]\n", + " [32.2358199 31.31614388]\n", + " [27.849392 31.31857712]\n", + " [23.46296411 31.32101035]\n", + " [19.07653621 31.32344358]\n", + " [14.69010831 31.3258768 ]\n", + " [10.30368042 31.32831004]\n", + " [ 5.91725252 31.33074327]\n", + " [ 1.53082462 31.3331765 ]\n", + " [32.21878728 0.61114861]\n", + " [27.83235938 0.61358184]\n", + " [23.44593149 0.61601507]\n", + " [19.0595036 0.6184483 ]\n", + " [14.6730757 0.62088153]\n", + " [10.2866478 0.62331476]\n", + " [ 5.90021991 0.625748 ]\n", + " [ 1.513792 0.62818122]\n", + " [ 1.53082462 31.3331765 ]\n", + " [ 1.52839139 26.94674861]\n", + " [ 1.52595816 22.5603207 ]\n", + " [ 1.52352493 18.17389281]\n", + " [ 1.5210917 13.78746492]\n", + " [ 1.51865847 9.40103702]\n", + " [ 1.51622524 5.01460912]\n", + " [ 1.513792 0.62818122]\n", + " [32.219759 29.4036525 ]\n", + " [32.21677684 24.02765333]\n", + " [32.21379467 18.65165415]\n", + " [32.21081251 13.27565498]\n", + " [32.20783035 7.89965581]\n", + " [32.20484818 2.52365664]\n", + " [30.32331188 31.30220479]\n", + " [24.9473127 31.30518695]\n", + " [19.57131353 31.30816912]\n", + " [14.19531435 31.31115127]\n", + " [ 8.81931518 31.31413344]\n", + " [ 3.44331601 31.3171156 ]\n", + " [30.3062959 0.62720951]\n", + " [24.93029672 0.63019167]\n", + " [19.55429755 0.63317383]\n", + " [14.17829838 0.636156 ]\n", + " [ 8.80229921 0.63913816]\n", + " [ 3.42630004 0.64212033]\n", + " [ 1.54476372 29.42066847]\n", + " [ 1.54178156 24.0446693 ]\n", + " [ 1.53879939 18.66867013]\n", + " [ 1.53581723 13.29267096]\n", + " [ 1.53283507 7.91667178]\n", + " [ 1.5298529 2.54067261]\n", + " [32.22081158 31.30115221]\n", + " [32.22081158 31.30115221]\n", + " [ 1.52880032 0.6431729 ]\n", + " [ 1.52880032 0.6431729 ]\n", + " [30.32225929 29.40470508]\n", + " [24.94626012 29.40768724]\n", + " [19.57026095 29.41066941]\n", + " [14.19426178 29.41365157]\n", + " [ 8.8182626 29.41663373]\n", + " [ 3.44226343 29.4196159 ]\n", + " [30.31927713 24.02870591]\n", + " [24.94327796 24.03168807]\n", + " [19.56727878 24.03467023]\n", + " [14.19127961 24.0376524 ]\n", + " [ 8.81528044 24.04063456]\n", + " [ 3.43928127 24.04361672]\n", + " [30.31629496 18.65270673]\n", + " [24.9402958 18.6556889 ]\n", + " [19.56429662 18.65867106]\n", + " [14.18829744 18.66165322]\n", + " [ 8.81229827 18.66463538]\n", + " [ 3.4362991 18.66761755]\n", + " [30.31331281 13.27670756]\n", + " [24.93731363 13.27968972]\n", + " [19.56131446 13.28267189]\n", + " [14.18531529 13.28565406]\n", + " [ 8.80931611 13.28863621]\n", + " [ 3.43331694 13.29161838]\n", + " [30.31033064 7.90070839]\n", + " [2DEBUG:root:radec2pix: curVec: [[-0.7821967 -0.14134909 -0.60678559]\n", + " [-0.79458888 -0.15639605 -0.58665901]\n", + " [-0.80658565 -0.17161535 -0.56565692]\n", + " [-0.81810345 -0.18693842 -0.54383893]\n", + " [-0.8290679 -0.20229954 -0.52126895]\n", + " [-0.83941293 -0.21763446 -0.49801724]\n", + " [-0.84908031 -0.23287946 -0.4741622 ]\n", + " [-0.85801996 -0.24797116 -0.44979113]\n", + " [-0.7821967 -0.14134909 -0.60678559]\n", + " [-0.76949006 -0.16543153 -0.61686097]\n", + " [-0.75622389 -0.18935057 -0.62631604]\n", + " [-0.74246076 -0.21301628 -0.63511896]\n", + " [-0.72827217 -0.23634195 -0.64324344]\n", + " [-0.7137384 -0.25924434 -0.65066879]\n", + " [-0.69894758 -0.28164389 -0.65738041]\n", + " [-0.68399377 -0.30346547 -0.66337111]\n", + " [-0.85801996 -0.24797116 -0.44979113]\n", + " [-0.8447991 -0.27279823 -0.46032121]\n", + " [-0.83086436 -0.29729965 -0.47040125]\n", + " [-0.81628182 -0.3213821 -0.47999744]\n", + " [-0.80112512 -0.34495895 -0.48908268]\n", + " [-0.7854751 -0.36794991 -0.49763614]\n", + " [-0.76942043 -0.39027933 -0.5056424 ]\n", + " [-0.75305892 -0.41187412 -0.51309061]\n", + " [-0.68399377 -0.30346547 -0.66337111]\n", + " [-0.69486947 -0.31935855 -0.64433418]\n", + " [-0.70552888 -0.33523148 -0.62437878]\n", + " [-0.71589293 -0.35101278 -0.60356221]\n", + " [-0.72588855 -0.36663326 -0.58195006]\n", + " [-0.73545071 -0.38202612 -0.55961442]\n", + " [-0.74452322 -0.39712698 -0.53663333]\n", + " [-0.75305892 -0.41187412 -0.51309061]\n", + " [-0.78759999 -0.14796675 -0.59815725]\n", + " [-0.80253259 -0.16653387 -0.57289433]\n", + " [-0.81678725 -0.18529121 -0.5463751 ]\n", + " [-0.83022331 -0.20411662 -0.5187154 ]\n", + " [-0.84271906 -0.22289174 -0.49004475]\n", + " [-0.85417064 -0.24149932 -0.46051123]\n", + " [-0.77677175 -0.15191474 -0.61118538]\n", + " [-0.7608142 -0.1813326 -0.62312137]\n", + " [-0.74407724 -0.21041518 -0.63409346]\n", + " [-0.72668883 -0.23900152 -0.64405094]\n", + " [-0.70879661 -0.26693837 -0.65295579]\n", + " [-0.69056551 -0.29408106 -0.66078408]\n", + " [-0.852318 -0.25877839 -0.45451927]\n", + " [-0.83562662 -0.28899959 -0.46712673]\n", + " [-0.8179278 -0.31863833 -0.47902372]\n", + " [-0.79935403 -0.34753229 -0.49015756]\n", + " [-0.78005421 -0.37553347 -0.5004898 ]\n", + " [-0.7601953 -0.40250371 -0.50999398]\n", + " [-0.68880878 -0.310DEBUG:root:radec2pix: fitpx: [[-4.99999744e-01 -4.99999751e-01]\n", + " [-5.00000258e-01 2.91928571e+02]\n", + " [-5.00000005e-01 5.84357143e+02]\n", + " [-4.99999941e-01 8.76785714e+02]\n", + " [-4.99999889e-01 1.16921429e+03]\n", + " [-4.99999948e-01 1.46164286e+03]\n", + " [-5.00000143e-01 1.75407143e+03]\n", + " [-4.99999962e-01 2.04650000e+03]\n", + " [-4.99999744e-01 -4.99999751e-01]\n", + " [ 2.91928571e+02 -5.00000271e-01]\n", + " [ 5.84357143e+02 -4.99999959e-01]\n", + " [ 8.76785714e+02 -5.00000035e-01]\n", + " [ 1.16921429e+03 -5.00000130e-01]\n", + " [ 1.46164286e+03 -5.00000295e-01]\n", + " [ 1.75407143e+03 -5.00000131e-01]\n", + " [ 2.04650000e+03 -5.00000000e-01]\n", + " [-4.99999962e-01 2.04650000e+03]\n", + " [ 2.91928571e+02 2.04650000e+03]\n", + " [ 5.84357143e+02 2.04650000e+03]\n", + " [ 8.76785714e+02 2.04650000e+03]\n", + " [ 1.16921429e+03 2.04650000e+03]\n", + " [ 1.46164286e+03 2.04650000e+03]\n", + " [ 1.75407143e+03 2.04650000e+03]\n", + " [ 2.04650000e+03 2.04650000e+03]\n", + " [ 2.04650000e+03 -5.00000000e-01]\n", + " [ 2.04650000e+03 2.91928571e+02]\n", + " [ 2.04650000e+03 5.84357143e+02]\n", + " [ 2.04650000e+03 8.76785714e+02]\n", + " [ 2.04650000e+03 1.16921429e+03]\n", + " [ 2.04650000e+03 1.46164286e+03]\n", + " [ 2.04650000e+03 1.75407143e+03]\n", + " [ 2.04650000e+03 2.04650000e+03]\n", + " [ 4.99999741e-01 1.27000000e+02]\n", + " [ 4.99999873e-01 4.85400000e+02]\n", + " [ 4.99999712e-01 8.43800000e+02]\n", + " [ 5.00000277e-01 1.20220000e+03]\n", + " [ 5.00000282e-01 1.56060000e+03]\n", + " [ 4.99999780e-01 1.91900000e+03]\n", + " [ 1.27000000e+02 4.99999945e-01]\n", + " [ 4.85400000e+02 4.99999942e-01]\n", + " [ 8.43800000e+02 5.00000147e-01]\n", + " [ 1.20220000e+03 4.99999799e-01]\n", + " [ 1.56060000e+03 5.00000078e-01]\n", + " [ 1.91900000e+03 4.99999710e-01]\n", + " [ 1.27000000e+02 2.04550000e+03]\n", + " [ 4.85400000e+02 2.04550000e+03]\n", + " [ 8.43800000e+02 2.04550000e+03]\n", + " [ 1.20220000e+03 2.04550000e+03]\n", + " [ 1.56060000e+03 2.04550000e+03]\n", + " [ 1.91900000e+03 2.04550000e+03]\n", + " [ 2.04550000e+03 1.27000000e+02]\n", + " [ 2.04550000e+03 4.85400000e+02]\n", + " [ 2.04550000e+03 8.43800000e+02]\n", + " [ 2.04550000e+03 1.20220000e+03]\n", + " [ 2.04550000e+03 1.56060000e+03]\n", + " [ 2.04550000e+03 1.91900000e+03]\n", + " [ 5.00000247e-01 5.00000241e-01]\n", + " [ 5.00000247e-01 5.00000241e-01]\n", + " [ 2.04550000e+03 2.04550000e+03]\n", + " [ 2.04550000e+03 2.04550000e+03]\n", + " [ 1.27000000e+02 1.27000000e+02]\n", + " [ 4.85400000e+02 1.27000000e+02]\n", + " [ 8.43800000e+02 1.27000000e+02]\n", + " [ 1.20220000e+03 1.27000000e+02]\n", + " [ 1.56060000e+03 1.27000000e+02]\n", + " [ 1.91900000e+03 1.27000000e+02]\n", + " [ 1.27000000e+02 4.85400000e+02]\n", + " [ 4.85400000e+02 4.85400000e+02]\n", + " [ 8.43800000e+02 4.85400000e+02]\n", + " [ 1.20220000e+03 4.85400000e+02]\n", + " [ 1.56060000e+03 4.85400000e+02]\n", + " [ 1.91900000e+03 4.85400000e+02]\n", + " [ 1.27000000e+02 8.43800000e+02]\n", + " [ 4.85400000e+02 8.43800000e+02]\n", + " [ 8.43800000e+02 8.43800000e+02]\n", + " [ 1.20220000e+03 8.43800000e+02]\n", + " [ 1.56060000e+03 8.43800000e+02]\n", + " [ 1.91900000e+03 8.43800000e+02]\n", + " [ 1.27000000e+02 1.20220000e+03]\n", + " [ 4.85400000e+02 1.20220000e+03]\n", + " [ 8.43800000e+02 1.20220000e+03]\n", + " [ 1.20220000e+03 1.20220000e+03]\n", + " [ 1.56060000e+03 1.20220000e+03]\n", + " [ 1.91900000e+03 1.20220000e+03]\n", + " [ 1.27000000e+02 1.56060000e+03]\n", + " [ 4.85400000e+02 1.56060000e+03]\n", + " [ 8.43800000e+02 1.56060000e+03]\n", + " [ 1.20220000e+03 1.56060000e+03]\n", + " [ 1.56060000e+03 1.56060000e+03]\n", + " [ 1.91900000e+03 1.56060000e+03]\n", + " [ 1.27000000e+02 1.91900000e+03]\n", + " [ 4.85400000e+02 1.91900000e+03]\n", + " [ 8.43800000e+02 1.91900000e+03]\n", + " [ 1.20220000e+03 1.91900000e+03]\n", + " [ 1.56060000e+03 1.91900000e+03]\n", + " [ 1.91900000e+03 1.91900000e+03]]\n", + "DEBUG:root:radec2pix: xyfp Shape: (96, 2)\n", + "4.93433147 7.90369055]\n", + " [19.55833229 7.90667271]\n", + " [14.18233312 7.90965488]\n", + " [ 8.80633395 7.91263704]\n", + " [ 3.43033477 7.9156192 ]\n", + " [30.30734847 2.52470921]\n", + " [24.9313493 2.52769138]\n", + " [19.55535013 2.53067354]\n", + " [14.17935096 2.53365571]\n", + " [ 8.80335178 2.53663787]\n", + " [ 3.42735261 2.53962004]]\n", + "DEBUG:root:fitpix2pix: visCut: True\n", + "DEBUG:root:optics_fp: xyfp: [[ 0.26283402 -31.55708986]\n", + " [ 0.26401791 -27.17066146]\n", + " [ 0.2652018 -22.78423305]\n", + " [ 0.26638569 -18.39780463]\n", + " [ 0.26756957 -14.01137623]\n", + " [ 0.26875346 -9.62494781]\n", + " [ 0.26993735 -5.2385194 ]\n", + " [ 0.27112123 -0.85209099]\n", + " [ 0.26283402 -31.55708986]\n", + " [ 4.64926244 -31.55827376]\n", + " [ 9.03569085 -31.55945764]\n", + " [ 13.42211926 -31.56064153]\n", + " [ 17.80854767 -31.56182542]\n", + " [ 22.19497608 -31.56300931]\n", + " [ 26.5814045 -31.56419319]\n", + " [ 30.96783291 -31.56537708]\n", + " [ 0.27112123 -0.85209099]\n", + " [ 4.65754965 -0.85327487]\n", + " [ 9.04397805 -0.85445876]\n", + " [ 13.43040647 -0.85564265]\n", + " [ 17.81683488 -0.85682653]\n", + " [ 22.20326329 -0.85801042]\n", + " [ 26.5896917 -0.85919431]\n", + " [ 30.97612012 -0.8603782 ]\n", + " [ 30.96783291 -31.56537708]\n", + " [ 30.9690168 -27.17894867]\n", + " [ 30.97020068 -22.79252025]\n", + " [ 30.97138456 -18.40609184]\n", + " [ 30.97256845 -14.01966343]\n", + " [ 30.97375234 -9.63323502]\n", + " [ 30.97493622 -5.24680661]\n", + " [ 30.97612012 -0.8603782 ]\n", + " [ 0.2783502 -29.64459399]\n", + " [ 0.27980117 -24.26859418]\n", + " [ 0.28125214 -18.89259438]\n", + " [ 0.28270311 -13.51659457]\n", + " [ 0.28415408 -8.14059477]\n", + " [ 0.28560505 -2.76459497]\n", + " [ 2.175338 -31.54260605]\n", + " [ 7.55133781 -31.54405702]\n", + " [ 12.92733761 -31.54550799]\n", + " [ 18.30333742 -31.5DEBUG:root:make_az_asym: xyp: [[-32.29046994 -31.71666141]\n", + " [-32.28860507 -27.33023323]\n", + " [-32.2867402 -22.94380505]\n", + " [-32.28487534 -18.55737688]\n", + " [-32.28301047 -14.1709487 ]\n", + " [-32.2811456 -9.78452053]\n", + " [-32.27928073 -5.39809235]\n", + " [-32.27741587 -1.01166418]\n", + " [-32.29046994 -31.71666141]\n", + " [-27.90404176 -31.71852627]\n", + " [-23.51761359 -31.72039114]\n", + " [-19.13118541 -31.722256 ]\n", + " [-14.74475724 -31.72412087]\n", + " [-10.35832906 -31.72598574]\n", + " [ -5.97190089 -31.72785061]\n", + " [ -1.58547272 -31.72971547]\n", + " [-32.27741587 -1.01166418]\n", + " [-27.8909877 -1.01352905]\n", + " [-23.50455952 -1.01539391]\n", + " [-19.11813134 -1.01725878]\n", + " [-14.73170317 -1.01912365]\n", + " [-10.345275 -1.02098851]\n", + " [ -5.95884682 -1.02285338]\n", + " [ -1.57241864 -1.02471825]\n", + " [ -1.58547272 -31.72971547]\n", + " [ -1.58360785 -27.3432873 ]\n", + " [ -1.58174298 -22.95685912]\n", + " [ -1.57987811 -18.57043094]\n", + " [ -1.57801325 -14.18400278]\n", + " [ -1.57614838 -9.7975746 ]\n", + " [ -1.57428351 -5.41114642]\n", + " [ -1.57241864 -1.02471825]\n", + " [-32.27465685 -29.80416795]\n", + " [-32.27237127 -24.42816844]\n", + " [-32.2700857 -19.05216893]\n", + " [-32.26780012 -13.67616941]\n", + " [-32.26551454 -8.3001699 ]\n", + " [-32.26322896 -2.92417038]\n", + " [-30.37796373 -31.70247449]\n", + " [-25.00196422 -31.70476008]\n", + " [-19.62596471 -31.70704565]\n", + " [-14.24996519 -31.70933123]\n", + " [ -8.87396568 -31.71161681]\n", + " [ -3.49796617 -31.71390239]\n", + " [-30.36492242 -1.02747727]\n", + " [-24.98892291 -1.02976285]\n", + " [-19.61292339 -1.03204842]\n", + " [-14.23692388 -1.034334 ]\n", + " [ -8.86092437 -1.03661958]\n", + " [ -3.48492485 -1.03890516]\n", + " [ -1.59965962 -29.81720927]\n", + " [ -1.59737405 -24.44120975]\n", + " [ -1.59508847 -19.06521024]\n", + " [ -1.59280289 -13.68921073]\n", + " [ -1.59051731 -8.31321121]\n", + " [ -1.58823174 -2.9372117 ]\n", + " [-32.27546357 -31.70166778]\n", + " [-32.27546357 -31.70166778]\n", + " [ -1.58742502 -1.03971187]\n", + " [ -1.58742502 -1.03971187]\n", + " [-30.37715702 -29.80497466]\n", + " [-25.00115751 -29.80726024]\n", + " [-19.625158 -29.80954582]\n", + " [-14.24915848 -29.8118314 ]\n", + " [ -8.87315897 -29.81411698]\n", + " [ -3.49715945 -29.81640256]\n", + " [-30.37487145 -24.42897515]\n", + " [-24.99887193 -24.43126073]\n", + " [-19.62287241 -24.43354631]\n", + " [-14.2468729 -24.43583188]\n", + " [ -8.87087339 -24.43811746]\n", + " [ -3.49487388 -24.44040305]\n", + " [-30.37258587 -19.05297564]\n", + " [-24.99658635 -19.05526122]\n", + " [-19.62058684 -19.05754679]\n", + " [-14.24458732 -19.05983237]\n", + " [ -8.86858781 -19.06211795]\n", + " [ -3.4925883 -19.06440353]\n", + " [-30.37030029 -13.67697612]\n", + " [-24.99430077 -13.6792617 ]\n", + " [-19.61830126 -13.68154728]\n", + " [-14.24230175 -13.68383286]\n", + " [ -8.86630223 -13.68611844]\n", + " [ -3.49030272 -13.68840401]\n", + " [-30.36801471 -8.30097661]\n", + " [-24.9920152 -8.30326219]\n", + " [-19.61601568 -8.30554776]\n", + " [-14.24001617 -8.30783335]\n", + " [ -8.86401666 -8.31011893]\n", + " [ -3.48801714 -8.3124045 ]\n", + " [-30.36572914 -2.9249771 ]\n", + " [-24.98972962 -2.92726267]\n", + " [-19.6137301 -2.92954825]\n", + " [-14.23773059 -2.93183383]\n", + " [ -8.86173108 -2.93411941]\n", + " [ -3.48573156 -2.93640499]]\n", + "DEBUG:root:fitpix2pix: ccdpx: shape: (96, 2)\n", + "DEBUG:root:optics_fp: rtanth: [45.12621722 42.17029986 39.48131725 37.11732942 35.14398081 33.63010767\n", + " 32.639706 32.22108294 45.12621722 42.10767167 39.34740219 36.90340926\n", + " 34.84231167 33.23542179 32.15091525 31.64254972 32.22108294 27.83664346\n", + " 23.45294788 19.07050919 14.69045227 10.31581149 5.95852807 1.75318507\n", + " 31.64254972 27.26187195 22.88339755 18.50869029 14.14124675 9.79079234\n", + " 5.49780688 1.75318507 43.79692971 40.34599343 37.35277865 34.93513576\n", + " 33.218972 32.31623807 43.77085556 40.23738319 37.14847194 34.62331124\n", + " 32.79239466 31.77595577 30.30982943 24.93681956 19.5654525 14.19759296\n", + " 8.839633 3.53685305 29.73311087 24.36567291 19.00307614 13.6510271\n", + " 8.32988182 3.19782325 45.10500496 45.10500496 1.7737717 1.7737717\n", + " 42.42166164 38.76540449 35.54881922 32.90111338 30.96854417 29.89014797\n", + " 38.84875172 34.81931533 31.19850449 28.14447363 25.85882561 24.55705763\n", + " 35.73032881 31.30200643 27.21722925 23.65464611 20.88324085 19.24785615\n", + " 33.19472902 28.37338973 23.79099004 19.61570597 16.16611847 13.98976784\n", + " 31.38353749 26.23138645 21.19074319 16.36497207 12.01581361 8.87411937\n", + " 30.4263959 25.07837271 19.74554986 14.44477252 9.23140937 4.4259617 ]\n", + "DEBUG:root:radec2pix: ccdpx: [[-4.44999999e+01 -4.99999855e-01]\n", + " [-4.45000000e+01 2.91928571e+02]\n", + " [-4.45000000e+01 5.84357143e+02]\n", + " [-4.44999998e+01 8.76785714e+02]\n", + " [-4.45000001e+01 1.16921429e+03]\n", + " [-4.45000000e+01 1.46164286e+03]\n", + " [-4.45000000e+01 1.75407143e+03]\n", + " [-4.44999999e+01 2.04650000e+03]\n", + " [-4.44999999e+01 -4.99999855e-01]\n", + " [ 2.47928571e+02 -5.00000005e-01]\n", + " [ 5.40357143e+02 -5.00000101e-01]\n", + " [ 8.32785714e+02 -5.00000211e-01]\n", + " [ 1.12521429e+03 -4.99999718e-01]\n", + " [ 1.41764286e+03 -5.00000108e-01]\n", + " [ 1.71007143e+03 -4.99999976e-01]\n", + " [ 2.00250000e+03 -5.00000222e-01]\n", + " [-4.44999999e+01 2.04650000e+03]\n", + " [ 2.47928572e+02 2.04650000e+03]\n", + " [ 5.40357143e+02 2.04650000e+03]\n", + " [ 8.32785714e+02 2.04650000e+03]\n", + " [ 1.12521429e+03 2.04650000e+03]\n", + " [ 1.41764286e+03 2.04650000e+03]\n", + " [ 1.71007143e+03 2.04650000e+03]\n", + " [ 2.00250000e+03 2.04650000e+03]\n", + " [ 2.00250000e+03 -5.00000222e-01]\n", + " [ 2.00250000e+03 2.91928571e+02]\n", + " [ 2.00250000e+03 5.84357143e+02]\n", + " [ 2.00250000e+03 8.76785714e+02]\n", + " [ 2.00250000e+03 1.16921429e+03]\n", + " [ 2.00250000e+03 1.46164286e+03]\n", + " [ 2.00250000e+03 1.75407143e+03]\n", + " [ 2.00250000e+03 2.04650000e+03]\n", + " [-4.35000000e+01 1.27000000e+02]\n", + " [-4.35000000e+01 4.85400000e+02]\n", + " [-4.34999998e+01 8.43800000e+02]\n", + " [-4.35000001e+01 1.20220000e+03]\n", + " [-4.35000000e+01 1.56060000e+03]\n", + " [-4.34999999e+01 1.91900000e+03]\n", + " [ 8.29999998e+01 4.99999766e-01]\n", + " [ 4.41400000e+02 4.99999737e-01]\n", + " [ 7.99800000e+02 4.99999723e-01]\n", + " [ 1.15820000e+03 5.00000251e-01]\n", + " [ 1.51660000e+03 4.99999874e-01]\n", + " [ 1.87500000e+03 5.00000148e-01]\n", + " [ 8.30000001e+01 2.04550000e+03]\n", + " [ 4.41400000e+02 2.04550000e+03]\n", + " [ 7.99800000e+02 2.04550000e+03]\n", + " [ 1.15820000e+03 2.04550000e+03]\n", + " [ 1.51660000e+03 2.04550000e+03]\n", + " [ 1.87500000e+03 2.04550000e+03]\n", + " [ 2.00150000e+03 1.27000000e+02]\n", + " [ 2.00150000e+03 4.85400000e+02]\n", + " [ 2.00150000e+03 8.43800000e+02]\n", + " [ 2.00150000e+03 1.20220000e+03]\n", + " [ 2.00150000e+03 1.5604695896]\n", + " [ 23.67933722 -31.54840993]\n", + " [ 29.05533702 -31.5498609 ]\n", + " [ 2.18361712 -0.86760716]\n", + " [ 7.55961692 -0.86905814]\n", + " [ 12.93561673 -0.87050911]\n", + " [ 18.31161653 -0.87196007]\n", + " [ 23.68761633 -0.87341105]\n", + " [ 29.06361614 -0.87486202]\n", + " [ 30.95334909 -29.6528731 ]\n", + " [ 30.95480005 -24.27687329]\n", + " [ 30.95625103 -18.90087349]\n", + " [ 30.95770199 -13.52487368]\n", + " [ 30.95915297 -8.14887388]\n", + " [ 30.96060394 -2.77287408]\n", + " [ 0.27783807 -31.54209392]\n", + " [ 0.27783807 -31.54209392]\n", + " [ 30.96111607 -0.87537415]\n", + " [ 30.96111607 -0.87537415]\n", + " [ 2.17585013 -29.64510611]\n", + " [ 7.55184994 -29.64655709]\n", + " [ 12.92784974 -29.64800806]\n", + " [ 18.30384955 -29.64945903]\n", + " [ 23.67984935 -29.65091 ]\n", + " [ 29.05584916 -29.65236097]\n", + " [ 2.1773011 -24.26910631]\n", + " [ 7.55330091 -24.27055728]\n", + " [ 12.92930071 -24.27200825]\n", + " [ 18.30530052 -24.27345922]\n", + " [ 23.68130032 -24.27491019]\n", + " [ 29.05730013 -24.27636116]\n", + " [ 2.17875207 -18.89310651]\n", + " [ 7.55475188 -18.89455748]\n", + " [ 12.93075168 -18.89600845]\n", + " [ 18.30675149 -18.89745942]\n", + " [ 23.68275129 -18.89891039]\n", + " [ 29.0587511 -18.90036136]\n", + " [ 2.18020304 -13.51710671]\n", + " [ 7.55620285 -13.51855767]\n", + " [ 12.93220265 -13.52000864]\n", + " [ 18.30820245 -13.52145961]\n", + " [ 23.68420226 -13.52291058]\n", + " [ 29.06020207 -13.52436156]\n", + " [ 2.18165401 -8.1411069 ]\n", + " [ 7.55765382 -8.14255787]\n", + " [ 12.93365363 -8.14400884]\n", + " [ 18.30965343 -8.14545981]\n", + " [ 23.68565323 -8.14691078]\n", + " [ 29.06165303 -8.14836175]\n", + " [ 2.18310498 -2.76510709]\n", + " [ 7.55910479 -2.76655806]\n", + " [ 12.93510459 -2.76800904]\n", + " [ 18.31110439 -2.76946001]\n", + " [ 23.68710421 -2.77091098]\n", + " [ 29.063104 -2.77236195]]\n", + "DEBUG:root:fitpix2pix: visCut: True\n", + "60000e+03]\n", + " [ 2.00150000e+03 1.91900000e+03]\n", + " [-4.35000002e+01 4.99999824e-01]\n", + " [-4.35000002e+01 4.99999824e-01]\n", + " [ 2.00150000e+03 2.04550000e+03]\n", + " [ 2.00150000e+03 2.04550000e+03]\n", + " [ 8.30000001e+01 1.27000000e+02]\n", + " [ 4.41400000e+02 1.27000000e+02]\n", + " [ 7.99800000e+02 1.27000000e+02]\n", + " [ 1.15820000e+03 1.27000000e+02]\n", + " [ 1.51660000e+03 1.27000000e+02]\n", + " [ 1.87500000e+03 1.27000031913 -0.65516754]\n", + " [-0.70200401 -0.32979317 -0.63121061]\n", + " [-0.71479513 -0.34916583 -0.60592998]\n", + " [-0.72704497 -0.36830873 -0.57944308]\n", + " [-0.7386339 -0.38709891 -0.5518826 ]\n", + " [-0.7494622 -0.40541895 -0.52339459]\n", + " [-0.78219721 -0.1414827 -0.60675379]\n", + " [-0.78219721 -0.1414827 -0.60675379]\n", + " [-0.75308704 -0.41175185 -0.51314746]\n", + " [-0.75308704 -0.41175185 -0.51314746]\n", + " [-0.78215183 -0.15843857 -0.60260745]\n", + " [-0.76611591 -0.18795821 -0.61460404]\n", + " [-0.74927996 -0.21712604 -0.62564832]\n", + " [-0.7317721 -0.24578078 -0.63568971]\n", + " [-0.71374041 -0.27376909 -0.64468993]\n", + " [-0.69535134 -0.30094608 -0.65262392]\n", + " [-0.7970272 -0.1771054 -0.57739182]\n", + " [-0.78079259 -0.20687736 -0.58954617]\n", + " [-0.76370445 -0.23625144 -0.60078346]\n", + " [-0.74589113 -0.26506542 -0.6110538 ]\n", + " [-0.72750093 -0.29316601 -0.62031934]\n", + " [-0.70870227 -0.32040841 -0.62855353]\n", + " [-0.81123513 -0.19594315 -0.55091183]\n", + " [-0.79483619 -0.22591355 -0.56320378]\n", + " [-0.77753744 -0.25544102 -0.57461763]\n", + " [-0.75946767 -0.28436246 -0.58510413]\n", + " [-0.74077482 -0.31252516 -0.59462652]\n", + " [-0.72162723 -0.33978535 -0.60315841]\n", + " [-0.82463512 -0.2148292 -0.52328322]\n", + " [-0.80810642 -0.24494266 -0.5356931 ]\n", + " [-0.79063839 -0.2745692 -0.54726839]\n", + " [-0.77236075 -0.30354521 -0.55795983]\n", + " [-0.75342126 -0.33171909 -0.56773132]\n", + " [-0.7339875 -0.35894878 -0.57655712]\n", + " [-0.83710585 -0.23364446 -0.49463528]\n", + " [-0.82048293 -0.26384365 -0.50714327]\n", + " [-0.80288748 -0.29351351 -0.5188656 ]\n", + " [-0.78445051 -0.32249055 -0.52975206]\n", + " [-0.76532003 -0.35062467 -0.53976624]\n", + " [-0.74566304 -0.37777574 -0.54888262]\n", + " [-0.84854388 -0.25227096 -0.46511574]\n", + " [-0.83186366 -0.28249693 -0.47770109]\n", + " [-0.81418398 -0.3121537 -0.48955542]\n", + " [-0.79563702 -0.34107857 -0.50062675]\n", + " [-0.77637141 -0.36912301 -0.51087732]\n", + " [-0.75655404 -0.39614849 -0.52028103]]\n", + "DEBUG:root:mm_to_pix: fitpx: [[0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]]\n", + "DEBUG:root:radec2pix: curVec Shape: (96, 3)\n", + "DEBUG:root:mm_to_pix: fitpx.shape: (96, 2)\n", + "DEBUG:root:radec2pix: xyfp: [[ 0.26283402 -31.55708986]\n", + " [ 0.26401791 -27.17066146]\n", + " [ 0.2652018 -22.78423305]\n", + " [ 0.26638569 -18.39780463]\n", + " [ 0.26756957 -14.01137623]\n", + " [ 0.26875346 -9.62494781]\n", + " [ 0.26993735 -5.2385194 ]\n", + " [ 0.27112123 -0.85209099]\n", + " [ 0.26283402 -31.55708986]\n", + " [ 4.64926244 -31.55827376]\n", + " [ 9.03569085 -31.55945764]\n", + " [ 13.42211926 -31.56064153]\n", + " [ 17.80854767 -31.56182542]\n", + " [ 22.19497608 -31.56300931]\n", + " [ 26.5814045 -31.56419319]\n", + " [ 30.96783291 -31.56537708]\n", + " [ 0.27112123 -0.85209099]\n", + " [ 4.65754965 -0.85327487]\n", + " [ 9.04397805 -0.85445876]\n", + " [ 13.43040647 -0.85564265]\n", + " [ 17.81683488 -0.85682653]\n", + " [ 22.20326329 -0.85801042]\n", + " [ 26.5896917 -0.85919431]\n", + " [ 30.97612012 -0.8603782 ]\n", + " [ 30.96783291 -31.56537708]\n", + " [ 30.9690168 -27.17894867]\n", + " [ 30.97020068 -22.79252025]\n", + " [ 30.97138456 -18.40609184]\n", + " [ 30.97256845 -14.01966343]\n", + " [ 30.97375234 -9.63323502]\n", + " [ 30.97493622 -5.24680661]\n", + " [ 30.97612012 -0.8603782 ]\n", + " [ 0.2783502 -29.64459399]\n", + " [ 0.27980117 -24.26859418]\n", + " [ 0.28125214 -18.89259438]\n", + " [ 0.28270311 -13.51659457]\n", + " [ 0.28415408 -8.14059477]\n", + " [ 0.28560505 -2.76459497]\n", + " [ 2.175338 -31.54260605]\n", + " [ 7.55133781 -31.54405702]\n", + " [ 12.92733761 -31.54550799]\n", + " [ 18.30333742 -31.54695896DEBUG:root:optics_fp: xyfp shape: (96, 2)\n", + "]\n", + " [ 23.67933722 -31.54840993]\n", + " [ 29.05533702 -31.5498609 ]\n", + " [ 2.18361712 -0.86760716]\n", + " [ 7.55961692 -0.86905814]\n", + " [ 12.93561673 -0.87050911]\n", + " [ 18.31161653 -0.87196007]\n", + " [ 23.68761633 -0.87341105]\n", + " [ 29.06361614 -0.87486202]\n", + " [ 30.95334909 -29.6528731 ]\n", + " [ 30.95480005 -24.27687329]\n", + " [ 30.95625103 -18.90087349]\n", + " [ 30.95770199 -13.52487368]\n", + " [ 30.95915297 -8.14887388]\n", + " [ 30.96060394 -2.77287408]\n", + " [ 0.27783807 -31.54209392]\n", + " [ 0.27783807 -31.54209392]\n", + " [ 30.96111607 -0.87537415]\n", + " [ 30.96111607 -0.87537415]\n", + " [ 2.17585013 -29.64510611]\n", + " [ 7.55184994 -29.64655709]\n", + " [ 12.92784974 -29.64800806]\n", + " [ 18.30384955 -29.64945903]\n", + " [ 23.67984935 -29.65091 ]\n", + " [ 29.05584916 -29.65236097]\n", + " [ 2.1773011 -24.26910631]\n", + " [ 7.55330091 -24.27055728]\n", + " [ 12.92930071 -24.27200825]\n", + " [ 18.30530052 -24.27345922]\n", + " [ 23.68130032 -24.27491019]\n", + " [ 29.05730013 -24.27636116]\n", + " [ 2.17875207 -18.89310651]\n", + " [ 7.55475188 -18.89455748]\n", + " [ 12.93075168 -18.89600845]\n", + " [ 18.30675149 -18.89745942]\n", + " [ 23.68275129 -18.89891039]\n", + " [ 29.0587511 -18.90036136]\n", + " [ 2.18020304 -13.51710671]\n", + " [ 7.55620285 -13.51855767]\n", + " [ 12.93220265 -13.52000864]\n", + " [ 18.30820245 -13.52145961]\n", + " [ 23.68420226 -13.52291058]\n", + " [ 29.06020207 -13.52436156]\n", + " [ 2.18165401 -8.1411069 ]\n", + " [ 7.55765382 -8.14255787]\n", + " [ 12.93365363 -8.14400884]\n", + " [ 18.30965343 -8.14545981]\n", + " [ 23.68565323 -8.14691078]\n", + " [ 29.06165303 -8.14836175]\n", + " [ 2.18310498 -2.76510709]\n", + " [ 7.55910479 -2.76655806]\n", + " [ 12.93510459 -2.76800904]\n", + " [ 18.31110439 -2.76946001]\n", + " [ 23.68710421 -2.77091098]\n", + " [ 29.063104 -2.77236195]]\n", + "DEBUG:root:radec2pix: xyfp: [[32.23341696 31.55141621]\n", + " [32.23194958 27.16498788]\n", + " [32.2304822 22.77855956]\n", + " [32.22901483 18.39213124]\n", + " [32.22754745 14.00570291]\n", + " [32.22608007 9.61927458]\n", + " [32.22461269 5.23284626]\n", + " [32.2231453 0.84641793]\n", + " [32.23341696 31.55141621]\n", + " [27.84698864 31.5528836 ]\n", + " [23.46056031 31.55435097]\n", + " [19.07413198 31.55581835]\n", + " [14.68770366 31.55728573]\n", + " [10.30127DEBUG:root:radec2pix: curVec: [[-0.12969568 0.23974893 -0.96213278]\n", + " [-0.11269691 0.26174298 -0.95853535]\n", + " [-0.09527113 0.28395838 -0.95409174]\n", + " [-0.07748299 0.30629521 -0.94877797]\n", + " [-0.05939807 0.32865649 -0.94257985]\n", + " [-0.04108394 0.35094696 -0.93549363]\n", + " [-0.02261072 0.37307265 -0.92752658]\n", + " [-0.0040508 0.39494137 -0.9186974 ]\n", + " [-0.12969568 0.23974893 -0.96213278]\n", + " [-0.15240903 0.25615648 -0.95454457]\n", + " [-0.17486235 0.27237346 -0.94616904]\n", + " [-0.19696812 0.28834193 -0.93704989]\n", + " [-0.21863982 0.30400853 -0.92724077]\n", + " [-0.23979167 0.3193248 -0.91680512]\n", + " [-0.26033808 0.33424724 -0.90581613]\n", + " [-0.28019324 0.34873719 -0.89435682]\n", + " [-0.0040508 0.39494137 -0.9186974 ]\n", + " [-0.02762962 0.41178275 -0.91086309]\n", + " [-0.05110582 0.42820159 -0.90223699]\n", + " [-0.07438722 0.44413847 -0.8928648 ]\n", + " [-0.0973845 0.45954045 -0.88280169]\n", + " [-0.12001156 0.47436116 -0.87211164]\n", + " [-0.14218495 0.48856024 -0.8608672 ]\n", + " [-0.16382254 0.50210233 -0.84914982]\n", + " [-0.28019324 0.34873719 -0.89435682]\n", + " [-0.26511193 0.37082403 -0.8900591 ]\n", + " [-0.24940425 0.3930188 -0.88506143]\n", + " [-0.23313753 0.41521742 -0.87934145]\n", + " [-0.21637873 0.43731974 -0.87288699]\n", + " [-0.19919482 0.45922927 -0.86569619]\n", + " [-0.18165328 0.48085315 -0.85777756]\n", + " [-0.16382254 0.50210233 -0.84914982]\n", + " [-0.12241912 0.24936121 -0.96064174]\n", + " [-0.10129086 0.27647936 -0.95566695]\n", + " [-0.07958528 0.3038302 -0.94939633]\n", + " [-0.05742263 0.33123404 -0.94179969]\n", + " [-0.0349274 0.35851546 -0.93287016]\n", + " [-0.01222962 0.38550215 -0.92262589]\n", + " [-0.13956811 0.24699716 -0.95891248]\n", + " [-0.16724274 0.2669861 -0.9490776 ]\n", + " [-0.1944398 0.28663055 -0.93810239]\n", + " [-0.22099962 0.30583036 -0.92608151]\n", + " [-0.24676418 0.32449631 -0.91313175]\n", + " [-0.27157584 0.34255035 -0.89939192]\n", + " [-0.0144014 0.40225793 -0.91541311]\n", + " [-0.04324217 0.42262249 -0.90527363]\n", + " [-0.07183681 0.4422928 -0.89398912]\n", + " [-0.10001965 0.46116866 -0.88165727]\n", + " [-0.12763213 0.47916465 -0.86839581]\n", + " [-0.15452124 0.49620859 -0.85434198]\n", + " [-0.27363191 0.35829843 -0.89260731]\n", + " [-0.25471707 0.38545451 -0.88687318]\n", + " [-0.23492845 0.41266891 -0.8800642 ]\n", + " [-0.2143895 0.43975563 -0.87215373]\n", + " [-0.19322354 0.46653706 -0.86313836]\n", + " [-0.17155521 0.49284378 -0.853038 ]\n", + " [-0.12971637 0.23988001 -0.96209731]\n", + " [-0.12971637 0.23988001 -0.96209731]\n", + " [-0.16381094 0.50198525 -0.84922128]\n", + " [-0.16381094 0.50198525 -0.84922128]\n", + " [-0.1323105 0.25650436 -0.95744423]\n", + " [-0.16010683 0.27655109 -0.9475681 ]\n", + " [-0.18743924 0.29622945 -0.93654399]\n", + " [-0.21414809 0.31543889 -0.92446682]\n", + " [-0.24007579 0.33409001 -0.9114535 ]\n", + " [-0.26506525 0.35210479 -0.89764282]\n", + " [-0.11128227 0.28368747 -0.95243776]\n", + " [-0.13938871 0.30387431 -0.94246018]\n", + " [-0.16706965 0.32362679 -0.93131812]\n", + " [-0.19416519 0.34284334 -0.91910735]\n", + " [-0.22051884 0.36143423 -0.90594522]\n", + " [-0.2459754 0.37932171 -0.89197037]\n", + " [-0.08965838 0.31109012 -0.94614181]\n", + " [-0.11802345 0.33138123 -0.93608597]\n", + " [-0.14600179 0.35117413 -0.92485686]\n", + " [-0.17343265 0.37036666 -0.91255118]\n", + " [-0.2DEBUG:root:fitpix2pix: ccdpx: shape: (96, 2)\n", + "DEBUG:root:optics_fp: cphi: [0.713738 0.76376784 0.81578691 0.86774466 0.91646952 0.95772545\n", + " 0.98678686 0.99960811 0.713738 0.66073156 0.59560321 0.51618565\n", + " 0.42082689 0.3091928 0.18318995 0.04750869 0.99960811 0.99947492\n", + " 0.99926025 0.99888104 0.99811368 0.99617106 0.98847974 0.85755676\n", + " 0.04750869 0.05514364 0.06569574 0.08122479 0.10631221 0.15355346\n", + " 0.27346048 0.85755676 0.73505851 0.79793137 0.86187328 0.92151896\n", + " 0.96912745 0.99620029 0.69214539 0.6193195 0.5260996 0.40919818\n", + " 0.26810473 0.10749625 0.99954227 0.99932373 0.99890128 0.99791251\n", + " 0.99460641 0.9658178 0.05106448 0.06231447 0.07990085 0.11122898\n", + " 0.18228563 0.4748373 0.71374111 0.71374111 0.85606035 0.85606035\n", + " 0.71415887 0.64283622 0.5497737 0.43061783 0.28389471 0.11427866\n", + " 0.7798406 0.71568995 0.62643496 0.50339666 0.33999355 0.13909785\n", + " 0.84790325 0.79611069 0.71806949 0.59894626 0.42100084 0.17746713\n", + " 0.9126717 0.87828385 0.82148283 0.72227275 0.54384668 0.24417059\n", + " 0.96534426 0.95000384 0.92228562 0.86574653 0.73169559 0.38493034\n", + " 0.9957126 0.99368273 0.9897899 0.98083551 0.95239474 0.77179741]\n", + "DEBUG:root:fitpix2pix: visCut: True\n", + "533 31.55875311]\n", + " [ 5.91484701 31.56022049]\n", + " [ 1.52841868 31.56168787]\n", + " [32.2231453 0.84641793]\n", + " [27.83671698 0.84788531]\n", + " [23.45028865 0.84935269]\n", + " [19.06386033 0.85082007]\n", + " [14.677432 0.85228745]\n", + " [10.29100367 0.85375483]\n", + " [ 5.90457535 0.85522221]\n", + " [ 1.51814702 0.85668959]\n", + " [ 1.52841868 31.56168787]\n", + " [ 1.5269513 27.17525955]\n", + " [ 1.52548392 22.78883122]\n", + " [ 1.52401654 18.4024029 ]\n", + " [ 1.52254916 14.01597457]\n", + " [ 1.52108178 9.62954624]\n", + " [ 1.5196144 5.24311792]\n", + " [ 1.51814702 0.85668959]\n", + " [32.21777718 29.63892134]\n", + " [32.21597876 24.26292164]\n", + " [32.21418034 18.88692194]\n", + " [32.21238193 13.51092224]\n", + " [32.21058351 8.13492254]\n", + " [32.20878509 2.75892284]\n", + " [30.32091205 31.53705599]\n", + " [24.94491236 31.53885442]\n", + " [19.56891265 31.54065283]\n", + " [14.19291295 31.54245125]\n", + " [ 8.81691325 31.54424967]\n", + " [ 3.44091356 31.54604808]\n", + " [30.31065043 0.86205771]\n", + " [24.93465073 0.86385613]\n", + " [19.55865103 0.86565455]\n", + " [14.18265134 0.86745297]\n", + " [ 8.80665163 0.86925139]\n", + " [ 3.43065193 0.8710498 ]\n", + " [ 1.5427789 29.64918296]\n", + " [ 1.54098048 24.27318326]\n", + " [ 1.53918206 18.89718357]\n", + " [ 1.53738364 13.52118387]\n", + " [ 1.53558522 8.14518416]\n", + " [ 1.5337868 2.76918446]\n", + " [32.21841195 31.53642123]\n", + " [32.21841195 31.53642123]\n", + " [ 1.53315204 0.87168457]\n", + " [ 1.53315204 0.87168457]\n", + " [30.32027729 29.6395561 ]\n", + " [24.94427759 29.64135452]\n", + " [19.56827789 29.64315294]\n", + " [14.19227819 29.64495136]\n", + " [ 8.81627849 29.64674978]\n", + " [ 3.44027879 29.6485482 ]\n", + " [30.31847887 24.2635564 ]\n", + " [24.94247917 24.26535482]\n", + " [19.56647947 24.26715324]\n", + " [14.19047977 24.26895166]\n", + " [ 8.81448007 24.27075007]\n", + " [ 3.43848037 24.2725485 ]\n", + " [30.31668045 18.8875567 ]\n", + " [24.94068075 18.88935513]\n", + " [19.56468105 18.89115354]\n", + " [14.18868135 18.89295196]\n", + " [ 8.81268165 18.89475038]\n", + " [ 3.43668195 18.89654879]\n", + " [30.31488203 13.51155701]\n", + " [24.93888233 13.51335542]\n", + " [19.56288263 13.5100e+02]\n", + " [ 8.29999998e+01 4.85400000e+02]\n", + " [ 4.41400000e+02 4.85400000e+02]\n", + " [ 7.99800000e+02 4.85400000e+02]\n", + " [ 1.15820000e+03 4.85400000e+02]\n", + " [ 1.51660000e+03 4.85400000e+02]\n", + " [ 1.87500000e+03 4.85400000e+02]\n", + " [ 8.30000003e+01 8.43800000e+02]\n", + " [ 4.41400000e+02 8.43800000e+02]\n", + " [ 7.99800000e+02 8.43800000e+02]\n", + " [ 1.15820000e+03 8.43800000e+02]\n", + " [ 1.51660000e+03 8.43800000e+02]\n", + " [ 1.87500000e+03 8.43800000e+02]\n", + " [ 8.29999997e+01 1.20220000e+03]\n", + " [ 4.41400000e+02 1.20220000e+03]\n", + " [ 7.99800000e+02 1.20220000e+03]\n", + " [ 1.15820000e+03 1.20220000e+03]\n", + " [ 1.51660000e+03 1.20220000e+03]\n", + " [ 1.87500000e+03 1.20220000e+03]\n", + " [ 8.30000001e+01 1.56060000e+03]\n", + " [ 4.41400000e+02 1.56060000e+03]\n", + " [ 7.99800000e+02 1.56060000e+03]\n", + " [ 1.15820000e+03 1.56060000e+03]\n", + " [ 1.51660000e+03 1.56060000e+03]\n", + " [ 1.87500000e+03 1.56060000e+03]\n", + " [ 8.30000000e+01 1.91900000e+03]\n", + " [ 4.41400000e+02 1.91900000e+03]\n", + " [ 7.99800000e+02 1.91900000e+03]\n", + " [ 1.15820000e+03 1.91900000e+03]\n", + " [ 1.51660000e+03 1.91900000e+03]\n", + " [ 1.87500000e+03 1.91900000e+03]]\n", + "DEBUG:root:make_az_asym: xyp: [[ 0.26283402 -31.55708986]\n", + " [ 0.26401791 -27.17066146]\n", + " [ 0.2652018 -22.78423305]\n", + " [ 0.26638569 -18.39780463]\n", + " [ 0.26756957 -14.01137623]\n", + " [ 0.26875346 -9.62494781]\n", + " [ 0.26993735 -5.2385194 ]\n", + " [ 0.27112123 -0.85209099]\n", + " [ 0.26283402 -31.55708986]\n", + " [ 4.64926244 -31.55827376]\n", + " [ 9.03569085 -31.55945764]\n", + " [ 13.42211926 -31.56064153]\n", + " [ 17.80854767 -31.56182542]\n", + " [ 22.19497608 -31.56300931]\n", + " [ 26.5814045 -31.56419319]\n", + " [ 30.96783291 -31.56537708]\n", + " [ 0.27112123 -0.85209099]\n", + " [ 4.65754965 -0.85327487]\n", + " [ 9.04397805 -0.85445876]\n", + " [ 13.43040647 -0.85564265]\n", + " [ 17.81683488 -0.85682653]\n", + " [ 22.20326329 -0.85801042]\n", + " [ 26.5896917 -0.85919431]\n", + " [ 30.97612012 -0.8603782 ]\n", + " [ 30.96783291 -31.56537708]\n", + " [ 30.9690168 -27.17894867]\n", + " [ 30.97020068 -22.79252025]\n", + " [ 30.97138456 -18.40609184]\n", + " [ 30.97256845 -14.01966343]\n", + " [ 30.97375234 -9.63323502]\n", + " [ 30.97493622 -5.24680661]\n", + " [ 30.97612012 -0.8603782 ]\n", + " [ 0.2783502 -29.64459399]\n", + " [ 0.27980117 -24.26859418]\n", + " [ 0.28125214 -18.89259438]\n", + " [ 0.28270311 -13.51659457]\n", + " [ 0.28415408 -8.14059477]\n", + " [ 0.28560505 -2.76459497]\n", + " [ 2.175338 -31.54260605]\n", + " [ 7.55133781 -31.54405702]\n", + " [ 12.92733761 -31.54550799]\n", + " [ 18.30333742 -31.54695896]\n", + " [ 23.67933722 -31.54840993]\n", + " [ 29.05533702 -31.5498609 ]\n", + " [ 2.18361712 -0.86760716]\n", + " [ 7.55961692 -0.86905814]\n", + " [ 12.93561673 -0.87050911]\n", + " [ 18.31161653 -0.87196007]\n", + " [ 23.68761633 -0.87341105]\n", + " [ 29.06361614 -0.87486202]\n", + " [ 30.95334909 -29.6528731 ]\n", + " [ 30.95480005 -24.27687329]\n", + " [ 30.95625103 -18.90087349]\n", + " [ 30.95770199 -13.52487368]\n", + " [ 30.95915297 -8.14887388]\n", + " [ 30.96060394 -2.77287408]\n", + " [ 0.27783807 -31.54209392]\n", + " [ 0.27783807 -31.54209392]\n", + " [ 30.96111607 -0.87537415]\n", + " [ 30.96111607 -0.87537415]\n", + " [ 2.17585013 -29.64510611]\n", + " [ 7.55184994 -29.64655709]\n", + " [ 12.92784974 -29.64800806]\n", + " [ 18.30384955 -29.64945903]\n", + " [ 23.67984935 -29.65091 ]\n", + " [ 29.05584916 -29.6523609DEBUG:root:make_az_asym: xyp: shape: (96, 2)\n", + "7]\n", + " [ 2.1773011 -24.26910631]\n", + " [ 7.55330091 -24.27055728]\n", + " [ 12.92930071 -24.27200825]\n", + " [ 18.30530052 -24.27345922]\n", + " [ 23.68130032 -24.27491019]\n", + " [ 29.05730013 -24.27636116]\n", + " [ 2.17875207 -18.89310651]\n", + " [ 7.55475188 -18.89455748]\n", + " [ 12.93075168 -18.89600845]\n", + " [ 18.30675149 -18.89745942]\n", + " [ 23.68275129 -18.89891039]\n", + " [ 29.0587511 -18.90036136]\n", + " [ 2.18020304 -13.51710671]\n", + " [ 7.55620285 -13.51855767]\n", + " [ 12.93220265 -13.52000864]\n", + " [ 18.30820245 -13.52145961]\n", + " [ 23.68420226 -13.52291058]\n", + " [ 29.06020207 -13.52436156]\n", + " [ 2.18165401 -8.1411069 ]\n", + " [ 7.55765382 -8.14255787]\n", + " [ 12.93365363 -8.14400884]\n", + " [ 18.30965343 -8.14545981]\n", + " [ 23.68565323 -8.14691078]\n", + " [ 29.06165303 -8.14836175]\n", + " [ 2.18310498 -2.76510709]\n", + " [ 7.55910479 -2.76655806]\n", + " [ 12.93510459 -2.76800904]\n", + " [ 18.31110439 -2.76946001]\n", + " [ 23.68710421 -2.77091098]\n", + " [ 29.063104 -2.77236195]]\n", + "DEBUG:root:radec2pix: ccdpx: [[-4.45000000e+01 -4.99999783e-01]\n", + " [-4.45000000e+00016009 0.38886922 -0.89928676]\n", + " [-0.22603065 0.40660476 -0.88520208]\n", + " [-0.06755861 0.33853224 -0.93852638]\n", + " [-0.09612992 0.35889046 -0.92841622]\n", + " [-0.12435442 0.37868874 -0.91713184]\n", + " [-0.15207002 0.39782486 -0.90477074]\n", + " [-0.17912063 0.41620994 -0.89145111]\n", + " [-0.2053539 0.43376814 -0.87731122]\n", + " [-0.04510684 0.36583796 -0.92958483]\n", + " [-0.07383044 0.38622509 -0.91944507]\n", + " [-0.10224884 0.40599299 -0.90813813]\n", + " [-0.13019834 0.42503999 -0.89576191]\n", + " [-0.15752208 0.44327848 -0.88243469]\n", + " [-0.18406798 0.46063415 -0.8682944 ]\n", + " [-0.02243254 0.39283464 -0.91933548]\n", + " [-0.05125278 0.41321193 -0.90919143]\n", + " [-0.07981119 0.43291385 -0.89789519]\n", + " [-0.10794257 0.45183979 -0.88554458]\n", + " [-0.13548884 0.46990372 -0.87225757]\n", + " [-0.16229736 0.48703294 -0.85817159]]\n", + "DEBUG:root:optics_fp: sphi: [0.70041278 0.64549104 0.5783526 0.49701026 0.40010451 0.28768378\n", + " 0.16202376 0.02799345 0.70041278 0.75062228 0.80327879 0.85647672\n", + " 0.90714096 0.95099938 0.98307754 0.99887082 0.02799345 0.03240177\n", + " 0.03845716 0.04729349 0.06139281 0.08742554 0.15135324 0.51438935\n", + " 0.99887082 0.99847843 0.9978397 0.99669581 0.9943328 0.98814034\n", + " 0.96188324 0.51438935 0.67800368 0.60274831 0.5071237 0.38833338\n", + " 0.24656029 0.0870918 0.7217581 0.78513907 0.85042296 0.91244553\n", + " 0.96338977 0.99420549 0.03025321 0.03677059 0.04686391 0.06458036\n", + " 0.10372123 0.25922188 0.99869536 0.99805657 0.99680282 0.9937948\n", + " 0.98324562 0.8800736 0.70040962 0.70040962 0.51687588 0.51687588\n", + " 0.69998365 0.76600365 0.83531364 0.90253437 0.95885546 0.99344873\n", + " 0.62597814 0.69841814 0.77947369 0.86405544 0.94042777 0.99027864\n", + " 0.530151 0.60515103 0.69597142 0.80078922 0.90706025 0.98412673\n", + " 0.40869348 0.47813961 0.57023325 0.69160833 0.8391846 0.9697323\n", + " 0.2609798 0.31223822 0.38650903 0.50048271 0.68163155 0.92294563\n", + " 0.09250092 0.11222584 0.14253407 0.19483765 0.3048676 0.63586851]\n", + "1 2.91928571e+02]\n", + " [-4.45000000e+01 5.84357143e+02]\n", + " [-4.45000000e+01 8.76785714e+02]\n", + " [-4.45000000e+01 1.16921429e+03]\n", + " [-4.45000000e+01 1.46164286e+03]\n", + " [-4.45000000e+01 1.75407143e+03]\n", + " [-4.44999999e+01 2.04650000e+03]\n", + " [-4.45000000e+01 -4.99999783e-01]\n", + " [ 2.47928571e+02 -5.00000080e-01]\n", + " [ 5.40357143e+02 -5.00000178e-01]\n", + " [ 8.32785714e+02 -4.99999867e-01]\n", + " [ 1.12521429e+03 -5.00000095e-01]\n", + " [ 1.41764286e+03 -5.00000221e-01]\n", + " [ 1.71007143e+03 -5.00000185e-01]\n", + " [ 2.00250000e+03 -5.00000018e-01]\n", + " [-4.44999999e+01 2.04650000e+03]\n", + " [ 2.47928572e+02 2.04650000e+03]\n", + " [ 5.40357143e+02 2.04650000e+03]\n", + " [ 8.32785714e+02 2.04650000e+03]\n", + " [ 1.12521429e+03 2.04650000e+03]\n", + " [ 1.41764286e+03 2.04650000e+03]\n", + " [ 1.71007143e+03 2.04650000e+03]\n", + " [ 2.00250000e+03 2.04650000e+03]\n", + " [ 2.00250000e+03 -5.00000018e-01]\n", + " [ 2.00250000e+03 2.91928571e+02]\n", + " [ 2.00250000e+03 5.84357143e+02]\n", + " [ 2.00250000e+03 8.76785714e+02]\n", + " [ 2.00250000e+03 1.16921429e+03]\n", + " [ 2.00250000e+03 1.46164286e+03]\n", + " [ 2.00250000e+03 1.75407143e+03]\n", + " [ 2.00250000e+03 2.04650000e+03]\n", + " [-4.35000000e+01 1.27000000e+02]\n", + " [-4.35000000e+01 4.85400000e+02]\n", + " [-4.35000000e+01 8.43800000e+02]\n", + " [-4.35000000e+01 1.20220000e+03]\n", + " [-4.35000000e+01 1.56060000e+03]\n", + " [-4.35000000e+01 1.91900000e+03]\n", + " [ 8.30000000e+01 4.99999873e-01]\n", + " [ 4.41400000e+02 5.00000123e-01]\n", + " [ 7.99800000e+02 5.00000108e-01]\n", + " [ 1.15820000e+03 4.99999719e-01]\n", + " [ 1.51660000e+03 4.99999964e-01]\n", + " [ 1.87500000e+03 5.00000185e-01]\n", + " [ 8.30000000e+01 2.04550000e+03]\n", + " [ 4.41400000e+02 2.04550000e+03]\n", + " [ 7.99800000e+02 2.04550000e+03]\n", + " [ 1.15820000e+03 2.04550000e+03]\n", + " [ 1.51660000e+03 2.04550000e+03]\n", + " [ 1.87500000e+03 2.04550000e+03]\n", + " [ 2.00150000e+03 1.27000000e+02]\n", + " [ 2.00150000e+03 4.85400000e+02]\n", + " [ 2.00150000e+03 8.43800000e+02]\n", + " [ 2.00150000e+03 1.20220000e+03]\n", + " [ 2.00150000e+03 1.56060000e+03]\n", + " [ 2.00150000e+03 1.91900000e+03]\n", + " [-4.35000000e+01 4.99999853e-01]\n", + " [-4.35000000e+01 4.99999853e-01]\n", + " [ 2.00150000e+03 2.04550000e+03]\n", + " [ 2.00150000e+03 2.04550000e+03]\n", + " [ 8.30000000e+01 1.27000000e+02]\n", + " [ 4.41400000e+02 1.27000000e+02]\n", + " [ 7.99DEBUG:root:radec2pix: camVec: [[ 0.00162968 0.00164392 0.00165615 0.00166636 0.0016745 0.00168051\n", + " 0.00168433 0.00168589 0.00162968 0.03065921 0.0595691 0.08824658\n", + " 0.11657974 0.14445783 0.17177197 0.1984171 0.00168589 0.03171597\n", + " 0.06161834 0.09127522 0.12057355 0.14940474 0.17766265 0.205241\n", + " 0.1984171 0.20017053 0.20167036 0.20291139 0.20389075 0.20460646\n", + " 0.20505694 0.205241 0.00173588 0.00175296 0.00176683 0.00177741\n", + " 0.00178459 0.00178824 0.01429458 0.04980805 0.08502967 0.11975303\n", + " 0.15377432 0.1868945 0.0147871 0.05152109 0.08794575 0.12385093\n", + " 0.15903647 0.19330699 0.19912208 0.20110045 0.20269257 0.20389226\n", + " 0.20469584 0.20510055 0.00172908 0.00172908 0.20514779 0.20514779\n", + " 0.01435076 0.05000388 0.08536435 0.12022547 0.15438306 0.18763689\n", + " 0.01449201 0.05049589 0.08620426 0.1214098 0.15590842 0.18949858\n", + " 0.01460664 0.05089468 0.08688344 0.12236492 0.15713605 0.19099623\n", + " 0.01469DEBUG:root:radec2pix: curVec Shape: (96, 3)\n", + "DEBUG:root:radec2pix: fitpx: [[4271.49999985 4155.49999985]\n", + " [4271.49999998 3863.07142855]\n", + " [4271.50000002 3570.64285716]\n", + " [4271.49999976 3278.21428558]\n", + " [4271.50000012 2985.78571434]\n", + " [4271.50000004 2693.35714287]\n", + " [4271.50000005 2400.92857144]\n", + " [4271.49999991 2108.5 ]\n", + " [4271.49999985 4155.49999985]\n", + " [3979.07142858 4155.50000001]\n", + " [3686.64285722 4155.5000001 ]\n", + " [3394.21428584 4155.50000021]\n", + " [3101.78571415 4155.49999972]\n", + " [2809.35714289 4155.50000011]\n", + " [2516.92857142 4155.49999998]\n", + " [2224.50000001 4155.50000022]\n", + " [4271.49999991 2108.5 ]\n", + " [3979.07142843 2108.5 ]\n", + " [3686.6428569 2108.49999999]\n", + " [3394.21428586 2108.5 ]\n", + " [3101.78571453 2108.50000001]\n", + " [2809.35714306 2108.50000001]\n", + " [2516.9285717 2108.50000003]\n", + " [2224.49999984 2108.49999993]\n", + " [2224.50000001 4155.50000022]\n", + " [2224.5 3863.07142862]\n", + " [2224.49999998 3570.64285684]\n", + " [2224.50000001 3278.21428585]\n", + " [2224.50000002 2985.78571445]\n", + " [2224.5 2693.35714285]\n", + " [2224.49999995 2400.92857125]\n", + " [2224.49999984 2108.49999993]\n", + " [4270.49999995 4027.99999996]\n", + " [4270.50000001 3669.6 ]\n", + " [4270.4999998 3311.19999989]\n", + " [4270.50000006 2952.80000003]\n", + " [4270.50000002 2594.40000001]\n", + " [4270.49999985 2235.99999999]\n", + " [4144.00000023 4154.50000023]\n", + " [3785.60000021 4154.50000026]\n", + " [3427.20000017 4154.50000028]\n", + " [3068.79999989 4154.49999975]\n", + " [2710.40000004 4154.50000013]\n", + " [2351.99999998 4154.49999985]\n", + " [4143.99999992 2109.5 ]\n", + " [3785.59999985 2109.5 ]\n", + " [3427.19999998 2109.5 ]\n", + " [3068.80000001 2109.5 ]\n", + " [2710.40000021 2109.50000002]\n", + " [2352.00000017 2109.50000003]\n", + " [2225.5 4027.99999993]\n", + " [2225.49999998 3669.59999975]\n", + " [2225.50000001 3311.20000015]\n", + " [2225.5 2952.8 ]\n", + " [2225.49999998 2594.39999987]\n", + " [2225.50000008 2236.00000013]\n", + " [4270.50000018 4154.50000018]\n", + " [4270.50000018 4154.50000018]\n", + " [2225.49999981 2109.49999992]\n", + " [2225.49999981 2109.49999992]\n", + " [4143.99999987 4027.99999987]\n", + " [3785.59999992 4027.9999999 ]\n", + " [342515384]\n", + " [14.18688293 13.51695226]\n", + " [ 8.81088324 13.51875068]\n", + " [ 3.43488354 13.5205491 ]\n", + " [30.31308361 8.13555731]\n", + " [24.93708392 8.13735572]\n", + " [19.56108422 8.13915414]\n", + " [14.18508451 8.14095256]\n", + " [ 8.80908482 8.14275098]\n", + " [ 3.43308512 8.1445494 ]\n", + " [30.31128519 2.75955761]\n", + " [24.93528549 2.76135602]\n", + " [19.5592858 2.76315444]\n", + " [14.18328609 2.76495286]\n", + " [ 8.8072864 2.76675128]\n", + " [ 3.4312867 2.7685497 ]]\n", + "DEBUG:root:make_az_asym: xyp: shape: (96, 2)\n", + "DEBUG:root:radec2pix: xyfp: [[-32.29046994 -31.71666141]\n", + " [-32.28860507 -27.33023323]\n", + " [-32.2867402 -22.94380505]\n", + " [-32.28487534 -18.55737688]\n", + " [-32.28301047 -14.1709487 ]\n", + " [-32.2811456 -9.78452053]\n", + " [-32.27928073 -5.39809235]\n", + " [-32.27741587 -1.01166418]\n", + " [-32.29046994 -31.71666141]\n", + " [-27.90404176 -31.71852627]\n", + " [-23.51761359 -31.72039114]\n", + " [-19.13118541 -31.722256 ]\n", + " [-14.74475724 -31.72412087]\n", + " [-10.35832906 -31.72598574]\n", + " [ -5.97190089 -31.72785061]\n", + " [ -1.58547272 -31.72971547]\n", + " [-32.27741587 -1.01166418]\n", + " [-27.8909877 -1.01352905]\n", + " [-23.50455952 -1.01539391]\n", + " [-19.11813134 -1.01725878]\n", + " [-14.73170317 -1.01912365]\n", + " [-10.345275 -1.02098851]\n", + " [ -5.95884682 -1.02285338]\n", + " [ -1.57241864 -1.02471825]\n", + " [ -1.58547272 -31.72971547]\n", + " [ -1.58360785 -27.3432873 ]\n", + " [ -1.58174298 -22.95685912]\n", + " [ -1.57987811 -18.57043094]\n", + " [ -1.57801325 -14.18400278]\n", + " [ -1.57614838 -9.7975746 ]\n", + " [ -1.57428351 -5.41114642]\n", + " [ -1.57241864 -1.02471825]\n", + " [-32.27465685 -29.80416795]\n", + " [-32.27237127 -24.42816844]\n", + " [-32.2700857 -19.05216893]\n", + " [-32.26780012 -13.67616941]\n", + " [-32.26551454 -8.3001699 ]\n", + " [-32.26322896 -2.92417038]\n", + " [-30.37796373 -31.70247449]\n", + " [-25.00196422 -31.70476008]\n", + " [-19.62596471 -31.70704565]\n", + " [-14.24996519 -31.70933123]\n", + " [ -8.87396568 -31.71161681]\n", + " [ -3.49796617 -31.71390239]\n", + " [-30.36492242 -1.02747727]\n", + " [-24.98892291 -1.02976285]\n", + " [-19.61292339 -1.03204842]\n", + " [-14.23692388 -1.034334 ]\n", + " [ -8.86092437 -1.03661958]\n", + " [ -3.48492485 -1.03890516]\n", + " [ -1.59965962 -29.81720927]\n", + " [ -1.59737405 -24.44120975]\n", + " [ -DEBUG:root:optics_fp: xyfp: [[-32.208296 -31.60697943]\n", + " [-32.20831882 -27.22055086]\n", + " [-32.20834163 -22.83412229]\n", + " [-32.20836444 -18.44769372]\n", + " [-32.20838725 -14.06126515]\n", + " [-32.20841007 -9.67483658]\n", + " [-32.20843288 -5.288408 ]\n", + " [-32.2084557 -0.90197943]\n", + " [-32.208296 -31.60697943]\n", + " [-27.82186743 -31.60695662]\n", + " [-23.43543886 -31.60693381]\n", + " [-19.04901029 -31.60691099]\n", + " [-14.66258171 -31.60688818]\n", + " [-10.27615314 -31.60686536]\n", + " [ -5.88972457 -31.60684255]\n", + " [ -1.503296 -31.60681974]\n", + " [-32.2084557 -0.90197943]\n", + " [-27.82202712 -0.90195662]\n", + " [-23.43559855 -0.9019338 ]\n", + " [-19.04916999 -0.90191099]\n", + " [-14.66274141 -0.90188818]\n", + " [-10.27631284 -0.90186536]\n", + " [ -5.88988428 -0.90184255]\n", + " [ -1.5034557 -0.90181973]\n", + " [ -1.503296 -31.60681974]\n", + " [ -1.50331881 -27.22039116]\n", + " [ -1.50334163 -22.83396259]\n", + " [ -1.50336444 -18.44753402]\n", + " [ -1.50338726 -14.06110544]\n", + " [ -1.50341007 -9.67467688]\n", + " [ -1.50343288 -5.2882483 ]\n", + " [ -1.5034557 -0.90181973]\n", + " [-32.19330594 -29.69447935]\n", + " [-32.19333391 1.59508847 -19.06521024]\n", + " [ -1.59280289 -13.68921073]\n", + " [ -1.59051731 -8.31321121]\n", + " [ -1.58823174 -2.9372117 ]\n", + " [-32.27546357 -31.70166778]\n", + " [-32.27546357 -31.70166778]\n", + " [ -1.58742502 -1.03971187]\n", + " [ -1.58742502 -1.03971187]\n", + " [-30.37715702 -29.80497466]\n", + " [-25.00115751 -29.80726024]\n", + " [-19.625158 -29.80954582]\n", + " [-14.24915848 -29.8118314 ]\n", + " [ -8.87315897 -29.81411698]\n", + " [ -3.49715945 -29.81640256]\n", + " [-30.37487145 -24.42897515]\n", + " [-24.99887193 -24.43126073]\n", + " [-19.62287241 -24.43354631]\n", + " [-14.2468729 -24.43583188]\n", + " [ -8.87087339 -24.43811746]\n", + " [ -3.49487388 -24.44040305]\n", + " [-30.37258587 -19.05297564]\n", + " [-24.99658635 -19.05526122]\n", + " [-19.62058684 -19.05754679]\n", + " [-14.24458732 -19.05983237]\n", + " [ -8.86858781 -19.06211795]\n", + " [ -3.4925883 -19.06440353]\n", + " [-30.37030029 -13.67697612]\n", + " [-24.99430077 -13.6792617 ]\n", + " [-19.61830126 -13.68154728]\n", + " [-14.24230175 -13.68383286]\n", + " [ -8.86630223 -13.68611844]\n", + " [ -3.49030272 -13.68840401]\n", + " [-30.36801471 -8.30097661]\n", + " [-24.9920152 -8.30326219]\n", + " [-19.61601568 -8.30554776]\n", + " [-14.24001617 -8.30783335]\n", + " [ -8.86401666 -8.31011893]\n", + " [ -3.48801714 -8.3124045 ]\n", + " [-30.36572914 -2.9249771 ]\n", + " [-24.98972962 -2.92726267]\n", + " [-19.6137301 -2.92954825]\n", + " [-14.23773059 -2.93183383]\n", + " [ -8.86173108 -2.93411941]\n", + " [ -3.48573156 -2.93640499]]\n", + "-24.31847935]\n", + " [-32.19336187 -18.94247936]\n", + " [-32.19338983 -13.56647936]\n", + " [-32.19341779 -8.19047935]\n", + " [-32.19344575 -2.81447935]\n", + " [-30.29579608 -31.59196949]\n", + " [-24.91979608 -31.59194152]\n", + " [-19.54379608 -31.59191356]\n", + " [-14.16779608 -31.5918856 ]\n", + " [ -8.79179608 -31.59185764]\n", + " [ -3.41579608 -31.59182968]\n", + " [-30.29595562 -0.91696949]\n", + " [-24.91995562 -0.91694153]\n", + " [-19.54395562 -0.91691356]\n", + " [-14.16795562 -0.9168856 ]\n", + " [ -8.79195562 -0.91685764]\n", + " [ -3.41595563 -0.91682968]\n", + " [ -1.51830595 -29.69431981]\n", + " [ -1.51833391 -24.31831981]\n", + " [ -1.51836187 -18.94231981]\n", + " [ -1.51838983 -13.56631981]\n", + " [ -1.51841779 -8.19031981]\n", + " [ -1.51844575 -2.81431982]\n", + " [-32.19329608 -31.59197936]\n", + " [-32.19329608 -31.59197936]\n", + " [ -1.51845562 -DEBUG:root:radec2pix: camVec: [[ 0.00152888 0.00154215 0.00155354 0.00156302 0.00157054 0.00157606\n", + " 0.00157952 0.00158089 0.00152888 0.03055413 0.0594604 0.08813528\n", + " 0.11646734 0.14434605 0.17166149 0.1983039 0.00158089 0.03159291\n", + " 0.06147904 0.0911219 0.12040769 0.14922671 0.17747265 0.2050409\n", + " 0.1983039 0.20004855 0.20153434 0.2027606 0.20372608 0.20442907\n", + " 0.20486781 0.2050409 0.00163462 0.00165059 0.00166353 0.00167335\n", + " 0.00167995 0.00168324 0.01419184 0.04970047 0.08491857 0.11964057\n", + " 0.15366298 0.18678351 0.01467408 0.05138704 0.08779394 0.12368372\n", + " 0.15885436 0.19311093 0.19900616 0.20096941 0.20254341 0.2037261\n", + " 0.2045144 0.20490517 0.00162826 0.00162826 0.20494776 0.20494776\n", + " 0.01424722 0.04989441 0.08525013 0.12010852 0.15426631 0.18752167\n", + " 0.01438645 0.05038177 0.08608239 0.1212815 0.15577635 0.18936679\n", + " 0.01449922 0.05077617 0.08675481 0.12222707 0.15699061 0.19084708\n", + " 0.0145841 0.05119852 0.08739951 0.12308827 0.15806297 0.19212497\n", + " 0.01475342 0.05140434 0.08774826 0.12357559 0.15868553 0.19288138\n", + " 0.01478357 0.05150885 0.08792506 0.1238221 0.15899976 0.19326249]\n", + " [-0.20886687 -0.18138669 -0.15321267 -0.12445123 -0.0952084 -0.06559229\n", + " -0.03571531 -0.00569466 -0.20886687 -0.20871575 -0.20829328 -0.20760055\n", + " -0.20663909 -0.20541086 -0.20391875 -0.20216791 -0.00569466 -0.00569039\n", + " -0.0056785 -0.00565918 -0.00563263 -0.00559908 -0.00555867 -0.00551146\n", + " -0.20216791 -0.17558603 -0.14832064 -0.12047648 -0.09216227 -0.06348867\n", + " -0.03456748 -0.00551146 -0.19697755 -0.16281769 -0.12772153 -0.09188434\n", + " -0.05550542 -0.01879375 -0.20874173 -0.20837407 -0.20760004 -0.20642226\n", + " -0.2048444 -0.20287264 -0.00579649 -0.00578593 -0.0057639 -0.00573078\n", + " -0.00568698 -0.00563273 -0.19067465 -0.1576223 -0.12364673 -0.08894663\n", + " -0.05372559 -0.0181899 -0.20877415 -0.20877415 -0.0056111 -0.0056111\n", + " -0.19694699 -0.19660038 -0.19587092 -0.1947614DEBUG:root:radec2pix: xyfp: [[ 0.26283402 -31.55708986]\n", + " [ 0.26401791 -27.17066146]\n", + " [ 0.2652018 -22.78423305]\n", + " [ 0.26638569 -18.39780463]\n", + " [ 0.26756957 -14.01137623]\n", + " [ 0.26875346 -9.62494781]\n", + " [ 0.26993735 -5.2385194 ]\n", + " [ 0.27112123 -0.85209099]\n", + " [ 0.26283402 -31.55708986]\n", + " [ 4.64926244 -31.55827376]\n", + " [ 9.03569085 -31.55945764]\n", + " [ 13.42211926 -31.56064153]\n", + " [ 17.80854767 -31.56182542]\n", + " [ 22.19497608 -31.56300931]\n", + " [ 26.5814045 -31.56419319]\n", + " [ 30.96783291 -31.56537708]\n", + " [ 0.27112123 -0.85209099]\n", + " [ 4.65754965 -0.85327487]\n", + " [ 9.04397805 -0.85445876]\n", + " [ 13.43040647 -0.85564265]\n", + " [ 17.81683488 -0.85682653]\n", + " [ 22.20326329 -0.85801042]\n", + " [ 26.5896917 -0.85919431]\n", + " [ 30.97612012 -0.8603782 ]\n", + " [ 30.96783291 -31.56537708]\n", + " [ 30.9690168 -27.17894867]\n", + " [ 30.97020068 -22.79252025]\n", + " [ 30.97138456 -18.40609184]\n", + " [ 30.97256845 -14.01966343]\n", + " [ 30.97375234 -9.63323502]\n", + " [ 30.97493622 -5.24680661]\n", + " [ 30.97612012 -0.8603782 ]\n", + " [ 0.2783502 -29.64459399]\n", + " [ 0.27980117 DEBUG:root:radec2pix: ccdpx: [[-4.44999999e+01 -4.99999873e-01]\n", + " [-4.44999998e+01 2.91928572e+02]\n", + " [-4.44999998e+01 5.84357143e+02]\n", + " [-4.45000002e+01 8.76785714e+02]\n", + " [-4.45000003e+01 1.16921429e+03]\n", + " [-4.45000002e+01 1.46164286e+03]\n", + " [-4.45000002e+01 1.75407143e+03]\n", + " [-4.45000000e+01 2.04650000e+03]\n", + " [-4.44999999e+01 -4.99999873e-01]\n", + " [ 2.47928571e+02 -5.00000280e-01]\n", + " [ 5.40357143e+02 -5.00000000e-01]\n", + " [ 8.32785714e+02 -4.99999974e-01]\n", + " [ 1.12521429e+03 -4.99999987e-01]\n", + " [ 1.41764286e+03 -4.99999863e-01]\n", + " [ 1.71007143e+03 -5.00000138e-01]\n", + " [ 2.00250000e+03 -4.99999700e-01]\n", + " [-4.45000000e+01 2.04650000e+03]\n", + " [ 2.47928571e+02 2.04650000e+03]\n", + " [ 5.40357143e+02 2.04650000e+03]\n", + " [ 8.32785714e+02 2.04650000e+03]\n", + " [ 1.12521429e+03 2.04650000e+03]\n", + " [ 1.41764286e+03 2.04650000e+03]\n", + " [ 1.71007143e+03 2.04650000e+03]\n", + " [ 2.00250000e+03 2.04650000e+03]\n", + " [ 2.00250000e+03 -4.99999700e-01]\n", + " [ 2.00250000e+03 2.91928571e+02]\n", + " [ 2.00250000e+03 5.84357143e+02]\n", + " [ 2.00250000e+03 8.767857.2000001 4028.00000015]\n", + " [3068.80000011 4028.00000023]\n", + " [2710.39999995 4027.99999982]\n", + " [2351.99999998 4027.99999985]\n", + " [4144.00000018 3669.60000014]\n", + " [3785.5999999 3669.59999991]\n", + " [3427.19999994 3669.59999993]\n", + " [3068.79999994 3669.5999999 ]\n", + " [2710.39999997 3669.59999991]\n", + " [2351.99999997 3669.5999998 ]\n", + " [4143.99999973 3311.19999984]\n", + " [3785.60000019 3311.20000014]\n", + " [3427.1999998 3311.19999981]\n", + " [3068.79999976 3311.19999969]\n", + " [2710.39999985 3311.19999967]\n", + " [2352.00000003 3311.20000016]\n", + " [4144.00000026 2952.80000011]\n", + " [3785.6000001 2952.80000005]\n", + " [3427.20000009 2952.80000006]\n", + " [3068.8000003 2952.80000028]\n", + " [2710.39999986 2952.79999979]\n", + " [2352.00000001 2952.80000004]\n", + " [4143.99999994 2594.39999998]\n", + " [3785.6 2594.4 ]\n", + " [3427.19999999 2594.39999999]\n", + " [3068.79999999 2594.39999999]\n", + " [2710.40000015 2594.40000014]\n", + " [2351.99999993 2594.39999983]\n", + " [4143.99999995 2236. ]\n", + " [3785.59999975 2235.99999997]\n", + " [3427.19999971 2235.99999996]\n", + " [3068.80000003 2236.00000001]\n", + " [2710.39999999 2236. ]\n", + " [2352.00000022 2236.00000016]]\n", + "-24.26859418]\n", + " [ 0.28125214 -18.89259438]\n", + " [ 0.28270311 -13.51659457]\n", + " [ 0.28415408 -8.14059477]\n", + " [ 0.28560505 -2.76459497]\n", + " [ 2.175338 -31.54260605]\n", + " [ 7.55133781 -31.54405702]\n", + " [ 12.92733761 -31.54550799]\n", + " [ 18.30333742 -31.54695896]\n", + " [ 23.67933722 -31.54840993]\n", + " [ 29.05533702 -31.5498609 ]\n", + " [ 2.18361712 -0.86760716]\n", + " [ 7.55961692 -0.86905814]\n", + " [ 12.93561673 -0.87050911]\n", + " [ 18.31161653 -0.87196007]\n", + " [ 23.68761633 -0.87341105]\n", + " [ 29.06361614 -0.87486202]\n", + " [ 30.95334909 -29.6528731 ]\n", + " [ 30.95480005 -24.27687329]\n", + " [ 30.95625103 -18.90087349]\n", + " [ 30.95770199 -13.52487368]\n", + " [ 30.95915297 -8.14887388]\n", + " [ 30.96060394 -2.77287408]\n", + " [ 0.27783807 -31.54209392]\n", + " [ 0.27783807 -31.54209392]\n", + " [ 30.96111607 -0.87537415]\n", + " [ 30.96111607 -0.87537415]\n", + " [ 2.17585013 -29.64510611]\n", + " [ 7.55184994 -29.64655709]\n", + " [ 12.92784974 -29.64800806]\n", + " [ 18.30384955 -29.64945903]\n", + " [ 23.67984935 -29.65091 ]\n", + " [ 29.05584916 -29.65236097]\n", + " [ 2.1773011 -24.26910631]\n", + " [ 7.55330091 -24.27055728]\n", + " [ 12.92930071 -24.27200825]\n", + " [ 18.30530052 -24.27345922]\n", + " [ 23.68130032 -24.27491019]\n", + " [ 29.05730013 -24.27636116]\n", + " [ 2.17875207 -18.89310651]\n", + " [ 7.55475188 -18.89455748]\n", + " [ 12.93075168 -18.89600845]\n", + " [ 18.30675149 -18.89745942]\n", + " [ 23.68275129 -18.89891039]\n", + " [ 29.0587511 -18.90036136]\n", + " [ 2.18020304 -13.51710671]\n", + " [ 7.55620285 -13.51855767]\n", + " [ 12.93220265 -13.52000864]\n", + " [ 18.30820245 -13.52145961]\n", + " [ 23.68420226 -13.52291058]\n", + " [ 29.06020207 -13.52436156]\n", + " [ 2.18165401 -8.1411069 ]\n", + " [ 7.55765382 -8.14255787]\n", + " [ 12.93365363 -8.14400884]\n", + " [ 18.30965343 -8.14545981]\n", + " [ 23.68565323 -8.14691078]\n", + " [ 29.06165303 -8.14836175]\n", + " [ 2.18310498 -2.76510709]\n", + " [ 7.55910479 -2.76655806]\n", + " [ 12.93510459 -2.76800904]\n", + " [ 18.31110439 -2.76946001]\n", + " [ 23.68710421 -2.77091098]\n", + " [ 29.063104 -2.77236195]]\n", + "800000e+02 1.27000000e+02]\n", + " [ 1.15820000e+03 1.27000000e+02]\n", + " [ 1.51660000e+03 1.27000000e+02]\n", + " [ 1.87500000e+03 1.27000000e+02]\n", + " [ 8.30000000e+01 4.85400000e+02]\n", + " [ 4.41400000e+02 4.85400000e+02]\n", + " [ 7.99800000e+02 4.85400000e+02]\n", + " [ 1.15820000e+03 4.85400000e+02]\n", + " [ 1.51660000e+03 4.85400000e+02]\n", + " [ 1.87500000e+03 4.85400000e+02]\n", + " [ 8.30000000e+01 8.43800000e+02]\n", + " [ 4.41400000e+02 8.43800000e+02]\n", + " [ 7.99800000e+02 8.43800000e+02]\n", + " [ 1.15820000e+03 8.43800000e+02]\n", + " [ 1.51660000e+03 8.43800000e+02]\n", + " [ 1.87500000e+03 8.43800000e+02]\n", + " [ 8.30000000e+01 1.20220000e+03]\n", + " [ 4.41400000e+02 1.20220000e+03]\n", + " [ 7.99800000e+02 1.20220000e+03]\n", + " [ 1.15820000e+03 1.20220000e+03]\n", + " [ 1.51660000e+03 1.20220000e+03]\n", + " [ 1.87500000e+03 1.20220000e+03]\n", + " [ 8.30000001e+01 1.56060000e+03]\n", + " [ 4.41400000e+02 1.56060000e+03]\n", + " [ 7.99800000e+02 1.56060000e+03]\n", + " [ 1.15820000e+03 1.56060000e+03]\n", + " [ 1.51660000e+03 1.56060000e+03]\n", + " [ 1.87500000e+03 1.56060000e+03]\n", + " [ 8.29999999e+01 1.91900000e+03]\n", + " [ 4.41400000e+02 1.91900000e+03]\n", + " [ 7.99800000e+02 1.91900000e+03]\n", + " [ 1.15820000e+03 1.91900000e+03]\n", + " [ 1.51660000e+03 1.919DEBUG:root:radec2pix: xyfp Shape: (96, 2)\n", + "5 -0.19327535 -0.19141752\n", + " -0.16279237 -0.16250539 -0.1619024 -0.1609872 -0.15976346 -0.15823425\n", + " -0.12770151 -0.1274748 -0.12699943 -0.12628004 -0.12532102 -0.12412508\n", + " -0.09186978 -0.09170505 -0.09136033 -0.09084026 -0.09014925 -0.08928993\n", + " -0.05549654 -0.05539609 -0.05518622 -0.05487037 -0.05445187 -0.05393273\n", + " -0.01879073 -0.01875652 -0.01868512 -0.01857781 -0.01843585 -0.01826001]\n", + " [ 0.97794273 0.98341048 0.98819185 0.99222433 0.99545595 0.99784509\n", + " 0.99936059 0.99998236 0.97794273 0.97749565 0.9762507 0.9742251\n", + " 0.97144709 0.96795574 0.96380057 0.95904056 0.99998236 0.99948072\n", + " 0.99808363 0.99580962 0.99268842 0.98876027 0.98407575 0.97869595\n", + " 0.95904056 0.96389901 0.96815807 0.97175737 0.97464592 0.97678318\n", + " 0.97813943 0.97869595 0.98040646 0.98665461 0.99180849 0.9957681\n", + " 0.99845679 0.99982178 0.97786633 0.97678012 0.97451125 0.97110713\n", + " 0.96663966 0.961204 0.99987386 0.99865515 0.99610859 0.99228429\n", + " 0.98725633 0.98112215 0.96124585 0.96680599 0.97140476 0.97494433\n", + " 0.97735008 0.97857186 0.97796235 0.97796235 0.97871492 0.97871492\n", + " 0.9803091 0.97920779 0.97690711 0.97345458 0.96892234 0.96340632\n", + " 0.98655391 0.98541472 0.9830343 0.97946045 0.97476571 0.96904706\n", + " 0.99170508 0.99053516 0.98809029 0.9844187 0.97959323 0.97371115\n", + " 0.99566261 0.99446915 0.99197511 0.98822939 0.98330525 0.97730001\n", + " 0.99834987 0.99714035 0.99461285 0.99081699 0.9858265 0.97973876\n", + " 0.99971414 0.99849639 0.99595183 0.99213051 0.98710648 0.98097716]]\n", + "0.91681981]\n", + " [ -1.51845562 -0.91681981]\n", + " [-30.29580595 -29.69446949]\n", + " [-24.91980594 -29.69444152]\n", + " [-19.54380595 -29.69441356]\n", + " [-14.16780595 -29.69438561]\n", + " [ -8.79180595 -29.69435764]\n", + " [ -3.41580595 -29.69432968]\n", + " [-30.29583391 -24.31846949]\n", + " [-24.91983391 -24.31844152]\n", + " [-19.54383391 -24.31841356]\n", + " [-14.16783391 -24.31838561]\n", + " [ -8.79183391 -24.31835764]\n", + " [ -3.41583391 -24.31832968]\n", + " [-30.29586187 -18.94246949]\n", + " [-24.91986187 -18.94244153]\n", + " [-19.54386187 -18.94241356]\n", + " [-14.16786187 -18.94238561]\n", + " [ -8.79186187 -18.94235764]\n", + " [ -3.41586187 -18.94232969]\n", + " [-30.29588983 -13.56646949]\n", + " [-24.91988983 -13.56644152]\n", + " [-19.54388984 -13.56641357]\n", + " [-14.16788983 -13.5663856 ]\n", + " [ -8.79188983 -13.56635764]\n", + " [ -3.41588983 -13.56632968]\n", + " [-30.29591779 -8.19046949]\n", + " [-24.91991779 -8.19044152]\n", + " [-19.54391779 -8.19041356]\n", + " [-14.16791779 -8.1903856 ]\n", + " [ -8.79191779 -8.19035764]\n", + " [ -3.41591779 -8.19032968]\n", + " [-30.29594575 -2.81446949]\n", + " [-24.91994576 -2.81444153]\n", + " [-19.54394575 -2.81441356]\n", + " [-14.16794576 -2.8143856 ]\n", + " [ -8.79194575 -2.81435764]\n", + " [ -3.41594575 -2.81432968]]\n", + "479 0.05107523 0.08726392 0.1229415 0.15790584 0.1919602\n", + " 0.01464229 0.05127607 0.08760541 0.12341989 0.15851749 0.19270261\n", + " 0.01467095 0.05137612 0.08777538 0.12365776 0.15882123 0.1930708 ]\n", + " [-0.20769103 -0.1801941 -0.15200928 -0.12324112 -0.09399571 -0.06438234\n", + " -0.03451442 -0.00450904 -0.20769103 -0.20754198 -0.20712371 -0.20643751\n", + " -0.2054851 -0.20426815 -0.20278791 -0.2010451 -0.00450904 -0.00450572\n", + " -0.00449643 -0.00448126 -0.00446035 -0.00443385 -0.00440189 -0.00436457\n", + " -0.2010451 -0.17444879 -0.14716869 -0.11931453 -0.09099614 -0.06232394\n", + " -0.03340929 -0.00436457 -0.1957935 -0.16161745 -0.12651199 -0.09067166\n", + " -0.05429781 -0.01760077 -0.20756647 -0.20720276 -0.20643606 -0.20526936\n", + " -0.20370571 -0.20174719 -0.00461102 -0.00460274 -0.00458538 -0.00455917\n", + " -0.0045244 -0.0044813 -0.18954613 -0.15647489 -0.12248558 -0.08778034\n", + " -0.05256249 -0.01703747 -0.20759824 -0.20759824 -0.00446412 -0.00446412\n", + " -0.19576354 -0.19542056 -0.19469787 -0.19359884 -0.19212697 -0.19028463\n", + " -0.16159264 -0.16130879 -0.16071144 -0.15980479 -0.15859338 -0.15708053\n", + " -0.12649245 -0.12626898 -0.12579928 -0.12508774 -0.12413931 -0.12295784\n", + " -0.09065756 -0.09049631 -0.09015775 -0.08964573 -0.08896468 -0.0881182\n", + " -0.05428931 -0.05419219 -0.05398843 -0.053DEBUG:root:fitpix2pix: ccdpx: shape: (96, 2)\n", + "68064 -0.05327188 -0.0527647\n", + " -0.01759801 -0.01756642 -0.01750018 -0.01740019 -0.0172675 -0.01710301]\n", + " [ 0.97819328 0.98362986 0.98837785 0.99237552 0.99557136 0.99792406\n", + " 0.99940295 0.99998858 0.97819328 0.97774883 0.97650613 0.97448229\n", + " 0.97170532 0.9682142 0.96405881 0.95929997 0.99998858 0.99949066\n", + " 0.99809825 0.99582966 0.99271451 0.98879307 0.98411589 0.97874367\n", + " 0.95929997 0.9641308 0.96836217 0.97193219 0.97478992 0.97689533\n", + " 0.9782193 0.97874367 0.98064379 0.9868521 0.99196368 0.99587944\n", + " 0.99852337 0.99984368 0.97811796 0.97703474 0.97476817 0.97136534\n", + " 0.96689796 0.96146242 0.9998817 0.99866821 0.9961281 0.99231122\n", + " 0.98729166 0.9811667 0.96149301 0.9670196 0.97158296 0.97508476\n", + " 0.9774513 0.97863353 0.97821282 0.97821282 0.97876273 0.97876273\n", + " 0.98054763 0.97944952 0.97715155 0.97370089 0.9691693 0.96365314\n", + " 0.98675268 0.98561714 0.98324039DEBUG:root:radec2pix: camVec Shape: (3, 96)\n", + "DEBUG:root:radec2pix: curVec: [[ 0.83274 -0.51016046 -0.21512879]\n", + " [ 0.84792755 -0.488666 -0.20548577]\n", + " [ 0.86273032 -0.46634987 -0.1954845 ]\n", + " [ 0.87705121 -0.44328118 -0.18515663]\n", + " [ 0.89080307 -0.41953233 -0.17453512]\n", + " [ 0.90390757 -0.3951811 -0.16365513]\n", + " [ 0.91629453 -0.37031247 -0.15255493]\n", + " [ 0.92790233 -0.34501931 -0.14127613]\n", + " [ 0.83274 -0.51016046 -0.21512879]\n", + " [ 0.83273002 -0.49819308 -0.24158717]\n", + " [ 0.83207577 -0.48577082 -0.26772491]\n", + " [ 0.83079138 -0.47294581 -0.29344157]\n", + " [ 0.82890106 -0.459774 -0.31863914]\n", + " [ 0.82643898 -0.44631495 -0.34322234]\n", + " [ 0.82344871 -0.4326318 -0.36709937]\n", + " [ 0.8199819 -0.41879128 -0.390184 ]\n", + " [ 0.92790233 -0.34501931 -0.14127613]\n", + " [ 0.92780261 -0.33275382 -0.16869263]\n", + " [ 0.92687117 -0.32022757 -0.19586767]\n", + " [ 0.92512361 -0.30749441 -0.22269596]\n", + " [ 0.92258601 -0.29461017 -0.24907812]\n", + " [ 0.91929429 -0.28163244 -0.27492032]\n", + " [ 0.91529401 -0.2686213 -0.30013243]\n", + " [ 0.91064055 -0.25564037 -0.DEBUG:root:radec2pix: curVec: [[-0.23187361 0.17343145 0.95716047]\n", + " [-0.24070396 0.19903003 0.94997298]\n", + " [-0.24951555 0.2249755 0.94187473]\n", + " [-0.25826275 0.25115596 0.93285639]\n", + " [-0.26690244 0.27746168 0.92291826]\n", + " [-0.27539359 0.30378354 0.91207123]\n", + " [-0.28369718 0.33001265 0.90033747]\n", + " [-0.29177647 0.35604088 0.88775074]\n", + " [-0.23187361 0.17343145 0.95716047]\n", + " [-0.20511686 0.18390049 0.9613052 ]\n", + " [-0.17830453 0.19427232 0.96460653]\n", + " [-0.15154468 0.20451118 0.96706225]\n", + " [-0.12494758 0.21458526 0.96868017]\n", + " [-0.09862598 0.22446717 0.9694779 ]\n", + " [-0.07269581 0.23413418 0.9694826 ]\n", + " [-0.04727712 0.24356838 0.96873078]\n", + " [-0.29177647 0.35604088 0.88775074]\n", + " [-0.26405064 0.36672949 0.8920688 ]\n", + " [-0.2361777 0.37705668 0.89557152]\n", + " [-0.20827125 0.38698629 0.89825648]\n", + " [-0.18044485 0.39648753 0.90013182]\n", + " [-0.15281135 0.40553497 0.90121589]\n", + " [-0.12548318 0.41410822 0.90153666]\n", + " [-0.09857392 0.42219128 0.90113135]\n", + " [-0.04727712 0.24356838 0.96873 0.97966996 0.97497788 0.9692605\n", + " 0.9918616 0.99069568 0.9882551 0.98458804 0.979767 0.97388848\n", + " 0.99577532 0.99458621 0.99209707 0.98835673 0.98343837 0.97743873\n", + " 0.99841789 0.9972131 0.99469118 0.99090157 0.985918 0.97983753\n", + " 0.9997375 0.99852487 0.99598656 0.99217236 0.98715635 0.98103576]]\n", + "DEBUG:root:fitpix2pix: visCut: True\n", + "32462562]\n", + " [ 0.8199819 -0.41879128 -0.390184 ]\n", + " [ 0.83429821 -0.39715122 -0.38238385]\n", + " [ 0.84830365 -0.37482905 -0.37401082]\n", + " [ 0.86190356 -0.35189537 -0.36509164]\n", + " [ 0.87501062 -0.32842639 -0.35565788]\n", + " [ 0.88754656 -0.30450312 -0.34574405]\n", + " [ 0.89944278 -0.28021114 -0.33538695]\n", + " [ 0.91064055 -0.25564037 -0.32462562]\n", + " [ 0.83940356 -0.5008539 -0.2110617 ]\n", + " [ 0.85777149 -0.4739487 -0.19899923]\n", + " [ 0.87546384 -0.44587776 -0.18642982]\n", + " [ 0.8923161 -0.41677297 -0.17341357]\n", + " [ 0.90818396 -0.3867777 -0.16001532]\n", + " [ 0.92294174 -0.35605173 -0.14630691]\n", + " [ 0.83286782 -0.50492956 -0.22666568]\n", + " [ 0.83242092 -0.48994971 -0.25889126]\n", + " [ 0.83101906 -0.47433809 -0.29053518]\n", + " [ 0.82870262 -0.45819615 -0.32141601]\n", + " [ 0.82553444 -0.44163351 -0.35135842]\n", + " [ 0.8215982 -0.4247679 -0.38019552]\n", + " [ 0.92792337 -0.33979401 -0.15329137]\n", + " [ 0.9272405 -0.32457927 -0.18674408]\n", + " [ 0.92532276 -0.30902595 -0.21972882]\n", + " [ 0.92221382 -0.29323603 -0.25206011]\n", + " [ 0.9179798 -0.27731566 -0.283565 ]\n", + " [ 0.91270863 -0.26137685 -0.31407817]\n", + " [ 0.82626877 -0.40949168 -0.38677703]\n", + " [ 0.843619 -0.38250206 -0.37682775]\n", + " [ 0.86040746 -0.3545572 -0.36604398]\n", + " [ 0.87647021 -0.32579516 -0.35448199]\n", + " [ 0.89166323 -0.29636506 -0.34220525]\n", + " [ 0.9058643 -0.26642625 -0.32928244]\n", + " [ 0.83279355 -0.51004833 -0.21518737]\n", + " [ 0.83279355 -0.51004833 -0.21518737]\n", + " [ 0.91062046 -0.25576903 -0.32458063]\n", + " [ 0.91062046 -0.25576903 -0.32458063]\n", + " [ 0.83947661 -0.49571633 -0.22258558]\n", + " [ 0.83900992 -0.48069291 -0.25494446]\n", + " [ 0.8375641 -0.46505235 -0.28672756]\n", + " [ 0.83517956 -0.44889639 -0.31775326]\n", + " [ 0.83191945 -0.43233469 -0.34784585]\n", + " [ 0.82786856 -0.41548466 -0.37683702]\n", + " [ 0.85784127 -0.46876437 -0.21063787]\n", + " [ 0.85732248 -0.45363723 -0.243334 ]\n", + " [ 0.85576113 -0.43793661 -0.27547127]\n", + " [ 0.85319752 -0.42176546 -0.30686786]\n", + " [ 0.84969505 -0.40523377 -0.33734836]\n", + " [ 0.8453401 -0.3884583 -0.36674278]\n", + " [ 0.8755306 -0.44065635 -0.19816191]\n", + " [ 0.87496524 -0.42545526 -0.23113556]\n", + " [ 0.87330124 -0.40972794 -0.26356773]\n", + " [ 0.87057901 -0.39357851 -0.29527638]\n", + " [ 0.86686196 -0.37711722 -0.32608731]\n", + " [ 0.86223687 -0.36046028 -0.35583137]\n", + " [ 0.89238006 -0.41152443 -0.18521737]\n", + " [ 0.8917733 -0.39628056 -0.2184081 ]\n", + " [ 0.89001884 -0.38056178 -0.25107607]\n", + " [ 0.88715773 -0.36447271 -0.28303853]\n", + " [ 0.88325377 -0.34812332 -0.31412247]\n", + " [ 0.87839387 -0.33162894 -0.34416051]\n", + " [ 0.90824533 -0.38151237 -0.17186835]\n", + " [ 0.90760235 -0.36625834 -0.20521404]\n", + " [ 0.90576961 -0.35058489 -0.23805809]\n", + " [ 0.90278921 -0.33459619 -0.27021663]\n", + " [ 0.89872585 -0.31840104 -0.30151721]\n", + " [ 0.89366671 -0.30211346 -0.33179401]\n", + " [ 0.92300076 -0.35078033 -0.15818583]\n", + " [ 0.92DEBUG:root:radec2pix: xyfp Shape: (96, 2)\n", + "078]\n", + " [-0.05409037 0.26880552 0.96167449]\n", + " [-0.06114823 0.29432629 0.95374679]\n", + " [-0.06840275 0.32001272 0.9449407 ]\n", + " [-0.07581054 0.34575111 0.93525875]\n", + " [-0.0833321 0.37143122 0.92471326]\n", + " [-0.09093113 0.39694593 0.91332659]\n", + " [-0.09857392 0.42219128 0.90113135]\n", + " [-0.23563128 0.18457861 0.95415336]\n", + " [-0.24644617 0.2162002 0.9447337 ]\n", + " [-0.25718738 0.24823123 0.93393571]\n", + " [-0.26777457 0.28046888 0.92175593]\n", + " [-0.27813217 0.31271227 0.90821448]\n", + " [-0.28818928 0.34476114 0.89335698]\n", + " [-0.22025102 0.17809246 0.95904774]\n", + " [-0.187406 0.19086287 0.96356129]\n", + " [-0.15458456 0.20345113 0.96680466]\n", + " [-0.12198881 0.21579702 0.9687881 ]\n", + " [-0.08982638 0.2278501 0.96954399]\n", + " [-0.05831236 0.23957058 0.96912621]\n", + " [-0.27968604 0.36065453 0.88977752]\n", + " [-0.24559216 0.3735164 0.89452221]\n", + " [-0.21139018 0.38579909 0.89803856]\n", + " [-0.17728928 0.39744363 0.9003372 ]\n", + " [-0.14349718 0.40840319 0.90145182]\n", + " [-0.11022127 0.DEBUG:root:optics_fp: xyfp shape: (96, 2)\n", + "232721 -0.33554947 -0.19162223]\n", + " [ 0.92042917 -0.31995842 -0.22458128]\n", + " [ 0.91734996 -0.30410987 -0.25687787]\n", + " [ 0.91315532 -0.28811071 -0.28833934]\n", + " [ 0.90793299 -0.27207347 -0.31880043]]\n", + "DEBUG:root:radec2pix: camVec Shape: (3, 96)\n", + "41864208 0.90143778]\n", + " [-0.05030083 0.25449769 0.96576434]\n", + " [-0.05882335 0.28563506 0.95653146]\n", + " [-0.06766493 0.31708077 0.94598163]\n", + " [-0.07674382 0.34862375 0.93411555]\n", + " [-0.0859872 0.38006104 0.92095592]\n", + " [-0.09532936 0.41119672 0.90654816]\n", + " [-0.2318125 0.17355419 0.95715302]\n", + " [-0.2318125 0.17355419 0.95715302]\n", + " [-0.09863892 0.42207873 0.90117696]\n", + " [-0.09863892 0.42207873 0.90117696]\n", + " [-0.22402369 0.1891328 0.95605553]\n", + " [-0.1910409 0.20193074 0.96058698]\n", + " [-0.1580716 0.2145202 0.96384358]\n", + " [-0.12531802 0.2268405 0.96583579]\n", + " [-0.09298733 0.23884079 0.96659631]\n", + " [-0.06129366 0.25048098 0.96617926]\n", + " [-0.23472235 0.22079396 0.94665487]\n", + " [-0.20139128 0.2336552 0.95123436]\n", + " [-0.16804715 0.2462349 0.95453053]\n", + " [-0.13489303 0.25847137 0.95655445]\n", + " [-0.10213514 0.27031298 0.9573397 ]\n", + " [-0.06998495 0.28171906 0.95694121]\n", + " [-0.24536901 0.2528562 0.93587274]\n", + " [-0.21175238 0.26575804 0.94049646]\n", + " [-0.17809852 0.27830702 0.94383585]\n", + " [-0.14461192 0.29044105 0.94590242]\n", + " [-0.1114985 0.30210845 0.94673046]\n", + " [-0.07896757 0.31326865 0.94637565]\n", + " [-0.2558839 0.28511643 0.92370561]\n", + " [-0.22204596 0.2980351 0.9283699 ]\n", + " [-0.18814831 0.31053105 0.93175677]\n", + " [-0.15439712 0.32254246 0.93387788]\n", + " [-0.12099858 0.33401842 0.93476791]\n", + " [-0.08816058 0.34491927 0.93448297]\n", + " [-0.26619224 0.31737345 0.91017349]\n", + " [-0.23219927 0.33028454 0.91487465]\n", + " [-0.19812534 0.34270473 0.91831357]\n", + " [-0.16417818 0.35457313 0.92050172]\n", + " [-0.13056461 0.36584029 0.92147369]\n", + " [-0.09749185 0.37646807 0.92128559]\n", + " [-0.27622377 0.34942683 0.89532191]\n", + " [-0.24214399 0.36230582 0.90005599]\n", + " [-0.207963 0.37462811 0.90355142]\n", + " [-0.17388971 0.38633419 DEBUG:root:mm_to_pix: fitpx: [[0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]]\n", + "00000e+03]\n", + " [ 1.87500000e+03 1.91900000e+03]]\n", + "714e+02]\n", + " [ 2.00250000e+03 1.16921429e+03]\n", + " [ 2.00250000e+DEBUG:root:cartToSphere: vec: [[ 0.00162968 -0.20886687 0.97794273]\n", + " [ 0.00164392 -0.18138669 0.98341048]\n", + " [ 0.00165615 -0.15321267 0.98819185]\n", + " [ 0.00166636 -0.12445123 0.99222433]\n", + " [ 0.0016745 -0.0952084 0.99545595]\n", + " [ 0.00168051 -0.06559229 0.99784509]\n", + " [ 0.00168433 -0.03571531 0.99936059]\n", + " [ 0.00168589 -0.00569466 0.99998236]\n", + " [ 0.00162968 -0.20886687 0.97794273]\n", + " [ 0.03065921 -0.20871575 0.97749565]\n", + " [ 0.0595691 -0.20829328 0.9762507 ]\n", + " [ 0.08824658 -0.20760055 0.9742251 ]\n", + " [ 0.11657974 -0.20663909 0.97144709]\n", + " [ 0.14445783 -0.20541086 0.96795574]\n", + " [ 0.17177197 -0.20391875 0.96380057]\n", + " [ 0.1984171 -0.20216791 0.95904056]\n", + " [ 0.00168589 -0.00569466 0.99998236]\n", + " [ 0.03171597 -0.00569039 0.99948072]\n", + " [ 0.06161834 -0.0056785 0.99808363]\n", + " [ 0.09127522 -0.00565918 0.99580962]\n", + " [ 0.12057355 -0.00563263 0.99268842]\n", + " [ 0.14940474 -0.00559908 0.98876027]\n", + " [ 0.17766265 -0.00555867 0.98407575]\n", + " [ 0.205241 -0.00551146 0.97869595]\n", + " [ 0.1984171 -0.20216791 0.95904056]\n", + " [ 0.20017053 -0.17558603 0.96389901]\n", + " [ 0.20167036 -0.14832064 0.96815807]\n", + " [ 0.20291139 -0.12047648 0.97175737]\n", + " [ 0.20389075 -0.09216227 0.97464592]\n", + " [ 0.20460646 -0.06348867 0.97678318]\n", + " [ 0.20505694 -0.03456748 0.97813943]\n", + " [ 0.205241 -0.00551146 0.97869595]\n", + " [ 0.00173588 -0.19697755 0.98040646]\n", + " [ 0.00175296 -0.16281769 0.98665461]\n", + " [ 0.00176683 -0.12772153 0.99180849]\n", + " [ 0.00177741 -0.09188434 0.9957681 ]\n", + " [ 0.00178459 -0.05550542 0.99845679]\n", + " [ 0.00178824 -0.01879375 0.99982178]\n", + " [ 0.01429458 -0.20874173 0.97786633]\n", + " [ 0.04980805 -0.20837407 0.97678012]\n", + " [ 0.08502967 -0.20760004 0.97451125]\n", + " [ 0.11975303 -0.20642226 0.97110713]\n", + " [ 0.15377432 -0.2048444 0.96663966]\n", + " [ 0.1868945 -0.20287264 0.961204 ]\n", + " [ 0.0147871 -0.00579649 0.99987386]\n", + " [ 0.05152109 -0.00578593 0.99865515]\n", + " [ 0.08794575 -0.0057639 0.99610859]\n", + " [ 0.12385093 -0.00573078 0.99228429]\n", + " [ 0.15903647 -0.00568698 0.98725633]\n", + " [ 0.19330699 -0.00563273 0.98112215]\n", + " [ 0.19912208 -0.19067465 0.96124585]\n", + " [ 0.20110045 -0.1576223 0.96680599]\n", + " [ 0.20269257 -0.12364673 0.97140476]\n", + " [ 0.20389226 -0.08894663 0.97494433]\n", + " [ 0.20469584 -0.05372559 0.97735008]\n", + " [ 0.20510055 -0.0181899 0.97857186]\n", + " [ 0.00172908 -0.20877415 0.97796235]\n", + " [ 0.00172908 -0.20877415 0.97796235]\n", + " [ 0.20514779 -0.0056111 0.97871492]\n", + " [ 0.20514779 -0.0056111 0.97871492]\n", + " [ 0.01435076 -0.19694699 0.9803091 ]\n", + " [ 0.05000388 -0.19660038 0.97920779]\n", + " [ 0.08536435 -0.19587092 0.97690711]\n", + " [ 0.12022547 -0.19476145 0.97345458]\n", + " [ 0.15438306 -0.19327535 0.96892234]\n", + " [ 0.18763689 -0.19141752 0.96340632]\n", + " [ 0.01449201 -0.16279237 0.98655391]\n", + " [ 0.05049589 -0.16250539 0.98541472]\n", + " [ 0.08620426 -0.1619024 0.9830343 ]\n", + " [ 0.1214098 -0.1609872 0.97946045]\n", + " [ 0.15590842 -0.15976346 0.97476571]\n", + " [ 0.18949858 -0.15823425 0.96904706]\n", + " [ 0.01460664 -0.12770151 0.99170508]\n", + " [ 0.05089468 -0.1274748 0.99053516]\n", + " [ 0.08688344 -0.12699943 0.98809029]\n", + " [ 0.12236492 -0.12628004 0.9844187 ]\n", + " [ 0.1 0.90581911]\n", + " [-0.14013163 0.39737652 0.90689306]\n", + " [-0.106896 0.40771876 0.9068289 ]]\n", + "5713605 -0.12532102 0.97959323]\n", + " [ 0.19099623 -0.12412508 0.97371115]\n", + " [ 0.0146941 -0.09186978 0.99566261]\n", + " [ 0.05119852 -0.09170505 0.99446915]\n", + " [ 0.08739951 -0.09136033 0.99197511]\n", + " [ 0.12308827 -0.09084026 0.98822939]\n", + " [ 0.15806297 -0.09014925 0.98330525]\n", + " [ 0.19212497 -0.08928993 0.97730001]\n", + " [ 0.01475342 -0.05549654 0.99834987]\n", + " [ 0.05140434 -0.05539609 0.99714035]\n", + " [ 0.08774826 -0.05518622 0.99461285]\n", + " [ 0.12357559 -0.05487037 0.99081699]\n", + " [ 0.15868553 -0.05445187 0.9858265 ]\n", + " [ 0.19288138 -0.05393273 0.97973876]\n", + " [ 0.01478357 -0.01879073 0.99971414]\n", + " [ 0.05150885 -0.01875652 0.99849639]\n", + " [ 0.08792506 -0.01868512 0.99595183]\n", + " [ 0.1238221 -0.01857781 0.99213051]\n", + " [ 0.15899976 -0.01843585 0.98710648]\n", + " [ 0.19326249 -0.01826001 0.98097716]]\n", + "DEBUG:root:mm_to_pix: fitpx.shape: (96, 2)\n", + "03 1.46164286e+03]\n", + " [ 2.00250000e+03 1.75407143e+03]\n", + " [ 2.00250000e+03 2.04650000e+03]\n", + "DEBUG:root:make_az_asym: xyp: [[-32.208296 -31.60697943]\n", + " [-32.20831882 -27.22055086]\n", + " [-32.20834163 -22.83412229]\n", + " [-32.20836444 -18.44769372]\n", + " [-32.20838725 -14.06126515]\n", + " [-32.20841007 -9.67483658]\n", + " [-32.20843288 -5.288408 ]\n", + " [-32.2084557 -0.90197943]\n", + " [-32.208296 -31.60697943]\n", + " [-27.82186743 -31.60695662]\n", + " [-23.43543886 -31.60693381]\n", + " [-19.04901029 -31.60691099]\n", + " [-14.66258171 -31.60688818]\n", + " [-10.27615314 -31.60686536]\n", + " [ -5.88972457 -31.60684255]\n", + " [ -1.503296 -31.60681974]\n", + " [-32.2084557 -0.90197943]\n", + " [-27.82202712 -0.90195662]\n", + " [-23.43559855 -0.9019338 ]\n", + " [-19.04916999 -0.90191099]\n", + " [-14.66274141 -0.90188818]\n", + " [-10.27631284 -0.90186536]\n", + " [ -5.88988428 -0.90184255]\n", + " [ -1.5034557 -0.90181973]\n", + " [ -1.503296 -31.60681974]\n", + " [ -1.50331881 -27.22039116]\n", + " [ -1.50334163 -22.83396259]\n", + " [ -1.50336444 -18.44753402]\n", + " [ -1.50338726 -14.06110544]\n", + " [ -1.50341007 -9.67467688]\n", + " [ -1.50343288 -5.2882483 ]\n", + " [ -1.5034557 -0.90181973]\n", + " [-32.19330594 -29.69447935]\n", + " [-32.1933339DEBUG:root:cartToSphere: vec: [[ 0.00152888 -0.20769103 0.97819328]\n", + " [ 0.00154215 -0.1801941 0.98362986]\n", + " [ 0.00155354 -0.15200928 0.98837785]\n", + " [ 0.00156302 -0.12324112 0.99237552]\n", + " [ 0.00157054 -0.09399571 0.99557136]\n", + " [ 0.00157606 -0.06438234 0.99792406]\n", + " [ 0.00157952 -0.03451442 0.99940295]\n", + " [ 0.00158089 -0.00450904 0.99998858]\n", + " [ 0.00152888 -0.20769103 0.97819328]\n", + " [ 0.03055413 -0.20754198 0.97774883]\n", + " [ 0.0594604 -0.20712371 0.97650613]\n", + " [ 0.08813528 -0.20643751 0.97448229]\n", + " [ 0.11646734 -0.2054851 0.97170532]\n", + " [ 0.14434605 -0.20426815 0.9682142 ]\n", + " [ 0.17166149 -0.20278791 0.96405881]\n", + " [ 0.1983039 -0.2010451 0.95929997]\n", + " [ 0.00158089 -0.00450904 0.99998858]\n", + " [ 0.03159291 -0.00450572 0.99949066]\n", + " [ 0.06147904 -0.00449643 0.99809825]\n", + " [ 0.0911219 -0.00448126 0.99582966]\n", + " [ 0.12040769 -0.00446035 0.99271451]\n", + " [ 0.14922671 -0.00443385 0.98879307]\n", + " [ 0.17747265 -0.00440189 0.98411589]\n", + " [ 0.2050409 -0.00436457 0.97874367]\n", + " [ 0.1983039 -0.2010451 0.95929DEBUG:root:radec2pix: fitpx: [[ 2.13550000e+03 -4.99999783e-01]\n", + " [ 2.13550000e+03 2.91928571e+02]\n", + " [ 2.13550000e+03 5.84357143e+02]\n", + " [ 2.13550000e+03 8.76785714e+02]\n", + " [ 2.13550000e+03 1.16921429e+03]\n", + " [ 2.13550000e+03 1.46164286e+03]\n", + " [ 2.13550000e+03 1.75407143e+03]\n", + " [ 2.13550000e+03 2.04650000e+03]\n", + " [ 2.13550000e+03 -4.99999783e-01]\n", + " [ 2.42792857e+03 -5.00000080e-01]\n", + " [ 2.72035714e+03 -5.00000178e-01]\n", + " [ 3.01278571e+03 -4.99999867e-01]\n", + " [ 3.30521429e+03 -5.00000095e-01]\n", + " [ 3.59764286e+03 -5.00000221e-01]\n", + " [ 3.89007143e+03 -5.00000185e-01]\n", + " [ 4.18250000e+03 -5.00000018e-01]\n", + " [ 2.13550000e+03 2.04650000e+03]\n", + " [ 2.42792857e+03 2.04650000e+03]\n", + " [ 2.72035714e+03 2.04650000e+03]\n", + " [ 3.01278571e+03 2.04650000e+03]\n", + " [ 3.30521429e+03 2.04650000e+03]\n", + " [ 3.59764286e+03 2.04650000e+03]\n", + " [ 3.89007143e+03 2.04650000e+03]\n", + " [ 4.18250000e+03 2.04650000e+03]\n", + " [ 4.18250000e+03 -5.00000018e-01]\n", + " [ 4.18250000e+03 2.91928571e+02]\n", + " [ 4.18250000e+03 5.84357143e+02]\n", + " [ 4.18250000e+03 8.76785DEBUG:root:radec2pix: curVec Shape: (96, 3)\n", + "DEBUG:root:radec2pix: curVec Shape: (96, 3)\n", + "714e+02]\n", + " [ 4.18250000e+03 1.16921429e+03]\n", + " [ 4.18250000e+03 1.46164286e+03]\n", + " [ 4.18250000e+03 1.75407143e+03]\n", + " [ 4.18250000e+03 2.04650000e+03]\n", + " [ 2.13650000e+03 1.27000000e+02]\n", + " [ 2.13650000e+03 4.85400000e+02]\n", + " [ 2.13650000e+03 8.43800000e+02]\n", + " [ 2.13650000e+03 1.20220000e+03]\n", + " [ 2.13650000e+03 1.56060000e+03]\n", + " [ 2.13650000e+03 1.91900000e+03]\n", + " [ 2.26300000e+03 4.99999873e-01]\n", + " [ 2.62140000e+03 5.00000123e-01]\n", + " [ 2.97980000e+03 5.00000108e-01]\n", + " [ 3.33820000e+03 4.99999719e-01]\n", + " [ 3.69660000e+03 4.99999964e-01]\n", + " [ 4.05500000e+03 5.00000185e-01]\n", + " [ 2.26300000e+03 2.04550000e+03]\n", + " [ 2.62140000e+03 2.04550000e+03]\n", + " [ 2.97980000e+03 2.04550000e+03]\n", + " [ 3.33820000e+03 2.04550000e+03]\n", + " [ 3.69660000e+03 2.04550000e+03]\n", + " [ 4.05500000e+03 2.04550000e+03]\n", + " [ 4.18150000e+03 1.27000000e+02]\n", + " [ 4.18150000e+03 4.85400000e+02]\n", + " [ 4.18150000e+03 8.43800000e+02]\n", + " [ 4.18150000e+03 1.2022000DEBUG:root:radec2pix: lng: [270.4470398 270.51926185 270.61931513 270.76712536 271.00759894\n", + " 271.46762895 272.70005845 286.49130114 270.4470398 278.35667351\n", + " 285.95982213 293.02931263 299.43042278 305.11729798 310.10927793\n", + " 314.46353671 286.49130114 349.82837514 354.73471783 356.4521324\n", + " 357.32535522 357.85379375 358.20792761 358.46177059 314.46353671\n", + " 318.74333689 323.66697635 329.30072855 335.67617912 342.7610671\n", + " 350.43132356 358.46177059 270.50490909 270.61684574 270.79254775\n", + " 271.10819213 271.84151891 275.43536905 273.91748404 283.44327486\n", + " 292.27322451 300.11957347 306.89513227 312.65252806 338.59499359\n", + " 353.59240246 356.2502422 357.3507235 357.95203643 358.33094358\n", + " 316.24148386 321.91069268 328.61592969 336.43108737 345.29354618\n", + " 354.93182927 270.47451616 270.47451616 358.43326445 358.43326445\n", + " 274.16755516 284.27018764 293.54850553 301.6868684 308.61690354\n", + " 314.4285595 275.08714159 287.26177752 298.03288482 307.02206797\n", + " 314.30032851 320.13759497 276.52519686 291.7644980DEBUG:root:radec2pix: xyfp: [[ 0.26283402 -31.55708986]\n", + " [ 0.26401791 -27.17066146]\n", + " [ 0.2652018 -22.78423305]\n", + " [ 0.26638569 -18.39780463]\n", + " [ 0.26756957 -14.01137623]\n", + " [ 0.26875346 -9.62494781]\n", + " [ 0.26993735 -5.2385194 ]\n", + " [ 0.27112123 -0.85209099]\n", + " [ 0.26283402 -31.55708986]\n", + " [ 4.64926244 -31.55827376]\n", + " [ 9.03569085 -31.55945764]\n", + " [ 13.42211926 -31.56064153]\n", + " [ 17.80854767 -31.56182542]\n", + " [ 22.19497608 -31.56300931]\n", + " [ 26.5814045 -31.56419319]\n", + " [ 30.96783291 -31.56537708]\n", + " [ 0.27112123 -0.85209099]\n", + " [ 4.65754965 -0.85327487]\n", + " [ 9.04397805 -0.85445876]\n", + " [ 13.43040647 -0.85564265]\n", + " [ 17.81683488 -0.85682653]\n", + " [ 22.20326329 -0.85801042]\n", + " [ 26.5896917 -0.85919431]\n", + " [ 30.97612012 -0.8603782 ]\n", + " [ 30.96783291 -31.56537708]\n", + " [ 30.9690168 -27.17894867]\n", + " [ 30.97020068 -22.79252025]\n", + " [ 30.97138456 -18.40609184]\n", + " [ 30.97256845 -14.01966343]\n", + " [ 30.97375234 -9.63323502]\n", + " [ 30.97493622 -5.24680661]\n", + " [ 30.97612012 -0.8603782 ]\n", + " [ 0.2783502 -29.64459399]\n", + " [ 0.27980117 3 304.37699404\n", + " 314.09790313 321.42651996 326.9808709 279.08719841 299.17442797\n", + " 313.73069285 323.57233622 330.30226172 335.07338778 284.88740412\n", + " 312.85952275 327.83358678 336.05769185 341.06068787 344.37815396\n", + " 308.1938338 339.99132199 348.00244679 351.46719972 353.38615059\n", + " 354.60255033]\n", + "1 -24.31847935]\n", + " [-32.19336187 -18.94247936]\n", + " [-32.19338983 -13.56647936]\n", + " [-32.19341779 -8.19047935]\n", + " [-32.19344575 -2.81447935]\n", + " [-30.29579608 -31.59196949]\n", + " [-24.91979608 -31.59194152]\n", + " [-19.54379608 -31.59191356]\n", + " [-14.16779608 -31.5918856 ]\n", + " [ -8.79179608 -31.59185764]\n", + " [ -3.41579608 -31.59182968]\n", + " [-30.29595562 -0.91696949]\n", + " [-24.91995562 -0.91694153]\n", + " [-19.54395562 -0.91691356]\n", + " [-14.16795562 -0.9168856 ]\n", + " [ -8.79195562 -0.91685764]\n", + " [ -3.41595563 -0.91682968]\n", + " [ -1.51830595 -29.69431981]\n", + " [ -1.51833391 -24.31831981]\n", + " [ -1.51836187 -18.94231981]\n", + " [ -1.51838983 -13.56631981]\n", + " [ -1.51841779 -8.19031981]\n", + " [ -1.51844575 -2.81431982]\n", + " [-32.19329608 -31.59197936]\n", + " [-32.19329608 -31.59197936]\n", + " [ -1.51845562 -0.91681981]\n", + " [ -1.51845562 -0.91681981]\n", + " [-30.29580595 -29.69446949]\n", + " [-24.91980594 -29.69444152]\n", + " [-19.54380595 -29.69441356]\n", + " [-14.16780595 -29.69438561]\n", + " [ -8.79180595 -29.69435764]\n", + " [ -3.41580595 -29.69432968]\n", + " [-30.29583391 -24.31846949]\n", + " [-24.91983391 -24.31844152]\n", + " [-19.54383391 -24.31841356]\n", + " [-14.16783391 -24.31838561]\n", + " [ -8.79183391 -24.31835764]\n", + " [ -3.41583391 -24.31832968]\n", + " [-30.29586187 -18.94246949]\n", + " [-24.91986187 -18.94244153]\n", + " [-19.54386187 -18.94241356]\n", + " [-14.16786187 -18.94238561]\n", + " [ -8.79186187 -18.94235764]\n", + " [ -3.41586187 -18.94232969]\n", + " [-30.29588983 -13.56646949]\n", + " [-24.91988983 -13.56644152]\n", + " [-19.54388984 -13.56641357]\n", + " [-14.16788983 -13.5663856 ]\n", + " [ -8.79188983 -13.56635764]\n", + " [ -3.41588983 -13.56632968]\n", + " [-30.29591779 -8.19046949]\n", + " [-24.91991779 -8.19044152]\n", + " [-19.54391779 -8.19041356]\n", + " [-14.16791779 -8.1903856 ]\n", + " [ -8.79191779 -8.19035764]\n", + " [ -3.41591779 -8.19032968]\n", + " [-30.29594575 -2.81446949]\n", + " [-24.91994576 -2.81444153]\n", + " [-19.54394575 -2.81441356]\n", + " [-14.16794576 -2.8143856 ]\n", + " [ -8.79194575 -2.81435764]\n", + " [ -3.41594575 -2.81432968]]\n", + "-24.26859418]\n", + " [ 0.28125214 -18.89259438]\n", + " [ 0.28270311 -13.51659457]\n", + " [ 0.28415408 -8.14059477]\n", + " [ 0.28560505 -2.76459497]\n", + " [ 2.175338 -31.54260605]\n", + " [ 7.55133781 -31.54405702]\n", + " [ 12.92733761 -31.54550799]\n", + " [ 18.30333742 -31.54695896]\n", + " [ 23.67933722 -31.54840993]\n", + " [ 29.05533702 -31.5498609 ]\n", + " [ 2.18361712 -0.86760716]\n", + " [ 7.55961692 -0.86905814]\n", + " [ 12.93561673 -0.87050911]\n", + " [ 18.31161653 -0.87196007]\n", + " [ 23.68761633 -0.87341105]\n", + " [ 29.06361614 -0.87486202]\n", + " [ 30.95334909 -29.6528731 ]\n", + " [ 30.95480005 -24.27687329]\n", + " [ 30.95625103 -18.90087349]\n", + " [ 30.95770199 -13.52487368]\n", + " [ 30.95915297 -8.14887388]\n", + " [ 30.96060394 -2.77287408]\n", + " [ 0.27783807 -31.54209392]\n", + " [ 0.27783807 -31.54209392]\n", + " [ 30.96111607 -0.87537415]\n", + " [ 30.96111607 -0.87537415]\n", + " [ 2.17585013 -29.64510611]\n", + " [ 7.55184994 -29.64655709]\n", + " [ 12.92784974 -29.64800806]\n", + " [ 18.30384955 -29.64945903]\n", + " [ 23.6DEBUG:root:make_az_asym: xyp: shape: (96, 2)\n", + "DEBUG:root:radec2pix: camVec: [[ 0.00110855 0.00111823 0.00112655 0.00113349 0.001139 0.00114306\n", + " 0.00114562 0.00114666 0.00110855 0.03013432 0.05904256 0.08772073\n", + " 0.11605724 0.14394136 0.17126266 0.19791015 0.00114666 0.03116962\n", + " 0.06106803 0.09072406 0.1200235 0.1488564 0.17711651 0.20469956\n", + " 0.19791015 0.19966308 0.20115603 0.20238925 0.20336191 0.20407235\n", + " 0.20451873 0.20469956 0.00121266 0.00122459 0.00123428 0.00124164\n", + " 0.00124661 0.00124912 0.01377154 0.04928181 0.08450359 0.11923105\n", + " 0.15326028 0.18638779 0.01424443 0.05097175 0.08739457 0.12330108\n", + " 0.15848878 0.192763 0.19861623 0.2005887 0.20217123 0.20336272\n", + " 0.2041602 0.2045604 0.00120792 0.00120792 0.20460634 0.20460634\n", + " 0.01382559 0.04947523 0.08483539 0.11969997 0.15386543 0.18712908\n", + " 0.01396162 0.04996174 0.08566901 0.1208763 0.15538076 0.1889821\n", + " 0.01407199 0.05035615 0.08634371DEBUG:root:radec2pix: camVec: [[-0.00114705 -0.00115629 -0.0011641 -0.00117048 -0.00117539 -0.00117881\n", + " -0.00118068 -0.00118097 -0.00114705 -0.03018244 -0.05910007 -0.08778716\n", + " -0.11613176 -0.14402308 -0.17135219 -0.19801388 -0.00118097 -0.03121228\n", + " -0.06111791 -0.09077999 -0.12008538 -0.14892541 -0.17719395 -0.20478471\n", + " -0.19801388 -0.19975823 -0.20124936 -0.20248221 -0.20345393 -0.20416257\n", + " -0.20460656 -0.20478471 -0.00125101 -0.00126235 -0.00127136 -0.00127799\n", + " -0.00128216 -0.00128379 -0.01381426 -0.04933618 -0.08456905 -0.11930642\n", + " -0.15334441 -0.18648385 -0.01428247 -0.05101935 -0.08744986 -0.12336368\n", + " -0.15856056 -0.19284509 -0.1987148 -0.20068229 -0.20226422 -0.20345456\n", + " -0.20424964 -0.20464672 -0.00124645 -0.00124645 -0.20469148 -0.20469148\n", + " -0.01386808 -0.04952932 -0.08490071 -0.11977552 -0.15394951 -0.18722234\n", + " -0.01400325 -0.05001432 -0.08573269 -0.12095098 -0.15546507 -0.18907339\n", + " -0.01411268 -0.05040698 -0.08640482 -0.12189811 -0.15668376 -0.19056116\n", + " -0.014DEBUG:root:radec2pix: lat: [77.94367134 79.54902489 81.18632945 82.85028944 84.53583766 86.23790238\n", + " 87.95095267 89.65971994 77.94367134 77.82164346 77.48801235 76.9631292\n", + " 76.27533882 75.45615131 74.53651433 73.54460591 89.65971994 88.15347287\n", + " 86.45230283 84.75294209 83.0672058 81.4014907 79.76129308 78.15206149\n", + " 73.54460591 74.55768324 75.50238779 76.35047091 77.07044991 77.62962616\n", + " 77.99774795 78.15206149 78.63928322 80.62896884 82.66134588 84.72698979\n", + " 86.81649257 88.91826945 77.92273249 77.62880737 77.03600995 76.19348076\n", + " 75.15884594 73.98801233 89.08995442 87.02817045 84.94370871 82.87794501\n", + " 80.84312687 78.84936896 73.99670581 75.19609757 76.26512012 77.14708483\n", + " 77.78216783 78.11748405 77.94905666 77.94905666 78.15735777 78.15735777\n", + " 78.61100015 78.29575797 77.66281562 76.76884154 75.67835331 74.45201735\n", + " 80.5936009 80.20229517 79.43086524 78.36733491 77.10116027 75.70726987\n", + " 82.61510476 82.11071991 81.1484309 79.87243611 78.40512567 76.83322353\n", + " 84.66162432 83.97115888 0e+03]\n", + " [ 4.18150000e+03 1.56060000e+03]\n", + " [ 4.18150000e+03 1.91900000e+03]\n", + " [ 2.13650000e+03 4.99999853e-01]\n", + " [ 2.13650000e+03 4.99999853e-01]\n", + " [ 4.18150000e+03 2.04550000e+03]\n", + " [ 4.18150000e+03 2.04550000e+03]\n", + " [ 2.26300000e+03 1.27000000e+02]\n", + " [ 2.62140000e+03 1.27000000e+02]\n", + " [ 2.97980000e+03 1.27000000e+02]\n", + " [ 3.33820000e+03 1.27000000e+02]\n", + " [ 3.69660000e+03 1.27000000e+02]\n", + " [ 4.05500000e+03 1.27000000e+02]\n", + " [ 2.26300000e+03 4.85400000e+02]\n", + " [ 2.62140000e+03 4.85400000e+02]\n", + " [ 2.97980000e+03 4.85400000e+02]\n", + " [ 3.33820000e+03 4.85400000e+02]\n", + " [ 3.69660000e+03 4.85400000e+02]\n", + " [ 4.05500000e+03 4.85400000e+02]\n", + " [ 2.26300000e+03 8.43800000e+02]\n", + " [ 2.62140000e+03 8.43800000e+02]\n", + " [ 2.97980000e+03 8.43800000e+02]\n", + " [ 3.33820000e+03 8.43800000e+02]\n", + " [ 3.69660000e+03 8.43800000e+02]\n", + " [ 4.05500000e+03 8.43800000e+02]\n", + " [ 2.26300000e+03 1.20220000e+03]\n", + " [ 2.62140000e+03 1.20220000e+03]\n", + " [ 2.97980000e+03 1.20220000e+03]\n", + " [ 3.33820000e+03 1.20220000e+03]\n", + " [ 3.69660000e+03 1.20220000e+03]\n", + " [ 4.05500000e+03 1.20220000e+03]\n", + " [ 2.26300000e+03 1.56060000e+03]\n", + " [ 2.62140000e+03 1.56060000e+03]\n", + " [ 2.97980000e+03 1.56060000e+03]\n", + " [ 3.33820000e+03 1.56060000e+03]\n", + " [ 3.69660000e+03 1.56060000e+03]\n", + " [ 4.05500000e+03 1.56060000e+03]\n", + " [ 2.26300000e+03 1.91900000e+03]\n", + " [ 2.62140000e+03 1.91900000e+03]\n", + " [ 2.97980000e+03 1.91900000e+03]\n", + " [ 3.33820000e+03 1.91900000e+03]\n", + " [ 3.69660000e+03 1.91900000e+03]\n", + " [ 4.05500000e+03 1.91900000e+03]]\n", + "7984935 -29.65091 ]\n", + " [ 29.05584916 -29.65236097]\n", + " [ 2.1773011 -24.26910631]\n", + " [ 7.55330091 -24.27055728]\n", + " [ 12.92930071 -24.27200825]\n", + " [ 18.30530052 -24.27345922]\n", + " [ 23.68130032 -24.27491019]\n", + " [ 29.05730013 -24.27636116]\n", + " [ 2.17875207 -18.89310651]\n", + " [ 7.55475188 -18.89455748]\n", + " [ 12.93075168 -18.89600845]\n", + " [ 18.30675149 -18.89745942]\n", + " [ 23.68275129 -18.89891039]\n", + " [ 29.0587511 -18.90036136]\n", + " [ 2.18020304 -13.51710671]\n", + " [ 7.55620285 -13.51855767]\n", + " [ 12.93220265 -13.52000864]\n", + " [ 18.30820245 -13.52145961]\n", + " [ 23.68420226 -13.52291058]\n", + " [ 29.06020207 -13.52436156]\n", + " [ 2.18165401 -8.1411069 ]\n", + " [ 7.55765382 -8.14255787]\n", + " [ 12.93365363 -8.14400884]\n", + " [ 18.30965343 -8.14545981]\n", + " [ 23.68565323 -8.14691078]\n", + " [ 29.06165303 -8.14836175]\n", + " [ 2.18310498 -2.76510709]\n", + " [ 7.55910479 -2.76655806]\n", + " [ 12.93510459 -2.76800904]\n", + " [ 18.31110439 -2.76946001]\n", + " [ 23.68710421 -2.77091098]\n", + " [ 29.063104 -2.77236195]]\n", + "997]\n", + " [ 0.20004855 -0.17444879 0.9641308 ]\n", + " [ 0.20153434 -0.14716869 0.96836217]\n", + " [ 0.2027606 -0.11931453 0.97193219]\n", + " [ 0.20372608 -0.09099614 0.97478992]\n", + " [ 0.20442907 -0.06232394 0.97689533]\n", + " [ 0.20486781 -0.03340929 0.9782193 ]\n", + " [ 0.2050409 -0.00436457 0.97874367]\n", + " [ 0.00163462 -0.1957935 0.98064379]\n", + " [ 0.00165059 -0.16161745 0.9868521 ]\n", + " [ 0.00166353 -0.12651199 0.99196368]\n", + " [ 0.00167335 -0.09067166 0.99587944]\n", + " [ 0.00167995 -0.05429781 0.99852337]\n", + " [ 0.00168324 -0.01760077 0.99984368]\n", + " [ 0.01419184 -0.20756647 0.97811796]\n", + " [ 0.04970047 -0.20720276 0.97703474]\n", + " [ 0.08491857 -0.20643606 0.97476817]\n", + " [ 0.11964057 -0.20526936 0.97136534]\n", + " [ 0.15366298 -0.20370571 0.96689796]\n", + " [ 0.18678351 -0.20174719 0.96146242]\n", + " [ 0.01467408 -0.00461102 0.9998817 ]\n", + " [ 0.05138704 -0.00460274 0.99866821]\n", + " [ 0.08779394 -0.00458538 0.9961281 ]\n", + " [ 0.12368372 -0.00455917 0.99231122]\n", + " [ 0.15885436 -0.0045244 0.98729166]\n", + " [ 0.19311093 -0.0044813 0.9811667 ]\n", + " [ 0.19900616 -0.18954613 0.96149301]\n", + " [ 0.20096941 -0.15647489 0.9670196 ]\n", + " [ 0.20254341 -0.12248558 0.97158296]\n", + " [ 0.2037261 -0.08778034 0.97508476]\n", + " [ 0.2045144 -0.05256249 0.9774513 ]\n", + " [ 0.20490517 -0.01703747 0.97863353]\n", + " [ 0.00162826 -0.20759824 0.97821282]\n", + " [ 0.00162826 -0.20759824 0.97821282]\n", + " [ 0.20494776 -0.00446412 0.97876273]\n", + " [ 0.20494776 -0.00446412 0.97876273]\n", + " [ 0.01424722 -0.19576354 0.98054763]\n", + " [ 0.04989441 -0.19542056 0.97944952]\n", + " [ 0.08525013 -0.19469787 0.97715155]\n", + " [ 0.12010852 -0.19359884 0.97370089]\n", + " [ 0.15426631 -0.19212697 0.9691693 ]\n", + " [ 0.18752167 -0.19028463 0.963653DEBUG:root:mm_to_pix: fitpx: [[0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]]\n", + "19584 -0.05070556 -0.08691471 -0.12261435 -0.15760261 -0.19168088\n", + " -0.01425179 -0.05090701 -0.08725814 -0.12309542 -0.15821798 -0.19242913\n", + " -0.01427955 -0.05100809 -0.08743051 -0.12333654 -0.15852587 -0.19280295]\n", + " [ 0.20838541 0.18089194 0.15270652 0.12393558 0.09468513 0.06506336\n", + " 0.03518275 0.0051606 0.20838541 0.20823844 0.20782077 0.20713345\n", + " 0.20617803 0.20495645 0.20347155 0.2017284 0.0051606 0.00515607\n", + " 0.00514464 0.00512646 0.00510175 0.0050707 0.00503345 0.00499006\n", + " 0.2017284 0.17512925 0.14784829 0.11999042 0.09166442 0.06298098\n", + " 0.03405194 0.00499006 0.19649007 0.1623152 0.12720686 0.09136033\n", + " 0.05497503 0.01826009 0.20826196 0.20789982 0.20713224 0.20596186\n", + " 0.20439232 0.20242966 0.00526224 0.00525184 0.00523103 0.00520016\n", + " 0.00515961 0.0051096 0.19022738 0.157155 0.12316211 0.08844755\n", + " 0.05321501 0.01767079 0.20829266 0.20829266 0.0050897 0.0050897\n", + " 0.19646111 0.19611969 0.19539637 0.19429398 0.1928159 0.19096695\n", + " 0.16229116 0.16200846 0.16141067 0.16050163 0.15928501 0.15776388\n", + " 0DEBUG:root:radec2pix: curVec: [[-1.96209646e-01 -4.52548539e-01 8.69885967e-01]\n", + " [-1.70223599e-01 -4.46473133e-01 8.78456412e-01]\n", + " [-1.43587803e-01 -4.39915966e-01 8.86485468e-01]\n", + " [-1.16401055e-01 -4.32883845e-01 8.93902887e-01]\n", + " [-8.87635730e-02 -4.25388056e-01 9.00647561e-01]\n", + " [-6.07786602e-02 -4.17444925e-01 9.06667353e-01]\n", + " [-3.25534674e-02 -4.09076232e-01 9.11919354e-01]\n", + " [-4.19865926e-03 -4.00309341e-01 9.16370450e-01]\n", + " [-1.96209646e-01 -4.52548539e-01 8.69885967e-01]\n", + " [-1.86574024e-01 -4.77496134e-01 8.58596282e-01]\n", + " [-1.76722555e-01 -5.01942427e-01 8.46653966e-01]\n", + " [-1.66693233e-01 -5.25797127e-01 8.34116747e-01]\n", + " [-1.56524141e-01 -5.48975255e-01 8.21051985e-01]\n", + " [-1.46253033e-01 -5.71396973e-01 8.07536717e-01]\n", + " [-1.35917076e-01 -5.92987166e-01 7.93657841e-01]\n", + " [-1.25552882e-01 -6.13675054e-01 7.79512285e-01]\n", + " [-4.19865926e-03 -4.00309341e-01 9.16370450e-01]\n", + " [ 5.62205661e-03 -4.26135066e-01 9.04642083e-01]\n", + " [ 1.54076453e-02 -4.51494200e-01 8.92141016e-01]\n", + " 14]\n", + " [ 0.01438645 -0.16159264 0.98675268]\n", + " [ 0.05038177 -0.16130879 0.98561714]\n", + " [ 0.08608239 -0.16071144 0.98324039]\n", + " [ 0.1212815 -0.15980479 0.97966996]\n", + " [ 0.15577635 -0.15859338 0.97497788]\n", + " [ 0.18936679 -0.15708053 0.9692605 ]\n", + " [ 0.01449922 -0.12649245 0.9918616 ]\n", + " [ 0.05077617 -0.12626898 0.99069568]\n", + " [ 0.08675481 -0.12579928 0.9882551 ]\n", + " [ 0.12222707 -0.12508774 0.98458804]\n", + " [ 0.15699061 -0.12413931 0.979767 ]\n", + " [ 0.19084708 -0.12295784 0.97388848]\n", + " [ 0.01458479 -0.09065756 0.99577532]\n", + " [ 0.05107523 -0.09049631 0.99458621]\n", + " [ 0.08726392 -0.09015775 0.99209707]\n", + " [ 0.1229415 -0.08964573 0.98835673]\n", + " [ 0.15790584 -0.08896468 0.98343837]\n", + " [ 0.1919602 -0.0881182 0.97743873]\n", + " [ 0.01464229 -0.05428931 0.99841789]\n", + " [ 0.05127607 -0.05419219 0.9972131 ]\n", + " [ 0.08760541 -0.05398843 0.99469118]\n", + " [ 0.12341989 -0.05368064 0.99090157]\n", + " [ 0.15851749 -0.05327188 0.985918 ]\n", + " [ 0.19270261 -0.0527647 0.97983753]\n", + " [ 0.01467095 -0.01759801 0.9997375 ]\n", + " [ 0.05137612 -0.017582.73646392 81.20037729 79.51583908 77.76861975\n", + " 86.70802953 85.66590929 84.05006409 82.22924953 80.34192865 78.44668306\n", + " 88.6299785 86.85760815 84.84280506 82.80723116 80.78933117 78.80649174]\n", + " [-4.35000000e+01 1.27000000e+02]\n", + " [-4.35000002e+01 4.85400000e+02]\n", + " [-4.34999999e+01 8.43800000e+02]\n", + " [-4.35000003e+01 1.20220000e+03]\n", + " [-4.35000000e+01 1.56060000e+03]\n", + " [-4.35000001e+01 1.91900000e+03]\n", + " [ 8.30000001e+01 5.00000148e-01]\n", + " [ 4.41400000e+02 4.99999823e-01]\n", + " [ 7.99800000e+02 4.99999939e-01]\n", + " [ 1.15820000e+03 5.00000006e-01]\n", + " [ 1.51660000e+03 5.00000232e-01]\n", + " [ 1.87500000e+03 5.00000256e-01]\n", + " [ 8.29999998e+01 2.04550000e+03]\n", + " [ 4.41400000e+02 2.04550000e+03]\n", + " [ 7.99800000e+02 2.04550000e+03]\n", + " [ 1.15820000e+03 2.04550000e+03]\n", + " [ 1.51660000e+03 2.04550000e+03]\n", + " [ 1.87500000e+03 2.04550000e+03]\n", + " [ 2.00150000e+03 1.27000000e+02]\n", + " [ 2.00150000e+03 4.85400000e+02]\n", + " [ 2.00150000e+03 8.43800000e+02]\n", + " [ 2.00150000e+03 1.20220000e+03]\n", + " [ 2.00150000e+03 1.56060000e+03]\n", + " [ 2.00150000e+03 1.91900000e+03]\n", + " [-4.35000003e+01 4.99999725e-01]\n", + " [-4.35000003e+01 4.99999725e-01]\n", + " [ 2.00150000e+03 2.04550000e+03]\n", + " [ 2.00150000e+03 2.04550000e+03]\n", + " [ 8.30000000e+01 1.27000000e+02]\n", + " [ 4.41400000e+02 1.27000000e+02]\n", + " [ 7.99800000e+02 1.27000000e+02]\n", + " [ 1.15820000e+03 1.27000000e+02]\n", + " [ 1.51660000e+03 1.27000000e+02]\n", + " [ 1.87500000e+03 1.27000000e+02]\n", + " [ 8.30000001e+01 4.85400000e+02]\n", + " [ 4.41400000e+02 4.85400000e+02]\n", + " [ 7.99800000e+02 4.85400000e+02]\n", + " [ 1.15820000e+03 4.85400000e+02]\n", + " [ 1.51660000e+03 4.85400000e+02]\n", + " [ 1.87500000e+03 4.85400000e+02]\n", + " [ 8.30000001e+01 8.43800000e+02]\n", + " [ 4.41400000e+02 8.43800000e+02]\n", + " [ 7.99800000e+02 8.43800000e+02]\n", + " [ 1.15820000e+03 8.43800000e+02]\n", + " [ 1.51660000e+03 8.43800000e+02]\n", + " [ 1.87500000e+03 8.43800000e+02]\n", + " [ 8.29999999e+01 1.20220000e+03]\n", + " [ 4.41400000e+02 1.20220000e+03]\n", + " [ 7.99800000e+02 1.20220000e+03]\n", + " [ 1.15820000e+03 1.20220000e+03]\n", + " [ 1.51660000e+03 1.20220000e+03]\n", + " [ 1.87500000e+03 1DEBUG:root:radec2pix: ccdpx: [[-4.45000000e+01 -4.99999783e-01]\n", + " [-4.45000000e+01 2.91928571e+02]\n", + " [-4.45000000e+01 5.84357143e+02]\n", + " [-4.45000000e+01 8.76785714e+02]\n", + " [-4.45000000e+01 1.16921429e+03]\n", + " [-4.45000000e+01 1.46164286e+03]\n", + " [-4.45000000e+01 1.75407143e+03]\n", + " [-4.44999999e+01 2.04650000e+03]\n", + " [-4.45000000e+01 -4.99999783e-01]\n", + " [ 2.47928571e+02 -5.00000080e-01]\n", + " [ 5.40357143e+02 -5.00000178e-01]\n", + " [ 8.32785714e+02 -4.99999867e-01]\n", + " [ 1.12521429e+03 -5.00000095e-01]\n", + " [ 1.41764286e+03 -5.00000221e-01]\n", + " [ 1.71007143e+03 -5.00000185e-01]\n", + " [ 2.00250000e+03 -5.00000018e-01]\n", + " [-4.44999999e+01 2.04650000e+03]\n", + " [ 2.47928572e+02 2.04650000e+03]\n", + " [ 5.40357143e+02 2.04650000e+03]\n", + " [ 8.32785714e+02 2.04650000e+03]\n", + " [ 1.12521429e+03 2.04650000e+03]\n", + " [ 1.41764286e+03 2.04650000e+03]\n", + " [ 1.71007143e+03 2.04650000e+03]\n", + " [ 2.00250000e+03 2.04650000e+03]\n", + " [ 2.00250000e+03 -5.00000018e-01]\n", + " [ 2.00250000e+03 2.91928571e+02]\n", + " [ 2.00250000e+03 5.84357143e+02]\n", + " [ 2.00250000e+03 8.76785714e+02]\n", + " [ 2.00250000e+03 1.16921429e+03]\n", + " [ 2.00250000e+03 1.46164286e+03]\n", + " [ 2.00250000e+03 1.75407143e+03]\n", + " [ 2.00250000e+03 2.04650000e+03]\n", + " [-4.35000000e+01 1.27000000e+02]\n", + " [-4.35000000e+01 4.85400000e+02]\n", + " [-4.35000000e+01 8.43800000e+02]\n", + " [-4.35000000e+01 1.20220000e+03]\n", + " [-4.35000000e+01 1.56060000e+03]\n", + " [-4.35000000e+01 1.91900000e+03]\n", + " [ 8.30000000e+01 4.99999873e-01]\n", + " [ 4.41400000e+02 5.00000123e-01]\n", + " [ 7.99800000e+02 5.00000108e-01]\n", + " [ 1.15820000e+03 4.99999719e-01]\n", + " [ 1.51660000e+03 4.99999964e-01]\n", + " [ 1.87500000e+03 5.00000185e-01]\n", + " [ 8.30000000e+01 2.04550000e+03]\n", + " [ 4.41400000e+02 2.04550000e+03]\n", + " [ 7.99800000e+02 2.04550000e+03]\n", + " [ 1.15820000e+03 2.04550000e+03]\n", + " [ 1.51660000e+03 2.04550000e+03]\n", + " [ 1.87500000e+03 2.04550000e+03]\n", + " [ 2.00150000e+03 1.27000000e+02]\n", + " [ 2.00150000e+03 4.85400000e+02]\n", + " [ 2.00150000e+03 8.43800000e+02]\n", + " [ 2.00150000e+03 1.20220000e+03]\n", + " [ 2.00150000e+03 1.56060000e+03]\n", + " [ 2.00150000e+03 1.91900000e+03]\n", + " [-4.35000000e+01 4.99999853e-01]\n", + " [-4.35000000e+01 4.99999853e-01]\n", + " [ 2.00150000e+03 2.04550000e+03]\n", + " [ 2.00150000e+03 2.04550000e+03]\n", + " [ 8.30000000e+01 1.27000000e+02]\n", + " [ 4.41400000e+02 1.27000000e+02]\n", + " [ 7.99800000e+02 1.27000000e+02]\n", + " [ 1.15820000e+03 1.27000000e+02]\n", + " [ 1.51660000e+03 1.27000000e+02]\n", + " [ 1.87500000e+03 1.27000000e+02]\n", + " [ 8.30000000e+01 4.85400000e+02]\n", + " [ 4.41400000e+02 4.85400000e+02]\n", + " [ 7.99800000e+02 4.85400000e+02]\n", + " [ 1.15820000e+03 4.85400000e+02]\n", + " [ 1.51660000e+03 4.85400000e+02]\n", + " [ 1.87500000e+03 4.85400000e+02]\n", + " [ 8.30000000e+01 8.43800000e+02]\n", + " [ 4.41400000e+02 8.43800000e+02]\n", + " [ 7.99800000e+02 8.43800000e+02]\n", + " [ 1.15820000e+03 8.43800000e+02]\n", + " [ 1.51660000e+03 8.43800000e+02]\n", + " [ 1.87500000e+03 8.43800000e+02]\n", + " [ 8.30000000e+01 1.20220000e+03]\n", + " [ 4.41400000e+02 1.20220000e+03]\n", + " [ 7.99800000e+02 1.20220000e+03]\n", + " [ 1.15820000e+03 1.20220000e+03]\n", + " [ 1.51660000e+03 1.20220000e+03]\n", + " [ 1.87500000e+03 1.20220000e+03]\n", + " [ 8.30000001e+01 1.56060000e+03]\n", + " [ 4.41400000e+02 1.56060000e+03]\n", + " [ 7.99800000e+02 1.56060000e+03]\n", + " [ 1.15820000e+03 1.56060000e+03]\n", + " [ 1.51660000e+03 1.56060000e+03]\n", + " [ 1.87500000e+03 1.56060000e+03]\n", + " [ 8.29999999e+01 1.91900000e+03]\n", + " [ 4.41400000e+02 1.91900000e+03]\n", + " [ 7.99800000e+02 1.91900000e+03]\n", + " [ 1.15820000e+03 1.91900000e+03]\n", + " [ 1.51660000e+03 1.91900000e+03]\n", + " [ 1.87500000e+03 1.91900000e+03]]\n", + "[ 2.51196044e-02 -4.76292254e-01 8.78928151e-01]\n", + " [ 3.47205729e-02 -5.00442371e-01 8.65073358e-01]\n", + " [ 4.41745073e-02 -5.23865488e-01 8.50654785e-01]\n", + " [ 5.34464803e-02 -5.46489553e-01 8.35758722e-01]\n", + " [ 6.25021519e-02 -5.68248008e-01 8.20480154e-01]\n", + " [-1.25552882e-01 -6.13675054e-01 7.79512285e-01]\n", + " [-9.98512655e-02 -6.09130322e-01 7.86759160e-01]\n", + " [-7.35878931e-02 -6.03917669e-01 7.93642407e-01]\n", + " [-4.68666323e-02 -5.98044811e-01 8.00091196e-01]\n", + " [-1.97916677e-02 -5.91523364e-01 8.06044912e-01]\n", + " [ 7.53212726e-03 -5.84369056e-01 8.11453063e-01]\n", + " [ 3.49989480e-02 -5.76602175e-01 8.16275080e-01]\n", + " [ 6.25021519e-02 -5.68248008e-01 8.20480154e-01]\n", + " [-1.84933186e-01 -4.50045539e-01 8.73646799e-01]\n", + " [-1.52634936e-01 -4.42275734e-01 8.83795650e-01]\n", + " [-1.19458908e-01 -4.33788444e-01 8.93060555e-01]\n", + " [-8.55889127e-02 -4.24602555e-01 9.01325251e-01]\n", + " [-5.12152181e-02 -4.14748167e-01 9.08493786e-01]\n", + " [-1.65366033e-02 -4.04267697e-01 9.14491208e-01]\n", + " [-1.91949673e-01 -4.63461819e-01 8.65077144e-01]\n", + " [-1.79990107e-01 -4.93713062e-01 8.50794320e-01]\n", + " [-1.67744218e-01 -5.23121011e-01 8.35587390e-01]\n", + " [-1.55282106e-01 -5.51527012e-01 8.19576368e-01]\n", + " [-1.42673243e-01 -5.78784038e-01 8.02903097e-01]\n", + " [-1.29985811e-01 -6.04755614e-01 7.85731720e-01]\n", + " [-1.20159127e-05 -4.11651092e-01 9.11341527e-01]\n", + " [ 1.20056863e-02 -4.43001503e-01 8.96440479e-01]\n", + " [ 2.39324540e-02 -4.73556330e-01 8.80438322e-01]\n", + " [ 3.56990060e-02 -5.03152458e-01 8.63460008e-01]\n", + " [ 4.72389581e-02 -5.31644245e-01 8.45649382e-01]\n", + " [ 5.84882824e-02 -5.58901415e-01 8.27168864e-01]\n", + " [-1.14457806e-01 -6.11706517eDEBUG:root:radec2pix: xyfp: [[-32.208296 -31.60697943]\n", + " [-32.20831882 -27.22055086]\n", + " [-32.20834163 -22.83412229]\n", + " [-32.20836444 -18.44769372]\n", + " [-32.20838725 -14.06126515]\n", + " [-32.20841007 -9.67483658]\n", + " [-32.20843288 -5.288408 ]\n", + " [-32.2084557 -0.90197943]\n", + " [-32.208296 -31.60697943]\n", + " [-27.82186743 -31.60695662]\n", + " [-23.43543886 -31.60693381]\n", + " [-19.04901029 -31.60691099]\n", + " [-14.66258171 -31.60688818]\n", + " [-10.27615314 -31.60686536]\n", + " [ -5.88972457 -31.60684255]\n", + " [ -1.503296 -31.60681974]\n", + " [-32.2084557 -0.90197943]\n", + " [-27.82202712 -0.90195662]\n", + " [-23.43559855 -0.9019338 ]\n", + " [-19.04916999 -0.90191099]\n", + " [-14.66274141 -0.90188818]\n", + " [-10.27631284 -0.90186536]\n", + " [ -5.88988428 -0.90184255]\n", + " [ -1.5034557 -0.90181973]\n", + " [ -1.503296 -31.60681974]\n", + " [ -1.50331881 -27.22039116]\n", + " [ -1.50334163 -22.83396259]\n", + " [ -1.50336444 -18.44753402]\n", + " [ -1.50338726 -14.06110544]\n", + " [ -1.50341007 -9.67467688]\n", + " [ -1.50343288 -5.2882483 ]\n", + " [ -1.5034557 -0.90181973]\n", + " [-32.19330594 -29.69447935]\n", + " [-32.19333391 -24.31847935]\n", + " [-32.19336187 -18.94247936]\n", + " [-32.19338983 -13.56647936]\n", + " [-32.19341779 -8.19047935]\n", + " [-32.19344575 -2.81447935]\n", + " [-30.29579608 -31.59196949]\n", + " [-24.91979608 -31.59194152]\n", + " [-19.54379608 -31.59191356]\n", + " [-14.16779608 -31.5918856 ]\n", + " [ -8.79179608 -31.59185764]\n", + " [ -3.41579608 -31.59182968]\n", + " [-30.29595562 -0.91696949]\n", + " [-24.91995562 -0.91694153]\n", + " [-19.54395562 -0.91691356]\n", + " [-14.16795562 -0.9168856 ]\n", + " [ -8.79195562 -0.91685764]\n", + " [ -3.41595563 -0.91682968]\n", + " [ -1.51830595 -29.69431981]\n", + " [ -1.51833391 -24.31831981]\n", + " [ -1.51836187 -18.94231981]\n", + " [ -1.51838983 -13.56631981]\n", + " [ -1.51841779 -8.19031981]\n", + " [ -1.51844575 -2.81431982]\n", + " [-32.19329608 -31.59197936]\n", + " [-32.19329608 -31.59197936]\n", + " [ -1.51845562 -0.91681981]\n", + " [ -1.51845562 -0.91681981]\n", + " [-30.29580595 -29.69446949]\n", + " [-24.91980594 -29.69444152]\n", + " [-19.54380595 -29.69441356]\n", + " [-14.16780595 -29.69438561]\n", + " [ -8.79180595 -29.69435764]\n", + " [ -3.41580595 -29.69432968]\n", + " [-30.29583391 -24.31846949]\n", + " [-24.91983391 -24.31844152]\n", + " [-19.54383391 -24.31841356]\n", + " [-14.16783391 -24.31838561]\n", + " [ -8.79183391 -24.31835764]\n", + " [ -3.41583391 -24.31832968]\n", + " [-30.29586187 -18.94246949]\n", + " [-24.91986187 -18.94244153]\n", + " [-19.54386187 -18.94241356]\n", + " [-14.16786187 -18.94238561]\n", + " [ -8.79186187 -18.94235764]\n", + " [ -3.41586187 -18.94232969]\n", + " [-30.29588983 -13.56646949]\n", + " [-24.91988983 -13.56644152]\n", + " [-19.54388984 -13.56641357]\n", + " [-14.16788983 -13.5663856 ]\n", + " [ -8.79188983 -13.56635764]\n", + " [ -3.41588983 -13.56632968]\n", + " [-30.29591779 -8.19046949]\n", + " [-24.91991779 -8.19044152]\n", + " [-19.54391779 -8.19041356]\n", + " [-14.16791779 -8.1903856 ]\n", + " [ -8.79191779 -8.19035764]\n", + " [ -3.41591779 -8.19032968]\n", + " [-30.29594575 -2.81446949]\n", + " [-24.91994576 -2.81444153]\n", + " [-19.54394575 -2.81441356]\n", + " [-14.16794576 -2.8143856 ]\n", + " [ -8.79194575 -2.81435764]\n", + " [ -3.41594575 -2.81432968]]\n", + ".20220000e+03]\n", + " [ 8.30000000e+01 1.56060000e+03]\n", + " [ 4.41400000e+02 1.56060000e+03]\n", + " [ 7.99800000e+02 1.56060000e+03]\n", + " [ 1.15820000e+03 1.56060000e+03]\n", + " [ 1.51660000e+03 1.56060000e+0 0.12182616 0.15660103 0.19047015\n", + " 0.01415593 0.05065593 0.08685581 0.12254563 0.15752301 0.1915915\n", + " 0.01421257 0.05085809 0.08720077 0.12302951 0.15814189 0.1923426\n", + " 0.01424114 0.05096003 0.08737459 0.12327308 0.15845303 0.1927197 ]\n", + " [-0.20853555 -0.18105588 -0.15288447 -0.12412547 -0.09488471 -0.06527159\n", + " -0.0353997 -0.00538646 -0.20853555 -0.20838958 -0.2079729 -0.20728684\n", + " -0.20633313 -0.20511339 -0.20362847 -0.2018782 -0.00538646 -0.00538259\n", + " -0.00537156 -0.00535349 -0.00532854 -0.00529689 -0.00525872 -0.00521415\n", + " -0.2018782 -0.17529764 -0.14802765 -0.12017919 -0.09186258 -0.06318839\n", + " -0.03426807 -0.00521415 -0.196646 -0.16248857 -0.12739553 -0.09156092\n", + " -0.05518617 -0.01848208 -0.20841259 -0.20805164 -0.2072855 -0.20611722\n", + " -0.20454967 -0.20258404 -0.00548838 -0.00547863 -0.00545803 -0.00542687\n", + " -0.0053855 -0.0053342 -0.19038695 -0.15733098 -0.12334981 -0.08864677\n", + " -0.05342545 -0.01789151 -0.20844284 -0.20844284 -0.00531377 -0.00531377\n", + " 3]\n", + " [ 1.87500000e+03 1.56060000e+03]\n", + " [ 8.30000003e+01 1.91900000e+03]\n", + " [ 4.41400000e+02 1.91900000e+03]\n", + " [ 7.99800000e+02 1.91900000e+03]\n", + " [ 1.15820000e+03 1.91900000e+03]\n", + " [ 1.51660000e+03 1.91900000e+03]\n", + " [ 1.87500000e+03 1.91900000e+03]]\n", + "-0.19661746 -0.19627694 -0.19555447 -0.19445357 -0.19297773 -0.19112874\n", + " -0.1624649 -0.16218264 -0.16158454 -0.16067502 -0.15945889 -0.15793949\n", + " -0.12737685 -0.12715419 -0.12668294 -0.12596768 -0.12501365 -0.12382499\n", + " -0.0915474 -0.09138626 -0.09104555 -0.09052922 -0.08984197 -0.08898771\n", + " -0.05517797 -0.05508029 -0.05487388 -0.05456144 -0.05414617 -0.05363087\n", + " -0.01847933 -0.01844651 -0.01837718 -0.0182723 -0.018133 -0.01796031]\n", + " [ 0.97801416 0.98347217 0.98824343 0.99226588 0.99548762 0.99786688\n", + " 0.99937258 0.99998484 0.97801416 0.97758156 0.97635099 0.97433939\n", + " 0.97157468 0.96809575 0.96395256 0.95920632 0.99998484 0.99949962\n", + " 0.99811915 0.99586168 0.99275675 0.98884464 0.98417584 0.97881096\n", + " 0.95920632 0.96405674 0.9683099 0.97190306 0.97478469 0.97691438\n", + " 0.97826264 0.97881096 0.9804738 0.98670967 0.99185123 0.9957987\n", + " 0.9984753 0.99982841 0.97794404 0.97687554 0.97462396 0.97123615\n", + " 0.9667837 0.96136325 0.99988348 0.99868507 0.99615882 0.99235447\n", + " 0.98734609 0.98123085 0.96140751 0.96695974 0.97155114 0.97508223\n", + " 0.97747856 0.97869042 0.97803381 0.97803381 0.97882992 0.97882992\n", + " 0.9803828 0.97929953 0.97701659 0.97358088 0.96906399 0.96356241\n", + " 0.98661554 0.98549511 0.98313339 0.97957769 0.97489983 0.969196\n", + " 0.99175456 0.99060389 0.98817822 0.98452554 0.97971818 0.9738524\n", + " 0.9957001 0.99452628 0.9920518 0.98832537 0.98342001 0.97743229\n", + " 0.99837538 0.99718585 0.99467828 0.99090201 0.9859307 0.97986124\n", + " 0.99972782 0.99853032 0.996006 0.99220455 0.9872 0.98108947]]\n", + "DEBUG:root:radec2pix: xyfp Shape: (96, 2)\n", + "6642 0.99852487]\n", + " [ 0.08777538 -0.01750018 0.99598656]\n", + " [ 0.12365776 -0.01740019 DEBUG:root:fitpix2pix: ccdpx: shape: (96, 2)\n", + "0.99217236]\n", + " [ 0.15882123 -0.0172675 0.98715635]\n", + " [ 0.1930708 -0.01710301 0.98103576]]\n", + "-01 7.82760850e-01]\n", + " [-8.25662938e-02 -6.05685648e-01 7.91408683e-01]\n", + " [-4.99341097e-02 -5.98668867e-01 7.99438660e-01]\n", + " [-1.67529080e-02 -5.90675945e-01 8.06734943e-01]\n", + " [ 1.67842141e-02 -5.81735887e-01 8.13204555e-01]\n", + " [ 5.04821050e-02 -5.71888101e-01 8.18776866e-01]\n", + " [-1.96089462e-01 -4.52614650e-01 8.69878670e-01]\n", + " [-1.96089462e-01 -4.52614650e-01 8.69878670e-01]\n", + " [ 6.23775977e-02 -5.68204686e-01 8.20519634e-01]\n", + " [ 6.23775977e-02 -5.68204686e-01 8.20519634e-01]\n", + " [-1.80779068e-01 -4.60935242e-01 8.68825432e-01]\n", + " [-1.68793764e-01 -4.91306943e-01 8.54474197e-01]\n", + " [-1.56544437e-01 -5.20834940e-01 8.39181032e-01]\n", + " [-1.44101635e-01 -5.49360499e-01 8.23066073e-01]\n", + " [-1.31535183e-01 -5.76736915e-01 8.06271063e-01]\n", + " [-1.18913403e-01 -6.02828211e-01 7.88959917e-01]\n", + " [-1.48445369e-01 -4.53272563e-01 8.78924318e-01]\n", + " [-1.36402046e-01 -4.839489DEBUG:root:fitpix2pix: visCut: True\n", + "97e-01 8.64400283e-01]\n", + " [-1.24158301e-01 -5.13782352e-01 8.48888927e-01]\n", + " [-1.11785784e-01 -5.42613446e-01 8.32511013e-01]\n", + " [-9.93551356e-02 -5.70296467e-01 8.15408178e-01]\n", + " [-8.69350174e-02 -5.96697163e-01 7.97743567e-01]\n", + " [-1.15241664e-01 -4.44872361e-01 8.88148603e-01]\n", + " [-1.03163260e-01 -4.75799043e-01 8.73483035e-01]\n", + " [-9.09491665e-02 -5.05886394e-01 8.57792053e-01]\n", + " [-7.86716360e-02 -5.34974459e-01 8.41197422e-01]\n", + " [-6.64015476e-02 -5.62918087e-01 8.23841041e-01]\n", + " [-5.42074710e-02 -5.89584805e-01 8.05885419e-01]\n", + " [-8.13520236e-02 -4.35752985e-01 8.96382276e-01]\n", + " [-6.92625730e-02 -4.66874244e-01 8.81607133e-01]\n", + " [-5.71036748e-02 -4.97163760e-01 8.65775587e-01]\n", + " [-4.49474875e-02 -5.26460583e-01 8.49010588e-01]\n", + " [-3.28643379e-02 -5.54619848e-01 8.31454605e-01]\n", + " [-2.09220465e-02 -5.81510499e-01 8.13269825e-01]\n", + " [-4.69669760e-02 -4.25943872e-01 9.03529701e-01]\n", + " [-3.48912286e-02 -4.57202429e-01 8.88677974e-01]\n", + " [-2.28136922e-02 -4.87641311e-01 8.72745946e-01]\n", + " [-1.08056950e-02 -5.17098528e-01 8.55857669e-01]\n", + " [ 1.06376201e-03 -5.45429102e-01 8.38156288e-01]\n", + " [ 1.27282385e-02 -5.72502786e-01 8.19803972e-01]\n", + " [-1.22854813e-02 -4.15486845e-01 9.09516217e-01]\n", + " [-2.48306263e-04 -4.46823847e-01 8.94621925e-01]\n", + " [ 1.17221541e-02 -4.77358108e-01 8.78630655e-01]\n", + " [ 2.35560104e-02 -5.06926753e-01 8.61667211e-01]\n", + " [ 3.51861452e-02 -5.35384357e-01 8.43875302e-01]\n", + " [ 4.65478848e-02 -5.62600775e-01 8.25417265e-01]]\n", + "DEBUG:root:mm_to_pix: fitpx.shape: (96, 2)\n", + "DEBUG:root:optics_fp: rtanth: [31.53710793 27.15083443 22.76462071 18.37850955 13.99259736 9.60715672\n", + " 5.22337543 0.86680593 31.53710793 31.87457578 32.80044965 34.26706764\n", + " 36.20878157 38.55387546 41.23358186 44.18706537 0.86680593 4.70645911\n", + " 9.05713384 13.4310871 17.81117737 22.19377139 26.57763063 30.96221766\n", + " 44.18706537 41.17129315 38.42050918 35.99551614 33.96616479 32.40686702\n", + " 31.3877559 30.96221766 29.62479828 24.2490533 18.8734536 13.49817273\n", + "DEBUG:root:radec2pix: curVec Shape: (96, 3)\n", + " 8.12384367 2.75604003 31.59497037 32.40914016 34.06266769 36.44147428\n", + " 39.41445822 42.8581467 2.31847961 7.58192329 12.93825823 18.30612583\n", + " 23.67768384 29.05088524 42.83223469 39.30633844 36.23781045 33.75162698\n", + " 31.98387863 31.05748561 31.52222904 31.52222904 30.94762955 30.94762955\n", + " 29.70218682 30.56681395 32.3147502 34.81319861 37.91407742 41.48250822\n", + " 24.34353743 25.39129827 27.47054774 30.37016151 33.88015908 37.83102431\n", + " 18.99469609 20.32015484 22.86529373 26.27807784 30.26641445 34.63202369\n", + " 13.66718319 15.4564585 18.67659162 22.72731378 27.24058114 32.02140662\n", + " 8.40167037 11.07692547 15.25159806 20.00817233 25.01690288 30.15239046\n", + " 3.49098634 8.0185534 13.1988698 18.49123795 23.82109044 29.16788596]\n", + "DEBUG:root:radec2pix: fitpx: [[ 2.13550000e+03 -4.99999783e-01]\n", + " [ 2.13550000e+03 2.91928571e+02]\n", + " [ 2.13550000e+03 5.84357143e+02]\n", + " [ 2.13550000e+03 8.76785714e+02]\n", + " [ 2.13550000e+03 1.16921429e+03]\n", + " [ 2.13550000e+03 1.46164286e+03]\n", + " [ 2.13550000e+03 1.75407143e+03]\n", + " [ 2.13550000e+03 2.04650000e+03]\n", + " [ 2.13550000e+03 -4.99999783e-01]\n", + " [ 2.42792857e+03 -5.00000080e-01]\n", + " [ 2.72035714e+03 -5.00000178e-01]\n", + " [ 3.01278571e+03 -4.99999867e-01]\n", + " [ 3.30521429e+03 -5.00000095e-01]\n", + " [ 3.59764286e+03 -5.00000221e-01]\n", + " [ 3.89007143e+03 -5.00000185e-01]\n", + " [ 4.18250000e+03 -5.00000018e-01]\n", + " [ 2.13550000e+03 2.04650000e+03]\n", + " [ 2.42792857e+03 2.04650000e+03]\n", + " [ 2.72035714e+03 2.04650000e+03]\n", + " [ 3.01278571e+03 2.04650000e+03]\n", + " [ 3.30521429e+03 2.04650000e+03]\n", + " [ 3.59764286e+03 2.04650000e+03]\n", + " [ 3.89007143e+03 2.04650000e+03]\n", + " [ 4.18250000e+03 2.04650000e+03]\n", + " [ 4.18250000e+03 -5.00000018e-01]\n", + " [ 4.18250000e+03 2.91928571e+02]\n", + " [ 4.18250000e+03 5.84357143e+02]\n", + " [ 4.18250000e+03 8.76785714e+02]\n", + " [ 4.18250000e+03 1.16921429e+03]\n", + " [ 4.18250000e+03 1.46164286e+03]\n", + " [ 4.18250000e+03 1.75407143e+03]\n", + " [ 4.18250000e+03 2.04650000e+03]\n", + " [ 2.13650000e+03 1.27000000e+02]\n", + " [ 2.13650000e+03 4.85400000e+02]\n", + " [ 2.13650000e+03 8.43800000e+02]\n", + " [ 2.13650000e+03 1.20220000e+03]\n", + " [ 2.13650000e+03 1.56060000e+03]\n", + " [ 2.13650000e+03 1.91900000e+03]\n", + " [ 2.26300000e+03 4.99999873e-01]\n", + " [ 2.62140000e+03 5.00000123e-01]\n", + " [ 2.97980000e+03 5.00000108e-01]\n", + " [ 3.33820000e+03 4.99999719e-01]\n", + " [ 3.69660000e+03 4.99999964e-01]\n", + " [ 4.05500000e+03 5.00000185e-01]\n", + " [ 2.26300000e+03 2.04550000e+03]\n", + " [ 2.62140000e+03 2.04550000e+03]\n", + " [ 2.97980000e+03 2.04550000e+03]\n", + " [ 3.33820000e+03 2.04550000e+03]\n", + " [ 3.69660000e+03 2.04550000e+03]\n", + " [ 4.05500000e+03 2.04550000e+03]\n", + " [ 4.18150000e+03 1.27000000e+02]\n", + " [ 4.18150000e+03 4.85400000e+02]\n", + " [ 4.18150000e+03 8.43800000e+02]\n", + " [ 4.18150000e+03 1.20220000e+03]\n", + " [ 4.18150000e+03 1.56060000e+03]\n", + " [ 4.18150000e+03 1.91900000e+03]\n", + " [ 2.13650000e+03 4.99999853e-01]\n", + " [ 2.13650000e+03 4.99999853e-01]\n", + " [ 4.18150000e+03 2.04550000e+03]\n", + " [ 4.18150000e+03 2.04550000e+03]\n", + " [ 2.26300000e+03 1.27000000e+02]\n", + " [ 2.62140000e+03 1.27000000e+02]\n", + " [ 2.97980000e+03 1.27000000e+02]\n", + " [ 3.33820000e+03 1.27000000e+02]\n", + " [ 3.69660000e+03 1.27000000e+02]\n", + " [ 4.05500000e+03 1.27000000e+02]\n", + " [ 2.26300000e+03 4.85400000e+02]\n", + " [ 2.62140000e+03 4.85400000e+02]\n", + " [ 2.97980000e+03 4.85400000e+02]\n", + " [ 3.33820000e+03 4.85400000e+02]\n", + " [ 3.69660000e+03 4.85400000e+02]\n", + " [ 4.05500000e+03 4.85400000e+02]\n", + " [ 2.26300000e+03 8.43800000e+02]\n", + " [ 2.62140000e+03 8.43800000e+02]\n", + " [ 2.97980000e+03 8.43800000e+02]\n", + " [ 3.33820000e+03 8.43800000e+02]\n", + " [ 3.69660000e+03 8.43800000e+02]\n", + " [ 4.05500000e+03 8.43800000e+02]\n", + " [ 2.26300000e+03 1.20220000e+03]\n", + " [ 2.62140000e+03 1.20220000e+03]\n", + " [ 2.97980000e+03 1.20220000e+03]\n", + " [ 3.33820000e+03 1.20220000e+03]\n", + " [ 3.69660000e+03 1.20220000e+03]\n", + " [ 4.05500000e+03 1.20220000e+03]\n", + " [ 2.26300000e+03 1.56060000e+03]\n", + " [ 2.62140000e+03 1.56060000e+03]\n", + " [ 2.97980000e+03 1.56060000e+03]\n", + " [ 3.33820000e+03 1.56060000e+03]\n", + " [ 3.69660000e+03 1.56060000e+03]\n", + " [ 4.05500000e+03 1.56060000e+03]\n", + " [ 2.26300000e+03 1.91900000e+03]\n", + " [ 2.621400DEBUG:root:radec2pix: lng: [270.42176524 270.49034045 270.58554379 270.72662079 270.95724718\n", + " 271.40230304 272.6202602 289.32090211 270.42176524 278.37487059\n", + " 286.01754065 293.1193046 299.54422335 305.24693184 310.24816583\n", + " 314.60671783 289.32090211 351.88332455 355.81697528 357.18453549\n", + " 357.87852145 358.29811982 358.57917324 358.78056782 314.60671783\n", + " 318.91052218 323.86153916 329.52530495 335.93162927 343.04519816\n", + " 350.73789032 358.78056782 270.47833289 270.58513886 270.75335014\n", + " 271.05727717 271.77214072 275.46283159 273.91137001 283.48836134\n", + " 292.36007687 300.23563069 307.02864268 312.79442784 342.55577414\n", + " 354.88167257 357.01022263 357.88894543 358.36857558 358.67064356\n", + " 316.39469688 322.09565632 328.83707711 336.69003224 345.58630386\n", + " 355.24690052 270.44938101 270.44938101 358.75219462 358.75219462\n", + " 274.16251665 284.32266507 293.64661849 301.81542209 308.76235319\n", + " 314.58099285 275.08757932 287.34521298 298.17498348 307.196148\n", + " 314.48659385 320.3241534 276.53899869 291.9063905DEBUG:root:optics_fp: cphi: [0.00780224 0.0090627 0.01080888 0.01338846 0.01758501 0.02561216\n", + " 0.04710747 0.28386977 0.00780224 0.14533491 0.27496322 0.39120201\n", + " 0.49136628 0.57525223 0.64424749 0.70045521 0.28386977 0.98428319\n", + " 0.99578049 0.99808345 0.99891062 0.99929852 0.9995109 0.99963964\n", + " 0.70045521 0.75176312 0.80558693 0.85985876 0.91123211 0.95507721\n", + " 0.98608706 0.99963964 0.00881221 0.01076578 0.01383213 0.0193404\n", + " 0.03213503 0.09472286 0.06831973 0.23248256 0.37902375 0.50180626\n", + " 0.60035228 0.67755053 0.93102393 0.99375313 0.9978592 0.99893119\n", + " 0.99936126 0.99957574 0.72226117 0.78705016 0.85369562 0.91657981\n", + " 0.96723916 0.99609029 0.00828177 0.00828177 0.99962616 0.99962616\n", + " 0.07267344 0.24649478 0.39952529 0.52527664 0.62411014 0.70001939\n", + " 0.08867076 0.29673788 0.46997825 0.60212258 0.69841939 0.76758588\n", + " 0.11364014 0.37079245 0.56463565 0.69588651 0.78180916 0.83848868\n", + " 0.15793745 0.48747001 0.6912696 0.80460719 0.86865107 0.90684836\n", + " 0.25692034 0.68020319 0.84650539 0.91395454 0.94586289 0.96305996\n", + " 0.61832382 0.93964081 0.97815648 0.98893108 0.99334495 0.99556615]\n", + ".1271878 0.12696445 0.12649338 0.12577923 0.12482642 0.12363768\n", + " 0.0913464 0.09118412 0.09084281 0.0903271 0.0896414 0.08878838\n", + " 0.05496643 0.05486748 0.05466012 0.05434775 0.0539337 0.05341999\n", + " 0.01825699 0.0182233 0.01815347 0.01804874 0.01791034 0.01773905]\n", + " [ 0.97804612 0.9835023 0.9882709 0.99228958 0.99550658 0.99788044\n", + " 0.9993802 0.99998599 0.97804612 0.97761228 0.9763799 0.97436602\n", + " 0.9715987 0.96811684 0.96396979 0.95921643 0.99998599 0.99949948\n", + " 0.99811729 0.99585778 0.99275046 0.98883543 0.98416308 0.97879432\n", + " 0.95921643 0.96406763 0.96831791 0.97190702 0.97478415 0.97690892\n", + " 0.97825182 0.97879432 0.98050502 0.98673815 0.99187539 0.99581708\n", + " 0.99848691 0.99983245 0.97797552 0.97690512 0.97465087 0.97125985\n", + " 0.96680364 0.96137714 0.99988415 0.99868386 0.99615519 0.9923479\n", + " 0.98733577 0.98121591 0.96141873 0.96696894 0.9715556 0.97508116\n", + " 0.97747135 0.97867638 0.97806575 0.97806575 0.97881331 0.97881331\n", + " 0.98041354 0.9793283 0.97704254 0.97360345 0.96908285 0.96357637\n", + " 0.98664355 0.98552109 0.9831564 0.9795969 0.97491482 0.9692068\n", + " 0.99177825 0.99062564 0.98819716 0.98454072 0.97972882 0.97385839\n", + " 0.99571799 0.99454231 0.99206523 0.98833534 0.98342556 0.97743289\n", + " 0.99838649 0.99719508 0.99468502 0.99090557 0.98593013 0.97985577\n", + " 0.99973135 0.99853197 0.9960052 0.99220076 0.98719237 0.98107714]]\n", + "DEBUG:root:radec2pix: camVec: [[ 0.00152888 0.00154215 0.00155354 0.00156302 0.00157054 0.00157606\n", + " 0.00157952 0.00158089 0.00152888 0.03055413 0.0594604 0.08813528\n", + " 0.11646734 0.14434605 0.17166149 0.1983039 0.00158089 0.03159291\n", + " 0.06147904 0.0911219 0.12040769 0.14922671 0.17747265 0.2050409\n", + " 0.1983039 0.20004855 0.20153434 0.2027606 0.20372608 0.20442907\n", + " 0.20486781 0.2050409 0.00163462 0.00165059 0.00166353 0.00167335\n", + " 0.00167995 0.00168324 0.01419184 0.04970047 0.08491857 0.11964057\n", + " 0.15366298 0.18678351 0.01467408 0.05138704 0.08779394 0.12368372\n", + " 0.15885436 0.19311093 0.19900616 0.20096941 0.20254341 0.2037261\n", + " 0.2045144 0.20490517 0.00162826 0.00162826 0.20494776 0.20494776\n", + " 0.01424722 0.04989441 0.08525013 0.12010852 0.15426631 0.18752167\n", + " 0.01438645 0.05038177 0.08608239 0.1212815 0.15577635 0.18936679\n", + " 0.01449922 0.05077617 0.08675481 0.12222707 0.15699061 0.19084708\n", + " 0.01458479 0.05107523 0.08726392 0.1229415 0.15790584 0.1919602\n", + " 0.01464229 0.05127607 0.08760541 0.12341989 0.15851749 0.19270261\n", + " 0.01467095 0.05137612 0.08777538 0.12365776 0.15882123 0.1930708 ]\n", + " [-0.20769103 -0.1801941 -0.15200928 -0.12324112 -0.09399571 -0.06438234\n", + " -0.03451442 -0.00450904 -0.20769103 -0.20754198 -0.20712371 -0.20643751\n", + " -0.2054851 -0.20426815 -0.20278791 -0.2010451 -0.00450904 -8 304.59126569\n", + " 314.33729311 321.66504236 327.20736404 279.1393103 299.43995741\n", + " 314.06556227 323.90144592 330.60294465 335.34278839 285.09401101\n", + " 313.41621828 328.3557916 336.49369688 341.42440255 344.68693562\n", + " 309.81698293 341.12351394 348.72452469 351.99035546 353.79501012\n", + " 354.93771634]\n", + "0.00450572\n", + " -0.00449643 -0.00448126 -0.00446035 -0.00443385 -0.00440189 -0.00436457\n", + " -0.2010451 -0.17444879 -0.14716869 -0.11931453 -0.09099614 -0.06232394\n", + " -0.03340929 -0.00436457 -0.1957935 -0.16161745 -0.12651199 -0.09067166\n", + " -0.05429781 -0.01760077 -0.20756647 -0.20720276 -0.20643606 -0.20526936\n", + " -0.20370571 -0.20174719 -0.00461102 -0.00460274 -0.00458538 -0.00455917\n", + " -0.0045244 -0.0044813 -0.18954613 -0.15647489 -0.12248558 -0.08778034\n", + " -0.05256249 -0.01703747 -0.20759824 -0.20759824 -0.00446412 -0.00446412\n", + " -0.19576354 -0.19542056 -0.19469787 -0.19359884 -0.19212697 -0.19028463\n", + " -0.16159264 -0.16130879 -0.16071144 -0.15980479 -0.15859338 -0.15708053\n", + " -0.12649245 -0.12626898 -0.DEBUG:root:radec2pix: camVec Shape: (3, 96)\n", + "DEBUG:root:optics_fp: sphi: [-0.99996956 -0.99995893 -0.99994158 -0.99991037 -0.99984537 -0.99967195\n", + " -0.99888983 -0.95886284 -0.99996956 -0.98938252 -0.96145475 -0.92030483\n", + " -0.87095303 -0.81797608 -0.76481709 -0.71369637 -0.95886284 -0.17659731\n", + " -0.09176722 -0.06188241 -0.04666441 -0.03744961 -0.03127246 -0.02684394\n", + " -0.71369637 -0.65943324 -0.59247759 -0.51053198 -0.41189324 -0.2963571\n", + " -0.16622968 -0.02684394 -0.99996117 -0.99994205 -0.99990433 -0.99981296\n", + " -0.99948354 -0.99550368 -0.99766348 -0.97260056 -0.92538694 -0.86498004\n", + " -0.79973567 -0.73547623 -0.36495814 -0.11160071 -0.06539891 -0.04622212\n", + " -0.0357361 -0.02912641 -0.69162042 -0.616889 -0.5207723 -0.39985178\n", + " -0.2538669 -0.08834096 -0.99996571 -0.99996571 -0.02734129 -0.02734129\n", + " -0.99735579 -0.96914412 -0.91672217 -0.85093152 -0.78133638 -0.71412384\n", + " -0.99606099 -0.95495897 -0.882678 -0.79840366 -0.71568873 -0.64094611\n", + " -0.99352198 -0.92871576 -0.82534028 -0.71815177 -0.62351779 -0.54491901\n", + " -0.98744912 -0.87313973 -0.72259694 -0.59380744 -0.49542438 -0.42145706\n", + " -0.96643258 -0.73302362 -0.53238015 -0.40581658 -0.32456648 -0.26928704\n", + " -0.78592344 -0.34216247 -0.20786992 -0.14837557 -0.11517726 -0.094064 ]\n", + "DEBUG:root:radec2pix: lat: [78.01259544 79.61854981 81.2561548 82.92023352 84.60572556 86.30750292\n", + " 88.02000573 89.72623162 78.01259544 77.8905989 77.5557472 77.02861409\n", + " 76.33783962 75.51523956 74.59210732 73.59715789 89.72623162 88.17123291\n", + " 86.46586111 84.76551164 83.07960166 81.41406813 79.77423864 78.16538766\n", + " 73.59715789 74.60763881 75.5491728 76.39298182 77.10737428 77.65965515\n", + " 78.01977483 78.16538766 78.70852006 80.69871958 82.73128852 84.79686317\n", + " 86.88594315 88.98689611 77.99183548 77.69708601 77.10179122 76.25561048\n", + " 75.21673598 74.0417777 89.11867119 87.04263922 84.95641064 82.89040132\n", + " 80.8558565 78.86257349 74.04815363 75.2440736 76.30818941 77.18330532\n", + " 77.80960312 78.1346569 78.0179859 78.0179859 78.1707132 78.1707132\n", + " 78.68041726 78.36422733 77.72853599 76.83064382 75.73566662 74.50486571\n", + " 80.66353948 80.27068815 79.49543516 78.42701765 77.15572991 75.75689035\n", + " 82.68520532 82.17800874 81.21001267 79.9277617 78.4547664 76.877901\n", + " 84.73149404 84.03535931 82.79194264 81.24820065 79.5578398 77.80619197\n", + " 86.77660248 85.72142555 84.09351686 82.26517071 80.37322779 78.47497463\n", + " 88.68716566 86.88752222 84.86498838 82.8264064 80.80719889 78.82380063]\n", + "DEBUG:root:optics_fp: xyfp: [[ -0.24606 31.536148 ]\n", + " [ -0.24606 27.14971943]\n", + " [ -0.24606 22.76329086]\n", + " [ -0.24606 18.37686229]\n", + " [ -0.24606 13.99043371]\n", + " [ -0.24606 9.60400514]\n", + " [ -0.24606 5.21757658]\n", + " [ -0.24606 0.831148 ]\n", + " [ -0.24606 31.536148 ]\n", + " [ -4.63248857 31.536148 ]\n", + " [ -9.01891714 31.536148 ]\n", + " [-13.40534571 31.536148 ]\n", + " [-17.79177429 31.536148 ]\n", + " [-22.17820286 31.536148 ]\n", + " [-26.56463143 31.536148 ]\n", + " [-30.95106 31.536148 ]\n", + " [ -0.24606 0.831148 ]\n", + " [ -4.63248857 0.831148 ]\n", + " [ -9.01891714 DEBUG:root:radec2pix: xyfp: [[-32.29046994 -31.71666141]\n", + " [-32.28860507 -27.33023323]\n", + " [-32.2867402 -22.94380505]\n", + " [-32.28487534 -18.55737688]\n", + " [-32.28301047 -14.1709487 ]\n", + " [-32.2811456 -9.78452053]\n", + " [-32.27928073 -5.39809235]\n", + " [-32.27741587 -1.01166418]\n", + " [-32.29046994 -31.71666141]\n", + " [-27.90404176 -31.71852627]\n", + " [-23.51761359 -31.72039114]\n", + " [-19.13118541 -31.722256 ]\n", + " [-14.74475724 -31.72412087]\n", + " [-10.35832906 -31.72598574]\n", + " [ -5.97190089 -31.72785061]\n", + " [ -1.58547272 -31.72971547]\n", + " [-32.27741587 -1.01166418]\n", + " [-27.8909877 -1.01352905]\n", + " [-23.50455952 -1.01539391]\n", + " [-19.11813134 -1.01725878]\n", + " [-14.73170317 -1.01912365]\n", + " [-10.345275 -1.02098851]\n", + " [ -5.95884682 -1.02285338]\n", + " [ -1.57241864 -1.02471825]\n", + " [ -1.58547272 -31.72971547]\n", + " [ -1.58360785 -27.3432873 ]\n", + " [ -1.58174298 -22.95685912]\n", + " [ -1.57987811 -18.57043094]\n", + " [ -1.57801325 -14.18400278]\n", + " [ -1.57614838 -9.7975746 ]\n", + " [ -1.57428351 -5.41114642]\n", + " [ -1.57241864 -1.02471825]\n", + " [-32.27465685 -29.80416795]\n", + " [-32.27237127 0.831148 ]\n", + " [-13.40534571 0.831148 ]\n", + " [-17.79177429 0.831148 ]\n", + " [-22.17820285 0.831148 ]\n", + " [-26.56463143 0.831148 ]\n", + " [-30.95106 0.831148 ]\n", + " [-30.95106 31.536148 ]\n", + " [-30.95106 27.14971943]\n", + " [-30.95106 22.76329086]\n", + " [-30.95106 18.37686228]\n", + " [-30.95106 13.99043371]\n", + " [-30.95106 9.60400514]\n", + " [-30.95106 5.21757657]\n", + " [-30.95106 0.831148 ]\n", + " [ -0.26106 29.623648 ]\n", + " [ -0.26106 24.247648 ]\n", + " [ -0.26106 18.87164801]\n", + " [ -0.26106 13.495648 ]\n", + " [ -0.26106 8.119648 ]\n", + " [ -0.26106 2.743648 ]\n", + " [ -2.15856 31.521148 ]\n", + " [ -7.53456 31.521148 ]\n", + " [-12.91056 31.521148 ]\n", + " [-18.28656 31.521148 ]\n", + " [-23.66256 31.521148 ]\n", + " [-29.03856 31.521148 ]\n", + " [ -2.15856 0.846148 ]\n", + " [ -7.53456 0.846148 ]\n", + " [-12.91056 0.846148 ]\n", + " [-18.28655999 0.846148 ]\n", + " [-23.66256 0.846148 ]\n", + " [-29.03856 0.846148 ]\n", + " [-30.93606 29.623648 ]\n", + " [-30.93606 24.247648 ]\n", + " [-30.93606 18.871648 ]\n", + " [-30.93606 13.495648 ]\n", + " [-30.93606 8.119648 ]\n", + " [-30.93606 2.743648 ]\n", + " [ -0.26106 31.521148 ]\n", + " [ -0.26106 31.521148 ]\n", + " [-30.93606 0.846148 ]\n", + " [-30.93606 0.846148 ]\n", + " [ -2.15856 29.623648 ]\n", + " [ -7.53456 29.623648 ]\n", + " [-12.91056 29.623648 ]\n", + " [-18.28656 29.623648 ]\n", + " [-23.66256 29.623648 ]\n", + " [-29.03856 29.623648 ]\n", + " [ -2.15856 24.247648 ]\n", + " [ -7.53456 24.247648 ]\n", + " [-12.91056 24.247648 ]\n", + " [-18.28656 24.247648 ]\n", + " [-23.66256 24.247648 ]\n", + " [-29.03856 24.247648 ]\n", + " [ -2.15856 18.871648 ]\n", + " [ -7.53456 18.871648 ]\n", + " [-12.91056 18.871648 ]\n", + " [-18.28656 18.871648 ]\n", + " [-23.66256 18.871648 ]\n", + " [-29.03856 18.871648 ]\n", + " [ -2.15856 13.495648 ]\n", + " [ -7.53456 13.495648 ]\n", + " [-12.91056 13.495648 ]\n", + " [-18.28656 13.495648 ]\n", + " [-23.66256 13.495648 ]\n", + " [-29.03856 13.495648 ]\n", + " [ -2.15856 8.119648 ]\n", + " [ -7.53456 8.119648 ]\n", + " [-12.91056 8.119648 ]\n", + " [-18.28656 00e+03 1.91900000e+03]\n", + " [ 2.97980000e+03 1.91900000e+03]\n", + " [ 3.33820000e+03 1.91900000e+03]\n", + " [ 3.69660000e+03 1.91900000e+03]\n", + " [ 4.05500000e+03 1.91900000e+03]]\n", + " 8.119648 ]\n", + " [-23.66256 8.119648 ]\n", + " [-29.03856 8.119648 ]\n", + " [ -2.15856 2.743648 ]\n", + " [ -7.53456 2.743648 ]\n", + " [-12.91056 2.743648 ]\n", + " [-18.28656 2.743648 ]\n", + " [-23.66256 2.743648 ]\n", + " [-29.03856 2.743648 ]]\n", + "DEBUG:root:radec2pix: fitpx: [[4271.49999987 4155.49999987]\n", + " [4271.49999978 3863.07142838]\n", + " [4271.49999978 3570.64285699]\n", + " [4271.50000021 3278.21428583]\n", + " [4271.50000028 2985.78571441]\n", + " [4271.50000021 2693.35714292]\n", + " [4271.50000016 2400.92857146]\n", + " [4271.5 2108.5 ]\n", + " [4271.49999987 4155.49999987]\n", + " [3979.07142882 4155.50000028]\n", + " [3686.64285714 4155.5 ]\n", + " [3394.2142857 4155.49999997]\n", + " [3101.78571428 4155.49999999]\n", + " [2809.35714281 4155.49999986]\n", + " [2516.92857145 4155.50000014]\n", + " [2224.49999999 4155.4999997 ]\n", + " [4271.5 2108.5 ]\n", + " [3979.0714288 2108.50000001]\n", + " [3686.64285693 2108.49999999]\n", + " [3394.21428614 2108.50000002]\n", + " [3101.7857146 2108.50000002]\n", + " [2809.35714263 2108.49999998]\n", + " [2516.92857131 2108.49999998]\n", + " [2224.49999992 2108.49999995]\n", + " [2224.49999999 4155.4999997 ]\n", + " [2224.50000001 3863.07142868]\n", + " [2224.5 3570.64285711]\n", + " [2224.50000002 3278.21428594]\n", + " [2224.50000001 2985.78571436]\n", + " [2224.49999998 2693.35714271]\n", + " [2224.50000001 2400.92857146]\n", + " [2224.49999992 2108.49999995]\n", + " [4270.5 4028. ]\n", + " [4270.50000018 3669.60000013]\n", + " [4270.49999988 3311.19999993]\n", + " [4270.50000028 2952.80000012]\n", + " [4270.5 2594.4 ]\n", + " [4270.50000006 2236.00000001]\n", + " [4143.99999986 4154.49999985]\n", + " [3785.60000014 4154.50000018]\n", + " [3427.20000004 4154.50000006]\n", + " [3068.8 4154.49999999]\n", + " [2710.39999994 4154.49999977]\n", + " [2351.99999997 4154.49999974]\n", + " [4144.00000019 2109.50000001]\n", + " [3785.59999998 2109.5 ]\n", + " [3427.19999968 2109.49999999]\n", + " [3068.80000035 2109.50000002]\n", + " [2710.39999998 2109.5 ]\n", + " [2351.99999973 2109.49999993]\n", + " [2225.500DEBUG:root:mm_to_pix: fitpx: [[0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]]\n", + "00001 4028.00000029]\n", + " [2225.50000001 3669.60000014]\n", + " [2225.50000002 3311.20000027]\n", + " [2225.50000003 2952.8012579928 -0.12508774 -0.12413931 -0.12295784\n", + " -0.09065756 -0.09049631 -0.09015775 -0.08964573 -0.08896468 -0.0881182\n", + " -0.05428931 -0.05419219 -0.05398843 -0.05368064 -0.05327188 -0.0527647\n", + " -0.01759801 -0.01756642 -0.01750018 -0.01740019 -0.0172675 -0.01710301]\n", + " [ 0.97819328 0.98362986 0.98837785 0.99237552 0.99557136 0.99792406\n", + " 0.99940295 0.99998858 0.97819328 0.97774883 0.97650613 0.97448229\n", + " 0.97170532 0.9682142 0.96405881 0.95929997 0.99998858 0.99949066\n", + " 0.99809825 0.99582966 0.99271451 0.98879307 0.98411589 0.97874367\n", + " 0.95929997 0.9641308 0.96836217 0.97193219 0.97478992 0.97689533\n", + " 0.9782193 0.97874367 0.98064379 0.9868521 0.99196368 0.99587944\n", + " 0.99852337 0.99984368 0.97811796 0.97703474 0.97476817 0.97136534\n", + " 0.96689796 0.96146242 0.9998817 0.99866821 0.9961281 0.99231122\n", + " 0.98729166 0.9811667 0.96149301 0.9670196 0.97158296 0.97508476\n", + " 0.9774513 0.97863353 0.97821282 0.97821282 0.97876273 0.97876273\n", + " 0.98054763 0.97944952 0.97715155 0.97370089 0.9691693 0.96365314\n", + " 0.98675268 0.98561714 0.98324039 0.97966996 0.97497788 0.9692605\n", + " 0.9918616 0.99069568 0.9882551 0.98458804 0.979767 0.97388848\n", + " 0.99577532 0.99458621 0.99209707 0.98835673 0.98343837 0.97743873\n", + " 0.99841789 0.9972131 0.99469118 0.99090157 0.985918 0.97983753\n", + " 0.9997375 0.99852487 0.99598656 0.99217236 0.98715635 0.98103576]]\n", + "000024]\n", + " [2225.49999999 2594.39999997]\n", + " [2225.49999991 2235.99999983]\n", + " [4270.50000028 4154.50000027]\n", + " [4270.50000028 4154.50000027]\n", + " [2225.50000021 2109.50000012]\n", + " [2225.50000021 2109.50000012]\n", + " [4143.99999997 4027.99999997]\n", + " [3785.60000006 4028.00000007]\n", + " [3427.20000002 4028.00000003]\n", + " [3068.8 4028.00000001]\n", + " [2710.40000007 4028.00000025]\n", + " [2352. 4028.00000001]\n", + " [4143.99999988 3669.5999999 ]\n", + " [3785.59999992 3669.59999992]\n", + " [3427.20000003 3669.60000003]\n", + " [3068.79999996 3669.59999994]\n", + " [2710.39999994 3669.59999984]\n", + " [2352.00000003 3669.60000024]\n", + " [4143.99999986 3311.19999992]\n", + " [3785.60000024 3311.20000018]\n", + " [3427.19999985 3311.19999985]\n", + " [3068.80000018 3311.20000023]\n", + " [2710.39999997 3311.19999993]\n", + " [2351.99999998 3311.19999989]\n", + " [4144.00000009 2952.80000004]\n", + " [3785.60000017 2952.80000009]\n", + " [3427.19999999 2952.79999999]\n", + " [3068.79999994 2952.79999994]\n", + " [2710.40000012 2952.80000019]\n", + " [2351.99999999 2952.79999997]\n", + " [4143.99999998 2594.4 ]\n", + " [3785.60000016 2594.40000005]\n", + " [3427.20000028 2594.40000012]\n", + " [3068.79999967 2594.39999981]\n", + " [2710.40000007 2594.40000006]\n", + " [2351.99999992 2594.39999981]\n", + " [4143.99999971 2235.99999997]\n", + " [3785.59999981 2235.99999998]\n", + " [3427.2 2236. ]\n", + " [3068.79999989 2235.99999998]\n", + " [2710.40000023 2236.00000007]\n", + " [2352.00000024 2236.00000019]]\n", + "DEBUG:root:cartToSphere: vec: [[-0.00114705 0.20838541 0.97804612]\n", + " [-0.00115629 0.18089194 0.9835023 ]\n", + " [-0.0011641 0.15270652 0.9882709 ]\n", + " [-0.00117048 0.12393558 0.99228958]\n", + " [-0.00117539 0.09468513 0.99550658]\n", + " [-0.00117881 0.06506336 0.99788044]\n", + " [-0.00118068 0.03518275 0.9993802 ]\n", + " [-0.00118097 0.0051606 0.99998599]\n", + " [-0.00114705 0.20838541 0.97804612]\n", + " [-0.03018244 0.20823844 0.97761228]\n", + " [-0.05910007 0.20782077 0.9763799 ]\n", + " [-0.08778716 0.20713345 0.97436602]\n", + " [-0.11613176 0.20617803 0.9715987 ]\n", + " [-0.14402308 0.20495645 0.96811684]\n", + " [-0.17135219 0.20347155 0.96396979]\n", + " [-0.19801388 0.2017284 0.95921643]\n", + " [-0.00118097 0.0051606 0.99998599]\n", + " [-0.03121228 0.00515607 0.99949948]\n", + " [-0.06111791 0.00514464 0.99811729]\n", + " [-0.09077999 0.00512646 0.99585778]\n", + " [-0.12008538 0.00510175 0.99275046]\n", + " [-0.14892541 0.0050707 0.98883543]\n", + " [-0.17719395 0.00503345 0.98416308]\n", + " [-0.20478471 0.00499006 0.97879432]\n", + " [-0.19801388 0.2017284 0.95921643]\n", + " [-0.19975823 0.17512925 0.96406763]\n", + " [-0.20124936 0.14784829 0.96831791]\n", + " [-0.20248221 0.11999042 0.97190702]\n", + " [-0.20345393 0.09166442 0.97478415]\n", + " [-0.20416257 0.06298098 0.97690892]\n", + " [-0.20460656 0.03405194 0.97825182]-24.42816844]\n", + " [-32.2700857 -19.05216893]\n", + " [-32.26780012 -13.67616941]\n", + " [-32.26551454 -8.3001699 ]\n", + " [-32.26322896 -2.92417038]\n", + " [-30.37796373 -31.70247449]\n", + " [-25.00196422 -31.70476008]\n", + " [-19.62596471 -31.70704565]\n", + " [-14.24996519 -31.70933123]\n", + " [ -8.87396568 -31.71161681]\n", + " [ -3.49796617 -31.71390239]\n", + " [-30.36492242 -1.02747727]\n", + " [-24.98892291 -1.02976285]\n", + " [-19.61292339 -1.03204842]\n", + " [-14.23692388 -1.034334 ]\n", + " [ -8.86092437 -1.03661958]\n", + " [ -3.48492485 -1.03890516]\n", + " [ -1.59965962 -29.81720927]\n", + " [ -1.59737405 -24.44120975]\n", + " [ -1.59508847 -19.06521024]\n", + " [ -1.59280289 -13.68921073]\n", + " [ -1.59051731 -8.31321121]\n", + " [ -1.58823174 -2.9372117 ]\n", + " [-32.27546357 -31.70166778]\n", + " [-32.27546357 -31.70166778]\n", + " [ -1.58742502 -1.03971187]\n", + " [ -1.58742502 -1.03971187]\n", + " [-30.37715702 -29.80497466]\n", + " [-25.00115751 -29.80726024]\n", + " [-19.625158 -29.80954582]\n", + " [-14.24915848 -29.8118314 ]\n", + " [ -8.87315897 -29.81411698]\n", + " [ -3.49715945 -29.81640256]\n", + " [-30.37487145 -24.42897515]\n", + " [-24.99887193 -24.43126073]\n", + " [-19.62287241 -24.43354631]\n", + " [-14.2468729 -24.43583188]\n", + " [ -8.87087339 -24.43811746]\n", + " [ -3.49487388 -24.44040305]\n", + " [-30.37258587 -19.05297564]\n", + " [-24.99658635 -19.05526122]\n", + " [-19.62058684 -19.05754679]\n", + " [-14.24458732 -19.05983237]\n", + " [ -8.86858781 -19.06211795]\n", + " [ -3.4925883 -19.06440353]\n", + " [-30.37030029 -13.67697612]\n", + " [-24.99430077 -13.6792617 ]\n", + " [-19.61830126 -13.68154728]\n", + " [-14.24230175 -13.68383286]\n", + " [ -8.86630223 -13.68611844]\n", + " [ -3.49030272 -13.68840401]\n", + " [-30.36801471 -8.30097661]\n", + " [-24.9920152 -8.30326219]\n", + " [-19.61601568 -8.30554776]\n", + " [-14.24001617 -8.30783335]\n", + " [ -8.86401666 -8.31011893]\n", + " [ -3.48801714 -8.3124045 ]\n", + " [-30.36572914 -2.9249771 ]\n", + " [-24.98972962 -2.92726267]\n", + " [-19.6137301 -2.92954825]\n", + " [-14.23773059 -2.93183383]\n", + " [ -8.86173108 -2.93411941]\n", + " [ -3.48573156 -2.93640499]]\n", + "DEBUG:root:radec2pix: camVec Shape: (3, 96)\n", + "DEBUG:root:optics_fp: rtanth: [31.36436077 26.97807037 22.59183361 18.20568928 13.8197254 9.43419362\n", + " 5.05021974 0.69781153 31.36436077 31.70156673 32.63030877 34.10229142\n", + " 36.05103355 38.40402676 41.09188526 44.05335752 0.69781153 4.66402697\n", + " 9.02778296 13.40634529 17.78878395 22.17280059 26.55761376 30.94288484\n", + " 44.05335752 41.04621131 38.30621526 35.89459992 33.88155828 32.34160155\n", + " 31.34453543 30.94288484 29.45203736 24.07626653 18.70062748 13.32527965\n", + " 7.95081375 2.58274138 31.42169962 32.23771351 33.8971959 36.28460223\n", + " 39.26738572 42.72102005 2.2467047 7.54947995 12.91295338 18.28378612\n", + " 23.65696634 29.03119064 42.70202201 39.18809499 36.13521339 33.66902518\n", + " 31.92578297 31.02758019 31.34947523 31.34947523 30.92821126 30.92821126\n", + " 29.52890302 30.39577404 32.15047118 34.65840831 37.76983569 41.34874196\n", + " 24.17023416 25.22195839 27.31111317 30.22332497 33.74617895 37.70891894\n", + " 18.82145258 20.1542562 22.71439544 26.14376082 30.14716324 34.52548949\n", + " 13.49432055 15.2984853 18.54166578 22.61295734 27.14223759 31.93523187\n", + " 8.23098104 10.94056736 15.14746618 19.92481371 24.9470123 30.09171641\n", + " 3.34726194 7.94DEBUG:root:radec2pix: camVec Shape: (3, 96)\n", + "676841 13.14917661 18.45137705 23.78673027 29.13702987]\n", + "\n", + " [-0.20478471 0.00499006 0.97879432]\n", + " [-0.00125101 0.19649007 0.98050502]\n", + " [-0.00126235 0.1623152 0.98673815]\n", + " [-0.00127136 0.12720686 0.99187539]\n", + " [-0.00127799 0.09136033 0.99581708]\n", + " [-0.00128216 0.05497503 0.99848691]\n", + " [-0.00128379 0.01826009 0.99983245]\n", + " [-0.01381426 0.20826196 0.97797552]\n", + " [-0.04933618 0.20789982 0.97690512]\n", + " [-0.08456905 0.20713224 0.97465087]\n", + " [-0.11930642 0.20596186 0.97125985]\n", + " [-0.15334441 0.20439232 0.96680364]\n", + " [-0.18648385 0.20242966 0.96137714]\n", + " [-0.01428247 0.00526224 0.99988415]\n", + " [-0.05101935 0.00525184 0.99868386]\n", + " [-0.08744986 0.00523103 0.99615519]\n", + " [-0.12336368 0.00520016 0.9923479 ]\n", + " [-0.15856056 0.00515961 0.98733577]\n", + " [-0.19284509 0.0051096 0.98121591]\n", + " [-0.1987148 0.19022738 0.96141873]\n", + " [-0.20068229 0.157155 0.96696894]\n", + " [-0.20226422 0.12316211 0.9715556 ]\n", + " [-0.20345456 0.08844755 0.97508116]\n", + " [DEBUG:root:mm_to_pix: fitpx.shape: (96, 2)\n", + "-0.20424964 0.05321501 0.97747135]\n", + " [-0.20464672 0.01767079 0.97867638]\n", + " [-0.00124645 0.20829266 0.97806575]\n", + " [-0.00124645 0.20829266 0.97806575]\n", + " [-0.20469148 0.0050897 0.97881331]\n", + " [-0.20469148 0.0050897 0.97881331]\n", + " [-0.01386808 0.19646111 0.98041354]\n", + " [-0.04952932 0.19611969 0.9793283 ]\n", + " [-0.08490071 0.19539637 0.97704254]\n", + " [-0.11977552 0.19429398 0.97360345]\n", + " [-0.15394951 0.1928159 0.96908285]\n", + " [-0.18722234 0.19096695 0.96357637]\n", + " [-0.01400325 0.16229116 0.98664355]\n", + " [-0.05001432 0.16200846 0.98552109]\n", + " [-0.08573269 0.16141067 0.9831564 ]\n", + " [-0.12095098 0.16050163 0.9795969 ]\n", + " [-0.15546507 0.15928501 0.97491482]\n", + " [-0.18907339 0.15776388 0.9692068 ]\n", + " [-0.01411268 0.1271878 0.99177825]\n", + " [-0.05040698 0.12696445 0.99062564]\n", + " [-0.08640482 0.12649338 0.98819716]\n", + " [-0.12189811 0.12577923 0.98454072]\n", + " [-0.15668376 0.12482642 0.97972882]\n", + " [-0.19056116 0.12363768 0.97385839]\n", + " [-0.01419584 0.091346DEBUG:root:radec2pix: curVec: [[-2.21890857e-01 -3.94351438e-01 8.91768687e-01]\n", + " [-2.14427167e-01 -3.71191168e-01 9.03458968e-01]\n", + " [-2.06498102e-01 -3.47322932e-01 9.14726907e-01]\n", + " [-1.98145227e-01 -3.22829425e-01 9.25483458e-01]\n", + " [-1.89407731e-01 -2.97796037e-01 9.35650700e-01]\n", + " [-1.80323442e-01 -2.72311686e-01 9.45161257e-01]\n", + " [-1.70929743e-01 -2.46469232e-01 9.53958039e-01]\n", + " [-1.61264200e-01 -2.20365450e-01 9.61994244e-01]\n", + " [-2.21890857e-01 -3.94351438e-01 8.91768687e-01]\n", + " [-1.97482103e-01 -4.05707049e-01 8.92413923e-01]\n", + " [-1.72340048e-01 -4.16876525e-01 8.92475697e-01]\n", + " [-1.46573084e-01 -4.27807001e-01 8.91906666e-01]\n", + " [-1.20287209e-01 -4.38447911e-01 8.90670768e-01]\n", + " [-9.35875233e-02 -4.48751003e-01 8.88742883e-01]\n", + " [-6.65792887e-02 -4.58670655e-01 8.86108587e-01]\n", + " [-3.93683971e-02 -4.68164353e-01 8.82763993e-01]\n", + " [-1.61264200e-01 -2.20365450e-01 9.61994244e-01]\n", + " [-1.35345728e-01 -2.30581463e-01 9.63594169e-01]\n", + " [-1.08784922e-01 -2.40819748e-01 9.64454089e-01]\n", + " DEBUG:root:fitpix2pix: ccdpx: shape: (96, 2)\n", + "DEBUG:root:optics_fp: cphi: [0.00736113 0.00855795 0.01021949 0.01268159 0.01670634 0.02447236\n", + " 0.04571623 0.33085868 0.00736113 0.14564913 0.27593163 0.39264701\n", + " 0.49309519 0.57710146 0.64609955 0.70223653 0.33085868 0.98998261\n", + " 0.99733613 0.99879292 0.99931459 0.99955889 0.99969254 0.99977352\n", + " 0.70223653 0.7536841 0.80759419 0.86185323 0.91305945 0.9565351\n", + " 0.98696237 0.99977352 0.00834839 0.01021242 0.01314806 0.01845192\n", + " 0.03092476 0.09520001 0.06821327 0.23324784 0.38042607 0.50355732\n", + " 0.60221419 0.67936994 0.95400922 0.99601258 0.99863886 0.99932131\n", + " 0.99959465 0.99973085 0.72410803 0.78903751 0.85569931 0.91837755\n", + " 0.96852369 0.99656102 0.0078431 0.0078431 0.99976286 0.99976286\n", + " 0.07258573 0.24738232 0.40109449 0.52718454 0.6260916 0.70191681\n", + " 0.08867837 0.2981282 0.47216592 0.60454556 0.70074236 0.76966876\n", + " 0.11387947 0.37309127 0.56771826 0.69888097 0.78439808 0.84063622\n", + " 0.15883549 0.49151121 0.69548104 0.80800475 0.87123904 0DEBUG:root:fitpix2pix: visCut: True\n", + ".90881999\n", + " 0.26040359 0.68729315 0.85132238 0.9170162 0.94790417 0.96449723\n", + " 0.6403374 0.94621821 0.98069844 0.99024463 0.99414155 0.99609937]\n", + "[-8.16823155e-02 -2.51029060e-01 9.64527040e-01]\n", + " [-5.41398848e-02 -2.61160419e-01 9.63775964e-01]\n", + " [-2.62624287e-02 -2.71166715e-01 9.62174047e-01]\n", + " [ 1.84212575e-03 -2.81002757e-01 9.59705193e-01]\n", + " [ 3.00632665e-02 -2.90625617e-01 9.56364444e-01]\n", + " [-3.93683971e-02 -4.68164353e-01 8.82763993e-01]\n", + " [-2.99107087e-02 -4.44851154e-01 8.95104910e-01]\n", + " [-2.02355649e-02 -4.20717897e-01 9.06965806e-01]\n", + " [-1.03806869e-02 -3.95841126e-01 9.18260336e-01]\n", + " [-3.84119093e-04 -3.70302461e-01 9.28911158e-01]\n", + " [ 9.71530302e-03 -3.44189759e-01 9.38849840e-01]\n", + " [ 1.98778785e-02 -3.17597364e-01 9.48017291e-01]\n", + " [ 3.00632665e-02 -2.90625617e-01 9.56364444e-01]\n", + " [-2.18614057e-01 -3.84384655e-01 8.96914896e-01]\n", + " [-2.09146823e-01 -3.55512440e-01 9.10971191e-01]\n", + " [-1.99022356e-01 -3.25658647e-01 9.24303277e-01]\n", + " [-1.88313738e-01 -2.94979302e-01 9.36763122e-01]\n", + " [-1.77090710e-01 -2.63638147e-01 9.48226665e-01]\n", + " [-1.65422149e-01 -2.31807777e-01 9.58593067e-01]\n", + " [-2.11320595e-01 -3.99243868e-01 8.92159145e-01]\n", + " [-1.80896754e-01 -4.13042576e-01 8.92564953e-01]\n", + " [-1.49479560e-01 -4.26509040e-01 8.92045907e-01]\n", + " [-1.17265065e-01 -4.39549230e-01 8.90530953e-01]\n", + " [-8.44468680e-02 -4.52074349e-01 8.87973823e-01]\n", + " [-5.12190173e-02 -4.64001671e-01 8.84352340e-01]\n", + " [-1.50082690e-01 -2.24903490e-01 9.62753139e-01]\n", + " [-1.17872701e-01 -2.37446730e-01 9.64222524e-01]\n", + " [-8.47976764e-02 -2.49972055e-01 9.64532698e-01]\n", + " [-5.10446416e-02 -2.62388385e-01 9.63611322e-01]\n", + " [-1.68065584e-02 -2.74608995e-01 9.61409091e-01]\n", + " [ 1.77167619e-02 -2.86551602e-01 9.57900984e-01]\n", + " [-3.53676244e-02 -4.58073485e-01 8.88210456e-01]\n", + " [-2.36262055e-02 -4.28939605e-01 9.03024151e-01]\n", + " [-1.15954669e-02 -3.98649615e-01 9.17030005e-01]\n", + " [ 6.54730746e-04 -3.67351578e-01 9.30081926e-01]\n", + " [ 1.30528905e-02 -3.35207261e-01 9.42053987e-01]\n", + " [ 2.55256438e-02 -3.02392887e-01 9.52841531e-01]\n", + " [-2.21784078e-01 -3.94312622e-01 8.91812412e-01]\n", + " [-2.21784078e-01 -3.94312622e-01 8.91812412e-01]\n", + " [ 2.99318655e-02 -2.90685882e-01 9.56350250e-01]\n", + " [ 2.99318655e-02 -2.90685882e-01 9.56350250e-01]\n", + " [-2.08086741e-01 -3.89295955e-01 8.97300712e-01]\n", + " [-1.77489547e-01 -4.03050399e-01 8.97801669e-01]\n", + " [-1.45908689e-01 -4.16490552e-01 8.97355155e-01]\n", + " [-1.13538790e-01 -4.29522033e-01 8.95890488e-01]\n", + " [-8.05727301e-02 -4.42055584e-01 8.93361571e-01]\n", + " [-4.72045447e-02 -4.54007992e-01 8.89746298e-01]\n", + " [-1.98456089e-01 -3.60359156e-01 9.11458424e-01]\n", + " [-1.67415516e-01 -3.73965913e-01 9.12206962e-01]\n", + " [-1.35416391e-01 -3.87310234e-01 9.11950209e-01]\n", + " [-1.02649816e-01 -4.00297043e-01 9.10618083e-01]\n", + " [-6.93072936e-02 -4.12836145e-01 9.08164532e-01]\n", + " [-3.55834010e-02 -4.24843263e-01 9.04567313e-01]\n", + " [-1.88192874e-01 -3.30428127e-01 9.24878746e-01]\n", + " [-1.56776587e-01 -3.43852134e-01 9.25843838e-01]\n", + " [-1.24424182e-01 -3.57067064e-01 9.25754684e-01]\n", + " [-9.13242693e-02 -3.69977780e-01 9.24541140e-01]\n", + " [-5.76679074e-02 -3.82493826e-01 9.22156649e-01]\n", + " [-2.36508306e-02 -3.94530439e-01 9.18578451e-01]\n", + " [-1.77368938e-01 -2.99658266e-01 9.37414094e-01]\n", + " [-1.45641722e-01 -3.12862701e-01 9.38565618e-01]\n", + " [-1.12999405e-01 -3.25913046e-01 9.38622299e-01]\n", + " [-7.96291785e-02 -3.38714795e-01 9.37513457e-01]\n", + " [-4.57223500e-02 -3.51177945e-01 9.35191701e-01]\n", + " [-1.14760771e-02 -3.63217859e-01 9.31633558e-01]\n", + " [-1.66053196e-01 -2.68213163e-01 9.48940480e-01]\n", + " [-1.34078274e-01 -2.81160884e-01 9.50248164e-01]\n", + " [-1.01209046e-01 -2.94011219e-01 9.50428394e-01]\n", + " [-6.76321936e-02 -3.06670881e-01 9.49409741e-01]\n", + " [-3.35396628e-02 -3.19050954e-01 9.47143907e-01]\n", + " [ 8.70030062e-04 -3.31067493e-01 9.43606676e-01]\n", + " [-1.54314160e-01 -2.36265724e-01 9.59356893e-01]\n", + " [-1.22154362e-01 -2.48920604e-01 9.60789699e-01]\n", + " [-8.91217050e-02 -2.61536533e-01 9.61070218e-01]\n", + " [-5.54030351e-02 -2.74021825e-01 9.60126316e-01]\n", + " [-2.11910570e-02 -2.86289128e-01 9.57908907e-01]\n", + " [ 1.33146748e-02 -2.98255660e-01 9.54393148e-01]]\n", + "DEBUG:root:radec2pix: curVec Shape: (96, 3)\n", + "DEBUG:root:cartToSphere: vec: [[ 0.00152888 -0.20769103 0.97819328]\n", + " [ 0.00154215 -0.1801941 0.98362986]\n", + " [ 0.00155354 -0.15200928 0.98837785]\n", + " [ 0.00156302 -0.12324112 0.99237552]\n", + " [ 0.00157054 -0.09399571 0.99557136]\n", + " [ 0.00157606 -0.06438234 0.99792406]\n", + " [ 0.00157952 -0.03451442 0.99940295]\n", + " [ 0.00158089 -0.00450904 0.99998858]\n", + " [ 0.00152888 -0.20769103 0.97819328]\n", + " [ 0.03055413 -0.20754198 0.97774883]\n", + " [ 0.0594604 -0.20712371 0.97650613]\n", + " [ 0.08813528 -0.20643751 0.97448229]\n", + " [ 0.11646734 -0.2054851 0.97170532]\n", + " [ 0.14434605 -0.20426815 0.9682142 ]\n", + " [ 0.17166149 -0.20278791 0.96405881]\n", + " [ 0.1983039 -0.2010451 0.95929997]\n", + " [ 0.00158089 -0.00450904 0.99998858]\n", + " [ 0.03159291 -0.00450572 0.99949066]\n", + " [ 0.06147904 -0.00449643 0.99809825]\n", + " [ 0.0911219 -0.00448126 0.99582966]\n", + " [ 0.12040769 -0.00446035 0.99271451]\n", + " [ 0.14922671 -0.00443385 0.98879307]\n", + " [ 0.17747265 -0.00440189 0.98411589]\n", + " [ 0.2050409 -0.00436457 0.97874367]\n", + " [ 0.1983039 -0.2010451 0.95929997]\n", + " [ 0.20004855 -0.17444879 0.9641308 ]\n", + " [ 0.20153434 -0.14716869 0.96836217]\n", + " [ 0.2027606 -0.11931453 0.97193219]\n", + " [ 0.20372608 -0.09099614 0.97478992]\n", + " [ 0.20442907 -0.06232394 0.97689533]\n", + " [ 0.20486781 -0.03340929 0.9782193 ]\n", + " [ 0.2050409 -0.00436457 0.97874367]\n", + " [ 0.00163462 -0.1957935 0.98064379]\n", + " [ 0.00165059 -0.16161745 0.9868521 ]\n", + " [ 0.00166353 -0.12651199 0.99196368]\n", + " [ 0.00167335 -0.09067166 0.99587944]\n", + " [ 0.00167995 -0.05429781 0.99852337]\n", + " [ 0.00168324 -0.01760077 0.99984368]\n", + " [ 0.01419184 -0.20756647 0.97811796]\n", + " [ 0.04970047 -0.20720276 0.97703474]\n", + " [ 0.08491857 -0.20643606 0.97476817]\n", + " [ 0.11964057 -0.20526936 0.97136534]\n", + " [ 0.15366298 -0.20370571 0.96689796]\n", + " [ 0.18678351 -0.20174719 0.96146242]\n", + " [ 0.01467408 -0.00461102 0.9998817 ]\n", + " [ 0.05138704 -0.00460274 0.99866821]\n", + " [ 0.08779394 -0.00458538 0.9961281 ]\n", + " [ 0.12368372 -0.00455917 0.99231122]\n", + " [ 0.15885436 -0.0045244 0.98729166]\n", + " [ 0.19311093 -0.0044813 0.9811667 ]\n", + " [ 0.19900616 -0.18954613 0.96149301]\n", + " [ 0.20096941 -0.15647489 0.9670196 ]\n", + " [ 0.20254341 -0.12248558 0.97158296]\n", + " [ 0.2037261 -0.08778034 0.97508476]\n", + " [ 0.2045144 -0.05256249 0.9774513 ]\n", + " [ 0.20490517 -0.01703747 0.97863353]\n", + " [ 0.00162826 -0.20759824 0.97821282]\n", + " [ 0.00162826 -0.20759824 0.97821282]\n", + " [ 0.20494776 -0.00446412 0.97876273]\n", + " [ 0.20494776 -0.00446412 0.97876273]\n", + " [ 0.01424722 -0.19576354 0.98054763]\n", + " [ 0.04989441 -0.19542056 0.97944952]\n", + " [ 0.08525013 -0.19469787 0.97715155]\n", + " [ 0.12010852 -0.19359884 0.97370089]\n", + " [ 0.15426631 -0.19212697 0.9691693 ]\n", + " [ 0.18752167 -0.19028463 0.96365314]\n", + " [ 0.01438645 -0.16159264 0.98675268]\n", + " [ 0.05038177 -0.16130879 0.98561714]\n", + " [ 0.08608239 -0.16071144 0.98324039]\n", + " [ 0.1212815 -0.15980479 0.97966996]\n", + " [ 0.15577635 -0.15859338 0.97497788]\n", + " [ 0.18936679 -0.15708053 0.9692605 ]\n", + " [ 0.01449922 -0.12649245 0.9918616 ]\n", + " [ 0.05077617 -0.12626898 0.99069568]\n", + " [ 0.08675481 -0.12579928 0.9882551 ]\n", + " [ 0.12222707 -0.12508774 0.98458804]\n", + " [ 0.15699061 -0.12413931 0.979767 ]\n", + " [ 0.19084708 -0.12295784 0.97388848]\n", + " [ 0.01458479 -0.09065756 0.99577532]\n", + " [ 0.05107523 -0.09049631 0.99458621]\n", + " [ 0.08726392 -0.09015775 0.99209707]\n", + " [ 0.1229415 -0.08964573 0.98835673]\n", + " [ 0.15790584 -0.08896468 0.98343837]\n", + " [ 0.1919602 -0.0881182 0.97743873]\n", + " [ 0.01464229 -0.05428931 0.99841789]\n", + " [ 0.05127607 -0.05419219 0.9972131 ]\n", + " [ 0.08760541 -0.05398843 0.99469118]\n", + " [ 0.12341989 -0.05368064 0.99090157]\n", + " [ 0.15851749 -0.05327188 0.985918 ]\n", + " [ 0.19270261 -0.0527647 0.97983753]\n", + " [ 0.01467095 -0.01759801 0.9997375 ]\n", + " [ 0.05137612 -0.01756642 0.99852487]\n", + " [ 0.08777538 -0.01750018 0.99598656]\n", + " [ 0.12365776 -0.01740019 0.99217236]\n", + " [ 0.15882123 -0.0172675 0.98715635]\n", + " [ 0.1930708 -0.01710301 0.98103576]]\n", + "DEBUG:root:optics_fp: sphi: [-0.99997291 -0.99996338 -0.99994778 -0.99991959 -0.99986044 -0.99970051\n", + " -0.99895447 -0.94368031 -0.99997291 -0.98933631 -0.96117727 -0.91968926\n", + " -0.86997536 -0.81667246 -0.76325315 -0.71194371 -0.94368031 -0.14118936\n", + " -0.07294272 -0.04911935 -0.03701833 -0.02969904 -0.02479556 -0.0212815\n", + " -0.71194371 -0.65723685 -0.5897386 -0.50715777 -0.40782648 -0.29161723\n", + " -0.16095117 -0.0212815 -0.99996515 -0.99994785 -0.99991356 -0.99982975\n", + " -0.99952172 -0.99545817 -0.99767076 -0.97241732 -0.92481134 -0.86396182\n", + " -0.79833456 -0.73379594 -0.29977727 -0.0892129 -0.05215778 -0.03683652\n", + " -0.02846988 -0.02319957 -0.68968657 -0.61434502 -0.51747338 -0.39570528\n", + " -0.24892141 -0.08286212 -0.99996924 -0.99996924 -0.02177659 -0.02177659\n", + " -0.99736218 -0.96891795 -0.91603668 -0.84975082 -0.77974951 -0.71225894\n", + " -0.99606031 -0.95452584 -0.88150969 -0.79657056 -0.71341443 -0.63844342\n", + " -0.99349457 -0.92779465 -0.82322292 -0.71523799 -0.62025773 -0.54160017\n", + " -0.98730506 -0.87087125 -0.71854445 -0.58917597 -0.49085898 -0.41718848\n", + " -0.96549986 -0.72638015 -0.52464293 -0.39884995 -0.31855562 -0.26409298\n", + " -0.76809376 -0.32352912 -0.19552639 -0.13933979 -0.10808594 -0.08823861]\n", + "DEBUG:root:radec2pix: lng: [270.42176524 270.49034045 270.58554379 270.72662079 270.95724718\n", + " 271.40230304 272.6202602 289.32090211 270.42176524 278.37487059\n", + " 286.01754065 293.1193046 299.54422335 305.24693184 310.24816583\n", + " 314.60671783 289.32090211 351.88332455 355.81697528 357.18453549\n", + " 357.87852145 358.29811982 358.57917324 358.78056782 314.60671783\n", + " 318.91052218 323.86153916 329.52530495 335.93162927 343.04519816\n", + " 350.73789032 358.78056782 270.47833289 270.58513886 270.75335014\n", + " 271.05727717 271.77214072 275.46283159 273.91137001 283.48836134\n", + " 292.36007687 300.23563069 307.02864268 312.79442784 342.55577414\n", + " 354.88167257 357.01022263 357.88894543 358.36857558 358.67064356\n", + " 316.39469688 322.09565632 328.83707711 336.69003224 345.58630386\n", + " 355.24690052 270.44938101 270.44938101 358.75219462 358.75219462\n", + " 274.16251665 284.32266507 293.64661849 301.81542209 308.76235319\n", + " 314.58099285 275.08757932 287.34521298 298.17498348 307.196148\n", + " 314.48659385 320.3241534 276.53899869 291.90639058 304.59126569\n", + " 314.33729311 321.66504236 327.20736404 279.1393103 299.43995741\n", + " 314.06556227 323.90144592 330.60294465 335.34278839 285.09401101\n", + " 313.41621828 328.3557916 336.49369688 341.42440255 344.68693562\n", + " 309.81698293 341.12351394 348.72452469 351.99035546 353.79501012\n", + " 354.93771634]\n", + "DEBUG:root:radec2pix: lat: [78.01259544 79.61854981 81.2561548 82.92023352 84.60572556 86.30750292\n", + " 88.02000573 89.72623162 78.01259544 77.8905989 77.5557472 77.02861409\n", + " 76.33783962 75.51523956 74.59210732 73.59715789 89.72623162 88.17123291\n", + " 86.46586111 84.76551164 83.07960166 81.41406813 79.77423864 78.16538766\n", + " 73.59715789 74.60763881 75.5491728 76.39298182 77.10737428 77.65965515\n", + " 78.01977483 78.16538766 78.70852006 80.69871958 82.73128852 84.79686317\n", + " 86.88594315 88.98689611 77.99183548 77.69708601 77.10179122 76.25561048\n", + " 75.21673598 74.0417777 89.11867119 87.042634 0.99571799]\n", + " [-0.05070556 0.09118412 0.99454231]\n", + " [-0.08691471 0.09084281 0.99206523]\n", + " [-0.12261435 0.0903271 0.98833534]\n", + " [-0.15760261 0.0896414 0.98342556]\n", + " [-0.19168088 0.08878838 0.97743289]\n", + " [-0.01425179 0.05496643 0.99838649]\n", + " [-0.05090701 0.05486748 0.99719508]\n", + " [-0.08725814 0.05466012 0.99468502]\n", + " [-0.12309542 0.05434775 0.99090557]\n", + " [-0.15821798 0.0539337 0.98593013]\n", + " [-0.19242913 0.05341999 0.97985577]\n", + " [-0.01427955 0.01825699 0.99973135]\n", + " [-0.05100809 0.0182233 0.99853197]\n", + " [-0.08743051 0.01815347 0.9960052 ]\n", + " [-0.12333654 0.01804874 0.99220076]\n", + " [-0.15852587 0.01791034 0.98719237]\n", + " [-0.19280295 0.01773905 0.98107714]]\n", + "DEBUG:root:radec2pix: xyfp: [[-32.208296 -31.60697943]\n", + " [-32.20831882 -27.22055086]\n", + " [-32.20834163 -22.83412229]\n", + " [-32.20836444 -18.44769372]\n", + " [-32.20838725 -14.06126515]\n", + " [-32.20841007 -9.67483658]\n", + " [-32.20843288 -5.288408 ]\n", + " [-32.2084557 -0.90197943]\n", + " [-32.208296 -31.60697943]\n", + " [-27.82186743 -31.60695662]\n", + " [DEBUG:root:fitpix2pix: ccdpx: shape: (96, 2)\n", + "922 84.95641064 82.89040132\n", + " 80.8558565 78.86257349 74.04815363 75.2440736 76.30818941 77.18330532\n", + " 77.80960312 78.1346569 78.0179859 78.0179859 78.1707132 78.1707132\n", + " 78.68041726 78.36422733 77.72853599 76.83064382 75.73566662 74.50486571\n", + " 80.66353948 80.27068815 79.49543516 78.42701765 77.15572991 75.75689035\n", + " 82.68520532 82.17800874 81.21001267 79.9277617 78.4547664 76.877901\n", + " 84.73149404 84.03535931 82.79194264 81.24820065 79.5578398 77.80619197\n", + " 86.77660248 85.72142555 84.09351686 82.26517071 80.37322779 78.47497463\n", + " 88.68716566 86.88752222 84.86498838 82.8264064 80.80719889 78.82380063]\n", + "DEBUG:root:optics_fp: xyfp shape: (96, 2)\n", + "-23.43543886 -31.60693381]\n", + " [-19.04901029 -31.60691099]\n", + " [-14.66258171 -31.60688818]\n", + " [-10.27615314 -31.60686536]\n", + " [ -5.88972457 -31.60684255]\n", + " [ -1.503296 -31.60681974]\n", + " [-32.2084557 -0.90197943]\n", + " [-27.82202712 -0.90195662]\n", + " [-23.43559855 -0.9019338 ]\n", + " [-19.04916999 -0.90191099]\n", + " [-14.66274141 DEBUG:root:radec2pix: ccdpx: [[-4.45000003e+01 -5.00000268e-01]\n", + " [-4.44999998e+01 2.91928572e+02]\n", + " [-4.44999999e+01 5.84357143e+02]\n", + " [-4.45000000e+01 8.76785714e+02]\n", + " [-4.44999998e+01 1.16921429e+03]\n", + " [-4.44999999e+01 1.46164286e+03]\n", + " [-4.44999997e+01 1.75407143e+03]\n", + " [-4.44999999e+01 2.04650000e+03]\n", + " [-4.45000003e+01 -5.00000268e-01]\n", + " [ 2.47928572e+02 -4.99999720e-01]\n", + " [ 5.40357143e+02 -5.00000140e-01]\n", + " [ 8.32785714e+02 -4.99999791e-01]\n", + " [ 1.12521429e+03 -4.99999975e-01]\n", + " [ 1.41764286e+03 -4.99999912e-01]\n", + " [ 1.71007143e+03 -4.99999978e-01]\n", + " [ 2.00250000e+03 -4.99999991e-01]\n", + " [-4.44999999e+01 2.04650000e+03]\n", + " [ 2.47928571e+02 2.04650000e+03]\n", + " [ 5.40357143e+02 2.04650000e+03]\n", + " [ 8.32785715e+02 2.04650000e+03]\n", + " [ 1.12521429e+03 2.04650000e+03]\n", + " [ 1.41764286e+03 2.04650000e+03]\n", + " [ 1.71007143e+03 2.04650000e+03]\n", + " [ 2.00250000e+03 2.04650000e+03]\n", + " [ 2.00250000e+03 -4.99999991e-01]\n", + " [ 2.00250000e+03 2.91928572e+02]\n", + " [ 2.00250000e+03 5.84357143e+02]\n", + " [ 2.00250000e+03 8.76785 -0.90188818]\n", + " [-10.27631284 -0.90186536]\n", + " [ -5.88988428 -0.90184255]\n", + " [ -1.5034557 -0.90181973]\n", + " [ -1.503296 -31.60681974]\n", + " [ -1.50331881 -27.22039116]\n", + " [ -1.50334163 -22.83396259]\n", + " [ -1.50336444 -18.44753402]\n", + " [ -1.50338726 -14.06110544]\n", + " [ -1.50341007 -9.67467688]\n", + " [ -1.50343288 -5.2882483 ]\n", + " [ -1.5034557 -0.90181973]\n", + " [-32.19330594 -29.69447935]\n", + " [-32.19333391 -24.31847935]\n", + " [-32.19336187 -18.94247936]\n", + " [-32.19338983 -13.56647936]\n", + " [-32.19341779 -8.19047935]\n", + " [-32.19344575 -2.81447935]\n", + " [-30.29579608 -31.59196949]\n", + " [-24.91979608 -31.59194152]\n", + " [-19.54379608 -31.59191356]\n", + " [-14.16779608 -31.5918856 ]\n", + " [ -8.79179608 -31.59185764]\n", + " [ -3.41579608 -31.59182968]\n", + " [-30.29595562 -0.91696949]\n", + " [-24.91995562 -0.91694153]\n", + " [-19.54395562 -0.91691356]\n", + " [-14.16795562 -0.9168856 ]\n", + " [ -8.79195562 -0.91685764]\n", + " [ -3.41595563 -0.91682968]\n", + " [ -1.51830595 -29.69431981]\n", + " [ -1.51833391 -24.31831981]\n", + " [ -1.51836187 -18.94231981]\n", + " [ -1.51838983 -13.56631981]\n", + " [ -1.51841779 -8.19031981]\n", + "DEBUG:root:cartToSphere: vec: [[ 0.00110855 -0.20853555 0.97801416]\n", + " [ 0.00111823 -0.18105588 0.98347217]\n", + " [ 0.00112655 -0.15288447 0.98824343]\n", + " [ 0.00113349 -0.12412547 0.99226588]\n", + " [ 0.001139 -0.09488471 0.99548762]\n", + " [ 0.00114306 -0.06527159 0.99786688]\n", + " [ 0.00114562 -0.0353997 0.99937258]\n", + " [ 0.00114666 -0.00538646 0.99998484]\n", + " [ 0.00110855 -0.20853555 0.97801416]\n", + " [ 0.03013432 -0.20838958 0.97758156]\n", + " [ 0.05904256 -0.2079729 0.97635099]\n", + " [ 0.08772073 -0.20728684 0.97433939]\n", + " [ 0.11605724 -0.20633313 0.97157468]\n", + " [ 0.14394136 -0.20511339 0.96809575]\n", + " [ 0.17126266 -0.20362847 0.96395256]\n", + " [ 0.19791015 -0.2018782 0.95920632]\n", + " [ 0.00114666 -0.00538646 0.99998484]\n", + " [ 0.03116962 -0.00538259 0.99949962]\n", + " [ 0.06106803 -0.00537156 0.99811915]\n", + " [ 0.09072406 -0.00535349 0.99586168]\n", + " [ 0.1200235 -0.00532854 0.99275675]\n", + " [ 0.1488564 -0.00529689 0.98884464]\n", + " [ 0.17711651 -0.00525872 0.98417584]\n", + " [ 0.20469956 -0.00521415 0.97881096]\n", + " [ 0.19791015 -0.2018782 0.95920715e+02]\n", + " [ 2.00250000e+03 1.16921429e+03]\n", + " [ 2.00250000e+03 1.46164286e+03]\n", + " [ 2.00250000e+03 1.75407143e+03]\n", + " [ 2.00250000e+03 2.04650000e+03]\n", + " [-4.34999998e+01 1.27000000e+02]\n", + " [-4.35000000e+01 4.85400000e+02]\n", + " [-4.35000001e+01 8.43800000e+02]\n", + " [-4.35000000e+01 1.20220000e+03]\n", + " [-4.35000001e+01 1.56060000e+03]\n", + " [-4.34999999e+01 1.91900000e+03]\n", + " [ 8.30000001e+01 5.00000092e-01]\n", + " [ 4.41400000e+02 4.99999764e-01]\n", + " [ 7.99800000e+02 4.99999911e-01]\n", + " [ 1.15820000e+03 5.00000156e-01]\n", + " [ 1.51660000e+03 4.99999840e-01]\n", + " [ 1.87500000e+03 4.99999915e-01]\n", + " [ 8.29999998e+01 2.04550000e+03]\n", + " [ 4.41400000e+02 2.04550000e+03]\n", + " [ 7.99800000e+02 2.04550000e+03]\n", + " [ 1.15820000e+03 2.04550000e+03]\n", + " [ 1.51660000e+03 2.04550000e+03]\n", + " [ 1.87500000e+03 2.04550000e+03]\n", + " [ 2.00150000e+03 1.27000000e+02]\n", + " [ 2.00150000e+03 4.85400000e+02]\n", + " [ 2.00150000e+03 8.43800000e+02]\n", + " [ 2.00150000e+03 1.20220000e+03]\n", + " [ 2.00150000e+03 1.56060000e+03]\n", + " [ 2.00150000e+03 1.91900000e+03]\n", + " [-4.350000DEBUG:root:radec2pix: lng: [ 90.31538026 90.36623882 90.43676438 90.5410988 90.71121584\n", + " 91.03796151 91.92203204 102.88976492 90.31538026 98.24711833\n", + " 105.87469321 112.96816895 119.3908045 125.09574844 130.10218059\n", + " 134.46760759 102.88976492 170.61981741 175.18843619 176.76786642\n", + " 177.56728748 178.0499121 178.37286738 178.60412954 134.46760759\n", + " 138.7587586 143.69705248 149.3491301 155.74646239 162.85581906\n", + " 170.55107093 178.60412954 90.36478543 90.44558973 90.57261901\n", + " 90.80142559 91.33604138 94.02159324 93.79493665 103.34977578\n", + " 112.20947139 120.08219547 126.87889854 132.65213472 159.7741798\n", + " 174.12277646 176.57679256 177.5862344 178.13623505 178.48225333\n", + " 136.25009833 141.93538112 148.66205842 156.50402904 165.39685811\n", + " 175.06487905 90.34286209 90.34286209 178.57562014 178.57562014\n", + " 94.0377805 104.17347615 113.48518905 121.65239591 128.60482826\n", + " 134.43270854 94.93153704 107.15620301 117.97484261 127.00098521\n", + " 134.30466928 140.15819331 96.33160595 111.65389200e+01 4.99999958e-01]\n", + " [-4.35000000e+01 4.99999958e-01]\n", + " [ 2.00150000e+03 2.04550000e+03]\n", + " [ 2.00150000e+03 2.04550000e+03]\n", + " [ 8.30000002e+01 1.27000000e+02]\n", + " [ 4.41400000e+02 1.27000000e+02]\n", + " [ 7.99800000e+02 1.27000000e+02]\n", + " [ 1.15820000e+03 1.27000000e+02]\n", + " [ 1.51660000e+03 1.27000000e+02]\n", + " [ 1.87500000e+03 1.27000000e+02]\n", + " [ 8.29999999e+01 4.85400000e+02]\n", + " [ 4.41400000e+02 4.85400000e+02]\n", + " [ 7.99800000e+02 4.85400000e+02]\n", + " [ 1.15820000e+03 4.85400000e+02]\n", + " [ 1.51660000e+03 4.85400000e+02]\n", + " [ 1.87500000e+03 4.85400000e+02]\n", + " [ 8.30000001e+01 8.43800000e+02]\n", + " [ 4.41400000e+02 8.43800000e+02]\n", + " [ 7.99800000e+02 8.43800000e+02]\n", + " [ 1.15820000e+03 8.43800000e+02]\n", + " [ 1.51660000e+03 8.43800000e+02]\n", + " [ 1.87500000e+03 8.43800000e+02]\n", + " [ 8.29999999e+01 1.20220000e+03]\n", + " [ 4.41400000e+02 1.20220000e+03]\n", + " [ 7.99800000e+02 1.20220000e+03]\n", + " [ 1.15820000e+03 1.20220000e+03]\n", + " [ 1.51660000e+03 1.20220000e+03]\n", + " [ 1.87500000e+03 1.20220000e+03]\n", + " [ 8.29999999e+01 1.56060000e+DEBUG:root:fitpix2pix: visCut: True\n", + " [ -1.51844575 -2.81431982]\n", + " [-32.19329608 -31.59197936]\n", + " [-32.19329608 -31.59197936]\n", + " [ -1.51845562 -0.91681981]\n", + " [ -1.51845562 -0.91681981]\n", + " [-30.29580595 -29.69446949]\n", + " [-24.91980594 -29.69444152]\n", + " [-19.54380595 -29.69441356]\n", + " [-14.16780595 -29.69438561]\n", + " [ -8.79180595 -29.69435764]\n", + " [ -3.41580595 -29.69432968]\n", + " [-30.29583391 -24.31846949]\n", + " [-24.91983391 -24.31844152]\n", + " [-19.54383391 -24.31841356]\n", + " [-14.16783391 -24.31838561]\n", + " [ -8.79183391 -24.31835764]\n", + " [ -3.41583391 -24.31832968]\n", + " [-30.29586187 -18.94246949]\n", + " [-24.91986187 -18.94244153]\n", + " [-19.54386187 -18.94241356]\n", + " [-14.16786187 -18.94238561]\n", + " [ -8.79186187 -18.94235764]\n", + " [ -3.41586187 -18.94232969]\n", + " [-30.29588983 -13.56646949]\n", + " [-24.91988983 -13.56644152]\n", + " [-19.54388984 -13.56641357]\n", + " [-14.16788983 -13.5663856 ]\n", + " [ -8.79188983 -13.56635764]\n", + " [ -3.41588983 -13.56632968]\n", + " [-30.29591779 -8.19046949]\n", + " [-24.91991779 -8.19044152]\n", + " [-19.54391779 -8.19041356]\n", + " [-14.16791779 -8.1903856 ]\n", + " [ -8.7DEBUG:root:radec2pix: camVec: [[-0.20629584 -0.20812128 -0.20967356 -0.21095376 -0.21196139 -0.21269501\n", + " -0.2131529 -0.21333373 -0.20629584 -0.1798852 -0.15276427 -0.12504507\n", + " -0.09683814 -0.06825398 -0.03940385 -0.01040007 -0.21333373 -0.18599064\n", + " -0.15793623 -0.12927467 -0.10011211 -0.07055816 -0.04072622 -0.01073294\n", + " -0.01040007 -0.01048759 -0.01056224 -0.01062379 -0.01067191 -0.0107063\n", + " -0.0107267 -0.01073294 -0.20703611 -0.20908844 -0.21073192 -0.21196628\n", + " -0.21278893 -0.21319686 -0.19488162 -0.16201965 -0.12820231 -0.09363367\n", + " -0.05851721 -0.02305821 -0.20150602 -0.16750285 -0.13253465 -0.0967959\n", + " -0.06048842 -0.02382238 -0.0105395 -0.01063912 -0.01071899 -0.01077856\n", + " -0.01081726 -0.01083465 -0.20621357 -0.20621357 -0.01083565 -0.01083565\n", + " -0.19565571 -0.16265759 -0.12870452 -0.09399937 -0.05874512 -0.0231472\n", + " -0.19758845 -0.16425347 -0.12996305 -0.09491705 -0.05931746 -0.02337052\n", + " -0.19913769 -0.16553623 -0.13097704 -0.09565767 -0.05977969 -0.02355053\n", + " -0.20030266 124.33611449\n", + " 134.10224284 141.45645803 147.02415603 98.83348775 119.07751066\n", + " 133.73407847 143.6218029 150.36959526 155.14598444 104.53566541\n", + " 132.85570308 147.93620706 156.17810512 161.17666862 164.48488524\n", + " 128.03043433 160.3400738 168.27016728 171.67458296 173.55402386\n", + " 174.74323713]\n", + "03]\n", + " [ 4.41400000e+02 1.56060000e+03]\n", + " [ 7.99800000e+02 1.56060000e+03]\n", + " [ 1.15820000e+03 1.56060000e+03]\n", + " [ 1.51660000e+03 1.56060000e+03]\n", + " [ 1.87500000e+03 1.56060000e+03]\n", + " [ 8.29999998e+01 1.91900000e+03]\n", + " [ 4.41400000e+02 1.91900000e+03]\n", + " [ 7.99800000e+02 1.91900000e+03]\n", + " [ 1.15820000e+03 1.91900000e+03]\n", + " [ 1.51660000e+03 1.91900000e+03]\n", + " [ 1.87500000e+03 1.91900000e+03]]\n", + "9191779 -8.19035764]\n", + " [ -3.41591779 -8.19032968]\n", + " [-30.29594575 -2.81446949]\n", + " [-24.91994576 -2.81444153]\n", + " [-19.54394575 -2.81441356]\n", + " [-14.16794576 -2.8143856 ]\n", + " [ -8.79194575 -2.81435764]\n", + " [ -3.41594575 -2.81432968]]\n", + "DEBUG:root:optics_fp: xyfp: [[ -0.230877 31.363511 ]\n", + " [ -0.230877 26.97708243]\n", + " [ -0.230877 22.59065386]\n", + " [ -0.230877 18.20422528]\n", + " [ -0.230877 13.81779671]\n", + " [ -0.230877 9.43136815]\n", + " [ -0.230877 5.04493957]\n", + " [ -0.230877 0.658511 ]\n", + " [ -0.230877 31.363511 ]\n", + " [ -4.61730557 31.363511 ]\n", + " [ -9.00373414 31.363511 ]\n", + " [-13.39016272 31.363511 ]\n", + " [-17.77659129 31.363511 ]\n", + " [-22.16301986 31.363511 ]\n", + " [-26.54944843 31.363511 ]\n", + " [-30.935877 31.363511 ]\n", + " [ -0.230877 0.658511 ]\n", + " [ -4.61730558 0.658511 ]\n", + " [ -9.00373414 0.658511 ]\n", + " [-13.39016271 0.658511 ]\n", + " [-17.77659128 0.658511 ]\n", + " [-22.16301986 0.658511 ]\n", + " [-26.54944843 0.658511 ]\n", + " [-30.935877 0.658511 ]\n", + " [-30.935877 31.363511 ]\n", + " [-30.935877 26.97708243]\n", + " [-30.935877 22.59065386]\n", + " [-30.935877 18.20422528]\n", + " [-30.935877 13.81779671]\n", + " [-30.935877 9.43136814]\n", + " [-30.935877 5.04493957]\n", + " [-30.935877 0.658511 ]\n", + " [ -0.245877 29.451011 ]\n", + " [ -0.245877 24.075011 ]\n", + " [ -0.245877 18.699011 ]\n", + " [ -0.245877 13.323011 ]\n", + " [ -0.245877 7.947011 ]\n", + " [ -0.245877 2.571011 ]\n", + " [ -2.143377 31.348511 ]\n", + " [ -7.519377 31.348511 ]\n", + " [-12.895377 31.348511 ]\n", + " [-18.271377 31.348511 ]\n", + " [-23.647377 31.348511 ]\n", + " [-29.023377 31.348511 ]\n", + " [ -2.143377 0.673511 ]\n", + " [ -7.519377 0.673511 ]\n", + " [-12.895377 0.673511 ]\n", + " [-18.271377 0.673511 ]\n", + " [-23.64737701 0.673511 ]\n", + " [-29.023377 0.673511 ]\n", + " [-30.920877 29.451011 ]\n", + " [-30.920877 24.075011 ]\n", + " [-30.920877 18.699011 ]\n", + " [-30.920877 13.323011 ]\n", + " [-30.920877 7.947011 ]\n", + " [-30.920877 2.571011 ]\n", + " [ -0.245877 31.348511 ]\n", + " [ -0.245877 31.348511 ]\n", + " [-30.920877 0.673511 ]\n", + " [-30.920877 0.673511 ]\n", + " [ -2.143377 29.451011 ]\n", + " [ -7.519377 29.451011 ]\n", + " [-12.895377 29.451011 ]\n", + " [-18.271377 29.451011 ]\n", + " [-23.647377 29.451011 ]\n", + " [-29.023377 29.451011 ]\n", + " [ -2.143377 24.075011 ]\n", + " [ -7.519377 24.075011 ]\n", + " [-12.895377 24.075011 ]\n", + " [-18.271377 24.075011 ]\n", + " [-23.647377 24.075011 ]\n", + " [-29.023377 24.075011 ]\n", + " [ -2.143377 18.699011 ]\n", + " [ -7.519377 18.699011 ]\n", + " [-12.895377 18.699011 ]\n", + " [-18.271377 18.699011 ]\n", + " [-23.647377 18.699011 ]\n", + " [-29.023377 18.699011 ]\n", + " [ -2.143377 13.323011 ]\n", + " [ -7.519377 13.323011 ]\n", + " [-12.895377 13.323011 ]\n", + " [-18.271377 13.323011 ]\n", + " [-23.647377 13.323011 ]\n", + " [-29.023377 13.323011 ]\n", + " [ -2.143377 7.947011 ]\n", + " [ -7.519377 7.947011 ]\n", + " [-12.895377 7.947011 ]\n", + " [-18.271377 7.947011 ]\n", + " [-23.647377 7.947011 ]\n", + " [-29.023377 7.947011 ]\n", + " [ -2.143377 2.571011 ]\n", + " [ -7.519377 2.571011 ]\n", + " [-12.895377 2.571011 ]\n", + " [-18.271377 2.571011 ]\n", + " [-23.647377 2.571011 ]\n", + " [-29.023377 2.571011 ]]\n", + "DEBUG:root:make_az_asym: xyp: [[ -0.24606 31.536148 ]\n", + " [ -0.24606 27.14971943]\n", + " [ -0.24606 22.76329086]\n", + " [ -0.24606 18.37686229]\n", + " [ -0.24606 13.99043371]\n", + " [ -0.24606 9.60400514]\n", + " [ -0.24606 5.21757658]\n", + " [ -0.24606 0.831148 ]\n", + " [ -0.24606 632]\n", + " [ 0.19966308 -0.17529764 0.96405674]\n", + " [ 0.20115603 -0.14802765 0.9683099 ]\n", + " [ 0.20238925 -0.12017919 0.97190306]\n", + " [ 0.20336191 -0.09186258 0.97478469]\n", + " [ 0.20407235 -0.06318839 0.97691438]\n", + " [ 0.20451873 -0.03426807 0.97826264]\n", + " [ 0.20469956 -0.00521415 0.97881096]\n", + " [ 0.00121266 -0.196646 0.9804738 ]\n", + " [ 0.00122459 -0.16248857 0.98670967]\n", + " [ 0.00123428 -0.12739553 0.99185123]\n", + " [ 0.00124164 -0.09156092 0.9957987 ]\n", + " [ 0.00124661 -0.05518617 0.9984753 ]\n", + " [ 0.00124912 -0.01848208 0.99982841]\n", + " [ 0.01377154 -0.20841259 0.97794404]\n", + " [ 0.04928181 -0.20805164 0.97687554]\n", + " [ 0.08450359 -0.2072855 0.97462396]\n", + " [ 0.11923105 -0.20611722 0.97123615]\n", + " [ 0.15326028 -0.20454967 0.9667837 ]\n", + " [ 0.18638779 -0.20258404 0.96136325]\n", + " [ 0.01424443 -0.00548838 0.99988348]\n", + " [ 0.05097175 -0.00547863 0.99868507]\n", + " [ 0.08739457 -0.00545803 0.99615882]\n", + " [ 0.12330108 -0.00542687 0.99235447]\n", + " [ 0.15848878 -0.0053855 0.98734609]\n", + " [ 0.192763 -0.0053342 0.98123085]\n", + " [ 0.19861623 -0.19038695 0.96140751]\n", + " [ 0.2005887 -0.15733098 0.96695974]\n", + " [ 0.20217123 -0.12334981 0.97155114]\n", + " [ 0.20336272 -0.08864677 0.97508223]\n", + " [ 0.2041602 -0.05342545 0.97747856]\n", + " [ 0.2045604 -0.01789151 0.97869042]\n", + " [ 0.00120792 -0.20844284 0.97803381]\n", + " [ 0.00120792 -0.20844284 0.97803381]\n", + " [ 0.20460634 -0.00531377 0.97882992]\n", + " [ 0.20460634 -0.00531377 0.97882992]\n", + " [ 0.01382559 -0.19661746 0.9803828 ]\n", + " [ 0.04947523 -0.19627694 0.97929953]\n", + " [ 0.08483539 -0.19555447 0.97701659]\n", + " [ 0.11969997 -0.19445357 0.97358088]\n", + " [ 0.15386543 -0.19297773 0.96906399]\n", + " [ 0.18712908 -0.19112874 0.96356241]\n", + " [ 0.01396162 -0.1624649 0.98661554]\n", + " [ 0.04996174 -0.16218264 0.98549511]\n", + " [ 0.08566901 -0.16158454 0.98313339]\n", + " [ 0.1208763 -0.16067502 0.97957769]\n", + " [ 0.15538076 -0.15945889 0.97489983]\n", + " [ 0.1889821 -0.15793949 0.969196 ]\n", + " [ 0.01407199 -0.12737685 0.99175456]\n", + " [ 0.05035615 -0.12715419 0.99060389]\n", + " [ 0.08634371 -0.12668294 0.98817822]\n", + " [ 0.12182616 -0.12596768 0.98452554]\n", + " [ 0.1DEBUG:root:radec2pix: lat: [77.97206498 79.57806769 81.21593647 82.8803899 84.56638266 86.26889583\n", + " 87.98262539 89.69667435 77.97206498 77.85336036 77.52222772 76.99897078\n", + " 76.31199967 75.49295235 74.57292056 73.58021644 89.69667435 88.18712874\n", + " 86.48361023 84.78319776 83.0967184 81.43034165 79.78948121 78.17954495\n", + " 73.58021644 74.59400834 75.53901524 76.38685312 77.10589211 77.66330027\n", + " 78.02875412 78.17954495 78.66798463 80.65841057 82.69141578 84.75761477\n", + " 86.84771627 88.95113309 77.95267103 77.66228009 77.07171569 76.23019363\n", + " 75.19557036 74.02401451 89.12786485 87.06007007 84.97409331 82.90740441\n", + " 80.87177406 78.87718093 74.03267423 75.23268127 76.30156716 77.18237665\n", + " 77.81504555 78.14660304 77.97746528 77.97746528 78.18485708 78.18485708\n", + " 78.64134167 78.32984157 77.69918411 76.80616019 75.71557851 74.48840848\n", + " 80.62507537 80.23817759 79.46907283 78.40617113 77.13948546 75.74438817\n", + " 82.64779184 82.14857946 81.18831589 79.91227353 78.44384133 76.87031089\n", + " 84.69583972 84.01119948 82.77741875 81.24014725 79.55379065 77.80461009\n", + " 86.74476583 85.70761057 84.09008812 82.26687253 80.3773841 78.48020641\n", + " 88.67187538 86.89501933 84.87693536 82.83944721 80.82012657 78.83603949]\n", + "5660103 -0.12501365 0.97971818]\n", + " [ 0.19047015 -0.12382499 0.9738524 ]\n", + " [ 0.01415593 -0.0915474 0.9957001 ]\n", + " [ 0.05065593 -0.09138626 0.99452628]\n", + " [ 0.08685581 -0.09104555 0.9920518 ]\n", + " [ 0.12254563 -0.09052922 0.98832537]\n", + " [ 0.15752301 -0.08984197 0.98342001]\n", + " [ 0.1915915 -0.08898771 0.97743229]\n", + " [ 0.01421257 -0.05517797 0.99837538]\n", + " [ 0.05085809 -0.05508029 0.99718585]\n", + " [ 0.08720077 -0.05487388 0.99467828]\n", + " [ 0.12302951 -0.05456144 0.99090201]\n", + " [ 0.15814189 -0.05414617 0.9859307 ]\n", + " [ 0.1923426 -0.05363087 0.97986124]\n", + " [ 0.01424114 -0.01847933 0.99972782]\n", + " [ 0.05096003 -0.01844651 0.99853032]\n", + " [ 0.08737459 -0.01837718 0.996006 ]\n", + " [ 0.12327308 -0.0182723 0.99220455]\n", + " [ 0.15845303 -0.018133 0.9872 ]\n", + " [ 0.1927197 -0.01796031 0.98108947]]\n", + "26 -0.16650264 -0.13174231 -0DEBUG:root:optics_fp: xyfp shape: (96, 2)\n", + "DEBUG:root:radec2pix: ccdpx: [[-4.45000000e+01 -5.00000033e-01]\n", + " [-4.45000003e+01 2.91928571e+02]\n", + " [-4.45000002e+01 5.84357143e+02]\n", + " [-4.44999998e+01 8.76785714e+02]\n", + " [-4.44999998e+01 1.16921429e+03]\n", + " [-4.45000001e+01 1.46164286e+03]\n", + " [-4.44999997e+01 1.75407143e+03]\n", + " [-4.45000002e+01 2.04650000e+03]\n", + " [-4.45000000e+01 -5.00000033e-01]\n", + " [ 2.47928571e+02 -4.99999990e-01]\n", + " [ 5.40357143e+02 -5.00000111e-01]\n", + " [ 8.32785714e+02 -5.00000066e-01]\n", + " [ 1.12521429e+03 -4.99999995e-01]\n", + " [ 1.41764286e+03 -5.00000140e-01]\n", + " [ 1.71007143e+03 -5.00000040e-01]\n", + " [ 2.00250000e+03 -5.00000296e-01]\n", + " [-4.45000002e+01 2.04650000e+03]\n", + " [ 2.47928572e+02 2.04650000e+03]\n", + " [ 5.40357143e+02 2.04650000e+03]\n", + " [ 8.32785714e+02 2.04650000e+03]\n", + " [ 1.12521429e+03 2.04650000e+03]\n", + " [ 1.41764286e+03 2.04650000e+03]\n", + " [ 1.71007143e+03 2.04650000e+03]\n", + " [ 2.00250000e+03 2.04650000e+03]\n", + " [ 2.00250000e+03 -5.00000296e-01]\n", + " [ 2.00250000e+03 2.91928572e+02]\n", + " [ 2.00250000e+03 5.84357143e+02]\n", + " [ 2.00250000e+03 8.76785714e+02]\n", + " [ 2.00250000e+03 1.16921429e+03]\n", + " [ 2.00250000e+03 1.46164286e+03]\n", + " [ 2.00250000e+03 1.75407143e+03]\n", + " [ 2.00250000e+03 2.04650000e+03]\n", + " [-4.34999999e+01 1.27000000e+02]\n", + " [-4.35000000e+01 4.85400000e+02]\n", + " [-4.35000001e+01 8.43800000e+02]\n", + " [-4.35000001e+01 1.20220000e+03]\n", + " [-4.34999998e+01 1.56060000e+03]\n", + " [-4.34999998e+01 1.91900000e+03]\n", + " [ 8.29999999e+01 4.99999893e-01]\n", + " [ 4.41400000e+02 5.00000055e-01]\n", + " [ 7.99800000e+02 4.99999998e-01]\n", + " [ 1.15820000e+03 5.00000122e-01]\n", + " [ 1.51660000e+03 4.99999912e-01]\n", + " [ 1.87500000e+03 5.00000160e-01]\n", + " [ 8.30000002e+01 2.04550000e+03]\n", + " [ 4.41400000e+02 2.04550000e+03]\n", + " [ 7.99800000e+02 2.04550000e+03]\n", + " [ 1.15820000e+03 2.04550000e+03]\n", + " [ 1.51660000e+03 2.04550000e+03]\n", + " [ 1.87500000e+03 2.04550000e+03]\n", + " [ 2.00150000e+03 1.27000000e+02]\n", + " [ 2.00150000e+03 4.85400000e+02]\n", + " [ 2.00150000e+03 8.43800000e+02]\n", + " [ 2.00150000e+03 1.20220000e+03]\n", + " [ 2.00150000e+03 1.56060000e+03]\n", + " [ 2.00150000e+03 1.91900000e+03]\n", + " [-4.35000001e+01 4.99999931e-01]\n", + " [-4.35000001e+01 4.99999931e-01]\n", + " [ 2.00150000e+03 2.04550000e+03]\n", + " [ 2.00150000e+03 2.04550000e+03]\n", + " [ 8.30000000e+01 1.27000000e+02]\n", + " [ 4.41400000e+02 1.27000000e+02]\n", + " [ 7.99800000e+02 1.27000000e+02]\n", + " [ 1.15820000e+03 1.27000000e+02]\n", + " [ 1.51660000e+03 1.27000000e+02]\n", + " [ 1.87500000e+03 1.27000000e+02]\n", + " [ 8.29999999e+01 4.85400000e+02]\n", + " [ 4.41400000e+02 4.85400000e+02]\n", + " [ 7.99800000e+02 4.85400000e+02]\n", + " [ 1.15820000e+03 4.85400000e+02]\n", + " [ 1.51660000e+03 4.85400000e+02]\n", + " [ 1.87500000e+03 4.85400000e+02]\n", + " [ 8.29999999e+01 8.43800000e+02]\n", + " [ 4.41400000e+02 8.43800000e+02]\n", + " [ 7.99800000e+02 8.43800000e+02]\n", + " [ 1.15820000e+03 8.43800000e+02]\n", + " [ 1.51660000e+03 8.43800000e+02]\n", + " [ 1.87500000e+03 8.43800000e+02]\n", + " [ 8.30000001e+01 1.20220000e+03]\n", + " [ 4.41400000e+02 1.20220000e+03]\n", + " [ 7.99800000e+02 1.20220000e+03]\n", + " [ 1.15820000e+03 1.20220000e+03]\n", + " [ 1.51660000e+03 1.20220000e+03]\n", + " [ 1.87500000e+03 1.20220000e+03]\n", + " [ 8.29999998e+01 1.56060000e+03]\n", + " [ 4.41400000e+02 1.56060000e+03]\n", + " [ 7.99800000e+02 1.56060000e+03]\n", + " [ 1.15820000e+03 1.56060000e+03]\n", + " [ 1.51660000e+03 1.56060000e+03]\n", + " [ 1.87500000e+03 1.56060000e+03]\n", + " [ 8.30000002e+01 1.91900000e+03]\n", + " [ 4.41400000e+02 1.91900000e+03]\n", + " [ 7.99800000e+02 1.91900000e+03]\n", + " [ 1.15820000e+03 1.91900000e+03]\n", + " [ 1.51660000e+03 1.91900000e+03]\n", + " [ 1.87500000e+03 1.91900000e+03]]\n", + "DEBUG:root:radec2pix: fitpx: [[-5.00000272e-01 -5.00000268e-01]\n", + " [-4.99999785e-01 2.91928572e+02]\n", + " [-4.99999908e-01 5.84357143e+02]\n", + " [-4.99999976e-01 8.76785714e+02]\n", + " [-4.99999814e-01 1.16921429e+03]\n", + " [-4.99999859e-01 1.46164286e+03]\n", + " [-4.99999732e-01 1.75407143e+03]\n", + " [-4.99999866e-01 2.04650000e+03]\n", + " [-5.00000272e-01 -5.00000268e-01]\n", + " [ 2.91928572e+02 -4.99999720e-01]\n", + " [ 5.84357143e+02 -5.00000140e-01]\n", + " [ 8.76785714e+02 -4.99999791e-01]\n", + " [ 1.16921429e+03 -4.99999975e-01]\n", + " [ 1.46164286e+03 -4.99999912e-01]\n", + " [ 1.75407143e+03 -4.99999978e-01]\n", + " [ 2.04650000e+03 -4.99999991e-01]\n", + " [-4.99999866e-01 2.04650000e+03]\n", + " [ 2.91928571e+02 2.04650000e+03]\n", + " [ 5.84357143e+02 2.04650000e+03]\n", + " [ 8.76785715e+02 2.04650000e+03]\n", + " [ 1.16921429e+03 2.04650000e+03]\n", + " [ 1.46164286e+03 2.04650000e+03]\n", + " [ 1.75407143e+03 2.04650000e+03]\n", + " [ 2.04650000e+03 2.04650000e+03]\n", + " [ 2.04650000e+03 -4.99999991e-01]\n", + " [ 2.04650000e+03 2.91928572e+02]\n", + " [ 2.04650000e+03 5.84357143e+02]\n", + " [ 2.04650000e+03 8.76785715e+02]\n", + " [ 2.04650000e+03 1.16921429e+03]\n", + " [ 2.04650000e+03 1.46164286e+03]\n", + " [ 2.04650000e+03 1.75407143e+03]\n", + " [ 2.04650000e+03 2.04650000e+03]\n", + " [ 5.00000192e-01 1.27000000e+02]\n", + " [ 4.99999990e-01 4.85400000e+02]\n", + " [ 4.99999881e-01 8.43800000e+02]\n", + " [ 5.00000044e-01 1.20220000e+03]\n", + " [ 4.99999938e-01 1.56060000e+03]\n", + " [ 5.00000069e-01 1.91900000e+03]\n", + " [ 1.27000000e+02 5.00000092e-01]\n", + " [ 4.85400000e+02 4.99999764e-01]\n", + " [ 8.43800000e+02 4.99999911e-01]\n", + " [ 1.20220000e+03 5.00000156e-01]\n", + " [ 1.56060000e+03 4.99999840e-01]\n", + " [ 1.91900000e+03 4.99999915e-01].09621721 -0.0601289 -0.023686\n", + " -0.20107886 -0.16714801 -0.13225382 -0.09659125 -0.06036201 -0.02377567\n", + " -0.201464 -0.16746808 -0.13250731 -0.0967762 -0.06047657 -0.02381854]\n", + " [-0.20078674 -0.17428103 -0.14708674 -0.11931584 -0.09107902 -0.06248699\n", + " -0.03365118 -0.00468399 -0.20078674 -0.20262142 -0.20419049 -0.20549514\n", + " -0.20653488 -0.20730818 -0.20781318 -0.2080483 -0.00468399 -0.00472909\n", + " -0.00476846 -0.004802 -0.00482954 -0.00485094 -0.00486604 -0.00487474\n", + " -0.2080483 -0.18056016 -0.15238099 -0.12361519 -0.09436952 -0.06475431\n", + " -0.03488367 -0.00487474 -0.1893284 -0.1563645 -0.12247778 -0.08787247\n", + " -0.05275245 -0.01732329 -0.20152974 -0.20359843 -0.20526972 -0.2065434\n", + " -0.20741673 -0.20788637 -0.0048039 -0.00485635 -0.0048999 -0.00493429\n", + " -0.00495921 -0.00497442 -0.19615466 -0.1619874 -0.12688576 -0.09104519\n", + " -0.05466885 -0.01796812 -0.20070413 -0.20070413 -0.00497744 -0.00497744\n", + " -0.19010422 -0.19204948 -0.19362274 -0.19482286 -0.19564642 -0.1960896\n", + " -0.15700026 -0.15859759 -0.1598933 -0.16088429 -0.1615658 -0.16193328\n", + " -0.12297381 -0.12422245 -0.12523802 -0.12601654 -0.12655298 -0.12684288\n", + " -0.088228 -0.0891244 -0.0898551 -0.09041635 -0.09080384 -0.09101389\n", + " -0.05296627 -0.0535061 -0.05394701 -0.05428637 -0.05452132 -0.05464944\n", + " -0.01739439 -0.0175743 -0.01772184 -0.01783608 -0.01791601 -0.0179608 ]\n", + " [ 0.95766733 0.96245086 0.96664496 0.9701867 0.97302465 0.97511856\n", + " 0.97643916 0.97696816 0.95766733 0.96259331 0.96693812 0.97063664\n", + " 0.97363531 0.97589175 0.97737455 0.97806326 0.97696816 0.98254014\n", + " 0.9874378 0.9915972 0.99496444 0.99749587 0.99915849 0.99993052\n", + " 0.97806326 0.98350803 0.98826539 0.99227336 0.99548004 0.9978438\n", + " 0.99933381 0.99993052 0.95983895 0.96531454 0.96984084 0.97331841\n", + " 0.97567313 0.97685567 0.95989943 0.96555544 0.97027239 0.9739469\n", + " 0.97650091 0.97788117 0.9794755 0.98585963 0.99116626 0.99529202\n", + " 0.99815658 0.99970383 0.98051633 0.98673 31.536148 ]\n", + " [ -4.63248857 31.536148 ]\n", + " [ -9.01891714 31.536148 ]\n", + " [-13.40534571 31.536148 ]\n", + " [-17.79177429 31.536148 ]\n", + " [-22.17820286 31.536148 ]\n", + " [-26.56463143 31.536148 ]\n", + " [-30.95106 31.536148 ]\n", + " [ -0.24606 0.831148 ]\n", + " [ -4.63248857 0.831148 ]\n", + " [ -9.01891714 0.831148 ]\n", + " [-13.40534571 0.831148 ]\n", + " [-17.79177429 0.831148 ]\n", + " [-22.17820285 0.831148 ]\n", + " [-26.56463143 0.831148 ]\n", + " [-30.95106 0.831148 ]\n", + " [-30.95106 31.536148 ]\n", + " [-30.95106 27.14971943]\n", + " [-30.95106 22.76329086]\n", + " [-30.95106 18.37686228]\n", + " [-30.95106 13.99043371]\n", + " [-30.95106 9.60400514]\n", + " [-30.95106 5.21757657]\n", + " [-30.95106 0.831148 ]\n", + " [ -0.26106 29.623648 ]\n", + " [ -0.26106 24.247648 ]\n", + " [ -0.26106 18.87164801]\n", + " [ -0.26106 13.495648 ]\n", + " [ -0.26106 8.119648 ]\n", + " [ -0.26106 2.743648 ]\n", + " [ -2.15856 31.521148 ]\n", + " [ -7.53456 31.521148 ]\n", + " [-12.91056 31.521148 ]\n", + " [-18.28656 31.521148 ]\n", + " [-23.66256 31.521148 ]\n", + " [-29.03856 31.521148 ]\n", + " [ -2.15856 0.846148 ]\n", + " [ -7.53456 0.846148 ]\n", + " [-12.91056 0.846148 ]\n", + " [-18.28655999 0.846148 ]\n", + " [-23.66256 0.846148 ]\n", + " [-29.03856 0.846148 ]\n", + " [-30.93606 29.623648 ]\n", + " [-30.93606 24.247648 ]\n", + " [-30.93606 18.871648 ]\n", + " [-30.93606 13.495648 ]\n", + " [-30.93606 8.119648 ]\n", + " [-30.93606 2.743648 ]\n", + " [ -0.26106 31.521148 ]\n", + " [ -0.26106 31.521148 ]\n", + " [-30.93606 0.846148 ]\n", + " [-30.93606 0.846148 ]\n", + " [ -2.15856 29.623648 ]\n", + " [ -7.53456 29.623648 ]\n", + " [-12.91056 29.623648 ]\n", + " [-18.28656 29.623648 ]\n", + " [-23.66256 29.623648 ]\n", + " [-29.03856 29.623648 ]\n", + " [ -2.15856 24.247648 ]\n", + " [ -7.53456 24.247648 ]\n", + " [-12.91056 24.247648 ]\n", + " [-18.28656 24.247648 ]\n", + " [-23.66256 24.247648 ]\n", + " [-29.03856 24.247648 ]\n", + " [ -2.15856 18.871648 ]\n", + " [ -7.53456 18.871648 ]\n", + " [-12.91056 18.871648 ]\n", + " [-18.28656 18.871648 ]\n", + " [-23.66256 18.871648 ]\n", + " [-29.03856 18.871648 ]\n", + " [ -2.15856 13.495648 ]\n", + " [ -7.53456 13.495648 ]\n", + " [-12.91056 13.495648 ]\n", + " [-18.28656 13.495648 ]\n", + " [-23.66256 13.495648 ]\n", + " [-29.03856 13.495648 ]\n", + " [ -2.15856 8.119648 ]\n", + " [ -7.53456 8.119648 ]\n", + " [-12.91056 8.119648 ]\n", + " [-18.28656 8.119648 ]\n", + " [-23.66256 8.119648 ]\n", + " [-29.03856 8.119648 ]\n", + " [ -2.15856 2.743648 ]\n", + " [ -7.53456 2.743648 ]\n", + " [-12.91056 2.743648 ]\n", + " [-18.28656 2.743648 ]\n", + " [-23.66256 2.743648 ]\n", + " [-29.03856 2.743648 ]]\n", + "\n", + " [ 1.27000000e+02 2.04550000e+03]\n", + " [ 4.85400000e+02 2.04550000e+03]\n", + " [ 8.43800000e+02 2.04550000e+03]\n", + " [ 1.20220000e+03 2.04550000e+03]\n", + " [ 1.56060000e+03 2.04550000e+03]\n", + " [ 1.91900000e+03 2.04550000e+03]\n", + " [ 2.04550000e+03 1.27000000e+02]\n", + " [ 2.04550000e+03 4.85400000e+02]\n", + " [ 2.04550000e+03 8.43800000e+02]\n", + " [ 2.04550000e+03 1.20220000e+03]\n", + " [ 2.04550000e+03 1.56060000e+03]\n", + " [ 2.04550000e+03 1.91900000e+03]\n", + " [ 4.99999957e-01 4.99999958e-01]\n", + " [ 4.DEBUG:root:make_az_asym: xyp: shape: (96, 2)\n", + "99999957e-01 4.99999958e-01]\n", + " [ 2.04550000e+03 2.04550000e+03]\n", + " [ 2.04550000e+03 2.04550000e+03]\n", + " [ 1.27000000e+02 1.27000000e+02]\n", + " [ 4.85400000e+02 1.27000000e+02]\n", + " [ 8.43800000e+02 1.27000000e+02]\n", + " [ 1.20220000e+03 1.27000000e+02]\n", + " [ 1.56060000e+03 1.27000000e+02]\n", + " [ 1.91900000e+03 1.27000000e+02]\n", + " [ 1.27000000e+02 4.85400000e+02]\n", + " [ 4.85400000e+02 4.85400000e+02]\n", + " [ 8.43800000e+02 4.85400000e+02]\n", + " [ 1.20220000e+03 4.85400000e+02]\n", + " [ 1.56060000e+03 4.85400000e+02]\n", + " [ 1.91900000e+03 4.85400000e+02]\n", + " [ 1.27000000e+02 8.43800000e+02]\n", + " [ 4.85400000e+02 8.43800000e+02]\n", + " [ 8.43800000e+02 8.43800000e+02]\n", + " [ 1.20220000e+03 8.43800000e+02]\n", + " [ 1.56060000e+03 8.43800000e+02]\n", + " [ 1.91900000e+03 8.43800000e+02]\n", + " [ 1.27000000e+02 1.20220000e+03]\n", + " [ 4.85400000e+02 1.20220000e+03]\n", + " [ 8.43800000e+02 1.20220000e+03]\n", + " [ 1.20220000e+03 1.20220000e+03]\n", + " [ 1.56060000e+03 1.20220000e+03]\n", + " [ 1.91900000e+03 1.20220000e+03]\n", + " [ 1.27000000e+02 1.56060000e+03]\n", + " [ 4.85400000e+02 1.56060000e+03]\n", + " [ 8.43800000e+02 1.56060000e+03]\n", + " [ 1.20220000e+03 1.56060000e+03]\n", + " [ 1.56060000e+03 1.56060000e+03]\n", + " [ 1.91900000e+03 1.56060000e+03]\n", + " [ 1.27000000e+02 1.91900000e+03]\n", + " [ 4.85400000e+02 1.91900000e+03]\n", + " [ 8.43800000e+02 1.91900000e+03]\n", + " [ 1.20220000e+03 1.91900000e+03]\n", + " [ 1.56060000e+03 1.91900000e+03]\n", + " [ 1.91900000e+03 1.91900000e+03]]\n", + "DEBUG:root:optics_fp: rtanth: [31.36436077 26.97807037 22.59183361 18.20568928 13.8197254 9.43419362\n", + " 5.05021974 0.69781153 31.36436077 31.70156673 32.63030877 34.10229142\n", + " 36.05103355 38.40402676 41.09188526 44.05335752 0.69781153 4.66402697\n", + " 9.02778296 13.40634529 17.78878395 22.17280059 26.55761376 30.94288484\n", + " 44.05335752 41.04621131 38.30621526 35.89459992 33.88155828 32.34160155\n", + " 31.34453543 30.94288484 29.45203736 24.07626653 18.70062748 13.32527965\n", + " 7.95081375 2.58274138 31.42169962 32.23771351 33.8971959 36.28460223\n", + " 39.26738572 42.72102005 2.2467047 7.54947995 12.91295338 18.28378612\n", + " 23.65696634 29.03119064 42.70202201 39.18809499 36.13521339 33.66902518\n", + " 31.92578297 31.02758019 31.34947523 31.34947523 30.92821126 30.92821126\n", + " 29.52890302 30.39577404 32.15047118 34.65840831 37.76983569 41.34874196\n", + " 24.17023416 25.22195839 27.31111317 30.22332497 33.74617895 37.70891894\n", + " 18.82145258 20.1542562 22.71439544 26.14376082 30.14716324 34.52548949\n", + " 13.49432055 15.2984853 18.54166578 22.61295734 27.14223759 31.93523187\n", + " 8.23098104 10.94056736 15.14746618 19.92481371 24.9470123 30.09171641\n", + " 3.34726194 7.94676841 13.14917661 18.45137705 23.78673027 29.13702987]\n", + "DEBUG:root:fitpix2pix: ccdpx: shape: (96, 2)\n", + "DEBUG:root:fitpix2pix: visCut: True\n", + "DEBUG:root:make_az_asym: xyp: [[ -0.230877 31.363511 ]\n", + " [ -0.230877 26.97708243]\n", + " [ -0.230877 22.59065386]\n", + " [ -0.230877 18.20422528]\n", + " [ -0.230877 13.81779671]\n", + " [ -0.230877 9.43136815]\n", + " [ -0.230877 5.04493957]\n", + " [ -0.230877 0.658511 ]\n", + " [ -0.230877 31.363511 ]\n", + " [ -4.61730557 31.363511 ]\n", + " [ -9.00373414 31.363511 ]\n", + " [-13.39016272 31.363511 ]\n", + " [-17.77659129 31.363511 ]\n", + " [-22.16301986 31.363511 ]\n", + " [-26.54944843 31.363511 ]\n", + " [-30.935877 31.363511 ]\n", + " [ -0.230877 0.658511 ]\n", + " [ -4.61730558 0.658511 ]\n", + " [ -9.00373414 0.658511 ]\n", + " [-13.39016271 0.658511 ]\n", + " [-17.77659128 0.658511 ]\n", + " [-22.16301986 0.658511 ]\n", + " [-26.54944843 0.658511 ]\n", + " [-30.935877 0.658511 ]\n", + " [-30.935877 31.363511 ]\n", + " [-30.935877 26.97708243]\n", + " [-30.935877 22.59065386]\n", + " [-30.935877 18.20422528]\n", + " [-30.935877 13.81779671]\n", + " [-30.935877 9.43136814]\n", + " [-30.935877 5.04493957]\n", + " [-30.935877 0.658511 ]\n", + " [ -0.245877 29.451011 ]\n", + " [ -0.245877 24.075011 ]\n", + " [ -0.245877 18.699011 ]\n", + " [ -0.245877 13.323011 ]\n", + " [ -0.245877 7.947011 ]\n", + " [ -0.245877 2.571011 ]\n", + " [ -2.143377 31.348511 ]\n", + " [ -7.519377 31.348511 ]\n", + " [-12.895377 31.348511 ]\n", + " [-18.271377 31.348511 ]\n", + " [-23.647377 31.348511 ]\n", + " [-29.023377 31.348511 ]\n", + " [ -2.143377 0.673511 ]\n", + " [ -7.519377 0.673511 ]\n", + " [-12.895377 0.673511 ]\n", + " [-18.271377 0.673511 ]\n", + " [-23.64737701 0.673511 ]\n", + " [-29.023377 0.673511 ]\n", + " [-30.920877 29.451011 ]\n", + " [-30.920877 24.075011 ]\n", + " [-30.920877 18.699011 ]\n", + " [-30.920877 13.323011 ]\n", + " [-30.920877 7.947011 ]\n", + " [-30.920877 2.571011 ]\n", + " [ -0.245877 31.348511 ]\n", + " [ -0.245877 31.348511 ]\n", + " [-30.920877 0.673511 ]\n", + " [-30.920877 0.673511 ]\n", + " [ -2.143377 29.451011 ]\n", + " [ -7.519377 29.451011 ]\n", + " [-12.895377 29.451011 ]\n", + " [-18.271377 29.451011 ]\n", + " [-23.647377 29.451011 ]\n", + " [-29.023377 29.451011 ]\n", + " [ -2.143377 24.075011 ]\n", + " [ -7.519377 24.075011 ]\n", + " [-12.895377 24.075011 ]\n", + " [-18.271377 24.075011 ]\n", + " [-23.647377 24.075011 ]\n", + " [-29.023377 24.075011 ]\n", + " [ -2.143377 18.699011 ]\n", + " [ -7.519377 18.699011 ]\n", + " [-12.895377 18.699011 ]\n", + " [-18.271377 18.699011 ]\n", + " [-23.647377 18.699011 ]\n", + " [-29.023377 18.699011 ]\n", + " [ -2.143377 13.323011 ]\n", + " [ -7.519377 13.323011 ]\n", + " [-12.895377 13.323011 ]\n", + " [-18.271377 13.323011 ]\n", + " [-23.647377 13.323011 ]\n", + " [-29.023377 13.323011 ]\n", + " [ -2.143377 7.947011 ]\n", + " [ -7.519377 7.947011 ]\n", + " [-12.895377 7.947011 ]\n", + " [-18.271377 7.947011 ]\n", + " [-23.647377 7.947011 ]\n", + " [-29.023377 7.947011 ]\n", + " [ -2.143377 2.571011 ]\n", + " [ -7.519377 2.571011 ]\n", + " [-12.895377 2.571011 ]\n", + " [-18.271377 2.571011 ]\n", + " [-23.647377 2.571011 ]\n", + " [-29.023377 2.571011 ]]\n", + "DEBUG:root:make_az_asym: xyp: shape: (96, 2)\n", + "DEBUG:root:radec2pix: fitpx: [[-5.00000034e-01 -5.00000033e-01]\n", + " [-5.00000269e-01 2.91928571e+02]\n", + " [-5.00000171e-01 5.84357143e+02]\n", + " [-4.99999761e-01 8.76785714e+02]\n", + " [-4.99999835e-01 1.16921429e+03]\n", + " [-5.00000099e-01 1.46164286e+03]\n", + " [-4.99999719e-01 1.75407143e+03]\n", + " [-5.00000225e-01 2.04650000e+03]\n", + " [-5.00000034e-01 -5.00000033e-01]\n", + " [ 2.91928571e+02 -4.99999990e-01]\n", + " [ 5.84357143e+02 -5.00000111e-01]\n", + " [ 8.76785714e+02 -5.00000066e-01]\n", + " [ 1.16921429e+03 -4.99999995e-01]\n", + " [ 1.46164286e+03 -5.00000140e-01]\n", + " [ 1.75407143e+03 -5.00000040e-01]\n", + " [ 2.04650000e+03 -5.00000296e-01]\n", + " [-5.00000225e-01 2.04650000e+03]\n", + " [ 2.91928572e+02 2.04650000e+03]\n", + " [ 5.84357143e+02 2.04650000e+03]\n", + " [ 8.76785714e+02 2.04650000e+03]\n", + " [ 1.16921429e+03 2.04650000e+03]\n", + " [ 1.46164286e+03 2.04650000e+03]\n", + " [ 1.75407143e+03 2.04650000e+03]\n", + " [ 2.04650000e+03 2.04650000e+03]\n", + " [ 2.04650000e+03 -5.00000296e-01]\n", + " [ 2.04650000e+03 2.91928572e+02]\n", + " [ 2.04650000e+03 5.84357143e+02]\n", + " [ 2.04650000e+03 8.76785714e+02]\n", + " [ 2.04650000e+03 1.16921429e+03]\n", + " [ 2.04650000e+03 1.46164286e+03]\n", + " [ 2.04650000e+03 1.75407143e+03]\n", + " [ 2.04650000e+03 2.04650000e+03]\n", + " [ 5.00000148e-01 1.27000000e+02]\n", + " [ 5.00000006e-01 4.85400000e+02]\n", + " [ 4.99999879e-01 8.43800000e+02]\n", + " [ 4.99999939e-01 1.20220000e+03]\n", + " [ 5.00000182e-01 1.56060000e+03]\n", + " [ 5.00000197e-01 1.91900000e+03]\n", + " [ 1.27000000e+02 4.99999893e-01]\n", + " [ 4.85400000e+02 5.00000055e-01]\n", + " [ 8.43800000e+02 4.99999998e-01]\n", + " [ 1.20220000e+03 5.00000122e-01]\n", + " [ 1.56060000e+03 4.99999912e-01]\n", + " [ 1.91900000e+03 5.00000160e-01]\n", + " [ 1.27000000e+02 2.04550000e+03]\n", + " [ 4.85400000e+02 2.04550000e+03]\n", + " [ 8.43800000e+02 2.04550000e+03]\n", + " [ 1.20220000e+03 2.04550000e+03]\n", + " [ 1.56060000e+03 2.04550000e+03]\n", + " [ 1.91900000e+03 2.04550000e+03]\n", + " [ 2.04550000e+03 1.27000000e+02]\n", + " [ 2.04550000e+03 4.85400000e+02]\n", + " [ 2.04550000e+03 8.43800000e+02]\n", + " [ 2.04550000e+03 1.20220000e+03]\n", + " [ 2.04550000e+03 1.56060000e+03]\n", + " [ 2.04550000e+03 1.91900000e+03]\n", + " [ 4.99999930e-01 4.99999931e-01]\n", + " [ 4.99999930e-01 4.99999931e-01]\n", + " [ 2.04550000e+03 2.04550000e+03]\n", + " [ 2.04550000e+03 2.04550000e+03]\n", + " [ 1.27000000e+02 1.27000000e+02]\n", + " [ 4.85400000e+02 1.27000000e+02]\n", + " [ 8.43800000e+02 1.27000000e+02]\n", + " [ 1.20220000e+03 1.27000000e+02]\n", + " [ 1.56060000e+03 1.27000000e+02]\n", + " [ 1.91900000e+03 1.27000000e+02]\n", + " [ 1.27000000e+02 4.85400000e+02]\n", + " [ 4.85400000e+02 4.85400000e+02]\n", + " [ 8.43800000e+02 4.85400000e+02]\n", + " [ 1.20220000e+03 4.85400000e+02]\n", + " [ 1.56060000e+03 4.85400000e+02]\n", + " [ 1.91900000e+03 4.85400000e+02]\n", + " [ 1.27000000e+02 8.43800000e+02]\n", + " [ 4.85400000e+02 8.43800000e+02]\n", + " [ 8.43800000e+02 8.43800000e+02]\n", + " [ 1.20220000e+03 8.43800000e+02]\n", + " [ 1.56060000e+03 8.43800000e+02]\n", + " [ 1.91900000e+03 8.43800000e+02]\n", + " [ 1.27000000e+02 1.20220000e+03]\n", + " [ 4.85400000e+02 1.20220000e+03]\n", + " [ 8.43800000e+02 1.20220000e+03]\n", + " [ 1.20220000e+03 1.20220000e+03]\n", + " [ 1.56060000e+03 1.20220000e+03]\n", + " [ 1.91900000e+03 1.20220000e+03]\n", + " [ 1.27000000e+02 1.56060000e+03]\n", + " [ 4.85400000e+02 1.56060000e+03]\n", + " [ 8.43800000e+02 1.56060000e+03]\n", + " [ 1.20220000e+03 1.56060000e+03]\n", + " [ 1.56060000e+03 1.56060000e+03]\n", + " [ 1.91900000e+03 1.56060000e+03]\n", + " [ 1.27000000e+02 1.91900000e+03]\n", + " [ 4.85400000e+02 1.91900000e+03]\n", + " [ 8.43800000e+02 1.91900000e+03]\n", + " [ 1.20220000e+03 1.91900000e+03]\n", + " [ 1.56060000e+03 1.91900000e+03]\n", + " [ 1.91900000e+03 1.91900000e+03]]\n", + "DEBUG:root:optics_fp: cphi: [0.00736113 0.00855795 0.01021949 0.01268159 0.01670634 0.02447236\n", + " 0.04571623 0.33085868 0.00736113 0.14564913 0.27593163 0.39264701\n", + " 0.49309519 0.57710146 0.64609955 0.70223653 0.33085868 0.98998261\n", + " 0.99733613 0.99879292 0.99931459 0.99955889 0.99969254 0.99977352\n", + " 0.70223653 0.7536841 0.80759419 0.86185323 0.91305945 0.9565351\n", + " 0.98696237 0.99977352 0.00834839 0.01021242 0.01314806 0.01845192\n", + " 0.03092476 0.09520001 0.06821327 0.23324784 0.38042607 0.50355732\n", + " 0.60221419 0.67936994 0.95400922 0.99601258 0.99863886 0.99932131\n", + " 0.99959465 0.99973085 0.72410803 0.78903751 0.85569931 0.91837755\n", + " 0.96852369 0.99656102 0.0078431 0.0078431 0.99976286 0.99976286\n", + " 0.07258573 0.24738232 0.40109449 0.52718454 0.6260916 0.70191681\n", + " 0.08867837 0.2981282 0.47216592 0.60454556 0.70074236 0.76966876\n", + " 0.11387947 0.37309127 0.56771826 0.69888097 0.78439808 0.84063622\n", + " 0.15883549 0.49151121 0.69548104 0.80800475 0.87123904 0.90881999\n", + " 0.26040359 0.68729315 0.85132238 0.9170162 0.94790417 0.96449723\n", + " 0.6403374 0.94621821 0.98069DEBUG:root:radec2pix: lng: [270.30457564 270.35386432 270.42218515 270.52319877 270.68775016\n", + " 271.00328211 271.85358468 282.01764037 270.30457564 278.22825834\n", + " 285.84900373 292.93736432 299.35666656 305.05982707 310.06566745\n", + " 314.43133752 282.01764037 350.20239022 354.97318448 356.62297809\n", + " 357.45797758 357.96205284 358.29934604 358.54086611 314.43133752\n", + " 318.71792809 323.65121653 329.29806584 335.69036822 342.79553001\n", + " 350.4881795 358.54086611 270.35332309 270.43180131 270.55509491\n", + " 270.77692983 271.2940439 273.86646927 273.78050957 283.32620486\n", + " 292.17913267 300.04776463 306.84264375 312.61566094 338.92831161\n", + " 353.86519186 356.42636123 357.47985638 358.05382146 358.4148969\n", + " 316.21189934 321.89127155 328.61157088 336.44738638 345.33544633\n", + " 355.00144674 270.33202411 270.33202411 358.51232366 358.51232366\n", + " 274.02225895 284.14773214 293.45215101 301.61524642 308.56613427\n", + " 314.39418307 274.91171606 287.12189287 297.93167364 306.95425335\n", + " 314.25788847 320.11321977 276.3042009 291.604768844 0.99024463 0.99414155 0.99609937]\n", + "DEBUG:root:optics_fp: rtanth: [31.45867372 27.07232164 22.68599914 18.29972749 13.91355478 9.52761765\n", + " 5.14251895 0.77266756 31.45867372 31.78680319 32.70527593 34.16651578\n", + " 36.10468169 38.44771501 41.12647627 44.07980062 0.77266756 4.62057574\n", + " 8.9768556 13.35288972 17.73406053 22.11731568 26.50162097 30.8865292\n", + " 44.07980062 41.06447698 38.31494783 35.89234872 33.86691125 32.31340541\n", + " 31.3021752 30.8865292 29.54629558 24.17042769 18.79463536 13.41900945\n", + " 8.04388357 2.67227674 31.51224371 32.31623619 33.96261905 36.33706944\n", + " 39.30786805 42.7508727 2.22187045 7.50028847 12.8598094 18.22903784\n", + " 23.60134944 28.97502929 42.72508353 39.20023922 36.1342981 33.65291956\n", + " 31.89283999 30.97725364 31.44375973 31.44375973 30.87190328 30.87190328\n", + " 29.6191671 30.47314683 32.21386423 34.70815714 37.80716925 41.37524227\n", + " 24.25945282 25.29503252 27.36711605 30.26354513 33.77288911 37.72448364\n", + " 18.90898716 20.22047017 22.759345 26.17080258 30.16018539 34.5277484\n", + " 13.57870729 15.35248874 18.5693102 22.62172417 27.13794906 31.92173094\n", + " 8.30755918 10.96964715 15.14772357 19.90921024 24.92192864 30.06045831\n", + " 3.38416012 7.92276206 13.11070286 18.40689143 23.73898749 29.08725072]\n", + "DEBUG:root:radec2pix: curVec: [[-8.56167996e-01 -8.13404923e-02 5.10254923e-01]\n", + " [-8.69709840e-01 -6.98189436e-02 4.88600153e-01]\n", + " [-8.82818158e-01 -5.80124033e-02 4.66118719e-01]\n", + " [-8.95401589e-01 -4.59656480e-02 4.42880518e-01]\n", + " [-9.07378855e-01 -3.37232540e-02 4.18958655e-01]\n", + " [-9.18677736e-01 -2.13306485e-02 3.94431516e-01]\n", + " [-9.29234573e-01 -8.83500477e-03 3.69384694e-01]\n", + " [-9.38994658e-01 3.71455027e-03 3.43911666e-01]\n", + " [-8.56167996e-01 -8.13404923e-02 5.10254923e-01]\n", + " [-8.51575181e-01 -5.49064386e-02 5.21349206e-01]\n", + " [-8.46331880e-01 -2.84713265e-02 5.31894475e-01]\n", + " [-8.40470364e-01 -2.13797431e-03 5.41853297e-01]\n", + " [-8.34032996e-01 2.39914376e-02 5.51192682e-01]\n", + " [-8.27072040e-01 4.98156465e-02 5.59884132e-01]\n", + " [-8.19649026e-01 7.52347550e-02 5.67904223e-01]\n", + " [-8.11833149e-01 1.00151438e-01 5.75236149e-01]\n", + " [-9.38994658e-01 3.71455027e-03 3.43911666e-01]\n", + " [-9.34160223e-01 3.09959661e-02 3.55505173e-01]\n", + " [-9.28504053e-01 5.81604640e-02 3.66739122e-01]\n", + " [-9.22060658e-01 8.51010440e-02 3.77573775e-01]\n", + " [-9.14874356e-01 1.11715041e-01 3.87975079e-01]\n", + " [-9.06998750e-01 1.37903894e-01 3.97914292e-01]\n", + " [-8.98496798e-01 1.63571339e-01 4.07367058e-01]\n", + " [-8.89441411e-01 1.88621080e-01 4.16312460e-01]\n", + " [-8.11833149e-01 1.00151438e-01 5.75236149e-01]\n", + " [-8.24274377e-01 1.12874845e-01 5.54825217e-01]\n", + " [-8.36397335e-01 1.25650752e-01 5.33527306e-01]\n", + " [-8.48113946e-01 1.38430404e-01 5.11409579e-01]\n", + " [-8.59343436e-01 1.51165511e-01 4.88546668e-01]\n", + " [-8.70014113e-01 1.63807860e-01 4.65018739e-01]\n", + " [-8.80064070e-01 1.76309140e-01 4.40910785e-01]\n", + " [-8.89441411e-01 1.88621080e-01 4.16312460e-01]\n", + " [-8.62104670e-01 -7.62643581e-02 5.00958367e-01]\n", + " [-8.78421968e-01 -6.19453019e-02 4.73854013e-01]\n", + " 9 304.27729951\n", + " 314.04247307 321.39984571 326.97203004 278.79000558 298.99985673\n", + " 313.65088315 323.54527533 330.30207858 335.08673923 284.44409964\n", + " 312.71767267 327.81852787 336.08354959 341.09932037 344.41993917\n", + " 307.6197367 340.1007605 348.12231225 351.56865678 353.47160216\n", + " 354.67575821]\n", + "DEBUG:root:radec2pix: xyfp: [[ -0.230877 31.363511 ]\n", + " [ -0.230877 26.97708243]\n", + " [ -0.230877 22.59065386]\n", + " [ -0.230877 18.20422528]\n", + " [ -0.230877 13.81779671]\n", + " [ -0.230877 9.43136815]\n", + " [ -0.230877 5.04493957]\n", + " [ -0.230877 0.658511 ]\n", + " [ -0.230877 31.363511 ]\n", + " [ -4.61730557 31.363511 ]\n", + " [ -9.00373414 31.363511 ]\n", + " [-13.39016272 31.363511 ]\n", + " [-17.77659129 31.363511 ]\n", + " [-22.16301986 31.363511 ]\n", + " [-26.54944843 31.363511 ]\n", + " [-30.935877 31.363511 ]\n", + " [ -0.230877 0.658511 ]\n", + " [ -4.61730558 0.658511 ]\n", + " [ -9.00373414 0.658511 ]\n", + " [-13.39016271 0.658511 ]\n", + " [-17.77659128 0.658511 ]\n", + " [-22.16301986 0.658511 ]\n", + " [-26.54944843 0.658511 ]\n", + " [-30.9358DEBUG:root:optics_fp: sphi: [-0.99997291 -0.99996338 -0.99994778 -0.99991959 -0.99986044 -0.99970051\n", + " -0.99895447 -0.94368031 -0.99997291 -0.98933631 -0.96117727 -0.91968926\n", + " -0.86997536 -0.81667246 -0.76325315 -0.71194371 -0.94368031 -0.14118936\n", + " -0.07294272 -0.04911935 -0.03701833 -0.02969904 -0.02479556 -0.0212815\n", + " -0.71194371 -0.65723685 -0.5897386 -0.50715777 -0.40782648 -0.29161723\n", + " -0.16095117 -0.0212815 -0.99996515 -0.99994785 -0.99991356 -0.99982975\n", + " -0.99952172 -0.99545817 -0.99767076 -0.97241732 -0.92481134 -0.86396182\n", + " -0.79833456 -0.73379594 -0.29977727 -0.0892129 -0.05215778 -0.03683652\n", + " -0.02846988 -0.02319957 -0.68968657 -0.61434502 -0.51747338 -0.39570528\n", + " -0.24892141 -0.08286212 -0.99996924 -0.99996924 -0.02177659 -0.02177659\n", + " -0.99736218 -0.96891795 -0.91603668 -0.84975082 -0.77974951 -0.71225894\n", + " -0.99606031 -0.95452584 -0.88150969 -0.79657056 -0.71341443 -0.63844342\n", + " -0.99349457 -0.92779465 -0.82322292 -0.71523799 -0.62025773 -0.54160017\n", + " -0.98730506 -0.87087125 -0.71854445 -0.58917597 -0.49085898 -0.41718848\n", + " -0.96549986 -0.72638015 -0.52464293 -0.39884995 -0.31855562 -0.26409298\n", + " -0.76809376 -0.32352912 -0.19552639 -0.13933979 -0.10808594 -0.08823861]\n", + "DEBUG:root:radec2pix: xyfp: [[ -0.24606 31.536148 ]\n", + " [ -0.24606 27.14971943]\n", + " [ -0.24606 22.76329086]\n", + " [ -0.24606 18.37686229]\n", + " [ -0.24606 13.99043371]\n", + " [ -0.24606 9.60400514]\n", + " [ -0.24606 5.21757658]\n", + " [ -0.24606 0.831148 ]\n", + " [ -0.24606 31.536148 ]\n", + " [ -4.63248857 31.536148 ]\n", + " [ -9.01891714 31.536148 ]\n", + " [-13.40534571 31.536148 ]\n", + " [-17.79177429 31.536148 ]\n", + " [-22.17820286 31.536148 ]\n", + " [-26.56463143 31.536148 ]\n", + " [-30.95106 31.536148 ]\n", + " [ -0.24606 0.831148 ]\n", + " [ -4.63248857 0.831148 ]\n", + " [ -9.01891714 0.831148 ]\n", + " [-13.40534571 0.831148 ]\n", + " [-17.79177429 0.831148 ]\n", + " [-22.17820285 0.831148 ]\n", + " [-26.56463143 0.831148 ]\n", + " [-30.95106 0.831148 ]\n", + " [-30.95106 31.536148 ]\n", + " [-30.95106 27.14971943]\n", + " [-30.95106 22.76329086]\n", + " [-30.95106 18.37686228]\n", + " [-30.95106 13.99043371]\n", + " [-30.95106 9.60400514]\n", + " [-30.95106 5.21757657]\n", + " [-30.95106 0.831148 ]\n", + " [ -0.26106 29.623648 ]\n", + " [ -0.26106 24.247648 ]\n", + " [ -0.26106 18.87164801]\n", + " [ -0.26106 13.495648 ]\n", + " [ -0.26106 8.119648 ]\n", + " [ -0.26106 2.743648 ]\n", + " [ -2.15856 31.521148 ]\n", + " [ -7.53456 31.521148 ]\n", + " [-12.91056 31.521148 ]\n", + " [-18.28656 31.521148 ]\n", + " [-23.66256 31.521148 ]\n", + " [-29.03856 31.521148 ]\n", + " [ -2.15856 0.846148 ]\n", + " [ -7.53456 0.846148 ]\n", + " [-12.91056 0.846148 ]\n", + " [-18.28655999 0.846148 ]\n", + " [-23.66256 0.846148 ]\n", + " [-29.03856 0.846148 ]\n", + " [-30.93606 29.623648 ]\n", + " [-30.93606 24.247648 ]\n", + " [-30.93606 18.871648 ]\n", + " [-30.93606 13.495648 ]\n", + " [-30.93606 8.119648 ]\n", + " [-30.93606 2.743648 ]\n", + " [ -0.26106 31.521148 ]\n", + " [ -0.26106 31.521148 ]\n", + " [-30.93606 0.846148 ]\n", + " [-30.93606 0.846148 ]\n", + " [ -2.15856 29.623648 ]\n", + " [ -7.53456 29.623648 ]\n", + " [-12.91056 29.623648 ]\n", + " [-18.28656 29.623648 ]\n", + " [-23.66256 29.623648 ]\n", + " [-29.03856 29.623648 ]\n", + " [ -2.15856 24.247648 ]\n", + " [ -7.53456 24.247648 ]\n", + " [-12.91056 24.247648 ]\n", + " [-18.28656 24.247648 ]\n", + " [-23.66256 24.247648 ]\n", + " [-29.03856 24.247648 ]\n", + " [ -2.15856 18.871648 ]\n", + " [ -7.53456 18.871648 ]\n", + " [-12.91056 18.871648 ]\n", + " [-18.28656 18.871648 ]\n", + " [-23.66256 18.871648 ]\n", + " [-29.03856 18.871648 ]\n", + " [ -2.15856 13.495648 ]\n", + " [ -7.53456 13.495648 ]\n", + " [-12.91056 13.495648 ]\n", + " [-18.28656 13.495648 ]\n", + " [-23.66256 13.495648 ]\n", + " [-29.03856 13.495648 ]\n", + " [ -2.15856 8.119648 ]\n", + " [ -7.53456 8.119648 ]\n", + " [-12.91056 8.119648 ]\n", + " [-18.28656 8.119648 ]\n", + " [-23.66256 8.119648 ]\n", + " [-29.03856 8.119648 ]\n", + " [ -2.15856 2.743648 ]\n", + " [ -7.53456 2.743648 ]\n", + " [-12.91056 2.743648 ]\n", + " [-18.28656 2.743648 ]\n", + " [-23.66256 2.743648 ]\n", + " [-29.03856 2.74[-8.93996191e-01 -4.72428916e-02 4.45577065e-01]\n", + " [-9.08673564e-01 -3.22392464e-02 4.16260717e-01]\n", + " [-9.22321075e-01 -1.70181104e-02 3.86049503e-01]\n", + " [-9.34825199e-01 -1.66717010e-03 3.55104306e-01]\n", + " [-8.54294002e-01 -6.97826535e-02 5.15084594e-01]\n", + " [-8.48223755e-01 -3.73704528e-02 5.28318001e-01]\n", + " [-8.41207240e-01 -5.05897448e-03 5.40689176e-01]\n", + " [-8.33318254e-01 2.69633872e-02 5.52135548e-01]\n", + " [-8.24652951e-01 5.85102558e-02 5.62604711e-01]\n", + " [-8.15327923e-01 8.93986807e-02 5.72056163e-01]\n", + " [-9.36957687e-01 1.55737735e-02 3.49095618e-01]\n", + " [-9.30476254e-01 4.89449616e-02 3.63067944e-01]\n", + " [-9.22793785e-01 8.20338742e-02 3.76459924e-01]\n", + " [-9.13987833e-01 1.14649643e-01 3.89206501e-01]\n", + " [-9.04157084e-01 1.46610600e-01 4.01254656e-01]\n", + " [-8.93421542e-01 1.77739590e-01 4.12561008e-01]\n", + " [-8.17318572e-01 1.05604866e-01 5.66425603e-01]\n", + " [-8.32364968e-01 1.21239771e-01 5.40804473e-01]\n", + " [-8.46845012e-01 1.36905182e-01 5.13916818e-01]\n", + " [-8.60606814e-01 1.52512026e-077 0.658511 ]\n", + " [-30.935877 31.363511 ]\n", + " [-30.935877 26.97708243]\n", + " [-30.935877 22.59065386]\n", + " [-30.935877 18.20422528]\n", + " [-30.935877 13.81779671]\n", + " [-30.935877 9.43136814]\n", + " [-30.935877 5.04493957]\n", + " [-30.935877 0.658511 ]\n", + " [ -0.245877 29.451011 ]\n", + " [ -0.245877 24.075011 ]\n", + " [ -0.245877 18.699011 ]\n", + " [ -0.245877 13.323011 ]\n", + " [ -0.245877 7.947011 ]\n", + " [ -0.245877 2.571011 ]\n", + " [ -2.143377 31.348511 ]\n", + " [ -7.519377 31.348511 ]\n", + " [-12.895377 31.348511 ]\n", + " [-18.271377 31.348511 ]\n", + " [-23.647377 31.348511 ]\n", + " [-29.023377 31.348511 ]\n", + " [ -2.143377 0.673511 ]\n", + " [ -7.519377 0.673511 ]\n", + " [-12.895377 0.673511 ]\n", + " [-18.271377 0.673511 ]\n", + " [-23.64737701 0.673511 ]\n", + " [-29.023377 0.673511 ]\n", + " [-30.920877 29.451011 ]\n", + " [-30.920877 24.075011 ]\n", + " [-30.920877 18.699011 ]\n", + " [-30.920877 13.323011 ]\n", + " [-30.920877 7.947011 ]\n", + " [-30.920877 2.571011 ]\n", + " [ -0.245877 31.348511 ]\n", + " [ -0.245877 31.34851DEBUG:root:fitpix2pix: ccdpx: shape: (96, 2)\n", + "1 ]\n", + " [-30.920877 0.673511 ]\n", + " [-30.920877 0.673511 ]\n", + " [ -2.143377 29.451011 ]\n", + " [ -7.519377 29.451011 ]\n", + " [-12.895377 29.451011 ]\n", + " [-18.271377 29.451011 ]\n", + " [-23.647377 29.451011 ]\n", + " [-29.023377 29.451011 ]\n", + " [ -2.143377 24.075011 ]\n", + " [ -7.519377 24.075011 ]\n", + " [-12.895377 24.075011 ]\n", + " [-18.271377 24.075011 ]\n", + " [-23.647377 24.075011 ]\n", + " [-29.023377 24.075011 ]\n", + " [ -2.143377 18.699011 ]\n", + " [ -7.519377 18.699011 ]\n", + " [-12.895377 18.699011 ]\n", + " [-18.271377 18.699011 ]\n", + " [-23.647377 18.699011 ]\n", + " [-29.023377 18.699011 ]\n", + " [ -2.143377 13.323011 ]\n", + " [ -7.519377 13.323011 ]\n", + " [-12.895377 13.323011 ]\n", + " [-18.271377 13.323011 ]\n", + " [-23.647377 13.323011 ]\n", + " [-29.023377 13.323011 ]\n", + " [ -2.143377 7.947011 ]\n", + " [ -7.519377 7.947011 ]\n", + " [-12.895377 7.947011 ]\n", + " [-18.271377 7.947011 ]\n", + " [-23.647377 7.947011 ]\n", + " [-29.023377 7.947011 ]\n", + " [ -2.143377 2.571011 ]\n", + " [ -7.519377 2.571011 ]\n", + " [-12.895377 2.571011 ]\n", + " [-18.271377 2.571011 ]\n", + " [-23.647377 2.571011 ]\n", + " [-29.023377 2.571011 ]]\n", + "1 4.85897102e-01]\n", + " [-8.73518463e-01 1.67971527e-01 4.56892833e-01]\n", + " [-8.85470142e-01 1.83194744e-01 4.27062422e-01]\n", + " [-8.56200361e-01 -8.12113507e-02 5.10221186e-01]\n", + " [-8.56200361e-01 -8.12113507e-02 5.10221186e-01]\n", + " [-8.89442357e-01 1.88494855e-01 4.16367606e-01]\n", + " [-8.89442357e-01 1.88494855e-01 4.16367606e-01]\n", + " [-8.60189317e-01 -6.47915742e-02 5.05842259e-01]\n", + " [-8.54078132e-01 -3.22613712e-02 5.19143283e-01]\n", + " [-8.46997879e-01 1.57473530e-04 5.31596245e-01]\n", + " [-8.39022439e-01 3.22762229e-02 5.43138649e-01]\n", + " [-8.30248347e-01 6.39082894e-02 5.53717809e-01]\n", + " [-8.20793443e-01 9.48701464e-02 5.63291913e-01]\n", + " [-8.76483826e-01 -5.03619255e-02 4.78789911e-01]\n", + " [-8.70267794e-01 -1.75381482e-02 4.92266574e-01]\n", + " [-8.63023306e-01 1.51435543e-02 5.04937072e-01]\n", + " [-8.54824287e-01 4.74934614e-02 5.16739595e-01]\n", + " [-8.4576753DEBUG:root:optics_fp: cphi: [-0.0055044 -0.00639203 -0.0076229 -0.00944382 -0.01241274 -0.01811485\n", + " -0.0335395 -0.22307599 -0.0055044 -0.14344285 -0.2735344 -0.39021968\n", + " -0.49076392 -0.57494454 -0.64415274 -0.70050591 -0.22307599 -0.98662859\n", + " -0.99647595 -0.9984093 -0.99909876 -0.99942085 -0.99959678 -0.99970325\n", + " -0.70050591 -0.75194059 -0.80589783 -0.86028974 -0.91173668 -0.955566\n", + " -0.98643233 -0.99970325 -0.00636666 -0.00777693 -0.00999392 -0.01398706\n", + " -0.02331621 -0.07013242 -0.06618572 -0.2308951 -0.37799383 -0.50124187\n", + " -0.60012567 -0.67754548 -0.93833732 -0.9947436 -0.99821572 -0.99911274\n", + " -0.99947098 -0.99964917 -0.72236515 -0.7873159 -0.85411461 -0.91708811\n", + " -0.96769535 -0.99629275 -0.00598404 -0.00598404 -0.999691 -0.999691\n", + " -0.07041425 -0.24485858 -0.398512 -0.52476457 -0.62394545 -0.7000711\n", + " -0.08596532 -0.29497775 -0.46908383 -0.60182876 -0.69847361 -0.76781625\n", + " -0.11028259 -0.36899894 -0.56404664 -0.69594091 -0.78213485 -0.83890011\n", + " -0.1535634 -0.48599238 -0.8e-01 7.93249645e-02 5.27621854e-01]\n", + " [-8.35972663e-01 1.10454120e-01 5.37540319e-01]\n", + " [-8.92039234e-01 -3.55701999e-02 4.50556064e-01]\n", + " [-8.85734581e-01 -2.51359457e-03 4.64185236e-01]\n", + " [-8.78349690e-01 3.03692114e-02 4.77052967e-01]\n", + " [-8.69958757e-01 6.28875277e-02 4.89098068e-01]\n", + " [-8.60658488e-01 9.48553863e-02 5.00269349e-01]\n", + " [-8.50568727e-01 1.26089842e-01 5.10523449e-01]\n", + " [-9.06701808e-01 -2.04990025e-02 4.21273809e-01]\n", + " [-9.00324627e-01 1.27281689e-02 4.35032826e-01]\n", + " [-8.92822692e-01 4.57489635e-02 4.48078869e-01]\n", + " [-8.84270965e-01 7.83719615e-02 4.60350622e-01]\n", + " [-8.74766351e-01 1.10412307e-01 4.71797577e-01]\n", + " [-8.64428493e-01 1.41688886e-01 4.82377073e-01]\n", + " [-9.20338667e-01 -5.23287390e-03 3.91087400e-01]\n", + " [-9.13905426e-01 2.81004529e-02 4.04953377e-01]\n", + " [-9.06310032e-01 6.11945934e-02 4.18159477e-01]\n", + " [-8.97628573e-01 9.38579138e-02 4.30643282e-01]\n", + " [-8.87958586e-01 1.25906941e-01 4.42353922e-01]\n", + " [-8.77419667e-01 1.57162583e-01 4.5324893648 ]]\n", + "DEBUG:root:radec2pix: xyfp Shape: (96, 2)\n", + "6913123 -0.80511955 -0.86923269 -0.90738164\n", + " -0.25098261 -0.68015432 -0.84745756 -0.91480539 -0.94651795 -0.96355992\n", + " -0.61607996 -0.94170609 -0.97911709 -0.98946165 -0.99367815 -0.99579412]\n", + "547 0.99185942 0.99578843\n", + " 0.99844594 0.99977985 0.95770236 0.95770236 0.9999289 0.9999289\n", + " 0.96207028 0.96781171 0.97259724 0.9763238 0.97891342 0.98031274\n", + " 0.96763099 0.97358492 0.97854164 0.98239859 0.98507763 0.98652493\n", + " 0.97222509 0.97834888 0.98344316 0.98740541 0.99015692 0.99164321\n", + " 0.97575346 0.98200495 0.98720313 0.99124524 0.9940519 0.9955679\n", + " 0.97814205 0.98447887 0.98974676 0.9938426 0.99668644 0.9982225\n", + " 0.97934146 0.98572085 0.99102359 0.99514634 0.99800882 0.99955494]]\n", + "94e-01]\n", + " [-9.32836464e-01 1.01396892e-02 3.60157351e-01]\n", + " [-9.26364433e-01 4.35128516e-02 3.74106360e-01]\n", + " [-9.18700163e-01 7.66147212e-02 3.87453475e-01]\n", + " [-9.09920877e-01 1.09254117e-01 4.00134397e-01]\n", + "DEBUG:root:radec2pix: camVec Shape: (3, 96)\n", + "DEBUG:root:fitpix2pix: visCut: True\n", + "DEBUG:root:radec2pix: curVec: [[-1.72769351e-01 -5.15727249e-01 8.39152046e-01]\n", + " [-1.82421784e-01 -4.93240156e-01 8.50550669e-01]\n", + " [-1.91993079e-01 -4.69877025e-01 8.61599814e-01]\n", + " [-2.01449336e-01 -4.45722906e-01 8.72209411e-01]\n", + " [-2.10755933e-01 -4.20864595e-01 8.82300929e-01]\n", + " [-2.19877742e-01 -3.95391838e-01 8.91806634e-01]\n", + " [-2.28779562e-01 -3.69398167e-01 9.00669144e-01]\n", + " [-2.37426643e-01 -3.42981223e-01 9.08841279e-01]\n", + " [-1.72769351e-01 -5.15727249e-01 8.39152046e-01]\n", + " [-1.47166895e-01 -5.11702826e-01 8.46464484e-01]\n", + " [-1.20942334e-01 -5.07075434e-01 8.53374160e-01]\n", + " [-9.42000490e-02 -5.01857641e-01 8.59805361e-01]\n", + " [-6.70439415e-02 -4.96063433e-01 8.65694045e-01]\n", + " [-3.95785403e-02 -4.89709026e-01 8.70987146e-01]\n", + " [-1.19096133e-02 -4.82813696e-01 8.75642105e-01]\n", + " [ 1.58557618e-02 -4.75400422e-01 8.79626644e-01]\n", + " [-2.37426643e-01 -3.42981223e-01 9.08841279e-01]\n", + " [-2.11478405e-01 -3.37 [-9.00124966e-01 1.41248948e-01 4.12096809e-01]\n", + " [-8.89432287e-01 1.72421705e-01 4.23297724e-01]]\n", + "DEBUG:root:radec2pix: xyfp Shape: (96, 2)\n", + "DEBUG:root:radec2pix: lat: [77.96328192 79.56853071 81.20563621 82.86944579 84.55492216 86.25697831\n", + " 87.97026012 89.68446141 77.96328192 77.84499787 77.51456239 76.99218852\n", + " 76.30618444 75.48813083 74.56921129 73.5781677 89.68446141 88.18737722\n", + " 86.48534608 84.7856574 83.09971795 81.43388184 79.79360686 78.18420142\n", + " 73.5781677 74.59165918 75.53717808 76.38588844 77.10603256 77.66476376\n", + " 78.03174302 78.18420142 78.65888684 80.64836049 82.6805387 84.74610355\n", + " 86.83565024 88.93857815 77.94403081 77.65435125 77.06482717 76.22448951\n", + " 75.19110028 74.0211233 89.125335 87.06142445 84.97647052 82.91045242\n", + " 80.87550158 78.88161748 74.03033777 75.2306137 76.3004884 77.18265224\n", + " 77.81700171 78.15051889 77.96868077 77.96868077 78.18950618 78.18950618\n", + " 78.63240168 78.32169564 77.69220555 76.80049546 75.71119975 74.48541744\n", + " 80.6152305 80.22940153 79.46186211 78.40069669 77.13562878 75.74187621\n", + " 82.63719517 82.13946169 81.18123393 79.90730671 78.44079679 76.86879929\n", + " 84.68476231 84.00240554 82.77130238 81.23639689 79.55203729 77.80444657\n", + " 86.73357497 85.70054621 84.08633958 82.26535796 80.37757677 78.48177609\n", + " 88.66315983 86.89328024 84.87745159 82.8411917 80.82286686 78.83968928]\n", + "246582e-01 9.17355780e-01]\n", + " [-1.84827895e-01 -3.31120698e-01 9.25309533e-01]\n", + " [-1.57572414e-01 -3.24613170e-01 9.32629200e-01]\n", + " [-1.29811542e-01 -3.17736999e-01 9.39250852e-01]\n", + " [-1.01648528e-01 -3.10509057e-01 9.45119940e-01]\n", + " [-7.31906291e-02 -3.02950330e-01 9.50191680e-01]\n", + " [-4.45485802e-02 -2.95085931e-01 9.54431620e-01]\n", + " [ 1.58557618e-02 -4.75400422e-01 8.79626644e-01]\n", + " [ 7.55401748e-03 -4.51731807e-01 8.92121803e-01]\n", + " [-9.12584190e-04 -4.27226954e-01 9.04143958e-01]\n", + " [-9.51112200e-03 -4.01963884e-01 9.15606124e-01]\n", + " [-1.82082858e-02 -3.76025674e-01 9.26430327e-01]\n", + " [-2.69700837e-02 -3.49501669e-01 9.36547488e-01]\n", + " [-3.57618658e-02 -3.22487765e-01 9.45897843e-01]\n", + " [-4.45485802e-02 -2.95085931e-01 9.54431620e-01]\n", + " [-1.76899068e-01 -5.06022796e-01 8.44184606e-01]\n", + " [-1.88678185e-01 -4.77861642e-01 8.57932861e-01]\n", + " [-2.00301998e-01 -4.48469023e-01 8.71065236e-01]\n", + " [-2.11707068e-01 -4.18003933e-01 8.83432414e-01]\n", + " [-2.22828772e-01 -3.86631684e-01 8.94909649e-01]\n", + " [-2.33602468e-01 -3.54526176e-01 9.05395537e-01]\n", + " [-1.61722671e-01 -5.13971784e-01 8.42424348e-01]\n", + " [-1.29911909e-01 -5.08631374e-01 8.51126913e-01]\n", + " [-9.72704824e-02 -5.02397771e-01 8.59147795e-01]\n", + " [-6.39897993e-02 -4.95296100e-01 8.66364288e-01]\n", + " [-3.02623618e-02 -4.87356304e-01 8.72678648e-01]\n", + " [ 3.71655346e-03 -4.78615385e-01 8.78016800e-01]\n", + " [-2.26176459e-01 -3.40620808e-01 9.12590639e-01]\n", + " [-1.93889496e-01 -3.33329191e-01 9.22658395e-01]\n", + " [-1.60644283e-01 -3.25458934e-01 9.31810011e-01]\n", + " [-1.26623088e-01 -3.17032527e-01 9.39923918e-01]\n", + " [-9.20160296e-02 -3.08081051e-01 9.46899739e-01]\n", + " [-5.70220571e-02 -2.98644859e-01 9.52659296e-01]\n", + " [ 1.21631908e-02 -4.65214805e-01 8.85114254e-01]\n", + " [ 1.87263397e-03 -4.35634826e-01 9.00121543e-01]\n", + " [-8.63267156e-03 -4.04875799e-01 9.14330938e-01]\n", + " [-1.92915867e-02 -3.73088468e-01 9.27595186e-01]\n", + " [-3.00415323e-02 -3.40437343e-01 9.39787168e-01]\n", + " [-4.08185298e-02 -3.07101534e-01 9.50800976e-01]\n", + " [-1.72716085e-01 -5.15639216e-01 8.39217107e-01]\n", + " [-1.72716085e-01 -5.15639216e-01 8.39217107e-01]\n", + " [-4.46167127e-02 -2.95207558e-01 9.54390825e-01]\n", + " [-4.46167127e-02 -2.95207558e-01 9.54390825e-01]\n", + " [-1.65875112e-01 -5.04306397e-01 8.47443512e-01]\n", + " [-1.33973298e-01 -4.98840410e-01 8.56276474e-01]\n", + " [-1.01233202e-01 -4.92499820e-01 8.64404863e-01]\n", + " [-6.78453763e-02 -4.85308699e-01 8.71706643e-01]\n", + " [-3.40020449e-02 -4.77296221e-01 8.78084380e-01]\n", + " [ 1.01240142e-04 -4.68498984e-01 8.83464030e-01]\n", + " [-1.77583843e-01 -4.76008756e-01 8.61324354e-01]\n", + " [-1.45469220e-01 -4.70193285e-01 8.70492378e-01]\n", + " [-1.12493824e-01 -4.63555871e-01 8.78897658e-01]\n", + " [-7.88459220e-02 -4.56118108e-01 8.86419535e-01]\n", + " [-4.47171707e-02 -4.47907631e-01 8.92960877e-01]\n", + " [-1.03041083e-02 -4.38960446e-01 8.98447301e-01]\n", + " [-1.89160791e-01 -4.46481821e-01 8.74569711e-01]\n", + " [-1.56899308e-01 -4.40322893e-01 8.84023957e-01]\n", + " [-1.23753714e-01 -4.33395103e-01 8.92666625e-01]\n", + " [-8.99103091e-02 -4.25718612e-01 9.00377587e-01]\n", + " [-5.55604166e-02 -4.17320556e-01 9.07059311e-01]\n", + " [-2.09016441e-02 -4.08237139e-01 9.12636598e-01]\n", + " [-2.00541986e-01 -4.15883408e-01 8.87030948e-01]\n", + " [-1.68198481e-01 -4.09384064e-01 8.96724015e-01]\n", + " [-1.34947499e-01 -4.02170124e-01 9.05565218e-01]\n", + " [-1.00973735e-01 -3.94261446e-01 9.13434298e-01]\n", + " [-6.64682563e-02 -3.85685620e-01 9.20232891e-01]\n", + " [-3.16295684e-02 -3.76479690e-01 9.25884773e-01]\n", + " [-2.11662246e-01 -3.84378256e-01 8.98583580e-01]\n", + " [-1.79300451e-01 -3.77540397e-01 9.08468270e-01]\n", + " [-1.46008604e-01 -3.70044097e-01 9.17468721e-01]\n", + " [-1.11970136e-01 -3.61909890e-01 9.25464165e-01]\n", + " [-7.73758088e-02 -3.53166555e-01 9.32355280e-01]\n", + " [-4.24246502e-02 -3.43852404e-01 9.38064856e-01]\n", + " [-2.22456423e-01 -3.52140304e-01 9.09126144e-01]\n", + " [-1.90139013e-01 -3.44966399e-01 9.19154687e-01]\n", + " [-1.56870403e-01 -3.37192580e-01 9.28274119e-01]\n", + " [-1.22833099e-01 -3.28840749e-01 9.36363066e-01]\n", + " [-8.82174162e-02 -3.19941342e-01 9.43321379e-01]\n", + " [-5.32224164e-02 -3.10534167e-01 9.49071075e-01]]\n", + "DEBUG:root:radec2pix: curVec Shape: (96, 3)\n", + "DEBUG:root:optics_fp: sphi: [0.99998485 0.99997957 0.99997095 0.99995541 0.99992296 0.99983591\n", + " 0.99943739 0.97480106 0.99998485 0.9896586 0.96186222 0.92072178\n", + " 0.87129259 0.81819238 0.76489689 0.7136466 0.97480106 0.16298472\n", + " 0.08387896 0.05638146 0.04244609 0.03402888 0.028395 0.02436013\n", + " 0.7136466 0.65923088 0.59205464 0.50980542 0.41077515 0.29477725\n", + " 0.16416841 0.02436013 0.99997973 0.99996976 0.99995006 0.99990218\n", + " 0.99972814 0.99753769 0.99780732 0.97297865 0.92580811 0.86530722\n", + " 0.79990573 0.73548088 0.34572109 0.10239711 0.0597107 0.0421157\n", + " 0.0325231 0.02648658 0.69151182 0.61654981 0.52008483 0.39868458\n", + " 0.25212242 0.08602764 0.9999821 0.9999821 0.02485756 0.02485756\n", + " 0.99751784 0.96955881 0.91716312 0.8512474 0.7814679 0.71407315\n", + " 0.99629813 0.95550412 0.88315364 0.79862516 0.71563581 0.64067012\n", + " 0.99390027 0.92942982 0.82574293 0.71809906 0.6231092 0.5442854\n", + " 0.9881388 0.87396305 0.72255609 0.59311256 0.49440321 0.4203077\n", + " 0.9679916 0.73306896 0.53086315 0.40389491 0.32265115 0.26749257\n", + " 0.78768362 0.33643669 0.20329713 0.14479515 0.11226633 0.09161916]\n", + "DEBUG:root:optics_fp: xyfp: [[ -0.230877 31.363511 ]\n", + " [ -0.230877 26.97708243]\n", + " [ -0.230877 22.59065386]\n", + " [ -0.230877 18.20422528]\n", + " [ -0.230877 13.81779671]\n", + " [ -0.230877 9.43136815]\n", + " [ -0.230877 5.04493957]\n", + " [ -0.230877 0.658511 ]\n", + " [ -0.230877 31.363511 ]\n", + " [ -4.61730557 31.363511 ]\n", + " [ -9.00373414 31.363511 ]\n", + " [-13.39016272 31.363511 ]\n", + " [-17.77659129 31.363511 ]\n", + " [-22.16301986 31.363511 ]\n", + " [-26.54944843 31.363511 ]\n", + " [-30.935877 31.363511 ]\n", + " [ -0.230877 0DEBUG:root:radec2pix: curVec Shape: (96, 3)\n", + "DEBUG:root:mm_to_pix: fitpx: [[0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]]\n", + "DEBUG:root:mm_to_pix: fitpx: [[0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]]\n", + ".658511 ]\n", + " [ -4.61730558 0.658511 ]\n", + " [ -9.00373414 0.658511 ]\n", + " [-13.39016271 0.658511 ]\n", + " [-17.77659128 0.658511 ]\n", + " [-22.16301986 0.658511 ]\n", + " [-26.54944843 0.658511 ]\n", + " [-30.935877 0.658511 ]\n", + " [-30.935877 31.363511 ]\n", + " [-30.935877 26.97708243]\n", + " [-30.935877 22.59065386]\n", + " [-30.935877 18.20422528]\n", + " [-30.935877 13.81779671]\n", + " [-30.935877 9.43136814]\n", + " [-30.935877 5.04493957]\n", + " [-30.935877 0.658511 ]\n", + " [ -0.245877 29.451011 ]\n", + " [ -0.245877 24.075011 ]\n", + " [ -0.245877 18.699011 ]\n", + " [ -0.245877 13.323011 ]\n", + " [ -0.245877 7.947011 ]\n", + " [ -0.245877 2.571011 ]\n", + " [ -2.143377 31.348511 ]\n", + " [ -7.519377 31.348511 ]\n", + " [-12.895377 31.348511 ]\n", + " [-18.271377 31.348511 ]\n", + " [-23.647377 31.348511 ]\n", + " [-29.023377 31.348511 ]\n", + " [ -2.143377 0.673511 ]\n", + " [ -7.519377 0.673511 ]\n", + " [-12.895377 0.673511 ]\n", + " [-18.271377 0.673511 ]\n", + " [-23.64737701 0.673511 ]\n", + " [-29.023377 0.673511 ]\n", + " [-30.920877 29.451011 ]\n", + " [-30.920877 24.075011 ]\n", + " [-30.920877 18.699011 ]\n", + " [-30.920877 13.323011 ]\n", + " [-30.920877 7.947011 ]\n", + " [-30.920877 2.571011 ]\n", + " [ -0.245877 31.348511 ]\n", + " [ -0.245877 31.348511 ]\n", + " [-30.920877 0.673511 ]\n", + " [-30.920877 0.673511 ]\n", + " [ -2.143377 29.451011 ]\n", + " [ -7.519377 29.451011 ]\n", + " [-12.895377 29.451011 ]\n", + " [-18.271377 29.451011 ]\n", + " [-23.647377 29.451011 ]\n", + " [-29.023377 29.451011 ]\n", + " [ -2.143377 24.075011 ]\n", + " [ -7.519377 24.075011 ]\n", + " [-12.895377 24.075011 ]\n", + " [-18.271377 24.075011 ]\n", + " [-23.647377 24.075011 ]\n", + " [-29.023377 24.075011 ]\n", + " [ -2.143377 18.699011 ]\n", + " [ -7.519377 18.699011 ]\n", + " [-12.895377 18.699011 ]\n", + " [-18.271377 18.699011 ]\n", + " [-23.647377 18.699011 ]\n", + " [-29.023377 18.699011 ]\n", + " [ -2.143377 13.323011 ]\n", + " [ -7.519377 13.323011 ]\n", + " [-12.895377 13.323011 ]\n", + " [-18.271377 13.323011 ]\n", + " [-23.647377 13.323011 ]\n", + " [-29.023377 13.323011 ]\n", + " [ -2.143377 7.947011 ]\n", + " [ -7.519377 7.947011 ]\n", + " [-12.895377 7.947011 ]\n", + " [-18.271377 7.947011 ]\n", + " [-23.647377 7.947011 ]\n", + " [-29.023377 7.947011 ]\n", + " [ -2.143377 2.571011 ]\n", + " [ -7.519377 2.571011 ]\n", + " [-12.895377 2.571011 ]\n", + " [-18.271377 2.571011 ]\n", + " [-23.647377 2.571011 ]\n", + " [-29.023377 2.571011 ]]\n", + "DEBUG:root:mm_to_pix: fitpx.shape: (96, 2)\n", + "DEBUG:root:cartToSphere: vec: [[-0.20629584 -0.20078674 0.95766733]\n", + " [-0.20812128 -0.17428103 0.96245086]\n", + " [-0.20967356 -0.14708674 0.96664496]\n", + " [-0.21095376 -0.11931584 0.9701867 ]\n", + " [-0.21196139 -0.09107902 0.97302465]\n", + " [-0.21269501 -0.06248699 0.97511856]\n", + " [-0.2131529 -0.03365118 0.97643916]\n", + " [-0.21333373 -0.00468399 0.97696816]\n", + " [-0.20629584 -0.20078674 0.95766733]\n", + " [-0.1798852 -0.20262142 0.96259331]\n", + " [-0.15276427 -0.20419049 0.96693812]\n", + " [-0.12504507 -0.20549514 0.97063664]\n", + " [-0.09683814 -0.20653488 0.97363531]\n", + " [-0.06825398 -0.20730818 0.97589175]\n", + " [-0.03940385 -0.20781318 0.97737455]\n", + " [-0.01040007 -0.2080483 0.97806326]\n", + " [-0.21333373 -0.00468399 0.97696816]\n", + " [-0.18599064 -0.00472909 0.98254014]\n", + " [-0.15793623 -0.00476846 0.9874378 ]\n", + " [-0.12927467 -0.004802 0.9915972 ]\n", + " [-0.10011211 -0.00482954 0.99496444]\n", + " [-0.07055816 -0.00485094 0.99749587]\n", + " [-0.04072622 -0.00486604 0.99915849]\n", + " [-0.01073294 -0.00487474 0.99993052]\n", + " [-0.01040007 -0.2080483 0.97806326]\n", + " [-0.01048759 -0.18056016 0.98350803]\n", + " [-0.01056224 -0.15238099 0.98826539]\n", + " [-0.01062379 -0.12361519 0.99227336]\n", + " [-0.01067191 -0.09436952 0.99548004]\n", + " [-0.0107063 -0.06475431 0.9978438 ]\n", + " [-0.0107267 -0.03488367 0.99933381]\n", + " [-0.01073294 -0.00487474 0.99993052]\n", + " [-0.20703611 -0.1893284 0.95983895]\n", + " [-0.20908844 -0.1563645 0.96531454]\n", + " [-0.21073192 -0.12247778 0.96984084]\n", + " [-0.21196628 -0.08787247 0.97331841]\n", + " [-0.21278893 -0.05275245 0.97567313]\n", + " [-0.21319686 -0.01732329 0.97685567]\n", + " [-0.19488162 -0.20152974 0.95989943]\n", + " [-0.16201965 -0.20359843 0.96555544]\n", + " [-0.12820231 -0.20526972 0.97027239]\n", + " [-0.09363367 -0.2065434 0.9739469 ]\n", + " [-0.05851721 -0.20741673 0.97650091]\n", + " [-0.02305821 -0.20788637 0.97788117]\n", + " [-0.20150602 -0.0048039 0.9794755 ]\n", + " [-0.16750285 -0.00485635 0.98585963]\n", + " [-0.13253465 -0.0048999 0.99116626]\n", + " [-0.0967959 -0.00493429 0.99529202]\n", + " [-0.06048842 -0.00495921 0.99815658]\n", + " [-0.02382238 -0.00497442 0.99970383]\n", + " [-0.0105395 -0.19615466 0.98051633]\n", + " [-0.01063912 -0.1619874 0.98673547]\n", + " [-0.01071899 -0.12688576 0.99185942]\n", + " [-0.01077856 -0.09104519 0.99578843]\n", + " [-0.01081726 -0.05466885 0.99844594]\n", + " [-0.01083465 -0.01796812 0.99977985]\n", + " [-0.20621357 -0.20070413 0.95770236]\n", + " [-0.20621357 -0.20070413 0.95770236]\n", + " [-0.01083565 -0.00497744 0.9999289 ]\n", + " [-0.01083565 -0.00497744 0.9999289 ]\n", + " [-0.19565571 -0.19010422 0.96207028]\n", + " [-0.16265759 -0.19204948 0.96781171]\n", + " [-0.12870452 -0.19362274 0.97259724]\n", + " [-0.09399937 -0.19482286 0.9763238 ]\n", + " [-0.05874512 -0.19564642 0.97891342]\n", + " [-0.0231472 -0.1960896 0.98031274]\n", + " [-0.19758845 -0.15700026 0.96763099]\n", + " [-0.16425347 -0.15859759 0.97358492]\n", + " [-0.12996305 -0.1598933 0.97854164]\n", + " [-0.09491705 -0.16088429 0.98239859]\n", + " [-0.05931746 -0.1615658 0.98507763]\n", + " [-0.02337052 -0.16193328 0.98652493]\n", + " [-0.19913769 -0.12297381 0.97222509]\n", + " [-0.16553623 -0.12422245 0.97834888]\n", + " [-0.13097704 -0.12523802 0.98344316]\n", + " [-0.09565767 -0.12601654 0.98740541]\n", + " [-0.05977969 -0.12655298 0.99015692]\n", + " [-0.02355053 -0.12684288 0.99164321]\n", + " [-0.20030226 -0.088228 0.97575346]\n", + " [-0.16650264 -0.0891244 0.98200495]\n", + " [-0.13174231 -0.0898551 0.98720313]\n", + " [-0.09621721 -0.09041635 0.99124524]\n", + " [-0.0601289 -0.09080384 0.9940519 ]\n", + " [-0.023686 -0.09101389 0.9955679 ]\n", + " [-0.20107886 -0.05296627 0.97814205]\n", + " [-0.16714801 -0.0535061 0.98447887]\n", + " [-0.13225382 -0.05394701 0.98974676]\n", + " [-0.09659125 -0.05428637 0.9938426 ]\n", + " [-0.06036201 -0.05452132 0.99668644]\n", + " [-0.02377567 -0.05464944 0.9982225 ]\n", + " [-0.201464 -0.01739439 0.97934146]\n", + " [-0.16746808 -0.0175743 0.98572085]\n", + " [-0.13250731 -0.01772184 0.99102359]\n", + " [-0.0967762 -0.01783608 0.99514634]\n", + " [-0.06047657 -0.01791601 0.99800882]\n", + " [-0.02381854 -0.0179608 0.99955494]]\n", + "DEBUG:root:optics_fp: xyfp shape: (96, 2)\n", + "DEBUGDEBUG:root:radec2pix: camVec: [[ 0.00162968 0.00164392 0.00165615 0.00166636 0.0016745 0.00168051\n", + " 0.00168433 0.00168589 0.00162968 0.03065921 0.0595691 0.08824658\n", + " 0.11657974 0.14445783 0.17177197 0.1984171 0.00168589 0.03171597\n", + " 0.06161834 0.09127522 0.12057355 0.14940474 0.17766265 0.205241\n", + " 0.1984171 0.20017053 0.20167036 0.20291139 0.20389075 0.20460646\n", + " 0.20505694 0.205241 0.00173588 0.00175296 0.00176683 0.00177741\n", + " 0.00178459 0.00178824 0.01429458 0.04980805 0.08502967 0.11975303\n", + " 0.15377432 0.1868945 0.0147871 0.05152109 0.08794575 0.12385093\n", + " 0.15903647 0.19330699 0.19912208 0.20110045 0.20269257 0.20389226\n", + " 0.20469584 0.20510055 0.00172908 0.00172908 0.20514779 0.20514779\n", + " 0.01435076 0.05000388 0.08536435 0.12022547 0.15438306 0.18763689\n", + " 0.01449201 0.05049589 0.08620426 0.1214098 0.15590842 0.18949858\n", + " 0.01460664 0.05089468 0.08688344 0.12236492 0.15713605 0.19099623\n", + " 0.01469:root:radec2pix: curVec: [[-0.17758178 0.89901562 0.40029443]\n", + " [-0.14998134 0.90311813 0.40234715]\n", + " [-0.12170723 0.90657472 0.40411586]\n", + " [-0.09286598 0.90933172 0.4055758 ]\n", + " [-0.06356512 0.91134484 0.40670636]\n", + " [-0.03391499 0.91257918 0.40749112]\n", + " [-0.0040296 0.91300969 0.40791798]\n", + " [ 0.0259736 0.91262159 0.40797941]\n", + " [-0.17758178 0.89901562 0.40029443]\n", + " [-0.17765452 0.8868156 0.42661103]\n", + " [-0.17748066 0.87392755 0.45249447]\n", + " [-0.17706009 0.86041272 0.47784901]\n", + " [-0.17639276 0.84634196 0.5025842 ]\n", + " [-0.17547824 0.83179574 0.52661488]\n", + " [-0.17431533 0.81686426 0.54986084]\n", + " [-0.17290198 0.80164761 0.57224646]\n", + " [ 0.0259736 0.91262159 0.40797941]\n", + " [ 0.02574969 0.8999671 0.43519671]\n", + " [ 0.02550643 0.88654624 0.46193634]\n", + " [ 0.02524511 0.87242341 0.48809842]\n", + " [ 0.0249673 0.85767182 0.51359097]\n", + " [ 0.02467486 0.84237278 0.53833006]\n", + " [ 0.02437001 0.82661559 0.56223907]\n", + " [ 0.02405534 0.81049813 0.58524706]\n", + " [-0.17290198 0.80164761 0.57224646]\n", + "DEBUG:root:optics_fp: xyfp: [[ 0.173161 -31.45819714]\n", + " [ 0.17304708 -27.07176857]\n", + " [ 0.17293316 -22.68534 ]\n", + " [ 0.17281925 -18.29891143]\n", + " [ 0.17270533 -13.91248287]\n", + " [ 0.17259141 -9.52605429]\n", + " [ 0.17247749 -5.13962573]\n", + " [ 0.17236358 -0.75319715]\n", + " [ 0.173161 -31.45819714]\n", + " [ 4.55958957 -31.45808322]\n", + " [ 8.94601814 -31.45796931]\n", + " [ 13.33244671 -31.45785538]\n", + " [ 17.71887528 -31.45774147]\n", + " [ 22.10530385 -31.45762756]\n", + " [ 26.49173242 -31.45751363]\n", + " [ 30.87816099 -31.45739971]\n", + " [ 0.17236358 -0.75319715]\n", + " [ 4.55879215 -0.75308323]\n", + " [ 8.94522072 -0.75296932]\n", + " [ 13.33164929 -0.7528554 ]\n", + " [ 17.71807786 -0.75274148]\n", + " [ 22.10450643 -0.75262756]\n", + " [ 26.490935 -0.75251364]\n", + " [ 30.87736356 -0.75239973]\n", + " [ 30.87816099 -31.45739971]\n", + " [ 30.87804707 -27.07097114]\n", + " [ 30.87793315 -22.68454257]\n", + " [ 30.87781924 -18.29811401]\n", + " [ 30.87770532 -13.91168544]\n", + " [ 30.87759141 -9.52525687]\n", + " [ 30.87747749 -5.1388283 ]\n", + " [ 30.87736356 -0.75239973]\n", + " [ 0.18811133 -29.54569675]\n", + " [ 0.18797171 [-0.146231 0.80450878 0.57565799]\n", + " [-0.11888527 0.80690978 0.57858699]\n", + " [-0.0909765 0.80879718 0.58100808]\n", + " [-0.06261615 0.81012776 0.58289985]\n", + " [-0.03391581 0.81086846 0.58424486]\n", + " [-0.0049877 0.81099629 0.58503003]\n", + " [ 0.02405534 0.81049813 0.58524706]\n", + " [-0.16563824 0.90083927 0.40131356]\n", + " [-0.13134461 0.90543979 0.40364263]\n", + " [-0.09614496 0.90901583 0.40551987]\n", + " [-0.06023671 0.91148196 0.40690562]\n", + " [-0.0238231 0.912774 0.40776965]\n", + " [ 0.01288451 0.91285007 0.40809159]\n", + " [-0.1775507 0.89379936 0.41182332]\n", + " [-0.17747419 0.87837658 0.44379894]\n", + " [-0.17702731 0.86198003 0.47502816]\n", + " [-0.17620998 0.84473619 0.50534226]\n", + " [-0.17502135 0.82679322 0.53458442]\n", + " [-0.17345885 0.80832126 0.56260889]\n", + " [ 0.02577577 0.90720488 0.4198987 ]\n", + " [ 0.02548838 0.89117256 0.4529479 ]\n", + " [ 0.02517337 0.87405211 0.48517956]\n", + " [ 0.02483351 0.85597467 0.516421 ]\n", + " [ 0.02447224 0.83708994 0.54651765]\n", + " [ 0.02409379 0.81756582 0.57533088]\n", + " [-0.16136833 0.80300062 0.57371619]\n", + " [-0.12821136 0.80620607 0.57757565]\n", + " [-0.0941519 0.80866594 0.58068478]\n", + " [-0.05939524 0.8102964 0.58300252]\n", + " [-0.02414691 0.81103662 0.58449682]\n", + " [ 0.01138628 0.81084834 0.58514556]\n", + " [-0.17748933 0.89899019 0.40039252]\n", + " [-0.17748933 0.89899019 0.40039252]\n", + " [ 0.02395704 0.81055652 0.58517022]\n", + " [ 0.02395704 0.81055652 0.58517022]\n", + " [-0.16570172 0.89562719 0.41278915]\n", + " [-0.16564719 0.88013447 0.44488687]\n", + " [-0.16524609 0.86365389 0.47623071]\n", + " [-0.16449873 0.8463121 0.50665175]\n", + " [-0.16340469 0.82825722 0.53599336]\n", + " [-0.16196173 0.80965925 0.56411019]\n", + " [-0.131414 0.9001742 0.41523099]\n", + " [-0.1314216 0.88450573 0.44763598]\n", + " [-0.13115011 0.86781461 0.47926761]\n", + " [-0.13060068 0.85022826 0.50995624]\n", + " [-0.12977397 0.83189483 0.53954583]\n", + " [-0.12866868 0.81298366 0.56789254]\n", + " [-0.09622017 0.90370678 0.41719987]\n", + " [-0.09629038 0.88789597 0.44985431]\n", + " [-0.09614973 0.87103517 0.48171875]\n", + " [-0.09579958 0.85325286 0.51262267]\n", + " [-0.09524103 0.8346975 0.54241057]\n", + " [-0.09447337 0.81553781 0.57094034]\n", + " [-0.06031772 0.90613977 0.41865557]\n", + " [-0.06045162 0.89022084 0.45150024]\n", + " [-0.06044425 0.8732319 0.48354166]\n", + " [-0.06029645 0.85530259 0.51460841]\n", + " [-0.06000886 0.83658185 0.54454545]\n", + " [-0.05958058 0.81723797 0.57321223]\n", + " [-0.02390986 0.90740935 0.41956715]\n", + " [-0.02410861 0.89141759 0.4525411 ]\n", + " [-0.02423719 0.87434315 0.4847026 ]\n", + " [-0.0242952 0.8563166 0.51587947]\n", + " [-0.02428196 0.83748734 0.54591698]\n", + " [-0.02419554 0.81802344 0.57467576]\n", + " [ 0.01279205 0.90747392 0.41991361]\n", + " [ 0.01252779 0.89144568 0.45295436]\n", + " [ 0.0122615 0.87432942 0.48517803]\n", + " [ 0.01199529 0.85625624 0.51641201]\n", + " [ 0.01173183 0.83737581 0.54650171]\n", + " [ 0.01147468 0.81785607 0.57530843]]\n", + "DEBUG:root:mm_to_pix: fitpx.shape: (96, 2)\n", + "41 0.05119852 0.08739951 0.12308827 0.15806297 0.19212497\n", + " 0.01475342 0.05140434 0.08774826 0.12357559 0.15868553 0.19288138\n", + " 0.01478357 0.05150885 0.08792506 0.1238221 DEBUG:root:radec2pix: curVec Shape: (96, 3)\n", + " 0.15899976 0.19326249]\n", + " [-0.20886687 -0.18138669 -0.15321267 -0.12445123 -0.0952084 -0.06559229\n", + " -0.03571531 -0.00569466 -0.20886687 -0.20871575 -0.20829328 -0.20760055\n", + " -0.20663909 -0.20541086 -0.20391875 -0.20216791 -0.00569466 -0.00569039\n", + " -0.0056785 -0.00565918 -0.00563263 -0.00559908 -0.00555867 -0.00551146\n", + " -0.20216791 -0.17558603 -0.14832064 -0.12047648 -0.09216227 -0.06348867\n", + " -0.03456748 -0.00551146 -0.19697755 -0.16281769 -0.12772153 -0.09188434\n", + " -0.05550542 -0.01879375 -0.20874173 -0.20837407 -0.20760004 -0.20642226\n", + " -0.2048444 -0.20287264 -0.00579649 -0.00578593 -0.0057639 -0.00573078\n", + " -0.00568698 -0.00563273 -0.19067465 -0.1576223 -0.12364673 -0.08894663\n", + " -0.05372559 -0.0181899 -0.20877415 -0.20877415 -0.0056111 -0.0056111\n", + " -0.19694699 -0.19660038 -0.19587092 -0.19476145 -0.19327535 -0.19141752\n", + " -0.16279237 -0.16250539 -0.1619024 -0.1609872 -0.15976346 -0.15823425\n", + " -0.12770151 -0.1274748 -0.12699943 -0.12628004 -0.12532102 -0.12412508\n", + " -0.09186978 -0.09170505 -0.09136033 -0.09084026 -0.09014925 -0.08928993\n", + " -0.05549654 -0.05539609 -0.05518622 -0.05487037 -0.05445187 -0.05393273\n", + " -0.01879073 -0.01875652 -0.01868512 -0.01857781 -0.01843585 -0.01826001]\n", + " [ 0.97794273 0.98341048 0.98819185 0.99222433 0.99545595 0.99784509\n", + " 0.99936059 0.99998236 0.97794273 0.97749565 0.9762507 0.9742251\n", + " 0.97144709 0.96795574 0.96380057 0.95904056 0.99998236 0.99948072\n", + " 0.99808363 0.99580962 0.99268842 0.98876027 0.98407575 0.97869595\n", + " 0.95904056 0.96389901 0.96815807 0.97175737 0.97464592 0.97678318\n", + " 0.97813943 0.97869595 0.98040646 0.98665461 0.99180849 0.9957681\n", + " 0.99845679 0.99982178 0.97786633 0.97678012 0.97451125 0.97110713\n", + " 0.96663966 0.961204 0.99987386 0.99865515 0.99610859 0.99228429\n", + " 0.98725633 0.98112215 0.96124585 0.96680599 0.97140476 0.97494433\n", + " 0.97735008 0.97857186 0.97796235 0.97796235 0.97871492 0.97871492\n", + " 0.980DEBUG:root:optics_fp: rtanth: [31.49183295 27.10547639 22.71914763 18.33286663 13.94667845 9.56071086\n", + " 5.17552468 0.80400903 31.49183295 31.81893962 32.73584893 34.19514883\n", + " 36.13117923 38.47203574 41.14868729 44.10003298 0.80400903 4.62123428\n", + " 8.97478096 13.34987234 17.73056686 22.11353481 26.49764807 30.88241889\n", + " 44.10003298 41.08265104 38.3306279 35.90503258 33.87605653 32.31848632\n", + " 31.30277019 30.88241889 29.57945042 24.20357534 18.8277716 13.45212473\n", + " 8.07694792 2.70504492 31.5450314 32.34738816 33.9914811 36.36331677\n", + " 39.33145785 42.7719429 2.22895212 7.49884938 12.85690509 18.22553229\n", + " 23.59751677 28.97099101 42.74447401 39.21682332 36.14735337 33.66163739\n", + " 31.89644588 30.97520686 31.47691651 31.47691651 30.86780955 30.86780955\n", + " 29.6519244 30.50411668 32.24233865 34.73382242 37.83003027 41.39549146\n", + " 24.29209321 25.32528987 27.39411567 30.28708623 33.79319995 37.74196451\n", + " 18.94142858 20.24949953 22.78397459 26.19121067 30.17701587 34.5416822\n", + " 13.61074549 15.379106DEBUG:root:radec2pix: xyfp: [[ -0.24606 31.536148 ]\n", + " [ -0.24606 27.14971943]\n", + " [ -0.24606 22.76329086]\n", + " [ -0.24606 18.37686229]\n", + " [ -0.24606 13.99043371]\n", + " [ -0.24606 9.60400514]\n", + " [ -0.24606 5.21757658]\n", + " [ -0.24606 0.831148 ]\n", + " [ -0.24606 31.536148 ]\n", + " [ -4.63248857 31.536148 ]\n", + " [ -9.01891714 31.536148 ]\n", + " [-13.40534571 31.536148 ]\n", + " [-17.79177429 31.536148 ]\n", + " [-22.17820286 31.536148 ]\n", + " [-26.56463143 31.536148 ]\n", + " [-30.95106 31.536148 ]\n", + " [ -0.24606 0.831148 ]\n", + " [ -4.63248857 0.831148 ]\n", + " [ -9.01891714 0.831148 ]\n", + " [-13.40534571 0.831148 ]\n", + " [-17.79177429 0.831148 ]\n", + " [-22.17820285 0.831148 ]\n", + " [-26.56463143 0.831148 ]\n", + " [-30.95106 0.831148 ]\n", + " [-30.95106 31.536148 ]\n", + " [-30.95106 27.14971943]\n", + " [-30.95106 22.76329086]\n", + " [-30.95106 18.37686228]\n", + " [-30.95106 13.99043371]\n", + " [-30.95106 9.60400514]\n", + " [-30.95106 5.21757657]\n", + " [-30.95106 0.831148 ]\n", + " [ -0.26106 29.623648 ]\n", + " [ -0.26106 -24.16969676]\n", + " [ 0.1878321 -18.79369675]\n", + " [ 0.18769248 -13.41769676]\n", + " [ 0.18755286 -8.04169676]\n", + " [ 0.18741324 -2.66569676]\n", + " [ 2.08566061 -31.44314748]\n", + " [ 7.46166061 -31.44300785]\n", + " [ 12.83766061 -31.44286824]\n", + " [ 18.2136606 -31.44272862]\n", + " [ 23.5896606 -31.442589 ]\n", + " [ 28.9656606 -31.44244938]\n", + " [ 2.08486397 -0.76814748]\n", + " [ 7.46086396 -0.76800786]\n", + " [ 12.83686396 -0.76786825]\n", + " [ 18.21286396 -0.76772863]\n", + " [ 23.58886395 -0.76758901]\n", + " [ 28.96486395 -0.7674494 ]\n", + " [ 30.86311132 -29.54490011]\n", + " [ 30.86297171 -24.16890011]\n", + " [ 30.86283209 -18.79290011]\n", + " [ 30.86269247 -13.41690011]\n", + " [ 30.86255285 -8.04090011]\n", + " [ 30.86241323 -2.66490012]\n", + " [ 0.18816061 -31.44319675]\n", + " [ 0.18816061 -31.44319675]\n", + " [ 30.86236396 -0.76740012]\n", + " [ 30.86236396 -0.76740012]\n", + " [ 2.08561133 -29.54564748]\n", + " [ 7.46161133 -29.54550785]\n", + " [ 12.83761133 -29.54536824]\n", + " [ 18.21361133 -29.54522862]\n", + " [ 23.58961132 -29.545089 ]\n", + " [ 28.96561132 -29.54494938]\n", + " [ 2.08547171 -24.16964747]\n", + " [ 7.46147171 -24.16950786]\n", + " 24.247648 ]\n", + " [ -0.26106 18.87164801]\n", + " [ -0.26106 13.495648 ]\n", + " [ -0.26106 8.119648 ]\n", + " [ -0.26106 2.743648 ]\n", + " [ -2.15856 31.521148 ]\n", + " [ -7.53456 31.521148 ]\n", + " [-12.91056 31.521148 ]\n", + " [-18.28656 31.521148 ]\n", + " [-23.66256 31.521148 ]\n", + " [-29.03856 31.521148 ]\n", + " [ -2.15856 0.846148 ]\n", + " [ -7.53456 0.846148 ]\n", + " [-12.91056 0.846148 ]\n", + " [-18.28655999 0.846148 ]\n", + " [-23.66256 0.846148 ]\n", + " [-29.03856 0.846148 ]\n", + " [-30.93606 29.623648 ]\n", + " [-30.93606 24.247648 ]\n", + " [-30.93606 18.871648 ]\n", + " [-30.93606 13.495648 ]\n", + " [-30.93606 8.119648 ]\n", + " [-30.93606 2.743648 ]\n", + " [ -0.26106 31.521148 ]\n", + " [ -0.26106 31.521148 ]\n", + " [-30.93606 0.846148 ]\n", + " [-30.93606 0.846148 ]\n", + " [ -2.15856 29.623648 ]\n", + " [ -7.53456 29.623648 ]\n", + " [-12.91056 29.623648 ]\n", + " [-18.28656 29.623648 ]\n", + " [-23.66256 29.623648 ]\n", + " [-29.03856 29.623648 ]\n", + " [ -2.15856 24.247648 ]\n", + " [ -7.53456 24.247648 ]\n", + " [-12.91056 24.247648 ]\n", + " [-18.28656 24.247648 ]\n", + " [-23.66256 24.247648 ]\n", + " [-29.03856 24.247648 ]\n", + " [ -2.15856 18.871648 ]\n", + " [ -7.53456 18.871648 ]\n", + " [-12.91056 18.871648 ]\n", + " [-18.28656 18.871648 ]\n", + " [-23.66256 18.871648 ]\n", + " [-29.03856 18.871648 ]\n", + " [ -2.15856 13.495648 ]\n", + " [ -7.53456 13.495648 ]\n", + " [-12.91056 13.495648 ]\n", + " [-18.28656 13.495648 ]\n", + " [-23.66256 13.495648 ]\n", + " [-29.03856 13.495648 ]\n", + " [ -2.15856 8.119648 ]\n", + " [ -7.53456 8.119648 ]\n", + " [-12.91056 8.119648 ]\n", + " [-18.28656 8.119648 ]\n", + " [-23.66256 8.119648 ]\n", + " [-29.03856 8.119648 ]\n", + " [ -2.15856 2.743648 ]\n", + " [ -7.53456 2.743648 ]\n", + " [-12.91056 2.743648 ]\n", + " [-18.28656 2.743648 ]\n", + " [-23.66256 2.743648 ]\n", + " [-29.03856 2.743648 ]]\n", + "DEBUG:root:radec2pix: camVec: [[-0.20629584 -0.20812128 -0.20967356 -0.21095376 -0.21196139 -0.21269501\n", + " -0.2131529 -0.21333373 -0.20629584 -0.1798852 -0.15276427 -0.12504507\n", + " -0.0968DEBUG:root:radec2pix: camVec: [[-0.00108623 -0.00110818 -0.00112898 -0.00114857 -0.00116686 -0.00118378\n", + " -0.00119922 -0.00121312 -0.00108623 -0.03008973 -0.05897582 -0.08763213\n", + " -0.11594722 -0.14381054 -0.17111212 -0.19774215 -0.00121312 -0.0312253\n", + " -0.06111305 -0.09075893 -0.12004913 -0.1488739 -0.17712688 -0.20470344\n", + " -0.19774215 -0.19951656 -0.20103291 -0.2022905 -0.20328809 -0.20402394\n", + " -0.20449622 -0.20470344 -0.00119558 -0.00122271 -0.00124786 -0.00127089\n", + " -0.00129164 -0.00130994 -0.01373956 -0.04922259 -0.08441749 -0.11911871\n", + " -0.1531227 -0.18622706 -0.01430615 -0.05102028 -0.08743049 -0.12332566\n", + " -0.15850368 -0.19276957 -0.19845732 -0.20045757 -0.20206974 -0.20329178\n", + " -0.20412054 -0.20455274 -0.00118556 -0.00118556 -0.20461015 -0.20461015\n", + " -0.01379915 -0.04942232 -0.08475642 -0.11959564 -0.15373662 -0.18697743\n", + " -0.01395111 -0.04992687 -0.08561039 -0.12079486 -0.15527748 -0.18885795\n", + " -0.0140777 -0.05033965 -0.08630574 -0.12176792 -0.15652378 -0.19037482\n", + " -0.014119 18.5898944 22.63745111 27.1500822 31.93121491\n", + " 8.33845435 10.99064764 15.16118736 19.91812291 24.9279841 30.06459569\n", + " 3.40734519 7.92934524 13.11265734 18.40684115 23.73782997 29.08539314]\n", + "3091 0.97920779 0.97690711 0.97345458 0.96892234 0.96340632\n", + " 0.98655391 0.98541472 0.9830343 0.97946045 0.97476571 0.96904706\n", + " 0.99170508 0.99053516 0.98809029 0.9844187 0.97959323 0.97371115\n", + " 0.99566261 0.99446915 0.99197511 0.98822939 0.98330525 0.97730001\n", + " 0.99834987 0.99714035 0.99461285 0.99081699 0.9858265 0.97973876\n", + " 0.99971414 0.99849639 0.99595183 0.99213051 0.98710648 0.98097716]]\n", + "DEBUG:root:radec2pix: lng: [224.22465666 219.9428498 215.04979529 209.49258103 203.25301711\n", + " 196.37209253 188.97143587 181.25779309 224.22465666 228.40166279\n", + " 233.19815281 238.6792283 244.87949815 251.77642798 259.26349599\n", + " 267.13824006 181.25779309 181.45651552 181.7293675 182.12731457\n", + " 182.76188514 183.93294711 186.8134933 204.42682228 267.13824006\n", + " 266.67DEBUG:root:make_az_asym: xyp: [[ -0.230877 31.363511 ]\n", + " [ -0.230877 26.97708243]\n", + " [ -0.230877 22.59065386]\n", + " [ -0.230877 18.20422528]\n", + " [ -0.230877 13.81779671]\n", + " [ -0.230877 9.43136815]\n", + " [ -0.230877 5.04493957]\n", + " [ -0.230877 0.658511 ]\n", + " [ -0.230877 31.363511 ]\n", + " [ -4.61730557 31.363511 ]\n", + " [ -9.00373414 31.363511 ]\n", + " [-13.39016272 31.363511 ]\n", + " [-17.77659129 31.363511 ]\n", + " [-22.16301986 31.363511 ]\n", + " [-26.54944843 31.363511 ]\n", + " [-30.935877 31.363511 ]\n", + " [ -0.230877 0.658511 ]\n", + " [ -4.61730558 0.658511 ]\n", + " [ -9.00373414 0.658511 ]\n", + " [-13.39016271 0.658511 ]\n", + " [-17.77659128 0.658511 ]\n", + " [-22.16301986 0.658511 ]\n", + " [-26.54944843 0.658511 ]\n", + " [-30.935877 0.658511 ]\n", + " [-30.935877 31.363511 ]\n", + " [-30.935877 26.97708243]\n", + " [-30.935877 22.59065386]\n", + " [-30.935877 18.20422528]\n", + " [-30.935877 13.81779671]\n", + " [-30.935877 9.43136814]\n", + " [-30.935877 5.04493957]\n", + " [-30.935877 0.658511 ]\n", + " [ -0.245877 29.451011 ]\n", + " [ -0.245877 578867 266.03490179 265.0879329 263.54803827 260.61180811\n", + " 252.90738353 204.42682228 222.44199402 216.7905754 210.16523251\n", + " 202.51687812 193.92347078 184.64535837 225.96080389 231.48791131\n", + " 238.01293878 245.61347707 254.24497485 263.67077373 181.36567301\n", + " 181.66068982 182.11730117 182.91819426 184.68697431 191.79462375\n", + " 266.92442169 266.24228499 265.17126169 263.2483557 258.80752919\n", + " 238.9103071 224.22429417 224.22429417 204.67204832 204.67204832\n", + " 224.17550953 229.73684595 236.38729877 244.24332674 253.28700279\n", + " 263.26773103 218.4700285 223.99636381 230.89540499 239.46063162\n", + " 249.83973486 261.78766678 211.69663969 216.8854629 223.71683254\n", + " 232.7982941 244.71540545 259.48183646 203.77225927 208.15895021\n", + " 214.29602039 223.21973304 236.48809111 255.41258234 194.75709541\n", + " 197.7504966 202.19079752 209.33692857 222.08957905 246.48817507\n", + " 184.93467768 185.99075879 187.61766642 190.44256036 196.50176943\n", + " 217.01878407]\n", + "7814 -0.05065827 -0.08683905 -0.12251113 -0.15747231 -0.19152571\n", + " -0.0142515 -0.05087978 -0.08720594 -0.12301955 -0.15811848 -0.19230704\n", + " -0.01429691 -0.0510015 -0.08740238 -0.12328852 -0.15845779 -0.19271515]\n", + " [ 0.20994474 0.18250974 0.15437814 0.12565449 0.09644464 0.0668576\n", + " 0.03700641 0.00700791 0.20994474 0.20980966 0.20940234 0.20872399\n", + " 0.20777622 0.20656061 0.20507835 0.20333011 0.00700791 0.00701559\n", + " 0.00701392 0.00700302 0.00698305 0.00695418 0.00691659 0.00687038\n", + " 0.20333011 0.17679323 0.14956333 0.12175011 0.09346339 0.06481351\n", + " 0.03591173 0.00687038 0.19807534 0.16396932 0.12892083 0.09312409\n", + " 0.05677987 0.02009792 0.20982687 0.20947825 0.20872203 0.20756102\n", + " 0.20599809 0.20403521 0.00711509 0.00711803 0.00710683 0.00708177\n", + " 0.0070432 0.00699139 0.19185821 0.1588536 0.12491703 0.09025061\n", + " 0.0550575 0.01954302 0.20985223 0.20985223 0.00696998 0.00696998\n", + " 0.19805172 0.19772367 0.19701128 0.19591776 0.19444643 0.19259955\n", + " 0.16395068 0.1636812 0.16309354 0.DEBUG:root:radec2pix: curVec: [[-0.88097957 0.42854671 0.20055602]\n", + " [-0.86738875 0.45098386 0.21035759]\n", + " [-0.85282605 0.47350476 0.22018394]\n", + " [-0.8373114 0.49599973 0.2299867 ]\n", + " [-0.8208739 0.51836339 0.23971949]\n", + " [-0.80355281 0.54049388 0.24933761]\n", + " [-0.78539802 0.56229307 0.25879809]\n", + " [-0.76647003 0.58366728 0.26806008]\n", + " [-0.88097957 0.42854671 0.20055602]\n", + " [-0.88026533 0.41664843 0.22701771]\n", + " [-0.87876865 0.40451935 0.25323852]\n", + " [-0.87650457 0.39221414 0.27911968]\n", + " [-0.87349674 0.37979323 0.30456616]\n", + " [-0.86977707 0.36732322 0.32948672]\n", + " [-0.86538541 0.35487773 0.35379358]\n", + " [-0.86036933 0.34253858 0.37740155]\n", + " [-0.76647003 0.58366728 0.26806008]\n", + " [-0.76579947 0.57122983 0.29537714]\n", + " [-0.76444256 0.55832202 0.32234158]\n", + " [-0.76241443 0.54500206 0.34885095]\n", + " [-0.75973889 0.53133364 0.37480846]\n", + " [-0.75644799 0.51738527 0.40012364]\n", + " [-0.75258162 0.50323007 0.42471214]\n", + " [-0.74818732 0.48894607 0.44849467]\n", + " [-0.86036933 0.34253858 0.37740155]\n", + " [-0.84687931 0.36327532 0.38836384]\n", + " [-0.83249026 0.38425172 0.39913731]\n", + " [-0.81722608 0.40535227 0.40967191]\n", + " [-0.8011187 0.42646964 0.41991961]\n", + " [-0.78420862 0.44750327 0.42983446]\n", + " [-0.76654532 0.46835847 0.43937298]\n", + " [-0.74818732 0.48894607 0.44849467]\n", + " [-0.87517325 0.43827144 0.20491444]\n", + " [-0.85786066 0.46584046 0.21695104]\n", + " [-0.83910713 0.49342582 0.22897638]\n", + " [-0.81896236 0.52083182 0.24090428]\n", + " [-0.79749867 0.54787098 0.25265243]\n", + " [-0.77481236 0.57436443 0.26414261]\n", + " [-0.88072015 0.42346694 0.21215035]\n", + " [-0.87931716 0.40872199 0.24443337]\n", + " [-0.8767529 0.3936839 0.27625593]\n", + " [-0.87306736 0.3784615 0.3074415 ]\n", + " [-0.86831926 0.36317749 0.33782212]\n", + " [-0.86258515 0.34797076 0.36723727]\n", + " [-0.76632861 0.57823357 0.27997571]\n", + " [-0.76504365 0.56266705 0.31323154]\n", + " [-0.76274171 0.54645139 0.3458554 ]\n", + " [-0.75946303 0.52970157 0.37766672]\n", + " [-0.75526656 0.51254372 0.40849891]\n", + " [-0.75022893 0.49511443 0.43819887]\n", + " [-0.8546175 0.35116219177 0.16098028 0.15946229\n", + " 0.12890725 0.1286975 0.12823673 0.12752928 0.12657997 0.12539259\n", + " 0.09311572 0.09296747 0.092637 0.09212815 0.0914453 0.09059206\n", + " 0.05677687 0.05669199 0.05649545 0.05618991 0.05577844 0.0552636\n", + " 0.02010041 0.0200803 0.02002048 0.0199219 0.01978566 0.01961272]\n", + " [ 0.97771265 0.98320342 0.98801119 0.9920734 0.99533767 0.99776183\n", + " 0.99931431 0.99997471 0.97771265 0.97727914 0.97604944 0.97404051\n", + " 0.97128023 0.96780744 0.96367189 0.95893426 0.99997471 0.99948775\n", + " 0.99810621 0.99584827 0.99274339 0.98883174 0.98416372 0.97879993\n", + " 0.95893426 0.96381393 0.96809947 0.97172808 0.97464791 0.97681802\n", + " 0.97820838 0.97879993 0.98018607 0.98646468 0.9916541 0.9956537\n", + " 0.99838589 0.99979716 0.97764201 0.9765736 0.97432479 0.97094241\n", + " 0.96649792 0.96108746 0.99987235 0.99867225 0.99614527 0.99234098\n", + " 0.98733327 0.98121915 0.96114781 0.96673797 0.971372 0.97494989\n", + " 0.93814 -0.06825398 -0.03940385 -0.01040007 -0.21333373 -0.18599064\n", + " -0.15793623 -0.12927467 -0.10011211 -0.07055816 -0.04072622 -0.01073294\n", + " -0.01040007 -0.01048759 -0.01056224 -0.01062379 -0.01067191 -0.0107063\n", + " -0.0107267 -0.01073294 -0.20703611 -0.20908844 -0.21073192 -0.21196628\n", + " -0.21278893 -0.21319686 -0.19488162 -0.16201965 -0.12820231 -0.09363367\n", + " -0.05851721 -0.02305821 -0.20150602 -0.16750285 -0.13253465 -0.0967959\n", + " -0.06048842 -0.02382238 -0.0105395 -0.01063912 -0.01071899 -0.01077856\n", + " -0.01081726 -0.01083465 -0.20621357 -0.20621357 -0.01083565 -0.01083565\n", + " -0.19565571 -0.16265759 -0.12870452 -0.09399937 -0.05874512 -0.0231472\n", + " -0.19758845 -0.16425347 -0.12996305 -0.09491705 -0.05931746 -0.02337052\n", + " -0.19913769 -0.16553623 -0.13097704 -0.09565767 -0.05977969 -0.02355053\n", + " -0.20030226 -0.16650264 -0.13174231 -0.09621721 -0.0601289 -0.023686\n", + " -0.20107886 -0.16714801 -0.13225382 -0.09659125 -0.06036201 -0.02377567\n", + " -0.201464 -0.16746808 -0.13250731 -0.0967762 -058513 0.38212147]\n", + " [-0.83747672 0.37717792 0.39543591]\n", + " [-0.81900836 0.40301481 0.40841692]\n", + " [-0.79926782 0.42889487 0.42097523]\n", + " [-0.77832971 0.4546329 0.43302631]\n", + " [-0.75628889 0.48005686 0.44449131]\n", + " [-0.88093367 0.42858293 0.20068022]\n", + " [-0.88093367 0.42858293 0.20068022]\n", + " [-0.74826708 0.48892519 0.44838436]\n", + " [-0.74826708 0.48892519 0.44838436]\n", + " [-0.87495943 0.43313339 0.21642887]\n", + " [-0.87355706 0.41830851 0.24882937]\n", + " [-0.87099577 0.40316483 0.28075699]\n", + " [-0.86731588 0.38781108 0.31203484]\n", + " [-0.8625765 0.37236932 0.34249505]\n", + " [-0.85685458 0.3569773 0.37197775]\n", + " [-0.85764648 0.46064646 0.2285768 ]\n", + " [-0.85625027 0.44561549 0.26127057]\n", + " [-0.85370613 0.43019611 0.29345722]\n", + " [-0.85005516 0.41449734 0.32495872]\n", + " [-0.84535746 0.39864037 0.35560738]\n", + " [-0.83969087 0.3827604 0.385245 ]\n", + " [-0.83889338 0.48818566 0.24069206]\n", + " [-0.83751029 0.47297872 0.27361952]\n", + " [-0.83499713 0.45731757 0.30600724]\n", + " [-0.83139544 0.44131228 0.33767602]\n", + " [-0.82676588 0.42508429 0.3684583 ]\n", + " [-0.82118687 0.40876761 0.39819739]\n", + " [-0.81874985 0.51555556 0.25268784]\n", + " [-0.81738727 0.50020338 0.28578775]\n", + " [-0.81491971 0.48433458 0.31831727]\n", + " [-0.81138877 0.46806071 0.35009632]\n", + " [-0.80685521 0.45150427 0.38095743]\n", + " [-0.80139748 0.43479927 0.41074526]\n", + " [-0.79728826 0.54256901 0.2644812 ]\n", + " [-0.79595368 0.52710338 0.29769072]\n", + " [-0.79354664 0.51106217 0.33030168]\n", + " [-0.79010837 0.49455851 0.36213345]\n", + " [-0.78569919 0.47771642 0.39301884]\n", + " [-0.78039707 0.46067073 0.42280361]\n", + " [-0.77460486 0.56904739 0.27599343]\n", + " [-0.7733057 0.55350124 0.30924857]\n", + " [-0.77097383 0.53732439 0.34187987]\n", + " [-0.76764983 0.5206314 0.37370668]\n", + " [-0.76339306 0.50354786 0.40456222]\n", + " [-0.75828058 0.48620987 0.43429313]]\n", + " 24.075011 ]\n", + " [ -0.245877 18.699011 ]\n", + " [ -0.245877 13.323011 ]\n", + " [ -0.245877 7.947011 ]\n", + " [ -0.245877 2.571011 ]\n", + " [ -2.143377 31.348511 ]\n", + " [ -7.519377 31.348511 ]\n", + " [-12.895377 31.348511 ]\n", + " [-18.7739627 0.97866043 0.97773239 0.97773239 0.97881873 0.97881873\n", + " 0.98009443 0.97901113 0.97673072 0.97330012 0.96879081 0.96329894\n", + " 0.98636988 0.98524909 0.98288929 0.97933775 0.97466623 0.96897082\n", + " 0.99155673 0.99040541 0.9879811 0.98433168 0.97952939 0.97367044\n", + " 0.99555434 0.9943796 0.99190593 0.98818188 0.98328034 0.97729779\n", + " 0.99828517 0.99709441 0.99458704 0.99081223 0.98584345 0.97977749\n", + " 0.99969574 0.99849668 0.99597189 0.99217088 0.98716749 0.98105872]]\n", + " [ 12.83747171 -24.16936824]\n", + " [ 18.21347171 -24.16922862]\n", + " [ 23.58947171 -24.16908901]\n", + " [ 28.9654717 -24.16894939]\n", + " [ 2.0853321 -18.79364747]\n", + " [ 7.46133209 -18.79350785]\n", + " [ 12.83733209 -18.79336824]\n", + " [ 18.21333209 -18.79322862]\n", + " [ 23.58933209 -18.79308901]\n", + " [ 28.96533209 -18.79294939]\n", + " [ 2.08519248 -13.41764748]\n", + " [ 7.46119248 -13.41750786]\n", + " [ 12.83719247 -13.41736824]\n", + " [ 18.21319248 -13.41722863]\n", + " [ 23.58919247 -13.41708901]\n", + " [ 28.96519247 -13.41694939]\n", + " [ 2.08505286 -8.041DEBUG:root:radec2pix: xyfp: [[ -0.230877 31.363511 ]\n", + " [ -0.230877 26.97708243]\n", + " [ -0.230877 22.59065386]\n", + " [ -0.230877 18.20422528]\n", + " [ -0.230877 13.81779671]\n", + " [ -0.230877 9.43136815]\n", + " [ -0.230877 5.04493957]\n", + " [ -0.230877 0.658511 ]\n", + " [ -0.230877 31.363511 ]\n", + " [ -4.61730557 31.363511 ]\n", + " [ -9.00373414 31.363511 ]\n", + " [-13.39016272 31.363511 ]\n", + " [-17.77659129 31.363511 ]\n", + " [-22.16301986 31.363511 ]\n", + " [-26.54944843 31.363511 ]\n", + " [-30.935877 31.363511 ]\n", + " [ -0.230877 0.658511 ]\n", + " [ -4.61730558 0.658511 ]\n", + " [ -9.00373414 0.658511 ]\n", + " [-13.39016271 0.658511 ]\n", + " [-17.77659128 0.658511 ]\n", + " [-22.16301986 0.658511 ]\n", + " [-26.54944843 0.658511 ]\n", + " [-30.935877 0.658511 ]\n", + " [-30.935877 31.363511 ]\n", + " [-30.935877 26.97708243]\n", + " [-30.935877 22.59065386]\n", + " [-30.935877 18.20422528]\n", + " [-30.935877 13.81779671]\n", + " [-30.935877 9.43136814]\n", + " [-30.935877 5.04493957]\n", + " [-30.935877 0.658511 ]\n", + " [ -0.245877 29.451011 ]\n", + " [ -0.245877 DEBUG:root:radec2pix: lat: [73.26908943 74.24907619 75.16003276 75.97420276 76.66164507 77.19203919\n", + " 77.53795274 77.67919539 73.26908943 74.27917066 75.22575502 76.08096918\n", + " 76.81416078 77.39343277 77.78879656 77.97677996 77.67919539 79.27760057\n", + " 80.9086962 82.56716816 84.24766937 85.94438651 87.64930302 89.3245763\n", + " 77.97677996 79.57988268 81.21386953 82.87289707 84.55034798 86.23677698\n", + " 87.90848861 89.3245763 73.70687233 74.86526918 75.89266936 76.7347974\n", + " 77.33616788 77.64902834 73.71922865 74.91822462 75.99447399 76.89265343\n", + " 77.55435927 77.92679672 78.37161008 80.3532483 82.37868114 84.43807116\n", + " 86.5205023 88.60550058 78.67128345 80.65746446 82.68422414 84.73967937\n", + " 86.80532112 88.79773368 73.27606371 73.27606371 89.31677804 89.31677804\n", + " 74.16894713 75.42332545 76.55590489 77.50736059 78.21290493 78.61205636\n", + " 75.38223897 76.80151051 78.10907648 79.23409871 80.08944165 80.58344411\n", + " 76.46449862 78.05559614 79.5593541 80.89695848 81.95437214 82.58757556\n", + " 77.35718097 79.11401738 8DEBUG:root:radec2pix: ccdpx: [[-4.45000000e+01 -5.00000251e-01]\n", + " [-4.45000000e+01 2.91928572e+02]\n", + " [-4.45000000e+01 5.84357143e+02]\n", + " [-4.45000000e+01 8.76785714e+02]\n", + " [-4.45000000e+01 1.16921429e+03]\n", + " [-4.45000000e+01 1.46164286e+03]\n", + " [-4.45000000e+01 1.75407143e+03]\n", + " [-4.45000000e+01 2.04650000e+03]\n", + " [-4.45000000e+01 -5.00000251e-01]\n", + " [ 2.47928571e+02 -5.00000137e-01]\n", + " [ 5.40357143e+02 -5.00000030e-01]\n", + " [ 8.32785714e+02 -4.99999965e-01]\n", + " [ 1.12521429e+03 -4.99999941e-01]\n", + " [ 1.41764286e+03 -5.00000178e-01]\n", + " [ 1.71007143e+03 -4.99999847e-01]\n", + " [ 2.00250000e+03 -5.00000219e-01]\n", + " [-4.45000000e+01 2.04650000e+03]\n", + " [ 2.47928571e+02 2.04650000e+03]\n", + " [ 5.40357143e+02 2.04650000e+03]\n", + " [ 8.32785714e+02 2.04650000e+03]\n", + " [ 1.12521429e+03 2.04650000e+03]\n", + " [ 1.41764286e+03 2.04650000e+03]\n", + " [ 1.71007143e+03 2.04650000e+03]\n", + " [ 2.00250000e+03 2.04650000e+03]\n", + " [ 2.00250000e+03 -5.00000219e-01]\n", + " [ 2.00250000e+03 2.91928572e+02]\n", + " [ 2.00250000e+03 5.84357143e+02]\n", + " [ 2.00250000e+03 8.76785DEBUG:root:radec2pix: camVec Shape: (3, 96)\n", + "DEBUG:root:optics_fp: cphi: [0.00531582 0.00617606 0.00736845 0.00913141 0.01200322 0.01750968\n", + " 0.03234551 0.20821284 0.00531582 0.14311708 0.27310311 0.3897246\n", + " 0.4902447 0.57443147 0.64366516 0.70005401 0.20821284 0.985415\n", + " 0.9961538 0.99826353 0.99901596 0.99936749 0.99955952 0.99967574\n", + " 0.70005401 0.75147061 0.80542393 0.85983504 0.91133409 0.95525529\n", + " 0.98625153 0.99967574 0.00616661 0.00753628 0.00968808 0.01355957\n", + " 0.02258341 0.06743141 0.06593447 0.23049481 0.37750356 0.50072179\n", + " 0.5996194 0.67707715 0.93313131 0.9942732 0.99805551 0.99903282\n", + " 0.99942317 0.99961734 0.72190396 0.78684101 0.853656 0.91669352\n", + " 0.96742456 0.9961969 0.00579488 0.00579488 0.99966293 0.99966293\n", + " 0.07014401 0.24442291 0.39798307 0.52421253 0.62341756 0.6995908\n", + " 0.08562066 0.29440551 0.4684183 0.60117718 0.69788907 0.76731313\n", + " 0.10980719 0.36820194 0.56319871 0.69519142 0.78151879 0.83840459\n", + " 0.15281345 0.48480743 0.69026239 0.80432664 0.86864949 0.90694654\n", + " 0.24943532 0.67838632 0.84636544 0.9141376 0.94608152 0.96325609\n", + " 0.61041805 0.94029264 0.97858921 0.98919227 0.99351563 0.99568553]\n", + "64748]\n", + " [ 7.46105286 -8.04150786]\n", + " [ 12.83705286 -8.04136825]\n", + " [ 18.21305286 -8.04122863]\n", + " [ 23.58905286 -8.04108901]\n", + " [ 28.96505285 -8.04094939]\n", + " [ 2.08491324 -2.66564748]\n", + " [ 7.46091324 -2.66550786]\n", + " [ 12.83691324 -2.66536825]\n", + " [ 18.21291324 -2.66522863]\n", + " [ 23.58891323 -2.66508901]\n", + " [ 28.96491324 -2.66494939]]\n", + "714e+02]\n", + " [ 2.00250000e+03 1.16921429e+03]\n", + " [ 2.00250000e+03 1.46164286e+03]\n", + " [ 2.00250000e+03 1.75407143e+03]\n", + " [ 2.00250000e+03 2.04650000e+03]\n", + " [-4.35000000e+01 1.27000000e+02]\n", + " [-4.35000000e+01 4.85400000e+02]\n", + " [-4.35000000e+01 8.43800000e+02]\n", + " [-4.35000000e+01 1.20220000e+03]\n", + " [-4.35000000e+01 1.56060000e+03]\n", + " [-4.35000000e+01 1.91900000e+03]\n", + " [ 8.30000000e+01 4.99999716e-01]\n", + " [ 4.41400000e+02 4.99999791e-01]\n", + " [ 7.99800000e+02 5.00000291e-01]\n", + " [ 1.15820000e+03 5.00000004e-01]\n", + " [ 1.51660000e+03 5.00000077e-01DEBUG:root:optics_fp: xyfp shape: (96, 2)\n", + "271377 31.348511 ]\n", + " [-23.647377 31.348511 ]\n", + " [-29.023377 31.348511 ]\n", + " [ -2.143377 0.673511 ]\n", + " [ -7.519377 0.673511 ]\n", + " [-12.895377 0.673511 ]\n", + " [-18.271377 0.673511 ]\n", + " [-23.64737701 0.673511 ]\n", + " [-29.023377 0.673511 ]\n", + " [-30.920877 29.451011 ]\n", + " [-30.920877 24.075011 ]\n", + " [-30.920877 18.699011 ]\n", + " [-30.920877 13.323011 ]\n", + " [-30.920877 7.947011 ]\n", + " [-30.920877 2.571011 ]\n", + " [ -0.245877 31.348511 ]\n", + " [ -0.245877 31.348511 ]\n", + " [-30.920877 0.673511 ]\n", + " [-30.920877 0.673511 ]\n", + " [ -2.143377 29.451011 ]\n", + " [ -7.519377 29.451011 ]\n", + " [-12.895377 29.451011 ]\n", + " [-18.271377 29.451011 ]\n", + " [-23.647377 29.451011 ]\n", + " [-29.023377 29.451011 ]\n", + " [ -2.143377 24.075011 ]\n", + " [ -7.519377 24.075011 ]\n", + " [-12.895377 24.075011 ]\n", + " [-18.271377 24.075011 ]\n", + " [-23.647377 24.075011 ]\n", + " [-29.023377 24.075011 ]\n", + " [ -2.143377 18.699011 ]\n", + " [ -7.519377 18.699011 ]\n", + " [-12.895377 18.699011 ]\n", + " [-18.271377 18.699011 ]\n", + " [-23.647377 18.699011 ]\n", + " [-29.023377 18.699011 ]\n", + " [ -2.143377 13.323011 ]\n", + " [ -7.519377 13.323011 ]\n", + " [-12.895377 13.323011 ]\n", + " [-18.271377 13.323011 ]\n", + " [-23.647377 13.323011 ]\n", + " [-29.023377 13.323011 ]\n", + " [ -2.143377 7.947011 ]\n", + " [ -7.519377 7.947011 ]\n", + " [-12.895377 7.947011 ]\n", + " [-18.271377 7.947011 ]\n", + " [-23.647377 7.947011 ]\n", + " [-29.023377 7.947011 ]\n", + " [ -2.143377 2.571011 ]\n", + " [ -7.519377 2.571011 ]\n", + " [-12.895377 2.571011 ]\n", + " [-18.271377 2.571011 ]\n", + " [-23.647377 2.571011 ]\n", + " [-29.023377 2.571011 ]]\n", + "0.82399404 82.41287861 83.74766412 84.60361539\n", + " 77.99846994 79.89205969 81.78816951 83.63850339 85.33442441 86.58329889\n", + " 78.33357011 80.30591073 82.31728996 84.35260664 86.38369379 88.29053235]\n", + "]\n", + " [ 1.87500000e+03 4.99999846e-01]\n", + " [ 8.30000001e+01 2.04550000e+03]\n", + " [ 4.41400000e+02 2.04550000e+03]\n", + " [ 7.99800000e+02 2.04550000e+03]\n", + " [ 1.15820000e+03 2.04550000e+0DEBUG:root:make_az_asym: xyp: shape: (96, 2)\n", + "3]\n", + " [ 1.51660000e+03 2.04550000e+03]\n", + " [ 1.87500000e+03 2.04550000e+03]\n", + " [ 2.00150000e+03 1.27000000e+02]\n", + " [ 2.00150000e+03 4.85400000e+02]\n", + " [ 2.00150000e+03 8.43800000e+02]\n", + " [ 2.00150000e+03 1.20220000e+03]\n", + " [ 2.00150000e+03 1.56060000e+03]\n", + " [ 2.00150000e+03 1.91900000e+03]\n", + " [-4.35000000e+01 4.99999735e-01]\n", + " [-4.35000000e+01 4.99999735e-01]\n", + " [ 2.00150000e+03 2.04550000e+03]\n", + " [ 2.00150000e+03 2.04550000e+03]\n", + " [ 8.30000000e+01 1.27000000e+02]\n", + " [ 4.41400000e+02 1.27000000e+02]\n", + " [ 7.99800000e+02 1.27000000e+02]\n", + " [ 1.15820000e+03 1.27000000e+02]\n", + " [ 1.51660000e+03 1.27000000e+02]\n", + " [ 1.87500000e+03 1.27000000e+02]\n", + " [ 8.30000000e+01 4.85400000e+02]\n", + " [ 4.41400000e+02 4.85400000e+02]\n", + " [ 7.99800000e+02 4.85400000e+02]\n", + " [ 1.15820000e+03 4.85400000e+02]\n", + " [ 1.51660000e+03 4.85400000e+02]\n", + " [ 1.87500000e+03 4.85400000e+02]\n", + " [ 8.30000000e+01 8.43800000e+02]\n", + " [ 4.41400000e+02 8.43800000e+02]\n", + " [ 7.99800000e+02 8.43800000e+02]\n", + " [ 1.1.06047657 -0.02381854]\n", + " [-0.20078674 -0.17428103 -0.14708674 -0.11931584 -0.09107902 -0.06248699\n", + " -0.03365118 -0.00468399 -0.20078674 -0.20262142 -0.20419049 -0.20549514\n", + " -0.20653488 -0.20730818 -0.20781318 -0.2080483 -0.00468399 -0.00472909\n", + " -0.00476846 -0.004802 -0.00482954 -0.00485094 -0.00486604 -0.00487474\n", + " -0.2080483 -0.18056016 -0.15238099 -0.12361519 -0.09436952 -0.06475431\n", + " -0.03488367 -0.00487474 -0.1893284 -0.1563645 -0.12247778 -0.08787247\n", + " -0.05275245 -0.01732329 -0.20152974 -0.20359843 -0.20526972 -0.2065434\n", + " -0.20741673 -0.20788637 -0.0048039 -0.00485635 -0.0048999 -0.00493429\n", + " -0.00495921 -0.00497442 -0.19615466 -0.1619874 -0.12688576 -0.09104519\n", + " -0.05466885 -0.01796812 -0.20070413 -0.20070413 -0.00497744 -0.00497744\n", + " -0.19010422 -0.19204948 -0.19362274 -0.19482286 -0.19564642 -0.1960896\n", + " -0.15700026 -0.15859759 -0.1598933 -0.16088429 -0.1615658 -0.16193328\n", + " -0.12297381 -0.12422245 -0.12523802 -0.12601654 -0.12655298 -0.12684288\n", + " -0.088228 -0.0891244 -0.0898551 -0.09041635 -0.09080384 -0.09101389\n", + " -0.05296627 -0.0535061 -0.05394701 -0.05428637 -0.05452132 -0.05464944\n", + " -0.01739439 -0.0175743 -0.01772184 -0.01783608 -0.01791601 -0.0179608 ]\n", + " [ 0.95766733 0.96245086 0.96664496 0.9701867 0.97302465 0.97511856\n", + " 0.97643916 0.97696816 0.95766733 0.96259331 0.96693812 0.97063664\n", + " 0.97363531 0.97589175 0.97737455 0.97806326 0.97696816 0.98254014\n", + " 0.9874378 0.9915972 0.99496444 0.99749587 0.99915849 0.99993052\n", + " 0.97806326 0.98350803 0.98826539 0.99227336 0.99548004 0.9978438\n", + " 0.99933381 0.99993052 0.95983895 0.96531454 0.96984084 0.97331841\n", + " 0.97567313 0.97685567 0.95989943 0.96555544 0.97027239 0.9739469\n", + " 0.97650091 0.97788117 0.9794755 0.98585963 0.99116626 0.99529202\n", + " 0.99815658 0.99970383 0.98051633 0.98673547 0.99185942 0.99578843\n", + " 0.99844594 0.99977985 0.95770236 0.95770236 0.9999289 0.9999289\n", + " 0.96207028 0.96781171 0.97259724 0.9763238 0.97891342 0.98031274\n", + " 0.96763099 0.97358492 0.97854164 0.98239859 0.98507763 0.98652493\n", + " 0.97222509 0.97834888 0.98344316 0.98740541 0.99015692 0.99164321\n", + " 0.97575346 0.98200495 0.98720313 0.99124524 0.9940519 0.9955679\n", + " 0.97814205 0.98447887 0.98974676 0.9938426 0.99668644 0.9982225\n", + " 0.97934146 0.98572085 0.99102359 0.99514634 0.99800882 0.99955494]]\n", + " 24.075011 ]\n", + " [ -0.245877 18.699011 ]\n", + " [ -0.245877 13.323011 ]\n", + " [ -0.245877 7.947011 ]\n", + " [ -0.245877 2.571011 ]\n", + " [ -2.143377 31.348511 ]\n", + " [ -7.519377 31.348511 ]\n", + " [-12.895377 31.348511 ]\n", + " [-18.271377 31.348511 ]\n", + " [-23.647377 31.348511 ]\n", + " [-29.023377 31.348511 ]\n", + " [ -2.143377 0.673511 ]\n", + " [ -7.519377 0.673511 ]\n", + " [-12.895377 0.673511 ]\n", + " [-18.271377 0.673511 ]\n", + " [-23.64737701 0.673511 ]\n", + " [-29.023377 0.673511 ]\n", + " [-30.920877 29.451011 ]\n", + " [-30.920877 24.075011 ]\n", + " [-30.920877 18.699011 ]\n", + " [-30.920877 13.323011 ]\n", + " [-30.920877 7.DEBUG:root:radec2pix: camVec Shape: (3, 96)\n", + "DEBUG:root:radec2pix: camVec Shape: (3, 96)\n", + "5820000e+03 8.43800000e+02]\n", + " [ 1.51660000e+03 8.43800000e+02]\n", + " [ 1.87500000e+03 8.43800000e+02]\n", + " [ 8.30000000e+01 1.20220000e+03]\n", + " [ 4.41400000e+02 1.20220000e+03]\n", + " [ 7.99800000e+02 1.20220000e+03]\n", + " [ 1.15820000e+03 1.20220000e+03]\n", + " [ 1.51660000e+03 1.20220000e+03]\n", + " [ 1.87500000e+03 1.20220000e+03]\n", + " [ 8.30000000e+01 1.56060000e+03]\n", + " [ 4.41400000e+02 1.56060000e+03]\n", + " [ 7.99800000e+02 1.56060000e+03]\n", + " [ 1.15820000e+03 1.56060000e+03]\n", + " [ 1.51660000e+03 1.56060000e+03]\n", + " [ 1.87500000e+03 1.56060000e+03]\n", + " [ 8.30000002e+01 1.91900000e+03]\n", + " [ 4.41400000e+02 1.91900000e+03]\n", + " [ 7.99800000e+02 1.91900000e+03]\n", + " [ 1.15820000e+03 1.91900000e+03]\n", + " [ 1.51660000e+03 1.91900000e+03]\n", + " [ 1.87500000e+03 1.91900000e+03]]\n", + "DEBUG:root:radec2pix: curVec Shape: (96, 3)\n", + "947011 ]\n", + " [-30.920877 2.571011 ]\n", + " [ -0.245877 31.348511 ]\n", + " [ -0.245877 31.348511 ]\n", + " [-30.920877 0.673511 ]\n", + " [-30.920877 0.673511 ]\n", + " [ -2.143377 29.451011 ]\n", + " [ -7.519377 29.451011 ]\n", + " [-12.895377 29.451011 ]\n", + " [-18.271377 29.451011 ]\n", + " [-23.647377 29.451011 ]\n", + " [-29.023377 29.451011 ]\n", + " [ -2.143377 24.075011 ]\n", + " [ -7.519377 24.075011 ]\n", + " [-12.895377 24.075011 ]\n", + " [-18.271377 24.075011 ]\n", + " [-23.647377 24.075011 ]\n", + " [-29.023377 24.075011 ]\n", + " [ -2.143377 18.699011 ]\n", + " [ -7.519377 18.699011 ]\n", + " [-12.895377 18.699011 ]\n", + " [-18.271377 18.699011 ]\n", + " [-23.647377 18.699011 ]\n", + " [-29.023377 18.699011 ]\n", + " [ -2.143377 13.323011 ]\n", + " [ -7.519377 13.323011 ]\n", + " [-12.895377 13.323011 ]\n", + " [-18.271377 13.323011 ]\n", + " [-23.647377 13.323011 ]\n", + " [-29.023377 13.323011 ]\n", + " [ -2.143377 7.947011 ]\n", + " [ -7.519377 7.947011 ]\n", + " [-12.895377 7.947011 ]\n", + " [-18.271377 7.947011 ]\n", + " [-23.647377 7.947011 ]\n", + " [-29.023377 7.947011 ]\n", + " [ -2.143377 2.571011 ]\n", + " [ -7.519377 2.571011 ]\n", + " [-12.895377 2.571011 ]\n", + " [-18.271377 2.571011 ]\n", + " [-23.647377 2.571011 ]\n", + " [-29.023377 2.571011 ]]\n", + "DEBUG:root:optics_fp: sphi: [-0.99998587 -0.99998093 -0.99997285 -0.99995831 -0.99992796 -0.99984669\n", + " -0.99947675 -0.97808354 -0.99998587 -0.98970577 -0.96198477 -0.92093145\n", + " -0.87158484 -0.81855268 -0.76530723 -0.7140899 -0.97808354 -0.17016839\n", + " -0.08762197 -0.05890603 -0.04435211 -0.03556139 -0.02967765 -0.02546394\n", + " -0.7140899 -0.65976656 -0.59269916 -0.51057194 -0.41166757 -0.29578258\n", + " -0.16525108 -0.02546394 -0.99998099 -0.9999716 -0.99995307 -0.99990806\n", + " -0.99974496 -0.99772391 -0.99782396 -0.97307356 -0.92600813 -0.86560828\n", + " -0.80028531 -0.73591205 -0.35953576 -0.10686813 -0.06233133 -0.04397062\n", + " -0.03396069 -0.02766174 -0.69199326 -0.61715575 -0.52083725 -0.39959102\n", + " -0.25315949 -0.08713059 -0.99998321 -0.99998321 -0.02596193 -0.02596193\n", + " -0.99753688 -0.96966873 -0.91739276 -0.85158747 -0.78188909 -0.71454371\n", + " -0.99632781 -0.95568059 -0.88350682 -0.79911576 -0.71620587 -0.64127261\n", + " -0.99395291 -0.92974584 -0.8263215 -0.71882466 -0.6238817 -0.54504838\n", + " -0.98825505 -0.87462092 -0.72355914 -0.59418739 -0.49542716 -0.42124573\n", + " -0.96839146 -0.73470538 -0.53260261 -0.40540407 -0.32392864 -0.26858462\n", + " -0.79207942 -0.34036707 -0.20582312 -0.14662418 -0.11369565 -0.09279187]\n", + "DEBUG:root:make_az_asym: xyp: [[ 0.173161 -31.45819714]\n", + " [ 0.17304708 -27.07176857]\n", + " [ 0.17293316 -22.68534 ]\n", + " [ 0.17281925 -18.29891143]\n", + " [ 0.17270533 -13.91248287]\n", + " [ 0.17259141 -9.52605429]\n", + " [ 0.17247749 -5.13962573]\n", + " [ 0.17236358 -0.75319715]\n", + " [ 0.173161 -31.45819714]\n", + " [ 4.55958957 -31.45808322]\n", + " [ 8.94601814 -31.45796931]\n", + " [ 13.33244671 -31.45785538]\n", + " [ 17.71887528 -31.45774147]\n", + " [ 22.10530385 -31.45762756]\n", + " [ 26.49173242 -31.45751363]\n", + " [ 30.87816099 -31.45739971]\n", + " [ 0.17236358 -0.75319715]\n", + " [ 4.55879215 -0.75308323]\n", + " [ 8.94522072 -0.75296932]\n", + " [ 13.33164929 -0.7528554 ]\n", + " [ 17.71807786 -0.75274148]\n", + " [ 22.10450643 -0.75262756]\n", + " [ 26.490935 -0.75251364]\n", + " [ 30.87736356 -0.75239973]\n", + " [ 30.87816099 DEBUG:root:radec2pix: xyfp: [[ -0.230877 31.363511 ]\n", + " [ -0.230877 26.97708243]\n", + " [ -0.230877 22.59065386]\n", + " [ -0.230877 18.20422528]\n", + " [ -0.230877 13.81779671]\n", + " [ -0.230877 9.43136815]\n", + " [ -0.230877 5.04493957]\n", + " [ -0.230877 0.658511 ]\n", + " [ -0.230877 31.363511 ]\n", + " [ -4.61730557 31.363511 ]\n", + " [ -9.00373414 31.363511 ]\n", + " [-13.39016272 31.363511 ]\n", + " [-17.77659129 31.363511 ]\n", + " [-22.16301986 31.363511 ]\n", + " [-26.54944843 31.363511 ]\n", + " [-30.935877 31.363511 ]\n", + " [ -0.230877 0.658511 ]\n", + " [ -4.61730558 0.658511 ]\n", + " [ -9.00373414 0.658511 ]\n", + " [-13.39016271 0.658511 ]\n", + " [-17.77659128 0.658511 ]\n", + " [-22.16301986 0.658511 ]\n", + " [-26.54944843 0.658511 ]\n", + " [-30.935877 0.658511 ]\n", + " [-30.935877 31.363511 ]\n", + " [-30.935877 26.97708243]\n", + " [-30.935877 22.59065386]\n", + " [-30.935877 18.20422528]\n", + " [-30.935877 13.81779671]\n", + " [-30.935877 9.43136814]\n", + " [-30.935877 5.04493957]\n", + " [-30.935877 0.658511 ]\n", + " [ -0.245877 29.451011 ]\n", + " [ -0.245877 24.075011 ]\n", + " [ -0.245877 18.699011 ]\n", + " [ -0.245877 13.323011 ]\n", + " [ -0.245877 7.947011 ]\n", + " [ -0.245877 2.571011 ]\n", + " [ -2.143377 31.348511 ]\n", + " [ -7.519377 31.348511 ]\n", + " [-12.895377 31.348511 ]\n", + " [-18.271377 31.348511 ]\n", + " [-23.647377 31.348511 ]\n", + " [-29.023377 31.348511 ]\n", + " [ -2.143377 0.673511 ]\n", + " [ -7.519377 0.673511 ]\n", + " [-12.895377 0.673511 ]\n", + " [-18.271377 0.673511 ]\n", + " [-23.64737701 0.673511 ]\n", + " [-29.023377 0.673511 ]\n", + " [-30.920877 29.451011 ]\n", + " [-30.920877 24.075011 ]\n", + " [-30.920877 18.699011 ]\n", + " [-30.920877 13.323011 ]\n", + " [-30.920877 7.947011 ]\n", + " [-30.920877 2.571011 ]\n", + " [ -0.245877 31.348511 ]\n", + " [ -0.245877 31.348511 ]\n", + " [-30.920877 0.673511 ]\n", + " [-30.920877 0.673511 ]\n", + " [ -2.143377 29.451011 ]\n", + " [ -7.519377 29.451011 ]\n", + " [-12.895377 29.451011 ]\n", + " [-18.271377 29.451011 ]\n", + " [-23.647377 29.451011 ]\n", + " [-29.023377 29.451011 ]\n", + " [ -2.143377 24.075011 ]\n", + " [ -7.519377 24.075011 ]\n", + " [-12.895377 24.075011 ]\n", + " [-18.271377 24.075011 ]\n", + " [-23.647377 24.075011 ]\n", + " [-29.023377 24.075011 ]\n", + " [ -2.143377 18.699011 ]\n", + " [ -7.519377 18.699011 ]\n", + " [-12.895377 18.699011 ]\n", + " [-18.271377 18.699011 ]\n", + " [-23.647377 18.699011 ]\n", + " [-29.023377 18.699011 ]\n", + " [ -2.143377 13.323011 ]\n", + " [ -7.519377 13.323011 ]\n", + " [-12.895377 13.323011 ]\n", + " [-18.271377 13.323011 ]\n", + " [-23.647377 13.323011 ]\n", + " [-29.023377 13.323011 ]\n", + " [ -2.143377 7.947011 ]\n", + " [ -7.519377 7.947011 ]\n", + " [-12.895377 7.947011 ]\n", + " [-18.271377 7.947011 ]\n", + " [-23.647377 7.947011 ]\n", + " [-29.023377 7.947011 ]\n", + " [ -2.143377 2.571011 ]\n", + " [ -7.519377 2.571011 ]\n", + " [-12.895377 2.571011 ]\n", + " [-18.271377 2.571011 ]\n", + " [-23.647377 2.571011 ]\n", + " [-29.023377 2.571011 ]]\n", + "DEBUG:root:cartToSphere: vec: [[ 0.00162968 -0.20886687 0.97794273]\n", + " [ 0.00164392 -0.18138669 0.98341048]\n", + " [ 0.00165615 -0.15321267 0.98819185]\n", + " [ 0.00166636 -0.12445123 0.99222433]\n", + " [ 0.0016745 -0.0952084 0.99545595]\n", + " [ 0.00168051 -0.06559229 0.99784509]\n", + " [ 0.00168433 -0.03571531 0.99936059]\n", + " [ 0.00168589 -0.00569466 0.99998236]\n", + " [ 0.00162968 -0.20886687 0.97794273]\n", + " [ 0.03065921 -0.20871575 0.97749565]\n", + " [ 0.0595691 -0.20829328 0.9762507 ]\n", + " [ 0.08824658 -0.20760055 0.9742251 ]\n", + " [ 0.11657974 -0.20663909 0.97144709]\n", + " [ 0.14445783 -0.20541086 0.96795574]\n", + " [ 0.17177197 -0.20391875 0.96380057]\n", + " [ 0.1984171 -0.20216791 0.95904056]\n", + " [ 0.00168589 -0.00569466 0.99998236]\n", + " [ 0.03171597 -0.00569039 0.99948072]\n", + " [ 0.06161834 -0.0056785 0.99808363]\n", + " [ 0.09127522 -0.00565918 0.99580962]\n", + " [ 0.12057355 -0.00563263 0.99268842]\n", + " [ 0.14940474 -0.00559908 0.98876027]\n", + " [ 0.17766265 -0.00555867 0.98407575]\n", + " [ 0.205241 -0.00551146 0.97869595]\n", + " [ 0.1984171 -0.20216791 0.95904056]\n", + " [ 0.20017053 -0.17558603 0.96389901]\n", + " [ 0.20167036 -0.14832064 0.96815807]\n", + " [ 0.20291139 -0.12047648 0.97175737]\n", + " [ 0.20389075 -0.09216227 0.97464592]\n", + " [ 0.20460646 -0.06348867 0.97678318]\n", + " [ 0.20505694 -0.03456748 0.97813943]\n", + " [ 0.205241 -0.00551146 0.97869595]\n", + " [ 0.00173588 -0.19697755 0.98040646]\n", + " [ 0.00175296 -0.16281769 0.98665461]\n", + " [ 0.00176683 -0.12772153 0.99180849]\n", + " [ 0.00177741 -0.09188434 0.9957681 ]\n", + " [ 0.00178459 -0.05550542 0.99845679]\n", + " [ 0.00178824 -0.01879375 0.99982178]\n", + " [ 0.01429458 -0.20874173 0.97786633]\n", + " [ 0.04980805 -0.20837407 0.97678012]\n", + " [ 0.08502967 -0.20760004 0.97451125]\n", + " [ 0.11975303 -0.20642226 0.97110713]\n", + " [ 0.15377432 -0.2048444 0.96663966]\n", + " [ 0.1868945 -0.20287264 0.961204 ]\n", + " [ 0.0147871 -0.00579649 0.99987386]\n", + " [ 0.05152109 -0.00578593 0.99865515]\n", + " [ 0.08794575 -0.0057639 0.99610859]\n", + " [ 0.12385093 -0.00573078 0.99228429]\n", + " [ 0.15903647 -0.00568698 0.98725633]\n", + " [ 0.19330699 -0.00563273 0.98112215]\n", + " [ 0.19912208 -0.19067465 0.96124585]\n", + " [ 0.20110045 -0.1576223 0.96680599]\n", + " [ 0.20269257 -0.12364673 0.97140476]\n", + " [ 0.20389226 -0.08894663 0.97494433]\n", + " [ 0.20469584 -0.05372559 0.97735008]\n", + " [ 0.2051005DEBUG:root:cartToSphere: vec: [[-0.20629584 -0.20078674 0.95766733]\n", + " [-0.20812128 -0.17428103 0.96245086]\n", + " [-0.20967356 -0.14708674 0.96664496]\n", + " [-0.21095376 -0.11931584 0.9701867 ]\n", + " [-0.21196139 -0.09107902 0.97302465]\n", + " [-0.21269501 -0.06248699 0.97511856]\n", + " [-0.2131529 -0.03365118 0.97643916]\n", + " [-0.21333373 -0.00468399 0.97696816]\n", + " [-0.20629584 -0.20078674 0.95766733]\n", + " [-0.1798852 -0.20262142 0.96259331]\n", + " [-0.15276427 -0.20419049 0.96693812]\n", + " [-0.12504507 -0.20549514 0.97063664]\n", + " [-0.09683814 -0.20653488 0.97363531]\n", + " [-0.06825398 -0.20730818 0.97589175]\n", + " [-0.03940385 -0.20781318 0.97737455]\n", + " [-0.01040007 -0.2080483 0.97806326]\n", + " [-0.21333373 -0.00468399 0.97696816]\n", + " [-0.18599064 -0.00472909 0.98254014]\n", + " [-0.15793623 -0.00476846 0.9874378 ]\n", + " [-0.12927467 -0.004802 0.9915972 ]\n", + " [-0.10011211 -0.00482954 0.99496444]\n", + " [-0.07055816 -0.00485094 0.99749587]\n", + " [-0.04072622 -0.00486604 0.99915849]\n", + " [-0.01073294 -0.00487474 0.99993052]\n", + " [-0.01040007 -0.2080483 0.97806326]\n", + " [-0.01048759 -0.18056016 0.98350803]\n", + " [-0.01056224 -0.15238099 0.98826539]\n", + " [-0.01062379 -0.12361519 0.99227336]\n", + " [-0.01067191 -0.09436952 0.99548004]\n", + " [-0.0107063 -0.06475431 0.9978438 ]\n", + " [-0.0107267 -0.03488367 0.99933381]\n", + " [-0.01073294 -0.00487474 0.99993052]\n", + " [-0.20703611 -0.1893284 0.95983895]\n", + " [-0.20908844 -0.1563645 0.96531454]\n", + " [-0.21073192 -0.12247778 0.96984084]\n", + " [-0.21196628 -0.08787247 0.97331841]\n", + " [-0.21278893 -0.05275245 0.97567313]\n", + " [-0.21319686 -0.01732329 0.97685567]\n", + " [-0.19488162 -0.20152974 0.95989943]\n", + " [-0.16201965 -0.20359843 0.96555544]\n", + " [-0.12820231 -0.20526972 0.97027239]\n", + " [-0.09363367 -0.2065434 0.9739469 ]\n", + " [-0.05851721 -0.20741673 0.97650091]\n", + " [-0.02305821 -0.20788637 0.97788117]\n", + " [-0.20150602 -0.0048039 0.9794755 ]\n", + " [-0.16750285 -0.00485635 0.98585963]\n", + " [-0.13253465 -0.0048999 0.99116626]\n", + " [-0.0967959 -0.00493429 0.99529202]\n", + " [-0.06048842 -0.00495921 0.99815658]\n", + " [-0.02382238 -0.00497442 0.99970383]\n", + " [-0.0105395 -0.1965 -0.0181899 0.97857186]\n", + " [ 0.00172908 -0.20877415 0.97796235]\n", + " [ 0.00172908 -0.20877415 0.97796235]\n", + " [ 0.20514779 -0.0056111 0.97871492]\n", + " [ 0.20514779 -0.0056111 0.97871492]\n", + " [ 0.01435076 -0.19694699 0.9803091 ]\n", + " [ 0.05000388 -0.19660038 0.97920779]\n", + " [ 0.08536435 -0.19587092 0.97690711]\n", + " [ 0.12022547 -0.19476145 0.97345458]\n", + " [ 0.15438306 -0.19327535 0.96892234]\n", + " [ 0.18763689 -0.19141752 0.96340632]\n", + " [ 0.01449201 -0.16279237 0.98655391]\n", + " [ 0.05049589 -0.16250539 0.98541472]\n", + " [ 0.08620426 -0.1619024 0.9830343 ]\n", + " [ 0.1214098 -0.1609872 0.97946045]\n", + " [ 0.15590842 -0.15976346 0.97476571]\n", + " [ 0.18949858 -0.15823425 0.96904706]\n", + " [ 0.01460664 -0.12770151 0.99170508]\n", + " [ 0.05089468 -0.1274748 0.99053516]\n", + " [ 0.08688344 -0.12699943 0.98809029]\n", + " [ 0.12236492 -0.12628004 0.9844187 ]\n", + " [ 0.15713605 -0.12532102 0.97959323]\n", + " [ 0.19099623 -0.12412508 0.97371115]\n", + " [ 0.0146941 -0.09186978 0.99566261]\n", + " [ 0.05119852 -0.09170505 0.99446915]\n", + " [ 0.08739951 -0.09136033 0.99197511-31.45739971]\n", + " [ 30.87804707 -27.07097114]\n", + " [ 30.87793315 -22.68454257]\n", + " [ 30.87781924 -18.29811401]\n", + " [ 30.87770532 -13.91168544]\n", + " [ 30.87759141 -9.52525687]\n", + " [ 30.87747749 -5.1388283 ]\n", + " [ 30.87736356 -0.75239973]\n", + " [ 0.18811133 -29.54569675]\n", + " [ 0.18797171 -24.16969676]\n", + " [ 0.1878321 -18.79369675]\n", + " [ 0.18769248 -13.41769676]\n", + " [ 0.18755286 -8.04169676]\n", + " [ 0.18741324 -2.66569676]\n", + " [ 2.08566061 -31.44314748]\n", + " [ 7.46166061 -31.44300785]\n", + " [ 12.83766061 -31.44286824]\n", + " [ 18.2136606 -31.44272862]\n", + " [ 23.5896606 -31.442589 ]\n", + " [ 28.9656606 -31.44244938]\n", + " [ 2.08486397 -0.76814748]\n", + " [ 7.46086396 -0.76800786]\n", + " [ 12.83686396 -0.76786825]\n", + " [ 18.21286396 -0.76772863]\n", + " [ 23.58886395 -0.76758901]\n", + " [ 28.96486395 -0.7674494 ]\n", + " [ 30.86311132 -29.54490011]\n", + " [ 30.86297171 -24.16890011]\n", + " [ 30.86283209 -18.79290011]\n", + " [ 30.86269247 -13.41690011]\n", + " [ 30.86255285 -8.04090011]\n", + " [ 30.86241323 -2.66490012]\n", + " [ 0.18816061 -31.44319675]\n", + " [ 0.18816061 -31.44319675]\n", + " [ 30.86236396 -0.76740012]\n", + "15466 0.98051633]\n", + " [-0.01063912 -0.1619874 0.98673547]\n", + " [-0.01071899 -0.12688576 0.99185942]\n", + " [-0.01077856 -0.09104519 0.99578843]\n", + " [-0.01081726 -0.05466885 0.99844594]\n", + " [-0.01083465 -0.01796812 0.99977985]\n", + " [-0.20621357 -0.20070413 0.95770236]\n", + " [-0.20621357 -0.20070413 0.95770236]\n", + " [-0.01083565 -0.00497744 0.9999289 ]\n", + " [-0.01083565 -0.00497744 0.9999289 ]\n", + " [-0.19565571 -0.19010422 0.96207028]\n", + " [-0.16265759 -0.19204948 0.96781171]\n", + " [-0.12870452 -0.19362274 0.97259724]\n", + " [-0.09399937 -0.19482286 0.9763238 ]\n", + " [-0.05874512 -0.19564642 0.97891342]\n", + " [-0.0231472 -0.1960896 0.98031274]\n", + " [-0.19758845 -0.15700026 0.96763099]\n", + " [-0.16425347 -0.15859759 0.97358492]\n", + " [-0.12996305 -0.1598933 0.97854164]\n", + " [-0.09491705 -0.16088429 0.98239859]\n", + " [-0.05931746 -0.1615658 0.98507763]\n", + " [-0.02337052 -0.16193328 0.98652493]\n", + " [-0.19913769 -0.12297381 0.97222509]\n", + " [-0.16553623 -0.12422245 0.97834888]\n", + " [-0.13097704 -0.12523802 0.98344316]\n", + " [-0.09565767 -0.12601654 0.98740541]\n", + " [-0.0 [ 30.86236396 -0.76740012]\n", + " [ 2.08561133 -29.54564748]\n", + " [ 7.46161133 -29.54550785]\n", + " [ 12.83761133 -29.54536824]\n", + " [ 18.21361133 -29.54522862]\n", + " [ 23.58961132 -29.545089 ]\n", + " [ 28.96561132 -29.54494938]\n", + " [ 2.08547171 -24.16964747]\n", + " [ 7.46147171 -24.16950786]\n", + " [ 12.83747171 -24.16936824]\n", + " [ 18.21347171 -24.16922862]\n", + " [ 23.58947171 -24.16908901]\n", + " [ 28.9654717 -24.16894939]\n", + " [ 2.0853321 -18.79364747]\n", + " [ 7.46133209 -18.79350785]\n", + " [ 12.83733209 -18.79336824]\n", + " [ 18.21333209 -18.79322862]\n", + " [ 23.58933209 -18.79308901]\n", + " [ 28.96533209 -18.79294939]\n", + " [ 2.08519248 -13.41764748]\n", + " [ 7.46119248 -13.41750786]\n", + " [ 12.83719247 -13.41736824]\n", + " [ 18.21319248 -13.41722863]\n", + " [ 23.58919247 -13.41708901]\n", + " [ 28.96519247 -13.41694939]\n", + " [ 2.08505286 -8.04164748]\n", + " [ 7.46105286 -8.04150786]\n", + " [ 12.83705286 -8.04136825]\n", + " [ 18.21305286 -8.04122863]\n", + " [ 23.58905286 -8.04108901]\n", + " [ 28.96505285 -8.04094939]\n", + " [ 2.08491324 -2.66564748]\n", + " [ 7.46091324 -2.66550786]\n", + " [ 12.83691324 -2.66536825]\n", + " [ 18.21291324 -2.66522863]\n", + " [ 23.58891323 -2.66508901]\n", + " [ 28.96491324 -2.66494939]]\n", + "DEBUG:root:radec2pix: xyfp Shape: (96, 2)\n", + "]\n", + " [ 0.12308827 -0.09084026 0.98822939]\n", + " [ 0.15806297 -0.09014925 0.98330525]\n", + " [ 0.19212497 -0.08928993 0.97730001]\n", + " [ 0.01475342 -0.05549654 0.99834987]\n", + " [ 0.05140434 -0.05539609 0.99714035]\n", + " [ 0.08774826 -0.05518622 0.99461285]\n", + " [ 0.12357559 -0.05487037 0.99081699]\n", + " [ 0.15868553 -0.05445187 0.9858265 ]\n", + " [ 0.19288138 -0.05393273 0.97973876]\n", + " [ 0.01478357 -0.01879073 0.99971414]\n", + " [ 0.05150885 -0.01875652 0.99849639]\n", + " [ 0.08792506 -0.01868512 0.99595183]\n", + " [ 0.1238221 -0.01857781 0.99213051]\n", + " [ 0.15899976 -0.01843585 0.98710648]\n", + " [ 0.19326249 -0.01826001 0.98097716]]\n", + "DEBUG:root:optics_fp: rtanth: [45.0390902 42.09683712 39.42396804 37.07878541 35.12698266 33.63710755\n", + " 32.6724136 32.28002056 45.0390902 42.00763364 39.23320577 36.77402747\n", + " 34.69719395 33.07480842 31.97611838 31.45604637 32.28002056 27.89482687\n", + " 23.51009392 19.1261386 14.74365456 10.3645083DEBUG:root:radec2pix: ccdpx: [[-4.45000000e+01 -5.00000261e-01]\n", + " [-4.45000000e+01 2.91928571e+02]\n", + " [-4.45000000e+01 5.84357143e+02]\n", + " [-4.45000000e+01 8.76785715e+02]\n", + " [-4.45000000e+01 1.16921429e+03]\n", + " [-4.45000000e+01 1.46164286e+03]\n", + " [-4.45000000e+01 1.75407143e+03]\n", + " [-4.44999999e+01 2.04650000e+03]\n", + " [-4.45000000e+01 -5.00000261e-01]\n", + " [ 2.47928571e+02 -5.00000125e-01]\n", + " [ 5.40357143e+02 -4.99999959e-01]\n", + " [ 8.32785714e+02 -5.00000265e-01]\n", + " [ 1.12521429e+03 -4.99999989e-01]\n", + " [ 1.41764286e+03 -4.99999804e-01]\n", + " [ 1.71007143e+03 -4.99999857e-01]\n", + " [ 2.00250000e+03 -5.00000247e-01]\n", + " [-4.44999999e+01 2.04650000e+03]\n", + " [ 2.47928572e+02 2.04650000e+03]\n", + " [ 5.40357143e+02 2.04650000e+03]\n", + " [ 8.32785714e+02 2.04650000e+03]\n", + " [ 1.12521429e+03 2.04650000e+03]\n", + " [ 1.41764286e+03 2.04650000e+03]\n", + " [ 1.71007143e+03 2.04650000e+03]\n", + " [ 2.00250000e+03 2.04650000e+03]\n", + " [ 2.00250000e+03 -5.00000247e-01]\n", + " [ 2.00250000e+03 2.91928571e+02]\n", + " [ 2.00250000e+03 5.84357143e+02]\n", + " [ 2.00250000e+03 8.76785DEBUG:root:cartToSphere: vec: [[-0.00108623 0.20994474 0.97771265]\n", + " [-0.00110818 0.18250974 0.98320342]\n", + " [-0.00112898 0.15437814 0.98801119]\n", + " [-0.00114857 0.12565449 0.9920734 ]\n", + " [-0.00116686 0.09644464 0.99533767]\n", + " [-0.00118378 0.0668576 0.99776183]\n", + " [-0.00119922 0.03700641 0.99931431]\n", + " [-0.00121312 0.00700791 0.99997471]\n", + " [-0.00108623 0.20994474 0.97771265]\n", + " [-0.03008973 0.20980966 0.97727914]\n", + " [-0.05897582 0.20940234 0.97604944]\n", + " [-0.08763213 0.20872399 0.97404051]\n", + " [-0.11594722 0.20777622 0.97128023]\n", + " [-0.14381054 0.20656061 0.96780744]\n", + " [-0.17111212 0.20507835 0.96367189]\n", + " [-0.19774215 0.20333011 0.95893426]\n", + " [-0.00121312 0.00700791 0.99997471]\n", + " [-0.0312253 0.00701559 0.99948775]\n", + " [-0.06111305 0.00701392 0.99810621]\n", + " [-0.09075893 0.00700302 0.99584827]\n", + " [-0.12004913 0.00698305 0.99274339]\n", + " [-0.1488739 0.00695418 0.98883174]\n", + " [-0.17712688 0.00691659 0.98416372]\n", + " [-0.20470344 0.00687038 0.97879993]\n", + " [-0.19774215 0.20333011 0.95893714e+02]\n", + " [ 2.00250000e+03 1.16921429e+03]\n", + " [ 2.00250000e+03 1.46164286e+03]\n", + " [ 2.00250000e+03 1.75407143e+03]\n", + " [ 2.00250000e+03 2.04650000e+03]\n", + " [-4.35000000e+01 1.27000000e+02]\n", + " [-4.35000000e+01 4.85400000e+02]\n", + " [-4.35000000e+01 8.43800000e+02]\n", + " [-4.35000000e+01 1.20220000e+03]\n", + " [-4.35000000e+01 1.56060000e+03]\n", + " [-4.35000000e+01 1.91900000e+03]\n", + " [ 8.30000000e+01 4.99999891e-01]\n", + " [ 4.41400000e+02 5.00000001e-01]\n", + " [ 7.99800000e+02 5.00000129e-01]\n", + " [ 1.15820000e+03 5.00000084e-01]\n", + " [ 1.51660000e+03 5.00000000e-01]\n", + " [ 1.87500000e+03 5.00000003e-01]\n", + " [ 8.30000000e+01 2.04550000e+03]\n", + " [ 4.41400000e+02 2.04550000e+03]\n", + " [ 7.99800000e+02 2.04550000e+03]\n", + " [ 1.15820000e+03 2.04550000e+03]\n", + " [ 1.51660000e+03 2.04550000e+03]\n", + " [ 1.87500000e+03 2.04550000e+03]\n", + " [ 2.00150000e+03 1.27000000e+02]\n", + " [ 2.00150000e+03 4.85400000e+02]\n", + " [ 2.00150000e+03 8.43800000e+02]\n", + " [ 2.00150000e+03 1.20220000e+03]\n", + " [ 2.00150000e+03 1.56060000e+03]\n", + " [ 2.00150000e+03 1.91900000e+03]\n", + " [-4.35000000e+01 4.99999945e-01]\n", + " [-4.35000000e+01 4.99999945e-01]\n", + " [ 2.00150000e+03 2.04550000e+03]\n", + " [ 2.00150000e+03 2.04550000e+03]\n", + " [ 8.30000000e+01 1.27000000e+02]\n", + " [ 4.41400000e+02 1.27000000e+02]\n", + " [ 7.99800000e+02 1.27000000e+02]\n", + " [ 1.15820000e+03 1.27000000e+02]\n", + " [ 1.51660000e+03 1.27000000e+02]\n", + " [ 1.87500000e+03 1.27000000e+02]\n", + " [ 8.30000000e+01 4.85400000e+02]\n", + " [ 4.41400000e+02 4.85400000e+02]\n", + " [ 7.99800000e+02 4.85400000e+02]\n", + " [ 1.15820000e+03 4.85400000e+02]\n", + " [ 1.51660000e+03 4.85400000e+02]\n", + " [ 1.87500000e+03 4.85400000e+02]\n", + " [ 8.30000000e+01 8.43800000e+02]\n", + " [ 4.41400000e+02 8.43800000e+02]\n", + " [ 7.99800000e+02 8.43800000e+02]\n", + " [ 1.15820000e+03 8.43800000e+02]\n", + " [ 1.51660000e+03 8.43800000e+02]\n", + " [ 1.87500000e+03 8.43800000e+02]\n", + " [ 8.30000000e+01 1.20220000e+03]\n", + " [ 4.41400000e+02 1.20220000e+03]\n", + " [ 7.99800000e+02 1.20220000e+03]\n", + " [ 1.15820000e+03 1.20220000e+03]\n", + " [ 1.51660000e+03 1.20220000e+03]\n", + " [ 1.87500000e+03 1.20220000e+03]\n", + " [ 8.30000000e+01 1.56060000e+5977969 -0.12655298 0.99015692]\n", + " [-0.02355053 -0.12684288 0.99164321]\n", + " [-0.20030226 -0.088228 0.97575346]\n", + " [-0.16650264 -0.0891244 0.98200495]\n", + " [-0.13174231 -0.0898551 0.98720313]\n", + " [-0.09621721 -0.09041635 0.99124524]\n", + " [-0.0601289 -0.09080384 0.9940519 ]\n", + " [-0.023686 -0.09101389 0.9955679 ]\n", + " [-0.20107886 -0.05296627 0.97814205]\n", + " [-0.16714801 -0.0535061 0.98447887]\n", + " [-0.13225382 -0.05394701 0.98974676]\n", + " [-0.09659125 -0.05428637 0.9938426 ]\n", + " [-0.06036201 -0.05452132 0.99668644]\n", + " [-0.02377567 -0.05464944 0.9982225 ]\n", + " [-0.201464 -0.01739439 0.97934146]\n", + " [-0.16746808 -0.0175743 0.98572085]\n", + " [-0.13250731 -0.01772184 0.99102359]\n", + " [-0.0967762 -0.01783608 0.99514634]\n", + " [-0.06047657 -0.01791601 0.99800882]\n", + " [-0.02381854 -0.0179608 0.99955494]]\n", + "DEBUG:root:radec2pix: camVec: [[-0.00156258 -0.00157957 -0.00159468 -0.00160787 -0.00161907 -0.00162822\n", + " -0.00163527 -0.00164017 -0.00156258 -0.0305812 -0.05948043 -0.08814769\n", + " -0.11647141 -0.14434091 -0.17164574 -0.19827444 -0.00164017 -0.03165868\n", + " -0.06155164 -0.09120162 -0.12049415 -0.14931846 -0.17756745 -0.20513658\n", + " -0.19827444 -0.2000398 -0.20154417 -0.20278831 -0.20377138 -0.20449167\n", + " -0.20494724 -0.20513658 -0.00166992 -0.00169047 -0.00170796 -0.0017223\n", + " -0.00173334 -0.001741 -0.0142227 -0.04972296 -0.08493191 -0.1196437\n", + " -0.15365451 -0.18676067 -0.01473616 -0.05145726 -0.08787283 -0.12377083\n", + " -0.15894736 -0.19320639 -0.19898619 -0.20097311 -0.20256914 -0.20377339\n", + " -0.20458276 -0.20499385 -0.00166195 -0.00166195 -0.20504339 -0.20504339\n", + " -0.01428012 -0.04992014 -0.08526785 -0.1201171 -0.15426444 -0.18750721\n", + " -0.01442512 -0.05041664 -0.08611259 -0.12130566 -0.1557929 -0.1893742\n", + " -0.01454351 -0.0508198 -0.08679712 -0.1222667 -0.15702557 -0.19087549\n", + " -0.01463451 -0.05112705 -0.08731762 -0.122996 -0.15795892 -0.19200933\n", + " -0.01469728 -0.05133568 -0.08766989 -0.12348855 -0.15858803 -0.19277198\n", + " -0.01473117 -0.05144352 -0.08785049 -0.12374011 -0.1589085 -0.19315962]\n", + " [ 0.20900824 0.18154377 0.15338464 0.12463517 0.09540199 0.06579532\n", + " 0.03592916 0.00592057 0.20900824 0.20886066 0.2084416 0.2077524\n", + " 0.20679486 0.20557063 0.20408052 0.20232383 0.00592057 0.00591961\n", + " 0.00591082 0.00589429 0.00587015 0.00583856 0.00579969 0.00575368\n", + " 0.20232383 0.17576331 0.1485108 0.12067777 0.09237455 0.06371165\n", + " 0.03480051 0.00575368 0.19712565 0.16298492 0.12790428 0.09207897\n", + " 0.05571194 0.01901436 0.20888472 0.20852129 0.20775151 0.20657854\n", + " 0.20500532 0.20303275 0.00602383 0.00601719 0.00599868 0.00596852\n", + " 0.005927 0.00587443 0.19084173 0.15780847 0.12384677 0.08916013\n", + " 0.05395206 0.01842821 0.20891558 0.20891558 0.00585328 0.00585328\n", + " 0.19709662 0.19675396 0.1960282 0.19492287 0.19344162 0.19158618\n", + " 0.16296111 0.16267787 0.16207774 0.1611649 0.15994417 0.15841917\n", + " 0.12788582 0.12766348 0.12719172 0.12647465 0.12551724 0.12432386\n", + " 0.09206603 0.09190638 0.09156653 0.09104984 0.09036055 0.08950266\n", + " 0.05570466 0.05560934 0.05540465 0.05509277 0.05467653 0.0541587\n", + " 0.01901283 0.01898296 0.01891568 0.01881174 0.01867213 0.01849786]\n", + " [ 0.97791263 0.9833816 0.98816527 0.99220134 0.99543751 0.99783181\n", + " 0.999353 0.99998113 0.97791263 0.97746714 0.97622445 0.97420169\n", + " 0.97142694 0.96793926 0.96378882 0.95903718 0.99998113 0.99948121\n", + " 0.9980864 0.995815 0.99269668 0.98877192 0.98409154 0.97871644\n", + " 0.95903718 0.96389384 0.9681552 0.97175809 0.97465079 0.9767927\n", + " 0.97815416 0.97871644 0.98037681 0.98662711 0.99178505 0.99575022\n", + " 0.99844538 0.99981769 0.97783684 0.97675304 0.9744875 0.97108738\n", + " 0.9666246 0.96119621 0.99987327 0.99865707 0.99611364 0.99229288\n", + " 0.98726927 0.98114055 0.96124083 0.9668021 0.97140502 0.97494968\n", + " 0.97736128 0.97858976 0.97793227 0.97793227 0.97873538 0.97873538\n", + " 0.98028006 0.97918122 0.976884 0.97343565 0.96890806 0.96339804\n", + " 0.98652704 0.98539031 0.98301344 0.97944414 0.97475455 0.96904116\n", + " 0.99168226 0.99051471 0.98807314 0.98440592 0.97958583 0.97370947\n", + " 0.99564536 0.99445424 0.99196331 0.98822159 0.98330257 0.97730327\n", + " 0.99833911 0.99713201 0.99460762 0.9908155 0.98582976 0.97974782\n", + " 0.99971071 0.99849547 0.99595406 0.99213633 0.98711673 0.98099296]]\n", + "426]\n", + " [-0.19951656 0.17679323 0.96381393]\n", + " [-0.20103291 0.14956333 0.96809947]\n", + " [-0.2022905 0.12175011 0.97172808]\n", + " [-0.20328809 0.09346339 0.97464791]\n", + " [-0.20402394 0.06481351 0.97681802]\n", + " [-0.20449622 0.03591173 0.97820838]\n", + " [-0.20470344 0.00687038 0.97879993]\n", + " [-0.00119558 0.19807534 0.98018607]\n", + " [-0.00122271 0.16396932 0.98646468]\n", + " [-0.00124786 0.12892083 0.9916541 ]\n", + " [-0.00127089 0.09312409 0.9956537 ]\n", + " [-0.00129164 0.05677987 0.99838589]\n", + " [-0.00130994 0.02009792 0.99979716]\n", + " [-0.01373956 0.20982687 0.97764201]\n", + " [-0.04922259 0.20947825 0.9765736 ]\n", + " [-0.08441749 0.20872203 0.97432479]\n", + " [-0.11911871 0.20756102 0.97094241]\n", + " [-0.1531227 0.20599809 0.96649792]\n", + " [-0.18622706 0.20403521 0.96108746]\n", + " [-0.01430615 0.00711509 0.99987235]\n", + " [-0.05102028 0.00711803 0.99867225]\n", + " [-0.08743049 0.00710683 0.99614527]\n", + " [-0.12332566 0.00708177 0.99234098]\n", + " [-0.15850368 0.0070432 0.98733327]\n", + " [-0.19276957 0.00699139 0.98121915]\n", + " [-0.19845732 0.19185821 0.96114781]\n", + " [-0.20045757 0.1588536 0.96673797]\n", + " [-0.20206974 0.12491703 0.971372 ]\n", + " [-0.20329178 0.09025061 0.97494989]\n", + " [-0.20412054 0.0550575 0.97739627]\n", + " [-0.20455274 0.01954302 0.97866043]\n", + " [-0.00118556 0.20985223 0.97773239]\n", + " [-0.00118556 0.20985223 0.97773239]\n", + " [-0.20461015 0.00696998 0.97881873]\n", + " [-0.20461015 0.00696998 0.97881873]\n", + " [-0.01379915 0.19805172 0.98009443]\n", + " [-0.04942232 0.19772367 0.97901113]\n", + " [-0.08475642 0.19701128 0.97673072]\n", + " [-0.11959564 0.19591776 0.97330012]\n", + " [-0.15373662 0.19444643 0.96879081]\n", + " [-0.18697743 0.19259955 0.96329894]\n", + " [-0.01395111 0.16395068 0.98636988]\n", + " [-0.04992687 0.1636812 0.98524909]\n", + " [-0.08561039 0.16309354 0.98288929]\n", + " [-0.12079486 0.16219177 0.97933775]\n", + " [-0.15527748 0.16098028 0.97466623]\n", + " [-0.18885795 0.15946229 0.96897082]\n", + " [-0.0140777 0.12890725 0.99155673]\n", + " [-0.05033965 0.1286975 0.99040541]\n", + " [-0.08630574 0.12823673 0.9879811 ]\n", + " [-0.12176792 0.12752928 0.98433168]\n", + " [-0.15652378 0.12657997 0.97952939]\n", + " [-0.19037482 0.12539259 0.97367044]\n", + " [-0.01417814 0.09311572 0.99555434]\n", + " [-0.05065827 0.09296747 0.9943796 ]\n", + " [-0.08683905 0.092637 0.99190593]\n", + " [-0.12251113 0.09212815 0.98818188]\n", + " [-0.15747231 0.0914453 0.98328034]\n", + " [-0.19152571 0.09059206 0.97729779]\n", + " [-0.0142515 0.05677687 0.99828517]\n", + " [-0.05087978 0.05669199 0.99709441]\n", + " [-0.08720594 0.05649545 0.99458704]\n", + " [-0.12301955 0.05618991 0.99081223]\n", + " [-0.15811848 0.05577844 0.98584345]\n", + " [-0.19230704 0.0552636 0.97977749]\n", + " [-0.01429691 0.02010041 0.99969574]\n", + " [-0.0510015 0.0200803 0.99849668]\n", + " [-0.08740238 0.02002048 DEBUG:root:optics_fp: xyfp: [[ -0.167405 31.491388 ]\n", + " [ -0.167405 27.10495943]\n", + " [ -0.167405 22.71853086]\n", + " [ -0.167405 18.33210229]\n", + " [ -0.167405 13.94567372]\n", + " [ -0.167405 9.55924515]\n", + " [ -0.167405 5.17281657]\n", + " [ -0.167405 0.786388 ]\n", + " [ -0.167405 31.491388 ]\n", + " [ -4.55383357 31.491388 ]\n", + " [ -8.94026214 31.491388 ]\n", + " [-13.32669071 31.491388 ]\n", + " [-17.71311928 31.491388 ]\n", + " [-22.09954786 31.491388 ]\n", + " [-26.48597643 31.491388 ]\n", + " [-30.872405 31.491388 ]\n", + " [ -0.167405 0.786388 ]\n", + " [ -4.55383357 0.786388 ]\n", + " [ -8.94026214 0.786388 ]\n", + " [-13.32669071 0.786388 ]\n", + " [-17.71311929 0.786388 ]\n", + " [-22.09954786 0.786388 ]\n", + " [-26.48597643 0.786388 ]\n", + " [-30.872405 0.786388 ]\n", + " [-30.872405 31.491388 ]\n", + " [-30.872405 27.10495943]\n", + " [-30.872405 22.71853086]\n", + " [-30.872405 18.33210229]\n", + " [-30.872405 13.94567371]\n", + " [-30.872405 9.55924514]\n", + " [-30.872405 5.17281657]\n", + " [-30.872405 0.786388 ]\n", + " [ -0.182405 29.578888 ]\n", + " [ -0.182405 DEBUG:root:mm_to_pix: fitpx: [[0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]]\n", + "7 5.99601772 1.72131774\n", + " 31.45604637 27.07594694 22.69829207 18.32483384 13.95951711 9.61343916\n", + " 5.33383708 1.72131774 43.71543665 40.28285706 37.31193504 34.92069834\n", + " 33.23450917 32.36375719 43.67830098 40.1281473 37.02087501 34.47644006\n", + " 32.62678968 31.59418683 30.3683705 24.99424245 19.62114004 14.2502235\n", + " 8.88545749 3.55479843 29.54687443 24.18030108 18.81910954 13.46972753\n", + " 8.15542687 3.06450112 45.0178789 45.0178789 1.74119478 1.74119478\n", + " 42.33466612 38.66132674 35.42562866 32.75751668 30.80482728 29.70896533\n", + " 38.78006096 34.73279944 31.09090442 28.01292685 25.70226752 24.37810068\n", + " 35.68424094 31.23842634 27.13146257 23.54136773 20.73833358 19.07259071\n", + " 33.17589074 28.33926527 23.73585762 19.53127415 16.04223037 13.82166388\n", + " 31.39613279 26.23340206 21.17707168 16.3263008 11.93442847 8.72443809\n", + " 30.47289508 25.12113778 19.7825313 14.471637 9.23638255 4.35844005]\n", + "DEBUG:root:radec2pix: lng: [270.4470398 270.51926185 270.61931513 270.76712536 271.00759894\n", + " 271.46762895 272.70005845 286.49130114 270.4470398 278.35667351\n", + " 285.95982213 293.02931263 299.43042278 305.1 24.202888 ]\n", + " [ -0.182405 18.826888 ]\n", + " [ -0.182405 13.450888 ]\n", + " [ -0.182405 8.074888 ]\n", + " [ -0.182405 2.698888 ]\n", + " [ -2.079905 31.476388 ]\n", + " [ -7.455905 31.476388 ]\n", + " [-12.831905 31.476388 ]\n", + " [-18.207905 31.476388 ]\n", + " [-23.583905 31.476388 ]\n", + " [-28.959905 31.476388 ]\n", + " [ -2.079905 0.801388 ]\n", + " [ -7.455905 0.801388 ]\n", + " [-12.831905 0.801388 ]\n", + " [-18.207905 0.801388 ]\n", + " [-23.583905 0.801388 ]\n", + " [-28.959905 0.801388 ]\n", + " [-30.857405 29.578888 ]\n", + " [-30.857405 24.202888 ]\n", + " [-30.857405 18.826888 ]\n", + " [-30.857405 13.450888 ]\n", + " [-30.857405 8.074888 ]\n", + " [-30.857405 2.698888 ]\n", + " [ -0.182405 31.476388 ]\n", + " [ -0.182405 31.476388 ]\n", + " [-30.857405 0.801388 ]\n", + " [-30.857405 0.801388 ]\n", + " [ -2.079905 29.578888 ]\n", + " [ -7.455905 29.578888 ]\n", + " [-12.831905 29.578888 ]\n", + " [-18.207905 29.578888 ]\n", + " [-23.583905 29.578888 ]\n", + " [-28.959905 29.578888 ]\n", + " [ -2.079905 24.202888 ]\n", + " [ -7.455905 24.202888 ]\n", + "1729798 310.10927793\n", + " 314.46353671 286.49130114 349.82837514 354.73471783 356.4521324\n", + " 357.32535522 357.85379375 358.20792761 358.46177059 314.46353671\n", + " 318.74333689 323.66697635 329.30072855 335.67617912 342.7610671\n", + " 350.43132356 358.46177059 270.50490909 270.61684574 270.79254775\n", + " 271.10819213 271.84151891 275.43536905 273.91748404 283.44327486\n", + " 292.27322451 300.11957347 306.89513227 312.65252806 338.59499359\n", + " 353.59240246 356.2502422 357.3507235 357.95203643 358.33094358\n", + " 316.24148386 321.91069268 328.61592969 336.43108737 345.29354618\n", + " 354.93182927 270.47451616 270.47451616 358.43326445 358.43326445\n", + " 274.16755516 284.27018764 293.54850553 301.6868684 308.61690354\n", + " 314.4285595 275.08714159 287.26177752 298.03288482 307.02206797\n", + " 314.30032851 320.13759497 276.52519686 291.76449803 304.37699404\n", + " 314.09790313 321.42651996 326.9808709 279.08719841 299.17442797\n", + " 313.73069285 323.57233622 330.30226172 335.07338778 284.88740412\n", + " 312.85952275 327.83358678 336.05769185 341.06068787 344.37815396\n", + " 308.1938338 339.99132199 348.00244679 351.46719972 353.38615059\n", + " 354.60255033]\n", + "03]\n", + " [ 4.41400000e+02 1.56060000e+03]\n", + " [ 7.99800000e+02 1.56060000e+03]\n", + " [ 1.15820000e+03 1.56060000e+03]\n", + " [ 1.51660000e+03 1.56060000e+03]\n", + " [ 1.87500000e+03 1.56060000e+03]\n", + " [ 8.29999998e+01 1.91900000e+03]\n", + " [ 4.41400000e+02 1.91900000e+03]\n", + " [ 7.99800000e+02 1.91900000e+03]\n", + " [ 1.15820000e+03 1.91900000e+03]\n", + " [ 1.51660000e+03 1.91900000e+03]\n", + " [ 1.87500000e+03 1.91900000e+03]]\n", + "0.99597189]\n", + " [-0.12328852 0.0199219 0.99217088]\n", + " [-0.15845779 0.01978566 0.98716749]\n", + " [-0.19271515 0.01961272 0.98105872]]\n", + " [-12.831905 24.202888 ]\n", + " [-18.207905 24.202888 ]\n", + " [-23.583905 24.202888 ]\n", + " [-28.959905 24.202888 ]\n", + " [ -2.079905 18.826888 ]\n", + " [ -7.455905 18.826888 ]\n", + " [-12.831905 18.826888 ]\n", + " [-18.207905 18.826888 ]\n", + " [-23.583905 18.826888 ]\n", + " [-28.959905 18.826888 ]\n", + " [ -2.079905 13.450888 ]\n", + " [ -7.455905 13.450888 ]\n", + " [-12.831905 13.450888 ]\n", + " [-18.207905 DEBUG:root:radec2pix: fitpx: [[2135.5 4155.50000025]\n", + " [2135.5 3863.07142842]\n", + " [2135.5 3570.64285705]\n", + " [2135.5 3278.21428595]\n", + " [2135.50000001 2985.78571392]\n", + " [2135.5 2693.35714283]\n", + " [2135.49999998 2400.92857178]\n", + " [2135.49999997 2108.50000011]\n", + " [2135.5 4155.50000025]\n", + " [1843.07142855 4155.50000014]\n", + " [1550.64285713 4155.50000003]\n", + " [1258.21428573 4155.49999997]\n", + " [ 965.78571432 4155.49999994]\n", + " [ 673.35714273 4155.50000018]\n", + " [ 380.92857156 4155.49999985]\n", + " [ 88.49999978 4155.50000022]\n", + " [2135.49999997 2108.50000011]\n", + " [1843.07142854 2108.50000001]\n", + " [1550.64285742 2108.49999997]\n", + " [1258.21428585 2108.49999999]\n", + " [ 965.78571387 2108.50000002]\n", + " [ 673.35714329 2108.49999998]\n", + " [ 380.92857158 2108.5 ]\n", + " [ 88.4999998 2108.50000001]\n", + " [ 88.49999978 4155.50000022]\n", + " [ 88.50000021 3863.07142839]\n", + " [ 88.50000011 3570.64285706]\n", + " [ 88.50000015 3278.21428562]\n", + " [ 88.49999997 2985.7857143 ]\n", + " [ 88.49999979 2693.35714292]\n", + " [ 88.49999995 2400.92857144]\n", + " [ 88.499DEBUG:root:radec2pix: lng: [224.22465666 219.9428498 215.04979529 209.49258103 203.25301711\n", + " 196.37209253 188.97143587 181.25779309 224.22465666 228.40166279\n", + " 233.19815281 238.6792283 244.87949815 251.77642798 259.26349599\n", + " 267.13824006 181.25779309 181.45651552 181.7293675 182.12731457\n", + " 182.76188514 183.93294711 186.8134933 204.42682228 267.13824006\n", + " 266.67578867 266.03490179 265.0879329 263.54803827 260.61180811\n", + " 252.90738353 204.42682228 222.44199402 216.7905754 210.16523251\n", + " 202.51687812 193.92347078 184.64535837 225.96080389 231.48791131\n", + " 238.01293878 245.61347707 254.24497485 263.67077373 181.36567301\n", + " 181.66068982 182.11730117 182.91819426 184.68697431 191.79462375\n", + " 266.92442169 266.24228499 265.17126169 263.2483557 258.80752919\n", + " 238.9103071 224.22429417 224.22429417 204.67204832 204.67204832\n", + " 224.17550953 229.73684595 236.38729877 244.24332674 253.28700279\n", + " 263.26773103 218.4700285 223.99636381 230.89540499 239.46063162\n", + " 249.83973486 261.78766678 211.69663969 216.88546DEBUG:root:mm_to_pix: fitpx.shape: (96, 2)\n", + "DEBUG:root:make_az_asym: xyp: shape: (96, 2)\n", + "9998 2108.50000001]\n", + " [2134.5 4027.99999985]\n", + " [2134.5 3669.59999985]\n", + " [2134.49999999 3311.20000044]\n", + " [2134.5 2952.7999998 ]\n", + " [2134.5 2594.40000013]\n", + " [2134.50000001 2235.99999985]\n", + " [2007.99999998 4154.50000028]\n", + " [1649.59999995 4154.50000021]\n", + " [1291.20000012 4154.49999971]\n", + " [ 932.8 4154.5 ]\n", + " [ 574.40000006 4154.49999992]\n", + " [ 215.99999986 4154.50000015]\n", + " [2007.99999994 2109.50000002]\n", + " [1649.60000009 2109.49999999]\n", + " [1291.20000007 2109.5 ]\n", + " [ 932.80000034 2109.49999998]\n", + " [ 574.40000029 2109.49999999]\n", + " [ 216.00000015 2109.5 ]\n", + " [ 89.50000013 4027.99999988]\n", + " [ 89.50000024 3669.59999981]\n", + " [ 89.50000003 3311.19999998]\n", + " [ 89.49999973 2952.80000012]\n", + " [ 89.49999991 2594.40000002]\n", + " [ 89.50000029 2235.99999997]\n", + " [2134.5 4154.50000026]\n", + " [2134.5 4154.50000026]\n", + " [ 89.50000019 2109.49999999]\n", + " [ 89.50000019 2109.49999999]\n", + " [2008. 4027.99999998]\n", + " [1649.6 4027.99999999]\n", + " [1291.19999989 4028.00000025]\n", + " [ 932.79999995 4028.00000008]\n", + " [ 574.3999998 4028.00000025]\n", + " [ 215.99999992 4028.00000008]\n", + " [2008.00000001 3669.59999984]\n", + " [1649.60000007 3669.59999979]\n", + " [1291.19999996 3669.60000008]\n", + " [ 932.80000004 3669.59999994]\n", + " [ 574.39999995 3669.60000006]\n", + " [ 216.00000005 3669.59999995]\n", + " [2007.99999998 3311.2000002 ]\n", + " [1649.59999994 3311.20000015]\n", + " [1291.20000016 3311.19999976]\n", + " [ 932.80000015 3311.19999985]\n", + " [ 574.40000019 3311.19999985]\n", + " [ 216.00000023 3311.19999985]\n", + " [2007.99999995 2952.80000031]\n", + " [1649.60000003 2952.79999994]\n", + " [1291.19999981 2952.80000019]\n", + " [ 932.79999986 2952.8000001 ]\n", + " [ 574.39999987 2952.80000007]\n", + " [ 216.00000004 2952.79999998]\n", + " [2007.99999998 2594.40000008]\n", + " [1649.60000021 2594.39999977]\n", + " [1291.19999986 2594.40000009]\n", + " [ 932.80000028 2594.39999988]\n", + " [ 574.39999984 2594.40000006]\n", + " [ 216.00000019 2594.39999995]\n", + " [2007.99999983 2236.00000022]\n", + " [1649.60000014 2235.99999995]\n", + " [1291.19999989 2236.00000002]\n", + " [ 932.80000032 2235.99999995]\n", + " [ 574.40000023 2235.99999997]\n", + " [ 216.00000006 2235.99999999]]\n", + " 13.450888 ]\n", + " [-23.583905 13.450888 ]\n", + " [-28.959905 13.450888 ]\n", + " [ -2.079905 8.074888 ]\n", + " [ -7.455905 8.074888 ]\n", + " [-12.831905 8.074888 ]\n", + " [-18.20790499 8.074888 ]\n", + " [-23.583905 8.074888 ]\n", + " [-28.959905 8.074888 ]\n", + " [ -2.079905 2.698888 ]\n", + " [ -7.455905 2.698888 ]\n", + " [-12.831905 2.698888 ]\n", + " [-18.207905 2.698888 ]\n", + " [-23.583905 2.698888 ]\n", + " [-28.959905 2.698888 ]]\n", + "DEBUG:root:optics_fp: cphi: [-0.71661052 -0.76668522 -0.81865324 -0.87041945 -0.91877042 -0.95945138\n", + " -0.98776621 -0.99975905 -0.71661052 -0.66390451 -0.59904941 -0.51982885\n", + " -0.42452343 -0.31272572 -0.18629262 -0.04992637 -0.99975905 -0.9996769\n", + " -0.99954452 -0.99931081 -0.99883841 -0.997645 -0.9929376 -0.91049017\n", + " -0.04992637 -0.05798589 -0.06914879 -0.08562676 -0.11237014 -0.16312264\n", + " -0.29391715 -0.91049017 -0.73796092 -0.80082989 -0.86457988 -0.92376676\n", + " -0.97061799 -0.99671508 -0.69515031 -0.62267974 -0.52972774 -0.41289021\n", + " -0.27152486 -0.11024131 -0.99971595 -0.99957998 -0.99931728 -0.99870324\n", + " -0.99665599 -0.97888657 -0.05365319 -0.06553749 -0.08417765 -0.1175659\n", + " -0.19410544 -0.51637928 -0.71661494 -0.71661494 -0.90871193 -0.90871193\n", + " -0.71720854 -0.64629919 -0.55357618 -0.43455016 -0.28757779 -0.11723007\n", + " -0.78293369 -0.71938388 -0.63073804 -0.50813028 -0.34464727 -0.14284199\n", + " -0.85084193 -0.79983697 -0.72276415 -0.60462283 -0.42711476 -0.18254722\n", + " -0.91515494 -0.88164179 -0.82613743 -0.72873282 -0.5521103 -0.25185684\n", + " -0.9670144 -0.95239316 -0.92593126 -0.87175367 -0.74209777 -0.39893833\n", + " -0.99629342 -0.99453874 -0.99117471 -0.98343711 -0.95881096 -0.79843817]\n", + "29 223.71683254\n", + " 232.7982941 244.71540545 259.48183646 203.77225927 208.15895021\n", + " 214.29602039 223.21973304 236.48809111 255.41258234 194.75709541\n", + " 197.7504966 202.19079752 209.33692857 222.08957905 246.48817507\n", + " 184.93467768 185.99075879 187.61766642 190.44256036 196.50176943\n", + " 217.01878407]\n", + "DEBUG:root:radec2pix: camVec Shape: (3, 96)\n", + "DEBUG:root:fitpix2pix: ccdpx: shape: (96, 2)\n", + "DEBUG:root:radec2pix: lat: [77.94367134 79.54902489 81.18632945 82.85028944 84.53583766 86.23790238\n", + " 87.95095267 89.65971994 77.94367134 77.82164346 77.48801235 76.9631292\n", + " 76.27533882 75.45615131 74.53651433 73.54460591 89.65971994 88.15347287\n", + " 86.45230283 84.75294209 83.0672058 81.4014907 79.76129308 78.15206149\n", + " 73.54460591 74.55768324 75.50238779 76.35047091 77.07044991 77.62962616\n", + " 77.99774795 78.15206149 78.63928322 80.62896884 82.66134588 84.72698979\n", + " 86.81649257 88.91826945 77.92273249 77.62880737 77.03600995 76.19348076\n", + " 75.15884594 73.98801233 89.08995442 87.02817045 84.94370871 82.87794501\n", + " 80.84312687 78.84936896 73.99670581 75.19609757 76.26512012 77.14708483\n", + " 77.78216783 78.11748405 77.94905666 77.94905666 78.15735777 78.15735777\n", + " 78.61100015 78.29575797 77.66281562 76.76884154 75.67835331 74.45201735\n", + " 80.5936009 80.20229517 79.43086524 78.36733491 77.10116027 75.70726987\n", + "DEBUG:root:optics_fp: xyfp shape: (96, 2)\n", + " 82.61510476 82.11071991 81.1484309 79.87243611 78.40512567 76.83322353\n", + " 84.66162432 83.97115888 82.73646392 81.20037729 79.51583908 77.76861975\n", + " 86.70802953 85.66590929 84.05006409 82.22924953 80.34192865 78.44668306\n", + " 88.6299785 86.85760815 84.84280506 82.80723116 80.78933117 78.80649174]\n", + "DEBUG:root:radec2pix: lng: [ 90.2964384 90.3478894 90.41900227 90.52370941 90.69317626\n", + " 91.01436915 91.85606354 99.82098825 90.2964384 98.16139155\n", + " 105.72927905 112.77495178 119.16321868 124.84620437 129.84075369\n", + " 134.20177453 99.82098825 167.3372664 173.45282833 175.5877589\n", + " 176.67095531 177.32554882 177.76380439 178.07772632 134.20177453\n", + " 138.45558903 143.3516981 148.95804019 155.308999 162.37619731\n", + " 170.03980495 178.07772632 90.34583364 90.4272438 90.55456533\n", + " 90.78188435 91.3031483 93.7291305 93.74640471 103.2233069\n", + " 112.02083939 119.85139884 126.62419493 132.38733532 153.55676438\n", + " 172.05771641 175.35290167 176.71349424 177.45570466 177.92289984\n", + " 135.96861356 141.60475991 148.27615291 156.06135558 164.90482616\n", + " 174.54251233 90.32368928 90.32368928 178.04899302 178.04899302\n", + " 93.98561362 104.03389942 113.27790792 121.40147615 128.33121468\n", + " 134.15142333 94.8637718 106.96302166 117.69569442 126.6774761\n", + " 133.96694623 139.82391059 96.23245551 111.36280739 123.94129691\n", + " 133.676108 141.03771084 146.62863656 98.65756574 118.5861081\n", + " 133.14971036 143.05690148 149.85595749 154.68575435 104.09063117\n", + " 131.90726386 147.0632386 155.45116677 160.56901612 163.96684771\n", + " 125.42327674 158.50946167 167.09834094 170.82105172 172.88266004\n", + " 174.18898669]\n", + "DEBUG:root:fitpix2pix: visCut: True\n", + "DEBUG:root:radec2pix: lat: [73.26908943 74.24907619 75.16003276 75.97420276 76.66164507 77.19203919\n", + " 77.53795274 77.67919539 73.26908943 74.27917066 75.22575502 76.08096918\n", + " 76.81416078 77.39343277 77.78879656 77.97677996 77.67919539 79.27760057\n", + " 80.9086962 82.56716816 84.24766937 85.94438651 87.64930302 89.3245763\n", + " 77.97677996 79.57988268 81.21386953 82.87289707 84.55034798 86.23677698\n", + " 87.90848861 89.3245763 73.70687233 74.86526918 75.89266936 76.7347974\n", + " 77.33616788 77.64902834 73.71922865 74.91822462 75.99447399 76.89265343\n", + " 77.55435927 77.92679672 78.37161008 80.3532483 82.37868114 84.43807116\n", + " 86.5205023 88.60550058 78.67128345 80.65746446 82.68422414 84.73967937\n", + " 86.80532112 88.79773368 73.27606371 73.27606371 89.31677804 89.31677804\n", + " 74.16894713 75.42332545 76.55590489 77.50736059 78.21290493 78.61205636\n", + " 75.38223897 76.80151051 78.10907648 79.23409871 80.08944165 80.58344411\n", + " 76.46449862 78.05559614 79.5593541 80.89695848 81.95437214 82.58757556\n", + " 77.35718097 79.11401738 80.82399404 82.41287861 83.74766412 84.60361539\n", + " 77.99846994 79.89205969 81.78816951 83.63850339 85.33442441 86.58329889\n", + " 78.33357011 80.30591073 82.31728996 84.35260664 86.38369379 88.29053235]\n", + "DEBUG:root:radec2pix: fitpx: [[2135.5 4155.50000026]\n", + " [2135.5 3863.07142876]\n", + " [2135.5 3570.64285709]\n", + " [2135.5 3278.21428545]\n", + " [2135.5 2985.7857141 ]\n", + " [2135.49999999 2693.35714316]\n", + " [2135.50000001 2400.9285712 ]\n", + " [2135.49999993 2108.50000021]\n", + " [2135.5 4155.50000026]\n", + " [1843.07142855 4155.50000013]\n", + " [1550.64285715 4155.49999996]\n", + " [1258.2142856 4155.50000027]\n", + " [ 965.78571429 4155.49999999]\n", + " [ 673.357143 4155.4999998 ]\n", + " [ 380.92857155 4155.49999986]\n", + " [ 88.49999976 4155.50000025]\n", + " [2135.49999993 2108.50000021]\n", + " [1843.07142817 2108.50000006]\n", + " [1550.64285738 2108.49999998]\n", + " [1258.21428605 2108.49999998]\n", + " [ 965.78571448 2108.49999999]\n", + " [ 673.35714251 2108.50000001]\n", + " [ 380.92857138 2108.5 ]\n", + " [ 88.50000013 2108.5 ]\n", + " [ 88.49999976 4155.50000025]\n", + " [ 88.49999974 3863.0714288 ]\n", + " [ 88.49999989 3570.64285722]\n", + " [ 88.50000025 3278.21428557]\n", + " [ 88.50000013 2985.78571423]\n", + " [ 88.49999977 2693.35714293]\n", + " [ 88.49999999 2400.92857143]\n", + " [ 88.50000013 2108.5 ]\n", + " [2134.5 4028.00000018]\n", + " [2134.5 3669.59999979]\n", + " [2134.5 3311.20000021]\n", + " [2134.5 2952.80000004DEBUG:root:optics_fp: sphi: [-0.69747355 -0.64202319 -0.57428814 -0.49231086 -0.39479224 -0.28187416\n", + " -0.15594205 -0.02195087 -0.69747355 -0.74781736 -0.80071206 -0.85427043\n", + " -0.90541695 -0.94984347 -0.98249431 -0.9987529 -0.02195087 -0.02541825\n", + " -0.03017857 -0.03712011 -0.04818532 -0.06858898 -0.11863781 -0.41353071\n", + " -0.9987529 -0.9983174 -0.99760636 -0.99632728 -0.99366642 -0.9866058\n", + " -0.9558309 -0.41353071 -0.67484345 -0.59889188 -0.50249541 -0.38295557\n", + " -0.24062567 -0.080988 -0.71886442 -0.7824768 -0.84816774 -0.91078081\n", + " -0.96243143 -0.99390485 -0.02383323 -0.02898045 -0.03694547 -0.05091008\n", + " -0.08171193 -0.2044042 -0.99855963 -0.99785011 -0.99645076 -0.99306508\n", + " -0.98098067 -0.85635999 -0.69746902 -0.69746902 -0.41742381 -0.41742381\n", + " -0.6968586 -0.76308411 -0.83279855 -0.90064763 -0.95775728 -0.99310478\n", + " -0.62210517 -0.69461272 -0.77599583 -0.86128022 -0.93873226 -0.98974551\n", + " -0.52542175 -0.60021731 -0.69109478 -0.79651192 -0.90419742 -0.98319709\n", + " -0.40310226 -0.47191923DEBUG:root:radec2pix: xyfp: [[ -0.230877 31.363511 ]\n", + " [ -0.230877 26.97708243]\n", + " [ -0.230877 22.59065386]\n", + " [ -0.230877 18.20422528]\n", + " [ -0.230877 13.81779671]\n", + " [ -0.230877 9.43136815]\n", + " [ -0.230877 5.04493957]\n", + " [ -0.230877 0.658511 ]\n", + " [ -0.230877 31.363511 ]\n", + " [ -4.61730557 31.363511 ]\n", + " [ -9.00373414 31.363511 ]\n", + " [-13.39016272 31.363511 ]\n", + " [-17.77659129 31.363511 ]\n", + " [-22.16301986 31.363511 ]\n", + " [-26.54944843 31.363511 ]\n", + " [-30.935877 31.363511 ]\n", + " [ -0.230877 0.658511 ]\n", + " [ -4.61730558 0.658511 ]\n", + " [ -9.00373414 0.658511 ]\n", + " [-13.39016271 0.658511 ]\n", + " [-17.77659128 0.658511 ]\n", + " [-22.16301986 0.658511 ]\n", + " [-26.54944843 0.658511 ]\n", + " [-30.935877 0.658511 ]\n", + " [-30.935877 31.363511 ]\n", + " [-30.935877 26.97708243]\n", + " [-30.935877 22.59065386]\n", + " [-30.935877 18.20422528]\n", + " [-30.935877 13.81779671]\n", + " [-30.935877 9.43136814]\n", + " [-30.935877 5.04493957]\n", + " [-30.935877 0.658511 ]\n", + " [ -0.245877 29.451011 ]\n", + " [ -0.245877 24.075011 ]\n", + " [ -0.245877 18.699011 ]\n", + " [ -0.245877 13.323011 ]\n", + " [ -0.245877 7.947011 ]\n", + " [ -0.245877 2.571011 ]\n", + " [ -2.143377 31.348511 ]\n", + " [ -7.519377 31.348511 ]\n", + " [-12.895377 31.348511 ]\n", + " [-18.271377 31.348511 ]\n", + " [-23.647377 31.348511 ]\n", + " [-29.023377 31.348511 ]\n", + " [ -2.143377 0.673511 ]\n", + " [ -7.519377 0.673511 ]\n", + " [-12.895377 0.673511 ]\n", + " [-18.271377 0.673511 ]\n", + " [-23.64737701 0.673511 ]\n", + " [-29.023377 0.673511 ]\n", + " [-30.920877 29.451011 ]\n", + " [-30.920877 24.075011 ]\n", + " [-30.920877 18.699011 ]\n", + " [-30.920877 13.323011 ]\n", + " [-30.920877 7.947011 ]\n", + " [-30.920877 2.571011 ]\n", + " [ -0.245877 31.348511 ]\n", + " [ -0.245877 31.348511 ]\n", + " [-30.920877 0.673511 ]\n", + " [-30.920877 0.673511 ]\n", + " [ -2.143377 29.451011 ]\n", + " [ -7.519377 29.451011 ]\n", + " [-12.895377 29.451011 ]\n", + " [-18.271377 29.451011 ]\n", + " [-23.647377 29.451011 ]\n", + " [-29.023377 29.451011 ]\n", + " [ -2.143377 24.075011 ]\n", + " [ -7.519377 24.075011 ]\n", + "]\n", + " [2134.5 2594.39999994]\n", + " [2134.50000001 2235.99999988]\n", + " [2007.99999999 4154.50000011]\n", + " [1649.6 4154.5 ]\n", + " [1291.20000005 4154.49999987]\n", + " [ 932.80000005 4154.49999992]\n", + " [ 574.4 4154.5 ]\n", + " [ 216. 4154.5 ]\n", + " [2008.00000002 2109.49999999]\n", + " [1649.60000012 2109.49999999]\n", + " [1291.19999984 2109.50000001]\n", + " [ 932.79999968 2109.50000001]\n", + " [ 574.39999959 2109.50000001]\n", + " [ 215.99999972 2109.50000001]\n", + " [ 89.4999999 4028.0000001 ]\n", + " [ 89.50000007 3669.59999994]\n", + " [ 89.49999997 3311.20000002]\n", + " [ 89.50000023 2952.7999999 ]\n", + " [ 89.49999997 2594.40000001]\n", + " [ 89.4999998 2236.00000002]\n", + " [2134.5 4154.50000005]\n", + " [2134.5 4154.50000005]\n", + " [ 89.49999997 2109.5 ]\n", + " [ 89.49999997 2109.5 ]\n", + " [2008. 4027.99999997]\n", + " [1649.59999996 4028.00000014]\n", + " [1291.20000001 4027.99999998]\n", + " [ 932.79999987 4028.00000021]\n", + " [ 574.40000006 4027.99999993]\n", + " [ 215.9999998 4028.0000002 ]\n", + " [2008. 3669.59999996]\n", + " [1649.60000001 3669.59999998]\n", + " [1291.20000007 3669.59999987]\n", + " [ 932.79999997 3669.60000004]\n", + " [ 574.39999998 3669.60000002]\n", + " [ 215.99999986 3669.60000012]\n", + " [2008. 3311.20000004]\n", + " [1649.59999995 3311.20000012]\n", + " [1291.19999997 3311.20000005]\n", + " [ 932.80000015 3311.19999984]\n", + " [ 574.40000003 3311.19999997]\n", + " [ 216.00000001 3311.2 ]\n", + " [2007.99999998 2952.80000014]\n", + " [1649.60000006 2952.7999999 ]\n", + " [1291.20000015 2952.79999984]\n", + " [ 932.80000014 2952.7999999 ]\n", + " [ 574.39999986 2952.80000008]\n", + " [ 215.99999973 2952.80000012]\n", + " [2007.99999998 2594.40000007]\n", + " [1649.60000022 2594.39999977]\n", + " [1291.20000005 2594.39999997]\n", + " [ 932.79999996 2594.40000002]\n", + " [ 574.39999995 2594.40000002]\n", + " [ 216.00000004 2594.39999999]\n", + " [2008.00000021 2235.99999975]\n", + " [1649.59999975 2236.00000009]\n", + " [1291.20000026 2235.99999995]\n", + " [ 932.79999972 2236.00000004]\n", + " [ 574.39999974 2236.00000003]\n", + " [ 216.00000028 2235.99999998]]\n", + " -0.56346867 -0.68479813 -0.83377108 -0.9677645\n", + " -0.2547217 -0.30487255 -0.37769207 -0.48994442 -0.67029166 -0.91697776\n", + " -0.08601994 -0. [-12.895377 24.075011 ]\n", + " [-18.271377 24.075011 ]\n", + " [-23.647377 24.075011 ]\n", + " [-29.023377 24.075011 ]\n", + " [ -2.143377 18.699011 ]\n", + " [ -7.519377 18.699011 ]\n", + " [-12.895377 18.699011 ]\n", + " [-18.271377 18.699011 ]\n", + " [-23.647377 18.699011 ]\n", + " [-29.023377 18.699011 ]\n", + " [ -2.143377 13.323011 ]\n", + " [ -7.519377 13.323011 ]\n", + " [-12.895377 13.323011 ]\n", + " [-18.271377 13.323011 ]\n", + " [-23.647377 13.323011 ]\n", + " [-29.023377 13.323011 ]\n", + " [ -2.143377 7.947011 ]\n", + " [ -7.519377 7.947011 ]\n", + " [-12.895377 7.947011 ]\n", + " [-18.271377 7.947011 ]\n", + " [-23.647377 7.947011 ]\n", + " [-29.023377 7.947011 ]\n", + " [ -2.143377 2.571011 ]\n", + " [ -7.519377 2.571011 ]\n", + " [-12.895377 2.571011 ]\n", + " [-18.271377 2.571011 ]\n", + " [-23.647377 2.571011 ]\n", + " [-29.023377 2.571011 ]]\n", + "DEBUG:root:radec2pix: lat: [77.88072123 79.48382459 81.11902826 82.7811435 84.46512008 86.16588026\n", + " 87.87809063 89.592501 77.88072123 77.76297714 77.43489604 76.91632478\n", + " 76.23510116 75.42235372 74.50888673 73.52311865 89.592501 88.1660092\n", + " 86.47326812 84.77720909 83.09335022 81.42892112 79.7896882 78.18111406\n", + " 73.52311865 74.53938675 75.48898077 76.34336174 77.07095847 77.63894653\n", + " 78.01676209 78.18111406 78.57535641 80.56236957 82.59241544 84.65614182\n", + " 86.74415968 88.84595283 77.86145981 77.57369823 76.98847403 76.15398719\n", + " 75.12717296 73.96382281 89.0844999 87.04713438 84.96761219 82.90419496\n", + " 80.87086863 78.87814184 73.97634463 75.18085203 76.25721571 77.14851635\n", + " 77.79468183 78.14215534 77.8861108 77.8861108 78.18637455 78.18637455\n", + " 78.54888043 78.24034026 77.6156038 76.73023014 75.64791869 74.42908235\n", + " 80.52930205 80.14668621 79.38566385 78.33252026 77.07564982 75.68958597\n", + " 82.54926459 82.05674096 81.10786838 79.84412063 78.38693881 76.82298725\n", + " 84.59535958 83.92250159 82.7051798 81.18260126 79.50799917 77.76802141\n", + " 86.64409097 85.63122317 84.03581665 82.22723271 80.34771821 78.45776966\n", + " 88.58657998 86.85792078 84.85560606 82.82572865 80.81119712 78.83DEBUG:root:fitpix2pix: ccdpx: shape: (96, 2)\n", + "DEBUG:root:radec2pix: xyfp: [[ 0.173161 -31.45819714]\n", + " [ 0.17304708 -27.07176857]\n", + " [ 0.17293316 -22.68534 ]\n", + " [ 0.17281925 -18.29891143]\n", + " [ 0.17270533 -13.91248287]\n", + " [ 0.17259141 -9.52605429]\n", + " [ 0.17247749 -5.13962573]\n", + " [ 0.17236358 -0.75319715]\n", + " [ 0.173161 -31.45819714]\n", + " [ 4.55958957 -31.45808322]\n", + " [ 8.94601814 -31.45796931]\n", + " [ 13.33244671 -31.45785538]\n", + " [ 17.71887528 -31.45774147]\n", + " [ 22.10530385 -31.45762756]\n", + " [ 26.49173242 -31.45751363]\n", + " [ 30.87816099 -31.45739971]\n", + " [ 0.17236358 -0.75319715]\n", + " [ 4.55879215 -0.75308323]\n", + " [ 8.94522072 -0.75296932]\n", + " [ 13.33164929 -0.7528554 ]\n", + " [ 17.71807786 -0.75274148]\n", + " [ 22.10450643 -0.75262756]\n", + " [ 26.490935 -0.75251364]\n", + " [ 30.87736356 -0.75239973]\n", + " [ 30.87816099 -31.45739971]\n", + " [ 30.87804707 -27.07097114]\n", + " [ 30.87793315 -22.68454257]\n", + " [ 30.87781924 -18.29811401]\n", + " [ 30.87770532 -13.91168544]\n", + " [ 30.87759141 -9.52525687]\n", + " [ 30.87747749 -5.1388283 ]\n", + " [ 30.87736356 -0.75239973]\n", + " [ 0.18811133 -29.54569675]\n", + " [ 0.18797171 -24.16969676]\n", + " [ 0.1878321 -18.79369675]\n", + " [ 0.18769248 -13.41769676]\n", + " [ 0.18755286 -8.04169676]\n", + " [ 0.18741324 -2.66569676]\n", + " [ 2.08566061 -31.44314748]\n", + " [ 7.46166061 -31.44300785]\n", + " [ 12.83766061 -31.44286824]\n", + " [ 18.2136606 -31.44272862]\n", + " [ 23.5896606 -31.442589 ]\n", + " [ 28.9656606 -31.44244938]\n", + " [ 2.08486397 -0.76814748]\n", + " [ 7.46086396 -0.76800786]\n", + " [ 12.83686396 -0.76786825]\n", + " [ 18.21286396 -0.76772863]\n", + " [ 23.58886395 -0.76758901]\n", + " [ 28.96486395 -0.7674494 ]\n", + " [ 30.86311132 -29.54490011]\n", + " [ 30.86297171 -24.16890011]\n", + " [ 30.86283209 -18.79290011]\n", + " [ 30.86269247 -13.41690011]\n", + " [ 30.86255285 -8.04090011]\n", + " [ 30.86241323 -2.66490012]\n", + " [ 0.18816061 -31.44319675]\n", + " [ 0.18816061 -31.44319675]\n", + " [ 30.86236396 -0.76740012]\n", + " [ 30.86236396 -0.76740012]\n", + " [ 2.08561133 -29.54564748]\n", + " [ 7.46161133 -29.54550785]\n", + " [ 12.83761133 -29.54536824]\n", + " [ 18.21361133 -29.54522862]\n", + " [ 23.58961132 -29.545089 ]\n", + " [ 28.96561132 -29.54494938]\n", + " [ 2.0854717DEBUG:root:fitpix2pix: visCut: True\n", + "1 -24.16964747]\n", + " [ 7.46147171 -24.16950786]\n", + " [ 12.83747171 -24.16936824]\n", + " [ 18.21347171 -24.16922862]\n", + " [ 23.58947171 -24.16908901]\n", + " [ 28.9654717 -24.16894939]\n", + " [ 2.0853321 -18.79364747]\n", + " [ 7.46133209 -18.79350785]\n", + " [ 12.83733209 -18.79336824]\n", + " [ 18.21333209 -18.79322862]\n", + " [ 23.58933209 -18.79308901]\n", + " [ 28.96533209 -18.79294939]\n", + " [ 2.08519248 -13.41764748]\n", + " [ 7.46119248 -13.41750786]\n", + " [ 12.83719247 -13.41736824]\n", + " [ 18.21319248 -13.41722863]\n", + " [ 23.58919247 -13.41708901]\n", + " [ 28.96519247 -13.41694939]\n", + " [ 2.08505286 -8.04164748]\n", + " [ 7.46105286 -8.04150786]\n", + " [ 12.83705286 -8.04136825]\n", + " [ 18.21305286 -8.04122863]\n", + " [ 23.58905286 -8.04108901]\n", + " [ 28.96505285 -8.04094939]\n", + " [ 2.08491324 -2.66564748]\n", + " [ 7.46091324 -2.66550786]\n", + " [ 12.83691324 -2.66536825]\n", + " [ 18.21291324 -2.66522863]\n", + " [ 23.58891323 -2.66508901]\n", + " [ 28.96491324 -2.66494939]]\n", + "059106]\n", + "10436806 -0.13256201 -0.18124971 -0.28404496 -0.60207682]\n", + "DEBUG:root:make_az_asym: xyp: [[ -0.167405 31.491388 ]\n", + " [ -0.167405 27.10495943]\n", + " [ -0.167405 22.71853086]\n", + " [ -0.167405 18.33210229]\n", + " [ -0.167405 13.94567372]\n", + " [ -0.167405 9.55924515]\n", + " [ -0.167405 5.17281657]\n", + " [ -0.167405 0.786388 ]\n", + " [ -0.167405 31.491388 ]\n", + " [ -4.55383357 31.491388 ]\n", + " [ -8.94026214 31.491388 ]\n", + " [-13.32669071 31.491388 ]\n", + " [-17.71311928 31.491388 ]\n", + " [-22.09954786 31.491388 ]\n", + " [-26.48597643 31.491388 ]\n", + " [-30.872405 31.491388 ]\n", + " [ -0.167405 0.786388 ]\n", + " [ -4.55383357 0.786388 ]\n", + " [ -8.94026214 0.786388 ]\n", + " [-13.32669071 0.786388 ]\n", + " [-17.71311929 0.786388 ]\n", + " [-22.09954786 0.786388 ]\n", + " [-26.48597643 0.786388 ]\n", + " [-30.872405 0.786388 ]\n", + " [-30.872405 31.491388 ]\n", + " [-30.872405 27.10495943]\n", + " [-30.872405 22.71853086]\n", + " [-30.872405 18.33210229]\n", + " [-30.872405 13.94567371]\n", + " [-30.872405 9.55924514]\n", + " [-30.872405 5.17281657]\n", + " [-30.872405 0.786388 ]\n", + " [ -0.182405 29.578888 ]\n", + " [ -0.182405 24.202888 ]\n", + " [ -0.182405 18.82688DEBUG:root:optics_fp: rtanth: [31.53710793 27.15083443 22.76462071 18.37850955 13.99259736 9.60715672\n", + " 5.22337543 0.86680593 31.53710793 31.87457578 32.80044965 34.26706764\n", + " 36.20878157 38.55387546 41.23358186 44.18706537 0.86680593 4.70645911\n", + " 9.05713384 13.4310871 17.81117737 22.19377139 26.57763063 30.96221766\n", + " 44.18706537 41.17129315 38.42050918 35.99551614 33.96616479 32.40686702\n", + " 31.3877559 30.96221766 29.62479828 24.2490533 18.8734536 13.49817273\n", + " 8.12384367 2.75604003 31.59497037 32.40914016 34.06266769 36.44147428\n", + " 39.41445822 42.8581467 2.31847961 7.58192329 12.93825823 18.30612583\n", + " 23.67768384 29.05088524 42.83223469 39.30633844 36.23781045 33.75162698\n", + " 31.98387863 31.05748561 31.52222904 31.52222904 30.94762955 30.94762955\n", + " 29.70218682 30.56681395 32.3147502 34.81319861 37.91407742 41.48250822\n", + " 24.34353743 25.39129827 27.47054774 30.37016151 33.88015908 37.83102431\n", + " 18.99469609 20.32015484 22.86529373 26.27807784 30.26641445 34.63202369\n", + " 13.66718319 15.4564585 18.67659162 22.72731378 27.24058114 32.02140662\n", + " 8.40167037 11.07692547 15.25159806 20.00817233 25.01690288 30.15239046\n", + " 3.49098634 8.0185534 13.1988698 18.49123795 23.82109044 29.16788596]\n", + "DEBUG:root:cartToSphere: vec: [[-0.00156258 0.20900824 0.97791263]\n", + " [-0.00157957 0.18154377 0.9833816 ]\n", + " [-0.00159468 0.15338464 0.98816527]\n", + " [-0.00160787 0.12463517 0.99220134]\n", + " [-0.00161907 0.09540199 0.99543751]\n", + " [-0.00162822 0.06579532 0.99783181]\n", + " [-0.00163527 0.03592916 0.999353 ]\n", + " [-0.00164017 0.00592057 0.99998113]\n", + " [-0.00156258 0.20900824 0.97791263]\n", + " [-0.0305812 0.20886066 0.97746714]\n", + " [-0.05948043 0.2084416 0.97622445]\n", + " [-0.08814769 0.2077524 0.97420169]\n", + " [-0.11647141 0.20679486 0.97142694]\n", + " [-0.14434091 0.20557063 0.96793926]\n", + " [-0.17164574 0.20408052 0.96378882]\n", + " [-0.19827444 0.20232383 0.95903718]\n", + " [-0.00164017 0.00592057 0.99998113]\n", + " [-0.03165868 0.00591961 0.99948121]\n", + " [-0.06155164 0.00591082 0.9980864 ]\n", + " [-0.09120162 0.00589429 0.98 ]\n", + " [ -0.182405 13.450888 ]\n", + " [ -0.182405 8.074888 ]\n", + " [ -0.182405 2.698888 ]\n", + " [ -2.079905 31.476388 ]\n", + " [ -7.455905 31.476388 ]\n", + " [-12.831905 31.476388 ]\n", + " [-18.207905 31.476388 ]\n", + " [-23.583905 31.476388 ]\n", + " [-28.959905 31.476388 ]\n", + " [ -2.079905 0.801388 ]\n", + " [ -7.455905 0.801388 ]\n", + " [-12.831905 0.801388 ]\n", + " [-18.207905 0.801388 ]\n", + " [-23.583905 0.801388 ]\n", + " [-28.959905 0.801388 ]\n", + " [-30.857405 29.578888 ]\n", + " [-30.857405 24.202888 ]\n", + " [-30.857405 18.826888 ]\n", + " [-30.857405 13.450888 ]\n", + " [-30.857405 8.074888 ]\n", + " [-30.857405 2.698888 ]\n", + " [ -0.182405 31.476388 ]\n", + " [ -0.182405 31.476388 ]\n", + " [-30.857405 0.801388 ]\n", + " [-30.857405 0.801388 ]\n", + " [ -2.079905 29.578888 ]\n", + " [ -7.455905 29.578888 ]\n", + " [-12.831905 29.578888 ]\n", + " [-18.207905 29.578888 ]\n", + " [-23.583905 29.578888 ]\n", + " [-28.959905 29.578888 ]\n", + " [ -2.079905 24.202888 ]\n", + " [ -7.455905 24.202888 ]\n", + " [-12.831905 24.202888 ]\n", + " [-18.20795815 ]\n", + " [-0.12049415 0.00587015 0.99269668]\n", + " [-0.14931846 0.00583856 0.98877192]\n", + " [-0.17756745 0.00579969 0.98409154]\n", + " [-0.20513658 0.00575368 0.97871644]\n", + " [-0.19827444 0.20232383 0.95903718]\n", + " [-0.2000398 0.17576331 0.96389384]\n", + " [-0.20154417 0.1485108 0.9681552 ]\n", + " [-0.20278831 0.12067777 0.97175809]\n", + " [-0.20377138 0.09237455 0.97465079]\n", + " [-0.20449167 0.06371165 0.9767927 ]\n", + " [-0.20494724 0.03480051 0.97815416]\n", + " [-0.20513658 0.00575368 0.97871644]\n", + " [-0.00166992 0.19712565 0.98037681]\n", + " [-0.00169047 0.16298492 0.98662711]\n", + " [-0.00170796 0.12790428 0.99178505]\n", + " [-0.0017223 0.09207897 0.99575022]\n", + " [-0.00173334 0.05571194 0.99844538]\n", + " [-0.001741 0.01901436 0.99981769]\n", + " [-0.0142227 0.20888472 0.97783684]\n", + " [-0.04972296 0.20852129 0.97675304]\n", + " [-0.08493191 0.20775151 0.9744875 ]\n", + " [-0.1196437 0.20657854 0.97108738]\n", + " [-0.15365451 0.20500532 0.9666246 ]\n", + " [-0.18676067 0.20303275 0.96119621]\n", + " [-0.01473616 0.00602383 0.99987327]\n", + " [-0.05145726 0.00601719 0.99865707]\n", + " [-0.08787283 0.00599868 0.99611364]\n", + " [-0.12377083 0.00596852 0.99229288]\n", + " [-0.15894736 0.005927 0.98726927]\n", + " [-0.19320639 0.00587443 0.98114055]\n", + " [-0.19898619 0.19084173 0.96124083]\n", + " [-0.20097311 0.15780847 0.9668021 ]\n", + " [-0.20256914 0.12384677 0.97140502]\n", + " [-0.20377339 0.08916013 0.97494968]\n", + " [-0.20458276 0.05395206 0.97736128]\n", + " [-0.20499385 0.01842821 0.97858976]\n", + " [-0.00166195 0.20891558 0.97793227]\n", + " [-0.00166195 0.20891558 0.97793227]\n", + " [-0.20504339 0.00585328 0.97873538]\n", + " [-0.20504339 0.00585328 0.97873538]\n", + " [-0.01428012 0.19709662 0.98028006]\n", + " [-0.04992014 0.19675396 0.97918122]\n", + " [-0.08526785 0.1960282 0.976884 ]\n", + " [-0.1201171 0.19492287 0.97343565]\n", + " [-0.15426444 0.19344162 0.96890806]\n", + " [-0.18750721 0.19158618 0.96339804]\n", + " [-0.01442512 0.16296111 0.98652704]\n", + " [-0.05041664 0.16267787 0.98539031]\n", + " [-0.08611259 0.16207774 0.98301344]\n", + " [-0.12130566 0.1611649 0.97944414]\n", + " [-0.1557929 0.15994417 0.97475455]\n", + " [-0.1893742 0.15841917 0.96904116]\n", + " [-0.01454351 0.12788582 0.99168226]\n", + " [-0.0508198 0.12766348 0.99051471]\n", + " [-0.08679712 0.12719172 0.98807314]\n", + " [-0.1222667 0.12647465 0.98440592]\n", + " [-0.15702557 0.12551724 0.97958583]\n", + " [-0.19087549 0.12432386 0.97370947]\n", + " [-0.01463451 0.09206603 0.99564536]\n", + " [-0.05112705 0.09190638 0.99445424]\n", + " [-0.08731762 0.09156653 0.99196331]\n", + " [-0.122996 0.09104984 0.98822159]\n", + " [-0.15795892 0.09036055 0.98330257]\n", + " [-0.19200933 0.08950266 0.97730327]\n", + " [-0.01469728 0.05570466 0.99833911]\n", + " [-0.05133568 0.05560934 0.99713201]\n", + " [-0.08766989 0.05540465 0.99460762]\n", + " [-0.12348855 0.05509277 0.9908155 ]\n", + " [-0.15858803 0.05467653 0.98582976]\n", + " [-0.19277198 0.0541587 0.97974782]\n", + " [-0.01473117 0.01901283 0.99971071]\n", + " [-0.05144352 0.01898296 0.99849547]\n", + " [-0.08785049 0.01891568 0.99595406]\n", + " [-0.12374011 0.01881174 0.99213633]\n", + " [-0.1589085 0.01867213 0.98711673]\n", + " [-0.19315962 0.01849786 0.98099296]]\n", + "DEBUG:root:radec2pix: ccdpx: [[-4.45000000e+01 -5.00000261e-01]\n", + " [-4.45000000e+01 2.91928571e+02]\n", + " [-4.45000000e+01 5.84357143e+02]\n", + " [-4.45000000e+01 8.76785715e+02]\n", + " [-4.45000000e+01 1.16921429e+03]\n", + " [-4.45000000e+01 1.46164286e+03]\n", + " [-4.45000000e+01 1.75407143e+03]\n", + " [-4.44999999e+01 2.04650000e+03]\n", + " [-4.45000000e+01 -5.00000261e-01]\n", + " [ 2.47928571e+02 -5.00000125e-01]\n", + " [ 5.40357143e+02 -4.99999959e-01]\n", + " [ 8.32785714e+02 -5.00000265e-01]\n", + " [ 1.12521429e+03 -4.99999989e-01]\n", + " [ 1.41764286e+03 -4.99999804e-01]\n", + " [ 1.71007143e+03 -4.99999857e-01]\n", + " [ 2.00250000e+03 -5.00000247e-01]\n", + " [-4.44999999e+01 2.04650000e+03]\n", + " [ 2.47928572e+02 2.04650000e+03]\n", + " [ 5.40357143e+02 2.04650000e+03]\n", + " [ 8.32785714e+02 2.04650000e+03]\n", + " [ 1.12521429e+03 2.04650000e+03]\n", + " [ 1.41764286e+03 2.04650000e+03]\n", + " [ 1.71007143e+03 2.04650000e+03]\n", + " [ 2.00250000e+03 2.04650000e+03]\n", + " [ 2.00250000e+03 -5.00000247e-01]\n", + " [ 2.00250000e+03 2.91928571e+02]\n", + " [ 2.00250000e+03 5.84357143e+02]\n", + " [ 2.00250000e+03 8.76785714e+02]\n", + " [ 2.00250000e+03DEBUG:root:optics_fp: cphi: [0.00780224 0.0090627 0.01080888 0.01338846 0.01758501 0.02561216\n", + " 0.04710747 0.28386977 0.00780224 0.14533491 0.27496322 0.39120201\n", + " 0.49136628 0.57525223 0.64424749 0.70045521 0.28386977 0.98428319\n", + " 0.99578049 0.99808345 0.99891062 0.99929852 0.9995109 0.99963964\n", + " 0.70045521 0.75176312 0.80558693 0.85985876 0.91123211 0.95507721\n", + " 0.98608706 0.99963964 0.00881221 0.01076578 0.01383213 0.0193404\n", + " 0.03213503 0.09472286 0.06831973 0.23248256 0.37902375 0.50180626\n", + " 0.60035228 0.67755053 0.93102393 0.99375313 0.9978592 0.99893119\n", + " 0.99936126 0.99957574 0.72226117 0.78705016 0.85369562 0.91657981\n", + " 0.96723916 0.99609029 0.00828177 0.00828177 0.99962616 0.99962616\n", + " 0.07267344 0.24649478 0.39952529 0.52527664 0.62411014 0.70001939\n", + " 0.08867076 0.29673788 0.46997825 0.60212258 0.69841939 0.76758588\n", + " 0.11364014 0.37079245 0.56463565 0.69588651 0.78180916 0.83848868\n", + " 0.15793745 0.48747001 0.6912696 0.80460719 0.86865107 0.90684836\n", + " 0.25692034 0.68020319 0.84650539 0905 24.202888 ]\n", + " [-23.583905 24.202888 ]\n", + " [-28.959905 24.202888 ]\n", + " [ -2.079905 18.826888 ]\n", + " [ -7.455905 18.826888 ]\n", + " [-12.831905 18.826888 ]\n", + " [-18.207905 18.826888 ]\n", + " [-23.583905 18.826888 ]\n", + " [-28.959905 18.826888 ]\n", + " [ -2.079905 13.450888 ]\n", + " [ -7.455905 13.450888 ]\n", + " [-12.831905 13.450888 ]\n", + " [-18.207905 13.450888 ]\n", + " [-23.583905 13.450888 ]\n", + " [-28.959905 13.450888 ]\n", + " [ -2.079905 8.074888 ]\n", + " [ -7.455905 8.074888 ]\n", + " [-12.831905 8.074888 ]\n", + " [-18.20790499 8.074888 ]\n", + " [-23.583905 8.074888 ]\n", + " [-28.959905 8.074888 ]\n", + " [ -2.079905 2.698888 ]\n", + " [ -7.455905 2.698888 ]\n", + " [-12.831905 2.698888 ]\n", + " [-18.207905 2.698888 ]\n", + " [-23.583905 2.698888 ]\n", + " [-28.959905 2.698888 ]]\n", + " 1.16921429e+03]\n", + " [ 2.00250000e+03 1.46164286e+03]\n", + " [ 2.00250000e+03 1.75407143e+03]\n", + " [ 2.00250000e+03 2.04650000e+03]\n", + " [-4.35000000e+01 1.27000000e+02]\n", + " [-4.35000000e+01 4.85400000e+02]\n", + " [-4.35000000e+01 8.43800000e+02]\n", + " [-4.35000000e+01 1.20220000e+03]\n", + " [-4.35000000e+01 1.56060000e+03]\n", + " [-4.35000000e+01 1.91900000e+03]\n", + " [ 8.30000000e+01 4.99999891e-01]\n", + " [ 4.41400000e+02 5.00000001e-01]\n", + " [ 7.99800000e+02 5.00000129e-01]\n", + " [ 1.15820000e+03 5.00000084e-01]\n", + " [ 1.51660000e+03 5.00000000e-01]\n", + " [ 1.87500000e+03 5.00000003e-01]\n", + " [ 8.30000000e+01 2.04550000e+03]\n", + " [ 4.41400000e+02 2.04550000e+03]\n", + " [ 7.99800000e+02 2.04550000e+03]\n", + " [ 1.15820000e+03 2.04550000e+03]\n", + " [ 1.51660000e+03 2.04550000e+03]\n", + " [ 1.87500000e+03 2.04550000e+03]\n", + " [ 2.00150000e+03 1.27000000e+02]\n", + " [ 2.00150000e+03 4.85400000e+02]\n", + " [ 2.00150000e+03 8.43800000e+02]\n", + " [ 2.00150000e+03 1.20220000e+03]\n", + " [ 2.00150000e+03 1.56060000e+03]\n", + " [ 2.00150000e+03 1.91900000e+03]\n", + " [-4.35000000e+01 4.99999945e-01]\n", + " [-4.35000000e+01 4.99999945e-01]\n", + " [ 2.00150000e+03 2.04550000e+03]\n", + " [ 2.00150000e+03 2.04550000e+03]\n", + " [ 8.30000000e+01 1.27000000e+02]\n", + " [ 4.41400000e+02 1.27000000e+02]\n", + " [ 7.99800000e+02 1.27000000e+02]\n", + " [ 1.15820000e+03.91395454 0.94586289 0.96305996\n", + " 0.61832382 0.93964081 0.97815648 0.98893108 0.99334495 0.99556615]\n", + "DEBUG:root:optics_fp: rtanth: [45.0390902 42.09683712 39.42396804 37.07878541 35.12698266 33.63710755\n", + " 32.6724136 32.28002056 45.0390902 42.00763364 39.23320577 36.77402747\n", + " 34.69719395 33.07480842 31.97611838 31.45604637 32.28002056 27.89482687\n", + " 23.51009392 19.1261386 14.74365456 10.36450837 5.99601772 1.72131774\n", + " 31.45604637 27.07594694 22.69829207 18.32483384 13.95951711 9.61343916\n", + " 5.33383708 1.72131774 43.71543665 40.28285706 37.31193504 34.92069834\n", + " 33.23450917 32.36375719 43.67830098 40.1281473 37.02087501 34.47644006\n", + " 32.62678968 31.59418683 30.3683705 24.99424245 19.62114004 14.2502235\n", + " 8.88545749 3.55479843 29.54687443 24.18030108 18.81910954 13.46972753\n", + " 8.15542687 3.06450112 45.0178789 45.0178789 1.74119478 1.74119478\n", + " 42.33466612 38.66132674 35.42562866 32.75751668 30.80482728 29.70896533\n", + " 38.78006096 34.73279944 31.09090442 28.01292685 25.70226752 24.37810068\n", + " 35.68424094 31.23842634 27.13146257 23.54136773 20.73833358 19.07259071\n", + " 33.17589074 28.33926527 23.73585762 19.53127415 16.04223037 13.82166388\n", + " 31.39613279 26.23340206 21.17707168 16.3263008 11.93442847 8.72443809\n", + " 30.47289508 25.12113778 19.7825313 14.471637 9.23638255 4.35844005]\n", + "DEBUG:root:make_az_asym: xyp: shape: (96, 2)\n", + " 1.27000000e+02]\n", + " [ 1.51660000e+03 1.27000000e+02]\n", + " [ 1.87500000e+03 1.27000000e+02]\n", + " [ 8.30000000e+01 4.85400000e+02]\n", + " [ 4.41400000e+02 4.85400000e+02]\n", + " [ 7.99800000e+02 4.85400000e+02]\n", + " [ 1.15820000e+03 4.85400000e+02]\n", + " [ 1.51660000e+03 4.85400000e+02]\n", + " [ 1.87500000e+03 4.85400000e+02]\n", + " [ 8.30000000e+01 8.43800000e+02]\n", + " [ 4.41400000e+02 8.43800000e+02]\n", + " [ 7.99800000e+02 8.43800000e+02]\n", + " [ 1.15820000e+03 8.43800000e+02]\n", + " [ 1.51660000e+03 8.43800000e+02]\n", + " [ 1.87500000e+03 8.43800000e+02]\n", + " [ 8.30000000e+01 1.20220000e+03]\n", + " [ 4.41400000e+02 1.20220000e+03]\n", + " [ 7.99800000e+02 1.20220000e+03]\n", + " [ 1.15820000e+03 1.20220000e+03]\n", + " [ 1.51660000e+03 1.20220000e+03]\n", + " [ 1.87500000e+03 1.20220000e+03]\n", + " [ 8.30000000e+01 1.56060000e+03]\n", + " [ 4.41400000e+02 1.56060000e+03]\n", + " [ 7.99800000e+02 1.56060000e+03]\n", + " [ 1.15820000e+03 1.56060000e+03]\n", + " [ 1.51660000e+03 1.56060000e+03]\n", + " [ 1.87500000e+03 1.56060000e+03]\n", + " [ 8.29999998e+01 1.91900000e+03]\n", + " [ 4.41400000e+02 1.91900000e+03]\n", + " [ 7.99800000e+02 1.91900000e+03]\n", + " [ 1.15820000e+03 1.91900000e+03]\n", + " [ 1.51660000e+03 1.91900000e+03]\n", + " [ 1.87500000e+03 1.91900000e+03]]\n", + "DEBUG:root:radec2pix: lng: [ 90.42834373 90.49850377 90.5956611 90.73910961 90.97227481\n", + " 91.41759428 92.60593903 105.48424091 90.42834373 98.33000716\n", + " 105.9265086 112.99112584 119.3891666 125.0745167 130.06614193\n", + " 134.42085308 105.48424091 169.40901167 174.51469037 176.30215943\n", + " 177.21090794 177.76079422 178.12927502 178.39338736 134.42085308\n", + " 138.69611239 143.61480744 149.24344747 155.61405077 162.69499667\n", + " 170.36296391 178.39338736 90.48535945 90.59424595 90.76505154\n", + " 91.07156688 91.78204394 95.23155859 93.89518731 103.41200836\n", + " 112.23547382 120.07805375 126.85210045 132.60955299 157.76630729\n", + " 173.33036525 176.09473451 177.23920333 177.86448301 178.25846094\n", + " 136.19687489 141.86022321 148.55920823 156.36843482 165.22645267\n", + " 174.86312285 90.45578538 90.45578538 178.36484692 178.36484692\n", + " 94.14397512 104.23659596 113.5079539 121.64257424 128.57141019\n", + " 134.38353176 95.05856666 107.21909912 117.98189812 126.96805941\n", + " 134.24672537 140.08615622 96.48795214 111.70632897 124.31008611\n", + " 134.03082213 141.36316306 146.92239982 99.03197846 119.08696476\n", + " 133.63934958 143.48868891 150.22824427 155.00803043 104.7802641\n", + " 132.71160718 147.70838425 155.95659867 160.97729932 164.30745367\n", + " 127.76858297 159.74564279 167.84877649 171.35573132 173.29833797\n", + " 174.52977301]\n", + "DEBUG:root:optics_fp: xyfp: [[32.275486 31.41357429]\n", + " [32.27502267 27.02714574]\n", + " [32.27455935 22.64071719]\n", + " [32.27409601 18.25428864]\n", + " [32.27363269 13.8678601 ]\n", + " [32.27316936 9.48143155]\n", + " [32.27270604 5.095003 ]\n", + " [32.DEBUG:root:radec2pix: xyfp Shape: (96, 2)\n", + "DEBUG:root:optics_fp: rtanth: [31.72889598 27.34254715 22.95622881 18.56996252 14.18379661 9.79786588\n", + " 5.41274207 1.03869565 31.72889598 32.05497925 32.96668106 34.41749464\n", + " 36.342913 38.67211172 41.33689193 44.27670445 1.03869565 4.67736497\n", + " 9.00877953 13.37609754 17.75284128 22.13341982 26.51593264 30.89955671\n", + " 44.27670445 41.24704355 38.47976296 36.03536075 33.98358137 32.39910327\n", + " 31.35285463 30.89955671 29.81652098 24.44065782 19.06487182 13.68925392\n", + " 8.31413013 2.94220985 31.78219953 32.5803988 34.21489906 36.57374743\n", + " 39.52747698 42.9535403 2.33383998 7.53796979 12.88401801 18.24767393\n", + " 23.61694389 28.9887086 42.91616052 39.37153369 36.28003925 33.76636764\n", + " 31.96711857 31.00691067 31.71398377 31.71398377 30.88506563 30.88506563\n", + " 29.88906763 30.73646927 32.46394115 34.94119572 38.021962 41.57228381\n", + " 24.52910914 25.55486988 27.6084825 30.48291307 33.97043457 37.9021848\n", + " 19.17813281 20.47376266 22.98590632 26.36914053 30.33338108 34.67995379\n", + " 13.846556 15.59170589 18.76907627 22.78723124 27.27710291 32.04099765\n", + " 8.57065926 11.17275166 15.2972975 20.02465966 25.01538387 30.13892197\n", + " 3.60389222 8.02260672 13.1734259 18.4531524 23.77606504 29.11848994]\n", + "DEBUG:root:optics_fp: sphi: [-0.99996956 -0.99995893 -0.99994158 -0.99991037 -0.99984537 -0.99967195\n", + " -0.99888983 -0.95886284 -0.99996956 -0.98938252 -0.96145475 -0.92030483\n", + " -0.87095303 -0.81797608 -0.76481709 -0.71369637 -0.95886284 -0.17659731\n", + " -0.09176722 -0.06188241 -0.04666441 -0.03744961 -0.03127246 -0.02684394\n", + " -0.71369637 -0.65943324 -0.59247759 -0.51053198 -0.41189324 -0.2963571\n", + " -0.16622968 -0.02684394 -0.99996117 -0.99994205 -0.99990433 -0.99981296\n", + " -0.99948354 -0.99550368 -0.99766348 -0.97260056 -0.92538694 -0.86498004\n", + " -0.79973567 -0.73547623 -0.36495814 -0.11160071 -0.06539891 -0.04622212\n", + " -0.0357361 -0.02912641 -0.69162042 -0.616889 -0.5207723 -0.39985178\n", + " -0.2538669 -0.08834096 -0.99996571 -0.99996571 -0.02734129 -0.02734129\n", + " -0.99735579 -0.96914412 -0.91672217 -0.85093152 -0.78133638 -0.71412384\n", + " -0.99606099 -0.95495897 -0.882678 -0.79840366 -0.71568873 -0.64094611\n", + " -0.99352198 -0.92871576 -0.82534028 -0.71815177 -0.62351779 -0.54491901\n", + " -0.98744912 -0.87313973 -0.72259694 -0.59380744 -0.49542438 -0.42145706\n", + " -0.96643258 -0.73302362 -0.53238015 -0.40581658 -0.32456648 -0.26928704\n", + " -0.78592344 -0.34216247 -0.20786992 -0.14837557 -0.11517726 -0.094064 ]\n", + "DEBUG:root:optics_fp: cphi: [-0.71661052 -0.76668522 -0.81865324 -0.87041945 -0.91877042 -0.95945138\n", + " -0.98776621 -0.99975905 -0.71661052 -0.66390451 -0.59904941 -0.51982885\n", + " -0.42452343 -0.31272572 -0.18629262 -0.04992637 -0.99975905 -0.9996769\n", + " -0.99954452 -0.99931081 -0.99883841 -0.997645 -0.9929376 -0.91049017\n", + " -0.04992637 -0.05798589 -0.06914879 -0.08562676 -0.11237014 -0.16312264\n", + " -0.29391715 -0.91049017 -0.73796092 -0.80082989 -0.86457988 -0.92376676\n", + " -0.97061799 -0.99671508 -0.69515031 -0.62267974 -0.52972774 -0.41289021\n", + " -0.27152486 -0.11024131 -0.99971595 -0.99957998 -0.99931728 -0.99870324\n", + " -0.99665599 -0.97888657 -0.05365319 -0.06553749 -0.08417765 -0.1175659\n", + " -0.19410544 -0.51637928 -0.71661494 -0.71661494 -0.90871193 -0.90871193\n", + " -0.71720854 -0.64629919 -0.55357618 -0.43455016 -0.28757779 -0.11723007\n", + " -0.78293369 -0.71938388 -0.63073804 -0.50813028 -0.34464727 -0.14284199\n", + " -0.85084193 -0.79983697 -0.72276415 -0.60462283 -0.42711476 -0.18254722\n", + " -0.91515494 -0.88164179 -0.82613743 -0.72873282 -0.5521103 -0.25185684\n", + " -0.9670144 -0.95239316 -0.92593126 -0.87175367 -0.74209777 -0.39893833\n", + " -0.99629342 -0.99453874 -0.99117471 -0.98343711 -0.95881096 -0.79843817]\n", + "DEBUG:root:radec2pix: lat: [77.93541901 79.53990642 81.17639652 82.83971343 84.5247522 86.22632371\n", + " 87.93883494 89.6479978 77.93541901 77.81390272 77.48107187 76.95718255\n", + " 76.27047293 75.45239232 74.53398915 73.54392335 89.6479978 88.15433501\n", + " 86.45486555 84.75631331 83.07112985 81.40595581 79.76638457 78.15778269\n", + " 73.54392335 74.55657104 75.50172983 76.35064507 77.07169654 77.63217256\n", + " 78.00180643 78.15778269 78.63066146 80.61929653 82.650836 84.71585314\n", + " 86.80474047 88.90593385 77.91466044 77.62156704 77.02994397 76.1887385\n", + " 75.15547704 73.98639339 89.08782254 87.03029774 84.94699254 82.88191704\n", + " 80.84778676 78.85482091 73.9956629 75.19522506 76.26518392 77.14846305\n", + " 77.78520091 78.12246539 77.9408027 77.9408027 78.1630712 78.1630712\n", + " 78.60257643 78.28825427 77.65661779 76.76410296 75.67504453 74.45024854\n", + " 80.58418271 80.19408276 79.42435182 78.36269898 77.09829541 75.70590081\n", + " 82.60493805 82.10218621 81.14204779 79.86827274 78.40301429 76.83279998\n", + " 84.65101194 83.96303088 82.73111849 81.1974567 79.51499711 77.7695032\n", + " 86.69730834 85.65959593 84.04717305 82.22861822 80.34304005 78.44927716\n", + " 88.6217931 86.8566554 84.8442257 82.80989579 80.79300228 78.81115773]\n", + "DEBUG:root:radec2pix: fitpx: [[2135.5 4155.50000026]\n", + " [2135.5 3863.07142876]\n", + " [2135.5 3570.64285709]\n", + " [2135.5 3278.21428545]\n", + " [2135.5 2985.7857141 ]\n", + " [2135.49999999 2693.35714316]\n", + " [2135.50000001 2400.9285712 ]\n", + " [2135.49999993 2108.50000021]\n", + " [2135.5 4155.50000026]\n", + " [1843.07142855 4155.50000013]\n", + " [1550.64285715 4155.49999996]\n", + " [1258.2142856 4155.50000027]\n", + " [ 965.78571429 4155.49999999]\n", + " [ 673.357143 4155.4999998 ]\n", + " [ 380.92857155 4155.49999986]\n", + " [ 88.49999976 4155.50000025]\n", + " [2135.49999993 2108.50000021]\n", + " [1843.07142817 2108.50000006]\n", + " [1550.64285738 2108.49999998]\n", + " [1258.21428605 2108.49999998]\n", + " [ 965.78571448 2108.49999999]\n", + " [ 673.35714251 2108.50000001]\n", + " [ 380.92857138 2108.5 ]\n", + " [ 88.50000013 2108.5 ]\n", + " [ 88.49999976 4155.50000025]\n", + " [ 88.49999974 3863.0714288 ]\n", + " [ 88.49999989 3570.64285722]\n", + " [ 88.50000025 3278.21428557]\n", + " [ 88.50000013 2985.78571423]\n", + " [ 88.49999977 2693.35714293]\n", + " [ 88.49999999 2400.92857143]\n", + " [ 88.50000013 2108.5 ]\n", + " [2134.5 4028.00000018]\n", + " [2134.5 3669.59999979]\n", + " [2134.5 3311.20000021]\n", + " [2134.5 2952.80000004]\n", + " [2134.5 2594.39999994]\n", + " [2134.50000001 2235.99999988]\n", + " [2007.99999999 4154.50000011]\n", + " [1649.6 4154.5 ]\n", + " [1291.20000005 4154.49999987]\n", + " [ 932.80000005 4154.49999992]\n", + " [ 574.4 4154.5 ]\n", + " [ 216. 4154.5 ]\n", + " [2008.00000002 2109.49999999]\n", + " [1649.60000012 2109.49999999]\n", + " [1291.19999984 2109.50000001]\n", + " [ 932.79999968 2109.50000001]\n", + " [ 574.39999959 2109.50000001]\n", + " [ 215.99999972 2109.50000001]\n", + " [ 89.4999999 4028.0000001 ]\n", + " [ 89.50000007 3669.59999994]\n", + " [ 89.49999997 3311.20000002]\n", + " [ 89.50000023 2952.7999999 ]\n", + " [ 89.49999997 2594.40000001]\n", + " [ 89.4999998 2236.00000002]\n", + " [2134.5 4154.50000005]\n", + " [2134.5 4154.50000005]\n", + " [ 89.49999997 2109.5 ]\n", + " [ 89.49999997 2109.5 ]\n", + " [2008. 4027.99999997]\n", + " [1649.59999996 4028.00000014]\n", + " [1291.20000001 4027.99999998]\n", + " [ 932.79999987 4028.00000021]\n", + " [ 574.40000006 4027.99999993]\n", + " [ 215.9999998 4028.0000002 ]\n", + " [2008. 3669.59999996]\n", + " [1649.60000001 3669.59999998]\n", + " [1291.20000007 3669.59999987]\n", + " [ 932.7DEBUG:root:mm_to_pix: fitpx: [[0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]]\n", + "27224271 0.70857446]\n", + " [32.275486 31.41357429]\n", + " [27.88905745 31.41403761]\n", + " [23.5026289 31.41450094]\n", + " [1DEBUG:root:mm_to_pix: fitpx.shape: (96, 2)\n", + "9.11620036 31.41496427]\n", + " [14.72977181 31.41542759]\n", + " [10.34334326 31.41589092]\n", + " [ 5.95691471 31.41635424]\n", + " [ 1.57048617 31.41681757]\n", + " [32.27224271 0.70857446]\n", + " [27.88581416 0.70903778]\n", + " [23.49938562 0.70950111]\n", + " [19.11295707 0.70996444]\n", + " [14.72652852 0.71042776]\n", + " [10.34009998 0.71089109]\n", + " [ 5.95367142 0.71135442]\n", + " [ 1.56724288 0.71181774]\n", + " [ 1.57048617 31.41681757]\n", + " [ 1.57002284 27.03038902]\n", + " [ 1.56955951 22.64396047]\n", + " [ 1.56909619 18.25753194]\n", + " [ 1.56863286 13.87110338]\n", + " [ 1.56816953 9.48467484]\n", + " [ 1.56770621 5.09824629]\n", + " [ 1.56724288 0.71181774]\n", + " [32.26028399 29.50107588]\n", + " [32.25971613 24.12507591]\n", + " [32.25914828 18.74907594]\n", + " [32.25858043 13.37307597]\n", + " [32.25801258 7.997076 ]\n", + " [32.25744472 2.62107603]\n", + " [30.36298443 31.3987763 ]\n", + " [24.98698446 31.39934415]\n", + " [19.61098448 31.399912 ]\n", + " [14.23498451 31.40047985]\n", + " [ 8.85898454 31.40104771]\n", + " [ 3.48298457 31.40161556]\n", + " [30.35974431 0.72377647]\n", + " [24.98374433 0.72434432]\n", + " [19.60774436 0.72491217]\n", + " [14.23174439 0.72548003]\n", + " [ 8.85574442 0.72604788]\n", + " [ 3.47974445 0.72661573]\n", + " [ 1.58528416 29.504316 ]\n", + " [ 1.5847163 24.12831603]\n", + " [ 1.58414845 18.75231606]\n", + " [ 1.5835806 13.37631609]\n", + " [ 1.58301275 8.00031612]\n", + " [ 1.5824449 2.62431615]\n", + " [32.26048441 31.39857587]\n", + " [32.26048441 31.39857587]\n", + " [ 1.58224447 0.72681616]\n", + " [ 1.58224447 0.72681616]\n", + " [30.36278399 29.50127631]\n", + " [24.98678403 29.50184416]\n", + " [19.61078405 29.50241201]\n", + " [14.23478409 29.50297987]\n", + " [ 8.85878411 29.50354772]\n", + " [ 3.48278414 29.50411557]\n", + " [30.36221615 24.12527634]\n", + " [24.98621618 24.12584419]\n", + " [19.6102162 24.12641204]\n", + " [14.23421623 24.1269799 ]\n", + " [ 8.85821626 24.12754775]\n", + " [ 3.48221629 24.1281156 ]\n", + " [30.36164829 18.74927637]\n", + " [24.98564832 18.74984422]\n", + " [19.60964835 18.75041208]\n", + " [14.23364838 18.75097993]\n", + " [ 8.85764841 18.75154778]\n", + " [ 3.48164844 18.75211563]\n", + " [30.36108043 13.3732764 ]\n", + " [24.98508046 13.37384425]\n", + " [19.60908049 13.3744121 ]\n", + " [14.23308053 13.37497996]\n", + " [ 8.85708056 13.37554781]\n", + " [ 3.48108059 13.37611567]\n", + " [30.36051258 7.99727643]\n", + " [24.98451261 7.99784428]\n", + " [19.60851265 7.99841214]\n", + " [14.23251268 7.99897999]\n", + " [ 8.85651271 7.99954784]\n", + " [ 3.48051273 8.00011569]\n", + " [30.35994473 2.62127646]\n", + " [24.98394476 2.62184431]\n", + " [19.60794479 2.62241216]\n", + " [14.23194482 2.62298002]\n", + " [ 8.85594485 2.62354787]\n", + " [ 3.47994488 2.62411572]]\n", + "9999997 3669.60000004]\n", + " [ 574.39999998 3669.60000002]\n", + " [ 215.99999986 3669.60000012]\n", + " [2008. 3311.20000004]\n", + " [1649.59999995 3311.20000012]\n", + " [1291.19999997 3311.20000005]\n", + " [ 932.80000015 3311.19999984]\n", + " [ 574.40000003 3311.19999997]\n", + " [ 216.00000001 3311.2 ]\n", + " [2007.99999998 2952.80000014]\n", + " [1649.60000006 2952.7999999 ]\n", + " [1291.20000015 2952.79999984]\n", + " [ 932.80000014 2952.7999999 ]\n", + " [ 574.39999986 2952.80000008]\n", + " [ 215.99999973 2952.80000012]\n", + " [2007.99999998 2594.40000007]\n", + " [1649.60000022 2594.39999977]\n", + " [1291.20000005 2594.39999997]\n", + " [ 932.79999996 2594.40000002]\n", + " [ 574.39999995 2594.40000002]\n", + " [ 216.00000004 2594.39999999]\n", + " [2008.00000021 2235.99999975]\n", + " [1649.59999975 2236.00000009]\n", + " [1291.20000026 2235.99999995]\n", + " [ 932.79999972 2236.00000004]\n", + " [ 574.39999974 2236.00000003]\n", + " [ 216.00000028 2235.99999998]]\n", + "DEBUG:root:optics_fp: cphi: [-0.0051738 -0.00607178 -0.0073129 -0.00914033 -0.01209791 -0.01770316\n", + " -0.03238875 -0.17057046 -0.0051738 -0.14196195 -0.27109236 -0.38711253\n", + " -0.48729918 -0.57137557 -0.64065601 -0.69718731 -0.17057046 -0.97567733\n", + " -0.99347832 -0.99703634 -0.99831251 -0.99891078 -0.99923847 -0.99943725\n", + " -0.69718731 -0.74844189 -0.80231456 -0.85678989 -0.9085738 -0.95306497\n", + " -0.98492815 -0.99943725 -0.0060359 -0.00745674 -0.00967884 -0.01364603\n", + " -0.02274227 -0.06503966 -0.06534051 -0.22874689 -0.3749438 -0.49775222\n", + " -0.59656384 -0.67413914 -0.89537598 -0.99040776 -0.99671262 -0.99835535\n", + " -0.9990142 -0.99934296 -0.71895916 -0.78374506 -0.85059233 -0.91398049\n", + " -0.96549457 -0.99546704 -0.00564941 -0.00564941 -0.9994203 -0.9994203\n", + " -0.06950599 -0.24249594 -0.39519134 -0.52103162 -0.62020649 -0.69655704\n", + " -0.DEBUG:root:optics_fp: xyfp shape: (96, 2)\n", + "DEBUG:root:fitpix2pix: ccdpx: shape: (96, 2)\n", + "DEBUG:root:optics_fp: xyfp: [[ -0.24606 31.536148 ]\n", + " [ -0.24606 27.14971943]\n", + " [ -0.24606 22.76329086]\n", + " [ -0.24606 18.37686229]\n", + " [ -0.24606 13.99043371]\n", + " [ -0.24606 9.60400514]\n", + " [ -0.24606 5.21757658]\n", + " [ -0.24606 0.831148 ]\n", + " [ -0.24606 31.536148 ]\n", + " [ -4.63248857 31.536148 ]\n", + " [ -9.01891714 31.536148 ]\n", + " [-13.40534571 31.536148 ]\n", + " [-17.79177429 31.536148 ]\n", + " [-22.17820286 31.536148 ]\n", + " [-26.56463143 31.536148 ]\n", + " [-30.95106 31.536148 ]\n", + " [ -0.24606 0.831148 ]\n", + " [ -4.63248857 0.831148 ]\n", + " [ -9.01891714 0.831148 ]\n", + " [-13.40534571 0.831148 ]\n", + " [-17.79177429 0.831148 ]\n", + " [-22.17820285 0.831148 ]\n", + " [-26.56463143 0.831148 ]\n", + " [-30.95106 0.831148 ]\n", + " [-30.95106 31.536148 ]\n", + " [-30.95106 27.14971943]\n", + " [-30.95106 22.76329086]\n", + " [-30.95106 18.37686228]\n", + " [-30.95106 13.99043371]\n", + " [-30.95106 9.60400514]\n", + " [-30.95106 5.21757657]\n", + " [-30.95106 0.831148 ]\n", + " [ -0.26106 29.623648 ]\n", + " [ -0.26106 24.247648 ]\n", + " [ -0.26106 18.87164801]\n", + " [ -0.26106 13.495648 ]\n", + " [ -0.26106 8.119648 ]\n", + " [ -0.26106 2.743648 ]\n", + " [ -2.15856 31.521148 ]\n", + " [ -7.53456 31.521148 ]\n", + " [-12.91056 31.521148 ]\n", + " [-18.28656 31.521148 ]\n", + " [-23.66256 31.521148 ]\n", + " [-29.03856 31.521148 ]\n", + " [ -2.15856 0.846148 ]\n", + " [ -7.53456 0.846148 ]\n", + " [-12.91056 0.846148 ]\n", + " [-18.28655999 0.846148 ]\n", + " [-23.66256 0.846148 ]\n", + " [-29.03856 0.846148 ]\n", + " [-30.93606 29.623648 ]\n", + " [-30.93606 24.247648 ]\n", + " [-30.93606 18.871648 ]\n", + " [-30.93606 13.495648 ]\n", + " [-30.93606 8.119648 ]\n", + " [-30.93606 2.743648 ]\n", + " [ -0.26106 31.521148 ]\n", + " [ -0.26106 31.521148 ]\n", + " [-30.93606 0.846148 ]\n", + " [-30.93606 0.846148 ]\n", + " [ -2.15856 29.623648 ]\n", + " [ -7.53456 29.623648 ]\n", + " [-12.91056 29.623648 ]\n", + " [-18.28656 29.623648 ]\n", + " [-23.66256 29.623648 ]\n", + " [-29.03856 29.623648 ]\n", + " [ -2.15856 24.247648 ]\n", + " [ -7.53456 24.247648 ]\n", + " [-12.91056 24.247648 ]\n", + " [-18.28656 24.247648 ]\n", + " [-23.66256 24.247648 ]\n", + " [-29.03856 24.247648 ]\n", + " [ -2.15856 18.871648 ]\n", + " [ -7.53456 18.871648 ]\n", + " [-12.91056 18.871648 ]\n", + " [-18.28656 18.871648 ]\n", + " [-23.66256 18.871648 ]\n", + " [-29.03856 18.871648 ]\n", + " [ -2.15856 13.495648 ]\n", + " [ -7.53456 13.495648 ]\n", + " [-12.91056 13.495648 ]\n", + " [-18.28656 13.495648 ]\n", + " [-23.66256 13.495648 ]\n", + " [-29.03856 13.495648 ]\n", + " [ -2.15856 8.119648 ]\n", + " [ -7.53456 8.119648 ]\n", + " [-12.91056 8.119648 ]\n", + " [-18.28656 8.119648 ]\n", + " [-23.66256 8.119648 ]\n", + " [-29.03856 8.119648 ]\n", + " [ -2.15856 2.743648 ]\n", + " [ -7.53456 2.743648 ]\n", + " [-12.91056 2.743648 ]\n", + " [-18.28656 2.743648 ]\n", + " [-23.66256 2.743648 ]\n", + " [-29.03856 2.743648 ]]\n", + "DEBUG:root:optics_fp: sphi: [-0.69747355 -0.64202319 -0.57428814 -0.49231086 -0.39479224 -0.28187416\n", + " -0.15594205 -0.02195087 -0.69747355 -0.74781736 -0.80071206 -0.85427043\n", + " -0.90541695 -0.94984347 -0.98249431 -0.9987529 -0.02195087 -0.02541825\n", + " -0.03017857 -0.03712011 -0.04818532 -0.06858898 -0.11863781 -0.41353071\n", + " -0.9987529 -0.9983174 -0.99760636 -0.99632728 -0.99366642 -0.9866058\n", + " -0.9558309 -0.41353071 -0.67484345 -0.59889188 -0.50249541 -0.38295557\n", + " -0.24062567 -0.080988 -0.71886442 -0.7824768 -0.84816774 -0.91078081\n", + " -0.96243143 -0.99390485 -0.02383323 -0.02898045 -0.03694547 -0.05091008\n", + " -0.08171193 -0.2044042 -0.99855963 -0.99785011 -0.99645076 -0.99306508\n", + " -0.98098067 -0.85635999 -0.69746902 -0.69746902 -0.41742381 -0.41742381\n", + " -0.6968586 -0.76308411 -0.83279855 -0.90064763 -0.95775728 -0.99310478\n", + " -0.62210517 -0.69461272 -0.77599583 -0.86128022 -0.93873226 -0.98974551\n", + " -0.52542175 -0.60021731 -0.69109478 -0.79651192 -0.90419742 -0.98319709\n", + " -0.40310226 -0.47191923 -0.56346867 -0.68479813 -0.83377108 -0.9677645\n", + " -0.2547217 -0.30487255 -0.37769207 -0.48994442 -0.67029166 -0.91697776\n", + " -0.08601994 -0.10436806 -0.13256201 -0.18124971 -0.28404496 -0.60207682]\n", + "DEBUG:root:fitpix2pix: visCut: True\n", + "DEBUG:root:radec2pix: xyfp: [[ -0.167405 31.491388 ]\n", + " [ -0.167405 27.10495943]\n", + " [ -0.167405 22.71853086]\n", + " [ -0.167405 18.33210229]\n", + " [ -0.167405 13.94567372]\n", + " [ -0.167405 9.55924515]\n", + " [ -0.167405 5.17281657]\n", + " [ -0.167405 0.786388 ]\n", + " [ -0.167405 31.491388 ]\n", + " [ -4.55383357 31.491388 ]\n", + " [ -8.94026214 31.491388 ]\n", + " [-13.32669071 31.491388 ]\n", + " [-17.71311928 31.491388 ]\n", + " [-22.09954786 31.491388 ]\n", + " [-26.48597643 31.491388 ]\n", + " [-30.872405 31.491388 ]\n", + " [ -0.167405 0.786388 ]\n", + " [ -4.55383357 0.786388 ]\n", + " [ -8.94026214 0.786388 ]\n", + " [-13.32669071 0.786388 ]\n", + " [-17.71311929 0.786388 ]\n", + " [-22.09954786 0.786388 ]\n", + " [-26.48597643 0.786388 ]\n", + " [-30.872405 0.786388 ]\n", + " [-30.872405 31.491388 ]\n", + " [-30.872405 27.10495943]\n", + " [-30.872405 22.71853086]\n", + " [-30.872405 18.33210229]\n", + " [-30.872405 13.94567371]\n", + "DEBUG:root:radec2pix: curVec: [[-0.79212412 -0.51045099 -0.33463288]\n", + " [-0.78805421 -0.49995674 -0.35918493]\n", + " [-0.78339572 -0.48875764 -0.38393633]\n", + " [-0.778129 -0.47688543 -0.40877321]\n", + " [-0.77224235 -0.46437861 -0.43358304]\n", + " [-0.76573299 -0.45128038 -0.45825649]\n", + " [-0.75860752 -0.4376377 -0.48268818]\n", + " [-0.75088201 -0.4235011 -0.50677709]\n", + " [-0.79212412 -0.51045099 -0.33463288]\n", + " [-0.80813923 -0.49064174 -0.3258553 ]\n", + " [-0.82387731 -0.46997755 -0.31677639]\n", + " [-0.83923965 -0.44852577 -0.30741087]\n", + " [-0.85413403 -0.42636134 -0.29777687]\n", + " [-0.86847643 -0.40356424 -0.28789686]\n", + " [-0.88219164 -0.38021847 -0.27779818]\n", + " [-0.89521363 -0.35641176 -0.26751302]\n", + " [-0.75088201 -0.4235011 -0.50677709]\n", + " [-0.76734628 -0.40219895 -0.49941535]\n", + " [-0.78353224 -0.38013373 -0.49150339]\n", + " [-0.799339 -0.357378 -0.48305085]\n", + " [-0.81467516 -0.33400627 -0.47407192]\n", + " [-0.82945748 -0.31009697 -0.464586 ]\n", + " [-0.84360996 -0.28573443 -0.45461859]\n", + " [-0.85706399 -0.26100977 -0.44420177]\n", + " [-0.89521363 -0.35641176 -0.26751DEBUG:root:radec2pix: xyfp: [[ 0.173161 -31.45819714]\n", + " [ 0.17304708 -27.07176857]\n", + " [ 0.17293316 -22.68534 ]\n", + " [ 0.17281925 -18.29891143]\n", + " [ 0.17270533 -13.91248287]\n", + " [ 0.17259141 -9.52605429]\n", + " [ 0.17247749 -5.13962573]\n", + " [ 0.17236358 -0.75319715]\n", + " [ 0.173161 -31.45819714]\n", + " [ 4.55958957 -31.45808322]\n", + " [ 8.94601814 -31.45796931]\n", + " [ 13.33244671 -31.45785538]\n", + " [ 17.71887528 -31.45774147]\n", + " [ 22.10530385 -31.45762756]\n", + " [ 26.49173242 -31.45751363]\n", + " [ 30.87816099 -31.45739971]\n", + " [ 0.17236358 -0.75319715]\n", + " [ 4.55879215 -0.75308323]\n", + " [ 8.94522072 -0.75296932]\n", + " [ 13.33164929 -0.7528554 ]\n", + " [ 17.71807786 -0.75274148]\n", + " [ 22.10450643 -0.75262756]\n", + " [ 26.490935 -0.75251364]\n", + " [ 30.87736356 -0.75239973]\n", + " [ 30.87816099 -31.45739971]\n", + " [ 30.87804707 -27.07097114]\n", + " [ 30.87793315 -22.68454257]\n", + " [ 30.87781924 -18.29811401]\n", + " [ 30.87770532 -13.91168544]\n", + " [ 30.87759141 -9.52525687]\n", + " [ 30.87747749 -5.1388283 ]\n", + " [ 30.87736356 -0.75239973]\n", + " [ 0.18811133 -29.54569675]\n", + " [ 0.18797171 -24.16969676]\n", + " [ 0.1878321 -18.79369675]\n", + " [ 0.18769248 -13.41769676]\n", + " [ 0.18755286 -8.04169676]\n", + " [ 0.18741324 -2.66569676]\n", + " [ 2.08566061 -31.44314748]\n", + " [ 7.46166061 -31.44300785]\n", + " [ 12.83766061 -31.44286824]\n", + " [ 18.2136606 -31.44272862]\n", + " [ 23.5896606 -31.442589 ]\n", + " [ 28.9656606 -31.44244938]\n", + " [ 2.08486397 -0.76814748]\n", + " [ 7.46086396 -0.76800786]\n", + " [ 12.83686396 -0.76786825]\n", + " [ 18.21286396 -0.76772863]\n", + " [ 23.58886395 -0.76758901]\n", + " [ 28.96486395 -0.7674494 ]\n", + " [ 30.86311132 -29.54490011]\n", + " [ 30.86297171 -24.16890011]\n", + " [ 30.86283209 -18.79290011]\n", + " [ 30.86269247 -13.41690011]\n", + " [ 30.86255285 -8.04090011]\n", + " [ 30.86241323 -2.66490012]\n", + " [ 0.18816061 -31.44319675]\n", + " [ 0.18816061 -31.44319675]\n", + " [ 30.86236396 -0.76740012]\n", + " [ 30.86236396 -0.76740012]\n", + " [ 2.08561133 -29.54564748]\n", + " [ 7.46161133 -29.54550785]\n", + " [ 12.83761133 -29.54536824]\n", + " [ 18.21361133 -29.54522862]\n", + " [ 23.58961132 -29.545089 ]\n", + " [ 28.96561132 -29.54494938]\n", + " [ 2.08547171 -24.16964747]\n", + " [ 7.46147171 -24.16950786]\n", + " [ 12.83747171 -24.16936824]\n", + " [ 18.21347171 -24.16922862]\n", + " [ 23.58947171 -24.16908901]\n", + " [ 28.9654717 -24.16894939]\n", + " [ 2.0853321 -18.79364747]\n", + " [ 7.46133209 -18.79350785]\n", + " [ 12.83733209 -18.79336824]\n", + " [ 18.21333209 -18.79322862]\n", + " [ 23.58933209 -18.79308901]\n", + " [ 28.96533209 -18.79294939]\n", + " [ 2.08519248 -13.41764748]\n", + " [ 7.46119248 -13.41750786]\n", + " [ 12.83719247 -13.41736824]\n", + " [ 18.21319248 -13.41722863]\n", + " [ 23.58919247 -13.41708901]\n", + " [ 28.96519247 -13.41694939]\n", + " [ 2.08505286 -8.04164748]\n", + " [ 7.46105286 -8.04150786]\n", + " [ 12.83705286 -8.04136825]\n", + " [ 18.21305286 -8.04122863]\n", + " [ 23.58905286 -8.04108901]\n", + " [ 28.96505285 -8.04094939]\n", + " [ 2.08491324 -2.66564748]\n", + " [ 7.46091324 -2.66550786]\n", + " [ 12.83691324 -2.66536825]\n", + " [ 18.21291324 -2.66522863]\n", + " [ 23.58891323 -2.66508901]\n", + " [ 28.96491324 -2.66494939]]\n", + "DEBUG:root:optics_fp: xyfp shape: (96, 2)\n", + "08478692 -0.29175445 -0.46477551 -0.59730991 -0.69424327 -0.76406532\n", + " -0.10856248 -0.36427233 -0.55834321 -0.69058088 -0.77756 -0.83512289\n", + " -0.15052868 -0.47847897 -0.68390701 -0.79923279 -0.86476566 -0.90397627\n", + " -0.24345642 -0.66792691 -0.83927119 -0.9096075 -0.9430429 -0.96110205\n", + " -0.57961227 -0.93047808 -0.97475473 -0.98719494 -0.99229449 -0.99486127]\n", + "302]\n", + " [-0.89217411 -0.34416107 -0.29253806]\n", + " [-0.88835513 -0.33138369 -0.31782071]\n", + " [-0.88373291 -0.31811698 -0.34324588]\n", + " [-0.8782927 -0.30440062 -0.36870339]\n", + " [-0.87202931 -0.29027781 -0.39408587]\n", + " [-0.86494778 -0.27579647 -0.41928707]\n", + " [-0.85706399 -0.26100977 -0.44420177]\n", + " [-0.79047585 -0.50589715 -0.34527671]\n", + " [-0.78509546 -0.49255673 -0.37551696]\n", + " [-0.77881049 -0.47818832 -0.40594353]\n", + " [-0.77159602 -0.46286016 -0.43634854]\n", + " [-0.76344699 -0.44665167 -0.4665308 ]\n", + " [-0.75437947 -0.42965081 -0.4962981 ]\n", + " [-0.79912166 -0.501888 -0.33092749]\n", + " [-0.81857695 -0.47702572 -0.31996602]\n", + " [-0.83751742 -0.45094519 -0.30856605]\n", + " [-0.85577048 -0.42378143 -0.29675948]\n", + " [-0.87318148 -0.3956816 -0.28458774]\n", + " [-0.88961579 -0.36680187 -0.27210317]\n", + " [-0.75811536 -0.41436102 -0.50355342]\n", + " [-0.77812034 -0.38773135 -0.49415902]\n", + " [-0.79760592 -0.36002734 -0.48394743]\n", + " [-0.81639992 -0.33138533 -0.47294284]\n", + " [-0.83434898 -0.30194993 -0.46118111]\n", + " [-0.85131622 -0.27187923 -0.4487119 ]\n", + " [-0.89393887 -0.35121992 -0.2784203 ]\n", + " [-0.88969249 -0.33584747 -0.3092794 ]\n", + " [-0.8842508 -0.31972065 -0.34041039]\n", + " [-0.87758289 -0.30291153 -0.37160849]\n", + " [-0.86967929 -0.28549977 -0.40267581]\n", + " [-0.86055378 -0.26757579 -0.43341711]\n", + " [-0.7921663 -0.51035011 -0.33468689]\n", + " [-0.7921663 -0.51035011 -0.33468689]\n", + " [-0.85704754 -0.26114585 -0.44415352]\n", + " [-0.85704754 -0.26114585 -0.44415352]\n", + " [-0.79746575 -0.49738235 -0.34155405]\n", + " [-0.81701619 -0.47237177 -0.3306803 ]\n", + " [-0.8360461 -0.44614728 -0.31934232]\n", + " [-0.85438188 -0.41884577 -0.30757085]\n", + " [-0.87186851 -0.39061492 -0.29540698]\n", + " [-0.88837112 -0.36161103 -0.28290319]\n", + " [-0.79216821 -0.48389925 -0.37190193]\n", + " [-0.81194642 -0.45849286 -0.36128564]\n", + " [-0.83119078 -0.43189065 -0.35013192]\n", + " [-0.84972627 -0.40423215 -0.33846954]\n", + " [-0.86739755 -0.37566495 -0.3263393 ]\n", + " [-0.88406908 -0.34634511 -0.31379442]\n", + " [-0.78594244 -0.46940063 -0.40243948]\n", + " [-0.80588391 -0.4436397 -0.39209048]\n", + " [-0.82528382 -0.41670667 -0.38113274]\n", + " [-0.84396725 -0.38874095 -0.36959404]\n", + " [-0.86177901 -0.35988876 -0.35751506]\n", + " [-0.87858287 -0.33030576 -0.34494962]\n", + " [-0.77876252 -0.45395655 -0.43295772]\n", + " [-0.79880107 -0.42788506 -0.42288441]\n", + " [-0.81829688 -0.4006683 -0.41213484]\n", + " [-0.83707583 -0.37244432 -0.40073593]\n", + " [-0.85498313 -0.34335789 -0.38872768]\n", + " [-0.87188189 -0.31356475 -0.37616367]\n", + " [-0.77062304 -0.43764699 -0.46325506]\n", + " [-0.7906921 -0.41130889 -0.45346554]\n", + " [-0.81022392 -0.38385437 -0.44293681]\n", + " [-0.82904536 -0.35542014 -0.43169471]\n", + " [-0.84700216 -0.32615024 -0.41977775]\n", + " [-0.86395708 -0.29620113 -0.40723833]\n", + " [-0.76154011 -0.42055993 -0.49313893]\n", + " [-0.78157342 -0.39399865 -0.48364041]\n", + " [-0.80108153 -0.36635168 -0.4733443 ]\n", + " [-0.81989208 -0.33775526 -0.4622752 ]\n", + " [-0.83785147 -0.30835367 -0.45046967]\n", + " [-0.85482263 -0.27830456 -0.43797814]]\n", + "DEBUG:root:make_az_asym: xyp: [[32.275486 31.41357429]\n", + " [32.27502267 27.02714574]\n", + " [32.27455935 22.64071719]\n", + " [32.27409601 18.25428864]\n", + " [32.27363269 13.8678601 ]\n", + " [32.27316936 9.48143155]\n", + " [32.27270604 5.095003 ]\n", + " [32.27224271 0.70857446]\n", + " [32.275486 31.41357429]\n", + " [27.88905745 31.41403761]\n", + " [23.5026289 31.41450094]\n", + " [19.11620036 31.41496427]\n", + " [14.72977181 31.41542759]\n", + " [10.34334326 31.41589092]\n", + " [ 5.95691471 31.41635424]\n", + " [ 1.57048617 31.41681757]\n", + " [32.27224271 0.70857446]\n", + " [27.88581416 0.70903778]\n", + " [23.49938562 0.70950111]\n", + " [19.11295707 0.70996444]\n", + " [14.72652852 0.71042776]\n", + " [10.34009998 0.71089109]\n", + " [ 5.95367142 0.71135442]\n", + " [ 1.56724288 0.71181774]\n", + " [ 1.57048617 31.41681757]\n", + " [ 1.57002284 27.03038902]\n", + " [ 1.56955951 22.64396047]\n", + " [ 1.56909619 18.25753194]\n", + " [ 1.56863286 13.87110338]\n", + " [ 1.56816953 9.48467484]\n", + " [ 1.56770621 5.09824629]\n", + " [ 1.56724288 0.71181774]\n", + " [32.26028399 29.50107588]\n", + " [32.25971613 24.12507591]\n", + " [32.25914828 18.74907594]\n", + " [32.25858043 13.37307597]\n", + " [32.2DEBUG:root:radec2pix: curVec: [[-3.67501305e-02 6.43455597e-01 -7.64600760e-01]\n", + " [-5.45526282e-02 6.27336432e-01 -7.76835254e-01]\n", + " [-7.25710077e-02 6.10331485e-01 -7.88814888e-01]\n", + " [-9.07368586e-02 5.92494652e-01 -8.00447943e-01]\n", + " [-1.08981333e-01 5.73884044e-01 -8.11652741e-01]\n", + " [-1.27234963e-01 5.54562204e-01 -8.22357602e-01]\n", + " [-1.45427697e-01 5.34596525e-01 -8.32500655e-01]\n", + " [-1.63489177e-01 5.14059575e-01 -8.42029716e-01]\n", + " [-3.67501305e-02 6.43455597e-01 -7.64600760e-01]\n", + " [-1.48661112e-02 6.31764022e-01 -7.75018205e-01]\n", + " [ 7.40906112e-03 6.19249418e-01 -7.85159388e-01]\n", + " [ 2.99887420e-02 6.05948139e-01 -7.94938695e-01]\n", + " [ 5.27859080e-02 5.91900622e-01 -8.04280611e-01]\n", + " [ 7.57129033e-02 5.77151547e-01 -8.13119701e-01]\n", + " [ 9.86813263e-02 5.61750274e-01 -8.21400405e-01]\n", + " [ 1.21602195e-01 5.45751252e-01 -8.29076882e-01]\n", + " [-1.63489177e-01 5.14059575e-01 -8.42029716e-01]\n", + " [-1.41963494e-01 5.00805146e-01 -8.53838727e-01]\n", + " [-1.19885154e-01 4.86874150e-01 -8.65205820e-01]\n", + " DEBUG:root:optics_fp: rtanth: [31.57034978 27.18406789 22.79784246 18.41171382 14.02577275 9.64027533\n", + " 5.25633205 0.89702627 31.57034978 31.90657516 32.83068082 34.29517719\n", + " 36.2346004 38.57738799 41.25487818 44.20629586 0.89702627 4.70608217\n", + " 9.05379887 13.42672148 17.80628925 22.18856766 26.57221564 30.95665138\n", + " 44.20629586 41.18838618 38.43502607 36.00695508 33.97398873 32.41056182\n", + " 31.38691822 30.95665138 29.65803336 24.28227528 18.90665475 13.53133577\n", + " 8.15691443 2.78858575 31.62774376 32.44001712 34.0910252 36.46702674\n", + " 39.4372011 42.87825061 2.32483604 7.57927428 12.93401278 18.30122199\n", + " 23.67242106 29.04539658 42.85058957 39.32178756 36.24963004 33.75901556\n", + " 31.98608036 31.05398999 31.55546766 31.55546766 30.94207994 30.94207994\n", + " 29.73492188 30.59748544 32.34268701 34.83813202 37.93605456 41.50175634\n", + " 24.3761262 25.42117355 27.49689714 30.39285101 33.89947174 37.84740055\n", + " 19.02703944 20.34867971 22.88912523 26.29749216 30.28212156 34.64474606\n", + " 13.69903951 15.48238DEBUG:root:optics_fp: xyfp: [[32.275486 31.41357429]\n", + " [32.27502267 27.02714574]\n", + " [32.27455935 22.64071719]\n", + " [32.27409601 18.25428864]\n", + " [32.27363269 13.8678601 ]\n", + " [32.27316936 9.48143155]\n", + " [32.27270604 5.095003 ]\n", + " [32.27224271 0.70857446]\n", + " [32.275486 31.41357429]\n", + " [27.88905745 31.41403761]\n", + " [23.5026289 31.41450094]\n", + " [19.11620036 31.41496427]\n", + " [14.72977181 31.41542759]\n", + " [10.34334326 31.41589092]\n", + " [ 5.95691471 31.41635424]\n", + " [ 1.57048617 31.41681757]\n", + " [32.27224271 0.70857446]\n", + " [27.88581416 0.70903778]\n", + " [23.49938562 0.70950111]\n", + " [19.11295707 0.70996444]\n", + " [14.72652852 0.71042776]\n", + " [10.34009998 0.71089109]\n", + " [ 5.95367142 0.71135442]\n", + " [ 1.56724288 0.71181774]\n", + " [ 1.57048617 31.41681757]\n", + " [ 1.57002284 27.03038902]\n", + " [ 1.56955951 22.64396047]\n", + " [ 1.56909619 18.25753194]\n", + " [ 1.56863286 13.87110338]\n", + " [ 1.56816953 9.48467484]\n", + " [ 1.56770621 5.09824629]\n", + " [ 1.56724288 0.71181774]\n", + " [32.26028399 29.50107588]\n", + " [32.25971613 24.12507591]\n", + " [32.25914828 18.74907594]\n", + " [32.25858043 13.37307597]\n", + "[-9.73363954e-02 4.72300444e-01 -8.76046755e-01]\n", + " [-7.44003269e-02 4.57122479e-01 -8.86286427e-01]\n", + " [-5.11623986e-02 4.41384406e-01 -8.95858368e-01]\n", + " [-2.77111908e-02 4.25136829e-01 -9.04704795e-01]\n", + " [-4.13830139e-03 4.08436995e-01 -9.12777134e-01]\n", + " [ 1.21602195e-01 5.45751252e-01 -8.29076882e-01]\n", + " [ 1.04570026e-01 5.28197410e-01 -8.42658060e-01]\n", + " [ 8.71172242e-02 5.09862600e-01 -8.55833347e-01]\n", + " [ 6.93085972e-02 4.90797271e-01 -8.68512727e-01]\n", + " [ 5.12098428e-02 4.71056803e-01 -8.80615149e-01]\n", + " [ 3.28886321e-02 4.50702866e-01 -8.92067971e-01]\n", + " [ 1.44151120e-02 4.29804261e-01 -9.02807013e-01]\n", + " [-4.13830139e-03 4.08436995e-01 -9.12777134e-01]\n", + " [-4.44070481e-02 6.36500827e-01 -7.69996566e-01]\n", + " [-6.63795316e-02 6.16141807e-01 -7.84833123e-01]\n", + " [-8.86084900e-02 5.94505427e-01 -7.99194490e-01]\n", + " [-1.10967372e-01 5.71696921e-01 -8.12926117e-01]\n", + " [-1.33328293e-01 5.47831476e-01 -8.25896023e-01]\n", + " [-1.55562138e-01 5.23035304e-01 -8.37994327e-01]\n", + " [-2.73226129e-02 6.38407425e-0DEBUG:root:make_az_asym: xyp: [[ -0.24606 31.536148 ]\n", + " [ -0.24606 27.14971943]\n", + " [ -0.24606 22.76329086]\n", + " [ -0.24606 18.37686229]\n", + " [ -0.24606 13.99043371]\n", + " [ -0.24606 9.60400514]\n", + " [ -0.24606 5.21757658]\n", + " [ -0.24606 0.831148 ]\n", + " [ -0.24606 31.536148 ]\n", + " [ -4.63248857 31.536148 ]\n", + " [ -9.01891714 31.536148 ]\n", + " [-13.40534571 31.536148 ]\n", + " [-17.79177429 31.536148 ]\n", + " [-22.17820286 31.536148 ]\n", + " [-26.56463143 31.536148 ]\n", + " [-30.95106 31.536148 ]\n", + " [ -0.24606 0.831148 ]\n", + " [ -4.63248857 0.831148 ]\n", + " [ -9.01891714 0.831148 ]\n", + " [-13.40534571 0.831148 ]\n", + " [-17.79177429 0.831148 ]\n", + " [-22.17820285 0.831148 ]\n", + " [-26.56463143 0.831148 ]\n", + " [-30.95106 0.831148 ]\n", + " [-30.95106 31.536148 ]\n", + " [-30.95106 27.14971943]\n", + " [-30.95106 22.76329086]\n", + " [-30.95106 18.37686228]\n", + " [-30.95106 13.99043371]\n", + " [-30.95106 9.60400514]\n", + " [-30.95106 5.21757657]\n", + " [-30.95106 0.831148 ]\n", + " [ -0.26106 29.623648 ]\n", + " [ -0.26106 1 -7.69213517e-01]\n", + " [-2.27311429e-04 6.23519294e-01 -7.81807929e-01]\n", + " [ 2.73695818e-02 6.07430672e-01 -7.93901055e-01]\n", + " [ 5.53080280e-02 5.90214315e-01 -8.05349666e-01]\n", + " [ 8.34266416e-02 5.71952526e-01 -8.16033274e-01]\n", + " [ 1.11562416e-01 5.52738277e-01 -8.25853634e-01]\n", + " [-1.54115434e-01 5.08437201e-01 -8.47195400e-01]\n", + " [-1.27350887e-01 4.91734233e-01 -8.61382143e-01]\n", + " [-9.98380439e-02 4.74048092e-01 -8.74820422e-01]\n", + " [-7.17294618e-02 4.55447603e-01 -8.87368224e-01]\n", + " [-4.31825483e-02 4.36014129e-01 -8.98903191e-01]\n", + " [-1.43616737e-02 4.15843603e-01 -9.09322737e-01]\n", + " [ 1.14153479e-01 5.38252701e-01 -8.35016774e-01]\n", + " [ 9.29870456e-02 5.16207920e-01 -8.51400489e-01]\n", + " [ 7.12533111e-02 4.93039650e-01 -8.67084119e-01]\n", + " [ 4.90727939e-02 4.68847722e-01 -8.81914777e-01]\n", + " [ 2.65701380e-02 4.43745764e-01 -8.95758742e-01]\n", + " [ 3.87546421e-03 4.17863454e-01 -9.08501576e-01]\n", + " [-3.67364920e-02 6.43363498e-01 -7.64678913e-01]\n", + " [-3.67364920e-02 6.43363498e-01 -7.64678913e-01]\n", + " [-4.1555150416 18.69618965 22.7418897 27.2514649 32.02957826\n", + " 8.4321936 11.09695565 15.26386952 20.01578758 25.02160156 30.1551337\n", + " 3.51323872 8.02392562 13.19949508 18.48980017 23.81851176 29.16458548]\n", + "5801258 7.997076 ]\n", + " [32.25744472 2.62107603]\n", + " [30.36298443 31.3987763 ]\n", + " [24.98698446 31.39934415]\n", + " [19.61098448 31.399912 ]\n", + " [14.23498451 31.40047985]\n", + " [ 8.85898454 31.40104771]\n", + " [ 3.48298457 31.40161556]\n", + " [30.35974431 0.72377647]\n", + " [24.98374433 0.72434432]\n", + " [19.60774436 0.72491217]\n", + " [14.23174439 0.72548003]\n", + " [ 8.85574442 0.72604788]\n", + " [ 3.47974445 0.72661573]\n", + " [ 1.58528416 29.504316 ]\n", + " [ 1.5847163 24.12831603]\n", + " [ 1.58414845 18.75231606]\n", + " [ 1.5835806 13.37631609]\n", + " [ 1.58301275 8.00031612]\n", + " [ 1.5824449 2.62431615]\n", + " [32.26048441 31.39857587]\n", + " [32.26048441 31.39857587]\n", + " [ 1.58224447 0.72681616]\n", + " [ 1.58224447 0.72681616]\n", + " [30.36278399 29.50127631]\n", + " [24.98678403 29.50184416]\n", + " [19.61078405 29.50241201]\n", + " [14.23478409 29.50297987]\n", + " [ 8.85878411 29.50354772]\n", + " [ 3.48278414 29.50411557 [32.25801258 7.997076 ]\n", + " [32.25744472 2.62107603]\n", + " [30.36298443 31.3987763 ]\n", + " [24.98698446 31.39934415]\n", + " [19.61098448 31.399912 ]\n", + " [14.23498451 31.40047985]\n", + " [ 8.85898454 31.40104771]\n", + " [ 3.48298457 31.40161556]\n", + " [30.35974431 0.72377647]\n", + " [24.98374433 0.72434432]\n", + " [19.60774436 0.72491217]\n", + " [14.23174439 0.72548003]\n", + " [ 8.85574442 0.72604788]\n", + " [ 3.47974445 0.72661573]\n", + " [ 1.58528416 29.504316 ]\n", + " [ 1.5847163 24.12831603]\n", + " [ 1.58414845 18.75231606]\n", + " [ 1.5835806 13.37631609]\n", + " [ 1.58301275 8.00031612]\n", + " [ 1.5824449 2.62431615]\n", + " [32.26048441 31.39857587]\n", + " [32.26048441 31.39857587]\n", + " [ 1.58224447 0.72681616]\n", + " [ 1.58224447 0.72681616]\n", + " [30.36278399 29.50127631]\n", + " [24.98678403 29.50184416]\n", + " [19.61078405 29.50241201]\n", + " [14.23478409 29.50297987]\n", + " [ 8.85878411 29.50354772]\n", + " [ 3.48278414 29.50411557]\n", + " [30.36221615 24.12527634]\n", + " [24.98621618 24.12584419]\n", + " [19.6102162 24.12641204]\n", + " [14.23421623 24.1269799 ]\n", + " [ 8.85821626 24.12754775]\n", + " [ 3.48221629 24.1281156 ]\n", + " [30.36164829 18.74927637]\n", + " [24.98564832 18.74984422]\n", + " [19.60964835 18.75041208]\n", + " [14.23364838 18.75097993]\n", + " [ 8.85764841 18.75154778]\n", + " [ 3.48164844 18.75211563]\n", + " [30.36108043 13.3732764 ]\n", + " [24.98508046 13.37384425]\n", + " [19.60908049 13.3744121 ]\n", + " [14.23308053 13.37497996]\n", + " [ 8.85708056 13.37554781]\n", + " [ 3.48108059 13.37611567]\n", + " [30.36051258 7.99727643]\n", + " [24.98451261 7.99784428]\n", + " [19.60851265 7.99841214]\n", + " [14.23251268 7.99897999]\n", + " [ 8.85651271 7.99954784]\n", + " [ 3.48051273 8.00011569]\n", + " [30.35994473 2.62127646]\n", + " [24.98394476 2.62184431]\n", + " [19.60794479 2.62241216]\n", + " [14.23194482 2.62298002]\n", + " [ 8.85594485 2.62354787]\n", + " [ 3.47994488 2.62411572]]\n", + "DEBUG:root:radec2pix: curVec Shape: (96, 3)\n", + "]\n", + " [30.36221615 24.12527634]\n", + " [24.98621618 24.12584419]\n", + " [19.6102162 24.12641204]\n", + " [14.23421623 24.1269799 ]\n", + " [ 8.85821626 24.12754775]\n", + " [ 3.48221629 24.1281156 ]\n", + " [30.36164829 18.74927637]\n", + " [24.98564832 18.74984422]\n", + " [19.60964835 18.75041208]\n", + " [14.23364838 18.75097993]\n", + " [ 8.85764841 18.75154778]\n", + " [ 3.48164844 18.75211563]\n", + " [30.3610 24.247648 ]\n", + " [ -0.26106 18.87164801]\n", + " [ -0.26106 13.495648 ]\n", + " [ -0.26106 8.119648 ]\n", + " [ -0.26106 2.743648 ]\n", + " [ -2.15856 31.521148 ]\n", + " [ -7.53456 31.521148 ]\n", + " [-12.91056 31.521148 ]\n", + " [-18.28656 31.521148 ]\n", + " [-23.66256 31.521148 ]\n", + " [-29.03856 31.521148 ]\n", + " [ -2.15856 0.846148 ]\n", + " [ -7.53456 0.846148 ]\n", + " [-12.91056 0.846148 ]\n", + " [-18.28655999 0.846148 ]\n", + " [-23.66256 0.846148 ]\n", + " [-29.03856 0.846148 ]\n", + " [-30.93606 29.623648 ]\n", + " [-30.93606 24.247648 ]\n", + " [-30.93606 18.871648 ]\n", + " [-30.93606 13.495648 ]\n", + " [-30.93606 8.119648 ]\n", + " [-30.93606 2.743648 ]\n", + " [ -0.26106 31.521148 ]\n", + " [ -0.26106 31.521148 ]\n", + " [-30.93606 0.846148 ]\n", + " [-30.93606 0.846148 ]\n", + " [ -2.15856 29.623648 ]\n", + " [ -7.53456 29.623648 ]\n", + " [-12.91056 29.623648 ]\n", + " [-18.28656 29.623648 ]\n", + " [-23.66256 29.623648 ]\n", + " [-29.03856 29.623648 ]\n", + " [ -2.15856 24.247648 ]\n", + " [ -7.53456 24.247648 9e-03 4.08568578e-01 -9.12718165e-01]\n", + " [-4.15551509e-03 4.08568578e-01 -9.12718165e-01]\n", + " [-3.49856476e-02 6.31495740e-01 -7.74589656e-01]\n", + " [-7.85872063e-03 6.16476064e-01 -7.87334429e-01]\n", + " [ 1.97852431e-02 6.00266678e-01 -7.99555163e-01]\n", + " [ 4.77864200e-02 5.82939921e-01 -8.11108813e-01]\n", + " [ 7.59833892e-02 5.64577613e-01 -8.21875078e-01]\n", + " [ 1.04212778e-01 5.45272475e-01 -8.31755748e-01]\n", + " [-5.69498742e-02 6.11002515e-01 -7.89577506e-01]\n", + " [-2.97703959e-02 5.95625196e-01 -8.02710626e-01]\n", + " [-2.02993586e-03 5.79090821e-01 -8.15260511e-01]\n", + " [ 2.61125553e-02 5.61470158e-01 -8.27084878e-01]\n", + " [ 5.44956880e-02 5.42843663e-01 -8.38063826e-01]\n", + " [ 8.29550483e-02 5.23303569e-01 -8.48098953e-01]\n", + " [-7.91900485e-02 5.89238732e-01 -8.04068811e-01]\n", + " [-5.20133795e-02 5.73525101e-01 -8.17535056e-01]\n", + " [-2.42317203e-02 5.56689682e-01 -8.30367040e-01]\n", + " [ 3.99722528e-03 5.38801675e-01 -8.42423158e-01]\n", + " [ 3.25124035e-02 5.19940557e-01 -8.53583482e-01]\n", + " [ 6.11485540e-02 5.00198579e-01 -8.63748943e-01]\n", + " [-1.01579694e-01 5.66309182e-01 -8.17909210e-01]\n", + " [-7.44615415e-02 5.50278887e-01 -8.31654150e-01]\n", + " [-4.66946920e-02 5.33164595e-01 -8.44721919e-01]\n", + " [-1.84353121e-02 5.15034456e-01 -8.56971206e-01]\n", + " [ 1.01562674e-02 4.95967665e-01 -8.68281593e-01]\n", + " [ 3.89143694e-02 4.76057082e-01 -8.78552973e-01]\n", + " [-1.23990740e-01 5.42328617e-01 -8.30966887e-01]\n", + " [-9.69863968e-02 5.26000045e-01 -8.44936442e-01]\n", + " [-6.92903447e-02 5.08628088e-01 -8.58193636e-01]\n", + " [-4.10570994e-02 4.90280639e-01 -8.70597042e-01]\n", + " [-1.24458959e-02 4.71037388e-01 -8.82025441e-01]\n", + " [ 1.63777481e-02 4.50992310e-01 -8.92377558e-01]\n", + " [-1.46293640e-01 5.17423119e-01 -8.43131951e-01]\n", + " [-1.19457212e-01 5.00814490e-01 -8.57271731e-01]\n", + " [-9.18870571e-02 4.83206347e-01 -8.70671233e-01]\n", + " [-6.37361782e-02 4.64667147e-01 -8.83188622e-01]\n", + " [-3.51624731e-02 4.45277735e-01 -8.94701816e-01]\n", + " [-6.33070307e-03 4.25133513e-01 -9.05108512e-01]]\n", + " [-30.872405 9.55924514]\n", + " [-30.872405 5.17281657]\n", + " [-30.872405 0.786388 ]\n", + " [ -0.182405 29.578888 ]\n", + " [ -0.182405 24.202888 ]\n", + " [ -0.182405 18.826888 ]\n", + " [ -0.182405 13.450888 ]\n", + " [ -0.182405 8.074888 ]\n", + " [ -0.182405 2.698888 ]\n", + " [ -2.079905 31.476388 ]\n", + " [ -7.455905 31.476388 ]\n", + " [-12.831905 31.476388 ]\n", + " [-18.207905 31.476388 ]\n", + " [-23.583905 31.476388 ]\n", + " [-28.959905 31.476388 ]\n", + " [ -2.079905 0.801388 ]\n", + " [ -7.455905 0.801388 ]\n", + " [-12.831905 0.801388 ]\n", + " [-18.207905 0.801388 ]\n", + " [-23.583905 0.801388 ]\n", + " [-28.959905 0.801388 ]\n", + " [-30.857405 29.578888 ]\n", + " [-30.857405 24.202888 ]\n", + " [-30.857405 18.826888 ]\n", + " [-30.857405 13.450888 ]\n", + " [-30.857405 8.074888 ]\n", + " [-30.857405 2.698888 ]\n", + " [ -0.182405 31.476388 ]\n", + " [ -0.182405 31.476388 ]\n", + " [-30.857405 0.801388 ]\n", + " [-30.857405 0.801388 ]\n", + " [ -2.079905 29.578888 ]\n", + " [ -7.455905 29.578888 ]\n", + " [-12.831905 29.578888 ]\n", + " [-18.207905 29.578888 ]\n", + " [-23.583905 29.578888 ]\n", + " [-28.959905 29.578888 ]\n", + " [ -2.079905 24.202888 ]\n", + " [ -7.455905 24.202888 ]\n", + " [-12.831905 24.202888 ]\n", + " [-18.207905 24.202888 ]\n", + " [-23.583905 24.202888 ]\n", + " [-28.959905 24.202888 ]\n", + " [ -2.079905 18.826888 ]\n", + " [ -7.455905 18.826888 ]\n", + " [-12.831905 18.826888 ]\n", + " [-18.207905 18.826888 ]\n", + " [-23.583905 18.826888 ]\n", + " [-28.959905 18.826888 ]\n", + " [ -2.079905 13.450888 ]\n", + " [ -7.455905 13.450888 ]\n", + " [-12.831905 13.450888 ]\n", + " [-18.207905 13.450888 ]\n", + " [-23.583905 13.450888 ]\n", + " [-28.959905 13.450888 ]\n", + " [ -2.079905 8.074888 ]\n", + " [ -7.455905 8.074888 ]\n", + " [-12.831905 8.074888 ]\n", + " [-18.20790499 8.074888 ]\n", + " [-23.583905 8.074888 ]\n", + " [-28.959905 8.074888 ]\n", + " [ -2.079905 2.698888 ]\n", + " [ -7.455905 2.698888 ]\n", + " [-12.831905 2.698888 ]\n", + " [-18.207905 2.698888 ]\n", + " [-23.583905 2.698888 ]\n", + " [-28.959905 2.698888 ]]\n", + "DEBUG:root:radec2pix: ccdpx: [[-4.45000000e+01 -4.99999973e-01]\n", + " [-4.45000000e+01 2.91928572e+02]\n", + " [-4.45000000e+01 5.84357143e]\n", + " [-12.91056 24.247648 ]\n", + " [-18.28656 24.247648 ]\n", + " [-23.66256 24.247648 ]\n", + " [-29.03856 24.247648 ]\n", + " [ -2.15856 18.871648 ]\n", + " [ -7.53456 18.871648 ]\n", + " [-12.91056 18.871648 ]\n", + " [-18.28656 18.871648 ]\n", + " [-23.66256 18.871648 ]\n", + " [-29.03856 18.871648 ]\n", + " [ -2.15856 13.495648 ]\n", + " [ -7.53456 13.495648 ]\n", + " [-12.91056 13.495648 ]\n", + " [-18.28656 13.495648 ]\n", + " [-23.66256 13.495648 ]\n", + " [-29.03856 13.495648 ]\n", + " [ -2.15856 8.119648 ]\n", + " [ -7.53456 8.119648 ]\n", + " [-12.91056 8.119648 ]\n", + " [-18.28656 8.119648 ]\n", + " [-23.66256 8.119648 ]\n", + " [-29.03856 8.119648 ]\n", + " [ -2.15856 2.743648 ]\n", + " [ -7.53456 2.743648 ]\n", + " [-12.91056 2.743648 ]\n", + " [-18.28656 2.743648 ]\n", + " [-23.66256 2.743648 ]\n", + " [-29.03856 2.743648 ]]\n", + "+02]\n", + " [-4.45000000e+01 8.76785714e+02]\n", + " [-4.45000000e+01 1.16921429e+03]\n", + " [-4.45000000e+01 1.46164286e+03]\n", + " [-4.45000000e+01 1.75407143e+03]\n", + " [-4.45000000e+01 2.04650000e+03]\n", + " [-4.45000000e+01 -4.99999973e-01]\n", + " [ 2.47928571e+02 -4.99999766e-01]\n", + " [ 5.40357143e+02 -5.00000023e-01]\n", + " [ 8.32785714e+02 -4.99999798e-01]\n", + " [ 1.12521429e+03 -5.00000229e-01]\n", + " [ 1.41764286e+03 -5.00000231e-01]\n", + " [ 1.71007143e+03 -4.99999870e-01]\n", + " [ 2.00250000e+03 -4.99999884e-01]\n", + " [-4.45000000e+01 2.04650000e+03]\n", + " [ 2.47928571e+02 2.04650000e+03]\n", + " [ 5.40357143e+02 2.04650000e+03]\n", + " [ 8.32785714e+02 2.04650000e+03]\n", + " [ 1.12521429e+03 2.04650000e+03]\n", + " [ 1.41764286e+03 2.04650000e+03]\n", + " [ 1.71007143e+03 2.04650000e+03]\n", + " [ 2.00250000e+03 2.04650000e+03]\n", + " [ 2.00250000e+03 -4.99999884e-01]\n", + " [ 2.00250000e+03 2.91928572e+02]\n", + " [ 2.00250000e+03 5.84357143e+02]\n", + " [ 2.00250000e+03 8.76785714e+02]\n", + " [ 2.00250000e+03 1.16921429e+03]\n", + " [ 2.00250000e+03 1.46164286e+03]\n", + " [ 2.00250000e+03 1.75407143e+03]\n", + " [ 2.00250000e+03 2.04650000e+03]\n", + " [-4.35000000e+01 1.27000000e+02]\n", + " [-4.35000000e+01 4.85400000e+02]\n", + " [-4.35000000e+01 8.43800000e+02]\n", + " [-4.35000000e+01 1.20220000e+03]\n", + " [-4.35000000e+01 1.5606DEBUG:root:make_az_asym: xyp: shape: (96, 2)\n", + "DEBUG:root:radec2pix: curVec Shape: (96, 3)\n", + "DEBUG:root:radec2pix: xyfp Shape: (96, 2)\n", + "0000e+03]\n", + " [-4.35000000e+01 1.91900000e+03]\n", + " [ 8.30000000e+01 4.99999770e-01]\n", + " [ 4.41400000e+02 5.00000267e-01]\n", + " [ 7.99800000e+02 4.99999825e-01]\n", + " [ 1.15820000e+03 5.00000071e-01]\n", + " [ 1.51660000e+03 5.00000113e-01]\n", + " [ 1.87500000e+03 5.00000214e-01]\n", + " [ 8.30000000e+01 2.04550000e+03]\n", + " [ 4.41400000e+02 2.04550000e+03]\n", + " [ 7.99800000e+02 2.04550000e+03]\n", + " [ 1.15820000e+03 2.04550000e+03]\n", + " [ 1.51660000e+03 2.04550000e+03]\n", + " [ 1.87500000e+03 2.04550000e+03]\n", + " [ 2.00150000e+03 1.27000000e+02]\n", + " [ 2.00150000e+03 4.85400000e+02]\n", + " [ 2.00150000e+03 8.43800000e+02]\n", + " [ 2.00150000e+03 1.20220000e+03]\n", + " [ 2.00150000e+03 1.56060000e+03]\n", + " [ 2.00150000e+03 1.91900000e+03]\n", + " [-4.35000000e+01 5.00000284e-01]\n", + " [-4.35000000e+01 5.00000284e-01]\n", + " [ 2.00150000e+03 2.04550000e+03]\n", + " [ 2.00150000e+03 2.04550000e+03]\n", + " [ 8.30000000e+01 1.27000000e+02]\n", + " [ 4.41400000e+02 1.27000000e+02]\n", + " [ 7.99800000e+02 1.27000000e+02]\n", + " [ 1.15820000e+03 1.27000000e+02]\n", + " [ 1.51660000e+03 1.27000000e+02]\n", + " [ 1.87500000e+03 1.27000000e+02]\n", + " [ 8.30000000e+01 4.85400000e+02]\n", + " [ 4.41400000e+02 4.85400000e+02]\n", + " [ 7.99800000e+02 4.85400000e+02]\n", + " [ 1.15820000e+03 4.85400000e+02]\n", + " [ 1.51660000e+03 4.85400000e+02]\n", + " [ 1.87500000e+03 4.85400000e+02]\n", + " [ 8.30000000e+01 8.43800000e+02]\n", + " [ 4.41400000e+02 8.43800000e+02]\n", + " [ 7.99800000e+02 8.43800000e+02]\n", + " [ 1.15820000e+03 8.43800000e+02]\n", + " [ 1.51660000e+03 8.43800000e+02]\n", + " [ 1.87500000e+03 8.43800000e+02]\n", + " [ 8.30000000e+01 1.20220000e+03]\n", + " [ 4.41400000e+02 1.20220000e+03]\n", + " [ 7.99800000e+02 1.20220000e+03]\n", + " [ 1.15820000e+03 1.20220000e+03]\n", + " [ 1.51660000e+03 1.20220000e+03]\n", + " [ 1.87500000e+03 1.20220000e+03]\n", + " [ 8.30000000e+01 1.56060000e+03]\n", + " [ 4.41400000e+02 1.56060000e+03]\n", + " [ 7.99800000e+02 1.56060000e+03]\n", + " [ 1.15820000e+03 1.56060000e+03]\n", + " [ 1.51660000e+03 1.56060000e+03]\n", + " [ 1.87500000e+03 1.56060000e+03]\n", + " [ 8.30000000e+01 1.91900000e+03]\n", + " [ 4.41400000e+02 1.91900000e+03]\n", + " [ 7.99800000e+02 1.91900000e+03]\n", + " [ 1.15820000e+03 1.91900000e+03]\n", + " [ 1.51660000e+03 1.91900000e+03]\n", + " [ 1.87500000e+03 1.91900000e+03]]\n", + "DEBUG:root:optics_fp: cphi: [-0.00747594 -0.00870042 -0.01039606 -0.01289954 -0.01696858 -0.02473916\n", + " -0.04546654 -0.26697332 -0.00747594 -0.14487442 -0.27440415 -0.39058855\n", + " -0.49073902 -0.57464131 -0.6436715 -0.69992333 -0.26697332 -0.98296427\n", + " -0.99542074 -0.99791805 -0.99881542 -0.99923641 -0.99946703 -0.99960689\n", + " -0.69992333 -0.75121935 -0.80504713 -0.85934793 -0.91078494 -0.95473483\n", + " -0.98588803 -0.99960689 -0.00847102 -0.01037136 -0.01335227 -0.01870128\n", + " -0.03109752 -0.0911811 -0.06793149 -0.23195178 -0.37841395 -0.50117932\n", + " -0.59975148 -0.67699869 -0.92564824 -0.99323234 -0.99767802 -0.99883933\n", + " -0.99930549 -0.99953809 -0.72172248 -0.78650646 -0.85317965 -0.91614203\n", + " -0.96694122 -0.99598364 -0.00795487 -0.00795487 -0.9995928 -0.9995928\n", + " -0.07226297 -0.24592654 -0.3988763DEBUG:root:optics_fp: sphi: [0.99998662 0.99998157 0.99997326 0.99995823 0.99992682 0.99984329\n", + " 0.99947535 0.98534548 0.99998662 0.98987212 0.96255334 0.92203248\n", + " 0.87323508 0.82068871 0.76782803 0.71688902 0.98534548 0.21921165\n", + " 0.11402118 0.07693204 0.0580701 0.04666103 0.03901907 0.03354371\n", + " 0.71688902 0.66320038 0.59690146 0.51566567 0.41772438 0.30276585\n", + " 0.17296396 0.03354371 0.99998178 0.9999722 0.99995316 0.99990689\n", + " 0.99974136 0.99788268 0.99786303 0.97348593 0.92704754 0.86731928\n", + " 0.80256563 0.73860437 0.44531096 0.13817549 0.08101827 0.0573289\n", + " 0.04439174 0.0362443 0.69505232 0.62108267 0.52582572 0.40575813\n", + " 0.26042318 0.09510716 0.99998404 0.99998404 0.03404492 0.03404492\n", + " 0.99758153 0.97015242 0.91859883 0.85353737 0.7844386 0.71750142\n", + " 0.99639911 0.95649325 0.88542855 0.80201052 0.71974043 0.64513889\n", + " 0.99408963 0.93129247 0.82961007 0.72325518 0.62880875 0.55006341\n", + " 0.98860564 0.87809901 0.72956919 0.60102159 0.50217562 0.42758264\n", + " 0.96991184 0.74422687 0.54371304 0.41546865 0.33267115 0.27619351\n", + " 0.81489239 0.36634758 0.22327834 0.15951848 0.12390179 0.10124753]\n", + "DEBUG:root:optics_fp: xyfp shape: (96, 2)\n", + "8043 13.3732764 ]\n", + " [24.98508046 13.37384425]\n", + " [19.60908049 13.3744121 ]\n", + " [14.23308053 13.37497996]\n", + " [ 8.85708056 13.37554781]\n", + " [ 3.48108059 13.37611567]\n", + " [30.36051258 7.99727643]\n", + " [24.98451261 7.99784428]\n", + " [19.60851265 7.99841214]\n", + " [14.23251268 7.99897999]\n", + " [ 8.85651271 7.99954784]\n", + " [ 3.48051273 8.00011569]\n", + " [30.35994473 2.62127646]\n", + " [24.98394476 2.62184431]\n", + " [19.60794479 2.62241216]\n", + " [14.23194482 2.62298002]\n", + " [ 8.85594485 2.62354787]\n", + " [ 3.47994488 2.62411572]]\n", + "7 -0.52461865 -0.62348955 -0.69945795\n", + " -0.08817399 -0.29602647 -0.46919258 -0.60136972 -0.69774952 -0.76701014\n", + " -0.11299429 -0.36984939 -0.56367146 -0.69504524 -0.7811192 -0.83793215\n", + " -0.1569857 -0.48613658 -0.69011673 -0.80373942 -0.86801033 -0.90636701\n", + " -0.25511271 -0.67830854 -0.84534002 -0.91323709 -0.94538951 -0.96272694\n", + " -0.6124737 -0.93816501 -0.97759544 -0.98864055 -0.99316726 -0.99544587]\n", + "DEBUG:root:make_az_asym: xyp: shape: (96, 2)\n", + "DEBUG:root:radec2pix: camVec: [[0.20658103 0.20838989 0.20993522 0.21121099 0.21221385 0.21294172\n", + " 0.21339307 0.21356684 0.20658103 0.18015754 0.1530338 0.12531307\n", + " 0.09710338 0.06851504 0.03965966 0.01064976 0.21356684 0.18621882\n", + " 0.15815829 0.12949192 0.10032565 0.07076705 0.04092766 0.01092393\n", + " 0.01064976 0.01072986 0.01079662 0.01085001 0.01088978 0.0109156\n", + " 0.01092708 0.01092393 0.20731213 0.20935192 0.21098964 0.21221814\n", + " 0.21303349 0.21343308 0.19515895 0.16228971 0.12847052 0.09389848\n", + " 0.05877657 0.02331064 0.20173739 0.16772694 0.13275239 0.09700904\n", + " 0.06069518 0.02401827 0.01078606 0.01087623 0.01094616 0.01099551\n", + " 0.01102363 0.01102984 0.2064986 0.2064986 0.01102671 0.01102671\n", + " 0.19592714 0.16292559 0.1289709 0.09426176 0.0590016 0.02339654\n", + " 0.19785166 0.16451646 0.13022261 0.09517088 0.05956467 0.02361044\n", + " 0.19939573 0.16579218 0.13122742 0.09590173 0.06001727 0.02378066\n", + " 0.20055377 0.16674959 0.13198281 0.09645193 0.06035751 0.0239064\n", + " 0.20132229 0.16738526 0.13248471 0.09681723 0.06058199 0.02398618\n", + " 0.20169858 0.16769559 0.13272857 0.09699294 0.06068709 0.02401844]\n", + " [0.20098859 0.17447006 0.14727238 0.11949936 0.09125926 0.06266255\n", + " 0.03382097 0.00484709 0.20098859 0.20282418 0.20440426 0.20572264\n", + " 0.20677589 0.2075618 0.2080787 0.20832528 0.00484709 0.00490326\n", + " 0.00495363 0.00499813 0.0050366 0.00506881 0.00509451 0.00511348\n", + " 0.20832528 0.18083307 0.15264908 0.12387974 0.09463112 0.06501141\n", + " 0.0351331 0.00511348 0.18952259 0.15655094 0.12266162 0.08805229\n", + " 0.05292621 0.01748945 0.20172997 0.20380791 0.20549566 0.20678588\n", + " 0.20767444 0.20815839 0.00497187 0.00503783 0.00509482 0.00514259\n", + " 0.00518073 0.00520877 0.19643015 0.16225698 0.1271506 0.09130636\n", + " 0.0549237 0.01821176 0.20090587 0.20090587 0.00521618 0.00521618\n", + " 0.19029998 0.19225876 0.19384904 0.19506507 0.19590316 0.19636024\n", + " 0.15719218 0.15880644 0.16011755 0.16112232 0.16181718 0.1621981\n", + " 0.12316354 0.12442767 0.12545686 0.12624866 0.12679897 0.1271029\n", + " 0.08841323 0.08932369 0.09006766 0.09064294 0.0910454 0.09127018\n", + " 0.05314506 0.05369842 0.05415286 0.05450669 0.05475678 0.05489951\n", + " 0.0175654 0.01775879 0.01791986 0.01804791 0.01814173 0.01819993]\n", + " [0.9575635 0.96235848 0.9665599 0.97010815 0.97295274 0.97505345\n", + " 0.97638084 0.97691643 0.9575635 0.96249967 0.96685033 0.97055388\n", + " 0.97355774 0.97581955 0.97730771 0.97800162 0.97691643 0.98249606\n", + " 0.98740135 0.99156788 0.99494191 0.99747999 0.99914912 0.99992726\n", + " 0.97800162 0.98345527 0.98822148 0.99223792 0.99545284 0.99782482\n", + " 0.9993229 0.99992726 0.95974104 0.96522722 0.96976157 0.97324727\n", + " 0.97561035 0.97680113 0.95980102 0.96546589 0.97018908 0.97386995\n", + " 0.97643056 0.97781731 0.97942703 0.98582062 0.99113614 0.99527021\n", + " 0.9981429 0.99969795 0.98045849 0.98668859 0.99182302 0.99576214\n", + " 0.9984297 0.99977331 0.95759864 0.95759864 0.9999256 0.9999256\n", + " 0.96197634 0.96772508 0.97251687 0.97625014 0DEBUG:root:radec2pix: xyfp: [[ -0.24606 31.536148 ]\n", + " [ -0.24606 27.14971943]\n", + " [ -0.24606 22.76329086]\n", + " [ -0.24606 18.37686229]\n", + " [ -0.24606 13.99043371]\n", + " [ -0.24606 9.60400514]\n", + " [ -0.24606 5.21757658]\n", + " [ -0.24606 0.831148 ]\n", + " [ -0.24606 31.536148 ]\n", + " [ -4.63248857 31.536148 ]\n", + " [ -9.01891714 31.536148 ]\n", + " [-13.40534571 31.536148 ]\n", + " [-17.79177429 31.536148 ]\n", + " [-22.17820286 31.536148 ]\n", + " [-26.56463143 31.536148 ]\n", + " [-30.95106 31.536148 ]\n", + " [ -0.24606 0.831148 ]\n", + " [ -4.63248857 0.831148 ]\n", + " [ -9.01891714 0.831148 ]\n", + " [-13.40534571 0.831148 ]\n", + " [-17.79177429 0.831148 ]\n", + " [-22.17820285 0.831148 ]\n", + " [-26.56463143 0.831148 ]\n", + " [-30.95106 0.831148 ]\n", + " [-30.95106 31.536148 ]\n", + " [-30.95106 27.14971943]\n", + " [-30.95106 22.76329086]\n", + " [-30.95106 18.37686228]\n", + " [-30.95106 13.99043371]\n", + " [-30.95106 9.60400514]\n", + " [-30.95106 5.21757657]\n", + " [-30.95106 0.831148 ]\n", + " [ -0.26106 29.623648 ]\n", + " [ -0.26106 .97884665 0.98025265\n", + " 0.96754604 0.97350647 0.97847046 0.98233503 0.98502145 0.98647571\n", + " 0.97214818 0.97827946 0.98338189 0.98735208 0.99011108 0.99160442\n", + " 0.97568503 0.98194493 0.98715164 0.99120174 0.99401595 0.99553917\n", + " 0.97808228 0.98442808 0.98970464 0.99380856 0.99666018 0.99820374\n", + " 0.97929012 0.98567886 0.99099042 0.99512142 0.99799196 0.99954584]]\n", + "DEBUG:root:mm_to_pix: fitpx: [[0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. DEBUG:root:radec2pix: camVec: [[0.20622014 0.20805053 0.20961035 0.210899 0.21191543 0.21265818\n", + " 0.21312568 0.21331667 0.20622014 0.17982824 0.1527297 0.12503427\n", + " 0.09685185 0.06829276 0.03946812 0.01049004 0.21331667 0.18597713\n", + " 0.1579279 0.12927353 0.10011961 0.07057467 0.04075124 0.01076573\n", + " 0.01049004 0.01056977 0.01063642 0.01068985 0.01072978 0.01075592\n", + " 0.01076796 0.01076573 0.20696213 0.20902258 0.21067623 0.21192136\n", + " 0.21275532 0.21317532 0.1948134 0.16197729 0.1281888 0.09365018\n", + " 0.05856456 0.02313694 0.20149034 0.16749252 0.1325326 0.09680441\n", + " 0.0605079 0.02385188 0.01062602 0.01071595 0.0107859 0.01083545\n", + " 0.01086402 0.01087112 0.20613793 0.20613793 0.01086844 0.01086844\n", + " 0.19558949 0.1626169 0.12869151 0.09401511 0.05879055 0.02322296\n", + " 0.19753009 0.16421774 0.12995114 0.09493033 0.05935726 0.02343764\n", + " 0.19908829 0.16550536 0.13096617 0.09566871 0.05981412 0.02360896\n", + " 0.20026215 0.16647694 0.13173312 0.09622682 0.06015857 0.02373584\n", + " 0.20104857 0.16712825 0.13224724 0.09660024 0.06038739 0.02381698\n", + " 0.20144435 0.16745515 0.13250401 0.09678486 0.06049766 0.02385117]\n", + " [0.20255556 0.17610143 0.14895462 0.12122494 0.09302239 0.06445739\n", + " 0.03564119 0.00668594 0.20255556 0.20441077 0.20600074 0.2073248\n", + " 0.20838186 0.20917033 0.20968847 0.20993479 0.00668594 0.00675821\n", + " 0.00682246 0.00687853 0.00692617 0.0069651 0.00699507 0.00701584\n", + " 0.20993479 0.18250233 0.15437326 0.12565215 0.09644485 0.06686038\n", + " 0.03701177 0.00701584 0.19112005 0.15821703 0.12438266 0.08981934\n", + " 0.05473042 0.0193211 0.20330747 0.20540191 0.20709749 0.2083924\n", + " 0.20928375 0.20976841 0.00681796 0.00690216 0.00697398 0.00703299\n", + " 0.00707868 0.00711058 0.19806614 0.16396327 0.12891793 0.09312436\n", + " 0.05678335 0.02010461 0.2024732 0.2024732 0.00711848 0.00711848\n", + " 0.19190537 0.19387759 0.19547539 0.1966967 0.19753824 0.19799645\n", + " 0.15886347 0.1604891 0.1618095 0.16282181 0.16352163 0.16390447\n", + " 0.12488974 0.12616714 0.12720791 0.12800859 0.1285643 0.12887024DEBUG:root:radec2pix: curVec: [[ 0.25843401 -0.49867793 0.8273646 ]\n", + " [ 0.23403181 -0.51011861 0.82765217]\n", + " [ 0.20888681 -0.52129955 0.82741349]\n", + " [ 0.18310258 -0.53216232 0.82660553]\n", + " [ 0.15678277 -0.54265242 0.82519544]\n", + " [ 0.13003127 -0.55271917 0.82316061]\n", + " [ 0.10295271 -0.5623159 0.82048862]\n", + " [ 0.07565264 -0.57140031 0.81717707]\n", + " [ 0.25843401 -0.49867793 0.8273646 ]\n", + " [ 0.25155176 -0.47718983 0.84202825]\n", + " [ 0.24418797 -0.45493773 0.85639004]\n", + " [ 0.23637795 -0.43199151 0.87034982]\n", + " [ 0.22815663 -0.40842562 0.88381732]\n", + " [ 0.21955862 -0.38431939 0.89671212]\n", + " [ 0.21061863 -0.35975723 0.90896343]\n", + " [ 0.20137195 -0.33482867 0.92051024]\n", + " [ 0.07565264 -0.57140031 0.81717707]\n", + " [ 0.06677526 -0.54988616 0.83256608]\n", + " [ 0.05765845 -0.52749092 0.84760181]\n", + " [ 0.04833629 -0.50427988 0.86218641]\n", + " [ 0.03884312 -0.48032336 0.87623095]\n", + " [ 0.0292142 -0.45569826 0.88965478]\n", + " [ 0.0194861 -0.43048917 0.90238537]\n", + " [ 0.0096967 -0.40478842 0.91435896]\n", + " [ 0.20137195 -0.33482867 0.92051024]\n", + " [ 0.17547228 -0.34530947 0.92193863]\n", + " [ 0.14891036 -0.35571646 0.9226546 ]\n", + " [ 0.12178497 -0.36599324 0.92261442]\n", + " [ 0.0941961 -0.37608701 0.92178395]\n", + " [ 0.06624667 -0.38594803 0.92013884]\n", + " [ 0.03804343 -0.39552961 0.91766498]\n", + " [ 0.0096967 -0.40478842 0.91435896]\n", + " [ 0.24786935 -0.50362193 0.82760241]\n", + " [ 0.21744799 -0.51747632 0.82760778]\n", + " [ 0.18601387 -0.53088218 0.82677866]\n", + " [ 0.15375775 -0.54373755 0.82505032]\n", + " [ 0.12087096 -0.55594915 0.82238115]\n", + " [ 0.0875465 -0.56743287 0.81875243]\n", + " [ 0.25541224 -0.48944664 0.83379048]\n", + " [ 0.24664773 -0.46258806 0.85157336]\n", + " [ 0.23719521 -0.43465073 0.86880215]\n", + " [ 0.22711914 -0.40576982 0.88530659]\n", + " [ 0.21648329 -0.37609138 0.90093854]\n", + " [ 0.20535179 -0.34577296 0.91557179]\n", + " [ 0.0719077 -0.56210216 0.82393595]\n", + " [ 0.0608632 -0.53513355 0.84257211]\n", + " [ 0.04949277 -0.50690596 0.86057934]\n", + " [ 0.03785947 -0.47754669 0.8777903 ]\n", + " [ 0.02602825 -0.44719746 0.89405647]\n", + " [ 0.01406699 -0.41601721 0.90924793]\n", + " [ 0.19019962 -0.339DEBUG:root:make_az_asym: xyp: [[32.275486 31.41357429]\n", + " [32.27502267 27.02714574]\n", + " [32.27455935 22.64071719]\n", + " [32.27409601 18.25428864]\n", + " [32.27363269 13.8678601 ]\n", + " [32.27316936 9.48143155]\n", + " [32.27270604 5.095003 ]\n", + " [32.27224271 0.70857446]\n", + " [32.275486 31.41357429]\n", + " [27.88905745 31.41403761]\n", + " [23.5026289 31.41450094]\n", + " [19.11620036 31.41496427]\n", + " [14.72977181 31.41542759]\n", + " [10.34334326 31.41589092]\n", + " [ 5.95691471 31.41635424]\n", + " [ 1.57048617 31.41681757]\n", + " [32.27224271 0.70857446]\n", + " [27.88581416 0.70903778]\n", + " [23.49938562 0.70950111]\n", + " [19.11295707 0.70996444]\n", + " [14.72652852 0.71042776]\n", + " [10.34009998 0.71089109]\n", + " [ 5.95367142 0.71135442]\n", + " [ 1.56724288 0.71181774]\n", + " [ 1.57048617 31.41681757]\n", + " [ 1.57002284 27.03038902]\n", + " [ 1.56955951 22.64396047]\n", + " [ 1.56909619 18.25753194]\n", + " [ 1.56863286 13.87110338]\n", + " [ 1.56816953 9.48467484]\n", + " [ 1.56770621 5.09824629]\n", + " [ 1.56724288 0.71181774]\n", + " [32.26028399 29.50107588]\n", + " [32.25971613 24.12507591]\n", + " [32.25914828 18.74907594]\n", + " [32.25858043 13.37307597DEBUG:root:optics_fp: xyfp: [[ 0.16415906 -31.72847131]\n", + " [ 0.16601788 -27.34204313]\n", + " [ 0.1678767 -22.95561497]\n", + " [ 0.16973552 -18.56918678]\n", + " [ 0.17159434 -14.1827586 ]\n", + " [ 0.17345315 -9.79633043]\n", + " [ 0.17531197 -5.40990225]\n", + " [ 0.17717079 -1.02347407]\n", + " [ 0.16415906 -31.72847131]\n", + " [ 4.55058724 -31.73033014]\n", + " [ 8.93701541 -31.73218895]\n", + " [ 13.32344359 -31.73404778]\n", + " [ 17.70987177 -31.73590659]\n", + " [ 22.09629995 -31.73776541]\n", + " [ 26.48272812 -31.73962422]\n", + " [ 30.8691563 -31.74148305]\n", + " [ 0.17717079 -1.02347407]\n", + " [ 4.56359897 -1.02533289]\n", + " [ 8.95002714 -1.02719171]\n", + " [ 13.33645532 -1.02905053]\n", + " [ 17.7228835 -1.03090935]\n", + " [ 22.10931168 -1.03276817]\n", + " [ 26.49573986 -1.03462699]\n", + " [ 30.88216803 -1.0364858 ]\n", + " [ 30.8691563 -31.74148305]\n", + " [ 30.87101512 -27.35505487]\n", + " [ 30.87287394 -22.96862669]\n", + " [ 30.87473276 -18.58219851]\n", + " [ 30.87659158 -14.19577034]\n", + " [ 30.8784504 -9.80934216]\n", + " [ 30.88030922 -5.42291398]\n", + " [ 30.88216803 -1.0364858 ]\n", + " [ 0.17996951 -29.81597784]\n", + " [ 0.18224768 \n", + " 0.09018615 0.09111203 0.09186896 0.09245358 0.0928614 0.09308815\n", + " 0.05495583 0.05552612 0.05599434 0.05635799 0.05661388 0.05675899\n", + " 0.01940412 0.01961547 0.01979108 0.01992994 0.02003078 0.02009239]\n", + " [0.95731108 0.96213474 0.96637261 0.96996192 0.9728508 0.97499833\n", + " 0.97637449 0.97696023 0.95731108 0.96222557 0.96655954 0.97024886\n", + " 0.97324032 0.97549161 0.97697135 0.97765911 0.97696023 0.98253083\n", + " 0.98742708 0.99158512 0.9949513 0.99748218 0.99914484 0.99991744\n", + " 0.97765911 0.9831486 0.98795534 0.99201677 0.99528049 0.99770436\n", + " 0.99925681 0.99991744 0.95949977 0.96502691 0.96961048 0.97315046\n", + " 0.9755715 0.9768229 0.95953833 0.96518051 0.96988569 0.97355136\n", + " 0.97609964 0.97747731 0.97946677 0.98584919 0.99115411 0.99527858\n", + " 0.99814262 0.99969022 0.98013106 0.98640824 0.99159661 0.99559552\n", + " 0.99832741 0.99973878 0.95734621 0.95734621 0.9999156 0.9999156\n", + " 0.96172609 0.96745399 0.9722283 0.9759465 0.97853069 0.9799276\n", + " 0.96733875 0.97328094 0.97822819 0.98207805 0.]\n", + " [32.25801258 7.997076 ]\n", + " [32.25744472 2.62107603]\n", + " [30.36298443 31.3987763 ]\n", + " [24.98698446 31.39934415]\n", + " [19.61098448 31.399912 ]\n", + " [14.23498451 31.40047985]\n", + " [ 8.85898454 31.40104771]\n", + " [ 3.48298457 31.40161556]\n", + " [30.35974431 0.72377647]\n", + " [24.98374433 0.72434432]\n", + " [19.60774436 0.72491217]\n", + " [14.23174439 0.72548003]\n", + " [ 8.85574442 0.72604788]\n", + " [ 3.47974445 0.72661573]\n", + " [ 1.58528416 29.504316 ]\n", + " [ 1.5847163 24.12831603]\n", + " [ 1.58414845 18.75231606]\n", + " [ 1.5835806 13.37631609]\n", + " [ 1.58301275 8.00031612]\n", + " [ 1.5824449 2.62431615]\n", + " [32.26048441 31.39857587]\n", + " [32.26048441 31.39857587]\n", + " [ 1.58224447 0.72681616]\n", + " [ 1.58224447 0.72681616]\n", + " [30.36278399 29.50127631]\n", + " [24.98678403 29.50184416]\n", + " [19.61078405 29.50241201]\n", + " [14.23478409 29.50297987]\n", + " [ 8.85878411 29.50354772]\n", + " [ 3.48278414 29.50411557]\n", + " [30.36221615 24.12527634]\n", + " [24.98621618 24.12584419]\n", + " [19.6102162 24.12641204]\n", + " [14.23421623 24.1269799 ]\n", + " [ 8.85821626 24.12754775]\n", + " [ 3.48221629 24.1281156 ]\n", + " [30.36164829 18.74927637]\n", + " [24.98564832 18.74984422]\n", + " [19.60964835 18.75041208]\n", + " [14.23364838 18.75097993]\n", + " [ 8.85764841 18.75154778]\n", + " [ 3.48164844 18.75211563]\n", + " [30.36108043 13.3732764 ]\n", + " [24.98508046 13.37384425]\n", + " [19.60908049 13.3744121 ]\n", + " [14.23308053 13.37497996]\n", + " [ 8.85708056 13.37554781]\n", + " [ 3.48108059 13.37611567]\n", + " [30.36051258 7.99727643]\n", + " [24.98451261 7.99784428]\n", + " [19.60851265 7.99841214]\n", + " [14.23251268 7.99897999]\n", + " [ 8.85651271 7.99954784]\n", + " [ 3.48051273 8.00011569]\n", + " [30.35994473 2.62127646]\n", + " [24.98394476 2.62184431]\n", + " [19.60794479 2.62241216]\n", + " [14.23194482 2.62298002]\n", + " [ 8.85594485 2.62354787]\n", + " [ 3.47994488 2.62411572]]\n", + "98475245 0.98619775\n", + " 0.97199095 0.97810522 0.98319175 0.98714806 0.9898957 0.99138039\n", + " 0.97558266 0.98182688 0.98701899 0.99105637 0.99386 0.99537491\n", + " 0.97803851 0.98437036 0.98963392 0.99372641 0.99656823 0.99810379\n", + " 0.97930774 0.98568454 0.99098486 0.99510577 0.99796733 0.99951359]]\n", + "-24.43997833]\n", + " [ 0.18452584 -19.06397881]\n", + " [ 0.18680401 -13.6879793 ]\n", + " [ 0.18908DEBUG:root:radec2pix: camVec Shape: (3, 96)\n", + "0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]]\n", + "DEBUG:root:radec2pix: camVec Shape: (3, 96)\n", + "DEBUG:root:make_az_asym: xyp: shape: (96, 2)\n", + "DEBUG:root:mm_to_pix: fitpx.shape: (96, 2)\n", + "48973 0.92117904]\n", + " [ 0.15799949 -0.35229352 0.9224562 ]\n", + " [ 0.1249027 -0.36492982 0.92261885]\n", + " [ 0.09109271 -0.37729996 0.92160016]\n", + " [ 0.05675911 -0.38931237 0.91935536]\n", + " [ 0.02209994 -0.40088245 0.9158629 ]\n", + " [ 0.25832927 -0.49864532 0.82741697]\n", + " [ 0.25832927 -0.49864532 0.82741697]\n", + " [ 0.00982728 -0.40484597 0.91433209]\n", + " [ 0.00982728 -0.40484597 0.91433209]\n", + " [ 0.24489031 -0.49440982 0.83401899]\n", + " [ 0.23596562 -0.46750363 0.85191583]\n", + " [ 0.22637587 -0.43950441 0.86924671]\n", + " [ 0.21618517 -0.41054699 0.88584149]\n", + " [ 0.20545678 -0.38077729 0.90155209]\n", + " DEBUG:root:optics_fp: sphi: [0.99997205 0.99996215 0.99994596 0.9999168 0.99985602 0.99969394\n", + " 0.99896586 0.96370392 0.99997205 0.98945005 0.96161446 0.92056536\n", + " 0.87130661 0.81840538 0.7653019 0.71421799 0.96370392 0.18379675\n", + " 0.09559053 0.0644947 0.04865962 0.03907157 0.03264451 0.02803701\n", + " 0.71421799 0.66005264 0.59321085 0.51139137 0.41288109 0.29745825\n", + " 0.16740606 0.02803701 0.99996412 0.99994622 0.99991085 0.99982512\n", + " 0.99951636 0.99583433 0.99768999 0.97272729 0.92563647 0.86534345\n", + " 0.80018633 0.73598422 0.37838518 0.11614437 0.06810698 0.04816635\n", + " 0.03726317 0.03039091 0.69218254 0.61758205 0.52161719 0.40085381\n", + " 0.25499936 0.08953536 0.99996836 0.99996836 0.02853493 0.02853493\n", + " 0.99738561 0.96928847 0.91700471 0.85133735 0.78183168 0.71467375\n", + " 0.99610509 0.95517974 0.88309587 0.79897088 0.71634182 0.64163497\n", + " 0.99359564 0.92909172 0.82599908 0.71896601 0.62438193 0.54577441\n", + " 0.98760088 0.87388285 0.72369807 0.59498147 0.49654613 0.42249123\n", + " 0.96691132 0.7347772 0.53422865 DEBUG:root:radec2pix: xyfp: [[32.275486 31.41357429]\n", + " [32.27502267 27.02714574]\n", + " [32.27455935 22.64071719]\n", + " [32.27409601 18.25428864]\n", + " [32.27363269 13.8678601 ]\n", + " [32.27316936 9.48143155]\n", + " [32.27270604 5.095003 ]\n", + " [32.27224271 0.70857446]\n", + " [32.275486 31.41357429]\n", + " [27.88905745 31.41403761]\n", + " [23.5026289 31.41450094]\n", + " [19.11620036 31.41496427]\n", + " [14.72977181 31.41542759]\n", + " [10.34334326 31.41589092]\n", + " [ 5.95691471 31.41635424]\n", + " [ 1.57048617 31.41681757]\n", + " [32.27224271 0.70857446]\n", + " [27.88581416 0.70903778]\n", + " [23.49938562 0.70950111]\n", + " [19.11295707 0.70996444]\n", + " [14.72652852 0.71042776]\n", + " [10.34009998 0.71089109]\n", + " [ 5.95367142 0.71135442]\n", + " [ 1.56724288 0.71181774]\n", + " [ 1.57048617 31.41681757]\n", + " [ 1.57002284 27.03038902]\n", + " [ 1.56955951 22.64396047]\n", + " [ 1.56909619 18.25753194]\n", + " [ 1.56863286 13.87110338]\n", + " [ 1.56816953 9.48467484]\n", + " [ 1.56770621 5.09824629]\n", + " [ 1.56724288 0.71181774]\n", + " [32.26028399 29.50107588]\n", + " [32.25971613 24.12507591]\n", + " [32.25914828 18.74907594]\n", + " [32.25858043 13.37307597]\n", + " [32.25801258 7.997076 ]\n", + " [32.25744472 2.62107603]\n", + " [30.36298443 31.3987763 ]\n", + " [24.98698446 31.39934415]\n", + " [19.61098448 31.399912 ]\n", + " [14.23498451 31.40047985]\n", + " [ 8.85898454 31.40104771]\n", + " [ 3.48298457 31.40161556]\n", + " [30.35974431 0.72377647]\n", + " [24.98374433 0.72434432]\n", + " [19.60774436 0.72491217]\n", + " [14.23174439 0.72548003]\n", + " [ 8.85574442 0.72604788]\n", + " [ 3.47974445 0.72661573]\n", + " [ 1.58528416 29.504316 ]\n", + " [ 1.5847163 24.12831603]\n", + " [ 1.58414845 18.75231606]\n", + " [ 1.5835806 13.37631609]\n", + " [ 1.58301275 8.00031612]\n", + " [ 1.5824449 2.62431615]\n", + " [32.26048441 31.39857587]\n", + " [32.26048441 31.39857587]\n", + " [ 1.58224447 0.72681616]\n", + " [ 1.58224447 0.72681616]\n", + " [30.36278399 29.50127631]\n", + " [24.98678403 29.50184416]\n", + " [19.61078405 29.50241201]\n", + " [14.23478409 29.50297987]\n", + " [ 8.85878411 29.50354772]\n", + " [ 3.48278414 29.50411557]\n", + " [30.36221615 24.12527634]\n", + " [24.98621618 24.12584419]\n", + " [19.6102162 24.12641204]\n", + " [14.23421623 24.1269799 ]\n", + " [ 8.85821626 24.12754775]\n", + " [ 3.48221629 24.1281156 ]\n", + " [30.36164829 18.74927637]\n", + " 24.247648 ]\n", + " [ -0.26106 18.87164801]\n", + " [ -0.26106 13.495648 ]\n", + " [ -0.26106 8.119648 ]\n", + " [ -0.26106 2.743648 ]\n", + " [ -2.15856 31.521148 ]\n", + " [ -7.53456 31.521148 ]\n", + " [-12.91056 31.521148 ]\n", + " [-18.28656 31.521148 ]\n", + " [-23.66256 31.521148 ]\n", + " [-29.03856 31.521148 ]\n", + " [ -2.15856 0.846148 ]\n", + " [ -7.53456 0.846148 ]\n", + " [-12.91056 0.846148 ]\n", + " [-18.28655999 0.846148 ]\n", + " [-23.66256 0.846148 ]\n", + " [-29.03856 0.846148 ]\n", + " [-30.93606 29.623648 ]\n", + " [-30.93606 24.247648 ]\n", + " [-30.93606 18.871648 ]\n", + " [-30.93606 13.495648 ]\n", + " [-30.93606 8.119648 ]\n", + " [-30.93606 2.743648 ]\n", + " [ -0.26106 31.521148 ]\n", + " [ -0.26106 31.521148 ]\n", + " [-30.93606 0.846148 ]\n", + " [-30.93606 0.846148 ]\n", + " [ -2.15856 29.623648 ]\n", + " [ -7.53456 29.623648 ]\n", + " [-12.91056 29.623648 ]\n", + " [-18.28656 29.623648 ]\n", + " [-23.66256 29.623648 ]\n", + " [-29.03856 29.623648 ]\n", + " [ -2.15856 24.247648 ]\n", + " [ -7.53456 24.247648 ]\n", + "217 -8.31197977]\n", + " [ 0.19136034 -2.93598025]\n", + " [ 2.07666524 -31.71428177]\n", + " [ 7.45266476 -31.71655993]\n", + " [ 12.82866428 -31.7188381 ]\n", + " [ 18.2046638 -31.72111627]\n", + " [ 23.58066331 -31.72339443]\n", + " [ 28.95666283 -31.7256726 ]\n", + " [ 2.08966426 -1.03928452]\n", + " [ 7.46566378 -1.04156269]\n", + " [ 12.8416633 -1.04384085]\n", + " [ 18.21766282 -1.04611902]\n", + " [ 23.59366233 -1.04839718]\n", + " [ 28.96966185 -1.05067535]\n", + " [ 30.85496675 -29.82897686]\n", + " [ 30.85724492 -24.45297735]\n", + " [ 30.85952308 -19.07697783]\n", + " [ 30.86180126 -13.70097831]\n", + " [ 30.86407941 -8.32497879]\n", + " [ 30.86635759 -2.94897928]\n", + " [ 0.17916541 -31.71347767]\n", + " [ 0.17916541 -31.71347767]\n", + " [ 30.86716168 -1.05147945]\n", + " [ 30.86716168 -1.05147945]\n", + " [ 2.07746934 -29.81678193]\n", + " [ 7.45346886 -29.8190601 ]\n", + " [ 12.82946837 -29.82133827]\n", + " [ 18.20546789 -29.82361643]\n", + " [ 23.58146741 -29.82589461]\n", + " [ 28.95746693 -29.82817277]\n", + " [ 2.07974751 -24.44078242]\n", + " [ 7.45574702 -24.44306058]\n", + " [ 12.83174654 -24.44533875]\n", + " [ 18.20774606 -24.44761692]\n", + " [ 23.58374558 -24.449895[24.98564832 18.74984422]\n", + " [19.60964835 18.75041208]\n", + " [14.23364838 18.75097993]\n", + " [ 8.85764841 18.75154778]\n", + " [ 3.48164844 18.75211563]\n", + " [30.36108043 13.3732764 ]\n", + " [24.98508046 13.37384425]\n", + " [19.60908049 13.3744121 ]\n", + " [14.23308053 13.37497996]\n", + " [ 8.85708056 13.37554781]\n", + " [ 3.48108059 13.37611567]\n", + " [30.36051258 7.99727643]\n", + " [24.98451261 7.99784428]\n", + " [19.60851265 7.99841214]\n", + " [14.23251268 7.99897999]\n", + " [ 8.85651271 7.99954784]\n", + " [ 3.48051273 8.00011569]\n", + " [30.35994473 2.62127646]\n", + " [24.98394476 2.62184431]\n", + " [19.60794479 2.62241216]\n", + " [14.23194482 2.62298002]\n", + " [ 8.85594485 2.62354787]\n", + " [ 3.47994488 2.62411572]]\n", + "08]\n", + " [ 28.95974509 -24.45217325]\n", + " [ 2.08202567 -19.0647829 ]\n", + " [ 7.45802519 -19.06706107]\n", + " [ 12.83402471 -19.06933924]\n", + " [ 18.21002422 -19.0716174 ]\n", + " [ 23.58602374 -19.07389557]\n", + " [ 28.96202325 -19.07617373]\n", + " [ 2.08430384 -13.68878339]\n", + " [ 7.46030335 -13.69106155]\n", + " [ 12.83630287 -13.69333972]\n", + " [ 18.21230239 -13.69561789]\n", + " [ 23.58830191 -13.69789605]\n", + " [ 28.96430143 -13.70017422]\n", + " [ 2.086582 -8.31278387]\n", + " [ 7.46258152 -8.31506203]\n", + " [ 12.83858103 -8.3173402 ]\n", + " [ 18.21458055 -8.31961837]\n", + " [ 23.59058007 -8.32189653]\n", + " [ 28.96657959 -8.3241747 ]\n", + " [ 2.08886017 -2.93678435]\n", + " [ 7.46485969 -2.93906252]\n", + " [ 12.8408592 -2.94134068]\n", + " [ 18.21685872 -2.94361885]\n", + " [ 23.59285824 -2.94589701]\n", + " [ 28.96885776 -2.94817518]]\n", + "0.40742853 0.32594274 0.27047521\n", + " 0.79049097 0.3461884 0.21049264 0.15029925 0.11669955 0.09532849]\n", + "DEBUG:root:radec2pix: fitpx: [[ 2.13550000e+03 -4.99999973e-01]\n", + " [ 2.13550000e+03 2.91928572e+02]\n", + " [ 2.13550000e+03 5.84357143e+02]\n", + " [ 2.13550000e+03 8.76785714e+02]\n", + " [ 2.13550000e+03 1.16921429e+03]\n", + " [ 2.13550000e+03 1.46164286e+03]\n", + " [ 2.13550000e+03 1.75407143e+03]\n", + " [ 2.13550000e+03 2.04650000e+03]\n", + " [ 2.13550000e+03 -4.99999973e-01]\n", + " [ 2.42792857e+03 -4.99999766e-01]\n", + " [ 2.72035714e+03 -5.00000023e-01]\n", + " [ 3.01278571e+03 -4.99999798e-01]\n", + " [ 3.30521429e+03 -5.00000229e-01]\n", + " [ 3.59764286e+03 -5.00000231e-01]\n", + " [ 3.89007143e+03 -4.99999870e-01]\n", + " [ 4.18250000e+03 -4.99999884e-01]\n", + " [ 2.13550000e+03 2.04650000e+03]\n", + " [ 2.42792857e+03 2.04650000e+03]\n", + " [ 2.72035714e+03 2.04650000e+03]\n", + " [ 3.01278571e+03 2.04650000e+03]\n", + " [ 3.30521429e+03 2.04650000e+03]\n", + " [ 3.59764286e+03 2.04650000e+03]\n", + " [ 3.89007143e+03 2.04650000e+03]\n", + " [ 4.18250000e+03 2.04650000e+03]\n", + " [ 4.18250000e+03 -4.99999884e-01]\n", + " [ 4.18250000e+03 2.91928572e+02]\n", + " [ 4.18250000e+03 5.84357143e+02]\n", + " [ 4.18250000e+03 8.76785714e+02]\n", + " [ 4.18250000e+03 1.16921429e+03]\n", + " [ 4.18250000e+03 1.46164286e+03]\n", + " [ 4.18250000e+03 1.75407143e+03]\n", + " [ 4.18250000e+03 2.04650000e+03]\n", + " [ 2.13650000e+03 1.27000000e+02]\n", + " [ 2.13650000e+03 4.85400000e+02]\n", + " [ 2.13650000e+03 8.43800000e+02]\n", + " [ 2.13650000e+03 1.20220000e+03]\n", + " [ 2.13650000e+03 1.56060000e+03]\n", + " [ 2.13650000e+03 1.91900000e+03]\n", + " [ 2.26300000e+03 4.99999770e-01]\n", + " [ 2.62140000e+03 5.00000267e-01]\n", + " [ 2.97980000e+03 4.99999825e-01]\n", + " [ 3.33820000e+03 5.00000071e-01]\n", + " [ 3.69660000e+03 5.00000113e-01]\n", + " [ 4.05500000e+03 5.00000214e-01]\n", + " [ 2.26300000e+03 2.04550000e+03]\n", + " [ 2.62140000e+03 2.04550000e+03]\n", + " [ 2.97980000e+03 2.04550000e+03]\n", + " [ 3.33820000e+03 2.04550000e+03]\n", + " [ 3.69660000e+03 2.04550000e+03]\n", + " [ 4.05500000e+03 2.04550000e+03]\n", + " [ 4.18150000e+03 1.27000000e+02]\n", + " [ 4.18150000e+03 4.85400000e+02]\n", + " [ 4.18150000e+03 8.43800000e+02]\n", + " [ 4.18150000e+03 1.20220000e+03]\n", + " [ 4.18150000e+03 1.56060000e+03]\n", + " [ 4.18150000e+03 1.91900000e+03]\n", + " [ 2.13650000e+03 5.00000284e-01]\n", + " [ 2.13650000e+03 5.00000284e-01]\n", + " [ 4.18150000e+03 2.04550000e+03]\n", + " [ 4.18150000e+03 2.04550000e+03]\n", + " [ 2.26300000e+03 1.27000000e+02]\n", + " [ 2.62140000e+03 1.27000000e+02]\n", + " [ 2.97980000e+03 1.27000000e+02]\n", + " [ 3.33820000e+03 1.27000000e+02]\n", + " [ 3.69660000e+03 1.27000000e+02]\n", + " [ 4.05500000e+03 1.27000000e+02]\n", + " [ 2.26300000e+03 4.85400000e+02]\n", + " [ 2.62140000e+03 4.85400000e+02]\n", + " [ 2.97980000e+03 4.85400000e+02]\n", + " [ 3.33820000e+03 4.85400000e+02]\n", + " [ 3.69660000e+03 4.85400000e+02]\n", + " [ 4.05500000e+03 4.85400000e+02]\n", + " [ 2.26300000e+03 8.43800000e+02]\n", + " [ 2.62140000e+03 8.43800000e+02]\n", + " [ 2.97980000e+03 8.43800000e+02]\n", + " [ 3.33820000e+03 8.43800000e+02]\n", + " [ 3.69660000e+03 8.43800000e+02]\n", + " [ 4.05500000e+03 8.43800000e+02]\n", + " [ 2.26300000e+03 1.20220000e+03]\n", + " [ 2.62140000e+03 1.20220000e+03]\n", + " [ 2.97980000e+03 1.20220000e+03]\n", + " [ 3.33820000e+03 1.20220000e+03]\n", + " [ 3.69660000e+03 1.20220000e+03]\n", + " [ 4.05500000e+03 1.20220000e+03]\n", + " [ 2.26300000e+03 1.56060000e+03]\n", + " [ 2.62140000e+03 1.56060000e+03]\n", + " [ 2.97980000e+03 1.56060000e+03]\n", + " [ 3.33820000e+03 1.56060000e+03]\n", + " [ 3.69660000e+03 1.56060000e+03]\n", + " [ 4.05500000e+03 1.56060000e+03]\n", + " [ 2.26300000e+03 1.91900000e+03]\n", + " [ 2.62140000e+03 1.91900000e+03]\n", + " [ 2.97980000e+03 1.91900000e+03]\n", + " [ 3.33820000e+03 1.91900000e+03]\n", + " [ 3.69660000e+03 1.91900000e+03]\n", + " [ 4.05500000e+03 1.91900000e+03]]\n", + "DEBUG:root:optics_fp: xyfp shape: (96, 2)\n", + " [-12.91056 24.247648 ]\n", + " [-18.28656 24.247648 ]\n", + " [-23.66256 24.247648 ]\n", + " [-29.03856 24.247648 ]\n", + " [ -2.15856 18.871648 ]\n", + " [ -7.53456 18.871648 ]\n", + " [-12.91056 18.871648 ]\n", + " [-18.28656 18.871648 ]\n", + " [-23.66256 18.871648 ]\n", + " [-29.03856 18.871648 ]\n", + " [ -2.15856 13.495648 ]\n", + " [ -7.53456 13.495648 ]\n", + " [-12.91056 13.495648 ]\n", + " [-18.28656 13.495648 ]\n", + " [-23.66256 13.495648 ]\n", + " [-29.03856 13.495648 ]\n", + " [ -2.15856 8.119648 ]\n", + " [ -7.53456 8.119648 ]\n", + " [-12.91056 8.119648 ]\n", + " [-18.28656 8.119648 ]\n", + " [-23.66256 8.119648 ]\n", + " [-29.03856 8.119648 ]\n", + " [ -2.15856 2.743648 ]\n", + " [ -7.53456 2.743648 ]\n", + " [-12.91056 2.743648 ]\n", + " [-18.28656 2.743648 ]\n", + " [-23.66256 2.743648 ]\n", + " [-29.03856 2.743648 ]]\n", + "DEBUG:root:radec2pix: xyfp Shape: (96, 2)\n", + "DEBUG:root:fitpix2pix: ccdpx: shape: (96, 2)\n", + "[ 0.19425449 -0.35035308 0.9162521 ]\n", + " [ 0.21429846 -0.50823594 0.83412973]\n", + " [ 0.20493501 -0.4812243 0.85230559]\n", + " [ 0.19497144 -0.45308117 0.86988711]\n", + " [ 0.1844705 -0.42394015 0.88670479]\n", + " [ 0.17349415 -0.39394662 0.90261057]\n", + " [ 0.16210546 -0.363259 0.91747737]\n", + " [ 0.18270139 -0.52162813 0.83338125]\n", + " [ 0.17292029 -0.49455473 0.85177121]\n", + " [ 0.16260323 -0.46631449 0.86954643]\n", + " [ 0.15181176 -0.43703937 0.88653808]\n", + " [ 0.14060711 -0.40687408 0.90259799]\n", + " [ 0.12905233 -0.37597758 0.91759815]\n", + " [ 0.15028938 -0.53448433 0.83170884]\n", + " [ 0.14010987 -0.50739265 0.85024816]\n", + " [ 0.1294576 -0.47910209 0.86816008]\n", + " [ 0.11839361 -0.44974293 0.88527637]\n", + " [ 0.10697929 -0.41945898 0.90144861]\n", + " [ 0.09527849 -0.38840959 0.91654787]\n", + " [ 0.1172534 -0.54671098 0.82907102]\n", + " [ 0.10669362 -0.51964364 0.84769508]\n", + " [ 0.09572361 -0.49134913 0.86568644]\n", + " [ 0.08440476 -0.46195615 0.88287731]\n", + " [ 0.07279955 -0.43160758 0.89911908]\n", + " [ 0.06097329 -0.40046282 0.91428212]\n", + " [ 0.08378646 -0.5582235 0.82544918]\n", + " [ 0.07286494 -0.53122198 0.84409354]\n", + " [ 0.06159547 -0.50296905 0.8621068 ]\n", + " [ 0.05004058 -0.47359224 0.87932152]\n", + " [ 0.03826451 -0.44323356 0.8955891 ]\n", + " [ 0.02633445 -0.41205213 0.91077963]]\n", + "DEBUG:rDEBUG:root:radec2pix: xyfp Shape: (96, 2)\n", + "DEBUG:root:radec2pix: xyfp: [[32.275486 31.41357429]\n", + " [32.27502267 27.02714574]\n", + " [32.27455935 22.64071719]\n", + " [32.27409601 18.25428864]\n", + " [32.27363269 13.8678601 ]\n", + " [32.27316936 9.48143155]\n", + " [32.27270604 5.095003 ]\n", + " [32.27224271 0.70857446]\n", + " [32.275486 31.41357429]\n", + " [27.88905745 31.41403761]\n", + " [23.5026289 31.41450094]\n", + " [19.11620036 31.41496427]\n", + " [14.72977181 31.41542759]\n", + " [10.34334326 31.41589092]\n", + " [ 5.95691471 31.41635424]\n", + " [ 1.57048617 31.41681757]\n", + " [32.27224271 0.70857446]\n", + " [27.88581416 0.70903778]\n", + " [23.49938562 0.70950111]\n", + " [19.11295707 0.70996444]\n", + " [14.72652852 0.71042776]\n", + " [10.34009998 0.71089109]\n", + " [ 5.95367142 0.71135442]\n", + " [ 1.56724288 0.71181774]\n", + " [ 1.57048617 31.41681757]\n", + " [ 1.57002284 27.03038902]\n", + " [ 1.56955951 22.64396047]\n", + " [ 1.56909619 18.25753194]\n", + " [ 1.56863286 13.87110338]\n", + " [ 1.56816953 9.48467484]\n", + " [ 1.56770621 5.09824629]\n", + " [ 1.56724288 0.71181774]\n", + " [32.26028399 29.50107588]\n", + " [32.25971613 24.12507591]\n", + " [32.25914828 18.74907594]\n", + " [32.25858043 13.37307597]\n", + " [32.25801258 7.997076 ]\n", + " [32.25744472 2.62107603]\n", + " [30.36298443 31.3987763 ]\n", + " [24.98698446 31.39934415]\n", + " [19.61098448 31.399912 ]\n", + " [14.23498451 31.40047985]\n", + " [ 8.85898454 31.40104771]\n", + " [ 3.48298457 31.40161556]\n", + " [30.35974431 0.72377647]\n", + " [24.98374433 0.72434432]\n", + " [19.60774436 0.72491217]\n", + " [14.23174439 0.72548003]\n", + " [ 8.85574442 0.72604788]\n", + " [ 3.47974445 0.72661573]\n", + " [ 1.58528416 29.504316 ]\n", + " [ 1.5847163 24.12831603]\n", + " [ 1.58414845 18.75231606]\n", + " [ 1.5835806 13.37631609]\n", + " [ 1.58301275 8.00031612]\n", + " [ 1.5824449 2.62431615]\n", + " [32.26048441 31.39857587]\n", + " [32.26048441 31.39857587]\n", + " [ 1.58224447 0.72681616]\n", + " [ 1.58224447 0.72681616]\n", + " [30.36278399 29.50127631]\n", + " [24.98678403 29.50184416]\n", + " [19.61078405 29.50241201]\n", + " [14.23478409 29.50297987]\n", + " [ 8.85878411 29.50354772]\n", + " [ 3.48278414 29.50411557]\n", + " [30.36221615 24.12527634]\n", + " [24.98621618 24.12584419]\n", + " [19.6102162 24.12641204]\n", + " [14.23421623 24.1269799 ]\n", + " [ 8.85821626 24.12754775]\n", + " [ 3.48221629 24.1281156 ]\n", + " [30.36164829 18.74927637]\n", + " [24.98564832 18.74984422]\n", + " [19.60964835 18.75041208]\n", + " [14.23364838 18.75097993]\n", + " [ 8.85764841 18.75154778]\n", + " [ 3.48164844 18.75211563]\n", + " [30.36108043 13.3732764 ]\n", + " [24.98508046 13.37384425]\n", + " [19.60908049 13.3744121 ]\n", + " [14.23308053 13.37497996]\n", + " [ 8.85708056 13.37554781]\n", + " [ 3.48108059 13.37611567]\n", + " [30.36051258 7.99727643]\n", + " [24.98451261 7.99784428]\n", + " [19.60851265 7.99841214]\n", + " [14.23251268 7.99897999]\n", + " [ 8.85651271 7.99954784]\n", + " [ 3.48051273 8.00011569]\n", + " [30.35994473 2.62127646]\n", + " [24.98394476 2.62184431]\n", + " [19.60794479 2.62241216]\n", + " [14.23194482 2.62298002]\n", + " [ 8.85594485 2.62354787]\n", + " [ 3.47994488 2.62411572]]\n", + "oot:radec2pix: xyfp: [[ -0.167405 31.491388 ]\n", + " [ -0.167405 27.10495943]\n", + " [ -0.167405 22.71853086]\n", + " [ -0.167405 18.33210229]\n", + " [ -0.167405 13.94567372]\n", + " [ -0.167405 9.55924515]\n", + " [ -0.167405 5.17281657]\n", + " [ -0.167405 0.786388 ]\n", + " [ -0.167405 31.491388 ]\n", + " [ -4.55383357 31.491388 ]\n", + " [ -8.94026214 31.491388 ]\n", + " [-13.32669071 31.491388 ]\n", + " [-17.71311928 31.491388 ]\n", + " [-22.09954786 31.491388 ]\n", + " [-26.48597643 31.491388 ]\n", + " [-30.872405 31.491388 ]\n", + " [ -0.167405 0.786388 ]\n", + " [ -4.55383357 0.786388 ]\n", + " [ -8.94026214 0.786388 ]\n", + " [-13.32669071 0.786388 ]\n", + " [-17.71311929 0.786388 ]\n", + " [-22.09954786 0.786388 ]\n", + " [-26.48597643 0.786388 ]\n", + " [-30.872405 0.786388 ]\n", + " [-30.872405 31.491388 ]\n", + " [-30.872405 27.10495943]\n", + " [-30.872405 22.71853086]\n", + " [-30.872405 18.33210229]\n", + " [-30.872405 13.94567371]\n", + " [-30.872405 9.55924514]\n", + " [-30.872405 5.17281657]\n", + " [-30.872405 0.786388 ]\n", + " [ -0.182405 29.578888 ]\n", + " [ -0.182405 24.202888 ]\n", + " [ -0.182405 18.826888 ]\n", + " [ -0.182405 13.450888 ]\n", + " [ -0.182405 8.074888 ]\n", + " [ -0.182405 2.698888 ]\n", + " [ -2.079905 31.476388 ]\n", + " [ -7.455905 31.476388 ]\n", + " [-12.831905 31.476388 ]\n", + " [-18.207905 31.476388 ]\n", + " [-23.583905 31.476388 ]\n", + " [-28.959905 31.476388 ]\n", + " [ -2.079905 0.801388 ]\n", + " [ -7.45590DEBUG:root:optics_fp: xyfp: [[ 0.236018 -31.56946754]\n", + " [ 0.23651287 -27.18303899]\n", + " [ 0.23700774 -22.79661046]\n", + " [ 0.23750261 -18.41018192]\n", + " [ 0.23799748 -14.02375336]\n", + " [ 0.23849235 -9.63732482]\n", + " [ 0.23898721 -5.25089628]\n", + " [ 0.23948208 -0.86446773]\n", + " [ 0.236018 -31.56946754]\n", + " [ 4.62244655 -31.56996241]\n", + " [ 9.00887509 -31.57045728]\n", + " [ 13.39530363 -31.57095214]\n", + " [ 17.78173218 -31.57144701]\n", + " [ 22.16816072 -31.57194188]\n", + " [ 26.55458927 -31.57243675]\n", + " [ 30.94101781 -31.57293162]\n", + " [ 0.23948208 -0.86446773]\n", + " [ 4.62591062 -0.8649626 ]\n", + " [ 9.01233917 -0.86545747]\n", + " [ 13.39876771 -0.86595234]\n", + " [ 17.78519626 -0.86644721]\n", + " [ 22.1716248 -0.86694208]\n", + " [ 26.55805334 -0.86743695]\n", + " [ 30.94448189 -0.86793181]\n", + " [ 30.94101781 -31.57293162]\n", + " [ 30.94151268 -27.18650307]\n", + " [ 30.94200754 -22.80007453]\n", + " [ 30.94250242 -18.41364599]\n", + " [ 30.94299728 -14.02721745]\n", + " [ 30.94349215 -9.6407889 ]\n", + " [ 30.94398702 -5.25436036]\n", + " [ 30.94448189 -0.86793181]\n", + " [ 0.25123377 -29.65696924]\n", + " [ 0.25184028 DEBUG:root:mm_to_pix: fitpx: [[0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]]\n", + "DEBUG:root:radec2pix: xyfp Shape: (96, 2)\n", + "-24.28096928]\n", + " [ 0.25244679 -18.90496931]\n", + " [ 0.2530533 -13.52896935]\n", + " [ 0.25365981 -8.15296938]\n", + " [ 0.25426632 -2.77696942]\n", + " [ 2.14851968 -31.5546833 ]\n", + " [ 7.52451965 -31.55528981]\n", + " [ 12.90051962 -31.55589633]\n", + " [ 18.27651958 -31.55650284]\n", + " [ 23.65251954 -31.55710934]\n", + " [ 29.02851952 -31.55771586]\n", + " [ 2.15198038 -0.8796835 ]\n", + " [ 7.52798035 -0.88029001]\n", + " [ 12.90398031 -0.88089652]\n", + " [ 18.27998027 -0.88150303]\n", + " [ 23.65598025 -0.88210954]\n", + " [ 29.03198021 -0.88271605]\n", + " [ 30.92623357 -29.66042994]\n", + " [ 30.92684009 -24.28442998]\n", + " [ 30.9274466 -18.90843001]\n", + " [ 30.9280531 -13.53243004]\n", + " [ 30.92865961 -8.15643008]\n", + " [ 30.92926612 -2.78043011]\n", + " [ 0.2510197 -31.55446923]\n", + " [ 0.2510197 -31.55446923]\n", + " [ 30.9294802 -0.88293012]\n", + " [ 30.9294802 -0.88293012]\n", + " [ 2.14873376 -29.65718332]\n", + " [ 7.52473372 -29.65778983]\n", + " [ 12.90073369 -29.65839633]\n", + " [ 18.27673365 -29.65900285]\n", + " [ 23.65273362 -29.65960936]\n", + " [ 29.02873359 -29.66021587]\n", + " [ 2.14934027 -24.28118335]\n", + " [ 7.52534023 -24.28178986]\n", + " [ 12.9013402 -24.28239637]\n", + " [ 18.27734016 -24.28300288]\n", + " [ 23.5 0.801388 ]\n", + " [-12.831905 0.801388 ]\n", + " [-18.207905 0.801388 ]\n", + " [-23.583905 0.801388 ]\n", + " [-28.959905 0.801388 ]\n", + " [-30.857405 29.578888 ]\n", + " [-30.857405 24.202888 ]\n", + " [-30.857405 18.826888 ]\n", + " [-30.857405 13.450888 ]\n", + " [-30.857405 8.074888 ]\n", + " [-30.857405 2.698888 ]\n", + " [ -0.182405 31.476388 ]\n", + " [ -0.182405 31.476388 ]\n", + " [-30.857405 0.801388 ]\n", + " [-30.857405 0.801388 ]\n", + " [ -2.079905 29.578888 ]\n", + " [ -7.455905 29.578888 ]\n", + " [-12.831905 29.578888 ]\n", + " [-18.207905 29.578888 ]\n", + " [-23.583905 29.578888 ]\n", + " [-28.959905 29.578888 ]\n", + " [ -2.079905 24.202888 ]\n", + " [ -7.455905 24.202888 ]\n", + " [-12.831905 24.202888 ]\n", + " [-18.207905 24.202888 ]\n", + " [-23.583905 24.202888 ]\n", + " [-28.959905 24.202888 ]\n", + " [ -2.079905 18.826888 ]\n", + " [ -7.455905 18.826888 ]\n", + " [-12.831905 18.826888 ]\n", + " [-18.207905 18.826888 ]\n", + " [-23.583905 18.826888 ]\n", + " [-28.959905 18.826888 ]\n", + " [ -2.079905 13.450888 ]\n", + " [ -7.455905 13.450888DEBUG:root:radec2pix: curVec Shape: (96, 3)\n", + " ]\n", + " [-12.831905 13.450888 ]\n", + " [-18.207905 13.450888 ]\n", + " [-23.583905 13.450888 ]\n", + " [-28.959905 13.450888 ]\n", + " [ -2.079905 8.074888 ]\n", + " [ -7.455905 8.074888 ]\n", + " [-12.831905 8.074888 ]\n", + " [-18.20790499 8.074888 ]\n", + " [-23.583905 8.074888 ]\n", + " [-28.959905 8.074888 ]\n", + " [ -2.079905 2.698888 ]\n", + " [ -7.455905 2.698888 ]\n", + " [-12.831905 2.698888 ]\n", + " [-18.207905 2.698888 ]\n", + " [-23.583905 2.698888 ]\n", + " [-28.959905 2.698888 ]]\n", + "DEBUG:root:mm_to_pix: fitpx: [[0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]DEBUG:root:cartToSphere: vec: [[0.20658103 0.20098859 0.9575635 ]\n", + " [0.20838989 0.17447006 0.96235848]\n", + " [0.20993522 0.14727238 0.9665599 ]\n", + " [0.21121099 0.11949936 0.97010815]\n", + " [0.21221385 0.09125926 0.97295274]\n", + " [0.21294172 0.06266255 0.97505345]\n", + " [0.21339307 0.03382097 0.97638084]\n", + " [0.21356684 0.00484709 0.97691643]\n", + " [0.20658103 0.20098859 0.9575635 ]\n", + " [0.18015754 0.20282418 0.96249967]\n", + " [0.1530338 0.20440426 0.96685033]\n", + " [0.12531307 0.20572264 0.97055388]\n", + " [0.09710338 0.20677589 0.97355774]\n", + " [0.06851504 0.2075618 0.97581955]\n", + " [0.03965966 0.2080787 0.97730771]\n", + " [0.01064976 0.20832528 0.97800162]\n", + " [0.21356684 0.00484709 0.97691643]\n", + " [0.18621882 0.00490326 0.98249606]\n", + " [0.15815829 0.00495363 0.98740135]\n", + " [0.12949192 0.00499813 0.99156788]\n", + " [0.10032565 0.0050366 0.99494191]\n", + " [0.07076705 0.00506881 0.99747999]\n", + " [0.04092766 0.00509451 0.99914912]\n", + " [0.01092393 0.00511348 0.99992726]\n", + " [0.01064976 0.20832528 0.97800162]\n", + " [0.01072986 0.18083307 0.98345527]\n", + " [0.01079662 0.15264908 0.98822148]\n", + " [0.01085001 0.12387974 0.99223792]\n", + " [0.01088978 0.09463112 0.99545284]\n", + " [0.0109156 0.06501141 0.99782482]\n", + " [0.01092708 0.0351331 0.9993229 ]\n", + " [0.01092393 0.00511348 0.99992726]\n", + " [0.20731213 0.18952259 0.95974104]\n", + " [0.20935192 0.15655094 0.96522722]\n", + " [0.21098964 0.12266162 0.96976157]\n", + " [0.21221814 0.08805229 0.97324727]\n", + " [0.21303349 0.05292621 0.97561035]\n", + " [0.21343308 0.01748945 0.97680113]\n", + " [0.19515895 0.20172997 0.95980102]\n", + " [0.16228971 0.20380791 0.96546589]\n", + " [0.12847052 0.20549566 0.97018908]\n", + " [0.09389848 0.20678588 0.97386995]\n", + " [0.05877657 0.20767444 0.97643056]\n", + " [0.02331064 0.20815839 0.97781731]\n", + " [0.20173739 0.00497187 0.97942703]\n", + " [0.16772694 0.00503783 0.98582062]\n", + " [0.13275239 0.00509482 0.99113614]\n", + " [0.09700904 0.00514259 0.99527021]\n", + " [0.06069518 0.00518073 0.9981429 ]\n", + " [0.02401827 0.00520877 0.99969795]\n", + " [0.01078606 0.19643015 0.98045849]\n", + " [0.01087623 0.16225698 0.98668859]\n", + " [0.01094616 0.1271506 0.99182302]\n", + " [0.01099551 0.09130636 0.99576214]\n", + " [0.01102363 0.0549237 0.9984297 ]\n", + " [0.01102984 0.01821176 0.99977331]\n", + " [0.2064986 0.20090587 0.95759864]\n", + " [0.2064986 0.20090587 0.95759864]\n", + " [0.01102671 0.00521618 0.9999256 ]\n", + " [0.01102671 0.00521618 0.9999256 ]\n", + " [0.19592714 0.19029998 0.96197634]\n", + " [0.16292559 0.19225876 0.96772508]\n", + " [0.1289709 0.19384904 0.97251687]\n", + " [0.09426176 0.19506507 0.97625014]\n", + " [0.0590016 0.19590316 0.97884665]\n", + " [0.02339654 0.19636024 0.98025265]\n", + " [0.19785166 0.15719218 0.96754604]\n", + " [0.16451646 0.15880644 0.97350647]\n", + " [0.13022261 0.16011755 0.97847046]\n", + " [0.09517088 0.16112232 0.98233503]\n", + " [0.05956467 0.16181718 0.98502145]\n", + " [0.02361044 0.1621981 0.98647571]\n", + " [0.19939573 0.12316354 0.97214818]\n", + " [0.16579218 0.12442767 0.97827946]\n", + " [0.13122742 0.12545686 0.98338189]\n", + " [0.09590173 0.12624866 0.98735208]\n", + " [0.06001727 0.12679897 0.99011108]\n", + " [0.02378066 0.1271029 0.99160442]\n", + " [0.20055377 0.08841323 0.97568503]\n", + " [0.16674959 0.08932369 0.98194493]\n", + " [0.13198281 0.09006766 0.98715164]\n", + " [0.09645193 0.09064294 0.99120174]\n", + " [0.06035751 0.0910454 0.99401595]\n", + " [0.0239064 0.09127018 0.99553917]\n", + " [0.20132229 0.05314506 0.97808228]\n", + " [0.16738526 0.05369842 0.98442808]\n", + " [0.13248471 0.05415286 0.98970464]\n", + " [0.09681723 0.05450669 0.99380856]\n", + " [0.06058199 0.05475678 0.99666018]\n", + " [0.02398618 0.05489951 0.99820374]\n", + " [0.20169858 0.0175654 0.97929012]\n", + " [0.16769559 0.01775879 0.98567886]\n", + " [0.13272857 0.01791986 0.99099042]\n", + " [0.09699294 0.01804791 0.99512142]\n", + " [0.06068709 0.01814173 0.99799196]\n", + " [0.02401844 0.01819993 0.99954584]]\n", + "DEBUG:root:fitpix2pix: visCut: True\n", + "DEBUG:root:mm_to_pix: fitpx: [[0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]]\n", + "DEBUG:root:cartToSphere: vec: [[0.20622014 0.20255556 0.95731108]\n", + " [0.20805053 0.17610143 0.96213474]\n", + " [0.20961035 0.14895462 0.96637261]\n", + " [0.210899 0.12122494 0.96996192]\n", + " [0.21191543 0.09302239 0.9728508 ]\n", + " [0.21265818 0.06445739 0.97499833]\n", + " [0.21312568 0.03564119 0.97637449]\n", + " [0.21331667 0.00668594 0.97696023]\n", + " [0.20622014 0.20255556 0.95731108]\n", + " [0.17982824 0.20441077 0.96222557]\n", + " [0.1527297 0.20600074 0.96655954]\n", + " [0.12503427 0.2073248 0.97024886]\n", + " [0.09685185 0.20838186 0.97324032]\n", + " [0.06829276 0.20917033 0.97549161]\n", + " [0.03946812 0.20968847 0.97697135]\n", + " [0.01049004 DEBUG:root:mm_to_pix: fitpx.shape: (96, 2)\n", + "0.20993479 0.97765911]\n", + " [0.21331667 0.00668594 0.97696023]\n", + " [0.18597713 0.00675821 0.98253083]\n", + " [0.1579279 0.00682246 0.98742708]\n", + " [0.12927353 0.00687853 0.99158512]\n", + " [0.10011961 0.00692617 0.9949513 ]\n", + " [0.07057467 0.0069651 0.99748218]\n", + " [0.04075124 0.00699507 0.99914484]\n", + " [0.01076573 0.00701584 0.99991744]\n", + " [0.01049004 0.20993479 0.97765911]\n", + " [0.01056977 0.18250233 0.9831486 ]\n", + " [0.01063642 0.15437326 0.98795534]\n", + " [0.01068985 0.12565215 0.99201677]\n", + " [0.01072978 0.09644485 0.99528049]\n", + " [0.01075592 0.06686038 0.99770436]\n", + " [0.01076796 0.03701177 0.99925681]\n", + " [0.01076573 0.00701584 0.99991744]\n", + " [0.20696213 0.19112005 0.95949977]\n", + " [0.20902258 0.15821703 0.96502691]\n", + " [0.21067623 0.12438266 0.96961048]\n", + " [0.21192136 0.08981934 0.97315046]\n", + " [0.21275532 0.05473042 0.9755715 ]\n", + " [0.21317532 0.0193211 0.9768229 ]\n", + " [0.1948134 0.20330747 0.95953833]\n", + " [0.16197729 0.20540191 0.96518051]\n", + " [0.1281888 0.20709749 0.96988569]\n", + " [0.09365018 0.2083924 0.97355136]\n", + " [0.05856456 0.20928375 0.97609964]\n", + " [0.02313694 0.20976841 0.97747731]\n", + " [0.20149034 0.00681796 0.97946677]\n", + " [0.16749252 0.00690216 0.98584919]\n", + " [0.1325326 0.00697398 0.99115411]\n", + " [0.09680441 0.00703299 0.99527858]\n", + " [0.0605079 0.00707868 0.99814262]\n", + " [0.02385188 0.00711058 0.99969022]\n", + " [0.01062602 0.19806614 0.98013106]\n", + " [0.01071595 0.16396327 0.98640824]\n", + " [0.0107859 0.12891793 0.99159661]\n", + " [0.01083545 0.09312436 0.99559552]\n", + " [0.01086402 0.05678335 0.99832741]\n", + " [0.01087112 0.02010461 0.99973878]\n", + " [0.20613793 0.2024732 0.95734621]\n", + " [0.20613793 0.2024732 0.95734621]\n", + " [0.01086844 0.00711848 0.9999156 ]\n", + " [0.01086844 0.00711848 0.9999156 ]\n", + " [0.19558949 0.19190537 0.96172609]\n", + " [0.1626169 0.19387759 0.96745399]\n", + " [0.12869151 0.19547539 0.9722283 ]\n", + " [0.09401511 0.1966967 0.9759465 ]\n", + " [0.05879055 0.19753824 0.97853069]\n", + " [0.02322296 0.19799645 0.9799276 ]\n", + " [0.19753009 0.15886347 0.96733875]\n", + " [0.16421774 0.1604891 0.97328094]\n", + " [0.12995114 0.1618095 0.97822819]\n", + " [0.09493033 0.16282181 0.DEBUG:root:mm_to_pix: fitpx.shape: (96, 2)\n", + "98207805]\n", + " [0.05935726 0.16352163 0.98475245]\n", + " [0.02343764 0.16390447 0.98619775]\n", + " [0.19908829 0.12488974 0.97199095]\n", + " [0.16550536 0.12616714 0.97810522]\n", + " [0.13096617 0.12720791 0.98319175]\n", + " [0.09566871 0.12800859 0.98714806]\n", + " [0.05981412 0.1285643 0.9898957 ]\n", + " [0.02360896 0.12887024 0.99138039]\n", + " [0.20026215 0.09018615 0.97558266]\n", + " [0.16647694 0.09111203 0.98182688]\n", + " [0.13173312 0.09186896 0.98701899]\n", + " [0.09622682 0.09245358 0.99105637]\n", + " [0.06015857 0.0928614 0.99386 ]\n", + " [0.02373584 0.09308815 0.99537491]\n", + " [0.20104857 0.05495583 0.97803851]\n", + " [0.16712825 0.05552612 0.98437036]\n", + " [0.13224724 0.05599434 0.98963392]\n", + " [0.09660024 0.05635799 0.99372641]\n", + " [0.06038739 0.05661388 0.99656823]\n", + " [0.02381698 0.05675899 0.99810379]\n", + " [0.20144435 0.01940412 0.97930774]\n", + " [0.16745515 0.01961547 0.98568454]\n", + " [0.13250401 0.01979108 0.99098486]\n", + " [0.09678486 0.01992994 0.99510577]\n", + " [0.06049766 0.02003078 0.99796733]\n", + " [0.02385117 0.02009239 0.99951359]]\n", + "65334013 -24.28360939]\n", + " [ 29.02934009 -24.2842159 ]\n", + " [ 2.14994678 -18.90518338]\n", + " [ 7.52594674 -18.90578989]\n", + " [ 12.90194671 -18.9063964 ]\n", + " [ 18.27794667 -18.90700292]\n", + " [ 23.65394664 -18.90760943]\n", + " [ 29.0299466 -18.90821593]\n", + " [ 2.15055329 -13.52918342]\n", + " [ 7.52655325 -13.52978993]\n", + " [ 12.90255322 -13.53039644]\n", + " [ 18.27855318 -13.53100295]\n", + " [ 23.65455315 -13.53160946]\n", + " [ 29.03055312 -13.53221597]\n", + " [ 2.1511598 -8.15318346]\n", + " [ 7.52715976 -8.15378996]\n", + " [ 12.90315973 -8.15439647]\n", + " [ 18.27915969 -8.15500298]\n", + " [ 23.65515966 -8.15560949]\n", + " [ 29.03115962 -8.156216 ]\n", + " [ 2.1517663 -2.77718348]\n", + " [ 7.52776627 -2.77779 ]\n", + " [ 12.90376624 -2.77839651]\n", + " [ 18.2797662 -2.77900302]\n", + " [ 23.65576617 -2.77960953]\n", + " [ 29.03176613 -2.78021604]]\n", + "DEBUG:root:radec2pix: lng: [44.21386846 39.93704685 35.05017674 29.50039724 23.26936887 16.39762201\n", + " 9.00597869 1.30015678 44.21386846 48.38707907 53.17846261 58.652901\n", + " 64.84492629 71.73221904 79.20889503 87.07353952 1.30015678 1.50828626\n", + " 1.79395925 2.21040578 2.87397756 4.09690845 7.09544794 25.08421915\n", + " 87.07353952 86.60429547 85.95429853 84.99452258 83.43549808 80.46877478\n", + " 72.72327889 25.08421915 42.4332296 36.78871515 30.1721461 22.534249\n", + " 13.95213213 4.68455031 45.9485209 51.4701262 57.98745342 65.57788622\n", + " 74.19728483 83.61034654 1.41178444 1.72041252 2.19784005 3.03449456\n", + " 4.87874528 12.23608945 86.85702241 86.16514834 85.07964235 83.13325955\n", + " 78.65106614 58.79906907 44.21351009 44.21351009 25.31647093 25.31647093\n", + " 44.16528338 49.72110165 56.36353517 64.20866184 73.23888739 83.20517984\n", + " 38.4669715 43.98823734 50.87875671 59.43072848 69.79141059 81.71788613\n", + " 31.70295803 36.8883708 43.71214181 52.77876171 64.67058062 79.40261268\n", + " 23.79006954 28.17687017 34.3103939 43.22163096 56.45806862 75.32225144\n", + " 14.78760738 17.78662299 22.23218915 29.3788791 42.10872179 66.39896872\n", + " 4.97718101 6.0450351 7.68908472 10.5407344 16.64345121 37.15297361]\n", + "DEBUG:root:optics_fp: xyfp shape: (96, 2)\n", + "DEBUG:root:radec2pix: ccdpx: [[-4.45000000e+01 -4.99999838e-01]\n", + " [-4.45000000e+01 2.91928571e+02]\n", + " [-4.45000000e+01 5.84357142e+02]\n", + " [-4.45000000e+01 8.76785714e+02]\n", + " [-4.45000000e+01 1.16921429e+03]\n", + " [-4.45000000e+01 1.46164286e+03]\n", + " [-4.45000000e+01 1.75407143e+03]\n", + " [-4.45000001e+01 2.04650000e+03]\n", + " [-4.45000000e+01 -4.99999838e-01]\n", + " [ 2.47928571e+02 -5.00000127e-01]\n", + " [ 5.40357143e+02 -4.99999855e-01]\n", + " [ 8.32785714e+02 -4.99999742e-01]\n", + " [ 1.12521429e+03 -4.99999752e-01]\n", + " [ 1.41764286e+03 -5.00000255e-01]\n", + " [ 1.71007143e+03 -4.99999843e-01]\n", + " [ 2.00250000e+03 -5.00000108e-01]\n", + " [-4.45000001e+01 2.04650000e+03]\n", + " [ 2.47928572e+02 2.04650000e+03]\n", + " [ 5.40357143e+02 2.04650000e+03]\n", + " [ 8.32785714e+02 2.04650000e+03]\n", + " [ 1.12521429e+03 2.04650000e+03]\n", + " [ 1.41764286e+03 2.04650000e+03]\n", + " [ 1.71007143e+03 2.04650000e+03]\n", + " [ 2.00250000e+03 2.04650000e+03]\n", + " [ 2.00250000e+03 -5.00000108e-01]\n", + " [ 2.00250000e+03 2.91928571e+02]\n", + " [ 2.00250000e+03 5.84357143e+02]\n", + " [ 2.00250000e+03 8.76785714e+02]\n", + " [ 2.00250000e+03 1.16921429e+03]\n", + " [ 2.00250000e+03 1.46164286e+03]\n", + " [ 2.00250000e+03 1.75407143e+03]\n", + " [ 2.00250000e+03 2.04650000e+03]\n", + " [-4.35000000e+01 1.27000000e+02]\n", + " [-4.35000000e+01 4.85400000e+02]\n", + " [-4.35000000e+01 8.43800000e+02]\n", + " [-4.35000000e+01 1.20220000e+03]\n", + " [-4.35000000e+01 1.56060000e+03]\n", + " [-4.35000000e+01 1.91900000e+03]\n", + " [ 8.30000000e+01 5.00000282e-01]\n", + " [ 4.41400000e+02 4.99999845e-01]\n", + " [ 7.99800000e+02 4.99999800e-01]\n", + " [ 1.15820000e+03 4.99999731e-01]\n", + " [ 1.51660000e+03 5.00000238e-01]\n", + " [ 1.87500000e+03 4.99999813e-01]\n", + " [ 8.30000000e+01 2.04550000e+03]\n", + " [ 4.41400000e+02 2.04550000e+03]\n", + " [ 7.99800000e+02 2.04550000e+03]\n", + " [ 1.15820000e+03 2.04550000e+03]\n", + " [ 1.51660000e+03 2.04550000e+03]\n", + " [ 1.87500000e+03 2.04550000e+03]\n", + " [ 2.00150000e+03 1.27000000e+02]\n", + " [ 2.00150000e+03 4.85400000e+02]\n", + " [ 2.00150000e+03 8.43800000e+02]\n", + " [ 2.00150000e+03 1.20220000e+03]\n", + " [ 2.00150000e+03 1.56060000e+03]\n", + " [ 2.00150000e+03 1.91900000e+03]\n", + " [-4.35000000e+01 5.00000147e-01]\n", + " [-4.35000000e+01 5.00000147e-01]\n", + " [ 2.00150000e+03 2.04550000e+03]\n", + " [ 2.00150000e+03 2.04550000e+03]\n", + " [ 8.30000000e+01 1.27000000e+02]\n", + " [ 4.41400000e+02 1.27000000e+02]\n", + " [ 7.99800000e+02 1.27000000e+02]\n", + " [ 1.15820000e+03 1.27000000e+02]\n", + " [ 1.51660000e+03 1.27000000e+02]\n", + " [ 1.87500000e+03 1.27000000e+02]\n", + " [ 8.30000000e+01 4.85400000e+02]\n", + " [ 4.41400000e+02 4.85400000e+02]\n", + " [ 7.99800000e+02 4.85400000e+02]\n", + " [ 1.15820000e+03 4.85400000e+02]\n", + " [ 1.51660000e+03 4.85400000e+02]\n", + " [ 1.87500000e+03 4.85400000e+02]\n", + " [ 8.30000000e+01 8.43800000e+02]\n", + " [ 4.41400000e+02 8.43800000e+02]\n", + " [ 7.99800000e+02 8.43800000e+02]\n", + " [ 1.15820000e+03 8.43800000e+02]\n", + " [ 1.51660000e+03 8.43800000e+02]\n", + " [ 1.87500000e+03 8.43800000e+02]\n", + " [ 8.30000000e+01 1.20220000e+03]\n", + " [ 4.41400000e+02 1.20220000e+03]\n", + " [ 7.99800000e+02 1.20220000e+03]\n", + " [ 1.15820000e+03 1.20220000e+03]\n", + " [ 1.51660000e+03 1.20220000e+03]\n", + " [ 1.87500000e+03 1.20220000e+03]\n", + " [ 8.30000000e+01 1.56060000e+03]\n", + " [ 4.41400000e+02 1.56DEBUG:root:make_az_asym: xyp: [[ 0.16415906 -31.72847131]\n", + " [ 0.16601788 -27.34204313]\n", + " [ 0.1678767 -22.95561497]\n", + " [ 0.16973552 -18.56918678]\n", + " [ 0.17159434 -14.1827586 ]\n", + " [ 0.17345315 -9.79633043]\n", + " [ 0.17531197 -5.40990225]\n", + " [ 0.17717079 -1.02347407]\n", + " [ 0.16415906 -31.72847131]\n", + " [ 4.55058724 -31.73033014]\n", + " [ 8.93701541 -31.73218895]\n", + " [ 13.32344359 -31.73404778]\n", + " [ 17.70987177 -31.73590659]\n", + " [ 22.09629995 -31.73776541]\n", + " [ 26.48272812 -31.73962422]\n", + " [ 30.8691563 -31.74148305]\n", + " [ 0.17717079 -1.02347407]\n", + " [ 4.56359897 -1.02533289]\n", + " [ 8.95002714 -1.02719171]\n", + " [ 13.33645532 -1.02905053]\n", + " [ 17.7228835 -1.03090935]\n", + " [ 22.10931168 -1.03276817]\n", + " [ 26.49573986 -1.03462699]\n", + " [ 30.88216803 -1.0364858 ]\n", + " [ 30.8691563 -31.74148305]\n", + " [ 30.87101512 -27.35505487]\n", + " [ 30.87287394 -22.96862669]\n", + " [ 30.87473276 -18.58219851]\n", + " [ 30.87659158 -14.19577034]\n", + " [ 30.8784504 -9.80934216]\n", + " [ 30.88030922 -5.42291398]\n", + " [ 30.88216803 -1.0364858 ]\n", + " [ 0.17996951 -29.81597784]\n", + " [ 0.18224768 -24.43997833]\n", + " [ 0.18452584 -19.06397881]\n", + " [ 0.18680401 -13.6879793 ]\n", + " [ 0.18908217 -8.31197977]\n", + " [ 0.19136034 -2.93598025]\n", + " [ 2.07666524 -31.71428177]\n", + " [ 7.45266476 -31.71655993]\n", + " [ 12.82866428 -31.7188381 ]\n", + " [ 18.2046638 -31.72111627]\n", + " [ 23.58066331 -31.72339443]\n", + " [ 28.95666283 -31.7256726 ]\n", + " [ 2.08966426 -1.03928452]\n", + " [ 7.46566378 -1.04156269]\n", + " [ 12.8416633 -1.04384085]\n", + " [ 18.21766282 -1.04611902]\n", + " [ 23.59366233 -1.04839718]\n", + " [ 28.96966185 -1.05067535]\n", + " [ 30.85496675 -29.82897686]\n", + " [ 30.85724492 -24.45297735]\n", + " [ 30.85952308 -19.07697783]\n", + " [ 30.86180126 -13.70097831]\n", + " [ 30.86407941 -8.32497879]\n", + " [ 30.86635759 -2.94897928]\n", + " [ 0.17916541 -31.71347767]\n", + " [ 0.17916541 -31.71347767]\n", + " [ 30.86716168 -1.05147945]\n", + " [ 30.86716168 -1.05147945]\n", + " [ 2.07746934 -29.81678193]\n", + " [ 7.45346886 -29.8190601 ]\n", + " [ 12.82946837 -29.82133827]\n", + " [ 18.20546789 -29.82361643]\n", + " [ 23.58146741 -29.82589461]\n", + " [ 28.95746693 -29.82817277]\n", + " [ 2.07974751 -24.44078242]\n", + " [ 7.45574702 -24.44306058DEBUG:root:radec2pix: lng: [44.48637088 40.24577336 35.3986005 29.89032997 23.69955042 16.86222735\n", + " 9.49377237 1.79522173 44.48637088 48.66063412 53.44662754 58.90649312\n", + " 65.0719071 71.9184746 79.34035003 87.13941954 1.79522173 2.08115239\n", + " 2.4736322 3.04578526 3.95735654 5.6363423 9.74006464 33.09159725\n", + " 87.13941954 86.68537287 86.05851166 85.13727473 83.65177634 80.86105503\n", + " 73.77851938 33.09159725 42.72105973 37.1234454 30.55748427 22.96885005\n", + " 14.42630836 5.17884001 46.22224274 51.74114431 58.24340245 65.80116251\n", + " 74.36661193 83.70585675 1.93801443 2.35975361 3.01217367 4.15532416\n", + " 6.6725739 16.60005947 86.92909007 86.26070822 85.21749379 83.36321455\n", + " 79.16883097 61.59868241 44.48614146 44.48614146 33.22349754 33.22349754\n", + " 44.45527608 50.01139871 56.64103308 64.45360362 73.42615136 83.31035484\n", + " 38.80796323 44.3420957 51.23163704 59.75644459 70.04944098 81.86211477\n", + " 32.10039047 37.31880048 44.16600061 53.22697224 65.04995068 79.6185637\n", + " 24.24396698 28.69167771 34.89141577 43.85434751 57.06355174 75.69539259\n", + " 15.28811193 18.37837592 22.94811312 30.25991115 43.15274514 67.23630391\n", + " 5.50203766 6.68110194 8.4950185 11.63570463 18.3197087 40.11102427]\n", + "]\n", + " [ 12.83174654 -24.44533875]\n", + " [ 18.20774606 -24.44761692]\n", + " [ 23.58374558 -24.44989508]\n", + " [ 28.95974509 -24.45217325]\n", + " [ 2.08202567 -19.0647829 ]\n", + " [ 7.45802519 -19.06706107]\n", + " [ 12.83402471 -19.06933924]\n", + " [ 18.21002422 -19.0716174 ]\n", + " [ 23.58602374 -19.07389557]\n", + " [ 28.96202325 -19.07617373]\n", + " [ 2.08430384 -13.68878339]\n", + " [ 7.46030335 -13.69106155]\n", + " [ 12.83630287 -13.69333972]\n", + " [ 18.21230239 -13.69561789]\n", + " [ 23.58830191 -13.69789605]\n", + " [ 28.96430143 -13.70017422]\n", + " [ 2.086582 -8.31278387]\n", + " [ 7.46258152 -8.31506203]\n", + " [ 12.83858103 -8.3173402 ]\n", + " [ 18.21458055 -8.31961837]\n", + " [ 23.59058007 -8.32189653]\n", + " [ 28.96657959 -8.3241747 ]\n", + " [ 2.08886017 -2.93678435]\n", + " [ 7.46485969 -2.93906252]\n", + " [ 12.8408592 -2.94134068]\n", + " [ 18.21685872 -2.94361885]\n", + " [ 23.59285824 -2.94589701]\n", + " [ 28.96885776 -2.9DEBUG:root:radec2pix: camVec: [[0.20622014 0.20805053 0.20961035 0.210899 0.21191543 0.21265818\n", + " 0.21312568 0.21331667 0.20622014 0.17982824 0.1527297 0.12503427\n", + " 0.09685185 0.06829276 0.03946812 0.01049004 0.21331667 0.18597713\n", + " 0.1579279 0.12927353 0.10011961 0.07057467 0.04075124 0.01076573\n", + " 0.01049004 0.01056977 0.01063642 0.01068985 0.01072978 0.01075592\n", + " 0.01076796 0.01076573 0.20696213 0.20902258 0.21067623 0.21192136\n", + " 0.21275532 0.21317532 0.1948134 0.16197729 0.1281888 0.09365018\n", + " 0.05856456 0.02313694 0.20149034 0.16749252 0.1325326 0.09680441\n", + " 0.0605079 0.02385188 0.01062602 0.01071595 0.0107859 0.01083545\n", + " 0.01086402 0.01087112 0.20613793 0.20613793 0.01086844 0.01086844\n", + " 0.19558949 0.1626169 0.12869151 0.09401511 0.05879055 0.02322296\n", + " 0.19753009 0.16421774 0.12995114 0.09493033 0.05935726 0.02343764\n", + " 0.19908829 0.16550536 0.13096617 0.09566871 0.05981412 0.02360896\n", + " 0.20026215 0.16647694 0.13173312 0.09622682 0.06015857 0.02373584\n", + " 0.20104857 0.167\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]]\n", + "060000e+03]\n", + " [ 7.99800000e+02 1.56060000e+03]\n", + " [ 1.15820000e+03 1.56060000e+03]\n", + " [ 1.51660000e+03 1.56060000e+03]\n", + " [ 1.87500000e+03 1.56060000e+03]\n", + " [ 8.30000000e+01 1.91900000e+03]\n", + " [ 4.41400000e+02 1.91900000e+03]\n", + " [ 7.99800000e+02 1.91900000e+03]\n", + " [ 1.15820000e+03 1.91900000e+03]\n", + " [ 1.51660000e+03 1.91900000e+03]\n", + " [ 1.87500000e+03 1.91900000e+03]]\n", + "DEBUG:root:radec2pix: xyfp: [[32.275486 31.41357429]\n", + " [32.27502267 27.02714574]\n", + " [32.27455935 22.64071719]\n", + " [32.27409601 18.25428864]\n", + " [32.27363269 13.8678601 ]\n", + " [32.27316936 9.48143155]\n", + " [32.27270604 5.095003 ]\n", + " [32.27224271 0.70857446]\n", + " [32.275486 31.41357429]\n", + " [27.88905745 31.41403761]\n", + " [23.5026289 31.41450094]\n", + " [19.11620036 31.41496427]\n", + " [14.72977181 31.41542759]\n", + " [10.34334326 31.41589092]\n", + " [ 5.95691471 31.41635424]\n", + " [ 1.57048617 31.41681757]\n", + " [32.27224271 0.70857446]\n", + " [27.88581416 0.70903778]\n", + " [23.49938562 0.70950111]\n", + " [19.11295707 0.70996444]\n", + " [14.72652852 0.71042776]\n", + " [10.34009998 0.71089109]\n", + " [ 5.95367142 0.71135442]\n", + " [ 1.56724288 0.71181774]\n", + " [ 1.57048617 31.41681757]\n", + " [ 1.57002284 27.03038902]\n", + " [ 1.56955951 22.64396047]\n", + " [ 1.56909619 18.25753194]\n", + " [ 1.56863286 13.87110338]\n", + " [ 1.56816953 9.48467484]\n", + " [ 1.56770621 5.09824629]\n", + " [ 1.56724288 0.71181774]\n", + " [32.26028399 29.50107588]\n", + " [32.25971613 24.12507591]\n", + " [32.25914828 18.74907594]\n", + " [32.25858043 13.37307597]\n", + " [32.25801258 7.997076 ]\n", + " [32.25744472 2.62107603]\n", + " [30.36298443 31.3987763 ]\n", + " [24.98698446 31.39934415]\n", + " [19.61098448 31.399912 ]\n", + " [14.23498451 31.40047985]\n", + " [ 8.85898454 31.40104771]\n", + " [ 3.48298457 31.40161556]\n", + " [30.35974431 0.72377647]\n", + " [24.98374433 0.72434432]\n", + " [19.60774436 0.72491217]\n", + " [14.23174439 0.72548003]\n", + " [ 8.85574442 0.72604788]\n", + " [ 3.47974445 0.72661573]\n", + " [ 1.58528416 29.504316 ]\n", + " [ 1.5847163 24.12831603]\n", + " [ 1.58414845 18.75231606]\n", + " [ 1.5835806 13.37631609]\n", + " [ 1.58301275 8.00031612]\n", + " [ 1.5824449 2.62431615]\n", + " [32.26048441 31.39857587]\n", + " [32.26048441 31.39857587]\n", + " [ 1.58224447 0.72681616]\n", + " [ 1.58224447 0.72681616]\n", + " [30.36278399 29.50127631]\n", + " [24.98678403 29.50184416]\n", + " [19.61078405 29.50241201]\n", + " [14.23478409 29.50297987]\n", + " [ 8.85878411 29.50354772]\n", + " [ 3.48278414 29.50411557]\n", + " [30.36221615 24.12527634]\n", + " [24.98621618 24.12584419]\n", + " [19.6102162 24.12641204]\n", + " [14.23421623 24.1269799 ]\n", + " [ 8.85821626 24.12754775]\n", + " [ 3.48221629 24.1281156 ]\n", + " [30.36164829 18.74927637]\n", + " [24.98564832 18.74984422]\n", + " [19.60964835 18.75041208]\n", + " [14.23364838 18.75097993]\n", + " [ 8.85764841 18.75154778]\n", + " [ 3.48164844 18.75211563]\n", + " [30.36108043 13.3732764 ]\n", + " [24.98508046 13.37384425]\n", + " [19.60908049 13.3744121 ]\n", + " [14.23308053 13.37497996]\n", + " [ 8.85708056 13.37554781]\n", + " [ 3.48108059 13.37611567]\n", + " [30.36051258 7.99727643]\n", + " [24.98451261 7.99784428]\n", + " [19.60851265 7.99841214]\n", + " [14.23251268 7.99897999]\n", + " [ 8.85651271 7.99954784]\n", + " [ 3.48051273 8.00011569]\n", + " [30.35994473 2.62127646]\n", + " [24.98394476 2.62184431]\n", + " [19.60794479 2.62241216]\n", + " [14.23194482 2.62298002]\n", + " [ 8.85594485 2.62354787]\n", + " [ 3.47994488 2.62411572]]\n", + "4817518]]\n", + "DEBUG:root:radec2pix: lat: [73.19833089 74.18249103 75.09922688 75.92116023 76.61853688 77.16100123\n", + " 77.52079342 77.67706772 73.19833089 74.20159367 75.14093371 75.98890558\n", + " 76.71531245 77.28881429 77.68005228 77.86611976 77.67706772 79.27473553\n", + " 80.90480881 82.56181915 84.24016258 85.93331116 87.63030205 89.26372814\n", + " 77.86611976 79.46663016 81.09832556 82.755367 84.43126132 86.11695715\n", + " 87.79091006 89.26372814 73.63774563 74.80227565 75.83862014 76.69292614\n", + " 77.3096353 77.64025349 73.64559076 74.835883 75.90321746 76.7930912\n", + " 77.44812351 77.8166633 78.36913095 80.34967761 82.37343442 84.43012843\n", + " 86.50734673 88.57380626 78.55945528 80.5426681 82.56690719 84.62047016\n", + " 86.68569475 88.69035885 73.20529527 73.20529527 89.25558432 89.25558432\n", + " 74.09681811 75.34210951 76.46528549 77.40781255 78.10603298 78.5008319\n", + " 75.3160395 76.72544415 78.02222799 79.13621749 79.98176995 80.46955109\n", + " 76.40729948 77.98832745 79.48016045 80.80422916 81.84813181 82.47175257\n", + " 77.31254652 79.06012758 80.75806605 82.3313541 83.64750757 84.48728684\n", + " 77.96997446 79.85669547 81.74302972 83.57869755 85.2518859 86.47101417\n", + " 78.32402093 80.29356392 82.30071175 84.32903186 86.34620527 88.21286949]\n", + "DEBUG:root:radec2pix: lat: [73.24843796 74.22959053 75.14101603 75.95564397 76.6437957 77.17522107\n", + " 77.52247637 77.66531399 73.24843796 74.25938156 75.20604331 76.06127099\n", + " 76.79469021 77.37449152 77.77070397 77.95983585 77.66531399 79.26403549\n", + " 80.8954867 82.55419485 84.2348008 85.93154111 87.63625009 89.30890983\n", + " 77.95983585 79.5631834 81.19741545 82.85654952 84.53396682 86.22024\n", + " 87.89143193 89.30890983 73.68688931 74.8461168 75.87404737 76.71704667\n", + " 77.31977046 77.63442603 73.69912883 74.89851762 75.9747656 76.87322604\n", + " 77.53566935 77.90931811 78.357841 80.33991917 82.36567874 84.42519517\n", + " 86.5076147 88.59172382 78.65442708 80.64093339 82.6678651 84.72327772\n", + " 86.78866387 88.77999774 73.25542451 73.25542451 89.30107513 89.30107513\n", + " 74.14922787 75.40361568 76.5361131 77.48786454 78.19419066 78.59463145\n", + " 75.36296624 76.78183851 78.08930019 79.21461778 80.0707569 80.56622359\n", + " 76.44568445 78.03639269 79.53999931 80.87766645 81.93562678 82.57036945\n", + " 77.33928008 79.09582585 80.80551049 82.39402202 83.72877916 84.58613925\n", + " 77.98201104 79.8754942 81.77128989 83.62092117 85.31596639 86.56531268\n", + " 78.31903282 80.2916347 82.30308639 84.33811541 86.36841377 88.27312586]\n", + "DEBUG:root:radec2pix: xyfp: [[32.275486 31.41357429]\n", + " [32.27502267 27.02714574]\n", + " [32.27455935 22.64071719]\n", + " [32.27409601 18.25428864]\n", + " [32.27363269 13.8678601 ]\n", + " [32.27316936 9.48143155]\n", + " [32.27270604 5.095003 ]\n", + " [32.27224271 0.70857446]\n", + " [32.275486 31.41357429]\n", + " [27.88905745 31.41403761]\n", + " [23.5026289 31.41450094]\n", + " [19.11620036 31.41496427]\n", + " [14.72977181 31.41542759]\n", + " [10.34334326 31.41589092]\n", + " [ 5.95691471 31.41635424]\n", + " [ 1.57048617 31.41681757]\n", + " [32.27224271 0.70857446]\n", + " [27.88581416 0.70903778]\n", + " [23.49938562 0.70950111]\n", + " [19.11295707 0.70996444]\n", + " [14.72652852 0.71042776]\n", + " [10.34009998 0.71089109]\n", + " [ 5.95367142 0.71135442]\n", + " [ 1.56724288 0.71181774]\n", + " [ 1.57048617 31.41681757]\n", + " [ 1.57002284 27.03038902]\n", + " [ 1.56955951 22.64396047]\n", + " [ 1.56909619 18.25753194]\n", + " [ 1.56863286 13.87110338]\n", + " [ 1.56816953 9.48467484]\n", + " [ 1.56770621 5.09824629]\n", + " [ 1.56724288 0.71181774]\n", + " [32.26028399 29.50107588]\n", + " [32.25971613 24.12507591]\n", + " [32.25914828 18.74907594]\n", + " [32.25858043 13.37307597]\n", + " [32.25801258 7.997076 ]\n", + " [32.25744472 2.62107603]\n", + " [30.36298443 31.3987763 ]\n", + " [24.98698446 31.39934415]\n", + " [19.61098448 31.399912 ]\n", + " [14.23498451 31.40047985]\n", + " [ 8.85898454 31.40104771]\n", + " [ 3.48298457 31.401615DEBUG:root:mm_to_pix: fitpx.shape: (96, 2)\n", + "56]\n", + " [30.35974431 0.72377647]\n", + " [24.98374433 0.72434432]\n", + " [19.60774436 0.72491217]\n", + " [14.23174439 0.72548003]\n", + " [ 8.85574442 0.72604788]\n", + " [ 3.47974445 0.72661573]\n", + " [ 1.58528416 29.504316 ]\n", + " [ 1.5847163 24.12831603]\n", + " [ 1.58414845 18.75231606]\n", + " [ 1.5835806 13.37631609]\n", + " [ 1.58301275 8.00031612]\n", + " [ 1.5824449 2.62431615]\n", + " [32.26048441 31.39857587]\n", + " [32.26048441 31.39857587]\n", + " [ 1.58224447 0.72681616]\n", + " [ 1.58224447 0.72681616]\n", + " [30.36278399 29.50127631]\n", + " [24.98678403 29.50184416]\n", + " [19.61078405 29.50241201]\n", + " [14.23478409 29.50297987]\n", + " [ 8.85878411 29.50354772]\n", + " [ 3.48278414 29.50411557]\n", + " [30.36221615 24.12527634]\n", + " [24.98621618 24.12584419]\n", + " [19.6102162 24.12641204]\n", + " [14.23421623 24.1269799 ]\n", + " [ 8.85821626 24.12754775]\n", + " [ 3.48221629 24.1281156 ]\n", + " [30.36164829 18.74927637]\n", + " [24.98564832 18.74984422]\n", + " [19.60964835 18.75041208]\n", + " [14.23364838 18.75097993]\n", + " [ 8.85764841 18.75154778]\n", + " [ 3.48164844 18.75211563]\n", + " [30.36108043 13.3732764 ]\n", + " [24.98508046 13.37384425]\n", + " [19.60908049 13.3744121 ]\n", + " [14.23308053 13.37497996]\n", + " [ 8.85708056 13.37554781]\n", + " [ 3.48108059 13.37611567]\n", + " [30.36051258 7.99727643]\n", + " [24.98451261 7.99784428]\n", + " [19.60851265 7.99841214]\n", + " [14.23251268 7.99897999]\n", + " [ 8.85651271 7.99954784]\n", + " [ 3.48051273 8.00011569]\n", + " [30.35994473 2.62127646]\n", + " [24.98394476 2.62184431]\n", + " [19.60794479 2.62241216]\n", + " [14.23194482 2.62298002]\n", + " [ 8.85594485 2.62354787]\n", + " [ 3.47994488 2.62411572]]\n", + "12825 0.13224724 0.09660024 0.06038739 0.02381698\n", + " 0.20144435 0.16745515 0.13250401 0.09678486 0.06049766 0.02385117]\n", + " [0.20255556 0.17610143 0.14895462 0.12122494 0.09302239 0.06445739\n", + " 0.03564119 0.00668594 0.20255556 0.20441077 0.20600074 0.2073248\n", + " 0.20838186 0.20917033 0.20968847 0.20993479 0.00668594 0.00675821\n", + " 0.00682246 0.00687853 0.00692617 0.0069651 0.00699507 0.00701584\n", + " 0.20993479 0.18250233 0.15437326 0.12565215 0.09644485 0.06686038\n", + " 0.03701177 0.00701584 0.19112005 0.15821703 0.12438266 0.08981934\n", + " 0.05473042 0.0193211 0.20330747 0.20540191 0.20709749 0.2083924\n", + " 0.20928375 0.20976841 0.00681796 0.00690216 0.00697398 0.00703299\n", + " 0.00707868 0.00711058 0.19806614 0.16396327 0.12891793 0.09312436\n", + " 0.05678335 0.02010461 0.2024732 0.2024732 0.00711848 0.00711848\n", + " 0.19190537 0.19387759 0.19547539 0.1966967 0.19753824 0.19799645\n", + " 0.15886347 0.1604891 0.1618095 0.16282181 0.16352163 0.16390447\n", + " 0.12488974 0.12616714 0.12720791 0.12800859 0.1285643 0.12887024\n", + " 0.09018615 0.09111203 0.09186896 0.09245358 0.0928614 0.09308815\n", + " 0.05495583 0.05552612 0.05599434 0.05635799 0.05661388 0.05675899\n", + " 0.01940412 0.01961547 0.01979108 0.01992994 0.02003078 0.02009239]\n", + " [0.95731108 0.96213474 0.96637261 0.96996192 0.9728508 0.97499833\n", + " 0.97637449 0.97696023 0.95731108 0.96222557 0.96655954 0.97024886\n", + " 0.97324032 0.97549161 0.97697135 0.97765911 0.97696023 0.98253083\n", + " 0.98742708 0.99158512 0.9949513 0.99748218 0.99914484 0.99991744\n", + " 0.97765911 0.9831486 0.98795534 0.99201677 0.99528049 0.99770436\n", + " 0.99925681 0.99991744 0.95949977 0.96502691 0.96961048 0.97315046\n", + " 0.9755715 0.9768229 0.95953833 0.96518051 0.96988569 0.97355136\n", + " 0.97609964 0.97747731 0.97946677 0.98584919 0.99115411 0.99527858\n", + " 0.99814262 0.99969022 0.98013106 0.98640824 0.99159661 0.99559552\n", + " 0.99832741 0.99973878 0.95734621 0.95734621 0.9999156 0.9999156\n", + " 0.96172609 0.96745399 0.9722283 0.9759465 0.97853069 0.9799276\n", + " 0.96733875 0.97328094 0.97822819 0.98207805 0.98475245 0.98619775\n", + " 0.97199095 0.97810522 0.98319175 0.98714806 0.9898957 0.99138039\n", + " 0.97558266 0.98182688 0.98701899 0.99105637 0.99386 0.99537491\n", + " 0.97803851 0.98437036 0.98963392 0.99372641 0.99656823 0.99810379\n", + " 0.97930774 0.98568454 0.99098486 0.99510577 0.99796733 0.99951359]]\n", + "DEBUG:root:radec2pix: fitpx: [[2135.5 4155.49999984]\n", + " [2135.5 3863.07142868]\n", + " [2135.5 3570.64285754]\n", + " [2135.5 3278.21428588]\n", + " [2135.5 2985.78571458]\n", + " [2135.5 2693.35714314]\n", + " [2135.5 2400.92857131]\n", + " [2135.50000005 2108.49999975]\n", + " [2135.5 4155.49999984]\n", + " [1843.07142855 4155.50000013]\n", + " [1550.64285718 4155.49999985]\n", + " [1258.21428582 4155.49999974]\n", + " [ 965.78571443 4155.49999975]\n", + " [ 673.35714268 4155.50000026]\n", + " [ 380.92857156 4155.49999984]\n", + " [ 88.49999989 4155.50000011]\n", + " [2135.50000005 2108.49999975]\n", + " [1843.07142845 2108.50000002]\n", + " [1550.64285702 2108.50000001]\n", + " [1258.21428598 2108.49999998]\n", + " [ 965.78571394 2108.50000002]\n", + " [ 673.35714284 2108.5 ]\n", + " [ 380.92857156 2108.5 ]\n", + " [ 88.49999977 2108.50000001]\n", + " [ 88.49999989 4155.50000011]\n", + " [ 88.49999981 3863.07142874]\n", + " [ 88.49999988 3570.64285723]\n", + " [ 88.49999983 3278.21428582]\n", + " [ 88.5000001 2985.78571424]\n", + " [ 88.50000005 2693.35714284]\n", + " [ 88.49999995 2400.92857144]\n", + " [ 88.49999977 2108.50000001]\n", + " [2134.5 4028.00000026]\n", + " [2134.5 3669.59999996]\n", + " [2134.5 3311.20000006]\n", + " [2134.5 2952.80000018]\n", + " [2134.50000001 2594.39999977]\n", + " [2134.49999998 2236.00000029]\n", + " [2008.00000002 4154.49999972]\n", + " [1649.59999996 DEBUG:root:radec2pix: camVec Shape: (3, 96)\n", + "4154.50000015]\n", + " [1291.19999992 4154.5000002 ]\n", + " [ 932.79999984 4154.50000027]\n", + " [ 574.40000018 4154.49999976]\n", + " [ 215.99999983 4154.50000019]\n", + " [2007.99999997 2109.50000001]\n", + " [1649.60000009 2109.49999999]\n", + " [1291.20000024 2109.49999998]\n", + " [ 932.80000011 2109.5 ]\n", + " [ 574.40000007 2109.5 ]\n", + " [ 216.00000022 2109.49999999]\n", + " [ 89.50000011 4027.99999989]\n", + " [ 89.49999997 3669.60000003]\n", + " [ 89.49999978 3311.20000014]\n", + " [ 89.49999974 2952.80000012]\n", + " [ 89.49999998 2594.4 ]\n", + " [ 89.50000005 2236. ]\n", + " [2134.5 4154.49999985]\n", + " [2134.5 4154.49999985]\n", + " [ 89.49999982 2109.5 ]\n", + " [ 89.49999982 2109.5 ]\n", + " [2007.99999998 4028.00000026]\n", + " [1649.60000006 4027.99999978]\n", + " [1291.19999989 4028.00000025]\n", + " [ 932.8000001 4027.99999984]\n", + " [ 574.40000016 4027.9999998 ]\n", + " [ 215.99999996 4028.00000004]\n", + " [2007.99999998 3669.60000024]\n", + " [1649.59999998 3669.60000005]\n", + " [1291.20000009 3669.59999982]\n", + " [ 932.79999983 3669.60000022]\n", + " [ 574.39999986 3669.60000015]\n", + " [ 216.00000022 3669.59999982]\n", + " [2007.99999999 3311.20000008]\n", + " [1649.59999996 3311.2000001 ]\n", + " [1291.19999979 3311.20000031]\n", + " [ 932.80000004 3311.19999996]\n", + " [ 574.39999992 3311.20000007]\n", + " [ 216.00000024 3311.19999984]\n", + " [2008.00000001 2952.79999992]\n", + " [1649.6000001 2952.79999982]\n", + " [1291.20000006 2952.79999994]\n", + " [ 932.79999988 2952.80000009]\n", + " [ 574.39999983 2952.8000001 ]\n", + " [ 215.99999999 2952.8 ]\n", + " [2008.00000001 2594.39999996]\n", + " [1649.60000003 2594.39999997]\n", + " [1291.19999974 2594.40000016]\n", + " [ 932.80000041 2594.39999982]\n", + " [ 574.40000002 2594.39999999]\n", + " [ 215.99999998 2594.40000001]\n", + " [2008.00000001 2235.99999999]\n", + " [1649.59999976 2236.00000009]\n", + " [1291.19999986 2236.00000003]\n", + " [ 932.79999992 2236.00000001]\n", + " [ 574.39999976 2236.00000003]\n", + " [ 216.00000019 2235.99999998]]\n", + "DEBUG:root:radec2pix: ccdpx: [[-4.45000001e+01 -5.00000082e-01]\n", + " [-4.45000001e+01 2.91928571e+02]\n", + " [-4.45000003e+01 5.84357143e+02]\n", + " [-4.44999997e+01 8.76785714e+02]\n", + " [-4.45000002e+01 1.16921429e+03]\n", + " [-4.44999997e+01 1.46164286e+03]\n", + " [-4.45000001e+01 1.75407143e+03]\n", + " [-4.44999998e+01 2.04650000e+03]\n", + " [-4.45000001e+01 -5.00000082e-01]\n", + " [ 2.47928572e+02 -4.99999837e-01]\n", + " [ 5.40357143e+02 -5.00000111e-01]\n", + " [ 8.32785714e+02 -5.00000236e-01]\n", + " [ 1.12521429e+03 -4.99999746e-01]\n", + " [ 1.41764286e+03 -4.99999876e-01]\n", + " [ 1.71007143e+03 -4.99999788e-01]\n", + " [ 2.00250000e+03 -5.00000040e-01]\n", + " [-4.44999998e+01 2.04650000e+03]\n", + " [ 2.47928572e+02 2.04650000e+03]\n", + " [ 5.40357143e+02 2.04650000e+03]\n", + " [ 8.32785714e+02 2.04650000e+03]\n", + " [ 1.12521429e+03 2.04650000e+03]\n", + " [ 1.41764286e+03 2.04650000e+03]\n", + " [ 1.71007143e+03 2.04650000e+03]\n", + " [ 2.00250000e+03 2.04650000e+03]\n", + " [ 2.00250000e+03 -5.00000040e-01]\n", + " [ 2.00250000e+03 2.91928572e+02]\n", + " [ 2.00250000e+03 5.84357143e+02]\n", + " [ 2.00250000e+03 8.76785714e+02]\n", + " [ 2.00250000e+03 1.16921429e+03]\n", + " [ 2.00250000e+03 1.46164286e+03]\n", + " [ 2.00250000e+03 1.75407143e+03]\n", + " [ 2.00250000e+03 2.04650000e+03]\n", + " [-4.35000002e+01 1.27000000e+02]\n", + " [-4.35000000e+01 4DEBUG:root:make_az_asym: xyp: [[ 0.236018 -31.56946754]\n", + " [ 0.23651287 -27.18303899]\n", + " [ 0.23700774 -22.79661046]\n", + " [ 0.23750261 -18.41018192]\n", + " [ 0.23799748 -14.02375336]\n", + " [ 0.23849235 -9.63732482]\n", + " [ 0.23898721 -5.25089628]\n", + " [ 0.23948208 -0.86446773]\n", + " [ 0.236018 -31.56946754]\n", + " [ 4.62244655 -31.56996241]\n", + " [ 9.00887509 -31.57045728]\n", + " [ 13.39530363 -31.57095214]\n", + " [ 17.78173218 -31.57144701]\n", + " [ 22.16816072 -31.57194188]\n", + " [ 26.55458927 -31.57243675]\n", + " [ 30.94101781 -31.57293162]\n", + " [ 0.23948208 -0.86446773]\n", + " [ 4.62591062 -0.8649626 ]\n", + " [ 9.01233917 -0.86545747]\n", + " [ 13.39876771 -0.86595234]\n", + " [ 17.78519626 -0.86644721]\n", + " [ 22.1716248 -0.86694208]\n", + " [ 26.55805334 -0.86743695]\n", + " [ 30.94448189 -0.86793181]\n", + " [ 30.94101781 -31.57293162]\n", + " [ 30.94151268 -27.18650307]\n", + " [ 30.94200754 -22.80007453]\n", + " [ 30.94250242 -18.41364599]\n", + " [ 30.94299728 -14.02721745]\n", + " [ 30.94349215 -9.6407889 ]\n", + " [ 30.94398702 -5.25436036]\n", + " [ 30.94448189 -0.86793181]\n", + " [ 0.25123377 -29.65696924]\n", + " [ 0.2518402DEBUG:root:fitpix2pix: ccdpx: shape: (96, 2)\n", + "8 -24.28096928]\n", + " [ 0.25244679 -18.90496931]\n", + " [ 0.2530533 -13.52896935]\n", + " [ 0.25365981 -8.15296938]\n", + " [ 0.25426632 -2.77696942]\n", + " [ 2.14851968 -31.5546833 ]\n", + " [ 7.52451965 -31.55528981]\n", + " [ 12.90051962 -31.55589633]\n", + " [ 18.27651958 -31.55650284]\n", + " [ 23.65251954 -31.55710934]\n", + " [ 29.02851952 -31.55771586]\n", + " [ 2.15198038 -0.8796835 ]\n", + " [ 7.52798035 -0.88029001]\n", + " [ 12.90398031 -0.88089652]\n", + " [ 18.27998027 -0.88150303]\n", + " [ 23.65598025 -0.88210954]\n", + " [ 29.03198021 -0.88271605]\n", + " [ 30.92623357 -29.66042994]\n", + " [ 30.92684009 -24.28442998]\n", + " [ 30.9274466 -18.90843001]\n", + " [ 30.9280531 -13.53243004]\n", + " [ 30.92865961 -8.15643008]\n", + " [ 30.92926612 -2.78043011]\n", + " [ 0.2510197 -31.55446923]\n", + " [ 0.2510197 -31.55446923]\n", + " [ 30.9294802 -0.88293012]\n", + " [ 30.9294802 -0.88293012]\n", + " [ 2.14873376 -29.65718332]\n", + " [ 7.52473372 -29.65778983]\n", + " [ 12.90073369 -29.65839633]\n", + " [ 18.27673365 -29.65900285]\n", + " [ 23.65273362 -29.65960936]\n", + " [ 29.02873359 -29.66021587]\n", + " [ 2.14934027 -24.28118335]\n", + " [ 7.52534023 -24.28178986]\n", + " [ 12.9013402 -24.28239637]\n", + " [ 18.27734016 -24.28300288]\n", + " [ 23.65334013 -24.28360939]\n", + " [ 29.02934009 -24.2842159 ]\n", + " [ 2.14994678 -18.90518338]\n", + " [ 7.52594674 -18.90578989]\n", + " [ 12.90194671 -18.9063964 ]\n", + " [ 18.27794667 -18.90700292]\n", + " [ 23.65394664 -18.90760943]\n", + " [ 29.0299466 -18.90821593]\n", + " [ 2.15055329 -13.52918342]\n", + " [ 7.52655325 -13.52978993]\n", + " [ 12.90255322 -13.53039644]\n", + " [ 18.27855318 -13.53100295]\n", + " [ 23.65455315 -13.53160946]\n", + " [ 29.03055312 -13.53221597]\n", + " [ 2.1511598 -8.15318346]\n", + " [ 7.52715976 -8.15378996]\n", + " [ 12.90315973 -8.15439647]\n", + " [ 18.27915969 -8.15500298]\n", + " [ 23.65515966 -8.15560949]\n", + " [ 29.03115962 -8.156216 ]\n", + " [ 2.1517663 -2.77718348]\n", + " [ 7.52776627 -2.77779 ]\n", + " [ 12.90376624 -2.77839651]\n", + " [ 18.2797662 -2.77900302]\n", + " [ 23.65576617 -2.77960953]\n", + " [ 29.03176613 -2.78021604]]\n", + ".85400000e+02]\n", + " [-4.34999999e+01 8.43800000e+02]\n", + " [-4.35000002e+01 1.20220000e+03]\n", + " [-4.35000002e+01 1.56060000e+03]\n", + " [-4.34999998e+01 1.91900000e+03]\n", + " [ 8.29999997e+01 4.99999723e-01]\n", + " [ 4.41400000e+02 4.99999738e-01]\n", + " [ 7.99800000e+02 4.99999955e-01]\n", + " [ 1.15820000e+03 5.00000275e-01]\n", + " [ 1.51660000e+03 4.99999778e-01]\n", + " [ 1.87500000e+03 5.00000195e-01]\n", + " [ 8.29999999e+01 2.04550000e+03]\n", + " [ 4.41400000e+02 2.04550000e+03]\n", + " [ 7.99800000e+02 2.04550000e+03]\n", + " [ 1.15820000e+03 2.04550000e+03]\n", + " [ 1.51660000e+03 2.04550000e+03]\n", + " [ 1.87500000e+03 2.04550000e+03]\n", + " [ 2.00150000e+03 1.27000000e+02]\n", + " [ 2.00150000e+03 4.85400000e+02]\n", + " [ 2.00150000e+03 8.43800000e+02]\n", + " [ 2.00150000e+03 1.20220000e+03]\n", + " [ 2.00150000e+03 1.56060000e+03]\n", + " [ 2.00150000e+03 1.91900000e+03]\n", + " [-4.34999997e+01 5.00000254e-01]\n", + " [-4.34999997e+01 5.00000254e-01]\n", + " [ 2.00150000e+03 2.04550000e+03]\n", + " [ 2.00150000e+03 2.04550000e+03]\n", + " [ 8.30000000e+01 1.27000000e+02]\n", + " [ 4.41400000e+02 1.27000000e+02]\n", + " [ 7.99800000e+02 1.27000000e+02]\n", + " [ 1.15820000e+03 1.27000000e+02]\n", + " [ 1.51660000e+03 1.27000000e+02]\n", + " [ 1.87500000e+03 1.27000000e+02]\n", + " [ 8.DEBUG:root:make_az_asym: xyp: shape: (96, 2)\n", + "DEBUG:root:radec2pix: xyfp: [[ -0.24606 31.536148 ]\n", + " [ -0.24606 27.14971943]\n", + " [ -0.24606 22.76329086]\n", + " [ -0.24606 18.37686229]\n", + " [ -0.24606 13.99043371]\n", + " [ -0.24606 9.60400514]\n", + " [ -0.24606 5.21757658]\n", + " [ -0.24606 0.831148 ]\n", + " [ -0.24606 31.536148 ]\n", + " [ -4.63248857 31.536148 ]\n", + " [ -9.01891714 31.536148 ]\n", + " [-13.40534571 31.536148 ]\n", + " [-17.79177429 31.536148 ]\n", + " [-22.17820286 31.536148 ]\n", + " [-26.56463143 31.536148 ]\n", + " [-30.95106 31.536148 ]\n", + " [ -0.24606 0.831148 ]\n", + " [ -4.63248857 0.831148 ]\n", + " [ -9.01891714 0.831148 ]\n", + " [-13.40534571 0.831148 ]\n", + " [-17.79177429 0.831148 ]\n", + " [-22.17820285 0.831148 ]\n", + " [-26.56463143 0.831148 ]\n", + " [-30.95106 0.831148 ]\n", + " [-30.95106 31.536148 ]\n", + " [-30.95106 27.14971943]\n", + " [-30.95106 22.76329086]\n", + " [-30.95106 18.37686228]\n", + " [-30.95106 13.99043371]\n", + " [-30.95106 9.60400514]\n", + " [-30.95106 5.21757657]\n", + " [-30.95106 0.831148 ]\n", + " [ -0.26106 29.623648 ]\n", + " [ -0.26106 24.247648 ]\n", + " [ -0.26106 18.87164801]\n", + " [ -0.26106 13.495648 ]\n", + " [ -0.26106 8.119648 ]\n", + " [ -0.26106 2.743648 ]\n", + " [ -2.15856 31.521148 ]\n", + " [ -7.53456 31.521148 ]\n", + " [-12.91056 31.521148 ]\n", + " [-18.28656 31.521148 ]\n", + " [-23.66256 31.521148 ]\n", + " [-29.03856 31.521148 ]\n", + " [ -2.15856 0.846148 ]\n", + " [ -7.53456 0.846148 ]\n", + " [-12.91056 0.846148 ]\n", + " [-18.28655999 0.846148 ]\n", + " [-23.66256 0.846148 ]\n", + " [-29.03856 0.846148 ]\n", + " [-30.93606 29.623648 ]\n", + " [-30.93606 24.247648 ]\n", + " [-30.93606 18.871648 ]\n", + " [-30.93606 13.495648 ]\n", + " [-30.93606 8.119648 ]\n", + " [-30.93606 2.743648 ]\n", + " [ -0.26106 31.521148 ]\n", + " [ -0.26106 31.521148 ]\n", + " [-30.93606 0.846148 ]\n", + " [-30.93606 0.846148 ]\n", + " [ -2.15856 29.623648 ]\n", + " [ -7.53456 29.623648 ]\n", + " [-12.91056 29.623648 ]\n", + " [-18.28656 29.623648 ]\n", + " [-23.66256 29.623648 ]\n", + " [-29.03856 29.623648 ]\n", + " [ -2.15856 29999998e+01 4.85400000e+02]\n", + " [ 4.41400000e+02 4.85400000e+02]\n", + " [ 7.99800000e+02 4.85400000e+02]\n", + " [ 1.15820000e+03 4.85400000e+02]\n", + " [ 1.51660000e+03 4.85400000e+02]\n", + " [ 1.87500000e+03 4.85400000e+02]\n", + " [ 8.29999999e+01 8.43800000e+02]\n", + " [ 4.41400000e+02 8.43800000e+02]\n", + " [ 7.99800000e+02 8.43800000e+02]\n", + " [ 1.15820000e+03 8.43800000e+02]\n", + " [ 1.51660000e+03 8.43800000e+02]\n", + " [ 1.87500000e+03 8.43800000e+02]\n", + " [ 8.30000002e+01 1.20220000e+03]\n", + " [ 4.41400000e+02 1.20220000e+03]\n", + " [ 7.99800000e+02 1.20220000e+03]\n", + " [ 1.15820000e+03 1.20220000e+03]\n", + " [ 1.51660000e+03 1.20220000e+03]\n", + " [ 1.87500000e+03 1.20220000e+03]\n", + " [ 8.30000002e+01 1.56060000e+03]\n", + " [ 4.41400000e+02 1.56060000e+03]\n", + " [ 7.99800000e+02 1.56060000e+03]\n", + " [ 1.15820000e+03 1.56060000e+03]\n", + " [ 1.51660000e+03 1.56060000e+03]\n", + " [ 1.87500000e+03 1.56060000e+03]\n", + " [ 8.29999999e+01 1.91900000e+03]\n", + " [ 4.41400000e+02 1.91900000e+03]\n", + " [ 7.99800000e+02 1.91900000e+03]\n", + " [ 1.15820000e+03 1.91900000e+03]\n", + " [ 1.51660000e+03 1.9190DEBUG:root:radec2pix: ccdpx: [[-4.45000001e+01 -5.00000082e-01]\n", + " [-4.45000001e+01 2.91928571e+02]\n", + " [-4.45000003e+01 5.84357143e+02]\n", + " [-4.44999997e+01 8.76785714e+02]\n", + " [-4.45000002e+01 1.16921429e+03]\n", + " [-4.44999997e+01 1.46164286e+03]\n", + " [-4.45000001e+01 1.75407143e+03]\n", + " [-4.44999998e+01 2.04650000e+03]\n", + " [-4.45000001e+01 -5.00000082e-01]\n", + " [ 2.47928572e+02 -4.99999837e-01]\n", + " [ 5.40357143e+02 -5.00000111e-01]\n", + " [ 8.32785714e+02 -5.00000236e-01]\n", + " [ 1.12521429e+03 -4.99999746e-01]\n", + " [ 1.41764286e+03 -4.99999876e-01]\n", + " [ 1.71007143e+03 -4.99999788e-01]\n", + " [ 2.00250000e+03 -5.00000040e-01]\n", + " [-4.44999998e+01 2.04650000e+03]\n", + " [ 2.47928572e+02 2.04650000e+03]\n", + " [ 5.40357143e+02 2.04650000e+03]\n", + " [ 8.32785714e+02 2.04650000e+03]\n", + " [ 1.12521429e+03 2.04650000e+03]\n", + " [ 1.41764286e+03 2.04650000e+03]\n", + " [ 1.71007143e+03 2.04650000e+03]\n", + " [ 2.00250000e+03 2.04650000e+03]\n", + " [ 2.00250000e+03 -5.00000040e-01]\n", + " [ 2.00250000e+03 2.91928572e+02]\n", + " [ 2.00250000e+03 5.84357143e+02]\n", + " [ 2.00250000e+03 8.76785 24.247648 ]\n", + " [ -7.53456 24.247648 ]\n", + " [-12.91056 24.247648 ]\n", + " [-18.28656 24.247648 ]\n", + " [-23.66256 24.247648 ]\n", + " [-29.03856 24.247648 ]\n", + " [ -2.15856 18.871648 ]\n", + " [ -7.53456 18.871648 ]\n", + " [-12.91056 18.871648 ]\n", + " [-18.28656 18.871648 ]\n", + " [-23.66256 18.871648 ]\n", + " [-29.03856 18.871648 ]\n", + " [ -2.15856 13.495648 ]\n", + " [ -7.53456 13.495648 ]\n", + " [-12.91056 13.495648 ]\n", + " [-18.28656 13.495648 ]\n", + " [-23.66256 13.495648 ]\n", + " [-29.03856 13.495648 ]\n", + " [ -2.15856 8.119648 ]\n", + " [ -7.53456 8.119648 ]\n", + " [-12.91056 8.119648 ]\n", + " [-18.28656 8.119648 ]\n", + " [-23.66256 8.119648 ]\n", + " [-29.03856 8.119648 ]\n", + " [ -2.15856 2.743648 ]\n", + " [ -7.53456 2.743648 ]\n", + " [-12.91056 2.743648 ]\n", + " [-18.28656 2.743648 ]\n", + " [-23.66256 2.743648 ]\n", + " [-29.03856 2.743648 ]]\n", + "DEBUG:root:make_az_asym: xyp: shape: (96, 2)\n", + "DEBUG:root:fitpix2pix: visCut: True\n", + "0000e+03]\n", + " [ 1.87500000e+03 1.91900000e+03]]\n", + "DEBUG:root:opDEBUG:root:optics_fp: rtanth: [45.26169529 42.30243097 39.60873368 37.23827886 35.25632641 33.73142753\n", + " 32.72753223 32.29326616 45.26169529 42.24571523 39.48748363 37.04461879\n", + " 34.98324901 33.37413897 32.28498264 31.76930229 32.29326616 27.90939691\n", + " 23.52648174 19.14517593 14.76691204 10.39553425 6.04599739 1.87684519\n", + " 31.76930229 27.38910685 23.01128618 18.63751379 14.2715122 9.92354331\n", + " 5.63550123 1.87684519 43.93110404 40.47519439 37.47457234 35.04637691\n", + " 33.3160059 32.39547369 43.90748877 40.37685013 37.28961296 34.76410785\n", + " 32.92983309 31.90622779 30.38230115 25.01013154 19.64005824 14.27444739\n", + " 8.9213542 3.63648527 29.86008841 24.49335294 19.13182032 13.78156419\n", + " 8.46399587 3.33911555 45.24048285 45.24048285 1.89760875 1.89760875\n", + " 42.55711672 38.90412112 35.68971629 33.042152 31.10650288 30.02079255\n", + " 38.97957981 34.95468636 31.33776168 28.28574318 25.99834571 24.68901465\n", + " 35.85400749 31.43139051 27.35246822 23.7946523 21.02418109 19.38168349\n", + " 33.30787918 28.49275DEBUG:root:cartToSphere: vec: [[0.20622014 0.20255556 0.95731108]\n", + " [0.20805053 0.17610143 0.96213474]\n", + " [0.20961035 0.14895462 0.96637261]\n", + " [0.210899 0.12122494 0.96996192]\n", + " [0.21191543 0.09302239 0.9728508 ]\n", + " [0.21265818 0.06445739 0.97499833]\n", + " [0.21312568 0.03564119 0.97637449]\n", + " [0.21331667 0.00668594 0.97696023]\n", + " [0.20622014 0.20255556 0.95731108]\n", + " [0.17982824 0.20441077 0.96222557]\n", + " [0.1527297 0.20600074 0.96655954]\n", + " [0.12503427 0.2073248 0.97024886]\n", + " [0.09685185 0.20838186 0.97324032]\n", + " [0.06829276 0.20917033 0.97549161]\n", + " [0.03946812 0.20968847 0.97697135]\n", + " [0.01049004 0.20993479 0.97765911]\n", + " [0.21331667 0.00668594 0.97696023]\n", + " [0.18597713 0.00675821 0.98253083]\n", + " [0.1579279 0.00682246 0.98742708]\n", + " [0.12927353 0.00687853 0.99158512]\n", + " [0.10011961 0.00692617 0.9949513 ]\n", + " [0.07057467 0.0069651 0.99748218]\n", + " [0.04075124 0.00699507 0.99914484]\n", + " [0.01076573 0.00701584 0.99991744]\n", + " [0.01049004 0.20993479 0.97765911]\n", + " [0.01056977 0.18250233 0.9831486 ]\n", + " [0.01063642 0.15437326 0.98795534714e+02]\n", + " [ 2.00250000e+03 1.16921429e+03]\n", + " [ 2.00250000e+03 1.46164286e+03]\n", + " [ 2.00250000e+03 1.75407143e+03]\n", + " [ 2.00250000e+03 2.04650000e+03]\n", + " [-4.35000002e+01 1.27000000e+02]\n", + " [-4.35000000e+01 4.85400000e+02]\n", + " [-4.34999999e+01 8.43800000e+02]\n", + " [-4.35000002e+01 1.20220000e+03]\n", + " [-4.35000002e+01 1.56060000e+03]\n", + " [-4.34999998e+01 1.91900000e+03]\n", + " [ 8.29999997e+01 4.99999723e-01]\n", + " [ 4.41400000e+02 4.99999738e-01]\n", + " [ 7.99800000e+02 4.99999955e-01]\n", + " [ 1.15820000e+03 5.00000275e-01]\n", + " [ 1.51660000e+03 4.99999778e-01]\n", + " [ 1.87500000e+03 5.00000195e-01]\n", + " [ 8.29999999e+01 2.04550000e+03]\n", + " [ 4.41400000e+02 2.04550000e+03]\n", + " [ 7.99800000e+02 2.04550000e+03]\n", + " [ 1.15820000e+03 2.04550000e+03]\n", + " [ 1.51660000e+03 2.04550000e+03]\n", + " [ 1.87500000e+03 2.04550000e+03]\n", + " [ 2.00150000e+03 1.27000000e+02]\n", + " [ 2.00150000e+03 4.85400000e+02]\n", + " [ 2.00150000e+03 8.43800000e+02]\n", + " [ 2.00150000e+03 1.20220000e+03]\n", + " [ 2.00150000e+03 1.56060000e+03]\n", + " [ 2.00150000e+03 1.91900000e+03]\n", + " [-4.34999997e+01 5.00000254e-01]\n", + " [-4.34999997e+01 5.00000254e-01]\n", + " [ 2.00150000e+03 2.04550000e+03]\n", + " [ 2.00150000e+03 2.04550000e+03]\n", + " [ 8.30000000e+01 1.27000000e+02]\n", + " [ 4.41400000e+02 1.27000000e+02]\n", + " [ 7.99800000e+02 1.27000000e+02]\n", + " [ 1.15820000e+03 1.27000000e+02]\n", + " [ 1.51660000e+03 1.27000000e+02]\n", + " [ 1.87500000e+03 1.27000000e+02]\n", + " [ 8.29999998e+01 4.85400000e+02]\n", + " [ 4.41400000e+02 4.85400000e+02]\n", + " [ 7.99800000e+02 4.85400000e+02]\n", + " [ 1.15820000e+03 4.85400000e+02]\n", + " [ 1.51660000e+03 4.85400000e+02]\n", + " [ 1.87500000e+03 4.85400000e+02]\n", + " [ 8.29999999e+01 8.43800000e+02]\n", + " [ 4.41400000e+02 8.43800000e+02]\n", + " [ 7.99800000e+02 8.43800000e+02]\n", + " [ 1.15820000e+03 8.43800000e+02]\n", + " [ 1.51660000e+03 8.43800000e+02]\n", + " [ 1.87500000e+03 8.43800000e+02]\n", + " [ 8.30000002e+01 1.20220000e+03]\n", + " [ 4.41400000e+02 1.20220000e+03]\n", + " [ 7.99800000e+02 1.20220000e+03]\n", + " [ 1.15820000e+03 1.20220000e+03]\n", + " [ 1.51660000e+03 1.20220000e+03]\n", + " [ 1.87500000e+03 1.20220000e+03]\n", + " [ 8.30000002e+01 1.56060000e+DEBUG:root:radec2pix: ccdpx: [[-4.45000000e+01 -5.00000251e-01]\n", + " [-4.45000000e+01 2.91928572e+02]\n", + " [-4.45000000e+01 5.84357143e+02]\n", + " [-4.45000000e+01 8.76785714e+02]\n", + " [-4.45000000e+01 1.16921429e+03]\n", + " [-4.45000000e+01 1.46164286e+03]\n", + " [-4.45000000e+01 1.75407143e+03]\n", + " [-4.45000000e+01 2.04650000e+03]\n", + " [-4.45000000e+01 -5.00000251e-01]\n", + " [ 2.47928571e+02 -5.00000137e-01]\n", + " [ 5.40357143e+02 -5.00000030e-01]\n", + " [ 8.32785714e+02 -4.99999965e-01]\n", + " [ 1.12521429e+03 -4.99999941e-01]\n", + " [ 1.41764286e+03 -5.00000178e-01]\n", + " [ 1.71007143e+03 -4.99999847e-01]\n", + " [ 2.00250000e+03 -5.00000219e-01]\n", + " [-4.45000000e+01 2.04650000e+03]\n", + " [ 2.47928571e+02 2.04650000e+03]\n", + " [ 5.40357143e+02 2.04650000e+03]\n", + " [ 8.32785714e+02 2.04650000e+03]\n", + " [ 1.12521429e+03 2.04650000e+03]\n", + " [ 1.41764286e+03 2.04650000e+03]\n", + " [ 1.71007143e+03 2.04650000e+03]\n", + " [ 2.00250000e+03 2.04650000e+03]\n", + " [ 2.00250000e+03 -5.00000219e-01]\n", + " [ 2.00250000e+03 2.91928572e+02]\n", + " [ 2.00250000e+03 5.84357143e+02]\n", + " [ 2.00250000e+03 8.76785DEBUG:root:radec2pix: fitpx: [[4271.50000008 4155.50000008]\n", + " [4271.50000011 3863.07142867]\n", + " [4271.50000027 3570.64285733]\n", + " [4271.49999971 3278.21428555]\n", + " [4271.50000017 2985.78571436]\n", + " [4271.4999997 2693.35714277]\n", + " [4271.5000001 2400.92857145]\n", + " [4271.49999983 2108.5 ]\n", + " [4271.50000008 4155.50000008]\n", + " [3979.07142843 4155.49999984]\n", + " [3686.64285723 4155.50000011]\n", + " [3394.21428586 4155.50000024]\n", + " [3101.78571417 4155.49999975]\n", + " [2809.35714282 4155.49999988]\n", + " [2516.92857139 4155.49999979]\n", + " [2224.5 4155.50000004]\n", + " [4271.49999983 2108.5 ]\n", + " [3979.07142844 2108.5 ]\n", + " [3686.64285726 2108.5 ]\n", + " [3394.21428608 2108.50000001]\n", + " [3101.7857142 2108.5 ]\n", + " [2809.35714302 2108.50000001]\n", + " [2516.92857112 2108.49999996]\n", + " [2224.50000006 2108.50000003]\n", + " [2224.5 4155.50000004]\n", + " [2224.49999999 3863.07142838]\n", + " [2224.49999998 3570.64285685]\n", + " [2224.50000004 3278.21428613]\n", + " [2224.49999996 2985.78571394]\n", + " [2224.50000004 2693.35714312]\n", + " [2224.49999998 2400.92857136]\n", + " [2224.500DEBUG:root:radec2pix: xyfp: [[ 0.16415906 -31.72847131]\n", + " [ 0.16601788 -27.34204313]\n", + " [ 0.1678767 -22.95561497]\n", + " [ 0.16973552 -18.56918678]\n", + " [ 0.17159434 -14.1827586 ]\n", + " [ 0.17345315 -9.79633043]\n", + " [ 0.17531197 -5.40990225]\n", + " [ 0.17717079 -1.02347407]\n", + " [ 0.16415906 -31.72847131]\n", + " [ 4.55058724 -31.73033014]\n", + " [ 8.93701541 -31.73218895]\n", + " [ 13.32344359 -31.73404778]\n", + " [ 17.70987177 -31.73590659]\n", + " [ 22.09629995 -31.73776541]\n", + " [ 26.48272812 -31.73962422]\n", + " [ 30.8691563 -31.74148305]\n", + " [ 0.17717079 -1.02347407]\n", + " [ 4.56359897 -1.02533289]\n", + " [ 8.95002714 -1.02719171]\n", + " [ 13.33645532 -1.02905053]\n", + " [ 17.7228835 -1.03090935]\n", + " [ 22.10931168 -1.03276817]\n", + " [ 26.49573986 -1.03462699]\n", + " [ 30.88216803 -1.0364858 ]\n", + " [ 30.8691563 -31.74148305]\n", + " [ 30.87101512 -27.35505487]\n", + " [ 30.87287394 -22.96862669]\n", + " [ 30.87473276 -18.58219851]\n", + " [ 30.87659158 -14.19577034]\n", + " [ 30.8784504 -9.80934216]\n", + " [ 30.88030922 -5.42291398]\n", + " [ 30.88216803 -1.0364858 ]\n", + " [ 0.17996951 -29.81597784]\n", + " [ 0.18224768 tics_fp: rtanth: [45.0829242 42.14007881 39.46623798 37.11957906 35.16566323 33.67292833\n", + " 32.70458448 32.30781794 45.0829242 42.05181002 39.27748601 36.81804721\n", + " 34.74043472 33.1165898 32.01563284 31.49245123 32.30781794 27.92274647\n", + " 23.53818074 19.15446803 14.77236778 10.39391962 6.02708817 1.76054813\n", + " 31.49245123 27.11255561 22.73517913 18.3621235 13.99743906 9.65248838\n", + " 5.37533955 1.76054813 43.75905359 40.32550839 37.35292806 34.95909888\n", + " 33.26918554 32.39354213 43.72230567 40.17242604 37.06494796 34.51955493\n", + " 32.6679006 31.63204924 30.39623387 25.02228675 19.64946278 14.27902981\n", + " 8.91530985 3.58853155 29.58337372 24.21709844 18.85636405 13.50776907\n", + " 8.19511667 3.10850472 45.06171287 45.06171287 1.78051042 1.78051042\n", + " 42.37849474 38.70556314 35.46980647 32.8008609 30.84620775 29.74698879\n", + " 38.82304306 34.77660814 31.13517347 28.05687673 25.74452154 24.41669917\n", + " 35.72566697 31.28109784 27.17523938 23.58565115 20.78160237 19.11203303\n", + " 33.21476541 28.37964838 23.777951DEBUG:root:radec2pix: curVec: [[-0.14574845 0.59282369 0.79203375]\n", + " [-0.13850967 0.57243889 0.80816384]\n", + " [-0.13116565 0.55114946 0.82403267]\n", + " [-0.12372672 0.52902858 0.83953586]\n", + " [-0.11620731 0.50615254 0.85457912]\n", + " [-0.10862587 0.4826014 0.86907785]\n", + " [-0.10100452 0.45845971 0.88295684]\n", + " [-0.09336856 0.43381687 0.89615023]\n", + " [-0.14574845 0.59282369 0.79203375]\n", + " [-0.17194903 0.58661756 0.79139963]\n", + " [-0.19855854 0.57971699 0.79025485]\n", + " [-0.2254558 0.5721394 0.78855957]\n", + " [-0.2525234 0.56390507 0.7862843 ]\n", + " [-0.27964697 0.55503754 0.78340979]\n", + " [-0.3067146 0.5455643 0.77992676]\n", + " [-0.33361677 0.53551736 0.77583568]\n", + " [-0.09336856 0.43381687 0.89615023]\n", + " [-0.12015434 0.42597065 0.89672289]\n", + " [-0.14739052 0.41761883 0.89658828]\n", + " [-0.17496266 0.40877603 0.89570655]\n", + " [-0.2027581 0.39946092 0.89404705]\n", + " [-0.23066412 0.38969702 0.89158864]\n", + " [-0.25856723 0.37951316 0.88832018]\n", + " [-0.28635365 0.36894365 0.88424101]\n", + " [-0.33361677 0.53551736 0.7758300006 2108.50000003]\n", + " [4270.50000017 4028.00000015]\n", + " [4270.49999995 3669.59999996]\n", + " [4270.49999992 3311.19999995]\n", + " [4270.50000022 2952.80000009]\n", + " [4270.50000024 2594.40000006]\n", + " [4270.49999979 2235.99999998]\n", + " [4144.00000027 4154.50000028]\n", + " [3785.60000021 4154.50000026]\n", + " [3427.20000003 4154.50000005]\n", + " [3068.79999988 4154.49999973]\n", + " [2710.40000006 4154.50000022]\n", + " [2351.99999998 4154.4999998 ]\n", + " [4144.00000013 2109.5 ]\n", + " [3785.6 2109.5 ]\n", + " [3427.19999974 2109.49999999]\n", + " [3068.8 2109.5 ]\n", + " [2710.39999984 2109.49999999]\n", + " [2351.99999972 2109.49999994]\n", + " [2225.5 4027.99999997]\n", + " [2225.50000002 3669.60000025]\n", + " [2225.50000002 3311.20000025]\n", + " [2225.50000004 2952.80000031]\n", + " [2225.50000002 2594.40000011]\n", + " [2225.50000016 2236.00000026]\n", + " [4270.49999974 4154.49999975]\n", + " [4270.49999974 4154.49999975]\n", + " [2225.50000003 2109.50000001]\n", + " [2225.50000003 2109.50000001]\n", + " [4143.99999996 4027.99999996]\n", + " [3785.60000018 4028.00000021]\n", + " [3427.19999989 4027.99999984]\n", + " [3068.80000004 4003]\n", + " [ 4.41400000e+02 1.56060000e+03]\n", + " [ 7.99800000e+02 1.56060000e+03]\n", + " [ 1.15820000e+03 1.56060000e+03]\n", + " [ 1.51660000e+03 1.56060000e+03]\n", + " [ 1.87500000e+03 1.56060000e+03]\n", + " [ 8.29999999e+01 1.91900000e+03]\n", + " [ 4.41400000e+02 1.91900000e+03]\n", + " [ 7.99800000e+02 1.91900000e+03]\n", + " [ 1.15820000e+03 1.91900000e+03]\n", + " [ 1.51660000e+03 1.91900000e+03]\n", + " [ 1.87500000e+03 1.91900000e+03]]\n", + "]\n", + " [0.01068985 0.12565215 0.99201677]\n", + " [0.01072978 0.09644485 0.99528049]\n", + " [0.01075592 0.06686038 0.99770436]\n", + " [0.01076796 0.03701177 0.99925681]\n", + " [0.01076573 0.00701584 0.99991744]\n", + " [0.20696213 0.19112005 0.95949977]\n", + " [0.20902258 0.15821703 0.96502691]\n", + " [0.21067623 0.12438266 0.96961048]\n", + " [0.21192136 0.08981934 0.97315046]\n", + " [0.21275532 0.05473042 0.9755715 ]\n", + " [0.21317532 0.0193211 0.9768229 ]\n", + " [0.1948134 0.20330747 0.95953833]\n", + " [0.16197729 0.20540191 0.96518051]\n", + " [0.1281888 0.20709749 0.96988569]\n", + " [0.09365018 0.2083924 0.97355136]\n", + " [0.05856456 0.20928375 0.97609964]\n", + " [0.02313694 0.20976841 0.977477-24.43997833]\n", + " [ 0.18452584 -19.06397881]\n", + " [ 0.18680401 -13.6879793 ]\n", + " [ 0.18908217 -8.31197977]\n", + " [ 0.19136034 -2.93598025]\n", + " [ 2.07666524 -31.71428177]\n", + " [ 7.45266476 -31.71655993]\n", + " [ 12.82866428 -31.7188381 ]\n", + " [ 18.2046638 -31.72111627]\n", + " [ 23.58066331 -31.72339443]\n", + " [ 28.95666283 -31.7256726 ]\n", + " [ 2.08966426 -1.03928452]\n", + " [ 7.46566378 -1.04156269]\n", + " [ 12.8416633 -1.04384085]\n", + " [ 18.21766282 -1.04611902]\n", + " [ 23.59366233 -1.04839718]\n", + " [ 28.96966185 -1.05067535]\n", + " [ 30.85496675 -29.82897686]\n", + " [ 30.85724492 -24.45297735]\n", + " [ 30.85952308 -19.07697783]\n", + " [ 30.86180126 -13.70097831]\n", + " [ 30.86407941 -8.32497879]\n", + " [ 30.86635759 -2.94897928]\n", + " [ 0.17916541 -31.71347767]\n", + " [ 0.17916541 -31.71347767]\n", + " [ 30.86716168 -1.05147945]\n", + " [ 30.86716168 -1.05147945]\n", + " [ 2.07746934 -29.81678193]\n", + " [ 7.45346886 -29.8190601 ]\n", + " [ 12.82946837 -29.82133827]\n", + " [ 18.20546789 -29.82361643]\n", + " [ 23.58146741 -29.82589461]\n", + " [ 28.95746693 -29.82817277]\n", + " [ 2.07974751 -24.44078242]\n", + " [ 7.45574702 -24.44306058]\n", + "823 23.91782767 19.75070735 16.30708904 14.12638019\n", + " 31.48209857 26.3352423 21.30188242 16.48630206 12.15026205 9.01456223\n", + " 30.50627799 25.16059326 19.83130509 14.53645837 9.33484517 4.55771859]\n", + "28.00000009]\n", + " [2710.39999997 4027.9999999 ]\n", + " [2351.99999997 4027.99999976]\n", + " [4144.00000024 3669.60000019]\n", + " [3785.60000022 3669.60000021]\n", + " [3427.19999988 3669.59999985]\n", + " [3068.80000005 3669.60000008]\n", + " [2710.39999999 3669.59999998]\n", + " [2352. 3669.60000003]\n", + " [4144.00000009 3311.20000006]\n", + " [3785.60000001 3311.20000001]\n", + " [3427.20000009 3311.20000009]\n", + " [3068.80000003 3311.20000004]\n", + " [2710.40000012 3311.20000025]\n", + " [2351.99999998 3311.19999988]\n", + " [4143.99999976 2952.79999989]\n", + " [3785.59999985 2952.79999992]\n", + " [3427.19999969 2952.79999979]\n", + " [3068.79999997 2952.79999997]\n", + " [2710.40000016 2952.80000025]\n", + " [2352.00000009 2952.80000036]\n", + " [4143.99999979 2594.39999994]\n", + " [3785.60000002 2594.40000001]\n", + " [3427.20000024 2594.4000001 ]\n", + " [3068.80000002 2594.40000001]\n", + " [2710.40000021 2594.40000019]\n", + " [2351.999999DEBUG:root:radec2pix: xyfp: [[ 0.236018 -31.56946754]\n", + " [ 0.23651287 -27.18303899]\n", + " [ 0.23700774 -22.79661046]\n", + " [ 0.23750261 -18.41018192]\n", + " [ 0.23799748 -14.02375336]\n", + " [ 0.23849235 -9.63732482]\n", + " [ 0.23898721 -5.25089628]\n", + " [ 0.23948208 -0.86446773]\n", + " [ 0.236018 -31.56946754]\n", + " [ 4.62244655 -31.56996241]\n", + " [ 9.00887509 -31.57045728]\n", + " [ 13.39530363 -31.57095214]\n", + " [ 17.78173218 -31.57144701]\n", + " [ 22.16816072 -31.57194188]\n", + " [ 26.55458927 -31.57243675]\n", + " [ 30.94101781 -31.57293162]\n", + " [ 0.23948208 -0.86446773]\n", + " [ 4.62591062 -0.8649626 ]\n", + " [ 9.01233917 -0.86545747]\n", + " [ 13.39876771 -0.86595234]\n", + " [ 17.78519626 -0.86644721]\n", + " [ 22.1716248 -0.86694208]\n", + " [ 26.55805334 -0.86743695]\n", + " [ 30.94448189 -0.86793181]\n", + " [ 30.94101781 -31.57293162]\n", + " [ 30.94151268 -27.18650307]\n", + " [ 30.94200754 -22.80007453]\n", + " [ 30.94250242 -18.41364599]\n", + " [ 30.94299728 -14.02721745]\n", + " [ 30.94349215 -9.6407889 ]\n", + " [ 30.94398702 -5.25436036]\n", + " [ 30.94448189 -0.86793181]\n", + " [ 0.25123377 -29.65696924]\n", + " [ 0.25184028 98 2594.39999995]\n", + " [4144.00000008 2236.00000001]\n", + " [3785.60000005 2236.00000001]\n", + " [3427.20000007 2236.00000001]\n", + " [3068.79999979 2235.99999996]\n", + " [2710.39999971 2235.99999991]\n", + " [2351.99999979 2235.99999984]]\n", + "DEBUG:root:radec2pix: curVec: [[ 0.95074564 0.29884235 -0.08231631]\n", + " [ 0.95666915 0.27544941 -0.09440216]\n", + " [ 0.96203003 0.25129639 -0.1065286 ]\n", + " [ 0.96676089 0.2264834 -0.11865352]\n", + " [ 0.97080559 0.20110988 -0.13073382]\n", + " [ 0.9741191 0.17527541 -0.14272533]\n", + " [ 0.97666734 0.14908048 -0.15458307]\n", + " [ 0.97842716 0.12262691 -0.16626164]\n", + " [ 0.95074564 0.29884235 -0.08231631]\n", + " [ 0.95526292 0.29016714 -0.0572344 ]\n", + " [ 0.95920249 0.28094586 -0.03162279]\n", + " [ 0.96250084 0.27122121 -0.00558521]\n", + " [ 0.96510577 0.26103493 0.02077526]\n", + " [ 0.96697627 0.25042834 0.04735548]\n", + " [ 0.96808229 0.23944313 0.07405183]\n", + " [ 0.96840475 0.22812195 0.10076017]\n", + " [ 0.97842716 0.12262691 -0.16626164]\n", + " [ 0.98365612 0.11195917 -0.14101699]\n", + " [ 0.98820321 0.10097953 -0.11514146]\n", + " [ 0.99200584 0.0897272DEBUG:root:fitpix2pix: ccdpx: shape: (96, 2)\n", + "31]\n", + " [0.20149034 0.00681796 0.97946677]\n", + " [0.16749252 0.00690216 0.98584919]\n", + " [0.1325326 0.00697398 0.99115411]\n", + " [0.09680441 0.00703299 0.99527858]\n", + " [0.0605079 0.00707868 0.99814262]\n", + " [0.02385188 0.00711058 0.99969022]\n", + " [0.01062602 0.19806614 0.98013106]\n", + " [0.01071595 0.16396327 0.98640824]\n", + " [0.0107859 0.12891793 0.99159661]\n", + " [0.01083545 0.09312436 0.99559552]\n", + " [0.01086402 0.05678335 0.99832741]\n", + " [0.01087112 0.02010461 0.99973878]\n", + " [0.20613793 0.2024732 0.95734621]\n", + " [0.20613793 0.2024732 0.95734621]\n", + " [0.01086844 0.00711848 0.9999156 ]\n", + " [0.01086844 0.00711848 0.9999156 ]\n", + " [0.19558949 0.19190537 0.96172609]\n", + " [0.1626169 0.19387759 0.96745399]\n", + " [0.12869151 0.19547539 0.9722283 ]\n", + " [0.09401511 0.1966967 0.9759465 ]\n", + " [0.05879055 0.19753824 0.97853069]\n", + " [0.02322296 0.19799645 0.9799276 ]\n", + " [0.19753009 0.15886347 0.96733875]\n", + " [0.16421774 0.1604891 0.97328094]\n", + " [0.12995114 0.1618095 0.97822819]\n", + " [0.09493033 0.16282181 0.98207805]\n", + " [0.05935726 0.5 -0.08873237]\n", + " [ 0.99501156 0.07824238 -0.06188795]\n", + " [ 0.9971781 0.06656658 -0.03470909]\n", + " [ 0.99847376 0.05474356 -0.00730025]\n", + " [ 0.99887799 0.04281899 0.02023081]\n", + " [ 0.96840475 0.22812195 0.10076017]\n", + " [ 0.97501103 0.20315537 0.08989658]\n", + " [ 0.98095997 0.17752708 0.07875066]\n", + " [ 0.98618529 0.15133038 0.06736232]\n", + " [ 0.99063071 0.12466042 0.05577252]\n", + " [ 0.99424998 0.09761592 0.04402396]\n", + " [ 0.99700732 0.07029983 0.03216126]\n", + " [ 0.99887799 0.04281899 0.02023081]\n", + " [ 0.95340934 0.28871365 -0.08749318]\n", + " [ 0.96030069 0.25951797 -0.10233771]\n", + " [ 0.96627861 0.22928025 -0.11720163]\n", + " [ 0.97123509 0.19818379 -0.13200603]\n", + " [ 0.97508721 0.16641201 -0.14666962]\n", + " [ 0.97777677 0.13415048 -0.16110939]\n", + " [ 0.95280311 0.29505075 -0.07149332]\n", + " [ 0.95796034 0.28404437 -0.04038289]\n", + " [ 0.96218534 0.27226046 -0.00857992]\n", + " [ 0.96537733 0.25977626 0.02372559]\n", + " [ 0.96746076 0.24666794 0.05634372]\n", + " [ 0.96838488 0.2330126 0.08908346]\n", + " [ 0.98078172 0.11810776 -0.15529898]\n", + " [ 0.98674DEBUG:root:radec2pix: fitpx: [[4271.50000008 4155.50000008]\n", + " [4271.50000011 3863.07142867]\n", + " [4271.50000027 3570.64285733]\n", + " [4271.49999971 3278.21428555]\n", + " [4271.50000017 2985.78571436]\n", + " [4271.4999997 2693.35714277]\n", + " [4271.5000001 2400.92857145]\n", + " [4271.49999983 2108.5 ]\n", + " [4271.50000008 4155.50000008]\n", + " [3979.07142843 4155.49999984]\n", + " [3686.64285723 4155.50000011]\n", + " [3394.21428586 4155.50000024]\n", + " [3101.78571417 4155.49999975]\n", + " [2809.35714282 4155.49999988]\n", + " [2516.92857139 4155.49999979]\n", + " [2224.5 4155.50000004]\n", + " [4271.49999983 2108.5 ]\n", + " [3979.07142844 2108.5 ]\n", + " [3686.64285726 2108.5 ]\n", + " [3394.21428608 2108.50000001]\n", + " [3101.7857142 2108.5 ]\n", + " [2809.35714302 2108.50000001]\n", + " [2516.92857112 2108.49999996]\n", + " [2224.50000006 2108.50000003]\n", + " [2224.5 4155.50000004]\n", + " [2224.49999999 3863.07142838]\n", + " [2224.49999998 3570.64285685]\n", + " [2224.50000004 3278.21428613]\n", + " [2224.49999996 2985.78571394]\n", + " [2224.50000004 2693.35714312]\n", + " [2224.49999998 2400.92857136]\n", + " [2224.500568]\n", + " [-0.32791862 0.51389891 0.79270252]\n", + " [-0.32184749 0.49143296 0.80926376]\n", + " [-0.3154127 0.46818662 0.82541875]\n", + " [-0.30862705 0.44423201 0.84107507]\n", + " [-0.3015073 0.41964792 0.85614775]\n", + " [-0.29407444 0.3945206 0.87055943]\n", + " [-0.28635365 0.36894365 0.88424101]\n", + " [-0.14269484 0.58403124 0.79909054]\n", + " [-0.13375194 0.55842906 0.8186986 ]\n", + " [-0.12466058 0.5315405 0.83780931]\n", + " [-0.11544561 0.50350468 0.85624491]\n", + " [-0.10614096 0.47446907 0.87384964]\n", + " [-0.0967887 0.44459134 0.89048891]\n", + " [-0.15708956 0.59013571 0.79187291]\n", + " [-0.18949252 0.58205938 0.79075879]\n", + " [-0.22238887 0.57295709 0.78883672]\n", + " [-0.25556095 0.56286496 0.78604812]\n", + " [-0.28879813 0.55182641 0.7823575 ]\n", + " [-0.32189536 0.53989391 0.77775185]\n", + " [-0.10501061 0.43054421 0.89643988]\n", + " [-0.13815703 0.42058707 0.89667115]\n", + " [-0.1718659 0.40988445 0.89579956]\n", + " [-0.2059292 0.39846902 0.89376485]\n", + " [-0.24013931 0.38638411 0.89052818]\n", + " [-0.27428715 0.37368508 0.88607337]\n", + " [-0.33108673 0.52600006 2108.50000003]\n", + " [4270.50000017 4028.00000015]\n", + " [4270.49999995 3669.59999996]\n", + " [4270.49999992 3311.19999995]\n", + " [4270.50000022 2952.80000009]\n", + " [4270.50000024 2594.40000006]\n", + " [4270.49999979 2235.99999998]\n", + " [4144.00000027 4154.50000028]\n", + " [3785.60000021 4154.50000026]\n", + " [3427.20000003 4154.50000005]\n", + " [3068.79999988 4154.49999973]\n", + " [2710.40000006 4154.50000022]\n", + " [2351.99999998 4154.4999998 ]\n", + " [4144.00000013 2109.5 ]\n", + " [3785.6 2109.5 ]\n", + " [3427.19999974 2109.49999999]\n", + " [3068.8 2109.5 ]\n", + " [2710.39999984 2109.49999999]\n", + " [2351.99999972 2109.49999994]\n", + " [2225.5 4027.99999997]\n", + " [2225.50000002 3669.60000025]\n", + " [2225.50000002 3311.20000025]\n", + " [2225.50000004 2952.80000031]\n", + " [2225.50000002 2594.40000011]\n", + " [2225.50000016 2236.00000026]\n", + " [4270.49999974 4154.49999975]\n", + " [4270.49999974 4154.49999975]\n", + " [2225.50000003 2109.50000001]\n", + " [2225.50000003 2109.50000001]\n", + " [4143.99999996 4027.99999996]\n", + " [3785.60000018 4028.00000021]\n", + " [3427.19999989 4027.99999984]\n", + " [3068.80000004 4087 19.57499171 16.08640287 13.86243725\n", + " 31.43120667 26.26984115 21.21535074 16.36705265 11.9779994 8.76739863\n", + " 30.50284606 25.15168819 19.81398425 14.50459502 9.27228848 4.40115246]\n", + "714e+02]\n", + " [ 2.00250000e+03 1.16921429e+03]\n", + " [ 2.00250000e+03 1.46164286e+03]\n", + " [ 2.00250000e+03 1.75407143e+03]\n", + " [ 2.00250000e+03 2.04650000e+03]\n", + " [-4.35000000e+01 1.27000000e+02]\n", + " [-4.35000000e+01 4.85400000e+02]\n", + " [-4.35000000e+01 8.43800000e+02]\n", + " [-4.35000000e+01 1.20220000e+03]\n", + " [-4.35000000e+01 1.56060000e+03]\n", + " [-4.35000000e+01 1.91900000e+03]\n", + " [ 8.30000000e+01 4.99999716e-01]\n", + " [ 4.41400000e+02 4.99999791e-01]\n", + " [ 7.99800000e+02 5.00000291e-01]\n", + " [ 1.15820000e+03 5.00000004e-01]\n", + " [ 1.51660000e+03 5.00000077e-01]\n", + " [ 1.87500000e+03 4.99999846e-01]\n", + " [ 8.30000001e+01 2.04550000e+03]\n", + " [ 4.41400000e+02 2.04550000e+03]\n", + " [ 7.99800000e+02 2.04550000e+03]\n", + " [ 1.15820000e+03 2.04550000e+03]\n", + " [ 1.51660000e+03 2.04550000e+03]\n", + " [ 1.87500000e+03 2.04550000e+03]\n", + " [ 2.00150000e+03 1.27000000e+02]\n", + "DEBUG:root:optics_fp: cphi: [0.71341716 0.76328013 0.81514194 0.86698087 0.91566575 0.95700502\n", + " 0.98630354 0.99950918 0.71341716 0.66051768 0.59557134 0.51643629\n", + " 0.4214805 0.31036993 0.18497457 0.04990581 0.99950918 0.99934039\n", + " 0.99906819 0.99858739 0.99761569 0.9951653 0.98558541 0.8377988\n", + " 0.04990581 0.05781889 0.0687377 0.08476872 0.11057085 0.15882919\n", + " 0.27935111 0.8377988 0.73466528 0.79733703 0.86111952 0.92071715\n", + " 0.96846887 0.9959178 0.69186293 0.61921532 0.52631184 0.40990453\n", + " 0.26948104 0.10963271 0.999428 0.999152 0.99861839 0.99737128\n", + " 0.99322638 0.95832228 0.05357183 0.06521663 0.08337359 0.1155749\n", + " 0.18791565 0.47564444 0.71341996 0.71341996 0.83653968 0.83653968\n", + " 0.71379735 0.6426352 0.54988271 0.43124184 0.28525093 0.11649124\n", + " 0.77925087 0.71517941 0.62617339 0.50367681 0.34120915 0.14155583\n", + " 0.8471183 0.79527459 0.71732418 0.59864658 0.42182798 0.18020046\n", + " 0.91180529 0.87721591 0.82023759 0.72110338 0.54370846 0.24707693\n", + " 0.96461215 0.94899507 0.92085832 0.DEBUG:root:fitpix2pix: visCut: True\n", + " [ 12.83174654 -24.44533875]\n", + " [ 18.20774606 -24.44761692]\n", + " [ 23.58374558 -24.44989508]\n", + " [ 28.95974509 -24.45217325]\n", + " [ 2.08202567 -19.0647829 ]\n", + " [ 7.45802519 -19.06706107]\n", + " [ 12.83402471 -19.06933924]\n", + " [ 18.21002422 -19.0716174 ]\n", + " [ 23.58602374 -19.07389557]\n", + " [ 28.96202325 -19.07617373]\n", + " [ 2.08430384 -13.68878339]\n", + " [ 7.46030335 -13.69106155]\n", + " [ 12.83630287 -13.69333972]\n", + " [ 18.21230239 -13.69561789]\n", + " [ 23.58830191 -13.69789605]\n", + " [ 28.96430143 -13.70017422]\n", + " [ 2.086582 -8.31278387]\n", + " [ 7.46258152 -8.31506203]\n", + " [ 12.83858103 -8.3173402 ]\n", + " [ 18.21458055 -8.31961837]\n", + " [ 23.59058007 -8.32189653]\n", + " [ 28.96657959 -8.3241747 ]\n", + " [ 2.08886017 -2.93678435]\n", + " [ 7.46485969 -2.93906252]\n", + " [ 12.8408592 -2.94134068]\n", + " [ 18.21685872 -2.94361885]\n", + " [ 23.59285824 -2.94589701]\n", + " [ 28.96885776 -2.94817518]]\n", + "86374835 0.72953296 0.3869314\n", + " 0.99539279 0.99320908 0.98902871 0.97944976 0.94931741 0.76479745]\n", + "-24.28096928]\n", + " [ 0.25244679 -18.90496931]\n", + " [ 0.2530533 -13.52896935]\n", + " [ 0.25365981 -8.15296938]\n", + " [ 0.25426632 -2.77696942]\n", + " [ 2.14851968 -31.5546833 ]\n", + " [ 7.52451965 -31.55528981]\n", + " [ 12.90051962 -31.55589633]\n", + " [ 18.27651958 -31.55650284]\n", + " [ 23.65251954 -31.55710934]\n", + " [ 29.02851952 -31.55771586]\n", + " [ 2.15198038 -0.8796835 ]\n", + " [ 7.52798035 -0.88029001]\n", + " [ 12.90398031 -0.88089652]\n", + " [ 18.27998027 -0.88150303]\n", + " [ 23.65598025 -0.88210954]\n", + " [ 29.03198021 -0.88271605]\n", + " [ 30.92623357 -29.66042994]\n", + " [ 30.92684009 -24.28442998]\n", + " [ 30.9274466 -18.90843001]\n", + " [ 30.9280531 -13.53243004]\n", + " [ 30.92865961 -8.15643008]\n", + " [ 30.92926612 -2.78043011]\n", + " [ 0.2510197 -31.55446923]\n", + " [ 0.2510197 -31.55446923]\n", + " [ 30.9294802 -0.88293012]\n", + " [ 30.9294802 -0.88293012]\n", + " [ 2.14873376 -29.65718332]\n", + " [ 7.52473372 -29.65778983]\n", + " [ 12.90073369 -29.65839633]\n", + " [ 18.27673365 -29.65900285]\n", + " [ 23.65273362 -29.65960936]\n", + " [ 29.02873359 -29.66021587]\n", + " [ 2.14934027 -24.28118335]\n", + " [ 7.52534023 -24.28178986]\n", + " [ 12.9013402 -24.28239637]\n", + " [ 18.27734016 -24.28300288]\n", + " [ 23.65334013 -24.28360939]\n", + " [ 29.02934009 -24.2842159 ]\n", + " [ 2.14994678 -18.90518338]\n", + " [ 7.52594674 -18.90578989]\n", + " [ 12.90194671 -18.9063964 ]\n", + " [ 18.27794667 -18.90700292]\n", + " [ 23.65394664 -18.90760943]\n", + " [ 29.0299466 -18.90821593]\n", + " [ 2.15055329 -13.52918342]\n", + " [ 7.52655325 -13.52978993]\n", + " [ 12.90255322 -13.53039644]\n", + " [ 18.27855318 -13.53100295]\n", + " [ 23.65455315 -13.53160946]\n", + " [ 29.03055312 -13.53221597]\n", + " [ 2.1511598 -8.15318346]\n", + " [ 7.52715976 -8.15378996]\n", + " [ 12.90315973 -8.15439647]\n", + " [ 18.27915969 -8.15500298]\n", + " [ 23.65515966 -8.15560949]\n", + " [ 29.03115962 -8.156216 ]\n", + " [ 2.1517663 -2.77718348]\n", + " [ 7.52776627 -2.77779 ]\n", + " [ 12.90376624 -2.77839651]\n", + " [ 18.2797662 -2.77900302]\n", + " [ 23.65576617 -2.77960953]\n", + " [ 29.03176613 -2.78021604]]\n", + "16352163 0.98475245]\n", + " [0.02343764 0.16390447 0.98619775]\n", + " [0.19908829 0.12488974 0.97199095]\n", + " [0.16550536 0.12616714 0.97810522]\n", + " [0.13096617 0.12720791 0.98319175]\n", + " [0.09566871 0.12800859 0.98714806]\n", + " [0.05981412 0.1285643 0.9898957 ]\n", + " [0DEBUG:root:optics_fp: cphi: [0.71674184 0.76675024 0.81864942 0.87035228 0.91865771 0.95932569\n", + " 0.98767201 0.99974255 0.71674184 0.66409483 0.59932455 0.52022133\n", + " 0.42506968 0.31345852 0.18722881 0.05105417 0.99974255 0.99965353\n", + " 0.99950987 0.99925593 0.99874223 0.99744464 0.99234175 0.9056856\n", + " 0.05105417 0.05923154 0.07055215 0.08725098 0.11432168 0.16558509\n", + " 0.29698694 0.9056856 0.73806414 0.80084934 0.86451924 0.92365062\n", + " 0.9704975 0.99665945 0.6953044 0.6229226 0.53010496 0.41345588\n", + " 0.27232584 0.11128947 0.99969644 0.99954923 0.99926436 0.99859785\n", + " 0.99637691 0.97728259 0.0548278 0.06688083 0.08577093 0.11956053\n", + " 0.19678357 0.51804091 0.7167462 0.7167462 0.90395966 0.90395966\n", + " 0.7173329 0.64650885 0.55392153 0.43509499 0.28838199 0.1183142\n", + " 0.78296688 0.7194824 0.6309635 0.50857972 0.34543889 0.14404729\n", + " 0.85078398 0.79980651 0.72282072 0.60489433 0.42782202 0.18390653\n", + " 0.9150296 0.88149415 0.82599605 0.72871014 0.55254711 0.25338228\n", + " 0.96687862 0.95220074 0.92565817 0..02360896 0.12887024 0.99138039]\n", + " [0.20026215 0.09018615 0.97558266]\n", + " [0.16647694 0.09111203 0.98182688]\n", + " [0.13173312 0.09186896 0.98701899]\n", + " [0.09622682 0.09245358 0.99105637]\n", + " [0.06015857 0.0928614 0.99386 ]\n", + " [0.02373584 0.09308815 0.99537491]\n", + " [0.20104857 0.05495583 0.97803851]\n", + " [0.16712825 0.05552612 0.98437036]\n", + " [0.13224724 0.05599434 0.98963392]\n", + " [0.09660024 0.05635799 0.99372641]\n", + " [0.06038739 0.05661388 0.99656823]\n", + " [0.02381698 0.05675899 0.99810379]\n", + " [0.20144435 0.01940412 0.97930774]\n", + " [0.16745515 0.01961547 0.98568454]\n", + " [0.13250401 0.01979108 0.99098486]\n", + " [0.09678486 0.01992994 0.99510577]\n", + " [0.06049766 0.02003078 0.99796733]\n", + " [0.02385117 0.02009239 0.99951359]]\n", + "87139471 0.74187378 0.40036553\n", + " 0.99622933 0.99443943 0.99100871 0.9831251 0.95810564 0.79702588]\n", + "017 0.10481959 -0.12392215]\n", + " [ 0.99161111 0.09110175 -0.09169451]\n", + " [ 0.9952938 0.07702757 -0.05879638]\n", + " [ 0.99771045 0.0626738 -0.02541364]\n", + " [ 0.99880732 0.04812173 0.00826 ]\n", + " [ 0.97136149 0.21736317 0.09596927]\n", + " [ 0.97902498 0.18630779 0.08245909]\n", + " [ 0.98563414 0.15435104 0.06856459]\n", + " [ 0.99108123 0.1216672 0.05436072]\n", + " [ 0.99528117 0.08843808 0.03992609]\n", + " [ 0.99817265 0.05485489 0.02534362]\n", + " [ 0.95078312 0.29873508 -0.08227277]\n", + " [ 0.95078312 0.29873508 -0.08227277]\n", + " [ 0.99887328 0.04295402 0.02017744]\n", + " [ 0.99887328 0.04295402 0.02017744]\n", + " [ 0.95546503 0.28496576 -0.07668825]\n", + " [ 0.96071128 0.27379486 -0.04549965]\n", + " [ 0.96500749 0.26186892 -0.01360916]\n", + " [ 0.96825312 0.24926428 0.01879382]\n", + " [ 0.97037268 0.23605636 0.05151954]\n", + " [ 0.97131538 0.22232182 0.08437673]\n", + " [ 0.96244599 0.25559691 -0.09147643]\n", + " [ 0.96791573 0.24397912 -0.06011099]\n", + " [ 0.97239113 0.23166909 -0.0280164 ]\n", + " [ 0.97577208 0.21874072 0.00461979]\n", + " [ 0.97798303 0.20526762 0.0376084 ]\n", + " [ 0.97897287 0.19132577 0.07075716]\n", + " [ 0.96849662 0.22519551 -0.10630743]\n", + " [ 0.97414811 0.21315669 -0.07483108]\n", + " [ 0.97876986 0.20048697 -0.04259741]\n", + " [ 0.98226188 0.18725841 -0.00979202]\n", + " [ 0.98454819 0.17354382 0.02339649]\n", + " [ 0.98557704 0.15941929 0.0567749 ]\n", + " [ 0.97350915 0.19394387 -0.1211021 ]\n", + " [ 0.97930108 0.18150696 -0.08958026]\n", + " [ 0.98403649 0.16849938 -0.0572726 ]\n", + " [ 0.98761521 0.15499243 -0.02436279]\n", + " [ 0.98996062 0.14105911 0.00896125]\n", + " [ 0.99102018 0.12677652 0.04250555]\n", + " [ 0.97740069 0.16202478 -0.13577873]\n", + " [ 0.98329169 0.14921124 -0.10427587]\n", + " [ 0.98810763 0.13588681 -0.07195899]\n", + " [ 0.99174804 0.12212307 -0.03901004]\n", + " [ 0.99413566 0.10799422 -0.00561615]\n", + " [ 0.99521726 0.09357894 0.02802845]\n", + " [ 0.980113 0.12962374 -0.15025378]\n", + " [ 0.98606128 0.11645533 -0.11883311]\n", + " [ 0.99092392 0.10283597 -0.08657103]\n", + " [ 0.99460022 0.08883841 -0.0536482 ]\n", + " [ 0.99701248 0.07453869 -0.02025083]\n", + " [ 0.99810702 0.06001739 0.01342713]]\n", + "23543 0.7832355 ]\n", + " [-0.32385034 0.49916201 0.80371528]\n", + " [-0.31606278 0.47088178 0.82363503]\n", + " [-0.30774618 0.44152533 0.84282126]\n", + " [-0.29893142 0.41123778 0.86111758]\n", + " [-0.28965889 0.38018104 0.87838494]\n", + " [-0.14581264 0.59273558DEBUG:root:radec2pix: xyfp Shape: (96, 2)\n", + "DEBUG:root:radec2pix: xyfp Shape: (96, 2)\n", + " 0.79208788]\n", + " [-0.14581264 0.59273558 0.79208788]\n", + " [-0.28628582 0.36906853 0.88421086]\n", + " [-0.28628582 0.36906853 0.88421086]\n", + " [-0.1540133 0.58138369 0.79891984]\n", + " [-0.18653454 0.5731831 0.79791353]\n", + " [-0.21955069 0.56397211 0.79607346]\n", + " [-0.2528448 0.55378609 0.79334134]\n", + " [-0.28620652 0.54266776 0.78968191]\n", + " [-0.31943057 0.53066917 0.78508238]\n", + " [-0.145169 0.55564886 0.81864541]\n", + " [-0.17797277 0.54710409 0.81792591]\n", + " [-0.21127824 0.53759419 0.81630509]\n", + " [-0.24487061 0.52715236 0.81372525]\n", + " [-0.2785402 0.51581967 0.81015148]\n", + " [-0.31208078 0.50364736 0.80557118]\n", + " [-0.1361482 0.52863062 0.83786236]\n", + " [-0.16915726 0.51975111 0.83740349]\n", + " [-0.20267826 0.50995328 0.83598395]\n", + " [-0.2364985 0.49926872 0.83354616]\n", + " [-0.2704088 0.48773755 0.83005492]\n", + " [-0.30420176 0.47541094 0.82549726]\n", + " [-0.12697615 0.50046721 0.85639339]\n", + " [-0.16011418 0.49125979 0.85617012]\n", + " [-0.DEBUG:root:radec2pix: curVec Shape: (96, 3)\n", + "DEBUG:root:optics_fp: sphi: [0.69733861 0.64194554 0.57429359 0.49242959 0.39505443 0.28230164\n", + " 0.15653753 0.02269007 0.69733861 0.74764835 0.80050614 0.85403148\n", + " 0.90516063 0.94960189 0.98231633 0.99869589 0.02269007 0.02632152\n", + " 0.03130538 0.03856929 0.05013934 0.07144362 0.12352264 0.42394999\n", + " 0.99869589 0.99824427 0.99750809 0.99618636 0.99344379 0.98619551\n", + " 0.95488154 0.42394999 0.67473055 0.59886588 0.50259973 0.38323562\n", + " 0.24111118 0.08166976 0.71871537 0.78228347 0.84793203 0.91052415\n", + " 0.96220509 0.99378803 0.02463779 0.03002235 0.03835014 0.05293717\n", + " 0.08504731 0.21194041 0.99849582 0.99776097 0.99631488 0.99282691\n", + " 0.98044695 0.85535584 0.69733413 0.69733413 0.42761774 0.42761774\n", + " 0.69673058 0.76290649 0.83256888 0.90038456 0.95751545 0.99297621\n", + " 0.62206339 0.69451068 0.77581252 0.86101491 0.93844125 0.9895708\n", + " 0.52551558 0.6002579 0.6910356 0.79630575 0.903863 0.98294374\n", + " 0.40338671 0.47219495 0.5636759 0.68482227 0.83348167 0.96736623\n", + " 0.25523664 0.305473 0.37836089 0.49058257 0.67053956 0.91635552\n", + " 0.08675898 0.10531014 0.13379739 0.18293452 0.28641505 0.60394515]\n", + "19377718 0.48118267 0.85493488]\n", + " [-0.22775433 0.47026668 0.85262959]\n", + " [-0.26183686 0.45855197 0.8492182 ]\n", + " [-0.29581631 0.44609036 0.84468698]\n", + " [-0.11768726 0.47130553 0.87408284]\n", + " [-0.15087898 0.46177561 0.87407026]\n", + " [-0.18461073 0.45142688 0.87300209]\n", + " [-0.21867318 0.4402904 0.87081939]\n", + " [-0.252858 0.42840724 0.86748491]\n", + " [-0.28695606 0.41583049 0.86298391]\n", + " [-0.10832409 0.44130318 0.89079593]\n", + " [-0.14149528 0.43145632 0.89096831]\n", + " [-0.17522291 0.42084431 0.89004888]\n", + " [-0.20929868 0.40949928 0.8879777 ]\n", + " [-0.24351478 0.3974639 0.88471634]\n", + " [-0.27766201 0.38479291 0.88024896]]\n", + "28.00000009]\n", + " [2710.39999997 4027.9999999 ]\n", + " [2351.99999997 4027.99999976]\n", + " [4144.00000024 3669.60000019]\n", + " [3785.60000022 3669.60000021]\n", + " [3427.19999988 3669.59999985]\n", + " [3068.80000005 3669.60000008]\n", + " [2710.39999999 3669.59999998]\n", + " [2352. 3669.60000003]\n", + " [4144.00000009 3311.20000006]\n", + " [3785.60000001 3311.20000001]\n", + " [3427.20000009 3311.20000009]\n", + " [3068.80000003 3311.20000004]\n", + " [2710.40000012 3311.20000025]\n", + " [2351.99999998 3311.19999988]\n", + " [4143.99999976 2952.79999989]\n", + " [3785.59999985 2952.79999992]\n", + " [3427.19999969 2952.79999979]\n", + " [3068.79999997 2952.79999997]\n", + " [2710.40000016 2952.80000025]\n", + " [2352.00000009 2952.80000036]\n", + " [4143.99999979 2594.39999994]\n", + " [3785.60000002 2594.40000001]\n", + " [3427.20000024 2594.4000001 ]\n", + " [3068.80000002 2594.40000001]\n", + " [2710.40000021 2594.40000019]\n", + " [2351.99999998 2594.39999995]\n", + " [4144.00000008 2236.00000001]\n", + " [3785.60000005 2236.00000001]\n", + " [3427.20000007 2236.00000001]\n", + " [3068.79999979 2235.99999996]\n", + " [2710.39999971 2235.99999991]\n", + " [2351.99999979 2235.99999984]]\n", + "DEBUG:root:radec2pix: lng: [44.48637088 40.24577336 35.3986005 29.89032997 23.69955042 16.86222735\n", + " 9.49377237 1.79522173 44.48637088 48.66063412 53.44662754 58.90649312\n", + " 65.0719071 71.9184746 79.34035003 87.13941954 1.79522173 2.08115239\n", + " 2.4736322 3.04578526 3.95735654 5.6363423 9.74006464 33.09159725\n", + " 87.13941954 86.68537287 86.05851166 85.13727473 83.65177634 80.86105503\n", + " 73.77851938 33.09159725 42.72105973 37.1234454 30.55748427 22.96885005\n", + " 14.42630836 5.17884001 46.22224274 51.74114431 58.24340245 65.80116251\n", + " 74.36661193 83.70585675 1.93801443 2.35975361 3.01217367 4.15532416\n", + " 6.6725739 16.60005947 86.92909007 86.26070822 85.21749379 83.36321455\n", + " 79.16883097 61.59868241 44.48614146 44.48614146 33.22349754 33.22349754\n", + " 44.45527608 50.01139871 56.64103308 64.45360362 73.42615136 83.31035484\n", + " 38.80796323 44.3420957 51.23163704 59.75644459 70.04944098 81.86211477\n", + " 32.10039047 37.31880048 44.16600061 53.22697224 65.04995068 79.6185637\n", + " 24.24396698 28.69167771 34.89141577 43.85434751 57.06355174 75.69539259\n", + " 15.28811193 18.37837592 22.94811312 30.25991115 43.15274514 67.23630391\n", + " 5.50203766 6.68110194 8.4950185 11.63570463 18.3197087 40.11102427]\n", + "DEBUG:root:mm_to_pix: fitpx: [[0. 0DEBUG:root:fitpix2pix: ccdpx: shape: (96, 2)\n", + "DEBUG:root:radec2pix: curVec Shape: (96, 3)\n", + ".]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]]\n", + "DEBUG:root:fitpix2pix: visCut: True\n", + "DEBUG:root:mm_toDEBUG:root:mm_to_pix: fitpx.shape: (96, 2)\n", + "_pix: fitpx: [[0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]]\n", + "DEBUG:root:mm_to_pix: fitpx.shape: (96, 2)\n", + "DEBUG:root:radec2pix: lat: [73.19833089 74.18249103 75.09922688 75.92116023 76.61853688 77.16100123\n", + " 77.52079342 77.67706772 73.19833089 74.20159367 75.14093371 75.98890558\n", + " 76.71531245 77.28881429 77.68005228 77.86611976 77.67706772 79.27473553\n", + " 80.90480881 82.56181915 84.24016258 85.93331116 87.63030205 89.26372814\n", + " 77.86611976 79.46663016 81.09832556 82.755367 84.43126132 86.11695715\n", + " 87.79091006 89.26372814 73.63774563 74.80227565 75.83862014 76.69292614\n", + " 77.3096353 77.64025349 73.64559076 74.835883 75.90321746 76.7930912\n", + " 77.44812351 77.8166633 78.36913095 80.34967761 82.37343442 84.43012843\n", + " 86.50734673 88.57380626 78.55945528 80.5426681 82.56690719 84.62047016\n", + " 86.68569475 88.69035885 73.20529527 73.20529527 89.25558432 89.25558432\n", + " 74.09681811 75.34210951 76.46528549 77.40781255 78.10603298 78.5008319\n", + " 75.3160395 76.72544415 78.02222799 79.13621749 79.98176995 80.46955109\n", + " 76.40729948 77.98832745 79.48016045 80.80422916 81.84813181 82.47175257\n", + " 77.31254652 79.06012758 80.75806605 82.3313541 83.64750757 8DEBUG:root:optics_fp: sphi: [0.70073958 0.64606768 0.57926126 0.49834142 0.40194059 0.29007134\n", + " 0.1649404 0.0313274 0.70073958 0.75081049 0.80330242 0.85632562\n", + " 0.90683747 0.95061586 0.98274331 0.99875393 0.0313274 0.03631497\n", + " 0.04315962 0.05313395 0.069014 0.09821415 0.1691786 0.5459791\n", + " 0.99875393 0.99832709 0.99763477 0.99640065 0.99386824 0.98730608\n", + " 0.96018902 0.5459791 0.67842975 0.60353431 0.50840257 0.39023062\n", + " 0.2491346 0.09026478 0.72202887 0.78522123 0.85029163 0.91212843\n", + " 0.9630057 0.99397217 0.03381828 0.04117383 0.05254813 0.07246053\n", + " 0.11619532 0.28568936 0.998564 0.99787113 0.99651836 0.99329877\n", + " 0.98218517 0.87963764 0.70073672 0.70073672 0.54790634 0.54790634\n", + " 0.7003523 0.76617231 0.83524188 0.90223637 0.95845287 0.99319172\n", + " 0.62671212 0.69894092 0.77968384 0.86389216 0.9399874 0.98993027\n", + " 0.53140435 0.60624939 0.69673956 0.80101328 0.90667588 0.98362991\n", + " 0.41062285 0.48009609 0.57202299 0.69282748 0.83927416 0.96899587\n", + " 0.26367291 0.3152909 0.38989736 0 [ 2.00150000e+03 4.85400000e+02]\n", + " [ 2.00150000e+03 8.43800000e+02]\n", + " [ 2.00150000e+03 1.20220000e+03]\n", + " [ 2.00150000e+03 1.56060000e+03]\n", + " [ 2.00150000e+03 1.91900000e+03]\n", + " [-4.35000000e+01 4.99999735e-01]\n", + " [-4.35000000e+01 4.99999735e-01]\n", + " [ 2.00150000e+03 2.04550000e+03]\n", + " [ 2.00150000e+03 2.04550000e+03]\n", + " [ 8.30000000e+01 1.27000000e+02]\n", + " [ 4.41400000e+02 1.27000000e+02]\n", + " [ 7.99800000e+02 1.27000000e+02]\n", + " [ 1.15820000e+03 1.27000000e+02]\n", + " [ 1.51660000e+03 1.27000000e+02]\n", + " [ 1.87500000e+03 1.27000000e+02]\n", + " [ 8.30000000e+01 4.85400000e+02]\n", + " [ 4.41400000e+02 4.85400000e+02]\n", + " [ 7.99800000e+02 4.85400000e+02]\n", + " [ 1.15820000e+03 4.85400000e+02]\n", + " [ 1.51660000e+03 4.85400000e+02]\n", + " [ 1.87500000e+03 4.85400000e+02]\n", + " [ 8.30000000e+01 8.43800000e+02]\n", + " [ 4.41400000e+02 8.43800000e+02]\n", + " [ 7.99800000e+02 8.43800000e+02]\n", + " [ 1.15820000e+03 8.43800000e+02]\n", + " [ 1.51660000e+03 8.43800000e+02]\n", + " [ 1.87500000e+03 8.43800000e+02]\n", + " [ 8.30000000e+01 1.20220000e+03]\n", + " [ 4.41400000e+02 1.20220000e+03]\n", + " [ 7.99800000e+02 1.20220000e+03]\n", + " [ 1.15820000e+03 1.20220000e+03]\n", + " [ 1.51660000e+03 1.20220000e+03]\n", + " [ 1.87500000e+03 1.20220000e+03]\n", + " [ 8.30000000e+01 1.56060000e+03]\n", + " [ 4.41400000e+02 1.56060000e+03]\n", + " [ 7.99800000e+02 1.56060000e+03]\n", + " [ 1.15820000e+03 1.56060000e+03]\n", + " [ 1.51660000e+03 1.56060000e+03]\n", + " [ 1.87500000e+03 1.56060000e+03]\n", + " [ 8.30000002e+01 1.91900000e+03]\n", + " [ 4.41400000e+02 1.91900000e+03]\n", + " [ 7.99800000e+02 1.91900000e+03]\n", + " [ 1.15820000e+03 1.91900000e+03]\n", + " [ 1.51660000e+03 1.91900000e+03]\n", + " [ 1.87500000e+03 1.91900000e+03]]\n", + ".5039234 0.68394565 0.92210851\n", + " 0.09588115 0.11634315 0.14772342 0.20168832 0.31431902 0.6442708 ]\n", + "4.48728684\n", + " 77.96997446 79.85669547 81.74302972 83.57869755 85.2518859 86.47101417\n", + " 78.32402093 80.29356392 82.30071175 84.32903186 86.34620527 88.21286949]\n", + "DEBUG:root:radec2pix: xyfp: [[ 0.236018 -31.56946754]\n", + " [ 0.23651287 -27.18303899]\n", + " [ 0.23700774 -22.79661046]\n", + " [ 0.23750261 -18.41018192]\n", + " [ 0.23799748 -14.02375336]\n", + " [ 0.23849235 -9.63732482]\n", + " [ 0.23898721 -5.25089628]\n", + " [ 0.23948208 -0.86446773]\n", + " [ 0.236018 -31.56946754]\n", + " [ 4.62244655 -31.56996241]\n", + " [ 9.00887509 -31.57045728]\n", + " [ 13.39530363 -31.57095214]\n", + " [ 17.78173218 -31.57144701]\n", + " [ 22.16816072 -31.57194188]\n", + " [ 26.55458927 -31.57243675]\n", + " [ 30.94101781 -31.57293162]\n", + " [ 0.23948208 -0.86446773]\n", + " [ 4.62591062 -0.8649626 ]\n", + " [ 9.01233917 -0.86545747]\n", + " [ 13.39876771 -0.86595234]\n", + " [ 17.78519626 -0.86644721]\n", + " [ 22.1716248 -0.86694208]\n", + " [ 26.55805334 -0.86743695]\n", + " [ 30.94448189 -0.86793181]\n", + " [ 30.94101781 -31.57293162]\n", + " [ 30.94151268 -27.18650307]\n", + " [ 30.94200754 -22.80007453]\n", + " [ 30.94250242 -18.41364599]\n", + " [ 30.94299728 -14.02721745]\n", + " [ 30.94349215 -9.6407889 ]\n", + " [ 30.94398702 -5.25436036]\n", + " [ 30.94448189 -0.86793181]\n", + " [ 0.25123377 -29.65696924]\n", + " [ 0.25184028 -24.28096928]\n", + " [ 0.25244679 -18.90496931]\n", + " [ 0.2530533 -13.52896935]\n", + " [ 0.25365981 -8.15296938]\n", + " [ 0.25426632 -2.77696942]\n", + " [ 2.14851968 -31.5546833 ]\n", + " [ 7.52451965 -31.55528981]\n", + " [ 12.90051962 -31.55589633]\n", + " [ 18.27651958 -31.55650284]\n", + " [ 23.65251954 -31.55710934]\n", + " [ 29.02851952 -31.55771586]\n", + " [ 2.15198038 -0.8796835 ]\n", + " [ 7.52798035 -0.88029001]\n", + " [ 12.90398031 -0.88089652]\n", + " [ 18.27998027 -0.88150303]\n", + " [ 23.65598025 -0.88210954]\n", + " [ 29.03198021 -0.88271605]\n", + " [ 30.92623357 -29.66042994]\n", + " [ 30.92684009 -24.28442998]\n", + " [ 30.9274466 -18.90843001]\n", + " [ 30.9280531 -13.53243004]\n", + " [ 30.92865961 -8.15643008]\n", + " [ 30.92926612 -2.78043011]\n", + " [ 0.2510197 -31.55446923]\n", + " [ 0.2510197 -31.55446923]\n", + " [ 30.9294802 -0.88293012]\n", + " [ 30.9294802 -0.88293012]\n", + " [ 2.14873376 -29.65718332]\n", + " [ 7.52473372 -29.65778983]\n", + " [ 12.90073369 -29.65839633]\n", + " [ 18.27673365 -29.65900285]\n", + " [ 23.65273362 -29.65960936]\n", + " [ 29.02873359 -29.66021587]\n", + " [ 2.14934027 -24.28118335]\n", + " [ 7.52534023 -24.28178986]\n", + " [ 12.9013402 -24.28239637]\n", + " [ 18.27734016 -24.28300288]\n", + " [ 23.65334013 -24.28360939]\n", + " [ 29.02934009 -24.2842159 ]\n", + " [ 2.14994678 -18.90518338]\n", + " [ 7.52594674 -18.90DEBUG:root:radec2pix: camVec: [[0.20582147 0.20765008 0.20920683 0.21049219 0.21150557 0.2122456\n", + " 0.21271065 0.21289938 0.20582147 0.17940403 0.15227891 0.12455745\n", + " 0.09635017 0.06776763 0.03892112 0.00992292 0.21289938 0.18554193\n", + " 0.15747589 0.1288054 0.09963586 0.07007602 0.04023879 0.01024104\n", + " 0.00992292 0.01000636 0.01007758 0.01013637 0.01018243 0.01021541\n", + " 0.01023502 0.01024104 0.20656285 0.20862007 0.2102697 0.2115111\n", + " 0.21234181 0.21275892 0.19440388 0.16153549 0.12771486 0.09314577\n", + " 0.05803185 0.02257838 0.20106508 0.16704611 0.13206625 0.09631893\n", + " 0.06000442 0.02333228 0.01006049 0.01015553 0.01023184 0.01028888\n", + " 0.01032605 0.01034279 0.20573918 0.20573918 0.01034376 0.01034376\n", + " 0.19517916 0.16217419 0.12821715 0.09351091 0.05825864 0.02266572\n", + " 0.19711638 0.16377271 0.12947641 0.09442771 0.05882858 0.02288505\n", + " 0.19867107 0.16505894 0.13049231 0.09516891 0.05928988 0.02306224\n", + " 0.19984199 0.16603002 0.13126104 0.09573072 0.0596397 0.02319607\n", + " 0.20062602 0.16668578989]\n", + " [ 12.90194671 -18.9063964 ]\n", + " [ 18.27794667 -18.90700292]\n", + " [ 23.65394664 -18.90760943]\n", + " [ 29.0299466 -18.90821593]\n", + " [ 2.15055329 -13.52918342]\n", + " [ 7.52655325 -13.52978993]\n", + " [ 12.90255322 -13.53039644]\n", + " [ 18.27855318 -13.53100295]\n", + " [ 23.65455315 -13.53160946]\n", + " [ 29.03055312 -13.53221597]\n", + " [ 2.1511598 -8.15318346]\n", + " [ 7.52715976 -8.15378996]\n", + " [ 12.90315973 -8.15439647]\n", + " [ 18.27915969 -8.15500298]\n", + " [ 23.65515966 -8.15560949]\n", + " [ 29.03115962 -8.156216 ]\n", + " [ 2.1517663 -2.77718348]\n", + " [ 7.52776627 -2.77779 ]\n", + " [ 12.90376624 -2.77839651]\n", + " [ 18.2797662 -2.77900302]\n", + " [ 23.65576617 -2.77960953]\n", + " [ 29.03176613 -2.78021604]]\n", + "139 0.13177743 0.09610838 0.05987462 0.02328514\n", + " 0.20101976 0.1670086 0.13203673 0.09629765 0.05999164 0.02332821]\n", + " [0.20164691 0.17515749 0.1479768 0.12021614 0.09198614 0.06339752\n", + " 0.03456171 0.00559103 0.20164691 0.2034844 0.20505578 0.20636157\n", + " 0.2074012 0.20817322 0.20867589 0.20890768 0.00559103 0.00564441\n", + " 0.00569099 0.00573063 0.005763DEBUG:root:optics_fp: rtanth: [45.26169529 42.30243097 39.60873368 37.23827886 35.25632641 33.73142753\n", + " 32.72753223 32.29326616 45.26169529 42.24571523 39.48748363 37.04461879\n", + " 34.98324901 33.37413897 32.28498264 31.76930229 32.29326616 27.90939691\n", + " 23.52648174 19.14517593 14.76691204 10.39553425 6.04599739 1.87684519\n", + " 31.76930229 27.38910685 23.01128618 18.63751379 14.2715122 9.92354331\n", + " 5.63550123 1.87684519 43.93110404 40.47519439 37.47457234 35.04637691\n", + " 33.3160059 32.39547369 43.90748877 40.37685013 37.28961296 34.76410785\n", + " 32.92983309 31.90622779 30.38230115 25.01013154 19.64005824 14.27444739\n", + " 8.9213542 3.63648527 29.86008841 24.49335294 19.13182032 13.78156419\n", + " 8.46399587 3.33911555 45.24048285 45.24048285 1.89760875 1.89760875\n", + " 42.55711672 38.90412112 35.68971629 33.042152 31.10650288 30.02079255\n", + " 38.97957981 34.95468636 31.33776168 28.28574318 25.99834571 24.68901465\n", + " 35.85400749 31.43139051 27.35246822 23.7946523 21.02418109 19.38168349\n", + " 33.30787918 28.49275823 23.91782767 19.75070735 16.30708904 14.12638019\n", + " 31.48209857 26.3352423 21.30188242 16.48630206 12.15026205 9.01456223\n", + " 30.50627799 25.16059326 19.83130509 14.53645837 9.33484517 4.55771859]\n", + "DEBUG:root:radec2pix: curVec: [[ 0.02691231 -0.47236687 0.88099107]\n", + " [ 0.01870348 -0.44867225 0.89350064]\n", + " [ 0.01031607 -0.42414498 0.90553554]\n", + " [ 0.00178274 -0.39886313 0.91700874]\n", + " [-0.00686355 -0.37290986 0.92784219]\n", + " [-0.01558912 -0.34637458 0.93796675]\n", + " [-0.02435959 -0.31935326 0.9473226 ]\n", + " [-0.03314009 -0.29194793 0.95585989]\n", + " [ 0.02691231 -0.47236687 0.88099107]\n", + " [ 0.05463 -0.46427368 0.88400538]\n", + " [ 0.08218477 -0.45573418 0.88631372]\n", + " [ 0.10946876 -0.44678491 0.88791882]\n", + " [ 0.13637485 -0.43746568 0.88883389]\n", + " [ 0.16279638 -0.42781911 0.88908276]\n", + " [ 0.18862628 -0.41789019 0.88870013]\n", + " [ 0.21375573 -0.40772608 0.88773191]\n", + " [-0.03314009 -0.29194793 0.95585989]\n", + " [-0.00443138 -0.2837031 0.95890193]\n", + " [ 0.0241891 -0.27522813 0.96107459]\n", + " [ 0.05260848 -0.26656001 0.96238148]\n", + " [ 0.08071626 -0.25773824 0.96283741]\n", + " [ 0.10840512 -0.24880448 0.96246801]\n", + " [ 0.13557089 -0.23980234 0.9613092 ]\n", + " [ 0.16211149 -0.23077765 0.95940687]\n", + " [ 0.21375573 -0.40772608 0.88773191]\n", + " [ 0.20749435 -0.38421404 0.89962529]\n", + " [ 0.20080453 -0.35996778 0.91109864]\n", + " [ 0.19372168 -0.3350714 0.9220624 ]\n", + " [ 0.18627899 -0.30961172 0.93243805]\n", + " [ 0.17850851 -0.28367917 0.94215754]\n", + " [ 0.17044198 -0.25736829 0.95116302]\n", + " [ 0.16211149 -0.23077765 0.95940687]\n", + " [ 0.0234526 -0.46211617 0.88650923]\n", + " [ 0.01326857 -0.43250617 0.90153334]\n", + " [ 0.00284857 -0.40172265 0.91575695]\n", + " [-0.00774686 -0.36991649 0.92903271]\n", + " [-0.01845575 -0.33725235 0.94123336]\n", + " [-0.0292146 -0.30390946 0.95225288]\n", + " [ 0.03898309 -0.46881565 0.88243538]\n", + " [ 0.07285904 -0.45859189 0.88565515]\n", + " [ 0.10638306 -0.44773378 0.88781592]\n", + " [ 0.13935762 -0.43631332 0.88893765]\n", + " [ 0.17158627 -0.42440891 0.88906424]\n", + " [ 0.20287127 -0.41210425 0.88826423]\n", + " [-0.02058945 -0.28847794 0.95726514]\n", + " [ 0.01455082 -0.27821365 0.960409 ]\n", + " [ 0.04944613 -0.26763995 0.96224942]\n", + " [ 0.08389204 -0.25682855 0.96280903]\n", + " [ 0.11769096 -0.2458561 0.96213492]\n", + " [ 0.15065209 -0.23480383 0.96029741]\n", + " [ 0.2109957 -0.39760525 0.89296746]\n", + " [ 0.20302771 -0.36828405 0.90727427]\n", + " [ 0.19445182 -0.33794324 0.92085984]\n", + " [ 0.18533004 -0.30674147 0.93357509]\n", + " [ 0.17572143 -0.27484528 0.94529469]\n", + " [ 0.16568455 -0.2424304 0.95591638]\n", + " [ 0.02697952 -0.47226047 0.88104606]\n", + " [ 0.02697952 -0.47226047 0.88104606]\n", + " [ 0.16205082 -0.23089979 0.95938773]\n", + " [ 0.16205082 -0.23089979 0.95938773]\n", + " [ 0.03550377 -0.45865929 0.88790266]\n", + " [ 0.06951923 -0.44841253 0.89111912]\n", + " [ 0.10318917 -0.43754829 0.89325444]\n", + " [ 0.13631591 -0.42613902 0.89432852]\n", + " [ 0.16870347 -0.41426362 0.89438514]\n", + " [ 0.20015537 -0.40200626 0.89349247]\n", + " [ 0.02543964 -0.42901949 0.90293693]\n", + " [ 0.05980785 -0.41872147 0.90614312]\n", + " [ 0.09384826 -0.40785575 0.90821043]\n", + " [ 0.1273622 -0.3964958 0.90915893]\n", + " [ 0.16015449 -0.38472154 0.90903239]\n", + " [DEBUG:root:optics_fp: xyfp: [[-32.31281793 -31.43806373]\n", + " [-32.31091541 -27.05163558]\n", + " [-32.30901287 -22.66520742]\n", + " [-32.30711034 -18.27877926]\n", + " [-32.3052078 -13.8923511 ]\n", + " [-32.30330527 -9.50592294]\n", + " [-32.30140274 -5.11949478]\n", + " [-32.2995002 -0.73306663]\n", + " [-32.31281793 -31.43806373]\n", + " [-27.92638978 -31.43996627]\n", + " [-23.53996162 -31.4418688 ]\n", + " [-19.15353346 -31.44377134]\n", + " [-14.7671053 -31.44567387]\n", + " [-10.38067715 -31.44757641]\n", + " [ -5.99424899 -31.44947894]\n", + " [ -1.60782083 -31.45138147]\n", + " [-32.2995002 -0.73306663]\n", + " [-27.91307204 -0.73496916]\n", + " [-23.52664389 -0.73687169]\n", + " [-19.14021573 -0.73877423]\n", + " [-14.75378757 -0.74067676]\n", + " [-10.36735941 -0.74257929]\n", + " [ -5.98093125 -0.74448183]\n", + " [ -1.59450309 -0.74638436]\n", + " [ -1.60782083 -31.45138147]\n", + " [ -1.60591829 -27.06495331]\n", + " [ -1.60401576 -22.67852516]\n", + " [ -1.60211323 -18.292097 ]\n", + " [ -1.60021069 -13.90566884]\n", + " [ -1.59830816 -9.51924068]\n", + " [ -1.59640563 -5.13281252]\n", + " [ -1.59450309 -0.74638436]\n", + " [-32.29698843 -29.52557043]\n", + " [-32.29465669 17 0.00578837 0.00580605 0.00581605\n", + " 0.20890768 0.18144072 0.15328055 0.12453134 0.09529889 0.06569253\n", + " 0.0358258 0.00581605 0.19019593 0.15725033 0.12337711 0.08878017\n", + " 0.0536634 0.01823232 0.20239118 0.20446311 0.20613616 0.2074097\n", + " 0.20828117 0.20874739 0.00571471 0.00577657 0.00582791 0.00586841\n", + " 0.00589767 0.00591534 0.19702358 0.16288078 0.12780019 0.0919758\n", + " 0.05560896 0.01891032 0.20156436 0.20156436 0.00591876 0.00591876\n", + " 0.19097333 0.19292238 0.19449762 0.19569785 0.19651986 0.19695996\n", + " 0.15788822 0.15949023 0.1607887 0.16178086 0.16246211 0.16282774\n", + " 0.12387558 0.1251298 0.12614936 0.12693065 0.1274685 0.12775798\n", + " 0.08913848 0.09004163 0.09077781 0.09134344 0.09173387 0.09194479\n", + " 0.0538804 0.0544282 0.05487585 0.05522072 0.05545959 0.05558951\n", + " 0.018307 0.01849597 0.01865108 0.01877134 0.01885557 0.01890269]\n", + " [0.95758866 0.96239353 0.96661025 0.97017582 0.97303851 0.97515771\n", + " 0.9765038 0.97705813 0.95758866 0.96250106 0.96683156 0.9705155\n", + " 0.97349956 0DEBUG:root:optics_fp: cphi: [0.71341716 0.76328013 0.81514194 0.86698087 0.91566575 0.95700502\n", + " 0.98630354 0.99950918 0.71341716 0.66051768 0.59557134 0.51643629\n", + " 0.4214805 0.31036993 0.18497457 0.04990581 0.99950918 0.99934039\n", + " 0.99906819 0.99858739 0.99761569 0.9951653 0.98558541 0.8377988\n", + " 0.04990581 0.05781889 0.0687377 0.08476872 0.11057085 0.15882919\n", + " 0.27935111 0.8377988 0.73466528 0.79733703 0.86111952 0.92071715\n", + " 0.96846887 0.9959178 0.69186293 0.61921532 0.52631184 0.40990453\n", + " 0.26948104 0.10963271 0.999428 0.999152 0.99861839 0.99737128\n", + " 0.99322638 0.95832228 0.05357183 0.06521663 0.08337359 0.1155749\n", + " 0.18791565 0.47564444 0.71341996 0.71341996 0.83653968 0.83653968\n", + " 0.71379735 0.6426352 0.54988271 0.43124184 0.28525093 0.11649124\n", + " 0.77925087 0.71517941 0.62617339 0.50367681 0.34120915 0.14155583\n", + " 0.8471183 0.79527459 0.71732418 0.59864658 0.42182798 0.18020046\n", + " 0.91180529 0.87721591 0.82023759 0.72110338 0.54370846 0.24707693\n", + " 0.96461215 0.94899507 0.92085832 0.86374835 0.72953296 0.3869314\n", + " 0.99539279 0.99320908 0.98902871 0.97944976 0.94931741 0.76479745]\n", + "DEBUG:root:radec2pix: xyfp: [[ 0.16415906 -31.72847131]\n", + " [ 0.16601788 -27.34204313]\n", + " [ 0.1678767 -22.95561497]\n", + " [ 0.16973552 -18.56918678]\n", + " [ 0.17159434 -14.1827586 ]\n", + " [ 0.17345315 -9.79633043]\n", + " [ 0.17531197 -5.40990225]\n", + " [ 0.17717079 -1.02347407]\n", + " [ 0.16415906 -31.72847131]\n", + " [ 4.55058724 -31.73033014]\n", + " [ 8.93701541 -31.73218895]\n", + " [ 13.32344359 -31.73404778]\n", + " [ 17.70987177 -31.73590659]\n", + " [ 22.09629995 -31.73776541]\n", + " [ 26.48272812 -31.73962422]\n", + " [ 30.8691563 -31.74148305]\n", + " [ 0.17717079 -1.02347407]\n", + " [ 4.56359897 -1.02533289]\n", + " [ 8.95002714 -1.02719171]\n", + " [ 13.33645532 -1.02905053]\n", + " [ 17.7228835 -1.03090935]\n", + " [ 22.10931168 -1.03276817]\n", + " [ 26.49573986 -1.03462699]\n", + " [ 30.88216803 -1.0364858 ]\n", + " [ 30.8691563 -31.74148305]\n", + " [ 30.87101512 -27.35505487]\n", + " [ 30.87287394 -22.96862669]\n", + " [ 30.87473276 -18.58219851]\n", + " [ 30.87659158 -14.19577034]\n", + " [ 30.8784504 -9.80934216]\n", + " [ 30.88030922 -5.42291398]\n", + " [ 30.88216803 -1.0364858 ]\n", + " [ 0.17996951 -29.81597784]\n", + " [ 0.18224768 -24.43997833]\n", + " [ 0.18452584 -19.06397881]\n", + " [ 0.18680401 -13.6879793 ]\n", + " [ 0.18908217 -8.31197977]\n", + " [ 0.19136034 -2.93598025]\n", + " [ 2.07666524 -31.71428177]\n", + " [ 7.45266476 -31.71655993]\n", + " [ 12.82866428 -31.7188381 ]\n", + " [ 18.2046638 -31.72111627]\n", + " [ 23.58066331 -31.72339443]\n", + " [ 28.95666283 -31.7256726 ]\n", + " [ 2.08966426 -1.03928452]\n", + " [ 7.46566378 -1.04156269]\n", + " [ 12.8416633 -1.04384085]\n", + " [ 18.21766282 -1.04611902]\n", + " [ 23.59366233 -1.04839718]\n", + " [ 28.96966185 -1.05067535]\n", + " [ 30.85496675 -29.82897686]\n", + " [ 30.85724492 -24.45297735]\n", + " [ 30.85952308 -19.07697783]\n", + " [ 30.86180126 -13.70097831]\n", + " [ 30.86407941 -8.32497879]\n", + " [ 30.86635759 -2.94897928]\n", + " [ 0.17916541 -31.71347767]\n", + " [ 0.17916541 -31.71347767]\n", + " [ 30.86716168 -1.05147945]\n", + " [ 30.86716168 -1.05147945]\n", + " [ 2.07746934 -29.81678193]\n", + " [ 7.45346886 -29.8190601 ]\n", + " [ 12.82946837 -29.82133827]\n", + " [ 18.20546789 -29.82361643]\n", + " [ 23.58146741 -29.82589461]\n", + " [ 28.95746693 -29.82817277]\n", + " [ 2.07974751 -24.44078242]\n", + " [ 7.45574702 -24.44306058]\n", + " [ 12.83174654 -24.44533875]\n", + " [ 18.20774606 -24.44761692]\n", + " [ 23.58374558 -24.44989508]\n", + " [ 28.95974509 -24.45217325]\n", + " [ 2.08202567 -19.0647829 ]\n", + " [ 7.45802519 -19.06706107]\n", + " [ 12.83402471 -19.06933924]\n", + " [ 18.21002422 -19.0716174 ]\n", + " [ 23.58602374 -19.07389557]\n", + " [ 28.96202325 -19.07617373]\n", + " [ 2.08430384 -13.68878339]\n", + " [ 7.46030335 -13.69106155]\n", + " [ 12.83630287 -13.69333972]\n", + " [ 18.21230239 -13.69561789]\n", + " [ 23.58830191 -13.69789605]\n", + " [ 28.96430143 -13.70017422]\n", + " [ 2.086582 -8.31278387]\n", + " [ 7.46258152 -8.31506203]\n", + " [ 12.83858103 -8.3173402 ]\n", + " [ 18.21458055 -8.31961837]\n", + " [ 23.59058007 -8.32189653]\n", + " [ 28.96657959 -8.3241747 ]\n", + " [ 2.08886017 -2.93678435]\n", + " [ 7.46485969 -2.93906252]\n", + " [ 12.8408592 -2.94134068]\n", + " [ 18.21685872 -2.94361885]\n", + " [ 23.59285824 -2.94589701]\n", + " [ 28.96885776 -2.94817518]]\n", + ".97574149 0.97721007 0.97788502 0.97705813 0.98262014\n", + " 0.98750643 0.99165333 0.99500728 0.99752486 0.99917322 0.99993064\n", + " 0.97788502 0.98335097 0.98813132 0.9921639 0.99539662 0.99778762\n", + " 0.99930564 0.99993064 0.9597694 0.96527198 0.96982717 0.97333506\n", + " 0.97572086 0.97693461 0.95981506 0.96545384 0.97015298 0.97380957\n", + " 0.97634587 0.97770893 0.97956122 0.98593216 0.99122376 0.99533322\n", + " 0.99818069 0.99971026 0.98034713 0.98659349 0.99174716 0.99570809\n", + " 0.99839923 0.99976769 0.95762372 0.95762372 0.99992898 0.99992898\n", + " 0.96199495 0.96771922 0.97248704 0.97619571 0.97876753 0.9801495\n", + " 0.96758278 0.97352009 0.97845943 0.98229851 0.98495952 0.98638907\n", + " 0.97220607 0.9783139 0.98339112 0.98733555 0.99006893 0.99153721\n", + " 0.97576509 0.98200129 0.98718283 0.99120735 0.99399598 0.9954939\n", + " 0.97818511 0.98450743 0.98975924 0.99383794 0.99666407 0.99818215\n", + " 0.97941611 0.98578194 0.99106934 0.99517556 0.99802078 0.99954914]]\n", + "DEBUG:root:optics_fp: xyfp: [[-32.29046994 -31.71666141]\n", + " [-32.28860507 -27.33023323]\n", + " [-32.2867402 -22.94380505]\n", + " [-32.28487534 -18.55737688]\n", + " [-32.2DEBUG:root:radec2pix: curVec: [[-2.85408729e-02 -4.71860860e-01 8.81210955e-01]\n", + " [-1.89912062e-02 -4.48578517e-01 8.93541632e-01]\n", + " [-9.23741613e-03 -4.24471384e-01 9.05394232e-01]\n", + " [ 6.82521036e-04 -3.99615894e-01 9.16682427e-01]\n", + " [ 1.07302394e-02 -3.74093540e-01 9.27328898e-01]\n", + " [ 2.08665811e-02 -3.47992058e-01 9.37265231e-01]\n", + " [ 3.10515732e-02 -3.21405700e-01 9.46432341e-01]\n", + " [ 4.12446913e-02 -2.94434747e-01 9.54781156e-01]\n", + " [-2.85408729e-02 -4.71860860e-01 8.81210955e-01]\n", + " [-1.22464204e-03 -4.80692377e-01 8.76888441e-01]\n", + " [ 2.60391333e-02 -4.89011356e-01 8.71888672e-01]\n", + " [ 5.31448488e-02 -4.96788679e-01 8.66242826e-01]\n", + " [ 7.99881611e-02 -5.03999139e-01 8.59992303e-01]\n", + " [ 1.06466101e-01 -5.10620882e-01 8.53188891e-01]\n", + " [ 1.32476682e-01 -5.16634601e-01 8.45895158e-01]\n", + " [ 1.57917982e-01 -5.22022646e-01 8.38185104e-01]\n", + " [ 4.12446913e-02 -2.94434747e-01 9.54781156e-01]\n", + " [ 6.94422483e-02 -3.03690429e-01 9.50236759e-01]\n", + " [ 9.74882591e-02 -3.12642242e-01 9.44854945e-01]\n", + " [ 1.25273063e-01 -3.21258731e-01 9.38668998e-01]\n", + " [ 1.52690200e-01 -3.29512684e-01 9.31722649e-01]\n", + " [ 1.79637135e-01 -3.37381208e-01 9.24069489e-01]\n", + " [ 2.06015223e-01 -3.44845563e-01 9.15772497e-01]\n", + " [ 2.31728681e-01 -3.51890713e-01 9.06903934e-01]\n", + " [ 1.57917982e-01 -5.22022646e-01 8.38185104e-01]\n", + " [ 1.68773054e-01 -4.99923250e-01 8.49465950e-01]\n", + " [ 1.79591528e-01 -4.76946619e-01 8.60388753e-01]\n", + " [ 1.90333689e-01 -4.53175532e-01 8.70864527e-01]\n", + " [ 2.00959216e-01 -4.28694616e-01 8.80815713e-01]\n", + " [ 2.11427340e-01 -4.03591627e-01 8.90175420e-01]\n", + " [ 2.21697265e-01 -3.77958310e-01 8.98887000e-01]\n", + " [ 2.31728681e-01 -3.51890713e-01 9.06903934e-01]\n", + " [-2.43109693e-02 -4.61846987e-01 8.86626380e-01]\n", + " [-1.24639066e-02 -4.32748332e-01 9.01428606e-01]\n", + " [-3.48142843e-04 -4.02486232e-01 9.15425973e-01]\n", + " [ 1.19658838e-02 -3.71208518e-01 9.28472430e-01]\n", + " [ 2.44060779e-02 -3.39076735e-01 9.40442083e-01]\n", + " [ 3.68985978e-02 -3.06266946e-01 9.51230283e-01]\n", + " [-1.65986087e-02 -4.75694426e-01 8.79453978e-01]\n", + " [ 1.68592225e-02 -4.86177972e-01 8.73697171e-01]\n", + " [ 5.01331255e-02 -4.95862396e-01 8.66952798e-01]\n", + " [ 8.30304598e-02 -5.04699684e-01 8.59292832e-01]\n", + " [ 1.15361619e-01 -5.12649516e-01 8.50812653e-01]\n", + " [ 1.46938940e-01 -5.19677078e-01 8.41632154e-01]\n", + " [ 5.35156132e-02 -2.98598190e-01 9.52877327e-01]\n", + " [ 8.79865817e-02 -3.09741601e-01 9.46740990e-01]\n", + " [ 1.22120724e-01 -3.20396697e-01 9.39378776e-01]\n", + " [ 1.55720668e-01 -3.30511611e-01 9.30866880e-01]\n", + " [ 1.88597646e-01 -3.40044185e-01 9.21303902e-01]\n", + " [ 2.20571332e-01 -3.48961492e-01 9.10809621e-01]\n", + " [ 1.62566679e-01 -5.12482616e-01 8.43168810e-01]\n", + " [ 1.75850505e-01 -4.84796122e-01 8.56766782e-01]\n", + " [ 1.89040133e-01 -4.55874114e-01 8.69737099e-01]\n", + " [ 2.02061584e-01 -4.25871541e-01 8.81932280e-01]\n", + " [ 2.14839854e-01 -3.94950055e-01 8.93229137e-01]\n", + " [ 2.27300011e-01 -3.63280350e-01 9.03527582e-01]\n", + " [-2.84152241e-02 -4.71813771e-01 8.81240229e-01]\n", + " [-2.84152241e-02 -4.71813771e-01 8.81240229e-01]\n", + " [ 2.3160813DEBUG:root:radec2pix: ccdpx: [[-4.45000000e+01 -4.99999797e-01]\n", + " [-4.45000000e+01 2.91928572e+02]\n", + " [-4.45000000e+01 5.84357143e+02]\n", + " [-4.45000000e+01 8.76785714e+02]\n", + " [-4.45000000e+01 1.16921429e+03]\n", + " [-4.45000000e+01 1.46164286e+03]\n", + " [-4.45000000e+01 1.75407143e+03]\n", + " [-4.45000001e+01 2.04650000e+03]\n", + " [-4.45000000e+01 -4.99999797e-01]\n", + " [ 2.47928571e+02 -5.00000034e-01]\n", + " [ 5.40357143e+02 -4.99999972e-01]\n", + " [ 8.32785714e+02 -4.99999760e-01]\n", + " [ 1.12521429e+03 -5.00000049e-01]\n", + " [ 1.41764286e+03 -4.99999867e-01]\n", + " [ 1.71007143e+03 -5.00000044e-01]\n", + " [ 2.00250000e+03 -4.99999770e-01]\n", + " [-4.45000001e+01 2.04650000e+03]\n", + " [ 2.47928571e+02 2.04650000e+03]\n", + " [ 5.40357143e+02 2.04650000e+03]\n", + " [ 8.32785714e+02 2.04650000e+03]\n", + " [ 1.12521429e+03 2.04650000e+03]\n", + " [ 1.41764286e+03 2.04650000e+03]\n", + " [ 1.71007143e+03 2.04650000e+03]\n", + " [ 2.00250000e+03 2.04650000e+03]\n", + " [ 2.00250000e+03 -4.99999770e-01]\n", + " [ 2.00250000e+03 2.91928572e+02]\n", + " [ 2.00250000e+03 5.84357143e+02]\n", + " [ 2.00250000e+03 8.767858301047 -14.1709487 ]\n", + " [-32.2811456 -9.78452053]\n", + " [-32.27928073 -5.39809235]\n", + " [-32.27741587 -1.01166418]\n", + " [-32.29046994 -31.71666141]\n", + " [-27.90404176 -31.71852627]\n", + " [-23.51761359 -31.72039114]\n", + " [-19.13118541 -31.722256 ]\n", + " [-14.74475724 -31.72412087]\n", + " [-10.35832906 -31.72598574]\n", + " [ -5.97190089 -31.72785061]\n", + " [ -1.58547272 -31.72971547]\n", + " [-32.27741587 -1.01166418]\n", + " [-27.8909877 -1.01352905]\n", + " [-23.50455952 -1.01539391]\n", + " [-19.11813134 -1.01725878]\n", + " [-14.73170317 -1.01912365]\n", + " [-10.345275 -1.02098851]\n", + " [ -5.95884682 -1.02285338]\n", + " [ -1.57241864 -1.02471825]\n", + " [ -1.58547272 -31.72971547]\n", + " [ -1.58360785 -27.3432873 ]\n", + " [ -1.58174298 -22.95685912]\n", + " [ -1.57987811 -18.57043094]\n", + " [ -1.57801325 -14.18400278]\n", + " [ -1.57614838 -9.7975746 ]\n", + " [ -1.57428351 -5.41114642]\n", + " [ -1.57241864 -1.02471825]\n", + " [-32.27465685 -29.80416795]\n", + " [-32.27237127 -24.42816844]\n", + " [-32.2700857 -19.05216893]\n", + " [-32.26780012 -13.67616941]\n", + " [-32.26551454 -8.3001699 ]\n", + " [-32.26322896 -2.92417038]\n", + " [-30.37796373 -31.707e-01 -3.51957122e-01 9.06908957e-01]\n", + " [ 2.31608137e-01 -3.51957122e-01 9.06908957e-01]\n", + " [-1.24487098e-02 -4.65744253e-01 8.84831803e-01]\n", + " [ 2.11323709e-02 -4.76285615e-01 8.79036652e-01]\n", + " [ 5.45200134e-02 -4.86043759e-01 8.72232213e-01]\n", + " [ 8.75211696e-02 -4.94970965e-01 8.64490479e-01]\n", + " [ 1.19946322e-01 -5.03027595e-01 8.55906606e-01]\n", + " [ 1.51608468e-01 -5.10179865e-01 8.46599892e-01]\n", + " [-4.87054767e-04 -4.36687916e-01 8.99612931e-01]\n", + " [ 3.34013961e-02 -4.47381033e-01 8.93719507e-01]\n", + " [ 6.70691907e-02 -4.57337781e-01 8.86760327e-01]\n", + " [ 1.00321959e-01 -4.66510758e-01 8.78807839e-01]\n", + " [ 1.32970255e-01 -4.74861612e-01 8.69957103e-01]\n", + " [ 1.64828800e-01 -4.82358899e-01 8.60326310e-01]\n", + " [ 1.17211334e-02 -4.06461043e-01 9.13592927e-01]\n", + " [ 4.58539785e-02 -4.17288355e-01 9.07616572e-01]\n", + " [ 7.97387282e-02 -4.27429582e-01 9.00525229e-01]\n", + " [ 1.13179680e-01 -4.36836932e-01 8.92392209e-01]\n", + " [ 1.45987321e-01 -4.45472343e-01 8.83313134e-01]\n", + " [ 1.77977857e-01 -4.53305621e-01 8.734059DEBUG:root:radec2pix: camVec: [[-0.20650899 -0.20834684 -0.209912 -0.2112049 -0.21222492 -0.21297066\n", + " -0.21344048 -0.21363303 -0.20650899 -0.18010636 -0.15299311 -0.12528058\n", + " -0.09707928 -0.06849975 -0.03965325 -0.01065205 -0.21363303 -0.1862962\n", + " -0.15824793 -0.12959237 -0.10043485 -0.07088401 -0.04105265 -0.01105755\n", + " -0.01065205 -0.01075054 -0.01083605 -0.01090831 -0.01096697 -0.01101162\n", + " -0.0110419 -0.01105755 -0.20725456 -0.20932255 -0.21098167 -0.21223121\n", + " -0.21306867 -0.2134911 -0.19509826 -0.16224603 -0.12843717 -0.09387541\n", + " -0.05876435 -0.02330924 -0.20180806 -0.16781243 -0.13285166 -0.09711907\n", + " -0.06081473 -0.02414801 -0.01079628 -0.01090926 -0.01100231 -0.01107479\n", + " -0.01112598 -0.01115523 -0.20642679 -0.20642679 -0.01116024 -0.01116024\n", + " -0.19587779 -0.16288944 -0.12894461 -0.09424616 -0.05899718 -0.02340304\n", + " -0.19782623 -0.16450046 -0.13021766 -0.09517804 -0.05958347 -0.0236399\n", + " -0.19939086 -0.16579789 -0.13124607 -0.09593306 -0.06005988 -0.02383341\n", + " -0.2005717e-01]\n", + " [ 2.41047640e-02 -3.75211275e-01 9.26625847e-01]\n", + " [ 5.84172480e-02 -3.86155008e-01 9.20582280e-01]\n", + " [ 9.24543229e-02 -3.96466962e-01 9.13381709e-01]\n", + " [ 1.26019206e-01 -4.06098418e-01 9.05098467e-01]\n", + " [ 1.58922358e-01 -4.15010724e-01 8.95829104e-01]\n", + " [ 1.90981236e-01 -4.23173818e-01 8.85691869e-01]\n", + " [ 3.65910866e-02 -3.43099934e-01 9.38585919e-01]\n", + " [ 7.10167587e-02 -3.54141653e-01 9.32491453e-01]\n", + " [ 1.05140246e-01 -3.64610022e-01 9.25205415e-01]\n", + " [ 1.38764132e-01 -3.74455063e-01 9.16803099e-01]\n", + " [ 1.71699030e-01 -3.83636880e-01 9.07382052e-01]\n", + " [ 2.03763461e-01 -3.92124608e-01 8.97061171e-01]\n", + " [ 4.91057535e-02 -3.10302871e-01 9.49368608e-01]\n", + " [ 8.35769383e-02 -3.21423280e-01 9.43240145e-01]\n", + " [ 1.17720114e-01 -3.32032591e-01 9.35893334e-01]\n", + " [ 1.51337792e-01 -3.42079429e-01 9.27404193e-01]\n", + " [ 1.84240995e-01 -3.51522261e-01 9.17871100e-01]\n", + " [ 2.16249132e-01 -3.60328769e-01 9.07413627e-01]]\n", + "-24.14957093]\n", + " [-32.29232495 -18.77357144]\n", + " [-32.2899932 -13.39757194]\n", + " 035 -0.16677881 -0.13202594 -0.09650734 -0.06042346 -0.02398226\n", + " -0.20136156 -0.16743861 -0.13255205 -0.09689601 -0.0606707 -0.02408492\n", + " -0.20176105 -0.16777281 -0.13281959 -0.09709479 -0.06079851 -0.02414006]\n", + " [-0.20112017 -0.17462343 -0.14743759 -0.11967398 -0.09144325 -0.06285614\n", + " -0.0340241 -0.00505944 -0.20112017 -0.20295163 -0.20451753 -0.20581845\n", + " -0.20685386 -0.20762236 -0.2081222 -0.20835189 -0.00505944 -0.0050993\n", + " -0.00513287 -0.00516008 -0.00518078 -0.00519482 -0.00520206 -0.00520239\n", + " -0.20835189 -0.18087002 -0.15269708 -0.12393724 -0.09469638 -0.06508391\n", + " -0.03521344 -0.00520239 -0.18966571 -0.15671259 -0.12283514 -0.0882373\n", + " -0.053123 -0.01769778 -0.20186172 -0.20392662 -0.20559352 -0.20686189\n", + " -0.20772922 -0.20819238 -0.00517714 -0.00522278 -0.00525872 -0.00528472\n", + " -0.0053005 -0.00530579 -0.19646103 -0.1623014 -0.12720719 -0.09137251\n", + " -0.05499882 -0.01829695 -0.20103758 -0.20103758 -0.00530513 -0.00530513\n", + " -0.19044022 -0.19238166 -0.19395017 -0.19514465[-32.28766146 -8.02157244]\n", + " [-32.28532972 -2.64557295]\n", + " [-30.40031161 -31.42389325]\n", + " [-25.02431212 -31.42622499]\n", + " [-19.64831262 -31.42855673]\n", + " [-14.27231313 -31.43088848]\n", + " [ -8.89631363 -31.43322022]\n", + " [ -3.52031414 -31.43555196]\n", + " [-30.38700689 -0.74889614]\n", + " [-25.01100739 -0.75122788]\n", + " [-19.6350079 -0.75355962]\n", + " [-14.25900841 -0.75589136]\n", + " [ -8.88300892 -0.7582231 ]\n", + " [ -3.50700942 -0.76055484]\n", + " [ -1.62199131 -29.53887515]\n", + " [ -1.61965957 -24.16287565]\n", + " [ -1.61732783 -18.78687616]\n", + " [ -1.61499609 -13.41087666]\n", + " [ -1.61266434 -8.03487716]\n", + " [ -1.6103326 -2.65887768]\n", + " [-32.29781143 -31.42307024]\n", + " [-32.29781143 -31.42307024]\n", + " [ -1.60950959 -0.76137785]\n", + " [ -1.60950959 -0.76137785]\n", + " [-30.3994886 -29.52639343]\n", + " [-25.02348911 -29.52872517]\n", + " [-19.64748962 -29.53105692]\n", + " [-14.27149012 -29.53338866]\n", + " [ -8.89549063 -29.5357204 ]\n", + " [ -3.51949113 -29.53805214]\n", + " [-30.39715686 -24.15039394]\n", + " [-25.02115737 -24.15272568]\n", + " [-19.64515788 -24.15505742]\n", + " [-14.26915838 -24.15738916]\n", + " [ -8.89315889 0.19203156 -0.37261804 0.9078985 ]\n", + " [ 0.01511704 -0.39821282 0.91716848]\n", + " [ 0.04977435 -0.38788493 0.92036286]\n", + " [ 0.08412158 -0.37704261 0.92236784]\n", + " [ 0.11795855 -0.36575981 0.92320395]\n", + " [ 0.15109008 -0.35411678 0.92291554]\n", + " [ 0.18332452 -0.34219877 0.92157046]\n", + " [ 0.00459585 -0.36639037 0.93044988]\n", + " [ 0.039477 -0.35605482 0.93363083]\n", + " [ 0.07406636 -0.34526192 0.93557917]\n", + " [ 0.10816216 -0.33408551 0.93631609]\n", + " [ 0.14156862 -0.32260545 0.93588677]\n", + " [ 0.17409511 -0.31090643 0.93435972]\n", + " [-0.00606264 -0.33371698 0.94265382]\n", + " [ 0.02897522 -0.32339642 0.94581985]\n", + " [ 0.06374052 -0.31267925 0.9477177 ]\n", + " [ 0.09803004 -0.30163871 0.94836923]\n", + " [ 0.13164721 -0.29035359 0.94782056]\n", + " [ 0.16440166 -0.27890739 0.94614099]\n", + " [-0.01679545 -0.300372 0.95367425]\n", + " [ 0.01833038 -0.29008908 0.95682408]\n", + " [ 0.05320389 -0.27947352 0.9586782 ]\n", + " [ 0.08762085 -0.26859749 0.95925908]\n", + " [ 0.12138392 -0.25753827 0.95861357]\n", + " [ 0.15430245 -0.2463777 0.95681178]]\n", + "DEBUG:root:optics_fp: sphi -0.19596195 -0.19639843\n", + " -0.15734701 -0.15893973 -0.16022981 -0.16121459 -0.16188952 -0.16224993\n", + " -0.12332956 -0.12457282 -0.12558234 -0.12635458 -0.12688447 -0.12716713\n", + " -0.08859098 -0.08948154 -0.09020602 -0.09076095 -0.09114176 -0.09134421\n", + " -0.05333481 -0.05386844 -0.05430277 -0.0546353 -0.05486289 -0.05498267\n", + " -0.01776673 -0.01794001 -0.01808024 -0.01818657 -0.01825788 -0.01829321]\n", + " [ 0.95755142 0.96233999 0.96653976 0.97008795 0.97293305 0.97503467\n", + " 0.97636342 0.97690088 0.95755142 0.96248238 0.96683281 0.97053776\n", + " 0.97354358 0.97580774 0.97729871 0.97799592 0.97690088 0.98248039\n", + " 0.98738607 0.99155393 0.99493015 0.99747104 0.99914344 0.99992533\n", + " 0.97799592 0.98344825 0.98821363 0.9922301 0.99544579 0.99781904\n", + " 0.99931881 0.99992533 0.9597252 0.96520735 0.96974134 0.97322767\n", + " 0.97559197 0.97678469 0.95978566 0.96544816 0.97017277 0.97385603\n", + " 0.97641964 0.97781011 0.97941141 0.98580511 0.99112198 0.99525874\n", + " 0.998135 0.99969431 0.98045219 0.98668092 0.99181514 0.9957552\n", + " 0.99842443 0.99977036 0.95758648 0.95758648 0.99992365 0.99992365\n", + " 0.96195864 0.96770674 0.97250019 0.97623574 0.97883515 0.98024484\n", + " 0.96752607 0.97348742 0.97845274 0.98231919 0.98500842 0.98646648\n", + " 0.97212813 0.97826002 0.98336338 0.98733549 0.99009754 0.99159492\n", + " 0.9756655 0.9819256 0.98713324 0.99118554 0.99400311 0.99553056\n", + " 0.97806386 0.98440972 0.98968741 0.99379381 0.99664895 0.99819679\n", + " 0.97927362 0.98566244 0.99097531 0.99510896 0.99798306 0.9995412 ]]\n", + "-24.1597209 ]\n", + " [ -3.51715939 -24.16205264]\n", + " [-30.39482512 -18.77439444]\n", + " [-25.01882563 -18.77672618]\n", + " [-19.64282613 -18.77905793]\n", + " [-14.26682664 -18.78138967]\n", + " [ -8.89082714 -18.78372141]\n", + " [ -3.51482765 -18.78605315]\n", + " [-30.39249338 -13.39839495]\n", + " [-25.01649389 -13.40072669]\n", + " [-19.64049439 -13.40305843]\n", + " [-14.2644949 -13.40539017]\n", + " [ -8.8884954 -13.40772191]\n", + " [ -3.51249591 -13.41005365]\n", + " [-30.39016163 -8.02239545]\n", + " [-25.01416214 -8.02472719]\n", + " [-19.63816265 -8.02705893]\n", + " [-14.26216315 -8.02939068]\n", + " [ -8.88616366 -8.03172242]\n", + " [ -3.51016417 -8.03405416]\n", + " [-30.3878299 -2.64639596]\n", + " [-25.01183041 -2.6487277 ]\n", + " [-19.63583091 -2.65105944]\n", + " [-14.25983141 -2.65339118]\n", + " [ -8.88383191 -2.65572292]\n", + " [ -3.50783243 -2.65805467]]\n", + "DEBUG:root:radec2pix: camVec Shape: (3, 96)\n", + "DEBUG:root:radec2pix: ccdpx: [[-4.45000000e+01 -4.99999951e-01]\n", + " [-4.45000000e+01 2.91928572e+02]\n", + " [-4.45000000e+01 5.84357142e+02]\n", + " [-4.45000000e+01 8.76785714e+02]\n", + " [-4.45000000e+01 1.16921429e+03]\n", + " [-4.45000000e+01 1.46164286e+03]\n", + " [-4.45000000e+01 1.75407143e+03]\n", + " [-4.45000000e+01 2.04650000e+03]\n", + " [-4.45000000e+01 -4.99999951e-01]\n", + " [ 2.47928571e+02 -5.00000176e-01]\n", + " [ 5.40357143e+02 -5.00000069e-01]\n", + " [ 8.32785714e+02 -5.00000257e-01]\n", + " [ 1.12521429e+03 -4.99999992e-01]\n", + " [ 1.41764286e+03 -5.00000241e-01]\n", + " [ 1.71007143e+03 -4.99999730e-01]\n", + " [ 2.00250000e+03 -5.00000010e-01]\n", + " [-4.45000000e+01 2.04650000e+03]\n", + " [ 2.47928571e+02 2.04650000e+03]\n", + " [ 5.40357143e+02 2.04650000e+03]\n", + " [ 8.32785714e+02 2.04650000e+03]\n", + " [ 1.12521429e+03 2.04650000e+03]\n", + " [ 1.41764286e+03 2.04650000e+03]\n", + " [ 1.71007143e+03 2.04650000e+03]\n", + " [ 2.00250000e+03 2.04650000e+03]\n", + " [ 2.00250000e+03 -5.00000010e-01]\n", + " [ 2.00250000e+03 2.91928572e+02]\n", + " [ 2.00250000e+03 5.84357143e+02]\n", + " [ 2.00250000e+03 8.76785714e+02]\n", + " [ 2.00250000e+03 1.16921429e+03]\n", + " [ 2.00250000e+03 1.46164286e+03]\n", + " [ 2.00250000e+03 1.75407143e+03]\n", + " [ 2.00250000e+03 2.04650000e+03]\n", + " [-4.35000000e+01 1.27000000e+02]\n", + " [-4.35000000e+01 4.85400000e+02]\n", + " [-4.35000000e+01 8.43800000e+02]\n", + " [-4.35000000e+01 1.20220000e+03]\n", + " [-4.35000000e+01 1.56060000e+03]\n", + " [-4.35000000e+01 1.91900000e+03]\n", + " [ 8.30000000e+01 4.99999720e-01]\n", + " [ 4.41400000e+02 4.99999983e-01]\n", + " [ 7.99800000e+02 4.99999771e-01]\n", + " [ 1.15820000e+03 4.99999773e-01]\n", + " [ 1.51660000e+03 5.00000075e-01]\n", + " [ 1.87500000e+03 4.99999913e-01]\n", + " [ 8.29999998e+01 2.04550000e+03]\n", + " [ 4.41400000e+02 2.04550000e+03]\n", + " [ 7.99800000e+02 2.04550000e+03]\n", + " [ 1.15820000e+03 2.04550000e+03]\n", + " [ 1.51660000e+03 2.04550000e+03]\n", + " [ 1.87500000e+03 2.04550000e+03]\n", + " [ 2.00150000e+03 1.27000000e+02]\n", + " [ 2.00150000e+03 4.85400000e+02]\n", + " [ 2.00150000e+03 8.43800000e+02]\n", + " [ 2.00150000e+03 1.20220000e+03]\n", + " [ 2.00150000e+03 1.56060000e+03]\n", + " [ 2.00150000e+03 1.91900000e+03]\n", + " [-4.35000000e+01 4.99999930e-01]\n", + " [-4.35000000e+01 4.99999930e-01]\n", + " [ 2.00150000e+03 2.04550000e+03]\n", + " [ 2.00150000e+03 2.04550000e+03]\n", + " [ 8.30000000e+01 1.27000000e+02]\n", + " [ 4.41400000e+02 1.27000000e+02]\n", + " [ 7.99800000e+02 1.27000000e+02]\n", + " [ 1.15820000e+03 1.27000000e+02]\n", + " [ 1.51660000e+03 1.27000000e+02]\n", + " [ 1.87500000e+03 1.27000000e+02]\n", + " [ 8.30000000e+01 4.85400000e+02]\n", + " [ 4.41400000e+02 4.85400000e+02]\n", + " [ 7.99800000e+02 4.85400000e+02]\n", + " [ 1.15820000e+03 4.85400000e+02]\n", + " [ 1.51660000e+03 4.85400000e+02]\n", + " [ 1.87500000e+03 4.85400000e+02]\n", + " [ 8.30000000e+01 8.43800000e+02]\n", + " [ 4.41400000e+02 8.43800000e+02]\n", + " [ 7.99800000e+02 8.43800000e+02]\n", + " [ 1.15820000e+03 8.43800000e+02]\n", + " [ 1.51660000e+03 8.43800000e+02]\n", + " [ 1.87500000e+03 8.43800000e+02]\n", + " [ 8.30000000e+01 1.20220000e+03]\n", + " [ 4.41400000e+02 1.20220000e+03]\n", + " [ 7.99800000e+02 1.20220000e+03]\n", + " [ 1.15820000e+03 1.20220000e+03]\n", + " [ 1.51660000e+03 1.20220000e+03]\n", + " [ 1.87500000e+03 1.20220000e+03]\n", + " [ 8.30000000e+01 1.56060000e+03]\n", + " [ 4.41400000e+02 1.56060000e+03]\n", + " [ 7.99800000e+02 1.56060000e+03]\n", + " [ 1.15820000e+03 1.56060000e+03]\n", + " [ 1.51660000e+03 1.56060000e+03]\n", + " [ 1.87500000e+03 1.56060000e+03]\n", + " [ 8.30000000e+01 1.91900000e+03]\n", + " [ 4.41400000e+02 1.91900000e+03]\n", + " [ 7.99800000e+02 1.91900000e+03]\n", + " [ 1.15820000e+03 1.91900000e+03]\n", + " [ 1.51660000e+03 1.91900000e+03]\n", + " [ 1.87500000e+03 1.91900000e+03]]\n", + "714e+02]\n", + " [ 2.00250000e+03 1.16921429e+03]\n", + " [ 2.00250000e+03 1.46164286e+03]\n", + " [ 2.00250000e+03 1.75407143e+03]\n", + " [ 2.00250000e+03 2.04650000e+03]\n", + " [-4.35000000e+01 1.27000000e+02]\n", + " [-4.35000000e+01 4.85400000e+02]\n", + " [-4.35000000e+01 8.43800000e+02]\n", + " [-4.35000000e+01 1.20220000e+03]\n", + " [-4.35000000e+01 1.56060000e+03]\n", + " [-4.35000000e+01 1.91900000e+03]\n", + " [ 8.30000000e+01 5.00000045e-01]\n", + " [ 4.41400000e+02 5.00000251e-01]\n", + " [ 7.99800000e+02 4.99999878e-01]\n", + " [ 1.15820000e+03 4.99999746e-01]\n", + " [ 1.51660000e+03 5.00000268e-01]\n", + " [ 1.87500000e+03 4.99999743e-01]\n", + " [ 8.29999998e+01 2.04550000e+03]\n", + " [ 4.41400000e+02 2.04550000e+03]\n", + " [ 7.99800000e+02 2.04550000e+03]\n", + " [ 1.15820000e+03 2.04550000e+03]\n", + " [ 1.51660000e+03 2.04550000e+03]\n", + " [ 1.87500000e+03 2.04550000e+03]\n", + " [ 2.00150000e+03 1.27000000e+02]\n", + " [ 2.00150000e+03 4.85400000e+02]\n", + " [ 2.00150000e+03 8.43800000e+02]\n", + " [ 2.00150000e+03 1.20220000e+03]\n", + " [ 2.00150000e+03 1.56060000e+03]\n", + " [ 2.00150000e+03 1.91900000e+03]\n", + " [-4.35000000e+01 5.00000140e-01]\n", + " [-4.35000000e+01 5.00000140e-01]\n", + " [ 2.00150000e+03 2.04550000e+03]\n", + " [ 2.00150000e+03 2.04550000e+03]\n", + " [ 8.30000000e+01 1.27000000e+02]\n", + " [ 4.41400000e+02 1.27000000e+02]\n", + " [ 7.99800000e+02 1.27000000e+02]\n", + " [ 1.15820000e+03 1.27000000e+02]\n", + " [ 1.51660000e+03 1.27000000e+02]\n", + " [ 1.87500000e+03 1.27000000e+02]\n", + " [ 8.30000000e+01 4.85400000e+02]\n", + " [ 4.41400000e+02 4.85400000e+02]\n", + " [ 7.99800000e+02 4.85400000e+02]\n", + " [ 1.15820000e+03 4.85400000e+02]\n", + " [ 1.51660000e+03 4.85400000e+02]\n", + " [ 1.87500000e+03 4.85400000e+02]\n", + " [ 8.30000000e+01 8.43800000e+02]\n", + " [ 4.41400000e+02 8.43800000e+02]\n", + " [ 7.99800000e+02 8.43800000e+02]\n", + " [ 1.15820000e+03 8.43800000e+02]\n", + " [ 1.51660000e+03 8.43800000e+02]\n", + " [ 1.87500000e+03 8.43800000e+02]\n", + " [ 8.30000000e+01 1.20220000e+03]\n", + " [ 4.41400000e+02 1.20220000e+03]\n", + " [ 7.99800000e+02 1.20220000e+03]\n", + " [ 1.15820000e+03 1.20220000e+03]\n", + " [ 1.51660000e+03 1.20220000e+03]\n", + " [ 1.87500000e+03 1.20220000e+03]\n", + " [ 8.30000001e+01 1.56060000e+03]\n", + " [ 4.41400000e+02 1.56060000e+03]\n", + " [ 7.99800000e+02 1.56060000e+03]\n", + " [ 1.15820000e+03 1.56060000e+03]\n", + " [ 1.51660000e+03 1.56060000e+03]\n", + " [ 1.87500000e+03 1.56060000e+03]\n", + " [ 8.29999998e+01 1.91900000e+03]\n", + " [ 4.41400000e+02 1.91900000e+03]\n", + " [ 7.99800000e+02 1.91900000e+03]\n", + " [ 1.15820000e+03 1.91900000e+03]\n", + " [ 1.51660000e+03 1.91900000e+03]\n", + " [ 1.87500000e+03 1.91900000e+03]]\n", + "DEBUG:root:cartToSphere: vec: [[0.20582147 0.20164691 0.95758866]\n", + " [0.20765008 0.17515749 0.96239353]\n", + " [0.20920683 0.1479768 0.96661025]\n", + " [0.21049219 0.12021614 0.97017582]\n", + " [0.21150557 0.09198614 0.97303851]\n", + " [0.2122456 0.06339752 0.97515771]\n", + " [0.21271065 0.03456171 0.9765038 ]\n", + " [0.21289938 0.00559103 0.97705813]\n", + " [0.20582147 0.20164691 0.95758866]\n", + " [0.17940403 0.2034844 0.96250106]\n", + " [0.15227891 0.20505578 0.96683156]\n", + " [0.12455745 0.20636157 0.9705155 ]\n", + " [0.09635017 0.2074012 0.97349956]\n", + " [0.06776763 0.20817322 0.97574149]\n", + " [0.03892112 0.20867589 0.97721007]\n", + " [0.00992292 0.20890768 0.97788502]\n", + " [0.21289938 0.00559103 0.97705813]\n", + " [0.18554193 0.00564441 0.98262014]\n", + " [0.15747589 0.00569099 0.98750643]\n", + " [0.1288054 0.00573063 0.99165333]\n", + " [0.09963586 0.00576317 0.99500728]\n", + " [0.07007602 0.00578837 0.99752486]\n", + " [0.04023879 0.00580605 0.99917322]\n", + " [0.01024104 0.00581605 0.99993064]\n", + " [0.00992292 0.20890768 0.97788502]\n", + " [0.01000636 0.18144072 0.98335097]\n", + " [0.01007758 0.15328055 0.98813132]\n", + " [0.01013637 0.12453134 0.9921639 ]\n", + " [0.01018243 0.09529889 0.99539662]\n", + " [0.01021541 0.06569253 0.99778762]\n", + " [0.01023502 0.0358258 0.99930564]\n", + " [0.01024104 0.00581605 0.99993064]\n", + " [0.20656285 0.19019593 0.9597694 ]\n", + " [0.20862007 0.15725033 0.96527198]\n", + " [0.2102697 0.12337711 0.96982717]\n", + " [0.2115111 0.08878017 0.97333506]\n", + " [0.21234181 0.0536634 0.97572086]\n", + " [0.21275892 0.01823232 0.97693461]\n", + " [0.19440388 0.20239118 0.95981506]\n", + " [0.16153549 0.20446311 0.96545384]\n", + " [0.12771486 0.20613616 0.97015298]\n", + " [0.09314577 0.2074097 0.97380957]\n", + " [0.05803185 0.20828117 0.97634587]\n", + " [0.02257838 0.20874739 0.97770893]\n", + " [0.20106508 0.00571471 0.97956122]\n", + " [0.16704611 0.00577657 0.98593216]\n", + " [0.13206625 0.00582791 0.99122376]\n", + " [0.09631893 0.00586841 0.99533322]\n", + " [0.06000442 0.00589767 0.99818069]\n", + " [0.02333228 0.00591534 0.99971026]\n", + " [0.01006049 0.19702358 0: [0.70073958 0.64606768 0.57926126 0.49834142 0.40194059 0.29007134\n", + " 0.1649404 0.0313274 0.70073958 0.75081049 0.80330242 0.85632562\n", + " 0.90683747 0.95061586 0.98274331 0.99875393 0.0313274 0.03631497\n", + " 0.04315962 0.05313395 0.069014 0.09821415 0.1691786 0.5459791\n", + " 0.99875393 0.99832709 0.99763477 0.99640065 0.99386824 0.98730608\n", + " 0.96018902 0.5459791 0.67842975 0.60353431 0.50840257 0.39023062\n", + " 0.2491346 0.09026478 0.72202887 0.78522123 0.85029163 0.91212843\n", + " 0.9630057 0.99397217 0.03381828 0.04117383 0.05254813 0.07246053\n", + " 0.11619532 0.28568936 0.998564 0.99787113 0.99651836 0.99329877\n", + " 0.98218517 0.87963764 0.70073672 0.70073672 0.54790634 0.54790634\n", + " 0.7003523 0.76617231 0.83524188 0.90223637 0.95845287 0.99319172\n", + " 0.62671212 0.69894092 0.77968384 0.86389216 0.9399874 0.98993027\n", + " 0.53140435 0.60624939 0.69673956 0.80101328 0.90667588 0.98362991\n", + " 0.41062285 0.48009609 0.57202299 0.69282748 0.83927416 0.96899587\n", + " 0.26367291 0.3152909 0.38989736 0.5039234 0.68394565 0.92210851\n", + " 0.09588115 0.11634315 0.14772342 0.20168832 0.31431902 0.6442708 ]\n", + "DEBUG:root:radec2pix: camVec Shape: (3, 96)\n", + "DEBUG:root:radec2pix: fitpx: [[2135.5 4155.50000025]\n", + " [2135.5 3863.07142842]\n", + " [2135.5 3570.64285705]\n", + " [2135.5 3278.21428595]\n", + " [2135.50000001 2985.78571392]\n", + " [2135.5 2693.35714283]\n", + " [2135.49999998 2400.92857178]\n", + " [2135.49999997 2108.50000011]\n", + " [2135.5 4155.50000025]\n", + " [1843.07142855 4155.50000014]\n", + " [1550.64285713 4155.50000003]\n", + " [1258.21428573 4155.49999997]\n", + " [ 965.78571432 4155.49999994]\n", + " [ 673.35714273 4155.50000018]\n", + " [ 380.92857156 4155.49999985]\n", + " [ 88.49999978 4155.50000022]\n", + " [2135.49999997 2108.50000011]\n", + " [1843.07142854 2108.50000001]\n", + " [1550.64285742 2108.49999997]\n", + " [1258.21428585 2108.49999999]\n", + " [ 965.78571387 2108.50000002]\n", + " [ 673.35714329 2108.49999998]\n", + " [ 380.92857158 2108.5 ]\n", + " [ 88.4999998 2108.50000001]\n", + " [ 88.49999978 4155.50000022]\n", + " [ 88.50000021 3863.07142839]\n", + " [ 88.50000011 3570.64285706]\n", + " [ 88.50000015 3278.21428562]\n", + " [ 88.49999997 2985.7857143 ]\n", + " [ 88.49999979 2693.35714292]\n", + " [ 88.49999995 2400.92857144]\n", + " [ 88.4999998 2108.50000001]\n", + " [2134.5 4027.99999985]\n", + " [2134.5 3669.59999985]\n", + " [2134.49999999 3311.20000044]\n", + " [2134.5 2952.7999998 ]\n", + " [2134.5 2594.40000013]\n", + " [2134.50000001 2235.99999985]\n", + " [2007.99999998 4154.50000028]\n", + " [1649.59999995 4154.50000021]\n", + " [1291.20000012 4154.49999971]\n", + " [ 932.8 4154.5 ]\n", + " [ 574.40000006 4154.49999992]\n", + " [ 215.99999986 4154.50000015]\n", + " [2007.99999994 2109.50000002]\n", + " [1649.60000009 2109.49999999]\n", + " [1291.20000007 2109.5 ]\n", + " [ 932.80000034 2109.49999998]\n", + " [ 574.40000029 2109.49999999]\n", + " [ 216.00000015 2109.5 ]\n", + " [ 89.50000013 4027.99999988]\n", + " [ 89.50000024 3669.59999981]\n", + " [ 89.50000003 3311.19999998]\n", + " [ 89.49999973 2952.80000012]\n", + " [ 89.49999991 2594.40000002]\n", + " [ 89.50000029 2235.99999997]\n", + " [2134.5 4154.50000026]\n", + " [2134.5 4154.50000026]\n", + " [ 89.50000019 2109.49999999]\n", + " [ 89.50000019 2109.49999999]\n", + " [2008. 4027.99999998]\n", + " [1649.6 4027.99999999]\n", + " [1291.19999989 4028.00000025]\n", + " [ 932.79999995 4028.00000008]\n", + " [ 574.3999998 4028.00000025]\n", + " [ 215.99999992 4028.00000008]\n", + " [2008.00000001 3669.59999984]\n", + " [1649.60000007 3669.59999979]\n", + " [1291.19999996 3669.60000008]\n", + " [ 932.80000004 3669.59999994]\n", + " [ 574.39999995 3669.60000006]\n", + " [ 216.00000005 3669.59999995]\n", + " [2007.99999998 3311.2000002 ]\n", + " [1649.59999994 3311.20000015]\n", + " [1291.20000016 3311.19999976]\n", + " [ 932.80000015 3311.19999985]\n", + " [ 574.40000019 3311.19999985]\n", + " [ 216.00000023 3311.19999985]\n", + " [2007.99999995 2952.80000031]\n", + " [1649.60000003 2952.79999994]\n", + " [1291.19999981 2952.80000019]\n", + " [ 932.79999986 2952.8000001 ]\n", + " [ 574.39999987 2952.80000007]\n", + " [ 216.00000004 2952.79999998]\n", + " [2007.99999998 2594.40000008]\n", + " [1649.60000021 2594.39999977]\n", + " [1291.19999986 2594.40000009]\n", + " [ 932.80000028 2594.39999988]\n", + " [ 574.39999984 2594.40000006]\n", + " [ 216.00000019 2594.39999995]\n", + " [2007.99999983 2236.00000022]\n", + " [1649.60000014 2235.99999995]\n", + " [1291.19999989 2236.00000002]\n", + " [ 932.80000032 2235.99999995]\n", + " [ 574.40000023 2235.99999997]\n", + " [ 216.00000006 2235.99999999]]\n", + "DEBUG:root:radec2pix: fitpx: [[ 2.13550000e+03 -4.99999797e-01]\n", + " [ 2.13550000e+03 2.91928572e+02]\n", + " [ 2.13550000e+03 5.84357143e+02]\n", + " [ 2.13550000e+03 8.76785714e+02]\n", + " [ 2.13550000e+03 1.16921429e+03]\n", + " [ 2.13550000e+03 1.46164286e+03]\n", + " [ 2.13550000e+03 1.75407143e+03]\n", + " [ 2.13550000e+03 2.04650000e+03]\n", + " [ 2.13550000e+03 -4.99999797e-01]\n", + " [ 2.42792857e+03 -5.00000034e-01]\n", + " [ 2.72035714e+03 -4.99999972e-01]\n", + " [ 3.01278571e+03 -4.99999760e-01]\n", + " [ 3.30521429e+03 -5.00000049e-01]\n", + " [ 3.59764286e+03 -4.99999867e-01]\n", + " [ 3.89007143e+03 -5.00000044e-01]\n", + " [ 4.18250000e+03 -4.99999770e-01]\n", + " [ 2.13550000e+03 2.04650000e+03]\n", + " [ 2.42792857e+03 2.04650000e+03]\n", + " [ 2.72035714e+03 2.04650000e+03]\n", + " [ 3.01278571e+03 2.04650000e+03]\n", + " [ 3.30521429e+03 2.04650000e+03]\n", + " [ 3.59764286e+03 2.04650000e+03]\n", + " [ 3.89007143e+03 2.04650000e+03]\n", + " [ 4.18250000e+03 2.04650000e+03]\n", + " [ 4.18250000e+03 -4.99999770e-01]\n", + " [ 4.18250000e+03 2.91928572e+02]\n", + " [ 4.18250000e+03 5.84357143e+02]\n", + " [ 4.18250000e+03 8.76785714e+02]\n", + " [ 4.18250000e+03 1.16921429e+03]\n", + " [ 4.18250000e+03 1.46164286e+03]\n", + " [ 4.18250000e+03 1.75407143e+03]\n", + " [ 4.18250000e+03 2.04650000e+03]\n", + " [ 2.13650000e+03 1.27000000e+02]\n", + " [ 2.13650000e+03 4.85400000e+02]\n", + " [ 2.13650000e+03 8.43800000e+02]\n", + " [ 2.13650000e+03 1.20220000e+03]\n", + " [ 2.13650000e+03 1.56060000e+03]\n", + " [ 2.13650000e+03 1.91900000e+03]\n", + " [ 2.26300000e+03 5.00000045e-01]\n", + " [ 2.62140000e+03 5.00000251e-01]\n", + " [ 2.97980000e+03 4.99999878e-01]\n", + " [ 3.33820000e+03 4.99999746e-01]\n", + " [ 3.69660000e+03 5.00000268e-01]\n", + " [ 4.05500000e+03 4.99999743e-01]\n", + " [ 2.26300000e+03 2.04550000e+03]\n", + " [ 2.62140000e+03 2.04550000e+03]\n", + " [ 2.97980000e+03 2.04550000e+03]\n", + " [ 3.33820000e+03 2.04550000e+03]\n", + " [ 3.69660000e+03 2.04550000e+03]\n", + " [ 4.05500000e+03 2.04550000e+03]\n", + " [ 4.18150000e+03 1.27000000e+02]\n", + " [ 4.18150000e+03 4.85400000e+02]\n", + " [ 4.18150000e+03 8.438000DEBUG:root:cartToSphere: vec: [[-0.20650899 -0.20112017 0.95755142]\n", + " [-0.20834684 -0.17462343 0.96233999]\n", + " [-0.209912 -0.14743759 0.96653976]\n", + " [-0.2112049 -0.11967398 0.97008795]\n", + " [-0.21222492 -0.09144325 0.97293305]\n", + " [-0.21297066 -0.06285614 0.97503467]\n", + " [-0.21344048 -0.0340241 0.97636342]\n", + " [-0.21363303 -0.00505944 0.97690088]\n", + " [-0.20650899 -0.20112017 0.95755142]\n", + " [-0.18010636 -0.20295163 0.96248238]\n", + " [-0.15299311 -0.20451753 0.96683281]\n", + " [-0.12528058 -0.20581845 0.97053776]\n", + " [-0.09707928 -0.20685386 0.97354358]\n", + " [-0.06849975 -0.20762236 0.97580774]\n", + " [-0.03965325 -0.2081222 0.97729871]\n", + " [-0.01065205 -0.20835189 0.97799592]\n", + " [-0.21363303 -0.00505944 0.97690088]\n", + " [-0.1862962 -0.0050993 0.98248039]\n", + " [-0.15824793 -0.00513287 0.98738607]\n", + " [-0.12959237 -0.00516008 0.99155393]\n", + " [-0.10043485 -0.00518078 0.99493015]\n", + " [-0.07088401 -0.00519482 0.99747104]\n", + " [-0.04105265 -0.00520206 0.99914344]\n", + " [-0.01105755 -0.00520239 0.99992533]\n", + " [-0.01065205 -0.20835189 0.97799247449]\n", + " [-25.00196422 -31.70476008]\n", + " [-19.62596471 -31.70704565]\n", + " [-14.24996519 -31.70933123]\n", + " [ -8.87396568 -31.71161681]\n", + " [ -3.49796617 -31.71390239]\n", + " [-30.36492242 -1.02747727]\n", + " [-24.98892291 -1.02976285]\n", + " [-19.61292339 -1.03204842]\n", + " [-14.23692388 -1.034334 ]\n", + " [ -8.86092437 -1.03661958]\n", + " [ -3.48492485 -1.03890516]\n", + " [ -1.59965962 -29.81720927]\n", + " [ -1.59737405 -24.44120975]\n", + " [ -1.59508847 -19.06521024]\n", + " [ -1.59280289 -13.68921073]\n", + " [ -1.59051731 -8.31321121]\n", + " [ -1.58823174 -2.9372117 ]\n", + " [-32.27546357 -31.70166778]\n", + " [-32.27546357 -31.70166778]\n", + " [ -1.58742502 -1.03971187]\n", + " [ -1.58742502 -1.03971187]\n", + " [-30.37715702 -29.80497466]\n", + " [-25.00115751 -29.80726024]\n", + " [-19.625158 -29.80954582]\n", + " [-14.24915848 -29.8118314 ]\n", + " [ -8.87315897 -29.81411698]\n", + " [ -3.49715945 -29.81640256]\n", + " [-30.37487145 -24.42897515]\n", + " [-24.99887193 -24.43126073]\n", + " [-19.62287241 -24.43354631]\n", + " [-14.2468729 -24.43583188]\n", + " [ -8.87087339 -24.43811746]\n", + " [ -3.49487388 -24.44040305]\n", + " [-30.37258587 -19.05297564]\n", + " [-24.592]\n", + " [-0.01075054 -0.18087002 0.98344825]\n", + " [-0.01083605 -0.15269708 0.98821363]\n", + " [-0.01090831 -0.12393724 0.9922301 ]\n", + " [-0.01096697 -0.09469638 0.99544579]\n", + " [-0.01101162 -0.06508391 0.99781904]\n", + " [-0.0110419 -0.03521344 0.99931881]\n", + " [-0.01105755 -0.00520239 0.99992533]\n", + " [-0.20725456 -0.18966571 0.9597252 ]\n", + " [-0.20932255 -0.15671259 0.96520735]\n", + " [-0.21098167 -0.12283514 0.96974134]\n", + " [-0.21223121 -0.0882373 0.97322767]\n", + " [-0.21306867 -0.053123 0.97559197]\n", + " [-0.2134911 -0.01769778 0.97678469]\n", + " [-0.19509826 -0.20186172 0.95978566]\n", + " [-0.16224603 -0.20392662 0.96544816]\n", + " [-0.12843717 -0.20559352 0.97017277]\n", + " [-0.09387541 -0.20686189 0.97385603]\n", + " [-0.05876435 -0.20772922 0.97641964]\n", + " [-0.02330924 -0.20819238 0.97781011]\n", + " [-0.20180806 -0.00517714 0.97941141]\n", + " [-0.16781243 -0.00522278 0.98580511]\n", + " [-0.13285166 -0.00525872 0.99112198]\n", + " [-0.09711907 -0.00528472 0.99525874]\n", + " [-0.06081473 -0.0053005 0.998135 ]\n", + " [-0.02414801 -0.00530579 0.99969431]\n", + " [-0.01079628 -0.196DEBUG:root:optics_fp: xyfp: [[-32.29046994 -31.71666141]\n", + " [-32.28860507 -27.33023323]\n", + " [-32.2867402 -22.94380505]\n", + " [-32.28487534 -18.55737688]\n", + " [-32.28301047 -14.1709487 ]\n", + " [-32.2811456 -9.78452053]\n", + " [-32.27928073 -5.39809235]\n", + " [-32.27741587 -1.01166418]\n", + " [-32.29046994 -31.71666141]\n", + " [-27.90404176 -31.71852627]\n", + " [-23.51761359 -31.72039114]\n", + " [-19.13118541 -31.722256 ]\n", + " [-14.74475724 -31.72412087]\n", + " [-10.35832906 -31.72598574]\n", + " [ -5.97190089 -31.72785061]\n", + " [ -1.58547272 -31.72971547]\n", + " [-32.27741587 -1.01166418]\n", + " [-27.8909877 -1.01352905]\n", + " [-23.50455952 -1.01539391]\n", + " [-19.11813134 -1.01725878]\n", + " [-14.73170317 -1.01912365]\n", + " [-10.345275 -1.02098851]\n", + " [ -5.95884682 -1.02285338]\n", + " [ -1.57241864 -1.02471825]\n", + " [ -1.58547272 -31.72971547]\n", + " [ -1.58360785 -27.3432873 ]\n", + " [ -1.58174298 -22.95685912]\n", + " [ -1.57987811 -18.57043094]\n", + " [ -1.57801325 -14.18400278]\n", + " [ -1.57614838 -9.7975746 ]\n", + " [ -1.57428351 -5.41114642]\n", + " [ -1.57241864 -1.02471825]\n", + " [-32.27465685 -29.80416795]\n", + " [-32.27237127 .98034713]\n", + " [0.01015553 0.16288078 0.98659349]\n", + " [0.01023184 0.12780019 0.99174716]\n", + " [0.01028888 0.0919758 0.99570809]\n", + " [0.01032605 0.05560896 0.99839923]\n", + " [0.01034279 0.01891032 0.99976769]\n", + " [0.20573918 0.20156436 0.95762372]\n", + " [0.20573918 0.20156436 0.95762372]\n", + " [0.01034376 0.00591876 0.99992898]\n", + " [0.01034376 0.00591876 0.99992898]\n", + " [0.19517916 0.19097333 0.96199495]\n", + " [0.16217419 0.19292238 0.96771922]\n", + " [0.12821715 0.19449762 0.97248704]\n", + " [0.09351091 0.19569785 0.97619571]\n", + " [0.05825864 0.19651986 0.97876753]\n", + " [0.02266572 0.19695996 0.9801495 ]\n", + " [0.19711638 0.15788822 0.96758278]\n", + " [0.16377271 0.15949023 0.97352009]\n", + " [0.12947641 0.1607887 0.97845943]\n", + " [0.09442771 0.16178086 0.98229851]\n", + " [0.05882858 0.16246211 0.98495952]\n", + " [0.02288505 0.16282774 0.98638907]\n", + " [0.19867107 0.12387558 0.97220607]\n", + " [0.16505894 0.1251298 0.9783139 ]\n", + " [0.13049231 0.12614936 0.98339112]\n", + " [0.09516891 0.12693065 0.98733555]\n", + " [0.05928988 0.1274685 0.99006893]\n", + " [0.02306224 0.12775798 0.99153721]\n", + " [0.19984199 0.0800e+02]\n", + " [ 4.18150000e+03 1.20220000e+03]\n", + " [ 4.18150000e+03 1.56060000e+03]\n", + " [ 4.18150000e+03 1.91900000e+03]\n", + " [ 2.13650000e+03 5.00000140e-01]\n", + " [ 2.13650000e+03 5.00000140e-01]\n", + " [ 4.18150000e+03 2.04550000e+03]\n", + " [ 4.18150000e+03 2.04550000e+03]\n", + " [ 2.26300000e+03 1.27000000e+02]\n", + " [ 2.62140000e+03 1.27000000e+02]\n", + " [ 2.97980000e+03 1.27000000e+02]\n", + " [ 3.33820000e+03 1.27000000e+02]\n", + " [ 3.69660000e+03 1.27000000e+02]\n", + " [ 4.05500000e+03 1.27000000e+02]\n", + " [ 2.26300000e+03 4.85400000e+02]\n", + " [ 2.62140000e+03 4.85400000e+02]\n", + " [ 2.97980000e+03 4.85400000e+02]\n", + " [ 3.33820000e+03 4.85400000e+02]\n", + " [ 3.69660000e+03 4.85400000e+02]\n", + " [ 4.05500000e+03 4.85400000e+02]\n", + " [ 2.26300000e+03 8.43800000e+02]\n", + " [ 2.62140000e+03 8.43800000e+02]\n", + " [ 2.97980000e+03 8.43800000e+02]\n", + " [ 3.33820000e+03 8.43800000e+02]\n", + " [ 3.69660000e+03 8.43800000e+02]\n", + " [ 4.05500000e+03 8.43800000e+02]\n", + " [ 2.26300000e+03 1.20220000e+03]\n", + " [ 2.62140000e+03 1.20220000e+03]\n", + " [ 2.97980000e+03 1.20220000e+03]\n", + " [ 3.338200046103 0.98045219]\n", + " [-0.01090926 -0.1623014 0.98668092]\n", + " [-0.01100231 -0.12720719 0.99181514]\n", + " [-0.01107479 -0.09137251 0.9957552 ]\n", + " [-0.01112598 -0.05499882 0.99842443]\n", + " [-0.01115523 -0.01829695 0.99977036]\n", + " [-0.20642679 -0.20103758 0.95758648]\n", + " [-0.20642679 -0.20103758 0.95758648]\n", + " [-0.01116024 -0.00530513 0.99992365]\n", + " [-0.01116024 -0.00530513 0.99992365]\n", + " [-0.19587779 -0.19044022 0.96195864]\n", + " [-0.16288944 -0.19238166 0.96770674]\n", + " [-0.12894461 -0.19395017 0.97250019]\n", + " [-0.09424616 -0.19514465 0.97623574]\n", + " [-0.05899718 -0.19596195 0.97883515]\n", + " [-0.02340304 -0.19639843 0.98024484]\n", + " [-0.19782623 -0.15734701 0.96752607]\n", + " [-0.16450046 -0.15893973 0.97348742]\n", + " [-0.13021766 -0.16022981 0.97845274]\n", + " [-0.09517804 -0.16121459 0.98231919]\n", + " [-0.05958347 -0.16188952 0.98500842]\n", + " [-0.0236399 -0.16224993 0.98646648]\n", + " [-0.19939086 -0.12332956 0.97212813]\n", + " [-0.16579789 -0.12457282 0.97826002]\n", + " [-0.13124607 -0.12558234 0.98336338]\n", + " [-0.09593306 -0.12635458 0.98733549]\n", + " [-0.00e+03 1.20220000e+03]\n", + " [ 3.69660000e+03 1.20220000e+03]\n", + " [ 4.05500000e+03 1.20220000e+03]\n", + " [ 2.26300000e+03 1.56060000e+03]\n", + " [ 2.62140000e+03 1.56060000e+03]\n", + " [ 2.97980000e+03 1.56060000e+03]\n", + " [ 3.33820000e+03 1.56060000e+03]\n", + " [ 3.69660000e+03 1.56060000e+03]\n", + " [ 4.05500000e+03 1.56060000e+03]\n", + " [ 2.26300000e+03 1.91900000e+03]\n", + " [ 2.62140000e+03 1.91900000e+03]\n", + " [ 2.97980000e+03 1.91900000e+03]\n", + " [ 3.33820000e+03 1.91900000e+03]\n", + " [ 3.69660000e+03 1.91900000e+03]\n", + " [ 4.05500000e+03 1.91900000e+03]]\n", + "DEBUG:root:fitpix2pix: ccdpx: shape: (96, 2)\n", + "913848 0.97576509]\n", + " [0.16603002 0.09004163 0.98200129]\n", + " [0.13126104 0.09077781 0.98718283]\n", + " [0.09573072 0.09134344 0.99120735]\n", + " [0.0596397 0.09173387 0.99399598]\n", + " [0.02319607 0.09194479 0.9954939 ]\n", + " [0.20062602 0.0538804 0.97818511]\n", + " [0.16668139 0.0544282 0.98450743]\n", + " [0.13177743 0.05487585 0.98975924]\n", + " [0.09610838 0.05522072 0.99383794]\n", + " [0.05987462 0.05545959 0.99666407]\n", + " [0.02328514 0.05558951 0.99818215]\n", + " [0.20101976 0.018307 0.-24.42816844]\n", + " [-32.2700857 -19.05216893]\n", + " [-32.26780012 -13.67616941]\n", + " [-32.26551454 -8.3001699 ]\n", + " [-32.26322896 -2.92417038]\n", + " [-30.37796373 -31.70247449]\n", + " [-25.00196422 -31.70476008]\n", + " [-19.62596471 -31.70704565]\n", + " [-14.24996519 -31.70933123]\n", + " [ -8.87396568 -31.71161681]\n", + " [ -3.49796617 -31.71390239]\n", + " [-30.36492242 -1.02747727]\n", + " [-24.98892291 -1.02976285]\n", + " [-19.61292339 -1.03204842]\n", + " [-14.23692388 -1.034334 ]\n", + " [ -8.86092437 -1.03661958]\n", + " [ -3.48492485 -1.03890516]\n", + " [ -1.59965962 -29.81720927]\n", + " [ -1.59737405 -24.44120975]\n", + " [ -1.59508847 -19.06521024]\n", + " [ -1.59280289 -13.68921073]\n", + " [ -1.59051731 -8.31321121]\n", + " [ -1.58823174 -2.9372117 ]\n", + " [-32.27546357 -31.70166778]\n", + " [-32.27546357 -31.70166778]\n", + " [ -1.58742502 -1.03971187]\n", + " [ -1.58742502 -1.03971187]\n", + " [-30.37715702 -29.80497466]\n", + " [-25.00115751 -29.80726024]\n", + " [-19.625158 -29.80954582]\n", + " [-14.24915848 -29.8118314 ]\n", + " [ -8.87315897 -29.81411698]\n", + " [ -3.49715945 -29.81640256]\n", + " [-30.37487145 -24.42897515]\n", + " [-24.99887193 -24.43126073]\n", + " [-19.62287241 -24.43354631]\n", + " [-14.2468729 -24.43583188]\n", + " [ -8.87087339 -24.43811746]\n", + " [ -3.49487388 -24.44040305]\n", + " [-30.37258587 -19.05297564]\n", + " [-24.99658635 -19.05526122]\n", + " [-19.62058684 -19.05754679]\n", + " [-14.24458732 -19.05983237]\n", + " [ -8.86858781 -19.06211795]\n", + " [ -3.4925883 -19.06440353]\n", + " [-30.37030029 -13.67697612]\n", + " [-24.99430077 -13.6792617 ]\n", + " [-19.61830126 -13.68154728]\n", + " [-14.24230175 -13.68383286]\n", + " [ -8.86630223 -13.68611844]\n", + " [ -3.49030272 -13.68840401]\n", + " [-30.36801471 -8.30097661]\n", + " [-24.9920152 -8.30326219]\n", + " [-19.61601568 -8.30554776]\n", + " [-14.24001617 -8.30783335]\n", + " [ -8.86401666 -8.31011893]\n", + " [ -3.48801714 -8.3124045 ]\n", + " [-30.36572914 -2.9249771 ]\n", + " [-24.98972962 -2.92726267]\n", + " [-19.6137301 -2.92954825]\n", + " [-14.23773059 -2.93183383]\n", + " [ -8.86173108 -2.93411941]\n", + " [ -3.48573156 -2.93640499]]\n", + "DEBUG:root:radec2pix: curVec Shape: (96, 3)\n", + "DEBUG:root:radec2pix: fitpx: [[ 2.13550000e+03 -4.99999951e-01]\n", + " [ 2.13550000e+03 2.91928572e+02]\n", + " [ 2.13550000e+03 5.84357142e+02]\n", + " [ 2.1355DEBUG:root:fitpix2pix: ccdpx: shape: (96, 2)\n", + "0000e+03 8.76785714e+02]\n", + " [ 2.13550000e+03 1.16921429e+03]\n", + " [ 2.13550000e+03 1.46164286e+03]\n", + " [ 2.13550000e+03 1.75407143e+03]\n", + " [ 2.13550000e+03 2.04650000e+03]\n", + " [ 2.13550000e+03 -4.99999951e-01]\n", + " [ 2.42792857e+03 -5.00000176e-01]\n", + " [ 2.72035714e+03 -5.00000069e-01]\n", + " [ 3.01278571e+03 -5.00000257e-01]\n", + " [ 3.30521429e+03 -4.99999992e-01]\n", + " [ 3.59764286e+03 -5.00000241e-01]\n", + " [ 3.89007143e+03 -4.99999730e-01]\n", + " [ 4.18250000e+03 -5.00000010e-01]\n", + " [ 2.13550000e+03 2.04650000e+03]\n", + " [ 2.42792857e+03 2.04650000e+03]\n", + " [ 2.72035714e+03 2.04650000e+03]\n", + " [ 3.01278571e+03 2.04650000e+03]\n", + " [ 3.30521429e+03 2.04650000e+03]\n", + " [ 3.59764286e+03 2.04650000e+03]\n", + " [ 3.89007143e+03 2.04650000e+03]\n", + " [ 4.18250000e+03 2.04650000e+03]\n", + " [ 4.18250000e+03 -5.00000010e-01]\n", + " [ 4.18250000e+03 2.91928572e+02]\n", + " [ 4.18250000e+03 5.84357143e+02]\n", + " [ 4.18250000e+03 8.76785714e+02]\n", + " [ 4.18250000e+03 1.16921429e+03]\n", + " [ 4.18250000e+03 1.46164286e+03]\n", + " [ 4.18250000e+03 DEBUG:root:radec2pix: curVec Shape: (96, 3)\n", + "99658635 -19.05526122]\n", + " [-19.62058684 -19.05754679]\n", + " [-14.24458732 -19.05983237]\n", + " [ -8.86858781 -19.06211795]\n", + " [ -3.4925883 -19.06440353]\n", + " [-30.37030029 -13.67697612]\n", + " [-24.99430077 -13.6792617 ]\n", + " [-19.61830126 -13.68154728]\n", + " [-14.24230175 -13.68383286]\n", + " [ -8.86630223 -13.68611844]\n", + " [ -3.49030272 -13.68840401]\n", + " [-30.36801471 -8.30097661]\n", + " [-24.9920152 -8.30326219]\n", + " [-19.61601568 -8.30554776]\n", + " [-14.24001617 -8.30783335]\n", + " [ -8.86401666 -8.31011893]\n", + " [ -3.48801714 -8.3124045 ]\n", + " [-30.36572914 -2.9249771 ]\n", + " [-24.98972962 -2.92726267]\n", + " [-19.6137301 -2.92954825]\n", + " [-14.23773059 -2.93183383]\n", + " [ -8.86173108 -2.93411941]\n", + " [ -3.48573156 -2.93640499]]\n", + "1.75407143e+03]\n", + " [ 4.18250000e+03 2.04650000e+03]\n", + " [ 2.13650000e+03 1.27000000e+02]\n", + " [ 2.13650000e+03 4.85400000e+02]\n", + " [ 2.13650000e+03 8.43800000e+02]\n", + " [ 2.13650000e+03 1.20220000e+03]\n", + " [ 2.13650000e+03 1.56060000e+03]\n", + " [ 2.13650000e+03 1.91900000e+03]\n", + " [ 2.26300000e+03 4.99999720e-01]\n", + " [ 2.62140000e+03 4.99999983e-01]\n", + " [ 2.97980000e+03 4.99999771e-01]\n", + " [ 3.33820000e+03 4.99999773e-01]\n", + " [ 3.69660000e+03 5.00000075e-01]\n", + " [ 4.05500000e+03 4.99999913e-01]\n", + " [ 2.26300000e+03 2.04550000e+03]\n", + " [ 2.62140000e+03 2.04550000e+03]\n", + " [ 2.97980000e+03 2.04550000e+03]\n", + " [ 3.33820000e+03 2.04550000e+03]\n", + " [ 3.69660000e+03 2.04550000e+03]\n", + " [ 4.05500000e+03 2.04550000e+03]\n", + " [ 4.18150000e+03 1.27000000e+02]\n", + " [ 4.18150000e+03 4.85400000e+02]\n", + " [ 4.18150000e+03 8.43800000e+02]\n", + " [ 4.18150000e+03 1.20220000e+03]\n", + " [ 4.18150000e+03 1.56060000e+03]\n", + " [ 4.18150000e+03 1.91900000e+03]\n", + " [ 2.13650000e+03 4.99999930e-01]\n", + " [ 2.13650000e+03 4.99999930e-01]\n", + " [ 4.18150000e+03 2.04550000e+03]\n", + " [ 4.18150000e+03 2.04550000e+03]\n", + " [ 2.26300000e+03 1.27000000e+02]\n", + " [ 2.62140000e+03 1.27000000e+02]\n", + " [ 2.97980000e+03 1.27000000e+02]\n", + " [ 3.33820000e+03 1.27000000e+02]\n", + " [ 3.69660000e+03 1.27000000e+02]\n", + " [ 4.05500000e+03 1.27000000e+02]\n", + " [ 2.26300000e+03 4.85400000e+02]\n", + " [ 2.62140000e+03 4.85400000e+02]\n", + " [ 2.97980000e+03 4.85400000e+02]\n", + " [ 3.33820000e+03 4.85400000e+02]\n", + " [ 3.69660000e+03 4.85400000e+02]\n", + " [ 4.05500000e+03 4.85400000e+02]\n", + " [ 2.26300000e+03 8.43800000e+02]\n", + " [ 2.62140000e+03 8.43800000e+02]\n", + " [ 2.97980000e+03 8.43800000e+02]\n", + " [ 3.33820000e+03 8.43800000e+02]\n", + " [ 3.69660000e+03 8.43800000e+02]\n", + " [ 4.05500000e+03 8.43800000e+02]\n", + " [ 2.26300000e+03 1.20220000e+03]\n", + " [ 2.62140000e+03 1.20220000e+03]\n", + " [ 2.97980000e+03 1.20220000e+03]\n", + " [ 3.33820000e+03 1.20220000e+03]\n", + " [ 3.69660000e+03 1.20220000e+03]\n", + " [ 4.05500000e+03 1.20220000e+03]\n", + " [ 2.26300000e+03 1.56060000e+03]\n", + " [ 2.62140000e+03 1.56060000e+03]\n", + " [ 2.97980000e+03 1.56060000e+03]\n", + " [ 3.33820000e+03 1.56060000e+03]\n", + " [ 3.69660000e+03 1.56060000e+03]\n", + " [ 4.05500000e+03 1.56060000e+03]\n", + " [ 2.26300000e+03 1.91900000e+03]\n", + " [ 2.62140000e+03 1.91900000e+03]\n", + " [ 2.97980000e+03 1.91900000e+03]\n", + " [ 3.33820000e+03 1.91900000e+03]\n", + " [ 3.69660000e+03 1.91900000e+03]\n", + " [ 4.05500000e+03 1.91900000e+03]]\n", + "97941611]\n", + " [0.1670086 0.01849597 0.98578194]\n", + " [0.13203673 0.01865108 0.99106934]\n", + " [0.09629765 0.01877134 0.99517556]\n", + " [0.05999164 0.01885557 0.99802078]\n", + " [0.02332821 0.01890269 0.99954914]]\n", + "DEBUG:root:fitpix2pix: visCut: True\n", + "DEBUG:root:fitpix2pix: ccdpx: shape: (96, 2)\n", + "DEBUG:root:fitpix2pix: visCut: True\n", + "DEBUG:root:radec2pix: camVec: [[ 0.00114566 0.00115565 0.00116422 0.00117136 0.00117701 0.00118116\n", + " 0.00118376 0.00118481 0.00114566 0.03017404 0.05908469 0.08776498\n", + " 0.11610332 0.14398904 0.17131174 0.19796003 0.00118481 0.03120455\n", + " 0.06110052 0.09075528 0.1200543 0.14888674 0.17714546 0.20472589\n", + " 0.19796003 0.19971011 0.20119978 0.20242973 0.20339908 0.20410611\n", + " 0.20454887 0.20472589 0.00124992 0.00126219 0.00127213 0.00127966\n", + " 0.00128472 0.00128725 0.01380981 0.04932315 0.08454761 0.11927732\n", + " 0.15330846 0.18643745 0.01428113 0.05100494 0.08742589 0.12333185\n", + " 0.15851879 0.19279062 0.19866498 0.20063357 0.20221208 0.20339952\n", + " 0.20419277 0.20458843 0.00124504 0.00124504 0.2046327 0.2046327\n", + " 0.01386393 0.04951642 0.08487904 0.1197456 0.15391263 0.18717755\n", + " 0.01400003 0.0500023 0.08571147 0.12092013 0.15542529 0.1890269\n", + " 0.01411023 0.05039551 0.08638432 0.12186779 0.15664287 0.19051132\n", + " 0.01419378 0.0506935 0.08689379 0.12258434 0.15756175 0.19162897\n", + " 0.0142499 0.05089361 0.08723571 0.12306478 0.15817704 0.19237609\n", + " 0.01427798 0.05099373 0.08740674 0.12330495 0.15848438 0.1927489 ]\n", + " [-0.20812604 -0.1806373 -0.15245726 -0.12369032 -0.09444319 -0.06482624\n", + " -0.03495355 -0.00494229 -0.20812604 -0.20797994 -0.20756351 -0.20687811\n", + " -0.20592557 -0.20470759 -0.20322504 -0.20147731 -0.00494229 -0.00493875\n", + " -0.0049287 -0.00491221 -0.00488939 -0.0048604 -0.00482538 -0.00478446\n", + " -0.20147731 -0.17488831 -0.14761103 -0.11975687 -0.09143612 -0.06275929\n", + " -0.03383788 -0.00478446 -0.19623245 -0.16206424 -0.12696122 -0.09111882\n", + " -0.05474021 -0.01803675 -0.20800294DEBUG:root:optics_fp: xyfp shape: (96, 2)\n", + " -0.20764209 -0.20687664 -0.20570979\n", + " -0.20414458 -0.20218204 -0.00504426 -0.00503536 -0.00501654 -0.004988\n", + " -0.00495001 -0.00490286 -0.1899823 -0.15691665 -0.12292805 -0.08821992\n", + " -0.05299579 -0.01746139 -0.2080333 -0.2080333 -0.00488406 -0.00488406\n", + " -0.19620382 -0.19586344 -0.1951417 -0.19404219 -0.19256861 -0.19072284\n", + " -0.16204052 -0.16175873 -0.16116182 -0.16025398 -0.15904007 -0.15752379\n", + " -0.12694255 -0.12672084 -0.12625153 -0.1255387 -0.12458735 -0.12340188\n", + " -0.09110536 -0.09094551 -0.09060732 -0.09009413 -0.08941017 -0.08855947\n", + " -0.05473209 -0.05463571 -0.05443186 -0.05412272 -0.05371108 -0.05319971\n", + " -0.01803407 -0.01800225 -0.01793496 -0.01783294 -0.01769716 -0.01752858]\n", + " [ 0.97810134 0.9835491 0.98830938 0.99232018 0.99552956 0.99789587\n", + " 0.99938824 0.99998708 0.97810134 0.97766757 0.97643555 0.97442227\n", + " 0.97165564 0.96817455 0.96402898 0.95928031 0.99998708 0.99950082\n", + " 0.99811945 0.99586111 0.99275DEBUG:root:fitpix2pix: visCut: True\n", + "DEBUG:root:optics_fp: xyfp shape: (96, 2)\n", + "529 0.98884231 0.98417285 0.97880765\n", + " 0.95928031 0.96412134 0.96836441 0.97194676 0.97481703 0.97693499\n", + " 0.97827131 0.97880765 0.98055661 0.9867794 0.99190687 0.99583921\n", + " 0.9984998 0.9998365 0.97803071 0.97696059 0.97470701 0.97131684\n", + " 0.96686168 0.96143824 0.9998853 0.99868571 0.9961584 0.99235295\n", + " 0.98734355 0.98122767 0.96147748 0.96701775 0.97159609 0.97511327\n", + " 0.97749515 0.97869233 0.97812095 0.97812095 0.97882665 0.97882665\n", + " 0.98046512 0.97938023 0.97709532 0.97365734 0.96913788 0.96363342\n", + " 0.98668479 0.98556272 0.98319907 0.97964125 0.97496115 0.96925491\n", + " 0.9918097 0.99065742 0.98822988 0.98457518 0.97976579 0.97389805\n", + " 0.9957401 0.99456477 0.9920886 0.98836032 0.98345316 0.97746384\n", + " 0.99839939 0.99720849 0.9946995 0.99092169 0.98594885 0.97987817\n", + " 0.99973542 0.99853671 0.99601124 0.99220858 0.98720287 0.981DEBUG:root:radec2pix: camVec: [[ 0.00114566 0.00115565 0.00116422 0.00117136 0.00117701 0.00118116\n", + " 0.00118376 0.00118481 0.00114566 0.03017404 0.05908469 0.08776498\n", + " 0.11610332 0.14398904 0.17131174 0.19796003 0.00118481 0.03120455\n", + " 0.06110052 0.09075528 0.1200543 0.14888674 0.17714546 0.20472589\n", + " 0.19796003 0.19971011 0.20119978 0.20242973 0.20339908 0.20410611\n", + " 0.20454887 0.20472589 0.00124992 0.00126219 0.00127213 0.00127966\n", + " 0.00128472 0.00128725 0.01380981 0.04932315 0.08454761 0.11927732\n", + " 0.15330846 0.18643745 0.01428113 0.05100494 0.08742589 0.12333185\n", + " 0.15851879 0.19279062 0.19866498 0.20063357 0.20221208 0.20339952\n", + " 0.20419277 0.20458843 0.00124504 0.00124504 0.2046327 0.2046327\n", + " 0.01386393 0.04951642 0.08487904 0.1197456 0.15391263 0.18717755\n", + " 0.01400003 0.0500023 0.08571147 0.12092013 0.15542529 0.1890269\n", + " 0.01411023 0.05039551 0.08638432 0.12186779 0.15664287 0.19051132\n", + " 0.01419378 0.0506935 0.08689379 0.12258434 0.15756175 0.19162897\n", + " 0.0142499 0.05089361 0.08723571 0.12306478 0.15817704 0.19237609\n", + " 0.01427798 0.05099373 0.08740674 0.12330495 0.15848438 0.1927489 ]\n", + " [-0.20812604 -0.1806373 -0.15245726 -0.12369032 -0.09444319 -0.06482624\n", + " -0.03495355 -0.00494229 -0.20812604 -0.20797994 -0.20756351 -0.20687811\n", + " -0.20592557 -0.20470759 -0.20322504 -0.20147731 -0.00494229 -0.00493875\n", + " -0.0049287 -0.00491221 -0.00488939 -0.0048604 -0.00482538 -0.00478446\n", + " -0.20147731 -0.17488831 -0.14761103 -0.11975687 -0.09143612 -0.06275929\n", + " -0.03383788 -0.00478446 -0.19623245 -0.16206424 -0.12696122 -0.09111882\n", + " -0.05474021 -0.01803675 -0.20800294 -0.20764209 -0.20687664 -0.20570979\n", + " -0.20414458 -0.20218204 -0.00504426 -0.00503536 -0.00501654 -0.004988\n", + " -0.00495001 -0.00490286 -0.1899823 -0.15691665 -0.12292805 -0.08821992\n", + " -0.05299579 -0.01746139 -0.2080333 -0.2080333 -0.00488406 -0.00488406\n", + " -0.19620382 -0.19586344 -0.1951417 -0.19404219 -0.19256861 -0.19072284\n", + " -0.16204052 -0.16175873 -0.16116182 -0.16025398 -0.15904007 -0.15752379\n", + " -0.12694255 -0.12672084 -0.12625153 -0.1255387 -0.12458735 -0.12340188\n", + " -0.09110536 -0.09094551 -0.09060732 -0.09009413 -0.08941017 -0.08855947\n", + " -0.05473209 -0.05463571 -0.05443186 -0.05412272 -0.05371108 -0.05319971\n", + " -0.01803407 -0.01800225 -0.01793496 -0.01783294 -0.01769716 -0.01752858]\n", + " [ 0.97810134 0.9835491 0.98830938 0.99232018 0.99552956 0.99789587\n", + " 0.99938824 0.99998708 0.97810134 0.97766757 0.97643555 0.97442227\n", + " 0.97165564 0.96817455 0.96402898 0.95928031 0.99998708 0.99950082\n", + " 0.99811945 0.99586111 0.99275529 0.98884231 0.98417285 0.97880765\n", + " 0.95928031 0.96412134 0.96836441 0.97194676 0.97481703 0.97693499\n", + " 0.97827131 0.97880765 0.98055661 0.9867794 0.99190687 0.99583921\n", + " 0.9984998 0.9998365 0.97803071 0.97696059 0.97470701 0.97131684\n", + " 0.96686168 0.96143824 0.9998853 0.99868571 0.9961584 0.99235295\n", + " 0.9873435DEBUG:root:optics_fp: xyfp shape: (96, 2)\n", + "6005988 -0.12688447 0.99009754]\n", + " [-0.02383341 -0.12716713 0.99159492]\n", + " [-0.20057035 -0.08859098 0.9756655 ]\n", + " [-0.16677881 -0.08948154 0.9819256 ]\n", + " [-0.13202594 -0.09020602 0.98713324]\n", + " [-0.09650734 -0.09076095 0.99118554]\n", + " [-0.06042346 -0.09114176 0.99400311]\n", + " [-0.02398226 -0.09134421 0.99553056]\n", + " [-0.20136156 -0.05333481 0.97806386]\n", + " [-0.16743861 -0.05386844 0.98440972]\n", + " [-0.13255205 -0.05430277 0.98968741]\n", + " [-0.09689601 -0.0546353 0.99379381]\n", + " [-0.0606707 -0.05486289 0.99664895]\n", + " [-0.02408492 -0.05498267 0.99819679]\n", + " [-0.20176105 -0.01776673 0.97927362]\n", + " [-0.16777281 -0.01794001 0.98566244]\n", + " [-0.13281959 -0.01808024 0.99097531]\n", + " [-0.09709479 -0.01818657 0.99510896]\n", + " [-0.06079851 -0.01825788 0.99798306]\n", + " [-0.02414006 -0.01829321 0.9995412 ]]\n", + "5 0.98122767 0.96147748 0.96701775 0.97159609 0.97511327\n", + " 0.97749515 0.97869233 0.97812095 0.97812095 0.97882665 0.97882665\n", + " 0.98046512 0.97938023 0.97709532 0.97365734 0.96913788 0.96363342\n", + " 0.98668479 0.98556272 0.98319907 0.97964125 0.97496115 0.96925491\n", + " 0.9918097 0.99065742 0.98822988 0.98457518 0.97976579 0.97389805\n", + " 0.9957401 0.99456477 0.9920886 0.98836032 0.98345316 0.97746384\n", + " 0.99839939 0.99720849 0.9946995 0.99092169 0.98594885 0.97987817\n", + " 0.99973542 0.99853671 0.99601124 0.99220858 0.98720287 0.98109154]]\n", + "DEBUG:root:make_az_asym: xyp: [[-32.29046994 -31.71666141]\n", + " [-32.28860507 -27.33023323]\n", + " [-32.2867402 -22.94380505]\n", + " [-32.28487534 -18.55737688]\n", + " [-32.28301047 -14.1709487 ]\n", + " [-32.2811456 -9.78452053]\n", + " [-32.27928073 -5.39809235]\n", + " [-32.27741587 -1.01166418]\n", + " [-32.29046994 -31.71666141]\n", + " [-27.90404176 -31.71852627]\n", + " [-23.51761359 -31.72039114]\n", + " [-19.13118541 -31.722256 ]\n", + " [-14.74475724 -31.72412087]\n", + " [-10.35832906 -31.72598574]\n", + " [ -5.97190089 -31.72785061]\n", + " [ -1.58547272 -31.72971547]\n", + " [-32.27741587 -1.01166418]\n", + " [-27.8909877 -1.01352905]\n", + " [-23.50455952 -1.01539391]\n", + " [-19.11813134 -1.01725878]\n", + " [-14.73170317 -1.01912365]\n", + " [-10.345275 -1.02098851]\n", + " [ -5.95884682 -1.02285338]\n", + " [ -1.57241864 -1.02471825]\n", + " [ -1.58547272 -31.72971547]\n", + " [ -1.58360785 -27.3432873 ]\n", + " [ -1.58174298 -22.95685912]\n", + " [ -1.57987811 -18.57043094]\n", + " [ -1.57801325 -14.18400278]\n", + " [ -1.57614838 -9.7975746 ]\n", + " [ -1.57428351 -5.41114642]\n", + " [ -1.57241864 -1.02471825]\n", + " [-32.27465685 -29.80416795]\n", + " [-32.27237127 -24.42816844]\n", + " [-32.2700857 -19.05216893]\n", + " [-32.26780012 -13.67616941]\n", + " [-32.26551454 -8.3001699 ]\n", + " [-32.26322896 -2.92417038]\n", + " [-30.37796373 -31.70247449]\n", + " [-25.00196422 -31.70476008]\n", + " [-19.62596471 -31.70704565]\n", + " [-14.24996519 -31.70933123]\n", + " [ -8.87396568 -31.71161681]\n", + " [ -3.49796617 -31.71390239]\n", + " [-30.36492242 -1.02747727]\n", + " [-24.98892291 -1.02976285]\n", + " [-19.61292339 -1.03204842]\n", + " [-14.23692388 -1.034334 ]\n", + " [ -8.86092437 -1.03661958]\n", + " [ -3.48492485 -1.03890516]\n", + " [ -1.59965962 -29.81720927]\n", + " [ -1.59737405 -24.44120975]\n", + " [ -1.59508847 -19.06521024]\n", + " [ -1.59280289 -13.68921073]\n", + " [ -1.59051731 -8.31321121]\n", + " [ -1.58823174 -2.9372117 ]\n", + " [-32.27546357 -31.70166778]\n", + " [-32.27546357 -31.70166778]\n", + " [ -1.58742502 -1.03971187]\n", + " [ -1.58742502 -1.03971187]\n", + " [-30.37715702 -29.80497466]\n", + " [-25.00115751 -29.80726024]\n", + " [-19.625158 -29.80954582]\n", + " [-14.24915848 -29.8118314 ]\n", + " [ -8.87315897 -29.81411698]\n", + " [ -3.49715945 -29.81640256]\n", + " [-30.37487145 -24.42897515]\n", + " [-24.99887193 -24.43126073]\n", + " [-19.62287241 -24.43354631]\n", + " [-14.2468729 -24.43583188]\n", + " [ -8.87087339 -24.43811746]\n", + " [ -3.49487388 -24.44040305]\n", + " [-30.37258587 -19.05297564]\n", + " [-24.99658635 -19.05526122]\n", + " [-19.62058684 -19.05754679]\n", + " [-14.24458732 -19.05983237]\n", + " [ -8.86858781 -19.06211795]\n", + " [ -3.4925883 -19.06440353]\n", + " [-30.37030029 -13.67697612]\n", + " [-24.99430077 -13.6792617 ]\n", + " [-19.61830126 -13.68154728]\n", + " [-14.24230175 -13.68383286]\n", + " [ -8.86630223 -13.68611844]\n", + " [ -3.49030272 -13.68840401]\n", + " [-30.36801471 -8.30097661]\n", + " [-24.9920152 -8.30326219]\n", + " [-19.61601568 -8.30554776]\n", + " [-14.24001617 -8.30783335]\n", + " [ -8.86401666 -8.DEBUG:root:radec2pix: camVec Shape: (3, 96)\n", + "09154]]\n", + "31011893]\n", + " [ -3.48801714 -8.3124045 ]\n", + " [-30.36572914 -2.9249771 ]\n", + " [-24.98972962 -2.92726267]\n", + " [-19.6137301 -2.92954825]\n", + " [-14.23773059 -2.93183383]\n", + " [ -8.86173108 -2.93411941]\n", + " [ -3.48573156 -2.93640499]]\n", + "DEBUG:root:radec2pix: lng: [224.24259986 219.96765614 215.08336296 209.53697562 203.3101935\n", + " 196.44343401 189.05719479 181.35667342 224.24259986 228.41303103\n", + " 233.20099698 238.67135193 244.85870857 251.7410006 259.21279966\n", + " 267.07328529 181.35667342 181.56790868 181.85777415 182.28018564\n", + " 182.95289983 184.19149998 187.22184671 205.19617552 267.07328529\n", + " 266.59845953 265.94084811 264.97008557 263.3938965 260.39700292\n", + " 252.59010355 205.19617552 222.46269399 216.82093439 210.20829157\n", + " 202.57559903 193.99974981 184.73881406 225.97611965 231.49389572\n", + " 238.00639827 245.59111124 254.20436521 263.6117634 181.46953067\n", + " 181.78262482 182.26677669 183.11467024 184.98120654 192.39209935\n", + " 266.85454344 266.15458823 265.05671864 263.08918181 258.56369308\n", + " 238.630299 224.24223838 224.24223838 205.42453452 205.42453452\n", + " 224.19359423 229.74542917 236.38270094 244.22153031 253.24481767\n", + " 263.2046196 218.49803362 224.01504295 230.89947742 239.44320338\n", + " 249.79385261 261.71030558 211.7381028 216.91949721 223.73668556\n", + " 232.79289096 244.66979293 259.38488067 203.8308227 208.21481457\n", + " 214.34263424 223.2424136 236.45716258 255.28910964 194.83531269\n", + " 197.83404909 202.27750364 209.41669409 222.12219565 246.34438586\n", + " 185.03238692 186.10346579 187.75181788 190.6089913 196.71508989\n", + " 217.15465227]\n", + "DEBUG:root:radec2pix: lng: [44.41301872 40.14838159 35.2726464 29.73151826 23.50476184 16.63082675\n", + " 9.22889701 1.50432057 44.41301872 48.59866885 53.40161123 58.88530587\n", + " 65.08233359 71.96812796 79.43489015 87.28054707 1.50432057 1.74246974\n", + " 2.06969874 2.54744544 3.31042966 4.7219858 8.21053157 29.59292215\n", + " 87.28054707 86.84336495 86.23844627 85.3466032 83.90123984 81.16110163\n", + " 74.05596575 29.59292215 42.63779834 37.00767795 30.40255608 22.76985585\n", + " 14.18292146 4.89797993 46.15318169 51.6896036 58.21907141 65.81559375\n", + " 74.43095985 83.82681521 1.62803312 1.98053876 2.52674891 3.48654093\n", + " 5.61341407 14.22621651 87.07688216 86.43225722 85.42259355 83.61713665\n", + " 79.48054112 61.32403216 44.41274552 44.41274552 29.77842334 29.77842334\n", + " 44.37598019 49.94895822 56.60624337 64.45998446 73.48745603 83.43540409\n", + " 38.69437311 44.24100899 51.15696074 59.72888922 70.09435151 81.99961851\n", + " 31.94440422 37.16546071 44.03052128 53.13850244 65.05527755 79.7674455\n", + " 24.03901245 28.4719233 34.66704703 43.65653948 56.97056188 75.84073328\n", + " 15.03271986 18.08395091 22.60822524 29.88026153 42.80777081 67.27233698\n", + " 5.20360826 6.3196744 8.04022063 11.03037054 17.44810995 39.01761856]\n", + "DEBUG:root:make_az_asym: xyp: [[-32.31281793 -31.43806373]\n", + " [-32.31091541 -27.05163558]\n", + " [-32.30901287 -22.66520742]\n", + " [-32.30711034 -18.27877926]\n", + " [-32.3052078 -13.8923511 ]\n", + " [-32.30330527 -9.50592294]\n", + " [-32.30140274 -5.11949478]\n", + " [-32.2995002 -0.73306663]\n", + " [-32.31281793 -31.43806373]\n", + " [-27.92638978 -31.43996627]\n", + " [-23.53996162 -31.4418688 ]\n", + " [-19.15353346 -31.44377134]\n", + " [-14.7671053 -31.44567387]\n", + " [-10.38067715 -31.44757641]\n", + " [ -5.99424899 -31.44947894]\n", + " [ -1.60782083 -31.45138147]\n", + " [-32.2995002 -0.73306663]\n", + " [-27.91307204 -0.73496916]\n", + " [-23.52664389 -0.73687169]\n", + " [-19.14021573 -0.73877423]\n", + " [-14.75378757 -0.74067676]\n", + " [-10.36735941 -0.74257929]\n", + " [ -5.98093125 -0.74448183]\n", + " [ -1.59450309 -0.74638436]\n", + " [ -1.60782083 -31.45138147]\n", + " [ -1.60591829 -27.06495331]\n", + " [ -1.60401576 -22.67852516]\n", + " [ -1.60211323 -18.292097 ]\n", + " [ -1.60021069 -13.90566884]\n", + " [ -1.59830816 -9.51924068]\n", + " [ -1.59640563 -5.13281252]\n", + " [ -1.59450309 -0.74638436]\n", + " [-32.29698843 -29.52557043]\n", + " [-32.29465669 -24.14957093]\n", + " [-32.29232495 -18.77357144]\n", + " [-32.2899932 -13.39757194]\n", + " [-32.28766146 -8.02157244]\n", + " [-32.28532972 -2.64557295]\n", + " [-30.40031161 -31.42389325]\n", + " [-25.02431212 -31.42622499]\n", + " [-19.64831262 -31.42855673]\n", + " [-14.27231313 -31.43088848]\n", + " [ -8.89631363 -31.43322022]\n", + " [ -3.52031414 -31.43555196]\n", + " [-30.38700689 -0.74889614]\n", + " [-25.01100739 -0.75122788]\n", + " [-19.6350079 -0.75355962]\n", + " [-14.25900841 -0.75589136]\n", + " [ -8.88300892 -0.7582231 ]\n", + " [ -3.50700942 -0.76055484]\n", + " [ -1.62199131 -29.53887515]\n", + " [ -1.61965957 -24.16287565]\n", + " [ -1.61732783 -18.78687616]\n", + " [ -1.61499609 -13.41087666]\n", + " [ -1.61266434 -8.03487716]\n", + " [ -1.6103326 -2.65887768]\n", + " [-32.29781143 -31.42307024]\n", + " [-32.29781143 -31.42307024]\n", + " [ -1.60950959 -0.76137785]\n", + " [ -1.60950959 -0.76137785]\n", + " [-30.3994886 -29.52639343]\n", + " [-25.02348911 -29.52872517]\n", + " [-19.64748962 -29.53105692]\n", + " [-14.27149012 -29.53338866]\n", + " [ -8.89549063 -29.5357204 ]\n", + " [ -3.51949113 -29.53805214]\n", + " [-30.39715686 -24.15039394]\n", + " [-25.02115737 -24.15272568]\n", + " [-19.64515788 -24.15505742]\n", + " [-14.26915838 -24.15738916]\n", + " [ -8.89315889 -24.1597209 ]\n", + " [ -3.51715939 -24.16205264]\n", + " [-30.39482512 -18.77439444]\n", + " [-25.01882563 -18.77672618]\n", + " [-19.64282613 -18.77905793]\n", + " [-14.26682664 -18.78138967]\n", + " [ -8.89082714 -18.78372141]\n", + " [ -3.51482765 -18.78605315]\n", + " [-30.39249338 -13.39839495]\n", + " [-25.01649389 -13.40072669]\n", + " [-19.64049439 -13.40305843]\n", + " [-14.2644949 -13.40539017]\n", + " [ -8.8884954 -13.40772191]\n", + " [ -3.51249591 -13.41005365]\n", + " [-30.39016163 -8.02239545]\n", + " [-25.01416214 -8.02472719]\n", + " [-19.63816265 -8.02705893]\n", + " [-14.26216315 -8.02939068]\n", + " [ -8.88616366 -8.03172242]\n", + " [ -3.51016417 -8.03405416]\n", + " [-30.3878299 -2.64639596]\n", + " [-25.01183041 -2.6487277 ]\n", + " [-19.63583091 -2.65105944]\n", + " [-14.25983141 -2.65339118]\n", + " [ -8.88383191 -2.65572292]\n", + " [ -3.50783243 -2.65805467]]\n", + "DEBUG:root:make_az_asym: xyp: shape: (96, 2)\n", + "DEBUG:root:make_az_asym: xyp: shape: (96, 2)\n", + "DEBUG:root:radec2pix: lat: [73.24603516 74.22569152 75.13651604 75.95087507 76.6389128 77.17037377\n", + " 77.51785702 77.66114392 73.24603516 74.25573072 75.20211387 76.05743745\n", + " 76.79113897 77.37139648 77.76826885 77.95827247 77.66114392 79.25921808\n", + " 80.88995617 82.54802878 84.22809839 85.92431704 87.62836983 89.29981459\n", + " 77.95827247 79.56096311 81.19447792 82.85294756 84.52972557 86.21521853\n", + " 87.88507254 89.29981459 73.68365855 74.84176377 75.86929863 76.71215801\n", + " 77.3149747 77.63003049 73.695993 74.89461964 75.97090871 76.86971486\n", + " 77.53277126 77.90734766 78.35340648 80.33462383 82.35957542 84.41843101\n", + " 86.50018709 88.58327287 78.6525924 80.63823128 82.66432935 84.71895211\n", + " 86.78327785 88.77209382 73.25300675 73.25300675 89.29197852 89.29197852\n", + " 74.14551493 75.39944683 76.53201019 77.48405712 78.19096994 78.59236983\n", + " 75.35843946 76.77706596 78.08438262 79.20977154 80.06643025 80.56299799\n", + " 76.44078432 78.03102057 79.5341606 80.87167145 81.93009942 82.56616105\n", + " 77.33417557 79.08997119 80.79891427 82.38701631 83.72204901 84.58091077\n", + " 77.9769458 79.86951112 81.76439499 83.61332437 85.3080928 86.55866797\n", + " 78.31436404 80.28605679 82.29662619 84.33088528 86.36037199 88.26434016]\n", + "DEBUG:root:radec2pix: lat: [73.25344023 74.2369792 75.15226824 75.97162966 76.66508667 77.2021609\n", + " 77.55512574 77.70337791 73.25344023 74.25967575 75.20183236 76.05214643\n", + " 76.78010612 77.3540472 77.74432055 77.92785326 77.70337791 79.30226543\n", + " 80.93361724 82.59207196 84.27220803 85.96793867 87.66996871 89.32519361\n", + " 77.92785326 79.53024676 81.16372478 82.82252521 84.50025464 86.18804733\n", + " 87.86471391 89.32519361 73.6926739 74.85593178 75.88945702 76.73895525\n", + " 77.34864846 77.67018969 73.7019933 74.89586821 75.96623187 76.85800237\n", + " 77.51320661 77.87970489 78.39600189 80.37807975 82.40356131 84.46248138\n", + " 86.54333738 88.62073148 78.62203863 80.60748554 82.6338837 84.6897052\n", + " 86.75764582 88.76495286 73.26041353 73.26041353 89.31716551 89.31716551\n", + " 74.15313309 75.40228414 76.52877477 77.47347648 78.17205407 78.56478282\n", + " 75.37129959 76.78525096 78.08623827 79.20344298 80.05020166 80.53598707\n", + " 76.45984424 78.04591405 79.54291278 80.87169379 81.91843153 82.54064538\n", + " 77.36022478 79.11290918 80.81670049 82.39645142 83.71831262 84.55871556\n", + " 78.01034 79.90138935 81.79317677 83.63609258 85.31869407 86.54472849\n", + " 78.35474014 80.32671962 82.33692434 84.36964547 86.39457329 88.27941972]\n", + "DEBUG:root:cartToSphere: vec: [[ 0.00114566 -0.20812604 0.97810134]\n", + " [ 0.00115565 -0.1806373 0.9835491 ]\n", + " [ 0.00116422 -0.15245726 0.98830938]\n", + " [ 0.00117136 -0.12369032 0.99232018]\n", + " [ 0.00117701 -0.09444319 0.99552956]\n", + " [ 0.00118116 -0.06482624 0.99789587]\n", + " [ 0.00118376 -0.03495355 0.99938824]\n", + " [ 0.00118481 -0.00494229 0.99998708]\n", + " [ 0.00114566 -0.20812604 0.97810134]\n", + " [ 0.03017404 -0.20797994 0.97766757]\n", + " [ 0.05908469 -0.20756351 0.97643555]\n", + " [ 0.08776498 -0.20687811 0.97442227]\n", + " [ 0.11610332 -0.20592557 0.97165564]\n", + " [ 0.14398904 -0.20470759 0.96817455]\n", + " [ 0.17131174 -0.20322504 0.96402898]\n", + " [ 0.19796003 -0.20147731 0.95928031]\n", + " [ 0.00118481 -0.00494229 0.99998708]\n", + " [ 0.03120455 -0.00493875 0.99950082]\n", + " [ 0.06110052 -0.0049287 0.99811945]\n", + " [ 0.09075528 -0.00491221 0.99586111]\n", + " [ 0.1200543 -0.00488939 0.99275529]\n", + " [ 0.14888674 -0.0048604 0.98884231]\n", + " [ 0.17714546 -0.00482538 0.98417285]\n", + " [ 0.20472589 -0.00478446 0.97880765]\n", + " [ 0.19796003 -0.20147731 0.95928031]\n", + " [ 0.19971011 -0.17488831 0.96412134]\n", + " [ 0.20119978 -0.14761103 0.96836441]\n", + " [ 0.20242973 -0.11975687 0.97194676]\n", + " [ 0.20339908 -0.09143612 0.97481703]\n", + " [ 0.20410611 -0.06275929 0.97693499]\n", + " [ 0.20454887 -0.03383788 0.97827131]\n", + " [ 0.20472589 -0.00478446 0.97880765]\n", + " [ 0.00124992 -0.19623245 0.98055661]\n", + " [ 0.00126219 -0.16206424 0.9867794 ]\n", + " [ 0.00127213 -0.12696122 0.99190687]\n", + " [ 0.00127966 -0.09111882 0.99583921]\n", + " [ 0.00128472 -0.05474021 0.9984998 ]\n", + " [ 0.00128725 -0.01803675 0.9998365 ]\n", + " [ 0.01380981 -0.20800294 0.97803071]\n", + " [ 0.04932315 -0.20764209 0.97696059]\n", + " [ 0.08454761 -0.20687664 0.97470701]\n", + " [ 0.11927732 -0.20570979 0.97131684]\n", + " [ 0.15330846 -0.20414458 0.96686168]\n", + " [ 0.18643745 -0.20218204 0.96143824]\n", + " [ 0.01428113 -0.00504426 0.9998853 ]\n", + " [ 0.05100494 -0.00503536 0.99868571]\n", + " [ 0.08742589 -0.00501654 0.9961584 ]\n", + " [ 0.12333185 -0.004988 0.99235295]\n", + " [ 0.15851879 -0.00495001 0.98734355]\n", + " [ 0.19279062 -0.00490286 0.98122767]\n", + " [ 0.19866498 -0.1899823 0.96147748]\n", + " [ 0.20063357 -0.15691665 0.96701775]\n", + " [ 0.20221208 -0.12292805 0.97159609]\n", + " [ 0.20339952 -0.08821992 0.97511327]\n", + " [ 0.20419277 -0.05299579 0.97749515]\n", + " [ 0.20458843 -0.01746139 0.97869233]\n", + " [ 0.00124504 -0.2080333 0.97812095]\n", + " [ 0.00124504 -0.2080333 0.97812095]\n", + " [ 0.2046327 -0.00488406 0.97882665]\n", + " [ 0.2046327 -0.00488406 0.97882665]\n", + " [ 0.01386393 -0.19620382 0.98046512]\n", + " [ 0.04951642 -0.19586344 0.97938023]\n", + " [ 0.08487904 -0.1951417 0.97709532]\n", + " [ 0.1197456 -0.19404219 0.97365734]\n", + " [ 0.15391263 -0.19256861 0.96913788]\n", + " [ 0.18717755 -0.19072284 0.96363342]\n", + " [ 0.01400003 -0.16204052 0.98668479]\n", + " [ 0.0500023 -0.16175873 0.98556272]\n", + " [ 0.08571147 -0.16116182 0.98319907]\n", + " [ 0.12092013 -0.16025398 0.97964125]\n", + " [ 0.15542529 -0.15904007 0.97496115]\n", + " [ 0.1890269 -0.15752379 0.96925491]\n", + " [ 0.01411023 -0.12694255 0.9918097 ]\n", + " [ 0.05039551 -0.12672084 0.99065742]\n", + " [ 0.08638432 -0.12625153 0.98822988]\n", + " [ 0.12186779 -0.1255387 0.98457518]\n", + " [ 0.15664287 -0.12458735 0.97976579]\n", + " [ 0.19051132 -0.12340188 0.97389805]\n", + " [ 0.01419378 -0.09110536 0.9957401 ]\n", + " [ 0.0506935 -0.09094551 0.99456477]\n", + " [ 0.08689379 -0.09060732 0.9920886 ]\n", + " [ 0.12258434 -0.09009413 0.98836032]\n", + " [ 0.15756175 -0.08941017 0.98345316]\n", + " [ 0.19162897 -0.08855947 0.97746384]\n", + " [ 0.0142499 -0.05473209 0.99839939]\n", + " [ 0.05089361 -0.05463571 0.99720849]\n", + " [ 0.08723571 -0.05443186 0.9946995 ]\n", + " [ 0.12306478 -0.05412272 0.99092169]\n", + " [ 0.15817704 -0.05371108 0.98594885]\n", + " [ 0.19237609 -0.05319971 0.97987817]\n", + " [ 0.01427798 -0.01803407 0.99973542]\n", + " [ 0.05099373 -0.01800225 0.99853671]\n", + " [ 0.08740674 -0.01793496 0.99601124]\n", + " [ 0.12330495 -0.01783294 0.99220858]\n", + " [ 0.15848438 -0.01769716 0.98720287]\n", + " [ 0.1927489 -0.01752858 0.98109154]]\n", + "DEBUG:root:radec2pix: xyfp: [[-32.31281793 -31.43806373]\n", + " [-32.31091541 -27.05163558]\n", + " [-32.30901287 -22.66520742]\n", + " [-32.30711034 -18.27877926]\n", + " [-32.3052078 -13.8923511 ]\n", + " [-32.30330527 -9.50592294]\n", + " [-32.30140274 -5.11949478]\n", + " [-32.2995002 -0.73306663]\n", + " [-32.31281793 -31.43806373]\n", + " [-27.92638978 -31.43996627]\n", + " [-23.53996162 -31.4418688 ]\n", + " [-19.15353346 -31.44377134]\n", + " [-14.7671053 -31.44567387]\n", + " [-10.38067715 -31.44757641]\n", + " [ -5.99424899 -31.44947894]\n", + " [ -1.60782083 -31.45138147]\n", + " [-32.2995002 -0.73306663]\n", + " [-27.91307204 -0.73496916]\n", + " [-23.52664389 -0.73687169]\n", + " [-19.14021573 -0.73877423]\n", + " [-14.75378757 -0.74067676]\n", + " [-10.36735941 -0.74257929]\n", + " [ -5.98093125 -0.74448183]\n", + " [ -1.59450309 -0.74638436]\n", + " [ -1.60782083 -31.45138147]\n", + " [ -1.60591829 -27.06495331]\n", + " [ -1.60401576 -22.67852516]\n", + " [ -1.60211323 -18.292097 ]\n", + " [ -1.60021069 -13.90566884]\n", + " [ -1.59830816 -9.51924068]\n", + " [ -1.59640563 -5.13281252]\n", + " [ -1.59450309 -0.74638436]\n", + " [-32.29698843 -29.52557043]\n", + " [-32.29465669 -24.14957093]\n", + " [-32.29232495 -18.77357144]\n", + " [-32.2899932 -13.39757194]\n", + " [-32.28766146 -8.02157244]\n", + " [-32.28532972 -2.64557295]\n", + " [-30.40031161 -31.42389325]\n", + " [-25.02431212 -31.42622499]\n", + " [-19.64831262 -31.42855673]\n", + " [-14.27231313 -31.43088848]\n", + " [ -8.89631363 -31.43322022]\n", + " [ -3.52031414 -31.43555196]\n", + " [-30.38700689 -0.74889614]\n", + " [-25.01100739 -0.75122788]\n", + " [-19.6350079 -0.75355962]\n", + " [-14.25900841 -0.75589136]\n", + " [ -8.88300892 -0.7582231 ]\n", + " [ -3.50700942 -0.76055484]\n", + " [ -1.62199131 -29.53887515]\n", + " [ -1.61965957 -24.16287565]\n", + " [ -1.61732783 -18.78687616]\n", + " [ -1.61499609 -13.41087666]\n", + " [ -1.61266434 -8.03487716]\n", + " [ -1.6103326 -2.65887768]\n", + " [-32.29781143 -31.42307024]\n", + " [-32.29781143 -31.42307024]\n", + " [ -1.60950959 -0.76137785]\n", + " [ -1.60950959 -0.76137785]\n", + " [-30.3994886 -29.52639343]\n", + " [-25.02348911 -29.52872517]\n", + " [-19.64748962 -29.53105692]\n", + " [-14.27149012 -29.53338866]\n", + " [ -8.89549063 -29.5357204 ]\n", + " [ -3.51949113 -29.53805214]\n", + " [-30.39715686 -24.15039394]\n", + " [-25.02115737 -24.15272568]\n", + " [-19.64515788 -24.15505742]\n", + " [-14.26915838 -24.15738916]\n", + " [ -8.89315889 -24.1597209 ]\n", + " [ -3.51715939 -24.16205264]\n", + " [-30.39482512 -18.77439444]\n", + " [-25.01882563 -18.77672618]\n", + " [-19.64282613 -18.77905793]\n", + " [-14.26682664 -18.78138967]\n", + " [ -8.89082714 -18.78372141]\n", + " [ -3.51482765 -18.78605315]\n", + " [-30.39249338 -13.39839495]\n", + " [-25.01649389 -13.40072669]\n", + " [-19.64049439 -13.40305843]\n", + " [-14.2644949 -13.40539017]\n", + " [ -8.8884954 -13.40772191]\n", + " [ -3.51249591 -13.41005365]\n", + " [-30.39016163 -8.02239545]\n", + " [-25.01416214 -8.02472719]\n", + " [-19.63816265 -8.02705893]\n", + " [-14.26216315 -8.02939068]\n", + " [ -8.88616366 -8.03172242]\n", + " [ -3.51016417 -8.03405416]\n", + " [-30.3878299 -2.64639596]\n", + " [-25.01183041 -2.6487277 ]\n", + " [-19.63583091 -2.65105944]\n", + " [-14.25983141 -2.65339118]\n", + " [ -8.88383191 -2.65572292]\n", + " [ -3.50783243 -2.65805467]]\n", + "DEBUG:root:radec2pix: xyfp Shape: (96, 2)\n", + "DEBUG:root:radec2pix: lng: [270.31539085 270.36655189 270.43752447 270.542579 270.71402077\n", + " 271.04383538 271.93968007 283.48101478 270.31539085 278.25496108\n", + " 285.88944585 292.98836581 299.41482725 305.12212741 310.12974078\n", + " 314.49549071 283.48101478 351.00638008 355.38819591 356.90183998\n", + " 357.66783206 358.13024629 358.43966874 358.66123705 314.49549071\n", + " 318.7910165 323.73421549 329.3915583 335.79415496 342.90819266\n", + " 350.6068072 358.66123705 270.36494598 270.44622312 270.57407396\n", + " 270.80460183 271.34445266 274.08218667 273.79842993 283.36234739\n", + " 292.22915231 300.10657084 306.9058095 312.67997848 340.54617186\n", + " 354.36185807 356.71594406 357.68400903 358.21142556 358.54322592\n", + " 316.27981968 321.97083668 328.70389405 336.55230838 345.45057848\n", + " 355.12169333 270.34290102 270.34290102 358.63275532 358.63275532\n", + " 274.04185073 284.1877247 293.50716352 301.67919787 308.63398936\n", + " 314.46249394 274.93799638 287.17724528 298.00560006 307.03649051\n", + " 314.34141513 320.19418356 276.34264386 291.68718176 304.38086955\n", + " 314.14993264 321.50269119 327.06723776 278.85521862 299.13552131\n", + " 313.8014816 323.6857401 330.42677291 335.19643967 284.59338686\n", + " 312.96912569 328.03736148 336.26056332 341.24440919 344.5417427\n", + " 308.36945368 340.55550723 348.40444495 351.77067409 353.62846105\n", + " 354.80381648]\n", + "DEBUG:root:radec2pix: lat: [77.98725933 79.59290201 81.23038669 82.89455027 84.58030503 86.2825061\n", + " 87.99575217 89.70880341 77.98725933 77.86842442 77.53699463 77.01330297\n", + " 76.32579246 75.50615888 74.58567435 73.59317035 89.70880341 88.18955545\n", + " 86.48562338 84.78529769 83.09901991 81.43298752 79.79264001 78.18327445\n", + " 73.59317035 74.60559591 75.5496878 76.3965297 77.11433871 77.67029216\n", + " 78.03413945 78.18327445 78.68303826 80.67298244 82.70560399 84.77150761\n", + " 86.86118368 88.96388538 77.96782959 77.67716345 77.0861016 76.24391961\n", + " 75.20859077 74.03673952 89.13217661 87.06213831 84.97619114 82.90974635\n", + " 80.87458441 78.88067366 74.04491662 75.24365824 76.31136856 77.19067025\n", + " 77.8215059 78.15105181 77.99265855 77.99265855 78.18859038 78.18859038\n", + " 78.65635764 78.34456159 77.7133866 76.81969543 75.7283623 74.50063549\n", + " 80.63959245 80.25225497 79.48245907 78.41882236 77.15141692 75.75558792\n", + " 82.66188886 82.16191851 81.200562 79.92354945 78.45441908 76.88031771\n", + " 84.70956295 84.0235478 82.78807615 81.24955295 79.56251519 77.81300601\n", + " 86.75780924 85.71788826 84.09815339 82.27374035 80.38380312 78.4866344\n", + " 88.68197076 86.90004071 84.8808155 82.84304634 80.82390053 78.84030268]\n", + "DEBUG:root:mm_to_pix: fitpx: [[0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.DEBUG:root:radec2pix: curVec: [[-0.86126015 0.33522788 0.38190734]\n", + " [-0.87328548 0.31242158 0.37385188]\n", + " [-0.88493652 0.28897521 0.3652132 ]\n", + " [-0.89612312 0.26496977 0.3560258 ]\n", + " [-0.90676554 0.24048935 0.34632517]\n", + " [-0.91679439 0.21562143 0.33614794]\n", + " [-0.92615055 0.19045702 0.32553231]\n", + " [-0.93478513 0.16509055 0.31451847]\n", + " [-0.86126015 0.33522788 0.38190734]\n", + " [-0.86568072 0.34881245 0.35906373]\n", + " [-0.86962027 0.36230528 0.33540344]\n", + " [-0.8730167 0.37564499 0.31101878]\n", + " [-0.87581852 0.38877253 0.28600323]\n", + " [-0.87798485 0.40163097 0.26045185]\n", + " [-0.87948536 0.41416567 0.23446174]\n", + " [-0.88030008 0.42632463 0.20813233]\n", + " [-0.93478513 0.16509055 0.31451847]\n", + " [-0.94032677 0.17764972 0.29021741]\n", + " [-0.9452273 0.19032085 0.26518545]\n", + " [-0.9494248 0.20304521 0.23951033]\n", + " [-0.95286711 0.21576619 0.21328204]\n", + " [-0.95551185 0.22842855 0.18659448]\n", + " [-0.95732673 0.2409781 0.15954649]\n", + " [-0.95829006 0.25336191 0.13224182]\n", + " [-0.88030008 0.42632463 0.20813DEBUG:root:radec2pix: camVec Shape: (3, 96)\n", + "233]\n", + " [-0.89324159 0.40352991 0.19819956]\n", + " [-0.90571532 0.3799622 0.1879055 ]\n", + " [-0.91763273 0.35569775 0.17728306]\n", + " [-0.9289146 0.33081674 0.16636691]\n", + " [-0.93949064 0.30540481 0.15519417]\n", + " [-0.94929963 0.27955388 0.14380485]\n", + " [-0.95829006 0.25336191 0.13224182]\n", + " [-0.8665593 0.32541442 0.37839191]\n", + " [-0.88105876 0.29702207 0.36812138]\n", + " [-0.8949052 0.26774833 0.35700913]\n", + " [-0.90794747 0.23774674 0.3451201 ]\n", + " [-0.92005783 0.20717834 0.33252177]\n", + " [-0.93113168 0.17621213 0.31928526]\n", + " [-0.8632843 0.34108113 0.37202672]\n", + " [-0.86838802 0.35767631 0.34346747]\n", + " [-0.8727062 0.37407259 0.31377314]\n", + " [-0.87613963 0.39016026 0.28311537]\n", + " [-0.87861306 0.40583457 0.25166921]\n", + " [-0.88007494 0.420996 0.21961436]\n", + " [-0.93724738 0.17063608 0.30405703]\n", + " [-0.94361612 0.18611233 0.27377147]\n", + " [-0.94895932 0.20169794 0.24247505]\n", + " [-0.95317694 0.21728788 0.21033236]\n", + " [-0.95619099 0.2327804 0.17751642]\n", + " [-0.9579464 0.24807623 0.14421126]\n", + " [-0.88599244 0.41644484 0.20393896]\n", + " [-0.90155062 0.38797794 0.19151918]\n", + " [-0.91631714 0.35842548 0.17858913]\n", + " [-0.93014234 0.32793334 0.16521183]\n", + " [-0.94289683 0.2966593 0.15145567]\n", + " [-0.9544719 0.26477513 0.1373955 ]\n", + " [-0.86131766 0.33519761 0.3818042 ]\n", + " [-0.86131766 0.33519761 0.3818042 ]\n", + " [-0.95825893 0.25340994 0.13237529]\n", + " [-0.95825893 0.25340994 0.13237529]\n", + " [-0.86857239 0.33128287 0.36855618]\n", + " [-0.8737925 0.3478471 0.33983681]\n", + " [-0.87820449 0.36422989 0.30998946]\n", + " [-0.88170921 0.38032154 0.27918523]\n", + " [-0.88423153 0.39601701 0.24759873]\n", + " [-0.88571993 0.41121634 0.21540965]\n", + " [-0.88319249 0.30283809 0.35813421]\n", + " [-0.88871473 0.319288 0.32900047]\n", + " [-0.89337032 0.33560748 0.29875926]\n", + " [-0.89706045 0.35168684 0.26757973]\n", + " [-0.89971011 0.36742041 0.23563523]\n", + " [-0.90126765 0.38270711 0.20310563]\n", + " [-0.89714333 0.27349728 0.34689059]\n", + " [-0.90292723 0.28979258 0.31739988]\n", + " [-0.90779436 0.30601027 0.28682245]\n", + " DEBUG:root:make_az_asym: xyp: [[-32.29046994 -31.71666141]\n", + " [-32.28860507 -27.33023323]\n", + " [-32.2867402 -22.94380505]\n", + " [-32.28487534 -18.55737688]\n", + " [-32.28301047 -14.1709487 ]\n", + " [-32.2811456 -9.78452053]\n", + " [-32.27928073 -5.39809235]\n", + " [-32.27741587 -1.01166418]\n", + " [-32.29046994 -31.71666141]\n", + " [-27.90404176 -31.71852627]\n", + " [-23.51761359 -31.72039114]\n", + " [-19.13118541 -31.722256 ]\n", + " [-14.74475724 -31.72412087]\n", + " [-10.35832906 -31.72598574]\n", + " [ -5.97190089 -31.72785061]\n", + " [ -1.58547272 -31.72971547]\n", + " [-32.27741587 -1.01166418]\n", + " [-27.8909877 -1.01352905]\n", + " [-23.50455952 -1.01539391]\n", + " [-19.11813134 -1.01725878]\n", + " [-14.73170317 -1.01912365]\n", + " [-10.345275 -1.02098851]\n", + " [ -5.95884682 -1.02285338]\n", + " [ -1.57241864 -1.02471825]\n", + " [ -1.58547272 -31.72971547]\n", + " [ -1.58360785 -27.3432873 ]\n", + " [ -1.58174298 -22.95685912]\n", + " [ -1.57987811 -18.57043094]\n", + " [ -1.57801325 -14.18400278]\n", + " [ -1.57614838 -9.7975746 ]\n", + " [ -1.57428351 -5.41114642]\n", + " [ -1.57241864 -1.02471825]\n", + " [-32.27465685 -29.80416795]\n", + " [-32.2723712DEBUG:root:optics_fp: rtanth: [45.08354623 42.13009767 39.44420909 37.08406184 35.11539785 33.60708557\n", + " 32.6230401 32.21134587 45.08354623 42.06280558 39.30031295 36.85418691\n", + " 34.79122159 33.18295674 32.09781375 31.58974814 32.21134587 27.8266828\n", + " 23.4426803 19.05979422 14.67902457 10.30307141 5.94258442 1.71954938\n", + " 31.58974814 27.2090275 22.83049885 18.45572241 14.0881941 9.73767156\n", + " 5.44507054 1.71954938 43.75525849 40.30775232 37.31902868 34.90712904\n", + " 33.19801449 32.30342747 43.72724359 40.19104921 37.09948507 34.57203928\n", + " 32.73962065 31.72289982 30.29997699 24.92663654 19.55475813 14.18600274\n", + " 8.82607125 3.51555769 29.68028893 24.31279095 18.95011366 13.59796176\n", + " 8.27677911 3.14775039 45.06233412 45.06233412 1.74001001 1.74001001\n", + " 42.37901039 38.71988024 35.50042932 32.85018402 30.91587699 29.8370753\n", + " 38.80944181 34.77673616 31.15241137 28.09496116 25.80666004 24.50394488\n", + " 35.69548681 31.26365913 27.1747629 23.607665 20.83215559 19.19474717\n", + " 33.16572831 28.34103278 23.75427319 19.57344126 16.11758242 13.93686031\n", + " 31.36185649 26.20714877 21.16284486 16.33156793 11.97401233 8.82250437\n", + " 30.41330799 25.06427551 19.72990783 14.4264816 9.20761812 4.38632462]\n", + "]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]]\n", + "DEBUG:root:optics_fp: rtanth: [45.10607628 42.16357777 39.4899731 37.14337318 35.189258 33.69598042\n", + " 32.72668371 32.32853333 45.10607628 42.0744994 39.2994961 36.83909335\n", + " 34.76015989 33.13457624 32.03143895 31.50567459 32.32853333 27.94350461\n", + " 23.55899708 19.17536829 14.79339939 10.41518568 6.04888681 1.78423138\n", + " 31.50567459 27.12594155 22.74878876 18.37606012 14.01189826 9.66791142\n", + " 5.39307341 1.78423138 43.78236587 40.34917919 37.37672691 34.98265169\n", + " 33.29196413 32.41491299 43.7452802 40.19469624 37.08612172 34.53910818\n", + " 32.68520027 31.64644357 30.41697218 25.04308812 19.67036046 14.30009268\n", + " 8.93672046 3.6111005 29.59667216 24.23063563 18.87027174 13.52232821\n", + " 8.21110934 3.12954069 45.08486499 45.08486499 DEBUG:root:radec2pix: xyfp: [[-32.29046994 -31.71666141]\n", + " [-32.28860507 -27.33023323]\n", + " [-32.2867402 -22.94380505]\n", + " [-32.28487534 -18.55737688]\n", + " [-32.28301047 -14.1709487 ]\n", + " [-32.2811456 -9.78452053]\n", + " [-32.27928073 -5.39809235]\n", + " [-32.27741587 -1.01166418]\n", + " [-32.29046994 -31.71666141]\n", + " [-27.90404176 -31.71852627]\n", + " [-23.51761359 -31.72039114]\n", + " [-19.13118541 -31.722256 ]\n", + " [-14.74475724 -31.72412087]\n", + " [-10.35832906 -31.72598574]\n", + " [ -5.97190089 -31.72785061]\n", + " [ -1.58547272 -31.72971547]\n", + " [-32.27741587 -1.01166418]\n", + " [-27.8909877 -1.01352905]\n", + " [-23.50455952 -1.01539391]\n", + " [-19.11813134 -1.01725878]\n", + " [-14.73170317 -1.01912365]\n", + " [-10.345275 -1.02098851]\n", + " [ -5.95884682 -1.02285338]\n", + " [ -1.57241864 -1.02471825]\n", + " [ -1.58547272 -31.72971547]\n", + " [ -1.58360785 -27.3432873 ]\n", + " [ -1.58174298 -22.95685912]\n", + " [ -1.57987811 -18.57043094]\n", + " [ -1.57801325 -14.18400278]\n", + " [ -1.57614838 -9.7975746 ]\n", + " [ -1.57428351 -5.41114642]\n", + " [ -1.57241864 -1.02471825]\n", + " [-32.27465685 -29.80416795]\n", + " [-32.27237127 DEBUG:root:radec2pix: curVec: [[-0.93247382 0.27603614 0.23301634]\n", + " [-0.92861817 0.26661954 0.25803549]\n", + " [-0.9240347 0.25667702 0.28333157]\n", + " [-0.91869992 0.24624619 0.30879324]\n", + " [-0.91259991 0.23536903 0.33430947]\n", + " [-0.90573088 0.22408963 0.35977132]\n", + " [-0.8980995 0.21245315 0.38507265]\n", + " [-0.88972294 0.2005056 0.41011045]\n", + " [-0.93247382 0.27603614 0.23301634]\n", + " [-0.94151937 0.25282035 0.22276252]\n", + " [-0.95003763 0.22885894 0.21225478]\n", + " [-0.95795372 0.20424286 0.20151805]\n", + " [-0.96520142 0.17906858 0.1905798 ]\n", + " [-0.97172418 0.1534352 0.17947079]\n", + " [-0.97747552 0.12744326 0.16822551]\n", + " [-0.9824193 0.10119437 0.15688219]\n", + " [-0.88972294 0.2005056 0.41011045]\n", + " [-0.89896449 0.17570923 0.40123448]\n", + " [-0.90767325 0.15026004 0.39185609]\n", + " [-0.91577308 0.12425463 0.38199536]\n", + " [-0.92319796 0.09778893 0.37167573]\n", + " [-0.92989133 0.07096037 0.36092485]\n", + " [-0.93580582 0.04387005 0.34977548]\n", + " [-0.94090371 0.01662353 0.33826597]\n", + " [-0.9824193 0.10119437 0.156881.80420296 1.80420296\n", + " 42.4016515 38.72807918 35.4912797 32.82073285 30.86377856 29.76151712\n", + " 38.84663114 34.79978185 31.15752935 28.07777067 25.76302637 24.43171303\n", + " 35.74946438 31.30476433 27.19843907 23.60772454 20.80136966 19.12778226\n", + " 33.23838757 28.40342363 23.80170775 19.59823621 16.10786095 13.87941853\n", + " 31.45408342 26.29303007 21.23888529 16.39084557 12.00133913 8.78676362\n", + " 30.52427023 25.1733021 19.8358755 14.52692422 9.29536709 4.42480773]\n", + "DEBUG:root:mm_to_pix: fitpx.shape: (96, 2)\n", + "-24.42816844]\n", + " [-32.2700857 -19.05216893]\n", + " [-32.26780012 -13.67616941]\n", + " [-32.26551454 -8.3001699 ]\n", + " [-32.26322896 -2.92417038]\n", + " [-30.37796373 -31.70247449]\n", + " [-25.00196422 -31.70476008]\n", + " [-19.62596471 -31.70704565]\n", + " [-14.24996519 -31.70933123]\n", + " [ -8.87396568 -31.71161681]\n", + " [ -3.49796617 -31.71390239]\n", + " [-30.36492242 -1.02747727]\n", + " [-24.98892291 -1.02976285]\n", + " [-19.61292339 -1.03204842]\n", + " [-14.23692388 -1.034334 ]\n", + " [ -8.86092437 -1.03661958]\n", + " [ -3.48492485 -1.03890516]\n", + " [ -1.59965962 -29.81720927]\n", + " [ -1.59737405 -24.44120975]\n", + " [ -1.59508847 -19.06521024]\n", + " [ -1.59280289 -13.68921073]\n", + " [ -1.59051731 -8.31321121]\n", + " [ -1.58823174 -2.9372117 ]\n", + " [-32.27546357 -31.70166778]\n", + " [-32.27546357 -31.70166778]\n", + " [ -1.58742502 -1.03971187]\n", + " [ -1.58742502 -1.03971187]\n", + " [-30.37715702 -29.80497466]\n", + " [-25.00115751 -29.80726024]\n", + " [-19.625158 -29.80954582]\n", + " [-14.24915848 -29.8118314 ]\n", + " [ -8.87315897 -29.81411698]\n", + " [ -3.49715945 -29.81640256]\n", + " [-30.37487145 -24.42897515]\n", + " [-24.99887193 -24.43126073]\n", + " [-19.62287241 -24.43354631]\n", + " [-14.2468729 -24.43583188]\n", + " [ -8.87087339 -24.43811746]\n", + " [ -3.49487388 -24.44040305]\n", + " [-30.37258587 -19.05297564]\n", + " [-24.99658635 -19.05526122]\n", + " [-19.62058684 -19.05754679]\n", + " [-14.24458732 -19.05983237]\n", + " [ -8.86858781 -19.06211795]\n", + " [ -3.4925883 -19.06440353]\n", + " [-30.37030029 -13.67697612]\n", + " [-24.99430077 -13.6792617 ]\n", + " [-19.61830126 -13.68154728]\n", + " [-14.24230175 -13.68383286]\n", + " [ -8.86630223 -13.68611844]\n", + " [ -3.49030272 -13.68840401]\n", + " [-30.36801471 -8.30097661]\n", + " [DEBUG:root:optics_fp: rtanth: [31.42709713 27.04074579 22.65442436 18.26815439 13.88198464 9.49605401\n", + " 5.11097808 0.742067 31.42709713 31.75564253 32.6750783 34.13769417\n", + " 36.07748738 38.42225317 41.10274314 44.05772304 0.742067 4.61617395\n", + " 8.97490789 13.35179361 17.73339574 22.11691136 26.50139096 30.88642402\n", + " 44.05772304 41.04415255 38.29678143 35.87681689 33.85454213 32.30472979\n", + " 31.29764563 30.88642402 29.51471971 24.13885305 18.76306281 13.38744101\n", + " 8.01232674 2.64082086 31.48077532 32.28565953 33.93362876 36.31007107\n", + " 39.28300031 42.72809051 2.2117621 7.49776555 12.85860945 18.22838275\n", + " 23.6009913 28.97485798 42.70371969 39.18128664 36.11843741 33.64093596\n", + " 31.88551984 30.97519863 31.41218354 31.41218354 30.87178238 30.87178238\n", + " 29.58771061 30.4426874 32.18516063 34.68161856 37.78289981 41.35315131\n", + " 24.22804504 25.26505023 27.33953387 30.23872042 33.75074911 37.7047566\n", + " 18.87767108 20.19136108 22.73364051 26.14858527 30.14102461 34.5111137\n", + " 13.54760187 15.3252116219]\n", + " [-0.97913708 0.08980333 0.18227986]\n", + " [-0.97499848 0.07810795 0.20803154]\n", + " [-0.96997739 0.06615239 0.23402505]\n", + " [-0.96405758 0.05398052 0.26015206]\n", + " [-0.95723316 0.04163705 0.28630584]\n", + " [-0.94950947 0.02916851 0.31237953]\n", + " [-0.94090371 0.01662353 0.33826597]\n", + " [-0.93091229 0.27191875 0.24384935]\n", + " [-0.92570122 0.26001842 0.27471382]\n", + " [-0.91937244 0.24736499 0.30588376]\n", + " [-0.9118963 0.23403411 0.33715453]\n", + " [-0.90326586 0.22010684 0.36832561]\n", + " [-0.89349777 0.20566666 0.39920291]\n", + " [-0.93646567 0.26597935 0.2286636 ]\n", + " [-0.94720763 0.23701228 0.21592333]\n", + " [-0.95708227 0.20701484 0.20282601]\n", + " [-0.96596397 0.17616257 0.1894211 ]\n", + " [-0.97374867 0.14463779 0.17576528]\n", + " [-0.9803551 0.11262602 0.16192362]\n", + " [-0.89384249 0.18982231 0.40621803]\n", + " [-0.90482109 0.158981 0.39499852]\n", + " [-0.91492258 0.12725516 0.38304411]\n", + " [-0.92402124 0.09482162 0.37039656]\n", + " [-0.93201289 0.06186001 0.35710688]\n", + " [-0.93881431 0.02855834 0.3432377 ]\n", + " [-0.98107589 0.096[-0.91164605 0.32204101 0.25532539]\n", + " [-0.914407 0.33777898 0.22308113]\n", + " [-0.91602503 0.35312236 0.19027017]\n", + " [-0.91027389 0.24341372 0.33488985]\n", + " [-0.91627951 0.25951303 0.30509808]\n", + " [-0.92132659 0.27558903 0.27424077]\n", + " [-0.92531627 0.29153323 0.24248336]\n", + " [-0.92817256 0.3072403 0.20999785]\n", + " [-0.92984245 0.32260835 0.17696575]\n", + " [-0.92245647 0.21274843 0.32219897]\n", + " [-0.92864388 0.22861022 0.29216077]\n", + " [-0.93383904 0.24450425 0.26107915]\n", + " [-0.93794264 0.26032336 0.22911865]\n", + " [-0.9408778 0.27596341 0.19645141]\n", + " [-0.94259055 0.29132319 0.16326008]\n", + " [-0.93358635 0.18167072 0.30888879]\n", + " [-0.93991505 0.19725445 0.2786582 ]\n", + " [-0.94522555 0.21292719 0.2474079 ]\n", + " [-0.949418 0.22858337 0.21530235]\n", + " [-0.95241467 0.24412054 0.18251427]\n", + " [-0.95416072 0.25943885 0.14922737]]\n", + "-24.9920152 -8.30326219]\n", + " [-19.61601568 -8.30554776]\n", + " [-14.24001617 -8.30783335]\n", + " [ -8.86401666 -8.31011893]\n", + " [ -3.48801714 -8.3124045 ]\n", + " [-30.36572914 -2.9249771 ]\n", + " [-24.98935856 0.1679438 ]\n", + " [-0.97648093 0.08218832 0.19932402]\n", + " [-0.97057268 0.06760471 0.23112395]\n", + " [-0.96331712 0.05268861 0.26314263]\n", + " [-0.95470355 0.03752241 0.29518334]\n", + " [-0.94474669 0.02219268 0.32704919]\n", + " [-0.93249359 0.27592685 0.2330667 ]\n", + " [-0.93249359 0.27592685 0.2330667 ]\n", + " [-0.9409186 0.01675982 0.33821781]\n", + " [-0.9409186 0.01675982 0.33821781]\n", + " [-0.93490765 0.26191071 0.23947959]\n", + " [-0.94571134 0.23277402 0.2268178 ]\n", + " [-0.95564043 0.20261306 0.21377398]\n", + " [-0.9645687 0.17160547 0.20039656]\n", + " [-0.97239184 0.13993416 0.1867419 ]\n", + " [-0.97902839 0.10778486 0.17287521]\n", + " [-0.92975032 0.24984913 0.27044363]\n", + " [-0.9406964 0.22026633 0.2580175 ]\n", + " [-0.95075149 0.18968137 0.2451379 ]\n", + " [-0.95978852 0.15827486 0.2318514 ]\n", + " [-0.96770277 0.12622972 0.21821412]\n", + " [-0.9744122 0.0937316 0.20429209]\n", + " [-0.92345636 0.23705271 0.30171902]\n", + " [-0.9344952 0.20708058 0.28954509]\n", + " [-0.94463375 0.17613232 0.27684739]\n", + " [-0.9537449 0.1443884 0.26367149]\n", + " [-0.9DEBUG:root:radec2pix: curVec: [[0.40508625 0.8972444 0.17566338]\n", + " [0.42927471 0.88720131 0.16910664]\n", + " [0.45366137 0.87624676 0.1624284 ]\n", + " [0.47812723 0.86439029 0.15563992]\n", + " [0.50255508 0.8516517 0.14875409]\n", + " [0.52683198 0.83806004 0.14178654]\n", + " [0.55085038 0.82365321 0.13475624]\n", + " [0.57450851 0.80847781 0.12768556]\n", + " [0.40508625 0.8972444 0.17566338]\n", + " [0.40659127 0.89103492 0.20184229]\n", + " [0.40795678 0.88397016 0.22840318]\n", + " [0.40915114 0.87604391 0.25523013]\n", + " [0.41014576 0.86726001 0.28220654]\n", + " [0.41091715 0.85763145 0.30921738]\n", + " [0.41144776 0.84717994 0.3361501 ]\n", + " [0.41172623 0.83593584 0.362895 ]\n", + " [0.57450851 0.80847781 0.12768556]\n", + " [0.57782784 0.8014033 0.15449186]\n", + " [0.58075359 0.79353763 0.18172311]\n", + " [0.5832475 0.78487721 0.20926089]\n", + " [0.58527764 0.77542593 0.23699094]\n", + " [0.58681833 0.76519592 0.26480078]\n", + " [0.58785003 0.7542086 0.29257773]\n", + " [0.5883597 0.74249548 0.32020825]\n", + " [0.41172623 0.83593584 0.362895 ]\n", + " [0.43708939 0.82514249 0.35790045]\n", + " [0.46260493 0.81346455 0.35252248]\n", + " [0.48815001 0.80091353 0.34676662]\n", + " [0.5136084 0.7875084 0.34064193]\n", + " [0.53886835 0.77327681 0.33416146]\n", + " [0.56382087 0.75825636 0.3273428 ]\n", + " [0.5883597 0.74249548 0.32020825]\n", + " [0.41560639 0.89295784 0.17290932]\n", + " [0.44540128 0.880035 0.16479107]\n", + " [0.4753756 0.86575135 0.15650122]\n", + " [0.50531261 0.85013916 0.14806272]\n", + " [0.53500451 0.83325188 0.13950443]\n", + " [0.56425567 0.81516286 0.13086268]\n", + " [0.40584023 0.89460841 0.18700137]\n", + " [0.40759617 0.88642382 0.21935853]\n", + " [0.40911073 0.87694721 0.25217456]\n", + " [0.41032986 0.86618155 0.28523487]\n", + " [0.41121038 0.85415071 0.3183278 ]\n", + " [0.41172259 0.84089823 0.35124732]\n", + " [0.57592091 0.8055434 0.13933747]\n", + " [0.57972876 0.7963422 0.17249251]\n", + " [0.58290686 0.78594816 0.20616762]\n", + " [0.58539383 0.77436534 0.24015076]\n", + " [0.58714235 0.76161619 0.27423466]\n", + " [0.58811916 0.74774432 0.30821144]\n", + " [0.42275721 0.83137903 0.36067334]\n", + " [0.45396064 0.81755512 0.35429275]\n", + " [0.48527011 0.8024131 0.34734154]\n", + " [0.51646896 0.78598476 0.33983491]\n", + " [0.54735124 0.76832115 0.DEBUG:root:cartToSphere: vec: [[ 0.00114566 -0.20812604 0.97810134]\n", + " [ 0.00115565 -0.1806373 0.9835491 ]\n", + " [ 0.00116422 -0.15245726 0.98830938]\n", + " [ 0.00117136 -0.12369032 0.99232018]\n", + " [ 0.00117701 -0.09444319 0.99552956]\n", + " [ 0.00118116 -0.06482624 0.99789587]\n", + " [ 0.00118376 -0.03495355 0.99938824]\n", + " [ 0.00118481 -0.00494229 0.99998708]\n", + " [ 0.00114566 -0.20812604 0.97810134]\n", + " [ 0.03017404 -0.20797994 0.97766757]\n", + " [ 0.05908469 -0.20756351 0.97643555]\n", + " [ 0.08776498 -0.20687811 0.97442227]\n", + " [ 0.11610332 -0.20592557 0.97165564]\n", + " [ 0.14398904 -0.20470759 0.96817455]\n", + " [ 0.17131174 -0.20322504 0.96402898]\n", + " [ 0.19796003 -0.20147731 0.95928031]\n", + " [ 0.00118481 -0.00494229 0.99998708]\n", + " [ 0.03120455 -0.00493875 0.99950082]\n", + " [ 0.06110052 -0.0049287 0.99811945]\n", + " [ 0.09075528 -0.00491221 0.99586111]\n", + " [ 0.1200543 -0.00488939 0.99275529]\n", + " [ 0.14888674 -0.0048604 0.98884231]\n", + " [ 0.17714546 -0.00482538 0.98417285]\n", + " [ 0.20472589 -0.00478446 0.97880765]\n", + " [ 0.19796003 -0.20147731 0.95928DEBUG:root:optics_fp: cphi: [0.71431368 0.76437722 0.81641337 0.86835883 0.91702693 0.95816873\n", + " 0.9870555 0.99965535 0.71431368 0.66132929 0.5962023 0.51675291\n", + " 0.42131547 0.30954599 0.18335276 0.04744559 0.99965535 0.9995376\n", + " 0.99934763 0.99901176 0.99833132 0.99660587 0.98975 0.86955594\n", + " 0.04744559 0.05506581 0.06560435 0.08112784 0.10624255 0.15365671\n", + " 0.27469828 0.86955594 0.73565039 0.79855486 0.86249109 0.9220669\n", + " 0.96951843 0.99634831 0.69273272 0.61992142 0.52667287 0.40967477\n", + " 0.26839934 0.10753407 0.99959633 0.99940262 0.99902775 0.99814911\n", + " 0.99520453 0.969333 0.0509959 0.06222863 0.07980586 0.1111717\n", + " 0.18256945 0.47985554 0.71431702 0.71431702 0.86795254 0.86795254\n", + " 0.71476593 0.64346978 0.55038977 0.43114136 0.28422526 0.11432331\n", + " 0.78049181 0.71641143 0.62718906 0.50409223 0.34047225 0.13917969\n", + " 0.84856189 0.79689424 0.71896966 0.59988271 0.42174368 0.17764392\n", + " 0.9132683 0.87905083 0.82247132 0.72349099 0.54506987 0.24461812\n", + " 0.96577787 0.95060272 0.92315504 0.89 18.5469529 22.60352987 27.12291311 31.90905859\n", + " 8.27715649 10.94695923 15.13153214 19.89706928 24.91237079 30.05265085\n", + " 3.35974322 7.91280426 13.10495402 18.40298673 23.73610696 29.08501983]\n", + "7 -24.42816844]\n", + " [-32.2700857 -19.05216893]\n", + " [-32.26780012 -13.67616941]\n", + " [-32.26551454 -8.3001699 ]\n", + " [-32.26322896 -2.92417038]\n", + " [-30.37796373 -31.70247449]\n", + " [-25.00196422 -31.70476008]\n", + " [-19.62596471 -31.70704565]\n", + " [-14.24996519 -31.70933123]\n", + " [ -8.87396568 -31.71161681]\n", + " [ -3.49796617 -31.71390239]\n", + " [-30.36492242 -1.02747727]\n", + " [-24.98892291 -1.02976285]\n", + " [-19.61292339 -1.03204842]\n", + " [-14.23692388 -1.034334 ]\n", + " [ -8.86092437 -1.03661958]\n", + " [ -3.48492485 -1.03890516]\n", + " [ -1.59965962 -29.81720927]\n", + " [ -1.59737405 -24.44120975]\n", + " [ -1.59508847 -19.06521024]\n", + " [ -1.59280289 -13.68921073]\n", + " [ -1.59051731 -8.31321121]\n", + " [ -1.58823174 -2.9372117 ]\n", + " [-32.27546357 -31.70166778]\n", + " [-32.27546357 -31.70166778]\n", + " [ -1.58742502 -1.03971187]\n", + " [ -1.58742502 -1.03971187]\n", + " [-30.37715702 -29.80497466]\n", + " [-25.00115751 -29.80726024]\n", + " [-19.625158 -29.80954582]\n", + " [-14.24915848 -29.8118314 ]\n", + " [ -8.87315897 -29.81411698]\n", + " [ -3.49715945 -29.81640256]\n", + " [-30.37487145 -24.42897515]\n", + " [-24.99887193 -24.43126073]\n", + " [-19.62287241 -24.43354631]\n", + " [-14.2468729 -24.43583188]\n", + " [ -8.87087339 -24.43811746]\n", + " [ -3.49487388 -24.44040305]\n", + " [-30.37258587 -19.05297564]\n", + " [-24.99658635 -19.05526122]\n", + " [-19.62058684 -19.05754679]\n", + " [-14.24458732 -19.05983237]\n", + " [ -8.86858781 -19.06211795]\n", + " [ -3.4925883 -19.06440353]\n", + " [-30.37030029 -13.67697612]\n", + " [-24.99430077 -13.6792617 ]\n", + " [-19.61830126 -13.68154728]\n", + " [-14.24230175 -13.68383286]\n", + " [ -8.86630223 -13.68611844]\n", + " [ -3.49030272 -13.68840401]\n", + " [-30.36801471 -8.30097661]\n", + " [-24.9920152 -8.30326219]\n", + " [-19.61601568 -8.30554776]\n", + " [-14.24001617 -8.30783335]\n", + " [ -8.86401666 -8.31011893]\n", + " [ -3.48801714 -8.3124045 ]\n", + " [-30.36572914 -2.9249771 ]\n", + " [-24.98972962 -2.92726267]\n", + " [-19.6137301 -2.92954825]\n", + " [-14.23773059 -2.93183383]\n", + " [ -8.86173108 -2.93411941]\n", + " [ -3.48573156 -2DEBUG:root:radec2pix: curVec Shape: (96, 3)\n", + "DEBUG:root:radec2pix: xyfp: [[-32.31281793 -31.43806373]\n", + " [-32.31091541 -27.05163558]\n", + " [-32.30901287 -22.66520742]\n", + " [-32.30711034 -18.27877926]\n", + " [-32.3052078 -13.8923511 ]\n", + " [-32.30330527 -9.50592294]\n", + " [-32.30140274 -5.11949478]\n", + " [-32.2995002 -0.73306663]\n", + " [-32.31281793 -31.43806373]\n", + " [-27.92638978 -31.43996627]\n", + " [-23.53996162 -31.4418688 ]\n", + " [-19.15353346 -31.44377134]\n", + " [-14.7671053 -31.44567387]\n", + " [-10.38067715 -31.44757641]\n", + " [ -5.99424899 -31.44947894]\n", + " [ -1.60782083 -31.45138147]\n", + " [-32.2995002 -0.73306663]\n", + " [-27.91307204 -0.73496916]\n", + " [-23.52664389 -0.73687169]\n", + " [-19.14021573 -0.73877423]\n", + " [-14.75378757 -0.74067676]\n", + " [-10.36735941 -0.74257929]\n", + " [ -5.98093125 -0.74448183]\n", + " [ -1.59450309 -0.74638436]\n", + " [ -1.60782083 -31.45138147]\n", + " [ -1.60591829 -27.06495331]\n", + " [ -1.60401576 -22.67852516]\n", + " [ -1.60211323 -18.292097 ]\n", + " [ -1.60021069 -13.90566884]\n", + " [ -1.59830816 -9.51924068]\n", + " [ -1.59640563 -5.13281252]\n", + " [ -1.59450309 -0.74638436]\n", + "72962 -2.92726267]\n", + " [-19.6137301 -2.92954825]\n", + " [-14.23773059 -2.93183383]\n", + " [ -8.86173108 -2.93411941]\n", + " [ -3.48573156 -2.93640499]]\n", + "DEBUG:root:optics_fp: cphi: [-0.71639206 -0.76640718 -0.81831665 -0.87003773 -0.918376 -0.95909967\n", + " -0.98753169 -0.99971968 -0.71639206 -0.66375612 -0.59900967 -0.51994628\n", + " -0.42485193 -0.31331297 -0.18716187 -0.0510586 -0.99971968 -0.9996256\n", + " -0.99947438 -0.99920821 -0.99867222 -0.99732533 -0.99206684 -0.90485547\n", + " -0.0510586 -0.05933321 -0.07078632 -0.08767585 -0.11504297 -0.16682032\n", + " -0.29920561 -0.90485547 -0.73771707 -0.80051245 -0.864202 -0.9233738\n", + " -0.97029678 -0.99658165 -0.69495812 -0.62259801 -0.52982456 -0.41324571\n", + " -0.27220694 -0.1112649 -0.9996711 -0.99951604 -0.9992175 -0.99852279\n", + " -0.99622323 -0.97670188 -0.054871 -0.06706472 -0.08616954 -0.12032428\n", + " -0.19827847 -0.52055819 -0.71639646 -0.71639646 -0.90315154 -0.90315154\n", + " -0.71698855 -0.64618487 -0.553643 -0.43489275 -0.28828288 -0.11832391\n", + " -0.78262952 -0.71915739 -0.63068289 -0.50839224 -0.34539889 -0.14417822\n", + " -0.85046147 -0.79948029 -0.72252464 -0.60469794 -0.42783445 -0.18421072\n", + " -0.91474245 -0.88118124 -0.82567874 -0.72846169 -0.55256029 -0.25394179\n", + " -0.96666577 -0.95194756 -0.92535864 -0.87107074 -0.74171607 -0.40123831\n", + " -0.99614527 -0.99433151 -0.99086162 -0.98290647 -0.95774678 -0.79700819]\n", + "031]\n", + " [ 0.19971011 -0.17488831 0.96412134]\n", + " [ 0.20119978 -0.14761103 0.96836441]\n", + " [ 0.20242973 -0.11975687 0.97194676]\n", + " [ 0.20339908 -0.09143612 0.97481703]\n", + " [ 0.20410611 -0.06275929 0.97693499]\n", + " [ 0.20454887 -0.03383788 0.97827131]\n", + " [ 0.20472589 -0.00478446 0.97880765]\n", + " [ 0.00124992 -0.19623245 0.98055661]\n", + " [ 0.00126219 -0.16206424 0.9867794 ]\n", + " [ 0.00127213 -0.12696122 0.99190687]\n", + " [ 0.00127966 -0.09111882 0.99583921]\n", + " [ 0.00128472 -0.05474021 0.9984998 ]\n", + " [ 0.00128725 -0.01803675 0.9998365 ]\n", + " [ 0.01380981 -0.20800294 0.97803071]\n", + " [ 0.04932315 -0.20764209 0.97696059]\n", + " [ 0.08454761 -0.20687664 0.97470701]\n", + " [ 0.11927732 -0.20570979 0.97131684]\n", + " [ 0.15330846 -0.20414458 0.96686168]\n", + " [ 0.18643745 -0.20218204 0.96143824]\n", + " [ 0.01428113 -0.00504426 0.9998853 ]\n", + " [ 0.05100494 -0.00503536 0.99868571]\n", + " [ 0.08742589 -0.00501654 0.9961584 ]\n", + " [ 0.12333185 -0.004988 0.99235295]\n", + " [ 0.15851879 -0.00495001 0.98734355]\n", + " [ 0.19279062 -0.00490286 0.98122767]\n", + " [ 0.19866498 -0.1899823 0.96147748]\n", + " [ 0.20063357 -0.15691665 0.96701775]\n", + " [ 0.20221208 -0.12292805 0.97159609]\n", + " [ 0.20339952 -0.08821992 0.97511327]\n", + " [ 0.20419277 -0.05299579 0.97749515]\n", + " [ 0.20458843 -0.01746139 0.97869233]\n", + " [ 0.00124504 -0.2080333 0.97812095]\n", + " [ 0.00124504 -0.2080333 0.97812095]\n", + " [ 0.2046327 -0.00488406 0.97882665]\n", + " [ 0.2046327 -0.00488406 0.97882665]\n", + " [ 0.01386393 -0.19620382 0.98046512]\n", + " [ 0.04951642 -0.19586344 0.97938023]\n", + " [ 0.08487904 -0.1951417 0.97709532]\n", + " [ 0.1197456 -0.19404219 0.97365734]\n", + " [ 0.15391263 -0.19256861 0.96913788]\n", + " [ 0.18717755 -0.19072284 0.96363342]\n", + " [ 0.01400003 -0.16204052 0.98668479]\n", + " [ 0.0500023 -0.1617587333179697]\n", + " [0.57771738 0.74949601 0.32326207]\n", + " [0.40517385 0.89719181 0.17572992]\n", + " [0.40517385 0.89719181 0.17572992]\n", + " [0.58827576 0.74259182 0.32013905]\n", + " [0.58827576 0.74259182 0.32013905]\n", + " [0.4163299 0.89035486 0.1842217 ]\n", + " [0.41823158 0.88211343 0.21669852]\n", + " [0.41986533 0.8725791 0.24963739]\n", + " [0.42117529 0.86175569 0.28282238]\n", + " [0.42211774 0.84966726 0.31604138]\n", + " [0.42266296 0.83635731 0.34908806]\n", + " [0.44628401 0.87737277 0.17620331]\n", + " [0.44858874 0.86896439 0.20897137]\n", + " [0.45054946 0.85926698 0.2422095 ]\n", + " [0.45210738 0.84828558 0.27570001]\n", + " [0.45321841 0.83604394 0.30923067]\n", + " [0.45385341 0.822585 0.34259451]\n", + " [0.47641075 0.86302545 0.16798767]\n", + " [0.47909877 0.85444388 0.20097269]\n", + " [0.48136855 0.84458512 0.23443611]\n", + " [0.48316046 0.83345413 0.26816074]\n", + " [0.4844307 0.82107368 0.30193527]\n", + " [0.4851506 0.807486 0.33555217]\n", + " [0.50649161 0.847346 0.15959638]\n", + " [0.50954062 0.8385861 0.19272186]\n", + " [0.51210174 0.82856741 0.22633573]\n", + " [0.51411511 0.81729426 0.26022249]\n", + " [0.5155368 0.80478852 0.29417215]\n", + " [0.51633774 0.79109204 0.32797671]\n", + " [0.53631816 0.83038807 0.15105789]\n", + " [0.53970552 0.82144443 0.18424714]\n", + " [0.54254092 0.81126621 0.21793687]\n", + " [0.54476416 0.79985725 0.25191345]\n", + " [0.54633027 0.7872391 0.28596825]\n", + " [0.54720881 0.77345391 0.31989305]\n", + " [0.56569446 0.81222506 0.14240867]\n", + " [0.56939691 0.803092 0.17558586]\n", + " [0.57248898 0.7927542 0.20927767]\n", + " [0.57490965 0.78121555 0.2432718 ]\n", + " [0.57661226 0.76849811 0.2773607 ]\n", + " [0.57756434 0.75464503 0.31133633]]\n", + "617237 0.1120304 0.2500734 ]\n", + " [-0.9684874 0.07924375 0.23611983]\n", + " [-0.9159955 0.22359915 0.33310008]\n", + " [-0.92707643 0.19329753 0.32119365]\n", + " [-0.93725529 0.16204703 0.3086961 ]\n", + " [-0.94640527 0.13002659 0.29565208]\n", + " [-0.95442136 0.0974163 0.28211689]\n", + " [-0.96122015 0.06440184 0.2681571 ]\n", + " [-0.9073606 0.2095701 0.36438595]\n", + " [-0.91843253 0.17899896 0.35276205]\n", + " [-0.92860807 0.14750625 0.34048342]\n", + " [-0.93776086 0.11526941 0.32759354]\n", + " [-0.94578605 0.08246769 0.3141462 ]\n", + " [-0.9525999DEBUG:root:optics_fp: cphi: [0.00550458 0.00639749 0.00763617 0.00946965 0.01246169 0.01821736\n", + " 0.03384734 0.23312315 0.00550458 0.14357831 0.27378206 0.39054421\n", + " 0.49112919 0.57532118 0.64452059 0.70085313 0.23312315 0.98770575\n", + " 0.99676233 0.99853841 0.99917171 0.99946758 0.99962921 0.99972703\n", + " 0.70085313 0.75231162 0.80628167 0.86066702 0.91207829 0.95583505\n", + " 0.98659156 0.99972703 0.00636947 0.00778798 0.01001931 0.01404249\n", + " 0.02346297 0.07118734 0.06624656 0.23110858 0.37831182 0.50160995\n", + " 0.60050131 0.67790282 0.94291018 0.99516222 0.9983578 0.99918316\n", + " 0.9995128 0.99967679 0.72272376 0.78769728 0.85449414 0.91742373\n", + " 0.96793131 0.99637757 0.00598472 0.00598472 0.99971529 0.99971529\n", + " 0.07048511 0.24509968 0.39886372 0.52516272 0.62434311 0.70044222\n", + " 0.08607764 0.29532864 0.46955786 0.60232354 0.69893243 0.76821854\n", + " 0.11047406 0.36953888 0.56469148 0.69653837 0.7826374 0.83930914\n", + " 0.15393817 0.48687699 0.69216184 0.80578092 0.86972564 0.90775141\n", + " 0.25195766 0.68160416 0.84839347 0.98556272]\n", + " [ 0.08571147 -0.16116182 0.98319907]\n", + " [ 0.12092013 -0.16025398 0.97964125]\n", + " [ 0.15542529 -0.15904007 0.97496115]\n", + " [ 0.1890269 -0.15752379 0.96925491]\n", + " [ 0.01411023 -0.12694255 0.9918097 ]\n", + " [ 0.05039551 -0.12672084 0.99065742]\n", + " [ 0.08638432 -0.12625153 0.98822988]\n", + " [ 0.12186779 -0.1255387 0.98457518]\n", + " [ 0.15664287 -0.12458735 0.97976579]\n", + " [ 0.19051132 -0.12340188 0.97389805]\n", + " [ 0.01419378 -0.09110536 0.9957401 ]\n", + " [ 0.0506935 -0.09094551 0.99456477]\n", + " [ 0.08689379 -0.09060732 0.9920886 ]\n", + " [ 0.12258434 -0.09009413 0.98836032]\n", + " [ 0.15756175 -0.08941017 0.98345316]\n", + " [ 0.19162897 -0.08855947 0.97746384]\n", + " [ 0.0142499 -0.05473209 0.99839939]\n", + " [ 0.05089361 -0.05463571 0.99720849]\n", + " [ 0.08723571 -0.05443186 0.9946995 ]\n", + " [ 0.12306478 -0.05412272 0.99092169]\n", + " [ 0.15817704 -0.05371108 0.98594885]\n", + " [ 0.19237609 -0.05319971 0.97987817]\n", + " [ 0.01427798 -0.01803407 0.99973542]\n", + " [ 0.05099373 -0.01800225 0.99853671]\n", + " [ 0.08740674 -0.01793496 0.99601124]\n", + " [ 0.12330495 -0.01783294 0.99220858]\n", + " [ 0.15848438 -0.01769716 0.98720287]\n", + " [ 0.1927489 -0.01752858 0.98109154]]\n", + "6706843 0.73363771 0.38635141\n", + " 0.99587869 0.99392322 0.99017013 0.9815259 0.95398889 0.77695241]\n", + "0.91538572 0.94689876 0.96382489\n", + " 0.62072988 0.94296444 0.97959085 0.9897031 0.99382317 0.99589043]\n", + ".93640499]]\n", + "DEBUG:root:radec2pix: xyfp Shape: (96, 2)\n", + "2 0.04928758 0.3002068 ]\n", + " [-0.89756827 0.19504912 0.39538215]\n", + " [-0.90858016 0.16426783 0.3840549 ]\n", + " [-0.91870864 0.1325923 0.37201306]\n", + " [-0.92782782 0.10019931 0.35929881]\n", + " [-0.9358333 0.06726823 0.3459639 ]\n", + " [-0.94264164 0.03398666 0.33207176]]\n", + "DEBUG:root:radec2pix: curVec Shape: (96, 3)\n", + "DEBUG:root:optics_fp: sphi: [-0.69769794 -0.64235507 -0.57476766 -0.49298514 -0.3957089 -0.2830686\n", + " -0.15742033 -0.02367621 -0.69769794 -0.74794907 -0.80074179 -0.85419896\n", + " -0.90526286 -0.94964993 -0.98232909 -0.99869566 -0.02367621 -0.02736175\n", + " -0.03241859 -0.03978624 -0.05151501 -0.07309024 -0.12571151 -0.42571889\n", + " -0.99869566 -0.99823823 -0.9974915 -0.99614906 -0.99336052 -0.98598731\n", + " -0.95418866 -0.42571889 -0.67511001 -0.59931613 -0.50314502 -0.38390211\n", + " -0.24191766 -0.08261364 -0.71905021 -0.78254183 -0.84810727 -0.91061956\n", + " -0.96223874 -0.99379078 -0.02564534 -0.03110765 -0.0395524 -0.05433448\n", + " -0.08682898 -0.21460065 -0.99849345 -0.99774863 -0.99628049 -0.99273464\n", + " -0.98014573 -0.8538262 -0.69769342 -0.69769342 -0.42932191 -0.42932191\n", + " -0.69708495 -0.76318092 -0.83275412 -0.90048226 -0.95754529 -0.99297505\n", + " -0.62248778 -0.69484721 -0.77604065 -0.86112562 -0.93845597 -0.98955174\n", + " -0.52603734 -0.60069232 -0.69134517 -0.7964549 -0.90385712 -0.98288677\n", + " -0.40403745 -0.47277862 -0.5641406 -0.68508654 -0.83347293 -0.9672195\n", + " -0.25604158 -0.30626107 -0.37909286 -0.49115758 -0.670714 -0.9159737\n", + " -0.08771884 -0.10632422 -0.13488237 -0.1841056 -0.28761277 -0.6039685 ]\n", + "DEBUG:root:make_az_asym: xyp: shape: (96, 2)\n", + " [-32.29698843 -29.52557043]\n", + " [-32.29465669 -24.14957093]\n", + " [-32.29232495 -18.77357144]\n", + " [-32.2899932 -13.39757194]\n", + " [-32.28766146 -8.02157244]\n", + " [-32.28532972 -2.64557295]\n", + " [-30.40031161 -31.42389325]\n", + " [-25.02431212 -31.42622499]\n", + " [-19.64831262 -31.42855673]\n", + " [-14.27231313 -31.43088848]\n", + " [ -8.89631363 -31.43322022]\n", + " [ -3.52031414 -31.43555196]\n", + " [-30.38700689 -0.74889614]\n", + " [-25.01100739 -0.75122788]\n", + " [-19.6350079 -0.75355962]\n", + " [-14.25900841 -0.75589136]\n", + " [ -8.88300892 -0.7582231 ]\n", + " [ -3.50700942 -0.76055484]\n", + " [ -1.62199131 -29.53887515]\n", + " [ -1.61965957 -24.16287565]\n", + " [ -1.61732783 -18.78687616]\n", + " [ -1.61499609 -13.41087666]\n", + " [ -1.61266434 -8.03487716]\n", + " [ -1.6103326 -2.65887768]\n", + " [-32.29781143 -31.42307024]\n", + " [-32.29781143 -31.42307024]\n", + " [ -1.60950959 -0.76137785]\n", + " [ -1.60950959 -0.76137785]\n", + " [-30.3994886 -29.52639343]\n", + " [-25.02348911 -29.52872517]\n", + " [-19.64748962 -29.53105692]\n", + " [-14.27149012 -29.53338866]\n", + " [ -8.89549063 -29.5357204 ]\n", + " [ -3.51949113 -29.53805214]\n", + " [-30.39715686 -24.15039394]\n", + " [-25.02115737 -24.15272568]\n", + " [-19.64515788 -24.15505742]\n", + " [-14.26915838 -24.15DEBUG:root:radec2pix: camVec: [[-0.20607518 -0.20787446 -0.20940354 -0.21066179 -0.21164814 -0.21236112\n", + " -0.21279916 -0.21296107 -0.20607518 -0.17964954 -0.15251864 -0.12479221\n", + " -0.09658011 -0.06799262 -0.03914089 -0.01013708 -0.21296107 -0.18561075\n", + " -0.15755214 -0.12888979 -0.09972928 -0.07017922 -0.04035219 -0.01036463\n", + " -0.01013708 -0.01020871 -0.01026764 -0.01031373 -0.01034674 -0.01036638\n", + " -0.0103724 -0.01036463 -0.20680345 -0.20882603 -0.21044235 -0.21165063\n", + " -0.2124482 -0.2128323 -0.19465346 -0.16177694 -0.12795009 -0.0933751\n", + " -0.05825505 -0.022795 -0.20112996 -0.16711987 -0.13214975 -0.09641349\n", + " -0.0601111 -0.02345151 -0.01026957 -0.0103498 -0.01041065 -0.01045169\n", + " -0.01047241 -0.01047238 -0.20599275 -0.20599275 -0.01046737 -0.01046737\n", + " -0.19541667 -0.16240545 -0.12844349 -0.09373247 -0.05847519 -0.02287686\n", + " -0.19732118 -0.16397526 -0.12967711 -0.09462661 -0.05902568 -0.02308015\n", + " -0.19884383 -0.16523235 -0.13066656 -0.09534433 -0.05946678 -0.02324061\n", + " -0.1999DEBUG:root:optics_fp: sphi: [0.69982566 0.64476931 0.57746793 0.49593643 0.39882528 0.28620393\n", + " 0.16037903 0.02625233 0.69982566 0.75009571 0.80283424 0.85613459\n", + " 0.90691415 0.95088447 0.98304718 0.99887382 0.02625233 0.03040715\n", + " 0.0361152 0.04444666 0.05774576 0.08232094 0.14281086 0.49383445\n", + " 0.99887382 0.99848273 0.99784571 0.9967037 0.99434024 0.98812429\n", + " 0.96153048 0.49383445 0.67736143 0.60192204 0.50607224 0.38703053\n", + " 0.24501841 0.0853818 0.72119441 0.7846639 0.85006805 0.91223165\n", + " 0.96330774 0.9942014 0.02841071 0.03456004 0.04408579 0.06081407\n", + " 0.0978159 0.24575094 0.99869886 0.99806192 0.99681043 0.99380121\n", + " 0.98319296 0.87734751 0.69982226 0.69982226 0.49664714 0.49664714\n", + " 0.69936375 0.76547151 0.83490784 0.90228439 0.95875753 0.9934436\n", + " 0.62516601 0.69767805 0.77886705 0.86364983 0.94025457 0.99026714\n", + " 0.52909613 0.60411884 0.69504146 0.80008796 0.9067151 0.98409483\n", + " 0.40735858 0.47672806 0.56880658 0.69033382 0.83839063 0.9696195\n", + " 0.25937061 0.31041017 0.38442785 0.738916]\n", + " [ -8.89315889 -24.1597209 ]\n", + " [ -3.51715939 -24.16205264]\n", + " [-30.39482512 -18.77439444]\n", + " [-25.01882563 -18.77672618]\n", + " [-19.64282613 -18.77905793]\n", + " [-14.26682664 -18.78138967]\n", + " [ -8.89082714 -18.78372141]\n", + " [ -3.51482765 -18.78605315]\n", + " [-30.39249338 -13.39839495]\n", + " [-25.01649389 -13.40072669]\n", + " [-19.64049439 -13.40305843]\n", + " [-14.2644949 -13.40539017]\n", + " [ -8.8884954 -13.40772191]\n", + " [ -3.51249591 -13.41005365]\n", + " [-30.39016163 -8.02239545]\n", + " [-25.01416214 -8.02472719]\n", + " [-19.63816265 -8.02705893]\n", + " [-14.26216315 -8.02939068]\n", + " [ -8.88616366 -8.03172242]\n", + " [ -3.51016417 -8.03405416]\n", + " [-30.3878299 -2.64639596]\n", + " [-25.01183041 -2.6487277 ]\n", + " [-19.63583091 -2.65105944]\n", + " [-14.25983141 -2.65339118]\n", + " [ -8.88383191 -2.65572292]\n", + " [ -3.50783243 -2.65805467]]\n", + "49818906 0.67954081 0.92235166\n", + " 0.0906953 0.11007561 0.13986822 0.1913293 0.29984194 0.62955934]\n", + "DEBUG:root:radec2pix: curVec Shape: (96, 3)\n", + "DEBUG:root:radec2pix: lng: [270.31539085 270.36655189 270.43752447 270.542579 270.71402077\n", + " DEBUG:root:radec2pix: xyfp: [[-32.29046994 -31.71666141]\n", + " [-32.28860507 -27.33023323]\n", + " [-32.2867402 -22.94380505]\n", + " [-32.28487534 -18.55737688]\n", + " [-32.28301047 -14.1709487 ]\n", + " [-32.2811456 -9.78452053]\n", + " [-32.27928073 -5.39809235]\n", + " [-32.27741587 -1.01166418]\n", + " [-32.29046994 -31.71666141]\n", + " [-27.90404176 -31.71852627]\n", + " [-23.51761359 -31.72039114]\n", + " [-19.13118541 -31.722256 ]\n", + " [-14.74475724 -31.72412087]\n", + " [-10.35832906 -31.72598574]\n", + " [ -5.97190089 -31.72785061]\n", + " [ -1.58547272 -31.72971547]\n", + " [-32.27741587 -1.01166418]\n", + " [-27.8909877 -1.01352905]\n", + " [-23.50455952 -1.01539391]\n", + " [-19.11813134 -1.01725878]\n", + " [-14.73170317 -1.01912365]\n", + " [-10.345275 -1.02098851]\n", + " [ -5.95884682 -1.02285338]\n", + " [ -1.57241864 -1.02471825]\n", + " [ -1.58547272 -31.72971547]\n", + " [ -1.58360785 -27.3432873 ]\n", + " [ -1.58174298 -22.95685912]\n", + " [ -1.57987811 -18.57043094]\n", + " [ -1.57801325 -14.18400278]\n", + " [ -1.57614838 -9.7975746 ]\n", + " [ -1.57428351 -5.41114642]\n", + " [ -1.57241864 -1.02471825]\n", + " [-32.27465685 -29.80416795]\n", + " [-32.27237127 -24.42816844]\n", + " [-32.2700857 -19.05216893]\n", + " [-32.26780012 -13.67616941]\n", + " [-32.26551454 -8.3001699 ]\n", + " [-32.26322896 -2.92417038]\n", + " [-30.37796373 -31.70247449]\n", + " [-25.00196422 -31.70476008]\n", + " [-19.62596471 -31.70704565]\n", + " [-14.24996519 -31.70933123]\n", + " [ -8.87396568 -31.71161681]\n", + " [ -3.49796617 -31.71390239]\n", + " [-30.36492242 -1.02747727]\n", + " [-24.98892291 -1.02976285]\n", + " [-19.61292339 -1.03204842]\n", + " [-14.23692388 -1.034334 ]\n", + " [ -8.86092437 -1.03661958]\n", + " [ -3.48492485 -1.03890516]\n", + " [ -1.59965962 -29.81720927]\n", + " [ -1.59737405 -24.44120975]\n", + " [ -1.59508847 -19.06521024]\n", + " [ -1.59280289 -13.68921073]\n", + " [ -1.59051731 -8.31321121]\n", + " [ -1.58823174 -2.9372117 ]\n", + " [-32.27546357 -31.70166778]\n", + " [-32.27546357 -31.70166778]\n", + " [ -1.58742502 -1.03971187]\n", + " [ -1.58742502 -1.03971187]\n", + " [-30.37715702 -29.80497466]\n", + " [-25.00115751 -29.80726024]\n", + " [-19.625158 -29.80954582]\n", + " [-14.24915848 -29.8118314 ]\n", + " [ -8.87315897 -29.81411698]\n", + " [ -3.49715945 -29.81640256]\n", + " [-30.37487145 -24.42897515]\n", + " [-24.99887193 -24.43126073]\n", + "8259 -0.16617376 -0.13140827 -0.09588212 -0.05979589 -0.0233572\n", + " -0.20073433 -0.16679525 -0.13189744 -0.09623556 -0.06000982 -0.02342863\n", + " -0.20109591 -0.16709274 -0.13212968 -0.09640067 -0.06010576 -0.0234538 ]\n", + " [-0.20019593 -0.17367087 -0.14646307 -0.11868235 -0.09043873 -0.0618427\n", + " -0.03300558 -0.0040396 -0.20019593 -0.20202839 -0.20359907 -0.20490731\n", + " -0.20595196 -0.20673135 -0.20724368 -0.20748743 -0.0040396 -0.00409191\n", + " -0.0041395 -0.00418225 -0.00421998 -0.00425248 -0.00427955 -0.00430103\n", + " -0.20748743 -0.17998755 -0.15180051 -0.12303089 -0.0937848 -0.06417157\n", + " -0.03430461 -0.00430103 -0.18872819 -0.15574492 -0.12184525 -0.0872316\n", + " -0.05210744 -0.0166781 -0.20093724 -0.20300612 -0.20468137 -0.20596106\n", + " -0.20684219 -0.20732153 -0.00416252 -0.00422448 -0.00427905 -0.00432591\n", + " -0.00436469 -0.00439503 -0.19558822 -0.16140908 -0.12630166 -0.09046055\n", + " -0.05408714 -0.0173918 -0.20011322 -0.20011322 -0.00440367 -0.00440367\n", + " -0.18950334 -0.19145029 -0.19302803 -0.19423441DEBUG:root:radec2pix: camVec: [[-0.20605921 -0.20787315 -0.20942436 -0.21070676 -0.21171698 -0.21245291\n", + " -0.21291301 -0.2130962 -0.20605921 -0.17962884 -0.15250018 -0.12477652\n", + " -0.0965659 -0.06797863 -0.03912632 -0.01012153 -0.2130962 -0.18573503\n", + " -0.15766321 -0.1289874 -0.09981355 -0.07024926 -0.04040619 -0.01040084\n", + " -0.01012153 -0.01020027 -0.01026637 -0.01031977 -0.01036027 -0.01038751\n", + " -0.01040113 -0.01040084 -0.20679239 -0.20883895 -0.21048459 -0.2117221\n", + " -0.21254753 -0.21295821 -0.1946339 -0.16175754 -0.12793421 -0.09336102\n", + " -0.05824097 -0.02277993 -0.20126076 -0.16723544 -0.13224882 -0.09649617\n", + " -0.06017591 -0.02349561 -0.01025713 -0.01034611 -0.01041588 -0.01046611\n", + " -0.01049618 -0.01050541 -0.20597676 -0.20597676 -0.01050361 -0.01050361\n", + " -0.19540403 -0.16239488 -0.12843557 -0.09372478 -0.05846599 -0.02286533\n", + " -0.19733483 -0.16399068 -0.1296908 -0.094636 -0.05902974 -0.02307851\n", + " -0.19888634 -0.16527244 -0.13070023 -0.09537003 -0.05948408 -0.02324907\n", + " -0.2000271.04383538 271.93968007 283.48101478 270.31539085 278.25496108\n", + " 285.88944585 292.98836581 299.41482725 305.12212741 310.12974078\n", + " 314.49549071 283.48101478 351.00638008 355.38819591 356.90183998\n", + " 357.66783206 358.13024629 358.43966874 358.66123705 314.49549071\n", + " 318.7910165 323.73421549 329.3915583 335.79415496 342.90819266\n", + " 350.6068072 358.66123705 270.36494598 270.44622312 270.57407396\n", + " 270.80460183 271.34445266 274.08218667 273.79842993 283.36234739\n", + " 292.22915231 300.10657084 306.9058095 312.67997848 340.54617186\n", + " 354.36185807 356.71594406 357.68400903 358.21142556 358.54322592\n", + " 316.27981968 321.97083668 328.70389405 336.55230838 345.45057848\n", + " 355.12169333 270.34290102 270.34290102 358.63275532 358.63275532\n", + " 274.04185073 284.1877247 293.50716352 301.67919787 308.63398936\n", + " 314.46249394 274.93799638 287.17724528 298.00560006 307.03649051\n", + " 314.34141513 320.19418356 276.34264386 291.68718176 304.38086955\n", + " 314.14993264 321.50269119 327.06723776 278.85521862 299.13552131\n", + " 313.8014816 323.6857401 330.42677291 335.19643967 284.59338686\n", + " 312.96912569 328.03736148 336.26056332 341.24440919 344.5417427\n", + " 308.36945368 340.55550723 348.40444495 351.77067409 353.62846105\n", + " 354.80381648]\n", + "5292 -0.16623701 -0.13146138 -0.09592455 -0.05982716 -0.0233762\n", + " -0.20083104 -0.16688094 -0.13197015 -0.09629527 -0.0600556 -0.02345845\n", + " -0.20121796 -0.16720058 -0.13222195 -0.09647752 -0.06016577 -0.02349426]\n", + " [-0.20169937 -0.17519485 -0.1480085 -0.12024402 -0.09200964 -0.06341581\n", + " -0.03457423 -0.00559748 -0.20169937 -0.20353396 -0.20511207 -0.20642749\n", + " -0.20747679 -0.20825778 -0.20876879 -0.20900854 -0.00559748 -0.00565735\n", + " -0.00571045 -0.00575671 -0.00579596 -0.00582797 -0.00585246 -0.00586919\n", + " -0.20900854 -0.18153487 -0.15336672 -0.12461057 -0.09537244 -0.06576046\n", + " -0.03588698 -0.00586919 -0.1902398 -0.15728353 -0.12340547 -0.08880315\n", + " -0.0536798 -0.01824146 -0.20244048 -0.20451655 -0.20620095 -0.20748634\n", + " -0.2083686 -0.2088448 -0.00572401 -0.00579384 -0.00585326 -0.00590199\n", + " -0.0059396 -0.00596558 -0.19712185 -0.16296958 -0.1278801 -0.09204872\n", + " -0.05567473 -0.01896706 -0.2016167 -0.2016167 -0.0059719 -0.0059719\n", + " -0.19101701 -0.19297429 -0.19456158 -0.19577312 -0.19660523 -0.1970549\n", + " -0.15792497 -0.15953875 -0.16084786 -0.1618491 -0.16253892 -0.16291334\n", + " -0.12390793 -0.1251726 -0.12620079 -0.12699006 -0.12753631 -0.1278347\n", + " -0.089165 -0.090077 -0.09082101 -0.09139481 -0.09179425 -0.09201449\n", + " -0.05389991 -0.05445583 -0.05491134 -0.05526476 -0.0555129 -0.05565213\n", + " -0.018319 -0.01851594 -0.01867909 -0.01880776 -0.01890068 -0.01895646]\n", + " [ 0.95752648 0.96233857 0.96655829 0.97012578 0.97299031 0.97511138\n", + " 0.97645925 0.97701519 0.95752648 0.96244865 0.96678474 0.97047334\n", + " 0.97346207 0.97570877 0.97718203 0.97786143 0.97701519 0.98258358\n", + " 0.98747643 0.99162952 0.99498928 0.99751244 0.9991662 0.99992869\n", + " 0.97786143 0.98333161 0.98811601 0.99215206 0.99538774 0.99778137\n", + " 0.99930173 0.99992869 0.95971 [-19.62287241 -24.43354631]\n", + " [-14.2468729 -24.43583188]\n", + " [ -8.87087339 -24.43811746]\n", + " [ -3.49487388 -24.44040305]\n", + " [-30.37258587 -19.05297564]\n", + " [-24.99658635 -19.05526122]\n", + " [-19.62058684 -19.05754679]\n", + " [-14.24458732 -19.05983237]\n", + " [ -8.86858781 -19.06211795]\n", + " [ -3.4925883 -19.06440353]\n", + " [-30.37030029 -13.67697612]\n", + " [-24.99430077 -13.6792617 ]\n", + " [-19.61830126 -13.68154728]\n", + " [-14.24230175 -13.68383286]\n", + " [ -8.86630223 -13.68611844]\n", + " [ -3.49030272 -13.68840401]\n", + " [-30.36801471 -8.30097661]\n", + " [-24.9920152 -8.30326219]\n", + " [-19.61601568 -8.30554776]\n", + " [-14.24001617 -8.30783335]\n", + " [ -8.86401666 -8.31011893]\n", + " [ -3.48801714 -8.3124045 ]\n", + " [-30.36572914 -2.9249771 ]\n", + " [-24.98972962 -2.92726267]\n", + " [-19.6137301 -2.92954825]\n", + " [-14.23773059 -2.93183383]\n", + " [ -8.86173108 -2.93411941]\n", + " [ -3.48573156 -2.93640499]]\n", + " -0.195066 -0.19551916\n", + " -0.15638145 -0.15798254 -0.1592836 -0.16028164 -0.16097217 -0.16135064\n", + " -0.12234264 -0.1235961 -0.12461804 -0.12540495 -0.1259519 -0.1262541\n", + " -0.08758892 -DEBUG:root:radec2pix: ccdpx: [[-4.44999997e+01 -4.99999751e-01]\n", + " [-4.45000003e+01 2.91928571e+02]\n", + " [-4.45000000e+01 5.84357143e+02]\n", + " [-4.44999999e+01 8.76785714e+02]\n", + " [-4.44999999e+01 1.16921429e+03]\n", + " [-4.44999999e+01 1.46164286e+03]\n", + " [-4.45000001e+01 1.75407143e+03]\n", + " [-4.45000000e+01 2.04650000e+03]\n", + " [-4.44999997e+01 -4.99999751e-01]\n", + " [ 2.47928571e+02 -5.00000271e-01]\n", + " [ 5.40357143e+02 -4.99999959e-01]\n", + " [ 8.32785714e+02 -5.00000035e-01]\n", + " [ 1.12521429e+03 -5.00000130e-01]\n", + " [ 1.41764286e+03 -5.00000295e-01]\n", + " [ 1.71007143e+03 -5.00000131e-01]\n", + " [ 2.00250000e+03 -5.00000000e-01]\n", + " [-4.45000000e+01 2.04650000e+03]\n", + " [ 2.47928571e+02 2.04650000e+03]\n", + " [ 5.40357143e+02 2.04650000e+03]\n", + " [ 8.32785714e+02 2.04650000e+03]\n", + " [ 1.12521429e+03 2.04650000e+03]\n", + " [ 1.41764286e+03 2.04650000e+03]\n", + " [ 1.71007143e+03 2.04650000e+03]\n", + " [ 2.00250000e+03 2.04650000e+03]\n", + " [ 2.00250000e+03 -5.00000000e-01]\n", + " [ 2.00250000e+03 2.91928571e+02]\n", + " [ 2.00250000e+03 5.84357143e+02]\n", + " [ 2.00250000e+03 8.76785DEBUG:root:optics_fp: xyfp: [[-32.203794 -31.5506227 ]\n", + " [-32.20328688 -27.16419416]\n", + " [-32.20277976 -22.77776561]\n", + " [-32.20227264 -18.39133707]\n", + " [-32.20176553 -14.00490853]\n", + " [-32.20125841 -9.61847999]\n", + " [-32.20075129 -5.23205144]\n", + " [-32.20024417 -0.8456229 ]\n", + " [-32.203794 -31.5506227 ]\n", + " [-27.81736545 -31.55112981]\n", + " [-23.43093691 -31.55163693]\n", + " [-19.04450837 -31.55214405]\n", + " [-14.65807983 -31.55265117]\n", + " [-10.27165129 -31.55315829]\n", + " [ -5.88522274 -31.5536654 ]\n", + " [ -1.4987942 -31.55417252]\n", + " [-32.20024417 -0.8456229 ]\n", + " [-27.81381563 -0.84613002]\n", + " [-23.42738708 -0.84663714]\n", + " [-19.04095854 -0.84714426]\n", + " [-14.65453 -0.84765137]\n", + " [-10.26810146 -0.84815849]\n", + " [ -5.88167292 -0.84866561]\n", + " [ -1.49524438 -0.84917273]\n", + " [ -1.4987942 -31.55417252]\n", + " [ -1.49828708 -27.16774398]\n", + " [ -1.49777997 -22.78131544]\n", + " [ -1.49727285 -18.39488689]\n", + " [ -1.49676573 -14.00845835]\n", + " [ -1.49625861 -9.62202981]\n", + " [ -1.49575149 -5.23560127]\n", + " [ -1.49524438 -0.84917273]\n", + " [-32.18857289 -29.63812445]\n", + " [-32.18795136 -24.26212448]\n", + " [-32.18732984 -18.88612452]\n", + " [-32.18670832 -13.51012455]\n", + " [-32.1860868 -8.13412459]\n", + " [-32.18546528 -2.75812462]\n", + " [-30.29129227 -31.5358438 ]\n", + " [-24.91529231 -31.53646533]\n", + " [-19.53929235 -31.53708685]\n", + " [-14.16329238 -31.53770837]\n", + " [ -8.78729242 -31.53832989]\n", + " [ -3.41129245 -31.53895142]\n", + " [-30.28774592 -0.86084401]\n", + " [-24.91174595 -0.86146553]\n", + " [-19.53574599 -0.86208705]\n", + " [-14.15974603 -0.86270858]\n", + " [ -8.78374606 -0.8633301 ]\n", + " [ -3.4077461 -0.86395162]\n", + " [ -1.5135731 -29.6416708 ]\n", + " [ -1.51295157 -24.26567084]\n", + " [ -1.51233005 -18.88967087]\n", + " [ -1.51170853 -13.51367091]\n", + " [ -1.51108701 -8.13767095]\n", + " [ -1.51046548 -2.76167097]\n", + " [-32.18879227 -31.53562444]\n", + " [-32.18879227 -31.53562444]\n", + " [ -1.51024611 -0.86417099]\n", + " [ -1.51024611 -0.86417099]\n", + " [-30.29107291 -29.63834382]\n", + " [-24.91507294 -29.63896534]\n", + " [-19.53907298 -29.63958686]\n", + " [-14.16307301 -29.64020839]\n", + " [ -8.78707305 -29.64082991]\n", + " [ -3.41107308 -29.64145143]\n", + " [-30.29045138 -24.26234385]\n", + " [-24.91445142 -24.26296538]\n", + "DEBUG:root:mm_to_pix: fitpx: [[0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]]\n", + "0.08849133 -0.08922984 -0.08980108 -0.09020062 -0.09042422\n", + " -0.05232353 -0.0528708 -0.053321 -0.05367171 -0.05391982 -0.0540624\n", + " -0.016752 -0.01694088 -0.01709901 -0.01722548 -0.01731915 -0.01737894]\n", + " [ 0.95783851 0.96261448 0.96679818 0.97032784 0.97315256 0.9752324\n", + " 0.97653835 0.97705233 0.95783851 0.96276195 0.96710159 0.97079344\n", + " 0.97378441 0.97603235 0.97750603 0.97818516 0.97705233 0.98261483\n", + " 0.98750199 0.99165011 0.99500566 0.99752533 0.99917635 0.99993704\n", + " 0.97818516 0.98361591 0.98835782 0.99234925 0.99553873 0.99788504\n", + " 0.9993576 0.99993704 0.96000729 0.96547149 0.96998338 0.97344474\n", + " 0.97578203 0.97694639 0.96006992 0.96572084 0.97042996 0.97409503\n", + " 0.97663845 0.97800724 0.97955572 0.98592753 0.99122053 0.99533197\n", + " 0.99818215 0.99971531 0.98063234 0.98683331 0.99193725 0.99584519\n", + " 0.9984813 0.99979391 0.95787352 0.95787352 0.99993552 0.99993552\n", + " 0.9622374 0.96797276 0.97274994 0.9764667 0.97904541 0.98043302\n", + " 0.96778572 0.97373181 0.978679 0.98252511 0.98519233 0.98662722\n", + " 0.9723648DEBUG:root:radec2pix: xyfp Shape: (96, 2)\n", + "DEBUG:root:optics_fp: xyfp: [[32.31363499 31.47041645]\n", + " [32.3144687 27.08398795]\n", + " [32.31530242 22.69755946]\n", + " [32.31613613 18.31113097]\n", + " [32.31696984 13.92470248]\n", + " [32.31780355 9.53827398]\n", + " [32.31863726 5.15184549]\n", + " [32.31947097 0.765417 ]\n", + " [32.31363499 31.47041645]\n", + " [27.9272065 31.46958273]\n", + " [23.540778 31.46874902]\n", + " [19.15434951 31.46791531]\n", + " [14.76792102 31.4670816 ]\n", + " [10.38149253 31.46624788]\n", + " [ 5.99506403 31.46541417]\n", + " [ 1.60863554 31.46458045]\n", + " [32.31947097 0.765417 ]\n", + " [27.93304248 0.76458329]\n", + " [23.54661399 0.76374957]\n", + " [19.1601855 0.76291586]\n", + " [14.77375701 0.76208215]\n", + " [10.38732851 0.76124844]\n", + " [ 6.00090002 0.76041472]\n", + " [ 1.61447153 0.75958101]\n", + " [ 1.60863554 31.46458045]\n", + " [ 1.60946926 27.07815197]\n", + " [ 1.61030297 22.69172348]\n", + " [ 1.61113668 18.30529498]\n", + " [ 1.61197039 13.91886648]\n", + " [ 1.6128041 9.53243799]\n", + " [ 1.61363782 5.1460095 ]\n", + " [ 1.61447153 0.75958101]\n", + " [32.29899849 29.55791363]\n", + " [32.30002028 24.18191372]\n", + " [32.30104209 18.80591382]\n", + " [32.30206388 13.42991392]\n", + " [32.30308568 8.05391402]\n", + " [32.30410748 2.67791411]\n", + " [30.40113787 31.45505294]\n", + " [25.02513797 31.45403115]\n", + " [19.64913807 31.45300935]\n", + " [14.27313817 31.45198755]\n", + " [ 8.89713826 31.45096576]\n", + " [ 3.52113836 31.44994396]\n", + " [30.40696816 0.7800535 ]\n", + " [25.03096826 0.7790317 ]\n", + " [19.65496836 0.7780099 ]\n", + " [14.27896845 0.77698811]\n", + " [ 8.90296855 0.77596631]\n", + " [ 3.52696865 0.77494451]\n", + " [ 1.62399904 29.55208334]\n", + " [ 1.62502084 24.17608344]\n", + " [ 1.62604264 18.80008353]\n", + " [ 1.62706443 13.42408364]\n", + " [ 1.62808623 8.04808373]\n", + " [ 1.62910803 2.67208383]\n", + " [32.29863784 31.4554136 ]\n", + " [32.29863784 31.4554136 ]\n", + " [ 1.62946868 0.77458386]\n", + " [ 1.62946868 0.77458386]\n", + " [30.40149852 29.55755297]\n", + " [25.02549862 29.55653118]\n", + " [19.64949872 29.55550938]\n", + " [14.27349882 29.55448759]\n", + " [ 8.89749891 29.55346579]\n", + " [ 3.52149901 29.55244399]\n", + " [30.40252032 24.18155307]\n", + " [25.02652042 24.18053128]\n", + " [19.65052052 24.17950948]\n", + " [14.27452061 24.17848769]\n", + " [ 8.89852071 24.17746589]\n", + " [ 3.52252081DEBUG:root:optics_fp: sphi: [-0.99998485 -0.99997954 -0.99997084 -0.99995516 -0.99992235 -0.99983405\n", + " -0.99942701 -0.97244722 -0.99998485 -0.98963896 -0.96179176 -0.92058417\n", + " -0.87108674 -0.81792759 -0.76458695 -0.71330561 -0.97244722 -0.15632448\n", + " -0.08040428 -0.05404675 -0.04069277 -0.03262757 -0.02722955 -0.0233637\n", + " -0.71330561 -0.65880742 -0.59153179 -0.50916823 -0.41001608 -0.29390365\n", + " -0.16320875 -0.0233637 -0.99997971 -0.99996967 -0.99994981 -0.9999014\n", + " -0.99972471 -0.99746296 -0.99780328 -0.97292796 -0.92567822 -0.8650939\n", + " -0.79962377 -0.73515153 -0.33304712 -0.0982454 -0.05728621 -0.04041066\n", + " -0.03121144 -0.02542276 -0.69113701 -0.61606249 -0.51946104 -0.39791167\n", + " -0.251215 -0.08503968 -0.99998209 -0.99998209 -0.02386066 -0.02386066\n", + " -0.99751283 -0.96949788 -0.91701021 -0.85100183 -0.78115023 -0.71370911\n", + " -0.99628843 -0.95539573 -0.8829017 -0.79825206 -0.71518771 -0.64018769\n", + " -0.99387901 -0.92921527 -0.82530209 -0.71751954 -0.62247788 -0.54365446\n", + " -0.98808048 -0.87347054 - 24.17644409]\n", + " [30.40354212 18.80555317]\n", + " [25.02754221 18.80453137]\n", + " [19.65154231 18.80350958]\n", + " [14.27554241 18.80248779]\n", + " [ 8.89954251 18.80146598]\n", + " [ 3.5235426 18.80044419]\n", + " [30.40456392 13.42955327]\n", + " [25.02856401 13.42853147]\n", + " [19.65256411 13.42750967]\n", + " [14.27656421 13.42648788]\n", + " [ 8.9005643 13.42546608]\n", + " [ 3.5245644 13.42444429]\n", + " [30.40558571 8.05355336]\n", + " [25.02958581 8.05253157]\n", + " [19.6535859 8.05150977]\n", + " [14.277586 8.05048797]\n", + " [ 8.9015861 8.04946618]\n", + " [ 3.5255862 8.04844438]\n", + " [30.40660751 2.67755346]\n", + " [25.0306076 2.67653166]\n", + " [19.6546077 2.67550987]\n", + " [14.2786078 2.67448807]\n", + " [ 8.90260789 2.67346627]\n", + " [ 3.52660799 2.67244448]]\n", + "0.72174233 -0.59221374 -0.49353552 -0.41950849\n", + " -0.96773826 -0.7317211 -0.52936616 -0.40257793 -0.32153186 -0.26653625\n", + " -0.7840245 -0.33289349 -0.20100193 -0.14313552 -0.11097528 -0.09056624]\n", + " [-19.53845145 -24.2635869 ]\n", + " [-14.16245149 -24.26420842]\n", + " [ -8.78645152 -24.26482994]\n", + " [ -3.41045156 -24.26545147]\n", + " [-30.28982986 -18.88634389DEBUG:root:radec2pix: camVec: [[0.20658103 0.20838989 0.20993522 0.21121099 0.21221385 0.21294172\n", + " 0.21339307 0.21356684 0.20658103 0.18015754 0.1530338 0.12531307\n", + " 0.09710338 0.06851504 0.03965966 0.01064976 0.21356684 0.18621882\n", + " 0.15815829 0.12949192 0.10032565 0.07076705 0.04092766 0.01092393\n", + " 0.01064976 0.01072986 0.01079662 0.01085001 0.01088978 0.0109156\n", + " 0.01092708 0.01092393 0.20731213 0.20935192 0.21098964 0.21221814\n", + " 0.21303349 0.21343308 0.19515895 0.16228971 0.12847052 0.09389848\n", + " 0.05877657 0.02331064 0.20173739 0.16772694 0.13275239 0.09700904\n", + " 0.06069518 0.02401827 0.01078606 0.01087623 0.01094616 0.01099551\n", + " 0.01102363 0.01102984 0.2064986 0.2064986 0.01102671 0.01102671\n", + " 0.19592714 0.16292559 0.1289709 0.09426176 0.0590016 0.02339654\n", + " 0.19785166 0.16451646 0.13022261 0.09517088 0.05956467 0.02361044\n", + " 0.19939573 0.16579218 0.13122742 0.09590173 0.06001727 0.02378066\n", + " 0.20055377 0.16674959 0.13198281 0.09645193 0.06035751 0.0239064\n", + " 0.20132229 0.16738526 0.13248471 0.09681723 0.06058199 0.02398618\n", + " 0.20169858 0.16769559 0.13272857 0.09699294 0.06068709 0.02401844]\n", + " [0.20098859 0.17447006 0.14727238 0.11949936 0.09125926 0.06266255\n", + " 0.03382097 0.00484709 0.20098859 0.20282418 0.20440426 0.20572264\n", + " 0.20677589 0.2075618 0.2080787 0.20832528 0.00484709 0.00490326\n", + " 0.00495363 0.00499813 0.0050366 0.00506881 0.00509451 0.00511348\n", + " 0.20832528 0.18083307 0.15264908 0.12387974 0.09463112 0.06501141\n", + " 0.0351331 0.00511348 0.18952259 0.15655094 0.12266162 0.08805229\n", + " 0.05292621 0.01748945 0.20172997 0.20380791 0.20549566 0.20678588\n", + " 0.20767444 0.20815839 0.00497187 0.00503783 0.00509482 0.00514259\n", + " 0.00518073 0.00520877 0.19643015 0.16225698 0.1271506 0.09130636\n", + " 0.0549237 0.01821176 0.20090587 0.20090587 0.00521618 0.00521618\n", + " 0.19029998 0.19225876 0.19384904 0.19506507 0.19590316 0.19636024\n", + " 0.15719218 0.15880644 0.16011755 0.16112232 0.16181718 0.1621981\n", + " 0.12316354 0.12442767 0.12545686 0.12624866 0.12679897 0.1271029\n", + " 0.08841323 0.08932369 0.09006766 0.09064294 0.0910454 0.09127018\n", + " 0.05314506 0.05369842 0.05415286 0.05450669 0.05475678 0.05489951\n", + " 0.0175654 0.01775879 0.01791986 0.01804791 0.01814173 0.01819993]\n", + " [0.9575635 0.96235848 0.9665599 0.97010815 0.97295274 0.97505345\n", + " 0.97638084 0.97691643 0.9575635 0.96249967 0.96685033 0.97055388\n", + " 0.97355774 0.97581955 0.97730771 0.97800162 0.97691643 0.98249606\n", + " 0.98740135 0.99156788 0.99494191 0.99747999 0.99914912 0.99992726\n", + " 0.97800162 0.98345527 0.98822148 0.99223792 0.99545284 0.99782482\n", + " 0.9993229 0.99992726 0.95974104 0.96522722 0.96976157 0.97324727\n", + " 0.97561035 0.97680113 0.95980102 0.96546589 0.97018908 0.97386995\n", + " 0.97643056 0.97781731 0.97942703 0.98582062 0.99113614 0.99527021\n", + " 0.9981429 0.99969795 0.98045849 0.98668859 0.99182302 0.99576214\n", + " 0.9984297 0.99977331 0.95759864 0.95759864 0.9999256 0.9999256\n", + " 0.96197634 0.96772508 0.97251687 0.97625014 0.97884665 0.98025265\n", + " 0.96754604 0.97350647 0.97847046 0.98233503 0.9DEBUG:root:radec2pix: lat: [77.98725933 79.59290201 81.23038669 82.89455027 84.58030503 86.2825061\n", + " 87.99575217 89.70880341 77.98725933 77.86842442 77.53699463 77.01330297\n", + " 76.32579246 75.50615888 74.58567435 73.59317035 89.70880341 88.18955545\n", + " 86.48562338 84.78529769 83.09901991 81.43298752 79.79264001 78.18327445\n", + " 73.59317035 74.60559591 75.5496878 76.3965297 77.11433871 77.67029216\n", + " 78.03413945 78.18327445 78.68303826 80.67298244 82.70560399 84.77150761\n", + " 86.86118368 88.96388538 77.96782959 77.67716345 77.0861016 76.24391961\n", + " 75.20859077 74.03673952 89.13217661 87.06213831 84.97619114 82.90974635\n", + " 80.87458441 78.88067366 74.04491662 75.24365824 76.31136856 77.19067025\n", + " 77.8215059 78.15105181 77.99265855 77.99265855 78.18859038 78.18859038\n", + " 78.65635764 78.34456159 77.7133866 76.81969543 75.7283623 74.50063549\n", + " 80.63959245 80.25225497 79.48245907 78.41882236 77.15141692 75.75558792\n", + " 82.66188886 82.16191851 81.200562 79.92354945 78.45441908 76.88031771\n", + " 84.70956295 84.0235478 714e+02]\n", + " [ 2.00250000e+03 1.16921429e+03]\n", + " [ 2.00250000e+03 1.46164286e+03]\n", + " [ 2.00250000e+03 1.75407143e+03]\n", + " [ 2.00250000e+03 2.04650000e+03]\n", + " [-4.35000003e+01 1.27000000e+02]\n", + " [-4.35000001e+01 4.85400000e+02]\n", + " [-4.35000003e+01 8.43800000e+02]\n", + " [-4.34999997e+01 1.20220000e+03]\n", + " [-4.34999997e+01 1.56060000e+03]\n", + " [-4.35000002e+01 1.91900000e+03]\n", + " [ 8.29999999e+01 4.99999945e-01]\n", + " [ 4.41400000e+02 4.99999943e-01]\n", + " [ 7.99800000e+02 5.00000147e-01]\n", + " [ 1.15820000e+03 4.99999799e-01]\n", + " [ 1.51660000e+03 5.00000078e-01]\n", + " [ 1.87500000e+03 4.99999710e-01]\n", + " [ 8.30000000e+01 2.04550000e+03]\n", + " [ 4.41400000e+02 2.04550000e+03]\n", + " [ 7.99800000e+02 2.04550000e+03]\n", + " [ 1.15820000e+03 2.04550000e+03]\n", + " [ 1.51660000e+03 2.04550000e+03]\n", + " [ 1.87500000e+03 2.04550000e+03]\n", + " [ 2.00150000e+03 1.27000000e+02]\n", + " [ 2.00150000e+03 4.85400000e+02]\n", + " [ 2.00150000e+03 8.43800000e+02]\n", + " [ 2.00150000e+03 1.20220000e+03]\n", + " [ 2.00150000e+03 1.56060000e+03]\n", + " [ 2.00150000e+03 1.91900000e+03]\n", + " [-4.349999DEBUG:root:optics_fp: xyfp shape: (96, 2)\n", + "5 0.97847957 0.98356321 0.98751357 0.9902524 0.99172566\n", + " 0.9758766 0.9821179 0.98730436 0.99133364 0.9941269 0.9956294\n", + " 0.9782474 0.98457302 0.98982824 0.99391049 0.99674043 0.99826267\n", + " 0.97942831 0.98579563 0.99108495 0.99519355 0.99804176 0.99957386]]\n", + "]\n", + " [-24.91382989 -18.88696541]\n", + " [-19.53782993 -18.88758693]\n", + " [-14.16182997 -18.88820846]\n", + " [ -8.78583 -18.88882997]\n", + " [ -3.40983004 -18.8894515 ]\n", + " [-30.28920834 -13.51034392]\n", + " [-24.91320837 -13.51096545]\n", + " [-19.53720841 -13.51158697]\n", + " [-14.16120844 -13.51220849]\n", + " [ -8.78520848 -13.51283002]\n", + " [ -3.40920852 -13.51345154]\n", + " [-30.28858681 -8.13434396]\n", + " [-24.91258685 -8.13496548]\n", + " [-19.53658688 -8.135587 ]\n", + " [-14.16058692 -8.13620852]\n", + " [ -8.78458696 -8.13683005]\n", + " [ -3.40858699 -8.13745157]\n", + " [-30.28796529 -2.75834399]\n", + " [-24.91196532 -2.75896552]\n", + " [-19.53596536 -2.75958704]\n", + " [-14.1599654 -2.76020856]\n", + " [ -8.78396543 -2.76083009]\n", + " [ -3.40796547 -2.76145161]]\n", + "82.DEBUG:root:optics_fp: xyfp shape: (96, 2)\n", + "78807615 81.24955295 79.56251519 77.81300601\n", + " 86.75780924 85.71788826 84.09815339 82.27374035 80.38380312 78.4866344\n", + " 88.68197076 86.90004071 84.8808155 82.84304634 80.82390053 78.84030268]\n", + "8502145 0.98647571\n", + " 0.97214818 0.97827946 0.98338189 0.98735208 0.99011108 0.99160442\n", + " 0.97568503 0.98194493 0.98715164 0.99120174 0.99401595 0.99553917\n", + " 0.97808228 0.98442808 0.98970464 0.99380856 0.99666018 0.99820374\n", + " 0.97929012 0.98567886 0.99099042 0.99512142 0.99799196 0.99954584]]\n", + "DEBUG:root:radec2pix: camVec Shape: (3, 96)\n", + "127 0.96521924 0.96977695 0.97328709\n", + " 0.97567516 0.97689101 0.95975804 0.96540534 0.97011031 0.97377263\n", + " 0.97631476 0.97768345 0.97952098 0.98589996 0.99119927 0.99531586\n", + " 0.99817012 0.99970614 0.98032534 0.98657685 0.99173494 0.9956995\n", + " 0.99839379 0.99976492 0.95756163 0.95756163 0.999927 0.999927\n", + " 0.96194063 0.96767186 0.97244542 0.97616011 0.97873802 0.98012578\n", + " 0.96753226 0.97347545 0.97842131 0.98226722 0.98493482 0.98637043\n", + " 0.97215793 0.97827237 0.98335691 0.9873085 0.99004855 0.99152295\n", + " 0.97571944 0.98196303 0.98715219 0.99118387 0.99397914 0.99548324\n", + " 0.97814196 0.9844721 0.98973159 0.9938174 0.99665021 0.9981746\n", + " 0.97937518 0.98574902 0.99104412 0.99515745 0.99800944 0.99954423]]\n", + "DEBUG:root:mm_to_pix: fitpx.shape: (96, 2)\n", + "98e+01 5.00000241e-01]\n", + " [-4.34999998e+01 5.00000241e-01]\n", + " [ 2.00150000e+03 2.04550000e+03]\n", + " [ 2.00150000e+03 2.04550000e+03]\n", + " [ 8.30000001e+01 1.27000000e+02]\n", + " [ 4.41400000e+02 1.27000000e+02]\n", + " [ 7.99800000e+02 1.27000000e+02]\n", + " [ 1.15820000e+03 1.27000000e+02]\n", + " [ 1.51660000e+03 1.27000000e+02]\n", + " [ 1.87500000e+03 1.27000000e+02]\n", + " [ 8.30000000e+01 4.85400000e+02]\n", + " [ 4.41400000e+02 4.85400000e+02]\n", + " [ 7.99800000e+02 4.85400000e+02]\n", + " [ 1.15820000e+03 4.85400000e+02]\n", + " [ 1.51660000e+03 4.85400000e+02]\n", + " [ 1.87500000e+03 4.85400000e+02]\n", + " [ 8.30000001e+01 8.43800000e+02]\n", + " [ 4.41400000e+02 8.4380DEBUG:root:radec2pix: camVec Shape: (3, 96)\n", + "DEBUG:root:make_az_asym: xyp: [[-32.203794 -31.5506227 ]\n", + " [-32.20328688 -27.16419416]\n", + " [-32.20277976 -22.77776561]\n", + " [-32.20227264 -18.39133707]\n", + " [-32.20176553 -14.00490853]\n", + " [-32.20125841 -9.61847999]\n", + " [-32.20075129 -5.23205144]\n", + " [-32.20024417 -0.8456229 ]\n", + " [-32.203794 -31.5506227 ]\n", + " [-27.81736545 -31.55112981]\n", + " [-23.43093691 -31.55163693]\n", + " [-19.04450837 -31.55214405]\n", + " [-14.65807983 -31.55265117]\n", + " [-10.27165129 -31.55315829]\n", + " [ -5.88522274 -31.5536654 ]\n", + " [ -1.4987942 -31.55417252]\n", + " [-32.20024417 -0.8456229 ]\n", + " [-27.81381563 -0.84613002]\n", + " [-23.42738708 -0.84663714]\n", + " [-19.04095854 -0.84714426]\n", + " [-14.65453 -0.84765137]\n", + " [-10.26810146 -0.84815849]\n", + " [ -5.88167292 -0.84866561]\n", + " [ -1.49524438 -0.84917273]\n", + " [ -1.4987942 -31.55417252]\n", + " [ -1.49828708 -27.16774398]\n", + " [ -1.49777997 -22.78131544]\n", + " [ -1.49727285 -18.39488689]\n", + " [ -1.49676573 -14.00845835]\n", + " [ -1.49625861 -9.62202981]\n", + " [ -1.49575149 -5.23560127]\n", + " [ -1.49524438 -0.84917273DEBUG:root:optics_fp: xyfp: [[ -0.172993 31.426621 ]\n", + " [ -0.172993 27.04019243]\n", + " [ -0.172993 22.65376385]\n", + " [ -0.172993 18.26733528]\n", + " [ -0.172993 13.88090671]\n", + " [ -0.172993 9.49447814]\n", + " [ -0.172993 5.10804957]\n", + " [ -0.172993 0.721621 ]\n", + " [ -0.172993 31.426621 ]\n", + " [ -4.55942157 31.426621 ]\n", + " [ -8.94585014 31.426621 ]\n", + " [-13.33227871 31.426621 ]\n", + " [-17.71870729 31.426621 ]\n", + " [-22.10513586 31.426621 ]\n", + " [-26.49156443 31.426621 ]\n", + " [-30.877993 31.426621 ]\n", + " [ -0.172993 0.721621 ]\n", + " [ -4.55942157 0.721621 ]\n", + " [ -8.94585014 0.721621 ]\n", + " [-13.33227872 0.721621 ]\n", + " [-17.71870728 0.721621 ]\n", + " [-22.10513586 0.721621 ]\n", + " [-26.49156443 0.721621 ]\n", + " [-30.877993 0.721621 ]\n", + " [-30.877993 31.426621 ]\n", + " [-30.877993 27.04019243]\n", + " [-30.877993 22.65376385]\n", + " [-30.877993 18.26733529]\n", + " [-30.877993 13.88090671]\n", + " [-30.877993 9.49447814]\n", + " [-30.877993 5.10804957]\n", + " [-30.877993 0.721621 ]\n", + " [ -0.187993 29.514121 ]\n", + " [ -0.187993 DEBUG:root:radec2pix: camVec Shape: (3, 96)\n", + " 24.138121 ]\n", + " [ -0.187993 18.76212101]\n", + " [ -0.187993 13.386121 ]\n", + " [ -0.187993 8.010121 ]\n", + " [ -0.187993 2.634121 ]\n", + " [ -2.085493 31.411621 ]\n", + " [ -7.461493 31.411621 ]\n", + " [-12.837493 31.411621 ]\n", + " [-18.213493 31.411621 ]\n", + " [-23.589493 31.411621 ]\n", + " [-28.965493 31.411621 ]\n", + " [ -2.085493 0.736621 ]\n", + " [ -7.461493 0.736621 ]\n", + " [-12.837493 0.736621 ]\n", + " [-18.213493 0.736621 ]\n", + " [-23.58949299 0.736621 ]\n", + " [-28.965493 0.736621 ]\n", + " [-30.862993 29.514121 ]\n", + " [-30.862993 24.138121 ]\n", + " [-30.862993 18.762121 ]\n", + " [-30.862993 13.386121 ]\n", + " [-30.862993 8.010121 ]\n", + " [-30.862993 2.634121 ]\n", + " [ -0.187993 31.411621 ]\n", + " [ -0.187993 31.411621 ]\n", + " [-30.862993 0.736621 ]\n", + " [-30.862993 0.736621 ]\n", + " [ -2.085493 29.514121 ]\n", + " [ -7.461493 29.514121 ]\n", + " [-12.837493 29.514121 ]\n", + " [-18.213493 29.514121 ]\n", + " [-23.589493 29.514121 ]\n", + " [-28.965493 29.514121 ]\n", + " [ -2.085493 24.138121 ]\n", + " [ -7.461493 24.138121 ]\n", + " [-12.837493 24.138121 ]\n", + " [-18.213493 24.138121 ]\n", + " [-23.589493 24.138121 ]\n", + " [-28.965493 24.138121 ]\n", + " [ -2.085493 18.762121 ]\n", + " [ -7.461493 18.762121 ]\n", + " [-12.837493 18.762121 ]\n", + " [-18.213493 18.762121 ]\n", + " [-23.589493 18.762121 ]\n", + " [-28.965493 18.762121 ]\n", + " [ -2.085493 13.386121 ]\n", + " [ -7.461493 13.386121 ]\n", + " [-12.837493 13.386121 ]\n", + " [-18.213493 13.386121 ]\n", + " [-23.589493 13.386121 ]\n", + " [-28.965493 13.386121 ]\n", + " [ -2.085493 8.010121 ]\n", + " [ -7.461493 8.010121 ]\n", + " [-12.837493 8.010121 ]\n", + " [-18.213493 8.010121 ]\n", + " [-23.589493 8.010121 ]\n", + " [-28.965493 8.010121 ]\n", + " [ -2.085493 2.634121 ]\n", + " [ -7.461493 2.634121 ]\n", + " [-12.837493 2.634121 ]\n", + " [-18.213493 2.634121 ]\n", + " [-23.589493 2.634121 ]\n", + " [-28.965493 2.634121 ]]\n", + "DEBUG:root:mm_to_pix: fitpx: [[0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0DEBUG:root:cartToSphere: vec: [[-0.20607518 -0.20019593 0.95783851]\n", + " [-0.20787446 -0.17367087 0.96261448]\n", + " [-0.20940354 -0.14646307 0.96679818]\n", + " [-0.21066179 -0.11868235 0.97032784]\n", + " [-0.21164814 -0.09043873 0.97315256]\n", + " [-0.21236112 -0.0618427 0.9752324 ]\n", + " [-0.21279916 -0.03300558 0.97653835]\n", + " [-0.21296107 -0.0040396 0.97705233]\n", + " [-0.20607518 -0.20019593 0.95783851]\n", + " [-0.17964954 -0.20202839 0.96276195]\n", + " [-0.15251864 -0.20359907 0.96710159]\n", + " [-0.12479221 -0.20490731 0.97079344]\n", + " [-0.09658011 -0.20595196 0.97378441]\n", + " [-0.06799262 -0.20673135 0.97603235]\n", + " [-0.03914089 -0.20724368 0.97750603]\n", + " [-0.01013708 -0.20748743 0.97818516]\n", + " [-0.21296107 -0.0040396 0.97705233]\n", + " [-0.18561075 -0.00409191 0.98261483]\n", + " [-0.15755214 -0.0041395 0.98750199]\n", + " [-0.12888979 -0.00418225 0.99165011]\n", + " [-0.09972928 -0.00421998 0.99500566]\n", + " [-0.07017922 -0.00425248 0.99752533]\n", + " [-0.04035219 -0.00427955 0.99917635]\n", + " [-0.01036463 -0.00430103 0.99993704]\n", + " [-0.01013708 -0.20748743 0.97818516]\n", + " [-0.01020871 -0.17998755 0.98361591]\n", + " [-0.01026764 -0.15180051 0.98835782]\n", + " [-0.01031373 -0.12303089 0.99234925]\n", + " [-0.01034674 -0.0937848 0.99553873]\n", + " [-0.01036638 -0.06417157 0.99788504]\n", + " [-0.0103724 -0.03430461 0.9993576 ]\n", + " [-0.01036463 -0.00430103 0.99993704]\n", + " [-0.20680345 -0.18872819 0.96000729]\n", + " [-0.20882603 -0.15574492 0.96547149]\n", + " [-0.21044235 -0.12184525 0.96998338]\n", + " [-0.21165063 -0.0872316 0.97344474]\n", + " [-0.2124482 -0.05210744 0.97578203]\n", + " [-0.2128323 -0.0166781 0.97694639]\n", + " [-0.19465346 -0.20093724 0.96006992]\n", + " [-0.16177694 -0.20300612 0.96572084]\n", + " [-0.12795009 -0.20468137 0.97042996]\n", + " [-0.0933751 -0.20596106 0.97409503]\n", + " [-0.05825505 -0.20684219 0.97663845]\n", + " [-0.022795 -0.20732153 0.97800724]\n", + " [-0.20112996 -0.00416252 0.97955572]\n", + " [-0.16711987 -0.00422448 0.98592753]\n", + " [-0.13214975 -0.00427905 0.99122053]\n", + " [-0.09641349 -0.00432591 0.99533197]\n", + " [-0.0601111 -0.00436469 0.99818215]\n", + " [-0.02345151 -0.00439503 0.99971531]\n", + " [-0.01026957 -0.19558822 0.98063234]\n", + " [-0.0103498 -0.16140908 0.98683331]\n", + " [-0.01041065 -0.12630166 0.99193725]\n", + " [-0.01045169 -0.09046055 0.99584519]\n", + " [-0.01047241 -0.05408714 0.9984813 ]\n", + " [-0.01047238 -0.0173918 0.99979391]\n", + " [-0.20599275 -0.20011322 0.95787352]\n", + " [-0.20599275 -0.20011322 0.95787352]\n", + " [-0.01046737 -0.00440367 0.99993552]\n", + " [-0.01046737 -0.00440367 0.99993552]\n", + " [-0.19541667 -0.18950334 0.9622374 ]\n", + " [-0.16240545 -0.19145029 0.96797276]\n", + " [-0.12844349 -0.19302803 0.97274994]\n", + " [-0.09373247 -0.19423441 0.9764667 ]\n", + " [-0.05847519 -0.195066 0.97904541]\n", + " [-0.02287686 -0.19551916 0.98043302]\n", + " [-0.19732118 -0.15638145 0.96778572]\n", + " [-0.16397526 -0.15798254 0.97373181]\n", + " [-0.12967711 -0.1592836 0.978679 ]\n", + " [-0.09462661 -0.16028164 0.98252511]\n", + " [-0.05902568 -0.16097217 0.98519233]\n", + " [-0.02308015 -0.16135064 0.98662722]\n", + " [-0.19884383 -0.12234264 0.97236485]\n", + " [-0.16523235 -0.1235961 0.97847957]\n", + " [-0.13066656 -0.12461804 0.98356321]\n", + " [-0.09534433 -0.12540495 0.98751357]\n", + " [-0.0DEBUG:root:make_az_asym: xyp: [[32.31363499 31.47041645]\n", + " [32.3144687 27.08398795]\n", + " [32.31530242 22.69755946]\n", + " [32.31613613 18.31113097]\n", + " [32.31696984 13.92470248]\n", + " [32.31780355 9.53827398]\n", + " [32.31863726 5.15184549]\n", + " [32.31947097 0.765417 ]\n", + " [32.31363499 31.47041645]\n", + " [27.9272065 31.46958273]\n", + " [23.540778 31.46874902]\n", + " [19.15434951 31.46791531]\n", + " [14.76792102 31.4670816 ]\n", + " [10.38149253 31.46624788]\n", + " [ 5.99506403 31.46541417]\n", + " [ 1.60863554 31.46458045]\n", + " [32.31947097 0.765417 ]\n", + " [27.93304248 0.76458329]\n", + " [23.54661399 0.76374957]\n", + " [19.1601855 0.76291586]\n", + " [14.77375701 0.76208215]\n", + " [10.38732851 0.76124844]\n", + " [ 6.00090002 0.76041472]\n", + " [ 1.61447153 0.75958101]\n", + " [ 1.60863554 31.46458045]\n", + " [ 1.60946926 27.07815197]\n", + " [ 1.61030297 22.69172348]\n", + " [ 1.61113668 18.30529498]\n", + " [ 1.61197039 13.91886648]\n", + " [ 1.6128041 9.53243799]\n", + " [ 1.61363782 5.1460095 ]\n", + " [ 1.61447153 0.75958101]\n", + " [32.29899849 29.55791363]\n", + " [32.30002028 24.18191372]\n", + " [32.30104209 18.80591382]\n", + " [32.30206388 13.42991392DEBUG:root:optics_fp: rtanth: [31.42709713 27.04074579 22.65442436 18.26815439 13.88198464 9.49605401\n", + " 5.11097808 0.742067 31.42709713 31.75564253 32.6750783 34.13769417\n", + " 36.07748738 38.42225317 41.10274314 44.05772304 0.742067 4.61617395\n", + " 8.97490789 13.35179361 17.73339574 22.11691136 26.50139096 30.88642402\n", + " 44.05772304 41.04415255 38.29678143 35.87681689 33.85454213 32.30472979\n", + " 31.29764563 30.88642402 29.51471971 24.13885305 18.76306281 13.38744101\n", + " 8.01232674 2.64082086 31.48077532 32.28565953 33.93362876 36.31007107\n", + " 39.28300031 42.72809051 2.2117621 7.49776555 12.85860945 18.22838275\n", + " 23.6009913 28.97485798 42.70371969 39.18128664 36.11843741 33.64093596\n", + " 31.88551984 30.97519863 31.41218354 31.41218354 30.87178238 30.87178238\n", + " 29.58771061 30.4426874 32.18516063 34.68161856 37.78289981 41.35315131\n", + " 24.22804504 25.26505023 27.33953387 30.23872042 33.75074911 37.7047566\n", + " 18.87767108 20.19136108 22.73364051 26.14858527 30.14102461 34.5111137\n", + " 13.54760187 15.32521165946678 -0.1259519 0.9902524 ]\n", + " [-0.02324061 -0.1262541 0.99172566]\n", + " [-0.19998259 -0.08758892 0.9758766 ]\n", + " [-0.16617376 -0.08849133 0.9821179 ]\n", + " [-0.13140827 -0.08922984 0.98730436]\n", + " [-0.09588212 -0.08980108 0.99133364]\n", + " [-0.05979589 -0.09020062 0.9941269 ]\n", + " [-0.0233572 -0.09042422 0.9956294 ]\n", + " [-0.20073433 -0.05232353 0.9782474 ]\n", + " [-0.16679525 -0.0528708 0.98457302]\n", + " [-0.13189744 -0.053321 0.98982824]\n", + " [-0.09623556 -0.05367171 0.99391049]\n", + " [-0.06000982 -0.05391982 0.99674043]\n", + " [-0.02342863 -0.0540624 0.99826267]\n", + " [-0.20109591 -0.016752 0.97942831]\n", + " [-0.16709274 -0.01694088 0.98579563]\n", + " [-0.13212968 -0.01709901 0.99108495]\n", + " [-0.09640067 -0.01722548 0.99519355]\n", + " [-0.06010576 -0.01731915 0.99804176]\n", + " [-0.0234538 -0.01737894 0.99957386]]\n", + "DEBUG:root:cartToSphere: vec: [[0.20658103 0.20098859 0.9575635 ]\n", + " [0.20838989 0.17447006 0.96235848]\n", + " [0.20993522 0.14727238 0.9665599 ]\n", + " [0.21121099 0.11949936 0.97010815]\n", + " [0.21221385 0.09125926 0.97295274]\n", + " [0.21294172 0.]\n", + " [32.30308568 8.05391402]\n", + " [32.30410748 2.67791411]\n", + " [30.40113787 31.45505294]\n", + " [25.02513797 31.45403115]\n", + " [19.64913807 31.45300935]\n", + " [14.27313817 31.45198755]\n", + " [ 8.89713826 31.45096576]\n", + " [ 3.52113836 31.44994396]\n", + " [30.40696816 0.7800535 ]\n", + " [25.03096826 0.7790317 ]\n", + " [19.65496836 0.7780099 ]\n", + " [14.27896845 0.77698811]\n", + " [ 8.90296855 0.77596631]\n", + " [ 3.52696865 0.77494451]\n", + " [ 1.62399904 29.55208334]\n", + " [ 1.62502084 24.17608344]\n", + " [ 1.62604264 18.80008353]\n", + " [ 1.62706443 13.42408364]\n", + " [ 1.62808623 8.04808373]\n", + " [ 1.62910803 2.67208383]\n", + " [32.29863784 31.4554136 ]\n", + " [32.29863784 31.4554136 ]\n", + " [ 1.62946868 0.77458386]\n", + " [ 1.62946868 0.77458386]\n", + " [30.40149852 29.55755297]\n", + " [25.02549862 29.55653118]\n", + " [19.64949872 29.55550938]\n", + " [14.27349882 29.55448759]\n", + " [ 8.89749891 29.55346579]\n", + " [ 3.52149901 29.55244399]\n", + " [30.40252032 24.18155307]\n", + " [25.02652042 24.18053128]\n", + " [19.65052052 24.17950948]\n", + " [14.27452061 24.17848769]\n", + " [ 8.89852071 24.17746589]\n", + " [ 3.52252081 24.17644409]\n", + " [30.40354212 18.80555317]\n", + " [25.02754221 18.80453137]\n", + " [19.65154231 18.80350958]\n", + " [14.27554241 18.80248779]\n", + " [ 8.89954251 18.80146598]\n", + " [ 3.5235426 18.80044419]\n", + " [30.40456392 13.42955327]\n", + " [25.02856401 13.42853147]\n", + " [19.65256411 13.42750967]\n", + " [14.27656421 13.42648788]\n", + " [ 8.9005643 13.42546608]\n", + " [ 3.5245644 13.42444429]\n", + " [30.40558571 8.05355336]\n", + " [25.02958581 8.05253157]\n", + " [19.6535859 8.05150977]\n", + " [14.277586 8.05048797]\n", + " [ 8.9015861 8.04946618]\n", + " [ 3.5255862 8.04844438]\n", + " [30.40660751 2.67755346]\n", + " [25.0306076 2.67653166]\n", + " [19.6546077 2.67550987]\n", + " [14.2786078 2.67448807]\n", + " [ 8.90260789 2.67346627]\n", + " [ 3.52660799 2.67244448]]\n", + "06266255 0.97505345]\n", + " [0.21339307 0.03382097 0.97638084]\n", + " [0.21356684 0.00484709 0.97691643]\n", + " [0.20658103 0.20098859 0.9575635 ]\n", + " [0.18015754 0.20282418 0.96249967]\n", + " [0.1530338 0.20440426 0.96685033]\n", + " [0.12531307 0.20572264 0.97055388]\n", + " [0.09710338 0.20677589 0.97355774]\n", + " [0.06851504 0.2075618 0.97581955]\n", + " [0.03965966 0.2080787 0.97730771]\n", + " [0.01064976 0.20832528 0.9780010000e+02]\n", + " [ 7.99800000e+02 8.43800000e+02]\n", + " [ 1.15820000e+03 8.43800000e+02]\n", + " [ 1.51660000e+03 8.43800000e+02]\n", + " [ 1.87500000e+03 8.43800000e+02]\n", + " [ 8.30000001e+01 1.20220000e+03]\n", + " [ 4.41400000e+02 1.20220000e+03]\n", + " [ 7.99800000e+02 1.20220000e+03]\n", + " [ 1.15820000e+03 1.20220000e+03]\n", + " [ 1.51660000e+03 1.20220000e+03]\n", + " [ 1.87500000e+03 1.20220000e+03]\n", + " [ 8.30000002e+01 1.56060000e+03]\n", + " [ 4.41400000e+02 1.56060000e+03]\n", + " [ 7.99800000e+02 1.56060000e+03]\n", + " [ 1.15820000e+03 1.56060000e+03]\n", + " [ 1.51660000e+03 1.56060000e+03]\n", + " [ 1.87500000e+03 1.56060000e+03]\n", + " [ 8.29999999e+01 1.91900000e+03]\n", + " [ 4.41400000e+02 1.91900000e+03]\n", + " [ 7.99800000e+02 1.91900000e+03]\n", + " [ 1.15820000e+03 1.91900000e+03]\n", + " [ 1.51660000e+03 1.91900000e+03]\n", + " [ 1.87500000e+03 1.91900000e+03]]\n", + "62]\n", + " [0.21356684 0.00484709 0.97691643]\n", + " [0.18621882 0.00490326 0.98249606]\n", + " [0.15815829 0.00495363 0.98740135]\n", + " [0.12949192 0.00499813 0.99156788]\n", + " [0.10032565 0.0050366 0.99494191]\n", + " [0.07076705 0.00506881 0.99747999]\n", + " [0.04092766 0.00509451 0.99914912]\n", + " [0.01092393 0.00511348 0.99992726]\n", + " [0.01064976 0.20832528 0.97800162]\n", + " [0.01072986 0.18083307 0.98345527]\n", + " [0.01079662 0.15264908 0.98822148]\n", + " [0.01085001 0.12387974 0.99223792]\n", + " [0.01088978 0.09463112 0.99545284]\n", + " [0.0109156 0.06501141 0.99782482]\n", + " [0.01092708 0.0351331 0.9993229 ]\n", + " [0.01092393 0.00511348 0.99992726]\n", + " [0.20731213 0.18952259 0.95974104]\n", + " [0.20935192 0.15655094 0.96522722]\n", + " [0.21098964 0.12266162 0.96976157]\n", + " [0.21221814 0.08805229 0.97324727]\n", + " [0.21303349 0.05292621 0.97561035]\n", + " [0.21343308 0.01748945 0.97680113]\n", + " [0.19515895 0.20172997 0.95980102]\n", + " [0.16228971 0.20380791 0.96546589]\n", + " [0.12847052 0.20549566 0.97018908]\n", + " [0.09389848 0.20678588 0.97386995]\n", + " [0.05877657 0.20767444 0.97643056]\n", + " [0.02331064 0.20815839 0.97781731]\n", + " [0.20173739 0.00497187 0.97942703]\n", + " [0.16772694 0.00503783 0.98582062]\n", + " [0.13275239 0.00509482 0.99113614]\n", + " [0.09700904 0.00514259 0.99527021]\n", + " [0.06069518 0.00518073 0.9981429 ]\n", + " [0.02401827 0.00520877 0.9DEBUG:root:cartToSphere: vec: [[-0.20605921 -0.20169937 0.95752648]\n", + " [-0.20787315 -0.17519485 0.96233857]\n", + " [-0.20942436 -0.1480085 0.96655829]\n", + " [-0.21070676 -0.12024402 0.97012578]\n", + " [-0.21171698 -0.09200964 0.97299031]\n", + " [-0.21245291 -0.06341581 0.97511138]\n", + " [-0.21291301 -0.03457423 0.97645925]\n", + " [-0.2130962 -0.00559748 0.97701519]\n", + " [-0.20605921 -0.20169937 0.95752648]\n", + " [-0.17962884 -0.20353396 0.96244865]\n", + " [-0.15250018 -0.20511207 0.96678474]\n", + " [-0.12477652 -0.20642749 0.97047334]\n", + " [-0.0965659 -0.20747679 0.97346207]\n", + " [-0.06797863 -0.20825778 0.97570877]\n", + " [-0.03912632 -0.20876879 0.97718203]\n", + " [-0.01012153 -0.20900854 0.97786143]\n", + " [-0.2130962 -0.00559748 0.97701519]\n", + " [-0.18573503 -0.00565735 0.98258358]\n", + " [-0.15766321 -0.00571045 0.98747643]\n", + " [-0.1289874 -0.00575671 0.99162952]\n", + " [-0.09981355 -0.00579596 0.99498928]\n", + " [-0.07024926 -0.00582797 0.99751244]\n", + " [-0.04040619 -0.00585246 0.9991662 ]\n", + " [-0.01040084 -0.00586919 0.99992869]\n", + " [-0.01012153 -0.20900854 0.97786143]\n", + " [-0.01020027 -0.18153487 0.98333161]\n", + " [-0.01026637 -0.15336672 0.98811601]\n", + " [-0.01031977 -0.12461057 0.99215206]\n", + " [-0.01036027 -0.09537244 0.99538774]\n", + " [-0.01038751 -0.06576046 0.99778137]\n", + " [-0.01040113 -0.03588698 0.99930173]\n", + " [-0.01040084 -0.00586919 0.99992869]\n", + " [-0.20679239 -0.1902398 0.95971127]\n", + " [-0.20883895 -0.15728353 0.96521924]\n", + " [-0.21048459 -0.12340547 0.96977695]\n", + " [-0.2117221 -0.08880315 0.97328709]\n", + " [-0.21254753 -0.0536798 0.97567516]\n", + " [-0.21295821 -0.01824146 0.97689101]\n", + " [-0.1946339 -0.20244048 0.95975804]\n", + " [-0.16175754 -0.20451655 0.96540534]\n", + " [-0.12793421 -0.20620095 0.97011031]\n", + " [-0.09336102 -0.20748634 0.97377263]\n", + " [-0.05824097 -0.2083686 0.97631476]\n", + " [-0.02277993 -0.2088448 0.97768345]\n", + " [-0.20126076 -0.00572401 0.97952098]\n", + " [-0.16723544 -0.00579384 0.98589996]\n", + " [-0.13224882 -0.00585326 0.99119927]\n", + " [-0.09649617 -0.00590199 0.99531586]\n", + " [-0.06017591 -0.0059396 0.99817012]\n", + " [-0.02349561 -0.00596558 0.99970614]\n", + " [-0.01025713 -0.197DEBUG:root:radec2pix: lng: [224.17091663 219.87741809 214.97008665 209.39598188 203.1373574\n", + " 196.23634076 188.81644128 181.08669631 224.17091663 228.3555716\n", + " 233.16265584 238.65783928 244.87601329 251.7942959 259.30486084\n", + " 267.20296141 181.08669631 181.26291687 181.50503492 181.85849799\n", + " 182.42298774 183.46757199 186.05387592 202.53707914 267.20296141\n", + " 266.75372148 266.13046308 265.20807536 263.70434622 260.82362196\n", + " 253.17669924 202.53707914 222.38348083 216.71601144 210.07066421\n", + " 202.39896016 193.78096287 184.48069147 225.9100405 231.44842444\n", + " 237.98973756 245.61222365 254.27065244 263.72553361 181.18560606\n", + " 181.44802269 181.85460599 182.56904059 184.15297918 190.61463228\n", + " 266.99438373 266.33112836 265.28794249 263.40934603 259.04191913\n", + " 238.94596845 224.17054014 224.17054014 202.81670057 202.81670057\n", + " 224.11986404 229.69237658 236.35966367 244.23925438 253.312778\n", + " 263.32641007 218.39761245 223.93365474 230.85002743 239.44337044\n", + " 249.86289594 261.85943825 211.60273873 216.79700073 DEBUG:root:make_az_asym: xyp: shape: (96, 2)\n", + "9969795]\n", + " [0.01078606 0.19643015 0.98045849]\n", + " [0.01087623 0.16225698 0.98668859]\n", + " [0.01094616 0.1271506 0.99182302]\n", + " [0.01099551 0.09130636 0.99576214]\n", + " [0.01102363 0.0549237 0.9984297 ]\n", + " [0.01102984 0.01821176 0.99977331]\n", + " [0.2064986 0.20090587 0.95759864]\n", + " [0.2064986 0.20090587 0.95759864]\n", + " [0.01102671 0.00521618 0.9999256 ]\n", + " [0.01102671 0.00521618 0.9999256 ]\n", + " [0.19592714 0.19029998 0.96197634]\n", + " [0.16292559 0.19225876 0.96772508]\n", + " [0.1289709 0.19384904 0.97251687]\n", + " [0.09426176 0.19506507 0.97625014]\n", + " [0.0590016 0.19590316 0.97884665]\n", + " [0.02339654 0.19636024 0.98025265]\n", + " [0.19785166 0.15719218 0.96754604]\n", + " [0.16451646 0.15880644 0.97350647]\n", + " [0.13022261 0.16011755 0.97847046]\n", + " [0.09517088 0.16112232 0.98233503]\n", + " [0.05956467 0.16181718 0.98502145]\n", + " [0.02361044 0.1621981 0.98647571]\n", + " [0.19939573 0.12316354 0.97214818]\n", + " [0.16579218 0.12442767 0.97827946]\n", + " [0.13122742 0.12545686 0.98338189]\n", + " [0.09590173 0.12624866 0.98735208]\n", + " [0.06001]\n", + " [-32.18857289 -29.63812445]\n", + " [-32.18795136 -24.26212448]\n", + " [-32.18732984 -18.88612452]\n", + " [-32.18670832 -13.51012455]\n", + " [-32.1860868 -8.13412459]\n", + " [-32.18546528 -2.75812462]\n", + " [-30.29129227 -31.5358438 ]\n", + " [-24.91529231 -31.53646533]\n", + " [-19.53929235 -31.53708685]\n", + " [-14.16329238 -31.53770837]\n", + " [ -8.78729242 -31.53832989]\n", + " [ -3.41129245 -31.53895142]\n", + " [-30.28774592 -0.86084401]\n", + " [-24.91174595 -0.86146553]\n", + " [-19.53574599 -0.86208705]\n", + " [-14.15974603 -0.86270858]\n", + " [ -8.78374606 -0.8633301 ]\n", + " [ -3.4077461 -0.86395162]\n", + " [ -1.5135731 -29.6416708 ]\n", + " [ -1.51295157 -24.26567084]\n", + " [ -1.51233005 -18.88967087]\n", + " [ -1.51170853 -13.51367091]\n", + " [ -1.51108701 -8.13767095]\n", + " [ -1.51046548 -2.76167097]\n", + " [-32.18879227 -31.53562444]\n", + " [-32.18879227 -31.53562444]\n", + " [ -1.51024611 -0.86417099]\n", + " [ -1.51024611 -0.86417099]\n", + " [-30.29107291 -29.63834382]\n", + " [-24.91507294 -29.63896534]\n", + " [-19.53907298 -29.63958686]\n", + " [-14.16307301 -29.64020839]\n", + " [ -8.78707305 -29.64082991]\n", + " [ -3.41107308 -29.64145143]\n", + " [-30.29045138 -24.26234385]\n", + " [-24.91445142 -24.26296538]\n", + " [-19.53845145 -24.2635869 ]\n", + " [-14.16245149 -24.26420842]\n", + " [ -8.78645152 -24.26482994]\n", + " [ -3.41045156 -24.26545147]\n", + " [-30.28982986 -18.88634389]\n", + " [-24.91382989 -18.88696541]\n", + " [-19.53782993 -18.88758693]\n", + " [-14.16182997 -18.88820846]\n", + " [ -8.78583 -18.88882997]\n", + " [ -3.40983004 -18.8894515 ]\n", + " [-30.28920834 -13.51034392]\n", + " [-24.91320837 -13.51096545]\n", + " [-19.53720841 -13.51158697]\n", + " [-14.16120844 -13.51220849]\n", + " [ -8.78520848 -13.51283002]\n", + " [ -3.40920852 -13.51345154]\n", + " [-30.28858681 -8.13434396]\n", + " [-24.91258685 -8.13496548]\n", + " [-19.53658688 -8.135587 ]\n", + " [-14.16058692 -8.13620852]\n", + " [ -8.78458696 -8.13683005]\n", + " [ -3.40858699 -8.13745157]\n", + " [-30.28796529 -2.75834399]\n", + " [-24.91196532 -2.75896552]\n", + " [-19.53596536 -2.75958704]\n", + " [-14.1599654 -2.76020856]\n", + " [ -8.78396543 -2.76083009]\n", + " [ -3.40796547 -2.76145161]]\n", + "727 0.12679897 0.99011108]\n", + " [0.02378066 0.1271029 0.99160442]\n", + " [0.20055377 0.08841323 0.97568503]\n", + " [0.16674959 0.08932369 0.98194493]\n", + " [0.13DEBUG:root:make_az_asym: xyp: shape: (96, 2)\n", + "DEBUG:root:optics_fp: xyfp shape: (96, 2)\n", + ".]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]]\n", + "DEBUG:root:radec2pix: fitpx: [[-4.99999744e-01 -4.99999751e-01]\n", + " [-5.00000258e-01 2.91928571e+02]\n", + " [-5.00000005e-01 5.84357143e+02]\n", + " [-4.99999941e-01 8.767857DEBUG:root:mm_to_pix: fitpx.shape: (96, 2)\n", + "14e+02]\n", + " [-4.99999889e-01 1.16921429e+03]\n", + " [-4.99999948e-01 1.46164286e+03]\n", + " [-5.00000143e-01 1.75407143e+03]\n", + " [-4.99999962e-01 2.04650000e+03]\n", + " [-4.99999744e-01 -4.99999751e-01]\n", + " [ 2.91928571e+02 -5.00000271e-01]\n", + " [ 5.84357143e+02 -4.99999959e-01]\n", + " [ 8.76785714e+02 -5.00000035e-01]\n", + " [ 1.16921429e+03 -5.00000130e-01]\n", + " [ 1.46164286e+03 -5.00000295e-01]\n", + " [ 1.75407143e+03 -5.00000131e-01]\n", + " [ 2.04650000e+03 -5.00000000e-01]\n", + " [-4.99999962e-01 2.04650000e+03]\n", + " [ 2.91928571e+02 2.04650000e+03]\n", + " [ 5.84357143e+02 2.04650000e+03]\n", + " [ 8.76785714e+02 2.04650000e+03]\n", + " [ 1.16921429e+03 2.04650000e+03]\n", + " [ 1.46164286e+03 2.04650000e+03]\n", + " [ 1.75407143e+03 2.04650000e+03]\n", + " [ 2.04650000e+03 2.04650000e+03]\n", + " [ 2.04650000e+03 -5.00000000e-01]\n", + " [ 2.04650000e+03 2.91928571e+02]\n", + " [ 2.04650000e+03 5.84357143e+02]\n", + " [ 2.04650000e+03 8.76785714e+02]\n", + " [ 2.04650000e+03 1.16921429e+03]\n", + " [ 2.04650000e+03 1.46164286e+03]\n", + " [ 2.04650000e+03 1.75407143e+03]\n", + " [ 2.04650000e+03 2.04650000e+03]\n", + " [ 4.99999742e-01 1.27000000e+02]\n", + " [ 4.99999873e-01 4.85400000e+02]\n", + " [ 4.99999712e-01 8.43800000e+02]\n", + " [ 5.00000277e-01 1.20220000e+03]\n", + " [ 5.00000282e-01 1.56060000e+03]\n", + " [ 4.99999780e-01 1.91900000e+03]\n", + " [ 1.27000000e+02 4.99999945e-01]\n", + " [ 4.85400000e+02 4.99999943e-01]\n", + " [ 8.43800000e+02 5.00000147e-01]\n", + " [ 1.20220000e+03 4.99999799e-01]\n", + " [ 1.56060000e+03 5.00000078e-01]\n", + " [ 1.91900000e+03 4.99999710e-01]\n", + " [ 1.27000000e+02 2.04550000e+03]\n", + " [ 4.85400000e+02 2.04550000e+03]\n", + " [ 8.43800000e+02 2.04550000e+03]\n", + " [ 1.20220000e+03 2.04550000e+03]\n", + " [ 1.56060000e+03 2.04550000e+03]\n", + " [ 1.91900000e+03 2.04550000e+03]\n", + " [ 2.04550000e+03 1.27000000e+02]\n", + " [ 2.04550000e+03 4.85400000e+02]\n", + " [ 2.04550000e+03 8.43800000e+02]\n", + " [ 2.04550000e+03 1.20220000e+03]\n", + " [ 2.04550000e+03 1.56060000e+03]\n", + " [ 2.04550000e+03 1.91900000e+03]\n", + " [ 5.00000247e-01 5.00000241e-01]\n", + " [ 5.00000247e-01 5.00000241e-01]\n", + " [ 2.04550000e+03 2.04550000e+03]\n", + " [ 2.04550000e+03 2.04550000e+03]\n", + " [ 1.27000000e+02 1.27000000e+02]\n", + " [ 4.85400000e+02 1.27000000e+02]\n", + " [ 8.43800000e+02 1.27000000e+02]\n", + " [ 1.20220000e+03 1.27000000e+02]\n", + " [ 1.56060000e+03 1.27000000e+02]\n", + " [ 1.91900000e+03 1.27000000e+02]\n", + " [ 1.27000000e+02 4.85400000e+02]\n", + " [ 4.85400000e+02 4.85400000e+02]\n", + " [ 8.43800000e+02 4.85400000e+02]\n", + " [ 1.20220000e+03 4.85400000e+02]\n", + " [ 1.56060000e+03 4.85400000e+02]\n", + " [ 1.91900000e+03 4.85400000e+02]\n", + " [ 1.27000000e+02 8.43800000e+02]\n", + " [ 4.85400000e+02 8.43800000e+02]\n", + " [ 8.43800000e+02 8.43800000e+02]\n", + " [ 1.20220000e+03 8.43800000e+02]\n", + " [ 1.56060000e+03 8.43800000e+02]\n", + " [ 1.91900000e+03 8.43800000e+02]\n", + " [ 1.27000000e+02 1.20220000e+03]\n", + " [ 4.85400000e+02 1.20220000e+03]\n", + " [ 8.43800000e+02 1.20220000e+03]\n", + " [ 1.20220000e+03 1.20220000e+03]\n", + " [ 1.56060000e+03 1.20220000e+03]\n", + " [ 1.91900000e+03 1.20220000e+03]\n", + " [ 1.27000000e+02 1.56060000e+03]\n", + " [ 4.85400000e+02 1.56060000e+03]\n", + " [ 8.43800000e+02 1.56060000e+03]\n", + " [ 1.20220000e+03 1.56060000e+03]\n", + " [ 1.5606198281 0.09006766 0.98715164]\n", + " [0.09645193 0.09064294 0.99120174]\n", + " [0.06035751 0.0910454 0.99401595]\n", + " [0.0239064 0.09127018 0.99553917]\n", + " [0.20132229 0.05314506 0.97808228]\n", + " [0.16738526 0.05369842 0.98442808]\n", + " [0.13248471 0.05415286 0.98970464]\n", + " [0.09681723 0.05450669 0.99380856]\n", + " [0.06058199 0.05475678 0.99666018]\n", + " [0.02398618 0.05489951 0.99820374]\n", + " [0.20169858 0.0175654 0.97929012]\n", + " [0.16769559 0.01775879 0.98567886]\n", + " [0.13272857 0.01791986 0.99099042]\n", + " [0.09699294 0.01804791 0.99512142]\n", + " [0.06068709 0.01814173 0.99799196]\n", + " [0.02401844 0.01819993 0.99954584]]\n", + "DEBUG:root:radec2pix: xyfp: [[-32.29046994 -31.71666141]\n", + " [-32.28860507 -27.33023323]\n", + " [-32.2867402 -22.94380505]\n", + " [-32.28487534 -18.55737688]\n", + " [-32.28301047 -14.1709487 ]\n", + " [-32.2811456 -9.78452053]\n", + " [-32.27928073 -5.39809235]\n", + " [-32.27741587 -1.01166418]\n", + " [-32.29046994 -31.71666141]\n", + " [-27.90404176 -31.71852627]\n", + " [-23.51761359 -31.72039114]\n", + " [-19.13118541 -31.722256 ]\n", + " [-14.74475724 -31.72412087]\n", + " [-10.35832906 -31.72598DEBUG:root:radec2pix: xyfp: [[32.31363499 31.47041645]\n", + " [32.3144687 27.08398795]\n", + " [32.31530242 22.69755946]\n", + " [32.31613613 18.31113097]\n", + " [32.31696984 13.92470248]\n", + " [32.31780355 9.53827398]\n", + " [32.31863726 5.15184549]\n", + " [32.31947097 0.765417 ]\n", + " [32.31363499 31.47041645]\n", + " [27.9272065 31.46958273]\n", + " [23.540778 31.46874902]\n", + " [19.15434951 31.46791531]\n", + " [14.76792102 31.4670816 ]\n", + " [10.38149253 31.46624788]\n", + " [ 5.99506403 31.46541417]\n", + " [ 1.60863554 31.46458045]\n", + " [32.31947097 0.765417 ]\n", + " [27.93304248 0.76458329]\n", + " [23.54661399 0.76374957]\n", + " [19.1601855 0.76291586]\n", + " [14.77375701 0.76208215]\n", + " [10.38732851 0.76124844]\n", + " [ 6.00090002 0.76041472]\n", + " [ 1.61447153 0.75958101]\n", + " [ 1.60863554 31.46458045]\n", + " [ 1.60946926 27.07815197]\n", + " [ 1.61030297 22.69172348]\n", + " [ 1.61113668 18.30529498]\n", + " [ 1.61197039 13.91886648]\n", + " [ 1.6128041 9.53243799]\n", + " [ 1.61363782 5.1460095 ]\n", + " [ 1.61447153 0.75958101]\n", + " [32.29899849 29.55791363]\n", + " [32.30002028 24.18191372]\n", + " [32.30104209 18.80591382]\n", + " [32.30206388 13.42991392]\n", + "DEBUG:root:make_az_asym: xyp: [[ -0.172993 31.426621 ]\n", + " [ -0.172993 27.04019243]\n", + " [ -0.172993 22.65376385]\n", + " [ -0.172993 18.26733528]\n", + " [ -0.172993 13.88090671]\n", + " [ -0.172993 9.49447814]\n", + " [ -0.172993 5.10804957]\n", + " [ -0.172993 0.721621 ]\n", + " [ -0.172993 31.426621 ]\n", + " [ -4.55942157 31.426621 ]\n", + " [ -8.94585014 31.426621 ]\n", + " [-13.33227871 31.426621 ]\n", + " [-17.71870729 31.426621 ]\n", + " [-22.10513586 31.426621 ]\n", + " [-26.49156443 31.426621 ]\n", + " [-30.877993 31.426621 ]\n", + " [ -0.172993 0.721621 ]\n", + " [ -4.55942157 0.721621 ]\n", + " [ -8.94585014 0.721621 ]\n", + " [-13.33227872 0.721621 ]\n", + " [-17.71870728 0.721621 ]\n", + " [-22.10513586 0.721621 ]\n", + " [-26.49156443 0.721621 ]\n", + " [-30.877993 0.721621 ]\n", + " [-30.877993 31.426621 ]\n", + " [-30.877993 27.04019243]\n", + " [-30.877993 22.65376385]\n", + " [-30.877993 18.26733529]\n", + " [-30.877993 13.88090671]\n", + " [-30.877993 9.49447814]\n", + " [-30.877993 5.10804957]\n", + " [-30.877993 0.721621 ]\n", + " [ -0.187993 29.514121 ]\n", + " [ -0.187993 0000e+03 1.56060000e+03]\n", + " [ 1.91900000e+03 1.56060000e+03]\n", + " [ 1.27000000e+02 1.91900000e+03]\n", + " [ 4.85400000e+02 1.91900000e+03]\n", + " [ 8.43800000e+02 1.91900000e+03]\n", + " [ 1.20220000e+03 1.91900000e+03]\n", + " [ 1.56060000e+03 1.91900000e+03]\n", + " [ 1.91900000e+03 1.91900000e+03]]\n", + "574]\n", + " [ -5.97190089 -31.72785061]\n", + " [ -1.58547272 -31.72971547]\n", + " [-32.27741587 -1.01166418]\n", + " [-27.8909877 -1.01352905]\n", + " [-23.50455952 -1.01539391]\n", + " [-19.11813134 -1.01725878]\n", + " [-14.73170317 -1.01912365]\n", + " [-10.345275 -1.02098851]\n", + " [ -5.95884682 -1.02285338]\n", + " [ -1.57241864 -1.02471825]\n", + " [ -1.58547272 -31.72971547]\n", + " [ -1.58360785 -27.3432873 ]\n", + " [ -1.58174298 -22.95685912]\n", + " [ -1.57987811 -18.57043094]\n", + " [ -1.57801325 -14.18400278]\n", + " [ -1.57614838 -9.7975746 ]\n", + " [ -1.57428351 -5.41114642]\n", + " [ -1.57241864 -1.02471825]\n", + " [-32.27465685 -29.80416795]\n", + " [-32.27237127 -24.42816844]\n", + " [-32.2700857 -19.05216893]\n", + " [-32.26780012 -13.67616941]\n", + " [-32.26551454 -8.3001699 ]\n", + " [-32.26322896 -2.92417038]\n", + " [-30.37796373 -31.7024744912185 0.98032534]\n", + " [-0.01034611 -0.16296958 0.98657685]\n", + " [-0.01041588 -0.1278801 0.99173494]\n", + " [-0.01046611 -0.09204872 0.9956995 ]\n", + " [-0.01049618 -0.05567473 0.99839379]\n", + " [-0.01050541 -0.01896706 0.99976492]\n", + " [-0.20597676 -0.2016167 0.95756163]\n", + " [-0.20597676 -0.2016167 0.95756163]\n", + " [-0.01050361 -0.0059719 0.999927 ]\n", + " [-0.01050361 -0.0059719 0.999927 ]\n", + " [-0.19540403 -0.19101701 0.96194063]\n", + " [-0.16239488 -0.19297429 0.96767186]\n", + " [-0.12843557 -0.19456158 0.97244542]\n", + " [-0.09372478 -0.19577312 0.97616011]\n", + " [-0.05846599 -0.19660523 0.97873802]\n", + " [-0.02286533 -0.1970549 0.98012578]\n", + " [-0.19733483 -0.15792497 0.96753226]\n", + " [-0.16399068 -0.15953875 0.97347545]\n", + " [-0.1296908 -0.16084786 0.97842131]\n", + " [-0.094636 -0.1618491 0.98226722]\n", + " [-0.05902974 -0.16253892 0.98493482]\n", + " [-0.02307851 -0.16291334 0.98637043]\n", + " [-0.19888634 -0.12390793 0.97215793]\n", + " [-0.16527244 -0.1251726 0.97827237]\n", + " [-0.13070023 -0.12620079 0.98335691]\n", + " [-0.09537003 -0.12699006 0.9873085 ]\n", + " [-0.0DEBUG:root:radec2pix: xyfp: [[-32.203794 -31.5506227 ]\n", + " [-32.20328688 -27.16419416]\n", + " [-32.20277976 -22.77776561]\n", + " [-32.20227264 -18.39133707]\n", + " [-32.20176553 -14.00490853]\n", + " [-32.20125841 -9.61847999]\n", + " [-32.20075129 -5.23205144]\n", + " [-32.20024417 -0.8456229 ]\n", + " [-32.203794 -31.5506227 ]\n", + " [-27.81736545 -31.55112981]\n", + " [-23.43093691 -31.55163693]\n", + " [-19.04450837 -31.55214405]\n", + " [-14.65807983 -31.55265117]\n", + " [-10.27165129 -31.55315829]\n", + " [ -5.88522274 -31.5536654 ]\n", + " [ -1.4987942 -31.55417252]\n", + " [-32.20024417 -0.8456229 ]\n", + " [-27.81381563 -0.84613002]\n", + " [-23.42738708 -0.84663714]\n", + " [-19.04095854 -0.84714426]\n", + " [-14.65453 -0.84765137]\n", + " [-10.26810146 -0.84815849]\n", + " [ -5.88167292 -0.84866561]\n", + " [ -1.49524438 -0.84917273]\n", + " [ -1.4987942 -31.55417252]\n", + " [ -1.49828708 -27.16774398]\n", + " [ -1.49777997 -22.78131544]\n", + " [ -1.49727285 -18.39488689]\n", + " [ -1.49676573 -14.00845835]\n", + " [ -1.49625861 -9.62202981]\n", + " [ -1.49575149 -5.23560127]\n", + " [ -1.49524438 -0.84917273]\n", + " [-32.18857289 -29.63812445]\n", + " [-32.18795136 ]\n", + " [-25.00196422 -31.70476008]\n", + " [-19.62596471 -31.70704565]\n", + " [-14.24996519 -31.70933123]\n", + " [ -8.87396568 -31.71161681]\n", + " [ -3.49796617 -31.71390239]\n", + " [-30.36492242 -1.02747727]\n", + " [-24.98892291 -1.02976285]\n", + " [-19.61292339 -1.03204842]\n", + " [-14.23692388 -1.034334 ]\n", + " [ -8.86092437 -1.03661958]\n", + " [ -3.48492485 -1.03890516]\n", + " [ -1.59965962 -29.81720927]\n", + " [ -1.59737405 -24.44120975]\n", + " [ -1.59508847 -19.06521024]\n", + " [ -1.59280289 -13.68921073]\n", + " [ -1.59051731 -8.31321121]\n", + " [ -1.58823174 -2.9372117 ]\n", + " [-32.27546357 -31.70166778]\n", + " [-32.27546357 -31.70166778]\n", + " [ -1.58742502 -1.03971187]\n", + " [ -1.58742502 -1.03971187]\n", + " [-30.37715702 -29.80497466]\n", + " [-25.00115751 -29.80726024]\n", + " [-19.625158 -29.80954582]\n", + " [-14.24915848 -29.8118314 ]\n", + " [ -8.87315897 -29.81411698]\n", + " [ -3.49715945 -29.81640256]\n", + " [-30.37487145 -24.42897515]\n", + " [-24.99887193 -24.43126073]\n", + " [-19.62287241 -24.43354631]\n", + " [-14.2468729 -24.43583188]\n", + " [ -8.87087339 -24.43811746]\n", + " [ -3.49487388 -24.44040305]\n", + " [-30.37258587 -19.05297564]\n", + " [-24.996586DEBUG:root:radec2pix: xyfp: [[-32.29046994 -31.71666141]\n", + " [-32.28860507 -27.33023323]\n", + " [-32.2867402 -22.94380505]\n", + " [-32.28487534 -18.55737688]\n", + " [-32.28301047 -14.1709487 ]\n", + " [-32.2811456 -9.78452053]\n", + " [-32.27928073 -5.39809235]\n", + " [-32.27741587 -1.01166418]\n", + " [-32.29046994 -31.71666141]\n", + " [-27.90404176 -31.71852627]\n", + " [-23.51761359 -31.72039114]\n", + " [-19.13118541 -31.722256 ]\n", + " [-14.74475724 -31.72412087]\n", + " [-10.35832906 -31.72598574]\n", + " [ -5.97190089 -31.72785061]\n", + " [ -1.58547272 -31.72971547]\n", + " [-32.27741587 -1.01166418]\n", + " [-27.8909877 -1.01352905]\n", + " [-23.50455952 -1.01539391]\n", + " [-19.11813134 -1.01725878]\n", + " [-14.73170317 -1.01912365]\n", + " [-10.345275 -1.02098851]\n", + " [ -5.95884682 -1.02285338]\n", + " [ -1.57241864 -1.02471825]\n", + " [ -1.58547272 -31.72971547]\n", + " [ -1.58360785 -27.3432873 ]\n", + " [ -1.58174298 -22.95685912]\n", + " [ -1.57987811 -18.57043094]\n", + " [ -1.57801325 -14.18400278]\n", + " [ -1.57614838 -9.7975746 ]\n", + " [ -1.57428351 -5.41114642]\n", + " [ -1.57241864 -1.02471825]\n", + " [-32.27465685 -29.80416795]\n", + " [-32.27237127 35 -19.05526122]\n", + " [-19.62058684 -19.05754679]\n", + " [-14.24458732 -19.05983237]\n", + " [ -8.86858781 -19.06211795]\n", + " [ -3.4925883 -19.06440353]\n", + " [-30.37030029 -13.67697612]\n", + " [-24.99430077 -13.6792617 ]\n", + " [-19.61830126 -13.68154728]\n", + " [-14.24230175 -13.68383286]\n", + " [ -8.86630223 -13.68611844]\n", + " [ -3.49030272 -13.68840401]\n", + " [-30.36801471 -8.30097661]\n", + " [-24.9920152 -8.30326219]\n", + " [-19.61601568 -8.30554776]\n", + " [-14.24001617 -8.30783335]\n", + " [ -8.86401666 -8.31011893]\n", + " [ -3.48801714 -8.3124045 ]\n", + " [-30.36572914 -2.9249771 ]\n", + " [-24.98972962 -2.92726267]\n", + " [-19.6137301 -2.92954825]\n", + " [-14.23773059 -2.93183383]\n", + " [ -8.86173108 -2.93411941]\n", + " [ -3.48573156 -2.93640499]]\n", + "-24.42816844]\n", + " [-32.2700857 -19.05216893]\n", + " [-32.26780012 -13.67616941]\n", + " [-32.26551454 -8.3001699 ]\n", + " [-32.26322896 -2.92417038]\n", + " [-30.37796373 -31.70247449]\n", + " [-25.00196422 -31.70476008]\n", + " [-19.62596471 -31.70704565]\n", + " [-14.24996519 -31.70933123]\n", + " [ -8.87396568 -31.71161681]\n", + " [ -3.49796617 -31.71390239]\n", + " [-30.36492242 -1.02747727]\n", + " [-24.98892291 -1.02976285]\n", + " [-19.61292339 -1.03204842]\n", + " [-14.23692388 -1.034334 ]\n", + " [ -8.86092437 -1.03661958]\n", + " [ -3.48492485 -1.03890516]\n", + " [ -1.59965962 -29.81720927]\n", + " [ -1.59737405 -24.44120975]\n", + " [ -1.59508847 -19.06521024]\n", + " [ -1.59280289 -13.68921073]\n", + " [ -1.59051731 -8.31321121]\n", + " [ -1.58823174 -2.9372117 ]\n", + " [-32.27546357 -31.70166778]\n", + " [-32.27546357 -31.70166778]\n", + " [ -1.58742502 -1.03971187]\n", + " [ -1.58742502 -1.03971187]\n", + " [-30.37715702 -29.80497466]\n", + " [-25.00115751 -29.80726024]\n", + " [-19.625158 -29.80954582]\n", + " [-14.24915848 -29.8118314 ]\n", + " [ -8.87315897 -29.81411698]\n", + " [ -3.49715945 -29.81640256]\n", + " [-30.37487145 -24.42897515]\n", + " [-24.99887193 -24.43126073]\n", + " [-19.62287241 -24.43354631]\n", + " [-14.2468729 -24.43583188]\n", + " [ -8.87087339 -24.43811746]\n", + " [ -3.49487388 -24.44040305]\n", + " [-30.37258587 -19.05297564]\n", + " [-24.99658635 -19.05526122]\n", + " [-19.62058684 -19.05754679]\n", + " [-14.24458732 -19.05983237]\n", + " [ -8.86858781 -19.06211795]\n", + " [ -3.4925883 -19.06440353]\n", + " [-30.37030029 -13.67697612]\n", + " [-24.99430077 -13.679261 24.138121 ]\n", + " [ -0.187993 18.76212101]\n", + " [ -0.187993 13.386121 ]\n", + " [ -0.187993 8.010121 ]\n", + " [ -0.187993 2.634121 ]\n", + " [ -2.085493 31.411621 ]\n", + " [ -7.461493 31.411621 ]\n", + " [-12.837493 31.411621 ]\n", + " [-18.213493 31.411621 ]\n", + " [-23.589493 31.411621 ]\n", + " [-28.965493 31.411621 ]\n", + " [ -2.085493 0.736621 ]\n", + " [ -7.461493 0.736621 ]\n", + " [-12.837493 0.736621 ]\n", + " [-18.213493 0.736621 ]\n", + " [-23.58949299 0.736621 ]\n", + " [-28.965493 0.736621 ]\n", + " [-30.862993 29.514121 ]\n", + " [-30.862993 24.138121 ]\n", + " [-30.862993 18.762121 ]\n", + " [-30.862993 13.386121 ]\n", + " [-30.862993 8.010121 ]\n", + " [-30.862993 2.634121 ]\n", + " [ -0.187993 31.411621 ]\n", + " [ -0.187993 31.411621 ]\n", + " [-30.862993 0.736621 ]\n", + " [-30.862993 0.736621 ]\n", + " [ -2.085493 29.514121 ]\n", + " [ -7.461493 29.514121 ]\n", + " [-12.837493 29.514121 ]\n", + " [-18.213493 29.514121 ]\n", + " [-23.589493 29.514121 ]\n", + " [-28.965493 29.514121 ]\n", + " [ -2.085493 24.138121 ]\n", + " [ -7.461493 24.138121 223.64273186\n", + " 232.75457852 244.72618682 259.56986466 203.65258863 208.03632189\n", + " 214.17758593 223.12426077 236.4587659 255.51668541 194.60966243\n", + " 197.58758667 202.01156736 209.14892478 221.94021993 246.56988658\n", + " 184.76194605 185.78921163 187.37371211 190.13104958 196.0740482\n", + " 216.53792504]\n", + "]\n", + " [-12.837493 24.138121 ]\n", + " [-18.213493 24.138121 ]\n", + " [-23.589493 24.138121 ]\n", + " [-28.965493 24.138121 ]\n", + " [ -2.085493 18.762121 ]\n", + " [ -7.461493 18.762121 ]\n", + " [-12.837493 18.762121 ]\n", + " [-18.213493 18.762121 ]\n", + " [-23.589493 18.762121 ]\n", + " [-28.965493 18.762121 ]\n", + " [ -2.085493 13.386121 ]\n", + " [ -7.461493 13.386121 ]\n", + " [-12.837493 13.386121 ]\n", + " [-18.213493 13.386121 ]\n", + " [-23.589493 13.386121 ]\n", + " [-28.965493 13.386121 ]\n", + " [ -2.085493 8.010121 ]\n", + " [ -7.461493 8.010121 ]\n", + " [-12.837493 8.010121 ]\n", + " [-18.213493 8.010121 ]\n", + " [-23.589493 8.010121 ]\n", + " [-28.965493 8.010121 ]\n", + " [ -2.085493 2.634121 ]\n", + " [ -7.461493 2.634121 ]\n", + " [-12.837493 2.634121 ]\n", + " [-18.213493 2.634121 ]\n", + " [-23.589493 2.634121 ]\n", + " [-28.965493 2.634121 ]]\n", + "9 18.5469529 22.60352987 27.12291311 31.90905859\n", + " 8.27715649 10.94695923 15.13153214 19.89706928 24.91237079 30.05265085\n", + " 3.35974322 7.91280426 13.10495402 18.40298673 23.73610696 29.08501983]\n", + "7 ]\n", + " [-19.61830126 -13.68154728]\n", + " [-14.24230175 -13.68383286]\n", + " [ -8.86630223 -13.68611844]\n", + " [ -3.49030272 -13.68840401]\n", + " [-30.36801471 -8.30097661]\n", + " [-24.9920152 -8.30326219]\n", + " [-19.61601568 -8.30554776]\n", + " [-14.24001617 -8.30783335]\n", + " [ -8.86401666 -8.31011893]\n", + " [ -3.48801714 -8.3124045 ]\n", + " [-30.36572914 -2.9249771 ]\n", + " [-24.98972962 -2.92726267]\n", + " [-19.6137301 -2.92954825]\n", + " [-14.23773059 -2.93183383]\n", + " [ -8.86173108 -2.93411941]\n", + " [ -3.48573156 -2.93640499]]\n", + "DEBUG:root:fitpix2pix: ccdpx: shape: (96, 2)\n", + "DEBUG:root:radec2pix: lng: [44.21386846 39.93704685 35.05017674 29.50039724 23.26936887 16.39762201\n", + " 9.00597869 1.30015678 44.21386846 48.38707907 53.17846261 58.652901\n", + " 64.84492629-24.26212448]\n", + " [-32.18732984 -18.88612452]\n", + " [-32.18670832 -13.51012455]\n", + " [-32.1860868 -8.13412459]\n", + " [-32.18546528 -2.75812462]\n", + " [-30.29129227 -31.5358438 ]\n", + " [-24.91529231 -31.53646533]\n", + " [-19.53929235 -31.53708685]\n", + " [-14.16329238 -31.53770837]\n", + " [ -8.78729242 -31.53832989]\n", + " [ -3.41129245 -31.53895142]\n", + " [-30.28774592 -0.86084401]\n", + " [-24.91174595 -0.86146553]\n", + " [-19.53574599 -0.86208705]\n", + " [-14.15974603 -0.86270858]\n", + " [ -8.78374606 -0.8633301 ]\n", + " [ -3.4077461 -0.86395162]\n", + " [ -1.5135731 -29.6416708 ]\n", + " [ -1.51295157 -24.26567084]\n", + " [ -1.51233005 -18.88967087]\n", + " [ -1.51170853 -13.51367091]\n", + " [ -1.51108701 -8.13767095]\n", + " [ -1.51046548 -2.76167097]\n", + " [-32.18879227 -31.53562444]\n", + " [-32.18879227 -31.53562444]\n", + " [ -1.51024611 -0.86417099]\n", + " [ -1.51024611 -0.86417099]\n", + " [-30.29107291 -29.63834382]\n", + " [-24.91507294 -29.63896534]\n", + " [-19.53907298 -29.63958686]\n", + " [-14.16307301 -29.64020839]\n", + " [ -8.78707305 -29.64082991]\n", + " [ -3.41107308 -29.64145143]\n", + " [-30.29045138 -24.26234385]\n", + " [-24.91445142 -24.26296538]\n", + " [-19.53845145 -24.2635869 ]\n", + " [-14.16245149 -24.26420842]\n", + " [ -8.78645152 -24.26482994]\n", + " [ -3.41045156 -24.26545147]\n", + " [-30.28982986 -18.88634389]\n", + " [-24.91382989 -18.88696541]\n", + " [-19.53782993 -18.88758693]\n", + " [-14.16182997 -18.88820846]\n", + " [ -8.78583 -18.88882997]\n", + " [ -3.40983004 -18.8894515 ]\n", + " [-30.28920834 -13.51034392]\n", + " [-24.91320837 -13.51096545]\n", + " [-19.53720841 -13.51158697]\n", + " [-14.16120844 -13.51220849]\n", + " [ -8.78520848 -13.51283002]\n", + " [ -3.40920852 -13.51345154]\n", + " [-30.28858681 -8.13434396]\n", + " [-24.91258685 -8.13496548]\n", + " [-19.53658688 -8.135587 ]\n", + " [-14.16058692 -8.13620852]\n", + " [ -8.78458696 -8.13683005]\n", + " [ -3.40858699 -8.13745157]\n", + " [-30.28796529 -2.75834399]\n", + " [-24.91196532 -2.75896552]\n", + " [-19.53596536 -2.75958704]\n", + " [-14.1599654 -2.76020856]\n", + " [ -8.78396543 -2.76083009]\n", + " [ -3.40796547 -2.76145161]]\n", + "DEBUG:root:make_az_asym: xyp: shape: (96, 2)\n", + "DEBUG:root:fitpix2pix: visCut: True\n", + " 71.73221904 79.20889503 87.07353952 1.30015678 1.50828626\n", + " 1.79395925 2.21040578 2.87397756 4.0969DEBUG:root:optics_fp: cphi: [0.00550458 0.00639749 0.00763617 0.00946965 0.01246169 0.01821736\n", + " 0.03384734 0.23312315 0.00550458 0.14357831 0.27378206 0.39054421\n", + " 0.49112919 0.57532118 0.64452059 0.70085313 0.23312315 0.98770575\n", + " 0.99676233 0.99853841 0.99917171 0.99946758 0.99962921 0.99972703\n", + " 0.70085313 0.75231162 0.80628167 0.86066702 0.91207829 0.95583505\n", + " 0.98659156 0.99972703 0.00636947 0.00778798 0.01001931 0.01404249\n", + " 0.02346297 0.07118734 0.06624656 0.23110858 0.37831182 0.50160995\n", + " 0.60050131 0.67790282 0.94291018 0.99516222 0.9983578 0.99918316\n", + " 0.9995128 0.99967679 0.72272376 0.78769728 0.85449414 0.91742373\n", + " 0.96793131 0.99637757 0.00598472 0.00598472 0.99971529 0.99971529\n", + " 0.07048511 0.24509968 0.39886372 0.52516272 0.62434311 0.70044222\n", + " 0.08607764 0.29532864 0.46955786 0.60232354 0.69893243 0.76821854\n", + " 0.11047406 0.36953888 0.56469148 0.69653837 0.7826374 0.83930914\n", + " 0.15393817 0.48687699 0.69216184 0.80578092 0.86972564 0.90775141\n", + " 0.25195766 0.68160416 0.84839347 DEBUG:root:radec2pix: lat: [73.30319327 74.28364829 75.19434757 76.00760673 76.6934474 77.22149469\n", + " 77.56431546 77.70181842 73.30319327 74.31487163 75.26252869 76.11836609\n", + " 76.85166299 77.43039612 77.8244634 78.01035447 77.70181842 79.30062777\n", + " 80.93200296 82.59063863 84.2712796 85.96832552 87.67438557 89.35703566\n", + " 78.01035447 79.61411514 81.24861046 82.90802789 84.58587071 86.27294722\n", + " 87.94616945 89.35703566 73.74128804 74.89975016 75.92621516 76.76637844\n", + " 77.36466213 77.67335289 73.7541097 74.95468773 76.03182731 76.93013306\n", + " 77.59097642 77.96138218 78.39443735 80.37649363 82.40216048 84.46173597\n", + " 86.54472647 88.63280521 78.70517127 80.69206097 82.71932817 84.7752745\n", + " 86.84188191 88.83673743 73.31017726 73.31017726 89.34933673 89.34933673\n", + " 74.20408349 75.46003419 76.59358943 77.54526674 78.24998117 78.64701061\n", + " 75.41740928 76.83842002 78.14733268 79.2729755 80.12769991 80.61933545\n", + " 76.49875662 78.09183026 79.59737911 80.93621381 81.99355302 82.62428133\n", + " 77.38945666 79.14833894 0.91538572 0.94689876 0.96382489\n", + " 0.62072988 0.94296444 0.97959085 0.9897031 0.99382317 0.99589043]\n", + "80.86043698 82.45133489 83.78724838 84.64121324\n", + " 78.02753384 79.92284226 81.82091734 83.6737055 85.37260957 86.62213831\n", + " 78.35820379 80.33138971 82.34363217 84.38015735 86.41373806 88.32724747]\n", + " [32.30308568 8.05391402]\n", + " [32.30410748 2.67791411]\n", + " [30.40113787 31.45505294]\n", + " [25.02513797 31.45403115]\n", + " [19.64913807 31.45300935]\n", + " [14.27313817 31.45198755]\n", + " [ 8.89713826 31.45096576]\n", + " [ 3.52113836 31.44994396]\n", + " [30.40696816 0.7800535 ]\n", + " [25.03096826 0.7790317 ]\n", + " [19.65496836 0.7780099 ]\n", + " [14.27896845 0.77698811]\n", + " [ 8.90296855 0.77596631]\n", + " [ 3.52696865 0.77494451]\n", + " [ 1.62399904 29.55208334]\n", + " [ 1.62502084 24.17608344]\n", + " [ 1.62604264 18.80008353]\n", + " [ 1.62706443 13.42408364]\n", + " [ 1.62808623 8.04808373]\n", + " [ 1.62910803 2.67208383]\n", + " [32.29863784 31.4554136 ]\n", + " [32.29863784 31.4554136 ]\n", + " [ 1.62946868 0.77458386]\n", + " [ 1.62946868 0.77458386]\n", + " [30.40149852 29.55755297]\n", + " [25.02549862 29.55653118]\n", + " [19.64949872 29.55550938]\n", + " [14.27349882 29.55448759]\n", + " [ 8.89749891 29.55346579]\n", + " [ 3.52149901 29.55244399]\n", + " [30.40252032 24.18155307]\n", + " [25.02652042 24.18053128]\n", + " [19.65052052 24.17950948]\n", + " [14.27452061 24.17848769]\n", + " [ 8.89852071 24.17746589]\n", + " [ 3.52252081 24.17644409]\n", + " [30.40354212 18.80555317]\n", + " [25.02754221 18.80453137]\n", + " [19.65154231 18.80350958]\n", + " [14.27554241 18.80248779]\n", + " [ 8.89954251 18.80146598]\n", + " [ 3.5235426 18.80044419]\n", + " [30.40456392 13.42955327]\n", + " [25.02856401 13.42853147]\n", + " [19.65256411 13.42750967]\n", + " [14.27656421 13.42648788]\n", + " [ 8.9005643 13.42546608]\n", + " [ 3.5245644 13.42444429]\n", + " [30.40558571 8.05355336]\n", + " [25.02958581 8.05253157]\n", + " [19.6535859 8.05150977]\n", + " [14.277586 8.05048797]\n", + " [ 8.9015861 8.04946618]\n", + " [ 3.5255862 8.04844438]\n", + " [30.40660751 2.67755346]\n", + " [25.0306076 2.67653166]\n", + " [19.6546077 2.67550987]\n", + " [14.2786078 2.67448807]\n", + " [ 8.90260789 2.67346627]\n", + " [ 3.52660799 2.67244448]]\n", + "DEBUG:root:radec2pix: ccdpx: [[-4.45000003e+01 -5.00000268e-01]\n", + " [-4.44999998e+01 DEBUG:root:radec2pix: xyfp Shape: (96, 2)\n", + "2.91928572e+02]\n", + " [-4.44999999e+01 5.84357143e+02]\n", + " [-4.45000000e+01 8.76785714e+02]\n", + " [-4.44999998e+01 1.16921429e+03]\n", + " [-4.44999999e+01 1.46164286e+03]\n", + " [-4.44999997e+01 1.75407143e+03]\n", + " [-4.44999999e+01 2.04650000e+03]\n", + " [-4.45000003e+01 -5.00000268e-01]\n", + " [ 2.47928572e+02 -4.99999720e-01]\n", + " [ 5.40357143e+02 -5.00000140e-01]\n", + " [ 8.32785714e+02 -4.99999791e-01]\n", + " [ 1.12521429e+03 -4.99999975e-01]\n", + " [ 1.41764286e+03 -4.99999912e-01]\n", + " [ 1.71007143e+03 -4.99999978e-01]\n", + " [ 2.00250000e+03 -4.99999991e-01]\n", + " [-4.44999999e+01 2.04650000e+03]\n", + " [ 2.47928571e+02 2.04650000e+03]\n", + " [ 5.40357143e+02 2.04650000e+03]\n", + " [ 8.32785715e+02 2.04650000e+03]\n", + " [ 1.12521429e+03 2.04650000e+03]\n", + " [ 1.41764286e+03 2.04650000e+03]\n", + " [ 1.71007143e+03 2.04650000e+03]\n", + " [ 2.00250000e+03 2.04650000e+03]\n", + " [ 2.00250000e+03 -4.99999991e-01]\n", + " [ 2.00250000e+03 2.91928572e+02]\n", + " [ 2.00250000e+03 5.84357143e+02]\n", + " [ 2.00250000e+03 8.76785715e+02]\n", + " [ 2.00250000e+03 1.16921429e+05948408 -0.12753631 0.99004855]\n", + " [-0.02324907 -0.1278347 0.99152295]\n", + " [-0.20005292 -0.089165 0.97571944]\n", + " [-0.16623701 -0.090077 0.98196303]\n", + " [-0.13146138 -0.09082101 0.98715219]\n", + " [-0.09592455 -0.09139481 0.99118387]\n", + " [-0.05982716 -0.09179425 0.99397914]\n", + " [-0.0233762 -0.09201449 0.99548324]\n", + " [-0.20083104 -0.05389991 0.97814196]\n", + " [-0.16688094 -0.05445583 0.9844721 ]\n", + " [-0.13197015 -0.05491134 0.98973159]\n", + " [-0.09629527 -0.05526476 0.9938174 ]\n", + " [-0.0600556 -0.0555129 0.99665021]\n", + " [-0.02345845 -0.05565213 0.9981746 ]\n", + " [-0.20121796 -0.018319 0.97937518]\n", + " [-0.16720058 -0.01851594 0.98574902]\n", + " [-0.13222195 -0.01867909 0.99104412]\n", + " [-0.09647752 -0.01880776 0.99515745]\n", + " [-0.06016577 -0.01890068 0.99800944]\n", + " [-0.02349426 -0.01895646 0.99954423]]\n", + "0845 7.09544794 25.08421915\n", + " 87.07353952 86.60429547 85.95429853 84.99452258 83.43549808 80.46877478\n", + " 72.72327889 25.08421915 42.4332296 36.78871515 30.1721461 22.534249\n", + " 13.95213213 4.68455031 45.9485209 51.4701262 57.DEBUG:root:radec2pix: xyfp Shape: (96, 2)\n", + "DEBUG:root:radec2pix: ccdpx: [[-4.45000003e+01 -5.00000268e-01]\n", + " [-4.44999998e+01 2.91928572e+02]\n", + " [-4.44999999e+01 5.84357143e+02]\n", + " [-4.45000000e+01 8.76785714e+02]\n", + " [-4.44999998e+01 1.16921429e+03]\n", + " [-4.44999999e+01 1.46164286e+03]\n", + " [-4.44999997e+01 1.75407143e+03]\n", + " [-4.44999999e+01 2.04650000e+03]\n", + " [-4.45000003e+01 -5.00000268e-01]\n", + " [ 2.47928572e+02 -4.99999720e-01]\n", + " [ 5.40357143e+02 -5.00000140e-01]\n", + " [ 8.32785714e+02 -4.99999791e-01]\n", + " [ 1.12521429e+03 -4.99999975e-01]\n", + " [ 1.41764286e+03 -4.99999912e-01]\n", + " [ 1.71007143e+03 -4.99999978e-01]\n", + " [ 2.00250000e+03 -4.99999991e-01]\n", + " [-4.44999999e+01 2.04650000e+03]\n", + " [ 2.47928571e+02 2.04650000e+03]\n", + " [ 5.40357143e+02 2.04650000e+03]\n", + " [ 8.32785715e+02 2.04650000e+03]\n", + " [ 1.12521429e+03 2.04650000e+03]\n", + " [ 1.41764286e+03 2.04650000e+03]\n", + " [ 1.71007143e+03 2.04650000e+03]\n", + " [ 2.00250000e+03 2.04650000e+03]\n", + " [ 2.00250000e+03 -4.99999991e-01]\n", + " [ 2.00250000e+03 2.91928572e+02]\n", + " [ 2.00250000e+03 5.84357143e+02]\n", + " [ 2.00250000e+03 8.76785715e+02]\n", + " [ 2.00250000e+03 1.16921429e+03]\n", + " [ 2.00250000e+03 1.46164286e+03]\n", + " [ 2.00250000e+03 1.75407143e+03]\n", + " [ 2.00250000e+03 2.04650000e+03]\n", + " [-4.34999998e+01 1.27000000e+02]\n", + " [-4.35000000e+01 4.85400000e+02]\n", + " [-4.35000001e+01 8.43800000e+02]\n", + " [-4.35000000e+01 1.20220000e+03]\n", + " [-4.35000001e+01 1.56060000e+03]\n", + " [-4.34999999e+01 1.91900000e+03]\n", + " [ 8.30000001e+01 5.00000092e-01]\n", + " [ 4.41400000e+02 4.99999764e-01]\n", + " [ 7.99800000e+02 4.99999911e-01]\n", + " [ 1.15820000e+03 5.00000156e-01]\n", + " [ 1.51660000e+03 4.99999840e-01]\n", + " [ 1.87500000e+03 4.99999915e-01]\n", + " [ 8.29999998e+01 2.04550000e+03]\n", + " [ 4.41400000e+02 2.04550000e+03]\n", + " [ 7.99800000e+02 2.04550000e+03]\n", + " [ 1.15820000e+03 2.04550000e+03]\n", + " [ 1.51660000e+03 2.04550000e+03]\n", + " [ 1.87500000e+03 2.04550000e+03]\n", + " [ 2.00150000e+03 1.27000000e+02]\n", + " [ 2.00150000e+03 4.85400000e+02]\n", + " [ 2.00150000e+03 8.43800000e+02]\n", + " [ 2.00150000e+03 1.20220000e+03]\n", + " [ 2.00150000e+03 1.56060000e+03]\n", + " [ 2.00150000e+03 1.91900000e+03]\n", + " [-4.35000000e+01 4.99999958e-01]\n", + " [-4.35000000e+01 4.99999958e-01]\n", + " [ 2.00150000e+03 2.04550000e+03]\n", + " [ 2.00150000e+03 2.04550000e+03]\n", + " [ 8.30000002e+01 1.27000000e+02]\n", + " [ 4.41400000e+02 1.27000000e+02]\n", + " [ 7.99800000e+02 1.27000000e+02]\n", + " [ 1.15820000e+03 1.27000000e+02]\n", + " [ 1.51660000e+03 1.27000000e+02]\n", + " [ 1.87500000e+03 1.27000000e+02]\n", + " [ 8.29999999e+01 4.85400000e+02]\n", + " [ 4.41400000e+02 4.85400000e+02]\n", + " [ 7.99800000e+02 4.85400000e+02]\n", + " [ 1.15820000e+03 4.85400000e+02]\n", + " [ 1.51660000e+03 4.85400000e+02]\n", + " [ 1.87500000e+03 4.85400000e+02]\n", + " [ 8.30000001e+01 8.43800000e+02]\n", + " [ 4.41400000e+02 8.43800000e+02]\n", + " [ 7.99800000e+02 8.43800000e+02]\n", + " [ 1.15820000e+03 8.43800000e+02]\n", + " [ 1.51660000e+03 8.43800000e+02]\n", + " [ 1.87500000e+03 8.43800000e+02]\n", + " [ 8.29999999e+01 1.20220000e+03]\n", + " [ 4.41400000e+02 1.20220000e+03]\n", + " [ 7.99800000e+02 1.20220000e+03]\n", + " [ 1.15820000e+03 1.20220000e+03]\n", + " [ 1.51660000e+03 1.20220000e+03]\n", + " [ 1.87500000e+03 1.20220000e+03]\n", + " [ 8.29999999e+01 1.56060000e+03]\n", + " [ 4.41400000e+02 1.56060000e+03]\n", + " [ 7.99800000e+02 1.56060000e+03]\n", + " [ 1.15820000e+03 1.56060000e+03]\n", + " [ 1.51660000e+03 1.56060000e+03]\n", + " [ 1.87500000e+03 1.56060000e+03]\n", + " [ 8.29999998e+01 1.91900000e+03]\n", + " [ 4.41400000e+02 1.91900000e+03]\n", + " [ 7.99800000e+02 1.91900000e+03]\n", + " [ 1.15820000e+03 1.91900000e+03]\n", + " [ 1.51660000e+03 1.91900000e+03]\n", + " [ 1.87500000e+03 1.91900000e+03]]\n", + "3]\n", + " [ 2.00250000e+03 1.46164286e+03]\n", + " [ 2.00250000e+03 1.75407143e+03]\n", + " [ 2.00250000e+03 2.04650000e+03]\n", + " [-4.34999998e+01 1.27000000e+02]\n", + " [-4.35000000e+01 4.85400000e+02]\n", + " [-4.35000001e+01 8.43800000e+02]\n", + " [-4.35000000e+01 1.20220000e+03]\n", + " [-4.35000001e+01 1.56060000e+03]\n", + " [-4.34999999e+01 1.91900000e+03]\n", + " [ 8.30000001e+01 5.00000092e-01]\n", + " [ 4.41400000e+02 4.99999764e-01]\n", + " [ 7.99800000e+02 4.99999911e-01]\n", + " [ 1.15820000e+03 5.00000156e-01]\n", + " [ 1.51660000e+03 4.99999840e-01]\n", + " [ 1.87500000e+03 4.99999915e-01]\n", + " [ 8.29999998e+01 2.04550000e+03]\n", + " [ 4.41400000e+02 2.04550000e+03]\n", + " [ 7.99800000e+02 2.04550000e+03]\n", + " [ 1.15820000e+03 2.04550000e+03]\n", + " [ 1.51660000e+03 2.04550000e+03]\n", + " [ 1.87500000e+03 2.04550000e+03]\n", + " [ 2.00150000e+03 1.27000000e+02]\n", + " [ 2.00150000e+03 4.85400000e+02]\n", + " [ 2.00150000e+03 8.43800000e+02]\n", + " [ 2.00150000e+03 1.20220000e+03]\n", + " [ 2.00150000e+03 1.56060000e+03]\n", + " [ 2.00150000e+03 1.91900000e+03]\n", + " [-4.35000000e+01 4.99999958e-01]\n", + " [-4.35000000e+01 4.99999958e-01]\n", + " [ 2.00150000e+03 2.04550000e+03]\n", + " [ 2.00150000e+03 2.04550000e+03]\n", + " [ 8.30000002e+01 1.27000000e+02]\n", + " [ 4.41400000e+02 1.27000000e+02]\n", + " [ 7.99800000e+02 1.27000000e+02]\n", + " [ 1.15820000e+03 1.27000000e+02]\n", + " [ 1.51660000e+03 1.27000000e+02]\n", + " [ 1.87500000e+03 1.27000000e+02]\n", + " [ 8.29999999e+01 4.85400000e+02]\n", + " [ 4.41400000e+02 4.85400000e+02]\n", + " [ 7.99800000e+02 4.85400000e+02]\n", + " [ 1.15820000e+03 4.85400000e+02]\n", + " [ 1.51660000e+03 4.85400000e+02]\n", + " [ 1.87500000e+03 4.85400000e+02]\n", + " [ 8.30000001e+01 8.43800000e+02]\n", + " [ 4.41400000e+02 8.43800000e+02]\n", + " [ 7.99800000e+02 8.43800000e+02]\n", + " [ 1.15820000e+03 8.43800000e+02]\n", + " [ 1.51660000e+03 8.43800000e+02]\n", + " [ 1.87500000e+03 8.43800000e+02]\n", + " [ 8.29999999e+01 1.20220000e+03]\n", + " [ 4.41400000e+02 1.20220000e+03]\n", + " [ 7.99800000e+02 1.20220000e+03]\n", + " [ 1.15820000e+03 1.20220000e+03]\n", + " [ 1.51660000e+03 1.20220000e+03]\n", + " [ 1.87500000e+03 1.20220000e+03]\n", + " [ 8.29999999e+01 1.56060000e+03]\n", + " [ 4.41400000e+02 1.56060000e+03]\n", + " [ 7.99800000e+02 1.56060000e+03]\n", + " [ 1.15820000e+03 1.56060000e+03]\n", + " [ 1.51660000e+03 1.56060000e+03]\n", + " [ 1.87500000e+03 1.56060000e+03]\n", + " [ 8.29999998e+01 1.91900000e+03]\n", + " [ 4.41400000e+02 1.91900000e+03]\n", + " [ 7.99800000e+02 1.91900000e+03]\n", + " [ 1.15820000e+03 1.91900000e+03]\n", + " [ 1.51660000e+03 1.91900000e+03]\n", + " [ 1.87500000e+03 1.91900000e+03]]\n", + "DEBUG:root:optics_fp: sphi: [-0.99998485 -0.99997954 -0.99997084 -0.99995516 -0.99992235 -0.99983405\n", + " -0.99942701 -0.97244722 -0.99998485 -0.98963896 -0.96179176 -0.92058417\n", + " -0.87108674 -0.81792759 -0.76458695 -0.71330561 -0.97244722 -0.15632448\n", + " -0.08040428 -0.05404675 -0.04069277 -0.03262757 -0.02722955 -0.0233637\n", + " -0.71330561 -0.65880742 -0.59153179 -0.50916823 -0.41001608 -0.29390365\n", + " -0.16320875 -0.0233637 -0.99997971 -0.99996967 -0.99994981 -0.9999014\n", + " -0.99972471 -0.99746296 -0.99780328 -0.97292796 -0.92567822 -0.8650939\n", + " -0.79962377 -0.73515153 -0.33304712 -0.0982454 -0.05728621 -0.04041066\n", + " -0.03121144 -0.02542276 -0.69113701 -0.61606249 -0.51946104 -0.39791167\n", + " -0.251215 -0.08503968 -0.99998209 -0.99998209 -0.02386066 -0.02386066\n", + " -0.99751283 -0.96949788 -0.91701021 -0.85100183 -0.78115023 -0.71370911\n", + " -0.99628843 -0.95539573 -0.8829017 -0.79825206 -0.71518771 -0.64018769\n", + " -0.99387901 -0.92921527 -0.82530209 -0.71751954 -0.62247788 -0.54365446\n", + " -0.98808048 -0.87347054 -0.72174233 -0.59221374 -0.49353552 -0.41950849\n", + " -0.96773826 -0.7317211 -0.52936616 -0.40257793 -0.32153186 -0.26653625\n", + " -0.7840245 -0.33289349 -0.20100193 -0.14313552 -0.11097528 -0.09056624]\n", + "98745342 65.57788622\n", + " 74.19728483 83.61034654 1.41178444 1.72041252 2.19784005 3.03449456\n", + " 4.87874528 12.23608945 86.85702241 86.16514834 85.07964235 83.13325955\n", + " 78.65106614 58.79906907 44.21351009 44.21351009 25.31647093 25.31647093\n", + " 44.16528338 49.72110165 56.36353517 64.20866184 73.23888739 83.20517984\n", + " 38.4669715 43.98823734 50.87875671 59.43072848 69.79141059 81.71788613\n", + " 31.70295803 36.8883708 43.71214181 52.77876171 64.67058062 79.40261268\n", + " 23.79006954 28.17687017 34.3103939 43.22163096 56.45806862 75.32225144\n", + " 14.78760738 17.78662299 22.23218915 29.3788791 42.10872179 66.39896872\n", + " 4.97718101 6.0450351 7.68908472 10.5407344 16.64345121 37.15297361]\n", + "DEBUG:root:radec2pix: lng: [224.38740491 220.12408621 215.2503637 209.71210534 203.48918374\n", + " 196.62002098 189.22355762 181.5046646 224.38740491 228.56999572\n", + " 233.3693139 238.84884696 245.04132431 251.92249978 259.38507008\n", + " 267.22753799 181.5046646 181.74464663 182.07430544 182.55541483\n", + " 183.32331288 184.74247093 188.24144189 209.436015 267.22753799\n", + " 266.78398778 266.170335 265.26578644 263.80029466 261.02373287\n", + " 253.83681058 209.436015 222.61267508 216.98461546 210.38276245\n", + " 202.75476399 194.17390418 184.89586052 226.12630502 231.65859743\n", + " 238.18310357 245.77405246 254.38382437 263.77502084 181.62909594\n", + " 181.98420755 182.53422407 183.50001953 185.63706132 194.24647314\n", + " 267.02133208 266.36745836 265.3435183 263.51322198 259.32352397\n", + " 241.01895217 224.38712569 224.38712569 209.62070535 209.62070535\n", + " 224.34955164 229.91816922 236.57007702 244.41761198 253.43870278\n", + " 263.38126527 218.66991645 224.21163124 231.12094806 239.6844282\n", + " 250.04034734 261.9370562 211.92326671 217.13924206 223.99660639\n", + " 233.09330633 244.99523074 259.69237756 204.0228705 208.45144372\n", + " 214.63892612 223.61475061 236.90559041 255.7456151 195.0232601\n", + " 198.0723045 202.59166286 209.85191686 222.74900651 247.14363581\n", + " 185.201902 186.31923819 188.04100537 191.03114261 197.43976942\n", + " 218.89848666]\n", + "DEBUG:root:mm_to_pix: fitpx: [[0. 0.]\n", + " [0. 0.]\n", + " [0. DEBUG:root:mm_to_pix: fitpx: [[0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]]\n", + "DEBUG:root:radec2pix: xyfp: [[ -0.172993 31.426621 ]\n", + " [ -0.172993 27.04019243]\n", + " [ -0.172993 22.60.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]]\n", + "5376385]\n", + " [ -0.172993 18.26733528]\n", + " [ -0.172993 13.88090671]\n", + " [ -0.172993 9.49447814]\n", + " [ -0.172993 5.10804957]\n", + " [ -0.172993 0.721621 ]\n", + " [ -DEBUG:root:mm_to_pix: fitpx.shape: (96, 2)\n", + "0.172993 31.426621 ]\n", + " [ -4.55942157 31.426621 ]\n", + " [ -8.94585014 31.426621 ]\n", + " [-13.33227871 31.426621 ]\n", + " [-17.71870729 31.426621 ]\n", + " [-22.10513586 31.426621 ]\n", + " [-26.49156443 31.426621 ]\n", + " [-30.877993 31.426621 ]\n", + " [ -0.172993 0.721621 ]\n", + " [ -4.55942157 0.721621 ]\n", + " [ -8.94585014 0.721621 ]\n", + " [-13.33227872 0.721621 ]\n", + " [-17.71870728 0.721621 ]\n", + " [-22.10513586 0.721621 ]\n", + " [-26.49156443 0.721621 ]\n", + " [-30.877993 0.721621 ]\n", + " [-30.877993 31.426621 ]\n", + " [-30.877993 27.04019243]\n", + " [-30.877993 22.65376385]\n", + " [-30.877993 18.26733529]\n", + " [-30.877993 13.88090671]\n", + " [-30.877993 9.49447814]\n", + " [-30.877993 5.10804957]\n", + " [-30.877993 0.721621 ]\n", + " [ -0.187993 29.514121 ]\n", + " [ -0.187993 24.138121 ]\n", + " [ -0.187993 18.76212101]\n", + " [ -0.187993 13.386121 ]\n", + " [ -0.187993 8.010121 ]\n", + " [ -0.187993 2.634121 ]\n", + " [ -2.085493 31.411621 ]\n", + " [ -7.461493 31.411621 ]\n", + " [-12.837493 31.411621 ]\n", + " [-1DEBUG:root:mm_to_pix: fitpx.shape: (96, 2)\n", + "8.213493 31.411621 ]\n", + " [-23.589493 31.411621 ]\n", + " [-28.965493 31.411621 ]\n", + " [ -2.085493 0.736621 ]\n", + " [ -7.461493 0.736621 ]\n", + " [-12.837493 0.736621 ]\n", + " [-18.213493 0.736621 ]\n", + " [-23.58949299 0.736621 ]\n", + " [-28.965493 0.736621 ]\n", + " [-30.862993 29.514121 ]\n", + " [-30.862993 24.138121 ]\n", + " [-30.862993 18.762121 ]\n", + " [-30.862993 13.386121 ]\n", + " [-30.862993 8.010121 ]\n", + " [-30.862993 2.634121 ]\n", + " [ -0.187993 31.411621 ]\n", + " [ -0.187993 31.411621 ]\n", + " [-30.862993 0.736621 ]\n", + " [-30.862993 0.736621 ]\n", + " [ -2.085493 29.514121 ]\n", + " [ -7.461493 29.514121 ]\n", + " [-12.837493 29.514121 ]\n", + " [-18.213493 29.514121 ]\n", + " [-23.589493 29.514121 ]\n", + " [-28.965493 29.514121 ]\n", + " [ -2.085493 24.138121 ]\n", + " [ -7.461493 24.138121 ]\n", + " [-12.837493 24.138121 ]\n", + " [-18.213493 24.138121 ]\n", + " [-23.589493 24.138121 ]\n", + " [-28.965493 24.138121 ]\n", + " [ -2.085493 18.762121 ]\n", + " [ -7.461493 18.762121 ]\n", + " [-1DEBUG:root:radec2pix: fitpx: [[-5.00000272e-01 -5.00000268e-01]\n", + " [-4.99999785e-01 2.91928572e+02]\n", + " [-4.99999908e-01 5.84357143e+02]\n", + " [-4.99999976e-01 8.76785714e+02]\n", + " [-4.99999814e-01 1.16921429e+03]\n", + " [-4.99999859e-01 1.46164286e+03]\n", + " [-4.99999732e-01 1.75407143e+03]\n", + " [-4.99999866e-01 2.04650000e+03]\n", + " [-5.00000272e-01 -5.00000268e-01]\n", + " [ 2.91928572e+02 -4.99999720e-01]\n", + " [ 5.84357143e+02 -5.00000140e-01]\n", + " [ 8.76785714e+02 -4.99999791e-01]\n", + " [ 1.16921429e+03 -4.99999975e-01]\n", + " [ 1.46164286e+03 -4.99999912e-01]\n", + " [ 1.75407143e+03 -4.99999978e-01]\n", + " [ 2.04650000e+03 -4.99999991e-01]\n", + " [-4.99999866e-01 2.04650000e+03]\n", + " [ 2.91928571e+02 2.04650000e+03]\n", + " [ 5.84357143e+02 2.04650000e+03]\n", + " [ 8.76785715e+02 2.04650000e+03]\n", + " [ 1.16921429e+03 2.04650000e+03]\n", + " [ 1.46164286e+03 2.04650000e+03]\n", + " [ 1.75407143e+03 2.04650000e+03]\n", + " [ 2.04650000e+03 2.04650000e+03]\n", + " [ 2.04650000e+03 -4.99999991e-01]\n", + " [ 2.04650000e+03 2.91928572e+02]\n", + " [ 2.04650000e+03 5.84357143e+02]\n", + " [ 2.04650000e+03 8.76785715e+02]\n", + " [ 2.04650000e+03 1.16921429e+03]\n", + " [ 2.04650000e+03 1.46164286e+03]\n", + " [ 2.04650000e+03 1.75407143e+03]\n", + " [ 2.04650000e+03 2.04650000e+03]\n", + " [ 5.00000192e-01 1.27000000e+02]\n", + " [ 4.99999990e-01 4.85400000e+02]\n", + " [ 4.99999881e-01 8.43800000e+02]\n", + " [ 5.00000044e-01 1.20220000e+03]\n", + " [ 4.99999938e-01 1.56060000e+03]\n", + " [ 5.00000069e-01 1.91900000e+03]\n", + " [ 1.27000000e+02 5.00000092e-01]\n", + " [ 4.85400000e+02 4.99999764e-01]\n", + " [ 8.43800000e+02 4.99999911e-01]\n", + " [ 1.20220000e+03 5.00000156e-01]\n", + " [ 1.56060000e+03 4.99999840e-01]\n", + " [ 1.91900000e+03 4.99999915e-01]\n", + " [ 1.27000000e+02 2.04550000e+03]\n", + " [ 4.85400000e+02 2.04550000e+03]\n", + " [ 8.43800000e+02 2.04550000e+03]\n", + " [ 1.20220000e+03 2.04550000e+03]\n", + " [ 1.56060000e+03 2.04550000e+03]\n", + " [ 1.91900000e+03 2.04550000e+03]\n", + " [ 2.04550000e+03 1.27000000e+02]\n", + " [ 2.04550000e+03 4.85400000e+02]\n", + " [ 2.04550000e+03 8.43800000e+02]\n", + " [ 2.04550000e+03 1.20220000e+03]\n", + " [ 2.04550000e+03 1.56060000e+03]\n", + " [ 2.04550000e+03 1.91900000e+03]\n", + " [ 4.9999992.837493 18.762121 ]\n", + " [-18.213493 18.762121 ]\n", + " [-23.589493 18.762121 ]\n", + " [-28.965493 18.762121 ]\n", + " [ -2.085493 13.386121 ]\n", + " [ -7.461493 13.386121 ]\n", + " [-12.837493 13.386121 ]\n", + " [-18.213493 13.386121 ]\n", + " [-23.589493 13.386121 ]\n", + " [-28.965493 13.386121 ]\n", + " [ -2.085493 8.010121 ]\n", + " [ -7.461493 8.010121 ]\n", + " [-12.837493 8.010121 ]\n", + " [-18.213493 8.010121 ]\n", + " [-23.589493 8.010121 ]\n", + " [-28.965493 8.010121 ]\n", + " [ -2.085493 2.634121 ]\n", + " [ -7.461493 2.634121 ]\n", + " [-12.837493 2.634121 ]\n", + " [-18.213493 2.634121 ]\n", + " [-23.589493 2.634121 ]\n", + " [-28.965493 2.634121 ]]\n", + "57e-01 4.99999958e-01]\n", + " [ 4.99999957e-01 4.99999958e-01]\n", + " [ 2.04550000e+03 2.04550000e+03]\n", + " [ 2.04550000e+03 2.04550000e+03]\n", + " [ 1.27000000e+02 1.27000000e+02]\n", + " [ 4.85400000e+02 1.27000000e+02]\n", + " [ 8.43800000e+02 1.27000000e+02]\n", + " [ 1.20220000e+03 1.27000000e+02]\n", + " [ 1.56060000e+03 1.27000000e+02]\n", + " [ 1.91900000e+03 1.27000000e+02]\n", + " [ 1.27000000e+02 4.85400DEBUG:root:optics_fp: rtanth: [44.94272969 42.00239064 39.33235561 36.99120283 35.04490673 33.56223174\n", + " 32.60648436 32.22458311 44.94272969 41.90992612 39.13459306 36.67522804\n", + " 34.59927513 32.97921831 31.88462562 31.37054947 32.22458311 27.83912196\n", + " 23.45402264 19.06953475 14.68620592 10.30551524 5.93330899 1.63895634\n", + " 31.37054947 26.99005818 22.61186898 18.23763988 13.87111779 9.5229103\n", + " 5.23882082 1.63895634 43.61980801 40.19015843 37.22381993 34.83933779\n", + " 33.16246218 32.30357703 43.58131788 40.02977818 36.92204987 34.37870189\n", + " 32.5323727 31.50584319 30.31278547 24.93826049 19.56454604 14.19256282\n", + " 8.82547273 3.48595044 29.4611953 24.09404931 18.73198196 13.38109994\n", + " 8.0637011 2.9657153 44.92151855 44.92151855 1.65858428 1.65858428\n", + " 42.23832489 38.56329813 35.32679703 32.65945447 30.7099348 29.62031359\n", + " 38.68639649 34.63652908 30.99264061 27.91417471 25.60588368 24.28835443\n", + " 35.59496044 31.14567519 27.03530484 23.44280455 20.64037826 18.98125646\n", + " 33.09332103 28.25278341 23.64475409 19.43532283 15.94339684 13.72788346\n", + " 31.32311186 26.15701072 21.09606209 16.23887967 11.83897557 8.62694755\n", + " 30.41232527 25.05915804 19.71841847 14.40393713 9.16152467 4.26572571]\n", + "DEBUG:root:radec2pix: lat: [73.24108038 74.22539246 75.14065481 75.95980834 76.6531185 77.19018187\n", + " 77.5432879 77.69182998 73.24108038 74.24861044 75.19133398 76.04212851\n", + " 76.77071823 77.34548632 77.73675519 77.92139244 77.69182998 79.29098794\n", + " 80.92271511 82.58149911 84.2618841 85.95783408 87.66008742 89.3157252\n", + " 77.92139244 79.52414159 81.15801466 82.81709844 84.49494889 86.18266378\n", + " 87.85870936 89.3157252 73.68081786 74.84436919 75.87765867 76.72697854\n", + " 77.33670031 77.65849826 73.69035695 74.88520803 75.9561532 76.84869716\n", + " 77.50496612 77.87275428 78.38454537 80.36704866 82.39295371 84.45217978\n", + " 86.53330534 88.61095022 78.61571107 80.60164359 82.62842612 84.684393\n", + " 86.75213987 88.75761015 73.24806584 73.24806584 89.30770045 89.30770045\n", + " 74.1417384 75.39152116 76.51854281 77.46407515000e+02]\n", + " [ 4.85400000e+02 4.85400000e+02]\n", + " [ 8.43800000e+02 4.85400000e+02]\n", + " [ 1.20220000e+03 4.85400000e+02]\n", + " [ 1.56060000e+03 4.85400000e+02]\n", + " [ 1.91900000e+03 4.85400000e+02]\n", + " [ 1.27000000e+02 8.43800000e+02]\n", + " [ 4.85400000e+02 8.43800000e+02]\n", + " [ 8.43800000e+02 8.43800000e+02]\n", + " [ 1.20220000e+03 8.43800000e+02]\n", + " [ 1.56060000e+03 8.43800000e+02]\n", + " [ 1.91900000e+03 8.43800000e+02]\n", + " [ 1.27000000e+02 1.20220000e+03]\n", + " [ 4.85400000e+02 1.20220000e+03]\n", + " [ 8.43800000e+02 1.20220000e+03]\n", + " [ 1.20220000e+03 1.20220000e+03]\n", + " [ 1.56060000e+03 1.20220000e+03]\n", + " [ 1.91900000e+03 1.20220000e+03]\n", + " [ 1.27000000e+02 1.56060000e+03]\n", + " [ 4.85400000e+02 1.56060000e+03]\n", + " [ 8.43800000e+02 1.56060000e+03]\n", + " [ 1.20220000e+03 1.56060000e+03]\n", + " [ 1.56060000e+03 1.56060000e+03]\n", + " [ 1.91900000e+03 1.56060000e+03]\n", + " [ 1.27000000e+02 1.91900000e+03]\n", + " [ 4.85400000e+02 1.91900000e+03]\n", + " [ 8.43800000e+02 1.91900000e+03]\n", + " [ 1.20220000e+03 1.91900000e+03]\n", + " [ 1.56060000e+03 1.91900000e+03]\n", + " [ 1.919000DEBUG:root:radec2pix: xyfp Shape: (96, 2)\n", + "00e+03 1.91900000e+03]]\n", + "DEBUG:root:optics_fp: xyfp: [[ -0.172993 31.426621 ]\n", + " [ -0.172993 27.04019243]\n", + " [ -0.172993 22.65376385]\n", + " [ -0.172993 18.26733528]\n", + " [ -0.172993 13.88090671]\n", + " [ -0.172993 9.49447814]\n", + " [ -0.172993 5.10804957]\n", + " [ -0.172993 0.721621 ]\n", + " [ -0.172993 31.426621 ]\n", + " [ -4.55942157 31.426621 ]\n", + " [ -8.94585014 31.426621 ]\n", + " [-13.33227871 31.426621 ]\n", + " [-17.71870729 31.426621 ]\n", + " [-22.10513586 31.426621 ]\n", + " [-26.49156443 31.426621 ]\n", + " [-30.877993 31.426621 ]\n", + " [ -0.172993 0.721621 ]\n", + " [ -4.55942157 0.721621 ]\n", + " [ -8.94585014 0.721621 ]\n", + " [-13.33227872 0.721621 ]\n", + " [-17.71870728 0.721621 ]\n", + " [-22.10513586 0.721621 ]\n", + " [-26.49156443 0.721621 ]\n", + " [-30.877993 0.721621 ]\n", + " [-30.877993 31.426621 ]\n", + " [-30.877993 27.04019243]\n", + " [-30.877993 22.65376385]\n", + " [-30.877993 18.26733529]\n", + " [-30.877993 13.88090671]\n", + " [-30.877993 9.49447814]\n", + " [-30.877993 5.10804957]\n", + " [-30.877993 0.721621 ]\n", + " [ -0.187993 29.514121 ]\n", + " [ -0.187993 24.138121 ]\n", + " [ -0.187993 18.76212101]\n", + " [ -0.187993 13.386121 ]\n", + " [ -0.187993 8.010121 ]\n", + " [ -0.187993 2.634121 ]\n", + " [ -2.085493 31.411621 ]\n", + " [ -7.461493 31.411621 ]\n", + " [-12.837493 31.411621 ]\n", + " [-18.213493 31.411621 ]\n", + " [-23.589493 31.411621 ]\n", + " [-28.965493 31.411621 ]\n", + " [ -2.085493 0.736621 ]\n", + " [ -7.461493 0.736621 ]\n", + " [-12.837493 0.736621 ]\n", + " [-18.213493 0.736621 ]\n", + " [-23.58949299 0.736621 ]\n", + " [-28.965493 0.736621 ]\n", + " [-30.862993 29.514121 ]\n", + " [-30.862993 24.138121 ]\n", + " [-30.862993 18.762121 ]\n", + " [-30.862993 13.386121 ]\n", + " [-30.862993 8.010121 ]\n", + " [-30.862993 2.634121 ]\n", + " [ -0.187993 31.411621 ]\n", + " [ -0.187993 31.411621 ]\n", + " [-30.862993 0.736621 ]\n", + " [-30.862993 0.736621 ]\n", + " [ -2.085493 29.514121 ]\n", + " [ -7.461493 29.514121 ]\n", + " [-12.837493 29.514121 ]\n", + " [-18.213493 29.514121 ]\n", + " [-23.589493 29.514121 ]\n", + " [-28.965493 29.5DEBUG:root:radec2pix: xyfp: [[-32.203794 -31.5506227 ]\n", + " [-32.20328688 -27.16419416]\n", + " [-32.20277976 -22.77776561]\n", + " [-32.20227264 -18.39133707]\n", + " [-32.20176553 -14.00490853]\n", + " [-32.20125841 -9.61847999]\n", + " [-32.20075129 -5.23205144]\n", + " [-32.20024417 -0.8456229 ]\n", + " [-32.203794 -31.5506227 ]\n", + " [-27.81736545 -31.55112981]\n", + " [-23.43093691 -31.55163693]\n", + " [-19.04450837 -31.55214405]\n", + " [-14.65807983 -31.55265117]\n", + " [-10.27165129 -31.55315829]\n", + " [ -5.88522274 -31.5536654 ]\n", + " [ -1.4987942 -31.55417252]\n", + " [-32.20024417 -0.8456229 ]\n", + " [-27.81381563 -0.84613002]\n", + " [-23.42738708 -0.84663714]\n", + " [-19.04095854 -0.84714426]\n", + " [-14.65453 -0.84765137]\n", + " [-10.26810146 -0.84815849]\n", + " [ -5.88167292 -0.84866561]\n", + " [ -1.49524438 -0.84917273]\n", + " [ -1.4987942 -31.55417252]\n", + " [ -1.49828708 -27.16774398]\n", + " [ -1.49777997 -22.78131544]\n", + " [ -1.49727285 -18.39488689]\n", + " [ -1.49676573 -14.00845835]\n", + " [ -1.49625861 -9.62202981]\n", + " [ -1.49575149 -5.23560127]\n", + " [ -1.49524438 -0.84917273]\n", + " [-32.18857289 -29.63812445]\n", + " [-32.18795136 -24.26212448]\n", + " [-32.18732984 -18.88612452]\n", + " [-32.18670832 -13.51012455]\n", + " [-32.1860868 -8.13412459]\n", + " [-32.18546528 -2.75812462]\n", + " [-30.29129227 -31.5358438 ]\n", + " [-24.91529231 -31.53646533]\n", + " [-19.53929235 -31.53708685]\n", + " [-14.16329238 -31.53770837]\n", + " [ -8.78729242 -31.53832989]\n", + " [ -3.41129245 -31.53895142]\n", + " [-30.28774592 -0.86084401]\n", + " [-24.91174595 -0.86146553]\n", + " [-19.53574599 -0.86208705]\n", + " [-14.15974603 -0.86270858]\n", + " [ -8.78374606 -0.8633301 ]\n", + " [ -3.4077461 -0.86395162]\n", + " [ -1.5135731 -29.6416708 ]\n", + " [ -1.51295157 -24.26567084]\n", + " [ -1.51233005 -18.88967087]\n", + " [ -1.51170853 -13.51367091]\n", + " [ -1.51108701 -8.13767095]\n", + " [ -1.51046548 -2.76167097]\n", + " [-32.18879227 -31.53562444]\n", + " [-32.18879227 -31.53562444]\n", + " [ -1.51024611 -0.86417099]\n", + " [ -1.51024611 -0.86417099]\n", + " [-30.29107291 -29.63834382]\n", + " [-24.91507294 -29.63896534]\n", + " [-19.53907298 -29.63958686]\n", + " [-14.16307301 -29.64020839]\n", + " [ -8.78707305 -29.64082991]\n", + " [ -3.41107308 -29.64145143]\n", + " [-30.29045138 -24.26234385]\n", + " [-24.91445142 -24.26296538]\n", + "DEBUG:root:fitpix2pix: ccdpx: shape: (96, 2)\n", + " [-19.53845145 -24.2635869 ]\n", + " [-14.16245149 -24.26420842]\n", + " [ -8.78645152 -24.26482994]\n", + " [ -3.41045156 -24.26545147]\n", + " [-30.28982986 -18.88634389]\n", + " [-24.91382989 -18.88696541]\n", + " [-19.53782993 -18.88758693]\n", + " [-14.16182997 -18.88820846]\n", + " [ -8.78583 -18.88882997]\n", + " [ -3.40983004 -18.8894515 ]\n", + " [-30.28920834 -13.51034392]\n", + " [-24.91320837 -13.51096545]\n", + " [-19.53720841 -13.51158697]\n", + " [-14.16120844 -13.51220849]\n", + " [ -8.78520848 -13.51283002]\n", + " [ -3.40920852 -13.51345154]\n", + " [-30.28858681 -8.13434396]\n", + " [-24.91258685 -8.13496548]\n", + " [-19.53658688 -8.135587 ]\n", + " [-14.16058692 -8.13620852]\n", + " [ -8.78458696 -8.13683005]\n", + " [ -3.40858699 -8.13745157]\n", + " [-30.28796529 -2.75834399]\n", + " [-24.91196532 -2.75896552]\n", + " [-19.53596536 -2.75958704]\n", + " [-14.1599654 -2.76020856]\n", + " [ -8.78396543 -2.76083009]\n", + " [ -3.40796547 -2.76145161]]\n", + " 78.16380788 78.55793051\n", + " 75.35984123 76.77406669 78.07566348 79.19387762 80.04201199 80.52949342\n", + " 76.4480688 78.03443361 79.53211824 80.8619DEBUG:root:mm_to_pix: fitpx: [[0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]]\n", + "DEBUG:root:radec2pix: curVec: [[-0.90029327 -0.34665156 -0.26325789]\n", + " [-0.89729362 -0.33432665 -0.28825309DEBUG:root:optics_fp: cphi: [-0.7172644 -0.76741791 -0.81945139 -0.87124824 -0.91956549 -0.96011654\n", + " -0.98818444 -0.99982014 -0.7172644 -0.66450587 -0.59954537 -0.52014772\n", + " -0.4245785 -0.31242949 -0.18558325 -0.04879815 -0.99982014 -0.99975708\n", + " -0.99965502 -0.99947397 -0.99910595 -0.99816919 -0.99442317 -0.92363168\n", + " -0.04879815 -0.05662794 -0.06748483 -0.0835374 -0.10965891 -0.1594742\n", + " -0.28942109 -0.92363168 -0.73864972 -0.80160861 -0.86540808 -0.92455295\n", + " -0.97121348 -0.99694372 -0.69578694 -0.62321886 -0.53007115 -0.41291013\n", + " -0.27109351 -0.10929135 -0.99978591 -0.99968066 -0.99947617 -0.99899494\n", + " -0.99737425 -0.98288834 -0.05243384 -0.06399014 -0.08214824 -0.11477511\n", + " -0.19009076 -0.51584618 -0.71726898 -0.71726898 -0.92175016 -0.92175016\n", + " -0.71788499 -0.64689125 -0.55397779 -0.43461417 -0.2871469 -0.11621293\n", + " -0.78371934 -0.72014369 -0.63135242 -0.50838973 -0.34426777 -0.14160207\n", + " -0.85170189 -0.80076273 -0.72365733 -0.60523038 -0.42694461 -0.18103644\n", + " -0.91599489 -0.8826498 ]\n", + " [-0.89350807 -0.3214872 -0.31351126]\n", + " [-0.88891278 -0.3081706 -0.33891733]\n", + " [-0.88349288 -0.29441672 -0.36436126]\n", + " [-0.87724299 -0.28026906 -0.3897358 ]\n", + " [-0.87016794 -0.26577591 -0.41493485]\n", + " [-0.86228346 -0.25099069 -0.43985329]\n", + " [-0.90029327 -0.34665156 -0.26325789]\n", + " [-0.91224569 -0.32234661 -0.25278542]\n", + " [-0.92338513 -0.29780565 -0.24222242]\n", + " [-0.93367852 -0.27312718 -0.231616 ]\n", + " [-0.94310274 -0.24841196 -0.22101745]\n", + " [-0.95164463 -0.22376271 -0.21048217]\n", + " [-0.95930105 -0.19928367 -0.20006876]\n", + " [-0.96607925 -0.17507944 -0.18983695]\n", + " [-0.86228346 -0.25099069 -0.43985329]\n", + " [-0.87465462 -0.225916 -0.42888372]\n", + " [-0.88619973 -0.20071893 -0.4175667 ]\n", + " [-0.89688441 -0.17550203 -0.40595246]\n", + " [-0.90668593 -0.15036679 -0.39409448]\n", + " [-0.91559256 -0.12541358 -0.38204935]\n", + " [-0.92360247 -0.10074322 -0.36987738]\n", + " [-0.93072284 -0.07645923 -0.35764365]\n", + " [-0.96607925 -0.17507944 -0.18983695]\n", + " [-0.96354853 -0.16160698 -0.21320744]\n", + " [-0.96020206 -0.14785583 -0.2369613 ]\n", + " [-0.95601521 -0.133867DEBUG:root:radec2pix: fitpx: [[-5.00000272e-01 -5.00000268e-01]\n", + " [-4.99999785e-01 2.91928572e+02]\n", + " [-4.99999908e-01 5.84357143e+02]\n", + " [-4.99999976e-01 8.76785714e+02]\n", + " [-4.99999814e-01 1.16921429e+03]\n", + " [-4.99999859e-01 1.46164286e+03]\n", + " [-4.99999732e-01 1.75407143e+03]\n", + " [-4.99999866e-01 2.04650000e+03]\n", + " [-5.00000272e-01 -5.00000268e-01]\n", + " [ 2.91928572e+02 -4.99999720e-01]\n", + " [ 5.84357143e+02 -5.00000140e-01]\n", + " [ 8.76785714e+02 -4.99999791e-01]\n", + " [ 1.16921429e+03 -4.99999975e-01]\n", + " [ 1.46164286e+03 -4.99999912e-01]\n", + " [ 1.75407143e+03 -4.99999978e-01]\n", + " [ 2.04650000e+03 -4.99999991e-01]\n", + " [-4.99999866e-01 2.04650000e+03]\n", + " [ 2.91928571e+02 2.04650000e+03]\n", + " [ 5.84357143e+02 2.04650000e+03]\n", + " [ 8.76785715e+02 2.04650000e+03]\n", + " [ 1.16921429e+03 2.04650000e+03]\n", + " [ 1.46164286e+03 2.04650000e+03]\n", + " [ 1.75407143e+03 2.04650000e+03]\n", + " [ 2.04650000e+03 2.04650000e+03]\n", + " [ 2.04650000e+03 -4.99999991e-01]\n", + " [ 2.04650000e+03 2.91928572e+02]\n", + " [ 2.04650000e+03 5.84357143e+02]\n", + " [ 2.04650000e+03 8.7678514121 ]\n", + " [ -2.085493 24.138121 ]\n", + " [ -7.461493 24.138121 ]\n", + " [-12.837493 24.138121 ]\n", + " [-18.213493 24.138121 ]\n", + " [-23.589493 24.138121 ]\n", + " [-28.965493 24.138121 ]\n", + " [ -2.085493 18.762121 ]\n", + " [ -7.461493 18.762121 ]\n", + " [-12.837493 18.762121 ]\n", + " [-18.213493 18.762121 ]\n", + " [-23.589493 18.762121 ]\n", + " [-28.965493 18.762121 ]\n", + " [ -2.085493 13.386121 ]\n", + " [ -7.461493 13.386121 ]\n", + " [-12.837493 13.386121 ]\n", + " [-18.213493 13.386121 ]\n", + " [-23.589493 13.386121 ]\n", + " [-28.965493 13.386121 ]\n", + " [ -2.085493 8.010121 ]\n", + " [ -7.461493 8.010121 ]\n", + " [-12.837493 8.010121 ]\n", + " [-18.213493 8.010121 ]\n", + " [-23.589493 8.010121 ]\n", + " [-28.965493 8.010121 ]\n", + " [ -2.085493 2.634121 ]\n", + " [ -7.461493 2.634121 ]\n", + " [-12.837493 2.634121 ]\n", + " [-18.213493 2.634121 ]\n", + " [-23.589493 2.634121 ]\n", + " [-28.965493 2.634121 ]]\n", + " -0.8273004 -0.72987289 -0.55253697 -0.25009805\n", + " -0.96766665 -0.95325615 -0.92710821 -0.87335662 -0.74384256 -0.39763019\n", + " -0.99654822 -0.99489972 -0.99173015 -0.984408 -0.96090466 -0.80346296]\n", + "715e+02]\n", + " [ 2.04650000e+03 1.16921429e+03]\n", + " [ 2.04650000e+03 1.46164286e+03]\n", + " [ 2.04650000e+03 1.75407143e+03]\n", + " [ 2.04650000e+03 2.04650000e+03]\n", + " [ 5.00000192e-01 1.27000000e+02]\n", + " [ 4.99999990e-01 4.85400000e+02]\n", + " [ 4.99999881e-01 8.43800000e+02]\n", + " [ 5.00000044e-01 1.20220000e+03]\n", + " [ 4.99999938e-01 1.56060000e+03]\n", + " [ 5.00000069e-01 1.91900000e+03]\n", + " [ 1.27000000e+02 5.00000092e-01]\n", + " [ 4.85400000e+02 4.99999764e-01]\n", + " [ 8.43800000e+02 4.99999911e-01]\n", + " [ 1.20220000e+03 5.00000156e-01]\n", + " [ 1.56060000e+03 4.99999840e-01]\n", + " [ 1.91900000e+03 4.99999915e-01]\n", + " [ 1.27000000e+02 2.04550000e+03]\n", + " [ 4.85400000e+02 2.04550000e+03]\n", + " [ 8.43800000e+02 2.04550000e+03]\n", + " [ 1.20220000e+03 2.04550000e+03]\n", + " [ 1.56060000e+03 2.04550000e+03]\n", + " [ 1.91900000e+03 2.04550000e+03]\n", + " [ 2.04550000e+03 1.27000000e+02]\n", + " [ 2.04550000e+03 4.85400000e+02]\n", + " [ 2.04550000e+03 8.43800000e+02]\n", + " [ 2.04550000e+03 1.20220000e+03]\n", + " [ 2.DEBUG:root:fitpix2pix: visCut: True\n", + "04550000e+03 1.56060000e+03]\n", + " [ 2.04550000e+03 1.91900000e+03]\n", + " [ 4.99999957e-01 4.99999958e-01]\n", + " [ 4.99999957e-01 4.99999958e-01]\n", + " [ 2.04550000e+03 2.04550000e+03]\n", + " [ 2.04550000e+03 2.04550000e+03]\n", + " [ 1.27000000e+02 1.27000000e+02]\n", + " [ 4.85400000e+02 1.27000000e+02]\n", + " [ 8.43800000e+02 1.27000000e+02]\n", + " [ 1.20220000e+03 1.27000000e+02]\n", + " [ 1.56060000e+03 1.27000000e+02]\n", + " [ 1.91900000e+03 1.27000000e+02]\n", + " [ 1.27000000e+02 4.85400000e+02]\n", + " [ 4.85400000e+02 4.85400000e+02]\n", + " [ 8.43800000e+02 4.85400000e+02]\n", + " [ 1.20220000e+03 4.85400000e+02]\n", + " [ 1.56060000e+03 4.85400000e+02]\n", + " [ 1.91900000e+03 4.85400000e+02]\n", + " [ 1.27000000e+02 8.43800000e+02]\n", + " [ 4.85400000e+02 8.43800000e+02]\n", + " [ 8.43800000e+02 8.43800000e+02]\n", + " [ 1.20220000e+03 8.43800000e+02]\n", + " [ 1.56060000e+03 8.43800000e+02]\n", + " [ 1.91900000e+03 8.43800000e+02]\n", + " [ 1.27000000e+02 1.20220000e+03]\n", + " [ 4.85400000e+02 1.20220000e+03]\n", + " [ 8.43800000e+02 1.20220000e+03]\n", + " [ 1.20220000e+03 1.202DEBUG:root:radec2pix: lat: [73.24843796 74.22959053 75.14101603 75.95564397 76.6437957 77.17522107\n", + " 77.52247637 77.66531399 73.24843796 74.25938156 75.20604331 76.06127099\n", + " 76.79469021 77.37449152 77.77070397 77.95983585 77.66531399 79.26403549\n", + " 80.8954867 82.55419485 84.2348008 85.93154111 87.63625009 89.30890983\n", + " 77.95983585 79.5631834 81.19741545 82.85654952 84.53396682 86.22024\n", + " 87.89143193 89.30890983 73.68688931 74.8461168 75.87404737 76.71704667\n", + " 77.31977046 77.63442603 73.69912883 74.89851762 75.9747656 76.87322604\n", + " 77.53566935 77.90931811 78.357841 80.33991917 82.36567874 84.42519517\n", + " 86.5076147 88.59172382 78.65442708 80.64093339 82.6678651 84.72327772\n", + " 86.78866387 88.77999774 73.25542451 73.25542451 89.30107513 89.30107513\n", + " 74.14922787 75.40361568 76.5361131 77.48786454 78.19419066 78.59463145\n", + " 75.36296624 76.78183851 78.08930019 79.21461778 80.0707569 80.56622359\n", + " 76.44568445 78.03639269 79.53999931 80.87766645 81.93562678 82.57036945\n", + " 77.33928008 79.09582585 80.80551049 82.39402202 83.72877916 84.58613925\n", + " 77.98201104 79.8754942 81.77128989 83.62092117 85.31596639 86.56531268\n", + " 78.31903282 80.2916347 82.30308639 84.33811541 86.36841377 88.27312586]\n", + "DEBUG:root:radec2pix: xyfp: [[32.31363499 31.47041645]\n", + " [32.3144687 27.08398795]\n", + " [32.31530242 22.69755946]\n", + " [32.31613613 18.31113097]\n", + " [32.31696984 13.92470248]\n", + " [32.31780355 9.53827398]\n", + " [32.31863726 5.15184549]\n", + " [32.31947097 0.765417 ]\n", + " [32.31363499 31.47041645]\n", + " [27.9272065 31.46958273]\n", + " [23.540778 31.46874902]\n", + " [19.15434951 31.46791531]\n", + " [14.76792102 31.4670816 ]\n", + " [10.38149253 31.46624788]\n", + " [ 5.99506403 31.46541417]\n", + " [ 1.60863554 31.46458045]\n", + " [32.31947097 0.765417 ]\n", + " [27.93304248 0.76458329]\n", + " [23.54661399 0.76374957]\n", + " [19.1601855 0.76291586]\n", + " [14.77375701 0.76208215]\n", + " [10.38732851 0.76124844]\n", + " [ 6.00090002 0.76041472]\n", + " [ 1.61447153 0.75958101]\n", + " [ 1.60863554 31.46458045]\n", + " [ 1.60946926 27.07815197]\n", + " [ 1.61030297 22.69172348]\n", + " [ 1.61113668 18.30529498]\n", + " [ 1.61197039 13.918866DEBUG:root:radec2pix: ccdpx: [[-4.45000001e+01 -5.00000132e-01]\n", + " [-4.45000001e+01 2.91928571e+02]\n", + " [-4.44999999e+01 5.84357143e+02]\n", + " [-4.44999998e+01 8.76785714e+02]\n", + " [-4.45000000e+01 1.16921429e+03]\n", + " [-4.45000002e+01 1.46164286e+03]\n", + " [-4.44999998e+01 1.75407143e+03]\n", + " [-4.44999999e+01 2.04650000e+03]\n", + " [-4.45000001e+01 -5.00000132e-01]\n", + " [ 2.47928572e+02 -4.99999845e-01]\n", + " [ 5.40357143e+02 -5.00000146e-01]\n", + " [ 8.32785714e+02 -4.99999843e-01]\n", + " [ 1.12521429e+03 -4.99999832e-01]\n", + " [ 1.41764286e+03 -5.00000031e-01]\n", + " [ 1.71007143e+03 -5.00000120e-01]\n", + " [ 2.00250000e+03 -4.99999883e-01]\n", + " [-4.44999999e+01 2.04650000e+03]\n", + " [ 2.47928572e+02 2.04650000e+03]\n", + " [ 5.40357143e+02 2.04650000e+03]\n", + " [ 8.32785714e+02 2.04650000e+03]\n", + " [ 1.12521429e+03 2.04650000e+03]\n", + " [ 1.41764286e+03 2.04650000e+03]\n", + " [ 1.71007143e+03 2.04650000e+03]\n", + " [ 2.00250000e+03 2.04650000e+03]\n", + " [ 2.00250000e+03 -4.99999883e-01]\n", + " [ 2.00250000e+03 2.91928571e+02]\n", + " [ 2.00250000e+03 5.84357143e+02]\n", + " [ 2.00250000e+03 8.7678520000e+03]\n", + " [ 1.56060000e+03 1.20220000e+03]\n", + " [ 1.91900000e+03 1.20220000e+03]\n", + " [ 1.27000000e+02 1.56060000e+03]\n", + " [ 4.85400000e+02 1.56060000e+03]\n", + " [ 8.43800000e+02 1.56060000e+03]\n", + " [ 1.20220000e+03 1.56060000e+03]\n", + " [ 1.56060000e+03 1.56060000e+03]\n", + " [ 1.91900000e+03 1.56060000e+03]\n", + " [ 1.27000000e+02 1.91900000e+03]\n", + " [ 4.85400000e+02 1.91900000e+03]\n", + " [ 8.43800000e+02 1.91900000e+03]\n", + " [ 1.20220000e+03 1.91900000e+03]\n", + " [ 1.56060000e+03 1.91900000e+03]\n", + " [ 1.91900000e+03 1.91900000e+03]]\n", + "36 -0.26098745]\n", + " [-0.95097352 -0.11968536 -0.28517498]\n", + " [-0.94507242 -0.10535647 -0.30941578]\n", + " [-0.93831715 -0.09093027 -0.33360547]\n", + " [-0.93072284 -0.07645923 -0.35764365]\n", + " [-0.89912253 -0.34126051 -0.27408018]\n", + " [-0.89492152 -0.32580362 -0.30490566]\n", + " [-0.88951532 -0.30961095 -0.33601124]\n", + " [-0.88287282 -0.29275483 -0.36719231]\n", + " [-0.87498419 -0.27531549 -0.39825124]\n", + " [-0.86586283 -0.25738398 -0.42899306]\n", + " [-0.90559322 -0.33604817 -0.25879056]\n", + " [-0.91970047 -0.30608816 -0.24588835]\n", + " [-0.93255258 DEBUG:root:fitpix2pix: ccdpx: shape: (96, 2)\n", + "714e+02]\n", + " [ 2.00250000e+03 1.16921429e+03]\n", + " [ 2.00250000e+03 1.46164286e+03]\n", + " [ 2.00250000e+03 1.75407143e+03]\n", + " [ 2.00250000e+03 2.04650000e+03]\n", + " [-4.35000002e+01 1.27000000e+02]\n", + " [-4.34999998e+01 4.85400000e+02]\n", + " [-4.34999999e+01 8.43800000e+02]\n", + " [-4.35000001e+01 1.20220000e+03]\n", + " [-4.34999999e+01 1.56060000e+03]\n", + " [-4.35000000e+01 1.91900000e+03]\n", + " [ 8.30000001e+01 5.00000120e-01]\n", + " [ 4.41400000e+02 4.99999839e-01]\n", + " [ 7.99800000e+02 4.99999975e-01]\n", + " [ 1.15820000e+03 5.00000060e-01]\n", + " [ 1.51660000e+03 5.00000260e-01]\n", + " [ 1.87500000e+03 4.99999701e-01]\n", + " [ 8.29999997e+01 2.04550000e+03]\n", + " [ 4.41400000e+02 2.04550000e+03]\n", + " [ 7.99800000e+02 2.04550000e+03]\n", + " [ 1.15820000e+03 2.04550000e+03]\n", + " [ 1.51660000e+03 2.04550000e+03]\n", + " [ 1.87500000e+03 2.04550000e+03]\n", + " [ 2.00150000e+03 1.27000000e+02]\n", + " [ 2.00150000e+03 4.85400000e+02]\n", + " [ 2.00150000e+03 8.43800000e+02]\n", + " [ 2.00150000e+03 1.20220000e+03]\n", + " [ 2.00150000e+03 1.56060000e+03]\n", + " DEBUG:root:optics_fp: xyfp shape: (96, 2)\n", + "DEBUG:root:mm_to_pix: fitpx.shape: (96, 2)\n", + "[ 2.00150000e+03 1.91900000e+03]\n", + " [-4.35000003e+01 4.99999746e-01]\n", + " [-4.35000003e+01 4.99999746e-01]\n", + " [ 2.00150000e+03 2.04550000e+03]\n", + " [ 2.00150000e+03 2.04550000e+03]\n", + " [ 8.29999998e+01 1.27000000e+02]\n", + " [ 4.41400000e+02 1.27000000e+02]\n", + " [ 7.99800000e+02 1.27000000e+02]\n", + " [ 1.15820000e+03 1.27000000e+02]\n", + " [ 1.51660000e+03 1.27000000e+02]\n", + " [ 1.87500000e+03 1.27000000e+02]\n", + " [ 8.30000000e+01 4.85400000e+02]\n", + " [ 4.41400000e+02 4.85400000e+02]\n", + " [ 7.99800000e+02 4.85400000e+02]\n", + " [ 1.15820000e+03 4.85400000e+02]\n", + " [ 1.51660000e+03 4.85400000e+02]\n", + " [ 1.87500000e+03 4.85400000e+02]\n", + " [ 8.29999999e+01 8.43800000e+02]\n", + " [ 4.41400000e+02 8.43800000e+02]\n", + " [ 7.99800000e+02 8.43800000e+02]\n", + " [ 1.15820000e+03 8.43800000e+02]\n", + " [ 1.51660000e+03 8.43800000e+02]\n", + " [ 1.87500000e+03 8.43800000e+02]\n", + " [ 8.29999998e+01 1.20220000e+03]\n", + " [ 4.41400000e+02 1.20220000e+03]\n", + " [ 7.99800000e+02 1.20220000e+03]\n", + " [ 1.15820000e+03 1.20220000e+03]\n", + " [ 1.51660000e+03 1.20220000e+03]\n", + " [ 1.87500000e+03 1.20220000e+03]\n", + " [ 8.30000000e+01 1.56060000e+03]\n", + " [ 4.41400000e+02 1.56060000e+03]\n", + " [ 7.99800000e+02 1.56060000e+03]\n", + " [ 1.15820000e+03 1.56060000e+03]\n", + " [ 1.51660000e+03 1.56060000e+03]\n", + " [ 1.87500000e+03 1.56060000e+03]\n", + " [ 8.30000000e+01 1.91900000e+03]\n", + " [ 4.41400000e+02 1.91900000e+03]\n", + " [ 7.99800000e+02 1.91900000e+03]\n", + " [ 1.15820000e+03 1.91900000e+03]\n", + " [ 1.51660000e+03 1.91900000e+03]\n", + " [ 1.87500000e+03 1.91900000e+03]]\n", + "3095 81.91012885 82.53435821\n", + " 77.34827857 79.10130772 80.80570953 82.38629346 83.70950064 84.55228195\n", + " 77.99844552 79.88985033 81.78208758 83.62548455 85.30897599 86.53756064\n", + " 78.34312947 80.31550148 82.32609465 84.35907996 86.38425999 88.27008044]\n", + "DEBUG:root:fitpix2pix: visCut: True\n", + "-0.27587134 -0.23289632]\n", + " [-0.94410284 -0.24558228 -0.21990717]\n", + " [-0.95432704 -0.21541004 -0.20702276]\n", + " [-0.96322366 -0.18554678 -0.19435165]\n", + " [-0.86780452 -0.24013065 -0.4350317 ]\n", + " [-0.88241599 -0.20930381 -0.42134777]\n", + " [-0.89575118 -0.17839502 -0.40719164]\n", + " [-0.90776344 -0.14759162 -0.39266047]\n", + " [-0.91843104 -0.11707856 -0.37785848]\n", + " [-0.92775437 -0.08704253 -0.36289865]\n", + " [-0.9650524 -0.16932459 -0.2000076 ]\n", + " [-0.96140569 -0.15262063 -0.22892364]\n", + " [-0.95650805 -0.13553873 -0.25830525]\n", + " [-0.95032865 -0.11815852 -0.28794795]\n", + " [-0.94285906 -0.10056582 -0.31765282]\n", + " [-0.93411303 -0.08285315 -0.34722933]\n", + " [-0.90032653 -0.34652773 -0.26330717]\n", + " [-0.90032653 -0.34652773 -0.26330717]\n", + " [-0.93072737 -0.076591 -0.35760368]\n", + " [-0.93072737 -0.076591 -0.35760368]\n", + " [-0.90440961 -0.33074057 -0.26954394]\n", + " [-0.91856924 -0.30067142 -0.25656822]\n", + " [-0.93146563 -0.27035367 -0.24347623]\n", + " [-0.94305211 -0.23997226 -0.23036066]\n", + " [-0.95330444 -0.20971647 -0.21732382]\n", + " [-0.9622209 -0.17977901 -0.20447602]\n", + " [-0.90026003 -0.31518248 -0.30031964]\n", + " [-0.91455309 -0.2848426 -0.28715387]\n", + " [-0.92756449 -0.25427934 -0.27379943]\n", + " [-0.93924782 -0.22367871 -0.26034856]\n", + " [-0.94957927 -0.19323015 -0.24690344]\n", + " [-0.95855702 -0.16312678 -0.23357674]\n", + " [-0.89489581 -0.29890821 -0.33138403]\n", + " [-0.90930017 -0.26835503 -0.31805467]\n", + " [-0.92241121 -0.23760671 -0.30446774]\n", + " [-0.93418283 -0.20685039 -0.29071525]\n", + " [-0.94459212 -0.17627507 -0.27689857]\n", + " [-0.95363782 -0.14607298 -0.26313038]\n", + " [-0.88828567 -0.28199057 -0.36253261]\n", + " [-0.90277903 -0.25128303 -0.34906569]\n", + " [-0.9159746 -0.22041158 -0.33527492]\n", + " [-0.92782646 -0.18956421 -0.32125295]\n", + " [-0.93831264 -0.15892905 -0.30710087]\n", + " [-0.94743272 -0.12869662 -0.29293076]\n", + " [-0.88041944 -0.26451053 -0.39356803]\n", + " [-0.89497898 -0.23370969 -0.37999 ]\n", + " [-0.90824414 -0.20277869 -0.36602374]\n", + " [-0.92016893 -0.17190577 -0.35176349]\n", + " [-0.93073187 -0.1412778 -0.33731109]\n", + " [-0.93993326 -0.11108339 -0.32277847]\n", + " [-0.87131017 -0.24655988 -0.42429567]\n", + " [-0.88591234 -0.21572861 -0.41063425]\n", + " [-0.89923201 -0.18480263 -0.39652211]\n", + " [-0.91122271 -0.15396965 -0.38205564]\n", + " [-0.92186292 -0.12341513 -0.36733835]\n", + " [-0.9311531 -0.0933261 -0.35248282]]\n", + "DEBUG:root:optics_fp: sphi: [-0.69680111 -0.64114722 -0.57314869 -0.49084265 -0.39293677 -0.27960013\n", + " -0.15326941 -0.01896529 -0.69680111 -0.74728304 -0.80034077 -0.85407631\n", + " -0.90539113 -0.94994095 -0.98262854 -0.99880866 -0.01896529 -0.02204027\n", + " -0.02626479 -0.03243122 -0.04227651 -0.06048361 -0.10546358 -0.38328124\n", + " -0.99880866 -0.99839535 -0.9977203 -0.99650464 -0.99396928 -0.9872021\n", + " -0.95720188 -0.38328124 -0.67408945 -0.59784918 -0.50106771 -0.3810536\n", + " -0.23821077 -0.07812313 -0.71824824 -0.78204748 -0.84795317 -0.91077177\n", + " -0.96255302 -0.99400976 -0.02069125 -0.02527007 -0.03236333 -0.04482319\n", + " -0.07241971 -0.18420237 -0.9986244 -0.99795053 -0.99662012 -0.9933915\n", + " -0.98176652 -0.85668122 -0.6967964 -0.6967964 -0.38778427 -0.38778427\n", + " -0.69616172 -0.76258227 -0.83253145 -0.90061674 -0.95788656 -0.99322432\n", + " -0.62111512 -0.69382495 -0.77549605 -0.8611271 -0.93887151 -0.98992366\n", + " -0.52402662 -0.59898168 -0.69015945 -0.79605037 -0.90427778 -0.98347639\n", + " -0.40118994 -0.4700312 -0.56175978 -0.68358289 -0.83348839 -0.96822051\n", + " -0.25223255 -0.30216337 -0.37479377 -0.48708132 -0.66835488 -0.91754577\n", + " -0.08301599 -0.10086897 -0.12834059 -0.17590022 -0.27687945 -0.59535474]\n", + "DEBUG:root:radec2pix: curVec Shape: (96, 3)\n", + "48]\n", + " [ 1.6128041 9.53243799]\n", + " [ 1.61363782 5.1460095 ]\n", + " [ 1.61447153 0.75958101]\n", + " [32.29899849 29.55791363]\n", + " [32.30002028 24.18191372]\n", + " [32.30104209 18.80591382]\n", + " [32.30206388 13.42991392]\n", + " [32.30308568 8.05391402]\n", + " [32.30410748 2.67791411]\n", + " [30.40113787 31.45505294]\n", + " [25.02513797 31.45403115]\n", + " [19.64913807 31.45300935]\n", + " [14.27313817 31.45198755]\n", + " [ 8.89713826 31.45096576]\n", + " [ 3.52113836 31.44994396]\n", + " [30.40696816 0.7800535 ]\n", + " [25.03096826 0.7790317 ]\n", + " [19.65496836 0.7780099 ]\n", + " [14.27896845 0.77698811]\n", + " [ 8.90296855 0.77596631]\n", + " [ 3.52696865 0.77494451]\n", + " [ 1.62399904 29.55208334]\n", + " [ 1.62502084 24.17608344]\n", + " [ 1.62604264 18.80008353]\n", + " [ 1.62706443 13.42408364]\n", + " [ 1.62808623 8.04808373]\n", + " [ 1.62910803 2.67208383]\n", + " [32.29863784 31.4554136 ]\n", + " [32.29863784 31.4554136 ]\n", + " [ 1.62946868 0.77458386]\n", + " [ 1.62946868 0.77458386]\n", + " [30.40149852 29.55755297]\n", + " [25.02549862 29.55653118]\n", + " [19.64949872 29.55550938]\n", + " [14.27349882 29.55448759]\n", + " [ 8.89749891 29.55346579]\n", + " [ 3.52149901 29.55244399]\n", + " [30.40252032 24.18155307]\n", + " [25.02652042 24.18053128]\n", + " [19.65052052 24.17950948]\n", + " [14.27452061 24.17848769]\n", + " [ 8.89852071 24.17746589]\n", + " [ 3.52252081 24.17644409]\n", + " [30.40354212 18.80555317]\n", + " [25.02754221 18.80453137]\n", + " [19.65154231 18.80350958]\n", + " [14.27554241 18.80248779]\n", + " [ 8.89954251 18.80146598]\n", + " [ 3.5235426 18.80044419]\n", + " [30.40456392 13.42955327]\n", + " [25.02856401 13.42853147]\n", + " [19.65256411 13.42750967]\n", + " [14.27656421 13.42648788]\n", + " [ 8.9005643 13.42546608]\n", + " [ 3.5245644 13.42444429]\n", + " [30.40558571 8.05355336]\n", + " [25.02958581 8.05253157]\n", + " [19.6535859 8.05150977]\n", + " [14.277586 8.05048797]\n", + " [ 8.9015861 8.04946618]\n", + " [ 3.5255862 8.04844438]\n", + " [30.40660751 2.67755346]\n", + " [25.0306076 2.67653166]\n", + " [19.6546077 2.67550987]\n", + " [14.2786078 2.67448807]\n", + " [ 8.90260789 2.67346627]\n", + " [ 3.52660799 2.67244448]]\n", + "DEBUG:root:radec2pix: fitpx: [[-5.00000135e-01 -5.00000132e-01]\n", + " [-5.00000144e-01 2.91928571e+02]\n", + " [-4.99999914e-01 5.84357143e+02]\n", + " [-4.99999810e-01 8.76785714e+02]\n", + " [-5.00000028e-01 1.16921429e+03]\n", + " [-5.00000159e-01 1.46164286e+03]\n", + " [-4.99999755e-01 1.75407143e+03]\n", + " [-4.99999923e-01 2.04650000e+03]\n", + " [-5.00000135e-01 -5.00000132e-01]\n", + " [ 2.91928572e+02 -4.99999845e-01]\n", + " [ 5.84357143e+02 -5.00000146e-01]\n", + " [ 8.76785714e+02 -4.99999843e-01]\n", + " [ 1.16921429e+03 -4.99999832e-01]\n", + " [ 1.46164286e+03 -5.00000031e-01]\n", + " [ 1.75407143e+03 -5.00000120e-01]\n", + " [ 2.04650000e+03 -4.99999883e-01]\n", + " [-4.99999923e-01 2.04650000e+03]\n", + " [ 2.91928572e+02 2.04650000e+03]\n", + " [ 5.84357143e+02 2.04650000e+03]\n", + " [ 8.76785714e+02 2.04650000e+03]\n", + " [ 1.16921429e+03 2.04650000e+03]\n", + " [ 1.46164286e+03 2.04650000e+03]\n", + " [ 1.75407143e+03 2.04650000e+03]\n", + " [ 2.04650000e+03 2.04650000e+03]\n", + " [ 2.04650000e+03 -4.99999883e-01]\n", + " [ 2.04650000e+03 2.91928571e+02]\n", + " [ 2.04650000e+03 5.84357143e+02]\n", + " [ 2.04650000e+03 8.76785714e+02]\n", + " [ 2.04650000e+03 1.16921429e+03]\n", + " [ 2.04650000e+03 1.46164286e+03]\n", + " [ 2.04650000e+03 1.75407143e+03]\n", + " [ 2.04650000e+03 2.04650000e+03]\n", + " [ 4.99999783e-01 1.27000000e+02]\n", + " [ 5.00000221e-01 4.85400000e+02]\n", + " [ 5.00000070e-01 8.43800000e+02]\n", + " [ 4.99999908e-01 1.20220000e+03]\n", + " [ 5.00000086e-01 1.56060000e+03]\n", + " [ 5.00000004e-01 1.91900000e+03]\n", + " [ 1.27000000e+02 5.00000120e-01]\n", + " [ 4.85400000e+02 4.99999839e-01]\n", + " [ 8.43800000e+02 4.99999975e-01]\n", + " [ 1.20220000e+03 5.00000060e-01]\n", + " [ 1.56060000e+03 5.00000260e-01]\n", + " [ 1.91900000e+03 4.99999701e-01]\n", + " [ 1.27000000e+02 2.04550000e+03]\n", + " [ 4.85400000e+02 2.04550000e+03]\n", + " [ 8.43800000e+02 2.04550000e+03]\n", + " [ 1.20220000e+03 2.04550000e+03]\n", + " [ 1.56060000e+03 2.04550000e+03]\n", + " [ 1.91900000e+03 2.04550000e+03]\n", + " [ 2.04550000e+03 1.27000000e+02]\n", + " [ 2.04550000e+03 4.85400000e+02]\n", + " [ 2.04550000e+03 8.43800000e+02]\n", + " [ 2.04550000e+03 1.20220000e+03]\n", + " [ 2.04550000e+03 1.56060000e+03]\n", + " [ 2.04550000e+03 1.91900000e+03]\n", + " [ 4.99999741e-01 4.99999746e-01]\n", + " [ 4.99999741e-01 4.99999746e-01]\n", + " [ 2.04550000e+03 2.04550000e+03]\n", + " [ 2.04550000e+03 2.04550000e+03]\n", + " [ 1.27000000e+02 1.27000000e+02]\n", + " [ 4.85400000e+02 1.27000000e+02]\n", + " [ 8.43800000e+02 1.27000000e+02]\n", + " [ 1.20220000e+03 1.27000000e+02]\n", + " [ 1.56060000e+03 1.27000000e+02]\n", + " [ 1.91900000e+03 1.27000000e+02]\n", + " [ 1.27000000e+02 4.85400000e+02]\n", + " [ 4.85400000e+02 4.85400000e+02]\n", + " [ 8.43800000e+02 4.85400000e+02]\n", + " [ 1.20220000e+03 4.85400000e+02]\n", + " [ 1.56060000e+03 4.85400000e+02]\n", + " [ 1.91900000e+03 4.85400000e+02]\n", + " [ 1.27000000e+02 8.43800000e+02]\n", + " [ 4.85400000e+02 8.43800000e+02]\n", + " [ 8.43800000e+02 8.43800000e+02]\n", + " [ 1.20220000e+03 8.43800000e+02]\n", + " [ 1.56060000e+03 8.43800000e+02]\n", + " [ 1.91900000e+03 8.43800000e+02]\n", + " [ 1.27000000e+02 1.20220000e+03]\n", + " [ 4.85400000e+02 1.20220000e+03]\n", + " [ 8.43800000e+02 1.20220000e+03]\n", + " [ 1.20220000e+03 1.20220000e+03]\n", + " [ 1.56060000e+03 1.20220000e+03]\n", + " [ 1.91900000e+03 1.20220000e+03]\n", + " [ 1.27000000e+02 1.56060000e+03]\n", + " [ 4.85400000e+02 1.56060000e+03]\n", + " [ 8.43800000e+02 1.56060000e+03]\n", + " [ 1.20220000e+03 1.56060000e+03]\n", + " [ 1.56060000e+03 1.56060000e+03]\n", + " [ 1.91900000e+03 1.56060000e+03]\n", + " [ 1.27000000e+02 1.91900000e+03]\n", + " [ 4.85400000e+02 1.91900000e+03]\n", + " [ 8.43800000e+02 1.91900000e+03]\n", + " [ 1.20220000e+03 1.91900000e+03]\n", + " [ 1.56060000e+03 1.91900000e+03]\n", + " [ 1.91900000e+03 1.91900000e+03]]\n", + "DEBUG:root:radec2pix: xyfp: [[ -0.172993 31.426621 ]\n", + " [ -0.172993 27.04019243]\n", + " [ -0.172993 22.65376385]\n", + " [ -0.172993 18.26733528]\n", + " [ -0.172993 13.88090671]\n", + " [ -0.172993 9.49447814]\n", + " [ -0.172993 5.10804957]\n", + " [ -0.172993 0.721621 ]\n", + " [ -0.172993 31.426621 ]\n", + " [ -4.55942157 31.426621 ]\n", + " [ -8.94585014 31.426621 ]\n", + " [-13.33227871 31.426621 ]\n", + " [-17.71870729 31.426621 ]\n", + " [-22.10513586 31.426621 ]\n", + " [-26.49156443 31.426621 ]\n", + " [-30.877993 31.426621 ]\n", + " [ -0.172993 0.721621 ]\n", + " [ -4.55942157 0.721621 ]\n", + " [ -8.94585014 0.721621 ]\n", + " [-13.33227872 0.721621 ]\n", + " [-17.71870728 0.721621 ]\n", + " [-22.10513586 0.721621 ]\n", + " [-26.49156443 0.721621 ]\n", + " [-30.877993 0.721621 ]\n", + " [-30.877993 31.426621 ]\n", + " [-30.877993 27.04019243]\n", + " [-30.877993 22.65376385]\n", + " [-30.877993 18.26733529]\n", + " [-30.877993 13.88090671]\n", + " [-30.877993 9.49447814]\n", + " [-30.877993 5.10804957]\n", + " [-30.877993 0.721621 ]\n", + " [ -0.187993 29.514121 ]\n", + " [ -0.187993 24.138121 ]\n", + " [ -0.187993 18.76212101]\n", + " [ -0.187993 13.386121 ]\n", + " [ -0.187993 8.010121 ]\n", + " [ -0.187993 2.634121 ]\n", + " [ -2.085493 31.411621 ]\n", + " [ -7.461493 31.411621 ]\n", + " [-12.837493 31.411621 ]\n", + " [-18.213493 31.411621 ]\n", + " [-23.589493 31.411621 ]\n", + " [-28.965493 31.411621 ]\n", + " [ -2.085493 0.736621 ]\n", + " [ -7.461493 0.736621 ]\n", + " [-12.837493 0.736621 ]\n", + " [-18.213493 0.736621 ]\n", + " [-23.58949299 0.736621 ]\n", + " [-28.965493 0.736621 ]\n", + " [-30.862993 29.514121 ]\n", + " [-30.862993 24.138121 ]\n", + " [-30.862993 18.762121 ]\n", + " [-30.862993 13.386121 ]\n", + " [-30.862993 8.010121 ]\n", + " [-30.862993 2.634121 ]\n", + " [ -0.187993 31.411621 ]\n", + " [ -0.187993 31.411621 ]\n", + " [-30.862993 0.736621 ]\n", + " [-30.862993 0.736621 ]\n", + " [ -2.085493 29.514121 ]\n", + " [ -7.461493 29.514121 ]\n", + " [-12.837493 29.514121 ]\n", + " [-18.213493 29.514121 ]\n", + " [-23.589493 29.514121 ]\n", + " [-28.965493 29.514121 ]\n", + " [ -2.085493 24.138121 ]\n", + " [ -7.461493 24.138121 ]\n", + " [-12.837493 24.138121 ]\n", + " [-18.213493 24.138121 ]\n", + " [-23.589493 24.138121 ]\n", + " [-28.965493 24.138121 ]\n", + " [ -2.085493 18.762121 ]\n", + " [ -7.461493 18.762121 ]\n", + " [-12.837493 18.762121 ]\n", + " [-18.213493 18.762121 ]\n", + " [-23.589493 18.762121 ]\n", + " [-28.965493 18.762121 ]\n", + " [ -2.085493 13.386121 ]\n", + " [ -7.461493 13.386121 ]\n", + " [-12.837493 13.386121 ]\n", + " [-18.213493 13.386121 ]\n", + " [-23.589493 13.386121 ]\n", + " [-28.965493 13.386121 ]\n", + " [ -2.085493 8.010121 ]\n", + " [ -7.461493 8.010121 ]\n", + " [-12.837493 8.010121 ]\n", + " [-18.213493 8.010121 ]\n", + " [-23.589493 8.010121 ]\n", + " [-28.965493 8.010121 ]\n", + " [ -2.085493 2.634121 ]\n", + " [ -7.461493 2.634121 ]\n", + " [-12.837493 2.634121 ]\n", + " [-18.213493 2.634121 ]\n", + " [-23.589493 2.634121 ]\n", + " [-28.965493 2.634121 ]]\n", + "DEBUG:root:fitpix2pix: ccdpx: shape: (96, 2)\n", + "DEBUG:root:make_az_asym: xyp: [[ -0.172993 31.426621 ]\n", + " [ -0.172993 27.04019243]\n", + " [ -0.172993 22.65376385]\n", + " [ -0.172993 18.26733528]\n", + " [ -0.172993 13.88090671]\n", + " [ -0.172993 9.49447814]\n", + " [ -0.172993 5.10804957]\n", + " [ -0.172993 0.721621 ]\n", + " [ -0.172993 31.426621 ]\n", + " [ -4.55942157 31.426621 ]\n", + " [ -8.94585014 31.426621 ]\n", + " [-13.33227871 31.426621 ]\n", + " [-17.71870729 31.426621 ]\n", + " [-22.10513586 31.426621 ]\n", + " [-26.49156443 31.426621 ]\n", + " [-30.877993 31.426621 ]\n", + " [ -0.172993 0.721621 ]\n", + " [ -4.55942157 0.721621 ]\n", + " [ -8.94585014 0.721621 ]\n", + " [-13.33227872 0.721621 ]\n", + " [-17.71870728 0.721621 ]\n", + " [-22.10513586 0.721621 ]\n", + " [-26.49156443 0.721621 ]\n", + " [-30.877993 0.721621 ]\n", + " [-30.877993 31.426621 ]\n", + " [-30.877993 27.04019243]\n", + " [-30.877993 22.65376385]\n", + " [-30.877993 18.26733529]\n", + " [-30.877993 13.88090671]\n", + " [-30.877993 9.49447814]\n", + " [-30.877993 5.10804957]\n", + " [-30.877993 0.721621 ]\n", + " [ -0.187993 29.514121 ]\n", + " [ -0.187993 24.138121 ]\n", + " [ -0.187993 18.76212101]\n", + " [ -0.187993 13.386121 ]\n", + " [ -0.187993 8.010121 ]\n", + " [ -0.187993 2.634121 ]\n", + " [ -2.085493 31.411621 ]\n", + " [ -7.461493 31.411621 ]\n", + " [-12.837493 31.411621 ]\n", + " [-18.213493 31.411621 ]\n", + " [-23.589493 31.411621 ]\n", + " [-28.965493 31.411621 ]\n", + " [ -2.085493 0.736621 ]\n", + " [ -7.461493 0.736621 ]\n", + " [-12.837493 0.736621 ]\n", + " [-18.213493 0.736621 ]\n", + " [-23.58949299 0.736621 ]\n", + " [-28.965493 0.736621 ]\n", + " [-30.862993 29.514121 ]\n", + " [-30.862993 24.138121 ]\n", + " [-30.862993 18.762121 ]\n", + " [-30.862993 13.386121 ]\n", + " [-30.862993 8.010121 ]\n", + " [-30.862993 2.634121 ]\n", + " [ -0.187993 31.411621 ]\n", + " [ -0.187993 31.411621 ]\n", + " [-30.862993 0.736621 ]\n", + " [-30.862993 0.736621 ]\n", + " [ -2.085493 29.514121 ]\n", + " [ -7.461493 29.514121 ]\n", + " [-12.837493 29.514121 ]\n", + " [-18.213493 29.514121 ]\n", + " [-23.589493 29.514121 ]\n", + " [-28.965493 29.514121 ]\n", + " [ -2.085493 24.138121 ]\n", + " [ -7.461493 24.138121 ]\n", + " [-12.837493 24.138121 ]\n", + " [-18.213493 24.138121 ]\n", + " [-23.589493 24.138121 ]\n", + " [-28.965493 24.138121 ]\n", + " [ -2.085493 18.762121 ]\n", + " [ -7.461493 18.762121 ]\n", + " [-12.837493 18.762121 ]\n", + " [-18.213493 18.762121 ]\n", + " [-23.589493 18.762121 ]\n", + " [-28.965493 18.762121 ]\n", + " [ -2.085493 13.386121 ]\n", + " [ -7.461493 13.386121 ]\n", + " [-12.837493 13.386121 ]\n", + " [-18.213493 13.386121 ]\n", + " [-23.589493 13.386121 ]\n", + " [-28.965493 13.386121 ]\n", + " [ -2.085493 8.010121 ]\n", + " [ -7.461493 8.010121 ]\n", + " [-12.837493 8.010121 ]\n", + " [-18.213493 8.010121 ]\n", + " [-23.589493 8.010121 ]\n", + " [-28.965493 8.010121 ]\n", + " [ -2.085493 2.634121 ]\n", + " [ -7.461493 2.634121 ]\n", + " [-12.837493 2.634121 DEBUG:root:fitpix2pix: visCut: True\n", + " ]\n", + " [-18.213493 2.634121 ]\n", + " [-23.589493 2.634121 ]\n", + " [-28.965493 2.634121 ]]\n", + "DEBUG:root:optics_fp: rtanth: [45.0829242 42.14007881 39.46623798 37.11957906 35.16566323 33.67292833\n", + " 32.70458448 32.30781794 45.0829242 42.05181002 39.27748601 36.81804721\n", + " 34.74043472 33.1165898 32.01563284 31.49245123 32.30781794 27.92274647\n", + " 23.53818074 19.15446803 14.77236778 10.39391962 6.02708817 1.76054813\n", + " 31.49245123 27.11255561 22.73517913 18.3621235 13.99743906 9.65248838\n", + " 5.37533955 1.76054813 43.75905359 40.32550839 37.35292806 34.95909888\n", + " 33.26918554 32.39354213 43.72230567 40.17242604 37.06494796 34.51955493\n", + " 32.6679006 31.63204924 30.39623387 25.02228675 19.64946278 14.27902981\n", + " 8.91530985 3.58853155 29.58337372 24.21709844 18.85636405 13.50776907\n", + " 8.19511667 3.10850472 45.06171287 45.06171287 1.78051042 1.78051042\n", + " 42.37849474 38.70556314 35.46980647 32.8008609 30.84620775 29.74698879\n", + " 38.82304306 34.77660814 31.13517347 28.05687673 25.74452154 24.41669917\n", + " 35.72566697 31.28109784 27.17523938 23.58565115 20.78160237 19.11203303\n", + " 33.21476541 28.37964838 23.77795187 19.57499171 16.08640287 13.86243725\n", + " 31.43120667 26.26984115 21.21535074 16.36705265 11.9779994 8.76739863\n", + " 30.50284606 25.15168819 19.81398425 14.50459502 9.27228848 4.40115246]\n", + "DEBUG:root:radec2pix: camVec: [[-0.00114705 -0.00115629 -0.0011641 -0.00117048 -0.00117539 -0.00117881\n", + " -0.00118068 -0.00118097 -0.00114705 -0.03018244 -0.05910007 -0.08778716\n", + " -0.11613176 -0.14402308 -0.17135219 -0.19801388 -0.00118097 -0.03121228\n", + " -0.06111791 -0.09077999 -0.12008538 -0.14892541 -0.17719395 -0.20478471\n", + " -0.19801388 -0.19975823 -0.20124936 -0.20248221 -0.20345393 -0.20416257\n", + " -0.20460656 -0.20478471 -0.00125101 -0.00126235 -0.00127136 -0.00127799\n", + " -0.00128216 -0.00128379 -0.01381426 -0.04933618 -0.08456905 -0.11930642\n", + " -0.15334441 -0.18648385 -0.01428247 -0.05101935 -0.08744986 -0.12336368\n", + " -0.15856056 -0.19284509 -0.1987148 -0.20068229 -0.20226422 -0.20345456\n", + " -0.20424964 -0.20464672 -0.00124645 -0.00124645 -0.20469148 -0.20469148\n", + " -0.01386808 -0.04952932 -0.08490071 -0.11977552 -0.15394951 -0.18722234\n", + " -0.01400325 -0.05001432 -0.08573269 -0.12095098 -0.15546507 -0.18907339\n", + " -0.01411268 -0.05040698 -0.08640482 -0.12189811 -0.15668376 -0.19056116\n", + " -0.01419584 -0.05070556 -0.08691471 -0.12261435 -0.15760261 -0.19168088\n", + " -0.01425179 -0.05090701 -0.08725814 -0.12309542 -0.15821798 -0.19242913\n", + " -0.01427955 -0.05100809 -0.08743051 -0.12333654 -0.15852587 -0.19280295]\n", + " [ 0.20838541 0.18089194 0.15270652 0.12393558 0.09468513 0.06506336\n", + " 0.03518275 0.0051606 0.20838541 0.20823844 0.20782077 0.20713345\n", + " 0.20617803 0.20495645 0.20347155 0.2017284 0.0051606 0.00515607\n", + " 0.00514464 0.00512646 0.00510175 0.0050707 0.00503345 0.00499006\n", + " 0.2017284 0.17512925 0.14784829 0.11999042 0.09166442 0.06298098\n", + " 0.03405194 0.00499006 0.19649007 0.1623152 0.12720686 0.09136033\n", + " 0.05497503 0.01826009 0.20826196 0.20789982 0.20713224 0.20596186\n", + " 0.20439232 0.20242966 0.00526224 0.00525184 0.00523103 0.00520016\n", + " 0.00515961 0.0051096 0.19022738 0.157155 0.12316211 0.08844755\n", + " 0.05321501 0.01767079 0.20829266 0.20829266 0.0050897 0.0050897\n", + " 0.19646111 0.19611969 0.19539637 0.19429398 0.1928159 0.19096695\n", + " 0.16229116 0.16200846 0.16141067 0.16050163 0.15928501 0.15776388\n", + " 0.1271878 0.12696445 0.12649338 0.12577923 0.12482642 0.12363768\n", + " 0.0913464 0.09118412 0.09084281 0.0903271 0.0896414 0.08878838\n", + " 0.05496643 0.05486748 0.05466012 0.05434775 0.0539337 0.05341999\n", + " 0.01825699 0.0182233 0.01815347 0.01804874 0.01791034 0.01773905]\n", + " [ 0.97804612 0.9835023 0.9882709 0.99228958 0.99550658 0.99788044\n", + " 0.9993802 0.99998599 0.97804612 0.97761228 0.9763799 0.97436602\n", + " 0.9715987 0.96811684 0.96396979 0.95921643 0.99998599 0.99949948\n", + " 0.99811729 0.99585778 0.99275046 0.98883543 0.98416308 0.97879432\n", + " 0.95921643 0.96406763 0.96831791 0.97190702 0.97478415 0.97690892\n", + " 0.97825182 0.97879432 0.98050502 0.98673815 0.99187539 0.99581708\n", + " 0.99848691 0.99983245 0.97797552 0.97690512 0.97465087 0.97125985\n", + " 0.96680364 0.96137714 0.99988415 0.99868386 0.99615519 0.9923479\n", + " 0.98733577 0.98121591 0.96141873 0.96696894 0.9715556 0.97508116\n", + " 0.97747135 0.97867638 0.97806575 0.97806575 0.97881331 0.97881331\n", + " 0.98041354 0.9793283 0.97704254 0.97360345 0.96908285 0.96357637\n", + " 0.98664355 0.98552109 0.9831564 0.9795969 0.97491482 0.9692068\n", + " 0.99177825 0.99062564 0.98819716 0.98454072 0.97972882 0.97385839\n", + " 0.99571799 0.99454231 0.99206523 0.98833534 0.98342556 0.97743289\n", + " 0.99838649 0.99719508 0.99468502 0.99090557 0.98593013 0.97985577\n", + " 0.99973135 0.99853197 0.9960052 0.99220076 0.98719237 0.98107714]]\n", + "DEBUG:root:optics_fp: rtanth: [45.10526614 42.15252235 39.46728719 37.10767964 35.13935868 DEBUG:root:make_az_asym: xyp: shape: (96, 2)\n", + "DEBUG:root:optics_fp: xyfp: [[32.2358199 31.31614388]\n", + " [32.23338667 26.92971599]\n", + " [32.23095344 22.54328809]\n", + " [32.2285202 18.15686019]\n", + " [32.22608698 13.7704323 ]\n", + " [32.22365375 9.3840044 ]\n", + " [32.22122051 4.99757651]\n", + " [32.21878728 0.61114861]\n", + " [32.2358199 31.31614388]\n", + " [27.849392 31.31857712]\n", + " [23.46296411 31.32101035]\n", + " [19.07653621 31.32344358]\n", + " [14.69010831 31.3258768 ]\n", + " [10.30368042 31.32831004]\n", + " [ 5.91725252 31.33074327]\n", + " [ 1.53082462 31.3331765 ]\n", + " [32.21878728 0.61114861]\n", + " [27.83235938 0.61358184]\n", + " [23.44593149 0.61601507]\n", + " [19.0595036 0.6184483 ]\n", + " [14.6730757 0.62088153]\n", + " [10.2866478 0.62331476]\n", + " [ 5.90021991 0.625748 ]\n", + " [ 1.513792 0.62818122]\n", + " [ 1.53082462 31.3331765 ]\n", + " [ 1.52839139 26.94674861]\n", + " [ 1.52595816 22.5603207 ]\n", + " [ 1.52352493 18.17389281]\n", + " [ 1.5210917 13.78746492]\n", + " [ 1.51865847 9.40103702]\n", + " [ 1.51622524 5.01460912]\n", + " [ 1.513792 0.62818122]\n", + " [32.219759 29.4036525 ]\n", + " [32.21677684 24.02765333]\n", + " [32.21379467 18.65165415]\n", + " [32.21081251 13.27565498]\n", + " [32.20783035 7.89965581]\n", + " [32.20484818 2.52365664]\n", + " [30.32331188 31.30220479]\n", + " [24.9473127 31.30518695]\n", + " [19.57131353 31.30816912]\n", + " [14.19531435 31.31115127]\n", + " [ 8.81931518 31.31413344]\n", + " [ 3.44331601 31.3171156 ]\n", + " [30.3062959 0.62720951]\n", + " [24.93029672 0.63019167]\n", + " [19.55429755 0.63317383]\n", + " [14.17829838 0.636156 ]\n", + " [ 8.80229921 0.63913816]\n", + " [ 3.42630004 0.64212033]\n", + " [ 1.54476372 29.42066847]\n", + " [ 1.54178156 24.0446693 ]\n", + " [ 1.53879939 18.66867013]\n", + " [ 1.53581723 13.29267096]\n", + " [ 1.53283507 7.91667178]\n", + " [ 1.5298529 2.54067261]\n", + " [32.22081158 31.30115221]\n", + " [32.22081158 31.30115221]\n", + " [ 1.52880032 0.6431729 ]\n", + " [ 1.52880032 0.6431729 ]\n", + " [30.32225929 29.40470508]\n", + " [24.94626012 29.40768724]\n", + " [19.57026095 29.41066941]\n", + " [14.19426178 29.41365157]\n", + " [ 8.8182626 29.41663373]\n", + " [ 3.44226343 29.4196159 ]\n", + " [30.31927713 24.02870591]\n", + " [24.94327796 24.03168807]\n", + " [19.56727878 24.03467023]\n", + " [14.19127961 24.0376524 ]\n", + " [ 8.81528044 24.04063456]\n", + " [ 3.439233.63109692\n", + " 32.64672024 32.23425998 45.10526614 42.08371704 39.32015966 36.87264817\n", + " 34.80791464 33.1974573 32.10970154 31.5986741 32.23425998 27.84962696\n", + " 23.46566508 19.08283694 14.70215645 10.32635724 5.96618932 1.74318313\n", + " 31.5986741 27.21812469 22.83983208 18.46540167 14.09842896 9.748941\n", + " 5.45889306 1.74318313 43.77728663 40.33061683 37.34259278 34.93111177\n", + " 33.22196043 32.3267303 43.74864122 40.21129183 37.11812392 34.58850978\n", + " 32.75328451 31.73315358 30.32290674 24.94961031 19.57779834 14.20915457\n", + " 8.84944693 3.53950567 29.68929466 24.32204857 18.9597634 13.60830488\n", + " 8.2886698 3.16557807 45.08405409 45.08405409 1.76362955 1.76362955\n", + " 42.40073703 38.740507 35.51948783 32.86706408 30.92986484 29.84747775\n", + " 38.83207862 34.7984872 31.1727741 28.11319496 25.82178089 24.5148885\n", + " 35.71891532 31.28650338 27.19655174 23.62757526 20.84885967 19.20651814\n", + " 33.18967076 28.36474267 23.77742123 19.59529652 16.13655116 13.95004204\n", + " 31.3858301 26.23117825 21.1868319 16.35517444 11.99601471 8.83853824\n", + " 30.43664187 25.08771711 19.753498 14.45027919 9.23164159 4.4089223 ]\n", + "DEBUG:root:radec2pix: ccdpx: [[-4.45000002e+01 -5.00000175e-01]\n", + " [-4.44999997e+01 2.91928572e+02]\n", + " [-4.45000002e+01 5.84357143e+02]\n", + " [-4.45000000e+01 8.76785714e+02]\n", + " [-4.45000001e+01 1.16921429e+03]\n", + " [-4.44999999e+01 1.46164286e+03]\n", + " [-4.45000001e+01 1.75407143e+03]\n", + " [-4.44999997e+01 2.04650000e+03]\n", + " [-4.45000002e+01 -5.00000175e-01]\n", + " [ 2.47928571e+02 -5.00000003e-01]\n", + " [ 5.40357143e+02 -4.99999889e-01]\n", + " [ 8.32785714e+02 -5.00000160e-01]\n", + " [ 1.12521429e+03 -5.00000087e-01]\n", + " [ 1.41764286e+03 -5.00000059e-01]\n", + " [ 1.71007143e+03 -4.99999907e-01]\n", + " [ 2.00250000e+03 -4.99999721e-01]\n", + " [-4.44999997e+01 2.04650000e+03]\n", + " [ 2.47928571e+02 2.04650000e+03]\n", + " [ 5.40357143e+02 2.04650000e+03]\n", + " [ 8.32785714e+02 2.04650000e+03]\n", + " [ 1.12521429e+03 2.04650000e+03]\n", + " [ 1.41764286e+03 2.04650000e+03]\n", + " [ 1.71007143e+03 2.04650000e+03]\n", + " [ 2.00250000e+03 2.04650000e+03]\n", + " [ 2.00250000e+03 -4.99999721e-01]\n", + " [ 2.00250000e+03 2.91928571e+02]\n", + " [ 2.00250000e+03 5.84357143e+02]\n", + " [ 2.00250000e+03 8.76785714e+02]\n", + " [ 2.00250000e+03 1.16921429e+03]\n", + " [ 2.00250000e+03 1.46164286e+03]\n", + " [ 2.00250000e+03 1.75407143e+03]\n", + " [ 2.00250000e+03 2.04650000e+03]\n", + " [-4.35000001e+01 1.27000000e+02]\n", + " [-4.34999997e+01 4.85400000e+02]\n", + " [-4.35000003e+01 8.43800000e+02]\n", + " [-4.35000003e+01 1.20220000e+03]\n", + " [-4.35000002e+01 1.56060000e+03]\n", + " [-4.35000003e+01 1.91900000e+03]\n", + " [ 8.30000000e+01 4.99999980e-01]\n", + " [ 4.41400000e+02 4.99999948e-01]\n", + " [ 7.99800000e+02 4.99999731e-01]\n", + " [ 1.15820000e+03 4.99999908e-01]\n", + " [ 1.51660000e+03 4.99999771e-01]\n", + " [ 1.87500000e+03 5.00000017e-01]\n", + " [ 8.29999998e+01 2.04550000e+03]\n", + " [ 4.41400000e+02 2.04550000e+03]\n", + " [ 7.99800000e+02 2.04550000e+03]\n", + " [ 1.15820000e+03 2.04550000e+03]\n", + " [ 1.51660000e+03 2.04550000e+03]\n", + " [ 1.87500000e+03 2.04550000e+03]\n", + " [ 2.00150000e+03 1.27000000e+02]\n", + " [ 2.00150000e+03 4.85400000e+02]\n", + " [ 2.00150000e+03 8.43800000e+02]\n", + " [ 2.00150000e+03 1.20220000e+03]\n", + " [ 2.00150000e+03 1.56060000e+03]\n", + " [ 2.00150000e+03 1.91900000e+03]\n", + " [-4.35000001e+01 4.99999868e-01]\n", + " [-4.35000001e+01 4.99999868e-01]\n", + " [ 2.00150000e+03 2.04550000e+03]\n", + " [ 2.00150000e+03 2.04550000e+03]\n", + " [ 8.30000002e+01 1.27000000e+02]\n", + " [ 4.41400000e+02 1.27000000e+02]\n", + " [ 7.99800000e+02 1.27000000e+02]\n", + " [ 1.15820000e+03 1.27000000e+02]\n", + " [ 1.51660000e+03 1.27000000e+02]\n", + " [ 1.87500000e+03 1.27000000e+02]\n", + " [ 8.30000001e+01 4.85400000e+02]\n", + " [ 4.41400000e+02 4.85400000e+02]\n", + " [ 7.99800000e+02 4.85400000e+02]\n", + " [ 1.15820000e+03 4.85400000e+02]\n", + " [ 1.51660000e+03 4.85400000e+02]\n", + " [ 1.87500000e+03 4.85400000e+02]\n", + " [ 8.29999997e+01 8.43800000e+02]\n", + " [ 4.41400000e+02 8.43800000e+02]\n", + " [ 7.99800000e+02 8.43800000e+02]\n", + " [ 1.15820000e+03 8.43800000e+02]\n", + " [ 1.51660000e+03 8.43800000e+02]\n", + " [ 1.87500000e+03 8.43800000e+02]\n", + " [ 8.29999998e+01 1.20220000e+03]\n", + " [ 4.41400000e+02 1.20220000e+03]\n", + " [ 7.99800000e+02 1.20220000e+03]\n", + " [ 1.15820000e+03 1.20220000e+DEBUG:root:radec2pix: ccdpx: [[-4.45000000e+01 -4.99999902e-01]\n", + " [-4.45000000e+01 2.91928572e+02]\n", + " [-4.45000000e+01 5.84357143e+02]\n", + " [-4.45000000e+01 8.76785715e+02]\n", + " [-4.45000000e+01 1.16921429e+03]\n", + " [-4.45000000e+01 1.46164286e+03]\n", + " [-4.45000000e+01 1.75407143e+03]\n", + " [-4.45000001e+01 2.04650000e+03]\n", + " [-4.45000000e+01 -4.99999902e-01]\n", + " [ 2.47928571e+02 -4.99999902e-01]\n", + " [ 5.40357143e+02 -4.99999727e-01]\n", + " [ 8.32785714e+02 -5.00000071e-01]\n", + " [ 1.12521429e+03 -5.00000281e-01]\n", + " [ 1.41764286e+03 -4.99999968e-01]\n", + " [ 1.71007143e+03 -5.00000211e-01]\n", + " [ 2.00250000e+03 -5.00000200e-01]\n", + " [-4.45000001e+01 2.04650000e+03]\n", + " [ 2.47928571e+02 2.04650000e+03]\n", + " [ 5.40357143e+02 2.04650000e+03]\n", + " [ 8.32785714e+02 2.04650000e+03]\n", + " [ 1.12521429e+03 2.04650000e+03]\n", + " [ 1.41764286e+03 2.04650000e+03]\n", + " [ 1.71007143e+03 2.04650000e+03]\n", + " [ 2.00250000e+03 2.04650000e+03]\n", + " [ 2.00250000e+03 -5.00000200e-01]\n", + " [ 2.00250000e+03 2.91928571e+02]\n", + " [ 2.00250000e+03 5.84357143e+02]\n", + " [ 2.00250000e+03 8.76785714e+02]\n", + " [ 2.00250000e+03 1.16921429e+03]\n", + " [ 2.00250000e+03 1.46164286e+03]\n", + " [ 2.00250000e+03 1.75407143e+03]\n", + " [ 2.00250000e+03 2.04650000e+03]\n", + " [-4.35000000e+01 1.27000000e+02]\n", + " [-4.35000000e+01 4.85400000e+02]\n", + " [-4.35000000e+01 8.43800000e+02]\n", + " [-4.35000000e+01 1.20220000e+03]\n", + " [-4.35000000e+01 1.56060000e+03]\n", + " [-4.35000000e+01 1.91900000e+03]\n", + " [ 8.30000000e+01 5.00000088e-01]\n", + " [ 4.41400000e+02 5.00000229e-01]\n", + " [ 7.99800000e+02 4.99999876e-01]\n", + " [ 1.15820000e+03 5.00000139e-01]\n", + " [ 1.51660000e+03 5.00000172e-01]\n", + " [ 1.87500000e+03 4.99999925e-01]\n", + " [ 8.30000002e+01 2.04550000e+03]\n", + " [ 4.41400000e+02 2.04550000e+03]\n", + " [ 7.99800000e+02 2.04550000e+03]\n", + " [ 1.15820000e+03 2.04550000e+03]\n", + " [ 1.51660000e+03 2.04550000e+03]\n", + " [ 1.87500000e+03 2.04550000e+03]\n", + " [ 2.00150000e+03 1.27000000e+02]\n", + " [ 2.00150000e+03 4.85400000e+02]\n", + " [ 2.00150000e+03 8.43800000e+02]\n", + " [ 2.00150000e+03 1.20220000e+03]\n", + " [ 2.00150000e+03 1.56060000e+03]\n", + " [ 2.00150000e+03 1.91900000e+03]\n", + " [-4.35000000e+01 5.00000166e-01]\n", + " [-4.35000000e+01 5.00000166e-01]\n", + " [ 2.00150000e+03 2.04550000e+03]\n", + " [ 2.00150000e+03 2.04550000e+03]\n", + " [ 8.30000000e+01 1.27000000e+02]\n", + " [ 4.41400000e+02 1.27000000e+02]\n", + " [ 7.99800000e+02 1.27000000e+02]\n", + " [ 1.15820000e+03 1.27000000e+02]\n", + " [ 1.51660000e+03 1.27000000e+02]\n", + " [ 1.87500000e+03 1.27000000e+02]\n", + " [ 8.30000000e+01 4.85400000e+02]\n", + " [ 4.41400000e+02 4.85400000e+02]\n", + " [ 7.99800000e+02 4.85400000e+02]\n", + " [ 1.15820000e+03 4.85400000e+02]\n", + " [ 1.51660000e+03 4.85400000e+02]\n", + " [ 1.87500000e+03 4.85400000e+02]\n", + " [ 8.30000000e+01 8.43800000e+02]\n", + " [ 4.41400000e+02 8.43800000e+02]\n", + " [ 7.99800000e+02 8.43800000e+02]\n", + " [ 1.15820000e+03 8.43800000e+02]\n", + " [ 1.51660000e+03 8.43800000e+02]\n", + " [ 1.87500000e+03 8.43800000e+02]\n", + " [ 8.30000000e+01 1.20220000e+03]\n", + " [ 4.41400000e+02 1.20220000e+03]\n", + " [ 7.99800000e+02 1.20220000e+03]\n", + " [ 1.15820000e+03 1.20220000e+03]\n", + " [ 1.51660000e+03 1.20220000e+03]\n", + " [ 1.87500000e+03 1.20220000e+03]\n", + " [ 8.30000000e+01 1.56060000e+03]\n", + " [ 4.41400000e+02 1.56060000e+03]\n", + " [ 7.99800000e+02 1.56060000e+03]\n", + " [ 1.15820000e+03 1.56060000e+03]\n", + " [ 1.51660000e+03 1.56060000e+03]\n", + " [ 1.87500000e+03 1.56060000e+03]\n", + " [ 8.30000001e+01 1.91900000e+03]\n", + " [ 4.41400000e+02 1.91900000e+03]\n", + " [ 7.99800000e+02 1.91900000e+03]\n", + " [ 1.15820000e+03 1.91900000e+03]\n", + " [ 1.51660000e+03 1.91900000e+03]\n", + " [ 1.87500000e+03 1.91900000e+03]]\n", + "03]\n", + " [ 1.51660000e+03 1.20220000e+03]\n", + " [ 1.87500000e+03 1.20220000e+03]\n", + " [ 8.30000003e+01 1.56060000e+03]\n", + " [ 4.41400000e+02 1.56060000e+03]\n", + " [ 7.99800000e+02 1.56060000e+03]\n", + " [ 1.15820000e+03 1.56060000e+03]\n", + " [ 1.51660000e+03 1.56060000e+03]\n", + " [ 1.87500000e+03 1.56060000e+03]\n", + " [ 8.29999998e+01 1.91900000e+03]\n", + " [ 4.41400000e+02 1.91900000e+03]\n", + " [ 7.99800000e+02 1.91900000e+03]\n", + " [ 1.15820000e+03 1.91900000e+03]\n", + " [ 1.51660000e+03 1.91900000e+03]\n", + " [ 1.87500000e+03 1.91900000e+03]]\n", + "DEBUG:root:optics_fp: cphi: [0.71674184 0.76675024 0.81864942 0.87035228 0.91865771 0.95932569\n", + " 0.98767201 0.99974255 0.71674184 0.66409483 0.59932455 0.52022133\n", + " 0.42506968 0.31345852 0.18722881 0.05105417 0.99974255 0.99965353\n", + " 0.99950987 0.99925593 0.99874223 0.99744464 0.99234175 0.9056856\n", + " 0.05105417 0.05923154 0.07055215 0.08725098 0.11432168 0.16558509\n", + " 0.29698694 0.9056856 0.73806414 0.80084934 0.86451924 0.92365062\n", + " 0.9704975 0.99665945 0.6953044 0.6229226 0.53010496 0.41345588\n", + " 0.27232584 0.11128947 0.99969644 0.99954923 0.99926436 0.99859785\n", + " 0.99637691 0.97728259 0.0548278 0.06688083 0.08577093 0.11956053\n", + " 0.19678357 0.51804091 0.7167462 0.7167462 0.90395966 0.90395966\n", + " 0.7173329 0.64650885 0.55392153 0.43509499 0.28838199 0.1183142\n", + " 0.78296688 0.7194824 0.6309635 0.50857972 0.34543889 0.14404729\n", + " 0.85078398 0.79980651 0.72282072 0.60489433 0.42782202 0.18390653\n", + " 0.9150296 0.88149415 0.82599605 0.72871014 0.55254711 0.25338228\n", + " 0.96687862 0.95220074 0.92565817 0.87139471 0.74187378 0.40036553\n", + " 0.99622933 0.99443943 0.99100871 0.9831251 0.95810564 0.79702588]\n", + "DEBUG:root:opticDEBUG:root:radec2pix: camVec Shape: (3, 96)\n", + "s_fp: cphi: [-0.71462647 -0.76465055 -0.81663789 -0.86852682 -0.91713533 -0.95822269\n", + " -0.98707045 -0.99965519 -0.71462647 -0.66170459 -0.59665476 -0.51729759\n", + " -0.42196448 -0.31030314 -0.18420747 -0.04836971 -0.99965519 -0.99953644\n", + " -0.99934473 -0.99900557 -0.99831831 -0.99657638 -0.98967281 -0.87090507\n", + " -0.04836971 -0.05610053 -0.06679051 -0.08253363 -0.10799424 -0.15602533\n", + " -0.27837409 -0.87090507 -0.73594733 -0.79879708 -0.86266587 -0.92216881\n", + " -0.96955698 -0.99635146 -0.69307094 -0.62034596 -0.5272064 -0.41033606\n", + " -0.26919173 -0.10843276 -0.99959581 -0.99940041 -0.99902199 -0.99813478\n", + " -0.99516407 -0.96924606 -0.05196415 -0.06335735 -0.0811815 -0.11297393\n", + " -0.18526317 -0.48452029 -0.71462988 -0.71462988 -0.86931637 -0.86931637\n", + " -0.71508845 -0.64388103 -0.55091667 -0.43180852 -0.28504096 -0.11526196\n", + " -0.78075859 -0.71676907 -0.62767848 -0.50476226 -0.34135833 -0.1402609\n", + " -0.84875703 -0.7971706 -0.71938094 -0.60051365 -0.4226937 -0.17893311\n", + " -0.91338303 -0.87922117 -0.82275039 -0.7239943 -0.54602022 -0.24622747\n", + " -0.96582068 -0.95066579 -0.92326613 -0.86731478 -0.73433428 -0.38842227\n", + " -0.99588139 -0.99392405 -0.99016821 -0.98152333 -0.95403253 -0.77825973]\n", + "DEBUG:root:radec2pix: xyfp: [[ -0.172993 31.426621 ]\n", + " [ -0.172993 27.04019243]\n", + " [ -0.172993 22.65376385]\n", + " [ -0.172993 18.26733528]\n", + " [ -0.172993 13.88090671]\n", + " [ -0.172993 9.49447814]\n", + " [ -0.172993 5.10804957]\n", + " [ -0.172993 0.721621 ]\n", + " [ -0.172993 31.426621 ]\n", + " [ -4.55942157 31.426621 ]\n", + " [ -8.94585014 31.426621 ]\n", + " [-13.33227871 31.426621 ]\n", + " [-17.71870729 31.426621 ]\n", + " [-22.10513586 31.426621 ]\n", + " [-26.49156443 31.426621 ]\n", + " [-30.877993 31.426621 ]\n", + " [ -0.172993 0.721621 ]\n", + " [ -4.55942157 0.721621 ]\n", + " [ -8.94585014 0.721621 ]\n", + " [-13.33227872 0.721621 ]\n", + " [-17.71870728 0.721621 ]\n", + " [-22.10513586 0.721621 ]\n", + " [-26.49156443 0.721621 ]\n", + " [-30.877993 0.721621 ]\n", + " [-30.877993 31.426621 ]\n", + " [-30.877993 27.04019243]\n", + " [-30.877993 22.65376385]\n", + " [-30.877993 18.26733529]\n", + " [-30.877993 13.88090671]\n", + " [-30.877993 9.49447814]\n", + " [-30.877993 5.10804957]\n", + " [-30.877993 0.721621 ]\n", + " [ -0.187993 29.514121 ]\n", + " [ -0.187993 24.138121 ]\n", + " [ -0.187993 18.76212101]\n", + " [ -0.187993 13.386121 ]\n", + " [ -0.187993 8.010121 ]\n", + " [ -0.187993 2.634121 ]\n", + " [ -2.085493 31.411621 ]\n", + " [ -7.461493 31.411621 ]\n", + " [-12.837493 31.411621 ]\n", + " [-18.213493 31.411621 ]\n", + " [-23.589493 31.411621 ]\n", + " [-28.965493 31.411621 ]\n", + " [ -2.085493 0.736621 ]\n", + " [ -7.461493 0.736621 ]\n", + " [-12.837493 0.736621 ]\n", + " [-18.213493 0.736621 ]\n", + " [-23.58949299 0.736621 ]\n", + " [-28.965493 0.736621 ]\n", + " [-30.862993 29.514121 ]\n", + " [-30.862993 24.138121 ]\n", + " [-30.862993 18.762121 ]\n", + " [-30.862993 13.386121 ]\n", + " [-30.862993 8.010121 ]\n", + " [-30.862993 2.634121 ]\n", + " [ -0.187993 31.411621 ]\n", + " [ -0.187993 31.411621 ]\n", + " [-30.862993 0.736621 ]\n", + " [-30.862993 0.736621 ]\n", + " [ -2.085493 29.514121 ]\n", + " [ -7.461493 29.514121 ]\n", + " [-12.837493 29.514121 ]\n", + " [-18.213493 29.514121 ]\n", + " [-23.589493 29.514121 ]\n", + " [-28.965493 29.514121 ]\n", + " [ -2.085493 24.138121 ]\n", + " [ -7.461493 24.138121 ]\n", + " [-12.837493 24.138121 ]\n", + " [-18.213493 24.138121 ]\n", + " [-23.589493 24.138121 ]\n", + " [-28.965493 24.138121 ]\n", + " [ -2.085493 18.762121 ]\n", + " [ -7.461493 18.762121 ]\n", + " [-12.837493 18.762121 ]\n", + " [-18.213493 18.762121 ]\n", + " [-23.589493 18.762121 ]\n", + " [-28.965493 18.762121 ]\n", + " [ -2.085493 13.386121 ]\n", + " [ -7.461493 13.386121 ]\n", + " [-12.837493 13.386121 ]\n", + " [-18.213493 13.386121 ]\n", + " [-23.589493 13.386121 ]\n", + " [-28.965493 13.386121 ]\n", + " [ -2.085493 8.010121 ]\n", + " [ -7.461493 8.010121 ]\n", + " [-12.837493 8.010121 ]\n", + " [-18.213493 8.010121 ]\n", + " [-23.589493 8.010121 ]\n", + " [-28.965493 8.010121 ]\n", + " [ -2.085493 2.634121 ]\n", + " [ -7.461493 2.634121 ]\n", + " [-12.837493 2.634121 ]\n", + " [-18.213493 2.634121 ]\n", + " [-23.589493 2.634121 ]\n", + " [-28.965493 2.634121 ]]\n", + "DEBUG:root:optics_fp: sphi: [0.69733861 0.64194554 0.57429359 0.49242959 0.39505443 0.28230164\n", + " 0.15653753 0.02269007 0.69733861 0.74764835 0.80050614 0.85403148\n", + " 0.90516063 0.94960189 0.98231633 0.99869589 0.02269007 0.02632152\n", + " 0.03130538 0.03856929 0.05013934 0.07144362 0.12352264 0.42394999\n", + " 0.99869589 0.99824427 0.99750809 0.99618636 0.99344379 0.98619551\n", + " 0.95488154 0.42394999 0.67473055 0.59886588 0.50259973 0.38323562\n", + " 0.24111118 0.08166976 0.71871537 0.78228347 0.84793203 0.91052415\n", + " 0.96220509 0.99378803 0.02463779 0.03002235 0.03835014 0.05293717\n", + " 0.08504731 0.21194041 0.99849582 0.99776097 0.99631488 0.99282691\n", + " 0.98044695 0.85535584 0.69733413 0.69733413 0.42761774 0.42761774\n", + " 0.69673058 0.76290649 0.83256888 0.90038456 0.95751545 0.99297621\n", + " 0.62206339 0.69451068 0.77581252 0.86101491 0.93844125 0.9895708\n", + " 0.52551558 0.6002579 0.6910356 0.79630575 0.903863 0.98294374\n", + " 0.40338671 0.47219495 0.5636759 0.68482227 0.83348167 0.9673662DEBUG:root:radec2pix: xyfp Shape: (96, 2)\n", + "3\n", + " 0.25523664 0.305473 0.37836089 0.49058257 0.67053956 0.91635552\n", + " 0.08675898 0.10531014 0.13379739 0.18293452 0.28641505 0.60394515]\n", + "DEBUG:root:optics_fp: sphi: [-0.69950626 -0.64444513 -0.57715037 -0.49564218 -0.39857594 -0.28602322\n", + " -0.16028704 -0.02625833 -0.69950626 -0.74976466 -0.80249804 -0.85580559\n", + " -0.90661236 -0.95063766 -0.98288738 -0.9988295 -0.02625833 -0.03044512\n", + " -0.03619555 -0.04458562 -0.05797023 -0.08267725 -0.1433448 -0.49145128\n", + " -0.9988295 -0.99842512 -0.99776702 -0.99658828 -0.99415152 -0.98775305\n", + " -0.96047273 -0.49145128 -0.67703879 -0.60160056 -0.50577425 -0.38678764\n", + " -0.24486582 -0.08534494 -0.72086938 -0.78432831 -0.84973726 -0.91193438\n", + " -0.96308661 -0.99410379 -0.02842926 -0.03462403 -0.04421613 -0.06104888\n", + " -0.09822663 -0.24609363 -0.99864895 -0.99799091 -0.99669933 -0.99359795\n", + " -0.98268894 -0.87478002 -0.69950278 -0.69950278 -0.49425605 -0.49425605\n", + " -0.69903398 -0.76512562 -0.83456026 -0.9019653 -0.95851534 -0.99333513\n", + " -0.6248328 -0.69731062 -0.77847269 -0.8632584 -0.93993324 -0.99011458\n", + " -0.52878304 -0.60375411 -0.69461576 -0.79961451 -0.90627261 -0.98386124\n", + " -0.40710127 -0.47641382 -0.56840284 -0.68980596 -0.837772 -0.96921207\n", + " -0.25921116 -0.31021694 -0.38416098 -0.49776006 -0.67878801 -0.92148149\n", + " -0.09066564 -0.11006805 -0.13988178 -0.19134252 -0.29970307 -0.6279425 ]\n", + "DEBUG:root:radec2pix: fitpx: [[4271.50000018 4155.50000017]\n", + " [4271.49999973 3863.07142834]\n", + " [4271.50000015 3570.64285725]\n", + " [4271.50000001 3278.21428572]\n", + " [4271.5000001 2985.78571433]\n", + " [4271.49999989 2693.35714282]\n", + " [4271.50000013 2400.92857145]\n", + " [4271.49999973 2108.49999999]\n", + " [4271.50000018 4155.50000017]\n", + " [3979.07142857 4155.5 ]\n", + " [3686.64285706 4155.49999989]\n", + " [3394.21428581 4155.50000016]\n", + " [3101.78571433 4155.50000009]\n", + " [2809.35714288 4155.50000006]\n", + " [2516.92857141 4155.49999991]\n", + " [2224.49999999 4155.49999972]\n", + " [4271.49999973 2108.49999999]\n", + " [3979.07142852 2108.5 ]\n", + " [3686.6428568 2108.49999999]\n", + " [3394.2142859 2108.50000001]\n", + " [3101.78571455 2108.50000001]\n", + " [2809.35714254 2108.49999998]\n", + " [2516.92857145 2108.5 ]\n", + " [2224.49999991 2108.49999996]\n", + " [2224.49999999 4155.49999972]\n", + " [2224.50000001 3863.07142866]\n", + " [2224.50000002 3570.64285748]\n", + " [2224.49999999 3278.21428555]\n", + " [2224.49999997 2985.78571404]\n", + " [2224.49999997 2693.35714267]\n", + " [2224.49999997 2400.92857132]\n", + " [2224.49999991 2108.49999996]\n", + " [4270.50000007 4028.00000007]\n", + " [4270.49999974 3669.5999998 ]\n", + " [4270.50000026 3311.20000015]\n", + " [4270.50000028 2952.80000012]\n", + " [4270.50000021 2594.40000005]\n", + " [4270.50000028 2236.00000002]\n", + " [4144.00000002 4154.50000002]\n", + " [3785.60000004 4154.50000005]\n", + " [3427.20000017 4154.50000027]\n", + " [3068.80000004 4154.50000009]\n", + " [2710.40000006 4154.50000023]\n", + " [2352. 4154.49999998]\n", + " [4144.00000024 2109.50000001]\n", + " [3785.60000024 2109.50000001]\n", + " [3427.20000038 2109.50000002]\n", + " [3068.80000022 2109.50000001]\n", + " [2710.3999999 2109.49999999]\n", + " [2352.00000033 2109.50000007]\n", + " [2225.50000001 4028.00000014]\n", + " [2225.5 3669.59999993]\n", + " [2225.49999997 3311.19999965]\n", + " [2225.50000003 2952.80000023]\n", + " [2225.50000001 2594.40000005]\n", + " [2225.50000007 2236.00000012]\n", + " [4270.50000014 4154.50000013]\n", + " [4270.50000014 4154.50000013]\n", + " [2225.5 2109.5 ]\n", + " [2225.5 2109.5 ]\n", + " [4143.99999977 4027.99999977]\n", + " [3785.60000006 4028.00000007]\n", + " [3427.19999985 4027.99999978]\n", + " [3068.80000002 4028.00000004]\n", + " [2710.40000003 4028.0000001 ]\n", + " [2351.99999998 4027.99999983]\n", + " [4143.99999989 3669.59999991]\n", + " [3785.59999992 3669.59999992]\n", + " [3427.20000008 3669.60000009]\n", + " [3068.80000009 3669.60000016]\n", + " [2710.40000007 3669.6000002 ]\n", + " [2352. 3669.60000003]\n", + " [4144.00000025 3311.20000016]\n", + " [3785.59999995 3311.19999996]\n", + " [3427.19999995 3311.19999995]\n", + " [3068.80000029 3311.20000039]\n", + " [2710.39999993 3311.19999986]\n", + " [2352.00000003 3311.20000016]\n", + " [4144.0000002 2952.80000009]\n", + " [3785.6000002 2952.80000011]\n", + " [3427.19999983 2952.79999988]\n", + " [3068.80000029 2952.80000027]\n", + " [2710.40000007 2952.8000001 ]\n", + " [2352.00000006 2952.88127 24.04361672]\n", + " [30.31629496 18.65270673]\n", + " [24.9402958 18.6556889 ]\n", + " [19.56429662 18.65867106]\n", + " [14.18829744 18.66165322]\n", + " [ 8.81229827 18.66463538]\n", + " [ 3.4362991 18.66761755]\n", + " [30.31331281 13.27670756]\n", + " [24.93731363 13.27968972]\n", + " [19.56131446 13.28267189]\n", + " [14.18531529 13.28565406]\n", + " [ 8.80931611 13.28863621]\n", + " [ 3.43331694 13.29161838]\n", + " [30.31033064 7.90070839]\n", + " [24.93433147 7.90369055]\n", + " [19.55833229 7.90667271]\n", + " [14.18233312 7.90965488]\n", + " [ 8.80633395 7.91263704]\n", + " [ 3.43033477 7.9156192 ]\n", + " [30.30734847 2.52470921]\n", + " [24.9313493 2.52769138]\n", + " [19.55535013 2.53067354]\n", + " [14.17935096 2.53365571]\n", + " [ 8.80335178 2.53663787]\n", + " [ 3.42735261 2.53962004]]\n", + "DEBUG:root:radec2pix: fitpx: [[2135.5 4155.4999999 ]\n", + " [2135.5 3863.07142835]\n", + " [2135.5 3570.64285687]\n", + " [2135.5 3278.21428534]\n", + " [2135.5 2985.78571398]\n", + " [2135.5 2693.35714282]\n", + " [2135.50000001 2400.92857102]\n", + " [2135.50000006 2108.49999973]\n", + " [2135.5 4155.4999999 ]\n", + " [1843.07142859 4155.4999DEBUG:root:cartToSphere: vec: [[-0.00114705 0.20838541 0.97804612]\n", + " [-0.00115629 0.18089194 0.9835023 ]\n", + " [-0.0011641 0.15270652 0.9882709 ]\n", + " [-0.00117048 0.12393558 0.99228958]\n", + " [-0.00117539 0.09468513 0.99550658]\n", + " [-0.00117881 0.06506336 0.99788044]\n", + " [-0.00118068 0.03518275 0.9993802 ]\n", + " [-0.00118097 0.0051606 0.99998599]\n", + " [-0.00114705 0.20838541 0.97804612]\n", + " [-0.03018244 0.20823844 0.97761228]\n", + " [-0.05910007 0.20782077 0.9763799 ]\n", + " [-0.08778716 0.20713345 0.97436602]\n", + " [-0.11613176 0.20617803 0.9715987 ]\n", + " [-0.14402308 0.20495645 0.96811684]\n", + " [-0.17135219 0.20347155 0.96396979]\n", + " [-0.19801388 0.2017284 0.95921643]\n", + " [-0.00118097 0.0051606 0.99998599]\n", + " [-0.03121228 0.00515607 0.99949948]\n", + " [-0.06111791 0.00514464 0.99811729]\n", + " [-0.09077999 0.00512646 0.99585778]\n", + " [-0.12008538 0.00510175 0.99275046]\n", + " [-0.14892541 0.0050707 0.98883543]\n", + " [-0.17719395 0.00503345 0.98416308]\n", + " [-0.20478471 0.00499006 0.97879432]\n", + " [-0.19801388 0.2017284 0.95921643]\n", + " [-0.19975823 0.17512925 0.96406763]\n", + " [-0.20124936 0.14784829 0.96831791]\n", + " [-0.20248221 0.11999042 0.97190702]\n", + " [-0.20345393 0.09166442 0.97478415]\n", + " [-0.20416257 0.06298098 0.97690892]\n", + " [-0.20460656 0.03405194 0.97825182]\n", + " [-0.20478471 0.00499006 0.97879432]\n", + " [-0.00125101 0.19649007 0.98050502]\n", + " [-0.00126235 0.1623152 0.98673815]\n", + " [-0.00127136 0.12720686 0.99187539]\n", + " [-0.00127799 0.09136033 0.99581708]\n", + " [-0.00128216 0.05497503 0.99848691]\n", + " [-0.00128379 0.01826009 0.99983245]\n", + " [-0.01381426 0.20826196 0.97797552]\n", + " [-0.04933618 0.20789982 0.97690512]\n", + " [-0.08456905 0.20713224 0.97465087]\n", + " [-0.11930642 0.20596186 0.97125985]\n", + " [-0.15334441 0.20439232 0.96680364]\n", + " [-0.18648385 0.20242966 0.96137714]\n", + " [-0.01428247 0.00526224 0.99988415]\n", + " [-0.05101935 0.00525184 0.99868386]\n", + " [-0.08744986 0.00523103 0.99615519]\n", + " [-0.12336368 0.00520016 0.9923479 ]\n", + " [-0.15856056 0.00515961 0.98733577]\n", + " [-0.19284509 0.0051096 0.98121591]\n", + " [-0.1987148 0.19022738 0.96141873]\n", + " [-0.20068229 0.157155 0.96696894]\n", + " [-0.20226422 0.12316211 0.9715556 ]\n", + " [-0.20345456 0.08844755 0.97508116]\n", + " [-0.20424964 0.05321501 0.97747135]\n", + " [-0.20464672 0.01767079 0.97867638]\n", + " [-0.00124645 0.20829266 0.97806575]\n", + " [-0.00124645 0.20829266 0.97806575]\n", + " [-0.20469148 0.0050897 0.97881331]\n", + " [-0.20469148 0.0050897 0.97881331]\n", + " [-0.01386808 0.19646111 0.98041354]\n", + " [-0.04952932 0.19611969 0.9793283 ]\n", + " [-0.08490071 0.19539637 0.97704254]\n", + " [-0.11977552 0.19429398 0.97360345]\n", + " [-0.15394951 0.1928159 0.96908285]\n", + " [-0.18722234 0.19096695 0.96357637]\n", + " [-0.01400325 0.16229116 0.98664355]\n", + " [-0.05001432 0.16200846 0.98552109]\n", + " [-0.08573269 0.16141067 0.9831564 ]\n", + " [-0.12095098 0.16050163 0.9795969 ]\n", + " [-0.15546507 0.15928501 0.97491482]\n", + " [-0.18907339 0.15776388 0.9692068 ]\n", + " [-0.01411268 0.1271878 0.99177825]\n", + " [-0.05040698 0.12696445 0.99062564]\n", + " [-0.08640482 0.12649338 0.98819716]\n", + " [-0.12189811 0.12577923 0.98454072]\n", + " [-0.15668376 0.12482642 0.97972882]\n", + " [-0.19056116 0.12363768 0.97385839]\n", + " [-0.01419584 0.0913464 0.99571799]\n", + " [-0.05070556 0.09118412 0.99454231]\n", + " [-0.08691471 0.09084281 0.99206523]\n", + " [-0.12261435 0.0903271 0.98833534]\n", + " [-0.15760261 0.0896414 0.98342556]\n", + " [-0.19168088 0.08878838 0.97743289]\n", + " [-0.01425179 0.05496643 0.99838649]\n", + " [-0.05090701 0.05486748 0.99719508]\n", + " [-0.08725814 0.05466012 0.99468502]\n", + " [-0.12309542 0.05434775 0.99090557]\n", + " [-0.15821798 0.0539337 0.98593013]\n", + " [-0.19242913 0.05341999 0.97985577]\n", + " [-0.01427955 0.01825699 0.99973135]\n", + " [-0.05100809 0.0182233 0.99853197]\n", + " [-0.08743051 0.01815347 0.9960052 ]\n", + " [-0.12333654 0.01804874 0.99220076]\n", + " [-0.15852587 0.01791034 0.98719237]\n", + " [-0.19280295 0.01773905 0.98107714]]\n", + "DEBUG:root:optics_fp: xyfp: [[32.23341696 31.55141621]\n", + " [32.23194958 27.16498788]\n", + " [32.2304822 22.77855956]\n", + " [32.22901483 18.39213124]\n", + " [32.22754745 14.00570291]\n", + " [32.22608007 9.61927458]\n", + " [32.22461269 5.23284626]\n", + " [32.223DEBUG:root:mm_to_pix: fitpx: [[0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]]\n", + "999 ]\n", + " [1550.64285722 4155.49999973]\n", + " [1258.21428568 4155.50000007]\n", + " [ 965.78571413 4155.50000028]\n", + " [ 673.35714288 4155.49999997]\n", + " [ 380.92857125 4155.50000021]\n", + " [ 88.4999998 4155.5000002 ]\n", + " [2135.50000006 2108.49999973]\n", + " [1843.07142866 2108.49999999]\n", + " [1550.64285735 2108.49999998]\n", + " [1258.21428559 2108.50000001]\n", + " [ 965.78571467 2108.49999998]\n", + " [ 673.35714297 2108.5 ]\n", + " [ 380.92857138 2108.5 ]\n", + " [ 88.49999984 2108.5 ]\n", + " [ 88.4999998 4155.5000002 ]\n", + " [ 88.49999999 3863.07142858]\n", + " [ 88.50000023 3570.64285698]\n", + " [ 88.4999999 3278.21428577]\n", + " [ 88.50000002 2985.78571428]\n", + " [ 88.50000017 2693.35714281]\n", + " [ 88.49999997 2400.92857143]\n", + " [ 88.49999984 2108.5 ]\n", + " [2134.5 4027.99999995]\n", + " [2134.5 3669.59999994]\n", + " [2134.5 3311.20000034]\n", + " [2134.5 2952.80000006]\n", + " [2134.5 2594.39999997]\n", + " [2134.49999998 2236.00000031]\n", + " [2008.00000001 4154.49999991]\n", + " [1649.60000005 4154.49999977]\n", + " [1291.19999995 4154.50000012]\n", + " [ 932.80000008 4154.49999986]\n", + " [ 574.40000013 4154.49999983]\n", + " [ 215.99999993 4154.50000007]\n", + " [2007.99999975 2109.50000009]\n", + " [1649.5999999 1453 0.84641793]\n", + " [32.23341696 31.55141621]\n", + " [27.84698864 31.5528836 ]\n", + " [23.46056031 31.55435097]\n", + " [19.07413198 31.55581835]\n", + " [14.68770366 31.55728573]\n", + " [10.30127533 31.55875311]\n", + " [ 5.91484701 31.56022049]\n", + " [ 1.52841868 31.56168787]\n", + " [32.2231453 0.84641793]\n", + " [27.83671698 0.84788531]\n", + " [23.45028865 0.84935269]\n", + " [19.06386033 0.85082007]\n", + " [14.677432 0.85228745]\n", + " [10.29100367 0.85375483]\n", + " [ 5.90457535 0.85522221]\n", + " [ 1.51814702 0.85668959]\n", + " [ 1.52841868 31.56168787]\n", + " [ 1.5269513 27.17525955]\n", + " [ 1.52548392 22.78883122]\n", + " [ 1.52401654 18.4024029 ]\n", + " [ 1.52254916 14.01597457]\n", + " [ 1.52108178 9.62954624]\n", + " [ 1.5196144 5.24311792]\n", + " [ 1.51814702 0.85668959]\n", + " [32.21777718 29.63892134]\n", + " [32.21597876 24.26292164]\n", + " [32.21418034 18.88692194]\n", + " [32.21238193 13.51092224]\n", + " [32.21058351 8.13492254]\n", + " [32.20878509 2.75892284]\n", + " [30.32091205 31.53705599]\n", + " [24.94491236 31.53885442]\n", + " [19.56891265 31.54065283]\n", + " [14.19291295 31.54245125]\n", + " [ 8.81691325 31.54424967]\n", + " [ 3.44091356 31.54604808]\n", + " [30.3106DEBUG:root:radec2pix: curVec: [[ 0.13070399 0.53920824 -0.83196811]\n", + " [ 0.11375014 0.52159535 -0.84557625]\n", + " [ 0.09636449 0.50320948 -0.85877477]\n", + " [ 0.07861167 0.48410119 -0.8714736 ]\n", + " [ 0.06055708 0.46432604 -0.88359163]\n", + " [ 0.0422681 0.44394593 -0.8950561 ]\n", + " [ 0.02381459 0.42302987 -0.90580273]\n", + " [ 0.00526875 0.40165405 -0.91577632]\n", + " [ 0.13070399 0.53920824 -0.83196811]\n", + " [ 0.15340892 0.5224743 -0.83874091]\n", + " [ 0.1758532 0.50529438 -0.84483918]\n", + " [ 0.1979493 0.48773989 -0.85025048]\n", + " [ 0.21961065 0.46988632 -0.85497252]\n", + " [ 0.24075138 0.45181301 -0.85901326]\n", + " [ 0.2612858 0.433603 -0.86239096]\n", + " [ 0.28112806 0.4153432 -0.86513412]\n", + " [ 0.00526875 0.40165405 -0.91577632]\n", + " [ 0.02885451 0.38442921 -0.92270342]\n", + " [ 0.05233675 0.36691286 -0.9287819 ]\n", + " [ 0.07562327 0.34917895 -0.93399956]\n", + " [ 0.09862471 0.33130392 -0.93835541]\n", + " [ 0.12125497 0.31336616 -0.94185927]\n", + " [ 0.14343059 0.29544619 -0.94453121]\n", + " [ 0.16506941 0.27762755 -0.94640109]\n", + " [ 0.28112806 0.4153432 -0.86513DEBUG:root:radec2pix: lng: [ 90.31538026 90.36623882 90.43676438 90.5410988 90.71121584\n", + " 91.03796151 91.92203204 102.88976492 90.31538026 98.24711833\n", + " 105.87469321 112.96816895 119.3908045 125.09574844 130.10218059\n", + " 134.46760759 102.88976492 170.61981741 175.18843619 176.76786642\n", + " 177.56728748 178.0499121 178.37286738 178.60412954 134.46760759\n", + " 138.7587586 143.69705248 149.3491301 155.74646239 162.85581906\n", + " 170.55107093 178.60412954 90.36478543 90.44558973 90.57261901\n", + " 90.80142559 91.33604138 94.02159324 93.79493665 103.34977578\n", + " 112.20947139 120.08219547 126.87889854 132.65213472 159.7741798\n", + " 174.12277646 176.57679256 177.5862344 178.13623505 178.48225333\n", + " 136.25009833 141.93538112 148.66205842 156.50402904 165.39685811\n", + " 175.06487905 90.34286209 90.34286209 178.57562014 178.57562014\n", + " 94.0377805 104.17347615 113.48518905 121.65239591 128.60482826\n", + " 134.43270854 94.93153704 107.15620301 117.97484261 127.00098521\n", + " 134.30466928 140.15819331 96.33160595 111.653892DEBUG:root:mm_to_pix: fitpx.shape: (96, 2)\n", + "5043 0.86205771]\n", + " [24.93465073 0.86385613]\n", + " [19.55865103 0.86565455]\n", + " [14.18265134 0.86745297]\n", + " [ 8.80665163 0.86925139]\n", + " [ 3.43065193 0.8710498 ]\n", + " [ 1.5427789 29.64918296]\n", + " [ 1.54098048 24.27318326]\n", + " [ 1.53918206 18.89718357]\n", + " [ 1.53738364 13.52118387]\n", + " [ 1.53558522 8.14518416]\n", + " [ 1.5337868 2.76918446]\n", + " [32.21841195 31.53642123]\n", + " [32.21841195 31.53642123]\n", + " [ 1.53315204 0.87168457]\n", + " [ 1.53315204 0.87168457]\n", + " [30.32027729 29.6395561 ]\n", + " [24.94427759 29.64135452]\n", + " [19.56827789 29.64315294]\n", + " [14.19227819 29.64495136]\n", + " [ 8.81627849 29.64674978]\n", + " [ 3.44027879 29.6485482 ]\n", + " [30.31847887 24.2635564 ]\n", + " [24.94247917 24.26535482]\n", + " [19.56647947 24.26715324]\n", + " [14.19047977 24.26895166]\n", + " [ 8.81448007 24.27075007]\n", + " [ 3.43848037 24.2725485 ]\n", + " [30.31668045 18.8875567 ]\n", + " [24.94068075 18.88935513]\n", + " [19.56468105 18.89115354]\n", + " [14.18868135 18.89295196]\n", + " [ 8.81268165 18.89475038]\n", + " [ 3.43668195 18.89654879]\n", + " [30.31488203 13.51155701]\n", + " [24.93888233 13.5133412]\n", + " [ 0.26610672 0.3971403 -0.87833183]\n", + " [ 0.25045393 0.37834814 -0.8911372 ]\n", + " [ 0.23423701 0.35902127 -0.90345821]\n", + " [ 0.21752292 0.33921899 -0.91521268]\n", + " [ 0.20037855 0.31900555 -0.92632818]\n", + " [ 0.18287127 0.29845033 -0.93674196]\n", + " [ 0.16506941 0.27762755 -0.94640109]\n", + " [ 0.12344758 0.53157046 -0.83796989]\n", + " [ 0.10237117 0.50945753 -0.85438467]\n", + " [ 0.08071021 0.48623342 -0.87009363]\n", + " [ 0.05858475 0.46199827 -0.88494374]\n", + " [ 0.03611886 0.43686613 -0.8988011 ]\n", + " [ 0.01344216 0.41096705 -0.91155109]\n", + " [ 0.14057298 0.53191232 -0.83505001]\n", + " [ 0.16823689 0.51109395 -0.84289935]\n", + " [ 0.1954223 0.48967626 -0.84972189]\n", + " [ 0.22196943 0.46779659 -0.85550916]\n", + " [ 0.24772014 0.44560094 -0.86027585]\n", + " [ 0.27251661 0.42324381 -0.86405982]\n", + " [ 0.01562244 0.39425819 -0.91886692]\n", + " [ 0.04447111 0.37294214 -0.92678826]\n", + " [ 0.07307226 0.35126124 -0.93342165]\n", + " [ 0.1012602 0.32935525 -0.93876061]\n", + " [ 0.12887632 0.3073685 -0.94282315]\n", + " [ 0.15576761 0.28545042 -0.94565031]\n", + " [ 0.27459354 0.4070000022]\n", + " [4143.99999974 2594.39999993]\n", + " [3785.60000003 2594.40000001]\n", + " [3427.19999994 2594.39999997]\n", + " [3068.7999999 2594.39999994]\n", + " [2710.40000001 2594.40000001]\n", + " [2351.9999999 2594.39999976]\n", + " [4144.00000015 2236.00000001]\n", + " [3785.59999982 2235.99999998]\n", + " [3427.19999971 2235.99999996]\n", + " [3068.80000012 2236.00000002]\n", + " [2710.39999989 2235.99999997]\n", + " [2351.99999988 2235.99999991]]\n", + " 2109.50000001]\n", + " [1291.19999978 2109.50000001]\n", + " [ 932.80000001 2109.5 ]\n", + " [ 574.40000043 2109.49999999]\n", + " [ 216.00000004 2109.5 ]\n", + " [ 89.50000001 4027.99999999]\n", + " [ 89.4999998 3669.60000015]\n", + " [ 89.50000012 3311.19999993]\n", + " [ 89.50000006 2952.79999997]\n", + " [ 89.49999988 2594.40000003]\n", + " [ 89.50000008 2235.99999999]\n", + " [2134.5 4154.49999983]\n", + " [2134.5 4154.49999983]\n", + " [ 89.49999987 2109.5 ]\n", + " [ 89.49999987 2109.5 ]\n", + " [2008. 4027.99999995]\n", + " [1649.60000002 4027.99999993]\n", + " [1291.20000002 4027.99999996]\n", + " [ 932.80000002 4027.99999996]\n", + " [ 574.4000002 4027.99999975]\n", + " [ 215.999999DEBUG:root:radec2pix: curVec: [[ 1.97594577e-01 -3.24808698e-01 9.24908478e-01]\n", + " [ 1.71659239e-01 -3.35202607e-01 9.26375905e-01]\n", + " [ 1.45066315e-01 -3.45534920e-01 9.27125333e-01]\n", + " [ 1.17914647e-01 -3.55749460e-01 9.27112969e-01]\n", + " [ 9.03043174e-02 -3.65793717e-01 9.26304532e-01]\n", + " [ 6.23383799e-02 -3.75618303e-01 9.24675520e-01]\n", + " [ 3.41237038e-02 -3.85176829e-01 9.22211680e-01]\n", + " [ 5.77073149e-03 -3.94426200e-01 9.18909501e-01]\n", + " [ 1.97594577e-01 -3.24808698e-01 9.24908478e-01]\n", + " [ 1.87979669e-01 -2.99526694e-01 9.35386232e-01]\n", + " [ 1.78146272e-01 -2.74111614e-01 9.45053823e-01]\n", + " [ 1.68132271e-01 -2.48667274e-01 9.53884755e-01]\n", + " [ 1.57975634e-01 -2.23300915e-01 9.61862984e-01]\n", + " [ 1.47714002e-01 -1.98123356e-01 9.68982822e-01]\n", + " [ 1.37384443e-01 -1.73249396e-01 9.75248769e-01]\n", + " [ 1.27023481e-01 -1.48798160e-01 9.80675350e-01]\n", + " [ 5.77073149e-03 -3.94426200e-01 9.18909501e-01]\n", + " [-4.03920082e-03 -3.68205463e-01 9.29735673e-01]\n", + " [-1.38168454e-02 -3.41739742e-01 9.39693058e-01]\n", + " DEBUG:root:fitpix2pix: ccdpx: shape: (96, 2)\n", + "[-2.35237044e-02 -3.15138073e-01 9.48754252e-01]\n", + " [-3.31224041e-02 -2.88510826e-01 9.56903553e-01]\n", + " [-4.25768874e-02 -2.61969076e-01 9.64136615e-01]\n", + " [-5.18522333e-02 -2.35625042e-01 9.70459780e-01]\n", + " [-6.09141442e-02 -2.09593513e-01 9.75889351e-01]\n", + " [ 1.27023481e-01 -1.48798160e-01 9.80675350e-01]\n", + " [ 1.01363875e-01 -1.57160059e-01 9.82357410e-01]\n", + " [ 7.51340665e-02 -1.65717399e-01 9.83306979e-01]\n", + " [ 4.84379751e-02 -1.74412913e-01 9.83480502e-01]\n", + " [ 2.13798024e-02 -1.83194119e-01 9.82844250e-01]\n", + " [-5.93559831e-03 -1.92013143e-01 9.81374404e-01]\n", + " [-3.34024558e-02 -2.00826270e-01 9.79057243e-01]\n", + " [-6.09141442e-02 -2.09593513e-01 9.75889351e-01]\n", + " [ 1.86341274e-01 -3.29257824e-01 9.25670684e-01]\n", + " [ 1.54099880e-01 -3.41961633e-01 9.26992701e-01]\n", + " [ 1.20968999e-01 -3.54516827e-01 9.27191631e-01]\n", + " [ 8.71322684e-02 -3.66825252e-01 9.26200411e-01]\n", + " [ 5.27795070e-02 -3.78795981e-01 9.23973987e-01]\n", + " [ 1.81089958e-02 -3.90344958e-01 9.20490564e-01]\n", + " [ 1.93344138e-01 -3.13843737e-01 9.29580633e-01]\n", + " [ 1.81408190e-01 -2.82754684e-01 9.41881552e-01]\n", + " [ 1.69181844e-01 -2.51568440e-01 9.52937996e-01]\n", + " [ 1.56734988e-01 -2.20481019e-01 9.62716087e-01]\n", + " [ 1.44136891e-01 -1.89696481e-01 9.71205335e-01]\n", + " [ 1.31455555e-01 -1.59427959e-01 9.78418194e-01]\n", + " [ 1.58914851e-03 -3.82999833e-01 9.23747045e-01]\n", + " [-1.04172387e-02 -3.50685432e-01 9.36435373e-01]\n", + " [-2.23369636e-02 -3.18111258e-01 9.47790213e-01]\n", + " [-3.41007284e-02 -2.85480004e-01 9.57777797e-01]\n", + " [-4.56421265e-02 -2.52996207e-01 9.66390043e-01]\n", + " [-5.68971559e-02 -2.20867427e-01 9.73642795e-01]\n", + " [ 1.15947760e-01 -1.52499400e-01 9.81478502e-01]\n", + " [ 8.41020523e-02 -1.62888107e-01 9.83053564e-01]\n", + " [ 5.15030393e-02 -1.73512758e-01 9.83483991e-01]\n", + " [ 1.83424230e-02 -1.84274740e-01 9.82703605e-01]\n", + " [-1.51867339e-02 -1.95085868e-01 9.80668582e-01]\n", + " [-4.88893355e-02 -2.05867227e-01 9.77357927e-01]\n", + " [ 1.97474655e-01 -3.24758162e-01 9.24951835e-01]\n", + " [ 1.97474655e-01 66 124.33611449\n", + " 134.10224284 141.45645803 147.02415603 98.83348775 119.07751066\n", + " 133.73407847 143.6218029 150.36959526 155.14598444 104.53566541\n", + " 132.85570308 147.93620706 156.17810512 161.17666862 164.48488524\n", + " 128.03043433 160.3400738 168.27016728 171.67458296 173.55402386\n", + " 174.74323713]\n", + "-3.24758162e-01 9.24951835e-01]\n", + " [-6.07895203e-02 -2.09652004e-01 9.75884558e-01]\n", + " [-6.07895203e-02 -2.09652004e-01 9.75884558e-01]\n", + " [ 1.82196192e-01 -3.18299387e-01 9.30317176e-01]\n", + " [ 1.70233843e-01 -2.87076727e-01 9.42659743e-01]\n", + " [ 1.58003401e-01 -2.55744069e-01 9.53745195e-01]\n", + " [ 1.45575206e-01 -2.24497565e-01 9.63539674e-01]\n", + " [ 1.33018882e-01 -1.93540986e-01 9.72032851e-01]\n", + " [ 1.20402570e-01 -1.63086977e-01 9.79237387e-01]\n", + " [ 1.49918665e-01 -3.30892203e-01 9.31683822e-01]\n", + " [ 1.37896342e-01 -2.99331319e-01 9.44132067e-01]\n", + " [ 1.25669508e-01 -2.67626685e-01 9.55292171e-01]\n", + " [ 1.13309627e-01 -2.35975194e-01 9.65130373e-01]\n", + " [ 1.00887171e-01 -2.04579924e-01 9.73636911e-01]\n", + " [ 8.84706390e-02 -1.73651799e-01 9.80825162e-01]\n", + " [ 1.16759393e-01 -3.43356892e-01 9.31919143e-01]\n", + " [ 1.04699910e-01 -3.11517786e-01 9.44454656e-01]\n", + " [ 9.25005845e-02 -2.79504408e-01 9.55678255e-01]\n", + " [ 8.02335297e-02 -2.47514896e-01 9.65556294e-01]\n", + " [ 6.79695055e-02 -2.15752048e-01 9.74079668e-01]\n", + " [ 5.57769648e-02 -1.84425101e-01 9.81262611e-01]\n", + " [ 8.29022687e-02 -3.55595839e-01 9.30955860e-01]\n", + " [ 7.08295423e-02 -3.23539780e-01 9.43559848e-01]\n", + " [ 5.86831405e-02 -2.91281521e-01 9.54835779e-01]\n", + " [ 4.65351355e-02 -2.59020748e-01 9.64750088e-01]\n", + " [ 3.44557936e-02 -2.26960464e-01 9.73294275e-01]\n", + " [ 2.25128665e-02 -1.95308671e-01 9.80483398e-01]\n", + " [ 4.85373712e-02 -3.67518794e-01 9.28748652e-01]\n", + " [ 3.64760687e-02 -3.35308886e-01 9.41401852e-01]\n", + " [ 2.44086953e-02 -3.02870989e-01 9.52718940e-01]\n", + " [ 1.24065463e-02 -2.70406320e-01 9.62666349e-01]\n", + " [ 5.38612155e-04 -2.38118447e-01 9.71235973e-01]\n", + " [-1.11287003e-02 -2.06214770e-01 9.78443468e-01]\n", + " [ 1.38631725e-02 -3.79042335e-01 9.25275484e-01]\n", + " [ 1.83812814e-03 -3.46743532e-01 9.37958178e-01]\n", + " [-1.01244872e-02 -3.14192898e-01 9.49305176e-01]\n", + " [-2.19547769e-02 -2.81592839e-01 9.59282784e-01]\n", + " [-3.35856048e-02 -2.49147642e-01 9.67882978e-01]\n", + " [-4.49523197e-02 -2.17064729e-01 9.75121630e-01]]\n", + "85 4028.00000015]\n", + " [2008.00000001 3669.59999986]\n", + " [1649.60000005 3669.59999982]\n", + " [1291.19999995 3669.60000009]\n", + " [ 932.79999997 3669.60000004]\n", + " [ 574.40000017 3669.59999983]\n", + " [ 215.99999977 3669.60000019]\n", + " [2007.99999999 3311.20000007]\n", + " [1649.5999999 3311.20000024]\n", + " [1291.20000003 3311.19999996]\n", + " [ 932.80000003 3311.19999997]\n", + " [ 574.40000015 3311.19999988]\n", + " [ 216.00000001 3311.19999999]\n", + " [2008.00000002 2952.79999987]\n", + " [1649.59999985 2952.80000027]\n", + " [1291.1999999 2952.80000011]\n", + " [ 932.80000032 2952.79999977]\n", + " [ 574.39999984 2952.80000009]\n", + " [ 216.00000025 2952.79999989]\n", + " [2007.99999995 2594.40000018]\n", + " [1649.59999988 2594.40000012]\n", + " [1291.19999985 2594.4000001 ]\n", + " [ 932.79999977 2594.4000001 ]\n", + " [ 574.39999985 2594.40000005]\n", + " [ 216.00000009 2594.39999997]\n", + " [2007.99999988 2236.00000015]\n", + " [1649.60000009 2235.99999997]\n", + " [1291.19999998 2236. ]\n", + " [ 932.79999991 2236.00000001]\n", + " [ 574.39999979 2236.00000002]\n", + " [ 215.99999986 2236.00000001]]\n", + "DEBUG:root:optics_fp: xyfp: [[-32.31281793 -31.43806373]\n", + " [-32.31091541 -27.05163558]\n", + " [-32.30901287 -22.66520742]\n", + " [-32.30711034 -18.27877926]\n", + " [-32.3052078 -13.8923511 ]\n", + " [-32.30330527 -9.50592294]\n", + " [-32.30140274 -5.11949478]\n", + " [-32.2995002 -0.73306663]\n", + " [-32.31281793 -31.43806373]\n", + " [-27.92638978 -31.43996627]\n", + " [-23.53996162 -31.4418688 ]\n", + " [-19.15353346 -31.44377134]\n", + " [-14.7671053 -31.44567387]\n", + " [-10.38067715 -31.44757641]\n", + " [ -5.99424899 -31.44947894]\n", + " [ -1.60782083 -31.45138147]\n", + " [-32.2995002 -0.73306663]\n", + " [-27.91307204 -0.73496916]\n", + " [-23.52664389 -0.73687169]\n", + " [-19.14021573 -0.73877423]\n", + " [-14.75378757 -0.74067676]\n", + " [-10.36735941 -0.74257929]\n", + " [ -5.98093125 -0.74448183]\n", + " [ -1.59450309 -0.74638436]\n", + " [ -1.60782083 -31.45138147]\n", + " [ -1.60591829 -27.06495331]\n", + " [DEBUG:root:fitpix2pix: visCut: True\n", + "DEBUG:root:optics_fp: xyfp shape: (96, 2)\n", + " -1.60401576 -22.67852516]\n", + " [ -1.60211323 -18.292097 ]\n", + " [ -1.60021069 -13.90566884]\n", + " [ -1.59830816 -9.51924068]\n", + " [ -1.59640563 -5.13281252]\n", + " [ -1.59450309 -0.74638436]\n", + " [-32.29698843 -29.52557043]\n", + " [-32.29465669 -24.14957093]\n", + " [-32.29232495 -18.77357144]\n", + " [-32.2899932 -13.39757194]\n", + " [-32.28766146 -8.02157244]\n", + " [-32.28532972 -2.64557295]\n", + " [-30.40031161 -31.42389325]\n", + " [-25.02431212 -31.42622499]\n", + " [-19.64831262 -31.42855673]\n", + " [-14.27231313 -31.43088848]\n", + " [ -8.89631363 -31.43322022]\n", + " [ -3.52031414 -31.43555196]\n", + " [-30.38700689 -0.74889614]\n", + " [-25.01100739 -0.75122788]\n", + " [-19.6350079 -0.75355962]\n", + " [-14.25900841 -0.75589136]\n", + " [ -8.88300892 -0.7582231 ]\n", + " [ -3.50700942 -0.76055484]\n", + " [ -1.62199131 -29.53887515]\n", + " [ -1.61965957 -24.16287565]\n", + " [ -1.61732783 -18.78687616]\n", + " [ -1.61499609 -13.41087666]\n", + " [ -1.61266434 -8.03487716]\n", + " [ -1.6103326 -2.65887768]\n", + " [-32.29781143 -31.42307024]\n", + " [-32.29781143 -31.423070DEBUG:root:fitpix2pix: ccdpx: shape: (96, 2)\n", + "5449 -0.87092224]\n", + " [ 0.25574877 0.38483253 -0.88684637]\n", + " [ 0.23602259 0.36128861 -0.90208862]\n", + " [ 0.21553842 0.3370203 -0.91649359]\n", + " [ 0.19441947 0.31214593 -0.92992795]\n", + " [ 0.17279017 0.28679524 -0.94228024]\n", + " [ 0.13072481 0.539093 -0.83203952]\n", + " [ 0.13072481 0.539093 -0.83203952]\n", + " [ 0.16505772 0.27775979 -0.94636433]\n", + " [ 0.16505772 0.27775979 -0.94636433]\n", + " [ 0.13333578 0.5243624 -0.84099087]\n", + " [ 0.16112252 0.50347339 -0.84885457]\n", + " [ 0.18844441 0.48199575 -0.85566863]\n", + " [ 0.21514172 0.46006724 -0.8614245 ]\n", + " [ 0.24105673 0.43783412 -0.86613679]\n", + " [ 0.26603217 0.41545082 -0.86984337]\n", + " [ 0.11236052 0.50218094 -0.85743187]\n", + " [ 0.14046053 0.48111912 -0.86532955]\n", + " [ 0.16813412 0.45950151 -0.8721177 ]\n", + " [ 0.19522132 0.43746723 -0.87778759]\n", + " [ 0.22156549 0.41516308 -0.88235387]\n", + " [ 0.24701126 0.39274325 -0.88585449]\n", + " [ 0.0907824 0.47890188 -0.87316181]\n", + " [ 0.11914422 0.45770853 -0.88108317]\n", + " [ 0.14711833 0.43599639 -0.88784196]\n", + "DEBUG:root:radec2pix: xyfp: [[ -0.172993 31.426621 ]\n", + " [ -0.172993 27.04019243]\n", + " [ -0.172993 22.65376385]\n", + " [ -0.172993 18.26733528]\n", + " [ -0.172993 13.88090671]\n", + " [ -0.172993 9.49447814]\n", + " [ -0.172993 5.10804957]\n", + " [ -0.172993 0.721621 ]\n", + " [ -0.172993 31.426621 ]\n", + " [ -4.55942157 31.426621 ]\n", + " [ -8.94585014 31.426621 ]\n", + " [-13.33227871 31.426621 ]\n", + " [-17.71870729 31.426621 ]\n", + " [-22.10513586 31.426621 ]\n", + " [-26.49156443 31.426621 ]\n", + " [-30.877993 31.426621 ]\n", + " [ -0.172993 0.721621 ]\n", + " [ -4.55942157 0.721621 ]\n", + " [ -8.94585014 0.721621 ]\n", + " [-13.33227872 0.721621 ]\n", + " [-17.71870728 0.721621 ]\n", + " [-22.10513586 0.721621 ]\n", + " [-26.49156443 0.721621 ]\n", + " [-30.877993 0.721621 ]\n", + " [-30.877993 31.426621 ]\n", + " [-30.877993 27.04019243]\n", + " [-30.877993 22.65376385]\n", + " [-30.877993 18.26733529]\n", + " [-30.877993 13.88090671]\n", + " [-30.877993 9.49447814]\n", + " [-30.877993 5.10804957]\n", + " [-30.877993 0.721621 ]\n", + " [ -0.187993 29.514121 ]\n", + " [ -0.187993 DEBUG:root:radec2pix: lat: [77.97206498 79.57806769 81.21593647 82.8803899 84.56638266 86.26889583\n", + " 87.98262539 89.69667435 77.97206498 77.85336036 77.52222772 76.99897078\n", + " 76.31199967 75.49295235 74.57292056 73.58021644 89.69667435 88.18712874\n", + " 86.48361023 84.78319776 83.0967184 81.43034165 79.78948121 78.17954495\n", + " 73.58021644 74.59400834 75.53901524 76.38685312 77.10589211 77.66330027\n", + " 78.02875412 78.17954495 78.66798463 80.65841057 82.69141578 84.75761477\n", + " 86.84771627 88.95113309 77.95267103 77.66228009 77.07171569 76.23019363\n", + " 75.19557036 74.02401451 89.12786485 87.06007007 84.97409331 82.90740441\n", + " 80.87177406 78.87718093 74.03267423 75.23268127 76.30156716 77.18237665\n", + " 77.81504555 78.14660304 77.97746528 77.97746528 78.18485708 78.18485708\n", + " 78.64134167 78.32984157 77.69918411 76.80616019 75.71557851 74.48840848\n", + " 80.62507537 80.23817759 79.46907283 78.40617113 77.13948546 75.74438817\n", + " 82.64779184 82.14857946 81.18831589 79.91227353 78.44384133 76.87031089\n", + " 84.69583972 84.011199485542]\n", + " [19.56288263 13.51515384]\n", + " [14.18688293 13.51695226]\n", + " [ 8.81088324 13.51875068]\n", + " [ 3.43488354 13.5205491 ]\n", + " [30.31308361 8.13555731]\n", + " [24.93708392 8.13735572]\n", + " [19.56108422 8.13915414]\n", + " [14.18508451 8.14095256]\n", + " [ 8.80908482 8.14275098]\n", + " [ 3.43308512 8.1445494 ]\n", + " [30.31128519 2.75955761]\n", + " [24.93528549 2.76135602]\n", + " [19.5592858 2.76315444]\n", + " [14.18328609 2.76495286]\n", + " [ 8.8072864 2.76675128]\n", + " [ 3.4312867 2.7685497 ]]\n", + " 82.77741875 81.24014725 79.55379065 77.80461009\n", + " 86.74476583 85.70761057 84.09008812 82.26687253 80.3773841 78.48020641\n", + " 88.67187538 86.89501933 84.87693536 82.83944721 80.82012657 78.83603949]\n", + " [ 0.17454393 0.41390568 -0.89342963]\n", + " [ 0.20126498 0.39158351 -0.89786122]\n", + " [ 0.22712786 0.3691835 -0.90117506]\n", + " [ 0.06872099 0.45462576 -0.8880275 ]\n", + " [ 0.09729228 0.4333436 -0.8959618 ]\n", + " [ 0.12551567 0.41158392 -0.90268737]\n", + " [ 0.15322906 0.38948761 -0.90819616]\n", + " [ 0.18027626 0.36720158 -0.91250396]\n", + " [ 0.20650483 0.34487852 -0.9156498 ]\n", + " [ 0.04629976 0.42946708 -0.90189487]\n", + " [ 0.07502666 0.40814014 -0.9098311 ]\n", + " [ 0.10344713 0.38638112 -0.91651968]\n", + " [ 0.13139748 0.3643309 -0.9219532 ]\n", + " [ 0.15872078 0.34213563 -0.92614844]\n", + " [ 0.18526488 0.31994671 -0.92914532]\n", + " [ 0.02364775 0.40355628 -0.91464917]\n", + " [ 0.05247467 0.38222944 -0.92257632]\n", + " [ 0.08103843 0.36051966 -0.9292246 ]\n", + " [ 0.10917378 0.33856708 -0.9345873 ]\n", + " [ 0.13672262 0.3165166 -0.93868215]\n", + " [ 0.16353227 0.29451813 -0.94154993]]\n", + "DEBUG:root:fitpix2pix: visCut: True\n", + "DEBUG:root:radec2pix: curVec Shape: (96, 3)\n", + "DEBUG:root:optics_fp: xyfp shape: (96, 2)\n", + "DEBUG:root:radec2pix: curVec Shape: (96, 3)\n", + "24]\n", + " [ -1.60950959 -0.76137785]\n", + " [ -1.60950959 -0.76137785]\n", + " [-30.3994886 -29.52639343]\n", + " [-25.02348911 -29.52872517]\n", + " [-19.64748962 -29.53105692]\n", + " [-14.27149012 -29.53338866]\n", + " [ -8.89549063 -29.5357204 ]\n", + " [ -3.51949113 -29.53805214]\n", + " [-30.39715686 -24.15039394]\n", + " [-25.02115737 -24.15272568]\n", + " [-19.64515788 -24.15505742]\n", + " [-14.26915838 -24.15738916]\n", + " [ -8.89315889 -24.1597209 ]\n", + " [ -3.51715939 -24.16205264]\n", + " [-30.39482512 -18.77439444]\n", + " [-25.01882563 -18.77672618]\n", + " [-19.64282613 -18.77905793]\n", + " [-14.26682664 -18.78138967]\n", + " [ -8.89082714 -18.78372141]\n", + " [ -3.51482765 -18.78605315]\n", + " [-30.39249338 -13.39839495]\n", + " [-25.01649389 -13.40072669]\n", + " [-19.64049439 -13.40305843]\n", + " [-14.2644949 -13.40539017]\n", + " [ -8.8884954 -13.40772191]\n", + " [ -3.51249591 -13.41005365]\n", + " [-30.39016163 -8.02239545]\n", + " [-25.01416214 -8.02472719]\n", + " [-19.63816265 -8.02705893]\n", + " [-14.26216315 -8.02939068]\n", + " [ -8.88616366 -8.03172242]\n", + " [ -3.51016417 -8.03405416]\n", + " [-30.3878299 -2.64639596]\n", + " [-25.01183041 -2.6487277 ]\n", + " [-19.63583091 -2.65105944]\n", + " [-14.25983141 -2.65339118]\n", + " [ -8.88383191 -2.65572292]\n", + " [ -3.50783243 -2.65805467]]\n", + "DEBUG:root:radec2pix: curVec: [[-0.34435354 0.53134222 0.77401298]\n", + " [-0.33875343 0.50968454 0.79086521]\n", + " [-0.33276719 0.4871844 0.80741399]\n", + " [-0.32640388 0.46390896 0.82355873]\n", + " [-0.31967594 0.43993047 0.83920705]\n", + " [-0.31259973 0.41532786 0.85427406]\n", + " [-0.30519585 0.39018755 0.86868243]\n", + " [-0.29748924 0.36460324 0.88236309]\n", + " [-0.34435354 0.53134222 0.77401298]\n", + " [-0.37084541 0.52055765 0.76908609]\n", + " [-0.39692093 0.50929604 0.76359107]\n", + " [-0.42248211 0.49760543 0.75756036]\n", + " [-0.44743519 0.48553779 0.75103582]\n", + " [-0.47169038 0.47314859 0.74406894]\n", + " [-0.4951612 0.46049659 0.73672131]\n", + " [-0.51776365 0.44764386 0.729065 ]\n", + " [-0.29748924 0.36460324 0.88236309]\n", + " [-0.32492369 0.35356447 0.87716404]\n", + " [-0.35197574 0.34224267 0.87119633]\n", + " [-0.37854265 0.33068717 0.86449492]\n", + " [-0.4045284 0.31895013 0.85710419]\n", + " [-0.42984403 0.30708602 0.84907732]\n", + " [-0.45440695 0.29515167 0.84047595]\n", + " [-0.47813931 0.28320679 0.83137038]\n", + " [-0.51776365 0.44764386 0.729065 ]\n", + " [-0.5138264 0.42591231 0.74470204]\n", + " [-0.5092924 0.40346617 0.76015545]\n", + " [-0.5041726 0.38037812 0.77532088]\n", + " [-0.49848007 0.35672473 0.79010448]\n", + " [-0.49223044 0.33258705 0.80442218]\n", + " [-0.48544261 0.30805089 0.81819932]\n", + " [-0.47813931 0.28320679 0.83137038]\n", + " [-0.34205135 0.52197097 0.78137518]\n", + " [-0.3349281 0.49485212 0.80183823]\n", + " [-0.32723335 0.4665342 0.82174459]\n", + " [-0.31898858 0.43714801 0.84092087]\n", + " [-0.31022392 0.40683896 0.85921079]\n", + " [-0.30097913 0.3757692 0.87647537]\n", + " [-0.35593073 0.52662897 0.77199433]\n", + " [-0.38813274 0.51308445 0.76556993]\n", + " [-0.41961154 0.49887078 0.75832321]\n", + " [-0.45019275 0.48408204 0.75032731]\n", + " [-0.479711 0.46882032 0.74167706]\n", + " [-0.50800814 0.45319515 0.73249019]\n", + " [-0.30951778 0.35991625 0.88014717]\n", + " [-0.34289744 0.3461906 0.87325449]\n", + " [-0.3755999 0.33208835 0.86524103]\n", + " [-0.40744553 0.31770436 0.8561846 ]\n", + " [-0.4382705 0.30313893 0.84618306]\n", + " [-0.46792482 0.28849783 0.83535344]\n", + " [-0.51604489 0.43830532 0.73592535]\n", + " [-0.5108158 0.41118122 0.75498161]\n", + " [-0.50470116 0.38305547 0.77365706]\n", + " [-0.49772411 0.35406739 0.79177458]\n", + " [-0.48991354 0.32436622 0.80917939]\n", + " [-0.4813058 0.29411191 0.8257378 ]\n", + " [-0.34442624 0.53123365 0.77405515]\n", + " [-0.34442624 0.53123365 0.77405515]\n", + " [-0.47808548 0.28333297 0.83135835]\n", + " [-0.47808548 0.28333297 0.83135835]\n", + " [-0.35360132 0.51734955 0.77930453]\n", + " [-0.38593268 0.50376705 0.77283551]\n", + " [-0.41754113 0.48952978 0.76551943]\n", + " [-0.44825222 0.4747323 0.75742933]\n", + " [-0.47790105 0.45947713 0.74865971]\n", + " [-0.50633034 0.44387396 0.73932773]\n", + " [-0.34659275 0.49018908 0.79974254]\n", + " [-0.3792513 0.47651709 0.79315819]\n", + " [-0.41118892 0.46223337 0.78566149]\n", + " [-0.44223062 0.44743382 0.77732558]\n", + " [-0.4722126 0.43222187 0.76824444]\n", + " [-0.50098011 0.4167076 0.75853392]\n", + " [-0.33899139 0.46183834 0.81962808]\n", + " [-0.37191853 0.44810458 0.81294458]\n", + " [-0.404129 0.43380611 0.80529002]\n", + " [-0.43544679 0.41903969 0.79673824]\n", + " [-0.46570878 0.4039092 0.78738345]\n", + " [-0.49476243 0.38852463 0.77734082]\n", + " [-0.33081811 0.43242843 0.83878783]\n", + " [-0.36395384 0.41866185 0.83202155]\n", + " [-0.39638018 0.40438189 0.82423179]\n", + " [-0.42791991 0.38968555 0.81549355]\n", + " [-0.45841005 0.37467645 0.80590184]\n", + " [-0.48769972 0.35946391 0.79557192]\n", + " [-0.32210231 0.40210507 0.8570657 ]\n", + " [-0.35538481 0.38833549 0.8502336 ]\n", + " [-0.38796886 0.37410815 0.84233203]\n", + " [-0.41967603 0.35951957 0.83343728]\n", + " [-0.45034315 0.34467234 0.82364557]\n", + " [-0.47982021 0.32967454 0.81307273]\n", + " [-0.3128831 0.37103062 0.87432285]\n", + " [-0.34624881 0.35728822 0.86744273]\n", + " [-0.37893104 0.34314747 0.85945394]\n", + " [-0.41075043 0.32870377 0.85043396]\n", + " [-0.44154331 0.31405808 0.84048024]\n", + " [-0.47115984 0.2993168 0.8297095 ]]\n", + "DEBUG:root:optics_fp: xyfp shape: (96, 2)\n", + " 24.138121 ]\n", + " [ -0.187993 18.76212101]\n", + " [ -0.187993 13.386121 ]\n", + " [ -0.187993 8.010121 ]\n", + " [ -0.187993 2.634121 ]\n", + " [ -2.085493 31.411621 ]\n", + " [ -7.461493 31.411621 ]\n", + " [-12.837493 31.411621 ]\n", + " [-18.213493 31.411621 ]\n", + " [-23.589493 31.411621 ]\n", + " [-28.965493 31.411621 ]\n", + " [ -2.085493 0.736621 ]\n", + " [ -7.461493 0.736621 ]\n", + " [-12.837493 0.736621 ]\n", + " [-18.213493 0.736621 ]\n", + " [-23.58949299 0.736621 ]\n", + " [-28.DEBUG:root:radec2pix: curVec Shape: (96, 3)\n", + "965493 0.736621 ]\n", + " [-30.862993 29.514121 ]\n", + " [-30.862993 24.138121 ]\n", + " [-30.862993 18.762121 ]\n", + " [-30.862993 13.386121 ]\n", + " [-30.862993 8.010121 ]\n", + " [-30.862993 2.634121 ]\n", + " [ -0.187993 31.411621 ]\n", + " [ -0.187993 31.411621 ]\n", + " [-30.862993 0.736621 ]\n", + " [-30.862993 0.736621 ]\n", + " [ -2.085493 29.514121 ]\n", + " [ -7.461493 29.514121 ]\n", + " [-12.837493 29.514121 ]\n", + " [-18.213493 29.514121 ]\n", + " [-23.589493 29.514121 ]\n", + " [-28.965493 29.514121 ]\n", + " [ -2.085493 24.138121 ]\n", + " [ -7.461493 24.138121 ]\n", + " [-12.837493 24.138121 ]\n", + " [-18.213493 24.138121 ]\n", + " [-23.589493 24.138121 ]\n", + " [-28.965493 24.138121 ]\n", + " [ -2.085493 18.762121 ]\n", + " [ -7.461493 18.762121 ]\n", + " [-12.837493 18.762121 ]\n", + " [-18.213493 18.762121 ]\n", + " [-23.589493 18.762121 ]\n", + " [-28.965493 18.762121 ]\n", + " [ -2.085493 13.386121 ]\n", + " [ -7.461493 13.386121 ]\n", + " [-12.837493 13.386121 ]\n", + " [-18.213493 13.386121 ]\n", + " [-23.589493 13.386121 ]\n", + " [-28.965493 13.386121 ]\n", + " [ -2.085493 8.010121 ]\n", + " [ -7.461493 8.010121 ]\n", + " [-12.837493 8.010121 ]\n", + " [-18.213493 8.010121 ]\n", + " [-23.589493 8.010121 ]\n", + " [-28.965493 8.010121 ]\n", + " [ -2.085493 2.634121 ]\n", + " [ -7.461493 2.634121 ]\n", + " [-12.837493 2.634121 ]\n", + " [-18.213493 2.634121 ]\n", + " [-23.589493 2.634121 ]\n", + " [-28.965493 2.634121 ]]\n", + "DEBUG:root:make_az_asym: xyp: [[32.23341696 31.55141621]\n", + " [32.23194958 27.16498788]\n", + " [32.2304822 22.77855956]\n", + " [32.22901483 18.39213124]\n", + " [32.22754745 14.00570291]\n", + " [32.22608007 9.61927458]\n", + " [32.22461269 5.23284626]\n", + " [32.2231453 0.84641793]\n", + " [32.23341696 31.55141621]\n", + " [27.84698864 31.5528836 ]\n", + " [23.46056031 31.55435097]\n", + " [19.07413198 31.55581835]\n", + " [14.68770366 31.55728573]\n", + " [10.30127533 31.55875311]\n", + " [ 5.91484701 31.56022049]\n", + " [ 1.52841868 31.56168787]\n", + " [32.2231453 0.84641793]\n", + " [27.83671698 0.84788531]\n", + " [23.45028865 0.84935269]\n", + " [19.06386033 0.85082007]\n", + " [14.677432 0.85228745]\n", + " [10.29100367 0.85375483]\n", + " [ 5.90457535 0.85522221]\n", + " [ 1.51814702 0.85668959]\n", + " [ 1.52841868 31.56168787]\n", + " [ 1.5269513 27.17525955]\n", + " [ 1.52548392 22.78883122]\n", + " [ 1.52401654 18.4024029 ]\n", + " [ 1.52254916 14.01597457]\n", + " [ 1.52108178 9.62954624]\n", + " [ 1.5196144 5.24311792]\n", + " [ 1.51814702 0.85668959]\n", + " [32.21777718 29.63892134]\n", + " [32.21597876 24.26292164]\n", + " [32.21418034 18.88692194]\n", + " [32.21238193 13.51092224]\n", + " [32.21058351 8.13492254]\n", + " [32.20878509 2.75892284]\n", + " [30.32091205 31.53705599]\n", + " [24.94491236 31.53885442]\n", + " [19.56891265 31.54065283]\n", + " [14.19291295 31.54245125]\n", + " [ 8.81691325 31.54424967]\n", + " [ 3.44091356 31.54604808]\n", + " [30.31065043 0.86205771]\n", + " [24.93465073 0.86385613]\n", + " [19.55865103 0.86565455]\n", + " [14.18265134 0.86745297]\n", + " [ 8.80665163 0.86925139]\n", + " [ 3.43065193 0.8710498 ]\n", + " [ 1.5427789 29.64918296]\n", + " [ 1.54098048 24.27318326]\n", + " [ 1.53918206 18.89718357]\n", + " [ 1.53738364 13.52118387]\n", + " [ 1.53558522 8.14518416]\n", + " [ 1.5337868 2.76918446]\n", + " [32.21841195 31.53642123]\n", + " [32.21841195 31.53642123]\n", + " [ 1.53315204 0.87168457]\n", + " [ 1.53315204 0.87168457]\n", + " [30.32027729 29.6395561 ]\n", + " [24.94427759 29.64135452]\n", + " [19.56827789 29.64315294]\n", + " [14.19227819 29.64495136]\n", + " [ 8.81627849 29.64674978]\n", + " [ 3.44027879 29.6485482 ]\n", + " [30.31847887 24.2635564 ]\n", + " [24.94247917 24.26535482]\n", + " [19.56647947 24.26715324]\n", + " [14.19047977 24.26895166]\n", + " [ 8.81448007 24.27075007]\n", + " [ 3.43848037 24.2725485 ]\n", + " [30.31668045 18.8875567 ]\n", + " [24.94068075 18.88935513]\n", + " [19.56468105 18.89115354]\n", + " [14.18868135 18.89295196]\n", + " [ 8.81268165 18.89475038]\n", + " [ 3.43668195 18.89654879]\n", + " [30.31488203 13.51155701]\n", + " [24.93888233 13.51335542]\n", + " [19.56288263 13.51515384]\n", + " [14.18688293 13.51695226]\n", + " [ 8.81088324 13.51875068]\n", + " [ 3.43488354 13.5205491 ]\n", + " [30.31308361 8.13555731]\n", + " [24.93708392 8.13735572]\n", + " [19.56108422 8.13915414]\n", + " [14.18508451 8.14095256]\n", + " [ 8.80908482 8.14275098]\n", + " [ 3.43308512 8.1445494 ]\n", + " [30.31128519 2.75955761]\n", + " [24.93528549 2.76135602]\n", + " [19.5592858 2.76315444]\n", + " [14.18328609 2.76495286]\n", + " [ 8.8072864 2.76675128]\n", + " [ 3.4312867 2.7685497 ]]\n", + "DEBUG:root:radec2pix: camVec: [[-0.00108623 -0.00110818 -0.00112898 -0.00114857 -0.00116686 -0.00118378\n", + " -0.00119922 -0.00121312 -0.00108623 -0.03008973 -0.05897582 -0.08763213\n", + " -0.11594722 -0.14381054 -0.17111212 -0.19774215 -0.00121312 -0.0312253\n", + " -0.06111305 -0.09075893 -0.12004913 -0.1488739 -0.17712688 -0.20470344\n", + " -0.19774215 -0.19951656 -0.20103291 -0.2022905 -0.20328809 -0.20402394\n", + " -0.20449622 -0.20470344 -0.00119558 -0.00122271 -0.00124786 -0.00127089\n", + " -0.00129164 -0.00130994 -0.01373956 -0.04922259 -0.08441749 -0.11911871\n", + " -0.1531227 -0.18622706 -0.01430615 -0.05102028 -0.08743049 -0.12332566\n", + " -0.15850368 -0.19276957 -0.19845732 -0.20045757 -0.20206974 -0.20329178\n", + " -0.20412054 -0.20455274 -0.00118556 -0.00118556 -0.20461015 -0.20461015\n", + " -0.01379915 -0.04942232 -0.08475642 -0.11959564 -0.15373662 -0.18697743\n", + " -0.01395111 -0.04992687 -0.08561039 -0.12079486 -0.15527748 -0.18885795\n", + " -0.0140777 -0.05033965 -0.08630574 -0.12176792 -0.15652378 -0.19037482\n", + " -0.01417814 -0.05065827 -0.08683905 -0.12251113 -0.15747231 -0.19152571\n", + " -0.0142515 -0.05087978 -0.08720594 -0.12301955 -0.15811848 -0.19230704\n", + " -0.01429691 -0.0510015 -0.08740238 -0.12328852 -0.15845779 -0.19271515]\n", + " [ 0.20994474 0.18250974 0.15437814 0.12565449 0.09644464 0.0668576\n", + " 0.03700641 0.00700791 0.20994474 0.20980966 0.20940234 0.20872399\n", + " 0.20777622 0.20656061 0.20507835 0.20333011 0.00700791 0.00701559\n", + " 0.00701392 0.00700302 0.00698305 0.00695418 0.00691659 0.00687038\n", + " 0.20333011 0.17679323 0.14956333 0.12175011 0.09346339 0.06481351\n", + " 0.03591173 0.00687038 0.19807534 0.16396932 0.12892083 0.09312409\n", + " 0.05677987 0.02009792 0.20982687 0.20947825 0.20872203 0.20756102\n", + " 0.20599809 0.20403521 0.00711509 0.00711803 0.00710683 0.00708177\n", + " 0.0070432 0.00699139 0.19185821 0.1588536 0.12491703 0.09025061\n", + " 0.0550575 0.01954302 0.20985223 0.20985223 0.00696998 0.00696998\n", + " 0.19805172 0.19772367 0.19701128 0.19591776 0.19444643 0.19259955\n", + " 0.16395068 0.1636812 0.16309354 0.16219177 0.16098028 0.15946229\n", + " 0.12890725 0.1286975 0.12823673 0.12752928 0.12657997 0.12539259\n", + " 0.09311572 0.09296747 0.092637 0.09212815 0.0914453 0.09059206\n", + " 0.05677687 0.05669199 0.05649545 0.05618991 0.05577844 0.0552636\n", + " 0.02010041 0.0200803 0.02002048 0.0199219 0.01978566 0.01961272]\n", + " [ 0.97771265 0.98320342 0.98801119 0.9920734 0.99533767 0.99776183\n", + " 0.99931431 0.99997471 0.97771265 0.97727914 0.97604944 0.97404051\n", + " 0.97128023 0.96780744 0.96367189 0.95893426 0.99997471 0.99948775\n", + " 0.99810621 0.99584827 0.99274339 0.98883174 0.98416372 0.97879993\n", + " 0.95893426 0.96381393 0.96809947 0.97172808 0.97464791 0.97681802\n", + " 0.97820838 0.97879993 0.98018607 0.98646468 0.9916541 0.9956537\n", + " 0.99838589 0.99979716 0.97764201 0.9765736 0.97432479 0.97094241\n", + " 0.96649792 0.96108746 0.99987235 0.99867225 0.99614527DEBUG:root:make_az_asym: xyp: shape: (96, 2)\n", + "DEBUG:root:make_az_asym: xyp: [[32.2358199 31.31614388]\n", + " [32.23338667 26.92971599]\n", + " [32.23095344 22.54328809]\n", + " [32.2285202 18.15686019]\n", + " [32.22608698 13.7704323 ]\n", + " [32.22365375 9.3840044 ]\n", + " [32.22122051 4.99757651]\n", + " [32.21878728 0.61114861]\n", + " [32.2358199 31.31614388]\n", + " [27.849392 31.31857712]\n", + " [23.46296411 31.32101035]\n", + " [19.07653621 31.32344358]\n", + " [14.69010831 31.3258768 ]\n", + " [10.30368042 31.32831004]\n", + " [ 5.91725252 31.33074327]\n", + " [ 1.53082462 31.3331765 ]\n", + " [32.21878728 0.61114861]\n", + " [27.83235938 0.61358184]\n", + " [23.44593149 0.61601507]\n", + " [19.0595036 0.6184483 ]\n", + " [14.6730757 0.62088153]\n", + " [10.2866478 0.62331476]\n", + " [ 5.90021991 0.625748 ]\n", + " [ 1.513792 0.62818122]\n", + " [ 1.53082462 31.3331765 ]\n", + " [ 1.52839139 26.94674861]\n", + " [ 1.52595816 22.5603207 ]\n", + " [ 1.52352493 18.17389281]\n", + " [ 1.5210917 13.78746492]\n", + " [ 1.51865847 9.40103702]\n", + " [ 1.51622524 5.01460912]\n", + " [ 1.513792 0.62818122]\n", + " [32.219759 29.4036525 ]\n", + " [32.21677684 24.02765333]\n", + " [32.21379467 18.65165415]\n", + " [32.21081251 13.27565498]\n", + " [32.20783035 7.89965581]\n", + " [32.20484818 2.52365664]\n", + " [30.32331188 31.30220479]\n", + " [24.9473127 31.30518695]\n", + " [19.57131353 31.30816912]\n", + " [14.19531435 31.31115127]\n", + " [ 8.81931518 31.31413344]\n", + " [ 3.44331601 31.3171156 ]\n", + " [30.3062959 0.62720951]\n", + " [24.93029672 0.63019167]\n", + " [19.55429755 0.63317383]\n", + " [14.17829838 0.636156 ]\n", + " [ 8.80229921 0.63913816]\n", + " [ 3.42630004 0.64212033]\n", + " [ 1.54476372 29.42066847]\n", + " [ 1.54178156 24.0446693 ]\n", + " [ 1.53879939 18.66867013]\n", + " [ 1.53581723 13.29267096]\n", + " [ 1.53283507 7.91667178]\n", + " [ 1.5298529 2.54067261]\n", + " [32.22081158 31.30115221]\n", + " [32.22081158 31.30115221]\n", + " [ 1.52880032 0.6431729 ]\n", + " [ 1.52880032 0.6431729 ]\n", + " [30.32225929 29.40470508]\n", + " [24.94626012 29.40768724]\n", + " [19.57026095 29.41066941]\n", + " [14.19426178 29.41365157]\n", + " [ 8.8182626 29.41663373]\n", + " [ 3.44226343 29.4196159 ]\n", + " [30.31927713 24.02870591]\n", + " [24.94327796 24.03168807]\n", + " [19.56727878 24.03467023]\n", + " [14.19127961 24.0376524 ]\n", + " [ 8.81528044 24.04063456]\n", + " [ 3.43928127 24.04361672]\n", + " [30.31629496 18.65270673]\n", + " [24.9402958 18.6556889 ]\n", + " [19.56429662 18.65867106]\n", + " [14.18829744 18.66165322]\n", + " [ 8.81229827 18.66463538]\n", + " [ 3.4362991 18.66761755]\n", + " [30.31331281 13.27670756]\n", + " [24.93731363 13.27968972]\n", + " [19.56131446 13.28267189]\n", + " [14.18531529 13.28565406]\n", + " [ 8.80931611 13.28863621]\n", + " [ 3.43331694 13.29161838]\n", + " [30.31033064 7.90070839]\n", + " [24.93433147 7.90369055]\n", + " [19.55833229 7.90667271]\n", + " [14.18233312 7.90965488]\n", + " [ 8.80633395 7.91263704]\n", + " [ 3.43033477 7.9156192 ]\n", + " [30.30734847 2.52470921]\n", + " [24.9313493 2.52769138]\n", + " [19.55535013 2.53067354]\n", + " [14.17935096 2.53365571]\n", + " [ 8.80335178 2.53663787]\n", + " [ 3.42735261 2.53962004]]\n", + "DEBUG:root:make_az_asym: xyp: [[-32.31281793 -31.43806373]\n", + " [-32.31091541 -27.05163558]\n", + " [-32.30901287 -22.66520742]\n", + " [-32.30711034 -18.27877926]\n", + " [-32.3052078 -13.8923511 ]\n", + " [-32.30330527 -9.50592294]\n", + " [-32.30140274 -5.11949478]\n", + " [-32.2995002 -0.73306663]\n", + " [-32.31281793 -31.43806373]\n", + " [-27.92638978 -31.43996627]\n", + " [-23.53996DEBUG:root:make_az_asym: xyp: shape: (96, 2)\n", + "162 -31.4418688 ]\n", + " [-19.15353346 -31.44377134]\n", + " [-14.7671053 -31.44567387]\n", + " [-10.38067715 -31.44757641]\n", + " [ -5.99424899 -31.44947894]\n", + " [ -1.60782083 -31.45138147]\n", + " [-32.2995002 -0.73306663]\n", + " [-27.91307204 -0.73496916]\n", + " [-23.52664389 -0.73687169]\n", + " [-19.14021573 -0.73877423]\n", + " [-14.75378757 -0.74067676]\n", + " [-10.36735941 -0.74257929]\n", + " [ -5.98093125 -0.74448183]\n", + " [ -1.59450309 -0.74638436]\n", + " [ -1.60782083 -31.45138147]\n", + " [ -1.60591829 -27.06495331]\n", + " [ -1.60401576 -22.67852516]\n", + " [ -1.60211323 -18.292097 ]\n", + " [ -1.60021069 -13.90566884]\n", + " [ -1.59830816 -9.51924068]\n", + " [ -1.59640563 -5.13281252]\n", + " [ -1.59450309 -0.74638436]\n", + " [-32.29698843 -29.52557043]\n", + " [-32.29465669 -24.14957093]\n", + " [-32.29232495 -18.77357144]\n", + " [-32.2899932 -13.39757194]\n", + " [-32.28766146 -8.02157244]\n", + " [-32.28532972 -2.64557295]\n", + " [-30.40031161 -31.42389325]\n", + " [-25.02431212 -31.42622499]\n", + " [-19.64831262 -31.42855673]\n", + " [-14.27231313 -31.43088848]\n", + " [ -8.89631363 -31.43322022]\n", + " [ -3.52DEBUG:root:radec2pix: camVec: [[-0.00108623 -0.00110818 -0.00112898 -0.00114857 -0.00116686 -0.00118378\n", + " -0.00119922 -0.00121312 -0.00108623 -0.03008973 -0.05897582 -0.08763213\n", + " -0.11594722 -0.14381054 -0.17111212 -0.19774215 -0.00121312 -0.0312253\n", + " -0.06111305 -0.09075893 -0.12004913 -0.1488739 -0.17712688 -0.20470344\n", + " -0.19774215 -0.19951656 -0.20103291 -0.2022905 -0.20328809 -0.20402394\n", + " -0.20449622 -0.20470344 -0.00119558 -0.00122271 -0.00124786 -0.00127089\n", + " -0.00129164 -0.00130994 -0.01373956 -0.04922259 -0.08441749 -0.11911871\n", + " -0.1531227 -0.18622706 -0.01430615 -0.05102028 -0.08743049 -0.12332566\n", + " -0.15850368 -0.19276957 -0.19845732 -0.20045757 -0.20206974 -0.20329178\n", + " -0.20412054 -0.20455274 -0.00118556 -0.00118556 -0.20461015 -0.20461015\n", + " -0.01379915 -0.04942232 -0.08475642 -0.11959564 -0.15373662 -0.18697743\n", + " -0.01395111 -0.04992687 -0.08561039 -0.12079486 -0.15527748 -0.18885795\n", + " -0.0140777 -0.05033965 -0.08630574 -0.12176792 -0.15652378 -0.19037482\n", + " -0.01417814 -0.05065827 -0.08683905 -0.12251113 -0.15747231 -0.19152571\n", + " -0.0142515 -0.05087978 -0.08720594 -0.12301955 -0.15811848 -0.19230704\n", + " -0.01429691 -0.0510015 -0.08740238 -0.12328852 -0.15845779 -0.19271515]\n", + " [ 0.20994474 0.18250974 0.15437814 0.12565449 0.09644464 0.0668576\n", + " 0.03700641 0.00700791 0.20994474 0.20980966 0.20940234 0.20872399\n", + " 0.20777622 0.20656061 0.20507835 0.20333011 0.00700791 0.00701559\n", + " 0.00701392 0.00700302 0.00698305 0.00695418 0.00691659 0.00687038\n", + " 0.20333011 0.17679323 0.14956333 0.12175011 0.09346339 0.06481351\n", + " 0.03591173 0.00687038 0.19807534 0.16396932 0.12892083 0.09312409\n", + " 0.05677987 0.02009792 0.20982687 0.20947825 0.20872203 0.20756102\n", + " 0.20599809 0.20403521 0.00711509 0.00711803 0.00710683 0.00708177\n", + " 0.0070432 0.00699139 0.19185821 0.1588536 0.12491703 0.09025061\n", + " 0.0550575 0.01954302 0.20985223 0.20985223 0.00696998 0.00696998\n", + " 0.19805172 0.19772367 0.19701128 0.19591776 0.19444643 0.19259955\n", + " 0.16395068 0.1636812 0.16309354 0.16219177 0.16098028 0.15946229\n", + " 0.12890725 0.1286975 0.12823673 0.12752928 0.12657997 0.12539259\n", + " 0.09311572 0.09296747 0.092637 0.09212815 0.0914453 0.09059206\n", + " 0.05677687 0.05669199 0.05649545 0.05618991 0.05577844 0.0552636\n", + " 0.02010041 0.0200803 0.02002048 0.0199219 0.01978566 0.01961272]\n", + " [ 0.97771265 0.98320342 0.98801119 0.9920734 0.99533767 0.99776183\n", + " 0.99931431 0.99997471 0.97771265 0.97727914 0.97604944 0.97404051\n", + " 0.97128023 0.96780744 0.96367189 0.95893426 0.99997471 0.99948775\n", + " 0.99810621 0.99584827 0.99274339 0.98883174 0.98416372 0.97879993\n", + " 0.95893426 0.96381393 0.96809947 0.97172808 0.97464791 0.97681802\n", + " 0.97820838 0.97879993 0.98018607 0.98646468 0.9916541 0.9956537\n", + " 0.99838589 0.99979716 0.97764201 0.9765736 0.97432479 0.97094241\n", + " 0.96649792 0.96108746 0.99987235 0.99867225 0.99614527 0.99234098\n", + " 0.98733327 0.98121915 0.96114781 0.96673797 0.971372 0.97494989\n", + " 0.97739627 0.97866043 0.97773239 0.97773239 0.97881873 0.97881873\n", + " 0.98009443 0.97901113 0.97673072 0.97330012 0.96879081 0.96329894\n", + " 0.98636988 0.98524909 0.98288929 0.97933775 0.97466623 0.96897082\n", + " 0.99155673 0.99040541 0.9879811 0.98433168 0.97952939 0.97367044\n", + " 0.99555434 0.9943796 0.99190593 0.98818188 0.98328034 0.97729779\n", + " 0.99828517 0.99709441 0.99458704 0.99081223 0.98584345 0.97977749\n", + " 0.99969574 0.99849668 0.99597189 0.99217088 0.98716749 0.98105872]]\n", + "031414 -31.43555196]\n", + " [-30.38700689 -0.74889614]\n", + " [-25.01100739 -0.75122788]\n", + " [-19.6350079 -0.75355962]\n", + " [-14.25900841 -0.75589136]\n", + " [ -8.88300892 -0.7582231 ]\n", + " [ -3.50700942 -0.76055484]\n", + " [ -1.62199131 -29.53887515]\n", + " [ -1.61965957 -24.16287565]\n", + " [ -1.61732783 -18.78687616]\n", + " [ -1.61499609 -13.41087666]\n", + " [ -1.61266434 -8.03487716]\n", + " [ -1.6103326 -2.65887768]\n", + " [-32.29781143 -31.42307024]\n", + " [-32.29781143 -31.42307024]\n", + " [ -1.60950959 -0.76137785]\n", + " [ -1.60950959 -0.76137785]\n", + " [-30.3994886 -29.52639343]\n", + " [-25.02348911 -29.52872517]\n", + " [-19.64748962 -29.53105692]\n", + " [-14.27149012 -29.53338866]\n", + " [ -8.89549063 -29.5357204 ]\n", + " [ -3.51949113 -29.53805214]\n", + " [-30.39715686 -24.15039394]\n", + " [-25.02115737 -24.15272568]\n", + " [-19.64515788 -24.15505742]\n", + " [-14.26915838 -24.15738916]\n", + " [ -8.89315889 -24.1597209 ]\n", + " [ -3.51715939 -24.16205264]\n", + " [-30.39482512 -18.77439444]\n", + " [-25.01882563 -18.77672618]\n", + " [-19.64282613 -18.77905793]\n", + " [-14.26682664 -18.78138967]\n", + " [ -8.89082714 -18.78372141]\n", + " [ -3.51482765 -18.78605315]\n", + " [-30.39249338 -13.39839495]\n", + " [-25.01649389 -13.40072669]\n", + " [-19.64049439 -13.40305843]\n", + " [-14.2644949 -13.40539017]\n", + " [ -8.8884954 -13.40772191]\n", + " [ -3.51249591 -13.41005365]\n", + " [-30.39016163 -8.02239545]\n", + " [-25.01416214 -8.02472719]\n", + " [-19.63816265 -8.02705893]\n", + " [-14.26216315 -8.02939068]\n", + " [ -8.88616366 -8.03172242]\n", + " [ -3.51016417 -8.03405416]\n", + " [-30.3878299 -2.64639596]\n", + " [-25.01183041 -2.6487277 ]\n", + " [-19DEBUG:root:radec2pix: camVec: [[-0.00174024 -0.00176337 -0.00178449 -0.00180353 -0.00182039 -0.001835\n", + " -0.00184725 -0.00185707 -0.00174024 -0.0307605 -0.05966066 -0.08832819\n", + " -0.11665151 -0.14451993 -0.17182299 -0.19844965 -0.00185707 -0.03187835\n", + " -0.06177226 -0.09142104 -0.12071058 -0.14953103 -0.1777762 -0.20534186\n", + " -0.19844965 -0.20021951 -0.20172864 -0.20297731 -0.20396466 -0.20468905\n", + " -0.20514862 -0.20534186 -0.00185028 -0.00187827 -0.00190298 -0.00192425\n", + " -0.00194192 -0.00195581 -0.0144012 -0.04990298 -0.08511243 -0.11982373\n", + " -0.15383302 -0.18693675 -0.01495442 -0.05167778 -0.08809246 -0.12398684\n", + " -0.15915858 -0.19341315 -0.19916328 -0.201156 -0.20275765 -0.20396715\n", + " -0.20478152 -0.20519745 -0.00183964 -0.00183964 -0.20524866 -0.20524866\n", + " -0.01446124 -0.05010266 -0.08545073 -0.12029942 -0.1544452 -0.18768535\n", + " -0.01461361 -0.05060625 -0.08630213 -0.12149421 -0.15597972 -0.18955833\n", + " -0.01473929 -0.05101673 -0.08699359 -0.12246151 -0.1572181 -0.19106523\n", + " -0.01483.63583091 -2.65105944]\n", + " [-14.25983141 -2.65339118]\n", + " [ -8.88383191 -2.65572292]\n", + " [ -3.50783243 -2.65805467]]\n", + "DEBUG:root:radec2pix: ccdpx: [[-4.45000000e+01 -4.99999902e-01]\n", + " [-4.45000000e+01 2.91928572e+02]\n", + " [-4.45000000e+01 5.84357143e+02]\n", + " [-4.45000000e+01 8.76785715e+02]\n", + " [-4.45000000e+01 1.16921429e+03]\n", + " [-4.45000000e+01 1.46164286e+03]\n", + " [-4.45000000e+01 1.75407143e+03]\n", + " [-4.45000001e+01 2.04650000e+03]\n", + " [-4.45000000e+01 -4.99999902e-01]\n", + " [ 2.47928571e+02 -4.99999902e-01]\n", + " [ 5.40357143e+02 -4.99999727e-01]\n", + " [ 8.32785714e+02 -5.00000071e-01]\n", + " [ 1.12521429e+03 -5.00000281e-01]\n", + " [ 1.41764286e+03 -4.99999968e-01]\n", + " [ 1.71007143e+03 -5.00000211e-01]\n", + " [ 2.00250000e+03 -5.00000200e-01]\n", + " [-4.45000001e+01 2.04650000e+03]\n", + " [ 2.47928571e+02 2.04650000e+03]\n", + " [ 5.40357143e+02 2.04650000e+03]\n", + " [ 8.32785714e+02 2.04650000e+03]\n", + " [ 1.12521429e+03 2.04650000e+03]\n", + " [ 1.41764286e+03 2.04650000e+03]\n", + " [ 1.71007143e+03 2.04650000e+03]\n", + " [ 2.00250000e+03 2.04650000e+03]\n", + " [ 2.00250000e+03 -5.00000200e-01]\n", + " [ 2.00250000e+03 2.91928571e+02]\n", + " [ 2.00250000e+03 5.84357143e+02]\n", + " [ 2.00250000e+03 8.76785714e+02]\n", + " [ 2.00250000e+03 1.16921429e+03]\n", + " [ 2.00250000e+03 1.46164286e+03]\n", + " [ 2.00250000e+03 1.75407143e+03]\n", + " [ 2.00250000e+03 2.04650000e+03]\n", + " [-4.35000000e+01 1.27000000e+02]\n", + " [-4.35000000e+01 4.85400000e+02]\n", + " [-4.35000000e+01 8.43800000e+02]\n", + " [-4.35000000e+01 1.20220000e+03]\n", + " [-4.35000000e+01 1.56060000e+03]\n", + " [-4.35000000e+01 1.91900000e+03]\n", + " [ 8.30000000e+01 5.00000088e-01]\n", + " [ 4.41400000e+02 5.00000229e-01]\n", + " [ 7.99800000e+02 4.99999876e-01]\n", + " [ 1.15820000e+03 5.00000139e-01]\n", + " [ 1.51660000e+03 5.00000172e-01]\n", + " [ 1.87500000e+03 4.99999925e-01]\n", + " [ 8.30000002e+01 2.04550000e+03]\n", + " [ 4.41400000e+02 2.04550000e+03]\n", + " [ 7.99800000e+02 2.04550000e+03]\n", + " [ 1.15820000e+03 2.04550000e+03]\n", + " [ 1.51660000e+03 2.04550000e+03]\n", + " [ 1.87500000e+03 2.04550000e+03]\n", + " [ 2.00150000e+03 1.27000000e+02]\n", + " [ 2.00150000e+03 4.85400000e+02]\n", + " [ 2.00150000e+03 8.43800000e+02]\n", + " [ 2 0.99234098\n", + " 0.98733327 0.98121915 0.96114781 0.96673797 0.971372 0.97494989\n", + " 0.97739627 0.97866043 0.97773239 0.97773239 0.97881873 0.97881873\n", + " 0.98009443 0.97901113 0.97673072 0.97330012 0.96879081 0.96329894\n", + " 0.98636988 0.98524909 0.98288929 0.97933775 0.97466623 0.96897082\n", + " 0.99155673 0.99040541 0.9879811 0.98433168 0.97952939 0.97367044\n", + " 0.99555434 0.9943796 0.99190593 0.98818188 0.98328034 0.97729779\n", + " 0.99828517 0.99709441 0.99458704 0.99081223 0.98584345 0.97977749\n", + " 0.99969574 0.99849668 0.99597189 0.99217088 0.98716749 0.98105872]]\n", + "DEBUG:root:optics_fp: rtanth: [31.45867372 27.07232164 22.68599914 18.29972749 13.91355478 9.52761765\n", + " 5.14251895 0.77266756 31.45867372 31.78680319 32.70527593 34.16651578\n", + " 36.10468169 38.44771501 41.12647627 44.07980062 0.77266756 4.62057574\n", + " 8.9768556 13.35288972 17.73406053 22.11731568 26.50162097 30.8865292\n", + " 44.07980062 41.06447698 38.31494783 35.89234872 33.86691125 32.31340541\n", + " 31.3021752 30.8865292 29.54629558 24.17042769 18.79463536 13.41900945\n", + " 8.04388357 2.67227674 31.51224371 32.31623619 33.96261905 36.33706944\n", + " 39.30786805 42.7508727 2.22187045 7.50028847 12.8598094 18.22903784\n", + " 23.60134944 28.97502929 42.72508353 39.20023922 36.1342981 33.65291956\n", + " 31.89283999 30.97725364 31.44375973 31.44375973 30.87190328 30.87190328\n", + " 29.6191671 30.47314683 32.21386423 34.70815714 37.80716925 41.37524227\n", + " 24.25945282 25.29503252 27.36711605 30.26354513 33.77288911 37.72448364\n", + " 18.90898716 20.22047017 22.759345 26.17080258 30.16018539 34.5277484\n", + " 13.57870729 15.35248874 18.5693102 22.62172417 27.13794906 31.92173094\n", + " 8.30755918 10.96964715 15.14772357 19.90921024 24.92192864 30.06045831\n", + " 3.38416012 7.92276206 13.11070286 18.40689143 23.73898749 29.08725072]\n", + "DEBUG:root:radec2pix: camVec Shape: (3, 96)\n", + "DEBUG:root:make_az_asym: xyp: shape: (96, 2)\n", + "DEBUG:root:radec2pix: camVec Shape: (3, 96)\n", + ".00150000e+03 1.20220000e+03]\n", + " [ 2.00150000e+03 1.56060000e+03]\n", + " [ 2.00150000e+03 1.91900000e+03]\n", + " [-4.35000000e+01 5.00000166e-01]\n", + " [-4.35000000e+01 5.00000166e-01]\n", + " [ 2.00150000e+03 2.04550000e+03]\n", + " [ 2.00150000e+03 2.04550000e+03]\n", + " [ 8.30000000e+01 1.27000000e+02]\n", + " [ 4.41400000e+02 1.27000000e+02]\n", + " [ 7.99800000e+02 1.27000000e+02]\n", + " [ 1.15820000e+03 1.27000000e+02]\n", + " [ 1.51660000e+03 1.27000000e+02]\n", + " [ 1.87500000e+03 1.27000000e+02]\n", + " [ 8.30000000e+01 4.85400000e+02]\n", + " [ 4.41400000e+02 4.85400000e+02]\n", + " [ 7.99800000e+02 4.85400000e+02]\n", + " [ 1.15820000e+03 4.85400000e+02]\n", + " [ 1.51660000e+03 4.85400000e+02]\n", + " [ 1.87500000e+03 4.85400000e+02]\n", + " [ 8.30000000e+01 8.43800000e+02]\n", + " [ 4.41400000e+02 8.43800000e+02]\n", + " [ 7.99800000e+02 8.43800000e+02]\n", + " [ 1.15820000e+03 8.43800000e+02]\n", + " [ 1.51660000e+03 8.43800000e+02]\n", + " [ 1.87500000e+03 8.43800000e+02]\n", + " [ 8.30000000e+01 1.20220000e+03]\n", + " [ 4.41400000e+02 1.20220000e+03]\n", + " [ 7.99800000e+02 1.20220000e+03]\n", + " [ 1.15820000e+03 1.20220000e+03]\n", + " [ 1.51660000e+03 1.20220000e+03]\n", + " [ 1.87500000e+03 1.20220000e+03]\n", + " [ 8.30000000e+01 1.56060000e+03]\n", + " [ 4.41400000e+02 1.56060000e+03]\n", + " [ 7.99800000e+02 1.56060000e+03]\n", + " [ 1.15820000e+03 1.56060000e+03]\n", + " [ 1.51660000e+03 1.56060000e+03]\n", + " [ 1.87500000e+03 1.56060000e+03]\n", + " [ 8.30000001e+01 1.91900000e+03]\n", + " [ 4.41400000e+02 1.91900000e+03]\n", + " [ 7.99800000e+02 1.91900000e+03]\n", + " [ 1.15820000e+03 1.91900000e+03]\n", + " [ 1.51660000e+03 1.91900000e+03]\n", + " [ 1.87500000e+03 1.91900000e+03]]\n", + "744 -0.0513315 -0.08752139 -0.12319735 -0.15815714 -0.19220433\n", + " -0.01490708 -0.05154747 -0.08788092 -0.1236965 -0.15879197 -0.19297207\n", + " -0.01494734 -0.05166195 -0.08806808 -0.12395417 -0.15911791 -0.19336467]\n", + " [ 0.20894107 0.18147259 0.15331081 0.12455987 0.09532558 0.06571725\n", + " 0.03584843 0.00583647 0.20894107 0.20879621 0.2083801 0.20769404\n", + " 0.20673975 0.20551876 0.20403188 0.20227886 0.00583647 0.00584019\n", + " 0.00583613 0.00582438 0.00580507 0.00577839 0.00574449 0.00570348\n", + " 0.20227886 0.17571613 0.1484622 0.12062809 0.09232414 0.06366093\n", + " 0.03474987 0.00570348 0.1970566 0.16291184 0.12782912 0.09200243\n", + " 0.05563309 0.01893178 0.2088187 0.20845876 0.20769278 0.20652378\n", + " 0.20495452 0.20298606 0.00594178 0.00594091 0.00592823 0.00590399\n", + " 0.0058685 0.00582205 0.19079562 0.1577603 0.12379719 0.08910965\n", + " 0.05390131 0.01837776 0.20884841 0.20884841 0.00580307 0.00580307\n", + " 0.19702878 0.19668974 0.19596793 0.19486681 0.19338978 0.1915385\n", + " 0.16288937 0.16260994 0.16201386 0.16110551 0.1598896 0.15836938\n", + " 0.12781212 0.12759366 0.12712576 0.126413 0.12546054 0.12427244\n", + " 0.09199108 0.09183551 0.0914995 0.09098698 0.09030259 0.0894502\n", + " 0.05562756 0.05553685 0.05533649 0.05502916 0.05461804 0.05410588\n", + " 0.0189322 0.01890777 0.01884587 0.01874743 0.01861357 0.01844527]\n", + " [ 0.97792668 0.98339442 0.98817641 0.99221045 0.99544448 0.9978366\n", + " 0.99935553 0.99998124 0.97792668 0.97747528 0.97622658 0.97419778\n", + " 0.97141706 0.96792357 0.96376753 0.95901043 0.99998124 0.99947469\n", + " 0.99807321 0.9957953 0.99267077 0.98874015 0.98405418 0.97867369\n", + " 0.95901043 0.96386513 0.96812423 0.97172479 0.97461514 0.97675467\n", + " 0.97811374 0.97867369 0.98039037 0.98663884 0.99179438 0.99575692\n", + " 0.99844939 0.99981886 0.97784833 0.97675721 0.97448427 0.97107683\n", + " 0.96660698 0.96117184 0.99987052 0.99864614 0.99609466 0.9922663\n", + " 0.98723559 0.98110013 0.96121331 0.96677192 0.97137201 0.97491378\n", + " 0.97732245 0.97854804 0.9779463 0.9779463 0.97869265 0.97869265\n", + " 0.98029105 0.9791848 0.97688011 0.97342435 0.96888961 0.96337283\n", + " 0.98653611 0.98539181 0.98300735 0.97943054 0.97473363 0.9690133\n", + " 0.99168887 0.99051358 0.98806435 0.98438962 0.97956221 0.97367882\n", + " 0.99564928 0.99445026 0.99195154 0.9882023 0.98327604 0.97726975\n", + " 0.9983403 0.99712513 0.99459279 0.9907931 0.98580017 0.97971135\n", + " 0.99970903 0.99848562 0.99593617 0.99211083 0.9870841 0.98095356]]\n", + "DEBUG:root:radec2pix: xyfp: [[32.2358199 31.31614388]\n", + " [32.23338667 26.92971599]\n", + " [32.23095344 22.54328809]\n", + " [32.2285202 18.15686019]\n", + " [32.22608698 13.7704323 ]\n", + " [32.22365375 9.3840044 ]\n", + " [32.22122051 4.99757651]\n", + " [32.21878728 0.61114861]\n", + " [32.2358199 31.31614388]\n", + " [27.849392 31.31857712]\n", + " [23.46296411 31.32101035]\n", + " [19.07653621 31.32344358]\n", + " [14.69010831 31.3258768 ]\n", + " [10.30368042 31.32831004]\n", + " [ 5.91725252 31.33074327]\n", + " [ 1.53082462 31.3331765 ]\n", + " [32.21878728 0.61114861]\n", + " [27.83235938 0.61358184]\n", + " [23.44593149 0.61601507]\n", + " [19.0595036 0.6184483 ]\n", + " [14.6730757 0.62088153]\n", + " [10.2866478 0.62331476]\n", + " [ 5.90021991 0.625748 ]\n", + " [ 1.513792 0.62818122]\n", + " [ 1.53082462 31.3331765 ]\n", + " [ 1.52839139 26.94674861]\n", + " [ 1.52595816 22.5603207 ]\n", + " [ 1.52352493 18.17389281]\n", + " [ 1.5210917 13.78746492]\n", + " [ 1.51865847 9.40103702]\n", + " [ 1.51622524 5.01460912]\n", + " [ 1.513792 0.62818122]\n", + " [32.219759 29.4036525 ]\n", + " [32.21677684 24.02765333]\n", + " [32.21379467 18.65165415]\n", + " [32.21081251 13.27565498]\n", + " [32.20783035 7.89965581]\n", + " [32.20484818 2.52365664]\n", + " [30.32331188 31.30220479]\n", + " [24.9473127 31.30518695]\n", + " [19.57131353 31.30816912]\n", + " [14.19531435 31.31115127]\n", + " [ 8.81931518 31.31413344]\n", + " [ 3.44331601 31.3171156 ]\n", + " [30.3062959 0.62720951]\n", + " [24.93029672 0.63019167]\n", + " [19.55429755 0.63317383]\n", + " [14.17829838 0.636156 ]\n", + " [ 8.80229921 0.63913816]\n", + " [ 3.42630004 0.64212033]\n", + " [ 1.54476372 29.42066847]\n", + " [ 1.54178156 24.0446693 ]\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + " [ 1.53879939IOPub data rate exceeded.\n", + "The notebook server will temporarily stop sending output\n", + "to the client in order to avoid crashing it.\n", + "To change this limit, set the config variable\n", + "`--NotebookApp.iopub_data_rate_limit`.\n", + "\n", + "Current values:\n", + "NotebookApp.iopub_data_rate_limit=1000000.0 (bytes/sec)\n", + "NotebookApp.rate_limit_window=3.0 (secs)\n", + "\n" + ] + } + ], + "source": [ + "from testfun import test_radec2pix_SectorCameraCCD, test_radec2pix_initial_SectorCameraCCD\n", + "\n", + "test_radec2pix_init_df=pd.DataFrame(data=None, columns=['dr_med','dr_max','dr_std',\n", + " 'dc_med','dc_max','dc_std',\n", + " 'Sector','Camera','CCD'])\n", + "pool=Pool()\n", + "\n", + "for result in pool.map(test_radec2pix_initial_SectorCameraCCD, inlist):\n", + " r_med=np.median(result[1])\n", + " r_max=max(result[1])\n", + " r_std=np.std(result[1])\n", + " \n", + " dc_med=np.median(result[2])\n", + " dc_max=max(result[2])\n", + " dc_std=np.std(result[2])\n", + " \n", + " rdf=pd.DataFrame({'dr_med': r_med,'dr_max': r_max,'dr_std':r_std,\n", + " 'dc_med': dc_med,'dc_max': dc_max,'dc_std':dc_std,\n", + " 'Sector':result[3],'Camera':result[4],'CCD':result[5]},index=[0])\n", + " \n", + " test_radec2pix_init_df=pd.concat([rdf, test_radec2pix_init_df],ignore_index=True)\n", + " \n", + "pool.close()" + ] + }, + { + "cell_type": "code", + "execution_count": 228, + "id": "a81ce02f", + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
dr_meddr_maxdr_stddc_meddc_maxdc_stdSectorCameraCCD
0-1.151950e-093.738639e-071.458711e-076.862251e-092.862996e-071.469928e-076844
11.118940e-083.258222e-071.358661e-079.415084e-094.129975e-071.376383e-076843
21.131710e-094.120909e-071.479925e-07-1.138346e-092.606913e-071.234570e-076842
34.051003e-092.897017e-071.331953e-071.668923e-093.258810e-071.361026e-076841
4-1.181736e-094.165092e-071.460275e-079.525479e-093.626203e-071.504128e-076834
..............................
1083-1.452295e-083.431742e-071.539164e-07-9.233759e-093.523353e-071.356204e-07121
10846.556355e-103.460964e-071.286608e-07-1.625949e-093.927616e-071.466806e-07114
1085-9.510586e-093.067173e-071.535972e-07-6.079631e-092.679155e-071.367610e-07113
1086-1.362068e-094.192004e-071.472948e-074.812478e-093.694079e-071.503606e-07112
1087-1.166931e-093.259374e-071.537937e-07-3.956302e-113.001014e-071.314555e-07111
\n", + "

1088 rows × 9 columns

\n", + "
" + ], + "text/plain": [ + " dr_med dr_max dr_std dc_med dc_max \\\n", + "0 -1.151950e-09 3.738639e-07 1.458711e-07 6.862251e-09 2.862996e-07 \n", + "1 1.118940e-08 3.258222e-07 1.358661e-07 9.415084e-09 4.129975e-07 \n", + "2 1.131710e-09 4.120909e-07 1.479925e-07 -1.138346e-09 2.606913e-07 \n", + "3 4.051003e-09 2.897017e-07 1.331953e-07 1.668923e-09 3.258810e-07 \n", + "4 -1.181736e-09 4.165092e-07 1.460275e-07 9.525479e-09 3.626203e-07 \n", + "... ... ... ... ... ... \n", + "1083 -1.452295e-08 3.431742e-07 1.539164e-07 -9.233759e-09 3.523353e-07 \n", + "1084 6.556355e-10 3.460964e-07 1.286608e-07 -1.625949e-09 3.927616e-07 \n", + "1085 -9.510586e-09 3.067173e-07 1.535972e-07 -6.079631e-09 2.679155e-07 \n", + "1086 -1.362068e-09 4.192004e-07 1.472948e-07 4.812478e-09 3.694079e-07 \n", + "1087 -1.166931e-09 3.259374e-07 1.537937e-07 -3.956302e-11 3.001014e-07 \n", + "\n", + " dc_std Sector Camera CCD \n", + "0 1.469928e-07 68 4 4 \n", + "1 1.376383e-07 68 4 3 \n", + "2 1.234570e-07 68 4 2 \n", + "3 1.361026e-07 68 4 1 \n", + "4 1.504128e-07 68 3 4 \n", + "... ... ... ... .. \n", + "1083 1.356204e-07 1 2 1 \n", + "1084 1.466806e-07 1 1 4 \n", + "1085 1.367610e-07 1 1 3 \n", + "1086 1.503606e-07 1 1 2 \n", + "1087 1.314555e-07 1 1 1 \n", + "\n", + "[1088 rows x 9 columns]" + ] + }, + "execution_count": 228, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "test_radec2pix_init_df" + ] + }, + { + "cell_type": "code", + "execution_count": 230, + "id": "33160cd0", + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "4.1300643260910874e-07\n", + "4.1300643260910874e-07\n" + ] + } + ], + "source": [ + "print(max(test_radec2pix_init_df.dc_max))\n", + "print(max(test_radec2pix_init_df.dc_max))" + ] + }, + { + "cell_type": "markdown", + "id": "962ff0cd", + "metadata": {}, + "source": [ + "## OK, So I think this means that we're doing better than benchmark TESSPoint at returning to our starting point!\n", + "\n", + "# And that the big offsets in some of tess_stars2px.py were caused in the secord, regular run (e.g. ra, dec -> pix NOT the pix->ra, dec reverse mode)\n", + "since if we take the ra, dec output from tess_stars2px.py -- reverse and use TESSPoint.radec2pix we get the right intial footprint, those RA,DECs must be... good?\n", + "\n", + "# This seems strange, I would have excpected the reverse portion to be less accurate?\n", + "\n", + "# Can we verify this somehow?\n", + "\n", + "we could still do a TESSPoint.radec2pix(TESSPoint(pix2radec(footprint())))\n", + "\n", + "# This also means that we need to work on our pix2radec to get better agreement" + ] + }, + { + "cell_type": "markdown", + "id": "7db709c7", + "metadata": {}, + "source": [ + "# New Test -> if our Pix -> RA, DEC is off then our pix-> RA, DEC-> pixel should be off of the footprint, lets check \n", + "\n", + "that is, use the output of out pix-> ra dec as the input to ra, dec -> pix and not our \"benchmark\"\n", + "\n", + "## Lets just start with a single Sector/Camera/CCD:" + ] + }, + { + "cell_type": "code", + "execution_count": 347, + "id": "78989be6", + "metadata": {}, + "outputs": [ + { + "name": "stderr", + "output_type": "stream", + "text": [ + "DEBUG:root:fp_optics: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [ 1.46039793e+02 1.00000140e+00 2.39204160e-01 1.33494500e-01\n", + " 4.77768896e+00 -1.75114744e+00]\n", + "DEBUG:root:cartToSphere: vec: [[ 0.27463857 0.42561613 -0.86222072]\n", + " [ 0.25576796 0.44463295 -0.85841965]\n", + " [ 0.23621603 0.46362059 -0.853966 ]\n", + " [ 0.21606553 0.48248731 -0.84883549]\n", + " [ 0.19539887 0.50114554 -0.8430139 ]\n", + " [ 0.17429849 0.51951172 -0.83649722]\n", + " [ 0.15284733 0.53750638 -0.82929162]\n", + " [ 0.13112922 0.55505433 -0.82141331]\n", + " [ 0.27463857 0.42561613 -0.86222072]\n", + " [ 0.25845074 0.40845324 -0.87542513]\n", + " [ 0.2416178 0.39072249 -0.88823239]\n", + " [ 0.22421213 0.37247291 -0.90055142]\n", + " [ 0.20630568 0.35375858 -0.91230084]\n", + " [ 0.18797032 0.33463884 -0.9234089 ]\n", + " [ 0.16927833 0.31517833 -0.9338134 ]\n", + " [ 0.15030277 0.29544679 -0.94346185]\n", + " [ 0.13112922 0.55505433 -0.82141331]\n", + " [ 0.11301717 0.53856014 -0.83497311]\n", + " [ 0.09445178 0.52130419 -0.84812782]\n", + " [ 0.07550243 0.50333172 -0.86078834]\n", + " [ 0.05623932 0.48469323 -0.87287434]\n", + " [ 0.03673462 0.46544579 -0.88431374]\n", + " [ 0.01706307 0.4456537 -0.89504281]\n", + " [-0.00269818 0.42538855 -0.9050068 ]\n", + " [ 0.15030277 0.29544679 -0.94346185]\n", + " [ 0.12958378 0.31410621 -0.9405027 ]\n", + " [ 0.10835057 0.3328757 -0.9367251 ]\n", + " [ 0.08668234 0.35166703 -0.93210325]\n", + " [ 0.06465932 0.37039536 -0.92662099]\n", + " [ 0.04236407 0.3889782 -0.92027238]\n", + " [ 0.01988216 0.40733518 -0.91306229]\n", + " [-0.00269818 0.42538855 -0.9050068 ]\n", + " [ 0.26644527 0.43384748 -0.86068768]\n", + " [ 0.24284732 0.45714699 -0.85559442]\n", + " [ 0.21830834 0.48031111 -0.84949556]\n", + " [ 0.19298023 0.50317692 -0.84236074]\n", + " [ 0.16701477 0.52559061 -0.83418258]\n", + " [ 0.14056505 0.54740761 -0.82497659]\n", + " [ 0.26760076 0.41827085 -0.86800883]\n", + " [ 0.24731649 0.3968483 -0.88393777]\n", + " [ 0.22613531 0.37462081 -0.89917855]\n", + " [ 0.20418989 0.35168582 -0.91357735]\n", + " [ 0.18161257 0.32815259 -0.92700202]\n", + " [ 0.15853672 0.30414225 -0.93934211]\n", + " [ 0.12336742 0.54789979 -0.82739731]\n", + " [ 0.10085639 0.52716616 -0.84375579]\n", + " [ 0.07773321 0.50533288 -0.85941621]\n", + " [ 0.05412669 0.4824907 -0.8742271 ]\n", + " [ 0.03016977 0.45874472 -0.88805578]\n", + " [ 0.00600107 0.4342164 -0.9007886 ]\n", + " [ 0.14140308 0.30363112 -0.94223846]\n", + " [ 0.11565471 0.32658613 -0.93806476]\n", + " [ 0.08921252 0.34961825 -0.93263509]\n", + " [ 0.06222366 0.37256992 -0.92591569]\n", + " [ 0.03484025 0.39528928 -0.91789571]\n", + " [ 0.00722092 0.4176294 -0.90858876]\n", + " [ 0.27452111 0.42562343 -0.86225452]\n", + " [ 0.27452111 0.42562343 -0.86225452]\n", + " [-0.00255325 0.42539743 -0.90500304]\n", + " [-0.00255325 0.42539743 -0.90500304]\n", + " [ 0.25945737 0.42650485 -0.86647301]\n", + " [ 0.23899415 0.40509589 -0.88248463]\n", + " [ 0.21765224 0.38286022 -0.8978004 ]\n", + " [ 0.19556377 0.35989514 -0.91226657]\n", + " [ 0.17286059 0.33630996 -0.92575095]\n", + " [ 0.14967593 0.31222616 -0.93814281]\n", + " [ 0.23567889 0.44983921 -0.86145235]\n", + " [ 0.2147396 0.42848926 -0.87765817]\n", + " [ 0.19297284 0.40625319 -0.89315163]\n", + " [ 0.17050892 0.38322762 -0.90777932]\n", + " [ 0.14747844 0.35952191 -0.92140876]\n", + " [ 0.1240145 0.33525844 -0.93392836]\n", + " [ 0.21097525 0.47304819 -0.85540333]\n", + " [ 0.1896044 0.45178822 -0.87174399]\n", + " [ 0.16745632 0.42958627 -0.88736352]\n", + " [ 0.14465965 0.40653793 -0.90210891]\n", + " [ 0.12134431 0.38275221 -0.91584732]\n", + " [ 0.09764393 0.35835206 -0.92846619]\n", + " [ 0.18549778 0.49596896 -0.84829556]\n", + " [ 0.16373801 0.47483032 -0.86471153]\n", + " [ 0.14125036 0.45269771 -0.88040509]\n", + " [ 0.11816249 0.42966537 -0.8952236 ]\n", + " [ 0.09460445 0.40584144 -0.90903395]\n", + " [ 0.07071103 0.38134903 -0.92172277]\n", + " [ 0.15939784 0.51844753 -0.84012171]\n", + " [ 0.13729059 0.49746111 -0.85655341]\n", + " [ 0.11450445 0.4754329 -0.87226847]\n", + " [ 0.091167 0.45245553 -0.88711474]\n", + " [ 0.06740919 0.42863598 -0.90095904]\n", + " [ 0.04336739 0.40409694 -0.91368755]\n", + " [ 0.13282839 0.54033889 -0.83089741]\n", + " [ 0.11041521 0.51953432 -0.84728542]\n", + " [ 0.08737235 0.49764442 -0.86296935]\n", + " [ 0.0638282 0.47476038 -0.87779755]\n", + " [ 0.0399151 0.45098779 -0.89163715]\n", + " [ 0.01577114 0.42644848 -0.90437435]]\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "DEBUG:root:radec2pix: curVec: [[ 0.27463857 0.42561613 -0.86222072]\n", + " [ 0.25576796 0.44463295 -0.85841965]\n", + " [ 0.23621603 0.46362059 -0.853966 ]\n", + " [ 0.21606553 0.48248731 -0.84883549]\n", + " [ 0.19539887 0.50114554 -0.8430139 ]\n", + " [ 0.17429849 0.51951172 -0.83649722]\n", + " [ 0.15284733 0.53750638 -0.82929162]\n", + " [ 0.13112922 0.55505433 -0.82141331]\n", + " [ 0.27463857 0.42561613 -0.86222072]\n", + " [ 0.25845074 0.40845324 -0.87542513]\n", + " [ 0.2416178 0.39072249 -0.88823239]\n", + " [ 0.22421213 0.37247291 -0.90055142]\n", + " [ 0.20630568 0.35375858 -0.91230084]\n", + " [ 0.18797032 0.33463884 -0.9234089 ]\n", + " [ 0.16927833 0.31517833 -0.9338134 ]\n", + " [ 0.15030277 0.29544679 -0.94346185]\n", + " [ 0.13112922 0.55505433 -0.82141331]\n", + " [ 0.11301717 0.53856014 -0.83497311]\n", + " [ 0.09445178 0.52130419 -0.84812782]\n", + " [ 0.07550243 0.50333172 -0.86078834]\n", + " [ 0.05623932 0.48469323 -0.87287434]\n", + " [ 0.03673462 0.46544579 -0.88431374]\n", + " [ 0.01706307 0.4456537 -0.89504281]\n", + " [-0.00269818 0.42538855 -0.9050068 ]\n", + " [ 0.15030277 0.29544679 -0.94346185]\n", + " [ 0.12958378 0.31410621 -0.9405027 ]\n", + " [ 0.10835057 0.3328757 -0.9367251 ]\n", + " [ 0.08668234 0.35166703 -0.93210325]\n", + " [ 0.06465932 0.37039536 -0.92662099]\n", + " [ 0.04236407 0.3889782 -0.92027238]\n", + " [ 0.01988216 0.40733518 -0.91306229]\n", + " [-0.00269818 0.42538855 -0.9050068 ]\n", + " [ 0.26644527 0.43384748 -0.86068768]\n", + " [ 0.24284732 0.45714699 -0.85559442]\n", + " [ 0.21830834 0.48031111 -0.84949556]\n", + " [ 0.19298023 0.50317692 -0.84236074]\n", + " [ 0.16701477 0.52559061 -0.83418258]\n", + " [ 0.14056505 0.54740761 -0.82497659]\n", + " [ 0.26760076 0.41827085 -0.86800883]\n", + " [ 0.24731649 0.3968483 -0.88393777]\n", + " [ 0.22613531 0.37462081 -0.89917855]\n", + " [ 0.20418989 0.35168582 -0.91357735]\n", + " [ 0.18161257 0.32815259 -0.92700202]\n", + " [ 0.15853672 0.30414225 -0.93934211]\n", + " [ 0.12336742 0.54789979 -0.82739731]\n", + " [ 0.10085639 0.52716616 -0.84375579]\n", + " [ 0.07773321 0.50533288 -0.85941621]\n", + " [ 0.05412669 0.4824907 -0.8742271 ]\n", + " [ 0.03016977 0.45874472 -0.88805578]\n", + " [ 0.00600107 0.4342164 -0.9007886 ]\n", + " [ 0.14140308 0.30363112 -0.94223846]\n", + " [ 0.11565471 0.32658613 -0.93806476]\n", + " [ 0.08921252 0.34961825 -0.93263509]\n", + " [ 0.06222366 0.37256992 -0.92591569]\n", + " [ 0.03484025 0.39528928 -0.91789571]\n", + " [ 0.00722092 0.4176294 -0.90858876]\n", + " [ 0.27452111 0.42562343 -0.86225452]\n", + " [ 0.27452111 0.42562343 -0.86225452]\n", + " [-0.00255325 0.42539743 -0.90500304]\n", + " [-0.00255325 0.42539743 -0.90500304]\n", + " [ 0.25945737 0.42650485 -0.86647301]\n", + " [ 0.23899415 0.40509589 -0.88248463]\n", + " [ 0.21765224 0.38286022 -0.8978004 ]\n", + " [ 0.19556377 0.35989514 -0.91226657]\n", + " [ 0.17286059 0.33630996 -0.92575095]\n", + " [ 0.14967593 0.31222616 -0.93814281]\n", + " [ 0.23567889 0.44983921 -0.86145235]\n", + " [ 0.2147396 0.42848926 -0.87765817]\n", + " [ 0.19297284 0.40625319 -0.89315163]\n", + " [ 0.17050892 0.38322762 -0.90777932]\n", + " [ 0.14747844 0.35952191 -0.92140876]\n", + " [ 0.1240145 0.33525844 -0.93392836]\n", + " [ 0.21097525 0.47304819 -0.85540333]\n", + " [ 0.1896044 0.45178822 -0.87174399]\n", + " [ 0.16745632 0.42958627 -0.88736352]\n", + " [ 0.14465965 0.40653793 -0.90210891]\n", + " [ 0.12134431 0.38275221 -0.91584732]\n", + " [ 0.09764393 0.35835206 -0.92846619]\n", + " [ 0.18549778 0.49596896 -0.84829556]\n", + " [ 0.16373801 0.47483032 -0.86471153]\n", + " [ 0.14125036 0.45269771 -0.88040509]\n", + " [ 0.11816249 0.42966537 -0.8952236 ]\n", + " [ 0.09460445 0.40584144 -0.90903395]\n", + " [ 0.07071103 0.38134903 -0.92172277]\n", + " [ 0.15939784 0.51844753 -0.84012171]\n", + " [ 0.13729059 0.49746111 -0.85655341]\n", + " [ 0.11450445 0.4754329 -0.87226847]\n", + " [ 0.091167 0.45245553 -0.88711474]\n", + " [ 0.06740919 0.42863598 -0.90095904]\n", + " [ 0.04336739 0.40409694 -0.91368755]\n", + " [ 0.13282839 0.54033889 -0.83089741]\n", + " [ 0.11041521 0.51953432 -0.84728542]\n", + " [ 0.08737235 0.49764442 -0.86296935]\n", + " [ 0.0638282 0.47476038 -0.87779755]\n", + " [ 0.0399151 0.45098779 -0.89163715]\n", + " [ 0.01577114 0.42644848 -0.90437435]]\n", + "DEBUG:root:radec2pix: curVec Shape: (96, 3)\n", + "DEBUG:root:radec2pix: camVec: [[-0.20206559 -0.20385583 -0.20538208 -0.20664361 -0.20763916 -0.20836703\n", + " -0.20882548 -0.20901312 -0.20206559 -0.17552521 -0.14829587 -0.12048731\n", + " -0.09220941 -0.06357255 -0.03468805 -0.00566819 -0.20901312 -0.18155278\n", + " -0.15339945 -0.12465766 -0.09543335 -0.06583567 -0.03597779 -0.00597667\n", + " -0.00566819 -0.0057335 -0.00579209 -0.00584377 -0.00588832 -0.00592547\n", + " -0.00595499 -0.00597667 -0.20278873 -0.20480442 -0.20642309 -0.20764263\n", + " -0.20846 -0.20887208 -0.1905918 -0.15758562 -0.12365361 -0.08899797\n", + " -0.053822 -0.01833101 -0.19713205 -0.16299742 -0.12792571 -0.09211126\n", + " -0.0557551 -0.0190672 -0.00579722 -0.00587373 -0.00593978 -0.00599497\n", + " -0.00603881 -0.00607087 -0.2019827 -0.2019827 -0.00607931 -0.00607931\n", + " -0.19135047 -0.15820992 -0.12414303 -0.08935153 -0.05403846 -0.01840935\n", + " -0.19324847 -0.15977416 -0.12537172 -0.09024112 -0.05458467 -0.01860873\n", + " -0.19477386 -0.16103488 -0.12636534 -0.09096329 -0.05503045 -0.01877423\n", + " -0.19592426 -0.16198879 -0.12712005 -0.09151438 -0.05537312 -0.01890477\n", + " -0.19669618 -0.1626313 -0.12763084 -0.09188986 -0.05560947 -0.01899911\n", + " -0.1970861 -0.16295805 -0.12789308 -0.09208561 -0.05573664 -0.01905613]\n", + " [-0.20040527 -0.17383484 -0.14658256 -0.11875818 -0.09047165 -0.06183342\n", + " -0.03295485 -0.00394826 -0.20040527 -0.20216732 -0.20366717 -0.20490423\n", + " -0.20587738 -0.20658503 -0.20702551 -0.20719749 -0.00394826 -0.00396653\n", + " -0.00397971 -0.00398777 -0.00399068 -0.00398834 -0.00398071 -0.00396776\n", + " -0.20719749 -0.17968785 -0.15149221 -0.12271515 -0.09346279 -0.06384452\n", + " -0.03397379 -0.00396776 -0.18891741 -0.15587916 -0.12192577 -0.08725955\n", + " -0.0520839 -0.01660424 -0.20111579 -0.2030981 -0.20468622 -0.20587831\n", + " -0.2066715 -0.20706282 -0.00405653 -0.00407648 -0.00408858 -0.00409274\n", + " -0.00408883 -0.00407674 -0.19529411 -0.16110378 -0.1259869 -0.09013809\n", + " -0.05375882 -0.01705956 -0.20032217 -0.20032217 -0.00407052 -0.00407052\n", + " -0.18966314 -0.19152627 -0.19301964 -0.19414112 -0.19488742 -0.19525515\n", + " -0.15648903 -0.15801419 -0.15923869 -0.16015951 -0.16077229 -0.16107281\n", + " -0.1223993 -0.12358469 -0.12453786 -0.12525528 -0.12573217 -0.1259641\n", + " -0.08759577 -0.08843791 -0.08911544 -0.08962502 -0.0899624 -0.09012369\n", + " -0.05228162 -0.05277638 -0.05317342 -0.05347043 -0.05366451 -0.05375307\n", + " -0.01666249 -0.01680661 -0.01691947 -0.01700034 -0.01704833 -0.01706264]\n", + " [ 0.95864864 0.96344395 0.96764237 0.97118222 0.97401276 0.97609416\n", + " 0.97739751 0.97790487 0.95864864 0.96349327 0.96774378 0.97133777\n", + " 0.97422376 0.97636118 0.9777204 0.97828271 0.97790487 0.9833732\n", + " 0.98815625 0.9921918 0.99542782 0.99782251 0.99934466 0.99997427\n", + " 0.97828271 0.98370697 0.98844148 0.99242473 0.99560536 0.99794227\n", + " 0.99940498 0.99997427 0.96082618 0.96631094 0.97083655 0.97430504\n", + " 0.97664307 0.977802 0.96084713 0.96639429 0.97098576 0.97452218\n", + " 0.9769289 0.9781559 0.98036855 0.98661807 0.99177533 0.99574031\n", + " 0.9984361 0.99980989 0.98072759 0.98691999 0.99201412 0.99591123\n", + " 0.99853569 0.99983604 0.95868348 0.95868348 0.99997324 0.99997324\n", + " 0.96302279 0.96865232 0.97330978 0.97689586 0.97933587 0.98057969\n", + " 0.96858981 0.97442482 0.97924715 0.98295751 0.98548099 0.98676708\n", + " 0.97318115 0.97918057 0.98413521 0.98794575 0.99053676 0.99185713\n", + " 0.97669886 0.98282164 0.98787597 0.99176231 0.99440464 0.99575114\n", + " 0.97906958 0.98527444 0.99039535 0.99433252 0.99700938 0.9983735\n", + " 0.98024458 0.98648984 0.99164363 0.99560596 0.99829995 0.99967281]]\n", + "DEBUG:root:radec2pix: camVec Shape: (3, 96)\n", + "DEBUG:root:cartToSphere: vec: [[-0.20206559 -0.20040527 0.95864864]\n", + " [-0.20385583 -0.17383484 0.96344395]\n", + " [-0.20538208 -0.14658256 0.96764237]\n", + " [-0.20664361 -0.11875818 0.97118222]\n", + " [-0.20763916 -0.09047165 0.97401276]\n", + " [-0.20836703 -0.06183342 0.97609416]\n", + " [-0.20882548 -0.03295485 0.97739751]\n", + " [-0.20901312 -0.00394826 0.97790487]\n", + " [-0.20206559 -0.20040527 0.95864864]\n", + " [-0.17552521 -0.20216732 0.96349327]\n", + " [-0.14829587 -0.20366717 0.96774378]\n", + " [-0.12048731 -0.20490423 0.97133777]\n", + " [-0.09220941 -0.20587738 0.97422376]\n", + " [-0.06357255 -0.20658503 0.97636118]\n", + " [-0.03468805 -0.20702551 0.9777204 ]\n", + " [-0.00566819 -0.20719749 0.97828271]\n", + " [-0.20901312 -0.00394826 0.97790487]\n", + " [-0.18155278 -0.00396653 0.9833732 ]\n", + " [-0.15339945 -0.00397971 0.98815625]\n", + " [-0.12465766 -0.00398777 0.9921918 ]\n", + " [-0.09543335 -0.00399068 0.99542782]\n", + " [-0.06583567 -0.00398834 0.99782251]\n", + " [-0.03597779 -0.00398071 0.99934466]\n", + " [-0.00597667 -0.00396776 0.99997427]\n", + " [-0.00566819 -0.20719749 0.97828271]\n", + " [-0.0057335 -0.17968785 0.98370697]\n", + " [-0.00579209 -0.15149221 0.98844148]\n", + " [-0.00584377 -0.12271515 0.99242473]\n", + " [-0.00588832 -0.09346279 0.99560536]\n", + " [-0.00592547 -0.06384452 0.99794227]\n", + " [-0.00595499 -0.03397379 0.99940498]\n", + " [-0.00597667 -0.00396776 0.99997427]\n", + " [-0.20278873 -0.18891741 0.96082618]\n", + " [-0.20480442 -0.15587916 0.96631094]\n", + " [-0.20642309 -0.12192577 0.97083655]\n", + " [-0.20764263 -0.08725955 0.97430504]\n", + " [-0.20846 -0.0520839 0.97664307]\n", + " [-0.20887208 -0.01660424 0.977802 ]\n", + " [-0.1905918 -0.20111579 0.96084713]\n", + " [-0.15758562 -0.2030981 0.96639429]\n", + " [-0.12365361 -0.20468622 0.97098576]\n", + " [-0.08899797 -0.20587831 0.97452218]\n", + " [-0.053822 -0.2066715 0.9769289 ]\n", + " [-0.01833101 -0.20706282 0.9781559 ]\n", + " [-0.19713205 -0.00405653 0.98036855]\n", + " [-0.16299742 -0.00407648 0.98661807]\n", + " [-0.12792571 -0.00408858 0.99177533]\n", + " [-0.09211126 -0.00409274 0.99574031]\n", + " [-0.0557551 -0.00408883 0.9984361 ]\n", + " [-0.0190672 -0.00407674 0.99980989]\n", + " [-0.00579722 -0.19529411 0.98072759]\n", + " [-0.00587373 -0.16110378 0.98691999]\n", + " [-0.00593978 -0.1259869 0.99201412]\n", + " [-0.00599497 -0.09013809 0.99591123]\n", + " [-0.00603881 -0.05375882 0.99853569]\n", + " [-0.00607087 -0.01705956 0.99983604]\n", + " [-0.2019827 -0.20032217 0.95868348]\n", + " [-0.2019827 -0.20032217 0.95868348]\n", + " [-0.00607931 -0.00407052 0.99997324]\n", + " [-0.00607931 -0.00407052 0.99997324]\n", + " [-0.19135047 -0.18966314 0.96302279]\n", + " [-0.15820992 -0.19152627 0.96865232]\n", + " [-0.12414303 -0.19301964 0.97330978]\n", + " [-0.08935153 -0.19414112 0.97689586]\n", + " [-0.05403846 -0.19488742 0.97933587]\n", + " [-0.01840935 -0.19525515 0.98057969]\n", + " [-0.19324847 -0.15648903 0.96858981]\n", + " [-0.15977416 -0.15801419 0.97442482]\n", + " [-0.12537172 -0.15923869 0.97924715]\n", + " [-0.09024112 -0.16015951 0.98295751]\n", + " [-0.05458467 -0.16077229 0.98548099]\n", + " [-0.01860873 -0.16107281 0.98676708]\n", + " [-0.19477386 -0.1223993 0.97318115]\n", + " [-0.16103488 -0.12358469 0.97918057]\n", + " [-0.12636534 -0.12453786 0.98413521]\n", + " [-0.09096329 -0.12525528 0.98794575]\n", + " [-0.05503045 -0.12573217 0.99053676]\n", + " [-0.01877423 -0.1259641 0.99185713]\n", + " [-0.19592426 -0.08759577 0.97669886]\n", + " [-0.16198879 -0.08843791 0.98282164]\n", + " [-0.12712005 -0.08911544 0.98787597]\n", + " [-0.09151438 -0.08962502 0.99176231]\n", + " [-0.05537312 -0.0899624 0.99440464]\n", + " [-0.01890477 -0.09012369 0.99575114]\n", + " [-0.19669618 -0.05228162 0.97906958]\n", + " [-0.1626313 -0.05277638 0.98527444]\n", + " [-0.12763084 -0.05317342 0.99039535]\n", + " [-0.09188986 -0.05347043 0.99433252]\n", + " [-0.05560947 -0.05366451 0.99700938]\n", + " [-0.01899911 -0.05375307 0.9983735 ]\n", + " [-0.1970861 -0.01666249 0.98024458]\n", + " [-0.16295805 -0.01680661 0.98648984]\n", + " [-0.12789308 -0.01691947 0.99164363]\n", + " [-0.09208561 -0.01700034 0.99560596]\n", + " [-0.05573664 -0.01704833 0.99829995]\n", + " [-0.01905613 -0.01706264 0.99967281]]\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "DEBUG:root:radec2pix: lng: [224.76363845 220.45536332 215.51570213 209.8860026 203.54351435\n", + " 196.52838265 188.96791801 181.08218968 224.76363845 229.03491143\n", + " 233.94056942 239.5437183 245.87310386 252.89526206 260.48819125\n", + " 268.43297981 181.08218968 181.25158801 181.48611541 181.83225603\n", + " 182.39450621 183.46675604 186.31372901 213.57919419 268.43297981\n", + " 268.17241871 267.81044387 267.27359857 266.39502937 264.69751074\n", + " 260.05808632 213.57919419 222.97185732 217.27520841 210.56862977\n", + " 202.79405015 194.02819934 184.54515621 226.53899176 232.19179547\n", + " 238.86327993 246.62192655 255.4030874 264.94086521 181.17885048\n", + " 181.43263721 181.83058139 182.54412335 184.19430425 192.06864548\n", + " 268.29969986 267.91196198 267.3007297 266.19493375 263.59074359\n", + " 250.41122441 224.76351042 224.76351042 213.80505417 213.80505417\n", + " 224.74626573 230.44165434 237.25238818 245.28621568 254.50234803\n", + " 264.61387248 218.99991221 224.68268902 231.78595314 240.6011209\n", + " 251.24685698 263.4098378 212.14597215 217.50409402 224.58268891\n", + " 234.01197779 246.36196992 261.5227966 204.08893799 208.63236897\n", + " 215.03174908 224.40240082 238.38711901 258.15313449 194.88498621\n", + " 197.97904978 202.61753302 210.1949942 223.98030161 250.53396497\n", + " 184.83253513 185.88835579 187.53611666 190.45986395 197.00745693\n", + " 221.84090188]\n", + "DEBUG:root:radec2pix: lat: [73.46552018 74.46006435 75.38482356 76.21152097 76.9093049 77.44667894\n", + " 77.79501718 77.93329075 73.46552018 74.47061464 75.40786838 76.24896374\n", + " 76.96278751 77.51726435 77.882836 78.03729152 77.93329075 79.53725754\n", + " 81.17302607 82.8353314 84.51893715 86.21823327 87.92559185 89.58896694\n", + " 78.03729152 79.64309526 81.2801721 82.94314381 84.62648548 86.32373543\n", + " 88.02337664 89.58896694 73.90971852 75.08549251 76.12866695 76.98344771\n", + " 77.59221032 77.90513027 73.9140502 75.10405945 76.16436941 77.03880146\n", + " 77.66866011 78.00228726 78.62826218 80.61612002 82.6464832 84.70969248\n", + " 86.79521862 88.88276726 78.73306906 80.72281674 82.75416596 84.81699212\n", + " 86.8989604 88.96245616 73.47253535 73.47253535 89.58080757 89.58080757\n", + " 74.37024695 75.61594145 76.73264296 77.65979897 78.33198598 78.68977841\n", + " 75.6015309 77.01395406 78.30687785 79.40690571 80.22463497 80.66862571\n", + " 76.70056783 78.28807161 79.78047832 81.09477207 82.11138684 82.68319612\n", + " 77.60709471 79.36463985 81.06898343 82.64065749 83.93606674 84.71642587\n", + " 78.25678532 80.15517545 82.05257334 83.89707817 85.56772804 86.7316854\n", + " 78.59229273 80.57116606 82.58776264 84.62685282 86.65858342 88.53428852]\n", + "DEBUG:root:optics_fp: rtanth: [44.45075806 41.48084711 38.78057469 36.40998188 34.43721967 32.93385687\n", + " 31.96618947 31.58349445 44.45075806 41.44972526 38.71396477 36.3034974\n", + " 34.28699884 32.73735124 31.72304454 31.29617316 31.58349445 27.19792187\n", + " 22.81267843 18.42799914 14.04441236 9.66340498 5.29138777 1.04770432\n", + " 31.29617316 26.91173053 22.52806107 18.1457252 13.76599657 9.39252316\n", + " 5.04161008 1.04770432 43.11518489 39.64868584 36.64587509 34.22900504\n", + " 32.52894346 31.66136908 43.1022353 39.59467891 36.5441823 34.07372409\n", + " 32.31660315 31.3928297 29.67163304 24.29694871 18.92301187 13.55071187\n", + " 8.18327305 2.84831098 29.38491572 24.01192188 18.64066162 13.27323964\n", + " 7.91746596 2.64507015 44.42954508 44.42954508 1.06850345 1.06850345\n", + " 41.74610616 38.11395137 34.93439495 32.34120227 30.48438174 29.50329554\n", + " 38.15542557 34.14340946 30.55341342 27.55090716 25.34554499 24.15664647\n", + " 35.0248251 30.60513491 26.5407789 23.02073756 20.3297448 18.82672147\n", + " 32.48758221 27.66548224 23.08933887 18.93829409 15.55645039 13.53329473\n", + " 30.69121006 25.53206385 20.48474911 15.65778911 11.3362483 8.34610347\n", + " 29.77012771 24.4171336 19.07708245 13.76504589 8.53350187 3.73732148]\n", + "DEBUG:root:optics_fp: cphi: [-0.71001777 -0.76091169 -0.81395634 -0.8670185 -0.91675697 -0.95867892\n", + " -0.98777578 -0.99982163 -0.71001777 -0.65559905 -0.5886241 -0.50688077\n", + " -0.40875892 -0.29411936 -0.16525088 -0.02734625 -0.99982163 -0.99976142\n", + " -0.99966364 -0.99948872 -0.99912684 -0.99817005 -0.99393463 -0.83312214\n", + " -0.02734625 -0.0318919 -0.03820566 -0.04756673 -0.0628771 -0.09241385\n", + " -0.17264969 -0.83312214 -0.7316886 -0.79573561 -0.86102061 -0.92190339\n", + " -0.97017654 -0.99685519 -0.68786077 -0.61302019 -0.51708199 -0.39679665\n", + " -0.25201721 -0.08818387 -0.99978835 -0.99968741 -0.99948965 -0.99901433\n", + " -0.99732175 -0.9778978 -0.02967148 -0.03643507 -0.04709373 -0.06636213\n", + " -0.11162948 -0.33526701 -0.71001935 -0.71001935 -0.83093539 -0.83093539\n", + " -0.71023126 -0.63686365 -0.54093942 -0.41808563 -0.26719889 -0.09386726\n", + " -0.77714693 -0.71101196 -0.61860104 -0.49088671 -0.32149141 -0.11476658\n", + " -0.84669527 -0.79330984 -0.71223816 -0.58761611 -0.40095718 -0.14741589\n", + " -0.912913 -0.8777124 -0.81883408 -0.71444336 -0.52417737 -0.20529666\n", + " -0.96644343 -0.95116944 -0.92309258 -0.86431875 -0.71957858 -0.333248\n", + " -0.99644518 -0.99472369 -0.99136239 -0.98338232 -0.9562667 -0.74499999]\n", + "DEBUG:root:optics_fp: sphi: [-0.70418375 -0.64885545 -0.58092605 -0.49827594 -0.39944543 -0.28449028\n", + " -0.1558814 -0.01888665 -0.70418375 -0.75510919 -0.80840687 -0.86201618\n", + " -0.9126424 -0.9557687 -0.98625156 -0.99962602 -0.01888665 -0.02184259\n", + " -0.0259347 -0.03197345 -0.04177985 -0.06046939 -0.10997248 -0.55308905\n", + " -0.99962602 -0.99949132 -0.9992699 -0.99886806 -0.99802128 -0.99572068\n", + " -0.98498329 -0.55308905 -0.68163905 -0.60564415 -0.50857007 -0.38741985\n", + " -0.24239942 -0.07924477 -0.72584265 -0.79006724 -0.85593587 -0.91790654\n", + " -0.96772275 -0.99610421 -0.02057337 -0.02500163 -0.03194424 -0.04438874\n", + " -0.07313905 -0.20908345 -0.9995597 -0.99933602 -0.99889047 -0.9977956\n", + " -0.9937499 -0.94212315 -0.70418217 -0.70418217 -0.55636892 -0.55636892\n", + " -0.70396844 -0.77097645 -0.84106156 -0.90840762 -0.9636414 -0.99558472\n", + " -0.6293192 -0.70317991 -0.78570526 -0.87122341 -0.9469125 -0.99339249\n", + " -0.53207811 -0.60881812 -0.70193789 -0.80913985 -0.9160968 -0.98907459\n", + " -0.40815421 -0.47918779 -0.57403026 -0.69969328 -0.85160911 -0.97869979\n", + " -0.25687956 -0.30866922 -0.38457782 -0.50294443 -0.69441102 -0.94283921\n", + " -0.08424368 -0.10259038 -0.13115113 -0.1815467 -0.29249616 -0.66706448]\n", + "DEBUG:root:optics_fp: xyfp: [[31.56082832 31.30150168]\n", + " [31.56326156 26.91507379]\n", + " [31.56569479 22.52864589]\n", + " [31.56812802 18.14221799]\n", + " [31.57056124 13.75579009]\n", + " [31.57299448 9.3693622 ]\n", + " [31.57542771 4.9829343 ]\n", + " [31.57786094 0.59650641]\n", + " [31.56082832 31.30150168]\n", + " [27.17440042 31.29906845]\n", + " [22.78797253 31.29663522]\n", + " [18.40154463 31.29420199]\n", + " [14.01511674 31.29176876]\n", + " [ 9.62868884 31.28933553]\n", + " [ 5.24226094 31.2869023 ]\n", + " [ 0.85583305 31.28446906]\n", + " [31.57786094 0.59650641]\n", + " [27.19143304 0.59407317]\n", + " [22.80500514 0.59163994]\n", + " [18.41857725 0.58920671]\n", + " [14.03214935 0.58677348]\n", + " [ 9.64572145 0.58434025]\n", + " [ 5.25929356 0.58190702]\n", + " [ 0.87286566 0.57947379]\n", + " [ 0.85583305 31.28446906]\n", + " [ 0.85826628 26.89804117]\n", + " [ 0.86069951 22.51161327]\n", + " [ 0.86313274 18.12518537]\n", + " [ 0.86556597 13.73875749]\n", + " [ 0.8679992 9.35232959]\n", + " [ 0.87043243 4.96590169]\n", + " [ 0.87286566 0.57947379]\n", + " [31.54688923 29.38899366]\n", + " [31.54987139 24.01299448]\n", + " [31.55285355 18.63699531]\n", + " [31.55583572 13.26099614]\n", + " [31.55881788 7.88499696]\n", + " [31.56180004 2.50899779]\n", + " [29.64833694 31.28544078]\n", + " [24.27233777 31.28245862]\n", + " [18.89633859 31.27947646]\n", + " [13.52033942 31.27649429]\n", + " [ 8.14434025 31.27351213]\n", + " [ 2.76834107 31.27052997]\n", + " [29.66535291 0.61044551]\n", + " [24.28935374 0.60746334]\n", + " [18.91335456 0.60448118]\n", + " [13.5373554 0.60149901]\n", + " [ 8.16135622 0.59851685]\n", + " [ 2.78535704 0.59553469]\n", + " [ 0.87189394 29.37197768]\n", + " [ 0.87487611 23.9959785 ]\n", + " [ 0.87785827 18.61997934]\n", + " [ 0.88084043 13.24398017]\n", + " [ 0.8838226 7.86798099]\n", + " [ 0.88680476 2.49198182]\n", + " [31.54583664 31.28649336]\n", + " [31.54583664 31.28649336]\n", + " [ 0.88785734 0.59448211]\n", + " [ 0.88785734 0.59448211]\n", + " [29.64938952 29.38794108]\n", + " [24.27339034 29.38495892]\n", + " [18.89739117 29.38197675]\n", + " [13.521392 29.37899458]\n", + " [ 8.14539282 29.37601242]\n", + " [ 2.76939365 29.37303026]\n", + " [29.65237168 24.01194191]\n", + " [24.2763725 24.00895974]\n", + " [18.90037333 24.00597758]\n", + " [13.52437416 24.00299542]\n", + " [ 8.14837499 24.00001325]\n", + " [ 2.77237582 23.99703109]\n", + " [29.65535384 18.63594273]\n", + " [24.27935467 18.63296057]\n", + " [18.9033555 18.62997841]\n", + " [13.52735632 18.62699624]\n", + " [ 8.15135715 18.62401408]\n", + " [ 2.77535798 18.62103191]\n", + " [29.65833601 13.25994356]\n", + " [24.28233684 13.2569614 ]\n", + " [18.90633766 13.25397923]\n", + " [13.53033849 13.25099707]\n", + " [ 8.15433932 13.24801491]\n", + " [ 2.77834014 13.24503274]\n", + " [29.66131817 7.88394439]\n", + " [24.285319 7.88096222]\n", + " [18.90931983 7.87798006]\n", + " [13.53332065 7.8749979 ]\n", + " [ 8.15732148 7.87201573]\n", + " [ 2.78132231 7.86903357]\n", + " [29.66430034 2.50794521]\n", + " [24.28830116 2.50496305]\n", + " [18.91230199 2.50198089]\n", + " [13.53630281 2.49899872]\n", + " [ 8.16030364 2.49601656]\n", + " [ 2.78430447 2.49303439]]\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "DEBUG:root:optics_fp: xyfp shape: (96, 2)\n", + "DEBUG:root:make_az_asym: xyp: [[31.56082832 31.30150168]\n", + " [31.56326156 26.91507379]\n", + " [31.56569479 22.52864589]\n", + " [31.56812802 18.14221799]\n", + " [31.57056124 13.75579009]\n", + " [31.57299448 9.3693622 ]\n", + " [31.57542771 4.9829343 ]\n", + " [31.57786094 0.59650641]\n", + " [31.56082832 31.30150168]\n", + " [27.17440042 31.29906845]\n", + " [22.78797253 31.29663522]\n", + " [18.40154463 31.29420199]\n", + " [14.01511674 31.29176876]\n", + " [ 9.62868884 31.28933553]\n", + " [ 5.24226094 31.2869023 ]\n", + " [ 0.85583305 31.28446906]\n", + " [31.57786094 0.59650641]\n", + " [27.19143304 0.59407317]\n", + " [22.80500514 0.59163994]\n", + " [18.41857725 0.58920671]\n", + " [14.03214935 0.58677348]\n", + " [ 9.64572145 0.58434025]\n", + " [ 5.25929356 0.58190702]\n", + " [ 0.87286566 0.57947379]\n", + " [ 0.85583305 31.28446906]\n", + " [ 0.85826628 26.89804117]\n", + " [ 0.86069951 22.51161327]\n", + " [ 0.86313274 18.12518537]\n", + " [ 0.86556597 13.73875749]\n", + " [ 0.8679992 9.35232959]\n", + " [ 0.87043243 4.96590169]\n", + " [ 0.87286566 0.57947379]\n", + " [31.54688923 29.38899366]\n", + " [31.54987139 24.01299448]\n", + " [31.55285355 18.63699531]\n", + " [31.55583572 13.26099614]\n", + " [31.55881788 7.88499696]\n", + " [31.56180004 2.50899779]\n", + " [29.64833694 31.28544078]\n", + " [24.27233777 31.28245862]\n", + " [18.89633859 31.27947646]\n", + " [13.52033942 31.27649429]\n", + " [ 8.14434025 31.27351213]\n", + " [ 2.76834107 31.27052997]\n", + " [29.66535291 0.61044551]\n", + " [24.28935374 0.60746334]\n", + " [18.91335456 0.60448118]\n", + " [13.5373554 0.60149901]\n", + " [ 8.16135622 0.59851685]\n", + " [ 2.78535704 0.59553469]\n", + " [ 0.87189394 29.37197768]\n", + " [ 0.87487611 23.9959785 ]\n", + " [ 0.87785827 18.61997934]\n", + " [ 0.88084043 13.24398017]\n", + " [ 0.8838226 7.86798099]\n", + " [ 0.88680476 2.49198182]\n", + " [31.54583664 31.28649336]\n", + " [31.54583664 31.28649336]\n", + " [ 0.88785734 0.59448211]\n", + " [ 0.88785734 0.59448211]\n", + " [29.64938952 29.38794108]\n", + " [24.27339034 29.38495892]\n", + " [18.89739117 29.38197675]\n", + " [13.521392 29.37899458]\n", + " [ 8.14539282 29.37601242]\n", + " [ 2.76939365 29.37303026]\n", + " [29.65237168 24.01194191]\n", + " [24.2763725 24.00895974]\n", + " [18.90037333 24.00597758]\n", + " [13.52437416 24.00299542]\n", + " [ 8.14837499 24.00001325]\n", + " [ 2.77237582 23.99703109]\n", + " [29.65535384 18.63594273]\n", + " [24.27935467 18.63296057]\n", + " [18.9033555 18.62997841]\n", + " [13.52735632 18.62699624]\n", + " [ 8.15135715 18.62401408]\n", + " [ 2.77535798 18.62103191]\n", + " [29.65833601 13.25994356]\n", + " [24.28233684 13.2569614 ]\n", + " [18.90633766 13.25397923]\n", + " [13.53033849 13.25099707]\n", + " [ 8.15433932 13.24801491]\n", + " [ 2.77834014 13.24503274]\n", + " [29.66131817 7.88394439]\n", + " [24.285319 7.88096222]\n", + " [18.90931983 7.87798006]\n", + " [13.53332065 7.8749979 ]\n", + " [ 8.15732148 7.87201573]\n", + " [ 2.78132231 7.86903357]\n", + " [29.66430034 2.50794521]\n", + " [24.28830116 2.50496305]\n", + " [18.91230199 2.50198089]\n", + " [13.53630281 2.49899872]\n", + " [ 8.16030364 2.49601656]\n", + " [ 2.78430447 2.49303439]]\n", + "DEBUG:root:make_az_asym: xyp: shape: (96, 2)\n", + "DEBUG:root:radec2pix: xyfp: [[31.56082832 31.30150168]\n", + " [31.56326156 26.91507379]\n", + " [31.56569479 22.52864589]\n", + " [31.56812802 18.14221799]\n", + " [31.57056124 13.75579009]\n", + " [31.57299448 9.3693622 ]\n", + " [31.57542771 4.9829343 ]\n", + " [31.57786094 0.59650641]\n", + " [31.56082832 31.30150168]\n", + " [27.17440042 31.29906845]\n", + " [22.78797253 31.29663522]\n", + " [18.40154463 31.29420199]\n", + " [14.01511674 31.29176876]\n", + " [ 9.62868884 31.28933553]\n", + " [ 5.24226094 31.2869023 ]\n", + " [ 0.85583305 31.28446906]\n", + " [31.57786094 0.59650641]\n", + " [27.19143304 0.59407317]\n", + " [22.80500514 0.59163994]\n", + " [18.41857725 0.58920671]\n", + " [14.03214935 0.58677348]\n", + " [ 9.64572145 0.58434025]\n", + " [ 5.25929356 0.58190702]\n", + " [ 0.87286566 0.57947379]\n", + " [ 0.85583305 31.28446906]\n", + " [ 0.85826628 26.89804117]\n", + " [ 0.86069951 22.51161327]\n", + " [ 0.86313274 18.12518537]\n", + " [ 0.86556597 13.73875749]\n", + " [ 0.8679992 9.35232959]\n", + " [ 0.87043243 4.96590169]\n", + " [ 0.87286566 0.57947379]\n", + " [31.54688923 29.38899366]\n", + " [31.54987139 24.01299448]\n", + " [31.55285355 18.63699531]\n", + " [31.55583572 13.26099614]\n", + " [31.55881788 7.88499696]\n", + " [31.56180004 2.50899779]\n", + " [29.64833694 31.28544078]\n", + " [24.27233777 31.28245862]\n", + " [18.89633859 31.27947646]\n", + " [13.52033942 31.27649429]\n", + " [ 8.14434025 31.27351213]\n", + " [ 2.76834107 31.27052997]\n", + " [29.66535291 0.61044551]\n", + " [24.28935374 0.60746334]\n", + " [18.91335456 0.60448118]\n", + " [13.5373554 0.60149901]\n", + " [ 8.16135622 0.59851685]\n", + " [ 2.78535704 0.59553469]\n", + " [ 0.87189394 29.37197768]\n", + " [ 0.87487611 23.9959785 ]\n", + " [ 0.87785827 18.61997934]\n", + " [ 0.88084043 13.24398017]\n", + " [ 0.8838226 7.86798099]\n", + " [ 0.88680476 2.49198182]\n", + " [31.54583664 31.28649336]\n", + " [31.54583664 31.28649336]\n", + " [ 0.88785734 0.59448211]\n", + " [ 0.88785734 0.59448211]\n", + " [29.64938952 29.38794108]\n", + " [24.27339034 29.38495892]\n", + " [18.89739117 29.38197675]\n", + " [13.521392 29.37899458]\n", + " [ 8.14539282 29.37601242]\n", + " [ 2.76939365 29.37303026]\n", + " [29.65237168 24.01194191]\n", + " [24.2763725 24.00895974]\n", + " [18.90037333 24.00597758]\n", + " [13.52437416 24.00299542]\n", + " [ 8.14837499 24.00001325]\n", + " [ 2.77237582 23.99703109]\n", + " [29.65535384 18.63594273]\n", + " [24.27935467 18.63296057]\n", + " [18.9033555 18.62997841]\n", + " [13.52735632 18.62699624]\n", + " [ 8.15135715 18.62401408]\n", + " [ 2.77535798 18.62103191]\n", + " [29.65833601 13.25994356]\n", + " [24.28233684 13.2569614 ]\n", + " [18.90633766 13.25397923]\n", + " [13.53033849 13.25099707]\n", + " [ 8.15433932 13.24801491]\n", + " [ 2.77834014 13.24503274]\n", + " [29.66131817 7.88394439]\n", + " [24.285319 7.88096222]\n", + " [18.90931983 7.87798006]\n", + " [13.53332065 7.8749979 ]\n", + " [ 8.15732148 7.87201573]\n", + " [ 2.78132231 7.86903357]\n", + " [29.66430034 2.50794521]\n", + " [24.28830116 2.50496305]\n", + " [18.91230199 2.50198089]\n", + " [13.53630281 2.49899872]\n", + " [ 8.16030364 2.49601656]\n", + " [ 2.78430447 2.49303439]]\n", + "DEBUG:root:radec2pix: xyfp Shape: (96, 2)\n", + "DEBUG:root:mm_to_pix: fitpx: [[0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]]\n", + "DEBUG:root:mm_to_pix: fitpx.shape: (96, 2)\n", + "DEBUG:root:radec2pix: xyfp: [[31.56082832 31.30150168]\n", + " [31.56326156 26.91507379]\n", + " [31.56569479 22.52864589]\n", + " [31.56812802 18.14221799]\n", + " [31.57056124 13.75579009]\n", + " [31.57299448 9.3693622 ]\n", + " [31.57542771 4.9829343 ]\n", + " [31.57786094 0.59650641]\n", + " [31.56082832 31.30150168]\n", + " [27.17440042 31.29906845]\n", + " [22.78797253 31.29663522]\n", + " [18.40154463 31.29420199]\n", + " [14.01511674 31.29176876]\n", + " [ 9.62868884 31.28933553]\n", + " [ 5.24226094 31.2869023 ]\n", + " [ 0.85583305 31.28446906]\n", + " [31.57786094 0.59650641]\n", + " [27.19143304 0.59407317]\n", + " [22.80500514 0.59163994]\n", + " [18.41857725 0.58920671]\n", + " [14.03214935 0.58677348]\n", + " [ 9.64572145 0.58434025]\n", + " [ 5.25929356 0.58190702]\n", + " [ 0.87286566 0.57947379]\n", + " [ 0.85583305 31.28446906]\n", + " [ 0.85826628 26.89804117]\n", + " [ 0.86069951 22.51161327]\n", + " [ 0.86313274 18.12518537]\n", + " [ 0.86556597 13.73875749]\n", + " [ 0.8679992 9.35232959]\n", + " [ 0.87043243 4.96590169]\n", + " [ 0.87286566 0.57947379]\n", + " [31.54688923 29.38899366]\n", + " [31.54987139 24.01299448]\n", + " [31.55285355 18.63699531]\n", + " [31.55583572 13.26099614]\n", + " [31.55881788 7.88499696]\n", + " [31.56180004 2.50899779]\n", + " [29.64833694 31.28544078]\n", + " [24.27233777 31.28245862]\n", + " [18.89633859 31.27947646]\n", + " [13.52033942 31.27649429]\n", + " [ 8.14434025 31.27351213]\n", + " [ 2.76834107 31.27052997]\n", + " [29.66535291 0.61044551]\n", + " [24.28935374 0.60746334]\n", + " [18.91335456 0.60448118]\n", + " [13.5373554 0.60149901]\n", + " [ 8.16135622 0.59851685]\n", + " [ 2.78535704 0.59553469]\n", + " [ 0.87189394 29.37197768]\n", + " [ 0.87487611 23.9959785 ]\n", + " [ 0.87785827 18.61997934]\n", + " [ 0.88084043 13.24398017]\n", + " [ 0.8838226 7.86798099]\n", + " [ 0.88680476 2.49198182]\n", + " [31.54583664 31.28649336]\n", + " [31.54583664 31.28649336]\n", + " [ 0.88785734 0.59448211]\n", + " [ 0.88785734 0.59448211]\n", + " [29.64938952 29.38794108]\n", + " [24.27339034 29.38495892]\n", + " [18.89739117 29.38197675]\n", + " [13.521392 29.37899458]\n", + " [ 8.14539282 29.37601242]\n", + " [ 2.76939365 29.37303026]\n", + " [29.65237168 24.01194191]\n", + " [24.2763725 24.00895974]\n", + " [18.90037333 24.00597758]\n", + " [13.52437416 24.00299542]\n", + " [ 8.14837499 24.00001325]\n", + " [ 2.77237582 23.99703109]\n", + " [29.65535384 18.63594273]\n", + " [24.27935467 18.63296057]\n", + " [18.9033555 18.62997841]\n", + " [13.52735632 18.62699624]\n", + " [ 8.15135715 18.62401408]\n", + " [ 2.77535798 18.62103191]\n", + " [29.65833601 13.25994356]\n", + " [24.28233684 13.2569614 ]\n", + " [18.90633766 13.25397923]\n", + " [13.53033849 13.25099707]\n", + " [ 8.15433932 13.24801491]\n", + " [ 2.77834014 13.24503274]\n", + " [29.66131817 7.88394439]\n", + " [24.285319 7.88096222]\n", + " [18.90931983 7.87798006]\n", + " [13.53332065 7.8749979 ]\n", + " [ 8.15732148 7.87201573]\n", + " [ 2.78132231 7.86903357]\n", + " [29.66430034 2.50794521]\n", + " [24.28830116 2.50496305]\n", + " [18.91230199 2.50198089]\n", + " [13.53630281 2.49899872]\n", + " [ 8.16030364 2.49601656]\n", + " [ 2.78430447 2.49303439]]\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "DEBUG:root:radec2pix: ccdpx: [[ 4.98890058e-01 5.01108929e-01]\n", + " [ 1.74459054e-01 2.92929500e+02]\n", + " [-1.49971568e-01 5.85357892e+02]\n", + " [-4.74402408e-01 8.77786283e+02]\n", + " [-7.98832678e-01 1.17021467e+03]\n", + " [-1.12326365e+00 1.46264307e+03]\n", + " [-1.44769451e+00 1.75507146e+03]\n", + " [-1.77212523e+00 2.04749985e+03]\n", + " [ 4.98890058e-01 5.01108929e-01]\n", + " [ 2.92927282e+02 8.25539663e-01]\n", + " [ 5.85355673e+02 1.14997044e+00]\n", + " [ 8.77784064e+02 1.47440091e+00]\n", + " [ 1.17021246e+03 1.79883149e+00]\n", + " [ 1.46264085e+03 2.12326245e+00]\n", + " [ 1.75506924e+03 2.44769307e+00]\n", + " [ 2.04749763e+03 2.77212405e+00]\n", + " [-1.77212523e+00 2.04749985e+03]\n", + " [ 2.90656266e+02 2.04782428e+03]\n", + " [ 5.83084658e+02 2.04814871e+03]\n", + " [ 8.75513049e+02 2.04847314e+03]\n", + " [ 1.16794144e+03 2.04879757e+03]\n", + " [ 1.46036983e+03 2.04912200e+03]\n", + " [ 1.75279822e+03 2.04944643e+03]\n", + " [ 2.04522662e+03 2.04977086e+03]\n", + " [ 2.04749763e+03 2.77212405e+00]\n", + " [ 2.04717320e+03 2.95200515e+02]\n", + " [ 2.04684877e+03 5.87628907e+02]\n", + " [ 2.04652434e+03 8.80057298e+02]\n", + " [ 2.04619991e+03 1.17248569e+03]\n", + " [ 2.04587548e+03 1.46491408e+03]\n", + " [ 2.04555105e+03 1.75734247e+03]\n", + " [ 2.04522662e+03 2.04977086e+03]\n", + " [ 1.35743614e+00 1.28002140e+02]\n", + " [ 9.59814325e-01 4.86401919e+02]\n", + " [ 5.62192901e-01 8.44801699e+02]\n", + " [ 1.64570786e-01 1.20320148e+03]\n", + " [-2.33050706e-01 1.56160126e+03]\n", + " [-6.30672737e-01 1.92000104e+03]\n", + " [ 1.27997702e+02 1.64256134e+00]\n", + " [ 4.86397481e+02 2.04018296e+00]\n", + " [ 8.44797261e+02 2.43780475e+00]\n", + " [ 1.20319704e+03 2.83542687e+00]\n", + " [ 1.56159682e+03 3.23304844e+00]\n", + " [ 1.91999660e+03 3.63067025e+00]\n", + " [ 1.25728906e+02 2.04664130e+03]\n", + " [ 4.84128686e+02 2.04703892e+03]\n", + " [ 8.42528465e+02 2.04743655e+03]\n", + " [ 1.20092824e+03 2.04783417e+03]\n", + " [ 1.55932802e+03 2.04823179e+03]\n", + " [ 1.91772780e+03 2.04862941e+03]\n", + " [ 2.04635618e+03 1.30270936e+02]\n", + " [ 2.04595856e+03 4.88670716e+02]\n", + " [ 2.04556093e+03 8.47070495e+02]\n", + " [ 2.04516331e+03 1.20547027e+03]\n", + " [ 2.04476569e+03 1.56387005e+03]\n", + " [ 2.04436807e+03 1.92226983e+03]\n", + " [ 1.49778017e+00 1.50221791e+00]\n", + " [ 1.49778017e+00 1.50221791e+00]\n", + " [ 2.04422773e+03 2.04876976e+03]\n", + " [ 2.04422773e+03 2.04876976e+03]\n", + " [ 1.27857358e+02 1.28142483e+02]\n", + " [ 4.86257138e+02 1.28540105e+02]\n", + " [ 8.44656917e+02 1.28937727e+02]\n", + " [ 1.20305670e+03 1.29335349e+02]\n", + " [ 1.56145648e+03 1.29732971e+02]\n", + " [ 1.91985626e+03 1.30130592e+02]\n", + " [ 1.27459736e+02 4.86542263e+02]\n", + " [ 4.85859516e+02 4.86939885e+02]\n", + " [ 8.44259296e+02 4.87337506e+02]\n", + " [ 1.20265907e+03 4.87735128e+02]\n", + " [ 1.56105885e+03 4.88132750e+02]\n", + " [ 1.91945863e+03 4.88530372e+02]\n", + " [ 1.27062115e+02 8.44942042e+02]\n", + " [ 4.85461894e+02 8.45339664e+02]\n", + " [ 8.43861674e+02 8.45737286e+02]\n", + " [ 1.20226145e+03 8.46134908e+02]\n", + " [ 1.56066123e+03 8.46532529e+02]\n", + " [ 1.91906101e+03 8.46930151e+02]\n", + " [ 1.26664493e+02 1.20334182e+03]\n", + " [ 4.85064272e+02 1.20373944e+03]\n", + " [ 8.43464052e+02 1.20413707e+03]\n", + " [ 1.20186383e+03 1.20453469e+03]\n", + " [ 1.56026361e+03 1.20493231e+03]\n", + " [ 1.91866339e+03 1.20532993e+03]\n", + " [ 1.26266871e+02 1.56174160e+03]\n", + " [ 4.84666651e+02 1.56213922e+03]\n", + " [ 8.43066430e+02 1.56253684e+03]\n", + " [ 1.20146621e+03 1.56293447e+03]\n", + " [ 1.55986599e+03 1.56333209e+03]\n", + " [ 1.91826577e+03 1.56372971e+03]\n", + " [ 1.25869249e+02 1.92014138e+03]\n", + " [ 4.84269029e+02 1.92053900e+03]\n", + " [ 8.42668808e+02 1.92093662e+03]\n", + " [ 1.20106859e+03 1.92133425e+03]\n", + " [ 1.55946837e+03 1.92173187e+03]\n", + " [ 1.91786815e+03 1.92212949e+03]]\n", + "DEBUG:root:radec2pix: fitpx: [[4226.50110994 4154.49889107]\n", + " [4226.82554095 3862.07049987]\n", + " [4227.14997157 3569.64210832]\n", + " [4227.47440241 3277.21371692]\n", + " [4227.79883268 2984.78532523]\n", + " [4228.12326365 2692.35693388]\n", + " [4228.44769451 2399.92854244]\n", + " [4228.77212523 2107.50015096]\n", + " [4226.50110994 4154.49889107]\n", + " [3934.07271848 4154.17446034]\n", + " [3641.64432699 4153.85002956]\n", + " [3349.2159357 4153.52559909]\n", + " [3056.78754429 4153.20116851]\n", + " [2764.35915273 4152.87673755]\n", + " [2471.93076129 4152.55230693]\n", + " [2179.50236982 4152.22787595]\n", + " [4228.77212523 2107.50015096]\n", + " [3936.34373365 2107.17572024]\n", + " [3643.91534187 2106.85128951]\n", + " [3351.48695079 2106.52685881]\n", + " [3059.05855903 2106.20242808]\n", + " [2766.63016753 2105.87799736]\n", + " [2474.2017762 2105.55356665]\n", + " [2181.77338477 2105.2291359 ]\n", + " [2179.50236982 4152.22787595]\n", + " [2179.82680054 3859.79948485]\n", + " [2180.15123124 3567.37109283]\n", + " [2180.47566196 3274.94270152]\n", + " [2180.80009271 2982.51431067]\n", + " [2181.12452342 2690.08591907]\n", + " [2181.44895414 2397.6575275 ]\n", + " [2181.77338477 2105.2291359 ]\n", + " [4225.64256386 4026.99786033]\n", + " [4226.04018568 3668.59808091]\n", + " [4226.4378071 3310.19830124]\n", + " [4226.83542921 2951.79852198]\n", + " [4227.23305071 2593.39874245]\n", + " [4227.63067274 2234.99896306]\n", + " [4099.00229789 4153.35743866]\n", + " [3740.60251859 4152.95981704]\n", + " [3382.20273913 4152.56219525]\n", + " [3023.80295954 4152.16457313]\n", + " [2665.40318021 4151.76695156]\n", + " [2307.00340078 4151.36932975]\n", + " [4101.27109426 2108.35869728]\n", + " [3742.87131449 2107.96107549]\n", + " [3384.47153488 2107.56345371]\n", + " [3026.07175592 2107.16583195]\n", + " [2667.67197644 2106.76821017]\n", + " [2309.27219668 2106.37058833]\n", + " [2180.64382226 4024.72906381]\n", + " [2181.04144403 3666.32928421]\n", + " [2181.43906583 3307.92950525]\n", + " [2181.83668762 2949.52972603]\n", + " [2182.23430935 2591.1299461 ]\n", + " [2182.63193123 2232.73016711]\n", + " [4225.50221983 4153.49778209]\n", + " [4225.50221983 4153.49778209]\n", + " [2182.77227475 2106.23024474]\n", + " [2182.77227475 2106.23024474]\n", + " [4099.14264183 4026.85751684]\n", + " [3740.74286224 4026.45989493]\n", + " [3382.34308255 4026.06227278]\n", + " [3023.94330321 4025.66465109]\n", + " [2665.5435238 4025.26702928]\n", + " [2307.14374442 4024.86940777]\n", + " [4099.54026353 3668.4577373 ]\n", + " [3741.1404837 3668.06011516]\n", + " [3382.74070444 3667.66249353]\n", + " [3024.34092514 3667.26487197]\n", + " [2665.94114555 3666.86724981]\n", + " [2307.5413662 3666.46962834]\n", + " [4099.93788516 3310.05795774]\n", + " [3741.53810583 3309.66033604]\n", + " [3383.13832645 3309.26271434]\n", + " [3024.73854668 3308.86509217]\n", + " [2666.33876745 3308.46747071]\n", + " [2307.93898793 3308.06984851]\n", + " [4100.33550686 2951.65817827]\n", + " [3741.93572772 2951.26055664]\n", + " [3383.53594828 2950.8629349 ]\n", + " [3025.13616882 2950.46531316]\n", + " [2666.73638935 2950.06769146]\n", + " [2308.33660973 2949.67006931]\n", + " [4100.73312867 2593.25839885]\n", + " [3742.33334945 2592.86077714]\n", + " [3383.93357004 2592.46315539]\n", + " [3025.53379057 2592.06553363]\n", + " [2667.13401105 2591.66791183]\n", + " [2308.73423152 2591.27028995]\n", + " [4101.13075069 2234.85861944]\n", + " [3742.73097084 2234.46099763]\n", + " [3384.33119164 2234.06337587]\n", + " [3025.93141203 2233.66575407]\n", + " [2667.53163276 2233.26813232]\n", + " [2309.13185317 2232.87051041]]\n", + "DEBUG:root:fitpix2pix: ccdpx: shape: (96, 2)\n", + "DEBUG:root:fitpix2pix: visCut: True\n", + "DEBUG:root:radec2pix: curVec: [[ 2.77127703e-01 4.28142141e-01 -8.60171229e-01]\n", + " [ 2.58297384e-01 4.47130058e-01 -8.56362757e-01]\n", + " [ 2.38780950e-01 4.66087013e-01 -8.51907597e-01]\n", + " [ 2.18661258e-01 4.84921266e-01 -8.46781330e-01]\n", + " [ 1.98020910e-01 5.03545283e-01 -8.40969599e-01]\n", + " [ 1.76942502e-01 5.21875587e-01 -8.34468227e-01]\n", + " [ 1.55509094e-01 5.39832788e-01 -8.27283194e-01]\n", + " [ 1.33804546e-01 5.57341847e-01 -8.19430539e-01]\n", + " [ 2.77127703e-01 4.28142141e-01 -8.60171229e-01]\n", + " [ 2.61067641e-01 4.11049433e-01 -8.73431194e-01]\n", + " [ 2.44351957e-01 3.93381819e-01 -8.86308561e-01]\n", + " [ 2.27052985e-01 3.75187712e-01 -8.98710811e-01]\n", + " [ 2.09242658e-01 3.56520508e-01 -9.10555126e-01]\n", + " [ 1.90992732e-01 3.37438838e-01 -9.21768304e-01]\n", + " [ 1.72375296e-01 3.18006642e-01 -9.32286723e-01]\n", + " [ 1.53463212e-01 2.98293003e-01 -9.42056435e-01]\n", + " [ 1.33804546e-01 5.57341847e-01 -8.19430539e-01]\n", + " [ 1.15789628e-01 5.40942677e-01 -8.33050888e-01]\n", + " [ 9.73114930e-02 5.23775277e-01 -8.46280056e-01]\n", + " [ 7.84394534e-02 5.05884299e-01 -8.59027548e-01]\n", + " [ 5.92433980e-02 4.87319482e-01 -8.71211766e-01]\n", + " [ 3.97950582e-02 4.68136935e-01 -8.82759403e-01]\n", + " [ 2.01686980e-02 4.48399966e-01 -8.93605446e-01]\n", + " [ 4.41045844e-04 4.28179220e-01 -9.03693732e-01]\n", + " [ 1.53463212e-01 2.98293003e-01 -9.42056435e-01]\n", + " [ 1.32755664e-01 3.16953718e-01 -9.39103974e-01]\n", + " [ 1.11529080e-01 3.35721477e-01 -9.35335423e-01]\n", + " [ 8.98626931e-02 3.54508031e-01 -9.30724853e-01]\n", + " [ 6.78367045e-02 3.73228487e-01 -9.25256007e-01]\n", + " [ 4.55336436e-02 3.91800330e-01 -9.18922842e-01]\n", + " [ 2.30390111e-02 4.10143167e-01 -9.11730106e-01]\n", + " [ 4.41045844e-04 4.28179220e-01 -9.03693732e-01]\n", + " [ 2.68953012e-01 4.36361372e-01 -8.58634399e-01]\n", + " [ 2.45401182e-01 4.59624264e-01 -8.53536054e-01]\n", + " [ 2.20901235e-01 4.82749103e-01 -8.47440823e-01]\n", + " [ 1.95605349e-01 5.05573003e-01 -8.40318087e-01]\n", + " [ 1.69665633e-01 5.27942288e-01 -8.32160149e-01]\n", + " [ 1.43235327e-01 5.49712587e-01 -8.22982207e-01]\n", + " [ 2.70147026e-01 4.20828204e-01 -8.65981644e-01]\n", + " [ 2.50012267e-01 3.99487022e-01 -8.81988654e-01]\n", + " [ 2.28964765e-01 3.77329708e-01 -8.97327938e-01]\n", + " [ 2.07137125e-01 3.54452479e-01 -9.11842997e-01]\n", + " [ 1.84661502e-01 3.30963278e-01 -9.25399070e-01]\n", + " [ 1.61670923e-01 3.06981976e-01 -9.37883031e-01]\n", + " [ 1.26086283e-01 5.50229629e-01 -8.25439037e-01]\n", + " [ 1.03687670e-01 5.29608155e-01 -8.41881268e-01]\n", + " [ 8.06620241e-02 5.07876753e-01 -8.57644939e-01]\n", + " [ 5.71376954e-02 4.85124818e-01 -8.72576183e-01]\n", + " [ 3.32468151e-02 4.61455744e-01 -8.86540042e-01]\n", + " [ 9.12715275e-03 4.36989155e-01 -8.99420465e-01]\n", + " [ 1.44568907e-01 3.06478213e-01 -9.40835233e-01]\n", + " [ 1.18831341e-01 3.29432766e-01 -9.36671322e-01]\n", + " [ 9.23927431e-02 3.52459858e-01 -9.31254868e-01]\n", + " [ 6.54002749e-02 3.75401873e-01 -9.24551912e-01]\n", + " [ 3.80059417e-02 3.98106870e-01 -9.16551400e-01]\n", + " [ 1.03683245e-02 4.20427884e-01 -9.07266715e-01]\n", + " [ 2.77010848e-01 4.28149598e-01 -8.60205157e-01]\n", + " [ 2.77010848e-01 4.28149598e-01 -8.60205157e-01]\n", + " [ 5.85942246e-04 4.28188038e-01 -9.03689472e-01]\n", + " [ 5.85942246e-04 4.28188038e-01 -9.03689472e-01]\n", + " [ 2.62020832e-01 4.29050723e-01 -8.64442341e-01]\n", + " [ 2.41704808e-01 4.07725429e-01 -8.80533225e-01]\n", + " [ 2.20494316e-01 3.85562273e-01 -8.95948654e-01]\n", + " [ 1.98521464e-01 3.62657293e-01 -9.10532216e-01]\n", + " [ 1.75917890e-01 3.39118480e-01 -9.24149096e-01]\n", + " [ 1.52816410e-01 3.15066016e-01 -9.36685940e-01]\n", + " [ 2.38286118e-01 4.52350641e-01 -8.59417607e-01]\n", + " [ 2.17487417e-01 4.31090620e-01 -8.75705487e-01]\n", + " [ 1.95845735e-01 4.08933432e-01 -8.91301238e-01]\n", + " [ 1.73491365e-01 3.85974411e-01 -9.06048840e-01]\n", + " [ 1.50554568e-01 3.62321490e-01 -9.19813274e-01]\n", + " [ 1.27167896e-01 3.38095647e-01 -9.32480380e-01]\n", + " [ 2.13619131e-01 4.75522371e-01 -8.53372921e-01]\n", + " [ 1.92382324e-01 4.54358166e-01 -8.69797504e-01]\n", + " [ 1.70353061e-01 4.32241106e-01 -8.85521011e-01]\n", + " [ 1.47659897e-01 4.09265442e-01 -9.00387890e-01]\n", + " [ 1.24432261e-01 3.85538641e-01 -9.14262855e-01]\n", + " [ 1.00803100e-01 3.61182160e-01 -9.27030842e-01]\n", + " [ 1.88171551e-01 4.98403100e-01 -8.46277624e-01]\n", + " [ 1.66539363e-01 4.77365629e-01 -8.62778475e-01]\n", + " [ 1.44164295e-01 4.55323519e-01 -8.78576774e-01]\n", + " [ 1.21173816e-01 4.32369600e-01 -8.93517451e-01]\n", + " [ 9.76973335e-02 4.08610424e-01 -9.07465015e-01]\n", + " [ 7.38688469e-02 3.84167456e-01 -9.20303623e-01]\n", + " [ 1.62095031e-01 5.20838975e-01 -8.38124074e-01]\n", + " [ 1.40108952e-01 4.99958692e-01 -8.54640736e-01]\n", + " [ 1.17429100e-01 4.78026127e-01 -8.70460469e-01]\n", + " [ 9.41827504e-02 4.55132534e-01 -8.85428702e-01]\n", + " [ 7.05000930e-02 4.31383199e-01 -8.99409958e-01]\n", + " [ 4.65166456e-02 4.06899088e-01 -9.12287967e-01]\n", + " [ 1.35542703e-01 5.42685198e-01 -8.28927591e-01]\n", + " [ 1.13244240e-01 5.21991287e-01 -8.45399810e-01]\n", + " [ 9.03012367e-02 5.00201729e-01 -8.61187504e-01]\n", + " [ 6.68416412e-02 4.77406337e-01 -8.76136624e-01]\n", + " [ 4.29970169e-02 4.53708988e-01 -8.90112021e-01]\n", + " [ 1.89045633e-02 4.29229711e-01 -9.02997493e-01]]\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "DEBUG:root:radec2pix: curVec Shape: (96, 3)\n", + "DEBUG:root:radec2pix: camVec: [[-0.20607518 -0.20787446 -0.20940354 -0.21066179 -0.21164814 -0.21236112\n", + " -0.21279916 -0.21296107 -0.20607518 -0.17964954 -0.15251864 -0.12479221\n", + " -0.09658011 -0.06799262 -0.03914089 -0.01013708 -0.21296107 -0.18561075\n", + " -0.15755214 -0.12888979 -0.09972928 -0.07017922 -0.04035219 -0.01036463\n", + " -0.01013708 -0.01020871 -0.01026764 -0.01031373 -0.01034674 -0.01036638\n", + " -0.0103724 -0.01036463 -0.20680345 -0.20882603 -0.21044235 -0.21165063\n", + " -0.2124482 -0.2128323 -0.19465346 -0.16177694 -0.12795009 -0.0933751\n", + " -0.05825505 -0.022795 -0.20112996 -0.16711987 -0.13214975 -0.09641349\n", + " -0.0601111 -0.02345151 -0.01026957 -0.0103498 -0.01041065 -0.01045169\n", + " -0.01047241 -0.01047238 -0.20599275 -0.20599275 -0.01046737 -0.01046737\n", + " -0.19541667 -0.16240545 -0.12844349 -0.09373247 -0.05847519 -0.02287686\n", + " -0.19732118 -0.16397526 -0.12967711 -0.09462661 -0.05902568 -0.02308015\n", + " -0.19884383 -0.16523235 -0.13066656 -0.09534433 -0.05946678 -0.02324061\n", + " -0.19998259 -0.16617376 -0.13140827 -0.09588212 -0.05979589 -0.0233572\n", + " -0.20073433 -0.16679525 -0.13189744 -0.09623556 -0.06000982 -0.02342863\n", + " -0.20109591 -0.16709274 -0.13212968 -0.09640067 -0.06010576 -0.0234538 ]\n", + " [-0.20019593 -0.17367087 -0.14646307 -0.11868235 -0.09043873 -0.0618427\n", + " -0.03300558 -0.0040396 -0.20019593 -0.20202839 -0.20359907 -0.20490731\n", + " -0.20595196 -0.20673135 -0.20724368 -0.20748743 -0.0040396 -0.00409191\n", + " -0.0041395 -0.00418225 -0.00421998 -0.00425248 -0.00427955 -0.00430103\n", + " -0.20748743 -0.17998755 -0.15180051 -0.12303089 -0.0937848 -0.06417157\n", + " -0.03430461 -0.00430103 -0.18872819 -0.15574492 -0.12184525 -0.0872316\n", + " -0.05210744 -0.0166781 -0.20093724 -0.20300612 -0.20468137 -0.20596106\n", + " -0.20684219 -0.20732153 -0.00416252 -0.00422448 -0.00427905 -0.00432591\n", + " -0.00436469 -0.00439503 -0.19558822 -0.16140908 -0.12630166 -0.09046055\n", + " -0.05408714 -0.0173918 -0.20011322 -0.20011322 -0.00440367 -0.00440367\n", + " -0.18950334 -0.19145029 -0.19302803 -0.19423441 -0.195066 -0.19551916\n", + " -0.15638145 -0.15798254 -0.1592836 -0.16028164 -0.16097217 -0.16135064\n", + " -0.12234264 -0.1235961 -0.12461804 -0.12540495 -0.1259519 -0.1262541\n", + " -0.08758892 -0.08849133 -0.08922984 -0.08980108 -0.09020062 -0.09042422\n", + " -0.05232353 -0.0528708 -0.053321 -0.05367171 -0.05391982 -0.0540624\n", + " -0.016752 -0.01694088 -0.01709901 -0.01722548 -0.01731915 -0.01737894]\n", + " [ 0.95783851 0.96261448 0.96679818 0.97032784 0.97315256 0.9752324\n", + " 0.97653835 0.97705233 0.95783851 0.96276195 0.96710159 0.97079344\n", + " 0.97378441 0.97603235 0.97750603 0.97818516 0.97705233 0.98261483\n", + " 0.98750199 0.99165011 0.99500566 0.99752533 0.99917635 0.99993704\n", + " 0.97818516 0.98361591 0.98835782 0.99234925 0.99553873 0.99788504\n", + " 0.9993576 0.99993704 0.96000729 0.96547149 0.96998338 0.97344474\n", + " 0.97578203 0.97694639 0.96006992 0.96572084 0.97042996 0.97409503\n", + " 0.97663845 0.97800724 0.97955572 0.98592753 0.99122053 0.99533197\n", + " 0.99818215 0.99971531 0.98063234 0.98683331 0.99193725 0.99584519\n", + " 0.9984813 0.99979391 0.95787352 0.95787352 0.99993552 0.99993552\n", + " 0.9622374 0.96797276 0.97274994 0.9764667 0.97904541 0.98043302\n", + " 0.96778572 0.97373181 0.978679 0.98252511 0.98519233 0.98662722\n", + " 0.97236485 0.97847957 0.98356321 0.98751357 0.9902524 0.99172566\n", + " 0.9758766 0.9821179 0.98730436 0.99133364 0.9941269 0.9956294\n", + " 0.9782474 0.98457302 0.98982824 0.99391049 0.99674043 0.99826267\n", + " 0.97942831 0.98579563 0.99108495 0.99519355 0.99804176 0.99957386]]\n", + "DEBUG:root:radec2pix: camVec Shape: (3, 96)\n", + "DEBUG:root:cartToSphere: vec: [[-0.20607518 -0.20019593 0.95783851]\n", + " [-0.20787446 -0.17367087 0.96261448]\n", + " [-0.20940354 -0.14646307 0.96679818]\n", + " [-0.21066179 -0.11868235 0.97032784]\n", + " [-0.21164814 -0.09043873 0.97315256]\n", + " [-0.21236112 -0.0618427 0.9752324 ]\n", + " [-0.21279916 -0.03300558 0.97653835]\n", + " [-0.21296107 -0.0040396 0.97705233]\n", + " [-0.20607518 -0.20019593 0.95783851]\n", + " [-0.17964954 -0.20202839 0.96276195]\n", + " [-0.15251864 -0.20359907 0.96710159]\n", + " [-0.12479221 -0.20490731 0.97079344]\n", + " [-0.09658011 -0.20595196 0.97378441]\n", + " [-0.06799262 -0.20673135 0.97603235]\n", + " [-0.03914089 -0.20724368 0.97750603]\n", + " [-0.01013708 -0.20748743 0.97818516]\n", + " [-0.21296107 -0.0040396 0.97705233]\n", + " [-0.18561075 -0.00409191 0.98261483]\n", + " [-0.15755214 -0.0041395 0.98750199]\n", + " [-0.12888979 -0.00418225 0.99165011]\n", + " [-0.09972928 -0.00421998 0.99500566]\n", + " [-0.07017922 -0.00425248 0.99752533]\n", + " [-0.04035219 -0.00427955 0.99917635]\n", + " [-0.01036463 -0.00430103 0.99993704]\n", + " [-0.01013708 -0.20748743 0.97818516]\n", + " [-0.01020871 -0.17998755 0.98361591]\n", + " [-0.01026764 -0.15180051 0.98835782]\n", + " [-0.01031373 -0.12303089 0.99234925]\n", + " [-0.01034674 -0.0937848 0.99553873]\n", + " [-0.01036638 -0.06417157 0.99788504]\n", + " [-0.0103724 -0.03430461 0.9993576 ]\n", + " [-0.01036463 -0.00430103 0.99993704]\n", + " [-0.20680345 -0.18872819 0.96000729]\n", + " [-0.20882603 -0.15574492 0.96547149]\n", + " [-0.21044235 -0.12184525 0.96998338]\n", + " [-0.21165063 -0.0872316 0.97344474]\n", + " [-0.2124482 -0.05210744 0.97578203]\n", + " [-0.2128323 -0.0166781 0.97694639]\n", + " [-0.19465346 -0.20093724 0.96006992]\n", + " [-0.16177694 -0.20300612 0.96572084]\n", + " [-0.12795009 -0.20468137 0.97042996]\n", + " [-0.0933751 -0.20596106 0.97409503]\n", + " [-0.05825505 -0.20684219 0.97663845]\n", + " [-0.022795 -0.20732153 0.97800724]\n", + " [-0.20112996 -0.00416252 0.97955572]\n", + " [-0.16711987 -0.00422448 0.98592753]\n", + " [-0.13214975 -0.00427905 0.99122053]\n", + " [-0.09641349 -0.00432591 0.99533197]\n", + " [-0.0601111 -0.00436469 0.99818215]\n", + " [-0.02345151 -0.00439503 0.99971531]\n", + " [-0.01026957 -0.19558822 0.98063234]\n", + " [-0.0103498 -0.16140908 0.98683331]\n", + " [-0.01041065 -0.12630166 0.99193725]\n", + " [-0.01045169 -0.09046055 0.99584519]\n", + " [-0.01047241 -0.05408714 0.9984813 ]\n", + " [-0.01047238 -0.0173918 0.99979391]\n", + " [-0.20599275 -0.20011322 0.95787352]\n", + " [-0.20599275 -0.20011322 0.95787352]\n", + " [-0.01046737 -0.00440367 0.99993552]\n", + " [-0.01046737 -0.00440367 0.99993552]\n", + " [-0.19541667 -0.18950334 0.9622374 ]\n", + " [-0.16240545 -0.19145029 0.96797276]\n", + " [-0.12844349 -0.19302803 0.97274994]\n", + " [-0.09373247 -0.19423441 0.9764667 ]\n", + " [-0.05847519 -0.195066 0.97904541]\n", + " [-0.02287686 -0.19551916 0.98043302]\n", + " [-0.19732118 -0.15638145 0.96778572]\n", + " [-0.16397526 -0.15798254 0.97373181]\n", + " [-0.12967711 -0.1592836 0.978679 ]\n", + " [-0.09462661 -0.16028164 0.98252511]\n", + " [-0.05902568 -0.16097217 0.98519233]\n", + " [-0.02308015 -0.16135064 0.98662722]\n", + " [-0.19884383 -0.12234264 0.97236485]\n", + " [-0.16523235 -0.1235961 0.97847957]\n", + " [-0.13066656 -0.12461804 0.98356321]\n", + " [-0.09534433 -0.12540495 0.98751357]\n", + " [-0.05946678 -0.1259519 0.9902524 ]\n", + " [-0.02324061 -0.1262541 0.99172566]\n", + " [-0.19998259 -0.08758892 0.9758766 ]\n", + " [-0.16617376 -0.08849133 0.9821179 ]\n", + " [-0.13140827 -0.08922984 0.98730436]\n", + " [-0.09588212 -0.08980108 0.99133364]\n", + " [-0.05979589 -0.09020062 0.9941269 ]\n", + " [-0.0233572 -0.09042422 0.9956294 ]\n", + " [-0.20073433 -0.05232353 0.9782474 ]\n", + " [-0.16679525 -0.0528708 0.98457302]\n", + " [-0.13189744 -0.053321 0.98982824]\n", + " [-0.09623556 -0.05367171 0.99391049]\n", + " [-0.06000982 -0.05391982 0.99674043]\n", + " [-0.02342863 -0.0540624 0.99826267]\n", + " [-0.20109591 -0.016752 0.97942831]\n", + " [-0.16709274 -0.01694088 0.98579563]\n", + " [-0.13212968 -0.01709901 0.99108495]\n", + " [-0.09640067 -0.01722548 0.99519355]\n", + " [-0.06010576 -0.01731915 0.99804176]\n", + " [-0.0234538 -0.01737894 0.99957386]]\n", + "DEBUG:root:radec2pix: lng: [224.17091663 219.87741809 214.97008665 209.39598188 203.1373574\n", + " 196.23634076 188.81644128 181.08669631 224.17091663 228.3555716\n", + " 233.16265584 238.65783928 244.87601329 251.7942959 259.30486084\n", + " 267.20296141 181.08669631 181.26291687 181.50503492 181.85849799\n", + " 182.42298774 183.46757199 186.05387592 202.53707914 267.20296141\n", + " 266.75372148 266.13046308 265.20807536 263.70434622 260.82362196\n", + " 253.17669924 202.53707914 222.38348083 216.71601144 210.07066421\n", + " 202.39896016 193.78096287 184.48069147 225.9100405 231.44842444\n", + " 237.98973756 245.61222365 254.27065244 263.72553361 181.18560606\n", + " 181.44802269 181.85460599 182.56904059 184.15297918 190.61463228\n", + " 266.99438373 266.33112836 265.28794249 263.40934603 259.04191913\n", + " 238.94596845 224.17054014 224.17054014 202.81670057 202.81670057\n", + " 224.11986404 229.69237658 236.35966367 244.23925438 253.312778\n", + " 263.32641007 218.39761245 223.93365474 230.85002743 239.44337044\n", + " 249.86289594 261.85943825 211.60273873 216.79700073 223.64273186\n", + " 232.75457852 244.72618682 259.56986466 203.65258863 208.03632189\n", + " 214.17758593 223.12426077 236.4587659 255.51668541 194.60966243\n", + " 197.58758667 202.01156736 209.14892478 221.94021993 246.56988658\n", + " 184.76194605 185.78921163 187.37371211 190.13104958 196.0740482\n", + " 216.53792504]\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "DEBUG:root:radec2pix: lat: [73.30319327 74.28364829 75.19434757 76.00760673 76.6934474 77.22149469\n", + " 77.56431546 77.70181842 73.30319327 74.31487163 75.26252869 76.11836609\n", + " 76.85166299 77.43039612 77.8244634 78.01035447 77.70181842 79.30062777\n", + " 80.93200296 82.59063863 84.2712796 85.96832552 87.67438557 89.35703566\n", + " 78.01035447 79.61411514 81.24861046 82.90802789 84.58587071 86.27294722\n", + " 87.94616945 89.35703566 73.74128804 74.89975016 75.92621516 76.76637844\n", + " 77.36466213 77.67335289 73.7541097 74.95468773 76.03182731 76.93013306\n", + " 77.59097642 77.96138218 78.39443735 80.37649363 82.40216048 84.46173597\n", + " 86.54472647 88.63280521 78.70517127 80.69206097 82.71932817 84.7752745\n", + " 86.84188191 88.83673743 73.31017726 73.31017726 89.34933673 89.34933673\n", + " 74.20408349 75.46003419 76.59358943 77.54526674 78.24998117 78.64701061\n", + " 75.41740928 76.83842002 78.14733268 79.2729755 80.12769991 80.61933545\n", + " 76.49875662 78.09183026 79.59737911 80.93621381 81.99355302 82.62428133\n", + " 77.38945666 79.14833894 80.86043698 82.45133489 83.78724838 84.64121324\n", + " 78.02753384 79.92284226 81.82091734 83.6737055 85.37260957 86.62213831\n", + " 78.35820379 80.33138971 82.34363217 84.38015735 86.41373806 88.32724747]\n", + "DEBUG:root:optics_fp: rtanth: [44.94272969 42.00239064 39.33235561 36.99120283 35.04490673 33.56223174\n", + " 32.60648436 32.22458311 44.94272969 41.90992612 39.13459306 36.67522804\n", + " 34.59927513 32.97921831 31.88462562 31.37054947 32.22458311 27.83912196\n", + " 23.45402264 19.06953475 14.68620592 10.30551524 5.93330899 1.63895634\n", + " 31.37054947 26.99005818 22.61186898 18.23763988 13.87111779 9.5229103\n", + " 5.23882082 1.63895634 43.61980801 40.19015843 37.22381993 34.83933779\n", + " 33.16246218 32.30357703 43.58131788 40.02977818 36.92204987 34.37870189\n", + " 32.5323727 31.50584319 30.31278547 24.93826049 19.56454604 14.19256282\n", + " 8.82547273 3.48595044 29.4611953 24.09404931 18.73198196 13.38109994\n", + " 8.0637011 2.9657153 44.92151855 44.92151855 1.65858428 1.65858428\n", + " 42.23832489 38.56329813 35.32679703 32.65945447 30.7099348 29.62031359\n", + " 38.68639649 34.63652908 30.99264061 27.91417471 25.60588368 24.28835443\n", + " 35.59496044 31.14567519 27.03530484 23.44280455 20.64037826 18.98125646\n", + " 33.09332103 28.25278341 23.64475409 19.43532283 15.94339684 13.72788346\n", + " 31.32311186 26.15701072 21.09606209 16.23887967 11.83897557 8.62694755\n", + " 30.41232527 25.05915804 19.71841847 14.40393713 9.16152467 4.26572571]\n", + "DEBUG:root:optics_fp: cphi: [-0.7172644 -0.76741791 -0.81945139 -0.87124824 -0.91956549 -0.96011654\n", + " -0.98818444 -0.99982014 -0.7172644 -0.66450587 -0.59954537 -0.52014772\n", + " -0.4245785 -0.31242949 -0.18558325 -0.04879815 -0.99982014 -0.99975708\n", + " -0.99965502 -0.99947397 -0.99910595 -0.99816919 -0.99442317 -0.92363168\n", + " -0.04879815 -0.05662794 -0.06748483 -0.0835374 -0.10965891 -0.1594742\n", + " -0.28942109 -0.92363168 -0.73864972 -0.80160861 -0.86540808 -0.92455295\n", + " -0.97121348 -0.99694372 -0.69578694 -0.62321886 -0.53007115 -0.41291013\n", + " -0.27109351 -0.10929135 -0.99978591 -0.99968066 -0.99947617 -0.99899494\n", + " -0.99737425 -0.98288834 -0.05243384 -0.06399014 -0.08214824 -0.11477511\n", + " -0.19009076 -0.51584618 -0.71726898 -0.71726898 -0.92175016 -0.92175016\n", + " -0.71788499 -0.64689125 -0.55397779 -0.43461417 -0.2871469 -0.11621293\n", + " -0.78371934 -0.72014369 -0.63135242 -0.50838973 -0.34426777 -0.14160207\n", + " -0.85170189 -0.80076273 -0.72365733 -0.60523038 -0.42694461 -0.18103644\n", + " -0.91599489 -0.8826498 -0.8273004 -0.72987289 -0.55253697 -0.25009805\n", + " -0.96766665 -0.95325615 -0.92710821 -0.87335662 -0.74384256 -0.39763019\n", + " -0.99654822 -0.99489972 -0.99173015 -0.984408 -0.96090466 -0.80346296]\n", + "DEBUG:root:optics_fp: sphi: [-0.69680111 -0.64114722 -0.57314869 -0.49084265 -0.39293677 -0.27960013\n", + " -0.15326941 -0.01896529 -0.69680111 -0.74728304 -0.80034077 -0.85407631\n", + " -0.90539113 -0.94994095 -0.98262854 -0.99880866 -0.01896529 -0.02204027\n", + " -0.02626479 -0.03243122 -0.04227651 -0.06048361 -0.10546358 -0.38328124\n", + " -0.99880866 -0.99839535 -0.9977203 -0.99650464 -0.99396928 -0.9872021\n", + " -0.95720188 -0.38328124 -0.67408945 -0.59784918 -0.50106771 -0.3810536\n", + " -0.23821077 -0.07812313 -0.71824824 -0.78204748 -0.84795317 -0.91077177\n", + " -0.96255302 -0.99400976 -0.02069125 -0.02527007 -0.03236333 -0.04482319\n", + " -0.07241971 -0.18420237 -0.9986244 -0.99795053 -0.99662012 -0.9933915\n", + " -0.98176652 -0.85668122 -0.6967964 -0.6967964 -0.38778427 -0.38778427\n", + " -0.69616172 -0.76258227 -0.83253145 -0.90061674 -0.95788656 -0.99322432\n", + " -0.62111512 -0.69382495 -0.77549605 -0.8611271 -0.93887151 -0.98992366\n", + " -0.52402662 -0.59898168 -0.69015945 -0.79605037 -0.90427778 -0.98347639\n", + " -0.40118994 -0.4700312 -0.56175978 -0.68358289 -0.83348839 -0.96822051\n", + " -0.25223255 -0.30216337 -0.37479377 -0.48708132 -0.66835488 -0.91754577\n", + " -0.08301599 -0.10086897 -0.12834059 -0.17590022 -0.27687945 -0.59535474]\n", + "DEBUG:root:optics_fp: xyfp: [[32.2358199 31.31614388]\n", + " [32.23338667 26.92971599]\n", + " [32.23095344 22.54328809]\n", + " [32.2285202 18.15686019]\n", + " [32.22608698 13.7704323 ]\n", + " [32.22365375 9.3840044 ]\n", + " [32.22122051 4.99757651]\n", + " [32.21878728 0.61114861]\n", + " [32.2358199 31.31614388]\n", + " [27.849392 31.31857712]\n", + " [23.46296411 31.32101035]\n", + " [19.07653621 31.32344358]\n", + " [14.69010831 31.3258768 ]\n", + " [10.30368042 31.32831004]\n", + " [ 5.91725252 31.33074327]\n", + " [ 1.53082462 31.3331765 ]\n", + " [32.21878728 0.61114861]\n", + " [27.83235938 0.61358184]\n", + " [23.44593149 0.61601507]\n", + " [19.0595036 0.6184483 ]\n", + " [14.6730757 0.62088153]\n", + " [10.2866478 0.62331476]\n", + " [ 5.90021991 0.625748 ]\n", + " [ 1.513792 0.62818122]\n", + " [ 1.53082462 31.3331765 ]\n", + " [ 1.52839139 26.94674861]\n", + " [ 1.52595816 22.5603207 ]\n", + " [ 1.52352493 18.17389281]\n", + " [ 1.5210917 13.78746492]\n", + " [ 1.51865847 9.40103702]\n", + " [ 1.51622524 5.01460912]\n", + " [ 1.513792 0.62818122]\n", + " [32.219759 29.4036525 ]\n", + " [32.21677684 24.02765333]\n", + " [32.21379467 18.65165415]\n", + " [32.21081251 13.27565498]\n", + " [32.20783035 7.89965581]\n", + " [32.20484818 2.52365664]\n", + " [30.32331188 31.30220479]\n", + " [24.9473127 31.30518695]\n", + " [19.57131353 31.30816912]\n", + " [14.19531435 31.31115127]\n", + " [ 8.81931518 31.31413344]\n", + " [ 3.44331601 31.3171156 ]\n", + " [30.3062959 0.62720951]\n", + " [24.93029672 0.63019167]\n", + " [19.55429755 0.63317383]\n", + " [14.17829838 0.636156 ]\n", + " [ 8.80229921 0.63913816]\n", + " [ 3.42630004 0.64212033]\n", + " [ 1.54476372 29.42066847]\n", + " [ 1.54178156 24.0446693 ]\n", + " [ 1.53879939 18.66867013]\n", + " [ 1.53581723 13.29267096]\n", + " [ 1.53283507 7.91667178]\n", + " [ 1.5298529 2.54067261]\n", + " [32.22081158 31.30115221]\n", + " [32.22081158 31.30115221]\n", + " [ 1.52880032 0.6431729 ]\n", + " [ 1.52880032 0.6431729 ]\n", + " [30.32225929 29.40470508]\n", + " [24.94626012 29.40768724]\n", + " [19.57026095 29.41066941]\n", + " [14.19426178 29.41365157]\n", + " [ 8.8182626 29.41663373]\n", + " [ 3.44226343 29.4196159 ]\n", + " [30.31927713 24.02870591]\n", + " [24.94327796 24.03168807]\n", + " [19.56727878 24.03467023]\n", + " [14.19127961 24.0376524 ]\n", + " [ 8.81528044 24.04063456]\n", + " [ 3.43928127 24.04361672]\n", + " [30.31629496 18.65270673]\n", + " [24.9402958 18.6556889 ]\n", + " [19.56429662 18.65867106]\n", + " [14.18829744 18.66165322]\n", + " [ 8.81229827 18.66463538]\n", + " [ 3.4362991 18.66761755]\n", + " [30.31331281 13.27670756]\n", + " [24.93731363 13.27968972]\n", + " [19.56131446 13.28267189]\n", + " [14.18531529 13.28565406]\n", + " [ 8.80931611 13.28863621]\n", + " [ 3.43331694 13.29161838]\n", + " [30.31033064 7.90070839]\n", + " [24.93433147 7.90369055]\n", + " [19.55833229 7.90667271]\n", + " [14.18233312 7.90965488]\n", + " [ 8.80633395 7.91263704]\n", + " [ 3.43033477 7.9156192 ]\n", + " [30.30734847 2.52470921]\n", + " [24.9313493 2.52769138]\n", + " [19.55535013 2.53067354]\n", + " [14.17935096 2.53365571]\n", + " [ 8.80335178 2.53663787]\n", + " [ 3.42735261 2.53962004]]\n", + "DEBUG:root:optics_fp: xyfp shape: (96, 2)\n", + "DEBUG:root:make_az_asym: xyp: [[32.2358199 31.31614388]\n", + " [32.23338667 26.92971599]\n", + " [32.23095344 22.54328809]\n", + " [32.2285202 18.15686019]\n", + " [32.22608698 13.7704323 ]\n", + " [32.22365375 9.3840044 ]\n", + " [32.22122051 4.99757651]\n", + " [32.21878728 0.61114861]\n", + " [32.2358199 31.31614388]\n", + " [27.849392 31.31857712]\n", + " [23.46296411 31.32101035]\n", + " [19.07653621 31.32344358]\n", + " [14.69010831 31.3258768 ]\n", + " [10.30368042 31.32831004]\n", + " [ 5.91725252 31.33074327]\n", + " [ 1.53082462 31.3331765 ]\n", + " [32.21878728 0.61114861]\n", + " [27.83235938 0.61358184]\n", + " [23.44593149 0.61601507]\n", + " [19.0595036 0.6184483 ]\n", + " [14.6730757 0.62088153]\n", + " [10.2866478 0.62331476]\n", + " [ 5.90021991 0.625748 ]\n", + " [ 1.513792 0.62818122]\n", + " [ 1.53082462 31.3331765 ]\n", + " [ 1.52839139 26.94674861]\n", + " [ 1.52595816 22.5603207 ]\n", + " [ 1.52352493 18.17389281]\n", + " [ 1.5210917 13.78746492]\n", + " [ 1.51865847 9.40103702]\n", + " [ 1.51622524 5.01460912]\n", + " [ 1.513792 0.62818122]\n", + " [32.219759 29.4036525 ]\n", + " [32.21677684 24.02765333]\n", + " [32.21379467 18.65165415]\n", + " [32.21081251 13.27565498]\n", + " [32.20783035 7.89965581]\n", + " [32.20484818 2.52365664]\n", + " [30.32331188 31.30220479]\n", + " [24.9473127 31.30518695]\n", + " [19.57131353 31.30816912]\n", + " [14.19531435 31.31115127]\n", + " [ 8.81931518 31.31413344]\n", + " [ 3.44331601 31.3171156 ]\n", + " [30.3062959 0.62720951]\n", + " [24.93029672 0.63019167]\n", + " [19.55429755 0.63317383]\n", + " [14.17829838 0.636156 ]\n", + " [ 8.80229921 0.63913816]\n", + " [ 3.42630004 0.64212033]\n", + " [ 1.54476372 29.42066847]\n", + " [ 1.54178156 24.0446693 ]\n", + " [ 1.53879939 18.66867013]\n", + " [ 1.53581723 13.29267096]\n", + " [ 1.53283507 7.91667178]\n", + " [ 1.5298529 2.54067261]\n", + " [32.22081158 31.30115221]\n", + " [32.22081158 31.30115221]\n", + " [ 1.52880032 0.6431729 ]\n", + " [ 1.52880032 0.6431729 ]\n", + " [30.32225929 29.40470508]\n", + " [24.94626012 29.40768724]\n", + " [19.57026095 29.41066941]\n", + " [14.19426178 29.41365157]\n", + " [ 8.8182626 29.41663373]\n", + " [ 3.44226343 29.4196159 ]\n", + " [30.31927713 24.02870591]\n", + " [24.94327796 24.03168807]\n", + " [19.56727878 24.03467023]\n", + " [14.19127961 24.0376524 ]\n", + " [ 8.81528044 24.04063456]\n", + " [ 3.43928127 24.04361672]\n", + " [30.31629496 18.65270673]\n", + " [24.9402958 18.6556889 ]\n", + " [19.56429662 18.65867106]\n", + " [14.18829744 18.66165322]\n", + " [ 8.81229827 18.66463538]\n", + " [ 3.4362991 18.66761755]\n", + " [30.31331281 13.27670756]\n", + " [24.93731363 13.27968972]\n", + " [19.56131446 13.28267189]\n", + " [14.18531529 13.28565406]\n", + " [ 8.80931611 13.28863621]\n", + " [ 3.43331694 13.29161838]\n", + " [30.31033064 7.90070839]\n", + " [24.93433147 7.90369055]\n", + " [19.55833229 7.90667271]\n", + " [14.18233312 7.90965488]\n", + " [ 8.80633395 7.91263704]\n", + " [ 3.43033477 7.9156192 ]\n", + " [30.30734847 2.52470921]\n", + " [24.9313493 2.52769138]\n", + " [19.55535013 2.53067354]\n", + " [14.17935096 2.53365571]\n", + " [ 8.80335178 2.53663787]\n", + " [ 3.42735261 2.53962004]]\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "DEBUG:root:make_az_asym: xyp: shape: (96, 2)\n", + "DEBUG:root:radec2pix: xyfp: [[32.2358199 31.31614388]\n", + " [32.23338667 26.92971599]\n", + " [32.23095344 22.54328809]\n", + " [32.2285202 18.15686019]\n", + " [32.22608698 13.7704323 ]\n", + " [32.22365375 9.3840044 ]\n", + " [32.22122051 4.99757651]\n", + " [32.21878728 0.61114861]\n", + " [32.2358199 31.31614388]\n", + " [27.849392 31.31857712]\n", + " [23.46296411 31.32101035]\n", + " [19.07653621 31.32344358]\n", + " [14.69010831 31.3258768 ]\n", + " [10.30368042 31.32831004]\n", + " [ 5.91725252 31.33074327]\n", + " [ 1.53082462 31.3331765 ]\n", + " [32.21878728 0.61114861]\n", + " [27.83235938 0.61358184]\n", + " [23.44593149 0.61601507]\n", + " [19.0595036 0.6184483 ]\n", + " [14.6730757 0.62088153]\n", + " [10.2866478 0.62331476]\n", + " [ 5.90021991 0.625748 ]\n", + " [ 1.513792 0.62818122]\n", + " [ 1.53082462 31.3331765 ]\n", + " [ 1.52839139 26.94674861]\n", + " [ 1.52595816 22.5603207 ]\n", + " [ 1.52352493 18.17389281]\n", + " [ 1.5210917 13.78746492]\n", + " [ 1.51865847 9.40103702]\n", + " [ 1.51622524 5.01460912]\n", + " [ 1.513792 0.62818122]\n", + " [32.219759 29.4036525 ]\n", + " [32.21677684 24.02765333]\n", + " [32.21379467 18.65165415]\n", + " [32.21081251 13.27565498]\n", + " [32.20783035 7.89965581]\n", + " [32.20484818 2.52365664]\n", + " [30.32331188 31.30220479]\n", + " [24.9473127 31.30518695]\n", + " [19.57131353 31.30816912]\n", + " [14.19531435 31.31115127]\n", + " [ 8.81931518 31.31413344]\n", + " [ 3.44331601 31.3171156 ]\n", + " [30.3062959 0.62720951]\n", + " [24.93029672 0.63019167]\n", + " [19.55429755 0.63317383]\n", + " [14.17829838 0.636156 ]\n", + " [ 8.80229921 0.63913816]\n", + " [ 3.42630004 0.64212033]\n", + " [ 1.54476372 29.42066847]\n", + " [ 1.54178156 24.0446693 ]\n", + " [ 1.53879939 18.66867013]\n", + " [ 1.53581723 13.29267096]\n", + " [ 1.53283507 7.91667178]\n", + " [ 1.5298529 2.54067261]\n", + " [32.22081158 31.30115221]\n", + " [32.22081158 31.30115221]\n", + " [ 1.52880032 0.6431729 ]\n", + " [ 1.52880032 0.6431729 ]\n", + " [30.32225929 29.40470508]\n", + " [24.94626012 29.40768724]\n", + " [19.57026095 29.41066941]\n", + " [14.19426178 29.41365157]\n", + " [ 8.8182626 29.41663373]\n", + " [ 3.44226343 29.4196159 ]\n", + " [30.31927713 24.02870591]\n", + " [24.94327796 24.03168807]\n", + " [19.56727878 24.03467023]\n", + " [14.19127961 24.0376524 ]\n", + " [ 8.81528044 24.04063456]\n", + " [ 3.43928127 24.04361672]\n", + " [30.31629496 18.65270673]\n", + " [24.9402958 18.6556889 ]\n", + " [19.56429662 18.65867106]\n", + " [14.18829744 18.66165322]\n", + " [ 8.81229827 18.66463538]\n", + " [ 3.4362991 18.66761755]\n", + " [30.31331281 13.27670756]\n", + " [24.93731363 13.27968972]\n", + " [19.56131446 13.28267189]\n", + " [14.18531529 13.28565406]\n", + " [ 8.80931611 13.28863621]\n", + " [ 3.43331694 13.29161838]\n", + " [30.31033064 7.90070839]\n", + " [24.93433147 7.90369055]\n", + " [19.55833229 7.90667271]\n", + " [14.18233312 7.90965488]\n", + " [ 8.80633395 7.91263704]\n", + " [ 3.43033477 7.9156192 ]\n", + " [30.30734847 2.52470921]\n", + " [24.9313493 2.52769138]\n", + " [19.55535013 2.53067354]\n", + " [14.17935096 2.53365571]\n", + " [ 8.80335178 2.53663787]\n", + " [ 3.42735261 2.53962004]]\n", + "DEBUG:root:radec2pix: xyfp Shape: (96, 2)\n", + "DEBUG:root:mm_to_pix: fitpx: [[0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]]\n", + "DEBUG:root:mm_to_pix: fitpx.shape: (96, 2)\n", + "DEBUG:root:radec2pix: xyfp: [[32.2358199 31.31614388]\n", + " [32.23338667 26.92971599]\n", + " [32.23095344 22.54328809]\n", + " [32.2285202 18.15686019]\n", + " [32.22608698 13.7704323 ]\n", + " [32.22365375 9.3840044 ]\n", + " [32.22122051 4.99757651]\n", + " [32.21878728 0.61114861]\n", + " [32.2358199 31.31614388]\n", + " [27.849392 31.31857712]\n", + " [23.46296411 31.32101035]\n", + " [19.07653621 31.32344358]\n", + " [14.69010831 31.3258768 ]\n", + " [10.30368042 31.32831004]\n", + " [ 5.91725252 31.33074327]\n", + " [ 1.53082462 31.3331765 ]\n", + " [32.21878728 0.61114861]\n", + " [27.83235938 0.61358184]\n", + " [23.44593149 0.61601507]\n", + " [19.0595036 0.6184483 ]\n", + " [14.6730757 0.62088153]\n", + " [10.2866478 0.62331476]\n", + " [ 5.90021991 0.625748 ]\n", + " [ 1.513792 0.62818122]\n", + " [ 1.53082462 31.3331765 ]\n", + " [ 1.52839139 26.94674861]\n", + " [ 1.52595816 22.5603207 ]\n", + " [ 1.52352493 18.17389281]\n", + " [ 1.5210917 13.78746492]\n", + " [ 1.51865847 9.40103702]\n", + " [ 1.51622524 5.01460912]\n", + " [ 1.513792 0.62818122]\n", + " [32.219759 29.4036525 ]\n", + " [32.21677684 24.02765333]\n", + " [32.21379467 18.65165415]\n", + " [32.21081251 13.27565498]\n", + " [32.20783035 7.89965581]\n", + " [32.20484818 2.52365664]\n", + " [30.32331188 31.30220479]\n", + " [24.9473127 31.30518695]\n", + " [19.57131353 31.30816912]\n", + " [14.19531435 31.31115127]\n", + " [ 8.81931518 31.31413344]\n", + " [ 3.44331601 31.3171156 ]\n", + " [30.3062959 0.62720951]\n", + " [24.93029672 0.63019167]\n", + " [19.55429755 0.63317383]\n", + " [14.17829838 0.636156 ]\n", + " [ 8.80229921 0.63913816]\n", + " [ 3.42630004 0.64212033]\n", + " [ 1.54476372 29.42066847]\n", + " [ 1.54178156 24.0446693 ]\n", + " [ 1.53879939 18.66867013]\n", + " [ 1.53581723 13.29267096]\n", + " [ 1.53283507 7.91667178]\n", + " [ 1.5298529 2.54067261]\n", + " [32.22081158 31.30115221]\n", + " [32.22081158 31.30115221]\n", + " [ 1.52880032 0.6431729 ]\n", + " [ 1.52880032 0.6431729 ]\n", + " [30.32225929 29.40470508]\n", + " [24.94626012 29.40768724]\n", + " [19.57026095 29.41066941]\n", + " [14.19426178 29.41365157]\n", + " [ 8.8182626 29.41663373]\n", + " [ 3.44226343 29.4196159 ]\n", + " [30.31927713 24.02870591]\n", + " [24.94327796 24.03168807]\n", + " [19.56727878 24.03467023]\n", + " [14.19127961 24.0376524 ]\n", + " [ 8.81528044 24.04063456]\n", + " [ 3.43928127 24.04361672]\n", + " [30.31629496 18.65270673]\n", + " [24.9402958 18.6556889 ]\n", + " [19.56429662 18.65867106]\n", + " [14.18829744 18.66165322]\n", + " [ 8.81229827 18.66463538]\n", + " [ 3.4362991 18.66761755]\n", + " [30.31331281 13.27670756]\n", + " [24.93731363 13.27968972]\n", + " [19.56131446 13.28267189]\n", + " [14.18531529 13.28565406]\n", + " [ 8.80931611 13.28863621]\n", + " [ 3.43331694 13.29161838]\n", + " [30.31033064 7.90070839]\n", + " [24.93433147 7.90369055]\n", + " [19.55833229 7.90667271]\n", + " [14.18233312 7.90965488]\n", + " [ 8.80633395 7.91263704]\n", + " [ 3.43033477 7.9156192 ]\n", + " [30.30734847 2.52470921]\n", + " [24.9313493 2.52769138]\n", + " [19.55535013 2.53067354]\n", + " [14.17935096 2.53365571]\n", + " [ 8.80335178 2.53663787]\n", + " [ 3.42735261 2.53962004]]\n", + "DEBUG:root:radec2pix: ccdpx: [[-4.44999999e+01 -4.99999855e-01]\n", + " [-4.45000000e+01 2.91928571e+02]\n", + " [-4.45000000e+01 5.84357143e+02]\n", + " [-4.44999998e+01 8.76785714e+02]\n", + " [-4.45000001e+01 1.16921429e+03]\n", + " [-4.45000000e+01 1.46164286e+03]\n", + " [-4.45000000e+01 1.75407143e+03]\n", + " [-4.44999999e+01 2.04650000e+03]\n", + " [-4.44999999e+01 -4.99999855e-01]\n", + " [ 2.47928571e+02 -5.00000005e-01]\n", + " [ 5.40357143e+02 -5.00000101e-01]\n", + " [ 8.32785714e+02 -5.00000211e-01]\n", + " [ 1.12521429e+03 -4.99999718e-01]\n", + " [ 1.41764286e+03 -5.00000108e-01]\n", + " [ 1.71007143e+03 -4.99999976e-01]\n", + " [ 2.00250000e+03 -5.00000222e-01]\n", + " [-4.44999999e+01 2.04650000e+03]\n", + " [ 2.47928572e+02 2.04650000e+03]\n", + " [ 5.40357143e+02 2.04650000e+03]\n", + " [ 8.32785714e+02 2.04650000e+03]\n", + " [ 1.12521429e+03 2.04650000e+03]\n", + " [ 1.41764286e+03 2.04650000e+03]\n", + " [ 1.71007143e+03 2.04650000e+03]\n", + " [ 2.00250000e+03 2.04650000e+03]\n", + " [ 2.00250000e+03 -5.00000222e-01]\n", + " [ 2.00250000e+03 2.91928571e+02]\n", + " [ 2.00250000e+03 5.84357143e+02]\n", + " [ 2.00250000e+03 8.76785714e+02]\n", + " [ 2.00250000e+03 1.16921429e+03]\n", + " [ 2.00250000e+03 1.46164286e+03]\n", + " [ 2.00250000e+03 1.75407143e+03]\n", + " [ 2.00250000e+03 2.04650000e+03]\n", + " [-4.35000000e+01 1.27000000e+02]\n", + " [-4.35000000e+01 4.85400000e+02]\n", + " [-4.34999998e+01 8.43800000e+02]\n", + " [-4.35000001e+01 1.20220000e+03]\n", + " [-4.35000000e+01 1.56060000e+03]\n", + " [-4.34999999e+01 1.91900000e+03]\n", + " [ 8.29999998e+01 4.99999766e-01]\n", + " [ 4.41400000e+02 4.99999737e-01]\n", + " [ 7.99800000e+02 4.99999723e-01]\n", + " [ 1.15820000e+03 5.00000251e-01]\n", + " [ 1.51660000e+03 4.99999874e-01]\n", + " [ 1.87500000e+03 5.00000148e-01]\n", + " [ 8.30000001e+01 2.04550000e+03]\n", + " [ 4.41400000e+02 2.04550000e+03]\n", + " [ 7.99800000e+02 2.04550000e+03]\n", + " [ 1.15820000e+03 2.04550000e+03]\n", + " [ 1.51660000e+03 2.04550000e+03]\n", + " [ 1.87500000e+03 2.04550000e+03]\n", + " [ 2.00150000e+03 1.27000000e+02]\n", + " [ 2.00150000e+03 4.85400000e+02]\n", + " [ 2.00150000e+03 8.43800000e+02]\n", + " [ 2.00150000e+03 1.20220000e+03]\n", + " [ 2.00150000e+03 1.56060000e+03]\n", + " [ 2.00150000e+03 1.91900000e+03]\n", + " [-4.35000002e+01 4.99999824e-01]\n", + " [-4.35000002e+01 4.99999824e-01]\n", + " [ 2.00150000e+03 2.04550000e+03]\n", + " [ 2.00150000e+03 2.04550000e+03]\n", + " [ 8.30000001e+01 1.27000000e+02]\n", + " [ 4.41400000e+02 1.27000000e+02]\n", + " [ 7.99800000e+02 1.27000000e+02]\n", + " [ 1.15820000e+03 1.27000000e+02]\n", + " [ 1.51660000e+03 1.27000000e+02]\n", + " [ 1.87500000e+03 1.27000000e+02]\n", + " [ 8.29999998e+01 4.85400000e+02]\n", + " [ 4.41400000e+02 4.85400000e+02]\n", + " [ 7.99800000e+02 4.85400000e+02]\n", + " [ 1.15820000e+03 4.85400000e+02]\n", + " [ 1.51660000e+03 4.85400000e+02]\n", + " [ 1.87500000e+03 4.85400000e+02]\n", + " [ 8.30000003e+01 8.43800000e+02]\n", + " [ 4.41400000e+02 8.43800000e+02]\n", + " [ 7.99800000e+02 8.43800000e+02]\n", + " [ 1.15820000e+03 8.43800000e+02]\n", + " [ 1.51660000e+03 8.43800000e+02]\n", + " [ 1.87500000e+03 8.43800000e+02]\n", + " [ 8.29999997e+01 1.20220000e+03]\n", + " [ 4.41400000e+02 1.20220000e+03]\n", + " [ 7.99800000e+02 1.20220000e+03]\n", + " [ 1.15820000e+03 1.20220000e+03]\n", + " [ 1.51660000e+03 1.20220000e+03]\n", + " [ 1.87500000e+03 1.20220000e+03]\n", + " [ 8.30000001e+01 1.56060000e+03]\n", + " [ 4.41400000e+02 1.56060000e+03]\n", + " [ 7.99800000e+02 1.56060000e+03]\n", + " [ 1.15820000e+03 1.56060000e+03]\n", + " [ 1.51660000e+03 1.56060000e+03]\n", + " [ 1.87500000e+03 1.56060000e+03]\n", + " [ 8.30000000e+01 1.91900000e+03]\n", + " [ 4.41400000e+02 1.91900000e+03]\n", + " [ 7.99800000e+02 1.91900000e+03]\n", + " [ 1.15820000e+03 1.91900000e+03]\n", + " [ 1.51660000e+03 1.91900000e+03]\n", + " [ 1.87500000e+03 1.91900000e+03]]\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "DEBUG:root:radec2pix: fitpx: [[4271.49999985 4155.49999985]\n", + " [4271.49999998 3863.07142855]\n", + " [4271.50000002 3570.64285716]\n", + " [4271.49999976 3278.21428558]\n", + " [4271.50000012 2985.78571434]\n", + " [4271.50000004 2693.35714287]\n", + " [4271.50000005 2400.92857144]\n", + " [4271.49999991 2108.5 ]\n", + " [4271.49999985 4155.49999985]\n", + " [3979.07142858 4155.50000001]\n", + " [3686.64285722 4155.5000001 ]\n", + " [3394.21428584 4155.50000021]\n", + " [3101.78571415 4155.49999972]\n", + " [2809.35714289 4155.50000011]\n", + " [2516.92857142 4155.49999998]\n", + " [2224.50000001 4155.50000022]\n", + " [4271.49999991 2108.5 ]\n", + " [3979.07142843 2108.5 ]\n", + " [3686.6428569 2108.49999999]\n", + " [3394.21428586 2108.5 ]\n", + " [3101.78571453 2108.50000001]\n", + " [2809.35714306 2108.50000001]\n", + " [2516.9285717 2108.50000003]\n", + " [2224.49999984 2108.49999993]\n", + " [2224.50000001 4155.50000022]\n", + " [2224.5 3863.07142862]\n", + " [2224.49999998 3570.64285684]\n", + " [2224.50000001 3278.21428585]\n", + " [2224.50000002 2985.78571445]\n", + " [2224.5 2693.35714285]\n", + " [2224.49999995 2400.92857125]\n", + " [2224.49999984 2108.49999993]\n", + " [4270.49999995 4027.99999996]\n", + " [4270.50000001 3669.6 ]\n", + " [4270.4999998 3311.19999989]\n", + " [4270.50000006 2952.80000003]\n", + " [4270.50000002 2594.40000001]\n", + " [4270.49999985 2235.99999999]\n", + " [4144.00000023 4154.50000023]\n", + " [3785.60000021 4154.50000026]\n", + " [3427.20000017 4154.50000028]\n", + " [3068.79999989 4154.49999975]\n", + " [2710.40000004 4154.50000013]\n", + " [2351.99999998 4154.49999985]\n", + " [4143.99999992 2109.5 ]\n", + " [3785.59999985 2109.5 ]\n", + " [3427.19999998 2109.5 ]\n", + " [3068.80000001 2109.5 ]\n", + " [2710.40000021 2109.50000002]\n", + " [2352.00000017 2109.50000003]\n", + " [2225.5 4027.99999993]\n", + " [2225.49999998 3669.59999975]\n", + " [2225.50000001 3311.20000015]\n", + " [2225.5 2952.8 ]\n", + " [2225.49999998 2594.39999987]\n", + " [2225.50000008 2236.00000013]\n", + " [4270.50000018 4154.50000018]\n", + " [4270.50000018 4154.50000018]\n", + " [2225.49999981 2109.49999992]\n", + " [2225.49999981 2109.49999992]\n", + " [4143.99999987 4027.99999987]\n", + " [3785.59999992 4027.9999999 ]\n", + " [3427.2000001 4028.00000015]\n", + " [3068.80000011 4028.00000023]\n", + " [2710.39999995 4027.99999982]\n", + " [2351.99999998 4027.99999985]\n", + " [4144.00000018 3669.60000014]\n", + " [3785.5999999 3669.59999991]\n", + " [3427.19999994 3669.59999993]\n", + " [3068.79999994 3669.5999999 ]\n", + " [2710.39999997 3669.59999991]\n", + " [2351.99999997 3669.5999998 ]\n", + " [4143.99999973 3311.19999984]\n", + " [3785.60000019 3311.20000014]\n", + " [3427.1999998 3311.19999981]\n", + " [3068.79999976 3311.19999969]\n", + " [2710.39999985 3311.19999967]\n", + " [2352.00000003 3311.20000016]\n", + " [4144.00000026 2952.80000011]\n", + " [3785.6000001 2952.80000005]\n", + " [3427.20000009 2952.80000006]\n", + " [3068.8000003 2952.80000028]\n", + " [2710.39999986 2952.79999979]\n", + " [2352.00000001 2952.80000004]\n", + " [4143.99999994 2594.39999998]\n", + " [3785.6 2594.4 ]\n", + " [3427.19999999 2594.39999999]\n", + " [3068.79999999 2594.39999999]\n", + " [2710.40000015 2594.40000014]\n", + " [2351.99999993 2594.39999983]\n", + " [4143.99999995 2236. ]\n", + " [3785.59999975 2235.99999997]\n", + " [3427.19999971 2235.99999996]\n", + " [3068.80000003 2236.00000001]\n", + " [2710.39999999 2236. ]\n", + " [2352.00000022 2236.00000016]]\n", + "DEBUG:root:fitpix2pix: ccdpx: shape: (96, 2)\n", + "DEBUG:root:fitpix2pix: visCut: True\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "44.9988900584395 3.2721240519727375\n" + ] + }, + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
ticrowcolindex
000.50.5000000
110.5292.9285711
220.5585.3571432
330.5877.7857143
440.51170.2142864
...............
9191486.41920.00000091
9292844.81920.00000092
93931203.21920.00000093
94941561.61920.00000094
95951920.01920.00000095
\n", + "

96 rows × 4 columns

\n", + "
" + ], + "text/plain": [ + " tic row col index\n", + "0 0 0.5 0.500000 0\n", + "1 1 0.5 292.928571 1\n", + "2 2 0.5 585.357143 2\n", + "3 3 0.5 877.785714 3\n", + "4 4 0.5 1170.214286 4\n", + ".. ... ... ... ...\n", + "91 91 486.4 1920.000000 91\n", + "92 92 844.8 1920.000000 92\n", + "93 93 1203.2 1920.000000 93\n", + "94 94 1561.6 1920.000000 94\n", + "95 95 1920.0 1920.000000 95\n", + "\n", + "[96 rows x 4 columns]" + ] + }, + "execution_count": 347, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "from tesspoint import TESSPoint, footprint\n", + "\n", + "SectorCameraCCD=(68,4,1)\n", + "\n", + "Sector, Camera, CCD = SectorCameraCCD\n", + "\n", + "dir_testfiles='/Users/tapritc2/tessgi/tesspoint/TESSPoint_CreateTestFiles/testfiles'\n", + "fprfile=\"/Users/tapritc2/tessgi/tesspoint/TESSPoint_CreateTestFiles/footprint_input.dat\"\n", + "footprint_df=pd.read_csv(fprfile,delimiter=' ',names=['tic','row','col'],index_col=False)\n", + "\n", + "pointing=TESSPoint(Sector,Camera,CCD)\n", + "\n", + "farr_pix=np.array([footprint_df.row.to_numpy(),footprint_df.col.to_numpy()]).T\n", + "\n", + "footprint_radec=pointing.pix2radec(farr_pix)\n", + "\n", + "radec_df = pd.DataFrame({'tic':footprint_df.tic.to_numpy(),\n", + " 'ra':footprint_radec[0],\n", + " 'dec':footprint_radec[1]})\n", + "radec_df['index']=test_df['tic']\n", + "\n", + "\n", + "radec_arr=np.array([radec_df.ra.to_numpy(),radec_df.dec.to_numpy()]).T\n", + " \n", + "output_pix_arr=pointing.radec2pix(radec_arr)\n", + "\n", + "output_pix_df = pd.DataFrame({'tic':input_df.tic.to_numpy(),\n", + " 'row':output_pix_arr[0][:,0],\n", + " 'col':output_pix_arr[0][:,1]})\n", + "output_pix_df['index']=output_df['tic']\n", + "\n", + "benchmark_pix_df = test_radec2pix_SectorCameraCCD(SectorCameraCCD)\n", + "\n", + "idx = output_pix_df.index.intersection(footprint_df.index)\n", + "dr = abs(output_pix_df.loc[idx, 'row'] - footprint_df.loc[idx, 'row'])\n", + "dc = abs(output_pix_df.loc[idx, 'col'] - footprint_df.loc[idx, 'col'])\n", + "\n", + "print(max(dr), max(dc))\n", + "benchmark_pix_df " + ] + }, + { + "cell_type": "markdown", + "id": "877abd42", + "metadata": {}, + "source": [ + "# OK, yeah, so we're off by ~ 45 pixels x 3 pixels for a bad case" + ] + }, + { + "cell_type": "code", + "execution_count": 342, + "id": "5cd00476", + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
dra_meddra_maxdra_stdddec_medddec_maxddec_stdSectorCameraCCD
00.3187390.4122880.0561520.1711950.1987490.0182586844
10.4680960.6989430.0807470.1143580.1730610.0328166843
20.5694821.0709200.2319970.1882840.2444900.0469896842
30.2336500.4207690.1023280.2193650.2437140.0196796841
40.1011670.2379250.0640600.2468400.2615220.0081246834
..............................
10830.4921040.6801710.0771230.1089830.1697320.036136121
10840.2784590.3043120.0157820.0758640.0956810.011471114
10850.2527630.2760180.0145250.0996470.1107250.006949113
10860.2803310.3244720.0253860.1156210.1379390.011277112
10870.3127480.3465320.0198770.0788600.1141110.021767111
\n", + "

1088 rows × 9 columns

\n", + "
" + ], + "text/plain": [ + " dra_med dra_max dra_std ddec_med ddec_max ddec_std Sector \\\n", + "0 0.318739 0.412288 0.056152 0.171195 0.198749 0.018258 68 \n", + "1 0.468096 0.698943 0.080747 0.114358 0.173061 0.032816 68 \n", + "2 0.569482 1.070920 0.231997 0.188284 0.244490 0.046989 68 \n", + "3 0.233650 0.420769 0.102328 0.219365 0.243714 0.019679 68 \n", + "4 0.101167 0.237925 0.064060 0.246840 0.261522 0.008124 68 \n", + "... ... ... ... ... ... ... ... \n", + "1083 0.492104 0.680171 0.077123 0.108983 0.169732 0.036136 1 \n", + "1084 0.278459 0.304312 0.015782 0.075864 0.095681 0.011471 1 \n", + "1085 0.252763 0.276018 0.014525 0.099647 0.110725 0.006949 1 \n", + "1086 0.280331 0.324472 0.025386 0.115621 0.137939 0.011277 1 \n", + "1087 0.312748 0.346532 0.019877 0.078860 0.114111 0.021767 1 \n", + "\n", + " Camera CCD \n", + "0 4 4 \n", + "1 4 3 \n", + "2 4 2 \n", + "3 4 1 \n", + "4 3 4 \n", + "... ... .. \n", + "1083 2 1 \n", + "1084 1 4 \n", + "1085 1 3 \n", + "1086 1 2 \n", + "1087 1 1 \n", + "\n", + "[1088 rows x 9 columns]" + ] + }, + "execution_count": 342, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "test_pix2radec_df" + ] + }, + { + "cell_type": "code", + "execution_count": 373, + "id": "378d0848", + "metadata": {}, + "outputs": [], + "source": [ + "def test_radec2pix_df(radec_df, SectorCameraCCD):\n", + " Sector, Camera, CCD = SectorCameraCCD\n", + " pointing=TESSPoint(Sector,Camera,CCD)\n", + " \n", + " radec_arr=np.array([radec_df.ra.to_numpy(),radec_df.dec.to_numpy()]).T\n", + " \n", + " pix_arr=pointing.radec2pix(radec_arr)\n", + " \n", + " pix_df = pd.DataFrame({'tic':input_df.tic.to_numpy(),\n", + " 'row':pix_arr[0][:,0],\n", + " 'col':pix_arr[0][:,1]})\n", + " pix_df['index']=pix_df['tic']\n", + " \n", + " return pix_df" + ] + }, + { + "cell_type": "code", + "execution_count": 374, + "id": "357bee6a", + "metadata": {}, + "outputs": [ + { + "name": "stderr", + "output_type": "stream", + "text": [ + "DEBUG:root:fp_optics: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:cartToSphere: vec: [[ 0.46753168 -0.48195399 -0.74103609]\n", + " [ 0.47540623 -0.50080359 -0.72331506]\n", + " [ 0.48320441 -0.51958796 -0.70465726]\n", + " [ 0.4908663 -0.53821399 -0.68511019]\n", + " [ 0.49833563 -0.55659227 -0.66473051]\n", + " [ 0.50556196 -0.57463796 -0.64358241]\n", + " [ 0.51250165 -0.59227105 -0.62173713]\n", + " [ 0.51911804 -0.60941667 -0.59927271]\n", + " [ 0.46753168 -0.48195399 -0.74103609]\n", + " [ 0.48897152 -0.46586486 -0.73748002]\n", + " [ 0.51053901 -0.44918655 -0.7331994 ]\n", + " [ 0.53212157 -0.43196142 -0.72818677]\n", + " [ 0.55360944 -0.41423767 -0.7224429 ]\n", + " [ 0.5748982 -0.39606928 -0.71597569]\n", + " [ 0.59588988 -0.377516 -0.70879964]\n", + " [ 0.61649326 -0.35864327 -0.70093585]\n", + " [ 0.51911804 -0.60941667 -0.59927271]\n", + " [ 0.54201985 -0.59402809 -0.59442839]\n", + " [ 0.56494088 -0.5778543 -0.58900442]\n", + " [ 0.58776417 -0.56093474 -0.582997 ]\n", + " [ 0.61038026 -0.54331372 -0.57640796]\n", + " [ 0.63268531 -0.52504199 -0.56924531]\n", + " [ 0.65457961 -0.50617819 -0.56152397]\n", + " [ 0.67596766 -0.4867895 -0.55326639]\n", + " [ 0.61649326 -0.35864327 -0.70093585]\n", + " [ 0.62621581 -0.37720053 -0.68232948]\n", + " [ 0.63562784 -0.39581989 -0.66280002]\n", + " [ 0.64466342 -0.41440947 -0.64239697]\n", + " [ 0.653264 -0.43288271 -0.62117526]\n", + " [ 0.66137764 -0.45115682 -0.59919708]\n", + " [ 0.66895861 -0.4691516 -0.57653374]\n", + " [ 0.67596766 -0.4867895 -0.55326639]\n", + " [ 0.471044 -0.49012058 -0.73341623]\n", + " [ 0.48065265 -0.513191 -0.7110612 ]\n", + " [ 0.49008663 -0.53607066 -0.68734514]\n", + " [ 0.49924064 -0.55859337 -0.66236866]\n", + " [ 0.50802195 -0.58060292 -0.63624991]\n", + " [ 0.51635311 -0.60195416 -0.60912286]\n", + " [ 0.47688414 -0.47507853 -0.73951464]\n", + " [ 0.50326225 -0.4549586 -0.73466984]\n", + " [ 0.52972004 -0.43399496 -0.72872838]\n", + " [ 0.55605404 -0.41227393 -0.72168838]\n", + " [ 0.58207216 -0.38989488 -0.71356428]\n", + " [ 0.60759681 -0.3669702 -0.70438554]\n", + " [ 0.52907097 -0.60274813 -0.59730946]\n", + " [ 0.55716735 -0.58335451 -0.59098397]\n", + " [ 0.58517552 -0.56282027 -0.58378331]\n", + " [ 0.61289095 -0.54122494 -0.57570848]\n", + " [ 0.64012226 -0.51866211 -0.5667743 ]\n", + " [ 0.66668761 -0.49524332 -0.55701139]\n", + " [ 0.62069599 -0.36678578 -0.69296802]\n", + " [ 0.63241115 -0.38958388 -0.66953755]\n", + " [ 0.64359369 -0.4123832 -0.64476915]\n", + " [ 0.65413278 -0.43502223 -0.61876163]\n", + " [ 0.66393275 -0.45734841 -0.59162973]\n", + " [ 0.67291209 -0.47921512 -0.56350882]\n", + " [ 0.46763164 -0.48196448 -0.74096618]\n", + " [ 0.46763164 -0.48196448 -0.74096618]\n", + " [ 0.67587253 -0.48679699 -0.55337601]\n", + " [ 0.67587253 -0.48679699 -0.55337601]\n", + " [ 0.48036054 -0.4832468 -0.73193325]\n", + " [ 0.50691308 -0.46314661 -0.72700368]\n", + " [ 0.53353196 -0.4421806 -0.72098542]\n", + " [ 0.56001188 -0.42043479 -0.71387764]\n", + " [ 0.58616019 -0.39800848 -0.70569503]\n", + " [ 0.61179908 -0.37501425 -0.69646694]\n", + " [ 0.49013547 -0.50635791 -0.70948495]\n", + " [ 0.51713702 -0.48633234 -0.70430829]\n", + " [ 0.54416682 -0.46538021 -0.69807144]\n", + " [ 0.57101711 -0.4435868 -0.69077508]\n", + " [ 0.59749502 -0.42105119 -0.68243358]\n", + " [ 0.62342243 -0.39788672 -0.6730755 ]\n", + " [ 0.49971047 -0.5292868 -0.68567115]\n", + " [ 0.52708895 -0.50936255 -0.68024042]\n", + " [ 0.5544602 -0.48845474 -0.67378472]\n", + " [ 0.58161662 -0.46664768 -0.66630477]\n", + " [ 0.60836612 -0.44403995 -0.65781395]\n", + " [ 0.63453012 -0.42074546 -0.64834002]\n", + " [ 0.50897842 -0.55186701 -0.6605935 ]\n", + " [ 0.53665904 -0.53207063 -0.65490298]\n", + " [ 0.56430182 -0.51123819 -0.64822756]\n", + " [ 0.59170042 -0.48945263 -0.64056751]\n", + " [ 0.6186635 -0.46681144 -0.63193556]\n", + " [ 0.64501164 -0.44342858 -0.62235929]\n", + " [ 0.51784603 -0.5739422 -0.63437043]\n", + " [ 0.54575381 -0.55430002 -0.62841408]\n", + " [ 0.57359872 -0.5335741 -0.62151684]\n", + " [ 0.60117565 -0.51184578 -0.61367886]\n", + " [ 0.62829356 -0.48921095 -0.60491309]\n", + " [ 0.65477191 -0.4657829 -0.59524788]\n", + " [ 0.52623584 -0.59536689 -0.60713599]\n", + " [ 0.55429617 -0.57590419 -0.60090775]\n", + " [ 0.582274 -0.55531488 -0.59378646]\n", + " [ 0.60996481 -0.53367888 -0.58577281]\n", + " [ 0.63717737 -0.51109035 -0.57688098]\n", + " [ 0.6637301 -0.48766132 -0.5671409 ]]\n", + "DEBUG:root:radec2pix: curVec: [[ 0.46753168 -0.48195399 -0.74103609]\n", + " [ 0.47540623 -0.50080359 -0.72331506]\n", + " [ 0.48320441 -0.51958796 -0.70465726]\n", + " [ 0.4908663 -0.53821399 -0.68511019]\n", + " [ 0.49833563 -0.55659227 -0.66473051]\n", + " [ 0.50556196 -0.57463796 -0.64358241]\n", + " [ 0.51250165 -0.59227105 -0.62173713]\n", + " [ 0.51911804 -0.60941667 -0.59927271]\n", + " [ 0.46753168 -0.48195399 -0.74103609]\n", + " [ 0.48897152 -0.46586486 -0.73748002]\n", + " [ 0.51053901 -0.44918655 -0.7331994 ]\n", + " [ 0.53212157 -0.43196142 -0.72818677]\n", + " [ 0.55360944 -0.41423767 -0.7224429 ]\n", + " [ 0.5748982 -0.39606928 -0.71597569]\n", + " [ 0.59588988 -0.377516 -0.70879964]\n", + " [ 0.61649326 -0.35864327 -0.70093585]\n", + " [ 0.51911804 -0.60941667 -0.59927271]\n", + " [ 0.54201985 -0.59402809 -0.59442839]\n", + " [ 0.56494088 -0.5778543 -0.58900442]\n", + " [ 0.58776417 -0.56093474 -0.582997 ]\n", + " [ 0.61038026 -0.54331372 -0.57640796]\n", + " [ 0.63268531 -0.52504199 -0.56924531]\n", + " [ 0.65457961 -0.50617819 -0.56152397]\n", + " [ 0.67596766 -0.4867895 -0.55326639]\n", + " [ 0.61649326 -0.35864327 -0.70093585]\n", + " [ 0.62621581 -0.37720053 -0.68232948]\n", + " [ 0.63562784 -0.39581989 -0.66280002]\n", + " [ 0.64466342 -0.41440947 -0.64239697]\n", + " [ 0.653264 -0.43288271 -0.62117526]\n", + " [ 0.66137764 -0.45115682 -0.59919708]\n", + " [ 0.66895861 -0.4691516 -0.57653374]\n", + " [ 0.67596766 -0.4867895 -0.55326639]\n", + " [ 0.471044 -0.49012058 -0.73341623]\n", + " [ 0.48065265 -0.513191 -0.7110612 ]\n", + " [ 0.49008663 -0.53607066 -0.68734514]\n", + " [ 0.49924064 -0.55859337 -0.66236866]\n", + " [ 0.50802195 -0.58060292 -0.63624991]\n", + " [ 0.51635311 -0.60195416 -0.60912286]\n", + " [ 0.47688414 -0.47507853 -0.73951464]\n", + " [ 0.50326225 -0.4549586 -0.73466984]\n", + " [ 0.52972004 -0.43399496 -0.72872838]\n", + " [ 0.55605404 -0.41227393 -0.72168838]\n", + " [ 0.58207216 -0.38989488 -0.71356428]\n", + " [ 0.60759681 -0.3669702 -0.70438554]\n", + " [ 0.52907097 -0.60274813 -0.59730946]\n", + " [ 0.55716735 -0.58335451 -0.59098397]\n", + " [ 0.58517552 -0.56282027 -0.58378331]\n", + " [ 0.61289095 -0.54122494 -0.57570848]\n", + " [ 0.64012226 -0.51866211 -0.5667743 ]\n", + " [ 0.66668761 -0.49524332 -0.55701139]\n", + " [ 0.62069599 -0.36678578 -0.69296802]\n", + " [ 0.63241115 -0.38958388 -0.66953755]\n", + " [ 0.64359369 -0.4123832 -0.64476915]\n", + " [ 0.65413278 -0.43502223 -0.61876163]\n", + " [ 0.66393275 -0.45734841 -0.59162973]\n", + " [ 0.67291209 -0.47921512 -0.56350882]\n", + " [ 0.46763164 -0.48196448 -0.74096618]\n", + " [ 0.46763164 -0.48196448 -0.74096618]\n", + " [ 0.67587253 -0.48679699 -0.55337601]\n", + " [ 0.67587253 -0.48679699 -0.55337601]\n", + " [ 0.48036054 -0.4832468 -0.73193325]\n", + " [ 0.50691308 -0.46314661 -0.72700368]\n", + " [ 0.53353196 -0.4421806 -0.72098542]\n", + " [ 0.56001188 -0.42043479 -0.71387764]\n", + " [ 0.58616019 -0.39800848 -0.70569503]\n", + " [ 0.61179908 -0.37501425 -0.69646694]\n", + " [ 0.49013547 -0.50635791 -0.70948495]\n", + " [ 0.51713702 -0.48633234 -0.70430829]\n", + " [ 0.54416682 -0.46538021 -0.69807144]\n", + " [ 0.57101711 -0.4435868 -0.69077508]\n", + " [ 0.59749502 -0.42105119 -0.68243358]\n", + " [ 0.62342243 -0.39788672 -0.6730755 ]\n", + " [ 0.49971047 -0.5292868 -0.68567115]\n", + " [ 0.52708895 -0.50936255 -0.68024042]\n", + " [ 0.5544602 -0.48845474 -0.67378472]\n", + " [ 0.58161662 -0.46664768 -0.66630477]\n", + " [ 0.60836612 -0.44403995 -0.65781395]\n", + " [ 0.63453012 -0.42074546 -0.64834002]\n", + " [ 0.50897842 -0.55186701 -0.6605935 ]\n", + " [ 0.53665904 -0.53207063 -0.65490298]\n", + " [ 0.56430182 -0.51123819 -0.64822756]\n", + " [ 0.59170042 -0.48945263 -0.64056751]\n", + " [ 0.6186635 -0.46681144 -0.63193556]\n", + " [ 0.64501164 -0.44342858 -0.62235929]\n", + " [ 0.51784603 -0.5739422 -0.63437043]\n", + " [ 0.54575381 -0.55430002 -0.62841408]\n", + " [ 0.57359872 -0.5335741 -0.62151684]\n", + " [ 0.60117565 -0.51184578 -0.61367886]\n", + " [ 0.62829356 -0.48921095 -0.60491309]\n", + " [ 0.65477191 -0.4657829 -0.59524788]\n", + " [ 0.52623584 -0.59536689 -0.60713599]\n", + " [ 0.55429617 -0.57590419 -0.60090775]\n", + " [ 0.582274 -0.55531488 -0.59378646]\n", + " [ 0.60996481 -0.53367888 -0.58577281]\n", + " [ 0.63717737 -0.51109035 -0.57688098]\n", + " [ 0.6637301 -0.48766132 -0.5671409 ]]\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "DEBUG:root:radec2pix: curVec Shape: (96, 3)\n", + "DEBUG:root:radec2pix: camVec: [[-0.20204795 -0.20384275 -0.20537977 -0.20665336 -0.20766037 -0.20839873\n", + " -0.20886681 -0.20906344 -0.20204795 -0.17550395 -0.14827671 -0.1204705\n", + " -0.09219383 -0.06355724 -0.0346725 -0.0056523 -0.20906344 -0.18158941\n", + " -0.15342075 -0.12466389 -0.09542485 -0.06581173 -0.03593689 -0.00591752\n", + " -0.0056523 -0.00571148 -0.00576384 -0.00580928 -0.00584762 -0.00587862\n", + " -0.005902 -0.00591752 -0.20277181 -0.20479815 -0.20643148 -0.20766507\n", + " -0.20849501 -0.20891851 -0.19057126 -0.15756559 -0.1236366 -0.08898247\n", + " -0.05380663 -0.01831525 -0.19717675 -0.16302392 -0.1279336 -0.09210107\n", + " -0.05572561 -0.01901612 -0.00577867 -0.00584761 -0.00590602 -0.00595361\n", + " -0.00598993 -0.00601447 -0.20196502 -0.20196502 -0.00602025 -0.00602025\n", + " -0.19133232 -0.15819354 -0.12412854 -0.08933685 -0.05402234 -0.01839143\n", + " -0.19324256 -0.15976849 -0.12536309 -0.09022758 -0.05456572 -0.01858445\n", + " -0.19478173 -0.16103821 -0.12636082 -0.09095004 -0.05500849 -0.01874354\n", + " -0.19594453 -0.16199956 -0.12711912 -0.09150177 -0.05534873 -0.01886792\n", + " -0.19672741 -0.16264888 -0.12763368 -0.09187843 -0.05558313 -0.01895629\n", + " -0.1971274 -0.16298226 -0.12789972 -0.09207523 -0.05570812 -0.01900726]\n", + " [-0.20190844 -0.17536095 -0.14813111 -0.12032321 -0.09204577 -0.06340933\n", + " -0.03452568 -0.00550749 -0.20190844 -0.20368567 -0.20520504 -0.20646096\n", + " -0.20745037 -0.20817125 -0.20862206 -0.20880169 -0.00550749 -0.00554587\n", + " -0.00557732 -0.0056018 -0.00561923 -0.00562944 -0.00563224 -0.00562748\n", + " -0.20880169 -0.18132045 -0.15314561 -0.12438361 -0.09514048 -0.06552433\n", + " -0.03564759 -0.00562748 -0.19043006 -0.15742071 -0.1234894 -0.08883431\n", + " -0.05365892 -0.01816937 -0.20262464 -0.20462939 -0.20624106 -0.20745307\n", + " -0.20826164 -0.20866411 -0.00562481 -0.00566816 -0.0057009 -0.00572287\n", + " -0.00573375 -0.00573323 -0.19691179 -0.16275082 -0.12765392 -0.09181637\n", + " -0.05543751 -0.01872633 -0.20182544 -0.20182544 -0.00573027 -0.00573027\n", + " -0.19118343 -0.19307178 -0.19458901 -0.19572994 -0.19649117 -0.19686985\n", + " -0.15804069 -0.15959296 -0.16083995 -0.16177864 -0.16240554 -0.16271684\n", + " -0.1239731 -0.12518423 -0.12615847 -0.12689336 -0.12738476 -0.12762799\n", + " -0.08918022 -0.09004681 -0.09074507 -0.09127268 -0.09162544 -0.09179872\n", + " -0.05386592 -0.05438452 -0.05480241 -0.05511785 -0.05532767 -0.05542845\n", + " -0.01823664 -0.01840428 -0.01853789 -0.01863685 -0.01870001 -0.01872612]\n", + " [ 0.9583369 0.96317011 0.96740701 0.97098749 0.97386074 0.97598628\n", + " 0.97733445 0.97788657 0.9583369 0.9631773 0.96742178 0.97101016\n", + " 0.97389149 0.97602521 0.97738153 0.97794167 0.97788657 0.9833588\n", + " 0.98814522 0.99218322 0.99542078 0.99781618 0.99933819 0.99996666\n", + " 0.97794167 0.98340748 0.98818682 0.9922172 0.99544668 0.99783366\n", + " 0.99934699 0.99996666 0.9605311 0.96606234 0.97063712 0.97415794\n", + " 0.97655033 0.97776425 0.96053415 0.96607448 0.97065886 0.97418958\n", + " 0.976592 0.97781585 0.98035182 0.98660584 0.99176635 0.99573322\n", + " 0.99842966 0.99980274 0.98040418 0.98664988 0.99180119 0.99575816\n", + " 0.99844419 0.99980656 0.95837186 0.95837186 0.99996546 0.99996546\n", + " 0.96272573 0.96834812 0.97299909 0.97658011 0.97901625 0.98025712\n", + " 0.96833902 0.97416842 0.97898652 0.98269357 0.9852142 0.98649777\n", + " 0.97298034 0.97897682 0.98392936 0.9877379 0.99032681 0.99164499\n", + " 0.9765514 0.98267376 0.98772773 0.99161319 0.99425414 0.99559881\n", + " 0.97897742 0.98518408 0.99030618 0.99424362 0.99691994 0.9982827\n", + " 0.98020825 0.98645733 0.99161384 0.99557763 0.99827196 0.99964396]]\n", + "DEBUG:root:radec2pix: camVec Shape: (3, 96)\n", + "DEBUG:root:cartToSphere: vec: [[-0.20204795 -0.20190844 0.9583369 ]\n", + " [-0.20384275 -0.17536095 0.96317011]\n", + " [-0.20537977 -0.14813111 0.96740701]\n", + " [-0.20665336 -0.12032321 0.97098749]\n", + " [-0.20766037 -0.09204577 0.97386074]\n", + " [-0.20839873 -0.06340933 0.97598628]\n", + " [-0.20886681 -0.03452568 0.97733445]\n", + " [-0.20906344 -0.00550749 0.97788657]\n", + " [-0.20204795 -0.20190844 0.9583369 ]\n", + " [-0.17550395 -0.20368567 0.9631773 ]\n", + " [-0.14827671 -0.20520504 0.96742178]\n", + " [-0.1204705 -0.20646096 0.97101016]\n", + " [-0.09219383 -0.20745037 0.97389149]\n", + " [-0.06355724 -0.20817125 0.97602521]\n", + " [-0.0346725 -0.20862206 0.97738153]\n", + " [-0.0056523 -0.20880169 0.97794167]\n", + " [-0.20906344 -0.00550749 0.97788657]\n", + " [-0.18158941 -0.00554587 0.9833588 ]\n", + " [-0.15342075 -0.00557732 0.98814522]\n", + " [-0.12466389 -0.0056018 0.99218322]\n", + " [-0.09542485 -0.00561923 0.99542078]\n", + " [-0.06581173 -0.00562944 0.99781618]\n", + " [-0.03593689 -0.00563224 0.99933819]\n", + " [-0.00591752 -0.00562748 0.99996666]\n", + " [-0.0056523 -0.20880169 0.97794167]\n", + " [-0.00571148 -0.18132045 0.98340748]\n", + " [-0.00576384 -0.15314561 0.98818682]\n", + " [-0.00580928 -0.12438361 0.9922172 ]\n", + " [-0.00584762 -0.09514048 0.99544668]\n", + " [-0.00587862 -0.06552433 0.99783366]\n", + " [-0.005902 -0.03564759 0.99934699]\n", + " [-0.00591752 -0.00562748 0.99996666]\n", + " [-0.20277181 -0.19043006 0.9605311 ]\n", + " [-0.20479815 -0.15742071 0.96606234]\n", + " [-0.20643148 -0.1234894 0.97063712]\n", + " [-0.20766507 -0.08883431 0.97415794]\n", + " [-0.20849501 -0.05365892 0.97655033]\n", + " [-0.20891851 -0.01816937 0.97776425]\n", + " [-0.19057126 -0.20262464 0.96053415]\n", + " [-0.15756559 -0.20462939 0.96607448]\n", + " [-0.1236366 -0.20624106 0.97065886]\n", + " [-0.08898247 -0.20745307 0.97418958]\n", + " [-0.05380663 -0.20826164 0.976592 ]\n", + " [-0.01831525 -0.20866411 0.97781585]\n", + " [-0.19717675 -0.00562481 0.98035182]\n", + " [-0.16302392 -0.00566816 0.98660584]\n", + " [-0.1279336 -0.0057009 0.99176635]\n", + " [-0.09210107 -0.00572287 0.99573322]\n", + " [-0.05572561 -0.00573375 0.99842966]\n", + " [-0.01901612 -0.00573323 0.99980274]\n", + " [-0.00577867 -0.19691179 0.98040418]\n", + " [-0.00584761 -0.16275082 0.98664988]\n", + " [-0.00590602 -0.12765392 0.99180119]\n", + " [-0.00595361 -0.09181637 0.99575816]\n", + " [-0.00598993 -0.05543751 0.99844419]\n", + " [-0.00601447 -0.01872633 0.99980656]\n", + " [-0.20196502 -0.20182544 0.95837186]\n", + " [-0.20196502 -0.20182544 0.95837186]\n", + " [-0.00602025 -0.00573027 0.99996546]\n", + " [-0.00602025 -0.00573027 0.99996546]\n", + " [-0.19133232 -0.19118343 0.96272573]\n", + " [-0.15819354 -0.19307178 0.96834812]\n", + " [-0.12412854 -0.19458901 0.97299909]\n", + " [-0.08933685 -0.19572994 0.97658011]\n", + " [-0.05402234 -0.19649117 0.97901625]\n", + " [-0.01839143 -0.19686985 0.98025712]\n", + " [-0.19324256 -0.15804069 0.96833902]\n", + " [-0.15976849 -0.15959296 0.97416842]\n", + " [-0.12536309 -0.16083995 0.97898652]\n", + " [-0.09022758 -0.16177864 0.98269357]\n", + " [-0.05456572 -0.16240554 0.9852142 ]\n", + " [-0.01858445 -0.16271684 0.98649777]\n", + " [-0.19478173 -0.1239731 0.97298034]\n", + " [-0.16103821 -0.12518423 0.97897682]\n", + " [-0.12636082 -0.12615847 0.98392936]\n", + " [-0.09095004 -0.12689336 0.9877379 ]\n", + " [-0.05500849 -0.12738476 0.99032681]\n", + " [-0.01874354 -0.12762799 0.99164499]\n", + " [-0.19594453 -0.08918022 0.9765514 ]\n", + " [-0.16199956 -0.09004681 0.98267376]\n", + " [-0.12711912 -0.09074507 0.98772773]\n", + " [-0.09150177 -0.09127268 0.99161319]\n", + " [-0.05534873 -0.09162544 0.99425414]\n", + " [-0.01886792 -0.09179872 0.99559881]\n", + " [-0.19672741 -0.05386592 0.97897742]\n", + " [-0.16264888 -0.05438452 0.98518408]\n", + " [-0.12763368 -0.05480241 0.99030618]\n", + " [-0.09187843 -0.05511785 0.99424362]\n", + " [-0.05558313 -0.05532767 0.99691994]\n", + " [-0.01895629 -0.05542845 0.9982827 ]\n", + " [-0.1971274 -0.01823664 0.98020825]\n", + " [-0.16298226 -0.01840428 0.98645733]\n", + " [-0.12789972 -0.01853789 0.99161384]\n", + " [-0.09207523 -0.01863685 0.99557763]\n", + " [-0.05570812 -0.01870001 0.99827196]\n", + " [-0.01900726 -0.01872612 0.99964396]]\n", + "DEBUG:root:radec2pix: lng: [224.98021276 220.70460792 215.80120244 210.20995816 203.90538602\n", + " 196.92339349 189.38611661 181.50902928 224.98021276 229.25046146\n", + " 234.14894122 239.73632879 246.03897305 253.02192696 260.56382406\n", + " 268.44937256 181.50902928 181.74931138 182.08196138 182.57286997\n", + " 183.37005594 184.88909749 188.90726439 223.56087254 268.44937256\n", + " 268.19581484 267.84461414 267.32596992 266.4828509 264.87334327\n", + " 260.59910144 223.56087254 223.20220191 217.54813952 210.88828936\n", + " 203.16011878 194.43260774 184.97043415 226.75584583 232.40355969\n", + " 239.05831675 246.78414252 255.51379433 264.98378621 181.63401775\n", + " 181.99130915 182.551492 183.55560609 185.87464009 196.77768933\n", + " 268.31905143 267.94225864 267.35105076 266.28998595 263.83321287\n", + " 252.19416819 224.98019423 224.98019423 223.58637069 223.58637069\n", + " 224.97769884 230.6704916 237.4661538 245.46666179 254.62720031\n", + " 264.6629629 219.2775317 224.96850916 232.06616613 240.85061211\n", + " 251.42845625 263.48428752 212.47560724 217.85996931 224.95408687\n", + " 234.36917077 246.64389102 261.64522501 204.47170244 209.06732064\n", + " 215.52146814 224.92818403 238.86483234 258.38541642 195.31284139\n", + " 198.48826573 203.23736122 210.95953388 224.86802891 251.11952959\n", + " 185.28550127 186.44266122 188.24706706 191.4425864 198.5557843\n", + " 224.57311419]\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "DEBUG:root:radec2pix: lat: [73.40287254 74.40160822 75.33147595 76.1647861 76.87090393 77.4182732\n", + " 77.77793863 77.92827737 73.40287254 74.40313933 75.33481913 76.17021765\n", + " 76.87866289 77.42851546 77.79068601 77.94338127 77.92827737 79.53271446\n", + " 81.16890768 82.83138969 84.51471232 86.21273854 87.91537327 89.53211037\n", + " 77.94338127 79.54807865 81.18444974 82.84700897 84.53026112 86.22792904\n", + " 87.92928823 89.53211037 73.84882795 75.03024931 76.08108358 76.94608001\n", + " 77.56750397 77.8948114 73.84945685 75.03294307 76.08626267 76.95411055\n", + " 77.57859829 77.90891801 78.62340054 80.61182032 82.6424665 84.70528719\n", + " 86.78861981 88.86193973 78.63861925 80.62730191 82.65806959 84.7207949\n", + " 86.8035196 88.87300631 73.40988739 73.40988739 89.52378621 89.52378621\n", + " 74.30719813 75.54594919 76.65529663 77.57543226 78.24177958 78.59592621\n", + " 75.54385881 76.94874078 78.23342506 79.32495537 80.13501112 80.57393842\n", + " 76.65064433 78.23069852 79.71421177 81.01817084 82.02421929 82.5883641\n", + " 77.56778732 79.31882887 81.01443707 82.57425602 83.85498 84.62248108\n", + " 78.23086859 80.12494212 82.01570703 83.84935169 85.50190272 86.64167223\n", + " 78.58177425 80.55980207 82.57454312 84.60954667 86.63118993 88.471037 ]\n", + "DEBUG:root:optics_fp: rtanth: [44.6149432 41.63124041 38.91411966 36.52312626 34.52608153 32.99459609\n", + " 31.99559263 31.5796459 44.6149432 41.62672036 38.90444769 36.50766718\n", + " 34.50427491 32.96606926 31.96028738 31.53790937 31.5796459 27.19493935\n", + " 22.81089493 18.42798525 14.04727251 9.67174238 5.31421183 1.1918915\n", + " 31.53790937 27.15339293 22.76961306 18.38709662 14.00702952 9.63275356\n", + " 5.27868522 1.1918915 43.27374192 39.78835229 36.76155557 34.31491966\n", + " 32.57941383 31.67215578 43.27186089 39.78050974 36.74679192 34.29237859\n", + " 32.54858668 31.63315526 29.66825303 24.29486051 18.92294925 13.55428057\n", + " 8.19522954 2.89962143 29.6266147 24.25350565 18.88204245 13.5141877\n", + " 8.15706833 2.87141258 44.59373001 44.59373001 1.21309795 1.21309795\n", + " 41.91026043 38.29497276 35.13321363 32.55738339 30.71524831 29.74344459\n", + " 38.30099435 34.30745075 30.73823252 27.75751163 25.57191266 24.39608031\n", + " 35.14633919 30.74573414 26.70464246 23.21160146 20.54803415 19.06482952\n", + " 32.57862644 27.77412303 23.22153464 19.10183721 15.75828195 13.76842283\n", + " 30.74526622 25.59895319 20.57046828 15.77290965 11.49904101 8.57169538\n", + " 29.78218664 24.43386279 19.10108406 13.80188122 8.59855748 3.89630697]\n", + "DEBUG:root:optics_fp: cphi: [-0.70735094 -0.75808189 -0.81105154 -0.86418736 -0.91421587 -0.95669481\n", + " -0.98661171 -0.99965319 -0.70735094 -0.65275365 -0.58568022 -0.50398008\n", + " -0.40611515 -0.29200571 -0.16394884 -0.02706025 -0.99965319 -0.99953396\n", + " -0.99933988 -0.99899194 -0.99827069 -0.99636153 -0.98794024 -0.72464264\n", + " -0.02706025 -0.03148377 -0.03760971 -0.04665369 -0.06134729 -0.08935769\n", + " -0.16334143 -0.72464264 -0.72894232 -0.79284158 -0.85816985 -0.91940932\n", + " -0.96844147 -0.99623954 -0.68510867 -0.61009594 -0.51416537 -0.39419628\n", + " -0.25014691 -0.08743765 -0.99959336 -0.99939611 -0.99900862 -0.99807508\n", + " -0.99474822 -0.95743197 -0.02933388 -0.03590664 -0.04621642 -0.06470672\n", + " -0.10742305 -0.30579222 -0.70735117 -0.70735117 -0.72433589 -0.72433589\n", + " -0.70738195 -0.63377933 -0.53779773 -0.41522264 -0.2650984 -0.09301422\n", + " -0.77408853 -0.70749531 -0.61475106 -0.48708837 -0.31848856 -0.11347568\n", + " -0.84362012 -0.78951307 -0.70767318 -0.58256039 -0.39644473 -0.14530213\n", + " -0.91016597 -0.87404947 -0.81389788 -0.70799253 -0.5170588 -0.20132725\n", + " -0.96449825 -0.94838862 -0.91887826 -0.85753084 -0.7087336 -0.32359492\n", + " -0.99574804 -0.99368465 -0.98965873 -0.98012399 -0.94801427 -0.71235545]\n", + "DEBUG:root:optics_fp: sphi: [-0.70686254 -0.65215937 -0.5849747 -0.50317015 -0.40522753 -0.29109283\n", + " -0.1630869 -0.02633448 -0.70686254 -0.75757024 -0.81054222 -0.86371528\n", + " -0.91382191 -0.95641658 -0.98646884 -0.9996338 -0.02633448 -0.0305265\n", + " -0.03632909 -0.04488996 -0.05878466 -0.08522733 -0.15483565 -0.68912484\n", + " -0.9996338 -0.99950426 -0.9992925 -0.99891112 -0.99811648 -0.9959996\n", + " -0.9865696 -0.68912484 -0.68457512 -0.60942778 -0.51336586 -0.39330204\n", + " -0.24924108 -0.08664167 -0.72844087 -0.79232755 -0.85769107 -0.91902627\n", + " -0.96820789 -0.99616999 -0.02851512 -0.0347479 -0.04451722 -0.06201721\n", + " -0.10235226 -0.288659 -0.99956967 -0.99935515 -0.99893145 -0.99790432\n", + " -0.9942134 -0.95209827 -0.70686231 -0.70686231 -0.68944726 -0.68944726\n", + " -0.7068315 -0.7735139 -0.8430739 -0.90971982 -0.96422136 -0.99566478\n", + " -0.63307737 -0.70671804 -0.7887212 -0.87335269 -0.94792671 -0.99354077\n", + " -0.5369405 -0.61373374 -0.70653992 -0.81278742 -0.91805859 -0.98938733\n", + " -0.41424378 -0.48583693 -0.58100796 -0.70621992 -0.85594988 -0.97952404\n", + " -0.26408922 -0.31711043 -0.39454117 -0.51443256 -0.70547621 -0.94619571\n", + " -0.09211862 -0.11220884 -0.14344196 -0.19838589 -0.31822781 -0.70181886]\n", + "DEBUG:root:optics_fp: xyfp: [[31.55842202 31.53663198]\n", + " [31.5598894 27.15020366]\n", + " [31.56135678 22.76377533]\n", + " [31.56282416 18.37734701]\n", + " [31.56429154 13.99091868]\n", + " [31.56575892 9.60449035]\n", + " [31.5672263 5.21806203]\n", + " [31.56869367 0.8316337 ]\n", + " [31.55842202 31.53663198]\n", + " [27.17199369 31.5351646 ]\n", + " [22.78556537 31.53369722]\n", + " [18.39913704 31.53222985]\n", + " [14.01270872 31.53076247]\n", + " [ 9.62628039 31.52929508]\n", + " [ 5.23985206 31.5278277 ]\n", + " [ 0.85342374 31.52636032]\n", + " [31.56869367 0.8316337 ]\n", + " [27.18226536 0.83016632]\n", + " [22.79583702 0.82869894]\n", + " [18.40940869 0.82723156]\n", + " [14.02298037 0.82576418]\n", + " [ 9.63655205 0.8242968 ]\n", + " [ 5.25012372 0.82282942]\n", + " [ 0.8636954 0.82136204]\n", + " [ 0.85342374 31.52636032]\n", + " [ 0.85489112 27.139932 ]\n", + " [ 0.8563585 22.75350367]\n", + " [ 0.85782588 18.36707535]\n", + " [ 0.85929326 13.98064702]\n", + " [ 0.86076064 9.59421869]\n", + " [ 0.86222802 5.20779037]\n", + " [ 0.8636954 0.82136204]\n", + " [31.5440618 29.62412707]\n", + " [31.54586022 24.24812737]\n", + " [31.54765864 18.87212767]\n", + " [31.54945706 13.49612798]\n", + " [31.55125548 8.12012828]\n", + " [31.5530539 2.74412858]\n", + " [29.64592714 31.5209922 ]\n", + " [24.26992744 31.51919378]\n", + " [18.89392775 31.51739537]\n", + " [13.51792805 31.51559694]\n", + " [ 8.14192835 31.51379852]\n", + " [ 2.76592865 31.51200011]\n", + " [29.65618877 0.84599392]\n", + " [24.28018907 0.8441955 ]\n", + " [18.90418936 0.84239708]\n", + " [13.52818967 0.84059866]\n", + " [ 8.15218997 0.83880024]\n", + " [ 2.77619027 0.83700182]\n", + " [ 0.86906352 29.61386545]\n", + " [ 0.87086194 24.23786575]\n", + " [ 0.87266036 18.86186605]\n", + " [ 0.87445877 13.48586635]\n", + " [ 0.87625719 8.10986665]\n", + " [ 0.87805561 2.73386695]\n", + " [31.54342704 31.52162697]\n", + " [31.54342704 31.52162697]\n", + " [ 0.87869038 0.83636706]\n", + " [ 0.87869038 0.83636706]\n", + " [29.64656191 29.6234923 ]\n", + " [24.27056221 29.62169389]\n", + " [18.89456251 29.61989547]\n", + " [13.51856281 29.61809705]\n", + " [ 8.14256311 29.61629863]\n", + " [ 2.76656341 29.61450021]\n", + " [29.64836033 24.24749261]\n", + " [24.27236063 24.24569419]\n", + " [18.89636093 24.24389577]\n", + " [13.52036123 24.24209735]\n", + " [ 8.14436153 24.24029894]\n", + " [ 2.76836183 24.23850051]\n", + " [29.65015875 18.87149291]\n", + " [24.27415905 18.86969449]\n", + " [18.89815935 18.86789607]\n", + " [13.52215965 18.86609765]\n", + " [ 8.14615995 18.86429923]\n", + " [ 2.77016025 18.86250081]\n", + " [29.65195716 13.49549321]\n", + " [24.27595746 13.49369479]\n", + " [18.89995776 13.49189637]\n", + " [13.52395807 13.49009795]\n", + " [ 8.14795837 13.48829953]\n", + " [ 2.77195867 13.48650112]\n", + " [29.65375558 8.11949351]\n", + " [24.27775588 8.11769509]\n", + " [18.90175618 8.11589667]\n", + " [13.52575648 8.11409825]\n", + " [ 8.14975678 8.11229983]\n", + " [ 2.77375709 8.11050142]\n", + " [29.655554 2.74349381]\n", + " [24.2795543 2.74169539]\n", + " [18.90355461 2.73989697]\n", + " [13.5275549 2.73809855]\n", + " [ 8.15155521 2.73630014]\n", + " [ 2.7755555 2.73450172]]\n", + "DEBUG:root:optics_fp: xyfp shape: (96, 2)\n", + "DEBUG:root:make_az_asym: xyp: [[31.55842202 31.53663198]\n", + " [31.5598894 27.15020366]\n", + " [31.56135678 22.76377533]\n", + " [31.56282416 18.37734701]\n", + " [31.56429154 13.99091868]\n", + " [31.56575892 9.60449035]\n", + " [31.5672263 5.21806203]\n", + " [31.56869367 0.8316337 ]\n", + " [31.55842202 31.53663198]\n", + " [27.17199369 31.5351646 ]\n", + " [22.78556537 31.53369722]\n", + " [18.39913704 31.53222985]\n", + " [14.01270872 31.53076247]\n", + " [ 9.62628039 31.52929508]\n", + " [ 5.23985206 31.5278277 ]\n", + " [ 0.85342374 31.52636032]\n", + " [31.56869367 0.8316337 ]\n", + " [27.18226536 0.83016632]\n", + " [22.79583702 0.82869894]\n", + " [18.40940869 0.82723156]\n", + " [14.02298037 0.82576418]\n", + " [ 9.63655205 0.8242968 ]\n", + " [ 5.25012372 0.82282942]\n", + " [ 0.8636954 0.82136204]\n", + " [ 0.85342374 31.52636032]\n", + " [ 0.85489112 27.139932 ]\n", + " [ 0.8563585 22.75350367]\n", + " [ 0.85782588 18.36707535]\n", + " [ 0.85929326 13.98064702]\n", + " [ 0.86076064 9.59421869]\n", + " [ 0.86222802 5.20779037]\n", + " [ 0.8636954 0.82136204]\n", + " [31.5440618 29.62412707]\n", + " [31.54586022 24.24812737]\n", + " [31.54765864 18.87212767]\n", + " [31.54945706 13.49612798]\n", + " [31.55125548 8.12012828]\n", + " [31.5530539 2.74412858]\n", + " [29.64592714 31.5209922 ]\n", + " [24.26992744 31.51919378]\n", + " [18.89392775 31.51739537]\n", + " [13.51792805 31.51559694]\n", + " [ 8.14192835 31.51379852]\n", + " [ 2.76592865 31.51200011]\n", + " [29.65618877 0.84599392]\n", + " [24.28018907 0.8441955 ]\n", + " [18.90418936 0.84239708]\n", + " [13.52818967 0.84059866]\n", + " [ 8.15218997 0.83880024]\n", + " [ 2.77619027 0.83700182]\n", + " [ 0.86906352 29.61386545]\n", + " [ 0.87086194 24.23786575]\n", + " [ 0.87266036 18.86186605]\n", + " [ 0.87445877 13.48586635]\n", + " [ 0.87625719 8.10986665]\n", + " [ 0.87805561 2.73386695]\n", + " [31.54342704 31.52162697]\n", + " [31.54342704 31.52162697]\n", + " [ 0.87869038 0.83636706]\n", + " [ 0.87869038 0.83636706]\n", + " [29.64656191 29.6234923 ]\n", + " [24.27056221 29.62169389]\n", + " [18.89456251 29.61989547]\n", + " [13.51856281 29.61809705]\n", + " [ 8.14256311 29.61629863]\n", + " [ 2.76656341 29.61450021]\n", + " [29.64836033 24.24749261]\n", + " [24.27236063 24.24569419]\n", + " [18.89636093 24.24389577]\n", + " [13.52036123 24.24209735]\n", + " [ 8.14436153 24.24029894]\n", + " [ 2.76836183 24.23850051]\n", + " [29.65015875 18.87149291]\n", + " [24.27415905 18.86969449]\n", + " [18.89815935 18.86789607]\n", + " [13.52215965 18.86609765]\n", + " [ 8.14615995 18.86429923]\n", + " [ 2.77016025 18.86250081]\n", + " [29.65195716 13.49549321]\n", + " [24.27595746 13.49369479]\n", + " [18.89995776 13.49189637]\n", + " [13.52395807 13.49009795]\n", + " [ 8.14795837 13.48829953]\n", + " [ 2.77195867 13.48650112]\n", + " [29.65375558 8.11949351]\n", + " [24.27775588 8.11769509]\n", + " [18.90175618 8.11589667]\n", + " [13.52575648 8.11409825]\n", + " [ 8.14975678 8.11229983]\n", + " [ 2.77375709 8.11050142]\n", + " [29.655554 2.74349381]\n", + " [24.2795543 2.74169539]\n", + " [18.90355461 2.73989697]\n", + " [13.5275549 2.73809855]\n", + " [ 8.15155521 2.73630014]\n", + " [ 2.7755555 2.73450172]]\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "DEBUG:root:make_az_asym: xyp: shape: (96, 2)\n", + "DEBUG:root:radec2pix: xyfp: [[31.55842202 31.53663198]\n", + " [31.5598894 27.15020366]\n", + " [31.56135678 22.76377533]\n", + " [31.56282416 18.37734701]\n", + " [31.56429154 13.99091868]\n", + " [31.56575892 9.60449035]\n", + " [31.5672263 5.21806203]\n", + " [31.56869367 0.8316337 ]\n", + " [31.55842202 31.53663198]\n", + " [27.17199369 31.5351646 ]\n", + " [22.78556537 31.53369722]\n", + " [18.39913704 31.53222985]\n", + " [14.01270872 31.53076247]\n", + " [ 9.62628039 31.52929508]\n", + " [ 5.23985206 31.5278277 ]\n", + " [ 0.85342374 31.52636032]\n", + " [31.56869367 0.8316337 ]\n", + " [27.18226536 0.83016632]\n", + " [22.79583702 0.82869894]\n", + " [18.40940869 0.82723156]\n", + " [14.02298037 0.82576418]\n", + " [ 9.63655205 0.8242968 ]\n", + " [ 5.25012372 0.82282942]\n", + " [ 0.8636954 0.82136204]\n", + " [ 0.85342374 31.52636032]\n", + " [ 0.85489112 27.139932 ]\n", + " [ 0.8563585 22.75350367]\n", + " [ 0.85782588 18.36707535]\n", + " [ 0.85929326 13.98064702]\n", + " [ 0.86076064 9.59421869]\n", + " [ 0.86222802 5.20779037]\n", + " [ 0.8636954 0.82136204]\n", + " [31.5440618 29.62412707]\n", + " [31.54586022 24.24812737]\n", + " [31.54765864 18.87212767]\n", + " [31.54945706 13.49612798]\n", + " [31.55125548 8.12012828]\n", + " [31.5530539 2.74412858]\n", + " [29.64592714 31.5209922 ]\n", + " [24.26992744 31.51919378]\n", + " [18.89392775 31.51739537]\n", + " [13.51792805 31.51559694]\n", + " [ 8.14192835 31.51379852]\n", + " [ 2.76592865 31.51200011]\n", + " [29.65618877 0.84599392]\n", + " [24.28018907 0.8441955 ]\n", + " [18.90418936 0.84239708]\n", + " [13.52818967 0.84059866]\n", + " [ 8.15218997 0.83880024]\n", + " [ 2.77619027 0.83700182]\n", + " [ 0.86906352 29.61386545]\n", + " [ 0.87086194 24.23786575]\n", + " [ 0.87266036 18.86186605]\n", + " [ 0.87445877 13.48586635]\n", + " [ 0.87625719 8.10986665]\n", + " [ 0.87805561 2.73386695]\n", + " [31.54342704 31.52162697]\n", + " [31.54342704 31.52162697]\n", + " [ 0.87869038 0.83636706]\n", + " [ 0.87869038 0.83636706]\n", + " [29.64656191 29.6234923 ]\n", + " [24.27056221 29.62169389]\n", + " [18.89456251 29.61989547]\n", + " [13.51856281 29.61809705]\n", + " [ 8.14256311 29.61629863]\n", + " [ 2.76656341 29.61450021]\n", + " [29.64836033 24.24749261]\n", + " [24.27236063 24.24569419]\n", + " [18.89636093 24.24389577]\n", + " [13.52036123 24.24209735]\n", + " [ 8.14436153 24.24029894]\n", + " [ 2.76836183 24.23850051]\n", + " [29.65015875 18.87149291]\n", + " [24.27415905 18.86969449]\n", + " [18.89815935 18.86789607]\n", + " [13.52215965 18.86609765]\n", + " [ 8.14615995 18.86429923]\n", + " [ 2.77016025 18.86250081]\n", + " [29.65195716 13.49549321]\n", + " [24.27595746 13.49369479]\n", + " [18.89995776 13.49189637]\n", + " [13.52395807 13.49009795]\n", + " [ 8.14795837 13.48829953]\n", + " [ 2.77195867 13.48650112]\n", + " [29.65375558 8.11949351]\n", + " [24.27775588 8.11769509]\n", + " [18.90175618 8.11589667]\n", + " [13.52575648 8.11409825]\n", + " [ 8.14975678 8.11229983]\n", + " [ 2.77375709 8.11050142]\n", + " [29.655554 2.74349381]\n", + " [24.2795543 2.74169539]\n", + " [18.90355461 2.73989697]\n", + " [13.5275549 2.73809855]\n", + " [ 8.15155521 2.73630014]\n", + " [ 2.7755555 2.73450172]]\n", + "DEBUG:root:radec2pix: xyfp Shape: (96, 2)\n", + "DEBUG:root:mm_to_pix: fitpx: [[0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]]\n", + "DEBUG:root:mm_to_pix: fitpx.shape: (96, 2)\n", + "DEBUG:root:radec2pix: xyfp: [[31.55842202 31.53663198]\n", + " [31.5598894 27.15020366]\n", + " [31.56135678 22.76377533]\n", + " [31.56282416 18.37734701]\n", + " [31.56429154 13.99091868]\n", + " [31.56575892 9.60449035]\n", + " [31.5672263 5.21806203]\n", + " [31.56869367 0.8316337 ]\n", + " [31.55842202 31.53663198]\n", + " [27.17199369 31.5351646 ]\n", + " [22.78556537 31.53369722]\n", + " [18.39913704 31.53222985]\n", + " [14.01270872 31.53076247]\n", + " [ 9.62628039 31.52929508]\n", + " [ 5.23985206 31.5278277 ]\n", + " [ 0.85342374 31.52636032]\n", + " [31.56869367 0.8316337 ]\n", + " [27.18226536 0.83016632]\n", + " [22.79583702 0.82869894]\n", + " [18.40940869 0.82723156]\n", + " [14.02298037 0.82576418]\n", + " [ 9.63655205 0.8242968 ]\n", + " [ 5.25012372 0.82282942]\n", + " [ 0.8636954 0.82136204]\n", + " [ 0.85342374 31.52636032]\n", + " [ 0.85489112 27.139932 ]\n", + " [ 0.8563585 22.75350367]\n", + " [ 0.85782588 18.36707535]\n", + " [ 0.85929326 13.98064702]\n", + " [ 0.86076064 9.59421869]\n", + " [ 0.86222802 5.20779037]\n", + " [ 0.8636954 0.82136204]\n", + " [31.5440618 29.62412707]\n", + " [31.54586022 24.24812737]\n", + " [31.54765864 18.87212767]\n", + " [31.54945706 13.49612798]\n", + " [31.55125548 8.12012828]\n", + " [31.5530539 2.74412858]\n", + " [29.64592714 31.5209922 ]\n", + " [24.26992744 31.51919378]\n", + " [18.89392775 31.51739537]\n", + " [13.51792805 31.51559694]\n", + " [ 8.14192835 31.51379852]\n", + " [ 2.76592865 31.51200011]\n", + " [29.65618877 0.84599392]\n", + " [24.28018907 0.8441955 ]\n", + " [18.90418936 0.84239708]\n", + " [13.52818967 0.84059866]\n", + " [ 8.15218997 0.83880024]\n", + " [ 2.77619027 0.83700182]\n", + " [ 0.86906352 29.61386545]\n", + " [ 0.87086194 24.23786575]\n", + " [ 0.87266036 18.86186605]\n", + " [ 0.87445877 13.48586635]\n", + " [ 0.87625719 8.10986665]\n", + " [ 0.87805561 2.73386695]\n", + " [31.54342704 31.52162697]\n", + " [31.54342704 31.52162697]\n", + " [ 0.87869038 0.83636706]\n", + " [ 0.87869038 0.83636706]\n", + " [29.64656191 29.6234923 ]\n", + " [24.27056221 29.62169389]\n", + " [18.89456251 29.61989547]\n", + " [13.51856281 29.61809705]\n", + " [ 8.14256311 29.61629863]\n", + " [ 2.76656341 29.61450021]\n", + " [29.64836033 24.24749261]\n", + " [24.27236063 24.24569419]\n", + " [18.89636093 24.24389577]\n", + " [13.52036123 24.24209735]\n", + " [ 8.14436153 24.24029894]\n", + " [ 2.76836183 24.23850051]\n", + " [29.65015875 18.87149291]\n", + " [24.27415905 18.86969449]\n", + " [18.89815935 18.86789607]\n", + " [13.52215965 18.86609765]\n", + " [ 8.14615995 18.86429923]\n", + " [ 2.77016025 18.86250081]\n", + " [29.65195716 13.49549321]\n", + " [24.27595746 13.49369479]\n", + " [18.89995776 13.49189637]\n", + " [13.52395807 13.49009795]\n", + " [ 8.14795837 13.48829953]\n", + " [ 2.77195867 13.48650112]\n", + " [29.65375558 8.11949351]\n", + " [24.27775588 8.11769509]\n", + " [18.90175618 8.11589667]\n", + " [13.52575648 8.11409825]\n", + " [ 8.14975678 8.11229983]\n", + " [ 2.77375709 8.11050142]\n", + " [29.655554 2.74349381]\n", + " [24.2795543 2.74169539]\n", + " [18.90355461 2.73989697]\n", + " [13.5275549 2.73809855]\n", + " [ 8.15155521 2.73630014]\n", + " [ 2.7755555 2.73450172]]\n", + "DEBUG:root:radec2pix: ccdpx: [[ 4.99330749e-01 5.00668858e-01]\n", + " [ 3.03679803e-01 2.92929175e+02]\n", + " [ 1.08029253e-01 5.85357681e+02]\n", + " [-8.76213409e-02 8.77786187e+02]\n", + " [-2.83271657e-01 1.17021469e+03]\n", + " [-4.78922390e-01 1.46264320e+03]\n", + " [-6.74573422e-01 1.75507170e+03]\n", + " [-8.70223482e-01 2.04750021e+03]\n", + " [ 4.99330749e-01 5.00668858e-01]\n", + " [ 2.92927837e+02 6.96319517e-01]\n", + " [ 5.85356343e+02 8.91970020e-01]\n", + " [ 8.77784849e+02 1.08762050e+00]\n", + " [ 1.17021335e+03 1.28327126e+00]\n", + " [ 1.46264186e+03 1.47892223e+00]\n", + " [ 1.75507037e+03 1.67457293e+00]\n", + " [ 2.04749887e+03 1.87022343e+00]\n", + " [-8.70223482e-01 2.04750021e+03]\n", + " [ 2.91558282e+02 2.04769586e+03]\n", + " [ 5.83986788e+02 2.04789151e+03]\n", + " [ 8.76415295e+02 2.04808716e+03]\n", + " [ 1.16884380e+03 2.04828281e+03]\n", + " [ 1.46127231e+03 2.04847846e+03]\n", + " [ 1.75370081e+03 2.04867411e+03]\n", + " [ 2.04612932e+03 2.04886977e+03]\n", + " [ 2.04749887e+03 1.87022343e+00]\n", + " [ 2.04730322e+03 2.94298729e+02]\n", + " [ 2.04710757e+03 5.86727236e+02]\n", + " [ 2.04691192e+03 8.79155741e+02]\n", + " [ 2.04671627e+03 1.17158425e+03]\n", + " [ 2.04652062e+03 1.46401275e+03]\n", + " [ 2.04632497e+03 1.75644126e+03]\n", + " [ 2.04612932e+03 2.04886977e+03]\n", + " [ 1.41402618e+00 1.28001309e+02]\n", + " [ 1.17423711e+00 4.86401229e+02]\n", + " [ 9.34448090e-01 8.44801149e+02]\n", + " [ 6.94658471e-01 1.20320107e+03]\n", + " [ 4.54869311e-01 1.56160099e+03]\n", + " [ 2.15080217e-01 1.92000091e+03]\n", + " [ 1.27998633e+02 1.58597323e+00]\n", + " [ 4.86398553e+02 1.82576215e+00]\n", + " [ 8.44798473e+02 2.06555104e+00]\n", + " [ 1.20319839e+03 2.30534054e+00]\n", + " [ 1.56159831e+03 2.54512976e+00]\n", + " [ 1.91999823e+03 2.78491879e+00]\n", + " [ 1.26630417e+02 2.04658552e+03]\n", + " [ 4.85030337e+02 2.04682530e+03]\n", + " [ 8.43430257e+02 2.04706509e+03]\n", + " [ 1.20183018e+03 2.04730488e+03]\n", + " [ 1.56023010e+03 2.04754467e+03]\n", + " [ 1.91863002e+03 2.04778446e+03]\n", + " [ 2.04641357e+03 1.29369526e+02]\n", + " [ 2.04617378e+03 4.87769446e+02]\n", + " [ 2.04593399e+03 8.46169365e+02]\n", + " [ 2.04569420e+03 1.20456929e+03]\n", + " [ 2.04545441e+03 1.56296921e+03]\n", + " [ 2.04521462e+03 1.92136912e+03]\n", + " [ 1.49866141e+00 1.50133763e+00]\n", + " [ 1.49866141e+00 1.50133763e+00]\n", + " [ 2.04512999e+03 2.04786910e+03]\n", + " [ 2.04512999e+03 2.04786910e+03]\n", + " [ 1.27913998e+02 1.28085945e+02]\n", + " [ 4.86313918e+02 1.28325734e+02]\n", + " [ 8.44713837e+02 1.28565523e+02]\n", + " [ 1.20311376e+03 1.28805312e+02]\n", + " [ 1.56151368e+03 1.29045101e+02]\n", + " [ 1.91991360e+03 1.29284890e+02]\n", + " [ 1.27674208e+02 4.86485864e+02]\n", + " [ 4.86074128e+02 4.86725654e+02]\n", + " [ 8.44474048e+02 4.86965443e+02]\n", + " [ 1.20287397e+03 4.87205232e+02]\n", + " [ 1.56127389e+03 4.87445021e+02]\n", + " [ 1.91967381e+03 4.87684810e+02]\n", + " [ 1.27434419e+02 8.44885784e+02]\n", + " [ 4.85834339e+02 8.45125573e+02]\n", + " [ 8.44234259e+02 8.45365362e+02]\n", + " [ 1.20263418e+03 8.45605152e+02]\n", + " [ 1.56103410e+03 8.45844941e+02]\n", + " [ 1.91943402e+03 8.46084730e+02]\n", + " [ 1.27194631e+02 1.20328570e+03]\n", + " [ 4.85594550e+02 1.20352549e+03]\n", + " [ 8.43994470e+02 1.20376528e+03]\n", + " [ 1.20239439e+03 1.20400507e+03]\n", + " [ 1.56079431e+03 1.20424486e+03]\n", + " [ 1.91919423e+03 1.20448465e+03]\n", + " [ 1.26954841e+02 1.56168562e+03]\n", + " [ 4.85354761e+02 1.56192541e+03]\n", + " [ 8.43754681e+02 1.56216520e+03]\n", + " [ 1.20215460e+03 1.56240499e+03]\n", + " [ 1.56055452e+03 1.56264478e+03]\n", + " [ 1.91895444e+03 1.56288457e+03]\n", + " [ 1.26715052e+02 1.92008554e+03]\n", + " [ 4.85114972e+02 1.92032533e+03]\n", + " [ 8.43514892e+02 1.92056512e+03]\n", + " [ 1.20191481e+03 1.92080491e+03]\n", + " [ 1.56031473e+03 1.92104470e+03]\n", + " [ 1.91871465e+03 1.92128449e+03]]\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "DEBUG:root:radec2pix: fitpx: [[4226.50066925 4154.49933114]\n", + " [4226.6963202 3862.07082543]\n", + " [4226.89197075 3569.64231935]\n", + " [4227.08762134 3277.21381332]\n", + " [4227.28327166 2984.78530717]\n", + " [4227.47892239 2692.35680125]\n", + " [4227.67457342 2399.92829535]\n", + " [4227.87022348 2107.49978932]\n", + " [4226.50066925 4154.49933114]\n", + " [3934.07216326 4154.30368048]\n", + " [3641.64365739 4154.10802998]\n", + " [3349.2151515 4153.9123795 ]\n", + " [3056.78664543 4153.71672874]\n", + " [2764.35813933 4153.52107777]\n", + " [2471.92963337 4153.32542707]\n", + " [2179.50112743 4153.12977657]\n", + " [4227.87022348 2107.49978932]\n", + " [3935.44171805 2107.30413869]\n", + " [3643.01321159 2107.10848803]\n", + " [3350.58470542 2106.91283738]\n", + " [3058.15619969 2106.71718675]\n", + " [2765.72769383 2106.52153611]\n", + " [2473.2991879 2106.32588547]\n", + " [2180.87068188 2106.13023479]\n", + " [2179.50112743 4153.12977657]\n", + " [2179.69677808 3860.70127078]\n", + " [2179.8924287 3568.27276441]\n", + " [2180.08807937 3275.84425904]\n", + " [2180.28373 2983.41575287]\n", + " [2180.47938063 2690.98724664]\n", + " [2180.67503126 2398.55874069]\n", + " [2180.87068188 2106.13023479]\n", + " [4225.58597382 4026.99869053]\n", + " [4225.82576289 3668.59877073]\n", + " [4226.06555191 3310.19885092]\n", + " [4226.30534153 2951.79893139]\n", + " [4226.54513069 2593.39901158]\n", + " [4226.78491978 2234.99909175]\n", + " [4099.0013667 4153.41402677]\n", + " [3740.6014471 4153.17423785]\n", + " [3382.20152745 4152.93444896]\n", + " [3023.80160746 4152.69465946]\n", + " [2665.40168768 4152.45487024]\n", + " [2307.00176794 4152.21508121]\n", + " [4100.36958324 2108.41448465]\n", + " [3741.96966346 2108.17469553]\n", + " [3383.56974332 2107.9349064 ]\n", + " [3025.16982367 2107.69511728]\n", + " [2666.76990411 2107.45532817]\n", + " [2308.36998407 2107.21553897]\n", + " [2180.58643166 4025.63047443]\n", + " [2180.82622077 3667.23055437]\n", + " [2181.06600989 3308.83063462]\n", + " [2181.305799 2950.43071474]\n", + " [2181.54558811 2592.03079492]\n", + " [2181.78537727 2233.6308754 ]\n", + " [4225.50133859 4153.49866237]\n", + " [4225.50133859 4153.49866237]\n", + " [2181.87001268 2107.13090369]\n", + " [2181.87001268 2107.13090369]\n", + " [4099.08600203 4026.91405503]\n", + " [3740.6860825 4026.67426617]\n", + " [3382.28616275 4026.43447711]\n", + " [3023.88624284 4026.19468776]\n", + " [2665.48632309 4025.95489864]\n", + " [2307.08640334 4025.71510966]\n", + " [4099.32579152 3668.51413559]\n", + " [3740.9258716 3668.27434636]\n", + " [3382.5259517 3668.0345571 ]\n", + " [3024.12603212 3667.79476828]\n", + " [2665.7261123 3667.55497915]\n", + " [2307.32619246 3667.31518986]\n", + " [4099.5655806 3310.11421576]\n", + " [3741.16566076 3309.87442661]\n", + " [3382.76574112 3309.63463764]\n", + " [3024.36582116 3309.39484835]\n", + " [2665.96590137 3309.15505921]\n", + " [2307.56598157 3308.91527001]\n", + " [4099.80536938 2951.7142958 ]\n", + " [3741.40544972 2951.47450673]\n", + " [3383.0055299 2951.23471756]\n", + " [3024.60561035 2950.99492863]\n", + " [2666.20569044 2950.75513936]\n", + " [2307.80577071 2950.51535035]\n", + " [4100.0451585 2593.31437606]\n", + " [3741.64523891 2593.07458699]\n", + " [3383.24531875 2592.8347977 ]\n", + " [3024.84539918 2592.59500864]\n", + " [2666.44547938 2592.35521942]\n", + " [2308.04555981 2592.1154305 ]\n", + " [4100.28494767 2234.91445632]\n", + " [3741.88502821 2234.67466724]\n", + " [3383.48510844 2234.43487812]\n", + " [3025.08518833 2234.19508894]\n", + " [2666.68526886 2233.9552999 ]\n", + " [2308.28534883 2233.71551063]]\n", + "DEBUG:root:fitpix2pix: ccdpx: shape: (96, 2)\n", + "DEBUG:root:fitpix2pix: visCut: True\n", + "DEBUG:root:radec2pix: curVec: [[ 0.46422488 -0.48431262 -0.74157707]\n", + " [ 0.47206223 -0.5031397 -0.72388376]\n", + " [ 0.47982924 -0.52189993 -0.70525482]\n", + " [ 0.48746659 -0.54050036 -0.68573733]\n", + " [ 0.49491826 -0.55885165 -0.66538766]\n", + " [ 0.50213387 -0.57686899 -0.64426993]\n", + " [ 0.5090697 -0.59447242 -0.62245529]\n", + " [ 0.51568896 -0.61158715 -0.60002171]\n", + " [ 0.46422488 -0.48431262 -0.74157707]\n", + " [ 0.48562849 -0.4683047 -0.7381434 ]\n", + " [ 0.50717666 -0.45170169 -0.73398734]\n", + " [ 0.52875681 -0.43454511 -0.72909998]\n", + " [ 0.55025857 -0.41688235 -0.7234809 ]\n", + " [ 0.57157666 -0.39876656 -0.71713691]\n", + " [ 0.59261215 -0.38025667 -0.71008148]\n", + " [ 0.61327282 -0.36141732 -0.70233465]\n", + " [ 0.51568896 -0.61158715 -0.60002171]\n", + " [ 0.53857278 -0.59630697 -0.59527922]\n", + " [ 0.56149396 -0.58023598 -0.58995825]\n", + " [ 0.58433429 -0.56341299 -0.58405415]\n", + " [ 0.60698333 -0.54588155 -0.5775678 ]\n", + " [ 0.62933654 -0.52769139 -0.57050619]\n", + " [ 0.65129367 -0.50889996 -0.5628831 ]\n", + " [ 0.67275852 -0.48957323 -0.55471977]\n", + " [ 0.61327282 -0.36141732 -0.70233465]\n", + " [ 0.62298303 -0.37998517 -0.68374222]\n", + " [ 0.63238744 -0.39861214 -0.66422473]\n", + " [ 0.64142004 -0.41720633 -0.64383166]\n", + " [ 0.65002225 -0.43568112 -0.6226179 ]\n", + " [ 0.65814212 -0.4539536 -0.60064555]\n", + " [ 0.66573397 -0.4719435 -0.57798582]\n", + " [ 0.67275852 -0.48957323 -0.55471977]\n", + " [ 0.46772015 -0.49246989 -0.73396953]\n", + " [ 0.47728716 -0.51551162 -0.7116493 ]\n", + " [ 0.48668921 -0.53836033 -0.68796931]\n", + " [ 0.49582161 -0.56084996 -0.6630296 ]\n", + " [ 0.50459169 -0.58282441 -0.63694814]\n", + " [ 0.51292186 -0.60413863 -0.60985874]\n", + " [ 0.47355937 -0.47747316 -0.74010871]\n", + " [ 0.49990441 -0.45744893 -0.73541557]\n", + " [ 0.52635462 -0.43657126 -0.72962755]\n", + " [ 0.55270564 -0.41492497 -0.72274044]\n", + " [ 0.5787638 -0.39260793 -0.71476673]\n", + " [ 0.60434974 -0.36973101 -0.70573392]\n", + " [ 0.52563171 -0.60496664 -0.59810256]\n", + " [ 0.55371839 -0.58570216 -0.59190279]\n", + " [ 0.58174287 -0.56528804 -0.58482875]\n", + " [ 0.60949866 -0.54380245 -0.57687978]\n", + " [ 0.6367931 -0.52133715 -0.56806878]\n", + " [ 0.66344326 -0.49800143 -0.55842423]\n", + " [ 0.61746935 -0.36956471 -0.69437276]\n", + " [ 0.62917257 -0.39237377 -0.67095805]\n", + " [ 0.64035017 -0.41517955 -0.64620244]\n", + " [ 0.65089124 -0.43782046 -0.62020468]\n", + " [ 0.66070012 -0.46014372 -0.59307934]\n", + " [ 0.66969534 -0.48200264 -0.5649616 ]\n", + " [ 0.46432456 -0.48432332 -0.74150767]\n", + " [ 0.46432456 -0.48432332 -0.74150767]\n", + " [ 0.67266305 -0.48958056 -0.55482907]\n", + " [ 0.67266305 -0.48958056 -0.55482907]\n", + " [ 0.4770194 -0.48563278 -0.73253894]\n", + " [ 0.50354045 -0.46563077 -0.72776026]\n", + " [ 0.53015368 -0.44475328 -0.72189446]\n", + " [ 0.55665267 -0.42308479 -0.71493851]\n", + " [ 0.58284311 -0.40072304 -0.7069052 ]\n", + " [ 0.60854536 -0.37777911 -0.69782196]\n", + " [ 0.48675408 -0.50871759 -0.71012455]\n", + " [ 0.51372893 -0.48879708 -0.70509574]\n", + " [ 0.54075847 -0.46794044 -0.69900788]\n", + " [ 0.56763328 -0.4462314 -0.69185981]\n", + " [ 0.59415868 -0.42376741 -0.68366413]\n", + " [ 0.62015483 -0.40066014 -0.6744475 ]\n", + " [ 0.4962987 -0.5316178 -0.68634548]\n", + " [ 0.52365529 -0.51180504 -0.68105854]\n", + " [ 0.55103119 -0.49099928 -0.67474761]\n", + " [ 0.57821686 -0.46928325 -0.66741178]\n", + " [ 0.60501846 -0.44675382 -0.65906273]\n", + " [ 0.63125589 -0.4235231 -0.64972624]\n", + " [ 0.50554653 -0.55416701 -0.66130298]\n", + " [ 0.53320965 -0.53448804 -0.65575147]\n", + " [ 0.56086132 -0.51376369 -0.64921602]\n", + " [ 0.58829319 -0.49207538 -0.64169536]\n", + " [ 0.61531229 -0.4695188 -0.6332005 ]\n", + " [ 0.6417379 -0.44620592 -0.62375696]\n", + " [ 0.51440426 -0.57620897 -0.63511533]\n", + " [ 0.54229831 -0.55668956 -0.62929269]\n", + " [ 0.57015567 -0.53607722 -0.62253011]\n", + " [ 0.59776922 -0.51445185 -0.6148262 ]\n", + " [ 0.62494651 -0.49190749 -0.60619212]\n", + " [ 0.6515058 -0.4685553 -0.5966541 ]\n", + " [ 0.52279419 -0.59759833 -0.6079165 ]\n", + " [ 0.55084388 -0.5782632 -0.60181616]\n", + " [ 0.57883711 -0.55779241 -0.5948237 ]\n", + " [ 0.60656739 -0.53626449 -0.58693815]\n", + " [ 0.63384217 -0.51377174 -0.57817186]\n", + " [ 0.66047881 -0.490424 -0.56855259]]\n", + "DEBUG:root:radec2pix: curVec Shape: (96, 3)\n", + "DEBUG:root:radec2pix: camVec: [[-0.20605921 -0.20787315 -0.20942436 -0.21070676 -0.21171698 -0.21245291\n", + " -0.21291301 -0.2130962 -0.20605921 -0.17962884 -0.15250018 -0.12477652\n", + " -0.0965659 -0.06797863 -0.03912632 -0.01012153 -0.2130962 -0.18573503\n", + " -0.15766321 -0.1289874 -0.09981355 -0.07024926 -0.04040619 -0.01040084\n", + " -0.01012153 -0.01020027 -0.01026637 -0.01031977 -0.01036027 -0.01038751\n", + " -0.01040113 -0.01040084 -0.20679239 -0.20883895 -0.21048459 -0.2117221\n", + " -0.21254753 -0.21295821 -0.1946339 -0.16175754 -0.12793421 -0.09336102\n", + " -0.05824097 -0.02277993 -0.20126076 -0.16723544 -0.13224882 -0.09649617\n", + " -0.06017591 -0.02349561 -0.01025713 -0.01034611 -0.01041588 -0.01046611\n", + " -0.01049618 -0.01050541 -0.20597676 -0.20597676 -0.01050361 -0.01050361\n", + " -0.19540403 -0.16239488 -0.12843557 -0.09372478 -0.05846599 -0.02286533\n", + " -0.19733483 -0.16399068 -0.1296908 -0.094636 -0.05902974 -0.02307851\n", + " -0.19888634 -0.16527244 -0.13070023 -0.09537003 -0.05948408 -0.02324907\n", + " -0.20005292 -0.16623701 -0.13146138 -0.09592455 -0.05982716 -0.0233762\n", + " -0.20083104 -0.16688094 -0.13197015 -0.09629527 -0.0600556 -0.02345845\n", + " -0.20121796 -0.16720058 -0.13222195 -0.09647752 -0.06016577 -0.02349426]\n", + " [-0.20169937 -0.17519485 -0.1480085 -0.12024402 -0.09200964 -0.06341581\n", + " -0.03457423 -0.00559748 -0.20169937 -0.20353396 -0.20511207 -0.20642749\n", + " -0.20747679 -0.20825778 -0.20876879 -0.20900854 -0.00559748 -0.00565735\n", + " -0.00571045 -0.00575671 -0.00579596 -0.00582797 -0.00585246 -0.00586919\n", + " -0.20900854 -0.18153487 -0.15336672 -0.12461057 -0.09537244 -0.06576046\n", + " -0.03588698 -0.00586919 -0.1902398 -0.15728353 -0.12340547 -0.08880315\n", + " -0.0536798 -0.01824146 -0.20244048 -0.20451655 -0.20620095 -0.20748634\n", + " -0.2083686 -0.2088448 -0.00572401 -0.00579384 -0.00585326 -0.00590199\n", + " -0.0059396 -0.00596558 -0.19712185 -0.16296958 -0.1278801 -0.09204872\n", + " -0.05567473 -0.01896706 -0.2016167 -0.2016167 -0.0059719 -0.0059719\n", + " -0.19101701 -0.19297429 -0.19456158 -0.19577312 -0.19660523 -0.1970549\n", + " -0.15792497 -0.15953875 -0.16084786 -0.1618491 -0.16253892 -0.16291334\n", + " -0.12390793 -0.1251726 -0.12620079 -0.12699006 -0.12753631 -0.1278347\n", + " -0.089165 -0.090077 -0.09082101 -0.09139481 -0.09179425 -0.09201449\n", + " -0.05389991 -0.05445583 -0.05491134 -0.05526476 -0.0555129 -0.05565213\n", + " -0.018319 -0.01851594 -0.01867909 -0.01880776 -0.01890068 -0.01895646]\n", + " [ 0.95752648 0.96233857 0.96655829 0.97012578 0.97299031 0.97511138\n", + " 0.97645925 0.97701519 0.95752648 0.96244865 0.96678474 0.97047334\n", + " 0.97346207 0.97570877 0.97718203 0.97786143 0.97701519 0.98258358\n", + " 0.98747643 0.99162952 0.99498928 0.99751244 0.9991662 0.99992869\n", + " 0.97786143 0.98333161 0.98811601 0.99215206 0.99538774 0.99778137\n", + " 0.99930173 0.99992869 0.95971127 0.96521924 0.96977695 0.97328709\n", + " 0.97567516 0.97689101 0.95975804 0.96540534 0.97011031 0.97377263\n", + " 0.97631476 0.97768345 0.97952098 0.98589996 0.99119927 0.99531586\n", + " 0.99817012 0.99970614 0.98032534 0.98657685 0.99173494 0.9956995\n", + " 0.99839379 0.99976492 0.95756163 0.95756163 0.999927 0.999927\n", + " 0.96194063 0.96767186 0.97244542 0.97616011 0.97873802 0.98012578\n", + " 0.96753226 0.97347545 0.97842131 0.98226722 0.98493482 0.98637043\n", + " 0.97215793 0.97827237 0.98335691 0.9873085 0.99004855 0.99152295\n", + " 0.97571944 0.98196303 0.98715219 0.99118387 0.99397914 0.99548324\n", + " 0.97814196 0.9844721 0.98973159 0.9938174 0.99665021 0.9981746\n", + " 0.97937518 0.98574902 0.99104412 0.99515745 0.99800944 0.99954423]]\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "DEBUG:root:radec2pix: camVec Shape: (3, 96)\n", + "DEBUG:root:cartToSphere: vec: [[-0.20605921 -0.20169937 0.95752648]\n", + " [-0.20787315 -0.17519485 0.96233857]\n", + " [-0.20942436 -0.1480085 0.96655829]\n", + " [-0.21070676 -0.12024402 0.97012578]\n", + " [-0.21171698 -0.09200964 0.97299031]\n", + " [-0.21245291 -0.06341581 0.97511138]\n", + " [-0.21291301 -0.03457423 0.97645925]\n", + " [-0.2130962 -0.00559748 0.97701519]\n", + " [-0.20605921 -0.20169937 0.95752648]\n", + " [-0.17962884 -0.20353396 0.96244865]\n", + " [-0.15250018 -0.20511207 0.96678474]\n", + " [-0.12477652 -0.20642749 0.97047334]\n", + " [-0.0965659 -0.20747679 0.97346207]\n", + " [-0.06797863 -0.20825778 0.97570877]\n", + " [-0.03912632 -0.20876879 0.97718203]\n", + " [-0.01012153 -0.20900854 0.97786143]\n", + " [-0.2130962 -0.00559748 0.97701519]\n", + " [-0.18573503 -0.00565735 0.98258358]\n", + " [-0.15766321 -0.00571045 0.98747643]\n", + " [-0.1289874 -0.00575671 0.99162952]\n", + " [-0.09981355 -0.00579596 0.99498928]\n", + " [-0.07024926 -0.00582797 0.99751244]\n", + " [-0.04040619 -0.00585246 0.9991662 ]\n", + " [-0.01040084 -0.00586919 0.99992869]\n", + " [-0.01012153 -0.20900854 0.97786143]\n", + " [-0.01020027 -0.18153487 0.98333161]\n", + " [-0.01026637 -0.15336672 0.98811601]\n", + " [-0.01031977 -0.12461057 0.99215206]\n", + " [-0.01036027 -0.09537244 0.99538774]\n", + " [-0.01038751 -0.06576046 0.99778137]\n", + " [-0.01040113 -0.03588698 0.99930173]\n", + " [-0.01040084 -0.00586919 0.99992869]\n", + " [-0.20679239 -0.1902398 0.95971127]\n", + " [-0.20883895 -0.15728353 0.96521924]\n", + " [-0.21048459 -0.12340547 0.96977695]\n", + " [-0.2117221 -0.08880315 0.97328709]\n", + " [-0.21254753 -0.0536798 0.97567516]\n", + " [-0.21295821 -0.01824146 0.97689101]\n", + " [-0.1946339 -0.20244048 0.95975804]\n", + " [-0.16175754 -0.20451655 0.96540534]\n", + " [-0.12793421 -0.20620095 0.97011031]\n", + " [-0.09336102 -0.20748634 0.97377263]\n", + " [-0.05824097 -0.2083686 0.97631476]\n", + " [-0.02277993 -0.2088448 0.97768345]\n", + " [-0.20126076 -0.00572401 0.97952098]\n", + " [-0.16723544 -0.00579384 0.98589996]\n", + " [-0.13224882 -0.00585326 0.99119927]\n", + " [-0.09649617 -0.00590199 0.99531586]\n", + " [-0.06017591 -0.0059396 0.99817012]\n", + " [-0.02349561 -0.00596558 0.99970614]\n", + " [-0.01025713 -0.19712185 0.98032534]\n", + " [-0.01034611 -0.16296958 0.98657685]\n", + " [-0.01041588 -0.1278801 0.99173494]\n", + " [-0.01046611 -0.09204872 0.9956995 ]\n", + " [-0.01049618 -0.05567473 0.99839379]\n", + " [-0.01050541 -0.01896706 0.99976492]\n", + " [-0.20597676 -0.2016167 0.95756163]\n", + " [-0.20597676 -0.2016167 0.95756163]\n", + " [-0.01050361 -0.0059719 0.999927 ]\n", + " [-0.01050361 -0.0059719 0.999927 ]\n", + " [-0.19540403 -0.19101701 0.96194063]\n", + " [-0.16239488 -0.19297429 0.96767186]\n", + " [-0.12843557 -0.19456158 0.97244542]\n", + " [-0.09372478 -0.19577312 0.97616011]\n", + " [-0.05846599 -0.19660523 0.97873802]\n", + " [-0.02286533 -0.1970549 0.98012578]\n", + " [-0.19733483 -0.15792497 0.96753226]\n", + " [-0.16399068 -0.15953875 0.97347545]\n", + " [-0.1296908 -0.16084786 0.97842131]\n", + " [-0.094636 -0.1618491 0.98226722]\n", + " [-0.05902974 -0.16253892 0.98493482]\n", + " [-0.02307851 -0.16291334 0.98637043]\n", + " [-0.19888634 -0.12390793 0.97215793]\n", + " [-0.16527244 -0.1251726 0.97827237]\n", + " [-0.13070023 -0.12620079 0.98335691]\n", + " [-0.09537003 -0.12699006 0.9873085 ]\n", + " [-0.05948408 -0.12753631 0.99004855]\n", + " [-0.02324907 -0.1278347 0.99152295]\n", + " [-0.20005292 -0.089165 0.97571944]\n", + " [-0.16623701 -0.090077 0.98196303]\n", + " [-0.13146138 -0.09082101 0.98715219]\n", + " [-0.09592455 -0.09139481 0.99118387]\n", + " [-0.05982716 -0.09179425 0.99397914]\n", + " [-0.0233762 -0.09201449 0.99548324]\n", + " [-0.20083104 -0.05389991 0.97814196]\n", + " [-0.16688094 -0.05445583 0.9844721 ]\n", + " [-0.13197015 -0.05491134 0.98973159]\n", + " [-0.09629527 -0.05526476 0.9938174 ]\n", + " [-0.0600556 -0.0555129 0.99665021]\n", + " [-0.02345845 -0.05565213 0.9981746 ]\n", + " [-0.20121796 -0.018319 0.97937518]\n", + " [-0.16720058 -0.01851594 0.98574902]\n", + " [-0.13222195 -0.01867909 0.99104412]\n", + " [-0.09647752 -0.01880776 0.99515745]\n", + " [-0.06016577 -0.01890068 0.99800944]\n", + " [-0.02349426 -0.01895646 0.99954423]]\n", + "DEBUG:root:radec2pix: lng: [224.38740491 220.12408621 215.2503637 209.71210534 203.48918374\n", + " 196.62002098 189.22355762 181.5046646 224.38740491 228.56999572\n", + " 233.3693139 238.84884696 245.04132431 251.92249978 259.38507008\n", + " 267.22753799 181.5046646 181.74464663 182.07430544 182.55541483\n", + " 183.32331288 184.74247093 188.24144189 209.436015 267.22753799\n", + " 266.78398778 266.170335 265.26578644 263.80029466 261.02373287\n", + " 253.83681058 209.436015 222.61267508 216.98461546 210.38276245\n", + " 202.75476399 194.17390418 184.89586052 226.12630502 231.65859743\n", + " 238.18310357 245.77405246 254.38382437 263.77502084 181.62909594\n", + " 181.98420755 182.53422407 183.50001953 185.63706132 194.24647314\n", + " 267.02133208 266.36745836 265.3435183 263.51322198 259.32352397\n", + " 241.01895217 224.38712569 224.38712569 209.62070535 209.62070535\n", + " 224.34955164 229.91816922 236.57007702 244.41761198 253.43870278\n", + " 263.38126527 218.66991645 224.21163124 231.12094806 239.6844282\n", + " 250.04034734 261.9370562 211.92326671 217.13924206 223.99660639\n", + " 233.09330633 244.99523074 259.69237756 204.0228705 208.45144372\n", + " 214.63892612 223.61475061 236.90559041 255.7456151 195.0232601\n", + " 198.0723045 202.59166286 209.85191686 222.74900651 247.14363581\n", + " 185.201902 186.31923819 188.04100537 191.03114261 197.43976942\n", + " 218.89848666]\n", + "DEBUG:root:radec2pix: lat: [73.24108038 74.22539246 75.14065481 75.95980834 76.6531185 77.19018187\n", + " 77.5432879 77.69182998 73.24108038 74.24861044 75.19133398 76.04212851\n", + " 76.77071823 77.34548632 77.73675519 77.92139244 77.69182998 79.29098794\n", + " 80.92271511 82.58149911 84.2618841 85.95783408 87.66008742 89.3157252\n", + " 77.92139244 79.52414159 81.15801466 82.81709844 84.49494889 86.18266378\n", + " 87.85870936 89.3157252 73.68081786 74.84436919 75.87765867 76.72697854\n", + " 77.33670031 77.65849826 73.69035695 74.88520803 75.9561532 76.84869716\n", + " 77.50496612 77.87275428 78.38454537 80.36704866 82.39295371 84.45217978\n", + " 86.53330534 88.61095022 78.61571107 80.60164359 82.62842612 84.684393\n", + " 86.75213987 88.75761015 73.24806584 73.24806584 89.30770045 89.30770045\n", + " 74.1417384 75.39152116 76.51854281 77.46407515 78.16380788 78.55793051\n", + " 75.35984123 76.77406669 78.07566348 79.19387762 80.04201199 80.52949342\n", + " 76.4480688 78.03443361 79.53211824 80.86193095 81.91012885 82.53435821\n", + " 77.34827857 79.10130772 80.80570953 82.38629346 83.70950064 84.55228195\n", + " 77.99844552 79.88985033 81.78208758 83.62548455 85.30897599 86.53756064\n", + " 78.34312947 80.31550148 82.32609465 84.35907996 86.38425999 88.27008044]\n", + "DEBUG:root:optics_fp: rtanth: [45.10526614 42.15252235 39.46728719 37.10767964 35.13935868 33.63109692\n", + " 32.64672024 32.23425998 45.10526614 42.08371704 39.32015966 36.87264817\n", + " 34.80791464 33.1974573 32.10970154 31.5986741 32.23425998 27.84962696\n", + " 23.46566508 19.08283694 14.70215645 10.32635724 5.96618932 1.74318313\n", + " 31.5986741 27.21812469 22.83983208 18.46540167 14.09842896 9.748941\n", + " 5.45889306 1.74318313 43.77728663 40.33061683 37.34259278 34.93111177\n", + " 33.22196043 32.3267303 43.74864122 40.21129183 37.11812392 34.58850978\n", + " 32.75328451 31.73315358 30.32290674 24.94961031 19.57779834 14.20915457\n", + " 8.84944693 3.53950567 29.68929466 24.32204857 18.9597634 13.60830488\n", + " 8.2886698 3.16557807 45.08405409 45.08405409 1.76362955 1.76362955\n", + " 42.40073703 38.740507 35.51948783 32.86706408 30.92986484 29.84747775\n", + " 38.83207862 34.7984872 31.1727741 28.11319496 25.82178089 24.5148885\n", + " 35.71891532 31.28650338 27.19655174 23.62757526 20.84885967 19.20651814\n", + " 33.18967076 28.36474267 23.77742123 19.59529652 16.13655116 13.95004204\n", + " 31.3858301 26.23117825 21.1868319 16.35517444 11.99601471 8.83853824\n", + " 30.43664187 25.08771711 19.753498 14.45027919 9.23164159 4.4089223 ]\n", + "DEBUG:root:optics_fp: cphi: [-0.71462647 -0.76465055 -0.81663789 -0.86852682 -0.91713533 -0.95822269\n", + " -0.98707045 -0.99965519 -0.71462647 -0.66170459 -0.59665476 -0.51729759\n", + " -0.42196448 -0.31030314 -0.18420747 -0.04836971 -0.99965519 -0.99953644\n", + " -0.99934473 -0.99900557 -0.99831831 -0.99657638 -0.98967281 -0.87090507\n", + " -0.04836971 -0.05610053 -0.06679051 -0.08253363 -0.10799424 -0.15602533\n", + " -0.27837409 -0.87090507 -0.73594733 -0.79879708 -0.86266587 -0.92216881\n", + " -0.96955698 -0.99635146 -0.69307094 -0.62034596 -0.5272064 -0.41033606\n", + " -0.26919173 -0.10843276 -0.99959581 -0.99940041 -0.99902199 -0.99813478\n", + " -0.99516407 -0.96924606 -0.05196415 -0.06335735 -0.0811815 -0.11297393\n", + " -0.18526317 -0.48452029 -0.71462988 -0.71462988 -0.86931637 -0.86931637\n", + " -0.71508845 -0.64388103 -0.55091667 -0.43180852 -0.28504096 -0.11526196\n", + " -0.78075859 -0.71676907 -0.62767848 -0.50476226 -0.34135833 -0.1402609\n", + " -0.84875703 -0.7971706 -0.71938094 -0.60051365 -0.4226937 -0.17893311\n", + " -0.91338303 -0.87922117 -0.82275039 -0.7239943 -0.54602022 -0.24622747\n", + " -0.96582068 -0.95066579 -0.92326613 -0.86731478 -0.73433428 -0.38842227\n", + " -0.99588139 -0.99392405 -0.99016821 -0.98152333 -0.95403253 -0.77825973]\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "DEBUG:root:optics_fp: sphi: [-0.69950626 -0.64444513 -0.57715037 -0.49564218 -0.39857594 -0.28602322\n", + " -0.16028704 -0.02625833 -0.69950626 -0.74976466 -0.80249804 -0.85580559\n", + " -0.90661236 -0.95063766 -0.98288738 -0.9988295 -0.02625833 -0.03044512\n", + " -0.03619555 -0.04458562 -0.05797023 -0.08267725 -0.1433448 -0.49145128\n", + " -0.9988295 -0.99842512 -0.99776702 -0.99658828 -0.99415152 -0.98775305\n", + " -0.96047273 -0.49145128 -0.67703879 -0.60160056 -0.50577425 -0.38678764\n", + " -0.24486582 -0.08534494 -0.72086938 -0.78432831 -0.84973726 -0.91193438\n", + " -0.96308661 -0.99410379 -0.02842926 -0.03462403 -0.04421613 -0.06104888\n", + " -0.09822663 -0.24609363 -0.99864895 -0.99799091 -0.99669933 -0.99359795\n", + " -0.98268894 -0.87478002 -0.69950278 -0.69950278 -0.49425605 -0.49425605\n", + " -0.69903398 -0.76512562 -0.83456026 -0.9019653 -0.95851534 -0.99333513\n", + " -0.6248328 -0.69731062 -0.77847269 -0.8632584 -0.93993324 -0.99011458\n", + " -0.52878304 -0.60375411 -0.69461576 -0.79961451 -0.90627261 -0.98386124\n", + " -0.40710127 -0.47641382 -0.56840284 -0.68980596 -0.837772 -0.96921207\n", + " -0.25921116 -0.31021694 -0.38416098 -0.49776006 -0.67878801 -0.92148149\n", + " -0.09066564 -0.11006805 -0.13988178 -0.19134252 -0.29970307 -0.6279425 ]\n", + "DEBUG:root:optics_fp: xyfp: [[32.23341696 31.55141621]\n", + " [32.23194958 27.16498788]\n", + " [32.2304822 22.77855956]\n", + " [32.22901483 18.39213124]\n", + " [32.22754745 14.00570291]\n", + " [32.22608007 9.61927458]\n", + " [32.22461269 5.23284626]\n", + " [32.2231453 0.84641793]\n", + " [32.23341696 31.55141621]\n", + " [27.84698864 31.5528836 ]\n", + " [23.46056031 31.55435097]\n", + " [19.07413198 31.55581835]\n", + " [14.68770366 31.55728573]\n", + " [10.30127533 31.55875311]\n", + " [ 5.91484701 31.56022049]\n", + " [ 1.52841868 31.56168787]\n", + " [32.2231453 0.84641793]\n", + " [27.83671698 0.84788531]\n", + " [23.45028865 0.84935269]\n", + " [19.06386033 0.85082007]\n", + " [14.677432 0.85228745]\n", + " [10.29100367 0.85375483]\n", + " [ 5.90457535 0.85522221]\n", + " [ 1.51814702 0.85668959]\n", + " [ 1.52841868 31.56168787]\n", + " [ 1.5269513 27.17525955]\n", + " [ 1.52548392 22.78883122]\n", + " [ 1.52401654 18.4024029 ]\n", + " [ 1.52254916 14.01597457]\n", + " [ 1.52108178 9.62954624]\n", + " [ 1.5196144 5.24311792]\n", + " [ 1.51814702 0.85668959]\n", + " [32.21777718 29.63892134]\n", + " [32.21597876 24.26292164]\n", + " [32.21418034 18.88692194]\n", + " [32.21238193 13.51092224]\n", + " [32.21058351 8.13492254]\n", + " [32.20878509 2.75892284]\n", + " [30.32091205 31.53705599]\n", + " [24.94491236 31.53885442]\n", + " [19.56891265 31.54065283]\n", + " [14.19291295 31.54245125]\n", + " [ 8.81691325 31.54424967]\n", + " [ 3.44091356 31.54604808]\n", + " [30.31065043 0.86205771]\n", + " [24.93465073 0.86385613]\n", + " [19.55865103 0.86565455]\n", + " [14.18265134 0.86745297]\n", + " [ 8.80665163 0.86925139]\n", + " [ 3.43065193 0.8710498 ]\n", + " [ 1.5427789 29.64918296]\n", + " [ 1.54098048 24.27318326]\n", + " [ 1.53918206 18.89718357]\n", + " [ 1.53738364 13.52118387]\n", + " [ 1.53558522 8.14518416]\n", + " [ 1.5337868 2.76918446]\n", + " [32.21841195 31.53642123]\n", + " [32.21841195 31.53642123]\n", + " [ 1.53315204 0.87168457]\n", + " [ 1.53315204 0.87168457]\n", + " [30.32027729 29.6395561 ]\n", + " [24.94427759 29.64135452]\n", + " [19.56827789 29.64315294]\n", + " [14.19227819 29.64495136]\n", + " [ 8.81627849 29.64674978]\n", + " [ 3.44027879 29.6485482 ]\n", + " [30.31847887 24.2635564 ]\n", + " [24.94247917 24.26535482]\n", + " [19.56647947 24.26715324]\n", + " [14.19047977 24.26895166]\n", + " [ 8.81448007 24.27075007]\n", + " [ 3.43848037 24.2725485 ]\n", + " [30.31668045 18.8875567 ]\n", + " [24.94068075 18.88935513]\n", + " [19.56468105 18.89115354]\n", + " [14.18868135 18.89295196]\n", + " [ 8.81268165 18.89475038]\n", + " [ 3.43668195 18.89654879]\n", + " [30.31488203 13.51155701]\n", + " [24.93888233 13.51335542]\n", + " [19.56288263 13.51515384]\n", + " [14.18688293 13.51695226]\n", + " [ 8.81088324 13.51875068]\n", + " [ 3.43488354 13.5205491 ]\n", + " [30.31308361 8.13555731]\n", + " [24.93708392 8.13735572]\n", + " [19.56108422 8.13915414]\n", + " [14.18508451 8.14095256]\n", + " [ 8.80908482 8.14275098]\n", + " [ 3.43308512 8.1445494 ]\n", + " [30.31128519 2.75955761]\n", + " [24.93528549 2.76135602]\n", + " [19.5592858 2.76315444]\n", + " [14.18328609 2.76495286]\n", + " [ 8.8072864 2.76675128]\n", + " [ 3.4312867 2.7685497 ]]\n", + "DEBUG:root:optics_fp: xyfp shape: (96, 2)\n", + "DEBUG:root:make_az_asym: xyp: [[32.23341696 31.55141621]\n", + " [32.23194958 27.16498788]\n", + " [32.2304822 22.77855956]\n", + " [32.22901483 18.39213124]\n", + " [32.22754745 14.00570291]\n", + " [32.22608007 9.61927458]\n", + " [32.22461269 5.23284626]\n", + " [32.2231453 0.84641793]\n", + " [32.23341696 31.55141621]\n", + " [27.84698864 31.5528836 ]\n", + " [23.46056031 31.55435097]\n", + " [19.07413198 31.55581835]\n", + " [14.68770366 31.55728573]\n", + " [10.30127533 31.55875311]\n", + " [ 5.91484701 31.56022049]\n", + " [ 1.52841868 31.56168787]\n", + " [32.2231453 0.84641793]\n", + " [27.83671698 0.84788531]\n", + " [23.45028865 0.84935269]\n", + " [19.06386033 0.85082007]\n", + " [14.677432 0.85228745]\n", + " [10.29100367 0.85375483]\n", + " [ 5.90457535 0.85522221]\n", + " [ 1.51814702 0.85668959]\n", + " [ 1.52841868 31.56168787]\n", + " [ 1.5269513 27.17525955]\n", + " [ 1.52548392 22.78883122]\n", + " [ 1.52401654 18.4024029 ]\n", + " [ 1.52254916 14.01597457]\n", + " [ 1.52108178 9.62954624]\n", + " [ 1.5196144 5.24311792]\n", + " [ 1.51814702 0.85668959]\n", + " [32.21777718 29.63892134]\n", + " [32.21597876 24.26292164]\n", + " [32.21418034 18.88692194]\n", + " [32.21238193 13.51092224]\n", + " [32.21058351 8.13492254]\n", + " [32.20878509 2.75892284]\n", + " [30.32091205 31.53705599]\n", + " [24.94491236 31.53885442]\n", + " [19.56891265 31.54065283]\n", + " [14.19291295 31.54245125]\n", + " [ 8.81691325 31.54424967]\n", + " [ 3.44091356 31.54604808]\n", + " [30.31065043 0.86205771]\n", + " [24.93465073 0.86385613]\n", + " [19.55865103 0.86565455]\n", + " [14.18265134 0.86745297]\n", + " [ 8.80665163 0.86925139]\n", + " [ 3.43065193 0.8710498 ]\n", + " [ 1.5427789 29.64918296]\n", + " [ 1.54098048 24.27318326]\n", + " [ 1.53918206 18.89718357]\n", + " [ 1.53738364 13.52118387]\n", + " [ 1.53558522 8.14518416]\n", + " [ 1.5337868 2.76918446]\n", + " [32.21841195 31.53642123]\n", + " [32.21841195 31.53642123]\n", + " [ 1.53315204 0.87168457]\n", + " [ 1.53315204 0.87168457]\n", + " [30.32027729 29.6395561 ]\n", + " [24.94427759 29.64135452]\n", + " [19.56827789 29.64315294]\n", + " [14.19227819 29.64495136]\n", + " [ 8.81627849 29.64674978]\n", + " [ 3.44027879 29.6485482 ]\n", + " [30.31847887 24.2635564 ]\n", + " [24.94247917 24.26535482]\n", + " [19.56647947 24.26715324]\n", + " [14.19047977 24.26895166]\n", + " [ 8.81448007 24.27075007]\n", + " [ 3.43848037 24.2725485 ]\n", + " [30.31668045 18.8875567 ]\n", + " [24.94068075 18.88935513]\n", + " [19.56468105 18.89115354]\n", + " [14.18868135 18.89295196]\n", + " [ 8.81268165 18.89475038]\n", + " [ 3.43668195 18.89654879]\n", + " [30.31488203 13.51155701]\n", + " [24.93888233 13.51335542]\n", + " [19.56288263 13.51515384]\n", + " [14.18688293 13.51695226]\n", + " [ 8.81088324 13.51875068]\n", + " [ 3.43488354 13.5205491 ]\n", + " [30.31308361 8.13555731]\n", + " [24.93708392 8.13735572]\n", + " [19.56108422 8.13915414]\n", + " [14.18508451 8.14095256]\n", + " [ 8.80908482 8.14275098]\n", + " [ 3.43308512 8.1445494 ]\n", + " [30.31128519 2.75955761]\n", + " [24.93528549 2.76135602]\n", + " [19.5592858 2.76315444]\n", + " [14.18328609 2.76495286]\n", + " [ 8.8072864 2.76675128]\n", + " [ 3.4312867 2.7685497 ]]\n", + "DEBUG:root:make_az_asym: xyp: shape: (96, 2)\n", + "DEBUG:root:radec2pix: xyfp: [[32.23341696 31.55141621]\n", + " [32.23194958 27.16498788]\n", + " [32.2304822 22.77855956]\n", + " [32.22901483 18.39213124]\n", + " [32.22754745 14.00570291]\n", + " [32.22608007 9.61927458]\n", + " [32.22461269 5.23284626]\n", + " [32.2231453 0.84641793]\n", + " [32.23341696 31.55141621]\n", + " [27.84698864 31.5528836 ]\n", + " [23.46056031 31.55435097]\n", + " [19.07413198 31.55581835]\n", + " [14.68770366 31.55728573]\n", + " [10.30127533 31.55875311]\n", + " [ 5.91484701 31.56022049]\n", + " [ 1.52841868 31.56168787]\n", + " [32.2231453 0.84641793]\n", + " [27.83671698 0.84788531]\n", + " [23.45028865 0.84935269]\n", + " [19.06386033 0.85082007]\n", + " [14.677432 0.85228745]\n", + " [10.29100367 0.85375483]\n", + " [ 5.90457535 0.85522221]\n", + " [ 1.51814702 0.85668959]\n", + " [ 1.52841868 31.56168787]\n", + " [ 1.5269513 27.17525955]\n", + " [ 1.52548392 22.78883122]\n", + " [ 1.52401654 18.4024029 ]\n", + " [ 1.52254916 14.01597457]\n", + " [ 1.52108178 9.62954624]\n", + " [ 1.5196144 5.24311792]\n", + " [ 1.51814702 0.85668959]\n", + " [32.21777718 29.63892134]\n", + " [32.21597876 24.26292164]\n", + " [32.21418034 18.88692194]\n", + " [32.21238193 13.51092224]\n", + " [32.21058351 8.13492254]\n", + " [32.20878509 2.75892284]\n", + " [30.32091205 31.53705599]\n", + " [24.94491236 31.53885442]\n", + " [19.56891265 31.54065283]\n", + " [14.19291295 31.54245125]\n", + " [ 8.81691325 31.54424967]\n", + " [ 3.44091356 31.54604808]\n", + " [30.31065043 0.86205771]\n", + " [24.93465073 0.86385613]\n", + " [19.55865103 0.86565455]\n", + " [14.18265134 0.86745297]\n", + " [ 8.80665163 0.86925139]\n", + " [ 3.43065193 0.8710498 ]\n", + " [ 1.5427789 29.64918296]\n", + " [ 1.54098048 24.27318326]\n", + " [ 1.53918206 18.89718357]\n", + " [ 1.53738364 13.52118387]\n", + " [ 1.53558522 8.14518416]\n", + " [ 1.5337868 2.76918446]\n", + " [32.21841195 31.53642123]\n", + " [32.21841195 31.53642123]\n", + " [ 1.53315204 0.87168457]\n", + " [ 1.53315204 0.87168457]\n", + " [30.32027729 29.6395561 ]\n", + " [24.94427759 29.64135452]\n", + " [19.56827789 29.64315294]\n", + " [14.19227819 29.64495136]\n", + " [ 8.81627849 29.64674978]\n", + " [ 3.44027879 29.6485482 ]\n", + " [30.31847887 24.2635564 ]\n", + " [24.94247917 24.26535482]\n", + " [19.56647947 24.26715324]\n", + " [14.19047977 24.26895166]\n", + " [ 8.81448007 24.27075007]\n", + " [ 3.43848037 24.2725485 ]\n", + " [30.31668045 18.8875567 ]\n", + " [24.94068075 18.88935513]\n", + " [19.56468105 18.89115354]\n", + " [14.18868135 18.89295196]\n", + " [ 8.81268165 18.89475038]\n", + " [ 3.43668195 18.89654879]\n", + " [30.31488203 13.51155701]\n", + " [24.93888233 13.51335542]\n", + " [19.56288263 13.51515384]\n", + " [14.18688293 13.51695226]\n", + " [ 8.81088324 13.51875068]\n", + " [ 3.43488354 13.5205491 ]\n", + " [30.31308361 8.13555731]\n", + " [24.93708392 8.13735572]\n", + " [19.56108422 8.13915414]\n", + " [14.18508451 8.14095256]\n", + " [ 8.80908482 8.14275098]\n", + " [ 3.43308512 8.1445494 ]\n", + " [30.31128519 2.75955761]\n", + " [24.93528549 2.76135602]\n", + " [19.5592858 2.76315444]\n", + " [14.18328609 2.76495286]\n", + " [ 8.8072864 2.76675128]\n", + " [ 3.4312867 2.7685497 ]]\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "DEBUG:root:radec2pix: xyfp Shape: (96, 2)\n", + "DEBUG:root:mm_to_pix: fitpx: [[0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]]\n", + "DEBUG:root:mm_to_pix: fitpx.shape: (96, 2)\n", + "DEBUG:root:radec2pix: xyfp: [[32.23341696 31.55141621]\n", + " [32.23194958 27.16498788]\n", + " [32.2304822 22.77855956]\n", + " [32.22901483 18.39213124]\n", + " [32.22754745 14.00570291]\n", + " [32.22608007 9.61927458]\n", + " [32.22461269 5.23284626]\n", + " [32.2231453 0.84641793]\n", + " [32.23341696 31.55141621]\n", + " [27.84698864 31.5528836 ]\n", + " [23.46056031 31.55435097]\n", + " [19.07413198 31.55581835]\n", + " [14.68770366 31.55728573]\n", + " [10.30127533 31.55875311]\n", + " [ 5.91484701 31.56022049]\n", + " [ 1.52841868 31.56168787]\n", + " [32.2231453 0.84641793]\n", + " [27.83671698 0.84788531]\n", + " [23.45028865 0.84935269]\n", + " [19.06386033 0.85082007]\n", + " [14.677432 0.85228745]\n", + " [10.29100367 0.85375483]\n", + " [ 5.90457535 0.85522221]\n", + " [ 1.51814702 0.85668959]\n", + " [ 1.52841868 31.56168787]\n", + " [ 1.5269513 27.17525955]\n", + " [ 1.52548392 22.78883122]\n", + " [ 1.52401654 18.4024029 ]\n", + " [ 1.52254916 14.01597457]\n", + " [ 1.52108178 9.62954624]\n", + " [ 1.5196144 5.24311792]\n", + " [ 1.51814702 0.85668959]\n", + " [32.21777718 29.63892134]\n", + " [32.21597876 24.26292164]\n", + " [32.21418034 18.88692194]\n", + " [32.21238193 13.51092224]\n", + " [32.21058351 8.13492254]\n", + " [32.20878509 2.75892284]\n", + " [30.32091205 31.53705599]\n", + " [24.94491236 31.53885442]\n", + " [19.56891265 31.54065283]\n", + " [14.19291295 31.54245125]\n", + " [ 8.81691325 31.54424967]\n", + " [ 3.44091356 31.54604808]\n", + " [30.31065043 0.86205771]\n", + " [24.93465073 0.86385613]\n", + " [19.55865103 0.86565455]\n", + " [14.18265134 0.86745297]\n", + " [ 8.80665163 0.86925139]\n", + " [ 3.43065193 0.8710498 ]\n", + " [ 1.5427789 29.64918296]\n", + " [ 1.54098048 24.27318326]\n", + " [ 1.53918206 18.89718357]\n", + " [ 1.53738364 13.52118387]\n", + " [ 1.53558522 8.14518416]\n", + " [ 1.5337868 2.76918446]\n", + " [32.21841195 31.53642123]\n", + " [32.21841195 31.53642123]\n", + " [ 1.53315204 0.87168457]\n", + " [ 1.53315204 0.87168457]\n", + " [30.32027729 29.6395561 ]\n", + " [24.94427759 29.64135452]\n", + " [19.56827789 29.64315294]\n", + " [14.19227819 29.64495136]\n", + " [ 8.81627849 29.64674978]\n", + " [ 3.44027879 29.6485482 ]\n", + " [30.31847887 24.2635564 ]\n", + " [24.94247917 24.26535482]\n", + " [19.56647947 24.26715324]\n", + " [14.19047977 24.26895166]\n", + " [ 8.81448007 24.27075007]\n", + " [ 3.43848037 24.2725485 ]\n", + " [30.31668045 18.8875567 ]\n", + " [24.94068075 18.88935513]\n", + " [19.56468105 18.89115354]\n", + " [14.18868135 18.89295196]\n", + " [ 8.81268165 18.89475038]\n", + " [ 3.43668195 18.89654879]\n", + " [30.31488203 13.51155701]\n", + " [24.93888233 13.51335542]\n", + " [19.56288263 13.51515384]\n", + " [14.18688293 13.51695226]\n", + " [ 8.81088324 13.51875068]\n", + " [ 3.43488354 13.5205491 ]\n", + " [30.31308361 8.13555731]\n", + " [24.93708392 8.13735572]\n", + " [19.56108422 8.13915414]\n", + " [14.18508451 8.14095256]\n", + " [ 8.80908482 8.14275098]\n", + " [ 3.43308512 8.1445494 ]\n", + " [30.31128519 2.75955761]\n", + " [24.93528549 2.76135602]\n", + " [19.5592858 2.76315444]\n", + " [14.18328609 2.76495286]\n", + " [ 8.8072864 2.76675128]\n", + " [ 3.4312867 2.7685497 ]]\n", + "DEBUG:root:radec2pix: ccdpx: [[-4.44999999e+01 -4.99999873e-01]\n", + " [-4.44999998e+01 2.91928572e+02]\n", + " [-4.44999998e+01 5.84357143e+02]\n", + " [-4.45000002e+01 8.76785714e+02]\n", + " [-4.45000003e+01 1.16921429e+03]\n", + " [-4.45000002e+01 1.46164286e+03]\n", + " [-4.45000002e+01 1.75407143e+03]\n", + " [-4.45000000e+01 2.04650000e+03]\n", + " [-4.44999999e+01 -4.99999873e-01]\n", + " [ 2.47928571e+02 -5.00000280e-01]\n", + " [ 5.40357143e+02 -5.00000000e-01]\n", + " [ 8.32785714e+02 -4.99999974e-01]\n", + " [ 1.12521429e+03 -4.99999987e-01]\n", + " [ 1.41764286e+03 -4.99999863e-01]\n", + " [ 1.71007143e+03 -5.00000138e-01]\n", + " [ 2.00250000e+03 -4.99999700e-01]\n", + " [-4.45000000e+01 2.04650000e+03]\n", + " [ 2.47928571e+02 2.04650000e+03]\n", + " [ 5.40357143e+02 2.04650000e+03]\n", + " [ 8.32785714e+02 2.04650000e+03]\n", + " [ 1.12521429e+03 2.04650000e+03]\n", + " [ 1.41764286e+03 2.04650000e+03]\n", + " [ 1.71007143e+03 2.04650000e+03]\n", + " [ 2.00250000e+03 2.04650000e+03]\n", + " [ 2.00250000e+03 -4.99999700e-01]\n", + " [ 2.00250000e+03 2.91928571e+02]\n", + " [ 2.00250000e+03 5.84357143e+02]\n", + " [ 2.00250000e+03 8.76785714e+02]\n", + " [ 2.00250000e+03 1.16921429e+03]\n", + " [ 2.00250000e+03 1.46164286e+03]\n", + " [ 2.00250000e+03 1.75407143e+03]\n", + " [ 2.00250000e+03 2.04650000e+03]\n", + " [-4.35000000e+01 1.27000000e+02]\n", + " [-4.35000002e+01 4.85400000e+02]\n", + " [-4.34999999e+01 8.43800000e+02]\n", + " [-4.35000003e+01 1.20220000e+03]\n", + " [-4.35000000e+01 1.56060000e+03]\n", + " [-4.35000001e+01 1.91900000e+03]\n", + " [ 8.30000001e+01 5.00000148e-01]\n", + " [ 4.41400000e+02 4.99999823e-01]\n", + " [ 7.99800000e+02 4.99999939e-01]\n", + " [ 1.15820000e+03 5.00000006e-01]\n", + " [ 1.51660000e+03 5.00000232e-01]\n", + " [ 1.87500000e+03 5.00000256e-01]\n", + " [ 8.29999998e+01 2.04550000e+03]\n", + " [ 4.41400000e+02 2.04550000e+03]\n", + " [ 7.99800000e+02 2.04550000e+03]\n", + " [ 1.15820000e+03 2.04550000e+03]\n", + " [ 1.51660000e+03 2.04550000e+03]\n", + " [ 1.87500000e+03 2.04550000e+03]\n", + " [ 2.00150000e+03 1.27000000e+02]\n", + " [ 2.00150000e+03 4.85400000e+02]\n", + " [ 2.00150000e+03 8.43800000e+02]\n", + " [ 2.00150000e+03 1.20220000e+03]\n", + " [ 2.00150000e+03 1.56060000e+03]\n", + " [ 2.00150000e+03 1.91900000e+03]\n", + " [-4.35000003e+01 4.99999725e-01]\n", + " [-4.35000003e+01 4.99999725e-01]\n", + " [ 2.00150000e+03 2.04550000e+03]\n", + " [ 2.00150000e+03 2.04550000e+03]\n", + " [ 8.30000000e+01 1.27000000e+02]\n", + " [ 4.41400000e+02 1.27000000e+02]\n", + " [ 7.99800000e+02 1.27000000e+02]\n", + " [ 1.15820000e+03 1.27000000e+02]\n", + " [ 1.51660000e+03 1.27000000e+02]\n", + " [ 1.87500000e+03 1.27000000e+02]\n", + " [ 8.30000001e+01 4.85400000e+02]\n", + " [ 4.41400000e+02 4.85400000e+02]\n", + " [ 7.99800000e+02 4.85400000e+02]\n", + " [ 1.15820000e+03 4.85400000e+02]\n", + " [ 1.51660000e+03 4.85400000e+02]\n", + " [ 1.87500000e+03 4.85400000e+02]\n", + " [ 8.30000001e+01 8.43800000e+02]\n", + " [ 4.41400000e+02 8.43800000e+02]\n", + " [ 7.99800000e+02 8.43800000e+02]\n", + " [ 1.15820000e+03 8.43800000e+02]\n", + " [ 1.51660000e+03 8.43800000e+02]\n", + " [ 1.87500000e+03 8.43800000e+02]\n", + " [ 8.29999999e+01 1.20220000e+03]\n", + " [ 4.41400000e+02 1.20220000e+03]\n", + " [ 7.99800000e+02 1.20220000e+03]\n", + " [ 1.15820000e+03 1.20220000e+03]\n", + " [ 1.51660000e+03 1.20220000e+03]\n", + " [ 1.87500000e+03 1.20220000e+03]\n", + " [ 8.30000000e+01 1.56060000e+03]\n", + " [ 4.41400000e+02 1.56060000e+03]\n", + " [ 7.99800000e+02 1.56060000e+03]\n", + " [ 1.15820000e+03 1.56060000e+03]\n", + " [ 1.51660000e+03 1.56060000e+03]\n", + " [ 1.87500000e+03 1.56060000e+03]\n", + " [ 8.30000003e+01 1.91900000e+03]\n", + " [ 4.41400000e+02 1.91900000e+03]\n", + " [ 7.99800000e+02 1.91900000e+03]\n", + " [ 1.15820000e+03 1.91900000e+03]\n", + " [ 1.51660000e+03 1.91900000e+03]\n", + " [ 1.87500000e+03 1.91900000e+03]]\n", + "DEBUG:root:radec2pix: fitpx: [[4271.49999987 4155.49999987]\n", + " [4271.49999978 3863.07142838]\n", + " [4271.49999978 3570.64285699]\n", + " [4271.50000021 3278.21428583]\n", + " [4271.50000028 2985.78571441]\n", + " [4271.50000021 2693.35714292]\n", + " [4271.50000016 2400.92857146]\n", + " [4271.5 2108.5 ]\n", + " [4271.49999987 4155.49999987]\n", + " [3979.07142882 4155.50000028]\n", + " [3686.64285714 4155.5 ]\n", + " [3394.2142857 4155.49999997]\n", + " [3101.78571428 4155.49999999]\n", + " [2809.35714281 4155.49999986]\n", + " [2516.92857145 4155.50000014]\n", + " [2224.49999999 4155.4999997 ]\n", + " [4271.5 2108.5 ]\n", + " [3979.0714288 2108.50000001]\n", + " [3686.64285693 2108.49999999]\n", + " [3394.21428614 2108.50000002]\n", + " [3101.7857146 2108.50000002]\n", + " [2809.35714263 2108.49999998]\n", + " [2516.92857131 2108.49999998]\n", + " [2224.49999992 2108.49999995]\n", + " [2224.49999999 4155.4999997 ]\n", + " [2224.50000001 3863.07142868]\n", + " [2224.5 3570.64285711]\n", + " [2224.50000002 3278.21428594]\n", + " [2224.50000001 2985.78571436]\n", + " [2224.49999998 2693.35714271]\n", + " [2224.50000001 2400.92857146]\n", + " [2224.49999992 2108.49999995]\n", + " [4270.5 4028. ]\n", + " [4270.50000018 3669.60000013]\n", + " [4270.49999988 3311.19999993]\n", + " [4270.50000028 2952.80000012]\n", + " [4270.5 2594.4 ]\n", + " [4270.50000006 2236.00000001]\n", + " [4143.99999986 4154.49999985]\n", + " [3785.60000014 4154.50000018]\n", + " [3427.20000004 4154.50000006]\n", + " [3068.8 4154.49999999]\n", + " [2710.39999994 4154.49999977]\n", + " [2351.99999997 4154.49999974]\n", + " [4144.00000019 2109.50000001]\n", + " [3785.59999998 2109.5 ]\n", + " [3427.19999968 2109.49999999]\n", + " [3068.80000035 2109.50000002]\n", + " [2710.39999998 2109.5 ]\n", + " [2351.99999973 2109.49999993]\n", + " [2225.50000001 4028.00000029]\n", + " [2225.50000001 3669.60000014]\n", + " [2225.50000002 3311.20000027]\n", + " [2225.50000003 2952.80000024]\n", + " [2225.49999999 2594.39999997]\n", + " [2225.49999991 2235.99999983]\n", + " [4270.50000028 4154.50000027]\n", + " [4270.50000028 4154.50000027]\n", + " [2225.50000021 2109.50000012]\n", + " [2225.50000021 2109.50000012]\n", + " [4143.99999997 4027.99999997]\n", + " [3785.60000006 4028.00000007]\n", + " [3427.20000002 4028.00000003]\n", + " [3068.8 4028.00000001]\n", + " [2710.40000007 4028.00000025]\n", + " [2352. 4028.00000001]\n", + " [4143.99999988 3669.5999999 ]\n", + " [3785.59999992 3669.59999992]\n", + " [3427.20000003 3669.60000003]\n", + " [3068.79999996 3669.59999994]\n", + " [2710.39999994 3669.59999984]\n", + " [2352.00000003 3669.60000024]\n", + " [4143.99999986 3311.19999992]\n", + " [3785.60000024 3311.20000018]\n", + " [3427.19999985 3311.19999985]\n", + " [3068.80000018 3311.20000023]\n", + " [2710.39999997 3311.19999993]\n", + " [2351.99999998 3311.19999989]\n", + " [4144.00000009 2952.80000004]\n", + " [3785.60000017 2952.80000009]\n", + " [3427.19999999 2952.79999999]\n", + " [3068.79999994 2952.79999994]\n", + " [2710.40000012 2952.80000019]\n", + " [2351.99999999 2952.79999997]\n", + " [4143.99999998 2594.4 ]\n", + " [3785.60000016 2594.40000005]\n", + " [3427.20000028 2594.40000012]\n", + " [3068.79999967 2594.39999981]\n", + " [2710.40000007 2594.40000006]\n", + " [2351.99999992 2594.39999981]\n", + " [4143.99999971 2235.99999997]\n", + " [3785.59999981 2235.99999998]\n", + " [3427.2 2236. ]\n", + " [3068.79999989 2235.99999998]\n", + " [2710.40000023 2236.00000007]\n", + " [2352.00000024 2236.00000019]]\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "DEBUG:root:fitpix2pix: ccdpx: shape: (96, 2)\n", + "DEBUG:root:fitpix2pix: visCut: True\n" + ] + } + ], + "source": [ + "dir_testfiles='/Users/tapritc2/tessgi/tesspoint/TESSPoint_CreateTestFiles/testfiles'\n", + "wcsfile=dir_testfiles+\"/TEST_pix2radec_Sec{:02d}_Cam{}_CCD{}_stars2px.dat\".format(Sector,Camera,CCD)\n", + "\n", + "test_df = test_pix2radec_SectorCameraCCD(SectorCameraCCD)\n", + "\n", + "benchmark_df = pd.read_csv(wcsfile,delimiter=' ',names=['tic','ra','dec'],skiprows=1,index_col=False)\n", + "benchmark_df['index']=benchmark_df['tic']\n", + "\n", + "test_pix=test_radec2pix_df(test_df,SectorCameraCCD)\n", + "benchmarktest_pix=test_radec2pix_df(benchmark_df,SectorCameraCCD)" + ] + }, + { + "cell_type": "code", + "execution_count": 375, + "id": "c923ba83", + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "[]" + ] + }, + "execution_count": 375, + "metadata": {}, + "output_type": "execute_result" + }, + { + "data": { + "image/png": "iVBORw0KGgoAAAANSUhEUgAAAiwAAAGdCAYAAAAxCSikAAAAOXRFWHRTb2Z0d2FyZQBNYXRwbG90bGliIHZlcnNpb24zLjYuMCwgaHR0cHM6Ly9tYXRwbG90bGliLm9yZy89olMNAAAACXBIWXMAAA9hAAAPYQGoP6dpAABEn0lEQVR4nO3de3RU9b3//1fAEG5JIA4hCSTEggjhqqSNwQtFRLQKejyuFk0VgUPLavH69UJsl0APFXusVeGcdv30ZLVacwqtUBUtlKhotUi4lDutQBFDEyCGSyYImXDZvz+GGTLJZC7JXPbe83ysNWuYnT0znz3DnnnP5/P+vD9JhmEYAgAAMLFO8W4AAABAMAQsAADA9AhYAACA6RGwAAAA0yNgAQAApkfAAgAATI+ABQAAmB4BCwAAML1L4t2Ajjp//rxqamqUmpqqpKSkeDcHAACEwDAMNTQ0KCcnR506Be8/sXzAUlNTo9zc3Hg3AwAAtMPBgwfVv3//oPtZPmBJTU2V5D7gtLS0OLcGAACEwul0Kjc31/s9HozlAxbPMFBaWhoBCwAAFhNqOgdJtwAAwPQIWAAAgOkRsAAAANMjYAEAAKZHwAIAAEyPgAUAAJgeAQsAADA9AhYAAGB6BCwAAMD0CFgAAAHtrqnXd/6/T7W7pj7eTUECI2ABAAT0wT9qVfn5MX3wj9p4NwUJjIAFABDQ4fpGn2sgHiy/+CEAIAK2vyG9+4h06wvSyLu0u6Zee46clCT947DTe/3mlmpJ0uC+PVWQkx635iLxELAAAKSqdZLL6b4eeZeeeGO7dtY4fXbZ9MUJbfpiqyRpeE6a3nnwujg0FImKISEAAGB69LAAQKLa/oa7R0WS9r1/8fqdR/Vq3ybtu2yUDvX/ll5f/4U2fXFchQN667tXD5DkHhICYomABQBsptbZqPLKKpUU5SkzrWvbO777iHsYqLkTB6RNZbpU0qUpb0mTZ2nTgWPa9MVxDclK1R1X9otm04E2EbAAgM3UNrj00vt7NbGgb+CA5dYXfHtYThyQeuVLgya4t+WNlSRlp3f1uQbigYAFAKyq4bC06ddS4XQpNSv8+4+8y32RpHcelTaVuYOV237hs9v4IZn6y946jR+SGYFGA+0T1aTbKVOmKC8vT127dlV2drbuvfde1dTU+N336NGj6t+/v5KSknTixIloNgsA7KHhsPTRs1LDYdU6G7Wzut57keRzu9bZ/hoqBTnpWvb9YqYxI66i2sMyfvx4PfXUU8rOzlZ1dbUee+wx3XXXXVq3bl2rfWfOnKmRI0equro6mk0CAFsqr6zSS+/v9dk2d8UO778fmnC5Hpk4uO0HyBsr7fiDdxgIMJskwzCMWD3Z22+/rTvuuEMul0vJycne7b/61a+0bNkyPf3005owYYKOHz+uXr16hfSYTqdT6enpqq+vV1paWpRaDgAm0XDYfZGkQ9uklQ9KkxfrWNpQHTvVpLPdM7X1eFfNXbFDz945QsP7uXtFMlNTAuezADEW7vd3zHJYjh07pvLyco0dO9YnWNm9e7d+8pOfqLKyUvv37w/6OC6XSy6Xy3vb6XQG2BsAbGbTr93DQM2tfFAZkjIkadxcnR38A0nS8H7p3oAFsLqoF4578skn1aNHD1166aWqqqrSW2+95f2by+XS3Xffreeee055eXkhPd6iRYuUnp7uveTm5kar6QAQcbXORr1Qsaf9OSWF06XvfeS+TF7s3jZ58cVthdMj11jARMIOWObPn6+kpKSAl02bNnn3f/zxx7VlyxatWbNGnTt31n333SfPKFRpaamGDh2q7373uyE/f2lpqerr672XgwcPhnsIABA3ninHtQ2u4Dv7k5ol5Yx2X7JHubdlj7q4LTVLmakpemjC5cpMTYlMowETCHtIaM6cOZo6dWrAffLz873/djgccjgcGjx4sIYOHarc3FytX79excXF+uCDD7Rjxw698cYbkuQNZBwOh370ox9pwYIFrR47JSVFKSmchABMrKPTjTsoM61r4ARbwILCDlg8AUh7eAISTw7K8uXLdfr0ae/fN27cqBkzZujjjz/WwIED2/UcABB3nunGV9wipWap1tno7VFpPuXYo90JsalZ0ri5cQmKPEKuqgt0UNSSbjds2KANGzbo2muvVe/evbV//349/fTTGjhwoIqLiyWpVVBSV1cnSRo6dGjIs4QAwOw6POW4LalZ0vjSjjavQ0Kuqgt0UNQClm7dumnFihWaN2+evvrqK2VnZ+vmm2/W0qVLGdIBYD8tpxs3u56W36RbZl6us937amd1vd8pxwACi1rAMmLECH3wwQdh3eeb3/ymYlgWBgAip43pxpJ7unHGuLk+vSGWmnLcIicnakNcQACsJQQAkVA43Z2zIvkUdPPO5IljnkmHtcjJidoQFxAAAQuAhBTxZNHUrNZBiWe6cTN2mHJcUpSniQV9JYkhLsQMAQuAhBSvZNF4TzkOOVALkJOTKSkzzTdAs9QQFyyJgAUAIs0E043bEnKgFiAnR5L7+OI8QwmJhYAFgL01SxitNXrFJlnUBNONO1y8LsScHDsMccEaCFgA2FuzhNHyXc7ESRZtdtztCtRCzcmhqi5ihIAFgGWFmzibqMmizOqBHRCwALCsNvMx2kgYzcyWMpN0oefAHaTYKlm0jeOelj9Uk+9O19numdp6vGv4gZqJc3KQOAhYAJhbe3IxQkkYHfyDyLXRLNo47gy5i9dp3FydvXDcYQVqZsjJQcIjYAFgbu1ZSDCEhNFMw4bJoqEkyjrj1zygIwhYAFhKyPkYQRJGMyX75W2EkCibaTTaL1BDQiBgAWA+LCQYNczqgVURsAAwn0guJJioCaOJetywLQIWAOYTyYUEEzVhNFGPG7ZFwALAfBJoIUEAoSFgAWBZ5GMAiaNTvBsAwLxqnY16oWKPap2N8WsEuRgARMACQG0HJp5Ksp66J3HhycUgYAESGgELkOgaDksfLtL/vb8hvoGJiZiiZ8lGeD0RCQQsQCJpOCytXXSxxsmFbZl/e1GZSSckub9cdlbXey+SfG4nwpeOKXqWbITXE5FA0i2QSJqVua81eqm2waWudSc16MKfd1bXa9u/Tuh3Gw763M2WK/u2Z40iBMZriigiYAES0amjqqhco//bUKXhnQ7oZ8nS8E4H9Ns/vi1J6qNeuvHrIzUqt5d9K8m2Z42i5itCozU/AbHE64nIIGAB7M5fmfsNL6tkz2qVNIs9fpb8ivfftVc9LH3zLu8XTlgr+1pUyGsUISS8nog0AhbA7vyVud+z+uK/B98i7VmlJ8/M0qxv36FBfXoqMzVLSu1qv5wD1iiKvDZe02n5QzX57nSd7Z6prce78nqiwwhYALsLVub+1FFpzyrtPJ+vRscIKediT4rtKslGco0iuLXxmmbI/Zpq3FydHfwDSbye6BgCFsDugpW5r9kqSbrnG3mtAhPbVZKN5BpFcAvlNXXGr3mwDwIWINFdqCRbUvgNKdXmSZCsURR5IbymmUYjryc6jIAFSCT+ytyzqm8rtutZijNeT0QCheOACDN1VU/K3F/EGkWRx2uKKCJgASKMqp4WQfAWebymiCICFqA9LpS4r6v5wry9KQBgI+SwAMH4Kzd+oaLniYzr9NL79RozgKqeABBNBCxAMC1KuPuzasdh/W5jAqy/AwBxQsAChOrUUalmq4591aTTVX9TP0nH9m3UsKRkFXY1dP3t/eXq2ke1zkY9s+oftq7qWetsVHlllUqK8ug5AhATBCyAP37X33lF2rPKXb3zgm/smK93UyRtlF48e6dePHuX7v5GriR7V/X0JBZPLOhLwAIgJghYAH/8rr+zyvtPZ96NSqt6TxtGzNeCTcl68IZBujn/a7qxe18d+6pJv9twUJbnL3cHAOIkqrOEpkyZory8PHXt2lXZ2dm69957VVNT02q/3/zmNxo5cqS6du2qrKwszZkzJ5rNAoIrnC597yP3ZfJi97bJi73b0q53r42SMejr2mVcpn4FxRpy+WAN75euIVmp9qjq6cndudDTVOts1M7qeu9Fks9tZkoBiKao9rCMHz9eTz31lLKzs1VdXa3HHntMd911l9atW+fd5xe/+IWef/55PffccyoqKlJjY6P2798fzWYBwYW4/o4/dq3qWV5ZpZfe3+uzjcRiALES1YDlkUce8f57wIABmjt3ru644w6dOXNGycnJOn78uH784x9r5cqVmjBhgnffYcOGRbNZsAhTJ3ZeqOjZq0+uHpqQaf3eFA9/uTsXrqflN+mWmZfrbPe+2lldr7krdtg6sRiAucQsh+XYsWMqLy/X2LFjlZycLEmqqKjQ+fPnVV1draFDh6qhoUFjx47V888/r9zcXL+P43K55HJdrCDqdLIMqF2ZJrEzwPo7DkmP5MStZZHnL3dn5YOSpAxJGePm+qw7ZOfEYgDmEvVKt08++aR69OihSy+9VFVVVXrrrbe8f9u/f7/Onz+vZ555Ri+++KLeeOMNHTt2TBMnTlRTU5Pfx1u0aJHS09O9l7YCG1jIhaqx3l/2ZpNI5caD5O6ocHp82wcgYYUdsMyfP19JSUkBL5s2bfLu//jjj2vLli1as2aNOnfurPvuu0+GYUiSzp8/rzNnzmjx4sWaNGmSrr76av3ud7/T3r17tXbtWr/PX1paqvr6eu/l4EEbzMZIdM2SO0nsjLPULHeeTs5od86OdDF3J2e0N2jLTE2xR2IxAMsIe0hozpw5mjp1asB98vPzvf92OBxyOBwaPHiwhg4dqtzcXK1fv17FxcXKzs6WJBUUFHj379OnjxwOh6qqqvw+dkpKilJS+JC0inDzUEjstAa7JhYDMK+wAxZPANIenp4VTw7KNddcI0n67LPP1L9/f0nuXJe6ujoNGDCgXc+BOAhQr6PNPJQ2kjun5Q/V5LvTdbZ7prYe70piZzz5y90BoszUyfaIq6gl3W7YsEEbNmzQtddeq969e2v//v16+umnNXDgQBUXF0uSBg8erNtvv10PPfSQXn75ZaWlpam0tFRDhgzR+PHjo9U0RFoIa+200kZyZ4bcyZ0aN1dnB7trnZDYGSee3B0ghkyTbA/TiVrA0q1bN61YsULz5s3TV199pezsbN18881aunSpz5DOa6+9pkceeUS33nqrOnXqpHHjxmn16tXemUSwnlpnY/CViwunuwMcyd3DsvJBd3KnJ28iNUtiAhhgX1RSRpiiFrCMGDFCH3zwQdD90tLSVFZWprKysmg1BdEQoF5HRWWVXqx06kv19u7uNw8lUGE2SZlGoyUTO+nSBkLQrGe21ugV/EcO51LCYy2hBBHxL9EA9TpKJE0c+7BqxzzaoQJjVk3spEsbCA/J9ggFAUuCiPiXaJAhnczULGWmXsw7CZiHYsXkTrqzgfCRbI8OIGCxk1h+iQZbayfcx7JacmeLROOQ8nbobYENhdV7S7I9OoCAxU5M+CWaKAXG6NJGogqr95Zke3QAAYuNxexLNMCQjlXzUPxiYUAkskj04IbQM2vVZHtEHwGLCXQoIdYMX6JWHNJpDxYGRCKL0aweW/3IQUQRsMRKe6rBhoIv0dgJpTsbSAAR6b21YrI94oqAJVbaUw02FHyJxk6IicaJkreDBBDNWT2J0jOLiCFgaYfdNfVasHK35k0uUEFO+3orIpYQy5eo6dClDdsw0aweCjKCgKUd9hw5qcrPj2nPkZOBA5ZIVIONEL5EI4zubCQCE83qoSAjCFgCObRdWj1XuvlZKXtk+PePQTVYH3yJxg7d2UgEzOqBiRCwBPLlP6Qv/ip9+Q/tNgZoz5GTkqS/7PnS51qSBvft2bq3JZLVYENhkS9RunYB+4h4722zCQqsMYTmCFhCtGDlblV+fsxn24ot1VqxpVqSVHRZhpZ9v9j3TpGsBmsjdO0CFhSrHtxmExTKdzkpyAgvApaWDm1396xI0r73vdfPDynWoWyXGtIG6Z0jl2rFlmrdeWU/XT+4jyR3D0t72TIhlrV2AHuJQw9uSVGeJhb0lSQKMoKApZXVc93DQM1tX6r+Wqr+kjTgGjlHv6IVW6p1/eA+uuPKfqE9bqJUg/Uw4TIBAEyqjQkKmdlSZpIufG66gxRqSSUuApaWbn7Wt4dl+1Jp5FRp0AT3tj5DpMPteFyL5JdEC2vtAGhTgAkKktw/9i5Mn0biImBpKXuk74yg7UvdwcrIb3s3DTbqVXRZRoeGgWzJDMsEALCeEKZPZxo2HDpHWAhY2qEgJ711gi1YJgBA+4QyfVqiFzbBEbAE0meINOAa9zWCY5kAoBWm8QORQcASSPZIafqf4t0K62CZAKAVpvGHiQKYaEOneDcAicczK4oPb9hGw2Fp7aKLOVxoP88EBQIWtEAPC6KDX0lIJEzjB6KOgMWEbDHmneDTuJHYmMYPRB4BSzy1UQ2WMW/AApjGD8QUAUs8tehGBmAhTOMHYoqAJUI6OozDmDdgMUzjB2KKgCUcARb0C3kYp41u5IqqKv3fhirVGr30pXpLYswbMDWm8QMxRcASjkgM4bTRjVwiqSRFqr3qYX2QNZMxb8AmbLm4KRAHBCwd0K5hnCDdyJmpWRru7CaJMW/AMpjGD0QdAUswAWYCVFRW6cVKp3cIRwphGCeUbmRnvQBYCNP4gagjYAkmwEyAEkkTxz6s2jGPRnTqImPeAAD4ImAJJoQhnMzUi8M2YQ3jtNGNzJg3AAC+CFiCCXEmQLsfm25kAACCYvHDCGEYBwhPrbNRL1TsUa2zMd5NAWABBCzhCDATgBWIgfB4ahd5ZtoBQCAELOFg2XMgPA2HpbWLLs60A4B2imrAMmXKFOXl5alr167Kzs7Wvffeq5qaGp99Nm7cqAkTJqhXr17q3bu3brrpJm3dujWazQIQK55iixcCllpno3ZW13svknxuMzwEoC1RDVjGjx+v3//+9/rss8+0fPly/fOf/9Rdd93l/XtDQ4MmTZqkvLw8VVZW6pNPPlFaWpomTZqkM2fORLNpAOKgvLJKty35RLct+cRbs2juih3ebeWVVXFuIQCzSjIMw4jVk7399tu644475HK5lJycrE2bNunrX/+6qqqqlJubK0nasWOHRo4cqX379mngwIFBH9PpdCo9PV319fVKS0uL9iEACKZlscVmpQCOfdWkWvXS2e5926xdRB4YkBjC/f6O2bTmY8eOqby8XGPHjlVycrIk6YorrpDD4VBZWZmeeuopnTt3TmVlZRo2bJgGDBjg93FcLpdcrotJek6nMybtBxCiAMUWMyRljJvrM52fJSgAhCLqSbdPPvmkevTooUsvvVRVVVV66623vH9LTU3Vhx9+qNdff13dunVTz5499ec//1l/+tOfdMkl/mOpRYsWKT093Xvx9MwAMInC6dL3PnJfJi92b5u8+OK2wunxbR8ASwo7YJk/f76SkpICXjZt2uTd//HHH9eWLVu0Zs0ade7cWffdd588o1CnT5/WjBkzdM0112j9+vX661//qmHDhulb3/qWTp8+7ff5S0tLVV9f770cPHiwnYcOICpSs9yFFXNGeytCe4st5oz2zrKjdhGAcISdw1JXV6e6urqA++Tn56tr19bj0P/617+Um5urdevWqbi42DsUdOjQIXXq5I6dmpqa1Lt3b5WVlWnq1KlB20MOC2BiNVull8e5e1YiUR0aaKdaZ6PKK6tUUpRHnpRJRD2HxeFwyOFwtKtxntjIk4Ny6tQpderUSUlJSd59PLfPnz/frucAYCIBii0CseQpVDixoC8Bi0VFLYdlw4YN+u///m9t3bpVX3zxhdauXat77rlHAwcOVHFxsSRp4sSJOn78uH74wx/q73//u3bt2qXp06frkksu0fjx46PVNACxQrFFxBKFCm0tagFLt27dtGLFCk2YMEFXXHGFZsyYoeHDh+ujjz5SSop7zHrIkCFauXKltm/fruLiYl133XWqqanR6tWrlZ2dHa2mAQDsiEKFthbTOizRQA4L7IjxdqAdWuRMvVCxRy+9v7fN3R+acLkemTg4du2Dj3C/v1lLKIpYjRbtxcKAQIgaDrsDlZqt7kKFkvu6Zqum5Z/Q6pmX650HrtWzd46QJD1wwyBJ0ovfGa2Sorz4tBntErPCcbbWcNhdLKtwus9YPUleCKiN/zcAwuhlDLNQ4cA+PSVJgzJ78rlsMQQskeAZN73iFr54ELoW/29qnY3eHpXm4+0elK1HIgn5B1/hdPc5JF1cCuL6x6W/PCfd+Yp02fWqdTZqX+1JSdI/L1xzblkPAUuE8aWD9iqvrGo13u5ZIFBivB02FIlextSs1vd1DL54nZql8ma5LEvW7pPEuWVFBCzt1XKBtwvXFVVV+r8NVao1eulL9ZbEiYFm2vh/I0nT8pt0y8zLAy4MCNhKJHsZGw5LdXvc//7ywjXnlq0QsLRXG+OmJZJKUqTaqx7WB1kzOTHgi4UBgTZ1qJex+bn18XPua84tWyFgaS9/46aTF3vXTslMzdJwZzdJnBhoJsj/G3KgYHvR6mXk3LI9Apb28jdu6lngzcNZL8BHKP9vxMKAsLFo9TJybtkeAUsUcWKgvTLTupLrBHuKc08I55Z1EbBEQhsLvHFiICAWBkQiikVPCOeWLVGaHwAQHy1K6SOxUJoftsZyB4CN0BOCMBCwwFJYYwewkdQsd4ItAQtCQMAC82k4LK1ddHHqIwAg4ZF0C/NhjR0AQAsELDA91tgBABCwwBxYYwcAEAABC8yBNXaAkNQ6G1VeWaWSojyGQpFQCFhgDqwDAoTEM1NuYkFfAhYkFAIWmAPrgAAAAiBggaWw3AESQsNh9zBp4XRmygEXELDAfKh+iUTXYmo/M+UAAhZbsU0ynqf6JQBJUklRniYW9JUkZsohYRGwWE2LruLmSMYDLCzA1P5MSZlpvnlezJRDoiFgsZoWXcUAbCLA1H5J7mFSeh6RwAhY4igSQzgk4wE2EeLUfmbKIVERsERbJIZwAnQVV1RW6cVKp75Ub+/uJOMBFhTq1H5myiFBEbBEWySGcAJ0FZdImjj2YdWOeZRkPACAbRGwxFi7hnCCdBVnpmYpM/Vi8h3JeIDFMbUfaIWAJRoiPYQTYlcxAJtgaj/QCgFLNMRpCIdkPACAXRGwREM0h3ACdBWTjAcAsCsClmiI5hAOXcVAK7ap8gygTZ3i3YBExhAOEBmeEgGehHYA9kPAEm0hDOHwixAIQcNhae2iiwntABIKQ0LRxhAOEBktahpR5RlILDHpYXG5XBo9erSSkpK0detWn79VVVVp8uTJ6tGjhxwOhx588EE1NTXFolkALKy8skq3LflEty35xFsaYO6KHd5t5ZVVcW4h7KzW2agXKvao1tkY76YkjJj0sDzxxBPKycnRtm3bfLafO3dOt956q/r06aNPPvlER48e1bRp02QYhpYsWRKLpgEwswA1jablN+mWmZfrbPe+VHlGzIW8tAoiJuoBy6pVq7RmzRotX75cq1at8vnbmjVrtHv3bh08eFA5OTmSpOeff17333+/fvrTnyotLS3azTMNZjkAfgSoaZQhKaPFCsZUeUZEBVgLDrEX1YDlyJEjmjVrlt58801179691d8//fRTDR8+3BusSNKkSZPkcrm0efNmjR8/vtV9XC6XXK6LMwGcTmd0Gh8NkVgIEUgkIa5gDEQFeVOmErWAxTAM3X///Zo9e7YKCwt14MCBVvscPnxYffv29dnWu3dvdenSRYcP+58JsGjRIi1YsCAaTY6+SCyECCSSUFcwpkQAYqC8skovvb/XZ1vQpVUQMWEHLPPnzw8aMGzcuFHr1q2T0+lUaWngGTJJSUmtthmG4Xe7JJWWlurRRx/13nY6ncrNzQ2h5eZDtA5EBlWeETFh5k09MH6Qlqzdpxe/M1pjB14ap0YnhrADljlz5mjq1KkB98nPz9fChQu1fv16paT4/uIpLCxUSUmJXn31VWVlZamystLn78ePH9eZM2da9bx4pKSktHpMU4v0QohAomIFY8RCmHlTAzN7SpIGZfbkB2aUhR2wOBwOORyOoPstXrxYCxcu9N6uqanRpEmTtGzZMhUVFUmSiouL9dOf/lSHDh1Sdna2JHcibkpKisaMGRNu08wpTgshArZDTSPEgr+8qeselz5+TrrzFemy61XrbNS+2pOSpH9+6b6mdzz6opbDkpeX53O7Z093FDpw4ED1799fknTTTTepoKBA9957r5577jkdO3ZMjz32mGbNmmWfGULRXAgRABBZ/vKm+lzo6XYMllKzVF6xx5vLsuSDfZLoHY+FuFa67dy5s95991394Ac/0DXXXKNu3brpnnvu0c9//vN4NiuyorkQIgAgOhoOS3V73P/2XFMDKK5iFrDk5+fLMIxW2/Py8vTOO+/EqhmmxSwHRBq1fYDWQj4vmg/n/+U59zU1gOKKtYRiKYSFEIFIobYP0FrI5wU1gEyHgCWWSBpEpFGJE4gOagCZDgELYGVU4gR8+Qnio3le0DseOwQsgI1QiRMJz09F8Q6fF9QAMgUCFsBqWMEYCEtJUZ4mFriLkbbrvGA43xQIWACrYQVjwFeAIF66UO+qn2/vCOeF9RCwAFbD7AXAV4AgXpJ7OIceEssjYAGshtkLgK8wgnjOC+siYAFsitkLSBhhVBTnvLCuTvFuAIAOYPYCgARBDwtgZcxeAHwRxNsWPSxIKLXORr1QsUe1zsZ4NwVANHiCeAIW2yFggf00HJbWLro4zbEZzzoinqqXAABrIGCB/XgqXfoJWAAA1kQOC2yP9XUAwPoIWGAPASpdVlRW6cVKp75Ub+/urK8DANZCwAJ7CFDpskTSxLEPq3bMo6yvA7RQ62xUeWWVSory6GmEqRGwwB6CVLrMTM1SZurFdUNYRwRw8ySiTyzoS8ACUyNggT2EUekSSDgNh929kIXTme4LyyJgQUJhHREkJM/MuStukVKzSESHJRGwwH4CVLpkHRFAKq+s0kvv7/XZRiI6zI6ABfZLuqNcPRBw5ty0/CbdMvNyne3el0R0WAYBS6IIMIZN0h1gQwFmzmVIyhg31yewJxEdZkfAkihajGEDsLkgM+f4HIDVELBYTKSGb0i6A2wuxJlzJKLDKghYzChSwzdUfwUQBIno8We7PMIoIWAxo0gN31D9FYAUcOYc4o88wtAQsFhAu4dvqP4KQGLmHGyBgMUsojF8Q/VXADCHFkP95BGGj4DFLMIcvnnghkFa8sE+vfid0Ro78NIOPTVJdwAQZS2G+ineFz4CFrPwN3wzcaF0dJ9UMEWZfYf5DN8M7NNTkjQos2doUTjVXwHANEqK8jSxoK8kkUcYIgIWs/A3fJPaV6r4sU8X4r7ak5Kkf164DrkLkTFsIGTM2kBEBBjqz5SUmeb7uU8eYWAELBbSvAtxydp9kuhCBKKBWRuIiABD/ZLcvd78kAwZAYvZNByWTh2Vrrq/VWTO+h9AhASodQRETIjVhskjDA0Bi9mw/gcQfX5qHTFrAxEXarVh8ghDQsBiNqz/AcQFszYAc4tJwOJyuVRUVKRt27Zpy5YtGj16tCRp27ZtevbZZ/XJJ5+orq5O+fn5mj17th566KFYNMucWP8DiI4ACZCSdO+w3ppYcK0kZm0gCqg23GExCVieeOIJ5eTkaNu2bT7bN2/erD59+uj1119Xbm6u1q1bp+9973vq3Lmz5syZE4umWRZdiECYgiRAOsbNlaNFAiRDroiYdszUZLaar6gHLKtWrdKaNWu0fPlyrVq1yudvM2bM8Ln9ta99TZ9++qlWrFhBwCIRkQORxHArLIbZar6iGrAcOXJEs2bN0ptvvqnu3buHdJ/6+nplZGS0+XeXyyWXy+W97XQ6O9xO06J2ChA5YSxVwZArYD5RC1gMw9D999+v2bNnq7CwUAcOHAh6n08//VS///3v9e6777a5z6JFi7RgwYIIthQAfDHkiphhjaGQhR2wzJ8/P2jAsHHjRq1bt05Op1OlpaH1EOzatUu33367nn76aU2cOLHN/UpLS/Xoo496bzudTuXm5obWeACQGG6FebDGUMiSDMMwwrlDXV2d6urqAu6Tn5+vqVOnauXKlUpKSvJuP3funDp37qySkhK9+uqr3u27d+/W+PHj9R//8R/66U9/GtYBOJ1Opaenq76+XmlpaWHdFwCAuKrZKr08TvreR1LO6FY9LP5mq9mlhyXc7++we1gcDoccDkfQ/RYvXqyFCxd6b9fU1GjSpElatmyZioqKvNt37dqlG264QdOmTQs7WAEAwHJYY6hdopbDkpeX53O7Z0/36sIDBw5U//79JbmDlfHjx+umm27So48+qsOH3W9g586d1adPn2g1DQCAiAprCjJrDLVLXCvd/uEPf9CXX36p8vJylZeXe7cPGDAgpCRdANFHLQgguLCmILPGULt0itUT5efnyzAMb5VbyZ3AaxhGqwvBCmAeng9iz7g6kLAaDktrF10czmmv1Cz3dPqc0ReDFM8U+5zRFwOWC7PV+KHgxlpCAFi9GAhFixk9TEGOLQIWAHwQA+0QkSnITLEPGQELgFaoBQFcEGBGz7T8Jt0y83Kd7d63/QtmUtE8ZAQsQKKK9gcxYAcBZvRkSMpoMaOHKcjRQ8ACJCo+iIHgWDTTNAhYgETFBzEQXIiLZjIFOfoIWIBExQcxEDEsmBl9BCwAAuKDGLiAGT1xRcACgA9iIBTM6IkrAhYAfBADML2YleYH7KLW2agXKvao1tkY76YAQMIgYAFaCrJeCGvrAEDsEbAALXnK1Hd0gTMAQMSQwwKEgLV1ACC+CFgAKWCZekl6c8spPfPxcZ+7sLYO0LZaZ6PKK6tUUpRHMB9jdn3tCVgAKWCZekkqufoxjX3AfZu1dYDgPLleEwv62upL0wrs+toTsABS0DL1PVKzNDzVdx0d1tZBwms47A72C6dTwyeWEvR1J2ABpJDL1ANoxpOgfsUtUmoWuV6x0uJ1lxIjz46ABQgTa+sA/pVXVuml9/f6bCPXKzYS4bUnYEkQdk3CioogZepZWwcJLUCC+rT8Jt0y83Kd7d6XXK9ICzIx4N5hvTWx4FpJ9s2zI2CxiyBjmtFKwrJlIESZeqBtARLUMyRljJvrc/6Q6xUhQSYGOMbNlaPF55bdXnsCFrvwM6YZ0cduIxiyazY6gDYESVBPpCTQmOJ1J2Cxs4glYUUzGAJgLSEmqJPrFWFhTAyw62tPwGJlcSp2lgjZ6AA6hlyv+LHra0/AYmXtKHYmSS9+Z7QGZfYMHH0HCIYqKqv0YqVTX6q3d3e7ZaMDCEGQBHVESYK+7kmGYRjxbkRHOJ1Opaenq76+XmlpafFuTmy1DCpWPihd97j08XPSna9Il13v/Q+9s7pety35RJL0zgPXBk/EWruodTDUTO1VD6t2zKNtZqPTwwIACCTc7296WKzM35hmnws9G47BPoWc9tWe9O4S0vBNkASvzNQsZTar/Gq3bHQAgLkQsNhBw2Gpbo/7357rjg7fUPkVAGAiBCx20DyX5S/Pua8v5LKUSJo4NvDwTUfYNRsdAGAuBCx2EO3hmwAJXnbNRgciyZYFFoEYI2Cxg2gP31D5FegQCiwCHdcp3g1A7DB8A0RRw2H37DrPzD0AEUUPi90wfAPER4uK0BRYBCKLgMVuGL4BTKG8skovvb/XZxsFFmE2VsqvImABgPYKUBF6Wn6Tbpl5uc527xuVGXpAJFgpv4qABQDaK8DyGBmSMsbN9enxpMAi0H4xCVhcLpeKioq0bds2bdmyRaNHj261z9GjRzVq1ChVV1fr+PHj6tWrVyyaBgDtF6SkQKKt9QITajjsDqwLp3v/P1o1vyomAcsTTzyhnJwcbdu2rc19Zs6cqZEjR6q6ujoWTQKAjguxpAAz9BA3LZLBJevmV0U9YFm1apXWrFmj5cuXa9WqVX73+dWvfqUTJ07o6aefbnMfALAqZujBTEqK8jSxoK8kWSq/KqoBy5EjRzRr1iy9+eab6t69u999du/erZ/85CeqrKzU/v37gz6my+WSy+Xy3nY6nRFrLwC0W4CSAkBMBUgGly5UP+/n+//UCvlVUSscZxiG7r//fs2ePVuFhYV+93G5XLr77rv13HPPKS8vL6THXbRokdLT072X3NzcSDYbANrHU1KAgAVRUOts1AsVe1TrbAy+86ZfSy+Pc18uJIFr5YMXt236dXQbGyVhByzz589XUlJSwMumTZu0ZMkSOZ1OlZa2XROktLRUQ4cO1Xe/+92Qn7+0tFT19fXey8GDB8M9BAAALMUz/diTLBtQ4XTpex+5L5MXu7dNXnxxW+F0765Wyq9KMgzDCOcOdXV1qqurC7hPfn6+pk6dqpUrVyopKcm7/dy5c+rcubNKSkr06quvavTo0dqxY4d3H8MwdP78eXXu3Fk/+tGPtGDBgqDtcTqdSk9PV319vdLS0sI5FAAAzMPPjB6PndX1um3JJ3rngWvDG7qp2eruVfneR5FbXy5Cwv3+DjuHxeFwyOFwBN1v8eLFWrhwofd2TU2NJk2apGXLlqmoqEiStHz5cp0+fdq7z8aNGzVjxgx9/PHHGjhwYLhNA2ByVqqqCcQcyzsEFLWk25Y5KT179pQkDRw4UP379/f+uzlPz83QoUOpwwLYkJWqagLxFpHpxzZKBqfSLYDICtCtDaCFaC/vYKP15WIWsOTn5ytYusw3v/nNoPsAMDm6tYHQsbxDyOhhARBVVq2qCcQEyzuEjIAFQMexajHQPhZY3mF3Tb0WrNyteZMLVJATv94dAhYAHUe3NhBV8VzeYc+Rk6r8/Jj2HDlJwALA4ujWBjrORjN6ooGABUDHWaBbGzC9eM3oObRdWj1XuvlZKXukJPcw0J4jJyVJf9nzpc+1JA3u2zPmvS0ELABihlWLARP68h/SF391X18IWBas3K3Kz4/57LZiS7VWbKmWJBVdlqFl3y+OaTMJWABEFt3agOXNm1zg08OyYku17ryyn64f3EeSu4cl1ghYAESWjQpVAbZ1aLu7R0WS9r3vey2poM8QFVw50nt7xZZqXT+4j+64sl8sW+mDgAV+seZLdPH6Aoi0sD5XVs91DwM1t32p+yJJA66Rpv8pOg1tp07xbgDiqOGwtHbRxfoZzYS1lDn84/UFEENhfa7c/Kx05yvuy8ip7m0jp17cdvPFMgWD+/ZU0WUZcRkGao6AJZF5Sqj7+UJFBPD6AlFR62zUCxV7VOtsjHdTYivAj6CwZY+URn7bfRk0wb1t0ISL27IvDgcV5KRr2feL41qDRWJICM2w5kt08foCkZGwq363WKdLSqzPFQKWRBOghHpFZZVerHTqS/X27s6aL2Hi9QUQQxFZq6vPEHfOSp8h0WhixBCwJJoAJdRLJE0c+7BqxzzKmi/txesLREbDYff5VDg9sVf9DvAjSJLuHdZbEwuulaT2f65kjzRdgq0/BCyJJkgJ9czULGWmXhynZM2XMPH6ApHRYvgjYVf9DvAjSJIc4+bK0aKMgF0/VwhYEk2IJdTRTry+QFSUFOVpYkFfSR3oSbAi1unyImCBX6z5El28voAfAYY/MiVlpvn+IDB7T0JE6i2F8SPI7p8rBCyJLEAJddZ8iQBeXyA8QYY/NG6upaoox3o2k90/VwhYEplJSqjbtuqrSV5fwDJCHP6we09CmxJ8nS4CFkRfi2z/lhK2pgIAXyEOf5imJ8HPZ1tUZzMl+I8gAhZEn59iRwBgeX4+2xJ2NlMMELAgZJEcuknYmgoAQmPR4Y+Enc0UAwQs8BVg+CasoZsgxY7e3HJKz3x83Ocu/AoB4GXW4Y8gn22ZqVnK7Of72Wn22UxWQcACX5EavgmS7V9y9WMa+4D7Nr9CAFiGzWYyWQkBCwJq99BNkGz/HqlZGp7q+4uDXyEATC+MQm4JO5spSghYEJ0F+6j4CiBOoloqIZxCbmaZzWQTBCyI+4J9/AoB2se2NYw6iFIJ9kTAgugv2Bck259fIUD78MUcZxadyWRVBCyI/vCNWbP9AbMLUnQxobV4beJSKoHPtpgiYEHIGLoBYszPrD1qGF3Q4rWhYJv9EbDAFwv2AaZm9y/m9ublULDN/ghY4IsuTiC+ghQmu3dYb00suFaSPb+YA+blBHhtMiVlpvkOb1MqwV4IWADATIIUJnOMmytHix8Vlvtibm9uDkXbEhoBCwCYSRiFySyrRf5JyHk5Ib425NvZEwELAJhJOIXJbPLFHHJeToivDfl29kTAAgAWZakv5gD5J9Pym3TLzMt1tntfW+blIDI6xeJJXC6XRo8eraSkJG3durXV33/zm99o5MiR6tq1q7KysjRnzpxYNAsAzM1Ohck2/Vp6eZz74sk7Wfmg9PI4ZZRP1JB/LffJxfH8e3i/dP+zhez02iAkMelheeKJJ5STk6Nt27a1+tsvfvELPf/883ruuedUVFSkxsZG7d+/PxbNAgBzs9OsvUjn5tjptUFIoh6wrFq1SmvWrNHy5cu1atUqn78dP35cP/7xj7Vy5UpNmDDBu33YsGHRbhYAIJZCzT+xSV4OIi+qQ0JHjhzRrFmz9Nvf/lbdu3dv9feKigqdP39e1dXVGjp0qPr3769vf/vbOnjwYDSbBQAwKU9eTkJU60VYohawGIah+++/X7Nnz1ZhYaHfffbv36/z58/rmWee0Ysvvqg33nhDx44d08SJE9XU1OT3Pi6XS06n0+cCIHHVOhv1QsUe1Tob490UhIr8E7RD2AHL/PnzlZSUFPCyadMmLVmyRE6nU6WlbY8xnj9/XmfOnNHixYs1adIkXX311frd736nvXv3au3atX7vs2jRIqWnp3svubm54R4CABvxVEb11PHARaYN5jz5JwQsCEPYAcucOXP097//PeBl+PDh+uCDD7R+/XqlpKTokksu0aBBgyRJhYWFmjZtmiQpOztbklRQUOB9/D59+sjhcKiqqsrv85eWlqq+vt57YfgIsLmGw9LaRRenxCJkBHOwk7CTbh0OhxwOR9D9Fi9erIULF3pv19TUaNKkSVq2bJmKiookSddcc40k6bPPPlP//v0lSceOHVNdXZ0GDBjg93FTUlKUkkIyFpAwWLG4bRdK3NddcY9+u8sV9oKBgJVEbZZQXl6ez+2ePXtKkgYOHOgNTgYPHqzbb79dDz30kF5++WWlpaWptLRUQ4YM0fjx46PVNERRe1daBcJh9xWLQ3YhmDuRcZ1eer/eu1oxwRzsKO6Vbl977TU98sgjuvXWW9WpUyeNGzdOq1evVnJycrybBn+CLFoWcKVVIFQJvmJxK2EsFkgwB7uKWcCSn58vwzBabU9LS1NZWZnKyspi1RR0hJ/ueSDiEmHF4nA0P+8u3D72VZNOV/1N/SQd27dRw5KSVb27s4ozc3XZd0Yro0eyak402j+YQ8KIew8LrI98AkRcIqxY3F4XgrmMZpu+sWO+3k2R9FfpxbN36sWzd+mhCZd7h4hsHcwhYRCwILgg3fNvbjmlZz4+7nMXuqDRIQm4YnErbZ13ud+Q7nxFx5WqU19+oX4fP6kNI+ZrwaZkPXjDIN2c/zXd2L2vMlNTmB0EWyFgQXBBuudLrn5MYx9w306IfAKYiqVWLA5HkPOu97i56j30FuljKWPQ17VrY736FRRrSIueFFsGc0hIBCwILkj3fI/ULA1P9f2QpAsaEZOoVVFDGRYLUpvGtsEcEhIBC4ILo3seiLhEXZU31PNu3Fz16pOrhyZk0pMCWyNgQUTZNp/AxKh9k8AuBHMOSY/kxLsxQHRFdbVm2FCQ7nlWWo2CIKXpKb+eABJ1WAxohoAF4WHRstjz1OBgLZ2IMe2igG3hvAMIWAArqnU2amd1vfciyee2Zb6Io6ytwIReKcB6yGEBzIjaNx1zoZT9sf7/zlIRgE0QsABmRO2b0LS1xs6FYbRL/u067yYqMgPWRsACmBG1b0LjZ22rWmejnF+e1CBJ/6w9KckdmGw7eEK/23jQ5+70SgHWQcACmBG1b8J3YRitorJK2zf9RT9Llj748D0NS8rXb//4uWqNXpJ66+5v5GpU/16J2ysFWBQBC2BxCVf7pq38nk2/lv72G5VIKkl2b/5Z8iveu9Ve9bBqxzzqs8ZOQvZKARZFwAJbsHXxtBBr3ySMIPk9uup+qd9V0soHVX3dz/S9987qpamjNehrg5R5YRiN2UGA9RCwwBraSq68wDNN1ZazQRK1NH1bwlhj57RjuHYZ9Wp0jJCa5fwkXK8UYAMELLAGP8mVSFCh5PdcCFgyunfxG5gkXK8UYAMELIipSA7dME01diw35HZhGC0jK0+PXE6AC9gBAQsiK5JDNxRPix2rDrm1ld/DMBpgOwQsiKxIDt1QPC12rDrkRmACJAwCFkRdu4duKJ7WYR0ZymHIDYCZELCg46I1dEPxtOA6MpTDkBsACyFgQceZYOgmYaepdmQoxwTvGwCEioAFHReLoRuKp4Us5KEchtwAWAgBCzouFkM3JFdeFKmhHIbcAFgIAQtiKlGGbqJatyQOQzmJ8r4BMC8CFkQWQzeSoly3JBpDObxvAEyOgAWRlShDN0Fm50RVNIZyEuV9A2BZBCxAe/iZnWPGuiUM5QCwCwIW2F6s1sEpr6zSS+/v9dkW9bolDOUASBAELLC9iOWTBJmdc++w3ppYcK2kGNYtYSgHQIIgYIH1xSqfJMjsHMe4uXK0CB6oWwIAkUHAAlNYua1aT63YoWfuHKHJo/qFd+dY5ZMEmZ1jqUUDAcBiCFgQG9vfkN59RLr1BWnkXa3+XLn/mBpc51S5/1j4AYsfUcknCWN2DsmuABBZBCyIjap1ksvpvvYTsITNjPkkzZDsCgCRRcCCuFm5rVqV+49Jkj7a86X3+sd/dPeEFH0to+3elnjnkwSZnQMAiKyYBCwul0tFRUXatm2btmzZotGjR3v/tnHjRs2dO1ebN29WUlKSvv71r+u//uu/fPaBRW1/w92jIkn73r94/c6jkqS1G3tohetqn7scPH5ar1dWSZLe2lrddsAS73wSZucAQEzFJGB54oknlJOTo23btvlsb2ho0KRJk3T77bfrl7/8pc6ePat58+Zp0qRJ+te//qXk5ORYNA/R8u4j7mGg5k4ckDaVSZJ+ltxT3Ud/W5K7Z+Xg8dPK7d1N4wb3keTuYWkT+SQAkFCiHrCsWrVKa9as0fLly7Vq1Sqfv3322Wc6fvy4fvKTnyg3N1eSNG/ePI0cOVJVVVUaOHBgtJuHaLr1Bd8elhMHpF750qAJkqTkvLFaOHKEJOnHf9yh1yurNG5wHy38txERbQb5JABgfVENWI4cOaJZs2bpzTffVPfu3Vv9/YorrpDD4VBZWZmeeuopnTt3TmVlZRo2bJgGDBgQzaYhFkbedTHB9p1H3T0rgyZIt/0iss9DPgkA2F6naD2wYRi6//77NXv2bBUWFvrdJzU1VR9++KFef/11devWTT179tSf//xn/elPf9Ill/iPpVwul5xOp88F1lf0tQylpnQOPAzUFk8+CQELANhW2AHL/PnzlZSUFPCyadMmLVmyRE6nU6WlbScmnj59WjNmzNA111yj9evX669//auGDRumb33rWzp9+rTf+yxatEjp6enei2coCSaXN1ZKSXNf+zF5VD/tWHBzRGqwAADsJ8kwDCOcO9TV1amuri7gPvn5+Zo6dapWrlyppKQk7/Zz586pc+fOKikp0auvvuodCjp06JA6dXLHTk1NTerdu7fKyso0derUVo/tcrnkcrm8t51Op3Jzc1VfX6+0tLRwDgUAAMSJ0+lUenp6yN/fYeewOBwOORyOoPstXrxYCxcu9N6uqanRpEmTtGzZMhUVFUmSTp06pU6dOvkENZ7b58+f9/u4KSkpSklhtgcAAIkkakm3eXl5Prd79uwpSRo4cKD69+8vSZo4caIef/xx/fCHP9QDDzyg8+fP69lnn9Ull1yi8ePHR6tpAADAYqKWdBuKIUOGaOXKldq+fbuKi4t13XXXqaamRqtXr1Z2dnY8mwYAAEwk7BwWswl3DAwAAMRfuN/fce1hAQAACAUBCwAAMD0CFgAAYHoELAAAwPQIWAAAgOkRsAAAANOL6mrNseCZlc0iiAAAWIfnezvU6iqWD1gaGhokiUUQAQCwoIaGBqWnpwfdz/KF486fP6+amhqlpqb6rEnUHp6FFA8ePGjrInSJcJwco30kwnFyjPaRCMcZqWM0DEMNDQ3KycnxLoAciOV7WDp16uRdmyhS0tLSbPsfrblEOE6O0T4S4Tg5RvtIhOOMxDGG0rPiQdItAAAwPQIWAABgegQszaSkpGjevHlKSUmJd1OiKhGOk2O0j0Q4To7RPhLhOON1jJZPugUAAPZHDwsAADA9AhYAAGB6BCwAAMD0CFgAAIDp2SZg+dWvfqWRI0d6C9kUFxdr1apV3r+vWLFCkyZNksPhUFJSkrZu3drqMVwulx544AE5HA716NFDU6ZM0b/+9a+gz/3LX/5Sl112mbp27aoxY8bo448/juSheXX0GI8dO6YHHnhAV1xxhbp37668vDw9+OCDqq+vD/i88+fPV1JSks8lKysrGocYkffxm9/8Zqv2Tp06Nehzx+p9lDp+nAcOHGh1jJ7LH/7whzaf1yzv5ZkzZ/Tkk09qxIgR6tGjh3JycnTfffeppqbG5zGsfE6GcoxWPydDfR+tfk6GcpxWPyc9bRkyZIh69Oih3r1768Ybb1RlZaXPY8T1nDRs4u233zbeffdd47PPPjM+++wz46mnnjKSk5ONnTt3GoZhGK+99pqxYMEC45VXXjEkGVu2bGn1GLNnzzb69etnVFRUGH/729+M8ePHG6NGjTLOnj3b5vMuXbrUSE5ONl555RVj9+7dxkMPPWT06NHD+OKLL0x3jDt27DDuvPNO4+233zb27dtnvP/++8bll19u/Pu//3vA5503b54xbNgw49ChQ95LbW1txI8vEsdoGIYxbtw4Y9asWT7tPXHiRMDnjeX7aBgdP86zZ8/6HN+hQ4eMBQsWGD169DAaGhrafF6zvJcnTpwwbrzxRmPZsmXGP/7xD+PTTz81ioqKjDFjxvg8hpXPyVCO0ernZKjvo9XPyVCO0+rnpGEYRnl5uVFRUWH885//NHbu3GnMnDnTSEtL82lPPM9J2wQs/vTu3dv43//9X59tn3/+ud8vgBMnThjJycnG0qVLvduqq6uNTp06GatXr27zOb7xjW8Ys2fP9tk2ZMgQY+7cuR0/gBCEc4z+/P73vze6dOlinDlzps195s2bZ4waNaqDLW2/cI9x3LhxxkMPPRTWc8T7fTSMjr+Xo0ePNmbMmBFwHzO+lx4bNmwwJHk/xOx0Tnq0PEZ/rHpOevg7Rjudkx6hvJdWPyfr6+sNScZ7771nGEb8z0nbDAk1d+7cOS1dulRfffWViouLQ7rP5s2bdebMGd10003ebTk5ORo+fLjWrVvn9z5NTU3avHmzz30k6aabbmrzPpHSnmP0p76+XmlpabrkksDLSu3du1c5OTm67LLLNHXqVO3fv7/dzxmqjhxjeXm5HA6Hhg0bpscee8y7qrc/8Xwfpci8l5s3b9bWrVs1c+bMoPua9b2sr69XUlKSevXqJcme52TLY2xrHyufk20do93OyWDvpdXPyaamJr388stKT0/XqFGjJMX/nLT84ofN7dixQ8XFxWpsbFTPnj31xz/+UQUFBSHd9/Dhw+rSpYt69+7ts71v3746fPiw3/vU1dXp3Llz6tu3b8j36aiOHGNLR48e1X/+53/q+9//fsD9ioqK9Nprr2nw4ME6cuSIFi5cqLFjx2rXrl269NJL2/XcgXT0GEtKSnTZZZcpKytLO3fuVGlpqbZt26aKigq/+8fjfZQi+16WlZVp6NChGjt2bMD9zPpeNjY2au7cubrnnnu8i6nZ7Zz0d4wtWf2cbOsY7XZOhvJeWvWcfOeddzR16lSdOnVK2dnZqqiokMPhkGSCczKs/hiTc7lcxt69e42NGzcac+fONRwOh7Fr1y6ffdrqYi8vLze6dOnS6jFvvPFG4/vf/77f56uurjYkGevWrfPZvnDhQuOKK67o2MG0oSPH2Fx9fb1RVFRk3HzzzUZTU1NYbTh58qTRt29f4/nnn2/PIQQVqWP02LRpkyHJ2Lx5s9+/x+N9NIzIHeepU6eM9PR04+c//3nYbTDDe9nU1GTcfvvtxpVXXmnU19d7t9vpnGzrGJuz+jkZyjF6WPmcDOU4rXxOnjx50ti7d6/x6aefGjNmzDDy8/ONI0eOGIYR/3PSVkNCXbp00aBBg1RYWKhFixZp1KhReumll0K6b1ZWlpqamnT8+HGf7bW1ta0iQw+Hw6HOnTu3ihID3aejOnKMHg0NDbr55pu90XVycnJY9+/Ro4dGjBihvXv3hnW/UEXiGJu76qqrlJyc3GZ74/E+SpE7zjfeeEOnTp3SfffdF/Z94/1enjlzRt/+9rf1+eefq6KiwufXql3OyUDH6GH1czKUY2zOqudkqMdp5XOyR48eGjRokK6++mqVlZXpkksuUVlZmaT4n5O2ClhaMgxDLpcrpH3HjBmj5ORkny7KQ4cOaefOnW126XXp0kVjxoxp1a1ZUVERtBswUsI5RklyOp266aab1KVLF7399tvq2rVr2M/pcrn097//XdnZ2WHftz3CPcaWdu3apTNnzrTZXjO8j1L7j7OsrExTpkxRnz59wr5vPN9Lz4f/3r179d5777Xq/rbDORnsGCXrn5OhHGNLVjwnwzlOq56Twf4e93MyrP4YEystLTX+8pe/GJ9//rmxfft246mnnjI6depkrFmzxjAMwzh69KixZcsW49133zUkGUuXLjW2bNliHDp0yPsYs2fPNvr372+89957xt/+9jfjhhtuaDVd64YbbjCWLFnive2ZrlVWVmbs3r3bePjhh40ePXoYBw4cMN0xOp1Oo6ioyBgxYoSxb98+n2l0gY7x//2//2d8+OGHxv79+43169cbt912m5GammrKY9y3b5+xYMECY+PGjcbnn39uvPvuu8aQIUOMK6+80jTvYySO02Pv3r1GUlKSsWrVKr/PY9b38syZM8aUKVOM/v37G1u3bvX5v+hyubyPYeVzMpRjtPo5Gcox2uGcDPX/q2FY95w8efKkUVpaanz66afGgQMHjM2bNxszZ840UlJSvNOeDSO+56RtApYZM2YYAwYMMLp06WL06dPHmDBhgvfD3zAM49e//rUhqdVl3rx53n1Onz5tzJkzx8jIyDC6detm3HbbbUZVVZXP8wwYMMDnPoZhGP/zP//jfe6rrrrK+Oijj0x5jGvXrvX7d0nG559/3uYxfuc73zGys7ON5ORkIycnx7jzzjtbjeua5RirqqqM66+/3sjIyDC6dOliDBw40HjwwQeNo0eP+jxPPN/HSBynR2lpqdG/f3/j3Llzfp/HrO+lJzfH32Xt2rXex7DyORnKMVr9nAzlGO1wTob6/9UwrHtOnj592vi3f/s3Iycnx+jSpYuRnZ1tTJkyxdiwYYPPY8TznEwyDMMIr08GAAAgtmydwwIAAOyBgAUAAJgeAQsAADA9AhYAAGB6BCwAAMD0CFgAAIDpEbAAAADTI2ABAACmR8ACAABMj4AFAACYHgELAAAwPQIWAABgev8/ngY1cUtr0V4AAAAASUVORK5CYII=\n", + "text/plain": [ + "
" + ] + }, + "metadata": {}, + "output_type": "display_data" + } + ], + "source": [ + "plt.plot(test_df.ra,test_df.dec,linestyle='None',marker='+')\n", + "plt.plot(benchmark_df.ra,benchmark_df.dec,linestyle='None',marker='+')" + ] + }, + { + "cell_type": "code", + "execution_count": 376, + "id": "aec51b6b", + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "[]" + ] + }, + "execution_count": 376, + "metadata": {}, + "output_type": "execute_result" + }, + { + "data": { + "image/png": "iVBORw0KGgoAAAANSUhEUgAAAjEAAAGdCAYAAADjWSL8AAAAOXRFWHRTb2Z0d2FyZQBNYXRwbG90bGliIHZlcnNpb24zLjYuMCwgaHR0cHM6Ly9tYXRwbG90bGliLm9yZy89olMNAAAACXBIWXMAAA9hAAAPYQGoP6dpAAA3eElEQVR4nO3de3BT953//5fDRU6ppISCLNs4lG9icqkdpwtZLtuGEAcadgybpbtJm9STZrKkt3BNJl8znU7JfHdjmpnikLJpu51Mkja05PfbgWzTZmhdAiSUS4BiYkIJ7reEqxWlxEgiwSbA+f4hOFg2MufIun3k52NGc2TpY53PeX+O9Hn56MgqsizLEgAAgGGuyHUHAAAAUkGIAQAARiLEAAAAIxFiAACAkQgxAADASIQYAABgJEIMAAAwEiEGAAAYaXCuO5Ap586d07Fjx+T1elVUVJTr7gAAAAcsy1IsFlNZWZmuuKLvYy0FG2KOHTumioqKXHcDAACk4PDhwxo1alSfbQo2xHi9XknxIvh8vhz3BgAAOBGNRlVRUWHP430p2BBz4S0kn89HiAEAwDBOTgXhxF4AAGAkQgwAADASIQYAABiJEAMAAIxEiAEAAEYixAAAACMRYgAAgJEIMQAAwEiEGAAAYCRCDAAAcGXvsYju/ekW7T0WyWk/CDGpaH9bev4f48sk0jbAsZC0vjG+7EM42qmm5v0KRzv7t7409CdrfUkmUzUzYdv7o6/tO3/f344dTLp9Rm97XwZyXTKxz+fba1oy+fR8z3bN3v5vqbEivkzi9X1hbTvwoV7fF+7fuvqJEJOKD/ZJB/8YXyax//2T2nbgQ+1//2T/1hULSRuXXn7njXVp+bo2hWNd/VtfGvqTtb4kk6mambDt/dHX9p2/78QHh5Nun9Hb3peBXJdM7PP59pqWTD4937Nds0Obpa5ofJlEKNKZsMyVgv0CSAAAkD57j0XsP8z3haL28pVdRyVJY0s+rZvK/FntEyHGqfa3Lx55+cu6xKUkjbxBe63R9gC/sf+DhKXkYoBjoYuJu3134lKSvEHJG1Q42mkn7j1HIwlLSQp4PQr4ip1uYb/6E7auyk5f+tHHlGpmwrb3R1/b9/FxSdKHllenDv1J5ZI+/Mt2fa5oiI7uHaTBH/8vha2rJBVp+LCh5m17X/pdl6slWRo+zGNeXTKxz+fba1oy+fR8z3bN3v7vi0deus9xv1kUv37NZD2+oUR7jkUTfm3HwRPacbBFklRV5tNv5n3R+TamQZFlWVZW15gl0WhUfr9fkUhEPp+v/w/4/D/G30JKZvQ/6N7T39O2Ax8mbTJhzHC9/I1Jl1/X+sb4ocNkpjRIUxerqXm/lq9rS9psfm2lFk4be/n1paE/TWe+nJ2+JJOpmpmw7f1xue3rw9NnZuvpM//SZ5u83va+DOS6ZGKfz7fXtGTy6fme7Zo1VsTfQkrG41PdsF/2CjHdpSvEuJm/CTFO9TwS8/Yq6eavSNfVxm+7xJGY1buOavbny3Xb2JGS+nEk5tV50sxnpNKa+G1JEnjD6lYtnV2tqvL4OjL2F8El+tPzr5OM9aUffUypZiZse3/0tX09jzi8+b/1VvUSPbFjiObdcZ1Gf7b3kRijtr0v/a5L4pEYo+qSiX0+317TsrntGexLWmvW80jMifekqz57cY67ZrL2jphmz3EvbT2oHQc7NH701fraxNGS0vd2kpv5m7eTnCq9OX654O1V8cG9+R77ppukhAFcveuobhs7Und/vtzdus7vnInrr5HKbkm4KeAr7rVzVpX77Z03bRz0J3C+PxnvSzKZqpkJ294fDrZvuCQNGyq9KQ2/7la9sz2i8psm6YZyv264xEMas+19Gch1ycQ+n2+vacnk0/M92zW7+V/iFyn+FtKO5+JzXN0yu0n3OW7Hex9qx8EO3RD0up/j0sjVp5MaGxt16623yuv1KhAI6O6779a7776b0MayLC1ZskRlZWW68sordfvtt+udd95JaNPV1aW5c+dqxIgRGjZsmGbNmqUjR44ktOno6FB9fb38fr/8fr/q6+t14sSJ1LYSAACkTam/OGGZK65CzMaNG/Wd73xHW7duVXNzs86cOaPp06fro48+sts89dRTWrZsmVasWKHt27crGAxq2rRpisVidpsFCxZozZo1WrVqlTZt2qSTJ0+qrq5OZ8+etdvcd999amlp0dq1a7V27Vq1tLSovr4+DZucBiNvkEb/Q3yZxNiST2vCmOEaW/Lp/q3LG4y/99kzkfcQ8Ho0v7ZSAa+nf+tLQ3+y1pdkMlUzE7a9P/ravvP3XTWyIun2Gb3tfRnIdcnEPp9vr2nJ5NPzPds1u2ay5PHFl0lMvSGgCWOGa+oNgf6tq7+sfgiHw5Yka+PGjZZlWda5c+esYDBoLV261G7T2dlp+f1+6yc/+YllWZZ14sQJa8iQIdaqVavsNkePHrWuuOIKa+3atZZlWdbevXstSdbWrVvtNlu2bLEkWfv27XPUt0gkYkmyIpFIfzYRAABkkZv5u1//7C4SiX+Ma/jw4ZKkAwcOKBQKafr06XYbj8ejKVOmaPPm+AlDO3fu1CeffJLQpqysTFVVVXabLVu2yO/3a8KECXabiRMnyu/3220AAMDAlvKJvZZladGiRfrCF76gqqoqSVIoFD+TuqSkJKFtSUmJDh48aLcZOnSorr766l5tLvx+KBRSIND7EFUgELDb9NTV1aWurov/pTAa7eOjYgAAwHgpH4l55JFH9Pbbb+tXv/pVr/uKiooSfrYsq9dtPfVsc6n2fT1OY2OjfRKw3+9XRUWFk80AAACGSinEzJ07V7/+9a+1fv16jRo1yr49GIyfdNTzaEk4HLaPzgSDQZ0+fVodHR19tnn//fd7rfeDDz7odZTngsWLFysSidiXw4cPp7JpAADAEK5CjGVZeuSRR7R69Wq9/vrrGjNmTML9Y8aMUTAYVHNzs33b6dOntXHjRk2eHD/Ledy4cRoyZEhCm/b2du3Zs8duM2nSJEUiEb311lt2m23btikSidhtevJ4PPL5fAkXAABQuFydE/Od73xHv/zlL/U///M/8nq99hEXv9+vK6+8UkVFRVqwYIGefPJJVVZWqrKyUk8++aQ+9alP6b777rPbPvTQQ3r00Uf1mc98RsOHD9djjz2m6upq3XnnnZKkG2+8UXfddZfmzJmjn/70p5Kkhx9+WHV1dbr++uvTuf0AAMBQrkLMj3/8Y0nS7bffnnD7888/r69//euSpMcff1ynTp3St7/9bXV0dGjChAn6/e9/L6/Xa7dvamrS4MGDdc899+jUqVOqra3VCy+8oEGDBtltVq5cqXnz5tmfYpo1a5ZWrFiRyjYCAIACxHcnAQCAvOFm/u7X/4kBAADIFUIMAAAwEiEGADIoHO1UU/N+haOdue6KUaibe9msWb6MDyEmFbGQtL4xvkwibQPsYF1pXV8hoGapyeZ+XSic1CzWpeXr2hSOdSVtM6A4fX5St4uyXTOD9mtCTCpiIWnj0uwMsIN1pXV9hYCapSab+3WhcLivoRtq5l62a2bQGKX83UkAgEsLRzvtoLfnaCRhKUkBr0cBX3FO+pbPqJt72axZPo4PIcapWOhiKm3fnbiUJG9QYeuq9Aywg3XJG8zLHSpnqFlqsrlfFwoHNVu5Larl69oSfq1hdat9fX5tpRZOG5vpnuYPh8/PldsOUbcLsl0zQ/dr/k+MU+sb44fXkpnSoKYzX+41wN05HmAH69LUxWpq3p+e9RUCapaabO7XhcJBzcLjFiYEv4bVrVo6u1pV5X5JAzD4OXx+9vwjY0DXLds1y6P92s38zZEYp8Y/KF0/I369fbf06jxp5jNSaU38Nm9Q91tXadpN8S+oTDbA6VqXJN0/4Zr0rK8QULPUZHO/LhQOahbwFvd6Ma8q99s1G3AcPj8DPupmy3bNDN2vCTFOnT90l6C0Riq7xf4xIKVngB2sS+IJn4CapSab+3WhcLivoRtq5l62a2boGPHpJADIoIDXo/m1lQPviFU/UTf3slmzfBkfjsSkwhuMvx/ZM7V2k7YBdrCutK6vEFCz1GRzvy4UTmrmKx5Y5wxdjtPnJ3W7KNs1M2i/5sReAACQN/gCSAAAUPAIMQAAwEiEGAAAYCRCDAAAMBIhBgAAGIkQAwAAjESIAQAARiLEAAAAIxFiAACAkQgxAADASIQYAABgJEIMAAAwEiEGAAAYiRADAACMRIgBAABGIsQAAAAjEWIAAIAr4Winmpr3KxztzGk/CDGpiIWk9Y3xZRL5MsAAALjiZI6LdWn5ujaFY11Z7FhvhJhUxELSxqVGDDAAAK44mOPyxeBcdwAAAOS/cLTT/sN8z9FIwlKSAl6PAr7irPaJEONULHQxlbbvTlxKkjeosHVV3g0wAACX5WCOW7ktquXr2hJ+rWF1q319fm2lFk4bm+meJiiyLMvK6hqzJBqNyu/3KxKJyOfz9f8B1zfGD68lM6VBTWe+3GuAu8vFAAMAcFkO5rjwuIUJf6g3rG7V0tnVqir3S0rfH+pu5m+OxDg1/kHp+hnx6+27pVfnSTOfkUpr4rd5g7rfukrTbiqRlHyAAQDIOw7muIC3uFdIqSr323NcLhBinPIG45fuSmukslvsHwNS3g0wAACX5WCOy0d8OgkAALgS8Ho0v7Yy5+8wcCQmFd6gNKWhd2rtJl8GGAAAV5zMcb7ivDjHkxN7AQBA3nAzf/N2EgAAMBIhBgAAGIkQAwAAjESIAQAARiLEAAAAIxFiAACAkQgxAADASIQYAABgJEIMAAAwEiEGAAAYiRADAACMRIgBAABGIsQAAAAjEWIAAICRCDEAAMBIhBgAAGAkQgwAADASIQYAABiJEAMAAIxEiAEAAEYixAAAACMRYjIkHO1UU/N+haOdBbm+QkDN3KNm7lGz1FA397JZs3wZH0JMKmIhaX1jfJlEONal5evaFI51ZXxdaV1fIaBmqcnmfl0oqJl7PD/dy3bNDNqvCTGpiIWkjUsvu0MZt65CQc1SQ93co2buUTP3sl0zg8ZocK47UEjC0U47le45GklYSlLA61HAV2zs+goBNXOPmrlHzVJD3dzLZs3ycXwIMU7FQhdTafvuxKUkeYNauS2q5evaEn6tYXWrfX1+baUWThublnXF13coPesrBNQsNdncrwsFNXOP56d72a6Zoft1kWVZVlbXmCXRaFR+v1+RSEQ+n6//D7i+MX54LZkpDQqPW5iQUhtWt2rp7GpVlfsluUipDtalqYt7peKU11cIqFlqsrlfFwpq5h7PT/eyXbM82q/dzN8ciXFq/IPS9TPi19t3S6/Ok2Y+I5XWxG/zBhXwFvcawKpyvz3A6VyXJAV8aVpfIaBmqcnmfl0oqJl7PD/dy3bNDN2vCTFOnT90l6C0Riq7xex1FQpqlhrq5h41c4+auZftmhk6Rnw6KUMCXo/m11Yq4PUU5PoKATVzj5q5R81SQ93cy2bN8mV8OCcmFbGQtOP5+OG3nsk13bK5rkJBzVJD3dyjZu5RM/eyXbMcj5Gb+dv1kZg33nhDM2fOVFlZmYqKivTKK68k3P/1r39dRUVFCZeJEycmtOnq6tLcuXM1YsQIDRs2TLNmzdKRI0cS2nR0dKi+vl5+v19+v1/19fU6ceKE2+5mhjcoTV2cncHN5roKBTVLDXVzj5q5R83cy3bNDBoj1yHmo48+Uk1NjVasWJG0zV133aX29nb78tprryXcv2DBAq1Zs0arVq3Spk2bdPLkSdXV1ens2bN2m/vuu08tLS1au3at1q5dq5aWFtXX17vtLgAAKFCuT+ydMWOGZsyY0Wcbj8ejYPDSCS4Siei5557TL37xC915552SpJdeekkVFRX6wx/+oC996Uv685//rLVr12rr1q2aMGGCJOlnP/uZJk2apHfffVfXX3+9224DAIACk5ETezds2KBAIKCxY8dqzpw5CofD9n07d+7UJ598ounTp9u3lZWVqaqqSps3b5YkbdmyRX6/3w4wkjRx4kT5/X67DQAAGNjS/hHrGTNm6F//9V81evRoHThwQN/73vd0xx13aOfOnfJ4PAqFQho6dKiuvvrqhN8rKSlRKBT/b4GhUEiBQKDXYwcCAbtNT11dXerquvhFVNFoNI1bBQAA8k3aQ8y9995rX6+qqtL48eM1evRo/fa3v9Xs2bOT/p5lWSoqKrJ/7n49WZvuGhsb9cQTT/Sj5wAAwCQZ/z8xpaWlGj16tNra4t+3EAwGdfr0aXV0dCS0C4fDKikpsdu8//77vR7rgw8+sNv0tHjxYkUiEfty+PDhNG8JAACQ4l8G2dS8X+FoZ077kfEQc/z4cR0+fFilpaWSpHHjxmnIkCFqbm6227S3t2vPnj2aPHmyJGnSpEmKRCJ666237Dbbtm1TJBKx2/Tk8Xjk8/kSLhkTC8W/Z6KPrynPlwEGAMAVJ3NcrEvL17XZ36WUK65DzMmTJ9XS0qKWlhZJ0oEDB9TS0qJDhw7p5MmTeuyxx7Rlyxa999572rBhg2bOnKkRI0bon//5nyVJfr9fDz30kB599FGtW7dOu3bt0te+9jVVV1fbn1a68cYbddddd2nOnDnaunWrtm7dqjlz5qiuri4/PpkUC8W/KMuAAQYAwBUHc1y+cH1OzI4dOzR16lT750WLFkmSHnjgAf34xz9Wa2urfv7zn+vEiRMqLS3V1KlT9fLLL8vr9dq/09TUpMGDB+uee+7RqVOnVFtbqxdeeEGDBg2y26xcuVLz5s2zP8U0a9asPv83DQAAyJye35jdfSnl5lvG+doBp2Khi6k0yTd8hq2r+Bp5AIB5HMxxTVujWr6uLelDzK+t1MJpY/vdFTfzNyHGqfWN8cNryUxpUNOZL2dlgAEASCsHc1x43MKs/KHuZv5O+0esC9b4B6Xrz/+n4iQp9X7rKk27Kf7pqWQDDABA3nEwxwW8xb1CSlW5357jcoEQ45Q32PvLsEprpLJb7B8DUt4NMAAAl+VgjstHGf+INQAAKCwBr0fzaytz/g4DR2JS4Q1KUxr6/JryfBlgAABccTLH+Yrz4hxPTuwFAAB5w838zdtJAADASIQYAABgJEIMAAAwEiEGAAAYiRADAACMRIgBAABGIsQAAAAjEWIAAICRCDEAAMBIhBgAAGAkQgwAADASIQYAABiJEAMAAIxEiAEAAEYixAAAACMRYgAAgJEIMQAAwEiEGAAAYCRCDAAAMBIhBgAAGIkQAwAAjESIAQAARiLEAAAAIxFiAACAkQgxAADASIQYAABgJEIMAAAwEiEGAAAYiRADAACMRIgBAABGIsQAAAAjEWIAAICRCDGpiIWk9Y3xZR/C0U41Ne9XONppxroKBTVLjYO6UbMe2Nfco2buZbtmBr0WEGJSEQtJG5defoeKdWn5ujaFY11mrKtQULPUOKgbNeuBfc09auZetmtm0GsBIQYAABhpcK47YIxY6GIqbd+duJQkb1DyBhWOdtrJdM/RSMJSkgJejwK+4vxZV6GgZqlxULewdRU16459zT1q5l62a2boa0GRZVlWVteYJdFoVH6/X5FIRD6fr/8PuL4xfngtmSkN0tTFamrer+Xr2pI2m19bqYXTxubPugoFNUuNg7o1nfkyNeuOfc09auZetmuWR68FbuZvQoxTPVPqq/Okmc9IpTXx25Kk4obVrVo6u1pV5X5JKR6JyeS6CgU1S42DuvX864uasa+5Rs3cy3bNUnwtqL0hoAcmj9bwYZ60jY+b+Zu3k5w6v8NIkj4+Hl/6R0lltyQ0C/iKFfAVKxzt1O7DJyRJVeV+e4dyva4LSmuSrqs71+sqFNQsNQ7qFpCoWXfsa+5RM/eyXTMHc9ylXgvW7Qtr4bSxORsjTuxNxYUBvrC8hHCsS7/afjhLHQIAIE0czHH5giMxqfjUZxKXffjq31co4PWkvi5vMP7eZ89E3kPA69H82sr+ratQULPUOKgbNeuBfc09auZetmvWxxx34e2rDz86rdobAlq3L5zTk3s5J8Ypzh0AABQqh+fgZOPka07sVW4+ncSnOAAARnL4aahsnHzNib2ZMP5B6foZ8etJUur91lWadlOJpOSDCwBA3nEwx0n5d/I1IcYpPsUBAChUDj8NlW/4dBIAAHAtH06+5khMKvgUBwCgUDn9NJSvOOfneXJiLwAAyBtu5m/eTgIAAEYixAAAACMRYgAAgJEIMQAAwEiEGAAAYCRCDAAAMBIhBgAAGIkQAwAAjESIAQAARiLEAAAAIxFiAACAkQgxAADASIQYAABgJEIMAAAwEiEGAAAYiRADAACMRIgBAABGch1i3njjDc2cOVNlZWUqKirSK6+8knC/ZVlasmSJysrKdOWVV+r222/XO++8k9Cmq6tLc+fO1YgRIzRs2DDNmjVLR44cSWjT0dGh+vp6+f1++f1+1dfX68SJE643EAAAFCbXIeajjz5STU2NVqxYccn7n3rqKS1btkwrVqzQ9u3bFQwGNW3aNMViMbvNggULtGbNGq1atUqbNm3SyZMnVVdXp7Nnz9pt7rvvPrW0tGjt2rVau3atWlpaVF9fn8ImAgCAgmT1gyRrzZo19s/nzp2zgsGgtXTpUvu2zs5Oy+/3Wz/5yU8sy7KsEydOWEOGDLFWrVpltzl69Kh1xRVXWGvXrrUsy7L27t1rSbK2bt1qt9myZYslydq3b5+jvkUiEUuSFYlE+rOJAAAgi9zM32k9J+bAgQMKhUKaPn26fZvH49GUKVO0efNmSdLOnTv1ySefJLQpKytTVVWV3WbLli3y+/2aMGGC3WbixIny+/12GwAAMLANTueDhUIhSVJJSUnC7SUlJTp48KDdZujQobr66qt7tbnw+6FQSIFAoNfjBwIBu01PXV1d6urqsn+ORqOpbwgAAMh7Gfl0UlFRUcLPlmX1uq2nnm0u1b6vx2lsbLRPAvb7/aqoqEih5wAAwBRpDTHBYFCSeh0tCYfD9tGZYDCo06dPq6Ojo88277//fq/H/+CDD3od5blg8eLFikQi9uXw4cP93h4AAJC/0hpixowZo2AwqObmZvu206dPa+PGjZo8ebIkady4cRoyZEhCm/b2du3Zs8duM2nSJEUiEb311lt2m23btikSidhtevJ4PPL5fAkXAABQuFyfE3Py5En95S9/sX8+cOCAWlpaNHz4cF1zzTVasGCBnnzySVVWVqqyslJPPvmkPvWpT+m+++6TJPn9fj300EN69NFH9ZnPfEbDhw/XY489purqat15552SpBtvvFF33XWX5syZo5/+9KeSpIcfflh1dXW6/vrr07HdAADAcK5DzI4dOzR16lT750WLFkmSHnjgAb3wwgt6/PHHderUKX37299WR0eHJkyYoN///vfyer327zQ1NWnw4MG65557dOrUKdXW1uqFF17QoEGD7DYrV67UvHnz7E8xzZo1K+n/pgEAAANPkWVZVq47kQnRaFR+v1+RSIS3lgAAMISb+ZvvTgIAAEYixAAAACMRYgAAgJEIMQAAwEiEGAAAYCRCDAAAMBIhBgAAGIkQAwAAjESIAQAARiLEZEg42qmm5v0KRztz3RUAANIuH+Y5QkwqYiFpfWN8mUQ41qXl69oUjnVlsWMAAPSTgzlOyo95jhCTilhI2rj0sgMMAIBxDJrjXH+LNZILRzvtRLrnaCRhKUkBr0cBX3FO+gYAQH/l2zxHiHEqFrqYStt3Jy4lyRvUym1RLV/XlvBrDatb7evzayu1cNrYTPcUAAB3HMxx8XnuUF7Nc0WWZVlZW1sWufkqb0fWN8YPryUzpUHhcQsTEmrD6lYtnV2tqnK/JI7EAADylIM5TlMX9zoSk4l5zs38zTkxTo1/UHp4Y/wy7f/Eb5v2fy7eNv5BBXzFqir32xdJ2n3khAJej6rK/akNrNMTrPLgLPG8Qc1S4+SEdWqWiH3NPWrmXjZq5mCOk2TPcwGvR7uPnJCkhHkv23+oE2Kc8galslviF28w+W09/Oqtw/07c9vhCVb5cJZ43qBmqXFQN2rWA/uae9TMvWzUzOUcF4516VdvHXa/njQjxGRIwOvRV2+tyHU3AADImK/eWqGA15Oz9XNir1PdT3qKvX9xeawlfv38SU/d3y+sqbhKv9p+2P2Z2w5PsMq3s8RzipqlxkHdwtZV1Kw79jX3qJl72a6ZgznuUq8FNRXx28KxrpyMDyf2OuXwpKem5v29ztzuztGZ29lcV6GgZqlxULemM1+mZt2xr7lHzdzLds3y6LXAzfxNiHGqZyp+dZ408xmptCZ+W5JUnNKZ29lcV6GgZqlxULeef31RM/Y116iZe9muWR69FriZv3k7yanzO0yC0pr4CU/dBHzFvQax+6eV8m5dhYKapcZB3QISNeuOfc09auZetmtm6GsBJ/YCAAAjEWJS4Q3G349M8rHqCwJej+bXVvbvzO1srqtQULPUOKgbNeuBfc09auZetmtm0GsB58QAAIC8wX/sBQAABY8QAwAAjESIAQAARiLEAAAAIxFiAACAkQgxAADASIQYAABgJEIMAAAwEiEGAAAYiRADAACMRIgBAABGIsQAAAAjEWIAAICRCDEAAMBIhBgAAGAkQgwAADASIQYAABiJEAMAAIxEiAEAAEYixAAAACMRYgAAgJEIMQAAwEiEGAAAYCRCDAAAMBIhBgAAGIkQAwAAjESIAQAARiLEAAAAIxFiAACAkQgxAADASIQYAABgJEIMAAAwEiEmQ8LRTjU171c42pnrrgAAkHb5MM8RYlIRC0nrG+PLJMKxLi1f16ZwrCuLHQMAoJ8czHFSfsxzhJhUxELSxqWXHWAAAIxj0Bw3ONcdKCThaKedSPccjSQsJSng9SjgK85J3wAA6K98m+cIMU7FQhdTafvuxKUkeYNauS2q5evaEn6tYXWrfX1+baUWThub6Z4CAOCOgzkuPs8dyqt5rsiyLCtra8uiaDQqv9+vSCQin8/X/wdc3xg/vJbMlAaFxy1MSKgNq1u1dHa1qsr9kjgSAwDIUw7mOE1d3OtITCbmOTfzN0dinBr/oHT9jPj19t3Sq/Okmc9IpTXx27xBBbzFvQavqtxvDy4AAHnJwRwnSQFffs1zhBinzh9KS1BaI5XdkpPuAACQNobOcXw6KUMCXo/m11Yq4PXkuisAAKRdPsxzHIlJhTcYf3+wZ2rtJuAr5iReAIB5HMxxUn7Mc5zYCwAA8oab+Zu3kwAAgJEIMQAAwEiEGAAAYKS0h5glS5aoqKgo4RIMXjw5yLIsLVmyRGVlZbryyit1++2365133kl4jK6uLs2dO1cjRozQsGHDNGvWLB05ciTdXQUAAAbLyJGYz33uc2pvb7cvra0X/yXxU089pWXLlmnFihXavn27gsGgpk2bplgsZrdZsGCB1qxZo1WrVmnTpk06efKk6urqdPbs2Ux0FwAAGCgjIWbw4MEKBoP2ZeTIkZLiR2Gefvppffe739Xs2bNVVVWlF198UR9//LF++ctfSpIikYiee+45/fCHP9Sdd96pz3/+83rppZfU2tqqP/zhD5noLgAgz4SjnWpq3q9wtDPXXTFGNmuWL+OTkRDT1tamsrIyjRkzRl/5ylf017/+VZJ04MABhUIhTZ8+3W7r8Xg0ZcoUbd68WZK0c+dOffLJJwltysrKVFVVZbfJuVgo/j0Tl/ma8rQMcjbXVSioWWoc1I2a9cC+5p7TmsW6tHxdm/09PQNatmvm5LUgT8Yn7SFmwoQJ+vnPf67f/e53+tnPfqZQKKTJkyfr+PHjCoXiBSkpKUn4nZKSEvu+UCikoUOH6uqrr07a5lK6uroUjUYTLhkTC8W/KCsbO1Q211UoqFlqHNSNmvXAvuaew5qhm2zXzKAxSvt/7J0xY4Z9vbq6WpMmTdK1116rF198URMnTpQkFRUVJfyOZVm9buvpcm0aGxv1xBNP9KPnAIBc6vkNyd2XUnq+IbnQZLNm+Tg+Gf/agWHDhqm6ulptbW26++67JcWPtpSWltptwuGwfXQmGAzq9OnT6ujoSDgaEw6HNXny5KTrWbx4sRYtWmT/HI1GVVFRkb4NiYUuptL23YlLyf7yrLQMcjbXVSioWWoc1C1sXUXNumNfc89hzVZuO6Tl69oSfrVh9cUPhsyvrcz5v7nPmmzXzMH6Vm6L5t34ZPxrB7q6unTttdfq4Ycf1ve+9z2VlZVp4cKFevzxxyVJp0+fViAQ0A9+8AN94xvfUCQS0ciRI/XSSy/pnnvukSS1t7dr1KhReu211/SlL33J0XrT/rUD6xvjh9eSmdIgTV2spub9vQa5O0eDnM11FQpqlhoHdWs682Vq1h37mnsOa9Yz+DWsbtXS2dWqKvdLGmDBL9s1c7C+8LiFWRkfN/N32kPMY489ppkzZ+qaa65ROBzWv//7v2vjxo1qbW3V6NGj9YMf/ECNjY16/vnnVVlZqSeffFIbNmzQu+++K6/XK0n61re+pd/85jd64YUXNHz4cD322GM6fvy4du7cqUGDBjnqR9pDTM+U+uo8aeYz8a8ql5L+9ZXSIGdzXYWCmqXGQd16HomhZuxrrjmsWXd7jkZU96NN+s3cL9g1G1CyXTOX68vk+LiZv9P+dtKRI0f01a9+VX/72980cuRITZw4UVu3btXo0aMlSY8//rhOnTqlb3/72+ro6NCECRP0+9//3g4wktTU1KTBgwfrnnvu0alTp1RbW6sXXnjBcYDJiEvsMCqtkcpuSbgp4Cvu9cJUVe53N8jZXFehoGapcVC3gETNumNfc89hzdBNtmtm6BilPcSsWrWqz/uLioq0ZMkSLVmyJGmb4uJi/ehHP9KPfvSjNPcOAGCCgNej+bWVCng9ue6KMbJZs3wZn4yf2FuQvMH4+5E9U2sPaRnkbK6rUFCz1DioGzXrgX3NPac18xUPnHOGLifbNXPyWpAn45PxE3tzJe3nxAAAgIxzM3/zLdYAAMBIhBgAAGAkQgwAADASIQYAABiJEAMAAIxEiAEAAEYixAAAACMRYgAAgJEIMQAAwEiEGAAAYCRCDAAAMBIhBgAAGIkQAwAAjESIAQAARiLEAAAAIxFiAACAkQgxAADASIQYAABgJEIMAAAwEiEGAAAYiRADAACMRIjJkHC0U03N+xWOdua6KwAApF0+zHOEmFTEQtL6xvgyiXCsS8vXtSkc68pixwAA6CcHc5yUH/McISYVsZC0cellBxgAAOMYNMcNznUHCkk42mkn0j1HIwlLSQp4PQr4inPSNwAA+ivf5jlCjFOx0MVU2r47cSlJ3qBWbotq+bq2hF9rWN1qX59fW6mF08ZmuqcAALjjYI6Lz3OH8mqeK7Isy8ra2rIoGo3K7/crEonI5/P1/wHXN8YPryUzpUHhcQsTEmrD6lYtnV2tqnK/JI7EAADylIM5TlMX9zoSk4l5zs38zZEYp8Y/KF0/I369fbf06jxp5jNSaU38Nm9QAW9xr8GrKvfbgwsAQF5yMMdJUsCXX/McIcap84fSEpTWSGW35KQ7AACkjaFzHJ9OypCA16P5tZUKeD257goAAGmXD/McR2JS4Q3G3x/smVq7CfiKOYkXAGAeB3OclB/zHCf2AgCAvOFm/ubtJAAAYCRCDAAAMBIhBgAAGIkQAwAAjESIAQAARiLEAAAAIxFiAACAkQgxAADASIQYAABgJEIMAAAwEiEGAAAYiRADAACMRIgBAABGIsQAAAAjEWIAAICRCDEAAMBIhJgMCkc71dS8X+FoZ0Gtq1BQM/eoWWqom3vUzL2BOOcQYlIRC0nrG+PLPoRjXVq+rk3hWJcZ6yoU1Cw1DupGzXpgX3OPmrmX7ZoZ9FpAiElFLCRtXHrZHcq4dRUKapYa6uYeNXOPmrmX7ZoZNEaDc92BQhOOdtrJdM/RSMJSkgJejwK+YuPWVSiomXvULDXUzT1q5t5An3MIMU7FQhdTafvuxKUkeYOSN6iV2w5p+bq2hF9tWN1qX59fW6mF08bmz7oKBTVLjYO6rdwWpWbdsa+5R83cy3bNDH0tKLIsy8rqGrMkGo3K7/crEonI5/P1/wHXN8YPryUzpUGaurhXUm1Y3aqls6tVVe6X5DCpZnNdhYKapcZB3cLjFlKz7tjX3KNm7mW7Znn0WuBm/uZIjFPjH5SunxG/3r5benWeNPMZqbQmfps3KEkK+Ip7DWJVud8e5LxbV6GgZqlxULeAl5olYF9zj5q5l+2aGfpaQIhx6vyhuwSlNVLZLWavq1BQs9RQN/eomXvUzL1s18zQMeLTSRkU8Ho0v7ZSAa+noNZVKKiZe9QsNdTNPWrm3kCcczgnJhWxkLTj+fjht57JNd2yua5CQc1SQ93co2buUTP3sl2zHI+Rm/mbEAMAAPKGm/mbt5MAAICRCDEAAMBIhBgAAGAkQgwAADASIQYAABiJEAMAAIxEiAEAAEYixAAAACMRYgAAgJEIMQAAwEh5H2KeffZZjRkzRsXFxRo3bpzefPPNXHdJevu/pcaK+DKJvcciqnvmTdU986b2Houkvq5YSFrfGF/2IRztVFPzfoWjnamvK039yVpfkslUzfJtLNKtr+07f9/fjh3sc9uM3fa+OKiLYqE+t93YumRinzfleZRP/cx2X9rflp7/x/iyD3uPRXTvT7f0b47rp7wOMS+//LIWLFig7373u9q1a5e++MUvasaMGTp06FBuO3Zos9QVjS+T2P/+Se05FtWeY1Htf/9k6uuKhaSNSy+/88a6tHxdm8KxrtTXlab+ZK0vyWSqZvk2FunW1/adv+/EB4f73DZjt70vDuqiWKjPbTe2LpnY5015HuVTP7Pdlw/2SQf/GF/2Yf/7J7XtwIf9m+P6Ka9DzLJly/TQQw/p3/7t33TjjTfq6aefVkVFhX784x/numsAACDHBue6A8mcPn1aO3fuVENDQ8Lt06dP1+bNyY+AZMzb/33xyMtf1l1c/mZR/Po1k7V3xDS9vi+sUKRT+0JR+1df2npQO977UKX+Yk29IaCbyvx9rysWupi423cnLqX4V6N7gwpHO+3EvedoJGEpSQGvRwFfcWrb67I/Yeuq7PSlH31MqWb5Nhbp1tf2fXxckvSh5dWpQ39SuaQP/7JdnysaoqN7B2nwx/9LZz5VoiuKpHNW/FeM2va+OKiLPvUZRQ/skE/S0T9v1dFzIX2u6ID+8n+Dkq7Thx+dlmRp+DCPWXXJxD5vyvMon/qZ7b60v33xyEv3Oe6CkTdIpTdr77GIfeTljf0fJCwlaWzJpy8/x6VRkWVZVtbW5sKxY8dUXl6uP/7xj5o8ebJ9+5NPPqkXX3xR7777bkL7rq4udXVdPIQWjUZVUVHh6Ku8HWmsiL+FlIzHp3uH/3/aduDDPh9mwpjhevkbk/pe1/rG+KHDZKY0SFMXq6l5v5ava0vabH5tpRZOG9v3upxw0J+mM1/OTl+SyVTN8m0s0u1y29eHp8/M1tNn/kUTxgzvc7/P223vSxrqcjl5W5dM7POmPI/yqZ/Z7svz/xh/CymZ0f8gPfia7v3plj6f747muMuIRqPy+/2O5u+8DzGbN2/WpEkXC/If//Ef+sUvfqF9+xLfq1uyZImeeOKJXo+TthDT80jMifekqz4rXVcbv+0SR2J2HDwhSRo/+mrdEPSmfiTm1XnSzGek0pr4bUkSeMPqVi2dXa2q8vjjZ+xIzCX60/NITMb60o8+plSzfBuLdOtr+3oeiXnzf+ut6iV6YscQzbvjOo3+7KWPxBiz7X1xUBf7SEzzozr6xR9oz7nP6pnX/6I5Mybpumt7H4kxpi6Z2OdNeR7lUz+z3ZeeR2LeXiXd/JWLc1ySIzGrdx3V7M+X67axIyWl50iMmxCTt28njRgxQoMGDVIolHgiUzgcVklJSa/2ixcv1qJFi+yfLxyJSZub/yV+keJvIe14Lj64dcvsJjdJ9uC9suuodhxskSR9beJo3f35cufrOr9zJiitkcpuSbgp4CvutXNWlfvtnTdtHPQncL4/Ge9LMpmqWb6NRbo52L7hkjRsqPSmNPy6W/XO9ojKb5qkG/rYNiO2vS8Ox/3Cy2v5jRPVYY3RO+vO6rprr0u67UbUJRP7vCnPo3zqZ7b7Unpz/HLB26vic9zN9yQ0u6nMnxBSVu86qtvGjnQ3x6VR3p7YO3ToUI0bN07Nzc0Jtzc3Nye8vXSBx+ORz+dLuAAAgMKVt0diJGnRokWqr6/X+PHjNWnSJP3Xf/2XDh06pG9+85u57dg1k6XW/z++TGJsyadVVeazr6fMG4y/99kzkfcQ8Ho0v7ZSAa8n9XWlqT9Z60symapZvo1FuvW1fefvu2pkhebXBpJum7Hb3hcHdZE3qICVfNuNrUsm9nlTnkf51M9s92XkDfFzYEbe0GezsSWf1oQxw/s3x/VT3p4Tc8Gzzz6rp556Su3t7aqqqlJTU5Nuu+22y/6em/fUAABAfiiIE3v7ixADAIB53MzfeXtODAAAQF8IMQAAwEiEGAAAYCRCDAAAMBIhBgAAGIkQAwAAjESIAQAARiLEAAAAIxFiAACAkfL6u5P648I/Io5GoznuCQAAcOrCvO3kCwUKNsTEYjFJUkVFRY57AgAA3IrFYvL7/X22KdjvTjp37pyOHTsmr9eroqKitD52NBpVRUWFDh8+zPcy5TnGyiyMl1kYL7OYMl6WZSkWi6msrExXXNH3WS8FeyTmiiuu0KhRozK6Dp/Pl9c7Ai5irMzCeJmF8TKLCeN1uSMwF3BiLwAAMBIhBgAAGIkQkwKPx6Pvf//78ng8ue4KLoOxMgvjZRbGyyyFOF4Fe2IvAAAobByJAQAARiLEAAAAIxFiAACAkQgxAADASIQYl5599lmNGTNGxcXFGjdunN58881cd2nAWbJkiYqKihIuwWDQvt+yLC1ZskRlZWW68sordfvtt+udd95JeIyuri7NnTtXI0aM0LBhwzRr1iwdOXIk25tSkN544w3NnDlTZWVlKioq0iuvvJJwf7rGp6OjQ/X19fL7/fL7/aqvr9eJEycyvHWF53Lj9fWvf73X823ixIkJbRiv7GhsbNStt94qr9erQCCgu+++W++++25Cm4H2/CLEuPDyyy9rwYIF+u53v6tdu3bpi1/8ombMmKFDhw7lumsDzuc+9zm1t7fbl9bWVvu+p556SsuWLdOKFSu0fft2BYNBTZs2zf4+LUlasGCB1qxZo1WrVmnTpk06efKk6urqdPbs2VxsTkH56KOPVFNToxUrVlzy/nSNz3333aeWlhatXbtWa9euVUtLi+rr6zO+fYXmcuMlSXfddVfC8+21115LuJ/xyo6NGzfqO9/5jrZu3arm5madOXNG06dP10cffWS3GXDPLwuO/f3f/731zW9+M+G2G264wWpoaMhRjwam73//+1ZNTc0l7zt37pwVDAatpUuX2rd1dnZafr/f+slPfmJZlmWdOHHCGjJkiLVq1Sq7zdGjR60rrrjCWrt2bUb7PtBIstasWWP/nK7x2bt3ryXJ2rp1q91my5YtliRr3759Gd6qwtVzvCzLsh544AHrn/7pn5L+DuOVO+Fw2JJkbdy40bKsgfn84kiMQ6dPn9bOnTs1ffr0hNunT5+uzZs356hXA1dbW5vKyso0ZswYfeUrX9Ff//pXSdKBAwcUCoUSxsnj8WjKlCn2OO3cuVOffPJJQpuysjJVVVUxlhmWrvHZsmWL/H6/JkyYYLeZOHGi/H4/Y5gBGzZsUCAQ0NixYzVnzhyFw2H7PsYrdyKRiCRp+PDhkgbm84sQ49Df/vY3nT17ViUlJQm3l5SUKBQK5ahXA9OECRP085//XL/73e/0s5/9TKFQSJMnT9bx48ftsehrnEKhkIYOHaqrr746aRtkRrrGJxQKKRAI9Hr8QCDAGKbZjBkztHLlSr3++uv64Q9/qO3bt+uOO+5QV1eXJMYrVyzL0qJFi/SFL3xBVVVVkgbm86tgv8U6U4qKihJ+tiyr123IrBkzZtjXq6urNWnSJF177bV68cUX7RMOUxknxjJ70jE+l2rPGKbfvffea1+vqqrS+PHjNXr0aP32t7/V7Nmzk/4e45VZjzzyiN5++21t2rSp130D6fnFkRiHRowYoUGDBvVKoeFwuFfqRXYNGzZM1dXVamtrsz+l1Nc4BYNBnT59Wh0dHUnbIDPSNT7BYFDvv/9+r8f/4IMPGMMMKy0t1ejRo9XW1iaJ8cqFuXPn6te//rXWr1+vUaNG2bcPxOcXIcahoUOHaty4cWpubk64vbm5WZMnT85RryDFPy745z//WaWlpRozZoyCwWDCOJ0+fVobN260x2ncuHEaMmRIQpv29nbt2bOHscywdI3PpEmTFIlE9NZbb9lttm3bpkgkwhhm2PHjx3X48GGVlpZKYryyybIsPfLII1q9erVef/11jRkzJuH+Afn8ysnpxIZatWqVNWTIEOu5556z9u7day1YsMAaNmyY9d577+W6awPKo48+am3YsMH661//am3dutWqq6uzvF6vPQ5Lly61/H6/tXr1aqu1tdX66le/apWWllrRaNR+jG9+85vWqFGjrD/84Q/Wn/70J+uOO+6wampqrDNnzuRqswpGLBazdu3aZe3atcuSZC1btszatWuXdfDgQcuy0jc+d911l3XzzTdbW7ZssbZs2WJVV1dbdXV1Wd9e0/U1XrFYzHr00UetzZs3WwcOHLDWr19vTZo0ySovL2e8cuBb3/qW5ff7rQ0bNljt7e325eOPP7bbDLTnFyHGpf/8z/+0Ro8ebQ0dOtT6u7/7O/ujbciee++91yotLbWGDBlilZWVWbNnz7beeecd+/5z585Z3//+961gMGh5PB7rtttus1pbWxMe49SpU9YjjzxiDR8+3Lryyiuturo669ChQ9nelIK0fv16S1KvywMPPGBZVvrG5/jx49b9999veb1ey+v1Wvfff7/V0dGRpa0sHH2N18cff2xNnz7dGjlypDVkyBDrmmuusR544IFeY8F4ZcelxkmS9fzzz9ttBtrzq8iyLCvbR38AAAD6i3NiAACAkQgxAADASIQYAABgJEIMAAAwEiEGAAAYiRADAACMRIgBAABGIsQAAAAjEWIAAICRCDEAAMBIhBgAAGAkQgwAADDS/wMSwnZj/tIxIAAAAABJRU5ErkJggg==\n", + "text/plain": [ + "
" + ] + }, + "metadata": {}, + "output_type": "display_data" + } + ], + "source": [ + "plt.plot(test_pix.row,test_pix.col,linestyle='None',marker='+')\n", + "plt.plot(benchmarktest_pix.row,benchmarktest_pix.col,linestyle='None',marker='+')" + ] + }, + { + "cell_type": "code", + "execution_count": 345, + "id": "5755df40", + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "(57.16694165045941, 57.085838866345675, -59.566847136624794, -59.33581393345377)\n", + "(60.091026268975554, 59.98590087600901, -59.13960133638966, -58.91061401494288)\n", + "(63.001025937232846, 62.87349127569371, -58.645690024598764, -58.419760354364726)\n", + "(65.87640178492973, 65.7283792418075, -58.08523537722994, -57.863295891962835)\n", + "(68.69896859908084, 68.53259643435473, -57.45976177574163, -57.242649000055366)\n", + "(71.45316851583533, 71.27071416016086, -56.77206270044351, -56.56050693601179)\n", + "(74.12616910015116, 73.92994863893412, -56.02603863629509, -55.82065944575562)\n", + "(76.70782777122352, 76.5001353562505, -55.22652236099622, -55.02782913477009)\n", + "(57.16694165045941, 57.085838866345675, -59.566847136624794, -59.33581393345377)\n", + "(57.67622150032175, 57.57936193265955, -61.095330033455475, -60.85984816816524)\n", + "(58.26788194765377, 58.15321845305005, -62.65196326515176, -62.412985880673624)\n", + "(58.953929441089244, 58.81886072461781, -64.2306435019835, -63.98912318923886)\n", + "(59.750027119525754, 59.591235174696706, -65.8252732168544, -65.58217885634338)\n", + "(60.67659801541756, 60.48983681601039, -67.42964110827175, -67.18598053619388)\n", + "(61.76031272786728, 61.54012146713026, -69.03727948466826, -68.79412604188067)\n", + "(63.03617389768485, 62.77547641695368, -70.64130227191072, -70.39982618720677)\n", + "(76.70782777122352, 76.5001353562505, -55.22652236099622, -55.02782913477009)\n", + "(78.1484193412507, 77.91807016783946, -56.613038307560956, -56.413425505524295)\n", + "(79.73035214694684, 79.4750979482833, -58.00862116424884, -57.809343715899246)\n", + "(81.4689367357637, 81.18623798724579, -59.40521330030573, -59.20757074314733)\n", + "(83.38152370965983, 83.06856935706307, -60.79439369149635, -60.59976134537494)\n", + "(85.48737002228363, 85.14112166416913, -62.16718734585258, -61.97704135484859)\n", + "(87.80734539583202, 87.42461416957927, -63.51392935796812, -63.32986183992643)\n", + "(90.36341357651365, 89.9409825248493, -64.824198604714, -64.64792132292614)\n", + "(63.03617389768485, 62.77547641695368, -70.64130227191072, -70.39982618720677)\n", + "(67.58151912878579, 67.27368881225638, -70.13615044879366, -69.90162096405348)\n", + "(71.97000467967177, 71.62314303372419, -69.50865902799637, -69.28240264781896)\n", + "(76.15320096091344, 75.77594688392584, -68.76508348303864, -68.54808965289746)\n", + "(80.09775158788402, 79.69857444141006, -67.91406929156715, -67.70699030902776)\n", + "(83.78434769299749, 83.37102537967388, -66.96593414441386, -66.76911329723347)\n", + "(87.20559253128788, 86.78489755647642, -65.9320282657795, -65.74554510423098)\n", + "(90.36341357651365, 89.9409825248493, -64.824198604714, -64.64792132292614)\n", + "(58.444041407854016, 58.35223582362878, -59.3938832556457, -59.16359728287862)\n", + "(62.02170057750086, 61.90148601546363, -58.825466077940334, -58.59837870324265)\n", + "(65.55751686689926, 65.41163414560198, -58.15684610663924, -57.93440064864073)\n", + "(69.0170020332046, 68.8486292986422, -57.39025445441842, -57.173724026405914)\n", + "(72.37151811735153, 72.1840721223781, -56.530818507238436, -56.32128121427736)\n", + "(75.59856052219367, 75.3955176484078, -55.586118006621646, -55.384448039054455)\n", + "(57.38975536681423, 57.30191672771179, -60.22807050031764, -59.99498584207016)\n", + "(58.068774076464685, 57.9602979261061, -62.12108499301976, -61.88319189744494)\n", + "(58.88322817331064, 58.75050192001181, -64.05030094636453, -63.80902951138973)\n", + "(59.86041573392268, 59.69857576021959, -66.00449263540855, -65.76129563512377)\n", + "(61.038130890511574, 60.84059600286876, -67.97220589745874, -67.72860839658802)\n", + "(62.4688393951051, 62.22663222661032, -69.94136445891299, -69.69902499583992)\n", + "(77.31066178638257, 77.09338353399878, -55.832299445845415, -55.63302826037391)\n", + "(79.1691642098195, 78.922641073859, -57.53887294682932, -57.339313309948906)\n", + "(81.25497943701804, 80.97554238326167, -59.25109853141889, -59.053176278746854)\n", + "(83.59921557492464, 83.28268593980575, -60.95363512663546, -60.759402774189795)\n", + "(86.23730917986256, 85.87909261063105, -62.62994463562663, -62.441639227180545)\n", + "(89.2081962567893, 88.80346845904084, -64.2619199530655, -64.08199423848704)\n", + "(65.02828425021549, 64.7462688850426, -70.43093985523068, -70.1922993170998)\n", + "(70.49929892538856, 70.16486537349859, -69.72905644787657, -69.49985808617257)\n", + "(75.68523731292106, 75.3111595128392, -68.84937511835936, -68.6312785114906)\n", + "(80.5184250227169, 80.11745467353191, -67.80684098855869, -67.60088384536702)\n", + "(84.96304582375356, 84.54668894901616, -66.62036265817147, -66.4270160674167)\n", + "(89.00944051810605, 88.58729435041785, -65.3110516881404, -65.13032308296599)\n", + "(57.178554201898294, 57.09731600933264, -59.570670522550884, -59.33962567815182)\n", + "(57.178554201898294, 57.09731600933264, -59.570670522550884, -59.33962567815182)\n", + "(90.34388744379977, 89.92159520158003, -64.82369271856331, -64.64735127271956)\n", + "(90.34388744379977, 89.92159520158003, -64.82369271856331, -64.64735127271956)\n", + "(58.6864320303861, 58.58763088864666, -60.051331997461524, -59.8190887817552)\n", + "(59.460698736534724, 59.33999982617459, -61.94355031723313, -61.70675310093455)\n", + "(60.382199340358, 60.23574036009261, -63.870428716900975, -63.63054257002886)\n", + "(61.48074261645166, 61.30335548110003, -65.82047867698554, -65.57900371520495)\n", + "(62.79720359013531, 62.581949132702256, -67.78186602821336, -67.54039376178444)\n", + "(64.38773069843069, 64.12523201932656, -69.74196923604046, -69.50224983575771)\n", + "(62.349144299453485, 62.2209481570953, -59.48004562255251, -59.25125460011044)\n", + "(63.38202559782305, 63.228822481218046, -61.361147052674774, -61.12858009578114)\n", + "(64.59198583505992, 64.4093831989446, -63.271990712604165, -63.037218015988024)\n", + "(66.01435138093578, 65.79659307928361, -65.20025219611638, -64.9649166816328)\n", + "(67.69621305713476, 67.43576842126508, -67.13291019025033, -66.89879918523407)\n", + "(69.7002040460132, 69.38721666132491, -69.05569825473245, -68.82482227072146)\n", + "(65.96355698868298, 65.8089319291172, -58.804321219008195, -58.58044426232289)\n", + "(67.23340570091067, 67.05144407794923, -60.661938672181414, -60.4351166854911)\n", + "(68.70374741078645, 68.48981538552681, -62.54379539574757, -62.31570544245256)\n", + "(70.41275792783357, 70.16093705025222, -64.43667426888176, -64.20910060176266)\n", + "(72.4097721429603, 72.11256027609952, -66.32634502897791, -66.10125868717665)\n", + "(74.75804466603404, 74.40600013590849, -68.19697009049065, -67.97660867623419)\n", + "(69.49365680000524, 69.3160251653792, -58.02676655764098, -57.809082198697574)\n", + "(70.97402517548026, 70.76756539853238, -59.84978242578145, -59.62999604534185)\n", + "(72.67107826249759, 72.43119852292392, -61.691267394762065, -61.471154292696426)\n", + "(74.62318886220584, 74.34419707133847, -63.53716508059826, -63.31863150142854)\n", + "(76.87828140114613, 76.55322261011116, -65.37219015040475, -65.1573528046504)\n", + "(79.49532727445121, 79.11584072132928, -67.17925323335888, -66.97051003951545)\n", + "(72.90983907510208, 72.71286112904163, -57.152974109186076, -56.94255337368594)\n", + "(74.57142346316171, 74.34494691209827, -58.93177439002152, -58.720067466641346)\n", + "(76.45863299188123, 76.19834720274189, -60.7233305928545, -60.51219313784139)\n", + "(78.60779233620039, 78.30853047187378, -62.512896427094134, -62.30432376955355)\n", + "(81.06261328866925, 80.71831885900872, -64.28441691371575, -64.08061691880395)\n", + "(83.87450380220066, 83.47826723711945, -66.02002333821532, -65.82347148356084)\n", + "(76.18915758021012, 75.9765355507938, -56.19103432113962, -55.98873277237228)\n", + "(78.00160616354705, 77.75955790756248, -57.91763236953862, -57.7147975424116)\n", + "(80.0419666614034, 79.76663537164474, -59.6516343491044, -59.45017835239856)\n", + "(82.3428986749804, 82.02983002263348, -61.37781390365525, -61.179781450550735)\n", + "(84.94216181771408, 84.58637108764928, -63.07969626176335, -62.88732680569324)\n", + "(87.88202215960217, 87.47815187568895, -64.73915018539665, -64.55491514306087)\n" + ] + } + ], + "source": [ + "idx = test_df.index.intersection(benchmark_df.index)\n", + "for item in zip(test_df.loc[idx,'ra'], benchmark_df.loc[idx,'ra'], \n", + " test_df.loc[idx,'dec'], benchmark_df.loc[idx,'dec'] ):\n", + " print(item)" + ] + }, + { + "cell_type": "code", + "execution_count": 346, + "id": "9cbccd42", + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "(0, 45.4988900584395, 0.5000001491613091, 1.5011089291900654, 0.5000001450691951)\n", + "(1, 45.174459054005666, 0.500000021191866, 293.9295001284962, 292.92857144629414)\n", + "(2, 44.85002843171323, 0.49999997738109414, 586.357891681202, 585.3571428413043)\n", + "(3, 44.52559759205196, 0.5000002426251342, 878.78628308281, 877.7857144225818)\n", + "(4, 44.201167321957385, 0.4999998846254812, 1171.214674767416, 1170.2142856649102)\n", + "(5, 43.876736345893235, 0.4999999558728945, 1463.6430661181698, 1462.6428571299805)\n", + "(6, 43.55230549329981, 0.49999995498497896, 1756.0714575608408, 1755.0714285644221)\n", + "(7, 43.227874767885545, 0.5000000854568896, 2048.4998490440003, 2047.500000001669)\n", + "(8, 45.4988900584395, 0.5000001491613091, 1.5011089291900654, 0.5000001450691951)\n", + "(9, 337.9272815200203, 292.9285714240158, 1.8255396631963252, 0.49999999487206603)\n", + "(10, 630.3556730105419, 585.3571427812809, 2.1499704440242273, 0.49999989861343175)\n", + "(11, 922.7840642954172, 877.7857141576186, 2.474400905707159, 0.4999997894050756)\n", + "(12, 1215.2124557071145, 1170.2142858463083, 2.798831491839781, 0.5000002819364021)\n", + "(13, 1507.640847268932, 1462.642857107456, 3.1232624484922167, 0.49999989215414886)\n", + "(14, 1800.0692387080735, 1755.0714285760193, 3.4476930747374173, 0.5000000243894362)\n", + "(15, 2092.4976301817187, 2047.4999999892905, 3.7721240519727375, 0.49999977826669817)\n", + "(16, 43.227874767885545, 0.5000000854568896, 2048.4998490440003, 2047.500000001669)\n", + "(17, 335.65626634992856, 292.9285715686751, 2048.8242797619796, 2047.5000000031678)\n", + "(18, 628.0846581349084, 585.3571431028705, 2049.148710486135, 2047.500000006594)\n", + "(19, 920.5130492063415, 877.7857141442146, 2049.4731411908865, 2047.4999999953302)\n", + "(20, 1212.9414409677922, 1170.2142854733208, 2049.7975719182605, 2047.49999998967)\n", + "(21, 1505.369832472543, 1462.642856943518, 2050.1220026401847, 2047.4999999878103)\n", + "(22, 1797.7982238024942, 1755.0714282955041, 2050.4464333528595, 2047.4999999705815)\n", + "(23, 2090.2266152317643, 2047.5000001610063, 2050.7708641018403, 2047.5000000669154)\n", + "(24, 2092.4976301817187, 2047.4999999892905, 3.7721240519727375, 0.49999977826669817)\n", + "(25, 2092.173199455532, 2047.4999999973354, 296.2005151487714, 292.9285713811416)\n", + "(26, 2091.8487687601237, 2047.500000019992, 588.6289071742242, 585.3571431551719)\n", + "(27, 2091.5243380410666, 2047.4999999890974, 881.0572984813963, 877.7857141547793)\n", + "(28, 2091.1999072913222, 2047.4999999814802, 1173.4856893324004, 1170.2142855455586)\n", + "(29, 2090.875476578027, 2047.5000000009195, 1465.914080930862, 1462.6428571485749)\n", + "(30, 2090.551045864031, 2047.5000000542955, 1758.3424724987178, 1755.0714287513556)\n", + "(31, 2090.2266152317643, 2047.5000001610063, 2050.7708641018403, 2047.5000000669154)\n", + "(32, 46.357436141017665, 1.5000000485617164, 129.00213966609098, 128.00000004436976)\n", + "(33, 45.95981432456252, 1.4999999940366635, 487.4019190914594, 486.39999999554686)\n", + "(34, 45.56219290077146, 1.5000001961632137, 845.8016987621324, 844.8000001137242)\n", + "(35, 45.16457078605164, 1.4999999375272566, 1204.201478021168, 1203.1999999742118)\n", + "(36, 44.76694929449653, 1.4999999759784188, 1562.6012575510401, 1561.5999999940952)\n", + "(37, 44.36932726266951, 1.500000148202382, 1921.0010369400154, 1920.000000011696)\n", + "(38, 172.9977021140564, 127.9999997738147, 2.642561336303632, 1.4999997662545619)\n", + "(39, 531.3974814131998, 486.39999979074327, 3.0401829587413545, 1.499999737113424)\n", + "(40, 889.7972608691747, 844.7999998272624, 3.4378047525488213, 1.4999997233259046)\n", + "(41, 1248.1970404608103, 1203.200000113459, 3.835426873151222, 1.5000002506302068)\n", + "(42, 1606.596819792033, 1561.5999999646774, 4.233048444454759, 1.4999998743099932)\n", + "(43, 1964.9965992153436, 1920.0000000161986, 4.630670254819178, 1.5000001480548002)\n", + "(44, 170.7289057390492, 128.00000007890358, 2047.6413027191813, 2046.5000000016769)\n", + "(45, 529.1286855099395, 486.40000014576265, 2048.0389245051765, 2046.5000000037658)\n", + "(46, 887.5284651241095, 844.8000000249808, 2048.4365462903634, 2046.500000000822)\n", + "(47, 1245.9282440792051, 1203.1999999860723, 2048.834168051381, 2046.499999999368)\n", + "(48, 1604.328023560095, 1561.5999997943738, 2049.2317898294755, 2046.4999999849554)\n", + "(49, 1962.7278033220296, 1919.9999998292035, 2049.6294116676645, 2046.4999999678917)\n", + "(50, 2091.3561777387804, 2046.5000000035116, 131.27093618830875, 128.00000006766538)\n", + "(51, 2090.9585559685484, 2046.5000000160612, 489.6707157899314, 486.4000002527034)\n", + "(52, 2090.5609341729923, 2046.499999988093, 848.0704947483846, 844.7999998545557)\n", + "(53, 2090.1633123802417, 2046.4999999998222, 1206.4702739708875, 1203.1999999984603)\n", + "(54, 2089.7656906464, 2046.5000000248924, 1564.8700539026252, 1561.6000001289435)\n", + "(55, 2089.368068769686, 2046.499999921728, 1923.2698328883073, 1919.9999998698445)\n", + "(56, 46.49778016993183, 1.4999998189493056, 2.5022179110539167, 1.499999823923896)\n", + "(57, 46.49778016993183, 1.4999998189493056, 2.5022179110539167, 1.499999823923896)\n", + "(58, 2089.227725252714, 2046.5000001869885, 2049.769755261608, 2046.5000000787884)\n", + "(59, 2089.227725252714, 2046.5000001869885, 2049.769755261608, 2046.5000000787884)\n", + "(60, 172.8573581703778, 128.000000128836, 129.14248316386005, 128.0000001250781)\n", + "(61, 531.2571377561962, 486.40000008469497, 129.54010507300995, 128.00000009995483)\n", + "(62, 889.6569174473806, 844.7999999028258, 129.93772722072126, 127.99999985378393)\n", + "(63, 1248.0566967925786, 1203.1999998908843, 130.3353489096324, 127.99999977356812)\n", + "(64, 1606.4564762028936, 1561.6000000535382, 130.73297071607638, 128.00000017895883)\n", + "(65, 1964.8562555755068, 1920.0000000180069, 131.130592231171, 128.0000001546217)\n", + "(66, 172.45973646989958, 127.99999982222076, 487.5422627045246, 486.39999985894264)\n", + "(67, 530.859516296342, 486.4000000976701, 487.9398848418558, 486.4000000942024)\n", + "(68, 889.2592955607116, 844.8000000565706, 488.3375064687258, 486.4000000695666)\n", + "(69, 1247.6590748581411, 1203.200000060865, 488.73512803416634, 486.40000010322746)\n", + "(70, 1606.0588544516797, 1561.600000031829, 489.13275019250244, 486.4000000869431)\n", + "(71, 1964.4586337952828, 1920.0000000280752, 489.5303716580476, 486.40000019707065)\n", + "(72, 172.0621148369278, 128.0000002666348, 845.9420422594761, 844.8000001642582)\n", + "(73, 530.4618941741912, 486.399999806452, 846.3396639606935, 844.7999998550553)\n", + "(74, 888.8616735536476, 844.8000001973719, 846.7372856598622, 844.8000001884442)\n", + "(75, 1247.26145331896, 1203.2000002370992, 847.1349078282432, 844.800000312211)\n", + "(76, 1605.6612325517035, 1561.6000001536386, 847.5325292929691, 844.800000325881)\n", + "(77, 1964.0610120735453, 1919.9999999712545, 847.9301514871619, 844.7999998433366)\n", + "(78, 171.6644931394598, 127.9999997393785, 1204.3418217328835, 1203.199999885679)\n", + "(79, 530.0642722835973, 486.39999990024563, 1204.739443358673, 1203.1999999468073)\n", + "(80, 888.4640517180086, 844.799999907629, 1205.1370651017378, 1203.1999999372026)\n", + "(81, 1246.8638311761242, 1203.1999997019855, 1205.5346868402019, 1203.1999997205749)\n", + "(82, 1605.263610645231, 1561.6000001391767, 1205.9323085442293, 1203.2000002101981)\n", + "(83, 1963.6633902662497, 1919.9999999904758, 1206.3299306869435, 1203.1999999630345)\n", + "(84, 171.26687133425116, 128.00000006310484, 1562.7416011483433, 1561.6000000164875)\n", + "(85, 529.6666505523767, 486.40000000041897, 1563.1392228583084, 1561.6000000001325)\n", + "(86, 888.0664299649204, 844.8000000128376, 1563.536844610793, 1561.6000000051981)\n", + "(87, 1246.4662094315993, 1203.2000000099179, 1563.9344663744957, 1561.600000005536)\n", + "(88, 1604.8659889501732, 1561.5999998475208, 1564.3320881693235, 1561.5999998628427)\n", + "(89, 1963.2657684761043, 1920.0000000749917, 1564.7297100494675, 1561.6000001733057)\n", + "(90, 170.8692493138449, 128.00000004714025, 1921.1413805553327, 1920.000000003955)\n", + "(91, 529.2690291620806, 486.4000002455891, 1921.5390023725192, 1920.0000000250373)\n", + "(92, 887.6688083609912, 844.8000002897016, 1921.9366241254065, 1920.000000037654)\n", + "(93, 1246.0685879724388, 1203.199999972042, 1922.334245934889, 1919.999999994988)\n", + "(94, 1604.4683672444357, 1561.6000000142162, 1922.7318676814552, 1920.0000000041055)\n", + "(95, 1962.868146833854, 1919.99999978173, 1923.1294895914857, 1919.9999998380765)\n" + ] + } + ], + "source": [ + "for item in zip(test_pix.loc[idx,'index'],test_pix.loc[idx,'row'], benchmarktest_pix.loc[idx,'row'], \n", + " test_pix.loc[idx,'col'], benchmarktest_pix.loc[idx,'col'] ):\n", + " print(item)" + ] + }, + { + "cell_type": "markdown", + "id": "0cb14758", + "metadata": {}, + "source": [ + "## OK, so, not just offset but systematic offset " + ] + }, + { + "cell_type": "markdown", + "id": "76d24f94", + "metadata": {}, + "source": [ + "## Looking at tess_stars2px.py - the old python script is subtracting 45, 1 from the input values, e.g.:\n", + " starCcdXs = colWnt - 45.0\n", + " starCcdYs = rowWnt - 1.0\n", + "lets subtract this and then try tests again!" + ] + }, + { + "cell_type": "code", + "execution_count": 377, + "id": "2a703d49", + "metadata": {}, + "outputs": [ + { + "name": "stderr", + "output_type": "stream", + "text": [ + "DEBUG:root:fp_optics: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:tanth_of_r: opt_coeffs: [145.948116 1.0000014 0.24779006 -0.22681254 10.78243356\n", + " -34.97817276]\n", + "DEBUG:root:cartToSphere: vec: [[ 0.46422409 -0.48431072 -0.7415788 ]\n", + " [ 0.47204697 -0.50314825 -0.72388777]\n", + " [ 0.47979911 -0.52191881 -0.70526135]\n", + " [ 0.48742127 -0.54052943 -0.68574663]\n", + " [ 0.49485752 -0.55889074 -0.66540001]\n", + " [ 0.50205756 -0.57691791 -0.6442856 ]\n", + " [ 0.50897775 -0.59453096 -0.62247457]\n", + " [ 0.51558141 -0.61165508 -0.60004489]\n", + " [ 0.46422409 -0.48431072 -0.7415788 ]\n", + " [ 0.48563315 -0.46831544 -0.73813352]\n", + " [ 0.50718721 -0.4517251 -0.73396564]\n", + " [ 0.52877365 -0.43458115 -0.72906628]\n", + " [ 0.55028206 -0.41693092 -0.72343504]\n", + " [ 0.57160711 -0.39882748 -0.71707876]\n", + " [ 0.5926498 -0.3803297 -0.71001093]\n", + " [ 0.61331788 -0.36150216 -0.70225164]\n", + " [ 0.51558141 -0.61165508 -0.60004489]\n", + " [ 0.53846911 -0.59639004 -0.59528979]\n", + " [ 0.56139482 -0.5803342 -0.58995599]\n", + " [ 0.58424028 -0.56352629 -0.58403889]\n", + " [ 0.60689499 -0.5460098 -0.57753941]\n", + " [ 0.62925438 -0.52783438 -0.57046454]\n", + " [ 0.65121815 -0.5090574 -0.56282811]\n", + " [ 0.67269008 -0.48974473 -0.55465139]\n", + " [ 0.61331788 -0.36150216 -0.70225164]\n", + " [ 0.62301304 -0.3800833 -0.68366032]\n", + " [ 0.63240187 -0.3987233 -0.66414426]\n", + " [ 0.64141845 -0.41733025 -0.64375293]\n", + " [ 0.65000427 -0.43581748 -0.62254123]\n", + " [ 0.65810748 -0.45410207 -0.60057128]\n", + " [ 0.66568247 -0.4721037 -0.5779143 ]\n", + " [ 0.67269008 -0.48974473 -0.55465139]\n", + " [ 0.46771312 -0.49247261 -0.73397218]\n", + " [ 0.47726212 -0.51552706 -0.71165491]\n", + " [ 0.48664564 -0.5383883 -0.68797824]\n", + " [ 0.49575913 -0.56089022 -0.66304227]\n", + " [ 0.5045101 -0.58287666 -0.63696495]\n", + " [ 0.51282112 -0.60420254 -0.60988014]\n", + " [ 0.47356085 -0.4774768 -0.74010541]\n", + " [ 0.49991287 -0.45746808 -0.7353979 ]\n", + " [ 0.52637068 -0.43660591 -0.72959522]\n", + " [ 0.55272985 -0.41497499 -0.72269321]\n", + " [ 0.57879661 -0.39267303 -0.7147044 ]\n", + " [ 0.6043915 -0.36981079 -0.70565636]\n", + " [ 0.52552583 -0.60504113 -0.59812026]\n", + " [ 0.55361771 -0.58579522 -0.59190488]\n", + " [ 0.58164831 -0.56539961 -0.58481495]\n", + " [ 0.60941105 -0.54393235 -0.57684987]\n", + " [ 0.63671319 -0.52148503 -0.56802261]\n", + " [ 0.66337174 -0.49816681 -0.55836168]\n", + " [ 0.61750789 -0.36965533 -0.69429024]\n", + " [ 0.6291923 -0.39248051 -0.67087711]\n", + " [ 0.64035038 -0.415302 -0.64612355]\n", + " [ 0.65087136 -0.43795816 -0.62012831]\n", + " [ 0.66065977 -0.46029616 -0.593006 ]\n", + " [ 0.66963426 -0.48216922 -0.56489185]\n", + " [ 0.46432374 -0.4843215 -0.74150937]\n", + " [ 0.46432374 -0.4843215 -0.74150937]\n", + " [ 0.67259464 -0.48975197 -0.55476072]\n", + " [ 0.67259464 -0.48975197 -0.55476072]\n", + " [ 0.47701464 -0.48564103 -0.73253657]\n", + " [ 0.50354259 -0.46565477 -0.72774343]\n", + " [ 0.53016336 -0.444793 -0.72186286]\n", + " [ 0.55667046 -0.42314009 -0.71489192]\n", + " [ 0.58286947 -0.40079364 -0.70684343]\n", + " [ 0.60858067 -0.3778646 -0.69774488]\n", + " [ 0.4867312 -0.5087388 -0.71012504]\n", + " [ 0.51371271 -0.48883465 -0.70508151]\n", + " [ 0.5407496 -0.46799435 -0.69897865]\n", + " [ 0.56763237 -0.44630149 -0.69181535]\n", + " [ 0.59416626 -0.42385337 -0.68360425]\n", + " [ 0.62017133 -0.40076155 -0.67437208]\n", + " [ 0.49625717 -0.53165174 -0.68634922]\n", + " [ 0.52362014 -0.51185593 -0.68104733]\n", + " [ 0.55100316 -0.49106708 -0.67472116]\n", + " [ 0.57819662 -0.46936779 -0.66736987]\n", + " [ 0.60500659 -0.44685479 -0.65900518]\n", + " [ 0.63125287 -0.42364003 -0.64965294]\n", + " [ 0.50548598 -0.55421343 -0.66131037]\n", + " [ 0.53315516 -0.53455195 -0.65574369]\n", + " [ 0.5608137 -0.51384504 -0.64919279]\n", + " [ 0.58825314 -0.49217399 -0.64165645]\n", + " [ 0.61528045 -0.46963435 -0.63314575]\n", + " [ 0.64171482 -0.44633795 -0.62368624]\n", + " [ 0.51432446 -0.57626756 -0.63512679]\n", + " [ 0.54222423 -0.55676612 -0.62928878]\n", + " [ 0.57008816 -0.53617171 -0.62251055]\n", + " [ 0.59770905 -0.51456409 -0.61479077]\n", + " [ 0.62489435 -0.49203715 -0.60614066]\n", + " [ 0.65146228 -0.46870191 -0.59658648]\n", + " [ 0.5226951 -0.59766874 -0.60793249]\n", + " [ 0.55075013 -0.57835203 -0.6018166 ]\n", + " [ 0.57874961 -0.5578996 -0.59480831]\n", + " [ 0.60648694 -0.53638987 -0.58690672]\n", + " [ 0.63376952 -0.51391497 -0.57812421]\n", + " [ 0.6604146 -0.4905846 -0.56848861]]\n", + "DEBUG:root:radec2pix: curVec: [[ 0.46422409 -0.48431072 -0.7415788 ]\n", + " [ 0.47204697 -0.50314825 -0.72388777]\n", + " [ 0.47979911 -0.52191881 -0.70526135]\n", + " [ 0.48742127 -0.54052943 -0.68574663]\n", + " [ 0.49485752 -0.55889074 -0.66540001]\n", + " [ 0.50205756 -0.57691791 -0.6442856 ]\n", + " [ 0.50897775 -0.59453096 -0.62247457]\n", + " [ 0.51558141 -0.61165508 -0.60004489]\n", + " [ 0.46422409 -0.48431072 -0.7415788 ]\n", + " [ 0.48563315 -0.46831544 -0.73813352]\n", + " [ 0.50718721 -0.4517251 -0.73396564]\n", + " [ 0.52877365 -0.43458115 -0.72906628]\n", + " [ 0.55028206 -0.41693092 -0.72343504]\n", + " [ 0.57160711 -0.39882748 -0.71707876]\n", + " [ 0.5926498 -0.3803297 -0.71001093]\n", + " [ 0.61331788 -0.36150216 -0.70225164]\n", + " [ 0.51558141 -0.61165508 -0.60004489]\n", + " [ 0.53846911 -0.59639004 -0.59528979]\n", + " [ 0.56139482 -0.5803342 -0.58995599]\n", + " [ 0.58424028 -0.56352629 -0.58403889]\n", + " [ 0.60689499 -0.5460098 -0.57753941]\n", + " [ 0.62925438 -0.52783438 -0.57046454]\n", + " [ 0.65121815 -0.5090574 -0.56282811]\n", + " [ 0.67269008 -0.48974473 -0.55465139]\n", + " [ 0.61331788 -0.36150216 -0.70225164]\n", + " [ 0.62301304 -0.3800833 -0.68366032]\n", + " [ 0.63240187 -0.3987233 -0.66414426]\n", + " [ 0.64141845 -0.41733025 -0.64375293]\n", + " [ 0.65000427 -0.43581748 -0.62254123]\n", + " [ 0.65810748 -0.45410207 -0.60057128]\n", + " [ 0.66568247 -0.4721037 -0.5779143 ]\n", + " [ 0.67269008 -0.48974473 -0.55465139]\n", + " [ 0.46771312 -0.49247261 -0.73397218]\n", + " [ 0.47726212 -0.51552706 -0.71165491]\n", + " [ 0.48664564 -0.5383883 -0.68797824]\n", + " [ 0.49575913 -0.56089022 -0.66304227]\n", + " [ 0.5045101 -0.58287666 -0.63696495]\n", + " [ 0.51282112 -0.60420254 -0.60988014]\n", + " [ 0.47356085 -0.4774768 -0.74010541]\n", + " [ 0.49991287 -0.45746808 -0.7353979 ]\n", + " [ 0.52637068 -0.43660591 -0.72959522]\n", + " [ 0.55272985 -0.41497499 -0.72269321]\n", + " [ 0.57879661 -0.39267303 -0.7147044 ]\n", + " [ 0.6043915 -0.36981079 -0.70565636]\n", + " [ 0.52552583 -0.60504113 -0.59812026]\n", + " [ 0.55361771 -0.58579522 -0.59190488]\n", + " [ 0.58164831 -0.56539961 -0.58481495]\n", + " [ 0.60941105 -0.54393235 -0.57684987]\n", + " [ 0.63671319 -0.52148503 -0.56802261]\n", + " [ 0.66337174 -0.49816681 -0.55836168]\n", + " [ 0.61750789 -0.36965533 -0.69429024]\n", + " [ 0.6291923 -0.39248051 -0.67087711]\n", + " [ 0.64035038 -0.415302 -0.64612355]\n", + " [ 0.65087136 -0.43795816 -0.62012831]\n", + " [ 0.66065977 -0.46029616 -0.593006 ]\n", + " [ 0.66963426 -0.48216922 -0.56489185]\n", + " [ 0.46432374 -0.4843215 -0.74150937]\n", + " [ 0.46432374 -0.4843215 -0.74150937]\n", + " [ 0.67259464 -0.48975197 -0.55476072]\n", + " [ 0.67259464 -0.48975197 -0.55476072]\n", + " [ 0.47701464 -0.48564103 -0.73253657]\n", + " [ 0.50354259 -0.46565477 -0.72774343]\n", + " [ 0.53016336 -0.444793 -0.72186286]\n", + " [ 0.55667046 -0.42314009 -0.71489192]\n", + " [ 0.58286947 -0.40079364 -0.70684343]\n", + " [ 0.60858067 -0.3778646 -0.69774488]\n", + " [ 0.4867312 -0.5087388 -0.71012504]\n", + " [ 0.51371271 -0.48883465 -0.70508151]\n", + " [ 0.5407496 -0.46799435 -0.69897865]\n", + " [ 0.56763237 -0.44630149 -0.69181535]\n", + " [ 0.59416626 -0.42385337 -0.68360425]\n", + " [ 0.62017133 -0.40076155 -0.67437208]\n", + " [ 0.49625717 -0.53165174 -0.68634922]\n", + " [ 0.52362014 -0.51185593 -0.68104733]\n", + " [ 0.55100316 -0.49106708 -0.67472116]\n", + " [ 0.57819662 -0.46936779 -0.66736987]\n", + " [ 0.60500659 -0.44685479 -0.65900518]\n", + " [ 0.63125287 -0.42364003 -0.64965294]\n", + " [ 0.50548598 -0.55421343 -0.66131037]\n", + " [ 0.53315516 -0.53455195 -0.65574369]\n", + " [ 0.5608137 -0.51384504 -0.64919279]\n", + " [ 0.58825314 -0.49217399 -0.64165645]\n", + " [ 0.61528045 -0.46963435 -0.63314575]\n", + " [ 0.64171482 -0.44633795 -0.62368624]\n", + " [ 0.51432446 -0.57626756 -0.63512679]\n", + " [ 0.54222423 -0.55676612 -0.62928878]\n", + " [ 0.57008816 -0.53617171 -0.62251055]\n", + " [ 0.59770905 -0.51456409 -0.61479077]\n", + " [ 0.62489435 -0.49203715 -0.60614066]\n", + " [ 0.65146228 -0.46870191 -0.59658648]\n", + " [ 0.5226951 -0.59766874 -0.60793249]\n", + " [ 0.55075013 -0.57835203 -0.6018166 ]\n", + " [ 0.57874961 -0.5578996 -0.59480831]\n", + " [ 0.60648694 -0.53638987 -0.58690672]\n", + " [ 0.63376952 -0.51391497 -0.57812421]\n", + " [ 0.6604146 -0.4905846 -0.56848861]]\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "DEBUG:root:radec2pix: curVec Shape: (96, 3)\n", + "DEBUG:root:radec2pix: camVec: [[-0.20605901 -0.20789056 -0.20945965 -0.21076013 -0.21178857 -0.21254278\n", + " -0.21302114 -0.2132225 -0.20605901 -0.1796298 -0.15250196 -0.12477876\n", + " -0.09656823 -0.0679807 -0.03912776 -0.01012196 -0.2132225 -0.18586494\n", + " -0.15779622 -0.12912301 -0.09995124 -0.07038852 -0.04054647 -0.01054157\n", + " -0.01012196 -0.01022025 -0.01030618 -0.01037964 -0.01044033 -0.01048784\n", + " -0.01052172 -0.01054157 -0.20679984 -0.20886817 -0.21053592 -0.21179576\n", + " -0.21264359 -0.21307662 -0.19463431 -0.16175914 -0.12793647 -0.09336341\n", + " -0.05824293 -0.02278092 -0.20138863 -0.1673674 -0.1323841 -0.096634\n", + " -0.0603155 -0.02363614 -0.01026605 -0.01037918 -0.01047348 -0.01054846\n", + " -0.01060337 -0.01063738 -0.20597663 -0.20597663 -0.01064428 -0.01064428\n", + " -0.19541209 -0.16240431 -0.12844582 -0.0937353 -0.05847621 -0.02287469\n", + " -0.19736486 -0.16402258 -0.12972399 -0.09466988 -0.0590637 -0.02311193\n", + " -0.19893868 -0.16532717 -0.13075671 -0.09542763 -0.05954214 -0.02330691\n", + " -0.20012776 -0.16631476 -0.13154135 -0.09600606 -0.05990953 -0.02345869\n", + " -0.20092847 -0.16698178 -0.13207368 -0.09640078 -0.06016235 -0.02356567\n", + " -0.20133792 -0.16732444 -0.13234898 -0.09660695 -0.06029683 -0.02362614]\n", + " [-0.201702 -0.17519642 -0.14800936 -0.12024452 -0.09201014 -0.06341667\n", + " -0.03457581 -0.00560015 -0.201702 -0.20351897 -0.20507918 -0.20637648\n", + " -0.20740753 -0.20817019 -0.20866288 -0.20888439 -0.00560015 -0.0056405\n", + " -0.00567377 -0.00569998 -0.00571902 -0.00573074 -0.00573494 -0.00573147\n", + " -0.20888439 -0.18140723 -0.15323611 -0.12447748 -0.09523739 -0.06562396\n", + " -0.03574959 -0.00573147 -0.19024186 -0.15728453 -0.12340593 -0.0888036\n", + " -0.0536808 -0.01824355 -0.20243546 -0.20448974 -0.20615199 -0.207415\n", + " -0.20827479 -0.20872858 -0.0057182 -0.0057639 -0.00579879 -0.00582276\n", + " -0.0058355 -0.00583665 -0.19699618 -0.16283998 -0.12774733 -0.09191354\n", + " -0.05553794 -0.01882948 -0.20161927 -0.20161927 -0.00583425 -0.00583425\n", + " -0.19101143 -0.19294673 -0.19451168 -0.19570065 -0.19651011 -0.19693716\n", + " -0.15791814 -0.15950944 -0.16079571 -0.16177388 -0.16244054 -0.16279186\n", + " -0.1239004 -0.12514213 -0.12614701 -0.12691275 -0.12743539 -0.12771021\n", + " -0.08915733 -0.09004598 -0.09076625 -0.0913161 -0.0916915 -0.09188775\n", + " -0.05389265 -0.05442484 -0.05485625 -0.05518533 -0.05540904 -0.0555239\n", + " -0.01831272 -0.01848562 -0.01862435 -0.01872835 -0.0187965 -0.01882756]\n", + " [ 0.95752597 0.96233452 0.96655051 0.97011413 0.97297468 0.97509174\n", + " 0.97643561 0.97698762 0.95752597 0.96245164 0.96679144 0.9704839\n", + " 0.9734766 0.97572732 0.9772046 0.97788796 0.97698762 0.98255911\n", + " 0.9874554 0.9916122 0.9949759 0.99750319 0.9991612 0.99992801\n", + " 0.97788796 0.98335495 0.98813586 0.99216814 0.99539984 0.99778931\n", + " 0.99930539 0.99992801 0.95970926 0.96521276 0.96976575 0.97327102\n", + " 0.97565418 0.97686515 0.95975902 0.96541075 0.97012041 0.9737876\n", + " 0.97633466 0.97770824 0.97949473 0.98587775 0.99118153 0.99530295\n", + " 0.9981623 0.99970359 0.98035051 0.9865979 0.99175144 0.99571112\n", + " 0.99840027 0.99976612 0.95756112 0.95756112 0.99992633 0.99992633\n", + " 0.9619401 0.96767577 0.97245405 0.97617363 0.97875651 0.98014922\n", + " 0.96752725 0.97347487 0.97842548 0.98227635 0.98494901 0.9863897\n", + " 0.97214818 0.97826703 0.9833563 0.98731288 0.99005806 0.99153764\n", + " 0.9757048 0.98195271 0.98714658 0.99118324 0.99398366 0.99549301\n", + " 0.97812235 0.98445671 0.98972084 0.99381159 0.99664955 0.99817922\n", + " 0.97935064 0.98572857 0.99102819 0.99514639 0.9980035 0.99954356]]\n", + "DEBUG:root:radec2pix: camVec Shape: (3, 96)\n", + "DEBUG:root:cartToSphere: vec: [[-0.20605901 -0.201702 0.95752597]\n", + " [-0.20789056 -0.17519642 0.96233452]\n", + " [-0.20945965 -0.14800936 0.96655051]\n", + " [-0.21076013 -0.12024452 0.97011413]\n", + " [-0.21178857 -0.09201014 0.97297468]\n", + " [-0.21254278 -0.06341667 0.97509174]\n", + " [-0.21302114 -0.03457581 0.97643561]\n", + " [-0.2132225 -0.00560015 0.97698762]\n", + " [-0.20605901 -0.201702 0.95752597]\n", + " [-0.1796298 -0.20351897 0.96245164]\n", + " [-0.15250196 -0.20507918 0.96679144]\n", + " [-0.12477876 -0.20637648 0.9704839 ]\n", + " [-0.09656823 -0.20740753 0.9734766 ]\n", + " [-0.0679807 -0.20817019 0.97572732]\n", + " [-0.03912776 -0.20866288 0.9772046 ]\n", + " [-0.01012196 -0.20888439 0.97788796]\n", + " [-0.2132225 -0.00560015 0.97698762]\n", + " [-0.18586494 -0.0056405 0.98255911]\n", + " [-0.15779622 -0.00567377 0.9874554 ]\n", + " [-0.12912301 -0.00569998 0.9916122 ]\n", + " [-0.09995124 -0.00571902 0.9949759 ]\n", + " [-0.07038852 -0.00573074 0.99750319]\n", + " [-0.04054647 -0.00573494 0.9991612 ]\n", + " [-0.01054157 -0.00573147 0.99992801]\n", + " [-0.01012196 -0.20888439 0.97788796]\n", + " [-0.01022025 -0.18140723 0.98335495]\n", + " [-0.01030618 -0.15323611 0.98813586]\n", + " [-0.01037964 -0.12447748 0.99216814]\n", + " [-0.01044033 -0.09523739 0.99539984]\n", + " [-0.01048784 -0.06562396 0.99778931]\n", + " [-0.01052172 -0.03574959 0.99930539]\n", + " [-0.01054157 -0.00573147 0.99992801]\n", + " [-0.20679984 -0.19024186 0.95970926]\n", + " [-0.20886817 -0.15728453 0.96521276]\n", + " [-0.21053592 -0.12340593 0.96976575]\n", + " [-0.21179576 -0.0888036 0.97327102]\n", + " [-0.21264359 -0.0536808 0.97565418]\n", + " [-0.21307662 -0.01824355 0.97686515]\n", + " [-0.19463431 -0.20243546 0.95975902]\n", + " [-0.16175914 -0.20448974 0.96541075]\n", + " [-0.12793647 -0.20615199 0.97012041]\n", + " [-0.09336341 -0.207415 0.9737876 ]\n", + " [-0.05824293 -0.20827479 0.97633466]\n", + " [-0.02278092 -0.20872858 0.97770824]\n", + " [-0.20138863 -0.0057182 0.97949473]\n", + " [-0.1673674 -0.0057639 0.98587775]\n", + " [-0.1323841 -0.00579879 0.99118153]\n", + " [-0.096634 -0.00582276 0.99530295]\n", + " [-0.0603155 -0.0058355 0.9981623 ]\n", + " [-0.02363614 -0.00583665 0.99970359]\n", + " [-0.01026605 -0.19699618 0.98035051]\n", + " [-0.01037918 -0.16283998 0.9865979 ]\n", + " [-0.01047348 -0.12774733 0.99175144]\n", + " [-0.01054846 -0.09191354 0.99571112]\n", + " [-0.01060337 -0.05553794 0.99840027]\n", + " [-0.01063738 -0.01882948 0.99976612]\n", + " [-0.20597663 -0.20161927 0.95756112]\n", + " [-0.20597663 -0.20161927 0.95756112]\n", + " [-0.01064428 -0.00583425 0.99992633]\n", + " [-0.01064428 -0.00583425 0.99992633]\n", + " [-0.19541209 -0.19101143 0.9619401 ]\n", + " [-0.16240431 -0.19294673 0.96767577]\n", + " [-0.12844582 -0.19451168 0.97245405]\n", + " [-0.0937353 -0.19570065 0.97617363]\n", + " [-0.05847621 -0.19651011 0.97875651]\n", + " [-0.02287469 -0.19693716 0.98014922]\n", + " [-0.19736486 -0.15791814 0.96752725]\n", + " [-0.16402258 -0.15950944 0.97347487]\n", + " [-0.12972399 -0.16079571 0.97842548]\n", + " [-0.09466988 -0.16177388 0.98227635]\n", + " [-0.0590637 -0.16244054 0.98494901]\n", + " [-0.02311193 -0.16279186 0.9863897 ]\n", + " [-0.19893868 -0.1239004 0.97214818]\n", + " [-0.16532717 -0.12514213 0.97826703]\n", + " [-0.13075671 -0.12614701 0.9833563 ]\n", + " [-0.09542763 -0.12691275 0.98731288]\n", + " [-0.05954214 -0.12743539 0.99005806]\n", + " [-0.02330691 -0.12771021 0.99153764]\n", + " [-0.20012776 -0.08915733 0.9757048 ]\n", + " [-0.16631476 -0.09004598 0.98195271]\n", + " [-0.13154135 -0.09076625 0.98714658]\n", + " [-0.09600606 -0.0913161 0.99118324]\n", + " [-0.05990953 -0.0916915 0.99398366]\n", + " [-0.02345869 -0.09188775 0.99549301]\n", + " [-0.20092847 -0.05389265 0.97812235]\n", + " [-0.16698178 -0.05442484 0.98445671]\n", + " [-0.13207368 -0.05485625 0.98972084]\n", + " [-0.09640078 -0.05518533 0.99381159]\n", + " [-0.06016235 -0.05540904 0.99664955]\n", + " [-0.02356567 -0.0555239 0.99817922]\n", + " [-0.20133792 -0.01831272 0.97935064]\n", + " [-0.16732444 -0.01848562 0.98572857]\n", + " [-0.13234898 -0.01862435 0.99102819]\n", + " [-0.09660695 -0.01872835 0.99514639]\n", + " [-0.06029683 -0.0187965 0.9980035 ]\n", + " [-0.02362614 -0.01882756 0.99954356]]\n", + "DEBUG:root:radec2pix: lng: [224.38780575 220.12197455 215.2459699 209.70596097 203.48221716\n", + " 196.61359423 189.21937139 181.5044905 224.38780575 228.56774953\n", + " 233.36459421 238.84212355 245.03347504 251.91487453 259.37942441\n", + " 267.22577384 181.5044905 181.73823768 182.05925825 182.52761026\n", + " 183.27478406 184.65451431 188.05057531 208.53298035 267.22577384\n", + " 266.7754395 266.15226005 265.23337933 263.74396927 260.9199294\n", + " 253.59994241 208.53298035 222.61195692 216.98093787 210.37675941\n", + " 202.74776139 194.16801227 184.89370994 226.1255349 231.65466588\n", + " 238.17655304 245.76613073 254.37663462 263.77131562 181.626412\n", + " 181.97240623 182.50811169 183.44823469 185.5261405 193.87098726\n", + " 267.01684817 266.35298356 265.31303682 263.45308904 259.19110146\n", + " 240.53650378 224.38750869 224.38750869 208.72765615 208.72765615\n", + " 224.34753323 229.91249772 236.56121543 244.40684339 253.42838673\n", + " 263.37465667 218.66445587 224.20079884 231.1047031 239.66388081\n", + " 250.01863418 261.91958883 211.91494032 217.1234012 223.97203508\n", + " 233.0599369 244.95642236 259.65743072 204.01306967 208.43195781\n", + " 214.60647825 223.56579083 236.84014298 255.67845852 195.01437328\n", + " 198.05248995 202.55535271 209.78929538 222.64482322 247.00247676\n", + " 185.19704623 186.30434004 188.01015038 190.97134123 197.3139738\n", + " 218.55117755]\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "DEBUG:root:radec2pix: lat: [73.24097867 74.22453941 75.13891686 75.95705555 76.64924008 77.18510745\n", + " 77.53701046 77.68442186 73.24097867 74.24924139 75.19283519 76.04463714\n", + " 76.77435605 77.35033804 77.74284327 77.9286573 77.68442186 79.28344601\n", + " 80.9150792 82.57381688 84.25422319 85.95031956 87.65307937 89.31249519\n", + " 77.9286573 79.53150154 81.16541668 82.82447127 84.50217677 86.18950056\n", + " 87.86433265 89.31249519 73.68040702 74.84294781 75.87502824 76.72296904\n", + " 77.33121637 77.65156868 73.69055582 74.88639687 75.95853968 76.85246716\n", + " 77.51023679 77.87951915 78.37707821 80.35944467 82.3852803 84.44453644\n", + " 86.52591143 88.60493189 78.62301913 80.60903294 82.63579995 84.69158327\n", + " 86.75870594 88.76079926 73.24796406 73.24796406 89.30450778 89.30450778\n", + " 74.14162755 75.39241027 76.5206636 77.46764476 78.16897448 78.56470366\n", + " 75.35870553 76.7739234 78.07682043 79.19666699 80.04671577 80.53620737\n", + " 76.44568539 78.03295559 79.5319263 80.86350949 81.91399993 82.54083618\n", + " 77.34444734 79.09818123 80.80369561 82.38601774 83.71186642 84.55817956\n", + " 77.99304332 79.88482995 81.77777746 83.62248419 85.30851432 86.54194218\n", + " 78.3361736 80.30853924 82.3192648 84.35263749 86.37886535 88.26880502]\n", + "DEBUG:root:optics_fp: rtanth: [45.10557504 42.15505102 39.47233545 37.11554547 35.15030123 33.6452842\n", + " 32.664172 32.25480781 45.10557504 42.08184776 39.31580388 36.86549157\n", + " 34.79767254 33.18392792 32.09282848 31.57859591 32.25480781 27.87008502\n", + " 23.48599928 19.10298921 14.72201557 10.34566574 5.98409289 1.75141291\n", + " 31.57859591 27.19821955 22.82016839 18.4460981 14.07971933 9.7313909\n", + " 5.44453417 1.75141291 43.7785205 40.33477178 37.35012082 34.94240959\n", + " 33.23725624 32.34596062 43.74804409 40.20781978 37.11130465 34.5779098\n", + " 32.73862415 31.71444354 30.34340793 24.96997825 19.59795845 14.22894545\n", + " 8.868402 3.55485181 29.66929667 24.30230695 18.94042856 13.58971289\n", + " 8.2718505 3.15744786 45.08436312 45.08436312 1.77176423 1.77176423\n", + " 42.40106627 38.73793788 35.51349028 32.85712869 30.91563634 29.82892871\n", + " 38.83536249 34.79889063 31.16958374 28.10561979 25.80913654 24.49693749\n", + " 35.7256643 31.29058164 27.19707082 23.62336923 20.83864773 19.18951945\n", + " 33.20035471 28.37324376 23.78279049 19.59602094 16.13039682 13.93478091\n", + " 31.40074469 26.24469806 21.19821544 16.36298417 11.99720452 8.82730613\n", + " 30.45575042 25.10637653 19.77145174 14.46696987 9.24547903 4.41217631]\n", + "DEBUG:root:optics_fp: cphi: [-0.71462157 -0.76467431 -0.81668215 -0.86857996 -0.91718379 -0.95825476\n", + " -0.98708215 -0.99965527 -0.71462157 -0.66173398 -0.59672086 -0.51739801\n", + " -0.42208868 -0.31042966 -0.18430432 -0.04840046 -0.99965527 -0.99953984\n", + " -0.9993542 -0.99902709 -0.99836705 -0.99670212 -0.99014483 -0.87854231\n", + " -0.04840046 -0.05624949 -0.06710526 -0.08309729 -0.1089715 -0.1578146\n", + " -0.28234242 -0.87854231 -0.73595582 -0.79883569 -0.86271886 -0.92221608\n", + " -0.96958215 -0.99635467 -0.69308063 -0.62039978 -0.52730355 -0.41046214\n", + " -0.26931258 -0.10849705 -0.99959714 -0.99940752 -0.99904204 -0.99818955\n", + " -0.99535237 -0.970838 -0.0520423 -0.06360947 -0.08171174 -0.11401666\n", + " -0.18753387 -0.49186895 -0.7146252 -0.7146252 -0.87691426 -0.87691426\n", + " -0.71511307 -0.64395676 -0.55104574 -0.43197803 -0.28521354 -0.11537653\n", + " -0.78081813 -0.71690089 -0.62789917 -0.50507181 -0.34171451 -0.14056274\n", + " -0.84883386 -0.7973375 -0.71967876 -0.60097924 -0.42330745 -0.17953317\n", + " -0.91345265 -0.87938315 -0.82307216 -0.72458348 -0.54697683 -0.24736332\n", + " -0.96586087 -0.95077302 -0.9235094 -0.86785829 -0.73556733 -0.39069134\n", + " -0.99588907 -0.99395264 -0.9902434 -0.9817225 -0.95468824 -0.7820518 ]\n", + "DEBUG:root:optics_fp: sphi: [-0.69951126 -0.64441695 -0.57708775 -0.49554904 -0.39846442 -0.28591573\n", + " -0.16021492 -0.0262553 -0.69951126 -0.74973871 -0.80244889 -0.85574488\n", + " -0.90655455 -0.95059635 -0.98286923 -0.99882801 -0.0262553 -0.03033332\n", + " -0.0359331 -0.04410081 -0.05712465 -0.08114728 -0.14004716 -0.47766454\n", + " -0.99882801 -0.99841674 -0.9977459 -0.99654144 -0.99404487 -0.98746876\n", + " -0.95931369 -0.47766454 -0.67702957 -0.60154929 -0.50568387 -0.38667493\n", + " -0.24476611 -0.08530754 -0.72086007 -0.78428574 -0.84967698 -0.91187764\n", + " -0.96305282 -0.99409677 -0.02838243 -0.03441818 -0.04376083 -0.06014672\n", + " -0.09629988 -0.23973647 -0.99864488 -0.99797487 -0.996656 -0.99347884\n", + " -0.98225814 -0.87066925 -0.69950756 -0.69950756 -0.48064683 -0.48064683\n", + " -0.69900879 -0.76506188 -0.83447504 -0.90188413 -0.958464 -0.99332183\n", + " -0.62475839 -0.6971751 -0.77829469 -0.86307733 -0.93980381 -0.99007177\n", + " -0.52865969 -0.60353369 -0.69430719 -0.79926463 -0.90598609 -0.98375192\n", + " -0.40694502 -0.47611478 -0.56793681 -0.68918704 -0.83714775 -0.9689228\n", + " -0.25906135 -0.30988815 -0.3835758 -0.49681183 -0.67745162 -0.92052174\n", + " -0.09058124 -0.1098096 -0.13934853 -0.19031797 -0.29760772 -0.62321343]\n", + "DEBUG:root:optics_fp: xyfp: [[32.23341697 31.55185779]\n", + " [32.23488434 27.16542946]\n", + " [32.23635173 22.77900114]\n", + " [32.2378191 18.39257281]\n", + " [32.23928648 14.00614448]\n", + " [32.24075386 9.61971616]\n", + " [32.24222124 5.23328783]\n", + " [32.24368862 0.84685951]\n", + " [32.23341697 31.55185779]\n", + " [27.84698863 31.5503904 ]\n", + " [23.46056031 31.54892303]\n", + " [19.07413198 31.54745564]\n", + " [14.68770366 31.54598827]\n", + " [10.30127533 31.54452089]\n", + " [ 5.91484701 31.54305351]\n", + " [ 1.52841868 31.54158613]\n", + " [32.24368862 0.84685951]\n", + " [27.8572603 0.84539213]\n", + " [23.47083196 0.84392475]\n", + " [19.08440364 0.84245737]\n", + " [14.69797532 0.84098999]\n", + " [10.31154699 0.83952261]\n", + " [ 5.92511867 0.83805523]\n", + " [ 1.53869034 0.83658785]\n", + " [ 1.52841868 31.54158613]\n", + " [ 1.52988606 27.1551578 ]\n", + " [ 1.53135344 22.76872947]\n", + " [ 1.53282082 18.38230115]\n", + " [ 1.5342882 13.99587283]\n", + " [ 1.53575558 9.6094445 ]\n", + " [ 1.53722296 5.22301617]\n", + " [ 1.53869034 0.83658785]\n", + " [32.21905675 29.63935288]\n", + " [32.22085516 24.26335318]\n", + " [32.22265358 18.88735348]\n", + " [32.22445201 13.51135378]\n", + " [32.22625042 8.13535408]\n", + " [32.22804884 2.75935438]\n", + " [30.32092208 31.536218 ]\n", + " [24.94492239 31.53441959]\n", + " [19.56892269 31.53262117]\n", + " [14.19292299 31.53082275]\n", + " [ 8.81692329 31.52902433]\n", + " [ 3.44092359 31.52722592]\n", + " [30.33118372 0.86121972]\n", + " [24.95518401 0.8594213 ]\n", + " [19.57918431 0.85762288]\n", + " [14.20318461 0.85582447]\n", + " [ 8.82718492 0.85402605]\n", + " [ 3.45118522 0.85222763]\n", + " [ 1.54405846 29.62909125]\n", + " [ 1.54585688 24.25309155]\n", + " [ 1.5476553 18.87709186]\n", + " [ 1.54945372 13.50109216]\n", + " [ 1.55125214 8.12509246]\n", + " [ 1.55305055 2.74909275]\n", + " [32.21842198 31.53685277]\n", + " [32.21842198 31.53685277]\n", + " [ 1.55368532 0.85159287]\n", + " [ 1.55368532 0.85159287]\n", + " [30.32155685 29.63871811]\n", + " [24.94555716 29.6369197 ]\n", + " [19.56955746 29.63512128]\n", + " [14.19355776 29.63332286]\n", + " [ 8.81755806 29.63152443]\n", + " [ 3.44155836 29.62972602]\n", + " [30.32335527 24.26271841]\n", + " [24.94735557 24.26092 ]\n", + " [19.57135587 24.25912158]\n", + " [14.19535617 24.25732316]\n", + " [ 8.81935647 24.25552474]\n", + " [ 3.44335678 24.25372632]\n", + " [30.32515369 18.88671871]\n", + " [24.94915399 18.88492029]\n", + " [19.57315429 18.88312188]\n", + " [14.19715459 18.88132345]\n", + " [ 8.82115489 18.87952504]\n", + " [ 3.44515519 18.87772662]\n", + " [30.32695211 13.51071901]\n", + " [24.95095241 13.50892059]\n", + " [19.57495271 13.50712218]\n", + " [14.19895302 13.50532376]\n", + " [ 8.82295331 13.50352534]\n", + " [ 3.44695361 13.50172692]\n", + " [30.32875053 8.13471931]\n", + " [24.95275083 8.1329209 ]\n", + " [19.57675113 8.13112248]\n", + " [14.20075143 8.12932406]\n", + " [ 8.82475173 8.12752564]\n", + " [ 3.44875203 8.12572722]\n", + " [30.33054895 2.75871962]\n", + " [24.95454925 2.7569212 ]\n", + " [19.57854955 2.75512278]\n", + " [14.20254985 2.75332436]\n", + " [ 8.82655015 2.75152594]\n", + " [ 3.45055045 2.74972752]]\n", + "DEBUG:root:optics_fp: xyfp shape: (96, 2)\n", + "DEBUG:root:make_az_asym: xyp: [[32.23341697 31.55185779]\n", + " [32.23488434 27.16542946]\n", + " [32.23635173 22.77900114]\n", + " [32.2378191 18.39257281]\n", + " [32.23928648 14.00614448]\n", + " [32.24075386 9.61971616]\n", + " [32.24222124 5.23328783]\n", + " [32.24368862 0.84685951]\n", + " [32.23341697 31.55185779]\n", + " [27.84698863 31.5503904 ]\n", + " [23.46056031 31.54892303]\n", + " [19.07413198 31.54745564]\n", + " [14.68770366 31.54598827]\n", + " [10.30127533 31.54452089]\n", + " [ 5.91484701 31.54305351]\n", + " [ 1.52841868 31.54158613]\n", + " [32.24368862 0.84685951]\n", + " [27.8572603 0.84539213]\n", + " [23.47083196 0.84392475]\n", + " [19.08440364 0.84245737]\n", + " [14.69797532 0.84098999]\n", + " [10.31154699 0.83952261]\n", + " [ 5.92511867 0.83805523]\n", + " [ 1.53869034 0.83658785]\n", + " [ 1.52841868 31.54158613]\n", + " [ 1.52988606 27.1551578 ]\n", + " [ 1.53135344 22.76872947]\n", + " [ 1.53282082 18.38230115]\n", + " [ 1.5342882 13.99587283]\n", + " [ 1.53575558 9.6094445 ]\n", + " [ 1.53722296 5.22301617]\n", + " [ 1.53869034 0.83658785]\n", + " [32.21905675 29.63935288]\n", + " [32.22085516 24.26335318]\n", + " [32.22265358 18.88735348]\n", + " [32.22445201 13.51135378]\n", + " [32.22625042 8.13535408]\n", + " [32.22804884 2.75935438]\n", + " [30.32092208 31.536218 ]\n", + " [24.94492239 31.53441959]\n", + " [19.56892269 31.53262117]\n", + " [14.19292299 31.53082275]\n", + " [ 8.81692329 31.52902433]\n", + " [ 3.44092359 31.52722592]\n", + " [30.33118372 0.86121972]\n", + " [24.95518401 0.8594213 ]\n", + " [19.57918431 0.85762288]\n", + " [14.20318461 0.85582447]\n", + " [ 8.82718492 0.85402605]\n", + " [ 3.45118522 0.85222763]\n", + " [ 1.54405846 29.62909125]\n", + " [ 1.54585688 24.25309155]\n", + " [ 1.5476553 18.87709186]\n", + " [ 1.54945372 13.50109216]\n", + " [ 1.55125214 8.12509246]\n", + " [ 1.55305055 2.74909275]\n", + " [32.21842198 31.53685277]\n", + " [32.21842198 31.53685277]\n", + " [ 1.55368532 0.85159287]\n", + " [ 1.55368532 0.85159287]\n", + " [30.32155685 29.63871811]\n", + " [24.94555716 29.6369197 ]\n", + " [19.56955746 29.63512128]\n", + " [14.19355776 29.63332286]\n", + " [ 8.81755806 29.63152443]\n", + " [ 3.44155836 29.62972602]\n", + " [30.32335527 24.26271841]\n", + " [24.94735557 24.26092 ]\n", + " [19.57135587 24.25912158]\n", + " [14.19535617 24.25732316]\n", + " [ 8.81935647 24.25552474]\n", + " [ 3.44335678 24.25372632]\n", + " [30.32515369 18.88671871]\n", + " [24.94915399 18.88492029]\n", + " [19.57315429 18.88312188]\n", + " [14.19715459 18.88132345]\n", + " [ 8.82115489 18.87952504]\n", + " [ 3.44515519 18.87772662]\n", + " [30.32695211 13.51071901]\n", + " [24.95095241 13.50892059]\n", + " [19.57495271 13.50712218]\n", + " [14.19895302 13.50532376]\n", + " [ 8.82295331 13.50352534]\n", + " [ 3.44695361 13.50172692]\n", + " [30.32875053 8.13471931]\n", + " [24.95275083 8.1329209 ]\n", + " [19.57675113 8.13112248]\n", + " [14.20075143 8.12932406]\n", + " [ 8.82475173 8.12752564]\n", + " [ 3.44875203 8.12572722]\n", + " [30.33054895 2.75871962]\n", + " [24.95454925 2.7569212 ]\n", + " [19.57854955 2.75512278]\n", + " [14.20254985 2.75332436]\n", + " [ 8.82655015 2.75152594]\n", + " [ 3.45055045 2.74972752]]\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "DEBUG:root:make_az_asym: xyp: shape: (96, 2)\n", + "DEBUG:root:radec2pix: xyfp: [[32.23341697 31.55185779]\n", + " [32.23488434 27.16542946]\n", + " [32.23635173 22.77900114]\n", + " [32.2378191 18.39257281]\n", + " [32.23928648 14.00614448]\n", + " [32.24075386 9.61971616]\n", + " [32.24222124 5.23328783]\n", + " [32.24368862 0.84685951]\n", + " [32.23341697 31.55185779]\n", + " [27.84698863 31.5503904 ]\n", + " [23.46056031 31.54892303]\n", + " [19.07413198 31.54745564]\n", + " [14.68770366 31.54598827]\n", + " [10.30127533 31.54452089]\n", + " [ 5.91484701 31.54305351]\n", + " [ 1.52841868 31.54158613]\n", + " [32.24368862 0.84685951]\n", + " [27.8572603 0.84539213]\n", + " [23.47083196 0.84392475]\n", + " [19.08440364 0.84245737]\n", + " [14.69797532 0.84098999]\n", + " [10.31154699 0.83952261]\n", + " [ 5.92511867 0.83805523]\n", + " [ 1.53869034 0.83658785]\n", + " [ 1.52841868 31.54158613]\n", + " [ 1.52988606 27.1551578 ]\n", + " [ 1.53135344 22.76872947]\n", + " [ 1.53282082 18.38230115]\n", + " [ 1.5342882 13.99587283]\n", + " [ 1.53575558 9.6094445 ]\n", + " [ 1.53722296 5.22301617]\n", + " [ 1.53869034 0.83658785]\n", + " [32.21905675 29.63935288]\n", + " [32.22085516 24.26335318]\n", + " [32.22265358 18.88735348]\n", + " [32.22445201 13.51135378]\n", + " [32.22625042 8.13535408]\n", + " [32.22804884 2.75935438]\n", + " [30.32092208 31.536218 ]\n", + " [24.94492239 31.53441959]\n", + " [19.56892269 31.53262117]\n", + " [14.19292299 31.53082275]\n", + " [ 8.81692329 31.52902433]\n", + " [ 3.44092359 31.52722592]\n", + " [30.33118372 0.86121972]\n", + " [24.95518401 0.8594213 ]\n", + " [19.57918431 0.85762288]\n", + " [14.20318461 0.85582447]\n", + " [ 8.82718492 0.85402605]\n", + " [ 3.45118522 0.85222763]\n", + " [ 1.54405846 29.62909125]\n", + " [ 1.54585688 24.25309155]\n", + " [ 1.5476553 18.87709186]\n", + " [ 1.54945372 13.50109216]\n", + " [ 1.55125214 8.12509246]\n", + " [ 1.55305055 2.74909275]\n", + " [32.21842198 31.53685277]\n", + " [32.21842198 31.53685277]\n", + " [ 1.55368532 0.85159287]\n", + " [ 1.55368532 0.85159287]\n", + " [30.32155685 29.63871811]\n", + " [24.94555716 29.6369197 ]\n", + " [19.56955746 29.63512128]\n", + " [14.19355776 29.63332286]\n", + " [ 8.81755806 29.63152443]\n", + " [ 3.44155836 29.62972602]\n", + " [30.32335527 24.26271841]\n", + " [24.94735557 24.26092 ]\n", + " [19.57135587 24.25912158]\n", + " [14.19535617 24.25732316]\n", + " [ 8.81935647 24.25552474]\n", + " [ 3.44335678 24.25372632]\n", + " [30.32515369 18.88671871]\n", + " [24.94915399 18.88492029]\n", + " [19.57315429 18.88312188]\n", + " [14.19715459 18.88132345]\n", + " [ 8.82115489 18.87952504]\n", + " [ 3.44515519 18.87772662]\n", + " [30.32695211 13.51071901]\n", + " [24.95095241 13.50892059]\n", + " [19.57495271 13.50712218]\n", + " [14.19895302 13.50532376]\n", + " [ 8.82295331 13.50352534]\n", + " [ 3.44695361 13.50172692]\n", + " [30.32875053 8.13471931]\n", + " [24.95275083 8.1329209 ]\n", + " [19.57675113 8.13112248]\n", + " [14.20075143 8.12932406]\n", + " [ 8.82475173 8.12752564]\n", + " [ 3.44875203 8.12572722]\n", + " [30.33054895 2.75871962]\n", + " [24.95454925 2.7569212 ]\n", + " [19.57854955 2.75512278]\n", + " [14.20254985 2.75332436]\n", + " [ 8.82655015 2.75152594]\n", + " [ 3.45055045 2.74972752]]\n", + "DEBUG:root:radec2pix: xyfp Shape: (96, 2)\n", + "DEBUG:root:mm_to_pix: fitpx: [[0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]]\n", + "DEBUG:root:mm_to_pix: fitpx.shape: (96, 2)\n", + "DEBUG:root:radec2pix: xyfp: [[32.23341697 31.55185779]\n", + " [32.23488434 27.16542946]\n", + " [32.23635173 22.77900114]\n", + " [32.2378191 18.39257281]\n", + " [32.23928648 14.00614448]\n", + " [32.24075386 9.61971616]\n", + " [32.24222124 5.23328783]\n", + " [32.24368862 0.84685951]\n", + " [32.23341697 31.55185779]\n", + " [27.84698863 31.5503904 ]\n", + " [23.46056031 31.54892303]\n", + " [19.07413198 31.54745564]\n", + " [14.68770366 31.54598827]\n", + " [10.30127533 31.54452089]\n", + " [ 5.91484701 31.54305351]\n", + " [ 1.52841868 31.54158613]\n", + " [32.24368862 0.84685951]\n", + " [27.8572603 0.84539213]\n", + " [23.47083196 0.84392475]\n", + " [19.08440364 0.84245737]\n", + " [14.69797532 0.84098999]\n", + " [10.31154699 0.83952261]\n", + " [ 5.92511867 0.83805523]\n", + " [ 1.53869034 0.83658785]\n", + " [ 1.52841868 31.54158613]\n", + " [ 1.52988606 27.1551578 ]\n", + " [ 1.53135344 22.76872947]\n", + " [ 1.53282082 18.38230115]\n", + " [ 1.5342882 13.99587283]\n", + " [ 1.53575558 9.6094445 ]\n", + " [ 1.53722296 5.22301617]\n", + " [ 1.53869034 0.83658785]\n", + " [32.21905675 29.63935288]\n", + " [32.22085516 24.26335318]\n", + " [32.22265358 18.88735348]\n", + " [32.22445201 13.51135378]\n", + " [32.22625042 8.13535408]\n", + " [32.22804884 2.75935438]\n", + " [30.32092208 31.536218 ]\n", + " [24.94492239 31.53441959]\n", + " [19.56892269 31.53262117]\n", + " [14.19292299 31.53082275]\n", + " [ 8.81692329 31.52902433]\n", + " [ 3.44092359 31.52722592]\n", + " [30.33118372 0.86121972]\n", + " [24.95518401 0.8594213 ]\n", + " [19.57918431 0.85762288]\n", + " [14.20318461 0.85582447]\n", + " [ 8.82718492 0.85402605]\n", + " [ 3.45118522 0.85222763]\n", + " [ 1.54405846 29.62909125]\n", + " [ 1.54585688 24.25309155]\n", + " [ 1.5476553 18.87709186]\n", + " [ 1.54945372 13.50109216]\n", + " [ 1.55125214 8.12509246]\n", + " [ 1.55305055 2.74909275]\n", + " [32.21842198 31.53685277]\n", + " [32.21842198 31.53685277]\n", + " [ 1.55368532 0.85159287]\n", + " [ 1.55368532 0.85159287]\n", + " [30.32155685 29.63871811]\n", + " [24.94555716 29.6369197 ]\n", + " [19.56955746 29.63512128]\n", + " [14.19355776 29.63332286]\n", + " [ 8.81755806 29.63152443]\n", + " [ 3.44155836 29.62972602]\n", + " [30.32335527 24.26271841]\n", + " [24.94735557 24.26092 ]\n", + " [19.57135587 24.25912158]\n", + " [14.19535617 24.25732316]\n", + " [ 8.81935647 24.25552474]\n", + " [ 3.44335678 24.25372632]\n", + " [30.32515369 18.88671871]\n", + " [24.94915399 18.88492029]\n", + " [19.57315429 18.88312188]\n", + " [14.19715459 18.88132345]\n", + " [ 8.82115489 18.87952504]\n", + " [ 3.44515519 18.87772662]\n", + " [30.32695211 13.51071901]\n", + " [24.95095241 13.50892059]\n", + " [19.57495271 13.50712218]\n", + " [14.19895302 13.50532376]\n", + " [ 8.82295331 13.50352534]\n", + " [ 3.44695361 13.50172692]\n", + " [30.32875053 8.13471931]\n", + " [24.95275083 8.1329209 ]\n", + " [19.57675113 8.13112248]\n", + " [14.20075143 8.12932406]\n", + " [ 8.82475173 8.12752564]\n", + " [ 3.44875203 8.12572722]\n", + " [30.33054895 2.75871962]\n", + " [24.95454925 2.7569212 ]\n", + " [19.57854955 2.75512278]\n", + " [14.20254985 2.75332436]\n", + " [ 8.82655015 2.75152594]\n", + " [ 3.45055045 2.74972752]]\n", + "DEBUG:root:radec2pix: ccdpx: [[-4.44999903e+01 -5.29438570e-01]\n", + " [-4.46956409e+01 2.91899068e+02]\n", + " [-4.48912917e+01 5.84327573e+02]\n", + " [-4.50869422e+01 8.76756079e+02]\n", + " [-4.52825928e+01 1.16918459e+03]\n", + " [-4.54782435e+01 1.46161309e+03]\n", + " [-4.56738940e+01 1.75404160e+03]\n", + " [-4.58695447e+01 2.04647010e+03]\n", + " [-4.44999903e+01 -5.29438570e-01]\n", + " [ 2.47928516e+02 -3.33787528e-01]\n", + " [ 5.40357022e+02 -1.38137179e-01]\n", + " [ 8.32785528e+02 5.75137653e-02]\n", + " [ 1.12521403e+03 2.53164260e-01]\n", + " [ 1.41764254e+03 4.48814526e-01]\n", + " [ 1.71007105e+03 6.44465469e-01]\n", + " [ 2.00249955e+03 8.40115823e-01]\n", + " [-4.58695447e+01 2.04647010e+03]\n", + " [ 2.46558961e+02 2.04666575e+03]\n", + " [ 5.38987468e+02 2.04686140e+03]\n", + " [ 8.31415973e+02 2.04705706e+03]\n", + " [ 1.12384448e+03 2.04725271e+03]\n", + " [ 1.41627299e+03 2.04744836e+03]\n", + " [ 1.70870149e+03 2.04764401e+03]\n", + " [ 2.00113000e+03 2.04783966e+03]\n", + " [ 2.00249955e+03 8.40115823e-01]\n", + " [ 2.00230390e+03 2.93268622e+02]\n", + " [ 2.00210825e+03 5.85697128e+02]\n", + " [ 2.00191260e+03 8.78125634e+02]\n", + " [ 2.00171695e+03 1.17055414e+03]\n", + " [ 2.00152130e+03 1.46298265e+03]\n", + " [ 2.00132565e+03 1.75541115e+03]\n", + " [ 2.00113000e+03 2.04783966e+03]\n", + " [-4.35852951e+01 1.26971202e+02]\n", + " [-4.38250837e+01 4.85371122e+02]\n", + " [-4.40648729e+01 8.43771042e+02]\n", + " [-4.43046624e+01 1.20217096e+03]\n", + " [-4.45444512e+01 1.56057088e+03]\n", + " [-4.47842401e+01 1.91897080e+03]\n", + " [ 8.29993125e+01 5.55866089e-01]\n", + " [ 4.41399232e+02 7.95654943e-01]\n", + " [ 7.99799152e+02 1.03544420e+00]\n", + " [ 1.15819907e+03 1.27523304e+00]\n", + " [ 1.51659899e+03 1.51502260e+00]\n", + " [ 1.87499891e+03 1.75481119e+00]\n", + " [ 8.16310956e+01 2.04555541e+03]\n", + " [ 4.40031016e+02 2.04579520e+03]\n", + " [ 7.98430936e+02 2.04603499e+03]\n", + " [ 1.15683086e+03 2.04627478e+03]\n", + " [ 1.51523077e+03 2.04651456e+03]\n", + " [ 1.87363069e+03 2.04675435e+03]\n", + " [ 2.00141425e+03 1.28339418e+02]\n", + " [ 2.00117446e+03 4.86739338e+02]\n", + " [ 2.00093467e+03 8.45139258e+02]\n", + " [ 2.00069488e+03 1.20353918e+03]\n", + " [ 2.00045509e+03 1.56193910e+03]\n", + " [ 2.00021530e+03 1.92033902e+03]\n", + " [-4.35006594e+01 4.71230439e-01]\n", + " [-4.35006594e+01 4.71230439e-01]\n", + " [ 2.00013067e+03 2.04683899e+03]\n", + " [ 2.00013067e+03 2.04683899e+03]\n", + " [ 8.29146770e+01 1.27055838e+02]\n", + " [ 4.41314596e+02 1.27295626e+02]\n", + " [ 7.99714516e+02 1.27535416e+02]\n", + " [ 1.15811444e+03 1.27775205e+02]\n", + " [ 1.51651436e+03 1.28014994e+02]\n", + " [ 1.87491428e+03 1.28254783e+02]\n", + " [ 8.26748876e+01 4.85455757e+02]\n", + " [ 4.41074807e+02 4.85695546e+02]\n", + " [ 7.99474727e+02 4.85935336e+02]\n", + " [ 1.15787465e+03 4.86175125e+02]\n", + " [ 1.51627457e+03 4.86414914e+02]\n", + " [ 1.87467449e+03 4.86654703e+02]\n", + " [ 8.24350988e+01 8.43855677e+02]\n", + " [ 4.40835018e+02 8.44095466e+02]\n", + " [ 7.99234938e+02 8.44335255e+02]\n", + " [ 1.15763486e+03 8.44575045e+02]\n", + " [ 1.51603478e+03 8.44814834e+02]\n", + " [ 1.87443470e+03 8.45054623e+02]\n", + " [ 8.21953094e+01 1.20225560e+03]\n", + " [ 4.40595230e+02 1.20249539e+03]\n", + " [ 7.98995149e+02 1.20273517e+03]\n", + " [ 1.15739507e+03 1.20297496e+03]\n", + " [ 1.51579499e+03 1.20321475e+03]\n", + " [ 1.87419491e+03 1.20345454e+03]\n", + " [ 8.19555204e+01 1.56065552e+03]\n", + " [ 4.40355440e+02 1.56089531e+03]\n", + " [ 7.98755360e+02 1.56113509e+03]\n", + " [ 1.15715528e+03 1.56137488e+03]\n", + " [ 1.51555520e+03 1.56161467e+03]\n", + " [ 1.87395512e+03 1.56185446e+03]\n", + " [ 8.17157311e+01 1.91905544e+03]\n", + " [ 4.40115651e+02 1.91929523e+03]\n", + " [ 7.98515571e+02 1.91953501e+03]\n", + " [ 1.15691549e+03 1.91977480e+03]\n", + " [ 1.51531541e+03 1.92001459e+03]\n", + " [ 1.87371533e+03 1.92025438e+03]]\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "DEBUG:root:radec2pix: fitpx: [[4271.49999033 4155.52943857]\n", + " [4271.69564086 3863.10093247]\n", + " [4271.89129172 3570.67242664]\n", + " [4272.08694219 3278.24392053]\n", + " [4272.28259279 2985.81541452]\n", + " [4272.47824349 2693.38690855]\n", + " [4272.67389398 2400.95840252]\n", + " [4272.86954466 2108.52989655]\n", + " [4271.49999033 4155.52943857]\n", + " [3979.07148397 4155.33378753]\n", + " [3686.64297824 4155.13813718]\n", + " [3394.21447207 4154.94248623]\n", + " [3101.7859662 4154.74683574]\n", + " [2809.35746035 4154.55118547]\n", + " [2516.92895428 4154.35553453]\n", + " [2224.50044832 4154.15988418]\n", + " [4272.86954466 2108.52989655]\n", + " [3980.44103867 2108.33424591]\n", + " [3688.0125323 2108.13859525]\n", + " [3395.58402663 2107.94294462]\n", + " [3103.15552063 2107.74729398]\n", + " [2810.72701489 2107.55164335]\n", + " [2518.29850873 2107.35599269]\n", + " [2225.87000294 2107.16034214]\n", + " [2224.50044832 4154.15988418]\n", + " [2224.69609895 3861.73137803]\n", + " [2224.89174957 3569.30287163]\n", + " [2225.0874002 3276.87436561]\n", + " [2225.28305088 2984.4458601 ]\n", + " [2225.47870155 2692.01735426]\n", + " [2225.67435209 2399.5888478 ]\n", + " [2225.87000294 2107.16034214]\n", + " [4270.58529507 4028.02879811]\n", + " [4270.82508372 3669.62887793]\n", + " [4271.06487288 3311.22895821]\n", + " [4271.30466241 2952.82903862]\n", + " [4271.54445121 2594.42911872]\n", + " [4271.78424015 2236.02919894]\n", + " [4144.00068749 4154.44413391]\n", + " [3785.60076796 4154.20434506]\n", + " [3427.20084809 4153.9645558 ]\n", + " [3068.80092846 4153.72476696]\n", + " [2710.40100852 4153.4849774 ]\n", + " [2352.00108885 4153.24518881]\n", + " [4145.36890441 2109.44459189]\n", + " [3786.96898415 2109.20480275]\n", + " [3428.56906432 2108.96501363]\n", + " [3070.16914448 2108.7252245 ]\n", + " [2711.76922506 2108.48543541]\n", + " [2353.36930551 2108.24564635]\n", + " [2225.58575253 4026.66058155]\n", + " [2225.82554163 3668.26066151]\n", + " [2226.06533079 3309.86074225]\n", + " [2226.30511991 2951.4608223 ]\n", + " [2226.544909 2593.06090231]\n", + " [2226.78469796 2234.66098228]\n", + " [4270.50065943 4154.52876956]\n", + " [4270.50065943 4154.52876956]\n", + " [2226.86933374 2108.16101101]\n", + " [2226.86933374 2108.16101101]\n", + " [4144.08532301 4027.94416236]\n", + " [3785.68540357 4027.70437363]\n", + " [3427.28548365 4027.46458437]\n", + " [3068.88556386 4027.2247953 ]\n", + " [2710.48564394 4026.98500583]\n", + " [2352.08572424 4026.74521712]\n", + " [4144.32511235 3669.54424278]\n", + " [3785.92519261 3669.30445372]\n", + " [3427.52527267 3669.06466445]\n", + " [3069.12535293 3668.82487539]\n", + " [2710.72543308 3668.58508612]\n", + " [2352.32551332 3668.34529698]\n", + " [4144.56490122 3311.14432282]\n", + " [3786.1649815 3310.90453373]\n", + " [3427.76506198 3310.66474484]\n", + " [3069.36514183 3310.4249553 ]\n", + " [2710.96522219 3310.18516633]\n", + " [2352.56530243 3309.94537718]\n", + " [4144.80469059 2952.74440318]\n", + " [3786.40477047 2952.50461389]\n", + " [3428.00485121 2952.26482509]\n", + " [3069.60493139 2952.02503601]\n", + " [2711.20501115 2951.78524634]\n", + " [2352.80509159 2951.5454576 ]\n", + " [4145.04447957 2594.34448334]\n", + " [3786.64455978 2594.10469422]\n", + " [3428.24464042 2593.86490527]\n", + " [3069.84472059 2593.62511618]\n", + " [2711.44480063 2593.38532701]\n", + " [2353.04488065 2593.14553764]\n", + " [4145.28426888 2235.94456358]\n", + " [3786.88434887 2235.70477444]\n", + " [3428.4844292 2235.46498533]\n", + " [3070.08450961 2235.22519625]\n", + " [2711.68458937 2234.98540701]\n", + " [2353.28466957 2234.74561777]]\n", + "DEBUG:root:fitpix2pix: ccdpx: shape: (96, 2)\n", + "DEBUG:root:fitpix2pix: visCut: True\n", + "DEBUG:root:radec2pix: curVec: [[ 0.46422488 -0.48431262 -0.74157707]\n", + " [ 0.47206223 -0.5031397 -0.72388376]\n", + " [ 0.47982924 -0.52189993 -0.70525482]\n", + " [ 0.48746659 -0.54050036 -0.68573733]\n", + " [ 0.49491826 -0.55885165 -0.66538766]\n", + " [ 0.50213387 -0.57686899 -0.64426993]\n", + " [ 0.5090697 -0.59447242 -0.62245529]\n", + " [ 0.51568896 -0.61158715 -0.60002171]\n", + " [ 0.46422488 -0.48431262 -0.74157707]\n", + " [ 0.48562849 -0.4683047 -0.7381434 ]\n", + " [ 0.50717666 -0.45170169 -0.73398734]\n", + " [ 0.52875681 -0.43454511 -0.72909998]\n", + " [ 0.55025857 -0.41688235 -0.7234809 ]\n", + " [ 0.57157666 -0.39876656 -0.71713691]\n", + " [ 0.59261215 -0.38025667 -0.71008148]\n", + " [ 0.61327282 -0.36141732 -0.70233465]\n", + " [ 0.51568896 -0.61158715 -0.60002171]\n", + " [ 0.53857278 -0.59630697 -0.59527922]\n", + " [ 0.56149396 -0.58023598 -0.58995825]\n", + " [ 0.58433429 -0.56341299 -0.58405415]\n", + " [ 0.60698333 -0.54588155 -0.5775678 ]\n", + " [ 0.62933654 -0.52769139 -0.57050619]\n", + " [ 0.65129367 -0.50889996 -0.5628831 ]\n", + " [ 0.67275852 -0.48957323 -0.55471977]\n", + " [ 0.61327282 -0.36141732 -0.70233465]\n", + " [ 0.62298303 -0.37998517 -0.68374222]\n", + " [ 0.63238744 -0.39861214 -0.66422473]\n", + " [ 0.64142004 -0.41720633 -0.64383166]\n", + " [ 0.65002225 -0.43568112 -0.6226179 ]\n", + " [ 0.65814212 -0.4539536 -0.60064555]\n", + " [ 0.66573397 -0.4719435 -0.57798582]\n", + " [ 0.67275852 -0.48957323 -0.55471977]\n", + " [ 0.46772015 -0.49246989 -0.73396953]\n", + " [ 0.47728716 -0.51551162 -0.7116493 ]\n", + " [ 0.48668921 -0.53836033 -0.68796931]\n", + " [ 0.49582161 -0.56084996 -0.6630296 ]\n", + " [ 0.50459169 -0.58282441 -0.63694814]\n", + " [ 0.51292186 -0.60413863 -0.60985874]\n", + " [ 0.47355937 -0.47747316 -0.74010871]\n", + " [ 0.49990441 -0.45744893 -0.73541557]\n", + " [ 0.52635462 -0.43657126 -0.72962755]\n", + " [ 0.55270564 -0.41492497 -0.72274044]\n", + " [ 0.5787638 -0.39260793 -0.71476673]\n", + " [ 0.60434974 -0.36973101 -0.70573392]\n", + " [ 0.52563171 -0.60496664 -0.59810256]\n", + " [ 0.55371839 -0.58570216 -0.59190279]\n", + " [ 0.58174287 -0.56528804 -0.58482875]\n", + " [ 0.60949866 -0.54380245 -0.57687978]\n", + " [ 0.6367931 -0.52133715 -0.56806878]\n", + " [ 0.66344326 -0.49800143 -0.55842423]\n", + " [ 0.61746935 -0.36956471 -0.69437276]\n", + " [ 0.62917257 -0.39237377 -0.67095805]\n", + " [ 0.64035017 -0.41517955 -0.64620244]\n", + " [ 0.65089124 -0.43782046 -0.62020468]\n", + " [ 0.66070012 -0.46014372 -0.59307934]\n", + " [ 0.66969534 -0.48200264 -0.5649616 ]\n", + " [ 0.46432456 -0.48432332 -0.74150767]\n", + " [ 0.46432456 -0.48432332 -0.74150767]\n", + " [ 0.67266305 -0.48958056 -0.55482907]\n", + " [ 0.67266305 -0.48958056 -0.55482907]\n", + " [ 0.4770194 -0.48563278 -0.73253894]\n", + " [ 0.50354045 -0.46563077 -0.72776026]\n", + " [ 0.53015368 -0.44475328 -0.72189446]\n", + " [ 0.55665267 -0.42308479 -0.71493851]\n", + " [ 0.58284311 -0.40072304 -0.7069052 ]\n", + " [ 0.60854536 -0.37777911 -0.69782196]\n", + " [ 0.48675408 -0.50871759 -0.71012455]\n", + " [ 0.51372893 -0.48879708 -0.70509574]\n", + " [ 0.54075847 -0.46794044 -0.69900788]\n", + " [ 0.56763328 -0.4462314 -0.69185981]\n", + " [ 0.59415868 -0.42376741 -0.68366413]\n", + " [ 0.62015483 -0.40066014 -0.6744475 ]\n", + " [ 0.4962987 -0.5316178 -0.68634548]\n", + " [ 0.52365529 -0.51180504 -0.68105854]\n", + " [ 0.55103119 -0.49099928 -0.67474761]\n", + " [ 0.57821686 -0.46928325 -0.66741178]\n", + " [ 0.60501846 -0.44675382 -0.65906273]\n", + " [ 0.63125589 -0.4235231 -0.64972624]\n", + " [ 0.50554653 -0.55416701 -0.66130298]\n", + " [ 0.53320965 -0.53448804 -0.65575147]\n", + " [ 0.56086132 -0.51376369 -0.64921602]\n", + " [ 0.58829319 -0.49207538 -0.64169536]\n", + " [ 0.61531229 -0.4695188 -0.6332005 ]\n", + " [ 0.6417379 -0.44620592 -0.62375696]\n", + " [ 0.51440426 -0.57620897 -0.63511533]\n", + " [ 0.54229831 -0.55668956 -0.62929269]\n", + " [ 0.57015567 -0.53607722 -0.62253011]\n", + " [ 0.59776922 -0.51445185 -0.6148262 ]\n", + " [ 0.62494651 -0.49190749 -0.60619212]\n", + " [ 0.6515058 -0.4685553 -0.5966541 ]\n", + " [ 0.52279419 -0.59759833 -0.6079165 ]\n", + " [ 0.55084388 -0.5782632 -0.60181616]\n", + " [ 0.57883711 -0.55779241 -0.5948237 ]\n", + " [ 0.60656739 -0.53626449 -0.58693815]\n", + " [ 0.63384217 -0.51377174 -0.57817186]\n", + " [ 0.66047881 -0.490424 -0.56855259]]\n", + "DEBUG:root:radec2pix: curVec Shape: (96, 3)\n", + "DEBUG:root:radec2pix: camVec: [[-0.20605921 -0.20787315 -0.20942436 -0.21070676 -0.21171698 -0.21245291\n", + " -0.21291301 -0.2130962 -0.20605921 -0.17962884 -0.15250018 -0.12477652\n", + " -0.0965659 -0.06797863 -0.03912632 -0.01012153 -0.2130962 -0.18573503\n", + " -0.15766321 -0.1289874 -0.09981355 -0.07024926 -0.04040619 -0.01040084\n", + " -0.01012153 -0.01020027 -0.01026637 -0.01031977 -0.01036027 -0.01038751\n", + " -0.01040113 -0.01040084 -0.20679239 -0.20883895 -0.21048459 -0.2117221\n", + " -0.21254753 -0.21295821 -0.1946339 -0.16175754 -0.12793421 -0.09336102\n", + " -0.05824097 -0.02277993 -0.20126076 -0.16723544 -0.13224882 -0.09649617\n", + " -0.06017591 -0.02349561 -0.01025713 -0.01034611 -0.01041588 -0.01046611\n", + " -0.01049618 -0.01050541 -0.20597676 -0.20597676 -0.01050361 -0.01050361\n", + " -0.19540403 -0.16239488 -0.12843557 -0.09372478 -0.05846599 -0.02286533\n", + " -0.19733483 -0.16399068 -0.1296908 -0.094636 -0.05902974 -0.02307851\n", + " -0.19888634 -0.16527244 -0.13070023 -0.09537003 -0.05948408 -0.02324907\n", + " -0.20005292 -0.16623701 -0.13146138 -0.09592455 -0.05982716 -0.0233762\n", + " -0.20083104 -0.16688094 -0.13197015 -0.09629527 -0.0600556 -0.02345845\n", + " -0.20121796 -0.16720058 -0.13222195 -0.09647752 -0.06016577 -0.02349426]\n", + " [-0.20169937 -0.17519485 -0.1480085 -0.12024402 -0.09200964 -0.06341581\n", + " -0.03457423 -0.00559748 -0.20169937 -0.20353396 -0.20511207 -0.20642749\n", + " -0.20747679 -0.20825778 -0.20876879 -0.20900854 -0.00559748 -0.00565735\n", + " -0.00571045 -0.00575671 -0.00579596 -0.00582797 -0.00585246 -0.00586919\n", + " -0.20900854 -0.18153487 -0.15336672 -0.12461057 -0.09537244 -0.06576046\n", + " -0.03588698 -0.00586919 -0.1902398 -0.15728353 -0.12340547 -0.08880315\n", + " -0.0536798 -0.01824146 -0.20244048 -0.20451655 -0.20620095 -0.20748634\n", + " -0.2083686 -0.2088448 -0.00572401 -0.00579384 -0.00585326 -0.00590199\n", + " -0.0059396 -0.00596558 -0.19712185 -0.16296958 -0.1278801 -0.09204872\n", + " -0.05567473 -0.01896706 -0.2016167 -0.2016167 -0.0059719 -0.0059719\n", + " -0.19101701 -0.19297429 -0.19456158 -0.19577312 -0.19660523 -0.1970549\n", + " -0.15792497 -0.15953875 -0.16084786 -0.1618491 -0.16253892 -0.16291334\n", + " -0.12390793 -0.1251726 -0.12620079 -0.12699006 -0.12753631 -0.1278347\n", + " -0.089165 -0.090077 -0.09082101 -0.09139481 -0.09179425 -0.09201449\n", + " -0.05389991 -0.05445583 -0.05491134 -0.05526476 -0.0555129 -0.05565213\n", + " -0.018319 -0.01851594 -0.01867909 -0.01880776 -0.01890068 -0.01895646]\n", + " [ 0.95752648 0.96233857 0.96655829 0.97012578 0.97299031 0.97511138\n", + " 0.97645925 0.97701519 0.95752648 0.96244865 0.96678474 0.97047334\n", + " 0.97346207 0.97570877 0.97718203 0.97786143 0.97701519 0.98258358\n", + " 0.98747643 0.99162952 0.99498928 0.99751244 0.9991662 0.99992869\n", + " 0.97786143 0.98333161 0.98811601 0.99215206 0.99538774 0.99778137\n", + " 0.99930173 0.99992869 0.95971127 0.96521924 0.96977695 0.97328709\n", + " 0.97567516 0.97689101 0.95975804 0.96540534 0.97011031 0.97377263\n", + " 0.97631476 0.97768345 0.97952098 0.98589996 0.99119927 0.99531586\n", + " 0.99817012 0.99970614 0.98032534 0.98657685 0.99173494 0.9956995\n", + " 0.99839379 0.99976492 0.95756163 0.95756163 0.999927 0.999927\n", + " 0.96194063 0.96767186 0.97244542 0.97616011 0.97873802 0.98012578\n", + " 0.96753226 0.97347545 0.97842131 0.98226722 0.98493482 0.98637043\n", + " 0.97215793 0.97827237 0.98335691 0.9873085 0.99004855 0.99152295\n", + " 0.97571944 0.98196303 0.98715219 0.99118387 0.99397914 0.99548324\n", + " 0.97814196 0.9844721 0.98973159 0.9938174 0.99665021 0.9981746\n", + " 0.97937518 0.98574902 0.99104412 0.99515745 0.99800944 0.99954423]]\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "DEBUG:root:radec2pix: camVec Shape: (3, 96)\n", + "DEBUG:root:cartToSphere: vec: [[-0.20605921 -0.20169937 0.95752648]\n", + " [-0.20787315 -0.17519485 0.96233857]\n", + " [-0.20942436 -0.1480085 0.96655829]\n", + " [-0.21070676 -0.12024402 0.97012578]\n", + " [-0.21171698 -0.09200964 0.97299031]\n", + " [-0.21245291 -0.06341581 0.97511138]\n", + " [-0.21291301 -0.03457423 0.97645925]\n", + " [-0.2130962 -0.00559748 0.97701519]\n", + " [-0.20605921 -0.20169937 0.95752648]\n", + " [-0.17962884 -0.20353396 0.96244865]\n", + " [-0.15250018 -0.20511207 0.96678474]\n", + " [-0.12477652 -0.20642749 0.97047334]\n", + " [-0.0965659 -0.20747679 0.97346207]\n", + " [-0.06797863 -0.20825778 0.97570877]\n", + " [-0.03912632 -0.20876879 0.97718203]\n", + " [-0.01012153 -0.20900854 0.97786143]\n", + " [-0.2130962 -0.00559748 0.97701519]\n", + " [-0.18573503 -0.00565735 0.98258358]\n", + " [-0.15766321 -0.00571045 0.98747643]\n", + " [-0.1289874 -0.00575671 0.99162952]\n", + " [-0.09981355 -0.00579596 0.99498928]\n", + " [-0.07024926 -0.00582797 0.99751244]\n", + " [-0.04040619 -0.00585246 0.9991662 ]\n", + " [-0.01040084 -0.00586919 0.99992869]\n", + " [-0.01012153 -0.20900854 0.97786143]\n", + " [-0.01020027 -0.18153487 0.98333161]\n", + " [-0.01026637 -0.15336672 0.98811601]\n", + " [-0.01031977 -0.12461057 0.99215206]\n", + " [-0.01036027 -0.09537244 0.99538774]\n", + " [-0.01038751 -0.06576046 0.99778137]\n", + " [-0.01040113 -0.03588698 0.99930173]\n", + " [-0.01040084 -0.00586919 0.99992869]\n", + " [-0.20679239 -0.1902398 0.95971127]\n", + " [-0.20883895 -0.15728353 0.96521924]\n", + " [-0.21048459 -0.12340547 0.96977695]\n", + " [-0.2117221 -0.08880315 0.97328709]\n", + " [-0.21254753 -0.0536798 0.97567516]\n", + " [-0.21295821 -0.01824146 0.97689101]\n", + " [-0.1946339 -0.20244048 0.95975804]\n", + " [-0.16175754 -0.20451655 0.96540534]\n", + " [-0.12793421 -0.20620095 0.97011031]\n", + " [-0.09336102 -0.20748634 0.97377263]\n", + " [-0.05824097 -0.2083686 0.97631476]\n", + " [-0.02277993 -0.2088448 0.97768345]\n", + " [-0.20126076 -0.00572401 0.97952098]\n", + " [-0.16723544 -0.00579384 0.98589996]\n", + " [-0.13224882 -0.00585326 0.99119927]\n", + " [-0.09649617 -0.00590199 0.99531586]\n", + " [-0.06017591 -0.0059396 0.99817012]\n", + " [-0.02349561 -0.00596558 0.99970614]\n", + " [-0.01025713 -0.19712185 0.98032534]\n", + " [-0.01034611 -0.16296958 0.98657685]\n", + " [-0.01041588 -0.1278801 0.99173494]\n", + " [-0.01046611 -0.09204872 0.9956995 ]\n", + " [-0.01049618 -0.05567473 0.99839379]\n", + " [-0.01050541 -0.01896706 0.99976492]\n", + " [-0.20597676 -0.2016167 0.95756163]\n", + " [-0.20597676 -0.2016167 0.95756163]\n", + " [-0.01050361 -0.0059719 0.999927 ]\n", + " [-0.01050361 -0.0059719 0.999927 ]\n", + " [-0.19540403 -0.19101701 0.96194063]\n", + " [-0.16239488 -0.19297429 0.96767186]\n", + " [-0.12843557 -0.19456158 0.97244542]\n", + " [-0.09372478 -0.19577312 0.97616011]\n", + " [-0.05846599 -0.19660523 0.97873802]\n", + " [-0.02286533 -0.1970549 0.98012578]\n", + " [-0.19733483 -0.15792497 0.96753226]\n", + " [-0.16399068 -0.15953875 0.97347545]\n", + " [-0.1296908 -0.16084786 0.97842131]\n", + " [-0.094636 -0.1618491 0.98226722]\n", + " [-0.05902974 -0.16253892 0.98493482]\n", + " [-0.02307851 -0.16291334 0.98637043]\n", + " [-0.19888634 -0.12390793 0.97215793]\n", + " [-0.16527244 -0.1251726 0.97827237]\n", + " [-0.13070023 -0.12620079 0.98335691]\n", + " [-0.09537003 -0.12699006 0.9873085 ]\n", + " [-0.05948408 -0.12753631 0.99004855]\n", + " [-0.02324907 -0.1278347 0.99152295]\n", + " [-0.20005292 -0.089165 0.97571944]\n", + " [-0.16623701 -0.090077 0.98196303]\n", + " [-0.13146138 -0.09082101 0.98715219]\n", + " [-0.09592455 -0.09139481 0.99118387]\n", + " [-0.05982716 -0.09179425 0.99397914]\n", + " [-0.0233762 -0.09201449 0.99548324]\n", + " [-0.20083104 -0.05389991 0.97814196]\n", + " [-0.16688094 -0.05445583 0.9844721 ]\n", + " [-0.13197015 -0.05491134 0.98973159]\n", + " [-0.09629527 -0.05526476 0.9938174 ]\n", + " [-0.0600556 -0.0555129 0.99665021]\n", + " [-0.02345845 -0.05565213 0.9981746 ]\n", + " [-0.20121796 -0.018319 0.97937518]\n", + " [-0.16720058 -0.01851594 0.98574902]\n", + " [-0.13222195 -0.01867909 0.99104412]\n", + " [-0.09647752 -0.01880776 0.99515745]\n", + " [-0.06016577 -0.01890068 0.99800944]\n", + " [-0.02349426 -0.01895646 0.99954423]]\n", + "DEBUG:root:radec2pix: lng: [224.38740491 220.12408621 215.2503637 209.71210534 203.48918374\n", + " 196.62002098 189.22355762 181.5046646 224.38740491 228.56999572\n", + " 233.3693139 238.84884696 245.04132431 251.92249978 259.38507008\n", + " 267.22753799 181.5046646 181.74464663 182.07430544 182.55541483\n", + " 183.32331288 184.74247093 188.24144189 209.436015 267.22753799\n", + " 266.78398778 266.170335 265.26578644 263.80029466 261.02373287\n", + " 253.83681058 209.436015 222.61267508 216.98461546 210.38276245\n", + " 202.75476399 194.17390418 184.89586052 226.12630502 231.65859743\n", + " 238.18310357 245.77405246 254.38382437 263.77502084 181.62909594\n", + " 181.98420755 182.53422407 183.50001953 185.63706132 194.24647314\n", + " 267.02133208 266.36745836 265.3435183 263.51322198 259.32352397\n", + " 241.01895217 224.38712569 224.38712569 209.62070535 209.62070535\n", + " 224.34955164 229.91816922 236.57007702 244.41761198 253.43870278\n", + " 263.38126527 218.66991645 224.21163124 231.12094806 239.6844282\n", + " 250.04034734 261.9370562 211.92326671 217.13924206 223.99660639\n", + " 233.09330633 244.99523074 259.69237756 204.0228705 208.45144372\n", + " 214.63892612 223.61475061 236.90559041 255.7456151 195.0232601\n", + " 198.0723045 202.59166286 209.85191686 222.74900651 247.14363581\n", + " 185.201902 186.31923819 188.04100537 191.03114261 197.43976942\n", + " 218.89848666]\n", + "DEBUG:root:radec2pix: lat: [73.24108038 74.22539246 75.14065481 75.95980834 76.6531185 77.19018187\n", + " 77.5432879 77.69182998 73.24108038 74.24861044 75.19133398 76.04212851\n", + " 76.77071823 77.34548632 77.73675519 77.92139244 77.69182998 79.29098794\n", + " 80.92271511 82.58149911 84.2618841 85.95783408 87.66008742 89.3157252\n", + " 77.92139244 79.52414159 81.15801466 82.81709844 84.49494889 86.18266378\n", + " 87.85870936 89.3157252 73.68081786 74.84436919 75.87765867 76.72697854\n", + " 77.33670031 77.65849826 73.69035695 74.88520803 75.9561532 76.84869716\n", + " 77.50496612 77.87275428 78.38454537 80.36704866 82.39295371 84.45217978\n", + " 86.53330534 88.61095022 78.61571107 80.60164359 82.62842612 84.684393\n", + " 86.75213987 88.75761015 73.24806584 73.24806584 89.30770045 89.30770045\n", + " 74.1417384 75.39152116 76.51854281 77.46407515 78.16380788 78.55793051\n", + " 75.35984123 76.77406669 78.07566348 79.19387762 80.04201199 80.52949342\n", + " 76.4480688 78.03443361 79.53211824 80.86193095 81.91012885 82.53435821\n", + " 77.34827857 79.10130772 80.80570953 82.38629346 83.70950064 84.55228195\n", + " 77.99844552 79.88985033 81.78208758 83.62548455 85.30897599 86.53756064\n", + " 78.34312947 80.31550148 82.32609465 84.35907996 86.38425999 88.27008044]\n", + "DEBUG:root:optics_fp: rtanth: [45.10526614 42.15252235 39.46728719 37.10767964 35.13935868 33.63109692\n", + " 32.64672024 32.23425998 45.10526614 42.08371704 39.32015966 36.87264817\n", + " 34.80791464 33.1974573 32.10970154 31.5986741 32.23425998 27.84962696\n", + " 23.46566508 19.08283694 14.70215645 10.32635724 5.96618932 1.74318313\n", + " 31.5986741 27.21812469 22.83983208 18.46540167 14.09842896 9.748941\n", + " 5.45889306 1.74318313 43.77728663 40.33061683 37.34259278 34.93111177\n", + " 33.22196043 32.3267303 43.74864122 40.21129183 37.11812392 34.58850978\n", + " 32.75328451 31.73315358 30.32290674 24.94961031 19.57779834 14.20915457\n", + " 8.84944693 3.53950567 29.68929466 24.32204857 18.9597634 13.60830488\n", + " 8.2886698 3.16557807 45.08405409 45.08405409 1.76362955 1.76362955\n", + " 42.40073703 38.740507 35.51948783 32.86706408 30.92986484 29.84747775\n", + " 38.83207862 34.7984872 31.1727741 28.11319496 25.82178089 24.5148885\n", + " 35.71891532 31.28650338 27.19655174 23.62757526 20.84885967 19.20651814\n", + " 33.18967076 28.36474267 23.77742123 19.59529652 16.13655116 13.95004204\n", + " 31.3858301 26.23117825 21.1868319 16.35517444 11.99601471 8.83853824\n", + " 30.43664187 25.08771711 19.753498 14.45027919 9.23164159 4.4089223 ]\n", + "DEBUG:root:optics_fp: cphi: [-0.71462647 -0.76465055 -0.81663789 -0.86852682 -0.91713533 -0.95822269\n", + " -0.98707045 -0.99965519 -0.71462647 -0.66170459 -0.59665476 -0.51729759\n", + " -0.42196448 -0.31030314 -0.18420747 -0.04836971 -0.99965519 -0.99953644\n", + " -0.99934473 -0.99900557 -0.99831831 -0.99657638 -0.98967281 -0.87090507\n", + " -0.04836971 -0.05610053 -0.06679051 -0.08253363 -0.10799424 -0.15602533\n", + " -0.27837409 -0.87090507 -0.73594733 -0.79879708 -0.86266587 -0.92216881\n", + " -0.96955698 -0.99635146 -0.69307094 -0.62034596 -0.5272064 -0.41033606\n", + " -0.26919173 -0.10843276 -0.99959581 -0.99940041 -0.99902199 -0.99813478\n", + " -0.99516407 -0.96924606 -0.05196415 -0.06335735 -0.0811815 -0.11297393\n", + " -0.18526317 -0.48452029 -0.71462988 -0.71462988 -0.86931637 -0.86931637\n", + " -0.71508845 -0.64388103 -0.55091667 -0.43180852 -0.28504096 -0.11526196\n", + " -0.78075859 -0.71676907 -0.62767848 -0.50476226 -0.34135833 -0.1402609\n", + " -0.84875703 -0.7971706 -0.71938094 -0.60051365 -0.4226937 -0.17893311\n", + " -0.91338303 -0.87922117 -0.82275039 -0.7239943 -0.54602022 -0.24622747\n", + " -0.96582068 -0.95066579 -0.92326613 -0.86731478 -0.73433428 -0.38842227\n", + " -0.99588139 -0.99392405 -0.99016821 -0.98152333 -0.95403253 -0.77825973]\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "DEBUG:root:optics_fp: sphi: [-0.69950626 -0.64444513 -0.57715037 -0.49564218 -0.39857594 -0.28602322\n", + " -0.16028704 -0.02625833 -0.69950626 -0.74976466 -0.80249804 -0.85580559\n", + " -0.90661236 -0.95063766 -0.98288738 -0.9988295 -0.02625833 -0.03044512\n", + " -0.03619555 -0.04458562 -0.05797023 -0.08267725 -0.1433448 -0.49145128\n", + " -0.9988295 -0.99842512 -0.99776702 -0.99658828 -0.99415152 -0.98775305\n", + " -0.96047273 -0.49145128 -0.67703879 -0.60160056 -0.50577425 -0.38678764\n", + " -0.24486582 -0.08534494 -0.72086938 -0.78432831 -0.84973726 -0.91193438\n", + " -0.96308661 -0.99410379 -0.02842926 -0.03462403 -0.04421613 -0.06104888\n", + " -0.09822663 -0.24609363 -0.99864895 -0.99799091 -0.99669933 -0.99359795\n", + " -0.98268894 -0.87478002 -0.69950278 -0.69950278 -0.49425605 -0.49425605\n", + " -0.69903398 -0.76512562 -0.83456026 -0.9019653 -0.95851534 -0.99333513\n", + " -0.6248328 -0.69731062 -0.77847269 -0.8632584 -0.93993324 -0.99011458\n", + " -0.52878304 -0.60375411 -0.69461576 -0.79961451 -0.90627261 -0.98386124\n", + " -0.40710127 -0.47641382 -0.56840284 -0.68980596 -0.837772 -0.96921207\n", + " -0.25921116 -0.31021694 -0.38416098 -0.49776006 -0.67878801 -0.92148149\n", + " -0.09066564 -0.11006805 -0.13988178 -0.19134252 -0.29970307 -0.6279425 ]\n", + "DEBUG:root:optics_fp: xyfp: [[32.23341696 31.55141621]\n", + " [32.23194958 27.16498788]\n", + " [32.2304822 22.77855956]\n", + " [32.22901483 18.39213124]\n", + " [32.22754745 14.00570291]\n", + " [32.22608007 9.61927458]\n", + " [32.22461269 5.23284626]\n", + " [32.2231453 0.84641793]\n", + " [32.23341696 31.55141621]\n", + " [27.84698864 31.5528836 ]\n", + " [23.46056031 31.55435097]\n", + " [19.07413198 31.55581835]\n", + " [14.68770366 31.55728573]\n", + " [10.30127533 31.55875311]\n", + " [ 5.91484701 31.56022049]\n", + " [ 1.52841868 31.56168787]\n", + " [32.2231453 0.84641793]\n", + " [27.83671698 0.84788531]\n", + " [23.45028865 0.84935269]\n", + " [19.06386033 0.85082007]\n", + " [14.677432 0.85228745]\n", + " [10.29100367 0.85375483]\n", + " [ 5.90457535 0.85522221]\n", + " [ 1.51814702 0.85668959]\n", + " [ 1.52841868 31.56168787]\n", + " [ 1.5269513 27.17525955]\n", + " [ 1.52548392 22.78883122]\n", + " [ 1.52401654 18.4024029 ]\n", + " [ 1.52254916 14.01597457]\n", + " [ 1.52108178 9.62954624]\n", + " [ 1.5196144 5.24311792]\n", + " [ 1.51814702 0.85668959]\n", + " [32.21777718 29.63892134]\n", + " [32.21597876 24.26292164]\n", + " [32.21418034 18.88692194]\n", + " [32.21238193 13.51092224]\n", + " [32.21058351 8.13492254]\n", + " [32.20878509 2.75892284]\n", + " [30.32091205 31.53705599]\n", + " [24.94491236 31.53885442]\n", + " [19.56891265 31.54065283]\n", + " [14.19291295 31.54245125]\n", + " [ 8.81691325 31.54424967]\n", + " [ 3.44091356 31.54604808]\n", + " [30.31065043 0.86205771]\n", + " [24.93465073 0.86385613]\n", + " [19.55865103 0.86565455]\n", + " [14.18265134 0.86745297]\n", + " [ 8.80665163 0.86925139]\n", + " [ 3.43065193 0.8710498 ]\n", + " [ 1.5427789 29.64918296]\n", + " [ 1.54098048 24.27318326]\n", + " [ 1.53918206 18.89718357]\n", + " [ 1.53738364 13.52118387]\n", + " [ 1.53558522 8.14518416]\n", + " [ 1.5337868 2.76918446]\n", + " [32.21841195 31.53642123]\n", + " [32.21841195 31.53642123]\n", + " [ 1.53315204 0.87168457]\n", + " [ 1.53315204 0.87168457]\n", + " [30.32027729 29.6395561 ]\n", + " [24.94427759 29.64135452]\n", + " [19.56827789 29.64315294]\n", + " [14.19227819 29.64495136]\n", + " [ 8.81627849 29.64674978]\n", + " [ 3.44027879 29.6485482 ]\n", + " [30.31847887 24.2635564 ]\n", + " [24.94247917 24.26535482]\n", + " [19.56647947 24.26715324]\n", + " [14.19047977 24.26895166]\n", + " [ 8.81448007 24.27075007]\n", + " [ 3.43848037 24.2725485 ]\n", + " [30.31668045 18.8875567 ]\n", + " [24.94068075 18.88935513]\n", + " [19.56468105 18.89115354]\n", + " [14.18868135 18.89295196]\n", + " [ 8.81268165 18.89475038]\n", + " [ 3.43668195 18.89654879]\n", + " [30.31488203 13.51155701]\n", + " [24.93888233 13.51335542]\n", + " [19.56288263 13.51515384]\n", + " [14.18688293 13.51695226]\n", + " [ 8.81088324 13.51875068]\n", + " [ 3.43488354 13.5205491 ]\n", + " [30.31308361 8.13555731]\n", + " [24.93708392 8.13735572]\n", + " [19.56108422 8.13915414]\n", + " [14.18508451 8.14095256]\n", + " [ 8.80908482 8.14275098]\n", + " [ 3.43308512 8.1445494 ]\n", + " [30.31128519 2.75955761]\n", + " [24.93528549 2.76135602]\n", + " [19.5592858 2.76315444]\n", + " [14.18328609 2.76495286]\n", + " [ 8.8072864 2.76675128]\n", + " [ 3.4312867 2.7685497 ]]\n", + "DEBUG:root:optics_fp: xyfp shape: (96, 2)\n", + "DEBUG:root:make_az_asym: xyp: [[32.23341696 31.55141621]\n", + " [32.23194958 27.16498788]\n", + " [32.2304822 22.77855956]\n", + " [32.22901483 18.39213124]\n", + " [32.22754745 14.00570291]\n", + " [32.22608007 9.61927458]\n", + " [32.22461269 5.23284626]\n", + " [32.2231453 0.84641793]\n", + " [32.23341696 31.55141621]\n", + " [27.84698864 31.5528836 ]\n", + " [23.46056031 31.55435097]\n", + " [19.07413198 31.55581835]\n", + " [14.68770366 31.55728573]\n", + " [10.30127533 31.55875311]\n", + " [ 5.91484701 31.56022049]\n", + " [ 1.52841868 31.56168787]\n", + " [32.2231453 0.84641793]\n", + " [27.83671698 0.84788531]\n", + " [23.45028865 0.84935269]\n", + " [19.06386033 0.85082007]\n", + " [14.677432 0.85228745]\n", + " [10.29100367 0.85375483]\n", + " [ 5.90457535 0.85522221]\n", + " [ 1.51814702 0.85668959]\n", + " [ 1.52841868 31.56168787]\n", + " [ 1.5269513 27.17525955]\n", + " [ 1.52548392 22.78883122]\n", + " [ 1.52401654 18.4024029 ]\n", + " [ 1.52254916 14.01597457]\n", + " [ 1.52108178 9.62954624]\n", + " [ 1.5196144 5.24311792]\n", + " [ 1.51814702 0.85668959]\n", + " [32.21777718 29.63892134]\n", + " [32.21597876 24.26292164]\n", + " [32.21418034 18.88692194]\n", + " [32.21238193 13.51092224]\n", + " [32.21058351 8.13492254]\n", + " [32.20878509 2.75892284]\n", + " [30.32091205 31.53705599]\n", + " [24.94491236 31.53885442]\n", + " [19.56891265 31.54065283]\n", + " [14.19291295 31.54245125]\n", + " [ 8.81691325 31.54424967]\n", + " [ 3.44091356 31.54604808]\n", + " [30.31065043 0.86205771]\n", + " [24.93465073 0.86385613]\n", + " [19.55865103 0.86565455]\n", + " [14.18265134 0.86745297]\n", + " [ 8.80665163 0.86925139]\n", + " [ 3.43065193 0.8710498 ]\n", + " [ 1.5427789 29.64918296]\n", + " [ 1.54098048 24.27318326]\n", + " [ 1.53918206 18.89718357]\n", + " [ 1.53738364 13.52118387]\n", + " [ 1.53558522 8.14518416]\n", + " [ 1.5337868 2.76918446]\n", + " [32.21841195 31.53642123]\n", + " [32.21841195 31.53642123]\n", + " [ 1.53315204 0.87168457]\n", + " [ 1.53315204 0.87168457]\n", + " [30.32027729 29.6395561 ]\n", + " [24.94427759 29.64135452]\n", + " [19.56827789 29.64315294]\n", + " [14.19227819 29.64495136]\n", + " [ 8.81627849 29.64674978]\n", + " [ 3.44027879 29.6485482 ]\n", + " [30.31847887 24.2635564 ]\n", + " [24.94247917 24.26535482]\n", + " [19.56647947 24.26715324]\n", + " [14.19047977 24.26895166]\n", + " [ 8.81448007 24.27075007]\n", + " [ 3.43848037 24.2725485 ]\n", + " [30.31668045 18.8875567 ]\n", + " [24.94068075 18.88935513]\n", + " [19.56468105 18.89115354]\n", + " [14.18868135 18.89295196]\n", + " [ 8.81268165 18.89475038]\n", + " [ 3.43668195 18.89654879]\n", + " [30.31488203 13.51155701]\n", + " [24.93888233 13.51335542]\n", + " [19.56288263 13.51515384]\n", + " [14.18688293 13.51695226]\n", + " [ 8.81088324 13.51875068]\n", + " [ 3.43488354 13.5205491 ]\n", + " [30.31308361 8.13555731]\n", + " [24.93708392 8.13735572]\n", + " [19.56108422 8.13915414]\n", + " [14.18508451 8.14095256]\n", + " [ 8.80908482 8.14275098]\n", + " [ 3.43308512 8.1445494 ]\n", + " [30.31128519 2.75955761]\n", + " [24.93528549 2.76135602]\n", + " [19.5592858 2.76315444]\n", + " [14.18328609 2.76495286]\n", + " [ 8.8072864 2.76675128]\n", + " [ 3.4312867 2.7685497 ]]\n", + "DEBUG:root:make_az_asym: xyp: shape: (96, 2)\n", + "DEBUG:root:radec2pix: xyfp: [[32.23341696 31.55141621]\n", + " [32.23194958 27.16498788]\n", + " [32.2304822 22.77855956]\n", + " [32.22901483 18.39213124]\n", + " [32.22754745 14.00570291]\n", + " [32.22608007 9.61927458]\n", + " [32.22461269 5.23284626]\n", + " [32.2231453 0.84641793]\n", + " [32.23341696 31.55141621]\n", + " [27.84698864 31.5528836 ]\n", + " [23.46056031 31.55435097]\n", + " [19.07413198 31.55581835]\n", + " [14.68770366 31.55728573]\n", + " [10.30127533 31.55875311]\n", + " [ 5.91484701 31.56022049]\n", + " [ 1.52841868 31.56168787]\n", + " [32.2231453 0.84641793]\n", + " [27.83671698 0.84788531]\n", + " [23.45028865 0.84935269]\n", + " [19.06386033 0.85082007]\n", + " [14.677432 0.85228745]\n", + " [10.29100367 0.85375483]\n", + " [ 5.90457535 0.85522221]\n", + " [ 1.51814702 0.85668959]\n", + " [ 1.52841868 31.56168787]\n", + " [ 1.5269513 27.17525955]\n", + " [ 1.52548392 22.78883122]\n", + " [ 1.52401654 18.4024029 ]\n", + " [ 1.52254916 14.01597457]\n", + " [ 1.52108178 9.62954624]\n", + " [ 1.5196144 5.24311792]\n", + " [ 1.51814702 0.85668959]\n", + " [32.21777718 29.63892134]\n", + " [32.21597876 24.26292164]\n", + " [32.21418034 18.88692194]\n", + " [32.21238193 13.51092224]\n", + " [32.21058351 8.13492254]\n", + " [32.20878509 2.75892284]\n", + " [30.32091205 31.53705599]\n", + " [24.94491236 31.53885442]\n", + " [19.56891265 31.54065283]\n", + " [14.19291295 31.54245125]\n", + " [ 8.81691325 31.54424967]\n", + " [ 3.44091356 31.54604808]\n", + " [30.31065043 0.86205771]\n", + " [24.93465073 0.86385613]\n", + " [19.55865103 0.86565455]\n", + " [14.18265134 0.86745297]\n", + " [ 8.80665163 0.86925139]\n", + " [ 3.43065193 0.8710498 ]\n", + " [ 1.5427789 29.64918296]\n", + " [ 1.54098048 24.27318326]\n", + " [ 1.53918206 18.89718357]\n", + " [ 1.53738364 13.52118387]\n", + " [ 1.53558522 8.14518416]\n", + " [ 1.5337868 2.76918446]\n", + " [32.21841195 31.53642123]\n", + " [32.21841195 31.53642123]\n", + " [ 1.53315204 0.87168457]\n", + " [ 1.53315204 0.87168457]\n", + " [30.32027729 29.6395561 ]\n", + " [24.94427759 29.64135452]\n", + " [19.56827789 29.64315294]\n", + " [14.19227819 29.64495136]\n", + " [ 8.81627849 29.64674978]\n", + " [ 3.44027879 29.6485482 ]\n", + " [30.31847887 24.2635564 ]\n", + " [24.94247917 24.26535482]\n", + " [19.56647947 24.26715324]\n", + " [14.19047977 24.26895166]\n", + " [ 8.81448007 24.27075007]\n", + " [ 3.43848037 24.2725485 ]\n", + " [30.31668045 18.8875567 ]\n", + " [24.94068075 18.88935513]\n", + " [19.56468105 18.89115354]\n", + " [14.18868135 18.89295196]\n", + " [ 8.81268165 18.89475038]\n", + " [ 3.43668195 18.89654879]\n", + " [30.31488203 13.51155701]\n", + " [24.93888233 13.51335542]\n", + " [19.56288263 13.51515384]\n", + " [14.18688293 13.51695226]\n", + " [ 8.81088324 13.51875068]\n", + " [ 3.43488354 13.5205491 ]\n", + " [30.31308361 8.13555731]\n", + " [24.93708392 8.13735572]\n", + " [19.56108422 8.13915414]\n", + " [14.18508451 8.14095256]\n", + " [ 8.80908482 8.14275098]\n", + " [ 3.43308512 8.1445494 ]\n", + " [30.31128519 2.75955761]\n", + " [24.93528549 2.76135602]\n", + " [19.5592858 2.76315444]\n", + " [14.18328609 2.76495286]\n", + " [ 8.8072864 2.76675128]\n", + " [ 3.4312867 2.7685497 ]]\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "DEBUG:root:radec2pix: xyfp Shape: (96, 2)\n", + "DEBUG:root:mm_to_pix: fitpx: [[0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]]\n", + "DEBUG:root:mm_to_pix: fitpx.shape: (96, 2)\n", + "DEBUG:root:radec2pix: xyfp: [[32.23341696 31.55141621]\n", + " [32.23194958 27.16498788]\n", + " [32.2304822 22.77855956]\n", + " [32.22901483 18.39213124]\n", + " [32.22754745 14.00570291]\n", + " [32.22608007 9.61927458]\n", + " [32.22461269 5.23284626]\n", + " [32.2231453 0.84641793]\n", + " [32.23341696 31.55141621]\n", + " [27.84698864 31.5528836 ]\n", + " [23.46056031 31.55435097]\n", + " [19.07413198 31.55581835]\n", + " [14.68770366 31.55728573]\n", + " [10.30127533 31.55875311]\n", + " [ 5.91484701 31.56022049]\n", + " [ 1.52841868 31.56168787]\n", + " [32.2231453 0.84641793]\n", + " [27.83671698 0.84788531]\n", + " [23.45028865 0.84935269]\n", + " [19.06386033 0.85082007]\n", + " [14.677432 0.85228745]\n", + " [10.29100367 0.85375483]\n", + " [ 5.90457535 0.85522221]\n", + " [ 1.51814702 0.85668959]\n", + " [ 1.52841868 31.56168787]\n", + " [ 1.5269513 27.17525955]\n", + " [ 1.52548392 22.78883122]\n", + " [ 1.52401654 18.4024029 ]\n", + " [ 1.52254916 14.01597457]\n", + " [ 1.52108178 9.62954624]\n", + " [ 1.5196144 5.24311792]\n", + " [ 1.51814702 0.85668959]\n", + " [32.21777718 29.63892134]\n", + " [32.21597876 24.26292164]\n", + " [32.21418034 18.88692194]\n", + " [32.21238193 13.51092224]\n", + " [32.21058351 8.13492254]\n", + " [32.20878509 2.75892284]\n", + " [30.32091205 31.53705599]\n", + " [24.94491236 31.53885442]\n", + " [19.56891265 31.54065283]\n", + " [14.19291295 31.54245125]\n", + " [ 8.81691325 31.54424967]\n", + " [ 3.44091356 31.54604808]\n", + " [30.31065043 0.86205771]\n", + " [24.93465073 0.86385613]\n", + " [19.55865103 0.86565455]\n", + " [14.18265134 0.86745297]\n", + " [ 8.80665163 0.86925139]\n", + " [ 3.43065193 0.8710498 ]\n", + " [ 1.5427789 29.64918296]\n", + " [ 1.54098048 24.27318326]\n", + " [ 1.53918206 18.89718357]\n", + " [ 1.53738364 13.52118387]\n", + " [ 1.53558522 8.14518416]\n", + " [ 1.5337868 2.76918446]\n", + " [32.21841195 31.53642123]\n", + " [32.21841195 31.53642123]\n", + " [ 1.53315204 0.87168457]\n", + " [ 1.53315204 0.87168457]\n", + " [30.32027729 29.6395561 ]\n", + " [24.94427759 29.64135452]\n", + " [19.56827789 29.64315294]\n", + " [14.19227819 29.64495136]\n", + " [ 8.81627849 29.64674978]\n", + " [ 3.44027879 29.6485482 ]\n", + " [30.31847887 24.2635564 ]\n", + " [24.94247917 24.26535482]\n", + " [19.56647947 24.26715324]\n", + " [14.19047977 24.26895166]\n", + " [ 8.81448007 24.27075007]\n", + " [ 3.43848037 24.2725485 ]\n", + " [30.31668045 18.8875567 ]\n", + " [24.94068075 18.88935513]\n", + " [19.56468105 18.89115354]\n", + " [14.18868135 18.89295196]\n", + " [ 8.81268165 18.89475038]\n", + " [ 3.43668195 18.89654879]\n", + " [30.31488203 13.51155701]\n", + " [24.93888233 13.51335542]\n", + " [19.56288263 13.51515384]\n", + " [14.18688293 13.51695226]\n", + " [ 8.81088324 13.51875068]\n", + " [ 3.43488354 13.5205491 ]\n", + " [30.31308361 8.13555731]\n", + " [24.93708392 8.13735572]\n", + " [19.56108422 8.13915414]\n", + " [14.18508451 8.14095256]\n", + " [ 8.80908482 8.14275098]\n", + " [ 3.43308512 8.1445494 ]\n", + " [30.31128519 2.75955761]\n", + " [24.93528549 2.76135602]\n", + " [19.5592858 2.76315444]\n", + " [14.18328609 2.76495286]\n", + " [ 8.8072864 2.76675128]\n", + " [ 3.4312867 2.7685497 ]]\n", + "DEBUG:root:radec2pix: ccdpx: [[-4.44999999e+01 -4.99999873e-01]\n", + " [-4.44999998e+01 2.91928572e+02]\n", + " [-4.44999998e+01 5.84357143e+02]\n", + " [-4.45000002e+01 8.76785714e+02]\n", + " [-4.45000003e+01 1.16921429e+03]\n", + " [-4.45000002e+01 1.46164286e+03]\n", + " [-4.45000002e+01 1.75407143e+03]\n", + " [-4.45000000e+01 2.04650000e+03]\n", + " [-4.44999999e+01 -4.99999873e-01]\n", + " [ 2.47928571e+02 -5.00000280e-01]\n", + " [ 5.40357143e+02 -5.00000000e-01]\n", + " [ 8.32785714e+02 -4.99999974e-01]\n", + " [ 1.12521429e+03 -4.99999987e-01]\n", + " [ 1.41764286e+03 -4.99999863e-01]\n", + " [ 1.71007143e+03 -5.00000138e-01]\n", + " [ 2.00250000e+03 -4.99999700e-01]\n", + " [-4.45000000e+01 2.04650000e+03]\n", + " [ 2.47928571e+02 2.04650000e+03]\n", + " [ 5.40357143e+02 2.04650000e+03]\n", + " [ 8.32785714e+02 2.04650000e+03]\n", + " [ 1.12521429e+03 2.04650000e+03]\n", + " [ 1.41764286e+03 2.04650000e+03]\n", + " [ 1.71007143e+03 2.04650000e+03]\n", + " [ 2.00250000e+03 2.04650000e+03]\n", + " [ 2.00250000e+03 -4.99999700e-01]\n", + " [ 2.00250000e+03 2.91928571e+02]\n", + " [ 2.00250000e+03 5.84357143e+02]\n", + " [ 2.00250000e+03 8.76785714e+02]\n", + " [ 2.00250000e+03 1.16921429e+03]\n", + " [ 2.00250000e+03 1.46164286e+03]\n", + " [ 2.00250000e+03 1.75407143e+03]\n", + " [ 2.00250000e+03 2.04650000e+03]\n", + " [-4.35000000e+01 1.27000000e+02]\n", + " [-4.35000002e+01 4.85400000e+02]\n", + " [-4.34999999e+01 8.43800000e+02]\n", + " [-4.35000003e+01 1.20220000e+03]\n", + " [-4.35000000e+01 1.56060000e+03]\n", + " [-4.35000001e+01 1.91900000e+03]\n", + " [ 8.30000001e+01 5.00000148e-01]\n", + " [ 4.41400000e+02 4.99999823e-01]\n", + " [ 7.99800000e+02 4.99999939e-01]\n", + " [ 1.15820000e+03 5.00000006e-01]\n", + " [ 1.51660000e+03 5.00000232e-01]\n", + " [ 1.87500000e+03 5.00000256e-01]\n", + " [ 8.29999998e+01 2.04550000e+03]\n", + " [ 4.41400000e+02 2.04550000e+03]\n", + " [ 7.99800000e+02 2.04550000e+03]\n", + " [ 1.15820000e+03 2.04550000e+03]\n", + " [ 1.51660000e+03 2.04550000e+03]\n", + " [ 1.87500000e+03 2.04550000e+03]\n", + " [ 2.00150000e+03 1.27000000e+02]\n", + " [ 2.00150000e+03 4.85400000e+02]\n", + " [ 2.00150000e+03 8.43800000e+02]\n", + " [ 2.00150000e+03 1.20220000e+03]\n", + " [ 2.00150000e+03 1.56060000e+03]\n", + " [ 2.00150000e+03 1.91900000e+03]\n", + " [-4.35000003e+01 4.99999725e-01]\n", + " [-4.35000003e+01 4.99999725e-01]\n", + " [ 2.00150000e+03 2.04550000e+03]\n", + " [ 2.00150000e+03 2.04550000e+03]\n", + " [ 8.30000000e+01 1.27000000e+02]\n", + " [ 4.41400000e+02 1.27000000e+02]\n", + " [ 7.99800000e+02 1.27000000e+02]\n", + " [ 1.15820000e+03 1.27000000e+02]\n", + " [ 1.51660000e+03 1.27000000e+02]\n", + " [ 1.87500000e+03 1.27000000e+02]\n", + " [ 8.30000001e+01 4.85400000e+02]\n", + " [ 4.41400000e+02 4.85400000e+02]\n", + " [ 7.99800000e+02 4.85400000e+02]\n", + " [ 1.15820000e+03 4.85400000e+02]\n", + " [ 1.51660000e+03 4.85400000e+02]\n", + " [ 1.87500000e+03 4.85400000e+02]\n", + " [ 8.30000001e+01 8.43800000e+02]\n", + " [ 4.41400000e+02 8.43800000e+02]\n", + " [ 7.99800000e+02 8.43800000e+02]\n", + " [ 1.15820000e+03 8.43800000e+02]\n", + " [ 1.51660000e+03 8.43800000e+02]\n", + " [ 1.87500000e+03 8.43800000e+02]\n", + " [ 8.29999999e+01 1.20220000e+03]\n", + " [ 4.41400000e+02 1.20220000e+03]\n", + " [ 7.99800000e+02 1.20220000e+03]\n", + " [ 1.15820000e+03 1.20220000e+03]\n", + " [ 1.51660000e+03 1.20220000e+03]\n", + " [ 1.87500000e+03 1.20220000e+03]\n", + " [ 8.30000000e+01 1.56060000e+03]\n", + " [ 4.41400000e+02 1.56060000e+03]\n", + " [ 7.99800000e+02 1.56060000e+03]\n", + " [ 1.15820000e+03 1.56060000e+03]\n", + " [ 1.51660000e+03 1.56060000e+03]\n", + " [ 1.87500000e+03 1.56060000e+03]\n", + " [ 8.30000003e+01 1.91900000e+03]\n", + " [ 4.41400000e+02 1.91900000e+03]\n", + " [ 7.99800000e+02 1.91900000e+03]\n", + " [ 1.15820000e+03 1.91900000e+03]\n", + " [ 1.51660000e+03 1.91900000e+03]\n", + " [ 1.87500000e+03 1.91900000e+03]]\n", + "DEBUG:root:radec2pix: fitpx: [[4271.49999987 4155.49999987]\n", + " [4271.49999978 3863.07142838]\n", + " [4271.49999978 3570.64285699]\n", + " [4271.50000021 3278.21428583]\n", + " [4271.50000028 2985.78571441]\n", + " [4271.50000021 2693.35714292]\n", + " [4271.50000016 2400.92857146]\n", + " [4271.5 2108.5 ]\n", + " [4271.49999987 4155.49999987]\n", + " [3979.07142882 4155.50000028]\n", + " [3686.64285714 4155.5 ]\n", + " [3394.2142857 4155.49999997]\n", + " [3101.78571428 4155.49999999]\n", + " [2809.35714281 4155.49999986]\n", + " [2516.92857145 4155.50000014]\n", + " [2224.49999999 4155.4999997 ]\n", + " [4271.5 2108.5 ]\n", + " [3979.0714288 2108.50000001]\n", + " [3686.64285693 2108.49999999]\n", + " [3394.21428614 2108.50000002]\n", + " [3101.7857146 2108.50000002]\n", + " [2809.35714263 2108.49999998]\n", + " [2516.92857131 2108.49999998]\n", + " [2224.49999992 2108.49999995]\n", + " [2224.49999999 4155.4999997 ]\n", + " [2224.50000001 3863.07142868]\n", + " [2224.5 3570.64285711]\n", + " [2224.50000002 3278.21428594]\n", + " [2224.50000001 2985.78571436]\n", + " [2224.49999998 2693.35714271]\n", + " [2224.50000001 2400.92857146]\n", + " [2224.49999992 2108.49999995]\n", + " [4270.5 4028. ]\n", + " [4270.50000018 3669.60000013]\n", + " [4270.49999988 3311.19999993]\n", + " [4270.50000028 2952.80000012]\n", + " [4270.5 2594.4 ]\n", + " [4270.50000006 2236.00000001]\n", + " [4143.99999986 4154.49999985]\n", + " [3785.60000014 4154.50000018]\n", + " [3427.20000004 4154.50000006]\n", + " [3068.8 4154.49999999]\n", + " [2710.39999994 4154.49999977]\n", + " [2351.99999997 4154.49999974]\n", + " [4144.00000019 2109.50000001]\n", + " [3785.59999998 2109.5 ]\n", + " [3427.19999968 2109.49999999]\n", + " [3068.80000035 2109.50000002]\n", + " [2710.39999998 2109.5 ]\n", + " [2351.99999973 2109.49999993]\n", + " [2225.50000001 4028.00000029]\n", + " [2225.50000001 3669.60000014]\n", + " [2225.50000002 3311.20000027]\n", + " [2225.50000003 2952.80000024]\n", + " [2225.49999999 2594.39999997]\n", + " [2225.49999991 2235.99999983]\n", + " [4270.50000028 4154.50000027]\n", + " [4270.50000028 4154.50000027]\n", + " [2225.50000021 2109.50000012]\n", + " [2225.50000021 2109.50000012]\n", + " [4143.99999997 4027.99999997]\n", + " [3785.60000006 4028.00000007]\n", + " [3427.20000002 4028.00000003]\n", + " [3068.8 4028.00000001]\n", + " [2710.40000007 4028.00000025]\n", + " [2352. 4028.00000001]\n", + " [4143.99999988 3669.5999999 ]\n", + " [3785.59999992 3669.59999992]\n", + " [3427.20000003 3669.60000003]\n", + " [3068.79999996 3669.59999994]\n", + " [2710.39999994 3669.59999984]\n", + " [2352.00000003 3669.60000024]\n", + " [4143.99999986 3311.19999992]\n", + " [3785.60000024 3311.20000018]\n", + " [3427.19999985 3311.19999985]\n", + " [3068.80000018 3311.20000023]\n", + " [2710.39999997 3311.19999993]\n", + " [2351.99999998 3311.19999989]\n", + " [4144.00000009 2952.80000004]\n", + " [3785.60000017 2952.80000009]\n", + " [3427.19999999 2952.79999999]\n", + " [3068.79999994 2952.79999994]\n", + " [2710.40000012 2952.80000019]\n", + " [2351.99999999 2952.79999997]\n", + " [4143.99999998 2594.4 ]\n", + " [3785.60000016 2594.40000005]\n", + " [3427.20000028 2594.40000012]\n", + " [3068.79999967 2594.39999981]\n", + " [2710.40000007 2594.40000006]\n", + " [2351.99999992 2594.39999981]\n", + " [4143.99999971 2235.99999997]\n", + " [3785.59999981 2235.99999998]\n", + " [3427.2 2236. ]\n", + " [3068.79999989 2235.99999998]\n", + " [2710.40000023 2236.00000007]\n", + " [2352.00000024 2236.00000019]]\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "DEBUG:root:fitpix2pix: ccdpx: shape: (96, 2)\n", + "DEBUG:root:fitpix2pix: visCut: True\n" + ] + } + ], + "source": [ + "def test_pix2radec_Offset_SectorCameraCCD(SectorCameraCCD):\n", + " Sector, Camera, CCD = SectorCameraCCD\n", + " \n", + " fprfile=\"/Users/tapritc2/tessgi/tesspoint/TESSPoint_CreateTestFiles/footprint_input.dat\"\n", + " footprint_df=pd.read_csv(fprfile,delimiter=' ',names=['tic','x','y'],index_col=False)\n", + "\n", + " pointing=TESSPoint(Sector,Camera,CCD)\n", + " \n", + " farr=np.array([footprint_df.x.to_numpy()-45,footprint_df.y.to_numpy()-1]).T\n", + " footprint_radec=pointing.pix2radec(farr)\n", + " \n", + " test_df = pd.DataFrame({'tic':footprint_df.tic.to_numpy(),\n", + " 'ra':footprint_radec[0],\n", + " 'dec':footprint_radec[1]})\n", + " test_df['index']=test_df['tic']\n", + " return test_df\n", + "\n", + "dir_testfiles='/Users/tapritc2/tessgi/tesspoint/TESSPoint_CreateTestFiles/testfiles'\n", + "wcsfile=dir_testfiles+\"/TEST_pix2radec_Sec{:02d}_Cam{}_CCD{}_stars2px.dat\".format(Sector,Camera,CCD)\n", + "\n", + "test_df = test_pix2radec_Offset_SectorCameraCCD(SectorCameraCCD)\n", + "\n", + "benchmark_df = pd.read_csv(wcsfile,delimiter=' ',names=['tic','ra','dec'],skiprows=1,index_col=False)\n", + "benchmark_df['index']=benchmark_df['tic']\n", + "\n", + "test_pix=test_radec2pix_df(test_df,SectorCameraCCD)\n", + "benchmarktest_pix=test_radec2pix_df(benchmark_df,SectorCameraCCD)" + ] + }, + { + "cell_type": "code", + "execution_count": 386, + "id": "8ba3510f", + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "-0.006667920544884964 0.002457900520528966\n", + "6.33546303561161e-05 0.00668114282093768\n", + "-0.6849963463736657 0.6551098898142818\n", + "9.540820670395078e-06 1.3401155229017148\n" + ] + } + ], + "source": [ + "idx = test_df.index.intersection(benchmark_df.index)\n", + "#for item in zip(test_df.loc[idx,'ra'], benchmark_df.loc[idx,'ra'], \n", + "# test_df.loc[idx,'dec'], benchmark_df.loc[idx,'dec'] ):\n", + "# print(item)\n", + "\n", + "print(np.median(test_df.loc[idx,'ra'] - benchmark_df.loc[idx,'ra']),\n", + " np.median(test_df.loc[idx,'dec'] - benchmark_df.loc[idx,'dec']) )\n", + "print(max(test_df.loc[idx,'ra'] - benchmark_df.loc[idx,'ra']),\n", + " max(test_df.loc[idx,'dec'] - benchmark_df.loc[idx,'dec']) )\n", + "\n", + "#for item in zip(test_pix.loc[idx,'index'],test_pix.loc[idx,'row'], benchmarktest_pix.loc[idx,'row'], \n", + "# test_pix.loc[idx,'col'], benchmarktest_pix.loc[idx,'col'] ):\n", + "# print(item)\n", + "\n", + "print(np.median(test_pix.loc[idx,'row'] - benchmarktest_pix.loc[idx,'row']),\n", + " np.median(test_pix.loc[idx,'col'] - benchmarktest_pix.loc[idx,'col']) )\n", + "print(max(test_pix.loc[idx,'row'] - benchmarktest_pix.loc[idx,'row']),\n", + " max(test_pix.loc[idx,'col'] - benchmarktest_pix.loc[idx,'col']) )" + ] + }, + { + "cell_type": "code", + "execution_count": 381, + "id": "0f8382f2", + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "[]" + ] + }, + "execution_count": 381, + "metadata": {}, + "output_type": "execute_result" + }, + { + "data": { + "image/png": "iVBORw0KGgoAAAANSUhEUgAAAjQAAAGdCAYAAAAFcOm4AAAAOXRFWHRTb2Z0d2FyZQBNYXRwbG90bGliIHZlcnNpb24zLjYuMCwgaHR0cHM6Ly9tYXRwbG90bGliLm9yZy89olMNAAAACXBIWXMAAA9hAAAPYQGoP6dpAAA+DklEQVR4nO3de3xU9YH///ckhAQCE8ABScitTUDuUAVDAJdSxWhRwK6PLpVqXdhQflupuotCbFdiS0ut2G8Lu+33J5tvqy3fqhVEKY0FRV0o4X4xgNIEhMQEEkJgJoFkQHK+f8QZGHIhk8ztzLyej8c8Qs45M/M5M5zMez5Xi2EYhgAAAEwsKtgFAAAA6CoCDQAAMD0CDQAAMD0CDQAAMD0CDQAAMD0CDQAAMD0CDQAAMD0CDQAAML1uwS5AVzU1NamyslK9e/eWxWIJdnEAAEAHGIahuro6JSUlKSqq6/Urpg80lZWVSklJCXYxAABAJ5SXlys5ObnLj2P6QNO7d29JzS+I1WoNcmkAAEBHOBwOpaSkuD/Hu8r0gcbVzGS1Wgk0AACYjK+6i9ApGAAAmB6BBgAAmB6BBgAAmB6BBgAAmB6BBgAAmB6BBgAAmB6BBgAAmB6BBgAAmB6BBgAAmB6BBgDQqiOVdv3T/1+kI5X2YBcFuCECDQCgVVs+qdZNn/5ZGf89TProjWAXB2gXgQYA0KrT9kZlRX+i2KYLUtn2YBcHaJfpF6cEAPjOkUq7/l5VL0n65LRDg7/Yfqzmgor3V2jIzb00PCkheAUE2kCgAQC4Pf3GR0qtfEdZ0Z/ofklToj+SJEUf3yJ7SY2Oxcdo+H0PSqMfDG5BgesQaAAAHn4WWyCrpcFjW3pUtdKj3pUuSdr4NwINQg6BBgDg9vMHR+vjvT+W7eweHT1dp+EXdys9qlr1PVNUNWCS+vSI0U3DvhrsYgItEGgAIIzUVJ5USeEqDb53oWxJaV7ff3hSgpSUKylXv32zWGf25Cs96l31Gn63et33C98XGPARv45ymjFjhlJTUxUXF6fExEQ9/PDDqqysbPXYs2fPKjk5WRaLRefPn/dnsQAgbJ0/U67s8tU6f6a8y4+VmBDngxIBgeHXQDN16lS9/vrrOnr0qNauXatjx47pwQdbb3edN2+eRo8e7c/iAAC8MHXoAJ213aYrMb2l1InBLg7QLr82OT355JPuf6elpWnJkiWaNWuWLl++rJiYGPe+3/zmNzp//ryeffZZFRYW+rNIABB2aipPumtkakt3u3+WfrG/T/+UTjc/DX/yGUnP+KikgP8ErA9NbW2t1qxZo4kTJ3qEmSNHjuhHP/qRdu7cqePHj9/wcZxOp5xOp/t3h8Phl/ICgFmUFK5Sdvlqj223F+dLxc3/LkrJlW3eisAXDAggv88UvHjxYsXHx+umm25SWVmZ3nrrLfc+p9Opb33rW3rhhReUmpraocdbvny5EhIS3LeUlBR/FR0ATGHwvQtV+sBGlT6wUbtG5UuSdo3Kd28bfO/C4BYQCACvA01+fr4sFku7tz179riPf+qpp7R//35t2rRJ0dHReuSRR2QYhiQpLy9Pw4YN07e//e0OP39eXp7sdrv7Vl7e9Y5vAGBmtqQ0ZY6ZrMwxk9Uvc7wkqV/mePe2zjQ3AWZjMVzpooNqampUU1PT7jHp6emKi2vZO/6zzz5TSkqKtm/fruzsbI0dO1bFxcWyWCySJMMw1NTUpOjoaP3gBz/Qc889d8PyOBwOJSQkyG63y2q1enMqABAwXR1O3VGlB7cp883pKn1gozLHTPbb8wBd5evPb6/70NhsNtlstk49mSs7ufrArF27Vg0NV2ej3L17t+bOnautW7cqIyOjU88BAKHINZy69MwsvwaaPv1TVJSSq8H9aY5HZPFbp+Bdu3Zp165dmjx5svr27avjx4/r2WefVUZGhrKzsyWpRWhx1fwMGzZMffr08VfRACBs2ZLS6ACMiOS3QNOjRw+tW7dOS5cu1YULF5SYmKh77rlHr776qmJjY/31tAAQMvw1nDoUVDsatX7rPs2Jfk/xk3Kl3gODXSREOK/70IQa+tAACFVFBYtaDKf22J+Sq2yT1qYcqrBr8X/+XhtjfyDN/1BKGhvsIsFkgt6HBgDQMYPvXajSM7MkNdfM3F6cr12j8t0jkejnAvgOgQYA/MSWlOZuUiqVpOKrw6nNqNrRqNqqMnW7WK2K6nqNjDohSar4eIcaztSrX8/u6jcwleYnBAWBBgDQIWt2lsny4XI90W2dMiXlfDHp+6Cti68eNGWJNDUvKOVDZCPQAIgYwezIGg7Dqedkpao2PU+lF+fpWHW9tnzwrp6PWa2KO55Xg23k1RoaIAgINAAiRnWdU29t26f5sSuk0fcHNNCEwnDqrk7uN8AapwHWIZKGqLHCrkNbmsdrDRo2gU7BCDq/r+UEAAgNrsn9XEPJgXBCDQ2AsEZHVv8Y0DtWMyffqgvRixTPa4cQQKABYCrVjkat2VmmOVmpGmBtuWbc9SK9I6u/JvcbYI3T/OkTJU30UUmBriHQADCV2qrmgFKbnvdFf472RXpH1pLCVS0m97u9OF8qbv53UUpu0Pv2AL5AoAFgKt0uVuuJbutUenGepBsHmkjvyMrkfogUBBoAIa/a0ajqOqckqaK6XpmSjlXXq7HCLqm5P0dHmp8iUbhN7ge0hUADIOSt37pPb23bJ0kaGXVCOTHSlg/edde2zJx86xf9OdpHR1YgfBFoAIS8OdHvNc8dc43nY672C7kQvUgd6Zwa6R1Zw2FyP6AtrLYNIPTVnW6+qXm49aCti1Vxx/PN/WCk5iHX1LgApsJq2wAizzWBpeFMffNP28iI6NQLoGOYKRiAqfTr2d3jJwBIBBoAJtNvYKo0ZUlYzx0DwHs0OQEwl94Dw3ZWXwCdRw0NALeaypMqKlikmsqTwS4KAHiFQANEqNbCC6sxAzArAg0QoQgvnqid8g9eVwQKfWiACHfxXJVKD26T5NvVmM3GFfBKz8yKiPMNFF5XBAqBBoggNZUn3TUyrvDStPMlZTbs8DiO1ZgBmA2BBoggJYWrlF2+2mPb2GvCzP4eE/SVhh0RsxpzawEvEmunfI3XFcHA0gdABLn+g+b24nyP8HLxfJVGvz9XpQ9sjIjVmIsKFrUIeB77U3KVTe2U13hd0REsfQCg02xJae5vxqWSVCz1yxzvDi+uvjSRYvC9C1V6Zpak1gNeONdO+ROvK4KBQAPALdJWY75RwEPn8LoiGAg0QIRqLbzYktLoAAzAlAg0QIQivHiKtNqpQOF1RaDQKRgAAAScrz+/mSkY6AJmQQWA0ECgATqItY8AIHQRaIAOIrwAQOiiUzDgpYvnWfsIAEINgQZoR2tTuF/ZwdpHABBqCDRAO1pb++gr14SZAz0maGwErH1UU3lSJYWrNPjehdQ+AQhJfu1DM2PGDKWmpiouLk6JiYl6+OGHVVlZ2eK43/3udxo9erTi4uI0cOBAPfbYY/4sFtBhg+9dqNIHNqr0gY3aNSpfkrRrVL57W1TWfElXZ0HNHDM5LD/w6T8EINT5tYZm6tSpeuaZZ5SYmKiKigotWrRIDz74oLZv3+4+5he/+IVefPFFvfDCC8rKylJjY6OOHz/uz2IBHcbaRwBgDn4NNE8++aT732lpaVqyZIlmzZqly5cvKyYmRufOndMPf/hDbdiwQXfeeaf72BEjRvizWIDPhPMsqK31H6LzM4BQFbA+NLW1tVqzZo0mTpyomJgYSdLmzZvV1NSkiooKDRs2THV1dZo4caJefPFFpaS0/gHhdDrldDrdvzscjoCUH4i0tY9a6z9E52cAocrv89AsXrxY8fHxuummm1RWVqa33nrLve/48eNqamrST3/6U/3yl7/UG2+8odraWk2bNk2XLl1q9fGWL1+uhIQE962t4ANzMcOMu7akNGXPWxExtRI36j80+N6FwS0gAFzD60CTn58vi8XS7m3Pnj3u45966int379fmzZtUnR0tB555BG5lo9qamrS5cuXtXLlSuXk5GjChAn64x//qJKSEr3//vutPn9eXp7sdrv7Vl5OJ8VwQKfT0GNLSnN3dHaN4Ar3zs8AzMvrJqfHHntMs2fPbveY9PR0979tNptsNpuGDBmiYcOGKSUlRTt27FB2drYSExMlScOHD3cf379/f9lsNpWVlbX62LGxsYqNjfW22AAAIIx5HWhcAaUzXDUzrj4wkyZNkiQdPXpUycnJkpr72tTU1CgtjW9/ZlLtaNT6rfs0J/o9xU/KlXoPvOF96HRqHuHc+RlAeLAYrpThY7t27dKuXbs0efJk9e3bV8ePH9ezzz6rU6dO6fDhw+5allmzZqm0tFQvvfSSrFar8vLydPz4cR04cMDdebg9vl5+HJ1zqMKuxf/5e22M/YE0/0MpaewN71NUsKhFp1OP/Sm5yqbTKQCEJV9/fvttlFOPHj20bt06LV26VBcuXFBiYqLuuecevfrqqx5NRq+88oqefPJJTZ8+XVFRUZoyZYreeeedDoUZmNvgexeq9MwsSc01M7cX54f9jLsA2saM1OgKvwWaUaNGacuWLTc8zmq1qqCgQAUFBf4qCvyk2tGo2qoydbtYrYrqeo2MOiFJqvh4hxrO1Ktfz+7qNzC1zeanG01aByCyuAYHlJ6ZRaCB11jLCZ22ZmeZLB8u1xPd1ilTUs4XlWqDti6+etCUJdLUvKCUDwAQOQg06LQ5WamqTc9T6cV5OlZdry0fvKvnY1ar4o7n1WAbebWGpgPM3OmUanKg8xgcAF8h0ISZQH64DrDGaYB1iKQhaqyw69CW5j9Bg4ZN6FCn4GuZecZdqsmBzmNGavgKgSbM8OEKwEwYHABfIdDAJwb0jtXMybfqQvQixXdgDhqzo5oc8E2NMIMD4CsEmjAQCh+uA6xxmj99oqSJfn2eUEE1OUCNMEILgSYM8OEaeFSTA75n5sEBCD4CTYB0ZmmAjuLDNfCoJkek8meNsJkHByD4CDQBUl3n1Fvb9ml+7App9P0+DTR8uAIIFGqEEaoINEAXUU2OSEKNMEIVgaYdxz7arsYNTyvu/p8rY7T3nV27ujRAZ/DhGnhUkyOSUCOMUEWgaUftiWKNv1ys3SeKOxVogrE0AB+uAMINs3GjIwg0fuTLpQEAINQEqkaY4eHoCALNdY59tF21J77o3Vb6nvvn7reb/9kvfVSHa2t8uTSAGflzZBeA4KNGGKGEQHOdxg1Pa/zlYo9t4x1/lfb9VZJ0uHiUNHpbMIpmOv4c2QUgvIXChKEwFwLNdeLu/7l2X1NDM97xV+225kiZd0pqrqHpjEhbGgAAuoLh4fAWgeY6GaMnupuUdr+t5pqZzDs1fsZ3u/S4kbI0QDBGdgEIPwwPh7cINPCpYIzsAhB+GB4ObxFo2tEvfZQOF4/qdDNTJGJkFwAgGAg07cgYPZEOwF6K9JFdAHyPCUPREVHBLgAAhJuaypMqKlikmsqTwS5KWLAlpSl73gpGNaFdBBr4jXtk14RFdAJGRHFNBOcadgzA/2hygt9EysguAEDwEWiCiPVJgPDBRHBAcBFogoj1SYDwwURwQHARaADAB5gIDgguAk2AUS0NhCcmggOCi0DjBV/0eaFaGgAA3yPQeMEXfV6olgbCHxPBAYFHoAkwqqWB8GdLSqOmFQgwAs0N0OcFAIDQR6C5AX/2eaFaGgAA37AYhmEEuxBd4XA4lJCQILvdLqvV6vPHv76G5vo+L9TQAADgPV9/flNDcwP0eQEAIPSxOCUAADA9Ao0XXH1e+tDnBeiUmsqTKipYpJrKk8EuCoAwQ6Dxgi0pTdnzVtBnBugk11xOrn5pAOArfg00M2bMUGpqquLi4pSYmKiHH35YlZWVHsfs3r1bd955p/r06aO+ffvq7rvv1oEDB/xZLAAAEGb8GmimTp2q119/XUePHtXatWt17NgxPfjgg+79dXV1ysnJUWpqqnbu3Klt27bJarUqJydHly9f9mfRAARITeVJlR7cptKD2zzncvpiG81PAHwhoMO23377bc2aNUtOp1MxMTHas2ePxo8fr7KyMqWkNPdLKS4u1ujRo1VaWqqMjIwbPqa/h20D6JqigkUt5nLy2J+Sq2xm1QUijmmHbdfW1mrNmjWaOHGiYmJiJEm33HKLbDabCgoK9Mwzz+jKlSsqKCjQiBEjlJbWej8Vp9Mpp9Pp/t3hcASk/AA6h/XLAASC3zsFL168WPHx8brppptUVlamt956y72vd+/e+uCDD/SHP/xBPXr0UK9evfTXv/5Vf/nLX9StW+tZa/ny5UpISHDfXDU7AEKTLSlNmWMmK3PMZHeIcc3llDlmMp3sAfiE14EmPz9fFoul3duePXvcxz/11FPav3+/Nm3apOjoaD3yyCNytXI1NDRo7ty5mjRpknbs2KG//e1vGjFihL7+9a+roaGh1efPy8uT3W5338rLGS0BAECk87oPTU1NjWpqato9Jj09XXFxcS22f/bZZ0pJSdH27duVnZ3tbmo6deqUoqKas9WlS5fUt29fFRQUaPbs2TcsD31oAPOoqTypksJVGnzvQmpmgAgX9D40NptNNputU0/myk6uPjAXL15UVFSULBaL+xjX701NTZ16DgChy5aU1unFXIHOqnY0as3OMs3JStUAa8sv2wgPfutDs2vXLv3nf/6nDhw4oJMnT+r999/XQw89pIyMDGVnZ0uSpk2bpnPnzul73/uePv74Yx0+fFj//M//rG7dumnq1Kn+KhoAIILUVpXJ8uFy1VaVBbso8CO/BZoePXpo3bp1uvPOO3XLLbdo7ty5GjlypD788EPFxsZKkoYOHaoNGzboo48+UnZ2tu644w5VVlbqnXfeUWJior+KBgCIIN0uVuuJbuvU7WJ1sIsCP/LbsO1Ro0Zpy5YtNzxu2rRpmjZtmr+KAQCIQNWORlXXNXdvqKiuV6akY9X1aqywS5IG9I6l+SnMBGwemnBGR0cACC3rt+7TW9v2SZJGRp1QToy05YN3dWhLqSRp5uRbNX/6xGAWET5GoPEB14J7pWdmEWjgNQIx4Htzot/T/FjPDujPx1ydsfpC9CJJBJpwwmrbQJCxAjXge/GTcqX5H0rzP1TFHc9Lkj4ZskCSVD71V837EVaooemkmsqT7g8gjwX3vtjfp38K37YBwEs+q7HsPbD5JqnhTL0kqa7XlyVJzj6Z7n0IHwSaTiopXNViwb3bi/Ol4uZ/F6XkMt8G2kQgBlrn6yb8msqTunz6E0lS1Nm/S+JaC1cEmk5iwT10BYEYCIxrr7XbTv63JK61cEWg6SRbUpo71ZdKUvHVBfeAGyEQA1f5s8aSay1yEGiAICAQA1f5s8aSay1yEGh8oE//FBWl5JL0AaATqEWBLxBofIAF99AVBGJEukDVonCthTcCDRBkBGIgMLjWwhsT6wEAQoarFqUPtSjwEjU0CEnVjkat37pPc6Lfa57Rk0mwgIhALQo6ixoahKTqOqfe2rZP8TtWSHWng10cAECII9AAAADTo8kJIaPa0ajaqjJ1u1itiup6jYw6IUmq+HiHGs7Uq1/P7uo3MJXmJwBACwQahIw1O8tk+XC5nui2TpmScmKatw/auvjqQVOWSFPzglI+AEDoItAgZMzJSlVtep5KL87Tsep6bfngXT0fs1oVdzyvBtvIqzU0AABch0CDkDHAGqcB1iGShqixwq5DW5pXchk0bIKUNDaoZQMAhDY6BQNAiKupPKmigkWqqTwZ7KIAIYtAg5A0oHesZk6+VRcmLKITMCLe+TPlyi5f7V6RGkBLNDkhJA2wxmn+9ImSJga7KAAAEyDQAEAIqqk86a6RqS3d7f5Z+sX+Pv1T3As6AiDQmA5LAgCRoaRwlbLLV3tsu704Xypu/ndRSi5LBADXINCYjGtJgPmxK6TR9xNogDA1+N6FKj0zS1JzzcztxfnaNSpf/TLHN+9n8UbAA4EGAEKQLSnN3aRUKknFUr/M8cocMzmo5QJCFYHGz2oqT6qkcJUG37uw0+3dLAkAAED7CDR+5hpuWXpmVqcDDUsCAJGtT/8UFaXk0swEtINAYwIsCQBENltSGh2AgRsg0PiBr4dbsiQAAADtI9D4AcMtAQAILAKNH/hzuKV7SYDoRYqnEzAAAJIINH7hz+GWLAkAAEBLLE4JAABMj0DjZ67hln0Ybgn4TLWjUS9t3K4L7/xYqjsd7OIACAEEGj+zJaUpe94KFpEDfMi1BEj8jhUEGgCSAhRonE6nxo4dK4vFogMHDnjsKysr0/3336/4+HjZbDZ9//vf16VLlwJRLAAAECYC0in46aefVlJSkg4ePOix/cqVK5o+fbr69++vbdu26ezZs/rOd74jwzC0atWqQBQNgEmwBAiA9vg90BQWFmrTpk1au3atCgsLPfZt2rRJR44cUXl5uZKSkiRJL774oh599FH95Cc/kdVq9XfxAJgES4AgVFQ7GrV+6z7NiX5P8ZNyCdEhwq+BpqqqSrm5uVq/fr169uzZYn9RUZFGjhzpDjOSlJOTI6fTqb1792rq1Kkt7uN0OuV0Ot2/OxwO/xTeT3yxWCUQiVgCBKHC1YdrfuwKafT9BJoQ4bc+NIZh6NFHH9WCBQs0bty4Vo85ffq0br75Zo9tffv2Vffu3XX6dOsd/ZYvX66EhAT3LSXFXKOHXItVupZGANAxA6xxGjp4iDLHTNag4dk61JQuqXkJkMwxk9Vv8O18sAARzOtAk5+fL4vF0u5tz549WrVqlRwOh/Ly2q/+tVgsLbYZhtHqdknKy8uT3W5338rLCQYAAP+qdjTqk5K/q/TgNlUcKfLow1V6cJtqS3Yx4i7IvG5yeuyxxzR79ux2j0lPT9eyZcu0Y8cOxcbGeuwbN26c5syZo5dfflkDBw7Uzp07PfafO3dOly9fblFz4xIbG9viMUOdrxerBCIdS4Ag0OjDFfoshmEY/njgsrIyj/4tlZWVysnJ0RtvvKGsrCwlJyersLBQ9913nz777DMlJiZKkl577TV95zvfUXV1dYc6BTscDiUkJMhut4dsJ+KigkUtFqv02J+Sq2wWqwSAkHXtKLtr+3D96vIDejzmTdnv/bUSht9Js6cXfP357bdOwampnp3zevXqJUnKyMhQcnKyJOnuu+/W8OHD9fDDD+uFF15QbW2tFi1apNzc3JANJ53hz8UqAQD+N8AapwHWIZKGqLHCrkNbmuvYjxnNX8YTUkYQZoIsqItTRkdHa+PGjfrXf/1XTZo0ST169NBDDz2kFSvCq7bCn4tVAgACp9rRqPKyT5VhqZAkZVgqJTEfUigIWKBJT09Xa61bqamp+vOf/xyoYgAA0GnNfWl+pZXd10mSHo9ZL4m+NKEgqDU0kci1WCXNTPClakej1uws05ysVA2wxgW7OEDYYj6k0EWgCTBbUppsdACGj1XXOfV/39ulOQ1rpKn/H9XdwHV8NbtvW31pBg2bICWN9V2B4TVW2wbCxADLeQ3Y90vmwgBawQrt4Y8aGsCkqh2Nqq5rXgbkUIXdvb30TL0aDbsG9I6l+QnwI+ZDCi0EGsCk1uws0/99b5cGWM5Lknvm0tWvr9ehpgN66PZUzbmL5QAQufy9QvsAa5zmT58oaaLvCo1O89vEeoFihon1AH+odjRKHyxvbmZqC6MtEMH+1+a/u2f3bRPXSND4+vObQAOYWd1pqe60Ss/Ua/Xr6/V8zGrp/pVS4pjm/b0HUkODiNXW7L4tRiRxjQSFaWYKBhAAXwSWRsOuQ00HmrcljmG0BSBGJEUaRjkBYWBA71g9dDtzXwCIXNTQAGFggDWuuQNwnyVUnwOtYERS+KMPDQAACDhff37T5AQAAEyPQIOwVO1o1Esbt+vCOz9mVlAAiAAEGoQlpjkHgMhCoAEAAKbHKCeEDX9Pcw4ACF0EGoSNNTvL3NOcZ0rKiWnePmjr4qsHMc05AIQlAg3CxpysVNWm56n04rz2pzkHAIQdAg3CBtOcAx1XU3lSJYWrNPjehbIlpQW7OECX0SkYACLQ+TPlyi5frfNnyoNdFMAnqKFBWGKacwCILAQahKUB1jjNnz5R0sRgFwUIGTWVJ901MrWlu90/S7/Y36d/Cs1PMC0CTQShzRyIbCWFq5Rdvtpj2+3F+VJx87+LUnJlm7ci8AUDfIBAE0FcbealZ2YRaIAINPjehSo9M0tSc83M7cX52jUqX/0yxzfv758SxNIBXUOgAYAIYUtKc3+ZKZWkYqlf5nhljpkc1HIBvkCgCVG+ah6izRwAEAkINCHKV81DtJkDaE2f/ikqSsmlmQlhg0AT5mgzB9AaW1IaX2ZCRLWjUWt2lmlOVqoGWOOCXRzTItCEEH80D9FmDgChrbaqeR262vS8L2Y7R2cQaEIIzUMAEHm6XazWE93WqfTiPEkEms4i0ISQ1pqH9veYoOgJ89Wzz81dbh6izRwAQkO1o1HVdU5JUkV1vTIlHauuV2OFXVLzbOc0P3mHQBNCWmse+krDDpX2+Q+fNBHRZg4AoWH91n16a9s+SdLIqBPKiZG2fPCue1HdmZNv/WK2c3QUgQYAgACbE/2e5sd6fsF8PuZql4ML0YvE0i3eIdCEGFfH4IvnqnSgxwSNbdjBvDGAn7EsCAItflKuNPp+SVLFxzs0aOtiVdzxvAYNm9C8n0V1vUagCTF0DAYCj2VBEHC9BzbfJDWcqW/+aRspJY0NYqHMjUATYpg3BgAiS7+e3T1+onMCEmicTqeysrJ08OBB7d+/X2PHjpUkHTx4UD/72c+0bds21dTUKD09XQsWLNDjjz8eiGKFJOaNAQKDZUEQKvoNTJWmLGn+iU4LSKB5+umnlZSUpIMHD3ps37t3r/r3768//OEPSklJ0fbt2zV//nxFR0frscceC0TRAEQomncRMnoPlKbmBbsUpuf3QFNYWKhNmzZp7dq1Kiws9Ng3d+5cj9+//OUvq6ioSOvWrSPQiHljAH+ieRcIL34NNFVVVcrNzdX69evVs2fPDt3HbrerX79+be53Op1yOp3u3x0OR5fLGaqYNwbwH5p3gfAS5a8HNgxDjz76qBYsWKBx48Z16D5FRUV6/fXX9d3vfrfNY5YvX66EhAT3LSWFb1EAgPBTU3lSRQWLVFN5MthFMQWvA01+fr4sFku7tz179mjVqlVyOBzKy+tYu+Dhw4c1c+ZMPfvss5o2bVqbx+Xl5clut7tv5eXl3p4CAHhwNe/2oZkJIcQ1nYCr8zraZzEMw/DmDjU1NaqpqWn3mPT0dM2ePVsbNmyQxWJxb79y5Yqio6M1Z84cvfzyy+7tR44c0dSpU/Uv//Iv+slPfuLVCTgcDiUkJMhut8tqtXp1XwAAQlXpwW3KfHO6Sh/YGJZNob7+/Pa6D43NZpPNZrvhcStXrtSyZcvcv1dWVionJ0evvfaasrKy3NsPHz6sr33ta/rOd77jdZgBACCcMJ1A5/mtU3Bqqud4+l69ekmSMjIylJycLKk5zEydOlV33323/u3f/k2nT5+WJEVHR6t///7+KhoAACGJ6QQ6L6gzBf/pT3/SmTNntGbNGq1Zs8a9PS0tTSdOnAhewQAACAKmE+g8r/vQhBr60AAAgs0fC5zSh8Y7fhu2DcCcGCoKeI8RScFHoAHggT/MQGhgOgHvsNo2AACd4O8RScwW7x0CDQCGigKdwIik0EKgAcAfZqATGJEUWgg0APjDDHQCC5yGFgINAP4wAzA9RjkBANBFjEgKPmpoAHhw/WGmmQnoOEYkBR+BBoAH/jADMCOanAAAgOkRaIA2sAQAAJgHgQZoA0sAAIB5EGgAAIDp0SkYuAZLAACAORFogGuwBAAAmBOBBrgGSwAAXVNTeVIlhas0+N6F1GYGQSS//gQa4BosAQB0jaszfemZWRH3gRoKIvn1p1MwAAAwPWpogDawBADQMXSmDy5e/2YWwzCMYBeiKxwOhxISEmS322W1WoNdnKCK5LZTAMFTVLCoRWd6j/0pucqmM73fmPX19/XnNzU0YcSfbaeEJQBtoTN9cPH6NyPQoEMiuaMZgPbRmT64eP2bEWhMjrZTAAAINKbnz4ngCEsAvEVn+uCK5NefTsEmd33ouL04X0WD5iq74v9o960/15fG3dPp0GHWjmYAgNBHp2B4aK3ttNvNQ6UKqW/aiC7VoNDRDABgFgSaMFFTeVLnTh6WJH1e9YmkrjcP0dEMAGAWBJowcW1fmuyK/yOJRRUBAJGDQBMm/N08FMkdzQAAoY9AEyb83TxkS0qjhgcAELJYnBIAAJgegSYMuZqH+tA8BARNTeVJFRUsUk3lyWAXBYgIBJowZEtKU/a8FUx6BwSRa7kQ1zxRAPyLQAMAAEyPTsEA4CMsFwIED4EGAHzEn2urAb5WU3lSJYWrNPjehWERtAPS5OR0OjV27FhZLBYdOHCg1WPOnj2r5ORkWSwWnT9/PhDFAgCfGnzvQpU+sFGlD2zUrlH5kqRdo/Ld2wbfuzC4BQSuEW79vAJSQ/P0008rKSlJBw8ebPOYefPmafTo0aqoqAhEkQDA51guBAgevweawsJCbdq0SWvXrlVhYWGrx/zmN7/R+fPn9eyzz7Z5DAAA6Jpw7ufl10BTVVWl3NxcrV+/Xj179mz1mCNHjuhHP/qRdu7cqePHj9/wMZ1Op5xOp/t3h8Phs/ICgK+wXAhCUTj38/JboDEMQ48++qgWLFigcePG6cSJEy2OcTqd+ta3vqUXXnhBqampHQo0y5cv13PPPeeHEgOA77BcCEKRv9f9CyavOwXn5+fLYrG0e9uzZ49WrVolh8OhvLy8Nh8rLy9Pw4YN07e//e0OP39eXp7sdrv7Vl4eHp2ZAADwN1tSmjLHTFbmmMnuEOPq55U5ZrJpm5skyWIYhuHNHWpqalRTU9PuMenp6Zo9e7Y2bNggi8Xi3n7lyhVFR0drzpw5evnllzV27FgVFxe7jzEMQ01NTYqOjtYPfvCDDtXEOBwOJSQkyG63y2q1enMqAACYgj+GWJce3KbMN6er9IGNQem47uvPb6+bnGw2m2w22w2PW7lypZYtW+b+vbKyUjk5OXrttdeUlZUlSVq7dq0aGhrcx+zevVtz587V1q1blZGR4W3RAAAIS64h1qVnZvks0IRbPy+/9aFJTU31+L1Xr16SpIyMDCUnJ7v/fS1Xzc+wYcPUp08ffxUNQICE28RdQDgJt35ezBQMwG/88a0SiBThPMTaHwIWaNLT03Wj7jpf/epXb3gMAACRIJyHWPsDNTQAfIpvlYBvhPMQa38g0ADwKb5VAr7BUhreIdAA8Cm+VQIIBgINAJ/iWyXge8EaYn2k0q7frn1b+TG/V/zMFVLi6IA+vzcINAAAhLhgDbH+e1W9nKeOKL77TunMJyEdaLxe+gAAOsr1rbIPzUwA/IwaGgB+E24TdwGR4EilXaf/vke9HaWqO+XQP0Q19+gv2/1nVZ04p8SEWCUPuTXkamsINAAAwO25DUf0ZMUzGh/1icZL7qSQWv6WUsvfav7l+CTpn/8SrCK2ikADAADclt4/XKf//lPtdpTqk1MO9Sj/UA9226qylJmq6j/pag1NiCHQRDjW2vE/XmMAZjI8KUHDk+6UdKcq9ldoy8laPaitSh1/n1JHfzPYxWsTnYIjnGutHdfMrvA9XmMA/lbtaNRLG7frwjs/lupOB7s4QUGgAQDA5KrrnHpr2z7F71jh00Az5OZeik0crgsDs6T+Q332uP5Ak1MEYq0d/+M1BnyP5tvAG56UoBcWPizp4WAX5YYINBGItXb8j9cY8D1X823pmVkEGjU3M9VWlanbxWpVVNdrZNQJSVLFxzvUcKZe/Xp2V7+BqVLvgcEtaIAQaCIQa+34H68xAH9bs7NMlg+X64lu65QpKSemefugrYuvHjRliTQ1LyjlCzQCTQRirR3/4zUGfIPm27bNyUpVbXqeSi/O07Hqem354F09H7NaFXc8rwbbyKs1NBGCQAMACFk037ZtgDVOA6xDJA1RY4Vdh7Y0x7xBwyZISWODWrZgINBEuGCt4BpJeI2BzqP5Fh1FoIlwgVxrJ1JHKLCeEdB5Zm2+DfTfuwG9YzVz8q26EL1I8RHSCfh6zEODgGGCOQCRItB/7wZY4zR/+kTF3/MfETOq6XoEGgCAKbiab/vQzIRW0OSEFnxZVcoIBQC+EurNt/y9Cy4CDVrw5eRVjFAAECn4exdcBBr4FSMUAEQK/t4FF4EGkvxXVWrWEQoA4C3+3gUXgQaSqCoFAJgbgQaSAlNVygRzACIFf+8Cz2IYhhHsQnSFw+FQQkKC7Ha7rFZrsIsTFkoPblPmm9NV+sBGqkoBmEqkTuBpRr7+/GYeGgAwkZrKkyoqWKSaypPBLkpIYgLPyEWgQQtMXgWELj6wgdbRhwYthPrkVQBwLSa0g0SgAYCQxwd2+xilCYlAAwAhLxI+sLvSmZcJ7SARaAAg5EXCB3ZXllxhQjtIBBoACHl8YAM3RqABAASFP/oGMaFd5ArIsG2n06mxY8fKYrHowIEDLfb/7ne/0+jRoxUXF6eBAwfqscceC0SxAMB0wmlahZLCVcp8c7oy35ze3CdIzX2DXNtKCld5/Zi2pDRlz1sR0Z2kI1VAamiefvppJSUl6eDBgy32/eIXv9CLL76oF154QVlZWWpsbNTx48cDUSwAMJ1wmlYhEvoGIXD8HmgKCwu1adMmrV27VoWFhR77zp07px/+8IfasGGD7rzzTvf2ESNG+LtYAIAgo28QfMmvTU5VVVXKzc3V73//e/Xs2bPF/s2bN6upqUkVFRUaNmyYkpOT9c1vflPl5W3PgOl0OuVwODxuAAAgsvkt0BiGoUcffVQLFizQuHHjWj3m+PHjampq0k9/+lP98pe/1BtvvKHa2lpNmzZNly5davU+y5cvV0JCgvuWkkKVJACYXTj1DUJweB1o8vPzZbFY2r3t2bNHq1atksPhUF5eXpuP1dTUpMuXL2vlypXKycnRhAkT9Mc//lElJSV6//33W71PXl6e7Ha7+9ZebQ6A8MPijOGJzrzoKq/70Dz22GOaPXt2u8ekp6dr2bJl2rFjh2JjYz32jRs3TnPmzNHLL7+sxMRESdLw4cPd+/v37y+bzaaysrJWHzs2NrbFYwKIHF2ZgA1A+PI60NhsNtlsthset3LlSi1btsz9e2VlpXJycvTaa68pKytLkjRp0iRJ0tGjR5WcnCxJqq2tVU1NjdLS+EMFAN7qyhICgJn5bZRTamqqx++9evWSJGVkZLjDy5AhQzRz5kw9/vjjeumll2S1WpWXl6ehQ4dq6tSp/ioaAJNhccaW2gou1GAhUgV9puBXXnlFTz75pKZPn66oqChNmTJF77zzjmJiYoJdNLSDb4EIpEhYnNFbBBfAU8ACTXp6ugzDaLHdarWqoKBABQUFgSoKfIA/pggkJmBrHzVYQAjU0ADAjTABW7O2gsvZD/63ss5t8Dg20muwEHkINOgwvgUCwdVm09sXdva9X5bk26jBQkQi0KDD6MeAUBDJqynfqOkto39K85eOCK3BQmQj0KDD6MeAUBBOizN6qyNNb65aVCDSEGjQYfRjAEJfJNdgIbIRaADAhNoKLpFcg4XI5tfVthG+WEguOFjHCC6sfQR4ItCgU/hjGhyu+X/oJwEAngg0AMIeNVtA+KMPDRDimP+n46odjVqzs0xzslI1wBrn3s7M1kD4I9AAIY75fzqutqpMlg+XqzY9TwOsQ4JdHAABRKABQhzz/3Rct4vVeqLbOpVenKeaylhqtoAIQqABQhzz/7Sv2tGo6jqnJKmiul6Zko5V1yv6b/9Ld1X/1uNYaraA8EWgAWBq67fu01vb9kmSRkadUE6MtOWDd1XRNEBvW/5VY4Z8WaN611OzBYQ5Ag1gIswC29Kc6Pc0P9azpuX5mKt9ji4MXKRTiVOp2QLCHIEGplJTeVIlhas0+N6FEdn/gVlgW4qflCuNvl+SVPHxDg3aulgVdzyvQcMmNO/vPVA6XtreQwAIAwQamArDb9FC74HNN0kNZ+qbf9pGSklj3Yf06e+kZgsIcwQaAGGjX8/uHj9dqNkCwh+BBn7hy6YhJpYLLDM36/UbmCpNWdL8E0BEIdDAL3zZNMTEcoFl6ma93gOlqXnBLgWAICDQIOQxsRwA4EYINPAZfzUNMbFcx3SlqYhmPQBmR6CBz9A0FFxdaSrivQNgdgQa+EwgmoaYWM4/aNYDYHYEGvhMIJqGGH7ryVdNRTTrATA7Ag1gYjQVAUAzAg38gqahwPBHUxHvHQAzshiGYQS7EF3hcDiUkJAgu90uq9Ua7OIgwoTSJHSlB7cp883pKn1gI01FAEKerz+/o3xQJiBiuUYWufqxAACCg0ADhAlXU1EfmooARCD60CBsVDsatWZnmeZkpWqANc5vzxOqk9AxAgxAJCPQIGzUVpXJ8uFy1abnaYB1iN+eh5FFABB6CDQIG90uVuuJbutUenGeJP8FGiahA4DQQ6BBQO3+82rdsvs/dHT8jzX+vtwuP161o1HVdU5JUkV1vTIlHauuV2OFXZI0oHesz5ufmIQOAEIPgQYB9fnxv8lqadDnx/8mqeuBZv3WfXpr2z5J0sioE8qJkbZ88K4ObWnu0TJz8q2aP31il58HABDaCDQwtTnR72l+rGd/ledjrvZvuRC9SJL/Ag2T0AFAaAjIxHpOp1NZWVk6ePCg9u/fr7Fjx7r37d69W0uWLNHevXtlsVg0fvx4/fznP/c4pj1MrBf6dv959Rc1MlJK7XYlq0qf6WaV92sOGt2+PKnzzU91p5tvkio+3qFBWxer4o7nNWjYhOb9vQc23wAAIcXXn98BqaF5+umnlZSUpIMHD3psr6urU05OjmbOnKlf//rX+vzzz7V06VLl5OTos88+U0xMTCCKBz+7Zfd/yGpp8NiWrCol174pSXKcfUfqbKC5JrA0nKlv/mkbKSWN7XR5AQDm4/dAU1hYqE2bNmnt2rUqLCz02Hf06FGdO3dOP/rRj5SS0lxlv3TpUo0ePVplZWXKyMjwd/EQAEfH//jGNTQ+eJ5+Pbt7/AQARA6/Bpqqqirl5uZq/fr16tmzZ4v9t9xyi2w2mwoKCvTMM8/oypUrKigo0IgRI5SWFtx1ceA7zc1JzTUwRSsfVXLtmyrvN1HZ3/+dT5+n38BUacqS5p8AgIjit6UPDMPQo48+qgULFmjcuHGtHtO7d2998MEH+sMf/qAePXqoV69e+utf/6q//OUv6tat9azldDrlcDg8boCk5qanqXn0mQGACOR1oMnPz5fFYmn3tmfPHq1atUoOh0N5eXltPlZDQ4Pmzp2rSZMmaceOHfrb3/6mESNG6Otf/7oaGhpavc/y5cuVkJDgvrmaqmAO3b48SQ6jh7p9eVKwiwIACCNej3KqqalRTU1Nu8ekp6dr9uzZ2rBhgywWi3v7lStXFB0drTlz5ujll192NzWdOnVKUVHN2erSpUvq27evCgoKNHv27BaP7XQ65XQ63b87HA6lpKQwygkAABMJ+ignm80mm812w+NWrlypZcuWuX+vrKxUTk6OXnvtNWVlZUmSLl68qKioKI/Q4/q9qamp1ceNjY1VbGyst8UGAABhzG+dglNTPTtm9urVS5KUkZGh5ORkSdK0adP01FNP6Xvf+54WLlyopqYm/exnP1O3bt00depUfxUNAACEGb91Cu6IoUOHasOGDfroo4+UnZ2tO+64Q5WVlXrnnXeUmJgYzKIBAAATCchMwf7ETMEAAJiPrz+/g1pDAwAA4AsEGgAAYHoEGgAAYHoEGgAAYHoEGgAAYHoEGgAAYHp+XW07EFyjzlmkEgAA83B9bvtq9hjTB5q6ujpJYpFKAABMqK6uTgkJCV1+HNNPrNfU1KTKykr17t3bY02oznItdlleXh7WE/VxnuElUs5Tipxz5TzDC+fZkmEYqqurU1JSknuB6q4wfQ1NVFSUe20oX7JarWH9n86F8wwvkXKeUuScK+cZXjhPT76omXGhUzAAADA9Ag0AADA9As11YmNjtXTpUsXGxga7KH7FeYaXSDlPKXLOlfMML5yn/5m+UzAAAAA1NAAAwPQINAAAwPQINAAAwPQINAAAwPTCJtD85je/0ejRo92T+WRnZ6uwsNC9f926dcrJyZHNZpPFYtGBAwdaPIbT6dTChQtls9kUHx+vGTNm6LPPPrvhc//617/Wl770JcXFxem2227T1q1bfXlqHrp6nrW1tVq4cKFuueUW9ezZU6mpqfr+978vu93e7vPm5+fLYrF43AYOHOiPU5Tkm/fzq1/9aosyz549+4bPbab388SJEy3O0XX705/+1ObzBvr9lNo/18uXL2vx4sUaNWqU4uPjlZSUpEceeUSVlZUej2H2a7Qj5xkO12hH30+zX6MdOc9wuUZdZRo6dKji4+PVt29f3XXXXdq5c6fHYwT1GjXCxNtvv21s3LjROHr0qHH06FHjmWeeMWJiYoxDhw4ZhmEYr7zyivHcc88Zq1evNiQZ+/fvb/EYCxYsMAYNGmRs3rzZ2LdvnzF16lRjzJgxxueff97m87766qtGTEyMsXr1auPIkSPG448/bsTHxxsnT54MyfMsLi42vvGNbxhvv/22UVpaarz33nvG4MGDjX/8x39s93mXLl1qjBgxwjh16pT7Vl1d7ZdzNAzfvJ9TpkwxcnNzPcp8/vz5dp/XbO/n559/7nF+p06dMp577jkjPj7eqKura/N5A/1+Gkb753r+/HnjrrvuMl577TXjk08+MYqKioysrCzjtttu83gMs1+jHTnPcLhGO/p+mv0a7ch5hss1ahiGsWbNGmPz5s3GsWPHjEOHDhnz5s0zrFarR7mCeY2GTaBpTd++fY3//u//9tj26aeftvrBcP78eSMmJsZ49dVX3dsqKiqMqKgo45133mnzOW6//XZjwYIFHtuGDh1qLFmypOsn0EHenGdrXn/9daN79+7G5cuX2zxm6dKlxpgxY7pY0q7x9jynTJliPP744149Rzi8n2PHjjXmzp3b7jGh8H4aRuvn6rJr1y5DkvuPWrhdoy7Xn2drzHyNurR2nuF0jbp05P0Ml2vUbrcbkox3333XMIzgX6Nh0+R0rStXrujVV1/VhQsXlJ2d3aH77N27V5cvX9bdd9/t3paUlKSRI0dq+/btrd7n0qVL2rt3r8d9JOnuu+9u8z6+1JnzbI3dbpfValW3bu0v7VVSUqKkpCR96Utf0uzZs3X8+PFOP6c3unKea9askc1m04gRI7Ro0SL36uytCYf3c+/evTpw4IDmzZt3w2OD9X5KHTtXu90ui8WiPn36SArfa/T682zrGLNfo22dZ7hdozd6P8PlGr106ZJeeuklJSQkaMyYMZKCf42afnHKaxUXFys7O1uNjY3q1auX3nzzTQ0fPrxD9z19+rS6d++uvn37emy/+eabdfr06VbvU1NToytXrujmm2/u8H18oSvneb2zZ8/qxz/+sb773e+2e1xWVpZeeeUVDRkyRFVVVVq2bJkmTpyow4cP66abburUc99IV89zzpw5+tKXvqSBAwfq0KFDysvL08GDB7V58+ZWjw+H97OgoEDDhg3TxIkT2z0uGO+n1PFzbWxs1JIlS/TQQw+5F7gLx2u0tfO8Xjhco22dZ7hdox15P81+jf75z3/W7NmzdfHiRSUmJmrz5s2y2WySQuAa9ao+J8Q5nU6jpKTE2L17t7FkyRLDZrMZhw8f9jimrar7NWvWGN27d2/xmHfddZfx3e9+t9Xnq6ioMCQZ27dv99i+bNky45ZbbunaybSjK+d5LbvdbmRlZRn33HOPcenSJa/KUF9fb9x8883Giy++2JlT6BBfnafLnj17DEnG3r17W91v9vfz4sWLRkJCgrFixQqvyxCI99MwOnauly5dMmbOnGl85StfMex2u3t7uF2jbZ3ntcLhGu3IebqY+RrtyHmGwzVaX19vlJSUGEVFRcbcuXON9PR0o6qqyjCM4F+jYdXk1L17d2VmZmrcuHFavny5xowZo1/96lcduu/AgQN16dIlnTt3zmN7dXV1i+ToYrPZFB0d3SJFtncfX+jKebrU1dXpnnvucSfwmJgYr+4fHx+vUaNGqaSkxKv7ecMX53mtW2+9VTExMW2W2czvpyS98cYbunjxoh555BGv7xuI91O68blevnxZ3/zmN/Xpp59q8+bNHt9yw+kabe88XcLhGu3IeV7LrNdoR88zHK7R+Ph4ZWZmasKECSooKFC3bt1UUFAgKfjXaFgFmusZhiGn09mhY2+77TbFxMR4VHWeOnVKhw4darNqsHv37rrttttaVI9u3rz5htWJvuTNeUqSw+HQ3Xffre7du+vtt99WXFyc18/pdDr18ccfKzEx0ev7dpa353m9w4cP6/Lly22W2azvp0tBQYFmzJih/v37e33fYLyfkue5uj4USkpK9O6777aoVg+Xa/RG5ymFxzXakfO8nhmvUW/O0+zX6I32B/0a9ao+J4Tl5eUZ//M//2N8+umnxkcffWQ888wzRlRUlLFp0ybDMAzj7Nmzxv79+42NGzcakoxXX33V2L9/v3Hq1Cn3YyxYsMBITk423n33XWPfvn3G1772tRbDzb72ta8Zq1atcv/uGm5WUFBgHDlyxHjiiSeM+Ph448SJEyF5ng6Hw8jKyjJGjRpllJaWegwJbO88//3f/9344IMPjOPHjxs7duww7rvvPqN3794he56lpaXGc889Z+zevdv49NNPjY0bNxpDhw41vvKVr4TV++lSUlJiWCwWo7CwsNXnCfb7eaNzvXz5sjFjxgwjOTnZOHDggMf/S6fT6X4Ms1+jHTnPcLhGO3Ke4XCNdvT/rWGY/xqtr6838vLyjKKiIuPEiRPG3r17jXnz5hmxsbHuYd2GEdxrNGwCzdy5c420tDSje/fuRv/+/Y0777zT/aFgGIbx29/+1pDU4rZ06VL3MQ0NDcZjjz1m9OvXz+jRo4dx3333GWVlZR7Pk5aW5nEfwzCM//qv/3I/96233mp8+OGHIXue77//fqv7JRmffvppm+f5T//0T0ZiYqIRExNjJCUlGd/4xjdatCGH0nmWlZUZ//AP/2D069fP6N69u5GRkWF8//vfN86ePevxPGZ/P13y8vKM5ORk48qVK60+T7DfT8No/1xdfYRau73//vvuxzD7NdqR8wyHa7Qj5xkO12hH/98ahvmv0YaGBuOBBx4wkpKSjO7duxuJiYnGjBkzjF27dnk8RjCvUYthGIZ3dToAAAChJaz70AAAgMhAoAEAAKZHoAEAAKZHoAEAAKZHoAEAAKZHoAEAAKZHoAEAAKZHoAEAAKZHoAEAAKZHoAEAAKZHoAEAAKZHoAEAAKb3/wASiWYjbG3G7gAAAABJRU5ErkJggg==\n", + "text/plain": [ + "
" + ] + }, + "metadata": {}, + "output_type": "display_data" + } + ], + "source": [ + "plt.plot(test_df.ra,test_df.dec,linestyle='None',marker='+')\n", + "plt.plot(benchmark_df.ra,benchmark_df.dec,linestyle='None',marker='+')" + ] + }, + { + "cell_type": "code", + "execution_count": 382, + "id": "933947a6", + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "[]" + ] + }, + "execution_count": 382, + "metadata": {}, + "output_type": "execute_result" + }, + { + "data": { + "image/png": "iVBORw0KGgoAAAANSUhEUgAAAjEAAAGdCAYAAADjWSL8AAAAOXRFWHRTb2Z0d2FyZQBNYXRwbG90bGliIHZlcnNpb24zLjYuMCwgaHR0cHM6Ly9tYXRwbG90bGliLm9yZy89olMNAAAACXBIWXMAAA9hAAAPYQGoP6dpAAA2SElEQVR4nO3dfXBUVZ7/8U9DQoBs0pBJOk1Dk2ENzjImYskACeLgI0INoGPV6gwupb9iwziOWBlMOVDWlLFm14jlijWyzkOWFR11cf4QtEY3GkVQho5kgKwBn4hCCAmhE0i6E0gCwv390XrHBhKSm/TD7bxfVV2d9D3pc+73pLkfzr2ddhiGYQgAAMBmRsR6AAAAAFYQYgAAgC0RYgAAgC0RYgAAgC0RYgAAgC0RYgAAgC0RYgAAgC0RYgAAgC0lxXoAkXLu3Dk1NTUpLS1NDocj1sMBAAD9YBiGOjo65PF4NGJE32stCRtimpqa5PV6Yz0MAABgQUNDgyZNmtRnm4QNMWlpaZJCRUhPT4/xaAAAQH8Eg0F5vV7zON6XhA0x35xCSk9PJ8QAAGAz/bkUhAt7AQCALRFiAACALRFiAACALRFiAACALRFiAACALRFiAACALRFiAACALRFiAACALRFiAACALRFiAADAgHzcFNCdf/Dp46ZATMdBiLHgi492av+/z9UXH+2MSn+tTfXybShRa1N9VPq7lHgbT18iNVY71cCqvvZxOOx/X/zBbv3xjZ06WfEbqaP5gu3DoT6R2MdL1TWexNscR7t2/1f9gR5uvFffeXG+dPSjiPfXG0KMBScO1eqKM7U6cag2Kv21tzSosKFc7S0NUenvUuJtPH2J1FjtVAOr+trH4bD/ffF39Oi1HXuUWvXkRQ8Yw6E+kdjHS9U1nsTbHEe7diNaP9OVIw4p+9SnUsunEe+vNwn7AZAAAGDofNwU0OfHOiVJRwNd5uPVh9rUeLZRl2f/g77vcUZ1TISYfvrio51/X3mpe9e8r3499GXGd/N12ZVzhqy/1qZ6M+GfqKs27+u+3j4uy6tMT86Q9We38fQlUmO1Uw2s6msfT7Ufkwxp7PjshN3/vviD3Tpx7LCSTvnV6O9U3ohDkqTGT6rU1dKp5O4TOifp7OiMhK1PJF4Dl6prxthRynBPltLcQ7UblsXbvwHRrt2zm7ZoUusOTXCcUOGIw9LI0OPndm1Q4MO3tSvNre/f/TNpwpVD0l9/OAzDMKLWWxQFg0E5nU4FAgGlp6cP+vn2//tcXXGm99NH+5PzdcXDOwbdzzd8G0pU2FDe+3ZvkQqXPzlk/dltPH2J1FjtVAOrLrWPff5sAux/X9ZVfi7H9jIVJ71q6ecToT6ReA30q67zVkvXrxnQ80ZCvP0bEO3a1f7mGuWf3dd3o5xrpP/35qD6GcjxmxDTT+evxMwMvqXq9Fuk3BslRX4lZlZtqXbllyojd6ak2K/ExHo8fYnUWO1UA6v62sfzV2IScf/78u3/9X7h79TWbe9obXK5Gq9dq67MvAtWYhKxPpF4DVyqrvG8EhPrOY527b74aKe6PqnQmK5j6jlSq+9/tV+S1JJxtYLplys10yv3jCWDXokZyPGb00n9dNmVc8yQUv26pD1vSbk3auaSn0Wkv0xPjvliqJOkWikjd6Zyp8+NSH92G09fIjVWO9XAqv7uY6Luf19c6aPlSr9c0uXqbgxo39bQSYSJ0wokz1VhbRO1PpF4DQykrrEWb/8GRLt2l105R/r6OPjKhv/Q9xtCISbrup8r68o7hry//hjQu5PKyso0c+ZMpaWlyeVy6bbbbtNnn30W1sYwDJWWlsrj8WjMmDG67rrrtH///rA2PT09WrlypTIzM5WamqolS5boyJEjYW3a2tq0bNkyOZ1OOZ1OLVu2TO3t7db2EgAADJnxY5NjPQRJAwwx27dv1y9+8QtVVVWpsrJSX331lebPn6+TJ0+abZ544gk99dRTWr9+vaqrq+V2u3XzzTero6PDbFNcXKzNmzdr06ZN2rFjhzo7O7Vo0SKdPXvWbLN06VLV1NSooqJCFRUVqqmp0bJly4Zglwcv47v52p+cr4zv5kelv3FZXvm8RRqX5Y1Kf5cSb+PpS6TGaqcaWNXXPg6H/e+LKy1Ft869WicLSi66VD8c6hOJfbxUXeNJvM1xtGt32RU/0BdJuTqVkSdl/VPE++uVMQh+v9+QZGzfvt0wDMM4d+6c4Xa7jccff9xs093dbTidTuP3v/+9YRiG0d7ebiQnJxubNm0y2zQ2NhojRowwKioqDMMwjI8//tiQZFRVVZltfD6fIcn49NNP+zW2QCBgSDICgcBgdhEAAETRQI7fg/pjd4FA6M8NZ2RkSJIOHjyo5uZmzZ8/32yTkpKiefPmaefO0F+33b17t86cORPWxuPxKC8vz2zj8/nkdDo1e/Zss01BQYGcTqfZ5nw9PT0KBoNhNwAAkLgshxjDMLRq1SrNnTtXeXl5kqTm5tBfCczOzg5rm52dbW5rbm7WqFGjNH78+D7buFyuC/p0uVxmm/OVlZWZ1884nU55vfGxxAcAACLDcoi5//779dFHH+l//ud/LtjmcDjCvjcM44LHznd+m4u17+t51qxZo0AgYN4aGuLjT0EDAIDIsBRiVq5cqddff13vvfeeJk2aZD7udocuJjp/tcTv95urM263W6dPn1ZbW1ufbY4dO3ZBvy0tLRes8nwjJSVF6enpYTcAAJC4BhRiDMPQ/fffr1dffVVbt27VlClTwrZPmTJFbrdblZWV5mOnT5/W9u3bNWdO6L3lM2bMUHJyclibo0ePat++fWabwsJCBQIB7dq1y2zz4YcfKhAImG0AAMDwNqA/dveLX/xCL7/8sl577TWlpaWZKy5Op1NjxoyRw+FQcXGxHnvsMU2dOlVTp07VY489prFjx2rp0qVm2+XLl+vBBx/Ud77zHWVkZKikpET5+fm66aabJEnTpk3TggULVFRUpD/84Q+SpBUrVmjRokX63ve+N5T7DwAAbGpAIeZ3v/udJOm6664Le/y5557TPffcI0l66KGH1NXVpfvuu09tbW2aPXu23n77baWlpZnt161bp6SkJN1xxx3q6urSjTfeqI0bN2rkyJFmm5deekkPPPCA+S6mJUuWaP369Vb2EQAAJCA+OwkAAMSNgRy/B/V3YgAAAGKFEAMAAGyJEAMAQ8wf7Na6ys/lD3bHeii2Qt2si3bt4mWuCDEWtDbVy7ehRK1N9QnZXyKhdtZRO+tOHDssx/YynTh2ONZDsRV/R49efneXtK1M6rj4X2fHxUW7dvHyO06IsaC9pUGFDeVqb4nOXwWOdn+JhNpZR+2sSzrlV3HSq0o65Y/1UGzH5WiXa8/ThBgLolm7ePkdH9BbrAEAF+cPdsvf0SNJavR3KlfSF/5OdTeGPijXlZYiV/roGI4wPn27bvu+rpUk1bV0qtsIULc+RLt28fg7Tojpp9amevN/pCfqqs37uq+3j8vyKtOTY9v+Egm1s47aWbflgz16bcceSVLeiEO6JVnauu0d7dsaqt6tc6/Wih/xF8fP99KHh/Xyu7vkcrRLCtVOksr/vEX7ztVo6azJuuumWVKaO3aDjFPRrl08/o7zd2L6ybehRIUN5b1v9xapcPmTg+4nVv0lEmpnHbWz7mTFb5Ra1XttThaUKHXBr6M4InvwB7ulbWWh0yC9mbdaun5N1MZkF9GuXbR+xwdy/CbE9NP5/0OdVVuqXfmlysidKSnyKzGR7i+RUDvrqN0gdDSb1yI0flKliR/8So3XrtXEaQWh7WluVhN683Xt6lo6Vf7nLVqbXC4t/q00YXpoO7XrXTRrF6Xf8YEcvzmd1E+ZnhzzH+86SaqVMnJnKnf63IToL5FQO+uo3SB86x/wrpbO0H1mnuS5KoaDsomva9dtBLTvXE3osQnTqV1/RLN2cfg7zruTAGCIZYwdFXaP/nGlpWjprMmxHoYtRbt28fI7zkqMBeOyvPJ5izQ1y5uQ/SUSamcdtbMuwz1Zmrc6dI9+c6WPDl2IOm41p48GKNq1i5ffca6JAQAAcYMPgAQAAAmPEAMAAGyJEAMAAGyJEAMAAGyJEAMAAGyJEAMAAGyJEAMAAGyJEAMAAGyJEAMAAGyJEAMAAGyJEAMAAGyJEAMAAGyJEAMAAGyJEAMAAGyJEAMAAGyJEAMAAGyJEAMAAAbEH+zWusrP5Q92x3QchBgLWpvq5dtQotam+lgPBQCAqPN39Ojld3dJ28qkjuaYjYMQY0F7S4MKG8rV3tIQ66EAABATLke7XHuejmmISYpZzwAAwDb8wW75O3okSfsaA+bjdS2d6jYCcqWlyJU+OqpjIsT0U2tTvbnycqKu2ryv+3r7uCyvMj05MRodAACR9dKHh/Xyu7vkcrRLkvJGHJIklf95i/adq9HSWZN1102zpDR31MbkMAzDiFpvURQMBuV0OhUIBJSenj7o5/NtKFFhQ3nv271FKlz+5KD7AQAgHvmD3dK2stAppN7MWy1dv2ZQ/Qzk+E2I6afzV2Jm1ZZqV36pMnJnSmIlBgAwDHQ0Sx3NqmvpVPmft2htcrm0+LfShOmh7WnuQa/EDOT4zemkfsr05JghpU6SaqWM3JnKnT43puMCACBqvg4p3UZA+87VhB6bMF3yXBWT4fDuJAAAMCCutBQtnTU51sNgJcaKcVle+bxFmprljfVQAACIOlf66NBFvONWR/VC3vNxTQwAAIgbAzl+czoJAADYEiEGAADYEiEGAADYEiEGAADYEiEGAADYEiEGAADYEiEGAADYEiEGAADYEiEGAADYEiEGAADYEiEGAADYEiEGAADYEiEGAADYEiEGAADYEiEGAADYEiEGAADYEiEGAADYEiEGAADYEiEGAADYEiEGAADYEiEGAADYEiHGgtamevk2lKi1qT4h+0sk1M46amcdtbPGH+zWH9/YqZMVv5E6mmM9HFuJdu3i5XecEGNBe0uDChvK1d7SkJD9JRJqZx21s47aWePv6NFrO/YotepJQswARbt28fI7TogBAAC2lBTrAdhFa1O9mThP1FWb93Vfbx+X5VWmJ8e2/SUSamcdtbOO2lnjD3brxLHDSjrlV6O/U3kjDkmSGj+pUldLpzLGjlKGe7KU5o7tQONQtGsXj7/jDsMwjKj2GCXBYFBOp1OBQEDp6emDfj7fhhIVNpT3vt1bpMLlTw66n1j1l0ionXXUzjpqZ826ys/l2F6m4qRXe280b7V0/ZroDcomol27aP2OD+T4TYjpp/MT6KzaUu3KL1VG7kxJkV+JiXR/iYTaWUftrKN21nx7NeELf6e2bntHa5PL1XjtWnVl5rES04do1y5av+MDOX5zOqmfMj055uTUSVKtlJE7U7nT5yZEf4mE2llH7ayjdta40kfLlX65pMvV3RjQvq2hkxMTpxVInqtiOrZ4F+3axePvOBf2AgAAWyLEWDAuyyuft0jjsrwJ2V8ioXbWUTvrqJ01rrQU3Tr3ap0sKOH00QBFu3bx8jvONTEAACBuDOT4PeCVmPfff1+LFy+Wx+ORw+HQli1bwrbfc889cjgcYbeCgoKwNj09PVq5cqUyMzOVmpqqJUuW6MiRI2Ft2tratGzZMjmdTjmdTi1btkzt7e0DHS4AAEhQAw4xJ0+e1PTp07V+/fpe2yxYsEBHjx41b2+++WbY9uLiYm3evFmbNm3Sjh071NnZqUWLFuns2bNmm6VLl6qmpkYVFRWqqKhQTU2Nli1bNtDhAgCABDXgdyctXLhQCxcu7LNNSkqK3O6Ln5MLBALasGGD/vSnP+mmm26SJL344ovyer165513dMstt+iTTz5RRUWFqqqqNHv2bElSeXm5CgsL9dlnn+l73/veQIcNAAASTEQu7N22bZtcLpcuv/xyFRUVye/3m9t2796tM2fOaP78+eZjHo9HeXl52rlzpyTJ5/PJ6XSaAUaSCgoK5HQ6zTYAAGB4G/K/E7Nw4UL98z//s3JycnTw4EH9+te/1g033KDdu3crJSVFzc3NGjVqlMaPHx/2c9nZ2WpuDn1oVXNzs1wu1wXP7XK5zDbn6+npUU9Pj/l9MBgcwr0CAADxZshDzJ133ml+nZeXpx/84AfKycnRG2+8odtvv73XnzMMQw6Hw/z+21/31ubbysrK9Oijjw5i5AAAwE4i/ndiJkyYoJycHB04cECS5Ha7dfr0abW1tYW18/v9ys7ONtscO3bsgudqaWkx25xvzZo1CgQC5q2hIbYfDw4AQKLyB7u1rvJz+YPdMR1HxEPM8ePH1dDQoAkTJkiSZsyYoeTkZFVWVpptjh49qn379mnOnDmSpMLCQgUCAe3atcts8+GHHyoQCJhtzpeSkqL09PSwW6S0NtXLt6FErU31EesDAIB45e/o0cvv7pK2lUkdF7/MIxoGHGI6OztVU1OjmpoaSdLBgwdVU1Ojw4cPq7OzUyUlJfL5fDp06JC2bdumxYsXKzMzUz/+8Y8lSU6nU8uXL9eDDz6od999V3v37tW//Mu/KD8/33y30rRp07RgwQIVFRWpqqpKVVVVKioq0qJFi+LinUntLQ0qbCg3PwgLAIDhxuVol2vP0zENMQO+JuZvf/ubrr/+evP7VatWSZLuvvtu/e53v1Ntba1eeOEFtbe3a8KECbr++uv1yiuvKC0tzfyZdevWKSkpSXfccYe6urp04403auPGjRo5cqTZ5qWXXtIDDzxgvotpyZIlff5tGgAAEDn+YLf8HaE30OxrDJiP17V0qtsIyJWWIlf66KiOiY8d6KdofQQ5AADxaF3l53r53V1yOdolSXkjDmltcrl+daZI+859V0tnTdZdN80a9Gc3DeT4TYjpJ9+GEhU2lPe+3VukwuVPDrofAADikT/YLW0rC51C6s281dL1awbVDyFGrMQAADDkOpqljmbVtXSq/M9btDa5XFr8W2nC9ND2NHdUV2KG/O/EJKpMT44ZUuokqVbKyJ2p3OlzYzouAACi5uuQ0m0EtO9cTeixCdMlz1UxGU7E32INAAASiystRUtnTY71MFiJsWJcllc+b5GmZnljPRQAAKLOlT46dBHvuNWDPn00GFwTAwAA4sZAjt+cTgIAALZEiAEAALZEiAEAALZEiAEAALZEiAEAALZEiAEAALZEiAEAALZEiAEAALZEiAEAALZEiAEAALZEiAEAALZEiAEAALZEiAEAALZEiAEAALZEiAEAALZEiAEAALZEiAEAALZEiAEAALZEiAEAALZEiAEAALZEiAEAALZEiAEAALZEiAEAALZEiAEAALZEiAEAALZEiAEAALZEiAEAALZEiAEAALZEiAEAALZEiAEAALZEiAEAALZEiAEAALZEiLGgtalevg0lam2qT8j+Egm1s47aWUftrKN21viD3frjGzt1suI3UkdzxPuLl3kixFjQ3tKgwoZytbc0JGR/iYTaWUftrKN21lE7a/wdPXptxx6lVj0ZlRATL/NEiAEAALaUFOsB2EVrU72ZOE/UVZv3dV9vH5flVaYnx7b9JRJqZx21s47aWUftrPEHu3Xi2GElnfKr0d+pvBGHJEmNn1Spq6VTGWNHKcM9WUpzD0l/8ThPDsMwjKj2GCXBYFBOp1OBQEDp6emDfj7fhhIVNpT3vt1bpMLlTw66n1j1l0ionXXUzjpqZx21s2Zd5edybC9TcdKrvTeat1q6fs2Q9BeteRrI8ZsQ00/nJ9BZtaXalV+qjNyZkiK/EhPp/hIJtbOO2llH7ayjdtZ8eyXmC3+ntm57R2uTy9V47Vp1ZeZFfCVmVm2pNn5nla6c+UOlj0kesnkayPGb00n9lOnJMSfno/ZjkqTRmZOVO31uxPurk6RaKSN3ZsT6SyTUzjpqZx21s47aWeNKHy1X+uWSLld3Y0D7toZO7EycViB5rhry/i42T8nH9mrsd36q3KmXD3l//cGFvRb0BFrD7gEAGI7uSnpPSaf8MeufEGNBSnpm2H2kjcvyyuct0rgsb1T6SyTUzjpqZx21s47aWeNKS9Gtc6/WyYKSITt9dDH+YLf2NQbUqvHa9g8/kiR94e/UvsaA9jUG5A92R6zvi+GamH7inC0AYLj74xs79dqOPZKkvBGHtDa5XL86U6R9574rSbp17tVa8aM5g+qDa2Ii4MD/PnPBVdmzakul2tDXPm+RMrl6HgCQwO4a+a5WpIQf69Ym//3YeHJkiaTBhZiBIMT009SFK1XXcpuki6/ETGXpEwCQ4FKvKZKuXCwp9PdoJn7wKzVeuzZ0MbGk1AieyroYQkw/cfU8AGDYS3Ob19x0tXSG7jPzIvJuqP7gwl4AADBgGWNHhd3HAiHGAq6eBwAMdxnuydK81aH7GOHdSQAAIG4M5PjNSgwAALAlQgwAALAlQgwAALAlQgwAALAlQgwAALAlQgwAALAlQgwAALAlQgwAALAlQgwAALAlQgwAALAlQgwAALAlQgwAALAlQgwAALAlQgwAALAlQgwAALAlQgwAALAlQgwAALClAYeY999/X4sXL5bH45HD4dCWLVvCthuGodLSUnk8Ho0ZM0bXXXed9u/fH9amp6dHK1euVGZmplJTU7VkyRIdOXIkrE1bW5uWLVsmp9Mpp9OpZcuWqb29fcA7CAAAEtOAQ8zJkyc1ffp0rV+//qLbn3jiCT311FNav369qqur5Xa7dfPNN6ujo8NsU1xcrM2bN2vTpk3asWOHOjs7tWjRIp09e9Zss3TpUtXU1KiiokIVFRWqqanRsmXLLOwiAABISMYgSDI2b95sfn/u3DnD7XYbjz/+uPlYd3e34XQ6jd///veGYRhGe3u7kZycbGzatMls09jYaIwYMcKoqKgwDMMwPv74Y0OSUVVVZbbx+XyGJOPTTz/t19gCgYAhyQgEAoPZRQAAEEUDOX4P6TUxBw8eVHNzs+bPn28+lpKSonnz5mnnzp2SpN27d+vMmTNhbTwej/Ly8sw2Pp9PTqdTs2fPNtsUFBTI6XSabQAAwPCWNJRP1tzcLEnKzs4Oezw7O1v19fVmm1GjRmn8+PEXtPnm55ubm+VyuS54fpfLZbY5X09Pj3p6eszvg8Gg9R0BAABxLyLvTnI4HGHfG4ZxwWPnO7/Nxdr39TxlZWXmRcBOp1Ner9fCyAEAgF0MaYhxu92SdMFqid/vN1dn3G63Tp8+rba2tj7bHDt27ILnb2lpuWCV5xtr1qxRIBAwbw0NDYPeHwAAEL+GNMRMmTJFbrdblZWV5mOnT5/W9u3bNWfOHEnSjBkzlJycHNbm6NGj2rdvn9mmsLBQgUBAu3btMtt8+OGHCgQCZpvzpaSkKD09PewGAAAS14Cviens7FRdXZ35/cGDB1VTU6OMjAxNnjxZxcXFeuyxxzR16lRNnTpVjz32mMaOHaulS5dKkpxOp5YvX64HH3xQ3/nOd5SRkaGSkhLl5+frpptukiRNmzZNCxYsUFFRkf7whz9IklasWKFFixbpe9/73lDsNwAAsLkBh5i//e1vuv76683vV61aJUm6++67tXHjRj300EPq6urSfffdp7a2Ns2ePVtvv/220tLSzJ9Zt26dkpKSdMcdd6irq0s33nijNm7cqJEjR5ptXnrpJT3wwAPmu5iWLFnS69+mAQAAw4/DMAwj1oOIhGAwKKfTqUAgwKklAABsYiDHbz47CQAA2BIhBgAA2BIhBgAA2BIhBgAA2BIhBgAA2BIhBgAA2BIhBgAA2BIhBgAA2BIhBgAA2BIhBgAADJg/2K11lZ/LH+yO2RgIMRa0NtXLt6FErU31sR4KAAAxceLYYTm2l+nEscMxGwMhxoL2lgYVNpSrvaUh1kMBACAmkk75VZz0qpJO+WM3hpj1DAAAbMUf7Ja/o0eS1OjvVK6kL/yd6m4MSJJcaSlypY+O2ngIMf3U2lRvrrycqKs27+u+3j4uy6tMT06MRgcAQORt+WCPXtuxR5KUN+KQbkmWtm57R/u2ho6Gt869Wit+NCdq4yHE9NOB/31GhQ3lYY/Nqi2VakNf+7xFylz+ZPQHBgBAlNw18l2tSAk/1q1N/vux8eTIEknRCzFcE9NPUxeuVN2P31Ddj9+Q77JiSZLvsmLzsakLV0asby4kto7aWUftrKN21lE7a/zBbv3xjZ06WfEbqaM5Yv2kXlMkrdiutts36eO0UFhpvHattGK7tGJ7aHsUEWL6KdOTo9zpc5U7fa6SnB5JUpLTYz4WyVNJXEhsHbWzjtpZR+2so3bW+Dt69NqOPUqtejKiIUZpbslzlY4bafp+x05JUldmnuS5KnRLc0eu74sgxAAAAMsyxo6KWd9cE9NP376w96tAk3lf9387JA39hb1cSGwdtbOO2llH7ayjdtb4g906ceywkk751ejvVN6IQ5Kkxk+q1NXSqYyxo5ThnjxkqyMXm6fGrHk6faJZJ/5vR0zmyWEYhhHVHqMkGAzK6XQqEAgoPT190M/n21BywYW9Ydu9RSocwgt7o91fIqF21lE766idddTOmnWVn8uxvUzFSa/23mjeaun6NUPSX7TmaSDHb0JMP52fQGfVlmpXfqkycmdKivxKTKT7SyTUzjpqZx21s47aWfPtlZgv/J3auu0drU0uV+O1a9WVmRfxlZhIzdNAjt+cTuqnTE+OOTl1klQrZeTOVO70uQnRXyKhdtZRO+uonXXUzhpX+mi50i+XdLm6GwPm32qZOK0gdJHtEIvHeeLCXgAAYEuEGAvGZXnl8xZpXJY3IftLJNTOOmpnHbWzjtpZ40pL0a1zr9bJgpKovM05XuaJa2IAAEDcGMjxm5UYAABgS4QYAABgS4QYAABgS4QYAABgS4QYAABgS4QYAABgS4QYAABgS4QYAABgS4QYAABgS4QYAABgS4QYAABgS4QYAABgS4QYAABgS4QYAABgS4QYAABgS4QYAABgS4QYAABgS4QYAABgS4QYAABgS4QYAABgS4QYAABgS4QYAABgS4QYAABgS4QYAABgS4QYAABgS4QYAABgS4QYAABgS4QYAABgS4QYAABgS4QYAABgS4QYAABgS4QYAABgS4QYAAAwYP5gt9ZVfi5/sDtmYyDEWNDaVC/fhhK1NtXHeigAAMTEiWOH5dhephPHDsdsDIQYC9pbGlTYUK72loZYDwUAgJhIOuVXcdKrSjrlj90YYtYzAACwFX+wW/6OHklSo79TuZK+8HequzEgSXKlpciVPjpq4yHE9FNrU7258nKirtq8r/t6+7gsrzI9OTEaHQAAkbflgz16bcceSVLeiEO6JVnauu0d7dsaOhreOvdqrfjRnKiNhxDTTwf+9xkVNpSHPTartlSqDX3t8xYpc/mT0R8YAABRctfId7UiJfxYtzb578fGkyNLJBFi4s7UhStV13KbpNAKzKzaUu3KL1VG7szQ9ixvDEcHAEDkpV5TJF25WJLU+EmVJn7wKzVeu1YTpxWEtqe5ozoeQkw/ZXpyzNNFdZJUK2XkzlTu9LkxHRcAAFGT5g7dJHW1dIbuM/Mkz1UxGQ7vTgIAAAOWMXZU2H0sEGIsGJfllc9bpHGcQgIADFMZ7snSvNWh+xhxGIZhxKz3CAoGg3I6nQoEAkpPT4/1cAAAQD8M5PjNSgwAALAlQgwAALAlQgwAALClIQ8xpaWlcjgcYTe3++/vGzcMQ6WlpfJ4PBozZoyuu+467d+/P+w5enp6tHLlSmVmZio1NVVLlizRkSNHhnqoAADAxiKyEnPFFVfo6NGj5q22ttbc9sQTT+ipp57S+vXrVV1dLbfbrZtvvlkdHR1mm+LiYm3evFmbNm3Sjh071NnZqUWLFuns2bORGC4AALChiPyxu6SkpLDVl28YhqGnn35aDz/8sG6//XZJ0vPPP6/s7Gy9/PLL+tnPfqZAIKANGzboT3/6k2666SZJ0osvviiv16t33nlHt9xySySGDAAAbCYiKzEHDhyQx+PRlClT9JOf/ERffvmlJOngwYNqbm7W/PnzzbYpKSmaN2+edu7cKUnavXu3zpw5E9bG4/EoLy/PbBNrrU318m0oUWtTfUL2l0ionXXUzjpqZx21sy6atYuXeRryEDN79my98MILeuutt1ReXq7m5mbNmTNHx48fV3NzsyQpOzs77Geys7PNbc3NzRo1apTGjx/fa5uL6enpUTAYDLtFSntLgwobys1PtY60aPeXSKidddTOOmpnHbWzLpq1i5d5GvLTSQsXLjS/zs/PV2FhoS677DI9//zzKigIfUCUw+EI+xnDMC547HyXalNWVqZHH310ECMHAAB2EvEPgExNTVV+fr4OHDig2267TVJotWXChAlmG7/fb67OuN1unT59Wm1tbWGrMX6/X3Pm9P7x3mvWrNGqVavM74PBoLzeoftYgNamejNxnqirNu/rvt4+LstrfkCkHftLJNTOOmpnHbWzjtpZF83axeM8RfxjB3p6enTZZZdpxYoV+vWvfy2Px6Nf/vKXeuihhyRJp0+flsvl0tq1a80Le7OysvTiiy/qjjvukCQdPXpUkyZN0ptvvtnvC3uH+mMHfBtKVNhQ3vt2b5EKlz856H5i1V8ioXbWUTvrqJ111M66aNYuWn0N5Pg95CGmpKREixcv1uTJk+X3+/Vv//Zv2r59u2pra5WTk6O1a9eqrKxMzz33nKZOnarHHntM27Zt02effaa0tDRJ0s9//nP95S9/0caNG5WRkaGSkhIdP35cu3fv1siRI/s1jqEOMecn0Fm1pdqVX6qM3JmSIr8SE+n+Egm1s47aWUftrKN21kWzdtHqayDH7yE/nXTkyBH99Kc/VWtrq7KyslRQUKCqqirl5IR27KGHHlJXV5fuu+8+tbW1afbs2Xr77bfNACNJ69atU1JSku644w51dXXpxhtv1MaNG/sdYCIh05NjTk6dJNVKGbkzlTt9bkL0l0ionXXUzjpqZx21sy6atYvHeRryELNp06Y+tzscDpWWlqq0tLTXNqNHj9YzzzyjZ555ZohHBwAAEgWfnWTBuCyvfN4ijcsauguH46m/RELtrKN21lE766idddGsXbzMU8Qv7I2Vob4mBgAARN5Ajt+sxAAAAFsixAAAAFsixAAAAFsixAAAAFsixAAAAFsixAAAAFsixAAAAFsixAAAAFsixAAAAFsixAAAAFsixAAAAFsixAAAAFsixAAAAFsixAAAAFsixAAAAFsixAAAAFsixAAAAFsixAAAAFsixAAAAFsixAAAAFsixAAAAFsixAAAgAHzB7u1rvJz+YPdMRsDIcaC1qZ6+TaUqLWpPtZDAQAgJk4cOyzH9jKdOHY4ZmMgxFjQ3tKgwoZytbc0xHooAADERNIpv4qTXlXSKX/sxhCzngEAgK34g93yd/RIkhr9ncqV9IW/U92NAUmSKy1FrvTRURsPIaafWpvqzZWXE3XV5n3d19vHZXmV6cmJ0egAAIi8LR/s0Ws79kiS8kYc0i3J0tZt72jf1tDR8Na5V2vFj+ZEbTyEmH468L/PqLChPOyxWbWlUm3oa5+3SJnLn4z+wAAAiJK7Rr6rFSnhx7q1yX8/Np4cWSKJEBN3pi5cqbqW2ySFVmBm1ZZqV36pMnJnhrZneWM4OgAAIi/1miLpysWSpMZPqjTxg1+p8dq1mjitILQ9zR3V8RBi+inTk2OeLqqTpFopI3emcqfPjem4AACImjR36Capq6UzdJ+ZJ3muislweHcSAAAYsIyxo8LuY4EQY8G4LK983iKN4xQSAGCYynBPluatDt3HiMMwDCNmvUdQMBiU0+lUIBBQenp6rIcDAAD6YSDHb1ZiAACALRFiAACALRFiAACALRFiAACALRFiAACALRFiAACALRFiAACALRFiAACALRFiAACALRFiAACALRFiAACALRFiAACALRFiAACALRFiAACALRFiAACALRFiAACALRFiAFyUP9itdZWfyx/sjvVQbIfaWUftrItm7eJlnggxFrQ21cu3oUStTfUJ2V8ioXbWnTh2WI7tZTpx7HCsh2I71M46amddNGsXL/NEiLGgvaVBhQ3lam9pSMj+Egm1sy7plF/FSa8q6ZQ/1kOxHWpnHbWzLpq1i5d5Sopp7wDiij/YLX9HjySp0d+pXElf+DvV3RiQJLnSUuRKHx3DEcYvamcdtbMumrWLx3kixPRTa1O9+b/5E3XV5n3d19vHZXmV6cmxbX+JhNpZt+WDPXptxx5JUt6IQ7olWdq67R3t2xqq3q1zr9aKH82J5RDjFrWzjtpZF83axeM8OQzDMKLaY5QEg0E5nU4FAgGlp6cP+vl8G0pU2FDe+3ZvkQqXPznofmLVXyKhdtadrPiNUqt6r83JghKlLvh1FEdkH9TOOmpnXTRrF62+BnL8JsT00/n/u59VW6pd+aXKyJ0pKfIrMZHuL5FQu0HoaA7dJDV+UqWJH/xKjdeu1cRpBaHtae7QDReidtZRO+uiWbso9TWQ4zenk/op05NjHvjqJKlWysidqdzpcxOiv0RC7QbhW/8IdbV0hu4z8yTPVTEclE1QO+uonXXRrF0czhPvTgJwURljR4Xdo/+onXXUzrpo1i5e5okQY8G4LK983iKNy/ImZH+JhNpZl+GeLM1bHbrHgFA766idddGsXbzME9fEAACAuDGQ4zcrMQAAwJYIMQAAwJYIMQAAwJYIMQAAwJYIMQAAwJYIMQAAwJYIMQAAwJYIMQAAwJYIMQAAwJYIMQAAwJbiPsQ8++yzmjJlikaPHq0ZM2bogw8+iPWQVP2XcgUfcav6L+VR6a+1qV6+DSVqbaqPSn+XEm/j6UukxmqnGljV1z4Oh/2/lOFen+H+2orHcUZ7TF98tFP7/32uvvhoZ1T6u5i4DjGvvPKKiouL9fDDD2vv3r269tprtXDhQh0+fDim4/rqy78q3dGlr778a1T6a29pUGFDudpbGqLS36XE23j6Eqmx2qkGVvW1j8Nh/y9luNdnuL+24nGc0R7TiUO1uuJMrU4cqo1KfxcT1yHmqaee0vLly/Wv//qvmjZtmp5++ml5vV797ne/i/XQAABAjCXFegC9OX36tHbv3q3Vq1eHPT5//nzt3Bn9pavqv5SbKy/eEzvNe99v75EkJf3jNZq5qGjI+mttqjfT9Im6avO+7uvt47K8yvTkDFl/dhtPXyI1VjvVwKq+9vFU+zHJkMaOz07Y/b+UPuvTdkxySGPHJW59hvtrKx7HGe0xffHRzr+vvNS9a95Xvx76MuO7+brsyjlD1t+lOAzDMKLW2wA0NTVp4sSJ+utf/6o5c/5ekMcee0zPP/+8Pvvss7D2PT096unpMb8PBoPyer39+ijv/gg+4la6o6v37cYYpT/aPOh+vuHbUKLCht6vufF5i1S4/Mkh689u4+lLpMZqpxpYdal97PNnE2D/L2W412e4v7bicZzRHtP+f5+rK870fvpof3K+rnh4x6D6CAaDcjqd/Tp+x+1KzDccDkfY94ZhXPCYJJWVlenRRx+N2Dg+m/mbsJWYSTqmI8pWQ0YoYCX94zWaOYT9TV24UnUtt0kKpepZtaXalV+qjNxQL1OzvEPYm/3G05dIjdVONbCqr308fyUmEff/Uvqsz3krMYlYn+H+2orHcUZ7TKMXP6Hqb63EzAy+per0W6TcGyWFVmKiKW5DTGZmpkaOHKnm5vDVDb/fr+zs7Avar1mzRqtWrTK//2YlZqiEThWFThf5fnuPJp3YrIaMOSp8YOOQ9fFtmZ4ccwmwTpJqpYzcmcqdPjci/dltPH2J1FjtVAOr+ruPibr/lzLc6zPcX1vxOM5oj+myK+eYp4uqX5e05y0p90bNXPKziPR3KXF7Ye+oUaM0Y8YMVVZWhj1eWVkZdnrpGykpKUpPTw+7AQCAxBW3IUaSVq1apf/6r//Sf//3f+uTTz7RL3/5Sx0+fFj33ntvTMeV9I/XKGiMUdI/XhOV/sZleeXzFmlcnCypxtt4+hKpsdqpBlb1tY/DYf8vZbjXZ7i/tuJxnNEeU8Z387U/OT/qp5C+LW4v7P3Gs88+qyeeeEJHjx5VXl6e1q1bpx/+8IeX/LmBXBgEAADiw0CO33EfYqwixAAAYD8DOX7H9ekkAACA3hBiAACALRFiAACALRFiAACALRFiAACALRFiAACALRFiAACALRFiAACALRFiAACALcXtp1gP1jd/iDgYDMZ4JAAAoL++OW735wMFEjbEdHR0SJK83vj5cC4AANA/HR0dcjqdfbZJ2M9OOnfunJqampSWliaHwzGkzx0MBuX1etXQ0MDnMtkI82ZPzJs9MW/2FA/zZhiGOjo65PF4NGJE31e9JOxKzIgRIzRp0qSI9pGens6L04aYN3ti3uyJebOnWM/bpVZgvsGFvQAAwJYIMQAAwJYIMRakpKTokUceUUpKSqyHggFg3uyJebMn5s2e7DZvCXthLwAASGysxAAAAFsixAAAAFsixAAAAFsixAAAAFsixAzQs88+qylTpmj06NGaMWOGPvjgg1gPaVgrLS2Vw+EIu7ndbnO7YRgqLS2Vx+PRmDFjdN1112n//v1hz9HT06OVK1cqMzNTqampWrJkiY4cORLtXUlo77//vhYvXiyPxyOHw6EtW7aEbR+qeWpra9OyZcvkdDrldDq1bNkytbe3R3jvEtel5u2ee+654PVXUFAQ1oZ5i66ysjLNnDlTaWlpcrlcuu222/TZZ5+FtUmk1xshZgBeeeUVFRcX6+GHH9bevXt17bXXauHChTp8+HCshzasXXHFFTp69Kh5q62tNbc98cQTeuqpp7R+/XpVV1fL7Xbr5ptvNj9bS5KKi4u1efNmbdq0STt27FBnZ6cWLVqks2fPxmJ3EtLJkyc1ffp0rV+//qLbh2qeli5dqpqaGlVUVKiiokI1NTVatmxZxPcvUV1q3iRpwYIFYa+/N998M2w78xZd27dv1y9+8QtVVVWpsrJSX331lebPn6+TJ0+abRLq9Wag32bNmmXce++9YY/90z/9k7F69eoYjQiPPPKIMX369ItuO3funOF2u43HH3/cfKy7u9twOp3G73//e8MwDKO9vd1ITk42Nm3aZLZpbGw0RowYYVRUVER07MOVJGPz5s3m90M1Tx9//LEhyaiqqjLb+Hw+Q5Lx6aefRnivEt/582YYhnH33Xcbt956a68/w7zFnt/vNyQZ27dvNwwj8V5vrMT00+nTp7V7927Nnz8/7PH58+dr586dMRoVJOnAgQPyeDyaMmWKfvKTn+jLL7+UJB08eFDNzc1hc5aSkqJ58+aZc7Z7926dOXMmrI3H41FeXh7zGiVDNU8+n09Op1OzZ8822xQUFMjpdDKXEbRt2za5XC5dfvnlKioqkt/vN7cxb7EXCAQkSRkZGZIS7/VGiOmn1tZWnT17VtnZ2WGPZ2dnq7m5OUajwuzZs/XCCy/orbfeUnl5uZqbmzVnzhwdP37cnJe+5qy5uVmjRo3S+PHje22DyBqqeWpubpbL5brg+V0uF3MZIQsXLtRLL72krVu36j/+4z9UXV2tG264QT09PZKYt1gzDEOrVq3S3LlzlZeXJynxXm8J+ynWkeJwOMK+NwzjgscQPQsXLjS/zs/PV2FhoS677DI9//zz5gWGVuaMeY2+oZini7VnLiPnzjvvNL/Oy8vTD37wA+Xk5OiNN97Q7bff3uvPMW/Rcf/99+ujjz7Sjh07LtiWKK83VmL6KTMzUyNHjrwgYfr9/gsSLWInNTVV+fn5OnDggPkupb7mzO126/Tp02pra+u1DSJrqObJ7Xbr2LFjFzx/S0sLcxklEyZMUE5Ojg4cOCCJeYullStX6vXXX9d7772nSZMmmY8n2uuNENNPo0aN0owZM1RZWRn2eGVlpebMmROjUeF8PT09+uSTTzRhwgRNmTJFbrc7bM5Onz6t7du3m3M2Y8YMJScnh7U5evSo9u3bx7xGyVDNU2FhoQKBgHbt2mW2+fDDDxUIBJjLKDl+/LgaGho0YcIEScxbLBiGofvvv1+vvvqqtm7dqilTpoRtT7jXW9QuIU4AmzZtMpKTk40NGzYYH3/8sVFcXGykpqYahw4divXQhq0HH3zQ2LZtm/Hll18aVVVVxqJFi4y0tDRzTh5//HHD6XQar776qlFbW2v89Kc/NSZMmGAEg0HzOe69915j0qRJxjvvvGPs2bPHuOGGG4zp06cbX331Vax2K+F0dHQYe/fuNfbu3WtIMp566ilj7969Rn19vWEYQzdPCxYsMK688krD5/MZPp/PyM/PNxYtWhT1/U0Ufc1bR0eH8eCDDxo7d+40Dh48aLz33ntGYWGhMXHiROYthn7+858bTqfT2LZtm3H06FHzdurUKbNNIr3eCDED9J//+Z9GTk6OMWrUKOPqq68237aG2LjzzjuNCRMmGMnJyYbH4zFuv/12Y//+/eb2c+fOGY888ojhdruNlJQU44c//KFRW1sb9hxdXV3G/fffb2RkZBhjxowxFi1aZBw+fDjau5LQ3nvvPUPSBbe7777bMIyhm6fjx48bd911l5GWlmakpaUZd911l9HW1halvUw8fc3bqVOnjPnz5xtZWVlGcnKyMXnyZOPuu+++YE6Yt+i62HxJMp577jmzTSK93hyGYRjRW/cBAAAYGlwTAwAAbIkQAwAAbIkQAwAAbIkQAwAAbIkQAwAAbIkQAwAAbIkQAwAAbIkQAwAAbIkQAwAAbIkQAwAAbIkQAwAAbIkQAwAAbOn/AwqIaAss3glqAAAAAElFTkSuQmCC\n", + "text/plain": [ + "
" + ] + }, + "metadata": {}, + "output_type": "display_data" + } + ], + "source": [ + "plt.plot(test_pix.row,test_pix.col,linestyle='None',marker='+')\n", + "plt.plot(benchmarktest_pix.row,benchmarktest_pix.col,linestyle='None',marker='+')" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "925b9f45", + "metadata": {}, + "outputs": [], + "source": [] + } + ], + "metadata": { + "kernelspec": { + "display_name": "Python 3 (ipykernel)", + "language": "python", + "name": "python3" + }, + "language_info": { + "codemirror_mode": { + "name": "ipython", + "version": 3 + }, + "file_extension": ".py", + "mimetype": "text/x-python", + "name": "python", + "nbconvert_exporter": "python", + "pygments_lexer": "ipython3", + "version": "3.10.6" + } + }, + "nbformat": 4, + "nbformat_minor": 5 +} diff --git a/src/mwe-test.ipynb b/src/mwe-test.ipynb new file mode 100644 index 0000000..14efe22 --- /dev/null +++ b/src/mwe-test.ipynb @@ -0,0 +1,4013 @@ +{ + "cells": [ + { + "cell_type": "code", + "execution_count": 1, + "id": "64c31405", + "metadata": {}, + "outputs": [], + "source": [ + "%load_ext autoreload\n", + "%autoreload 2" + ] + }, + { + "cell_type": "code", + "execution_count": 2, + "id": "96a719cb", + "metadata": {}, + "outputs": [], + "source": [ + "from tesspoint import TESSPoint, footprint" + ] + }, + { + "cell_type": "markdown", + "id": "8ce09949", + "metadata": {}, + "source": [ + "# For a given ra, dec test ra,dec->pixel, pixel for old tesspoint and new tesspoint" + ] + }, + { + "cell_type": "code", + "execution_count": 3, + "id": "00011c4d", + "metadata": {}, + "outputs": [], + "source": [ + "# test 1 point\n", + "test_ra = 314.1268529308317 \n", + "test_dec = -47.822908672402036 " + ] + }, + { + "cell_type": "code", + "execution_count": 4, + "id": "0614ecbd", + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "# TIC | RA | Dec | EclipticLong | EclipticLat | Sector | Camera | Ccd | ColPix | RowPix | EdgeWarn\n", + "DEBUG: optics_fp: cphi: -0.7073508258875031\n", + "DEBUG: optics_fp: sphi: -0.7068626522290361\n", + "DEBUG: optics_fp: rfp0*rfp: 44.62618284419898\n", + "DEBUG: optics_fp: xytmp: [31.56636729 31.54458196]\n", + "DEBUG: optics_fp: xytmp shape: (2,)\n", + "radec2pix: curVec: [ 0.46747872 -0.48194843 -0.74107311] i: 0\n", + "radec2pix: camVec: [-0.20209188 -0.20195241 0.95831837] i: 0 j:0\n", + "radec2pix: lng: 224.9802220176646\n", + "radec2pix: lat: 73.39915628169348\n", + "radec2pix: xyfp: [31.56636729 31.54458196]\n", + "radec2pix: fitsxpos: [4227.03017677]\n", + "radec2pix: fitsypos: [4155.02950708]\n", + "radec2pix: ccdxpos: [-0.03017677]\n", + "radec2pix: ccdypos: [-0.02950708]\n", + "DEBUG: optics_fp: cphi: -0.7059081270278734\n", + "DEBUG: optics_fp: sphi: 0.7083034068787187\n", + "DEBUG: optics_fp: rfp0*rfp: 45.16507518038426\n", + "DEBUG: optics_fp: xytmp: [ 31.88239363 -31.99057662]\n", + "DEBUG: optics_fp: xytmp shape: (2,)\n", + "radec2pix: curVec: [ 0.46747872 -0.48194843 -0.74107311] i: 0\n", + "radec2pix: camVec: [-0.20371554 0.20440678 0.95745384] i: 0 j:1\n", + "radec2pix: lng: 134.90295702468586\n", + "radec2pix: lat: 73.22665089903593\n", + "radec2pix: xyfp: [ 31.88239363 -31.99057662]\n", + "radec2pix: fitsxpos: [4227.03017677 4243.47836327]\n", + "radec2pix: fitsypos: [4155.02950708 -28.83017947]\n", + "radec2pix: ccdxpos: [-3.01767698e-02 2.06347836e+03]\n", + "radec2pix: ccdypos: [ -0.02950708 -28.83017947]\n", + "000000000 | 314.126853 | -47.822909 | 302.384439 | -29.223220 | 1 | 1 | 1 | 44.969823 | 0.970493 | 1\n", + " " + ] + } + ], + "source": [ + "%run -p -i tess_stars2px_debug.py -t 0 -s 1 -c 314.1268529308317 -47.822908672402036 " + ] + }, + { + "cell_type": "code", + "execution_count": 36, + "id": "8def29fa", + "metadata": {}, + "outputs": [ + { + "name": "stderr", + "output_type": "stream", + "text": [ + "DEBUG:root:radec2pix: curVec: [[ 0.46747872 -0.48194843 -0.74107311]]\n", + "DEBUG:root:radec2pix: curVec Shape: (1, 3)\n", + "DEBUG:root:radec2pix: camVec: [[-0.20209188]\n", + " [-0.20195241]\n", + " [ 0.95831837]]\n", + "DEBUG:root:radec2pix: camVec Shape: (3, 1)\n", + "DEBUG:root:cartToSphere: vec: [[-0.20209188 -0.20195241 0.95831837]]\n", + "DEBUG:root:radec2pix: lng: [224.98022202]\n", + "DEBUG:root:radec2pix: lat: [73.39915628]\n", + "DEBUG:root:optics_fp: rtanth: [44.62618284]\n", + "DEBUG:root:optics_fp: cphi: [-0.70735083]\n", + "DEBUG:root:optics_fp: sphi: [-0.70686265]\n", + "DEBUG:root:optics_fp: xyfp: [[31.56636729 31.54458196]]\n", + "DEBUG:root:optics_fp: xyfp shape: (1, 2)\n", + "DEBUG:root:make_az_asym: xyp: [[31.56636729 31.54458196]]\n", + "DEBUG:root:make_az_asym: xyp: shape: (1, 2)\n", + "DEBUG:root:radec2pix: xyfp: [[31.56636729 31.54458196]]\n", + "DEBUG:root:radec2pix: xyfp Shape: (1, 2)\n", + "DEBUG:root:mm_to_pix: fitpx: [[0. 0.]]\n", + "DEBUG:root:mm_to_pix: fitpx.shape: (1, 2)\n", + "DEBUG:root:radec2pix: xyfp: [[31.56636729 31.54458196]]\n", + "DEBUG:root:radec2pix: ccdpx: [[-0.03017677 -0.02950708]]\n", + "DEBUG:root:radec2pix: fitpx: [[4227.03017677 4155.02950708]]\n", + "DEBUG:root:fitpix2pix: ccdpx: shape: (1, 2)\n", + "DEBUG:root:fitpix2pix: visCut: True\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "(1, 2)\n", + "(array([[44.96982323, 0.97049292]]), array([ True]))\n" + ] + } + ], + "source": [ + "tp = TESSPoint(1, 1, 1)\n", + "target=np.array([[314.1268529308317, -47.822908672402036]])\n", + "print(target.shape)\n", + "print(tp.radec2pix(target))" + ] + }, + { + "cell_type": "markdown", + "id": "a0006e7d", + "metadata": {}, + "source": [ + "# Now Test ra,dec footprint to pixel footprint" + ] + }, + { + "cell_type": "code", + "execution_count": 6, + "id": "70d5606d", + "metadata": {}, + "outputs": [], + "source": [ + "import pandas as pd" + ] + }, + { + "cell_type": "code", + "execution_count": 7, + "id": "bcecac4d", + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + " " + ] + } + ], + "source": [ + "%run -p -i ../../tess-point/tess_stars2px.py -f inp_radec.dat -o out_radec.dat" + ] + }, + { + "cell_type": "code", + "execution_count": 8, + "id": "276945da", + "metadata": {}, + "outputs": [], + "source": [ + "pixfootie_old=pd.read_table(\"out_radec.dat\",sep='|',skiprows=16,names=['tic','ra','dec','elo','ela','sector','camera','detector','pixel_c','pixel_r','edge'])\n", + "#cut = pixfootie_old.sector == 1 & pixfootie_old.camera == 1 & pixfootie_old.detector == 1\n", + "pixfootie_old=pixfootie_old.query(\"sector == 1 and camera == 1 and detector == 1\")" + ] + }, + { + "cell_type": "code", + "execution_count": 9, + "id": "e7ff0965", + "metadata": { + "scrolled": false + }, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
ticradeceloelasectorcameradetectorpixel_cpixel_redge
00314.126853-47.822909302.384439-29.22322011144.9698230.9704931
31314.035769-47.612711302.394116-29.00443511144.86274042.6894511
62313.946084-47.400915302.404792-28.78434411144.88566784.5363911
93313.857874-47.187502302.416532-28.56294211145.049964126.5142451
124313.768257-46.975409302.426173-28.34240811144.843803168.1434631
....................................
510184325.811631-37.038892315.396387-21.9770111112092.0424091423.3589391
513185325.703364-36.810860315.396229-21.7331051112092.0102221465.1116821
516186325.595259-36.581395315.396188-21.4878141112091.9960561507.0606331
519187325.488427-36.353802315.395916-21.2445471112091.9448031548.6257151
522188325.381641-36.124444315.395805-20.9995491112091.9184591590.4509371
\n", + "

120 rows × 11 columns

\n", + "
" + ], + "text/plain": [ + " tic ra dec elo ela sector camera \\\n", + "0 0 314.126853 -47.822909 302.384439 -29.223220 1 1 \n", + "3 1 314.035769 -47.612711 302.394116 -29.004435 1 1 \n", + "6 2 313.946084 -47.400915 302.404792 -28.784344 1 1 \n", + "9 3 313.857874 -47.187502 302.416532 -28.562942 1 1 \n", + "12 4 313.768257 -46.975409 302.426173 -28.342408 1 1 \n", + ".. ... ... ... ... ... ... ... \n", + "510 184 325.811631 -37.038892 315.396387 -21.977011 1 1 \n", + "513 185 325.703364 -36.810860 315.396229 -21.733105 1 1 \n", + "516 186 325.595259 -36.581395 315.396188 -21.487814 1 1 \n", + "519 187 325.488427 -36.353802 315.395916 -21.244547 1 1 \n", + "522 188 325.381641 -36.124444 315.395805 -20.999549 1 1 \n", + "\n", + " detector pixel_c pixel_r edge \n", + "0 1 44.969823 0.970493 1 \n", + "3 1 44.862740 42.689451 1 \n", + "6 1 44.885667 84.536391 1 \n", + "9 1 45.049964 126.514245 1 \n", + "12 1 44.843803 168.143463 1 \n", + ".. ... ... ... ... \n", + "510 1 2092.042409 1423.358939 1 \n", + "513 1 2092.010222 1465.111682 1 \n", + "516 1 2091.996056 1507.060633 1 \n", + "519 1 2091.944803 1548.625715 1 \n", + "522 1 2091.918459 1590.450937 1 \n", + "\n", + "[120 rows x 11 columns]" + ] + }, + "execution_count": 9, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "pixfootie_old" + ] + }, + { + "cell_type": "code", + "execution_count": 10, + "id": "8aae0d20", + "metadata": { + "scrolled": true + }, + "outputs": [ + { + "name": "stderr", + "output_type": "stream", + "text": [ + "DEBUG:root:DEBUG: cartToSphere: vec: [[ 0.46747872 -0.48194843 -0.74107311]\n", + " [ 0.46859863 -0.48464224 -0.73860492]\n", + " [ 0.46973101 -0.4873376 -0.7361079 ]\n", + " [ 0.47087665 -0.49003384 -0.73358164]\n", + " [ 0.47198482 -0.49272736 -0.73106093]\n", + " [ 0.47310768 -0.49542149 -0.7285099 ]\n", + " [ 0.47424612 -0.49811539 -0.72592815]\n", + " [ 0.47534913 -0.50080727 -0.72335005]\n", + " [ 0.47646933 -0.50349838 -0.72074015]\n", + " [ 0.4776077 -0.50618772 -0.7180981 ]\n", + " [ 0.47871293 -0.50887536 -0.71545776]\n", + " [ 0.47983812 -0.51156036 -0.71278424]\n", + " [ 0.48093177 -0.5142441 -0.710111 ]\n", + " [ 0.48204731 -0.51692412 -0.7074036 ]\n", + " [ 0.48318583 -0.51959904 -0.70466183]\n", + " [ 0.48424265 -0.52227704 -0.70195138]\n", + " [ 0.48537733 -0.52494439 -0.69917253]\n", + " [ 0.48648513 -0.52760987 -0.69639073]\n", + " [ 0.48756692 -0.53027409 -0.69360499]\n", + " [ 0.48867695 -0.5329297 -0.69078272]\n", + " [ 0.48976303 -0.53558354 -0.68795526]\n", + " [ 0.49082613 -0.53823604 -0.68512165]\n", + " [ 0.49192082 -0.54087726 -0.68225046]\n", + " [ 0.49299471 -0.5435162 -0.67937203]\n", + " [ 0.4940488 -0.54615312 -0.67648544]\n", + " [ 0.49513797 -0.54877535 -0.6735607 ]\n", + " [ 0.49620958 -0.55139415 -0.67062698]\n", + " [ 0.49726469 -0.55400956 -0.66768348]\n", + " [ 0.49830439 -0.55662152 -0.66472943]\n", + " [ 0.49932974 -0.55922995 -0.66176407]\n", + " [ 0.50039581 -0.56181755 -0.65876025]\n", + " [ 0.50144971 -0.56439947 -0.65574494]\n", + " [ 0.50243847 -0.56699421 -0.65274279]\n", + " [ 0.50347112 -0.56956461 -0.64970223]\n", + " [ 0.50449466 -0.57212819 -0.64664864]\n", + " [ 0.50551006 -0.57468446 -0.64358166]\n", + " [ 0.50651824 -0.57723288 -0.64050095]\n", + " [ 0.50752012 -0.57977284 -0.63740629]\n", + " [ 0.50851653 -0.58230372 -0.6342975 ]\n", + " [ 0.50950828 -0.58482483 -0.63117448]\n", + " [ 0.5104961 -0.58733549 -0.62803722]\n", + " [ 0.51148067 -0.58983496 -0.62488579]\n", + " [ 0.51246258 -0.59232251 -0.62172031]\n", + " [ 0.51344238 -0.5947974 -0.61854101]\n", + " [ 0.51442051 -0.59725889 -0.61534816]\n", + " [ 0.51534456 -0.59973603 -0.61215739]\n", + " [ 0.51632058 -0.60216935 -0.60893772]\n", + " [ 0.5172434 -0.60461848 -0.60571921]\n", + " [ 0.51816598 -0.60705296 -0.60248711]\n", + " [ 0.51908838 -0.60947217 -0.59924197]\n", + " [ 0.46747872 -0.48194843 -0.74107311]\n", + " [ 0.47052044 -0.47968532 -0.7406163 ]\n", + " [ 0.47357957 -0.4774109 -0.74013595]\n", + " [ 0.47665643 -0.47512573 -0.73963112]\n", + " [ 0.47970142 -0.47282326 -0.73913781]\n", + " [ 0.48276536 -0.47051035 -0.73861872]\n", + " [ 0.48584852 -0.46818771 -0.73807282]\n", + " [ 0.48895117 -0.46585613 -0.73749904]\n", + " [ 0.49202498 -0.46350719 -0.73693453]\n", + " [ 0.49507123 -0.46114018 -0.73637912]\n", + " [ 0.49818691 -0.45877509 -0.73575486]\n", + " [ 0.50127616 -0.45639278 -0.73513797]\n", + " [ 0.50434026 -0.45399263 -0.73452814]\n", + " [ 0.50742722 -0.45158612 -0.73388527]\n", + " [ 0.51049087 -0.44916176 -0.73324811]\n", + " [ 0.51357836 -0.44673236 -0.73257591]\n", + " [ 0.51668975 -0.44429932 -0.73186735]\n", + " [ 0.51978001 -0.44184947 -0.73116194]\n", + " [ 0.52285044 -0.4393824 -0.73045912]\n", + " [ 0.52594634 -0.43691378 -0.72971693]\n", + " [ 0.529024 -0.43442863 -0.72897556]\n", + " [ 0.53208466 -0.43192668 -0.72823435]\n", + " [ 0.53517207 -0.4294259 -0.72745051]\n", + " [ 0.53824388 -0.42690941 -0.7266649 ]\n", + " [ 0.54134271 -0.4243968 -0.72583429]\n", + " [ 0.54438621 -0.42184946 -0.72504255]\n", + " [ 0.54745783 -0.41930752 -0.72420379]\n", + " [ 0.55055689 -0.41677341 -0.72331669]\n", + " [ 0.5536043 -0.41420413 -0.72246607]\n", + " [ 0.55664135 -0.41162109 -0.72160827]\n", + " [ 0.55970684 -0.40904898 -0.72069909]\n", + " [ 0.56276243 -0.40646541 -0.71978074]\n", + " [ 0.56580889 -0.40387078 -0.71885235]\n", + " [ 0.5688469 -0.40126558 -0.71791304]\n", + " [ 0.57187709 -0.39865037 -0.71696198]\n", + " [ 0.57490001 -0.39602572 -0.71599833]\n", + " [ 0.57791615 -0.39339228 -0.71502128]\n", + " [ 0.58092592 -0.39075074 -0.71403006]\n", + " [ 0.58392964 -0.38810183 -0.71302394]\n", + " [ 0.58692756 -0.38544632 -0.71200223]\n", + " [ 0.58991985 -0.38278499 -0.71096429]\n", + " [ 0.59290658 -0.38011867 -0.70990956]\n", + " [ 0.59588778 -0.37744818 -0.70883752]\n", + " [ 0.59886335 -0.37477437 -0.70774774]\n", + " [ 0.60183315 -0.37209806 -0.70663986]\n", + " [ 0.60479696 -0.36942009 -0.7055136 ]\n", + " [ 0.60772849 -0.3667032 -0.70441099]\n", + " [ 0.61065503 -0.36398455 -0.70328919]\n", + " [ 0.61360049 -0.36130462 -0.70210641]\n", + " [ 0.61651494 -0.3585855 -0.70094634]\n", + " [ 0.51908838 -0.60947217 -0.59924197]\n", + " [ 0.52234035 -0.60733227 -0.59858841]\n", + " [ 0.52563906 -0.60514755 -0.59791306]\n", + " [ 0.52888108 -0.60298396 -0.5972396 ]\n", + " [ 0.53216966 -0.60077515 -0.59654394]\n", + " [ 0.53545314 -0.59855413 -0.59583797]\n", + " [ 0.53873158 -0.59632082 -0.59512164]\n", + " [ 0.54200501 -0.59407512 -0.59439492]\n", + " [ 0.54527348 -0.59181696 -0.59365774]\n", + " [ 0.54853705 -0.58954623 -0.59291006]\n", + " [ 0.55184643 -0.58722876 -0.59213842]\n", + " [ 0.55510026 -0.58493246 -0.59136936]\n", + " [ 0.55839978 -0.58258894 -0.59057583]\n", + " [ 0.56164418 -0.5802666 -0.58978512]\n", + " [ 0.56493418 -0.57789654 -0.5889694 ]\n", + " [ 0.56821952 -0.57551294 -0.58814235]\n", + " [ 0.57145046 -0.57315042 -0.58731846]\n", + " [ 0.57472696 -0.57073936 -0.58646867]\n", + " [ 0.5779992 -0.56831426 -0.58560723]\n", + " [ 0.58126732 -0.56587491 -0.58473403]\n", + " [ 0.58453153 -0.56342111 -0.58384891]\n", + " [ 0.58779201 -0.5609526 -0.58295174]\n", + " [ 0.59099997 -0.55850451 -0.5820582 ]\n", + " [ 0.59425387 -0.55600591 -0.58113661]\n", + " [ 0.59750483 -0.55349179 -0.58020239]\n", + " [ 0.60075316 -0.55096181 -0.57925533]\n", + " [ 0.60395073 -0.54845124 -0.57831198]\n", + " [ 0.60719508 -0.54588847 -0.57733865]\n", + " [ 0.61038983 -0.54334437 -0.57636894]\n", + " [ 0.61358398 -0.54078279 -0.57538567]\n", + " [ 0.61682611 -0.53816734 -0.57437049]\n", + " [ 0.62002085 -0.53556902 -0.5733585 ]\n", + " [ 0.62321711 -0.53295131 -0.57233149]\n", + " [ 0.62636821 -0.53034926 -0.57130774]\n", + " [ 0.62957055 -0.52769028 -0.57024897]\n", + " [ 0.63273035 -0.52504496 -0.56919249]\n", + " [ 0.63584949 -0.52241188 -0.56813842]\n", + " [ 0.63902438 -0.51971827 -0.56704565]\n", + " [ 0.64216287 -0.51703363 -0.56595325]\n", + " [ 0.645268 -0.51435547 -0.56486074]\n", + " [ 0.64839035 -0.51164587 -0.56374503]\n", + " [ 0.65153431 -0.50890203 -0.56260267]\n", + " [ 0.65461218 -0.50618846 -0.56147674]\n", + " [ 0.65772544 -0.50343113 -0.56031629]\n", + " [ 0.66079153 -0.50068936 -0.5591643 ]\n", + " [ 0.66387296 -0.4979194 -0.55798652]\n", + " [ 0.66690064 -0.49516662 -0.55682453]\n", + " [ 0.66996103 -0.49237638 -0.55562372]\n", + " [ 0.67298702 -0.48958878 -0.5544288 ]\n", + " [ 0.67594676 -0.48679339 -0.55328851]\n", + " [ 0.61651494 -0.3585855 -0.70094634]\n", + " [ 0.6179138 -0.3612179 -0.69835819]\n", + " [ 0.61932749 -0.36388777 -0.69571485]\n", + " [ 0.62070945 -0.3665144 -0.69309954]\n", + " [ 0.62210595 -0.36917833 -0.69042852]\n", + " [ 0.62349379 -0.37183927 -0.68774344]\n", + " [ 0.62487296 -0.37449727 -0.68504422]\n", + " [ 0.62624344 -0.37715236 -0.68233075]\n", + " [ 0.62760524 -0.3798046 -0.67960292]\n", + " [ 0.62895835 -0.38245402 -0.67686063]\n", + " [ 0.63032497 -0.38514001 -0.67406053]\n", + " [ 0.6316606 -0.38778385 -0.67128874]\n", + " [ 0.63300949 -0.39046411 -0.6684585 ]\n", + " [ 0.63432765 -0.39310264 -0.66565663]\n", + " [ 0.63565886 -0.39577746 -0.6627956 ]\n", + " [ 0.63698119 -0.39844961 -0.65991883]\n", + " [ 0.63827321 -0.40108072 -0.65707045]\n", + " [ 0.63957798 -0.40374797 -0.65416175]\n", + " [ 0.64087396 -0.40641285 -0.65123664]\n", + " [ 0.64216119 -0.4090755 -0.64829487]\n", + " [ 0.64343973 -0.41173604 -0.64533615]\n", + " [ 0.64468871 -0.41435697 -0.64240546]\n", + " [ 0.64595013 -0.41701393 -0.63941208]\n", + " [ 0.64720307 -0.41966929 -0.63640071]\n", + " [ 0.64844762 -0.42232324 -0.63337096]\n", + " [ 0.64966333 -0.4249391 -0.6303684 ]\n", + " [ 0.65089152 -0.42759113 -0.62730061]\n", + " [ 0.65209131 -0.43020601 -0.62425933]\n", + " [ 0.65330376 -0.43285722 -0.6211512 ]\n", + " [ 0.65448833 -0.43547239 -0.61806863]\n", + " [ 0.65566565 -0.43808839 -0.61496432]\n", + " [ 0.65683601 -0.44070569 -0.61183736]\n", + " [ 0.65799975 -0.44332476 -0.60868668]\n", + " [ 0.65915731 -0.44594619 -0.60551105]\n", + " [ 0.66028896 -0.44853599 -0.602357 ]\n", + " [ 0.66141551 -0.45113016 -0.59917535]\n", + " [ 0.6625377 -0.45372957 -0.59596415]\n", + " [ 0.66363601 -0.45630178 -0.59276971]\n", + " [ 0.66473189 -0.45888225 -0.58954101]\n", + " [ 0.66582689 -0.46147232 -0.58627456]\n", + " [ 0.66690192 -0.46404179 -0.58301548]\n", + " [ 0.66795882 -0.46659448 -0.57975909]\n", + " [ 0.66900006 -0.46913508 -0.57649908]\n", + " [ 0.67005209 -0.47169817 -0.57317627]\n", + " [ 0.67107573 -0.47423148 -0.56987882]\n", + " [ 0.67207766 -0.47674744 -0.56658935]\n", + " [ 0.67307042 -0.4792617 -0.56328006]\n", + " [ 0.67408147 -0.48179042 -0.5599037 ]\n", + " [ 0.67504278 -0.48428748 -0.55658142]\n", + " [ 0.67594676 -0.48679339 -0.55328851]]\n", + "DEBUG:root:DEBUG: radec2pix: curVec: [[ 0.46747872 -0.48194843 -0.74107311]\n", + " [ 0.46859863 -0.48464224 -0.73860492]\n", + " [ 0.46973101 -0.4873376 -0.7361079 ]\n", + " [ 0.47087665 -0.49003384 -0.73358164]\n", + " [ 0.47198482 -0.49272736 -0.73106093]\n", + " [ 0.47310768 -0.49542149 -0.7285099 ]\n", + " [ 0.47424612 -0.49811539 -0.72592815]\n", + " [ 0.47534913 -0.50080727 -0.72335005]\n", + " [ 0.47646933 -0.50349838 -0.72074015]\n", + " [ 0.4776077 -0.50618772 -0.7180981 ]\n", + " [ 0.47871293 -0.50887536 -0.71545776]\n", + " [ 0.47983812 -0.51156036 -0.71278424]\n", + " [ 0.48093177 -0.5142441 -0.710111 ]\n", + " [ 0.48204731 -0.51692412 -0.7074036 ]\n", + " [ 0.48318583 -0.51959904 -0.70466183]\n", + " [ 0.48424265 -0.52227704 -0.70195138]\n", + " [ 0.48537733 -0.52494439 -0.69917253]\n", + " [ 0.48648513 -0.52760987 -0.69639073]\n", + " [ 0.48756692 -0.53027409 -0.69360499]\n", + " [ 0.48867695 -0.5329297 -0.69078272]\n", + " [ 0.48976303 -0.53558354 -0.68795526]\n", + " [ 0.49082613 -0.53823604 -0.68512165]\n", + " [ 0.49192082 -0.54087726 -0.68225046]\n", + " [ 0.49299471 -0.5435162 -0.67937203]\n", + " [ 0.4940488 -0.54615312 -0.67648544]\n", + " [ 0.49513797 -0.54877535 -0.6735607 ]\n", + " [ 0.49620958 -0.55139415 -0.67062698]\n", + " [ 0.49726469 -0.55400956 -0.66768348]\n", + " [ 0.49830439 -0.55662152 -0.66472943]\n", + " [ 0.49932974 -0.55922995 -0.66176407]\n", + " [ 0.50039581 -0.56181755 -0.65876025]\n", + " [ 0.50144971 -0.56439947 -0.65574494]\n", + " [ 0.50243847 -0.56699421 -0.65274279]\n", + " [ 0.50347112 -0.56956461 -0.64970223]\n", + " [ 0.50449466 -0.57212819 -0.64664864]\n", + " [ 0.50551006 -0.57468446 -0.64358166]\n", + " [ 0.50651824 -0.57723288 -0.64050095]\n", + " [ 0.50752012 -0.57977284 -0.63740629]\n", + " [ 0.50851653 -0.58230372 -0.6342975 ]\n", + " [ 0.50950828 -0.58482483 -0.63117448]\n", + " [ 0.5104961 -0.58733549 -0.62803722]\n", + " [ 0.51148067 -0.58983496 -0.62488579]\n", + " [ 0.51246258 -0.59232251 -0.62172031]\n", + " [ 0.51344238 -0.5947974 -0.61854101]\n", + " [ 0.51442051 -0.59725889 -0.61534816]\n", + " [ 0.51534456 -0.59973603 -0.61215739]\n", + " [ 0.51632058 -0.60216935 -0.60893772]\n", + " [ 0.5172434 -0.60461848 -0.60571921]\n", + " [ 0.51816598 -0.60705296 -0.60248711]\n", + " [ 0.51908838 -0.60947217 -0.59924197]\n", + " [ 0.46747872 -0.48194843 -0.74107311]\n", + " [ 0.47052044 -0.47968532 -0.7406163 ]\n", + " [ 0.47357957 -0.4774109 -0.74013595]\n", + " [ 0.47665643 -0.47512573 -0.73963112]\n", + " [ 0.47970142 -0.47282326 -0.73913781]\n", + " [ 0.48276536 -0.47051035 -0.73861872]\n", + " [ 0.48584852 -0.46818771 -0.73807282]\n", + " [ 0.48895117 -0.46585613 -0.73749904]\n", + " [ 0.49202498 -0.46350719 -0.73693453]\n", + " [ 0.49507123 -0.46114018 -0.73637912]\n", + " [ 0.49818691 -0.45877509 -0.73575486]\n", + " [ 0.50127616 -0.45639278 -0.73513797]\n", + " [ 0.50434026 -0.45399263 -0.73452814]\n", + " [ 0.50742722 -0.45158612 -0.73388527]\n", + " [ 0.51049087 -0.44916176 -0.73324811]\n", + " [ 0.51357836 -0.44673236 -0.73257591]\n", + " [ 0.51668975 -0.44429932 -0.73186735]\n", + " [ 0.51978001 -0.44184947 -0.73116194]\n", + " [ 0.52285044 -0.4393824 -0.73045912]\n", + " [ 0.52594634 -0.43691378 -0.72971693]\n", + " [ 0.529024 -0.43442863 -0.72897556]\n", + " [ 0.53208466 -0.43192668 -0.72823435]\n", + " [ 0.53517207 -0.4294259 -0.72745051]\n", + " [ 0.53824388 -0.42690941 -0.7266649 ]\n", + " [ 0.54134271 -0.4243968 -0.72583429]\n", + " [ 0.54438621 -0.42184946 -0.72504255]\n", + " [ 0.54745783 -0.41930752 -0.72420379]\n", + " [ 0.55055689 -0.41677341 -0.72331669]\n", + " [ 0.5536043 -0.41420413 -0.72246607]\n", + " [ 0.55664135 -0.41162109 -0.72160827]\n", + " [ 0.55970684 -0.40904898 -0.72069909]\n", + " [ 0.56276243 -0.40646541 -0.71978074]\n", + " [ 0.56580889 -0.40387078 -0.71885235]\n", + " [ 0.5688469 -0.40126558 -0.71791304]\n", + " [ 0.57187709 -0.39865037 -0.71696198]\n", + " [ 0.57490001 -0.39602572 -0.71599833]\n", + " [ 0.57791615 -0.39339228 -0.71502128]\n", + " [ 0.58092592 -0.39075074 -0.71403006]\n", + " [ 0.58392964 -0.38810183 -0.71302394]\n", + " [ 0.58692756 -0.38544632 -0.71200223]\n", + " [ 0.58991985 -0.38278499 -0.71096429]\n", + " [ 0.59290658 -0.38011867 -0.70990956]\n", + " [ 0.59588778 -0.37744818 -0.70883752]\n", + " [ 0.59886335 -0.37477437 -0.70774774]\n", + " [ 0.60183315 -0.37209806 -0.70663986]\n", + " [ 0.60479696 -0.36942009 -0.7055136 ]\n", + " [ 0.60772849 -0.3667032 -0.70441099]\n", + " [ 0.61065503 -0.36398455 -0.70328919]\n", + " [ 0.61360049 -0.36130462 -0.70210641]\n", + " [ 0.61651494 -0.3585855 -0.70094634]\n", + " [ 0.51908838 -0.60947217 -0.59924197]\n", + " [ 0.52234035 -0.60733227 -0.59858841]\n", + " [ 0.52563906 -0.60514755 -0.59791306]\n", + " [ 0.52888108 -0.60298396 -0.5972396 ]\n", + " [ 0.53216966 -0.60077515 -0.59654394]\n", + " [ 0.53545314 -0.59855413 -0.59583797]\n", + " [ 0.53873158 -0.59632082 -0.59512164]\n", + " [ 0.54200501 -0.59407512 -0.59439492]\n", + " [ 0.54527348 -0.59181696 -0.59365774]\n", + " [ 0.54853705 -0.58954623 -0.59291006]\n", + " [ 0.55184643 -0.58722876 -0.59213842]\n", + " [ 0.55510026 -0.58493246 -0.59136936]\n", + " [ 0.55839978 -0.58258894 -0.59057583]\n", + " [ 0.56164418 -0.5802666 -0.58978512]\n", + " [ 0.56493418 -0.57789654 -0.5889694 ]\n", + " [ 0.56821952 -0.57551294 -0.58814235]\n", + " [ 0.57145046 -0.57315042 -0.58731846]\n", + " [ 0.57472696 -0.57073936 -0.58646867]\n", + " [ 0.5779992 -0.56831426 -0.58560723]\n", + " [ 0.58126732 -0.56587491 -0.58473403]\n", + " [ 0.58453153 -0.56342111 -0.58384891]\n", + " [ 0.58779201 -0.5609526 -0.58295174]\n", + " [ 0.59099997 -0.55850451 -0.5820582 ]\n", + " [ 0.59425387 -0.55600591 -0.58113661]\n", + " [ 0.59750483 -0.55349179 -0.58020239]\n", + " [ 0.60075316 -0.55096181 -0.57925533]\n", + " [ 0.60395073 -0.54845124 -0.57831198]\n", + " [ 0.60719508 -0.54588847 -0.57733865]\n", + " [ 0.61038983 -0.54334437 -0.57636894]\n", + " [ 0.61358398 -0.54078279 -0.57538567]\n", + " [ 0.61682611 -0.53816734 -0.57437049]\n", + " [ 0.62002085 -0.53556902 -0.5733585 ]\n", + " [ 0.62321711 -0.53295131 -0.57233149]\n", + " [ 0.62636821 -0.53034926 -0.57130774]\n", + " [ 0.62957055 -0.52769028 -0.57024897]\n", + " [ 0.63273035 -0.52504496 -0.56919249]\n", + " [ 0.63584949 -0.52241188 -0.56813842]\n", + " [ 0.63902438 -0.51971827 -0.56704565]\n", + " [ 0.64216287 -0.51703363 -0.56595325]\n", + " [ 0.645268 -0.51435547 -0.56486074]\n", + " [ 0.64839035 -0.51164587 -0.56374503]\n", + " [ 0.65153431 -0.50890203 -0.56260267]\n", + " [ 0.65461218 -0.50618846 -0.56147674]\n", + " [ 0.65772544 -0.50343113 -0.56031629]\n", + " [ 0.66079153 -0.50068936 -0.5591643 ]\n", + " [ 0.66387296 -0.4979194 -0.55798652]\n", + " [ 0.66690064 -0.49516662 -0.55682453]\n", + " [ 0.66996103 -0.49237638 -0.55562372]\n", + " [ 0.67298702 -0.48958878 -0.5544288 ]\n", + " [ 0.67594676 -0.48679339 -0.55328851]\n", + " [ 0.61651494 -0.3585855 -0.70094634]\n", + " [ 0.6179138 -0.3612179 -0.69835819]\n", + " [ 0.61932749 -0.36388777 -0.69571485]\n", + " [ 0.62070945 -0.3665144 -0.69309954]\n", + " [ 0.62210595 -0.36917833 -0.69042852]\n", + " [ 0.62349379 -0.37183927 -0.68774344]\n", + " [ 0.62487296 -0.37449727 -0.68504422]\n", + " [ 0.62624344 -0.37715236 -0.68233075]\n", + " [ 0.62760524 -0.3798046 -0.67960292]\n", + " [ 0.62895835 -0.38245402 -0.67686063]\n", + " [ 0.63032497 -0.38514001 -0.67406053]\n", + " [ 0.6316606 -0.38778385 -0.67128874]\n", + " [ 0.63300949 -0.39046411 -0.6684585 ]\n", + " [ 0.63432765 -0.39310264 -0.66565663]\n", + " [ 0.63565886 -0.39577746 -0.6627956 ]\n", + " [ 0.63698119 -0.39844961 -0.65991883]\n", + " [ 0.63827321 -0.40108072 -0.65707045]\n", + " [ 0.63957798 -0.40374797 -0.65416175]\n", + " [ 0.64087396 -0.40641285 -0.65123664]\n", + " [ 0.64216119 -0.4090755 -0.64829487]\n", + " [ 0.64343973 -0.41173604 -0.64533615]\n", + " [ 0.64468871 -0.41435697 -0.64240546]\n", + " [ 0.64595013 -0.41701393 -0.63941208]\n", + " [ 0.64720307 -0.41966929 -0.63640071]\n", + " [ 0.64844762 -0.42232324 -0.63337096]\n", + " [ 0.64966333 -0.4249391 -0.6303684 ]\n", + " [ 0.65089152 -0.42759113 -0.62730061]\n", + " [ 0.65209131 -0.43020601 -0.62425933]\n", + " [ 0.65330376 -0.43285722 -0.6211512 ]\n", + " [ 0.65448833 -0.43547239 -0.61806863]\n", + " [ 0.65566565 -0.43808839 -0.61496432]\n", + " [ 0.65683601 -0.44070569 -0.61183736]\n", + " [ 0.65799975 -0.44332476 -0.60868668]\n", + " [ 0.65915731 -0.44594619 -0.60551105]\n", + " [ 0.66028896 -0.44853599 -0.602357 ]\n", + " [ 0.66141551 -0.45113016 -0.59917535]\n", + " [ 0.6625377 -0.45372957 -0.59596415]\n", + " [ 0.66363601 -0.45630178 -0.59276971]\n", + " [ 0.66473189 -0.45888225 -0.58954101]\n", + " [ 0.66582689 -0.46147232 -0.58627456]\n", + " [ 0.66690192 -0.46404179 -0.58301548]\n", + " [ 0.66795882 -0.46659448 -0.57975909]\n", + " [ 0.66900006 -0.46913508 -0.57649908]\n", + " [ 0.67005209 -0.47169817 -0.57317627]\n", + " [ 0.67107573 -0.47423148 -0.56987882]\n", + " [ 0.67207766 -0.47674744 -0.56658935]\n", + " [ 0.67307042 -0.4792617 -0.56328006]\n", + " [ 0.67408147 -0.48179042 -0.5599037 ]\n", + " [ 0.67504278 -0.48428748 -0.55658142]\n", + " [ 0.67594676 -0.48679339 -0.55328851]]\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "DEBUG:root:DEBUG: radec2pix: curVec Shape: (200, 3)\n", + "DEBUG:root:DEBUG: radec2pix: camVec: [[-0.20209188 -0.2023706 -0.20263339 -0.20287911 -0.2031508 -0.20340395\n", + " -0.20363726 -0.20389505 -0.20413122 -0.20434433 -0.20457995 -0.2047904\n", + " -0.20502212 -0.20522634 -0.20540132 -0.20564434 -0.20580641 -0.20598518\n", + " -0.20618016 -0.20633931 -0.20651253 -0.20669916 -0.20684556 -0.20700293\n", + " -0.20717044 -0.2072929 -0.2074228 -0.20755919 -0.20770107 -0.20784739\n", + " -0.20794061 -0.20803531 -0.20818767 -0.20828241 -0.20837531 -0.20846526\n", + " -0.20855116 -0.20863193 -0.20870649 -0.20877384 -0.20883299 -0.20888301\n", + " -0.20892303 -0.20895227 -0.20897 -0.20903636 -0.2090294 -0.20907028\n", + " -0.20909783 -0.20911176 -0.20209188 -0.19835247 -0.19458674 -0.19079457\n", + " -0.1870166 -0.18321116 -0.17937825 -0.17551787 -0.17166889 -0.1678299\n", + " -0.16392398 -0.16002733 -0.15613855 -0.15222018 -0.148308 -0.14436583\n", + " -0.14039419 -0.13642716 -0.13246342 -0.1284696 -0.12447791 -0.12048711\n", + " -0.11646619 -0.11244535 -0.1083953 -0.10437223 -0.1003196 -0.0962391\n", + " -0.09218203 -0.08812112 -0.08403282 -0.07994126 -0.07584595 -0.07174649\n", + " -0.06764254 -0.06353387 -0.05942033 -0.05530187 -0.05117853 -0.04705044\n", + " -0.04291781 -0.03878098 -0.03464032 -0.03049633 -0.02634954 -0.02220059\n", + " -0.01805541 -0.01390706 -0.00975344 -0.00560226 -0.20911176 -0.20525005\n", + " -0.20132006 -0.19744405 -0.19349952 -0.18954757 -0.18558811 -0.18162105\n", + " -0.17764628 -0.17366367 -0.16961154 -0.16561284 -0.16154424 -0.15752883\n", + " -0.15344311 -0.14934852 -0.14530663 -0.14119368 -0.13707116 -0.13293878\n", + " -0.12879624 -0.1246432 -0.12054127 -0.1163661 -0.11217917 -0.10797999\n", + " -0.10383006 -0.09960462 -0.09542711 -0.09123466 -0.08696422 -0.08273901\n", + " -0.07849574 -0.07429519 -0.07001149 -0.0657671 -0.06155983 -0.05726284\n", + " -0.05299724 -0.04875916 -0.04448179 -0.04015922 -0.03590736 -0.03159221\n", + " -0.02732261 -0.02301642 -0.01876355 -0.01445215 -0.01016818 -0.005941\n", + " -0.00560226 -0.00561158 -0.00561932 -0.00562888 -0.00563679 -0.00564478\n", + " -0.00565283 -0.00566096 -0.00566916 -0.00567743 -0.00568372 -0.0056921\n", + " -0.00569837 -0.00570684 -0.00571308 -0.00571925 -0.00572778 -0.00573385\n", + " -0.0057398 -0.00574562 -0.00575128 -0.00575961 -0.00576493 -0.00576998\n", + " -0.0057747 -0.00578235 -0.00578633 -0.00579336 -0.00579624 -0.00580227\n", + " -0.00580767 -0.00581229 -0.00581591 -0.00581824 -0.00582409 -0.00582847\n", + " -0.00583085 -0.00583687 -0.00584019 -0.00583961 -0.00584157 -0.00584595\n", + " -0.00585229 -0.00584787 -0.00585099 -0.00586018 -0.00586897 -0.00585527\n", + " -0.00587101 -0.005941 ]\n", + " [-0.20195241 -0.19821028 -0.19444185 -0.19064699 -0.18686631 -0.1830582\n", + " -0.17922263 -0.17539889 -0.1715468 -0.16766646 -0.16379573 -0.15989604\n", + " -0.15600423 -0.15208289 -0.1481324 -0.14422272 -0.14024829 -0.13627852\n", + " -0.1323121 -0.12831571 -0.12432153 -0.12032832 -0.11630514 -0.11228214\n", + " -0.10825825 -0.10420511 -0.10015075 -0.09609429 -0.0920349 -0.08797181\n", + " -0.08388155 -0.0797882 -0.07571211 -0.07161022 -0.06750402 -0.0633933\n", + " -0.0592779 -0.05515779 -0.05103301 -0.0469037 -0.0427701 -0.03863251\n", + " -0.03449134 -0.03034707 -0.02620025 -0.02205791 -0.01790671 -0.01375899\n", + " -0.00960909 -0.0054578 -0.20195241 -0.20223082 -0.20249341 -0.20273905\n", + " -0.20301075 -0.20326403 -0.20349761 -0.20371014 -0.20394633 -0.20420615\n", + " -0.20439546 -0.20460631 -0.20483854 -0.20504343 -0.20526824 -0.20546315\n", + " -0.20562631 -0.2058063 -0.20600263 -0.20616328 -0.20633814 -0.20652655\n", + " -0.20667488 -0.2068343 -0.20695017 -0.2071288 -0.20726117 -0.20734494\n", + " -0.20748908 -0.20763778 -0.20773351 -0.20783083 -0.20792863 -0.2080258\n", + " -0.20812123 -0.2082138 -0.2083024 -0.20838592 -0.20846331 -0.20853353\n", + " -0.20859558 -0.20864851 -0.20869146 -0.20872362 -0.20874424 -0.20875268\n", + " -0.20880929 -0.20885291 -0.20882207 -0.20883851 -0.0054578 -0.00546414\n", + " -0.00546893 -0.00547548 -0.00548043 -0.00548544 -0.00549052 -0.00549566\n", + " -0.00550086 -0.00550614 -0.00550948 -0.00551484 -0.00551816 -0.0055236\n", + " -0.00552687 -0.00553009 -0.00553557 -0.00553868 -0.00554168 -0.00554454\n", + " -0.00554725 -0.00554977 -0.00555492 -0.00555705 -0.00555887 -0.00556031\n", + " -0.00556462 -0.0055652 -0.00556875 -0.00557186 -0.00557041 -0.00557201\n", + " -0.00557265 -0.00557674 -0.00557487 -0.00557629 -0.00558146 -0.00557888\n", + " -0.00557942 -0.00558345 -0.00558361 -0.00557782 -0.00558199 -0.00557651\n", + " -0.00557906 -0.00557423 -0.00558371 -0.00557709 -0.00558115 -0.00564722\n", + " -0.20883851 -0.20497617 -0.20104554 -0.1971689 -0.1932237 -0.18927108\n", + " -0.18531094 -0.18134318 -0.17736768 -0.17338434 -0.16933147 -0.16533199\n", + " -0.1612626 -0.15724637 -0.15315981 -0.14906434 -0.14502156 -0.14090768\n", + " -0.13678418 -0.1326508 -0.12850722 -0.12441503 -0.12025 -0.11607363\n", + " -0.11188544 -0.10774698 -0.10353358 -0.09936872 -0.09512753 -0.09093337\n", + " -0.08672323 -0.08249606 -0.07825065 -0.07398563 -0.06976152 -0.06551431\n", + " -0.06124178 -0.05700339 -0.05273383 -0.04842922 -0.04414669 -0.03987993\n", + " -0.03562076 -0.03129684 -0.02701629 -0.02275681 -0.01848473 -0.01414754\n", + " -0.00988208 -0.00564722]\n", + " [ 0.95831837 0.95904057 0.95975626 0.9604654 0.96115073 0.96182978\n", + " 0.96250253 0.96315214 0.96379569 0.96443318 0.96504819 0.96565737\n", + " 0.96624459 0.96682622 0.96740224 0.96794122 0.96849065 0.96901923\n", + " 0.96952733 0.9700305 0.97051364 0.97097711 0.97143607 0.97187577\n", + " 0.97229654 0.97271319 0.9731113 0.97349118 0.97385309 0.97419732\n", + " 0.97453814 0.97486161 0.97515413 0.9754437 0.97571663 0.97597312\n", + " 0.97621337 0.97643758 0.97664591 0.97683854 0.97701561 0.97717727\n", + " 0.97732365 0.97745486 0.97757101 0.97765907 0.9777454 0.97780382\n", + " 0.97784751 0.97787652 0.95831837 0.95904066 0.95975644 0.96046567\n", + " 0.9611511 0.96183024 0.96250307 0.96316959 0.9638131 0.96443402\n", + " 0.9650655 0.96567464 0.96626183 0.96684343 0.96740358 0.96795837\n", + " 0.96850777 0.96903632 0.96954441 0.97004756 0.97053069 0.97099415\n", + " 0.9714531 0.9718928 0.97232818 0.97273023 0.97312835 0.97352253\n", + " 0.97388436 0.97422853 0.97456928 0.97489268 0.97519899 0.97548845\n", + " 0.97576126 0.97601765 0.97625782 0.97648196 0.97669023 0.97688281\n", + " 0.97705985 0.97722149 0.97736785 0.97749907 0.97761523 0.97771645\n", + " 0.97778969 0.97784818 0.97790501 0.97793409 0.97787652 0.97869431\n", + " 0.97951025 0.98029887 0.98108506 0.98185622 0.98261229 0.98335324\n", + " 0.98407903 0.98478963 0.9854956 0.98617543 0.98685004 0.98749894\n", + " 0.98814203 0.98876915 0.98937118 0.9899665 0.9905457 0.99110874\n", + " 0.99165556 0.99218611 0.99269277 0.99319084 0.99367245 0.99413752\n", + " 0.99457949 0.99501153 0.99542084 0.99581383 0.99619586 0.99655567\n", + " 0.99689887 0.9972207 0.99753061 0.99781942 0.99808779 0.99834355\n", + " 0.99857907 0.99879496 0.99899459 0.99917772 0.99933953 0.99948529\n", + " 0.9996111 0.99971955 0.99980836 0.99988001 0.99993273 0.99996641\n", + " 0.97793409 0.97875088 0.97956578 0.98035338 0.98113854 0.98190865\n", + " 0.98266368 0.98340358 0.98412833 0.98483787 0.98554277 0.98622154\n", + " 0.98689508 0.98754292 0.98818492 0.98881096 0.98941192 0.99000614\n", + " 0.99058424 0.99114618 0.9916919 0.99221355 0.9927269 0.99322385\n", + " 0.99370433 0.99416153 0.99460913 0.99503382 0.99544822 0.99584008\n", + " 0.99621552 0.99657444 0.99691675 0.99724234 0.9975467 0.99783461\n", + " 0.99810593 0.99835692 0.99859153 0.99880955 0.99900798 0.99918738\n", + " 0.99934824 0.99949303 0.99961787 0.99972385 0.99981192 0.99988277\n", + " 0.99993394 0.99996641]]\n", + "DEBUG:root:DEBUG: radec2pix: camVec Shape: (3, 200)\n", + "DEBUG:root:DEBUG: cartToSphere: vec: [[-0.20209188 -0.20195241 0.95831837]\n", + " [-0.2023706 -0.19821028 0.95904057]\n", + " [-0.20263339 -0.19444185 0.95975626]\n", + " [-0.20287911 -0.19064699 0.9604654 ]\n", + " [-0.2031508 -0.18686631 0.96115073]\n", + " [-0.20340395 -0.1830582 0.96182978]\n", + " [-0.20363726 -0.17922263 0.96250253]\n", + " [-0.20389505 -0.17539889 0.96315214]\n", + " [-0.20413122 -0.1715468 0.96379569]\n", + " [-0.20434433 -0.16766646 0.96443318]\n", + " [-0.20457995 -0.16379573 0.96504819]\n", + " [-0.2047904 -0.15989604 0.96565737]\n", + " [-0.20502212 -0.15600423 0.96624459]\n", + " [-0.20522634 -0.15208289 0.96682622]\n", + " [-0.20540132 -0.1481324 0.96740224]\n", + " [-0.20564434 -0.14422272 0.96794122]\n", + " [-0.20580641 -0.14024829 0.96849065]\n", + " [-0.20598518 -0.13627852 0.96901923]\n", + " [-0.20618016 -0.1323121 0.96952733]\n", + " [-0.20633931 -0.12831571 0.9700305 ]\n", + " [-0.20651253 -0.12432153 0.97051364]\n", + " [-0.20669916 -0.12032832 0.97097711]\n", + " [-0.20684556 -0.11630514 0.97143607]\n", + " [-0.20700293 -0.11228214 0.97187577]\n", + " [-0.20717044 -0.10825825 0.97229654]\n", + " [-0.2072929 -0.10420511 0.97271319]\n", + " [-0.2074228 -0.10015075 0.9731113 ]\n", + " [-0.20755919 -0.09609429 0.97349118]\n", + " [-0.20770107 -0.0920349 0.97385309]\n", + " [-0.20784739 -0.08797181 0.97419732]\n", + " [-0.20794061 -0.08388155 0.97453814]\n", + " [-0.20803531 -0.0797882 0.97486161]\n", + " [-0.20818767 -0.07571211 0.97515413]\n", + " [-0.20828241 -0.07161022 0.9754437 ]\n", + " [-0.20837531 -0.06750402 0.97571663]\n", + " [-0.20846526 -0.0633933 0.97597312]\n", + " [-0.20855116 -0.0592779 0.97621337]\n", + " [-0.20863193 -0.05515779 0.97643758]\n", + " [-0.20870649 -0.05103301 0.97664591]\n", + " [-0.20877384 -0.0469037 0.97683854]\n", + " [-0.20883299 -0.0427701 0.97701561]\n", + " [-0.20888301 -0.03863251 0.97717727]\n", + " [-0.20892303 -0.03449134 0.97732365]\n", + " [-0.20895227 -0.03034707 0.97745486]\n", + " [-0.20897 -0.02620025 0.97757101]\n", + " [-0.20903636 -0.02205791 0.97765907]\n", + " [-0.2090294 -0.01790671 0.9777454 ]\n", + " [-0.20907028 -0.01375899 0.97780382]\n", + " [-0.20909783 -0.00960909 0.97784751]\n", + " [-0.20911176 -0.0054578 0.97787652]\n", + " [-0.20209188 -0.20195241 0.95831837]\n", + " [-0.19835247 -0.20223082 0.95904066]\n", + " [-0.19458674 -0.20249341 0.95975644]\n", + " [-0.19079457 -0.20273905 0.96046567]\n", + " [-0.1870166 -0.20301075 0.9611511 ]\n", + " [-0.18321116 -0.20326403 0.96183024]\n", + " [-0.17937825 -0.20349761 0.96250307]\n", + " [-0.17551787 -0.20371014 0.96316959]\n", + " [-0.17166889 -0.20394633 0.9638131 ]\n", + " [-0.1678299 -0.20420615 0.96443402]\n", + " [-0.16392398 -0.20439546 0.9650655 ]\n", + " [-0.16002733 -0.20460631 0.96567464]\n", + " [-0.15613855 -0.20483854 0.96626183]\n", + " [-0.15222018 -0.20504343 0.96684343]\n", + " [-0.148308 -0.20526824 0.96740358]\n", + " [-0.14436583 -0.20546315 0.96795837]\n", + " [-0.14039419 -0.20562631 0.96850777]\n", + " [-0.13642716 -0.2058063 0.96903632]\n", + " [-0.13246342 -0.20600263 0.96954441]\n", + " [-0.1284696 -0.20616328 0.97004756]\n", + " [-0.12447791 -0.20633814 0.97053069]\n", + " [-0.12048711 -0.20652655 0.97099415]\n", + " [-0.11646619 -0.20667488 0.9714531 ]\n", + " [-0.11244535 -0.2068343 0.9718928 ]\n", + " [-0.1083953 -0.20695017 0.97232818]\n", + " [-0.10437223 -0.2071288 0.97273023]\n", + " [-0.1003196 -0.20726117 0.97312835]\n", + " [-0.0962391 -0.20734494 0.97352253]\n", + " [-0.09218203 -0.20748908 0.97388436]\n", + " [-0.08812112 -0.20763778 0.97422853]\n", + " [-0.08403282 -0.20773351 0.97456928]\n", + " [-0.07994126 -0.20783083 0.97489268]\n", + " [-0.07584595 -0.20792863 0.97519899]\n", + " [-0.07174649 -0.2080258 0.97548845]\n", + " [-0.06764254 -0.20812123 0.97576126]\n", + " [-0.06353387 -0.2082138 0.97601765]\n", + " [-0.05942033 -0.2083024 0.97625782]\n", + " [-0.05530187 -0.20838592 0.97648196]\n", + " [-0.05117853 -0.20846331 0.97669023]\n", + " [-0.04705044 -0.20853353 0.97688281]\n", + " [-0.04291781 -0.20859558 0.97705985]\n", + " [-0.03878098 -0.20864851 0.97722149]\n", + " [-0.03464032 -0.20869146 0.97736785]\n", + " [-0.03049633 -0.20872362 0.97749907]\n", + " [-0.02634954 -0.20874424 0.97761523]\n", + " [-0.02220059 -0.20875268 0.97771645]\n", + " [-0.01805541 -0.20880929 0.97778969]\n", + " [-0.01390706 -0.20885291 0.97784818]\n", + " [-0.00975344 -0.20882207 0.97790501]\n", + " [-0.00560226 -0.20883851 0.97793409]\n", + " [-0.20911176 -0.0054578 0.97787652]\n", + " [-0.20525005 -0.00546414 0.97869431]\n", + " [-0.20132006 -0.00546893 0.97951025]\n", + " [-0.19744405 -0.00547548 0.98029887]\n", + " [-0.19349952 -0.00548043 0.98108506]\n", + " [-0.18954757 -0.00548544 0.98185622]\n", + " [-0.18558811 -0.00549052 0.98261229]\n", + " [-0.18162105 -0.00549566 0.98335324]\n", + " [-0.17764628 -0.00550086 0.98407903]\n", + " [-0.17366367 -0.00550614 0.98478963]\n", + " [-0.16961154 -0.00550948 0.9854956 ]\n", + " [-0.16561284 -0.00551484 0.98617543]\n", + " [-0.16154424 -0.00551816 0.98685004]\n", + " [-0.15752883 -0.0055236 0.98749894]\n", + " [-0.15344311 -0.00552687 0.98814203]\n", + " [-0.14934852 -0.00553009 0.98876915]\n", + " [-0.14530663 -0.00553557 0.98937118]\n", + " [-0.14119368 -0.00553868 0.9899665 ]\n", + " [-0.13707116 -0.00554168 0.9905457 ]\n", + " [-0.13293878 -0.00554454 0.99110874]\n", + " [-0.12879624 -0.00554725 0.99165556]\n", + " [-0.1246432 -0.00554977 0.99218611]\n", + " [-0.12054127 -0.00555492 0.99269277]\n", + " [-0.1163661 -0.00555705 0.99319084]\n", + " [-0.11217917 -0.00555887 0.99367245]\n", + " [-0.10797999 -0.00556031 0.99413752]\n", + " [-0.10383006 -0.00556462 0.99457949]\n", + " [-0.09960462 -0.0055652 0.99501153]\n", + " [-0.09542711 -0.00556875 0.99542084]\n", + " [-0.09123466 -0.00557186 0.99581383]\n", + " [-0.08696422 -0.00557041 0.99619586]\n", + " [-0.08273901 -0.00557201 0.99655567]\n", + " [-0.07849574 -0.00557265 0.99689887]\n", + " [-0.07429519 -0.00557674 0.9972207 ]\n", + " [-0.07001149 -0.00557487 0.99753061]\n", + " [-0.0657671 -0.00557629 0.99781942]\n", + " [-0.06155983 -0.00558146 0.99808779]\n", + " [-0.05726284 -0.00557888 0.99834355]\n", + " [-0.05299724 -0.00557942 0.99857907]\n", + " [-0.04875916 -0.00558345 0.99879496]\n", + " [-0.04448179 -0.00558361 0.99899459]\n", + " [-0.04015922 -0.00557782 0.99917772]\n", + " [-0.03590736 -0.00558199 0.99933953]\n", + " [-0.03159221 -0.00557651 0.99948529]\n", + " [-0.02732261 -0.00557906 0.9996111 ]\n", + " [-0.02301642 -0.00557423 0.99971955]\n", + " [-0.01876355 -0.00558371 0.99980836]\n", + " [-0.01445215 -0.00557709 0.99988001]\n", + " [-0.01016818 -0.00558115 0.99993273]\n", + " [-0.005941 -0.00564722 0.99996641]\n", + " [-0.00560226 -0.20883851 0.97793409]\n", + " [-0.00561158 -0.20497617 0.97875088]\n", + " [-0.00561932 -0.20104554 0.97956578]\n", + " [-0.00562888 -0.1971689 0.98035338]\n", + " [-0.00563679 -0.1932237 0.98113854]\n", + " [-0.00564478 -0.18927108 0.98190865]\n", + " [-0.00565283 -0.18531094 0.98266368]\n", + " [-0.00566096 -0.18134318 0.98340358]\n", + " [-0.00566916 -0.17736768 0.98412833]\n", + " [-0.00567743 -0.17338434 0.98483787]\n", + " [-0.00568372 -0.16933147 0.98554277]\n", + " [-0.0056921 -0.16533199 0.98622154]\n", + " [-0.00569837 -0.1612626 0.98689508]\n", + " [-0.00570684 -0.15724637 0.98754292]\n", + " [-0.00571308 -0.15315981 0.98818492]\n", + " [-0.00571925 -0.14906434 0.98881096]\n", + " [-0.00572778 -0.14502156 0.98941192]\n", + " [-0.00573385 -0.14090768 0.99000614]\n", + " [-0.0057398 -0.13678418 0.99058424]\n", + " [-0.00574562 -0.1326508 0.99114618]\n", + " [-0.00575128 -0.12850722 0.9916919 ]\n", + " [-0.00575961 -0.12441503 0.99221355]\n", + " [-0.00576493 -0.12025 0.9927269 ]\n", + " [-0.00576998 -0.11607363 0.99322385]\n", + " [-0.0057747 -0.11188544 0.99370433]\n", + " [-0.00578235 -0.10774698 0.99416153]\n", + " [-0.00578633 -0.10353358 0.99460913]\n", + " [-0.00579336 -0.09936872 0.99503382]\n", + " [-0.00579624 -0.09512753 0.99544822]\n", + " [-0.00580227 -0.09093337 0.99584008]\n", + " [-0.00580767 -0.08672323 0.99621552]\n", + " [-0.00581229 -0.08249606 0.99657444]\n", + " [-0.00581591 -0.07825065 0.99691675]\n", + " [-0.00581824 -0.07398563 0.99724234]\n", + " [-0.00582409 -0.06976152 0.9975467 ]\n", + " [-0.00582847 -0.06551431 0.99783461]\n", + " [-0.00583085 -0.06124178 0.99810593]\n", + " [-0.00583687 -0.05700339 0.99835692]\n", + " [-0.00584019 -0.05273383 0.99859153]\n", + " [-0.00583961 -0.04842922 0.99880955]\n", + " [-0.00584157 -0.04414669 0.99900798]\n", + " [-0.00584595 -0.03987993 0.99918738]\n", + " [-0.00585229 -0.03562076 0.99934824]\n", + " [-0.00584787 -0.03129684 0.99949303]\n", + " [-0.00585099 -0.02701629 0.99961787]\n", + " [-0.00586018 -0.02275681 0.99972385]\n", + " [-0.00586897 -0.01848473 0.99981192]\n", + " [-0.00585527 -0.01414754 0.99988277]\n", + " [-0.00587101 -0.00988208 0.99993394]\n", + " [-0.005941 -0.00564722 0.99996641]]\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "DEBUG:root:DEBUG: radec2pix: lng: [224.98022202 224.40496423 223.81817388 223.2196275 222.60910286\n", + " 221.98637962 221.3512401 220.70347004 220.0428595 219.3692038\n", + " 218.68230452 217.9819706 217.26801949 216.54027839 215.79858556\n", + " 215.04279171 214.27276144 213.48837478 212.68952877 211.87613912\n", + " 211.04814185 210.20549511 209.34818088 208.47620675 207.58960777\n", + " 206.68844816 205.77282307 204.84286027 203.89872178 202.94060536\n", + " 201.96874592 200.98341677 199.9849307 198.97364085 197.94994135\n", + " 196.91426772 195.86709702 194.80894764 193.7403788 192.66198978\n", + " 191.5744187 190.47834104 189.37446774 188.26354304 187.14634186\n", + " 186.02366699 184.89634589 183.76522723 182.63117726 181.49507587\n", + " 224.98022202 225.5547062 226.1407239 226.73849963 227.34825671\n", + " 227.97021668 228.60459851 229.25161783 229.91148603 230.58440935\n", + " 231.27058788 231.97021444 232.68347343 233.41053961 234.1515768\n", + " 234.90673644 235.6761562 236.45995841 237.2582485 238.0711133\n", + " 238.89861942 239.74081142 240.5977101 241.46931067 242.35558097\n", + " 243.25645967 244.17185454 245.10164068 246.04565898 247.0037145\n", + " 247.97557508 248.96097008 249.95958926 250.97108187 251.99505603\n", + " 253.03107822 254.07867319 255.13732411 256.20647301 257.28552158\n", + " 258.37383234 259.4707301 260.57550384 261.68740891 262.80566953\n", + " 263.92948172 265.0580164 266.19042291 267.32583263 268.46336293\n", + " 181.49507587 181.52495944 181.55607787 181.58850929 181.62233857\n", + " 181.65765804 181.69456836 181.73317945 181.77361161 181.81599674\n", + " 181.86047979 181.90722041 181.95639487 182.00819828 182.06284715\n", + " 182.12058245 182.18167311 182.24642023 182.31516204 182.38827977\n", + " 182.46620475 182.54942685 182.63850481 182.73407877 182.83688558\n", + " 182.94777786 183.06774755 183.19795561 183.33976956 183.4948115\n", + " 183.66502013 183.8527319 184.06078827 184.29267973 184.55274191\n", + " 184.84642717 185.18068786 185.56452847 186.00982009 186.53253432\n", + " 187.15467079 187.90737697 188.83621106 190.01046653 191.54069174\n", + " 193.61403973 196.57210739 201.10162274 208.76165761 223.54778015\n", + " 268.46336293 268.43181954 268.39897097 268.36473453 268.32902037\n", + " 268.29173075 268.25275911 268.21198904 268.16929317 268.12453179\n", + " 268.07755137 268.02818276 267.97623919 267.92151391 267.86377743\n", + " 267.8027743 267.73821938 267.66979334 267.59713745 267.51984722\n", + " 267.43746496 267.34947071 267.25527126 267.15418681 267.04543461\n", + " 266.92810868 266.80115465 266.66333805 266.51320424 266.34902709\n", + " 266.16874266 265.9698624 265.74935835 265.50350885 265.22768834\n", + " 264.91607601 264.56124432 264.15356565 263.68033621 263.12444743\n", + " 262.46230814 261.6604778 260.66998033 259.41621916 257.78001395\n", + " 255.55933507 252.3851796 247.51670623 239.28516149 223.54778015]\n", + "DEBUG:root:DEBUG: radec2pix: lat: [73.39915628 73.54460965 73.68999352 73.83530275 73.97695099 74.11851367\n", + " 74.25998497 74.39777788 74.53546711 74.67304615 74.80692727 74.94068445\n", + " 75.07072948 75.20063585 75.33039585 75.45283952 75.57870161 75.70081173\n", + " 75.81916119 75.9373221 76.05170438 76.16229874 76.27267669 76.3792476\n", + " 76.48200169 76.58451003 76.68318161 76.77800635 76.86897409 76.95607468\n", + " 77.04287895 77.12579582 77.20123429 77.27634645 77.34754159 77.41481022\n", + " 77.47814309 77.53753124 77.59296608 77.64443939 77.69194339 77.7354708\n", + " 77.77501484 77.81056931 77.84212859 77.86610673 77.88966142 77.90562707\n", + " 77.91758179 77.92552346 73.39915628 73.54462759 73.69002993 73.83535818\n", + " 73.97702602 74.11860886 74.2601009 74.40149613 74.5392073 74.6732279\n", + " 74.81071317 74.94449414 75.07456358 75.20449501 75.3306997 75.45675069\n", + " 75.58263975 75.70477746 75.82315516 75.94134493 76.05575668 76.16638113\n", + " 76.27678975 76.38339192 76.48975882 76.58871853 76.68742298 76.78586206\n", + " 76.87686362 76.96399844 77.05083733 77.13378916 77.21284388 77.28799155\n", + " 77.35922241 77.42652691 77.48989573 77.54931987 77.60479066 77.65629984\n", + " 77.70383955 77.74740244 77.78698167 77.82257097 77.85416465 77.88175769\n", + " 77.90176473 77.9177631 77.93333083 77.94130376 77.92552346 78.15160571\n", + " 78.38149276 78.6080296 78.83838549 79.06898717 79.29984277 79.53096087\n", + " 79.76235056 79.99402147 80.22956478 80.46182936 80.69798869 80.93089308\n", + " 81.16771758 81.40489521 81.63885994 81.87678983 82.11512113 82.35387245\n", + " 82.59306385 82.83271705 83.06927461 83.30992413 83.55111257 83.7928705\n", + " 84.0316505 84.27465153 84.51475252 84.75557988 85.00076524 85.24320343\n", + " 85.48653944 85.7272648 85.97262423 86.21555078 86.45615445 86.70172565\n", + " 86.94525374 87.18691904 87.4305198 87.67632133 87.91749024 88.16160161\n", + " 88.40202033 88.64300601 88.87826364 89.1124002 89.33540051 89.53035623\n", + " 77.94130376 78.1673999 78.39730125 78.62385279 78.85422383 79.08484113\n", + " 79.31571283 79.54684755 79.7782544 80.00994304 80.24550468 80.47778823\n", + " 80.71396721 80.94689196 81.18373759 81.42093715 81.65492468 81.89287828\n", + " 82.13123427 82.37001133 82.60922959 82.84532987 83.08549779 83.32617807\n", + " 83.56739877 83.80560961 84.04800627 84.28746391 84.53118557 84.77205489\n", + " 85.01370373 85.25618913 85.49957535 85.74393523 85.98577086 86.22875862\n", + " 86.47300892 86.71506962 86.95867351 87.20400125 87.44768935 87.69000295\n", + " 87.93126959 88.17548042 88.41599313 88.65346895 88.88873163 89.12269056\n", + " 89.34139722 89.53035623]\n", + "DEBUG:root:DEBUG: optics_fp: rtanth: [44.62618284 44.1870541 43.74973246 43.31420191 42.8911242 42.46973503\n", + " 42.05002277 41.64254884 41.23666405 40.83236119 40.44010983 40.04936703\n", + " 39.67054655 39.29317221 38.91724459 38.56343293 38.20065818 37.84956904\n", + " 37.51009741 37.17194394 36.845332 36.53020621 36.21634353 35.91390971\n", + " 35.62286054 35.33304055 35.05456392 34.78739598 34.5315058 34.2868659\n", + " 34.0434159 33.81119782 33.60020022 33.39037403 33.19172589 33.00424226\n", + " 32.8279116 32.66272413 32.50867164 32.3657473 32.23394544 32.1132614\n", + " 32.00369133 31.90523206 31.81788091 31.751541 31.68639597 31.64225299\n", + " 31.60920661 31.58725677 44.62618284 44.18700005 43.74962313 43.31403604\n", + " 42.89090049 42.46945217 42.0496794 41.63157132 41.22565627 40.83182791\n", + " 40.42903449 40.03825442 39.65939376 39.28197722 38.91636547 38.55214581\n", + " 38.18932201 37.83818104 37.49865485 37.16044493 36.83377388 36.51858639\n", + " 36.20466027 35.90216054 35.60091043 35.32115321 35.04260448 34.76528226\n", + " 34.50933152 34.26462829 34.02111365 33.78882842 33.56775196 33.35786631\n", + " 33.15915591 32.97160742 32.79520949 32.62995254 32.47582857 32.33283093\n", + " 32.20095416 32.08019381 31.97054622 31.87200843 31.78457795 31.70825268\n", + " 31.65293088 31.60870548 31.56568065 31.54364958 31.58725677 30.96347312\n", + " 30.33128746 29.71031664 29.08084988 28.45264031 27.82561002 27.19968174\n", + " 26.57477865 25.95082417 25.31813554 24.69587313 24.06477059 23.44388914\n", + " 22.81405627 22.18474829 21.56535201 20.93682278 20.3085647 19.68048857\n", + " 19.05250227 18.42451027 17.805771 17.17744799 16.54880678 15.91973169\n", + " 15.29939575 14.66906191 14.04716844 13.42426908 12.79095668 12.16555112\n", + " 11.53859935 10.91909286 10.28835584 9.66452414 9.04725703 8.41782088\n", + " 7.79415535 7.17574676 6.55283645 5.92471753 5.30880685 4.68571562\n", + " 4.07233999 3.45776887 2.85801169 2.26127942 1.69305251 1.19636028\n", + " 31.54364958 30.91997251 30.28789033 29.66701555 29.03764176 28.40951997\n", + " 27.78257235 27.15672168 26.53189117 25.9080043 25.27538001 24.65317524\n", + " 24.02212698 23.4012932 22.77150449 22.14223554 21.5228717 20.89437108\n", + " 20.26613626 19.6380779 19.01010376 18.39149199 17.76337816 17.13504945\n", + " 16.50639612 15.88661175 15.25693943 14.63585348 14.004637 13.38168754\n", + " 12.75755991 12.13207454 11.50503348 10.87621699 10.25457927 9.6306244\n", + " 9.00403837 8.38363409 7.75980253 7.1320516 6.50894832 5.8897672\n", + " 5.27362665 4.6502994 4.03669952 3.43109096 2.83132916 2.23505616\n", + " 1.67777366 1.19636028]\n", + "DEBUG:root:DEBUG: optics_fp: cphi: [-0.70735083 -0.71441206 -0.72154065 -0.72873408 -0.73598954 -0.74330387\n", + " -0.75067359 -0.75809484 -0.7655634 -0.77307463 -0.78062347 -0.78820445\n", + " -0.7958116 -0.80343851 -0.81107826 -0.81872344 -0.8263661 -0.83399779\n", + " -0.8416095 -0.84919168 -0.85673425 -0.86422655 -0.87165744 -0.87901519\n", + " -0.8862876 -0.89346196 -0.90052511 -0.90746345 -0.91426299 -0.9209094\n", + " -0.92738806 -0.93368411 -0.93978254 -0.94566825 -0.95132614 -0.95674116\n", + " -0.96189848 -0.96678348 -0.97138197 -0.97568018 -0.97966493 -0.98332373\n", + " -0.98664485 -0.98961744 -0.99223164 -0.99447863 -0.99635074 -0.99784151\n", + " -0.99894574 -0.99965957 -0.70735083 -0.70022793 -0.69288951 -0.68532917\n", + " -0.67754046 -0.66951682 -0.66125166 -0.65273836 -0.64397027 -0.63494076\n", + " -0.6256432 -0.61607104 -0.60621782 -0.59607719 -0.58564293 -0.57490906\n", + " -0.56386978 -0.55251962 -0.54085339 -0.52886629 -0.51655396 -0.5039125\n", + " -0.49093857 -0.47762941 -0.46398293 -0.44999776 -0.43567331 -0.42100984\n", + " -0.40600851 -0.39067145 -0.37500181 -0.35900382 -0.34268282 -0.32604533\n", + " -0.30909906 -0.29185295 -0.27431718 -0.25650321 -0.23842374 -0.22009271\n", + " -0.20152528 -0.1827378 -0.16374775 -0.14457365 -0.12523506 -0.10575242\n", + " -0.08614697 -0.06644068 -0.04665608 -0.02681616 -0.99965957 -0.99964583\n", + " -0.99963123 -0.99961569 -0.99959915 -0.99958151 -0.99956267 -0.99954251\n", + " -0.99952092 -0.99949775 -0.99947285 -0.99944603 -0.9994171 -0.99938582\n", + " -0.99935194 -0.99931517 -0.99927514 -0.99923149 -0.99918374 -0.99913138\n", + " -0.99907378 -0.99901022 -0.99893986 -0.99886168 -0.99877448 -0.99867682\n", + " -0.99856695 -0.99844276 -0.99830162 -0.99814032 -0.99795483 -0.99774005\n", + " -0.99748948 -0.9971947 -0.99684469 -0.99642473 -0.99591489 -0.99528762\n", + " -0.99450397 -0.99350742 -0.99221355 -0.99049176 -0.9881315 -0.98477602\n", + " -0.97978287 -0.97190335 -0.95846154 -0.93294334 -0.87662887 -0.72480009\n", + " -0.02681616 -0.0273665 -0.02793959 -0.02853689 -0.02915996 -0.02981051\n", + " -0.03049038 -0.03120161 -0.03194643 -0.03272725 -0.03354676 -0.03440791\n", + " -0.03531395 -0.03626847 -0.03727548 -0.03833942 -0.03946527 -0.04065857\n", + " -0.04192557 -0.04327332 -0.04470976 -0.04624396 -0.04788623 -0.04964839\n", + " -0.05154404 -0.05358894 -0.05580138 -0.05820283 -0.06081851 -0.06367838\n", + " -0.06681823 -0.07028118 -0.07411966 -0.07839804 -0.08319628 -0.08861482\n", + " -0.0947817 -0.10186255 -0.11007543 -0.11971323 -0.13117838 -0.14503873\n", + " -0.16212085 -0.1836731 -0.21166573 -0.24937726 -0.30261644 -0.38241403\n", + " -0.51076559 -0.72480009]\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "DEBUG:root:DEBUG: optics_fp: sphi: [-0.70686265 -0.69972524 -0.69237208 -0.68479678 -0.67699291 -0.66895393\n", + " -0.66067327 -0.65214432 -0.64336046 -0.63431508 -0.62500159 -0.61541348\n", + " -0.6055443 -0.59538774 -0.58493765 -0.57418807 -0.56313326 -0.55176778\n", + " -0.54008652 -0.52808473 -0.51575811 -0.50310284 -0.49011561 -0.47679377\n", + " -0.46313529 -0.44913887 -0.434804 -0.42013103 -0.40512119 -0.38977669\n", + " -0.37410077 -0.35809773 -0.34177298 -0.32513313 -0.30818595 -0.29094045\n", + " -0.27340688 -0.25559674 -0.23752278 -0.21919898 -0.20064054 -0.18186382\n", + " -0.16288631 -0.14372654 -0.12440405 -0.10493926 -0.08535338 -0.06566832\n", + " -0.04590657 -0.02609104 -0.70686265 -0.71391935 -0.72104378 -0.72823343\n", + " -0.73548551 -0.7427969 -0.75016414 -0.75758342 -0.76505051 -0.77256083\n", + " -0.78010934 -0.78769059 -0.79529865 -0.80292714 -0.81056916 -0.81821732\n", + " -0.82586371 -0.83349989 -0.84111688 -0.84870516 -0.85625464 -0.8637547\n", + " -0.87119419 -0.87856141 -0.88584414 -0.89302968 -0.90010486 -0.90705607\n", + " -0.9138693 -0.92053018 -0.92702408 -0.93333609 -0.93945116 -0.94535414\n", + " -0.95102985 -0.9564632 -0.96163927 -0.96654338 -0.97116122 -0.97547896\n", + " -0.97948331 -0.98316168 -0.98650224 -0.98949404 -0.9921271 -0.99439249\n", + " -0.99628244 -0.99779038 -0.99891101 -0.99964038 -0.02609104 -0.02661242\n", + " -0.02715534 -0.02772117 -0.02831137 -0.02892755 -0.02957149 -0.03024507\n", + " -0.03095042 -0.03168982 -0.03246579 -0.03328113 -0.0341389 -0.0350425\n", + " -0.0359957 -0.0370027 -0.03806818 -0.03919739 -0.04039621 -0.04167128\n", + " -0.0430301 -0.04448121 -0.04603432 -0.04770057 -0.04949277 -0.05142574\n", + " -0.05351672 -0.05578588 -0.05825697 -0.06095815 -0.06392305 -0.06719219\n", + " -0.07081481 -0.07485132 -0.07937674 -0.08448528 -0.0902969 -0.09696674\n", + " -0.10469892 -0.11376738 -0.12454829 -0.13757208 -0.15361037 -0.17382807\n", + " -0.20006383 -0.23538027 -0.28522181 -0.36002323 -0.48116714 -0.68895924\n", + " -0.99964038 -0.99962547 -0.99960961 -0.99959274 -0.99957476 -0.99955557\n", + " -0.99953506 -0.99951311 -0.99948958 -0.99946432 -0.99943715 -0.99940787\n", + " -0.99937627 -0.99934208 -0.99930503 -0.99926477 -0.99922094 -0.9991731\n", + " -0.99912074 -0.99906327 -0.99900002 -0.99893018 -0.9988528 -0.99876676\n", + " -0.99867072 -0.99856308 -0.99844189 -0.99830478 -0.99814884 -0.99797047\n", + " -0.99776516 -0.99752722 -0.99724936 -0.99692214 -0.99653318 -0.99606597\n", + " -0.99549808 -0.99479848 -0.99392324 -0.99280851 -0.99135878 -0.98942598\n", + " -0.98677091 -0.98298738 -0.97734212 -0.96840641 -0.95311242 -0.92399108\n", + " -0.85972002 -0.68895924]\n", + "DEBUG:root:DEBUG: optics_fp: xyfp: [[31.56636729 31.54458196]\n", + " [31.56776419 30.9187971 ]\n", + " [31.56721031 30.29109313]\n", + " [31.56453521 29.66142619]\n", + " [31.56741874 29.03698691]\n", + " [31.56791843 28.41029602]\n", + " [31.56584147 27.78132587]\n", + " [31.56900146 27.15695161]\n", + " [31.56928067 26.5300392 ]\n", + " [31.56646237 25.9005825 ]\n", + " [31.56849897 25.27513314]\n", + " [31.56708916 24.64692032]\n", + " [31.57028107 24.02227335]\n", + " [31.56964763 23.39467314]\n", + " [31.564931 22.76416169]\n", + " [31.57278634 22.14266294]\n", + " [31.56772903 21.51206102]\n", + " [31.56645701 20.88417268]\n", + " [31.56885435 20.25869794]\n", + " [31.56610563 19.62993612]\n", + " [31.56665772 19.00327894]\n", + " [31.57037424 18.37845031]\n", + " [31.56824511 17.75019547]\n", + " [31.56887206 17.12352849]\n", + " [31.57209946 16.49820382]\n", + " [31.56872769 15.86944191]\n", + " [31.5675151 15.24186478]\n", + " [31.56829045 14.61526453]\n", + " [31.57087786 13.98944474]\n", + " [31.57509721 13.36422123]\n", + " [31.57145741 12.73566814]\n", + " [31.56897816 12.10771307]\n", + " [31.57688159 11.48364069]\n", + " [31.57621672 10.85631683]\n", + " [31.5761564 10.22922356]\n", + " [31.57651716 9.60226907]\n", + " [31.57711814 8.97537685]\n", + " [31.57778226 8.34848579]\n", + " [31.57833746 7.72155005]\n", + " [31.57861802 7.09453889]\n", + " [31.57846587 6.4674363 ]\n", + " [31.57773185 5.84024046]\n", + " [31.57627708 5.21296312]\n", + " [31.57397413 4.58562869]\n", + " [31.57070823 3.95827332]\n", + " [31.57622909 3.33198317]\n", + " [31.57076413 2.70454099]\n", + " [31.57395338 2.0778937 ]\n", + " [31.57588222 1.45107016]\n", + " [31.57650355 0.82414423]\n", + " [31.56636729 31.54458196]\n", + " [30.94097162 31.54595455]\n", + " [30.31365492 31.54539347]\n", + " [29.68437257 31.54272884]\n", + " [29.06032028 31.54563567]\n", + " [28.43401236 31.5461774 ]\n", + " [27.8054203 31.54416173]\n", + " [27.17452364 31.539388 ]\n", + " [26.54809715 31.53970945]\n", + " [25.92579171 31.54507084]\n", + " [25.29415046 31.53906756]\n", + " [24.66640921 31.53775632]\n", + " [24.04223138 31.5410625 ]\n", + " [23.41509043 31.54056553]\n", + " [22.79109438 31.54440551]\n", + " [22.16397774 31.54403331]\n", + " [21.53380473 31.53917516]\n", + " [20.90633733 31.53811986]\n", + " [20.28127448 31.54075175]\n", + " [19.65290671 31.53826129]\n", + " [19.0266318 31.53908973]\n", + " [18.40217234 31.54310076]\n", + " [17.77426423 31.54128971]\n", + " [17.14792785 31.54225265]\n", + " [16.51821482 31.53685785]\n", + " [15.89443987 31.54283825]\n", + " [15.26712753 31.54201873]\n", + " [14.63652591 31.53406031]\n", + " [14.01108227 31.5370185 ]\n", + " [13.38621206 31.54162454]\n", + " [12.75797932 31.53839149]\n", + " [12.13031854 31.53633298]\n", + " [11.50309203 31.53526352]\n", + " [10.87617659 31.53499687]\n", + " [10.24946387 31.535347 ]\n", + " [ 9.62286075 31.53612923]\n", + " [ 8.99628945 31.53716128]\n", + " [ 8.36968769 31.53826455]\n", + " [ 7.74300857 31.53926536]\n", + " [ 7.11622042 31.53999624]\n", + " [ 6.48930643 31.54029726]\n", + " [ 5.86226415 31.54001734]\n", + " [ 5.23510485 31.53901557]\n", + " [ 4.60785265 31.53716245]\n", + " [ 3.98054357 31.53434109]\n", + " [ 3.35322438 31.53044837]\n", + " [ 2.72680422 31.53525919]\n", + " [ 2.10010401 31.53886214]\n", + " [ 1.47273099 31.531306 ]\n", + " [ 0.8458796 31.53230592]\n", + " [31.57650355 0.82414423]\n", + " [30.95250669 0.82401298]\n", + " [30.32010205 0.82365654]\n", + " [29.6988988 0.82360461]\n", + " [29.06919291 0.82331859]\n", + " [28.44073318 0.82306531]\n", + " [27.81344099 0.82284463]\n", + " [27.18723824 0.82265641]\n", + " [26.56204723 0.82250053]\n", + " [25.93779042 0.82237684]\n", + " [25.30478902 0.82197332]\n", + " [24.68219236 0.82190653]\n", + " [24.05074319 0.82154473]\n", + " [23.42949044 0.82153239]\n", + " [22.7992715 0.82120786]\n", + " [22.16955541 0.82089551]\n", + " [21.54972024 0.82095366]\n", + " [20.92073256 0.8206687 ]\n", + " [20.29198764 0.82038895]\n", + " [19.66339361 0.82011107]\n", + " [19.03485539 0.81983113]\n", + " [18.40627408 0.81954453]\n", + " [17.78689436 0.81967659]\n", + " [17.15789456 0.81937404]\n", + " [16.52852592 0.81904622]\n", + " [15.89866704 0.81868391]\n", + " [15.277471 0.81877343]\n", + " [14.64621859 0.81832652]\n", + " [14.02331102 0.8183455 ]\n", + " [13.39930428 0.81831863]\n", + " [12.764797 0.81763703]\n", + " [12.13805759 0.81743007]\n", + " [11.50963147 0.81710367]\n", + " [10.88846159 0.81730855]\n", + " [10.25589287 0.81665619]\n", + " [ 9.62997083 0.81651004]\n", + " [ 9.01029799 0.81693928]\n", + " [ 8.37815293 0.81624866]\n", + " [ 7.7513184 0.81603961]\n", + " [ 7.12915761 0.81636588]\n", + " [ 6.5018131 0.81614457]\n", + " [ 5.86838389 0.81507569]\n", + " [ 5.24579926 0.81548778]\n", + " [ 4.61438036 0.81450893]\n", + " [ 3.99000894 0.81472794]\n", + " [ 3.36061715 0.81389059]\n", + " [ 2.73929428 0.81516725]\n", + " [ 2.10964557 0.81411312]\n", + " [ 1.48417872 0.81464124]\n", + " [ 0.86712204 0.82424347]\n", + " [ 0.8458796 31.53230592]\n", + " [ 0.84617128 30.90839197]\n", + " [ 0.84623129 30.27606635]\n", + " [ 0.84660442 29.65493336]\n", + " [ 0.84673654 29.02529373]\n", + " [ 0.84690216 28.39689387]\n", + " [ 0.84710119 27.76965513]\n", + " [ 0.84733353 27.14349937]\n", + " [ 0.84759908 26.51834883]\n", + " [ 0.84789774 25.8941259 ]\n", + " [ 0.84790718 25.26115374]\n", + " [ 0.84826424 24.63857742]\n", + " [ 0.84831608 24.00714361]\n", + " [ 0.84872909 23.38589708]\n", + " [ 0.84881876 22.75567893]\n", + " [ 0.84892056 22.12595599]\n", + " [ 0.84940588 21.50610415]\n", + " [ 0.8495352 20.8770935 ]\n", + " [ 0.84966933 20.24831699]\n", + " [ 0.84980473 19.61968235]\n", + " [ 0.84993726 18.991094 ]\n", + " [ 0.85049551 18.37181632]\n", + " [ 0.85062127 17.74299995]\n", + " [ 0.85072763 17.11391779]\n", + " [ 0.85080639 16.48445453]\n", + " [ 0.85134661 15.86378397]\n", + " [ 0.85135833 15.23316742]\n", + " [ 0.85184803 14.61104247]\n", + " [ 0.85174116 13.97871219]\n", + " [ 0.85212424 13.35452903]\n", + " [ 0.85243763 12.72904886]\n", + " [ 0.85265655 12.10207459]\n", + " [ 0.85274915 11.47338722]\n", + " [ 0.85267413 10.84274148]\n", + " [ 0.8531428 10.21902849]\n", + " [ 0.85341609 9.59273721]\n", + " [ 0.8534181 8.96350292]\n", + " [ 0.85397832 8.34002647]\n", + " [ 0.8541636 7.71264804]\n", + " [ 0.85380093 7.08076154]\n", + " [ 0.85383332 6.45270307]\n", + " [ 0.85424438 5.82748867]\n", + " [ 0.85496486 5.20386137]\n", + " [ 0.85413489 4.57118564]\n", + " [ 0.85443094 3.94523646]\n", + " [ 0.85563608 3.32269049]\n", + " [ 0.85680674 2.69857499]\n", + " [ 0.85471684 2.06517195]\n", + " [ 0.85694905 1.44241561]\n", + " [ 0.86712204 0.82424347]]\n", + "DEBUG:root:DEBUG: optics_fp: xyfp shape: (200, 2)\n", + "DEBUG:root:DEBUG: make_az_asym: xyp: [[31.56636729 31.54458196]\n", + " [31.56776419 30.9187971 ]\n", + " [31.56721031 30.29109313]\n", + " [31.56453521 29.66142619]\n", + " [31.56741874 29.03698691]\n", + " [31.56791843 28.41029602]\n", + " [31.56584147 27.78132587]\n", + " [31.56900146 27.15695161]\n", + " [31.56928067 26.5300392 ]\n", + " [31.56646237 25.9005825 ]\n", + " [31.56849897 25.27513314]\n", + " [31.56708916 24.64692032]\n", + " [31.57028107 24.02227335]\n", + " [31.56964763 23.39467314]\n", + " [31.564931 22.76416169]\n", + " [31.57278634 22.14266294]\n", + " [31.56772903 21.51206102]\n", + " [31.56645701 20.88417268]\n", + " [31.56885435 20.25869794]\n", + " [31.56610563 19.62993612]\n", + " [31.56665772 19.00327894]\n", + " [31.57037424 18.37845031]\n", + " [31.56824511 17.75019547]\n", + " [31.56887206 17.12352849]\n", + " [31.57209946 16.49820382]\n", + " [31.56872769 15.86944191]\n", + " [31.5675151 15.24186478]\n", + " [31.56829045 14.61526453]\n", + " [31.57087786 13.98944474]\n", + " [31.57509721 13.36422123]\n", + " [31.57145741 12.73566814]\n", + " [31.56897816 12.10771307]\n", + " [31.57688159 11.48364069]\n", + " [31.57621672 10.85631683]\n", + " [31.5761564 10.22922356]\n", + " [31.57651716 9.60226907]\n", + " [31.57711814 8.97537685]\n", + " [31.57778226 8.34848579]\n", + " [31.57833746 7.72155005]\n", + " [31.57861802 7.09453889]\n", + " [31.57846587 6.4674363 ]\n", + " [31.57773185 5.84024046]\n", + " [31.57627708 5.21296312]\n", + " [31.57397413 4.58562869]\n", + " [31.57070823 3.95827332]\n", + " [31.57622909 3.33198317]\n", + " [31.57076413 2.70454099]\n", + " [31.57395338 2.0778937 ]\n", + " [31.57588222 1.45107016]\n", + " [31.57650355 0.82414423]\n", + " [31.56636729 31.54458196]\n", + " [30.94097162 31.54595455]\n", + " [30.31365492 31.54539347]\n", + " [29.68437257 31.54272884]\n", + " [29.06032028 31.54563567]\n", + " [28.43401236 31.5461774 ]\n", + " [27.8054203 31.54416173]\n", + " [27.17452364 31.539388 ]\n", + " [26.54809715 31.53970945]\n", + " [25.92579171 31.54507084]\n", + " [25.29415046 31.53906756]\n", + " [24.66640921 31.53775632]\n", + " [24.04223138 31.5410625 ]\n", + " [23.41509043 31.54056553]\n", + " [22.79109438 31.54440551]\n", + " [22.16397774 31.54403331]\n", + " [21.53380473 31.53917516]\n", + " [20.90633733 31.53811986]\n", + " [20.28127448 31.54075175]\n", + " [19.65290671 31.53826129]\n", + " [19.0266318 31.53908973]\n", + " [18.40217234 31.54310076]\n", + " [17.77426423 31.54128971]\n", + " [17.14792785 31.54225265]\n", + " [16.51821482 31.53685785]\n", + " [15.89443987 31.54283825]\n", + " [15.26712753 31.54201873]\n", + " [14.63652591 31.53406031]\n", + " [14.01108227 31.5370185 ]\n", + " [13.38621206 31.54162454]\n", + " [12.75797932 31.53839149]\n", + " [12.13031854 31.53633298]\n", + " [11.50309203 31.53526352]\n", + " [10.87617659 31.53499687]\n", + " [10.24946387 31.535347 ]\n", + " [ 9.62286075 31.53612923]\n", + " [ 8.99628945 31.53716128]\n", + " [ 8.36968769 31.53826455]\n", + " [ 7.74300857 31.53926536]\n", + " [ 7.11622042 31.53999624]\n", + " [ 6.48930643 31.54029726]\n", + " [ 5.86226415 31.54001734]\n", + " [ 5.23510485 31.53901557]\n", + " [ 4.60785265 31.53716245]\n", + " [ 3.98054357 31.53434109]\n", + " [ 3.35322438 31.53044837]\n", + " [ 2.72680422 31.53525919]\n", + " [ 2.10010401 31.53886214]\n", + " [ 1.47273099 31.531306 ]\n", + " [ 0.8458796 31.53230592]\n", + " [31.57650355 0.82414423]\n", + " [30.95250669 0.82401298]\n", + " [30.32010205 0.82365654]\n", + " [29.6988988 0.82360461]\n", + " [29.06919291 0.82331859]\n", + " [28.44073318 0.82306531]\n", + " [27.81344099 0.82284463]\n", + " [27.18723824 0.82265641]\n", + " [26.56204723 0.82250053]\n", + " [25.93779042 0.82237684]\n", + " [25.30478902 0.82197332]\n", + " [24.68219236 0.82190653]\n", + " [24.05074319 0.82154473]\n", + " [23.42949044 0.82153239]\n", + " [22.7992715 0.82120786]\n", + " [22.16955541 0.82089551]\n", + " [21.54972024 0.82095366]\n", + " [20.92073256 0.8206687 ]\n", + " [20.29198764 0.82038895]\n", + " [19.66339361 0.82011107]\n", + " [19.03485539 0.81983113]\n", + " [18.40627408 0.81954453]\n", + " [17.78689436 0.81967659]\n", + " [17.15789456 0.81937404]\n", + " [16.52852592 0.81904622]\n", + " [15.89866704 0.81868391]\n", + " [15.277471 0.81877343]\n", + " [14.64621859 0.81832652]\n", + " [14.02331102 0.8183455 ]\n", + " [13.39930428 0.81831863]\n", + " [12.764797 0.81763703]\n", + " [12.13805759 0.81743007]\n", + " [11.50963147 0.81710367]\n", + " [10.88846159 0.81730855]\n", + " [10.25589287 0.81665619]\n", + " [ 9.62997083 0.81651004]\n", + " [ 9.01029799 0.81693928]\n", + " [ 8.37815293 0.81624866]\n", + " [ 7.7513184 0.81603961]\n", + " [ 7.12915761 0.81636588]\n", + " [ 6.5018131 0.81614457]\n", + " [ 5.86838389 0.81507569]\n", + " [ 5.24579926 0.81548778]\n", + " [ 4.61438036 0.81450893]\n", + " [ 3.99000894 0.81472794]\n", + " [ 3.36061715 0.81389059]\n", + " [ 2.73929428 0.81516725]\n", + " [ 2.10964557 0.81411312]\n", + " [ 1.48417872 0.81464124]\n", + " [ 0.86712204 0.82424347]\n", + " [ 0.8458796 31.53230592]\n", + " [ 0.84617128 30.90839197]\n", + " [ 0.84623129 30.27606635]\n", + " [ 0.84660442 29.65493336]\n", + " [ 0.84673654 29.02529373]\n", + " [ 0.84690216 28.39689387]\n", + " [ 0.84710119 27.76965513]\n", + " [ 0.84733353 27.14349937]\n", + " [ 0.84759908 26.51834883]\n", + " [ 0.84789774 25.8941259 ]\n", + " [ 0.84790718 25.26115374]\n", + " [ 0.84826424 24.63857742]\n", + " [ 0.84831608 24.00714361]\n", + " [ 0.84872909 23.38589708]\n", + " [ 0.84881876 22.75567893]\n", + " [ 0.84892056 22.12595599]\n", + " [ 0.84940588 21.50610415]\n", + " [ 0.8495352 20.8770935 ]\n", + " [ 0.84966933 20.24831699]\n", + " [ 0.84980473 19.61968235]\n", + " [ 0.84993726 18.991094 ]\n", + " [ 0.85049551 18.37181632]\n", + " [ 0.85062127 17.74299995]\n", + " [ 0.85072763 17.11391779]\n", + " [ 0.85080639 16.48445453]\n", + " [ 0.85134661 15.86378397]\n", + " [ 0.85135833 15.23316742]\n", + " [ 0.85184803 14.61104247]\n", + " [ 0.85174116 13.97871219]\n", + " [ 0.85212424 13.35452903]\n", + " [ 0.85243763 12.72904886]\n", + " [ 0.85265655 12.10207459]\n", + " [ 0.85274915 11.47338722]\n", + " [ 0.85267413 10.84274148]\n", + " [ 0.8531428 10.21902849]\n", + " [ 0.85341609 9.59273721]\n", + " [ 0.8534181 8.96350292]\n", + " [ 0.85397832 8.34002647]\n", + " [ 0.8541636 7.71264804]\n", + " [ 0.85380093 7.08076154]\n", + " [ 0.85383332 6.45270307]\n", + " [ 0.85424438 5.82748867]\n", + " [ 0.85496486 5.20386137]\n", + " [ 0.85413489 4.57118564]\n", + " [ 0.85443094 3.94523646]\n", + " [ 0.85563608 3.32269049]\n", + " [ 0.85680674 2.69857499]\n", + " [ 0.85471684 2.06517195]\n", + " [ 0.85694905 1.44241561]\n", + " [ 0.86712204 0.82424347]]\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "DEBUG:root:DEBUG: make_az_asym: xyp: shape: (200, 2)\n", + "DEBUG:root:DEBUG: radec2pix: xyfp: [[31.56636729 31.54458196]\n", + " [31.56776419 30.9187971 ]\n", + " [31.56721031 30.29109313]\n", + " [31.56453521 29.66142619]\n", + " [31.56741874 29.03698691]\n", + " [31.56791843 28.41029602]\n", + " [31.56584147 27.78132587]\n", + " [31.56900146 27.15695161]\n", + " [31.56928067 26.5300392 ]\n", + " [31.56646237 25.9005825 ]\n", + " [31.56849897 25.27513314]\n", + " [31.56708916 24.64692032]\n", + " [31.57028107 24.02227335]\n", + " [31.56964763 23.39467314]\n", + " [31.564931 22.76416169]\n", + " [31.57278634 22.14266294]\n", + " [31.56772903 21.51206102]\n", + " [31.56645701 20.88417268]\n", + " [31.56885435 20.25869794]\n", + " [31.56610563 19.62993612]\n", + " [31.56665772 19.00327894]\n", + " [31.57037424 18.37845031]\n", + " [31.56824511 17.75019547]\n", + " [31.56887206 17.12352849]\n", + " [31.57209946 16.49820382]\n", + " [31.56872769 15.86944191]\n", + " [31.5675151 15.24186478]\n", + " [31.56829045 14.61526453]\n", + " [31.57087786 13.98944474]\n", + " [31.57509721 13.36422123]\n", + " [31.57145741 12.73566814]\n", + " [31.56897816 12.10771307]\n", + " [31.57688159 11.48364069]\n", + " [31.57621672 10.85631683]\n", + " [31.5761564 10.22922356]\n", + " [31.57651716 9.60226907]\n", + " [31.57711814 8.97537685]\n", + " [31.57778226 8.34848579]\n", + " [31.57833746 7.72155005]\n", + " [31.57861802 7.09453889]\n", + " [31.57846587 6.4674363 ]\n", + " [31.57773185 5.84024046]\n", + " [31.57627708 5.21296312]\n", + " [31.57397413 4.58562869]\n", + " [31.57070823 3.95827332]\n", + " [31.57622909 3.33198317]\n", + " [31.57076413 2.70454099]\n", + " [31.57395338 2.0778937 ]\n", + " [31.57588222 1.45107016]\n", + " [31.57650355 0.82414423]\n", + " [31.56636729 31.54458196]\n", + " [30.94097162 31.54595455]\n", + " [30.31365492 31.54539347]\n", + " [29.68437257 31.54272884]\n", + " [29.06032028 31.54563567]\n", + " [28.43401236 31.5461774 ]\n", + " [27.8054203 31.54416173]\n", + " [27.17452364 31.539388 ]\n", + " [26.54809715 31.53970945]\n", + " [25.92579171 31.54507084]\n", + " [25.29415046 31.53906756]\n", + " [24.66640921 31.53775632]\n", + " [24.04223138 31.5410625 ]\n", + " [23.41509043 31.54056553]\n", + " [22.79109438 31.54440551]\n", + " [22.16397774 31.54403331]\n", + " [21.53380473 31.53917516]\n", + " [20.90633733 31.53811986]\n", + " [20.28127448 31.54075175]\n", + " [19.65290671 31.53826129]\n", + " [19.0266318 31.53908973]\n", + " [18.40217234 31.54310076]\n", + " [17.77426423 31.54128971]\n", + " [17.14792785 31.54225265]\n", + " [16.51821482 31.53685785]\n", + " [15.89443987 31.54283825]\n", + " [15.26712753 31.54201873]\n", + " [14.63652591 31.53406031]\n", + " [14.01108227 31.5370185 ]\n", + " [13.38621206 31.54162454]\n", + " [12.75797932 31.53839149]\n", + " [12.13031854 31.53633298]\n", + " [11.50309203 31.53526352]\n", + " [10.87617659 31.53499687]\n", + " [10.24946387 31.535347 ]\n", + " [ 9.62286075 31.53612923]\n", + " [ 8.99628945 31.53716128]\n", + " [ 8.36968769 31.53826455]\n", + " [ 7.74300857 31.53926536]\n", + " [ 7.11622042 31.53999624]\n", + " [ 6.48930643 31.54029726]\n", + " [ 5.86226415 31.54001734]\n", + " [ 5.23510485 31.53901557]\n", + " [ 4.60785265 31.53716245]\n", + " [ 3.98054357 31.53434109]\n", + " [ 3.35322438 31.53044837]\n", + " [ 2.72680422 31.53525919]\n", + " [ 2.10010401 31.53886214]\n", + " [ 1.47273099 31.531306 ]\n", + " [ 0.8458796 31.53230592]\n", + " [31.57650355 0.82414423]\n", + " [30.95250669 0.82401298]\n", + " [30.32010205 0.82365654]\n", + " [29.6988988 0.82360461]\n", + " [29.06919291 0.82331859]\n", + " [28.44073318 0.82306531]\n", + " [27.81344099 0.82284463]\n", + " [27.18723824 0.82265641]\n", + " [26.56204723 0.82250053]\n", + " [25.93779042 0.82237684]\n", + " [25.30478902 0.82197332]\n", + " [24.68219236 0.82190653]\n", + " [24.05074319 0.82154473]\n", + " [23.42949044 0.82153239]\n", + " [22.7992715 0.82120786]\n", + " [22.16955541 0.82089551]\n", + " [21.54972024 0.82095366]\n", + " [20.92073256 0.8206687 ]\n", + " [20.29198764 0.82038895]\n", + " [19.66339361 0.82011107]\n", + " [19.03485539 0.81983113]\n", + " [18.40627408 0.81954453]\n", + " [17.78689436 0.81967659]\n", + " [17.15789456 0.81937404]\n", + " [16.52852592 0.81904622]\n", + " [15.89866704 0.81868391]\n", + " [15.277471 0.81877343]\n", + " [14.64621859 0.81832652]\n", + " [14.02331102 0.8183455 ]\n", + " [13.39930428 0.81831863]\n", + " [12.764797 0.81763703]\n", + " [12.13805759 0.81743007]\n", + " [11.50963147 0.81710367]\n", + " [10.88846159 0.81730855]\n", + " [10.25589287 0.81665619]\n", + " [ 9.62997083 0.81651004]\n", + " [ 9.01029799 0.81693928]\n", + " [ 8.37815293 0.81624866]\n", + " [ 7.7513184 0.81603961]\n", + " [ 7.12915761 0.81636588]\n", + " [ 6.5018131 0.81614457]\n", + " [ 5.86838389 0.81507569]\n", + " [ 5.24579926 0.81548778]\n", + " [ 4.61438036 0.81450893]\n", + " [ 3.99000894 0.81472794]\n", + " [ 3.36061715 0.81389059]\n", + " [ 2.73929428 0.81516725]\n", + " [ 2.10964557 0.81411312]\n", + " [ 1.48417872 0.81464124]\n", + " [ 0.86712204 0.82424347]\n", + " [ 0.8458796 31.53230592]\n", + " [ 0.84617128 30.90839197]\n", + " [ 0.84623129 30.27606635]\n", + " [ 0.84660442 29.65493336]\n", + " [ 0.84673654 29.02529373]\n", + " [ 0.84690216 28.39689387]\n", + " [ 0.84710119 27.76965513]\n", + " [ 0.84733353 27.14349937]\n", + " [ 0.84759908 26.51834883]\n", + " [ 0.84789774 25.8941259 ]\n", + " [ 0.84790718 25.26115374]\n", + " [ 0.84826424 24.63857742]\n", + " [ 0.84831608 24.00714361]\n", + " [ 0.84872909 23.38589708]\n", + " [ 0.84881876 22.75567893]\n", + " [ 0.84892056 22.12595599]\n", + " [ 0.84940588 21.50610415]\n", + " [ 0.8495352 20.8770935 ]\n", + " [ 0.84966933 20.24831699]\n", + " [ 0.84980473 19.61968235]\n", + " [ 0.84993726 18.991094 ]\n", + " [ 0.85049551 18.37181632]\n", + " [ 0.85062127 17.74299995]\n", + " [ 0.85072763 17.11391779]\n", + " [ 0.85080639 16.48445453]\n", + " [ 0.85134661 15.86378397]\n", + " [ 0.85135833 15.23316742]\n", + " [ 0.85184803 14.61104247]\n", + " [ 0.85174116 13.97871219]\n", + " [ 0.85212424 13.35452903]\n", + " [ 0.85243763 12.72904886]\n", + " [ 0.85265655 12.10207459]\n", + " [ 0.85274915 11.47338722]\n", + " [ 0.85267413 10.84274148]\n", + " [ 0.8531428 10.21902849]\n", + " [ 0.85341609 9.59273721]\n", + " [ 0.8534181 8.96350292]\n", + " [ 0.85397832 8.34002647]\n", + " [ 0.8541636 7.71264804]\n", + " [ 0.85380093 7.08076154]\n", + " [ 0.85383332 6.45270307]\n", + " [ 0.85424438 5.82748867]\n", + " [ 0.85496486 5.20386137]\n", + " [ 0.85413489 4.57118564]\n", + " [ 0.85443094 3.94523646]\n", + " [ 0.85563608 3.32269049]\n", + " [ 0.85680674 2.69857499]\n", + " [ 0.85471684 2.06517195]\n", + " [ 0.85694905 1.44241561]\n", + " [ 0.86712204 0.82424347]]\n", + "DEBUG:root:DEBUG: radec2pix: xyfp Shape: (200, 2)\n", + "DEBUG:root:DEBUG: mm_to_pix: fitpx: [[0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]\n", + " [0. 0.]]\n", + "DEBUG:root:DEBUG: mm_to_pix: fitpx.shape: (200, 2)\n", + "DEBUG:root:DEBUG: radec2pix: xyfp: [[31.56636729 31.54458196]\n", + " [31.56776419 30.9187971 ]\n", + " [31.56721031 30.29109313]\n", + " [31.56453521 29.66142619]\n", + " [31.56741874 29.03698691]\n", + " [31.56791843 28.41029602]\n", + " [31.56584147 27.78132587]\n", + " [31.56900146 27.15695161]\n", + " [31.56928067 26.5300392 ]\n", + " [31.56646237 25.9005825 ]\n", + " [31.56849897 25.27513314]\n", + " [31.56708916 24.64692032]\n", + " [31.57028107 24.02227335]\n", + " [31.56964763 23.39467314]\n", + " [31.564931 22.76416169]\n", + " [31.57278634 22.14266294]\n", + " [31.56772903 21.51206102]\n", + " [31.56645701 20.88417268]\n", + " [31.56885435 20.25869794]\n", + " [31.56610563 19.62993612]\n", + " [31.56665772 19.00327894]\n", + " [31.57037424 18.37845031]\n", + " [31.56824511 17.75019547]\n", + " [31.56887206 17.12352849]\n", + " [31.57209946 16.49820382]\n", + " [31.56872769 15.86944191]\n", + " [31.5675151 15.24186478]\n", + " [31.56829045 14.61526453]\n", + " [31.57087786 13.98944474]\n", + " [31.57509721 13.36422123]\n", + " [31.57145741 12.73566814]\n", + " [31.56897816 12.10771307]\n", + " [31.57688159 11.48364069]\n", + " [31.57621672 10.85631683]\n", + " [31.5761564 10.22922356]\n", + " [31.57651716 9.60226907]\n", + " [31.57711814 8.97537685]\n", + " [31.57778226 8.34848579]\n", + " [31.57833746 7.72155005]\n", + " [31.57861802 7.09453889]\n", + " [31.57846587 6.4674363 ]\n", + " [31.57773185 5.84024046]\n", + " [31.57627708 5.21296312]\n", + " [31.57397413 4.58562869]\n", + " [31.57070823 3.95827332]\n", + " [31.57622909 3.33198317]\n", + " [31.57076413 2.70454099]\n", + " [31.57395338 2.0778937 ]\n", + " [31.57588222 1.45107016]\n", + " [31.57650355 0.82414423]\n", + " [31.56636729 31.54458196]\n", + " [30.94097162 31.54595455]\n", + " [30.31365492 31.54539347]\n", + " [29.68437257 31.54272884]\n", + " [29.06032028 31.54563567]\n", + " [28.43401236 31.5461774 ]\n", + " [27.8054203 31.54416173]\n", + " [27.17452364 31.539388 ]\n", + " [26.54809715 31.53970945]\n", + " [25.92579171 31.54507084]\n", + " [25.29415046 31.53906756]\n", + " [24.66640921 31.53775632]\n", + " [24.04223138 31.5410625 ]\n", + " [23.41509043 31.54056553]\n", + " [22.79109438 31.54440551]\n", + " [22.16397774 31.54403331]\n", + " [21.53380473 31.53917516]\n", + " [20.90633733 31.53811986]\n", + " [20.28127448 31.54075175]\n", + " [19.65290671 31.53826129]\n", + " [19.0266318 31.53908973]\n", + " [18.40217234 31.54310076]\n", + " [17.77426423 31.54128971]\n", + " [17.14792785 31.54225265]\n", + " [16.51821482 31.53685785]\n", + " [15.89443987 31.54283825]\n", + " [15.26712753 31.54201873]\n", + " [14.63652591 31.53406031]\n", + " [14.01108227 31.5370185 ]\n", + " [13.38621206 31.54162454]\n", + " [12.75797932 31.53839149]\n", + " [12.13031854 31.53633298]\n", + " [11.50309203 31.53526352]\n", + " [10.87617659 31.53499687]\n", + " [10.24946387 31.535347 ]\n", + " [ 9.62286075 31.53612923]\n", + " [ 8.99628945 31.53716128]\n", + " [ 8.36968769 31.53826455]\n", + " [ 7.74300857 31.53926536]\n", + " [ 7.11622042 31.53999624]\n", + " [ 6.48930643 31.54029726]\n", + " [ 5.86226415 31.54001734]\n", + " [ 5.23510485 31.53901557]\n", + " [ 4.60785265 31.53716245]\n", + " [ 3.98054357 31.53434109]\n", + " [ 3.35322438 31.53044837]\n", + " [ 2.72680422 31.53525919]\n", + " [ 2.10010401 31.53886214]\n", + " [ 1.47273099 31.531306 ]\n", + " [ 0.8458796 31.53230592]\n", + " [31.57650355 0.82414423]\n", + " [30.95250669 0.82401298]\n", + " [30.32010205 0.82365654]\n", + " [29.6988988 0.82360461]\n", + " [29.06919291 0.82331859]\n", + " [28.44073318 0.82306531]\n", + " [27.81344099 0.82284463]\n", + " [27.18723824 0.82265641]\n", + " [26.56204723 0.82250053]\n", + " [25.93779042 0.82237684]\n", + " [25.30478902 0.82197332]\n", + " [24.68219236 0.82190653]\n", + " [24.05074319 0.82154473]\n", + " [23.42949044 0.82153239]\n", + " [22.7992715 0.82120786]\n", + " [22.16955541 0.82089551]\n", + " [21.54972024 0.82095366]\n", + " [20.92073256 0.8206687 ]\n", + " [20.29198764 0.82038895]\n", + " [19.66339361 0.82011107]\n", + " [19.03485539 0.81983113]\n", + " [18.40627408 0.81954453]\n", + " [17.78689436 0.81967659]\n", + " [17.15789456 0.81937404]\n", + " [16.52852592 0.81904622]\n", + " [15.89866704 0.81868391]\n", + " [15.277471 0.81877343]\n", + " [14.64621859 0.81832652]\n", + " [14.02331102 0.8183455 ]\n", + " [13.39930428 0.81831863]\n", + " [12.764797 0.81763703]\n", + " [12.13805759 0.81743007]\n", + " [11.50963147 0.81710367]\n", + " [10.88846159 0.81730855]\n", + " [10.25589287 0.81665619]\n", + " [ 9.62997083 0.81651004]\n", + " [ 9.01029799 0.81693928]\n", + " [ 8.37815293 0.81624866]\n", + " [ 7.7513184 0.81603961]\n", + " [ 7.12915761 0.81636588]\n", + " [ 6.5018131 0.81614457]\n", + " [ 5.86838389 0.81507569]\n", + " [ 5.24579926 0.81548778]\n", + " [ 4.61438036 0.81450893]\n", + " [ 3.99000894 0.81472794]\n", + " [ 3.36061715 0.81389059]\n", + " [ 2.73929428 0.81516725]\n", + " [ 2.10964557 0.81411312]\n", + " [ 1.48417872 0.81464124]\n", + " [ 0.86712204 0.82424347]\n", + " [ 0.8458796 31.53230592]\n", + " [ 0.84617128 30.90839197]\n", + " [ 0.84623129 30.27606635]\n", + " [ 0.84660442 29.65493336]\n", + " [ 0.84673654 29.02529373]\n", + " [ 0.84690216 28.39689387]\n", + " [ 0.84710119 27.76965513]\n", + " [ 0.84733353 27.14349937]\n", + " [ 0.84759908 26.51834883]\n", + " [ 0.84789774 25.8941259 ]\n", + " [ 0.84790718 25.26115374]\n", + " [ 0.84826424 24.63857742]\n", + " [ 0.84831608 24.00714361]\n", + " [ 0.84872909 23.38589708]\n", + " [ 0.84881876 22.75567893]\n", + " [ 0.84892056 22.12595599]\n", + " [ 0.84940588 21.50610415]\n", + " [ 0.8495352 20.8770935 ]\n", + " [ 0.84966933 20.24831699]\n", + " [ 0.84980473 19.61968235]\n", + " [ 0.84993726 18.991094 ]\n", + " [ 0.85049551 18.37181632]\n", + " [ 0.85062127 17.74299995]\n", + " [ 0.85072763 17.11391779]\n", + " [ 0.85080639 16.48445453]\n", + " [ 0.85134661 15.86378397]\n", + " [ 0.85135833 15.23316742]\n", + " [ 0.85184803 14.61104247]\n", + " [ 0.85174116 13.97871219]\n", + " [ 0.85212424 13.35452903]\n", + " [ 0.85243763 12.72904886]\n", + " [ 0.85265655 12.10207459]\n", + " [ 0.85274915 11.47338722]\n", + " [ 0.85267413 10.84274148]\n", + " [ 0.8531428 10.21902849]\n", + " [ 0.85341609 9.59273721]\n", + " [ 0.8534181 8.96350292]\n", + " [ 0.85397832 8.34002647]\n", + " [ 0.8541636 7.71264804]\n", + " [ 0.85380093 7.08076154]\n", + " [ 0.85383332 6.45270307]\n", + " [ 0.85424438 5.82748867]\n", + " [ 0.85496486 5.20386137]\n", + " [ 0.85413489 4.57118564]\n", + " [ 0.85443094 3.94523646]\n", + " [ 0.85563608 3.32269049]\n", + " [ 0.85680674 2.69857499]\n", + " [ 0.85471684 2.06517195]\n", + " [ 0.85694905 1.44241561]\n", + " [ 0.86712204 0.82424347]]\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "DEBUG:root:DEBUG: radec2pix: ccdpx: [[-3.01767698e-02 -2.95070789e-02]\n", + " [-1.37259763e-01 4.16894506e+01]\n", + " [-1.14333342e-01 8.35363915e+01]\n", + " [ 4.99639503e-02 1.25514245e+02]\n", + " [-1.56197125e-01 1.67143463e+02]\n", + " [-2.03486368e-01 2.08922843e+02]\n", + " [-7.90496058e-02 2.50854230e+02]\n", + " [-3.03640064e-01 2.92479108e+02]\n", + " [-3.36235294e-01 3.34273260e+02]\n", + " [-1.62387022e-01 3.76237101e+02]\n", + " [-3.12108884e-01 4.17933677e+02]\n", + " [-2.32132063e-01 4.59814560e+02]\n", + " [-4.58856185e-01 5.01457618e+02]\n", + " [-4.30623525e-01 5.43297644e+02]\n", + " [-1.30243575e-01 5.85331844e+02]\n", + " [-6.67793214e-01 6.26764916e+02]\n", + " [-3.44702629e-01 6.68805155e+02]\n", + " [-2.73904423e-01 7.10664404e+02]\n", + " [-4.47676543e-01 7.52362664e+02]\n", + " [-2.78450643e-01 7.94280177e+02]\n", + " [-3.29232655e-01 8.36057308e+02]\n", + " [-5.90935408e-01 8.77712465e+02]\n", + " [-4.63004471e-01 9.19596166e+02]\n", + " [-5.18776918e-01 9.61373948e+02]\n", + " [-7.47882585e-01 1.00306219e+03]\n", + " [-5.37120748e-01 1.04497972e+03]\n", + " [-4.70277393e-01 1.08681822e+03]\n", + " [-5.35942202e-01 1.12859155e+03]\n", + " [-7.22392632e-01 1.17031281e+03]\n", + " [-1.01762673e+00 1.21199428e+03]\n", + " [-7.88990933e-01 1.25389790e+03]\n", + " [-6.37712256e-01 1.29576162e+03]\n", + " [-1.17852548e+00 1.33736627e+03]\n", + " [-1.14819152e+00 1.37918787e+03]\n", + " [-1.15815502e+00 1.42099409e+03]\n", + " [-1.19618814e+00 1.46279104e+03]\n", + " [-1.25023452e+00 1.50458384e+03]\n", + " [-1.30848970e+00 1.54637656e+03]\n", + " [-1.35948477e+00 1.58817226e+03]\n", + " [-1.39217243e+00 1.62997300e+03]\n", + " [-1.39601423e+00 1.67177984e+03]\n", + " [-1.36106777e+00 1.71359291e+03]\n", + " [-1.27807252e+00 1.75541143e+03]\n", + " [-1.13853293e+00 1.79723377e+03]\n", + " [-9.34797462e-01 1.83905754e+03]\n", + " [-1.31682242e+00 1.88081009e+03]\n", + " [-9.66484761e-01 1.92263969e+03]\n", + " [-1.19307649e+00 1.96441610e+03]\n", + " [-1.33564501e+00 2.00620429e+03]\n", + " [-1.39104916e+00 2.04799933e+03]\n", + " [-3.01767698e-02 -2.95070789e-02]\n", + " [ 4.16628960e+01 -1.07065049e-01]\n", + " [ 8.34839946e+01 -5.56694436e-02]\n", + " [ 1.25436090e+02 1.36006203e-01]\n", + " [ 1.67039638e+02 -4.38649543e-02]\n", + " [ 2.08793509e+02 -6.60122125e-02]\n", + " [ 2.50699599e+02 8.23841729e-02]\n", + " [ 2.92759268e+02 4.14703221e-01]\n", + " [ 3.34521038e+02 4.07243899e-01]\n", + " [ 3.76008185e+02 6.36961142e-02]\n", + " [ 4.18117466e+02 4.78001809e-01]\n", + " [ 4.59966851e+02 5.79417612e-01]\n", + " [ 5.01578777e+02 3.72925706e-01]\n", + " [ 5.43388160e+02 4.20043341e-01]\n", + " [ 5.84987981e+02 1.77961326e-01]\n", + " [ 6.26795746e+02 2.16760485e-01]\n", + " [ 6.68807170e+02 5.54690945e-01]\n", + " [ 7.10638303e+02 6.39038141e-01]\n", + " [ 7.52309217e+02 4.77518681e-01]\n", + " [ 7.94200343e+02 6.57563219e-01]\n", + " [ 8.35952020e+02 6.16300903e-01]\n", + " [ 8.77582738e+02 3.62825305e-01]\n", + " [ 9.19443236e+02 4.97565554e-01]\n", + " [ 9.61199014e+02 4.47337793e-01]\n", + " [ 1.00317976e+03 8.21035180e-01]\n", + " [ 1.04476489e+03 4.36252789e-01]\n", + " [ 1.08658569e+03 5.04877608e-01]\n", + " [ 1.12862562e+03 1.04950271e+00]\n", + " [ 1.17032192e+03 8.66238875e-01]\n", + " [ 1.21198004e+03 5.73104896e-01]\n", + " [ 1.25386215e+03 8.02652404e-01]\n", + " [ 1.29570615e+03 9.53884322e-01]\n", + " [ 1.33752122e+03 1.03916995e+00]\n", + " [ 1.37931558e+03 1.07092830e+00]\n", + " [ 1.42109643e+03 1.06156251e+00]\n", + " [ 1.46286999e+03 1.02338853e+00]\n", + " [ 1.50464143e+03 9.68558831e-01]\n", + " [ 1.54641490e+03 9.08981718e-01]\n", + " [ 1.58819353e+03 8.56237214e-01]\n", + " [ 1.62997942e+03 8.21490492e-01]\n", + " [ 1.67177369e+03 8.15403975e-01]\n", + " [ 1.71357650e+03 8.48049368e-01]\n", + " [ 1.75538710e+03 9.28820923e-01]\n", + " [ 1.79720387e+03 1.06635134e+00]\n", + " [ 1.83902441e+03 1.26843168e+00]\n", + " [ 1.88084560e+03 1.54193675e+00]\n", + " [ 1.92260705e+03 1.23518571e+00]\n", + " [ 1.96438714e+03 1.00896578e+00]\n", + " [ 2.00621184e+03 1.52669968e+00]\n", + " [ 2.04800195e+03 1.47401846e+00]\n", + " [-1.39104916e+00 2.04799933e+03]\n", + " [ 4.02087364e+01 2.04802200e+03]\n", + " [ 8.23690352e+01 2.04805987e+03]\n", + " [ 1.23782582e+02 2.04807718e+03]\n", + " [ 1.65762966e+02 2.04811029e+03]\n", + " [ 2.07660273e+02 2.04814120e+03]\n", + " [ 2.49479745e+02 2.04816990e+03]\n", + " [ 2.91226589e+02 2.04819641e+03]\n", + " [ 3.32905984e+02 2.04822075e+03]\n", + " [ 3.74523100e+02 2.04824291e+03]\n", + " [ 4.16723181e+02 2.04828393e+03]\n", + " [ 4.58229622e+02 2.04830227e+03]\n", + " [ 5.00326222e+02 2.04834047e+03]\n", + " [ 5.41743070e+02 2.04835515e+03]\n", + " [ 5.83757656e+02 2.04839084e+03]\n", + " [ 6.25738720e+02 2.04842571e+03]\n", + " [ 6.67061063e+02 2.04843565e+03]\n", + " [ 7.08993566e+02 2.04846868e+03]\n", + " [ 7.50909886e+02 2.04850135e+03]\n", + " [ 7.92816146e+02 2.04853390e+03]\n", + " [ 8.34718685e+02 2.04856658e+03]\n", + " [ 8.76624097e+02 2.04859970e+03]\n", + " [ 9.17916079e+02 2.04860471e+03]\n", + " [ 9.59849390e+02 2.04863891e+03]\n", + " [ 1.00180729e+03 2.04867480e+03]\n", + " [ 1.04379787e+03 2.04871300e+03]\n", + " [ 1.08521094e+03 2.04872089e+03]\n", + " [ 1.12729442e+03 2.04876476e+03]\n", + " [ 1.16882159e+03 2.04877738e+03]\n", + " [ 1.21042204e+03 2.04879309e+03]\n", + " [ 1.25272251e+03 2.04885268e+03]\n", + " [ 1.29450513e+03 2.04888046e+03]\n", + " [ 1.33640019e+03 2.04891623e+03]\n", + " [ 1.37781152e+03 2.04891643e+03]\n", + " [ 1.41998275e+03 2.04897403e+03]\n", + " [ 1.46171088e+03 2.04899773e+03]\n", + " [ 1.50302241e+03 2.04898293e+03]\n", + " [ 1.54516540e+03 2.04904307e+03]\n", + " [ 1.58695436e+03 2.04907099e+03]\n", + " [ 1.62843175e+03 2.04906311e+03]\n", + " [ 1.67025471e+03 2.04909186e+03]\n", + " [ 1.71248330e+03 2.04917724e+03]\n", + " [ 1.75398895e+03 2.04916365e+03]\n", + " [ 1.79608352e+03 2.04924299e+03]\n", + " [ 1.83770828e+03 2.04924232e+03]\n", + " [ 1.87966771e+03 2.04931218e+03]\n", + " [ 1.92108926e+03 2.04924092e+03]\n", + " [ 1.96306582e+03 2.04932524e+03]\n", + " [ 2.00476362e+03 2.04930398e+03]\n", + " [ 2.04590094e+03 2.04867759e+03]\n", + " [ 2.04800195e+03 1.47401846e+00]\n", + " [ 2.04796859e+03 4.30682728e+01]\n", + " [ 2.04795049e+03 8.52233110e+01]\n", + " [ 2.04791176e+03 1.26632166e+02]\n", + " [ 2.04788891e+03 1.68608136e+02]\n", + " [ 2.04786385e+03 2.10501454e+02]\n", + " [ 2.04783659e+03 2.52317363e+02]\n", + " [ 2.04780714e+03 2.94061073e+02]\n", + " [ 2.04777550e+03 3.35737767e+02]\n", + " [ 2.04774166e+03 3.77352620e+02]\n", + " [ 2.04772692e+03 4.19550762e+02]\n", + " [ 2.04768923e+03 4.61055840e+02]\n", + " [ 2.04767169e+03 5.03151423e+02]\n", + " [ 2.04763030e+03 5.44567847e+02]\n", + " [ 2.04761027e+03 5.86582386e+02]\n", + " [ 2.04758944e+03 6.28563911e+02]\n", + " [ 2.04754326e+03 6.69887354e+02]\n", + " [ 2.04752061e+03 7.11821392e+02]\n", + " [ 2.04749765e+03 7.53739821e+02]\n", + " [ 2.04747460e+03 7.95648791e+02]\n", + " [ 2.04745174e+03 8.37554676e+02]\n", + " [ 2.04740072e+03 8.78839840e+02]\n", + " [ 2.04737831e+03 9.20760926e+02]\n", + " [ 2.04735719e+03 9.62699732e+02]\n", + " [ 2.04733790e+03 1.00466394e+03]\n", + " [ 2.04728804e+03 1.04604197e+03]\n", + " [ 2.04727320e+03 1.08808307e+03]\n", + " [ 2.04722668e+03 1.12955805e+03]\n", + " [ 2.04721970e+03 1.17171340e+03]\n", + " [ 2.04718024e+03 1.21332560e+03]\n", + " [ 2.04714540e+03 1.25502427e+03]\n", + " [ 2.04711682e+03 1.29682255e+03]\n", + " [ 2.04709663e+03 1.33873504e+03]\n", + " [ 2.04708756e+03 1.38077809e+03]\n", + " [ 2.04704241e+03 1.42235894e+03]\n", + " [ 2.04701022e+03 1.46411168e+03]\n", + " [ 2.04699606e+03 1.50606063e+03]\n", + " [ 2.04694480e+03 1.54762571e+03]\n", + " [ 2.04691846e+03 1.58945094e+03]\n", + " [ 2.04692854e+03 1.63157671e+03]\n", + " [ 2.04691238e+03 1.67344727e+03]\n", + " [ 2.04687103e+03 1.71512822e+03]\n", + " [ 2.04680909e+03 1.75670335e+03]\n", + " [ 2.04685031e+03 1.79888175e+03]\n", + " [ 2.04681662e+03 1.84061169e+03]\n", + " [ 2.04672239e+03 1.88211472e+03]\n", + " [ 2.04663043e+03 1.92372240e+03]\n", + " [ 2.04675563e+03 1.96594931e+03]\n", + " [ 2.04659293e+03 2.00746635e+03]\n", + " [ 2.04590094e+03 2.04867759e+03]]\n", + "DEBUG:root:DEBUG: radec2pix: fitpx: [[4227.03017677 4155.02950708]\n", + " [4227.13725976 4113.31054937]\n", + " [4227.11433334 4071.46360854]\n", + " [4226.95003605 4029.48575482]\n", + " [4227.15619712 3987.8565366 ]\n", + " [4227.20348637 3946.07715691]\n", + " [4227.07904961 3904.14576966]\n", + " [4227.30364006 3862.52089197]\n", + " [4227.33623529 3820.7267398 ]\n", + " [4227.16238702 3778.76289914]\n", + " [4227.31210888 3737.06632323]\n", + " [4227.23213206 3695.18543962]\n", + " [4227.45885619 3653.54238181]\n", + " [4227.43062353 3611.70235563]\n", + " [4227.13024358 3569.6681562 ]\n", + " [4227.66779321 3528.23508351]\n", + " [4227.34470263 3486.19484538]\n", + " [4227.27390442 3444.33559646]\n", + " [4227.44767654 3402.63733645]\n", + " [4227.27845064 3360.71982301]\n", + " [4227.32923266 3318.94269232]\n", + " [4227.59093541 3277.28753505]\n", + " [4227.46300447 3235.4038341 ]\n", + " [4227.51877692 3193.62605179]\n", + " [4227.74788259 3151.93781457]\n", + " [4227.53712075 3110.02028105]\n", + " [4227.47027739 3068.18178152]\n", + " [4227.5359422 3026.40845055]\n", + " [4227.72239263 2984.68719139]\n", + " [4228.01762673 2943.00572089]\n", + " [4227.78899093 2901.10210276]\n", + " [4227.63771226 2859.23837809]\n", + " [4228.17852548 2817.63373145]\n", + " [4228.14819152 2775.81212862]\n", + " [4228.15815502 2734.00591136]\n", + " [4228.19618814 2692.20895539]\n", + " [4228.25023452 2650.41615687]\n", + " [4228.3084897 2608.62343659]\n", + " [4228.35948477 2566.82773535]\n", + " [4228.39217243 2525.02699999]\n", + " [4228.39601423 2483.22015932]\n", + " [4228.36106777 2441.40708967]\n", + " [4228.27807252 2399.58856994]\n", + " [4228.13853293 2357.76622583]\n", + " [4227.93479746 2315.94246384]\n", + " [4228.31682242 2274.18991252]\n", + " [4227.96648476 2232.36031437]\n", + " [4228.19307649 2190.58390162]\n", + " [4228.33564501 2148.79571128]\n", + " [4228.39104916 2107.00066563]\n", + " [4227.03017677 4155.02950708]\n", + " [4185.33710405 4155.10706505]\n", + " [4143.51600543 4155.05566944]\n", + " [4101.56391038 4154.8639938 ]\n", + " [4059.96036176 4155.04386495]\n", + " [4018.20649088 4155.06601221]\n", + " [3976.30040094 4154.91761583]\n", + " [3934.24073243 4154.58529678]\n", + " [3892.47896165 4154.5927561 ]\n", + " [3850.99181507 4154.93630389]\n", + " [3808.88253447 4154.52199819]\n", + " [3767.03314948 4154.42058239]\n", + " [3725.42122267 4154.62707429]\n", + " [3683.61183953 4154.57995666]\n", + " [3642.01201921 4154.82203867]\n", + " [3600.20425432 4154.78323951]\n", + " [3558.19283044 4154.44530905]\n", + " [3516.36169665 4154.36096186]\n", + " [3474.69078343 4154.52248132]\n", + " [3432.79965693 4154.34243678]\n", + " [3391.04797984 4154.3836991 ]\n", + " [3349.41726195 4154.6371747 ]\n", + " [3307.55676398 4154.50243445]\n", + " [3265.80098613 4154.55266221]\n", + " [3223.82024062 4154.17896482]\n", + " [3182.235113 4154.56374721]\n", + " [3140.4143109 4154.49512239]\n", + " [3098.37438255 4153.95049729]\n", + " [3056.67807647 4154.13376112]\n", + " [3015.01996166 4154.4268951 ]\n", + " [2973.13785326 4154.1973476 ]\n", + " [2931.29384982 4154.04611568]\n", + " [2889.47877563 4153.96083005]\n", + " [2847.68442081 4153.9290717 ]\n", + " [2805.90356765 4153.93843749]\n", + " [2764.13001078 4153.97661147]\n", + " [2722.35857034 4154.03144117]\n", + " [2680.58509718 4154.09101828]\n", + " [2638.80646927 4154.14376279]\n", + " [2597.02057865 4154.17850951]\n", + " [2555.22630833 4154.18459603]\n", + " [2513.42349867 4154.15195063]\n", + " [2471.61290313 4154.07117908]\n", + " [2429.79613323 4153.93364866]\n", + " [2387.97559302 4153.73156832]\n", + " [2346.15440332 4153.45806325]\n", + " [2304.39295419 4153.76481429]\n", + " [2262.61286188 4153.99103422]\n", + " [2220.78816475 4153.47330032]\n", + " [2178.99805224 4153.52598154]\n", + " [4228.39104916 2107.00066563]\n", + " [4186.79126358 2106.97799941]\n", + " [4144.6309648 2106.94013263]\n", + " [4103.21741825 2106.92281679]\n", + " [4061.237034 2106.88970506]\n", + " [4019.33972697 2106.85880386]\n", + " [3977.52025467 2106.83010205]\n", + " [3935.77341134 2106.80358892]\n", + " [3894.09401612 2106.77925385]\n", + " [3852.47690039 2106.75708594]\n", + " [3810.2768185 2106.7160676 ]\n", + " [3768.77037823 2106.69773002]\n", + " [3726.6737775 2106.65952732]\n", + " [3685.25693046 2106.64484993]\n", + " [3643.2423441 2106.60915909]\n", + " [3601.2612804 2106.57429205]\n", + " [3559.93893657 2106.56434559]\n", + " [3518.00643365 2106.53132067]\n", + " [3476.09011391 2106.49864835]\n", + " [3434.18385406 2106.46610386]\n", + " [3392.28131461 2106.43342402]\n", + " [3350.37590268 2106.40029896]\n", + " [3309.08392081 2106.39528961]\n", + " [3267.15060959 2106.36109158]\n", + " [3225.19271029 2106.32520093]\n", + " [3183.20212837 2106.28699989]\n", + " [3141.78905974 2106.27911395]\n", + " [3099.70557774 2106.23524177]\n", + " [3058.17840812 2106.22261515]\n", + " [3016.57796167 2106.20690766]\n", + " [2974.27749445 2106.14731666]\n", + " [2932.49487409 2106.11954223]\n", + " [2890.59980856 2106.08376683]\n", + " [2849.18848099 2106.08357239]\n", + " [2807.01724978 2106.02597478]\n", + " [2765.28911971 2106.00227174]\n", + " [2723.97758992 2106.01706811]\n", + " [2681.83460324 2105.95692851]\n", + " [2640.04564206 2105.9290129 ]\n", + " [2598.56825106 2105.9368887 ]\n", + " [2556.74529065 2105.90814345]\n", + " [2514.51670298 2105.82275819]\n", + " [2473.01105426 2105.83634601]\n", + " [2430.91648482 2105.75700753]\n", + " [2389.2917214 2105.75768394]\n", + " [2347.33228982 2105.68782374]\n", + " [2305.91073892 2105.75907822]\n", + " [2263.93418374 2105.67476052]\n", + " [2222.23638417 2105.69601908]\n", + " [2181.09906037 2106.32240673]\n", + " [2178.99805224 4153.52598154]\n", + " [2179.03141213 4111.93172718]\n", + " [2179.0495146 4069.77668903]\n", + " [2179.08824253 4028.36783371]\n", + " [2179.11109244 3986.39186385]\n", + " [2179.13614857 3944.4985461 ]\n", + " [2179.16340587 3902.68263658]\n", + " [2179.19285959 3860.93892699]\n", + " [2179.22450497 3819.26223266]\n", + " [2179.25833677 3777.64737978]\n", + " [2179.27308269 3735.44923797]\n", + " [2179.31077113 3693.94416042]\n", + " [2179.32830923 3651.84857684]\n", + " [2179.36969834 3610.43215266]\n", + " [2179.389731 3568.41761385]\n", + " [2179.41056162 3526.43608912]\n", + " [2179.4567402 3485.11264634]\n", + " [2179.47938989 3443.17860787]\n", + " [2179.5023546 3401.26017918]\n", + " [2179.52540113 3359.35120866]\n", + " [2179.54825517 3317.44532433]\n", + " [2179.5992826 3276.1601601 ]\n", + " [2179.62169053 3234.23907394]\n", + " [2179.6428104 3192.30026825]\n", + " [2179.6620997 3150.33605504]\n", + " [2179.71195619 3108.95803211]\n", + " [2179.72680176 3066.9169312 ]\n", + " [2179.77332273 3025.44194784]\n", + " [2179.7803001 2983.28659602]\n", + " [2179.81975912 2941.67439584]\n", + " [2179.85460134 2899.97572751]\n", + " [2179.88317861 2858.17744984]\n", + " [2179.90337266 2816.26496253]\n", + " [2179.91243602 2774.22191448]\n", + " [2179.95759078 2732.64106103]\n", + " [2179.98977755 2690.88831766]\n", + " [2180.00394429 2648.93936681]\n", + " [2180.0551973 2607.37428541]\n", + " [2180.08154065 2565.54906332]\n", + " [2180.0714552 2523.42329078]\n", + " [2180.08762078 2481.55272903]\n", + " [2180.12896841 2439.8717807 ]\n", + " [2180.19090832 2398.29664563]\n", + " [2180.14968693 2356.11824723]\n", + " [2180.18338362 2314.38831131]\n", + " [2180.27760971 2272.88527545]\n", + " [2180.36957313 2231.27760429]\n", + " [2180.24437229 2189.05069024]\n", + " [2180.40707482 2147.53365333]\n", + " [2181.09906037 2106.32240673]]\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "DEBUG:root:DEBUG: fitpix2pix: ccdpx: shape: (200, 2)\n", + "DEBUG:root:DEBUG: fitpix2pix: visCut: True\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "(200, 2)\n", + "(200, 2)\n" + ] + } + ], + "source": [ + "footie=footprint()\n", + "footprint_radec = tp.pix2radec(footie)\n", + "print(footie.shape)\n", + "f2=np.array([footprint_radec[0],footprint_radec[1]]).T \n", + "# so right now we're outputting (footpring_radec) a tuple not an array\n", + "print(f2.shape) \n", + "footprint_pix = tp.radec2pix(f2)" + ] + }, + { + "cell_type": "code", + "execution_count": 12, + "id": "a3f85cf3", + "metadata": {}, + "outputs": [], + "source": [ + "fp_comp=footprint_pix[0]\n", + "fp_comp=fp_comp[pixfootie_old.tic.to_numpy(),:]" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "b3ac9139", + "metadata": {}, + "outputs": [], + "source": [] + }, + { + "cell_type": "markdown", + "id": "5430cb81", + "metadata": {}, + "source": [ + "# Now compare our Footprint results" + ] + }, + { + "cell_type": "code", + "execution_count": 13, + "id": "e8e9080d", + "metadata": {}, + "outputs": [ + { + "name": "stderr", + "output_type": "stream", + "text": [ + "DEBUG:matplotlib:matplotlib data path: /Users/tapritc2/miniforge3/envs/tessgi/lib/python3.10/site-packages/matplotlib/mpl-data\n", + "DEBUG:matplotlib:CONFIGDIR=/Users/tapritc2/.matplotlib\n", + "DEBUG:matplotlib:interactive is False\n", + "DEBUG:matplotlib:platform is darwin\n", + "DEBUG:matplotlib:CACHEDIR=/Users/tapritc2/.matplotlib\n", + "DEBUG:matplotlib.font_manager:Using fontManager instance from /Users/tapritc2/.matplotlib/fontlist-v330.json\n" + ] + } + ], + "source": [ + "import matplotlib.pyplot as plt\n", + "import numpy as np" + ] + }, + { + "cell_type": "code", + "execution_count": 14, + "id": "38b771ed", + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "0.04331587188836608 1.8881553619509694\n" + ] + } + ], + "source": [ + "#Pixel footprint->ra,dec -> Pixel Footpring\n", + "dx=np.array(footprint_pix[0][:,0]-footie[:,0]-44).flatten()\n", + "dy=np.array(footprint_pix[0][:,1]-footie[:,1]-1).flatten()\n", + "footie_diff = (dx ** 2 + dy **2) ** 0.5\n", + "print(min(footie_diff),max(footie_diff))" + ] + }, + { + "cell_type": "code", + "execution_count": 15, + "id": "485678d9", + "metadata": { + "scrolled": true + }, + "outputs": [ + { + "name": "stderr", + "output_type": "stream", + "text": [ + "DEBUG:matplotlib.pyplot:Loaded backend module://matplotlib_inline.backend_inline version unknown.\n", + "DEBUG:matplotlib.pyplot:Loaded backend module://matplotlib_inline.backend_inline version unknown.\n", + "DEBUG:matplotlib.font_manager:findfont: Matching sans\\-serif:style=normal:variant=normal:weight=normal:stretch=normal:size=10.0.\n", + "DEBUG:matplotlib.font_manager:findfont: score(FontEntry(fname='/Users/tapritc2/miniforge3/envs/tessgi/lib/python3.10/site-packages/matplotlib/mpl-data/fonts/ttf/DejaVuSansMono-BoldOblique.ttf', name='DejaVu Sans Mono', style='oblique', variant='normal', weight=700, stretch='normal', size='scalable')) = 11.335\n", + "DEBUG:matplotlib.font_manager:findfont: score(FontEntry(fname='/Users/tapritc2/miniforge3/envs/tessgi/lib/python3.10/site-packages/matplotlib/mpl-data/fonts/ttf/STIXSizFiveSymReg.ttf', name='STIXSizeFiveSym', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05\n", + "DEBUG:matplotlib.font_manager:findfont: score(FontEntry(fname='/Users/tapritc2/miniforge3/envs/tessgi/lib/python3.10/site-packages/matplotlib/mpl-data/fonts/ttf/DejaVuSerifDisplay.ttf', name='DejaVu Serif Display', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05\n", + "DEBUG:matplotlib.font_manager:findfont: score(FontEntry(fname='/Users/tapritc2/miniforge3/envs/tessgi/lib/python3.10/site-packages/matplotlib/mpl-data/fonts/ttf/STIXNonUniBol.ttf', name='STIXNonUnicode', style='normal', variant='normal', weight=700, stretch='normal', size='scalable')) = 10.335\n", + "DEBUG:matplotlib.font_manager:findfont: score(FontEntry(fname='/Users/tapritc2/miniforge3/envs/tessgi/lib/python3.10/site-packages/matplotlib/mpl-data/fonts/ttf/DejaVuSans-BoldOblique.ttf', name='DejaVu Sans', style='oblique', variant='normal', weight=700, stretch='normal', size='scalable')) = 1.335\n", + "DEBUG:matplotlib.font_manager:findfont: score(FontEntry(fname='/Users/tapritc2/miniforge3/envs/tessgi/lib/python3.10/site-packages/matplotlib/mpl-data/fonts/ttf/STIXGeneralBolIta.ttf', name='STIXGeneral', style='italic', variant='normal', weight=700, stretch='normal', size='scalable')) = 11.335\n", + "DEBUG:matplotlib.font_manager:findfont: score(FontEntry(fname='/Users/tapritc2/miniforge3/envs/tessgi/lib/python3.10/site-packages/matplotlib/mpl-data/fonts/ttf/DejaVuSerif-BoldItalic.ttf', name='DejaVu Serif', style='italic', variant='normal', weight=700, stretch='normal', size='scalable')) = 11.335\n", + "DEBUG:matplotlib.font_manager:findfont: score(FontEntry(fname='/Users/tapritc2/miniforge3/envs/tessgi/lib/python3.10/site-packages/matplotlib/mpl-data/fonts/ttf/STIXGeneralBol.ttf', name='STIXGeneral', style='normal', variant='normal', weight=700, stretch='normal', size='scalable')) = 10.335\n", + "DEBUG:matplotlib.font_manager:findfont: score(FontEntry(fname='/Users/tapritc2/miniforge3/envs/tessgi/lib/python3.10/site-packages/matplotlib/mpl-data/fonts/ttf/DejaVuSans-Bold.ttf', name='DejaVu Sans', style='normal', variant='normal', weight=700, stretch='normal', size='scalable')) = 0.33499999999999996\n", + "DEBUG:matplotlib.font_manager:findfont: score(FontEntry(fname='/Users/tapritc2/miniforge3/envs/tessgi/lib/python3.10/site-packages/matplotlib/mpl-data/fonts/ttf/STIXSizOneSymReg.ttf', name='STIXSizeOneSym', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05\n", + "DEBUG:matplotlib.font_manager:findfont: score(FontEntry(fname='/Users/tapritc2/miniforge3/envs/tessgi/lib/python3.10/site-packages/matplotlib/mpl-data/fonts/ttf/STIXSizFourSymBol.ttf', name='STIXSizeFourSym', style='normal', variant='normal', weight=700, stretch='normal', size='scalable')) = 10.335\n", + "DEBUG:matplotlib.font_manager:findfont: score(FontEntry(fname='/Users/tapritc2/miniforge3/envs/tessgi/lib/python3.10/site-packages/matplotlib/mpl-data/fonts/ttf/DejaVuSerif-Bold.ttf', name='DejaVu Serif', style='normal', variant='normal', weight=700, stretch='normal', size='scalable')) = 10.335\n", + "DEBUG:matplotlib.font_manager:findfont: score(FontEntry(fname='/Users/tapritc2/miniforge3/envs/tessgi/lib/python3.10/site-packages/matplotlib/mpl-data/fonts/ttf/DejaVuSans-Oblique.ttf', name='DejaVu Sans', style='oblique', variant='normal', weight=400, stretch='normal', size='scalable')) = 1.05\n", + "DEBUG:matplotlib.font_manager:findfont: score(FontEntry(fname='/Users/tapritc2/miniforge3/envs/tessgi/lib/python3.10/site-packages/matplotlib/mpl-data/fonts/ttf/STIXGeneral.ttf', name='STIXGeneral', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05\n", + "DEBUG:matplotlib.font_manager:findfont: score(FontEntry(fname='/Users/tapritc2/miniforge3/envs/tessgi/lib/python3.10/site-packages/matplotlib/mpl-data/fonts/ttf/STIXNonUniIta.ttf', name='STIXNonUnicode', style='italic', variant='normal', weight=400, stretch='normal', size='scalable')) = 11.05\n", + "DEBUG:matplotlib.font_manager:findfont: score(FontEntry(fname='/Users/tapritc2/miniforge3/envs/tessgi/lib/python3.10/site-packages/matplotlib/mpl-data/fonts/ttf/cmsy10.ttf', name='cmsy10', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05\n", + "DEBUG:matplotlib.font_manager:findfont: score(FontEntry(fname='/Users/tapritc2/miniforge3/envs/tessgi/lib/python3.10/site-packages/matplotlib/mpl-data/fonts/ttf/DejaVuSansDisplay.ttf', name='DejaVu Sans Display', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05\n", + "DEBUG:matplotlib.font_manager:findfont: score(FontEntry(fname='/Users/tapritc2/miniforge3/envs/tessgi/lib/python3.10/site-packages/matplotlib/mpl-data/fonts/ttf/cmmi10.ttf', name='cmmi10', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05\n", + "DEBUG:matplotlib.font_manager:findfont: score(FontEntry(fname='/Users/tapritc2/miniforge3/envs/tessgi/lib/python3.10/site-packages/matplotlib/mpl-data/fonts/ttf/DejaVuSansMono-Bold.ttf', name='DejaVu Sans Mono', style='normal', variant='normal', weight=700, stretch='normal', size='scalable')) = 10.335\n", + "DEBUG:matplotlib.font_manager:findfont: score(FontEntry(fname='/Users/tapritc2/miniforge3/envs/tessgi/lib/python3.10/site-packages/matplotlib/mpl-data/fonts/ttf/cmr10.ttf', name='cmr10', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05\n", + "DEBUG:matplotlib.font_manager:findfont: score(FontEntry(fname='/Users/tapritc2/miniforge3/envs/tessgi/lib/python3.10/site-packages/matplotlib/mpl-data/fonts/ttf/STIXSizOneSymBol.ttf', name='STIXSizeOneSym', style='normal', variant='normal', weight=700, stretch='normal', size='scalable')) = 10.335\n", + "DEBUG:matplotlib.font_manager:findfont: score(FontEntry(fname='/Users/tapritc2/miniforge3/envs/tessgi/lib/python3.10/site-packages/matplotlib/mpl-data/fonts/ttf/cmss10.ttf', name='cmss10', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05\n", + "DEBUG:matplotlib.font_manager:findfont: score(FontEntry(fname='/Users/tapritc2/miniforge3/envs/tessgi/lib/python3.10/site-packages/matplotlib/mpl-data/fonts/ttf/DejaVuSansMono-Oblique.ttf', name='DejaVu Sans Mono', style='oblique', variant='normal', weight=400, stretch='normal', size='scalable')) = 11.05\n", + "DEBUG:matplotlib.font_manager:findfont: score(FontEntry(fname='/Users/tapritc2/miniforge3/envs/tessgi/lib/python3.10/site-packages/matplotlib/mpl-data/fonts/ttf/STIXSizTwoSymReg.ttf', name='STIXSizeTwoSym', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05\n", + "DEBUG:matplotlib.font_manager:findfont: score(FontEntry(fname='/Users/tapritc2/miniforge3/envs/tessgi/lib/python3.10/site-packages/matplotlib/mpl-data/fonts/ttf/STIXSizThreeSymBol.ttf', name='STIXSizeThreeSym', style='normal', variant='normal', weight=700, stretch='normal', size='scalable')) = 10.335\n", + "DEBUG:matplotlib.font_manager:findfont: score(FontEntry(fname='/Users/tapritc2/miniforge3/envs/tessgi/lib/python3.10/site-packages/matplotlib/mpl-data/fonts/ttf/cmb10.ttf', name='cmb10', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05\n", + "DEBUG:matplotlib.font_manager:findfont: score(FontEntry(fname='/Users/tapritc2/miniforge3/envs/tessgi/lib/python3.10/site-packages/matplotlib/mpl-data/fonts/ttf/cmtt10.ttf', name='cmtt10', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "DEBUG:matplotlib.font_manager:findfont: score(FontEntry(fname='/Users/tapritc2/miniforge3/envs/tessgi/lib/python3.10/site-packages/matplotlib/mpl-data/fonts/ttf/STIXSizFourSymReg.ttf', name='STIXSizeFourSym', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05\n", + "DEBUG:matplotlib.font_manager:findfont: score(FontEntry(fname='/Users/tapritc2/miniforge3/envs/tessgi/lib/python3.10/site-packages/matplotlib/mpl-data/fonts/ttf/STIXSizTwoSymBol.ttf', name='STIXSizeTwoSym', style='normal', variant='normal', weight=700, stretch='normal', size='scalable')) = 10.335\n", + "DEBUG:matplotlib.font_manager:findfont: score(FontEntry(fname='/Users/tapritc2/miniforge3/envs/tessgi/lib/python3.10/site-packages/matplotlib/mpl-data/fonts/ttf/DejaVuSerif-Italic.ttf', name='DejaVu Serif', style='italic', variant='normal', weight=400, stretch='normal', size='scalable')) = 11.05\n", + "DEBUG:matplotlib.font_manager:findfont: score(FontEntry(fname='/Users/tapritc2/miniforge3/envs/tessgi/lib/python3.10/site-packages/matplotlib/mpl-data/fonts/ttf/STIXGeneralItalic.ttf', name='STIXGeneral', style='italic', variant='normal', weight=400, stretch='normal', size='scalable')) = 11.05\n", + "DEBUG:matplotlib.font_manager:findfont: score(FontEntry(fname='/Users/tapritc2/miniforge3/envs/tessgi/lib/python3.10/site-packages/matplotlib/mpl-data/fonts/ttf/cmex10.ttf', name='cmex10', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05\n", + "DEBUG:matplotlib.font_manager:findfont: score(FontEntry(fname='/Users/tapritc2/miniforge3/envs/tessgi/lib/python3.10/site-packages/matplotlib/mpl-data/fonts/ttf/DejaVuSansMono.ttf', name='DejaVu Sans Mono', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05\n", + "DEBUG:matplotlib.font_manager:findfont: score(FontEntry(fname='/Users/tapritc2/miniforge3/envs/tessgi/lib/python3.10/site-packages/matplotlib/mpl-data/fonts/ttf/DejaVuSerif.ttf', name='DejaVu Serif', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05\n", + "DEBUG:matplotlib.font_manager:findfont: score(FontEntry(fname='/Users/tapritc2/miniforge3/envs/tessgi/lib/python3.10/site-packages/matplotlib/mpl-data/fonts/ttf/STIXSizThreeSymReg.ttf', name='STIXSizeThreeSym', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05\n", + "DEBUG:matplotlib.font_manager:findfont: score(FontEntry(fname='/Users/tapritc2/miniforge3/envs/tessgi/lib/python3.10/site-packages/matplotlib/mpl-data/fonts/ttf/STIXNonUni.ttf', name='STIXNonUnicode', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05\n", + "DEBUG:matplotlib.font_manager:findfont: score(FontEntry(fname='/Users/tapritc2/miniforge3/envs/tessgi/lib/python3.10/site-packages/matplotlib/mpl-data/fonts/ttf/STIXNonUniBolIta.ttf', name='STIXNonUnicode', style='italic', variant='normal', weight=700, stretch='normal', size='scalable')) = 11.335\n", + "DEBUG:matplotlib.font_manager:findfont: score(FontEntry(fname='/Users/tapritc2/miniforge3/envs/tessgi/lib/python3.10/site-packages/matplotlib/mpl-data/fonts/ttf/DejaVuSans.ttf', name='DejaVu Sans', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 0.05\n", + "DEBUG:matplotlib.font_manager:findfont: score(FontEntry(fname='/System/Library/Fonts/Supplemental/Academy Engraved LET Fonts.ttf', name='Academy Engraved LET', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05\n", + "DEBUG:matplotlib.font_manager:findfont: score(FontEntry(fname='/System/Library/Fonts/Supplemental/Trattatello.ttf', name='Trattatello', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05\n", + "DEBUG:matplotlib.font_manager:findfont: score(FontEntry(fname='/System/Library/Fonts/Supplemental/Malayalam MN.ttc', name='Malayalam MN', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05\n", + "DEBUG:matplotlib.font_manager:findfont: score(FontEntry(fname='/System/Library/Fonts/GeezaPro.ttc', name='Geeza Pro', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05\n", + "DEBUG:matplotlib.font_manager:findfont: score(FontEntry(fname='/System/Library/Fonts/Supplemental/Verdana Bold.ttf', name='Verdana', style='normal', variant='normal', weight=700, stretch='normal', size='scalable')) = 3.9713636363636367\n", + "DEBUG:matplotlib.font_manager:findfont: score(FontEntry(fname='/System/Library/Fonts/Supplemental/Didot.ttc', name='Didot', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05\n", + "DEBUG:matplotlib.font_manager:findfont: score(FontEntry(fname='/System/Library/Fonts/Supplemental/NotoSansSaurashtra-Regular.ttf', name='Noto Sans Saurashtra', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05\n", + "DEBUG:matplotlib.font_manager:findfont: score(FontEntry(fname='/System/Library/Fonts/Supplemental/NotoSansLinearA-Regular.ttf', name='Noto Sans Linear A', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05\n", + "DEBUG:matplotlib.font_manager:findfont: score(FontEntry(fname='/System/Library/Fonts/Supplemental/Bodoni Ornaments.ttf', name='Bodoni Ornaments', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05\n", + "DEBUG:matplotlib.font_manager:findfont: score(FontEntry(fname='/System/Library/Fonts/Supplemental/NotoSansTifinagh-Regular.ttf', name='Noto Sans Tifinagh', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05\n", + "DEBUG:matplotlib.font_manager:findfont: score(FontEntry(fname='/System/Library/Fonts/Supplemental/NotoSansPhagsPa-Regular.ttf', name='Noto Sans PhagsPa', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05\n", + "DEBUG:matplotlib.font_manager:findfont: score(FontEntry(fname='/System/Library/Fonts/Supplemental/NotoSansTaiLe-Regular.ttf', name='Noto Sans Tai Le', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05\n", + "DEBUG:matplotlib.font_manager:findfont: score(FontEntry(fname='/System/Library/Fonts/SFCompactItalic.ttf', name='.SF Compact', style='italic', variant='normal', weight=1000, stretch='normal', size='scalable')) = 11.62\n", + "DEBUG:matplotlib.font_manager:findfont: score(FontEntry(fname='/System/Library/Fonts/Supplemental/NotoSansOldPersian-Regular.ttf', name='Noto Sans Old Persian', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05\n", + "DEBUG:matplotlib.font_manager:findfont: score(FontEntry(fname='/System/Library/Fonts/Apple Braille.ttf', name='Apple Braille', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05\n", + "DEBUG:matplotlib.font_manager:findfont: score(FontEntry(fname='/System/Library/Fonts/Supplemental/Kailasa.ttc', name='Kailasa', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05\n", + "DEBUG:matplotlib.font_manager:findfont: score(FontEntry(fname='/System/Library/Fonts/Supplemental/EuphemiaCAS.ttc', name='Euphemia UCAS', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05\n", + "DEBUG:matplotlib.font_manager:findfont: score(FontEntry(fname='/System/Library/Fonts/Supplemental/Verdana.ttf', name='Verdana', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 3.6863636363636365\n", + "DEBUG:matplotlib.font_manager:findfont: score(FontEntry(fname='/System/Library/Fonts/Supplemental/STIXIntSmBol.otf', name='STIXIntegralsSm', style='normal', variant='normal', weight=700, stretch='normal', size='scalable')) = 10.335\n", + "DEBUG:matplotlib.font_manager:findfont: score(FontEntry(fname='/System/Library/Fonts/ヒラギノ丸ゴ ProN W4.ttc', name='Hiragino Maru Gothic Pro', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05\n", + "DEBUG:matplotlib.font_manager:findfont: score(FontEntry(fname='/System/Library/Fonts/Supplemental/Bodoni 72 Smallcaps Book.ttf', name='Bodoni 72 Smallcaps', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05\n", + "DEBUG:matplotlib.font_manager:findfont: score(FontEntry(fname='/System/Library/Fonts/ヒラギノ角ゴシック W9.ttc', name='Hiragino Sans', style='normal', variant='normal', weight=900, stretch='normal', size='scalable')) = 10.525\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "DEBUG:matplotlib.font_manager:findfont: score(FontEntry(fname='/System/Library/Fonts/ヒラギノ角ゴシック W7.ttc', name='Hiragino Sans', style='normal', variant='normal', weight=700, stretch='normal', size='scalable')) = 10.335\n", + "DEBUG:matplotlib.font_manager:findfont: score(FontEntry(fname='/System/Library/Fonts/Supplemental/Futura.ttc', name='Futura', style='normal', variant='normal', weight=500, stretch='normal', size='scalable')) = 10.145\n", + "DEBUG:matplotlib.font_manager:findfont: score(FontEntry(fname='/System/Library/Fonts/Supplemental/Oriya MN.ttc', name='Oriya MN', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05\n", + "DEBUG:matplotlib.font_manager:findfont: score(FontEntry(fname='/System/Library/Fonts/ヒラギノ角ゴシック W8.ttc', name='Hiragino Sans', style='normal', variant='normal', weight=800, stretch='normal', size='scalable')) = 10.43\n", + "DEBUG:matplotlib.font_manager:findfont: score(FontEntry(fname='/System/Library/Fonts/Supplemental/Krungthep.ttf', name='Krungthep', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05\n", + "DEBUG:matplotlib.font_manager:findfont: score(FontEntry(fname='/System/Library/Fonts/Supplemental/Times New Roman.ttf', name='Times New Roman', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05\n", + "DEBUG:matplotlib.font_manager:findfont: score(FontEntry(fname='/System/Library/Fonts/Supplemental/NotoSansOldPermic-Regular.ttf', name='Noto Sans Old Permic', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05\n", + "DEBUG:matplotlib.font_manager:findfont: score(FontEntry(fname='/System/Library/Fonts/Supplemental/STIXNonUniIta.otf', name='STIXNonUnicode', style='italic', variant='normal', weight=400, stretch='normal', size='scalable')) = 11.05\n", + "DEBUG:matplotlib.font_manager:findfont: score(FontEntry(fname='/System/Library/Fonts/LucidaGrande.ttc', name='Lucida Grande', style='normal', variant='normal', weight=500, stretch='normal', size='scalable')) = 2.872272727272727\n", + "DEBUG:matplotlib.font_manager:findfont: score(FontEntry(fname='/System/Library/Fonts/Supplemental/DevanagariMT.ttc', name='Devanagari MT', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05\n", + "DEBUG:matplotlib.font_manager:findfont: score(FontEntry(fname='/System/Library/Fonts/STHeiti Light.ttc', name='Heiti TC', style='normal', variant='normal', weight=300, stretch='normal', size='scalable')) = 10.145\n", + "DEBUG:matplotlib.font_manager:findfont: score(FontEntry(fname='/System/Library/Fonts/Supplemental/SuperClarendon.ttc', name='Superclarendon', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05\n", + "DEBUG:matplotlib.font_manager:findfont: score(FontEntry(fname='/System/Library/Fonts/ヒラギノ角ゴシック W1.ttc', name='Hiragino Sans', style='normal', variant='normal', weight=200, stretch='normal', size='scalable')) = 10.24\n", + "DEBUG:matplotlib.font_manager:findfont: score(FontEntry(fname='/System/Library/Fonts/Supplemental/NotoSansCoptic-Regular.ttf', name='Noto Sans Coptic', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05\n", + "DEBUG:matplotlib.font_manager:findfont: score(FontEntry(fname='/System/Library/Fonts/Supplemental/NotoSansMendeKikakui-Regular.ttf', name='Noto Sans Mende Kikakui', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05\n", + "DEBUG:matplotlib.font_manager:findfont: score(FontEntry(fname='/System/Library/Fonts/Supplemental/NotoSansEgyptianHieroglyphs-Regular.ttf', name='Noto Sans Egyptian Hieroglyphs', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05\n", + "DEBUG:matplotlib.font_manager:findfont: score(FontEntry(fname='/System/Library/Fonts/Thonburi.ttc', name='Thonburi', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05\n", + "DEBUG:matplotlib.font_manager:findfont: score(FontEntry(fname='/System/Library/Fonts/Supplemental/NotoSansModi-Regular.ttf', name='Noto Sans Modi', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05\n", + "DEBUG:matplotlib.font_manager:findfont: score(FontEntry(fname='/System/Library/Fonts/Avenir Next Condensed.ttc', name='Avenir Next Condensed', style='normal', variant='normal', weight=700, stretch='condensed', size='scalable')) = 10.535\n", + "DEBUG:matplotlib.font_manager:findfont: score(FontEntry(fname='/System/Library/Fonts/Supplemental/SignPainter.ttc', name='SignPainter', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05\n", + "DEBUG:matplotlib.font_manager:findfont: score(FontEntry(fname='/System/Library/Fonts/Supplemental/PTSans.ttc', name='PT Sans', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05\n", + "DEBUG:matplotlib.font_manager:findfont: score(FontEntry(fname='/System/Library/Fonts/Supplemental/NotoSansSharada-Regular.ttf', name='Noto Sans Sharada', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05\n", + "DEBUG:matplotlib.font_manager:findfont: score(FontEntry(fname='/System/Library/Fonts/Supplemental/Trebuchet MS Bold Italic.ttf', name='Trebuchet MS', style='italic', variant='normal', weight=700, stretch='normal', size='scalable')) = 11.335\n", + "DEBUG:matplotlib.font_manager:findfont: score(FontEntry(fname='/System/Library/Fonts/STHeiti Medium.ttc', name='Heiti TC', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05\n", + "DEBUG:matplotlib.font_manager:findfont: score(FontEntry(fname='/System/Library/Fonts/Supplemental/NotoSerifAhom-Regular.ttf', name='Noto Serif Ahom', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05\n", + "DEBUG:matplotlib.font_manager:findfont: score(FontEntry(fname='/System/Library/Fonts/Supplemental/Diwan Thuluth.ttf', name='Diwan Thuluth', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05\n", + "DEBUG:matplotlib.font_manager:findfont: score(FontEntry(fname='/System/Library/Fonts/Supplemental/NotoSansOldHungarian-Regular.ttf', name='Noto Sans Old Hungarian', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05\n", + "DEBUG:matplotlib.font_manager:findfont: score(FontEntry(fname='/System/Library/Fonts/Supplemental/NotoSansInscriptionalParthian-Regular.ttf', name='Noto Sans Inscriptional Parthian', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05\n", + "DEBUG:matplotlib.font_manager:findfont: score(FontEntry(fname='/System/Library/Fonts/Supplemental/NotoSansCuneiform-Regular.ttf', name='Noto Sans Cuneiform', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05\n", + "DEBUG:matplotlib.font_manager:findfont: score(FontEntry(fname='/System/Library/Fonts/Supplemental/Georgia.ttf', name='Georgia', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05\n", + "DEBUG:matplotlib.font_manager:findfont: score(FontEntry(fname='/System/Library/Fonts/Supplemental/Tahoma.ttf', name='Tahoma', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05\n", + "DEBUG:matplotlib.font_manager:findfont: score(FontEntry(fname='/System/Library/Fonts/Supplemental/NotoSansLisu-Regular.ttf', name='Noto Sans Lisu', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05\n", + "DEBUG:matplotlib.font_manager:findfont: score(FontEntry(fname='/System/Library/Fonts/Supplemental/SukhumvitSet.ttc', name='Sukhumvit Set', style='normal', variant='normal', weight=250, stretch='normal', size='scalable')) = 10.1925\n", + "DEBUG:matplotlib.font_manager:findfont: score(FontEntry(fname='/System/Library/Fonts/SFNS.ttf', name='System Font', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05\n", + "DEBUG:matplotlib.font_manager:findfont: score(FontEntry(fname='/System/Library/Fonts/Supplemental/NotoSansOldSouthArabian-Regular.ttf', name='Noto Sans Old South Arabian', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05\n", + "DEBUG:matplotlib.font_manager:findfont: score(FontEntry(fname='/System/Library/Fonts/Supplemental/NotoSansCaucasianAlbanian-Regular.ttf', name='Noto Sans Caucasian Albanian', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "DEBUG:matplotlib.font_manager:findfont: score(FontEntry(fname='/System/Library/Fonts/Supplemental/Gurmukhi.ttf', name='Gurmukhi MT', style='normal', variant='normal', weight=500, stretch='normal', size='scalable')) = 10.145\n", + "DEBUG:matplotlib.font_manager:findfont: score(FontEntry(fname='/System/Library/Fonts/Supplemental/NotoSansDuployan-Regular.ttf', name='Noto Sans Duployan', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05\n", + "DEBUG:matplotlib.font_manager:findfont: score(FontEntry(fname='/System/Library/Fonts/Supplemental/Chalkduster.ttf', name='Chalkduster', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05\n", + "DEBUG:matplotlib.font_manager:findfont: score(FontEntry(fname='/System/Library/Fonts/Supplemental/NotoSansTagbanwa-Regular.ttf', name='Noto Sans Tagbanwa', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05\n", + "DEBUG:matplotlib.font_manager:findfont: score(FontEntry(fname='/System/Library/Fonts/Supplemental/STIXSizTwoSymBol.otf', name='STIXSizeTwoSym', style='normal', variant='normal', weight=700, stretch='normal', size='scalable')) = 10.335\n", + "DEBUG:matplotlib.font_manager:findfont: score(FontEntry(fname='/System/Library/Fonts/Supplemental/Hoefler Text Ornaments.ttf', name='Hoefler Text', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05\n", + "DEBUG:matplotlib.font_manager:findfont: score(FontEntry(fname='/System/Library/Fonts/NotoSansOriya.ttc', name='Noto Sans Oriya', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05\n", + "DEBUG:matplotlib.font_manager:findfont: score(FontEntry(fname='/System/Library/Fonts/MuktaMahee.ttc', name='Mukta Mahee', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05\n", + "DEBUG:matplotlib.font_manager:findfont: score(FontEntry(fname='/System/Library/Fonts/Supplemental/Tamil MN.ttc', name='Tamil MN', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05\n", + "DEBUG:matplotlib.font_manager:findfont: score(FontEntry(fname='/System/Library/Fonts/Supplemental/NotoSansHatran-Regular.ttf', name='Noto Sans Hatran', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05\n", + "DEBUG:matplotlib.font_manager:findfont: score(FontEntry(fname='/System/Library/Fonts/Supplemental/STIXIntUpDReg.otf', name='STIXIntegralsUpD', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05\n", + "DEBUG:matplotlib.font_manager:findfont: score(FontEntry(fname='/System/Library/Fonts/Supplemental/NotoSansWancho-Regular.ttf', name='Noto Sans Wancho', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05\n", + "DEBUG:matplotlib.font_manager:findfont: score(FontEntry(fname='/System/Library/Fonts/Supplemental/STIXNonUniBolIta.otf', name='STIXNonUnicode', style='italic', variant='normal', weight=700, stretch='normal', size='scalable')) = 11.335\n", + "DEBUG:matplotlib.font_manager:findfont: score(FontEntry(fname='/System/Library/Fonts/Supplemental/Farah.ttc', name='Farah', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05\n", + "DEBUG:matplotlib.font_manager:findfont: score(FontEntry(fname='/System/Library/Fonts/NotoSansArmenian.ttc', name='Noto Sans Armenian', style='normal', variant='normal', weight=900, stretch='normal', size='scalable')) = 10.525\n", + "DEBUG:matplotlib.font_manager:findfont: score(FontEntry(fname='/System/Library/Fonts/Supplemental/PlantagenetCherokee.ttf', name='Plantagenet Cherokee', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05\n", + "DEBUG:matplotlib.font_manager:findfont: score(FontEntry(fname='/System/Library/Fonts/Supplemental/Charter.ttc', name='Charter', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05\n", + "DEBUG:matplotlib.font_manager:findfont: score(FontEntry(fname='/System/Library/Fonts/Supplemental/STIXSizFourSymReg.otf', name='STIXSizeFourSym', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05\n", + "DEBUG:matplotlib.font_manager:findfont: score(FontEntry(fname='/System/Library/Fonts/Supplemental/Arial Italic.ttf', name='Arial', style='italic', variant='normal', weight=400, stretch='normal', size='scalable')) = 7.413636363636363\n", + "DEBUG:matplotlib.font_manager:findfont: score(FontEntry(fname='/System/Library/Fonts/Supplemental/Kannada Sangam MN.ttc', name='Kannada Sangam MN', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05\n", + "DEBUG:matplotlib.font_manager:findfont: score(FontEntry(fname='/System/Library/Fonts/Supplemental/STIXIntUpBol.otf', name='STIXIntegralsUp', style='normal', variant='normal', weight=700, stretch='normal', size='scalable')) = 10.335\n", + "DEBUG:matplotlib.font_manager:findfont: score(FontEntry(fname='/System/Library/Fonts/Supplemental/STIXGeneralItalic.otf', name='STIXGeneral', style='italic', variant='normal', weight=400, stretch='normal', size='scalable')) = 11.05\n", + "DEBUG:matplotlib.font_manager:findfont: score(FontEntry(fname='/System/Library/Fonts/Supplemental/NotoSerifBalinese-Regular.ttf', name='Noto Serif Balinese', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05\n", + "DEBUG:matplotlib.font_manager:findfont: score(FontEntry(fname='/System/Library/Fonts/Supplemental/GillSans.ttc', name='Gill Sans', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05\n", + "DEBUG:matplotlib.font_manager:findfont: score(FontEntry(fname='/System/Library/Fonts/Supplemental/NotoSansLinearB-Regular.ttf', name='Noto Sans Linear B', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05\n", + "DEBUG:matplotlib.font_manager:findfont: score(FontEntry(fname='/System/Library/Fonts/Supplemental/NotoSansOldTurkic-Regular.ttf', name='Noto Sans Old Turkic', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05\n", + "DEBUG:matplotlib.font_manager:findfont: score(FontEntry(fname='/System/Library/Fonts/Supplemental/NotoSansAdlam-Regular.ttf', name='Noto Sans Adlam', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05\n", + "DEBUG:matplotlib.font_manager:findfont: score(FontEntry(fname='/System/Library/Fonts/Supplemental/STIXIntUpReg.otf', name='STIXIntegralsUp', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05\n", + "DEBUG:matplotlib.font_manager:findfont: score(FontEntry(fname='/System/Library/Fonts/Supplemental/NotoSansGothic-Regular.ttf', name='Noto Sans Gothic', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05\n", + "DEBUG:matplotlib.font_manager:findfont: score(FontEntry(fname='/System/Library/Fonts/NotoSansMyanmar.ttc', name='Noto Sans Myanmar', style='normal', variant='normal', weight=900, stretch='normal', size='scalable')) = 10.525\n", + "DEBUG:matplotlib.font_manager:findfont: score(FontEntry(fname='/System/Library/Fonts/NewYork.ttf', name='.New York', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05\n", + "DEBUG:matplotlib.font_manager:findfont: score(FontEntry(fname='/System/Library/Fonts/Supplemental/STIXSizThreeSymReg.otf', name='STIXSizeThreeSym', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05\n", + "DEBUG:matplotlib.font_manager:findfont: score(FontEntry(fname='/System/Library/Fonts/Supplemental/NotoSansRejang-Regular.ttf', name='Noto Sans Rejang', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05\n", + "DEBUG:matplotlib.font_manager:findfont: score(FontEntry(fname='/System/Library/Fonts/Supplemental/Courier New.ttf', name='Courier New', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05\n", + "DEBUG:matplotlib.font_manager:findfont: score(FontEntry(fname='/System/Library/Fonts/Supplemental/Bangla MN.ttc', name='Bangla MN', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05\n", + "DEBUG:matplotlib.font_manager:findfont: score(FontEntry(fname='/System/Library/Fonts/Supplemental/Bodoni 72.ttc', name='Bodoni 72', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "DEBUG:matplotlib.font_manager:findfont: score(FontEntry(fname='/System/Library/Fonts/SFCompact.ttf', name='.SF Compact', style='normal', variant='normal', weight=1000, stretch='normal', size='scalable')) = 10.62\n", + "DEBUG:matplotlib.font_manager:findfont: score(FontEntry(fname='/System/Library/Fonts/Supplemental/Kefa.ttc', name='Kefa', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05\n", + "DEBUG:matplotlib.font_manager:findfont: score(FontEntry(fname='/System/Library/Fonts/Supplemental/Farisi.ttf', name='Farisi', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05\n", + "DEBUG:matplotlib.font_manager:findfont: score(FontEntry(fname='/System/Library/Fonts/Supplemental/Herculanum.ttf', name='Herculanum', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05\n", + "DEBUG:matplotlib.font_manager:findfont: score(FontEntry(fname='/System/Library/Fonts/Supplemental/Andale Mono.ttf', name='Andale Mono', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05\n", + "DEBUG:matplotlib.font_manager:findfont: score(FontEntry(fname='/System/Library/Fonts/Supplemental/Times New Roman Italic.ttf', name='Times New Roman', style='italic', variant='normal', weight=400, stretch='normal', size='scalable')) = 11.05\n", + "DEBUG:matplotlib.font_manager:findfont: score(FontEntry(fname='/System/Library/Fonts/ヒラギノ角ゴシック W4.ttc', name='Hiragino Sans', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05\n", + "DEBUG:matplotlib.font_manager:findfont: score(FontEntry(fname='/System/Library/Fonts/Supplemental/Bangla Sangam MN.ttc', name='Bangla Sangam MN', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05\n", + "DEBUG:matplotlib.font_manager:findfont: score(FontEntry(fname='/System/Library/Fonts/Monaco.ttf', name='Monaco', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05\n", + "DEBUG:matplotlib.font_manager:findfont: score(FontEntry(fname='/System/Library/Fonts/Supplemental/Muna.ttc', name='Muna', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05\n", + "DEBUG:matplotlib.font_manager:findfont: score(FontEntry(fname='/System/Library/Fonts/Supplemental/Tahoma Bold.ttf', name='Tahoma', style='normal', variant='normal', weight=700, stretch='normal', size='scalable')) = 10.335\n", + "DEBUG:matplotlib.font_manager:findfont: score(FontEntry(fname='/System/Library/Fonts/Hiragino Sans GB.ttc', name='Hiragino Sans GB', style='normal', variant='normal', weight=300, stretch='normal', size='scalable')) = 10.145\n", + "DEBUG:matplotlib.font_manager:findfont: score(FontEntry(fname='/System/Library/Fonts/Supplemental/STIXIntUpSmBol.otf', name='STIXIntegralsUpSm', style='normal', variant='normal', weight=700, stretch='normal', size='scalable')) = 10.335\n", + "DEBUG:matplotlib.font_manager:findfont: score(FontEntry(fname='/System/Library/Fonts/Supplemental/NotoSansMeroitic-Regular.ttf', name='Noto Sans Meroitic', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05\n", + "DEBUG:matplotlib.font_manager:findfont: score(FontEntry(fname='/System/Library/Fonts/Supplemental/NotoSansSylotiNagri-Regular.ttf', name='Noto Sans Syloti Nagri', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05\n", + "DEBUG:matplotlib.font_manager:findfont: score(FontEntry(fname='/System/Library/Fonts/Supplemental/Kannada MN.ttc', name='Kannada MN', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05\n", + "DEBUG:matplotlib.font_manager:findfont: score(FontEntry(fname='/System/Library/Fonts/Supplemental/NotoSansBrahmi-Regular.ttf', name='Noto Sans Brahmi', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05\n", + "DEBUG:matplotlib.font_manager:findfont: score(FontEntry(fname='/System/Library/Fonts/Noteworthy.ttc', name='Noteworthy', style='normal', variant='normal', weight=300, stretch='normal', size='scalable')) = 10.145\n", + "DEBUG:matplotlib.font_manager:findfont: score(FontEntry(fname='/System/Library/Fonts/Supplemental/Lao MN.ttc', name='Lao MN', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05\n", + "DEBUG:matplotlib.font_manager:findfont: score(FontEntry(fname='/System/Library/Fonts/Apple Braille Outline 6 Dot.ttf', name='Apple Braille', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05\n", + "DEBUG:matplotlib.font_manager:findfont: score(FontEntry(fname='/System/Library/Fonts/Supplemental/NotoSansGlagolitic-Regular.ttf', name='Noto Sans Glagolitic', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05\n", + "DEBUG:matplotlib.font_manager:findfont: score(FontEntry(fname='/System/Library/Fonts/KohinoorTelugu.ttc', name='Kohinoor Telugu', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05\n", + "DEBUG:matplotlib.font_manager:findfont: score(FontEntry(fname='/System/Library/Fonts/Supplemental/Beirut.ttc', name='Beirut', style='normal', variant='normal', weight=700, stretch='normal', size='scalable')) = 10.335\n", + "DEBUG:matplotlib.font_manager:findfont: score(FontEntry(fname='/System/Library/Fonts/Supplemental/Papyrus.ttc', name='Papyrus', style='normal', variant='normal', weight=400, stretch='condensed', size='scalable')) = 10.25\n", + "DEBUG:matplotlib.font_manager:findfont: score(FontEntry(fname='/System/Library/Fonts/Supplemental/Trebuchet MS Bold.ttf', name='Trebuchet MS', style='normal', variant='normal', weight=700, stretch='normal', size='scalable')) = 10.335\n", + "DEBUG:matplotlib.font_manager:findfont: score(FontEntry(fname='/System/Library/Fonts/Supplemental/Verdana Bold Italic.ttf', name='Verdana', style='italic', variant='normal', weight=700, stretch='normal', size='scalable')) = 4.971363636363637\n", + "DEBUG:matplotlib.font_manager:findfont: score(FontEntry(fname='/System/Library/Fonts/Supplemental/STIXVarBol.otf', name='STIXVariants', style='normal', variant='normal', weight=700, stretch='normal', size='scalable')) = 10.335\n", + "DEBUG:matplotlib.font_manager:findfont: score(FontEntry(fname='/System/Library/Fonts/Supplemental/NotoSansUgaritic-Regular.ttf', name='Noto Sans Ugaritic', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05\n", + "DEBUG:matplotlib.font_manager:findfont: score(FontEntry(fname='/System/Library/Fonts/Supplemental/NotoSansJavanese-Regular.otf', name='Noto Sans Javanese', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05\n", + "DEBUG:matplotlib.font_manager:findfont: score(FontEntry(fname='/System/Library/Fonts/Supplemental/NotoSansLepcha-Regular.ttf', name='Noto Sans Lepcha', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05\n", + "DEBUG:matplotlib.font_manager:findfont: score(FontEntry(fname='/System/Library/Fonts/Supplemental/Ayuthaya.ttf', name='Ayuthaya', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05\n", + "DEBUG:matplotlib.font_manager:findfont: score(FontEntry(fname='/System/Library/Fonts/Supplemental/NotoSansBassaVah-Regular.ttf', name='Noto Sans Bassa Vah', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05\n", + "DEBUG:matplotlib.font_manager:findfont: score(FontEntry(fname='/System/Library/Fonts/Supplemental/Arial Black.ttf', name='Arial Black', style='normal', variant='normal', weight=900, stretch='normal', size='scalable')) = 10.525\n", + "DEBUG:matplotlib.font_manager:findfont: score(FontEntry(fname='/System/Library/Fonts/Supplemental/Apple Chancery.ttf', name='Apple Chancery', style='normal', variant='normal', weight=0, stretch='normal', size='scalable')) = 10.43\n", + "DEBUG:matplotlib.font_manager:findfont: score(FontEntry(fname='/System/Library/Fonts/NotoSerifMyanmar.ttc', name='Noto Serif Myanmar', style='normal', variant='normal', weight=900, stretch='normal', size='scalable')) = 10.525\n", + "DEBUG:matplotlib.font_manager:findfont: score(FontEntry(fname='/System/Library/Fonts/Supplemental/STIXSizOneSymReg.otf', name='STIXSizeOneSym', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "DEBUG:matplotlib.font_manager:findfont: score(FontEntry(fname='/System/Library/Fonts/Supplemental/Sana.ttc', name='Sana', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05\n", + "DEBUG:matplotlib.font_manager:findfont: score(FontEntry(fname='/System/Library/Fonts/Supplemental/NotoSansOldItalic-Regular.ttf', name='Noto Sans Old Italic', style='italic', variant='normal', weight=400, stretch='normal', size='scalable')) = 11.05\n", + "DEBUG:matplotlib.font_manager:findfont: score(FontEntry(fname='/System/Library/Fonts/Supplemental/Times New Roman Bold Italic.ttf', name='Times New Roman', style='italic', variant='normal', weight=700, stretch='normal', size='scalable')) = 11.335\n", + "DEBUG:matplotlib.font_manager:findfont: score(FontEntry(fname='/System/Library/Fonts/Supplemental/Copperplate.ttc', name='Copperplate', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05\n", + "DEBUG:matplotlib.font_manager:findfont: score(FontEntry(fname='/System/Library/Fonts/Supplemental/NotoSansOsmanya-Regular.ttf', name='Noto Sans Osmanya', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05\n", + "DEBUG:matplotlib.font_manager:findfont: score(FontEntry(fname='/System/Library/Fonts/Supplemental/NotoSansLydian-Regular.ttf', name='Noto Sans Lydian', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05\n", + "DEBUG:matplotlib.font_manager:findfont: score(FontEntry(fname='/System/Library/Fonts/Supplemental/NotoSansNewa-Regular.ttf', name='Noto Sans Newa', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05\n", + "DEBUG:matplotlib.font_manager:findfont: score(FontEntry(fname='/System/Library/Fonts/Supplemental/NotoSansTaiTham-Regular.ttf', name='Noto Sans Tai Tham', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05\n", + "DEBUG:matplotlib.font_manager:findfont: score(FontEntry(fname='/System/Library/Fonts/Courier.ttc', name='Courier', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05\n", + "DEBUG:matplotlib.font_manager:findfont: score(FontEntry(fname='/System/Library/Fonts/Apple Braille Outline 8 Dot.ttf', name='Apple Braille', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05\n", + "DEBUG:matplotlib.font_manager:findfont: score(FontEntry(fname='/System/Library/Fonts/Supplemental/NotoSansAvestan-Regular.ttf', name='Noto Sans Avestan', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05\n", + "DEBUG:matplotlib.font_manager:findfont: score(FontEntry(fname='/System/Library/Fonts/Supplemental/NotoSansKhudawadi-Regular.ttf', name='Noto Sans Khudawadi', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05\n", + "DEBUG:matplotlib.font_manager:findfont: score(FontEntry(fname='/System/Library/Fonts/Supplemental/NotoSansBhaiksuki-Regular.ttf', name='Noto Sans Bhaiksuki', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05\n", + "DEBUG:matplotlib.font_manager:findfont: score(FontEntry(fname='/System/Library/Fonts/Supplemental/Athelas.ttc', name='Athelas', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05\n", + "DEBUG:matplotlib.font_manager:findfont: score(FontEntry(fname='/System/Library/Fonts/Supplemental/Rockwell.ttc', name='Rockwell', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05\n", + "DEBUG:matplotlib.font_manager:findfont: score(FontEntry(fname='/System/Library/Fonts/Supplemental/Oriya Sangam MN.ttc', name='Oriya Sangam MN', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05\n", + "DEBUG:matplotlib.font_manager:findfont: score(FontEntry(fname='/System/Library/Fonts/Supplemental/PartyLET-plain.ttf', name='Party LET', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05\n", + "DEBUG:matplotlib.font_manager:findfont: score(FontEntry(fname='/System/Library/Fonts/NewYorkItalic.ttf', name='.New York', style='italic', variant='normal', weight=400, stretch='normal', size='scalable')) = 11.05\n", + "DEBUG:matplotlib.font_manager:findfont: score(FontEntry(fname='/System/Library/Fonts/ArialHB.ttc', name='Arial Hebrew', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05\n", + "DEBUG:matplotlib.font_manager:findfont: score(FontEntry(fname='/System/Library/Fonts/Supplemental/PTSerifCaption.ttc', name='PT Serif Caption', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05\n", + "DEBUG:matplotlib.font_manager:findfont: score(FontEntry(fname='/System/Library/Fonts/Supplemental/NotoSansKaithi-Regular.ttf', name='Noto Sans Kaithi', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05\n", + "DEBUG:matplotlib.font_manager:findfont: score(FontEntry(fname='/System/Library/Fonts/Supplemental/Myanmar MN.ttc', name='Myanmar MN', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05\n", + "DEBUG:matplotlib.font_manager:findfont: score(FontEntry(fname='/System/Library/Fonts/Supplemental/Nadeem.ttc', name='Nadeem', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05\n", + "DEBUG:matplotlib.font_manager:findfont: score(FontEntry(fname='/System/Library/Fonts/Supplemental/STIXSizOneSymBol.otf', name='STIXSizeOneSym', style='normal', variant='normal', weight=700, stretch='normal', size='scalable')) = 10.335\n", + "DEBUG:matplotlib.font_manager:findfont: score(FontEntry(fname='/System/Library/Fonts/Supplemental/Comic Sans MS Bold.ttf', name='Comic Sans MS', style='normal', variant='normal', weight=700, stretch='normal', size='scalable')) = 10.335\n", + "DEBUG:matplotlib.font_manager:findfont: score(FontEntry(fname='/System/Library/Fonts/Supplemental/Sathu.ttf', name='Sathu', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05\n", + "DEBUG:matplotlib.font_manager:findfont: score(FontEntry(fname='/System/Library/Fonts/Supplemental/NotoSansKayahLi-Regular.ttf', name='Noto Sans Kayah Li', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05\n", + "DEBUG:matplotlib.font_manager:findfont: score(FontEntry(fname='/System/Library/Fonts/Supplemental/Kokonor.ttf', name='Kokonor', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05\n", + "DEBUG:matplotlib.font_manager:findfont: score(FontEntry(fname='/System/Library/Fonts/Supplemental/Telugu Sangam MN.ttc', name='Telugu Sangam MN', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05\n", + "DEBUG:matplotlib.font_manager:findfont: score(FontEntry(fname='/System/Library/Fonts/Supplemental/NotoSansBuginese-Regular.ttf', name='Noto Sans Buginese', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05\n", + "DEBUG:matplotlib.font_manager:findfont: score(FontEntry(fname='/System/Library/Fonts/Supplemental/NotoSansNewTaiLue-Regular.ttf', name='Noto Sans New Tai Lue', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05\n", + "DEBUG:matplotlib.font_manager:findfont: score(FontEntry(fname='/System/Library/Fonts/Supplemental/Songti.ttc', name='Songti SC', style='normal', variant='normal', weight=900, stretch='normal', size='scalable')) = 10.525\n", + "DEBUG:matplotlib.font_manager:findfont: score(FontEntry(fname='/System/Library/Fonts/Supplemental/Skia.ttf', name='Skia', style='normal', variant='normal', weight=5, stretch='normal', size='scalable')) = 10.42525\n", + "DEBUG:matplotlib.font_manager:findfont: score(FontEntry(fname='/System/Library/Fonts/Supplemental/NotoSansMandaic-Regular.ttf', name='Noto Sans Mandaic', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05\n", + "DEBUG:matplotlib.font_manager:findfont: score(FontEntry(fname='/System/Library/Fonts/Supplemental/Arial Bold Italic.ttf', name='Arial', style='italic', variant='normal', weight=700, stretch='normal', size='scalable')) = 7.698636363636363\n", + "DEBUG:matplotlib.font_manager:findfont: score(FontEntry(fname='/System/Library/Fonts/Palatino.ttc', name='Palatino', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "DEBUG:matplotlib.font_manager:findfont: score(FontEntry(fname='/System/Library/Fonts/Supplemental/Wingdings 2.ttf', name='Wingdings 2', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05\n", + "DEBUG:matplotlib.font_manager:findfont: score(FontEntry(fname='/System/Library/Fonts/ヒラギノ角ゴシック W6.ttc', name='Hiragino Sans', style='normal', variant='normal', weight=600, stretch='normal', size='scalable')) = 10.24\n", + "DEBUG:matplotlib.font_manager:findfont: score(FontEntry(fname='/System/Library/Fonts/Supplemental/Brush Script.ttf', name='Brush Script MT', style='italic', variant='normal', weight=400, stretch='normal', size='scalable')) = 11.05\n", + "DEBUG:matplotlib.font_manager:findfont: score(FontEntry(fname='/System/Library/Fonts/Supplemental/Trebuchet MS.ttf', name='Trebuchet MS', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05\n", + "DEBUG:matplotlib.font_manager:findfont: score(FontEntry(fname='/System/Library/Fonts/Supplemental/Gurmukhi MN.ttc', name='Gurmukhi MN', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05\n", + "DEBUG:matplotlib.font_manager:findfont: score(FontEntry(fname='/System/Library/Fonts/Supplemental/Corsiva.ttc', name='Corsiva Hebrew', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05\n", + "DEBUG:matplotlib.font_manager:findfont: score(FontEntry(fname='/System/Library/Fonts/Supplemental/Silom.ttf', name='Silom', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05\n", + "DEBUG:matplotlib.font_manager:findfont: score(FontEntry(fname='/System/Library/Fonts/Supplemental/Baskerville.ttc', name='Baskerville', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05\n", + "DEBUG:matplotlib.font_manager:findfont: score(FontEntry(fname='/System/Library/Fonts/Supplemental/NotoSansTakri-Regular.ttf', name='Noto Sans Takri', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05\n", + "DEBUG:matplotlib.font_manager:findfont: score(FontEntry(fname='/System/Library/Fonts/Supplemental/Arial Narrow Bold Italic.ttf', name='Arial Narrow', style='italic', variant='normal', weight=700, stretch='condensed', size='scalable')) = 11.535\n", + "DEBUG:matplotlib.font_manager:findfont: score(FontEntry(fname='/System/Library/Fonts/Supplemental/Arial Narrow.ttf', name='Arial Narrow', style='normal', variant='normal', weight=400, stretch='condensed', size='scalable')) = 10.25\n", + "DEBUG:matplotlib.font_manager:findfont: score(FontEntry(fname='/System/Library/Fonts/Supplemental/NotoSansMarchen-Regular.ttf', name='Noto Sans Marchen', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05\n", + "DEBUG:matplotlib.font_manager:findfont: score(FontEntry(fname='/System/Library/Fonts/Supplemental/STIXGeneral.otf', name='STIXGeneral', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05\n", + "DEBUG:matplotlib.font_manager:findfont: score(FontEntry(fname='/System/Library/Fonts/Supplemental/Luminari.ttf', name='Luminari', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05\n", + "DEBUG:matplotlib.font_manager:findfont: score(FontEntry(fname='/System/Library/Fonts/SFNSMonoItalic.ttf', name='.SF NS Mono', style='italic', variant='normal', weight=295, stretch='normal', size='scalable')) = 11.14975\n", + "DEBUG:matplotlib.font_manager:findfont: score(FontEntry(fname='/System/Library/Fonts/Supplemental/Comic Sans MS.ttf', name='Comic Sans MS', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05\n", + "DEBUG:matplotlib.font_manager:findfont: score(FontEntry(fname='/System/Library/Fonts/Supplemental/NotoSansCham-Regular.ttf', name='Noto Sans Cham', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05\n", + "DEBUG:matplotlib.font_manager:findfont: score(FontEntry(fname='/System/Library/Fonts/Supplemental/Trebuchet MS Italic.ttf', name='Trebuchet MS', style='italic', variant='normal', weight=400, stretch='normal', size='scalable')) = 11.05\n", + "DEBUG:matplotlib.font_manager:findfont: score(FontEntry(fname='/System/Library/Fonts/Supplemental/Bodoni 72 OS.ttc', name='Bodoni 72 Oldstyle', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05\n", + "DEBUG:matplotlib.font_manager:findfont: score(FontEntry(fname='/System/Library/Fonts/Supplemental/AppleGothic.ttf', name='AppleGothic', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05\n", + "DEBUG:matplotlib.font_manager:findfont: score(FontEntry(fname='/System/Library/Fonts/Supplemental/NotoSansSamaritan-Regular.ttf', name='Noto Sans Samaritan', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05\n", + "DEBUG:matplotlib.font_manager:findfont: score(FontEntry(fname='/System/Library/Fonts/Supplemental/Arial Bold.ttf', name='Arial', style='normal', variant='normal', weight=700, stretch='normal', size='scalable')) = 6.698636363636363\n", + "DEBUG:matplotlib.font_manager:findfont: score(FontEntry(fname='/System/Library/Fonts/Supplemental/NotoSansNKo-Regular.ttf', name='Noto Sans NKo', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05\n", + "DEBUG:matplotlib.font_manager:findfont: score(FontEntry(fname='/System/Library/Fonts/Avenir Next.ttc', name='Avenir Next', style='normal', variant='normal', weight=700, stretch='normal', size='scalable')) = 10.335\n", + "DEBUG:matplotlib.font_manager:findfont: score(FontEntry(fname='/System/Library/Fonts/Supplemental/Georgia Italic.ttf', name='Georgia', style='italic', variant='normal', weight=400, stretch='normal', size='scalable')) = 11.05\n", + "DEBUG:matplotlib.font_manager:findfont: score(FontEntry(fname='/System/Library/Fonts/Supplemental/AppleMyungjo.ttf', name='AppleMyungjo', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05\n", + "DEBUG:matplotlib.font_manager:findfont: score(FontEntry(fname='/System/Library/Fonts/Supplemental/NotoSansMongolian-Regular.ttf', name='Noto Sans Mongolian', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05\n", + "DEBUG:matplotlib.font_manager:findfont: score(FontEntry(fname='/System/Library/Fonts/Supplemental/STIXNonUni.otf', name='STIXNonUnicode', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05\n", + "DEBUG:matplotlib.font_manager:findfont: score(FontEntry(fname='/System/Library/Fonts/Supplemental/NotoSansOlChiki-Regular.ttf', name='Noto Sans Ol Chiki', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05\n", + "DEBUG:matplotlib.font_manager:findfont: score(FontEntry(fname='/System/Library/Fonts/Supplemental/Gurmukhi Sangam MN.ttc', name='Gurmukhi Sangam MN', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05\n", + "DEBUG:matplotlib.font_manager:findfont: score(FontEntry(fname='/System/Library/Fonts/Supplemental/Mshtakan.ttc', name='Mshtakan', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05\n", + "DEBUG:matplotlib.font_manager:findfont: score(FontEntry(fname='/System/Library/Fonts/AquaKana.ttc', name='.Aqua Kana', style='normal', variant='normal', weight=300, stretch='normal', size='scalable')) = 10.145\n", + "DEBUG:matplotlib.font_manager:findfont: score(FontEntry(fname='/System/Library/Fonts/SFNSItalic.ttf', name='System Font', style='italic', variant='normal', weight=400, stretch='normal', size='scalable')) = 11.05\n", + "DEBUG:matplotlib.font_manager:findfont: score(FontEntry(fname='/System/Library/Fonts/Supplemental/NotoSansCypriot-Regular.ttf', name='Noto Sans Cypriot', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05\n", + "DEBUG:matplotlib.font_manager:findfont: score(FontEntry(fname='/System/Library/Fonts/Supplemental/Zapfino.ttf', name='Zapfino', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05\n", + "DEBUG:matplotlib.font_manager:findfont: score(FontEntry(fname='/System/Library/Fonts/Supplemental/NotoSansLycian-Regular.ttf', name='Noto Sans Lycian', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "DEBUG:matplotlib.font_manager:findfont: score(FontEntry(fname='/System/Library/Fonts/Supplemental/Khmer Sangam MN.ttf', name='Khmer Sangam MN', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05\n", + "DEBUG:matplotlib.font_manager:findfont: score(FontEntry(fname='/System/Library/Fonts/Supplemental/AmericanTypewriter.ttc', name='American Typewriter', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05\n", + "DEBUG:matplotlib.font_manager:findfont: score(FontEntry(fname='/System/Library/Fonts/ヒラギノ角ゴシック W3.ttc', name='Hiragino Sans', style='normal', variant='normal', weight=300, stretch='normal', size='scalable')) = 10.145\n", + "DEBUG:matplotlib.font_manager:findfont: score(FontEntry(fname='/System/Library/Fonts/Geneva.ttf', name='Geneva', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 4.595454545454545\n", + "DEBUG:matplotlib.font_manager:findfont: score(FontEntry(fname='/System/Library/Fonts/Supplemental/NotoSansChakma-Regular.ttf', name='Noto Sans Chakma', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05\n", + "DEBUG:matplotlib.font_manager:findfont: score(FontEntry(fname='/System/Library/Fonts/Supplemental/STIXNonUniBol.otf', name='STIXNonUnicode', style='normal', variant='normal', weight=700, stretch='normal', size='scalable')) = 10.335\n", + "DEBUG:matplotlib.font_manager:findfont: score(FontEntry(fname='/System/Library/Fonts/Supplemental/Bradley Hand Bold.ttf', name='Bradley Hand', style='normal', variant='normal', weight=700, stretch='normal', size='scalable')) = 10.335\n", + "DEBUG:matplotlib.font_manager:findfont: score(FontEntry(fname='/System/Library/Fonts/Supplemental/PTSerif.ttc', name='PT Serif', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05\n", + "DEBUG:matplotlib.font_manager:findfont: score(FontEntry(fname='/System/Library/Fonts/Supplemental/STIXIntDReg.otf', name='STIXIntegralsD', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05\n", + "DEBUG:matplotlib.font_manager:findfont: score(FontEntry(fname='/System/Library/Fonts/Supplemental/Myanmar Sangam MN.ttc', name='Myanmar Sangam MN', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05\n", + "DEBUG:matplotlib.font_manager:findfont: score(FontEntry(fname='/System/Library/Fonts/Supplemental/NotoSansPsalterPahlavi-Regular.ttf', name='Noto Sans Psalter Pahlavi', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05\n", + "DEBUG:matplotlib.font_manager:findfont: score(FontEntry(fname='/System/Library/Fonts/Supplemental/Baghdad.ttc', name='Baghdad', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05\n", + "DEBUG:matplotlib.font_manager:findfont: score(FontEntry(fname='/System/Library/Fonts/Supplemental/Gujarati Sangam MN.ttc', name='Gujarati Sangam MN', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05\n", + "DEBUG:matplotlib.font_manager:findfont: score(FontEntry(fname='/System/Library/Fonts/Supplemental/Khmer MN.ttc', name='Khmer MN', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05\n", + "DEBUG:matplotlib.font_manager:findfont: score(FontEntry(fname='/System/Library/Fonts/Kohinoor.ttc', name='Kohinoor Devanagari', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05\n", + "DEBUG:matplotlib.font_manager:findfont: score(FontEntry(fname='/System/Library/Fonts/Supplemental/Arial Narrow Italic.ttf', name='Arial Narrow', style='italic', variant='normal', weight=400, stretch='condensed', size='scalable')) = 11.25\n", + "DEBUG:matplotlib.font_manager:findfont: score(FontEntry(fname='/System/Library/Fonts/ヒラギノ角ゴシック W2.ttc', name='Hiragino Sans', style='normal', variant='normal', weight=250, stretch='normal', size='scalable')) = 10.1925\n", + "DEBUG:matplotlib.font_manager:findfont: score(FontEntry(fname='/System/Library/Fonts/Supplemental/NotoSansElbasan-Regular.ttf', name='Noto Sans Elbasan', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05\n", + "DEBUG:matplotlib.font_manager:findfont: score(FontEntry(fname='/System/Library/Fonts/Supplemental/Phosphate.ttc', name='Phosphate', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05\n", + "DEBUG:matplotlib.font_manager:findfont: score(FontEntry(fname='/System/Library/Fonts/Supplemental/DIN Alternate Bold.ttf', name='DIN Alternate', style='normal', variant='normal', weight=700, stretch='normal', size='scalable')) = 10.335\n", + "DEBUG:matplotlib.font_manager:findfont: score(FontEntry(fname='/System/Library/Fonts/Supplemental/NotoSansMultani-Regular.ttf', name='Noto Sans Multani', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05\n", + "DEBUG:matplotlib.font_manager:findfont: score(FontEntry(fname='/System/Library/Fonts/Supplemental/Courier New Bold.ttf', name='Courier New', style='normal', variant='normal', weight=700, stretch='normal', size='scalable')) = 10.335\n", + "DEBUG:matplotlib.font_manager:findfont: score(FontEntry(fname='/System/Library/Fonts/Supplemental/NotoSansInscriptionalPahlavi-Regular.ttf', name='Noto Sans Inscriptional Pahlavi', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05\n", + "DEBUG:matplotlib.font_manager:findfont: score(FontEntry(fname='/System/Library/Fonts/Supplemental/Chalkboard.ttc', name='Chalkboard', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05\n", + "DEBUG:matplotlib.font_manager:findfont: score(FontEntry(fname='/System/Library/Fonts/Supplemental/Arial.ttf', name='Arial', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 6.413636363636363\n", + "DEBUG:matplotlib.font_manager:findfont: score(FontEntry(fname='/System/Library/Fonts/Supplemental/Tamil Sangam MN.ttc', name='Tamil Sangam MN', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05\n", + "DEBUG:matplotlib.font_manager:findfont: score(FontEntry(fname='/System/Library/Fonts/Supplemental/Seravek.ttc', name='Seravek', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05\n", + "DEBUG:matplotlib.font_manager:findfont: score(FontEntry(fname='/System/Library/Fonts/Supplemental/NotoSansPauCinHau-Regular.ttf', name='Noto Sans Pau Cin Hau', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05\n", + "DEBUG:matplotlib.font_manager:findfont: score(FontEntry(fname='/System/Library/Fonts/Supplemental/BigCaslon.ttf', name='Big Caslon', style='normal', variant='normal', weight=500, stretch='normal', size='scalable')) = 10.145\n", + "DEBUG:matplotlib.font_manager:findfont: score(FontEntry(fname='/System/Library/Fonts/Supplemental/Webdings.ttf', name='Webdings', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05\n", + "DEBUG:matplotlib.font_manager:findfont: score(FontEntry(fname='/System/Library/Fonts/Supplemental/Savoye LET.ttc', name='Savoye LET', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05\n", + "DEBUG:matplotlib.font_manager:findfont: score(FontEntry(fname='/System/Library/Fonts/Supplemental/Arial Rounded Bold.ttf', name='Arial Rounded MT Bold', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05\n", + "DEBUG:matplotlib.font_manager:findfont: score(FontEntry(fname='/System/Library/Fonts/Supplemental/Shree714.ttc', name='Shree Devanagari 714', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05\n", + "DEBUG:matplotlib.font_manager:findfont: score(FontEntry(fname='/System/Library/Fonts/Supplemental/Waseem.ttc', name='Waseem', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05\n", + "DEBUG:matplotlib.font_manager:findfont: score(FontEntry(fname='/System/Library/Fonts/Supplemental/STIXIntSmReg.otf', name='STIXIntegralsSm', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05\n", + "DEBUG:matplotlib.font_manager:findfont: score(FontEntry(fname='/System/Library/Fonts/Supplemental/Georgia Bold.ttf', name='Georgia', style='normal', variant='normal', weight=700, stretch='normal', size='scalable')) = 10.335\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "DEBUG:matplotlib.font_manager:findfont: score(FontEntry(fname='/System/Library/Fonts/Apple Braille Pinpoint 6 Dot.ttf', name='Apple Braille', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05\n", + "DEBUG:matplotlib.font_manager:findfont: score(FontEntry(fname='/System/Library/Fonts/Supplemental/STIXSizThreeSymBol.otf', name='STIXSizeThreeSym', style='normal', variant='normal', weight=700, stretch='normal', size='scalable')) = 10.335\n", + "DEBUG:matplotlib.font_manager:findfont: score(FontEntry(fname='/System/Library/Fonts/Supplemental/InaiMathi-MN.ttc', name='InaiMathi', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05\n", + "DEBUG:matplotlib.font_manager:findfont: score(FontEntry(fname='/System/Library/Fonts/Supplemental/NotoSansTirhuta-Regular.ttf', name='Noto Sans Tirhuta', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05\n", + "DEBUG:matplotlib.font_manager:findfont: score(FontEntry(fname='/System/Library/Fonts/Supplemental/NotoSansThaana-Regular.ttf', name='Noto Sans Thaana', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05\n", + "DEBUG:matplotlib.font_manager:findfont: score(FontEntry(fname='/System/Library/Fonts/Supplemental/Impact.ttf', name='Impact', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05\n", + "DEBUG:matplotlib.font_manager:findfont: score(FontEntry(fname='/System/Library/Fonts/Supplemental/KufiStandardGK.ttc', name='KufiStandardGK', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05\n", + "DEBUG:matplotlib.font_manager:findfont: score(FontEntry(fname='/Library/Fonts/Arial Unicode.ttf', name='Arial Unicode MS', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05\n", + "DEBUG:matplotlib.font_manager:findfont: score(FontEntry(fname='/System/Library/Fonts/Supplemental/Diwan Kufi.ttc', name='Diwan Kufi', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05\n", + "DEBUG:matplotlib.font_manager:findfont: score(FontEntry(fname='/System/Library/Fonts/Supplemental/Malayalam Sangam MN.ttc', name='Malayalam Sangam MN', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05\n", + "DEBUG:matplotlib.font_manager:findfont: score(FontEntry(fname='/System/Library/Fonts/Apple Braille Pinpoint 8 Dot.ttf', name='Apple Braille', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05\n", + "DEBUG:matplotlib.font_manager:findfont: score(FontEntry(fname='/System/Library/Fonts/Supplemental/GujaratiMT.ttc', name='Gujarati MT', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05\n", + "DEBUG:matplotlib.font_manager:findfont: score(FontEntry(fname='/System/Library/Fonts/KohinoorGujarati.ttc', name='Kohinoor Gujarati', style='normal', variant='normal', weight=700, stretch='normal', size='scalable')) = 10.335\n", + "DEBUG:matplotlib.font_manager:findfont: score(FontEntry(fname='/System/Library/Fonts/Supplemental/NotoSerifYezidi-Regular.otf', name='Noto Serif Yezidi', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05\n", + "DEBUG:matplotlib.font_manager:findfont: score(FontEntry(fname='/System/Library/Fonts/Times.ttc', name='Times', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05\n", + "DEBUG:matplotlib.font_manager:findfont: score(FontEntry(fname='/System/Library/Fonts/Supplemental/Sinhala Sangam MN.ttc', name='Sinhala Sangam MN', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05\n", + "DEBUG:matplotlib.font_manager:findfont: score(FontEntry(fname='/System/Library/Fonts/Supplemental/AlBayan.ttc', name='Al Bayan', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05\n", + "DEBUG:matplotlib.font_manager:findfont: score(FontEntry(fname='/System/Library/Fonts/PingFang.ttc', name='PingFang HK', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05\n", + "DEBUG:matplotlib.font_manager:findfont: score(FontEntry(fname='/System/Library/Fonts/Supplemental/STIXVar.otf', name='STIXVariants', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05\n", + "DEBUG:matplotlib.font_manager:findfont: score(FontEntry(fname='/System/Library/Fonts/ヒラギノ角ゴシック W5.ttc', name='Hiragino Sans', style='normal', variant='normal', weight=500, stretch='normal', size='scalable')) = 10.145\n", + "DEBUG:matplotlib.font_manager:findfont: score(FontEntry(fname='/System/Library/Fonts/Supplemental/STIXGeneralBol.otf', name='STIXGeneral', style='normal', variant='normal', weight=700, stretch='normal', size='scalable')) = 10.335\n", + "DEBUG:matplotlib.font_manager:findfont: score(FontEntry(fname='/System/Library/Fonts/MarkerFelt.ttc', name='Marker Felt', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05\n", + "DEBUG:matplotlib.font_manager:findfont: score(FontEntry(fname='/System/Library/Fonts/Supplemental/NotoSansCarian-Regular.ttf', name='Noto Sans Carian', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05\n", + "DEBUG:matplotlib.font_manager:findfont: score(FontEntry(fname='/System/Library/Fonts/Supplemental/Sinhala MN.ttc', name='Sinhala MN', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05\n", + "DEBUG:matplotlib.font_manager:findfont: score(FontEntry(fname='/System/Library/Fonts/HelveticaNeue.ttc', name='Helvetica Neue', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05\n", + "DEBUG:matplotlib.font_manager:findfont: score(FontEntry(fname='/System/Library/Fonts/KohinoorBangla.ttc', name='Kohinoor Bangla', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05\n", + "DEBUG:matplotlib.font_manager:findfont: score(FontEntry(fname='/System/Library/Fonts/SFArabic.ttf', name='.SF Arabic', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05\n", + "DEBUG:matplotlib.font_manager:findfont: score(FontEntry(fname='/System/Library/Fonts/Supplemental/NotoSansVai-Regular.ttf', name='Noto Sans Vai', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05\n", + "DEBUG:matplotlib.font_manager:findfont: score(FontEntry(fname='/System/Library/Fonts/Supplemental/DIN Condensed Bold.ttf', name='DIN Condensed', style='normal', variant='normal', weight=700, stretch='condensed', size='scalable')) = 10.535\n", + "DEBUG:matplotlib.font_manager:findfont: score(FontEntry(fname='/System/Library/Fonts/Supplemental/Raanana.ttc', name='Raanana', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05\n", + "DEBUG:matplotlib.font_manager:findfont: score(FontEntry(fname='/System/Library/Fonts/Optima.ttc', name='Optima', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05\n", + "DEBUG:matplotlib.font_manager:findfont: score(FontEntry(fname='/System/Library/Fonts/Supplemental/STIXIntUpSmReg.otf', name='STIXIntegralsUpSm', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05\n", + "DEBUG:matplotlib.font_manager:findfont: score(FontEntry(fname='/System/Library/Fonts/Supplemental/Georgia Bold Italic.ttf', name='Georgia', style='italic', variant='normal', weight=700, stretch='normal', size='scalable')) = 11.335\n", + "DEBUG:matplotlib.font_manager:findfont: score(FontEntry(fname='/System/Library/Fonts/Supplemental/NotoSansGunjalaGondi-Regular.otf', name='Noto Sans Gunjala Gondi', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05\n", + "DEBUG:matplotlib.font_manager:findfont: score(FontEntry(fname='/System/Library/Fonts/Supplemental/Arial Narrow Bold.ttf', name='Arial Narrow', style='normal', variant='normal', weight=700, stretch='condensed', size='scalable')) = 10.535\n", + "DEBUG:matplotlib.font_manager:findfont: score(FontEntry(fname='/System/Library/Fonts/ZapfDingbats.ttf', name='Zapf Dingbats', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05\n", + "DEBUG:matplotlib.font_manager:findfont: score(FontEntry(fname='/System/Library/Fonts/Supplemental/Verdana Italic.ttf', name='Verdana', style='italic', variant='normal', weight=400, stretch='normal', size='scalable')) = 4.6863636363636365\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "DEBUG:matplotlib.font_manager:findfont: score(FontEntry(fname='/System/Library/Fonts/Supplemental/SnellRoundhand.ttc', name='Snell Roundhand', style='normal', variant='normal', weight=500, stretch='normal', size='scalable')) = 10.145\n", + "DEBUG:matplotlib.font_manager:findfont: score(FontEntry(fname='/System/Library/Fonts/Apple Symbols.ttf', name='Apple Symbols', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05\n", + "DEBUG:matplotlib.font_manager:findfont: score(FontEntry(fname='/System/Library/Fonts/Supplemental/NotoSansTagalog-Regular.ttf', name='Noto Sans Tagalog', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05\n", + "DEBUG:matplotlib.font_manager:findfont: score(FontEntry(fname='/System/Library/Fonts/Supplemental/NotoSansPalmyrene-Regular.ttf', name='Noto Sans Palmyrene', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05\n", + "DEBUG:matplotlib.font_manager:findfont: score(FontEntry(fname='/System/Library/Fonts/Supplemental/Telugu MN.ttc', name='Telugu MN', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05\n", + "DEBUG:matplotlib.font_manager:findfont: score(FontEntry(fname='/System/Library/Fonts/Supplemental/NotoSansMasaramGondi-Regular.otf', name='Noto Sans Masaram Gondi', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05\n", + "DEBUG:matplotlib.font_manager:findfont: score(FontEntry(fname='/System/Library/Fonts/Supplemental/STIXIntDBol.otf', name='STIXIntegralsD', style='normal', variant='normal', weight=700, stretch='normal', size='scalable')) = 10.335\n", + "DEBUG:matplotlib.font_manager:findfont: score(FontEntry(fname='/System/Library/Fonts/ヒラギノ角ゴシック W0.ttc', name='Hiragino Sans', style='normal', variant='normal', weight=100, stretch='normal', size='scalable')) = 10.335\n", + "DEBUG:matplotlib.font_manager:findfont: score(FontEntry(fname='/System/Library/Fonts/Supplemental/Cochin.ttc', name='Cochin', style='normal', variant='normal', weight=500, stretch='normal', size='scalable')) = 10.145\n", + "DEBUG:matplotlib.font_manager:findfont: score(FontEntry(fname='/System/Library/Fonts/Supplemental/NotoSansPahawhHmong-Regular.ttf', name='Noto Sans Pahawh Hmong', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05\n", + "DEBUG:matplotlib.font_manager:findfont: score(FontEntry(fname='/System/Library/Fonts/Supplemental/NotoSansBamum-Regular.ttf', name='Noto Sans Bamum', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05\n", + "DEBUG:matplotlib.font_manager:findfont: score(FontEntry(fname='/System/Library/Fonts/Supplemental/Courier New Italic.ttf', name='Courier New', style='italic', variant='normal', weight=400, stretch='normal', size='scalable')) = 11.05\n", + "DEBUG:matplotlib.font_manager:findfont: score(FontEntry(fname='/System/Library/Fonts/Supplemental/Times New Roman Bold.ttf', name='Times New Roman', style='normal', variant='normal', weight=700, stretch='normal', size='scalable')) = 10.335\n", + "DEBUG:matplotlib.font_manager:findfont: score(FontEntry(fname='/System/Library/Fonts/Supplemental/NotoSansBatak-Regular.ttf', name='Noto Sans Batak', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05\n", + "DEBUG:matplotlib.font_manager:findfont: score(FontEntry(fname='/System/Library/Fonts/Supplemental/NotoSansMahajani-Regular.ttf', name='Noto Sans Mahajani', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05\n", + "DEBUG:matplotlib.font_manager:findfont: score(FontEntry(fname='/System/Library/Fonts/Supplemental/STIXSizTwoSymReg.otf', name='STIXSizeTwoSym', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05\n", + "DEBUG:matplotlib.font_manager:findfont: score(FontEntry(fname='/System/Library/Fonts/Supplemental/Wingdings 3.ttf', name='Wingdings 3', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05\n", + "DEBUG:matplotlib.font_manager:findfont: score(FontEntry(fname='/System/Library/Fonts/Supplemental/ChalkboardSE.ttc', name='Chalkboard SE', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05\n", + "DEBUG:matplotlib.font_manager:findfont: score(FontEntry(fname='/System/Library/Fonts/Supplemental/NotoSansSyriac-Regular.ttf', name='Noto Sans Syriac', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05\n", + "DEBUG:matplotlib.font_manager:findfont: score(FontEntry(fname='/System/Library/Fonts/ヒラギノ明朝 ProN.ttc', name='Hiragino Mincho ProN', style='normal', variant='normal', weight=300, stretch='normal', size='scalable')) = 10.145\n", + "DEBUG:matplotlib.font_manager:findfont: score(FontEntry(fname='/System/Library/Fonts/Supplemental/Lao Sangam MN.ttf', name='Lao Sangam MN', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05\n", + "DEBUG:matplotlib.font_manager:findfont: score(FontEntry(fname='/System/Library/Fonts/Supplemental/NotoSansMeeteiMayek-Regular.ttf', name='Noto Sans Meetei Mayek', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05\n", + "DEBUG:matplotlib.font_manager:findfont: score(FontEntry(fname='/System/Library/Fonts/SFNSRounded.ttf', name='.SF NS Rounded', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05\n", + "DEBUG:matplotlib.font_manager:findfont: score(FontEntry(fname='/System/Library/Fonts/Supplemental/ITFDevanagari.ttc', name='ITF Devanagari', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05\n", + "DEBUG:matplotlib.font_manager:findfont: score(FontEntry(fname='/System/Library/Fonts/Supplemental/NotoSansImperialAramaic-Regular.ttf', name='Noto Sans Imperial Aramaic', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05\n", + "DEBUG:matplotlib.font_manager:findfont: score(FontEntry(fname='/System/Library/Fonts/Supplemental/PTMono.ttc', name='PT Mono', style='normal', variant='normal', weight=700, stretch='normal', size='scalable')) = 10.335\n", + "DEBUG:matplotlib.font_manager:findfont: score(FontEntry(fname='/System/Library/Fonts/Supplemental/STIXIntUpDBol.otf', name='STIXIntegralsUpD', style='normal', variant='normal', weight=700, stretch='normal', size='scalable')) = 10.335\n", + "DEBUG:matplotlib.font_manager:findfont: score(FontEntry(fname='/System/Library/Fonts/Supplemental/Arial Unicode.ttf', name='Arial Unicode MS', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05\n", + "DEBUG:matplotlib.font_manager:findfont: score(FontEntry(fname='/System/Library/Fonts/Keyboard.ttf', name='.Keyboard', style='normal', variant='normal', weight=100, stretch='normal', size='scalable')) = 10.335\n", + "DEBUG:matplotlib.font_manager:findfont: score(FontEntry(fname='/System/Library/Fonts/Supplemental/Al Tarikh.ttc', name='Al Tarikh', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05\n", + "DEBUG:matplotlib.font_manager:findfont: score(FontEntry(fname='/System/Library/Fonts/Supplemental/NotoSansTaiViet-Regular.ttf', name='Noto Sans Tai Viet', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05\n", + "DEBUG:matplotlib.font_manager:findfont: score(FontEntry(fname='/System/Library/Fonts/NotoSansKannada.ttc', name='Noto Sans Kannada', style='normal', variant='normal', weight=900, stretch='normal', size='scalable')) = 10.525\n", + "DEBUG:matplotlib.font_manager:findfont: score(FontEntry(fname='/System/Library/Fonts/Supplemental/Marion.ttc', name='Marion', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05\n", + "DEBUG:matplotlib.font_manager:findfont: score(FontEntry(fname='/System/Library/Fonts/Supplemental/NotoSansOldNorthArabian-Regular.ttf', name='Noto Sans Old North Arabian', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05\n", + "DEBUG:matplotlib.font_manager:findfont: score(FontEntry(fname='/System/Library/Fonts/Supplemental/NotoSansManichaean-Regular.ttf', name='Noto Sans Manichaean', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "DEBUG:matplotlib.font_manager:findfont: score(FontEntry(fname='/System/Library/Fonts/Supplemental/NotoSansBuhid-Regular.ttf', name='Noto Sans Buhid', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05\n", + "DEBUG:matplotlib.font_manager:findfont: score(FontEntry(fname='/System/Library/Fonts/Supplemental/NotoSansYi-Regular.ttf', name='Noto Sans Yi', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05\n", + "DEBUG:matplotlib.font_manager:findfont: score(FontEntry(fname='/System/Library/Fonts/Supplemental/NewPeninimMT.ttc', name='New Peninim MT', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05\n", + "DEBUG:matplotlib.font_manager:findfont: score(FontEntry(fname='/System/Library/Fonts/Supplemental/NotoSansHanunoo-Regular.ttf', name='Noto Sans Hanunoo', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05\n", + "DEBUG:matplotlib.font_manager:findfont: score(FontEntry(fname='/System/Library/Fonts/Supplemental/NotoSansWarangCiti-Regular.ttf', name='Noto Sans Warang Citi', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05\n", + "DEBUG:matplotlib.font_manager:findfont: score(FontEntry(fname='/System/Library/Fonts/Supplemental/NotoSansSoraSompeng-Regular.ttf', name='Noto Sans Sora Sompeng', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05\n", + "DEBUG:matplotlib.font_manager:findfont: score(FontEntry(fname='/System/Library/Fonts/SFNSMono.ttf', name='.SF NS Mono', style='normal', variant='normal', weight=295, stretch='normal', size='scalable')) = 10.14975\n", + "DEBUG:matplotlib.font_manager:findfont: score(FontEntry(fname='/System/Library/Fonts/Supplemental/NotoSansKharoshthi-Regular.ttf', name='Noto Sans Kharoshthi', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05\n", + "DEBUG:matplotlib.font_manager:findfont: score(FontEntry(fname='/System/Library/Fonts/Supplemental/Galvji.ttc', name='Galvji', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05\n", + "DEBUG:matplotlib.font_manager:findfont: score(FontEntry(fname='/System/Library/Fonts/Supplemental/NotoSansOsage-Regular.ttf', name='Noto Sans Osage', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05\n", + "DEBUG:matplotlib.font_manager:findfont: score(FontEntry(fname='/System/Library/Fonts/Supplemental/STIXGeneralBolIta.otf', name='STIXGeneral', style='italic', variant='normal', weight=700, stretch='normal', size='scalable')) = 11.335\n", + "DEBUG:matplotlib.font_manager:findfont: score(FontEntry(fname='/System/Library/Fonts/Supplemental/Iowan Old Style.ttc', name='Iowan Old Style', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05\n", + "DEBUG:matplotlib.font_manager:findfont: score(FontEntry(fname='/System/Library/Fonts/Supplemental/Hoefler Text.ttc', name='Hoefler Text', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05\n", + "DEBUG:matplotlib.font_manager:findfont: score(FontEntry(fname='/System/Library/Fonts/Supplemental/DecoTypeNaskh.ttc', name='DecoType Naskh', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05\n", + "DEBUG:matplotlib.font_manager:findfont: score(FontEntry(fname='/System/Library/Fonts/SFCompactRounded.ttf', name='.SF Compact Rounded', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05\n", + "DEBUG:matplotlib.font_manager:findfont: score(FontEntry(fname='/System/Library/Fonts/Supplemental/STIXSizFiveSymReg.otf', name='STIXSizeFiveSym', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05\n", + "DEBUG:matplotlib.font_manager:findfont: score(FontEntry(fname='/System/Library/Fonts/Supplemental/NotoSansPhoenician-Regular.ttf', name='Noto Sans Phoenician', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05\n", + "DEBUG:matplotlib.font_manager:findfont: score(FontEntry(fname='/System/Library/Fonts/Supplemental/NotoSansLimbu-Regular.ttf', name='Noto Sans Limbu', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05\n", + "DEBUG:matplotlib.font_manager:findfont: score(FontEntry(fname='/System/Library/Fonts/Supplemental/STIXSizFourSymBol.otf', name='STIXSizeFourSym', style='normal', variant='normal', weight=700, stretch='normal', size='scalable')) = 10.335\n", + "DEBUG:matplotlib.font_manager:findfont: score(FontEntry(fname='/System/Library/Fonts/Supplemental/Devanagari Sangam MN.ttc', name='Devanagari Sangam MN', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05\n", + "DEBUG:matplotlib.font_manager:findfont: score(FontEntry(fname='/System/Library/Fonts/Supplemental/NotoSansMro-Regular.ttf', name='Noto Sans Mro', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05\n", + "DEBUG:matplotlib.font_manager:findfont: score(FontEntry(fname='/System/Library/Fonts/Supplemental/NotoSansMiao-Regular.ttf', name='Noto Sans Miao', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05\n", + "DEBUG:matplotlib.font_manager:findfont: score(FontEntry(fname='/System/Library/Fonts/Supplemental/Al Nile.ttc', name='Al Nile', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05\n", + "DEBUG:matplotlib.font_manager:findfont: score(FontEntry(fname='/System/Library/Fonts/Supplemental/NotoSansHanifiRohingya-Regular.ttf', name='Noto Sans Hanifi Rohingya', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05\n", + "DEBUG:matplotlib.font_manager:findfont: score(FontEntry(fname='/System/Library/Fonts/NotoNastaliq.ttc', name='Noto Nastaliq Urdu', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05\n", + "DEBUG:matplotlib.font_manager:findfont: score(FontEntry(fname='/System/Library/Fonts/AppleSDGothicNeo.ttc', name='Apple SD Gothic Neo', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05\n", + "DEBUG:matplotlib.font_manager:findfont: score(FontEntry(fname='/System/Library/Fonts/Supplemental/Microsoft Sans Serif.ttf', name='Microsoft Sans Serif', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05\n", + "DEBUG:matplotlib.font_manager:findfont: score(FontEntry(fname='/System/Library/Fonts/Helvetica.ttc', name='Helvetica', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 7.322727272727273\n", + "DEBUG:matplotlib.font_manager:findfont: score(FontEntry(fname='/System/Library/Fonts/Supplemental/Mishafi.ttf', name='Mishafi', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05\n", + "DEBUG:matplotlib.font_manager:findfont: score(FontEntry(fname='/System/Library/Fonts/Symbol.ttf', name='Symbol', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05\n", + "DEBUG:matplotlib.font_manager:findfont: score(FontEntry(fname='/System/Library/Fonts/Supplemental/Wingdings.ttf', name='Wingdings', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05\n", + "DEBUG:matplotlib.font_manager:findfont: score(FontEntry(fname='/System/Library/Fonts/Supplemental/Mishafi Gold.ttf', name='Mishafi Gold', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05\n", + "DEBUG:matplotlib.font_manager:findfont: score(FontEntry(fname='/System/Library/Fonts/Supplemental/Courier New Bold Italic.ttf', name='Courier New', style='italic', variant='normal', weight=700, stretch='normal', size='scalable')) = 11.335\n", + "DEBUG:matplotlib.font_manager:findfont: score(FontEntry(fname='/System/Library/Fonts/Supplemental/NotoSansKhojki-Regular.ttf', name='Noto Sans Khojki', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05\n", + "DEBUG:matplotlib.font_manager:findfont: score(FontEntry(fname='/System/Library/Fonts/Supplemental/Damascus.ttc', name='Damascus', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05\n", + "DEBUG:matplotlib.font_manager:findfont: score(FontEntry(fname='/System/Library/Fonts/Supplemental/NotoSansSundanese-Regular.ttf', name='Noto Sans Sundanese', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "DEBUG:matplotlib.font_manager:findfont: score(FontEntry(fname='/System/Library/Fonts/Supplemental/NotoSansNabataean-Regular.ttf', name='Noto Sans Nabataean', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05\n", + "DEBUG:matplotlib.font_manager:findfont: score(FontEntry(fname='/System/Library/Fonts/Avenir.ttc', name='Avenir', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05\n", + "DEBUG:matplotlib.font_manager:findfont: score(FontEntry(fname='/System/Library/Fonts/Menlo.ttc', name='Menlo', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05\n", + "DEBUG:matplotlib.font_manager:findfont: score(FontEntry(fname='/System/Library/Fonts/Supplemental/NotoSansSiddham-Regular.ttf', name='Noto Sans Siddham', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05\n", + "DEBUG:matplotlib.font_manager:findfont: Matching sans\\-serif:style=normal:variant=normal:weight=normal:stretch=normal:size=10.0 to DejaVu Sans ('/Users/tapritc2/miniforge3/envs/tessgi/lib/python3.10/site-packages/matplotlib/mpl-data/fonts/ttf/DejaVuSans.ttf') with score of 0.050000.\n" + ] + }, + { + "data": { + "text/plain": [ + "" + ] + }, + "execution_count": 15, + "metadata": {}, + "output_type": "execute_result" + }, + { + "data": { + "image/png": "iVBORw0KGgoAAAANSUhEUgAAAnUAAAHWCAYAAAARl3+JAAAAOXRFWHRTb2Z0d2FyZQBNYXRwbG90bGliIHZlcnNpb24zLjYuMCwgaHR0cHM6Ly9tYXRwbG90bGliLm9yZy89olMNAAAACXBIWXMAAA9hAAAPYQGoP6dpAAAmG0lEQVR4nO3de5BW9X348c8KuEBY1gDuhYKIUTBTiGNBuYwKmkAkLV6wjkYHIVGr8RIJiiOhreD0J8ZbTMfE1KklQDRxJoLVkTHSykJSwCKDAbVeYhBJdd2quAurLorn94fhSTYsl919nr189/WaeaY+5znPOZ89czTvnudWlGVZFgAAdGqHtfcAAAC0nqgDAEiAqAMASICoAwBIgKgDAEiAqAMASICoAwBIgKgDAEhA9/Ye4M99+umn8eabb0ZJSUkUFRW19zgAAG0qy7LYuXNnDBw4MA477NCvv3W4qHvzzTdj8ODB7T0GAEC72r59ewwaNOiQ1+9wUVdSUhIRn/0hffv2bedpAADaVl1dXQwePDjXRIeqw0Xd3pdc+/btK+oAgC6ruW9D80EJAIAEiDoAgASIOgCABHS499QBAJ3bnj174uOPP27vMTqsHj16RLdu3fK+XVEHAORFlmVRXV0d77//fnuP0uEdccQRUVFRkdfv5BV1AEBe7A26srKy6N27tx8RaEKWZfHBBx9ETU1NRERUVlbmbduiDgBotT179uSCrn///u09TofWq1eviIioqamJsrKyvL0U64MSAECr7X0PXe/evdt5ks5h73HK53sPRR0AkDdecj00hThOog4A4M9MnDgxZs2a1d5jNIuoAwBIgA9KAAAFNXfZljbd38JpI9t0fx2FK3UAQJdWX18fl1xySfTp0ycqKyvjrrvuyj12yy23xMiR+0biqFGj4h//8R/bcsyDEnUAQJc2Z86cWLVqVSxfvjyeeuqpqKqqio0bN0ZExDe/+c148cUXY8OGDbn1N2/eHJs2bYqZM2e208RNE3UAQJe1a9eueOCBB+LOO++MSZMmxciRI2Px4sWxZ8+eiIgYNGhQfPWrX41FixblnrNo0aKYMGFCHHPMMe01dpNEHQDQZb322muxe/fuGDduXG5Zv379Yvjw4bn7l19+efzsZz+Ljz76KD7++ON48MEH45vf/GZ7jHtAPigBAHRZWZYddJ2pU6dGcXFxLF++PIqLi6OhoSHOO++8NpiueUQdpOLx61r3/Kk/yM8cAJ3IscceGz169Ij169fHUUcdFRERO3bsiFdeeSUmTJgQERHdu3ePGTNmxKJFi6K4uDguvPDCDvnLGaIOAOiy+vTpE5deemnMmTMn+vfvH+Xl5TFv3rw47LDG71C77LLL4otf/GJERPzXf/1Xe4x6UKIOAOjS7rjjjti1a1ecddZZUVJSEtdff33U1tY2Wue4446L8ePHx7vvvhtjxoxpp0kPTNQBAF1anz59YunSpbF06dLcsjlz5jRaJ8uyePvtt+OKK65o6/EOmagDAAqqs//CQ01NTSxdujT+93//N77xjW+09zj7JeoAAA6gvLw8BgwYEPfff398/vOfb+9x9kvUAQAcwKF87UlH4MuHAQASIOoAABIg6gAAEiDqAAASIOoAABIg6gAAEiDqAAD+zMSJE2PWrFntPUaziDoAgAT48mEACmbusi1532Zn/8mpLunx69p2f1N/0Lb76yBcqQMAurT6+vq45JJLok+fPlFZWRl33XVX7rGXXnopevfuHQ899FBu2bJly6Jnz56xZUv+/5+W1hB1AECXNmfOnFi1alUsX748nnrqqaiqqoqNGzdGRMTxxx8fd955Z1x11VWxbdu2ePPNN+Pyyy+P2267LUaO7FhXjb38CgB0Wbt27YoHHngglixZEpMmTYqIiMWLF8egQYNy61x11VWxYsWKmD59ehx++OExatSouO66Nn5J+RCIOgCgy3rttddi9+7dMW7cuNyyfv36xfDhwxut92//9m8xbNiwOOyww+L555+PoqKith71oLz8CgB0WVmWHdJ6v/nNb6K+vj7q6+ujurq6wFO1jKgDALqsY489Nnr06BHr16/PLduxY0e88sorufvvvfdezJw5M+bNmxff+MY34uKLL44PP/ywPcY9IFEHAHRZffr0iUsvvTTmzJkT//mf/xnPP/98zJw5Mw477I+JdOWVV8bgwYPj7//+7+Puu++OLMvihhtuaMepm+Y9dQBAl3bHHXfErl274qyzzoqSkpK4/vrro7a2NiIilixZEitWrIhNmzZF9+7do3v37vHggw/G+PHj46//+q/ja1/7WjtP/0eiDgAorA7+ZcB9+vSJpUuXxtKlS3PL5syZk/vnSy65pNH6o0aNioaGhjab71B5+RUAIAHNirqFCxfGSSedFCUlJVFWVhbnnHNOvPzyy43WmTlzZhQVFTW6jR07Nq9DAwDQWLOibvXq1XH11VfH+vXrY+XKlfHJJ5/E5MmTo76+vtF6Z555Zrz11lu524oVK/I6NAAAjTXrPXVPPvlko/uLFi2KsrKy2LhxY5x22mm55cXFxVFRUZGfCQEAOKhWvadu7ydD+vXr12h5VVVVlJWVxbBhw+Lyyy+Pmpqa/W6joaEh6urqGt0AAGieFkddlmUxe/bsOOWUU2LEiBG55VOmTIkHH3wwnn766bjrrrtiw4YNccYZZ+z3UyILFy6M0tLS3G3w4MEtHQkAoMtq8VeaXHPNNbF58+b49a9/3Wj5BRdckPvnESNGxOjRo2PIkCHxxBNPxLRp0/bZzty5c2P27Nm5+3V1dcIOAKCZWhR11157bTz22GOxZs2aGDRo0AHXraysjCFDhsSrr77a5OPFxcVRXFzckjEAAPiDZkVdlmVx7bXXxvLly6OqqiqGDh160Oe8++67sX379qisrGzxkAAAHFiz3lN39dVXx09/+tN46KGHoqSkJKqrq6O6ujr3o7a7du2KG264IdatWxevv/56VFVVxdSpU2PAgAFx7rnnFuQPAADIt4kTJ8asWbMiIuLoo4+Oe+65p13nORTNirr77rsvamtrY+LEiVFZWZm7PfzwwxER0a1bt9iyZUucffbZMWzYsJgxY0YMGzYs1q1bFyUlJQX5AwAACmnDhg3xd3/3d4e0bnsGYLNffj2QXr16xS9/+ctWDQQApGXBugVtur+bx92c1+0deeSRed1eofjtVwCgS6uvr49LLrkk+vTpE5WVlXHXXXc1evzPr77Nnz8/jjrqqCguLo6BAwfGt7/97Yj47CXbbdu2xXe+853cT6W2JVEHAHRpc+bMiVWrVsXy5cvjqaeeiqqqqti4cWOT6/7iF7+I73//+/Ev//Iv8eqrr8ajjz4aI0eOjIiIZcuWxaBBg+KWW27J/VRqW2rx99QBAHR2u3btigceeCCWLFkSkyZNioiIxYsX7/cr2954442oqKiIr3zlK9GjR4846qij4uSTT46Iz35hq1u3blFSUtIuP5fqSh0A0GW99tprsXv37hg3blxuWb9+/WL48OFNrn/++efHhx9+GMccc0xcfvnlsXz58vjkk0/aatwDEnUAQJd1sA+B/rnBgwfHyy+/HD/84Q+jV69ecdVVV8Vpp50WH3/8cYEmPHSiDgDoso499tjo0aNHrF+/Prdsx44d8corr+z3Ob169Yqzzjor/vmf/zmqqqpi3bp1sWXLloiIOPzww2PPnj0Fn7sp3lMHAHRZffr0iUsvvTTmzJkT/fv3j/Ly8pg3b14cdljT171+8pOfxJ49e2LMmDHRu3fvWLp0afTq1SuGDBkSEZ99UnbNmjVx4YUXRnFxcQwYMKDN/hZRBwB0aXfccUfs2rUrzjrrrCgpKYnrr78+amtrm1z3iCOOiNtuuy1mz54de/bsiZEjR8bjjz8e/fv3j4iIW265Ja644or4whe+EA0NDc1+ebc1irK23NshqKuri9LS0qitrY2+ffu29zjQeTx+XeueP/UH+ZkD/sTcZVvyvs2F00bmfZttobVfwJvvL9TNt48++ii2bt0aQ4cOjZ49e7b3OB3egY5XS1vIe+oAABIg6gAAEiDqAAASIOoAABIg6gAAEiDqAIC86WBfqtFhFeI4iToAoNV69OgREREffPBBO0/SOew9TnuPWz748mEAoNW6desWRxxxRNTU1ERERO/evaOoqKidp+p4siyLDz74IGpqauKII46Ibt265W3bog4AyIuKioqIiFzYsX9HHHFE7njli6gDAPKiqKgoKisro6ysLD7++OP2HqfD6tGjR16v0O0l6gCAvOrWrVtBooUD80EJAIAEiDoAgASIOgCABHhPHQCdytxlW/K6vYXTRuZ1e9BeXKkDAEiAqAMASICoAwBIgKgDAEiAqAMASICoAwBIgKgDAEiAqAMASICoAwBIgKgDAEiAqAMASICoAwBIgKgDAEiAqAMASICoAwBIgKgDAEiAqAMASICoAwBIgKgDAEiAqAMASICoAwBIgKgDAEiAqAMASICoAwBIgKgDAEiAqAMASICoAwBIgKgDAEiAqAMASICoAwBIgKgDAEiAqAMASICoAwBIgKgDAEiAqAMASICoAwBIgKgDAEiAqAMASICoAwBIgKgDAEhAs6Ju4cKFcdJJJ0VJSUmUlZXFOeecEy+//HKjdbIsi/nz58fAgQOjV69eMXHixHjhhRfyOjQAAI01K+pWr14dV199daxfvz5WrlwZn3zySUyePDnq6+tz69x+++1x9913x7333hsbNmyIioqKmDRpUuzcuTPvwwMA8JnuzVn5ySefbHR/0aJFUVZWFhs3bozTTjstsiyLe+65J+bNmxfTpk2LiIjFixdHeXl5PPTQQ3HFFVfkb3IAAHJa9Z662traiIjo169fRERs3bo1qqurY/Lkybl1iouLY8KECbF27drW7AoAgANo1pW6P5VlWcyePTtOOeWUGDFiREREVFdXR0REeXl5o3XLy8tj27ZtTW6noaEhGhoacvfr6upaOhIAQJfV4it111xzTWzevDl+9rOf7fNYUVFRo/tZlu2zbK+FCxdGaWlp7jZ48OCWjgQA0GW1KOquvfbaeOyxx2LVqlUxaNCg3PKKioqI+OMVu71qamr2uXq319y5c6O2tjZ32759e0tGAgDo0poVdVmWxTXXXBPLli2Lp59+OoYOHdro8aFDh0ZFRUWsXLkyt2z37t2xevXqGD9+fJPbLC4ujr59+za6AQDQPM16T93VV18dDz30UPz7v/97lJSU5K7IlZaWRq9evaKoqChmzZoVt956axx33HFx3HHHxa233hq9e/eOiy66qCB/AAAAzYy6++67LyIiJk6c2Gj5okWLYubMmRERceONN8aHH34YV111VezYsSPGjBkTTz31VJSUlORlYAAA9tWsqMuy7KDrFBUVxfz582P+/PktnQkAgGby268AAAkQdQAACRB1AAAJEHUAAAkQdQAACRB1AAAJEHUAAAkQdQAACRB1AAAJaNYvSkBnNXfZlrxub+G0kXndXofw+HWte/7UH+RnDgBaxJU6AIAEiDoAgASIOgCABIg6AIAEiDoAgASIOgCABIg6AIAEiDoAgASIOgCABIg6AIAEiDoAgASIOgCABIg6AIAEiDoAgAR0b+8BgIi5y7a0ehvn/P69RvfHDO3X6m0C0Hm4UgcAkABRBwCQAFEHAJAAUQcAkABRBwCQAFEHAJAAUQcAkABRBwCQAFEHAJAAUQcAkABRBwCQAFEHAJAAUQcAkABRBwCQAFEHAJAAUQcAkABRBwCQAFEHAJAAUQcAkABRBwCQAFEHAJAAUQcAkABRBwCQAFEHAJAAUQcAkABRBwCQAFEHAJAAUQcAkABRBwCQgO7tPQB0RnOXbWnvEYCO5vHrDvx4/UsHfnzI+PzNQpfkSh0AQAJEHQBAAkQdAEACRB0AQAJEHQBAAkQdAEACRB0AQAJEHQBAAkQdAEACmh11a9asialTp8bAgQOjqKgoHn300UaPz5w5M4qKihrdxo4dm695AQBoQrOjrr6+Pk444YS4995797vOmWeeGW+99VbutmLFilYNCQDAgTX7t1+nTJkSU6ZMOeA6xcXFUVFR0eKhAABonoK8p66qqirKyspi2LBhcfnll0dNTU0hdgMAwB80+0rdwUyZMiXOP//8GDJkSGzdujX+4R/+Ic4444zYuHFjFBcX77N+Q0NDNDQ05O7X1dXleyQAgOTlPeouuOCC3D+PGDEiRo8eHUOGDIknnngipk2bts/6CxcujAULFuR7DICIiFiwrvX/fbl53M15mITO7JDOo/qX2n+GA3Aep6/gX2lSWVkZQ4YMiVdffbXJx+fOnRu1tbW52/bt2ws9EgBAcvJ+pe7Pvfvuu7F9+/aorKxs8vHi4uImX5YFAODQNTvqdu3aFb/97W9z97du3RrPPfdc9OvXL/r16xfz58+P8847LyorK+P111+P7373uzFgwIA499xz8zo4AAB/1Oyoe/bZZ+P000/P3Z89e3ZERMyYMSPuu+++2LJlSyxZsiTef//9qKysjNNPPz0efvjhKCkpyd/UAAA00uyomzhxYmRZtt/Hf/nLX7ZqIAAAms9vvwIAJEDUAQAkQNQBACRA1AEAJEDUAQAkQNQBACRA1AEAJEDUAQAkQNQBACSg2b8oAUC65i7b0uTyzR/9a6u2+6Wel7Xq+cDBuVIHAJAAUQcAkABRBwCQAFEHAJAAUQcAkABRBwCQAFEHAJAAUQcAkABRBwCQAFEHAJAAUQcAkABRBwCQAFEHAJAAUQcAkABRBwCQAFEHAJAAUQcAkABRBwCQAFEHAJAAUQcAkABRBwCQAFEHAJAAUQcAkABRBwCQAFEHAJAAUQcAkABRBwCQAFEHAJAAUQcAkIDu7T0AkIjHr2vd86f+ID9zkKTNH/1rq57/pZ6X5WkS6LhcqQMASICoAwBIgKgDAEiAqAMASICoAwBIgKgDAEiAqAMASICoAwBIgKgDAEiAqAMASICoAwBIgKgDAEiAqAMASICoAwBIQPf2HgCAA1uwbsF+H/vvre8d9Plf6nlZPsdpkc0f/WvB93H0rt/s97Fz3rl9/098vN9n/3fqD/I8UcdyoPMoIiK2rW39ToaMP+DDN4+7ufX7YL9cqQMASICoAwBIgKgDAEiAqAMASICoAwBIgKgDAEiAqAMASICoAwBIgKgDAEhAs6NuzZo1MXXq1Bg4cGAUFRXFo48+2ujxLMti/vz5MXDgwOjVq1dMnDgxXnjhhXzNCwBAE5oddfX19XHCCSfEvffe2+Tjt99+e9x9991x7733xoYNG6KioiImTZoUO3fubPWwAAA0rdm//TplypSYMmVKk49lWRb33HNPzJs3L6ZNmxYREYsXL47y8vJ46KGH4oorrmjdtAAANCmv76nbunVrVFdXx+TJk3PLiouLY8KECbF2bR5+KBgAgCY1+0rdgVRXV0dERHl5eaPl5eXlsW3btiaf09DQEA0NDbn7dXV1+RwJAKBLyGvU7VVUVNTofpZl+yzba+HChbFgwYJCjEEbmbtsS3uPAJ1CS/9d2fzRe3mehCY9ft3+H6t/qe3mgBbK68uvFRUVEfHHK3Z71dTU7HP1bq+5c+dGbW1t7rZ9+/Z8jgQA0CXkNeqGDh0aFRUVsXLlytyy3bt3x+rVq2P8+PFNPqe4uDj69u3b6AYAQPM0++XXXbt2xW9/+9vc/a1bt8Zzzz0X/fr1i6OOOipmzZoVt956axx33HFx3HHHxa233hq9e/eOiy66KK+DAwDwR82OumeffTZOP/303P3Zs2dHRMSMGTPiJz/5Sdx4443x4YcfxlVXXRU7duyIMWPGxFNPPRUlJSX5mxoAgEaaHXUTJ06MLMv2+3hRUVHMnz8/5s+f35q5AABoBr/9CgCQAFEHAJAAUQcAkABRBwCQAFEHAJAAUQcAkABRBwCQAFEHAJAAUQcAkIBm/6IEANABbVvb3hPQzlypAwBIgKgDAEiAqAMASICoAwBIgKgDAEiAqAMASICoAwBIgKgDAEiAqAMASICoAwBIgKgDAEiAqAMASICoAwBIgKgDAEhA9/YeAPjMOb+/vb1H6Nq2rd3/Y+9c16pNL6h/KSIi6uoaWvT8ow9hndf7nLDfxzZ/9K8t2m9zHb3rN616/oH+BjqJA/17FHHwf5em/iB/s3RBrtQBACRA1AEAJEDUAQAkQNQBACRA1AEAJEDUAQAkQNQBACRA1AEAJEDUAQAkQNQBACRA1AEAJEDUAQAkQNQBACRA1AEAJKB7ew8ApG1B/UtNLq+pa2h0//WHrmuLcfbr6F0N+33smZr3WrXtmp7733ZHcvSu3yS7/yU9t+/3sSfrawq232bZtra9J+jwFqxb0Krn3zzu5jxN0jG5UgcAkABRBwCQAFEHAJAAUQcAkABRBwCQAFEHAJAAUQcAkABRBwCQAFEHAJAAUQcAkABRBwCQAFEHAJAAUQcAkABRBwCQgO7tPQBQGM9sfS+v2xsztF9et5dvR+/6TXuP0K66+t/fGjV1DXndXlnf4rxuLyUL6l868ArrFrTNIIlypQ4AIAGiDgAgAaIOACABog4AIAGiDgAgAaIOACABog4AIAGiDgAgAaIOACABog4AIAF5j7r58+dHUVFRo1tFRUW+dwMAwJ8oyG+//uVf/mX8x3/8R+5+t27dCrEbAAD+oCBR1717d1fnAADaUEHeU/fqq6/GwIEDY+jQoXHhhRfG7373u/2u29DQEHV1dY1uAAA0T96v1I0ZMyaWLFkSw4YNi7fffjv+6Z/+KcaPHx8vvPBC9O/ff5/1Fy5cGAsWLMj3GECePbP1vRY9r6ZnQ54naXtLem5v7xEADirvV+qmTJkS5513XowcOTK+8pWvxBNPPBEREYsXL25y/blz50ZtbW3utn27/3gCADRXQd5T96c+97nPxciRI+PVV19t8vHi4uIoLi4u9BgAAEkr+PfUNTQ0xP/8z/9EZWVloXcFANBl5T3qbrjhhli9enVs3bo1nnnmmfjbv/3bqKurixkzZuR7VwAA/EHeX379/e9/H1//+tfjnXfeiSOPPDLGjh0b69evjyFDhuR7VwAA/EHeo+7nP/95vjcJAMBB+O1XAIAEiDoAgASIOgCABIg6AIAEiDoAgASIOgCABIg6AIAEiDoAgATk/cuHAVri6F2/ae8RADo1V+oAABIg6gAAEiDqAAASIOoAABIg6gAAEiDqAAASIOoAABIg6gAAEiDqAAASIOoAABIg6gAAEiDqAAASIOoAABIg6gAAEtC9vQeg7c1dtqW9R6ATWdJze3uPAJAXC9YtaNXzbx53c54mKQxX6gAAEiDqAAASIOoAABIg6gAAEiDqAAASIOoAABIg6gAAEiDqAAASIOoAABIg6gAAEiDqAAASIOoAABIg6gAAEiDqAAAS0L29B2hvc5dtyev2Fk4bmdftAQAcClfqAAASIOoAABIg6gAAEiDqAAASIOoAABIg6gAAEiDqAAASIOoAABIg6gAAEiDqAAASIOoAABIg6gAAEiDqAAASIOoAABIg6gAAEiDqAAASIOoAABIg6gAAEiDqAAASIOoAABIg6gAAEiDqAAASIOoAABIg6gAAEiDqAAASULCo+9GPfhRDhw6Nnj17xqhRo+JXv/pVoXYFANDlFSTqHn744Zg1a1bMmzcvNm3aFKeeempMmTIl3njjjULsDgCgyytI1N19991x6aWXxmWXXRZf/OIX45577onBgwfHfffdV4jdAQB0ed3zvcHdu3fHxo0b46abbmq0fPLkybF27dp91m9oaIiGhobc/dra2oiIqKury/doTWr4YFdet9dWc7dGvv9m8qP+o93tPUKTdmeftPcI0Kl81L1be4/QedV/1N4THFBb/W/83v1kWdas5+U96t55553Ys2dPlJeXN1peXl4e1dXV+6y/cOHCWLBgwT7LBw8enO/R2sT323sAOi3nDsDT7T3AAd0Wt7Xp/nbu3BmlpaWHvH7eo26voqKiRvezLNtnWUTE3LlzY/bs2bn7n376abz33nvRv3//JtfvaOrq6mLw4MGxffv26Nu3b3uPkxzHt7Ac38JyfAvL8S0sx7ewDnR8syyLnTt3xsCBA5u1zbxH3YABA6Jbt277XJWrqanZ5+pdRERxcXEUFxc3WnbEEUfke6yC69u3r5O+gBzfwnJ8C8vxLSzHt7Ac38La3/FtzhW6vfL+QYnDDz88Ro0aFStXrmy0fOXKlTF+/Ph87w4AgCjQy6+zZ8+O6dOnx+jRo2PcuHFx//33xxtvvBFXXnllIXYHANDlFSTqLrjggnj33XfjlltuibfeeitGjBgRK1asiCFDhhRid+2quLg4br755n1eQiY/HN/CcnwLy/EtLMe3sBzfwirE8S3Kmvt5WQAAOhy//QoAkABRBwCQAFEHAJAAUQcAkABR1wL/7//9vxg/fnz07t37kL8oOcuymD9/fgwcODB69eoVEydOjBdeeKGwg3ZSO3bsiOnTp0dpaWmUlpbG9OnT4/333z/gc2bOnBlFRUWNbmPHjm2bgTu4H/3oRzF06NDo2bNnjBo1Kn71q18dcP3Vq1fHqFGjomfPnnHMMcfEj3/84zaatHNqzvGtqqra5zwtKiqKl156qQ0n7jzWrFkTU6dOjYEDB0ZRUVE8+uijB32O8/fQNPfYOnebZ+HChXHSSSdFSUlJlJWVxTnnnBMvv/zyQZ/X2vNX1LXA7t274/zzz49vfetbh/yc22+/Pe6+++649957Y8OGDVFRURGTJk2KnTt3FnDSzumiiy6K5557Lp588sl48skn47nnnovp06cf9HlnnnlmvPXWW7nbihUr2mDaju3hhx+OWbNmxbx582LTpk1x6qmnxpQpU+KNN95ocv2tW7fG1772tTj11FNj06ZN8d3vfje+/e1vxyOPPNLGk3cOzT2+e7388suNztXjjjuujSbuXOrr6+OEE06Ie++995DWd/4euuYe272cu4dm9erVcfXVV8f69etj5cqV8cknn8TkyZOjvr5+v8/Jy/mb0WKLFi3KSktLD7rep59+mlVUVGS33XZbbtlHH32UlZaWZj/+8Y8LOGHn8+KLL2YRka1fvz63bN26dVlEZC+99NJ+nzdjxozs7LPPboMJO5eTTz45u/LKKxstO/7447ObbrqpyfVvvPHG7Pjjj2+07IorrsjGjh1bsBk7s+Ye31WrVmURke3YsaMNpktLRGTLly8/4DrO35Y5lGPr3G2dmpqaLCKy1atX73edfJy/rtS1ga1bt0Z1dXVMnjw5t6y4uDgmTJgQa9eubcfJOp5169ZFaWlpjBkzJrds7NixUVpaetBjVVVVFWVlZTFs2LC4/PLLo6amptDjdmi7d++OjRs3NjrvIiImT56832O5bt26fdb/6le/Gs8++2x8/PHHBZu1M2rJ8d3rxBNPjMrKyvjyl78cq1atKuSYXYrzt/Ccuy1TW1sbERH9+vXb7zr5OH9FXRuorq6OiIjy8vJGy8vLy3OP8Znq6uooKyvbZ3lZWdkBj9WUKVPiwQcfjKeffjruuuuu2LBhQ5xxxhnR0NBQyHE7tHfeeSf27NnTrPOuurq6yfU/+eSTeOeddwo2a2fUkuNbWVkZ999/fzzyyCOxbNmyGD58eHz5y1+ONWvWtMXIyXP+Fo5zt+WyLIvZs2fHKaecEiNGjNjvevk4fwvyM2Gd0fz582PBggUHXGfDhg0xevToFu+jqKio0f0sy/ZZlqpDPb4R+x6niIMfqwsuuCD3zyNGjIjRo0fHkCFD4oknnohp06a1cOo0NPe8a2r9ppbzmeYc3+HDh8fw4cNz98eNGxfbt2+PO++8M0477bSCztlVOH8Lw7nbctdcc01s3rw5fv3rXx903daev6LuD6655pq48MILD7jO0Ucf3aJtV1RURMRnFV5ZWZlbXlNTs0+Vp+pQj+/mzZvj7bff3uex//u//2vWsaqsrIwhQ4bEq6++2uxZUzFgwIDo1q3bPleNDnTeVVRUNLl+9+7do3///gWbtTNqyfFtytixY+OnP/1pvsfrkpy/bcu5e3DXXnttPPbYY7FmzZoYNGjQAdfNx/kr6v5gwIABMWDAgIJse+jQoVFRURErV66ME088MSI+ez/O6tWr43vf+15B9tnRHOrxHTduXNTW1sZ///d/x8knnxwREc8880zU1tbG+PHjD3l/7777bmzfvr1RRHc1hx9+eIwaNSpWrlwZ5557bm75ypUr4+yzz27yOePGjYvHH3+80bKnnnoqRo8eHT169CjovJ1NS45vUzZt2tSlz9N8cv62Lefu/mVZFtdee20sX748qqqqYujQoQd9Tl7O3+Z+goMs27ZtW7Zp06ZswYIFWZ8+fbJNmzZlmzZtynbu3JlbZ/jw4dmyZcty92+77bastLQ0W7ZsWbZly5bs61//elZZWZnV1dW1x5/QoZ155pnZl770pWzdunXZunXrspEjR2Z/8zd/02idPz2+O3fuzK6//vps7dq12datW7NVq1Zl48aNy/7iL/6iyx/fn//851mPHj2yBx54IHvxxRezWbNmZZ/73Oey119/PcuyLLvpppuy6dOn59b/3e9+l/Xu3Tv7zne+k7344ovZAw88kPXo0SP7xS9+0V5/QofW3OP7/e9/P1u+fHn2yiuvZM8//3x20003ZRGRPfLII+31J3RoO3fuzP33NSKyu+++O9u0aVO2bdu2LMucv63R3GPr3G2eb33rW1lpaWlWVVWVvfXWW7nbBx98kFunEOevqGuBGTNmZBGxz23VqlW5dSIiW7RoUe7+p59+mt18881ZRUVFVlxcnJ122mnZli1b2n74TuDdd9/NLr744qykpCQrKSnJLr744n0+Rv+nx/eDDz7IJk+enB155JFZjx49sqOOOiqbMWNG9sYbb7T98B3QD3/4w2zIkCHZ4Ycfnv3VX/1Vo4/Uz5gxI5swYUKj9auqqrITTzwxO/zww7Ojjz46u++++9p44s6lOcf3e9/7XvaFL3wh69mzZ/b5z38+O+WUU7InnniiHabuHPZ+jcaf32bMmJFlmfO3NZp7bJ27zdPUsf3zLijE+Vv0h50DANCJ+UoTAIAEiDoAgASIOgCABIg6AIAEiDoAgASIOgCABIg6AIAEiDoAgASIOgCABIg6AIAEiDoAgASIOgCABPx/ASqTImC3vj4AAAAASUVORK5CYII=\n", + "text/plain": [ + "
" + ] + }, + "metadata": {}, + "output_type": "display_data" + } + ], + "source": [ + "fig, ax = plt.subplots(1, 1, sharey=True, tight_layout=True)\n", + "ax.hist(dx,bins=20,label='dy',alpha=0.6)\n", + "ax.hist(dy,bins=20, label='dx',alpha=0.6)\n", + "ax.hist(footie_diff,label='dist',bins=20,alpha=0.6)\n", + "plt.legend()" + ] + }, + { + "cell_type": "code", + "execution_count": 16, + "id": "36bcd2ff", + "metadata": {}, + "outputs": [], + "source": [ + "# radec footprint -> tess_stars2px_debug.py -> Pixel Footprint\n", + "# vs\n", + "# radec footprint -> tesspoint vectorize -> Pixel Footprint" + ] + }, + { + "cell_type": "code", + "execution_count": 17, + "id": "5b073367", + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "6.868132111081509e-08 6.385560543761951e-07\n" + ] + } + ], + "source": [ + "dx_nvo=fp_comp[:,0] - pixfootie_old.pixel_c.to_numpy()\n", + "dy_nvo=fp_comp[:,1] - pixfootie_old.pixel_r.to_numpy()\n", + "dist_nvo = (dx_nvo ** 2 + dy_nvo **2) ** 0.5\n", + "print(min(dist_nvo),max(dist_nvo))" + ] + }, + { + "cell_type": "code", + "execution_count": 18, + "id": "478fa6ef", + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "" + ] + }, + "execution_count": 18, + "metadata": {}, + "output_type": "execute_result" + }, + { + "data": { + "image/png": "iVBORw0KGgoAAAANSUhEUgAAAnYAAAHWCAYAAAD6oMSKAAAAOXRFWHRTb2Z0d2FyZQBNYXRwbG90bGliIHZlcnNpb24zLjYuMCwgaHR0cHM6Ly9tYXRwbG90bGliLm9yZy89olMNAAAACXBIWXMAAA9hAAAPYQGoP6dpAAAm+UlEQVR4nO3de1TUdf7H8dcIOKCgBsYtQKksLUkNzdVueDKLTGPbtdzMW+bqEUujxWLdXcU16WZRuVm2LYpluWcTs05tsiXazVbxuu2maajkJSo9Q2AOCvP7o5yfI4iC3+GLH56Pc+as850P3+97v6k9+87N4fF4PAIAAMA5r5XdAwAAAMAahB0AAIAhCDsAAABDEHYAAACGIOwAAAAMQdgBAAAYgrADAAAwBGEHAABgiEC7BzhZTU2N9u3bp7CwMDkcDrvHAQAAsJXH49EPP/yg2NhYtWpV/zW5Zhd2+/btU3x8vN1jAAAANCulpaWKi4urd02zC7uwsDBJPw3frl07m6cBAACwV3l5ueLj472NVJ9mF3bHn35t164dYQcAAPCzM3mJGm+eAAAAMARhBwAAYAjCDgAAwBDN7jV2AADALDU1NaqqqrJ7jGYrKChIAQEBluyLsAMAAH5TVVWlkpIS1dTU2D1Ks9ahQwdFR0ef9Wf4EnYAAMAvPB6P9u/fr4CAAMXHx5/2w3VbIo/Ho8OHD6usrEySFBMTc1b7I+wAAIBfHDt2TIcPH1ZsbKzatGlj9zjNVkhIiCSprKxMkZGRZ/W0LOkMAAD8orq6WpLUunVrmydp/o6H79GjR89qP4QdAADwK777/fSsOkeEHQAAwBlISUnR1KlT7R6jXoQdAACAIXjzBAAAaFJZy7Y26fFybk9q0uPZqcFX7NasWaMhQ4YoNjZWDodDy5cvP+XaCRMmyOFwKDc39yxGBAAAaFqVlZUaNWqUQkNDFRMTo7lz53ofmzVrlpKSasdicnKy/vSnPzXlmLU0OOwqKyvVo0cPzZs3r951y5cv12effabY2NhGDwcAAGCHzMxMrVq1SgUFBVq5cqWKiopUXFwsSbrnnnv03//+V+vWrfOu37JlizZu3KgxY8bYNPFPGvxUbGpqqlJTU+tds3fvXk2ePFnvvfeeBg8e3OjhAAAAmlpFRYVefvll5efn68Ybb5QkLVq0SHFxcZKkuLg43XTTTcrLy1OfPn0kSXl5ebr++ut14YUX2ja35Ic3T9TU1GjkyJHKzMzU5Zdfftr1brdb5eXlPjcAAAC77Ny5U1VVVerXr593W3h4uC699FLv/fHjx+u1117TkSNHdPToUb366qu655577BjXh+VvnnjssccUGBio+++//4zW5+TkKDs72+oxAAA4I/56IX9LesG+aTwez2nXDBkyRE6nUwUFBXI6nXK73frVr37VBNPVz9IrdsXFxXrmmWe0cOHCM/6gvaysLLlcLu+ttLTUypEAAAAa5OKLL1ZQUJDWrl3r3Xbo0CFt377dez8wMFCjR49WXl6e8vLyNHz48GbxtWmWXrH78MMPVVZWpoSEBO+26upqPfjgg8rNzdWuXbtq/YzT6ZTT6bRyDAAAgEYLDQ3VuHHjlJmZqYiICEVFRWn69Olq1cr3eti9996rbt26SZI+/vhjO0atxdKwGzlypAYOHOiz7aabbtLIkSM1duxYKw8FAADgN0888YQqKio0dOhQhYWF6cEHH5TL5fJZ06VLF/Xv31/ff/+9+vbta9OkvhocdhUVFdqxY4f3fklJiTZt2qTw8HAlJCQoIiLCZ31QUJCio6N9XnAIAADQnIWGhmrx4sVavHixd1tmZqbPGo/Ho2+++UYTJkxo6vFOqcFht379eg0YMMB7PyMjQ5I0evRoLVy40LLBAACAmUx4Y0lZWZkWL16svXv3NqtnJRscdikpKWf0bpHj6npdHQAAwLksKipKHTt21IIFC3TeeefZPY4X3xULAADQQA25yNWULP+AYgAAANiDsAMAADAEYQcAAGAIwg4AAMAQhB0AAIAhCDsAAABDEHYAAABnICUlRVOnTrV7jHoRdgAAAIbgA4oBAEDTemtK0x5vyDNNezwbccUOAADgJJWVlRo1apRCQ0MVExOjuXPneh/74osv1KZNGy1ZssS7bdmyZQoODtbWrVvtGNeLsAMAADhJZmamVq1apYKCAq1cuVJFRUUqLi6WJHXt2lVPPvmkJk2apN27d2vfvn0aP368Hn30USUlJdk6N0/FAgAAnKCiokIvv/yy8vPzdeONN0qSFi1apLi4OO+aSZMm6Z133tHIkSPVunVrJScna8qUJn6KuQ6EHQAAwAl27typqqoq9evXz7stPDxcl156qc+6v/3tb7rkkkvUqlUr/ec//5HD4WjqUWvhqVgAAIATeDyeM1q3efNmVVZWqrKyUgcOHPDzVGeGsAMAADjBxRdfrKCgIK1du9a77dChQ9q+fbv3/sGDBzVmzBhNnz5dY8eO1YgRI/Tjjz/aMa4Pwg4AAOAEoaGhGjdunDIzM/X+++/rP//5j8aMGaNWrf4/myZOnKj4+Hj94Q9/0FNPPSWPx6Pf/e53Nk79E15jBwAAcJInnnhCFRUVGjp0qMLCwvTggw/K5XJJkvLz8/XOO+9o48aNCgwMVGBgoF599VX1799fgwcP1i233GLb3A7PmT6R3ETKy8vVvn17uVwutWvXzu5xAACGy1rmn88dy7nd3o+9aA6OHDmikpISJSYmKjg42O5xmrX6zlVD2oinYgEAAAxB2AEAABiC19gBwLnCn9+v2YK+SxO+sj/NbvDPzOg3ww+TwApcsQMAADAEYQcAAGAIwg4AAMAQhB0AAIAhCDsAAABDEHYAAACGIOwAAADOQEpKiqZOnSpJ6ty5s3Jzc22dpy6EHQAAQAOtW7dOv/3tb89obVNGIB9QDAAAmlRjPhT5bPjjA5XPP/98y/dpBa7YAQAAnKSyslKjRo1SaGioYmJiNHfuXJ/HT74KN3PmTCUkJMjpdCo2Nlb333+/pJ+evt29e7ceeOABORwOORwOv85N2AEAAJwkMzNTq1atUkFBgVauXKmioiIVFxfXufYf//iHnn76ab344ov68ssvtXz5ciUlJUmSli1bpri4OM2aNUv79+/X/v37/To3T8UCAACcoKKiQi+//LLy8/N14403SpIWLVqkuLi4Otfv2bNH0dHRGjhwoIKCgpSQkKCrrrpKkhQeHq6AgACFhYUpOjra77NzxQ4AAOAEO3fuVFVVlfr16+fdFh4erksvvbTO9cOGDdOPP/6oCy+8UOPHj1dBQYGOHTvWVOP6IOwAAABO4PF4GrQ+Pj5e27Zt01/+8heFhIRo0qRJuu6663T06FE/TXhqhB0AAMAJLr74YgUFBWnt2rXebYcOHdL27dtP+TMhISEaOnSonn32WRUVFenTTz/V1q1bJUmtW7dWdXW13+eWeI0dAACAj9DQUI0bN06ZmZmKiIhQVFSUpk+frlat6r4etnDhQlVXV6tv375q06aNFi9erJCQEHXq1EnST++gXbNmjYYPHy6n06mOHTv6bXbCDgAA4CRPPPGEKioqNHToUIWFhenBBx+Uy+Wqc22HDh306KOPKiMjQ9XV1UpKStJbb72liIgISdKsWbM0YcIEXXTRRXK73Q1+qrchCDsAANCk/PGBwVYLDQ3V4sWLtXjxYu+2zMxM76937drl/XVaWprS0tJOua9f/OIX2rx5sz/GrIXX2AEAABiCsAMAADAEYQcAAGAIwg4AAMAQDQ67NWvWaMiQIYqNjZXD4dDy5cu9jx09elQPPfSQkpKS1LZtW8XGxmrUqFHat2+flTMDAACgDg0Ou8rKSvXo0UPz5s2r9djhw4e1YcMG/fGPf9SGDRu0bNkybd++XUOHDrVkWAAAcO7x58d7mMKqc9TgjztJTU1VampqnY+1b99ehYWFPtuee+45XXXVVdqzZ48SEhIaNyUAADjnBAQESJKqqqoUEhJi8zTN2+HDhyVJQUFBZ7Ufv3+OncvlksPhUIcOHfx9KAAA0IwEBgaqTZs2+vbbbxUUFHTKb25oyTwejw4fPqyysjJ16NDBG8ON5dewO3LkiB5++GHdddddateuXZ1r3G633G639355ebk/RwIAAE3E4XAoJiZGJSUl2r17t93jNGsdOnRQdHT0We/Hb2F39OhRDR8+XDU1NXr++edPuS4nJ0fZ2dn+GgMAANiodevW6tKli6qqquwepdkKCgo66yt1x/kl7I4ePao77rhDJSUl+uCDD055tU6SsrKylJGR4b1fXl6u+Ph4f4wFAABs0KpVKwUHB9s9Rotgedgdj7ovv/xSq1at8n4B7qk4nU45nU6rxwAAAGhxGhx2FRUV2rFjh/d+SUmJNm3apPDwcMXGxurXv/61NmzYoLffflvV1dU6cOCAJCk8PFytW7e2bnIAAAD4aHDYrV+/XgMGDPDeP/406ujRozVz5kytWLFCktSzZ0+fn1u1apVSUlIaPykAAADq1eCwS0lJqfdD9PgQQgAAAHvwgTIAAACGIOwAAAAMQdgBAAAYgrADAAAwBGEHAABgCMIOAADAEIQdAACAIQg7AAAAQxB2AAAAhiDsAAAADEHYAQAAGIKwAwAAMARhBwAAYAjCDgAAwBCEHQAAgCEIOwAAAEMQdgAAAIYg7AAAAAxB2AEAABiCsAMAADAEYQcAAGAIwg4AAMAQgXYPAABAo7015ax3kfb1wTq3L4+bdtb7BpoaV+wAAAAMQdgBAAAYgrADAAAwBGEHAABgCMIOAADAEIQdAACAIQg7AAAAQxB2AAAAhiDsAAAADEHYAQAAGIKwAwAAMARhBwAAYAjCDgAAwBCEHQAAgCEIOwAAAEMQdgAAAIYg7AAAAAxB2AEAABiCsAMAADAEYQcAAGAIwg4AAMAQhB0AAIAhGhx2a9as0ZAhQxQbGyuHw6Hly5f7PO7xeDRz5kzFxsYqJCREKSkp+vzzz62aFwAAAKfQ4LCrrKxUjx49NG/evDoff/zxx/XUU09p3rx5WrdunaKjo3XjjTfqhx9+OOthAQAAcGqBDf2B1NRUpaam1vmYx+NRbm6upk+frttvv12StGjRIkVFRWnJkiWaMGHC2U0LAACAU7L0NXYlJSU6cOCABg0a5N3mdDp1/fXX65NPPqnzZ9xut8rLy31uAAAAaLgGX7Grz4EDByRJUVFRPtujoqK0e/fuOn8mJydH2dnZVo4BALBZ9qcN/3t9Rr8ZfpjEOluO/LVB67M/DW/0sZr7uUDz5Zd3xTocDp/7Ho+n1rbjsrKy5HK5vLfS0lJ/jAQAAGA8S6/YRUdHS/rpyl1MTIx3e1lZWa2reMc5nU45nU4rxwAAAGiRLL1il5iYqOjoaBUWFnq3VVVVafXq1erfv7+VhwIAAMBJGnzFrqKiQjt27PDeLykp0aZNmxQeHq6EhARNnTpVc+bMUZcuXdSlSxfNmTNHbdq00V133WXp4AAAAPDV4LBbv369BgwY4L2fkZEhSRo9erQWLlyoadOm6ccff9SkSZN06NAh9e3bVytXrlRYWJh1UwMAAKCWBoddSkqKPB7PKR93OByaOXOmZs6ceTZzAQAAoIH4rlgAAABDEHYAAACGIOwAAAAMQdgBAAAYgrADAAAwBGEHAABgCMIOAADAEIQdAACAIQg7AAAAQxB2AAAAhiDsAAAADEHYAQAAGIKwAwAAMARhBwAAYAjCDgAAwBCEHQAAgCEIOwAAAEMQdgAAAIYg7AAAAAxB2AEAABiCsAMAADBEoN0DADhHvTXFf/se8oz/9g00kX+XHGz0z2bt33rKx3JuT2r0fmE+rtgBAAAYgrADAAAwBGEHAABgCMIOAADAEIQdAACAIQg7AAAAQxB2AAAAhiDsAAAADEHYAQAAGIKwAwAAMARhBwAAYAjCDgAAwBCEHQAAgCEIOwAAAEMQdgAAAIYg7AAAAAxB2AEAABiCsAMAADAEYQcAAGAIwg4AAMAQhB0AAIAhCDsAAABDEHYAAACGsDzsjh07pj/84Q9KTExUSEiILrzwQs2aNUs1NTVWHwoAAAAnCLR6h4899pheeOEFLVq0SJdffrnWr1+vsWPHqn379poyZYrVhwMAAMDPLA+7Tz/9VLfddpsGDx4sSercubNee+01rV+/3upDAQAA4ASWPxV7zTXX6P3339f27dslSZs3b9ZHH32kW265pc71brdb5eXlPjcAAAA0nOVX7B566CG5XC517dpVAQEBqq6u1iOPPKLf/OY3da7PyclRdna21WPAIlnLtvpt3zm3J/lt3+eUt3iJAtDUsiu/8P66LNhd55pdR/7aVOPUsqWeYw9eUv/Pdq7Y3OjjRrZz1r+gU/9G7xtNw/IrdkuXLtUrr7yiJUuWaMOGDVq0aJGefPJJLVq0qM71WVlZcrlc3ltpaanVIwEAALQIll+xy8zM1MMPP6zhw4dLkpKSkrR7927l5ORo9OjRtdY7nU45naf5LwQAAACcluVX7A4fPqxWrXx3GxAQwMedAAAA+JnlV+yGDBmiRx55RAkJCbr88su1ceNGPfXUU7rnnnusPhQAAABOYHnYPffcc/rjH/+oSZMmqaysTLGxsZowYYL+9Kc/WX0oAAAAnMDysAsLC1Nubq5yc3Ot3jUAAADqwXfFAgAAGIKwAwAAMARhBwAAYAjCDgAAwBCEHQAAgCEIOwAAAEMQdgAAAIYg7AAAAAxB2AEAABiCsAMAADAEYQcAAGAIwg4AAMAQhB0AAIAhCDsAAABDEHYAAACGIOwAAAAMQdgBAAAYgrADAAAwBGEHAABgCMIOAADAEIQdAACAIQLtHqA5ylq21e4RGizn9iTrdvbWFO8v074+aN1+JS2Pm2bp/nycMLflhjzjv31L+qzE2vN8XN/EcL/sFway6M/P8d/LZcGl3m27Qnuc0c9m7T/13731/R2XXfnFGU4HmI8rdgAAAIYg7AAAAAxB2AEAABiCsAMAADAEYQcAAGAIwg4AAMAQhB0AAIAhCDsAAABDEHYAAACGIOwAAAAMQdgBAAAYgrADAAAwBGEHAABgCMIOAADAEIQdAACAIQg7AAAAQxB2AAAAhiDsAAAADEHYAQAAGIKwAwAAMARhBwAAYAjCDgAAwBB+Cbu9e/fq7rvvVkREhNq0aaOePXuquLjYH4cCAADAzwKt3uGhQ4d09dVXa8CAAXr33XcVGRmpnTt3qkOHDlYfCgAAACewPOwee+wxxcfHKy8vz7utc+fOVh8GAAAAJ7H8qdgVK1aod+/eGjZsmCIjI9WrVy+99NJLVh8GAAAAJ7E87L766ivNnz9fXbp00XvvvaeJEyfq/vvvV35+fp3r3W63ysvLfW4AAABoOMufiq2pqVHv3r01Z84cSVKvXr30+eefa/78+Ro1alSt9Tk5OcrOzrZ6jDP31pRam9K+PmjJrpfHTbNkP3VJ+/px3w1vhfvtWOeaz0qs+efn49mR6pvIOUbdspZt9ct+c25P8st+/fJnBDiN7E8b9+/6Gf1mWDyJ2Sy/YhcTE6PLLrvMZ1u3bt20Z8+eOtdnZWXJ5XJ5b6WlpVaPBAAA0CJYfsXu6quv1rZt23y2bd++XZ06dapzvdPplNPptHoMAACAFsfyK3YPPPCA1q5dqzlz5mjHjh1asmSJFixYoPT0dKsPBQAAgBNYHnZ9+vRRQUGBXnvtNXXv3l1//vOflZubqxEjRlh9KAAAAJzA8qdiJenWW2/Vrbfe6o9dAwAA4BT4rlgAAABDEHYAAACGIOwAAAAMQdgBAAAYgrADAAAwBGEHAABgCMIOAADAEIQdAACAIQg7AAAAQxB2AAAAhiDsAAAADEHYAQAAGIKwAwAAMARhBwAAYAjCDgAAwBCEHQAAgCEIOwAAAEMQdgAAAIYg7AAAAAxB2AEAABiCsAMAADBEoN0DAOeKz0oO2j1Cs+Kv89E3Mdwv+81attUv+20J8oNL7R4BzUz2p9lGHqsxZvSbYfcIPrhiBwAAYAjCDgAAwBCEHQAAgCEIOwAAAEMQdgAAAIYg7AAAAAxB2AEAABiCsAMAADAEYQcAAGAIwg4AAMAQhB0AAIAhCDsAAABDEHYAAACGIOwAAAAMQdgBAAAYgrADAAAwBGEHAABgCMIOAADAEIQdAACAIQg7AAAAQxB2AAAAhiDsAAAADEHYAQAAGMLvYZeTkyOHw6GpU6f6+1AAAAAtml/Dbt26dVqwYIGuuOIKfx4GAAAA8mPYVVRUaMSIEXrppZd03nnn+eswAAAA+Jnfwi49PV2DBw/WwIED613ndrtVXl7ucwMAAEDDBfpjp6+//ro2bNigdevWnXZtTk6OsrOz/TFGi/JZyUG7RzgjaV8//v933gq3b5AW4lz5fXGiz0oOSs+OtHy/aT//7/K4aZbv+2xtOfLXOrdnf3rSn5HKL7y/nNG2a6OOlV35hcqC3Y36WVinc8Vmu0eAoSy/YldaWqopU6bolVdeUXBw8GnXZ2VlyeVyeW+lpaVWjwQAANAiWH7Frri4WGVlZUpOTvZuq66u1po1azRv3jy53W4FBAR4H3M6nXI6nVaPAQAA0OJYHnY33HCDtm7d6rNt7Nix6tq1qx566CGfqAMAAIB1LA+7sLAwde/e3Wdb27ZtFRERUWs7AAAArMM3TwAAABjCL++KPVlRUVFTHAYAAKBF44odAACAIQg7AAAAQxB2AAAAhiDsAAAADEHYAQAAGIKwAwAAMARhBwAAYAjCDgAAwBCEHQAAgCEIOwAAAEMQdgAAAIYg7AAAAAxB2AEAABiCsAMAADAEYQcAAGAIwg4AAMAQhB0AAIAhCDsAAABDEHYAAACGIOwAAAAMQdgBAAAYItDuAUyW9vXjdo/QrH1WctDuEQBLNfbPfHlwad0P7HaexTRmyVq2tc7taV8fVFmw2y/H7Fyx2S/7BfyJK3YAAACGIOwAAAAMQdgBAAAYgrADAAAwBGEHAABgCMIOAADAEIQdAACAIQg7AAAAQxB2AAAAhiDsAAAADEHYAQAAGIKwAwAAMARhBwAAYAjCDgAAwBCEHQAAgCEIOwAAAEMQdgAAAIYg7AAAAAxB2AEAABiCsAMAADAEYQcAAGAIwg4AAMAQloddTk6O+vTpo7CwMEVGRiotLU3btm2z+jAAAAA4ieVht3r1aqWnp2vt2rUqLCzUsWPHNGjQIFVWVlp9KAAAAJwg0Ood/vOf//S5n5eXp8jISBUXF+u6666z+nAAAAD4md9fY+dyuSRJ4eHh/j4UAABAi2b5FbsTeTweZWRk6JprrlH37t3rXON2u+V2u733y8vL/TkSAACAsfwadpMnT9aWLVv00UcfnXJNTk6OsrOz/TkGAHilff34Ga3LDy5t8L7zg6VRR+Ib/HOnUlbuPuVj6eWbLTtOc7HlyF8b/DPljfjnBJjMb0/F3nfffVqxYoVWrVqluLi4U67LysqSy+Xy3kpL+UMKAADQGJZfsfN4PLrvvvtUUFCgoqIiJSYm1rve6XTK6XRaPQYAAECLY3nYpaena8mSJXrzzTcVFhamAwcOSJLat2+vkJAQqw8HAACAn1n+VOz8+fPlcrmUkpKimJgY723p0qVWHwoAAAAn8MtTsQAAAGh6fFcsAACAIQg7AAAAQxB2AAAAhiDsAAAADEHYAQAAGIKwAwAAMARhBwAAYAjCDgAAwBCEHQAAgCEIOwAAAEMQdgAAAIYg7AAAAAxB2AEAABiCsAMAADAEYQcAAGAIwg4AAMAQhB0AAIAhCDsAAABDEHYAAACGIOwAAAAMQdgBAAAYItDuAQDAJPnBpXaP0Ox0rths9whAi8EVOwAAAEMQdgAAAIYg7AAAAAxB2AEAABiCsAMAADAEYQcAAGAIwg4AAMAQhB0AAIAhCDsAAABDEHYAAACGIOwAAAAMQdgBAAAYgrADAAAwBGEHAABgCMIOAADAEIQdAACAIQg7AAAAQxB2AAAAhiDsAAAADEHYAQAAGIKwAwAAMARhBwAAYAjCDgAAwBB+C7vnn39eiYmJCg4OVnJysj788EN/HQoAAADyU9gtXbpUU6dO1fTp07Vx40Zde+21Sk1N1Z49e/xxOAAAAMhPYffUU09p3Lhxuvfee9WtWzfl5uYqPj5e8+fP98fhAAAAICnQ6h1WVVWpuLhYDz/8sM/2QYMG6ZNPPqm13u12y+12e++7XC5JUnl5udWj1e2wu9amyiNVTXNsAM1WleeY3SMATe5IYED9CyqPNM0g55Cm6JXjx/B4PKdda3nYfffdd6qurlZUVJTP9qioKB04cKDW+pycHGVnZ9faHh8fb/VoAADgrHxg9wDNzqN6tMmO9cMPP6h9+/b1rrE87I5zOBw+9z0eT61tkpSVlaWMjAzv/ZqaGh08eFARERF1rm/JysvLFR8fr9LSUrVr187ucVoMznvT45zbg/Pe9Djn9jjXzrvH49EPP/yg2NjY0661POw6duyogICAWlfnysrKal3FkySn0ymn0+mzrUOHDlaPZZR27dqdE78RTcN5b3qcc3tw3pse59we59J5P92VuuMsf/NE69atlZycrMLCQp/thYWF6t+/v9WHAwAAwM/88lRsRkaGRo4cqd69e6tfv35asGCB9uzZo4kTJ/rjcAAAAJCfwu7OO+/U999/r1mzZmn//v3q3r273nnnHXXq1Mkfh2sxnE6nZsyYUeupa/gX573pcc7twXlvepxze5h83h2eM3nvLAAAAJo9visWAADAEIQdAACAIQg7AAAAQxB2AAAAhiDsDOB2u9WzZ085HA5t2rTJ7nGMtWvXLo0bN06JiYkKCQnRRRddpBkzZqiqiu8Wttrzzz+vxMREBQcHKzk5WR9++KHdIxkrJydHffr0UVhYmCIjI5WWlqZt27bZPVaLkpOTI4fDoalTp9o9ivH27t2ru+++WxEREWrTpo169uyp4uJiu8eyFGFngGnTpp3R14zg7HzxxReqqanRiy++qM8//1xPP/20XnjhBf3+97+3ezSjLF26VFOnTtX06dO1ceNGXXvttUpNTdWePXvsHs1Iq1evVnp6utauXavCwkIdO3ZMgwYNUmVlpd2jtQjr1q3TggULdMUVV9g9ivEOHTqkq6++WkFBQXr33Xf13//+V3PnzjXu2674uJNz3LvvvquMjAy98cYbuvzyy7Vx40b17NnT7rFajCeeeELz58/XV199Zfcoxujbt6+uvPJKzZ8/37utW7duSktLU05Ojo2TtQzffvutIiMjtXr1al133XV2j2O0iooKXXnllXr++ec1e/Zs9ezZU7m5uXaPZayHH35YH3/8sfHPAHDF7hz2zTffaPz48Vq8eLHatGlj9zgtksvlUnh4uN1jGKOqqkrFxcUaNGiQz/ZBgwbpk08+sWmqlsXlckkSv6+bQHp6ugYPHqyBAwfaPUqLsGLFCvXu3VvDhg1TZGSkevXqpZdeesnusSxH2J2jPB6PxowZo4kTJ6p37952j9Mi7dy5U8899xxflWeh7777TtXV1YqKivLZHhUVpQMHDtg0Vcvh8XiUkZGha665Rt27d7d7HKO9/vrr2rBhA1ehm9BXX32l+fPnq0uXLnrvvfc0ceJE3X///crPz7d7NEsRds3MzJkz5XA46r2tX79ezz33nMrLy5WVlWX3yOe8Mz3nJ9q3b59uvvlmDRs2TPfee69Nk5vL4XD43Pd4PLW2wXqTJ0/Wli1b9Nprr9k9itFKS0s1ZcoUvfLKKwoODrZ7nBajpqZGV155pebMmaNevXppwoQJGj9+vM/LPkzgl++KReNNnjxZw4cPr3dN586dNXv2bK1du7bW99z17t1bI0aM0KJFi/w5plHO9Jwft2/fPg0YMED9+vXTggUL/Dxdy9KxY0cFBATUujpXVlZW6yoerHXfffdpxYoVWrNmjeLi4uwex2jFxcUqKytTcnKyd1t1dbXWrFmjefPmye12KyAgwMYJzRQTE6PLLrvMZ1u3bt30xhtv2DSRfxB2zUzHjh3VsWPH06579tlnNXv2bO/9ffv26aabbtLSpUvVt29ff45onDM959JPb5UfMGCAkpOTlZeXp1atuOhtpdatWys5OVmFhYX65S9/6d1eWFio2267zcbJzOXxeHTfffepoKBARUVFSkxMtHsk491www3aunWrz7axY8eqa9eueuihh4g6P7n66qtrfZTP9u3b1alTJ5sm8g/C7hyVkJDgcz80NFSSdNFFF/Ff236yb98+paSkKCEhQU8++aS+/fZb72PR0dE2TmaWjIwMjRw5Ur179/ZeFd2zZw+vZfST9PR0LVmyRG+++abCwsK8V0vbt2+vkJAQm6czU1hYWK3XMLZt21YRERG8ttGPHnjgAfXv319z5szRHXfcoX//+99asGCBcc+8EHbAGVq5cqV27NihHTt21IpnPjXIOnfeeae+//57zZo1S/v371f37t31zjvvGPdf1c3F8dcXpaSk+GzPy8vTmDFjmn4gwE/69OmjgoICZWVladasWUpMTFRubq5GjBhh92iW4nPsAAAADMELhAAAAAxB2AEAABiCsAMAADAEYQcAAGAIwg4AAMAQhB0AAIAhCDsAAABDEHYAAAAnWbNmjYYMGaLY2Fg5HA4tX77cr8fr3LmzHA5HrVt6enqD9kPYAQAAnKSyslI9evTQvHnzmuR469at0/79+723wsJCSdKwYcMatB/CDgAA4CSpqamaPXu2br/99jofr6qq0rRp03TBBReobdu26tu3r4qKihp9vPPPP1/R0dHe29tvv62LLrpI119/fYP2Q9gBAAA00NixY/Xxxx/r9ddf15YtWzRs2DDdfPPN+vLLL89631VVVXrllVd0zz33yOFwNOhn+a5YAACAejgcDhUUFCgtLU2StHPnTnXp0kVff/21YmNjvesGDhyoq666SnPmzDmr4/3973/XXXfdpT179vjs/0xwxQ4AAKABNmzYII/Ho0suuUShoaHe2+rVq7Vz505J0q5du+p8M8SJt8mTJ9e5/5dfflmpqakNjjpJCjyr/2cAAAAtTE1NjQICAlRcXKyAgACfx0JDQyVJF1xwgf73v//Vu5/zzjuv1rbdu3frX//6l5YtW9ao2Qg7AACABujVq5eqq6tVVlama6+9ts41QUFB6tq1a4P3nZeXp8jISA0ePLhRsxF2AAAAJ6moqNCOHTu890tKSrRp0yaFh4frkksu0YgRIzRq1CjNnTtXvXr10nfffacPPvhASUlJuuWWWxp1zJqaGuXl5Wn06NEKDGxcovHmCQAAgJMUFRVpwIABtbaPHj1aCxcu1NGjRzV79mzl5+dr7969ioiIUL9+/ZSdna2kpKRGHXPlypW66aabtG3bNl1yySWN2gdhBwAAYAjeFQsAAGAIwg4AAMAQhB0AAIAhCDsAAABDEHYAAACGIOwAAAAMQdgBAAAYgrADAAAwBGEHAABgCMIOAADAEIQdAACAIQg7AAAAQ/wfBLh6EEPzqYUAAAAASUVORK5CYII=\n", + "text/plain": [ + "
" + ] + }, + "metadata": {}, + "output_type": "display_data" + } + ], + "source": [ + "fig, ax = plt.subplots(1, 1, sharey=True, tight_layout=True)\n", + "ax.hist(dx_nvo,bins=20,label='dy',alpha=0.6)\n", + "ax.hist(dy_nvo,bins=20, label='dx',alpha=0.6)\n", + "ax.hist(dist_nvo,label='dist',bins=20,alpha=0.6)\n", + "plt.legend()" + ] + }, + { + "cell_type": "markdown", + "id": "8bcbed38", + "metadata": { + "scrolled": false + }, + "source": [ + "# Now choose the greatest discrepency since our test value was so low" + ] + }, + { + "cell_type": "code", + "execution_count": 19, + "id": "f67ddbab", + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "tic 6.000000\n", + "ra 313.593801\n", + "dec -46.546113\n", + "elo 302.449029\n", + "ela -27.897244\n", + "sector 1.000000\n", + "camera 1.000000\n", + "detector 1.000000\n", + "pixel_c 44.920950\n", + "pixel_r 251.854230\n", + "edge 1.000000\n", + "Name: 18, dtype: float64" + ] + }, + "execution_count": 19, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "index_max=np.argmax(dist_nvo)\n", + "index_max\n", + "pixfootie_old.loc[index_max]" + ] + }, + { + "cell_type": "code", + "execution_count": 20, + "id": "a6f18ac3", + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "# TIC | RA | Dec | EclipticLong | EclipticLat | Sector | Camera | Ccd | ColPix | RowPix | EdgeWarn\n", + "DEBUG: optics_fp: cphi: -0.7506736080853075\n", + "DEBUG: optics_fp: sphi: -0.660673243081772\n", + "DEBUG: optics_fp: rfp0*rfp: 42.0500219975458\n", + "DEBUG: optics_fp: xytmp: [31.56584173 27.7813244 ]\n", + "DEBUG: optics_fp: xytmp shape: (2,)\n", + "radec2pix: curVec: [ 0.47424613 -0.4981154 -0.72592814] i: 0\n", + "radec2pix: camVec: [-0.20363727 -0.17922262 0.96250253] i: 0 j:0\n", + "radec2pix: lng: 221.3512383655061\n", + "radec2pix: lat: 74.25998523261158\n", + "radec2pix: xyfp: [31.56584173 27.7813244 ]\n", + "radec2pix: fitsxpos: [4227.07906705]\n", + "radec2pix: fitsypos: [3904.14567211]\n", + "radec2pix: ccdxpos: [-0.07906705]\n", + "radec2pix: ccdypos: [250.85432789]\n", + "000000000 | 313.593801 | -46.546113 | 302.449029 | -27.897244 | 1 | 1 | 1 | 44.920933 | 251.854328 | 1\n", + " " + ] + } + ], + "source": [ + "%run -p -i tess_stars2px_debug.py -t 0 -s 1 -c 313.593801 -46.546113 " + ] + }, + { + "cell_type": "code", + "execution_count": 21, + "id": "670b2b9b", + "metadata": {}, + "outputs": [ + { + "name": "stderr", + "output_type": "stream", + "text": [ + "DEBUG:root:DEBUG: radec2pix: curVec: [[ 0.47424613 -0.4981154 -0.72592814]]\n", + "DEBUG:root:DEBUG: radec2pix: curVec Shape: (1, 3)\n", + "DEBUG:root:DEBUG: radec2pix: camVec: [[-0.20363727]\n", + " [-0.17922262]\n", + " [ 0.96250253]]\n", + "DEBUG:root:DEBUG: radec2pix: camVec Shape: (3, 1)\n", + "DEBUG:root:DEBUG: cartToSphere: vec: [[-0.20363727 -0.17922262 0.96250253]]\n", + "DEBUG:root:DEBUG: radec2pix: lng: [221.35123837]\n", + "DEBUG:root:DEBUG: radec2pix: lat: [74.25998523]\n", + "DEBUG:root:DEBUG: optics_fp: rtanth: [42.050022]\n", + "DEBUG:root:DEBUG: optics_fp: cphi: [-0.75067361]\n", + "DEBUG:root:DEBUG: optics_fp: sphi: [-0.66067324]\n", + "DEBUG:root:DEBUG: optics_fp: xyfp: [[31.56584173 27.7813244 ]]\n", + "DEBUG:root:DEBUG: optics_fp: xyfp shape: (1, 2)\n", + "DEBUG:root:DEBUG: make_az_asym: xyp: [[31.56584173 27.7813244 ]]\n", + "DEBUG:root:DEBUG: make_az_asym: xyp: shape: (1, 2)\n", + "DEBUG:root:DEBUG: radec2pix: xyfp: [[31.56584173 27.7813244 ]]\n", + "DEBUG:root:DEBUG: radec2pix: xyfp Shape: (1, 2)\n", + "DEBUG:root:DEBUG: mm_to_pix: fitpx: [[0. 0.]]\n", + "DEBUG:root:DEBUG: mm_to_pix: fitpx.shape: (1, 2)\n", + "DEBUG:root:DEBUG: radec2pix: xyfp: [[31.56584173 27.7813244 ]]\n", + "DEBUG:root:DEBUG: radec2pix: ccdpx: [[-7.90670465e-02 2.50854328e+02]]\n", + "DEBUG:root:DEBUG: radec2pix: fitpx: [[4227.07906705 3904.14567211]]\n", + "DEBUG:root:DEBUG: fitpix2pix: ccdpx: shape: (1, 2)\n", + "DEBUG:root:DEBUG: fitpix2pix: visCut: True\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "(array([[ 44.92093295, 251.85432789]]), array([ True]))\n" + ] + } + ], + "source": [ + "target2=np.array([[313.593801, -46.546113]])\n", + "print(tp.radec2pix(target2))" + ] + }, + { + "cell_type": "markdown", + "id": "32f89246", + "metadata": {}, + "source": [ + "# Wait, I'm dumb, that wasn't the problem\n", + "## The problem is - our pixel -> radec -> pixel accuracy is <~ 2 pixels. This naively seems large. Is the stars2pix version similar? we don't know\n", + "Theres a reverse mode in stars2pix, so we need to make a footie, go footie - reverse - radecfootie - normal and check its recall" + ] + }, + { + "cell_type": "code", + "execution_count": 22, + "id": "882f831e", + "metadata": {}, + "outputs": [], + "source": [ + "footie=footprint()\n", + "file = open(\"footie_pix_input.txt\", \"w\")\n", + "for i in range(0,len(footie)):\n", + " file.write(\"{0} {1} {2} \\n\".format(i,footie[i,0], footie[i,1]))\n", + "file.close()" + ] + }, + { + "cell_type": "code", + "execution_count": 23, + "id": "4b005d30", + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "313.789551298924 -47.862968144977444\n", + " " + ] + } + ], + "source": [ + "%run -p -i tess_stars2px_debug.py -r 1 1 1 1 1 --inputFile footie_pix_input.txt -o footie_radec_pixout.dat" + ] + }, + { + "cell_type": "markdown", + "id": "76614746", + "metadata": {}, + "source": [ + "# Alright, fine. I cannot make reverse mode work with an input file, so lets grab the maximal deviation in our comparisonand test that specific case. " + ] + }, + { + "cell_type": "code", + "execution_count": 24, + "id": "9d829c41", + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "array([[ 0. , 0. ],\n", + " [ 0. , 41.79591837],\n", + " [ 0. , 83.59183673],\n", + " [ 0. , 125.3877551 ],\n", + " [ 0. , 167.18367347],\n", + " [ 0. , 208.97959184],\n", + " [ 0. , 250.7755102 ],\n", + " [ 0. , 292.57142857],\n", + " [ 0. , 334.36734694],\n", + " [ 0. , 376.16326531],\n", + " [ 0. , 417.95918367],\n", + " [ 0. , 459.75510204],\n", + " [ 0. , 501.55102041],\n", + " [ 0. , 543.34693878],\n", + " [ 0. , 585.14285714],\n", + " [ 0. , 626.93877551],\n", + " [ 0. , 668.73469388],\n", + " [ 0. , 710.53061224],\n", + " [ 0. , 752.32653061],\n", + " [ 0. , 794.12244898],\n", + " [ 0. , 835.91836735],\n", + " [ 0. , 877.71428571],\n", + " [ 0. , 919.51020408],\n", + " [ 0. , 961.30612245],\n", + " [ 0. , 1003.10204082],\n", + " [ 0. , 1044.89795918],\n", + " [ 0. , 1086.69387755],\n", + " [ 0. , 1128.48979592],\n", + " [ 0. , 1170.28571429],\n", + " [ 0. , 1212.08163265],\n", + " [ 0. , 1253.87755102],\n", + " [ 0. , 1295.67346939],\n", + " [ 0. , 1337.46938776],\n", + " [ 0. , 1379.26530612],\n", + " [ 0. , 1421.06122449],\n", + " [ 0. , 1462.85714286],\n", + " [ 0. , 1504.65306122],\n", + " [ 0. , 1546.44897959],\n", + " [ 0. , 1588.24489796],\n", + " [ 0. , 1630.04081633],\n", + " [ 0. , 1671.83673469],\n", + " [ 0. , 1713.63265306],\n", + " [ 0. , 1755.42857143],\n", + " [ 0. , 1797.2244898 ],\n", + " [ 0. , 1839.02040816],\n", + " [ 0. , 1880.81632653],\n", + " [ 0. , 1922.6122449 ],\n", + " [ 0. , 1964.40816327],\n", + " [ 0. , 2006.20408163],\n", + " [ 0. , 2048. ],\n", + " [ 0. , 0. ],\n", + " [ 41.79591837, 0. ],\n", + " [ 83.59183673, 0. ],\n", + " [ 125.3877551 , 0. ],\n", + " [ 167.18367347, 0. ],\n", + " [ 208.97959184, 0. ],\n", + " [ 250.7755102 , 0. ],\n", + " [ 292.57142857, 0. ],\n", + " [ 334.36734694, 0. ],\n", + " [ 376.16326531, 0. ],\n", + " [ 417.95918367, 0. ],\n", + " [ 459.75510204, 0. ],\n", + " [ 501.55102041, 0. ],\n", + " [ 543.34693878, 0. ],\n", + " [ 585.14285714, 0. ],\n", + " [ 626.93877551, 0. ],\n", + " [ 668.73469388, 0. ],\n", + " [ 710.53061224, 0. ],\n", + " [ 752.32653061, 0. ],\n", + " [ 794.12244898, 0. ],\n", + " [ 835.91836735, 0. ],\n", + " [ 877.71428571, 0. ],\n", + " [ 919.51020408, 0. ],\n", + " [ 961.30612245, 0. ],\n", + " [1003.10204082, 0. ],\n", + " [1044.89795918, 0. ],\n", + " [1086.69387755, 0. ],\n", + " [1128.48979592, 0. ],\n", + " [1170.28571429, 0. ],\n", + " [1212.08163265, 0. ],\n", + " [1253.87755102, 0. ],\n", + " [1295.67346939, 0. ],\n", + " [1337.46938776, 0. ],\n", + " [1379.26530612, 0. ],\n", + " [1421.06122449, 0. ],\n", + " [1462.85714286, 0. ],\n", + " [1504.65306122, 0. ],\n", + " [1546.44897959, 0. ],\n", + " [1588.24489796, 0. ],\n", + " [1630.04081633, 0. ],\n", + " [1671.83673469, 0. ],\n", + " [1713.63265306, 0. ],\n", + " [1755.42857143, 0. ],\n", + " [1797.2244898 , 0. ],\n", + " [1839.02040816, 0. ],\n", + " [1880.81632653, 0. ],\n", + " [1922.6122449 , 0. ],\n", + " [1964.40816327, 0. ],\n", + " [2006.20408163, 0. ],\n", + " [2048. , 0. ],\n", + " [ 0. , 2048. ],\n", + " [ 41.79591837, 2048. ],\n", + " [ 83.59183673, 2048. ],\n", + " [ 125.3877551 , 2048. ],\n", + " [ 167.18367347, 2048. ],\n", + " [ 208.97959184, 2048. ],\n", + " [ 250.7755102 , 2048. ],\n", + " [ 292.57142857, 2048. ],\n", + " [ 334.36734694, 2048. ],\n", + " [ 376.16326531, 2048. ],\n", + " [ 417.95918367, 2048. ],\n", + " [ 459.75510204, 2048. ],\n", + " [ 501.55102041, 2048. ],\n", + " [ 543.34693878, 2048. ],\n", + " [ 585.14285714, 2048. ],\n", + " [ 626.93877551, 2048. ],\n", + " [ 668.73469388, 2048. ],\n", + " [ 710.53061224, 2048. ],\n", + " [ 752.32653061, 2048. ],\n", + " [ 794.12244898, 2048. ],\n", + " [ 835.91836735, 2048. ],\n", + " [ 877.71428571, 2048. ],\n", + " [ 919.51020408, 2048. ],\n", + " [ 961.30612245, 2048. ],\n", + " [1003.10204082, 2048. ],\n", + " [1044.89795918, 2048. ],\n", + " [1086.69387755, 2048. ],\n", + " [1128.48979592, 2048. ],\n", + " [1170.28571429, 2048. ],\n", + " [1212.08163265, 2048. ],\n", + " [1253.87755102, 2048. ],\n", + " [1295.67346939, 2048. ],\n", + " [1337.46938776, 2048. ],\n", + " [1379.26530612, 2048. ],\n", + " [1421.06122449, 2048. ],\n", + " [1462.85714286, 2048. ],\n", + " [1504.65306122, 2048. ],\n", + " [1546.44897959, 2048. ],\n", + " [1588.24489796, 2048. ],\n", + " [1630.04081633, 2048. ],\n", + " [1671.83673469, 2048. ],\n", + " [1713.63265306, 2048. ],\n", + " [1755.42857143, 2048. ],\n", + " [1797.2244898 , 2048. ],\n", + " [1839.02040816, 2048. ],\n", + " [1880.81632653, 2048. ],\n", + " [1922.6122449 , 2048. ],\n", + " [1964.40816327, 2048. ],\n", + " [2006.20408163, 2048. ],\n", + " [2048. , 2048. ],\n", + " [2048. , 0. ],\n", + " [2048. , 41.79591837],\n", + " [2048. , 83.59183673],\n", + " [2048. , 125.3877551 ],\n", + " [2048. , 167.18367347],\n", + " [2048. , 208.97959184],\n", + " [2048. , 250.7755102 ],\n", + " [2048. , 292.57142857],\n", + " [2048. , 334.36734694],\n", + " [2048. , 376.16326531],\n", + " [2048. , 417.95918367],\n", + " [2048. , 459.75510204],\n", + " [2048. , 501.55102041],\n", + " [2048. , 543.34693878],\n", + " [2048. , 585.14285714],\n", + " [2048. , 626.93877551],\n", + " [2048. , 668.73469388],\n", + " [2048. , 710.53061224],\n", + " [2048. , 752.32653061],\n", + " [2048. , 794.12244898],\n", + " [2048. , 835.91836735],\n", + " [2048. , 877.71428571],\n", + " [2048. , 919.51020408],\n", + " [2048. , 961.30612245],\n", + " [2048. , 1003.10204082],\n", + " [2048. , 1044.89795918],\n", + " [2048. , 1086.69387755],\n", + " [2048. , 1128.48979592],\n", + " [2048. , 1170.28571429],\n", + " [2048. , 1212.08163265],\n", + " [2048. , 1253.87755102],\n", + " [2048. , 1295.67346939],\n", + " [2048. , 1337.46938776],\n", + " [2048. , 1379.26530612],\n", + " [2048. , 1421.06122449],\n", + " [2048. , 1462.85714286],\n", + " [2048. , 1504.65306122],\n", + " [2048. , 1546.44897959],\n", + " [2048. , 1588.24489796],\n", + " [2048. , 1630.04081633],\n", + " [2048. , 1671.83673469],\n", + " [2048. , 1713.63265306],\n", + " [2048. , 1755.42857143],\n", + " [2048. , 1797.2244898 ],\n", + " [2048. , 1839.02040816],\n", + " [2048. , 1880.81632653],\n", + " [2048. , 1922.6122449 ],\n", + " [2048. , 1964.40816327],\n", + " [2048. , 2006.20408163],\n", + " [2048. , 2048. ]])" + ] + }, + "execution_count": 24, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "footprint()" + ] + }, + { + "cell_type": "code", + "execution_count": 25, + "id": "f1f1605a", + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "152 1.8881553619509694 0.950485398872388 1.6314742343643047 [2048. 83.59183673]\n" + ] + } + ], + "source": [ + "index_max=np.argmax(footie_diff)\n", + "print(index_max, footie_diff[index_max],dx[index_max], dy[index_max], footie[index_max,:])\n", + "target3=footprint_pix[0][index_max,:]" + ] + }, + { + "cell_type": "code", + "execution_count": 28, + "id": "617d3066", + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "2092 84.59183673\n" + ] + } + ], + "source": [ + "#But, tesspoint assumes indexed from 44,1 not 0,0 so \n", + "print(2048 + 44, 83.59183673 + 1)" + ] + }, + { + "cell_type": "code", + "execution_count": 29, + "id": "77da4d49", + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "329.56145569137414 -44.09452892451292\n", + " " + ] + } + ], + "source": [ + "%run -p -i tess_stars2px_debug.py -r 1 1 1 2092 84.59183673" + ] + }, + { + "cell_type": "code", + "execution_count": 37, + "id": "e47d93c5", + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "# TIC | RA | Dec | EclipticLong | EclipticLat | Sector | Camera | Ccd | ColPix | RowPix | EdgeWarn\n", + "optics_fp: cphi: -0.028387287886555413\n", + "optics_fp: sphi: -0.9995969997386176\n", + "optics_fp: rfp0*rfp: 30.312749732745203\n", + "optics_fp: xytmp: [ 0.86049675 30.30053369]\n", + "optics_fp: xytmp shape: (2,)\n", + "radec2pix: curVec: [ 0.61920643 -0.36384642 -0.69584422] i: 0\n", + "radec2pix: camVec: [-0.00571376 -0.20119777 0.97953398] i: 0 j:0\n", + "radec2pix: lng: 268.3733096875324\n", + "radec2pix: lat: 78.38824516040944\n", + "radec2pix: xyfp: [ 0.86049675 30.30053369]\n", + "radec2pix: fitsxpos: [2180.]\n", + "radec2pix: fitsypos: [4071.40816319]\n", + "radec2pix: ccdxpos: [2047.]\n", + "radec2pix: ccdypos: [83.59183681]\n", + "optics_fp: cphi: -0.0344382878427335\n", + "optics_fp: sphi: 0.9994068262376744\n", + "optics_fp: rfp0*rfp: 32.506932340715856\n", + "optics_fp: xytmp: [ 1.11948309 -32.48765008]\n", + "optics_fp: xytmp shape: (2,)\n", + "radec2pix: curVec: [ 0.61920643 -0.36384642 -0.69584422] i: 0\n", + "radec2pix: camVec: [-0.00739694 0.21466073 0.97666067] i: 0 j:1\n", + "radec2pix: lng: 91.97355878357504\n", + "radec2pix: lat: 77.59690209046269\n", + "radec2pix: xyfp: [ 1.11948309 -32.48765008]\n", + "radec2pix: fitsxpos: [2180. 2192.62667958]\n", + "radec2pix: fitsypos: [4071.40816319 -62.52193149]\n", + "radec2pix: ccdxpos: [2047. 12.62667958]\n", + "radec2pix: ccdypos: [ 83.59183681 -62.52193149]\n", + "000000000 | 329.561456 | -44.094529 | 315.396461 | -29.583732 | 1 | 1 | 1 | 2092.000000 | 84.591837 | 1\n", + " " + ] + } + ], + "source": [ + "%run -p -i tess_stars2px_debug.py -t 0 -s 1 -c 329.56145569137414 -44.09452892451292" + ] + }, + { + "cell_type": "code", + "execution_count": 31, + "id": "04017ee9", + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "0 2.700000010236181e-07\n" + ] + } + ], + "source": [ + "print(2092 - 2092 , 84.591837 - 84.59183673)" + ] + }, + { + "cell_type": "markdown", + "id": "73b403e4", + "metadata": {}, + "source": [ + "# OK, so this is maybe convinving-ish that the issue lies in the tesspoint vectorized pixel->radec" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "241bb005", + "metadata": {}, + "outputs": [], + "source": [] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "16ee14f8", + "metadata": {}, + "outputs": [], + "source": [] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "9384038a", + "metadata": {}, + "outputs": [], + "source": [] + } + ], + "metadata": { + "kernelspec": { + "display_name": "Python 3 (ipykernel)", + "language": "python", + "name": "python3" + }, + "language_info": { + "codemirror_mode": { + "name": "ipython", + "version": 3 + }, + "file_extension": ".py", + "mimetype": "text/x-python", + "name": "python", + "nbconvert_exporter": "python", + "pygments_lexer": "ipython3", + "version": "3.10.6" + }, + "vscode": { + "interpreter": { + "hash": "c4b79a710b4d4e90cf4937eaf0c1e034c60afc046e8f58b7cec2a43c8805dd76" + } + } + }, + "nbformat": 4, + "nbformat_minor": 5 +} diff --git a/src/tess_stars2px_debug.py b/src/tess_stars2px_debug.py new file mode 100644 index 0000000..36391ec --- /dev/null +++ b/src/tess_stars2px_debug.py @@ -0,0 +1,1468 @@ + +""" +tess_stars2px.py - High precision TESS pointing tool. +Convert target coordinates given in Right Ascension and Declination to +TESS detector pixel coordinates for the prime mission TESS observing +sectors (Year 1 & 2), Extendend mission Years 3-5. +Can also query MAST to obtain detector +pixel coordinates for a star by TIC ID or common star name (must be online for this option). + +USAGE to display command line arguments: +python tess_stars2px.py -h + +AUTHORS: Original programming in C and focal plane geometry solutions + by Alan Levine (MIT) + This python translation by Christopher J. Burke (MIT) + Testing and focal plane geometry refinements by Michael Fausnaugh & + Roland Vanderspek (MIT) + Testing by Thomas Barclay (NASA Goddard) & + Jessica Roberts (Univ. of Colorado) + Sesame queries by Brett Morris (UW) + Proxy Support added by Dishendra Mishra + Deprecation warnings correctsion by Ethan Kruse + +VERSION: 0.7.1 + +WHAT'S NEW: + -Deprecation Warning Corrections + -Year 5 pointings (Sectors 56-69) now available + -Added Sector Pointing override file input + Supports mission planning as well as enabling the user + to speed up the calculation by only searching a subset of all sectors + -Bug correction for aberration. Only impacts if you were using + aberration flag (-a) WITHOUT the single sector flag (-s). In other words, + does not affect users that did not use --aberrate or -aberrate with -s + +NOTES: + -Pointing table is for TESS Year 1 - 5 (Sectors 1-69) + -Pointing table is unofficial, and the pointings may change. + -See https://tess.mit.edu/observations/ for latest TESS pointing table + -Pointing prediction algorithm is similar to internally at MIT for + target management. However, hard coded focal plane geometry is not + up to date and may contain inaccurate results. + -Testing shows pointing with this tool should be accurate to better than + a pixel, but without including aberration effects, ones algorithm + adopted for centroiding highly assymmetric point-spread function + at edge of + camera, and by-eye source location, a 2 pixel accuracy estimate is + warranted. There is an approximate aberration option now available + -The output pixel coordinates assume the ds9 convention with + 1,1 being the middle of the lower left corner pixel. + -No corrections for velocity aberration are calculated by default. + Potentially more accurate + results can be obtained if the target RA and Declination coordinates + have aberration effects applied. An aberration approximation is available + by using the -a flag. The aberration approximation assumes Earth motion without + taking into account the TESS spacecraft motion around Earth. + -For proposals to the TESS science office or directors discretionary time, + please consult the TESS prediction webtool available at + https://heasarc.gsfc.nasa.gov/cgi-bin/tess/webtess/wtv.py + for official identification of 'observable' targets. However, + if your proposal depends on a single or few targets, then this tool is + helpful to further refine the likelihood of the target being available + on the detectors. + -The calibrated FFI fits file release at MAST and calibrated by + NASA Ames SPOC will have WCS information available to + supplant this code. The WCS generation is independent of the + focal plane geometry model employed in this code and will give + different results at the pixel level. However, the WCS information + is not available until the FFI files are released, whereas + this code can predict positions in advance of data release. + -Hard coded focal plane geometry parameters from rfpg5_c1kb.txt + + +TODOS: + -Time dependent Focal plane geometry + +DEPENDENCIES: + python 3+ + astropy + numpy + +SPECIAL THANKS TO: + Includes code from the python MAST query examples + https://mast.stsci.edu/api/v0/pyex.html + +IMPLEMENTATION DETAILS: + In summary, the code begins with a space craft bore site pointing in RA, + Dec, and roll angle. A series of Euler angle translation matrices + are calculated based upon the space craft bore site. Next the target + coordinates in RA and Dec are translated to the space craft bore site + frame. Next, the target coordinates are translated to each of the four + TESS camera frames. Once target coordinates are translated to the + camera frame the radial position of the target relative to the camera + center is checked to see if it is potentially in the camera field of view. + If so, the focal plane position is calculated using a radial polynomial + model with a constant term and terms the even powers (2nd ,4th , and 8th). + Rotations are applied to convert the on sky positions to the detector + readout directions. + +MIT License +Copyright (c) 2018 Christopher J Burke + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. +""" + +import numpy as np +import os +import argparse +from astropy.coordinates import SkyCoord +import astropy.units as u +from astropy.time import Time +import sys +import datetime +import json +try: # Python 3.x + from urllib.parse import quote as urlencode + from urllib.request import urlretrieve + from urllib.parse import urlparse +except ImportError: # Python 2.x + from urllib import pathname2url as urlencode + from urllib import urlretrieve + from urlparse import urlparse +try: # Python 3.x + import http.client as httplib +except ImportError: # Python 2.x + import httplib +import scipy.optimize as opt +import base64 + + +class Levine_FPG(): + """Al Levine Focal Plane Geometry Methods + Translated from starspx6.c + INPUT: + sc_ra_dec_roll = numpy array of the SpaceCraft boresite (sc Z-axis) + ra, dec, and roll [deg] + The roll angle is in RA, Dec space clockwise relative to the celestial + pole. roll angle = 0 [deg] implies space craft X-axis points N celestial (increasing dec) + roll angle = 90 [deg] implies sc X-axis points towards increasing/decreasing (?) RA + *** In practice there is a separate fpg file for each of the four cameras *** + rmat1[3,3] = is the rotation matrix from ra&dec to spacecraft boresite coords + rmat4[NCAM,3,3] - is the rotation matrix from ra&dec to NCAM coords + """ + parm_dict_list = [{}, {}, {}, {}] + NCAM = 4 # Number of Cameras + NCCD = 4 # Number of CCDs per Camera + + def __init__(self, sc_ra_dec_roll=None, fpg_file_list=None): + self.eulcam = np.zeros((self.NCAM,3), dtype=np.double) + self.optcon = np.zeros((self.NCAM,6), dtype=np.double) + self.ccdxy0 = np.zeros((self.NCAM, self.NCCD, 2), dtype=np.double) + self.pixsz = np.zeros((self.NCAM, self.NCCD, 2), dtype=np.double) + self.ccdang = np.zeros((self.NCAM, self.NCCD), dtype=np.double) + self.ccdtilt = np.zeros((self.NCAM, self.NCCD, 2), dtype=np.double) + self.asymang = np.zeros((self.NCAM,), dtype=np.double) + self.asymfac = np.zeros((self.NCAM,), dtype=np.double) + self.rmat1 = np.zeros((3,3), dtype=np.double) + self.rmat4 = np.zeros((self.NCAM,3,3), dtype=np.double) + self.havePointing = False + # Read in the fpg parameter files + self.read_all_levine_fpg_files(fpg_file_list) + # Generate rotation matrices if ra dec and roll values given + if not sc_ra_dec_roll is None: + # go from sky to spacecraft + self.sky_to_sc_mat(sc_ra_dec_roll) + # Go from spacecraft to each camera's coords + for icam in range(self.NCAM): + cureul = self.eulcam[icam,:] + rmat2 = self.sc_to_cam_mat(cureul) + self.rmat4[icam] = np.matmul(rmat2, self.rmat1) + self.havePointing = True + + def read_all_levine_fpg_files(self, fpg_file_list=None): + default_fpg_file_list = ['fpg_pars.txt-', \ + 'fpg_pars.txt-', \ + 'fpg_pars.txt-', \ + 'fpg_pars.txt-'] + # For each camera read in the separate fpg parameter file + for icam in range(self.NCAM): + if fpg_file_list == None: + fpg_file = default_fpg_file_list[icam] + else: + fpg_file = fpg_file_list[icam] + self.read_levine_fpg_file(icam, fpg_file) + # We now have parameters for all 4 cameras in the parm_dict_list + # parse the dictionary values into the working numpy arrays + for icam in range(self.NCAM): + pd = self.parm_dict_list[icam] + self.eulcam[icam][0] = pd['ang1_cam1'] + self.eulcam[icam][1] = pd['ang2_cam1'] + self.eulcam[icam][2] = pd['ang3_cam1'] + self.optcon[icam][0] = pd['fl_cam1'] + self.optcon[icam][1] = pd['opt_coef1_cam1'] + self.optcon[icam][2] = pd['opt_coef2_cam1'] + self.optcon[icam][3] = pd['opt_coef3_cam1'] + self.optcon[icam][4] = pd['opt_coef4_cam1'] + self.optcon[icam][5] = pd['opt_coef5_cam1'] + self.asymang[icam] = pd['asymang_cam1'] + self.asymfac[icam] = pd['asymfac_cam1'] + for iccd in range(self.NCCD): + self.ccdxy0[icam][iccd][0] = pd['x0_ccd{0:1d}_cam1'.format(iccd+1)] + self.ccdxy0[icam][iccd][1] = pd['y0_ccd{0:1d}_cam1'.format(iccd+1)] + self.pixsz[icam][iccd][0] = pd['pix_x_ccd{0:1d}_cam1'.format(iccd+1)] + self.pixsz[icam][iccd][1] = pd['pix_y_ccd{0:1d}_cam1'.format(iccd+1)] + self.ccdang[icam][iccd] = pd['ang_ccd{0:1d}_cam1'.format(iccd+1)] + self.ccdtilt[icam][iccd][0] = pd['tilt_x_ccd{0:1d}_cam1'.format(iccd+1)] + self.ccdtilt[icam][iccd][1] = pd['tilt_y_ccd{0:1d}_cam1'.format(iccd+1)] + + + def read_levine_fpg_file(self, icam, fpg_file): + gotParm = False + parm_dict = {} + if os.path.isfile(fpg_file): + try: + fpin = open(fpg_file, 'r') + # Read in parameters + dtypeseq = ['U20','i4','f16'] + dataBlock = np.genfromtxt(fpin, dtype=dtypeseq) + parm_keys = dataBlock['f0'] + parm_fitted_flags = dataBlock['f1'] + parm_values = dataBlock['f2'] + # Now build dictionary of the parameters + for i in range(len(parm_keys)): + parm_dict[parm_keys[i]] = parm_values[i] + self.parm_dict_list[icam] = parm_dict + gotParm = True + print('Successful Focal Plane Geometry Read From {0}'.format(fpg_file)) + except: + print('Could not open {0}! Using Hard-coded Focal Plane Geometry from Levine_FPG read_levine_fpg_file()'.format(fpg_file)) + # If anything goes wrong with reading in parameters revert to hard coded version + # or file was never given and default_fpg_file does not exist + if not gotParm: + #print('Using Hard-coded Focal Plane Geometry from Levine_FPG read_levine_fpg_file') + # *** For now this hard code is just a filler need to actually fill in values for all cameras separately + # to prepare parameters for dictionary + # awk -v q="'" -v d=":" '{print q $1 q d $3 ",\"}' rfpg5_c1kb.txt + if icam == 0: + parm_dict = {'ang1_cam1' : 0.101588, \ + 'ang2_cam1' : -36.022035, \ + 'ang3_cam1' : 90.048315, \ + 'fl_cam1' : 145.948116, \ + 'opt_coef1_cam1' : 1.00000140, \ + 'opt_coef2_cam1' : 0.24779006, \ + 'opt_coef3_cam1' : -0.22681254, \ + 'opt_coef4_cam1' : 10.78243356, \ + 'opt_coef5_cam1' : -34.97817276, \ + 'asymang_cam1' : 0.00000000, \ + 'asymfac_cam1' : 1.00000000, \ + 'x0_ccd1_cam1' : 31.573417, \ + 'y0_ccd1_cam1' : 31.551637, \ + 'pix_x_ccd1_cam1' : 0.015000, \ + 'pix_y_ccd1_cam1' : 0.015000, \ + 'ang_ccd1_cam1' : 179.980833, \ + 'tilt_x_ccd1_cam1' : 0.000000, \ + 'tilt_y_ccd1_cam1' : 0.000000, \ + 'x0_ccd2_cam1' : -0.906060, \ + 'y0_ccd2_cam1' : 31.536148, \ + 'pix_x_ccd2_cam1' : 0.015000, \ + 'pix_y_ccd2_cam1' : 0.015000, \ + 'ang_ccd2_cam1' : 180.000000, \ + 'tilt_x_ccd2_cam1' : 0.000000, \ + 'tilt_y_ccd2_cam1' : 0.000000, \ + 'x0_ccd3_cam1' : -31.652818, \ + 'y0_ccd3_cam1' : -31.438350, \ + 'pix_x_ccd3_cam1' : 0.015000, \ + 'pix_y_ccd3_cam1' : 0.015000, \ + 'ang_ccd3_cam1' : -0.024851, \ + 'tilt_x_ccd3_cam1' : 0.000000, \ + 'tilt_y_ccd3_cam1' : 0.000000, \ + 'x0_ccd4_cam1' : 0.833161, \ + 'y0_ccd4_cam1' : -31.458180, \ + 'pix_x_ccd4_cam1' : 0.015000, \ + 'pix_y_ccd4_cam1' : 0.015000, \ + 'ang_ccd4_cam1' : 0.001488, \ + 'tilt_x_ccd4_cam1' : 0.000000, \ + 'tilt_y_ccd4_cam1' : 0.000000} + + + if icam == 1: + parm_dict = {'ang1_cam1':-0.179412,\ + 'ang2_cam1':-12.017260,\ + 'ang3_cam1':90.046500,\ + 'fl_cam1':145.989933,\ + 'opt_coef1_cam1':1.00000140,\ + 'opt_coef2_cam1':0.24069345,\ + 'opt_coef3_cam1':0.15391120,\ + 'opt_coef4_cam1':4.05433503,\ + 'opt_coef5_cam1':3.43136895,\ + 'asymang_cam1':0.00000000,\ + 'asymfac_cam1':1.00000000,\ + 'x0_ccd1_cam1':31.653635,\ + 'y0_ccd1_cam1':31.470291,\ + 'pix_x_ccd1_cam1':0.015000,\ + 'pix_y_ccd1_cam1':0.015000,\ + 'ang_ccd1_cam1':180.010890,\ + 'tilt_x_ccd1_cam1':0.000000,\ + 'tilt_y_ccd1_cam1':0.000000,\ + 'x0_ccd2_cam1':-0.827405,\ + 'y0_ccd2_cam1':31.491388,\ + 'pix_x_ccd2_cam1':0.015000,\ + 'pix_y_ccd2_cam1':0.015000,\ + 'ang_ccd2_cam1':180.000000,\ + 'tilt_x_ccd2_cam1':0.000000,\ + 'tilt_y_ccd2_cam1':0.000000,\ + 'x0_ccd3_cam1':-31.543794,\ + 'y0_ccd3_cam1':-31.550699,\ + 'pix_x_ccd3_cam1':0.015000,\ + 'pix_y_ccd3_cam1':0.015000,\ + 'ang_ccd3_cam1':-0.006624,\ + 'tilt_x_ccd3_cam1':0.000000,\ + 'tilt_y_ccd3_cam1':0.000000,\ + 'x0_ccd4_cam1':0.922834,\ + 'y0_ccd4_cam1':-31.557268,\ + 'pix_x_ccd4_cam1':0.015000,\ + 'pix_y_ccd4_cam1':0.015000,\ + 'ang_ccd4_cam1':-0.015464,\ + 'tilt_x_ccd4_cam1':0.000000,\ + 'tilt_y_ccd4_cam1':0.000000} + + if icam == 2: + parm_dict = {'ang1_cam1':0.066596,\ + 'ang2_cam1':12.007750,\ + 'ang3_cam1':-89.889085,\ + 'fl_cam1':146.006602,\ + 'opt_coef1_cam1':1.00000140,\ + 'opt_coef2_cam1':0.23452229,\ + 'opt_coef3_cam1':0.33552009,\ + 'opt_coef4_cam1':1.92009863,\ + 'opt_coef5_cam1':12.48880182,\ + 'asymang_cam1':0.00000000,\ + 'asymfac_cam1':1.00000000,\ + 'x0_ccd1_cam1':31.615486,\ + 'y0_ccd1_cam1':31.413644,\ + 'pix_x_ccd1_cam1':0.015000,\ + 'pix_y_ccd1_cam1':0.015000,\ + 'ang_ccd1_cam1':179.993948,\ + 'tilt_x_ccd1_cam1':0.000000,\ + 'tilt_y_ccd1_cam1':0.000000,\ + 'x0_ccd2_cam1':-0.832993,\ + 'y0_ccd2_cam1':31.426621,\ + 'pix_x_ccd2_cam1':0.015000,\ + 'pix_y_ccd2_cam1':0.015000,\ + 'ang_ccd2_cam1':180.000000,\ + 'tilt_x_ccd2_cam1':0.000000,\ + 'tilt_y_ccd2_cam1':0.000000,\ + 'x0_ccd3_cam1':-31.548296,\ + 'y0_ccd3_cam1':-31.606976,\ + 'pix_x_ccd3_cam1':0.015000,\ + 'pix_y_ccd3_cam1':0.015000,\ + 'ang_ccd3_cam1':0.000298,\ + 'tilt_x_ccd3_cam1':0.000000,\ + 'tilt_y_ccd3_cam1':0.000000,\ + 'x0_ccd4_cam1':0.896018,\ + 'y0_ccd4_cam1':-31.569542,\ + 'pix_x_ccd4_cam1':0.015000,\ + 'pix_y_ccd4_cam1':0.015000,\ + 'ang_ccd4_cam1':-0.006464,\ + 'tilt_x_ccd4_cam1':0.000000,\ + 'tilt_y_ccd4_cam1':0.000000} + + if icam == 3: + parm_dict = {'ang1_cam1':0.030756,\ + 'ang2_cam1':35.978116,\ + 'ang3_cam1':-89.976802,\ + 'fl_cam1':146.039793,\ + 'opt_coef1_cam1':1.00000140,\ + 'opt_coef2_cam1':0.23920416,\ + 'opt_coef3_cam1':0.13349450,\ + 'opt_coef4_cam1':4.77768896,\ + 'opt_coef5_cam1':-1.75114744,\ + 'asymang_cam1':0.00000000,\ + 'asymfac_cam1':1.00000000,\ + 'x0_ccd1_cam1':31.575820,\ + 'y0_ccd1_cam1':31.316510,\ + 'pix_x_ccd1_cam1':0.015000,\ + 'pix_y_ccd1_cam1':0.015000,\ + 'ang_ccd1_cam1':179.968217,\ + 'tilt_x_ccd1_cam1':0.000000,\ + 'tilt_y_ccd1_cam1':0.000000,\ + 'x0_ccd2_cam1':-0.890877,\ + 'y0_ccd2_cam1':31.363511,\ + 'pix_x_ccd2_cam1':0.015000,\ + 'pix_y_ccd2_cam1':0.015000,\ + 'ang_ccd2_cam1':180.000000,\ + 'tilt_x_ccd2_cam1':0.000000,\ + 'tilt_y_ccd2_cam1':0.000000,\ + 'x0_ccd3_cam1':-31.630470,\ + 'y0_ccd3_cam1':-31.716942,\ + 'pix_x_ccd3_cam1':0.015000,\ + 'pix_y_ccd3_cam1':0.015000,\ + 'ang_ccd3_cam1':-0.024359,\ + 'tilt_x_ccd3_cam1':0.000000,\ + 'tilt_y_ccd3_cam1':0.000000,\ + 'x0_ccd4_cam1':0.824159,\ + 'y0_ccd4_cam1':-31.728751,\ + 'pix_x_ccd4_cam1':0.015000,\ + 'pix_y_ccd4_cam1':0.015000,\ + 'ang_ccd4_cam1':-0.024280,\ + 'tilt_x_ccd4_cam1':0.000000,\ + 'tilt_y_ccd4_cam1':0.000000} + + self.parm_dict_list[icam] = parm_dict + + def sky_to_sc_mat(self, sc_ra_dec_roll): + """Calculate the rotation matrix that will convert a vector in ra&dec + into the spacecraft boresite frame + """ + deg2rad = np.pi / 180.0 + # Define the 3 euler angles of rotation + xeul = np.zeros((3,), dtype=np.double) + xeul[0] = deg2rad * sc_ra_dec_roll[0] + xeul[1] = np.pi/2.0 - deg2rad*sc_ra_dec_roll[1] + xeul[2] = deg2rad * sc_ra_dec_roll[2] + np.pi + # Generate the rotation matrix from the 3 euler angles + self.rmat1 = self.eulerm323(xeul) + + def sc_to_cam_mat(self, eul): + """Calculate the rotation matrix that will convert a vector in spacecraft + into the a camera's coords + """ + deg2rad = np.pi / 180.0 + # Generate the rotation matrix from the 3 euler angles + xeul = deg2rad * eul + return self.eulerm323(xeul) + + def eulerm323(self, eul): + mat1 = self.rotm1(2, eul[0]) + mat2 = self.rotm1(1, eul[1]) + mata = np.matmul(mat2, mat1) + mat1 = self.rotm1(2, eul[2]) + rmat = np.matmul(mat1, mata) + return rmat + + def rotm1(self, ax, ang): + mat = np.zeros((3,3), dtype=np.double) + n1 = ax + n2 = np.mod((n1+1), 3) + n3 = np.mod((n2+1), 3) + sinang = np.sin(ang) + cosang = np.cos(ang) + mat[n1][n1] = 1.0 + mat[n2][n2] = cosang + mat[n3][n3] = cosang + mat[n2][n3] = sinang + mat[n3][n2] = -sinang + return mat + + def sphereToCart(self, ras, decs): + """ Convert 3d spherical coordinates to cartesian + """ + deg2rad = np.pi / 180.0 + rarads = deg2rad * ras + decrads = deg2rad * decs + sinras = np.sin(rarads) + cosras = np.cos(rarads) + sindecs = np.sin(decrads) + cosdecs = np.cos(decrads) + vec0s = cosras * cosdecs + vec1s = sinras * cosdecs + vec2s = sindecs + return vec0s, vec1s, vec2s + + def cartToSphere(self, vec): + ra = 0.0 + dec = 0.0 + norm = np.sqrt(np.sum(vec*vec)) + if (norm > 0.0): + dec = np.arcsin(vec[2] / norm) + if (not vec[0] == 0.0) or (not vec[1] == 0.0): + ra = np.arctan2(vec[1], vec[0]) + ra = np.mod(ra, 2.0*np.pi) + return ra, dec + + def star_in_fov(self, lng, lat): + deg2rad = np.pi / 180.0 + inView = False + if lat > 70.0: + vec0, vec1, vec2 = self.sphereToCart(lng, lat) + vec = np.array([vec0, vec1, vec2], dtype=np.double) + norm = np.sqrt(np.sum(vec*vec)) + if norm > 0.0: + vec = vec / norm + xlen = np.abs(np.arctan(vec[0]/vec[2])) + ylen = np.abs(np.arctan(vec[1]/vec[2])) + if (xlen <= (12.5 * deg2rad)) and (ylen <= (12.5 * deg2rad)): + inView = True + return inView + + def optics_fp(self, icam, lng_deg, lat_deg): + deg2rad = np.pi / 180.0 + thetar = np.pi / 2.0 - (lat_deg * deg2rad) + tanth = np.tan(thetar) + cphi = np.cos(deg2rad*lng_deg) + sphi = np.sin(deg2rad*lng_deg) + print("DEBUG: optics_fp: cphi: {0}".format(cphi)) + print("DEBUG: optics_fp: sphi: {0}".format(sphi)) + rfp0 = self.optcon[icam][0]*tanth + noptcon = len(self.optcon[icam]) + ii = np.arange(1, noptcon) + rfp = np.sum(self.optcon[icam][1:] * np.power(tanth, 2.0*(ii-1))) + print("DEBUG: optics_fp: rfp0*rfp: {0}".format(rfp0*rfp)) + + + xytmp = np.zeros((2,), dtype=np.double) + xytmp[0] = -cphi*rfp0*rfp + xytmp[1] = -sphi*rfp0*rfp + print("DEBUG: optics_fp: xytmp: {0}".format(xytmp)) + print("DEBUG: optics_fp: xytmp shape: {0}".format(xytmp.shape)) + return self.make_az_asym(icam, xytmp) + + def fp_optics(self, icam, xyfp): + deg2rad = np.pi/ 180.0 + xy = self.rev_az_asym(icam, xyfp) + rfp_times_rfp0 = np.sqrt(xy[0]*xy[0] + xy[1]*xy[1]) + phirad = np.arctan2(-xy[1], -xy[0]) + phideg = phirad / deg2rad + if (phideg < 0.0): + phideg += 360.0 + thetarad = self.tanth_of_r(icam, rfp_times_rfp0) + thetadeg = thetarad / deg2rad + lng_deg = phideg + lat_deg = 90.0 - thetadeg + return lng_deg, lat_deg + + def r_of_tanth(self, icam, z): + tanth = np.tan(z) + rfp0 = self.optcon[icam][0]*tanth + noptcon = len(self.optcon[icam]) + ii = np.arange(1, noptcon) + rfp = np.sum(self.optcon[icam][1:] * np.power(tanth, 2.0*(ii-1))) + return rfp0*rfp + + def tanth_of_r(self, icam, rprp0): + + if np.abs(rprp0) > 1.0e-10: + c0 = self.optcon[icam][0] + zi = np.arctan(np.sqrt(rprp0) / c0) + def minFunc(z, icam, rp): + rtmp = self.r_of_tanth(icam, z) + return (rtmp - rprp0)*(rtmp - rprp0) + + optResult = opt.minimize(minFunc, [zi], \ + args=(icam, rprp0), method='Nelder-Mead', \ + tol=1.0e-10, \ + options={'maxiter':500}) + #print(optResult) + return optResult.x[0] + else: + return 0.0 + + def make_az_asym(self, icam, xy): + xyp = self.xyrotate(self.asymang[icam], xy) + xypa = np.zeros_like(xyp) + xypa[0] = self.asymfac[icam] * xyp[0] + xypa[1] = xyp[1] + xyout = self.xyrotate(-self.asymang[icam], xypa) + return xyout + + def rev_az_asym(self, icam, xyin): + xyp = self.xyrotate(self.asymang[icam], xyin) + xypa = np.zeros_like(xyp) + xypa[0] = xyp[0] / self.asymfac[icam] + xypa[1] = xyp[1] + xyout = self.xyrotate(-self.asymang[icam], xypa) + return xyout + + def xyrotate(self, angle_deg, xin): + deg2rad = np.pi / 180.0 + ca = np.cos(deg2rad * angle_deg) + sa = np.sin(deg2rad * angle_deg) + xyout = np.zeros_like(xin) + xyout[0] = ca*xin[0] + sa*xin[1] + xyout[1] = -sa*xin[0] + ca*xin[1] + return xyout + + def mm_to_pix(self, icam, xy): + """Convert focal plane to pixel location also need to add in the + auxillary pixels added into FFIs + """ + CCDWD_T=2048 + CCDHT_T=2058 + ROWA=44 + ROWB=44 + COLDK_T=20 + xya = np.copy(xy) + xyb = np.zeros_like(xya) + ccdpx = np.zeros_like(xya) + fitpx = np.zeros_like(xya) + if xya[0] >= 0.0: + if xya[1] >= 0.0: + iccd = 0 + xyb[0] = xya[0] - self.ccdxy0[icam][iccd][0] + xyb[1] = xya[1] - self.ccdxy0[icam][iccd][1] + xyccd = self.xyrotate(self.ccdang[icam][iccd], xyb) + ccdpx[0] = (xyccd[0] / self.pixsz[icam][iccd][0]) - 0.5 + ccdpx[1] = (xyccd[1] / self.pixsz[icam][iccd][1]) - 0.5 + fitpx[0] = (CCDWD_T - ccdpx[0]) + CCDWD_T + 2*ROWA + ROWB - 1.0 + fitpx[1] = (CCDHT_T - ccdpx[1]) + CCDHT_T + 2*COLDK_T - 1.0 + else: + iccd = 3 + xyb[0] = xya[0] - self.ccdxy0[icam][iccd][0] + xyb[1] = xya[1] - self.ccdxy0[icam][iccd][1] + xyccd = self.xyrotate(self.ccdang[icam][iccd], xyb) + ccdpx[0] = (xyccd[0] / self.pixsz[icam][iccd][0]) - 0.5 + ccdpx[1] = (xyccd[1] / self.pixsz[icam][iccd][1]) - 0.5 + fitpx[0] = ccdpx[0] + CCDWD_T + 2*ROWA + ROWB + fitpx[1] = ccdpx[1] + else: + if xya[1] >= 0.0: + iccd = 1 + xyb[0] = xya[0] - self.ccdxy0[icam][iccd][0] + xyb[1] = xya[1] - self.ccdxy0[icam][iccd][1] + xyccd = self.xyrotate(self.ccdang[icam][iccd], xyb) + ccdpx[0] = (xyccd[0] / self.pixsz[icam][iccd][0]) - 0.5 + ccdpx[1] = (xyccd[1] / self.pixsz[icam][iccd][1]) - 0.5 + fitpx[0] = (CCDWD_T - ccdpx[0]) + ROWA - 1.0 + fitpx[1] = (CCDHT_T - ccdpx[1]) + CCDHT_T + 2*COLDK_T - 1.0 + else: + iccd = 2 + xyb[0] = xya[0] - self.ccdxy0[icam][iccd][0] + xyb[1] = xya[1] - self.ccdxy0[icam][iccd][1] + xyccd = self.xyrotate(self.ccdang[icam][iccd], xyb) + ccdpx[0] = (xyccd[0] / self.pixsz[icam][iccd][0]) - 0.5 + ccdpx[1] = (xyccd[1] / self.pixsz[icam][iccd][1]) - 0.5 + fitpx[0] = ccdpx[0] + ROWA + fitpx[1] = ccdpx[1] + + return iccd, ccdpx, fitpx + + def mm_to_pix_single_ccd(self, icam, xy, iccd): + """Convert focal plane to pixel location also need to add in the + auxillary pixels added into FFIs + """ + CCDWD_T=2048 + CCDHT_T=2058 + ROWA=44 + ROWB=44 + COLDK_T=20 + xya = np.copy(xy) + xyb = np.zeros_like(xya) + ccdpx = np.zeros_like(xya) + fitpx = np.zeros_like(xya) + if iccd == 0: + xyb[0] = xya[0] - self.ccdxy0[icam][iccd][0] + xyb[1] = xya[1] - self.ccdxy0[icam][iccd][1] + xyccd = self.xyrotate(self.ccdang[icam][iccd], xyb) + ccdpx[0] = (xyccd[0] / self.pixsz[icam][iccd][0]) - 0.5 + ccdpx[1] = (xyccd[1] / self.pixsz[icam][iccd][1]) - 0.5 + fitpx[0] = (CCDWD_T - ccdpx[0]) + CCDWD_T + 2*ROWA + ROWB - 1.0 + fitpx[1] = (CCDHT_T - ccdpx[1]) + CCDHT_T + 2*COLDK_T - 1.0 + if iccd == 3: + xyb[0] = xya[0] - self.ccdxy0[icam][iccd][0] + xyb[1] = xya[1] - self.ccdxy0[icam][iccd][1] + xyccd = self.xyrotate(self.ccdang[icam][iccd], xyb) + ccdpx[0] = (xyccd[0] / self.pixsz[icam][iccd][0]) - 0.5 + ccdpx[1] = (xyccd[1] / self.pixsz[icam][iccd][1]) - 0.5 + fitpx[0] = ccdpx[0] + CCDWD_T + 2*ROWA + ROWB + fitpx[1] = ccdpx[1] + if iccd == 1: + xyb[0] = xya[0] - self.ccdxy0[icam][iccd][0] + xyb[1] = xya[1] - self.ccdxy0[icam][iccd][1] + xyccd = self.xyrotate(self.ccdang[icam][iccd], xyb) + ccdpx[0] = (xyccd[0] / self.pixsz[icam][iccd][0]) - 0.5 + ccdpx[1] = (xyccd[1] / self.pixsz[icam][iccd][1]) - 0.5 + fitpx[0] = (CCDWD_T - ccdpx[0]) + ROWA - 1.0 + fitpx[1] = (CCDHT_T - ccdpx[1]) + CCDHT_T + 2*COLDK_T - 1.0 + if iccd == 2: + xyb[0] = xya[0] - self.ccdxy0[icam][iccd][0] + xyb[1] = xya[1] - self.ccdxy0[icam][iccd][1] + xyccd = self.xyrotate(self.ccdang[icam][iccd], xyb) + ccdpx[0] = (xyccd[0] / self.pixsz[icam][iccd][0]) - 0.5 + ccdpx[1] = (xyccd[1] / self.pixsz[icam][iccd][1]) - 0.5 + fitpx[0] = ccdpx[0] + ROWA + fitpx[1] = ccdpx[1] + + return ccdpx, fitpx + + def pix_to_mm_single_ccd(self, icam, ccdpx, iccd): + """convert pixel to mm focal plane position + """ + xyccd = np.zeros_like(ccdpx) + xyccd[0] = (ccdpx[0] + 0.5) * self.pixsz[icam][iccd][0] + xyccd[1] = (ccdpx[1] + 0.5) * self.pixsz[icam][iccd][1] + xyb = self.xyrotate(-self.ccdang[icam][iccd], xyccd) + xya = np.zeros_like(xyb) + xya[0] = xyb[0] + self.ccdxy0[icam][iccd][0] + xya[1] = xyb[1] + self.ccdxy0[icam][iccd][1] + + return xya + + def radec2pix(self, ras, decs): + """ After the rotation matrices are defined to the actual + ra and dec to pixel coords mapping + """ + nStar = len(ras) + inCamera = np.array([], dtype=int) + ccdNum = np.array([], dtype=int) + fitsxpos = np.array([], dtype=np.double) + fitsypos = np.array([], dtype=np.double) + ccdxpos = np.array([], dtype=np.double) + ccdypos = np.array([], dtype=np.double) + + deg2rad = np.pi / 180.0 + if self.havePointing == True: + # Convert ra and dec spherical coords to cartesian + vec0s, vec1s, vec2s = self.sphereToCart(ras, decs) + for i in range(nStar): + curVec = np.array([vec0s[i], vec1s[i], vec2s[i]], dtype=np.double) + + # Find the new vector in all cameras + for j in range(self.NCAM): + # Do the rotation from ra dec coords to camera coords + camVec = np.matmul(self.rmat4[j], curVec) + # Get the longitude and latitude of camera coords position + lng, lat = self.cartToSphere(camVec) + lng = lng / deg2rad + lat = lat / deg2rad + if self.star_in_fov(lng, lat): + # Get the xy focal plane position in mm + xyfp = self.optics_fp(j, lng, lat) + # Convert mm to pixels + iccd, ccdpx, fitpx = self.mm_to_pix(j, xyfp) + inCamera = np.append(inCamera, j+1) # Als code is base 0 convert to base 1 + ccdNum = np.append(ccdNum, iccd+1) # "" + fitsxpos = np.append(fitsxpos, fitpx[0]) + fitsypos = np.append(fitsypos, fitpx[1]) + ccdxpos = np.append(ccdxpos, ccdpx[0]) + ccdypos = np.append(ccdypos, ccdpx[1]) + print("DEBUG: radec2pix: curVec: {0} i: {1}".format(curVec, i)) + print("DEBUG: radec2pix: camVec: {0} i: {1} j:{2}".format(camVec,i,j)) + print("DEBUG: radec2pix: lng: {0}".format(lng)) + print("DEBUG: radec2pix: lat: {0}".format(lat)) + print("DEBUG: radec2pix: xyfp: {0}".format(xyfp)) + print("DEBUG: radec2pix: fitsxpos: {0}".format(fitsxpos)) + print("DEBUG: radec2pix: fitsypos: {0}".format(fitsypos)) + print("DEBUG: radec2pix: ccdxpos: {0}".format(ccdxpos)) + print("DEBUG: radec2pix: ccdypos: {0}".format(ccdypos)) + + else: + print('Spacecraft Pointing Not specified!') + + return inCamera, ccdNum, fitsxpos, fitsypos, ccdxpos, ccdypos + + def radec2pix_nocheck_single(self, ras, decs, cam, iccd): + """ + ra and dec to pixel coords mapping + With no checks and assuming a single target and detector + Supports minimizing for reverse mode + """ + deg2rad = np.pi / 180.0 + # Convert ra and dec spherical coords to cartesian + vec0s, vec1s, vec2s = self.sphereToCart(ras, decs) + curVec = np.array([vec0s, vec1s, vec2s], dtype=np.double) + print("DEBUG: radec2pix_nocheck_single: curVec: {0}".format(curVec)) + j = cam + # Do the rotation from ra dec coords to camera coords + camVec = np.matmul(self.rmat4[j], curVec) + print("DEBUG: radec2pix_nocheck_single: camVec: {0}".format(camVec)) + + # Get the longitude and latitude of camera coords position + lng, lat = self.cartToSphere(camVec) + lng = lng / deg2rad + lat = lat / deg2rad + print("DEBUG: radec2pix_nocheck_single: lng: {0}".format(lng)) + print("DEBUG: radec2pix_nocheck_single: lat: {0}".format(lat)) + + # Get the xy focal plane position in mm + xyfp = self.optics_fp(j, lng, lat) + print("DEBUG: radec2pix_nocheck_single: xyfp: {0}".format(xyfp)) + + # Convert mm to pixels + ccdpx, fitpx = self.mm_to_pix_single_ccd(j, xyfp, iccd) + print("DEBUG: radec2pix_nocheck_single: ccdpx, fitpix: {0}".format(camVec)) + + ccdNum = iccd+1 + fitsxpos = fitpx[0] + fitsypos = fitpx[1] + ccdxpos = ccdpx[0] + ccdypos = ccdpx[1] + return ccdNum, fitsxpos, fitsypos, ccdxpos, ccdypos, lat + + def pix2radec_nocheck_single(self, cam, iccd, ccdpx): + """ + Reverse the transform going from pixel coords to Ra & Dec + """ + deg2rad = np.pi / 180.0 + # Convert pixels to mm + xyfp = self.pix_to_mm_single_ccd(cam, ccdpx, iccd) + lng_deg, lat_deg = self.fp_optics(cam, xyfp) + vcam0, vcam1, vcam2 = self.sphereToCart(lng_deg, lat_deg) + vcam = np.array([vcam0, vcam1, vcam2], dtype=np.double) + curVec = np.matmul(np.transpose(self.rmat4[cam]), vcam) + ra, dec = self.cartToSphere(curVec) + + return ra/deg2rad, dec/deg2rad + +class TESS_Spacecraft_Pointing_Data: + #Hard coded spacecraft pointings by Sector + # When adding sectors the arg2 needs to end +1 from sector + # due to the np.arange function ending at arg2-1 + sectors = np.arange(1,70, dtype=int) + + # Arrays are broken up into the following sectors: + # Line 1: Sectors 1-5 Start Year 1 + # Line 2: Secotrs 6-9 + # Line 3: Sectors 10-13 End Year 1 + # Line 4: Sectors 14-17 Start Year 2 + # Line 5: Sectors 18-22 + # Line 6: Sectors 23-26 End Year 2 + # Line 7: Sectors 27-30 Star Year 3 + # Line 8: Sectors 31-34 + # Line 9: Sectors 35-38 + # Line 10: Sectors 39 End Year 3 + # Line 11: Sectors 40-43 Star Year 4 + # Line 12: S 44-47 + # Line 13: S 48-51 + # Line 14: S 52-55 END YEAR 4 + # Line 15: S 56-59 START YEAR 5 + # Line 16: S 60-63 + # Line 17: S 64-67 + # Line 18: S 68-69 END Year 5 + ### NOTE IF you add Sectors be sure to update the allowed range + ### for sectors in argparse arguments!!! + ras = np.array([352.6844, 16.5571, 36.3138, 55.0070, 73.5382,\ + 92.0096,110.2559,128.1156,145.9071,\ + 165.0475,189.1247,229.5885,298.6671,\ + 276.7169,280.3985,282.4427,351.2381,\ + 16.1103, 60.2026,129.3867,171.7951,197.1008,\ + 217.2879,261.4516,265.6098,270.1381,\ + 326.8525,357.2944, 18.9190, 38.3564,\ + 57.6357, 77.1891, 96.5996,115.2951,\ + 133.2035,150.9497,170.2540,195.7176,\ + 242.1981,\ + 273.0766,277.6209, 13.0140, 49.5260,\ + 89.6066,130.2960,157.6997,143.3807,\ + 179.4254,202.6424,221.8575,239.4257,\ + 266.3618,270.8126,290.1210,307.8655,\ + 324.2778,344.2275, 9.3118, 52.9755,\ + 125.6742,118.0446,135.2412,153.0613,\ + 173.2653,201.6239,259.1702,326.7691,\ + 359.2829, 20.0449], dtype=float) + + decs = np.array([-64.8531,-54.0160,-44.2590,-36.6420,-31.9349,\ + -30.5839,-32.6344,-37.7370,-45.3044,\ + -54.8165,-65.5369,-75.1256,-76.3281,\ + 62.4756, 64.0671, 66.1422, 57.8456,\ + 67.9575, 76.2343, 75.2520, 65.1924, 53.7434,\ + 43.8074, 63.1181, 61.9383, 61.5637,\ + -72.4265,-63.0056,-52.8296,-43.3178,\ + -35.7835,-31.3957,-30.7848,-33.7790,\ + -39.6871,-47.7512,-57.3725,-67.8307,\ + -76.3969,\ + 61.7450, 62.7640, 6.3337, 18.9737,\ + 24.1343, 19.0181, 10.0922, 73.1125,\ + 62.1038, 50.9532, 41.7577, 35.2333,\ + 61.8190, 61.5761, 32.6073, 37.6464,\ + 46.3448, 56.4121, 67.6524, 77.1746,\ + 77.3113,-36.0902,-42.2415,-50.6996,\ + -60.8650,-71.5724,-78.7974,-74.2796,\ + -64.2357,-54.2315], dtype=float) + + rolls = np.array([222.1532,220.4335,213.0384,202.8302,191.0517,\ + 178.6367,166.4476,155.3091,145.9163,\ + 139.1724,138.0761,153.9773,198.9378,\ + 32.2329, 55.4277, 79.4699, 41.9686,\ + 40.5453, 19.6463,334.5689,317.9495,319.6992,\ + 327.4246,317.2624,339.5293, 0.6038,\ + 214.5061,222.5216,219.7970,212.0441,\ + 201.2334,188.6263,175.5369,163.1916,\ + 152.4006,143.7306,138.1685,139.3519,\ + 161.5986,\ + 14.1539, 37.2224,292.8009,284.9617,\ + 270.1557,255.0927,248.4063,327.1020,\ + 317.4166,321.3516,329.7340,339.8650,\ + 343.1429, 3.6838, 13.4565, 24.5369,\ + 36.2524, 44.0100, 45.3615, 26.5121,\ + 337.3244,162.2198,151.5884,142.7405,\ + 137.2810,140.7443,173.9147,217.4678,\ + 226.0975,222.7721], dtype=float) + + midtimes = np.array([ 2458339.652778, 2458368.593750, 2458396.659722, 2458424.548611, 2458451.548611, \ + 2458478.104167, 2458504.697917, 2458530.256944, 2458556.722222, \ + 2458582.760417, 2458610.774306, 2458640.031250, 2458668.618056, \ + 2458697.336806, 2458724.934028, 2458751.649306, 2458777.722222, \ + 2458803.440972, 2458828.958333, 2458856.388889, 2458884.916667, 2458913.565972, \ + 2458941.829861, 2458969.263889, 2458996.909722, 2459023.107639, \ + 2459049.145833, 2459075.166667, 2459102.319444, 2459130.201389, \ + 2459158.854167, 2459186.940972, 2459215.427083, 2459241.979167, \ + 2459268.579861, 2459295.301177, 2459322.577780, 2459349.854382, \ + 2459377.130985, \ + 2459404.407588, 2459431.684191, 2459458.960794, 2459486.237397, \ + 2459513.514000, 2459540.790602, 2459568.067205, 2459595.343808, \ + 2459622.620411, 2459649.897014, 2459677.173617, 2459704.450219, \ + 2459731.726822, 2459759.003425, 2459786.280028, 2459813.556631, \ + 2459840.833234, 2459868.109837, 2459895.386439, 2459922.663042, \ + 2459949.939645, 2459977.216248, 2460004.492851, 2460031.769454, \ + 2460059.046057, 2460086.322659, 2460113.599262, 2460140.875865, \ + 2460168.152468, 2460195.429071], dtype=float) + + + camSeps = np.array([36.0, 12.0, 12.0, 36.0], dtype=float) + + + def __init__(self, trySector=None, fpgParmFileList=None, sectorOverrideFile=None): + # Convert S/C boresite pointings to ecliptic coords for each camera + + # if sectorOverrideFile is set read in the sector pointing overrides + # This can be used for mission planning or for speed ups + # by allowing the user to put in a custom list of sectors that they want + # to run over + if not sectorOverrideFile is None: + try: + dataBlock = np.genfromtxt(sectorOverrideFile, dtype=['i4','f8','f8','f8']) + self.sectors = np.array(dataBlock['f0']) + self.ras = np.array(dataBlock['f1']) + self.decs = np.array(dataBlock['f2']) + self.rolls = np.array(dataBlock['f3']) + # just put something into midtimes at this point should never get used + # because aberration is not supported with sector override file + medmidtimes = np.median(self.midtimes) + self.midtimes = np.full_like(self.ras, medmidtimes) + except: + print('There was a problem reading the Sector Override File. Exiting!') + sys.exit(1) + + # If trySector is set only keep the single requested sector + if not trySector is None: + idx = np.where(self.sectors == trySector)[0] + # Check for condition where the requested sector is not in list! + if len(idx) == 0: + print('Could not find requested sector: {0:d} in the available sector pointing data'.format(trySector)) + sys.exit(1) + self.sectors = self.sectors[idx] + self.ras = self.ras[idx] + self.decs = self.decs[idx] + self.rolls = self.rolls[idx] + self.midtimes = self.midtimes[idx] + nPoints = len(self.sectors) + self.camRa = np.zeros((4, nPoints), dtype=float) + self.camDec = np.zeros((4, nPoints), dtype=float) + # Convert S/C boresite ra and dec to camera ra and dec + for iPnt in range(nPoints): + curra = self.ras[iPnt] + curdec = self.decs[iPnt] + curroll = self.rolls[iPnt] + camposangs = np.array([180.0-curroll, 180.0-curroll, \ + 360.0-curroll, 360.0-curroll]) + camposangs = np.mod(camposangs, 360.0) + for iCam in range(4): + # Need to correct s/c roll to posang + pang = camposangs[iCam] + camra, camdec = get_radec_from_posangsep(curra, curdec, \ + pang, self.camSeps[iCam]) + self.camRa[iCam,iPnt] = camra + self.camDec[iCam,iPnt] = camdec + # Just for testing camera coords + # compare to published values +# print('{:d} {:d} {:f} {:f}'.format(self.sectors[iPnt],iCam+1,\ +# self.camRa[iCam,iPnt], self.camDec[iCam,iPnt])) + # For every pointing make a Levine pointing class object + self.fpgObjs = [] + fpg_file_list=None + if not fpgParmFileList is None: + fpg_file_list=fpgParmFileList + for iPnt in range(nPoints): + sc_ra_dec_roll = np.array([self.ras[iPnt], self.decs[iPnt], self.rolls[iPnt]]) + self.fpgObjs.append(Levine_FPG(sc_ra_dec_roll, fpg_file_list=fpg_file_list)) + + # Dump sector data out + #for i, curSec in enumerate(self.sectors): + # strout = '{0:d} {1:8.4f} {2:7.4f} {3:9.4f}'.format(curSec,\ + # self.ras[i], self.decs[i], self.rolls[i]) + # print(strout) + +def get_radec_from_posangsep(ra, dec, pa, sep): + deg2rad = np.pi/180.0 + rad2deg = 180.0/np.pi + twopi = 2.0*np.pi + pidtwo = np.pi/2.0 + rar = ra*deg2rad + decr = dec*deg2rad + par = pa*deg2rad + sepr = sep*deg2rad + c = pidtwo - decr + bigB = par + a = sepr + b = np.arccos((np.cos(c)*np.cos(a) + np.sin(c)*np.sin(a)*np.cos(bigB))) + newdec = pidtwo - b + delalp = np.arccos(np.min([(np.cos(sepr)-np.sin(decr)*np.sin(newdec))/(np.cos(decr)*np.cos(newdec)),1.0])) + if pa > 180.0: + newra = rar - delalp + else: + newra = rar + delalp +# print(pa, newra*rad2deg, rar*rad2deg, delalp*rad2deg) + newra = np.mod(newra, twopi) + return newra*rad2deg, newdec*rad2deg + + +class target_info: + def __init__(self): + self.ticid = int(0) + self.ra = 0.0 + self.dec = 0.0 + self.eclipLong = 0.0 + self.eclipLat = 0.0 + self.sectors = np.array([], dtype=int) + self.onSiliconFlag = np.array([], dtype=int) + self.possibleOnSiliconFlag = np.array([], dtype=int) + self.cameras = np.array([], dtype=int) + self.xpxs = np.array([], dtype=float) + self.ypxs = np.array([], dtype=float) + +def make_target_objects(tic, ra, dec): + starList = [] + for i, curTic in enumerate(tic): + curRa = ra[i] + curDec = dec[i] + # instantiate target object + curTarg = target_info() + curTarg.ra = curRa + curTarg.dec = curDec + curTarg.ticid = tic[i] + # Convert ra and dec coords to ecliptic + planCoords = SkyCoord(curRa, curDec, unit='deg') + planEclipCoords = planCoords.transform_to(frame='barycentrictrueecliptic') + curTarg.eclipLat = planEclipCoords.lat.deg + curTarg.eclipLong = planEclipCoords.lon.deg + starList.append(curTarg) + return starList + +def doRoughPosition(targinfo, scinfo): + # Return the combinations of sector and detectors that can possibly observe + # target + # go through each position in the spacecraft info class + tRa = targinfo.ra + tDec = targinfo.dec + FOVDeg = 17.68 + nPoints = len(scinfo.sectors) + targCoords = SkyCoord(tRa, tDec, unit='deg', frame='icrs') + for iPnt in range(nPoints): + for iCam in range(4): + camRa = scinfo.camRa[iCam,iPnt] + camDec = scinfo.camDec[iCam,iPnt] + camCenter = SkyCoord(camRa, np.max([-89.99999,camDec]), unit='deg', frame='icrs') + posAngs = camCenter.position_angle(targCoords) + seps = camCenter.separation(targCoords) + # Check for potentially on silicon + if seps.deg < FOVDeg: + # Append potential pointing camera combo to targets list + targinfo.sectors = np.append(targinfo.sectors, scinfo.sectors[iPnt]) + targinfo.onSiliconFlag = np.append(targinfo.onSiliconFlag, 0) + targinfo.possibleOnSiliconFlag = np.append(targinfo.possibleOnSiliconFlag, 1) + targinfo.cameras = np.append(targinfo.cameras, iCam+1) + targinfo.xpxs = np.append(targinfo.xpxs, 0.0) + targinfo.ypxs = np.append(targinfo.ypxs, 0.0) + return targinfo + +## [Mast Query] +def mastQuery(request,proxy_uri=None): + + host='mast.stsci.edu' + # Grab Python Version + version = ".".join(map(str, sys.version_info[:3])) + + # Create Http Header Variables + headers = {"Content-type": "application/x-www-form-urlencoded", + "Accept": "text/plain", + "User-agent":"python-requests/"+version} + + # Encoding the request as a json string + requestString = json.dumps(request) + requestString = urlencode(requestString) + + # opening the https connection + if None == proxy_uri: + conn = httplib.HTTPSConnection(host) + else: + port = 443 + url = urlparse(proxy_uri) + conn = httplib.HTTPSConnection(url.hostname,url.port) + + if url.username and url.password: + auth = '%s:%s' % (url.username, url.password) + headers['Proxy-Authorization'] = 'Basic ' + str(base64.b64encode(auth.encode())).replace("b'", "").replace("'", "") + conn.set_tunnel(host, port, headers) + + # Making the query + conn.request("POST", "/api/v0/invoke", "request="+requestString, headers) + + # Getting the response + resp = conn.getresponse() + head = resp.getheaders() + content = resp.read().decode('utf-8') + + # Close the https connection + conn.close() + + return head,content +## [Mast Query] + +def fileOutputHeader(fp, fpgParmFileList=None): + # output a header to the file + fp.write('# stars2px.py - Convert Target RA and Dec to TESS spacecraft pixel coordinates\n') + fp.write('# Original starspx.c by Alan Levine (MIT Kavli Institute)\n') + fp.write('# Python translation by Christopher Burke (MIT Kavli Institute)\n') + fp.write('# Output columns Pipe Delimited; 16 header lines\n') + fp.write('# File Creation: {:}\n'.format(datetime.datetime.now())) + if fpgParmFileList is None: + fp.write('# FPG Model Default\n') + else: + fp.write('# FPG Model {:s} {:s} {:s} {:s}\n'.format(fpgParmFileList[0], \ + fpgParmFileList[1],fpgParmFileList[2],fpgParmFileList[3])) + fp.write('# 1 [int] Input TIC ID\n') + fp.write('# 2 [degree] Input or MAST TIC query target RA\n') + fp.write('# 3 [degree] Input or MAST TIC query target Dec\n') + fp.write('# 4 [degree] Ecliptic Longitude\n') + fp.write('# 5 [degree] Ecliptic Latitude\n') + fp.write('# 6 [int] - Observing Sector number for target\n') + fp.write('# 7 [int] - Camera number for target\n') + fp.write('# 8 [int] - Detector number for target\n') + fp.write('# 9 [float] - Column pixel location for target\n') + fp.write('# 10 [float] - Row pixel location for target\n') + + +def tess_stars2px_function_entry(starIDs, starRas, starDecs, trySector=None, scInfo=None, \ + fpgParmFileList=None, combinedFits=False,\ + noCollateral=False, aberrate=False, sectorOverrideFile=None): + if scInfo == None: + # Instantiate Spacecraft position info + scinfo = TESS_Spacecraft_Pointing_Data(trySector=trySector, fpgParmFileList=fpgParmFileList, \ + sectorOverrideFile=sectorOverrideFile) + else: + scinfo = scInfo + # Now make list of the star objects + starList = make_target_objects(np.atleast_1d(starIDs), \ + np.atleast_1d(starRas), np.atleast_1d(starDecs)) + # Make rough determination as to which pointing camera combos are worth + # Checking in detail and then do detailed checking + findAny=False + outID = np.array([-1], dtype=np.int64) + outEclipLong = np.array([-1.0], dtype=float) + outEclipLat = np.array([-1.0], dtype=float) + outSec = np.array([-1], dtype=int) + outCam = np.array([-1], dtype=int) + outCcd = np.array([-1], dtype=int) + outColPix = np.array([-1.0], dtype=float) + outRowPix = np.array([-1.0], dtype=float) + for i, curTarg in enumerate(starList): + for curSec in scinfo.sectors: + starRas = np.array([curTarg.ra]) + starDecs = np.array([curTarg.dec]) + idxSec = np.where(scinfo.sectors == curSec)[0][0] + # Apply an approximate aberration correction + if aberrate: + useTime = Time(scinfo.midtimes[idxSec], format='jd') + # Make coordinate object in ICRS coordinates + ccat = SkyCoord(ra=starRas * u.deg, + dec=starDecs * u.deg, + obstime=useTime, frame='icrs') + # convert to Geocentric aberrated coordinates + # This is only an approximation to TESS + # because TESS orbits Earth and has + # velocity <=4km/s relative to Earth whereas Earth is 30km/s + cgcrs = ccat.transform_to('gcrs') + starRas = np.array(cgcrs.ra.degree) + starDecs = np.array(cgcrs.dec.degree) + + starInCam, starCcdNum, starFitsXs, starFitsYs, starCcdXs, starCcdYs = scinfo.fpgObjs[idxSec].radec2pix(\ + starRas, starDecs) + for jj, cam in enumerate(starInCam): + # SPOC calibrated FFIs have 44 collateral pixels in x and are 1 based + xUse = starCcdXs[jj] + 45.0 + yUse = starCcdYs[jj] + 1.0 + xMin = 44.0 + ymaxCoord = 2049 + xmaxCoord = 2093 + if combinedFits: + xUse = starFitsXs[jj] + yUse = starFitsYs[jj] + xmaxCoord = 4097 + ymaxCoord = 4097 + xMin = 0.0 + if noCollateral: + xUse = starCcdXs[jj] + yUse = starCcdYs[jj] + xMin = 0.0 + if xUse>xMin and yUse>0 and xUse:@:\" ") + parser.add_argument("-a", "--aberrate", action='store_true',\ + help="Apply approximate aberration correction to input coordinates. Uses astropy GCRS coordinate frame to approximate TESS aberration") + parser.add_argument("-sovr", "--sector_override", type=argparse.FileType('r'), \ + help="Filename for sector pointing overrides SectorNum [Int]; RA(deg) [Float]; Dec(deg) [Float]; Roll(deg) [Float]; in white space delimited text file Column 1, 2, 3, and 4 respectively") + args = parser.parse_args() + +# DEBUG BLOCK for hard coding input parameters and testing +# class test_arg: +# def __init__(self): +# #self.ticId = 281541555 +# self.ticId = None +# self.coord = None +# self.name = ['KIC 6443093'] +# self.coord = [330.6803807390524, 42.27777178] +# self.inputFile = None +# self.sector = None +# self.fpgParameterFiles = None +# self.outputFile = None +# self.combinedFits = False +# self.noCollateral = False +# self.reverse = None +# self.reverse = [2,1,2,2092.0,1.0] +# self.sectorOverrideFile = None +# args = test_arg() + + # At least one Mode -t -c -f -r -n must have been specified + if (args.ticId is None) and (args.coord is None) and (args.inputFile is None) and (args.reverse is None) and (args.name is None): + print('You must specify one and only one mode -t, -c, -f, -r, -n') + print('`python stars2px.py -h\' for help') + sys.exit(1) + + # sector overrides are currently not allowed with the aberration flag + if (not (args.sector_override is None)) and args.aberrate: + print('Aberration flag (-a) is not supported with the sector override file input (-sovr)') + sys.exit(1) + + # Check for reverse mode + if (args.reverse is None): + # Do single coords first + if args.coord is not None and args.name is None: + nTarg = 1 + starTics = np.array([0], dtype=np.int64) + starRas = np.array([args.coord[0]], dtype=float) + starDecs = np.array([args.coord[1]], dtype=float) + elif args.coord is None and args.name is not None: + nTarg = 1 + starTics = np.array([0], dtype=np.int64) + + # Name resolve in try except for detecting problem + try: + coordinate = SkyCoord.from_name(args.name[0]) + print("Coordinates for {0}: ({1}, {2})" + .format(args.name[0], coordinate.ra.degree, + coordinate.dec.degree)) + starRas = np.array([coordinate.ra.degree], dtype=float) + starDecs = np.array([coordinate.dec.degree], dtype=float) + except: + print("Could not resolve: {0}".format(args.name[0])) + sys.exit(1) + else: + if not (args.inputFile is None): # Check for input file list next + # Read in star positions in input + # Now go through stars + starFile = args.inputFile + dataBlock = np.genfromtxt(starFile, dtype=['i4','f8','f8']) + starTics = np.atleast_1d(dataBlock['f0']) + starRas = np.atleast_1d(dataBlock['f1']) + starDecs = np.atleast_1d(dataBlock['f2']) + else: + # Must have requested MAST query with TIC ID + # Make a list of TICs using strings + starTics = np.array([args.ticId], dtype=np.int64) + ticStringList = ['{0:d}'.format(x) for x in starTics] + # Setup mast query + request = {'service':'Mast.Catalogs.Filtered.Tic', \ + 'params':{'columns':'*', 'filters':[{ \ + 'paramName':'ID', 'values':ticStringList}]}, \ + 'format':'json', 'removenullcolumns':True} + if args.proxy_uri is None: + headers, outString = mastQuery(request) + else: + headers, outString = mastQuery(request,args.proxy_uri[0]) + outObject = json.loads(outString) + starRas = np.array([x['ra'] for x in outObject['data']]) + starDecs = np.array([x['dec'] for x in outObject['data']]) + + trySector = None + if not (args.sector is None): + trySector = args.sector + fpgParmFileList = None + if not (args.fpgParameterFiles is None): + fpgParmFileList = [x for x in args.fpgParameterFiles] + + sectorOverrideFile = None + if not (args.sector_override is None): + sectorOverrideFile = args.sector_override + + + # Instantiate Spacecraft position info + scinfo = TESS_Spacecraft_Pointing_Data(trySector=trySector, fpgParmFileList=fpgParmFileList, \ + sectorOverrideFile=sectorOverrideFile) + # Open output file if requested + # if not (args.outputFile is None): + # fout = open(args.outputFile, 'w') + + # Add header to outputfile + if not (args.outputFile is None): + fileOutputHeader(args.outputFile, fpgParmFileList=fpgParmFileList) + else: + # add single line header to stdout + print('# TIC | RA | Dec | EclipticLong | EclipticLat | Sector | Camera | Ccd | ColPix | RowPix | EdgeWarn') + # Now make list of the star objects + starList = make_target_objects(starTics, starRas, starDecs) + #print('Finished converting coords to ecliptic') + # Make rough determination as to which pointing camera combos are worth + # Checking in detail and then do detailed checking + findAny=False + for i, curTarg in enumerate(starList): + for curSec in scinfo.sectors: + starRas = np.array([curTarg.ra]) + starDecs = np.array([curTarg.dec]) + idxSec = np.where(scinfo.sectors == curSec)[0][0] + # Apply an approximate aberration correction + if args.aberrate: + useTime = Time(scinfo.midtimes[idxSec], format='jd') + # Make coordinate object in ICRS coordinates + ccat = SkyCoord(ra=starRas * u.deg, + dec=starDecs * u.deg, + obstime=useTime, frame='icrs') + # convert to Geocentric aberrated coordinates + # This is only an approximation to TESS + # because TESS orbits Earth and has + # velocity <=4km/s relative to Earth whereas Earth is 30km/s + cgcrs = ccat.transform_to('gcrs') + starRas = np.array(cgcrs.ra.degree) + starDecs = np.array(cgcrs.dec.degree) + starInCam, starCcdNum, starFitsXs, starFitsYs, starCcdXs, starCcdYs = scinfo.fpgObjs[idxSec].radec2pix(\ + starRas, starDecs) + for jj, cam in enumerate(starInCam): + # SPOC calibrated FFIs have 44 collateral pixels in x and are 1 based + xUse = starCcdXs[jj] + 45.0 + yUse = starCcdYs[jj] + 1.0 + xMin = 44.0 + ymaxCoord = 2049 + xmaxCoord = 2093 + if args.combinedFits: + xUse = starFitsXs[jj] + yUse = starFitsYs[jj] + xmaxCoord = 4097 + ymaxCoord = 4097 + xMin = 0.0 + if args.noCollateral: + xUse = starCcdXs[jj] + yUse = starCcdYs[jj] + xMin = 0.0 + if xUse>xMin and yUse>0 and xUse=(xmaxCoord-edgePix): + edgeWarn = 1 + if yUse<=edgePix: + edgeWarn = 1 + if yUse>=(ymaxCoord-edgePix): + edgeWarn = 1 + strout = '{:09d} | {:10.6f} | {:10.6f} | {:10.6f} | {:10.6f} | {:2d} | {:1d} | {:1d} | {:11.6f} | {:11.6f} | {:1d}'.format(\ + curTarg.ticid, curTarg.ra, curTarg.dec, curTarg.eclipLong,\ + curTarg.eclipLat, curSec, starInCam[jj], starCcdNum[jj], xUse, yUse, edgeWarn) + if not (args.outputFile is None): + args.outputFile.write('{:s}\n'.format(strout)) + else: + print(strout) + + if not findAny: + print('No Target/s were found to be on detectors') + # Do reverse mode + else: + trySector = int(args.reverse[0]) + fpgParmFileList = None + if not (args.fpgParameterFiles is None): + fpgParmFileList = [x for x in args.fpgParameterFiles] + + sectorOverrideFile = None + if not (args.sector_override is None): + sectorOverrideFile = args.sector_override + + # Instantiate Spacecraft position info + scinfo = TESS_Spacecraft_Pointing_Data(trySector=trySector, fpgParmFileList=fpgParmFileList,\ + sectorOverrideFile=sectorOverrideFile) + # Camera center ra and dec + iCam = int(args.reverse[1])-1 + iCcd = int(args.reverse[2])-1 + colWnt = float(args.reverse[3]) + rowWnt = float(args.reverse[4]) + + # Lets try going direct route with inversion of codes + starCcdXs = colWnt - 45.0 + starCcdYs = rowWnt - 1.0 + idxSec = np.where(scinfo.sectors == trySector)[0][0] + ra_deg, dec_deg = scinfo.fpgObjs[idxSec].pix2radec_nocheck_single(iCam, iCcd, [starCcdXs, starCcdYs]) + print(ra_deg, dec_deg) + diff --git a/src/tesspoint/tesspoint.py b/src/tesspoint/tesspoint.py index 3b7e865..408d598 100644 --- a/src/tesspoint/tesspoint.py +++ b/src/tesspoint/tesspoint.py @@ -1,294 +1,201 @@ -"""Python vectorized version of tess-point""" -import numpy as np from dataclasses import dataclass -from . import PACKAGEDIR - -__all__ = ["TESSPoint", "footprint"] - -pointings = { - key: col - for col, key in zip( - np.loadtxt(f"{PACKAGEDIR}/data/pointings.csv", delimiter=",", skiprows=1).T, - np.loadtxt( - f"{PACKAGEDIR}/data/pointings.csv", delimiter=",", max_rows=1, dtype=str - ), - ) -} +from typing import Optional, List -tess_params = { - 1: { - "ang1": 0.101588, - "ang2": -36.022035, - "ang3": 90.048315, - "fl": 145.948116, - "opt_coef1": 1.00000140, - "opt_coef2": 0.24779006, - "opt_coef3": -0.22681254, - "opt_coef4": 10.78243356, - "opt_coef5": -34.97817276, - "x0_ccd1": 31.573417, - "y0_ccd1": 31.551637, - "ang_ccd1": 179.980833, - "x0_ccd2": -0.906060, - "y0_ccd2": 31.536148, - "ang_ccd2": 180.000000, - "x0_ccd3": -31.652818, - "y0_ccd3": -31.438350, - "ang_ccd3": -0.024851, - "x0_ccd4": 0.833161, - "y0_ccd4": -31.458180, - "ang_ccd4": 0.001488, - }, - 2: { - "ang1": -0.179412, - "ang2": -12.017260, - "ang3": 90.046500, - "fl": 145.989933, - "opt_coef1": 1.00000140, - "opt_coef2": 0.24069345, - "opt_coef3": 0.15391120, - "opt_coef4": 4.05433503, - "opt_coef5": 3.43136895, - "x0_ccd1": 31.653635, - "y0_ccd1": 31.470291, - "ang_ccd1": 180.010890, - "x0_ccd2": -0.827405, - "y0_ccd2": 31.491388, - "ang_ccd2": 180.000000, - "x0_ccd3": -31.543794, - "y0_ccd3": -31.550699, - "ang_ccd3": -0.006624, - "x0_ccd4": 0.922834, - "y0_ccd4": -31.557268, - "ang_ccd4": -0.015464, - }, - 3: { - "ang1": 0.066596, - "ang2": 12.007750, - "ang3": -89.889085, - "fl": 146.006602, - "opt_coef1": 1.00000140, - "opt_coef2": 0.23452229, - "opt_coef3": 0.33552009, - "opt_coef4": 1.92009863, - "opt_coef5": 12.48880182, - "x0_ccd1": 31.615486, - "y0_ccd1": 31.413644, - "ang_ccd1": 179.993948, - "x0_ccd2": -0.832993, - "y0_ccd2": 31.426621, - "ang_ccd2": 180.000000, - "x0_ccd3": -31.548296, - "y0_ccd3": -31.606976, - "ang_ccd3": 0.000298, - "x0_ccd4": 0.896018, - "y0_ccd4": -31.569542, - "ang_ccd4": -0.006464, - }, - 4: { - "ang1": 0.030756, - "ang2": 35.978116, - "ang3": -89.976802, - "fl": 146.039793, - "opt_coef1": 1.00000140, - "opt_coef2": 0.23920416, - "opt_coef3": 0.13349450, - "opt_coef4": 4.77768896, - "opt_coef5": -1.75114744, - "x0_ccd1": 31.575820, - "y0_ccd1": 31.316510, - "ang_ccd1": 179.968217, - "x0_ccd2": -0.890877, - "y0_ccd2": 31.363511, - "ang_ccd2": 180.000000, - "x0_ccd3": -31.630470, - "y0_ccd3": -31.716942, - "ang_ccd3": -0.024359, - "x0_ccd4": 0.824159, - "y0_ccd4": -31.728751, - "ang_ccd4": -0.024280, - }, -} +from tesspoint import TESSPointSCC +from . import PACKAGEDIR +import numpy as np +__all__ = ["TESSPoint"] @dataclass -class TESSPoint: - sector: int - camera: int - ccd: int - +class TESSPoint(object): + id : Optional[list] = None # ID assosciated with each pixel/coordinate - could be TIC or arbitrary for bookeeping + coord : Optional[list] = None # SkyCoord? + ra : Optional[list] = None + dec : Optional[list] = None + row : Optional[list] = None + column : Optional[list] = None + targetname : Optional[list] = None + filename : Optional[str] = None + + coord_type : Optional[str] = None # keep track of if we're going from radec-> pix or pix->radec + obsSector : Optional[list] = None # keep track of Sectors assosciated with transformations + obsCamera : Optional[list] = None # keep track of Cameras assosciated with transformations + obsCCD : Optional[list] = None # keep track of CCDs assosciated with transformations + obsId : Optional[list] = None # Keep track of Ids assosciated with transformations + _sector_max: Optional[int] = -1 # Will read from pointings.csv to grab the default max from the last line + _sector_min: Optional[int] = 1 + _camera_max: Optional[int] = 4 + _camera_min: Optional[int] = 1 + _ccd_max: Optional[int] = 4 + _ccd_min: Optional[int] = 1 + def __post_init__(self): - xeul = np.hstack( - [ - (np.pi / 180.0) * pointings["ra"][pointings["sector"] == self.sector], - np.pi / 2.0 - - (np.pi / 180.0) - * pointings["dec"][pointings["sector"] == self.sector], - (np.pi / 180.0) * pointings["roll"][pointings["sector"] == self.sector] - + np.pi, - ] - ) - - self.rmat1 = eulerm323(xeul) - eulcam = np.asarray( - [tess_params[self.camera][f"ang{idx}"] for idx in np.arange(1, 4)] - ) - self.rmat2 = eulerm323(eulcam * (np.pi / 180.0)) - self.rmat4 = np.matmul(self.rmat2, self.rmat1) - - @property - def opt_coeffs(self): - return np.asarray( - [ - tess_params[self.camera][key] - for key in np.hstack( - [["fl"], [f"opt_coef{idx}" for idx in np.arange(1, 6)]] - ) - ] - ) - - def pix_to_mm(self, coords): - """convert pixel to mm focal plane position""" - pixsz = 0.015000 - angle = tess_params[self.camera][f"ang_ccd{self.ccd}"] - xyb = xyrotate(angle, (coords + 0.5) * pixsz) - return np.vstack( - [ - xyb[:, 0] + tess_params[self.camera][f"x0_ccd{self.ccd}"], - xyb[:, 1] + tess_params[self.camera][f"y0_ccd{self.ccd}"], - ] - ).T - - def pix2radec(self, coords): - xyfp = self.pix_to_mm(coords) - lng_deg, lat_deg = fp_optics(xyfp, self.opt_coeffs) - vcam = np.asarray(sphereToCart(lng_deg, lat_deg)).T - curVec = np.matmul(self.rmat4.T, vcam.T).T - ra, dec = cartToSphere(curVec) - return ra / (np.pi / 180.0), dec / (np.pi / 180.0) - - -def footprint(npoints=50): - """Gets the column and row points for CCD edges""" - column = np.hstack( - [ - np.zeros(npoints), - np.linspace(0, 2048, npoints), - np.linspace(0, 2048, npoints), - np.ones(npoints) * 2048, - ] - ) - row = np.hstack( - [ - np.linspace(0, 2048, npoints), - np.zeros(npoints), - np.ones(npoints) * 2048, - np.linspace(0, 2048, npoints), - ] - ) - return np.vstack([column, row]).T - - -def xyrotate(angle, coords): - ca = np.cos((np.pi / 180.0) * angle) - sa = np.sin((np.pi / 180.0) * angle) - return np.vstack( - [ca * coords[:, 0] + sa * coords[:, 1], -sa * coords[:, 0] + ca * coords[:, 1]] - ).T.astype(coords.dtype) - - -def rev_az_asym(coords): - asymang = 0.0 - asymfac = 1.0 - xypa = xyrotate(asymang, coords) * np.asarray([1 / asymfac, 1]) - return xyrotate(-asymang, xypa) - - -def r_of_tanth(z, opt_coeffs): - tanth = np.tan(z) - rfp0 = tanth * opt_coeffs[0] - rfp = np.sum(opt_coeffs[1:] * (tanth ** (2 * np.arange(5))[:, None]).T, axis=1) - return rfp0 * rfp - - -def tanth_of_r(rfp_times_rfp0, opt_coeffs): - zi = np.arctan(rfp_times_rfp0 ** 0.5 / opt_coeffs[0]) - # Minimize... - # This is a way to minimize that - # 1) let's us minimize the whole vector and - # 2) doesn't use scipy, so we could do something similar in other scripting languates - # But it's not even close to optimal. - # If you pass in a lot of points this might fill up your memory though... - # ---- - bounds = (0, 0.55) - resolution = 0.001 - x = np.arange(*bounds, resolution)[:, None] * np.ones((1, len(zi))) - for count in range(3): - minimize = np.asarray( - [ - (r_of_tanth(zi + x[idx], opt_coeffs) - rfp_times_rfp0) ** 2 - for idx in range(x.shape[0]) - ] - ) - argmin = np.argmin(minimize, axis=0) - xmin = np.asarray([x[am, idx] for idx, am in enumerate(argmin)]) - # Every iteration, scale down the offset to be narrower around the minimum - x = (x - xmin) * 0.25 + xmin - # ---- - return xmin + zi - - -def fp_optics(xyfp, opt_coeffs): - xy = rev_az_asym(xyfp) - rfp_times_rfp0 = np.sum(xy ** 2, axis=1) ** 0.5 - phirad = np.arctan2(-xy[:, 1], -xy[:, 0]) - phideg = phirad / (np.pi / 180.0) % 360 - thetarad = tanth_of_r(rfp_times_rfp0, opt_coeffs) - thetadeg = thetarad / (np.pi / 180.0) - return phideg, 90.0 - thetadeg - - -def sphereToCart(ras, decs): - """Convert 3d spherical coordinates to cartesian""" - rarads = (np.pi / 180.0) * ras - decrads = (np.pi / 180.0) * decs - sinras = np.sin(rarads) - cosras = np.cos(rarads) - sindecs = np.sin(decrads) - cosdecs = np.cos(decrads) - vec0s = cosras * cosdecs - vec1s = sinras * cosdecs - vec2s = sindecs - return vec0s, vec1s, vec2s - - -def eulerm323(eul): - mat1 = rotm1(2, eul[0]) - mat2 = rotm1(1, eul[1]) - mata = np.matmul(mat2, mat1) - mat1 = rotm1(2, eul[2]) - rmat = np.matmul(mat1, mata) - return rmat - - -def rotm1(ax, angle): - mat = np.zeros((3, 3), dtype=np.double) - n1 = ax - n2 = np.mod((n1 + 1), 3) - n3 = np.mod((n2 + 1), 3) - sinang = np.sin(angle) - cosang = np.cos(angle) - mat[n1][n1] = 1.0 - mat[n2][n2] = cosang - mat[n3][n3] = cosang - mat[n2][n3] = sinang - mat[n3][n2] = -sinang - return mat - - -def cartToSphere(vec): - norm = np.sqrt(np.sum(vec ** 2, axis=1)) - dec = np.arcsin(vec[:, 2] / norm) - ra = np.arctan2(vec[:, 1], vec[:, 0]) - ra = np.mod(ra, 2.0 * np.pi) - return ra, dec + if self.targetname is not None: + self._read_name() + elif self.filename is not None: + self._read_csv() + elif self.coord is not None: + self._read_skycoord() + if ((not self.column) and (not self.row)): + # Assuming that we're working from Sky Coordinates and going to pixels now since we did not pass a pixel column, row + self.coord_type="radec" + if(isinstance(self.ra,list)): + self.ra=np.array(self.ra) + if(isinstance(self.dec,list)): + self.dec=np.array(self.dec) + elif(len(self.column) == len(self.row)): + # Assuming that we're working from Pixel and goint to Sky Coordinates since we did pass a pixel column, row + self.coord_type="pixels" + else: + raise ValueError("Input mismatch")# is this the flag we want? + if(self._sector_max == -1): + # Will read from pointings.csv to grab the default maximum sector from the last line + with open(f"{PACKAGEDIR}/data/pointings.csv") as pointings_file: + lines=pointings_file.readlines() + self._sector_max == lines[-1].split(",")[0] + self.validate() + + def _read_skycoord(self): + if isinstance(self.coord, list): + if isinstance(self.coord[0], SkyCoord): + self.coord = SkyCoord(self.coord) + else: + raise ValueError("Must pass either a `astropy.coordinate.SkyCoord` object or a list of `astropy.coordinate.SkyCoord` objects to `coord`") + elif not isinstance(self.coord, SkyCoord): + raise ValueError("Must pass either a `astropy.coordinate.SkyCoord` object or a list of `astropy.coordinate.SkyCoord` objects to `coord`") + if len(self.coord.shape) == 0: + self.coord = SkyCoord([self.coord]) + self.ra, self.dec = self.coord.ra.deg, self.coord.dec.deg + + def _read_name(self): + if isinstance(self.targetname, str): + c = SkyCoord.from_name(self.targetname) + self.ra, self.dec = c.ra.deg, c.dec.deg + elif isinstance(self.targetname, (list, np.ndarray)): + self.ra, self.dec = [], [] + for name in self.targetname: + c = SkyCoord.from_name(name) + self.ra.append(c.ra.deg) + self.dec.append(c.dec.deg) + + def _read_csv(self): + df = pd.read_csv(self.filename) + cols = np.asarray([c.lower().strip() for c in df.columns]) + if np.any(cols == 'col'): + cols[cols == 'col'] = 'column' + + if not np.in1d(['ra', 'dec', 'row', 'column'], cols).any(): + raise ValueError('Must pass a dataframe with column headers of "ra", "dec", "column", or "row".') + + [setattr(self, attr, np.asarray(df[attr])) for attr in ['ra', 'dec', 'row', 'column'] if attr in cols] + + + def validate(self): + attrs = np.asarray(['ra', 'dec', 'row', 'column']) + + isnone = np.asarray([getattr(self, attr) is None for attr in attrs]) + # Passed in something + if isnone.all(): + raise ValueError(f"Must pass either RA and Dec, Column and Row, a target name, or a filename.") + + if np.atleast_1d(np.where(~isnone)[0] == [0, 1]).all(): + self.coord_type = 'radec' + elif np.atleast_1d(np.where(~isnone)[0] == [2, 3]).all(): + self.coord_type = 'pixels' + else: + raise ValueError("Must pass either RA and Dec, or Column and Row.") + + # Correct length + valid_lengths = len(np.unique([len(np.atleast_1d(getattr(self, attr))) for attr in attrs[np.where(~isnone)]])) == 1 + if not valid_lengths: + raise ValueError("Must pass arrays of the same length.") + [setattr(self, attr, np.atleast_1d(getattr(self, attr))) for attr in attrs[np.where(~isnone)]] + self.nvals = len(np.atleast_1d(getattr(self, attrs[np.where(~isnone)[0][0]]))) + + def __len__(self): + return self.nvals + + def __repr__(self): + if self.coord_type == 'pixels': + return f'TESSpoint ({self.nvals} Row/Column pairs)' + elif self.coord_type == 'radec': + return f'TESSpoint ({self.nvals} RA/Dec pairs)' + else: + return 'TESSpoint' + + def __getitem__(self, idx): + if self.coord_type == 'radec': + return TESSpoint(ra=self.ra[idx], dec=self.dec[idx]) + elif self.coord_type == 'pixels': + return TESSpoint(row=self.row[idx], column=self.column[idx]) + else: + raise ValueError('No `coord_type` set.') + + + def to_RADec(self, sector:Optional[List] = None, camera:Optional[List] = None, ccd:Optional[List] = None): + if sector == None: + #By Default All Sectors + sector = range(self._sector_max)+1 + if camera == None: + # By Default All Cameras + camera = range(self._camera_max)+1 + if ccd == None: + # By Default All Cameras + ccd = range(self._ccd_max)+1 + # Testing notes - test one happens if any single one of these is an int, wierd lists + # What are we returning? sector, camera, ccd, + + for sector_iter in sector: + for camera_iter in camera: + for ccd_iter in ccd: + SectorCameraCCD=TESSPointSCC(sector_iter,camera_iter,ccd_iter) + iter_targets=SectorCameraCCD.pix2radec([self.column, self.row].T) + fov_mask=iter_targets[1] + #if fov_mask.any(): + raise NotImplementedError + #return df # with dates? + + def to_Pixel(self, sector:Optional[List] = None, camera:Optional[List] = None, ccd:Optional[List] = None): + if sector == None: + #By Default All Sectors + sector = range(1,self._sector_max) + if camera == None: + # By Default All Cameras + camera = range(1,self._camera_max) + if ccd == None: + # By Default All Cameras + ccd = range(1,self._ccd_max) + # Clear any prior calculations, many to many mapping issues, rethink, ugh + self.obsId=[] + self.obsSector=[] + self.obsCamera=[] + self.obsCCD=[] + + # Testing notes - test one happens if any single one of these is an int, wierd lists + for sector_iter in sector: + for camera_iter in camera: + for ccd_iter in ccd: + SectorCameraCCD=TESSPointSCC(sector_iter,camera_iter,ccd_iter) + iter_targets=SectorCameraCCD.radec2pix(np.array([self.ra, self.dec]).T) + fov_mask=iter_targets[0] + if(fov_mask.any()): + n_mask=self.ra[fov_mask].count_nonzero() + #tess_stars2px.py has ecliptic long, lat, figure that out + #iter_output=self.id[mask],self.ra[mask],self.dec[mask],iter_targets[0][0][mask],iter_targets[0][1][mask] + self.obsId.append(self.id[fov_mask]) + self.obsSector.append([sector_iter]*n_mask) + self.obsCamera.append([camera_iter]*n_mask) + self.obsCCD.append([ccd_iter]*n_mask) + self.column.append(iter_targets[1][:,0][fov_mask]) + self.row.append(iter_targets[1][:,1][fov_mask]) + return self.obsId,self.obsSector,self.obsCamera,self.obsCCD,self.column,self.row + #return df # with dates? + + def ObservabilityMask(self, sectors:Optional[List] = None, cycle:Optional[List] = None): + raise NotImplementedError + #return np.ndarray of bools + + def NumberOfObservations(self, sectors:Optional[List] = None, cycle:Optional[List] = None): + raise NotImplementedError + #return np.ndarray of ints \ No newline at end of file diff --git a/src/tesspoint/tesspointSCC.py b/src/tesspoint/tesspointSCC.py new file mode 100644 index 0000000..45b9707 --- /dev/null +++ b/src/tesspoint/tesspointSCC.py @@ -0,0 +1,548 @@ +"""Python vectorized version of tess-point""" +import numpy as np +import logging +from dataclasses import dataclass +import scipy.optimize as opt +from . import PACKAGEDIR +__all__ = ["TESSPointSCC", "footprint"] + +# logging.basicConfig(level=logging.DEBUG) +# logging.basicConfig(level=logging.warning) + +pointings = { + key: col + for col, key in zip( + np.loadtxt(f"{PACKAGEDIR}/data/pointings.csv", delimiter=",", skiprows=1).T, + np.loadtxt( + f"{PACKAGEDIR}/data/pointings.csv", delimiter=",", max_rows=1, dtype=str + ), + ) +} + +tess_params = { + 1: { + "ang1": 0.101588, + "ang2": -36.022035, + "ang3": 90.048315, + "fl": 145.948116, + "opt_coef1": 1.00000140, + "opt_coef2": 0.24779006, + "opt_coef3": -0.22681254, + "opt_coef4": 10.78243356, + "opt_coef5": -34.97817276, + "x0_ccd1": 31.573417, + "y0_ccd1": 31.551637, + "ang_ccd1": 179.980833, + "x0_ccd2": -0.906060, + "y0_ccd2": 31.536148, + "ang_ccd2": 180.000000, + "x0_ccd3": -31.652818, + "y0_ccd3": -31.438350, + "ang_ccd3": -0.024851, + "x0_ccd4": 0.833161, + "y0_ccd4": -31.458180, + "ang_ccd4": 0.001488, + }, + 2: { + "ang1": -0.179412, + "ang2": -12.017260, + "ang3": 90.046500, + "fl": 145.989933, + "opt_coef1": 1.00000140, + "opt_coef2": 0.24069345, + "opt_coef3": 0.15391120, + "opt_coef4": 4.05433503, + "opt_coef5": 3.43136895, + "x0_ccd1": 31.653635, + "y0_ccd1": 31.470291, + "ang_ccd1": 180.010890, + "x0_ccd2": -0.827405, + "y0_ccd2": 31.491388, + "ang_ccd2": 180.000000, + "x0_ccd3": -31.543794, + "y0_ccd3": -31.550699, + "ang_ccd3": -0.006624, + "x0_ccd4": 0.922834, + "y0_ccd4": -31.557268, + "ang_ccd4": -0.015464, + }, + 3: { + "ang1": 0.066596, + "ang2": 12.007750, + "ang3": -89.889085, + "fl": 146.006602, + "opt_coef1": 1.00000140, + "opt_coef2": 0.23452229, + "opt_coef3": 0.33552009, + "opt_coef4": 1.92009863, + "opt_coef5": 12.48880182, + "x0_ccd1": 31.615486, + "y0_ccd1": 31.413644, + "ang_ccd1": 179.993948, + "x0_ccd2": -0.832993, + "y0_ccd2": 31.426621, + "ang_ccd2": 180.000000, + "x0_ccd3": -31.548296, + "y0_ccd3": -31.606976, + "ang_ccd3": 0.000298, + "x0_ccd4": 0.896018, + "y0_ccd4": -31.569542, + "ang_ccd4": -0.006464, + }, + 4: { + "ang1": 0.030756, + "ang2": 35.978116, + "ang3": -89.976802, + "fl": 146.039793, + "opt_coef1": 1.00000140, + "opt_coef2": 0.23920416, + "opt_coef3": 0.13349450, + "opt_coef4": 4.77768896, + "opt_coef5": -1.75114744, + "x0_ccd1": 31.575820, + "y0_ccd1": 31.316510, + "ang_ccd1": 179.968217, + "x0_ccd2": -0.890877, + "y0_ccd2": 31.363511, + "ang_ccd2": 180.000000, + "x0_ccd3": -31.630470, + "y0_ccd3": -31.716942, + "ang_ccd3": -0.024359, + "x0_ccd4": 0.824159, + "y0_ccd4": -31.728751, + "ang_ccd4": -0.024280, + }, +} + + +@dataclass +class TESSPointSCC: + sector: int + camera: int + ccd: int + + def __post_init__(self): + xeul = np.hstack( + [ + (np.pi / 180.0) * pointings["ra"][pointings["sector"] == self.sector], + np.pi / 2.0 + - (np.pi / 180.0) + * pointings["dec"][pointings["sector"] == self.sector], + (np.pi / 180.0) * pointings["roll"][pointings["sector"] == self.sector] + + np.pi, + ] + ) + + self.rmat1 = eulerm323(xeul) + eulcam = np.asarray( + [tess_params[self.camera][f"ang{idx}"] for idx in np.arange(1, 4)] + ) + self.rmat2 = eulerm323(eulcam * (np.pi / 180.0)) + self.rmat4 = np.matmul(self.rmat2, self.rmat1) + + @property + def opt_coeffs(self): + return np.asarray( + [ + tess_params[self.camera][key] + for key in np.hstack( + [["fl"], [f"opt_coef{idx}" for idx in np.arange(1, 6)]] + ) + ] + ) + + def pix_to_mm(self, coords): + """convert pixel to mm focal plane position""" + pixsz = 0.015000 + angle = -tess_params[self.camera][f"ang_ccd{self.ccd}"] + xyb = xyrotate(angle, (coords + 0.5) * pixsz) + return np.vstack( + [ + xyb[:, 0] + tess_params[self.camera][f"x0_ccd{self.ccd}"], + xyb[:, 1] + tess_params[self.camera][f"y0_ccd{self.ccd}"], + ] + ).T + + def pix2radec(self, coords): + + # Following tess_stars2pix.py legacy version, we're assuming that (1,1) is our corner science pixel + RowOffset=1 # 1-to-0 indexing + ColOffset=45 ## 44 collateral pixels + 1-to-0 indexing + coords = coords - np.array([[ColOffset],[RowOffset]]).T + + xyfp = self.pix_to_mm(coords) + lng_deg, lat_deg = fp_optics(xyfp, self.opt_coeffs) + vcam = np.asarray(sphereToCart(lng_deg, lat_deg)).T + curVec = np.matmul(self.rmat4.T, vcam.T).T + ra, dec = cartToSphere(curVec) + return ra / (np.pi / 180.0), dec / (np.pi / 180.0) + + def mm_to_pix(self, xy): + """Convert focal plane to pixel location also need to add in the + auxillary pixels added into FFIs """ + #created xy_to_ccdpix function to minimize repeated math + #re-indiced ccd for 1-4 vs 03 given the the change in tess_param + CCDWD_T = 2048 + CCDHT_T = 2058 + ROWA = 44 + ROWB = 44 + COLDK_T = 20 + fitpx = np.zeros_like(xy) + if xy[0] >= 0.0: + if xy[1] >= 0.0: + self.ccd = 1 + ccdpx = xy_to_ccdpx(self, xy,) + fitpx[0] = (CCDWD_T - ccdpx[0]) + CCDWD_T + 2 * ROWA + ROWB - 1.0 + fitpx[1] = (CCDHT_T - ccdpx[1]) + CCDHT_T + 2 * COLDK_T - 1.0 + else: + self.ccd = 4 + ccdpx = xy_to_ccdpx(self, xy) + fitpx[0] = ccdpx[0] + CCDWD_T + 2 * ROWA + ROWB + fitpx[1] = ccdpx[1] + else: + if xy[1] >= 0.0: + self.ccd = 2 + ccdpx = xy_to_ccdpx(self, xy) + fitpx[0] = (CCDWD_T - ccdpx[0]) + ROWA - 1.0 + fitpx[1] = (CCDHT_T - ccdpx[1]) + CCDHT_T + 2 * COLDK_T - 1.0 + else: + self.ccd = 3 + ccdpx = xy_to_ccdpx(self, xy) + fitpx[0] = ccdpx[0] + ROWA + fitpx[1] = ccdpx[1] + return ccdpx, fitpx + + def radec2pix(self, coords): + """ After the rotation matrices are defined to the actual + ra and dec to pixel coords mapping + """ + # removed pointing check since its now in the package + # vectorized + # like previous, doesn't return anything for things not in fov + # Old version - iterates each camera, checks FoV, assigns a ccd to them + # not sure how this works with the current OO-version, + # we're sending an array of ras,decs + # decs but have camera, ccd as an int property + #preserve vectorization - check each array against Fov, iterate per camera? + deg2rad = np.pi / 180.0 + curVec = np.asarray(sphereToCart(coords[:,0],coords[:,1]),dtype=np.double) + logging.debug("radec2pix: curVec: {0}".format(curVec.T)) + logging.debug("radec2pix: curVec Shape: {0}".format(curVec.T.shape)) + + camVec = np.matmul(self.rmat4, curVec) + logging.debug("radec2pix: camVec: {0}".format(camVec)) + logging.debug("radec2pix: camVec Shape: {0}".format(camVec.shape)) + + lng, lat = cartToSphere(camVec.T) + lng = lng / deg2rad + lat = lat / deg2rad + logging.debug("radec2pix: lng: {0}".format(lng)) + logging.debug("radec2pix: lat: {0}".format(lat)) + + g=np.vectorize(star_in_fov) # this is lazy, look at re-writing star_in_fov + # Actually, in our current spec where we know sector, camera, ccd + # is this a nescessary check? move to parent class? + + cut = g(lng,lat) + + if(cut.any()): + lng=lng[cut] + lat=lat[cut] + xyfp = optics_fp(lng, lat, self.opt_coeffs) + logging.debug("radec2pix: xyfp: {0}".format(xyfp)) + logging.debug("radec2pix: xyfp Shape: {0}".format(xyfp.shape)) + ccdpx, fitpix = mm_to_pix(self,xyfp) + logging.debug("radec2pix: xyfp: {0}".format(xyfp)) + logging.debug("radec2pix: ccdpx: {0}".format(ccdpx)) + logging.debug("radec2pix: fitpx: {0}".format(fitpix)) + #return inCamera, ccdNum, fitsxpos, fitsypos, ccdxpos, ccdypos + return fitpix2pix(fitpix,ccdpx) + else: + print('No specified targets in Field of View') + return False + +def footprint(npoints=50): + """Gets the column and row points for CCD edges""" + column = np.hstack( + [ + np.zeros(npoints), + np.linspace(0, 2048, npoints), + np.linspace(0, 2048, npoints), + np.ones(npoints) * 2048, + ] + ) + row = np.hstack( + [ + np.linspace(0, 2048, npoints), + np.zeros(npoints), + np.ones(npoints) * 2048, + np.linspace(0, 2048, npoints), + ] + ) + return np.vstack([column, row]).T + + +def xyrotate(angle, coords): + ca = np.cos((np.pi / 180.0) * angle) + sa = np.sin((np.pi / 180.0) * angle) + return np.vstack( + [ca * coords[:, 0] + sa * coords[:, 1], -sa * coords[:, 0] + ca * coords[:, 1]] + ).T.astype(coords.dtype) + + +def rev_az_asym(coords): + asymang = 0.0 + asymfac = 1.0 + xypa = xyrotate(asymang, coords) * np.asarray([1 / asymfac, 1]) + return xyrotate(-asymang, xypa) + + +def r_of_tanth(z, opt_coeffs): + tanth = np.tan(z) + rfp0 = tanth * opt_coeffs[0] + rfp = np.sum(opt_coeffs[1:] * (tanth ** (2 * np.arange(5))[:, None]).T, axis=1) + return rfp0 * rfp + + +def tanth_of_r_noscipy(rfp_times_rfp0, opt_coeffs): + zi = np.arctan(rfp_times_rfp0 ** 0.5 / opt_coeffs[0]) + # Minimize... + # This is a way to minimize that + # 1) let's us minimize the whole vector and + # 2) doesn't use scipy, so we could do something similar in other scripting languates + # But it's not even close to optimal. + # If you pass in a lot of points this might fill up your memory though... + # ---- + bounds = (0, 0.55) + resolution = 0.001 + x = np.arange(*bounds, resolution)[:, None] * np.ones((1, len(zi))) + for count in range(3): + minimize = np.asarray( + [ + (r_of_tanth(zi + x[idx], opt_coeffs) - rfp_times_rfp0) ** 2 + for idx in range(x.shape[0]) + ] + ) + argmin = np.argmin(minimize, axis=0) + xmin = np.asarray([x[am, idx] for idx, am in enumerate(argmin)]) + # Every iteration, scale down the offset to be narrower around the minimum + x = (x - xmin) * 0.25 + xmin + # ---- + return xmin + zi + +def tanth_of_r(rfp_times_rfp0, opt_coeffs): + logging.debug("tanth_of_r: opt_coeffs: {0}".format(opt_coeffs)) + if np.abs(rfp_times_rfp0) > 1.0e-10: + c0 = opt_coeffs[0] + zi = np.arctan(np.sqrt(rfp_times_rfp0) / c0) + def minFunc(z, opt_coeffs, rfp_times_rfp0): + rtmp = r_of_tanth(z, opt_coeffs) + return (rtmp - rfp_times_rfp0) ** 2 + + optResult = opt.minimize(minFunc, [zi], \ + args=(opt_coeffs, rfp_times_rfp0), method='Nelder-Mead', \ + tol=1.0e-10, \ + options={'maxiter':500}) + #print(optResult) + return optResult.x[0] + else: + return 0.0 + +def fp_optics(xyfp, opt_coeffs): + logging.debug("fp_optics: opt_coeffs: {0}".format(opt_coeffs)) + + tanth_of_r_vectorize=np.vectorize(tanth_of_r, excluded=[1]) + + xy = rev_az_asym(xyfp) + rfp_times_rfp0 = np.sum(xy ** 2, axis=1) ** 0.5 + phirad = np.arctan2(-xy[:, 1], -xy[:, 0]) + phideg = phirad / (np.pi / 180.0) % 360 + thetarad = tanth_of_r_vectorize(rfp_times_rfp0, opt_coeffs) + thetadeg = thetarad / (np.pi / 180.0) + return phideg, 90.0 - thetadeg + + +def sphereToCart(ras, decs): + """Convert 3d spherical coordinates to cartesian""" + rarads = (np.pi / 180.0) * ras + decrads = (np.pi / 180.0) * decs + sinras = np.sin(rarads) + cosras = np.cos(rarads) + sindecs = np.sin(decrads) + cosdecs = np.cos(decrads) + vec0s = cosras * cosdecs + vec1s = sinras * cosdecs + vec2s = sindecs + return vec0s, vec1s, vec2s + + +def eulerm323(eul): + mat1 = rotm1(2, eul[0]) + mat2 = rotm1(1, eul[1]) + mata = np.matmul(mat2, mat1) + mat1 = rotm1(2, eul[2]) + rmat = np.matmul(mat1, mata) + return rmat + + +def rotm1(ax, angle): + mat = np.zeros((3, 3), dtype=np.double) + n1 = ax + n2 = np.mod((n1 + 1), 3) + n3 = np.mod((n2 + 1), 3) + sinang = np.sin(angle) + cosang = np.cos(angle) + mat[n1][n1] = 1.0 + mat[n2][n2] = cosang + mat[n3][n3] = cosang + mat[n2][n3] = sinang + mat[n3][n2] = -sinang + return mat + + +def cartToSphere(vec): +# print("cartToSphere: vec: {0}".format(vec)) )# axis=1 breaking for 1 ra dec only +# norm = np.sqrt(np.sum(vec ** 2)) +# dec = np.arcsin(vec[ 2] / norm) +# ra = np.arctan2(vec[ 1], vec[0]) +# ra = np.mod(ra, 2.0 * np.pi) +#breaking for 1 coord only, fix later + logging.debug("cartToSphere: vec: {0}".format(vec)) + norm = np.sqrt(np.sum(vec ** 2, axis=1)) + dec = np.arcsin(vec[:, 2] / norm) + ra = np.arctan2(vec[:, 1], vec[:, 0]) + ra = np.mod(ra, 2.0 * np.pi) + return ra, dec + +def star_in_fov(lng, lat): + deg2rad = np.pi / 180.0 + inView = False + if lat > 70.0: + vec = np.asarray(sphereToCart(lng, lat)) + norm = np.sqrt(np.sum(vec ** 2)) + if norm > 0.0: + vec = vec / norm + xlen = np.abs(np.arctan(vec[0] / vec[2])) + ylen = np.abs(np.arctan(vec[1] / vec[2])) + if (xlen <= (12.5 * deg2rad)) and (ylen <= (12.5 * deg2rad)): + inView = True + return inView + + +def make_az_asym(coords): + # I dont think we need this function at all in the specific tess case where + # asymang=0 asymfac=1 + # We're rotating a matrix by 0, multiplying its x coord by 1 + # and re-rotating by -0 + + asymang = 0.0 + asymfac = 1.0 + xyp = xyrotate(asymang, coords) + logging.debug("make_az_asym: xyp: {0}".format(xyp)) + logging.debug("make_az_asym: xyp: shape: {0}".format(xyp.shape)) + + xypa = np.zeros_like(xyp) + xypa[:,0] = asymfac * xyp[:,0] + xypa[:,1] = xyp[:,1] + xyout = xyrotate(-asymang, xypa) + return xyout + + +def optics_fp(lng_deg, lat_deg, opt_coeffs): + # Check Back Later For more Optimization + # angle to focal plane location, I think + # Had lines that recreated r_tanth, subbed the function in + # had np.power not **, speed v precision? check r_tanth + deg2rad = np.pi / 180.0 + thetar = np.pi / 2.0 - (lat_deg * deg2rad) + + rtanth = r_of_tanth(thetar, opt_coeffs) + + logging.debug("optics_fp: rtanth: {0}".format(rtanth)) + + cphi = np.cos(deg2rad * lng_deg) + sphi = np.sin(deg2rad * lng_deg) + logging.debug("optics_fp: cphi: {0}".format(cphi)) + logging.debug("optics_fp: sphi: {0}".format(sphi)) + xyfp = np.zeros((len(lng_deg),2), dtype=np.double) + xyfp[:,0] = -cphi * rtanth + xyfp[:,1] = -sphi * rtanth + logging.debug("optics_fp: xyfp: {0}".format(xyfp)) + logging.debug("optics_fp: xyfp shape: {0}".format(xyfp.shape)) + + return make_az_asym(xyfp) + + +def xy_to_ccdpx(self, xy): + xyb = np.zeros_like(xy) + ccdpx = np.zeros_like(xy) + ccdx0 = tess_params[self.camera][f"x0_ccd{self.ccd}"] + ccdy0 = tess_params[self.camera][f"y0_ccd{self.ccd}"] + ccdang = tess_params[self.camera][f"ang_ccd{self.ccd}"] + pixsz = 0.015000 + + xyb[:,0] = xy[:,0] - ccdx0 + xyb[:,1] = xy[:,1] - ccdy0 + xyccd = xyrotate(ccdang, xyb) + ccdpx[:,0] = (xyccd[:,0] / pixsz) - 0.5 + ccdpx[:,1] = (xyccd[:,1] / pixsz) - 0.5 + return ccdpx + +def mm_to_pix(self, xy): + # Convert focal plane to pixel location also need to add in the + # auxillary pixels added into FFIs + # + #created xy_to_ccdpix function to minimize repeated math + #re-indiced ccd for 1-4 vs 03 given the the change in tess_param + CCDWD_T = 2048 + CCDHT_T = 2058 + ROWA = 44 + ROWB = 44 + COLDK_T = 20 + fitpx = np.zeros_like(xy) + logging.debug("mm_to_pix: fitpx: {0}".format(fitpx)) + logging.debug("mm_to_pix: fitpx.shape: {0}".format(fitpx.shape)) + + + if self.ccd == 1: + ccdpx = xy_to_ccdpx(self, xy,) + fitpx[:,0] = (CCDWD_T - ccdpx[:,0]) + CCDWD_T + 2 * ROWA + ROWB - 1.0 + fitpx[:,1] = (CCDHT_T - ccdpx[:,1]) + CCDHT_T + 2 * COLDK_T - 1.0 + if self.ccd == 4: + ccdpx = xy_to_ccdpx(self, xy) + fitpx[:,0] = ccdpx[:,0] + CCDWD_T + 2 * ROWA + ROWB + fitpx[:,1] = ccdpx[:,1] + if self.ccd == 2: + ccdpx = xy_to_ccdpx(self, xy) + fitpx[:,0] = (CCDWD_T - ccdpx[:,0]) + ROWA - 1.0 + fitpx[:,1] = (CCDHT_T - ccdpx[:,1]) + CCDHT_T + 2 * COLDK_T - 1.0 + if self.ccd == 3: + ccdpx = xy_to_ccdpx(self, xy) + fitpx[:,0] = ccdpx[:,0] + ROWA + fitpx[:,1] = ccdpx[:,1] + + return ccdpx, fitpx + +def fitpix2pix(fitpix,ccdpx): + # SPOC calibrated FFIs have 44 collateral pixels in x and are 1 based + # Assuming combinedFits = False & args.noCollateral = False (for Now) + # In OG stars2px, xyUse choses between a few options depending on flags + # passed to stars2px, here we're making assumptions and will generalize after + xyUse = np.zeros(ccdpx.shape) + logging.debug("fitpix2pix: ccdpx: shape: {0}".format(ccdpx.shape)) + + xyUse[:,0] = ccdpx[:,0] + 45.0 + xyUse[:,1] = ccdpx[:,1] + 1.0 + xMin = 44.0 + ymaxCoord = 2049 + xmaxCoord = 2093 + # visCut = xyUse[:,0]>xMin & xyUse[:,1]>0 & xyUse[:,0]=(xmaxCoord-edgePix)) | (xyUse[:,1]<=edgePix) | (xyUse[:,1]==(ymaxCoord-edgePix)) + return xyUse, edgeWarn \ No newline at end of file diff --git a/src/testfun.py b/src/testfun.py new file mode 100644 index 0000000..0a33ebc --- /dev/null +++ b/src/testfun.py @@ -0,0 +1,92 @@ +import pandas as pd +import numpy as np +from tesspoint import TESSPoint + +def test_pix2radec_SectorCameraCCD(SectorCameraCCD): + Sector, Camera, CCD = SectorCameraCCD + + fprfile="/Users/tapritc2/tessgi/tesspoint/TESSPoint_CreateTestFiles/footprint_input.dat" + footprint_df=pd.read_csv(fprfile,delimiter=' ',names=['tic','x','y'],index_col=False) + + pointing=TESSPoint(Sector,Camera,CCD) + + farr=np.array([footprint_df.x.to_numpy(),footprint_df.y.to_numpy()]).T + footprint_radec=pointing.pix2radec(farr) + + test_df = pd.DataFrame({'tic':footprint_df.tic.to_numpy(), + 'ra':footprint_radec[0], + 'dec':footprint_radec[1]}) + test_df['index']=test_df['tic'] + return test_df + + +def test_pix2radec_benchmark_SectorCameraCCD(SectorCameraCCD): + Sector, Camera, CCD = SectorCameraCCD + + dir_testfiles='/Users/tapritc2/tessgi/tesspoint/TESSPoint_CreateTestFiles/testfiles' + wcsfile=dir_testfiles+"/TEST_pix2radec_Sec{:02d}_Cam{}_CCD{}_stars2px.dat".format(Sector,Camera,CCD) + + test_df = test_pix2radec_SectorCameraCCD(SectorCameraCCD) + benchmark_df = pd.read_csv(wcsfile,delimiter=' ',names=['tic','ra','dec'],skiprows=1,index_col=False) + + idx = test_df.index.intersection(benchmark_df.index) + dra = test_df.loc[idx, 'ra'] - benchmark_df.loc[idx, 'ra'] + ddec= test_df.loc[idx, 'dec'] - benchmark_df.loc[idx, 'dec'] + + return idx, dra, ddec, Sector, Camera, CCD + +def test_radec2pix_SectorCameraCCD(SectorCameraCCD): + Sector, Camera, CCD = SectorCameraCCD + + dir_testfiles='/Users/tapritc2/tessgi/tesspoint/TESSPoint_CreateTestFiles/testfiles' + wcsfile=dir_testfiles+"/TEST_pix2radec_Sec{:02d}_Cam{}_CCD{}_stars2px.dat".format(Sector,Camera,CCD) + + input_df=pd.read_csv(wcsfile,delimiter=' ',names=['tic','x','y'],skiprows=1,index_col=False) + input_arr=np.array([input_df.x.to_numpy(),input_df.y.to_numpy()]).T + + pointing=TESSPoint(Sector,Camera,CCD) + + output_pix=pointing.radec2pix(input_arr) + + output_df = pd.DataFrame({'tic':input_df.tic.to_numpy(), + 'row':output_pix[0][:,0], + 'col':output_pix[0][:,1]}) + output_df['index']=output_df['tic'] + + return output_df + +def test_radec2pix_benchmark_SectorCameraCCD(SectorCameraCCD): + Sector, Camera, CCD = SectorCameraCCD + + dir_testfiles='/Users/tapritc2/tessgi/tesspoint/TESSPoint_CreateTestFiles/testfiles' + + pixfile=dir_testfiles+"/TEST_radec2pix_Sec{:02d}_Cam{}_CCD{}_stars2px.dat".format(Sector,Camera,CCD) + + output_pix_df = test_radec2pix_SectorCameraCCD(SectorCameraCCD) + benchmark_pix_df = pd.read_csv(pixfile,names=['tic','ra','dec','el','ela','s','c','ccd','row','col','edge'], + index_col=0, skiprows=16,delimiter="|" ) + + idx = output_pix_df.index.intersection(benchmark_pix_df.index) + + dr = output_pix_df.loc[idx, 'row'] - benchmark_pix_df.loc[idx, 'row'] + dc = output_pix_df.loc[idx, 'col'] - benchmark_pix_df.loc[idx, 'col'] + + return idx, dr, dc, Sector, Camera, CCD + +def test_radec2pix_initial_SectorCameraCCD(SectorCameraCCD): + Sector, Camera, CCD = SectorCameraCCD + + dir_testfiles='/Users/tapritc2/tessgi/tesspoint/TESSPoint_CreateTestFiles/testfiles' + fprfile="/Users/tapritc2/tessgi/tesspoint/TESSPoint_CreateTestFiles/footprint_input.dat" + pixfile=dir_testfiles+"/TEST_radec2pix_Sec{:02d}_Cam{}_CCD{}_stars2px.dat".format(Sector,Camera,CCD) + + output_pix_df = test_radec2pix_SectorCameraCCD(SectorCameraCCD) + init_pix_df=pd.read_csv(fprfile,delimiter=' ',names=['tic','row','col'],index_col=False) + init_pix_df['index']=init_pix_df['tic'] + + idx = output_pix_df.index.intersection(init_pix_df.index) + + dr = output_pix_df.loc[idx, 'row'] - init_pix_df.loc[idx, 'row'] + dc = output_pix_df.loc[idx, 'col'] - init_pix_df.loc[idx, 'col'] + + return idx, dr, dc, Sector, Camera, CCD diff --git a/tests/test_tesspoint.py b/tests/test_tesspoint.py index a33d2c0..85b84e6 100644 --- a/tests/test_tesspoint.py +++ b/tests/test_tesspoint.py @@ -1,6 +1,50 @@ from tesspoint import TESSPoint, footprint +import pytest +import numpy as np +RowOffset=1 +ColOffset=45 +Accuracy = 0.01 -def test_tesspoint(): +def test_pix2radec(): + ''' Test that pix2radec runis in general + To DO: We need to add type checks to output + (and maybe standardize pix2radec and radec2pix output)''' tp = TESSPoint(1, 1, 1) tp.pix2radec(footprint()) + +def conversion(Sector, Camera, CCD): + '''General funtion that takes a pixel footprint, converts to radec for a given s/c/c, + then converts ra, dec back to pixels. + This then checks the difference between the input pixels and the output pixels. + This will be used in many future tests. ''' + tp = TESSPoint(Sector, Camera, CCD) + radec_footprint=tp.pix2radec(footprint()) + pix_footprint=tp.radec2pix(np.array([radec_footprint[0],radec_footprint[1]]).T) + deviation = footprint()-pix_footprint[0] + maxdev=max(max(deviation[:,0] + ColOffset), max(deviation[:,1] + RowOffset)) + return maxdev + +def assert_str(Sector, Camera, CCD, maxdev, Accuracy): + return "Accuracy less than requirement: Sector:{} Camera:{} CCD{} Maximum Deviation: {} Accuracy Requirement{}".format(Sector,Camera,CCD,maxdev,Accuracy) + +def test_radec2pix(): + '''Test a single sector/camera/ccd without an accuracy requirement to make sure we can + convert in both directions''' + conversion(1,1,1) + +def test_conversion(): + '''Test a single sector /camera / ccd with an accuracy requirement''' + maxdev=conversion(1,1,1) + assert maxdev < Accuracy, assert_str(Sector, Camera, CCD, maxdev, Accuracy) + +def test_converstion_AllSectorCameraCCD(): + '''Test all sector / camera / ccd's with an accuracy requirement''' + sector_list=range(1,69) + camera_list=range(1,4) + ccd_list=range(1,4) + for sector in sector_list: + for camera in camera_list: + for ccd in ccd_list: + maxdev=conversion(sector, camera, ccd) + assert maxdev < Accuracy, assert_str(sector, camera, ccd, maxdev, Accuracy) \ No newline at end of file diff --git a/tests/test_tesspoint_externaldata.py b/tests/test_tesspoint_externaldata.py new file mode 100644 index 0000000..778fc79 --- /dev/null +++ b/tests/test_tesspoint_externaldata.py @@ -0,0 +1,95 @@ +from tesspoint import TESSPoint, footprint +import pytest +import numpy as np +import pandas as pd + +RowOffset=1 +ColOffset=45 +PixAccuracy = 1 +WCSAccuracy = PixAccuracy * 0.015000 # Pixel Accuracy * pixel scale + +def assert_str(type, Sector, Camera, CCD, maxdev, Accuracy): + return type+" Accuracy vs Benchmark less than requirement: Sector:{} Camera:{} CCD{} Maximum Deviation: {} Accuracy Requirement{}".format(Sector,Camera,CCD,maxdev,Accuracy) + +def compare_pix2radec(Sector, Camera, CCD): + '''This will compare our pixel -> WCS calculation for a single Sector, Camera, CCD against a benchmark + csv that can be found in a separate repository''' + + footprint_url="https://raw.githubusercontent.com/tylerapritchard/TESSPoint_CreateTestFiles/main/footprint_input.dat" + benchmark_url="https://raw.githubusercontent.com/tylerapritchard/TESSPoint_CreateTestFiles/main/testfiles/TEST_pix2radec_Sec{:02d}_Cam{}_CCD{}_stars2px.dat".format(Sector,Camera,CCD) + + footprint_pix=pd.read_csv(footprint_url, delimiter=' ',names=['tic','col','row'], index_col=False) + benchmark_radec=pd.read_csv(benchmark_url,delimiter=' ',names=['tic','ra','dec'], skiprows=1, index_col=False) + + + benchmark_radec['index']=benchmark_radec['tic'] + tp=TESSPoint(Sector,Camera,CCD) + footprint_pix_arr=np.array([footprint_pix.col.to_numpy()-ColOffset,footprint_pix.row.to_numpy()-RowOffset]).T + footprint_radec_arr=tp.pix2radec(footprint_pix_arr) + + footprint_radec = pd.DataFrame({'tic':footprint_pix.tic.to_numpy(), + 'ra':footprint_radec_arr[0], + 'dec':footprint_radec_arr[1]}) + footprint_radec['index'] = footprint_radec['tic'] + + idx = footprint_radec.index.intersection(benchmark_radec.index) + + d_ra = abs(footprint_radec.loc[idx, 'ra'] - benchmark_radec.loc[idx, 'ra']) + d_dec= abs(footprint_radec.loc[idx, 'dec'] - benchmark_radec.loc[idx, 'dec']) + + return max([max(d_ra), max(d_dec)]) + +def compare_radec2pix(Sector, Camera, CCD): + '''This will compare our WCS -> Pixel calculation for a single Sector, Camera, CCD against a benchmark + csv that can be found in a separate repository''' + + footprint_url="https://raw.githubusercontent.com/tylerapritchard/TESSPoint_CreateTestFiles/main/testfiles/TEST_pix2radec_Sec{:02d}_Cam{}_CCD{}_stars2px.dat".format(Sector,Camera,CCD) + benchmark_url="https://raw.githubusercontent.com/tylerapritchard/TESSPoint_CreateTestFiles/main/testfiles/TEST_radec2pix_Sec{:02d}_Cam{}_CCD{}_stars2px.dat".format(Sector,Camera,CCD) + + footprint_radec=pd.read_csv(footprint_url, delimiter=' ', names=['tic','ra','dec'], skiprows=1,index_col=False) + footprint_radec['index']=footprint_radec['tic'] + + tp=TESSPoint(Sector,Camera,CCD) + + footprint_radec_arr=np.array([footprint_radec.ra.to_numpy(), + footprint_radec.dec.to_numpy()]).T + + footprint_pix_arr=tp.radec2pix(footprint_radec_arr) + + footprint_pix = pd.DataFrame({'tic':footprint_radec.tic.to_numpy(), + 'row':footprint_pix_arr[0][:,0], + 'col':footprint_pix_arr[0][:,1]}) + footprint_pix['index'] = footprint_pix['tic'] + + benchmark_pix = pd.read_csv(benchmark_url,names=['tic','ra','dec','el','ela','s','c','ccd','row','col','edge'], + index_col=0, skiprows=16,delimiter="|" ) + idx = footprint_pix.index.intersection(benchmark_pix.index) + + d_col = abs(footprint_pix.loc[idx, 'col'] - benchmark_pix.loc[idx, 'col']) + d_row = abs(footprint_pix.loc[idx, 'row'] - benchmark_pix.loc[idx, 'row']) + + return np.median([d_col, d_row]) + +def test_pix2radec_AllCameraSectorCCD(): + '''this will test the pixel->WCS calculation for all Sector / Camera / CCD's + against a benchmark repository that was made from the previous version of tesspoint''' + sector_list=range(1,69) + camera_list=range(1,4) + ccd_list=range(1,4) + for sector in sector_list: + for camera in camera_list: + for ccd in ccd_list: + maxdev=compare_pix2radec(sector, camera, ccd) + assert maxdev < WCSAccuracy, assert_str('Pix->WCS',sector, camera, ccd, maxdev, WCSAccuracy) + +def test_radec2pix_AllCameraSectorCCD(): + '''this will test the pixel->WCS calculation for all Sector / Camera / CCD's + against a benchmark repository that was made from the previous version of tesspoint''' + sector_list=range(1,69) + camera_list=range(1,4) + ccd_list=range(1,4) + for sector in sector_list: + for camera in camera_list: + for ccd in ccd_list: + maxdev=compare_radec2pix(sector, camera, ccd) + assert maxdev < WCSAccuracy, assert_str('WCS->PIX Median',sector, camera, ccd, maxdev, WCSAccuracy) \ No newline at end of file